diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..583e8ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +tsconfig.tsbuildinfo +*.swp +node_modules +nohup.out +.rpt2_cache diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..583e8ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +tsconfig.tsbuildinfo +*.swp +node_modules +nohup.out +.rpt2_cache diff --git a/imgui_impl.js b/imgui_impl.js new file mode 100644 index 0000000..0f4a8ec --- /dev/null +++ b/imgui_impl.js @@ -0,0 +1,41080 @@ +'use strict'; + +Object.defineProperty(exports, '__esModule', { value: true }); + +var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +function commonjsRequire () { + throw new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs'); +} + +function unwrapExports (x) { + return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x; +} + +function createCommonjsModule(fn, module) { + return module = { exports: {} }, fn(module, module.exports), module.exports; +} + +var require$$0 = {}; + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +// resolves . and .. elements in a path array with directory names there +// must be no slashes, empty elements, or device names (c:\) in the array +// (so also no leading and trailing slashes - it does not distinguish +// relative and absolute paths) +function normalizeArray(parts, allowAboveRoot) { + // if the path tries to go above the root, `up` ends up > 0 + 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 the path is allowed to go above the root, restore leading ..s + if (allowAboveRoot) { + for (; up--; up) { + parts.unshift('..'); + } + } + + return parts; +} + +// Split a filename into [root, dir, basename, ext], unix version +// 'root' is just a slash, or nothing. +var splitPathRe = + /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; +var splitPath = function(filename) { + return splitPathRe.exec(filename).slice(1); +}; + +// path.resolve([from ...], to) +// posix version +function resolve() { + var resolvedPath = '', + resolvedAbsolute = false; + + for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { + var path = (i >= 0) ? arguments[i] : '/'; + + // Skip empty and invalid entries + if (typeof path !== 'string') { + throw new TypeError('Arguments to path.resolve must be strings'); + } else if (!path) { + continue; + } + + resolvedPath = path + '/' + resolvedPath; + resolvedAbsolute = path.charAt(0) === '/'; + } + + // At this point the path should be resolved to a full absolute path, but + // handle relative paths to be safe (might happen when process.cwd() fails) + + // Normalize the path + resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) { + return !!p; + }), !resolvedAbsolute).join('/'); + + return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; +} +// path.normalize(path) +// posix version +function normalize(path) { + var isPathAbsolute = isAbsolute(path), + trailingSlash = substr(path, -1) === '/'; + + // Normalize the path + path = normalizeArray(filter(path.split('/'), function(p) { + return !!p; + }), !isPathAbsolute).join('/'); + + if (!path && !isPathAbsolute) { + path = '.'; + } + if (path && trailingSlash) { + path += '/'; + } + + return (isPathAbsolute ? '/' : '') + path; +} +// posix version +function isAbsolute(path) { + return path.charAt(0) === '/'; +} + +// posix version +function join() { + var paths = Array.prototype.slice.call(arguments, 0); + return normalize(filter(paths, function(p, index) { + if (typeof p !== 'string') { + throw new TypeError('Arguments to path.join must be strings'); + } + return p; + }).join('/')); +} + + +// path.relative(from, to) +// posix version +function relative(from, to) { + from = resolve(from).substr(1); + to = 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('/'); +} + +var sep = '/'; +var delimiter = ':'; + +function dirname(path) { + var result = splitPath(path), + root = result[0], + dir = result[1]; + + if (!root && !dir) { + // No dirname whatsoever + return '.'; + } + + if (dir) { + // It has a dirname, strip trailing slash + dir = dir.substr(0, dir.length - 1); + } + + return root + dir; +} + +function basename(path, ext) { + var f = splitPath(path)[2]; + // TODO: make this comparison case-insensitive on windows? + if (ext && f.substr(-1 * ext.length) === ext) { + f = f.substr(0, f.length - ext.length); + } + return f; +} + + +function extname(path) { + return splitPath(path)[3]; +} +var require$$1 = { + extname: extname, + basename: basename, + dirname: dirname, + sep: sep, + delimiter: delimiter, + relative: relative, + join: join, + isAbsolute: isAbsolute, + normalize: normalize, + resolve: resolve +}; +function filter (xs, f) { + if (xs.filter) return xs.filter(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + if (f(xs[i], i, xs)) res.push(xs[i]); + } + return res; +} + +// String.prototype.substr - negative index don't work in IE8 +var substr = 'ab'.substr(-1) === 'b' ? + function (str, start, len) { return str.substr(start, len) } : + function (str, start, len) { + if (start < 0) start = str.length + start; + return str.substr(start, len); + } +; + +var bindImgui = createCommonjsModule(function (module, exports) { +var Module = (function() { + var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; + return ( +function(Module) { + Module = Module || {}; + +var Module=typeof Module!=="undefined"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key];}}Module["arguments"]=[];Module["thisProgram"]="./this.program";Module["quit"]=function(status,toThrow){throw toThrow};Module["preRun"]=[];Module["postRun"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window==="object";ENVIRONMENT_IS_WORKER=typeof importScripts==="function";ENVIRONMENT_HAS_NODE=typeof process==="object"&&typeof commonjsRequire==="function";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}else{return scriptDirectory+path}}if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+"/";var nodeFS;var nodePath;Module["read"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require$$0;if(!nodePath)nodePath=require$$1;filename=nodePath["normalize"](filename);ret=nodeFS["readFileSync"](filename);}return binary?ret:ret.toString()};Module["readBinary"]=function readBinary(filename){var ret=Module["read"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret);}assert(ret.buffer);return ret};if(process["argv"].length>1){Module["thisProgram"]=process["argv"][1].replace(/\\/g,"/");}Module["arguments"]=process["argv"].slice(2);process["on"]("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process["on"]("unhandledRejection",abort);Module["quit"]=function(status){process["exit"](status);};Module["inspect"]=function(){return "[Emscripten Module object]"};}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){Module["read"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)};}Module["readBinary"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer==="function"){return new Uint8Array(readbuffer(f))}data=read(f,"binary");assert(typeof data==="object");return data};if(typeof scriptArgs!="undefined"){Module["arguments"]=scriptArgs;}else if(typeof arguments!="undefined"){Module["arguments"]=arguments;}if(typeof quit==="function"){Module["quit"]=function(status){quit(status);};}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href;}else if(document.currentScript){scriptDirectory=document.currentScript.src;}if(_scriptDir){scriptDirectory=_scriptDir;}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf("/")+1);}else{scriptDirectory="";}Module["read"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module["readBinary"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}};}Module["readAsync"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror();};xhr.onerror=onerror;xhr.send(null);};Module["setWindowTitle"]=function(title){document.title=title;};}var out=Module["print"]||(typeof console!=="undefined"?console.log.bind(console):typeof print!=="undefined"?print:null);var err=Module["printErr"]||(typeof printErr!=="undefined"?printErr:typeof console!=="undefined"&&console.warn.bind(console)||out);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key];}}moduleOverrides=undefined;var asm2wasmImports={"f64-rem":function(x,y){return x%y},"debugger":function(){debugger}};var functionPointers=new Array(0);var setTempRet0=function(value){};if(typeof WebAssembly!=="object"){err("no native wasm support detected");}var wasmMemory;var wasmTable;var ABORT=false;function assert(condition,text){if(!condition){abort("Assertion failed: "+text);}}var UTF8Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf8"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str="";while(idx>10,56320|ch&1023);}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023;}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u;}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63;}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4;}return len}var UTF16Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf-16le"):undefined;var WASM_PAGE_SIZE=65536;var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferViews(){Module["HEAP8"]=HEAP8=new Int8Array(buffer);Module["HEAP16"]=HEAP16=new Int16Array(buffer);Module["HEAP32"]=HEAP32=new Int32Array(buffer);Module["HEAPU8"]=HEAPU8=new Uint8Array(buffer);Module["HEAPU16"]=HEAPU16=new Uint16Array(buffer);Module["HEAPU32"]=HEAPU32=new Uint32Array(buffer);Module["HEAPF32"]=HEAPF32=new Float32Array(buffer);Module["HEAPF64"]=HEAPF64=new Float64Array(buffer);}var DYNAMIC_BASE=5315584,DYNAMICTOP_PTR=72672;var TOTAL_STACK=5242880;var INITIAL_TOTAL_MEMORY=Module["TOTAL_MEMORY"]||16777216;if(INITIAL_TOTAL_MEMORY>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback();continue}var func=callback.func;if(typeof func==="number"){if(callback.arg===undefined){Module["dynCall_v"](func);}else{Module["dynCall_vi"](func,callback.arg);}}else{func(callback.arg===undefined?null:callback.arg);}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;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 ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__);}function preMain(){callRuntimeCallbacks(__ATMAIN__);}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 addOnPostRun(cb){__ATPOSTRUN__.unshift(cb);}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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();}}}Module["preloadedImages"]={};Module["preloadedAudios"]={};var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile="data:application/octet-stream;base64,AGFzbQEAAAAB2AyxAWACf38Bf2ACf38AYAJ8fAF8YAF/AX9gAX8AYAN/f38Bf2AEf39/fwBgA39/fwBgAn9/AX1gBH9/f38Bf2AEf399fwBgAn99AX9gA399fQF/YAZ9fX1/f38AYAR/fX9/AGAFf39/fX8AYAABfGADf31/AGAFf39/f38Bf2AIf39/f39/f38Bf2AHf39/f39/fwF/YAZ/f39/f38Bf2AGf398fH9/AX9gCX9/f39/f39/fwF/YAN9f38AYAl/f39/f39/f38AYAZ/f39/f38AYAJ/fQBgAX8BfWAAAX9gAn19AGABfQBgAAF9YAAAYAN/f30Bf2AGf39/fX9/AGAIf399fX1/f38AYAR/fX99AX9gBn9/fX9/fwBgBX9/f399AGAHf39/f31/fQBgBn9/f399fwBgB39/f39/f38AYAd/f39/f399AGAGf39/f399AGAFf39/f38AYAZ/f31/f30AYAV/f31/fwBgCH9/fX9/f31/AGALf39/f39/f39/f38AYAl/f39/f39/fX8AYAh/f39/f399fwBgBH9/f30AYAZ/f319fX8AYAp/f39/f39/f39/AGADf399AGAGf3x/f39/AX9gA39+fwF+YAF/AXxgA39/fwF9YAR/f319AX9gCH9/fX19f39/AX9gBH9/fX8Bf2AFf399f30Bf2AHf39/fHx/fwF/YAR/f399AX9gBX9/f31/AX9gBn9/f31/fwF/YAp/f39/f39/f39/AX9gA399fQBgB399fX1/f38AYAd/f399fX1/AGAHf39/fX9/fQBgB39/f31/f38AYAl/f399f39/fX8AYAd/f39/f31/AGAIf39/f399f30AYAh/f39/f39/fQBgCH9/f39/f39/AGAKf39/f39/f399fwBgDH9/f39/f39/f39/fwBgDX9/f39/f39/f39/f38AYAN/f3wAYAN/f38BfGABfQF9YAJ9fQF9YAV/fX19fQBgBH9/fX0AYAJ/fQF9YAR9fX19AX9gBX9/f319AGADfX19AX1gAn19AX9gBH19fX0BfWALf319fX19fX19fX8AYAl/f31/f39/fX8AYAp/f31/f39/f31/AGAFf31/f30Bf2AIf399fX9/f38AYAt/f319fX19fX19fQBgCH9/f39/fX1/AGAHf39/fX1/fwBgBX9/fX9/AX9gCH9/f399fX9/AGAHf39/fX19fQBgCn9/fX19fX19fX8AYAx/f319fX19fX19fX8AYAd/fX19fX19AGAEf31/fwF/YAh/f399f39/fQF/YAV/fX9/fwF/YAV/fX5+fwF/YAZ/fX19f30Bf2AGf318fH99AX9gAn98AXxgAn9+AX5gCX9/f399f39/fQF/YAd/f319fX99AX9gCX9/f319fX9/fQF/YAZ/f31/f38Bf2AIf39/fX9/f38Bf2AKf39/f39/f31/fwF/YAl/f39/f399f38Bf2AJf39/fn5/fX9/AX9gCX9/f319f31/fwF/YAl/f398fH99f38Bf2AFfHx8fX0BfWADfHx9AXxgA3x8fAF8YAV9fX19fQF9YAN+fn4BfWADfn5+AX5gBX5+fn19AX1gBX9/f319AX1gB39/f39/f30Bf2AIf39/f39/f30Bf2AGf399fX99AX9gB39/f319f30Bf2AGf399fX9/AX9gB39/f31/fX8AYAl/f39/f399fX8AYAd/f39/fX1/AGAEf319fQF9YAZ/f39/f30Bf2AHf399f39/fQF/YAJ/fgBgAn9/AX5gA35/fwF/YAJ+fwF/YAJ8fwF8YAV/f39/fwF8YAZ/f39/f38BfGACfX8BfWABfAF9YAJ9fwF/YAN/f34AYAF/AX5gAn9/AXxgBH9/f38BfWAHf398f39/fwF/YAV/f399fQF/YAl/f399fX1/f38Bf2AGf39/fX99AX9gCH9/f398fH9/AX9gBX9/f399AX9gBn9/f399fwF/YAd/f39/fX9/AX9gC39/f39/f39/f39/AX9gCX9/f319fX9/fwBgCH9/f399fX1/AGAHf39/f31/fwBgCH9/f399f399AGAIf39/f31/f38AYAp/f39/fX9/f31/AGAJf39/f39/fX99AGAJf39/f39/f399AGALf39/f39/f39/fX8AAvQDNwNlbnYBYgA2A2VudgFjAE4DZW52AWQAGgNlbnYBZQAEA2VudgFmAAADZW52AWcAUQNlbnYBaABTA2VudgFpAAcDZW52AWoAAANlbnYBawAtA2VudgFsACEDZW52AW0ABwNlbnYBbgAAA2VudgFvAAYDZW52AXAAAANlbnYBcQAaA2VudgFyAAQDZW52AXMABANlbnYBdAAEA2VudgF1AAAI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/AYLC0H89gEoAgAhASAAQZypBCgCACABQf8BcUHyBmoRAQALWgEDfyMEIQIjBEEQaiQEIAJBmKkEKAIAIgNBsCtqIABBBHRqIgApAgA3AgAgAiAAKQIINwIIIAIgAioCDCADQZAqaioCACABlJQ4AgwgAhChAyEEIAIkBCAECxYAIAAgASkCADcCACAAIAIpAgA3AggLBgBBNBADCwwAIAAgASAAIAFdGwvGAwEDfyACQYDAAE4EQCAAIAEgAhAjGiAADwsgACEEIAAgAmohAyAAQQNxIAFBA3FGBEADQCAAQQNxBEAgAkUEQCAEDwsgACABLAAAOgAAIABBAWohACABQQFqIQEgAkEBayECDAELCyADQXxxIgJBQGohBQNAIAAgBUwEQCAAIAEoAgA2AgAgACABKAIENgIEIAAgASgCCDYCCCAAIAEoAgw2AgwgACABKAIQNgIQIAAgASgCFDYCFCAAIAEoAhg2AhggACABKAIcNgIcIAAgASgCIDYCICAAIAEoAiQ2AiQgACABKAIoNgIoIAAgASgCLDYCLCAAIAEoAjA2AjAgACABKAI0NgI0IAAgASgCODYCOCAAIAEoAjw2AjwgAEFAayEAIAFBQGshAQwBCwsDQCAAIAJIBEAgACABKAIANgIAIABBBGohACABQQRqIQEMAQsLBSADQQRrIQIDQCAAIAJIBEAgACABLAAAOgAAIAAgASwAAToAASAAIAEsAAI6AAIgACABLAADOgADIABBBGohACABQQRqIQEMAQsLCwNAIAAgA0gEQCAAIAEsAAA6AAAgAEEBaiEAIAFBAWohAQwBCwsgBAsSACAAQbT4ATYCACAAQQRqED4LKgAgACgCEBBbBEBBACEABSAAQQRqIgAsAAtBAEgEQCAAKAIAIQALCyAACxIAIAAgARDpECAAQcD4ATYCAAsQACAALQABIAAtAABBCHRyCyoBAX8jBCEBIwRBEGokBCABIAA2AgBBBBA/IgAgASgCADYCACABJAQgAAslAQF/IAEoAgAhAiAAQgA3AgAgAEEANgIIIAAgAUEEaiACEJMBCwgAQQwQA0EACwcAIABBBGoLJwEBfyAAKAIIIgEEQCAAQQA2AgQgAEEANgIAIAEQQSAAQQA2AggLCw0AIAAoAgggAUECdGoLFgAgACABKgIAIAKUIAEqAgQgApQQMgsp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QCADIAMoApACQQFyNgKQAgtBAQsLBgAgAKiyCw0AIABB1ABqIAEQmgILFAAgASACIAAgACACXhsgACABXRsLEQBBACAAQQRqIAAoAggQWxsLIQAgAEP//39/Q///f38QMiAAQQhqQ///f/9D//9//xAyCxAAIAAoAggiAARAIAAQQQsLFwAgAEEANgIEIABBADYCACAAQQA2AggLIQEBfyMEIQIjBEEQaiQEIAIgATYCACAAIAIQ2gIgAiQEC5gCAQR/IAAgAmohBCABQf8BcSEDIAJBwwBOBEADQCAAQQNxBEAgACADOgAAIABBAWohAAwBCwsgA0EIdCADciADQRB0ciADQRh0ciEBIARBfHEiBUFAaiEGA0AgACAGTARAIAAgATYCACAAIAE2AgQgACABNgIIIAAgATYCDCAAIAE2AhAgACABNgIUIAAgATYCGCAAIAE2AhwgACABNgIgIAAgATYCJCAAIAE2AiggACABNgIsIAAgATYCMCAAIAE2AjQgACABNgI4IAAgATYCPCAAQUBrIQAMAQsLA0AgACAFSARAIAAgATYCACAAQQRqIQAMAQsLCwNAIAAgBEgEQCAAIAM6AAAgAEEBaiEADAELCyAEIAJrC58BAQN/EDwiAiwAf0UEQEGYqQQoAgAhBCABQwAAAABdIQMgAEMAAAAAXARAIAIqArQDQwAAAAAgASADGyACKgIMIAIqAliTIACSkpIhACACKgK4AyEBBSADBEAgBEHUKmoqAgAhAQsgAioC0AEhAAsgAiABIACSOALIASACIAIoAtQBNgLMASACIAIpAvQBNwLoASACIAIoAvwBNgLwAQsLqwECA38BfSMEIQUjBEEQaiQEQZipBCgCACEGIAMEQCABIAIQkAEhAgsgBSEDIAZBsDFqKAIAIQcgBkG0MWoqAgAhCCABIAJGBEAgAEMAAAAAIAgQMgUgAyAHIAhD//9/fyAEIAEgAkEAEJoDIAMqAgAiBEMAAAAAXgRAIAMgBCAIIAcqAgCVkyIEOAIACyADIARDMzNzP5KosjgCACAAIAMpAwA3AgALIAUkBAsnAEGYqQQoAgBBNGogAEECdGooAgAiAEF/SgR/IAAgARD2AgVBAAsLNQECfyMEIQMjBEEQaiQEAn8gACgCACEEIAMgARB3IAQLIAMoAgAgAigCABALIAMQMSADJAQL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KAIIRgRAIAEQ4QELIAEgACABKAIAEPIFIgI2AgAgASACNgIIIAAgARCCAQwFCyABEOEBIAFBADYCCCABQQA2AgAgAUEAOgAPDAQLIAEQ4QEgASAAKAIsIgI2AgggASACNgIAIAFBADoADwwDCyAAKAIsIQQgACABEIIBIAEQ4QEgASwAEARAIAEgBDYCACAEIQIFIAEoAgAiAiAESARAA0ACQAJ/IAAgAhDiAUH//wNxQQpGIQwgASgCACECIAwLDQAgASACQQFqIgI2AgAgAiAESA0BCwsLCyABIAI2AgggAUEAOgAPDAILQQMhAwwBCyAFQYCADEgEQCAFQY2ABGsEQEEDIQMMAgsgASgCBCABKAIIRgRAIAEgACABKAIAEPIFNgIAIAAgARCCAQUgACABELgECwwBCwJAAkACQCAFQYCADGsOAgIAAQsgARDhASABIAEoAghBAWo2AgggACABEIIBIAEgASgCCDYCACABQQA6AA8MAgtBAyEDDAELIAAgARCCASABEOEBIAEoAggiAkEASgRAIAEgAkF/aiICNgIICyABIAI2AgAgAUEAOgAPCyADQQNGBEBBACAFIAVB//8DShsiAkEASgRAAkAgBiACOwEAIAJBCkYEQCABLAAQDQELAkACQCABLAAMRQ0AIAEoAgQgASgCCEcNACABKAIAIgIgACgCLE4NACAAIQUgAUEYaiACQQFBARC5BCIEBEAgBCAFIAIQ4gE7AQALIAAgASgCAEEBENkDIAAgASgCACAGQQEQkgMEQCABIAEoAgBBAWo2AgAgAUEAOgAPCwwBCyAAIAEQkwMgACABKAIAIAZBARCSAwRAIAEgASgCAEEBEPcFIAEgASgCAEEBajYCACABQQA6AA8LCwsLBSADQckARgRAIAEoAgQgASgCCEYEQCABKAIAIgIgACgCLEgEQCAAIAEgAkEBENoDCwUgACABEJMDCyABQQA6AA8FIANBzgBGBEAgASgCBCABKAIIRgRAIAAgARCCASABKAIAIgJBAEoEQCAAIAEgAkF/akEBENoDIAEgASgCAEF/ajYCAAsFIAAgARCTAwsgAUEAOgAPCwsLIAkkBAtIAQF/IAFBGGogAiADQQAQuQQiBEEARyADQQBKcQRAQQAhAQNAIAFBAXQgBGogACABIAJqEOIBOwEAIAFBAWoiASADRw0A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CyQAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAAQQNxQZwLahExAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBA3FBmAtqETYACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBlAtqERkACyIAIAEgAiADIAQgBSAGIAcgCCAJIAogAEEBcUGSC2oRTwALHgAgASACIAMgBCAFIAYgByAIIABBA3FBjgtqEU4ACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBigtqETIACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQYgLahFNAAscACABIAIgAyAEIAUgBiAHIABBB3FBgAtqESoACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQf4KahEzAAscACABIAIgAyAEIAUgBiAHIABBA3FB+gpqESsACxoAIAEgAiADIAQgBSAGIABBD3FB6gpqERoACw0AIABB+ClqQQAQwAELHgAgASACIAMgBCAFIAYgByAIIABBAXFB6ApqEUwACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHmCmoRSwALGgAgASACIAMgBCAFIAYgAEEDcUHiCmoRLAALGAAgASACIAMgBCAFIABBD3FB0gpqES0ACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHQCmoRKAALGgAgASACIAMgBCAFIAYgAEEDcUHMCmoRKQALGAAgASACIAMgBCAFIABBA3FByApqEScACxYAIAEgAiADIAQgAEEfcUGoCmoRBgALIAAgASACIAMgBCAFIAYgByAIIAkgAEEBcUGmCmoRSgALHAAgASACIAMgBCAFIAYgByAAQQFxQaQKahFJAAscACABIAIgAyAEIAUgBiAHIABBAXFBogpqEUgACxoAIAEgAiADIAQgBSAGIABBA3FBngpqESMACxgAIAEgAiADIAQgBSAAQQNxQZoKahEPAAscACABIAIgAyAEIAUgBiAHIABBAXFBmApqEUcACxYAIAEgAiADIAQgAEEDcUGUCmoRNAALFQAgASACIAMgAEH/AHFBlAlqEQcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQZIJahEwAAsaACABIAIgAyAEIAUgBiAAQQFxQZAJahEmAAsaACABIAIgAyAEIAUgBiAAQQFxQY4JahEuAAsYACABIAIgAyAEIAUgAEEDcUGKCWoRLwALFgAgASACIAMgBCAAQQNxQYYJahEKAAseACABIAIgAyAEIAUgBiAHIAggAEEBcUGECWoRJAALGgAgASACIAMgBCAFIAYgAEEBcUGCCWoRNQALFAAgASACIAMgAEEPcUHyCGoRNwALFgAgASACIAMgBCAAQQNxQe4GahEOAAsUACABIAIgAyAAQQFxQewGahERAAscACABIAIgAyAEIAUgBiAHIABBAXFB6gZqEUYACxQAIAEgAiADIABBAXFB6AZqEUUACxQAIAEgAiADIABBAXFB3gRqERgACxoAIAEgAiADIAQgBSAGIABBA3FB2gRqEQ0ACxUAQZipBCgCAEE0aiAAQQJ0aigCAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBAXFBggRqEUQACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBB3FB+gNqERcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQ9xQeoDahETAAscACABIAIgAyAEIAUgBiAHIABBD3FB2gNqERQACxoAIAEgAiADIAQgBSAGIABBH3FBugNqERUACxgAIAEgAiADIAQgBSAAQQ9xQaoDahESAAsWACABIAIgAyAEIABBH3FBigNqEQkACxoAIAEgAiADIAQgBSAGIABBAXFBiANqEUMACxgAIAEgAiADIAQgBSAAQQFxQYYDahFCAAsWACABIAIgAyAEIABBAXFBhANqEUEACxwAIAEgAiADIAQgBSAGIAcgAEEBcUGCA2oRQAALGAAgASACIAMgBCAFIABBAXFBwAJqET8ACxYAIAEgAiADIAQgAEEBcUG+AmoRPgALHgAgASACIAMgBCAFIAYgByAIIABBAXFBvAJqET0ACxYAIAEgAiADIAQgAEEBcUG6AmoRPAALFAAgASACIAMgAEEDcUG2AmoRIgALGgAgASACIAMgBCAFIAYgAEEBcUG0AmoRFgALFgAgASACIAMgBCAAQQFxQbIBahElAAsUACABIAIgAyAAQQFxQbABahEMAAsaACABIAIgAyAEIAUgBiAAQQFxQawBahE4AAsUACABIAIgAyAAQQNxQcgAahE7AAsRACABIAIgAEEfcUEoahEIAAsPACABIABBA3FBJGoRHAALDQAgAEEfcUEEahEgAAsPACABIABBAXFBAmoROgALCgAgAEEBcREQAAvS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AiADIAQgBUEPcUHSCmoRLQAMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIAFBADoANCABQQA6ADUgACgCCCIAKAIAKAIUIQMgACABIAIgAkEBIAQgA0EPcUHqCmoRGgAgAQJ/AkAgASwANQR/IAEsADQNAUEBBUEACyEAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAA0CQQQMAwsLIAANAEEEDAELQQMLNgIsDAILCyADQQFGBEAgAUEBNgIgCwsLC0QBAX8gACABKAIIEIUBBEAgASACIAMgBBCFBQUgACgCCCIAKAIAKAIUIQYgACABIAIgAyAEIAUgBkEPcUHqCmoRGgALCxgAIAAgASgCCBCFAQRAIAEgAiADEIcFCwuPAQAgACABKAIIEIUBBEAgASACIAMQhgUFIAAgASgCABCFAQRAAkAgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASACNgIUIAEgASgCKEEBajYCKCABKAIkQQFGBEAgASgCGEECRgRAIAFBAToANgsLIAFBBDYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwsLGgAgACABKAIIEIUBBEAgASACIAMgBBCFBQsLyQEBA38jBCEEIwRBQGskBCAEIQMgACABEIUBBH9BAQUgAQR/IAFB4PQBEJQEIgEEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyABNgIAIAMgADYCCCADQX82AgwgA0EBNgIwIAEoAgAoAhwhACABIAMgAigCAEEBIABBH3FBqApqEQYAIAMoAhhBAUYEfyACIAMoAhA2AgBBAQVBAAsFQQALBUEACwshBSAEJAQgBQt4AQN/IwQhASMEQRBqJAQgASEAAn9BAEGMrgQoAgBB37femgFGDQAaQbMEESEAQYyuBEHft96aATYCAEEACwRAQZSKAyAAEMICBQJ/An9BAEGQrgQoAgAiACgCBEHOlZoSRw0AGiAAKAIACyECIAEkBCACCw8LQQALowICB38BfiMEIQIjBEEwaiQEIAJBGGohASACQRBqIQMgAiEEIAJBJGohBRDLCyIABEAgACgCACIABEAgACkDMCIHQoB+g0KA1qyZ9MiT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AgAhBCAAEIoCIAAoAiAQtgcgBAsQigILCyAAQdQyaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAwRAIAMQjRIgAxBBCyABQQFqIgEgAigCAEgNAAsLIAIQTyAAQeAyahBPIABB7DJqEE8gAEGUM2pBADYCACAAQfgyahBPIABBhDNqEE8gAEGgNWpBADYCACAAQZgzakEANgIAIABBnDNqQQA2AgAgAEHcM2pBADYCACAAQdgzakEANgIAIABB9DNqQQA2AgAgAEH4M2oQTyAAQYQ0ahBPIABBkDRqEE8gAEGcNGoQTyAAQag0ahBPIABBwDdqIQJBACEBA0AgAUEMbCACahBPIAFBAWoiAUECRw0ACyAAQdw3ahDdBCAAQYTYAGoQTyAAQZA6ahBPIABBnDpqEE8gAEGoOmoQTyAAQcDYAGoiAigCAEEASgRAQQAhAQNAIAIgARBVKAIAEPYHIAFBAWoiASACKAIASA0ACwsgAhBPIABBtNgAahBPIABB0NgAaiICKAIAIgFBzIECKAIARiABRXJFBEAgARDDAhogAkEANgIACyAAQdTYAGoQTyAAQQA6AAALCwsAIAAQngUgABBUC00BAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACQYz8ATYCACACIAE2AgggAhCvBSAAIAJBBGoQ5AMhAyACEJ4FIAIkBCADCwsAIAAQnwUgABBUC08BAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADQfT7ATYCACADIAE2AgggAxDGByAAIANBBGogAhCABiEEIAMQnwUgAyQEIAQLMwAgAEGYqQQoAgAgABsiABCxD0GYqQQoAgAgAEYEQEEAEIoCCyAABEAgABDkCSAAEEELC1QBAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQygEgACACIAMQTiIAKAIARhC5AiIBBEAgACACNgIACyABIQQgAxC0ASADJAQgBAtWAgJ/An0jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQcSABQQhqIgIgAEE8aiAAQUBrIAEQywcgAhA9IQQgAhAxIAEQMSABJAQgBAsHACABELgPC4kBAgJ/An0jBCEJIwRBMGokBEGwqQQoAgAiCkE8aiABEIgBIApBQGsg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QYAHaiIKEDogAEGwB2ohAyAAQYgHaiEBA0AgARA6IAFBCGoiASADRw0ACyAAQbwIaiEDIABBlAhqIQEDQCABEDogAUEIaiIBIANHDQALIABB+ClqEGggAEEAQYgqEGoaIAJDAACAv0MAAIC/EDIgBSACKQMANwIAIABDiYiIPDgCECAAQwAAoEA4AhQgAEHmhQI2AhggAEHwhQI2AhwgAEOamZk+OAIgIABDAADAQDgCJCAAQSxqIgFCfzcCACABQn83AgggAUJ/NwIQIAFCfzcCGCABQn83AiAgAUJ/NwIoIAFCfzcCMCABQn83AjggAUFAa0J/NwIAIAFCfzcCSCABQX82AlAgAEMAAIA+OAKAASAAQ83MTD04AoQBIABBADYCiAEgAEEANgKMASAAQwAAgD84ApABIABBADYCmAEgAEEAOgCUASACQwAAgD9DAACAPxAyIAYgAikDADcCACACQwAAAABDAAAAABAyIAggAikDACILNwIAIAcgCzcCACAAQQA6ALUBIABBAToAtgEgAEEBOgC3ASAAQQA6ALgBIABCADcCvAEgAEIANwLEASAAQQA2AswBIABBAzYC0AEgAEECNgLUASAAQQA2AtgBIABBAzYC3AEgAEEANgLgASACQ///f/9D//9//xAyIAkgAikDADcCACACQ///f/9D//9//xAyIAogAikDADcCACAAQwAAwEA4AihBACEBA0AgAEGACGogAUECdGpDAACAvzgCACAAQewHaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEFRw0AC0EAIQEDQCAAQdAYaiABQQJ0akMAAIC/OAIAIABB0AhqIAFBAnRqQwAAgL84AgAgAUEBaiIBQYAERw0AC0EAIQEDQCAAQdAoaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEVRw0ACyAEJAQLNAECfyMEIQQjBEEQaiQEIARBCGoiBSABIAIQwgogBCADEG8gACAFIAQQgQEgBBAxIAQkBAtCAQJ/IwQhBCMEQRBqJAQgBCADEDQgBEEEaiIDIAEgAiAEIABBA3FBhglqEQoAIAMQfSEFIAMQMSAEEDEgBCQEIAULKwEBfxDVByIBQZquBCABGyEBIABCADcCACAAQQA2AgggACABIAEQXBCTAQsxAQF/IwQhASMEQRBqJAQgASAAEJ8BIAEoAgAgASABLAAL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C0EASAR/IAAoAgAFIAALIAEQqwgLGAAgACwAC0EASAR/IAAoAgAFIAALEJMKCwkAIAAgARDiEAsqAQJ/An8jBCEBIwRBEGokBEHEvgJBBEHAywFBicsCQRJBFxACIAELJAQLCwAgACABIAIQ4BALCQAgACABEN8QCwsAIAAgASACEN4QCxgAIAAsAAtBAEgEfyAAKAIABSAACxCpAwsJACAAIAEQ3BALGAAgACwAC0EASAR/IAAoAgAFIAALEKsDCyoBAn8CfyMEIQEjBEEQaiQEQem9AkEFQdDLAUG7zAJBDUELEAIgAQskBAsNACAAIAEgAiADENsQCyoBAn8CfyMEIQEjBEEQaiQEQd69AkEFQfDLAUG7zAJBDEEKEAIgAQskBAsNACAAIAEgAiADENoQCxoAIAAsAAtBAEgEfyAAKAIABSAACyABEK8ICwcAIAAQ2RALKgECfwJ/IwQhASMEQRBqJARB6bwCQQRBkMwBQd3NAkECQQEQAiABCyQECwsAIAAgASACENcQCyoBAn8CfyMEIQEjBEEQaiQEQeG8AkEDQez4AUHjzQJBEUEdEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHZvAJBA0H4+AFB480CQRBBHBACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB0bwCQQNBhPkBQePNAkEPQRsQAiABCyQECxoAIAAsAAtBAEgEfyAAKAIABSAACyABELUICyoBAn8CfyMEIQEjBEEQaiQEQbO8AkEEQaDMAUGJywJBEUEVEAIgAQskBAscACAALAALQQBIBH8gACgCAAUgAAsgASACEM8FCwkAIAAgARDVEAsRACAAIAEgAiADIAQgBRDUEAsqAQJ/An8jBCEBIwRBEGokBEGPvAJBBkGwzAFB6M0CQRFBBhACIAELJAQLDwAgACABIAIgAyAEEM0QCw0AIAAgASACIAMQyhALKgECfwJ/IwQhASMEQRBqJARB9bsCQQVB0MwBQbvMAkELQQgQAiABCyQECw0AIAAgASACIAMQyBALCwAgACABIAIQxxALNQEBfyAALAALQQBIBEAgACgCACEACxA8IgIsAH8Ef0EABSACIAAQXiABQRpyIABBABDTAgsLBwAgABC9CAsYACAALAALQQBIBH8gACgCAAUgAAsQvggLKgECfwJ/IwQhASMEQRBqJARB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AAtBAEgEfyAAKAIABSAACyABELkCCyoBAn8CfyMEIQEjBEEQaiQEQc61AkEEQfDSAUGJywJBDkEJEAIgAQskBAsLACAAIAEgAhC1DwsJACAAIAEQsw8LKgECfwJ/IwQhASMEQRBqJARBubUCQQhBgNMBQYfRAkEEQQEQAiABCyQECxMAIAAgASACIAMgBCAFIAYQrw8LKgECfwJ/IwQhASMEQRBqJARBs7UCQQdBoNMBQZ/TAkEBQQQQAiABCyQECxEAIAAgASACIAMgBCAFEK0PCwkAIAAgARCsDwsaACAALAALQQBIBH8gACgCAAUgAAsgARCDCQsYACAALAALQQBIBH8gACgCAAUgAAsQxAQLCQAgACABEKkPC6cEAgF/AX4jBCEBIwRBEGokBCAAEDogAEEIahA6IABBEGoQOiAAQRhqEDogAEEgahA6IABBLGoQOiAAQcwAahBmIABB3ABqEGYgAEGAAWoQOiAAQYgBahBoIABBADYCsAEgAEEANgKsASAAQQA2ArQBIABBuAFqEGggAEHEAWoQaCAAQQA2AtQBIABBADYC0AEgAEEANgLYASAAQegBahDnAiAAQewBahDnAiAAQfABahDnAiABQwAAAABDAAAAABAyIAAgASkDACICNwIYIAAgAjcCECAAIAI3AgggACACNwIAIAFDAAAAAEMAAAAAEDIgACABKQMAIgI3AiwgACACNwIgIABDAAAAADgCNCAAQwAAAAA4AiggAEMAAIC/OAI4IABCADcCPCAAQgA3AkQgARBmIAAgASkCADcCXCAAIAEpAgg3AmQgACABKQIANwJMIAAgASkCCDcCVCAAQQA2AnggAEEANgJ0IABBADYCbCAAQQE2AnAgAEEAOgB8IABBADoAfSAAQQA6AH4gAUMAAAAAQwAAAAAQMiAAIAEpAwA3AoABIABBADYClAEgAEEBNgKcASAAQQE2ApgBIABDAAAAADgCpAEgAEEANgKgASAAQwAAgL84AqgBIABCADcC3AEgAEEANgLkASABEOcCIAAgASgCADYC6AEgARDnAiAAIAEoAgA2AuwBIAEQ5wIgACABKAIANgLwASAAQQA2AvQBIAEkBAsaACAALAALQQBIBH8gACgCAAUgAAtBABC5AQsHACAAEKAPC9AHAgV/AX4jBCEFIwRBEGokBCAFIQMgAEEMahA6IABBFGoQOiAAQRxqEDogAEEkahA6IABBLGoQOiAAQTRqEDogAEE8ahA6IABB2ABqEDogAEHgAGoQOiAAQegAahA6IABB8ABqEDogAEG4AWoQOiAAQcABahA6IABByAFqEMoSIABBwANqIgYiBEEANgIEIARBADYCACAEQQA2AgggAEHMA2oQZiAAQdwDahBmIABB7ANqEGYgAEH8A2oQZiAAQYwEahBmIABBpARqEN4DIABB1ARqEGggAEEANgLkBCAAQQA2AuAEIABBADYC6AQgAEH4BGoiByABQbwxahD4ByAAQagGaiEEIABBiAZqIQEDQCABEGYgAUEQaiIBIARHDQALIAAgAhDaBjYCACAAQQRqIgEgAkEAQQAQuwE2AgAgBiABEHggAEEANgIIIANDAAAAAEMAAAAAEDIgACADKQMANwIMIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AhwgACAINwIUIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AjQgACAINwIsIANDAAAAAEMAAAAAEDIgACADKQMANwI8IABDAAAAADgCRCAAQwAAAAA4AkggACACEFxBAWo2AkwgACAAQf6FAhBeNgJQIABBADYCVCADQwAAAABDAAAAABAyIAAgAykDADcCWCADQ///f39D//9/fxAyIAAgAykDADcCYCADQwAAAD9DAAAAPxAyIAAgAykDADcCaCADQwAAAABDAAAAABAyIAAgAykDADcCcCAAQQA7AYQBIABCADcCeCAAQQA7AYABIABBADoAggEgAEF/OwGGASAAQX87AYgBIABBADYCjAEgAEF/NgKUASAAQX82ApABIABBADoAmAEgAEEANgKcASAAQX82AqABIABBADYCqAEgAEEANgKkASAAQQ82ArQBIABBDzYCsAEgAEEPNgKsASADQ///f39D//9/fxAyIAAgAykDACIINwLAASAAIAg3ArgBIABBfzYCnAQgAEMAAAAAOAKgBCAAQwAAgD84AuwEIABBfzYC8AQgACAHNgL0BCAAIAAoAgA2AqQFIABBADYChAYgAEEANgKABiAAQgA3AuwFIABCADcC9AUgAxBmIAAgAykCADcCmAYgACADKQIINwKgBiAAIAMpAgA3AogGIAAgAykCCDcCkAYgAEEANgL8BSAAQX82AqwGIABBfzYCqAYgAEH/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ICAtICAgICAgICAgIFguWCAgICAgICAgICAtWC4uLi4uWCAgICAgICAgICAtICAgICAgICAgIFguLi4uLlgtICAgIFguLlggICAgICAgICAtLS0gICAgICAgICAtWFhYLlhYWC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtWC4uLi5YICAgICAgICAgICAtICAgICAgICAgICBYLi4uLlgtICAgIFguLlggICAgICAgICBYICAgICAgICAgICAtICBYLlggIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtWC4uLlggICAgICAgICAgICAtICAgICAgICAgICAgWC4uLlgtICAgIFguLlggICAgICAgICBYWCAgICAgICAgICAtICBYLlggIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtWC4uWC5YICAgICAgICAgICAtICAgICAgICAgICBYLlguLlgtICAgIFguLlggICAgICAgICBYLlggICAgICAgICAtICBYLlggIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtWC5YIFguWCAgICAgICAgICAtICAgICAgICAgIFguWCBYLlgtICAgIFguLlhYWCAgICAgICBYLi5YICAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWFggICBYLlggICAgICAgICAtICAgICAgICAgWC5YICAgWFgtICAgIFguLlguLlhYWCAgICBYLi4uWCAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgWC5YICAgICAgICAtICAgICAgICBYLlggICAgICAtICAgIFguLlguLlguLlhYICBYLi4uLlggICAgICAtICBYLlggIC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgIFguWCAgICAgICAtICAgICAgIFguWCAgICAgICAtICAgIFguLlguLlguLlguWCBYLi4uLi5YICAgICAtICBYLlggIC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICBYLlggICAgICAtICAgICAgWC5YICAgICAgICAtWFhYIFguLlguLlguLlguLlhYLi4uLi4uWCAgICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgWC5YICAgWFgtWFggICBYLlggICAgICAgICAtWC4uWFguLi4uLi4uLlguLlhYLi4uLi4uLlggICAtICBYLlggIC0gICBYLlggICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgIFguWCBYLlgtWC5YIFguWCAgICAgICAgICAtWC4uLlguLi4uLi4uLi4uLlhYLi4uLi4uLi5YICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgICBYLlguLlgtWC4uWC5YICAgICAgICAgICAtIFguLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uWCAtWFhYLlhYWC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICAgICAgWC4uLlgtWC4uLlggICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uLlgtWC4uLi4uWC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgICAgICBYLi4uLlgtWC4uLi5YICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uWFhYWFgtWFhYWFhYWC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgICAgIFguLi4uLlgtWC4uLi4uWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uLlhYLi4uWC4uWCAgICAtLS0tLS0tLS0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtWFhYWFhYWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uWCBYLi5YIFguLlggICAtICAgICAgIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tICAgIFguLi4uLi4uLi4uWCBYLlggIFguLlggICAtICAgICAgIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAtICAgIFguLi4uLi4uLi4uWCBYWCAgICBYLi5YICAtICAgICAgIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICBYLi5YICAgICAgICAgIC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICAgWFggICAgICAgICAgIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAtICAgICBYWFhYWFhYWFhYICAtLS0tLS0tLS0tLS0gICAgICAgIC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0gICAgICAgICAgICAgICAgICAgIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAQaAiC8xdN10pIyMjIyMjI2hWMHFzJy8jIyNbKSwjIy9sOiQjUTY+IyM1W240Mj5jLVRIYC0+PiMvZT4xMU5OVj1CdigqOi5GP3V1IyhnUlUubzBYR0hgJHZoTEcxaHh0OT9XYCMsNUxzQ3AjLWk+LnIkPCQ2cEQ+TGInOzlDcmM2dGdYbUtWZVUyY0Q0RW8zUi8yKj5dYihNQzskalBmWS47aF5gSVdNOTxMaDJUbFMrZi1zJG82UTxCV0hgWWlVLnhmTHEkTjskMGlSL0dYOlUoamNXMnAvVypxPy1xbW5VQ0k7akhTQWlGV00uUiprVUBDPUdIP2E5d3A4ZiRlLi00XlFnMSlRLUdMKGxmKHIvN0dyUmd3ViVNUz1DI2A4TkQ+UW8jdCdYIyh2I1k5dzAjMUQkQ0lmO1cnI3BXVVBYT3V4WHVVKEg5TSgxPHEtVUUzMSNeLVYnOElSVW83UWYuL0w+PUtlJCQnNUYlKV0wXiMwWEBVLmE8cjpRTHRGc0xjTDYjI2xPaikjLlk1PC1SJktnTHdxSmZMZ04mO1E/Z0leI0RZMnVMaUBeck1sOXQ9Y1dxNiMjd2VnPiRGQmpWUVRTRGdFS25JUzdFTTk+Wlk5dzAjTDs+PiNNeCY0TXZ0Ly9MW01rQSNXQGxLLk4nWzAjN1JMXyYjdytGJUh0RzlNI1hMYE4mLixHTTRQZzstPG5MRU5odng+LVZzTS5NMHJKZkxIMmVUTWAqb0pNSFJDYE5rZmltTTJKLFctalhTOilyMHdLI0BGZ2UkVT5gdydON0cjJCNmQiMkRV4kIzo5OmhrK2VPZS0tNngpRjcqRSU/NzYlXkdNSGVQVy1aNWwnJkdpRiMkOTU2OnJTP2RBI2ZpSzopWXIrYCYjMGpAJ0RiRyYjXiRQRy5MbCtETmE8WENNS0VWKk4pTE4vTipiPSVRNnBpYS1YZzhJJDxNUiYsVmRKZSQ8KDdHO0NrbCcmaEY7OyQ8Xz1YKGIuUlMlJSkjIyNNUEJ1dUUxVjp2JmNYJiMybSMoJmNWXWBrOU9oTE1ibiVzJEcyLEIkQmZEM1gqc3A1I2wsJFIjXXhfWDF4S1glYjVVKltyNWlNZlVvOVVgTjk5aEcpdG0rL1VzOXBHKVhQdWA8MHMtKVdUdChnQ1J4SWcoJTZzZmg9a3RNS24zaik8NjxiNVNrXy8wKF5dQWFOIyhwL0w+JlZaPjFpJWgxUzl1NW9AWWFhVyRlK2I8VFdGbi9aOk9oKEN4MiRsTkVvTl5lKSNDRllAQEk7Qk9RKnNSd1p0WnhSY1U3dVc2Q1hvdzBpKD8kUVtjak9kW1A0ZCldPlJPUE9weFRPN1N0d2kxOjppQjFxKUNfPWRWMjZKOzIsXTdvcCRddVFyQF9WNyRxXiVsUXd0dUhZXT1EWCxuM0wjMFBIRE80Zjk+ZENATz5IQnVLUHBQKkUsTitiM0wjbHBSL01yVEVILklBUWsuYT5EWy5lO21jLnhdSXAuUEheJy9hcVVPLyQxV3hMb1cwW2lMQTxRVDs1SEtEK0BxUSdOUSgzX1BMaEU0OFIucUFQU3dRMC9XSz9aLFt4Py1KO2pRVFdBMFhAS0ooX1k4Ti06L003NDovLVpwS3JVc3M/ZCNkWnFdREFia1UqSnFrTCtud1hAQDQ3YDU+dz00aCg5LmBHQ1JVeEhQZVJgNU1qb2woZFVXeFphKD5TVHJQa3JKaVd4YDVVN0YjLmcqanJvaEdnYGNnOmxTVHZFWS9FVl83SDRROVtaJWNudjtKUVlaNXEubDdaZWFzOkhPSVpPQj9HPE5hbGQkcXNdQF1MPEo3YlIqPmd2Ols3TUkyaykuJzIoJDVGTlAmRVEoLClVXVddK2ZoMTgudnNhaTAwKTtEM0A0a3U1UD9EUDhhSnQrO3FVTV09K2InOEA7bVZpQkt4MERFWy1hdUdsODpQSiZEaitNNk9DXU9eKCgjI11gMGkpZHJUOy03WGA9LUgzW2lnVW5QRy1OWmxvLiNrQGgjPU9yayRtPmE+JC0/VG0kVVYoPyNQNllZIycvIyMjeGU3cS43M3JJMypwUC8kMT5zOSlXLEpyTTdTTl0nLzRDI3YkVWAwI1YuWzA+eFFzSCRmRW1QTWdZMnU3S2goRyVzaUlmTFNvUytNSzJlVE0kPTUsTThwYEEuO19SJSN1W0sjJHg0QUc4LmtLL0hTQj09LSdJZS9RVHRHPy0uKl5OLTRCL1pNXzNZbFFDNyhwN3EpJl0oYDZfYykkLypKTChMLV4oXSR3SU1gZFB0T2RHQSxVMzp3Mk0tMDxxLV1MXz9eKTF2dycuLE1Sc3FWci5MO2FOJiMvRWdKKVBCY1stZj4rV29tWDJ1N2xxTTJpRXVtTVRjc0Y/LWFUPVotOTdVRW5YZ2xFbjFLLWJuRU9gZ3VGdChjJT07QW1fUXNAakxvb0kmTlg7XTAjajQjRjE0O2dsOC1HUXBnd2hycTgnPWxfZi1iNDknVU9xa0x1Ny0jI29EWTJMKHRlK01jaCZnTFl0SixNRXRKZkxoJ3gnTT0kQ1MtWlolUF04Ylo+I1M/WVkjJVEmcSczXkZ3Jj9EKVVETnJvY00zQTc2Ly9vTD8jaDdnbDg1W3FXL05ET2slMTZpajsrOjFhJ2lOSWRiLW91OC5QKncsdjUjRUkkVFdTPlBvdC1SKkgnLVNFcEE6ZylmK08kJSVga0EjRz04Uk1tRzEmT2A+dG84YkNdVCYkLG4uTG9PPjI5c3AzZHQtNTJVJVZNI3E3J0RIcGcrI1o5JUhbSzxMJWEyRS1ncldWTTNAMj0tazIydExdNCQjIzZXZSc4VUpDS0VbZF89JXdJOyc2WC1Hc0xYNGpeU2dKJCMjUip3LHZQM3dLI2lpVyYjKmheRCZSP2pwNysvdSYjKEFQIyNYVThjJGZTWVctSjk1Xy1EcFtnOXdjTyYjTS1oMU9jSmxjLSp2cHcweFVYJiNPUUZLTlhAUUknSW9QcDduYixRVS8vTVEmWkRrS1ApWDxXU1ZMKDY4dVZsJiNjJ1swIyhzMVgmeG0kWSVCNypLOmVEQTMyM2o5OThHWGJBI3B3TXMtamdEJDlRSVNCLUFfKGFONHhvRk1eQEM1OEQwK1ErcTNuMCMzVTFJbkRqRjY4Mi1Tak1YSkspKGgkaHh1YV9LXXVsOTIlJ0JPVSYjQlJSaC1zbGc4S0RscjolTDcxS2E6LkE7JVlVTGpEUG1MPExZczhpI1h3Sk9ZYUtQS2MxaDonOUtlLGcpYiksNzg9STM5Qjt4aVkkYmdHdy0mLlppOUluWER1WWElRypmMkJxN21uOV4jcDF2diUjKFdpLTsvWjVobzsjMjo7JWQmI3g5djY4QzVnP250WDBYKXBUYDslcEIzcTdtZ0dOKTMlKFA4blRkNUw3R2VBLUdMQCslSjN1MjooWWY+ZXRgZTspZiNLbTgmK0RDJEk0Nj4jS3JdXXUtWz05OXR0czEucWIjcTcyZzFXSk84MXErZU4nMDMnZU0+JjFYeFktY2FFbk9qJTJuOCkpLD9JTFI1Xi5JYm48LVgtTXE3W2E4MkxxOkYmI2NlK1M5d3NDSyp4YDU2OUU4ZXcnSGVdaDpzSVsyTE0kW2d1a2EzWlJkNjp0JUlHOjskJVlpSjpOcT0/ZUF3Oy86bm5EcTAoQ1ljTXBHKXFMTjQkIyMmSjxqJFVwSzxRNGExXU11cFdeLXNqXyQlW0hLJSdGIyMjI1FSWko6OlkzRUdsNCdAJUZraUFPZyNwWyMjT2BndWtUZkJIYWdMPExIdyVxJk9WMCMjRj02LzpjaEltMEBlQ1A4WF06a0ZJJWhsOGhnT0BSY0JoUy1AUWIkJSttPWhQRExnKiVLOGxuKHdjZjMvJ0RXLSQubFI/bltuQ0gtZVhPT05USmxoOi5SWUYlMydwNnNxOlVJTUE5NDUmXkhGUzg3QCRFUDJpRzwtbENPJCVjYHVLR0QzckMkeDBCTDhhRm4tLWBrZSUjSE1QJ3ZoMS9SJk9fSjkndW0sLjx0eFtAJXdzSmsmYlVUMmAwdU12N2dnI3FwL2lqLkw1NidobDsuczVDVXJ4ak9NNy0jIy5sK0F1J0EmTzotVDcyTF1QYCY9O2N0cCdYU2NYKnJVLj4tWFR0LCVPVlU0KVMxK1ItI2RnMC9Obj9LdTFeMGYkQipQOlJvd3dtLWAwUEtqWURETSczXWQzOVZaSEVsNCwuaiddUGstTS5oXiY6MEZBQ20kbWFxLSZzZ3cwdDcvNiheeHRrJUx1SDg4RmotZWttPkdBI18+NTY4eDYoT0ZSbC1JWnBgJmIsX1AnJE08Sm5xNzlWc0pXL21XUypQVWlxNzY7XS9OTV8+aExieGZjJG1qYCxPOyYlVzJtYFpoOi8pVWV0dzphSiVdSzloOlRjRl11Xy1TajksVkszTS4qJyYwRFtDYV1KOWdwOCxrQVddJSg/QSVSJGY8LT5adHMnXmtuPS1eQGM0JS1wWTZxSSVKJTFJR3hmTFU5Q1A4Y2JQbFh2KTtDPWIpLDwybU92UDh1cCxVVmYzODM5YWNBV0FXLVc/I2FvL14jJUtZbzhmUlVMTmQyLj4lbV1VSzpuJXIkJ3N3XUo7NXBBb09fIzJtTzNuLCc9SDUoZXRIZypgK1JMZ3Y+PTRVOGd1RCRJJUQ6Vz4tcjVWKiVqKlc6S3Zlai5McCQ8TS1TR1onOitRX2srdXZPU0xpRW8oPGFEL0s8Q0NjYCdMeD4nPzsrK08nPigpakxSLV51NjhQSG04WkZXZStlajhoOjlyNkwqMC8vYyZpSCZSOHBSYkEjS2ptJXVwVjFnOmFfI1VyN0Z1QSModFJoIy5ZNUsrQD8zPC04bTAkUEVuO0o6cmg2P0k2dUc8LWB3TVUnaXJjcDBMYUVfT3RsTWImMSM2VC4jRkRLdSMxTHcldSUrR00rWCdlP1lMZmpNW1ZPME1idUZwNzs+USYjV0lvKTBARiVxN2MjNFhBWE4tVSZWQjxIRkYqcUwoJC9WLDsoa1haZWpXT2A8WzU/P2V3WSgqOT0ld0RjOyx1PCc5dDNXLShIMXRoMytHXXVjUV1rTHM3ZGYoJC8qSkxdQCp0N0J1X0czXzdtcDc8aWFRak9ALmtMZzt4M0IwbHFwN0hmLF5aZTctIyNAL2M1OE1vKDM7a25wMCUpQTc/LVcrZUknbzgpYjxuS253J0hvOEM9WT5wcUI+MGllJmpoWls/aUxSQEBfQXZBLWlRQyg9a3NSWlJWcDdgLj0rTnBCQyVyaCYzXVI6OFhEbUU1XlY4Tyh4PDxhRy8xTiQjRlgkMFY1WTZ4J2FFckkzSSQ3eCVFYHY8LUJZLCklLT9Qc2YqbD8lQzMubU0oPS9NMDpKeEcnPzdXaEglbydhPC04MGcwTkJ4b08oR0g8ZE1dbi4rJXFAakg/Zi5Vc0oyR2dzJjQ8LWU0NyZLbCtmLy85QGBiKz8uVGVOXyZCOFNzP3Y7XlRyaztmI1l2SmtsJnckXT4tK2s/Jyg8Uzo2OHRxKldvRGZadSc7bU0/OFhbbWE4VyUqYC09O0QuKG5jNy87KWc6VDE9XkokJkJSVigtbFRtTkI2eHFCW0AwKm8uZXJNKjxTV0ZddTI9c3QtKig2dj5eXShILmFSRVpTaSwjMTpbSVhhWkZPbTwtdWkjcVVxMiQjI1JpO3U3NU9LIyhSdGFXLUstRmBTK2NGXXVOYC1LTVElclAvWHJpLkxSY0IjIz1ZTDNCZ00vM01EP0BmJjEnQlctKUp1PEwyNWdsOHVoVm0xaEwkIyMqOCMjIydBMy9Ma0tXKyhecldYPzVXXzhnKWEobSZLOFA+I2JtbVdDTWtrJiNUUmBDLDVkPmcpRjt0LDQ6QF9sOEcvNWg0dlVkJSYlOTUwOlZYRCdRZFdvWS1GJEJ0VXdtZmUkWXFMJzgoUFdYKFA/XkBQbzMkIyNgTVNzP0RXQlovUz4rNCU+ZlgsVld2L3cnS0RgTFA1SWJIO3JUVj5uM2NFSzhVI2JYXWwtL1YrXmxqMzt2bE1iJls1WVE4I3Bla1g5SlAzWFVDNzJMLCw/K05pJmNvN0Fwbk8qNU5LLCgoVy1pOiQsa3AnVURBTyhHMFNxN01WakpzYkl1KSdaLCpbPmJyNWZYXjpGUEFXci1tMktnTDxMVU4wOThrVEYmI2x2bzU4PS92akRvOy47KUthKmhMUiMvaz1yS2J4dVZgPlFfbk42Jzh1VEcmIzFUNWcpdUx2Ojg3M1VwVExnSCsjRmdwSCdfbzE3ODBQaDhLbXhRSjgjSDcyTDRANzY4QFRtJlFoNENCLzVPdm1BJixRJlFiVW9pJGFfJTNNMDFIKTR4N0leJktRVmd0Rm5WKztbUGM+W200ay8vLF0xPyNgVllbSnIqMyYmc2xSZkxpVlpKOl0/PUszU3c9WyQ9dVJCPzN4azQ4QGFlZzxaJzwkIzRIKTYsPmUwalQ2J04jKHElLk89PzJTXXUqKG08LVY4SicoMSlHXVs2OGhXJDUncVtHQyY1amBURT9tJ2VzRkdOUk0paixmZlo/LXF4ODstPmc0dCo6Q0lQL1tRYXA3LzknIygxc2FvN3ctLnFOVWRrSil0Q0YmI0JeO3hHdm4ycjlGRVBGRkZjTEAuaUZOa1R2ZSRtJSNRdlFTOFVAKTJaKzNLOkFLTTVpc1o4OCtkS1EpVzY+SiVDTDxLRT5gLmQqKEJgLW44RDlvSzxVcF1jJFgkKCwpTThadDcvW3Jka3FUZ2wtMGN1R012Jz8+LVhWMXFbJy01aydjQVo2OWU7RF8/JFpQUCZzXis3XSkkKiQjQFFZaTksNVAmIzlyKyQlQ0U9Njg+SzhyMD1kU0MlJShAcDcubTdqaWxRMDInMC1WV0FnPGEvJyczdS49NEwkWSk2ay9LOl9bMz0manZMPEwwQy8yJ3Y6XjstRElCVyxCNEU2ODprWjslPzgoUThCSD1rTzY1Qlc/eFNHJiNAdVUsRFMqLD8uKyhvKCMxdkNTOCNDSEY+VGxHVydiKVRxN1ZUOXFeKl4kJC46Jk5AQCQmKVdIdFBtKjVfck8wJmUlSyYjLTMwaihFNCMnWmIuby8oVHBtJD5LJ2ZAW1B2RmwsaGZJTlROVTZ1JzBwYW83JVhVcDldNS4+JWhgOF89VllieHVlbC5OVFNzSmZMYWNGdTNCJ2xRU3UvbTYtT3FlbThUK29FLS0kMGEva111ajlFd3NHPiV2ZVIqaHZeQkZwUWo6SycjU0osc0ItJyNdKGouTGc5MnJUdy0qbiVALzszOXJySkYsbCNxViVPcnRCZUM2Lyw7cUIzZWJOV1s/LEhxajJMLjFOUCZHalVSPTFEOFFhUzNVcCZAKjl3UD8rbG83Yj9AJSdrNGBwMFokMjIlSzMraUNaaj9YSk40Tm0mK1lGXXVALVckVSVWRVEvLCw+PiMpRDxoI2ApaDA6PFE2OTA5dWErJlZVJW4yOmNHM0ZKLSVAQmotRGdMcmBIdyZIQUtqS2pzZUs8L3hLVCopQixOOVgzXWtyYzEydCdwZ1RWKEx2LXRMW3hnXyU9TV9xN2FeeD83VWJkPiMlOGNZI1laPz0sYFdkeHUvYWUmI3c2KVI4OXRJIzZAcycoNkJmN2EmP1M9XlpJX2tTJmFpYCY9dEU3MkxfRCw7XlIpN1skczxFaCNjJilxLk1YSSUjdjlST2E1RlpPJXNGN3E3TndiJiNwdFVKOmFxSmUkU2w2OCUuRCMjI0VDPjw/LWFGJiNSTlF2Pm84bEtOJTUvJCh2ZGZxNytlYkEjdTFwXW92VUtXJlklcV0nPiQxQC1beGZuJDdaVHA3bU0sRyxLbzdhJkd1JUdbUk14SnNbME1NJXdjaS5MRkRLKSg8Y2BROE4pakVJRiorP1AyYThnJSkkcV1vMmFIOEMmPFNpYkMvcSwoZTp2Oy1iIzZbJE50RFo4NEplMktOdkIjJFA1P3RRM250KDBkPWouTFFmLi9MbDMzKyg7cTNMLXc9OGRYJCNXRiZ1SUpALWJmST4lOl9pMkI1Q3NSOCY5WiYjPW1QRW5tMGZgPCZjKVFMNXVKIyV1JWxKaitELXI7Qm9GJiM0RG9TOTdoNWcpRSNvOiZTNHdlREYsOV5Ib2VgaCpMK19hKk5yTFctMXBHXyYyVWRCODZlJUIvOj0+KU40eGVXLip3ZnQtOyQnNTgtRVNxcjxiP1VJKF8lQFtQNDY+I1VgJzZBUV1tJjYvYFo+I1M/WVkjVmM7cjdVMiYzMjZkPXcmSCMjIyM/VFpgKjQ/Ji5NSz9MUDhWeGc+JFtRWGMlUUp2OTIuKERiKkIpZ2IqQk05ZE0qaEpNQW8qYyYjYjB2PVBqZXJdJGdHJkpYRGYtPidTdHZVNzUwNWw5JEFGdmdZUkleJjxeYjY4P2ojcTlRWDRTTSdSTyMmc0wxSU0uckpmTFVBajIyMV1kIyNEVz1tODN1NTsnYll4LCpTbDBoTChXOzskZG9CJk8vVFE6KFpeeEJkTGpMPExuaTsnJ1guYCQjOCsxR0Q6ayRZVVdzYm44b2doNnJ4WjJaOV0lbmQrPlYjKjhVXzcyTGgrMlE4Q2owaTo2aHAmJEMvOnAoSEs+VDhZW2dIUTRgNCknJEFiKE5vZiVWJzhoTCYjPE5FZHRnKG4nPVMxQShRMS9JJjQoWyVkTWAsSXUnMTpfaEw+U2ZEMDcmNkQ8ZnA4ZEhNNy9nK3RsUE45SipyS2FQY3QmPyd1QkNlbV5qbiU5X0spPCxDNUszcz01ZyZHbUpiKltTWXE3SztUUkxHQ3NNLSQkO1MlOllAcjdBSzBwcHJwTDxMcmgscTdlLyVLV0s6NTBJXittJ3ZpYDM/JVpwKzwtZCskTC1TdjpALm8xOW4kczAmMzk7a247UyVCU3EqJDNXb0pTQ0x3ZVZbYVonTVFJak88NztYLVg7JitkTUx2dSNeVXNHRUM5V0VjW1god0k3IzIuKEYwalYqZVpmPC1RdjNKLWMrSjVBbHJCIyRwKEg2OEx2RUEncTNuMCNtLFtgKjhGdClGY1lnRXVkXUNXZm02OCwoYUxBJEBFRlRnTFhvQnEvVVBscDc6ZFsvO3JfaXg9OlRGYFM1SC1iPExJJkhZKEs9aCMpXUxrJEsxNGxWZm06eCRIPDNeUWw8TWAkT2hhcEJua3VwJ0QjTCRQYl9gTipnXTJlO1gvRHRnLGJzaiZLIzJbLTppWXInX3dnSClOVUlSOGExbiNTP1llaidoOF41OFViWmQrXkZLRCpUQDs2QTdhUUNbSzhkLSh2NkdJJHg6VDwmJ0dwNVVmPkBNLipKOjskLXJ2MjknTV04cU12LXRMcCwnODg2aWFDPUhiKllKb0tKLChqJUs9SGBLLnY5SGdncUJJaVp1J1F2QlQuIz0pMHVrcnVWJi4pMz0oXjFgbypQajQ8LTxhTigoXjcoJyNaMHdLIzVHWEA3dV1bYCpTXjQzOTMzQTRybF1bYCpPNENnTEVsXXYkMVEzQWVGMzdkYlhrLC4pdmojeCdkYDtxZ2JRUiVGVywyKD9MTz1zJVNjNjglTlAnIyNBb3RsOHg9QkUjajFVRChbMyRNKF1VSTJMWDNScEtOQDsvI2YnZi8mX210JkYpWGRGPDl0NClRYS4qa1RMd1EnKFRUQjkueEgnPiNNSitnTHE5LSMjQEh1WlBOMF11Omg3LlQuLkc6OyQvVXNqKFQ3YFE4dFQ3MkxuWWw8LXF4ODstSFY3US0mWGR4JTFhLGhDPTB1K0hsc1Y+bnVJUUwtNTxOPylOQlMpUU4qX0ksPyYpMidJTSVMM0kpWCgoZS9kbDImOCc8TTpeI00qUStbVC5YcmkuTFlTM3YlZkZgNjhoO2ItWFsvRW4nQ1IucTdFKXAnL2tsZTJITSx1O14lT0tDLU4rTGwlRjlDRjxOZideI3QyTCw7MjdXOjBPQDYjI1U2Vzc6JHJKZkxXSGokIyl3b3FCZWZJWi5QSzxiKnQ3ZWQ7cCpfbTs0RXhLI2hAJl0+Xz5Aa1hRdE1hY2ZELm0tVkFiODtJUmVNMyR3ZjAnJ2hyYSpzbzU2OCdJcCZ2UnM4NDknTVJZU3AlOnQ6aDVxU2d3cEVyJEI+USw7cyhDIyQpYHN2UXVGJCMjLUQsIyMsZzY4QDJbVDsuWFNkTjlRZSlycHQuX0stIzV3RilzUCcjI3AjQzBjJS1HYiVoZCs8LWonQWkqeCYmSE1rVF1DJ09TbCMjNVJHW0pYYUhOO2QndUEjeC5fVTsuYFBVQChaM2R0NHIxNTJAOnYsJ1IuU2ondyMwPC07a1BJKUZmSiYjQVlKJiMvLyk+LWs9bT0qWG5LJD49KTcyTF0wSSU+Lkc2OTBhOiQjIzwsKTs/OzcyIz94OStkO15WJzk7allAOyliciNxXllRcHg6WCNUZSRaXic9LT1iR2hMZjpENiZiTndaOS1aRCNuXjlIaExNcjVHOyddZCY2J3dZbVRGbUw8TEQpRl4lW3RDJzg7KzlFI0MkZyUjNVk+cTl3ST5QKDltSVs+a0MtZWtMQy9SJkNIK3MnQjtLLU02JEVCJWlzMDA6K0E0Wzd4a3MuTHJOazAmRSl3SUxZRkAyTCcwTmIkK3B2PCgyLjc2OC9GclkmaCReM2kmQCtHJUpUJzwtLHZgMztfKUk5TV5BRV1DTj9DbDJBWmcrJTRpVHBUMzxuLSYlSCViPEZEajJNPGhIPSZFaDwyTGVuJGIqYVRYPS04UXhOKWsxMUlNMWNeaiU5czxMPE5GU28pQj8rPC0oR3hzRixeLUVoQCQ0ZFhoTiQrI3J4SzgnamUnRDdrYGU7KTJwWXdQQSdfcDkmQF4xOG1sMV5bQGc0dCpbSk9hKls9UXA3KHFKX29PTF4oJzdmQiZIcS06c2Ysc05qOHhxXj4kVTRPXUdLeCdtOSliQHA3WXN2SzN3XllSLUNkUSo6SXI8KCR1JikjKCY/TDlSZzNIKTRmaUVwXmlJOU84S25UaixdSD9EKnI3J007UHdaOUswRV5rJi1jcEk7LnAvNl92d29GTVY8LT4jJVhpLkx4Vm5yVSg0JjgvUCs6aExTS2okI1UlXTQ5dCdJOnJnTWknRkxAYTowWS11QVszOScsKHZibWEqaFUlPC1TUkZgVHQ6NTQyUl9WViRwQFtwOERWW0EsPzE4MzlGV2RGPFRkZEY8OUFoLTYmOXRXb0RsaF0mMVNwR01xPlRpMU8qSCYjKEFMOFtfUCUuTT52Xi0pKXFPVCpGNUNxMGBZZSUrJEI2aTo3QDBJWDxOK1QrME1sTUJQUSpWaj5Tc0Q8VTRKSFk4a0QyKTJmVS9NIyRlLilUNCxfPThoTGltWyYpOz9Va0snLXg/Jyg6c2lJZkw8JHBGTWBpPD8lVyhtR0RITSU+aVdQLCMjUGAlL0w8ZVhpOkBaOUMuN289QChwWGRBTy9OTFE4bFBsK0hQT1FhOHdEOD1eR2xQYThUS0kxQ2poc0NUU0xKTScvV2w+LVMocXclc2YvQCUjQjY7L1U3S111WmJpXk9jXjJuPGJoUG1Va013PiV0PCknbUVWRScnbmBXbkpyYSReVEt2WDVCPjtfYVNFSycsKGh3YTA6aTRHPy5CY2kuKFhbP2IqKCQsPS1uPC5RJWAoWD0/K0BBbSpKczAmPTNiaDhLXW1MPExvTnMnNiwnODVgMD90LydfVTU5QF1kZEY8I0xkRjxlV2RGPE91Ti80NXJZPC1MQCYjK2ZtPjY5PUxiLE9jWlYvKTtUVG04Vkk7PyVPdEo8KGI0bXE3TTY6dT9LUmRGPGdSQDJMPUZOVS08YlsoOWMvTUwzbTtaWyRvRjNnKUdBV3FwQVJjPTxST3U3Y0w1bDstW0FdJS8rZnNkO2wjU2FmVC9mKlddMD1PJyQoVGI8WykqQGU3NzVSLTpZb2IlZyo+bCo6eFA/WWIuNSkld19JPzd1azVKQytGUyhtI2knay4nYTBpKTk8N2InZnMnNTlocSQqNVVodiMjcGleOCtoSUVCRmBudm9gOydsMC5eUzE8LXdVSzIvQ29oNThLS2hMak09U08qcmZPYCtxQ2BXLU9uLj1BSjU2Pj5pMkAyTEg2QTomNXFgPzlJM0BAJzA0JnAyL0xWYSpULTQ8LWkzO005VXZaZCtONz5iKmVJd2c6Q0MpYzw+bk8mIzxJR2U7X18udGhqWmw8JXcoV2syeG1wNFFASSNJOSxERl11Ny1QPS4tXzpZSl1hU0BWPzYqQygpZE9wNzpXTCxiJjNSZy8uY21NOSZyXj4kKD4uWi1JJkooUTBIZDVRJTdDby1iYC1jPE4oNnJAaXArQXVySzxtODZRSXRoKiN2Oy1PQnFpK0w3d0RFLUlyOEtbJ20rRERTTHdLJi8uPy1WJVVfJTM6cUtOdSRfYipCLWtwN05hRCdRZFdRUEtZcVtAPlApaEk7Kl9GXXVgUmJbLmo4X1EvPCY+dXUrVnNIJHNNOVRBJT8pKHZtSjgwKSxQN0U+KXRqRCUyTD0tdCNmS1slYHY9UTg8RmZOa2dnXm9JYmFoKiM4L1F0JEYmOksqLShOLycrMXZNQix1KCktYS5WVVUqI1tlJWdBQU8oUz5XbEEyKTtTYT5nWG04WUJgMWRASyNuXTc2LWEkVSxtRjxmWF1pZHFkKTwzLF1KN0ptVzRgNl11a3M9NC03MkwoakVrKzpiSjBNXnEtOERtX1o/MG9sUDFDOVNhJkhbZCZjJG9vUVVqXUV4ZCozWk1ALVdHVzIlcycsQi1fTSU+JVVsOiMvJ3hvRk05UVgtJC5RTic+WyUkWiR1RjZwQTZLaTJPNTo4dyp2UDE8LTFgW0csKS1tIz4wYFAmI2ViIy4zaSlydEI2MShvJyQ/WDNCPC9SOTA7ZVpdJU5jcTstVGxdI0Y+MlFmdF5hZV81dEtMOU1VZTliKnNMRVE5NUMmYD1HP0BNaj13aConM0U+PS08KUd0Kkl3KSdRRzpgQEl3T2Y3Jl0xaSdTMDFCK0V2L05hYyM5Uzs9O1lRcGdfNlVgKmtWWTM5eEssWy82QWo3OicxQm0tXzFFWWZhMStvJm80aHA3S05fUShPbElvQFMlO2pWZG4wJzE8VmM1Mj11YDNeby1uMSdnNHY1OEhqJjZfdDckIyM/TSljPCRiZ1FfJ1NZKCgteGtBI1koLHAnSDlySVZZLWIsJyViQ1BGNy5KPFVwXiwoZFUxVlkqNSNXa1RVPmgxOXcsV1FoTEkpM1MjZiQyKGViLGpyKmI7M1Z3XSo3TkglJGM0VnMsZUQ5PlhXOD9OXW8rKCpwZ0MlLzcyTFYtdTxIcCwzQGVeOVVCMUorYWs5LVROL21oS1BnK0FKWWQkTWx2QUZfakNLKi5PLV4oNjNhZE1ULT5XJWlld1M4VzZtMnJ0Q3BvJ1JTMVI4ND1AcGFUS3QpPj0lJjFbKSp2cCd1K3gsVnJ3TjsmXWt1TzlKRGJnPXBPJEoqLmpWZTt1J20wZHI5bCw8KndNSypPZT1nOGxWX0tFQkZrTydvVV1ePVstNzkyI29rLClpXWxSOHFRMm9BOHdjUkNaXjd3L05qaDs/LnN0WD9RMT5TMXE0Qm4kKUsxPC1yR2RPJyRXci5MYy5DRykkLypKTDR0TlIvLFNWTzMsYVV3J0RKTjopU3M7d0duOUEzMmlqdyVGTCtaMEZuLlU5O3JlU3EpYm1JMzJVPT01QUx1RyYjVmYxMzk4L3BWbzEqYy0oYVkxNjhvPGBKc1Niay0sMU47JD4wOk9VYXMoMzo4Wjk3MkxTZkY4ZWI9Yy07PlNQdzcuNmhuM21gOV5Ya24oci5xU1swO1QlJlFjPStTVFJ4WCdxMUJOazMmKmV1MjsmOHEkJng+USNRN15UZis2PChkJVpWbWoyYkRpJS4zTDJuKzRXJyRQaURERylnLHIlKz8sJEA/dW91NXRTZTJhTl9BUVUqPGhgZS1HSTcpP09LMkEuZDdfYyk/d1E1QVNAREwzciM3ZlNrZ2w2LSsrRDonQSx1cTdTdmxCJHBjcEgncTNuMCNfJWRZI3hDcHItbDxGME5SQC0jI0ZFVjZOVEY2IyMkbDg0TjF3P0FPPidJQU9VUlEjI1ZeRnYtWEZiR003RmwoTjwzRGhMR0YlcS4xckMkIzpUX18mUGk2OCUweGlfJltxRkooNzdqXyZKV29GLlY3MzUmVCxbUio6eEZSKks1Pj4jYGJXLT80TmVfJjZOZV8mNk5lXyZuYGtyLSNHSmNNNlg7dU02WDt1TSguYS4uXjJUa0wlb1IoIzt1LlQlZkFyJTR0SjgmPjwxPUdIWl8rbTkvI0gxRl5SI1NDIypOPUJBOShEP3ZbVWlGWT4+XjhwLEtLRi5XXUwyOXVMa0xsdS8rNFQ8WG9JQiZoeD1UMVBjRGFCJjtISCstQUZyPyhtOUhaVilGS1M4SkN3O1NEPTZbXi9EWlVMYEVVRGZdR0dsRyY+dyQpRi4vXm4zK3JsbytEQjs1c0lZR05rK2kxdC02OUpnLS0wcGFvN1NtI0spcGRIVyY7THVETkhASD4jL1gtVEkoO1A+IyxHYz4jMFN1PiM0YDE/IzhsQz8jPHhVPyNALmk/I0Q6JUAjSEY3QCNMUklAI1BfW0AjVGtuQCNYdypBI10tPUEjYTlPQSNkPEYmIyo7RyMjLkdZIyMyU2wjIzZgKCQjOmw6JCM+eEwkI0IuYCQjRjpyJCNKRi4lI05SQCUjUl9SJSNWa2UlI1p3dyUjXy00JiMzXlJoJVNmbHItaydNUy5vPy41L3NXZWwvd3BFTTAlMycvMSlLXmYxLWQ+RzIxJnYoMzU+VmAzOVY3QTQ9b254NEExT1k1RUkwOzZJYmdyNk0kSFM3UTwpNThDNXcsO1dvQSojWyVUKiNgMWcqI2Q9IysjaEk1KyNsVUcrI3BiWSsjdG5sKyN4JCksIyYxOywjKj1NLCMuSWAsIzJVciwjNmIuLSM7d1tII2lRdEEjbV4wQiNxakJCI3V2VEIjIy1oQiMnOSRDIytFNkMjL1FIQyMzXlpDIzdqbUMjO3YpRCM/LDxEI0M4TkQjR0RhRCNLUHNEI09dL0UjZzFBNSNLQSoxI2dDMTcjTUdkOyM4KDAyI0wtZDMjcldNNCNIZ2ExIyw8dzAjVC5qPCNPIycyI0NZTjEjcWFeOiNfNG0zI29ALz0jZUc4PSN0OEo1I2ArNzgjNHVJLSNtM0IyI1NCWzgjUTBAOCNpWyo5I2lPbjgjMU5tOyNec045I3FoPDkjOj14LSNQO0syIyQlWDkjYkMrLiNSZzs8I21OPS4jTVRGLiNSWk8uIzI/KTQjWSMoLyNbKTEvI2I7TC8jZEFVLyMwU3Y7I2xZJDAjbmAtMCNzZjYwIyhGMjQjd3JIMCMlL2UwI1RtRDwjJUpTTUZvdmU6Q1RCRVhJOjxlaDJnKUIsM2gyXkczaTsjZDNqRD4pNGtNWUQ0bFZ1YDRtYDomNW5pVUE1QChBNUJBMV1QQkI6eGxCQ0M9MkNETFhNQ0VVdGlDZiYwZzIndE4/UEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQLXFla0NgLjlrRWdeK0Yka3dWaUZKVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVvLF48LTI4WkknTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cDs3cS0jbExZSTp4dkQ9IwBB9v8ACwpAQAAAQEEAAJhBAEGKgAELugFQQQAAAAAAAOBAAACAQQAAgD8AAABBAAD4QQAAAAAAALhBAAC4QQAAMEEAADBBAACoQQAAAAAAABBBAAC4QQAAgEAAADBBAABcQgAAkEEAALhBAAAQQQAAMEEAAIBAAACSQgAAAAAAAIhBAACIQQAAAEEAAABBAABcQgAAAAAAAIhBAACIQQAAAEEAAABBAAC2QgAAAAAAAIhBAACwQQAAoEAAAAAAIAD/AAAw/zDwMf8xAP/v/wBOr58AQdCBAQuXJyAA/wAAMP8w8DH/MQD/7/8AAAEAAgAEAAEAAQABAAEAAgABAAMAAgABAAIAAgABAAEAAQABAAEABQACAAEAAgADAAMAAwACAAIABAABAAEAAQACAAEABQACAAMAAQACAAEAAgABAAEAAgABAAEAAgACAAEABAABAAEAAQABAAUACgABAAIAEwACAAEAAgABAAIAAQACAAEAAgABAAUAAQAGAAMAAgABAAIAAgABAAEAAQAEAAgABQABAAEABAABAAEAAwABAAIAAQAFAAEAAgABAAEAAQAKAAEAAQAFAAIABAAGAAEABAACAAIAAgAMAAIAAQABAAYAAQABAAEABAABAAEABAAGAAUAAQAEAAIAAgAEAAoABwABAAEABAACAAQAAgABAAQAAwAGAAoADAAFAAcAAgAOAAIACQABAAEABgAHAAoABAAHAA0AAQAFAAQACAAEAAEAAQACABwABQAGAAEAAQAFAAIABQAUAAIAAgAJAAgACwACAAkAEQABAAgABgAIABsABAAGAAkAFAALABsABgBEAAIAAgABAAEAAQACAAEAAgACAAcABgALAAMAAwABAAEAAwABAAIAAQABAAEAAQABAAMAAQABAAgAAwAEAAEABQAHAAIAAQAEAAQACAAEAAIAAQACAAEAAQAEAAUABgADAAYAAgAMAAMAAQADAAkAAgAEAAMABAABAAUAAwADAAEAAwAHAAEABQABAAEAAQABAAIAAwAEAAUAAgADAAIABgABAAEAAgABAAcAAQAHAAMABAAFAA8AAgACAAEABQADABYAEwACAAEAAQABAAEAAgAFAAEAAQABAAYAAQABAAwACAACAAkAEgAWAAQAAQABAAUAAQAQAAEAAgAHAAoADwABAAEABgACAAQAAQACAAQAAQAGAAEAAQADAAIABAABAAYABAAFAAEAAgABAAEAAgABAAoAAwABAAMAAgABAAkAAwACAAUABwACABMABAADAAYAAQABAAEAAQABAAQAAwACAAEAAQABAAIABQADAAEAAQABAAIAAgABAAEAAgABAAEAAgABAAMAAQABAAEAAwAHAAEABAABAAEAAgABAAEAAgABAAIABAAEAAMACAABAAEAAQACAAEAAwAFAAEAAwABAAMABAAGAAIAAgAOAAQABgAGAAsACQABAA8AAwABABwABQACAAUABQADAAEAAwAEAAUABAAGAA4AAwACAAMABQAVAAIABwAUAAoAAQACABMAAgAEABwAHAACAAMAAgABAA4ABAABABoAHAAqAAwAKAADADQATwAFAA4AEQADAAIAAgALAAMABAAGAAMAAQAIAAIAFwAEAAUACAAKAAQAAgAHAAMABQABAAEABgADAAEAAgACAAIABQAcAAEAAQAHAAcAFAAFAAMAHQADABEAGgABAAgABAAbAAMABgALABcABQADAAQABgANABgAEAAGAAUACgAZACMABwADAAIAAwADAA4AAwAGAAIABgABAAQAAgADAAgAAgABAAEAAwADAAMABAABAAEADQACAAIABAAFAAIAAQAOAA4AAQACAAIAAQAEAAUAAgADAAEADgADAAwAAwARAAIAEAAFAAEAAgABAAgACQADABMABAACAAIABAARABkAFQAUABwASwABAAoAHQBnAAQAAQACAAEAAQAEAAIABAABAAIAAwAYAAIAAgACAAEAAQACAAEAAwAIAAEAAQABAAIAAQABAAMAAQABAAEABgABAAUAAwABAAEAAQADAAQAAQABAAUAAgABAAUABgANAAkAEAABAAEAAQABAAMAAgADAAIABAAFAAIABQACAAIAAwAHAA0ABwACAAIAAQABAAEAAQACAAMAAwACAAEABgAEAAkAAgABAA4AAgAOAAIAAQASAAMABAAOAAQACwApAA8AFwAPABcAsAABAAMABAABAAEAAQABAAUAAwABAAIAAwAHAAMAAQABAAIAAQACAAQABAAGAAIABAABAAkABwABAAoABQAIABAAHQABAAEAAgACAAMAAQADAAUAAgAEAAUABAABAAEAAgACAAMAAwAHAAEABgAKAAEAEQABACwABAAGAAIAAQABAAYABQAEAAIACgABAAYACQACAAgAAQAYAAEAAgANAAcACAAIAAIAAQAEAAEAAwABAAMAAwAFAAIABQAKAAkABAAJAAwAAgABAAYAAQAKAAEAAQAHAAcABAAKAAgAAwABAA0ABAADAAEABgABAAMABQACAAEAAgARABAABQACABAABgABAAQAAgABAAMAAwAGAAgABQALAAsAAQADAAMAAgAEAAYACgAJAAUABwAEAAcABAAHAAEAAQAEAAIAAQADAAYACAAHAAEABgALAAUABQADABgACQAEAAIABwANAAUAAQAIAFIAEAA9AAEAAQABAAQAAgACABAACgADAAgAAQABAAYABAACAAEAAwABAAEAAQAEAAMACAAEAAIAAgABAAEAAQABAAEABgADAAUAAQABAAQABgAJAAIAAQABAAEAAgABAAcAAgABAAYAAQAFAAQABAADAAEACAABAAMAAwABAAMAAgACAAIAAgADAAEABgABAAIAAQACAAEAAwAHAAEACAACAAEAAgABAAUAAgAFAAMABQAKAAEAAgABAAEAAwACAAUACwADAAkAAwAFAAEAAQAFAAkAAQACAAEABQAHAAkACQAIAAEAAwADAAMABgAIAAIAAwACAAEAAQAgAAYAAQACAA8ACQADAAcADQABAAMACgANAAIADgABAA0ACgACAAEAAwAKAAQADwACAA8ADwAKAAEAAwAJAAYACQAgABkAGgAvAAcAAwACAAMAAQAGAAMABAADAAIACAAFAAQAAQAJAAQAAgACABMACgAGAAIAAwAIAAEAAgACAAQAAgABAAkABAAEAAQABgAEAAgACQACAAMAAQABAAEAAQADAAUABQABAAMACAAEAAYAAgABAAQADAABAAUAAwAHAA0AAgAFAAgAAQAGAAEAAgAFAA4ABgABAAUAAgAEAAgADwAFAAEAFwAGAD4AAgAKAAEAAQAIAAEAAgACAAoABAACAAIACQACAAEAAQADAAIAAwABAAUAAwADAAIAAQADAAgAAQABAAEACwADAAEAAQAEAAMABwABAA4AAQACAAMADAAFAAIABQABAAYABwAFAAcADgALAAEAAwABAAgACQAMAAIAAQALAAgABAAEAAIABgAKAAkADQABAAEAAwABAAUAAQADAAIABAAEAAEAEgACAAMADgALAAQAHQAEAAIABwABAAMADQAJAAIAAgAFAAMABQAUAAcAEAAIAAUASAAiAAYABAAWAAwADAAcAC0AJAAJAAcAJwAJAL8AAQABAAEABAALAAgABAAJAAIAAwAWAAEAAQABAAEABAARAAEABwAHAAEACwAfAAoAAgAEAAgAAgADAAIAAQAEAAIAEAAEACAAAgADABMADQAEAAkAAQAFAAIADgAIAAEAAQADAAYAEwAGAAUAAQAQAAYAAgAKAAgABQABAAIAAwABAAUABQABAAsABgAGAAEAAwADAAIABgADAAgAAQABAAQACgAHAAUABwAHAAUACAAJAAIAAQADAAQAAQABAAMAAQADAAMAAgAGABAAAQAEAAYAAwABAAoABgABAAMADwACAAkAAgAKABkADQAJABAABgACAAIACgALAAQAAwAJAAEAAgAGAAYABQAEAB4AKAABAAoABwAMAA4AIQAGAAMABgAHAAMAAQADAAEACwAOAAQACQAFAAwACwAxABIAMwAfAIwAHwACAAIAAQAFAAEACAABAAoAAQAEAAQAAwAYAAEACgABAAMABgAGABAAAwAEAAUAAgABAAQAAgA5AAoABgAWAAIAFgADAAcAFgAGAAoACwAkABIAEAAhACQAAgAFAAUAAQABAAEABAAKAAEABAANAAIABwAFAAIACQADAAQAAQAHACsAAwAHAAMACQAOAAcACQABAAsAAQABAAMABwAEABIADQABAA4AAQADAAYACgBJAAIAAgAeAAYAAQALABIAEwANABYAAwAuACoAJQBZAAcAAwAQACIAAgACAAMACQABAAcAAQABAAEAAgACAAQACgAHAAMACgADAAkABQAcAAkAAgAGAA0ABwADAAEAAwAKAAIABwACAAsAAwAGABUANgBVAAIAAQAEAAIAAgABACcAAwAVAAIAAgAFAAEAAQABAAQAAQABAAMABAAPAAEAAwACAAQABAACAAMACAACABQAAQAIAAcADQAEAAEAGgAGAAIACQAiAAQAFQA0AAoABAAEAAEABQAMAAIACwABAAcAAgAeAAwALAACAB4AAQABAAMABgAQAAkAEQAnAFIAAgACABgABwABAAcAAwAQAAkADgAsAAIAAQACAAEAAgADAAUAAgAEAAEABgAHAAUAAwACAAYAAQALAAUACwACAAEAEgATAAgAAQADABgAHQACAAEAAwAFAAIAAgABAA0ABgAFAAEALgALAAMABQABAAEABQAIAAIACgAGAAwABgADAAcACwACAAQAEAANAAIABQABAAEAAgACAAUAAgAcAAUAAgAXAAoACAAEAAQAFgAnAF8AJgAIAA4ACQAFAAEADQAFAAQAAwANAAwACwABAAkAAQAbACUAAgAFAAQABAA/ANMAXwACAAIAAgABAAMABQACAAEAAQACAAIAAQABAAEAAwACAAQAAQACAAEAAQAFAAIAAgABAAEAAgADAAEAAwABAAEAAQADAAEABAACAAEAAwAGAAEAAQADAAcADwAFAAMAAgAFAAMACQALAAQAAgAWAAEABgADAAgABwABAAQAHAAEABAAAwADABkABAAEABsAGwABAAQAAQACAAIABwABAAMABQACABwACAACAA4AAQAIAAYAEAAZAAMAAwADAA4AAwADAAEAAQACAAEABAAGAAMACAAEAAEAAQABAAIAAwAGAAoABgACAAMAEgADAAIABQAFAAQAAwABAAUAAgAFAAQAFwAHAAYADAAGAAQAEQALAAkABQABAAEACgAFAAwAAQABAAsAGgAhAAcAAwAGAAEAEQAHAAEABQAMAAEACwACAAQAAQAIAA4AEQAXAAEAAgABAAcACAAQAAsACQAGAAUAAgAGAAQAEAACAAgADgABAAsACAAJAAEAAQABAAkAGQAEAAsAEwAHAAIADwACAAwACAA0AAcABQATAAIAEAAEACQACAABABAACAAYABoABAAGAAIACQAFAAQAJAADABwADAAZAA8AJQAbABEADAA7ACYABQAgAH8AAQACAAkAEQAOAAQAAQACAAEAAQAIAAsAMgAEAA4AAgATABAABAARAAUABAAFABoADAAtAAIAFwAtAGgAHgAMAAgAAwAKAAIAAgADAAMAAQAEABQABwACAAkABgAPAAIAFAABAAMAEAAEAAsADwAGAIYAAgAFADsAAQACAAIAAgABAAkAEQADABoAiQAKANMAOwABAAIABAABAAQAAQABAAEAAgAGAAIAAwABAAEAAgADAAIAAwABAAMABAAEAAIAAwADAAEABAADAAEABwACAAIAAwABAAIAAQADAAMAAwACAAIAAwACAAEAAwAOAAYAAQADAAIACQAGAA8AGwAJACIAkQABAAEAAgABAAEAAQABAAIAAQABAAEAAQACAAIAAgADAAEAAgABAAEAAQACAAMABQAIAAMABQACAAQAAQADAAIAAgACAAwABAABAAEAAQAKAAQABQABABQABAAQAAEADwAJAAUADAACAAkAAgAFAAQAAgAaABMABwABABoABAAeAAwADwAqAAEABgAIAKwAAQABAAQAAgABAAEACwACAAIABAACAAEAAgABAAoACAABAAIAAQAEAAUAAQACAAUAAQAIAAQAAQADAAQAAgABAAYAAgABAAMABAABAAIAAQABAAEAAQAMAAUABwACAAQAAwABAAEAAQADAAMABgABAAIAAgADAAMAAwACAAEAAgAMAA4ACwAGAAYABAAMAAIACAABAAcACgABACMABwAEAA0ADwAEAAMAFwAVABwANAAFABoABQAGAAEABwAKAAIABwA1AAMAAgABAAEAAQACAKMAFAIBAAoACwABAAMAAwAEAAgAAgAIAAYAAgACABcAFgAEAAIAAgAEAAIAAQADAAEAAwADAAUACQAIAAIAAQACAAgAAQAKAAIADAAVABQADwBpAAIAAwABAAEAAwACAAMAAQABAAIABQABAAQADwALABMAAQABAAEAAQAFAAQABQABAAEAAgAFAAMABQAMAAEAAgAFAAEACwABAAEADwAJAAEABAAFAAMAGgAIAAIAAQADAAEAAQAPABMAAgAMAAEAAgAFAAIABwACABMAAgAUAAYAGgAHAAUAAgACAAcAIgAVAA0ARgACAIAAAQABAAIAAQABAAIAAQABAAMAAgACAAIADwABAAQAAQADAAQAKgAKAAYAAQAxAFUACAABAAIAAQABAAQABAACAAMABgABAAUABwAEAAMA0wAEAAEAAgABAAIABQABAAIABAACAAIABgAFAAYACgADAAQAMABkAAYAAgAQACgBBQAbAIMBAgACAAMABwAQAAgABQAmAA8AJwAVAAkACgADAAcAOwANABsAFQAvAAUAFQAGAEHyqAELsR4BAAIABAABAAEAAQABAAIAAQAGAAIAAgABAAgABQAHAAsAAQACAAoACgAIAAIABAAUAAIACwAIAAIAAQACAAEABgACAAEABwAFAAMABwABAAEADQAHAAkAAQAEAAYAAQACAAEACgABAAEACQACAAIABAAFAAYADgABAAEACQADABIABQAEAAIAAgAKAAcAAQABAAEAAwACAAQAAwAXAAIACgAMAAIADgACAAQADQABAAYACgADAAEABwANAAYABAANAAUAAgADABEAAgACAAUABwAGAAQAAQAHAA4AEAAGAA0ACQAPAAEAAQAHABAABAAHAAEAEwAJAAIABwAPAAIABgAFAA0AGQAEAA4ADQALABkAAQABAAEAAgABAAIAAgADAAoACwADAAMAAQABAAQABAACAAEABAAJAAEABAADAAUABQACAAcADAALAA8ABwAQAAQABQAQAAIAAQABAAYAAwADAAEAAQACAAcABgAGAAcAAQAEAAcABgABAAEAAgABAAwAAwADAAkABQAIAAEACwABAAIAAwASABQABAABAAMABgABAAcAAwAFAAUABwACAAIADAADAAEABAACAAMAAgADAAsACAAHAAQAEQABAAkAGQABAAEABAACAAIABAABAAIABwABAAEAAQADAAEAAgAGABAAAQACAAEAAQADAAwAFAACAAUAFAAIAAcABgACAAEAAQABAAEABgACAAEAAgAKAAEAAQAGAAEAAwABAAIAAQAEAAEADAAEAAEAAwABAAEAAQABAAEACgAEAAcABQANAAEADwABAAEAHgALAAkAAQAPACYADgABACAAEQAUAAEACQAfAAIAFQAJAAQAMQAWAAIAAQANAAEACwAtACMAKwA3AAwAEwBTAAEAAwACAAMADQACAAEABwADABIAAwANAAgAAQAIABIABQADAAcAGQAYAAkAGAAoAAMAEQAYAAIAAQAGAAIAAwAQAA8ABgAHAAMADAABAAkABwADAAMAAwAPABUABQAQAAQABQAMAAsACwADAAYAAwACAB8AAwACAAEAAQAXAAYABgABAAQAAgAGAAUAAgABAAEAAwADABYAAgAGAAIAAwARAAMAAgAEAAUAAQAJAAUAAQABAAYADwAMAAMAEQACAA4AAgAIAAEAFwAQAAQAAgAXAAgADwAXABQADAAZABMALwALABUAQQAuAAQAAwABAAUABgABAAIABQAaAAIAAQABAAMACwABAAEAAQACAAEAAgADAAEAAQAKAAIAAwABAAEAAQADAAYAAwACAAIABgAGAAkAAgACAAIABgACAAUACgACAAQAAQACAAEAAgACAAMAAQABAAMAAQACAAkAFwAJAAIAAQABAAEAAQAFAAMAAgABAAoACQAGAAEACgACAB8AGQADAAcABQAoAAEADwAGABEABwAbALQAAQADAAIAAgABAAEAAQAGAAMACgAHAAEAAwAGABEACAAGAAIAAgABAAMABQAFAAgAEAAOAA8AAQABAAQAAQACAAEAAQABAAMAAgAHAAUABgACAAUACgABAAQAAgAJAAEAAQALAAYAAQAsAAEAAwAHAAkABQABAAMAAQABAAoABwABAAoABAACAAcAFQAPAAcAAgAFAAEACAADAAQAAQADAAEABgABAAQAAgABAAQACgAIAAEABAAFAAEABQAKAAIABwABAAoAAQABAAMABAALAAoAHQAEAAcAAwAFAAIAAwAhAAUAAgATAAMAAQAEAAIABgAfAAsAAQADAAMAAwABAAgACgAJAAwACwAMAAgAAwAOAAgABgALAAEABAApAAMAAQACAAcADQABAAUABgACAAYADAAMABYABQAJAAQACAAJAAkAIgAGABgAAQABABQACQAJAAMABAABAAcAAgACAAIABgACABwABQADAAYAAQAEAAYABwAEAAIAAQAEAAIADQAGAAQABAADAAEACAAIAAMAAgABAAUAAQACAAIAAwABAAsACwAHAAMABgAKAAgABgAQABAAFgAHAAwABgAVAAUABAAGAAYAAwAGAAEAAwACAAEAAgAIAB0AAQAKAAEABgANAAYABgATAB8AAQANAAQABAAWABEAGgAhAAoABAAPAAwAGQAGAEMACgACAAMAAQAGAAoAAgAGAAIACQABAAkABAAEAAEAAgAQAAIABQAJAAIAAwAIAAEACAADAAkABAAIAAYABAAIAAsAAwACAAEAAQADABoAAQAHAAUAAQALAAEABQADAAUAAgANAAYAJwAFAAEABQACAAsABgAKAAUAAQAPAAUAAwAGABMAFQAWAAIABAABAAYAAQAIAAEABAAIAAIABAACAAIACQACAAEAAQABAAQAAwAGAAMADAAHAAEADgACAAQACgACAA0AAQARAAcAAwACAAEAAwACAA0ABwAOAAwAAwABAB0AAgAIAAkADwAOAAkADgABAAMAAQAGAAUACQALAAMAJgArABQABwAHAAgABQAPAAwAEwAPAFEACAAHAAEABQBJAA0AJQAcAAgACAABAA8AEgAUAKUAHAABAAYACwAIAAQADgAHAA8AAQADAAMABgAEAAEABwAOAAEAAQALAB4AAQAFAAEABAAOAAEABAACAAcANAACAAYAHQADAAEACQABABUAAwAFAAEAGgADAAsADgALAAEAEQAFAAEAAgABAAMAAgAIAAEAAgAJAAwAAQABAAIAAwAIAAMAGAAMAAcABwAFABEAAwADAAMAAQAXAAoABAAEAAYAAwABABAAEQAWAAMACgAVABAAEAAGAAQACgACAAEAAQACAAgACAAGAAUAAwADAAMAJwAZAA8AAQABABAABgAHABkADwAGAAYADAABABYADQABAAQACQAFAAwAAgAJAAEADAAcAAgAAwAFAAoAFgA8AAEAAgAoAAQAPQA/AAQAAQANAAwAAQAEAB8ADAABAA4AWQAFABAABgAdAA4AAgAFADEAEgASAAUAHQAhAC8AAQARAAEAEwAMAAIACQAHACcADAADAAcADAAnAAMAAQAuAAQADAADAAgACQAFAB8ADwASAAMAAgACAEIAEwANABEABQADAC4AfAANADkAIgACAAUABAAFAAgAAQABAAEABAADAAEAEQAFAAMABQADAAEACAAFAAYAAwAbAAMAGgAHAAwABwACABEAAwAHABIATgAQAAQAJAABAAIAAQAGAAIAAQAnABEABwAEAA0ABAAEAAQAAQAKAAQAAgAEAAYAAwAKAAEAEwABABoAAgAEACEAAgBJAC8ABwADAAgAAgAEAA8AEgABAB0AAgApAA4AAQAVABAAKQAHACcAGQANACwAAgACAAoAAQANAAcAAQAHAAMABQAUAAQACAACADEAAQAKAAYAAQAGAAcACgAHAAsAEAADAAwAFAAEAAoAAwABAAIACwACABwACQACAAQABwACAA8AAQAbAAEAHAARAAQABQAKAAcAAwAYAAoACwAGABoAAwACAAcAAgACADEAEAAKABAADwAEAAUAGwA9AB4ADgAmABYAAgAHAAUAAQADAAwAFwAYABEAEQADAAMAAgAEAAEABgACAAcABQABAAEABQABAAEACQAEAAEAAwAGAAEACAACAAgABAAOAAMABQALAAQAAQADACAAAQATAAQAAQANAAsABQACAAEACAAGAAgAAQAGAAUADQADABcACwAFAAMAEAADAAkACgABABgAAwDGADQABAACAAIABQAOAAUABAAWAAUAFAAEAAsABgApAAEABQACAAIACwAFAAIAHAAjAAgAFgADABIAAwAKAAcABQADAAQAAQAFAAMACAAJAAMABgACABAAFgAEAAUABQADAAMAEgAXAAIABgAXAAUAGwAIAAEAIQACAAwAKwAQAAUAAgADAAYAAQAUAAQAAgAJAAcAAQALAAIACgADAA4AHwAJAAMAGQASABQAAgAFAAUAGgAOAAEACwARAAwAKAATAAkABgAfAFMAAgAHAAkAEwBOAAwADgAVAEwADABxAE8AIgAEAAEAAQA9ABIAVQAKAAIAAgANAB8ACwAyAAYAIQCfALMABgAGAAcABAAEAAIABAACAAUACAAHABQAIAAWAAEAAwAKAAYABwAcAAUACgAJAAIATQATAA0AAgAFAAEABAAEAAcABAANAAMACQAfABEAAwAaAAIABgAGAAUABAABAAcACwADAAQAAgABAAYAAgAUAAQAAQAJAAIABgADAAcAAQABAAEAFAACAAMAAQAGAAIAAwAGAAIABAAIAAEABQANAAgABAALABcAAQAKAAYAAgABAAMAFQACAAIABAAYAB8ABAAKAAoAAgAFAMAADwAEABAABwAJADMAAQACAAEAAQAFAAEAAQACAAEAAwAFAAMAAQADAAQAAQADAAEAAwADAAkACAABAAIAAgACAAQABAASAAwAXAACAAoABAADAA4ABQAZABAAKgAEAA4ABAACABUABQB+AB4AHwACAAEABQANAAMAFgAFAAYABgAUAAwAAQAOAAwAVwADABMAAQAIAAIACQAJAAMAAwAXAAIAAwAHAAYAAwABAAIAAwAJAAEAAwABAAYAAwACAAEAAwALAAMAAQAGAAoAAwACAAMAAQACAAEABQABAAEACwADAAYABAABAAcAAgABAAIABQAFACIABAAOABIABAATAAcABQAIAAIABgBPAAEABQACAA4ACAACAAkAAgABACQAHAAQAAQAAQABAAEAAgAMAAYAKgAnABAAFwAHAA8ADwADAAIADAAHABUAQAAGAAkAHAAIAAwAAwADACkAOwAYADMANwA5ACYBCQAJAAIABgACAA8AAQACAA0AJgBaAAkACQAJAAMACwAHAAEAAQABAAUABgADAAIAAQACAAIAAwAIAAEABAAEAAEABQAHAAEABAADABQABAAJAAEAAQABAAUABQARAAEABQACAAYAAgAEAAEABAAFAAcAAwASAAsACwAgAAcABQAEAAcACwB/AAgABAADAAMAAQAKAAEAAQAGABUADgABABAAAQAHAAEAAwAGAAkAQQAzAAQAAwANAAMACgABAAEADAAJABUAbgADABMAGAABAAEACgA+AAQAAQAdACoATgAcABQAEgBSAAYAAwAPAAYAVAA6AP0ADwCbAAgBDwAVAAkADgAHADoAKAAnAEGwxwELECAA/wAABC8F4C3/LUCmn6YAQdLHAQsmgD/NzMw9CtcjPG8SgzoXt9E4rMUnN703hjWVv9Yzd8wrMl9wiTAAQYDIAQtGBAAAAOeOAADnjgAABAAAAPGOAADxjgAACAAAAPSOAAD0jgAACAAAAPmOAAD5jgAABAAAAOqOAADqjgAACAAAAOqOAADtjgBB0MgBC5IC/5AAAAORAAAHkQAAC5EAAMGQAADBkAAAwZAAAMGQAADHkAAAz5AAANeQAADfkAAA55AAAO+QAAD3kAAA35AAAJOQAACTkAAAk5AAAJOQAACXkAAAnZAAAKOQAACpkAAAr5AAALWQAAC7kAAAqZAAAP8AAP///wD/AP8A/wD///8AAP///wD///8AAP8AAAAA6HoAANB0AADQdAAA0HQAANB0AAA4ewAAWHsAANB0AAAIewAA0HQAANB0AAAIewAAOHsAADh7AABYewAAWHsAAOh6AABYewAAWHsAAFh7AADQdAAA0HQAANB0AAAAAAAACHsAAEB7AAAIdQAAOHsAAOh6AAA4ewAAWHsAANB0AADQdABB8MoBCxLQdAAA2HQAAAh7AABYewAA0HQAQZDLAQsi6HoAANB0AADQdAAACHsAAAh7AADYdAAA0HQAAFB7AAA4ewBBwMsBCyIIewAA0HQAADh7AAAIewAACHsAANh0AADQdAAA0HQAAAh7AEHwywELEgh7AADYdAAA0HQAAAh7AAAIewBBkMwBCzboegAA2HQAAFh7AADQdAAACHsAANh0AAA4ewAAOHsAAAh7AADYdAAA0HQAANB0AAA4ewAAOHsAQdDMAQsSCHsAANh0AAAIewAAOHsAANB0AEHwzAELMgh7AAA4ewAAOHsAANh0AAAIewAA2HQAADh7AADYdAAACHsAANh0AADQdAAAOHsAANB0AEGwzQELIgh7AADYdAAA0HQAADh7AADQdAAA0HQAANB0AADQdAAA0HQAQeDNAQs2CHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AAA4ewAAOHsAANB0AEGgzgELEgh7AADYdAAA0HQAANB0AADQdABBwM4BC3YIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAAAAAAAAh7AADYdAAAOHsAANB0AADQdAAA0HQAANB0AAA4ewAACHsAANh0AADQdAAAYHsAAGB7AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AAA4ewAAOHsAADh7AEHAzwELEgh7AADYdAAA0HQAANB0AAA4ewBB4M8BC4IBCHsAANh0AADQdAAA0HQAANB0AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AABQewAA0HQAADh7AADQdAAA0HQAAAh7AADYdAAA0HQAAFB7AAA4ewAA0HQAANB0AAAAAAAACHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AADQdABB8NABCyIIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AEGg0QELRgh7AADYdAAA0HQAANB0AAA4ewAAOHsAANB0AAAAAAAACHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQfDRAQt2CHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AADQdAAA0HQAADh7AAA4ewAAAAAAAOh6AABYewAA0HQAANB0AADoegAA2HQAANB0AADQdAAAOHsAADh7AADQdAAA0HQAANB0AADQdABB8NIBC5IBCHsAANh0AADQdAAAQHsAAAh7AADQdAAA0HQAANB0AADQdAAAOHsAANB0AADQdAAA6HoAANB0AADQdAAA0HQAANB0AADQdAAA0HQAAAAAAADoegAAOHsAANB0AAAIewAA6HoAANh0AAAIewAAOHsAAOh6AADYdAAA0HQAADh7AADoegAA0HQAANB0AADQdAAA0HQAQZDUAQsi6HoAANB0AAA4ewAA0HQAAAh7AADQdAAA0HQAAAh7AAA4ewBBwNQBC4YBCHsAANh0AADQdAAAOHsAAAh7AADYdAAAUHsAAFB7AABQewAAUHsAAFB7AAAAAAAACHsAAFh2AAA4ewAA0HQAAAh7AACYdgAAOHsAAFh7AAAIewAAmHYAADh7AAAIewAACHsAAJh2AAA4ewAAOHsAANB0AADIdgAA0HQAAFh7AADQdAAA0HQAQdDVAQsy6HoAACB2AADQdAAAWHsAANB0AABAewAAMHsAAAAAAAA4ewAAIHYAAFh7AADYdAAAWHsAQZDWAQti0HQAACB2AABYewAAWHsAAFh7AADYdAAA0HQAANB0AADoegAAQHUAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAQYDXAQs26HoAADB1AAA4ewAAOHsAAOh6AABAdQAA0HQAANB0AADoegAAQHUAANB0AADQdAAAWHsAADh7AEHA1wELFuh6AABAdQAA0HQAANB0AADQdAAAOHsAQeDXAQsW6HoAAEB1AADQdAAAWHsAADh7AAA4ewBBgNgBCzLoegAAQHUAANB0AABYewAAWHsAAFh7AAA4ewAAAAAAAOh6AABAdQAAQHsAAAh7AABYewBBwNgBCyLoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHw2AELEuh6AABAdQAA0HQAADh7AABAewBBkNkBC0boegAAQHUAANB0AAA4ewAAQHsAAAh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHg2QELcuh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAA6HoAAEB1AADQdAAAWHsAANB0AABAewAA2HQAAFh7AADQdABB4NoBCxLoegAAQHUAANB0AABAewAA2HQAQYDbAQsW6HoAAEB1AADQdAAAWHsAAEB7AAA4ewBBoNsBCzboegAAQHUAANB0AABYewAAQHsAADh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAAQHsAQeDbAQvWAeh6AABAdQAA0HQAANB0AADQdAAAQHsAAFh7AAAAAAAA6HoAAEB1AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAQHsAAEB7AABAewAA6HoAAEB1AADQdAAA0HQAAEB7AABYewAAOHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAAFh7AAA4ewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAWHsAQcDdAQsS6HoAAEB1AADQdAAA0HQAAAh7AEHg3QELRuh6AADgdwAAOHsAAFh7AADoegAA+HUAADh7AADYdAAA6HoAAOh1AAA4ewAAOHsAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQbDeAQvhA9B0AADQdAAA0HQAANB0AAACAADAAwAAwAQAAMAFAADABgAAwAcAAMAIAADACQAAwAoAAMALAADADAAAwA0AAMAOAADADwAAwBAAAMARAADAEgAAwBMAAMAUAADAFQAAwBYAAMAXAADAGAAAwBkAAMAaAADAGwAAwBwAAMAdAADAHgAAwB8AAMAAAACzAQAAwwIAAMMDAADDBAAAwwUAAMMGAADDBwAAwwgAAMMJAADDCgAAwwsAAMMMAADDDQAA0w4AAMMPAADDAAAMuwEADMMCAAzDAwAMwwQADNMAAAAA/////////////////////////////////////////////////////////////////wABAgMEBQYHCAn/////////CgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiP///////8KCwwNDg8QERITFBUWFxgZGhscHR4fICEiI/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AQaDiAQsYEQAKABEREQAAAAAFAAAAAAAACQAAAAALAEHA4gELIREADwoREREDCgcAARMJCwsAAAkGCwAACwAGEQAAABEREQBB8eIBCwELAEH64gELGBEACgoREREACgAAAgAJCwAAAAkACwAACwBBq+MBCwEMAEG34wELFQwAAAAADAAAAAAJDAAAAAAADAAADABB5eMBCwEOAEHx4wELFQ0AAAAEDQAAAAAJDgAAAAAADgAADgBBn+QBCwEQAEGr5AELHg8AAAAADwAAAAAJEAAAAAAAEAAAEAAAEgAAABISEgBB4uQBCw4SAAAAEhISAAAAAAAACQBBk+UBCwELAEGf5QELFQoAAAAACgAAAAAJCwAAAAAACwAACwBBzeUBCwEMAEHZ5QEL3gIMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYKAAAAZAAAAOgDAAAQJwAAoIYBAEBCDwCAlpgAAOH1BQMAAAAEAAAABAAAAAYAAACD+aIARE5uAPwpFQDRVycA3TT1AGLbwAA8mZUAQZBDAGNR/gC73qsAt2HFADpuJADSTUIASQbgAAnqLgAcktEA6x3+ACmxHADoPqcA9TWCAES7LgCc6YQAtCZwAEF+XwDWkTkAU4M5AJz0OQCLX4QAKPm9APgfOwDe/5cAD5gFABEv7wAKWosAbR9tAM9+NgAJyycARk+3AJ5mPwAt6l8Auid1AOXrxwA9e/EA9zkHAJJSigD7a+oAH7FfAAhdjQAwA1YAe/xGAPCrawAgvM8ANvSaAOOpHQBeYZEACBvmAIWZZQCgFF8AjUBoAIDY/wAnc00ABgYxAMpWFQDJqHMAe+JgAGuMwABBw+gBC21A+yH5PwAAAAAtRHQ+AAAAgJhG+DwAAABgUcx4OwAAAICDG/A5AAAAQCAlejgAAACAIoLjNgAAAAAd82k1OGPtPtoPST9emHs/2g/JP2k3rDFoISIztA8UM2ghojMAAAAAAADwPwAAAAAAAPg/AEG46QELCAbQ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aXZlAFBsb3RMaW5lc0hvdmVyZWQAUGxvdEhpc3RvZ3JhbUhvdmVyZWQAVGV4dFNlbGVjdGVkQmcARHJhZ0Ryb3BUYXJnZXQATmF2SGlnaGxpZ2h0AE5hdldpbmRvd2luZ0hpZ2hsaWdodABOYXZXaW5kb3dpbmdEaW1CZwBNb2RhbFdpbmRvd0RpbUJnAFVua25vd24AIyNUb29sdGlwXyUwMmQAIyNNZW51XyUwMmQAIyNQb3B1cF8lMDh4AHdpbmRvd19jb250ZXh0AHZvaWRfY29udGV4dABjb2x1bW5zACNTb3VyY2VFeHRlcm4ACiUqcyUuKnMAICUuKnMAYWIACgBMb2cgVG8gVFRZAExvZyBUbyBGaWxlAExvZyBUbyBDbGlwYm9hcmQARGVwdGgAcmIAd3QASW1HdWkgTWV0cmljcwABRGVhciBJbUd1aSAlcwBBcHBsaWNhdGlvbiBhdmVyYWdlICUuM2YgbXMvZnJhbWUgKCUuMWYgRlBTKQAlZCB2ZXJ0aWNlcywgJWQgaW5kaWNlcyAoJWQgdHJpYW5nbGVzKQAlZCBhY3RpdmUgd2luZG93cyAoJWQgdmlzaWJsZSkAJWQgYWxsb2NhdGlvbnMAU2hvdyBjbGlwcGluZyByZWN0YW5nbGVzIHdoZW4gaG92ZXJpbmcgZHJhdyBjb21tYW5kcwBDdHJsIHNob3dzIHdpbmRvdyBiZWdpbiBvcmRlcgBXaW5kb3dzAERyYXdMaXN0AEFjdGl2ZSBEcmF3TGlzdHMgKCVkKQBQb3B1cHMAUG9wdXBzICglZCkAUG9wdXBJRDogJTA4eCwgV2luZG93OiAnJXMnJXMlcwBOVUxMACBDaGlsZFdpbmRvdwAgQ2hpbGRNZW51AFRhYkJhcnMAVGFiIEJhcnMgKCVkKQBJbnRlcm5hbCBzdGF0ZQBOb25lAE1vdXNlAE5hdgBOYXZLZXlib2FyZABOYXZHYW1lcGFkAEhvdmVyZWRXaW5kb3c6ICclcycASG92ZXJlZFJvb3RXaW5kb3c6ICclcycASG92ZXJlZElkOiAweCUwOFgvMHglMDhYICglLjJmIHNlYyksIEFsbG93T3ZlcmxhcDogJWQAQWN0aXZlSWQ6IDB4JTA4WC8weCUwOFggKCUuMmYgc2VjKSwgQWxsb3dPdmVybGFwOiAlZCwgU291cmNlOiAlcwBBY3RpdmVJZFdpbmRvdzogJyVzJwBNb3ZpbmdXaW5kb3c6ICclcycATmF2V2luZG93OiAnJXMnAE5hdklkOiAweCUwOFgsIE5hdkxheWVyOiAlZABOYXZJbnB1dFNvdXJjZTogJXMATmF2QWN0aXZlOiAlZCwgTmF2VmlzaWJsZTogJWQATmF2QWN0aXZhdGVJZDogMHglMDhYLCBOYXZJbnB1dElkOiAweCUwOFgATmF2RGlzYWJsZUhpZ2hsaWdodDogJWQsIE5hdkRpc2FibGVNb3VzZUhvdmVyOiAlZABOYXZXaW5kb3dpbmdUYXJnZXQ6ICclcycARHJhZ0Ryb3A6ICVkLCBTb3VyY2VJZCA9IDB4JTA4WCwgUGF5bG9hZCAiJXMiICglZCBieXRlcykAIyNPdmVybGF5ACVzLyVzXyUwOFgAJXMvJTA4WAAjUkVTSVpFACMjI05hdldpbmRvd2luZ0xpc3QAKFBvcHVwKQAoTWFpbiBtZW51IGJhcikAKFVudGl0bGVkKQBQb3M9JWYsJWYAU2l6ZT0lZiwlZgBDb2xsYXBzZWQ9JWQAIyMjAFslc11bJXNdCgBQb3M9JWQsJWQKAFNpemU9JWQsJWQKAENvbGxhcHNlZD0lZAoAJXMgKCVkKQAlcyAnJXMnLCAlZCBAIDB4JXAAUG9zOiAoJS4xZiwlLjFmKSwgU2l6ZTogKCUuMWYsJS4xZiksIFNpemVDb250ZW50cyAoJS4xZiwlLjFmKQBGbGFnczogMHglMDhYICglcyVzJXMlcyVzJXMlcyVzJXMuLikAQ2hpbGQgAFRvb2x0aXAgAFBvcHVwIABNb2RhbCAAQ2hpbGRNZW51IABOb1NhdmVkU2V0dGluZ3MgAE5vTW91c2VJbnB1dHMATm9OYXZJbnB1dHMAQWx3YXlzQXV0b1Jlc2l6ZQBTY3JvbGw6ICglLjJmLyUuMmYsJS4yZi8lLjJmKQBBY3RpdmU6ICVkLyVkLCBXcml0ZUFjY2Vzc2VkOiAlZCwgQmVnaW5PcmRlcldpdGhpbkNvbnRleHQ6ICVkAEFwcGVhcmluZzogJWQsIEhpZGRlbjogJWQgKFJlZyAlZCBSZXNpemUgJWQpLCBTa2lwSXRlbXM6ICVkAE5hdkxhc3RJZHM6IDB4JTA4WCwweCUwOFgs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bnRDb250ZXh0AERlYnVnQ2hlY2tWZXJzaW9uQW5kRGF0YUxheW91dABHZXRJTwBHZXRTdHlsZQBHZXREcmF3RGF0YQBOZXdGcmFtZQBSZW5kZXIARW5kRnJhbWUAU2hvd0RlbW9XaW5kb3cAU2hvd0Fib3V0V2luZG93AFNob3dNZXRyaWNzV2luZG93AFNob3dTdHlsZUVkaXRvcgBTaG93U3R5bGVTZWxlY3RvcgBTaG93Rm9udFNlbGVjdG9yAFNob3dVc2VyR3VpZGUAR2V0VmVyc2lvbgBTdHlsZUNvbG9yc0RhcmsAU3R5bGVDb2xvcnNDbGFzc2ljAFN0eWxlQ29sb3JzTGlnaHQAQmVnaW4ARW5kAEJlZ2luQ2hpbGQARW5kQ2hpbGQAR2V0Q29udGVudFJlZ2lvbk1heABHZXRDb250ZW50UmVnaW9uQXZhaWwAR2V0Q29udGVudFJlZ2lvbkF2YWlsV2lkdGgAR2V0V2luZG93Q29udGVudFJlZ2lvbk1pbgBHZXRXaW5kb3dDb250ZW50UmVnaW9uTWF4AEdldFdpbmRvd0NvbnRlbnRSZWdpb25XaWR0aABHZXRXaW5kb3dEcmF3TGlzdABHZXRXaW5kb3dQb3MAR2V0V2luZG93U2l6ZQBHZXRXaW5kb3dXaWR0aABHZXRXaW5kb3dIZWlnaHQASXNXaW5kb3dDb2xsYXBzZWQASXNXaW5kb3dBcHBlYXJpbmcAU2V0V2luZG93Rm9udFNjYWxlAFNldE5leHRXaW5kb3dQb3MAU2V0TmV4dFdpbmRvd1NpemUAU2V0TmV4dFdpbmRvd1NpemVDb25zdHJhaW50cwBTZXROZXh0V2luZG93Q29udGVudFNpemUAU2V0TmV4dFdpbmRvd0NvbGxhcHNlZABTZXROZXh0V2luZG93Rm9jdXMAU2V0TmV4dFdpbmRvd0JnQWxwaGEAU2V0V2luZG93UG9zAFNldFdpbmRvd1NpemUAU2V0V2luZG93Q29sbGFwc2VkAFNldFdpbmRvd0ZvY3VzAFNldFdpbmRvd05hbWVQb3MAU2V0V2luZG93TmFtZVNpemUAU2V0V2luZG93TmFtZUNvbGxhcHNlZABTZXRXaW5kb3dOYW1lRm9jdXMAR2V0U2Nyb2xsWABHZXRTY3JvbGxZAEdldFNjcm9sbE1heFgAR2V0U2Nyb2xsTWF4WQBTZXRTY3JvbGxYAFNldFNjcm9sbFkAU2V0U2Nyb2xsSGVyZVkAU2V0U2Nyb2xsRnJvbVBvc1kAU2V0U3RhdGVTdG9yYWdlAEdldFN0YXRlU3RvcmFnZQBQdXNoRm9udABQb3BGb250AFB1c2hTdHlsZUNvbG9yAFBvcFN0eWxlQ29sb3IAUHVzaFN0eWxlVmFyAFBvcFN0eWxlVmFyAEdldFN0eWxlQ29sb3JWZWM0AEdldEZvbnQAR2V0Rm9udFNpemUAR2V0Rm9udFRleFV2V2hpdGVQaXhlbABHZXRDb2xvclUzMl9BAEdldENvbG9yVTMyX0IAR2V0Q29sb3JVMzJfQwBQdXNoSXRlbVdpZHRoAFBvcEl0ZW1XaWR0aABDYWxjSXRlbVdpZHRoAFB1c2hUZXh0V3JhcFBvcwBQb3BUZXh0V3JhcFBvcwBQdXNoQWxsb3dLZXlib2FyZEZvY3VzAFBvcEFsbG93S2V5Ym9hcmRGb2N1cwBQdXNoQnV0dG9uUmVwZWF0AFBvcEJ1dHRvblJlcGVhdABTZXBhcmF0b3IAU2FtZUxpbmUATmV3TGluZQBTcGFjaW5nAER1bW15AEluZGVudABVbmluZGVudABCZWdpbkdyb3VwAEVuZEdyb3VwAEdldEN1cnNvclBvcwBHZXRDdXJzb3JQb3NYAEdldEN1cnNvclBvc1kAU2V0Q3Vyc29yUG9zAFNldEN1cnNvclBvc1gAU2V0Q3Vyc29yUG9zWQBHZXRDdXJzb3JTdGFydFBvcwBHZXRDdXJzb3JTY3JlZW5Qb3MAU2V0Q3Vyc29yU2NyZWVuUG9zAEFsaWduVGV4dFRvRnJhbWVQYWRkaW5nAEdldFRleHRMaW5lSGVpZ2h0AEdldFRleHRMaW5lSGVpZ2h0V2l0aFNwYWNpbmcAR2V0RnJhbWVIZWlnaHQAR2V0RnJhbWVIZWlnaHRXaXRoU3BhY2luZwBDb2x1bW5zAE5leHRDb2x1bW4AR2V0Q29sdW1uSW5kZXgAR2V0Q29sdW1uV2lkdGgAU2V0Q29sdW1uV2lkdGgAR2V0Q29sdW1uT2Zmc2V0AFNldENvbHVtbk9mZnNldABHZXRDb2x1bW5zQ291bnQAUHVzaElEAFBvcElEAEdldElEAFRleHRVbmZvcm1hdHRlZABUZXh0AFRleHRWAFRleHRDb2xvcmVkAFRleHRDb2xvcmVkVgBUZXh0RGlzYWJsZWQAVGV4dERpc2FibGVkVgBUZXh0V3JhcHBlZABUZXh0V3JhcHBlZFYATGFiZWxUZXh0AExhYmVsVGV4dFYAQnVsbGV0VGV4dABCdWxsZXRUZXh0VgBCdWxsZXQAQnV0dG9uAFNtYWxsQnV0dG9uAEFycm93QnV0dG9uAEludmlzaWJsZUJ1dHRvbgBJbWFnZQBJbWFnZUJ1dHRvbgBDaGVja2JveABDaGVja2JveEZsYWdzAFJhZGlvQnV0dG9uX0EAUmFkaW9CdXR0b25fQgBQbG90TGluZXMAUGxvdEhpc3RvZ3JhbQBQcm9ncmVzc0JhcgBCZWdpbkNvbWJvAEVuZENvbWJvAENvbWJvAERyYWdGbG9hdABEcmFnRmxvYXQyAERyYWdGbG9hdDMARHJhZ0Zsb2F0NABEcmFnRmxvYXRSYW5nZTIARHJhZ0ludABEcmFnSW50MgBEcmFnSW50MwBEcmFnSW50NABEcmFnSW50UmFuZ2UyAERyYWdTY2FsYXIASW5wdXRUZXh0AElucHV0VGV4dE11bHRpbGluZQBJbnB1dEZsb2F0AElucHV0RmxvYXQyAElucHV0RmxvYXQzAElucHV0RmxvYXQ0AElucHV0SW50AElucHV0SW50MgBJbnB1dEludDMASW5wdXRJbnQ0AElucHV0RG91YmxlAElucHV0U2NhbGFyAFNsaWRlckZsb2F0AFNsaWRlckZsb2F0MgBTbGlkZXJGbG9hdDMAU2xpZGVyRmxvYXQ0AFNsaWRlckFuZ2xlAFNsaWRlckludABTbGlkZXJJbnQyAFNsaWRlckludDMAU2xpZGVySW50NABTbGlkZXJTY2FsYXIAVlNsaWRlckZsb2F0AFZTbGlkZXJJbnQAVlNsaWRlclNjYWxhcgBDb2xvckVkaXQzAENvbG9yRWRpdDQAQ29sb3JQaWNrZXIzAENvbG9yUGlja2VyNABDb2xvckJ1dHRvbgBTZXRDb2xvckVkaXRPcHRpb25zAFRyZWVOb2RlX0EAVHJlZU5vZGVfQgBUcmVlTm9kZV9DAFRyZWVOb2RlRXhfQQBUcmVlTm9kZUV4X0IAVHJlZU5vZGVFeF9DAFRyZWVQdXNoX0EAVHJlZVB1c2hfQgBUcmVlUG9wAFRyZWVBZHZhbmNlVG9MYWJlbFBvcwBHZXRUcmVlTm9kZVRvTGFiZWxTcGFjaW5nAFNldE5leHRUcmVlTm9kZU9wZW4AQ29sbGFwc2luZ0hlYWRlcl9BAENvbGxhcHNpbmdIZWFkZXJfQgBTZWxlY3RhYmxlX0EAU2VsZWN0YWJsZV9CAExpc3RCb3hfQQBMaXN0Qm94X0IATGlzdEJveEhlYWRlcl9BAExpc3RCb3hIZWFkZXJfQgBMaXN0Qm94Rm9vdGVyAFZhbHVlX0EAVmFsdWVfQgBWYWx1ZV9DAFZhbHVlX0QAU2V0VG9vbHRpcABCZWdpblRvb2x0aXAARW5kVG9vbHRpcABCZWdpbk1haW5NZW51QmFyAEVuZE1haW5NZW51QmFyAEJlZ2luTWVudUJhcgBFbmRNZW51QmFyAEJlZ2luTWVudQBFbmRNZW51AE1lbnVJdGVtX0EATWVudUl0ZW1fQgBPcGVuUG9wdXAAT3BlblBvcHVwT25JdGVtQ2xpY2sAQmVnaW5Qb3B1cABCZWdpblBvcHVwTW9kYWwAQmVnaW5Qb3B1cENvbnRleHRJdGVtAEJlZ2luUG9wdXBDb250ZXh0V2luZG93AEJlZ2luUG9wdXBDb250ZXh0Vm9pZABFbmRQb3B1cABJc1BvcHVwT3BlbgBDbG9zZUN1cnJlbnRQb3B1cABCZWdpblRhYkJhcgBFbmRUYWJCYXIAQmVnaW5UYWJJdGVtAEVuZFRhYkl0ZW0AU2V0VGFiSXRlbUNsb3NlZABMb2dUb1RUWQBMb2dUb0ZpbGUATG9nVG9DbGlwYm9hcmQATG9nRmluaXNoAExvZ0J1dHRvbnMATG9nVGV4dABCZWdpbkRyYWdEcm9wU291cmNlAFNldERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFNvdXJjZQBCZWdpbkRyYWdEcm9wVGFyZ2V0AEFjY2VwdERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFRhcmdldABHZXREcmFnRHJvcFBheWxvYWQAUHVzaENsaXBSZWN0AFBvcENsaXBSZWN0AFNldEl0ZW1EZWZhdWx0Rm9jdXMAU2V0S2V5Ym9hcmRGb2N1c0hlcmUASXNJdGVtSG92ZXJlZABJc0l0ZW1BY3RpdmUASXNJdGVtRWRpdGVkAElzSXRlbUZvY3VzZWQASXNJdGVtQ2xpY2tlZABJc0l0ZW1WaXNpYmxlAElzSXRlbURlYWN0aXZhdGVkAElzSXRlbURlYWN0aXZhdGVkQWZ0ZXJFZGl0AElzQW55SXRlbUhvdmVyZWQASXNBbnlJdGVtQWN0aXZlAElzQW55SXRlbUZvY3VzZWQAR2V0SXRlbVJlY3RNaW4AR2V0SXRlbVJlY3RNYXgAR2V0SXRlbVJlY3RTaXplAFNldEl0ZW1BbGxvd092ZXJsYXAASXNXaW5kb3dGb2N1c2VkAElzV2luZG93SG92ZXJlZABJc1JlY3RWaXNpYmxlX0EASXNSZWN0VmlzaWJsZV9CAEdldFRpbWUAR2V0RnJhbWVDb3VudABHZXRPdmVybGF5RHJhd0xpc3QAR2V0RHJhd0xpc3RTaGFyZWREYXRhAEdldFN0eWxlQ29sb3JOYW1lAENhbGNUZXh0U2l6ZQBDYWxjTGlzdENsaXBwaW5nAEJlZ2luQ2hpbGRGcmFtZQBFbmRDaGlsZEZyYW1lAENvbG9yQ29udmVydFUzMlRvRmxvYXQ0AENvbG9yQ29udmVydEZsb2F0NFRvVTMyAENvbG9yQ29udmVydFJHQnRvSFNWAENvbG9yQ29udmVydEhTVnRvUkdCAEdldEtleUluZGV4AElzS2V5RG93bgBJc0tleVByZXNzZWQASXNLZXlSZWxlYXNlZABHZXRLZXlQcmVzc2VkQW1vdW50AElzTW91c2VEb3duAElzQW55TW91c2VEb3duAElzTW91c2VDbGlja2VkAElzTW91c2VEb3VibGVDbGlja2VkAElzTW91c2VSZWxlYXNlZABJc01vdXNlRHJhZ2dpbmcASXNNb3VzZUhvdmVyaW5nUmVjdABJc01vdXNlUG9zVmFsaWQAR2V0TW91c2VQb3MAR2V0TW91c2VQb3NPbk9wZW5pbmdDdXJyZW50UG9wdXAAR2V0TW91c2VEcmFnRGVsdGEAUmVzZXRNb3VzZURyYWdEZWx0YQBHZXRNb3VzZUN1cnNvcgBTZXRNb3VzZUN1cnNvcgBDYXB0dXJlS2V5Ym9hcmRGcm9tQXBwAENhcHR1cmVNb3VzZUZyb21BcHAAR2V0Q2xpcGJvYXJkVGV4dABTZXRDbGlwYm9hcmRUZXh0AExvYWRJbmlTZXR0aW5nc0Zyb21NZW1vcnkAU2F2ZUluaVNldHRpbmdzVG9NZW1vcnkAU2V0QWxsb2NhdG9yRnVuY3Rpb25zAE1lbUFsbG9jAE1lbUZyZWUAaWlpAE4xMGVtc2NyaXB0ZW4zdmFsRQB2aWlpaQBOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TXzExY2hhcl90cmFpdHNJY0VFTlNfOWFsbG9jYXRvckljRUVFRQBOU3QzX18yMjFfX2Jhc2ljX3N0cmluZ19jb21tb25JTGIxRUVFAGlpaWZpAHgAeQAyM2ltcG9ydF9tYXliZV9udWxsX3ZhbHVlSTZJbVZlYzJFAGlpaWlpAGlpaWYAaWlpZmYAaWlpaQAxMmFjY2Vzc192YWx1ZUlmTG0xRUUAdmlmZmZpaWkAegB3ADZJbVZlYzIAdmlpZmlpADEyYWNjZXNzX3ZhbHVlSWlMbTFFRQBpaWlpZmkAUDIwSW1EcmF3TGlzdFNoYXJlZERhdGEAMjBJbURyYXdMaXN0U2hhcmVkRGF0YQBQMTBJbURyYXdMaXN0ADEwSW1EcmF3TGlzdABkaQBpaWlpaWkAJXMAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TMF8xMWNoYXJfdHJhaXRzSWNFRU5TMF85YWxsb2NhdG9ySWNFRUVFRQAyNGltcG9ydF9tYXliZV9udWxsX3N0cmluZwAyM2FjY2Vzc19tYXliZV9udWxsX3ZhbHVlSWJMbTFFRQB2aWlmaQB2aWlpAGlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJZkxtNEVFADIzYWNjZXNzX21heWJlX251bGxfdmFsdWVJZkxtNEVFADEyYWNjZXNzX3ZhbHVlSWZMbTNFRQBpaWlpaWlpaWlpAHNldABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lkRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlkRQBsZW5ndGgAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lmRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlmRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lqRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlqRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lpRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlpRQBpaWlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJaUxtNEVFADEyYWNjZXNzX3ZhbHVlSWlMbTNFRQAxMmFjY2Vzc192YWx1ZUlpTG0yRUUAJS4wZiBkZWcAMTJhY2Nlc3NfdmFsdWVJZkxtMkVFAGlpaWlpaWlpAGlpaWlkZGlpADEyYWNjZXNzX3ZhbHVlSWRMbTFFRQBQMjZJbUd1aUlucHV0VGV4dENhbGxiYWNrRGF0YQAyNkltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAGlpaWlpaWlpaWlpAHZpZmlpAHZpaWlpaWlpaWlpADEyYWNjZXNzX3ZhbHVlSWpMbTFFRQAxMmFjY2Vzc192YWx1ZUliTG0xRUUAdmlpaWlpaWkAbnVtYmVyAHZpaWYAZmlpAGlpAHZpaQBQNkltRm9udAA2SW1Gb250AFBLNkltVmVjNAA2SW1WZWM0AFRPRE86ICVzCgBhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoZW1zY3JpcHRlbjo6dmFsKSBjb25zdAB2aWZmAHZpaWlpaQBQMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAdmlmAGZpAHN0cmluZwBQMTBJbUd1aVN0eWxlADEwSW1HdWlTdHlsZQB2aQBQMTBJbURyYXdEYXRhADEwSW1EcmF3RGF0YQBQN0ltR3VpSU8AN0ltR3VpSU8AUDE2V3JhcEltR3VpQ29udGV4dAAxNldyYXBJbUd1aUNvbnRleHQAUDExSW1Gb250QXRsYXMAMTFJbUZvbnRBdGxhcwBJbUd1aVN0eWxlAEFscGhhAFdpbmRvd1BhZGRpbmcAV2luZG93Um91bmRpbmcAV2luZG93Qm9yZGVyU2l6ZQBXaW5kb3dNaW5TaXplAFdpbmRvd1RpdGxlQWxpZ24AQ2hpbGRSb3VuZGluZwBDaGlsZEJvcmRlclNpemUAUG9wdXBSb3VuZGluZwBQb3B1cEJvcmRlclNpemUARnJhbWVQYWRkaW5nAEZyYW1lUm91bmRpbmcARnJhbWVCb3JkZXJTaXplAEl0ZW1TcGFjaW5nAEl0ZW1Jbm5lclNwYWNpbmcAVG91Y2hFeHRyYVBhZGRpbmcASW5kZW50U3BhY2luZwBDb2x1bW5zTWluU3BhY2luZwBTY3JvbGxiYXJTaXplAFNjcm9sbGJhclJvdW5kaW5nAEdyYWJNaW5TaXplAEdyYWJSb3VuZGluZwBUYWJSb3VuZGluZwBUYWJCb3JkZXJTaXplAEJ1dHRvblRleHRBbGlnbgBEaXNwbGF5V2luZG93UGFkZGluZwBEaXNwbGF5U2FmZUFyZWFQYWRkaW5nAE1vdXNlQ3Vyc29yU2NhbGUAQW50aUFsaWFzZWRMaW5lcwBBbnRpQWxpYXNlZEZpbGwAQ3VydmVUZXNzZWxsYXRpb25Ub2wAX2dldEF0X0NvbG9ycwBfc2V0QXRfQ29sb3JzAFNjYWxlQWxsU2l6ZXMAUDZJbVZlYzQAUEs2SW1WZWMyAHYAUEsxMEltR3VpU3R5bGUASW1HdWlJTwBDb25maWdGbGFncwBCYWNrZW5kRmxhZ3MARGlzcGxheVNpemUARGVsdGFUaW1lAEluaVNhdmluZ1JhdGUASW5pRmlsZW5hbWUATG9nRmlsZW5hbWUATW91c2VEb3VibGVDbGlja1RpbWUATW91c2VEb3VibGVDbGlja01heERpc3QATW91c2VEcmFnVGhyZXNob2xkAF9nZXRBdF9LZXlNYXAAX3NldEF0X0tleU1hcABLZXlSZXBlYXREZWxheQBLZXlSZXBlYXRSYXRlAFVzZXJEYXRhAEZvbnRzAEZvbnRHbG9iYWxTY2FsZQBGb250QWxsb3dVc2VyU2NhbGluZwBGb250RGVmYXVsdABEaXNwbGF5RnJhbWVidWZmZXJTY2FsZQBEaXNwbGF5VmlzaWJsZU1pbgBEaXNwbGF5VmlzaWJsZU1heABNb3VzZURyYXdDdXJzb3IAQ29uZmlnTWFjT1NYQmVoYXZpb3JzAENvbmZpZ0lucHV0VGV4dEN1cnNvckJsaW5rAENvbmZpZ1dpbmRvd3NSZXNpemVGcm9tRWRnZXMAQ29uZmlnV2luZG93c01vdmVGcm9tVGl0bGVCYXJPbmx5AEdldENsaXBib2FyZFRleHRGbgBTZXRDbGlwYm9hcmRUZXh0Rm4AQ2xpcGJvYXJkVXNlckRhdGEATW91c2VQb3MAX2dldEF0X01vdXNlRG93bgBfc2V0QXRfTW91c2VEb3duAE1vdXNlV2hlZWwAS2V5Q3RybABLZXlTaGlmdABLZXlBbHQAS2V5U3VwZXIAX2dldEF0X0tleXNEb3duAF9zZXRBdF9LZXlzRG93bgBfZ2V0QXRfTmF2SW5wdXRzAF9zZXRBdF9OYXZJbnB1dHMAQWRkSW5wdXRDaGFyYWN0ZXIAQWRkSW5wdXRDaGFyYWN0ZXJzVVRGOABDbGVhcklucHV0Q2hhcmFjdGVycwBXYW50Q2FwdHVyZU1vdXNlAFdhbnRDYXB0dXJlS2V5Ym9hcmQAV2FudFRleHRJbnB1dABXYW50U2V0TW91c2VQb3MAV2FudFNhdmVJbmlTZXR0aW5ncwBOYXZBY3RpdmUATmF2VmlzaWJsZQBGcmFtZXJhdGUATWV0cmljc1JlbmRlclZlcnRpY2VzAE1ldHJpY3NSZW5kZXJJbmRpY2VzAE1ldHJpY3NSZW5kZXJXaW5kb3dzAE1ldHJpY3NBY3RpdmVXaW5kb3dzAE1ldHJpY3NBY3RpdmVBbGxvY2F0aW9ucwBNb3VzZURlbHRhAF9nZXRBdF9Nb3VzZUNsaWNrZWRQb3MAX2dldEF0X01vdXNlRG93bkR1cmF0aW9uAF9nZXRBdF9LZXlzRG93bkR1cmF0aW9uAF9nZXRBdF9OYXZJbnB1dHNEb3duRHVyYXRpb24AUEs3SW1HdWlJTwBpaWlpZgBmaWlpAEltRm9udEF0bGFzAEFkZEZvbnREZWZhdWx0AEFkZEZvbnRGcm9tTWVtb3J5VFRGAENsZWFyVGV4RGF0YQBDbGVhcklucHV0RGF0YQBDbGVhckZvbnRzAENsZWFyAEJ1aWxkAElzQnVpbHQAR2V0VGV4RGF0YUFzQWxwaGE4AEdldFRleERhdGFBc1JHQkEzMgBHZXRHbHlwaFJhbmdlc0RlZmF1bHQAR2V0R2x5cGhSYW5nZXNLb3JlYW4AR2V0R2x5cGhSYW5nZXNKYXBhbmVzZQBHZXRHbHlwaFJhbmdlc0NoaW5lc2VGdWxsAEdldEdseXBoUmFuZ2VzQ2hpbmVzZVNpbXBsaWZpZWRDb21tb24AR2V0R2x5cGhSYW5nZXNDeXJpbGxpYwBHZXRHbHlwaFJhbmdlc1RoYWkATG9ja2VkAEZsYWdzAFRleElEAFRleERlc2lyZWRXaWR0aABUZXhHbHlwaFBhZGRpbmcAVGV4V2lkdGgAVGV4SGVpZ2h0AFRleFV2U2NhbGUAVGV4VXZXaGl0ZVBpeGVsAEl0ZXJhdGVGb250cwBwaXhlbHMAd2lkdGgAaGVpZ2h0AGJ5dGVzX3Blcl9waXhlbABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0loRUUAaWlpaWZpaQBGb250RGF0YQBidWZmZXIAYnl0ZU9mZnNldABieXRlTGVuZ3RoAFRPRE86IEZvbnREYXRhICV6dSAlenUKAEZvbnREYXRhT3duZWRCeUF0bGFzAEZvbnRObwBTaXplUGl4ZWxzAE92ZXJzYW1wbGVIAE92ZXJzYW1wbGVWAFBpeGVsU25hcEgAR2x5cGhFeHRyYVNwYWNpbmcAR2x5cGhPZmZzZXQAR2x5cGhSYW5nZXMAR2x5cGhNaW5BZHZhbmNlWABHbHlwaE1heEFkdmFuY2VYAE1lcmdlTW9kZQBSYXN0ZXJpemVyRmxhZ3MAUmFzdGVyaXplck11bHRpcGx5AE5hbWUAUEsxMUltRm9udEF0bGFzAEltRm9udABGb250U2l6ZQBTY2FsZQBEaXNwbGF5T2Zmc2V0AEl0ZXJhdGVHbHlwaHMARmFsbGJhY2tHbHlwaABGYWxsYmFja0FkdmFuY2VYAEZhbGxiYWNrQ2hhcgBDb25maWdEYXRhQ291bnQASXRlcmF0ZUNvbmZpZ0RhdGEAQXNjZW50AERlc2NlbnQATWV0cmljc1RvdGFsU3VyZmFjZQBDbGVhck91dHB1dERhdGEAQnVpbGRMb29rdXBUYWJsZQBGaW5kR2x5cGgARmluZEdseXBoTm9GYWxsYmFjawBTZXRGYWxsYmFja0NoYXIAR2V0Q2hhckFkdmFuY2UASXNMb2FkZWQAR2V0RGVidWdOYW1lAENhbGNUZXh0U2l6ZUEAQ2FsY1dvcmRXcmFwUG9zaXRpb25BAFJlbmRlckNoYXIAdmlpaWZpaWkAaWlpZmlmAGlpaWZmZmlpaQA8dW5rbm93bj4AUEs2SW1Gb250AFBLMTFJbUZvbnRHbHlwaAAxMUltRm9udEdseXBoAFAxMkltRm9udENvbmZpZwAxMkltRm9udENvbmZpZwBQMTFJbUZvbnRHbHlwaABJbUZvbnRDb25maWcARHN0Rm9udABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShJbUZvbnRDb25maWcgJiwgZW1zY3JpcHRlbjo6dmFsKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShjb25zdCBJbUZvbnRDb25maWcgJikgY29uc3QAUEsxMkltRm9udENvbmZpZwBJbUZvbnRHbHlwaABDb2RlcG9pbnQAQWR2YW5jZVgAWDAAWTAAWDEAWTEAVTAAVjAAVTEAVjEASW1EcmF3RGF0YQBJdGVyYXRlRHJhd0xpc3RzAFZhbGlkAENtZExpc3RzQ291bnQAVG90YWxJZHhDb3VudABUb3RhbFZ0eENvdW50AERpc3BsYXlQb3MARGVJbmRleEFsbEJ1ZmZlcnMAU2NhbGVDbGlwUmVjdHMAUEsxMEltRHJhd0RhdGEAUEsxMEltRHJhd0xpc3QASW1EcmF3TGlzdABJdGVyYXRlRHJhd0NtZHMASWR4QnVmZmVyAFZ0eEJ1ZmZlcgBQdXNoQ2xpcFJlY3RGdWxsU2NyZWVuAFB1c2hUZXh0dXJlSUQAUG9wVGV4dHVyZUlEAEdldENsaXBSZWN0TWluAEdldENsaXBSZWN0TWF4AEFkZExpbmUAQWRkUmVjdABBZGRSZWN0RmlsbGVkAEFkZFJlY3RGaWxsZWRNdWx0aUNvbG9yAEFkZFF1YWQAQWRkUXVhZEZpbGxlZABBZGRUcmlhbmdsZQBBZGRUcmlhbmdsZUZpbGxlZABBZGRDaXJjbGUAQWRkQ2lyY2xlRmlsbGVkAEFkZFRleHRfQQBBZGRUZXh0X0IAQWRkSW1hZ2UAQWRkSW1hZ2VRdWFkAEFkZEltYWdlUm91bmRlZABBZGRQb2x5bGluZQBBZGRDb252ZXhQb2x5RmlsbGVkAEFkZEJlemllckN1cnZlAFBhdGhDbGVhcgBQYXRoTGluZVRvAFBhdGhMaW5lVG9NZXJnZUR1cGxpY2F0ZQBQYXRoRmlsbENvbnZleABQYXRoU3Ryb2tlAFBhdGhBcmNUbwBQYXRoQXJjVG9GYXN0AFBhdGhCZXppZXJDdXJ2ZVRvAFBhdGhSZWN0AENoYW5uZWxzU3BsaXQAQ2hhbm5lbHNNZXJnZQBDaGFubmVsc1NldEN1cnJlbnQAQWRkQ2FsbGJhY2sAQWRkRHJhd0NtZABDbGVhckZyZWVNZW1vcnkAUHJpbVJlc2VydmUAUHJpbVJlY3QAUHJpbVJlY3RVVgBQcmltUXVhZFVWAFByaW1Xcml0ZVZ0eABQcmltV3JpdGVJZHgAUHJpbVZ0eABVcGRhdGVDbGlwUmVjdABVcGRhdGVUZXh0dXJlSUQAdmlpaWlpaWlpaWlpAHZpaWlpZmkAdmlpaWZmZmkAdmlpaWlmAHZpaWlpaWlpZmkAdmlpaWlpaWlpZmkAdmlpaWlpaWlpaWlpaQB2aWlpZmlpaWZpADIzaW1wb3J0X21heWJlX251bGxfdmFsdWVJNkltVmVjNEUAdmlpaWZpaQB2aWlpZmlpZgB2aWlpaWlpAHZpaWlpaWlmAHZpaWlpaWlpZgB2aWlpaWlpaWkAdmlpaWlpZmkAdmlpaWlpZmlmAHZpaWlpaWYATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJY0VFAFBLOUltRHJhd0NtZAA5SW1EcmF3Q21kAEltRHJhd0NtZABFbGVtQ291bnQAQ2xpcFJlY3QAVGV4dHVyZUlkAFA5SW1EcmF3Q21kAEltR3VpTGlzdENsaXBwZXIAU3RhcnRQb3NZAEl0ZW1zSGVpZ2h0AEl0ZW1zQ291bnQAU3RlcE5vAERpc3BsYXlTdGFydABEaXNwbGF5RW5kAFN0ZXAAUDE2SW1HdWlMaXN0Q2xpcHBlcgAxNkltR3VpTGlzdENsaXBwZXIAdmlpaWYAUEsxNkltR3VpTGlzdENsaXBwZXIASW1HdWlTaXplQ2FsbGJhY2tEYXRhAFBvcwBDdXJyZW50U2l6ZQBEZXNpcmVkU2l6ZQBQSzIxSW1HdWlTaXplQ2FsbGJhY2tEYXRhAEltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAEV2ZW50RmxhZwBFdmVudENoYXIARXZlbnRLZXkAQnVmAEJ1ZlRleHRMZW4AQnVmU2l6ZQBCdWZEaXJ0eQBDdXJzb3JQb3MAU2VsZWN0aW9uU3RhcnQAU2VsZWN0aW9uRW5kAERlbGV0ZUNoYXJzAEluc2VydENoYXJzAEhhc1NlbGVjdGlvbgBQSzI2SW1HdWlJbnB1dFRleHRDYWxsYmFja0RhdGEASW1WZWM0AFNldABDb3B5AEVxdWFscwBJbVZlYzIAUDZJbVZlYzIAV3JhcEltR3VpQ29udGV4dABQSzE2V3JhcEltR3VpQ29udGV4dABtYWxsaW5mbwBhcmVuYQBvcmRibGtzAHNtYmxrcwBoYmxrcwBoYmxraGQAdXNtYmxrcwBmc21ibGtzAHVvcmRibGtzAGZvcmRibGtzAGtlZXBjb3N0AHZvaWQAYm9vbABzdGQ6OnN0cmluZwBzdGQ6OmJhc2ljX3N0cmluZzx1bnNpZ25lZCBjaGFyPgBzdGQ6OndzdHJpbmcAZW1zY3JpcHRlbjo6dmFsAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgc2hvcnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgaW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludDE2X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQzMl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZyBkb3VibGU+AE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SWVFRQBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxkb3VibGU+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBsb25nPgBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0ltRUUAZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZz4ATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJbEVFAE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SXRFRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lzRUUATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJYUVFAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGNoYXI+AE5TdDNfXzIxMmJhc2ljX3N0cmluZ0l3TlNfMTFjaGFyX3RyYWl0c0l3RUVOU185YWxsb2NhdG9ySXdFRUVFAE5TdDNfXzIxMmJhc2ljX3N0cmluZ0loTlNfMTFjaGFyX3RyYWl0c0loRUVOU185YWxsb2NhdG9ySWhFRUVFAGRvdWJsZQBmbG9hdAB1bnNpZ25lZCBsb25nAGxvbmcAdW5zaWduZWQgaW50AGludAB1bnNpZ25lZCBzaG9ydABzaG9ydAB1bnNpZ25lZCBjaGFyAHNpZ25lZCBjaGFyAGNoYXIAAAECBAcDBgUALSsgICAwWDB4AChudWxsKQAtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBOQU4ALgBpbmZpbml0eQBuYW4AcndhAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXM6ICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXMAdGVybWluYXRpbmcgd2l0aCAlcyBmb3JlaWduIGV4Y2VwdGlvbgB0ZXJtaW5hdGluZwB1bmNhdWdodABTdDlleGNlcHRpb24ATjEwX19jeHhhYml2MTE2X19zaGltX3R5cGVfaW5mb0UAU3Q5dHlwZV9pbmZvAE4xMF9fY3h4YWJpdjEyMF9fc2lfY2xhc3NfdHlwZV9pbmZvRQBOMTBfX2N4eGFiaXYxMTdfX2NsYXNzX3R5cGVfaW5mb0UAcHRocmVhZF9vbmNlIGZhaWx1cmUgaW4gX19jeGFfZ2V0X2dsb2JhbHNfZmFzdCgpAGNhbm5vdCBjcmVhdGUgcHRocmVhZCBrZXkgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAY2Fubm90IHplcm8gb3V0IHRocmVhZCB2YWx1ZSBmb3IgX19jeGFfZ2V0X2dsb2JhbHMoKQB0ZXJtaW5hdGVfaGFuZGxlciB1bmV4cGVjdGVkbHkgcmV0dXJuZWQAU3QxMWxvZ2ljX2Vycm9yAFN0MTJsZW5ndGhfZXJyb3IATjEwX19jeHhhYml2MTE5X19wb2ludGVyX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19wYmFzZV90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjEyM19fZnVuZGFtZW50YWxfdHlwZV9pbmZvRQB2AFB2AERuAGIAYwBoAGEAcwB0AGkAagBsAG0AZgBkAE4xMF9fY3h4YWJpdjEyMV9fdm1pX2NsYXNzX3R5cGVfaW5mb0U=";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile);}function getBinary(){try{if(Module["wasmBinary"]){return new Uint8Array(Module["wasmBinary"])}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(Module["readBinary"]){return Module["readBinary"](wasmBinaryFile)}else{throw"both async and sync fetching of the wasm failed"}}catch(err){abort(err);}}function getBinaryPromise(){if(!Module["wasmBinary"]&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch==="function"){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()})}return new Promise(function(resolve,reject){resolve(getBinary());})}function createWasm(env){var info={"env":env,"global":{"NaN":NaN,Infinity:Infinity},"global.Math":Math,"asm2wasm":asm2wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;removeRunDependency();}addRunDependency();function receiveInstantiatedSource(output){receiveInstance(output["instance"]);}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason);})}function instantiateAsync(){if(!Module["wasmBinary"]&&typeof WebAssembly.instantiateStreaming==="function"&&!isDataURI(wasmBinaryFile)&&typeof fetch==="function"){return WebAssembly.instantiateStreaming(fetch(wasmBinaryFile,{credentials:"same-origin"}),info).then(receiveInstantiatedSource,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");instantiateArrayBuffer(receiveInstantiatedSource);})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module["instantiateWasm"]){try{return Module["instantiateWasm"](info,receiveInstance)}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}}instantiateAsync();return {}}Module["asm"]=function(global,env,providedBuffer){env["memory"]=wasmMemory;env["table"]=wasmTable=new WebAssembly.Table({"initial":1442,"maximum":1442,"element":"anyfunc"});env["__memory_base"]=1024;env["__table_base"]=0;var exports=createWasm(env);return exports};__ATINIT__.push({func:function(){globalCtors();}});function ___cxa_allocate_exception(size){return _malloc(size)}function ___cxa_throw(ptr,type,destructor){throw ptr}function ___lock(){}var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0;}else{buffer.push(curr);}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get();}};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall145(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();return SYSCALLS.doReadv(stream,iov,iovcnt)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j>2]=value;return value}function ___syscall221(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___unlock(){}function getShiftFromSize(size){switch(size){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError("Unknown type size: "+size)}}function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<256;++i){codes[i]=String.fromCharCode(i);}embind_charCodes=codes;}var embind_charCodes=undefined;function readLatin1String(ptr){var ret="";var c=ptr;while(HEAPU8[c]){ret+=embind_charCodes[HEAPU8[c++]];}return ret}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return "_unknown"}name=name.replace(/[^a-zA-Z0-9_]/g,"$");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return "_"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return new Function("body","return function "+name+"() {\n"+' "use strict";'+" return body.apply(this, arguments);\n"+"};\n")(body)}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+"\n"+stack.replace(/^Error(:[^\n]*)?\n/,"");}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+": "+this.message}};return errorClass}var BindingError=undefined;function throwBindingError(message){throw new BindingError(message)}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes;});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError("Mismatched type converter count");}for(var i=0;i>shift])},destructorFunction:null});}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass;}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass;}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return {count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+" instance already deleted");}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr);}else{$$.ptrType.registeredClass.rawDestructor($$.ptr);}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$);}}function attachFinalizer(handle){if("undefined"===typeof FinalizationGroup){attachFinalizer=function(handle){return handle};return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn("object already deleted: "+$$.ptr);}else{releaseClassHandle($$);}}});attachFinalizer=function(handle){finalizationGroup.register(handle,handle.$$,handle.$$);return handle};detachFinalizer=function(handle){finalizationGroup.unregister(handle.$$);};return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined;}}function ClassHandle_isDeleted(){return !this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj["delete"]();}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes);}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype["isAliasOf"]=ClassHandle_isAliasOf;ClassHandle.prototype["clone"]=ClassHandle_clone;ClassHandle.prototype["delete"]=ClassHandle_delete;ClassHandle.prototype["isDeleted"]=ClassHandle_isDeleted;ClassHandle.prototype["deleteLater"]=ClassHandle_deleteLater;}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError("Function '"+humanName+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+proto[methodName].overloadTable+")!");}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc;}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError("Cannot register public name '"+name+"' twice");}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError("Cannot register multiple overloads of a function with the same number of arguments ("+numArguments+")!");}Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments;}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[];}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError("Expected null or instance of "+desiredClass.name+", got an instance of "+ptrClass.name);}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass;}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr);}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError("Passing raw pointer to smart pointer is illegal");}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{var clonedHandle=handle["clone"]();ptr=this.rawShare(ptr,__emval_register(function(){clonedHandle["delete"]();}));if(destructors!==null){destructors.push(this.rawDestructor,ptr);}}break;default:throwBindingError("Unsupporting sharing policy");}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+handle.$$.ptrType.name+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function simpleReadValueFromPointer(pointer){return this["fromWireType"](HEAPU32[pointer>>2])}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr);}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr);}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle["delete"]();}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k]);}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes);}}function init_embind(){Module["getInheritedInstanceCount"]=getInheritedInstanceCount;Module["getLiveInheritedInstances"]=getLiveInheritedInstances;Module["flushPendingDeletes"]=flushPendingDeletes;Module["setDelayFunction"]=setDelayFunction;}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError("ptr should not be undefined");}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass;}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError("makeClassHandle requires ptr and ptrType");}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError("Both smartPtrType and smartPtr must be specified");}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance["clone"]()}else{var rv=registeredInstance["clone"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType;}else{toType=registeredPointerRecord.pointerType;}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype["argPackAdvance"]=8;RegisteredPointer.prototype["readValueFromPointer"]=simpleReadValueFromPointer;RegisteredPointer.prototype["deleteObject"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype["fromWireType"]=RegisteredPointer_fromWireType;}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this["toWireType"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}else{this["toWireType"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}}else{this["toWireType"]=genericPointerToWireType;}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError("Replacing nonexistant public symbol");}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;Module[name].argCount=numArguments;}}function embind__requireFunction(signature,rawFunction){signature=readLatin1String(signature);function makeDynCaller(dynCall){var args=[];for(var i=1;i>2)+i]);}return array}function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr);}}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName="constructor "+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[];}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError("Cannot register multiple constructors with identical number of parameters ("+(argCount-1)+") for class '"+classType.name+"'! Overload resolution is currently only performed using the parameter count, not actual type info!")}classType.registeredClass.constructor_body[argCount-1]=function unboundTypeHandler(){throwUnboundTypeError("Cannot construct "+classType.name+" due to unbound types",rawArgTypes);};whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){classType.registeredClass.constructor_body[argCount-1]=function constructor_body(){if(arguments.length!==argCount-1){throwBindingError(humanName+" called with "+arguments.length+" arguments, expected "+(argCount-1));}var destructors=[];var args=new Array(argCount);args[0]=rawConstructor;for(var i=1;i0?", ":"")+argsListWired;}invokerFnBody+=(returns?"var rv = ":"")+"invoker(fn"+(argsListWired.length>0?", ":"")+argsListWired+");\n";if(needsDestructorStack){invokerFnBody+="runDestructors(destructors);\n";}else{for(var i=isClassMethodFunc?1:2;i4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle);}}function count_emval_handles(){var count=0;for(var i=5;i>2])};case 3:return function(pointer){return this["fromWireType"](HEAPF64[pointer>>3])};default:throw new TypeError("Unknown float type: "+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":function(value){return value},"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}return value},"argPackAdvance":8,"readValueFromPointer":floatReadValueFromPointer(name,shift),destructorFunction:null});}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError("Cannot call "+name+" due to unbound types",argTypes);},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return []});}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError("Unknown integer type: "+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295;}var shift=getShiftFromSize(size);var fromWireType=function(value){return value};if(minRange===0){var bitshift=32-8*size;fromWireType=function(value){return value<>>bitshift};}var isUnsignedType=name.indexOf("unsigned")!=-1;registerType(primitiveType,{name:name,"fromWireType":fromWireType,"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}if(valuemaxRange){throw new TypeError('Passing a number "'+_embind_repr(value)+'" from JS side to C/C++ side to an argument of type "'+name+'", which is outside the valid range ['+minRange+", "+maxRange+"]!")}return isUnsignedType?value>>>0:value|0},"argPackAdvance":8,"readValueFromPointer":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null});}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(heap["buffer"],data,size)}name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":decodeMemoryView,"argPackAdvance":8,"readValueFromPointer":decodeMemoryView},{ignoreDuplicateRegistrations:true});}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name==="std::string";registerType(rawType,{name:name,"fromWireType":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var endChar=HEAPU8[value+4+length];var endCharSwap=0;if(endChar!=0){endCharSwap=endChar;HEAPU8[value+4+length]=0;}var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(HEAPU8[currentBytePtr]==0){var stringSegment=UTF8ToString(decodeStartPtr);if(str===undefined)str=stringSegment;else{str+=String.fromCharCode(0);str+=stringSegment;}decodeStartPtr=currentBytePtr+1;}}if(endCharSwap!=0)HEAPU8[value+4+length]=endCharSwap;}else{var a=new Array(length);for(var i=0;i>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1);}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError("String has UTF-16 code units that do not fit in 8 bits");}HEAPU8[ptr+4+i]=charCode;}}else{for(var i=0;i>2];var a=new Array(length);var start=value+4>>shift;for(var i=0;i>2]=length;var start=ptr+4>>shift;for(var i=0;i>2]=rd;return returnType["toWireType"](destructors,handle)}function __emval_lookupTypes(argCount,argTypes,argWireTypes){var a=new Array(argCount);for(var i=0;i>2)+i],"parameter "+i);}return a}function __emval_call(handle,argCount,argTypes,argv){handle=requireHandle(handle);var types=__emval_lookupTypes(argCount,argTypes);var args=new Array(argCount);for(var i=0;i4){emval_handle_array[handle].refcount+=1;}}function __emval_new_array(){return __emval_register([])}function __emval_new_cstring(v){return __emval_register(getStringOrSymbol(v))}function __emval_new_object(){return __emval_register({})}function __emval_run_destructors(handle){var destructors=emval_handle_array[handle].value;runDestructors(destructors);__emval_decref(handle);}function __emval_set_property(handle,key,value){handle=requireHandle(handle);key=requireHandle(key);value=requireHandle(value);handle[key]=value;}function __emval_strictly_equals(first,second){first=requireHandle(first);second=requireHandle(second);return first===second}function __emval_take_value(type,argv){type=requireRegisteredType(type,"_emval_take_value");var v=type["readValueFromPointer"](argv);return __emval_register(v)}function __emval_typeof(handle){handle=requireHandle(handle);return __emval_register(typeof handle)}function _abort(){Module["abort"]();}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest);}function abortOnCannotGrowMemory(requestedSize){abort("OOM");}function _emscripten_resize_heap(requestedSize){abortOnCannotGrowMemory();}embind_init_charCodes();BindingError=Module["BindingError"]=extendError(Error,"BindingError");InternalError=Module["InternalError"]=extendError(Error,"InternalError");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module["UnboundTypeError"]=extendError(Error,"UnboundTypeError");init_emval();function intArrayToString(array){var ret=[];for(var i=0;i255){chr&=255;}ret.push(String.fromCharCode(chr));}return ret.join("")}var decodeBase64=typeof atob==="function"?atob:function(input){var keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2);}if(enc4!==64){output=output+String.fromCharCode(chr3);}}while(i0){return}preRun();if(runDependencies>0)return;if(Module["calledRun"])return;function doRun(){if(Module["calledRun"])return;Module["calledRun"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun();}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("");},1);doRun();},1);}else{doRun();}}Module["run"]=run;function abort(what){if(Module["onAbort"]){Module["onAbort"](what);}if(what!==undefined){out(what);err(what);what=JSON.stringify(what);}else{what="";}ABORT=true;throw"abort("+what+"). Build with -s ASSERTIONS=1 for more info."}Module["abort"]=abort;if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()();}}Module["noExitRuntime"]=true;run(); + + + return Module +} +); +})(); +module.exports = Module; +}); + +let bind; +const IMGUI_VERSION = "1.71"; // bind.IMGUI_VERSION; +// #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert)) +function IMGUI_CHECKVERSION() { return DebugCheckVersionAndDataLayout(IMGUI_VERSION, bind.ImGuiIOSize, bind.ImGuiStyleSize, bind.ImVec2Size, bind.ImVec4Size, bind.ImDrawVertSize, bind.ImDrawIdxSize); } +function IM_ASSERT(_EXPR) { if (!_EXPR) { + throw new Error(); +} } +function IM_ARRAYSIZE(_ARR) { + if (_ARR instanceof ImStringBuffer) { + return _ARR.size; + } + else { + return _ARR.length; + } +} +class ImStringBuffer { + constructor(size, buffer = "") { + this.size = size; + this.buffer = buffer; + } +} +var ImGuiWindowFlags; +(function (ImGuiWindowFlags) { + ImGuiWindowFlags[ImGuiWindowFlags["None"] = 0] = "None"; + ImGuiWindowFlags[ImGuiWindowFlags["NoTitleBar"] = 1] = "NoTitleBar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoResize"] = 2] = "NoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMove"] = 4] = "NoMove"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollbar"] = 8] = "NoScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollWithMouse"] = 16] = "NoScrollWithMouse"; + ImGuiWindowFlags[ImGuiWindowFlags["NoCollapse"] = 32] = "NoCollapse"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysAutoResize"] = 64] = "AlwaysAutoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBackground"] = 128] = "NoBackground"; + ImGuiWindowFlags[ImGuiWindowFlags["NoSavedSettings"] = 256] = "NoSavedSettings"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMouseInputs"] = 512] = "NoMouseInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["MenuBar"] = 1024] = "MenuBar"; + ImGuiWindowFlags[ImGuiWindowFlags["HorizontalScrollbar"] = 2048] = "HorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoFocusOnAppearing"] = 4096] = "NoFocusOnAppearing"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBringToFrontOnFocus"] = 8192] = "NoBringToFrontOnFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysVerticalScrollbar"] = 16384] = "AlwaysVerticalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysHorizontalScrollbar"] = 32768] = "AlwaysHorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysUseWindowPadding"] = 65536] = "AlwaysUseWindowPadding"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavInputs"] = 262144] = "NoNavInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavFocus"] = 524288] = "NoNavFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["UnsavedDocument"] = 1048576] = "UnsavedDocument"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNav"] = 786432] = "NoNav"; + ImGuiWindowFlags[ImGuiWindowFlags["NoDecoration"] = 43] = "NoDecoration"; + ImGuiWindowFlags[ImGuiWindowFlags["NoInputs"] = 786944] = "NoInputs"; + // [Internal] + ImGuiWindowFlags[ImGuiWindowFlags["NavFlattened"] = 8388608] = "NavFlattened"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildWindow"] = 16777216] = "ChildWindow"; + ImGuiWindowFlags[ImGuiWindowFlags["Tooltip"] = 33554432] = "Tooltip"; + ImGuiWindowFlags[ImGuiWindowFlags["Popup"] = 67108864] = "Popup"; + ImGuiWindowFlags[ImGuiWindowFlags["Modal"] = 134217728] = "Modal"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildMenu"] = 268435456] = "ChildMenu"; +})(ImGuiWindowFlags || (ImGuiWindowFlags = {})); +var ImGuiInputTextFlags; +(function (ImGuiInputTextFlags) { + ImGuiInputTextFlags[ImGuiInputTextFlags["None"] = 0] = "None"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsDecimal"] = 1] = "CharsDecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsHexadecimal"] = 2] = "CharsHexadecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsUppercase"] = 4] = "CharsUppercase"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsNoBlank"] = 8] = "CharsNoBlank"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AutoSelectAll"] = 16] = "AutoSelectAll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["EnterReturnsTrue"] = 32] = "EnterReturnsTrue"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCompletion"] = 64] = "CallbackCompletion"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackHistory"] = 128] = "CallbackHistory"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackAlways"] = 256] = "CallbackAlways"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCharFilter"] = 512] = "CallbackCharFilter"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AllowTabInput"] = 1024] = "AllowTabInput"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CtrlEnterForNewLine"] = 2048] = "CtrlEnterForNewLine"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoHorizontalScroll"] = 4096] = "NoHorizontalScroll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AlwaysInsertMode"] = 8192] = "AlwaysInsertMode"; + ImGuiInputTextFlags[ImGuiInputTextFlags["ReadOnly"] = 16384] = "ReadOnly"; + ImGuiInputTextFlags[ImGuiInputTextFlags["Password"] = 32768] = "Password"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoUndoRedo"] = 65536] = "NoUndoRedo"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsScientific"] = 131072] = "CharsScientific"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackResize"] = 262144] = "CallbackResize"; + // [Internal] + ImGuiInputTextFlags[ImGuiInputTextFlags["Multiline"] = 1048576] = "Multiline"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoMarkEdited"] = 2097152] = "NoMarkEdited"; +})(ImGuiInputTextFlags || (ImGuiInputTextFlags = {})); +var ImGuiTreeNodeFlags; +(function (ImGuiTreeNodeFlags) { + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["None"] = 0] = "None"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Selected"] = 1] = "Selected"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Framed"] = 2] = "Framed"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["AllowItemOverlap"] = 4] = "AllowItemOverlap"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoTreePushOnOpen"] = 8] = "NoTreePushOnOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoAutoOpenOnLog"] = 16] = "NoAutoOpenOnLog"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["DefaultOpen"] = 32] = "DefaultOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnDoubleClick"] = 64] = "OpenOnDoubleClick"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnArrow"] = 128] = "OpenOnArrow"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Leaf"] = 256] = "Leaf"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Bullet"] = 512] = "Bullet"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["FramePadding"] = 1024] = "FramePadding"; + //SpanAllAvailWidth = 1 << 11, // FIXME: TODO: Extend hit box horizontally even if not framed + //NoScrollOnOpen = 1 << 12, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NavLeftJumpsBackHere"] = 8192] = "NavLeftJumpsBackHere"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["CollapsingHeader"] = 26] = "CollapsingHeader"; +})(ImGuiTreeNodeFlags || (ImGuiTreeNodeFlags = {})); +var ImGuiSelectableFlags; +(function (ImGuiSelectableFlags) { + ImGuiSelectableFlags[ImGuiSelectableFlags["None"] = 0] = "None"; + ImGuiSelectableFlags[ImGuiSelectableFlags["DontClosePopups"] = 1] = "DontClosePopups"; + ImGuiSelectableFlags[ImGuiSelectableFlags["SpanAllColumns"] = 2] = "SpanAllColumns"; + ImGuiSelectableFlags[ImGuiSelectableFlags["AllowDoubleClick"] = 4] = "AllowDoubleClick"; + ImGuiSelectableFlags[ImGuiSelectableFlags["Disabled"] = 8] = "Disabled"; // Cannot be selected, display greyed out text +})(ImGuiSelectableFlags || (ImGuiSelectableFlags = {})); +var ImGuiComboFlags; +(function (ImGuiComboFlags) { + ImGuiComboFlags[ImGuiComboFlags["None"] = 0] = "None"; + ImGuiComboFlags[ImGuiComboFlags["PopupAlignLeft"] = 1] = "PopupAlignLeft"; + ImGuiComboFlags[ImGuiComboFlags["HeightSmall"] = 2] = "HeightSmall"; + ImGuiComboFlags[ImGuiComboFlags["HeightRegular"] = 4] = "HeightRegular"; + ImGuiComboFlags[ImGuiComboFlags["HeightLarge"] = 8] = "HeightLarge"; + ImGuiComboFlags[ImGuiComboFlags["HeightLargest"] = 16] = "HeightLargest"; + ImGuiComboFlags[ImGuiComboFlags["NoArrowButton"] = 32] = "NoArrowButton"; + ImGuiComboFlags[ImGuiComboFlags["NoPreview"] = 64] = "NoPreview"; + ImGuiComboFlags[ImGuiComboFlags["HeightMask_"] = 30] = "HeightMask_"; +})(ImGuiComboFlags || (ImGuiComboFlags = {})); +var ImGuiTabBarFlags; +(function (ImGuiTabBarFlags) { + ImGuiTabBarFlags[ImGuiTabBarFlags["None"] = 0] = "None"; + ImGuiTabBarFlags[ImGuiTabBarFlags["Reorderable"] = 1] = "Reorderable"; + ImGuiTabBarFlags[ImGuiTabBarFlags["AutoSelectNewTabs"] = 2] = "AutoSelectNewTabs"; + ImGuiTabBarFlags[ImGuiTabBarFlags["TabListPopupButton"] = 4] = "TabListPopupButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoCloseWithMiddleMouseButton"] = 8] = "NoCloseWithMiddleMouseButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTabListScrollingButtons"] = 16] = "NoTabListScrollingButtons"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTooltip"] = 32] = "NoTooltip"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyResizeDown"] = 64] = "FittingPolicyResizeDown"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyScroll"] = 128] = "FittingPolicyScroll"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyMask_"] = 192] = "FittingPolicyMask_"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyDefault_"] = 64] = "FittingPolicyDefault_"; +})(ImGuiTabBarFlags || (ImGuiTabBarFlags = {})); +var ImGuiTabItemFlags; +(function (ImGuiTabItemFlags) { + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_None"] = 0] = "ImGuiTabItemFlags_None"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_UnsavedDocument"] = 1] = "ImGuiTabItemFlags_UnsavedDocument"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_SetSelected"] = 2] = "ImGuiTabItemFlags_SetSelected"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"] = 4] = "ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoPushId"] = 8] = "ImGuiTabItemFlags_NoPushId"; // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem() +})(ImGuiTabItemFlags || (ImGuiTabItemFlags = {})); +var ImGuiFocusedFlags; +(function (ImGuiFocusedFlags) { + ImGuiFocusedFlags[ImGuiFocusedFlags["None"] = 0] = "None"; + ImGuiFocusedFlags[ImGuiFocusedFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiFocusedFlags || (ImGuiFocusedFlags = {})); +var ImGuiHoveredFlags; +(function (ImGuiHoveredFlags) { + ImGuiHoveredFlags[ImGuiHoveredFlags["None"] = 0] = "None"; + ImGuiHoveredFlags[ImGuiHoveredFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByPopup"] = 8] = "AllowWhenBlockedByPopup"; + //AllowWhenBlockedByModal = 1 << 4, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet. + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByActiveItem"] = 32] = "AllowWhenBlockedByActiveItem"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenOverlapped"] = 64] = "AllowWhenOverlapped"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenDisabled"] = 128] = "AllowWhenDisabled"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RectOnly"] = 104] = "RectOnly"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiHoveredFlags || (ImGuiHoveredFlags = {})); +var ImGuiDragDropFlags; +(function (ImGuiDragDropFlags) { + // BeginDragDropSource() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["None"] = 0] = "None"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoPreviewTooltip"] = 1] = "SourceNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoDisableHover"] = 2] = "SourceNoDisableHover"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoHoldToOpenOthers"] = 4] = "SourceNoHoldToOpenOthers"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAllowNullID"] = 8] = "SourceAllowNullID"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceExtern"] = 16] = "SourceExtern"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAutoExpirePayload"] = 32] = "SourceAutoExpirePayload"; + // AcceptDragDropPayload() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptBeforeDelivery"] = 1024] = "AcceptBeforeDelivery"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoDrawDefaultRect"] = 2048] = "AcceptNoDrawDefaultRect"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoPreviewTooltip"] = 4096] = "AcceptNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptPeekOnly"] = 3072] = "AcceptPeekOnly"; +})(ImGuiDragDropFlags || (ImGuiDragDropFlags = {})); +var ImGuiDataType; +(function (ImGuiDataType) { + ImGuiDataType[ImGuiDataType["S8"] = 0] = "S8"; + ImGuiDataType[ImGuiDataType["U8"] = 1] = "U8"; + ImGuiDataType[ImGuiDataType["S16"] = 2] = "S16"; + ImGuiDataType[ImGuiDataType["U16"] = 3] = "U16"; + ImGuiDataType[ImGuiDataType["S32"] = 4] = "S32"; + ImGuiDataType[ImGuiDataType["U32"] = 5] = "U32"; + ImGuiDataType[ImGuiDataType["S64"] = 6] = "S64"; + ImGuiDataType[ImGuiDataType["U64"] = 7] = "U64"; + ImGuiDataType[ImGuiDataType["Float"] = 8] = "Float"; + ImGuiDataType[ImGuiDataType["Double"] = 9] = "Double"; + ImGuiDataType[ImGuiDataType["COUNT"] = 10] = "COUNT"; +})(ImGuiDataType || (ImGuiDataType = {})); +var ImGuiDir; +(function (ImGuiDir) { + ImGuiDir[ImGuiDir["None"] = -1] = "None"; + ImGuiDir[ImGuiDir["Left"] = 0] = "Left"; + ImGuiDir[ImGuiDir["Right"] = 1] = "Right"; + ImGuiDir[ImGuiDir["Up"] = 2] = "Up"; + ImGuiDir[ImGuiDir["Down"] = 3] = "Down"; + ImGuiDir[ImGuiDir["COUNT"] = 4] = "COUNT"; +})(ImGuiDir || (ImGuiDir = {})); +var ImGuiKey; +(function (ImGuiKey) { + ImGuiKey[ImGuiKey["Tab"] = 0] = "Tab"; + ImGuiKey[ImGuiKey["LeftArrow"] = 1] = "LeftArrow"; + ImGuiKey[ImGuiKey["RightArrow"] = 2] = "RightArrow"; + ImGuiKey[ImGuiKey["UpArrow"] = 3] = "UpArrow"; + ImGuiKey[ImGuiKey["DownArrow"] = 4] = "DownArrow"; + ImGuiKey[ImGuiKey["PageUp"] = 5] = "PageUp"; + ImGuiKey[ImGuiKey["PageDown"] = 6] = "PageDown"; + ImGuiKey[ImGuiKey["Home"] = 7] = "Home"; + ImGuiKey[ImGuiKey["End"] = 8] = "End"; + ImGuiKey[ImGuiKey["Insert"] = 9] = "Insert"; + ImGuiKey[ImGuiKey["Delete"] = 10] = "Delete"; + ImGuiKey[ImGuiKey["Backspace"] = 11] = "Backspace"; + ImGuiKey[ImGuiKey["Space"] = 12] = "Space"; + ImGuiKey[ImGuiKey["Enter"] = 13] = "Enter"; + ImGuiKey[ImGuiKey["Escape"] = 14] = "Escape"; + ImGuiKey[ImGuiKey["A"] = 15] = "A"; + ImGuiKey[ImGuiKey["C"] = 16] = "C"; + ImGuiKey[ImGuiKey["V"] = 17] = "V"; + ImGuiKey[ImGuiKey["X"] = 18] = "X"; + ImGuiKey[ImGuiKey["Y"] = 19] = "Y"; + ImGuiKey[ImGuiKey["Z"] = 20] = "Z"; + ImGuiKey[ImGuiKey["COUNT"] = 21] = "COUNT"; +})(ImGuiKey || (ImGuiKey = {})); +var ImGuiNavInput; +(function (ImGuiNavInput) { + // Gamepad Mapping + ImGuiNavInput[ImGuiNavInput["Activate"] = 0] = "Activate"; + ImGuiNavInput[ImGuiNavInput["Cancel"] = 1] = "Cancel"; + ImGuiNavInput[ImGuiNavInput["Input"] = 2] = "Input"; + ImGuiNavInput[ImGuiNavInput["Menu"] = 3] = "Menu"; + ImGuiNavInput[ImGuiNavInput["DpadLeft"] = 4] = "DpadLeft"; + ImGuiNavInput[ImGuiNavInput["DpadRight"] = 5] = "DpadRight"; + ImGuiNavInput[ImGuiNavInput["DpadUp"] = 6] = "DpadUp"; + ImGuiNavInput[ImGuiNavInput["DpadDown"] = 7] = "DpadDown"; + ImGuiNavInput[ImGuiNavInput["LStickLeft"] = 8] = "LStickLeft"; + ImGuiNavInput[ImGuiNavInput["LStickRight"] = 9] = "LStickRight"; + ImGuiNavInput[ImGuiNavInput["LStickUp"] = 10] = "LStickUp"; + ImGuiNavInput[ImGuiNavInput["LStickDown"] = 11] = "LStickDown"; + ImGuiNavInput[ImGuiNavInput["FocusPrev"] = 12] = "FocusPrev"; + ImGuiNavInput[ImGuiNavInput["FocusNext"] = 13] = "FocusNext"; + ImGuiNavInput[ImGuiNavInput["TweakSlow"] = 14] = "TweakSlow"; + ImGuiNavInput[ImGuiNavInput["TweakFast"] = 15] = "TweakFast"; + // [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them. + // Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) may be directly reading from io.KeyDown[] instead of io.NavInputs[]. + ImGuiNavInput[ImGuiNavInput["KeyMenu_"] = 16] = "KeyMenu_"; + ImGuiNavInput[ImGuiNavInput["KeyTab_"] = 17] = "KeyTab_"; + ImGuiNavInput[ImGuiNavInput["KeyLeft_"] = 18] = "KeyLeft_"; + ImGuiNavInput[ImGuiNavInput["KeyRight_"] = 19] = "KeyRight_"; + ImGuiNavInput[ImGuiNavInput["KeyUp_"] = 20] = "KeyUp_"; + ImGuiNavInput[ImGuiNavInput["KeyDown_"] = 21] = "KeyDown_"; + ImGuiNavInput[ImGuiNavInput["COUNT"] = 22] = "COUNT"; + ImGuiNavInput[ImGuiNavInput["InternalStart_"] = 16] = "InternalStart_"; +})(ImGuiNavInput || (ImGuiNavInput = {})); +var ImGuiConfigFlags; +(function (ImGuiConfigFlags) { + ImGuiConfigFlags[ImGuiConfigFlags["None"] = 0] = "None"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableKeyboard"] = 1] = "NavEnableKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableGamepad"] = 2] = "NavEnableGamepad"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableSetMousePos"] = 4] = "NavEnableSetMousePos"; + ImGuiConfigFlags[ImGuiConfigFlags["NavNoCaptureKeyboard"] = 8] = "NavNoCaptureKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouse"] = 16] = "NoMouse"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouseCursorChange"] = 32] = "NoMouseCursorChange"; + ImGuiConfigFlags[ImGuiConfigFlags["IsSRGB"] = 1048576] = "IsSRGB"; + ImGuiConfigFlags[ImGuiConfigFlags["IsTouchScreen"] = 2097152] = "IsTouchScreen"; // Application is using a touch screen instead of a mouse. +})(ImGuiConfigFlags || (ImGuiConfigFlags = {})); +var ImGuiCol; +(function (ImGuiCol) { + ImGuiCol[ImGuiCol["Text"] = 0] = "Text"; + ImGuiCol[ImGuiCol["TextDisabled"] = 1] = "TextDisabled"; + ImGuiCol[ImGuiCol["WindowBg"] = 2] = "WindowBg"; + ImGuiCol[ImGuiCol["ChildBg"] = 3] = "ChildBg"; + ImGuiCol[ImGuiCol["PopupBg"] = 4] = "PopupBg"; + ImGuiCol[ImGuiCol["Border"] = 5] = "Border"; + ImGuiCol[ImGuiCol["BorderShadow"] = 6] = "BorderShadow"; + ImGuiCol[ImGuiCol["FrameBg"] = 7] = "FrameBg"; + ImGuiCol[ImGuiCol["FrameBgHovered"] = 8] = "FrameBgHovered"; + ImGuiCol[ImGuiCol["FrameBgActive"] = 9] = "FrameBgActive"; + ImGuiCol[ImGuiCol["TitleBg"] = 10] = "TitleBg"; + ImGuiCol[ImGuiCol["TitleBgActive"] = 11] = "TitleBgActive"; + ImGuiCol[ImGuiCol["TitleBgCollapsed"] = 12] = "TitleBgCollapsed"; + ImGuiCol[ImGuiCol["MenuBarBg"] = 13] = "MenuBarBg"; + ImGuiCol[ImGuiCol["ScrollbarBg"] = 14] = "ScrollbarBg"; + ImGuiCol[ImGuiCol["ScrollbarGrab"] = 15] = "ScrollbarGrab"; + ImGuiCol[ImGuiCol["ScrollbarGrabHovered"] = 16] = "ScrollbarGrabHovered"; + ImGuiCol[ImGuiCol["ScrollbarGrabActive"] = 17] = "ScrollbarGrabActive"; + ImGuiCol[ImGuiCol["CheckMark"] = 18] = "CheckMark"; + ImGuiCol[ImGuiCol["SliderGrab"] = 19] = "SliderGrab"; + ImGuiCol[ImGuiCol["SliderGrabActive"] = 20] = "SliderGrabActive"; + ImGuiCol[ImGuiCol["Button"] = 21] = "Button"; + ImGuiCol[ImGuiCol["ButtonHovered"] = 22] = "ButtonHovered"; + ImGuiCol[ImGuiCol["ButtonActive"] = 23] = "ButtonActive"; + ImGuiCol[ImGuiCol["Header"] = 24] = "Header"; + ImGuiCol[ImGuiCol["HeaderHovered"] = 25] = "HeaderHovered"; + ImGuiCol[ImGuiCol["HeaderActive"] = 26] = "HeaderActive"; + ImGuiCol[ImGuiCol["Separator"] = 27] = "Separator"; + ImGuiCol[ImGuiCol["SeparatorHovered"] = 28] = "SeparatorHovered"; + ImGuiCol[ImGuiCol["SeparatorActive"] = 29] = "SeparatorActive"; + ImGuiCol[ImGuiCol["ResizeGrip"] = 30] = "ResizeGrip"; + ImGuiCol[ImGuiCol["ResizeGripHovered"] = 31] = "ResizeGripHovered"; + ImGuiCol[ImGuiCol["ResizeGripActive"] = 32] = "ResizeGripActive"; + ImGuiCol[ImGuiCol["Tab"] = 33] = "Tab"; + ImGuiCol[ImGuiCol["TabHovered"] = 34] = "TabHovered"; + ImGuiCol[ImGuiCol["TabActive"] = 35] = "TabActive"; + ImGuiCol[ImGuiCol["TabUnfocused"] = 36] = "TabUnfocused"; + ImGuiCol[ImGuiCol["TabUnfocusedActive"] = 37] = "TabUnfocusedActive"; + ImGuiCol[ImGuiCol["PlotLines"] = 38] = "PlotLines"; + ImGuiCol[ImGuiCol["PlotLinesHovered"] = 39] = "PlotLinesHovered"; + ImGuiCol[ImGuiCol["PlotHistogram"] = 40] = "PlotHistogram"; + ImGuiCol[ImGuiCol["PlotHistogramHovered"] = 41] = "PlotHistogramHovered"; + ImGuiCol[ImGuiCol["TextSelectedBg"] = 42] = "TextSelectedBg"; + ImGuiCol[ImGuiCol["DragDropTarget"] = 43] = "DragDropTarget"; + ImGuiCol[ImGuiCol["NavHighlight"] = 44] = "NavHighlight"; + ImGuiCol[ImGuiCol["NavWindowingHighlight"] = 45] = "NavWindowingHighlight"; + ImGuiCol[ImGuiCol["NavWindowingDimBg"] = 46] = "NavWindowingDimBg"; + ImGuiCol[ImGuiCol["ModalWindowDimBg"] = 47] = "ModalWindowDimBg"; + ImGuiCol[ImGuiCol["COUNT"] = 48] = "COUNT"; +})(ImGuiCol || (ImGuiCol = {})); +var ImGuiStyleVar; +(function (ImGuiStyleVar) { + // Enum name ......................// Member in ImGuiStyle structure (see ImGuiStyle for descriptions) + ImGuiStyleVar[ImGuiStyleVar["Alpha"] = 0] = "Alpha"; + ImGuiStyleVar[ImGuiStyleVar["WindowPadding"] = 1] = "WindowPadding"; + ImGuiStyleVar[ImGuiStyleVar["WindowRounding"] = 2] = "WindowRounding"; + ImGuiStyleVar[ImGuiStyleVar["WindowBorderSize"] = 3] = "WindowBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowMinSize"] = 4] = "WindowMinSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowTitleAlign"] = 5] = "WindowTitleAlign"; + // WindowMenuButtonPosition, // ImGuiDir WindowMenuButtonPosition + ImGuiStyleVar[ImGuiStyleVar["ChildRounding"] = 6] = "ChildRounding"; + ImGuiStyleVar[ImGuiStyleVar["ChildBorderSize"] = 7] = "ChildBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["PopupRounding"] = 8] = "PopupRounding"; + ImGuiStyleVar[ImGuiStyleVar["PopupBorderSize"] = 9] = "PopupBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["FramePadding"] = 10] = "FramePadding"; + ImGuiStyleVar[ImGuiStyleVar["FrameRounding"] = 11] = "FrameRounding"; + ImGuiStyleVar[ImGuiStyleVar["FrameBorderSize"] = 12] = "FrameBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["ItemSpacing"] = 13] = "ItemSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ItemInnerSpacing"] = 14] = "ItemInnerSpacing"; + ImGuiStyleVar[ImGuiStyleVar["IndentSpacing"] = 15] = "IndentSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarSize"] = 16] = "ScrollbarSize"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarRounding"] = 17] = "ScrollbarRounding"; + ImGuiStyleVar[ImGuiStyleVar["GrabMinSize"] = 18] = "GrabMinSize"; + ImGuiStyleVar[ImGuiStyleVar["GrabRounding"] = 19] = "GrabRounding"; + ImGuiStyleVar[ImGuiStyleVar["TabRounding"] = 20] = "TabRounding"; + ImGuiStyleVar[ImGuiStyleVar["ButtonTextAlign"] = 21] = "ButtonTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["SelectableTextAlign"] = 22] = "SelectableTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["Count_"] = 23] = "Count_"; + ImGuiStyleVar[ImGuiStyleVar["COUNT"] = 23] = "COUNT"; +})(ImGuiStyleVar || (ImGuiStyleVar = {})); +var ImGuiBackendFlags; +(function (ImGuiBackendFlags) { + ImGuiBackendFlags[ImGuiBackendFlags["None"] = 0] = "None"; + ImGuiBackendFlags[ImGuiBackendFlags["HasGamepad"] = 1] = "HasGamepad"; + ImGuiBackendFlags[ImGuiBackendFlags["HasMouseCursors"] = 2] = "HasMouseCursors"; + ImGuiBackendFlags[ImGuiBackendFlags["HasSetMousePos"] = 4] = "HasSetMousePos"; + ImGuiBackendFlags[ImGuiBackendFlags["RendererHasVtxOffset"] = 8] = "RendererHasVtxOffset"; +})(ImGuiBackendFlags || (ImGuiBackendFlags = {})); +var ImGuiColorEditFlags; +(function (ImGuiColorEditFlags) { + ImGuiColorEditFlags[ImGuiColorEditFlags["None"] = 0] = "None"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoAlpha"] = 2] = "NoAlpha"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoPicker"] = 4] = "NoPicker"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoOptions"] = 8] = "NoOptions"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSmallPreview"] = 16] = "NoSmallPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoInputs"] = 32] = "NoInputs"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoTooltip"] = 64] = "NoTooltip"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoLabel"] = 128] = "NoLabel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSidePreview"] = 256] = "NoSidePreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoDragDrop"] = 512] = "NoDragDrop"; + // User Options (right-click on widget to change some of them). You can set application defaults using SetColorEditOptions(). The idea is that you probably don't want to override them in most of your calls, let the user choose and/or call SetColorEditOptions() during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaBar"] = 65536] = "AlphaBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreview"] = 131072] = "AlphaPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreviewHalf"] = 262144] = "AlphaPreviewHalf"; + ImGuiColorEditFlags[ImGuiColorEditFlags["HDR"] = 524288] = "HDR"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayRGB"] = 1048576] = "DisplayRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHSV"] = 2097152] = "DisplayHSV"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHex"] = 4194304] = "DisplayHex"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Uint8"] = 8388608] = "Uint8"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Float"] = 16777216] = "Float"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueBar"] = 33554432] = "PickerHueBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueWheel"] = 67108864] = "PickerHueWheel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputRGB"] = 134217728] = "InputRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputHSV"] = 268435456] = "InputHSV"; + // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to + // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["_OptionsDefault"] = 177209344] = "_OptionsDefault"; + // [Internal] Masks + ImGuiColorEditFlags[ImGuiColorEditFlags["_DisplayMask"] = 7340032] = "_DisplayMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_DataTypeMask"] = 25165824] = "_DataTypeMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_PickerMask"] = 100663296] = "_PickerMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_InputMask"] = 402653184] = "_InputMask"; +})(ImGuiColorEditFlags || (ImGuiColorEditFlags = {})); +var ImGuiMouseCursor; +(function (ImGuiMouseCursor) { + ImGuiMouseCursor[ImGuiMouseCursor["None"] = -1] = "None"; + ImGuiMouseCursor[ImGuiMouseCursor["Arrow"] = 0] = "Arrow"; + ImGuiMouseCursor[ImGuiMouseCursor["TextInput"] = 1] = "TextInput"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeAll"] = 2] = "ResizeAll"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNS"] = 3] = "ResizeNS"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeEW"] = 4] = "ResizeEW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNESW"] = 5] = "ResizeNESW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNWSE"] = 6] = "ResizeNWSE"; + ImGuiMouseCursor[ImGuiMouseCursor["Hand"] = 7] = "Hand"; + ImGuiMouseCursor[ImGuiMouseCursor["Count_"] = 8] = "Count_"; + ImGuiMouseCursor[ImGuiMouseCursor["COUNT"] = 8] = "COUNT"; +})(ImGuiMouseCursor || (ImGuiMouseCursor = {})); +var ImGuiCond; +(function (ImGuiCond) { + ImGuiCond[ImGuiCond["Always"] = 1] = "Always"; + ImGuiCond[ImGuiCond["Once"] = 2] = "Once"; + ImGuiCond[ImGuiCond["FirstUseEver"] = 4] = "FirstUseEver"; + ImGuiCond[ImGuiCond["Appearing"] = 8] = "Appearing"; +})(ImGuiCond || (ImGuiCond = {})); +var ImDrawCornerFlags; +(function (ImDrawCornerFlags) { + ImDrawCornerFlags[ImDrawCornerFlags["TopLeft"] = 1] = "TopLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["TopRight"] = 2] = "TopRight"; + ImDrawCornerFlags[ImDrawCornerFlags["BotLeft"] = 4] = "BotLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["BotRight"] = 8] = "BotRight"; + ImDrawCornerFlags[ImDrawCornerFlags["Top"] = 3] = "Top"; + ImDrawCornerFlags[ImDrawCornerFlags["Bot"] = 12] = "Bot"; + ImDrawCornerFlags[ImDrawCornerFlags["Left"] = 5] = "Left"; + ImDrawCornerFlags[ImDrawCornerFlags["Right"] = 10] = "Right"; + ImDrawCornerFlags[ImDrawCornerFlags["All"] = 15] = "All"; +})(ImDrawCornerFlags || (ImDrawCornerFlags = {})); +var ImDrawListFlags; +(function (ImDrawListFlags) { + ImDrawListFlags[ImDrawListFlags["None"] = 0] = "None"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedLines"] = 1] = "AntiAliasedLines"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedFill"] = 2] = "AntiAliasedFill"; +})(ImDrawListFlags || (ImDrawListFlags = {})); +class ImVec2 { + constructor(x = 0.0, y = 0.0) { + this.x = x; + this.y = y; + } + Set(x, y) { + this.x = x; + this.y = y; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + return true; + } +} +ImVec2.ZERO = new ImVec2(0.0, 0.0); +ImVec2.UNIT = new ImVec2(1.0, 1.0); +ImVec2.UNIT_X = new ImVec2(1.0, 0.0); +ImVec2.UNIT_Y = new ImVec2(0.0, 1.0); +class ImVec4 { + constructor(x = 0.0, y = 0.0, z = 0.0, w = 1.0) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + } + Set(x, y, z, w) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + this.z = other.z; + this.w = other.w; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + if (this.z !== other.z) { + return false; + } + if (this.w !== other.w) { + return false; + } + return true; + } +} +ImVec4.ZERO = new ImVec4(0.0, 0.0, 0.0, 0.0); +ImVec4.UNIT = new ImVec4(1.0, 1.0, 1.0, 1.0); +ImVec4.UNIT_X = new ImVec4(1.0, 0.0, 0.0, 0.0); +ImVec4.UNIT_Y = new ImVec4(0.0, 1.0, 0.0, 0.0); +ImVec4.UNIT_Z = new ImVec4(0.0, 0.0, 1.0, 0.0); +ImVec4.UNIT_W = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.BLACK = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.WHITE = new ImVec4(1.0, 1.0, 1.0, 1.0); +//----------------------------------------------------------------------------- +// Helpers +//----------------------------------------------------------------------------- +// Lightweight std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug). +// Our implementation does NOT call C++ constructors/destructors. This is intentional and we do not require it. Do not use this class as a straight std::vector replacement in your code! +class ImVector extends Array { + constructor() { + super(...arguments); + this.Data = this; + // public: + // int Size; + // int Capacity; + // T* Data; + // typedef T value_type; + // typedef value_type* iterator; + // typedef const value_type* const_iterator; + // inline ImVector() { Size = Capacity = 0; Data = NULL; } + // inline ~ImVector() { if (Data) ImGui::MemFree(Data); } + // inline bool empty() const { return Size == 0; } + // inline int size() const { return Size; } + // inline int capacity() const { return Capacity; } + // inline value_type& operator[](int i) { IM_ASSERT(i < Size); return Data[i]; } + // inline const value_type& operator[](int i) const { IM_ASSERT(i < Size); return Data[i]; } + // inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } } + // inline iterator begin() { return Data; } + // inline const_iterator begin() const { return Data; } + // inline iterator end() { return Data + Size; } + // inline const_iterator end() const { return Data + Size; } + // inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; } + // inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; } + // inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; } + // inline int _grow_capacity(int size) const { int new_capacity = Capacity ? (Capacity + Capacity/2) : 8; return new_capacity > size ? new_capacity : size; } + // inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; } + // inline void resize(int new_size, const T& v){ if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) Data[n] = v; Size = new_size; } + // inline void reserve(int new_capacity) + // { + // if (new_capacity <= Capacity) + // return; + // T* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T)); + // if (Data) + // memcpy(new_data, Data, (size_t)Size * sizeof(T)); + // ImGui::MemFree(Data); + // Data = new_data; + // Capacity = new_capacity; + // } + // inline void push_back(const value_type& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); Data[Size++] = v; } + // inline void pop_back() { IM_ASSERT(Size > 0); Size--; } + // inline void push_front(const value_type& v) { if (Size == 0) push_back(v); else insert(Data, v); } + // inline iterator erase(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; } + // inline iterator erase(const_iterator it, const_iterator it_last){ IM_ASSERT(it >= Data && it < Data+Size && it_last > it && it_last <= Data+Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - count) * sizeof(value_type)); Size -= (int)count; return Data + off; } + // inline iterator erase_unsorted(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; if (it < Data+Size-1) memcpy(Data + off, Data + Size - 1, sizeof(value_type)); Size--; return Data + off; } + // inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= Data && it <= Data+Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; } + // inline bool contains(const value_type& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; } + } + get Size() { return this.length; } + empty() { return this.length === 0; } + clear() { this.length = 0; } + pop_back() { return this.pop(); } + push_back(value) { this.push(value); } +} +// Typically, 1 command = 1 GPU draw call (unless command is a callback) +// Pre 1.71 back-ends will typically ignore the VtxOffset/IdxOffset fields. When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset' +// is enabled, those fields allow us to render meshes larger than 64K vertices while keeping 16-bits indices. +class ImDrawCmd { + constructor(native) { + this.native = native; + // ImDrawCallback UserCallback; // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally. + this.UserCallback = null; // TODO + // void* UserCallbackData; // The draw callback code can access this. + this.UserCallbackData = null; // TODO + } + // unsigned int ElemCount; // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[]. + get ElemCount() { return this.native.ElemCount; } + // ImVec4 ClipRect; // Clipping rectangle (x1, y1, x2, y2) + get ClipRect() { return this.native.ClipRect; } + // ImTextureID TextureId; // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas. + get TextureId() { + return ImGuiContext.getTexture(this.native.TextureId); + } + // unsigned int VtxOffset; // Start offset in vertex buffer. Pre-1.71 or without ImGuiBackendFlags_RendererHasVtxOffset: always 0. With ImGuiBackendFlags_RendererHasVtxOffset: may be >0 to support meshes larger than 64K vertices with 16-bits indices. + get VtxOffset() { return this.native.VtxOffset; } + // unsigned int IdxOffset; // Start offset in index buffer. Always equal to sum of ElemCount drawn so far. + get IdxOffset() { return this.native.IdxOffset; } +} +// Vertex index +// (to allow large meshes with 16-bits indices: set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset in the renderer back-end) +// (to use 32-bits indices: override with '#define ImDrawIdx unsigned int' in imconfig.h) +// #ifndef ImDrawIdx +// typedef unsigned short ImDrawIdx; +// #endif +const ImDrawIdxSize = 2; // bind.ImDrawIdxSize; +// Vertex layout +// #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT +const ImDrawVertSize = 20; // bind.ImDrawVertSize; +const ImDrawVertPosOffset = 0; // bind.ImDrawVertPosOffset; +const ImDrawVertUVOffset = 8; // bind.ImDrawVertUVOffset; +const ImDrawVertColOffset = 16; // bind.ImDrawVertColOffset; +class ImDrawVert { + constructor(buffer, byteOffset = 0) { + this.pos = new Float32Array(buffer, byteOffset + bind.ImDrawVertPosOffset, 2); + this.uv = new Float32Array(buffer, byteOffset + bind.ImDrawVertUVOffset, 2); + this.col = new Uint32Array(buffer, byteOffset + bind.ImDrawVertColOffset, 1); + } +} +// Draw command list +// This is the low-level list of polygons that ImGui functions are filling. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering. +// Each ImGui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to access the current window draw list and draw custom primitives. +// You can interleave normal ImGui:: calls and adding primitives to the current draw list. +// All positions are generally in pixel coordinates (top-left at (0,0), bottom-right at io.DisplaySize), however you are totally free to apply whatever transformation matrix to want to the data (if you apply such transformation you'll want to apply it to ClipRect as well) +// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects. +class ImDrawList { + constructor(native) { + this.native = native; + } + IterateDrawCmds(callback) { + this.native.IterateDrawCmds((draw_cmd, ElemStart) => { + callback(new ImDrawCmd(draw_cmd), ElemStart); + }); + } + // This is what you have to render + // ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback. + // ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those + get IdxBuffer() { return this.native.IdxBuffer; } + // ImVector VtxBuffer; // Vertex buffer. + get VtxBuffer() { return this.native.VtxBuffer; } + // ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive. + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // [Internal, used while building lists] + // const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context) + // const char* _OwnerName; // Pointer to owner window's name for debugging + // unsigned int _VtxCurrentIdx; // [Internal] == VtxBuffer.Size + // ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImVector _ClipRectStack; // [Internal] + // ImVector _TextureIdStack; // [Internal] + // ImVector _Path; // [Internal] current path building + // int _ChannelsCurrent; // [Internal] current channel number (0) + // int _ChannelsCount; // [Internal] number of active channels (1+) + // ImVector _Channels; // [Internal] draw channels for columns API (not resized down so _ChannelsCount may be smaller than _Channels.Size) + // ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clear(); } + // ~ImDrawList() { ClearFreeMemory(); } + // IMGUI_API void PushClipRect(ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling) + PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect = false) { + this.native.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect); + } + // IMGUI_API void PushClipRectFullScreen(); + PushClipRectFullScreen() { this.native.PushClipRectFullScreen(); } + // IMGUI_API void PopClipRect(); + PopClipRect() { this.native.PopClipRect(); } + // IMGUI_API void PushTextureID(ImTextureID texture_id); + PushTextureID(texture_id) { + this.native.PushTextureID(ImGuiContext.setTexture(texture_id)); + } + // IMGUI_API void PopTextureID(); + PopTextureID() { this.native.PopTextureID(); } + // inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); } + GetClipRectMin(out = new ImVec2()) { + return this.native.GetClipRectMin(out); + } + // inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); } + GetClipRectMax(out = new ImVec2()) { + return this.native.GetClipRectMax(out); + } + // Primitives + // IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness = 1.0f); + AddLine(a, b, col, thickness = 1.0) { + this.native.AddLine(a, b, col, thickness); + } + // IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All, float thickness = 1.0f); // a: upper-left, b: lower-right, rounding_corners_flags: 4-bits corresponding to which corner to round + AddRect(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All, thickness = 1.0) { + this.native.AddRect(a, b, col, rounding, rounding_corners_flags, thickness); + } + // IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); // a: upper-left, b: lower-right + AddRectFilled(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { + this.native.AddRectFilled(a, b, col, rounding, rounding_corners_flags); + } + // IMGUI_API void AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left); + AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left) { + this.native.AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left); + } + // IMGUI_API void AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness = 1.0f); + AddQuad(a, b, c, d, col, thickness = 1.0) { + this.native.AddQuad(a, b, c, d, col, thickness); + } + // IMGUI_API void AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col); + AddQuadFilled(a, b, c, d, col) { + this.native.AddQuadFilled(a, b, c, d, col); + } + // IMGUI_API void AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness = 1.0f); + AddTriangle(a, b, c, col, thickness = 1.0) { + this.native.AddTriangle(a, b, c, col, thickness); + } + // IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col); + AddTriangleFilled(a, b, c, col) { + this.native.AddTriangleFilled(a, b, c, col); + } + // IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f); + AddCircle(centre, radius, col, num_segments = 12, thickness = 1.0) { + this.native.AddCircle(centre, radius, col, num_segments, thickness); + } + // IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12); + AddCircleFilled(centre, radius, col, num_segments = 12) { + this.native.AddCircleFilled(centre, radius, col, num_segments); + } + AddText(...args) { + if (args[0] instanceof ImFont) { + const font = args[0]; + const font_size = args[1]; + const pos = args[2]; + const col = args[3]; + const text_begin = args[4]; + const text_end = args[5] || null; + const wrap_width = args[6] = 0.0; + const cpu_fine_clip_rect = args[7] || null; + this.native.AddText_B(font.native, font_size, pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin, wrap_width, cpu_fine_clip_rect); + } + else { + const pos = args[0]; + const col = args[1]; + const text_begin = args[2]; + const text_end = args[3] || null; + this.native.AddText_A(pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin); + } + } + // IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,1), ImU32 col = 0xFFFFFFFF); + AddImage(user_texture_id, a, b, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT, col = 0xFFFFFFFF) { + this.native.AddImage(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col); + } + // IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,0), const ImVec2& uv_c = ImVec2(1,1), const ImVec2& uv_d = ImVec2(0,1), ImU32 col = 0xFFFFFFFF); + AddImageQuad(user_texture_id, a, b, c, d, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT_X, uv_c = ImVec2.UNIT, uv_d = ImVec2.UNIT_Y, col = 0xFFFFFFFF) { + this.native.AddImageQuad(ImGuiContext.setTexture(user_texture_id), a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); + } + // IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col, float rounding, int rounding_corners = ImDrawCornerFlags_All); + AddImageRounded(user_texture_id, a, b, uv_a, uv_b, col, rounding, rounding_corners = ImDrawCornerFlags.All) { + this.native.AddImageRounded(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col, rounding, rounding_corners); + } + // IMGUI_API void AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness); + AddPolyline(points, num_points, col, closed, thickness) { + this.native.AddPolyline(points, num_points, col, closed, thickness); + } + // IMGUI_API void AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col); + AddConvexPolyFilled(points, num_points, col) { + this.native.AddConvexPolyFilled(points, num_points, col); + } + // IMGUI_API void AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments = 0); + AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness = 1.0, num_segments = 0) { + this.native.AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments); + } + // Stateful path API, add points then finish with PathFill() or PathStroke() + // inline void PathClear() { _Path.resize(0); } + PathClear() { this.native.PathClear(); } + // inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); } + PathLineTo(pos) { this.native.PathLineTo(pos); } + // inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path[_Path.Size-1], &pos, 8) != 0) _Path.push_back(pos); } + PathLineToMergeDuplicate(pos) { this.native.PathLineToMergeDuplicate(pos); } + // inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); PathClear(); } + PathFillConvex(col) { this.native.PathFillConvex(col); } + // inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness); PathClear(); } + PathStroke(col, closed, thickness = 1.0) { this.native.PathStroke(col, closed, thickness); } + // IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_segments = 10); + PathArcTo(centre, radius, a_min, a_max, num_segments = 10) { this.native.PathArcTo(centre, radius, a_min, a_max, num_segments); } + // IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle + PathArcToFast(centre, radius, a_min_of_12, a_max_of_12) { this.native.PathArcToFast(centre, radius, a_min_of_12, a_max_of_12); } + // IMGUI_API void PathBezierCurveTo(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, int num_segments = 0); + PathBezierCurveTo(p1, p2, p3, num_segments = 0) { this.native.PathBezierCurveTo(p1, p2, p3, num_segments); } + // IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); + PathRect(rect_min, rect_max, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { this.native.PathRect(rect_min, rect_max, rounding, rounding_corners_flags); } + // Channels + // - Use to simulate layers. By switching channels to can render out-of-order (e.g. submit foreground primitives before background primitives) + // - Use to minimize draw calls (e.g. if going back-and-forth between multiple non-overlapping clipping rectangles, prefer to append into separate channels then merge at the end) + // IMGUI_API void ChannelsSplit(int channels_count); + ChannelsSplit(channels_count) { this.native.ChannelsSplit(channels_count); } + // IMGUI_API void ChannelsMerge(); + ChannelsMerge() { this.native.ChannelsMerge(); } + // IMGUI_API void ChannelsSetCurrent(int channel_index); + ChannelsSetCurrent(channel_index) { this.native.ChannelsSetCurrent(channel_index); } + // Advanced + // IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles. + AddCallback(callback, callback_data) { + const _callback = (parent_list, draw_cmd) => { + callback(new ImDrawList(parent_list), new ImDrawCmd(draw_cmd)); + }; + this.native.AddCallback(_callback, callback_data); + } + // IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible + AddDrawCmd() { this.native.AddDrawCmd(); } + // Internal helpers + // NB: all primitives needs to be reserved via PrimReserve() beforehand! + // IMGUI_API void Clear(); + Clear() { this.native.Clear(); } + // IMGUI_API void ClearFreeMemory(); + ClearFreeMemory() { this.native.ClearFreeMemory(); } + // IMGUI_API void PrimReserve(int idx_count, int vtx_count); + PrimReserve(idx_count, vtx_count) { this.native.PrimReserve(idx_count, vtx_count); } + // IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles) + PrimRect(a, b, col) { this.native.PrimRect(a, b, col); } + // IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col); + PrimRectUV(a, b, uv_a, uv_b, col) { this.native.PrimRectUV(a, b, uv_a, uv_b, col); } + // IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col); + PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col) { this.native.PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); } + // inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; } + PrimWriteVtx(pos, uv, col) { this.native.PrimWriteVtx(pos, uv, col); } + // inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; } + PrimWriteIdx(idx) { this.native.PrimWriteIdx(idx); } + // inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); } + PrimVtx(pos, uv, col) { this.native.PrimVtx(pos, uv, col); } + // IMGUI_API void UpdateClipRect(); + UpdateClipRect() { this.native.UpdateClipRect(); } + // IMGUI_API void UpdateTextureID(); + UpdateTextureID() { this.native.UpdateTextureID(); } +} +// All draw data to render an ImGui frame +class ImDrawData { + constructor(native) { + this.native = native; + } + IterateDrawLists(callback) { + this.native.IterateDrawLists((draw_list) => { + callback(new ImDrawList(draw_list)); + }); + } + // bool Valid; // Only valid after Render() is called and before the next NewFrame() is called. + get Valid() { return this.native.Valid; } + // ImDrawList** CmdLists; + // int CmdListsCount; + get CmdListsCount() { return this.native.CmdListsCount; } + // int TotalIdxCount; // For convenience, sum of all cmd_lists idx_buffer.Size + get TotalIdxCount() { return this.native.TotalIdxCount; } + // int TotalVtxCount; // For convenience, sum of all cmd_lists vtx_buffer.Size + get TotalVtxCount() { return this.native.TotalVtxCount; } + // ImVec2 DisplayPos; // Upper-left position of the viewport to render (== upper-left of the orthogonal projection matrix to use) + get DisplayPos() { return this.native.DisplayPos; } + // ImVec2 DisplaySize; // Size of the viewport to render (== io.DisplaySize for the main viewport) (DisplayPos + DisplaySize == lower-right of the orthogonal projection matrix to use) + get DisplaySize() { return this.native.DisplaySize; } + // ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display. + get FramebufferScale() { return this.native.FramebufferScale; } + // Functions + // ImDrawData() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCount = 0; } + // IMGUI_API void DeIndexAllBuffers(); // For backward compatibility or convenience: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering! + DeIndexAllBuffers() { this.native.DeIndexAllBuffers(); } + // IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than ImGui expects, or if there is a difference between your window resolution and framebuffer resolution. + ScaleClipRects(fb_scale) { + this.native.ScaleClipRects(fb_scale); + } +} +class script_ImFontConfig { + constructor() { + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + this.FontData = null; + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + this.FontDataOwnedByAtlas = true; + // int FontNo; // 0 // Index of font within TTF/OTF file + this.FontNo = 0; + // float SizePixels; // // Size in pixels for rasterizer. + this.SizePixels = 0; + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + this.OversampleH = 3; + this.OversampleV = 1; + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + this.PixelSnapH = false; + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + this.GlyphExtraSpacing = new ImVec2(0, 0); + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + this.GlyphOffset = new ImVec2(0, 0); + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + this.GlyphRanges = null; + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + this.GlyphMinAdvanceX = 0; + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + this.GlyphMaxAdvanceX = Number.MAX_VALUE; + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + this.MergeMode = false; + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + this.RasterizerFlags = 0; + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + this.RasterizerMultiply = 1.0; + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + this.Name = ""; + // ImFont* DstFont; + this.DstFont = null; + // IMGUI_API ImFontConfig(); + } +} +class ImFontConfig { + constructor(internal = new script_ImFontConfig()) { + this.internal = internal; + } + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + get FontData() { return this.internal.FontData; } + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + get FontDataOwnedByAtlas() { return this.internal.FontDataOwnedByAtlas; } + // int FontNo; // 0 // Index of font within TTF/OTF file + get FontNo() { return this.internal.FontNo; } + // float SizePixels; // // Size in pixels for rasterizer. + get SizePixels() { return this.internal.SizePixels; } + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + get OversampleH() { return this.internal.OversampleH; } + get OversampleV() { return this.internal.OversampleV; } + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + get PixelSnapH() { return this.internal.PixelSnapH; } + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + get GlyphExtraSpacing() { return this.internal.GlyphExtraSpacing; } + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + get GlyphOffset() { return this.internal.GlyphOffset; } + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + get GlyphRanges() { return this.internal.GlyphRanges; } + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + get GlyphMinAdvanceX() { return this.internal.GlyphMinAdvanceX; } + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + get GlyphMaxAdvanceX() { return this.internal.GlyphMaxAdvanceX; } + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + get MergeMode() { return this.internal.MergeMode; } + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + get RasterizerFlags() { return this.internal.RasterizerFlags; } + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + get RasterizerMultiply() { return this.internal.RasterizerMultiply; } + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + get Name() { return this.internal.Name; } + set Name(value) { this.internal.Name = value; } + // ImFont* DstFont; + get DstFont() { + const font = this.internal.DstFont; + return font && new ImFont(font); + } +} +// struct ImFontGlyph +class script_ImFontGlyph { + constructor() { + // ImWchar Codepoint; // 0x0000..0xFFFF + this.Codepoint = 0; + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + this.AdvanceX = 0.0; + // float X0, Y0, X1, Y1; // Glyph corners + this.X0 = 0.0; + this.Y0 = 0.0; + this.X1 = 1.0; + this.Y1 = 1.0; + // float U0, V0, U1, V1; // Texture coordinates + this.U0 = 0.0; + this.V0 = 0.0; + this.U1 = 1.0; + this.V1 = 1.0; + } +} +class ImFontGlyph { + constructor(internal = new script_ImFontGlyph()) { + this.internal = internal; + } + // ImWchar Codepoint; // 0x0000..0xFFFF + get Codepoint() { return this.internal.Codepoint; } + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + get AdvanceX() { return this.internal.AdvanceX; } + ; + // float X0, Y0, X1, Y1; // Glyph corners + get X0() { return this.internal.X0; } + ; + get Y0() { return this.internal.Y0; } + ; + get X1() { return this.internal.X1; } + ; + get Y1() { return this.internal.Y1; } + ; + // float U0, V0, U1, V1; // Texture coordinates + get U0() { return this.internal.U0; } + ; + get V0() { return this.internal.V0; } + ; + get U1() { return this.internal.U1; } + ; + get V1() { return this.internal.V1; } + ; +} +var ImFontAtlasFlags; +(function (ImFontAtlasFlags) { + ImFontAtlasFlags[ImFontAtlasFlags["None"] = 0] = "None"; + ImFontAtlasFlags[ImFontAtlasFlags["NoPowerOfTwoHeight"] = 1] = "NoPowerOfTwoHeight"; + ImFontAtlasFlags[ImFontAtlasFlags["NoMouseCursors"] = 2] = "NoMouseCursors"; +})(ImFontAtlasFlags || (ImFontAtlasFlags = {})); +// Load and rasterize multiple TTF/OTF fonts into a same texture. +// Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering. +// We also add custom graphic data into the texture that serves for ImGui. +// 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you. +// 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data. +// 3. Upload the pixels data into a texture within your graphics system. +// 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture. +// IMPORTANT: If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the ImFont is build (when calling GetTextData*** or Build()). We only copy the pointer, not the data. +class ImFontAtlas { + constructor(native) { + this.native = native; + } + // IMGUI_API ImFontAtlas(); + // IMGUI_API ~ImFontAtlas(); + // IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg); + // IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL); + AddFontDefault(font_cfg = null) { + return new ImFont(this.native.AddFontDefault(font_cfg)); + } + // IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); + // IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after Build(). Set font_cfg->FontDataOwnedByAtlas to false to keep ownership. + AddFontFromMemoryTTF(data, size_pixels, font_cfg = null, glyph_ranges = null) { + return new ImFont(this.native.AddFontFromMemoryTTF(new Uint8Array(data), size_pixels, font_cfg && font_cfg.internal, glyph_ranges)); + } + // IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp. + // IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter. + // IMGUI_API void ClearTexData(); // Clear the CPU-side texture data. Saves RAM once the texture has been copied to graphics memory. + ClearTexData() { this.native.ClearTexData(); } + // IMGUI_API void ClearInputData(); // Clear the input TTF data (inc sizes, glyph ranges) + ClearInputData() { this.native.ClearInputData(); } + // IMGUI_API void ClearFonts(); // Clear the ImGui-side font data (glyphs storage, UV coordinates) + ClearFonts() { this.native.ClearFonts(); } + // IMGUI_API void Clear(); // Clear all + Clear() { this.native.Clear(); } + // Build atlas, retrieve pixel data. + // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID(). + // RGBA32 format is provided for convenience and compatibility, but note that unless you use CustomRect to draw color data, the RGB pixels emitted from Fonts will all be white (~75% of waste). + // Pitch = Width * BytesPerPixels + // IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions. + Build() { return this.native.Build(); } + // IMGUI_API bool IsBuilt() { return Fonts.Size > 0 && (TexPixelsAlpha8 != NULL || TexPixelsRGBA32 != NULL); } + IsBuilt() { return this.native.IsBuilt(); } + // IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel + GetTexDataAsAlpha8() { + return this.native.GetTexDataAsAlpha8(); + } + // IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel + GetTexDataAsRGBA32() { + return this.native.GetTexDataAsRGBA32(); + } + // void SetTexID(ImTextureID id) { TexID = id; } + SetTexID(id) { this.TexID = id; } + //------------------------------------------- + // Glyph Ranges + //------------------------------------------- + // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list) + // NB: Make sure that your string are UTF-8 and NOT in your local code page. In C++11, you can create UTF-8 string literal using the u8"Hello world" syntax. See FAQ for details. + // IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin + GetGlyphRangesDefault() { return this.native.GetGlyphRangesDefault(); } + // IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters + GetGlyphRangesKorean() { return this.native.GetGlyphRangesKorean(); } + // IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs + GetGlyphRangesJapanese() { return this.native.GetGlyphRangesJapanese(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs + GetGlyphRangesChineseFull() { return this.native.GetGlyphRangesChineseFull(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese + GetGlyphRangesChineseSimplifiedCommon() { return this.native.GetGlyphRangesChineseSimplifiedCommon(); } + // IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters + GetGlyphRangesCyrillic() { return this.native.GetGlyphRangesCyrillic(); } + // IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters + GetGlyphRangesThai() { return this.native.GetGlyphRangesThai(); } + // IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters + GetGlyphRangesVietnamese() { return this.native.GetGlyphRangesVietnamese(); } + // Helpers to build glyph ranges from text data. Feed your application strings/characters to it then call BuildRanges(). + // struct GlyphRangesBuilder + // { + // ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used) + // GlyphRangesBuilder() { UsedChars.resize(0x10000 / 8); memset(UsedChars.Data, 0, 0x10000 / 8); } + // bool GetBit(int n) const { return (UsedChars[n >> 3] & (1 << (n & 7))) != 0; } + // void SetBit(int n) { UsedChars[n >> 3] |= 1 << (n & 7); } // Set bit 'c' in the array + // void AddChar(ImWchar c) { SetBit(c); } // Add character + // IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added) + // IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault) to force add all of ASCII/Latin+Ext + // IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges + // }; + //------------------------------------------- + // Custom Rectangles/Glyphs API + //------------------------------------------- + // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. After calling Build(), you can query the rectangle position and render your pixels. + // You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs. + // struct CustomRect + // { + // unsigned int ID; // Input // User ID. Use <0x10000 to map into a font glyph, >=0x10000 for other/internal/custom texture data. + // unsigned short Width, Height; // Input // Desired rectangle dimension + // unsigned short X, Y; // Output // Packed position in Atlas + // float GlyphAdvanceX; // Input // For custom font glyphs only (ID<0x10000): glyph xadvance + // ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph display offset + // ImFont* Font; // Input // For custom font glyphs only (ID<0x10000): target font + // CustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); Font = NULL; } + // bool IsPacked() const { return X != 0xFFFF; } + // }; + // IMGUI_API int AddCustomRectRegular(unsigned int id, int width, int height); // Id needs to be >= 0x10000. Id >= 0x80000000 are reserved for ImGui and ImDrawList + // IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0,0)); // Id needs to be < 0x10000 to register a rectangle to map into a specific font. + // IMGUI_API void CalcCustomRectUV(const CustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max); + // const CustomRect* GetCustomRectByIndex(int index) const { if (index < 0) return NULL; return &CustomRects[index]; } + //------------------------------------------- + // Members + //------------------------------------------- + // bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert. + get Locked() { return this.native.Locked; } + set Locked(value) { this.native.Locked = value; } + // ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_) + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure. + get TexID() { + return ImGuiContext.getTexture(this.native.TexID); + } + set TexID(value) { + this.native.TexID = ImGuiContext.setTexture(value); + } + // int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height. + get TexDesiredWidth() { return this.native.TexDesiredWidth; } + set TexDesiredWidth(value) { this.native.TexDesiredWidth = value; } + // int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1. + get TexGlyphPadding() { return this.native.TexGlyphPadding; } + set TexGlyphPadding(value) { this.native.TexGlyphPadding = value; } + // [Internal] + // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you. + // unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight + // unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4 + // int TexWidth; // Texture width calculated during Build(). + get TexWidth() { return this.native.TexWidth; } + // int TexHeight; // Texture height calculated during Build(). + get TexHeight() { return this.native.TexHeight; } + // ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight) + get TexUvScale() { return this.native.TexUvScale; } + // ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel + get TexUvWhitePixel() { return this.native.TexUvWhitePixel; } + // ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font. + get Fonts() { + const fonts = new ImVector(); + this.native.IterateFonts((font) => { + fonts.push(new ImFont(font)); + }); + return fonts; + } +} +// Font runtime data and rendering +// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32(). +class ImFont { + constructor(native) { + this.native = native; + } + // Members: Hot ~62/78 bytes + // float FontSize; // // Height of characters, set during loading (don't change after loading) + get FontSize() { return this.native.FontSize; } + // float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale() + get Scale() { return this.native.Scale; } + set Scale(value) { this.native.Scale = value; } + // ImVec2 DisplayOffset; // = (0.f,1.f) // Offset font rendering by xx pixels + get DisplayOffset() { return this.native.DisplayOffset; } + // ImVector Glyphs; // // All glyphs. + get Glyphs() { + const glyphs = new ImVector(); + this.native.IterateGlyphs((glyph) => { + glyphs.push(new ImFontGlyph(glyph)); // TODO: wrap native + }); + return glyphs; + } + // ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI). + // get IndexAdvanceX(): any { return this.native.IndexAdvanceX; } + // ImVector IndexLookup; // // Sparse. Index glyphs by Unicode code-point. + // get IndexLookup(): any { return this.native.IndexLookup; } + // const ImFontGlyph* FallbackGlyph; // == FindGlyph(FontFallbackChar) + get FallbackGlyph() { + const glyph = this.native.FallbackGlyph; + return glyph && new ImFontGlyph(glyph); + } + set FallbackGlyph(value) { + this.native.FallbackGlyph = value && value.internal; + } + // float FallbackAdvanceX; // == FallbackGlyph->AdvanceX + get FallbackAdvanceX() { return this.native.FallbackAdvanceX; } + // ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found. Only set via SetFallbackChar() + get FallbackChar() { return this.native.FallbackChar; } + // Members: Cold ~18/26 bytes + // short ConfigDataCount; // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont. + get ConfigDataCount() { return this.ConfigData.length; } + // ImFontConfig* ConfigData; // // Pointer within ContainerAtlas->ConfigData + get ConfigData() { + const cfg_data = []; + this.native.IterateConfigData((cfg) => { + cfg_data.push(new ImFontConfig(cfg)); + }); + return cfg_data; + } + // ImFontAtlas* ContainerAtlas; // // What we has been loaded into + get ContainerAtlas() { return null; } + // float Ascent, Descent; // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize] + get Ascent() { return this.native.Ascent; } + get Descent() { return this.native.Descent; } + // int MetricsTotalSurface;// // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs) + get MetricsTotalSurface() { return this.native.MetricsTotalSurface; } + // Methods + // IMGUI_API ImFont(); + // IMGUI_API ~ImFont(); + // IMGUI_API void ClearOutputData(); + ClearOutputData() { return this.native.ClearOutputData(); } + // IMGUI_API void BuildLookupTable(); + BuildLookupTable() { return this.native.BuildLookupTable(); } + // IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const; + FindGlyph(c) { + const glyph = this.native.FindGlyph(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const; + FindGlyphNoFallback(c) { + const glyph = this.native.FindGlyphNoFallback(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API void SetFallbackChar(ImWchar c); + SetFallbackChar(c) { return this.native.SetFallbackChar(c); } + // float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; } + GetCharAdvance(c) { return this.native.GetCharAdvance(c); } + // bool IsLoaded() const { return ContainerAtlas != NULL; } + IsLoaded() { return this.native.IsLoaded(); } + // const char* GetDebugName() const { return ConfigData ? ConfigData->Name : ""; } + GetDebugName() { return this.native.GetDebugName(); } + // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable. + // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable. + // IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8 + CalcTextSizeA(size, max_width, wrap_width, text_begin, text_end = null, remaining = null) { + return this.native.CalcTextSizeA(size, max_width, wrap_width, text_end !== null ? text_begin.substring(0, text_end) : text_begin, remaining, new ImVec2()); + } + // IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const; + CalcWordWrapPositionA(scale, text, text_end = null, wrap_width) { + return this.native.CalcWordWrapPositionA(scale, text_end !== null ? text.substring(0, text_end) : text, wrap_width); + } + // IMGUI_API void RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, unsigned short c) const; + RenderChar(draw_list, size, pos, col, c) { + this.native.RenderChar(draw_list.native, size, pos, col, c); + } + // IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const; + RenderText(draw_list, size, pos, col, clip_rect, text_begin, text_end = null, wrap_width = 0.0, cpu_fine_clip = false) { } +} +// This is where your app communicate with Dear ImGui. Access via ImGui::GetIO(). +// Read 'Programmer guide' section in .cpp file for general usage. +class ImGuiIO { + constructor(native) { + this.native = native; + // int KeyMap[ImGuiKey_COUNT]; // // Map of indices into the KeysDown[512] entries array + this.KeyMap = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiKey.COUNT; + } + return this.native._getAt_KeyMap(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeyMap(Number(key), value); + }, + }); + // bool MouseDown[5]; // Mouse buttons: left, right, middle + extras. ImGui itself mostly only uses left button (BeginPopupContext** are using right button). Others buttons allows us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API. + this.MouseDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_MouseDown(Number(key), value); + }, + }); + // bool KeysDown[512]; // Keyboard keys that are pressed (in whatever storage order you naturally have access to keyboard data) + this.KeysDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeysDown(Number(key), value); + }, + }); + // float NavInputs[ImGuiNavInput_COUNT]; // Gamepad inputs (keyboard keys will be auto-mapped and be written here by ImGui::NewFrame) + this.NavInputs = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputs(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_NavInputs(Number(key), value); + }, + }); + //------------------------------------------------------------------ + // [Internal] ImGui will maintain those fields. Forward compatibility not guaranteed! + //------------------------------------------------------------------ + // ImVec2 MousePosPrev; // Previous mouse position temporary storage (nb: not for public use, set to MousePos in NewFrame()) + // ImVec2 MouseClickedPos[5]; // Position at time of clicking + this.MouseClickedPos = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseClickedPos(Number(key)); + }, + }); + // float MouseClickedTime[5]; // Time of last click (used to figure out double-click) + // bool MouseClicked[5]; // Mouse button went from !Down to Down + // bool MouseDoubleClicked[5]; // Has mouse button been double-clicked? + // bool MouseReleased[5]; // Mouse button went from Down to !Down + // bool MouseDownOwned[5]; // Track if button was clicked inside a window. We don't request mouse capture from the application if click started outside ImGui bounds. + // float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked) + this.MouseDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDownDuration(Number(key)); + }, + }); + // float MouseDownDurationPrev[5]; // Previous time the mouse button has been down + // ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point + // float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point + // float KeysDownDuration[512]; // Duration the keyboard key has been down (0.0f == just pressed) + this.KeysDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDownDuration(Number(key)); + }, + }); + // float KeysDownDurationPrev[512]; // Previous duration the key has been down + // float NavInputsDownDuration[ImGuiNavInput_COUNT]; + this.NavInputsDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputsDownDuration(Number(key)); + }, + }); + } + //------------------------------------------------------------------ + // Settings (fill once) // Default value: + //------------------------------------------------------------------ + // ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc. + get ConfigFlags() { return this.native.ConfigFlags; } + set ConfigFlags(value) { this.native.ConfigFlags = value; } + // ImGuiBackendFlags BackendFlags; // = 0 // Set ImGuiBackendFlags_ enum. Set by imgui_impl_xxx files or custom back-end to communicate features supported by the back-end. + get BackendFlags() { return this.native.BackendFlags; } + set BackendFlags(value) { this.native.BackendFlags = value; } + // ImVec2 DisplaySize; // // Display size, in pixels. For clamping windows positions. + get DisplaySize() { return this.native.DisplaySize; } + // float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds. + get DeltaTime() { return this.native.DeltaTime; } + set DeltaTime(value) { this.native.DeltaTime = value; } + // float IniSavingRate; // = 5.0f // Maximum time between saving positions/sizes to .ini file, in seconds. + get IniSavingRate() { return this.native.IniSavingRate; } + set IniSavingRate(value) { this.native.IniSavingRate = value; } + // const char* IniFilename; // = "imgui.ini" // Path to .ini file. NULL to disable .ini saving. + get IniFilename() { return this.native.IniFilename; } + set IniFilename(value) { this.native.IniFilename = value; } + // const char* LogFilename; // = "imgui_log.txt" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified). + get LogFilename() { return this.native.LogFilename; } + set LogFilename(value) { this.native.LogFilename = value; } + // float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds. + get MouseDoubleClickTime() { return this.native.MouseDoubleClickTime; } + set MouseDoubleClickTime(value) { this.native.MouseDoubleClickTime = value; } + // float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels. + get MouseDoubleClickMaxDist() { return this.native.MouseDoubleClickMaxDist; } + set MouseDoubleClickMaxDist(value) { this.native.MouseDoubleClickMaxDist = value; } + // float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging + get MouseDragThreshold() { return this.native.MouseDragThreshold; } + set MouseDragThreshold(value) { this.native.MouseDragThreshold = value; } + // float KeyRepeatDelay; // = 0.250f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.). + get KeyRepeatDelay() { return this.native.KeyRepeatDelay; } + set KeyRepeatDelay(value) { this.native.KeyRepeatDelay = value; } + // float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds. + get KeyRepeatRate() { return this.native.KeyRepeatRate; } + set KeyRepeatRate(value) { this.native.KeyRepeatRate = value; } + // void* UserData; // = NULL // Store your own data for retrieval by callbacks. + get UserData() { return this.native.UserData; } + set UserData(value) { this.native.UserData = value; } + // ImFontAtlas* Fonts; // // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array. + get Fonts() { return new ImFontAtlas(this.native.Fonts); } + // float FontGlobalScale; // = 1.0f // Global scale all fonts + get FontGlobalScale() { return this.native.FontGlobalScale; } + set FontGlobalScale(value) { this.native.FontGlobalScale = value; } + // bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel. + get FontAllowUserScaling() { return this.native.FontAllowUserScaling; } + set FontAllowUserScaling(value) { this.native.FontAllowUserScaling = value; } + // ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0]. + get FontDefault() { + const font = this.native.FontDefault; + return (font === null) ? null : new ImFont(font); + } + set FontDefault(value) { + this.native.FontDefault = value && value.native; + } + // ImVec2 DisplayFramebufferScale; // = (1.0f,1.0f) // For retina display or other situations where window coordinates are different from framebuffer coordinates. User storage only, presently not used by ImGui. + get DisplayFramebufferScale() { return this.native.DisplayFramebufferScale; } + // Miscellaneous configuration options + // bool OptMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl + get ConfigMacOSXBehaviors() { return this.native.ConfigMacOSXBehaviors; } + set ConfigMacOSXBehaviors(value) { this.native.ConfigMacOSXBehaviors = value; } + // bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor, for users who consider it annoying. + get ConfigInputTextCursorBlink() { return this.native.ConfigInputTextCursorBlink; } + set ConfigInputTextCursorBlink(value) { this.native.ConfigInputTextCursorBlink = value; } + // bool ConfigWindowsResizeFromEdges; // = false // [BETA] Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be the ImGuiWindowFlags_ResizeFromAnySide flag) + get ConfigWindowsResizeFromEdges() { return this.native.ConfigWindowsResizeFromEdges; } + set ConfigWindowsResizeFromEdges(value) { this.native.ConfigWindowsResizeFromEdges = value; } + // bool ConfigWindowsMoveFromTitleBarOnly;// = false // [BETA] Set to true to only allow moving windows when clicked+dragged from the title bar. Windows without a title bar are not affected. + get ConfigWindowsMoveFromTitleBarOnly() { return this.native.ConfigWindowsMoveFromTitleBarOnly; } + set ConfigWindowsMoveFromTitleBarOnly(value) { this.native.ConfigWindowsMoveFromTitleBarOnly = value; } + //------------------------------------------------------------------ + // Settings (User Functions) + //------------------------------------------------------------------ + // Optional: Platform/Renderer back-end name (informational only! will be displayed in About Window) + User data for back-end/wrappers to store their own stuff. + // const char* BackendPlatformName; // = NULL + get BackendPlatformName() { return this.native.BackendPlatformName; } + set BackendPlatformName(value) { this.native.BackendPlatformName = value; } + // const char* BackendRendererName; // = NULL + get BackendRendererName() { return this.native.BackendRendererName; } + set BackendRendererName(value) { this.native.BackendRendererName = value; } + // void* BackendPlatformUserData; // = NULL + get BackendPlatformUserData() { return this.native.BackendPlatformUserData; } + set BackendPlatformUserData(value) { this.native.BackendPlatformUserData = value; } + // void* BackendRendererUserData; // = NULL + get BackendRendererUserData() { return this.native.BackendRendererUserData; } + set BackendRendererUserData(value) { this.native.BackendRendererUserData = value; } + // void* BackendLanguageUserData; // = NULL + get BackendLanguageUserData() { return this.native.BackendLanguageUserData; } + set BackendLanguageUserData(value) { this.native.BackendLanguageUserData = value; } + // Optional: access OS clipboard + // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures) + // const char* (*GetClipboardTextFn)(void* user_data); + get GetClipboardTextFn() { return this.native.GetClipboardTextFn; } + set GetClipboardTextFn(value) { this.native.GetClipboardTextFn = value; } + // void (*SetClipboardTextFn)(void* user_data, const char* text); + get SetClipboardTextFn() { return this.native.SetClipboardTextFn; } + set SetClipboardTextFn(value) { this.native.SetClipboardTextFn = value; } + // void* ClipboardUserData; + get ClipboardUserData() { return this.native.ClipboardUserData; } + set ClipboardUserData(value) { this.native.ClipboardUserData = value; } + // Optional: override memory allocations. MemFreeFn() may be called with a NULL pointer. + // (default to posix malloc/free) + // void* (*MemAllocFn)(size_t sz); + // void (*MemFreeFn)(void* ptr); + // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME in Windows) + // (default to use native imm32 api on Windows) + // void (*ImeSetInputScreenPosFn)(int x, int y); + // void* ImeWindowHandle; // (Windows) Set this to your HWND to get automatic IME cursor positioning. + //------------------------------------------------------------------ + // Input - Fill before calling NewFrame() + //------------------------------------------------------------------ + // ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX,-FLT_MAX) if mouse is unavailable (on another screen, etc.) + get MousePos() { return this.native.MousePos; } + // float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text. + get MouseWheel() { return this.native.MouseWheel; } + set MouseWheel(value) { this.native.MouseWheel = value; } + // float MouseWheelH; // Mouse wheel (Horizontal). Most users don't have a mouse with an horizontal wheel, may not be filled by all back-ends. + get MouseWheelH() { return this.native.MouseWheelH; } + set MouseWheelH(value) { this.native.MouseWheelH = value; } + // bool MouseDrawCursor; // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor). + get MouseDrawCursor() { return this.native.MouseDrawCursor; } + set MouseDrawCursor(value) { this.native.MouseDrawCursor = value; } + // bool KeyCtrl; // Keyboard modifier pressed: Control + get KeyCtrl() { return this.native.KeyCtrl; } + set KeyCtrl(value) { this.native.KeyCtrl = value; } + // bool KeyShift; // Keyboard modifier pressed: Shift + get KeyShift() { return this.native.KeyShift; } + set KeyShift(value) { this.native.KeyShift = value; } + // bool KeyAlt; // Keyboard modifier pressed: Alt + get KeyAlt() { return this.native.KeyAlt; } + set KeyAlt(value) { this.native.KeyAlt = value; } + // bool KeySuper; // Keyboard modifier pressed: Cmd/Super/Windows + get KeySuper() { return this.native.KeySuper; } + set KeySuper(value) { this.native.KeySuper = value; } + // Functions + // IMGUI_API void AddInputCharacter(ImWchar c); // Add new character into InputCharacters[] + AddInputCharacter(c) { this.native.AddInputCharacter(c); } + // IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Add new characters into InputCharacters[] from an UTF-8 string + AddInputCharactersUTF8(utf8_chars) { this.native.AddInputCharactersUTF8(utf8_chars); } + // inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Clear the text input buffer manually + ClearInputCharacters() { this.native.ClearInputCharacters(); } + //------------------------------------------------------------------ + // Output - Retrieve after calling NewFrame() + //------------------------------------------------------------------ + // bool WantCaptureMouse; // When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. This is set by ImGui when it wants to use your mouse (e.g. unclicked mouse is hovering a window, or a widget is active). + get WantCaptureMouse() { return this.native.WantCaptureMouse; } + set WantCaptureMouse(value) { this.native.WantCaptureMouse = value; } + // bool WantCaptureKeyboard; // When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. This is set by ImGui when it wants to use your keyboard inputs. + get WantCaptureKeyboard() { return this.native.WantCaptureKeyboard; } + set WantCaptureKeyboard(value) { this.native.WantCaptureKeyboard = value; } + // bool WantTextInput; // Mobile/console: when io.WantTextInput is true, you may display an on-screen keyboard. This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active). + get WantTextInput() { return this.native.WantTextInput; } + set WantTextInput(value) { this.native.WantTextInput = value; } + // bool WantSetMousePos; // [BETA-NAV] MousePos has been altered, back-end should reposition mouse on next frame. Set only when 'NavMovesMouse=true'. + get WantSetMousePos() { return this.native.WantSetMousePos; } + set WantSetMousePos(value) { this.native.WantSetMousePos = value; } + // bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. IMPORTANT: You need to clear io.WantSaveIniSettings yourself. + get WantSaveIniSettings() { return this.native.WantSaveIniSettings; } + set WantSaveIniSettings(value) { this.native.WantSaveIniSettings = value; } + // bool NavActive; // Directional navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag. + get NavActive() { return this.native.NavActive; } + set NavActive(value) { this.native.NavActive = value; } + // bool NavVisible; // Directional navigation is visible and allowed (will handle ImGuiKey_NavXXX events). + get NavVisible() { return this.native.NavVisible; } + set NavVisible(value) { this.native.NavVisible = value; } + // float Framerate; // Application framerate estimation, in frame per second. Solely for convenience. Rolling average estimation based on IO.DeltaTime over 120 frames + get Framerate() { return this.native.Framerate; } + // int MetricsRenderVertices; // Vertices output during last call to Render() + get MetricsRenderVertices() { return this.native.MetricsRenderVertices; } + // int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3 + get MetricsRenderIndices() { return this.native.MetricsRenderIndices; } + // int MetricsRenderWindows; // Number of visible windows + get MetricsRenderWindows() { return this.native.MetricsRenderWindows; } + // int MetricsActiveWindows; // Number of visible root windows (exclude child windows) + get MetricsActiveWindows() { return this.native.MetricsActiveWindows; } + // int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts. + get MetricsActiveAllocations() { return this.native.MetricsActiveAllocations; } + // ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta. + get MouseDelta() { return this.native.MouseDelta; } +} +const _texturesById = []; +// Context creation and access, if you want to use multiple context, share context between modules (e.g. DLL). +// All contexts share a same ImFontAtlas by default. If you want different font atlas, you can new() them and overwrite the GetIO().Fonts variable of an ImGui context. +// All those functions are not reliant on the current context. +class ImGuiContext { + constructor(native) { + this.native = native; + } + static getTexture(index) { + return _texturesById[index] || null; + } + static setTexture(texture) { + let index = _texturesById.indexOf(texture); + if (index === -1) { + for (let i = 0; i < _texturesById.length; ++i) { + if (_texturesById[i] === null) { + _texturesById[i] = texture; + return i; + } + } + index = _texturesById.length; + _texturesById.push(texture); + } + return index; + } +} +ImGuiContext.current_ctx = null; +// IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL); +function CreateContext(shared_font_atlas = null) { + const ctx = new ImGuiContext(bind.CreateContext(shared_font_atlas ? shared_font_atlas.native : null)); + if (ImGuiContext.current_ctx === null) { + ImGuiContext.current_ctx = ctx; + } + return ctx; +} +// IMGUI_API void SetCurrentContext(ImGuiContext* ctx); +function SetCurrentContext(ctx) { + bind.SetCurrentContext((ctx === null) ? null : ctx.native); + ImGuiContext.current_ctx = ctx; +} +// IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert); +function DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx) { + return bind.DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx); +} +// Main +// IMGUI_API ImGuiIO& GetIO(); +function GetIO() { return new ImGuiIO(bind.GetIO()); } +// IMGUI_API void NewFrame(); // start a new ImGui frame, you can submit any command from this point until Render()/EndFrame(). +function NewFrame() { bind.NewFrame(); } +// IMGUI_API void EndFrame(); // ends the ImGui frame. automatically called by Render(), so most likely don't need to ever call that yourself directly. If you don't need to render you may call EndFrame() but you'll have wasted CPU already. If you don't need to render, better to not create any imgui windows instead! +function EndFrame() { bind.EndFrame(); } +// IMGUI_API void Render(); // ends the ImGui frame, finalize the draw data, then call your io.RenderDrawListsFn() function if set. +function Render() { bind.Render(); } +// IMGUI_API ImDrawData* GetDrawData(); // same value as passed to your io.RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame() +function GetDrawData() { + const draw_data = bind.GetDrawData(); + return (draw_data === null) ? null : new ImDrawData(draw_data); +} +// IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you +function GetMouseCursor() { return bind.GetMouseCursor(); } +// IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source. +function LoadIniSettingsFromMemory(ini_data, ini_size = 0) { bind.LoadIniSettingsFromMemory(ini_data); } +// IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings. +function SaveIniSettingsToMemory(out_ini_size = null) { return bind.SaveIniSettingsToMemory(); } + +var promise = createCommonjsModule(function (module, exports) { +(function(global){ + +// +// Check for native Promise and it has correct interface +// + +var NativePromise = global['Promise']; +var nativePromiseSupported = + NativePromise && + // Some of these methods are missing from + // Firefox/Chrome experimental implementations + 'resolve' in NativePromise && + 'reject' in NativePromise && + 'all' in NativePromise && + 'race' in NativePromise && + // Older version of the spec had a resolver object + // as the arg rather than a function + (function(){ + var resolve; + new NativePromise(function(r){ resolve = r; }); + return typeof resolve === 'function'; + })(); + + +// +// export if necessary +// + +if ( exports) +{ + // node.js + exports.Promise = nativePromiseSupported ? NativePromise : Promise; + exports.Polyfill = Promise; +} +else +{ + // AMD + { + // in browser add to global + if (!nativePromiseSupported) + global['Promise'] = Promise; + } +} + + +// +// Polyfill +// + +var PENDING = 'pending'; +var SEALED = 'sealed'; +var FULFILLED = 'fulfilled'; +var REJECTED = 'rejected'; +var NOOP = function(){}; + +function isArray(value) { + return Object.prototype.toString.call(value) === '[object Array]'; +} + +// async calls +var asyncSetTimer = typeof setImmediate !== 'undefined' ? setImmediate : setTimeout; +var asyncQueue = []; +var asyncTimer; + +function asyncFlush(){ + // run promise callbacks + for (var i = 0; i < asyncQueue.length; i++) + asyncQueue[i][0](asyncQueue[i][1]); + + // reset async asyncQueue + asyncQueue = []; + asyncTimer = false; +} + +function asyncCall(callback, arg){ + asyncQueue.push([callback, arg]); + + if (!asyncTimer) + { + asyncTimer = true; + asyncSetTimer(asyncFlush, 0); + } +} + + +function invokeResolver(resolver, promise) { + function resolvePromise(value) { + resolve(promise, value); + } + + function rejectPromise(reason) { + reject(promise, reason); + } + + try { + resolver(resolvePromise, rejectPromise); + } catch(e) { + rejectPromise(e); + } +} + +function invokeCallback(subscriber){ + var owner = subscriber.owner; + var settled = owner.state_; + var value = owner.data_; + var callback = subscriber[settled]; + var promise = subscriber.then; + + if (typeof callback === 'function') + { + settled = FULFILLED; + try { + value = callback(value); + } catch(e) { + reject(promise, e); + } + } + + if (!handleThenable(promise, value)) + { + if (settled === FULFILLED) + resolve(promise, value); + + if (settled === REJECTED) + reject(promise, value); + } +} + +function handleThenable(promise, value) { + var resolved; + + try { + if (promise === value) + throw new TypeError('A promises callback cannot return that same promise.'); + + if (value && (typeof value === 'function' || typeof value === 'object')) + { + var then = value.then; // then should be retrived only once + + if (typeof then === 'function') + { + then.call(value, function(val){ + if (!resolved) + { + resolved = true; + + if (value !== val) + resolve(promise, val); + else + fulfill(promise, val); + } + }, function(reason){ + if (!resolved) + { + resolved = true; + + reject(promise, reason); + } + }); + + return true; + } + } + } catch (e) { + if (!resolved) + reject(promise, e); + + return true; + } + + return false; +} + +function resolve(promise, value){ + if (promise === value || !handleThenable(promise, value)) + fulfill(promise, value); +} + +function fulfill(promise, value){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = value; + + asyncCall(publishFulfillment, promise); + } +} + +function reject(promise, reason){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = reason; + + asyncCall(publishRejection, promise); + } +} + +function publish(promise) { + var callbacks = promise.then_; + promise.then_ = undefined; + + for (var i = 0; i < callbacks.length; i++) { + invokeCallback(callbacks[i]); + } +} + +function publishFulfillment(promise){ + promise.state_ = FULFILLED; + publish(promise); +} + +function publishRejection(promise){ + promise.state_ = REJECTED; + publish(promise); +} + +/** +* @class +*/ +function Promise(resolver){ + if (typeof resolver !== 'function') + throw new TypeError('Promise constructor takes a function argument'); + + if (this instanceof Promise === false) + throw new TypeError('Failed to construct \'Promise\': Please use the \'new\' operator, this object constructor cannot be called as a function.'); + + this.then_ = []; + + invokeResolver(resolver, this); +} + +Promise.prototype = { + constructor: Promise, + + state_: PENDING, + then_: null, + data_: undefined, + + then: function(onFulfillment, onRejection){ + var subscriber = { + owner: this, + then: new this.constructor(NOOP), + fulfilled: onFulfillment, + rejected: onRejection + }; + + if (this.state_ === FULFILLED || this.state_ === REJECTED) + { + // already resolved, call callback async + asyncCall(invokeCallback, subscriber); + } + else + { + // subscribe + this.then_.push(subscriber); + } + + return subscriber.then; + }, + + 'catch': function(onRejection) { + return this.then(null, onRejection); + } +}; + +Promise.all = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.all().'); + + return new Class(function(resolve, reject){ + var results = []; + var remaining = 0; + + function resolver(index){ + remaining++; + return function(value){ + results[index] = value; + if (!--remaining) + resolve(results); + }; + } + + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolver(i), reject); + else + results[i] = promise; + } + + if (!remaining) + resolve(results); + }); +}; + +Promise.race = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.race().'); + + return new Class(function(resolve, reject) { + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolve, reject); + else + resolve(promise); + } + }); +}; + +Promise.resolve = function(value){ + var Class = this; + + if (value && typeof value === 'object' && value.constructor === Class) + return value; + + return new Class(function(resolve){ + resolve(value); + }); +}; + +Promise.reject = function(reason){ + var Class = this; + + return new Class(function(resolve, reject){ + reject(reason); + }); +}; + +})(typeof window != 'undefined' ? window : typeof commonjsGlobal != 'undefined' ? commonjsGlobal : typeof self != 'undefined' ? self : commonjsGlobal); +}); +var promise_1 = promise.Promise; +var promise_2 = promise.Polyfill; + +/* +object-assign +(c) Sindre Sorhus +@license MIT +*/ +/* eslint-disable no-unused-vars */ +var getOwnPropertySymbols = Object.getOwnPropertySymbols; +var hasOwnProperty = Object.prototype.hasOwnProperty; +var propIsEnumerable = Object.prototype.propertyIsEnumerable; + +function toObject(val) { + if (val === null || val === undefined) { + throw new TypeError('Object.assign cannot be called with null or undefined'); + } + + return Object(val); +} + +function shouldUseNative() { + try { + if (!Object.assign) { + return false; + } + + // Detect buggy property enumeration order in older V8 versions. + + // https://bugs.chromium.org/p/v8/issues/detail?id=4118 + var test1 = new String('abc'); // eslint-disable-line no-new-wrappers + test1[5] = 'de'; + if (Object.getOwnPropertyNames(test1)[0] === '5') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test2 = {}; + for (var i = 0; i < 10; i++) { + test2['_' + String.fromCharCode(i)] = i; + } + var order2 = Object.getOwnPropertyNames(test2).map(function (n) { + return test2[n]; + }); + if (order2.join('') !== '0123456789') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test3 = {}; + 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { + test3[letter] = letter; + }); + if (Object.keys(Object.assign({}, test3)).join('') !== + 'abcdefghijklmnopqrst') { + return false; + } + + return true; + } catch (err) { + // We don't expect any of the above to throw, but better to be safe. + return false; + } +} + +var objectAssign = shouldUseNative() ? Object.assign : function (target, source) { + var from; + var to = toObject(target); + var symbols; + + for (var s = 1; s < arguments.length; s++) { + from = Object(arguments[s]); + + for (var key in from) { + if (hasOwnProperty.call(from, key)) { + to[key] = from[key]; + } + } + + if (getOwnPropertySymbols) { + symbols = getOwnPropertySymbols(from); + for (var i = 0; i < symbols.length; i++) { + if (propIsEnumerable.call(from, symbols[i])) { + to[symbols[i]] = from[symbols[i]]; + } + } + } + } + + return to; +}; + +/*! + * @pixi/polyfill - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/polyfill is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Support for IE 9 - 11 which does not include Promises +if (!window.Promise) +{ + window.Promise = promise_2; +} + +// References: + +if (!Object.assign) +{ + Object.assign = objectAssign; +} + +var commonjsGlobal$1 = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +// References: +// http://paulirish.com/2011/requestanimationframe-for-smart-animating/ +// https://gist.github.com/1579671 +// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision +// https://gist.github.com/timhall/4078614 +// https://github.com/Financial-Times/polyfill-service/tree/master/polyfills/requestAnimationFrame + +// Expected to be used with Browserfiy +// Browserify automatically detects the use of `global` and passes the +// correct reference of `global`, `self`, and finally `window` + +var ONE_FRAME_TIME = 16; + +// Date.now +if (!(Date.now && Date.prototype.getTime)) +{ + Date.now = function now() + { + return new Date().getTime(); + }; +} + +// performance.now +if (!(commonjsGlobal$1.performance && commonjsGlobal$1.performance.now)) +{ + var startTime = Date.now(); + + if (!commonjsGlobal$1.performance) + { + commonjsGlobal$1.performance = {}; + } + + commonjsGlobal$1.performance.now = function () { return Date.now() - startTime; }; +} + +// requestAnimationFrame +var lastTime = Date.now(); +var vendors = ['ms', 'moz', 'webkit', 'o']; + +for (var x = 0; x < vendors.length && !commonjsGlobal$1.requestAnimationFrame; ++x) +{ + var p = vendors[x]; + + commonjsGlobal$1.requestAnimationFrame = commonjsGlobal$1[(p + "RequestAnimationFrame")]; + commonjsGlobal$1.cancelAnimationFrame = commonjsGlobal$1[(p + "CancelAnimationFrame")] || commonjsGlobal$1[(p + "CancelRequestAnimationFrame")]; +} + +if (!commonjsGlobal$1.requestAnimationFrame) +{ + commonjsGlobal$1.requestAnimationFrame = function (callback) { + if (typeof callback !== 'function') + { + throw new TypeError((callback + "is not a function")); + } + + var currentTime = Date.now(); + var delay = ONE_FRAME_TIME + lastTime - currentTime; + + if (delay < 0) + { + delay = 0; + } + + lastTime = currentTime; + + return setTimeout(function () { + lastTime = Date.now(); + callback(performance.now()); + }, delay); + }; +} + +if (!commonjsGlobal$1.cancelAnimationFrame) +{ + commonjsGlobal$1.cancelAnimationFrame = function (id) { return clearTimeout(id); }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign + +if (!Math.sign) +{ + Math.sign = function mathSign(x) + { + x = Number(x); + + if (x === 0 || isNaN(x)) + { + return x; + } + + return x > 0 ? 1 : -1; + }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger + +if (!Number.isInteger) +{ + Number.isInteger = function numberIsInteger(value) + { + return typeof value === 'number' && isFinite(value) && Math.floor(value) === value; + }; +} + +if (!window.ArrayBuffer) +{ + window.ArrayBuffer = Array; +} + +if (!window.Float32Array) +{ + window.Float32Array = Array; +} + +if (!window.Uint32Array) +{ + window.Uint32Array = Array; +} + +if (!window.Uint16Array) +{ + window.Uint16Array = Array; +} + +if (!window.Uint8Array) +{ + window.Uint8Array = Array; +} + +if (!window.Int32Array) +{ + window.Int32Array = Array; +} + +var isMobile = createCommonjsModule(function (module) { +(function(global) { + var apple_phone = /iPhone/i, + apple_ipod = /iPod/i, + apple_tablet = /iPad/i, + android_phone = /\bAndroid(?:.+)Mobile\b/i, // Match 'Android' AND 'Mobile' + android_tablet = /Android/i, + amazon_phone = /\bAndroid(?:.+)SD4930UR\b/i, + amazon_tablet = /\bAndroid(?:.+)(?:KF[A-Z]{2,4})\b/i, + windows_phone = /Windows Phone/i, + windows_tablet = /\bWindows(?:.+)ARM\b/i, // Match 'Windows' AND 'ARM' + other_blackberry = /BlackBerry/i, + other_blackberry_10 = /BB10/i, + other_opera = /Opera Mini/i, + other_chrome = /\b(CriOS|Chrome)(?:.+)Mobile/i, + other_firefox = /Mobile(?:.+)Firefox\b/i; // Match 'Mobile' AND 'Firefox' + + function match(regex, userAgent) { + return regex.test(userAgent); + } + + function isMobile(userAgent) { + var ua = + userAgent || + (typeof navigator !== 'undefined' ? navigator.userAgent : ''); + + // Facebook mobile app's integrated browser adds a bunch of strings that + // match everything. Strip it out if it exists. + var tmp = ua.split('[FBAN'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + // Twitter mobile app's integrated browser on iPad adds a "Twitter for + // iPhone" string. Same probably happens on other tablet platforms. + // This will confuse detection so strip it out if it exists. + tmp = ua.split('Twitter'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + var result = { + apple: { + phone: match(apple_phone, ua) && !match(windows_phone, ua), + ipod: match(apple_ipod, ua), + tablet: + !match(apple_phone, ua) && + match(apple_tablet, ua) && + !match(windows_phone, ua), + device: + (match(apple_phone, ua) || + match(apple_ipod, ua) || + match(apple_tablet, ua)) && + !match(windows_phone, ua) + }, + amazon: { + phone: match(amazon_phone, ua), + tablet: !match(amazon_phone, ua) && match(amazon_tablet, ua), + device: match(amazon_phone, ua) || match(amazon_tablet, ua) + }, + android: { + phone: + (!match(windows_phone, ua) && match(amazon_phone, ua)) || + (!match(windows_phone, ua) && match(android_phone, ua)), + tablet: + !match(windows_phone, ua) && + !match(amazon_phone, ua) && + !match(android_phone, ua) && + (match(amazon_tablet, ua) || match(android_tablet, ua)), + device: + (!match(windows_phone, ua) && + (match(amazon_phone, ua) || + match(amazon_tablet, ua) || + match(android_phone, ua) || + match(android_tablet, ua))) || + match(/\bokhttp\b/i, ua) + }, + windows: { + phone: match(windows_phone, ua), + tablet: match(windows_tablet, ua), + device: match(windows_phone, ua) || match(windows_tablet, ua) + }, + other: { + blackberry: match(other_blackberry, ua), + blackberry10: match(other_blackberry_10, ua), + opera: match(other_opera, ua), + firefox: match(other_firefox, ua), + chrome: match(other_chrome, ua), + device: + match(other_blackberry, ua) || + match(other_blackberry_10, ua) || + match(other_opera, ua) || + match(other_firefox, ua) || + match(other_chrome, ua) + } + }; + (result.any = + result.apple.device || + result.android.device || + result.windows.device || + result.other.device), + // excludes 'other' devices and ipods, targeting touchscreen phones + (result.phone = + result.apple.phone || result.android.phone || result.windows.phone), + (result.tablet = + result.apple.tablet || result.android.tablet || result.windows.tablet); + + return result; + } + + if ( + + module.exports && + typeof window === 'undefined' + ) { + // Node.js + module.exports = isMobile; + } else if ( + + module.exports && + typeof window !== 'undefined' + ) { + // Browserify + module.exports = isMobile(); + module.exports.isMobile = isMobile; + } else { + global.isMobile = isMobile(); + } +})(commonjsGlobal); +}); +var isMobile_1 = isMobile.isMobile; + +/*! + * @pixi/settings - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/settings is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The maximum recommended texture units to use. + * In theory the bigger the better, and for desktop we'll use as many as we can. + * But some mobile devices slow down if there is to many branches in the shader. + * So in practice there seems to be a sweet spot size that varies depending on the device. + * + * In v4, all mobile devices were limited to 4 texture units because for this. + * In v5, we allow all texture units to be used on modern Apple or Android devices. + * + * @private + * @param {number} max + * @returns {number} + */ +function maxRecommendedTextures(max) +{ + var allowMax = true; + + if (isMobile.tablet || isMobile.phone) + { + allowMax = false; + + if (isMobile.apple.device) + { + var match = (navigator.userAgent).match(/OS (\d+)_(\d+)?/); + + if (match) + { + var majorVersion = parseInt(match[1], 10); + + // All texture units can be used on devices that support ios 11 or above + if (majorVersion >= 11) + { + allowMax = true; + } + } + } + if (isMobile.android.device) + { + var match$1 = (navigator.userAgent).match(/Android\s([0-9.]*)/); + + if (match$1) + { + var majorVersion$1 = parseInt(match$1[1], 10); + + // All texture units can be used on devices that support Android 7 (Nougat) or above + if (majorVersion$1 >= 7) + { + allowMax = true; + } + } + } + } + + return allowMax ? max : 4; +} + +/** + * Uploading the same buffer multiple times in a single frame can cause performance issues. + * Apparent on iOS so only check for that at the moment + * This check may become more complex if this issue pops up elsewhere. + * + * @private + * @returns {boolean} + */ +function canUploadSameBuffer() +{ + return !isMobile.apple.device; +} + +/** + * User's customizable globals for overriding the default PIXI settings, such + * as a renderer's default resolution, framerate, float precision, etc. + * @example + * // Use the native window resolution as the default resolution + * // will support high-density displays when rendering + * PIXI.settings.RESOLUTION = window.devicePixelRatio; + * + * // Disable interpolation when scaling, will make texture be pixelated + * PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST; + * @namespace PIXI.settings + */ +var settings = { + + /** + * If set to true WebGL will attempt make textures mimpaped by default. + * Mipmapping will only succeed if the base texture uploaded has power of two dimensions. + * + * @static + * @name MIPMAP_TEXTURES + * @memberof PIXI.settings + * @type {PIXI.MIPMAP_MODES} + * @default PIXI.MIPMAP_MODES.POW2 + */ + MIPMAP_TEXTURES: 1, + + /** + * Default anisotropic filtering level of textures. + * Usually from 0 to 16 + * + * @static + * @name ANISOTROPIC_LEVEL + * @memberof PIXI.settings + * @type {number} + * @default 0 + */ + ANISOTROPIC_LEVEL: 0, + + /** + * Default resolution / device pixel ratio of the renderer. + * + * @static + * @name RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + RESOLUTION: 1, + + /** + * Default filter resolution. + * + * @static + * @name FILTER_RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + FILTER_RESOLUTION: 1, + + /** + * The maximum textures that this device supports. + * + * @static + * @name SPRITE_MAX_TEXTURES + * @memberof PIXI.settings + * @type {number} + * @default 32 + */ + SPRITE_MAX_TEXTURES: maxRecommendedTextures(32), + + // TODO: maybe change to SPRITE.BATCH_SIZE: 2000 + // TODO: maybe add PARTICLE.BATCH_SIZE: 15000 + + /** + * The default sprite batch size. + * + * The default aims to balance desktop and mobile devices. + * + * @static + * @name SPRITE_BATCH_SIZE + * @memberof PIXI.settings + * @type {number} + * @default 4096 + */ + SPRITE_BATCH_SIZE: 4096, + + /** + * The default render options if none are supplied to {@link PIXI.Renderer} + * or {@link PIXI.CanvasRenderer}. + * + * @static + * @name RENDER_OPTIONS + * @memberof PIXI.settings + * @type {object} + * @property {HTMLCanvasElement} view=null + * @property {number} resolution=1 + * @property {boolean} antialias=false + * @property {boolean} forceFXAA=false + * @property {boolean} autoDensity=false + * @property {boolean} transparent=false + * @property {number} backgroundColor=0x000000 + * @property {boolean} clearBeforeRender=true + * @property {boolean} preserveDrawingBuffer=false + * @property {number} width=800 + * @property {number} height=600 + * @property {boolean} legacy=false + */ + RENDER_OPTIONS: { + view: null, + antialias: false, + forceFXAA: false, + autoDensity: false, + transparent: false, + backgroundColor: 0x000000, + clearBeforeRender: true, + preserveDrawingBuffer: false, + width: 800, + height: 600, + legacy: false, + }, + + /** + * Default Garbage Collection mode. + * + * @static + * @name GC_MODE + * @memberof PIXI.settings + * @type {PIXI.GC_MODES} + * @default PIXI.GC_MODES.AUTO + */ + GC_MODE: 0, + + /** + * Default Garbage Collection max idle. + * + * @static + * @name GC_MAX_IDLE + * @memberof PIXI.settings + * @type {number} + * @default 3600 + */ + GC_MAX_IDLE: 60 * 60, + + /** + * Default Garbage Collection maximum check count. + * + * @static + * @name GC_MAX_CHECK_COUNT + * @memberof PIXI.settings + * @type {number} + * @default 600 + */ + GC_MAX_CHECK_COUNT: 60 * 10, + + /** + * Default wrap modes that are supported by pixi. + * + * @static + * @name WRAP_MODE + * @memberof PIXI.settings + * @type {PIXI.WRAP_MODES} + * @default PIXI.WRAP_MODES.CLAMP + */ + WRAP_MODE: 33071, + + /** + * Default scale mode for textures. + * + * @static + * @name SCALE_MODE + * @memberof PIXI.settings + * @type {PIXI.SCALE_MODES} + * @default PIXI.SCALE_MODES.LINEAR + */ + SCALE_MODE: 1, + + /** + * Default specify float precision in vertex shader. + * + * @static + * @name PRECISION_VERTEX + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.HIGH + */ + PRECISION_VERTEX: 'highp', + + /** + * Default specify float precision in fragment shader. + * iOS is best set at highp due to https://github.com/pixijs/pixi.js/issues/3742 + * + * @static + * @name PRECISION_FRAGMENT + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.MEDIUM + */ + PRECISION_FRAGMENT: isMobile.apple.device ? 'highp' : 'mediump', + + /** + * Can we upload the same buffer in a single frame? + * + * @static + * @name CAN_UPLOAD_SAME_BUFFER + * @memberof PIXI.settings + * @type {boolean} + */ + CAN_UPLOAD_SAME_BUFFER: canUploadSameBuffer(), + + /** + * Enables bitmap creation before image load. This feature is experimental. + * + * @static + * @name CREATE_IMAGE_BITMAP + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + CREATE_IMAGE_BITMAP: false, + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * + * @static + * @constant + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + ROUND_PIXELS: false, +}; + +var eventemitter3 = createCommonjsModule(function (module) { + +var has = Object.prototype.hasOwnProperty + , prefix = '~'; + +/** + * Constructor to create a storage for our `EE` objects. + * An `Events` instance is a plain object whose properties are event names. + * + * @constructor + * @private + */ +function Events() {} + +// +// We try to not inherit from `Object.prototype`. In some engines creating an +// instance in this way is faster than calling `Object.create(null)` directly. +// If `Object.create(null)` is not supported we prefix the event names with a +// character to make sure that the built-in object properties are not +// overridden or used as an attack vector. +// +if (Object.create) { + Events.prototype = Object.create(null); + + // + // This hack is needed because the `__proto__` property is still inherited in + // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5. + // + if (!new Events().__proto__) prefix = false; +} + +/** + * Representation of a single event listener. + * + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} [once=false] Specify if the listener is a one-time listener. + * @constructor + * @private + */ +function EE(fn, context, once) { + this.fn = fn; + this.context = context; + this.once = once || false; +} + +/** + * Add a listener for a given event. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} once Specify if the listener is a one-time listener. + * @returns {EventEmitter} + * @private + */ +function addListener(emitter, event, fn, context, once) { + if (typeof fn !== 'function') { + throw new TypeError('The listener must be a function'); + } + + var listener = new EE(fn, context || emitter, once) + , evt = prefix ? prefix + event : event; + + if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++; + else if (!emitter._events[evt].fn) emitter._events[evt].push(listener); + else emitter._events[evt] = [emitter._events[evt], listener]; + + return emitter; +} + +/** + * Clear event by name. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} evt The Event name. + * @private + */ +function clearEvent(emitter, evt) { + if (--emitter._eventsCount === 0) emitter._events = new Events(); + else delete emitter._events[evt]; +} + +/** + * Minimal `EventEmitter` interface that is molded against the Node.js + * `EventEmitter` interface. + * + * @constructor + * @public + */ +function EventEmitter() { + this._events = new Events(); + this._eventsCount = 0; +} + +/** + * Return an array listing the events for which the emitter has registered + * listeners. + * + * @returns {Array} + * @public + */ +EventEmitter.prototype.eventNames = function eventNames() { + var names = [] + , events + , name; + + if (this._eventsCount === 0) return names; + + for (name in (events = this._events)) { + if (has.call(events, name)) names.push(prefix ? name.slice(1) : name); + } + + if (Object.getOwnPropertySymbols) { + return names.concat(Object.getOwnPropertySymbols(events)); + } + + return names; +}; + +/** + * Return the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Array} The registered listeners. + * @public + */ +EventEmitter.prototype.listeners = function listeners(event) { + var evt = prefix ? prefix + event : event + , handlers = this._events[evt]; + + if (!handlers) return []; + if (handlers.fn) return [handlers.fn]; + + for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) { + ee[i] = handlers[i].fn; + } + + return ee; +}; + +/** + * Return the number of listeners listening to a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Number} The number of listeners. + * @public + */ +EventEmitter.prototype.listenerCount = function listenerCount(event) { + var evt = prefix ? prefix + event : event + , listeners = this._events[evt]; + + if (!listeners) return 0; + if (listeners.fn) return 1; + return listeners.length; +}; + +/** + * Calls each of the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Boolean} `true` if the event had listeners, else `false`. + * @public + */ +EventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return false; + + var listeners = this._events[evt] + , len = arguments.length + , args + , i; + + if (listeners.fn) { + if (listeners.once) this.removeListener(event, listeners.fn, undefined, true); + + switch (len) { + case 1: return listeners.fn.call(listeners.context), true; + case 2: return listeners.fn.call(listeners.context, a1), true; + case 3: return listeners.fn.call(listeners.context, a1, a2), true; + case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true; + case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true; + case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true; + } + + for (i = 1, args = new Array(len -1); i < len; i++) { + args[i - 1] = arguments[i]; + } + + listeners.fn.apply(listeners.context, args); + } else { + var length = listeners.length + , j; + + for (i = 0; i < length; i++) { + if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true); + + switch (len) { + case 1: listeners[i].fn.call(listeners[i].context); break; + case 2: listeners[i].fn.call(listeners[i].context, a1); break; + case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break; + case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break; + default: + if (!args) for (j = 1, args = new Array(len -1); j < len; j++) { + args[j - 1] = arguments[j]; + } + + listeners[i].fn.apply(listeners[i].context, args); + } + } + } + + return true; +}; + +/** + * Add a listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.on = function on(event, fn, context) { + return addListener(this, event, fn, context, false); +}; + +/** + * Add a one-time listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.once = function once(event, fn, context) { + return addListener(this, event, fn, context, true); +}; + +/** + * Remove the listeners of a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn Only remove the listeners that match this function. + * @param {*} context Only remove the listeners that have this context. + * @param {Boolean} once Only remove one-time listeners. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return this; + if (!fn) { + clearEvent(this, evt); + return this; + } + + var listeners = this._events[evt]; + + if (listeners.fn) { + if ( + listeners.fn === fn && + (!once || listeners.once) && + (!context || listeners.context === context) + ) { + clearEvent(this, evt); + } + } else { + for (var i = 0, events = [], length = listeners.length; i < length; i++) { + if ( + listeners[i].fn !== fn || + (once && !listeners[i].once) || + (context && listeners[i].context !== context) + ) { + events.push(listeners[i]); + } + } + + // + // Reset the array, or remove it completely if we have no more listeners. + // + if (events.length) this._events[evt] = events.length === 1 ? events[0] : events; + else clearEvent(this, evt); + } + + return this; +}; + +/** + * Remove all listeners, or those of the specified event. + * + * @param {(String|Symbol)} [event] The event name. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeAllListeners = function removeAllListeners(event) { + var evt; + + if (event) { + evt = prefix ? prefix + event : event; + if (this._events[evt]) clearEvent(this, evt); + } else { + this._events = new Events(); + this._eventsCount = 0; + } + + return this; +}; + +// +// Alias methods names because people roll like that. +// +EventEmitter.prototype.off = EventEmitter.prototype.removeListener; +EventEmitter.prototype.addListener = EventEmitter.prototype.on; + +// +// Expose the prefix. +// +EventEmitter.prefixed = prefix; + +// +// Allow `EventEmitter` to be imported as module namespace. +// +EventEmitter.EventEmitter = EventEmitter; + +// +// Expose the module. +// +{ + module.exports = EventEmitter; +} +}); + +var earcut_1 = earcut; +var default_1 = earcut; + +function earcut(data, holeIndices, dim) { + + dim = dim || 2; + + var hasHoles = holeIndices && holeIndices.length, + outerLen = hasHoles ? holeIndices[0] * dim : data.length, + outerNode = linkedList(data, 0, outerLen, dim, true), + triangles = []; + + if (!outerNode || outerNode.next === outerNode.prev) return triangles; + + var minX, minY, maxX, maxY, x, y, invSize; + + if (hasHoles) outerNode = eliminateHoles(data, holeIndices, outerNode, dim); + + // if the shape is not too simple, we'll use z-order curve hash later; calculate polygon bbox + if (data.length > 80 * dim) { + minX = maxX = data[0]; + minY = maxY = data[1]; + + for (var i = dim; i < outerLen; i += dim) { + x = data[i]; + y = data[i + 1]; + if (x < minX) minX = x; + if (y < minY) minY = y; + if (x > maxX) maxX = x; + if (y > maxY) maxY = y; + } + + // minX, minY and invSize are later used to transform coords into integers for z-order calculation + invSize = Math.max(maxX - minX, maxY - minY); + invSize = invSize !== 0 ? 1 / invSize : 0; + } + + earcutLinked(outerNode, triangles, dim, minX, minY, invSize); + + return triangles; +} + +// create a circular doubly linked list from polygon points in the specified winding order +function linkedList(data, start, end, dim, clockwise) { + var i, last; + + if (clockwise === (signedArea(data, start, end, dim) > 0)) { + for (i = start; i < end; i += dim) last = insertNode(i, data[i], data[i + 1], last); + } else { + for (i = end - dim; i >= start; i -= dim) last = insertNode(i, data[i], data[i + 1], last); + } + + if (last && equals(last, last.next)) { + removeNode(last); + last = last.next; + } + + return last; +} + +// eliminate colinear or duplicate points +function filterPoints(start, end) { + if (!start) return start; + if (!end) end = start; + + var p = start, + again; + do { + again = false; + + if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) { + removeNode(p); + p = end = p.prev; + if (p === p.next) break; + again = true; + + } else { + p = p.next; + } + } while (again || p !== end); + + return end; +} + +// main ear slicing loop which triangulates a polygon (given as a linked list) +function earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) { + if (!ear) return; + + // interlink polygon nodes in z-order + if (!pass && invSize) indexCurve(ear, minX, minY, invSize); + + var stop = ear, + prev, next; + + // iterate through ears, slicing them one by one + while (ear.prev !== ear.next) { + prev = ear.prev; + next = ear.next; + + if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) { + // cut off the triangle + triangles.push(prev.i / dim); + triangles.push(ear.i / dim); + triangles.push(next.i / dim); + + removeNode(ear); + + // skipping the next vertex leads to less sliver triangles + ear = next.next; + stop = next.next; + + continue; + } + + ear = next; + + // if we looped through the whole remaining polygon and can't find any more ears + if (ear === stop) { + // try filtering points and slicing again + if (!pass) { + earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1); + + // if this didn't work, try curing all small self-intersections locally + } else if (pass === 1) { + ear = cureLocalIntersections(filterPoints(ear), triangles, dim); + earcutLinked(ear, triangles, dim, minX, minY, invSize, 2); + + // as a last resort, try splitting the remaining polygon into two + } else if (pass === 2) { + splitEarcut(ear, triangles, dim, minX, minY, invSize); + } + + break; + } + } +} + +// check whether a polygon node forms a valid ear with adjacent nodes +function isEar(ear) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // now make sure we don't have other points inside the potential ear + var p = ear.next.next; + + while (p !== ear.prev) { + if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.next; + } + + return true; +} + +function isEarHashed(ear, minX, minY, invSize) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // triangle bbox; min & max are calculated like this for speed + var minTX = a.x < b.x ? (a.x < c.x ? a.x : c.x) : (b.x < c.x ? b.x : c.x), + minTY = a.y < b.y ? (a.y < c.y ? a.y : c.y) : (b.y < c.y ? b.y : c.y), + maxTX = a.x > b.x ? (a.x > c.x ? a.x : c.x) : (b.x > c.x ? b.x : c.x), + maxTY = a.y > b.y ? (a.y > c.y ? a.y : c.y) : (b.y > c.y ? b.y : c.y); + + // z-order range for the current triangle bbox; + var minZ = zOrder(minTX, minTY, minX, minY, invSize), + maxZ = zOrder(maxTX, maxTY, minX, minY, invSize); + + var p = ear.prevZ, + n = ear.nextZ; + + // look for points inside the triangle in both directions + while (p && p.z >= minZ && n && n.z <= maxZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + // look for remaining points in decreasing z-order + while (p && p.z >= minZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + } + + // look for remaining points in increasing z-order + while (n && n.z <= maxZ) { + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + return true; +} + +// go through all polygon nodes and cure small local self-intersections +function cureLocalIntersections(start, triangles, dim) { + var p = start; + do { + var a = p.prev, + b = p.next.next; + + if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) { + + triangles.push(a.i / dim); + triangles.push(p.i / dim); + triangles.push(b.i / dim); + + // remove two nodes involved + removeNode(p); + removeNode(p.next); + + p = start = b; + } + p = p.next; + } while (p !== start); + + return filterPoints(p); +} + +// try splitting polygon into two and triangulate them independently +function splitEarcut(start, triangles, dim, minX, minY, invSize) { + // look for a valid diagonal that divides the polygon into two + var a = start; + do { + var b = a.next.next; + while (b !== a.prev) { + if (a.i !== b.i && isValidDiagonal(a, b)) { + // split the polygon in two by the diagonal + var c = splitPolygon(a, b); + + // filter colinear points around the cuts + a = filterPoints(a, a.next); + c = filterPoints(c, c.next); + + // run earcut on each half + earcutLinked(a, triangles, dim, minX, minY, invSize); + earcutLinked(c, triangles, dim, minX, minY, invSize); + return; + } + b = b.next; + } + a = a.next; + } while (a !== start); +} + +// link every hole into the outer loop, producing a single-ring polygon without holes +function eliminateHoles(data, holeIndices, outerNode, dim) { + var queue = [], + i, len, start, end, list; + + for (i = 0, len = holeIndices.length; i < len; i++) { + start = holeIndices[i] * dim; + end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + list = linkedList(data, start, end, dim, false); + if (list === list.next) list.steiner = true; + queue.push(getLeftmost(list)); + } + + queue.sort(compareX); + + // process holes from left to right + for (i = 0; i < queue.length; i++) { + eliminateHole(queue[i], outerNode); + outerNode = filterPoints(outerNode, outerNode.next); + } + + return outerNode; +} + +function compareX(a, b) { + return a.x - b.x; +} + +// find a bridge between vertices that connects hole with an outer ring and and link it +function eliminateHole(hole, outerNode) { + outerNode = findHoleBridge(hole, outerNode); + if (outerNode) { + var b = splitPolygon(outerNode, hole); + filterPoints(b, b.next); + } +} + +// David Eberly's algorithm for finding a bridge between hole and outer polygon +function findHoleBridge(hole, outerNode) { + var p = outerNode, + hx = hole.x, + hy = hole.y, + qx = -Infinity, + m; + + // find a segment intersected by a ray from the hole's leftmost point to the left; + // segment's endpoint with lesser x will be potential connection point + do { + if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) { + var x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y); + if (x <= hx && x > qx) { + qx = x; + if (x === hx) { + if (hy === p.y) return p; + if (hy === p.next.y) return p.next; + } + m = p.x < p.next.x ? p : p.next; + } + } + p = p.next; + } while (p !== outerNode); + + if (!m) return null; + + if (hx === qx) return m; // hole touches outer segment; pick leftmost endpoint + + // look for points inside the triangle of hole point, segment intersection and endpoint; + // if there are no points found, we have a valid connection; + // otherwise choose the point of the minimum angle with the ray as connection point + + var stop = m, + mx = m.x, + my = m.y, + tanMin = Infinity, + tan; + + p = m; + + do { + if (hx >= p.x && p.x >= mx && hx !== p.x && + pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) { + + tan = Math.abs(hy - p.y) / (hx - p.x); // tangential + + if (locallyInside(p, hole) && + (tan < tanMin || (tan === tanMin && (p.x > m.x || (p.x === m.x && sectorContainsSector(m, p)))))) { + m = p; + tanMin = tan; + } + } + + p = p.next; + } while (p !== stop); + + return m; +} + +// whether sector in vertex m contains sector in vertex p in the same coordinates +function sectorContainsSector(m, p) { + return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0; +} + +// interlink polygon nodes in z-order +function indexCurve(start, minX, minY, invSize) { + var p = start; + do { + if (p.z === null) p.z = zOrder(p.x, p.y, minX, minY, invSize); + p.prevZ = p.prev; + p.nextZ = p.next; + p = p.next; + } while (p !== start); + + p.prevZ.nextZ = null; + p.prevZ = null; + + sortLinked(p); +} + +// Simon Tatham's linked list merge sort algorithm +// http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html +function sortLinked(list) { + var i, p, q, e, tail, numMerges, pSize, qSize, + inSize = 1; + + do { + p = list; + list = null; + tail = null; + numMerges = 0; + + while (p) { + numMerges++; + q = p; + pSize = 0; + for (i = 0; i < inSize; i++) { + pSize++; + q = q.nextZ; + if (!q) break; + } + qSize = inSize; + + while (pSize > 0 || (qSize > 0 && q)) { + + if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) { + e = p; + p = p.nextZ; + pSize--; + } else { + e = q; + q = q.nextZ; + qSize--; + } + + if (tail) tail.nextZ = e; + else list = e; + + e.prevZ = tail; + tail = e; + } + + p = q; + } + + tail.nextZ = null; + inSize *= 2; + + } while (numMerges > 1); + + return list; +} + +// z-order of a point given coords and inverse of the longer side of data bbox +function zOrder(x, y, minX, minY, invSize) { + // coords are transformed into non-negative 15-bit integer range + x = 32767 * (x - minX) * invSize; + y = 32767 * (y - minY) * invSize; + + x = (x | (x << 8)) & 0x00FF00FF; + x = (x | (x << 4)) & 0x0F0F0F0F; + x = (x | (x << 2)) & 0x33333333; + x = (x | (x << 1)) & 0x55555555; + + y = (y | (y << 8)) & 0x00FF00FF; + y = (y | (y << 4)) & 0x0F0F0F0F; + y = (y | (y << 2)) & 0x33333333; + y = (y | (y << 1)) & 0x55555555; + + return x | (y << 1); +} + +// find the leftmost node of a polygon ring +function getLeftmost(start) { + var p = start, + leftmost = start; + do { + if (p.x < leftmost.x || (p.x === leftmost.x && p.y < leftmost.y)) leftmost = p; + p = p.next; + } while (p !== start); + + return leftmost; +} + +// check if a point lies within a convex triangle +function pointInTriangle(ax, ay, bx, by, cx, cy, px, py) { + return (cx - px) * (ay - py) - (ax - px) * (cy - py) >= 0 && + (ax - px) * (by - py) - (bx - px) * (ay - py) >= 0 && + (bx - px) * (cy - py) - (cx - px) * (by - py) >= 0; +} + +// check if a diagonal between two polygon nodes is valid (lies in polygon interior) +function isValidDiagonal(a, b) { + return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && // dones't intersect other edges + (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && // locally visible + (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors + equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case +} + +// signed area of a triangle +function area(p, q, r) { + return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y); +} + +// check if two points are equal +function equals(p1, p2) { + return p1.x === p2.x && p1.y === p2.y; +} + +// check if two segments intersect +function intersects(p1, q1, p2, q2) { + var o1 = sign(area(p1, q1, p2)); + var o2 = sign(area(p1, q1, q2)); + var o3 = sign(area(p2, q2, p1)); + var o4 = sign(area(p2, q2, q1)); + + if (o1 !== o2 && o3 !== o4) return true; // general case + + if (o1 === 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p1q1 + if (o2 === 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p1q1 + if (o3 === 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p2q2 + if (o4 === 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p2q2 + + return false; +} + +// for collinear points p, q, r, check if point q lies on segment pr +function onSegment(p, q, r) { + return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y); +} + +function sign(num) { + return num > 0 ? 1 : num < 0 ? -1 : 0; +} + +// check if a polygon diagonal intersects any polygon segments +function intersectsPolygon(a, b) { + var p = a; + do { + if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i && + intersects(p, p.next, a, b)) return true; + p = p.next; + } while (p !== a); + + return false; +} + +// check if a polygon diagonal is locally inside the polygon +function locallyInside(a, b) { + return area(a.prev, a, a.next) < 0 ? + area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 : + area(a, b, a.prev) < 0 || area(a, a.next, b) < 0; +} + +// check if the middle point of a polygon diagonal is inside the polygon +function middleInside(a, b) { + var p = a, + inside = false, + px = (a.x + b.x) / 2, + py = (a.y + b.y) / 2; + do { + if (((p.y > py) !== (p.next.y > py)) && p.next.y !== p.y && + (px < (p.next.x - p.x) * (py - p.y) / (p.next.y - p.y) + p.x)) + inside = !inside; + p = p.next; + } while (p !== a); + + return inside; +} + +// link two polygon vertices with a bridge; if the vertices belong to the same ring, it splits polygon into two; +// if one belongs to the outer ring and another to a hole, it merges it into a single ring +function splitPolygon(a, b) { + var a2 = new Node(a.i, a.x, a.y), + b2 = new Node(b.i, b.x, b.y), + an = a.next, + bp = b.prev; + + a.next = b; + b.prev = a; + + a2.next = an; + an.prev = a2; + + b2.next = a2; + a2.prev = b2; + + bp.next = b2; + b2.prev = bp; + + return b2; +} + +// create a node and optionally link it with previous one (in a circular doubly linked list) +function insertNode(i, x, y, last) { + var p = new Node(i, x, y); + + if (!last) { + p.prev = p; + p.next = p; + + } else { + p.next = last.next; + p.prev = last; + last.next.prev = p; + last.next = p; + } + return p; +} + +function removeNode(p) { + p.next.prev = p.prev; + p.prev.next = p.next; + + if (p.prevZ) p.prevZ.nextZ = p.nextZ; + if (p.nextZ) p.nextZ.prevZ = p.prevZ; +} + +function Node(i, x, y) { + // vertex index in coordinates array + this.i = i; + + // vertex coordinates + this.x = x; + this.y = y; + + // previous and next vertex nodes in a polygon ring + this.prev = null; + this.next = null; + + // z-order curve value + this.z = null; + + // previous and next nodes in z-order + this.prevZ = null; + this.nextZ = null; + + // indicates whether this is a steiner point + this.steiner = false; +} + +// return a percentage difference between the polygon area and its triangulation area; +// used to verify correctness of triangulation +earcut.deviation = function (data, holeIndices, dim, triangles) { + var hasHoles = holeIndices && holeIndices.length; + var outerLen = hasHoles ? holeIndices[0] * dim : data.length; + + var polygonArea = Math.abs(signedArea(data, 0, outerLen, dim)); + if (hasHoles) { + for (var i = 0, len = holeIndices.length; i < len; i++) { + var start = holeIndices[i] * dim; + var end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + polygonArea -= Math.abs(signedArea(data, start, end, dim)); + } + } + + var trianglesArea = 0; + for (i = 0; i < triangles.length; i += 3) { + var a = triangles[i] * dim; + var b = triangles[i + 1] * dim; + var c = triangles[i + 2] * dim; + trianglesArea += Math.abs( + (data[a] - data[c]) * (data[b + 1] - data[a + 1]) - + (data[a] - data[b]) * (data[c + 1] - data[a + 1])); + } + + return polygonArea === 0 && trianglesArea === 0 ? 0 : + Math.abs((trianglesArea - polygonArea) / polygonArea); +}; + +function signedArea(data, start, end, dim) { + var sum = 0; + for (var i = start, j = end - dim; i < end; i += dim) { + sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]); + j = i; + } + return sum; +} + +// turn a polygon in a multi-dimensional array form (e.g. as in GeoJSON) into a form Earcut accepts +earcut.flatten = function (data) { + var dim = data[0][0].length, + result = {vertices: [], holes: [], dimensions: dim}, + holeIndex = 0; + + for (var i = 0; i < data.length; i++) { + for (var j = 0; j < data[i].length; j++) { + for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]); + } + if (i > 0) { + holeIndex += data[i - 1].length; + result.holes.push(holeIndex); + } + } + return result; +}; +earcut_1.default = default_1; + +/*! https://mths.be/punycode v1.4.1 by @mathias */ + + +/** Highest positive signed 32-bit float value */ +var maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1 + +/** Bootstring parameters */ +var base = 36; +var tMin = 1; +var tMax = 26; +var skew = 38; +var damp = 700; +var initialBias = 72; +var initialN = 128; // 0x80 +var delimiter$1 = '-'; // '\x2D' +var regexNonASCII = /[^\x20-\x7E]/; // unprintable ASCII chars + non-ASCII chars +var regexSeparators = /[\x2E\u3002\uFF0E\uFF61]/g; // RFC 3490 separators + +/** Error messages */ +var errors = { + 'overflow': 'Overflow: input needs wider integers to process', + 'not-basic': 'Illegal input >= 0x80 (not a basic code point)', + 'invalid-input': 'Invalid input' +}; + +/** Convenience shortcuts */ +var baseMinusTMin = base - tMin; +var floor = Math.floor; +var stringFromCharCode = String.fromCharCode; + +/*--------------------------------------------------------------------------*/ + +/** + * A generic error utility function. + * @private + * @param {String} type The error type. + * @returns {Error} Throws a `RangeError` with the applicable error message. + */ +function error(type) { + throw new RangeError(errors[type]); +} + +/** + * A generic `Array#map` utility function. + * @private + * @param {Array} array The array to iterate over. + * @param {Function} callback The function that gets called for every array + * item. + * @returns {Array} A new array of values returned by the callback function. + */ +function map(array, fn) { + var length = array.length; + var result = []; + while (length--) { + result[length] = fn(array[length]); + } + return result; +} + +/** + * A simple `Array#map`-like wrapper to work with domain name strings or email + * addresses. + * @private + * @param {String} domain The domain name or email address. + * @param {Function} callback The function that gets called for every + * character. + * @returns {Array} A new string of characters returned by the callback + * function. + */ +function mapDomain(string, fn) { + var parts = string.split('@'); + var result = ''; + if (parts.length > 1) { + // In email addresses, only the domain name should be punycoded. Leave + // the local part (i.e. everything up to `@`) intact. + result = parts[0] + '@'; + string = parts[1]; + } + // Avoid `split(regex)` for IE8 compatibility. See #17. + string = string.replace(regexSeparators, '\x2E'); + var labels = string.split('.'); + var encoded = map(labels, fn).join('.'); + return result + encoded; +} + +/** + * Creates an array containing the numeric code points of each Unicode + * character in the string. While JavaScript uses UCS-2 internally, + * this function will convert a pair of surrogate halves (each of which + * UCS-2 exposes as separate characters) into a single code point, + * matching UTF-16. + * @see `punycode.ucs2.encode` + * @see + * @memberOf punycode.ucs2 + * @name decode + * @param {String} string The Unicode input string (UCS-2). + * @returns {Array} The new array of code points. + */ +function ucs2decode(string) { + var output = [], + counter = 0, + length = string.length, + value, + extra; + while (counter < length) { + value = string.charCodeAt(counter++); + if (value >= 0xD800 && value <= 0xDBFF && counter < length) { + // high surrogate, and there is a next character + extra = string.charCodeAt(counter++); + if ((extra & 0xFC00) == 0xDC00) { // low surrogate + output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000); + } else { + // unmatched surrogate; only append this code unit, in case the next + // code unit is the high surrogate of a surrogate pair + output.push(value); + counter--; + } + } else { + output.push(value); + } + } + return output; +} + +/** + * Converts a digit/integer into a basic code point. + * @see `basicToDigit()` + * @private + * @param {Number} digit The numeric value of a basic code point. + * @returns {Number} The basic code point whose value (when used for + * representing integers) is `digit`, which needs to be in the range + * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is + * used; else, the lowercase form is used. The behavior is undefined + * if `flag` is non-zero and `digit` has no uppercase form. + */ +function digitToBasic(digit, flag) { + // 0..25 map to ASCII a..z or A..Z + // 26..35 map to ASCII 0..9 + return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5); +} + +/** + * Bias adaptation function as per section 3.4 of RFC 3492. + * https://tools.ietf.org/html/rfc3492#section-3.4 + * @private + */ +function adapt(delta, numPoints, firstTime) { + var k = 0; + delta = firstTime ? floor(delta / damp) : delta >> 1; + delta += floor(delta / numPoints); + for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) { + delta = floor(delta / baseMinusTMin); + } + return floor(k + (baseMinusTMin + 1) * delta / (delta + skew)); +} + +/** + * Converts a string of Unicode symbols (e.g. a domain name label) to a + * Punycode string of ASCII-only symbols. + * @memberOf punycode + * @param {String} input The string of Unicode symbols. + * @returns {String} The resulting Punycode string of ASCII-only symbols. + */ +function encode(input) { + var n, + delta, + handledCPCount, + basicLength, + bias, + j, + m, + q, + k, + t, + currentValue, + output = [], + /** `inputLength` will hold the number of code points in `input`. */ + inputLength, + /** Cached calculation results */ + handledCPCountPlusOne, + baseMinusT, + qMinusT; + + // Convert the input in UCS-2 to Unicode + input = ucs2decode(input); + + // Cache the length + inputLength = input.length; + + // Initialize the state + n = initialN; + delta = 0; + bias = initialBias; + + // Handle the basic code points + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue < 0x80) { + output.push(stringFromCharCode(currentValue)); + } + } + + handledCPCount = basicLength = output.length; + + // `handledCPCount` is the number of code points that have been handled; + // `basicLength` is the number of basic code points. + + // Finish the basic string - if it is not empty - with a delimiter + if (basicLength) { + output.push(delimiter$1); + } + + // Main encoding loop: + while (handledCPCount < inputLength) { + + // All non-basic code points < n have been handled already. Find the next + // larger one: + for (m = maxInt, j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue >= n && currentValue < m) { + m = currentValue; + } + } + + // Increase `delta` enough to advance the decoder's state to , + // but guard against overflow + handledCPCountPlusOne = handledCPCount + 1; + if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) { + error('overflow'); + } + + delta += (m - n) * handledCPCountPlusOne; + n = m; + + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + + if (currentValue < n && ++delta > maxInt) { + error('overflow'); + } + + if (currentValue == n) { + // Represent delta as a generalized variable-length integer + for (q = delta, k = base; /* no condition */ ; k += base) { + t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias); + if (q < t) { + break; + } + qMinusT = q - t; + baseMinusT = base - t; + output.push( + stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0)) + ); + q = floor(qMinusT / baseMinusT); + } + + output.push(stringFromCharCode(digitToBasic(q, 0))); + bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength); + delta = 0; + ++handledCPCount; + } + } + + ++delta; + ++n; + + } + return output.join(''); +} + +/** + * Converts a Unicode string representing a domain name or an email address to + * Punycode. Only the non-ASCII parts of the domain name will be converted, + * i.e. it doesn't matter if you call it with a domain that's already in + * ASCII. + * @memberOf punycode + * @param {String} input The domain name or email address to convert, as a + * Unicode string. + * @returns {String} The Punycode representation of the given domain name or + * email address. + */ +function toASCII(input) { + return mapDomain(input, function(string) { + return regexNonASCII.test(string) ? + 'xn--' + encode(string) : + string; + }); +} + +// Copyright Joyent, Inc. and other Node contributors. + +function isNull(arg) { + return arg === null; +} + +function isNullOrUndefined(arg) { + return arg == null; +} + +function isString(arg) { + return typeof arg === 'string'; +} + +function isObject(arg) { + return typeof arg === 'object' && arg !== null; +} + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + + +// If obj.hasOwnProperty has been overridden, then calling +// obj.hasOwnProperty(prop) will break. +// See: https://github.com/joyent/node/issues/1707 +function hasOwnProperty$1(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop); +} +var isArray = Array.isArray || function (xs) { + return Object.prototype.toString.call(xs) === '[object Array]'; +}; +function stringifyPrimitive(v) { + switch (typeof v) { + case 'string': + return v; + + case 'boolean': + return v ? 'true' : 'false'; + + case 'number': + return isFinite(v) ? v : ''; + + default: + return ''; + } +} + +function stringify (obj, sep, eq, name) { + sep = sep || '&'; + eq = eq || '='; + if (obj === null) { + obj = undefined; + } + + if (typeof obj === 'object') { + return map$1(objectKeys(obj), function(k) { + var ks = encodeURIComponent(stringifyPrimitive(k)) + eq; + if (isArray(obj[k])) { + return map$1(obj[k], function(v) { + return ks + encodeURIComponent(stringifyPrimitive(v)); + }).join(sep); + } else { + return ks + encodeURIComponent(stringifyPrimitive(obj[k])); + } + }).join(sep); + + } + + if (!name) return ''; + return encodeURIComponent(stringifyPrimitive(name)) + eq + + encodeURIComponent(stringifyPrimitive(obj)); +} +function map$1 (xs, f) { + if (xs.map) return xs.map(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + res.push(f(xs[i], i)); + } + return res; +} + +var objectKeys = Object.keys || function (obj) { + var res = []; + for (var key in obj) { + if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key); + } + return res; +}; + +function parse(qs, sep, eq, options) { + sep = sep || '&'; + eq = eq || '='; + var obj = {}; + + if (typeof qs !== 'string' || qs.length === 0) { + return obj; + } + + var regexp = /\+/g; + qs = qs.split(sep); + + var maxKeys = 1000; + if (options && typeof options.maxKeys === 'number') { + maxKeys = options.maxKeys; + } + + var len = qs.length; + // maxKeys <= 0 means that we should not limit keys count + if (maxKeys > 0 && len > maxKeys) { + len = maxKeys; + } + + for (var i = 0; i < len; ++i) { + var x = qs[i].replace(regexp, '%20'), + idx = x.indexOf(eq), + kstr, vstr, k, v; + + if (idx >= 0) { + kstr = x.substr(0, idx); + vstr = x.substr(idx + 1); + } else { + kstr = x; + vstr = ''; + } + + k = decodeURIComponent(kstr); + v = decodeURIComponent(vstr); + + if (!hasOwnProperty$1(obj, k)) { + obj[k] = v; + } else if (isArray(obj[k])) { + obj[k].push(v); + } else { + obj[k] = [obj[k], v]; + } + } + + return obj; +} + +// Copyright Joyent, Inc. and other Node contributors. +var url = { + parse: urlParse, + resolve: urlResolve, + resolveObject: urlResolveObject, + format: urlFormat, + Url: Url +}; +function Url() { + this.protocol = null; + this.slashes = null; + this.auth = null; + this.host = null; + this.port = null; + this.hostname = null; + this.hash = null; + this.search = null; + this.query = null; + this.pathname = null; + this.path = null; + this.href = null; +} + +// Reference: RFC 3986, RFC 1808, RFC 2396 + +// define these here so at least they only have to be +// compiled once on the first module load. +var protocolPattern = /^([a-z0-9.+-]+:)/i, + portPattern = /:[0-9]*$/, + + // Special case for a simple path URL + simplePathPattern = /^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/, + + // RFC 2396: characters reserved for delimiting URLs. + // We actually just auto-escape these. + delims = ['<', '>', '"', '`', ' ', '\r', '\n', '\t'], + + // RFC 2396: characters not allowed for various reasons. + unwise = ['{', '}', '|', '\\', '^', '`'].concat(delims), + + // Allowed by RFCs, but cause of XSS attacks. Always escape these. + autoEscape = ['\''].concat(unwise), + // Characters that are never ever allowed in a hostname. + // Note that any invalid chars are also handled, but these + // are the ones that are *expected* to be seen, so we fast-path + // them. + nonHostChars = ['%', '/', '?', ';', '#'].concat(autoEscape), + hostEndingChars = ['/', '?', '#'], + hostnameMaxLen = 255, + hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/, + hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/, + // protocols that can allow "unsafe" and "unwise" chars. + unsafeProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that never have a hostname. + hostlessProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that always contain a // bit. + slashedProtocol = { + 'http': true, + 'https': true, + 'ftp': true, + 'gopher': true, + 'file': true, + 'http:': true, + 'https:': true, + 'ftp:': true, + 'gopher:': true, + 'file:': true + }; + +function urlParse(url, parseQueryString, slashesDenoteHost) { + if (url && isObject(url) && url instanceof Url) return url; + + var u = new Url; + u.parse(url, parseQueryString, slashesDenoteHost); + return u; +} +Url.prototype.parse = function(url, parseQueryString, slashesDenoteHost) { + return parse$1(this, url, parseQueryString, slashesDenoteHost); +}; + +function parse$1(self, url, parseQueryString, slashesDenoteHost) { + if (!isString(url)) { + throw new TypeError('Parameter \'url\' must be a string, not ' + typeof url); + } + + // Copy chrome, IE, opera backslash-handling behavior. + // Back slashes before the query string get converted to forward slashes + // See: https://code.google.com/p/chromium/issues/detail?id=25916 + var queryIndex = url.indexOf('?'), + splitter = + (queryIndex !== -1 && queryIndex < url.indexOf('#')) ? '?' : '#', + uSplit = url.split(splitter), + slashRegex = /\\/g; + uSplit[0] = uSplit[0].replace(slashRegex, '/'); + url = uSplit.join(splitter); + + var rest = url; + + // trim before proceeding. + // This is to support parse stuff like " http://foo.com \n" + rest = rest.trim(); + + if (!slashesDenoteHost && url.split('#').length === 1) { + // Try fast path regexp + var simplePath = simplePathPattern.exec(rest); + if (simplePath) { + self.path = rest; + self.href = rest; + self.pathname = simplePath[1]; + if (simplePath[2]) { + self.search = simplePath[2]; + if (parseQueryString) { + self.query = parse(self.search.substr(1)); + } else { + self.query = self.search.substr(1); + } + } else if (parseQueryString) { + self.search = ''; + self.query = {}; + } + return self; + } + } + + var proto = protocolPattern.exec(rest); + if (proto) { + proto = proto[0]; + var lowerProto = proto.toLowerCase(); + self.protocol = lowerProto; + rest = rest.substr(proto.length); + } + + // figure out if it's got a host + // user@server is *always* interpreted as a hostname, and url + // resolution will treat //foo/bar as host=foo,path=bar because that's + // how the browser resolves relative URLs. + if (slashesDenoteHost || proto || rest.match(/^\/\/[^@\/]+@[^@\/]+/)) { + var slashes = rest.substr(0, 2) === '//'; + if (slashes && !(proto && hostlessProtocol[proto])) { + rest = rest.substr(2); + self.slashes = true; + } + } + var i, hec, l, p; + if (!hostlessProtocol[proto] && + (slashes || (proto && !slashedProtocol[proto]))) { + + // there's a hostname. + // the first instance of /, ?, ;, or # ends the host. + // + // If there is an @ in the hostname, then non-host chars *are* allowed + // to the left of the last @ sign, unless some host-ending character + // comes *before* the @-sign. + // URLs are obnoxious. + // + // ex: + // http://a@b@c/ => user:a@b host:c + // http://a@b?@c => user:a host:c path:/?@c + + // v0.12 TODO(isaacs): This is not quite how Chrome does things. + // Review our test case against browsers more comprehensively. + + // find the first instance of any hostEndingChars + var hostEnd = -1; + for (i = 0; i < hostEndingChars.length; i++) { + hec = rest.indexOf(hostEndingChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + + // at this point, either we have an explicit point where the + // auth portion cannot go past, or the last @ char is the decider. + var auth, atSign; + if (hostEnd === -1) { + // atSign can be anywhere. + atSign = rest.lastIndexOf('@'); + } else { + // atSign must be in auth portion. + // http://a@b/c@d => host:b auth:a path:/c@d + atSign = rest.lastIndexOf('@', hostEnd); + } + + // Now we have a portion which is definitely the auth. + // Pull that off. + if (atSign !== -1) { + auth = rest.slice(0, atSign); + rest = rest.slice(atSign + 1); + self.auth = decodeURIComponent(auth); + } + + // the host is the remaining to the left of the first non-host char + hostEnd = -1; + for (i = 0; i < nonHostChars.length; i++) { + hec = rest.indexOf(nonHostChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + // if we still have not hit it, then the entire thing is a host. + if (hostEnd === -1) + hostEnd = rest.length; + + self.host = rest.slice(0, hostEnd); + rest = rest.slice(hostEnd); + + // pull out port. + parseHost(self); + + // we've indicated that there is a hostname, + // so even if it's empty, it has to be present. + self.hostname = self.hostname || ''; + + // if hostname begins with [ and ends with ] + // assume that it's an IPv6 address. + var ipv6Hostname = self.hostname[0] === '[' && + self.hostname[self.hostname.length - 1] === ']'; + + // validate a little. + if (!ipv6Hostname) { + var hostparts = self.hostname.split(/\./); + for (i = 0, l = hostparts.length; i < l; i++) { + var part = hostparts[i]; + if (!part) continue; + if (!part.match(hostnamePartPattern)) { + var newpart = ''; + for (var j = 0, k = part.length; j < k; j++) { + if (part.charCodeAt(j) > 127) { + // we replace non-ASCII char with a temporary placeholder + // we need this to make sure size of hostname is not + // broken by replacing non-ASCII by nothing + newpart += 'x'; + } else { + newpart += part[j]; + } + } + // we test again with ASCII char only + if (!newpart.match(hostnamePartPattern)) { + var validParts = hostparts.slice(0, i); + var notHost = hostparts.slice(i + 1); + var bit = part.match(hostnamePartStart); + if (bit) { + validParts.push(bit[1]); + notHost.unshift(bit[2]); + } + if (notHost.length) { + rest = '/' + notHost.join('.') + rest; + } + self.hostname = validParts.join('.'); + break; + } + } + } + } + + if (self.hostname.length > hostnameMaxLen) { + self.hostname = ''; + } else { + // hostnames are always lower case. + self.hostname = self.hostname.toLowerCase(); + } + + if (!ipv6Hostname) { + // IDNA Support: Returns a punycoded representation of "domain". + // It only converts parts of the domain name that + // have non-ASCII characters, i.e. it doesn't matter if + // you call it with a domain that already is ASCII-only. + self.hostname = toASCII(self.hostname); + } + + p = self.port ? ':' + self.port : ''; + var h = self.hostname || ''; + self.host = h + p; + self.href += self.host; + + // strip [ and ] from the hostname + // the host field still retains them, though + if (ipv6Hostname) { + self.hostname = self.hostname.substr(1, self.hostname.length - 2); + if (rest[0] !== '/') { + rest = '/' + rest; + } + } + } + + // now rest is set to the post-host stuff. + // chop off any delim chars. + if (!unsafeProtocol[lowerProto]) { + + // First, make 100% sure that any "autoEscape" chars get + // escaped, even if encodeURIComponent doesn't think they + // need to be. + for (i = 0, l = autoEscape.length; i < l; i++) { + var ae = autoEscape[i]; + if (rest.indexOf(ae) === -1) + continue; + var esc = encodeURIComponent(ae); + if (esc === ae) { + esc = escape(ae); + } + rest = rest.split(ae).join(esc); + } + } + + + // chop off from the tail first. + var hash = rest.indexOf('#'); + if (hash !== -1) { + // got a fragment string. + self.hash = rest.substr(hash); + rest = rest.slice(0, hash); + } + var qm = rest.indexOf('?'); + if (qm !== -1) { + self.search = rest.substr(qm); + self.query = rest.substr(qm + 1); + if (parseQueryString) { + self.query = parse(self.query); + } + rest = rest.slice(0, qm); + } else if (parseQueryString) { + // no query string, but parseQueryString still requested + self.search = ''; + self.query = {}; + } + if (rest) self.pathname = rest; + if (slashedProtocol[lowerProto] && + self.hostname && !self.pathname) { + self.pathname = '/'; + } + + //to support http.request + if (self.pathname || self.search) { + p = self.pathname || ''; + var s = self.search || ''; + self.path = p + s; + } + + // finally, reconstruct the href based on what has been validated. + self.href = format(self); + return self; +} + +// format a parsed object into a url string +function urlFormat(obj) { + // ensure it's an object, and not a string url. + // If it's an obj, this is a no-op. + // this way, you can call url_format() on strings + // to clean up potentially wonky urls. + if (isString(obj)) obj = parse$1({}, obj); + return format(obj); +} + +function format(self) { + var auth = self.auth || ''; + if (auth) { + auth = encodeURIComponent(auth); + auth = auth.replace(/%3A/i, ':'); + auth += '@'; + } + + var protocol = self.protocol || '', + pathname = self.pathname || '', + hash = self.hash || '', + host = false, + query = ''; + + if (self.host) { + host = auth + self.host; + } else if (self.hostname) { + host = auth + (self.hostname.indexOf(':') === -1 ? + self.hostname : + '[' + this.hostname + ']'); + if (self.port) { + host += ':' + self.port; + } + } + + if (self.query && + isObject(self.query) && + Object.keys(self.query).length) { + query = stringify(self.query); + } + + var search = self.search || (query && ('?' + query)) || ''; + + if (protocol && protocol.substr(-1) !== ':') protocol += ':'; + + // only the slashedProtocols get the //. Not mailto:, xmpp:, etc. + // unless they had them to begin with. + if (self.slashes || + (!protocol || slashedProtocol[protocol]) && host !== false) { + host = '//' + (host || ''); + if (pathname && pathname.charAt(0) !== '/') pathname = '/' + pathname; + } else if (!host) { + host = ''; + } + + if (hash && hash.charAt(0) !== '#') hash = '#' + hash; + if (search && search.charAt(0) !== '?') search = '?' + search; + + pathname = pathname.replace(/[?#]/g, function(match) { + return encodeURIComponent(match); + }); + search = search.replace('#', '%23'); + + return protocol + host + pathname + search + hash; +} + +Url.prototype.format = function() { + return format(this); +}; + +function urlResolve(source, relative) { + return urlParse(source, false, true).resolve(relative); +} + +Url.prototype.resolve = function(relative) { + return this.resolveObject(urlParse(relative, false, true)).format(); +}; + +function urlResolveObject(source, relative) { + if (!source) return relative; + return urlParse(source, false, true).resolveObject(relative); +} + +Url.prototype.resolveObject = function(relative) { + if (isString(relative)) { + var rel = new Url(); + rel.parse(relative, false, true); + relative = rel; + } + + var result = new Url(); + var tkeys = Object.keys(this); + for (var tk = 0; tk < tkeys.length; tk++) { + var tkey = tkeys[tk]; + result[tkey] = this[tkey]; + } + + // hash is always overridden, no matter what. + // even href="" will remove it. + result.hash = relative.hash; + + // if the relative url is empty, then there's nothing left to do here. + if (relative.href === '') { + result.href = result.format(); + return result; + } + + // hrefs like //foo/bar always cut to the protocol. + if (relative.slashes && !relative.protocol) { + // take everything except the protocol from relative + var rkeys = Object.keys(relative); + for (var rk = 0; rk < rkeys.length; rk++) { + var rkey = rkeys[rk]; + if (rkey !== 'protocol') + result[rkey] = relative[rkey]; + } + + //urlParse appends trailing / to urls like http://www.example.com + if (slashedProtocol[result.protocol] && + result.hostname && !result.pathname) { + result.path = result.pathname = '/'; + } + + result.href = result.format(); + return result; + } + var relPath; + if (relative.protocol && relative.protocol !== result.protocol) { + // if it's a known url protocol, then changing + // the protocol does weird things + // first, if it's not file:, then we MUST have a host, + // and if there was a path + // to begin with, then we MUST have a path. + // if it is file:, then the host is dropped, + // because that's known to be hostless. + // anything else is assumed to be absolute. + if (!slashedProtocol[relative.protocol]) { + var keys = Object.keys(relative); + for (var v = 0; v < keys.length; v++) { + var k = keys[v]; + result[k] = relative[k]; + } + result.href = result.format(); + return result; + } + + result.protocol = relative.protocol; + if (!relative.host && !hostlessProtocol[relative.protocol]) { + relPath = (relative.pathname || '').split('/'); + while (relPath.length && !(relative.host = relPath.shift())); + if (!relative.host) relative.host = ''; + if (!relative.hostname) relative.hostname = ''; + if (relPath[0] !== '') relPath.unshift(''); + if (relPath.length < 2) relPath.unshift(''); + result.pathname = relPath.join('/'); + } else { + result.pathname = relative.pathname; + } + result.search = relative.search; + result.query = relative.query; + result.host = relative.host || ''; + result.auth = relative.auth; + result.hostname = relative.hostname || relative.host; + result.port = relative.port; + // to support http.request + if (result.pathname || result.search) { + var p = result.pathname || ''; + var s = result.search || ''; + result.path = p + s; + } + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; + } + + var isSourceAbs = (result.pathname && result.pathname.charAt(0) === '/'), + isRelAbs = ( + relative.host || + relative.pathname && relative.pathname.charAt(0) === '/' + ), + mustEndAbs = (isRelAbs || isSourceAbs || + (result.host && relative.pathname)), + removeAllDots = mustEndAbs, + srcPath = result.pathname && result.pathname.split('/') || [], + psychotic = result.protocol && !slashedProtocol[result.protocol]; + relPath = relative.pathname && relative.pathname.split('/') || []; + // if the url is a non-slashed url, then relative + // links like ../.. should be able + // to crawl up to the hostname, as well. This is strange. + // result.protocol has already been set by now. + // Later on, put the first path part into the host field. + if (psychotic) { + result.hostname = ''; + result.port = null; + if (result.host) { + if (srcPath[0] === '') srcPath[0] = result.host; + else srcPath.unshift(result.host); + } + result.host = ''; + if (relative.protocol) { + relative.hostname = null; + relative.port = null; + if (relative.host) { + if (relPath[0] === '') relPath[0] = relative.host; + else relPath.unshift(relative.host); + } + relative.host = null; + } + mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === ''); + } + var authInHost; + if (isRelAbs) { + // it's absolute. + result.host = (relative.host || relative.host === '') ? + relative.host : result.host; + result.hostname = (relative.hostname || relative.hostname === '') ? + relative.hostname : result.hostname; + result.search = relative.search; + result.query = relative.query; + srcPath = relPath; + // fall through to the dot-handling below. + } else if (relPath.length) { + // it's relative + // throw away the existing file, and take the new path instead. + if (!srcPath) srcPath = []; + srcPath.pop(); + srcPath = srcPath.concat(relPath); + result.search = relative.search; + result.query = relative.query; + } else if (!isNullOrUndefined(relative.search)) { + // just pull out the search. + // like href='?foo'. + // Put this after the other two cases because it simplifies the booleans + if (psychotic) { + result.hostname = result.host = srcPath.shift(); + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + result.search = relative.search; + result.query = relative.query; + //to support http.request + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.href = result.format(); + return result; + } + + if (!srcPath.length) { + // no path at all. easy. + // we've already handled the other stuff above. + result.pathname = null; + //to support http.request + if (result.search) { + result.path = '/' + result.search; + } else { + result.path = null; + } + result.href = result.format(); + return result; + } + + // if a url ENDs in . or .., then it must get a trailing slash. + // however, if it ends in anything else non-slashy, + // then it must NOT get a trailing slash. + var last = srcPath.slice(-1)[0]; + var hasTrailingSlash = ( + (result.host || relative.host || srcPath.length > 1) && + (last === '.' || last === '..') || last === ''); + + // strip single dots, resolve double dots to parent dir + // if the path tries to go above the root, `up` ends up > 0 + var up = 0; + for (var i = srcPath.length; i >= 0; i--) { + last = srcPath[i]; + if (last === '.') { + srcPath.splice(i, 1); + } else if (last === '..') { + srcPath.splice(i, 1); + up++; + } else if (up) { + srcPath.splice(i, 1); + up--; + } + } + + // if the path is allowed to go above the root, restore leading ..s + if (!mustEndAbs && !removeAllDots) { + for (; up--; up) { + srcPath.unshift('..'); + } + } + + if (mustEndAbs && srcPath[0] !== '' && + (!srcPath[0] || srcPath[0].charAt(0) !== '/')) { + srcPath.unshift(''); + } + + if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) { + srcPath.push(''); + } + + var isAbsolute = srcPath[0] === '' || + (srcPath[0] && srcPath[0].charAt(0) === '/'); + + // put the host back + if (psychotic) { + result.hostname = result.host = isAbsolute ? '' : + srcPath.length ? srcPath.shift() : ''; + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + + mustEndAbs = mustEndAbs || (result.host && srcPath.length); + + if (mustEndAbs && !isAbsolute) { + srcPath.unshift(''); + } + + if (!srcPath.length) { + result.pathname = null; + result.path = null; + } else { + result.pathname = srcPath.join('/'); + } + + //to support request.http + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.auth = relative.auth || result.auth; + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; +}; + +Url.prototype.parseHost = function() { + return parseHost(this); +}; + +function parseHost(self) { + var host = self.host; + var port = portPattern.exec(host); + if (port) { + port = port[0]; + if (port !== ':') { + self.port = port.substr(1); + } + host = host.substr(0, host.length - port.length); + } + if (host) self.hostname = host; +} + +/*! + * @pixi/constants - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/constants is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * Different types of environments for WebGL. + * + * @static + * @memberof PIXI + * @name ENV + * @enum {number} + * @property {number} WEBGL_LEGACY - Used for older v1 WebGL devices. PixiJS will aim to ensure compatibility + * with older / less advanced devices. If you experience unexplained flickering prefer this environment. + * @property {number} WEBGL - Version 1 of WebGL + * @property {number} WEBGL2 - Version 2 of WebGL + */ +var ENV = { + WEBGL_LEGACY: 0, + WEBGL: 1, + WEBGL2: 2, +}; + +/** + * Constant to identify the Renderer Type. + * + * @static + * @memberof PIXI + * @name RENDERER_TYPE + * @enum {number} + * @property {number} UNKNOWN - Unknown render type. + * @property {number} WEBGL - WebGL render type. + * @property {number} CANVAS - Canvas render type. + */ +var RENDERER_TYPE = { + UNKNOWN: 0, + WEBGL: 1, + CANVAS: 2, +}; + +/** + * Various blend modes supported by PIXI. + * + * IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes. + * Anything else will silently act like NORMAL. + * + * @memberof PIXI + * @name BLEND_MODES + * @enum {number} + * @property {number} NORMAL + * @property {number} ADD + * @property {number} MULTIPLY + * @property {number} SCREEN + * @property {number} OVERLAY + * @property {number} DARKEN + * @property {number} LIGHTEN + * @property {number} COLOR_DODGE + * @property {number} COLOR_BURN + * @property {number} HARD_LIGHT + * @property {number} SOFT_LIGHT + * @property {number} DIFFERENCE + * @property {number} EXCLUSION + * @property {number} HUE + * @property {number} SATURATION + * @property {number} COLOR + * @property {number} LUMINOSITY + * @property {number} NORMAL_NPM + * @property {number} ADD_NPM + * @property {number} SCREEN_NPM + * @property {number} NONE + * @property {number} SRC_IN + * @property {number} SRC_OUT + * @property {number} SRC_ATOP + * @property {number} DST_OVER + * @property {number} DST_IN + * @property {number} DST_OUT + * @property {number} DST_ATOP + * @property {number} SUBTRACT + * @property {number} SRC_OVER + * @property {number} ERASE + */ +var BLEND_MODES = { + NORMAL: 0, + ADD: 1, + MULTIPLY: 2, + SCREEN: 3, + OVERLAY: 4, + DARKEN: 5, + LIGHTEN: 6, + COLOR_DODGE: 7, + COLOR_BURN: 8, + HARD_LIGHT: 9, + SOFT_LIGHT: 10, + DIFFERENCE: 11, + EXCLUSION: 12, + HUE: 13, + SATURATION: 14, + COLOR: 15, + LUMINOSITY: 16, + NORMAL_NPM: 17, + ADD_NPM: 18, + SCREEN_NPM: 19, + NONE: 20, + + SRC_OVER: 0, + SRC_IN: 21, + SRC_OUT: 22, + SRC_ATOP: 23, + DST_OVER: 24, + DST_IN: 25, + DST_OUT: 26, + DST_ATOP: 27, + ERASE: 26, + SUBTRACT: 28, +}; + +/** + * Various webgl draw modes. These can be used to specify which GL drawMode to use + * under certain situations and renderers. + * + * @memberof PIXI + * @static + * @name DRAW_MODES + * @enum {number} + * @property {number} POINTS + * @property {number} LINES + * @property {number} LINE_LOOP + * @property {number} LINE_STRIP + * @property {number} TRIANGLES + * @property {number} TRIANGLE_STRIP + * @property {number} TRIANGLE_FAN + */ +var DRAW_MODES = { + POINTS: 0, + LINES: 1, + LINE_LOOP: 2, + LINE_STRIP: 3, + TRIANGLES: 4, + TRIANGLE_STRIP: 5, + TRIANGLE_FAN: 6, +}; + +/** + * Various GL texture/resources formats. + * + * @memberof PIXI + * @static + * @name FORMATS + * @enum {number} + * @property {number} RGBA=6408 + * @property {number} RGB=6407 + * @property {number} ALPHA=6406 + * @property {number} LUMINANCE=6409 + * @property {number} LUMINANCE_ALPHA=6410 + * @property {number} DEPTH_COMPONENT=6402 + * @property {number} DEPTH_STENCIL=34041 + */ +var FORMATS = { + RGBA: 6408, + RGB: 6407, + ALPHA: 6406, + LUMINANCE: 6409, + LUMINANCE_ALPHA: 6410, + DEPTH_COMPONENT: 6402, + DEPTH_STENCIL: 34041, +}; + +/** + * Various GL target types. + * + * @memberof PIXI + * @static + * @name TARGETS + * @enum {number} + * @property {number} TEXTURE_2D=3553 + * @property {number} TEXTURE_CUBE_MAP=34067 + * @property {number} TEXTURE_2D_ARRAY=35866 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_X=34069 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_X=34070 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Y=34071 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Y=34072 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Z=34073 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Z=34074 + */ +var TARGETS = { + TEXTURE_2D: 3553, + TEXTURE_CUBE_MAP: 34067, + TEXTURE_2D_ARRAY: 35866, + TEXTURE_CUBE_MAP_POSITIVE_X: 34069, + TEXTURE_CUBE_MAP_NEGATIVE_X: 34070, + TEXTURE_CUBE_MAP_POSITIVE_Y: 34071, + TEXTURE_CUBE_MAP_NEGATIVE_Y: 34072, + TEXTURE_CUBE_MAP_POSITIVE_Z: 34073, + TEXTURE_CUBE_MAP_NEGATIVE_Z: 34074, +}; + +/** + * Various GL data format types. + * + * @memberof PIXI + * @static + * @name TYPES + * @enum {number} + * @property {number} UNSIGNED_BYTE=5121 + * @property {number} UNSIGNED_SHORT=5123 + * @property {number} UNSIGNED_SHORT_5_6_5=33635 + * @property {number} UNSIGNED_SHORT_4_4_4_4=32819 + * @property {number} UNSIGNED_SHORT_5_5_5_1=32820 + * @property {number} FLOAT=5126 + * @property {number} HALF_FLOAT=36193 + */ +var TYPES = { + UNSIGNED_BYTE: 5121, + UNSIGNED_SHORT: 5123, + UNSIGNED_SHORT_5_6_5: 33635, + UNSIGNED_SHORT_4_4_4_4: 32819, + UNSIGNED_SHORT_5_5_5_1: 32820, + FLOAT: 5126, + HALF_FLOAT: 36193, +}; + +/** + * The scale modes that are supported by pixi. + * + * The {@link PIXI.settings.SCALE_MODE} scale mode affects the default scaling mode of future operations. + * It can be re-assigned to either LINEAR or NEAREST, depending upon suitability. + * + * @memberof PIXI + * @static + * @name SCALE_MODES + * @enum {number} + * @property {number} LINEAR Smooth scaling + * @property {number} NEAREST Pixelating scaling + */ +var SCALE_MODES = { + LINEAR: 1, + NEAREST: 0, +}; + +/** + * The wrap modes that are supported by pixi. + * + * The {@link PIXI.settings.WRAP_MODE} wrap mode affects the default wrapping mode of future operations. + * It can be re-assigned to either CLAMP or REPEAT, depending upon suitability. + * If the texture is non power of two then clamp will be used regardless as WebGL can + * only use REPEAT if the texture is po2. + * + * This property only affects WebGL. + * + * @name WRAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} CLAMP - The textures uvs are clamped + * @property {number} REPEAT - The texture uvs tile and repeat + * @property {number} MIRRORED_REPEAT - The texture uvs tile and repeat with mirroring + */ +var WRAP_MODES = { + CLAMP: 33071, + REPEAT: 10497, + MIRRORED_REPEAT: 33648, +}; + +/** + * Mipmap filtering modes that are supported by pixi. + * + * The {@link PIXI.settings.MIPMAP_TEXTURES} affects default texture filtering. + * Mipmaps are generated for a baseTexture if its `mipmap` field is `ON`, + * or its `POW2` and texture dimensions are powers of 2. + * Due to platform restriction, `ON` option will work like `POW2` for webgl-1. + * + * This property only affects WebGL. + * + * @name MIPMAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} OFF - No mipmaps + * @property {number} POW2 - Generate mipmaps if texture dimensions are pow2 + * @property {number} ON - Always generate mipmaps + */ +var MIPMAP_MODES = { + OFF: 0, + POW2: 1, + ON: 2, +}; + +/** + * The gc modes that are supported by pixi. + * + * The {@link PIXI.settings.GC_MODE} Garbage Collection mode for PixiJS textures is AUTO + * If set to GC_MODE, the renderer will occasionally check textures usage. If they are not + * used for a specified period of time they will be removed from the GPU. They will of course + * be uploaded again when they are required. This is a silent behind the scenes process that + * should ensure that the GPU does not get filled up. + * + * Handy for mobile devices! + * This property only affects WebGL. + * + * @name GC_MODES + * @enum {number} + * @static + * @memberof PIXI + * @property {number} AUTO - Garbage collection will happen periodically automatically + * @property {number} MANUAL - Garbage collection will need to be called manually + */ +var GC_MODES = { + AUTO: 0, + MANUAL: 1, +}; + +/** + * Constants that specify float precision in shaders. + * + * @name PRECISION + * @memberof PIXI + * @static + * @enum {string} + * @constant + * @property {string} LOW='lowp' + * @property {string} MEDIUM='mediump' + * @property {string} HIGH='highp' + */ +var PRECISION = { + LOW: 'lowp', + MEDIUM: 'mediump', + HIGH: 'highp', +}; + +/*! + * @pixi/utils - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/utils is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The prefix that denotes a URL is for a retina asset. + * + * @static + * @name RETINA_PREFIX + * @memberof PIXI.settings + * @type {RegExp} + * @default /@([0-9\.]+)x/ + * @example `@2x` + */ +settings.RETINA_PREFIX = /@([0-9\.]+)x/; + +/** + * Should the `failIfMajorPerformanceCaveat` flag be enabled as a context option used in the `isWebGLSupported` function. + * For most scenarios this should be left as true, as otherwise the user may have a poor experience. + * However, it can be useful to disable under certain scenarios, such as headless unit tests. + * + * @static + * @name FAIL_IF_MAJOR_PERFORMANCE_CAVEAT + * @memberof PIXI.settings + * @type {boolean} + * @default true + */ +settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = true; + +var saidHello = false; +var VERSION = '5.1.3'; + +/** + * Logs out the version and renderer information for this running instance of PIXI. + * If you don't want to see this message you can run `PIXI.utils.skipHello()` before + * creating your renderer. Keep in mind that doing that will forever make you a jerk face. + * + * @static + * @function sayHello + * @memberof PIXI.utils + * @param {string} type - The string renderer type to log. + */ +function sayHello(type) +{ + if (saidHello) + { + return; + } + + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + var args = [ + ("\n %c %c %c PixiJS " + VERSION + " - ✰ " + type + " ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \n\n"), + 'background: #ff66a5; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff66a5; background: #030307; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'background: #ffc3dc; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;' ]; + + window.console.log.apply(console, args); + } + else if (window.console) + { + window.console.log(("PixiJS " + VERSION + " - " + type + " - http://www.pixijs.com/")); + } + + saidHello = true; +} + +var supported; + +/** + * Helper for checking for WebGL support. + * + * @memberof PIXI.utils + * @function isWebGLSupported + * @return {boolean} Is WebGL supported. + */ +function isWebGLSupported() +{ + if (typeof supported === 'undefined') + { + supported = (function supported() + { + var contextOptions = { + stencil: true, + failIfMajorPerformanceCaveat: settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT, + }; + + try + { + if (!window.WebGLRenderingContext) + { + return false; + } + + var canvas = document.createElement('canvas'); + var gl = canvas.getContext('webgl', contextOptions) + || canvas.getContext('experimental-webgl', contextOptions); + + var success = !!(gl && gl.getContextAttributes().stencil); + + if (gl) + { + var loseContext = gl.getExtension('WEBGL_lose_context'); + + if (loseContext) + { + loseContext.loseContext(); + } + } + + gl = null; + + return success; + } + catch (e) + { + return false; + } + })(); + } + + return supported; +} + +/** + * Converts a hexadecimal color number to an [R, G, B] array of normalized floats (numbers from 0.0 to 1.0). + * + * @example + * PIXI.utils.hex2rgb(0xffffff); // returns [1, 1, 1] + * @memberof PIXI.utils + * @function hex2rgb + * @param {number} hex - The hexadecimal number to convert + * @param {number[]} [out=[]] If supplied, this array will be used rather than returning a new one + * @return {number[]} An array representing the [R, G, B] of the color where all values are floats. + */ +function hex2rgb(hex, out) +{ + out = out || []; + + out[0] = ((hex >> 16) & 0xFF) / 255; + out[1] = ((hex >> 8) & 0xFF) / 255; + out[2] = (hex & 0xFF) / 255; + + return out; +} + +/** + * Converts a hexadecimal color number to a string. + * + * @example + * PIXI.utils.hex2string(0xffffff); // returns "#ffffff" + * @memberof PIXI.utils + * @function hex2string + * @param {number} hex - Number in hex (e.g., `0xffffff`) + * @return {string} The string color (e.g., `"#ffffff"`). + */ +function hex2string(hex) +{ + hex = hex.toString(16); + hex = '000000'.substr(0, 6 - hex.length) + hex; + + return ("#" + hex); +} + +/** + * Converts a hexadecimal string to a hexadecimal color number. + * + * @example + * PIXI.utils.string2hex("#ffffff"); // returns 0xffffff + * @memberof PIXI.utils + * @function string2hex + * @param {string} The string color (e.g., `"#ffffff"`) + * @return {number} Number in hexadecimal. + */ +function string2hex(string) +{ + if (typeof string === 'string' && string[0] === '#') + { + string = string.substr(1); + } + + return parseInt(string, 16); +} + +/** + * Corrects PixiJS blend, takes premultiplied alpha into account + * + * @memberof PIXI.utils + * @function mapPremultipliedBlendModes + * @private + * @param {Array} [array] - The array to output into. + * @return {Array} Mapped modes. + */ +function mapPremultipliedBlendModes() +{ + var pm = []; + var npm = []; + + for (var i = 0; i < 32; i++) + { + pm[i] = i; + npm[i] = i; + } + + pm[BLEND_MODES.NORMAL_NPM] = BLEND_MODES.NORMAL; + pm[BLEND_MODES.ADD_NPM] = BLEND_MODES.ADD; + pm[BLEND_MODES.SCREEN_NPM] = BLEND_MODES.SCREEN; + + npm[BLEND_MODES.NORMAL] = BLEND_MODES.NORMAL_NPM; + npm[BLEND_MODES.ADD] = BLEND_MODES.ADD_NPM; + npm[BLEND_MODES.SCREEN] = BLEND_MODES.SCREEN_NPM; + + var array = []; + + array.push(npm); + array.push(pm); + + return array; +} + +/** + * maps premultiply flag and blendMode to adjusted blendMode + * @memberof PIXI.utils + * @const premultiplyBlendMode + * @type {Array} + */ +var premultiplyBlendMode = mapPremultipliedBlendModes(); + +/** + * changes blendMode according to texture format + * + * @memberof PIXI.utils + * @function correctBlendMode + * @param {number} blendMode supposed blend mode + * @param {boolean} premultiplied whether source is premultiplied + * @returns {number} true blend mode for this texture + */ +function correctBlendMode(blendMode, premultiplied) +{ + return premultiplyBlendMode[premultiplied ? 1 : 0][blendMode]; +} + +/** + * combines rgb and alpha to out array + * + * @memberof PIXI.utils + * @function premultiplyRgba + * @param {Float32Array|number[]} rgb input rgb + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyRgba(rgb, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + if (premultiply || premultiply === undefined) + { + out[0] = rgb[0] * alpha; + out[1] = rgb[1] * alpha; + out[2] = rgb[2] * alpha; + } + else + { + out[0] = rgb[0]; + out[1] = rgb[1]; + out[2] = rgb[2]; + } + out[3] = alpha; + + return out; +} + +/** + * premultiplies tint + * + * @memberof PIXI.utils + * @function premultiplyTint + * @param {number} tint integer RGB + * @param {number} alpha floating point alpha (0.0-1.0) + * @returns {number} tint multiplied by alpha + */ +function premultiplyTint(tint, alpha) +{ + if (alpha === 1.0) + { + return (alpha * 255 << 24) + tint; + } + if (alpha === 0.0) + { + return 0; + } + var R = ((tint >> 16) & 0xFF); + var G = ((tint >> 8) & 0xFF); + var B = (tint & 0xFF); + + R = ((R * alpha) + 0.5) | 0; + G = ((G * alpha) + 0.5) | 0; + B = ((B * alpha) + 0.5) | 0; + + return (alpha * 255 << 24) + (R << 16) + (G << 8) + B; +} + +/** + * converts integer tint and float alpha to vec4 form, premultiplies by default + * + * @memberof PIXI.utils + * @function premultiplyTintToRgba + * @param {number} tint input tint + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyTintToRgba(tint, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + out[0] = ((tint >> 16) & 0xFF) / 255.0; + out[1] = ((tint >> 8) & 0xFF) / 255.0; + out[2] = (tint & 0xFF) / 255.0; + if (premultiply || premultiply === undefined) + { + out[0] *= alpha; + out[1] *= alpha; + out[2] *= alpha; + } + out[3] = alpha; + + return out; +} + +/** + * Generic Mask Stack data structure + * + * @memberof PIXI.utils + * @function createIndicesForQuads + * @param {number} size - Number of quads + * @param {Uint16Array|Uint32Array} [outBuffer] - Buffer for output, length has to be `6 * size` + * @return {Uint16Array|Uint32Array} - Resulting index buffer + */ +function createIndicesForQuads(size, outBuffer) +{ + if ( outBuffer === void 0 ) outBuffer = null; + + // the total number of indices in our array, there are 6 points per quad. + var totalIndices = size * 6; + + outBuffer = outBuffer || new Uint16Array(totalIndices); + + if (outBuffer.length !== totalIndices) + { + throw new Error(("Out buffer length is incorrect, got " + (outBuffer.length) + " and expected " + totalIndices)); + } + + // fill the indices with the quads to draw + for (var i = 0, j = 0; i < totalIndices; i += 6, j += 4) + { + outBuffer[i + 0] = j + 0; + outBuffer[i + 1] = j + 1; + outBuffer[i + 2] = j + 2; + outBuffer[i + 3] = j + 0; + outBuffer[i + 4] = j + 2; + outBuffer[i + 5] = j + 3; + } + + return outBuffer; +} + +/** + * Remove items from a javascript array without generating garbage + * + * @function removeItems + * @memberof PIXI.utils + * @param {Array} arr Array to remove elements from + * @param {number} startIdx starting index + * @param {number} removeCount how many to remove + */ +function removeItems(arr, startIdx, removeCount) +{ + var length = arr.length; + var i; + + if (startIdx >= length || removeCount === 0) + { + return; + } + + removeCount = (startIdx + removeCount > length ? length - startIdx : removeCount); + + var len = length - removeCount; + + for (i = startIdx; i < len; ++i) + { + arr[i] = arr[i + removeCount]; + } + + arr.length = len; +} + +var nextUid = 0; + +/** + * Gets the next unique identifier + * + * @memberof PIXI.utils + * @function uid + * @return {number} The next unique identifier to use. + */ +function uid() +{ + return ++nextUid; +} + +/** + * Returns sign of number + * + * @memberof PIXI.utils + * @function sign + * @param {number} n - the number to check the sign of + * @returns {number} 0 if `n` is 0, -1 if `n` is negative, 1 if `n` is positive + */ +function sign$1(n) +{ + if (n === 0) { return 0; } + + return n < 0 ? -1 : 1; +} + +// Taken from the bit-twiddle package + +/** + * Rounds to next power of two. + * + * @function nextPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} + */ +function nextPow2(v) +{ + v += v === 0; + --v; + v |= v >>> 1; + v |= v >>> 2; + v |= v >>> 4; + v |= v >>> 8; + v |= v >>> 16; + + return v + 1; +} + +/** + * Checks if a number is a power of two. + * + * @function isPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {boolean} `true` if value is power of two + */ +function isPow2(v) +{ + return !(v & (v - 1)) && (!!v); +} + +/** + * Computes ceil of log base 2 + * + * @function log2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} logarithm base 2 + */ +function log2(v) +{ + var r = (v > 0xFFFF) << 4; + + v >>>= r; + + var shift = (v > 0xFF) << 3; + + v >>>= shift; r |= shift; + shift = (v > 0xF) << 2; + v >>>= shift; r |= shift; + shift = (v > 0x3) << 1; + v >>>= shift; r |= shift; + + return r | (v >> 1); +} + +/** + * @todo Describe property usage + * + * @static + * @name ProgramCache + * @memberof PIXI.utils + * @type {Object} + */ +var ProgramCache = {}; + +/** + * @todo Describe property usage + * + * @static + * @name TextureCache + * @memberof PIXI.utils + * @type {Object} + */ +var TextureCache = Object.create(null); + +/** + * @todo Describe property usage + * + * @static + * @name BaseTextureCache + * @memberof PIXI.utils + * @type {Object} + */ + +var BaseTextureCache = Object.create(null); + +/** + * Trim transparent borders from a canvas + * + * @memberof PIXI.utils + * @function trimCanvas + * @param {HTMLCanvasElement} canvas - the canvas to trim + * @returns {object} Trim data + */ +function trimCanvas(canvas) +{ + // https://gist.github.com/remy/784508 + + var width = canvas.width; + var height = canvas.height; + + var context = canvas.getContext('2d'); + var imageData = context.getImageData(0, 0, width, height); + var pixels = imageData.data; + var len = pixels.length; + + var bound = { + top: null, + left: null, + right: null, + bottom: null, + }; + var data = null; + var i; + var x; + var y; + + for (i = 0; i < len; i += 4) + { + if (pixels[i + 3] !== 0) + { + x = (i / 4) % width; + y = ~~((i / 4) / width); + + if (bound.top === null) + { + bound.top = y; + } + + if (bound.left === null) + { + bound.left = x; + } + else if (x < bound.left) + { + bound.left = x; + } + + if (bound.right === null) + { + bound.right = x + 1; + } + else if (bound.right < x) + { + bound.right = x + 1; + } + + if (bound.bottom === null) + { + bound.bottom = y; + } + else if (bound.bottom < y) + { + bound.bottom = y; + } + } + } + + if (bound.top !== null) + { + width = bound.right - bound.left; + height = bound.bottom - bound.top + 1; + data = context.getImageData(bound.left, bound.top, width, height); + } + + return { + height: height, + width: width, + data: data, + }; +} + +/** + * Creates a Canvas element of the given size to be used as a target for rendering to. + * + * @class + * @memberof PIXI.utils + */ +var CanvasRenderTarget = function CanvasRenderTarget(width, height, resolution) +{ + /** + * The Canvas object that belongs to this CanvasRenderTarget. + * + * @member {HTMLCanvasElement} + */ + this.canvas = document.createElement('canvas'); + + /** + * A CanvasRenderingContext2D object representing a two-dimensional rendering context. + * + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + this.resolution = resolution || settings.RESOLUTION; + + this.resize(width, height); +}; + +var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + +/** + * Clears the canvas that was created by the CanvasRenderTarget class. + * + * @private + */ +CanvasRenderTarget.prototype.clear = function clear () +{ + this.context.setTransform(1, 0, 0, 1, 0, 0); + this.context.clearRect(0, 0, this.canvas.width, this.canvas.height); +}; + +/** + * Resizes the canvas to the specified width and height. + * + * @param {number} width - the new width of the canvas + * @param {number} height - the new height of the canvas + */ +CanvasRenderTarget.prototype.resize = function resize (width, height) +{ + this.canvas.width = width * this.resolution; + this.canvas.height = height * this.resolution; +}; + +/** + * Destroys this canvas. + * + */ +CanvasRenderTarget.prototype.destroy = function destroy () +{ + this.context = null; + this.canvas = null; +}; + +/** + * The width of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.width.get = function () +{ + return this.canvas.width; +}; + +prototypeAccessors.width.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.width = val; +}; + +/** + * The height of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.height.get = function () +{ + return this.canvas.height; +}; + +prototypeAccessors.height.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.height = val; +}; + +Object.defineProperties( CanvasRenderTarget.prototype, prototypeAccessors ); + +var tempAnchor; + +/** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * Nipped from the resource loader! + * + * @ignore + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ +function determineCrossOrigin(url$1, loc) +{ + if ( loc === void 0 ) loc = window.location; + + // data: and javascript: urls are considered same-origin + if (url$1.indexOf('data:') === 0) + { + return ''; + } + + // default is window.location + loc = loc || window.location; + + if (!tempAnchor) + { + tempAnchor = document.createElement('a'); + } + + // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + tempAnchor.href = url$1; + url$1 = url.parse(tempAnchor.href); + + var samePort = (!url$1.port && loc.port === '') || (url$1.port === loc.port); + + // if cross origin + if (url$1.hostname !== loc.hostname || !samePort || url$1.protocol !== loc.protocol) + { + return 'anonymous'; + } + + return ''; +} + +/** + * get the resolution / device pixel ratio of an asset by looking for the prefix + * used by spritesheets and image urls + * + * @memberof PIXI.utils + * @function getResolutionOfUrl + * @param {string} url - the image path + * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set. + * @return {number} resolution / device pixel ratio of an asset + */ +function getResolutionOfUrl(url, defaultValue) +{ + var resolution = settings.RETINA_PREFIX.exec(url); + + if (resolution) + { + return parseFloat(resolution[1]); + } + + return defaultValue !== undefined ? defaultValue : 1; +} + +// A map of warning messages already fired +var warnings = {}; + +/** + * Helper for warning developers about deprecated features & settings. + * A stack track for warnings is given; useful for tracking-down where + * deprecated methods/properties/classes are being used within the code. + * + * @memberof PIXI.utils + * @function deprecation + * @param {string} version - The version where the feature became deprecated + * @param {string} message - Message should include what is deprecated, where, and the new solution + * @param {number} [ignoreDepth=3] - The number of steps to ignore at the top of the error stack + * this is mostly to ignore internal deprecation calls. + */ +function deprecation(version, message, ignoreDepth) +{ + if ( ignoreDepth === void 0 ) ignoreDepth = 3; + + // Ignore duplicat + if (warnings[message]) + { + return; + } + + /* eslint-disable no-console */ + var stack = new Error().stack; + + // Handle IE < 10 and Safari < 6 + if (typeof stack === 'undefined') + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + } + else + { + // chop off the stack trace which includes PixiJS internal calls + stack = stack.split('\n').splice(ignoreDepth).join('\n'); + + if (console.groupCollapsed) + { + console.groupCollapsed( + '%cPixiJS Deprecation Warning: %c%s', + 'color:#614108;background:#fffbe6', + 'font-weight:normal;color:#614108;background:#fffbe6', + (message + "\nDeprecated since v" + version) + ); + console.warn(stack); + console.groupEnd(); + } + else + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + console.warn(stack); + } + } + /* eslint-enable no-console */ + + warnings[message] = true; +} + +/*! + * @pixi/math - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/math is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * @class + * @memberof PIXI + */ +var Point = function Point(x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; +}; + +/** + * Creates a clone of this point + * + * @return {PIXI.Point} a copy of the point + */ +Point.prototype.clone = function clone () +{ + return new Point(this.x, this.y); +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from + * @returns {PIXI.IPoint} Returns itself. + */ +Point.prototype.copyFrom = function copyFrom (p) +{ + this.set(p.x, p.y); + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +Point.prototype.copyTo = function copyTo (p) +{ + p.set(this.x, this.y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +Point.prototype.equals = function equals (p) +{ + return (p.x === this.x) && (p.y === this.y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +Point.prototype.set = function set (x, y) +{ + this.x = x || 0; + this.y = y || ((y !== 0) ? this.x : 0); +}; + +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * An ObservablePoint is a point that triggers a callback when the point's position is changed. + * + * @class + * @memberof PIXI + */ +var ObservablePoint = function ObservablePoint(cb, scope, x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + this._x = x; + this._y = y; + + this.cb = cb; + this.scope = scope; +}; + +var prototypeAccessors$1 = { x: { configurable: true },y: { configurable: true } }; + +/** + * Creates a clone of this point. + * The callback and scope params can be overidden otherwise they will default + * to the clone object's values. + * + * @override + * @param {Function} [cb=null] - callback when changed + * @param {object} [scope=null] - owner of callback + * @return {PIXI.ObservablePoint} a copy of the point + */ +ObservablePoint.prototype.clone = function clone (cb, scope) +{ + if ( cb === void 0 ) cb = null; + if ( scope === void 0 ) scope = null; + + var _cb = cb || this.cb; + var _scope = scope || this.scope; + + return new ObservablePoint(_cb, _scope, this._x, this._y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +ObservablePoint.prototype.set = function set (x, y) +{ + var _x = x || 0; + var _y = y || ((y !== 0) ? _x : 0); + + if (this._x !== _x || this._y !== _y) + { + this._x = _x; + this._y = _y; + this.cb.call(this.scope); + } +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from. + * @returns {PIXI.IPoint} Returns itself. + */ +ObservablePoint.prototype.copyFrom = function copyFrom (p) +{ + if (this._x !== p.x || this._y !== p.y) + { + this._x = p.x; + this._y = p.y; + this.cb.call(this.scope); + } + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +ObservablePoint.prototype.copyTo = function copyTo (p) +{ + p.set(this._x, this._y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +ObservablePoint.prototype.equals = function equals (p) +{ + return (p.x === this._x) && (p.y === this._y); +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.x.get = function () +{ + return this._x; +}; + +prototypeAccessors$1.x.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._x !== value) + { + this._x = value; + this.cb.call(this.scope); + } +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.y.get = function () +{ + return this._y; +}; + +prototypeAccessors$1.y.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._y !== value) + { + this._y = value; + this.cb.call(this.scope); + } +}; + +Object.defineProperties( ObservablePoint.prototype, prototypeAccessors$1 ); + +/** + * A number, or a string containing a number. + * @memberof PIXI + * @typedef {(PIXI.Point|PIXI.ObservablePoint)} IPoint + */ + +/** + * Two Pi. + * + * @static + * @constant {number} PI_2 + * @memberof PIXI + */ +var PI_2 = Math.PI * 2; + +/** + * Conversion factor for converting radians to degrees. + * + * @static + * @constant {number} RAD_TO_DEG + * @memberof PIXI + */ +var RAD_TO_DEG = 180 / Math.PI; + +/** + * Conversion factor for converting degrees to radians. + * + * @static + * @constant {number} DEG_TO_RAD + * @memberof PIXI + */ +var DEG_TO_RAD = Math.PI / 180; + +/** + * Constants that identify shapes, mainly to prevent `instanceof` calls. + * + * @static + * @constant + * @name SHAPES + * @memberof PIXI + * @type {object} + * @property {number} POLY Polygon + * @property {number} RECT Rectangle + * @property {number} CIRC Circle + * @property {number} ELIP Ellipse + * @property {number} RREC Rounded Rectangle + */ +var SHAPES = { + POLY: 0, + RECT: 1, + CIRC: 2, + ELIP: 3, + RREC: 4, +}; + +/** + * The PixiJS Matrix as a class makes it a lot faster. + * + * Here is a representation of it: + * ```js + * | a | c | tx| + * | b | d | ty| + * | 0 | 0 | 1 | + * ``` + * @class + * @memberof PIXI + */ +var Matrix = function Matrix(a, b, c, d, tx, ty) +{ + if ( a === void 0 ) a = 1; + if ( b === void 0 ) b = 0; + if ( c === void 0 ) c = 0; + if ( d === void 0 ) d = 1; + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + /** + * @member {number} + * @default 1 + */ + this.a = a; + + /** + * @member {number} + * @default 0 + */ + this.b = b; + + /** + * @member {number} + * @default 0 + */ + this.c = c; + + /** + * @member {number} + * @default 1 + */ + this.d = d; + + /** + * @member {number} + * @default 0 + */ + this.tx = tx; + + /** + * @member {number} + * @default 0 + */ + this.ty = ty; + + this.array = null; +}; + +var staticAccessors = { IDENTITY: { configurable: true },TEMP_MATRIX: { configurable: true } }; + +/** + * Creates a Matrix object based on the given array. The Element to Matrix mapping order is as follows: + * + * a = array[0] + * b = array[1] + * c = array[3] + * d = array[4] + * tx = array[2] + * ty = array[5] + * + * @param {number[]} array - The array that the matrix will be populated from. + */ +Matrix.prototype.fromArray = function fromArray (array) +{ + this.a = array[0]; + this.b = array[1]; + this.c = array[3]; + this.d = array[4]; + this.tx = array[2]; + this.ty = array[5]; +}; + +/** + * sets the matrix properties + * + * @param {number} a - Matrix component + * @param {number} b - Matrix component + * @param {number} c - Matrix component + * @param {number} d - Matrix component + * @param {number} tx - Matrix component + * @param {number} ty - Matrix component + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.set = function set (a, b, c, d, tx, ty) +{ + this.a = a; + this.b = b; + this.c = c; + this.d = d; + this.tx = tx; + this.ty = ty; + + return this; +}; + +/** + * Creates an array from the current Matrix object. + * + * @param {boolean} transpose - Whether we need to transpose the matrix or not + * @param {Float32Array} [out=new Float32Array(9)] - If provided the array will be assigned to out + * @return {number[]} the newly created array which contains the matrix + */ +Matrix.prototype.toArray = function toArray (transpose, out) +{ + if (!this.array) + { + this.array = new Float32Array(9); + } + + var array = out || this.array; + + if (transpose) + { + array[0] = this.a; + array[1] = this.b; + array[2] = 0; + array[3] = this.c; + array[4] = this.d; + array[5] = 0; + array[6] = this.tx; + array[7] = this.ty; + array[8] = 1; + } + else + { + array[0] = this.a; + array[1] = this.c; + array[2] = this.tx; + array[3] = this.b; + array[4] = this.d; + array[5] = this.ty; + array[6] = 0; + array[7] = 0; + array[8] = 1; + } + + return array; +}; + +/** + * Get a new position with the current transformation applied. + * Can be used to go from a child's coordinate space to the world coordinate space. (e.g. rendering) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, transformed through this matrix + */ +Matrix.prototype.apply = function apply (pos, newPos) +{ + newPos = newPos || new Point(); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.a * x) + (this.c * y) + this.tx; + newPos.y = (this.b * x) + (this.d * y) + this.ty; + + return newPos; +}; + +/** + * Get a new position with the inverse of the current transformation applied. + * Can be used to go from the world coordinate space to a child's coordinate space. (e.g. input) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, inverse-transformed through this matrix + */ +Matrix.prototype.applyInverse = function applyInverse (pos, newPos) +{ + newPos = newPos || new Point(); + + var id = 1 / ((this.a * this.d) + (this.c * -this.b)); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.d * id * x) + (-this.c * id * y) + (((this.ty * this.c) - (this.tx * this.d)) * id); + newPos.y = (this.a * id * y) + (-this.b * id * x) + (((-this.ty * this.a) + (this.tx * this.b)) * id); + + return newPos; +}; + +/** + * Translates the matrix on the x and y. + * + * @param {number} x How much to translate x by + * @param {number} y How much to translate y by + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.translate = function translate (x, y) +{ + this.tx += x; + this.ty += y; + + return this; +}; + +/** + * Applies a scale transformation to the matrix. + * + * @param {number} x The amount to scale horizontally + * @param {number} y The amount to scale vertically + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.scale = function scale (x, y) +{ + this.a *= x; + this.d *= y; + this.c *= x; + this.b *= y; + this.tx *= x; + this.ty *= y; + + return this; +}; + +/** + * Applies a rotation transformation to the matrix. + * + * @param {number} angle - The angle in radians. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.rotate = function rotate (angle) +{ + var cos = Math.cos(angle); + var sin = Math.sin(angle); + + var a1 = this.a; + var c1 = this.c; + var tx1 = this.tx; + + this.a = (a1 * cos) - (this.b * sin); + this.b = (a1 * sin) + (this.b * cos); + this.c = (c1 * cos) - (this.d * sin); + this.d = (c1 * sin) + (this.d * cos); + this.tx = (tx1 * cos) - (this.ty * sin); + this.ty = (tx1 * sin) + (this.ty * cos); + + return this; +}; + +/** + * Appends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to append. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.append = function append (matrix) +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + + this.a = (matrix.a * a1) + (matrix.b * c1); + this.b = (matrix.a * b1) + (matrix.b * d1); + this.c = (matrix.c * a1) + (matrix.d * c1); + this.d = (matrix.c * b1) + (matrix.d * d1); + + this.tx = (matrix.tx * a1) + (matrix.ty * c1) + this.tx; + this.ty = (matrix.tx * b1) + (matrix.ty * d1) + this.ty; + + return this; +}; + +/** + * Sets the matrix based on all the available properties + * + * @param {number} x - Position on the x axis + * @param {number} y - Position on the y axis + * @param {number} pivotX - Pivot on the x axis + * @param {number} pivotY - Pivot on the y axis + * @param {number} scaleX - Scale on the x axis + * @param {number} scaleY - Scale on the y axis + * @param {number} rotation - Rotation in radians + * @param {number} skewX - Skew on the x axis + * @param {number} skewY - Skew on the y axis + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.setTransform = function setTransform (x, y, pivotX, pivotY, scaleX, scaleY, rotation, skewX, skewY) +{ + this.a = Math.cos(rotation + skewY) * scaleX; + this.b = Math.sin(rotation + skewY) * scaleX; + this.c = -Math.sin(rotation - skewX) * scaleY; + this.d = Math.cos(rotation - skewX) * scaleY; + + this.tx = x - ((pivotX * this.a) + (pivotY * this.c)); + this.ty = y - ((pivotX * this.b) + (pivotY * this.d)); + + return this; +}; + +/** + * Prepends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to prepend + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.prepend = function prepend (matrix) +{ + var tx1 = this.tx; + + if (matrix.a !== 1 || matrix.b !== 0 || matrix.c !== 0 || matrix.d !== 1) + { + var a1 = this.a; + var c1 = this.c; + + this.a = (a1 * matrix.a) + (this.b * matrix.c); + this.b = (a1 * matrix.b) + (this.b * matrix.d); + this.c = (c1 * matrix.a) + (this.d * matrix.c); + this.d = (c1 * matrix.b) + (this.d * matrix.d); + } + + this.tx = (tx1 * matrix.a) + (this.ty * matrix.c) + matrix.tx; + this.ty = (tx1 * matrix.b) + (this.ty * matrix.d) + matrix.ty; + + return this; +}; + +/** + * Decomposes the matrix (x, y, scaleX, scaleY, and rotation) and sets the properties on to a transform. + * + * @param {PIXI.Transform} transform - The transform to apply the properties to. + * @return {PIXI.Transform} The transform with the newly applied properties + */ +Matrix.prototype.decompose = function decompose (transform) +{ + // sort out rotation / skew.. + var a = this.a; + var b = this.b; + var c = this.c; + var d = this.d; + + var skewX = -Math.atan2(-c, d); + var skewY = Math.atan2(b, a); + + var delta = Math.abs(skewX + skewY); + + if (delta < 0.00001 || Math.abs(PI_2 - delta) < 0.00001) + { + transform.rotation = skewY; + transform.skew.x = transform.skew.y = 0; + } + else + { + transform.rotation = 0; + transform.skew.x = skewX; + transform.skew.y = skewY; + } + + // next set scale + transform.scale.x = Math.sqrt((a * a) + (b * b)); + transform.scale.y = Math.sqrt((c * c) + (d * d)); + + // next set position + transform.position.x = this.tx; + transform.position.y = this.ty; + + return transform; +}; + +/** + * Inverts this matrix + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.invert = function invert () +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + var tx1 = this.tx; + var n = (a1 * d1) - (b1 * c1); + + this.a = d1 / n; + this.b = -b1 / n; + this.c = -c1 / n; + this.d = a1 / n; + this.tx = ((c1 * this.ty) - (d1 * tx1)) / n; + this.ty = -((a1 * this.ty) - (b1 * tx1)) / n; + + return this; +}; + +/** + * Resets this Matrix to an identity (default) matrix. + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.identity = function identity () +{ + this.a = 1; + this.b = 0; + this.c = 0; + this.d = 1; + this.tx = 0; + this.ty = 0; + + return this; +}; + +/** + * Creates a new Matrix object with the same values as this one. + * + * @return {PIXI.Matrix} A copy of this matrix. Good for chaining method calls. + */ +Matrix.prototype.clone = function clone () +{ + var matrix = new Matrix(); + + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the given matrix to be the same as the ones in this matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy to. + * @return {PIXI.Matrix} The matrix given in parameter with its values updated. + */ +Matrix.prototype.copyTo = function copyTo (matrix) +{ + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the matrix to be the same as the ones in given matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy from. + * @return {PIXI.Matrix} this + */ +Matrix.prototype.copyFrom = function copyFrom (matrix) +{ + this.a = matrix.a; + this.b = matrix.b; + this.c = matrix.c; + this.d = matrix.d; + this.tx = matrix.tx; + this.ty = matrix.ty; + + return this; +}; + +/** + * A default (identity) matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.IDENTITY.get = function () +{ + return new Matrix(); +}; + +/** + * A temp matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.TEMP_MATRIX.get = function () +{ + return new Matrix(); +}; + +Object.defineProperties( Matrix, staticAccessors ); + +// Your friendly neighbour https://en.wikipedia.org/wiki/Dihedral_group + +/* + * Transform matrix for operation n is: + * | ux | vx | + * | uy | vy | + */ + +var ux = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1]; +var uy = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vx = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vy = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1]; + +/** + * [Cayley Table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * for the composition of each rotation in the dihederal group D8. + * + * @type number[][] + * @private + */ +var rotationCayley = []; + +/** + * Matrices for each `GD8Symmetry` rotation. + * + * @type Matrix[] + * @private + */ +var rotationMatrices = []; + +/* + * Alias for {@code Math.sign}. + */ +var signum = Math.sign; + +/* + * Initializes `rotationCayley` and `rotationMatrices`. It is called + * only once below. + */ +function init() +{ + for (var i = 0; i < 16; i++) + { + var row = []; + + rotationCayley.push(row); + + for (var j = 0; j < 16; j++) + { + /* Multiplies rotation matrices i and j. */ + var _ux = signum((ux[i] * ux[j]) + (vx[i] * uy[j])); + var _uy = signum((uy[i] * ux[j]) + (vy[i] * uy[j])); + var _vx = signum((ux[i] * vx[j]) + (vx[i] * vy[j])); + var _vy = signum((uy[i] * vx[j]) + (vy[i] * vy[j])); + + /* Finds rotation matrix matching the product and pushes it. */ + for (var k = 0; k < 16; k++) + { + if (ux[k] === _ux && uy[k] === _uy + && vx[k] === _vx && vy[k] === _vy) + { + row.push(k); + break; + } + } + } + } + + for (var i$1 = 0; i$1 < 16; i$1++) + { + var mat = new Matrix(); + + mat.set(ux[i$1], uy[i$1], vx[i$1], vy[i$1], 0, 0); + rotationMatrices.push(mat); + } +} + +init(); + +/** + * @memberof PIXI + * @typedef {number} GD8Symmetry + * @see PIXI.GroupD8 + */ + +/** + * Implements the dihedral group D8, which is similar to + * [group D4]{@link http://mathworld.wolfram.com/DihedralGroupD4.html}; + * D8 is the same but with diagonals, and it is used for texture + * rotations. + * + * The directions the U- and V- axes after rotation + * of an angle of `a: GD8Constant` are the vectors `(uX(a), uY(a))` + * and `(vX(a), vY(a))`. These aren't necessarily unit vectors. + * + * **Origin:**
+ * This is the small part of gameofbombs.com portal system. It works. + * + * @see PIXI.GroupD8.E + * @see PIXI.GroupD8.SE + * @see PIXI.GroupD8.S + * @see PIXI.GroupD8.SW + * @see PIXI.GroupD8.W + * @see PIXI.GroupD8.NW + * @see PIXI.GroupD8.N + * @see PIXI.GroupD8.NE + * @author Ivan @ivanpopelyshev + * @class + * @memberof PIXI + */ +var GroupD8 = { + /** + * | Rotation | Direction | + * |----------|-----------| + * | 0° | East | + * + * @constant {PIXI.GD8Symmetry} + */ + E: 0, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 45°↻ | Southeast | + * + * @constant {PIXI.GD8Symmetry} + */ + SE: 1, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 90°↻ | South | + * + * @constant {PIXI.GD8Symmetry} + */ + S: 2, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 135°↻ | Southwest | + * + * @constant {PIXI.GD8Symmetry} + */ + SW: 3, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 180° | West | + * + * @constant {PIXI.GD8Symmetry} + */ + W: 4, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -135°/225°↻ | Northwest | + * + * @constant {PIXI.GD8Symmetry} + */ + NW: 5, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -90°/270°↻ | North | + * + * @constant {PIXI.GD8Symmetry} + */ + N: 6, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -45°/315°↻ | Northeast | + * + * @constant {PIXI.GD8Symmetry} + */ + NE: 7, + + /** + * Reflection about Y-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_VERTICAL: 8, + + /** + * Reflection about the main diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + MAIN_DIAGONAL: 10, + + /** + * Reflection about X-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_HORIZONTAL: 12, + + /** + * Reflection about reverse diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + REVERSE_DIAGONAL: 14, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the U-axis + * after rotating the axes. + */ + uX: function (ind) { return ux[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the U-axis + * after rotating the axes. + */ + uY: function (ind) { return uy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the V-axis + * after rotating the axes. + */ + vX: function (ind) { return vx[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the V-axis + * after rotating the axes. + */ + vY: function (ind) { return vy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - symmetry whose opposite + * is needed. Only rotations have opposite symmetries while + * reflections don't. + * @return {PIXI.GD8Symmetry} The opposite symmetry of `rotation` + */ + inv: function (rotation) { + if (rotation & 8)// true only if between 8 & 15 (reflections) + { + return rotation & 15;// or rotation % 16 + } + + return (-rotation) & 7;// or (8 - rotation) % 8 + }, + + /** + * Composes the two D8 operations. + * + * Taking `^` as reflection: + * + * | | E=0 | S=2 | W=4 | N=6 | E^=8 | S^=10 | W^=12 | N^=14 | + * |-------|-----|-----|-----|-----|------|-------|-------|-------| + * | E=0 | E | S | W | N | E^ | S^ | W^ | N^ | + * | S=2 | S | W | N | E | S^ | W^ | N^ | E^ | + * | W=4 | W | N | E | S | W^ | N^ | E^ | S^ | + * | N=6 | N | E | S | W | N^ | E^ | S^ | W^ | + * | E^=8 | E^ | N^ | W^ | S^ | E | N | W | S | + * | S^=10 | S^ | E^ | N^ | W^ | S | E | N | W | + * | W^=12 | W^ | S^ | E^ | N^ | W | S | E | N | + * | N^=14 | N^ | W^ | S^ | E^ | N | W | S | E | + * + * [This is a Cayley table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation, which + * is the row in the above cayley table. + * @param {PIXI.GD8Symmetry} rotationFirst - First operation, which + * is the column in the above cayley table. + * @return {PIXI.GD8Symmetry} Composed operation + */ + add: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][rotationFirst] + ); }, + + /** + * Reverse of `add`. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation + * @param {PIXI.GD8Symmetry} rotationFirst - First operation + * @return {PIXI.GD8Symmetry} Result + */ + sub: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][GroupD8.inv(rotationFirst)] + ); }, + + /** + * Adds 180 degrees to rotation, which is a commutative + * operation. + * + * @memberof PIXI.GroupD8 + * @param {number} rotation - The number to rotate. + * @returns {number} Rotated number + */ + rotate180: function (rotation) { return rotation ^ 4; }, + + /** + * Checks if the rotation angle is vertical, i.e. south + * or north. It doesn't work for reflections. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - The number to check. + * @returns {boolean} Whether or not the direction is vertical + */ + isVertical: function (rotation) { return (rotation & 3) === 2; }, // rotation % 4 === 2 + + /** + * Approximates the vector `V(dx,dy)` into one of the + * eight directions provided by `GroupD8`. + * + * @memberof PIXI.GroupD8 + * @param {number} dx - X-component of the vector + * @param {number} dy - Y-component of the vector + * @return {PIXI.GD8Symmetry} Approximation of the vector into + * one of the eight symmetries. + */ + byDirection: function (dx, dy) { + if (Math.abs(dx) * 2 <= Math.abs(dy)) + { + if (dy >= 0) + { + return GroupD8.S; + } + + return GroupD8.N; + } + else if (Math.abs(dy) * 2 <= Math.abs(dx)) + { + if (dx > 0) + { + return GroupD8.E; + } + + return GroupD8.W; + } + else if (dy > 0) + { + if (dx > 0) + { + return GroupD8.SE; + } + + return GroupD8.SW; + } + else if (dx > 0) + { + return GroupD8.NE; + } + + return GroupD8.NW; + }, + + /** + * Helps sprite to compensate texture packer rotation. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.Matrix} matrix - sprite world matrix + * @param {PIXI.GD8Symmetry} rotation - The rotation factor to use. + * @param {number} tx - sprite anchoring + * @param {number} ty - sprite anchoring + */ + matrixAppendRotationInv: function (matrix, rotation, tx, ty) { + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + // Packer used "rotation", we use "inv(rotation)" + var mat = rotationMatrices[GroupD8.inv(rotation)]; + + mat.tx = tx; + mat.ty = ty; + matrix.append(mat); + }, +}; + +/** + * Transform that takes care about its versions + * + * @class + * @memberof PIXI + */ +var Transform = function Transform() +{ + /** + * The world transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.worldTransform = new Matrix(); + + /** + * The local transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.localTransform = new Matrix(); + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * + * @member {PIXI.ObservablePoint} + */ + this.position = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The scale factor of the object. + * + * @member {PIXI.ObservablePoint} + */ + this.scale = new ObservablePoint(this.onChange, this, 1, 1); + + /** + * The pivot point of the displayObject that it rotates around. + * + * @member {PIXI.ObservablePoint} + */ + this.pivot = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The skew amount, on the x and y axis. + * + * @member {PIXI.ObservablePoint} + */ + this.skew = new ObservablePoint(this.updateSkew, this, 0, 0); + + /** + * The rotation amount. + * + * @protected + * @member {number} + */ + this._rotation = 0; + + /** + * The X-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cx = 1; + + /** + * The Y-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sx = 0; + + /** + * The X-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cy = 0; + + /** + * The Y-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sy = 1; + + /** + * The locally unique ID of the local transform. + * + * @protected + * @member {number} + */ + this._localID = 0; + + /** + * The locally unique ID of the local transform + * used to calculate the current local transformation matrix. + * + * @protected + * @member {number} + */ + this._currentLocalID = 0; + + /** + * The locally unique ID of the world transform. + * + * @protected + * @member {number} + */ + this._worldID = 0; + + /** + * The locally unique ID of the parent's world transform + * used to calculate the current world transformation matrix. + * + * @protected + * @member {number} + */ + this._parentID = 0; +}; + +var prototypeAccessors$1$1 = { rotation: { configurable: true } }; + +/** + * Called when a value changes. + * + * @protected + */ +Transform.prototype.onChange = function onChange () +{ + this._localID++; +}; + +/** + * Called when the skew or the rotation changes. + * + * @protected + */ +Transform.prototype.updateSkew = function updateSkew () +{ + this._cx = Math.cos(this._rotation + this.skew._y); + this._sx = Math.sin(this._rotation + this.skew._y); + this._cy = -Math.sin(this._rotation - this.skew._x); // cos, added PI/2 + this._sy = Math.cos(this._rotation - this.skew._x); // sin, added PI/2 + + this._localID++; +}; + +/** + * Updates the local transformation matrix. + */ +Transform.prototype.updateLocalTransform = function updateLocalTransform () +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } +}; + +/** + * Updates the local and the world transformation matrices. + * + * @param {PIXI.Transform} parentTransform - The parent transform + */ +Transform.prototype.updateTransform = function updateTransform (parentTransform) +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } + + if (this._parentID !== parentTransform._worldID) + { + // concat the parent matrix with the objects transform. + var pt = parentTransform.worldTransform; + var wt = this.worldTransform; + + wt.a = (lt.a * pt.a) + (lt.b * pt.c); + wt.b = (lt.a * pt.b) + (lt.b * pt.d); + wt.c = (lt.c * pt.a) + (lt.d * pt.c); + wt.d = (lt.c * pt.b) + (lt.d * pt.d); + wt.tx = (lt.tx * pt.a) + (lt.ty * pt.c) + pt.tx; + wt.ty = (lt.tx * pt.b) + (lt.ty * pt.d) + pt.ty; + + this._parentID = parentTransform._worldID; + + // update the id of the transform.. + this._worldID++; + } +}; + +/** + * Decomposes a matrix and sets the transforms properties based on it. + * + * @param {PIXI.Matrix} matrix - The matrix to decompose + */ +Transform.prototype.setFromMatrix = function setFromMatrix (matrix) +{ + matrix.decompose(this); + this._localID++; +}; + +/** + * The rotation of the object in radians. + * + * @member {number} + */ +prototypeAccessors$1$1.rotation.get = function () +{ + return this._rotation; +}; + +prototypeAccessors$1$1.rotation.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._rotation !== value) + { + this._rotation = value; + this.updateSkew(); + } +}; + +Object.defineProperties( Transform.prototype, prototypeAccessors$1$1 ); + +/** + * A default (identity) transform + * + * @static + * @constant + * @member {PIXI.Transform} + */ +Transform.IDENTITY = new Transform(); + +/** + * Size object, contains width and height + * + * @memberof PIXI + * @typedef {object} ISize + * @property {number} width - Width component + * @property {number} height - Height component + */ + +/** + * Rectangle object is an area defined by its position, as indicated by its top-left corner + * point (x, y) and by its width and its height. + * + * @class + * @memberof PIXI + */ +var Rectangle = function Rectangle(x, y, width, height) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = Number(x); + + /** + * @member {number} + * @default 0 + */ + this.y = Number(y); + + /** + * @member {number} + * @default 0 + */ + this.width = Number(width); + + /** + * @member {number} + * @default 0 + */ + this.height = Number(height); + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.RECT + * @see PIXI.SHAPES + */ + this.type = SHAPES.RECT; +}; + +var prototypeAccessors$2 = { left: { configurable: true },right: { configurable: true },top: { configurable: true },bottom: { configurable: true } }; +var staticAccessors$1 = { EMPTY: { configurable: true } }; + +/** + * returns the left edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.left.get = function () +{ + return this.x; +}; + +/** + * returns the right edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.right.get = function () +{ + return this.x + this.width; +}; + +/** + * returns the top edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.top.get = function () +{ + return this.y; +}; + +/** + * returns the bottom edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.bottom.get = function () +{ + return this.y + this.height; +}; + +/** + * A constant empty rectangle. + * + * @static + * @constant + * @member {PIXI.Rectangle} + */ +staticAccessors$1.EMPTY.get = function () +{ + return new Rectangle(0, 0, 0, 0); +}; + +/** + * Creates a clone of this Rectangle + * + * @return {PIXI.Rectangle} a copy of the rectangle + */ +Rectangle.prototype.clone = function clone () +{ + return new Rectangle(this.x, this.y, this.width, this.height); +}; + +/** + * Copies another rectangle to this one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy from. + * @return {PIXI.Rectangle} Returns itself. + */ +Rectangle.prototype.copyFrom = function copyFrom (rectangle) +{ + this.x = rectangle.x; + this.y = rectangle.y; + this.width = rectangle.width; + this.height = rectangle.height; + + return this; +}; + +/** + * Copies this rectangle to another one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy to. + * @return {PIXI.Rectangle} Returns given parameter. + */ +Rectangle.prototype.copyTo = function copyTo (rectangle) +{ + rectangle.x = this.x; + rectangle.y = this.y; + rectangle.width = this.width; + rectangle.height = this.height; + + return rectangle; +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rectangle + */ +Rectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + if (x >= this.x && x < this.x + this.width) + { + if (y >= this.y && y < this.y + this.height) + { + return true; + } + } + + return false; +}; + +/** + * Pads the rectangle making it grow in all directions. + * + * @param {number} paddingX - The horizontal padding amount. + * @param {number} paddingY - The vertical padding amount. + */ +Rectangle.prototype.pad = function pad (paddingX, paddingY) +{ + paddingX = paddingX || 0; + paddingY = paddingY || ((paddingY !== 0) ? paddingX : 0); + + this.x -= paddingX; + this.y -= paddingY; + + this.width += paddingX * 2; + this.height += paddingY * 2; +}; + +/** + * Fits this rectangle around the passed one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to fit. + */ +Rectangle.prototype.fit = function fit (rectangle) +{ + var x1 = Math.max(this.x, rectangle.x); + var x2 = Math.min(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.max(this.y, rectangle.y); + var y2 = Math.min(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = Math.max(x2 - x1, 0); + this.y = y1; + this.height = Math.max(y2 - y1, 0); +}; + +/** + * Enlarges rectangle that way its corners lie on grid + * + * @param {number} [resolution=1] resolution + * @param {number} [eps=0.001] precision + */ +Rectangle.prototype.ceil = function ceil (resolution, eps) +{ + if ( resolution === void 0 ) resolution = 1; + if ( eps === void 0 ) eps = 0.001; + + var x2 = Math.ceil((this.x + this.width - eps) * resolution) / resolution; + var y2 = Math.ceil((this.y + this.height - eps) * resolution) / resolution; + + this.x = Math.floor((this.x + eps) * resolution) / resolution; + this.y = Math.floor((this.y + eps) * resolution) / resolution; + + this.width = x2 - this.x; + this.height = y2 - this.y; +}; + +/** + * Enlarges this rectangle to include the passed rectangle. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to include. + */ +Rectangle.prototype.enlarge = function enlarge (rectangle) +{ + var x1 = Math.min(this.x, rectangle.x); + var x2 = Math.max(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.min(this.y, rectangle.y); + var y2 = Math.max(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = x2 - x1; + this.y = y1; + this.height = y2 - y1; +}; + +Object.defineProperties( Rectangle.prototype, prototypeAccessors$2 ); +Object.defineProperties( Rectangle, staticAccessors$1 ); + +/** + * The Circle object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Circle = function Circle(x, y, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( radius === void 0 ) radius = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.CIRC + * @see PIXI.SHAPES + */ + this.type = SHAPES.CIRC; +}; + +/** + * Creates a clone of this Circle instance + * + * @return {PIXI.Circle} a copy of the Circle + */ +Circle.prototype.clone = function clone () +{ + return new Circle(this.x, this.y, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this circle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Circle + */ +Circle.prototype.contains = function contains (x, y) +{ + if (this.radius <= 0) + { + return false; + } + + var r2 = this.radius * this.radius; + var dx = (this.x - x); + var dy = (this.y - y); + + dx *= dx; + dy *= dy; + + return (dx + dy <= r2); +}; + +/** +* Returns the framing rectangle of the circle as a Rectangle object +* +* @return {PIXI.Rectangle} the framing rectangle +*/ +Circle.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2); +}; + +/** + * The Ellipse object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Ellipse = function Ellipse(x, y, halfWidth, halfHeight) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( halfWidth === void 0 ) halfWidth = 0; + if ( halfHeight === void 0 ) halfHeight = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = halfWidth; + + /** + * @member {number} + * @default 0 + */ + this.height = halfHeight; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.ELIP + * @see PIXI.SHAPES + */ + this.type = SHAPES.ELIP; +}; + +/** + * Creates a clone of this Ellipse instance + * + * @return {PIXI.Ellipse} a copy of the ellipse + */ +Ellipse.prototype.clone = function clone () +{ + return new Ellipse(this.x, this.y, this.width, this.height); +}; + +/** + * Checks whether the x and y coordinates given are contained within this ellipse + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coords are within this ellipse + */ +Ellipse.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + // normalize the coords to an ellipse with center 0,0 + var normx = ((x - this.x) / this.width); + var normy = ((y - this.y) / this.height); + + normx *= normx; + normy *= normy; + + return (normx + normy <= 1); +}; + +/** + * Returns the framing rectangle of the ellipse as a Rectangle object + * + * @return {PIXI.Rectangle} the framing rectangle + */ +Ellipse.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height); +}; + +/** + * A class to define a shape via user defined co-orinates. + * + * @class + * @memberof PIXI + */ +var Polygon = function Polygon() +{ + var points = [], len = arguments.length; + while ( len-- ) points[ len ] = arguments[ len ]; + + if (Array.isArray(points[0])) + { + points = points[0]; + } + + // if this is an array of points, convert it to a flat array of numbers + if (points[0] instanceof Point) + { + var p = []; + + for (var i = 0, il = points.length; i < il; i++) + { + p.push(points[i].x, points[i].y); + } + + points = p; + } + + /** + * An array of the points of this polygon + * + * @member {number[]} + */ + this.points = points; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.POLY + * @see PIXI.SHAPES + */ + this.type = SHAPES.POLY; + + /** + * `false` after moveTo, `true` after `closePath`. In all other cases it is `true`. + * @member {boolean} + * @default true + */ + this.closeStroke = true; +}; + +/** + * Creates a clone of this polygon + * + * @return {PIXI.Polygon} a copy of the polygon + */ +Polygon.prototype.clone = function clone () +{ + var polygon = new Polygon(this.points.slice()); + + polygon.closeStroke = this.closeStroke; + + return polygon; +}; + +/** + * Checks whether the x and y coordinates passed to this function are contained within this polygon + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this polygon + */ +Polygon.prototype.contains = function contains (x, y) +{ + var inside = false; + + // use some raycasting to test hits + // https://github.com/substack/point-in-polygon/blob/master/index.js + var length = this.points.length / 2; + + for (var i = 0, j = length - 1; i < length; j = i++) + { + var xi = this.points[i * 2]; + var yi = this.points[(i * 2) + 1]; + var xj = this.points[j * 2]; + var yj = this.points[(j * 2) + 1]; + var intersect = ((yi > y) !== (yj > y)) && (x < ((xj - xi) * ((y - yi) / (yj - yi))) + xi); + + if (intersect) + { + inside = !inside; + } + } + + return inside; +}; + +/** + * The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its + * top-left corner point (x, y) and by its width and its height and its radius. + * + * @class + * @memberof PIXI + */ +var RoundedRectangle = function RoundedRectangle(x, y, width, height, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + if ( radius === void 0 ) radius = 20; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = width; + + /** + * @member {number} + * @default 0 + */ + this.height = height; + + /** + * @member {number} + * @default 20 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readonly + * @default PIXI.SHAPES.RREC + * @see PIXI.SHAPES + */ + this.type = SHAPES.RREC; +}; + +/** + * Creates a clone of this Rounded Rectangle + * + * @return {PIXI.RoundedRectangle} a copy of the rounded rectangle + */ +RoundedRectangle.prototype.clone = function clone () +{ + return new RoundedRectangle(this.x, this.y, this.width, this.height, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rounded Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rounded Rectangle + */ +RoundedRectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + if (x >= this.x && x <= this.x + this.width) + { + if (y >= this.y && y <= this.y + this.height) + { + if ((y >= this.y + this.radius && y <= this.y + this.height - this.radius) + || (x >= this.x + this.radius && x <= this.x + this.width - this.radius)) + { + return true; + } + var dx = x - (this.x + this.radius); + var dy = y - (this.y + this.radius); + var radius2 = this.radius * this.radius; + + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.width - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dy = y - (this.y + this.height - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + } + } + + return false; +}; + +/*! + * @pixi/display - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/display is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Sets the default value for the container property 'sortableChildren'. + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @static + * @constant + * @name SORTABLE_CHILDREN + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ +settings.SORTABLE_CHILDREN = false; + +/** + * 'Builder' pattern for bounds rectangles. + * + * This could be called an Axis-Aligned Bounding Box. + * It is not an actual shape. It is a mutable thing; no 'EMPTY' or those kind of problems. + * + * @class + * @memberof PIXI + */ +var Bounds = function Bounds() +{ + /** + * @member {number} + * @default 0 + */ + this.minX = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.minY = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxX = -Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxY = -Infinity; + + this.rect = null; +}; + +/** + * Checks if bounds are empty. + * + * @return {boolean} True if empty. + */ +Bounds.prototype.isEmpty = function isEmpty () +{ + return this.minX > this.maxX || this.minY > this.maxY; +}; + +/** + * Clears the bounds and resets. + * + */ +Bounds.prototype.clear = function clear () +{ + this.updateID++; + + this.minX = Infinity; + this.minY = Infinity; + this.maxX = -Infinity; + this.maxY = -Infinity; +}; + +/** + * Can return Rectangle.EMPTY constant, either construct new rectangle, either use your rectangle + * It is not guaranteed that it will return tempRect + * + * @param {PIXI.Rectangle} rect - temporary object will be used if AABB is not empty + * @returns {PIXI.Rectangle} A rectangle of the bounds + */ +Bounds.prototype.getRectangle = function getRectangle (rect) +{ + if (this.minX > this.maxX || this.minY > this.maxY) + { + return Rectangle.EMPTY; + } + + rect = rect || new Rectangle(0, 0, 1, 1); + + rect.x = this.minX; + rect.y = this.minY; + rect.width = this.maxX - this.minX; + rect.height = this.maxY - this.minY; + + return rect; +}; + +/** + * This function should be inlined when its possible. + * + * @param {PIXI.Point} point - The point to add. + */ +Bounds.prototype.addPoint = function addPoint (point) +{ + this.minX = Math.min(this.minX, point.x); + this.maxX = Math.max(this.maxX, point.x); + this.minY = Math.min(this.minY, point.y); + this.maxY = Math.max(this.maxY, point.y); +}; + +/** + * Adds a quad, not transformed + * + * @param {Float32Array} vertices - The verts to add. + */ +Bounds.prototype.addQuad = function addQuad (vertices) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = vertices[0]; + var y = vertices[1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[2]; + y = vertices[3]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[4]; + y = vertices[5]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[6]; + y = vertices[7]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds sprite frame, transformed. + * + * @param {PIXI.Transform} transform - TODO + * @param {number} x0 - TODO + * @param {number} y0 - TODO + * @param {number} x1 - TODO + * @param {number} y1 - TODO + */ +Bounds.prototype.addFrame = function addFrame (transform, x0, y0, x1, y1) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = (a * x0) + (c * y0) + tx; + var y = (b * x0) + (d * y0) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y0) + tx; + y = (b * x1) + (d * y0) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x0) + (c * y1) + tx; + y = (b * x0) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y1) + tx; + y = (b * x1) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds screen vertices from array + * + * @param {Float32Array} vertexData - calculated vertices + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertexData = function addVertexData (vertexData, beginOffset, endOffset) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var x = vertexData[i]; + var y = vertexData[i + 1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Add an array of mesh vertices + * + * @param {PIXI.Transform} transform - mesh transform + * @param {Float32Array} vertices - mesh coordinates in array + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertices = function addVertices (transform, vertices, beginOffset, endOffset) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var rawX = vertices[i]; + var rawY = vertices[i + 1]; + var x = (a * rawX) + (c * rawY) + tx; + var y = (d * rawY) + (b * rawX) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds other Bounds + * + * @param {PIXI.Bounds} bounds - TODO + */ +Bounds.prototype.addBounds = function addBounds (bounds) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = bounds.minX < minX ? bounds.minX : minX; + this.minY = bounds.minY < minY ? bounds.minY : minY; + this.maxX = bounds.maxX > maxX ? bounds.maxX : maxX; + this.maxY = bounds.maxY > maxY ? bounds.maxY : maxY; +}; + +/** + * Adds other Bounds, masked with Bounds + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Bounds} mask - TODO + */ +Bounds.prototype.addBoundsMask = function addBoundsMask (bounds, mask) +{ + var _minX = bounds.minX > mask.minX ? bounds.minX : mask.minX; + var _minY = bounds.minY > mask.minY ? bounds.minY : mask.minY; + var _maxX = bounds.maxX < mask.maxX ? bounds.maxX : mask.maxX; + var _maxY = bounds.maxY < mask.maxY ? bounds.maxY : mask.maxY; + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +/** + * Adds other Bounds, masked with Rectangle + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Rectangle} area - TODO + */ +Bounds.prototype.addBoundsArea = function addBoundsArea (bounds, area) +{ + var _minX = bounds.minX > area.x ? bounds.minX : area.x; + var _minY = bounds.minY > area.y ? bounds.minY : area.y; + var _maxX = bounds.maxX < area.x + area.width ? bounds.maxX : (area.x + area.width); + var _maxY = bounds.maxY < area.y + area.height ? bounds.maxY : (area.y + area.height); + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +// _tempDisplayObjectParent = new DisplayObject(); + +/** + * The base class for all objects that are rendered on the screen. + * + * This is an abstract class and should not be used on its own; rather it should be extended. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var DisplayObject = /*@__PURE__*/(function (EventEmitter) { + function DisplayObject() + { + EventEmitter.call(this); + + this.tempDisplayObjectParent = null; + + // TODO: need to create Transform from factory + /** + * World transform and local transform of this object. + * This will become read-only later, please do not assign anything there unless you know what are you doing. + * + * @member {PIXI.Transform} + */ + this.transform = new Transform(); + + /** + * The opacity of the object. + * + * @member {number} + */ + this.alpha = 1; + + /** + * The visibility of the object. If false the object will not be drawn, and + * the updateTransform function will not be called. + * + * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually. + * + * @member {boolean} + */ + this.visible = true; + + /** + * Can this object be rendered, if false the object will not be drawn but the updateTransform + * methods will still be called. + * + * Only affects recursive calls from parent. You can ask for bounds manually. + * + * @member {boolean} + */ + this.renderable = true; + + /** + * The display object container that contains this display object. + * + * @member {PIXI.Container} + * @readonly + */ + this.parent = null; + + /** + * The multiplied alpha of the displayObject. + * + * @member {number} + * @readonly + */ + this.worldAlpha = 1; + + /** + * Which index in the children array the display component was before the previous zIndex sort. + * Used by containers to help sort objects with the same zIndex, by using previous array index as the decider. + * + * @member {number} + * @protected + */ + this._lastSortedIndex = 0; + + /** + * The zIndex of the displayObject. + * A higher value will mean it will be rendered on top of other displayObjects within the same container. + * + * @member {number} + * @protected + */ + this._zIndex = 0; + + /** + * The area the filter is applied to. This is used as more of an optimization + * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle. + * + * Also works as an interaction mask. + * + * @member {?PIXI.Rectangle} + */ + this.filterArea = null; + + /** + * Sets the filters for the displayObject. + * * IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer. + * To remove filters simply set this property to `'null'`. + * + * @member {?PIXI.Filter[]} + */ + this.filters = null; + this._enabledFilters = null; + + /** + * The bounds object, this is used to calculate and store the bounds of the displayObject. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + this._boundsID = 0; + this._lastBoundsID = -1; + this._boundsRect = null; + this._localBoundsRect = null; + + /** + * The original, cached mask of the object. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + * @protected + */ + this._mask = null; + + /** + * Fired when this DisplayObject is added to a Container. + * + * @event PIXI.DisplayObject#added + * @param {PIXI.Container} container - The container added to. + */ + + /** + * Fired when this DisplayObject is removed from a Container. + * + * @event PIXI.DisplayObject#removed + * @param {PIXI.Container} container - The container removed from. + */ + + /** + * If the object has been destroyed via destroy(). If true, it should not be used. + * + * @member {boolean} + * @protected + */ + this._destroyed = false; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = false; + } + + if ( EventEmitter ) DisplayObject.__proto__ = EventEmitter; + DisplayObject.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + DisplayObject.prototype.constructor = DisplayObject; + + var prototypeAccessors = { _tempDisplayObjectParent: { configurable: true },x: { configurable: true },y: { configurable: true },worldTransform: { configurable: true },localTransform: { configurable: true },position: { configurable: true },scale: { configurable: true },pivot: { configurable: true },skew: { configurable: true },rotation: { configurable: true },angle: { configurable: true },zIndex: { configurable: true },worldVisible: { configurable: true },mask: { configurable: true } }; + + /** + * @protected + * @member {PIXI.DisplayObject} + */ + DisplayObject.mixin = function mixin (source) + { + // in ES8/ES2017, this would be really easy: + // Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); + + // get all the enumerable property keys + var keys = Object.keys(source); + + // loop through properties + for (var i = 0; i < keys.length; ++i) + { + var propertyName = keys[i]; + + // Set the property using the property descriptor - this works for accessors and normal value properties + Object.defineProperty( + DisplayObject.prototype, + propertyName, + Object.getOwnPropertyDescriptor(source, propertyName) + ); + } + }; + + prototypeAccessors._tempDisplayObjectParent.get = function () + { + if (this.tempDisplayObjectParent === null) + { + this.tempDisplayObjectParent = new DisplayObject(); + } + + return this.tempDisplayObjectParent; + }; + + /** + * Updates the object transform for rendering. + * + * TODO - Optimization pass! + */ + DisplayObject.prototype.updateTransform = function updateTransform () + { + this.transform.updateTransform(this.parent.transform); + // multiply the alphas.. + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + this._bounds.updateID++; + }; + + /** + * Recursively updates transform of all objects from the root to this one + * internal function for toLocal() + */ + DisplayObject.prototype._recursivePostUpdateTransform = function _recursivePostUpdateTransform () + { + if (this.parent) + { + this.parent._recursivePostUpdateTransform(); + this.transform.updateTransform(this.parent.transform); + } + else + { + this.transform.updateTransform(this._tempDisplayObjectParent.transform); + } + }; + + /** + * Retrieves the bounds of the displayObject as a rectangle object. + * + * @param {boolean} [skipUpdate] - Setting to `true` will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getBounds = function getBounds (skipUpdate, rect) + { + if (!skipUpdate) + { + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this._recursivePostUpdateTransform(); + this.updateTransform(); + } + } + + if (this._boundsID !== this._lastBoundsID) + { + this.calculateBounds(); + this._lastBoundsID = this._boundsID; + } + + if (!rect) + { + if (!this._boundsRect) + { + this._boundsRect = new Rectangle(); + } + + rect = this._boundsRect; + } + + return this._bounds.getRectangle(rect); + }; + + /** + * Retrieves the local bounds of the displayObject as a rectangle object. + * + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getLocalBounds = function getLocalBounds (rect) + { + var transformRef = this.transform; + var parentRef = this.parent; + + this.parent = null; + this.transform = this._tempDisplayObjectParent.transform; + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + var bounds = this.getBounds(false, rect); + + this.parent = parentRef; + this.transform = transformRef; + + return bounds; + }; + + /** + * Calculates the global position of the display object. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform. + * @return {PIXI.IPoint} A point object representing the position of this object. + */ + DisplayObject.prototype.toGlobal = function toGlobal (position, point, skipUpdate) + { + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // don't need to update the lot + return this.worldTransform.apply(position, point); + }; + + /** + * Calculates the local position of the display object relative to another point. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform + * @return {PIXI.IPoint} A point object representing the position of this object + */ + DisplayObject.prototype.toLocal = function toLocal (position, from, point, skipUpdate) + { + if (from) + { + position = from.toGlobal(position, point, skipUpdate); + } + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // simply apply the matrix.. + return this.worldTransform.applyInverse(position, point); + }; + + /** + * Renders the object using the WebGL renderer. + * + * @param {PIXI.Renderer} renderer - The renderer. + */ + DisplayObject.prototype.render = function render (renderer) // eslint-disable-line no-unused-vars + { + // OVERWRITE; + }; + + /** + * Set the parent Container of this DisplayObject. + * + * @param {PIXI.Container} container - The Container to add this DisplayObject to. + * @return {PIXI.Container} The Container that this DisplayObject was added to. + */ + DisplayObject.prototype.setParent = function setParent (container) + { + if (!container || !container.addChild) + { + throw new Error('setParent: Argument must be a Container'); + } + + container.addChild(this); + + return container; + }; + + /** + * Convenience function to set the position, scale, skew and pivot at once. + * + * @param {number} [x=0] - The X position + * @param {number} [y=0] - The Y position + * @param {number} [scaleX=1] - The X scale value + * @param {number} [scaleY=1] - The Y scale value + * @param {number} [rotation=0] - The rotation + * @param {number} [skewX=0] - The X skew value + * @param {number} [skewY=0] - The Y skew value + * @param {number} [pivotX=0] - The X pivot value + * @param {number} [pivotY=0] - The Y pivot value + * @return {PIXI.DisplayObject} The DisplayObject instance + */ + DisplayObject.prototype.setTransform = function setTransform (x, y, scaleX, scaleY, rotation, skewX, skewY, pivotX, pivotY) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( scaleX === void 0 ) scaleX = 1; + if ( scaleY === void 0 ) scaleY = 1; + if ( rotation === void 0 ) rotation = 0; + if ( skewX === void 0 ) skewX = 0; + if ( skewY === void 0 ) skewY = 0; + if ( pivotX === void 0 ) pivotX = 0; + if ( pivotY === void 0 ) pivotY = 0; + + this.position.x = x; + this.position.y = y; + this.scale.x = !scaleX ? 1 : scaleX; + this.scale.y = !scaleY ? 1 : scaleY; + this.rotation = rotation; + this.skew.x = skewX; + this.skew.y = skewY; + this.pivot.x = pivotX; + this.pivot.y = pivotY; + + return this; + }; + + /** + * Base destroy method for generic display objects. This will automatically + * remove the display object from its parent Container as well as remove + * all current event listeners and internal references. Do not use a DisplayObject + * after calling `destroy()`. + * + */ + DisplayObject.prototype.destroy = function destroy () + { + this.removeAllListeners(); + if (this.parent) + { + this.parent.removeChild(this); + } + this.transform = null; + + this.parent = null; + + this._bounds = null; + this._currentBounds = null; + this._mask = null; + + this.filterArea = null; + + this.interactive = false; + this.interactiveChildren = false; + + this._destroyed = true; + }; + + /** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * An alias to position.x + * + * @member {number} + */ + prototypeAccessors.x.get = function () + { + return this.position.x; + }; + + prototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.x = value; + }; + + /** + * The position of the displayObject on the y axis relative to the local coordinates of the parent. + * An alias to position.y + * + * @member {number} + */ + prototypeAccessors.y.get = function () + { + return this.position.y; + }; + + prototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.y = value; + }; + + /** + * Current transform of the object based on world (parent) factors. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.worldTransform.get = function () + { + return this.transform.worldTransform; + }; + + /** + * Current transform of the object based on local factors: position, scale, other stuff. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.localTransform.get = function () + { + return this.transform.localTransform; + }; + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.position.get = function () + { + return this.transform.position; + }; + + prototypeAccessors.position.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.copyFrom(value); + }; + + /** + * The scale factor of the object. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.scale.get = function () + { + return this.transform.scale; + }; + + prototypeAccessors.scale.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.scale.copyFrom(value); + }; + + /** + * The pivot point of the displayObject that it rotates around. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.pivot.get = function () + { + return this.transform.pivot; + }; + + prototypeAccessors.pivot.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.pivot.copyFrom(value); + }; + + /** + * The skew factor for the object in radians. + * Assignment by value since pixi-v4. + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.skew.get = function () + { + return this.transform.skew; + }; + + prototypeAccessors.skew.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.skew.copyFrom(value); + }; + + /** + * The rotation of the object in radians. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.rotation.get = function () + { + return this.transform.rotation; + }; + + prototypeAccessors.rotation.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value; + }; + + /** + * The angle of the object in degrees. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.angle.get = function () + { + return this.transform.rotation * RAD_TO_DEG; + }; + + prototypeAccessors.angle.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value * DEG_TO_RAD; + }; + + /** + * The zIndex of the displayObject. + * If a container has the sortableChildren property set to true, children will be automatically + * sorted by zIndex value; a higher value will mean it will be moved towards the end of the array, + * and thus rendered on top of other displayObjects within the same container. + * + * @member {number} + */ + prototypeAccessors.zIndex.get = function () + { + return this._zIndex; + }; + + prototypeAccessors.zIndex.set = function (value) // eslint-disable-line require-jsdoc + { + this._zIndex = value; + if (this.parent) + { + this.parent.sortDirty = true; + } + }; + + /** + * Indicates if the object is globally visible. + * + * @member {boolean} + * @readonly + */ + prototypeAccessors.worldVisible.get = function () + { + var item = this; + + do + { + if (!item.visible) + { + return false; + } + + item = item.parent; + } while (item); + + return true; + }; + + /** + * Sets a mask for the displayObject. A mask is an object that limits the visibility of an + * object to the shape of the mask applied to it. In PixiJS a regular mask must be a + * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it + * utilities shape clipping. To remove a mask, set this property to `null`. + * + * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask. + * @example + * const graphics = new PIXI.Graphics(); + * graphics.beginFill(0xFF3300); + * graphics.drawRect(50, 250, 100, 100); + * graphics.endFill(); + * + * const sprite = new PIXI.Sprite(texture); + * sprite.mask = graphics; + * @todo At the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + */ + prototypeAccessors.mask.get = function () + { + return this._mask; + }; + + prototypeAccessors.mask.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._mask) + { + this._mask.renderable = true; + this._mask.isMask = false; + } + + this._mask = value; + + if (this._mask) + { + this._mask.renderable = false; + this._mask.isMask = true; + } + }; + + Object.defineProperties( DisplayObject.prototype, prototypeAccessors ); + + return DisplayObject; +}(eventemitter3)); + +/** + * DisplayObject default updateTransform, does not update children of container. + * Will crash if there's no parent element. + * + * @memberof PIXI.DisplayObject# + * @function displayObjectUpdateTransform + */ +DisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform; + +function sortChildren(a, b) +{ + if (a.zIndex === b.zIndex) + { + return a._lastSortedIndex - b._lastSortedIndex; + } + + return a.zIndex - b.zIndex; +} + +/** + * A Container represents a collection of display objects. + * + * It is the base class of all display objects that act as a container for other objects (like Sprites). + * + *```js + * let container = new PIXI.Container(); + * container.addChild(sprite); + * ``` + * + * @class + * @extends PIXI.DisplayObject + * @memberof PIXI + */ +var Container = /*@__PURE__*/(function (DisplayObject) { + function Container() + { + DisplayObject.call(this); + + /** + * The array of children of this container. + * + * @member {PIXI.DisplayObject[]} + * @readonly + */ + this.children = []; + + /** + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @see PIXI.settings.SORTABLE_CHILDREN + * + * @member {boolean} + */ + this.sortableChildren = settings.SORTABLE_CHILDREN; + + /** + * Should children be sorted by zIndex at the next updateTransform call. + * Will get automatically set to true if a new child is added, or if a child's zIndex changes. + * + * @member {boolean} + */ + this.sortDirty = false; + + /** + * Fired when a DisplayObject is added to this Container. + * + * @event PIXI.Container#childAdded + * @param {PIXI.DisplayObject} child - The child added to the Container. + * @param {PIXI.Container} container - The container that added the child. + * @param {number} index - The children's index of the added child. + */ + + /** + * Fired when a DisplayObject is removed from this Container. + * + * @event PIXI.DisplayObject#removedFrom + * @param {PIXI.DisplayObject} child - The child removed from the Container. + * @param {PIXI.Container} container - The container that removed removed the child. + * @param {number} index - The former children's index of the removed child + */ + } + + if ( DisplayObject ) Container.__proto__ = DisplayObject; + Container.prototype = Object.create( DisplayObject && DisplayObject.prototype ); + Container.prototype.constructor = Container; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + + /** + * Overridable method that can be used by Container subclasses whenever the children array is modified + * + * @protected + */ + Container.prototype.onChildrenChange = function onChildrenChange () + { + /* empty */ + }; + + /** + * Adds one or more children to the container. + * + * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)` + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container + * @return {PIXI.DisplayObject} The first child that was added. + */ + Container.prototype.addChild = function addChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.addChild(arguments$1[i]); + } + } + else + { + // if the child has a parent then lets remove it as PixiJS objects can only exist in one place + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.push(child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(this.children.length - 1); + this.emit('childAdded', child, this, this.children.length - 1); + child.emit('added', this); + } + + return child; + }; + + /** + * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown + * + * @param {PIXI.DisplayObject} child - The child to add + * @param {number} index - The index to place the child in + * @return {PIXI.DisplayObject} The child that was added. + */ + Container.prototype.addChildAt = function addChildAt (child, index) + { + if (index < 0 || index > this.children.length) + { + throw new Error((child + "addChildAt: The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.splice(index, 0, child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('added', this); + this.emit('childAdded', child, this, index); + + return child; + }; + + /** + * Swaps the position of 2 Display Objects within this container. + * + * @param {PIXI.DisplayObject} child - First display object to swap + * @param {PIXI.DisplayObject} child2 - Second display object to swap + */ + Container.prototype.swapChildren = function swapChildren (child, child2) + { + if (child === child2) + { + return; + } + + var index1 = this.getChildIndex(child); + var index2 = this.getChildIndex(child2); + + this.children[index1] = child2; + this.children[index2] = child; + this.onChildrenChange(index1 < index2 ? index1 : index2); + }; + + /** + * Returns the index position of a child DisplayObject instance + * + * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify + * @return {number} The index position of the child display object to identify + */ + Container.prototype.getChildIndex = function getChildIndex (child) + { + var index = this.children.indexOf(child); + + if (index === -1) + { + throw new Error('The supplied DisplayObject must be a child of the caller'); + } + + return index; + }; + + /** + * Changes the position of an existing child in the display object container + * + * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number + * @param {number} index - The resulting index number for the child display object + */ + Container.prototype.setChildIndex = function setChildIndex (child, index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + var currentIndex = this.getChildIndex(child); + + removeItems(this.children, currentIndex, 1); // remove from old position + this.children.splice(index, 0, child); // add at new position + + this.onChildrenChange(index); + }; + + /** + * Returns the child at the specified index + * + * @param {number} index - The index to get the child at + * @return {PIXI.DisplayObject} The child at the given index, if any. + */ + Container.prototype.getChildAt = function getChildAt (index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("getChildAt: Index (" + index + ") does not exist.")); + } + + return this.children[index]; + }; + + /** + * Removes one or more children from the container. + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove + * @return {PIXI.DisplayObject} The first child that was removed. + */ + Container.prototype.removeChild = function removeChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.removeChild(arguments$1[i]); + } + } + else + { + var index = this.children.indexOf(child); + + if (index === -1) { return null; } + + child.parent = null; + // ensure child transform will be recalculated + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + } + + return child; + }; + + /** + * Removes a child from the specified index position. + * + * @param {number} index - The index to get the child from + * @return {PIXI.DisplayObject} The child that was removed. + */ + Container.prototype.removeChildAt = function removeChildAt (index) + { + var child = this.getChildAt(index); + + // ensure child transform will be recalculated.. + child.parent = null; + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + + return child; + }; + + /** + * Removes all children from this container that are within the begin and end indexes. + * + * @param {number} [beginIndex=0] - The beginning position. + * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container. + * @returns {PIXI.DisplayObject[]} List of removed children + */ + Container.prototype.removeChildren = function removeChildren (beginIndex, endIndex) + { + if ( beginIndex === void 0 ) beginIndex = 0; + + var begin = beginIndex; + var end = typeof endIndex === 'number' ? endIndex : this.children.length; + var range = end - begin; + var removed; + + if (range > 0 && range <= end) + { + removed = this.children.splice(begin, range); + + for (var i = 0; i < removed.length; ++i) + { + removed[i].parent = null; + if (removed[i].transform) + { + removed[i].transform._parentID = -1; + } + } + + this._boundsID++; + + this.onChildrenChange(beginIndex); + + for (var i$1 = 0; i$1 < removed.length; ++i$1) + { + removed[i$1].emit('removed', this); + this.emit('childRemoved', removed[i$1], this, i$1); + } + + return removed; + } + else if (range === 0 && this.children.length === 0) + { + return []; + } + + throw new RangeError('removeChildren: numeric values are outside the acceptable range.'); + }; + + /** + * Sorts children by zIndex. Previous order is mantained for 2 children with the same zIndex. + */ + Container.prototype.sortChildren = function sortChildren$1 () + { + var sortRequired = false; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + child._lastSortedIndex = i; + + if (!sortRequired && child.zIndex !== 0) + { + sortRequired = true; + } + } + + if (sortRequired && this.children.length > 1) + { + this.children.sort(sortChildren); + } + + this.sortDirty = false; + }; + + /** + * Updates the transform on all children of this container for rendering + */ + Container.prototype.updateTransform = function updateTransform () + { + if (this.sortableChildren && this.sortDirty) + { + this.sortChildren(); + } + + this._boundsID++; + + this.transform.updateTransform(this.parent.transform); + + // TODO: check render flags, how to process stuff here + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + if (child.visible) + { + child.updateTransform(); + } + } + }; + + /** + * Recalculates the bounds of the container. + * + */ + Container.prototype.calculateBounds = function calculateBounds () + { + this._bounds.clear(); + + this._calculateBounds(); + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (!child.visible || !child.renderable) + { + continue; + } + + child.calculateBounds(); + + // TODO: filter+mask, need to mask both somehow + if (child._mask) + { + child._mask.calculateBounds(); + this._bounds.addBoundsMask(child._bounds, child._mask._bounds); + } + else if (child.filterArea) + { + this._bounds.addBoundsArea(child._bounds, child.filterArea); + } + else + { + this._bounds.addBounds(child._bounds); + } + } + + this._lastBoundsID = this._boundsID; + }; + + /** + * Recalculates the bounds of the object. Override this to + * calculate the bounds of the specific object (not including children). + * + * @protected + */ + Container.prototype._calculateBounds = function _calculateBounds () + { + // FILL IN// + }; + + /** + * Renders the object using the WebGL renderer + * + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.render = function render (renderer) + { + // if the object is not visible or the alpha is 0 then no need to render this element + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + // do a quick check to see if this element has a mask or a filter. + if (this._mask || (this.filters && this.filters.length)) + { + this.renderAdvanced(renderer); + } + else + { + this._render(renderer); + + // simple render children! + for (var i = 0, j = this.children.length; i < j; ++i) + { + this.children[i].render(renderer); + } + } + }; + + /** + * Render the object using the WebGL renderer and advanced features. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.renderAdvanced = function renderAdvanced (renderer) + { + renderer.batch.flush(); + + var filters = this.filters; + var mask = this._mask; + + // push filter first as we need to ensure the stencil buffer is correct for any masking + if (filters) + { + if (!this._enabledFilters) + { + this._enabledFilters = []; + } + + this._enabledFilters.length = 0; + + for (var i = 0; i < filters.length; i++) + { + if (filters[i].enabled) + { + this._enabledFilters.push(filters[i]); + } + } + + if (this._enabledFilters.length) + { + renderer.filter.push(this, this._enabledFilters); + } + } + + if (mask) + { + renderer.mask.push(this, this._mask); + } + + // add this object to the batch, only rendered if it has a texture. + this._render(renderer); + + // now loop through the children and make sure they get rendered + for (var i$1 = 0, j = this.children.length; i$1 < j; i$1++) + { + this.children[i$1].render(renderer); + } + + renderer.batch.flush(); + + if (mask) + { + renderer.mask.pop(this, this._mask); + } + + if (filters && this._enabledFilters && this._enabledFilters.length) + { + renderer.filter.pop(); + } + }; + + /** + * To be overridden by the subclasses. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype._render = function _render (renderer) // eslint-disable-line no-unused-vars + { + // this is where content itself gets rendered... + }; + + /** + * Removes all internal references and listeners as well as removes children from the display list. + * Do not use a Container after calling `destroy`. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Container.prototype.destroy = function destroy (options) + { + DisplayObject.prototype.destroy.call(this); + + this.sortDirty = false; + + var destroyChildren = typeof options === 'boolean' ? options : options && options.children; + + var oldChildren = this.removeChildren(0, this.children.length); + + if (destroyChildren) + { + for (var i = 0; i < oldChildren.length; ++i) + { + oldChildren[i].destroy(options); + } + } + }; + + /** + * The width of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.scale.x * this.getLocalBounds().width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var width = this.getLocalBounds().width; + + if (width !== 0) + { + this.scale.x = value / width; + } + else + { + this.scale.x = 1; + } + + this._width = value; + }; + + /** + * The height of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.scale.y * this.getLocalBounds().height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var height = this.getLocalBounds().height; + + if (height !== 0) + { + this.scale.y = value / height; + } + else + { + this.scale.y = 1; + } + + this._height = value; + }; + + Object.defineProperties( Container.prototype, prototypeAccessors ); + + return Container; +}(DisplayObject)); + +// performance increase to avoid using call.. (10x faster) +Container.prototype.containerUpdateTransform = Container.prototype.updateTransform; + +/*! + * @pixi/accessibility - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/accessibility is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default property values of accessible objects + * used by {@link PIXI.accessibility.AccessibilityManager}. + * + * @private + * @function accessibleTarget + * @memberof PIXI.accessibility + * @type {Object} + * @example + * function MyObject() {} + * + * Object.assign( + * MyObject.prototype, + * PIXI.accessibility.accessibleTarget + * ); + */ +var accessibleTarget = { + /** + * Flag for if the object is accessible. If true AccessibilityManager will overlay a + * shadow div with attributes set + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + accessible: false, + + /** + * Sets the title attribute of the shadow div + * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]' + * + * @member {?string} + * @memberof PIXI.DisplayObject# + */ + accessibleTitle: null, + + /** + * Sets the aria-label attribute of the shadow div + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + accessibleHint: null, + + /** + * @member {number} + * @memberof PIXI.DisplayObject# + * @private + * @todo Needs docs. + */ + tabIndex: 0, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleActive: false, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleDiv: false, +}; + +// add some extra variables to the container.. +DisplayObject.mixin(accessibleTarget); + +var KEY_CODE_TAB = 9; + +var DIV_TOUCH_SIZE = 100; +var DIV_TOUCH_POS_X = 0; +var DIV_TOUCH_POS_Y = 0; +var DIV_TOUCH_ZINDEX = 2; + +var DIV_HOOK_SIZE = 1; +var DIV_HOOK_POS_X = -1000; +var DIV_HOOK_POS_Y = -1000; +var DIV_HOOK_ZINDEX = 2; + +/** + * The Accessibility manager recreates the ability to tab and have content read by screen readers. + * This is very important as it can possibly help people with disabilities access PixiJS content. + * + * A DisplayObject can be made accessible just like it can be made interactive. This manager will map the + * events as if the mouse was being used, minimizing the effort required to implement. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.accessibility` + * + * @class + * @memberof PIXI.accessibility + */ +var AccessibilityManager = function AccessibilityManager(renderer) +{ + /** + * @type {?HTMLElement} + * @private + */ + this._hookDiv = null; + if (isMobile.tablet || isMobile.phone) + { + this.createTouchHook(); + } + + // first we create a div that will sit over the PixiJS element. This is where the div overlays will go. + var div = document.createElement('div'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.position = 'absolute'; + div.style.top = DIV_TOUCH_POS_X + "px"; + div.style.left = DIV_TOUCH_POS_Y + "px"; + div.style.zIndex = DIV_TOUCH_ZINDEX; + + /** + * This is the dom element that will sit over the PixiJS element. This is where the div overlays will go. + * + * @type {HTMLElement} + * @private + */ + this.div = div; + + /** + * A simple pool for storing divs. + * + * @type {*} + * @private + */ + this.pool = []; + + /** + * This is a tick used to check if an object is no longer being rendered. + * + * @type {Number} + * @private + */ + this.renderId = 0; + + /** + * Setting this to true will visually show the divs. + * + * @type {boolean} + */ + this.debug = false; + + /** + * The renderer this accessibility manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * The array of currently active accessible items. + * + * @member {Array<*>} + * @private + */ + this.children = []; + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onKeyDown = this._onKeyDown.bind(this); + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onMouseMove = this._onMouseMove.bind(this); + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isActive = false; + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isMobileAccessibility = false; + + // let listen for tab.. once pressed we can fire up and show the accessibility layer + window.addEventListener('keydown', this._onKeyDown, false); +}; + +/** + * Creates the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.createTouchHook = function createTouchHook () +{ + var this$1 = this; + + var hookDiv = document.createElement('button'); + + hookDiv.style.width = DIV_HOOK_SIZE + "px"; + hookDiv.style.height = DIV_HOOK_SIZE + "px"; + hookDiv.style.position = 'absolute'; + hookDiv.style.top = DIV_HOOK_POS_X + "px"; + hookDiv.style.left = DIV_HOOK_POS_Y + "px"; + hookDiv.style.zIndex = DIV_HOOK_ZINDEX; + hookDiv.style.backgroundColor = '#FF0000'; + hookDiv.title = 'HOOK DIV'; + + hookDiv.addEventListener('focus', function () { + this$1.isMobileAccessibility = true; + this$1.activate(); + this$1.destroyTouchHook(); + }); + + document.body.appendChild(hookDiv); + this._hookDiv = hookDiv; +}; + +/** + * Destroys the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.destroyTouchHook = function destroyTouchHook () +{ + if (!this._hookDiv) + { + return; + } + document.body.removeChild(this._hookDiv); + this._hookDiv = null; +}; + +/** + * Activating will cause the Accessibility layer to be shown. + * This is called when a user presses the tab key. + * + * @private + */ +AccessibilityManager.prototype.activate = function activate () +{ + if (this.isActive) + { + return; + } + + this.isActive = true; + + window.document.addEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown, false); + + this.renderer.on('postrender', this.update, this); + + if (this.renderer.view.parentNode) + { + this.renderer.view.parentNode.appendChild(this.div); + } +}; + +/** + * Deactivating will cause the Accessibility layer to be hidden. + * This is called when a user moves the mouse. + * + * @private + */ +AccessibilityManager.prototype.deactivate = function deactivate () +{ + if (!this.isActive || this.isMobileAccessibility) + { + return; + } + + this.isActive = false; + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.addEventListener('keydown', this._onKeyDown, false); + + this.renderer.off('postrender', this.update); + + if (this.div.parentNode) + { + this.div.parentNode.removeChild(this.div); + } +}; + +/** + * This recursive function will run through the scene graph and add any new accessible objects to the DOM layer. + * + * @private + * @param {PIXI.Container} displayObject - The DisplayObject to check. + */ +AccessibilityManager.prototype.updateAccessibleObjects = function updateAccessibleObjects (displayObject) +{ + if (!displayObject.visible) + { + return; + } + + if (displayObject.accessible && displayObject.interactive) + { + if (!displayObject._accessibleActive) + { + this.addChild(displayObject); + } + + displayObject.renderId = this.renderId; + } + + var children = displayObject.children; + + for (var i = 0; i < children.length; i++) + { + this.updateAccessibleObjects(children[i]); + } +}; + +/** + * Before each render this function will ensure that all divs are mapped correctly to their DisplayObjects. + * + * @private + */ +AccessibilityManager.prototype.update = function update () +{ + if (!this.renderer.renderingToScreen) + { + return; + } + + // update children... + this.updateAccessibleObjects(this.renderer._lastObjectRendered); + + var rect = this.renderer.view.getBoundingClientRect(); + var sx = rect.width / this.renderer.width; + var sy = rect.height / this.renderer.height; + + var div = this.div; + + div.style.left = (rect.left) + "px"; + div.style.top = (rect.top) + "px"; + div.style.width = (this.renderer.width) + "px"; + div.style.height = (this.renderer.height) + "px"; + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (child.renderId !== this.renderId) + { + child._accessibleActive = false; + + removeItems(this.children, i, 1); + this.div.removeChild(child._accessibleDiv); + this.pool.push(child._accessibleDiv); + child._accessibleDiv = null; + + i--; + + if (this.children.length === 0) + { + this.deactivate(); + } + } + else + { + // map div to display.. + div = child._accessibleDiv; + var hitArea = child.hitArea; + var wt = child.worldTransform; + + if (child.hitArea) + { + div.style.left = ((wt.tx + (hitArea.x * wt.a)) * sx) + "px"; + div.style.top = ((wt.ty + (hitArea.y * wt.d)) * sy) + "px"; + + div.style.width = (hitArea.width * wt.a * sx) + "px"; + div.style.height = (hitArea.height * wt.d * sy) + "px"; + } + else + { + hitArea = child.getBounds(); + + this.capHitArea(hitArea); + + div.style.left = (hitArea.x * sx) + "px"; + div.style.top = (hitArea.y * sy) + "px"; + + div.style.width = (hitArea.width * sx) + "px"; + div.style.height = (hitArea.height * sy) + "px"; + + // update button titles and hints if they exist and they've changed + if (div.title !== child.accessibleTitle && child.accessibleTitle !== null) + { + div.title = child.accessibleTitle; + } + if (div.getAttribute('aria-label') !== child.accessibleHint + && child.accessibleHint !== null) + { + div.setAttribute('aria-label', child.accessibleHint); + } + } + } + } + + // increment the render id.. + this.renderId++; +}; + +/** + * Adjust the hit area based on the bounds of a display object + * + * @param {PIXI.Rectangle} hitArea - Bounds of the child + */ +AccessibilityManager.prototype.capHitArea = function capHitArea (hitArea) +{ + if (hitArea.x < 0) + { + hitArea.width += hitArea.x; + hitArea.x = 0; + } + + if (hitArea.y < 0) + { + hitArea.height += hitArea.y; + hitArea.y = 0; + } + + if (hitArea.x + hitArea.width > this.renderer.width) + { + hitArea.width = this.renderer.width - hitArea.x; + } + + if (hitArea.y + hitArea.height > this.renderer.height) + { + hitArea.height = this.renderer.height - hitArea.y; + } +}; + +/** + * Adds a DisplayObject to the accessibility manager + * + * @private + * @param {PIXI.DisplayObject} displayObject - The child to make accessible. + */ +AccessibilityManager.prototype.addChild = function addChild (displayObject) +{ + //this.activate(); + + var div = this.pool.pop(); + + if (!div) + { + div = document.createElement('button'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.backgroundColor = this.debug ? 'rgba(255,0,0,0.5)' : 'transparent'; + div.style.position = 'absolute'; + div.style.zIndex = DIV_TOUCH_ZINDEX; + div.style.borderStyle = 'none'; + + // ARIA attributes ensure that button title and hint updates are announced properly + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + // Chrome doesn't need aria-live to work as intended; in fact it just gets more confused. + div.setAttribute('aria-live', 'off'); + } + else + { + div.setAttribute('aria-live', 'polite'); + } + + if (navigator.userAgent.match(/rv:.*Gecko\//)) + { + // FireFox needs this to announce only the new button name + div.setAttribute('aria-relevant', 'additions'); + } + else + { + // required by IE, other browsers don't much care + div.setAttribute('aria-relevant', 'text'); + } + + div.addEventListener('click', this._onClick.bind(this)); + div.addEventListener('focus', this._onFocus.bind(this)); + div.addEventListener('focusout', this._onFocusOut.bind(this)); + } + + if (displayObject.accessibleTitle && displayObject.accessibleTitle !== null) + { + div.title = displayObject.accessibleTitle; + } + else if (!displayObject.accessibleHint + || displayObject.accessibleHint === null) + { + div.title = "displayObject " + (displayObject.tabIndex); + } + + if (displayObject.accessibleHint + && displayObject.accessibleHint !== null) + { + div.setAttribute('aria-label', displayObject.accessibleHint); + } + + // + + displayObject._accessibleActive = true; + displayObject._accessibleDiv = div; + div.displayObject = displayObject; + + this.children.push(displayObject); + this.div.appendChild(displayObject._accessibleDiv); + displayObject._accessibleDiv.tabIndex = displayObject.tabIndex; +}; + +/** + * Maps the div button press to pixi's InteractionManager (click) + * + * @private + * @param {MouseEvent} e - The click event. + */ +AccessibilityManager.prototype._onClick = function _onClick (e) +{ + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'click', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'pointertap', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'tap', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseover) + * + * @private + * @param {FocusEvent} e - The focus event. + */ +AccessibilityManager.prototype._onFocus = function _onFocus (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'assertive'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseover', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseout) + * + * @private + * @param {FocusEvent} e - The focusout event. + */ +AccessibilityManager.prototype._onFocusOut = function _onFocusOut (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'polite'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseout', interactionManager.eventData); +}; + +/** + * Is called when a key is pressed + * + * @private + * @param {KeyboardEvent} e - The keydown event. + */ +AccessibilityManager.prototype._onKeyDown = function _onKeyDown (e) +{ + if (e.keyCode !== KEY_CODE_TAB) + { + return; + } + + this.activate(); +}; + +/** + * Is called when the mouse moves across the renderer element + * + * @private + * @param {MouseEvent} e - The mouse event. + */ +AccessibilityManager.prototype._onMouseMove = function _onMouseMove (e) +{ + if (e.movementX === 0 && e.movementY === 0) + { + return; + } + + this.deactivate(); +}; + +/** + * Destroys the accessibility manager + * + */ +AccessibilityManager.prototype.destroy = function destroy () +{ + this.destroyTouchHook(); + this.div = null; + + for (var i = 0; i < this.children.length; i++) + { + this.children[i].div = null; + } + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown); + + this.pool = null; + this.children = null; + this.renderer = null; +}; + +/*! + * @pixi/runner - v5.1.1 + * Compiled Fri, 02 Aug 2019 23:20:23 UTC + * + * @pixi/runner is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * A Runner is a highly performant and simple alternative to signals. Best used in situations + * where events are dispatched to many objects at high frequency (say every frame!) + * + * + * like a signal.. + * ``` + * const myObject = { + * loaded: new PIXI.Runner('loaded') + * } + * + * const listener = { + * loaded: function(){ + * // thin + * } + * } + * + * myObject.update.add(listener); + * + * myObject.loaded.emit(); + * ``` + * + * Or for handling calling the same function on many items + * ``` + * const myGame = { + * update: new PIXI.Runner('update') + * } + * + * const gameObject = { + * update: function(time){ + * // update my gamey state + * } + * } + * + * myGame.update.add(gameObject1); + * + * myGame.update.emit(time); + * ``` + * @class + * @memberof PIXI + */ +var Runner = function Runner(name) +{ + this.items = []; + this._name = name; + this._aliasCount = 0; +}; + +var prototypeAccessors$3 = { empty: { configurable: true },name: { configurable: true } }; + +/** + * Dispatch/Broadcast Runner to all listeners added to the queue. + * @param {...any} params - optional parameters to pass to each listener + */ +Runner.prototype.emit = function emit (a0, a1, a2, a3, a4, a5, a6, a7) +{ + if (arguments.length > 8) + { + throw new Error('max arguments reached'); + } + + var ref = this; + var name = ref.name; + var items = ref.items; + + this._aliasCount++; + + for (var i = 0, len = items.length; i < len; i++) + { + items[i][name](a0, a1, a2, a3, a4, a5, a6, a7); + } + + if (items === this.items) + { + this._aliasCount--; + } + + return this; +}; + +Runner.prototype.ensureNonAliasedItems = function ensureNonAliasedItems () +{ + if (this._aliasCount > 0 && this.items.length > 1) + { + this._aliasCount = 0; + this.items = this.items.slice(0); + } +}; + +/** + * Add a listener to the Runner + * + * Runners do not need to have scope or functions passed to them. + * All that is required is to pass the listening object and ensure that it has contains a function that has the same name + * as the name provided to the Runner when it was created. + * + * Eg A listener passed to this Runner will require a 'complete' function. + * + * ``` + * const complete = new PIXI.Runner('complete'); + * ``` + * + * The scope used will be the object itself. + * + * @param {any} item - The object that will be listening. + */ +Runner.prototype.add = function add (item) +{ + if (item[this._name]) + { + this.ensureNonAliasedItems(); + this.remove(item); + this.items.push(item); + } + + return this; +}; + +/** + * Remove a single listener from the dispatch queue. + * @param {any} item - The listenr that you would like to remove. + */ +Runner.prototype.remove = function remove (item) +{ + var index = this.items.indexOf(item); + + if (index !== -1) + { + this.ensureNonAliasedItems(); + this.items.splice(index, 1); + } + + return this; +}; + +/** + * Check to see if the listener is already in the Runner + * @param {any} item - The listener that you would like to check. + */ +Runner.prototype.contains = function contains (item) +{ + return this.items.indexOf(item) !== -1; +}; + +/** + * Remove all listeners from the Runner + */ +Runner.prototype.removeAll = function removeAll () +{ + this.ensureNonAliasedItems(); + this.items.length = 0; + + return this; +}; + +/** + * Remove all references, don't use after this. + */ +Runner.prototype.destroy = function destroy () +{ + this.removeAll(); + this.items = null; + this._name = null; +}; + +/** + * `true` if there are no this Runner contains no listeners + * + * @member {boolean} + * @readonly + */ +prototypeAccessors$3.empty.get = function () +{ + return this.items.length === 0; +}; + +/** + * The name of the runner. + * + * @member {string} + * @readonly + */ +prototypeAccessors$3.name.get = function () +{ + return this._name; +}; + +Object.defineProperties( Runner.prototype, prototypeAccessors$3 ); + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method dispatch + * @see PIXI.Runner#emit + */ +Runner.prototype.dispatch = Runner.prototype.emit; + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method run + * @see PIXI.Runner#emit + */ +Runner.prototype.run = Runner.prototype.emit; + +/*! + * @pixi/ticker - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/ticker is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Target frames per millisecond. + * + * @static + * @name TARGET_FPMS + * @memberof PIXI.settings + * @type {number} + * @default 0.06 + */ +settings.TARGET_FPMS = 0.06; + +/** + * Represents the update priorities used by internal PIXI classes when registered with + * the {@link PIXI.Ticker} object. Higher priority items are updated first and lower + * priority items, such as render, should go later. + * + * @static + * @constant + * @name UPDATE_PRIORITY + * @memberof PIXI + * @type {object} + * @property {number} INTERACTION=50 Highest priority, used for {@link PIXI.interaction.InteractionManager} + * @property {number} HIGH=25 High priority updating, {@link PIXI.VideoBaseTexture} and {@link PIXI.AnimatedSprite} + * @property {number} NORMAL=0 Default priority for ticker events, see {@link PIXI.Ticker#add}. + * @property {number} LOW=-25 Low priority used for {@link PIXI.Application} rendering. + * @property {number} UTILITY=-50 Lowest priority used for {@link PIXI.prepare.BasePrepare} utility. + */ +var UPDATE_PRIORITY = { + INTERACTION: 50, + HIGH: 25, + NORMAL: 0, + LOW: -25, + UTILITY: -50, +}; + +/** + * Internal class for handling the priority sorting of ticker handlers. + * + * @private + * @class + * @memberof PIXI + */ +var TickerListener = function TickerListener(fn, context, priority, once) +{ + if ( context === void 0 ) context = null; + if ( priority === void 0 ) priority = 0; + if ( once === void 0 ) once = false; + + /** + * The handler function to execute. + * @private + * @member {Function} + */ + this.fn = fn; + + /** + * The calling to execute. + * @private + * @member {*} + */ + this.context = context; + + /** + * The current priority. + * @private + * @member {number} + */ + this.priority = priority; + + /** + * If this should only execute once. + * @private + * @member {boolean} + */ + this.once = once; + + /** + * The next item in chain. + * @private + * @member {TickerListener} + */ + this.next = null; + + /** + * The previous item in chain. + * @private + * @member {TickerListener} + */ + this.previous = null; + + /** + * `true` if this listener has been destroyed already. + * @member {boolean} + * @private + */ + this._destroyed = false; +}; + +/** + * Simple compare function to figure out if a function and context match. + * @private + * @param {Function} fn - The listener function to be added for one update + * @param {Function} context - The listener context + * @return {boolean} `true` if the listener match the arguments + */ +TickerListener.prototype.match = function match (fn, context) +{ + context = context || null; + + return this.fn === fn && this.context === context; +}; + +/** + * Emit by calling the current function. + * @private + * @param {number} deltaTime - time since the last emit. + * @return {TickerListener} Next ticker + */ +TickerListener.prototype.emit = function emit (deltaTime) +{ + if (this.fn) + { + if (this.context) + { + this.fn.call(this.context, deltaTime); + } + else + { + this.fn(deltaTime); + } + } + + var redirect = this.next; + + if (this.once) + { + this.destroy(true); + } + + // Soft-destroying should remove + // the next reference + if (this._destroyed) + { + this.next = null; + } + + return redirect; +}; + +/** + * Connect to the list. + * @private + * @param {TickerListener} previous - Input node, previous listener + */ +TickerListener.prototype.connect = function connect (previous) +{ + this.previous = previous; + if (previous.next) + { + previous.next.previous = this; + } + this.next = previous.next; + previous.next = this; +}; + +/** + * Destroy and don't use after this. + * @private + * @param {boolean} [hard = false] `true` to remove the `next` reference, this + * is considered a hard destroy. Soft destroy maintains the next reference. + * @return {TickerListener} The listener to redirect while emitting or removing. + */ +TickerListener.prototype.destroy = function destroy (hard) +{ + if ( hard === void 0 ) hard = false; + + this._destroyed = true; + this.fn = null; + this.context = null; + + // Disconnect, hook up next and previous + if (this.previous) + { + this.previous.next = this.next; + } + + if (this.next) + { + this.next.previous = this.previous; + } + + // Redirect to the next item + var redirect = this.next; + + // Remove references + this.next = hard ? null : redirect; + this.previous = null; + + return redirect; +}; + +/** + * A Ticker class that runs an update loop that other objects listen to. + * + * This class is composed around listeners meant for execution on the next requested animation frame. + * Animation frames are requested only when necessary, e.g. When the ticker is started and the emitter has listeners. + * + * @class + * @memberof PIXI + */ +var Ticker = function Ticker() +{ + var this$1 = this; + + /** + * The first listener. All new listeners added are chained on this. + * @private + * @type {TickerListener} + */ + this._head = new TickerListener(null, null, Infinity); + + /** + * Internal current frame request ID + * @type {?number} + * @private + */ + this._requestId = null; + + /** + * Internal value managed by minFPS property setter and getter. + * This is the maximum allowed milliseconds between updates. + * @type {number} + * @private + */ + this._maxElapsedMS = 100; + + /** + * Internal value managed by maxFPS property setter and getter. + * This is the minimum allowed milliseconds between updates. + * @private + */ + this._minElapsedMS = 0; + + /** + * Whether or not this ticker should invoke the method + * {@link PIXI.Ticker#start} automatically + * when a listener is added. + * + * @member {boolean} + * @default false + */ + this.autoStart = false; + + /** + * Scalar time value from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * + * @member {number} + * @default 1 + */ + this.deltaTime = 1; + + /** + * Scaler time elapsed in milliseconds from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.deltaMS = 1 / settings.TARGET_FPMS; + + /** + * Time elapsed in milliseconds from last frame to this frame. + * Opposed to what the scalar {@link PIXI.Ticker#deltaTime} + * is based, this value is neither capped nor scaled. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.elapsedMS = 1 / settings.TARGET_FPMS; + + /** + * The last time {@link PIXI.Ticker#update} was invoked. + * This value is also reset internally outside of invoking + * update, but only when a new animation frame is requested. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * + * @member {number} + * @default -1 + */ + this.lastTime = -1; + + /** + * Factor of current {@link PIXI.Ticker#deltaTime}. + * @example + * // Scales ticker.deltaTime to what would be + * // the equivalent of approximately 120 FPS + * ticker.speed = 2; + * + * @member {number} + * @default 1 + */ + this.speed = 1; + + /** + * Whether or not this ticker has been started. + * `true` if {@link PIXI.Ticker#start} has been called. + * `false` if {@link PIXI.Ticker#stop} has been called. + * While `false`, this value may change to `true` in the + * event of {@link PIXI.Ticker#autoStart} being `true` + * and a listener is added. + * + * @member {boolean} + * @default false + */ + this.started = false; + + /** + * If enabled, deleting is disabled. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + + /** + * The last time keyframe was executed. + * Maintains a relatively fixed interval with the previous value. + * @member {number} + * @default -1 + * @private + */ + this._lastFrame = -1; + + /** + * Internal tick method bound to ticker instance. + * This is because in early 2015, Function.bind + * is still 60% slower in high performance scenarios. + * Also separating frame requests from update method + * so listeners may be called at any time and with + * any animation API, just invoke ticker.update(time). + * + * @private + * @param {number} time - Time since last tick. + */ + this._tick = function (time) { + this$1._requestId = null; + + if (this$1.started) + { + // Invoke listeners now + this$1.update(time); + // Listener side effects may have modified ticker state. + if (this$1.started && this$1._requestId === null && this$1._head.next) + { + this$1._requestId = requestAnimationFrame(this$1._tick); + } + } + }; +}; + +var prototypeAccessors$4 = { FPS: { configurable: true },minFPS: { configurable: true },maxFPS: { configurable: true } }; +var staticAccessors$2 = { shared: { configurable: true },system: { configurable: true } }; + +/** + * Conditionally requests a new animation frame. + * If a frame has not already been requested, and if the internal + * emitter has listeners, a new frame is requested. + * + * @private + */ +Ticker.prototype._requestIfNeeded = function _requestIfNeeded () +{ + if (this._requestId === null && this._head.next) + { + // ensure callbacks get correct delta + this.lastTime = performance.now(); + this._lastFrame = this.lastTime; + this._requestId = requestAnimationFrame(this._tick); + } +}; + +/** + * Conditionally cancels a pending animation frame. + * + * @private + */ +Ticker.prototype._cancelIfNeeded = function _cancelIfNeeded () +{ + if (this._requestId !== null) + { + cancelAnimationFrame(this._requestId); + this._requestId = null; + } +}; + +/** + * Conditionally requests a new animation frame. + * If the ticker has been started it checks if a frame has not already + * been requested, and if the internal emitter has listeners. If these + * conditions are met, a new frame is requested. If the ticker has not + * been started, but autoStart is `true`, then the ticker starts now, + * and continues with the previous conditions to request a new frame. + * + * @private + */ +Ticker.prototype._startIfPossible = function _startIfPossible () +{ + if (this.started) + { + this._requestIfNeeded(); + } + else if (this.autoStart) + { + this.start(); + } +}; + +/** + * Register a handler for tick events. Calls continuously unless + * it is removed or the ticker is stopped. + * + * @param {Function} fn - The listener function to be added for updates + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.add = function add (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority)); +}; + +/** + * Add a handler for the tick event which is only execute once. + * + * @param {Function} fn - The listener function to be added for one update + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.addOnce = function addOnce (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority, true)); +}; + +/** + * Internally adds the event handler so that it can be sorted by priority. + * Priority allows certain handler (user, AnimatedSprite, Interaction) to be run + * before the rendering. + * + * @private + * @param {TickerListener} listener - Current listener being added. + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype._addListener = function _addListener (listener) +{ + // For attaching to head + var current = this._head.next; + var previous = this._head; + + // Add the first item + if (!current) + { + listener.connect(previous); + } + else + { + // Go from highest to lowest priority + while (current) + { + if (listener.priority > current.priority) + { + listener.connect(previous); + break; + } + previous = current; + current = current.next; + } + + // Not yet connected + if (!listener.previous) + { + listener.connect(previous); + } + } + + this._startIfPossible(); + + return this; +}; + +/** + * Removes any handlers matching the function and context parameters. + * If no handlers are left after removing, then it cancels the animation frame. + * + * @param {Function} fn - The listener function to be removed + * @param {*} [context] - The listener context to be removed + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.remove = function remove (fn, context) +{ + var listener = this._head.next; + + while (listener) + { + // We found a match, lets remove it + // no break to delete all possible matches + // incase a listener was added 2+ times + if (listener.match(fn, context)) + { + listener = listener.destroy(); + } + else + { + listener = listener.next; + } + } + + if (!this._head.next) + { + this._cancelIfNeeded(); + } + + return this; +}; + +/** + * Starts the ticker. If the ticker has listeners + * a new animation frame is requested at this point. + */ +Ticker.prototype.start = function start () +{ + if (!this.started) + { + this.started = true; + this._requestIfNeeded(); + } +}; + +/** + * Stops the ticker. If the ticker has requested + * an animation frame it is canceled at this point. + */ +Ticker.prototype.stop = function stop () +{ + if (this.started) + { + this.started = false; + this._cancelIfNeeded(); + } +}; + +/** + * Destroy the ticker and don't use after this. Calling + * this method removes all references to internal events. + */ +Ticker.prototype.destroy = function destroy () +{ + if (!this._protected) + { + this.stop(); + + var listener = this._head.next; + + while (listener) + { + listener = listener.destroy(true); + } + + this._head.destroy(); + this._head = null; + } +}; + +/** + * Triggers an update. An update entails setting the + * current {@link PIXI.Ticker#elapsedMS}, + * the current {@link PIXI.Ticker#deltaTime}, + * invoking all listeners with current deltaTime, + * and then finally setting {@link PIXI.Ticker#lastTime} + * with the value of currentTime that was provided. + * This method will be called automatically by animation + * frame callbacks if the ticker instance has been started + * and listeners are added. + * + * @param {number} [currentTime=performance.now()] - the current time of execution + */ +Ticker.prototype.update = function update (currentTime) +{ + if ( currentTime === void 0 ) currentTime = performance.now(); + + var elapsedMS; + + // If the difference in time is zero or negative, we ignore most of the work done here. + // If there is no valid difference, then should be no reason to let anyone know about it. + // A zero delta, is exactly that, nothing should update. + // + // The difference in time can be negative, and no this does not mean time traveling. + // This can be the result of a race condition between when an animation frame is requested + // on the current JavaScript engine event loop, and when the ticker's start method is invoked + // (which invokes the internal _requestIfNeeded method). If a frame is requested before + // _requestIfNeeded is invoked, then the callback for the animation frame the ticker requests, + // can receive a time argument that can be less than the lastTime value that was set within + // _requestIfNeeded. This difference is in microseconds, but this is enough to cause problems. + // + // This check covers this browser engine timing issue, as well as if consumers pass an invalid + // currentTime value. This may happen if consumers opt-out of the autoStart, and update themselves. + + if (currentTime > this.lastTime) + { + // Save uncapped elapsedMS for measurement + elapsedMS = this.elapsedMS = currentTime - this.lastTime; + + // cap the milliseconds elapsed used for deltaTime + if (elapsedMS > this._maxElapsedMS) + { + elapsedMS = this._maxElapsedMS; + } + + elapsedMS *= this.speed; + + // If not enough time has passed, exit the function. + // Get ready for next frame by setting _lastFrame, but based on _minElapsedMS + // adjustment to ensure a relatively stable interval. + if (this._minElapsedMS) + { + var delta = currentTime - this._lastFrame | 0; + + if (delta < this._minElapsedMS) + { + return; + } + + this._lastFrame = currentTime - (delta % this._minElapsedMS); + } + + this.deltaMS = elapsedMS; + this.deltaTime = this.deltaMS * settings.TARGET_FPMS; + + // Cache a local reference, in-case ticker is destroyed + // during the emit, we can still check for head.next + var head = this._head; + + // Invoke listeners added to internal emitter + var listener = head.next; + + while (listener) + { + listener = listener.emit(this.deltaTime); + } + + if (!head.next) + { + this._cancelIfNeeded(); + } + } + else + { + this.deltaTime = this.deltaMS = this.elapsedMS = 0; + } + + this.lastTime = currentTime; +}; + +/** + * The frames per second at which this ticker is running. + * The default is approximately 60 in most modern browsers. + * **Note:** This does not factor in the value of + * {@link PIXI.Ticker#speed}, which is specific + * to scaling {@link PIXI.Ticker#deltaTime}. + * + * @member {number} + * @readonly + */ +prototypeAccessors$4.FPS.get = function () +{ + return 1000 / this.elapsedMS; +}; + +/** + * Manages the maximum amount of milliseconds allowed to + * elapse between invoking {@link PIXI.Ticker#update}. + * This value is used to cap {@link PIXI.Ticker#deltaTime}, + * but does not effect the measured value of {@link PIXI.Ticker#FPS}. + * When setting this property it is clamped to a value between + * `0` and `PIXI.settings.TARGET_FPMS * 1000`. + * + * @member {number} + * @default 10 + */ +prototypeAccessors$4.minFPS.get = function () +{ + return 1000 / this._maxElapsedMS; +}; + +prototypeAccessors$4.minFPS.set = function (fps) // eslint-disable-line require-jsdoc +{ + // Minimum must be below the maxFPS + var minFPS = Math.min(this.maxFPS, fps); + + // Must be at least 0, but below 1 / settings.TARGET_FPMS + var minFPMS = Math.min(Math.max(0, minFPS) / 1000, settings.TARGET_FPMS); + + this._maxElapsedMS = 1 / minFPMS; +}; + +/** + * Manages the minimum amount of milliseconds required to + * elapse between invoking {@link PIXI.Ticker#update}. + * This will effect the measured value of {@link PIXI.Ticker#FPS}. + * If it is set to `0`, then there is no limit; PixiJS will render as many frames as it can. + * Otherwise it will be at least `minFPS` + * + * @member {number} + * @default 0 + */ +prototypeAccessors$4.maxFPS.get = function () +{ + if (this._minElapsedMS) + { + return Math.round(1000 / this._minElapsedMS); + } + + return 0; +}; + +prototypeAccessors$4.maxFPS.set = function (fps) +{ + if (fps === 0) + { + this._minElapsedMS = 0; + } + else + { + // Max must be at least the minFPS + var maxFPS = Math.max(this.minFPS, fps); + + this._minElapsedMS = 1 / (maxFPS / 1000); + } +}; + +/** + * The shared ticker instance used by {@link PIXI.AnimatedSprite} and by + * {@link PIXI.VideoResource} to update animation frames / video textures. + * + * It may also be used by {@link PIXI.Application} if created with the `sharedTicker` option property set to true. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * Please follow the examples for usage, including how to opt-out of auto-starting the shared ticker. + * + * @example + * let ticker = PIXI.Ticker.shared; + * // Set this to prevent starting this ticker when listeners are added. + * // By default this is true only for the PIXI.Ticker.shared instance. + * ticker.autoStart = false; + * // FYI, call this to ensure the ticker is stopped. It should be stopped + * // if you have not attempted to render anything yet. + * ticker.stop(); + * // Call this when you are ready for a running shared ticker. + * ticker.start(); + * + * @example + * // You may use the shared ticker to render... + * let renderer = PIXI.autoDetectRenderer(); + * let stage = new PIXI.Container(); + * document.body.appendChild(renderer.view); + * ticker.add(function (time) { + * renderer.render(stage); + * }); + * + * @example + * // Or you can just update it manually. + * ticker.autoStart = false; + * ticker.stop(); + * function animate(time) { + * ticker.update(time); + * renderer.render(stage); + * requestAnimationFrame(animate); + * } + * animate(performance.now()); + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.shared.get = function () +{ + if (!Ticker._shared) + { + var shared = Ticker._shared = new Ticker(); + + shared.autoStart = true; + shared._protected = true; + } + + return Ticker._shared; +}; + +/** + * The system ticker instance used by {@link PIXI.interaction.InteractionManager} and by + * {@link PIXI.BasePrepare} for core timing functionality that shouldn't usually need to be paused, + * unlike the `shared` ticker which drives visual animations and rendering which may want to be paused. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.system.get = function () +{ + if (!Ticker._system) + { + var system = Ticker._system = new Ticker(); + + system.autoStart = true; + system._protected = true; + } + + return Ticker._system; +}; + +Object.defineProperties( Ticker.prototype, prototypeAccessors$4 ); +Object.defineProperties( Ticker, staticAccessors$2 ); + +/** + * Middleware for for Application Ticker. + * + * @example + * import {TickerPlugin} from '@pixi/ticker'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(TickerPlugin); + * + * @class + * @memberof PIXI + */ +var TickerPlugin = function TickerPlugin () {}; + +TickerPlugin.init = function init (options) +{ + var this$1 = this; + + // Set default + options = Object.assign({ + autoStart: true, + sharedTicker: false, + }, options); + + // Create ticker setter + Object.defineProperty(this, 'ticker', + { + set: function set(ticker) + { + if (this._ticker) + { + this._ticker.remove(this.render, this); + } + this._ticker = ticker; + if (ticker) + { + ticker.add(this.render, this, UPDATE_PRIORITY.LOW); + } + }, + get: function get() + { + return this._ticker; + }, + }); + + /** + * Convenience method for stopping the render. + * + * @method PIXI.Application#stop + */ + this.stop = function () { + this$1._ticker.stop(); + }; + + /** + * Convenience method for starting the render. + * + * @method PIXI.Application#start + */ + this.start = function () { + this$1._ticker.start(); + }; + + /** + * Internal reference to the ticker. + * + * @type {PIXI.Ticker} + * @name _ticker + * @memberof PIXI.Application# + * @private + */ + this._ticker = null; + + /** + * Ticker for doing render updates. + * + * @type {PIXI.Ticker} + * @name ticker + * @memberof PIXI.Application# + * @default PIXI.Ticker.shared + */ + this.ticker = options.sharedTicker ? Ticker.shared : new Ticker(); + + // Start the rendering + if (options.autoStart) + { + this.start(); + } +}; + +/** + * Clean up the ticker, scoped to application. + * + * @static + * @private + */ +TickerPlugin.destroy = function destroy () +{ + if (this._ticker) + { + var oldTicker = this._ticker; + + this.ticker = null; + oldTicker.destroy(); + } +}; + +/*! + * @pixi/core - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/core is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Base resource class for textures that manages validation and uploading, depending on its type. + * + * Uploading of a base texture to the GPU is required. + * + * @class + * @memberof PIXI.resources + */ +var Resource = function Resource(width, height) +{ + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * Internal width of the resource + * @member {number} + * @protected + */ + this._width = width; + + /** + * Internal height of the resource + * @member {number} + * @protected + */ + this._height = height; + + /** + * If resource has been destroyed + * @member {boolean} + * @readonly + * @default false + */ + this.destroyed = false; + + /** + * `true` if resource is created by BaseTexture + * useful for doing cleanup with BaseTexture destroy + * and not cleaning up resources that were created + * externally. + * @member {boolean} + * @protected + */ + this.internal = false; + + /** + * Mini-runner for handling resize events + * + * @member {Runner} + * @private + */ + this.onResize = new Runner('setRealSize', 2); + + /** + * Mini-runner for handling update events + * + * @member {Runner} + * @private + */ + this.onUpdate = new Runner('update'); + + /** + * Handle internal errors, such as loading errors + * + * @member {Runner} + * @private + */ + this.onError = new Runner('onError', 1); +}; + +var prototypeAccessors$5 = { valid: { configurable: true },width: { configurable: true },height: { configurable: true } }; + +/** + * Bind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.bind = function bind (baseTexture) +{ + this.onResize.add(baseTexture); + this.onUpdate.add(baseTexture); + this.onError.add(baseTexture); + + // Call a resize immediate if we already + // have the width and height of the resource + if (this._width || this._height) + { + this.onResize.run(this._width, this._height); + } +}; + +/** + * Unbind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.unbind = function unbind (baseTexture) +{ + this.onResize.remove(baseTexture); + this.onUpdate.remove(baseTexture); + this.onError.remove(baseTexture); +}; + +/** + * Trigger a resize event + * @param {number} width X dimension + * @param {number} height Y dimension + */ +Resource.prototype.resize = function resize (width, height) +{ + if (width !== this._width || height !== this._height) + { + this._width = width; + this._height = height; + this.onResize.run(width, height); + } +}; + +/** + * Has been validated + * @readonly + * @member {boolean} + */ +prototypeAccessors$5.valid.get = function () +{ + return !!this._width && !!this._height; +}; + +/** + * Has been updated trigger event + */ +Resource.prototype.update = function update () +{ + if (!this.destroyed) + { + this.onUpdate.run(); + } +}; + +/** + * This can be overridden to start preloading a resource + * or do any other prepare step. + * @protected + * @return {Promise} Handle the validate event + */ +Resource.prototype.load = function load () +{ + return Promise.resolve(); +}; + +/** + * The width of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.width.get = function () +{ + return this._width; +}; + +/** + * The height of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.height.get = function () +{ + return this._height; +}; + +/** + * Uploads the texture or returns false if it cant for some reason. Override this. + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} true is success + */ +Resource.prototype.upload = function upload (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Set the style, optional to override + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} `true` is success + */ +Resource.prototype.style = function style (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Clean up anything, this happens when destroying is ready. + * + * @protected + */ +Resource.prototype.dispose = function dispose () +{ + // override +}; + +/** + * Call when destroying resource, unbind any BaseTexture object + * before calling this method, as reference counts are maintained + * internally. + */ +Resource.prototype.destroy = function destroy () +{ + if (!this.destroyed) + { + this.destroyed = true; + this.dispose(); + this.onError.removeAll(); + this.onError = null; + this.onResize.removeAll(); + this.onResize = null; + this.onUpdate.removeAll(); + this.onUpdate = null; + } +}; + +Object.defineProperties( Resource.prototype, prototypeAccessors$5 ); + +/** + * Base for all the image/canvas resources + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BaseImageResource = /*@__PURE__*/(function (Resource) { + function BaseImageResource(source) + { + var width = source.naturalWidth || source.videoWidth || source.width; + var height = source.naturalHeight || source.videoHeight || source.height; + + Resource.call(this, width, height); + + /** + * The source element + * @member {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} + * @readonly + */ + this.source = source; + + /** + * If set to `true`, will force `texImage2D` over `texSubImage2D` for uploading. + * Certain types of media (e.g. video) using `texImage2D` is more performant. + * @member {boolean} + * @default false + * @private + */ + this.noSubImage = false; + } + + if ( Resource ) BaseImageResource.__proto__ = Resource; + BaseImageResource.prototype = Object.create( Resource && Resource.prototype ); + BaseImageResource.prototype.constructor = BaseImageResource; + + /** + * Set cross origin based detecting the url and the crossorigin + * @protected + * @param {HTMLElement} element - Element to apply crossOrigin + * @param {string} url - URL to check + * @param {boolean|string} [crossorigin=true] - Cross origin value to use + */ + BaseImageResource.crossOrigin = function crossOrigin (element, url, crossorigin) + { + if (crossorigin === undefined && url.indexOf('data:') !== 0) + { + element.crossOrigin = determineCrossOrigin(url); + } + else if (crossorigin !== false) + { + element.crossOrigin = typeof crossorigin === 'string' ? crossorigin : 'anonymous'; + } + }; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture + * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} [source] (optional) + * @returns {boolean} true is success + */ + BaseImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture, source) + { + var gl = renderer.gl; + var width = baseTexture.realWidth; + var height = baseTexture.realHeight; + + source = source || this.source; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (!this.noSubImage + && baseTexture.target === gl.TEXTURE_2D + && glTexture.width === width + && glTexture.height === height) + { + gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, baseTexture.format, baseTexture.type, source); + } + else + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(baseTexture.target, 0, baseTexture.format, baseTexture.format, baseTexture.type, source); + } + + return true; + }; + + /** + * Checks if source width/height was changed, resize can cause extra baseTexture update. + * Triggers one update in any case. + */ + BaseImageResource.prototype.update = function update () + { + if (this.destroyed) + { + return; + } + + var width = this.source.naturalWidth || this.source.videoWidth || this.source.width; + var height = this.source.naturalHeight || this.source.videoHeight || this.source.height; + + this.resize(width, height); + + Resource.prototype.update.call(this); + }; + + /** + * Destroy this BaseImageResource + * @override + * @param {PIXI.BaseTexture} [fromTexture] Optional base texture + * @return {boolean} Destroy was successful + */ + BaseImageResource.prototype.dispose = function dispose () + { + this.source = null; + }; + + return BaseImageResource; +}(Resource)); + +/** + * Resource type for HTMLImageElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + */ +var ImageResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLImageElement)) + { + var imageElement = new Image(); + + BaseImageResource.crossOrigin(imageElement, source, options.crossorigin); + + imageElement.src = source; + source = imageElement; + } + + BaseImageResource.call(this, source); + + // FireFox 68, and possibly other versions, seems like setting the HTMLImageElement#width and #height + // to non-zero values before its loading completes if images are in a cache. + // Because of this, need to set the `_width` and the `_height` to zero to avoid uploading incomplete images. + // Please refer to the issue #5968 (https://github.com/pixijs/pixi.js/issues/5968). + if (!source.complete && !!this._width && !!this._height) + { + this._width = 0; + this._height = 0; + } + + /** + * URL of the image source + * @member {string} + */ + this.url = source.src; + + /** + * When process is completed + * @member {Promise} + * @private + */ + this._process = null; + + /** + * If the image should be disposed after upload + * @member {boolean} + * @default false + */ + this.preserveBitmap = false; + + /** + * If capable, convert the image using createImageBitmap API + * @member {boolean} + * @default PIXI.settings.CREATE_IMAGE_BITMAP + */ + this.createBitmap = (options.createBitmap !== undefined + ? options.createBitmap : settings.CREATE_IMAGE_BITMAP) && !!window.createImageBitmap; + + /** + * Controls texture premultiplyAlpha field + * Copies from options + * @member {boolean|null} + * @readonly + */ + this.premultiplyAlpha = options.premultiplyAlpha !== false; + + /** + * The ImageBitmap element created for HTMLImageElement + * @member {ImageBitmap} + * @default null + */ + this.bitmap = null; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) ImageResource.__proto__ = BaseImageResource; + ImageResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageResource.prototype.constructor = ImageResource; + + /** + * returns a promise when image will be loaded and processed + * + * @param {boolean} [createBitmap=true] whether process image into bitmap + * @returns {Promise} + */ + ImageResource.prototype.load = function load (createBitmap) + { + var this$1 = this; + + if (createBitmap !== undefined) + { + this.createBitmap = createBitmap; + } + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + this$1.url = this$1.source.src; + var ref = this$1; + var source = ref.source; + + var completed = function () { + if (this$1.destroyed) + { + return; + } + source.onload = null; + source.onerror = null; + + this$1.resize(source.width, source.height); + this$1._load = null; + + if (this$1.createBitmap) + { + resolve(this$1.process()); + } + else + { + resolve(this$1); + } + }; + + if (source.complete && source.src) + { + completed(); + } + else + { + source.onload = completed; + source.onerror = function (event) { return this$1.onError.run(event); }; + } + }); + + return this._load; + }; + + /** + * Called when we need to convert image into BitmapImage. + * Can be called multiple times, real promise is cached inside. + * + * @returns {Promise} cached promise to fill that bitmap + */ + ImageResource.prototype.process = function process () + { + var this$1 = this; + + if (this._process !== null) + { + return this._process; + } + if (this.bitmap !== null || !window.createImageBitmap) + { + return Promise.resolve(this); + } + + this._process = window.createImageBitmap(this.source, + 0, 0, this.source.width, this.source.height, + { + premultiplyAlpha: this.premultiplyAlpha ? 'premultiply' : 'none', + }) + .then(function (bitmap) { + if (this$1.destroyed) + { + return Promise.reject(); + } + this$1.bitmap = bitmap; + this$1.update(); + this$1._process = null; + + return Promise.resolve(this$1); + }); + + return this._process; + }; + + /** + * Upload the image resource to GPU. + * + * @param {PIXI.Renderer} renderer - Renderer to upload to + * @param {PIXI.BaseTexture} baseTexture - BaseTexture for this resource + * @param {PIXI.GLTexture} glTexture - GLTexture to use + * @returns {boolean} true is success + */ + ImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + baseTexture.premultiplyAlpha = this.premultiplyAlpha; + + if (!this.createBitmap) + { + return BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture); + } + if (!this.bitmap) + { + // yeah, ignore the output + this.process(); + if (!this.bitmap) + { + return false; + } + } + + BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture, this.bitmap); + + if (!this.preserveBitmap) + { + // checks if there are other renderers that possibly need this bitmap + + var flag = true; + + for (var key in baseTexture._glTextures) + { + var otherTex = baseTexture._glTextures[key]; + + if (otherTex !== glTexture && otherTex.dirtyId !== baseTexture.dirtyId) + { + flag = false; + break; + } + } + + if (flag) + { + if (this.bitmap.close) + { + this.bitmap.close(); + } + + this.bitmap = null; + } + } + + return true; + }; + + /** + * Destroys this texture + * @override + */ + ImageResource.prototype.dispose = function dispose () + { + this.source.onload = null; + this.source.onerror = null; + + BaseImageResource.prototype.dispose.call(this); + + if (this.bitmap) + { + this.bitmap.close(); + this.bitmap = null; + } + this._process = null; + this._load = null; + }; + + return ImageResource; +}(BaseImageResource)); + +/** + * Collection of installed resource types, class must extend {@link PIXI.resources.Resource}. + * @example + * class CustomResource extends PIXI.resources.Resource { + * // MUST have source, options constructor signature + * // for auto-detected resources to be created. + * constructor(source, options) { + * super(); + * } + * upload(renderer, baseTexture, glTexture) { + * // upload with GL + * return true; + * } + * // used to auto-detect resource + * static test(source, extension) { + * return extension === 'xyz'|| source instanceof SomeClass; + * } + * } + * // Install the new resource type + * PIXI.resources.INSTALLED.push(CustomResource); + * + * @name PIXI.resources.INSTALLED + * @type {Array<*>} + * @static + * @readonly + */ +var INSTALLED = []; + +/** + * Create a resource element from a single source element. This + * auto-detects which type of resource to create. All resources that + * are auto-detectable must have a static `test` method and a constructor + * with the arguments `(source, options?)`. Currently, the supported + * resources for auto-detection include: + * - {@link PIXI.resources.ImageResource} + * - {@link PIXI.resources.CanvasResource} + * - {@link PIXI.resources.VideoResource} + * - {@link PIXI.resources.SVGResource} + * - {@link PIXI.resources.BufferResource} + * @static + * @function PIXI.resources.autoDetectResource + * @param {string|*} source - Resource source, this can be the URL to the resource, + * a typed-array (for BufferResource), HTMLVideoElement, SVG data-uri + * or any other resource that can be auto-detected. If not resource is + * detected, it's assumed to be an ImageResource. + * @param {object} [options] - Pass-through options to use for Resource + * @param {number} [options.width] - Width of BufferResource or SVG rasterization + * @param {number} [options.height] - Height of BufferResource or SVG rasterization + * @param {boolean} [options.autoLoad=true] - Image, SVG and Video flag to start loading + * @param {number} [options.scale=1] - SVG source scale. Overridden by width, height + * @param {boolean} [options.createBitmap=PIXI.settings.CREATE_IMAGE_BITMAP] - Image option to create Bitmap object + * @param {boolean} [options.crossorigin=true] - Image and Video option to set crossOrigin + * @param {boolean} [options.autoPlay=true] - Video option to start playing video immediately + * @param {number} [options.updateFPS=0] - Video option to update how many times a second the + * texture should be updated from the video. Leave at 0 to update at every render + * @return {PIXI.resources.Resource} The created resource. + */ +function autoDetectResource(source, options) +{ + if (!source) + { + return null; + } + + var extension = ''; + + if (typeof source === 'string') + { + // search for file extension: period, 3-4 chars, then ?, # or EOL + var result = (/\.(\w{3,4})(?:$|\?|#)/i).exec(source); + + if (result) + { + extension = result[1].toLowerCase(); + } + } + + for (var i = INSTALLED.length - 1; i >= 0; --i) + { + var ResourcePlugin = INSTALLED[i]; + + if (ResourcePlugin.test && ResourcePlugin.test(source, extension)) + { + return new ResourcePlugin(source, options); + } + } + + // When in doubt: probably an image + // might be appropriate to throw an error or return null + return new ImageResource(source, options); +} + +/** + * @interface SharedArrayBuffer + */ + +/** + * Buffer resource with data of typed array. + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BufferResource = /*@__PURE__*/(function (Resource) { + function BufferResource(source, options) + { + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + if (!width || !height) + { + throw new Error('BufferResource width or height invalid'); + } + + Resource.call(this, width, height); + + /** + * Source array + * Cannot be ClampedUint8Array because it cant be uploaded to WebGL + * + * @member {Float32Array|Uint8Array|Uint32Array} + */ + this.data = source; + } + + if ( Resource ) BufferResource.__proto__ = Resource; + BufferResource.prototype = Object.create( Resource && Resource.prototype ); + BufferResource.prototype.constructor = BufferResource; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture glTexture + * @returns {boolean} true is success + */ + BufferResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + glTexture.internalFormat, + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + glTexture.type, + this.data + ); + } + + return true; + }; + + /** + * Destroy and don't use after this + * @override + */ + BufferResource.prototype.dispose = function dispose () + { + this.data = null; + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @return {boolean} `true` if + */ + BufferResource.test = function test (source) + { + return source instanceof Float32Array + || source instanceof Uint8Array + || source instanceof Uint32Array; + }; + + return BufferResource; +}(Resource)); + +var defaultBufferOptions = { + scaleMode: SCALE_MODES.NEAREST, + format: FORMATS.RGBA, + premultiplyAlpha: false, +}; + +/** + * A Texture stores the information that represents an image. + * All textures have a base texture, which contains information about the source. + * Therefore you can have many textures all using a single BaseTexture + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + * @param {PIXI.resources.Resource|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} [resource=null] + * The current resource to use, for things that aren't Resource objects, will be converted + * into a Resource. + * @param {Object} [options] - Collection of options + * @param {PIXI.MIPMAP_MODES} [options.mipmap=PIXI.settings.MIPMAP_TEXTURES] - If mipmapping is enabled for texture + * @param {number} [options.anisotropicLevel=PIXI.settings.ANISOTROPIC_LEVEL] - Anisotropic filtering level of texture + * @param {PIXI.WRAP_MODES} [options.wrapMode=PIXI.settings.WRAP_MODE] - Wrap mode for textures + * @param {PIXI.SCALE_MODES} [options.scaleMode=PIXI.settings.SCALE_MODE] - Default scale mode, linear, nearest + * @param {PIXI.FORMATS} [options.format=PIXI.FORMATS.RGBA] - GL format type + * @param {PIXI.TYPES} [options.type=PIXI.TYPES.UNSIGNED_BYTE] - GL data type + * @param {PIXI.TARGETS} [options.target=PIXI.TARGETS.TEXTURE_2D] - GL texture target + * @param {boolean} [options.premultiplyAlpha=true] - Pre multiply the image alpha + * @param {number} [options.width=0] - Width of the texture + * @param {number} [options.height=0] - Height of the texture + * @param {number} [options.resolution] - Resolution of the base texture + * @param {object} [options.resourceOptions] - Optional resource options, + * see {@link PIXI.resources.autoDetectResource autoDetectResource} + */ +var BaseTexture = /*@__PURE__*/(function (EventEmitter) { + function BaseTexture(resource, options) + { + if ( resource === void 0 ) resource = null; + if ( options === void 0 ) options = null; + + EventEmitter.call(this); + + options = options || {}; + + var premultiplyAlpha = options.premultiplyAlpha; + var mipmap = options.mipmap; + var anisotropicLevel = options.anisotropicLevel; + var scaleMode = options.scaleMode; + var width = options.width; + var height = options.height; + var wrapMode = options.wrapMode; + var format = options.format; + var type = options.type; + var target = options.target; + var resolution = options.resolution; + var resourceOptions = options.resourceOptions; + + // Convert the resource to a Resource object + if (resource && !(resource instanceof Resource)) + { + resource = autoDetectResource(resource, resourceOptions); + resource.internal = true; + } + + /** + * The width of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.width = width || 0; + + /** + * The height of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.height = height || 0; + + /** + * The resolution / device pixel ratio of the texture + * + * @member {number} + * @default PIXI.settings.RESOLUTION + */ + this.resolution = resolution || settings.RESOLUTION; + + /** + * Mipmap mode of the texture, affects downscaled images + * + * @member {PIXI.MIPMAP_MODES} + * @default PIXI.settings.MIPMAP_TEXTURES + */ + this.mipmap = mipmap !== undefined ? mipmap : settings.MIPMAP_TEXTURES; + + /** + * Anisotropic filtering level of texture + * + * @member {number} + * @default PIXI.settings.ANISOTROPIC_LEVEL + */ + this.anisotropicLevel = anisotropicLevel !== undefined ? anisotropicLevel : settings.ANISOTROPIC_LEVEL; + + /** + * How the texture wraps + * @member {number} + */ + this.wrapMode = wrapMode || settings.WRAP_MODE; + + /** + * The scale mode to apply when scaling this texture + * + * @member {PIXI.SCALE_MODES} + * @default PIXI.settings.SCALE_MODE + */ + this.scaleMode = scaleMode !== undefined ? scaleMode : settings.SCALE_MODE; + + /** + * The pixel format of the texture + * + * @member {PIXI.FORMATS} + * @default PIXI.FORMATS.RGBA + */ + this.format = format || FORMATS.RGBA; + + /** + * The type of resource data + * + * @member {PIXI.TYPES} + * @default PIXI.TYPES.UNSIGNED_BYTE + */ + this.type = type || TYPES.UNSIGNED_BYTE; + + /** + * The target type + * + * @member {PIXI.TARGETS} + * @default PIXI.TARGETS.TEXTURE_2D + */ + this.target = target || TARGETS.TEXTURE_2D; + + /** + * Set to true to enable pre-multiplied alpha + * + * @member {boolean} + * @default true + */ + this.premultiplyAlpha = premultiplyAlpha !== false; + + /** + * Global unique identifier for this BaseTexture + * + * @member {string} + * @protected + */ + this.uid = uid(); + + /** + * Used by automatic texture Garbage Collection, stores last GC tick when it was bound + * + * @member {number} + * @protected + */ + this.touched = 0; + + /** + * Whether or not the texture is a power of two, try to use power of two textures as much + * as you can + * + * @readonly + * @member {boolean} + * @default false + */ + this.isPowerOfTwo = false; + this._refreshPOT(); + + /** + * The map of render context textures where this is bound + * + * @member {Object} + * @private + */ + this._glTextures = {}; + + /** + * Used by TextureSystem to only update texture to the GPU when needed. + * Please call `update()` to increment it. + * + * @readonly + * @member {number} + */ + this.dirtyId = 0; + + /** + * Used by TextureSystem to only update texture style when needed. + * + * @protected + * @member {number} + */ + this.dirtyStyleId = 0; + + /** + * Currently default cache ID. + * + * @member {string} + */ + this.cacheId = null; + + /** + * Generally speaking means when resource is loaded. + * @readonly + * @member {boolean} + */ + this.valid = width > 0 && height > 0; + + /** + * The collection of alternative cache ids, since some BaseTextures + * can have more than one ID, short name and longer full URL + * + * @member {Array} + * @readonly + */ + this.textureCacheIds = []; + + /** + * Flag if BaseTexture has been destroyed. + * + * @member {boolean} + * @readonly + */ + this.destroyed = false; + + /** + * The resource used by this BaseTexture, there can only + * be one resource per BaseTexture, but textures can share + * resources. + * + * @member {PIXI.resources.Resource} + * @readonly + */ + this.resource = null; + + /** + * Number of the texture batch, used by multi-texture renderers + * + * @member {number} + */ + this._batchEnabled = 0; + + /** + * Fired when a not-immediately-available source finishes loading. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when a not-immediately-available source fails to load. + * + * @protected + * @event PIXI.BaseTexture#error + * @param {PIXI.BaseTexture} baseTexture - Resource errored. + * @param {ErrorEvent} event - Load error event. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#update + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being updated. + */ + + /** + * Fired when BaseTexture is destroyed. + * + * @protected + * @event PIXI.BaseTexture#dispose + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being destroyed. + */ + + // Set the resource + this.setResource(resource); + } + + if ( EventEmitter ) BaseTexture.__proto__ = EventEmitter; + BaseTexture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + BaseTexture.prototype.constructor = BaseTexture; + + var prototypeAccessors = { realWidth: { configurable: true },realHeight: { configurable: true } }; + + /** + * Pixel width of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realWidth.get = function () + { + return Math.ceil((this.width * this.resolution) - 1e-4); + }; + + /** + * Pixel height of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realHeight.get = function () + { + return Math.ceil((this.height * this.resolution) - 1e-4); + }; + + /** + * Changes style options of BaseTexture + * + * @param {PIXI.SCALE_MODES} [scaleMode] - Pixi scalemode + * @param {PIXI.MIPMAP_MODES} [mipmap] - enable mipmaps + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setStyle = function setStyle (scaleMode, mipmap) + { + var dirty; + + if (scaleMode !== undefined && scaleMode !== this.scaleMode) + { + this.scaleMode = scaleMode; + dirty = true; + } + + if (mipmap !== undefined && mipmap !== this.mipmap) + { + this.mipmap = mipmap; + dirty = true; + } + + if (dirty) + { + this.dirtyStyleId++; + } + + return this; + }; + + /** + * Changes w/h/resolution. Texture becomes valid if width and height are greater than zero. + * + * @param {number} width Visual width + * @param {number} height Visual height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setSize = function setSize (width, height, resolution) + { + this.resolution = resolution || this.resolution; + this.width = width; + this.height = height; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Sets real size of baseTexture, preserves current resolution. + * + * @param {number} realWidth Full rendered width + * @param {number} realHeight Full rendered height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setRealSize = function setRealSize (realWidth, realHeight, resolution) + { + this.resolution = resolution || this.resolution; + this.width = realWidth / this.resolution; + this.height = realHeight / this.resolution; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Refresh check for isPowerOfTwo texture based on size + * + * @private + */ + BaseTexture.prototype._refreshPOT = function _refreshPOT () + { + this.isPowerOfTwo = isPow2(this.realWidth) && isPow2(this.realHeight); + }; + + /** + * Changes resolution + * + * @param {number} [resolution] res + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResolution = function setResolution (resolution) + { + var oldResolution = this.resolution; + + if (oldResolution === resolution) + { + return this; + } + + this.resolution = resolution; + + if (this.valid) + { + this.width = this.width * oldResolution / resolution; + this.height = this.height * oldResolution / resolution; + this.emit('update', this); + } + + this._refreshPOT(); + + return this; + }; + + /** + * Sets the resource if it wasn't set. Throws error if resource already present + * + * @param {PIXI.resources.Resource} resource - that is managing this BaseTexture + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResource = function setResource (resource) + { + if (this.resource === resource) + { + return this; + } + + if (this.resource) + { + throw new Error('Resource can be set only once'); + } + + resource.bind(this); + + this.resource = resource; + + return this; + }; + + /** + * Invalidates the object. Texture becomes valid if width and height are greater than zero. + */ + BaseTexture.prototype.update = function update () + { + if (!this.valid) + { + if (this.width > 0 && this.height > 0) + { + this.valid = true; + this.emit('loaded', this); + this.emit('update', this); + } + } + else + { + this.dirtyId++; + this.dirtyStyleId++; + this.emit('update', this); + } + }; + + /** + * Handle errors with resources. + * @private + * @param {ErrorEvent} event - Error event emitted. + */ + BaseTexture.prototype.onError = function onError (event) + { + this.emit('error', this, event); + }; + + /** + * Destroys this base texture. + * The method stops if resource doesn't want this texture to be destroyed. + * Removes texture from all caches. + */ + BaseTexture.prototype.destroy = function destroy () + { + // remove and destroy the resource + if (this.resource) + { + this.resource.unbind(this); + // only destroy resourced created internally + if (this.resource.internal) + { + this.resource.destroy(); + } + this.resource = null; + } + + if (this.cacheId) + { + delete BaseTextureCache[this.cacheId]; + delete TextureCache[this.cacheId]; + + this.cacheId = null; + } + + // finally let the WebGL renderer know.. + this.dispose(); + + BaseTexture.removeFromCache(this); + this.textureCacheIds = null; + + this.destroyed = true; + }; + + /** + * Frees the texture from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseTexture.prototype.dispose = function dispose () + { + this.emit('dispose', this); + }; + + /** + * Helper function that creates a base texture based on the source you provide. + * The source can be - image url, image element, canvas element. If the + * source is an image url or an image element and not in the base texture + * cache, it will be created and loaded. + * + * @static + * @param {string|HTMLImageElement|HTMLCanvasElement|SVGElement|HTMLVideoElement} source - The + * source to create base texture from. + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @returns {PIXI.BaseTexture} The new base texture. + */ + BaseTexture.from = function from (source, options) + { + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var baseTexture = BaseTextureCache[cacheId]; + + if (!baseTexture) + { + baseTexture = new BaseTexture(source, options); + baseTexture.cacheId = cacheId; + BaseTexture.addToCache(baseTexture, cacheId); + } + + return baseTexture; + }; + + /** + * Create a new BaseTexture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.BaseTexture} The resulting new BaseTexture + */ + BaseTexture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + buffer = buffer || new Float32Array(width * height * 4); + + var resource = new BufferResource(buffer, { width: width, height: height }); + var type = buffer instanceof Float32Array ? TYPES.FLOAT : TYPES.UNSIGNED_BYTE; + + return new BaseTexture(resource, Object.assign(defaultBufferOptions, options || { width: width, height: height, type: type })); + }; + + /** + * Adds a BaseTexture to the global BaseTextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.BaseTexture} baseTexture - The BaseTexture to add to the cache. + * @param {string} id - The id that the BaseTexture will be stored against. + */ + BaseTexture.addToCache = function addToCache (baseTexture, id) + { + if (id) + { + if (baseTexture.textureCacheIds.indexOf(id) === -1) + { + baseTexture.textureCacheIds.push(id); + } + + if (BaseTextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("BaseTexture added to the cache with an id [" + id + "] that already had an entry")); + } + + BaseTextureCache[id] = baseTexture; + } + }; + + /** + * Remove a BaseTexture from the global BaseTextureCache. + * + * @static + * @param {string|PIXI.BaseTexture} baseTexture - id of a BaseTexture to be removed, or a BaseTexture instance itself. + * @return {PIXI.BaseTexture|null} The BaseTexture that was removed. + */ + BaseTexture.removeFromCache = function removeFromCache (baseTexture) + { + if (typeof baseTexture === 'string') + { + var baseTextureFromCache = BaseTextureCache[baseTexture]; + + if (baseTextureFromCache) + { + var index = baseTextureFromCache.textureCacheIds.indexOf(baseTexture); + + if (index > -1) + { + baseTextureFromCache.textureCacheIds.splice(index, 1); + } + + delete BaseTextureCache[baseTexture]; + + return baseTextureFromCache; + } + } + else if (baseTexture && baseTexture.textureCacheIds) + { + for (var i = 0; i < baseTexture.textureCacheIds.length; ++i) + { + delete BaseTextureCache[baseTexture.textureCacheIds[i]]; + } + + baseTexture.textureCacheIds.length = 0; + + return baseTexture; + } + + return null; + }; + + Object.defineProperties( BaseTexture.prototype, prototypeAccessors ); + + return BaseTexture; +}(eventemitter3)); + +/** + * Global number of the texture batch, used by multi-texture renderers + * + * @static + * @member {number} + */ +BaseTexture._globalBatch = 0; + +/** + * A resource that contains a number of sources. + * + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + * @param {number|Array<*>} source - Number of items in array or the collection + * of image URLs to use. Can also be resources, image elements, canvas, etc. + * @param {object} [options] Options to apply to {@link PIXI.resources.autoDetectResource} + * @param {number} [options.width] - Width of the resource + * @param {number} [options.height] - Height of the resource + */ +var ArrayResource = /*@__PURE__*/(function (Resource) { + function ArrayResource(source, options) + { + options = options || {}; + + var urls; + var length = source; + + if (Array.isArray(source)) + { + urls = source; + length = source.length; + } + + Resource.call(this, options.width, options.height); + + /** + * Collection of resources. + * @member {Array} + * @readonly + */ + this.items = []; + + /** + * Dirty IDs for each part + * @member {Array} + * @readonly + */ + this.itemDirtyIds = []; + + for (var i = 0; i < length; i++) + { + var partTexture = new BaseTexture(); + + this.items.push(partTexture); + this.itemDirtyIds.push(-1); + } + + /** + * Number of elements in array + * + * @member {number} + * @readonly + */ + this.length = length; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (urls) + { + for (var i$1 = 0; i$1 < length; i$1++) + { + this.addResourceAt(autoDetectResource(urls[i$1], options), i$1); + } + } + } + + if ( Resource ) ArrayResource.__proto__ = Resource; + ArrayResource.prototype = Object.create( Resource && Resource.prototype ); + ArrayResource.prototype.constructor = ArrayResource; + + /** + * Destroy this BaseImageResource + * @override + */ + ArrayResource.prototype.dispose = function dispose () + { + for (var i = 0, len = this.length; i < len; i++) + { + this.items[i].destroy(); + } + this.items = null; + this.itemDirtyIds = null; + this._load = null; + }; + + /** + * Set a resource by ID + * + * @param {PIXI.resources.Resource} resource + * @param {number} index - Zero-based index of resource to set + * @return {PIXI.resources.ArrayResource} Instance for chaining + */ + ArrayResource.prototype.addResourceAt = function addResourceAt (resource, index) + { + var baseTexture = this.items[index]; + + if (!baseTexture) + { + throw new Error(("Index " + index + " is out of bounds")); + } + + // Inherit the first resource dimensions + if (resource.valid && !this.valid) + { + this.resize(resource.width, resource.height); + } + + this.items[index].setResource(resource); + + return this; + }; + + /** + * Set the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.bind = function bind (baseTexture) + { + Resource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_2D_ARRAY; + + for (var i = 0; i < this.length; i++) + { + this.items[i].on('update', baseTexture.update, baseTexture); + } + }; + + /** + * Unset the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.unbind = function unbind (baseTexture) + { + Resource.prototype.unbind.call(this, baseTexture); + + for (var i = 0; i < this.length; i++) + { + this.items[i].off('update', baseTexture.update, baseTexture); + } + }; + + /** + * Load all the resources simultaneously + * @override + * @return {Promise} When load is resolved + */ + ArrayResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var resources = this.items.map(function (item) { return item.resource; }); + + // TODO: also implement load part-by-part strategy + var promises = resources.map(function (item) { return item.load(); }); + + this._load = Promise.all(promises) + .then(function () { + var ref = resources[0]; + var width = ref.width; + var height = ref.height; + + this$1.resize(width, height); + + return Promise.resolve(this$1); + } + ); + + return this._load; + }; + + /** + * Upload the resources to the GPU. + * @param {PIXI.Renderer} renderer + * @param {PIXI.BaseTexture} texture + * @param {PIXI.GLTexture} glTexture + * @returns {boolean} whether texture was uploaded + */ + ArrayResource.prototype.upload = function upload (renderer, texture, glTexture) + { + var ref = this; + var length = ref.length; + var itemDirtyIds = ref.itemDirtyIds; + var items = ref.items; + var gl = renderer.gl; + + if (glTexture.dirtyId < 0) + { + gl.texImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + texture.format, + this._width, + this._height, + length, + 0, + texture.format, + texture.type, + null + ); + } + + for (var i = 0; i < length; i++) + { + var item = items[i]; + + if (itemDirtyIds[i] < item.dirtyId) + { + itemDirtyIds[i] = item.dirtyId; + if (item.valid) + { + gl.texSubImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + 0, // xoffset + 0, // yoffset + i, // zoffset + item.resource.width, + item.resource.height, + 1, + texture.format, + texture.type, + item.resource.source + ); + } + } + } + + return true; + }; + + return ArrayResource; +}(Resource)); + +/** + * @interface OffscreenCanvas + */ + +/** + * Resource type for HTMLCanvasElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLCanvasElement} source - Canvas element to use + */ +var CanvasResource = /*@__PURE__*/(function (BaseImageResource) { + function CanvasResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) CanvasResource.__proto__ = BaseImageResource; + CanvasResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + CanvasResource.prototype.constructor = CanvasResource; + + CanvasResource.test = function test (source) + { + var OffscreenCanvas = window.OffscreenCanvas; + + // Check for browsers that don't yet support OffscreenCanvas + if (OffscreenCanvas && source instanceof OffscreenCanvas) + { + return true; + } + + return source instanceof HTMLCanvasElement; + }; + + return CanvasResource; +}(BaseImageResource)); + +/** + * Resource for a CubeTexture which contains six resources. + * + * @class + * @extends PIXI.resources.ArrayResource + * @memberof PIXI.resources + * @param {Array} [source] Collection of URLs or resources + * to use as the sides of the cube. + * @param {object} [options] - ImageResource options + * @param {number} [options.width] - Width of resource + * @param {number} [options.height] - Height of resource + */ +var CubeResource = /*@__PURE__*/(function (ArrayResource) { + function CubeResource(source, options) + { + options = options || {}; + + ArrayResource.call(this, source, options); + + if (this.length !== CubeResource.SIDES) + { + throw new Error(("Invalid length. Got " + (this.length) + ", expected 6")); + } + + for (var i = 0; i < CubeResource.SIDES; i++) + { + this.items[i].target = TARGETS.TEXTURE_CUBE_MAP_POSITIVE_X + i; + } + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( ArrayResource ) CubeResource.__proto__ = ArrayResource; + CubeResource.prototype = Object.create( ArrayResource && ArrayResource.prototype ); + CubeResource.prototype.constructor = CubeResource; + + /** + * Add binding + * + * @override + * @param {PIXI.BaseTexture} baseTexture - parent base texture + */ + CubeResource.prototype.bind = function bind (baseTexture) + { + ArrayResource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_CUBE_MAP; + }; + + /** + * Upload the resource + * + * @returns {boolean} true is success + */ + CubeResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var dirty = this.itemDirtyIds; + + for (var i = 0; i < CubeResource.SIDES; i++) + { + var side = this.items[i]; + + if (dirty[i] < side.dirtyId) + { + dirty[i] = side.dirtyId; + if (side.valid) + { + side.resource.upload(renderer, side, glTexture); + } + } + } + + return true; + }; + + return CubeResource; +}(ArrayResource)); + +/** + * Number of texture sides to store for CubeResources + * + * @name PIXI.resources.CubeResource.SIDES + * @static + * @member {number} + * @default 6 + */ +CubeResource.SIDES = 6; + +/** + * Resource type for SVG elements and graphics. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {string} source - Base64 encoded SVG element or URL for SVG file. + * @param {object} [options] - Options to use + * @param {number} [options.scale=1] Scale to apply to SVG. Overridden by... + * @param {number} [options.width] Rasterize SVG this wide. Aspect ratio preserved if height not specified. + * @param {number} [options.height] Rasterize SVG this high. Aspect ratio preserved if width not specified. + * @param {boolean} [options.autoLoad=true] Start loading right away. + */ +var SVGResource = /*@__PURE__*/(function (BaseImageResource) { + function SVGResource(source, options) + { + options = options || {}; + + BaseImageResource.call(this, document.createElement('canvas')); + this._width = 0; + this._height = 0; + + /** + * Base64 encoded SVG element or URL for SVG file + * @readonly + * @member {string} + */ + this.svg = source; + + /** + * The source scale to apply when rasterizing on load + * @readonly + * @member {number} + */ + this.scale = options.scale || 1; + + /** + * A width override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideWidth = options.width; + + /** + * A height override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideHeight = options.height; + + /** + * Call when completely loaded + * @private + * @member {function} + */ + this._resolve = null; + + /** + * Cross origin value to use + * @private + * @member {boolean|string} + */ + this._crossorigin = options.crossorigin; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) SVGResource.__proto__ = BaseImageResource; + SVGResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + SVGResource.prototype.constructor = SVGResource; + + SVGResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + // Save this until after load is finished + this$1._resolve = function () { + this$1.resize(this$1.source.width, this$1.source.height); + resolve(this$1); + }; + + // Convert SVG inline string to data-uri + if ((/^\]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*>/i; // eslint-disable-line max-len + +/** + * Resource type for HTMLVideoElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLVideoElement|object|string|Array} source - Video element to use. + * @param {object} [options] - Options to use + * @param {boolean} [options.autoLoad=true] - Start loading the video immediately + * @param {boolean} [options.autoPlay=true] - Start playing video immediately + * @param {number} [options.updateFPS=0] - How many times a second to update the texture from the video. + * Leave at 0 to update at every render. + * @param {boolean} [options.crossorigin=true] - Load image using cross origin + */ +var VideoResource = /*@__PURE__*/(function (BaseImageResource) { + function VideoResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLVideoElement)) + { + var videoElement = document.createElement('video'); + + // workaround for https://github.com/pixijs/pixi.js/issues/5996 + videoElement.setAttribute('preload', 'auto'); + videoElement.setAttribute('webkit-playsinline', ''); + videoElement.setAttribute('playsinline', ''); + + if (typeof source === 'string') + { + source = [source]; + } + + BaseImageResource.crossOrigin(videoElement, (source[0].src || source[0]), options.crossorigin); + + // array of objects or strings + for (var i = 0; i < source.length; ++i) + { + var sourceElement = document.createElement('source'); + + var ref = source[i]; + var src = ref.src; + var mime = ref.mime; + + src = src || source[i]; + + var baseSrc = src.split('?').shift().toLowerCase(); + var ext = baseSrc.substr(baseSrc.lastIndexOf('.') + 1); + + mime = mime || ("video/" + ext); + + sourceElement.src = src; + sourceElement.type = mime; + + videoElement.appendChild(sourceElement); + } + + // Override the source + source = videoElement; + } + + BaseImageResource.call(this, source); + + this.noSubImage = true; + this._autoUpdate = true; + this._isAutoUpdating = false; + this._updateFPS = options.updateFPS || 0; + this._msToNextUpdate = 0; + + /** + * When set to true will automatically play videos used by this texture once + * they are loaded. If false, it will not modify the playing state. + * + * @member {boolean} + * @default true + */ + this.autoPlay = options.autoPlay !== false; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + /** + * Callback when completed with load. + * @member {function} + * @private + */ + this._resolve = null; + + // Bind for listeners + this._onCanPlay = this._onCanPlay.bind(this); + this._onError = this._onError.bind(this); + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) VideoResource.__proto__ = BaseImageResource; + VideoResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + VideoResource.prototype.constructor = VideoResource; + + var prototypeAccessors = { autoUpdate: { configurable: true },updateFPS: { configurable: true } }; + + /** + * Trigger updating of the texture + * + * @param {number} [deltaTime=0] - time delta since last tick + */ + VideoResource.prototype.update = function update (deltaTime) + { + if ( deltaTime === void 0 ) deltaTime = 0; + + if (!this.destroyed) + { + // account for if video has had its playbackRate changed + var elapsedMS = Ticker.shared.elapsedMS * this.source.playbackRate; + + this._msToNextUpdate = Math.floor(this._msToNextUpdate - elapsedMS); + if (!this._updateFPS || this._msToNextUpdate <= 0) + { + BaseImageResource.prototype.update.call(this, deltaTime); + this._msToNextUpdate = this._updateFPS ? Math.floor(1000 / this._updateFPS) : 0; + } + } + }; + + /** + * Start preloading the video resource. + * + * @protected + * @return {Promise} Handle the validate event + */ + VideoResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var source = this.source; + + if ((source.readyState === source.HAVE_ENOUGH_DATA || source.readyState === source.HAVE_FUTURE_DATA) + && source.width && source.height) + { + source.complete = true; + } + + source.addEventListener('play', this._onPlayStart.bind(this)); + source.addEventListener('pause', this._onPlayStop.bind(this)); + + if (!this._isSourceReady()) + { + source.addEventListener('canplay', this._onCanPlay); + source.addEventListener('canplaythrough', this._onCanPlay); + source.addEventListener('error', this._onError, true); + } + else + { + this._onCanPlay(); + } + + this._load = new Promise(function (resolve) { + if (this$1.valid) + { + resolve(this$1); + } + else + { + this$1._resolve = resolve; + + source.load(); + } + }); + + return this._load; + }; + + /** + * Handle video error events. + * + * @private + */ + VideoResource.prototype._onError = function _onError () + { + this.source.removeEventListener('error', this._onError, true); + this.onError.run(event); + }; + + /** + * Returns true if the underlying source is playing. + * + * @private + * @return {boolean} True if playing. + */ + VideoResource.prototype._isSourcePlaying = function _isSourcePlaying () + { + var source = this.source; + + return (source.currentTime > 0 && source.paused === false && source.ended === false && source.readyState > 2); + }; + + /** + * Returns true if the underlying source is ready for playing. + * + * @private + * @return {boolean} True if ready. + */ + VideoResource.prototype._isSourceReady = function _isSourceReady () + { + return this.source.readyState === 3 || this.source.readyState === 4; + }; + + /** + * Runs the update loop when the video is ready to play + * + * @private + */ + VideoResource.prototype._onPlayStart = function _onPlayStart () + { + // Just in case the video has not received its can play even yet.. + if (!this.valid) + { + this._onCanPlay(); + } + + if (!this._isAutoUpdating && this.autoUpdate) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + }; + + /** + * Fired when a pause event is triggered, stops the update loop + * + * @private + */ + VideoResource.prototype._onPlayStop = function _onPlayStop () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + }; + + /** + * Fired when the video is loaded and ready to play + * + * @private + */ + VideoResource.prototype._onCanPlay = function _onCanPlay () + { + var ref = this; + var source = ref.source; + + source.removeEventListener('canplay', this._onCanPlay); + source.removeEventListener('canplaythrough', this._onCanPlay); + + var valid = this.valid; + + this.resize(source.videoWidth, source.videoHeight); + + // prevent multiple loaded dispatches.. + if (!valid && this._resolve) + { + this._resolve(this); + this._resolve = null; + } + + if (this._isSourcePlaying()) + { + this._onPlayStart(); + } + else if (this.autoPlay) + { + source.play(); + } + }; + + /** + * Destroys this texture + * @override + */ + VideoResource.prototype.dispose = function dispose () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + } + + if (this.source) + { + this.source.removeEventListener('error', this._onError, true); + this.source.pause(); + this.source.src = ''; + this.source.load(); + } + BaseImageResource.prototype.dispose.call(this); + }; + + /** + * Should the base texture automatically update itself, set to true by default + * + * @member {boolean} + */ + prototypeAccessors.autoUpdate.get = function () + { + return this._autoUpdate; + }; + + prototypeAccessors.autoUpdate.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._autoUpdate) + { + this._autoUpdate = value; + + if (!this._autoUpdate && this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + else if (this._autoUpdate && !this._isAutoUpdating) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + } + }; + + /** + * How many times a second to update the texture from the video. Leave at 0 to update at every render. + * A lower fps can help performance, as updating the texture at 60fps on a 30ps video may not be efficient. + * + * @member {number} + */ + prototypeAccessors.updateFPS.get = function () + { + return this._updateFPS; + }; + + prototypeAccessors.updateFPS.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._updateFPS) + { + this._updateFPS = value; + } + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @param {string} extension - The extension of source, if set + * @return {boolean} `true` if video source + */ + VideoResource.test = function test (source, extension) + { + return (source instanceof HTMLVideoElement) + || VideoResource.TYPES.indexOf(extension) > -1; + }; + + Object.defineProperties( VideoResource.prototype, prototypeAccessors ); + + return VideoResource; +}(BaseImageResource)); + +/** + * List of common video file extensions supported by VideoResource. + * @constant + * @member {Array} + * @static + * @readonly + */ +VideoResource.TYPES = ['mp4', 'm4v', 'webm', 'ogg', 'ogv', 'h264', 'avi', 'mov']; + +/** + * Resource type for ImageBitmap. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {ImageBitmap} source - Image element to use + */ +var ImageBitmapResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageBitmapResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) ImageBitmapResource.__proto__ = BaseImageResource; + ImageBitmapResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageBitmapResource.prototype.constructor = ImageBitmapResource; + + ImageBitmapResource.test = function test (source) + { + return !!window.createImageBitmap && source instanceof ImageBitmap; + }; + + return ImageBitmapResource; +}(BaseImageResource)); + +INSTALLED.push( + ImageResource, + ImageBitmapResource, + CanvasResource, + VideoResource, + SVGResource, + BufferResource, + CubeResource, + ArrayResource +); + +/** + * System is a base class used for extending systems used by the {@link PIXI.Renderer} + * + * @see PIXI.Renderer#addSystem + * @class + * @memberof PIXI + */ +var System = function System(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Generic destroy methods to be overridden by the subclass + */ +System.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Resource type for DepthTexture. + * @class + * @extends PIXI.resources.BufferResource + * @memberof PIXI.resources + */ +var DepthResource = /*@__PURE__*/(function (BufferResource) { + function DepthResource () { + BufferResource.apply(this, arguments); + } + + if ( BufferResource ) DepthResource.__proto__ = BufferResource; + DepthResource.prototype = Object.create( BufferResource && BufferResource.prototype ); + DepthResource.prototype.constructor = DepthResource; + + DepthResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + gl.DEPTH_COMPONENT16, // Needed for depth to render properly in webgl2.0 + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + baseTexture.type, + this.data + ); + } + + return true; + }; + + return DepthResource; +}(BufferResource)); + +/** + * Frame buffer used by the BaseRenderTexture + * + * @class + * @memberof PIXI + */ +var Framebuffer = function Framebuffer(width, height) +{ + this.width = Math.ceil(width || 100); + this.height = Math.ceil(height || 100); + + this.stencil = false; + this.depth = false; + + this.dirtyId = 0; + this.dirtyFormat = 0; + this.dirtySize = 0; + + this.depthTexture = null; + this.colorTextures = []; + + this.glFramebuffers = {}; + + this.disposeRunner = new Runner('disposeFramebuffer', 2); +}; + +var prototypeAccessors$1$2 = { colorTexture: { configurable: true } }; + +/** + * Reference to the colorTexture. + * + * @member {PIXI.Texture[]} + * @readonly + */ +prototypeAccessors$1$2.colorTexture.get = function () +{ + return this.colorTextures[0]; +}; + +/** + * Add texture to the colorTexture array + * + * @param {number} [index=0] - Index of the array to add the texture to + * @param {PIXI.Texture} [texture] - Texture to add to the array + */ +Framebuffer.prototype.addColorTexture = function addColorTexture (index, texture) +{ + if ( index === void 0 ) index = 0; + + // TODO add some validation to the texture - same width / height etc? + this.colorTextures[index] = texture || new BaseTexture(null, { scaleMode: 0, + resolution: 1, + mipmap: false, + width: this.width, + height: this.height });// || new Texture(); + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Add a depth texture to the frame buffer + * + * @param {PIXI.Texture} [texture] - Texture to add + */ +Framebuffer.prototype.addDepthTexture = function addDepthTexture (texture) +{ + /* eslint-disable max-len */ + this.depthTexture = texture || new BaseTexture(new DepthResource(null, { width: this.width, height: this.height }), { scaleMode: 0, + resolution: 1, + width: this.width, + height: this.height, + mipmap: false, + format: FORMATS.DEPTH_COMPONENT, + type: TYPES.UNSIGNED_SHORT });// UNSIGNED_SHORT; + /* eslint-disable max-len */ + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable depth on the frame buffer + */ +Framebuffer.prototype.enableDepth = function enableDepth () +{ + this.depth = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable stencil on the frame buffer + */ +Framebuffer.prototype.enableStencil = function enableStencil () +{ + this.stencil = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Resize the frame buffer + * + * @param {number} width - Width of the frame buffer to resize to + * @param {number} height - Height of the frame buffer to resize to + */ +Framebuffer.prototype.resize = function resize (width, height) +{ + width = Math.ceil(width); + height = Math.ceil(height); + + if (width === this.width && height === this.height) { return; } + + this.width = width; + this.height = height; + + this.dirtyId++; + this.dirtySize++; + + for (var i = 0; i < this.colorTextures.length; i++) + { + var texture = this.colorTextures[i]; + var resolution = texture.resolution; + + // take into acount the fact the texture may have a different resolution.. + texture.setSize(width / resolution, height / resolution); + } + + if (this.depthTexture) + { + var resolution$1 = this.depthTexture.resolution; + + this.depthTexture.setSize(width / resolution$1, height / resolution$1); + } +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Framebuffer.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +Object.defineProperties( Framebuffer.prototype, prototypeAccessors$1$2 ); + +/** + * A BaseRenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a BaseRenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * A BaseRenderTexture takes a snapshot of any Display Object given to its render method. The position + * and rotation of the given Display Objects is ignored. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 800, height: 600 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 100, height: 100 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.BaseTexture + * @memberof PIXI + */ +var BaseRenderTexture = /*@__PURE__*/(function (BaseTexture) { + function BaseRenderTexture(options) + { + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + // Backward compatibility of signature + var width$1 = arguments[0]; + var height$1 = arguments[1]; + var scaleMode = arguments[2]; + var resolution = arguments[3]; + + options = { width: width$1, height: height$1, scaleMode: scaleMode, resolution: resolution }; + /* eslint-enable prefer-rest-params */ + } + + BaseTexture.call(this, null, options); + + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + // Set defaults + this.mipmap = false; + this.width = Math.ceil(width) || 100; + this.height = Math.ceil(height) || 100; + this.valid = true; + + /** + * A reference to the canvas render target (we only need one as this can be shared across renderers) + * + * @protected + * @member {object} + */ + this._canvasRenderTarget = null; + + this.clearColor = [0, 0, 0, 0]; + + this.framebuffer = new Framebuffer(this.width * this.resolution, this.height * this.resolution) + .addColorTexture(0, this); + + // TODO - could this be added the systems? + + /** + * The data structure for the stencil masks. + * + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + + /** + * The data structure for the filters. + * + * @member {PIXI.Graphics[]} + */ + this.filterStack = [{}]; + } + + if ( BaseTexture ) BaseRenderTexture.__proto__ = BaseTexture; + BaseRenderTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype ); + BaseRenderTexture.prototype.constructor = BaseRenderTexture; + + /** + * Resizes the BaseRenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + */ + BaseRenderTexture.prototype.resize = function resize (width, height) + { + width = Math.ceil(width); + height = Math.ceil(height); + this.framebuffer.resize(width * this.resolution, height * this.resolution); + }; + + /** + * Frees the texture and framebuffer from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseRenderTexture.prototype.dispose = function dispose () + { + this.framebuffer.dispose(); + + BaseTexture.prototype.dispose.call(this); + }; + + /** + * Destroys this texture. + * + */ + BaseRenderTexture.prototype.destroy = function destroy () + { + BaseTexture.prototype.destroy.call(this, true); + + this.framebuffer = null; + }; + + return BaseRenderTexture; +}(BaseTexture)); + +/** + * Stores a texture's frame in UV coordinates, in + * which everything lies in the rectangle `[(0,0), (1,0), + * (1,1), (0,1)]`. + * + * | Corner | Coordinates | + * |--------------|-------------| + * | Top-Left | `(x0,y0)` | + * | Top-Right | `(x1,y1)` | + * | Bottom-Right | `(x2,y2)` | + * | Bottom-Left | `(x3,y3)` | + * + * @class + * @protected + * @memberof PIXI + */ +var TextureUvs = function TextureUvs() +{ + /** + * X-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.x0 = 0; + + /** + * Y-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.y0 = 0; + + /** + * X-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.x1 = 1; + + /** + * Y-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.y1 = 0; + + /** + * X-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.x2 = 1; + + /** + * Y-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.y2 = 1; + + /** + * X-component of bottom-left corner `(x3,y3)`. + * + * @member {number} + */ + this.x3 = 0; + + /** + * Y-component of bottom-right corner `(x3,y3)`. + * + * @member {number} + */ + this.y3 = 1; + + this.uvsFloat32 = new Float32Array(8); +}; + +/** + * Sets the texture Uvs based on the given frame information. + * + * @protected + * @param {PIXI.Rectangle} frame - The frame of the texture + * @param {PIXI.Rectangle} baseFrame - The base frame of the texture + * @param {number} rotate - Rotation of frame, see {@link PIXI.GroupD8} + */ +TextureUvs.prototype.set = function set (frame, baseFrame, rotate) +{ + var tw = baseFrame.width; + var th = baseFrame.height; + + if (rotate) + { + // width and height div 2 div baseFrame size + var w2 = frame.width / 2 / tw; + var h2 = frame.height / 2 / th; + + // coordinates of center + var cX = (frame.x / tw) + w2; + var cY = (frame.y / th) + h2; + + rotate = GroupD8.add(rotate, GroupD8.NW); // NW is top-left corner + this.x0 = cX + (w2 * GroupD8.uX(rotate)); + this.y0 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); // rotate 90 degrees clockwise + this.x1 = cX + (w2 * GroupD8.uX(rotate)); + this.y1 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x2 = cX + (w2 * GroupD8.uX(rotate)); + this.y2 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x3 = cX + (w2 * GroupD8.uX(rotate)); + this.y3 = cY + (h2 * GroupD8.uY(rotate)); + } + else + { + this.x0 = frame.x / tw; + this.y0 = frame.y / th; + + this.x1 = (frame.x + frame.width) / tw; + this.y1 = frame.y / th; + + this.x2 = (frame.x + frame.width) / tw; + this.y2 = (frame.y + frame.height) / th; + + this.x3 = frame.x / tw; + this.y3 = (frame.y + frame.height) / th; + } + + this.uvsFloat32[0] = this.x0; + this.uvsFloat32[1] = this.y0; + this.uvsFloat32[2] = this.x1; + this.uvsFloat32[3] = this.y1; + this.uvsFloat32[4] = this.x2; + this.uvsFloat32[5] = this.y2; + this.uvsFloat32[6] = this.x3; + this.uvsFloat32[7] = this.y3; +}; + +var DEFAULT_UVS = new TextureUvs(); + +/** + * A texture stores the information that represents an image or part of an image. + * + * It cannot be added to the display list directly; instead use it as the texture for a Sprite. + * If no frame is provided for a texture, then the whole image is used. + * + * You can directly create a texture from an image and then reuse it multiple times like this : + * + * ```js + * let texture = PIXI.Texture.from('assets/image.png'); + * let sprite1 = new PIXI.Sprite(texture); + * let sprite2 = new PIXI.Sprite(texture); + * ``` + * + * If you didnt pass the texture frame to constructor, it enables `noFrame` mode: + * it subscribes on baseTexture events, it automatically resizes at the same time as baseTexture. + * + * Textures made from SVGs, loaded or not, cannot be used before the file finishes processing. + * You can check for this by checking the sprite's _textureID property. + * ```js + * var texture = PIXI.Texture.from('assets/image.svg'); + * var sprite1 = new PIXI.Sprite(texture); + * //sprite1._textureID should not be undefined if the texture has finished processing the SVG file + * ``` + * You can use a ticker or rAF to ensure your sprites load the finished textures after processing. See issue #3068. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var Texture = /*@__PURE__*/(function (EventEmitter) { + function Texture(baseTexture, frame, orig, trim, rotate, anchor) + { + EventEmitter.call(this); + + /** + * Does this Texture have any frame data assigned to it? + * + * This mode is enabled automatically if no frame was passed inside constructor. + * + * In this mode texture is subscribed to baseTexture events, and fires `update` on any change. + * + * Beware, after loading or resize of baseTexture event can fired two times! + * If you want more control, subscribe on baseTexture itself. + * + * ```js + * texture.on('update', () => {}); + * ``` + * + * Any assignment of `frame` switches off `noFrame` mode. + * + * @member {boolean} + */ + this.noFrame = false; + + if (!frame) + { + this.noFrame = true; + frame = new Rectangle(0, 0, 1, 1); + } + + if (baseTexture instanceof Texture) + { + baseTexture = baseTexture.baseTexture; + } + + /** + * The base texture that this texture uses. + * + * @member {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering, + * irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases) + * + * @member {PIXI.Rectangle} + */ + this._frame = frame; + + /** + * This is the trimmed area of original texture, before it was put in atlas + * Please call `updateUvs()` after you change coordinates of `trim` manually. + * + * @member {PIXI.Rectangle} + */ + this.trim = trim; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = false; + + /** + * This will let a renderer know that a texture has been updated (used mainly for WebGL uv updates) + * + * @member {boolean} + */ + this.requiresUpdate = false; + + /** + * The WebGL UV data cache. Can be used as quad UV + * + * @member {PIXI.TextureUvs} + * @protected + */ + this._uvs = DEFAULT_UVS; + + /** + * Default TextureMatrix instance for this texture + * By default that object is not created because its heavy + * + * @member {PIXI.TextureMatrix} + */ + this.uvMatrix = null; + + /** + * This is the area of original texture, before it was put in atlas + * + * @member {PIXI.Rectangle} + */ + this.orig = orig || frame;// new Rectangle(0, 0, 1, 1); + + this._rotate = Number(rotate || 0); + + if (rotate === true) + { + // this is old texturepacker legacy, some games/libraries are passing "true" for rotated textures + this._rotate = 2; + } + else if (this._rotate % 2 !== 0) + { + throw new Error('attempt to use diamond-shaped UVs. If you are sure, set rotation manually'); + } + + /** + * Anchor point that is used as default if sprite is created with this texture. + * Changing the `defaultAnchor` at a later point of time will not update Sprite's anchor point. + * @member {PIXI.Point} + * @default {0,0} + */ + this.defaultAnchor = anchor ? new Point(anchor.x, anchor.y) : new Point(0, 0); + + /** + * Update ID is observed by sprites and TextureMatrix instances. + * Call updateUvs() to increment it. + * + * @member {number} + * @protected + */ + + this._updateID = 0; + + /** + * The ids under which this Texture has been added to the texture cache. This is + * automatically set as long as Texture.addToCache is used, but may not be set if a + * Texture is added directly to the TextureCache array. + * + * @member {string[]} + */ + this.textureCacheIds = []; + + if (!baseTexture.valid) + { + baseTexture.once('loaded', this.onBaseTextureUpdated, this); + } + else if (this.noFrame) + { + // if there is no frame we should monitor for any base texture changes.. + if (baseTexture.valid) + { + this.onBaseTextureUpdated(baseTexture); + } + } + else + { + this.frame = frame; + } + + if (this.noFrame) + { + baseTexture.on('update', this.onBaseTextureUpdated, this); + } + } + + if ( EventEmitter ) Texture.__proto__ = EventEmitter; + Texture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + Texture.prototype.constructor = Texture; + + var prototypeAccessors = { resolution: { configurable: true },frame: { configurable: true },rotate: { configurable: true },width: { configurable: true },height: { configurable: true } }; + + /** + * Updates this texture on the gpu. + * + * Calls the TextureResource update. + * + * If you adjusted `frame` manually, please call `updateUvs()` instead. + * + */ + Texture.prototype.update = function update () + { + if (this.baseTexture.resource) + { + this.baseTexture.resource.update(); + } + }; + + /** + * Called when the base texture is updated + * + * @protected + * @param {PIXI.BaseTexture} baseTexture - The base texture. + */ + Texture.prototype.onBaseTextureUpdated = function onBaseTextureUpdated (baseTexture) + { + if (this.noFrame) + { + if (!this.baseTexture.valid) + { + return; + } + + this._frame.width = baseTexture.width; + this._frame.height = baseTexture.height; + this.valid = true; + this.updateUvs(); + } + else + { + // TODO this code looks confusing.. boo to abusing getters and setters! + // if user gave us frame that has bigger size than resized texture it can be a problem + this.frame = this._frame; + } + + this.emit('update', this); + }; + + /** + * Destroys this texture + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ + Texture.prototype.destroy = function destroy (destroyBase) + { + if (this.baseTexture) + { + if (destroyBase) + { + var ref = this.baseTexture; + var resource = ref.resource; + + // delete the texture if it exists in the texture cache.. + // this only needs to be removed if the base texture is actually destroyed too.. + if (resource && TextureCache[resource.url]) + { + Texture.removeFromCache(resource.url); + } + + this.baseTexture.destroy(); + } + + this.baseTexture.off('update', this.onBaseTextureUpdated, this); + + this.baseTexture = null; + } + + this._frame = null; + this._uvs = null; + this.trim = null; + this.orig = null; + + this.valid = false; + + Texture.removeFromCache(this); + this.textureCacheIds = null; + }; + + /** + * Creates a new texture object that acts the same as this one. + * + * @return {PIXI.Texture} The new texture + */ + Texture.prototype.clone = function clone () + { + return new Texture(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor); + }; + + /** + * Updates the internal WebGL UV cache. Use it after you change `frame` or `trim` of the texture. + * Call it after changing the frame + */ + Texture.prototype.updateUvs = function updateUvs () + { + if (this._uvs === DEFAULT_UVS) + { + this._uvs = new TextureUvs(); + } + + this._uvs.set(this._frame, this.baseTexture, this.rotate); + + this._updateID++; + }; + + /** + * Helper function that creates a new Texture based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|PIXI.BaseTexture} source + * Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The newly created texture + */ + Texture.from = function from (source, options) + { + if ( options === void 0 ) options = {}; + + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var texture = TextureCache[cacheId]; + + if (!texture) + { + if (!options.resolution) + { + options.resolution = getResolutionOfUrl(source); + } + + texture = new Texture(new BaseTexture(source, options)); + texture.baseTexture.cacheId = cacheId; + + BaseTexture.addToCache(texture.baseTexture, cacheId); + Texture.addToCache(texture, cacheId); + } + + // lets assume its a base texture! + return texture; + }; + + /** + * Create a new Texture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The resulting new BaseTexture + */ + Texture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + return new Texture(BaseTexture.fromBuffer(buffer, width, height, options)); + }; + + /** + * Create a texture from a source and add to the cache. + * + * @static + * @param {HTMLImageElement|HTMLCanvasElement} source - The input source. + * @param {String} imageUrl - File name of texture, for cache and resolving resolution. + * @param {String} [name] - Human readable name for the texture cache. If no name is + * specified, only `imageUrl` will be used as the cache ID. + * @return {PIXI.Texture} Output texture + */ + Texture.fromLoader = function fromLoader (source, imageUrl, name) + { + var resource = new ImageResource(source); + + resource.url = imageUrl; + + var baseTexture = new BaseTexture(resource, { + scaleMode: settings.SCALE_MODE, + resolution: getResolutionOfUrl(imageUrl), + }); + + var texture = new Texture(baseTexture); + + // No name, use imageUrl instead + if (!name) + { + name = imageUrl; + } + + // lets also add the frame to pixi's global cache for 'fromLoader' function + BaseTexture.addToCache(texture.baseTexture, name); + Texture.addToCache(texture, name); + + // also add references by url if they are different. + if (name !== imageUrl) + { + BaseTexture.addToCache(texture.baseTexture, imageUrl); + Texture.addToCache(texture, imageUrl); + } + + return texture; + }; + + /** + * Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.Texture} texture - The Texture to add to the cache. + * @param {string} id - The id that the Texture will be stored against. + */ + Texture.addToCache = function addToCache (texture, id) + { + if (id) + { + if (texture.textureCacheIds.indexOf(id) === -1) + { + texture.textureCacheIds.push(id); + } + + if (TextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("Texture added to the cache with an id [" + id + "] that already had an entry")); + } + + TextureCache[id] = texture; + } + }; + + /** + * Remove a Texture from the global TextureCache. + * + * @static + * @param {string|PIXI.Texture} texture - id of a Texture to be removed, or a Texture instance itself + * @return {PIXI.Texture|null} The Texture that was removed + */ + Texture.removeFromCache = function removeFromCache (texture) + { + if (typeof texture === 'string') + { + var textureFromCache = TextureCache[texture]; + + if (textureFromCache) + { + var index = textureFromCache.textureCacheIds.indexOf(texture); + + if (index > -1) + { + textureFromCache.textureCacheIds.splice(index, 1); + } + + delete TextureCache[texture]; + + return textureFromCache; + } + } + else if (texture && texture.textureCacheIds) + { + for (var i = 0; i < texture.textureCacheIds.length; ++i) + { + // Check that texture matches the one being passed in before deleting it from the cache. + if (TextureCache[texture.textureCacheIds[i]] === texture) + { + delete TextureCache[texture.textureCacheIds[i]]; + } + } + + texture.textureCacheIds.length = 0; + + return texture; + } + + return null; + }; + + /** + * Returns resolution of baseTexture + * + * @member {number} + * @readonly + */ + prototypeAccessors.resolution.get = function () + { + return this.baseTexture.resolution; + }; + + /** + * The frame specifies the region of the base texture that this texture uses. + * Please call `updateUvs()` after you change coordinates of `frame` manually. + * + * @member {PIXI.Rectangle} + */ + prototypeAccessors.frame.get = function () + { + return this._frame; + }; + + prototypeAccessors.frame.set = function (frame) // eslint-disable-line require-jsdoc + { + this._frame = frame; + + this.noFrame = false; + + var x = frame.x; + var y = frame.y; + var width = frame.width; + var height = frame.height; + var xNotFit = x + width > this.baseTexture.width; + var yNotFit = y + height > this.baseTexture.height; + + if (xNotFit || yNotFit) + { + var relationship = xNotFit && yNotFit ? 'and' : 'or'; + var errorX = "X: " + x + " + " + width + " = " + (x + width) + " > " + (this.baseTexture.width); + var errorY = "Y: " + y + " + " + height + " = " + (y + height) + " > " + (this.baseTexture.height); + + throw new Error('Texture Error: frame does not fit inside the base Texture dimensions: ' + + errorX + " " + relationship + " " + errorY); + } + + this.valid = width && height && this.baseTexture.valid; + + if (!this.trim && !this.rotate) + { + this.orig = frame; + } + + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * Indicates whether the texture is rotated inside the atlas + * set to 2 to compensate for texture packer rotation + * set to 6 to compensate for spine packer rotation + * can be used to rotate or mirror sprites + * See {@link PIXI.GroupD8} for explanation + * + * @member {number} + */ + prototypeAccessors.rotate.get = function () + { + return this._rotate; + }; + + prototypeAccessors.rotate.set = function (rotate) // eslint-disable-line require-jsdoc + { + this._rotate = rotate; + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * The width of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.orig.width; + }; + + /** + * The height of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.orig.height; + }; + + Object.defineProperties( Texture.prototype, prototypeAccessors ); + + return Texture; +}(eventemitter3)); + +function createWhiteTexture() +{ + var canvas = document.createElement('canvas'); + + canvas.width = 16; + canvas.height = 16; + + var context = canvas.getContext('2d'); + + context.fillStyle = 'white'; + context.fillRect(0, 0, 16, 16); + + return new Texture(new BaseTexture(new CanvasResource(canvas))); +} + +function removeAllHandlers(tex) +{ + tex.destroy = function _emptyDestroy() { /* empty */ }; + tex.on = function _emptyOn() { /* empty */ }; + tex.once = function _emptyOnce() { /* empty */ }; + tex.emit = function _emptyEmit() { /* empty */ }; +} + +/** + * An empty texture, used often to not have to create multiple empty textures. + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.EMPTY = new Texture(new BaseTexture()); +removeAllHandlers(Texture.EMPTY); +removeAllHandlers(Texture.EMPTY.baseTexture); + +/** + * A white texture of 16x16 size, used for graphics and other things + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.WHITE = createWhiteTexture(); +removeAllHandlers(Texture.WHITE); +removeAllHandlers(Texture.WHITE.baseTexture); + +/** + * A RenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a RenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * __Hint-2__: The actual memory allocation will happen on first render. + * You shouldn't create renderTextures each frame just to delete them after, try to reuse them. + * + * A RenderTexture takes a snapshot of any Display Object given to its render method. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let renderTexture = PIXI.RenderTexture.create(800, 600); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let renderTexture = new PIXI.RenderTexture.create(100, 100); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.Texture + * @memberof PIXI + */ +var RenderTexture = /*@__PURE__*/(function (Texture) { + function RenderTexture(baseRenderTexture, frame) + { + // support for legacy.. + var _legacyRenderer = null; + + if (!(baseRenderTexture instanceof BaseRenderTexture)) + { + /* eslint-disable prefer-rest-params, no-console */ + var width = arguments[1]; + var height = arguments[2]; + var scaleMode = arguments[3]; + var resolution = arguments[4]; + + // we have an old render texture.. + console.warn(("Please use RenderTexture.create(" + width + ", " + height + ") instead of the ctor directly.")); + _legacyRenderer = arguments[0]; + /* eslint-enable prefer-rest-params, no-console */ + + frame = null; + baseRenderTexture = new BaseRenderTexture({ + width: width, + height: height, + scaleMode: scaleMode, + resolution: resolution, + }); + } + + /** + * The base texture object that this texture uses + * + * @member {PIXI.BaseTexture} + */ + Texture.call(this, baseRenderTexture, frame); + + this.legacyRenderer = _legacyRenderer; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = true; + + /** + * Stores `sourceFrame` when this texture is inside current filter stack. + * You can read it inside filters. + * + * @readonly + * @member {PIXI.Rectangle} + */ + this.filterFrame = null; + + /** + * The key for pooled texture of FilterSystem + * @protected + * @member {string} + */ + this.filterPoolKey = null; + + this.updateUvs(); + } + + if ( Texture ) RenderTexture.__proto__ = Texture; + RenderTexture.prototype = Object.create( Texture && Texture.prototype ); + RenderTexture.prototype.constructor = RenderTexture; + + /** + * Resizes the RenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + * @param {boolean} [resizeBaseTexture=true] - Should the baseTexture.width and height values be resized as well? + */ + RenderTexture.prototype.resize = function resize (width, height, resizeBaseTexture) + { + if ( resizeBaseTexture === void 0 ) resizeBaseTexture = true; + + width = Math.ceil(width); + height = Math.ceil(height); + + // TODO - could be not required.. + this.valid = (width > 0 && height > 0); + + this._frame.width = this.orig.width = width; + this._frame.height = this.orig.height = height; + + if (resizeBaseTexture) + { + this.baseTexture.resize(width, height); + } + + this.updateUvs(); + }; + + /** + * Changes the resolution of baseTexture, but does not change framebuffer size. + * + * @param {number} resolution - The new resolution to apply to RenderTexture + */ + RenderTexture.prototype.setResolution = function setResolution (resolution) + { + var ref = this; + var baseTexture = ref.baseTexture; + + if (baseTexture.resolution === resolution) + { + return; + } + + baseTexture.setResolution(resolution); + this.resize(baseTexture.width, baseTexture.height, false); + }; + + /** + * A short hand way of creating a render texture. + * + * @param {object} [options] - Options + * @param {number} [options.width=100] - The width of the render texture + * @param {number} [options.height=100] - The height of the render texture + * @param {number} [options.scaleMode=PIXI.settings.SCALE_MODE] - See {@link PIXI.SCALE_MODES} for possible values + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the texture being generated + * @return {PIXI.RenderTexture} The new render texture + */ + RenderTexture.create = function create (options) + { + // fallback, old-style: create(width, height, scaleMode, resolution) + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + options = { + width: options, + height: arguments[1], + scaleMode: arguments[2], + resolution: arguments[3], + }; + /* eslint-enable prefer-rest-params */ + } + + return new RenderTexture(new BaseRenderTexture(options)); + }; + + return RenderTexture; +}(Texture)); + +/** + * Experimental! + * + * Texture pool, used by FilterSystem and plugins + * Stores collection of temporary pow2 or screen-sized renderTextures + * + * If you use custom RenderTexturePool for your filters, you can use methods + * `getFilterTexture` and `returnFilterTexture` same as in + * + * @class + * @memberof PIXI + */ +var RenderTexturePool = function RenderTexturePool(textureOptions) +{ + this.texturePool = {}; + this.textureOptions = textureOptions || {}; + /** + * Allow renderTextures of the same size as screen, not just pow2 + * + * Automatically sets to true after `setScreenSize` + * + * @member {boolean} + * @default false + */ + this.enableFullScreen = false; + + this._pixelsWidth = 0; + this._pixelsHeight = 0; +}; + +/** + * creates of texture with params that were specified in pool constructor + * + * @param {number} realWidth width of texture in pixels + * @param {number} realHeight height of texture in pixels + * @returns {RenderTexture} + */ +RenderTexturePool.prototype.createTexture = function createTexture (realWidth, realHeight) +{ + var baseRenderTexture = new BaseRenderTexture(Object.assign({ + width: realWidth, + height: realHeight, + resolution: 1, + }, this.textureOptions)); + + return new RenderTexture(baseRenderTexture); +}; + +/** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ +RenderTexturePool.prototype.getOptimalTexture = function getOptimalTexture (minWidth, minHeight, resolution) +{ + if ( resolution === void 0 ) resolution = 1; + + var key = RenderTexturePool.SCREEN_KEY; + + minWidth *= resolution; + minHeight *= resolution; + + if (!this.enableFullScreen || minWidth !== this._pixelsWidth || minHeight !== this._pixelsHeight) + { + minWidth = nextPow2(minWidth); + minHeight = nextPow2(minHeight); + key = ((minWidth & 0xFFFF) << 16) | (minHeight & 0xFFFF); + } + + if (!this.texturePool[key]) + { + this.texturePool[key] = []; + } + + var renderTexture = this.texturePool[key].pop(); + + if (!renderTexture) + { + renderTexture = this.createTexture(minWidth, minHeight); + } + + renderTexture.filterPoolKey = key; + renderTexture.setResolution(resolution); + + return renderTexture; +}; + +/** + * Gets extra texture of the same size as input renderTexture + * + * `getFilterTexture(input, 0.5)` or `getFilterTexture(0.5, input)` + * + * @param {PIXI.RenderTexture} input renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * It overrides, it does not multiply + * @returns {PIXI.RenderTexture} + */ +RenderTexturePool.prototype.getFilterTexture = function getFilterTexture (input, resolution) +{ + var filterTexture = this.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; +}; + +/** + * Place a render texture back into the pool. + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnTexture = function returnTexture (renderTexture) +{ + var key = renderTexture.filterPoolKey; + + renderTexture.filterFrame = null; + this.texturePool[key].push(renderTexture); +}; + +/** + * Alias for returnTexture, to be compliant with FilterSystem interface + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) +{ + this.returnTexture(renderTexture); +}; + +/** + * Clears the pool + * + * @param {boolean} [destroyTextures=true] destroy all stored textures + */ +RenderTexturePool.prototype.clear = function clear (destroyTextures) +{ + destroyTextures = destroyTextures !== false; + if (destroyTextures) + { + for (var i in this.texturePool) + { + var textures = this.texturePool[i]; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + } + } + + this.texturePool = {}; +}; + +/** + * If screen size was changed, drops all screen-sized textures, + * sets new screen size, sets `enableFullScreen` to true + * + * Size is measured in pixels, `renderer.view` can be passed here, not `renderer.screen` + * + * @param {PIXI.ISize} size - Initial size of screen + */ +RenderTexturePool.prototype.setScreenSize = function setScreenSize (size) +{ + if (size.width === this._pixelsWidth + && size.height === this._pixelsHeight) + { + return; + } + + var screenKey = RenderTexturePool.SCREEN_KEY; + var textures = this.texturePool[screenKey]; + + this.enableFullScreen = size.width > 0 && size.height > 0; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + this.texturePool[screenKey] = []; + + this._pixelsWidth = size.width; + this._pixelsHeight = size.height; +}; + +/** + * Key that is used to store fullscreen renderTextures in a pool + * + * @static + * @const {string} + */ +RenderTexturePool.SCREEN_KEY = 'screen'; + +/* eslint-disable max-len */ + +/** + * Holds the information for a single attribute structure required to render geometry. + * + * This does not contain the actual data, but instead has a buffer id that maps to a {@link PIXI.Buffer} + * This can include anything from positions, uvs, normals, colors etc. + * + * @class + * @memberof PIXI + */ +var Attribute = function Attribute(buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( type === void 0 ) type = 5126; + + this.buffer = buffer; + this.size = size; + this.normalized = normalized; + this.type = type; + this.stride = stride; + this.start = start; + this.instance = instance; +}; + +/** + * Destroys the Attribute. + */ +Attribute.prototype.destroy = function destroy () +{ + this.buffer = null; +}; + +/** + * Helper function that creates an Attribute based on the information provided + * + * @static + * @param {string} buffer the id of the buffer that this attribute will look for + * @param {Number} [size=2] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 + * @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) + * @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) + * @param {Boolean} [normalized=false] should the data be normalized. + * + * @returns {PIXI.Attribute} A new {@link PIXI.Attribute} based on the information provided + */ +Attribute.from = function from (buffer, size, normalized, type, stride) +{ + return new Attribute(buffer, size, normalized, type, stride); +}; + +var UID = 0; +/* eslint-disable max-len */ + +/** + * A wrapper for data so that it can be used and uploaded by WebGL + * + * @class + * @memberof PIXI + */ +var Buffer$1 = function Buffer(data, _static, index) +{ + if ( _static === void 0 ) _static = true; + if ( index === void 0 ) index = false; + + /** + * The data in the buffer, as a typed array + * + * @member {ArrayBuffer| SharedArrayBuffer|ArrayBufferView} + */ + this.data = data || new Float32Array(1); + + /** + * A map of renderer IDs to webgl buffer + * + * @private + * @member {object} + */ + this._glBuffers = {}; + + this._updateID = 0; + + this.index = index; + + this.static = _static; + + this.id = UID++; + + this.disposeRunner = new Runner('disposeBuffer', 2); +}; + +// TODO could explore flagging only a partial upload? +/** + * flags this buffer as requiring an upload to the GPU + * @param {ArrayBuffer|SharedArrayBuffer|ArrayBufferView} [data] the data to update in the buffer. + */ +Buffer$1.prototype.update = function update (data) +{ + this.data = data || this.data; + this._updateID++; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Buffer$1.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the buffer + */ +Buffer$1.prototype.destroy = function destroy () +{ + this.dispose(); + + this.data = null; +}; + +/** + * Helper function that creates a buffer based on an array or TypedArray + * + * @static + * @param {ArrayBufferView | number[]} data the TypedArray that the buffer will store. If this is a regular Array it will be converted to a Float32Array. + * @return {PIXI.Buffer} A new Buffer based on the data provided. + */ +Buffer$1.from = function from (data) +{ + if (data instanceof Array) + { + data = new Float32Array(data); + } + + return new Buffer$1(data); +}; + +function getBufferType(array) +{ + if (array.BYTES_PER_ELEMENT === 4) + { + if (array instanceof Float32Array) + { + return 'Float32Array'; + } + else if (array instanceof Uint32Array) + { + return 'Uint32Array'; + } + + return 'Int32Array'; + } + else if (array.BYTES_PER_ELEMENT === 2) + { + if (array instanceof Uint16Array) + { + return 'Uint16Array'; + } + } + else if (array.BYTES_PER_ELEMENT === 1) + { + if (array instanceof Uint8Array) + { + return 'Uint8Array'; + } + } + + // TODO map out the rest of the array elements! + return null; +} + +/* eslint-disable object-shorthand */ +var map$2 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, +}; + +function interleaveTypedArrays(arrays, sizes) +{ + var outSize = 0; + var stride = 0; + var views = {}; + + for (var i = 0; i < arrays.length; i++) + { + stride += sizes[i]; + outSize += arrays[i].length; + } + + var buffer = new ArrayBuffer(outSize * 4); + + var out = null; + var littleOffset = 0; + + for (var i$1 = 0; i$1 < arrays.length; i$1++) + { + var size = sizes[i$1]; + var array = arrays[i$1]; + + var type = getBufferType(array); + + if (!views[type]) + { + views[type] = new map$2[type](buffer); + } + + out = views[type]; + + for (var j = 0; j < array.length; j++) + { + var indexStart = ((j / size | 0) * stride) + littleOffset; + var index = j % size; + + out[indexStart + index] = array[j]; + } + + littleOffset += size; + } + + return new Float32Array(buffer); +} + +var byteSizeMap = { 5126: 4, 5123: 2, 5121: 1 }; +var UID$1 = 0; + +/* eslint-disable object-shorthand */ +var map$1$1 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, + Uint16Array: Uint16Array, +}; + +/* eslint-disable max-len */ + +/** + * The Geometry represents a model. It consists of two components: + * - GeometryStyle - The structure of the model such as the attributes layout + * - GeometryData - the data of the model - this consists of buffers. + * This can include anything from positions, uvs, normals, colors etc. + * + * Geometry can be defined without passing in a style or data if required (thats how I prefer!) + * + * ```js + * let geometry = new PIXI.Geometry(); + * + * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2); + * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1],2) + * geometry.addIndex([0,1,2,1,3,2]) + * + * ``` + * @class + * @memberof PIXI + */ +var Geometry = function Geometry(buffers, attributes) +{ + if ( buffers === void 0 ) buffers = []; + if ( attributes === void 0 ) attributes = {}; + + this.buffers = buffers; + + this.indexBuffer = null; + + this.attributes = attributes; + + /** + * A map of renderer IDs to webgl VAOs + * + * @protected + * @type {object} + */ + this.glVertexArrayObjects = {}; + + this.id = UID$1++; + + this.instanced = false; + + /** + * Number of instances in this geometry, pass it to `GeometrySystem.draw()` + * @member {number} + * @default 1 + */ + this.instanceCount = 1; + + this.disposeRunner = new Runner('disposeGeometry', 2); + + /** + * Count of existing (not destroyed) meshes that reference this geometry + * @member {number} + */ + this.refCount = 0; +}; + +/** +* +* Adds an attribute to the geometry +* +* @param {String} id - the name of the attribute (matching up to a shader) +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it. +* @param {Number} [size=0] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 +* @param {Boolean} [normalized=false] should the data be normalized. +* @param {Number} [type=PIXI.TYPES.FLOAT] what type of number is the attribute. Check {PIXI.TYPES} to see the ones available +* @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) +* @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) +* +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addAttribute = function addAttribute (id, buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( instance === void 0 ) instance = false; + + if (!buffer) + { + throw new Error('You must pass a buffer when creating an attribute'); + } + + // check if this is a buffer! + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Float32Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + var ids = id.split('|'); + + if (ids.length > 1) + { + for (var i = 0; i < ids.length; i++) + { + this.addAttribute(ids[i], buffer, size, normalized, type); + } + + return this; + } + + var bufferIndex = this.buffers.indexOf(buffer); + + if (bufferIndex === -1) + { + this.buffers.push(buffer); + bufferIndex = this.buffers.length - 1; + } + + this.attributes[id] = new Attribute(bufferIndex, size, normalized, type, stride, start, instance); + + // assuming that if there is instanced data then this will be drawn with instancing! + this.instanced = this.instanced || instance; + + return this; +}; + +/** + * returns the requested attribute + * + * @param {String} id the name of the attribute required + * @return {PIXI.Attribute} the attribute requested. + */ +Geometry.prototype.getAttribute = function getAttribute (id) +{ + return this.attributes[id]; +}; + +/** + * returns the requested buffer + * + * @param {String} id the name of the buffer required + * @return {PIXI.Buffer} the buffer requested. + */ +Geometry.prototype.getBuffer = function getBuffer (id) +{ + return this.buffers[this.getAttribute(id).buffer]; +}; + +/** +* +* Adds an index buffer to the geometry +* The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer. +* +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it. +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addIndex = function addIndex (buffer) +{ + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Uint16Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + buffer.index = true; + this.indexBuffer = buffer; + + if (this.buffers.indexOf(buffer) === -1) + { + this.buffers.push(buffer); + } + + return this; +}; + +/** + * returns the index buffer + * + * @return {PIXI.Buffer} the index buffer. + */ +Geometry.prototype.getIndex = function getIndex () +{ + return this.indexBuffer; +}; + +/** + * this function modifies the structure so that all current attributes become interleaved into a single buffer + * This can be useful if your model remains static as it offers a little performance boost + * + * @return {PIXI.Geometry} returns self, useful for chaining. + */ +Geometry.prototype.interleave = function interleave () +{ + // a simple check to see if buffers are already interleaved.. + if (this.buffers.length === 1 || (this.buffers.length === 2 && this.indexBuffer)) { return this; } + + // assume already that no buffers are interleaved + var arrays = []; + var sizes = []; + var interleavedBuffer = new Buffer$1(); + var i; + + for (i in this.attributes) + { + var attribute = this.attributes[i]; + + var buffer = this.buffers[attribute.buffer]; + + arrays.push(buffer.data); + + sizes.push((attribute.size * byteSizeMap[attribute.type]) / 4); + + attribute.buffer = 0; + } + + interleavedBuffer.data = interleaveTypedArrays(arrays, sizes); + + for (i = 0; i < this.buffers.length; i++) + { + if (this.buffers[i] !== this.indexBuffer) + { + this.buffers[i].destroy(); + } + } + + this.buffers = [interleavedBuffer]; + + if (this.indexBuffer) + { + this.buffers.push(this.indexBuffer); + } + + return this; +}; + +Geometry.prototype.getSize = function getSize () +{ + for (var i in this.attributes) + { + var attribute = this.attributes[i]; + var buffer = this.buffers[attribute.buffer]; + + return buffer.data.length / ((attribute.stride / 4) || attribute.size); + } + + return 0; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Geometry.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the geometry. + */ +Geometry.prototype.destroy = function destroy () +{ + this.dispose(); + + this.buffers = null; + this.indexBuffer.destroy(); + + this.attributes = null; +}; + +/** + * returns a clone of the geometry + * + * @returns {PIXI.Geometry} a new clone of this geometry + */ +Geometry.prototype.clone = function clone () +{ + var geometry = new Geometry(); + + for (var i = 0; i < this.buffers.length; i++) + { + geometry.buffers[i] = new Buffer$1(this.buffers[i].data.slice()); + } + + for (var i$1 in this.attributes) + { + var attrib = this.attributes[i$1]; + + geometry.attributes[i$1] = new Attribute( + attrib.buffer, + attrib.size, + attrib.normalized, + attrib.type, + attrib.stride, + attrib.start, + attrib.instance + ); + } + + if (this.indexBuffer) + { + geometry.indexBuffer = geometry.buffers[this.buffers.indexOf(this.indexBuffer)]; + geometry.indexBuffer.index = true; + } + + return geometry; +}; + +/** + * merges an array of geometries into a new single one + * geometry attribute styles must match for this operation to work + * + * @param {PIXI.Geometry[]} geometries array of geometries to merge + * @returns {PIXI.Geometry} shiny new geometry! + */ +Geometry.merge = function merge (geometries) +{ + // todo add a geometry check! + // also a size check.. cant be too big!] + + var geometryOut = new Geometry(); + + var arrays = []; + var sizes = []; + var offsets = []; + + var geometry; + + // pass one.. get sizes.. + for (var i = 0; i < geometries.length; i++) + { + geometry = geometries[i]; + + for (var j = 0; j < geometry.buffers.length; j++) + { + sizes[j] = sizes[j] || 0; + sizes[j] += geometry.buffers[j].data.length; + offsets[j] = 0; + } + } + + // build the correct size arrays.. + for (var i$1 = 0; i$1 < geometry.buffers.length; i$1++) + { + // TODO types! + arrays[i$1] = new map$1$1[getBufferType(geometry.buffers[i$1].data)](sizes[i$1]); + geometryOut.buffers[i$1] = new Buffer$1(arrays[i$1]); + } + + // pass to set data.. + for (var i$2 = 0; i$2 < geometries.length; i$2++) + { + geometry = geometries[i$2]; + + for (var j$1 = 0; j$1 < geometry.buffers.length; j$1++) + { + arrays[j$1].set(geometry.buffers[j$1].data, offsets[j$1]); + offsets[j$1] += geometry.buffers[j$1].data.length; + } + } + + geometryOut.attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + geometryOut.indexBuffer = geometryOut.buffers[geometry.buffers.indexOf(geometry.indexBuffer)]; + geometryOut.indexBuffer.index = true; + + var offset = 0; + var stride = 0; + var offset2 = 0; + var bufferIndexToCount = 0; + + // get a buffer + for (var i$3 = 0; i$3 < geometry.buffers.length; i$3++) + { + if (geometry.buffers[i$3] !== geometry.indexBuffer) + { + bufferIndexToCount = i$3; + break; + } + } + + // figure out the stride of one buffer.. + for (var i$4 in geometry.attributes) + { + var attribute = geometry.attributes[i$4]; + + if ((attribute.buffer | 0) === bufferIndexToCount) + { + stride += ((attribute.size * byteSizeMap[attribute.type]) / 4); + } + } + + // time to off set all indexes.. + for (var i$5 = 0; i$5 < geometries.length; i$5++) + { + var indexBufferData = geometries[i$5].indexBuffer.data; + + for (var j$2 = 0; j$2 < indexBufferData.length; j$2++) + { + geometryOut.indexBuffer.data[j$2 + offset2] += offset; + } + + offset += geometry.buffers[bufferIndexToCount].data.length / (stride); + offset2 += indexBufferData.length; + } + } + + return geometryOut; +}; + +/** + * Helper class to create a quad + * + * @class + * @memberof PIXI + */ +var Quad = /*@__PURE__*/(function (Geometry) { + function Quad() + { + Geometry.call(this); + + this.addAttribute('aVertexPosition', [ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]) + .addIndex([0, 1, 3, 2]); + } + + if ( Geometry ) Quad.__proto__ = Geometry; + Quad.prototype = Object.create( Geometry && Geometry.prototype ); + Quad.prototype.constructor = Quad; + + return Quad; +}(Geometry)); + +/** + * Helper class to create a quad with uvs like in v4 + * + * @class + * @memberof PIXI + * @extends PIXI.Geometry + */ +var QuadUv = /*@__PURE__*/(function (Geometry) { + function QuadUv() + { + Geometry.call(this); + + /** + * An array of vertices + * + * @member {Float32Array} + */ + this.vertices = new Float32Array([ + -1, -1, + 1, -1, + 1, 1, + -1, 1 ]); + + /** + * The Uvs of the quad + * + * @member {Float32Array} + */ + this.uvs = new Float32Array([ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]); + + this.vertexBuffer = new Buffer$1(this.vertices); + this.uvBuffer = new Buffer$1(this.uvs); + + this.addAttribute('aVertexPosition', this.vertexBuffer) + .addAttribute('aTextureCoord', this.uvBuffer) + .addIndex([0, 1, 2, 0, 2, 3]); + } + + if ( Geometry ) QuadUv.__proto__ = Geometry; + QuadUv.prototype = Object.create( Geometry && Geometry.prototype ); + QuadUv.prototype.constructor = QuadUv; + + /** + * Maps two Rectangle to the quad. + * + * @param {PIXI.Rectangle} targetTextureFrame - the first rectangle + * @param {PIXI.Rectangle} destinationFrame - the second rectangle + * @return {PIXI.Quad} Returns itself. + */ + QuadUv.prototype.map = function map (targetTextureFrame, destinationFrame) + { + var x = 0; // destinationFrame.x / targetTextureFrame.width; + var y = 0; // destinationFrame.y / targetTextureFrame.height; + + this.uvs[0] = x; + this.uvs[1] = y; + + this.uvs[2] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[3] = y; + + this.uvs[4] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[5] = y + (destinationFrame.height / targetTextureFrame.height); + + this.uvs[6] = x; + this.uvs[7] = y + (destinationFrame.height / targetTextureFrame.height); + + x = destinationFrame.x; + y = destinationFrame.y; + + this.vertices[0] = x; + this.vertices[1] = y; + + this.vertices[2] = x + destinationFrame.width; + this.vertices[3] = y; + + this.vertices[4] = x + destinationFrame.width; + this.vertices[5] = y + destinationFrame.height; + + this.vertices[6] = x; + this.vertices[7] = y + destinationFrame.height; + + this.invalidate(); + + return this; + }; + + /** + * legacy upload method, just marks buffers dirty + * @returns {PIXI.QuadUv} Returns itself. + */ + QuadUv.prototype.invalidate = function invalidate () + { + this.vertexBuffer._updateID++; + this.uvBuffer._updateID++; + + return this; + }; + + return QuadUv; +}(Geometry)); + +var UID$2 = 0; + +/** + * Uniform group holds uniform map and some ID's for work + * + * @class + * @memberof PIXI + */ +var UniformGroup = function UniformGroup(uniforms, _static) +{ + /** + * uniform values + * @member {object} + * @readonly + */ + this.uniforms = uniforms; + + /** + * Its a group and not a single uniforms + * @member {boolean} + * @readonly + * @default true + */ + this.group = true; + + // lets generate this when the shader ? + this.syncUniforms = {}; + + /** + * dirty version + * @protected + * @member {number} + */ + this.dirtyId = 0; + + /** + * unique id + * @protected + * @member {number} + */ + this.id = UID$2++; + + /** + * Uniforms wont be changed after creation + * @member {boolean} + */ + this.static = !!_static; +}; + +UniformGroup.prototype.update = function update () +{ + this.dirtyId++; +}; + +UniformGroup.prototype.add = function add (name, uniforms, _static) +{ + this.uniforms[name] = new UniformGroup(uniforms, _static); +}; + +UniformGroup.from = function from (uniforms, _static) +{ + return new UniformGroup(uniforms, _static); +}; + +/** + * System plugin to the renderer to manage filter states. + * + * @class + * @private + */ +var FilterState = function FilterState() +{ + this.renderTexture = null; + + /** + * Target of the filters + * We store for case when custom filter wants to know the element it was applied on + * @member {PIXI.DisplayObject} + * @private + */ + this.target = null; + + /** + * Compatibility with PixiJS v4 filters + * @member {boolean} + * @default false + * @private + */ + this.legacy = false; + + /** + * Resolution of filters + * @member {number} + * @default 1 + * @private + */ + this.resolution = 1; + + // next three fields are created only for root + // re-assigned for everything else + + /** + * Source frame + * @member {PIXI.Rectangle} + * @private + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @private + */ + this.destinationFrame = new Rectangle(); + + /** + * Collection of filters + * @member {PIXI.Filter[]} + * @private + */ + this.filters = []; +}; + +/** + * clears the state + * @private + */ +FilterState.prototype.clear = function clear () +{ + this.target = null; + this.filters = null; + this.renderTexture = null; +}; + +/** + * System plugin to the renderer to manage the filters. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var FilterSystem = /*@__PURE__*/(function (System) { + function FilterSystem(renderer) + { + System.call(this, renderer); + + /** + * List of filters for the FilterSystem + * @member {Object[]} + * @readonly + */ + this.defaultFilterStack = [{}]; + + /** + * stores a bunch of PO2 textures used for filtering + * @member {Object} + */ + this.texturePool = new RenderTexturePool(); + + this.texturePool.setScreenSize(renderer.view); + + /** + * a pool for storing filter states, save us creating new ones each tick + * @member {Object[]} + */ + this.statePool = []; + + /** + * A very simple geometry used when drawing a filter effect to the screen + * @member {PIXI.Quad} + */ + this.quad = new Quad(); + + /** + * Quad UVs + * @member {PIXI.QuadUv} + */ + this.quadUv = new QuadUv(); + + /** + * Temporary rect for maths + * @type {PIXI.Rectangle} + */ + this.tempRect = new Rectangle(); + + /** + * Active state + * @member {object} + */ + this.activeState = {}; + + /** + * This uniform group is attached to filter uniforms when used + * @member {PIXI.UniformGroup} + * @property {PIXI.Rectangle} outputFrame + * @property {Float32Array} inputSize + * @property {Float32Array} inputPixel + * @property {Float32Array} inputClamp + * @property {Number} resolution + * @property {Float32Array} filterArea + * @property {Fload32Array} filterClamp + */ + this.globalUniforms = new UniformGroup({ + outputFrame: this.tempRect, + inputSize: new Float32Array(4), + inputPixel: new Float32Array(4), + inputClamp: new Float32Array(4), + resolution: 1, + + // legacy variables + filterArea: new Float32Array(4), + filterClamp: new Float32Array(4), + }, true); + + this._pixelsWidth = renderer.view.width; + this._pixelsHeight = renderer.view.height; + } + + if ( System ) FilterSystem.__proto__ = System; + FilterSystem.prototype = Object.create( System && System.prototype ); + FilterSystem.prototype.constructor = FilterSystem; + + /** + * Adds a new filter to the System. + * + * @param {PIXI.DisplayObject} target - The target of the filter to render. + * @param {PIXI.Filter[]} filters - The filters to apply. + */ + FilterSystem.prototype.push = function push (target, filters) + { + var renderer = this.renderer; + var filterStack = this.defaultFilterStack; + var state = this.statePool.pop() || new FilterState(); + + var resolution = filters[0].resolution; + var padding = filters[0].padding; + var autoFit = filters[0].autoFit; + var legacy = filters[0].legacy; + + for (var i = 1; i < filters.length; i++) + { + var filter = filters[i]; + + // lets use the lowest resolution.. + resolution = Math.min(resolution, filter.resolution); + // and the largest amount of padding! + padding = Math.max(padding, filter.padding); + // only auto fit if all filters are autofit + autoFit = autoFit || filter.autoFit; + + legacy = legacy || filter.legacy; + } + + if (filterStack.length === 1) + { + this.defaultFilterStack[0].renderTexture = renderer.renderTexture.current; + } + + filterStack.push(state); + + state.resolution = resolution; + + state.legacy = legacy; + + state.target = target; + + state.sourceFrame.copyFrom(target.filterArea || target.getBounds(true)); + + state.sourceFrame.pad(padding); + if (autoFit) + { + state.sourceFrame.fit(this.renderer.renderTexture.sourceFrame); + } + + // round to whole number based on resolution + state.sourceFrame.ceil(resolution); + + state.renderTexture = this.getOptimalFilterTexture(state.sourceFrame.width, state.sourceFrame.height, resolution); + state.filters = filters; + + state.destinationFrame.width = state.renderTexture.width; + state.destinationFrame.height = state.renderTexture.height; + + state.renderTexture.filterFrame = state.sourceFrame; + + renderer.renderTexture.bind(state.renderTexture, state.sourceFrame);// /, state.destinationFrame); + renderer.renderTexture.clear(); + }; + + /** + * Pops off the filter and applies it. + * + */ + FilterSystem.prototype.pop = function pop () + { + var filterStack = this.defaultFilterStack; + var state = filterStack.pop(); + var filters = state.filters; + + this.activeState = state; + + var globalUniforms = this.globalUniforms.uniforms; + + globalUniforms.outputFrame = state.sourceFrame; + globalUniforms.resolution = state.resolution; + + var inputSize = globalUniforms.inputSize; + var inputPixel = globalUniforms.inputPixel; + var inputClamp = globalUniforms.inputClamp; + + inputSize[0] = state.destinationFrame.width; + inputSize[1] = state.destinationFrame.height; + inputSize[2] = 1.0 / inputSize[0]; + inputSize[3] = 1.0 / inputSize[1]; + + inputPixel[0] = inputSize[0] * state.resolution; + inputPixel[1] = inputSize[1] * state.resolution; + inputPixel[2] = 1.0 / inputPixel[0]; + inputPixel[3] = 1.0 / inputPixel[1]; + + inputClamp[0] = 0.5 * inputPixel[2]; + inputClamp[1] = 0.5 * inputPixel[3]; + inputClamp[2] = (state.sourceFrame.width * inputSize[2]) - (0.5 * inputPixel[2]); + inputClamp[3] = (state.sourceFrame.height * inputSize[3]) - (0.5 * inputPixel[3]); + + // only update the rect if its legacy.. + if (state.legacy) + { + var filterArea = globalUniforms.filterArea; + + filterArea[0] = state.destinationFrame.width; + filterArea[1] = state.destinationFrame.height; + filterArea[2] = state.sourceFrame.x; + filterArea[3] = state.sourceFrame.y; + + globalUniforms.filterClamp = globalUniforms.inputClamp; + } + + this.globalUniforms.update(); + + var lastState = filterStack[filterStack.length - 1]; + + if (filters.length === 1) + { + filters[0].apply(this, state.renderTexture, lastState.renderTexture, false, state); + + this.returnFilterTexture(state.renderTexture); + } + else + { + var flip = state.renderTexture; + var flop = this.getOptimalFilterTexture( + flip.width, + flip.height, + state.resolution + ); + + flop.filterFrame = flip.filterFrame; + + var i = 0; + + for (i = 0; i < filters.length - 1; ++i) + { + filters[i].apply(this, flip, flop, true, state); + + var t = flip; + + flip = flop; + flop = t; + } + + filters[i].apply(this, flip, lastState.renderTexture, false, state); + + this.returnFilterTexture(flip); + this.returnFilterTexture(flop); + } + + state.clear(); + this.statePool.push(state); + }; + + /** + * Draws a filter. + * + * @param {PIXI.Filter} filter - The filter to draw. + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + */ + FilterSystem.prototype.applyFilter = function applyFilter (filter, input, output, clear) + { + var renderer = this.renderer; + + renderer.renderTexture.bind(output, output ? output.filterFrame : null); + + if (clear) + { + // gl.disable(gl.SCISSOR_TEST); + renderer.renderTexture.clear(); + // gl.enable(gl.SCISSOR_TEST); + } + + // set the uniforms.. + filter.uniforms.uSampler = input; + filter.uniforms.filterGlobals = this.globalUniforms; + + // TODO make it so that the order of this does not matter.. + // because it does at the moment cos of global uniforms. + // they need to get resynced + + renderer.state.set(filter.state); + renderer.shader.bind(filter); + + if (filter.legacy) + { + this.quadUv.map(input._frame, input.filterFrame); + + renderer.geometry.bind(this.quadUv); + renderer.geometry.draw(DRAW_MODES.TRIANGLES); + } + else + { + renderer.geometry.bind(this.quad); + renderer.geometry.draw(DRAW_MODES.TRIANGLE_STRIP); + } + }; + + /** + * Multiply _input normalized coordinates_ to this matrix to get _sprite texture normalized coordinates_. + * + * Use `outputMatrix * vTextureCoord` in the shader. + * + * @param {PIXI.Matrix} outputMatrix - The matrix to output to. + * @param {PIXI.Sprite} sprite - The sprite to map to. + * @return {PIXI.Matrix} The mapped matrix. + */ + FilterSystem.prototype.calculateSpriteMatrix = function calculateSpriteMatrix (outputMatrix, sprite) + { + var ref = this.activeState; + var sourceFrame = ref.sourceFrame; + var destinationFrame = ref.destinationFrame; + var ref$1 = sprite._texture; + var orig = ref$1.orig; + var mappedMatrix = outputMatrix.set(destinationFrame.width, 0, 0, + destinationFrame.height, sourceFrame.x, sourceFrame.y); + var worldTransform = sprite.worldTransform.copyTo(Matrix.TEMP_MATRIX); + + worldTransform.invert(); + mappedMatrix.prepend(worldTransform); + mappedMatrix.scale(1.0 / orig.width, 1.0 / orig.height); + mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y); + + return mappedMatrix; + }; + + /** + * Destroys this Filter System. + */ + FilterSystem.prototype.destroy = function destroy () + { + // Those textures has to be destroyed by RenderTextureSystem or FramebufferSystem + this.texturePool.clear(false); + }; + + /** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ + FilterSystem.prototype.getOptimalFilterTexture = function getOptimalFilterTexture (minWidth, minHeight, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + return this.texturePool.getOptimalTexture(minWidth, minHeight, resolution); + }; + + /** + * Gets extra render texture to use inside current filter + * To be compliant with older filters, you can use params in any order + * + * @param {PIXI.RenderTexture} [input] renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * @returns {PIXI.RenderTexture} + */ + FilterSystem.prototype.getFilterTexture = function getFilterTexture (input, resolution) + { + if (typeof input === 'number') + { + var swap = input; + + input = resolution; + resolution = swap; + } + + input = input || this.activeState.renderTexture; + + var filterTexture = this.texturePool.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; + }; + + /** + * Frees a render texture back into the pool. + * + * @param {PIXI.RenderTexture} renderTexture - The renderTarget to free + */ + FilterSystem.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) + { + this.texturePool.returnTexture(renderTexture); + }; + + /** + * Empties the texture pool. + */ + FilterSystem.prototype.emptyPool = function emptyPool () + { + this.texturePool.clear(true); + }; + + /** + * calls `texturePool.resize()`, affects fullScreen renderTextures + */ + FilterSystem.prototype.resize = function resize () + { + this.texturePool.setScreenSize(this.renderer.view); + }; + + return FilterSystem; +}(System)); + +/** + * Base for a common object renderer that can be used as a + * system renderer plugin. + * + * @class + * @extends PIXI.System + * @memberof PIXI + */ +var ObjectRenderer = function ObjectRenderer(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Stub method that should be used to empty the current + * batch by rendering objects now. + */ +ObjectRenderer.prototype.flush = function flush () +{ + // flush! +}; + +/** + * Generic destruction method that frees all resources. This + * should be called by subclasses. + */ +ObjectRenderer.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Stub method that initializes any state required before + * rendering starts. It is different from the `prerender` + * signal, which occurs every frame, in that it is called + * whenever an object requests _this_ renderer specifically. + */ +ObjectRenderer.prototype.start = function start () +{ + // set the shader.. +}; + +/** + * Stops the renderer. It should free up any state and + * become dormant. + */ +ObjectRenderer.prototype.stop = function stop () +{ + this.flush(); +}; + +/** + * Keeps the object to render. It doesn't have to be + * rendered immediately. + * + * @param {PIXI.DisplayObject} object - The object to render. + */ +ObjectRenderer.prototype.render = function render (object) // eslint-disable-line no-unused-vars +{ + // render the object +}; + +/** + * System plugin to the renderer to manage batching. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var BatchSystem = /*@__PURE__*/(function (System) { + function BatchSystem(renderer) + { + System.call(this, renderer); + + /** + * An empty renderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.emptyRenderer = new ObjectRenderer(renderer); + + /** + * The currently active ObjectRenderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.currentRenderer = this.emptyRenderer; + } + + if ( System ) BatchSystem.__proto__ = System; + BatchSystem.prototype = Object.create( System && System.prototype ); + BatchSystem.prototype.constructor = BatchSystem; + + /** + * Changes the current renderer to the one given in parameter + * + * @param {PIXI.ObjectRenderer} objectRenderer - The object renderer to use. + */ + BatchSystem.prototype.setObjectRenderer = function setObjectRenderer (objectRenderer) + { + if (this.currentRenderer === objectRenderer) + { + return; + } + + this.currentRenderer.stop(); + this.currentRenderer = objectRenderer; + + this.currentRenderer.start(); + }; + + /** + * This should be called if you wish to do some custom rendering + * It will basically render anything that may be batched up such as sprites + */ + BatchSystem.prototype.flush = function flush () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + /** + * Reset the system to an empty renderer + */ + BatchSystem.prototype.reset = function reset () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + return BatchSystem; +}(System)); + +/** + * The maximum support for using WebGL. If a device does not + * support WebGL version, for instance WebGL 2, it will still + * attempt to fallback support to WebGL 1. If you want to + * explicitly remove feature support to target a more stable + * baseline, prefer a lower environment. + * + * Due to {@link https://bugs.chromium.org/p/chromium/issues/detail?id=934823|bug in chromium} + * we disable webgl2 by default for all non-apple mobile devices. + * + * @static + * @name PREFER_ENV + * @memberof PIXI.settings + * @type {number} + * @default PIXI.ENV.WEBGL2 + */ +settings.PREFER_ENV = isMobile.any ? ENV.WEBGL : ENV.WEBGL2; + +var CONTEXT_UID = 0; + +/** + * System plugin to the renderer to manage the context. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var ContextSystem = /*@__PURE__*/(function (System) { + function ContextSystem(renderer) + { + System.call(this, renderer); + + /** + * Either 1 or 2 to reflect the WebGL version being used + * @member {number} + * @readonly + */ + this.webGLVersion = 1; + + /** + * Extensions being used + * @member {object} + * @readonly + * @property {WEBGL_draw_buffers} drawBuffers - WebGL v1 extension + * @property {WEBGL_depth_texture} depthTexture - WebGL v1 extension + * @property {OES_texture_float} floatTexture - WebGL v1 extension + * @property {WEBGL_lose_context} loseContext - WebGL v1 extension + * @property {OES_vertex_array_object} vertexArrayObject - WebGL v1 extension + * @property {EXT_texture_filter_anisotropic} anisotropicFiltering - WebGL v1 and v2 extension + */ + this.extensions = {}; + + // Bind functions + this.handleContextLost = this.handleContextLost.bind(this); + this.handleContextRestored = this.handleContextRestored.bind(this); + + renderer.view.addEventListener('webglcontextlost', this.handleContextLost, false); + renderer.view.addEventListener('webglcontextrestored', this.handleContextRestored, false); + } + + if ( System ) ContextSystem.__proto__ = System; + ContextSystem.prototype = Object.create( System && System.prototype ); + ContextSystem.prototype.constructor = ContextSystem; + + var prototypeAccessors = { isLost: { configurable: true } }; + + /** + * `true` if the context is lost + * @member {boolean} + * @readonly + */ + prototypeAccessors.isLost.get = function () + { + return (!this.gl || this.gl.isContextLost()); + }; + + /** + * Handle the context change event + * @param {WebGLRenderingContext} gl new webgl context + */ + ContextSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + + // restore a context if it was previously lost + if (gl.isContextLost() && gl.getExtension('WEBGL_lose_context')) + { + gl.getExtension('WEBGL_lose_context').restoreContext(); + } + }; + + /** + * Initialize the context + * + * @protected + * @param {WebGLRenderingContext} gl - WebGL context + */ + ContextSystem.prototype.initFromContext = function initFromContext (gl) + { + this.gl = gl; + this.validateContext(gl); + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + this.renderer.runners.contextChange.run(gl); + }; + + /** + * Initialize from context options + * + * @protected + * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext + * @param {object} options - context attributes + */ + ContextSystem.prototype.initFromOptions = function initFromOptions (options) + { + var gl = this.createContext(this.renderer.view, options); + + this.initFromContext(gl); + }; + + /** + * Helper class to create a WebGL Context + * + * @param canvas {HTMLCanvasElement} the canvas element that we will get the context from + * @param options {object} An options object that gets passed in to the canvas element containing the context attributes + * @see https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement/getContext + * @return {WebGLRenderingContext} the WebGL context + */ + ContextSystem.prototype.createContext = function createContext (canvas, options) + { + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', options); + } + + if (gl) + { + this.webGLVersion = 2; + } + else + { + this.webGLVersion = 1; + + gl = canvas.getContext('webgl', options) + || canvas.getContext('experimental-webgl', options); + + if (!gl) + { + // fail, not able to get a context + throw new Error('This browser does not support WebGL. Try using the canvas renderer'); + } + } + + this.gl = gl; + + this.getExtensions(); + + return gl; + }; + + /** + * Auto-populate the extensions + * + * @protected + */ + ContextSystem.prototype.getExtensions = function getExtensions () + { + // time to set up default extensions that Pixi uses. + var ref = this; + var gl = ref.gl; + + if (this.webGLVersion === 1) + { + Object.assign(this.extensions, { + drawBuffers: gl.getExtension('WEBGL_draw_buffers'), + depthTexture: gl.getExtension('WEBKIT_WEBGL_depth_texture'), + loseContext: gl.getExtension('WEBGL_lose_context'), + vertexArrayObject: gl.getExtension('OES_vertex_array_object') + || gl.getExtension('MOZ_OES_vertex_array_object') + || gl.getExtension('WEBKIT_OES_vertex_array_object'), + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + uint32ElementIndex: gl.getExtension('OES_element_index_uint'), + // Floats and half-floats + floatTexture: gl.getExtension('OES_texture_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + textureHalfFloat: gl.getExtension('OES_texture_half_float'), + textureHalfFloatLinear: gl.getExtension('OES_texture_half_float_linear'), + }); + } + else if (this.webGLVersion === 2) + { + Object.assign(this.extensions, { + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + // Floats and half-floats + colorBufferFloat: gl.getExtension('EXT_color_buffer_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + }); + } + }; + + /** + * Handles a lost webgl context + * + * @protected + * @param {WebGLContextEvent} event - The context lost event. + */ + ContextSystem.prototype.handleContextLost = function handleContextLost (event) + { + event.preventDefault(); + }; + + /** + * Handles a restored webgl context + * + * @protected + */ + ContextSystem.prototype.handleContextRestored = function handleContextRestored () + { + this.renderer.runners.contextChange.run(this.gl); + }; + + ContextSystem.prototype.destroy = function destroy () + { + var view = this.renderer.view; + + // remove listeners + view.removeEventListener('webglcontextlost', this.handleContextLost); + view.removeEventListener('webglcontextrestored', this.handleContextRestored); + + this.gl.useProgram(null); + + if (this.extensions.loseContext) + { + this.extensions.loseContext.loseContext(); + } + }; + + /** + * Handle the post-render runner event + * + * @protected + */ + ContextSystem.prototype.postrender = function postrender () + { + this.gl.flush(); + }; + + /** + * Validate context + * + * @protected + * @param {WebGLRenderingContext} gl - Render context + */ + ContextSystem.prototype.validateContext = function validateContext (gl) + { + var attributes = gl.getContextAttributes(); + + // this is going to be fairly simple for now.. but at least we have room to grow! + if (!attributes.stencil) + { + /* eslint-disable max-len */ + + /* eslint-disable no-console */ + console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly'); + /* eslint-enable no-console */ + + /* eslint-enable max-len */ + } + }; + + Object.defineProperties( ContextSystem.prototype, prototypeAccessors ); + + return ContextSystem; +}(System)); + +/** + * System plugin to the renderer to manage framebuffers. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var FramebufferSystem = /*@__PURE__*/(function (System) { + function FramebufferSystem(renderer) + { + System.call(this, renderer); + + /** + * A list of managed framebuffers + * @member {PIXI.Framebuffer[]} + * @readonly + */ + this.managedFramebuffers = []; + + /** + * Framebuffer value that shows that we don't know what is bound + * @member {Framebuffer} + * @readonly + */ + this.unknownFramebuffer = new Framebuffer(10, 10); + } + + if ( System ) FramebufferSystem.__proto__ = System; + FramebufferSystem.prototype = Object.create( System && System.prototype ); + FramebufferSystem.prototype.constructor = FramebufferSystem; + + var prototypeAccessors = { size: { configurable: true } }; + + /** + * Sets up the renderer context and necessary buffers. + */ + FramebufferSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + this.hasMRT = true; + this.writeDepthTexture = true; + + this.disposeAll(true); + + // webgl2 + if (this.renderer.context.webGLVersion === 1) + { + // webgl 1! + var nativeDrawBuffersExtension = this.renderer.context.extensions.drawBuffers; + var nativeDepthTextureExtension = this.renderer.context.extensions.depthTexture; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeDrawBuffersExtension = null; + nativeDepthTextureExtension = null; + } + + if (nativeDrawBuffersExtension) + { + gl.drawBuffers = function (activeTextures) { return nativeDrawBuffersExtension.drawBuffersWEBGL(activeTextures); }; + } + else + { + this.hasMRT = false; + gl.drawBuffers = function () { + // empty + }; + } + + if (!nativeDepthTextureExtension) + { + this.writeDepthTexture = false; + } + } + }; + + /** + * Bind a framebuffer + * + * @param {PIXI.Framebuffer} framebuffer + * @param {PIXI.Rectangle} [frame] frame, default is framebuffer size + */ + FramebufferSystem.prototype.bind = function bind (framebuffer, frame) + { + var ref = this; + var gl = ref.gl; + + if (framebuffer) + { + // TODO caching layer! + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID] || this.initFramebuffer(framebuffer); + + if (this.current !== framebuffer) + { + this.current = framebuffer; + gl.bindFramebuffer(gl.FRAMEBUFFER, fbo.framebuffer); + } + // make sure all textures are unbound.. + + // now check for updates... + if (fbo.dirtyId !== framebuffer.dirtyId) + { + fbo.dirtyId = framebuffer.dirtyId; + + if (fbo.dirtyFormat !== framebuffer.dirtyFormat) + { + fbo.dirtyFormat = framebuffer.dirtyFormat; + this.updateFramebuffer(framebuffer); + } + else if (fbo.dirtySize !== framebuffer.dirtySize) + { + fbo.dirtySize = framebuffer.dirtySize; + this.resizeFramebuffer(framebuffer); + } + } + + for (var i = 0; i < framebuffer.colorTextures.length; i++) + { + if (framebuffer.colorTextures[i].texturePart) + { + this.renderer.texture.unbind(framebuffer.colorTextures[i].texture); + } + else + { + this.renderer.texture.unbind(framebuffer.colorTextures[i]); + } + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.unbind(framebuffer.depthTexture); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, framebuffer.width, framebuffer.height); + } + } + else + { + if (this.current) + { + this.current = null; + gl.bindFramebuffer(gl.FRAMEBUFFER, null); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, this.renderer.width, this.renderer.height); + } + } + }; + + /** + * Set the WebGLRenderingContext's viewport. + * + * @param {Number} x - X position of viewport + * @param {Number} y - Y position of viewport + * @param {Number} width - Width of viewport + * @param {Number} height - Height of viewport + */ + FramebufferSystem.prototype.setViewport = function setViewport (x, y, width, height) + { + var v = this.viewport; + + if (v.width !== width || v.height !== height || v.x !== x || v.y !== y) + { + v.x = x; + v.y = y; + v.width = width; + v.height = height; + + this.gl.viewport(x, y, width, height); + } + }; + + /** + * Get the size of the current width and height. Returns object with `width` and `height` values. + * + * @member {object} + * @readonly + */ + prototypeAccessors.size.get = function () + { + if (this.current) + { + // TODO store temp + return { x: 0, y: 0, width: this.current.width, height: this.current.height }; + } + + return { x: 0, y: 0, width: this.renderer.width, height: this.renderer.height }; + }; + + /** + * Clear the color of the context + * + * @param {Number} r - Red value from 0 to 1 + * @param {Number} g - Green value from 0 to 1 + * @param {Number} b - Blue value from 0 to 1 + * @param {Number} a - Alpha value from 0 to 1 + */ + FramebufferSystem.prototype.clear = function clear (r, g, b, a) + { + var ref = this; + var gl = ref.gl; + + // TODO clear color can be set only one right? + gl.clearColor(r, g, b, a); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + }; + + /** + * Initialize framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.initFramebuffer = function initFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + // TODO - make this a class? + var fbo = { + framebuffer: gl.createFramebuffer(), + stencil: null, + dirtyId: 0, + dirtyFormat: 0, + dirtySize: 0, + }; + + framebuffer.glFramebuffers[this.CONTEXT_UID] = fbo; + + this.managedFramebuffers.push(framebuffer); + framebuffer.disposeRunner.add(this); + + return fbo; + }; + + /** + * Resize the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.resizeFramebuffer = function resizeFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (fbo.stencil) + { + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + } + + var colorTextures = framebuffer.colorTextures; + + for (var i = 0; i < colorTextures.length; i++) + { + this.renderer.texture.bind(colorTextures[i], 0); + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.bind(framebuffer.depthTexture, 0); + } + }; + + /** + * Update the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.updateFramebuffer = function updateFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + // bind the color texture + var colorTextures = framebuffer.colorTextures; + + var count = colorTextures.length; + + if (!gl.drawBuffers) + { + count = Math.min(count, 1); + } + + var activeTextures = []; + + for (var i = 0; i < count; i++) + { + var texture = framebuffer.colorTextures[i]; + + if (texture.texturePart) + { + this.renderer.texture.bind(texture.texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_CUBE_MAP_NEGATIVE_X + texture.side, + texture.texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + else + { + this.renderer.texture.bind(texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_2D, + texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + + activeTextures.push(gl.COLOR_ATTACHMENT0 + i); + } + + if (activeTextures.length > 1) + { + gl.drawBuffers(activeTextures); + } + + if (framebuffer.depthTexture) + { + var writeDepthTexture = this.writeDepthTexture; + + if (writeDepthTexture) + { + var depthTexture = framebuffer.depthTexture; + + this.renderer.texture.bind(depthTexture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.DEPTH_ATTACHMENT, + gl.TEXTURE_2D, + depthTexture._glTextures[this.CONTEXT_UID].texture, + 0); + } + } + + if (!fbo.stencil && (framebuffer.stencil || framebuffer.depth)) + { + fbo.stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + // TODO.. this is depth AND stencil? + if (!framebuffer.depthTexture) + { // you can't have both, so one should take priority if enabled + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, fbo.stencil); + } + } + }; + + /** + * Disposes framebuffer + * @param {PIXI.Framebuffer} framebuffer framebuffer that has to be disposed of + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeFramebuffer = function disposeFramebuffer (framebuffer, contextLost) + { + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + var gl = this.gl; + + if (!fbo) + { + return; + } + + delete framebuffer.glFramebuffers[this.CONTEXT_UID]; + + var index = this.managedFramebuffers.indexOf(framebuffer); + + if (index >= 0) + { + this.managedFramebuffers.splice(index, 1); + } + + framebuffer.disposeRunner.remove(this); + + if (!contextLost) + { + gl.deleteFramebuffer(fbo.framebuffer); + if (fbo.stencil) + { + gl.deleteRenderbuffer(fbo.stencil); + } + } + }; + + /** + * Disposes all framebuffers, but not textures bound to them + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeAll = function disposeAll (contextLost) + { + var list = this.managedFramebuffers; + + this.managedFramebuffers = []; + + for (var i = 0; i < list.length; i++) + { + this.disposeFramebuffer(list[i], contextLost); + } + }; + + /** + * Forcing creation of stencil buffer for current framebuffer, if it wasn't done before. + * Used by MaskSystem, when its time to use stencil mask for Graphics element. + * + * Its an alternative for public lazy `framebuffer.enableStencil`, in case we need stencil without rebind. + * + * @private + */ + FramebufferSystem.prototype.forceStencil = function forceStencil () + { + var framebuffer = this.current; + + if (!framebuffer) + { + return; + } + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (!fbo || fbo.stencil) + { + return; + } + framebuffer.enableStencil(); + + var w = framebuffer.width; + var h = framebuffer.height; + var gl = this.gl; + var stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, w, h); + + fbo.stencil = stencil; + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, stencil); + }; + + /** + * resets framebuffer stored state, binds screen framebuffer + * + * should be called before renderTexture reset() + */ + FramebufferSystem.prototype.reset = function reset () + { + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + }; + + Object.defineProperties( FramebufferSystem.prototype, prototypeAccessors ); + + return FramebufferSystem; +}(System)); + +var GLBuffer = function GLBuffer(buffer) +{ + this.buffer = buffer; + this.updateID = -1; + this.byteLength = -1; + this.refCount = 0; +}; + +var byteSizeMap$1 = { 5126: 4, 5123: 2, 5121: 1 }; + +/** + * System plugin to the renderer to manage geometry. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var GeometrySystem = /*@__PURE__*/(function (System) { + function GeometrySystem(renderer) + { + System.call(this, renderer); + + this._activeGeometry = null; + this._activeVao = null; + + /** + * `true` if we has `*_vertex_array_object` extension + * @member {boolean} + * @readonly + */ + this.hasVao = true; + + /** + * `true` if has `ANGLE_instanced_arrays` extension + * @member {boolean} + * @readonly + */ + this.hasInstance = true; + + /** + * `true` if support `gl.UNSIGNED_INT` in `gl.drawElements` or `gl.drawElementsInstanced` + * @member {boolean} + * @readonly + */ + this.canUseUInt32ElementIndex = false; + + /** + * A cache of currently bound buffer, + * contains only two members with keys ARRAY_BUFFER and ELEMENT_ARRAY_BUFFER + * @member {Object.} + * @readonly + */ + this.boundBuffers = {}; + + /** + * Cache for all geometries by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedGeometries = {}; + + /** + * Cache for all buffers by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedBuffers = {}; + } + + if ( System ) GeometrySystem.__proto__ = System; + GeometrySystem.prototype = Object.create( System && System.prototype ); + GeometrySystem.prototype.constructor = GeometrySystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + GeometrySystem.prototype.contextChange = function contextChange () + { + this.disposeAll(true); + + var gl = this.gl = this.renderer.gl; + var context = this.renderer.context; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + // webgl2 + if (!gl.createVertexArray) + { + // webgl 1! + var nativeVaoExtension = this.renderer.context.extensions.vertexArrayObject; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeVaoExtension = null; + } + + if (nativeVaoExtension) + { + gl.createVertexArray = function () { return nativeVaoExtension.createVertexArrayOES(); }; + + gl.bindVertexArray = function (vao) { return nativeVaoExtension.bindVertexArrayOES(vao); }; + + gl.deleteVertexArray = function (vao) { return nativeVaoExtension.deleteVertexArrayOES(vao); }; + } + else + { + this.hasVao = false; + gl.createVertexArray = function () { + // empty + }; + + gl.bindVertexArray = function () { + // empty + }; + + gl.deleteVertexArray = function () { + // empty + }; + } + } + + if (!gl.vertexAttribDivisor) + { + var instanceExt = gl.getExtension('ANGLE_instanced_arrays'); + + if (instanceExt) + { + gl.vertexAttribDivisor = function (a, b) { return instanceExt.vertexAttribDivisorANGLE(a, b); }; + + gl.drawElementsInstanced = function (a, b, c, d, e) { return instanceExt.drawElementsInstancedANGLE(a, b, c, d, e); }; + + gl.drawArraysInstanced = function (a, b, c, d) { return instanceExt.drawArraysInstancedANGLE(a, b, c, d); }; + } + else + { + this.hasInstance = false; + } + } + + this.canUseUInt32ElementIndex = context.webGLVersion === 2 || !!context.extensions.uint32ElementIndex; + }; + + /** + * Binds geometry so that is can be drawn. Creating a Vao if required + * + * @param {PIXI.Geometry} geometry instance of geometry to bind + * @param {PIXI.Shader} [shader] instance of shader to use vao for + */ + GeometrySystem.prototype.bind = function bind (geometry, shader) + { + shader = shader || this.renderer.shader.shader; + + var ref = this; + var gl = ref.gl; + + // not sure the best way to address this.. + // currently different shaders require different VAOs for the same geometry + // Still mulling over the best way to solve this one.. + // will likely need to modify the shader attribute locations at run time! + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + if (!vaos) + { + this.managedGeometries[geometry.id] = geometry; + geometry.disposeRunner.add(this); + geometry.glVertexArrayObjects[this.CONTEXT_UID] = vaos = {}; + } + + var vao = vaos[shader.program.id] || this.initGeometryVao(geometry, shader.program); + + this._activeGeometry = geometry; + + if (this._activeVao !== vao) + { + this._activeVao = vao; + + if (this.hasVao) + { + gl.bindVertexArray(vao); + } + else + { + this.activateVao(geometry, shader.program); + } + } + + // TODO - optimise later! + // don't need to loop through if nothing changed! + // maybe look to add an 'autoupdate' to geometry? + this.updateBuffers(); + }; + + /** + * Reset and unbind any active VAO and geometry + */ + GeometrySystem.prototype.reset = function reset () + { + this.unbind(); + }; + + /** + * Update buffers + * @protected + */ + GeometrySystem.prototype.updateBuffers = function updateBuffers () + { + var geometry = this._activeGeometry; + var ref = this; + var gl = ref.gl; + + for (var i = 0; i < geometry.buffers.length; i++) + { + var buffer = geometry.buffers[i]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + + if (buffer._updateID !== glBuffer.updateID) + { + glBuffer.updateID = buffer._updateID; + + // TODO can cache this on buffer! maybe added a getter / setter? + var type = buffer.index ? gl.ELEMENT_ARRAY_BUFFER : gl.ARRAY_BUFFER; + + // TODO this could change if the VAO changes... + // need to come up with a better way to cache.. + // if (this.boundBuffers[type] !== glBuffer) + // { + // this.boundBuffers[type] = glBuffer; + gl.bindBuffer(type, glBuffer.buffer); + // } + + this._boundBuffer = glBuffer; + + if (glBuffer.byteLength >= buffer.data.byteLength) + { + // offset is always zero for now! + gl.bufferSubData(type, 0, buffer.data); + } + else + { + var drawType = buffer.static ? gl.STATIC_DRAW : gl.DYNAMIC_DRAW; + + glBuffer.byteLength = buffer.data.byteLength; + gl.bufferData(type, buffer.data, drawType); + } + } + } + }; + + /** + * Check compability between a geometry and a program + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Program instance + */ + GeometrySystem.prototype.checkCompatibility = function checkCompatibility (geometry, program) + { + // geometry must have at least all the attributes that the shader requires. + var geometryAttributes = geometry.attributes; + var shaderAttributes = program.attributeData; + + for (var j in shaderAttributes) + { + if (!geometryAttributes[j]) + { + throw new Error(("shader and geometry incompatible, geometry missing the \"" + j + "\" attribute")); + } + } + }; + + /** + * Takes a geometry and program and generates a unique signature for them. + * + * @param {PIXI.Geometry} geometry to get signature from + * @param {PIXI.Program} program to test geometry against + * @returns {String} Unique signature of the geometry and program + * @protected + */ + GeometrySystem.prototype.getSignature = function getSignature (geometry, program) + { + var attribs = geometry.attributes; + var shaderAttributes = program.attributeData; + + var strings = ['g', geometry.id]; + + for (var i in attribs) + { + if (shaderAttributes[i]) + { + strings.push(i); + } + } + + return strings.join('-'); + }; + + /** + * Creates or gets Vao with the same structure as the geometry and stores it on the geometry. + * If vao is created, it is bound automatically. + * + * @protected + * @param {PIXI.Geometry} geometry - Instance of geometry to to generate Vao for + * @param {PIXI.Program} program - Instance of program + */ + GeometrySystem.prototype.initGeometryVao = function initGeometryVao (geometry, program) + { + this.checkCompatibility(geometry, program); + + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + + var signature = this.getSignature(geometry, program); + + var vaoObjectHash = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + var vao = vaoObjectHash[signature]; + + if (vao) + { + // this will give us easy access to the vao + vaoObjectHash[program.id] = vao; + + return vao; + } + + var buffers = geometry.buffers; + var attributes = geometry.attributes; + var tempStride = {}; + var tempStart = {}; + + for (var j in buffers) + { + tempStride[j] = 0; + tempStart[j] = 0; + } + + for (var j$1 in attributes) + { + if (!attributes[j$1].size && program.attributeData[j$1]) + { + attributes[j$1].size = program.attributeData[j$1].size; + } + else if (!attributes[j$1].size) + { + console.warn(("PIXI Geometry attribute '" + j$1 + "' size cannot be determined (likely the bound shader does not have the attribute)")); // eslint-disable-line + } + + tempStride[attributes[j$1].buffer] += attributes[j$1].size * byteSizeMap$1[attributes[j$1].type]; + } + + for (var j$2 in attributes) + { + var attribute = attributes[j$2]; + var attribSize = attribute.size; + + if (attribute.stride === undefined) + { + if (tempStride[attribute.buffer] === attribSize * byteSizeMap$1[attribute.type]) + { + attribute.stride = 0; + } + else + { + attribute.stride = tempStride[attribute.buffer]; + } + } + + if (attribute.start === undefined) + { + attribute.start = tempStart[attribute.buffer]; + + tempStart[attribute.buffer] += attribSize * byteSizeMap$1[attribute.type]; + } + } + + vao = gl.createVertexArray(); + + gl.bindVertexArray(vao); + + // first update - and create the buffers! + // only create a gl buffer if it actually gets + for (var i = 0; i < buffers.length; i++) + { + var buffer = buffers[i]; + + if (!buffer._glBuffers[CONTEXT_UID]) + { + buffer._glBuffers[CONTEXT_UID] = new GLBuffer(gl.createBuffer()); + this.managedBuffers[buffer.id] = buffer; + buffer.disposeRunner.add(this); + } + + buffer._glBuffers[CONTEXT_UID].refCount++; + } + + // TODO - maybe make this a data object? + // lets wait to see if we need to first! + + this.activateVao(geometry, program); + + this._activeVao = vao; + + // add it to the cache! + vaoObjectHash[program.id] = vao; + vaoObjectHash[signature] = vao; + + return vao; + }; + + /** + * Disposes buffer + * @param {PIXI.Buffer} buffer buffer with data + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeBuffer = function disposeBuffer (buffer, contextLost) + { + if (!this.managedBuffers[buffer.id]) + { + return; + } + + delete this.managedBuffers[buffer.id]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + var gl = this.gl; + + buffer.disposeRunner.remove(this); + + if (!glBuffer) + { + return; + } + + if (!contextLost) + { + gl.deleteBuffer(glBuffer.buffer); + } + + delete buffer._glBuffers[this.CONTEXT_UID]; + }; + + /** + * Disposes geometry + * @param {PIXI.Geometry} geometry Geometry with buffers. Only VAO will be disposed + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeGeometry = function disposeGeometry (geometry, contextLost) + { + if (!this.managedGeometries[geometry.id]) + { + return; + } + + delete this.managedGeometries[geometry.id]; + + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + var gl = this.gl; + var buffers = geometry.buffers; + + geometry.disposeRunner.remove(this); + + if (!vaos) + { + return; + } + + for (var i = 0; i < buffers.length; i++) + { + var buf = buffers[i]._glBuffers[this.CONTEXT_UID]; + + buf.refCount--; + if (buf.refCount === 0 && !contextLost) + { + this.disposeBuffer(buffers[i], contextLost); + } + } + + if (!contextLost) + { + for (var vaoId in vaos) + { + // delete only signatures, everything else are copies + if (vaoId[0] === 'g') + { + var vao = vaos[vaoId]; + + if (this._activeVao === vao) + { + this.unbind(); + } + gl.deleteVertexArray(vao); + } + } + } + + delete geometry.glVertexArrayObjects[this.CONTEXT_UID]; + }; + + /** + * dispose all WebGL resources of all managed geometries and buffers + * @param {boolean} [contextLost=false] If context was lost, we suppress `gl.delete` calls + */ + GeometrySystem.prototype.disposeAll = function disposeAll (contextLost) + { + var all = Object.keys(this.managedGeometries); + + for (var i = 0; i < all.length; i++) + { + this.disposeGeometry(this.managedGeometries[all[i]], contextLost); + } + all = Object.keys(this.managedBuffers); + for (var i$1 = 0; i$1 < all.length; i$1++) + { + this.disposeBuffer(this.managedBuffers[all[i$1]], contextLost); + } + }; + + /** + * Activate vertex array object + * + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Shader program instance + */ + GeometrySystem.prototype.activateVao = function activateVao (geometry, program) + { + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + var buffers = geometry.buffers; + var attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + // first update the index buffer if we have one.. + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, geometry.indexBuffer._glBuffers[CONTEXT_UID].buffer); + } + + var lastBuffer = null; + + // add a new one! + for (var j in attributes) + { + var attribute = attributes[j]; + var buffer = buffers[attribute.buffer]; + var glBuffer = buffer._glBuffers[CONTEXT_UID]; + + if (program.attributeData[j]) + { + if (lastBuffer !== glBuffer) + { + gl.bindBuffer(gl.ARRAY_BUFFER, glBuffer.buffer); + + lastBuffer = glBuffer; + } + + var location = program.attributeData[j].location; + + // TODO introduce state again + // we can optimise this for older devices that have no VAOs + gl.enableVertexAttribArray(location); + + gl.vertexAttribPointer(location, + attribute.size, + attribute.type || gl.FLOAT, + attribute.normalized, + attribute.stride, + attribute.start); + + if (attribute.instance) + { + // TODO calculate instance count based of this... + if (this.hasInstance) + { + gl.vertexAttribDivisor(location, 1); + } + else + { + throw new Error('geometry error, GPU Instancing is not supported on this device'); + } + } + } + } + }; + + /** + * Draw the geometry + * + * @param {Number} type - the type primitive to render + * @param {Number} [size] - the number of elements to be rendered + * @param {Number} [start] - Starting index + * @param {Number} [instanceCount] - the number of instances of the set of elements to execute + */ + GeometrySystem.prototype.draw = function draw (type, size, start, instanceCount) + { + var ref = this; + var gl = ref.gl; + var geometry = this._activeGeometry; + + // TODO.. this should not change so maybe cache the function? + + if (geometry.indexBuffer) + { + var byteSize = geometry.indexBuffer.data.BYTES_PER_ELEMENT; + var glType = byteSize === 2 ? gl.UNSIGNED_SHORT : gl.UNSIGNED_INT; + + if (byteSize === 2 || (byteSize === 4 && this.canUseUInt32ElementIndex)) + { + if (geometry.instanced) + { + /* eslint-disable max-len */ + gl.drawElementsInstanced(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize, instanceCount || 1); + /* eslint-enable max-len */ + } + else + { + /* eslint-disable max-len */ + gl.drawElements(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize); + /* eslint-enable max-len */ + } + } + else + { + console.warn('unsupported index buffer type: uint32'); + } + } + else if (geometry.instanced) + { + // TODO need a better way to calculate size.. + gl.drawArraysInstanced(type, start, size || geometry.getSize(), instanceCount || 1); + } + else + { + gl.drawArrays(type, start, size || geometry.getSize()); + } + + return this; + }; + + /** + * Unbind/reset everything + * @protected + */ + GeometrySystem.prototype.unbind = function unbind () + { + this.gl.bindVertexArray(null); + this._activeVao = null; + this._activeGeometry = null; + }; + + return GeometrySystem; +}(System)); + +/** + * @method compileProgram + * @private + * @memberof PIXI.glCore.shader + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @param fragmentSrc {string|string[]} The fragment shader source as an array of strings. + * @param attributeLocations {Object} An attribute location map that lets you manually set the attribute locations + * @return {WebGLProgram} the shader program + */ +function compileProgram(gl, vertexSrc, fragmentSrc, attributeLocations) +{ + var glVertShader = compileShader(gl, gl.VERTEX_SHADER, vertexSrc); + var glFragShader = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc); + + var program = gl.createProgram(); + + gl.attachShader(program, glVertShader); + gl.attachShader(program, glFragShader); + + // optionally, set the attributes manually for the program rather than letting WebGL decide.. + if (attributeLocations) + { + for (var i in attributeLocations) + { + gl.bindAttribLocation(program, attributeLocations[i], i); + } + } + + gl.linkProgram(program); + + // if linking fails, then log and cleanup + if (!gl.getProgramParameter(program, gl.LINK_STATUS)) + { + console.error('Pixi.js Error: Could not initialize shader.'); + console.error('gl.VALIDATE_STATUS', gl.getProgramParameter(program, gl.VALIDATE_STATUS)); + console.error('gl.getError()', gl.getError()); + + // if there is a program info log, log it + if (gl.getProgramInfoLog(program) !== '') + { + console.warn('Pixi.js Warning: gl.getProgramInfoLog()', gl.getProgramInfoLog(program)); + } + + gl.deleteProgram(program); + program = null; + } + + // clean up some shaders + gl.deleteShader(glVertShader); + gl.deleteShader(glFragShader); + + return program; +} + +/** + * @private + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param type {Number} the type, can be either VERTEX_SHADER or FRAGMENT_SHADER + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @return {WebGLShader} the shader + */ +function compileShader(gl, type, src) +{ + var shader = gl.createShader(type); + + gl.shaderSource(shader, src); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + console.warn(src); + console.error(gl.getShaderInfoLog(shader)); + + return null; + } + + return shader; +} + +/** + * @method defaultValue + * @memberof PIXI.glCore.shader + * @param type {String} Type of value + * @param size {Number} + * @private + */ +function defaultValue(type, size) +{ + switch (type) + { + case 'float': + return 0; + + case 'vec2': + return new Float32Array(2 * size); + + case 'vec3': + return new Float32Array(3 * size); + + case 'vec4': + return new Float32Array(4 * size); + + case 'int': + case 'sampler2D': + case 'sampler2DArray': + return 0; + + case 'ivec2': + return new Int32Array(2 * size); + + case 'ivec3': + return new Int32Array(3 * size); + + case 'ivec4': + return new Int32Array(4 * size); + + case 'bool': + return false; + + case 'bvec2': + + return booleanArray(2 * size); + + case 'bvec3': + return booleanArray(3 * size); + + case 'bvec4': + return booleanArray(4 * size); + + case 'mat2': + return new Float32Array([1, 0, + 0, 1]); + + case 'mat3': + return new Float32Array([1, 0, 0, + 0, 1, 0, + 0, 0, 1]); + + case 'mat4': + return new Float32Array([1, 0, 0, 0, + 0, 1, 0, 0, + 0, 0, 1, 0, + 0, 0, 0, 1]); + } + + return null; +} + +function booleanArray(size) +{ + var array = new Array(size); + + for (var i = 0; i < array.length; i++) + { + array[i] = false; + } + + return array; +} + +var unknownContext = {}; +var context = unknownContext; + +/** + * returns a little WebGL context to use for program inspection. + * + * @static + * @private + * @returns {webGL-context} a gl context to test with + */ +function getTestContext() +{ + if (context === unknownContext || context.isContextLost()) + { + var canvas = document.createElement('canvas'); + + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', {}); + } + + if (!gl) + { + gl = canvas.getContext('webgl', {}) + || canvas.getContext('experimental-webgl', {}); + + if (!gl) + { + // fail, not able to get a context + gl = null; + } + else + { + // for shader testing.. + gl.getExtension('WEBGL_draw_buffers'); + } + } + + context = gl; + } + + return context; +} + +var maxFragmentPrecision; + +function getMaxFragmentPrecision() +{ + if (!maxFragmentPrecision) + { + maxFragmentPrecision = PRECISION.MEDIUM; + var gl = getTestContext(); + + if (gl) + { + if (gl.getShaderPrecisionFormat) + { + var shaderFragment = gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT); + + maxFragmentPrecision = shaderFragment.precision ? PRECISION.HIGH : PRECISION.MEDIUM; + } + } + } + + return maxFragmentPrecision; +} + +/** + * Sets the float precision on the shader, ensuring the device supports the request precision. + * If the precision is already present, it just ensures that the device is able to handle it. + * + * @private + * @param {string} src - The shader source + * @param {string} requestedPrecision - The request float precision of the shader. Options are 'lowp', 'mediump' or 'highp'. + * @param {string} maxSupportedPrecision - The maximum precision the shader supports. + * + * @return {string} modified shader source + */ +function setPrecision(src, requestedPrecision, maxSupportedPrecision) +{ + if (src.substring(0, 9) !== 'precision') + { + // no precision supplied, so PixiJS will add the requested level. + var precision = requestedPrecision; + + // If highp is requested but not supported, downgrade precision to a level all devices support. + if (requestedPrecision === PRECISION.HIGH && maxSupportedPrecision !== PRECISION.HIGH) + { + precision = PRECISION.MEDIUM; + } + + return ("precision " + precision + " float;\n" + src); + } + else if (maxSupportedPrecision !== PRECISION.HIGH && src.substring(0, 15) === 'precision highp') + { + // precision was supplied, but at a level this device does not support, so downgrading to mediump. + return src.replace('precision highp', 'precision mediump'); + } + + return src; +} + +var GLSL_TO_SIZE = { + float: 1, + vec2: 2, + vec3: 3, + vec4: 4, + + int: 1, + ivec2: 2, + ivec3: 3, + ivec4: 4, + + bool: 1, + bvec2: 2, + bvec3: 3, + bvec4: 4, + + mat2: 4, + mat3: 9, + mat4: 16, + + sampler2D: 1, +}; + +/** + * @private + * @method mapSize + * @memberof PIXI.glCore.shader + * @param type {String} + * @return {Number} + */ +function mapSize(type) +{ + return GLSL_TO_SIZE[type]; +} + +var GL_TABLE = null; + +var GL_TO_GLSL_TYPES = { + FLOAT: 'float', + FLOAT_VEC2: 'vec2', + FLOAT_VEC3: 'vec3', + FLOAT_VEC4: 'vec4', + + INT: 'int', + INT_VEC2: 'ivec2', + INT_VEC3: 'ivec3', + INT_VEC4: 'ivec4', + + BOOL: 'bool', + BOOL_VEC2: 'bvec2', + BOOL_VEC3: 'bvec3', + BOOL_VEC4: 'bvec4', + + FLOAT_MAT2: 'mat2', + FLOAT_MAT3: 'mat3', + FLOAT_MAT4: 'mat4', + + SAMPLER_2D: 'sampler2D', + SAMPLER_CUBE: 'samplerCube', + SAMPLER_2D_ARRAY: 'sampler2DArray', +}; + +function mapType(gl, type) +{ + if (!GL_TABLE) + { + var typeNames = Object.keys(GL_TO_GLSL_TYPES); + + GL_TABLE = {}; + + for (var i = 0; i < typeNames.length; ++i) + { + var tn = typeNames[i]; + + GL_TABLE[gl[tn]] = GL_TO_GLSL_TYPES[tn]; + } + } + + return GL_TABLE[type]; +} + +// cv = CachedValue +// v = value +// ud = uniformData +// uv = uniformValue +// l = location +var GLSL_TO_SINGLE_SETTERS_CACHED = { + + float: "\n if(cv !== v)\n {\n cv.v = v;\n gl.uniform1f(location, v)\n }", + + vec2: "\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(location, v[0], v[1])\n }", + + vec3: "\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n\n gl.uniform3f(location, v[0], v[1], v[2])\n }", + + vec4: 'gl.uniform4f(location, v[0], v[1], v[2], v[3])', + + int: 'gl.uniform1i(location, v)', + ivec2: 'gl.uniform2i(location, v[0], v[1])', + ivec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + ivec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + bool: 'gl.uniform1i(location, v)', + bvec2: 'gl.uniform2i(location, v[0], v[1])', + bvec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + bvec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + mat2: 'gl.uniformMatrix2fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat4: 'gl.uniformMatrix4fv(location, false, v)', + + sampler2D: 'gl.uniform1i(location, v)', + samplerCube: 'gl.uniform1i(location, v)', + sampler2DArray: 'gl.uniform1i(location, v)', +}; + +var GLSL_TO_ARRAY_SETTERS = { + + float: "gl.uniform1fv(location, v)", + + vec2: "gl.uniform2fv(location, v)", + vec3: "gl.uniform3fv(location, v)", + vec4: 'gl.uniform4fv(location, v)', + + mat4: 'gl.uniformMatrix4fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat2: 'gl.uniformMatrix2fv(location, false, v)', + + int: 'gl.uniform1iv(location, v)', + ivec2: 'gl.uniform2iv(location, v)', + ivec3: 'gl.uniform3iv(location, v)', + ivec4: 'gl.uniform4iv(location, v)', + + bool: 'gl.uniform1iv(location, v)', + bvec2: 'gl.uniform2iv(location, v)', + bvec3: 'gl.uniform3iv(location, v)', + bvec4: 'gl.uniform4iv(location, v)', + + sampler2D: 'gl.uniform1iv(location, v)', + samplerCube: 'gl.uniform1iv(location, v)', + sampler2DArray: 'gl.uniform1iv(location, v)', +}; + +function generateUniformsSync(group, uniformData) +{ + var textureCount = 0; + var func = "var v = null;\n var cv = null\n var gl = renderer.gl"; + + for (var i in group.uniforms) + { + var data = uniformData[i]; + + if (!data) + { + if (group.uniforms[i].group) + { + func += "\n renderer.shader.syncUniformGroup(uv." + i + ");\n "; + } + + continue; + } + + // TODO && uniformData[i].value !== 0 <-- do we still need this? + if (data.type === 'float' && data.size === 1) + { + func += "\n if(uv." + i + " !== ud." + i + ".value)\n {\n ud." + i + ".value = uv." + i + "\n gl.uniform1f(ud." + i + ".location, uv." + i + ")\n }\n"; + } + /* eslint-disable max-len */ + else if ((data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray) + /* eslint-disable max-len */ + { + func += "\n renderer.texture.bind(uv." + i + ", " + textureCount + ");\n\n if(ud." + i + ".value !== " + textureCount + ")\n {\n ud." + i + ".value = " + textureCount + ";\n gl.uniform1i(ud." + i + ".location, " + textureCount + ");\n; // eslint-disable-line max-len\n }\n"; + + textureCount++; + } + else if (data.type === 'mat3' && data.size === 1) + { + if (group.uniforms[i].a !== undefined) + { + // TODO and some smart caching dirty ids here! + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ".toArray(true));\n \n"; + } + else + { + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ");\n \n"; + } + } + else if (data.type === 'vec2' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].x !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n gl.uniform2f(ud." + i + ".location, v.x, v.y);\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(ud." + i + ".location, v[0], v[1]);\n }\n \n"; + } + } + else if (data.type === 'vec4' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].width !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y || cv[2] !== v.width || cv[3] !== v.height)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n cv[2] = v.width;\n cv[3] = v.height;\n gl.uniform4f(ud." + i + ".location, v.x, v.y, v.width, v.height)\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2] || cv[3] !== v[3])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n cv[3] = v[3];\n\n gl.uniform4f(ud." + i + ".location, v[0], v[1], v[2], v[3])\n }\n \n"; + } + } + else + { + var templateType = (data.size === 1) ? GLSL_TO_SINGLE_SETTERS_CACHED : GLSL_TO_ARRAY_SETTERS; + + var template = templateType[data.type].replace('location', ("ud." + i + ".location")); + + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n " + template + ";\n"; + } + } + + return new Function('ud', 'uv', 'renderer', func); // eslint-disable-line no-new-func +} + +var fragTemplate = [ + 'precision mediump float;', + 'void main(void){', + 'float test = 0.1;', + '%forloop%', + 'gl_FragColor = vec4(0.0);', + '}' ].join('\n'); + +function checkMaxIfStatementsInShader(maxIfs, gl) +{ + if (maxIfs === 0) + { + throw new Error('Invalid value of `0` passed to `checkMaxIfStatementsInShader`'); + } + + var shader = gl.createShader(gl.FRAGMENT_SHADER); + + while (true) // eslint-disable-line no-constant-condition + { + var fragmentSrc = fragTemplate.replace(/%forloop%/gi, generateIfTestSrc(maxIfs)); + + gl.shaderSource(shader, fragmentSrc); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + maxIfs = (maxIfs / 2) | 0; + } + else + { + // valid! + break; + } + } + + return maxIfs; +} + +function generateIfTestSrc(maxIfs) +{ + var src = ''; + + for (var i = 0; i < maxIfs; ++i) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxIfs - 1) + { + src += "if(test == " + i + ".0){}"; + } + } + + return src; +} + +// Cache the result to prevent running this over and over +var unsafeEval; + +/** + * Not all platforms allow to generate function code (e.g., `new Function`). + * this provides the platform-level detection. + * + * @private + * @returns {boolean} + */ +function unsafeEvalSupported() +{ + if (typeof unsafeEval === 'boolean') + { + return unsafeEval; + } + + try + { + /* eslint-disable no-new-func */ + var func = new Function('param1', 'param2', 'param3', 'return param1[param2] === param3;'); + /* eslint-enable no-new-func */ + + unsafeEval = func({ a: 'b' }, 'a', 'b') === true; + } + catch (e) + { + unsafeEval = false; + } + + return unsafeEval; +} + +var defaultFragment = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor *= texture2D(uSampler, vTextureCoord);\n}"; + +var defaultVertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n vTextureCoord = aTextureCoord;\n}\n"; + +// import * as from '../systems/shader/shader'; + +var UID$3 = 0; + +var nameCache = {}; + +/** + * Helper class to create a shader program. + * + * @class + * @memberof PIXI + */ +var Program = function Program(vertexSrc, fragmentSrc, name) +{ + if ( name === void 0 ) name = 'pixi-shader'; + + this.id = UID$3++; + + /** + * The vertex shader. + * + * @member {string} + */ + this.vertexSrc = vertexSrc || Program.defaultVertexSrc; + + /** + * The fragment shader. + * + * @member {string} + */ + this.fragmentSrc = fragmentSrc || Program.defaultFragmentSrc; + + this.vertexSrc = this.vertexSrc.trim(); + this.fragmentSrc = this.fragmentSrc.trim(); + + if (this.vertexSrc.substring(0, 8) !== '#version') + { + name = name.replace(/\s+/g, '-'); + + if (nameCache[name]) + { + nameCache[name]++; + name += "-" + (nameCache[name]); + } + else + { + nameCache[name] = 1; + } + + this.vertexSrc = "#define SHADER_NAME " + name + "\n" + (this.vertexSrc); + this.fragmentSrc = "#define SHADER_NAME " + name + "\n" + (this.fragmentSrc); + + this.vertexSrc = setPrecision(this.vertexSrc, settings.PRECISION_VERTEX, PRECISION.HIGH); + this.fragmentSrc = setPrecision(this.fragmentSrc, settings.PRECISION_FRAGMENT, getMaxFragmentPrecision()); + } + + // currently this does not extract structs only default types + this.extractData(this.vertexSrc, this.fragmentSrc); + + // this is where we store shader references.. + this.glPrograms = {}; + + this.syncUniforms = null; +}; + +var staticAccessors$3 = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + +/** + * Extracts the data for a buy creating a small test program + * or reading the src directly. + * @protected + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + */ +Program.prototype.extractData = function extractData (vertexSrc, fragmentSrc) +{ + var gl = getTestContext(); + + if (gl) + { + var program = compileProgram(gl, vertexSrc, fragmentSrc); + + this.attributeData = this.getAttributeData(program, gl); + this.uniformData = this.getUniformData(program, gl); + + gl.deleteProgram(program); + } + else + { + this.uniformData = {}; + this.attributeData = {}; + } +}; + +/** + * returns the attribute data from the program + * @private + * + * @param {WebGLProgram} [program] - the WebGL program + * @param {WebGLRenderingContext} [gl] - the WebGL context + * + * @returns {object} the attribute data for this program + */ +Program.prototype.getAttributeData = function getAttributeData (program, gl) +{ + var attributes = {}; + var attributesArray = []; + + var totalAttributes = gl.getProgramParameter(program, gl.ACTIVE_ATTRIBUTES); + + for (var i = 0; i < totalAttributes; i++) + { + var attribData = gl.getActiveAttrib(program, i); + var type = mapType(gl, attribData.type); + + /*eslint-disable */ + var data = { + type: type, + name: attribData.name, + size: mapSize(type), + location: 0, + }; + /* eslint-enable */ + + attributes[attribData.name] = data; + attributesArray.push(data); + } + + attributesArray.sort(function (a, b) { return (a.name > b.name) ? 1 : -1; }); // eslint-disable-line no-confusing-arrow + + for (var i$1 = 0; i$1 < attributesArray.length; i$1++) + { + attributesArray[i$1].location = i$1; + } + + return attributes; +}; + +/** + * returns the uniform data from the program + * @private + * + * @param {webGL-program} [program] - the webgl program + * @param {context} [gl] - the WebGL context + * + * @returns {object} the uniform data for this program + */ +Program.prototype.getUniformData = function getUniformData (program, gl) +{ + var uniforms = {}; + + var totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS); + + // TODO expose this as a prop? + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + + for (var i = 0; i < totalUniforms; i++) + { + var uniformData = gl.getActiveUniform(program, i); + var name = uniformData.name.replace(/\[.*?\]/, ''); + + var isArray = uniformData.name.match(/\[.*?\]/, ''); + var type = mapType(gl, uniformData.type); + + /*eslint-disable */ + uniforms[name] = { + type: type, + size: uniformData.size, + isArray:isArray, + value: defaultValue(type, uniformData.size), + }; + /* eslint-enable */ + } + + return uniforms; +}; + +/** + * The default vertex shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultVertexSrc.get = function () +{ + return defaultVertex; +}; + +/** + * The default fragment shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultFragmentSrc.get = function () +{ + return defaultFragment; +}; + +/** + * A short hand function to create a program based of a vertex and fragment shader + * this method will also check to see if there is a cached program. + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Program} an shiny new Pixi shader! + */ +Program.from = function from (vertexSrc, fragmentSrc, name) +{ + var key = vertexSrc + fragmentSrc; + + var program = ProgramCache[key]; + + if (!program) + { + ProgramCache[key] = program = new Program(vertexSrc, fragmentSrc, name); + } + + return program; +}; + +Object.defineProperties( Program, staticAccessors$3 ); + +/** + * A helper class for shaders + * + * @class + * @memberof PIXI + */ +var Shader = function Shader(program, uniforms) +{ + /** + * Program that the shader uses + * + * @member {PIXI.Program} + */ + this.program = program; + + // lets see whats been passed in + // uniforms should be converted to a uniform group + if (uniforms) + { + if (uniforms instanceof UniformGroup) + { + this.uniformGroup = uniforms; + } + else + { + this.uniformGroup = new UniformGroup(uniforms); + } + } + else + { + this.uniformGroup = new UniformGroup({}); + } + + // time to build some getters and setters! + // I guess down the line this could sort of generate an instruction list rather than use dirty ids? + // does the trick for now though! + for (var i in program.uniformData) + { + if (this.uniformGroup.uniforms[i] instanceof Array) + { + this.uniformGroup.uniforms[i] = new Float32Array(this.uniformGroup.uniforms[i]); + } + } +}; + +var prototypeAccessors$2$1 = { uniforms: { configurable: true } }; + +// TODO move to shader system.. +Shader.prototype.checkUniformExists = function checkUniformExists (name, group) +{ + if (group.uniforms[name]) + { + return true; + } + + for (var i in group.uniforms) + { + var uniform = group.uniforms[i]; + + if (uniform.group) + { + if (this.checkUniformExists(name, uniform)) + { + return true; + } + } + } + + return false; +}; + +Shader.prototype.destroy = function destroy () +{ + // usage count on programs? + // remove if not used! + this.uniformGroup = null; +}; + +/** + * Shader uniform values, shortcut for `uniformGroup.uniforms` + * @readonly + * @member {object} + */ +prototypeAccessors$2$1.uniforms.get = function () +{ + return this.uniformGroup.uniforms; +}; + +/** + * A short hand function to create a shader based of a vertex and fragment shader + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Shader} an shiny new Pixi shader! + */ +Shader.from = function from (vertexSrc, fragmentSrc, uniforms) +{ + var program = Program.from(vertexSrc, fragmentSrc); + + return new Shader(program, uniforms); +}; + +Object.defineProperties( Shader.prototype, prototypeAccessors$2$1 ); + +/* eslint-disable max-len */ + +var BLEND = 0; +var OFFSET = 1; +var CULLING = 2; +var DEPTH_TEST = 3; +var WINDING = 4; + +/** + * This is a WebGL state, and is is passed The WebGL StateManager. + * + * Each mesh rendered may require WebGL to be in a different state. + * For example you may want different blend mode or to enable polygon offsets + * + * @class + * @memberof PIXI + */ +var State = function State() +{ + this.data = 0; + + this.blendMode = BLEND_MODES.NORMAL; + this.polygonOffset = 0; + + this.blend = true; + // this.depthTest = true; +}; + +var prototypeAccessors$3$1 = { blend: { configurable: true },offsets: { configurable: true },culling: { configurable: true },depthTest: { configurable: true },clockwiseFrontFace: { configurable: true },blendMode: { configurable: true },polygonOffset: { configurable: true } }; + +/** + * Activates blending of the computed fragment color values + * + * @member {boolean} + */ +prototypeAccessors$3$1.blend.get = function () +{ + return !!(this.data & (1 << BLEND)); +}; + +prototypeAccessors$3$1.blend.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << BLEND)) !== value) + { + this.data ^= (1 << BLEND); + } +}; + +/** + * Activates adding an offset to depth values of polygon's fragments + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.offsets.get = function () +{ + return !!(this.data & (1 << OFFSET)); +}; + +prototypeAccessors$3$1.offsets.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << OFFSET)) !== value) + { + this.data ^= (1 << OFFSET); + } +}; + +/** + * Activates culling of polygons. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.culling.get = function () +{ + return !!(this.data & (1 << CULLING)); +}; + +prototypeAccessors$3$1.culling.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << CULLING)) !== value) + { + this.data ^= (1 << CULLING); + } +}; + +/** + * Activates depth comparisons and updates to the depth buffer. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.depthTest.get = function () +{ + return !!(this.data & (1 << DEPTH_TEST)); +}; + +prototypeAccessors$3$1.depthTest.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << DEPTH_TEST)) !== value) + { + this.data ^= (1 << DEPTH_TEST); + } +}; + +/** + * Specifies whether or not front or back-facing polygons can be culled. + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.clockwiseFrontFace.get = function () +{ + return !!(this.data & (1 << WINDING)); +}; + +prototypeAccessors$3$1.clockwiseFrontFace.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << WINDING)) !== value) + { + this.data ^= (1 << WINDING); + } +}; + +/** + * The blend mode to be applied when this state is set. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * Setting this mode to anything other than NO_BLEND will automatically switch blending on. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ +prototypeAccessors$3$1.blendMode.get = function () +{ + return this._blendMode; +}; + +prototypeAccessors$3$1.blendMode.set = function (value) // eslint-disable-line require-jsdoc +{ + this.blend = (value !== BLEND_MODES.NONE); + this._blendMode = value; +}; + +/** + * The polygon offset. Setting this property to anything other than 0 will automatically enable polygon offset fill. + * + * @member {number} + * @default 0 + */ +prototypeAccessors$3$1.polygonOffset.get = function () +{ + return this._polygonOffset; +}; + +prototypeAccessors$3$1.polygonOffset.set = function (value) // eslint-disable-line require-jsdoc +{ + this.offsets = !!value; + this._polygonOffset = value; +}; + +State.for2d = function for2d () +{ + var state = new State(); + + state.depthTest = false; + state.blend = true; + + return state; +}; + +Object.defineProperties( State.prototype, prototypeAccessors$3$1 ); + +var defaultVertex$1 = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +var defaultFragment$1 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor = texture2D(uSampler, vTextureCoord);\n}\n"; + +/** + * Filter is a special type of WebGL shader that is applied to the screen. + * + * {@link http://pixijs.io/examples/#/filters/blur-filter.js Example} of the + * {@link PIXI.filters.BlurFilter BlurFilter}. + * + * ### Usage + * Filters can be applied to any DisplayObject or Container. + * PixiJS' `FilterSystem` renders the container into temporary Framebuffer, + * then filter renders it to the screen. + * Multiple filters can be added to the `filters` array property and stacked on each other. + * + * ``` + * const filter = new PIXI.Filter(myShaderVert, myShaderFrag, { myUniform: 0.5 }); + * const container = new PIXI.Container(); + * container.filters = [filter]; + * ``` + * + * ### Previous Version Differences + * + * In PixiJS **v3**, a filter was always applied to _whole screen_. + * + * In PixiJS **v4**, a filter can be applied _only part of the screen_. + * Developers had to create a set of uniforms to deal with coordinates. + * + * In PixiJS **v5** combines _both approaches_. + * Developers can use normal coordinates of v3 and then allow filter to use partial Framebuffers, + * bringing those extra uniforms into account. + * + * Also be aware that we have changed default vertex shader, please consult + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * ### Built-in Uniforms + * + * PixiJS viewport uses screen (CSS) coordinates, `(0, 0, renderer.screen.width, renderer.screen.height)`, + * and `projectionMatrix` uniform maps it to the gl viewport. + * + * **uSampler** + * + * The most important uniform is the input texture that container was rendered into. + * _Important note: as with all Framebuffers in PixiJS, both input and output are + * premultiplied by alpha._ + * + * By default, input normalized coordinates are passed to fragment shader with `vTextureCoord`. + * Use it to sample the input. + * + * ``` + * const fragment = ` + * varying vec2 vTextureCoord; + * uniform sampler2D uSampler; + * void main(void) + * { + * gl_FragColor = texture2D(uSampler, vTextureCoord); + * } + * `; + * + * const myFilter = new PIXI.Filter(null, fragment); + * ``` + * + * This filter is just one uniform less than {@link PIXI.filters.AlphaFilter AlphaFilter}. + * + * **outputFrame** + * + * The `outputFrame` holds the rectangle where filter is applied in screen (CSS) coordinates. + * It's the same as `renderer.screen` for a fullscreen filter. + * Only a part of `outputFrame.zw` size of temporary Framebuffer is used, + * `(0, 0, outputFrame.width, outputFrame.height)`, + * + * Filters uses this quad to normalized (0-1) space, its passed into `aVertexPosition` attribute. + * To calculate vertex position in screen space using normalized (0-1) space: + * + * ``` + * vec4 filterVertexPosition( void ) + * { + * vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy; + * return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0); + * } + * ``` + * + * **inputSize** + * + * Temporary framebuffer is different, it can be either the size of screen, either power-of-two. + * The `inputSize.xy` are size of temporary framebuffer that holds input. + * The `inputSize.zw` is inverted, it's a shortcut to evade division inside the shader. + * + * Set `inputSize.xy = outputFrame.zw` for a fullscreen filter. + * + * To calculate input normalized coordinate, you have to map it to filter normalized space. + * Multiply by `outputFrame.zw` to get input coordinate. + * Divide by `inputSize.xy` to get input normalized coordinate. + * + * ``` + * vec2 filterTextureCoord( void ) + * { + * return aVertexPosition * (outputFrame.zw * inputSize.zw); // same as /inputSize.xy + * } + * ``` + * **resolution** + * + * The `resolution` is the ratio of screen (CSS) pixels to real pixels. + * + * **inputPixel** + * + * `inputPixel.xy` is the size of framebuffer in real pixels, same as `inputSize.xy * resolution` + * `inputPixel.zw` is inverted `inputPixel.xy`. + * + * It's handy for filters that use neighbour pixels, like {@link PIXI.filters.FXAAFilter FXAAFilter}. + * + * **inputClamp** + * + * If you try to get info from outside of used part of Framebuffer - you'll get undefined behaviour. + * For displacements, coordinates has to be clamped. + * + * The `inputClamp.xy` is left-top pixel center, you may ignore it, because we use left-top part of Framebuffer + * `inputClamp.zw` is bottom-right pixel center. + * + * ``` + * vec4 color = texture2D(uSampler, clamp(modifigedTextureCoord, inputClamp.xy, inputClamp.zw)) + * ``` + * OR + * ``` + * vec4 color = texture2D(uSampler, min(modifigedTextureCoord, inputClamp.zw)) + * ``` + * + * ### Additional Information + * + * Complete documentation on Filter usage is located in the + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * Since PixiJS only had a handful of built-in filters, additional filters can be downloaded + * {@link https://github.com/pixijs/pixi-filters here} from the PixiJS Filters repository. + * + * @class + * @memberof PIXI + * @extends PIXI.Shader + */ +var Filter = /*@__PURE__*/(function (Shader) { + function Filter(vertexSrc, fragmentSrc, uniforms) + { + var program = Program.from(vertexSrc || Filter.defaultVertexSrc, + fragmentSrc || Filter.defaultFragmentSrc); + + Shader.call(this, program, uniforms); + + /** + * The padding of the filter. Some filters require extra space to breath such as a blur. + * Increasing this will add extra width and height to the bounds of the object that the + * filter is applied to. + * + * @member {number} + */ + this.padding = 0; + + /** + * The resolution of the filter. Setting this to be lower will lower the quality but + * increase the performance of the filter. + * + * @member {number} + */ + this.resolution = settings.FILTER_RESOLUTION; + + /** + * If enabled is true the filter is applied, if false it will not. + * + * @member {boolean} + */ + this.enabled = true; + + /** + * If enabled, PixiJS will fit the filter area into boundaries for better performance. + * Switch it off if it does not work for specific shader. + * + * @member {boolean} + */ + this.autoFit = true; + + /** + * Legacy filters use position and uvs from attributes + * @member {boolean} + * @readonly + */ + this.legacy = !!this.program.attributeData.aTextureCoord; + + /** + * The WebGL state the filter requires to render + * @member {PIXI.State} + */ + this.state = new State(); + } + + if ( Shader ) Filter.__proto__ = Shader; + Filter.prototype = Object.create( Shader && Shader.prototype ); + Filter.prototype.constructor = Filter; + + var prototypeAccessors = { blendMode: { configurable: true } }; + var staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + * @param {object} [currentState] - It's current state of filter. + * There are some useful properties in the currentState : + * target, filters, sourceFrame, destinationFrame, renderTarget, resolution + */ + Filter.prototype.apply = function apply (filterManager, input, output, clear, currentState) + { + // do as you please! + + filterManager.applyFilter(this, input, output, clear, currentState); + + // or just do a regular render.. + }; + + /** + * Sets the blendmode of the filter + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + */ + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + prototypeAccessors.blendMode.set = function (value) // eslint-disable-line require-jsdoc + { + this.state.blendMode = value; + }; + + /** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultVertexSrc.get = function () + { + return defaultVertex$1; + }; + + /** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultFragmentSrc.get = function () + { + return defaultFragment$1; + }; + + Object.defineProperties( Filter.prototype, prototypeAccessors ); + Object.defineProperties( Filter, staticAccessors ); + + return Filter; +}(Shader)); + +/** + * Used for caching shader IDs + * + * @static + * @type {object} + * @protected + */ +Filter.SOURCE_KEY_MAP = {}; + +var vertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 otherMatrix;\n\nvarying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\n}\n"; + +var fragment = "varying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform sampler2D mask;\nuniform float alpha;\nuniform float npmAlpha;\nuniform vec4 maskClamp;\n\nvoid main(void)\n{\n float clip = step(3.5,\n step(maskClamp.x, vMaskCoord.x) +\n step(maskClamp.y, vMaskCoord.y) +\n step(vMaskCoord.x, maskClamp.z) +\n step(vMaskCoord.y, maskClamp.w));\n\n vec4 original = texture2D(uSampler, vTextureCoord);\n vec4 masky = texture2D(mask, vMaskCoord);\n float alphaMul = 1.0 - npmAlpha * (1.0 - masky.a);\n\n original *= (alphaMul * masky.r * alpha * clip);\n\n gl_FragColor = original;\n}\n"; + +var tempMat = new Matrix(); + +/** + * Class controls uv mapping from Texture normal space to BaseTexture normal space. + * + * Takes `trim` and `rotate` into account. May contain clamp settings for Meshes and TilingSprite. + * + * Can be used in Texture `uvMatrix` field, or separately, you can use different clamp settings on the same texture. + * If you want to add support for texture region of certain feature or filter, that's what you're looking for. + * + * Takes track of Texture changes through `_lastTextureID` private field. + * Use `update()` method call to track it from outside. + * + * @see PIXI.Texture + * @see PIXI.Mesh + * @see PIXI.TilingSprite + * @class + * @memberof PIXI + */ +var TextureMatrix = function TextureMatrix(texture, clampMargin) +{ + this._texture = texture; + + /** + * Matrix operation that converts texture region coords to texture coords + * @member {PIXI.Matrix} + * @readonly + */ + this.mapCoord = new Matrix(); + + /** + * Clamp region for normalized coords, left-top pixel center in xy , bottom-right in zw. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampFrame = new Float32Array(4); + + /** + * Normalized clamp offset. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampOffset = new Float32Array(2); + + /** + * Tracks Texture frame changes + * @member {number} + * @protected + */ + this._updateID = -1; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to 1.5 if you texture has repeated right and bottom lines, that leads to smoother borders + * + * @default 0 + * @member {number} + */ + this.clampOffset = 0; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas + * + * @default 0.5 + * @member {number} + */ + this.clampMargin = (typeof clampMargin === 'undefined') ? 0.5 : clampMargin; + + /** + * If texture size is the same as baseTexture + * @member {boolean} + * @default false + * @readonly + */ + this.isSimple = false; +}; + +var prototypeAccessors$4$1 = { texture: { configurable: true } }; + +/** + * texture property + * @member {PIXI.Texture} + */ +prototypeAccessors$4$1.texture.get = function () +{ + return this._texture; +}; + +prototypeAccessors$4$1.texture.set = function (value) // eslint-disable-line require-jsdoc +{ + this._texture = value; + this._updateID = -1; +}; + +/** + * Multiplies uvs array to transform + * @param {Float32Array} uvs mesh uvs + * @param {Float32Array} [out=uvs] output + * @returns {Float32Array} output + */ +TextureMatrix.prototype.multiplyUvs = function multiplyUvs (uvs, out) +{ + if (out === undefined) + { + out = uvs; + } + + var mat = this.mapCoord; + + for (var i = 0; i < uvs.length; i += 2) + { + var x = uvs[i]; + var y = uvs[i + 1]; + + out[i] = (x * mat.a) + (y * mat.c) + mat.tx; + out[i + 1] = (x * mat.b) + (y * mat.d) + mat.ty; + } + + return out; +}; + +/** + * updates matrices if texture was changed + * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case + * @returns {boolean} whether or not it was updated + */ +TextureMatrix.prototype.update = function update (forceUpdate) +{ + var tex = this._texture; + + if (!tex || !tex.valid) + { + return false; + } + + if (!forceUpdate + && this._updateID === tex._updateID) + { + return false; + } + + this._updateID = tex._updateID; + + var uvs = tex._uvs; + + this.mapCoord.set(uvs.x1 - uvs.x0, uvs.y1 - uvs.y0, uvs.x3 - uvs.x0, uvs.y3 - uvs.y0, uvs.x0, uvs.y0); + + var orig = tex.orig; + var trim = tex.trim; + + if (trim) + { + tempMat.set(orig.width / trim.width, 0, 0, orig.height / trim.height, + -trim.x / trim.width, -trim.y / trim.height); + this.mapCoord.append(tempMat); + } + + var texBase = tex.baseTexture; + var frame = this.uClampFrame; + var margin = this.clampMargin / texBase.resolution; + var offset = this.clampOffset; + + frame[0] = (tex._frame.x + margin + offset) / texBase.width; + frame[1] = (tex._frame.y + margin + offset) / texBase.height; + frame[2] = (tex._frame.x + tex._frame.width - margin + offset) / texBase.width; + frame[3] = (tex._frame.y + tex._frame.height - margin + offset) / texBase.height; + this.uClampOffset[0] = offset / texBase.realWidth; + this.uClampOffset[1] = offset / texBase.realHeight; + + this.isSimple = tex._frame.width === texBase.width + && tex._frame.height === texBase.height + && tex.rotate === 0; + + return true; +}; + +Object.defineProperties( TextureMatrix.prototype, prototypeAccessors$4$1 ); + +/** + * This handles a Sprite acting as a mask, as opposed to a Graphic. + * + * WebGL only. + * + * @class + * @extends PIXI.Filter + * @memberof PIXI + */ +var SpriteMaskFilter = /*@__PURE__*/(function (Filter) { + function SpriteMaskFilter(sprite) + { + var maskMatrix = new Matrix(); + + Filter.call(this, vertex, fragment); + + sprite.renderable = false; + + /** + * Sprite mask + * @member {PIXI.Sprite} + */ + this.maskSprite = sprite; + + /** + * Mask matrix + * @member {PIXI.Matrix} + */ + this.maskMatrix = maskMatrix; + } + + if ( Filter ) SpriteMaskFilter.__proto__ = Filter; + SpriteMaskFilter.prototype = Object.create( Filter && Filter.prototype ); + SpriteMaskFilter.prototype.constructor = SpriteMaskFilter; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it. + */ + SpriteMaskFilter.prototype.apply = function apply (filterManager, input, output, clear) + { + var maskSprite = this.maskSprite; + var tex = this.maskSprite.texture; + + if (!tex.valid) + { + return; + } + if (!tex.transform) + { + // margin = 0.0, let it bleed a bit, shader code becomes easier + // assuming that atlas textures were made with 1-pixel padding + tex.transform = new TextureMatrix(tex, 0.0); + } + tex.transform.update(); + + this.uniforms.npmAlpha = tex.baseTexture.premultiplyAlpha ? 0.0 : 1.0; + this.uniforms.mask = tex; + // get _normalized sprite texture coords_ and convert them to _normalized atlas texture coords_ with `prepend` + this.uniforms.otherMatrix = filterManager.calculateSpriteMatrix(this.maskMatrix, maskSprite) + .prepend(tex.transform.mapCoord); + this.uniforms.alpha = maskSprite.worldAlpha; + this.uniforms.maskClamp = tex.transform.uClampFrame; + + filterManager.applyFilter(this, input, output, clear); + }; + + return SpriteMaskFilter; +}(Filter)); + +/** + * System plugin to the renderer to manage masks. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var MaskSystem = /*@__PURE__*/(function (System) { + function MaskSystem(renderer) + { + System.call(this, renderer); + + // TODO - we don't need both! + /** + * `true` if current pushed masked is scissor + * @member {boolean} + * @readonly + */ + this.scissor = false; + + /** + * Mask data + * @member {PIXI.Graphics} + * @readonly + */ + this.scissorData = null; + + /** + * Target to mask + * @member {PIXI.DisplayObject} + * @readonly + */ + this.scissorRenderTarget = null; + + /** + * Enable scissor + * @member {boolean} + * @readonly + */ + this.enableScissor = false; + + /** + * Pool of used sprite mask filters + * @member {PIXI.SpriteMaskFilter[]} + * @readonly + */ + this.alphaMaskPool = []; + + /** + * Current index of alpha mask pool + * @member {number} + * @default 0 + * @readonly + */ + this.alphaMaskIndex = 0; + } + + if ( System ) MaskSystem.__proto__ = System; + MaskSystem.prototype = Object.create( System && System.prototype ); + MaskSystem.prototype.constructor = MaskSystem; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.push = function push (target, maskData) + { + // TODO the root check means scissor rect will not + // be used on render textures more info here: + // https://github.com/pixijs/pixi.js/pull/3545 + + if (maskData.isSprite) + { + this.pushSpriteMask(target, maskData); + } + else if (this.enableScissor + && !this.scissor + && this.renderer._activeRenderTarget.root + && !this.renderer.stencil.stencilMaskStack.length + && maskData.isFastRect()) + { + var matrix = maskData.worldTransform; + + var rot = Math.atan2(matrix.b, matrix.a); + + // use the nearest degree! + rot = Math.round(rot * (180 / Math.PI)); + + if (rot % 90) + { + this.pushStencilMask(maskData); + } + else + { + this.pushScissorMask(target, maskData); + } + } + else + { + this.pushStencilMask(maskData); + } + }; + + /** + * Removes the last mask from the mask stack and doesn't return it. + * + * @param {PIXI.DisplayObject} target - Display Object to pop the mask from + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pop = function pop (target, maskData) + { + if (maskData.isSprite) + { + this.popSpriteMask(target, maskData); + } + else if (this.enableScissor && !this.renderer.stencil.stencilMaskStack.length) + { + this.popScissorMask(target, maskData); + } + else + { + this.popStencilMask(target, maskData); + } + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.RenderTexture} target - Display Object to push the sprite mask to + * @param {PIXI.Sprite} maskData - Sprite to be used as the mask + */ + MaskSystem.prototype.pushSpriteMask = function pushSpriteMask (target, maskData) + { + var alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex]; + + if (!alphaMaskFilter) + { + alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex] = [new SpriteMaskFilter(maskData)]; + } + + alphaMaskFilter[0].resolution = this.renderer.resolution; + alphaMaskFilter[0].maskSprite = maskData; + + var stashFilterArea = target.filterArea; + + target.filterArea = maskData.getBounds(true); + this.renderer.filter.push(target, alphaMaskFilter); + target.filterArea = stashFilterArea; + + this.alphaMaskIndex++; + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popSpriteMask = function popSpriteMask () + { + this.renderer.filter.pop(); + this.alphaMaskIndex--; + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushStencilMask = function pushStencilMask (maskData) + { + this.renderer.batch.flush(); + this.renderer.stencil.pushStencil(maskData); + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popStencilMask = function popStencilMask () + { + // this.renderer.currentRenderer.stop(); + this.renderer.stencil.popStencil(); + }; + + /** + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushScissorMask = function pushScissorMask (target, maskData) + { + maskData.renderable = true; + + var renderTarget = this.renderer._activeRenderTarget; + + var bounds = maskData.getBounds(); + + bounds.fit(renderTarget.size); + maskData.renderable = false; + + this.renderer.gl.enable(this.renderer.gl.SCISSOR_TEST); + + var resolution = this.renderer.resolution; + + this.renderer.gl.scissor( + bounds.x * resolution, + (renderTarget.root ? renderTarget.size.height - bounds.y - bounds.height : bounds.y) * resolution, + bounds.width * resolution, + bounds.height * resolution + ); + + this.scissorRenderTarget = renderTarget; + this.scissorData = maskData; + this.scissor = true; + }; + + /** + * Pop scissor mask + * + */ + MaskSystem.prototype.popScissorMask = function popScissorMask () + { + this.scissorRenderTarget = null; + this.scissorData = null; + this.scissor = false; + + // must be scissor! + var ref = this.renderer; + var gl = ref.gl; + + gl.disable(gl.SCISSOR_TEST); + }; + + return MaskSystem; +}(System)); + +/** + * System plugin to the renderer to manage stencils (used for masks). + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StencilSystem = /*@__PURE__*/(function (System) { + function StencilSystem(renderer) + { + System.call(this, renderer); + + /** + * The mask stack + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + } + + if ( System ) StencilSystem.__proto__ = System; + StencilSystem.prototype = Object.create( System && System.prototype ); + StencilSystem.prototype.constructor = StencilSystem; + + /** + * Changes the mask stack that is used by this System. + * + * @param {PIXI.Graphics[]} stencilMaskStack - The mask stack + */ + StencilSystem.prototype.setMaskStack = function setMaskStack (stencilMaskStack) + { + var gl = this.renderer.gl; + var curStackLen = this.stencilMaskStack.length; + + this.stencilMaskStack = stencilMaskStack; + if (stencilMaskStack.length !== curStackLen) + { + if (stencilMaskStack.length === 0) + { + gl.disable(gl.STENCIL_TEST); + } + else + { + gl.enable(gl.STENCIL_TEST); + this._useCurrent(); + } + } + }; + + /** + * Applies the Mask and adds it to the current stencil stack. @alvin + * + * @param {PIXI.Graphics} graphics - The mask + */ + StencilSystem.prototype.pushStencil = function pushStencil (graphics) + { + var gl = this.renderer.gl; + var prevMaskCount = this.stencilMaskStack.length; + + if (prevMaskCount === 0) + { + // force use stencil texture in current framebuffer + this.renderer.framebuffer.forceStencil(); + gl.enable(gl.STENCIL_TEST); + } + + this.stencilMaskStack.push(graphics); + + // Increment the reference stencil value where the new mask overlaps with the old ones. + gl.colorMask(false, false, false, false); + gl.stencilFunc(gl.EQUAL, prevMaskCount, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.INCR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + }; + + /** + * Removes the last mask from the stencil stack. @alvin + */ + StencilSystem.prototype.popStencil = function popStencil () + { + var gl = this.renderer.gl; + var graphics = this.stencilMaskStack.pop(); + + if (this.stencilMaskStack.length === 0) + { + // the stack is empty! + gl.disable(gl.STENCIL_TEST); + gl.clear(gl.STENCIL_BUFFER_BIT); + gl.clearStencil(0); + } + else + { + // Decrement the reference stencil value where the popped mask overlaps with the other ones + gl.colorMask(false, false, false, false); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.DECR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + } + }; + + /** + * Setup renderer to use the current stencil data. + * @private + */ + StencilSystem.prototype._useCurrent = function _useCurrent () + { + var gl = this.renderer.gl; + + gl.colorMask(true, true, true, true); + gl.stencilFunc(gl.EQUAL, this.stencilMaskStack.length, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.KEEP); + }; + + /** + * Fill 1s equal to the number of acitve stencil masks. + * @private + * @return {number} The bitwise mask. + */ + StencilSystem.prototype._getBitwiseMask = function _getBitwiseMask () + { + return (1 << this.stencilMaskStack.length) - 1; + }; + + /** + * Destroys the mask stack. + * + */ + StencilSystem.prototype.destroy = function destroy () + { + System.prototype.destroy.call(this, this); + + this.stencilMaskStack = null; + }; + + return StencilSystem; +}(System)); + +/** + * System plugin to the renderer to manage the projection matrix. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var ProjectionSystem = /*@__PURE__*/(function (System) { + function ProjectionSystem(renderer) + { + System.call(this, renderer); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = null; + + /** + * Default destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.defaultFrame = null; + + /** + * Project matrix + * @member {PIXI.Matrix} + * @readonly + */ + this.projectionMatrix = new Matrix(); + + /** + * A transform that will be appended to the projection matrix + * if null, nothing will be applied + * @member {PIXI.Matrix} + */ + this.transform = null; + } + + if ( System ) ProjectionSystem.__proto__ = System; + ProjectionSystem.prototype = Object.create( System && System.prototype ); + ProjectionSystem.prototype.constructor = ProjectionSystem; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.update = function update (destinationFrame, sourceFrame, resolution, root) + { + this.destinationFrame = destinationFrame || this.destinationFrame || this.defaultFrame; + this.sourceFrame = sourceFrame || this.sourceFrame || destinationFrame; + + this.calculateProjection(this.destinationFrame, this.sourceFrame, resolution, root); + + if (this.transform) + { + this.projectionMatrix.append(this.transform); + } + + var renderer = this.renderer; + + renderer.globalUniforms.uniforms.projectionMatrix = this.projectionMatrix; + renderer.globalUniforms.update(); + + // this will work for now + // but would be sweet to stick and even on the global uniforms.. + if (renderer.shader.shader) + { + renderer.shader.syncUniformGroup(renderer.shader.shader.uniforms.globals); + } + }; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.calculateProjection = function calculateProjection (destinationFrame, sourceFrame, resolution, root) + { + var pm = this.projectionMatrix; + + // I don't think we will need this line.. + // pm.identity(); + + if (!root) + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = -1 - (sourceFrame.y * pm.d); + } + else + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (-1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = 1 - (sourceFrame.y * pm.d); + } + }; + + /** + * Sets the transform of the active render target to the given matrix + * + * @param {PIXI.Matrix} matrix - The transformation matrix + */ + ProjectionSystem.prototype.setTransform = function setTransform ()// matrix) + { + // this._activeRenderTarget.transform = matrix; + }; + + return ProjectionSystem; +}(System)); + +var tempRect = new Rectangle(); + +/** + * System plugin to the renderer to manage render textures. + * + * Should be added after FramebufferSystem + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var RenderTextureSystem = /*@__PURE__*/(function (System) { + function RenderTextureSystem(renderer) + { + System.call(this, renderer); + + /** + * The clear background color as rgba + * @member {number[]} + */ + this.clearColor = renderer._backgroundColorRgba; + + // TODO move this property somewhere else! + /** + * List of masks for the StencilSystem + * @member {PIXI.Graphics[]} + * @readonly + */ + this.defaultMaskStack = []; + + // empty render texture? + /** + * Render texture + * @member {PIXI.RenderTexture} + * @readonly + */ + this.current = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = new Rectangle(); + } + + if ( System ) RenderTextureSystem.__proto__ = System; + RenderTextureSystem.prototype = Object.create( System && System.prototype ); + RenderTextureSystem.prototype.constructor = RenderTextureSystem; + + /** + * Bind the current render texture + * @param {PIXI.RenderTexture} [renderTexture] - RenderTexture to bind, by default its `null`, the screen + * @param {PIXI.Rectangle} [sourceFrame] - part of screen that is mapped to the renderTexture + * @param {PIXI.Rectangle} [destinationFrame] - part of renderTexture, by default it has the same size as sourceFrame + */ + RenderTextureSystem.prototype.bind = function bind (renderTexture, sourceFrame, destinationFrame) + { + if ( renderTexture === void 0 ) renderTexture = null; + + this.current = renderTexture; + + var renderer = this.renderer; + + var resolution; + + if (renderTexture) + { + var baseTexture = renderTexture.baseTexture; + + resolution = baseTexture.resolution; + + if (!destinationFrame) + { + tempRect.width = baseTexture.realWidth; + tempRect.height = baseTexture.realHeight; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + this.renderer.framebuffer.bind(baseTexture.framebuffer, destinationFrame); + + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, false); + this.renderer.stencil.setMaskStack(baseTexture.stencilMaskStack); + } + else + { + resolution = this.renderer.resolution; + + // TODO these validation checks happen deeper down.. + // thing they can be avoided.. + if (!destinationFrame) + { + tempRect.width = renderer.width; + tempRect.height = renderer.height; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + renderer.framebuffer.bind(null, destinationFrame); + + // TODO store this.. + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, true); + this.renderer.stencil.setMaskStack(this.defaultMaskStack); + } + + this.sourceFrame.copyFrom(sourceFrame); + + this.destinationFrame.x = destinationFrame.x / resolution; + this.destinationFrame.y = destinationFrame.y / resolution; + + this.destinationFrame.width = destinationFrame.width / resolution; + this.destinationFrame.height = destinationFrame.height / resolution; + + if (sourceFrame === destinationFrame) + { + this.sourceFrame.copyFrom(this.destinationFrame); + } + }; + + /** + * Erases the render texture and fills the drawing area with a colour + * + * @param {number[]} [clearColor] - The color as rgba, default to use the renderer backgroundColor + * @return {PIXI.Renderer} Returns itself. + */ + RenderTextureSystem.prototype.clear = function clear (clearColor) + { + if (this.current) + { + clearColor = clearColor || this.current.baseTexture.clearColor; + } + else + { + clearColor = clearColor || this.clearColor; + } + + this.renderer.framebuffer.clear(clearColor[0], clearColor[1], clearColor[2], clearColor[3]); + }; + + RenderTextureSystem.prototype.resize = function resize ()// screenWidth, screenHeight) + { + // resize the root only! + this.bind(null); + }; + + /** + * Resets renderTexture state + */ + RenderTextureSystem.prototype.reset = function reset () + { + this.bind(null); + }; + + return RenderTextureSystem; +}(System)); + +/** + * Helper class to create a WebGL Program + * + * @class + * @memberof PIXI + */ +var GLProgram = function GLProgram(program, uniformData) +{ + /** + * The shader program + * + * @member {WebGLProgram} + */ + this.program = program; + + /** + * holds the uniform data which contains uniform locations + * and current uniform values used for caching and preventing unneeded GPU commands + * @member {Object} + */ + this.uniformData = uniformData; + + /** + * uniformGroups holds the various upload functions for the shader. Each uniform group + * and program have a unique upload function generated. + * @member {Object} + */ + this.uniformGroups = {}; +}; + +/** + * Destroys this program + */ +GLProgram.prototype.destroy = function destroy () +{ + this.uniformData = null; + this.uniformGroups = null; + this.program = null; +}; + +var UID$4 = 0; + +/** + * System plugin to the renderer to manage shaders. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var ShaderSystem = /*@__PURE__*/(function (System) { + function ShaderSystem(renderer) + { + System.call(this, renderer); + + // Validation check that this environment support `new Function` + this.systemCheck(); + + /** + * The current WebGL rendering context + * + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.shader = null; + this.program = null; + + /** + * Cache to holds the generated functions. Stored against UniformObjects unique signature + * @type {Object} + * @private + */ + this.cache = {}; + + this.id = UID$4++; + } + + if ( System ) ShaderSystem.__proto__ = System; + ShaderSystem.prototype = Object.create( System && System.prototype ); + ShaderSystem.prototype.constructor = ShaderSystem; + + /** + * Overrideable function by `@pixi/unsafe-eval` to silence + * throwing an error if platform doesn't support unsafe-evals. + * + * @private + */ + ShaderSystem.prototype.systemCheck = function systemCheck () + { + if (!unsafeEvalSupported()) + { + throw new Error('Current environment does not allow unsafe-eval, ' + + 'please use @pixi/unsafe-eval module to enable support.'); + } + }; + + ShaderSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.reset(); + }; + + /** + * Changes the current shader to the one given in parameter + * + * @param {PIXI.Shader} shader - the new shader + * @param {boolean} dontSync - false if the shader should automatically sync its uniforms. + * @returns {PIXI.GLProgram} the glProgram that belongs to the shader. + */ + ShaderSystem.prototype.bind = function bind (shader, dontSync) + { + shader.uniforms.globals = this.renderer.globalUniforms; + + var program = shader.program; + var glProgram = program.glPrograms[this.renderer.CONTEXT_UID] || this.generateShader(shader); + + this.shader = shader; + + // TODO - some current Pixi plugins bypass this.. so it not safe to use yet.. + if (this.program !== program) + { + this.program = program; + this.gl.useProgram(glProgram.program); + } + + if (!dontSync) + { + this.syncUniformGroup(shader.uniformGroup); + } + + return glProgram; + }; + + /** + * Uploads the uniforms values to the currently bound shader. + * + * @param {object} uniforms - the uniforms values that be applied to the current shader + */ + ShaderSystem.prototype.setUniforms = function setUniforms (uniforms) + { + var shader = this.shader.program; + var glProgram = shader.glPrograms[this.renderer.CONTEXT_UID]; + + shader.syncUniforms(glProgram.uniformData, uniforms, this.renderer); + }; + + ShaderSystem.prototype.syncUniformGroup = function syncUniformGroup (group) + { + var glProgram = this.getglProgram(); + + if (!group.static || group.dirtyId !== glProgram.uniformGroups[group.id]) + { + glProgram.uniformGroups[group.id] = group.dirtyId; + + this.syncUniforms(group, glProgram); + } + }; + + /** + * Overrideable by the @pixi/unsafe-eval package to use static + * syncUnforms instead. + * + * @private + */ + ShaderSystem.prototype.syncUniforms = function syncUniforms (group, glProgram) + { + var syncFunc = group.syncUniforms[this.shader.program.id] || this.createSyncGroups(group); + + syncFunc(glProgram.uniformData, group.uniforms, this.renderer); + }; + + ShaderSystem.prototype.createSyncGroups = function createSyncGroups (group) + { + var id = this.getSignature(group, this.shader.program.uniformData); + + if (!this.cache[id]) + { + this.cache[id] = generateUniformsSync(group, this.shader.program.uniformData); + } + + group.syncUniforms[this.shader.program.id] = this.cache[id]; + + return group.syncUniforms[this.shader.program.id]; + }; + + /** + * Takes a uniform group and data and generates a unique signature for them. + * + * @param {PIXI.UniformGroup} group the uniform group to get signature of + * @param {Object} uniformData uniform information generated by the shader + * @returns {String} Unique signature of the uniform group + * @private + */ + ShaderSystem.prototype.getSignature = function getSignature (group, uniformData) + { + var uniforms = group.uniforms; + + var strings = []; + + for (var i in uniforms) + { + strings.push(i); + + if (uniformData[i]) + { + strings.push(uniformData[i].type); + } + } + + return strings.join('-'); + }; + + /** + * Returns the underlying GLShade rof the currently bound shader. + * This can be handy for when you to have a little more control over the setting of your uniforms. + * + * @return {PIXI.GLProgram} the glProgram for the currently bound Shader for this context + */ + ShaderSystem.prototype.getglProgram = function getglProgram () + { + if (this.shader) + { + return this.shader.program.glPrograms[this.renderer.CONTEXT_UID]; + } + + return null; + }; + + /** + * Generates a glProgram version of the Shader provided. + * + * @private + * @param {PIXI.Shader} shader the shader that the glProgram will be based on. + * @return {PIXI.GLProgram} A shiny new glProgram! + */ + ShaderSystem.prototype.generateShader = function generateShader (shader) + { + var gl = this.gl; + + var program = shader.program; + + var attribMap = {}; + + for (var i in program.attributeData) + { + attribMap[i] = program.attributeData[i].location; + } + + var shaderProgram = compileProgram(gl, program.vertexSrc, program.fragmentSrc, attribMap); + var uniformData = {}; + + for (var i$1 in program.uniformData) + { + var data = program.uniformData[i$1]; + + uniformData[i$1] = { + location: gl.getUniformLocation(shaderProgram, i$1), + value: defaultValue(data.type, data.size), + }; + } + + var glProgram = new GLProgram(shaderProgram, uniformData); + + program.glPrograms[this.renderer.CONTEXT_UID] = glProgram; + + return glProgram; + }; + + /** + * Resets ShaderSystem state, does not affect WebGL state + */ + ShaderSystem.prototype.reset = function reset () + { + this.program = null; + this.shader = null; + }; + + /** + * Destroys this System and removes all its textures + */ + ShaderSystem.prototype.destroy = function destroy () + { + // TODO implement destroy method for ShaderSystem + this.destroyed = true; + }; + + return ShaderSystem; +}(System)); + +/** + * Maps gl blend combinations to WebGL. + * + * @memberof PIXI + * @function mapWebGLBlendModesToPixi + * @private + * @param {WebGLRenderingContext} gl - The rendering context. + * @param {number[][]} [array=[]] - The array to output into. + * @return {number[][]} Mapped modes. + */ +function mapWebGLBlendModesToPixi(gl, array) +{ + if ( array === void 0 ) array = []; + + // TODO - premultiply alpha would be different. + // add a boolean for that! + array[BLEND_MODES.NORMAL] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD] = [gl.ONE, gl.ONE]; + array[BLEND_MODES.MULTIPLY] = [gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SCREEN] = [gl.ONE, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.OVERLAY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DARKEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LIGHTEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_DODGE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_BURN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HARD_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SOFT_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DIFFERENCE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.EXCLUSION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HUE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SATURATION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LUMINOSITY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.NONE] = [0, 0]; + + // not-premultiplied blend modes + array[BLEND_MODES.NORMAL_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD_NPM] = [gl.SRC_ALPHA, gl.ONE, gl.ONE, gl.ONE]; + array[BLEND_MODES.SCREEN_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + + // composite operations + array[BLEND_MODES.SRC_IN] = [gl.DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_OUT] = [gl.ONE_MINUS_DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_ATOP] = [gl.DST_ALPHA, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_OVER] = [gl.ONE_MINUS_DST_ALPHA, gl.ONE]; + array[BLEND_MODES.DST_IN] = [gl.ZERO, gl.SRC_ALPHA]; + array[BLEND_MODES.DST_OUT] = [gl.ZERO, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_ATOP] = [gl.ONE_MINUS_DST_ALPHA, gl.SRC_ALPHA]; + + // SUBTRACT from flash + array[BLEND_MODES.SUBTRACT] = [gl.ONE, gl.ONE, gl.ONE, gl.ONE, gl.FUNC_REVERSE_SUBTRACT, gl.FUNC_ADD]; + + return array; +} + +var BLEND$1 = 0; +var OFFSET$1 = 1; +var CULLING$1 = 2; +var DEPTH_TEST$1 = 3; +var WINDING$1 = 4; + +/** + * System plugin to the renderer to manage WebGL state machines. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StateSystem = /*@__PURE__*/(function (System) { + function StateSystem(renderer) + { + System.call(this, renderer); + + /** + * GL context + * @member {WebGLRenderingContext} + * @readonly + */ + this.gl = null; + + /** + * State ID + * @member {number} + * @readonly + */ + this.stateId = 0; + + /** + * Polygon offset + * @member {number} + * @readonly + */ + this.polygonOffset = 0; + + /** + * Blend mode + * @member {number} + * @default PIXI.BLEND_MODES.NONE + * @readonly + */ + this.blendMode = BLEND_MODES.NONE; + + /** + * Whether current blend equation is different + * @member {boolean} + * @protected + */ + this._blendEq = false; + + /** + * Collection of calls + * @member {function[]} + * @readonly + */ + this.map = []; + + // map functions for when we set state.. + this.map[BLEND$1] = this.setBlend; + this.map[OFFSET$1] = this.setOffset; + this.map[CULLING$1] = this.setCullFace; + this.map[DEPTH_TEST$1] = this.setDepthTest; + this.map[WINDING$1] = this.setFrontFace; + + /** + * Collection of check calls + * @member {function[]} + * @readonly + */ + this.checks = []; + + /** + * Default WebGL State + * @member {PIXI.State} + * @readonly + */ + this.defaultState = new State(); + this.defaultState.blend = true; + this.defaultState.depth = true; + } + + if ( System ) StateSystem.__proto__ = System; + StateSystem.prototype = Object.create( System && System.prototype ); + StateSystem.prototype.constructor = StateSystem; + + StateSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + + this.blendModes = mapWebGLBlendModesToPixi(gl); + + this.set(this.defaultState); + + this.reset(); + }; + + /** + * Sets the current state + * + * @param {*} state - The state to set. + */ + StateSystem.prototype.set = function set (state) + { + state = state || this.defaultState; + + // TODO maybe to an object check? ( this.state === state )? + if (this.stateId !== state.data) + { + var diff = this.stateId ^ state.data; + var i = 0; + + // order from least to most common + while (diff) + { + if (diff & 1) + { + // state change! + this.map[i].call(this, !!(state.data & (1 << i))); + } + + diff = diff >> 1; + i++; + } + + this.stateId = state.data; + } + + // based on the above settings we check for specific modes.. + // for example if blend is active we check and set the blend modes + // or of polygon offset is active we check the poly depth. + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + }; + + /** + * Sets the state, when previous state is unknown + * + * @param {*} state - The state to set + */ + StateSystem.prototype.forceState = function forceState (state) + { + state = state || this.defaultState; + for (var i = 0; i < this.map.length; i++) + { + this.map[i].call(this, !!(state.data & (1 << i))); + } + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + + this.stateId = state.data; + }; + + /** + * Enables or disabled blending. + * + * @param {boolean} value - Turn on or off webgl blending. + */ + StateSystem.prototype.setBlend = function setBlend (value) + { + this.updateCheck(StateSystem.checkBlendMode, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.BLEND); + }; + + /** + * Enables or disable polygon offset fill + * + * @param {boolean} value - Turn on or off webgl polygon offset testing. + */ + StateSystem.prototype.setOffset = function setOffset (value) + { + this.updateCheck(StateSystem.checkPolygonOffset, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.POLYGON_OFFSET_FILL); + }; + + /** + * Sets whether to enable or disable depth test. + * + * @param {boolean} value - Turn on or off webgl depth testing. + */ + StateSystem.prototype.setDepthTest = function setDepthTest (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.DEPTH_TEST); + }; + + /** + * Sets whether to enable or disable cull face. + * + * @param {boolean} value - Turn on or off webgl cull face. + */ + StateSystem.prototype.setCullFace = function setCullFace (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.CULL_FACE); + }; + + /** + * Sets the gl front face. + * + * @param {boolean} value - true is clockwise and false is counter-clockwise + */ + StateSystem.prototype.setFrontFace = function setFrontFace (value) + { + this.gl.frontFace(this.gl[value ? 'CW' : 'CCW']); + }; + + /** + * Sets the blend mode. + * + * @param {number} value - The blend mode to set to. + */ + StateSystem.prototype.setBlendMode = function setBlendMode (value) + { + if (value === this.blendMode) + { + return; + } + + this.blendMode = value; + + var mode = this.blendModes[value]; + var gl = this.gl; + + if (mode.length === 2) + { + gl.blendFunc(mode[0], mode[1]); + } + else + { + gl.blendFuncSeparate(mode[0], mode[1], mode[2], mode[3]); + } + if (mode.length === 6) + { + this._blendEq = true; + gl.blendEquationSeparate(mode[4], mode[5]); + } + else if (this._blendEq) + { + this._blendEq = false; + gl.blendEquationSeparate(gl.FUNC_ADD, gl.FUNC_ADD); + } + }; + + /** + * Sets the polygon offset. + * + * @param {number} value - the polygon offset + * @param {number} scale - the polygon offset scale + */ + StateSystem.prototype.setPolygonOffset = function setPolygonOffset (value, scale) + { + this.gl.polygonOffset(value, scale); + }; + + // used + /** + * Resets all the logic and disables the vaos + */ + StateSystem.prototype.reset = function reset () + { + this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false); + + this.forceState(0); + + this._blendEq = true; + this.blendMode = -1; + this.setBlendMode(0); + }; + + /** + * checks to see which updates should be checked based on which settings have been activated. + * For example, if blend is enabled then we should check the blend modes each time the state is changed + * or if polygon fill is activated then we need to check if the polygon offset changes. + * The idea is that we only check what we have too. + * + * @param {Function} func the checking function to add or remove + * @param {boolean} value should the check function be added or removed. + */ + StateSystem.prototype.updateCheck = function updateCheck (func, value) + { + var index = this.checks.indexOf(func); + + if (value && index === -1) + { + this.checks.push(func); + } + else if (!value && index !== -1) + { + this.checks.splice(index, 1); + } + }; + + /** + * A private little wrapper function that we call to check the blend mode. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkBlendMode = function checkBlendMode (system, state) + { + system.setBlendMode(state.blendMode); + }; + + /** + * A private little wrapper function that we call to check the polygon offset. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkPolygonOffset = function checkPolygonOffset (system, state) + { + system.setPolygonOffset(state.polygonOffset, 0); + }; + + return StateSystem; +}(System)); + +/** + * System plugin to the renderer to manage texture garbage collection on the GPU, + * ensuring that it does not get clogged up with textures that are no longer being used. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var TextureGCSystem = /*@__PURE__*/(function (System) { + function TextureGCSystem(renderer) + { + System.call(this, renderer); + + /** + * Count + * @member {number} + * @readonly + */ + this.count = 0; + + /** + * Check count + * @member {number} + * @readonly + */ + this.checkCount = 0; + + /** + * Maximum idle time, in seconds + * @member {number} + * @see PIXI.settings.GC_MAX_IDLE + */ + this.maxIdle = settings.GC_MAX_IDLE; + + /** + * Maximum number of item to check + * @member {number} + * @see PIXI.settings.GC_MAX_CHECK_COUNT + */ + this.checkCountMax = settings.GC_MAX_CHECK_COUNT; + + /** + * Current garabage collection mode + * @member {PIXI.GC_MODES} + * @see PIXI.settings.GC_MODE + */ + this.mode = settings.GC_MODE; + } + + if ( System ) TextureGCSystem.__proto__ = System; + TextureGCSystem.prototype = Object.create( System && System.prototype ); + TextureGCSystem.prototype.constructor = TextureGCSystem; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.postrender = function postrender () + { + this.count++; + + if (this.mode === GC_MODES.MANUAL) + { + return; + } + + this.checkCount++; + + if (this.checkCount > this.checkCountMax) + { + this.checkCount = 0; + + this.run(); + } + }; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.run = function run () + { + var tm = this.renderer.texture; + var managedTextures = tm.managedTextures; + var wasRemoved = false; + + for (var i = 0; i < managedTextures.length; i++) + { + var texture = managedTextures[i]; + + // only supports non generated textures at the moment! + if (!texture.framebuffer && this.count - texture.touched > this.maxIdle) + { + tm.destroyTexture(texture, true); + managedTextures[i] = null; + wasRemoved = true; + } + } + + if (wasRemoved) + { + var j = 0; + + for (var i$1 = 0; i$1 < managedTextures.length; i$1++) + { + if (managedTextures[i$1] !== null) + { + managedTextures[j++] = managedTextures[i$1]; + } + } + + managedTextures.length = j; + } + }; + + /** + * Removes all the textures within the specified displayObject and its children from the GPU + * + * @param {PIXI.DisplayObject} displayObject - the displayObject to remove the textures from. + */ + TextureGCSystem.prototype.unload = function unload (displayObject) + { + var tm = this.renderer.textureSystem; + + // only destroy non generated textures + if (displayObject._texture && displayObject._texture._glRenderTargets) + { + tm.destroyTexture(displayObject._texture); + } + + for (var i = displayObject.children.length - 1; i >= 0; i--) + { + this.unload(displayObject.children[i]); + } + }; + + return TextureGCSystem; +}(System)); + +/** + * Internal texture for WebGL context + * @class + * @memberof PIXI + */ +var GLTexture = function GLTexture(texture) +{ + /** + * The WebGL texture + * @member {WebGLTexture} + */ + this.texture = texture; + + /** + * Width of texture that was used in texImage2D + * @member {number} + */ + this.width = -1; + + /** + * Height of texture that was used in texImage2D + * @member {number} + */ + this.height = -1; + + /** + * Texture contents dirty flag + * @member {number} + */ + this.dirtyId = -1; + + /** + * Texture style dirty flag + * @member {number} + */ + this.dirtyStyleId = -1; + + /** + * Whether mip levels has to be generated + * @member {boolean} + */ + this.mipmap = false; + + /** + * WrapMode copied from baseTexture + * @member {number} + */ + this.wrapMode = 33071; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.type = 6408; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.internalFormat = 5121; +}; + +/** + * System plugin to the renderer to manage textures. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var TextureSystem = /*@__PURE__*/(function (System) { + function TextureSystem(renderer) + { + System.call(this, renderer); + + // TODO set to max textures... + /** + * Bound textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.boundTextures = []; + /** + * Current location + * @member {number} + * @readonly + */ + this.currentLocation = -1; + + /** + * List of managed textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.managedTextures = []; + + /** + * Did someone temper with textures state? We'll overwrite them when we need to unbind something. + * @member {boolean} + * @private + */ + this._unknownBoundTextures = false; + + /** + * BaseTexture value that shows that we don't know what is bound + * @member {PIXI.BaseTexture} + * @readonly + */ + this.unknownTexture = new BaseTexture(); + } + + if ( System ) TextureSystem.__proto__ = System; + TextureSystem.prototype = Object.create( System && System.prototype ); + TextureSystem.prototype.constructor = TextureSystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + TextureSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + this.webGLVersion = this.renderer.context.webGLVersion; + + var maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS); + + this.boundTextures.length = maxTextures; + + for (var i = 0; i < maxTextures; i++) + { + this.boundTextures[i] = null; + } + + // TODO move this.. to a nice make empty textures class.. + this.emptyTextures = {}; + + var emptyTexture2D = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_2D, emptyTexture2D.texture); + gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4)); + + this.emptyTextures[gl.TEXTURE_2D] = emptyTexture2D; + this.emptyTextures[gl.TEXTURE_CUBE_MAP] = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_CUBE_MAP, this.emptyTextures[gl.TEXTURE_CUBE_MAP].texture); + + for (var i$1 = 0; i$1 < 6; i$1++) + { + gl.texImage2D(gl.TEXTURE_CUBE_MAP_POSITIVE_X + i$1, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, null); + } + + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + + for (var i$2 = 0; i$2 < this.boundTextures.length; i$2++) + { + this.bind(null, i$2); + } + }; + + /** + * Bind a texture to a specific location + * + * If you want to unbind something, please use `unbind(texture)` instead of `bind(null, textureLocation)` + * + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + * @param {number} [location=0] - Location to bind at + */ + TextureSystem.prototype.bind = function bind (texture, location) + { + if ( location === void 0 ) location = 0; + + var ref = this; + var gl = ref.gl; + + if (texture) + { + texture = texture.baseTexture || texture; + + if (texture.valid) + { + texture.touched = this.renderer.textureGC.count; + + var glTexture = texture._glTextures[this.CONTEXT_UID] || this.initTexture(texture); + + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + if (this.boundTextures[location] !== texture) + { + gl.bindTexture(texture.target, glTexture.texture); + } + + if (glTexture.dirtyId !== texture.dirtyId) + { + this.updateTexture(texture); + } + + this.boundTextures[location] = texture; + } + } + else + { + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[gl.TEXTURE_2D].texture); + this.boundTextures[location] = null; + } + }; + + /** + * Resets texture location and bound textures + * + * Actual `bind(null, i)` calls will be performed at next `unbind()` call + */ + TextureSystem.prototype.reset = function reset () + { + this._unknownBoundTextures = true; + this.currentLocation = -1; + + for (var i = 0; i < this.boundTextures.length; i++) + { + this.boundTextures[i] = this.unknownTexture; + } + }; + + /** + * Unbind a texture + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + */ + TextureSystem.prototype.unbind = function unbind (texture) + { + var ref = this; + var gl = ref.gl; + var boundTextures = ref.boundTextures; + + if (this._unknownBoundTextures) + { + this._unknownBoundTextures = false; + // someone changed webGL state, + // we have to be sure that our texture does not appear in multi-texture renderer samplers + for (var i = 0; i < boundTextures.length; i++) + { + if (boundTextures[i] === this.unknownTexture) + { + this.bind(null, i); + } + } + } + + for (var i$1 = 0; i$1 < boundTextures.length; i$1++) + { + if (boundTextures[i$1] === texture) + { + if (this.currentLocation !== i$1) + { + gl.activeTexture(gl.TEXTURE0 + i$1); + this.currentLocation = i$1; + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[texture.target].texture); + boundTextures[i$1] = null; + } + } + }; + + /** + * Initialize a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.initTexture = function initTexture (texture) + { + var glTexture = new GLTexture(this.gl.createTexture()); + + // guarantee an update.. + glTexture.dirtyId = -1; + + texture._glTextures[this.CONTEXT_UID] = glTexture; + + this.managedTextures.push(texture); + texture.on('dispose', this.destroyTexture, this); + + return glTexture; + }; + + TextureSystem.prototype.initTextureType = function initTextureType (texture, glTexture) + { + glTexture.internalFormat = texture.format; + glTexture.type = texture.type; + if (this.webGLVersion !== 2) + { + return; + } + var gl = this.renderer.gl; + + if (texture.type === gl.FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA32F; + } + // that's WebGL1 HALF_FLOAT_OES + // we have to convert it to WebGL HALF_FLOAT + if (texture.type === TYPES.HALF_FLOAT) + { + glTexture.type = gl.HALF_FLOAT; + } + if (glTexture.type === gl.HALF_FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA16F; + } + }; + + /** + * Update a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.updateTexture = function updateTexture (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + var renderer = this.renderer; + + this.initTextureType(texture, glTexture); + + if (texture.resource && texture.resource.upload(renderer, texture, glTexture)) + ; + else + { + // default, renderTexture-like logic + var width = texture.realWidth; + var height = texture.realHeight; + var gl = renderer.gl; + + if (glTexture.width !== width + || glTexture.height !== height + || glTexture.dirtyId < 0) + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(texture.target, 0, + glTexture.internalFormat, + width, + height, + 0, + texture.format, + glTexture.type, + null); + } + } + + // lets only update what changes.. + if (texture.dirtyStyleId !== glTexture.dirtyStyleId) + { + this.updateTextureStyle(texture); + } + glTexture.dirtyId = texture.dirtyId; + }; + + /** + * Deletes the texture from WebGL + * + * @private + * @param {PIXI.BaseTexture|PIXI.Texture} texture - the texture to destroy + * @param {boolean} [skipRemove=false] - Whether to skip removing the texture from the TextureManager. + */ + TextureSystem.prototype.destroyTexture = function destroyTexture (texture, skipRemove) + { + var ref = this; + var gl = ref.gl; + + texture = texture.baseTexture || texture; + + if (texture._glTextures[this.CONTEXT_UID]) + { + this.unbind(texture); + + gl.deleteTexture(texture._glTextures[this.CONTEXT_UID].texture); + texture.off('dispose', this.destroyTexture, this); + + delete texture._glTextures[this.CONTEXT_UID]; + + if (!skipRemove) + { + var i = this.managedTextures.indexOf(texture); + + if (i !== -1) + { + removeItems(this.managedTextures, i, 1); + } + } + } + }; + + /** + * Update texture style such as mipmap flag + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + */ + TextureSystem.prototype.updateTextureStyle = function updateTextureStyle (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + if ((texture.mipmap === MIPMAP_MODES.POW2 || this.webGLVersion !== 2) && !texture.isPowerOfTwo) + { + glTexture.mipmap = 0; + glTexture.wrapMode = WRAP_MODES.CLAMP; + } + else + { + glTexture.mipmap = texture.mipmap >= 1; + glTexture.wrapMode = texture.wrapMode; + } + + if (texture.resource && texture.resource.style(this.renderer, texture, glTexture)) + ; + else + { + this.setStyle(texture, glTexture); + } + + glTexture.dirtyStyleId = texture.dirtyStyleId; + }; + + /** + * Set style for texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + * @param {PIXI.GLTexture} glTexture + */ + TextureSystem.prototype.setStyle = function setStyle (texture, glTexture) + { + var gl = this.gl; + + if (glTexture.mipmap) + { + gl.generateMipmap(texture.target); + } + + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_S, glTexture.wrapMode); + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_T, glTexture.wrapMode); + + if (glTexture.mipmap) + { + /* eslint-disable max-len */ + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR_MIPMAP_LINEAR : gl.NEAREST_MIPMAP_NEAREST); + /* eslint-disable max-len */ + + var anisotropicExt = this.renderer.context.extensions.anisotropicFiltering; + + if (anisotropicExt && texture.anisotropicLevel > 0 && texture.scaleMode === SCALE_MODES.LINEAR) + { + var level = Math.min(texture.anisotropicLevel, gl.getParameter(anisotropicExt.MAX_TEXTURE_MAX_ANISOTROPY_EXT)); + + gl.texParameterf(texture.target, anisotropicExt.TEXTURE_MAX_ANISOTROPY_EXT, level); + } + } + else + { + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + } + + gl.texParameteri(texture.target, gl.TEXTURE_MAG_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + }; + + return TextureSystem; +}(System)); + +var tempMatrix = new Matrix(); + +/** + * The AbstractRenderer is the base for a PixiJS Renderer. It is extended by the {@link PIXI.CanvasRenderer} + * and {@link PIXI.Renderer} which can be used for rendering a PixiJS scene. + * + * @abstract + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var AbstractRenderer = /*@__PURE__*/(function (EventEmitter) { + function AbstractRenderer(system, options) + { + EventEmitter.call(this); + + // Add the default render options + options = Object.assign({}, settings.RENDER_OPTIONS, options); + + // Deprecation notice for renderer roundPixels option + if (options.roundPixels) + { + settings.ROUND_PIXELS = options.roundPixels; + deprecation('5.0.0', 'Renderer roundPixels option is deprecated, please use PIXI.settings.ROUND_PIXELS', 2); + } + + /** + * The supplied constructor options. + * + * @member {Object} + * @readOnly + */ + this.options = options; + + /** + * The type of the renderer. + * + * @member {number} + * @default PIXI.RENDERER_TYPE.UNKNOWN + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.UNKNOWN; + + /** + * Measurements of the screen. (0, 0, screenWidth, screenHeight). + * + * Its safe to use as filterArea or hitArea for the whole stage. + * + * @member {PIXI.Rectangle} + */ + this.screen = new Rectangle(0, 0, options.width, options.height); + + /** + * The canvas element that everything is drawn to. + * + * @member {HTMLCanvasElement} + */ + this.view = options.view || document.createElement('canvas'); + + /** + * The resolution / device pixel ratio of the renderer. + * + * @member {number} + * @default 1 + */ + this.resolution = options.resolution || settings.RESOLUTION; + + /** + * Whether the render view is transparent. + * + * @member {boolean} + */ + this.transparent = options.transparent; + + /** + * Whether CSS dimensions of canvas view should be resized to screen dimensions automatically. + * + * @member {boolean} + */ + this.autoDensity = options.autoDensity || options.autoResize || false; + // autoResize is deprecated, provides fallback support + + /** + * The value of the preserveDrawingBuffer flag affects whether or not the contents of + * the stencil buffer is retained after rendering. + * + * @member {boolean} + */ + this.preserveDrawingBuffer = options.preserveDrawingBuffer; + + /** + * This sets if the CanvasRenderer will clear the canvas or not before the new render pass. + * If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every + * frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect + * to clear the canvas every frame. Disable this by setting this to false. For example, if + * your game has a canvas filling background image you often don't need this set. + * + * @member {boolean} + * @default + */ + this.clearBeforeRender = options.clearBeforeRender; + + /** + * The background color as a number. + * + * @member {number} + * @protected + */ + this._backgroundColor = 0x000000; + + /** + * The background color as an [R, G, B] array. + * + * @member {number[]} + * @protected + */ + this._backgroundColorRgba = [0, 0, 0, 0]; + + /** + * The background color as a string. + * + * @member {string} + * @protected + */ + this._backgroundColorString = '#000000'; + + this.backgroundColor = options.backgroundColor || this._backgroundColor; // run bg color setter + + /** + * This temporary display object used as the parent of the currently being rendered item. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._tempDisplayObjectParent = new Container(); + + /** + * The last root object that the renderer tried to render. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._lastObjectRendered = this._tempDisplayObjectParent; + + /** + * Collection of plugins. + * @readonly + * @member {object} + */ + this.plugins = {}; + } + + if ( EventEmitter ) AbstractRenderer.__proto__ = EventEmitter; + AbstractRenderer.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + AbstractRenderer.prototype.constructor = AbstractRenderer; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },backgroundColor: { configurable: true } }; + + /** + * Initialize the plugins. + * + * @protected + * @param {object} staticMap - The dictionary of statically saved plugins. + */ + AbstractRenderer.prototype.initPlugins = function initPlugins (staticMap) + { + for (var o in staticMap) + { + this.plugins[o] = new (staticMap[o])(this); + } + }; + + /** + * Same as view.width, actual number of pixels in the canvas by horizontal. + * + * @member {number} + * @readonly + * @default 800 + */ + prototypeAccessors.width.get = function () + { + return this.view.width; + }; + + /** + * Same as view.height, actual number of pixels in the canvas by vertical. + * + * @member {number} + * @readonly + * @default 600 + */ + prototypeAccessors.height.get = function () + { + return this.view.height; + }; + + /** + * Resizes the screen and canvas to the specified width and height. + * Canvas dimensions are multiplied by resolution. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + AbstractRenderer.prototype.resize = function resize (screenWidth, screenHeight) + { + this.screen.width = screenWidth; + this.screen.height = screenHeight; + + this.view.width = screenWidth * this.resolution; + this.view.height = screenHeight * this.resolution; + + if (this.autoDensity) + { + this.view.style.width = screenWidth + "px"; + this.view.style.height = screenHeight + "px"; + } + }; + + /** + * Useful function that returns a texture of the display object that can then be used to create sprites + * This can be quite useful if your displayObject is complicated and needs to be reused multiple times. + * + * @param {PIXI.DisplayObject} displayObject - The displayObject the object will be generated from. + * @param {number} scaleMode - Should be one of the scaleMode consts. + * @param {number} resolution - The resolution / device pixel ratio of the texture being generated. + * @param {PIXI.Rectangle} [region] - The region of the displayObject, that shall be rendered, + * if no region is specified, defaults to the local bounds of the displayObject. + * @return {PIXI.RenderTexture} A texture of the graphics object. + */ + AbstractRenderer.prototype.generateTexture = function generateTexture (displayObject, scaleMode, resolution, region) + { + region = region || displayObject.getLocalBounds(); + + // minimum texture size is 1x1, 0x0 will throw an error + if (region.width === 0) { region.width = 1; } + if (region.height === 0) { region.height = 1; } + + var renderTexture = RenderTexture.create(region.width | 0, region.height | 0, scaleMode, resolution); + + tempMatrix.tx = -region.x; + tempMatrix.ty = -region.y; + + this.render(displayObject, renderTexture, false, tempMatrix, !!displayObject.parent); + + return renderTexture; + }; + + /** + * Removes everything from the renderer and optionally removes the Canvas DOM element. + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + */ + AbstractRenderer.prototype.destroy = function destroy (removeView) + { + for (var o in this.plugins) + { + this.plugins[o].destroy(); + this.plugins[o] = null; + } + + if (removeView && this.view.parentNode) + { + this.view.parentNode.removeChild(this.view); + } + + this.plugins = null; + + this.type = RENDERER_TYPE.UNKNOWN; + + this.view = null; + + this.screen = null; + + this.resolution = 0; + + this.transparent = false; + + this.autoDensity = false; + + this.blendModes = null; + + this.options = null; + + this.preserveDrawingBuffer = false; + this.clearBeforeRender = false; + + this._backgroundColor = 0; + this._backgroundColorRgba = null; + this._backgroundColorString = null; + + this._tempDisplayObjectParent = null; + this._lastObjectRendered = null; + }; + + /** + * The background color to fill if not transparent + * + * @member {number} + */ + prototypeAccessors.backgroundColor.get = function () + { + return this._backgroundColor; + }; + + prototypeAccessors.backgroundColor.set = function (value) // eslint-disable-line require-jsdoc + { + this._backgroundColor = value; + this._backgroundColorString = hex2string(value); + hex2rgb(value, this._backgroundColorRgba); + }; + + Object.defineProperties( AbstractRenderer.prototype, prototypeAccessors ); + + return AbstractRenderer; +}(eventemitter3)); + +/** + * The Renderer draws the scene and all its content onto a WebGL enabled canvas. + * + * This renderer should be used for browsers that support WebGL. + * + * This renderer works by automatically managing WebGLBatchesm, so no need for Sprite Batches or Sprite Clouds. + * Don't forget to add the view to your DOM or you will not see anything! + * + * @class + * @memberof PIXI + * @extends PIXI.AbstractRenderer + */ +var Renderer = /*@__PURE__*/(function (AbstractRenderer) { + function Renderer(options) + { + if ( options === void 0 ) options = {}; + + AbstractRenderer.call(this, 'WebGL', options); + + // the options will have been modified here in the super constructor with pixi's default settings.. + options = this.options; + + /** + * The type of this renderer as a standardized const + * + * @member {number} + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.WEBGL; + + /** + * WebGL context, set by the contextSystem (this.context) + * + * @readonly + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.CONTEXT_UID = 0; + + // TODO legacy! + + /** + * Internal signal instances of **runner**, these + * are assigned to each system created. + * @see PIXI.Runner + * @name PIXI.Renderer#runners + * @private + * @type {object} + * @readonly + * @property {PIXI.Runner} destroy - Destroy runner + * @property {PIXI.Runner} contextChange - Context change runner + * @property {PIXI.Runner} reset - Reset runner + * @property {PIXI.Runner} update - Update runner + * @property {PIXI.Runner} postrender - Post-render runner + * @property {PIXI.Runner} prerender - Pre-render runner + * @property {PIXI.Runner} resize - Resize runner + */ + this.runners = { + destroy: new Runner('destroy'), + contextChange: new Runner('contextChange', 1), + reset: new Runner('reset'), + update: new Runner('update'), + postrender: new Runner('postrender'), + prerender: new Runner('prerender'), + resize: new Runner('resize', 2), + }; + + /** + * Global uniforms + * @member {PIXI.UniformGroup} + */ + this.globalUniforms = new UniformGroup({ + projectionMatrix: new Matrix(), + }, true); + + /** + * Mask system instance + * @member {PIXI.systems.MaskSystem} mask + * @memberof PIXI.Renderer# + * @readonly + */ + this.addSystem(MaskSystem, 'mask') + /** + * Context system instance + * @member {PIXI.systems.ContextSystem} context + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ContextSystem, 'context') + /** + * State system instance + * @member {PIXI.systems.StateSystem} state + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StateSystem, 'state') + /** + * Shader system instance + * @member {PIXI.systems.ShaderSystem} shader + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ShaderSystem, 'shader') + /** + * Texture system instance + * @member {PIXI.systems.TextureSystem} texture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureSystem, 'texture') + /** + * Geometry system instance + * @member {PIXI.systems.GeometrySystem} geometry + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(GeometrySystem, 'geometry') + /** + * Framebuffer system instance + * @member {PIXI.systems.FramebufferSystem} framebuffer + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FramebufferSystem, 'framebuffer') + /** + * Stencil system instance + * @member {PIXI.systems.StencilSystem} stencil + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StencilSystem, 'stencil') + /** + * Projection system instance + * @member {PIXI.systems.ProjectionSystem} projection + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ProjectionSystem, 'projection') + /** + * Texture garbage collector system instance + * @member {PIXI.systems.TextureGCSystem} textureGC + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureGCSystem, 'textureGC') + /** + * Filter system instance + * @member {PIXI.systems.FilterSystem} filter + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FilterSystem, 'filter') + /** + * RenderTexture system instance + * @member {PIXI.systems.RenderTextureSystem} renderTexture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(RenderTextureSystem, 'renderTexture') + + /** + * Batch system instance + * @member {PIXI.systems.BatchSystem} batch + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(BatchSystem, 'batch'); + + this.initPlugins(Renderer.__plugins); + + /** + * The options passed in to create a new WebGL context. + */ + if (options.context) + { + this.context.initFromContext(options.context); + } + else + { + this.context.initFromOptions({ + alpha: this.transparent, + antialias: options.antialias, + premultipliedAlpha: this.transparent && this.transparent !== 'notMultiplied', + stencil: true, + preserveDrawingBuffer: options.preserveDrawingBuffer, + powerPreference: this.options.powerPreference, + }); + } + + /** + * Flag if we are rendering to the screen vs renderTexture + * @member {boolean} + * @readonly + * @default true + */ + this.renderingToScreen = true; + + sayHello(this.context.webGLVersion === 2 ? 'WebGL 2' : 'WebGL 1'); + + this.resize(this.options.width, this.options.height); + } + + if ( AbstractRenderer ) Renderer.__proto__ = AbstractRenderer; + Renderer.prototype = Object.create( AbstractRenderer && AbstractRenderer.prototype ); + Renderer.prototype.constructor = Renderer; + + /** + * Add a new system to the renderer. + * @param {Function} ClassRef - Class reference + * @param {string} [name] - Property name for system, if not specified + * will use a static `name` property on the class itself. This + * name will be assigned as s property on the Renderer so make + * sure it doesn't collide with properties on Renderer. + * @return {PIXI.Renderer} Return instance of renderer + */ + Renderer.create = function create (options) + { + if (isWebGLSupported()) + { + return new Renderer(options); + } + + throw new Error('WebGL unsupported in this browser, use "pixi.js-legacy" for fallback canvas2d support.'); + }; + + Renderer.prototype.addSystem = function addSystem (ClassRef, name) + { + if (!name) + { + name = ClassRef.name; + } + + var system = new ClassRef(this); + + if (this[name]) + { + throw new Error(("Whoops! The name \"" + name + "\" is already in use")); + } + + this[name] = system; + + for (var i in this.runners) + { + this.runners[i].add(system); + } + + /** + * Fired after rendering finishes. + * + * @event PIXI.Renderer#postrender + */ + + /** + * Fired before rendering starts. + * + * @event PIXI.Renderer#prerender + */ + + /** + * Fired when the WebGL context is set. + * + * @event PIXI.Renderer#context + * @param {WebGLRenderingContext} gl - WebGL context. + */ + + return this; + }; + + /** + * Renders the object to its WebGL view + * + * @param {PIXI.DisplayObject} displayObject - The object to be rendered. + * @param {PIXI.RenderTexture} [renderTexture] - The render texture to render to. + * @param {boolean} [clear=true] - Should the canvas be cleared before the new render. + * @param {PIXI.Matrix} [transform] - A transform to apply to the render texture before rendering. + * @param {boolean} [skipUpdateTransform=false] - Should we skip the update transform pass? + */ + Renderer.prototype.render = function render (displayObject, renderTexture, clear, transform, skipUpdateTransform) + { + // can be handy to know! + this.renderingToScreen = !renderTexture; + + this.runners.prerender.run(); + this.emit('prerender'); + + // apply a transform at a GPU level + this.projection.transform = transform; + + // no point rendering if our context has been blown up! + if (this.context.isLost) + { + return; + } + + if (!renderTexture) + { + this._lastObjectRendered = displayObject; + } + + if (!skipUpdateTransform) + { + // update the scene graph + var cacheParent = displayObject.parent; + + displayObject.parent = this._tempDisplayObjectParent; + displayObject.updateTransform(); + displayObject.parent = cacheParent; + // displayObject.hitArea = //TODO add a temp hit area + } + + this.renderTexture.bind(renderTexture); + this.batch.currentRenderer.start(); + + if (clear !== undefined ? clear : this.clearBeforeRender) + { + this.renderTexture.clear(); + } + + displayObject.render(this); + + // apply transform.. + this.batch.currentRenderer.flush(); + + if (renderTexture) + { + renderTexture.baseTexture.update(); + } + + this.runners.postrender.run(); + + // reset transform after render + this.projection.transform = null; + + this.emit('postrender'); + }; + + /** + * Resizes the WebGL view to the specified width and height. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + Renderer.prototype.resize = function resize (screenWidth, screenHeight) + { + AbstractRenderer.prototype.resize.call(this, screenWidth, screenHeight); + + this.runners.resize.run(screenWidth, screenHeight); + }; + + /** + * Resets the WebGL state so you can render things however you fancy! + * + * @return {PIXI.Renderer} Returns itself. + */ + Renderer.prototype.reset = function reset () + { + this.runners.reset.run(); + + return this; + }; + + /** + * Clear the frame buffer + */ + Renderer.prototype.clear = function clear () + { + this.framebuffer.bind(); + this.framebuffer.clear(); + }; + + /** + * Removes everything from the renderer (event listeners, spritebatch, etc...) + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + * See: https://github.com/pixijs/pixi.js/issues/2233 + */ + Renderer.prototype.destroy = function destroy (removeView) + { + this.runners.destroy.run(); + + for (var r in this.runners) + { + this.runners[r].destroy(); + } + + // call base destroy + AbstractRenderer.prototype.destroy.call(this, removeView); + + // TODO nullify all the managers.. + this.gl = null; + }; + + /** + * Collection of installed plugins. These are included by default in PIXI, but can be excluded + * by creating a custom build. Consult the README for more information about creating custom + * builds and excluding plugins. + * @name PIXI.Renderer#plugins + * @type {object} + * @readonly + * @property {PIXI.accessibility.AccessibilityManager} accessibility Support tabbing interactive elements. + * @property {PIXI.extract.Extract} extract Extract image data from renderer. + * @property {PIXI.interaction.InteractionManager} interaction Handles mouse, touch and pointer events. + * @property {PIXI.prepare.Prepare} prepare Pre-render display objects. + */ + + /** + * Adds a plugin to the renderer. + * + * @method + * @param {string} pluginName - The name of the plugin. + * @param {Function} ctor - The constructor function or class for the plugin. + */ + Renderer.registerPlugin = function registerPlugin (pluginName, ctor) + { + Renderer.__plugins = Renderer.__plugins || {}; + Renderer.__plugins[pluginName] = ctor; + }; + + return Renderer; +}(AbstractRenderer)); + +/** + * This helper function will automatically detect which renderer you should be using. + * WebGL is the preferred renderer as it is a lot faster. If WebGL is not supported by + * the browser then this function will return a canvas renderer + * + * @memberof PIXI + * @function autoDetectRenderer + * @param {object} [options] - The optional renderer parameters + * @param {number} [options.width=800] - the width of the renderers view + * @param {number} [options.height=600] - the height of the renderers view + * @param {HTMLCanvasElement} [options.view] - the canvas to use as a view, optional + * @param {boolean} [options.transparent=false] - If the render view is transparent, default false + * @param {boolean} [options.autoDensity=false] - Resizes renderer view in CSS pixels to allow for + * resolutions other than 1 + * @param {boolean} [options.antialias=false] - sets antialias + * @param {boolean} [options.preserveDrawingBuffer=false] - enables drawing buffer preservation, enable this if you + * need to call toDataUrl on the webgl context + * @param {number} [options.backgroundColor=0x000000] - The background color of the rendered area + * (shown if not transparent). + * @param {boolean} [options.clearBeforeRender=true] - This sets if the renderer will clear the canvas or + * not before the new render pass. + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the renderer, retina would be 2 + * @param {boolean} [options.forceCanvas=false] - prevents selection of WebGL renderer, even if such is present, this + * option only is available when using **pixi.js-legacy** or **@pixi/canvas-renderer** modules, otherwise + * it is ignored. + * @param {boolean} [options.forceFXAA=false] - forces FXAA antialiasing to be used over native. + * FXAA is faster, but may not always look as great **webgl only** + * @param {string} [options.powerPreference] - Parameter passed to webgl context, set to "high-performance" + * for devices with dual graphics card **webgl only** + * @return {PIXI.Renderer|PIXI.CanvasRenderer} Returns WebGL renderer if available, otherwise CanvasRenderer + */ +function autoDetectRenderer(options) +{ + return Renderer.create(options); +} + +var defaultFilter = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +/** + * Used by the batcher to draw batches. + * Each one of these contains all information required to draw a bound geometry. + * + * @class + * @memberof PIXI + */ +var BatchDrawCall = function BatchDrawCall() +{ + this.textures = []; + this.ids = []; + this.blend = 0; + this.textureCount = 0; + this.start = 0; + this.size = 0; + this.type = 4; +}; + +/** + * Flexible wrapper around `ArrayBuffer` that also provides + * typed array views on demand. + * + * @class + * @memberof PIXI + */ +var ViewableBuffer = function ViewableBuffer(size) +{ + /** + * Underlying `ArrayBuffer` that holds all the data + * and is of capacity `size`. + * + * @member {ArrayBuffer} + */ + this.rawBinaryData = new ArrayBuffer(size); + + /** + * View on the raw binary data as a `Uint32Array`. + * + * @member {Uint32Array} + */ + this.uint32View = new Uint32Array(this.rawBinaryData); + + /** + * View on the raw binary data as a `Float32Array`. + * + * @member {Float32Array} + */ + this.float32View = new Float32Array(this.rawBinaryData); +}; + +var prototypeAccessors$5$1 = { int8View: { configurable: true },uint8View: { configurable: true },int16View: { configurable: true },uint16View: { configurable: true },int32View: { configurable: true } }; + +/** + * View on the raw binary data as a `Int8Array`. + * + * @member {Int8Array} + */ +prototypeAccessors$5$1.int8View.get = function () +{ + if (!this._int8View) + { + this._int8View = new Int8Array(this.rawBinaryData); + } + + return this._int8View; +}; + +/** + * View on the raw binary data as a `Uint8Array`. + * + * @member {Uint8Array} + */ +prototypeAccessors$5$1.uint8View.get = function () +{ + if (!this._uint8View) + { + this._uint8View = new Uint8Array(this.rawBinaryData); + } + + return this._uint8View; +}; + +/** + * View on the raw binary data as a `Int16Array`. + * + * @member {Int16Array} + */ +prototypeAccessors$5$1.int16View.get = function () +{ + if (!this._int16View) + { + this._int16View = new Int16Array(this.rawBinaryData); + } + + return this._int16View; +}; + +/** + * View on the raw binary data as a `Uint16Array`. + * + * @member {Uint16Array} + */ +prototypeAccessors$5$1.uint16View.get = function () +{ + if (!this._uint16View) + { + this._uint16View = new Uint16Array(this.rawBinaryData); + } + + return this._uint16View; +}; + +/** + * View on the raw binary data as a `Int32Array`. + * + * @member {Int32Array} + */ +prototypeAccessors$5$1.int32View.get = function () +{ + if (!this._int32View) + { + this._int32View = new Int32Array(this.rawBinaryData); + } + + return this._int32View; +}; + +/** + * Returns the view of the given type. + * + * @param {string} type - One of `int8`, `uint8`, `int16`, + *`uint16`, `int32`, `uint32`, and `float32`. + * @return {object} typed array of given type + */ +ViewableBuffer.prototype.view = function view (type) +{ + return this[(type + "View")]; +}; + +/** + * Destroys all buffer references. Do not use after calling + * this. + */ +ViewableBuffer.prototype.destroy = function destroy () +{ + this.rawBinaryData = null; + this._int8View = null; + this._uint8View = null; + this._int16View = null; + this._uint16View = null; + this._int32View = null; + this.uint32View = null; + this.float32View = null; +}; + +ViewableBuffer.sizeOf = function sizeOf (type) +{ + switch (type) + { + case 'int8': + case 'uint8': + return 1; + case 'int16': + case 'uint16': + return 2; + case 'int32': + case 'uint32': + case 'float32': + return 4; + default: + throw new Error((type + " isn't a valid view type")); + } +}; + +Object.defineProperties( ViewableBuffer.prototype, prototypeAccessors$5$1 ); + +/** + * Renderer dedicated to drawing and batching sprites. + * + * This is the default batch renderer. It buffers objects + * with texture-based geometries and renders them in + * batches. It uploads multiple textures to the GPU to + * reduce to the number of draw calls. + * + * @class + * @protected + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var AbstractBatchRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function AbstractBatchRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + /** + * This is used to generate a shader that can + * color each vertex based on a `aTextureId` + * attribute that points to an texture in `uSampler`. + * + * This enables the objects with different textures + * to be drawn in the same draw call. + * + * You can customize your shader by creating your + * custom shader generator. + * + * @member {PIXI.BatchShaderGenerator} + * @protected + */ + this.shaderGenerator = null; + + /** + * The class that represents the geometry of objects + * that are going to be batched with this. + * + * @member {object} + * @default PIXI.BatchGeometry + * @protected + */ + this.geometryClass = null; + + /** + * Size of data being buffered per vertex in the + * attribute buffers (in floats). By default, the + * batch-renderer plugin uses 6: + * + * | aVertexPosition | 2 | + * |-----------------|---| + * | aTextureCoords | 2 | + * | aColor | 1 | + * | aTextureId | 1 | + * + * @member {number} + * @readonly + */ + this.vertexSize = null; + + /** + * The WebGL state in which this renderer will work. + * + * @member {PIXI.State} + * @readonly + */ + this.state = State.for2d(); + + /** + * The number of bufferable objects before a flush + * occurs automatically. + * + * @member {number} + * @default settings.SPRITE_MAX_TEXTURES + */ + this.size = 2000 * 4;// settings.SPRITE_BATCH_SIZE, 2000 is a nice balance between mobile/desktop + + /** + * Total count of all vertices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._vertexCount = 0; + + /** + * Total count of all indices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._indexCount = 0; + + /** + * Buffer of objects that are yet to be rendered. + * + * @member {PIXI.DisplayObject[]} + * @private + */ + this._bufferedElements = []; + + /** + * Number of elements that are buffered and are + * waiting to be flushed. + * + * @member {number} + * @private + */ + this._bufferSize = 0; + + /** + * This shader is generated by `this.shaderGenerator`. + * + * It is generated specifically to handle the required + * number of textures being batched together. + * + * @member {PIXI.Shader} + * @protected + */ + this._shader = null; + + /** + * Pool of `this.geometryClass` geometry objects + * that store buffers. They are used to pass data + * to the shader on each draw call. + * + * These are never re-allocated again, unless a + * context change occurs; however, the pool may + * be expanded if required. + * + * @member {PIXI.Geometry[]} + * @private + * @see PIXI.AbstractBatchRenderer.contextChange + */ + this._packedGeometries = []; + + /** + * Size of `this._packedGeometries`. It can be expanded + * if more than `this._packedGeometryPoolSize` flushes + * occur in a single frame. + * + * @member {number} + * @private + */ + this._packedGeometryPoolSize = 2; + + /** + * A flush may occur multiple times in a single + * frame. On iOS devices or when + * `settings.CAN_UPLOAD_SAME_BUFFER` is false, the + * batch renderer does not upload data to the same + * `WebGLBuffer` for performance reasons. + * + * This is the index into `packedGeometries` that points to + * geometry holding the most recent buffers. + * + * @member {number} + * @private + */ + this._flushId = 0; + + /** + * Pool of `BatchDrawCall` objects that `flush` used + * to create "batches" of the objects being rendered. + * + * These are never re-allocated again. + * + * @member BatchDrawCall[] + * @private + */ + this._drawCalls = []; + + for (var k = 0; k < this.size / 4; k++) + { // initialize the draw-calls pool to max size. + this._drawCalls[k] = new BatchDrawCall(); + } + + /** + * Pool of `ViewableBuffer` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing attributes. + * + * The first buffer has a size of 8; each subsequent + * buffer has double capacity of its previous. + * + * @member {PIXI.ViewableBuffer} + * @private + * @see PIXI.AbstractBatchRenderer#getAttributeBuffer + */ + this._aBuffers = {}; + + /** + * Pool of `Uint16Array` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing indices. + * + * The first buffer has a size of 12; each subsequent + * buffer has double capacity of its previous. + * + * @member {Uint16Array[]} + * @private + * @see PIXI.AbstractBatchRenderer#getIndexBuffer + */ + this._iBuffers = {}; + + /** + * Maximum number of textures that can be uploaded to + * the GPU under the current context. It is initialized + * properly in `this.contextChange`. + * + * @member {number} + * @see PIXI.AbstractBatchRenderer#contextChange + * @readonly + */ + this.MAX_TEXTURES = 1; + + this.renderer.on('prerender', this.onPrerender, this); + renderer.runners.contextChange.add(this); + } + + if ( ObjectRenderer ) AbstractBatchRenderer.__proto__ = ObjectRenderer; + AbstractBatchRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + AbstractBatchRenderer.prototype.constructor = AbstractBatchRenderer; + + /** + * Handles the `contextChange` signal. + * + * It calculates `this.MAX_TEXTURES` and allocating the + * packed-geometry object pool. + */ + AbstractBatchRenderer.prototype.contextChange = function contextChange () + { + var gl = this.renderer.gl; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + this.MAX_TEXTURES = 1; + } + else + { + // step 1: first check max textures the GPU can handle. + this.MAX_TEXTURES = Math.min( + gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS), + settings.SPRITE_MAX_TEXTURES); + + // step 2: check the maximum number of if statements the shader can have too.. + this.MAX_TEXTURES = checkMaxIfStatementsInShader( + this.MAX_TEXTURES, gl); + } + + this._shader = this.shaderGenerator.generateShader(this.MAX_TEXTURES); + + // we use the second shader as the first one depending on your browser + // may omit aTextureId as it is not used by the shader so is optimized out. + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + /* eslint-disable max-len */ + this._packedGeometries[i] = new (this.geometryClass)(); + } + }; + + /** + * Handles the `prerender` signal. + * + * It ensures that flushes start from the first geometry + * object again. + */ + AbstractBatchRenderer.prototype.onPrerender = function onPrerender () + { + this._flushId = 0; + }; + + /** + * Buffers the "batchable" object. It need not be rendered + * immediately. + * + * @param {PIXI.Sprite} sprite - the sprite to render when + * using this spritebatch + */ + AbstractBatchRenderer.prototype.render = function render (element) + { + if (!element._texture.valid) + { + return; + } + + if (this._vertexCount + (element.vertexData.length / 2) > this.size) + { + this.flush(); + } + + this._vertexCount += element.vertexData.length / 2; + this._indexCount += element.indices.length; + this._bufferedElements[this._bufferSize++] = element; + }; + + /** + * Renders the content _now_ and empties the current batch. + */ + AbstractBatchRenderer.prototype.flush = function flush () + { + if (this._vertexCount === 0) + { + return; + } + + var attributeBuffer = this.getAttributeBuffer(this._vertexCount); + var indexBuffer = this.getIndexBuffer(this._indexCount); + var gl = this.renderer.gl; + + var ref = this; + var elements = ref._bufferedElements; + var drawCalls = ref._drawCalls; + var MAX_TEXTURES = ref.MAX_TEXTURES; + var packedGeometries = ref._packedGeometries; + var vertexSize = ref.vertexSize; + + var touch = this.renderer.textureGC.count; + + var index = 0; + var _indexCount = 0; + + var nextTexture; + var currentTexture; + var textureCount = 0; + + var currentGroup = drawCalls[0]; + var groupCount = 0; + + var blendMode = -1;// blend-mode of previous element/sprite/object! + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.blend = blendMode; + + var TICK = ++BaseTexture._globalBatch; + var i; + + for (i = 0; i < this._bufferSize; ++i) + { + var sprite = elements[i]; + + elements[i] = null; + nextTexture = sprite._texture.baseTexture; + + var spriteBlendMode = premultiplyBlendMode[ + nextTexture.premultiplyAlpha ? 1 : 0][sprite.blendMode]; + + if (blendMode !== spriteBlendMode) + { + blendMode = spriteBlendMode; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + currentGroup.size = _indexCount - currentGroup.start; + + currentGroup = drawCalls[groupCount++]; + currentGroup.textureCount = 0; + currentGroup.blend = blendMode; + currentGroup.start = _indexCount; + } + + nextTexture.touched = touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + this.packInterleavedGeometry(sprite, attributeBuffer, + indexBuffer, index, _indexCount); + + // push a graphics.. + index += (sprite.vertexData.length / 2) * vertexSize; + _indexCount += sprite.indices.length; + } + + BaseTexture._globalBatch = TICK; + currentGroup.size = _indexCount - currentGroup.start; + + if (!settings.CAN_UPLOAD_SAME_BUFFER) + { /* Usually on iOS devices, where the browser doesn't + like uploads to the same buffer in a single frame. */ + if (this._packedGeometryPoolSize <= this._flushId) + { + this._packedGeometryPoolSize++; + packedGeometries[this._flushId] = new (this.geometryClass)(); + } + + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.bind(packedGeometries[this._flushId]); + this.renderer.geometry.updateBuffers(); + this._flushId++; + } + else + { + // lets use the faster option, always use buffer number 0 + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.updateBuffers(); + } + + var textureSystem = this.renderer.texture; + var stateSystem = this.renderer.state; + + // Upload textures and do the draw calls + for (i = 0; i < groupCount; i++) + { + var group = drawCalls[i]; + var groupTextureCount = group.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + textureSystem.bind(group.textures[j], j); + group.textures[j] = null; + } + + stateSystem.setBlendMode(group.blend); + gl.drawElements(group.type, group.size, gl.UNSIGNED_SHORT, group.start * 2); + } + + // reset elements for the next flush + this._bufferSize = 0; + this._vertexCount = 0; + this._indexCount = 0; + }; + + /** + * Starts a new sprite batch. + */ + AbstractBatchRenderer.prototype.start = function start () + { + this.renderer.state.set(this.state); + + this.renderer.shader.bind(this._shader); + + if (settings.CAN_UPLOAD_SAME_BUFFER) + { + // bind buffer #0, we don't need others + this.renderer.geometry.bind(this._packedGeometries[this._flushId]); + } + }; + + /** + * Stops and flushes the current batch. + */ + AbstractBatchRenderer.prototype.stop = function stop () + { + this.flush(); + }; + + /** + * Destroys this `AbstractBatchRenderer`. It cannot be used again. + */ + AbstractBatchRenderer.prototype.destroy = function destroy () + { + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + if (this._packedGeometries[i]) + { + this._packedGeometries[i].destroy(); + } + } + + this.renderer.off('prerender', this.onPrerender, this); + + this._aBuffers = null; + this._iBuffers = null; + this._packedGeometries = null; + this._drawCalls = null; + + if (this._shader) + { + this._shader.destroy(); + this._shader = null; + } + + ObjectRenderer.prototype.destroy.call(this); + }; + + /** + * Fetches an attribute buffer from `this._aBuffers` that + * can hold atleast `size` floats. + * + * @param {number} size - minimum capacity required + * @return {ViewableBuffer} - buffer than can hold atleast `size` floats + * @private + */ + AbstractBatchRenderer.prototype.getAttributeBuffer = function getAttributeBuffer (size) + { + // 8 vertices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 8)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 8; + + if (this._aBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._aBuffers[roundedSize]; + + if (!buffer) + { + this._aBuffers[roundedSize] = buffer = new ViewableBuffer(roundedSize * this.vertexSize * 4); + } + + return buffer; + }; + + /** + * Fetches an index buffer from `this._iBuffers` that can + * has atleast `size` capacity. + * + * @param {number} size - minimum required capacity + * @return {Uint16Array} - buffer that can fit `size` + * indices. + * @private + */ + AbstractBatchRenderer.prototype.getIndexBuffer = function getIndexBuffer (size) + { + // 12 indices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 12)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 12; + + if (this._iBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._iBuffers[roundedSizeIndex]; + + if (!buffer) + { + this._iBuffers[roundedSizeIndex] = buffer = new Uint16Array(roundedSize); + } + + return buffer; + }; + + /** + * Takes the four batching parameters of `element`, interleaves + * and pushes them into the batching attribute/index buffers given. + * + * It uses these properties: `vertexData` `uvs`, `textureId` and + * `indicies`. It also uses the "tint" of the base-texture, if + * present. + * + * @param {PIXI.Sprite} element - element being rendered + * @param {PIXI.ViewableBuffer} attributeBuffer - attribute buffer. + * @param {Uint16Array} indexBuffer - index buffer + * @param {number} aIndex - number of floats already in the attribute buffer + * @param {number} iIndex - number of indices already in `indexBuffer` + */ + AbstractBatchRenderer.prototype.packInterleavedGeometry = function packInterleavedGeometry (element, attributeBuffer, indexBuffer, aIndex, iIndex) + { + var uint32View = attributeBuffer.uint32View; + var float32View = attributeBuffer.float32View; + + var packedVertices = aIndex / this.vertexSize; + var uvs = element.uvs; + var indicies = element.indices; + var vertexData = element.vertexData; + var textureId = element._texture.baseTexture._id; + + var alpha = Math.min(element.worldAlpha, 1.0); + var argb = (alpha < 1.0 + && element._texture.baseTexture.premultiplyAlpha) + ? premultiplyTint(element._tintRGB, alpha) + : element._tintRGB + (alpha * 255 << 24); + + // lets not worry about tint! for now.. + for (var i = 0; i < vertexData.length; i += 2) + { + float32View[aIndex++] = vertexData[i]; + float32View[aIndex++] = vertexData[i + 1]; + float32View[aIndex++] = uvs[i]; + float32View[aIndex++] = uvs[i + 1]; + uint32View[aIndex++] = argb; + float32View[aIndex++] = textureId; + } + + for (var i$1 = 0; i$1 < indicies.length; i$1++) + { + indexBuffer[iIndex++] = packedVertices + indicies[i$1]; + } + }; + + return AbstractBatchRenderer; +}(ObjectRenderer)); + +/** + * Helper that generates batching multi-texture shader. Use it with your new BatchRenderer + * + * @class + * @memberof PIXI + */ +var BatchShaderGenerator = function BatchShaderGenerator(vertexSrc, fragTemplate) +{ + /** + * Reference to the vertex shader source. + * + * @member {string} + */ + this.vertexSrc = vertexSrc; + + /** + * Reference to the fragement shader template. Must contain "%count%" and "%forloop%". + * + * @member {string} + */ + this.fragTemplate = fragTemplate; + + this.programCache = {}; + this.defaultGroupCache = {}; + + if (fragTemplate.indexOf('%count%') < 0) + { + throw new Error('Fragment template must contain "%count%".'); + } + + if (fragTemplate.indexOf('%forloop%') < 0) + { + throw new Error('Fragment template must contain "%forloop%".'); + } +}; + +BatchShaderGenerator.prototype.generateShader = function generateShader (maxTextures) +{ + if (!this.programCache[maxTextures]) + { + var sampleValues = new Int32Array(maxTextures); + + for (var i = 0; i < maxTextures; i++) + { + sampleValues[i] = i; + } + + this.defaultGroupCache[maxTextures] = UniformGroup.from({ uSamplers: sampleValues }, true); + + var fragmentSrc = this.fragTemplate; + + fragmentSrc = fragmentSrc.replace(/%count%/gi, ("" + maxTextures)); + fragmentSrc = fragmentSrc.replace(/%forloop%/gi, this.generateSampleSrc(maxTextures)); + + this.programCache[maxTextures] = new Program(this.vertexSrc, fragmentSrc); + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: this.defaultGroupCache[maxTextures], + }; + + return new Shader(this.programCache[maxTextures], uniforms); +}; + +BatchShaderGenerator.prototype.generateSampleSrc = function generateSampleSrc (maxTextures) +{ + var src = ''; + + src += '\n'; + src += '\n'; + + for (var i = 0; i < maxTextures; i++) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxTextures - 1) + { + src += "if(vTextureId < " + i + ".5)"; + } + + src += '\n{'; + src += "\n\tcolor = texture2D(uSamplers[" + i + "], vTextureCoord);"; + src += '\n}'; + } + + src += '\n'; + src += '\n'; + + return src; +}; + +/** + * Geometry used to batch standard PIXI content (e.g. Mesh, Sprite, Graphics objects). + * + * @class + * @memberof PIXI + */ +var BatchGeometry = /*@__PURE__*/(function (Geometry) { + function BatchGeometry(_static) + { + if ( _static === void 0 ) _static = false; + + Geometry.call(this); + + /** + * Buffer used for position, color, texture IDs + * + * @member {PIXI.Buffer} + * @protected + */ + this._buffer = new Buffer$1(null, _static, false); + + /** + * Index buffer data + * + * @member {PIXI.Buffer} + * @protected + */ + this._indexBuffer = new Buffer$1(null, _static, true); + + this.addAttribute('aVertexPosition', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aTextureCoord', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aColor', this._buffer, 4, true, TYPES.UNSIGNED_BYTE) + .addAttribute('aTextureId', this._buffer, 1, true, TYPES.FLOAT) + .addIndex(this._indexBuffer); + } + + if ( Geometry ) BatchGeometry.__proto__ = Geometry; + BatchGeometry.prototype = Object.create( Geometry && Geometry.prototype ); + BatchGeometry.prototype.constructor = BatchGeometry; + + return BatchGeometry; +}(Geometry)); + +var defaultVertex$2 = "precision highp float;\nattribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\nattribute float aTextureId;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform vec4 tint;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vTextureId = aTextureId;\n vColor = aColor * tint;\n}\n"; + +var defaultFragment$2 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\nuniform sampler2D uSamplers[%count%];\n\nvoid main(void){\n vec4 color;\n %forloop%\n gl_FragColor = color * vColor;\n}\n"; + +/** + * @class + * @memberof PIXI + * @hideconstructor + */ +var BatchPluginFactory = function BatchPluginFactory () {}; + +var staticAccessors$1$1 = { defaultVertexSrc: { configurable: true },defaultFragmentTemplate: { configurable: true } }; + +BatchPluginFactory.create = function create (options) +{ + var ref = Object.assign({ + vertex: defaultVertex$2, + fragment: defaultFragment$2, + geometryClass: BatchGeometry, + vertexSize: 6, + }, options); + var vertex = ref.vertex; + var fragment = ref.fragment; + var vertexSize = ref.vertexSize; + var geometryClass = ref.geometryClass; + + return /*@__PURE__*/(function (AbstractBatchRenderer) { + function BatchPlugin(renderer) + { + AbstractBatchRenderer.call(this, renderer); + + this.shaderGenerator = new BatchShaderGenerator(vertex, fragment); + this.geometryClass = geometryClass; + this.vertexSize = vertexSize; + } + + if ( AbstractBatchRenderer ) BatchPlugin.__proto__ = AbstractBatchRenderer; + BatchPlugin.prototype = Object.create( AbstractBatchRenderer && AbstractBatchRenderer.prototype ); + BatchPlugin.prototype.constructor = BatchPlugin; + + return BatchPlugin; + }(AbstractBatchRenderer)); +}; + +/** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultVertexSrc.get = function () +{ + return defaultVertex$2; +}; + +/** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultFragmentTemplate.get = function () +{ + return defaultFragment$2; +}; + +Object.defineProperties( BatchPluginFactory, staticAccessors$1$1 ); + +// Setup the default BatchRenderer plugin, this is what +// we'll actually export at the root level +var BatchRenderer = BatchPluginFactory.create(); + +/*! + * @pixi/extract - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/extract is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var TEMP_RECT = new Rectangle(); +var BYTES_PER_PIXEL = 4; + +/** + * The extract manager provides functionality to export content from the renderers. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.extract` + * + * @class + * @memberof PIXI.extract + */ +var Extract = function Extract(renderer) +{ + this.renderer = renderer; + /** + * Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture + * + * @member {PIXI.extract.Extract} extract + * @memberof PIXI.Renderer# + * @see PIXI.extract.Extract + */ + renderer.extract = this; +}; + +/** + * Will return a HTML Image of the target + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {HTMLImageElement} HTML Image of the target + */ +Extract.prototype.image = function image (target, format, quality) +{ + var image = new Image(); + + image.src = this.base64(target, format, quality); + + return image; +}; + +/** + * Will return a a base64 encoded string of this target. It works by calling + * `Extract.getCanvas` and then running toDataURL on that. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {string} A base64 encoded string of the texture. + */ +Extract.prototype.base64 = function base64 (target, format, quality) +{ + return this.canvas(target).toDataURL(format, quality); +}; + +/** + * Creates a Canvas element, renders this target to it and then returns it. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {HTMLCanvasElement} A Canvas element with the texture rendered on. + */ +Extract.prototype.canvas = function canvas (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var flipY = false; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + flipY = false; + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = this.renderer.resolution; + + flipY = true; + + frame = TEMP_RECT; + frame.width = this.renderer.width; + frame.height = this.renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = Math.floor(frame.width * resolution); + var height = Math.floor(frame.height * resolution); + + var canvasBuffer = new CanvasRenderTarget(width, height, 1); + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + // add the pixels to the canvas + var canvasData = canvasBuffer.context.getImageData(0, 0, width, height); + + Extract.arrayPostDivide(webglPixels, canvasData.data); + + canvasBuffer.context.putImageData(canvasData, 0, 0); + + // pulling pixels + if (flipY) + { + canvasBuffer.context.scale(1, -1); + canvasBuffer.context.drawImage(canvasBuffer.canvas, 0, -height); + } + + if (generated) + { + renderTexture.destroy(true); + } + + // send the canvas back.. + return canvasBuffer.canvas; +}; + +/** + * Will return a one-dimensional array containing the pixel data of the entire texture in RGBA + * order, with integer values between 0 and 255 (included). + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {Uint8Array} One-dimensional array containing the pixel data of the entire texture + */ +Extract.prototype.pixels = function pixels (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + + // bind the buffer + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = renderer.resolution; + + frame = TEMP_RECT; + frame.width = renderer.width; + frame.height = renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = frame.width * resolution; + var height = frame.height * resolution; + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + if (generated) + { + renderTexture.destroy(true); + } + + Extract.arrayPostDivide(webglPixels, webglPixels); + + return webglPixels; +}; + +/** + * Destroys the extract + * + */ +Extract.prototype.destroy = function destroy () +{ + this.renderer.extract = null; + this.renderer = null; +}; + +/** + * Takes premultiplied pixel data and produces regular pixel data + * + * @private + * @param pixels {number[] | Uint8Array | Uint8ClampedArray} array of pixel data + * @param out {number[] | Uint8Array | Uint8ClampedArray} output array + */ +Extract.arrayPostDivide = function arrayPostDivide (pixels, out) +{ + for (var i = 0; i < pixels.length; i += 4) + { + var alpha = out[i + 3] = pixels[i + 3]; + + if (alpha !== 0) + { + out[i] = Math.round(Math.min(pixels[i] * 255.0 / alpha, 255.0)); + out[i + 1] = Math.round(Math.min(pixels[i + 1] * 255.0 / alpha, 255.0)); + out[i + 2] = Math.round(Math.min(pixels[i + 2] * 255.0 / alpha, 255.0)); + } + else + { + out[i] = pixels[i]; + out[i + 1] = pixels[i + 1]; + out[i + 2] = pixels[i + 2]; + } + } +}; + +/*! + * @pixi/interaction - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/interaction is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Holds all information related to an Interaction event + * + * @class + * @memberof PIXI.interaction + */ +var InteractionData = function InteractionData() +{ + /** + * This point stores the global coords of where the touch/mouse event happened + * + * @member {PIXI.Point} + */ + this.global = new Point(); + + /** + * The target Sprite that was interacted with + * + * @member {PIXI.Sprite} + */ + this.target = null; + + /** + * When passed to an event handler, this will be the original DOM Event that was captured + * + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent + * @member {MouseEvent|TouchEvent|PointerEvent} + */ + this.originalEvent = null; + + /** + * Unique identifier for this interaction + * + * @member {number} + */ + this.identifier = null; + + /** + * Indicates whether or not the pointer device that created the event is the primary pointer. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary + * @type {Boolean} + */ + this.isPrimary = false; + + /** + * Indicates which button was pressed on the mouse or pointer device to trigger the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button + * @type {number} + */ + this.button = 0; + + /** + * Indicates which buttons are pressed on the mouse or pointer device when the event is triggered. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/buttons + * @type {number} + */ + this.buttons = 0; + + /** + * The width of the pointer's contact along the x-axis, measured in CSS pixels. + * radiusX of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width + * @type {number} + */ + this.width = 0; + + /** + * The height of the pointer's contact along the y-axis, measured in CSS pixels. + * radiusY of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height + * @type {number} + */ + this.height = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX + * @type {number} + */ + this.tiltX = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY + * @type {number} + */ + this.tiltY = 0; + + /** + * The type of pointer that triggered the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType + * @type {string} + */ + this.pointerType = null; + + /** + * Pressure applied by the pointing device during the event. A Touch's force property + * will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure + * @type {number} + */ + this.pressure = 0; + + /** + * From TouchEvents (not PointerEvents triggered by touches), the rotationAngle of the Touch. + * @see https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle + * @type {number} + */ + this.rotationAngle = 0; + + /** + * Twist of a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.twist = 0; + + /** + * Barrel pressure on a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.tangentialPressure = 0; +}; + +var prototypeAccessors$6 = { pointerId: { configurable: true } }; + +/** + * The unique identifier of the pointer. It will be the same as `identifier`. + * @readonly + * @member {number} + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId + */ +prototypeAccessors$6.pointerId.get = function () +{ + return this.identifier; +}; + +/** + * This will return the local coordinates of the specified displayObject for this InteractionData + * + * @param {PIXI.DisplayObject} displayObject - The DisplayObject that you would like the local + * coords off + * @param {PIXI.Point} [point] - A Point object in which to store the value, optional (otherwise + * will create a new point) + * @param {PIXI.Point} [globalPos] - A Point object containing your custom global coords, optional + * (otherwise will use the current global coords) + * @return {PIXI.Point} A point containing the coordinates of the InteractionData position relative + * to the DisplayObject + */ +InteractionData.prototype.getLocalPosition = function getLocalPosition (displayObject, point, globalPos) +{ + return displayObject.worldTransform.applyInverse(globalPos || this.global, point); +}; + +/** + * Copies properties from normalized event data. + * + * @param {Touch|MouseEvent|PointerEvent} event The normalized event data + */ +InteractionData.prototype.copyEvent = function copyEvent (event) +{ + // isPrimary should only change on touchstart/pointerdown, so we don't want to overwrite + // it with "false" on later events when our shim for it on touch events might not be + // accurate + if (event.isPrimary) + { + this.isPrimary = true; + } + this.button = event.button; + // event.buttons is not available in all browsers (ie. Safari), but it does have a non-standard + // event.which property instead, which conveys the same information. + this.buttons = Number.isInteger(event.buttons) ? event.buttons : event.which; + this.width = event.width; + this.height = event.height; + this.tiltX = event.tiltX; + this.tiltY = event.tiltY; + this.pointerType = event.pointerType; + this.pressure = event.pressure; + this.rotationAngle = event.rotationAngle; + this.twist = event.twist || 0; + this.tangentialPressure = event.tangentialPressure || 0; +}; + +/** + * Resets the data for pooling. + */ +InteractionData.prototype.reset = function reset () +{ + // isPrimary is the only property that we really need to reset - everything else is + // guaranteed to be overwritten + this.isPrimary = false; +}; + +Object.defineProperties( InteractionData.prototype, prototypeAccessors$6 ); + +/** + * Event class that mimics native DOM events. + * + * @class + * @memberof PIXI.interaction + */ +var InteractionEvent = function InteractionEvent() +{ + /** + * Whether this event will continue propagating in the tree. + * + * Remaining events for the {@link stopsPropagatingAt} object + * will still be dispatched. + * + * @member {boolean} + */ + this.stopped = false; + + /** + * At which object this event stops propagating. + * + * @private + * @member {PIXI.DisplayObject} + */ + this.stopsPropagatingAt = null; + + /** + * Whether we already reached the element we want to + * stop propagating at. This is important for delayed events, + * where we start over deeper in the tree again. + * + * @private + * @member {boolean} + */ + this.stopPropagationHint = false; + + /** + * The object which caused this event to be dispatched. + * For listener callback see {@link PIXI.interaction.InteractionEvent.currentTarget}. + * + * @member {PIXI.DisplayObject} + */ + this.target = null; + + /** + * The object whose event listener’s callback is currently being invoked. + * + * @member {PIXI.DisplayObject} + */ + this.currentTarget = null; + + /** + * Type of the event + * + * @member {string} + */ + this.type = null; + + /** + * InteractionData related to this event + * + * @member {PIXI.interaction.InteractionData} + */ + this.data = null; +}; + +/** + * Prevents event from reaching any objects other than the current object. + * + */ +InteractionEvent.prototype.stopPropagation = function stopPropagation () +{ + this.stopped = true; + this.stopPropagationHint = true; + this.stopsPropagatingAt = this.currentTarget; +}; + +/** + * Resets the event. + */ +InteractionEvent.prototype.reset = function reset () +{ + this.stopped = false; + this.stopsPropagatingAt = null; + this.stopPropagationHint = false; + this.currentTarget = null; + this.target = null; +}; + +/** + * DisplayObjects with the {@link PIXI.interaction.interactiveTarget} mixin use this class to track interactions + * + * @class + * @private + * @memberof PIXI.interaction + */ +var InteractionTrackingData = function InteractionTrackingData(pointerId) +{ + this._pointerId = pointerId; + this._flags = InteractionTrackingData.FLAGS.NONE; +}; + +var prototypeAccessors$1$3 = { pointerId: { configurable: true },flags: { configurable: true },none: { configurable: true },over: { configurable: true },rightDown: { configurable: true },leftDown: { configurable: true } }; + +/** + * + * @private + * @param {number} flag - The interaction flag to set + * @param {boolean} yn - Should the flag be set or unset + */ +InteractionTrackingData.prototype._doSet = function _doSet (flag, yn) +{ + if (yn) + { + this._flags = this._flags | flag; + } + else + { + this._flags = this._flags & (~flag); + } +}; + +/** + * Unique pointer id of the event + * + * @readonly + * @private + * @member {number} + */ +prototypeAccessors$1$3.pointerId.get = function () +{ + return this._pointerId; +}; + +/** + * State of the tracking data, expressed as bit flags + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.flags.get = function () +{ + return this._flags; +}; + +prototypeAccessors$1$3.flags.set = function (flags) // eslint-disable-line require-jsdoc +{ + this._flags = flags; +}; + +/** + * Is the tracked event inactive (not over or down)? + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.none.get = function () +{ + return this._flags === this.constructor.FLAGS.NONE; +}; + +/** + * Is the tracked event over the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.over.get = function () +{ + return (this._flags & this.constructor.FLAGS.OVER) !== 0; +}; + +prototypeAccessors$1$3.over.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.OVER, yn); +}; + +/** + * Did the right mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.rightDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.RIGHT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.rightDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.RIGHT_DOWN, yn); +}; + +/** + * Did the left mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.leftDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.LEFT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.leftDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.LEFT_DOWN, yn); +}; + +Object.defineProperties( InteractionTrackingData.prototype, prototypeAccessors$1$3 ); + +InteractionTrackingData.FLAGS = Object.freeze({ + NONE: 0, + OVER: 1 << 0, + LEFT_DOWN: 1 << 1, + RIGHT_DOWN: 1 << 2, +}); + +/** + * Interface for classes that represent a hit area. + * + * It is implemented by the following classes: + * - {@link PIXI.Circle} + * - {@link PIXI.Ellipse} + * - {@link PIXI.Polygon} + * - {@link PIXI.RoundedRectangle} + * + * @interface IHitArea + * @memberof PIXI + */ + +/** + * Checks whether the x and y coordinates given are contained within this area + * + * @method + * @name contains + * @memberof PIXI.IHitArea# + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this area + */ + +/** + * Default property values of interactive objects + * Used by {@link PIXI.interaction.InteractionManager} to automatically give all DisplayObjects these properties + * + * @private + * @name interactiveTarget + * @type {Object} + * @memberof PIXI.interaction + * @example + * function MyObject() {} + * + * Object.assign( + * DisplayObject.prototype, + * PIXI.interaction.interactiveTarget + * ); + */ +var interactiveTarget = { + + /** + * Enable interaction events for the DisplayObject. Touch, pointer and mouse + * events will not be emitted unless `interactive` is set to `true`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.on('tap', (event) => { + * //handle event + * }); + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + interactive: false, + + /** + * Determines if the children to the displayObject can be clicked/touched + * Setting this to false allows PixiJS to bypass a recursive `hitTest` function + * + * @member {boolean} + * @memberof PIXI.Container# + */ + interactiveChildren: true, + + /** + * Interaction shape. Children will be hit first, then this shape will be checked. + * Setting this will cause this shape to be checked in hit tests rather than the displayObject's bounds. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.hitArea = new PIXI.Rectangle(0, 0, 100, 100); + * @member {PIXI.IHitArea} + * @memberof PIXI.DisplayObject# + */ + hitArea: null, + + /** + * If enabled, the mouse cursor use the pointer behavior when hovered over the displayObject if it is interactive + * Setting this changes the 'cursor' property to `'pointer'`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.buttonMode = true; + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + get buttonMode() + { + return this.cursor === 'pointer'; + }, + set buttonMode(value) + { + if (value) + { + this.cursor = 'pointer'; + } + else if (this.cursor === 'pointer') + { + this.cursor = null; + } + }, + + /** + * This defines what cursor mode is used when the mouse cursor + * is hovered over the displayObject. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.cursor = 'wait'; + * @see https://developer.mozilla.org/en/docs/Web/CSS/cursor + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + cursor: null, + + /** + * Internal set of all active pointers, by identifier + * + * @member {Map} + * @memberof PIXI.DisplayObject# + * @private + */ + get trackedPointers() + { + if (this._trackedPointers === undefined) { this._trackedPointers = {}; } + + return this._trackedPointers; + }, + + /** + * Map of all tracked pointers, by identifier. Use trackedPointers to access. + * + * @private + * @type {Map} + */ + _trackedPointers: undefined, +}; + +// Mix interactiveTarget into DisplayObject.prototype, +// after deprecation has been handled +DisplayObject.mixin(interactiveTarget); + +var MOUSE_POINTER_ID = 1; + +// helpers for hitTest() - only used inside hitTest() +var hitTestEvent = { + target: null, + data: { + global: null, + }, +}; + +/** + * The interaction manager deals with mouse, touch and pointer events. + * + * Any DisplayObject can be interactive if its `interactive` property is set to true. + * + * This manager also supports multitouch. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.interaction` + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI.interaction + */ +var InteractionManager = /*@__PURE__*/(function (EventEmitter) { + function InteractionManager(renderer, options) + { + EventEmitter.call(this); + + options = options || {}; + + /** + * The renderer this interaction manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * Should default browser actions automatically be prevented. + * Does not apply to pointer events for backwards compatibility + * preventDefault on pointer events stops mouse events from firing + * Thus, for every pointer event, there will always be either a mouse of touch event alongside it. + * + * @member {boolean} + * @default true + */ + this.autoPreventDefault = options.autoPreventDefault !== undefined ? options.autoPreventDefault : true; + + /** + * Frequency in milliseconds that the mousemove, mouseover & mouseout interaction events will be checked. + * + * @member {number} + * @default 10 + */ + this.interactionFrequency = options.interactionFrequency || 10; + + /** + * The mouse data + * + * @member {PIXI.interaction.InteractionData} + */ + this.mouse = new InteractionData(); + this.mouse.identifier = MOUSE_POINTER_ID; + + // setting the mouse to start off far off screen will mean that mouse over does + // not get called before we even move the mouse. + this.mouse.global.set(-999999); + + /** + * Actively tracked InteractionData + * + * @private + * @member {Object.} + */ + this.activeInteractionData = {}; + this.activeInteractionData[MOUSE_POINTER_ID] = this.mouse; + + /** + * Pool of unused InteractionData + * + * @private + * @member {PIXI.interaction.InteractionData[]} + */ + this.interactionDataPool = []; + + /** + * An event data object to handle all the event tracking/dispatching + * + * @member {object} + */ + this.eventData = new InteractionEvent(); + + /** + * The DOM element to bind to. + * + * @protected + * @member {HTMLElement} + */ + this.interactionDOMElement = null; + + /** + * This property determines if mousemove and touchmove events are fired only when the cursor + * is over the object. + * Setting to true will make things work more in line with how the DOM version works. + * Setting to false can make things easier for things like dragging + * It is currently set to false as this is how PixiJS used to work. This will be set to true in + * future versions of pixi. + * + * @member {boolean} + * @default false + */ + this.moveWhenInside = false; + + /** + * Have events been attached to the dom element? + * + * @protected + * @member {boolean} + */ + this.eventsAdded = false; + + /** + * Is the mouse hovering over the renderer? + * + * @protected + * @member {boolean} + */ + this.mouseOverRenderer = false; + + /** + * Does the device support touch events + * https://www.w3.org/TR/touch-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsTouchEvents = 'ontouchstart' in window; + + /** + * Does the device support pointer events + * https://www.w3.org/Submission/pointer-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsPointerEvents = !!window.PointerEvent; + + // this will make it so that you don't have to call bind all the time + + /** + * @private + * @member {Function} + */ + this.onPointerUp = this.onPointerUp.bind(this); + this.processPointerUp = this.processPointerUp.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerCancel = this.onPointerCancel.bind(this); + this.processPointerCancel = this.processPointerCancel.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerDown = this.onPointerDown.bind(this); + this.processPointerDown = this.processPointerDown.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerMove = this.onPointerMove.bind(this); + this.processPointerMove = this.processPointerMove.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOut = this.onPointerOut.bind(this); + this.processPointerOverOut = this.processPointerOverOut.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOver = this.onPointerOver.bind(this); + + /** + * Dictionary of how different cursor modes are handled. Strings are handled as CSS cursor + * values, objects are handled as dictionaries of CSS values for interactionDOMElement, + * and functions are called instead of changing the CSS. + * Default CSS cursor values are provided for 'default' and 'pointer' modes. + * @member {Object.} + */ + this.cursorStyles = { + default: 'inherit', + pointer: 'pointer', + }; + + /** + * The mode of the cursor that is being used. + * The value of this is a key from the cursorStyles dictionary. + * + * @member {string} + */ + this.currentCursorMode = null; + + /** + * Internal cached let. + * + * @private + * @member {string} + */ + this.cursor = null; + + /** + * Internal cached let. + * + * @private + * @member {PIXI.Point} + */ + this._tempPoint = new Point(); + + /** + * The current resolution / device pixel ratio. + * + * @member {number} + * @default 1 + */ + this.resolution = 1; + + /** + * Delayed pointer events. Used to guarantee correct ordering of over/out events. + * + * @private + * @member {Array} + */ + this.delayedEvents = []; + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display + * object. + * + * @event PIXI.interaction.InteractionManager#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. + * + * @event PIXI.interaction.InteractionManager#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. + * + * @event PIXI.interaction.InteractionManager#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. + * + * @event PIXI.interaction.InteractionManager#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. + * + * @event PIXI.interaction.InteractionManager#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. + * + * @event PIXI.interaction.InteractionManager#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown}. + * + * @event PIXI.interaction.InteractionManager#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.interaction.InteractionManager#event:rightdown}. + * + * @event PIXI.interaction.InteractionManager#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object + * + * @event PIXI.interaction.InteractionManager#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * + * @event PIXI.interaction.InteractionManager#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * Not always fired when some buttons are held down while others are released. In those cases, + * use [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown} and + * [mouseup]{@link PIXI.interaction.InteractionManager#event:mouseup} instead. + * + * @event PIXI.interaction.InteractionManager#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event + * + * @event PIXI.interaction.InteractionManager#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * + * @event PIXI.interaction.InteractionManager#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.interaction.InteractionManager#event:pointerdown}. + * + * @event PIXI.interaction.InteractionManager#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object + * + * @event PIXI.interaction.InteractionManager#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * + * @event PIXI.interaction.InteractionManager#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * + * @event PIXI.interaction.InteractionManager#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch + * + * @event PIXI.interaction.InteractionManager#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * + * @event PIXI.interaction.InteractionManager#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.interaction.InteractionManager#event:touchstart}. + * + * @event PIXI.interaction.InteractionManager#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * + * @event PIXI.interaction.InteractionManager#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display. + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.DisplayObject#event:mousedown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.DisplayObject#event:rightdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.DisplayObject#event:pointerdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.DisplayObject#event:touchstart}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + this.setTargetElement(this.renderer.view, this.renderer.resolution); + } + + if ( EventEmitter ) InteractionManager.__proto__ = EventEmitter; + InteractionManager.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + InteractionManager.prototype.constructor = InteractionManager; + + /** + * Hit tests a point against the display tree, returning the first interactive object that is hit. + * + * @param {PIXI.Point} globalPoint - A point to hit test with, in global space. + * @param {PIXI.Container} [root] - The root display object to start from. If omitted, defaults + * to the last rendered root of the associated renderer. + * @return {PIXI.DisplayObject} The hit display object, if any. + */ + InteractionManager.prototype.hitTest = function hitTest (globalPoint, root) + { + // clear the target for our hit test + hitTestEvent.target = null; + // assign the global point + hitTestEvent.data.global = globalPoint; + // ensure safety of the root + if (!root) + { + root = this.renderer._lastObjectRendered; + } + // run the hit test + this.processInteractive(hitTestEvent, root, null, true); + // return our found object - it'll be null if we didn't hit anything + + return hitTestEvent.target; + }; + + /** + * Sets the DOM element which will receive mouse/touch events. This is useful for when you have + * other DOM elements on top of the renderers Canvas element. With this you'll be bale to delegate + * another DOM element to receive those events. + * + * @param {HTMLElement} element - the DOM element which will receive mouse and touch events. + * @param {number} [resolution=1] - The resolution / device pixel ratio of the new element (relative to the canvas). + */ + InteractionManager.prototype.setTargetElement = function setTargetElement (element, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + this.removeEvents(); + + this.interactionDOMElement = element; + + this.resolution = resolution; + + this.addEvents(); + }; + + /** + * Registers all the DOM events + * + * @private + */ + InteractionManager.prototype.addEvents = function addEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.add(this.update, this, UPDATE_PRIORITY.INTERACTION); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = 'none'; + this.interactionDOMElement.style['-ms-touch-action'] = 'none'; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = 'none'; + } + + /** + * These events are added first, so that if pointer events are normalized, they are fired + * in the same order as non-normalized events. ie. pointer event 1st, mouse / touch 2nd + */ + if (this.supportsPointerEvents) + { + window.document.addEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('pointerdown', this.onPointerDown, true); + // pointerout is fired in addition to pointerup (for touch events) and pointercancel + // we already handle those, so for the purposes of what we do in onPointerOut, we only + // care about the pointerleave event + this.interactionDOMElement.addEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('pointerover', this.onPointerOver, true); + window.addEventListener('pointercancel', this.onPointerCancel, true); + window.addEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.addEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('mouseover', this.onPointerOver, true); + window.addEventListener('mouseup', this.onPointerUp, true); + } + + // always look directly for touch events so that we can provide original data + // In a future version we should change this to being just a fallback and rely solely on + // PointerEvents whenever available + if (this.supportsTouchEvents) + { + this.interactionDOMElement.addEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.addEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.addEventListener('touchmove', this.onPointerMove, true); + } + + this.eventsAdded = true; + }; + + /** + * Removes all the DOM events that were previously registered + * + * @private + */ + InteractionManager.prototype.removeEvents = function removeEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.remove(this.update, this); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = ''; + this.interactionDOMElement.style['-ms-touch-action'] = ''; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = ''; + } + + if (this.supportsPointerEvents) + { + window.document.removeEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('pointerdown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('pointerover', this.onPointerOver, true); + window.removeEventListener('pointercancel', this.onPointerCancel, true); + window.removeEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.removeEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('mouseover', this.onPointerOver, true); + window.removeEventListener('mouseup', this.onPointerUp, true); + } + + if (this.supportsTouchEvents) + { + this.interactionDOMElement.removeEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.removeEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.removeEventListener('touchmove', this.onPointerMove, true); + } + + this.interactionDOMElement = null; + + this.eventsAdded = false; + }; + + /** + * Updates the state of interactive objects. + * Invoked by a throttled ticker update from {@link PIXI.Ticker.system}. + * + * @param {number} deltaTime - time delta since last tick + */ + InteractionManager.prototype.update = function update (deltaTime) + { + this._deltaTime += deltaTime; + + if (this._deltaTime < this.interactionFrequency) + { + return; + } + + this._deltaTime = 0; + + if (!this.interactionDOMElement) + { + return; + } + + // if the user move the mouse this check has already been done using the mouse move! + if (this.didMove) + { + this.didMove = false; + + return; + } + + this.cursor = null; + + // Resets the flag as set by a stopPropagation call. This flag is usually reset by a user interaction of any kind, + // but there was a scenario of a display object moving under a static mouse cursor. + // In this case, mouseover and mouseevents would not pass the flag test in dispatchEvent function + for (var k in this.activeInteractionData) + { + // eslint-disable-next-line no-prototype-builtins + if (this.activeInteractionData.hasOwnProperty(k)) + { + var interactionData = this.activeInteractionData[k]; + + if (interactionData.originalEvent && interactionData.pointerType !== 'touch') + { + var interactionEvent = this.configureInteractionEventForDOMEvent( + this.eventData, + interactionData.originalEvent, + interactionData + ); + + this.processInteractive( + interactionEvent, + this.renderer._lastObjectRendered, + this.processPointerOverOut, + true + ); + } + } + } + + this.setCursorMode(this.cursor); + }; + + /** + * Sets the current cursor mode, handling any callbacks or CSS style changes. + * + * @param {string} mode - cursor mode, a key from the cursorStyles dictionary + */ + InteractionManager.prototype.setCursorMode = function setCursorMode (mode) + { + mode = mode || 'default'; + // if the mode didn't actually change, bail early + if (this.currentCursorMode === mode) + { + return; + } + this.currentCursorMode = mode; + var style = this.cursorStyles[mode]; + + // only do things if there is a cursor style for it + if (style) + { + switch (typeof style) + { + case 'string': + // string styles are handled as cursor CSS + this.interactionDOMElement.style.cursor = style; + break; + case 'function': + // functions are just called, and passed the cursor mode + style(mode); + break; + case 'object': + // if it is an object, assume that it is a dictionary of CSS styles, + // apply it to the interactionDOMElement + Object.assign(this.interactionDOMElement.style, style); + break; + } + } + else if (typeof mode === 'string' && !Object.prototype.hasOwnProperty.call(this.cursorStyles, mode)) + { + // if it mode is a string (not a Symbol) and cursorStyles doesn't have any entry + // for the mode, then assume that the dev wants it to be CSS for the cursor. + this.interactionDOMElement.style.cursor = mode; + } + }; + + /** + * Dispatches an event on the display object that was interacted with + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.dispatchEvent = function dispatchEvent (displayObject, eventString, eventData) + { + // Even if the event was stopped, at least dispatch any remaining events + // for the same display object. + if (!eventData.stopPropagationHint || displayObject === eventData.stopsPropagatingAt) + { + eventData.currentTarget = displayObject; + eventData.type = eventString; + + displayObject.emit(eventString, eventData); + + if (displayObject[eventString]) + { + displayObject[eventString](eventData); + } + } + }; + + /** + * Puts a event on a queue to be dispatched later. This is used to guarantee correct + * ordering of over/out events. + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.delayDispatchEvent = function delayDispatchEvent (displayObject, eventString, eventData) + { + this.delayedEvents.push({ displayObject: displayObject, eventString: eventString, eventData: eventData }); + }; + + /** + * Maps x and y coords from a DOM object and maps them correctly to the PixiJS view. The + * resulting value is stored in the point. This takes into account the fact that the DOM + * element could be scaled and positioned anywhere on the screen. + * + * @param {PIXI.Point} point - the point that the result will be stored in + * @param {number} x - the x coord of the position to map + * @param {number} y - the y coord of the position to map + */ + InteractionManager.prototype.mapPositionToPoint = function mapPositionToPoint (point, x, y) + { + var rect; + + // IE 11 fix + if (!this.interactionDOMElement.parentElement) + { + rect = { x: 0, y: 0, width: 0, height: 0 }; + } + else + { + rect = this.interactionDOMElement.getBoundingClientRect(); + } + + var resolutionMultiplier = 1.0 / this.resolution; + + point.x = ((x - rect.left) * (this.interactionDOMElement.width / rect.width)) * resolutionMultiplier; + point.y = ((y - rect.top) * (this.interactionDOMElement.height / rect.height)) * resolutionMultiplier; + }; + + /** + * This function is provides a neat way of crawling through the scene graph and running a + * specified function on all interactive objects it finds. It will also take care of hit + * testing the interactive objects and passes the hit across in the function. + * + * @protected + * @param {PIXI.interaction.InteractionEvent} interactionEvent - event containing the point that + * is tested for collision + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the displayObject + * that will be hit test (recursively crawls its children) + * @param {Function} [func] - the function that will be called on each interactive object. The + * interactionEvent, displayObject and hit will be passed to the function + * @param {boolean} [hitTest] - this indicates if the objects inside should be hit test against the point + * @param {boolean} [interactive] - Whether the displayObject is interactive + * @param {boolean} [skipDelayed] - Whether to process delayed events before returning. This is + * used to avoid processing them too early during recursive calls. + * @return {boolean} returns true if the displayObject hit the point + */ + InteractionManager.prototype.processInteractive = function processInteractive (interactionEvent, displayObject, func, hitTest, interactive, skipDelayed) + { + if (!displayObject || !displayObject.visible) + { + return false; + } + + var point = interactionEvent.data.global; + + // Took a little while to rework this function correctly! But now it is done and nice and optimized! ^_^ + // + // This function will now loop through all objects and then only hit test the objects it HAS + // to, not all of them. MUCH faster.. + // An object will be hit test if the following is true: + // + // 1: It is interactive. + // 2: It belongs to a parent that is interactive AND one of the parents children have not already been hit. + // + // As another little optimization once an interactive object has been hit we can carry on + // through the scenegraph, but we know that there will be no more hits! So we can avoid extra hit tests + // A final optimization is that an object is not hit test directly if a child has already been hit. + + interactive = displayObject.interactive || interactive; + + var hit = false; + var interactiveParent = interactive; + + // Flag here can set to false if the event is outside the parents hitArea or mask + var hitTestChildren = true; + + // If there is a hitArea, no need to test against anything else if the pointer is not within the hitArea + // There is also no longer a need to hitTest children. + if (displayObject.hitArea) + { + if (hitTest) + { + displayObject.worldTransform.applyInverse(point, this._tempPoint); + if (!displayObject.hitArea.contains(this._tempPoint.x, this._tempPoint.y)) + { + hitTest = false; + hitTestChildren = false; + } + else + { + hit = true; + } + } + interactiveParent = false; + } + // If there is a mask, no need to hitTest against anything else if the pointer is not within the mask. + // We still want to hitTestChildren, however, to ensure a mouseout can still be generated. + // https://github.com/pixijs/pixi.js/issues/5135 + else if (displayObject._mask) + { + if (hitTest) + { + if (!(displayObject._mask.containsPoint && displayObject._mask.containsPoint(point))) + { + hitTest = false; + } + } + } + + // ** FREE TIP **! If an object is not interactive or has no buttons in it + // (such as a game scene!) set interactiveChildren to false for that displayObject. + // This will allow PixiJS to completely ignore and bypass checking the displayObjects children. + if (hitTestChildren && displayObject.interactiveChildren && displayObject.children) + { + var children = displayObject.children; + + for (var i = children.length - 1; i >= 0; i--) + { + var child = children[i]; + + // time to get recursive.. if this function will return if something is hit.. + var childHit = this.processInteractive(interactionEvent, child, func, hitTest, interactiveParent, true); + + if (childHit) + { + // its a good idea to check if a child has lost its parent. + // this means it has been removed whilst looping so its best + if (!child.parent) + { + continue; + } + + // we no longer need to hit test any more objects in this container as we we + // now know the parent has been hit + interactiveParent = false; + + // If the child is interactive , that means that the object hit was actually + // interactive and not just the child of an interactive object. + // This means we no longer need to hit test anything else. We still need to run + // through all objects, but we don't need to perform any hit tests. + + if (childHit) + { + if (interactionEvent.target) + { + hitTest = false; + } + hit = true; + } + } + } + } + + // no point running this if the item is not interactive or does not have an interactive parent. + if (interactive) + { + // if we are hit testing (as in we have no hit any objects yet) + // We also don't need to worry about hit testing if once of the displayObjects children + // has already been hit - but only if it was interactive, otherwise we need to keep + // looking for an interactive child, just in case we hit one + if (hitTest && !interactionEvent.target) + { + // already tested against hitArea if it is defined + if (!displayObject.hitArea && displayObject.containsPoint) + { + if (displayObject.containsPoint(point)) + { + hit = true; + } + } + } + + if (displayObject.interactive) + { + if (hit && !interactionEvent.target) + { + interactionEvent.target = displayObject; + } + + if (func) + { + func(interactionEvent, displayObject, !!hit); + } + } + } + + var delayedEvents = this.delayedEvents; + + if (delayedEvents.length && !skipDelayed) + { + // Reset the propagation hint, because we start deeper in the tree again. + interactionEvent.stopPropagationHint = false; + + var delayedLen = delayedEvents.length; + + this.delayedEvents = []; + + for (var i$1 = 0; i$1 < delayedLen; i$1++) + { + var ref = delayedEvents[i$1]; + var displayObject$1 = ref.displayObject; + var eventString = ref.eventString; + var eventData = ref.eventData; + + // When we reach the object we wanted to stop propagating at, + // set the propagation hint. + if (eventData.stopsPropagatingAt === displayObject$1) + { + eventData.stopPropagationHint = true; + } + + this.dispatchEvent(displayObject$1, eventString, eventData); + } + } + + return hit; + }; + + /** + * Is called when the pointer button is pressed down on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being pressed down + */ + InteractionManager.prototype.onPointerDown = function onPointerDown (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + /** + * No need to prevent default on natural pointer events, as there are no side effects + * Normalized events, however, may have the double mousedown/touchstart issue on the native android browser, + * so still need to be prevented. + */ + + // Guaranteed that there will be at least one event in events, and all events must have the same pointer type + + if (this.autoPreventDefault && events[0].isNormalized) + { + var cancelable = originalEvent.cancelable || !('cancelable' in originalEvent); + + if (cancelable) + { + originalEvent.preventDefault(); + } + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerDown, true); + + this.emit('pointerdown', interactionEvent); + if (event.pointerType === 'touch') + { + this.emit('touchstart', interactionEvent); + } + // emit a mouse event for "pen" pointers, the way a browser would emit a fallback event + else if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? 'rightdown' : 'mousedown', this.eventData); + } + } + }; + + /** + * Processes the result of the pointer down check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerDown = function processPointerDown (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + var id = interactionEvent.data.identifier; + + if (hit) + { + if (!displayObject.trackedPointers[id]) + { + displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + this.dispatchEvent(displayObject, 'pointerdown', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchstart', interactionEvent); + } + else if (data.pointerType === 'mouse' || data.pointerType === 'pen') + { + var isRightButton = data.button === 2; + + if (isRightButton) + { + displayObject.trackedPointers[id].rightDown = true; + } + else + { + displayObject.trackedPointers[id].leftDown = true; + } + + this.dispatchEvent(displayObject, isRightButton ? 'rightdown' : 'mousedown', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being released + * @param {boolean} cancelled - true if the pointer is cancelled + * @param {Function} func - Function passed to {@link processInteractive} + */ + InteractionManager.prototype.onPointerComplete = function onPointerComplete (originalEvent, cancelled, func) + { + var events = this.normalizeToPointerData(originalEvent); + + var eventLen = events.length; + + // if the event wasn't targeting our canvas, then consider it to be pointerupoutside + // in all cases (unless it was a pointercancel) + var eventAppend = originalEvent.target !== this.interactionDOMElement ? 'outside' : ''; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + // perform hit testing for events targeting our canvas or cancel events + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, func, cancelled || !eventAppend); + + this.emit(cancelled ? 'pointercancel' : ("pointerup" + eventAppend), interactionEvent); + + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? ("rightup" + eventAppend) : ("mouseup" + eventAppend), interactionEvent); + } + else if (event.pointerType === 'touch') + { + this.emit(cancelled ? 'touchcancel' : ("touchend" + eventAppend), interactionEvent); + this.releaseInteractionDataForPointerId(event.pointerId, interactionData); + } + } + }; + + /** + * Is called when the pointer button is cancelled + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerCancel = function onPointerCancel (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, true, this.processPointerCancel); + }; + + /** + * Processes the result of the pointer cancel check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + */ + InteractionManager.prototype.processPointerCancel = function processPointerCancel (interactionEvent, displayObject) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + if (displayObject.trackedPointers[id] !== undefined) + { + delete displayObject.trackedPointers[id]; + this.dispatchEvent(displayObject, 'pointercancel', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchcancel', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerUp = function onPointerUp (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, false, this.processPointerUp); + }; + + /** + * Processes the result of the pointer up check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerUp = function processPointerUp (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var trackingData = displayObject.trackedPointers[id]; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + // need to track mouse down status in the mouse block so that we can emit + // event in a later block + var isMouseTap = false; + + // Mouse only + if (isMouse) + { + var isRightButton = data.button === 2; + + var flags = InteractionTrackingData.FLAGS; + + var test = isRightButton ? flags.RIGHT_DOWN : flags.LEFT_DOWN; + + var isDown = trackingData !== undefined && (trackingData.flags & test); + + if (hit) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightup' : 'mouseup', interactionEvent); + + if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightclick' : 'click', interactionEvent); + // because we can confirm that the mousedown happened on this object, flag for later emit of pointertap + isMouseTap = true; + } + } + else if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightupoutside' : 'mouseupoutside', interactionEvent); + } + // update the down state of the tracking data + if (trackingData) + { + if (isRightButton) + { + trackingData.rightDown = false; + } + else + { + trackingData.leftDown = false; + } + } + } + + // Pointers and Touches, and Mouse + if (hit) + { + this.dispatchEvent(displayObject, 'pointerup', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchend', interactionEvent); } + + if (trackingData) + { + // emit pointertap if not a mouse, or if the mouse block decided it was a tap + if (!isMouse || isMouseTap) + { + this.dispatchEvent(displayObject, 'pointertap', interactionEvent); + } + if (isTouch) + { + this.dispatchEvent(displayObject, 'tap', interactionEvent); + // touches are no longer over (if they ever were) when we get the touchend + // so we should ensure that we don't keep pretending that they are + trackingData.over = false; + } + } + } + else if (trackingData) + { + this.dispatchEvent(displayObject, 'pointerupoutside', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchendoutside', interactionEvent); } + } + // Only remove the tracking data if there is no over/down state still associated with it + if (trackingData && trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + }; + + /** + * Is called when the pointer moves across the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer moving + */ + InteractionManager.prototype.onPointerMove = function onPointerMove (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + if (events[0].pointerType === 'mouse' || events[0].pointerType === 'pen') + { + this.didMove = true; + + this.cursor = null; + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerMove, true); + + this.emit('pointermove', interactionEvent); + if (event.pointerType === 'touch') { this.emit('touchmove', interactionEvent); } + if (event.pointerType === 'mouse' || event.pointerType === 'pen') { this.emit('mousemove', interactionEvent); } + } + + if (events[0].pointerType === 'mouse') + { + this.setCursorMode(this.cursor); + + // TODO BUG for parents interactive object (border order issue) + } + }; + + /** + * Processes the result of the pointer move check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerMove = function processPointerMove (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + if (isMouse) + { + this.processPointerOverOut(interactionEvent, displayObject, hit); + } + + if (!this.moveWhenInside || hit) + { + this.dispatchEvent(displayObject, 'pointermove', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchmove', interactionEvent); } + if (isMouse) { this.dispatchEvent(displayObject, 'mousemove', interactionEvent); } + } + }; + + /** + * Is called when the pointer is moved out of the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer being moved out + */ + InteractionManager.prototype.onPointerOut = function onPointerOut (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOut, so events will always be length 1 + var event = events[0]; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = false; + this.setCursorMode(null); + } + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerOverOut, false); + + this.emit('pointerout', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseout', interactionEvent); + } + else + { + // we can get touchleave events after touchend, so we want to make sure we don't + // introduce memory leaks + this.releaseInteractionDataForPointerId(interactionData.identifier); + } + }; + + /** + * Processes the result of the pointer over/out check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerOverOut = function processPointerOverOut (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + var trackingData = displayObject.trackedPointers[id]; + + // if we just moused over the display object, then we need to track that state + if (hit && !trackingData) + { + trackingData = displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + + if (trackingData === undefined) { return; } + + if (hit && this.mouseOverRenderer) + { + if (!trackingData.over) + { + trackingData.over = true; + this.delayDispatchEvent(displayObject, 'pointerover', interactionEvent); + if (isMouse) + { + this.delayDispatchEvent(displayObject, 'mouseover', interactionEvent); + } + } + + // only change the cursor if it has not already been changed (by something deeper in the + // display tree) + if (isMouse && this.cursor === null) + { + this.cursor = displayObject.cursor; + } + } + else if (trackingData.over) + { + trackingData.over = false; + this.dispatchEvent(displayObject, 'pointerout', this.eventData); + if (isMouse) + { + this.dispatchEvent(displayObject, 'mouseout', interactionEvent); + } + // if there is no mouse down information for the pointer, then it is safe to delete + if (trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + } + }; + + /** + * Is called when the pointer is moved into the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being moved into the renderer view + */ + InteractionManager.prototype.onPointerOver = function onPointerOver (originalEvent) + { + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOver, so events will always be length 1 + var event = events[0]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = true; + } + + this.emit('pointerover', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseover', interactionEvent); + } + }; + + /** + * Get InteractionData for a given pointerId. Store that data as well + * + * @private + * @param {PointerEvent} event - Normalized pointer event, output from normalizeToPointerData + * @return {PIXI.interaction.InteractionData} - Interaction data for the given pointer identifier + */ + InteractionManager.prototype.getInteractionDataForPointerId = function getInteractionDataForPointerId (event) + { + var pointerId = event.pointerId; + + var interactionData; + + if (pointerId === MOUSE_POINTER_ID || event.pointerType === 'mouse') + { + interactionData = this.mouse; + } + else if (this.activeInteractionData[pointerId]) + { + interactionData = this.activeInteractionData[pointerId]; + } + else + { + interactionData = this.interactionDataPool.pop() || new InteractionData(); + interactionData.identifier = pointerId; + this.activeInteractionData[pointerId] = interactionData; + } + // copy properties from the event, so that we can make sure that touch/pointer specific + // data is available + interactionData.copyEvent(event); + + return interactionData; + }; + + /** + * Return unused InteractionData to the pool, for a given pointerId + * + * @private + * @param {number} pointerId - Identifier from a pointer event + */ + InteractionManager.prototype.releaseInteractionDataForPointerId = function releaseInteractionDataForPointerId (pointerId) + { + var interactionData = this.activeInteractionData[pointerId]; + + if (interactionData) + { + delete this.activeInteractionData[pointerId]; + interactionData.reset(); + this.interactionDataPool.push(interactionData); + } + }; + + /** + * Configure an InteractionEvent to wrap a DOM PointerEvent and InteractionData + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The event to be configured + * @param {PointerEvent} pointerEvent - The DOM event that will be paired with the InteractionEvent + * @param {PIXI.interaction.InteractionData} interactionData - The InteractionData that will be paired + * with the InteractionEvent + * @return {PIXI.interaction.InteractionEvent} the interaction event that was passed in + */ + InteractionManager.prototype.configureInteractionEventForDOMEvent = function configureInteractionEventForDOMEvent (interactionEvent, pointerEvent, interactionData) + { + interactionEvent.data = interactionData; + + this.mapPositionToPoint(interactionData.global, pointerEvent.clientX, pointerEvent.clientY); + + // Not really sure why this is happening, but it's how a previous version handled things + if (pointerEvent.pointerType === 'touch') + { + pointerEvent.globalX = interactionData.global.x; + pointerEvent.globalY = interactionData.global.y; + } + + interactionData.originalEvent = pointerEvent; + interactionEvent.reset(); + + return interactionEvent; + }; + + /** + * Ensures that the original event object contains all data that a regular pointer event would have + * + * @private + * @param {TouchEvent|MouseEvent|PointerEvent} event - The original event data from a touch or mouse event + * @return {PointerEvent[]} An array containing a single normalized pointer event, in the case of a pointer + * or mouse event, or a multiple normalized pointer events if there are multiple changed touches + */ + InteractionManager.prototype.normalizeToPointerData = function normalizeToPointerData (event) + { + var normalizedEvents = []; + + if (this.supportsTouchEvents && event instanceof TouchEvent) + { + for (var i = 0, li = event.changedTouches.length; i < li; i++) + { + var touch = event.changedTouches[i]; + + if (typeof touch.button === 'undefined') { touch.button = event.touches.length ? 1 : 0; } + if (typeof touch.buttons === 'undefined') { touch.buttons = event.touches.length ? 1 : 0; } + if (typeof touch.isPrimary === 'undefined') + { + touch.isPrimary = event.touches.length === 1 && event.type === 'touchstart'; + } + if (typeof touch.width === 'undefined') { touch.width = touch.radiusX || 1; } + if (typeof touch.height === 'undefined') { touch.height = touch.radiusY || 1; } + if (typeof touch.tiltX === 'undefined') { touch.tiltX = 0; } + if (typeof touch.tiltY === 'undefined') { touch.tiltY = 0; } + if (typeof touch.pointerType === 'undefined') { touch.pointerType = 'touch'; } + if (typeof touch.pointerId === 'undefined') { touch.pointerId = touch.identifier || 0; } + if (typeof touch.pressure === 'undefined') { touch.pressure = touch.force || 0.5; } + if (typeof touch.twist === 'undefined') { touch.twist = 0; } + if (typeof touch.tangentialPressure === 'undefined') { touch.tangentialPressure = 0; } + // TODO: Remove these, as layerX/Y is not a standard, is deprecated, has uneven + // support, and the fill ins are not quite the same + // offsetX/Y might be okay, but is not the same as clientX/Y when the canvas's top + // left is not 0,0 on the page + if (typeof touch.layerX === 'undefined') { touch.layerX = touch.offsetX = touch.clientX; } + if (typeof touch.layerY === 'undefined') { touch.layerY = touch.offsetY = touch.clientY; } + + // mark the touch as normalized, just so that we know we did it + touch.isNormalized = true; + + normalizedEvents.push(touch); + } + } + // apparently PointerEvent subclasses MouseEvent, so yay + else if (event instanceof MouseEvent && (!this.supportsPointerEvents || !(event instanceof window.PointerEvent))) + { + if (typeof event.isPrimary === 'undefined') { event.isPrimary = true; } + if (typeof event.width === 'undefined') { event.width = 1; } + if (typeof event.height === 'undefined') { event.height = 1; } + if (typeof event.tiltX === 'undefined') { event.tiltX = 0; } + if (typeof event.tiltY === 'undefined') { event.tiltY = 0; } + if (typeof event.pointerType === 'undefined') { event.pointerType = 'mouse'; } + if (typeof event.pointerId === 'undefined') { event.pointerId = MOUSE_POINTER_ID; } + if (typeof event.pressure === 'undefined') { event.pressure = 0.5; } + if (typeof event.twist === 'undefined') { event.twist = 0; } + if (typeof event.tangentialPressure === 'undefined') { event.tangentialPressure = 0; } + + // mark the mouse event as normalized, just so that we know we did it + event.isNormalized = true; + + normalizedEvents.push(event); + } + else + { + normalizedEvents.push(event); + } + + return normalizedEvents; + }; + + /** + * Destroys the interaction manager + * + */ + InteractionManager.prototype.destroy = function destroy () + { + this.removeEvents(); + + this.removeAllListeners(); + + this.renderer = null; + + this.mouse = null; + + this.eventData = null; + + this.interactionDOMElement = null; + + this.onPointerDown = null; + this.processPointerDown = null; + + this.onPointerUp = null; + this.processPointerUp = null; + + this.onPointerCancel = null; + this.processPointerCancel = null; + + this.onPointerMove = null; + this.processPointerMove = null; + + this.onPointerOut = null; + this.processPointerOverOut = null; + + this.onPointerOver = null; + + this._tempPoint = null; + }; + + return InteractionManager; +}(eventemitter3)); + +/*! + * @pixi/graphics - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/graphics is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Graphics curves resolution settings. If `adaptive` flag is set to `true`, + * the resolution is calculated based on the curve's length to ensure better visual quality. + * Adaptive draw works with `bezierCurveTo` and `quadraticCurveTo`. + * + * @static + * @constant + * @memberof PIXI + * @name GRAPHICS_CURVES + * @type {object} + * @property {boolean} adaptive=false - flag indicating if the resolution should be adaptive + * @property {number} maxLength=10 - maximal length of a single segment of the curve (if adaptive = false, ignored) + * @property {number} minSegments=8 - minimal number of segments in the curve (if adaptive = false, ignored) + * @property {number} maxSegments=2048 - maximal number of segments in the curve (if adaptive = false, ignored) + */ +var GRAPHICS_CURVES = { + adaptive: true, + maxLength: 10, + minSegments: 8, + maxSegments: 2048, + _segmentsCount: function _segmentsCount(length, defaultSegments) + { + if ( defaultSegments === void 0 ) defaultSegments = 20; + + if (!this.adaptive) + { + return defaultSegments; + } + + var result = Math.ceil(length / this.maxLength); + + if (result < this.minSegments) + { + result = this.minSegments; + } + else if (result > this.maxSegments) + { + result = this.maxSegments; + } + + return result; + }, +}; + +/** + * Fill style object for Graphics. + * + * @class + * @memberof PIXI + */ +var FillStyle = function FillStyle() +{ + this.reset(); +}; + +/** + * Clones the object + * + * @return {PIXI.FillStyle} + */ +FillStyle.prototype.clone = function clone () +{ + var obj = new FillStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + + return obj; +}; + +/** + * Reset + */ +FillStyle.prototype.reset = function reset () +{ + /** + * The hex color value used when coloring the Graphics object. + * + * @member {number} + * @default 1 + */ + this.color = 0xFFFFFF; + + /** + * The alpha value used when filling the Graphics object. + * + * @member {number} + * @default 1 + */ + this.alpha = 1; + + /** + * The texture to be used for the fill. + * + * @member {string} + * @default 0 + */ + this.texture = Texture.WHITE; + + /** + * The transform aplpied to the texture. + * + * @member {string} + * @default 0 + */ + this.matrix = null; + + /** + * If the current fill is visible. + * + * @member {boolean} + * @default false + */ + this.visible = false; +}; + +/** + * Destroy and don't use after this + */ +FillStyle.prototype.destroy = function destroy () +{ + this.texture = null; + this.matrix = null; +}; + +/** + * A class to contain data useful for Graphics objects + * + * @class + * @memberof PIXI + */ +var GraphicsData = function GraphicsData(shape, fillStyle, lineStyle, matrix) +{ + if ( fillStyle === void 0 ) fillStyle = null; + if ( lineStyle === void 0 ) lineStyle = null; + if ( matrix === void 0 ) matrix = null; + + /** + * The shape object to draw. + * @member {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} + */ + this.shape = shape; + + /** + * The style of the line. + * @member {PIXI.LineStyle} + */ + this.lineStyle = lineStyle; + + /** + * The style of the fill. + * @member {PIXI.FillStyle} + */ + this.fillStyle = fillStyle; + + /** + * The transform matrix. + * @member {PIXI.Matrix} + */ + this.matrix = matrix; + + /** + * The type of the shape, see the Const.Shapes file for all the existing types, + * @member {number} + */ + this.type = shape.type; + + /** + * The collection of points. + * @member {number[]} + */ + this.points = []; + + /** + * The collection of holes. + * @member {PIXI.GraphicsData[]} + */ + this.holes = []; +}; + +/** + * Creates a new GraphicsData object with the same values as this one. + * + * @return {PIXI.GraphicsData} Cloned GraphicsData object + */ +GraphicsData.prototype.clone = function clone () +{ + return new GraphicsData( + this.shape, + this.fillStyle, + this.lineStyle, + this.matrix + ); +}; + +/** + * Destroys the Graphics data. + */ +GraphicsData.prototype.destroy = function destroy () +{ + this.shape = null; + this.holes.length = 0; + this.holes = null; + this.points.length = 0; + this.points = null; + this.lineStyle = null; + this.fillStyle = null; +}; + +/** + * Builds a circle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object to draw + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildCircle = { + + build: function build(graphicsData) + { + // need to convert points to a nice regular data + var circleData = graphicsData.shape; + var points = graphicsData.points; + var x = circleData.x; + var y = circleData.y; + var width; + var height; + + points.length = 0; + + // TODO - bit hacky?? + if (graphicsData.type === SHAPES.CIRC) + { + width = circleData.radius; + height = circleData.radius; + } + else + { + width = circleData.width; + height = circleData.height; + } + + if (width === 0 || height === 0) + { + return; + } + + var totalSegs = Math.floor(30 * Math.sqrt(circleData.radius)) + || Math.floor(15 * Math.sqrt(circleData.width + circleData.height)); + + totalSegs /= 2.3; + + var seg = (Math.PI * 2) / totalSegs; + + for (var i = 0; i < totalSegs; i++) + { + points.push( + x + (Math.sin(-seg * i) * width), + y + (Math.cos(-seg * i) * height) + ); + } + + points.push( + points[0], + points[1] + ); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vertPos = verts.length / 2; + var center = vertPos; + + verts.push(graphicsData.shape.x, graphicsData.shape.y); + + for (var i = 0; i < points.length; i += 2) + { + verts.push(points[i], points[i + 1]); + + // add some uvs + indices.push(vertPos++, center, vertPos); + } + }, +}; + +/** + * Builds a line to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine (graphicsData, graphicsGeometry) +{ + if (graphicsData.lineStyle.native) + { + buildNativeLine(graphicsData, graphicsGeometry); + } + else + { + buildLine$1(graphicsData, graphicsGeometry); + } +} + +/** + * Builds a line to draw using the polygon method. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine$1(graphicsData, graphicsGeometry) +{ + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points.slice(); + var eps = graphicsGeometry.closePointEps; + + if (points.length === 0) + { + return; + } + // if the line width is an odd number add 0.5 to align to a whole pixel + // commenting this out fixes #711 and #1620 + // if (graphicsData.lineWidth%2) + // { + // for (i = 0; i < points.length; i++) + // { + // points[i] += 0.5; + // } + // } + + var style = graphicsData.lineStyle; + + // get first and last point.. figure out the middle! + var firstPoint = new Point(points[0], points[1]); + var lastPoint = new Point(points[points.length - 2], points[points.length - 1]); + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + var closedPath = Math.abs(firstPoint.x - lastPoint.x) < eps + && Math.abs(firstPoint.y - lastPoint.y) < eps; + + // if the first point is the last point - gonna have issues :) + if (closedShape) + { + // need to clone as we are going to slightly modify the shape.. + points = points.slice(); + + if (closedPath) + { + points.pop(); + points.pop(); + lastPoint.set(points[points.length - 2], points[points.length - 1]); + } + + var midPointX = lastPoint.x + ((firstPoint.x - lastPoint.x) * 0.5); + var midPointY = lastPoint.y + ((firstPoint.y - lastPoint.y) * 0.5); + + points.unshift(midPointX, midPointY); + points.push(midPointX, midPointY); + } + + var verts = graphicsGeometry.points; + var length = points.length / 2; + var indexCount = points.length; + var indexStart = verts.length / 2; + + // DRAW the Line + var width = style.width / 2; + + // sort color + var p1x = points[0]; + var p1y = points[1]; + var p2x = points[2]; + var p2y = points[3]; + var p3x = 0; + var p3y = 0; + + var perpx = -(p1y - p2y); + var perpy = p1x - p2x; + var perp2x = 0; + var perp2y = 0; + var perp3x = 0; + var perp3y = 0; + + var dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + var ratio = style.alignment;// 0.5; + var r1 = (1 - ratio) * 2; + var r2 = ratio * 2; + + // start + verts.push( + p1x - (perpx * r1), + p1y - (perpy * r1)); + + verts.push( + p1x + (perpx * r2), + p1y + (perpy * r2)); + + for (var i = 1; i < length - 1; ++i) + { + p1x = points[(i - 1) * 2]; + p1y = points[((i - 1) * 2) + 1]; + + p2x = points[i * 2]; + p2y = points[(i * 2) + 1]; + + p3x = points[(i + 1) * 2]; + p3y = points[((i + 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + perp2x = -(p2y - p3y); + perp2y = p2x - p3x; + + dist = Math.sqrt((perp2x * perp2x) + (perp2y * perp2y)); + perp2x /= dist; + perp2y /= dist; + perp2x *= width; + perp2y *= width; + + var a1 = (-perpy + p1y) - (-perpy + p2y); + var b1 = (-perpx + p2x) - (-perpx + p1x); + var c1 = ((-perpx + p1x) * (-perpy + p2y)) - ((-perpx + p2x) * (-perpy + p1y)); + var a2 = (-perp2y + p3y) - (-perp2y + p2y); + var b2 = (-perp2x + p2x) - (-perp2x + p3x); + var c2 = ((-perp2x + p3x) * (-perp2y + p2y)) - ((-perp2x + p2x) * (-perp2y + p3y)); + + var denom = (a1 * b2) - (a2 * b1); + + if (Math.abs(denom) < 0.1) + { + denom += 10.1; + verts.push( + p2x - (perpx * r1), + p2y - (perpy * r1)); + + verts.push( + p2x + (perpx * r2), + p2y + (perpy * r2)); + + continue; + } + + var px = ((b1 * c2) - (b2 * c1)) / denom; + var py = ((a2 * c1) - (a1 * c2)) / denom; + var pdist = ((px - p2x) * (px - p2x)) + ((py - p2y) * (py - p2y)); + + if (pdist > (196 * width * width)) + { + perp3x = perpx - perp2x; + perp3y = perpy - perp2y; + + dist = Math.sqrt((perp3x * perp3x) + (perp3y * perp3y)); + perp3x /= dist; + perp3y /= dist; + perp3x *= width; + perp3y *= width; + + verts.push(p2x - (perp3x * r1), p2y - (perp3y * r1)); + + verts.push(p2x + (perp3x * r2), p2y + (perp3y * r2)); + + verts.push(p2x - (perp3x * r2 * r1), p2y - (perp3y * r1)); + + indexCount++; + } + else + { + verts.push(p2x + ((px - p2x) * r1), p2y + ((py - p2y) * r1)); + + verts.push(p2x - ((px - p2x) * r2), p2y - ((py - p2y) * r2)); + } + } + + p1x = points[(length - 2) * 2]; + p1y = points[((length - 2) * 2) + 1]; + + p2x = points[(length - 1) * 2]; + p2y = points[((length - 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + verts.push(p2x - (perpx * r1), p2y - (perpy * r1)); + + verts.push(p2x + (perpx * r2), p2y + (perpy * r2)); + + var indices = graphicsGeometry.indices; + + // indices.push(indexStart); + + for (var i$1 = 0; i$1 < indexCount - 2; ++i$1) + { + indices.push(indexStart, indexStart + 1, indexStart + 2); + + indexStart++; + } +} + +/** + * Builds a line to draw using the gl.drawArrays(gl.LINES) method + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildNativeLine(graphicsData, graphicsGeometry) +{ + var i = 0; + + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points; + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + + if (points.length === 0) { return; } + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + var length = points.length / 2; + + var startIndex = verts.length / 2; + var currentIndex = startIndex; + + verts.push(points[0], points[1]); + + for (i = 1; i < length; i++) + { + verts.push(points[i * 2], points[(i * 2) + 1]); + indices.push(currentIndex, currentIndex + 1); + + currentIndex++; + } + + if (closedShape) + { + indices.push(currentIndex, startIndex); + } +} + +/** + * Builds a polygon to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildPoly = { + + build: function build(graphicsData) + { + graphicsData.points = graphicsData.shape.points.slice(); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var holes = graphicsData.holes; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + if (points.length >= 6) + { + var holeArray = []; + // Process holes.. + + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + holeArray.push(points.length / 2); + points = points.concat(hole.points); + } + + // sort color + var triangles = earcut_1(points, holeArray, 2); + + if (!triangles) + { + return; + } + + var vertPos = verts.length / 2; + + for (var i$1 = 0; i$1 < triangles.length; i$1 += 3) + { + indices.push(triangles[i$1] + vertPos); + indices.push(triangles[i$1 + 1] + vertPos); + indices.push(triangles[i$1 + 2] + vertPos); + } + + for (var i$2 = 0; i$2 < points.length; i$2++) + { + verts.push(points[i$2]); + } + } + }, +}; + +/** + * Builds a rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRectangle = { + + build: function build(graphicsData) + { + // --- // + // need to convert points to a nice regular data + // + var rectData = graphicsData.shape; + var x = rectData.x; + var y = rectData.y; + var width = rectData.width; + var height = rectData.height; + + var points = graphicsData.points; + + points.length = 0; + + points.push(x, y, + x + width, y, + x + width, y + height, + x, y + height); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + + var vertPos = verts.length / 2; + + verts.push(points[0], points[1], + points[2], points[3], + points[6], points[7], + points[4], points[5]); + + graphicsGeometry.indices.push(vertPos, vertPos + 1, vertPos + 2, + vertPos + 1, vertPos + 2, vertPos + 3); + }, +}; + +/** + * Builds a rounded rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRoundedRectangle = { + + build: function build(graphicsData) + { + var rrectData = graphicsData.shape; + var points = graphicsData.points; + var x = rrectData.x; + var y = rrectData.y; + var width = rrectData.width; + var height = rrectData.height; + + var radius = rrectData.radius; + + points.length = 0; + + quadraticBezierCurve(x, y + radius, + x, y, + x + radius, y, + points); + quadraticBezierCurve(x + width - radius, + y, x + width, y, + x + width, y + radius, + points); + quadraticBezierCurve(x + width, y + height - radius, + x + width, y + height, + x + width - radius, y + height, + points); + quadraticBezierCurve(x + radius, y + height, + x, y + height, + x, y + height - radius, + points); + + // this tiny number deals with the issue that occurs when points overlap and earcut fails to triangulate the item. + // TODO - fix this properly, this is not very elegant.. but it works for now. + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vecPos = verts.length / 2; + + var triangles = earcut_1(points, null, 2); + + for (var i = 0, j = triangles.length; i < j; i += 3) + { + indices.push(triangles[i] + vecPos); + // indices.push(triangles[i] + vecPos); + indices.push(triangles[i + 1] + vecPos); + // indices.push(triangles[i + 2] + vecPos); + indices.push(triangles[i + 2] + vecPos); + } + + for (var i$1 = 0, j$1 = points.length; i$1 < j$1; i$1++) + { + verts.push(points[i$1], points[++i$1]); + } + }, +}; + +/** + * Calculate a single point for a quadratic bezier curve. + * Utility function used by quadraticBezierCurve. + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} n1 - first number + * @param {number} n2 - second number + * @param {number} perc - percentage + * @return {number} the result + * + */ +function getPt(n1, n2, perc) +{ + var diff = n2 - n1; + + return n1 + (diff * perc); +} + +/** + * Calculate the points for a quadratic bezier curve. (helper function..) + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} fromX - Origin point x + * @param {number} fromY - Origin point x + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} [out=[]] - The output array to add points into. If not passed, a new array is created. + * @return {number[]} an array of points + */ +function quadraticBezierCurve(fromX, fromY, cpX, cpY, toX, toY, out) +{ + if ( out === void 0 ) out = []; + + var n = 20; + var points = out; + + var xa = 0; + var ya = 0; + var xb = 0; + var yb = 0; + var x = 0; + var y = 0; + + for (var i = 0, j = 0; i <= n; ++i) + { + j = i / n; + + // The Green Line + xa = getPt(fromX, cpX, j); + ya = getPt(fromY, cpY, j); + xb = getPt(cpX, toX, j); + yb = getPt(cpY, toY, j); + + // The Black Dot + x = getPt(xa, xb, j); + y = getPt(ya, yb, j); + + points.push(x, y); + } + + return points; +} + +var BATCH_POOL = []; +var DRAW_CALL_POOL = []; +var tmpPoint = new Point(); + +/** + * Map of fill commands for each shape type. + * + * @member {Object} + * @private + */ +var fillCommands = {}; + +fillCommands[SHAPES.POLY] = buildPoly; +fillCommands[SHAPES.CIRC] = buildCircle; +fillCommands[SHAPES.ELIP] = buildCircle; +fillCommands[SHAPES.RECT] = buildRectangle; +fillCommands[SHAPES.RREC] = buildRoundedRectangle; + +/** + * A little internal structure to hold interim batch objects. + * + * @private + */ +var BatchPart = function BatchPart() +{ + this.style = null; + this.size = 0; + this.start = 0; + this.attribStart = 0; + this.attribSize = 0; +}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * GraphicsGeometry is designed to not be continually updating the geometry since it's expensive + * to re-tesselate using **earcut**. Consider using {@link PIXI.Mesh} for this use-case, it's much faster. + * + * @class + * @extends PIXI.BatchGeometry + * @memberof PIXI + */ +var GraphicsGeometry = /*@__PURE__*/(function (BatchGeometry) { + function GraphicsGeometry() + { + BatchGeometry.call(this); + + /** + * An array of points to draw, 2 numbers per point + * + * @member {number[]} + * @protected + */ + this.points = []; + + /** + * The collection of colors + * + * @member {number[]} + * @protected + */ + this.colors = []; + + /** + * The UVs collection + * + * @member {number[]} + * @protected + */ + this.uvs = []; + + /** + * The indices of the vertices + * + * @member {number[]} + * @protected + */ + this.indices = []; + + /** + * Reference to the texture IDs. + * + * @member {number[]} + * @protected + */ + this.textureIds = []; + + /** + * The collection of drawn shapes. + * + * @member {PIXI.GraphicsData[]} + * @protected + */ + this.graphicsData = []; + + /** + * Used to detect if the graphics object has changed. + * + * @member {number} + * @protected + */ + this.dirty = 0; + + /** + * Batches need to regenerated if the geometry is updated. + * + * @member {number} + * @protected + */ + this.batchDirty = -1; + + /** + * Used to check if the cache is dirty. + * + * @member {number} + * @protected + */ + this.cacheDirty = -1; + + /** + * Used to detect if we cleared the graphicsData. + * + * @member {number} + * @default 0 + * @protected + */ + this.clearDirty = 0; + + /** + * List of current draw calls drived from the batches. + * + * @member {object[]} + * @protected + */ + this.drawCalls = []; + + /** + * Intermediate abstract format sent to batch system. + * Can be converted to drawCalls or to batchable objects. + * + * @member {object[]} + * @protected + */ + this.batches = []; + + /** + * Index of the last batched shape in the stack of calls. + * + * @member {number} + * @protected + */ + this.shapeIndex = 0; + + /** + * Cached bounds. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + + /** + * The bounds dirty flag. + * + * @member {number} + * @protected + */ + this.boundsDirty = -1; + + /** + * Padding to add to the bounds. + * + * @member {number} + * @default 0 + */ + this.boundsPadding = 0; + + this.batchable = false; + + this.indicesUint16 = null; + + this.uvsFloat32 = null; + + /** + * Minimal distance between points that are considered different. + * Affects line tesselation. + * + * @member {number} + */ + this.closePointEps = 1e-4; + } + + if ( BatchGeometry ) GraphicsGeometry.__proto__ = BatchGeometry; + GraphicsGeometry.prototype = Object.create( BatchGeometry && BatchGeometry.prototype ); + GraphicsGeometry.prototype.constructor = GraphicsGeometry; + + var prototypeAccessors = { bounds: { configurable: true } }; + + /** + * Get the current bounds of the graphic geometry. + * + * @member {PIXI.Bounds} + * @readonly + */ + prototypeAccessors.bounds.get = function () + { + if (this.boundsDirty !== this.dirty) + { + this.boundsDirty = this.dirty; + this.calculateBounds(); + } + + return this._bounds; + }; + + /** + * Call if you changed graphicsData manually. + * Empties all batch buffers. + */ + GraphicsGeometry.prototype.invalidate = function invalidate () + { + this.boundsDirty = -1; + this.dirty++; + this.batchDirty++; + this.shapeIndex = 0; + + this.points.length = 0; + this.colors.length = 0; + this.uvs.length = 0; + this.indices.length = 0; + this.textureIds.length = 0; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var batch = this.batches[i$1]; + + batch.start = 0; + batch.attribStart = 0; + batch.style = null; + BATCH_POOL.push(batch); + } + + this.batches.length = 0; + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.GraphicsGeometry} This GraphicsGeometry object. Good for chaining method calls + */ + GraphicsGeometry.prototype.clear = function clear () + { + if (this.graphicsData.length > 0) + { + this.invalidate(); + this.clearDirty++; + this.graphicsData.length = 0; + } + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.FillStyle} fillStyle - Defines style of the fill. + * @param {PIXI.LineStyle} lineStyle - Defines style of the lines. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawShape = function drawShape (shape, fillStyle, lineStyle, matrix) + { + var data = new GraphicsData(shape, fillStyle, lineStyle, matrix); + + this.graphicsData.push(data); + this.dirty++; + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawHole = function drawHole (shape, matrix) + { + if (!this.graphicsData.length) + { + return null; + } + + var data = new GraphicsData(shape, null, null, matrix); + + var lastShape = this.graphicsData[this.graphicsData.length - 1]; + + data.lineStyle = lastShape.lineStyle; + + lastShape.holes.push(data); + + this.dirty++; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + GraphicsGeometry.prototype.destroy = function destroy (options) + { + BatchGeometry.prototype.destroy.call(this, options); + + // destroy each of the GraphicsData objects + for (var i = 0; i < this.graphicsData.length; ++i) + { + this.graphicsData[i].destroy(); + } + + this.points.length = 0; + this.points = null; + this.colors.length = 0; + this.colors = null; + this.uvs.length = 0; + this.uvs = null; + this.indices.length = 0; + this.indices = null; + this.indexBuffer.destroy(); + this.indexBuffer = null; + this.graphicsData.length = 0; + this.graphicsData = null; + this.drawCalls.length = 0; + this.drawCalls = null; + this.batches.length = 0; + this.batches = null; + this._bounds = null; + }; + + /** + * Check to see if a point is contained within this geometry. + * + * @param {PIXI.Point} point - Point to check if it's contained. + * @return {Boolean} `true` if the point is contained within geometry. + */ + GraphicsGeometry.prototype.containsPoint = function containsPoint (point) + { + var graphicsData = this.graphicsData; + + for (var i = 0; i < graphicsData.length; ++i) + { + var data = graphicsData[i]; + + if (!data.fillStyle.visible) + { + continue; + } + + // only deal with fills.. + if (data.shape) + { + if (data.matrix) + { + data.matrix.applyInverse(point, tmpPoint); + } + else + { + tmpPoint.copyFrom(point); + } + + if (data.shape.contains(tmpPoint.x, tmpPoint.y)) + { + if (data.holes) + { + for (var i$1 = 0; i$1 < data.holes.length; i$1++) + { + var hole = data.holes[i$1]; + + if (hole.shape.contains(tmpPoint.x, tmpPoint.y)) + { + return false; + } + } + } + + return true; + } + } + } + + return false; + }; + + /** + * Generates intermediate batch data. Either gets converted to drawCalls + * or used to convert to batch objects directly by the Graphics object. + */ + GraphicsGeometry.prototype.updateBatches = function updateBatches () + { + if (this.dirty === this.cacheDirty) { return; } + if (this.graphicsData.length === 0) + { + this.batchable = true; + + return; + } + + if (this.dirty !== this.cacheDirty) + { + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + if (data.fillStyle && !data.fillStyle.texture.baseTexture.valid) { return; } + if (data.lineStyle && !data.lineStyle.texture.baseTexture.valid) { return; } + } + } + + this.cacheDirty = this.dirty; + + var uvs = this.uvs; + + var batchPart = null; + var currentTexture = null; + var currentColor = 0; + var currentNative = false; + + if (this.batches.length > 0) + { + batchPart = this.batches[this.batches.length - 1]; + + var style = batchPart.style; + + currentTexture = style.texture.baseTexture; + currentColor = style.color + style.alpha; + currentNative = !!style.native; + } + + for (var i$1 = this.shapeIndex; i$1 < this.graphicsData.length; i$1++) + { + this.shapeIndex++; + + var data$1 = this.graphicsData[i$1]; + var command = fillCommands[data$1.type]; + + var fillStyle = data$1.fillStyle; + var lineStyle = data$1.lineStyle; + + // build out the shapes points.. + command.build(data$1); + + if (data$1.matrix) + { + this.transformPoints(data$1.points, data$1.matrix); + } + + for (var j = 0; j < 2; j++) + { + var style$1 = (j === 0) ? fillStyle : lineStyle; + + if (!style$1.visible) { continue; } + + var nextTexture = style$1.texture.baseTexture; + + var index$1 = this.indices.length; + var attribIndex = this.points.length / 2; + + // close batch if style is different + if (batchPart + && (currentTexture !== nextTexture + || currentColor !== (style$1.color + style$1.alpha) + || currentNative !== !!style$1.native)) + { + batchPart.size = index$1 - batchPart.start; + batchPart.attribSize = attribIndex - batchPart.attribStart; + + if (batchPart.size > 0) + { + batchPart = null; + } + } + // spawn new batch if its first batch or previous was closed + if (!batchPart) + { + batchPart = BATCH_POOL.pop() || new BatchPart(); + this.batches.push(batchPart); + nextTexture.wrapMode = WRAP_MODES.REPEAT; + currentTexture = nextTexture; + currentColor = style$1.color + style$1.alpha; + currentNative = style$1.native; + + batchPart.style = style$1; + batchPart.start = index$1; + batchPart.attribStart = attribIndex; + } + + var start = this.points.length / 2; + + if (j === 0) + { + if (data$1.holes.length) + { + this.processHoles(data$1.holes); + + buildPoly.triangulate(data$1, this); + } + else + { + command.triangulate(data$1, this); + } + } + else + { + buildLine(data$1, this); + + for (var i$2 = 0; i$2 < data$1.holes.length; i$2++) + { + buildLine(data$1.holes[i$2], this); + } + } + + var size = (this.points.length / 2) - start; + + this.addUvs(this.points, uvs, style$1.texture, start, size, style$1.matrix); + } + } + + var index = this.indices.length; + var attrib = this.points.length / 2; + + if (!batchPart) + { + // there are no visible styles in GraphicsData + // its possible that someone wants Graphics just for the bounds + this.batchable = true; + + return; + } + + batchPart.size = index - batchPart.start; + batchPart.attribSize = attrib - batchPart.attribStart; + this.indicesUint16 = new Uint16Array(this.indices); + + // TODO make this a const.. + this.batchable = this.isBatchable(); + + if (this.batchable) + { + this.batchDirty++; + + this.uvsFloat32 = new Float32Array(this.uvs); + + // offset the indices so that it works with the batcher... + for (var i$3 = 0; i$3 < this.batches.length; i$3++) + { + var batch = this.batches[i$3]; + + for (var j$1 = 0; j$1 < batch.size; j$1++) + { + var index$2 = batch.start + j$1; + + this.indicesUint16[index$2] = this.indicesUint16[index$2] - batch.attribStart; + } + } + } + else + { + this.buildDrawCalls(); + } + }; + + /** + * Checks to see if this graphics geometry can be batched. + * Currently it needs to be small enough and not contain any native lines. + * @protected + */ + GraphicsGeometry.prototype.isBatchable = function isBatchable () + { + var batches = this.batches; + + for (var i = 0; i < batches.length; i++) + { + if (batches[i].style.native) + { + return false; + } + } + + return (this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2); + }; + + /** + * Converts intermediate batches data to drawCalls. + * @protected + */ + GraphicsGeometry.prototype.buildDrawCalls = function buildDrawCalls () + { + var TICK = ++BaseTexture._globalBatch; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + var uvs = this.uvs; + var colors = this.colors; + var textureIds = this.textureIds; + + var currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.size = 0; + currentGroup.type = DRAW_MODES.TRIANGLES; + + var textureCount = 0; + var currentTexture = null; + var textureId = 0; + var native = false; + var drawMode = DRAW_MODES.TRIANGLES; + + var index = 0; + + this.drawCalls.push(currentGroup); + + // TODO - this can be simplified + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var data = this.batches[i$1]; + + // TODO add some full on MAX_TEXTURE CODE.. + var MAX_TEXTURES = 8; + + var style = data.style; + + var nextTexture = style.texture.baseTexture; + + if (native !== !!style.native) + { + native = style.native; + drawMode = native ? DRAW_MODES.LINES : DRAW_MODES.TRIANGLES; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + if (currentGroup.size > 0) + { + currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + this.drawCalls.push(currentGroup); + } + + currentGroup.start = index; + currentGroup.size = 0; + currentGroup.textureCount = 0; + currentGroup.type = drawMode; + } + + // TODO add this to the render part.. + nextTexture.touched = 1;// touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + nextTexture.wrapMode = 10497; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + currentGroup.size += data.size; + index += data.size; + + textureId = nextTexture._id; + + this.addColors(colors, style.color, style.alpha, data.attribSize); + this.addTextureIds(textureIds, textureId, data.attribSize); + } + + BaseTexture._globalBatch = TICK; + + // upload.. + // merge for now! + var verts = this.points; + + // verts are 2 positions.. so we * by 3 as there are 6 properties.. then 4 cos its bytes + var glPoints = new ArrayBuffer(verts.length * 3 * 4); + var f32 = new Float32Array(glPoints); + var u32 = new Uint32Array(glPoints); + + var p = 0; + + for (var i$2 = 0; i$2 < verts.length / 2; i$2++) + { + f32[p++] = verts[i$2 * 2]; + f32[p++] = verts[(i$2 * 2) + 1]; + + f32[p++] = uvs[i$2 * 2]; + f32[p++] = uvs[(i$2 * 2) + 1]; + + u32[p++] = colors[i$2]; + + f32[p++] = textureIds[i$2]; + } + + this._buffer.update(glPoints); + this._indexBuffer.update(this.indicesUint16); + }; + + /** + * Process the holes data. + * + * @param {PIXI.GraphicsData[]} holes - Holes to render + * @protected + */ + GraphicsGeometry.prototype.processHoles = function processHoles (holes) + { + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + var command = fillCommands[hole.type]; + + command.build(hole); + + if (hole.matrix) + { + this.transformPoints(hole.points, hole.matrix); + } + } + }; + + /** + * Update the local bounds of the object. Expensive to use performance-wise. + * @protected + */ + GraphicsGeometry.prototype.calculateBounds = function calculateBounds () + { + var minX = Infinity; + var maxX = -Infinity; + + var minY = Infinity; + var maxY = -Infinity; + + if (this.graphicsData.length) + { + var shape = null; + var x = 0; + var y = 0; + var w = 0; + var h = 0; + + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + var type = data.type; + var lineWidth = data.lineStyle ? data.lineStyle.width : 0; + + shape = data.shape; + + if (type === SHAPES.RECT || type === SHAPES.RREC) + { + x = shape.x - (lineWidth / 2); + y = shape.y - (lineWidth / 2); + w = shape.width + lineWidth; + h = shape.height + lineWidth; + + minX = x < minX ? x : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y < minY ? y : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.CIRC) + { + x = shape.x; + y = shape.y; + w = shape.radius + (lineWidth / 2); + h = shape.radius + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.ELIP) + { + x = shape.x; + y = shape.y; + w = shape.width + (lineWidth / 2); + h = shape.height + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else + { + // POLY + var points = shape.points; + var x2 = 0; + var y2 = 0; + var dx = 0; + var dy = 0; + var rw = 0; + var rh = 0; + var cx = 0; + var cy = 0; + + for (var j = 0; j + 2 < points.length; j += 2) + { + x = points[j]; + y = points[j + 1]; + x2 = points[j + 2]; + y2 = points[j + 3]; + dx = Math.abs(x2 - x); + dy = Math.abs(y2 - y); + h = lineWidth; + w = Math.sqrt((dx * dx) + (dy * dy)); + + if (w < 1e-9) + { + continue; + } + + rw = ((h / w * dy) + dx) / 2; + rh = ((h / w * dx) + dy) / 2; + cx = (x2 + x) / 2; + cy = (y2 + y) / 2; + + minX = cx - rw < minX ? cx - rw : minX; + maxX = cx + rw > maxX ? cx + rw : maxX; + + minY = cy - rh < minY ? cy - rh : minY; + maxY = cy + rh > maxY ? cy + rh : maxY; + } + } + } + } + else + { + minX = 0; + maxX = 0; + minY = 0; + maxY = 0; + } + + var padding = this.boundsPadding; + + this._bounds.minX = minX - padding; + this._bounds.maxX = maxX + padding; + + this._bounds.minY = minY - padding; + this._bounds.maxY = maxY + padding; + }; + + /** + * Transform points using matrix. + * + * @protected + * @param {number[]} points - Points to transform + * @param {PIXI.Matrix} matrix - Transform matrix + */ + GraphicsGeometry.prototype.transformPoints = function transformPoints (points, matrix) + { + for (var i = 0; i < points.length / 2; i++) + { + var x = points[(i * 2)]; + var y = points[(i * 2) + 1]; + + points[(i * 2)] = (matrix.a * x) + (matrix.c * y) + matrix.tx; + points[(i * 2) + 1] = (matrix.b * x) + (matrix.d * y) + matrix.ty; + } + }; + + /** + * Add colors. + * + * @protected + * @param {number[]} colors - List of colors to add to + * @param {number} color - Color to add + * @param {number} alpha - Alpha to use + * @param {number} size - Number of colors to add + */ + GraphicsGeometry.prototype.addColors = function addColors (colors, color, alpha, size) + { + // TODO use the premultiply bits Ivan added + var rgb = (color >> 16) + (color & 0xff00) + ((color & 0xff) << 16); + + var rgba = premultiplyTint(rgb, alpha); + + while (size-- > 0) + { + colors.push(rgba); + } + }; + + /** + * Add texture id that the shader/fragment wants to use. + * + * @protected + * @param {number[]} textureIds + * @param {number} id + * @param {number} size + */ + GraphicsGeometry.prototype.addTextureIds = function addTextureIds (textureIds, id, size) + { + while (size-- > 0) + { + textureIds.push(id); + } + }; + + /** + * Generates the UVs for a shape. + * + * @protected + * @param {number[]} verts - Vertices + * @param {number[]} uvs - UVs + * @param {PIXI.Texture} texture - Reference to Texture + * @param {number} start - Index buffer start index. + * @param {number} size - The size/length for index buffer. + * @param {PIXI.Matrix} [matrix] - Optional transform for all points. + */ + GraphicsGeometry.prototype.addUvs = function addUvs (verts, uvs, texture, start, size, matrix) + { + var index = 0; + var uvsStart = uvs.length; + var frame = texture.frame; + + while (index < size) + { + var x = verts[(start + index) * 2]; + var y = verts[((start + index) * 2) + 1]; + + if (matrix) + { + var nx = (matrix.a * x) + (matrix.c * y) + matrix.tx; + + y = (matrix.b * x) + (matrix.d * y) + matrix.ty; + x = nx; + } + + index++; + + uvs.push(x / frame.width, y / frame.height); + } + + var baseTexture = texture.baseTexture; + + if (frame.width < baseTexture.width + || frame.height < baseTexture.height) + { + this.adjustUvs(uvs, texture, uvsStart, size); + } + }; + + /** + * Modify uvs array according to position of texture region + * Does not work with rotated or trimmed textures + * @param {number[]} uvs array + * @param {PIXI.Texture} texture region + * @param {number} start starting index for uvs + * @param {number} size how many points to adjust + */ + GraphicsGeometry.prototype.adjustUvs = function adjustUvs (uvs, texture, start, size) + { + var baseTexture = texture.baseTexture; + var eps = 1e-6; + var finish = start + (size * 2); + var frame = texture.frame; + var scaleX = frame.width / baseTexture.width; + var scaleY = frame.height / baseTexture.height; + var offsetX = frame.x / frame.width; + var offsetY = frame.y / frame.height; + var minX = Math.floor(uvs[start] + eps); + var minY = Math.floor(uvs[start + 1] + eps); + + for (var i = start + 2; i < finish; i += 2) + { + minX = Math.min(minX, Math.floor(uvs[i] + eps)); + minY = Math.min(minY, Math.floor(uvs[i + 1] + eps)); + } + offsetX -= minX; + offsetY -= minY; + for (var i$1 = start; i$1 < finish; i$1 += 2) + { + uvs[i$1] = (uvs[i$1] + offsetX) * scaleX; + uvs[i$1 + 1] = (uvs[i$1 + 1] + offsetY) * scaleY; + } + }; + + Object.defineProperties( GraphicsGeometry.prototype, prototypeAccessors ); + + return GraphicsGeometry; +}(BatchGeometry)); + +/** + * The maximum number of points to consider an object "batchable", + * able to be batched by the renderer's batch system. + * + * @memberof PIXI.GraphicsGeometry + * @static + * @member {number} BATCHABLE_SIZE + * @default 100 + */ +GraphicsGeometry.BATCHABLE_SIZE = 100; + +/** + * Represents the line style for Graphics. + * @memberof PIXI + * @class + * @extends PIXI.FillStyle + */ +var LineStyle = /*@__PURE__*/(function (FillStyle) { + function LineStyle () { + FillStyle.apply(this, arguments); + } + + if ( FillStyle ) LineStyle.__proto__ = FillStyle; + LineStyle.prototype = Object.create( FillStyle && FillStyle.prototype ); + LineStyle.prototype.constructor = LineStyle; + + LineStyle.prototype.clone = function clone () + { + var obj = new LineStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + obj.width = this.width; + obj.alignment = this.alignment; + obj.native = this.native; + + return obj; + }; + /** + * Reset the line style to default. + */ + LineStyle.prototype.reset = function reset () + { + FillStyle.prototype.reset.call(this); + + // Override default line style color + this.color = 0x0; + + /** + * The width (thickness) of any lines drawn. + * + * @member {number} + * @default 0 + */ + this.width = 0; + + /** + * The alignment of any lines drawn (0.5 = middle, 1 = outter, 0 = inner). + * + * @member {number} + * @default 0 + */ + this.alignment = 0.5; + + /** + * If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * + * @member {boolean} + * @default false + */ + this.native = false; + }; + + return LineStyle; +}(FillStyle)); + +/** + * Utilities for bezier curves + * @class + * @private + */ +var BezierUtils = function BezierUtils () {}; + +BezierUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) +{ + var n = 10; + var result = 0.0; + var t = 0.0; + var t2 = 0.0; + var t3 = 0.0; + var nt = 0.0; + var nt2 = 0.0; + var nt3 = 0.0; + var x = 0.0; + var y = 0.0; + var dx = 0.0; + var dy = 0.0; + var prevX = fromX; + var prevY = fromY; + + for (var i = 1; i <= n; ++i) + { + t = i / n; + t2 = t * t; + t3 = t2 * t; + nt = (1.0 - t); + nt2 = nt * nt; + nt3 = nt2 * nt; + + x = (nt3 * fromX) + (3.0 * nt2 * t * cpX) + (3.0 * nt * t2 * cpX2) + (t3 * toX); + y = (nt3 * fromY) + (3.0 * nt2 * t * cpY) + (3 * nt * t2 * cpY2) + (t3 * toY); + dx = prevX - x; + dy = prevY - y; + prevX = x; + prevY = y; + + result += Math.sqrt((dx * dx) + (dy * dy)); + } + + return result; +}; + +/** + * Calculate the points for a bezier curve and then draws it. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Path array to push points into + */ +BezierUtils.curveTo = function curveTo (cpX, cpY, cpX2, cpY2, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + points.length -= 2; + + var n = GRAPHICS_CURVES._segmentsCount( + BezierUtils.curveLength(fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) + ); + + var dt = 0; + var dt2 = 0; + var dt3 = 0; + var t2 = 0; + var t3 = 0; + + points.push(fromX, fromY); + + for (var i = 1, j = 0; i <= n; ++i) + { + j = i / n; + + dt = (1 - j); + dt2 = dt * dt; + dt3 = dt2 * dt; + + t2 = j * j; + t3 = t2 * j; + + points.push( + (dt3 * fromX) + (3 * dt2 * j * cpX) + (3 * dt * t2 * cpX2) + (t3 * toX), + (dt3 * fromY) + (3 * dt2 * j * cpY) + (3 * dt * t2 * cpY2) + (t3 * toY) + ); + } +}; + +/** + * Utilities for quadratic curves + * @class + * @private + */ +var QuadraticUtils = function QuadraticUtils () {}; + +QuadraticUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, toX, toY) +{ + var ax = fromX - (2.0 * cpX) + toX; + var ay = fromY - (2.0 * cpY) + toY; + var bx = (2.0 * cpX) - (2.0 * fromX); + var by = (2.0 * cpY) - (2.0 * fromY); + var a = 4.0 * ((ax * ax) + (ay * ay)); + var b = 4.0 * ((ax * bx) + (ay * by)); + var c = (bx * bx) + (by * by); + + var s = 2.0 * Math.sqrt(a + b + c); + var a2 = Math.sqrt(a); + var a32 = 2.0 * a * a2; + var c2 = 2.0 * Math.sqrt(c); + var ba = b / a2; + + return ( + (a32 * s) + + (a2 * b * (s - c2)) + + ( + ((4.0 * c * a) - (b * b)) + * Math.log(((2.0 * a2) + ba + s) / (ba + c2)) + ) + ) / (4.0 * a32); +}; + +/** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @private + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Points to add segments to. + */ +QuadraticUtils.curveTo = function curveTo (cpX, cpY, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var n = GRAPHICS_CURVES._segmentsCount( + QuadraticUtils.curveLength(fromX, fromY, cpX, cpY, toX, toY) + ); + + var xa = 0; + var ya = 0; + + for (var i = 1; i <= n; ++i) + { + var j = i / n; + + xa = fromX + ((cpX - fromX) * j); + ya = fromY + ((cpY - fromY) * j); + + points.push(xa + (((cpX + ((toX - cpX) * j)) - xa) * j), + ya + (((cpY + ((toY - cpY) * j)) - ya) * j)); + } +}; + +/** + * Utilities for arc curves + * @class + * @private + */ +var ArcUtils = function ArcUtils () {}; + +ArcUtils.curveTo = function curveTo (x1, y1, x2, y2, radius, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var a1 = fromY - y1; + var b1 = fromX - x1; + var a2 = y2 - y1; + var b2 = x2 - x1; + var mm = Math.abs((a1 * b2) - (b1 * a2)); + + if (mm < 1.0e-8 || radius === 0) + { + if (points[points.length - 2] !== x1 || points[points.length - 1] !== y1) + { + points.push(x1, y1); + } + + return null; + } + + var dd = (a1 * a1) + (b1 * b1); + var cc = (a2 * a2) + (b2 * b2); + var tt = (a1 * a2) + (b1 * b2); + var k1 = radius * Math.sqrt(dd) / mm; + var k2 = radius * Math.sqrt(cc) / mm; + var j1 = k1 * tt / dd; + var j2 = k2 * tt / cc; + var cx = (k1 * b2) + (k2 * b1); + var cy = (k1 * a2) + (k2 * a1); + var px = b1 * (k2 + j1); + var py = a1 * (k2 + j1); + var qx = b2 * (k1 + j2); + var qy = a2 * (k1 + j2); + var startAngle = Math.atan2(py - cy, px - cx); + var endAngle = Math.atan2(qy - cy, qx - cx); + + return { + cx: (cx + x1), + cy: (cy + y1), + radius: radius, + startAngle: startAngle, + endAngle: endAngle, + anticlockwise: (b1 * a2 > b2 * a1), + }; +}; + +/** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @private + * @param {number} startX - Start x location of arc + * @param {number} startY - Start y location of arc + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} anticlockwise - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @param {number} n - Number of segments + * @param {number[]} points - Collection of points to add to + */ +ArcUtils.arc = function arc (startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points) +{ + var sweep = endAngle - startAngle; + var n = GRAPHICS_CURVES._segmentsCount( + Math.abs(sweep) * radius, + Math.ceil(Math.abs(sweep) / PI_2) * 40 + ); + + var theta = (sweep) / (n * 2); + var theta2 = theta * 2; + var cTheta = Math.cos(theta); + var sTheta = Math.sin(theta); + var segMinus = n - 1; + var remainder = (segMinus % 1) / segMinus; + + for (var i = 0; i <= segMinus; ++i) + { + var real = i + (remainder * i); + var angle = ((theta) + startAngle + (theta2 * real)); + var c = Math.cos(angle); + var s = -Math.sin(angle); + + points.push( + (((cTheta * c) + (sTheta * s)) * radius) + cx, + (((cTheta * -s) + (sTheta * c)) * radius) + cy + ); + } +}; + +/** + * Draw a star shape with an arbitrary number of points. + * + * @class + * @extends PIXI.Polygon + * @memberof PIXI + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ +var Star = /*@__PURE__*/(function (Polygon) { + function Star(x, y, points, radius, innerRadius, rotation) + { + innerRadius = innerRadius || radius / 2; + + var startAngle = (-1 * Math.PI / 2) + rotation; + var len = points * 2; + var delta = PI_2 / len; + var polygon = []; + + for (var i = 0; i < len; i++) + { + var r = i % 2 ? innerRadius : radius; + var angle = (i * delta) + startAngle; + + polygon.push( + x + (r * Math.cos(angle)), + y + (r * Math.sin(angle)) + ); + } + + Polygon.call(this, polygon); + } + + if ( Polygon ) Star.__proto__ = Polygon; + Star.prototype = Object.create( Polygon && Polygon.prototype ); + Star.prototype.constructor = Star; + + return Star; +}(Polygon)); + +var temp = new Float32Array(3); + +// a default shaders map used by graphics.. +var DEFAULT_SHADERS = {}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * Note that because Graphics can share a GraphicsGeometry with other instances, + * it is necessary to call `destroy()` to properly dereference the underlying + * GraphicsGeometry and avoid a memory leak. Alternatively, keep using the same + * Graphics instance and call `clear()` between redraws. + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Graphics = /*@__PURE__*/(function (Container) { + function Graphics(geometry) + { + if ( geometry === void 0 ) geometry = null; + + Container.call(this); + /** + * Includes vertex positions, face indices, normals, colors, UVs, and + * custom attributes within buffers, reducing the cost of passing all + * this data to the GPU. Can be shared between multiple Mesh or Graphics objects. + * @member {PIXI.GraphicsGeometry} + * @readonly + */ + this.geometry = geometry || new GraphicsGeometry(); + + this.geometry.refCount++; + + /** + * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU. + * Can be shared between multiple Graphics objects. + * @member {PIXI.Shader} + */ + this.shader = null; + + /** + * Represents the WebGL state the Graphics required to render, excludes shader and geometry. E.g., + * blend mode, culling, depth testing, direction of rendering triangles, backface, etc. + * @member {PIXI.State} + */ + this.state = State.for2d(); + + /** + * Current fill style + * + * @member {PIXI.FillStyle} + * @protected + */ + this._fillStyle = new FillStyle(); + + /** + * Current line style + * + * @member {PIXI.LineStyle} + * @protected + */ + this._lineStyle = new LineStyle(); + + /** + * Current shape transform matrix. + * + * @member {PIXI.Matrix} + * @protected + */ + this._matrix = null; + + /** + * Current hole mode is enabled. + * + * @member {boolean} + * @default false + * @protected + */ + this._holeMode = false; + + /** + * Current path + * + * @member {PIXI.Polygon} + * @protected + */ + this.currentPath = null; + + /** + * When cacheAsBitmap is set to true the graphics object will be rendered as if it was a sprite. + * This is useful if your graphics element does not change often, as it will speed up the rendering + * of the object in exchange for taking up texture memory. It is also useful if you need the graphics + * object to be anti-aliased, because it will be rendered using canvas. This is not recommended if + * you are constantly redrawing the graphics element. + * + * @name cacheAsBitmap + * @member {boolean} + * @memberof PIXI.Graphics# + * @default false + */ + + /** + * A collections of batches! These can be drawn by the renderer batch system. + * + * @protected + * @member {object[]} + */ + this.batches = []; + + /** + * Update dirty for limiting calculating tints for batches. + * + * @protected + * @member {number} + * @default -1 + */ + this.batchTint = -1; + + /** + * Copy of the object vertex data. + * + * @protected + * @member {Float32Array} + */ + this.vertexData = null; + + this._transformID = -1; + this.batchDirty = -1; + + /** + * Renderer plugin for batching + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + // Set default + this.tint = 0xFFFFFF; + this.blendMode = BLEND_MODES.NORMAL; + } + + if ( Container ) Graphics.__proto__ = Container; + Graphics.prototype = Object.create( Container && Container.prototype ); + Graphics.prototype.constructor = Graphics; + + var prototypeAccessors = { blendMode: { configurable: true },tint: { configurable: true },fill: { configurable: true },line: { configurable: true } }; + + /** + * Creates a new Graphics object with the same values as this one. + * Note that the only the properties of the object are cloned, not its transform (position,scale,etc) + * + * @return {PIXI.Graphics} A clone of the graphics object + */ + Graphics.prototype.clone = function clone () + { + this.finishPoly(); + + return new Graphics(this.geometry); + }; + + /** + * The blend mode to be applied to the graphic shape. Apply a value of + * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL; + * @see PIXI.BLEND_MODES + */ + prototypeAccessors.blendMode.set = function (value) + { + this.state.blendMode = value; + }; + + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + /** + * The tint applied to the graphic shape. This is a hex value. A value of + * 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + prototypeAccessors.tint.set = function (value) + { + this._tint = value; + }; + + /** + * The current fill style. + * + * @member {PIXI.FillStyle} + * @readonly + */ + prototypeAccessors.fill.get = function () + { + return this._fillStyle; + }; + + /** + * The current line style. + * + * @member {PIXI.LineStyle} + * @readonly + */ + prototypeAccessors.line.get = function () + { + return this._lineStyle; + }; + + /** + * Specifies the line style used for subsequent calls to Graphics methods such as the lineTo() + * method or the drawCircle() method. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineStyle = function lineStyle (width, color, alpha, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + this.lineTextureStyle(width, Texture.WHITE, color, alpha, null, alignment, native); + + return this; + }; + + /** + * Like line style but support texture for line fill. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to use + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {PIXI.Matrix} [matrix=null] Texture matrix to transform texture + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTextureStyle = function lineTextureStyle (width, texture, color, alpha, + matrix, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = width > 0 && alpha > 0; + + if (!visible) + { + this._lineStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._lineStyle, { + color: color, + width: width, + alpha: alpha, + matrix: matrix, + texture: texture, + alignment: alignment, + native: native, + visible: visible, + }); + } + + return this; + }; + + /** + * Start a polygon object internally + * @protected + */ + Graphics.prototype.startPoly = function startPoly () + { + if (this.currentPath) + { + var points = this.currentPath.points; + var len = this.currentPath.points.length; + + if (len > 2) + { + this.drawShape(this.currentPath); + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + this.currentPath.points.push(points[len - 2], points[len - 1]); + } + } + else + { + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + } + }; + + /** + * Finish the polygon object. + * @protected + */ + Graphics.prototype.finishPoly = function finishPoly () + { + if (this.currentPath) + { + if (this.currentPath.points.length > 2) + { + this.drawShape(this.currentPath); + this.currentPath = null; + } + else + { + this.currentPath.points.length = 0; + } + } + }; + + /** + * Moves the current drawing position to x, y. + * + * @param {number} x - the X coordinate to move to + * @param {number} y - the Y coordinate to move to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.moveTo = function moveTo (x, y) + { + this.startPoly(); + this.currentPath.points[0] = x; + this.currentPath.points[1] = y; + + return this; + }; + + /** + * Draws a line using the current line style from the current drawing position to (x, y); + * The current drawing position is then set to (x, y). + * + * @param {number} x - the X coordinate to draw to + * @param {number} y - the Y coordinate to draw to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTo = function lineTo (x, y) + { + if (!this.currentPath) + { + this.moveTo(0, 0); + } + + // remove duplicates.. + var points = this.currentPath.points; + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + if (fromX !== x || fromY !== y) + { + points.push(x, y); + } + + return this; + }; + + /** + * Initialize the curve + * + * @protected + * @param {number} [x=0] + * @param {number} [y=0] + */ + Graphics.prototype._initCurve = function _initCurve (x, y) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + if (this.currentPath) + { + if (this.currentPath.points.length === 0) + { + this.currentPath.points = [x, y]; + } + } + else + { + this.moveTo(x, y); + } + }; + + /** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.quadraticCurveTo = function quadraticCurveTo (cpX, cpY, toX, toY) + { + this._initCurve(); + + var points = this.currentPath.points; + + if (points.length === 0) + { + this.moveTo(0, 0); + } + + QuadraticUtils.curveTo(cpX, cpY, toX, toY, points); + + return this; + }; + + /** + * Calculate the points for a bezier curve and then draws it. + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.bezierCurveTo = function bezierCurveTo (cpX, cpY, cpX2, cpY2, toX, toY) + { + this._initCurve(); + + BezierUtils.curveTo(cpX, cpY, cpX2, cpY2, toX, toY, this.currentPath.points); + + return this; + }; + + /** + * The arcTo() method creates an arc/curve between two tangents on the canvas. + * + * "borrowed" from https://code.google.com/p/fxcanvas/ - thanks google! + * + * @param {number} x1 - The x-coordinate of the first tangent point of the arc + * @param {number} y1 - The y-coordinate of the first tangent point of the arc + * @param {number} x2 - The x-coordinate of the end of the arc + * @param {number} y2 - The y-coordinate of the end of the arc + * @param {number} radius - The radius of the arc + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arcTo = function arcTo (x1, y1, x2, y2, radius) + { + this._initCurve(x1, y1); + + var points = this.currentPath.points; + + var result = ArcUtils.curveTo(x1, y1, x2, y2, radius, points); + + if (result) + { + var cx = result.cx; + var cy = result.cy; + var radius$1 = result.radius; + var startAngle = result.startAngle; + var endAngle = result.endAngle; + var anticlockwise = result.anticlockwise; + + this.arc(cx, cy, radius$1, startAngle, endAngle, anticlockwise); + } + + return this; + }; + + /** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arc = function arc (cx, cy, radius, startAngle, endAngle, anticlockwise) + { + if ( anticlockwise === void 0 ) anticlockwise = false; + + if (startAngle === endAngle) + { + return this; + } + + if (!anticlockwise && endAngle <= startAngle) + { + endAngle += PI_2; + } + else if (anticlockwise && startAngle <= endAngle) + { + startAngle += PI_2; + } + + var sweep = endAngle - startAngle; + + if (sweep === 0) + { + return this; + } + + var startX = cx + (Math.cos(startAngle) * radius); + var startY = cy + (Math.sin(startAngle) * radius); + var eps = this.geometry.closePointEps; + + // If the currentPath exists, take its points. Otherwise call `moveTo` to start a path. + var points = this.currentPath ? this.currentPath.points : null; + + if (points) + { + // TODO: make a better fix. + + // We check how far our start is from the last existing point + var xDiff = Math.abs(points[points.length - 2] - startX); + var yDiff = Math.abs(points[points.length - 1] - startY); + + if (xDiff < eps && yDiff < eps) + ; + else + { + points.push(startX, startY); + } + } + else + { + this.moveTo(startX, startY); + points = this.currentPath.points; + } + + ArcUtils.arc(startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points); + + return this; + }; + + /** + * Specifies a simple one-color fill that subsequent calls to other Graphics methods + * (such as lineTo() or drawCircle()) use when drawing. + * + * @param {number} [color=0] - the color of the fill + * @param {number} [alpha=1] - the alpha of the fill + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginFill = function beginFill (color, alpha) + { + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + + return this.beginTextureFill(Texture.WHITE, color, alpha); + }; + + /** + * Begin the texture fill + * + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to fill + * @param {number} [color=0xffffff] - Background to fill behind texture + * @param {number} [alpha=1] - Alpha of fill + * @param {PIXI.Matrix} [matrix=null] - Transform matrix + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginTextureFill = function beginTextureFill (texture, color, alpha, matrix) + { + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = alpha > 0; + + if (!visible) + { + this._fillStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._fillStyle, { + color: color, + alpha: alpha, + texture: texture, + matrix: matrix, + visible: visible, + }); + } + + return this; + }; + + /** + * Applies a fill to the lines and shapes that were added since the last call to the beginFill() method. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.endFill = function endFill () + { + this.finishPoly(); + + this._fillStyle.reset(); + + return this; + }; + + /** + * Draws a rectangle shape. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRect = function drawRect (x, y, width, height) + { + return this.drawShape(new Rectangle(x, y, width, height)); + }; + + /** + * Draw a rectangle shape with rounded/beveled corners. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @param {number} radius - Radius of the rectangle corners + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRoundedRect = function drawRoundedRect (x, y, width, height, radius) + { + return this.drawShape(new RoundedRectangle(x, y, width, height, radius)); + }; + + /** + * Draws a circle. + * + * @param {number} x - The X coordinate of the center of the circle + * @param {number} y - The Y coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawCircle = function drawCircle (x, y, radius) + { + return this.drawShape(new Circle(x, y, radius)); + }; + + /** + * Draws an ellipse. + * + * @param {number} x - The X coordinate of the center of the ellipse + * @param {number} y - The Y coordinate of the center of the ellipse + * @param {number} width - The half width of the ellipse + * @param {number} height - The half height of the ellipse + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawEllipse = function drawEllipse (x, y, width, height) + { + return this.drawShape(new Ellipse(x, y, width, height)); + }; + + /** + * Draws a polygon using the given path. + * + * @param {number[]|PIXI.Point[]|PIXI.Polygon} path - The path data used to construct the polygon. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawPolygon = function drawPolygon (path) + { + var arguments$1 = arguments; + + // prevents an argument assignment deopt + // see section 3.1: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + var points = path; + + var closeStroke = true;// !!this._fillStyle; + + // check if data has points.. + if (points.points) + { + closeStroke = points.closeStroke; + points = points.points; + } + + if (!Array.isArray(points)) + { + // prevents an argument leak deopt + // see section 3.2: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + points = new Array(arguments.length); + + for (var i = 0; i < points.length; ++i) + { + points[i] = arguments$1[i]; // eslint-disable-line prefer-rest-params + } + } + + var shape = new Polygon(points); + + shape.closeStroke = closeStroke; + + this.drawShape(shape); + + return this; + }; + + /** + * Draw any shape. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - Shape to draw + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawShape = function drawShape (shape) + { + if (!this._holeMode) + { + this.geometry.drawShape( + shape, + this._fillStyle.clone(), + this._lineStyle.clone(), + this._matrix + ); + } + else + { + this.geometry.drawHole(shape, this._matrix); + } + + return this; + }; + + /** + * Draw a star shape with an arbitrary number of points. + * + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawStar = function drawStar (x, y, points, radius, innerRadius, rotation) + { + if ( rotation === void 0 ) rotation = 0; + + return this.drawPolygon(new Star(x, y, points, radius, innerRadius, rotation)); + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.clear = function clear () + { + this.geometry.clear(); + this._lineStyle.reset(); + this._fillStyle.reset(); + + this._matrix = null; + this._holeMode = false; + this.currentPath = null; + + return this; + }; + + /** + * True if graphics consists of one rectangle, and thus, can be drawn like a Sprite and + * masked with gl.scissor. + * + * @returns {boolean} True if only 1 rect. + */ + Graphics.prototype.isFastRect = function isFastRect () + { + // will fix this! + return false; + // this.graphicsData.length === 1 + // && this.graphicsData[0].shape.type === SHAPES.RECT + // && !this.graphicsData[0].lineWidth; + }; + + /** + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._render = function _render (renderer) + { + this.finishPoly(); + + var geometry = this.geometry; + + // batch part.. + // batch it! + geometry.updateBatches(); + + if (geometry.batchable) + { + if (this.batchDirty !== geometry.batchDirty) + { + this._populateBatches(); + } + + this._renderBatched(renderer); + } + else + { + // no batching... + renderer.batch.flush(); + + this._renderDirect(renderer); + } + }; + + /** + * Populating batches for rendering + * + * @protected + */ + Graphics.prototype._populateBatches = function _populateBatches () + { + var geometry = this.geometry; + var blendMode = this.blendMode; + + this.batches = []; + this.batchTint = -1; + this._transformID = -1; + this.batchDirty = geometry.batchDirty; + + this.vertexData = new Float32Array(geometry.points); + + for (var i = 0, l = geometry.batches.length; i < l; i++) + { + var gI = geometry.batches[i]; + var color = gI.style.color; + var vertexData = new Float32Array(this.vertexData.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var uvs = new Float32Array(geometry.uvsFloat32.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var indices = new Uint16Array(geometry.indicesUint16.buffer, + gI.start * 2, + gI.size); + + var batch = { + vertexData: vertexData, + blendMode: blendMode, + indices: indices, + uvs: uvs, + _batchRGB: hex2rgb(color), + _tintRGB: color, + _texture: gI.style.texture, + alpha: gI.style.alpha, + worldAlpha: 1 }; + + this.batches[i] = batch; + } + }; + + /** + * Renders the batches using the BathedRenderer plugin + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderBatched = function _renderBatched (renderer) + { + if (!this.batches.length) + { + return; + } + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + + this.calculateVertices(); + this.calculateTints(); + + for (var i = 0, l = this.batches.length; i < l; i++) + { + var batch = this.batches[i]; + + batch.worldAlpha = this.worldAlpha * batch.alpha; + + renderer.plugins[this.pluginName].render(batch); + } + }; + + /** + * Renders the graphics direct + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderDirect = function _renderDirect (renderer) + { + var shader = this._resolveDirectShader(renderer); + + var geometry = this.geometry; + var tint = this.tint; + var worldAlpha = this.worldAlpha; + var uniforms = shader.uniforms; + var drawCalls = geometry.drawCalls; + + // lets set the transfomr + uniforms.translationMatrix = this.transform.worldTransform; + + // and then lets set the tint.. + uniforms.tint[0] = (((tint >> 16) & 0xFF) / 255) * worldAlpha; + uniforms.tint[1] = (((tint >> 8) & 0xFF) / 255) * worldAlpha; + uniforms.tint[2] = ((tint & 0xFF) / 255) * worldAlpha; + uniforms.tint[3] = worldAlpha; + + // the first draw call, we can set the uniforms of the shader directly here. + + // this means that we can tack advantage of the sync function of pixi! + // bind and sync uniforms.. + // there is a way to optimise this.. + renderer.shader.bind(shader); + renderer.geometry.bind(geometry, shader); + + // set state.. + renderer.state.set(this.state); + + // then render the rest of them... + for (var i = 0, l = drawCalls.length; i < l; i++) + { + this._renderDrawCallDirect(renderer, geometry.drawCalls[i]); + } + }; + + /** + * Renders specific DrawCall + * + * @param {PIXI.Renderer} renderer + * @param {PIXI.BatchDrawCall} drawCall + */ + Graphics.prototype._renderDrawCallDirect = function _renderDrawCallDirect (renderer, drawCall) + { + var groupTextureCount = drawCall.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + renderer.texture.bind(drawCall.textures[j], j); + } + + renderer.geometry.draw(drawCall.type, drawCall.size, drawCall.start); + }; + + /** + * Resolves shader for direct rendering + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._resolveDirectShader = function _resolveDirectShader (renderer) + { + var shader = this.shader; + + var pluginName = this.pluginName; + + if (!shader) + { + // if there is no shader here, we can use the default shader. + // and that only gets created if we actually need it.. + // but may be more than one plugins for graphics + if (!DEFAULT_SHADERS[pluginName]) + { + var sampleValues = new Int32Array(16); + + for (var i = 0; i < 16; i++) + { + sampleValues[i] = i; + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: UniformGroup.from({ uSamplers: sampleValues }, true), + }; + + var program = renderer.plugins[pluginName]._shader.program; + + DEFAULT_SHADERS[pluginName] = new Shader(program, uniforms); + } + + shader = DEFAULT_SHADERS[pluginName]; + } + + return shader; + }; + + /** + * Retrieves the bounds of the graphic shape as a rectangle object + * + * @protected + */ + Graphics.prototype._calculateBounds = function _calculateBounds () + { + this.finishPoly(); + var lb = this.geometry.bounds; + + this._bounds.addFrame(this.transform, lb.minX, lb.minY, lb.maxX, lb.maxY); + }; + + /** + * Tests if a point is inside this graphics object + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Graphics.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, Graphics._TEMP_POINT); + + return this.geometry.containsPoint(Graphics._TEMP_POINT); + }; + + /** + * Recalcuate the tint by applying tin to batches using Graphics tint. + * @protected + */ + Graphics.prototype.calculateTints = function calculateTints () + { + if (this.batchTint !== this.tint) + { + this.batchTint = this.tint; + + var tintRGB = hex2rgb(this.tint, temp); + + for (var i = 0; i < this.batches.length; i++) + { + var batch = this.batches[i]; + + var batchTint = batch._batchRGB; + + var r = (tintRGB[0] * batchTint[0]) * 255; + var g = (tintRGB[1] * batchTint[1]) * 255; + var b = (tintRGB[2] * batchTint[2]) * 255; + + // TODO Ivan, can this be done in one go? + var color = (r << 16) + (g << 8) + (b | 0); + + batch._tintRGB = (color >> 16) + + (color & 0xff00) + + ((color & 0xff) << 16); + } + } + }; + + /** + * If there's a transform update or a change to the shape of the + * geometry, recaculate the vertices. + * @protected + */ + Graphics.prototype.calculateVertices = function calculateVertices () + { + if (this._transformID === this.transform._worldID) + { + return; + } + + this._transformID = this.transform._worldID; + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var data = this.geometry.points;// batch.vertexDataOriginal; + var vertexData = this.vertexData; + + var count = 0; + + for (var i = 0; i < data.length; i += 2) + { + var x = data[i]; + var y = data[i + 1]; + + vertexData[count++] = (a * x) + (c * y) + tx; + vertexData[count++] = (d * y) + (b * x) + ty; + } + }; + + /** + * Closes the current path. + * + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.closePath = function closePath () + { + var currentPath = this.currentPath; + + if (currentPath) + { + // we don't need to add extra point in the end because buildLine will take care of that + currentPath.closeStroke = true; + } + + return this; + }; + + /** + * Apply a matrix to the positional data. + * + * @param {PIXI.Matrix} matrix - Matrix to use for transform current shape. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.setMatrix = function setMatrix (matrix) + { + this._matrix = matrix; + + return this; + }; + + /** + * Begin adding holes to the last draw shape + * IMPORTANT: holes must be fully inside a shape to work + * Also weirdness ensues if holes overlap! + * Ellipses, Circles, Rectangles and Rounded Rectangles cannot be holes or host for holes in CanvasRenderer, + * please use `moveTo` `lineTo`, `quadraticCurveTo` if you rely on pixi-legacy bundle. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.beginHole = function beginHole () + { + this.finishPoly(); + this._holeMode = true; + + return this; + }; + + /** + * End adding holes to the last draw shape + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.endHole = function endHole () + { + this.finishPoly(); + this._holeMode = false; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Graphics.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this.geometry.refCount--; + if (this.geometry.refCount === 0) + { + this.geometry.dispose(); + } + + this._matrix = null; + this.currentPath = null; + this._lineStyle.destroy(); + this._lineStyle = null; + this._fillStyle.destroy(); + this._fillStyle = null; + this.geometry = null; + this.shader = null; + this.vertexData = null; + this.batches.length = 0; + this.batches = null; + + Container.prototype.destroy.call(this, options); + }; + + Object.defineProperties( Graphics.prototype, prototypeAccessors ); + + return Graphics; +}(Container)); + +/** + * Temporary point to use for containsPoint + * + * @static + * @private + * @member {PIXI.Point} + */ +Graphics._TEMP_POINT = new Point(); + +/*! + * @pixi/sprite - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint = new Point(); +var indices = new Uint16Array([0, 1, 2, 0, 2, 3]); + +/** + * The Sprite object is the base for all textured objects that are rendered to the screen +* + * A sprite can be created directly from an image like this: + * + * ```js + * let sprite = PIXI.Sprite.from('assets/image.png'); + * ``` + * + * The more efficient way to create sprites is using a {@link PIXI.Spritesheet}, + * as swapping base textures when rendering to the screen is inefficient. + * + * ```js + * PIXI.Loader.shared.add("assets/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["assets/spritesheet.json"].spritesheet; + * let sprite = new PIXI.Sprite(sheet.textures["image.png"]); + * ... + * } + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Sprite = /*@__PURE__*/(function (Container) { + function Sprite(texture) + { + Container.call(this); + + /** + * The anchor point defines the normalized coordinates + * in the texture that map to the position of this + * sprite. + * + * By default, this is `(0,0)` (or `texture.defaultAnchor` + * if you have modified that), which means the position + * `(x,y)` of this `Sprite` will be the top-left corner. + * + * Note: Updating `texture.defaultAnchor` after + * constructing a `Sprite` does _not_ update its anchor. + * + * {@link https://docs.cocos2d-x.org/cocos2d-x/en/sprites/manipulation.html} + * + * @default `texture.defaultAnchor` + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint( + this._onAnchorUpdate, + this, + (texture ? texture.defaultAnchor.x : 0), + (texture ? texture.defaultAnchor.y : 0) + ); + + /** + * The texture that the sprite is using + * + * @private + * @member {PIXI.Texture} + */ + this._texture = null; + + /** + * The width of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._width = 0; + + /** + * The height of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._height = 0; + + /** + * The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect. + * + * @private + * @member {number} + * @default 0xFFFFFF + */ + this._tint = null; + this._tintRGB = null; + this.tint = 0xFFFFFF; + + /** + * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ + this.blendMode = BLEND_MODES.NORMAL; + + /** + * The shader that will be used to render the sprite. Set to null to remove a current shader. + * + * @member {PIXI.Filter|PIXI.Shader} + */ + this.shader = null; + + /** + * Cached tint value so we can tell when the tint is changed. + * Value is used for 2d CanvasRenderer. + * + * @protected + * @member {number} + * @default 0xFFFFFF + */ + this._cachedTint = 0xFFFFFF; + + /** + * this is used to store the uvs data of the sprite, assigned at the same time + * as the vertexData in calculateVertices() + * + * @private + * @member {Float32Array} + */ + this.uvs = null; + + // call texture setter + this.texture = texture || Texture.EMPTY; + + /** + * this is used to store the vertex data of the sprite (basically a quad) + * + * @private + * @member {Float32Array} + */ + this.vertexData = new Float32Array(8); + + /** + * This is used to calculate the bounds of the object IF it is a trimmed sprite + * + * @private + * @member {Float32Array} + */ + this.vertexTrimmedData = null; + + this._transformID = -1; + this._textureID = -1; + + this._transformTrimmedID = -1; + this._textureTrimmedID = -1; + + // Batchable stuff.. + // TODO could make this a mixin? + this.indices = indices; + this.size = 4; + this.start = 0; + + /** + * Plugin that is responsible for rendering this element. + * Allows to customize the rendering process without overriding '_render' & '_renderCanvas' methods. + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = true; + + /** + * Internal roundPixels field + * + * @member {boolean} + * @private + */ + this._roundPixels = settings.ROUND_PIXELS; + } + + if ( Container ) Sprite.__proto__ = Container; + Sprite.prototype = Object.create( Container && Container.prototype ); + Sprite.prototype.constructor = Sprite; + + var prototypeAccessors = { roundPixels: { configurable: true },width: { configurable: true },height: { configurable: true },anchor: { configurable: true },tint: { configurable: true },texture: { configurable: true } }; + + /** + * When the texture is updated, this event will fire to update the scale and frame + * + * @private + */ + Sprite.prototype._onTextureUpdate = function _onTextureUpdate () + { + this._textureID = -1; + this._textureTrimmedID = -1; + this._cachedTint = 0xFFFFFF; + + // so if _width is 0 then width was not set.. + if (this._width) + { + this.scale.x = sign$1(this.scale.x) * this._width / this._texture.orig.width; + } + + if (this._height) + { + this.scale.y = sign$1(this.scale.y) * this._height / this._texture.orig.height; + } + }; + + /** + * Called when the anchor position updates. + * + * @private + */ + Sprite.prototype._onAnchorUpdate = function _onAnchorUpdate () + { + this._transformID = -1; + this._transformTrimmedID = -1; + }; + + /** + * calculates worldTransform * vertices, store it in vertexData + */ + Sprite.prototype.calculateVertices = function calculateVertices () + { + var texture = this._texture; + + if (this._transformID === this.transform._worldID && this._textureID === texture._updateID) + { + return; + } + + // update texture UV here, because base texture can be changed without calling `_onTextureUpdate` + if (this._textureID !== texture._updateID) + { + this.uvs = this._texture._uvs.uvsFloat32; + } + + this._transformID = this.transform._worldID; + this._textureID = texture._updateID; + + // set the vertex data + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + var vertexData = this.vertexData; + var trim = texture.trim; + var orig = texture.orig; + var anchor = this._anchor; + + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the extra + // space before transforming the sprite coords. + w1 = trim.x - (anchor._x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (anchor._y * orig.height); + h0 = h1 + trim.height; + } + else + { + w1 = -anchor._x * orig.width; + w0 = w1 + orig.width; + + h1 = -anchor._y * orig.height; + h0 = h1 + orig.height; + } + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + + if (this._roundPixels) + { + for (var i = 0; i < 8; i++) + { + vertexData[i] = Math.round(vertexData[i]); + } + } + }; + + /** + * calculates worldTransform * vertices for a non texture with a trim. store it in vertexTrimmedData + * This is used to ensure that the true width and height of a trimmed texture is respected + */ + Sprite.prototype.calculateTrimmedVertices = function calculateTrimmedVertices () + { + if (!this.vertexTrimmedData) + { + this.vertexTrimmedData = new Float32Array(8); + } + else if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID) + { + return; + } + + this._transformTrimmedID = this.transform._worldID; + this._textureTrimmedID = this._texture._updateID; + + // lets do some special trim code! + var texture = this._texture; + var vertexData = this.vertexTrimmedData; + var orig = texture.orig; + var anchor = this._anchor; + + // lets calculate the new untrimmed bounds.. + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var w1 = -anchor._x * orig.width; + var w0 = w1 + orig.width; + + var h1 = -anchor._y * orig.height; + var h0 = h1 + orig.height; + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + }; + + /** + * + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The webgl renderer to use. + */ + Sprite.prototype._render = function _render (renderer) + { + this.calculateVertices(); + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + renderer.plugins[this.pluginName].render(this); + }; + + /** + * Updates the bounds of the sprite. + * + * @protected + */ + Sprite.prototype._calculateBounds = function _calculateBounds () + { + var trim = this._texture.trim; + var orig = this._texture.orig; + + // First lets check to see if the current texture has a trim.. + if (!trim || (trim.width === orig.width && trim.height === orig.height)) + { + // no trim! lets use the usual calculations.. + this.calculateVertices(); + this._bounds.addQuad(this.vertexData); + } + else + { + // lets calculate a special trimmed bounds... + this.calculateTrimmedVertices(); + this._bounds.addQuad(this.vertexTrimmedData); + } + }; + + /** + * Gets the local bounds of the sprite object. + * + * @param {PIXI.Rectangle} [rect] - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Sprite.prototype.getLocalBounds = function getLocalBounds (rect) + { + // we can do a fast local bounds if the sprite has no children! + if (this.children.length === 0) + { + this._bounds.minX = this._texture.orig.width * -this._anchor._x; + this._bounds.minY = this._texture.orig.height * -this._anchor._y; + this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x); + this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y); + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + return this._bounds.getRectangle(rect); + } + + return Container.prototype.getLocalBounds.call(this, rect); + }; + + /** + * Tests if a point is inside this sprite + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Sprite.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, tempPoint); + + var width = this._texture.orig.width; + var height = this._texture.orig.height; + var x1 = -width * this.anchor.x; + var y1 = 0; + + if (tempPoint.x >= x1 && tempPoint.x < x1 + width) + { + y1 = -height * this.anchor.y; + + if (tempPoint.y >= y1 && tempPoint.y < y1 + height) + { + return true; + } + } + + return false; + }; + + /** + * Destroys this sprite and optionally its texture and children + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well + */ + Sprite.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this._texture.off('update', this._onTextureUpdate, this); + + this._anchor = null; + + var destroyTexture = typeof options === 'boolean' ? options : options && options.texture; + + if (destroyTexture) + { + var destroyBaseTexture = typeof options === 'boolean' ? options : options && options.baseTexture; + + this._texture.destroy(!!destroyBaseTexture); + } + + this._texture = null; + this.shader = null; + }; + + // some helper functions.. + + /** + * Helper function that creates a new sprite based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Sprite} The newly created sprite + */ + Sprite.from = function from (source, options) + { + var texture = (source instanceof Texture) + ? source + : Texture.from(source, options); + + return new Sprite(texture); + }; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + prototypeAccessors.roundPixels.set = function (value) + { + if (this._roundPixels !== value) + { + this._transformID = -1; + } + this._roundPixels = value; + }; + + prototypeAccessors.roundPixels.get = function () + { + return this._roundPixels; + }; + + /** + * The width of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * The anchor sets the origin point of the text. The default value is taken from the {@link PIXI.Texture|Texture} + * and passed to the constructor. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * If you pass only single parameter, it will set both x and y to the same value as shown in the example below. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.anchor.set(0.5); // This will set the origin to center. (0.5) is same as (0.5, 0.5). + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + this._anchor.copyFrom(value); + }; + + /** + * The tint applied to the sprite. This is a hex value. + * A value of 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._tint = value; + this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16); + }; + + /** + * The texture that the sprite is using + * + * @member {PIXI.Texture} + */ + prototypeAccessors.texture.get = function () + { + return this._texture; + }; + + prototypeAccessors.texture.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._texture === value) + { + return; + } + + this._texture = value || Texture.EMPTY; + this._cachedTint = 0xFFFFFF; + + this._textureID = -1; + this._textureTrimmedID = -1; + + if (value) + { + // wait for the texture to load + if (value.baseTexture.valid) + { + this._onTextureUpdate(); + } + else + { + value.once('update', this._onTextureUpdate, this); + } + } + }; + + Object.defineProperties( Sprite.prototype, prototypeAccessors ); + + return Sprite; +}(Container)); + +/*! + * @pixi/text - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Constants that define the type of gradient on text. + * + * @static + * @constant + * @name TEXT_GRADIENT + * @memberof PIXI + * @type {object} + * @property {number} LINEAR_VERTICAL Vertical gradient + * @property {number} LINEAR_HORIZONTAL Linear gradient + */ +var TEXT_GRADIENT = { + LINEAR_VERTICAL: 0, + LINEAR_HORIZONTAL: 1, +}; + +// disabling eslint for now, going to rewrite this in v5 + +var defaultStyle = { + align: 'left', + breakWords: false, + dropShadow: false, + dropShadowAlpha: 1, + dropShadowAngle: Math.PI / 6, + dropShadowBlur: 0, + dropShadowColor: 'black', + dropShadowDistance: 5, + fill: 'black', + fillGradientType: TEXT_GRADIENT.LINEAR_VERTICAL, + fillGradientStops: [], + fontFamily: 'Arial', + fontSize: 26, + fontStyle: 'normal', + fontVariant: 'normal', + fontWeight: 'normal', + letterSpacing: 0, + lineHeight: 0, + lineJoin: 'miter', + miterLimit: 10, + padding: 0, + stroke: 'black', + strokeThickness: 0, + textBaseline: 'alphabetic', + trim: false, + whiteSpace: 'pre', + wordWrap: false, + wordWrapWidth: 100, + leading: 0, +}; + +var genericFontFamilies = [ + 'serif', + 'sans-serif', + 'monospace', + 'cursive', + 'fantasy', + 'system-ui' ]; + +/** + * A TextStyle Object contains information to decorate a Text objects. + * + * An instance can be shared between multiple Text objects; then changing the style will update all text objects using it. + * + * A tool can be used to generate a text style [here](https://pixijs.io/pixi-text-style). + * + * @class + * @memberof PIXI + */ +var TextStyle = function TextStyle(style) +{ + this.styleID = 0; + + this.reset(); + + deepCopyProperties(this, style, style); +}; + +var prototypeAccessors$7 = { align: { configurable: true },breakWords: { configurable: true },dropShadow: { configurable: true },dropShadowAlpha: { configurable: true },dropShadowAngle: { configurable: true },dropShadowBlur: { configurable: true },dropShadowColor: { configurable: true },dropShadowDistance: { configurable: true },fill: { configurable: true },fillGradientType: { configurable: true },fillGradientStops: { configurable: true },fontFamily: { configurable: true },fontSize: { configurable: true },fontStyle: { configurable: true },fontVariant: { configurable: true },fontWeight: { configurable: true },letterSpacing: { configurable: true },lineHeight: { configurable: true },leading: { configurable: true },lineJoin: { configurable: true },miterLimit: { configurable: true },padding: { configurable: true },stroke: { configurable: true },strokeThickness: { configurable: true },textBaseline: { configurable: true },trim: { configurable: true },whiteSpace: { configurable: true },wordWrap: { configurable: true },wordWrapWidth: { configurable: true } }; + +/** + * Creates a new TextStyle object with the same values as this one. + * Note that the only the properties of the object are cloned. + * + * @return {PIXI.TextStyle} New cloned TextStyle object + */ +TextStyle.prototype.clone = function clone () +{ + var clonedProperties = {}; + + deepCopyProperties(clonedProperties, this, defaultStyle); + + return new TextStyle(clonedProperties); +}; + +/** + * Resets all properties to the defaults specified in TextStyle.prototype._default + */ +TextStyle.prototype.reset = function reset () +{ + deepCopyProperties(this, defaultStyle, defaultStyle); +}; + +/** + * Alignment for multiline text ('left', 'center' or 'right'), does not affect single line text + * + * @member {string} + */ +prototypeAccessors$7.align.get = function () +{ + return this._align; +}; +prototypeAccessors$7.align.set = function (align) // eslint-disable-line require-jsdoc +{ + if (this._align !== align) + { + this._align = align; + this.styleID++; + } +}; + +/** + * Indicates if lines can be wrapped within words, it needs wordWrap to be set to true + * + * @member {boolean} + */ +prototypeAccessors$7.breakWords.get = function () +{ + return this._breakWords; +}; +prototypeAccessors$7.breakWords.set = function (breakWords) // eslint-disable-line require-jsdoc +{ + if (this._breakWords !== breakWords) + { + this._breakWords = breakWords; + this.styleID++; + } +}; + +/** + * Set a drop shadow for the text + * + * @member {boolean} + */ +prototypeAccessors$7.dropShadow.get = function () +{ + return this._dropShadow; +}; +prototypeAccessors$7.dropShadow.set = function (dropShadow) // eslint-disable-line require-jsdoc +{ + if (this._dropShadow !== dropShadow) + { + this._dropShadow = dropShadow; + this.styleID++; + } +}; + +/** + * Set alpha for the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAlpha.get = function () +{ + return this._dropShadowAlpha; +}; +prototypeAccessors$7.dropShadowAlpha.set = function (dropShadowAlpha) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAlpha !== dropShadowAlpha) + { + this._dropShadowAlpha = dropShadowAlpha; + this.styleID++; + } +}; + +/** + * Set a angle of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAngle.get = function () +{ + return this._dropShadowAngle; +}; +prototypeAccessors$7.dropShadowAngle.set = function (dropShadowAngle) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAngle !== dropShadowAngle) + { + this._dropShadowAngle = dropShadowAngle; + this.styleID++; + } +}; + +/** + * Set a shadow blur radius + * + * @member {number} + */ +prototypeAccessors$7.dropShadowBlur.get = function () +{ + return this._dropShadowBlur; +}; +prototypeAccessors$7.dropShadowBlur.set = function (dropShadowBlur) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowBlur !== dropShadowBlur) + { + this._dropShadowBlur = dropShadowBlur; + this.styleID++; + } +}; + +/** + * A fill style to be used on the dropshadow e.g 'red', '#00FF00' + * + * @member {string|number} + */ +prototypeAccessors$7.dropShadowColor.get = function () +{ + return this._dropShadowColor; +}; +prototypeAccessors$7.dropShadowColor.set = function (dropShadowColor) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(dropShadowColor); + if (this._dropShadowColor !== outputColor) + { + this._dropShadowColor = outputColor; + this.styleID++; + } +}; + +/** + * Set a distance of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowDistance.get = function () +{ + return this._dropShadowDistance; +}; +prototypeAccessors$7.dropShadowDistance.set = function (dropShadowDistance) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowDistance !== dropShadowDistance) + { + this._dropShadowDistance = dropShadowDistance; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text e.g 'red', '#00FF00'. + * Can be an array to create a gradient eg ['#000000','#FFFFFF'] + * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle|MDN} + * + * @member {string|string[]|number|number[]|CanvasGradient|CanvasPattern} + */ +prototypeAccessors$7.fill.get = function () +{ + return this._fill; +}; +prototypeAccessors$7.fill.set = function (fill) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(fill); + if (this._fill !== outputColor) + { + this._fill = outputColor; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this can change the type/direction of the gradient. + * See {@link PIXI.TEXT_GRADIENT} + * + * @member {number} + */ +prototypeAccessors$7.fillGradientType.get = function () +{ + return this._fillGradientType; +}; +prototypeAccessors$7.fillGradientType.set = function (fillGradientType) // eslint-disable-line require-jsdoc +{ + if (this._fillGradientType !== fillGradientType) + { + this._fillGradientType = fillGradientType; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this array can set the stop points + * (numbers between 0 and 1) for the color, overriding the default behaviour of evenly spacing them. + * + * @member {number[]} + */ +prototypeAccessors$7.fillGradientStops.get = function () +{ + return this._fillGradientStops; +}; +prototypeAccessors$7.fillGradientStops.set = function (fillGradientStops) // eslint-disable-line require-jsdoc +{ + if (!areArraysEqual(this._fillGradientStops,fillGradientStops)) + { + this._fillGradientStops = fillGradientStops; + this.styleID++; + } +}; + +/** + * The font family + * + * @member {string|string[]} + */ +prototypeAccessors$7.fontFamily.get = function () +{ + return this._fontFamily; +}; +prototypeAccessors$7.fontFamily.set = function (fontFamily) // eslint-disable-line require-jsdoc +{ + if (this.fontFamily !== fontFamily) + { + this._fontFamily = fontFamily; + this.styleID++; + } +}; + +/** + * The font size + * (as a number it converts to px, but as a string, equivalents are '26px','20pt','160%' or '1.6em') + * + * @member {number|string} + */ +prototypeAccessors$7.fontSize.get = function () +{ + return this._fontSize; +}; +prototypeAccessors$7.fontSize.set = function (fontSize) // eslint-disable-line require-jsdoc +{ + if (this._fontSize !== fontSize) + { + this._fontSize = fontSize; + this.styleID++; + } +}; + +/** + * The font style + * ('normal', 'italic' or 'oblique') + * + * @member {string} + */ +prototypeAccessors$7.fontStyle.get = function () +{ + return this._fontStyle; +}; +prototypeAccessors$7.fontStyle.set = function (fontStyle) // eslint-disable-line require-jsdoc +{ + if (this._fontStyle !== fontStyle) + { + this._fontStyle = fontStyle; + this.styleID++; + } +}; + +/** + * The font variant + * ('normal' or 'small-caps') + * + * @member {string} + */ +prototypeAccessors$7.fontVariant.get = function () +{ + return this._fontVariant; +}; +prototypeAccessors$7.fontVariant.set = function (fontVariant) // eslint-disable-line require-jsdoc +{ + if (this._fontVariant !== fontVariant) + { + this._fontVariant = fontVariant; + this.styleID++; + } +}; + +/** + * The font weight + * ('normal', 'bold', 'bolder', 'lighter' and '100', '200', '300', '400', '500', '600', '700', 800' or '900') + * + * @member {string} + */ +prototypeAccessors$7.fontWeight.get = function () +{ + return this._fontWeight; +}; +prototypeAccessors$7.fontWeight.set = function (fontWeight) // eslint-disable-line require-jsdoc +{ + if (this._fontWeight !== fontWeight) + { + this._fontWeight = fontWeight; + this.styleID++; + } +}; + +/** + * The amount of spacing between letters, default is 0 + * + * @member {number} + */ +prototypeAccessors$7.letterSpacing.get = function () +{ + return this._letterSpacing; +}; +prototypeAccessors$7.letterSpacing.set = function (letterSpacing) // eslint-disable-line require-jsdoc +{ + if (this._letterSpacing !== letterSpacing) + { + this._letterSpacing = letterSpacing; + this.styleID++; + } +}; + +/** + * The line height, a number that represents the vertical space that a letter uses + * + * @member {number} + */ +prototypeAccessors$7.lineHeight.get = function () +{ + return this._lineHeight; +}; +prototypeAccessors$7.lineHeight.set = function (lineHeight) // eslint-disable-line require-jsdoc +{ + if (this._lineHeight !== lineHeight) + { + this._lineHeight = lineHeight; + this.styleID++; + } +}; + +/** + * The space between lines + * + * @member {number} + */ +prototypeAccessors$7.leading.get = function () +{ + return this._leading; +}; +prototypeAccessors$7.leading.set = function (leading) // eslint-disable-line require-jsdoc +{ + if (this._leading !== leading) + { + this._leading = leading; + this.styleID++; + } +}; + +/** + * The lineJoin property sets the type of corner created, it can resolve spiked text issues. + * Default is 'miter' (creates a sharp corner). + * + * @member {string} + */ +prototypeAccessors$7.lineJoin.get = function () +{ + return this._lineJoin; +}; +prototypeAccessors$7.lineJoin.set = function (lineJoin) // eslint-disable-line require-jsdoc +{ + if (this._lineJoin !== lineJoin) + { + this._lineJoin = lineJoin; + this.styleID++; + } +}; + +/** + * The miter limit to use when using the 'miter' lineJoin mode + * This can reduce or increase the spikiness of rendered text. + * + * @member {number} + */ +prototypeAccessors$7.miterLimit.get = function () +{ + return this._miterLimit; +}; +prototypeAccessors$7.miterLimit.set = function (miterLimit) // eslint-disable-line require-jsdoc +{ + if (this._miterLimit !== miterLimit) + { + this._miterLimit = miterLimit; + this.styleID++; + } +}; + +/** + * Occasionally some fonts are cropped. Adding some padding will prevent this from happening + * by adding padding to all sides of the text. + * + * @member {number} + */ +prototypeAccessors$7.padding.get = function () +{ + return this._padding; +}; +prototypeAccessors$7.padding.set = function (padding) // eslint-disable-line require-jsdoc +{ + if (this._padding !== padding) + { + this._padding = padding; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text stroke + * e.g 'blue', '#FCFF00' + * + * @member {string|number} + */ +prototypeAccessors$7.stroke.get = function () +{ + return this._stroke; +}; +prototypeAccessors$7.stroke.set = function (stroke) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(stroke); + if (this._stroke !== outputColor) + { + this._stroke = outputColor; + this.styleID++; + } +}; + +/** + * A number that represents the thickness of the stroke. + * Default is 0 (no stroke) + * + * @member {number} + */ +prototypeAccessors$7.strokeThickness.get = function () +{ + return this._strokeThickness; +}; +prototypeAccessors$7.strokeThickness.set = function (strokeThickness) // eslint-disable-line require-jsdoc +{ + if (this._strokeThickness !== strokeThickness) + { + this._strokeThickness = strokeThickness; + this.styleID++; + } +}; + +/** + * The baseline of the text that is rendered. + * + * @member {string} + */ +prototypeAccessors$7.textBaseline.get = function () +{ + return this._textBaseline; +}; +prototypeAccessors$7.textBaseline.set = function (textBaseline) // eslint-disable-line require-jsdoc +{ + if (this._textBaseline !== textBaseline) + { + this._textBaseline = textBaseline; + this.styleID++; + } +}; + +/** + * Trim transparent borders + * + * @member {boolean} + */ +prototypeAccessors$7.trim.get = function () +{ + return this._trim; +}; +prototypeAccessors$7.trim.set = function (trim) // eslint-disable-line require-jsdoc +{ + if (this._trim !== trim) + { + this._trim = trim; + this.styleID++; + } +}; + +/** + * How newlines and spaces should be handled. + * Default is 'pre' (preserve, preserve). + * + * value | New lines | Spaces + * --- | --- | --- + * 'normal' | Collapse | Collapse + * 'pre' | Preserve | Preserve + * 'pre-line' | Preserve | Collapse + * + * @member {string} + */ +prototypeAccessors$7.whiteSpace.get = function () +{ + return this._whiteSpace; +}; +prototypeAccessors$7.whiteSpace.set = function (whiteSpace) // eslint-disable-line require-jsdoc +{ + if (this._whiteSpace !== whiteSpace) + { + this._whiteSpace = whiteSpace; + this.styleID++; + } +}; + +/** + * Indicates if word wrap should be used + * + * @member {boolean} + */ +prototypeAccessors$7.wordWrap.get = function () +{ + return this._wordWrap; +}; +prototypeAccessors$7.wordWrap.set = function (wordWrap) // eslint-disable-line require-jsdoc +{ + if (this._wordWrap !== wordWrap) + { + this._wordWrap = wordWrap; + this.styleID++; + } +}; + +/** + * The width at which text will wrap, it needs wordWrap to be set to true + * + * @member {number} + */ +prototypeAccessors$7.wordWrapWidth.get = function () +{ + return this._wordWrapWidth; +}; +prototypeAccessors$7.wordWrapWidth.set = function (wordWrapWidth) // eslint-disable-line require-jsdoc +{ + if (this._wordWrapWidth !== wordWrapWidth) + { + this._wordWrapWidth = wordWrapWidth; + this.styleID++; + } +}; + +/** + * Generates a font style string to use for `TextMetrics.measureFont()`. + * + * @return {string} Font style string, for passing to `TextMetrics.measureFont()` + */ +TextStyle.prototype.toFontString = function toFontString () +{ + // build canvas api font setting from individual components. Convert a numeric this.fontSize to px + var fontSizeString = (typeof this.fontSize === 'number') ? ((this.fontSize) + "px") : this.fontSize; + + // Clean-up fontFamily property by quoting each font name + // this will support font names with spaces + var fontFamilies = this.fontFamily; + + if (!Array.isArray(this.fontFamily)) + { + fontFamilies = this.fontFamily.split(','); + } + + for (var i = fontFamilies.length - 1; i >= 0; i--) + { + // Trim any extra white-space + var fontFamily = fontFamilies[i].trim(); + + // Check if font already contains strings + if (!(/([\"\'])[^\'\"]+\1/).test(fontFamily) && genericFontFamilies.indexOf(fontFamily) < 0) + { + fontFamily = "\"" + fontFamily + "\""; + } + fontFamilies[i] = fontFamily; + } + + return ((this.fontStyle) + " " + (this.fontVariant) + " " + (this.fontWeight) + " " + fontSizeString + " " + (fontFamilies.join(','))); +}; + +Object.defineProperties( TextStyle.prototype, prototypeAccessors$7 ); + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getSingleColor(color) +{ + if (typeof color === 'number') + { + return hex2string(color); + } + else if ( typeof color === 'string' ) + { + if ( color.indexOf('0x') === 0 ) + { + color = color.replace('0x', '#'); + } + } + + return color; +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getColor(color) +{ + if (!Array.isArray(color)) + { + return getSingleColor(color); + } + else + { + for (var i = 0; i < color.length; ++i) + { + color[i] = getSingleColor(color[i]); + } + + return color; + } +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {Array} array1 First array to compare + * @param {Array} array2 Second array to compare + * @return {boolean} Do the arrays contain the same values in the same order + */ +function areArraysEqual(array1, array2) +{ + if (!Array.isArray(array1) || !Array.isArray(array2)) + { + return false; + } + + if (array1.length !== array2.length) + { + return false; + } + + for (var i = 0; i < array1.length; ++i) + { + if (array1[i] !== array2[i]) + { + return false; + } + } + + return true; +} + +/** + * Utility function to ensure that object properties are copied by value, and not by reference + * @private + * @param {Object} target Target object to copy properties into + * @param {Object} source Source object for the properties to copy + * @param {string} propertyObj Object containing properties names we want to loop over + */ +function deepCopyProperties(target, source, propertyObj) { + for (var prop in propertyObj) { + if (Array.isArray(source[prop])) { + target[prop] = source[prop].slice(); + } else { + target[prop] = source[prop]; + } + } +} + +/** + * The TextMetrics object represents the measurement of a block of text with a specified style. + * + * ```js + * let style = new PIXI.TextStyle({fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}) + * let textMetrics = PIXI.TextMetrics.measureText('Your text', style) + * ``` + * + * @class + * @memberof PIXI + */ +var TextMetrics = function TextMetrics(text, style, width, height, lines, lineWidths, lineHeight, maxLineWidth, fontProperties) +{ + /** + * The text that was measured + * + * @member {string} + */ + this.text = text; + + /** + * The style that was measured + * + * @member {PIXI.TextStyle} + */ + this.style = style; + + /** + * The measured width of the text + * + * @member {number} + */ + this.width = width; + + /** + * The measured height of the text + * + * @member {number} + */ + this.height = height; + + /** + * An array of lines of the text broken by new lines and wrapping is specified in style + * + * @member {string[]} + */ + this.lines = lines; + + /** + * An array of the line widths for each line matched to `lines` + * + * @member {number[]} + */ + this.lineWidths = lineWidths; + + /** + * The measured line height for this style + * + * @member {number} + */ + this.lineHeight = lineHeight; + + /** + * The maximum line width for all measured lines + * + * @member {number} + */ + this.maxLineWidth = maxLineWidth; + + /** + * The font properties object from TextMetrics.measureFont + * + * @member {PIXI.IFontMetrics} + */ + this.fontProperties = fontProperties; +}; + +/** + * Measures the supplied string of text and returns a Rectangle. + * + * @param {string} text - the text to measure. + * @param {PIXI.TextStyle} style - the text style to use for measuring + * @param {boolean} [wordWrap] - optional override for if word-wrap should be applied to the text. + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {PIXI.TextMetrics} measured width and height of the text. + */ +TextMetrics.measureText = function measureText (text, style, wordWrap, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + wordWrap = (wordWrap === undefined || wordWrap === null) ? style.wordWrap : wordWrap; + var font = style.toFontString(); + var fontProperties = TextMetrics.measureFont(font); + + // fallback in case UA disallow canvas data extraction + // (toDataURI, getImageData functions) + if (fontProperties.fontSize === 0) + { + fontProperties.fontSize = style.fontSize; + fontProperties.ascent = style.fontSize; + } + + var context = canvas.getContext('2d'); + + context.font = font; + + var outputText = wordWrap ? TextMetrics.wordWrap(text, style, canvas) : text; + var lines = outputText.split(/(?:\r\n|\r|\n)/); + var lineWidths = new Array(lines.length); + var maxLineWidth = 0; + + for (var i = 0; i < lines.length; i++) + { + var lineWidth = context.measureText(lines[i]).width + ((lines[i].length - 1) * style.letterSpacing); + + lineWidths[i] = lineWidth; + maxLineWidth = Math.max(maxLineWidth, lineWidth); + } + var width = maxLineWidth + style.strokeThickness; + + if (style.dropShadow) + { + width += style.dropShadowDistance; + } + + var lineHeight = style.lineHeight || fontProperties.fontSize + style.strokeThickness; + var height = Math.max(lineHeight, fontProperties.fontSize + style.strokeThickness) + + ((lines.length - 1) * (lineHeight + style.leading)); + + if (style.dropShadow) + { + height += style.dropShadowDistance; + } + + return new TextMetrics( + text, + style, + width, + height, + lines, + lineWidths, + lineHeight + style.leading, + maxLineWidth, + fontProperties + ); +}; + +/** + * Applies newlines to a string to have it optimally fit into the horizontal + * bounds set by the Text object's wordWrapWidth property. + * + * @private + * @param {string} text - String to apply word wrapping to + * @param {PIXI.TextStyle} style - the style to use when wrapping + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {string} New string with new lines applied where required + */ +TextMetrics.wordWrap = function wordWrap (text, style, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + var context = canvas.getContext('2d'); + + var width = 0; + var line = ''; + var lines = ''; + + var cache = {}; + var letterSpacing = style.letterSpacing; + var whiteSpace = style.whiteSpace; + + // How to handle whitespaces + var collapseSpaces = TextMetrics.collapseSpaces(whiteSpace); + var collapseNewlines = TextMetrics.collapseNewlines(whiteSpace); + + // whether or not spaces may be added to the beginning of lines + var canPrependSpaces = !collapseSpaces; + + // There is letterSpacing after every char except the last one + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_! + // so for convenience the above needs to be compared to width + 1 extra letterSpace + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!_ + // ________________________________________________ + // And then the final space is simply no appended to each line + var wordWrapWidth = style.wordWrapWidth + letterSpacing; + + // break text into words, spaces and newline chars + var tokens = TextMetrics.tokenize(text); + + for (var i = 0; i < tokens.length; i++) + { + // get the word, space or newlineChar + var token = tokens[i]; + + // if word is a new line + if (TextMetrics.isNewline(token)) + { + // keep the new line + if (!collapseNewlines) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = !collapseSpaces; + line = ''; + width = 0; + continue; + } + + // if we should collapse new lines + // we simply convert it into a space + token = ' '; + } + + // if we should collapse repeated whitespaces + if (collapseSpaces) + { + // check both this and the last tokens for spaces + var currIsBreakingSpace = TextMetrics.isBreakingSpace(token); + var lastIsBreakingSpace = TextMetrics.isBreakingSpace(line[line.length - 1]); + + if (currIsBreakingSpace && lastIsBreakingSpace) + { + continue; + } + } + + // get word width from cache if possible + var tokenWidth = TextMetrics.getFromCache(token, letterSpacing, cache, context); + + // word is longer than desired bounds + if (tokenWidth > wordWrapWidth) + { + // if we are not already at the beginning of a line + if (line !== '') + { + // start newlines for overflow words + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + // break large word over multiple lines + if (TextMetrics.canBreakWords(token, style.breakWords)) + { + // break word into characters + var characters = token.split(''); + + // loop the characters + for (var j = 0; j < characters.length; j++) + { + var char = characters[j]; + + var k = 1; + // we are not at the end of the token + + while (characters[j + k]) + { + var nextChar = characters[j + k]; + var lastChar = char[char.length - 1]; + + // should not split chars + if (!TextMetrics.canBreakChars(lastChar, nextChar, token, j, style.breakWords)) + { + // combine chars & move forward one + char += nextChar; + } + else + { + break; + } + + k++; + } + + j += char.length - 1; + + var characterWidth = TextMetrics.getFromCache(char, letterSpacing, cache, context); + + if (characterWidth + width > wordWrapWidth) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = false; + line = ''; + width = 0; + } + + line += char; + width += characterWidth; + } + } + + // run word out of the bounds + else + { + // if there are words in this line already + // finish that line and start a new one + if (line.length > 0) + { + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + var isLastToken = i === tokens.length - 1; + + // give it its own line if it's not the end + lines += TextMetrics.addLine(token, !isLastToken); + canPrependSpaces = false; + line = ''; + width = 0; + } + } + + // word could fit + else + { + // word won't fit because of existing words + // start a new line + if (tokenWidth + width > wordWrapWidth) + { + // if its a space we don't want it + canPrependSpaces = false; + + // add a new line + lines += TextMetrics.addLine(line); + + // start a new line + line = ''; + width = 0; + } + + // don't add spaces to the beginning of lines + if (line.length > 0 || !TextMetrics.isBreakingSpace(token) || canPrependSpaces) + { + // add the word to the current line + line += token; + + // update width counter + width += tokenWidth; + } + } + } + + lines += TextMetrics.addLine(line, false); + + return lines; +}; + +/** + * Convienience function for logging each line added during the wordWrap + * method + * + * @private + * @param {string} line - The line of text to add + * @param {boolean} newLine - Add new line character to end + * @return {string} A formatted line + */ +TextMetrics.addLine = function addLine (line, newLine) +{ + if ( newLine === void 0 ) newLine = true; + + line = TextMetrics.trimRight(line); + + line = (newLine) ? (line + "\n") : line; + + return line; +}; + +/** + * Gets & sets the widths of calculated characters in a cache object + * + * @private + * @param {string} key The key + * @param {number} letterSpacing The letter spacing + * @param {object} cache The cache + * @param {CanvasRenderingContext2D} context The canvas context + * @return {number} The from cache. + */ +TextMetrics.getFromCache = function getFromCache (key, letterSpacing, cache, context) +{ + var width = cache[key]; + + if (width === undefined) + { + var spacing = ((key.length) * letterSpacing); + + width = context.measureText(key).width + spacing; + cache[key] = width; + } + + return width; +}; + +/** + * Determines whether we should collapse breaking spaces + * + * @private + * @param {string} whiteSpace The TextStyle property whiteSpace + * @return {boolean} should collapse + */ +TextMetrics.collapseSpaces = function collapseSpaces (whiteSpace) +{ + return (whiteSpace === 'normal' || whiteSpace === 'pre-line'); +}; + +/** + * Determines whether we should collapse newLine chars + * + * @private + * @param {string} whiteSpace The white space + * @return {boolean} should collapse + */ +TextMetrics.collapseNewlines = function collapseNewlines (whiteSpace) +{ + return (whiteSpace === 'normal'); +}; + +/** + * trims breaking whitespaces from string + * + * @private + * @param {string} text The text + * @return {string} trimmed string + */ +TextMetrics.trimRight = function trimRight (text) +{ + if (typeof text !== 'string') + { + return ''; + } + + for (var i = text.length - 1; i >= 0; i--) + { + var char = text[i]; + + if (!TextMetrics.isBreakingSpace(char)) + { + break; + } + + text = text.slice(0, -1); + } + + return text; +}; + +/** + * Determines if char is a newline. + * + * @private + * @param {string} char The character + * @return {boolean} True if newline, False otherwise. + */ +TextMetrics.isNewline = function isNewline (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._newlines.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Determines if char is a breaking whitespace. + * + * @private + * @param {string} char The character + * @return {boolean} True if whitespace, False otherwise. + */ +TextMetrics.isBreakingSpace = function isBreakingSpace (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._breakingSpaces.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Splits a string into words, breaking-spaces and newLine characters + * + * @private + * @param {string} text The text + * @return {string[]} A tokenized array + */ +TextMetrics.tokenize = function tokenize (text) +{ + var tokens = []; + var token = ''; + + if (typeof text !== 'string') + { + return tokens; + } + + for (var i = 0; i < text.length; i++) + { + var char = text[i]; + + if (TextMetrics.isBreakingSpace(char) || TextMetrics.isNewline(char)) + { + if (token !== '') + { + tokens.push(token); + token = ''; + } + + tokens.push(char); + + continue; + } + + token += char; + } + + if (token !== '') + { + tokens.push(token); + } + + return tokens; +}; + +/** + * This method exists to be easily overridden + * It allows one to customise which words should break + * Examples are if the token is CJK or numbers. + * It must return a boolean. + * + * @private + * @param {string} token The token + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakWords = function canBreakWords (token, breakWords) +{ + return breakWords; +}; + +/** + * This method exists to be easily overridden + * It allows one to determine whether a pair of characters + * should be broken by newlines + * For example certain characters in CJK langs or numbers. + * It must return a boolean. + * + * @private + * @param {string} char The character + * @param {string} nextChar The next character + * @param {string} token The token/word the characters are from + * @param {number} index The index in the token of the char + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakChars = function canBreakChars (char, nextChar, token, index, breakWords) // eslint-disable-line no-unused-vars +{ + return true; +}; + +/** + * Calculates the ascent, descent and fontSize of a given font-style + * + * @static + * @param {string} font - String representing the style of the font + * @return {PIXI.IFontMetrics} Font properties object + */ +TextMetrics.measureFont = function measureFont (font) +{ + // as this method is used for preparing assets, don't recalculate things if we don't need to + if (TextMetrics._fonts[font]) + { + return TextMetrics._fonts[font]; + } + + var properties = {}; + + var canvas = TextMetrics._canvas; + var context = TextMetrics._context; + + context.font = font; + + var metricsString = TextMetrics.METRICS_STRING + TextMetrics.BASELINE_SYMBOL; + var width = Math.ceil(context.measureText(metricsString).width); + var baseline = Math.ceil(context.measureText(TextMetrics.BASELINE_SYMBOL).width); + var height = 2 * baseline; + + baseline = baseline * TextMetrics.BASELINE_MULTIPLIER | 0; + + canvas.width = width; + canvas.height = height; + + context.fillStyle = '#f00'; + context.fillRect(0, 0, width, height); + + context.font = font; + + context.textBaseline = 'alphabetic'; + context.fillStyle = '#000'; + context.fillText(metricsString, 0, baseline); + + var imagedata = context.getImageData(0, 0, width, height).data; + var pixels = imagedata.length; + var line = width * 4; + + var i = 0; + var idx = 0; + var stop = false; + + // ascent. scan from top to bottom until we find a non red pixel + for (i = 0; i < baseline; ++i) + { + for (var j = 0; j < line; j += 4) + { + if (imagedata[idx + j] !== 255) + { + stop = true; + break; + } + } + if (!stop) + { + idx += line; + } + else + { + break; + } + } + + properties.ascent = baseline - i; + + idx = pixels - line; + stop = false; + + // descent. scan from bottom to top until we find a non red pixel + for (i = height; i > baseline; --i) + { + for (var j$1 = 0; j$1 < line; j$1 += 4) + { + if (imagedata[idx + j$1] !== 255) + { + stop = true; + break; + } + } + + if (!stop) + { + idx -= line; + } + else + { + break; + } + } + + properties.descent = i - baseline; + properties.fontSize = properties.ascent + properties.descent; + + TextMetrics._fonts[font] = properties; + + return properties; +}; + +/** + * Clear font metrics in metrics cache. + * + * @static + * @param {string} [font] - font name. If font name not set then clear cache for all fonts. + */ +TextMetrics.clearMetrics = function clearMetrics (font) +{ + if ( font === void 0 ) font = ''; + + if (font) + { + delete TextMetrics._fonts[font]; + } + else + { + TextMetrics._fonts = {}; + } +}; + +/** + * Internal return object for {@link PIXI.TextMetrics.measureFont `TextMetrics.measureFont`}. + * + * @typedef {object} FontMetrics + * @property {number} ascent - The ascent distance + * @property {number} descent - The descent distance + * @property {number} fontSize - Font size from ascent to descent + * @memberof PIXI.TextMetrics + * @private + */ + +var canvas = (function () { + try + { + // OffscreenCanvas2D measureText can be up to 40% faster. + var c = new OffscreenCanvas(0, 0); + + return c.getContext('2d') ? c : document.createElement('canvas'); + } + catch (ex) + { + return document.createElement('canvas'); + } +})(); + +canvas.width = canvas.height = 10; + +/** + * Cached canvas element for measuring text + * + * @memberof PIXI.TextMetrics + * @type {HTMLCanvasElement} + * @private + */ +TextMetrics._canvas = canvas; + +/** + * Cache for context to use. + * + * @memberof PIXI.TextMetrics + * @type {CanvasRenderingContext2D} + * @private + */ +TextMetrics._context = canvas.getContext('2d'); + +/** + * Cache of {@see PIXI.TextMetrics.FontMetrics} objects. + * + * @memberof PIXI.TextMetrics + * @type {Object} + * @private + */ +TextMetrics._fonts = {}; + +/** + * String used for calculate font metrics. + * These characters are all tall to help calculate the height required for text. + * + * @static + * @memberof PIXI.TextMetrics + * @name METRICS_STRING + * @type {string} + * @default |ÉqÅ + */ +TextMetrics.METRICS_STRING = '|ÉqÅ'; + +/** + * Baseline symbol for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_SYMBOL + * @type {string} + * @default M + */ +TextMetrics.BASELINE_SYMBOL = 'M'; + +/** + * Baseline multiplier for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_MULTIPLIER + * @type {number} + * @default 1.4 + */ +TextMetrics.BASELINE_MULTIPLIER = 1.4; + +/** + * Cache of new line chars. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._newlines = [ + 0x000A, // line feed + 0x000D ]; + +/** + * Cache of breaking spaces. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._breakingSpaces = [ + 0x0009, // character tabulation + 0x0020, // space + 0x2000, // en quad + 0x2001, // em quad + 0x2002, // en space + 0x2003, // em space + 0x2004, // three-per-em space + 0x2005, // four-per-em space + 0x2006, // six-per-em space + 0x2008, // punctuation space + 0x2009, // thin space + 0x200A, // hair space + 0x205F, // medium mathematical space + 0x3000 ]; + +/** + * A number, or a string containing a number. + * + * @memberof PIXI + * @typedef IFontMetrics + * @property {number} ascent - Font ascent + * @property {number} descent - Font descent + * @property {number} fontSize - Font size + */ + +/* eslint max-depth: [2, 8] */ + +var defaultDestroyOptions = { + texture: true, + children: false, + baseTexture: true, +}; + +/** + * A Text Object will create a line or multiple lines of text. + * + * The text is created using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API). + * + * The primary advantage of this class over BitmapText is that you have great control over the style of the next, + * which you can change at runtime. + * + * The primary disadvantages is that each piece of text has it's own texture, which can use more memory. + * When text changes, this texture has to be re-generated and re-uploaded to the GPU, taking up time. + * + * To split a line you can use '\n' in your text string, or, on the `style` object, + * change its `wordWrap` property to true and and give the `wordWrapWidth` property a value. + * + * A Text can be created directly from a string and a style object, + * which can be generated [here](https://pixijs.io/pixi-text-style). + * + * ```js + * let text = new PIXI.Text('This is a PixiJS text',{fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}); + * ``` + * + * @class + * @extends PIXI.Sprite + * @memberof PIXI + */ +var Text = /*@__PURE__*/(function (Sprite) { + function Text(text, style, canvas) + { + canvas = canvas || document.createElement('canvas'); + + canvas.width = 3; + canvas.height = 3; + + var texture = Texture.from(canvas); + + texture.orig = new Rectangle(); + texture.trim = new Rectangle(); + + Sprite.call(this, texture); + + /** + * The canvas element that everything is drawn to + * + * @member {HTMLCanvasElement} + */ + this.canvas = canvas; + + /** + * The canvas 2d context that everything is drawn with + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + this._resolution = settings.RESOLUTION; + this._autoResolution = true; + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = null; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._style = null; + /** + * Private listener to track style changes. + * + * @member {Function} + * @private + */ + this._styleListener = null; + + /** + * Private tracker for the current font. + * + * @member {string} + * @private + */ + this._font = ''; + + this.text = text; + this.style = style; + + this.localStyleID = -1; + } + + if ( Sprite ) Text.__proto__ = Sprite; + Text.prototype = Object.create( Sprite && Sprite.prototype ); + Text.prototype.constructor = Text; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },style: { configurable: true },text: { configurable: true },resolution: { configurable: true } }; + + /** + * Renders text and updates it when needed. + * + * @private + * @param {boolean} respectDirty - Whether to abort updating the text if the Text isn't dirty and the function is called. + */ + Text.prototype.updateText = function updateText (respectDirty) + { + var style = this._style; + + // check if style has changed.. + if (this.localStyleID !== style.styleID) + { + this.dirty = true; + this.localStyleID = style.styleID; + } + + if (!this.dirty && respectDirty) + { + return; + } + + this._font = this._style.toFontString(); + + var context = this.context; + var measured = TextMetrics.measureText(this._text || ' ', this._style, this._style.wordWrap, this.canvas); + var width = measured.width; + var height = measured.height; + var lines = measured.lines; + var lineHeight = measured.lineHeight; + var lineWidths = measured.lineWidths; + var maxLineWidth = measured.maxLineWidth; + var fontProperties = measured.fontProperties; + + this.canvas.width = Math.ceil((Math.max(1, width) + (style.padding * 2)) * this._resolution); + this.canvas.height = Math.ceil((Math.max(1, height) + (style.padding * 2)) * this._resolution); + + context.scale(this._resolution, this._resolution); + + context.clearRect(0, 0, this.canvas.width, this.canvas.height); + + context.font = this._font; + context.lineWidth = style.strokeThickness; + context.textBaseline = style.textBaseline; + context.lineJoin = style.lineJoin; + context.miterLimit = style.miterLimit; + + var linePositionX; + var linePositionY; + + // require 2 passes if a shadow; the first to draw the drop shadow, the second to draw the text + var passesCount = style.dropShadow ? 2 : 1; + + // For v4, we drew text at the colours of the drop shadow underneath the normal text. This gave the correct zIndex, + // but features such as alpha and shadowblur did not look right at all, since we were using actual text as a shadow. + // + // For v5.0.0, we moved over to just use the canvas API for drop shadows, which made them look much nicer and more + // visually please, but now because the stroke is drawn and then the fill, drop shadows would appear on both the fill + // and the stroke; and fill drop shadows would appear over the top of the stroke. + // + // For v5.1.1, the new route is to revert to v4 style of drawing text first to get the drop shadows underneath normal + // text, but instead drawing text in the correct location, we'll draw it off screen (-paddingY), and then adjust the + // drop shadow so only that appears on screen (+paddingY). Now we'll have the correct draw order of the shadow + // beneath the text, whilst also having the proper text shadow styling. + for (var i = 0; i < passesCount; ++i) + { + var isShadowPass = style.dropShadow && i === 0; + var dsOffsetText = isShadowPass ? height * 2 : 0; // we only want the drop shadow, so put text way off-screen + var dsOffsetShadow = dsOffsetText * this.resolution; + + if (isShadowPass) + { + // On Safari, text with gradient and drop shadows together do not position correctly + // if the scale of the canvas is not 1: https://bugs.webkit.org/show_bug.cgi?id=197689 + // Therefore we'll set the styles to be a plain black whilst generating this drop shadow + context.fillStyle = 'black'; + context.strokeStyle = 'black'; + + var dropShadowColor = style.dropShadowColor; + var rgb = hex2rgb(typeof dropShadowColor === 'number' ? dropShadowColor : string2hex(dropShadowColor)); + + context.shadowColor = "rgba(" + (rgb[0] * 255) + "," + (rgb[1] * 255) + "," + (rgb[2] * 255) + "," + (style.dropShadowAlpha) + ")"; + context.shadowBlur = style.dropShadowBlur; + context.shadowOffsetX = Math.cos(style.dropShadowAngle) * style.dropShadowDistance; + context.shadowOffsetY = (Math.sin(style.dropShadowAngle) * style.dropShadowDistance) + dsOffsetShadow; + } + else + { + // set canvas text styles + context.fillStyle = this._generateFillStyle(style, lines); + context.strokeStyle = style.stroke; + + context.shadowColor = 0; + context.shadowBlur = 0; + context.shadowOffsetX = 0; + context.shadowOffsetY = 0; + } + + // draw lines line by line + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + linePositionX = style.strokeThickness / 2; + linePositionY = ((style.strokeThickness / 2) + (i$1 * lineHeight)) + fontProperties.ascent; + + if (style.align === 'right') + { + linePositionX += maxLineWidth - lineWidths[i$1]; + } + else if (style.align === 'center') + { + linePositionX += (maxLineWidth - lineWidths[i$1]) / 2; + } + + if (style.stroke && style.strokeThickness) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText, + true + ); + } + + if (style.fill) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText + ); + } + } + } + + this.updateTexture(); + }; + + /** + * Render the text with letter-spacing. + * @param {string} text - The text to draw + * @param {number} x - Horizontal position to draw the text + * @param {number} y - Vertical position to draw the text + * @param {boolean} [isStroke=false] - Is this drawing for the outside stroke of the + * text? If not, it's for the inside fill + * @private + */ + Text.prototype.drawLetterSpacing = function drawLetterSpacing (text, x, y, isStroke) + { + if ( isStroke === void 0 ) isStroke = false; + + var style = this._style; + + // letterSpacing of 0 means normal + var letterSpacing = style.letterSpacing; + + if (letterSpacing === 0) + { + if (isStroke) + { + this.context.strokeText(text, x, y); + } + else + { + this.context.fillText(text, x, y); + } + + return; + } + + var currentPosition = x; + + // Using Array.from correctly splits characters whilst keeping emoji together. + // This is not supported on IE as it requires ES6, so regular text splitting occurs. + // This also doesn't account for emoji that are multiple emoji put together to make something else. + // Handling all of this would require a big library itself. + // https://medium.com/@giltayar/iterating-over-emoji-characters-the-es6-way-f06e4589516 + // https://github.com/orling/grapheme-splitter + var stringArray = Array.from ? Array.from(text) : text.split(''); + var previousWidth = this.context.measureText(text).width; + var currentWidth = 0; + + for (var i = 0; i < stringArray.length; ++i) + { + var currentChar = stringArray[i]; + + if (isStroke) + { + this.context.strokeText(currentChar, currentPosition, y); + } + else + { + this.context.fillText(currentChar, currentPosition, y); + } + currentWidth = this.context.measureText(text.substring(i + 1)).width; + currentPosition += previousWidth - currentWidth + letterSpacing; + previousWidth = currentWidth; + } + }; + + /** + * Updates texture size based on canvas size + * + * @private + */ + Text.prototype.updateTexture = function updateTexture () + { + var canvas = this.canvas; + + if (this._style.trim) + { + var trimmed = trimCanvas(canvas); + + if (trimmed.data) + { + canvas.width = trimmed.width; + canvas.height = trimmed.height; + this.context.putImageData(trimmed.data, 0, 0); + } + } + + var texture = this._texture; + var style = this._style; + var padding = style.trim ? 0 : style.padding; + var baseTexture = texture.baseTexture; + + texture.trim.width = texture._frame.width = Math.ceil(canvas.width / this._resolution); + texture.trim.height = texture._frame.height = Math.ceil(canvas.height / this._resolution); + texture.trim.x = -padding; + texture.trim.y = -padding; + + texture.orig.width = texture._frame.width - (padding * 2); + texture.orig.height = texture._frame.height - (padding * 2); + + // call sprite onTextureUpdate to update scale if _width or _height were set + this._onTextureUpdate(); + + baseTexture.setRealSize(canvas.width, canvas.height, this._resolution); + + this.dirty = false; + }; + + /** + * Renders the object using the WebGL renderer + * + * @private + * @param {PIXI.Renderer} renderer - The renderer + */ + Text.prototype._render = function _render (renderer) + { + if (this._autoResolution && this._resolution !== renderer.resolution) + { + this._resolution = renderer.resolution; + this.dirty = true; + } + + this.updateText(true); + + Sprite.prototype._render.call(this, renderer); + }; + + /** + * Gets the local bounds of the text object. + * + * @param {PIXI.Rectangle} rect - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Text.prototype.getLocalBounds = function getLocalBounds (rect) + { + this.updateText(true); + + return Sprite.prototype.getLocalBounds.call(this, rect); + }; + + /** + * calculates the bounds of the Text as a rectangle. The bounds calculation takes the worldTransform into account. + * @protected + */ + Text.prototype._calculateBounds = function _calculateBounds () + { + this.updateText(true); + this.calculateVertices(); + // if we have already done this on THIS frame. + this._bounds.addQuad(this.vertexData); + }; + + /** + * Method to be called upon a TextStyle change. + * @private + */ + Text.prototype._onStyleChange = function _onStyleChange () + { + this.dirty = true; + }; + + /** + * Generates the fill style. Can automatically generate a gradient based on the fill style being an array + * + * @private + * @param {object} style - The style. + * @param {string[]} lines - The lines of text. + * @return {string|number|CanvasGradient} The fill style + */ + Text.prototype._generateFillStyle = function _generateFillStyle (style, lines) + { + if (!Array.isArray(style.fill)) + { + return style.fill; + } + else if (style.fill.length === 1) + { + return style.fill[0]; + } + + // the gradient will be evenly spaced out according to how large the array is. + // ['#FF0000', '#00FF00', '#0000FF'] would created stops at 0.25, 0.5 and 0.75 + var gradient; + var totalIterations; + var currentIteration; + var stop; + + var width = Math.ceil(this.canvas.width / this._resolution); + var height = Math.ceil(this.canvas.height / this._resolution); + + // make a copy of the style settings, so we can manipulate them later + var fill = style.fill.slice(); + var fillGradientStops = style.fillGradientStops.slice(); + + // wanting to evenly distribute the fills. So an array of 4 colours should give fills of 0.25, 0.5 and 0.75 + if (!fillGradientStops.length) + { + var lengthPlus1 = fill.length + 1; + + for (var i = 1; i < lengthPlus1; ++i) + { + fillGradientStops.push(i / lengthPlus1); + } + } + + // stop the bleeding of the last gradient on the line above to the top gradient of the this line + // by hard defining the first gradient colour at point 0, and last gradient colour at point 1 + fill.unshift(style.fill[0]); + fillGradientStops.unshift(0); + + fill.push(style.fill[style.fill.length - 1]); + fillGradientStops.push(1); + + if (style.fillGradientType === TEXT_GRADIENT.LINEAR_VERTICAL) + { + // start the gradient at the top center of the canvas, and end at the bottom middle of the canvas + gradient = this.context.createLinearGradient(width / 2, 0, width / 2, height); + + // we need to repeat the gradient so that each individual line of text has the same vertical gradient effect + // ['#FF0000', '#00FF00', '#0000FF'] over 2 lines would create stops at 0.125, 0.25, 0.375, 0.625, 0.75, 0.875 + totalIterations = (fill.length + 1) * lines.length; + currentIteration = 0; + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + currentIteration += 1; + for (var j = 0; j < fill.length; j++) + { + if (typeof fillGradientStops[j] === 'number') + { + stop = (fillGradientStops[j] / lines.length) + (i$1 / lines.length); + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[j]); + currentIteration++; + } + } + } + else + { + // start the gradient at the center left of the canvas, and end at the center right of the canvas + gradient = this.context.createLinearGradient(0, height / 2, width, height / 2); + + // can just evenly space out the gradients in this case, as multiple lines makes no difference + // to an even left to right gradient + totalIterations = fill.length + 1; + currentIteration = 1; + + for (var i$2 = 0; i$2 < fill.length; i$2++) + { + if (typeof fillGradientStops[i$2] === 'number') + { + stop = fillGradientStops[i$2]; + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[i$2]); + currentIteration++; + } + } + + return gradient; + }; + + /** + * Destroys this text object. + * Note* Unlike a Sprite, a Text object will automatically destroy its baseTexture and texture as + * the majority of the time the texture will not be shared with any other Sprites. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their + * destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=true] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=true] - Should it destroy the base texture of the sprite as well + */ + Text.prototype.destroy = function destroy (options) + { + if (typeof options === 'boolean') + { + options = { children: options }; + } + + options = Object.assign({}, defaultDestroyOptions, options); + + Sprite.prototype.destroy.call(this, options); + + // make sure to reset the the context and canvas.. dont want this hanging around in memory! + this.context = null; + this.canvas = null; + + this._style = null; + }; + + /** + * The width of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * Set the style of the text. Set up an event listener to listen for changes on the style + * object and mark the text as dirty. + * + * @member {object|PIXI.TextStyle} + */ + prototypeAccessors.style.get = function () + { + return this._style; + }; + + prototypeAccessors.style.set = function (style) // eslint-disable-line require-jsdoc + { + style = style || {}; + + if (style instanceof TextStyle) + { + this._style = style; + } + else + { + this._style = new TextStyle(style); + } + + this.localStyleID = -1; + this.dirty = true; + }; + + /** + * Set the copy for the text object. To split a line you can use '\n'. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + prototypeAccessors.resolution.get = function () + { + return this._resolution; + }; + + prototypeAccessors.resolution.set = function (value) // eslint-disable-line require-jsdoc + { + this._autoResolution = false; + + if (this._resolution === value) + { + return; + } + + this._resolution = value; + this.dirty = true; + }; + + Object.defineProperties( Text.prototype, prototypeAccessors ); + + return Text; +}(Sprite)); + +/*! + * @pixi/prepare - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/prepare is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default number of uploads per frame using prepare plugin. + * + * @static + * @memberof PIXI.settings + * @name UPLOADS_PER_FRAME + * @type {number} + * @default 4 + */ +settings.UPLOADS_PER_FRAME = 4; + +/** + * CountLimiter limits the number of items handled by a {@link PIXI.prepare.BasePrepare} to a specified + * number of items per frame. + * + * @class + * @memberof PIXI.prepare + */ +var CountLimiter = function CountLimiter(maxItemsPerFrame) +{ + /** + * The maximum number of items that can be prepared each frame. + * @type {number} + * @private + */ + this.maxItemsPerFrame = maxItemsPerFrame; + /** + * The number of items that can be prepared in the current frame. + * @type {number} + * @private + */ + this.itemsLeft = 0; +}; + +/** + * Resets any counting properties to start fresh on a new frame. + */ +CountLimiter.prototype.beginFrame = function beginFrame () +{ + this.itemsLeft = this.maxItemsPerFrame; +}; + +/** + * Checks to see if another item can be uploaded. This should only be called once per item. + * @return {boolean} If the item is allowed to be uploaded. + */ +CountLimiter.prototype.allowedToUpload = function allowedToUpload () +{ + return this.itemsLeft-- > 0; +}; + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * BasePrepare handles basic queuing functionality and is extended by + * {@link PIXI.prepare.Prepare} and {@link PIXI.prepare.CanvasPrepare} + * to provide preparation capabilities specific to their respective renderers. + * + * @example + * // Create a sprite + * const sprite = PIXI.Sprite.from('something.png'); + * + * // Load object into GPU + * app.renderer.plugins.prepare.upload(sprite, () => { + * + * //Texture(s) has been uploaded to GPU + * app.stage.addChild(sprite); + * + * }) + * + * @abstract + * @class + * @memberof PIXI.prepare + */ +var BasePrepare = function BasePrepare(renderer) +{ + var this$1 = this; + + /** + * The limiter to be used to control how quickly items are prepared. + * @type {PIXI.prepare.CountLimiter|PIXI.prepare.TimeLimiter} + */ + this.limiter = new CountLimiter(settings.UPLOADS_PER_FRAME); + + /** + * Reference to the renderer. + * @type {PIXI.AbstractRenderer} + * @protected + */ + this.renderer = renderer; + + /** + * The only real difference between CanvasPrepare and Prepare is what they pass + * to upload hooks. That different parameter is stored here. + * @type {PIXI.prepare.CanvasPrepare|PIXI.Renderer} + * @protected + */ + this.uploadHookHelper = null; + + /** + * Collection of items to uploads at once. + * @type {Array<*>} + * @private + */ + this.queue = []; + + /** + * Collection of additional hooks for finding assets. + * @type {Array} + * @private + */ + this.addHooks = []; + + /** + * Collection of additional hooks for processing assets. + * @type {Array} + * @private + */ + this.uploadHooks = []; + + /** + * Callback to call after completed. + * @type {Array} + * @private + */ + this.completes = []; + + /** + * If prepare is ticking (running). + * @type {boolean} + * @private + */ + this.ticking = false; + + /** + * 'bound' call for prepareItems(). + * @type {Function} + * @private + */ + this.delayedTick = function () { + // unlikely, but in case we were destroyed between tick() and delayedTick() + if (!this$1.queue) + { + return; + } + this$1.prepareItems(); + }; + + // hooks to find the correct texture + this.registerFindHook(findText); + this.registerFindHook(findTextStyle); + this.registerFindHook(findMultipleBaseTextures); + this.registerFindHook(findBaseTexture); + this.registerFindHook(findTexture); + + // upload hooks + this.registerUploadHook(drawText); + this.registerUploadHook(calculateTextStyle); +}; + +/** + * Upload all the textures and graphics to the GPU. + * + * @param {Function|PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text} item - + * Either the container or display object to search for items to upload, the items to upload themselves, + * or the callback function, if items have been added using `prepare.add`. + * @param {Function} [done] - Optional callback when all queued uploads have completed + */ +BasePrepare.prototype.upload = function upload (item, done) +{ + if (typeof item === 'function') + { + done = item; + item = null; + } + + // If a display object, search for items + // that we could upload + if (item) + { + this.add(item); + } + + // Get the items for upload from the display + if (this.queue.length) + { + if (done) + { + this.completes.push(done); + } + + if (!this.ticking) + { + this.ticking = true; + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } + } + else if (done) + { + done(); + } +}; + +/** + * Handle tick update + * + * @private + */ +BasePrepare.prototype.tick = function tick () +{ + setTimeout(this.delayedTick, 0); +}; + +/** + * Actually prepare items. This is handled outside of the tick because it will take a while + * and we do NOT want to block the current animation frame from rendering. + * + * @private + */ +BasePrepare.prototype.prepareItems = function prepareItems () +{ + this.limiter.beginFrame(); + // Upload the graphics + while (this.queue.length && this.limiter.allowedToUpload()) + { + var item = this.queue[0]; + var uploaded = false; + + if (item && !item._destroyed) + { + for (var i = 0, len = this.uploadHooks.length; i < len; i++) + { + if (this.uploadHooks[i](this.uploadHookHelper, item)) + { + this.queue.shift(); + uploaded = true; + break; + } + } + } + + if (!uploaded) + { + this.queue.shift(); + } + } + + // We're finished + if (!this.queue.length) + { + this.ticking = false; + + var completes = this.completes.slice(0); + + this.completes.length = 0; + + for (var i$1 = 0, len$1 = completes.length; i$1 < len$1; i$1++) + { + completes[i$1](); + } + } + else + { + // if we are not finished, on the next rAF do this again + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } +}; + +/** + * Adds hooks for finding items. + * + * @param {Function} addHook - Function call that takes two parameters: `item:*, queue:Array` + * function must return `true` if it was able to add item to the queue. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerFindHook = function registerFindHook (addHook) +{ + if (addHook) + { + this.addHooks.push(addHook); + } + + return this; +}; + +/** + * Adds hooks for uploading items. + * + * @param {Function} uploadHook - Function call that takes two parameters: `prepare:CanvasPrepare, item:*` and + * function must return `true` if it was able to handle upload of item. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerUploadHook = function registerUploadHook (uploadHook) +{ + if (uploadHook) + { + this.uploadHooks.push(uploadHook); + } + + return this; +}; + +/** + * Manually add an item to the uploading queue. + * + * @param {PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text|*} item - Object to + * add to the queue + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.add = function add (item) +{ + // Add additional hooks for finding elements on special + // types of objects that + for (var i = 0, len = this.addHooks.length; i < len; i++) + { + if (this.addHooks[i](item, this.queue)) + { + break; + } + } + + // Get children recursively + if (item instanceof Container) + { + for (var i$1 = item.children.length - 1; i$1 >= 0; i$1--) + { + this.add(item.children[i$1]); + } + } + + return this; +}; + +/** + * Destroys the plugin, don't use after this. + * + */ +BasePrepare.prototype.destroy = function destroy () +{ + if (this.ticking) + { + Ticker.system.remove(this.tick, this); + } + this.ticking = false; + this.addHooks = null; + this.uploadHooks = null; + this.renderer = null; + this.completes = null; + this.queue = null; + this.limiter = null; + this.uploadHookHelper = null; +}; + +/** + * Built-in hook to find multiple textures from objects like AnimatedSprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findMultipleBaseTextures(item, queue) +{ + var result = false; + + // Objects with multiple textures + if (item && item._textures && item._textures.length) + { + for (var i = 0; i < item._textures.length; i++) + { + if (item._textures[i] instanceof Texture) + { + var baseTexture = item._textures[i].baseTexture; + + if (queue.indexOf(baseTexture) === -1) + { + queue.push(baseTexture); + result = true; + } + } + } + } + + return result; +} + +/** + * Built-in hook to find BaseTextures from Sprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findBaseTexture(item, queue) +{ + // Objects with textures, like Sprites/Text + if (item instanceof BaseTexture) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find textures from objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findTexture(item, queue) +{ + if (item._texture && item._texture instanceof Texture) + { + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to draw PIXI.Text to its texture. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function drawText(helper, item) +{ + if (item instanceof Text) + { + // updating text will return early if it is not dirty + item.updateText(true); + + return true; + } + + return false; +} + +/** + * Built-in hook to calculate a text style for a PIXI.Text object. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function calculateTextStyle(helper, item) +{ + if (item instanceof TextStyle) + { + var font = item.toFontString(); + + TextMetrics.measureFont(font); + + return true; + } + + return false; +} + +/** + * Built-in hook to find Text objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Text object was found. + */ +function findText(item, queue) +{ + if (item instanceof Text) + { + // push the text style to prepare it - this can be really expensive + if (queue.indexOf(item.style) === -1) + { + queue.push(item.style); + } + // also push the text object so that we can render it (to canvas/texture) if needed + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + // also push the Text's texture for upload to GPU + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find TextStyle objects. + * + * @private + * @param {PIXI.TextStyle} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.TextStyle object was found. + */ +function findTextStyle(item, queue) +{ + if (item instanceof TextStyle) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.prepare` + * + * @class + * @extends PIXI.prepare.BasePrepare + * @memberof PIXI.prepare + */ +var Prepare = /*@__PURE__*/(function (BasePrepare) { + function Prepare(renderer) + { + BasePrepare.call(this, renderer); + + this.uploadHookHelper = this.renderer; + + // Add textures and graphics to upload + this.registerFindHook(findGraphics); + this.registerUploadHook(uploadBaseTextures); + this.registerUploadHook(uploadGraphics); + } + + if ( BasePrepare ) Prepare.__proto__ = BasePrepare; + Prepare.prototype = Object.create( BasePrepare && BasePrepare.prototype ); + Prepare.prototype.constructor = Prepare; + + return Prepare; +}(BasePrepare)); +/** + * Built-in hook to upload PIXI.Texture objects to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadBaseTextures(renderer, item) +{ + if (item instanceof BaseTexture) + { + // if the texture already has a GL texture, then the texture has been prepared or rendered + // before now. If the texture changed, then the changer should be calling texture.update() which + // reuploads the texture without need for preparing it again + if (!item._glTextures[renderer.CONTEXT_UID]) + { + renderer.texture.bind(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to upload PIXI.Graphics to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadGraphics(renderer, item) +{ + if (item instanceof Graphics) + { + // if the item is not dirty and already has webgl data, then it got prepared or rendered + // before now and we shouldn't waste time updating it again + if (item.dirty || item.clearDirty || !item._webGL[renderer.plugins.graphics.CONTEXT_UID]) + { + renderer.plugins.graphics.updateGraphics(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find graphics. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Graphics object was found. + */ +function findGraphics(item, queue) +{ + if (item instanceof Graphics) + { + queue.push(item); + + return true; + } + + return false; +} + +/*! + * @pixi/app - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/app is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Convenience class to create a new PIXI application. + * + * This class automatically creates the renderer, ticker and root container. + * + * @example + * // Create the application + * const app = new PIXI.Application(); + * + * // Add the view to the DOM + * document.body.appendChild(app.view); + * + * // ex, add display objects + * app.stage.addChild(PIXI.Sprite.from('something.png')); + * + * @class + * @memberof PIXI + */ +var Application = function Application(options) +{ + var this$1 = this; + + // The default options + options = Object.assign({ + forceCanvas: false, + }, options); + + /** + * WebGL renderer if available, otherwise CanvasRenderer. + * @member {PIXI.Renderer|PIXI.CanvasRenderer} + */ + this.renderer = autoDetectRenderer(options); + + /** + * The root display container that's rendered. + * @member {PIXI.Container} + */ + this.stage = new Container(); + + // install plugins here + Application._plugins.forEach(function (plugin) { + plugin.init.call(this$1, options); + }); +}; + +var prototypeAccessors$8 = { view: { configurable: true },screen: { configurable: true } }; + +/** + * Register a middleware plugin for the application + * @static + * @param {PIXI.Application.Plugin} plugin - Plugin being installed + */ +Application.registerPlugin = function registerPlugin (plugin) +{ + Application._plugins.push(plugin); +}; + +/** + * Render the current stage. + */ +Application.prototype.render = function render () +{ + this.renderer.render(this.stage); +}; + +/** + * Reference to the renderer's canvas element. + * @member {HTMLCanvasElement} + * @readonly + */ +prototypeAccessors$8.view.get = function () +{ + return this.renderer.view; +}; + +/** + * Reference to the renderer's screen rectangle. Its safe to use as `filterArea` or `hitArea` for the whole screen. + * @member {PIXI.Rectangle} + * @readonly + */ +prototypeAccessors$8.screen.get = function () +{ + return this.renderer.screen; +}; + +/** + * Destroy and don't use after this. + * @param {Boolean} [removeView=false] Automatically remove canvas from DOM. + * @param {object|boolean} [stageOptions] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [stageOptions.children=false] - if set to true, all the children will have their destroy + * method called as well. 'stageOptions' will be passed on to those calls. + * @param {boolean} [stageOptions.texture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the texture of the child sprite + * @param {boolean} [stageOptions.baseTexture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the base texture of the child sprite + */ +Application.prototype.destroy = function destroy (removeView, stageOptions) +{ + var this$1 = this; + + // Destroy plugins in the opposite order + // which they were constructed + var plugins = Application._plugins.slice(0); + + plugins.reverse(); + plugins.forEach(function (plugin) { + plugin.destroy.call(this$1); + }); + + this.stage.destroy(stageOptions); + this.stage = null; + + this.renderer.destroy(removeView); + this.renderer = null; + + this._options = null; +}; + +Object.defineProperties( Application.prototype, prototypeAccessors$8 ); + +/** + * @memberof PIXI.Application + * @typedef {object} Plugin + * @property {function} init - Called when Application is constructed, scoped to Application instance. + * Passes in `options` as the only argument, which are Application constructor options. + * @property {function} destroy - Called when destroying Application, scoped to Application instance + */ + +/** + * Collection of installed plugins. + * @static + * @private + * @type {PIXI.Application.Plugin[]} + */ +Application._plugins = []; + +/** + * Middleware for for Application's resize functionality + * @private + * @class + */ +var ResizePlugin = function ResizePlugin () {}; + +ResizePlugin.init = function init (options) +{ + var this$1 = this; + + /** + * The element or window to resize the application to. + * @type {Window|HTMLElement} + * @name resizeTo + * @memberof PIXI.Application# + */ + Object.defineProperty(this, 'resizeTo', + { + set: function set(dom) + { + window.removeEventListener('resize', this.resize); + this._resizeTo = dom; + if (dom) + { + window.addEventListener('resize', this.resize); + this.resize(); + } + }, + get: function get() + { + return this._resizeTo; + }, + }); + + /** + * If `resizeTo` is set, calling this function + * will resize to the width and height of that element. + * @method PIXI.Application#resize + */ + this.resize = function () { + if (this$1._resizeTo) + { + // Resize to the window + if (this$1._resizeTo === window) + { + this$1.renderer.resize( + window.innerWidth, + window.innerHeight + ); + } + // Resize to other HTML entities + else + { + this$1.renderer.resize( + this$1._resizeTo.clientWidth, + this$1._resizeTo.clientHeight + ); + } + } + }; + + // On resize + this._resizeTo = null; + this.resizeTo = options.resizeTo || null; +}; + +/** + * Clean up the ticker, scoped to application + * @static + * @private + */ +ResizePlugin.destroy = function destroy () +{ + this.resizeTo = null; + this.resize = null; +}; + +Application.registerPlugin(ResizePlugin); + +var parseUri = function parseURI (str, opts) { + opts = opts || {}; + + var o = { + key: ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'], + q: { + name: 'queryKey', + parser: /(?:^|&)([^&=]*)=?([^&]*)/g + }, + parser: { + strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/, + loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/ + } + }; + + var m = o.parser[opts.strictMode ? 'strict' : 'loose'].exec(str); + var uri = {}; + var i = 14; + + while (i--) uri[o.key[i]] = m[i] || ''; + + uri[o.q.name] = {}; + uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) { + if ($1) uri[o.q.name][$1] = $2; + }); + + return uri +}; + +var miniSignals = createCommonjsModule(function (module, exports) { + +Object.defineProperty(exports, '__esModule', { + value: true +}); + +var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + +var MiniSignalBinding = (function () { + function MiniSignalBinding(fn, once, thisArg) { + if (once === undefined) once = false; + + _classCallCheck(this, MiniSignalBinding); + + this._fn = fn; + this._once = once; + this._thisArg = thisArg; + this._next = this._prev = this._owner = null; + } + + _createClass(MiniSignalBinding, [{ + key: 'detach', + value: function detach() { + if (this._owner === null) return false; + this._owner.detach(this); + return true; + } + }]); + + return MiniSignalBinding; +})(); + +function _addMiniSignalBinding(self, node) { + if (!self._head) { + self._head = node; + self._tail = node; + } else { + self._tail._next = node; + node._prev = self._tail; + self._tail = node; + } + + node._owner = self; + + return node; +} + +var MiniSignal = (function () { + function MiniSignal() { + _classCallCheck(this, MiniSignal); + + this._head = this._tail = undefined; + } + + _createClass(MiniSignal, [{ + key: 'handlers', + value: function handlers() { + var exists = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0]; + + var node = this._head; + + if (exists) return !!node; + + var ee = []; + + while (node) { + ee.push(node); + node = node._next; + } + + return ee; + } + }, { + key: 'has', + value: function has(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#has(): First arg must be a MiniSignalBinding object.'); + } + + return node._owner === this; + } + }, { + key: 'dispatch', + value: function dispatch() { + var node = this._head; + + if (!node) return false; + + while (node) { + if (node._once) this.detach(node); + node._fn.apply(node._thisArg, arguments); + node = node._next; + } + + return true; + } + }, { + key: 'add', + value: function add(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#add(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, false, thisArg)); + } + }, { + key: 'once', + value: function once(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#once(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, true, thisArg)); + } + }, { + key: 'detach', + value: function detach(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#detach(): First arg must be a MiniSignalBinding object.'); + } + if (node._owner !== this) return this; + + if (node._prev) node._prev._next = node._next; + if (node._next) node._next._prev = node._prev; + + if (node === this._head) { + this._head = node._next; + if (node._next === null) { + this._tail = null; + } + } else if (node === this._tail) { + this._tail = node._prev; + this._tail._next = null; + } + + node._owner = null; + return this; + } + }, { + key: 'detachAll', + value: function detachAll() { + var node = this._head; + if (!node) return this; + + this._head = this._tail = null; + + while (node) { + node._owner = null; + node = node._next; + } + return this; + } + }]); + + return MiniSignal; +})(); + +MiniSignal.MiniSignalBinding = MiniSignalBinding; + +exports['default'] = MiniSignal; +module.exports = exports['default']; +}); + +var Signal = unwrapExports(miniSignals); + +/*! + * resource-loader - v3.0.1 + * https://github.com/pixijs/pixi-sound + * Compiled Tue, 02 Jul 2019 14:06:18 UTC + * + * resource-loader is licensed under the MIT license. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Smaller version of the async library constructs. + * + * @namespace async + */ + +/** + * Noop function + * + * @ignore + * @function + * @memberof async + */ +function _noop() {} +/* empty */ + +/** + * Iterates an array in series. + * + * @memberof async + * @function eachSeries + * @param {Array.<*>} array - Array to iterate. + * @param {function} iterator - Function to call for each element. + * @param {function} callback - Function to call when done, or on error. + * @param {boolean} [deferNext=false] - Break synchronous each loop by calling next with a setTimeout of 1. + */ + + +function eachSeries(array, iterator, callback, deferNext) { + var i = 0; + var len = array.length; + + (function next(err) { + if (err || i === len) { + if (callback) { + callback(err); + } + + return; + } + + if (deferNext) { + setTimeout(function () { + iterator(array[i++], next); + }, 1); + } else { + iterator(array[i++], next); + } + })(); +} +/** + * Ensures a function is only called once. + * + * @ignore + * @memberof async + * @param {function} fn - The function to wrap. + * @return {function} The wrapping function. + */ + +function onlyOnce(fn) { + return function onceWrapper() { + if (fn === null) { + throw new Error('Callback was already called.'); + } + + var callFn = fn; + fn = null; + callFn.apply(this, arguments); + }; +} +/** + * Async queue implementation, + * + * @memberof async + * @function queue + * @param {function} worker - The worker function to call for each task. + * @param {number} concurrency - How many workers to run in parrallel. + * @return {*} The async queue object. + */ + + +function queue(worker, concurrency) { + if (concurrency == null) { + // eslint-disable-line no-eq-null,eqeqeq + concurrency = 1; + } else if (concurrency === 0) { + throw new Error('Concurrency must not be zero'); + } + + var workers = 0; + var q = { + _tasks: [], + concurrency: concurrency, + saturated: _noop, + unsaturated: _noop, + buffer: concurrency / 4, + empty: _noop, + drain: _noop, + error: _noop, + started: false, + paused: false, + push: function push(data, callback) { + _insert(data, false, callback); + }, + kill: function kill() { + workers = 0; + q.drain = _noop; + q.started = false; + q._tasks = []; + }, + unshift: function unshift(data, callback) { + _insert(data, true, callback); + }, + process: function process() { + while (!q.paused && workers < q.concurrency && q._tasks.length) { + var task = q._tasks.shift(); + + if (q._tasks.length === 0) { + q.empty(); + } + + workers += 1; + + if (workers === q.concurrency) { + q.saturated(); + } + + worker(task.data, onlyOnce(_next(task))); + } + }, + length: function length() { + return q._tasks.length; + }, + running: function running() { + return workers; + }, + idle: function idle() { + return q._tasks.length + workers === 0; + }, + pause: function pause() { + if (q.paused === true) { + return; + } + + q.paused = true; + }, + resume: function resume() { + if (q.paused === false) { + return; + } + + q.paused = false; // Need to call q.process once per concurrent + // worker to preserve full concurrency after pause + + for (var w = 1; w <= q.concurrency; w++) { + q.process(); + } + } + }; + + function _insert(data, insertAtFront, callback) { + if (callback != null && typeof callback !== 'function') { + // eslint-disable-line no-eq-null,eqeqeq + throw new Error('task callback must be a function'); + } + + q.started = true; + + if (data == null && q.idle()) { + // eslint-disable-line no-eq-null,eqeqeq + // call drain immediately if there are no tasks + setTimeout(function () { + return q.drain(); + }, 1); + return; + } + + var item = { + data: data, + callback: typeof callback === 'function' ? callback : _noop + }; + + if (insertAtFront) { + q._tasks.unshift(item); + } else { + q._tasks.push(item); + } + + setTimeout(function () { + return q.process(); + }, 1); + } + + function _next(task) { + return function next() { + workers -= 1; + task.callback.apply(task, arguments); + + if (arguments[0] != null) { + // eslint-disable-line no-eq-null,eqeqeq + q.error(arguments[0], task.data); + } + + if (workers <= q.concurrency - q.buffer) { + q.unsaturated(); + } + + if (q.idle()) { + q.drain(); + } + + q.process(); + }; + } + + return q; +} + +// a simple in-memory cache for resources +var cache = {}; +/** + * A simple in-memory cache for resource. + * + * @memberof middleware + * @function caching + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.caching); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function caching(resource, next) { + var _this = this; + + // if cached, then set data and complete the resource + if (cache[resource.url]) { + resource.data = cache[resource.url]; + resource.complete(); // marks resource load complete and stops processing before middlewares + } // if not cached, wait for complete and store it in the cache. + else { + resource.onComplete.once(function () { + return cache[_this.url] = _this.data; + }); + } + + next(); +} + +function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } +} + +function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + return Constructor; +} + +var useXdr = !!(window.XDomainRequest && !('withCredentials' in new XMLHttpRequest())); +var tempAnchor$1 = null; // some status constants + +var STATUS_NONE = 0; +var STATUS_OK = 200; +var STATUS_EMPTY = 204; +var STATUS_IE_BUG_EMPTY = 1223; +var STATUS_TYPE_OK = 2; // noop + +function _noop$1() {} +/* empty */ + +/** + * Manages the state and loading of a resource and all child resources. + * + * @class + */ + + +var Resource$1 = +/*#__PURE__*/ +function () { + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.LOAD_TYPE} loadType - The load type to set it to. + */ + Resource.setExtensionLoadType = function setExtensionLoadType(extname, loadType) { + setExtMap(Resource._loadTypeMap, extname, loadType); + } + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.XHR_RESPONSE_TYPE} xhrType - The xhr type to set it to. + */ + ; + + Resource.setExtensionXhrType = function setExtensionXhrType(extname, xhrType) { + setExtMap(Resource._xhrTypeMap, extname, xhrType); + } + /** + * @param {string} name - The name of the resource to load. + * @param {string|string[]} url - The url for this resource, for audio/video loads you can pass + * an array of sources. + * @param {object} [options] - The options for the load. + * @param {string|boolean} [options.crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @param {number} [options.timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @param {Resource.LOAD_TYPE} [options.loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @param {Resource.XHR_RESPONSE_TYPE} [options.xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @param {Resource.IMetadata} [options.metadata] - Extra configuration for middleware and the Resource object. + */ + ; + + function Resource(name, url, options) { + if (typeof name !== 'string' || typeof url !== 'string') { + throw new Error('Both name and url are required for constructing a resource.'); + } + + options = options || {}; + /** + * The state flags of this resource. + * + * @private + * @member {number} + */ + + this._flags = 0; // set data url flag, needs to be set early for some _determineX checks to work. + + this._setFlag(Resource.STATUS_FLAGS.DATA_URL, url.indexOf('data:') === 0); + /** + * The name of this resource. + * + * @readonly + * @member {string} + */ + + + this.name = name; + /** + * The url used to load this resource. + * + * @readonly + * @member {string} + */ + + this.url = url; + /** + * The extension used to load this resource. + * + * @readonly + * @member {string} + */ + + this.extension = this._getExtension(); + /** + * The data that was loaded by the resource. + * + * @member {any} + */ + + this.data = null; + /** + * Is this request cross-origin? If unset, determined automatically. + * + * @member {string} + */ + + this.crossOrigin = options.crossOrigin === true ? 'anonymous' : options.crossOrigin; + /** + * A timeout in milliseconds for the load. If the load takes longer than this time + * it is cancelled and the load is considered a failure. If this value is set to `0` + * then there is no explicit timeout. + * + * @member {number} + */ + + this.timeout = options.timeout || 0; + /** + * The method of loading to use for this resource. + * + * @member {Resource.LOAD_TYPE} + */ + + this.loadType = options.loadType || this._determineLoadType(); + /** + * The type used to load the resource via XHR. If unset, determined automatically. + * + * @member {string} + */ + + this.xhrType = options.xhrType; + /** + * Extra info for middleware, and controlling specifics about how the resource loads. + * + * Note that if you pass in a `loadElement`, the Resource class takes ownership of it. + * Meaning it will modify it as it sees fit. + * + * @member {Resource.IMetadata} + */ + + this.metadata = options.metadata || {}; + /** + * The error that occurred while loading (if any). + * + * @readonly + * @member {Error} + */ + + this.error = null; + /** + * The XHR object that was used to load this resource. This is only set + * when `loadType` is `Resource.LOAD_TYPE.XHR`. + * + * @readonly + * @member {XMLHttpRequest} + */ + + this.xhr = null; + /** + * The child resources this resource owns. + * + * @readonly + * @member {Resource[]} + */ + + this.children = []; + /** + * The resource type. + * + * @readonly + * @member {Resource.TYPE} + */ + + this.type = Resource.TYPE.UNKNOWN; + /** + * The progress chunk owned by this resource. + * + * @readonly + * @member {number} + */ + + this.progressChunk = 0; + /** + * The `dequeue` method that will be used a storage place for the async queue dequeue method + * used privately by the loader. + * + * @private + * @member {function} + */ + + this._dequeue = _noop$1; + /** + * Used a storage place for the on load binding used privately by the loader. + * + * @private + * @member {function} + */ + + this._onLoadBinding = null; + /** + * The timer for element loads to check if they timeout. + * + * @private + * @member {number} + */ + + this._elementTimer = 0; + /** + * The `complete` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundComplete = this.complete.bind(this); + /** + * The `_onError` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnError = this._onError.bind(this); + /** + * The `_onProgress` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnProgress = this._onProgress.bind(this); + /** + * The `_onTimeout` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnTimeout = this._onTimeout.bind(this); // xhr callbacks + + this._boundXhrOnError = this._xhrOnError.bind(this); + this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this); + this._boundXhrOnAbort = this._xhrOnAbort.bind(this); + this._boundXhrOnLoad = this._xhrOnLoad.bind(this); + /** + * Dispatched when the resource beings to load. + * + * The callback looks like {@link Resource.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched each time progress of this resource load updates. + * Not all resources types and loader systems can support this event + * so sometimes it may not be available. If the resource + * is being loaded on a modern browser, using XHR, and the remote server + * properly sets Content-Length headers, then this will be available. + * + * The callback looks like {@link Resource.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once this resource has loaded, if there was an error it will + * be in the `error` property. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); + /** + * Dispatched after this resource has had all the *after* middleware run on it. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onAfterMiddleware = new Signal(); + } + /** + * When the resource starts to load. + * + * @memberof Resource + * @callback OnStartSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * When the resource reports loading progress. + * + * @memberof Resource + * @callback OnProgressSignal + * @param {Resource} resource - The resource that the event happened on. + * @param {number} percentage - The progress of the load in the range [0, 1]. + */ + + /** + * When the resource finishes loading. + * + * @memberof Resource + * @callback OnCompleteSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * @memberof Resource + * @typedef {object} IMetadata + * @property {HTMLImageElement|HTMLAudioElement|HTMLVideoElement} [loadElement=null] - The + * element to use for loading, instead of creating one. + * @property {boolean} [skipSource=false] - Skips adding source(s) to the load element. This + * is useful if you want to pass in a `loadElement` that you already added load sources to. + * @property {string|string[]} [mimeType] - The mime type to use for the source element + * of a video/audio elment. If the urls are an array, you can pass this as an array as well + * where each index is the mime type to use for the corresponding url index. + */ + + /** + * Stores whether or not this url is a data url. + * + * @readonly + * @member {boolean} + */ + + + var _proto = Resource.prototype; + + /** + * Marks the resource as complete. + * + */ + _proto.complete = function complete() { + this._clearEvents(); + + this._finish(); + } + /** + * Aborts the loading of this resource, with an optional message. + * + * @param {string} message - The message to use for the error + */ + ; + + _proto.abort = function abort(message) { + // abort can be called multiple times, ignore subsequent calls. + if (this.error) { + return; + } // store error + + + this.error = new Error(message); // clear events before calling aborts + + this._clearEvents(); // abort the actual loading + + + if (this.xhr) { + this.xhr.abort(); + } else if (this.xdr) { + this.xdr.abort(); + } else if (this.data) { + // single source + if (this.data.src) { + this.data.src = Resource.EMPTY_GIF; + } // multi-source + else { + while (this.data.firstChild) { + this.data.removeChild(this.data.firstChild); + } + } + } // done now. + + + this._finish(); + } + /** + * Kicks off loading of this resource. This method is asynchronous. + * + * @param {Resource.OnCompleteSignal} [cb] - Optional callback to call once the resource is loaded. + */ + ; + + _proto.load = function load(cb) { + var _this = this; + + if (this.isLoading) { + return; + } + + if (this.isComplete) { + if (cb) { + setTimeout(function () { + return cb(_this); + }, 1); + } + + return; + } else if (cb) { + this.onComplete.once(cb); + } + + this._setFlag(Resource.STATUS_FLAGS.LOADING, true); + + this.onStart.dispatch(this); // if unset, determine the value + + if (this.crossOrigin === false || typeof this.crossOrigin !== 'string') { + this.crossOrigin = this._determineCrossOrigin(this.url); + } + + switch (this.loadType) { + case Resource.LOAD_TYPE.IMAGE: + this.type = Resource.TYPE.IMAGE; + + this._loadElement('image'); + + break; + + case Resource.LOAD_TYPE.AUDIO: + this.type = Resource.TYPE.AUDIO; + + this._loadSourceElement('audio'); + + break; + + case Resource.LOAD_TYPE.VIDEO: + this.type = Resource.TYPE.VIDEO; + + this._loadSourceElement('video'); + + break; + + case Resource.LOAD_TYPE.XHR: + /* falls through */ + + default: + if (useXdr && this.crossOrigin) { + this._loadXdr(); + } else { + this._loadXhr(); + } + + break; + } + } + /** + * Checks if the flag is set. + * + * @private + * @param {number} flag - The flag to check. + * @return {boolean} True if the flag is set. + */ + ; + + _proto._hasFlag = function _hasFlag(flag) { + return (this._flags & flag) !== 0; + } + /** + * (Un)Sets the flag. + * + * @private + * @param {number} flag - The flag to (un)set. + * @param {boolean} value - Whether to set or (un)set the flag. + */ + ; + + _proto._setFlag = function _setFlag(flag, value) { + this._flags = value ? this._flags | flag : this._flags & ~flag; + } + /** + * Clears all the events from the underlying loading source. + * + * @private + */ + ; + + _proto._clearEvents = function _clearEvents() { + clearTimeout(this._elementTimer); + + if (this.data && this.data.removeEventListener) { + this.data.removeEventListener('error', this._boundOnError, false); + this.data.removeEventListener('load', this._boundComplete, false); + this.data.removeEventListener('progress', this._boundOnProgress, false); + this.data.removeEventListener('canplaythrough', this._boundComplete, false); + } + + if (this.xhr) { + if (this.xhr.removeEventListener) { + this.xhr.removeEventListener('error', this._boundXhrOnError, false); + this.xhr.removeEventListener('timeout', this._boundXhrOnTimeout, false); + this.xhr.removeEventListener('abort', this._boundXhrOnAbort, false); + this.xhr.removeEventListener('progress', this._boundOnProgress, false); + this.xhr.removeEventListener('load', this._boundXhrOnLoad, false); + } else { + this.xhr.onerror = null; + this.xhr.ontimeout = null; + this.xhr.onprogress = null; + this.xhr.onload = null; + } + } + } + /** + * Finalizes the load. + * + * @private + */ + ; + + _proto._finish = function _finish() { + if (this.isComplete) { + throw new Error('Complete called again for an already completed resource.'); + } + + this._setFlag(Resource.STATUS_FLAGS.COMPLETE, true); + + this._setFlag(Resource.STATUS_FLAGS.LOADING, false); + + this.onComplete.dispatch(this); + } + /** + * Loads this resources using an element that has a single source, + * like an HTMLImageElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadElement = function _loadElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'image' && typeof window.Image !== 'undefined') { + this.data = new Image(); + } else { + this.data = document.createElement(type); + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + this.data.src = this.url; + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an element that has multiple sources, + * like an HTMLAudioElement or HTMLVideoElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadSourceElement = function _loadSourceElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'audio' && typeof window.Audio !== 'undefined') { + this.data = new Audio(); + } else { + this.data = document.createElement(type); + } + + if (this.data === null) { + this.abort("Unsupported element: " + type); + return; + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + // support for CocoonJS Canvas+ runtime, lacks document.createElement('source') + if (navigator.isCocoonJS) { + this.data.src = Array.isArray(this.url) ? this.url[0] : this.url; + } else if (Array.isArray(this.url)) { + var mimeTypes = this.metadata.mimeType; + + for (var i = 0; i < this.url.length; ++i) { + this.data.appendChild(this._createSource(type, this.url[i], Array.isArray(mimeTypes) ? mimeTypes[i] : mimeTypes)); + } + } else { + var _mimeTypes = this.metadata.mimeType; + this.data.appendChild(this._createSource(type, this.url, Array.isArray(_mimeTypes) ? _mimeTypes[0] : _mimeTypes)); + } + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + this.data.addEventListener('canplaythrough', this._boundComplete, false); + this.data.load(); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an XMLHttpRequest. + * + * @private + */ + ; + + _proto._loadXhr = function _loadXhr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xhr = this.xhr = new XMLHttpRequest(); // set the request type and url + + xhr.open('GET', this.url, true); + xhr.timeout = this.timeout; // load json as text and parse it ourselves. We do this because some browsers + // *cough* safari *cough* can't deal with it. + + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON || this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + xhr.responseType = Resource.XHR_RESPONSE_TYPE.TEXT; + } else { + xhr.responseType = this.xhrType; + } + + xhr.addEventListener('error', this._boundXhrOnError, false); + xhr.addEventListener('timeout', this._boundXhrOnTimeout, false); + xhr.addEventListener('abort', this._boundXhrOnAbort, false); + xhr.addEventListener('progress', this._boundOnProgress, false); + xhr.addEventListener('load', this._boundXhrOnLoad, false); + xhr.send(); + } + /** + * Loads this resources using an XDomainRequest. This is here because we need to support IE9 (gross). + * + * @private + */ + ; + + _proto._loadXdr = function _loadXdr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xdr = this.xhr = new XDomainRequest(); // eslint-disable-line no-undef + // XDomainRequest has a few quirks. Occasionally it will abort requests + // A way to avoid this is to make sure ALL callbacks are set even if not used + // More info here: http://stackoverflow.com/questions/15786966/xdomainrequest-aborts-post-on-ie-9 + + xdr.timeout = this.timeout || 5000; // XDR needs a timeout value or it breaks in IE9 + + xdr.onerror = this._boundXhrOnError; + xdr.ontimeout = this._boundXhrOnTimeout; + xdr.onprogress = this._boundOnProgress; + xdr.onload = this._boundXhrOnLoad; + xdr.open('GET', this.url, true); // Note: The xdr.send() call is wrapped in a timeout to prevent an + // issue with the interface where some requests are lost if multiple + // XDomainRequests are being sent at the same time. + // Some info here: https://github.com/photonstorm/phaser/issues/1248 + + setTimeout(function () { + return xdr.send(); + }, 1); + } + /** + * Creates a source used in loading via an element. + * + * @private + * @param {string} type - The element type (video or audio). + * @param {string} url - The source URL to load from. + * @param {string} [mime] - The mime type of the video + * @return {HTMLSourceElement} The source element. + */ + ; + + _proto._createSource = function _createSource(type, url, mime) { + if (!mime) { + mime = type + "/" + this._getExtension(url); + } + + var source = document.createElement('source'); + source.src = url; + source.type = mime; + return source; + } + /** + * Called if a load errors out. + * + * @param {Event} event - The error event from the element that emits it. + * @private + */ + ; + + _proto._onError = function _onError(event) { + this.abort("Failed to load element using: " + event.target.nodeName); + } + /** + * Called if a load progress event fires for an element or xhr/xdr. + * + * @private + * @param {XMLHttpRequestProgressEvent|Event} event - Progress event. + */ + ; + + _proto._onProgress = function _onProgress(event) { + if (event && event.lengthComputable) { + this.onProgress.dispatch(this, event.loaded / event.total); + } + } + /** + * Called if a timeout event fires for an element. + * + * @private + */ + ; + + _proto._onTimeout = function _onTimeout() { + this.abort("Load timed out."); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnError = function _xhrOnError() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request failed. Status: " + xhr.status + ", text: \"" + xhr.statusText + "\""); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnTimeout = function _xhrOnTimeout() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request timed out."); + } + /** + * Called if an abort event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnAbort = function _xhrOnAbort() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request was aborted by the user."); + } + /** + * Called when data successfully loads from an xhr/xdr request. + * + * @private + * @param {XMLHttpRequestLoadEvent|Event} event - Load event + */ + ; + + _proto._xhrOnLoad = function _xhrOnLoad() { + var xhr = this.xhr; + var text = ''; + var status = typeof xhr.status === 'undefined' ? STATUS_OK : xhr.status; // XDR has no `.status`, assume 200. + // responseText is accessible only if responseType is '' or 'text' and on older browsers + + if (xhr.responseType === '' || xhr.responseType === 'text' || typeof xhr.responseType === 'undefined') { + text = xhr.responseText; + } // status can be 0 when using the `file://` protocol so we also check if a response is set. + // If it has a response, we assume 200; otherwise a 0 status code with no contents is an aborted request. + + + if (status === STATUS_NONE && (text.length > 0 || xhr.responseType === Resource.XHR_RESPONSE_TYPE.BUFFER)) { + status = STATUS_OK; + } // handle IE9 bug: http://stackoverflow.com/questions/10046972/msie-returns-status-code-of-1223-for-ajax-request + else if (status === STATUS_IE_BUG_EMPTY) { + status = STATUS_EMPTY; + } + + var statusType = status / 100 | 0; + + if (statusType === STATUS_TYPE_OK) { + // if text, just return it + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.TEXT) { + this.data = text; + this.type = Resource.TYPE.TEXT; + } // if json, parse into json object + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON) { + try { + this.data = JSON.parse(text); + this.type = Resource.TYPE.JSON; + } catch (e) { + this.abort("Error trying to parse loaded json: " + e); + return; + } + } // if xml, parse into an xml document or div element + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + try { + if (window.DOMParser) { + var domparser = new DOMParser(); + this.data = domparser.parseFromString(text, 'text/xml'); + } else { + var div = document.createElement('div'); + div.innerHTML = text; + this.data = div; + } + + this.type = Resource.TYPE.XML; + } catch (e) { + this.abort("Error trying to parse loaded xml: " + e); + return; + } + } // other types just return the response + else { + this.data = xhr.response || text; + } + } else { + this.abort("[" + xhr.status + "] " + xhr.statusText + ": " + xhr.responseURL); + return; + } + + this.complete(); + } + /** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * + * @private + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ + ; + + _proto._determineCrossOrigin = function _determineCrossOrigin(url, loc) { + // data: and javascript: urls are considered same-origin + if (url.indexOf('data:') === 0) { + return ''; + } // A sandboxed iframe without the 'allow-same-origin' attribute will have a special + // origin designed not to match window.location.origin, and will always require + // crossOrigin requests regardless of whether the location matches. + + + if (window.origin !== window.location.origin) { + return 'anonymous'; + } // default is window.location + + + loc = loc || window.location; + + if (!tempAnchor$1) { + tempAnchor$1 = document.createElement('a'); + } // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + + + tempAnchor$1.href = url; + url = parseUri(tempAnchor$1.href, { + strictMode: true + }); + var samePort = !url.port && loc.port === '' || url.port === loc.port; + var protocol = url.protocol ? url.protocol + ":" : ''; // if cross origin + + if (url.host !== loc.hostname || !samePort || protocol !== loc.protocol) { + return 'anonymous'; + } + + return ''; + } + /** + * Determines the responseType of an XHR request based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.XHR_RESPONSE_TYPE} The responseType to use. + */ + ; + + _proto._determineXhrType = function _determineXhrType() { + return Resource._xhrTypeMap[this.extension] || Resource.XHR_RESPONSE_TYPE.TEXT; + } + /** + * Determines the loadType of a resource based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.LOAD_TYPE} The loadType to use. + */ + ; + + _proto._determineLoadType = function _determineLoadType() { + return Resource._loadTypeMap[this.extension] || Resource.LOAD_TYPE.XHR; + } + /** + * Extracts the extension (sans '.') of the file being loaded by the resource. + * + * @private + * @return {string} The extension. + */ + ; + + _proto._getExtension = function _getExtension() { + var url = this.url; + var ext = ''; + + if (this.isDataUrl) { + var slashIndex = url.indexOf('/'); + ext = url.substring(slashIndex + 1, url.indexOf(';', slashIndex)); + } else { + var queryStart = url.indexOf('?'); + var hashStart = url.indexOf('#'); + var index = Math.min(queryStart > -1 ? queryStart : url.length, hashStart > -1 ? hashStart : url.length); + url = url.substring(0, index); + ext = url.substring(url.lastIndexOf('.') + 1); + } + + return ext.toLowerCase(); + } + /** + * Determines the mime type of an XHR request based on the responseType of + * resource being loaded. + * + * @private + * @param {Resource.XHR_RESPONSE_TYPE} type - The type to get a mime type for. + * @return {string} The mime type to use. + */ + ; + + _proto._getMimeFromXhrType = function _getMimeFromXhrType(type) { + switch (type) { + case Resource.XHR_RESPONSE_TYPE.BUFFER: + return 'application/octet-binary'; + + case Resource.XHR_RESPONSE_TYPE.BLOB: + return 'application/blob'; + + case Resource.XHR_RESPONSE_TYPE.DOCUMENT: + return 'application/xml'; + + case Resource.XHR_RESPONSE_TYPE.JSON: + return 'application/json'; + + case Resource.XHR_RESPONSE_TYPE.DEFAULT: + case Resource.XHR_RESPONSE_TYPE.TEXT: + /* falls through */ + + default: + return 'text/plain'; + } + }; + + _createClass(Resource, [{ + key: "isDataUrl", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.DATA_URL); + } + /** + * Describes if this resource has finished loading. Is true when the resource has completely + * loaded. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isComplete", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.COMPLETE); + } + /** + * Describes if this resource is currently loading. Is true when the resource starts loading, + * and is false again when complete. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isLoading", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.LOADING); + } + }]); + + return Resource; +}(); +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + + +Resource$1.STATUS_FLAGS = { + NONE: 0, + DATA_URL: 1 << 0, + COMPLETE: 1 << 1, + LOADING: 1 << 2 +}; +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.TYPE = { + UNKNOWN: 0, + JSON: 1, + XML: 2, + IMAGE: 3, + AUDIO: 4, + VIDEO: 5, + TEXT: 6 +}; +/** + * The types of loading a resource can use. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.LOAD_TYPE = { + /** Uses XMLHttpRequest to load the resource. */ + XHR: 1, + + /** Uses an `Image` object to load the resource. */ + IMAGE: 2, + + /** Uses an `Audio` object to load the resource. */ + AUDIO: 3, + + /** Uses a `Video` object to load the resource. */ + VIDEO: 4 +}; +/** + * The XHR ready states, used internally. + * + * @static + * @readonly + * @enum {string} + */ + +Resource$1.XHR_RESPONSE_TYPE = { + /** string */ + DEFAULT: 'text', + + /** ArrayBuffer */ + BUFFER: 'arraybuffer', + + /** Blob */ + BLOB: 'blob', + + /** Document */ + DOCUMENT: 'document', + + /** Object */ + JSON: 'json', + + /** String */ + TEXT: 'text' +}; +Resource$1._loadTypeMap = { + // images + gif: Resource$1.LOAD_TYPE.IMAGE, + png: Resource$1.LOAD_TYPE.IMAGE, + bmp: Resource$1.LOAD_TYPE.IMAGE, + jpg: Resource$1.LOAD_TYPE.IMAGE, + jpeg: Resource$1.LOAD_TYPE.IMAGE, + tif: Resource$1.LOAD_TYPE.IMAGE, + tiff: Resource$1.LOAD_TYPE.IMAGE, + webp: Resource$1.LOAD_TYPE.IMAGE, + tga: Resource$1.LOAD_TYPE.IMAGE, + svg: Resource$1.LOAD_TYPE.IMAGE, + 'svg+xml': Resource$1.LOAD_TYPE.IMAGE, + // for SVG data urls + // audio + mp3: Resource$1.LOAD_TYPE.AUDIO, + ogg: Resource$1.LOAD_TYPE.AUDIO, + wav: Resource$1.LOAD_TYPE.AUDIO, + // videos + mp4: Resource$1.LOAD_TYPE.VIDEO, + webm: Resource$1.LOAD_TYPE.VIDEO +}; +Resource$1._xhrTypeMap = { + // xml + xhtml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + html: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + htm: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + xml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + tmx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + svg: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // This was added to handle Tiled Tileset XML, but .tsx is also a TypeScript React Component. + // Since it is way less likely for people to be loading TypeScript files instead of Tiled files, + // this should probably be fine. + tsx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // images + gif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + png: Resource$1.XHR_RESPONSE_TYPE.BLOB, + bmp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpeg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tiff: Resource$1.XHR_RESPONSE_TYPE.BLOB, + webp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tga: Resource$1.XHR_RESPONSE_TYPE.BLOB, + // json + json: Resource$1.XHR_RESPONSE_TYPE.JSON, + // text + text: Resource$1.XHR_RESPONSE_TYPE.TEXT, + txt: Resource$1.XHR_RESPONSE_TYPE.TEXT, + // fonts + ttf: Resource$1.XHR_RESPONSE_TYPE.BUFFER, + otf: Resource$1.XHR_RESPONSE_TYPE.BUFFER +}; // We can't set the `src` attribute to empty string, so on abort we set it to this 1px transparent gif + +Resource$1.EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='; +/** + * Quick helper to set a value on one of the extension maps. Ensures there is no + * dot at the start of the extension. + * + * @ignore + * @param {object} map - The map to set on. + * @param {string} extname - The extension (or key) to set. + * @param {number} val - The value to set. + */ + +function setExtMap(map, extname, val) { + if (extname && extname.indexOf('.') === 0) { + extname = extname.substring(1); + } + + if (!extname) { + return; + } + + map[extname] = val; +} +/** + * Quick helper to get string xhr type. + * + * @ignore + * @param {XMLHttpRequest|XDomainRequest} xhr - The request to check. + * @return {string} The type. + */ + + +function reqType(xhr) { + return xhr.toString().replace('object ', ''); +} + +var _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; +/** + * Encodes binary into base64. + * + * @function encodeBinary + * @param {string} input The input data to encode. + * @returns {string} The encoded base64 string + */ + +function encodeBinary(input) { + var output = ''; + var inx = 0; + + while (inx < input.length) { + // Fill byte buffer array + var bytebuffer = [0, 0, 0]; + var encodedCharIndexes = [0, 0, 0, 0]; + + for (var jnx = 0; jnx < bytebuffer.length; ++jnx) { + if (inx < input.length) { + // throw away high-order byte, as documented at: + // https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data + bytebuffer[jnx] = input.charCodeAt(inx++) & 0xff; + } else { + bytebuffer[jnx] = 0; + } + } // Get each encoded character, 6 bits at a time + // index 1: first 6 bits + + + encodedCharIndexes[0] = bytebuffer[0] >> 2; // index 2: second 6 bits (2 least significant bits from input byte 1 + 4 most significant bits from byte 2) + + encodedCharIndexes[1] = (bytebuffer[0] & 0x3) << 4 | bytebuffer[1] >> 4; // index 3: third 6 bits (4 least significant bits from input byte 2 + 2 most significant bits from byte 3) + + encodedCharIndexes[2] = (bytebuffer[1] & 0x0f) << 2 | bytebuffer[2] >> 6; // index 3: forth 6 bits (6 least significant bits from input byte 3) + + encodedCharIndexes[3] = bytebuffer[2] & 0x3f; // Determine whether padding happened, and adjust accordingly + + var paddingBytes = inx - (input.length - 1); + + switch (paddingBytes) { + case 2: + // Set last 2 characters to padding char + encodedCharIndexes[3] = 64; + encodedCharIndexes[2] = 64; + break; + + case 1: + // Set last character to padding char + encodedCharIndexes[3] = 64; + break; + + default: + break; + // No padding - proceed + } // Now we will grab each appropriate character out of our keystring + // based on our index array and append it to the output string + + + for (var _jnx = 0; _jnx < encodedCharIndexes.length; ++_jnx) { + output += _keyStr.charAt(encodedCharIndexes[_jnx]); + } + } + + return output; +} + +var Url$1 = window.URL || window.webkitURL; +/** + * A middleware for transforming XHR loaded Blobs into more useful objects + * + * @memberof middleware + * @function parsing + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.parsing); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function parsing(resource, next) { + if (!resource.data) { + next(); + return; + } // if this was an XHR load of a blob + + + if (resource.xhr && resource.xhrType === Resource$1.XHR_RESPONSE_TYPE.BLOB) { + // if there is no blob support we probably got a binary string back + if (!window.Blob || typeof resource.data === 'string') { + var type = resource.xhr.getResponseHeader('content-type'); // this is an image, convert the binary string into a data url + + if (type && type.indexOf('image') === 0) { + resource.data = new Image(); + resource.data.src = "data:" + type + ";base64," + encodeBinary(resource.xhr.responseText); + resource.type = Resource$1.TYPE.IMAGE; // wait until the image loads and then callback + + resource.data.onload = function () { + resource.data.onload = null; + next(); + }; // next will be called on load + + + return; + } + } // if content type says this is an image, then we should transform the blob into an Image object + else if (resource.data.type.indexOf('image') === 0) { + var src = Url$1.createObjectURL(resource.data); + resource.blob = resource.data; + resource.data = new Image(); + resource.data.src = src; + resource.type = Resource$1.TYPE.IMAGE; // cleanup the no longer used blob after the image loads + // TODO: Is this correct? Will the image be invalid after revoking? + + resource.data.onload = function () { + Url$1.revokeObjectURL(src); + resource.data.onload = null; + next(); + }; // next will be called on load. + + + return; + } + } + + next(); +} + +/** + * @namespace middleware + */ + +var index = ({ + caching: caching, + parsing: parsing +}); + +var MAX_PROGRESS = 100; +var rgxExtractUrlHash = /(#[\w-]+)?$/; +/** + * Manages the state and loading of multiple resources to load. + * + * @class + */ + +var Loader = +/*#__PURE__*/ +function () { + /** + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ + function Loader(baseUrl, concurrency) { + var _this = this; + + if (baseUrl === void 0) { + baseUrl = ''; + } + + if (concurrency === void 0) { + concurrency = 10; + } + + /** + * The base url for all resources loaded by this loader. + * + * @member {string} + */ + this.baseUrl = baseUrl; + /** + * The progress percent of the loader going through the queue. + * + * @member {number} + * @default 0 + */ + + this.progress = 0; + /** + * Loading state of the loader, true if it is currently loading resources. + * + * @member {boolean} + * @default false + */ + + this.loading = false; + /** + * A querystring to append to every URL added to the loader. + * + * This should be a valid query string *without* the question-mark (`?`). The loader will + * also *not* escape values for you. Make sure to escape your parameters with + * [`encodeURIComponent`](https://mdn.io/encodeURIComponent) before assigning this property. + * + * @example + * const loader = new Loader(); + * + * loader.defaultQueryString = 'user=me&password=secret'; + * + * // This will request 'image.png?user=me&password=secret' + * loader.add('image.png').load(); + * + * loader.reset(); + * + * // This will request 'image.png?v=1&user=me&password=secret' + * loader.add('iamge.png?v=1').load(); + * + * @member {string} + * @default '' + */ + + this.defaultQueryString = ''; + /** + * The middleware to run before loading each resource. + * + * @private + * @member {function[]} + */ + + this._beforeMiddleware = []; + /** + * The middleware to run after loading each resource. + * + * @private + * @member {function[]} + */ + + this._afterMiddleware = []; + /** + * The tracks the resources we are currently completing parsing for. + * + * @private + * @member {Resource[]} + */ + + this._resourcesParsing = []; + /** + * The `_loadResource` function bound with this object context. + * + * @private + * @member {function} + * @param {Resource} r - The resource to load + * @param {Function} d - The dequeue function + * @return {undefined} + */ + + this._boundLoadResource = function (r, d) { + return _this._loadResource(r, d); + }; + /** + * The resources waiting to be loaded. + * + * @private + * @member {Resource[]} + */ + + + this._queue = queue(this._boundLoadResource, concurrency); + + this._queue.pause(); + /** + * All the resources for this loader keyed by name. + * + * @member {object} + */ + + + this.resources = {}; + /** + * Dispatched once per loaded or errored resource. + * + * The callback looks like {@link Loader.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once per errored resource. + * + * The callback looks like {@link Loader.OnErrorSignal}. + * + * @member {Signal} + */ + + this.onError = new Signal(); + /** + * Dispatched once per loaded resource. + * + * The callback looks like {@link Loader.OnLoadSignal}. + * + * @member {Signal} + */ + + this.onLoad = new Signal(); + /** + * Dispatched when the loader begins to process the queue. + * + * The callback looks like {@link Loader.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched when the queued resources all load. + * + * The callback looks like {@link Loader.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); // Add default before middleware + + for (var i = 0; i < Loader._defaultBeforeMiddleware.length; ++i) { + this.pre(Loader._defaultBeforeMiddleware[i]); + } // Add default after middleware + + + for (var _i = 0; _i < Loader._defaultAfterMiddleware.length; ++_i) { + this.use(Loader._defaultAfterMiddleware[_i]); + } + } + /** + * When the progress changes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnProgressSignal + * @param {Loader} loader - The loader the progress is advancing on. + * @param {Resource} resource - The resource that has completed or failed to cause the progress to advance. + */ + + /** + * When an error occurrs the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnErrorSignal + * @param {Loader} loader - The loader the error happened in. + * @param {Resource} resource - The resource that caused the error. + */ + + /** + * When a load completes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnLoadSignal + * @param {Loader} loader - The loader that laoded the resource. + * @param {Resource} resource - The resource that has completed loading. + */ + + /** + * When the loader starts loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnStartSignal + * @param {Loader} loader - The loader that has started loading resources. + */ + + /** + * When the loader completes loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnCompleteSignal + * @param {Loader} loader - The loader that has finished loading resources. + */ + + /** + * Options for a call to `.add()`. + * + * @see Loader#add + * + * @typedef {object} IAddOptions + * @property {string} [name] - The name of the resource to load, if not passed the url is used. + * @property {string} [key] - Alias for `name`. + * @property {string} [url] - The url for this resource, relative to the baseUrl of this loader. + * @property {string|boolean} [crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @property {number} [timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @property {Resource.LOAD_TYPE} [loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @property {Resource.XHR_RESPONSE_TYPE} [xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @property {Resource.OnCompleteSignal} [onComplete] - Callback to add an an onComplete signal istener. + * @property {Resource.OnCompleteSignal} [callback] - Alias for `onComplete`. + * @property {Resource.IMetadata} [metadata] - Extra configuration for middleware and the Resource object. + */ + + /* eslint-disable require-jsdoc,valid-jsdoc */ + + /** + * Adds a resource (or multiple resources) to the loader queue. + * + * This function can take a wide variety of different parameters. The only thing that is always + * required the url to load. All the following will work: + * + * ```js + * loader + * // normal param syntax + * .add('key', 'http://...', function () {}) + * .add('http://...', function () {}) + * .add('http://...') + * + * // object syntax + * .add({ + * name: 'key2', + * url: 'http://...' + * }, function () {}) + * .add({ + * url: 'http://...' + * }, function () {}) + * .add({ + * name: 'key3', + * url: 'http://...' + * onComplete: function () {} + * }) + * .add({ + * url: 'https://...', + * onComplete: function () {}, + * crossOrigin: true + * }) + * + * // you can also pass an array of objects or urls or both + * .add([ + * { name: 'key4', url: 'http://...', onComplete: function () {} }, + * { url: 'http://...', onComplete: function () {} }, + * 'http://...' + * ]) + * + * // and you can use both params and options + * .add('key', 'http://...', { crossOrigin: true }, function () {}) + * .add('http://...', { crossOrigin: true }, function () {}); + * ``` + * + * @function + * @variation 1 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 2 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 3 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 4 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 5 + * @param {IAddOptions} options - The options for the load. This object must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 6 + * @param {Array} resources - An array of resources to load, where each is + * either an object with the options or a string url. If you pass an object, it must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + + var _proto = Loader.prototype; + + _proto.add = function add(name, url, options, cb) { + // special case of an array of objects or urls + if (Array.isArray(name)) { + for (var i = 0; i < name.length; ++i) { + this.add(name[i]); + } + + return this; + } // if an object is passed instead of params + + + if (typeof name === 'object') { + cb = url || name.callback || name.onComplete; + options = name; + url = name.url; + name = name.name || name.key || name.url; + } // case where no name is passed shift all args over by one. + + + if (typeof url !== 'string') { + cb = options; + options = url; + url = name; + } // now that we shifted make sure we have a proper url. + + + if (typeof url !== 'string') { + throw new Error('No url passed to add resource to loader.'); + } // options are optional so people might pass a function and no options + + + if (typeof options === 'function') { + cb = options; + options = null; + } // if loading already you can only add resources that have a parent. + + + if (this.loading && (!options || !options.parentResource)) { + throw new Error('Cannot add resources while the loader is running.'); + } // check if resource already exists. + + + if (this.resources[name]) { + throw new Error("Resource named \"" + name + "\" already exists."); + } // add base url if this isn't an absolute url + + + url = this._prepareUrl(url); // create the store the resource + + this.resources[name] = new Resource$1(name, url, options); + + if (typeof cb === 'function') { + this.resources[name].onAfterMiddleware.once(cb); + } // if actively loading, make sure to adjust progress chunks for that parent and its children + + + if (this.loading) { + var parent = options.parentResource; + var incompleteChildren = []; + + for (var _i2 = 0; _i2 < parent.children.length; ++_i2) { + if (!parent.children[_i2].isComplete) { + incompleteChildren.push(parent.children[_i2]); + } + } + + var fullChunk = parent.progressChunk * (incompleteChildren.length + 1); // +1 for parent + + var eachChunk = fullChunk / (incompleteChildren.length + 2); // +2 for parent & new child + + parent.children.push(this.resources[name]); + parent.progressChunk = eachChunk; + + for (var _i3 = 0; _i3 < incompleteChildren.length; ++_i3) { + incompleteChildren[_i3].progressChunk = eachChunk; + } + + this.resources[name].progressChunk = eachChunk; + } // add the resource to the queue + + + this._queue.push(this.resources[name]); + + return this; + } + /* eslint-enable require-jsdoc,valid-jsdoc */ + + /** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.pre = function pre(fn) { + this._beforeMiddleware.push(fn); + + return this; + } + /** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.use = function use(fn) { + this._afterMiddleware.push(fn); + + return this; + } + /** + * Resets the queue of the loader to prepare for a new load. + * + * @return {this} Returns itself. + */ + ; + + _proto.reset = function reset() { + this.progress = 0; + this.loading = false; + + this._queue.kill(); + + this._queue.pause(); // abort all resource loads + + + for (var k in this.resources) { + var res = this.resources[k]; + + if (res._onLoadBinding) { + res._onLoadBinding.detach(); + } + + if (res.isLoading) { + res.abort(); + } + } + + this.resources = {}; + return this; + } + /** + * Starts loading the queued resources. + * + * @param {function} [cb] - Optional callback that will be bound to the `complete` event. + * @return {this} Returns itself. + */ + ; + + _proto.load = function load(cb) { + // register complete callback if they pass one + if (typeof cb === 'function') { + this.onComplete.once(cb); + } // if the queue has already started we are done here + + + if (this.loading) { + return this; + } + + if (this._queue.idle()) { + this._onStart(); + + this._onComplete(); + } else { + // distribute progress chunks + var numTasks = this._queue._tasks.length; + var chunk = MAX_PROGRESS / numTasks; + + for (var i = 0; i < this._queue._tasks.length; ++i) { + this._queue._tasks[i].data.progressChunk = chunk; + } // notify we are starting + + + this._onStart(); // start loading + + + this._queue.resume(); + } + + return this; + } + /** + * The number of resources to load concurrently. + * + * @member {number} + * @default 10 + */ + ; + + /** + * Prepares a url for usage based on the configuration of this object + * + * @private + * @param {string} url - The url to prepare. + * @return {string} The prepared url. + */ + _proto._prepareUrl = function _prepareUrl(url) { + var parsedUrl = parseUri(url, { + strictMode: true + }); + var result; // absolute url, just use it as is. + + if (parsedUrl.protocol || !parsedUrl.path || url.indexOf('//') === 0) { + result = url; + } // if baseUrl doesn't end in slash and url doesn't start with slash, then add a slash inbetween + else if (this.baseUrl.length && this.baseUrl.lastIndexOf('/') !== this.baseUrl.length - 1 && url.charAt(0) !== '/') { + result = this.baseUrl + "/" + url; + } else { + result = this.baseUrl + url; + } // if we need to add a default querystring, there is a bit more work + + + if (this.defaultQueryString) { + var hash = rgxExtractUrlHash.exec(result)[0]; + result = result.substr(0, result.length - hash.length); + + if (result.indexOf('?') !== -1) { + result += "&" + this.defaultQueryString; + } else { + result += "?" + this.defaultQueryString; + } + + result += hash; + } + + return result; + } + /** + * Loads a single resource. + * + * @private + * @param {Resource} resource - The resource to load. + * @param {function} dequeue - The function to call when we need to dequeue this item. + */ + ; + + _proto._loadResource = function _loadResource(resource, dequeue) { + var _this2 = this; + + resource._dequeue = dequeue; // run before middleware + + eachSeries(this._beforeMiddleware, function (fn, next) { + fn.call(_this2, resource, function () { + // if the before middleware marks the resource as complete, + // break and don't process any more before middleware + next(resource.isComplete ? {} : null); + }); + }, function () { + if (resource.isComplete) { + _this2._onLoad(resource); + } else { + resource._onLoadBinding = resource.onComplete.once(_this2._onLoad, _this2); + resource.load(); + } + }, true); + } + /** + * Called once loading has started. + * + * @private + */ + ; + + _proto._onStart = function _onStart() { + this.progress = 0; + this.loading = true; + this.onStart.dispatch(this); + } + /** + * Called once each resource has loaded. + * + * @private + */ + ; + + _proto._onComplete = function _onComplete() { + this.progress = MAX_PROGRESS; + this.loading = false; + this.onComplete.dispatch(this, this.resources); + } + /** + * Called each time a resources is loaded. + * + * @private + * @param {Resource} resource - The resource that was loaded + */ + ; + + _proto._onLoad = function _onLoad(resource) { + var _this3 = this; + + resource._onLoadBinding = null; // remove this resource from the async queue, and add it to our list of resources that are being parsed + + this._resourcesParsing.push(resource); + + resource._dequeue(); // run all the after middleware for this resource + + + eachSeries(this._afterMiddleware, function (fn, next) { + fn.call(_this3, resource, next); + }, function () { + resource.onAfterMiddleware.dispatch(resource); + _this3.progress = Math.min(MAX_PROGRESS, _this3.progress + resource.progressChunk); + + _this3.onProgress.dispatch(_this3, resource); + + if (resource.error) { + _this3.onError.dispatch(resource.error, _this3, resource); + } else { + _this3.onLoad.dispatch(_this3, resource); + } + + _this3._resourcesParsing.splice(_this3._resourcesParsing.indexOf(resource), 1); // do completion check + + + if (_this3._queue.idle() && _this3._resourcesParsing.length === 0) { + _this3._onComplete(); + } + }, true); + }; + + _createClass(Loader, [{ + key: "concurrency", + get: function get() { + return this._queue.concurrency; + } // eslint-disable-next-line require-jsdoc + , + set: function set(concurrency) { + this._queue.concurrency = concurrency; + } + }]); + + return Loader; +}(); +/** + * A default array of middleware to run before loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + + +Loader._defaultBeforeMiddleware = []; +/** + * A default array of middleware to run after loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + +Loader._defaultAfterMiddleware = []; +/** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + +Loader.pre = function LoaderPreStatic(fn) { + Loader._defaultBeforeMiddleware.push(fn); + + return Loader; +}; +/** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + + +Loader.use = function LoaderUseStatic(fn) { + Loader._defaultAfterMiddleware.push(fn); + + return Loader; +}; + +/*! + * @pixi/loaders - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/loaders is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Loader plugin for handling Texture resources. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var TextureLoader = function TextureLoader () {}; + +TextureLoader.use = function use (resource, next) +{ + // create a new texture if the data is an Image object + if (resource.data && resource.type === Resource$1.TYPE.IMAGE) + { + resource.texture = Texture.fromLoader( + resource.data, + resource.url, + resource.name + ); + } + next(); +}; + +/** + * The new loader, extends Resource Loader by Chad Engler: https://github.com/englercj/resource-loader + * + * ```js + * const loader = PIXI.Loader.shared; // PixiJS exposes a premade instance for you to use. + * //or + * const loader = new PIXI.Loader(); // you can also create your own if you want + * + * const sprites = {}; + * + * // Chainable `add` to enqueue a resource + * loader.add('bunny', 'data/bunny.png') + * .add('spaceship', 'assets/spritesheet.json'); + * loader.add('scoreFont', 'assets/score.fnt'); + * + * // Chainable `pre` to add a middleware that runs for each resource, *before* loading that resource. + * // This is useful to implement custom caching modules (using filesystem, indexeddb, memory, etc). + * loader.pre(cachingMiddleware); + * + * // Chainable `use` to add a middleware that runs for each resource, *after* loading that resource. + * // This is useful to implement custom parsing modules (like spritesheet parsers, spine parser, etc). + * loader.use(parsingMiddleware); + * + * // The `load` method loads the queue of resources, and calls the passed in callback called once all + * // resources have loaded. + * loader.load((loader, resources) => { + * // resources is an object where the key is the name of the resource loaded and the value is the resource object. + * // They have a couple default properties: + * // - `url`: The URL that the resource was loaded from + * // - `error`: The error that happened when trying to load (if any) + * // - `data`: The raw data that was loaded + * // also may contain other properties based on the middleware that runs. + * sprites.bunny = new PIXI.TilingSprite(resources.bunny.texture); + * sprites.spaceship = new PIXI.TilingSprite(resources.spaceship.texture); + * sprites.scoreFont = new PIXI.TilingSprite(resources.scoreFont.texture); + * }); + * + * // throughout the process multiple signals can be dispatched. + * loader.onProgress.add(() => {}); // called once per loaded/errored file + * loader.onError.add(() => {}); // called once per errored file + * loader.onLoad.add(() => {}); // called once per loaded file + * loader.onComplete.add(() => {}); // called once when the queued resources all load. + * ``` + * + * @see https://github.com/englercj/resource-loader + * + * @class Loader + * @memberof PIXI + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ +var Loader$1 = /*@__PURE__*/(function (ResourceLoader) { + function Loader(baseUrl, concurrency) + { + var this$1 = this; + + ResourceLoader.call(this, baseUrl, concurrency); + eventemitter3.call(this); + + for (var i = 0; i < Loader._plugins.length; ++i) + { + var plugin = Loader._plugins[i]; + var pre = plugin.pre; + var use = plugin.use; + + if (pre) + { + this.pre(pre); + } + + if (use) + { + this.use(use); + } + } + + // Compat layer, translate the new v2 signals into old v1 events. + this.onStart.add(function (l) { return this$1.emit('start', l); }); + this.onProgress.add(function (l, r) { return this$1.emit('progress', l, r); }); + this.onError.add(function (e, l, r) { return this$1.emit('error', e, l, r); }); + this.onLoad.add(function (l, r) { return this$1.emit('load', l, r); }); + this.onComplete.add(function (l, r) { return this$1.emit('complete', l, r); }); + + /** + * If this loader cannot be destroyed. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + } + + if ( ResourceLoader ) Loader.__proto__ = ResourceLoader; + Loader.prototype = Object.create( ResourceLoader && ResourceLoader.prototype ); + Loader.prototype.constructor = Loader; + + var staticAccessors = { shared: { configurable: true } }; + + /** + * Destroy the loader, removes references. + * @private + */ + Loader.prototype.destroy = function destroy () + { + if (!this._protected) + { + this.removeAllListeners(); + this.reset(); + } + }; + + /** + * A premade instance of the loader that can be used to load resources. + * @name shared + * @type {PIXI.Loader} + * @static + * @memberof PIXI.Loader + */ + staticAccessors.shared.get = function () + { + var shared = Loader._shared; + + if (!shared) + { + shared = new Loader(); + shared._protected = true; + Loader._shared = shared; + } + + return shared; + }; + + Object.defineProperties( Loader, staticAccessors ); + + return Loader; +}(Loader)); + +// Copy EE3 prototype (mixin) +Object.assign(Loader$1.prototype, eventemitter3.prototype); + +/** + * Collection of all installed `use` middleware for Loader. + * + * @static + * @member {Array} _plugins + * @memberof PIXI.Loader + * @private + */ +Loader$1._plugins = []; + +/** + * Adds a Loader plugin for the global shared loader and all + * new Loader instances created. + * + * @static + * @method registerPlugin + * @memberof PIXI.Loader + * @param {PIXI.ILoaderPlugin} plugin - The plugin to add + * @return {PIXI.Loader} Reference to PIXI.Loader for chaining + */ +Loader$1.registerPlugin = function registerPlugin(plugin) +{ + Loader$1._plugins.push(plugin); + + if (plugin.add) + { + plugin.add(); + } + + return Loader$1; +}; + +// parse any blob into more usable objects (e.g. Image) +Loader$1.registerPlugin({ use: index.parsing }); + +// parse any Image objects into textures +Loader$1.registerPlugin(TextureLoader); + +/** + * Plugin to be installed for handling specific Loader resources. + * + * @memberof PIXI + * @typedef ILoaderPlugin + * @property {function} [add] - Function to call immediate after registering plugin. + * @property {PIXI.Loader.loaderMiddleware} [pre] - Middleware function to run before load, the + * arguments for this are `(resource, next)` + * @property {PIXI.Loader.loaderMiddleware} [use] - Middleware function to run after load, the + * arguments for this are `(resource, next)` + */ + +/** + * @memberof PIXI.Loader + * @callback loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onStart + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onProgress + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onError + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onLoad + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onComplete + */ + +/** + * Application plugin for supporting loader option. Installing the LoaderPlugin + * is not necessary if using **pixi.js** or **pixi.js-legacy**. + * @example + * import {AppLoaderPlugin} from '@pixi/loaders'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(AppLoaderPlugin); + * @class + * @memberof PIXI + */ +var AppLoaderPlugin = function AppLoaderPlugin () {}; + +AppLoaderPlugin.init = function init (options) +{ + options = Object.assign({ + sharedLoader: false, + }, options); + + /** + * Loader instance to help with asset loading. + * @name PIXI.Application#loader + * @type {PIXI.Loader} + * @readonly + */ + this.loader = options.sharedLoader ? Loader$1.shared : new Loader$1(); +}; + +/** + * Called when application destroyed + * @private + */ +AppLoaderPlugin.destroy = function destroy () +{ + if (this.loader) + { + this.loader.destroy(); + this.loader = null; + } +}; + +/** + * Reference to **{@link https://github.com/englercj/resource-loader + * resource-loader}**'s Resource class. + * @see http://englercj.github.io/resource-loader/Resource.html + * @class LoaderResource + * @memberof PIXI + */ +var LoaderResource = Resource$1; + +/*! + * @pixi/particles - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/particles is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that + * they now share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleBuffer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleBuffer.java + */ + +/** + * The particle buffer manages the static and dynamic buffers for a particle container. + * + * @class + * @private + * @memberof PIXI + */ +var ParticleBuffer = function ParticleBuffer(properties, dynamicPropertyFlags, size) +{ + this.geometry = new Geometry(); + + this.indexBuffer = null; + + /** + * The number of particles the buffer can hold + * + * @private + * @member {number} + */ + this.size = size; + + /** + * A list of the properties that are dynamic. + * + * @private + * @member {object[]} + */ + this.dynamicProperties = []; + + /** + * A list of the properties that are static. + * + * @private + * @member {object[]} + */ + this.staticProperties = []; + + for (var i = 0; i < properties.length; ++i) + { + var property = properties[i]; + + // Make copy of properties object so that when we edit the offset it doesn't + // change all other instances of the object literal + property = { + attributeName: property.attributeName, + size: property.size, + uploadFunction: property.uploadFunction, + type: property.type || TYPES.FLOAT, + offset: property.offset, + }; + + if (dynamicPropertyFlags[i]) + { + this.dynamicProperties.push(property); + } + else + { + this.staticProperties.push(property); + } + } + + this.staticStride = 0; + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + + this.dynamicStride = 0; + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this._updateID = 0; + + this.initBuffers(); +}; + +/** + * Sets up the renderer context and necessary buffers. + * + * @private + */ +ParticleBuffer.prototype.initBuffers = function initBuffers () +{ + var geometry = this.geometry; + + var dynamicOffset = 0; + + /** + * Holds the indices of the geometry (quads) to draw + * + * @member {Uint16Array} + * @private + */ + this.indexBuffer = new Buffer$1(createIndicesForQuads(this.size), true, true); + geometry.addIndex(this.indexBuffer); + + this.dynamicStride = 0; + + for (var i = 0; i < this.dynamicProperties.length; ++i) + { + var property = this.dynamicProperties[i]; + + property.offset = dynamicOffset; + dynamicOffset += property.size; + this.dynamicStride += property.size; + } + + var dynBuffer = new ArrayBuffer(this.size * this.dynamicStride * 4 * 4); + + this.dynamicData = new Float32Array(dynBuffer); + this.dynamicDataUint32 = new Uint32Array(dynBuffer); + this.dynamicBuffer = new Buffer$1(this.dynamicData, false, false); + + // static // + var staticOffset = 0; + + this.staticStride = 0; + + for (var i$1 = 0; i$1 < this.staticProperties.length; ++i$1) + { + var property$1 = this.staticProperties[i$1]; + + property$1.offset = staticOffset; + staticOffset += property$1.size; + this.staticStride += property$1.size; + } + + var statBuffer = new ArrayBuffer(this.size * this.staticStride * 4 * 4); + + this.staticData = new Float32Array(statBuffer); + this.staticDataUint32 = new Uint32Array(statBuffer); + this.staticBuffer = new Buffer$1(this.staticData, true, false); + + for (var i$2 = 0; i$2 < this.dynamicProperties.length; ++i$2) + { + var property$2 = this.dynamicProperties[i$2]; + + geometry.addAttribute( + property$2.attributeName, + this.dynamicBuffer, + 0, + property$2.type === TYPES.UNSIGNED_BYTE, + property$2.type, + this.dynamicStride * 4, + property$2.offset * 4 + ); + } + + for (var i$3 = 0; i$3 < this.staticProperties.length; ++i$3) + { + var property$3 = this.staticProperties[i$3]; + + geometry.addAttribute( + property$3.attributeName, + this.staticBuffer, + 0, + property$3.type === TYPES.UNSIGNED_BYTE, + property$3.type, + this.staticStride * 4, + property$3.offset * 4 + ); + } +}; + +/** + * Uploads the dynamic properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadDynamic = function uploadDynamic (children, startIndex, amount) +{ + for (var i = 0; i < this.dynamicProperties.length; i++) + { + var property = this.dynamicProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.dynamicDataUint32 : this.dynamicData, + this.dynamicStride, property.offset); + } + + this.dynamicBuffer._updateID++; +}; + +/** + * Uploads the static properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadStatic = function uploadStatic (children, startIndex, amount) +{ + for (var i = 0; i < this.staticProperties.length; i++) + { + var property = this.staticProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.staticDataUint32 : this.staticData, + this.staticStride, property.offset); + } + + this.staticBuffer._updateID++; +}; + +/** + * Destroys the ParticleBuffer. + * + * @private + */ +ParticleBuffer.prototype.destroy = function destroy () +{ + this.indexBuffer = null; + + this.dynamicProperties = null; + // this.dynamicBuffer.destroy(); + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this.staticProperties = null; + // this.staticBuffer.destroy(); + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + // all buffers are destroyed inside geometry + this.geometry.destroy(); +}; + +var vertex$1 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\n\nattribute vec2 aPositionCoord;\nattribute float aRotation;\n\nuniform mat3 translationMatrix;\nuniform vec4 uColor;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nvoid main(void){\n float x = (aVertexPosition.x) * cos(aRotation) - (aVertexPosition.y) * sin(aRotation);\n float y = (aVertexPosition.x) * sin(aRotation) + (aVertexPosition.y) * cos(aRotation);\n\n vec2 v = vec2(x, y);\n v = v + aPositionCoord;\n\n gl_Position = vec4((translationMatrix * vec3(v, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vColor = aColor * uColor;\n}\n"; + +var fragment$1 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n vec4 color = texture2D(uSampler, vTextureCoord) * vColor;\n gl_FragColor = color;\n}"; + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that they now + * share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleRenderer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleRenderer.java + */ + +/** + * Renderer for Particles that is designer for speed over feature set. + * + * @class + * @memberof PIXI + */ +var ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function ParticleRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + // 65535 is max vertex index in the index buffer (see ParticleRenderer) + // so max number of particles is 65536 / 4 = 16384 + // and max number of element in the index buffer is 16384 * 6 = 98304 + // Creating a full index buffer, overhead is 98304 * 2 = 196Ko + // let numIndices = 98304; + + /** + * The default shader that is used if a sprite doesn't have a more specific one. + * + * @member {PIXI.Shader} + */ + this.shader = null; + + this.properties = null; + + this.tempMatrix = new Matrix(); + + this.properties = [ + // verticesData + { + attributeName: 'aVertexPosition', + size: 2, + uploadFunction: this.uploadVertices, + offset: 0, + }, + // positionData + { + attributeName: 'aPositionCoord', + size: 2, + uploadFunction: this.uploadPosition, + offset: 0, + }, + // rotationData + { + attributeName: 'aRotation', + size: 1, + uploadFunction: this.uploadRotation, + offset: 0, + }, + // uvsData + { + attributeName: 'aTextureCoord', + size: 2, + uploadFunction: this.uploadUvs, + offset: 0, + }, + // tintData + { + attributeName: 'aColor', + size: 1, + type: TYPES.UNSIGNED_BYTE, + uploadFunction: this.uploadTint, + offset: 0, + } ]; + + this.shader = Shader.from(vertex$1, fragment$1, {}); + } + + if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer; + ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + ParticleRenderer.prototype.constructor = ParticleRenderer; + + /** + * Renders the particle container object. + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + */ + ParticleRenderer.prototype.render = function render (container) + { + var children = container.children; + var maxSize = container._maxSize; + var batchSize = container._batchSize; + var renderer = this.renderer; + var totalChildren = children.length; + + if (totalChildren === 0) + { + return; + } + else if (totalChildren > maxSize && !container.autoResize) + { + totalChildren = maxSize; + } + + var buffers = container._buffers; + + if (!buffers) + { + buffers = container._buffers = this.generateBuffers(container); + } + + var baseTexture = children[0]._texture.baseTexture; + + // if the uvs have not updated then no point rendering just yet! + this.renderer.state.setBlendMode(correctBlendMode(container.blendMode, baseTexture.premultiplyAlpha)); + + var gl = renderer.gl; + + var m = container.worldTransform.copyTo(this.tempMatrix); + + m.prepend(renderer.globalUniforms.uniforms.projectionMatrix); + + this.shader.uniforms.translationMatrix = m.toArray(true); + + this.shader.uniforms.uColor = premultiplyRgba(container.tintRgb, + container.worldAlpha, this.shader.uniforms.uColor, baseTexture.premultiplyAlpha); + + this.shader.uniforms.uSampler = baseTexture; + + this.renderer.shader.bind(this.shader); + + var updateStatic = false; + + // now lets upload and render the buffers.. + for (var i = 0, j = 0; i < totalChildren; i += batchSize, j += 1) + { + var amount = (totalChildren - i); + + if (amount > batchSize) + { + amount = batchSize; + } + + if (j >= buffers.length) + { + buffers.push(this._generateOneMoreBuffer(container)); + } + + var buffer = buffers[j]; + + // we always upload the dynamic + buffer.uploadDynamic(children, i, amount); + + var bid = container._bufferUpdateIDs[j] || 0; + + updateStatic = updateStatic || (buffer._updateID < bid); + // we only upload the static content when we have to! + if (updateStatic) + { + buffer._updateID = container._updateID; + buffer.uploadStatic(children, i, amount); + } + + // bind the buffer + renderer.geometry.bind(buffer.geometry); + gl.drawElements(gl.TRIANGLES, amount * 6, gl.UNSIGNED_SHORT, 0); + } + }; + + /** + * Creates one particle buffer for each child in the container we want to render and updates internal properties + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer[]} The buffers + * @private + */ + ParticleRenderer.prototype.generateBuffers = function generateBuffers (container) + { + var buffers = []; + var size = container._maxSize; + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + for (var i = 0; i < size; i += batchSize) + { + buffers.push(new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize)); + } + + return buffers; + }; + + /** + * Creates one more particle buffer, because container has autoResize feature + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer} generated buffer + * @private + */ + ParticleRenderer.prototype._generateOneMoreBuffer = function _generateOneMoreBuffer (container) + { + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + return new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize); + }; + + /** + * Uploads the vertices. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their vertices uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadVertices = function uploadVertices (children, startIndex, amount, array, stride, offset) + { + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var texture = sprite._texture; + var sx = sprite.scale.x; + var sy = sprite.scale.y; + var trim = texture.trim; + var orig = texture.orig; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the + // extra space before transforming the sprite coords.. + w1 = trim.x - (sprite.anchor.x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (sprite.anchor.y * orig.height); + h0 = h1 + trim.height; + } + else + { + w0 = (orig.width) * (1 - sprite.anchor.x); + w1 = (orig.width) * -sprite.anchor.x; + + h0 = orig.height * (1 - sprite.anchor.y); + h1 = orig.height * -sprite.anchor.y; + } + + array[offset] = w1 * sx; + array[offset + 1] = h1 * sy; + + array[offset + stride] = w0 * sx; + array[offset + stride + 1] = h1 * sy; + + array[offset + (stride * 2)] = w0 * sx; + array[offset + (stride * 2) + 1] = h0 * sy; + + array[offset + (stride * 3)] = w1 * sx; + array[offset + (stride * 3) + 1] = h0 * sy; + + offset += stride * 4; + } + }; + + /** + * Uploads the position. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their positions uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadPosition = function uploadPosition (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spritePosition = children[startIndex + i].position; + + array[offset] = spritePosition.x; + array[offset + 1] = spritePosition.y; + + array[offset + stride] = spritePosition.x; + array[offset + stride + 1] = spritePosition.y; + + array[offset + (stride * 2)] = spritePosition.x; + array[offset + (stride * 2) + 1] = spritePosition.y; + + array[offset + (stride * 3)] = spritePosition.x; + array[offset + (stride * 3) + 1] = spritePosition.y; + + offset += stride * 4; + } + }; + + /** + * Uploads the rotiation. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadRotation = function uploadRotation (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spriteRotation = children[startIndex + i].rotation; + + array[offset] = spriteRotation; + array[offset + stride] = spriteRotation; + array[offset + (stride * 2)] = spriteRotation; + array[offset + (stride * 3)] = spriteRotation; + + offset += stride * 4; + } + }; + + /** + * Uploads the Uvs + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadUvs = function uploadUvs (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var textureUvs = children[startIndex + i]._texture._uvs; + + if (textureUvs) + { + array[offset] = textureUvs.x0; + array[offset + 1] = textureUvs.y0; + + array[offset + stride] = textureUvs.x1; + array[offset + stride + 1] = textureUvs.y1; + + array[offset + (stride * 2)] = textureUvs.x2; + array[offset + (stride * 2) + 1] = textureUvs.y2; + + array[offset + (stride * 3)] = textureUvs.x3; + array[offset + (stride * 3) + 1] = textureUvs.y3; + + offset += stride * 4; + } + else + { + // TODO you know this can be easier! + array[offset] = 0; + array[offset + 1] = 0; + + array[offset + stride] = 0; + array[offset + stride + 1] = 0; + + array[offset + (stride * 2)] = 0; + array[offset + (stride * 2) + 1] = 0; + + array[offset + (stride * 3)] = 0; + array[offset + (stride * 3) + 1] = 0; + + offset += stride * 4; + } + } + }; + + /** + * Uploads the tint. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadTint = function uploadTint (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var premultiplied = sprite._texture.baseTexture.premultiplyAlpha; + var alpha = sprite.alpha; + // we dont call extra function if alpha is 1.0, that's faster + var argb = alpha < 1.0 && premultiplied ? premultiplyTint(sprite._tintRGB, alpha) + : sprite._tintRGB + (alpha * 255 << 24); + + array[offset] = argb; + array[offset + stride] = argb; + array[offset + (stride * 2)] = argb; + array[offset + (stride * 3)] = argb; + + offset += stride * 4; + } + }; + + /** + * Destroys the ParticleRenderer. + */ + ParticleRenderer.prototype.destroy = function destroy () + { + ObjectRenderer.prototype.destroy.call(this); + + if (this.shader) + { + this.shader.destroy(); + this.shader = null; + } + + this.tempMatrix = null; + }; + + return ParticleRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/spritesheet - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/spritesheet is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Utility class for maintaining reference to a collection + * of Textures on a single Spritesheet. + * + * To access a sprite sheet from your code pass its JSON data file to Pixi's loader: + * + * ```js + * PIXI.Loader.shared.add("images/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["images/spritesheet.json"].spritesheet; + * ... + * } + * ``` + * With the `sheet.textures` you can create Sprite objects,`sheet.animations` can be used to create an AnimatedSprite. + * + * Sprite sheets can be packed using tools like {@link https://codeandweb.com/texturepacker|TexturePacker}, + * {@link https://renderhjs.net/shoebox/|Shoebox} or {@link https://github.com/krzysztof-o/spritesheet.js|Spritesheet.js}. + * Default anchor points (see {@link PIXI.Texture#defaultAnchor}) and grouping of animation sprites are currently only + * supported by TexturePacker. + * + * @class + * @memberof PIXI + */ +var Spritesheet = function Spritesheet(baseTexture, data, resolutionFilename) +{ + if ( resolutionFilename === void 0 ) resolutionFilename = null; + + /** + * Reference to ths source texture + * @type {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * A map containing all textures of the sprite sheet. + * Can be used to create a {@link PIXI.Sprite|Sprite}: + * ```js + * new PIXI.Sprite(sheet.textures["image.png"]); + * ``` + * @member {Object} + */ + this.textures = {}; + + /** + * A map containing the textures for each animation. + * Can be used to create an {@link PIXI.AnimatedSprite|AnimatedSprite}: + * ```js + * new PIXI.AnimatedSprite(sheet.animations["anim_name"]) + * ``` + * @member {Object} + */ + this.animations = {}; + + /** + * Reference to the original JSON data. + * @type {Object} + */ + this.data = data; + + /** + * The resolution of the spritesheet. + * @type {number} + */ + this.resolution = this._updateResolution( + resolutionFilename + || (this.baseTexture.resource ? this.baseTexture.resource.url : null) + ); + + /** + * Map of spritesheet frames. + * @type {Object} + * @private + */ + this._frames = this.data.frames; + + /** + * Collection of frame names. + * @type {string[]} + * @private + */ + this._frameKeys = Object.keys(this._frames); + + /** + * Current batch index being processed. + * @type {number} + * @private + */ + this._batchIndex = 0; + + /** + * Callback when parse is completed. + * @type {Function} + * @private + */ + this._callback = null; +}; + +var staticAccessors$4 = { BATCH_SIZE: { configurable: true } }; + +/** + * Generate the resolution from the filename or fallback + * to the meta.scale field of the JSON data. + * + * @private + * @param {string} resolutionFilename - The filename to use for resolving + * the default resolution. + * @return {number} Resolution to use for spritesheet. + */ +staticAccessors$4.BATCH_SIZE.get = function () +{ + return 1000; +}; + +Spritesheet.prototype._updateResolution = function _updateResolution (resolutionFilename) +{ + var scale = this.data.meta.scale; + + // Use a defaultValue of `null` to check if a url-based resolution is set + var resolution = getResolutionOfUrl(resolutionFilename, null); + + // No resolution found via URL + if (resolution === null) + { + // Use the scale value or default to 1 + resolution = scale !== undefined ? parseFloat(scale) : 1; + } + + // For non-1 resolutions, update baseTexture + if (resolution !== 1) + { + this.baseTexture.setResolution(resolution); + } + + return resolution; +}; + +/** + * Parser spritesheet from loaded data. This is done asynchronously + * to prevent creating too many Texture within a single process. + * + * @param {Function} callback - Callback when complete returns + * a map of the Textures for this spritesheet. + */ +Spritesheet.prototype.parse = function parse (callback) +{ + this._batchIndex = 0; + this._callback = callback; + + if (this._frameKeys.length <= Spritesheet.BATCH_SIZE) + { + this._processFrames(0); + this._processAnimations(); + this._parseComplete(); + } + else + { + this._nextBatch(); + } +}; + +/** + * Process a batch of frames + * + * @private + * @param {number} initialFrameIndex - The index of frame to start. + */ +Spritesheet.prototype._processFrames = function _processFrames (initialFrameIndex) +{ + var frameIndex = initialFrameIndex; + var maxFrames = Spritesheet.BATCH_SIZE; + + while (frameIndex - initialFrameIndex < maxFrames && frameIndex < this._frameKeys.length) + { + var i = this._frameKeys[frameIndex]; + var data = this._frames[i]; + var rect = data.frame; + + if (rect) + { + var frame = null; + var trim = null; + var sourceSize = data.trimmed !== false && data.sourceSize + ? data.sourceSize : data.frame; + + var orig = new Rectangle( + 0, + 0, + Math.floor(sourceSize.w) / this.resolution, + Math.floor(sourceSize.h) / this.resolution + ); + + if (data.rotated) + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.h) / this.resolution, + Math.floor(rect.w) / this.resolution + ); + } + else + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + // Check to see if the sprite is trimmed + if (data.trimmed !== false && data.spriteSourceSize) + { + trim = new Rectangle( + Math.floor(data.spriteSourceSize.x) / this.resolution, + Math.floor(data.spriteSourceSize.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + this.textures[i] = new Texture( + this.baseTexture, + frame, + orig, + trim, + data.rotated ? 2 : 0, + data.anchor + ); + + // lets also add the frame to pixi's global cache for 'from' and 'fromLoader' functions + Texture.addToCache(this.textures[i], i); + } + + frameIndex++; + } +}; + +/** + * Parse animations config + * + * @private + */ +Spritesheet.prototype._processAnimations = function _processAnimations () +{ + var animations = this.data.animations || {}; + + for (var animName in animations) + { + this.animations[animName] = []; + for (var i = 0; i < animations[animName].length; i++) + { + var frameName = animations[animName][i]; + + this.animations[animName].push(this.textures[frameName]); + } + } +}; + +/** + * The parse has completed. + * + * @private + */ +Spritesheet.prototype._parseComplete = function _parseComplete () +{ + var callback = this._callback; + + this._callback = null; + this._batchIndex = 0; + callback.call(this, this.textures); +}; + +/** + * Begin the next batch of textures. + * + * @private + */ +Spritesheet.prototype._nextBatch = function _nextBatch () +{ + var this$1 = this; + + this._processFrames(this._batchIndex * Spritesheet.BATCH_SIZE); + this._batchIndex++; + setTimeout(function () { + if (this$1._batchIndex * Spritesheet.BATCH_SIZE < this$1._frameKeys.length) + { + this$1._nextBatch(); + } + else + { + this$1._processAnimations(); + this$1._parseComplete(); + } + }, 0); +}; + +/** + * Destroy Spritesheet and don't use after this. + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ +Spritesheet.prototype.destroy = function destroy (destroyBase) +{ + if ( destroyBase === void 0 ) destroyBase = false; + + for (var i in this.textures) + { + this.textures[i].destroy(); + } + this._frames = null; + this._frameKeys = null; + this.data = null; + this.textures = null; + if (destroyBase) + { + this.baseTexture.destroy(); + } + this.baseTexture = null; +}; + +Object.defineProperties( Spritesheet, staticAccessors$4 ); + +/** + * {@link PIXI.Loader Loader} middleware for loading texture atlases that have been created with + * TexturePacker or similar JSON-based spritesheet. + * + * This middleware automatically generates Texture resources. + * + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var SpritesheetLoader = function SpritesheetLoader () {}; + +SpritesheetLoader.use = function use (resource, next) +{ + var imageResourceName = (resource.name) + "_image"; + + // skip if no data, its not json, it isn't spritesheet data, or the image resource already exists + if (!resource.data + || resource.type !== LoaderResource.TYPE.JSON + || !resource.data.frames + || this.resources[imageResourceName] + ) + { + next(); + + return; + } + + var loadOptions = { + crossOrigin: resource.crossOrigin, + metadata: resource.metadata.imageMetadata, + parentResource: resource, + }; + + var resourcePath = SpritesheetLoader.getResourcePath(resource, this.baseUrl); + + // load the image for this sheet + this.add(imageResourceName, resourcePath, loadOptions, function onImageLoad(res) + { + if (res.error) + { + next(res.error); + + return; + } + + var spritesheet = new Spritesheet( + res.texture.baseTexture, + resource.data, + resource.url + ); + + spritesheet.parse(function () { + resource.spritesheet = spritesheet; + resource.textures = spritesheet.textures; + next(); + }); + }); +}; + +/** + * Get the spritesheets root path + * @param {PIXI.LoaderResource} resource - Resource to check path + * @param {string} baseUrl - Base root url + */ +SpritesheetLoader.getResourcePath = function getResourcePath (resource, baseUrl) +{ + // Prepend url path unless the resource image is a data url + if (resource.isDataUrl) + { + return resource.data.meta.image; + } + + return url.resolve(resource.url.replace(baseUrl, ''), resource.data.meta.image); +}; + +/*! + * @pixi/sprite-tiling - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite-tiling is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$1 = new Point(); + +var vertex$2 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform mat3 uTransform;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = (uTransform * vec3(aTextureCoord, 1.0)).xy;\n}\n"; + +var fragment$2 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\nuniform mat3 uMapCoord;\nuniform vec4 uClampFrame;\nuniform vec2 uClampOffset;\n\nvoid main(void)\n{\n vec2 coord = mod(vTextureCoord - uClampOffset, vec2(1.0, 1.0)) + uClampOffset;\n coord = (uMapCoord * vec3(coord, 1.0)).xy;\n coord = clamp(coord, uClampFrame.xy, uClampFrame.zw);\n\n vec4 sample = texture2D(uSampler, coord);\n gl_FragColor = sample * uColor;\n}\n"; + +var fragmentSimple = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\n\nvoid main(void)\n{\n vec4 sample = texture2D(uSampler, vTextureCoord);\n gl_FragColor = sample * uColor;\n}\n"; + +var tempMat$1 = new Matrix(); + +/** + * WebGL renderer plugin for tiling sprites + * + * @class + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function TilingSpriteRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + var uniforms = { globals: this.renderer.globalUniforms }; + + this.shader = Shader.from(vertex$2, fragment$2, uniforms); + + this.simpleShader = Shader.from(vertex$2, fragmentSimple, uniforms); + + this.quad = new QuadUv(); + } + + if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer; + TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer; + + /** + * + * @param {PIXI.TilingSprite} ts tilingSprite to be rendered + */ + TilingSpriteRenderer.prototype.render = function render (ts) + { + var renderer = this.renderer; + var quad = this.quad; + + var vertices = quad.vertices; + + vertices[0] = vertices[6] = (ts._width) * -ts.anchor.x; + vertices[1] = vertices[3] = ts._height * -ts.anchor.y; + + vertices[2] = vertices[4] = (ts._width) * (1.0 - ts.anchor.x); + vertices[5] = vertices[7] = ts._height * (1.0 - ts.anchor.y); + + if (ts.uvRespectAnchor) + { + vertices = quad.uvs; + + vertices[0] = vertices[6] = -ts.anchor.x; + vertices[1] = vertices[3] = -ts.anchor.y; + + vertices[2] = vertices[4] = 1.0 - ts.anchor.x; + vertices[5] = vertices[7] = 1.0 - ts.anchor.y; + } + + quad.invalidate(); + + var tex = ts._texture; + var baseTex = tex.baseTexture; + var lt = ts.tileTransform.localTransform; + var uv = ts.uvMatrix; + var isSimple = baseTex.isPowerOfTwo + && tex.frame.width === baseTex.width && tex.frame.height === baseTex.height; + + // auto, force repeat wrapMode for big tiling textures + if (isSimple) + { + if (!baseTex._glTextures[renderer.CONTEXT_UID]) + { + if (baseTex.wrapMode === WRAP_MODES.CLAMP) + { + baseTex.wrapMode = WRAP_MODES.REPEAT; + } + } + else + { + isSimple = baseTex.wrapMode !== WRAP_MODES.CLAMP; + } + } + + var shader = isSimple ? this.simpleShader : this.shader; + + var w = tex.width; + var h = tex.height; + var W = ts._width; + var H = ts._height; + + tempMat$1.set(lt.a * w / W, + lt.b * w / H, + lt.c * h / W, + lt.d * h / H, + lt.tx / W, + lt.ty / H); + + // that part is the same as above: + // tempMat.identity(); + // tempMat.scale(tex.width, tex.height); + // tempMat.prepend(lt); + // tempMat.scale(1.0 / ts._width, 1.0 / ts._height); + + tempMat$1.invert(); + if (isSimple) + { + tempMat$1.prepend(uv.mapCoord); + } + else + { + shader.uniforms.uMapCoord = uv.mapCoord.toArray(true); + shader.uniforms.uClampFrame = uv.uClampFrame; + shader.uniforms.uClampOffset = uv.uClampOffset; + } + + shader.uniforms.uTransform = tempMat$1.toArray(true); + shader.uniforms.uColor = premultiplyTintToRgba(ts.tint, ts.worldAlpha, + shader.uniforms.uColor, baseTex.premultiplyAlpha); + shader.uniforms.translationMatrix = ts.transform.worldTransform.toArray(true); + shader.uniforms.uSampler = tex; + + renderer.shader.bind(shader); + renderer.geometry.bind(quad);// , renderer.shader.getGLShader()); + + renderer.state.setBlendMode(correctBlendMode(ts.blendMode, baseTex.premultiplyAlpha)); + renderer.geometry.draw(this.renderer.gl.TRIANGLES, 6, 0); + }; + + return TilingSpriteRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/text-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * A BitmapText object will create a line or multiple lines of text using bitmap font. + * + * The primary advantage of this class over Text is that all of your textures are pre-generated and loading, + * meaning that rendering is fast, and changing text has no performance implications. + * + * The primary disadvantage is that you need to preload the bitmap font assets, and thus the styling is set in stone. + * Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters. + * + * To split a line you can use '\n', '\r' or '\r\n' in your string. + * + * You can generate the fnt files using + * http://www.angelcode.com/products/bmfont/ for Windows or + * http://www.bmglyph.com/ for Mac. + * + * A BitmapText can only be created when the font is loaded. + * + * ```js + * // in this case the font is in a file called 'desyrel.fnt' + * let bitmapText = new PIXI.BitmapText("text using a fancy font!", {font: "35px Desyrel", align: "right"}); + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var BitmapText = /*@__PURE__*/(function (Container) { + function BitmapText(text, style) + { + var this$1 = this; + if ( style === void 0 ) style = {}; + + Container.call(this); + + /** + * Private tracker for the width of the overall text + * + * @member {number} + * @private + */ + this._textWidth = 0; + + /** + * Private tracker for the height of the overall text + * + * @member {number} + * @private + */ + this._textHeight = 0; + + /** + * Private tracker for the letter sprite pool. + * + * @member {PIXI.Sprite[]} + * @private + */ + this._glyphs = []; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._font = { + tint: style.tint !== undefined ? style.tint : 0xFFFFFF, + align: style.align || 'left', + name: null, + size: 0, + }; + + /** + * Private tracker for the current font. + * + * @member {object} + * @private + */ + this.font = style.font; // run font setter + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = text; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting value to 0 + * + * @member {number} + * @private + */ + this._maxWidth = 0; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * ie: when trying to vertically align. + * + * @member {number} + * @private + */ + this._maxLineHeight = 0; + + /** + * Letter spacing. This is useful for setting the space between characters. + * @member {number} + * @private + */ + this._letterSpacing = 0; + + /** + * Text anchor. read-only + * + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint(function () { this$1.dirty = true; }, this, 0, 0); + + /** + * The dirty state of this object. + * + * @member {boolean} + */ + this.dirty = false; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + this.roundPixels = settings.ROUND_PIXELS; + + this.updateText(); + } + + if ( Container ) BitmapText.__proto__ = Container; + BitmapText.prototype = Object.create( Container && Container.prototype ); + BitmapText.prototype.constructor = BitmapText; + + var prototypeAccessors = { tint: { configurable: true },align: { configurable: true },anchor: { configurable: true },font: { configurable: true },text: { configurable: true },maxWidth: { configurable: true },maxLineHeight: { configurable: true },textWidth: { configurable: true },letterSpacing: { configurable: true },textHeight: { configurable: true } }; + + /** + * Renders text and updates it when needed + * + * @private + */ + BitmapText.prototype.updateText = function updateText () + { + var data = BitmapText.fonts[this._font.name]; + var scale = this._font.size / data.size; + var pos = new Point(); + var chars = []; + var lineWidths = []; + var text = this._text.replace(/(?:\r\n|\r)/g, '\n') || ' '; + var textLength = text.length; + var maxWidth = this._maxWidth * data.size / this._font.size; + + var prevCharCode = null; + var lastLineWidth = 0; + var maxLineWidth = 0; + var line = 0; + var lastBreakPos = -1; + var lastBreakWidth = 0; + var spacesRemoved = 0; + var maxLineHeight = 0; + + for (var i = 0; i < textLength; i++) + { + var charCode = text.charCodeAt(i); + var char = text.charAt(i); + + if ((/(?:\s)/).test(char)) + { + lastBreakPos = i; + lastBreakWidth = lastLineWidth; + } + + if (char === '\r' || char === '\n') + { + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + ++line; + ++spacesRemoved; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + continue; + } + + var charData = data.chars[charCode]; + + if (!charData) + { + continue; + } + + if (prevCharCode && charData.kerning[prevCharCode]) + { + pos.x += charData.kerning[prevCharCode]; + } + + chars.push({ + texture: charData.texture, + line: line, + charCode: charCode, + position: new Point(pos.x + charData.xOffset + (this._letterSpacing / 2), pos.y + charData.yOffset), + }); + pos.x += charData.xAdvance + this._letterSpacing; + lastLineWidth = pos.x; + maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height)); + prevCharCode = charCode; + + if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth) + { + ++spacesRemoved; + removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos); + i = lastBreakPos; + lastBreakPos = -1; + + lineWidths.push(lastBreakWidth); + maxLineWidth = Math.max(maxLineWidth, lastBreakWidth); + line++; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + } + } + + var lastChar = text.charAt(text.length - 1); + + if (lastChar !== '\r' && lastChar !== '\n') + { + if ((/(?:\s)/).test(lastChar)) + { + lastLineWidth = lastBreakWidth; + } + + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + } + + var lineAlignOffsets = []; + + for (var i$1 = 0; i$1 <= line; i$1++) + { + var alignOffset = 0; + + if (this._font.align === 'right') + { + alignOffset = maxLineWidth - lineWidths[i$1]; + } + else if (this._font.align === 'center') + { + alignOffset = (maxLineWidth - lineWidths[i$1]) / 2; + } + + lineAlignOffsets.push(alignOffset); + } + + var lenChars = chars.length; + var tint = this.tint; + + for (var i$2 = 0; i$2 < lenChars; i$2++) + { + var c = this._glyphs[i$2]; // get the next glyph sprite + + if (c) + { + c.texture = chars[i$2].texture; + } + else + { + c = new Sprite(chars[i$2].texture); + c.roundPixels = this.roundPixels; + this._glyphs.push(c); + } + + c.position.x = (chars[i$2].position.x + lineAlignOffsets[chars[i$2].line]) * scale; + c.position.y = chars[i$2].position.y * scale; + c.scale.x = c.scale.y = scale; + c.tint = tint; + + if (!c.parent) + { + this.addChild(c); + } + } + + // remove unnecessary children. + for (var i$3 = lenChars; i$3 < this._glyphs.length; ++i$3) + { + this.removeChild(this._glyphs[i$3]); + } + + this._textWidth = maxLineWidth * scale; + this._textHeight = (pos.y + data.lineHeight) * scale; + + // apply anchor + if (this.anchor.x !== 0 || this.anchor.y !== 0) + { + for (var i$4 = 0; i$4 < lenChars; i$4++) + { + this._glyphs[i$4].x -= this._textWidth * this.anchor.x; + this._glyphs[i$4].y -= this._textHeight * this.anchor.y; + } + } + this._maxLineHeight = maxLineHeight * scale; + }; + + /** + * Updates the transform of this object + * + * @private + */ + BitmapText.prototype.updateTransform = function updateTransform () + { + this.validate(); + this.containerUpdateTransform(); + }; + + /** + * Validates text before calling parent's getLocalBounds + * + * @return {PIXI.Rectangle} The rectangular bounding area + */ + BitmapText.prototype.getLocalBounds = function getLocalBounds () + { + this.validate(); + + return Container.prototype.getLocalBounds.call(this); + }; + + /** + * Updates text when needed + * + * @private + */ + BitmapText.prototype.validate = function validate () + { + if (this.dirty) + { + this.updateText(); + this.dirty = false; + } + }; + + /** + * The tint of the BitmapText object. + * + * @member {number} + */ + prototypeAccessors.tint.get = function () + { + return this._font.tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.tint = (typeof value === 'number' && value >= 0) ? value : 0xFFFFFF; + + this.dirty = true; + }; + + /** + * The alignment of the BitmapText object. + * + * @member {string} + * @default 'left' + */ + prototypeAccessors.align.get = function () + { + return this._font.align; + }; + + prototypeAccessors.align.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.align = value || 'left'; + + this.dirty = true; + }; + + /** + * The anchor sets the origin point of the text. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * @member {PIXI.Point | number} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + if (typeof value === 'number') + { + this._anchor.set(value); + } + else + { + this._anchor.copyFrom(value); + } + }; + + /** + * The font descriptor of the BitmapText object. + * + * @member {object} + */ + prototypeAccessors.font.get = function () + { + return this._font; + }; + + prototypeAccessors.font.set = function (value) // eslint-disable-line require-jsdoc + { + if (!value) + { + return; + } + + if (typeof value === 'string') + { + value = value.split(' '); + + this._font.name = value.length === 1 ? value[0] : value.slice(1).join(' '); + this._font.size = value.length >= 2 ? parseInt(value[0], 10) : BitmapText.fonts[this._font.name].size; + } + else + { + this._font.name = value.name; + this._font.size = typeof value.size === 'number' ? value.size : parseInt(value.size, 10); + } + + this.dirty = true; + }; + + /** + * The text of the BitmapText object. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting the value to 0. + * + * @member {number} + */ + prototypeAccessors.maxWidth.get = function () + { + return this._maxWidth; + }; + + prototypeAccessors.maxWidth.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._maxWidth === value) + { + return; + } + this._maxWidth = value; + this.dirty = true; + }; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * i.e. when trying to vertically align. + * + * @member {number} + * @readonly + */ + prototypeAccessors.maxLineHeight.get = function () + { + this.validate(); + + return this._maxLineHeight; + }; + + /** + * The width of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textWidth.get = function () + { + this.validate(); + + return this._textWidth; + }; + + /** + * Additional space between characters. + * + * @member {number} + */ + prototypeAccessors.letterSpacing.get = function () + { + return this._letterSpacing; + }; + + prototypeAccessors.letterSpacing.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._letterSpacing !== value) + { + this._letterSpacing = value; + this.dirty = true; + } + }; + + /** + * The height of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textHeight.get = function () + { + this.validate(); + + return this._textHeight; + }; + + /** + * Register a bitmap font with data and a texture. + * + * @static + * @param {XMLDocument} xml - The XML document data. + * @param {Object.|PIXI.Texture|PIXI.Texture[]} textures - List of textures for each page. + * If providing an object, the key is the `` element's `file` attribute in the FNT file. + * @return {Object} Result font object with font, size, lineHeight and char fields. + */ + BitmapText.registerFont = function registerFont (xml, textures) + { + var data = {}; + var info = xml.getElementsByTagName('info')[0]; + var common = xml.getElementsByTagName('common')[0]; + var pages = xml.getElementsByTagName('page'); + var res = getResolutionOfUrl(pages[0].getAttribute('file'), settings.RESOLUTION); + var pagesTextures = {}; + + data.font = info.getAttribute('face'); + data.size = parseInt(info.getAttribute('size'), 10); + data.lineHeight = parseInt(common.getAttribute('lineHeight'), 10) / res; + data.chars = {}; + + // Single texture, convert to list + if (textures instanceof Texture) + { + textures = [textures]; + } + + // Convert the input Texture, Textures or object + // into a page Texture lookup by "id" + for (var i = 0; i < pages.length; i++) + { + var id = pages[i].getAttribute('id'); + var file = pages[i].getAttribute('file'); + + pagesTextures[id] = textures instanceof Array ? textures[i] : textures[file]; + } + + // parse letters + var letters = xml.getElementsByTagName('char'); + + for (var i$1 = 0; i$1 < letters.length; i$1++) + { + var letter = letters[i$1]; + var charCode = parseInt(letter.getAttribute('id'), 10); + var page = letter.getAttribute('page') || 0; + var textureRect = new Rectangle( + (parseInt(letter.getAttribute('x'), 10) / res) + (pagesTextures[page].frame.x / res), + (parseInt(letter.getAttribute('y'), 10) / res) + (pagesTextures[page].frame.y / res), + parseInt(letter.getAttribute('width'), 10) / res, + parseInt(letter.getAttribute('height'), 10) / res + ); + + data.chars[charCode] = { + xOffset: parseInt(letter.getAttribute('xoffset'), 10) / res, + yOffset: parseInt(letter.getAttribute('yoffset'), 10) / res, + xAdvance: parseInt(letter.getAttribute('xadvance'), 10) / res, + kerning: {}, + texture: new Texture(pagesTextures[page].baseTexture, textureRect), + page: page, + }; + } + + // parse kernings + var kernings = xml.getElementsByTagName('kerning'); + + for (var i$2 = 0; i$2 < kernings.length; i$2++) + { + var kerning = kernings[i$2]; + var first = parseInt(kerning.getAttribute('first'), 10) / res; + var second = parseInt(kerning.getAttribute('second'), 10) / res; + var amount = parseInt(kerning.getAttribute('amount'), 10) / res; + + if (data.chars[second]) + { + data.chars[second].kerning[first] = amount; + } + } + + // I'm leaving this as a temporary fix so we can test the bitmap fonts in v3 + // but it's very likely to change + BitmapText.fonts[data.font] = data; + + return data; + }; + + Object.defineProperties( BitmapText.prototype, prototypeAccessors ); + + return BitmapText; +}(Container)); + +BitmapText.fonts = {}; + +/** + * {@link PIXI.Loader Loader} middleware for loading + * bitmap-based fonts suitable for using with {@link PIXI.BitmapText}. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var BitmapFontLoader = function BitmapFontLoader () {}; + +BitmapFontLoader.parse = function parse (resource, texture) +{ + resource.bitmapFont = BitmapText.registerFont(resource.data, texture); +}; + +/** + * Called when the plugin is installed. + * + * @see PIXI.Loader.registerPlugin + */ +BitmapFontLoader.add = function add () +{ + LoaderResource.setExtensionXhrType('fnt', LoaderResource.XHR_RESPONSE_TYPE.DOCUMENT); +}; + +/** + * Replacement for NodeJS's path.dirname + * @private + * @param {string} url Path to get directory for + */ +BitmapFontLoader.dirname = function dirname (url) +{ + var dir = url + .replace(/\/$/, '') // replace trailing slash + .replace(/\/[^\/]*$/, ''); // remove everything after the last + + // File request is relative, use current directory + if (dir === url) + { + return '.'; + } + // Started with a slash + else if (dir === '') + { + return '/'; + } + + return dir; +}; + +/** + * Called after a resource is loaded. + * @see PIXI.Loader.loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ +BitmapFontLoader.use = function use (resource, next) +{ + // skip if no data or not xml data + if (!resource.data || resource.type !== LoaderResource.TYPE.XML) + { + next(); + + return; + } + + // skip if not bitmap font data, using some silly duck-typing + if (resource.data.getElementsByTagName('page').length === 0 + || resource.data.getElementsByTagName('info').length === 0 + || resource.data.getElementsByTagName('info')[0].getAttribute('face') === null + ) + { + next(); + + return; + } + + var xmlUrl = !resource.isDataUrl ? BitmapFontLoader.dirname(resource.url) : ''; + + if (resource.isDataUrl) + { + if (xmlUrl === '.') + { + xmlUrl = ''; + } + + if (this.baseUrl && xmlUrl) + { + // if baseurl has a trailing slash then add one to xmlUrl so the replace works below + if (this.baseUrl.charAt(this.baseUrl.length - 1) === '/') + { + xmlUrl += '/'; + } + } + } + + // remove baseUrl from xmlUrl + xmlUrl = xmlUrl.replace(this.baseUrl, ''); + + // if there is an xmlUrl now, it needs a trailing slash. Ensure that it does if the string isn't empty. + if (xmlUrl && xmlUrl.charAt(xmlUrl.length - 1) !== '/') + { + xmlUrl += '/'; + } + + var pages = resource.data.getElementsByTagName('page'); + var textures = {}; + + // Handle completed, when the number of textures + // load is the same number as references in the fnt file + var completed = function (page) { + textures[page.metadata.pageFile] = page.texture; + + if (Object.keys(textures).length === pages.length) + { + BitmapFontLoader.parse(resource, textures); + next(); + } + }; + + for (var i = 0; i < pages.length; ++i) + { + var pageFile = pages[i].getAttribute('file'); + var url = xmlUrl + pageFile; + var exists = false; + + // incase the image is loaded outside + // using the same loader, resource will be available + for (var name in this.resources) + { + var bitmapResource = this.resources[name]; + + if (bitmapResource.url === url) + { + bitmapResource.metadata.pageFile = pageFile; + if (bitmapResource.texture) + { + completed(bitmapResource); + } + else + { + bitmapResource.onAfterMiddleware.add(completed); + } + exists = true; + break; + } + } + + // texture is not loaded, we'll attempt to add + // it to the load and add the texture to the list + if (!exists) + { + // Standard loading options for images + var options = { + crossOrigin: resource.crossOrigin, + loadType: LoaderResource.LOAD_TYPE.IMAGE, + metadata: Object.assign( + { pageFile: pageFile }, + resource.metadata.imageMetadata + ), + parentResource: resource, + }; + + this.add(url, options, completed); + } + } +}; + +/*! + * @pixi/filter-color-matrix - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/filter-color-matrix is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var fragment$3 = "varying vec2 vTextureCoord;\nuniform sampler2D uSampler;\nuniform float m[20];\nuniform float uAlpha;\n\nvoid main(void)\n{\n vec4 c = texture2D(uSampler, vTextureCoord);\n\n if (uAlpha == 0.0) {\n gl_FragColor = c;\n return;\n }\n\n // Un-premultiply alpha before applying the color matrix. See issue #3539.\n if (c.a > 0.0) {\n c.rgb /= c.a;\n }\n\n vec4 result;\n\n result.r = (m[0] * c.r);\n result.r += (m[1] * c.g);\n result.r += (m[2] * c.b);\n result.r += (m[3] * c.a);\n result.r += m[4];\n\n result.g = (m[5] * c.r);\n result.g += (m[6] * c.g);\n result.g += (m[7] * c.b);\n result.g += (m[8] * c.a);\n result.g += m[9];\n\n result.b = (m[10] * c.r);\n result.b += (m[11] * c.g);\n result.b += (m[12] * c.b);\n result.b += (m[13] * c.a);\n result.b += m[14];\n\n result.a = (m[15] * c.r);\n result.a += (m[16] * c.g);\n result.a += (m[17] * c.b);\n result.a += (m[18] * c.a);\n result.a += m[19];\n\n vec3 rgb = mix(c.rgb, result.rgb, uAlpha);\n\n // Premultiply alpha again.\n rgb *= result.a;\n\n gl_FragColor = vec4(rgb, result.a);\n}\n"; + +/** + * The ColorMatrixFilter class lets you apply a 5x4 matrix transformation on the RGBA + * color and alpha values of every pixel on your displayObject to produce a result + * with a new set of RGBA color and alpha values. It's pretty powerful! + * + * ```js + * let colorMatrix = new PIXI.filters.ColorMatrixFilter(); + * container.filters = [colorMatrix]; + * colorMatrix.contrast(2); + * ``` + * @author Clément Chenebault + * @class + * @extends PIXI.Filter + * @memberof PIXI.filters + */ +var ColorMatrixFilter = /*@__PURE__*/(function (Filter) { + function ColorMatrixFilter() + { + var uniforms = { + m: new Float32Array([1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0]), + uAlpha: 1, + }; + + Filter.call(this, defaultFilter, fragment$3, uniforms); + + this.alpha = 1; + } + + if ( Filter ) ColorMatrixFilter.__proto__ = Filter; + ColorMatrixFilter.prototype = Object.create( Filter && Filter.prototype ); + ColorMatrixFilter.prototype.constructor = ColorMatrixFilter; + + var prototypeAccessors = { matrix: { configurable: true },alpha: { configurable: true } }; + + /** + * Transforms current matrix and set the new one + * + * @param {number[]} matrix - 5x4 matrix + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype._loadMatrix = function _loadMatrix (matrix, multiply) + { + if ( multiply === void 0 ) multiply = false; + + var newMatrix = matrix; + + if (multiply) + { + this._multiply(newMatrix, this.uniforms.m, matrix); + newMatrix = this._colorMatrix(newMatrix); + } + + // set the new matrix + this.uniforms.m = newMatrix; + }; + + /** + * Multiplies two mat5's + * + * @private + * @param {number[]} out - 5x4 matrix the receiving matrix + * @param {number[]} a - 5x4 matrix the first operand + * @param {number[]} b - 5x4 matrix the second operand + * @returns {number[]} 5x4 matrix + */ + ColorMatrixFilter.prototype._multiply = function _multiply (out, a, b) + { + // Red Channel + out[0] = (a[0] * b[0]) + (a[1] * b[5]) + (a[2] * b[10]) + (a[3] * b[15]); + out[1] = (a[0] * b[1]) + (a[1] * b[6]) + (a[2] * b[11]) + (a[3] * b[16]); + out[2] = (a[0] * b[2]) + (a[1] * b[7]) + (a[2] * b[12]) + (a[3] * b[17]); + out[3] = (a[0] * b[3]) + (a[1] * b[8]) + (a[2] * b[13]) + (a[3] * b[18]); + out[4] = (a[0] * b[4]) + (a[1] * b[9]) + (a[2] * b[14]) + (a[3] * b[19]) + a[4]; + + // Green Channel + out[5] = (a[5] * b[0]) + (a[6] * b[5]) + (a[7] * b[10]) + (a[8] * b[15]); + out[6] = (a[5] * b[1]) + (a[6] * b[6]) + (a[7] * b[11]) + (a[8] * b[16]); + out[7] = (a[5] * b[2]) + (a[6] * b[7]) + (a[7] * b[12]) + (a[8] * b[17]); + out[8] = (a[5] * b[3]) + (a[6] * b[8]) + (a[7] * b[13]) + (a[8] * b[18]); + out[9] = (a[5] * b[4]) + (a[6] * b[9]) + (a[7] * b[14]) + (a[8] * b[19]) + a[9]; + + // Blue Channel + out[10] = (a[10] * b[0]) + (a[11] * b[5]) + (a[12] * b[10]) + (a[13] * b[15]); + out[11] = (a[10] * b[1]) + (a[11] * b[6]) + (a[12] * b[11]) + (a[13] * b[16]); + out[12] = (a[10] * b[2]) + (a[11] * b[7]) + (a[12] * b[12]) + (a[13] * b[17]); + out[13] = (a[10] * b[3]) + (a[11] * b[8]) + (a[12] * b[13]) + (a[13] * b[18]); + out[14] = (a[10] * b[4]) + (a[11] * b[9]) + (a[12] * b[14]) + (a[13] * b[19]) + a[14]; + + // Alpha Channel + out[15] = (a[15] * b[0]) + (a[16] * b[5]) + (a[17] * b[10]) + (a[18] * b[15]); + out[16] = (a[15] * b[1]) + (a[16] * b[6]) + (a[17] * b[11]) + (a[18] * b[16]); + out[17] = (a[15] * b[2]) + (a[16] * b[7]) + (a[17] * b[12]) + (a[18] * b[17]); + out[18] = (a[15] * b[3]) + (a[16] * b[8]) + (a[17] * b[13]) + (a[18] * b[18]); + out[19] = (a[15] * b[4]) + (a[16] * b[9]) + (a[17] * b[14]) + (a[18] * b[19]) + a[19]; + + return out; + }; + + /** + * Create a Float32 Array and normalize the offset component to 0-1 + * + * @private + * @param {number[]} matrix - 5x4 matrix + * @return {number[]} 5x4 matrix with all values between 0-1 + */ + ColorMatrixFilter.prototype._colorMatrix = function _colorMatrix (matrix) + { + // Create a Float32 Array and normalize the offset component to 0-1 + var m = new Float32Array(matrix); + + m[4] /= 255; + m[9] /= 255; + m[14] /= 255; + m[19] /= 255; + + return m; + }; + + /** + * Adjusts brightness + * + * @param {number} b - value of the brigthness (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.brightness = function brightness (b, multiply) + { + var matrix = [ + b, 0, 0, 0, 0, + 0, b, 0, 0, 0, + 0, 0, b, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the matrices in grey scales + * + * @param {number} scale - value of the grey (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.greyscale = function greyscale (scale, multiply) + { + var matrix = [ + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the black and white matrice. + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.blackAndWhite = function blackAndWhite (multiply) + { + var matrix = [ + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the hue property of the color + * + * @param {number} rotation - in degrees + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.hue = function hue (rotation, multiply) + { + rotation = (rotation || 0) / 180 * Math.PI; + + var cosR = Math.cos(rotation); + var sinR = Math.sin(rotation); + var sqrt = Math.sqrt; + + /* a good approximation for hue rotation + This matrix is far better than the versions with magic luminance constants + formerly used here, but also used in the starling framework (flash) and known from this + old part of the internet: quasimondo.com/archives/000565.php + + This new matrix is based on rgb cube rotation in space. Look here for a more descriptive + implementation as a shader not a general matrix: + https://github.com/evanw/glfx.js/blob/58841c23919bd59787effc0333a4897b43835412/src/filters/adjust/huesaturation.js + + This is the source for the code: + see http://stackoverflow.com/questions/8507885/shift-hue-of-an-rgb-color/8510751#8510751 + */ + + var w = 1 / 3; + var sqrW = sqrt(w); // weight is + + var a00 = cosR + ((1.0 - cosR) * w); + var a01 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a02 = (w * (1.0 - cosR)) + (sqrW * sinR); + + var a10 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a11 = cosR + (w * (1.0 - cosR)); + var a12 = (w * (1.0 - cosR)) - (sqrW * sinR); + + var a20 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a21 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a22 = cosR + (w * (1.0 - cosR)); + + var matrix = [ + a00, a01, a02, 0, 0, + a10, a11, a12, 0, 0, + a20, a21, a22, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the contrast matrix, increase the separation between dark and bright + * Increase contrast : shadows darker and highlights brighter + * Decrease contrast : bring the shadows up and the highlights down + * + * @param {number} amount - value of the contrast (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.contrast = function contrast (amount, multiply) + { + var v = (amount || 0) + 1; + var o = -0.5 * (v - 1); + + var matrix = [ + v, 0, 0, 0, o, + 0, v, 0, 0, o, + 0, 0, v, 0, o, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the saturation matrix, increase the separation between colors + * Increase saturation : increase contrast, brightness, and sharpness + * + * @param {number} amount - The saturation amount (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.saturate = function saturate (amount, multiply) + { + if ( amount === void 0 ) amount = 0; + + var x = (amount * 2 / 3) + 1; + var y = ((x - 1) * -0.5); + + var matrix = [ + x, y, y, 0, 0, + y, x, y, 0, 0, + y, y, x, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Desaturate image (remove color) + * + * Call the saturate function + * + */ + ColorMatrixFilter.prototype.desaturate = function desaturate () // eslint-disable-line no-unused-vars + { + this.saturate(-1); + }; + + /** + * Negative image (inverse of classic rgb matrix) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.negative = function negative (multiply) + { + var matrix = [ + -1, 0, 0, 1, 0, + 0, -1, 0, 1, 0, + 0, 0, -1, 1, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Sepia image + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.sepia = function sepia (multiply) + { + var matrix = [ + 0.393, 0.7689999, 0.18899999, 0, 0, + 0.349, 0.6859999, 0.16799999, 0, 0, + 0.272, 0.5339999, 0.13099999, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color motion picture process invented in 1916 (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.technicolor = function technicolor (multiply) + { + var matrix = [ + 1.9125277891456083, -0.8545344976951645, -0.09155508482755585, 0, 11.793603434377337, + -0.3087833385928097, 1.7658908555458428, -0.10601743074722245, 0, -70.35205161461398, + -0.231103377548616, -0.7501899197440212, 1.847597816108189, 0, 30.950940869491138, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Polaroid filter + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.polaroid = function polaroid (multiply) + { + var matrix = [ + 1.438, -0.062, -0.062, 0, 0, + -0.122, 1.378, -0.122, 0, 0, + -0.016, -0.016, 1.483, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Filter who transforms : Red -> Blue and Blue -> Red + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.toBGR = function toBGR (multiply) + { + var matrix = [ + 0, 0, 1, 0, 0, + 0, 1, 0, 0, 0, + 1, 0, 0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color reversal film introduced by Eastman Kodak in 1935. (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.kodachrome = function kodachrome (multiply) + { + var matrix = [ + 1.1285582396593525, -0.3967382283601348, -0.03992559172921793, 0, 63.72958762196502, + -0.16404339962244616, 1.0835251566291304, -0.05498805115633132, 0, 24.732407896706203, + -0.16786010706155763, -0.5603416277695248, 1.6014850761964943, 0, 35.62982807460946, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Brown delicious browni filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.browni = function browni (multiply) + { + var matrix = [ + 0.5997023498159715, 0.34553243048391263, -0.2708298674538042, 0, 47.43192855600873, + -0.037703249837783157, 0.8609577587992641, 0.15059552388459913, 0, -36.96841498319127, + 0.24113635128153335, -0.07441037908422492, 0.44972182064877153, 0, -7.562075277591283, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Vintage filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.vintage = function vintage (multiply) + { + var matrix = [ + 0.6279345635605994, 0.3202183420819367, -0.03965408211312453, 0, 9.651285835294123, + 0.02578397704808868, 0.6441188644374771, 0.03259127616149294, 0, 7.462829176470591, + 0.0466055556782719, -0.0851232987247891, 0.5241648018700465, 0, 5.159190588235296, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * We don't know exactly what it does, kind of gradient map, but funny to play with! + * + * @param {number} desaturation - Tone values. + * @param {number} toned - Tone values. + * @param {string} lightColor - Tone values, example: `0xFFE580` + * @param {string} darkColor - Tone values, example: `0xFFE580` + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.colorTone = function colorTone (desaturation, toned, lightColor, darkColor, multiply) + { + desaturation = desaturation || 0.2; + toned = toned || 0.15; + lightColor = lightColor || 0xFFE580; + darkColor = darkColor || 0x338000; + + var lR = ((lightColor >> 16) & 0xFF) / 255; + var lG = ((lightColor >> 8) & 0xFF) / 255; + var lB = (lightColor & 0xFF) / 255; + + var dR = ((darkColor >> 16) & 0xFF) / 255; + var dG = ((darkColor >> 8) & 0xFF) / 255; + var dB = (darkColor & 0xFF) / 255; + + var matrix = [ + 0.3, 0.59, 0.11, 0, 0, + lR, lG, lB, desaturation, 0, + dR, dG, dB, toned, 0, + lR - dR, lG - dG, lB - dB, 0, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Night effect + * + * @param {number} intensity - The intensity of the night effect. + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.night = function night (intensity, multiply) + { + intensity = intensity || 0.1; + var matrix = [ + intensity * (-2.0), -intensity, 0, 0, 0, + -intensity, 0, intensity, 0, 0, + 0, intensity, intensity * 2.0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Predator effect + * + * Erase the current matrix by setting a new indepent one + * + * @param {number} amount - how much the predator feels his future victim + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.predator = function predator (amount, multiply) + { + var matrix = [ + // row 1 + 11.224130630493164 * amount, + -4.794486999511719 * amount, + -2.8746118545532227 * amount, + 0 * amount, + 0.40342438220977783 * amount, + // row 2 + -3.6330697536468506 * amount, + 9.193157196044922 * amount, + -2.951810836791992 * amount, + 0 * amount, + -1.316135048866272 * amount, + // row 3 + -3.2184197902679443 * amount, + -4.2375030517578125 * amount, + 7.476448059082031 * amount, + 0 * amount, + 0.8044459223747253 * amount, + // row 4 + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * LSD effect + * + * Multiply the current matrix + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.lsd = function lsd (multiply) + { + var matrix = [ + 2, -0.4, 0.5, 0, 0, + -0.5, 2, -0.4, 0, 0, + -0.4, -0.5, 3, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Erase the current matrix by setting the default one + * + */ + ColorMatrixFilter.prototype.reset = function reset () + { + var matrix = [ + 1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, false); + }; + + /** + * The matrix of the color matrix filter + * + * @member {number[]} + * @default [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0] + */ + prototypeAccessors.matrix.get = function () + { + return this.uniforms.m; + }; + + prototypeAccessors.matrix.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.m = value; + }; + + /** + * The opacity value to use when mixing the original and resultant colors. + * + * When the value is 0, the original color is used without modification. + * When the value is 1, the result color is used. + * When in the range (0, 1) the color is interpolated between the original and result by this amount. + * + * @member {number} + * @default 1 + */ + prototypeAccessors.alpha.get = function () + { + return this.uniforms.uAlpha; + }; + + prototypeAccessors.alpha.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.uAlpha = value; + }; + + Object.defineProperties( ColorMatrixFilter.prototype, prototypeAccessors ); + + return ColorMatrixFilter; +}(Filter)); + +// Americanized alias +ColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale; + +/*! + * @pixi/mixin-cache-as-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mixin-cache-as-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var _tempMatrix = new Matrix(); + +DisplayObject.prototype._cacheAsBitmap = false; +DisplayObject.prototype._cacheData = false; + +// figured theres no point adding ALL the extra variables to prototype. +// this model can hold the information needed. This can also be generated on demand as +// most objects are not cached as bitmaps. +/** + * @class + * @ignore + */ +var CacheData = function CacheData() +{ + this.textureCacheId = null; + + this.originalRender = null; + this.originalRenderCanvas = null; + this.originalCalculateBounds = null; + this.originalGetLocalBounds = null; + + this.originalUpdateTransform = null; + this.originalHitTest = null; + this.originalDestroy = null; + this.originalMask = null; + this.originalFilterArea = null; + this.sprite = null; +}; + +Object.defineProperties(DisplayObject.prototype, { + /** + * Set this to true if you want this display object to be cached as a bitmap. + * This basically takes a snap shot of the display object as it is at that moment. It can + * provide a performance benefit for complex static displayObjects. + * To remove simply set this property to `false` + * + * IMPORTANT GOTCHA - Make sure that all your textures are preloaded BEFORE setting this property to true + * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear. + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + cacheAsBitmap: { + get: function get() + { + return this._cacheAsBitmap; + }, + set: function set(value) + { + if (this._cacheAsBitmap === value) + { + return; + } + + this._cacheAsBitmap = value; + + var data; + + if (value) + { + if (!this._cacheData) + { + this._cacheData = new CacheData(); + } + + data = this._cacheData; + + data.originalRender = this.render; + data.originalRenderCanvas = this.renderCanvas; + + data.originalUpdateTransform = this.updateTransform; + data.originalCalculateBounds = this.calculateBounds; + data.originalGetLocalBounds = this.getLocalBounds; + + data.originalDestroy = this.destroy; + + data.originalContainsPoint = this.containsPoint; + + data.originalMask = this._mask; + data.originalFilterArea = this.filterArea; + + this.render = this._renderCached; + this.renderCanvas = this._renderCachedCanvas; + + this.destroy = this._cacheAsBitmapDestroy; + } + else + { + data = this._cacheData; + + if (data.sprite) + { + this._destroyCachedDisplayObject(); + } + + this.render = data.originalRender; + this.renderCanvas = data.originalRenderCanvas; + this.calculateBounds = data.originalCalculateBounds; + this.getLocalBounds = data.originalGetLocalBounds; + + this.destroy = data.originalDestroy; + + this.updateTransform = data.originalUpdateTransform; + this.containsPoint = data.originalContainsPoint; + + this._mask = data.originalMask; + this.filterArea = data.originalFilterArea; + } + }, + }, +}); + +/** + * Renders a cached version of the sprite with WebGL + * + * @private + * @function _renderCached + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCached = function _renderCached(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObject(renderer); + + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._render(renderer); +}; + +/** + * Prepares the WebGL renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObject + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObject = function _initCachedDisplayObject(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // make sure alpha is set to 1 otherwise it will get rendered as invisible! + var cacheAlpha = this.alpha; + + this.alpha = 1; + + // first we flush anything left in the renderer (otherwise it would get rendered to the cached texture) + renderer.batch.flush(); + // this.filters= []; + + // next we find the dimensions of the untransformed object + // this function also calls updatetransform on all its children as part of the measuring. + // This means we don't need to update the transform again in this function + // TODO pass an object to clone too? saves having to create a new one each time! + var bounds = this.getLocalBounds().clone(); + + // add some padding! + if (this.filters) + { + var padding = this.filters[0].padding; + + bounds.pad(padding); + } + + bounds.ceil(settings.RESOLUTION); + + // for now we cache the current renderTarget that the WebGL renderer is currently using. + // this could be more elegant.. + var cachedRenderTexture = renderer.renderTexture.current; + var cachedSourceFrame = renderer.renderTexture.sourceFrame; + var cachedProjectionTransform = renderer.projection.transform; + + // We also store the filter stack - I will definitely look to change how this works a little later down the line. + // const stack = renderer.filterManager.filterStack; + + // this renderTexture will be used to store the cached DisplayObject + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + m.tx = -bounds.x; + m.ty = -bounds.y; + + // reset + this.transform.worldTransform.identity(); + + // set all properties to there original so we can render to a texture + this.render = this._cacheData.originalRender; + + renderer.render(this, renderTexture, true, m, true); + + // now restore the state be setting the new properties + renderer.projection.transform = cachedProjectionTransform; + renderer.renderTexture.bind(cachedRenderTexture, cachedSourceFrame); + + // renderer.filterManager.filterStack = stack; + + this.render = this._renderCached; + // the rest is the same as for Canvas + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Renders a cached version of the sprite with canvas + * + * @private + * @function _renderCachedCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCachedCanvas = function _renderCachedCanvas(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObjectCanvas(renderer); + + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._renderCanvas(renderer); +}; + +// TODO this can be the same as the WebGL version.. will need to do a little tweaking first though.. +/** + * Prepares the Canvas renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObjectCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObjectCanvas = function _initCachedDisplayObjectCanvas(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // get bounds actually transforms the object for us already! + var bounds = this.getLocalBounds(); + + var cacheAlpha = this.alpha; + + this.alpha = 1; + + var cachedRenderTarget = renderer.context; + + bounds.ceil(settings.RESOLUTION); + + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + this.transform.localTransform.copyTo(m); + m.invert(); + + m.tx -= bounds.x; + m.ty -= bounds.y; + + // m.append(this.transform.worldTransform.) + // set all properties to there original so we can render to a texture + this.renderCanvas = this._cacheData.originalRenderCanvas; + + // renderTexture.render(this, m, true); + renderer.render(this, renderTexture, true, m, false); + + // now restore the state be setting the new properties + renderer.context = cachedRenderTarget; + + this.renderCanvas = this._renderCachedCanvas; + // the rest is the same as for WebGL + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Calculates the bounds of the cached sprite + * + * @private + */ +DisplayObject.prototype._calculateCachedBounds = function _calculateCachedBounds() +{ + this._bounds.clear(); + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite._calculateBounds(); + this._lastBoundsID = this._boundsID; +}; + +/** + * Gets the bounds of the cached sprite. + * + * @private + * @return {Rectangle} The local bounds. + */ +DisplayObject.prototype._getCachedLocalBounds = function _getCachedLocalBounds() +{ + return this._cacheData.sprite.getLocalBounds(); +}; + +/** + * Destroys the cached sprite. + * + * @private + */ +DisplayObject.prototype._destroyCachedDisplayObject = function _destroyCachedDisplayObject() +{ + this._cacheData.sprite._texture.destroy(true); + this._cacheData.sprite = null; + + BaseTexture.removeFromCache(this._cacheData.textureCacheId); + Texture.removeFromCache(this._cacheData.textureCacheId); + + this._cacheData.textureCacheId = null; +}; + +/** + * Destroys the cached object. + * + * @private + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value. + * Used when destroying containers, see the Container.destroy method. + */ +DisplayObject.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy(options) +{ + this.cacheAsBitmap = false; + this.destroy(options); +}; + +/*! + * @pixi/mixin-get-child-by-name - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-child-by-name is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The instance name of the object. + * + * @memberof PIXI.DisplayObject# + * @member {string} name + */ +DisplayObject.prototype.name = null; + +/** + * Returns the display object in the container. + * + * @method getChildByName + * @memberof PIXI.Container# + * @param {string} name - Instance name. + * @return {PIXI.DisplayObject} The child with the specified name. + */ +Container.prototype.getChildByName = function getChildByName(name) +{ + for (var i = 0; i < this.children.length; i++) + { + if (this.children[i].name === name) + { + return this.children[i]; + } + } + + return null; +}; + +/*! + * @pixi/mixin-get-global-position - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-global-position is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Returns the global position of the displayObject. Does not depend on object scale, rotation and pivot. + * + * @method getGlobalPosition + * @memberof PIXI.DisplayObject# + * @param {PIXI.Point} [point=new PIXI.Point()] - The point to write the global value to. + * @param {boolean} [skipUpdate=false] - Setting to true will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @return {PIXI.Point} The updated point. + */ +DisplayObject.prototype.getGlobalPosition = function getGlobalPosition(point, skipUpdate) +{ + if ( point === void 0 ) point = new Point(); + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (this.parent) + { + this.parent.toGlobal(this.position, point, skipUpdate); + } + else + { + point.x = this.position.x; + point.y = this.position.y; + } + + return point; +}; + +/*! + * @pixi/mesh - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mesh is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$2 = new Point(); +var tempPolygon = new Polygon(); + +/*! + * pixi.js - v5.1.4 + * Compiled Sat, 21 Sep 2019 07:35:21 UTC + * + * pixi.js is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Install renderer plugins +Renderer.registerPlugin('accessibility', AccessibilityManager); +Renderer.registerPlugin('extract', Extract); +Renderer.registerPlugin('interaction', InteractionManager); +Renderer.registerPlugin('particle', ParticleRenderer); +Renderer.registerPlugin('prepare', Prepare); +Renderer.registerPlugin('batch', BatchRenderer); +Renderer.registerPlugin('tilingSprite', TilingSpriteRenderer); + +Loader$1.registerPlugin(BitmapFontLoader); +Loader$1.registerPlugin(SpritesheetLoader); + +Application.registerPlugin(TickerPlugin); +Application.registerPlugin(AppLoaderPlugin); + +function fromConstructor(constr) { + return constr; +} + +let clipboard_text = ""; +const contexts = []; +const contextIOs = []; +class ImGuiImplInternalRenderer extends ObjectRenderer { + constructor(r) { + super(r); + } + render(owner) { + if (!(owner instanceof ImGuiWindowLayer)) + return; + const window = owner.window; + const io = window.io; + const draw_data = GetDrawData(); + if (draw_data === null) { + throw new Error(); + } + gl || console.log(draw_data); + // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) + const fb_width = io.DisplaySize.x * io.DisplayFramebufferScale.x; + const fb_height = io.DisplaySize.y * io.DisplayFramebufferScale.y; + if (fb_width === 0 || fb_height === 0) { + return; + } + draw_data.ScaleClipRects(io.DisplayFramebufferScale); + // Backup GL state + const last_program = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null; + const last_active_texture = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null; + gl && gl.activeTexture(gl.TEXTURE0); + const last_texture0 = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null; + const last_vertex_array = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null; + const last_array_buffer = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null; + const last_element_array_buffer = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null; + // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode); + const last_viewport = gl && gl.getParameter(gl.VIEWPORT) || null; + const last_scissor_box = gl && gl.getParameter(gl.SCISSOR_BOX) || null; + const last_blend_src_rgb = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null; + const last_blend_dst_rgb = gl && gl.getParameter(gl.BLEND_DST_RGB) || null; + const last_blend_src_alpha = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null; + const last_blend_dst_alpha = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null; + const last_blend_equation_rgb = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null; + const last_blend_equation_alpha = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null; + const last_enable_blend = gl && gl.getParameter(gl.BLEND) || null; + const last_enable_cull_face = gl && gl.getParameter(gl.CULL_FACE) || null; + const last_enable_depth_test = gl && gl.getParameter(gl.DEPTH_TEST) || null; + const last_enable_scissor_test = gl && gl.getParameter(gl.SCISSOR_TEST) || null; + gl.clearColor(0, 0, 0, 0); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl && gl.bindVertexArray(g_VaoHandle); + // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill + gl && gl.enable(gl.BLEND); + gl && gl.blendEquation(gl.FUNC_ADD); + gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE); + gl && gl.disable(gl.CULL_FACE); + gl && gl.disable(gl.DEPTH_TEST); + gl && gl.enable(gl.SCISSOR_TEST); + // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + // Setup viewport, orthographic projection matrix + // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps. + gl && gl.viewport(0, 0, fb_width, fb_height); + const L = draw_data.DisplayPos.x; + const R = draw_data.DisplayPos.x + draw_data.DisplaySize.x; + const T = draw_data.DisplayPos.y; + const B = draw_data.DisplayPos.y + draw_data.DisplaySize.y; + // we actually flip the bottom and top here to match with PIXI's texture usage + const ortho_projection = new Float32Array([ + 2.0 / (R - L), 0.0, 0.0, 0.0, + 0.0, 2.0 / (B - T), 0.0, 0.0, + 0.0, 0.0, -1.0, 0.0, + (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0, + ]); + gl && gl.useProgram(g_ShaderHandle); + gl && gl.uniform1i(g_AttribLocationTex, 0); + gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection); + // Render command lists + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.enableVertexAttribArray(g_AttribLocationPosition); + gl && gl.enableVertexAttribArray(g_AttribLocationUV); + gl && gl.enableVertexAttribArray(g_AttribLocationColor); + gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertPosOffset); + gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertUVOffset); + gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImDrawVertSize, ImDrawVertColOffset); + // Draw + const pos = draw_data.DisplayPos; + const idx_buffer_type = gl && ( gl.UNSIGNED_SHORT) || 0; + draw_data.IterateDrawLists((draw_list) => { + gl || console.log(draw_list); + gl || console.log("VtxBuffer.length", draw_list.VtxBuffer.length); + gl || console.log("IdxBuffer.length", draw_list.IdxBuffer.length); + let idx_buffer_offset = 0; + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW); + gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle); + gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW); + draw_list.IterateDrawCmds((draw_cmd) => { + gl || console.log(draw_cmd); + gl || console.log("ElemCount", draw_cmd.ElemCount); + gl || console.log("ClipRect", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y); + gl || console.log("TextureId", draw_cmd.TextureId); + if (!gl) { + console.log("i: pos.x pos.y uv.x uv.y col"); + for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) { + const view = new ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImDrawVertSize); + console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${("00000000" + view.col[0].toString(16)).substr(-8)}`); + } + } + if (draw_cmd.UserCallback !== null) { + // User callback (registered via ImDrawList::AddCallback) + draw_cmd.UserCallback(draw_list, draw_cmd); + } + else { + const clip_rect = new ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y); + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) { + // Apply scissor/clipping rectangle + gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y); + // Bind texture, Draw + gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId); + gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset); + } + } + idx_buffer_offset += draw_cmd.ElemCount * ImDrawIdxSize; + }); + }); + // Restore modified GL state + gl && (last_program !== null) && gl.useProgram(last_program); + gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0); + gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture); + gl && gl.disableVertexAttribArray(g_AttribLocationPosition); + gl && gl.disableVertexAttribArray(g_AttribLocationUV); + gl && gl.disableVertexAttribArray(g_AttribLocationColor); + gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array); + gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer); + gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer); + gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]); + gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]); + gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha); + gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); + gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND)); + gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE)); + gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST)); + gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST)); + // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]); + } +} +let gl = null; +let app = null; +class ImGuiWindowLayer extends Sprite { + constructor(window, tex) { + super(); + this.pluginName = "imgui_renderer"; + this.window = window; + } +} +class ImGuiWindow extends Container { + constructor(sizeX, sizeY, update) { + super(); + this.baseTex = new BaseRenderTexture({ scaleMode: SCALE_MODES.LINEAR, resolution: 1, type: TYPES.FLOAT, format: FORMATS.RGBA }); + this.tex = new RenderTexture(this.baseTex); + this.surface = new Sprite(this.tex); + this.imgui = new ImGuiWindowLayer(this, this.tex); + this.ctx = CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts); + SetCurrentContext(this.ctx); + this.io = GetIO(); + contexts.push(this.ctx); + contextIOs.push(this.io); + if (contexts.length == 1) { + CreateFontsTexture(); + } + if (typeof (window) !== "undefined") { + LoadIniSettingsFromMemory(window.localStorage.getItem("imgui.ini") || ""); + } + if (typeof (navigator) !== "undefined") { + this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null; + } + this.io.SetClipboardTextFn = (user_data, text) => { + clipboard_text = text; + // console.log(`set clipboard_text: "${clipboard_text}"`); + if (typeof navigator !== "undefined" && typeof navigator.clipboard !== "undefined") { + // console.log(`clipboard.writeText: "${clipboard_text}"`); + navigator.clipboard.writeText(clipboard_text).then(() => { + // console.log(`clipboard.writeText: "${clipboard_text}" done.`); + }); + } + }; + this.io.GetClipboardTextFn = (user_data) => { + // if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.readText: "${clipboard_text}"`); + // (navigator as any).clipboard.readText().then((text: string): void => { + // clipboard_text = text; + // console.log(`clipboard.readText: "${clipboard_text}" done.`); + // }); + // } + // console.log(`get clipboard_text: "${clipboard_text}"`); + return clipboard_text; + }; + this.io.ClipboardUserData = null; + // Setup back-end capabilities flags + this.io.BackendFlags |= ImGuiBackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional) + // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array. + this.io.KeyMap[ImGuiKey.Tab] = 9; + this.io.KeyMap[ImGuiKey.LeftArrow] = 37; + this.io.KeyMap[ImGuiKey.RightArrow] = 39; + this.io.KeyMap[ImGuiKey.UpArrow] = 38; + this.io.KeyMap[ImGuiKey.DownArrow] = 40; + this.io.KeyMap[ImGuiKey.PageUp] = 33; + this.io.KeyMap[ImGuiKey.PageDown] = 34; + this.io.KeyMap[ImGuiKey.Home] = 36; + this.io.KeyMap[ImGuiKey.End] = 35; + this.io.KeyMap[ImGuiKey.Insert] = 45; + this.io.KeyMap[ImGuiKey.Delete] = 46; + this.io.KeyMap[ImGuiKey.Backspace] = 8; + this.io.KeyMap[ImGuiKey.Space] = 32; + this.io.KeyMap[ImGuiKey.Enter] = 13; + this.io.KeyMap[ImGuiKey.Escape] = 27; + this.io.KeyMap[ImGuiKey.A] = 65; + this.io.KeyMap[ImGuiKey.C] = 67; + this.io.KeyMap[ImGuiKey.V] = 86; + this.io.KeyMap[ImGuiKey.X] = 88; + this.io.KeyMap[ImGuiKey.Y] = 89; + this.io.KeyMap[ImGuiKey.Z] = 90; + this.update = update; + this.resize(sizeX, sizeY); + this.imgui.pluginName = 'imgui_renderer'; + this.addChild(this.surface); + app.renderer.plugins.interaction.addListener("mousedown", this.mouseDown.bind(this)); + app.renderer.plugins.interaction.addListener("mouseup", this.mouseUp.bind(this)); + app.ticker.add(this.updateInternal.bind(this)); + this.interactive = false; + this.interactiveChildren = true; + this.surface.interactive = false; + } + getSizeX() { return this.sizeX; } + getSizeY() { return this.sizeY; } + withContext(cb) { + SetCurrentContext(this.ctx); + cb(); + } + mouseDown(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = true; + } + } + mouseUp(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = false; + } + } + resize(sizeX, sizeY) { + this.sizeX = sizeX; + this.sizeY = sizeY; + this.baseTex.resize(sizeX, sizeY); + this.tex.frame = new Rectangle(0, 0, this.baseTex.width, this.baseTex.height); + } + updateInternal(deltaTime) { + const dt = deltaTime * 1 / (1000 * settings.TARGET_FPMS); + SetCurrentContext(this.ctx); + if (this.io.WantSaveIniSettings) { + this.io.WantSaveIniSettings = false; + if (typeof (window) !== "undefined") { + window.localStorage.setItem("imgui.ini", SaveIniSettingsToMemory()); + } + } + this.io.DisplaySize.x = this.sizeX; + this.io.DisplaySize.y = this.sizeY; + this.io.DisplayFramebufferScale.x = 1; + this.io.DisplayFramebufferScale.y = 1; + this.io.DeltaTime = dt; + let localPos = this.toLocal(app.renderer.plugins.interaction.mouse.global); + if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY) { + localPos = new Point(-Number.MAX_VALUE, -Number.MAX_VALUE); + } + this.io.MousePos.x = localPos.x; + this.io.MousePos.y = localPos.y; + if (this.io.WantSetMousePos) { + console.log("TODO: MousePos", this.io.MousePos.x, this.io.MousePos.y); + } + if (typeof (document) !== "undefined") { + if (this.io.MouseDrawCursor) { + document.body.style.cursor = "none"; + } + else { + switch (GetMouseCursor()) { + case ImGuiMouseCursor.None: + document.body.style.cursor = "none"; + break; + default: + case ImGuiMouseCursor.Arrow: + document.body.style.cursor = "default"; + break; + case ImGuiMouseCursor.TextInput: + document.body.style.cursor = "text"; + break; // When hovering over InputText, etc. + case ImGuiMouseCursor.ResizeAll: + document.body.style.cursor = "move"; + break; // Unused + case ImGuiMouseCursor.ResizeNS: + document.body.style.cursor = "ns-resize"; + break; // When hovering over an horizontal border + case ImGuiMouseCursor.ResizeEW: + document.body.style.cursor = "ew-resize"; + break; // When hovering over a vertical border or a column + case ImGuiMouseCursor.ResizeNESW: + document.body.style.cursor = "nesw-resize"; + break; // When hovering over the bottom-left corner of a window + case ImGuiMouseCursor.ResizeNWSE: + document.body.style.cursor = "nwse-resize"; + break; // When hovering over the bottom-right corner of a window + case ImGuiMouseCursor.Hand: + document.body.style.cursor = "move"; + break; + } + } + } + // Gamepad navigation mapping [BETA] + for (let i = 0; i < this.io.NavInputs.length; ++i) { + this.io.NavInputs[i] = 0.0; + } + if (this.io.ConfigFlags & ImGuiConfigFlags.NavEnableGamepad) { + // Update gamepad inputs + const gamepads = (typeof (navigator) !== "undefined" && typeof (navigator.getGamepads) === "function") ? navigator.getGamepads() : []; + for (let i = 0; i < gamepads.length; ++i) { + const gamepad = gamepads[i]; + if (!gamepad) { + continue; + } + const buttons_count = gamepad.buttons.length; + const axes_count = gamepad.axes.length; + const MAP_BUTTON = function (NAV_NO, BUTTON_NO) { + if (!gamepad) { + return; + } + if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed) + this.io.NavInputs[NAV_NO] = 1.0; + }; + const MAP_ANALOG = function (NAV_NO, AXIS_NO, V0, V1) { + if (!gamepad) { + return; + } + let v = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0; + v = (v - V0) / (V1 - V0); + if (v > 1.0) + v = 1.0; + if (this.io.NavInputs[NAV_NO] < v) + this.io.NavInputs[NAV_NO] = v; + }; + // TODO: map input based on vendor and product id + // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id + const match = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/); + const match_chrome = gamepad.id.match(/^.*\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\).*$/); + const vendor = (match && match[1]) || (match_chrome && match_chrome[1]) || "0000"; + const product = (match && match[2]) || (match_chrome && match_chrome[2]) || "0000"; + switch (vendor + product) { + case "046dc216": // Logitech Logitech Dual Action (Vendor: 046d Product: c216) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 2); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 0); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "046dc21d": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d) + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_ANALOG(ImGuiNavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT + MAP_ANALOG(ImGuiNavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "2dc86001": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001) + case "2dc86101": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 0); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 4); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 6); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 7); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 8); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + default: // standard gamepad: https://w3c.github.io/gamepad/#remapping + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + } + } + } + NewFrame(); + this.update(dt); + EndFrame(); + Render(); + app.renderer.render(this.imgui, this.tex); + this.surface.interactive = this.io.WantCaptureMouse; + } +} +let canvas$1 = null; +//export let gl: WebGL2RenderingContext | null = null; +let g_ShaderHandle = null; +let g_VertHandle = null; +let g_FragHandle = null; +let g_AttribLocationTex = null; +let g_AttribLocationProjMtx = null; +let g_AttribLocationPosition = -1; +let g_AttribLocationUV = -1; +let g_AttribLocationColor = -1; +let g_VaoHandle = null; +let g_VboHandle = null; +let g_ElementsHandle = null; +let g_FontTexture = null; +function document_on_copy(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_cut(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_paste(event) { + if (event.clipboardData) { + clipboard_text = event.clipboardData.getData("text/plain"); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function window_on_gamepadconnected(event /* GamepadEvent */) { + console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.", event.gamepad.index, event.gamepad.id, event.gamepad.buttons.length, event.gamepad.axes.length); +} +function window_on_gamepaddisconnected(event /* GamepadEvent */) { + console.log("Gamepad disconnected at index %d: %s.", event.gamepad.index, event.gamepad.id); +} +function canvas_on_blur(event) { + for (var io of contextIOs) { + io.KeyCtrl = false; + io.KeyShift = false; + io.KeyAlt = false; + io.KeySuper = false; + for (let i = 0; i < io.KeysDown.length; ++i) { + io.KeysDown[i] = false; + } + for (let i = 0; i < io.MouseDown.length; ++i) { + io.MouseDown[i] = false; + } + } +} +function canvas_on_keydown(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = true; + // forward to the keypress event + if ( /*io.WantCaptureKeyboard ||*/event.key === "Tab") { + event.preventDefault(); + } + } +} +function canvas_on_keyup(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = false; + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +function canvas_on_keypress(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.AddInputCharacter(event.charCode); + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +// MouseEvent.button +// A number representing a given button: +// 0: Main button pressed, usually the left button or the un-initialized state +// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present) +// 2: Secondary button pressed, usually the right button +// 3: Fourth button, typically the Browser Back button +// 4: Fifth button, typically the Browser Forward button +const mouse_button_map = [0, 2, 1, 3, 4]; +function canvas_on_contextmenu(event) { + for (var io of contextIOs) { + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function canvas_on_wheel(event) { + for (var io of contextIOs) { + let scale = 1.0; + switch (event.deltaMode) { + case event.DOM_DELTA_PIXEL: + scale = 0.01; + break; + case event.DOM_DELTA_LINE: + scale = 0.2; + break; + case event.DOM_DELTA_PAGE: + scale = 1.0; + break; + } + io.MouseWheelH = event.deltaX * scale; + io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text. + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function PrePIXIInit() { + Renderer.registerPlugin("imgui_renderer", fromConstructor(ImGuiImplInternalRenderer)); +} +function Init(_app) { + // Setup Dear ImGui binding + IMGUI_CHECKVERSION(); + if (typeof (document) !== "undefined") { + document.body.addEventListener("copy", document_on_copy); + document.body.addEventListener("cut", document_on_cut); + document.body.addEventListener("paste", document_on_paste); + } + if (typeof (window) !== "undefined") { + window.addEventListener("gamepadconnected", window_on_gamepadconnected); + window.addEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + app = _app; + gl = app.renderer.gl; + canvas$1 = app.view; + gl.getExtension("EXT_color_buffer_float"); + if (canvas$1 !== null) { + canvas$1.style.touchAction = "none"; // Disable browser handling of all panning and zooming gestures. + canvas$1.addEventListener("blur", canvas_on_blur); + canvas$1.addEventListener("keydown", canvas_on_keydown); + canvas$1.addEventListener("keyup", canvas_on_keyup); + canvas$1.addEventListener("keypress", canvas_on_keypress); + canvas$1.addEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.addEventListener("wheel", canvas_on_wheel); + } + CreateDeviceObjects(); +} +function Shutdown() { + DestroyDeviceObjects(); + if (canvas$1 !== null) { + canvas$1.removeEventListener("blur", canvas_on_blur); + canvas$1.removeEventListener("keydown", canvas_on_keydown); + canvas$1.removeEventListener("keyup", canvas_on_keyup); + canvas$1.removeEventListener("keypress", canvas_on_keypress); + canvas$1.removeEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.removeEventListener("wheel", canvas_on_wheel); + } + app = null; + canvas$1 = null; + if (typeof (window) !== "undefined") { + window.removeEventListener("gamepadconnected", window_on_gamepadconnected); + window.removeEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + if (typeof (document) !== "undefined") { + document.body.removeEventListener("copy", document_on_copy); + document.body.removeEventListener("cut", document_on_cut); + document.body.removeEventListener("paste", document_on_paste); + } +} +function CreateFontsTexture() { + const io = GetIO(); + // Backup GL state + const last_texture = gl && gl.getParameter(gl.TEXTURE_BINDING_2D); + // Build texture atlas + // const width: number = 256; + // const height: number = 256; + // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff); + const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory. + // console.log(`font texture ${width} x ${height} @ ${pixels.length}`); + // Upload texture to graphics system + g_FontTexture = gl && gl.createTexture(); + gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2 + gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels); + // Store our identifier + io.Fonts.TexID = g_FontTexture || { foo: "bar" }; + // console.log("font texture id", g_FontTexture); + // Restore modified GL state + gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture); +} +function DestroyFontsTexture() { + const io = GetIO(); + io.Fonts.TexID = null; + gl && gl.deleteTexture(g_FontTexture); + g_FontTexture = null; +} +function CreateDeviceObjects() { + const vertex_shader = [ + "#version 300 es", + "uniform mat4 ProjMtx;", + "in vec2 Position;", + "in vec2 UV;", + "in vec4 Color;", + "out vec2 Frag_UV;", + "out vec4 Frag_Color;", + "void main() {", + " Frag_UV = UV;", + " Frag_Color = Color;", + " gl_Position = ProjMtx * vec4(Position.xy,0,1);", + "}", + ]; + const fragment_shader = [ + "#version 300 es", + "precision mediump float;", + "uniform sampler2D Texture;", + "in vec2 Frag_UV;", + "in vec4 Frag_Color;", + "out vec4 OutColor;", + "void main() {", + " OutColor = Frag_Color * texture(Texture, Frag_UV);", + "}", + ]; + g_ShaderHandle = gl && gl.createProgram(); + g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER); + g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER); + gl && gl.shaderSource(g_VertHandle, vertex_shader.join("\n")); + gl && gl.shaderSource(g_FragHandle, fragment_shader.join("\n")); + gl && gl.compileShader(g_VertHandle); + gl && gl.compileShader(g_FragHandle); + gl && gl.attachShader(g_ShaderHandle, g_VertHandle); + gl && gl.attachShader(g_ShaderHandle, g_FragHandle); + gl && gl.linkProgram(g_ShaderHandle); + g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle, "Texture"); + g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle, "ProjMtx"); + g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle, "Position") || 0; + g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle, "UV") || 0; + g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle, "Color") || 0; + g_VaoHandle = gl && gl.createVertexArray(); + g_VboHandle = gl && gl.createBuffer(); + g_ElementsHandle = gl && gl.createBuffer(); +} +function DestroyDeviceObjects() { + DestroyFontsTexture(); + gl && gl.deleteVertexArray(g_VaoHandle); + g_VaoHandle = null; + gl && gl.deleteBuffer(g_VboHandle); + g_VboHandle = null; + gl && gl.deleteBuffer(g_ElementsHandle); + g_ElementsHandle = null; + g_AttribLocationTex = null; + g_AttribLocationProjMtx = null; + g_AttribLocationPosition = -1; + g_AttribLocationUV = -1; + g_AttribLocationColor = -1; + gl && gl.deleteProgram(g_ShaderHandle); + g_ShaderHandle = null; + gl && gl.deleteShader(g_VertHandle); + g_VertHandle = null; + gl && gl.deleteShader(g_FragHandle); + g_FragHandle = null; +} + +exports.ImGuiWindow = ImGuiWindow; +exports.Init = Init; +exports.PrePIXIInit = PrePIXIInit; +exports.Shutdown = Shutdown; +//# sourceMappingURL=imgui_impl.js.map diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..583e8ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +tsconfig.tsbuildinfo +*.swp +node_modules +nohup.out +.rpt2_cache diff --git a/imgui_impl.js b/imgui_impl.js new file mode 100644 index 0000000..0f4a8ec --- /dev/null +++ b/imgui_impl.js @@ -0,0 +1,41080 @@ +'use strict'; + +Object.defineProperty(exports, '__esModule', { value: true }); + +var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +function commonjsRequire () { + throw new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs'); +} + +function unwrapExports (x) { + return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x; +} + +function createCommonjsModule(fn, module) { + return module = { exports: {} }, fn(module, module.exports), module.exports; +} + +var require$$0 = {}; + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +// resolves . and .. elements in a path array with directory names there +// must be no slashes, empty elements, or device names (c:\) in the array +// (so also no leading and trailing slashes - it does not distinguish +// relative and absolute paths) +function normalizeArray(parts, allowAboveRoot) { + // if the path tries to go above the root, `up` ends up > 0 + 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 the path is allowed to go above the root, restore leading ..s + if (allowAboveRoot) { + for (; up--; up) { + parts.unshift('..'); + } + } + + return parts; +} + +// Split a filename into [root, dir, basename, ext], unix version +// 'root' is just a slash, or nothing. +var splitPathRe = + /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; +var splitPath = function(filename) { + return splitPathRe.exec(filename).slice(1); +}; + +// path.resolve([from ...], to) +// posix version +function resolve() { + var resolvedPath = '', + resolvedAbsolute = false; + + for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { + var path = (i >= 0) ? arguments[i] : '/'; + + // Skip empty and invalid entries + if (typeof path !== 'string') { + throw new TypeError('Arguments to path.resolve must be strings'); + } else if (!path) { + continue; + } + + resolvedPath = path + '/' + resolvedPath; + resolvedAbsolute = path.charAt(0) === '/'; + } + + // At this point the path should be resolved to a full absolute path, but + // handle relative paths to be safe (might happen when process.cwd() fails) + + // Normalize the path + resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) { + return !!p; + }), !resolvedAbsolute).join('/'); + + return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; +} +// path.normalize(path) +// posix version +function normalize(path) { + var isPathAbsolute = isAbsolute(path), + trailingSlash = substr(path, -1) === '/'; + + // Normalize the path + path = normalizeArray(filter(path.split('/'), function(p) { + return !!p; + }), !isPathAbsolute).join('/'); + + if (!path && !isPathAbsolute) { + path = '.'; + } + if (path && trailingSlash) { + path += '/'; + } + + return (isPathAbsolute ? '/' : '') + path; +} +// posix version +function isAbsolute(path) { + return path.charAt(0) === '/'; +} + +// posix version +function join() { + var paths = Array.prototype.slice.call(arguments, 0); + return normalize(filter(paths, function(p, index) { + if (typeof p !== 'string') { + throw new TypeError('Arguments to path.join must be strings'); + } + return p; + }).join('/')); +} + + +// path.relative(from, to) +// posix version +function relative(from, to) { + from = resolve(from).substr(1); + to = 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('/'); +} + +var sep = '/'; +var delimiter = ':'; + +function dirname(path) { + var result = splitPath(path), + root = result[0], + dir = result[1]; + + if (!root && !dir) { + // No dirname whatsoever + return '.'; + } + + if (dir) { + // It has a dirname, strip trailing slash + dir = dir.substr(0, dir.length - 1); + } + + return root + dir; +} + +function basename(path, ext) { + var f = splitPath(path)[2]; + // TODO: make this comparison case-insensitive on windows? + if (ext && f.substr(-1 * ext.length) === ext) { + f = f.substr(0, f.length - ext.length); + } + return f; +} + + +function extname(path) { + return splitPath(path)[3]; +} +var require$$1 = { + extname: extname, + basename: basename, + dirname: dirname, + sep: sep, + delimiter: delimiter, + relative: relative, + join: join, + isAbsolute: isAbsolute, + normalize: normalize, + resolve: resolve +}; +function filter (xs, f) { + if (xs.filter) return xs.filter(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + if (f(xs[i], i, xs)) res.push(xs[i]); + } + return res; +} + +// String.prototype.substr - negative index don't work in IE8 +var substr = 'ab'.substr(-1) === 'b' ? + function (str, start, len) { return str.substr(start, len) } : + function (str, start, len) { + if (start < 0) start = str.length + start; + return str.substr(start, len); + } +; + +var bindImgui = createCommonjsModule(function (module, exports) { +var Module = (function() { + var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; + return ( +function(Module) { + Module = Module || {}; + +var Module=typeof Module!=="undefined"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key];}}Module["arguments"]=[];Module["thisProgram"]="./this.program";Module["quit"]=function(status,toThrow){throw toThrow};Module["preRun"]=[];Module["postRun"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window==="object";ENVIRONMENT_IS_WORKER=typeof importScripts==="function";ENVIRONMENT_HAS_NODE=typeof process==="object"&&typeof commonjsRequire==="function";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}else{return scriptDirectory+path}}if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+"/";var nodeFS;var nodePath;Module["read"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require$$0;if(!nodePath)nodePath=require$$1;filename=nodePath["normalize"](filename);ret=nodeFS["readFileSync"](filename);}return binary?ret:ret.toString()};Module["readBinary"]=function readBinary(filename){var ret=Module["read"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret);}assert(ret.buffer);return ret};if(process["argv"].length>1){Module["thisProgram"]=process["argv"][1].replace(/\\/g,"/");}Module["arguments"]=process["argv"].slice(2);process["on"]("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process["on"]("unhandledRejection",abort);Module["quit"]=function(status){process["exit"](status);};Module["inspect"]=function(){return "[Emscripten Module object]"};}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){Module["read"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)};}Module["readBinary"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer==="function"){return new Uint8Array(readbuffer(f))}data=read(f,"binary");assert(typeof data==="object");return data};if(typeof scriptArgs!="undefined"){Module["arguments"]=scriptArgs;}else if(typeof arguments!="undefined"){Module["arguments"]=arguments;}if(typeof quit==="function"){Module["quit"]=function(status){quit(status);};}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href;}else if(document.currentScript){scriptDirectory=document.currentScript.src;}if(_scriptDir){scriptDirectory=_scriptDir;}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf("/")+1);}else{scriptDirectory="";}Module["read"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module["readBinary"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}};}Module["readAsync"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror();};xhr.onerror=onerror;xhr.send(null);};Module["setWindowTitle"]=function(title){document.title=title;};}var out=Module["print"]||(typeof console!=="undefined"?console.log.bind(console):typeof print!=="undefined"?print:null);var err=Module["printErr"]||(typeof printErr!=="undefined"?printErr:typeof console!=="undefined"&&console.warn.bind(console)||out);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key];}}moduleOverrides=undefined;var asm2wasmImports={"f64-rem":function(x,y){return x%y},"debugger":function(){debugger}};var functionPointers=new Array(0);var setTempRet0=function(value){};if(typeof WebAssembly!=="object"){err("no native wasm support detected");}var wasmMemory;var wasmTable;var ABORT=false;function assert(condition,text){if(!condition){abort("Assertion failed: "+text);}}var UTF8Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf8"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str="";while(idx>10,56320|ch&1023);}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023;}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u;}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63;}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4;}return len}var UTF16Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf-16le"):undefined;var WASM_PAGE_SIZE=65536;var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferViews(){Module["HEAP8"]=HEAP8=new Int8Array(buffer);Module["HEAP16"]=HEAP16=new Int16Array(buffer);Module["HEAP32"]=HEAP32=new Int32Array(buffer);Module["HEAPU8"]=HEAPU8=new Uint8Array(buffer);Module["HEAPU16"]=HEAPU16=new Uint16Array(buffer);Module["HEAPU32"]=HEAPU32=new Uint32Array(buffer);Module["HEAPF32"]=HEAPF32=new Float32Array(buffer);Module["HEAPF64"]=HEAPF64=new Float64Array(buffer);}var DYNAMIC_BASE=5315584,DYNAMICTOP_PTR=72672;var TOTAL_STACK=5242880;var INITIAL_TOTAL_MEMORY=Module["TOTAL_MEMORY"]||16777216;if(INITIAL_TOTAL_MEMORY>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback();continue}var func=callback.func;if(typeof func==="number"){if(callback.arg===undefined){Module["dynCall_v"](func);}else{Module["dynCall_vi"](func,callback.arg);}}else{func(callback.arg===undefined?null:callback.arg);}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;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 ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__);}function preMain(){callRuntimeCallbacks(__ATMAIN__);}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 addOnPostRun(cb){__ATPOSTRUN__.unshift(cb);}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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();}}}Module["preloadedImages"]={};Module["preloadedAudios"]={};var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile="data:application/octet-stream;base64,AGFzbQEAAAAB2AyxAWACf38Bf2ACf38AYAJ8fAF8YAF/AX9gAX8AYAN/f38Bf2AEf39/fwBgA39/fwBgAn9/AX1gBH9/f38Bf2AEf399fwBgAn99AX9gA399fQF/YAZ9fX1/f38AYAR/fX9/AGAFf39/fX8AYAABfGADf31/AGAFf39/f38Bf2AIf39/f39/f38Bf2AHf39/f39/fwF/YAZ/f39/f38Bf2AGf398fH9/AX9gCX9/f39/f39/fwF/YAN9f38AYAl/f39/f39/f38AYAZ/f39/f38AYAJ/fQBgAX8BfWAAAX9gAn19AGABfQBgAAF9YAAAYAN/f30Bf2AGf39/fX9/AGAIf399fX1/f38AYAR/fX99AX9gBn9/fX9/fwBgBX9/f399AGAHf39/f31/fQBgBn9/f399fwBgB39/f39/f38AYAd/f39/f399AGAGf39/f399AGAFf39/f38AYAZ/f31/f30AYAV/f31/fwBgCH9/fX9/f31/AGALf39/f39/f39/f38AYAl/f39/f39/fX8AYAh/f39/f399fwBgBH9/f30AYAZ/f319fX8AYAp/f39/f39/f39/AGADf399AGAGf3x/f39/AX9gA39+fwF+YAF/AXxgA39/fwF9YAR/f319AX9gCH9/fX19f39/AX9gBH9/fX8Bf2AFf399f30Bf2AHf39/fHx/fwF/YAR/f399AX9gBX9/f31/AX9gBn9/f31/fwF/YAp/f39/f39/f39/AX9gA399fQBgB399fX1/f38AYAd/f399fX1/AGAHf39/fX9/fQBgB39/f31/f38AYAl/f399f39/fX8AYAd/f39/f31/AGAIf39/f399f30AYAh/f39/f39/fQBgCH9/f39/f39/AGAKf39/f39/f399fwBgDH9/f39/f39/f39/fwBgDX9/f39/f39/f39/f38AYAN/f3wAYAN/f38BfGABfQF9YAJ9fQF9YAV/fX19fQBgBH9/fX0AYAJ/fQF9YAR9fX19AX9gBX9/f319AGADfX19AX1gAn19AX9gBH19fX0BfWALf319fX19fX19fX8AYAl/f31/f39/fX8AYAp/f31/f39/f31/AGAFf31/f30Bf2AIf399fX9/f38AYAt/f319fX19fX19fQBgCH9/f39/fX1/AGAHf39/fX1/fwBgBX9/fX9/AX9gCH9/f399fX9/AGAHf39/fX19fQBgCn9/fX19fX19fX8AYAx/f319fX19fX19fX8AYAd/fX19fX19AGAEf31/fwF/YAh/f399f39/fQF/YAV/fX9/fwF/YAV/fX5+fwF/YAZ/fX19f30Bf2AGf318fH99AX9gAn98AXxgAn9+AX5gCX9/f399f39/fQF/YAd/f319fX99AX9gCX9/f319fX9/fQF/YAZ/f31/f38Bf2AIf39/fX9/f38Bf2AKf39/f39/f31/fwF/YAl/f39/f399f38Bf2AJf39/fn5/fX9/AX9gCX9/f319f31/fwF/YAl/f398fH99f38Bf2AFfHx8fX0BfWADfHx9AXxgA3x8fAF8YAV9fX19fQF9YAN+fn4BfWADfn5+AX5gBX5+fn19AX1gBX9/f319AX1gB39/f39/f30Bf2AIf39/f39/f30Bf2AGf399fX99AX9gB39/f319f30Bf2AGf399fX9/AX9gB39/f31/fX8AYAl/f39/f399fX8AYAd/f39/fX1/AGAEf319fQF9YAZ/f39/f30Bf2AHf399f39/fQF/YAJ/fgBgAn9/AX5gA35/fwF/YAJ+fwF/YAJ8fwF8YAV/f39/fwF8YAZ/f39/f38BfGACfX8BfWABfAF9YAJ9fwF/YAN/f34AYAF/AX5gAn9/AXxgBH9/f38BfWAHf398f39/fwF/YAV/f399fQF/YAl/f399fX1/f38Bf2AGf39/fX99AX9gCH9/f398fH9/AX9gBX9/f399AX9gBn9/f399fwF/YAd/f39/fX9/AX9gC39/f39/f39/f39/AX9gCX9/f319fX9/fwBgCH9/f399fX1/AGAHf39/f31/fwBgCH9/f399f399AGAIf39/f31/f38AYAp/f39/fX9/f31/AGAJf39/f39/fX99AGAJf39/f39/f399AGALf39/f39/f39/fX8AAvQDNwNlbnYBYgA2A2VudgFjAE4DZW52AWQAGgNlbnYBZQAEA2VudgFmAAADZW52AWcAUQNlbnYBaABTA2VudgFpAAcDZW52AWoAAANlbnYBawAtA2VudgFsACEDZW52AW0ABwNlbnYBbgAAA2VudgFvAAYDZW52AXAAAANlbnYBcQAaA2VudgFyAAQDZW52AXMABANlbnYBdAAEA2VudgF1AAAI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/AYLC0H89gEoAgAhASAAQZypBCgCACABQf8BcUHyBmoRAQALWgEDfyMEIQIjBEEQaiQEIAJBmKkEKAIAIgNBsCtqIABBBHRqIgApAgA3AgAgAiAAKQIINwIIIAIgAioCDCADQZAqaioCACABlJQ4AgwgAhChAyEEIAIkBCAECxYAIAAgASkCADcCACAAIAIpAgA3AggLBgBBNBADCwwAIAAgASAAIAFdGwvGAwEDfyACQYDAAE4EQCAAIAEgAhAjGiAADwsgACEEIAAgAmohAyAAQQNxIAFBA3FGBEADQCAAQQNxBEAgAkUEQCAEDwsgACABLAAAOgAAIABBAWohACABQQFqIQEgAkEBayECDAELCyADQXxxIgJBQGohBQNAIAAgBUwEQCAAIAEoAgA2AgAgACABKAIENgIEIAAgASgCCDYCCCAAIAEoAgw2AgwgACABKAIQNgIQIAAgASgCFDYCFCAAIAEoAhg2AhggACABKAIcNgIcIAAgASgCIDYCICAAIAEoAiQ2AiQgACABKAIoNgIoIAAgASgCLDYCLCAAIAEoAjA2AjAgACABKAI0NgI0IAAgASgCODYCOCAAIAEoAjw2AjwgAEFAayEAIAFBQGshAQwBCwsDQCAAIAJIBEAgACABKAIANgIAIABBBGohACABQQRqIQEMAQsLBSADQQRrIQIDQCAAIAJIBEAgACABLAAAOgAAIAAgASwAAToAASAAIAEsAAI6AAIgACABLAADOgADIABBBGohACABQQRqIQEMAQsLCwNAIAAgA0gEQCAAIAEsAAA6AAAgAEEBaiEAIAFBAWohAQwBCwsgBAsSACAAQbT4ATYCACAAQQRqED4LKgAgACgCEBBbBEBBACEABSAAQQRqIgAsAAtBAEgEQCAAKAIAIQALCyAACxIAIAAgARDpECAAQcD4ATYCAAsQACAALQABIAAtAABBCHRyCyoBAX8jBCEBIwRBEGokBCABIAA2AgBBBBA/IgAgASgCADYCACABJAQgAAslAQF/IAEoAgAhAiAAQgA3AgAgAEEANgIIIAAgAUEEaiACEJMBCwgAQQwQA0EACwcAIABBBGoLJwEBfyAAKAIIIgEEQCAAQQA2AgQgAEEANgIAIAEQQSAAQQA2AggLCw0AIAAoAgggAUECdGoLFgAgACABKgIAIAKUIAEqAgQgApQQMgspAQJ/An8jBCEDIwRBEGokBCAAQQFBgP4BQcvWAkGEASABEAIgAwskBAs+AQF/QZipBCgCACIBBEAgASABKAL8BkEBajYC/AYLQfj2ASgCACEBIABBnKkEKAIAIAFB/wBxQbQBahEAAAuJDgEJfyAARQRADwtBrKoEKAIAIQQgAEF4aiIBIABBfGooAgAiAEF4cSIDaiEFIABBAXEEfyABIQIgAwUCfyABKAIAIQIgAEEDcUUEQA8LIAEgAmsiACAESQRADwsgAiADaiEDQbCqBCgCACAARgRAIAUoAgQiAUEDcUEDRwRAIAAhASAAIQIgAwwCC0GkqgQgAzYCACAFIAFBfnE2AgQgACADQQFyNgIEIAAgA2ogAzYCAA8LIAJBA3YhBCACQYACSQRAIAAoAggiASAAKAIMIgJGBEBBnKoEQZyqBCgCAEEBIAR0QX9zcTYCAAUgASACNgIMIAIgATYCCAsgACEBIAAhAiADDAELIAAoAhghByAAKAIMIgEgAEYEQAJAIABBEGoiAkEEaiIEKAIAIgEEQCAEIQIFIAIoAgAiAUUEQEEAIQEMAgsLA0ACQCABQRRqIgQoAgAiBkUEQCABQRBqIgQoAgAiBkUNAQsgBCECIAYhAQwBCwsgAkEANgIACwUgACgCCCICIAE2AgwgASACNgIICyAHBH8gACgCHCICQQJ0QcysBGoiBCgCACAARgRAIAQgATYCACABRQRAQaCqBEGgqgQoAgBBASACdEF/c3E2AgAgACEBIAAhAiADDAMLBSAHQRBqIgIgB0EUaiACKAIAIABGGyABNgIAIAFFBEAgACEBIAAhAiADDAMLCyABIAc2AhggACgCECICBEAgASACNgIQIAIgATYCGAsgACgCFCICBEAgASACNgIUIAIgATYCGAsgACEBIAAhAiADBSAAIQEgACECIAMLCwshACABIAVPBEAPCyAFKAIEIghBAXFFBEAPCyAIQQJxBEAgBSAIQX5xNgIEIAIgAEEBcjYCBCAAIAFqIAA2AgAgACEDBUG0qgQoAgAgBUYEQEGoqgRBqKoEKAIAIABqIgA2AgBBtKoEIAI2AgAgAiAAQQFyNgIEIAJBsKoEKAIARwRADwtBsKoEQQA2AgBBpKoEQQA2AgAPC0GwqgQoAgAgBUYEQEGkqgRBpKoEKAIAIABqIgA2AgBBsKoEIAE2AgAgAiAAQQFyNgIEIAAgAWogADYCAA8LIAhBA3YhBiAIQYACSQRAIAUoAggiAyAFKAIMIgRGBEBBnKoEQZyqBCgCAEEBIAZ0QX9zcTYCAAUgAyAENgIMIAQgAzYCCAsFAkAgBSgCGCEJIAUoAgwiAyAFRgRAAkAgBUEQaiIEQQRqIgYoAgAiAwRAIAYhBAUgBCgCACIDRQRAQQAhAwwCCwsDQAJAIANBFGoiBigCACIHRQRAIANBEGoiBigCACIHRQ0BCyAGIQQgByEDDAELCyAEQQA2AgALBSAFKAIIIgQgAzYCDCADIAQ2AggLIAkEQCAFKAIcIgRBAnRBzKwEaiIGKAIAIAVGBEAgBiADNgIAIANFBEBBoKoEQaCqBCgCAEEBIAR0QX9zcTYCAAwDCwUgCUEQaiIEIAlBFGogBCgCACAFRhsgAzYCACADRQ0CCyADIAk2AhggBSgCECIEBEAgAyAENgIQIAQgAzYCGAsgBSgCFCIEBEAgAyAENgIUIAQgAzYCGAsLCwsgAiAIQXhxIABqIgNBAXI2AgQgASADaiADNgIAQbCqBCgCACACRgRAQaSqBCADNgIADwsLIANBA3YhASADQYACSQRAIAFBA3RBxKoEaiEAQZyqBCgCACIDQQEgAXQiAXEEfyAAQQhqIgEhAyABKAIABUGcqgQgASADcjYCACAAQQhqIQMgAAshASADIAI2AgAgASACNgIMIAIgATYCCCACIAA2AgwPCyADQQh2IgAEfyADQf///wdLBH9BHwUgACAAQYD+P2pBEHZBCHEiBHQiAUGA4B9qQRB2QQRxIQAgASAAdCIGQYCAD2pBEHZBAnEhASADQQ4gACAEciABcmsgBiABdEEPdmoiAEEHanZBAXEgAEEBdHILBUEACyIBQQJ0QcysBGohACACIAE2AhwgAkEANgIUIAJBADYCEEGgqgQoAgAiBEEBIAF0IgZxBEACQCAAKAIAIgAoAgRBeHEgA0YEQCAAIQEFAkAgA0EAQRkgAUEBdmsgAUEfRht0IQQDQCAAQRBqIARBH3ZBAnRqIgYoAgAiAQRAIARBAXQhBCABKAIEQXhxIANGDQIgASEADAELCyAGIAI2AgAgAiAANgIYIAIgAjYCDCACIAI2AggMAgsLIAEoAggiACACNgIMIAEgAjYCCCACIAA2AgggAiABNgIMIAJBADYCGAsFQaCqBCAEIAZyNgIAIAAgAjYCACACIAA2AhggAiACNgIMIAIgAjYCCAtBvKoEQbyqBCgCAEF/aiIANgIAIAAEQA8LQeStBCEAA0AgACgCACIBQQhqIQAgAQ0AC0G8qgRBfzYCAAsNACAAKAIIIAFBHGxqCw0AIAFBAnQgAGoqAgALMQEBfyMEIQMjBEEQaiQEIAEoAgAhASADIAIQdyAAIAEgAygCABAIEF8gAxAxIAMkBAshACAAKAIEIgAEfyAAIABBAm1qBUEICyIAIAEgACABShsLzwECBH8BfgJAAkAgACkDcCIFQgBSBEAgACkDeCAFWQ0BCyAAEPsLIgFBAEgNACAAKAIIIQICQAJAIAApA3AiBUIAUQRAIAIhAwwBBSACIQMgBSAAKQN4fSIFIAIgACgCBCIEa6xVDQEgACAEIAWnQX9qajYCaAsMAQsgACACNgJoCyADBEAgACAAKQN4IANBAWogACgCBCIAa6x8NwN4BSAAKAIEIQALIABBf2oiAC0AACABRwRAIAAgAToAAAsMAQsgAEEANgJoQX8hAQsgAQsgAEMAAAAAQwAAgD8gACAAQwAAgD9eGyAAQwAAAABdGwsKACAAKAIAQQJGC44BAQN/AkACQCAAIgJBA3FFDQAgAiEBA0ACQCAALAAARQRAIAEhAAwBCyAAQQFqIgAiAUEDcQ0BDAILCwwBCwNAIABBBGohASAAKAIAIgNBgIGChHhxQYCBgoR4cyADQf/9+3dqcUUEQCABIQAMAQsLIANB/wFxBEADQCAAQQFqIgAsAAANAAsLCyAAIAJrCxUAIAAgASACEDIgAEEIaiADIAQQMgsbACABQQAgAEHAA2oQcCgCABC7ASIAELQCIAALCQAgACABNgIACxAAQZipBCgCAEGUM2ooAgAL4gEBAn9BmKkEKAIAIgRBlDNqKAIAIQMgAQRAAkAgAyADKAK4AiADKALAAnI2AsACIARBpDVqKAIAIAFHBEAgBEGANmosAABFDQELIARBoDVqKAIAIgQoAvgFIAMoAvgFRgRAIAMgBEcEQCAEKAIIIAMoAghyQYCAgARxRQ0CCyADIAIgACACGyABEOYQCwsLIAMgATYCjAIgAyAAKQIANwKUAiADIAApAgg3ApwCIANBADYCkAIgACABEK0FBH9BAAUgACAAQQhqQQEQhQMEQCADIAMoApACQQFyNgKQAgtBAQsLBgAgAKiyCw0AIABB1ABqIAEQmgILFAAgASACIAAgACACXhsgACABXRsLEQBBACAAQQRqIAAoAggQWxsLIQAgAEP//39/Q///f38QMiAAQQhqQ///f/9D//9//xAyCxAAIAAoAggiAARAIAAQQQsLFwAgAEEANgIEIABBADYCACAAQQA2AggLIQEBfyMEIQIjBEEQaiQEIAIgATYCACAAIAIQ2gIgAiQEC5gCAQR/IAAgAmohBCABQf8BcSEDIAJBwwBOBEADQCAAQQNxBEAgACADOgAAIABBAWohAAwBCwsgA0EIdCADciADQRB0ciADQRh0ciEBIARBfHEiBUFAaiEGA0AgACAGTARAIAAgATYCACAAIAE2AgQgACABNgIIIAAgATYCDCAAIAE2AhAgACABNgIUIAAgATYCGCAAIAE2AhwgACABNgIgIAAgATYCJCAAIAE2AiggACABNgIsIAAgATYCMCAAIAE2AjQgACABNgI4IAAgATYCPCAAQUBrIQAMAQsLA0AgACAFSARAIAAgATYCACAAQQRqIQAMAQsLCwNAIAAgBEgEQCAAIAM6AAAgAEEBaiEADAELCyAEIAJrC58BAQN/EDwiAiwAf0UEQEGYqQQoAgAhBCABQwAAAABdIQMgAEMAAAAAXARAIAIqArQDQwAAAAAgASADGyACKgIMIAIqAliTIACSkpIhACACKgK4AyEBBSADBEAgBEHUKmoqAgAhAQsgAioC0AEhAAsgAiABIACSOALIASACIAIoAtQBNgLMASACIAIpAvQBNwLoASACIAIoAvwBNgLwAQsLqwECA38BfSMEIQUjBEEQaiQEQZipBCgCACEGIAMEQCABIAIQkAEhAgsgBSEDIAZBsDFqKAIAIQcgBkG0MWoqAgAhCCABIAJGBEAgAEMAAAAAIAgQMgUgAyAHIAhD//9/fyAEIAEgAkEAEJoDIAMqAgAiBEMAAAAAXgRAIAMgBCAIIAcqAgCVkyIEOAIACyADIARDMzNzP5KosjgCACAAIAMpAwA3AgALIAUkBAsnAEGYqQQoAgBBNGogAEECdGooAgAiAEF/SgR/IAAgARD2AgVBAAsLNQECfyMEIQMjBEEQaiQEAn8gACgCACEEIAMgARB3IAQLIAMoAgAgAigCABALIAMQMSADJAQL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KAIIRgRAIAEQ4QELIAEgACABKAIAEPIFIgI2AgAgASACNgIIIAAgARCCAQwFCyABEOEBIAFBADYCCCABQQA2AgAgAUEAOgAPDAQLIAEQ4QEgASAAKAIsIgI2AgggASACNgIAIAFBADoADwwDCyAAKAIsIQQgACABEIIBIAEQ4QEgASwAEARAIAEgBDYCACAEIQIFIAEoAgAiAiAESARAA0ACQAJ/IAAgAhDiAUH//wNxQQpGIQwgASgCACECIAwLDQAgASACQQFqIgI2AgAgAiAESA0BCwsLCyABIAI2AgggAUEAOgAPDAILQQMhAwwBCyAFQYCADEgEQCAFQY2ABGsEQEEDIQMMAgsgASgCBCABKAIIRgRAIAEgACABKAIAEPIFNgIAIAAgARCCAQUgACABELgECwwBCwJAAkACQCAFQYCADGsOAgIAAQsgARDhASABIAEoAghBAWo2AgggACABEIIBIAEgASgCCDYCACABQQA6AA8MAgtBAyEDDAELIAAgARCCASABEOEBIAEoAggiAkEASgRAIAEgAkF/aiICNgIICyABIAI2AgAgAUEAOgAPCyADQQNGBEBBACAFIAVB//8DShsiAkEASgRAAkAgBiACOwEAIAJBCkYEQCABLAAQDQELAkACQCABLAAMRQ0AIAEoAgQgASgCCEcNACABKAIAIgIgACgCLE4NACAAIQUgAUEYaiACQQFBARC5BCIEBEAgBCAFIAIQ4gE7AQALIAAgASgCAEEBENkDIAAgASgCACAGQQEQkgMEQCABIAEoAgBBAWo2AgAgAUEAOgAPCwwBCyAAIAEQkwMgACABKAIAIAZBARCSAwRAIAEgASgCAEEBEPcFIAEgASgCAEEBajYCACABQQA6AA8LCwsLBSADQckARgRAIAEoAgQgASgCCEYEQCABKAIAIgIgACgCLEgEQCAAIAEgAkEBENoDCwUgACABEJMDCyABQQA6AA8FIANBzgBGBEAgASgCBCABKAIIRgRAIAAgARCCASABKAIAIgJBAEoEQCAAIAEgAkF/akEBENoDIAEgASgCAEF/ajYCAAsFIAAgARCTAwsgAUEAOgAPCwsLIAkkBAtIAQF/IAFBGGogAiADQQAQuQQiBEEARyADQQBKcQRAQQAhAQNAIAFBAXQgBGogACABIAJqEOIBOwEAIAFBAWoiASADRw0A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CyQAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAAQQNxQZwLahExAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBA3FBmAtqETYACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBlAtqERkACyIAIAEgAiADIAQgBSAGIAcgCCAJIAogAEEBcUGSC2oRTwALHgAgASACIAMgBCAFIAYgByAIIABBA3FBjgtqEU4ACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBigtqETIACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQYgLahFNAAscACABIAIgAyAEIAUgBiAHIABBB3FBgAtqESoACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQf4KahEzAAscACABIAIgAyAEIAUgBiAHIABBA3FB+gpqESsACxoAIAEgAiADIAQgBSAGIABBD3FB6gpqERoACw0AIABB+ClqQQAQwAELHgAgASACIAMgBCAFIAYgByAIIABBAXFB6ApqEUwACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHmCmoRSwALGgAgASACIAMgBCAFIAYgAEEDcUHiCmoRLAALGAAgASACIAMgBCAFIABBD3FB0gpqES0ACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHQCmoRKAALGgAgASACIAMgBCAFIAYgAEEDcUHMCmoRKQALGAAgASACIAMgBCAFIABBA3FByApqEScACxYAIAEgAiADIAQgAEEfcUGoCmoRBgALIAAgASACIAMgBCAFIAYgByAIIAkgAEEBcUGmCmoRSgALHAAgASACIAMgBCAFIAYgByAAQQFxQaQKahFJAAscACABIAIgAyAEIAUgBiAHIABBAXFBogpqEUgACxoAIAEgAiADIAQgBSAGIABBA3FBngpqESMACxgAIAEgAiADIAQgBSAAQQNxQZoKahEPAAscACABIAIgAyAEIAUgBiAHIABBAXFBmApqEUcACxYAIAEgAiADIAQgAEEDcUGUCmoRNAALFQAgASACIAMgAEH/AHFBlAlqEQcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQZIJahEwAAsaACABIAIgAyAEIAUgBiAAQQFxQZAJahEmAAsaACABIAIgAyAEIAUgBiAAQQFxQY4JahEuAAsYACABIAIgAyAEIAUgAEEDcUGKCWoRLwALFgAgASACIAMgBCAAQQNxQYYJahEKAAseACABIAIgAyAEIAUgBiAHIAggAEEBcUGECWoRJAALGgAgASACIAMgBCAFIAYgAEEBcUGCCWoRNQALFAAgASACIAMgAEEPcUHyCGoRNwALFgAgASACIAMgBCAAQQNxQe4GahEOAAsUACABIAIgAyAAQQFxQewGahERAAscACABIAIgAyAEIAUgBiAHIABBAXFB6gZqEUYACxQAIAEgAiADIABBAXFB6AZqEUUACxQAIAEgAiADIABBAXFB3gRqERgACxoAIAEgAiADIAQgBSAGIABBA3FB2gRqEQ0ACxUAQZipBCgCAEE0aiAAQQJ0aigCAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBAXFBggRqEUQACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBB3FB+gNqERcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQ9xQeoDahETAAscACABIAIgAyAEIAUgBiAHIABBD3FB2gNqERQACxoAIAEgAiADIAQgBSAGIABBH3FBugNqERUACxgAIAEgAiADIAQgBSAAQQ9xQaoDahESAAsWACABIAIgAyAEIABBH3FBigNqEQkACxoAIAEgAiADIAQgBSAGIABBAXFBiANqEUMACxgAIAEgAiADIAQgBSAAQQFxQYYDahFCAAsWACABIAIgAyAEIABBAXFBhANqEUEACxwAIAEgAiADIAQgBSAGIAcgAEEBcUGCA2oRQAALGAAgASACIAMgBCAFIABBAXFBwAJqET8ACxYAIAEgAiADIAQgAEEBcUG+AmoRPgALHgAgASACIAMgBCAFIAYgByAIIABBAXFBvAJqET0ACxYAIAEgAiADIAQgAEEBcUG6AmoRPAALFAAgASACIAMgAEEDcUG2AmoRIgALGgAgASACIAMgBCAFIAYgAEEBcUG0AmoRFgALFgAgASACIAMgBCAAQQFxQbIBahElAAsUACABIAIgAyAAQQFxQbABahEMAAsaACABIAIgAyAEIAUgBiAAQQFxQawBahE4AAsUACABIAIgAyAAQQNxQcgAahE7AAsRACABIAIgAEEfcUEoahEIAAsPACABIABBA3FBJGoRHAALDQAgAEEfcUEEahEgAAsPACABIABBAXFBAmoROgALCgAgAEEBcREQAAvS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AiADIAQgBUEPcUHSCmoRLQAMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIAFBADoANCABQQA6ADUgACgCCCIAKAIAKAIUIQMgACABIAIgAkEBIAQgA0EPcUHqCmoRGgAgAQJ/AkAgASwANQR/IAEsADQNAUEBBUEACyEAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAA0CQQQMAwsLIAANAEEEDAELQQMLNgIsDAILCyADQQFGBEAgAUEBNgIgCwsLC0QBAX8gACABKAIIEIUBBEAgASACIAMgBBCFBQUgACgCCCIAKAIAKAIUIQYgACABIAIgAyAEIAUgBkEPcUHqCmoRGgALCxgAIAAgASgCCBCFAQRAIAEgAiADEIcFCwuPAQAgACABKAIIEIUBBEAgASACIAMQhgUFIAAgASgCABCFAQRAAkAgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASACNgIUIAEgASgCKEEBajYCKCABKAIkQQFGBEAgASgCGEECRgRAIAFBAToANgsLIAFBBDYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwsLGgAgACABKAIIEIUBBEAgASACIAMgBBCFBQsLyQEBA38jBCEEIwRBQGskBCAEIQMgACABEIUBBH9BAQUgAQR/IAFB4PQBEJQEIgEEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyABNgIAIAMgADYCCCADQX82AgwgA0EBNgIwIAEoAgAoAhwhACABIAMgAigCAEEBIABBH3FBqApqEQYAIAMoAhhBAUYEfyACIAMoAhA2AgBBAQVBAAsFQQALBUEACwshBSAEJAQgBQt4AQN/IwQhASMEQRBqJAQgASEAAn9BAEGMrgQoAgBB37femgFGDQAaQbMEESEAQYyuBEHft96aATYCAEEACwRAQZSKAyAAEMICBQJ/An9BAEGQrgQoAgAiACgCBEHOlZoSRw0AGiAAKAIACyECIAEkBCACCw8LQQALowICB38BfiMEIQIjBEEwaiQEIAJBGGohASACQRBqIQMgAiEEIAJBJGohBRDLCyIABEAgACgCACIABEAgACkDMCIHQoB+g0KA1qyZ9MiT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AgAhBCAAEIoCIAAoAiAQtgcgBAsQigILCyAAQdQyaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAwRAIAMQjRIgAxBBCyABQQFqIgEgAigCAEgNAAsLIAIQTyAAQeAyahBPIABB7DJqEE8gAEGUM2pBADYCACAAQfgyahBPIABBhDNqEE8gAEGgNWpBADYCACAAQZgzakEANgIAIABBnDNqQQA2AgAgAEHcM2pBADYCACAAQdgzakEANgIAIABB9DNqQQA2AgAgAEH4M2oQTyAAQYQ0ahBPIABBkDRqEE8gAEGcNGoQTyAAQag0ahBPIABBwDdqIQJBACEBA0AgAUEMbCACahBPIAFBAWoiAUECRw0ACyAAQdw3ahDdBCAAQYTYAGoQTyAAQZA6ahBPIABBnDpqEE8gAEGoOmoQTyAAQcDYAGoiAigCAEEASgRAQQAhAQNAIAIgARBVKAIAEPYHIAFBAWoiASACKAIASA0ACwsgAhBPIABBtNgAahBPIABB0NgAaiICKAIAIgFBzIECKAIARiABRXJFBEAgARDDAhogAkEANgIACyAAQdTYAGoQTyAAQQA6AAALCwsAIAAQngUgABBUC00BAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACQYz8ATYCACACIAE2AgggAhCvBSAAIAJBBGoQ5AMhAyACEJ4FIAIkBCADCwsAIAAQnwUgABBUC08BAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADQfT7ATYCACADIAE2AgggAxDGByAAIANBBGogAhCABiEEIAMQnwUgAyQEIAQLMwAgAEGYqQQoAgAgABsiABCxD0GYqQQoAgAgAEYEQEEAEIoCCyAABEAgABDkCSAAEEELC1QBAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQygEgACACIAMQTiIAKAIARhC5AiIBBEAgACACNgIACyABIQQgAxC0ASADJAQgBAtWAgJ/An0jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQcSABQQhqIgIgAEE8aiAAQUBrIAEQywcgAhA9IQQgAhAxIAEQMSABJAQgBAsHACABELgPC4kBAgJ/An0jBCEJIwRBMGokBEGwqQQoAgAiCkE8aiABEIgBIApBQGsg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QYAHaiIKEDogAEGwB2ohAyAAQYgHaiEBA0AgARA6IAFBCGoiASADRw0ACyAAQbwIaiEDIABBlAhqIQEDQCABEDogAUEIaiIBIANHDQALIABB+ClqEGggAEEAQYgqEGoaIAJDAACAv0MAAIC/EDIgBSACKQMANwIAIABDiYiIPDgCECAAQwAAoEA4AhQgAEHmhQI2AhggAEHwhQI2AhwgAEOamZk+OAIgIABDAADAQDgCJCAAQSxqIgFCfzcCACABQn83AgggAUJ/NwIQIAFCfzcCGCABQn83AiAgAUJ/NwIoIAFCfzcCMCABQn83AjggAUFAa0J/NwIAIAFCfzcCSCABQX82AlAgAEMAAIA+OAKAASAAQ83MTD04AoQBIABBADYCiAEgAEEANgKMASAAQwAAgD84ApABIABBADYCmAEgAEEAOgCUASACQwAAgD9DAACAPxAyIAYgAikDADcCACACQwAAAABDAAAAABAyIAggAikDACILNwIAIAcgCzcCACAAQQA6ALUBIABBAToAtgEgAEEBOgC3ASAAQQA6ALgBIABCADcCvAEgAEIANwLEASAAQQA2AswBIABBAzYC0AEgAEECNgLUASAAQQA2AtgBIABBAzYC3AEgAEEANgLgASACQ///f/9D//9//xAyIAkgAikDADcCACACQ///f/9D//9//xAyIAogAikDADcCACAAQwAAwEA4AihBACEBA0AgAEGACGogAUECdGpDAACAvzgCACAAQewHaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEFRw0AC0EAIQEDQCAAQdAYaiABQQJ0akMAAIC/OAIAIABB0AhqIAFBAnRqQwAAgL84AgAgAUEBaiIBQYAERw0AC0EAIQEDQCAAQdAoaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEVRw0ACyAEJAQLNAECfyMEIQQjBEEQaiQEIARBCGoiBSABIAIQwgogBCADEG8gACAFIAQQgQEgBBAxIAQkBAtCAQJ/IwQhBCMEQRBqJAQgBCADEDQgBEEEaiIDIAEgAiAEIABBA3FBhglqEQoAIAMQfSEFIAMQMSAEEDEgBCQEIAULKwEBfxDVByIBQZquBCABGyEBIABCADcCACAAQQA2AgggACABIAEQXBCTAQsxAQF/IwQhASMEQRBqJAQgASAAEJ8BIAEoAgAgASABLAAL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C0EASAR/IAAoAgAFIAALIAEQqwgLGAAgACwAC0EASAR/IAAoAgAFIAALEJMKCwkAIAAgARDiEAsqAQJ/An8jBCEBIwRBEGokBEHEvgJBBEHAywFBicsCQRJBFxACIAELJAQLCwAgACABIAIQ4BALCQAgACABEN8QCwsAIAAgASACEN4QCxgAIAAsAAtBAEgEfyAAKAIABSAACxCpAwsJACAAIAEQ3BALGAAgACwAC0EASAR/IAAoAgAFIAALEKsDCyoBAn8CfyMEIQEjBEEQaiQEQem9AkEFQdDLAUG7zAJBDUELEAIgAQskBAsNACAAIAEgAiADENsQCyoBAn8CfyMEIQEjBEEQaiQEQd69AkEFQfDLAUG7zAJBDEEKEAIgAQskBAsNACAAIAEgAiADENoQCxoAIAAsAAtBAEgEfyAAKAIABSAACyABEK8ICwcAIAAQ2RALKgECfwJ/IwQhASMEQRBqJARB6bwCQQRBkMwBQd3NAkECQQEQAiABCyQECwsAIAAgASACENcQCyoBAn8CfyMEIQEjBEEQaiQEQeG8AkEDQez4AUHjzQJBEUEdEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHZvAJBA0H4+AFB480CQRBBHBACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB0bwCQQNBhPkBQePNAkEPQRsQAiABCyQECxoAIAAsAAtBAEgEfyAAKAIABSAACyABELUICyoBAn8CfyMEIQEjBEEQaiQEQbO8AkEEQaDMAUGJywJBEUEVEAIgAQskBAscACAALAALQQBIBH8gACgCAAUgAAsgASACEM8FCwkAIAAgARDVEAsRACAAIAEgAiADIAQgBRDUEAsqAQJ/An8jBCEBIwRBEGokBEGPvAJBBkGwzAFB6M0CQRFBBhACIAELJAQLDwAgACABIAIgAyAEEM0QCw0AIAAgASACIAMQyhALKgECfwJ/IwQhASMEQRBqJARB9bsCQQVB0MwBQbvMAkELQQgQAiABCyQECw0AIAAgASACIAMQyBALCwAgACABIAIQxxALNQEBfyAALAALQQBIBEAgACgCACEACxA8IgIsAH8Ef0EABSACIAAQXiABQRpyIABBABDTAgsLBwAgABC9CAsYACAALAALQQBIBH8gACgCAAUgAAsQvggLKgECfwJ/IwQhASMEQRBqJARB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AAtBAEgEfyAAKAIABSAACyABELkCCyoBAn8CfyMEIQEjBEEQaiQEQc61AkEEQfDSAUGJywJBDkEJEAIgAQskBAsLACAAIAEgAhC1DwsJACAAIAEQsw8LKgECfwJ/IwQhASMEQRBqJARBubUCQQhBgNMBQYfRAkEEQQEQAiABCyQECxMAIAAgASACIAMgBCAFIAYQrw8LKgECfwJ/IwQhASMEQRBqJARBs7UCQQdBoNMBQZ/TAkEBQQQQAiABCyQECxEAIAAgASACIAMgBCAFEK0PCwkAIAAgARCsDwsaACAALAALQQBIBH8gACgCAAUgAAsgARCDCQsYACAALAALQQBIBH8gACgCAAUgAAsQxAQLCQAgACABEKkPC6cEAgF/AX4jBCEBIwRBEGokBCAAEDogAEEIahA6IABBEGoQOiAAQRhqEDogAEEgahA6IABBLGoQOiAAQcwAahBmIABB3ABqEGYgAEGAAWoQOiAAQYgBahBoIABBADYCsAEgAEEANgKsASAAQQA2ArQBIABBuAFqEGggAEHEAWoQaCAAQQA2AtQBIABBADYC0AEgAEEANgLYASAAQegBahDnAiAAQewBahDnAiAAQfABahDnAiABQwAAAABDAAAAABAyIAAgASkDACICNwIYIAAgAjcCECAAIAI3AgggACACNwIAIAFDAAAAAEMAAAAAEDIgACABKQMAIgI3AiwgACACNwIgIABDAAAAADgCNCAAQwAAAAA4AiggAEMAAIC/OAI4IABCADcCPCAAQgA3AkQgARBmIAAgASkCADcCXCAAIAEpAgg3AmQgACABKQIANwJMIAAgASkCCDcCVCAAQQA2AnggAEEANgJ0IABBADYCbCAAQQE2AnAgAEEAOgB8IABBADoAfSAAQQA6AH4gAUMAAAAAQwAAAAAQMiAAIAEpAwA3AoABIABBADYClAEgAEEBNgKcASAAQQE2ApgBIABDAAAAADgCpAEgAEEANgKgASAAQwAAgL84AqgBIABCADcC3AEgAEEANgLkASABEOcCIAAgASgCADYC6AEgARDnAiAAIAEoAgA2AuwBIAEQ5wIgACABKAIANgLwASAAQQA2AvQBIAEkBAsaACAALAALQQBIBH8gACgCAAUgAAtBABC5AQsHACAAEKAPC9AHAgV/AX4jBCEFIwRBEGokBCAFIQMgAEEMahA6IABBFGoQOiAAQRxqEDogAEEkahA6IABBLGoQOiAAQTRqEDogAEE8ahA6IABB2ABqEDogAEHgAGoQOiAAQegAahA6IABB8ABqEDogAEG4AWoQOiAAQcABahA6IABByAFqEMoSIABBwANqIgYiBEEANgIEIARBADYCACAEQQA2AgggAEHMA2oQZiAAQdwDahBmIABB7ANqEGYgAEH8A2oQZiAAQYwEahBmIABBpARqEN4DIABB1ARqEGggAEEANgLkBCAAQQA2AuAEIABBADYC6AQgAEH4BGoiByABQbwxahD4ByAAQagGaiEEIABBiAZqIQEDQCABEGYgAUEQaiIBIARHDQALIAAgAhDaBjYCACAAQQRqIgEgAkEAQQAQuwE2AgAgBiABEHggAEEANgIIIANDAAAAAEMAAAAAEDIgACADKQMANwIMIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AhwgACAINwIUIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AjQgACAINwIsIANDAAAAAEMAAAAAEDIgACADKQMANwI8IABDAAAAADgCRCAAQwAAAAA4AkggACACEFxBAWo2AkwgACAAQf6FAhBeNgJQIABBADYCVCADQwAAAABDAAAAABAyIAAgAykDADcCWCADQ///f39D//9/fxAyIAAgAykDADcCYCADQwAAAD9DAAAAPxAyIAAgAykDADcCaCADQwAAAABDAAAAABAyIAAgAykDADcCcCAAQQA7AYQBIABCADcCeCAAQQA7AYABIABBADoAggEgAEF/OwGGASAAQX87AYgBIABBADYCjAEgAEF/NgKUASAAQX82ApABIABBADoAmAEgAEEANgKcASAAQX82AqABIABBADYCqAEgAEEANgKkASAAQQ82ArQBIABBDzYCsAEgAEEPNgKsASADQ///f39D//9/fxAyIAAgAykDACIINwLAASAAIAg3ArgBIABBfzYCnAQgAEMAAAAAOAKgBCAAQwAAgD84AuwEIABBfzYC8AQgACAHNgL0BCAAIAAoAgA2AqQFIABBADYChAYgAEEANgKABiAAQgA3AuwFIABCADcC9AUgAxBmIAAgAykCADcCmAYgACADKQIINwKgBiAAIAMpAgA3AogGIAAgAykCCDcCkAYgAEEANgL8BSAAQX82AqwGIABBfzYCqAYgAEH/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ICAtICAgICAgICAgIFguWCAgICAgICAgICAtWC4uLi4uWCAgICAgICAgICAtICAgICAgICAgIFguLi4uLlgtICAgIFguLlggICAgICAgICAtLS0gICAgICAgICAtWFhYLlhYWC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtWC4uLi5YICAgICAgICAgICAtICAgICAgICAgICBYLi4uLlgtICAgIFguLlggICAgICAgICBYICAgICAgICAgICAtICBYLlggIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtWC4uLlggICAgICAgICAgICAtICAgICAgICAgICAgWC4uLlgtICAgIFguLlggICAgICAgICBYWCAgICAgICAgICAtICBYLlggIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtWC4uWC5YICAgICAgICAgICAtICAgICAgICAgICBYLlguLlgtICAgIFguLlggICAgICAgICBYLlggICAgICAgICAtICBYLlggIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtWC5YIFguWCAgICAgICAgICAtICAgICAgICAgIFguWCBYLlgtICAgIFguLlhYWCAgICAgICBYLi5YICAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWFggICBYLlggICAgICAgICAtICAgICAgICAgWC5YICAgWFgtICAgIFguLlguLlhYWCAgICBYLi4uWCAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgWC5YICAgICAgICAtICAgICAgICBYLlggICAgICAtICAgIFguLlguLlguLlhYICBYLi4uLlggICAgICAtICBYLlggIC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgIFguWCAgICAgICAtICAgICAgIFguWCAgICAgICAtICAgIFguLlguLlguLlguWCBYLi4uLi5YICAgICAtICBYLlggIC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICBYLlggICAgICAtICAgICAgWC5YICAgICAgICAtWFhYIFguLlguLlguLlguLlhYLi4uLi4uWCAgICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgWC5YICAgWFgtWFggICBYLlggICAgICAgICAtWC4uWFguLi4uLi4uLlguLlhYLi4uLi4uLlggICAtICBYLlggIC0gICBYLlggICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgIFguWCBYLlgtWC5YIFguWCAgICAgICAgICAtWC4uLlguLi4uLi4uLi4uLlhYLi4uLi4uLi5YICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgICBYLlguLlgtWC4uWC5YICAgICAgICAgICAtIFguLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uWCAtWFhYLlhYWC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICAgICAgWC4uLlgtWC4uLlggICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uLlgtWC4uLi4uWC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgICAgICBYLi4uLlgtWC4uLi5YICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uWFhYWFgtWFhYWFhYWC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgICAgIFguLi4uLlgtWC4uLi4uWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uLlhYLi4uWC4uWCAgICAtLS0tLS0tLS0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtWFhYWFhYWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uWCBYLi5YIFguLlggICAtICAgICAgIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tICAgIFguLi4uLi4uLi4uWCBYLlggIFguLlggICAtICAgICAgIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAtICAgIFguLi4uLi4uLi4uWCBYWCAgICBYLi5YICAtICAgICAgIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICBYLi5YICAgICAgICAgIC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICAgWFggICAgICAgICAgIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAtICAgICBYWFhYWFhYWFhYICAtLS0tLS0tLS0tLS0gICAgICAgIC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0gICAgICAgICAgICAgICAgICAgIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAQaAiC8xdN10pIyMjIyMjI2hWMHFzJy8jIyNbKSwjIy9sOiQjUTY+IyM1W240Mj5jLVRIYC0+PiMvZT4xMU5OVj1CdigqOi5GP3V1IyhnUlUubzBYR0hgJHZoTEcxaHh0OT9XYCMsNUxzQ3AjLWk+LnIkPCQ2cEQ+TGInOzlDcmM2dGdYbUtWZVUyY0Q0RW8zUi8yKj5dYihNQzskalBmWS47aF5gSVdNOTxMaDJUbFMrZi1zJG82UTxCV0hgWWlVLnhmTHEkTjskMGlSL0dYOlUoamNXMnAvVypxPy1xbW5VQ0k7akhTQWlGV00uUiprVUBDPUdIP2E5d3A4ZiRlLi00XlFnMSlRLUdMKGxmKHIvN0dyUmd3ViVNUz1DI2A4TkQ+UW8jdCdYIyh2I1k5dzAjMUQkQ0lmO1cnI3BXVVBYT3V4WHVVKEg5TSgxPHEtVUUzMSNeLVYnOElSVW83UWYuL0w+PUtlJCQnNUYlKV0wXiMwWEBVLmE8cjpRTHRGc0xjTDYjI2xPaikjLlk1PC1SJktnTHdxSmZMZ04mO1E/Z0leI0RZMnVMaUBeck1sOXQ9Y1dxNiMjd2VnPiRGQmpWUVRTRGdFS25JUzdFTTk+Wlk5dzAjTDs+PiNNeCY0TXZ0Ly9MW01rQSNXQGxLLk4nWzAjN1JMXyYjdytGJUh0RzlNI1hMYE4mLixHTTRQZzstPG5MRU5odng+LVZzTS5NMHJKZkxIMmVUTWAqb0pNSFJDYE5rZmltTTJKLFctalhTOilyMHdLI0BGZ2UkVT5gdydON0cjJCNmQiMkRV4kIzo5OmhrK2VPZS0tNngpRjcqRSU/NzYlXkdNSGVQVy1aNWwnJkdpRiMkOTU2OnJTP2RBI2ZpSzopWXIrYCYjMGpAJ0RiRyYjXiRQRy5MbCtETmE8WENNS0VWKk4pTE4vTipiPSVRNnBpYS1YZzhJJDxNUiYsVmRKZSQ8KDdHO0NrbCcmaEY7OyQ8Xz1YKGIuUlMlJSkjIyNNUEJ1dUUxVjp2JmNYJiMybSMoJmNWXWBrOU9oTE1ibiVzJEcyLEIkQmZEM1gqc3A1I2wsJFIjXXhfWDF4S1glYjVVKltyNWlNZlVvOVVgTjk5aEcpdG0rL1VzOXBHKVhQdWA8MHMtKVdUdChnQ1J4SWcoJTZzZmg9a3RNS24zaik8NjxiNVNrXy8wKF5dQWFOIyhwL0w+JlZaPjFpJWgxUzl1NW9AWWFhVyRlK2I8VFdGbi9aOk9oKEN4MiRsTkVvTl5lKSNDRllAQEk7Qk9RKnNSd1p0WnhSY1U3dVc2Q1hvdzBpKD8kUVtjak9kW1A0ZCldPlJPUE9weFRPN1N0d2kxOjppQjFxKUNfPWRWMjZKOzIsXTdvcCRddVFyQF9WNyRxXiVsUXd0dUhZXT1EWCxuM0wjMFBIRE80Zjk+ZENATz5IQnVLUHBQKkUsTitiM0wjbHBSL01yVEVILklBUWsuYT5EWy5lO21jLnhdSXAuUEheJy9hcVVPLyQxV3hMb1cwW2lMQTxRVDs1SEtEK0BxUSdOUSgzX1BMaEU0OFIucUFQU3dRMC9XSz9aLFt4Py1KO2pRVFdBMFhAS0ooX1k4Ti06L003NDovLVpwS3JVc3M/ZCNkWnFdREFia1UqSnFrTCtud1hAQDQ3YDU+dz00aCg5LmBHQ1JVeEhQZVJgNU1qb2woZFVXeFphKD5TVHJQa3JKaVd4YDVVN0YjLmcqanJvaEdnYGNnOmxTVHZFWS9FVl83SDRROVtaJWNudjtKUVlaNXEubDdaZWFzOkhPSVpPQj9HPE5hbGQkcXNdQF1MPEo3YlIqPmd2Ols3TUkyaykuJzIoJDVGTlAmRVEoLClVXVddK2ZoMTgudnNhaTAwKTtEM0A0a3U1UD9EUDhhSnQrO3FVTV09K2InOEA7bVZpQkt4MERFWy1hdUdsODpQSiZEaitNNk9DXU9eKCgjI11gMGkpZHJUOy03WGA9LUgzW2lnVW5QRy1OWmxvLiNrQGgjPU9yayRtPmE+JC0/VG0kVVYoPyNQNllZIycvIyMjeGU3cS43M3JJMypwUC8kMT5zOSlXLEpyTTdTTl0nLzRDI3YkVWAwI1YuWzA+eFFzSCRmRW1QTWdZMnU3S2goRyVzaUlmTFNvUytNSzJlVE0kPTUsTThwYEEuO19SJSN1W0sjJHg0QUc4LmtLL0hTQj09LSdJZS9RVHRHPy0uKl5OLTRCL1pNXzNZbFFDNyhwN3EpJl0oYDZfYykkLypKTChMLV4oXSR3SU1gZFB0T2RHQSxVMzp3Mk0tMDxxLV1MXz9eKTF2dycuLE1Sc3FWci5MO2FOJiMvRWdKKVBCY1stZj4rV29tWDJ1N2xxTTJpRXVtTVRjc0Y/LWFUPVotOTdVRW5YZ2xFbjFLLWJuRU9gZ3VGdChjJT07QW1fUXNAakxvb0kmTlg7XTAjajQjRjE0O2dsOC1HUXBnd2hycTgnPWxfZi1iNDknVU9xa0x1Ny0jI29EWTJMKHRlK01jaCZnTFl0SixNRXRKZkxoJ3gnTT0kQ1MtWlolUF04Ylo+I1M/WVkjJVEmcSczXkZ3Jj9EKVVETnJvY00zQTc2Ly9vTD8jaDdnbDg1W3FXL05ET2slMTZpajsrOjFhJ2lOSWRiLW91OC5QKncsdjUjRUkkVFdTPlBvdC1SKkgnLVNFcEE6ZylmK08kJSVga0EjRz04Uk1tRzEmT2A+dG84YkNdVCYkLG4uTG9PPjI5c3AzZHQtNTJVJVZNI3E3J0RIcGcrI1o5JUhbSzxMJWEyRS1ncldWTTNAMj0tazIydExdNCQjIzZXZSc4VUpDS0VbZF89JXdJOyc2WC1Hc0xYNGpeU2dKJCMjUip3LHZQM3dLI2lpVyYjKmheRCZSP2pwNysvdSYjKEFQIyNYVThjJGZTWVctSjk1Xy1EcFtnOXdjTyYjTS1oMU9jSmxjLSp2cHcweFVYJiNPUUZLTlhAUUknSW9QcDduYixRVS8vTVEmWkRrS1ApWDxXU1ZMKDY4dVZsJiNjJ1swIyhzMVgmeG0kWSVCNypLOmVEQTMyM2o5OThHWGJBI3B3TXMtamdEJDlRSVNCLUFfKGFONHhvRk1eQEM1OEQwK1ErcTNuMCMzVTFJbkRqRjY4Mi1Tak1YSkspKGgkaHh1YV9LXXVsOTIlJ0JPVSYjQlJSaC1zbGc4S0RscjolTDcxS2E6LkE7JVlVTGpEUG1MPExZczhpI1h3Sk9ZYUtQS2MxaDonOUtlLGcpYiksNzg9STM5Qjt4aVkkYmdHdy0mLlppOUluWER1WWElRypmMkJxN21uOV4jcDF2diUjKFdpLTsvWjVobzsjMjo7JWQmI3g5djY4QzVnP250WDBYKXBUYDslcEIzcTdtZ0dOKTMlKFA4blRkNUw3R2VBLUdMQCslSjN1MjooWWY+ZXRgZTspZiNLbTgmK0RDJEk0Nj4jS3JdXXUtWz05OXR0czEucWIjcTcyZzFXSk84MXErZU4nMDMnZU0+JjFYeFktY2FFbk9qJTJuOCkpLD9JTFI1Xi5JYm48LVgtTXE3W2E4MkxxOkYmI2NlK1M5d3NDSyp4YDU2OUU4ZXcnSGVdaDpzSVsyTE0kW2d1a2EzWlJkNjp0JUlHOjskJVlpSjpOcT0/ZUF3Oy86bm5EcTAoQ1ljTXBHKXFMTjQkIyMmSjxqJFVwSzxRNGExXU11cFdeLXNqXyQlW0hLJSdGIyMjI1FSWko6OlkzRUdsNCdAJUZraUFPZyNwWyMjT2BndWtUZkJIYWdMPExIdyVxJk9WMCMjRj02LzpjaEltMEBlQ1A4WF06a0ZJJWhsOGhnT0BSY0JoUy1AUWIkJSttPWhQRExnKiVLOGxuKHdjZjMvJ0RXLSQubFI/bltuQ0gtZVhPT05USmxoOi5SWUYlMydwNnNxOlVJTUE5NDUmXkhGUzg3QCRFUDJpRzwtbENPJCVjYHVLR0QzckMkeDBCTDhhRm4tLWBrZSUjSE1QJ3ZoMS9SJk9fSjkndW0sLjx0eFtAJXdzSmsmYlVUMmAwdU12N2dnI3FwL2lqLkw1NidobDsuczVDVXJ4ak9NNy0jIy5sK0F1J0EmTzotVDcyTF1QYCY9O2N0cCdYU2NYKnJVLj4tWFR0LCVPVlU0KVMxK1ItI2RnMC9Obj9LdTFeMGYkQipQOlJvd3dtLWAwUEtqWURETSczXWQzOVZaSEVsNCwuaiddUGstTS5oXiY6MEZBQ20kbWFxLSZzZ3cwdDcvNiheeHRrJUx1SDg4RmotZWttPkdBI18+NTY4eDYoT0ZSbC1JWnBgJmIsX1AnJE08Sm5xNzlWc0pXL21XUypQVWlxNzY7XS9OTV8+aExieGZjJG1qYCxPOyYlVzJtYFpoOi8pVWV0dzphSiVdSzloOlRjRl11Xy1TajksVkszTS4qJyYwRFtDYV1KOWdwOCxrQVddJSg/QSVSJGY8LT5adHMnXmtuPS1eQGM0JS1wWTZxSSVKJTFJR3hmTFU5Q1A4Y2JQbFh2KTtDPWIpLDwybU92UDh1cCxVVmYzODM5YWNBV0FXLVc/I2FvL14jJUtZbzhmUlVMTmQyLj4lbV1VSzpuJXIkJ3N3XUo7NXBBb09fIzJtTzNuLCc9SDUoZXRIZypgK1JMZ3Y+PTRVOGd1RCRJJUQ6Vz4tcjVWKiVqKlc6S3Zlai5McCQ8TS1TR1onOitRX2srdXZPU0xpRW8oPGFEL0s8Q0NjYCdMeD4nPzsrK08nPigpakxSLV51NjhQSG04WkZXZStlajhoOjlyNkwqMC8vYyZpSCZSOHBSYkEjS2ptJXVwVjFnOmFfI1VyN0Z1QSModFJoIy5ZNUsrQD8zPC04bTAkUEVuO0o6cmg2P0k2dUc8LWB3TVUnaXJjcDBMYUVfT3RsTWImMSM2VC4jRkRLdSMxTHcldSUrR00rWCdlP1lMZmpNW1ZPME1idUZwNzs+USYjV0lvKTBARiVxN2MjNFhBWE4tVSZWQjxIRkYqcUwoJC9WLDsoa1haZWpXT2A8WzU/P2V3WSgqOT0ld0RjOyx1PCc5dDNXLShIMXRoMytHXXVjUV1rTHM3ZGYoJC8qSkxdQCp0N0J1X0czXzdtcDc8aWFRak9ALmtMZzt4M0IwbHFwN0hmLF5aZTctIyNAL2M1OE1vKDM7a25wMCUpQTc/LVcrZUknbzgpYjxuS253J0hvOEM9WT5wcUI+MGllJmpoWls/aUxSQEBfQXZBLWlRQyg9a3NSWlJWcDdgLj0rTnBCQyVyaCYzXVI6OFhEbUU1XlY4Tyh4PDxhRy8xTiQjRlgkMFY1WTZ4J2FFckkzSSQ3eCVFYHY8LUJZLCklLT9Qc2YqbD8lQzMubU0oPS9NMDpKeEcnPzdXaEglbydhPC04MGcwTkJ4b08oR0g8ZE1dbi4rJXFAakg/Zi5Vc0oyR2dzJjQ8LWU0NyZLbCtmLy85QGBiKz8uVGVOXyZCOFNzP3Y7XlRyaztmI1l2SmtsJnckXT4tK2s/Jyg8Uzo2OHRxKldvRGZadSc7bU0/OFhbbWE4VyUqYC09O0QuKG5jNy87KWc6VDE9XkokJkJSVigtbFRtTkI2eHFCW0AwKm8uZXJNKjxTV0ZddTI9c3QtKig2dj5eXShILmFSRVpTaSwjMTpbSVhhWkZPbTwtdWkjcVVxMiQjI1JpO3U3NU9LIyhSdGFXLUstRmBTK2NGXXVOYC1LTVElclAvWHJpLkxSY0IjIz1ZTDNCZ00vM01EP0BmJjEnQlctKUp1PEwyNWdsOHVoVm0xaEwkIyMqOCMjIydBMy9Ma0tXKyhecldYPzVXXzhnKWEobSZLOFA+I2JtbVdDTWtrJiNUUmBDLDVkPmcpRjt0LDQ6QF9sOEcvNWg0dlVkJSYlOTUwOlZYRCdRZFdvWS1GJEJ0VXdtZmUkWXFMJzgoUFdYKFA/XkBQbzMkIyNgTVNzP0RXQlovUz4rNCU+ZlgsVld2L3cnS0RgTFA1SWJIO3JUVj5uM2NFSzhVI2JYXWwtL1YrXmxqMzt2bE1iJls1WVE4I3Bla1g5SlAzWFVDNzJMLCw/K05pJmNvN0Fwbk8qNU5LLCgoVy1pOiQsa3AnVURBTyhHMFNxN01WakpzYkl1KSdaLCpbPmJyNWZYXjpGUEFXci1tMktnTDxMVU4wOThrVEYmI2x2bzU4PS92akRvOy47KUthKmhMUiMvaz1yS2J4dVZgPlFfbk42Jzh1VEcmIzFUNWcpdUx2Ojg3M1VwVExnSCsjRmdwSCdfbzE3ODBQaDhLbXhRSjgjSDcyTDRANzY4QFRtJlFoNENCLzVPdm1BJixRJlFiVW9pJGFfJTNNMDFIKTR4N0leJktRVmd0Rm5WKztbUGM+W200ay8vLF0xPyNgVllbSnIqMyYmc2xSZkxpVlpKOl0/PUszU3c9WyQ9dVJCPzN4azQ4QGFlZzxaJzwkIzRIKTYsPmUwalQ2J04jKHElLk89PzJTXXUqKG08LVY4SicoMSlHXVs2OGhXJDUncVtHQyY1amBURT9tJ2VzRkdOUk0paixmZlo/LXF4ODstPmc0dCo6Q0lQL1tRYXA3LzknIygxc2FvN3ctLnFOVWRrSil0Q0YmI0JeO3hHdm4ycjlGRVBGRkZjTEAuaUZOa1R2ZSRtJSNRdlFTOFVAKTJaKzNLOkFLTTVpc1o4OCtkS1EpVzY+SiVDTDxLRT5gLmQqKEJgLW44RDlvSzxVcF1jJFgkKCwpTThadDcvW3Jka3FUZ2wtMGN1R012Jz8+LVhWMXFbJy01aydjQVo2OWU7RF8/JFpQUCZzXis3XSkkKiQjQFFZaTksNVAmIzlyKyQlQ0U9Njg+SzhyMD1kU0MlJShAcDcubTdqaWxRMDInMC1WV0FnPGEvJyczdS49NEwkWSk2ay9LOl9bMz0manZMPEwwQy8yJ3Y6XjstRElCVyxCNEU2ODprWjslPzgoUThCSD1rTzY1Qlc/eFNHJiNAdVUsRFMqLD8uKyhvKCMxdkNTOCNDSEY+VGxHVydiKVRxN1ZUOXFeKl4kJC46Jk5AQCQmKVdIdFBtKjVfck8wJmUlSyYjLTMwaihFNCMnWmIuby8oVHBtJD5LJ2ZAW1B2RmwsaGZJTlROVTZ1JzBwYW83JVhVcDldNS4+JWhgOF89VllieHVlbC5OVFNzSmZMYWNGdTNCJ2xRU3UvbTYtT3FlbThUK29FLS0kMGEva111ajlFd3NHPiV2ZVIqaHZeQkZwUWo6SycjU0osc0ItJyNdKGouTGc5MnJUdy0qbiVALzszOXJySkYsbCNxViVPcnRCZUM2Lyw7cUIzZWJOV1s/LEhxajJMLjFOUCZHalVSPTFEOFFhUzNVcCZAKjl3UD8rbG83Yj9AJSdrNGBwMFokMjIlSzMraUNaaj9YSk40Tm0mK1lGXXVALVckVSVWRVEvLCw+PiMpRDxoI2ApaDA6PFE2OTA5dWErJlZVJW4yOmNHM0ZKLSVAQmotRGdMcmBIdyZIQUtqS2pzZUs8L3hLVCopQixOOVgzXWtyYzEydCdwZ1RWKEx2LXRMW3hnXyU9TV9xN2FeeD83VWJkPiMlOGNZI1laPz0sYFdkeHUvYWUmI3c2KVI4OXRJIzZAcycoNkJmN2EmP1M9XlpJX2tTJmFpYCY9dEU3MkxfRCw7XlIpN1skczxFaCNjJilxLk1YSSUjdjlST2E1RlpPJXNGN3E3TndiJiNwdFVKOmFxSmUkU2w2OCUuRCMjI0VDPjw/LWFGJiNSTlF2Pm84bEtOJTUvJCh2ZGZxNytlYkEjdTFwXW92VUtXJlklcV0nPiQxQC1beGZuJDdaVHA3bU0sRyxLbzdhJkd1JUdbUk14SnNbME1NJXdjaS5MRkRLKSg8Y2BROE4pakVJRiorP1AyYThnJSkkcV1vMmFIOEMmPFNpYkMvcSwoZTp2Oy1iIzZbJE50RFo4NEplMktOdkIjJFA1P3RRM250KDBkPWouTFFmLi9MbDMzKyg7cTNMLXc9OGRYJCNXRiZ1SUpALWJmST4lOl9pMkI1Q3NSOCY5WiYjPW1QRW5tMGZgPCZjKVFMNXVKIyV1JWxKaitELXI7Qm9GJiM0RG9TOTdoNWcpRSNvOiZTNHdlREYsOV5Ib2VgaCpMK19hKk5yTFctMXBHXyYyVWRCODZlJUIvOj0+KU40eGVXLip3ZnQtOyQnNTgtRVNxcjxiP1VJKF8lQFtQNDY+I1VgJzZBUV1tJjYvYFo+I1M/WVkjVmM7cjdVMiYzMjZkPXcmSCMjIyM/VFpgKjQ/Ji5NSz9MUDhWeGc+JFtRWGMlUUp2OTIuKERiKkIpZ2IqQk05ZE0qaEpNQW8qYyYjYjB2PVBqZXJdJGdHJkpYRGYtPidTdHZVNzUwNWw5JEFGdmdZUkleJjxeYjY4P2ojcTlRWDRTTSdSTyMmc0wxSU0uckpmTFVBajIyMV1kIyNEVz1tODN1NTsnYll4LCpTbDBoTChXOzskZG9CJk8vVFE6KFpeeEJkTGpMPExuaTsnJ1guYCQjOCsxR0Q6ayRZVVdzYm44b2doNnJ4WjJaOV0lbmQrPlYjKjhVXzcyTGgrMlE4Q2owaTo2aHAmJEMvOnAoSEs+VDhZW2dIUTRgNCknJEFiKE5vZiVWJzhoTCYjPE5FZHRnKG4nPVMxQShRMS9JJjQoWyVkTWAsSXUnMTpfaEw+U2ZEMDcmNkQ8ZnA4ZEhNNy9nK3RsUE45SipyS2FQY3QmPyd1QkNlbV5qbiU5X0spPCxDNUszcz01ZyZHbUpiKltTWXE3SztUUkxHQ3NNLSQkO1MlOllAcjdBSzBwcHJwTDxMcmgscTdlLyVLV0s6NTBJXittJ3ZpYDM/JVpwKzwtZCskTC1TdjpALm8xOW4kczAmMzk7a247UyVCU3EqJDNXb0pTQ0x3ZVZbYVonTVFJak88NztYLVg7JitkTUx2dSNeVXNHRUM5V0VjW1god0k3IzIuKEYwalYqZVpmPC1RdjNKLWMrSjVBbHJCIyRwKEg2OEx2RUEncTNuMCNtLFtgKjhGdClGY1lnRXVkXUNXZm02OCwoYUxBJEBFRlRnTFhvQnEvVVBscDc6ZFsvO3JfaXg9OlRGYFM1SC1iPExJJkhZKEs9aCMpXUxrJEsxNGxWZm06eCRIPDNeUWw8TWAkT2hhcEJua3VwJ0QjTCRQYl9gTipnXTJlO1gvRHRnLGJzaiZLIzJbLTppWXInX3dnSClOVUlSOGExbiNTP1llaidoOF41OFViWmQrXkZLRCpUQDs2QTdhUUNbSzhkLSh2NkdJJHg6VDwmJ0dwNVVmPkBNLipKOjskLXJ2MjknTV04cU12LXRMcCwnODg2aWFDPUhiKllKb0tKLChqJUs9SGBLLnY5SGdncUJJaVp1J1F2QlQuIz0pMHVrcnVWJi4pMz0oXjFgbypQajQ8LTxhTigoXjcoJyNaMHdLIzVHWEA3dV1bYCpTXjQzOTMzQTRybF1bYCpPNENnTEVsXXYkMVEzQWVGMzdkYlhrLC4pdmojeCdkYDtxZ2JRUiVGVywyKD9MTz1zJVNjNjglTlAnIyNBb3RsOHg9QkUjajFVRChbMyRNKF1VSTJMWDNScEtOQDsvI2YnZi8mX210JkYpWGRGPDl0NClRYS4qa1RMd1EnKFRUQjkueEgnPiNNSitnTHE5LSMjQEh1WlBOMF11Omg3LlQuLkc6OyQvVXNqKFQ3YFE4dFQ3MkxuWWw8LXF4ODstSFY3US0mWGR4JTFhLGhDPTB1K0hsc1Y+bnVJUUwtNTxOPylOQlMpUU4qX0ksPyYpMidJTSVMM0kpWCgoZS9kbDImOCc8TTpeI00qUStbVC5YcmkuTFlTM3YlZkZgNjhoO2ItWFsvRW4nQ1IucTdFKXAnL2tsZTJITSx1O14lT0tDLU4rTGwlRjlDRjxOZideI3QyTCw7MjdXOjBPQDYjI1U2Vzc6JHJKZkxXSGokIyl3b3FCZWZJWi5QSzxiKnQ3ZWQ7cCpfbTs0RXhLI2hAJl0+Xz5Aa1hRdE1hY2ZELm0tVkFiODtJUmVNMyR3ZjAnJ2hyYSpzbzU2OCdJcCZ2UnM4NDknTVJZU3AlOnQ6aDVxU2d3cEVyJEI+USw7cyhDIyQpYHN2UXVGJCMjLUQsIyMsZzY4QDJbVDsuWFNkTjlRZSlycHQuX0stIzV3RilzUCcjI3AjQzBjJS1HYiVoZCs8LWonQWkqeCYmSE1rVF1DJ09TbCMjNVJHW0pYYUhOO2QndUEjeC5fVTsuYFBVQChaM2R0NHIxNTJAOnYsJ1IuU2ondyMwPC07a1BJKUZmSiYjQVlKJiMvLyk+LWs9bT0qWG5LJD49KTcyTF0wSSU+Lkc2OTBhOiQjIzwsKTs/OzcyIz94OStkO15WJzk7allAOyliciNxXllRcHg6WCNUZSRaXic9LT1iR2hMZjpENiZiTndaOS1aRCNuXjlIaExNcjVHOyddZCY2J3dZbVRGbUw8TEQpRl4lW3RDJzg7KzlFI0MkZyUjNVk+cTl3ST5QKDltSVs+a0MtZWtMQy9SJkNIK3MnQjtLLU02JEVCJWlzMDA6K0E0Wzd4a3MuTHJOazAmRSl3SUxZRkAyTCcwTmIkK3B2PCgyLjc2OC9GclkmaCReM2kmQCtHJUpUJzwtLHZgMztfKUk5TV5BRV1DTj9DbDJBWmcrJTRpVHBUMzxuLSYlSCViPEZEajJNPGhIPSZFaDwyTGVuJGIqYVRYPS04UXhOKWsxMUlNMWNeaiU5czxMPE5GU28pQj8rPC0oR3hzRixeLUVoQCQ0ZFhoTiQrI3J4SzgnamUnRDdrYGU7KTJwWXdQQSdfcDkmQF4xOG1sMV5bQGc0dCpbSk9hKls9UXA3KHFKX29PTF4oJzdmQiZIcS06c2Ysc05qOHhxXj4kVTRPXUdLeCdtOSliQHA3WXN2SzN3XllSLUNkUSo6SXI8KCR1JikjKCY/TDlSZzNIKTRmaUVwXmlJOU84S25UaixdSD9EKnI3J007UHdaOUswRV5rJi1jcEk7LnAvNl92d29GTVY8LT4jJVhpLkx4Vm5yVSg0JjgvUCs6aExTS2okI1UlXTQ5dCdJOnJnTWknRkxAYTowWS11QVszOScsKHZibWEqaFUlPC1TUkZgVHQ6NTQyUl9WViRwQFtwOERWW0EsPzE4MzlGV2RGPFRkZEY8OUFoLTYmOXRXb0RsaF0mMVNwR01xPlRpMU8qSCYjKEFMOFtfUCUuTT52Xi0pKXFPVCpGNUNxMGBZZSUrJEI2aTo3QDBJWDxOK1QrME1sTUJQUSpWaj5Tc0Q8VTRKSFk4a0QyKTJmVS9NIyRlLilUNCxfPThoTGltWyYpOz9Va0snLXg/Jyg6c2lJZkw8JHBGTWBpPD8lVyhtR0RITSU+aVdQLCMjUGAlL0w8ZVhpOkBaOUMuN289QChwWGRBTy9OTFE4bFBsK0hQT1FhOHdEOD1eR2xQYThUS0kxQ2poc0NUU0xKTScvV2w+LVMocXclc2YvQCUjQjY7L1U3S111WmJpXk9jXjJuPGJoUG1Va013PiV0PCknbUVWRScnbmBXbkpyYSReVEt2WDVCPjtfYVNFSycsKGh3YTA6aTRHPy5CY2kuKFhbP2IqKCQsPS1uPC5RJWAoWD0/K0BBbSpKczAmPTNiaDhLXW1MPExvTnMnNiwnODVgMD90LydfVTU5QF1kZEY8I0xkRjxlV2RGPE91Ti80NXJZPC1MQCYjK2ZtPjY5PUxiLE9jWlYvKTtUVG04Vkk7PyVPdEo8KGI0bXE3TTY6dT9LUmRGPGdSQDJMPUZOVS08YlsoOWMvTUwzbTtaWyRvRjNnKUdBV3FwQVJjPTxST3U3Y0w1bDstW0FdJS8rZnNkO2wjU2FmVC9mKlddMD1PJyQoVGI8WykqQGU3NzVSLTpZb2IlZyo+bCo6eFA/WWIuNSkld19JPzd1azVKQytGUyhtI2knay4nYTBpKTk8N2InZnMnNTlocSQqNVVodiMjcGleOCtoSUVCRmBudm9gOydsMC5eUzE8LXdVSzIvQ29oNThLS2hMak09U08qcmZPYCtxQ2BXLU9uLj1BSjU2Pj5pMkAyTEg2QTomNXFgPzlJM0BAJzA0JnAyL0xWYSpULTQ8LWkzO005VXZaZCtONz5iKmVJd2c6Q0MpYzw+bk8mIzxJR2U7X18udGhqWmw8JXcoV2syeG1wNFFASSNJOSxERl11Ny1QPS4tXzpZSl1hU0BWPzYqQygpZE9wNzpXTCxiJjNSZy8uY21NOSZyXj4kKD4uWi1JJkooUTBIZDVRJTdDby1iYC1jPE4oNnJAaXArQXVySzxtODZRSXRoKiN2Oy1PQnFpK0w3d0RFLUlyOEtbJ20rRERTTHdLJi8uPy1WJVVfJTM6cUtOdSRfYipCLWtwN05hRCdRZFdRUEtZcVtAPlApaEk7Kl9GXXVgUmJbLmo4X1EvPCY+dXUrVnNIJHNNOVRBJT8pKHZtSjgwKSxQN0U+KXRqRCUyTD0tdCNmS1slYHY9UTg8RmZOa2dnXm9JYmFoKiM4L1F0JEYmOksqLShOLycrMXZNQix1KCktYS5WVVUqI1tlJWdBQU8oUz5XbEEyKTtTYT5nWG04WUJgMWRASyNuXTc2LWEkVSxtRjxmWF1pZHFkKTwzLF1KN0ptVzRgNl11a3M9NC03MkwoakVrKzpiSjBNXnEtOERtX1o/MG9sUDFDOVNhJkhbZCZjJG9vUVVqXUV4ZCozWk1ALVdHVzIlcycsQi1fTSU+JVVsOiMvJ3hvRk05UVgtJC5RTic+WyUkWiR1RjZwQTZLaTJPNTo4dyp2UDE8LTFgW0csKS1tIz4wYFAmI2ViIy4zaSlydEI2MShvJyQ/WDNCPC9SOTA7ZVpdJU5jcTstVGxdI0Y+MlFmdF5hZV81dEtMOU1VZTliKnNMRVE5NUMmYD1HP0BNaj13aConM0U+PS08KUd0Kkl3KSdRRzpgQEl3T2Y3Jl0xaSdTMDFCK0V2L05hYyM5Uzs9O1lRcGdfNlVgKmtWWTM5eEssWy82QWo3OicxQm0tXzFFWWZhMStvJm80aHA3S05fUShPbElvQFMlO2pWZG4wJzE8VmM1Mj11YDNeby1uMSdnNHY1OEhqJjZfdDckIyM/TSljPCRiZ1FfJ1NZKCgteGtBI1koLHAnSDlySVZZLWIsJyViQ1BGNy5KPFVwXiwoZFUxVlkqNSNXa1RVPmgxOXcsV1FoTEkpM1MjZiQyKGViLGpyKmI7M1Z3XSo3TkglJGM0VnMsZUQ5PlhXOD9OXW8rKCpwZ0MlLzcyTFYtdTxIcCwzQGVeOVVCMUorYWs5LVROL21oS1BnK0FKWWQkTWx2QUZfakNLKi5PLV4oNjNhZE1ULT5XJWlld1M4VzZtMnJ0Q3BvJ1JTMVI4ND1AcGFUS3QpPj0lJjFbKSp2cCd1K3gsVnJ3TjsmXWt1TzlKRGJnPXBPJEoqLmpWZTt1J20wZHI5bCw8KndNSypPZT1nOGxWX0tFQkZrTydvVV1ePVstNzkyI29rLClpXWxSOHFRMm9BOHdjUkNaXjd3L05qaDs/LnN0WD9RMT5TMXE0Qm4kKUsxPC1yR2RPJyRXci5MYy5DRykkLypKTDR0TlIvLFNWTzMsYVV3J0RKTjopU3M7d0duOUEzMmlqdyVGTCtaMEZuLlU5O3JlU3EpYm1JMzJVPT01QUx1RyYjVmYxMzk4L3BWbzEqYy0oYVkxNjhvPGBKc1Niay0sMU47JD4wOk9VYXMoMzo4Wjk3MkxTZkY4ZWI9Yy07PlNQdzcuNmhuM21gOV5Ya24oci5xU1swO1QlJlFjPStTVFJ4WCdxMUJOazMmKmV1MjsmOHEkJng+USNRN15UZis2PChkJVpWbWoyYkRpJS4zTDJuKzRXJyRQaURERylnLHIlKz8sJEA/dW91NXRTZTJhTl9BUVUqPGhgZS1HSTcpP09LMkEuZDdfYyk/d1E1QVNAREwzciM3ZlNrZ2w2LSsrRDonQSx1cTdTdmxCJHBjcEgncTNuMCNfJWRZI3hDcHItbDxGME5SQC0jI0ZFVjZOVEY2IyMkbDg0TjF3P0FPPidJQU9VUlEjI1ZeRnYtWEZiR003RmwoTjwzRGhMR0YlcS4xckMkIzpUX18mUGk2OCUweGlfJltxRkooNzdqXyZKV29GLlY3MzUmVCxbUio6eEZSKks1Pj4jYGJXLT80TmVfJjZOZV8mNk5lXyZuYGtyLSNHSmNNNlg7dU02WDt1TSguYS4uXjJUa0wlb1IoIzt1LlQlZkFyJTR0SjgmPjwxPUdIWl8rbTkvI0gxRl5SI1NDIypOPUJBOShEP3ZbVWlGWT4+XjhwLEtLRi5XXUwyOXVMa0xsdS8rNFQ8WG9JQiZoeD1UMVBjRGFCJjtISCstQUZyPyhtOUhaVilGS1M4SkN3O1NEPTZbXi9EWlVMYEVVRGZdR0dsRyY+dyQpRi4vXm4zK3JsbytEQjs1c0lZR05rK2kxdC02OUpnLS0wcGFvN1NtI0spcGRIVyY7THVETkhASD4jL1gtVEkoO1A+IyxHYz4jMFN1PiM0YDE/IzhsQz8jPHhVPyNALmk/I0Q6JUAjSEY3QCNMUklAI1BfW0AjVGtuQCNYdypBI10tPUEjYTlPQSNkPEYmIyo7RyMjLkdZIyMyU2wjIzZgKCQjOmw6JCM+eEwkI0IuYCQjRjpyJCNKRi4lI05SQCUjUl9SJSNWa2UlI1p3dyUjXy00JiMzXlJoJVNmbHItaydNUy5vPy41L3NXZWwvd3BFTTAlMycvMSlLXmYxLWQ+RzIxJnYoMzU+VmAzOVY3QTQ9b254NEExT1k1RUkwOzZJYmdyNk0kSFM3UTwpNThDNXcsO1dvQSojWyVUKiNgMWcqI2Q9IysjaEk1KyNsVUcrI3BiWSsjdG5sKyN4JCksIyYxOywjKj1NLCMuSWAsIzJVciwjNmIuLSM7d1tII2lRdEEjbV4wQiNxakJCI3V2VEIjIy1oQiMnOSRDIytFNkMjL1FIQyMzXlpDIzdqbUMjO3YpRCM/LDxEI0M4TkQjR0RhRCNLUHNEI09dL0UjZzFBNSNLQSoxI2dDMTcjTUdkOyM4KDAyI0wtZDMjcldNNCNIZ2ExIyw8dzAjVC5qPCNPIycyI0NZTjEjcWFeOiNfNG0zI29ALz0jZUc4PSN0OEo1I2ArNzgjNHVJLSNtM0IyI1NCWzgjUTBAOCNpWyo5I2lPbjgjMU5tOyNec045I3FoPDkjOj14LSNQO0syIyQlWDkjYkMrLiNSZzs8I21OPS4jTVRGLiNSWk8uIzI/KTQjWSMoLyNbKTEvI2I7TC8jZEFVLyMwU3Y7I2xZJDAjbmAtMCNzZjYwIyhGMjQjd3JIMCMlL2UwI1RtRDwjJUpTTUZvdmU6Q1RCRVhJOjxlaDJnKUIsM2gyXkczaTsjZDNqRD4pNGtNWUQ0bFZ1YDRtYDomNW5pVUE1QChBNUJBMV1QQkI6eGxCQ0M9MkNETFhNQ0VVdGlDZiYwZzIndE4/UEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQLXFla0NgLjlrRWdeK0Yka3dWaUZKVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVvLF48LTI4WkknTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cDs3cS0jbExZSTp4dkQ9IwBB9v8ACwpAQAAAQEEAAJhBAEGKgAELugFQQQAAAAAAAOBAAACAQQAAgD8AAABBAAD4QQAAAAAAALhBAAC4QQAAMEEAADBBAACoQQAAAAAAABBBAAC4QQAAgEAAADBBAABcQgAAkEEAALhBAAAQQQAAMEEAAIBAAACSQgAAAAAAAIhBAACIQQAAAEEAAABBAABcQgAAAAAAAIhBAACIQQAAAEEAAABBAAC2QgAAAAAAAIhBAACwQQAAoEAAAAAAIAD/AAAw/zDwMf8xAP/v/wBOr58AQdCBAQuXJyAA/wAAMP8w8DH/MQD/7/8AAAEAAgAEAAEAAQABAAEAAgABAAMAAgABAAIAAgABAAEAAQABAAEABQACAAEAAgADAAMAAwACAAIABAABAAEAAQACAAEABQACAAMAAQACAAEAAgABAAEAAgABAAEAAgACAAEABAABAAEAAQABAAUACgABAAIAEwACAAEAAgABAAIAAQACAAEAAgABAAUAAQAGAAMAAgABAAIAAgABAAEAAQAEAAgABQABAAEABAABAAEAAwABAAIAAQAFAAEAAgABAAEAAQAKAAEAAQAFAAIABAAGAAEABAACAAIAAgAMAAIAAQABAAYAAQABAAEABAABAAEABAAGAAUAAQAEAAIAAgAEAAoABwABAAEABAACAAQAAgABAAQAAwAGAAoADAAFAAcAAgAOAAIACQABAAEABgAHAAoABAAHAA0AAQAFAAQACAAEAAEAAQACABwABQAGAAEAAQAFAAIABQAUAAIAAgAJAAgACwACAAkAEQABAAgABgAIABsABAAGAAkAFAALABsABgBEAAIAAgABAAEAAQACAAEAAgACAAcABgALAAMAAwABAAEAAwABAAIAAQABAAEAAQABAAMAAQABAAgAAwAEAAEABQAHAAIAAQAEAAQACAAEAAIAAQACAAEAAQAEAAUABgADAAYAAgAMAAMAAQADAAkAAgAEAAMABAABAAUAAwADAAEAAwAHAAEABQABAAEAAQABAAIAAwAEAAUAAgADAAIABgABAAEAAgABAAcAAQAHAAMABAAFAA8AAgACAAEABQADABYAEwACAAEAAQABAAEAAgAFAAEAAQABAAYAAQABAAwACAACAAkAEgAWAAQAAQABAAUAAQAQAAEAAgAHAAoADwABAAEABgACAAQAAQACAAQAAQAGAAEAAQADAAIABAABAAYABAAFAAEAAgABAAEAAgABAAoAAwABAAMAAgABAAkAAwACAAUABwACABMABAADAAYAAQABAAEAAQABAAQAAwACAAEAAQABAAIABQADAAEAAQABAAIAAgABAAEAAgABAAEAAgABAAMAAQABAAEAAwAHAAEABAABAAEAAgABAAEAAgABAAIABAAEAAMACAABAAEAAQACAAEAAwAFAAEAAwABAAMABAAGAAIAAgAOAAQABgAGAAsACQABAA8AAwABABwABQACAAUABQADAAEAAwAEAAUABAAGAA4AAwACAAMABQAVAAIABwAUAAoAAQACABMAAgAEABwAHAACAAMAAgABAA4ABAABABoAHAAqAAwAKAADADQATwAFAA4AEQADAAIAAgALAAMABAAGAAMAAQAIAAIAFwAEAAUACAAKAAQAAgAHAAMABQABAAEABgADAAEAAgACAAIABQAcAAEAAQAHAAcAFAAFAAMAHQADABEAGgABAAgABAAbAAMABgALABcABQADAAQABgANABgAEAAGAAUACgAZACMABwADAAIAAwADAA4AAwAGAAIABgABAAQAAgADAAgAAgABAAEAAwADAAMABAABAAEADQACAAIABAAFAAIAAQAOAA4AAQACAAIAAQAEAAUAAgADAAEADgADAAwAAwARAAIAEAAFAAEAAgABAAgACQADABMABAACAAIABAARABkAFQAUABwASwABAAoAHQBnAAQAAQACAAEAAQAEAAIABAABAAIAAwAYAAIAAgACAAEAAQACAAEAAwAIAAEAAQABAAIAAQABAAMAAQABAAEABgABAAUAAwABAAEAAQADAAQAAQABAAUAAgABAAUABgANAAkAEAABAAEAAQABAAMAAgADAAIABAAFAAIABQACAAIAAwAHAA0ABwACAAIAAQABAAEAAQACAAMAAwACAAEABgAEAAkAAgABAA4AAgAOAAIAAQASAAMABAAOAAQACwApAA8AFwAPABcAsAABAAMABAABAAEAAQABAAUAAwABAAIAAwAHAAMAAQABAAIAAQACAAQABAAGAAIABAABAAkABwABAAoABQAIABAAHQABAAEAAgACAAMAAQADAAUAAgAEAAUABAABAAEAAgACAAMAAwAHAAEABgAKAAEAEQABACwABAAGAAIAAQABAAYABQAEAAIACgABAAYACQACAAgAAQAYAAEAAgANAAcACAAIAAIAAQAEAAEAAwABAAMAAwAFAAIABQAKAAkABAAJAAwAAgABAAYAAQAKAAEAAQAHAAcABAAKAAgAAwABAA0ABAADAAEABgABAAMABQACAAEAAgARABAABQACABAABgABAAQAAgABAAMAAwAGAAgABQALAAsAAQADAAMAAgAEAAYACgAJAAUABwAEAAcABAAHAAEAAQAEAAIAAQADAAYACAAHAAEABgALAAUABQADABgACQAEAAIABwANAAUAAQAIAFIAEAA9AAEAAQABAAQAAgACABAACgADAAgAAQABAAYABAACAAEAAwABAAEAAQAEAAMACAAEAAIAAgABAAEAAQABAAEABgADAAUAAQABAAQABgAJAAIAAQABAAEAAgABAAcAAgABAAYAAQAFAAQABAADAAEACAABAAMAAwABAAMAAgACAAIAAgADAAEABgABAAIAAQACAAEAAwAHAAEACAACAAEAAgABAAUAAgAFAAMABQAKAAEAAgABAAEAAwACAAUACwADAAkAAwAFAAEAAQAFAAkAAQACAAEABQAHAAkACQAIAAEAAwADAAMABgAIAAIAAwACAAEAAQAgAAYAAQACAA8ACQADAAcADQABAAMACgANAAIADgABAA0ACgACAAEAAwAKAAQADwACAA8ADwAKAAEAAwAJAAYACQAgABkAGgAvAAcAAwACAAMAAQAGAAMABAADAAIACAAFAAQAAQAJAAQAAgACABMACgAGAAIAAwAIAAEAAgACAAQAAgABAAkABAAEAAQABgAEAAgACQACAAMAAQABAAEAAQADAAUABQABAAMACAAEAAYAAgABAAQADAABAAUAAwAHAA0AAgAFAAgAAQAGAAEAAgAFAA4ABgABAAUAAgAEAAgADwAFAAEAFwAGAD4AAgAKAAEAAQAIAAEAAgACAAoABAACAAIACQACAAEAAQADAAIAAwABAAUAAwADAAIAAQADAAgAAQABAAEACwADAAEAAQAEAAMABwABAA4AAQACAAMADAAFAAIABQABAAYABwAFAAcADgALAAEAAwABAAgACQAMAAIAAQALAAgABAAEAAIABgAKAAkADQABAAEAAwABAAUAAQADAAIABAAEAAEAEgACAAMADgALAAQAHQAEAAIABwABAAMADQAJAAIAAgAFAAMABQAUAAcAEAAIAAUASAAiAAYABAAWAAwADAAcAC0AJAAJAAcAJwAJAL8AAQABAAEABAALAAgABAAJAAIAAwAWAAEAAQABAAEABAARAAEABwAHAAEACwAfAAoAAgAEAAgAAgADAAIAAQAEAAIAEAAEACAAAgADABMADQAEAAkAAQAFAAIADgAIAAEAAQADAAYAEwAGAAUAAQAQAAYAAgAKAAgABQABAAIAAwABAAUABQABAAsABgAGAAEAAwADAAIABgADAAgAAQABAAQACgAHAAUABwAHAAUACAAJAAIAAQADAAQAAQABAAMAAQADAAMAAgAGABAAAQAEAAYAAwABAAoABgABAAMADwACAAkAAgAKABkADQAJABAABgACAAIACgALAAQAAwAJAAEAAgAGAAYABQAEAB4AKAABAAoABwAMAA4AIQAGAAMABgAHAAMAAQADAAEACwAOAAQACQAFAAwACwAxABIAMwAfAIwAHwACAAIAAQAFAAEACAABAAoAAQAEAAQAAwAYAAEACgABAAMABgAGABAAAwAEAAUAAgABAAQAAgA5AAoABgAWAAIAFgADAAcAFgAGAAoACwAkABIAEAAhACQAAgAFAAUAAQABAAEABAAKAAEABAANAAIABwAFAAIACQADAAQAAQAHACsAAwAHAAMACQAOAAcACQABAAsAAQABAAMABwAEABIADQABAA4AAQADAAYACgBJAAIAAgAeAAYAAQALABIAEwANABYAAwAuACoAJQBZAAcAAwAQACIAAgACAAMACQABAAcAAQABAAEAAgACAAQACgAHAAMACgADAAkABQAcAAkAAgAGAA0ABwADAAEAAwAKAAIABwACAAsAAwAGABUANgBVAAIAAQAEAAIAAgABACcAAwAVAAIAAgAFAAEAAQABAAQAAQABAAMABAAPAAEAAwACAAQABAACAAMACAACABQAAQAIAAcADQAEAAEAGgAGAAIACQAiAAQAFQA0AAoABAAEAAEABQAMAAIACwABAAcAAgAeAAwALAACAB4AAQABAAMABgAQAAkAEQAnAFIAAgACABgABwABAAcAAwAQAAkADgAsAAIAAQACAAEAAgADAAUAAgAEAAEABgAHAAUAAwACAAYAAQALAAUACwACAAEAEgATAAgAAQADABgAHQACAAEAAwAFAAIAAgABAA0ABgAFAAEALgALAAMABQABAAEABQAIAAIACgAGAAwABgADAAcACwACAAQAEAANAAIABQABAAEAAgACAAUAAgAcAAUAAgAXAAoACAAEAAQAFgAnAF8AJgAIAA4ACQAFAAEADQAFAAQAAwANAAwACwABAAkAAQAbACUAAgAFAAQABAA/ANMAXwACAAIAAgABAAMABQACAAEAAQACAAIAAQABAAEAAwACAAQAAQACAAEAAQAFAAIAAgABAAEAAgADAAEAAwABAAEAAQADAAEABAACAAEAAwAGAAEAAQADAAcADwAFAAMAAgAFAAMACQALAAQAAgAWAAEABgADAAgABwABAAQAHAAEABAAAwADABkABAAEABsAGwABAAQAAQACAAIABwABAAMABQACABwACAACAA4AAQAIAAYAEAAZAAMAAwADAA4AAwADAAEAAQACAAEABAAGAAMACAAEAAEAAQABAAIAAwAGAAoABgACAAMAEgADAAIABQAFAAQAAwABAAUAAgAFAAQAFwAHAAYADAAGAAQAEQALAAkABQABAAEACgAFAAwAAQABAAsAGgAhAAcAAwAGAAEAEQAHAAEABQAMAAEACwACAAQAAQAIAA4AEQAXAAEAAgABAAcACAAQAAsACQAGAAUAAgAGAAQAEAACAAgADgABAAsACAAJAAEAAQABAAkAGQAEAAsAEwAHAAIADwACAAwACAA0AAcABQATAAIAEAAEACQACAABABAACAAYABoABAAGAAIACQAFAAQAJAADABwADAAZAA8AJQAbABEADAA7ACYABQAgAH8AAQACAAkAEQAOAAQAAQACAAEAAQAIAAsAMgAEAA4AAgATABAABAARAAUABAAFABoADAAtAAIAFwAtAGgAHgAMAAgAAwAKAAIAAgADAAMAAQAEABQABwACAAkABgAPAAIAFAABAAMAEAAEAAsADwAGAIYAAgAFADsAAQACAAIAAgABAAkAEQADABoAiQAKANMAOwABAAIABAABAAQAAQABAAEAAgAGAAIAAwABAAEAAgADAAIAAwABAAMABAAEAAIAAwADAAEABAADAAEABwACAAIAAwABAAIAAQADAAMAAwACAAIAAwACAAEAAwAOAAYAAQADAAIACQAGAA8AGwAJACIAkQABAAEAAgABAAEAAQABAAIAAQABAAEAAQACAAIAAgADAAEAAgABAAEAAQACAAMABQAIAAMABQACAAQAAQADAAIAAgACAAwABAABAAEAAQAKAAQABQABABQABAAQAAEADwAJAAUADAACAAkAAgAFAAQAAgAaABMABwABABoABAAeAAwADwAqAAEABgAIAKwAAQABAAQAAgABAAEACwACAAIABAACAAEAAgABAAoACAABAAIAAQAEAAUAAQACAAUAAQAIAAQAAQADAAQAAgABAAYAAgABAAMABAABAAIAAQABAAEAAQAMAAUABwACAAQAAwABAAEAAQADAAMABgABAAIAAgADAAMAAwACAAEAAgAMAA4ACwAGAAYABAAMAAIACAABAAcACgABACMABwAEAA0ADwAEAAMAFwAVABwANAAFABoABQAGAAEABwAKAAIABwA1AAMAAgABAAEAAQACAKMAFAIBAAoACwABAAMAAwAEAAgAAgAIAAYAAgACABcAFgAEAAIAAgAEAAIAAQADAAEAAwADAAUACQAIAAIAAQACAAgAAQAKAAIADAAVABQADwBpAAIAAwABAAEAAwACAAMAAQABAAIABQABAAQADwALABMAAQABAAEAAQAFAAQABQABAAEAAgAFAAMABQAMAAEAAgAFAAEACwABAAEADwAJAAEABAAFAAMAGgAIAAIAAQADAAEAAQAPABMAAgAMAAEAAgAFAAIABwACABMAAgAUAAYAGgAHAAUAAgACAAcAIgAVAA0ARgACAIAAAQABAAIAAQABAAIAAQABAAMAAgACAAIADwABAAQAAQADAAQAKgAKAAYAAQAxAFUACAABAAIAAQABAAQABAACAAMABgABAAUABwAEAAMA0wAEAAEAAgABAAIABQABAAIABAACAAIABgAFAAYACgADAAQAMABkAAYAAgAQACgBBQAbAIMBAgACAAMABwAQAAgABQAmAA8AJwAVAAkACgADAAcAOwANABsAFQAvAAUAFQAGAEHyqAELsR4BAAIABAABAAEAAQABAAIAAQAGAAIAAgABAAgABQAHAAsAAQACAAoACgAIAAIABAAUAAIACwAIAAIAAQACAAEABgACAAEABwAFAAMABwABAAEADQAHAAkAAQAEAAYAAQACAAEACgABAAEACQACAAIABAAFAAYADgABAAEACQADABIABQAEAAIAAgAKAAcAAQABAAEAAwACAAQAAwAXAAIACgAMAAIADgACAAQADQABAAYACgADAAEABwANAAYABAANAAUAAgADABEAAgACAAUABwAGAAQAAQAHAA4AEAAGAA0ACQAPAAEAAQAHABAABAAHAAEAEwAJAAIABwAPAAIABgAFAA0AGQAEAA4ADQALABkAAQABAAEAAgABAAIAAgADAAoACwADAAMAAQABAAQABAACAAEABAAJAAEABAADAAUABQACAAcADAALAA8ABwAQAAQABQAQAAIAAQABAAYAAwADAAEAAQACAAcABgAGAAcAAQAEAAcABgABAAEAAgABAAwAAwADAAkABQAIAAEACwABAAIAAwASABQABAABAAMABgABAAcAAwAFAAUABwACAAIADAADAAEABAACAAMAAgADAAsACAAHAAQAEQABAAkAGQABAAEABAACAAIABAABAAIABwABAAEAAQADAAEAAgAGABAAAQACAAEAAQADAAwAFAACAAUAFAAIAAcABgACAAEAAQABAAEABgACAAEAAgAKAAEAAQAGAAEAAwABAAIAAQAEAAEADAAEAAEAAwABAAEAAQABAAEACgAEAAcABQANAAEADwABAAEAHgALAAkAAQAPACYADgABACAAEQAUAAEACQAfAAIAFQAJAAQAMQAWAAIAAQANAAEACwAtACMAKwA3AAwAEwBTAAEAAwACAAMADQACAAEABwADABIAAwANAAgAAQAIABIABQADAAcAGQAYAAkAGAAoAAMAEQAYAAIAAQAGAAIAAwAQAA8ABgAHAAMADAABAAkABwADAAMAAwAPABUABQAQAAQABQAMAAsACwADAAYAAwACAB8AAwACAAEAAQAXAAYABgABAAQAAgAGAAUAAgABAAEAAwADABYAAgAGAAIAAwARAAMAAgAEAAUAAQAJAAUAAQABAAYADwAMAAMAEQACAA4AAgAIAAEAFwAQAAQAAgAXAAgADwAXABQADAAZABMALwALABUAQQAuAAQAAwABAAUABgABAAIABQAaAAIAAQABAAMACwABAAEAAQACAAEAAgADAAEAAQAKAAIAAwABAAEAAQADAAYAAwACAAIABgAGAAkAAgACAAIABgACAAUACgACAAQAAQACAAEAAgACAAMAAQABAAMAAQACAAkAFwAJAAIAAQABAAEAAQAFAAMAAgABAAoACQAGAAEACgACAB8AGQADAAcABQAoAAEADwAGABEABwAbALQAAQADAAIAAgABAAEAAQAGAAMACgAHAAEAAwAGABEACAAGAAIAAgABAAMABQAFAAgAEAAOAA8AAQABAAQAAQACAAEAAQABAAMAAgAHAAUABgACAAUACgABAAQAAgAJAAEAAQALAAYAAQAsAAEAAwAHAAkABQABAAMAAQABAAoABwABAAoABAACAAcAFQAPAAcAAgAFAAEACAADAAQAAQADAAEABgABAAQAAgABAAQACgAIAAEABAAFAAEABQAKAAIABwABAAoAAQABAAMABAALAAoAHQAEAAcAAwAFAAIAAwAhAAUAAgATAAMAAQAEAAIABgAfAAsAAQADAAMAAwABAAgACgAJAAwACwAMAAgAAwAOAAgABgALAAEABAApAAMAAQACAAcADQABAAUABgACAAYADAAMABYABQAJAAQACAAJAAkAIgAGABgAAQABABQACQAJAAMABAABAAcAAgACAAIABgACABwABQADAAYAAQAEAAYABwAEAAIAAQAEAAIADQAGAAQABAADAAEACAAIAAMAAgABAAUAAQACAAIAAwABAAsACwAHAAMABgAKAAgABgAQABAAFgAHAAwABgAVAAUABAAGAAYAAwAGAAEAAwACAAEAAgAIAB0AAQAKAAEABgANAAYABgATAB8AAQANAAQABAAWABEAGgAhAAoABAAPAAwAGQAGAEMACgACAAMAAQAGAAoAAgAGAAIACQABAAkABAAEAAEAAgAQAAIABQAJAAIAAwAIAAEACAADAAkABAAIAAYABAAIAAsAAwACAAEAAQADABoAAQAHAAUAAQALAAEABQADAAUAAgANAAYAJwAFAAEABQACAAsABgAKAAUAAQAPAAUAAwAGABMAFQAWAAIABAABAAYAAQAIAAEABAAIAAIABAACAAIACQACAAEAAQABAAQAAwAGAAMADAAHAAEADgACAAQACgACAA0AAQARAAcAAwACAAEAAwACAA0ABwAOAAwAAwABAB0AAgAIAAkADwAOAAkADgABAAMAAQAGAAUACQALAAMAJgArABQABwAHAAgABQAPAAwAEwAPAFEACAAHAAEABQBJAA0AJQAcAAgACAABAA8AEgAUAKUAHAABAAYACwAIAAQADgAHAA8AAQADAAMABgAEAAEABwAOAAEAAQALAB4AAQAFAAEABAAOAAEABAACAAcANAACAAYAHQADAAEACQABABUAAwAFAAEAGgADAAsADgALAAEAEQAFAAEAAgABAAMAAgAIAAEAAgAJAAwAAQABAAIAAwAIAAMAGAAMAAcABwAFABEAAwADAAMAAQAXAAoABAAEAAYAAwABABAAEQAWAAMACgAVABAAEAAGAAQACgACAAEAAQACAAgACAAGAAUAAwADAAMAJwAZAA8AAQABABAABgAHABkADwAGAAYADAABABYADQABAAQACQAFAAwAAgAJAAEADAAcAAgAAwAFAAoAFgA8AAEAAgAoAAQAPQA/AAQAAQANAAwAAQAEAB8ADAABAA4AWQAFABAABgAdAA4AAgAFADEAEgASAAUAHQAhAC8AAQARAAEAEwAMAAIACQAHACcADAADAAcADAAnAAMAAQAuAAQADAADAAgACQAFAB8ADwASAAMAAgACAEIAEwANABEABQADAC4AfAANADkAIgACAAUABAAFAAgAAQABAAEABAADAAEAEQAFAAMABQADAAEACAAFAAYAAwAbAAMAGgAHAAwABwACABEAAwAHABIATgAQAAQAJAABAAIAAQAGAAIAAQAnABEABwAEAA0ABAAEAAQAAQAKAAQAAgAEAAYAAwAKAAEAEwABABoAAgAEACEAAgBJAC8ABwADAAgAAgAEAA8AEgABAB0AAgApAA4AAQAVABAAKQAHACcAGQANACwAAgACAAoAAQANAAcAAQAHAAMABQAUAAQACAACADEAAQAKAAYAAQAGAAcACgAHAAsAEAADAAwAFAAEAAoAAwABAAIACwACABwACQACAAQABwACAA8AAQAbAAEAHAARAAQABQAKAAcAAwAYAAoACwAGABoAAwACAAcAAgACADEAEAAKABAADwAEAAUAGwA9AB4ADgAmABYAAgAHAAUAAQADAAwAFwAYABEAEQADAAMAAgAEAAEABgACAAcABQABAAEABQABAAEACQAEAAEAAwAGAAEACAACAAgABAAOAAMABQALAAQAAQADACAAAQATAAQAAQANAAsABQACAAEACAAGAAgAAQAGAAUADQADABcACwAFAAMAEAADAAkACgABABgAAwDGADQABAACAAIABQAOAAUABAAWAAUAFAAEAAsABgApAAEABQACAAIACwAFAAIAHAAjAAgAFgADABIAAwAKAAcABQADAAQAAQAFAAMACAAJAAMABgACABAAFgAEAAUABQADAAMAEgAXAAIABgAXAAUAGwAIAAEAIQACAAwAKwAQAAUAAgADAAYAAQAUAAQAAgAJAAcAAQALAAIACgADAA4AHwAJAAMAGQASABQAAgAFAAUAGgAOAAEACwARAAwAKAATAAkABgAfAFMAAgAHAAkAEwBOAAwADgAVAEwADABxAE8AIgAEAAEAAQA9ABIAVQAKAAIAAgANAB8ACwAyAAYAIQCfALMABgAGAAcABAAEAAIABAACAAUACAAHABQAIAAWAAEAAwAKAAYABwAcAAUACgAJAAIATQATAA0AAgAFAAEABAAEAAcABAANAAMACQAfABEAAwAaAAIABgAGAAUABAABAAcACwADAAQAAgABAAYAAgAUAAQAAQAJAAIABgADAAcAAQABAAEAFAACAAMAAQAGAAIAAwAGAAIABAAIAAEABQANAAgABAALABcAAQAKAAYAAgABAAMAFQACAAIABAAYAB8ABAAKAAoAAgAFAMAADwAEABAABwAJADMAAQACAAEAAQAFAAEAAQACAAEAAwAFAAMAAQADAAQAAQADAAEAAwADAAkACAABAAIAAgACAAQABAASAAwAXAACAAoABAADAA4ABQAZABAAKgAEAA4ABAACABUABQB+AB4AHwACAAEABQANAAMAFgAFAAYABgAUAAwAAQAOAAwAVwADABMAAQAIAAIACQAJAAMAAwAXAAIAAwAHAAYAAwABAAIAAwAJAAEAAwABAAYAAwACAAEAAwALAAMAAQAGAAoAAwACAAMAAQACAAEABQABAAEACwADAAYABAABAAcAAgABAAIABQAFACIABAAOABIABAATAAcABQAIAAIABgBPAAEABQACAA4ACAACAAkAAgABACQAHAAQAAQAAQABAAEAAgAMAAYAKgAnABAAFwAHAA8ADwADAAIADAAHABUAQAAGAAkAHAAIAAwAAwADACkAOwAYADMANwA5ACYBCQAJAAIABgACAA8AAQACAA0AJgBaAAkACQAJAAMACwAHAAEAAQABAAUABgADAAIAAQACAAIAAwAIAAEABAAEAAEABQAHAAEABAADABQABAAJAAEAAQABAAUABQARAAEABQACAAYAAgAEAAEABAAFAAcAAwASAAsACwAgAAcABQAEAAcACwB/AAgABAADAAMAAQAKAAEAAQAGABUADgABABAAAQAHAAEAAwAGAAkAQQAzAAQAAwANAAMACgABAAEADAAJABUAbgADABMAGAABAAEACgA+AAQAAQAdACoATgAcABQAEgBSAAYAAwAPAAYAVAA6AP0ADwCbAAgBDwAVAAkADgAHADoAKAAnAEGwxwELECAA/wAABC8F4C3/LUCmn6YAQdLHAQsmgD/NzMw9CtcjPG8SgzoXt9E4rMUnN703hjWVv9Yzd8wrMl9wiTAAQYDIAQtGBAAAAOeOAADnjgAABAAAAPGOAADxjgAACAAAAPSOAAD0jgAACAAAAPmOAAD5jgAABAAAAOqOAADqjgAACAAAAOqOAADtjgBB0MgBC5IC/5AAAAORAAAHkQAAC5EAAMGQAADBkAAAwZAAAMGQAADHkAAAz5AAANeQAADfkAAA55AAAO+QAAD3kAAA35AAAJOQAACTkAAAk5AAAJOQAACXkAAAnZAAAKOQAACpkAAAr5AAALWQAAC7kAAAqZAAAP8AAP///wD/AP8A/wD///8AAP///wD///8AAP8AAAAA6HoAANB0AADQdAAA0HQAANB0AAA4ewAAWHsAANB0AAAIewAA0HQAANB0AAAIewAAOHsAADh7AABYewAAWHsAAOh6AABYewAAWHsAAFh7AADQdAAA0HQAANB0AAAAAAAACHsAAEB7AAAIdQAAOHsAAOh6AAA4ewAAWHsAANB0AADQdABB8MoBCxLQdAAA2HQAAAh7AABYewAA0HQAQZDLAQsi6HoAANB0AADQdAAACHsAAAh7AADYdAAA0HQAAFB7AAA4ewBBwMsBCyIIewAA0HQAADh7AAAIewAACHsAANh0AADQdAAA0HQAAAh7AEHwywELEgh7AADYdAAA0HQAAAh7AAAIewBBkMwBCzboegAA2HQAAFh7AADQdAAACHsAANh0AAA4ewAAOHsAAAh7AADYdAAA0HQAANB0AAA4ewAAOHsAQdDMAQsSCHsAANh0AAAIewAAOHsAANB0AEHwzAELMgh7AAA4ewAAOHsAANh0AAAIewAA2HQAADh7AADYdAAACHsAANh0AADQdAAAOHsAANB0AEGwzQELIgh7AADYdAAA0HQAADh7AADQdAAA0HQAANB0AADQdAAA0HQAQeDNAQs2CHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AAA4ewAAOHsAANB0AEGgzgELEgh7AADYdAAA0HQAANB0AADQdABBwM4BC3YIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAAAAAAAAh7AADYdAAAOHsAANB0AADQdAAA0HQAANB0AAA4ewAACHsAANh0AADQdAAAYHsAAGB7AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AAA4ewAAOHsAADh7AEHAzwELEgh7AADYdAAA0HQAANB0AAA4ewBB4M8BC4IBCHsAANh0AADQdAAA0HQAANB0AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AABQewAA0HQAADh7AADQdAAA0HQAAAh7AADYdAAA0HQAAFB7AAA4ewAA0HQAANB0AAAAAAAACHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AADQdABB8NABCyIIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AEGg0QELRgh7AADYdAAA0HQAANB0AAA4ewAAOHsAANB0AAAAAAAACHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQfDRAQt2CHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AADQdAAA0HQAADh7AAA4ewAAAAAAAOh6AABYewAA0HQAANB0AADoegAA2HQAANB0AADQdAAAOHsAADh7AADQdAAA0HQAANB0AADQdABB8NIBC5IBCHsAANh0AADQdAAAQHsAAAh7AADQdAAA0HQAANB0AADQdAAAOHsAANB0AADQdAAA6HoAANB0AADQdAAA0HQAANB0AADQdAAA0HQAAAAAAADoegAAOHsAANB0AAAIewAA6HoAANh0AAAIewAAOHsAAOh6AADYdAAA0HQAADh7AADoegAA0HQAANB0AADQdAAA0HQAQZDUAQsi6HoAANB0AAA4ewAA0HQAAAh7AADQdAAA0HQAAAh7AAA4ewBBwNQBC4YBCHsAANh0AADQdAAAOHsAAAh7AADYdAAAUHsAAFB7AABQewAAUHsAAFB7AAAAAAAACHsAAFh2AAA4ewAA0HQAAAh7AACYdgAAOHsAAFh7AAAIewAAmHYAADh7AAAIewAACHsAAJh2AAA4ewAAOHsAANB0AADIdgAA0HQAAFh7AADQdAAA0HQAQdDVAQsy6HoAACB2AADQdAAAWHsAANB0AABAewAAMHsAAAAAAAA4ewAAIHYAAFh7AADYdAAAWHsAQZDWAQti0HQAACB2AABYewAAWHsAAFh7AADYdAAA0HQAANB0AADoegAAQHUAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAQYDXAQs26HoAADB1AAA4ewAAOHsAAOh6AABAdQAA0HQAANB0AADoegAAQHUAANB0AADQdAAAWHsAADh7AEHA1wELFuh6AABAdQAA0HQAANB0AADQdAAAOHsAQeDXAQsW6HoAAEB1AADQdAAAWHsAADh7AAA4ewBBgNgBCzLoegAAQHUAANB0AABYewAAWHsAAFh7AAA4ewAAAAAAAOh6AABAdQAAQHsAAAh7AABYewBBwNgBCyLoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHw2AELEuh6AABAdQAA0HQAADh7AABAewBBkNkBC0boegAAQHUAANB0AAA4ewAAQHsAAAh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHg2QELcuh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAA6HoAAEB1AADQdAAAWHsAANB0AABAewAA2HQAAFh7AADQdABB4NoBCxLoegAAQHUAANB0AABAewAA2HQAQYDbAQsW6HoAAEB1AADQdAAAWHsAAEB7AAA4ewBBoNsBCzboegAAQHUAANB0AABYewAAQHsAADh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAAQHsAQeDbAQvWAeh6AABAdQAA0HQAANB0AADQdAAAQHsAAFh7AAAAAAAA6HoAAEB1AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAQHsAAEB7AABAewAA6HoAAEB1AADQdAAA0HQAAEB7AABYewAAOHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAAFh7AAA4ewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAWHsAQcDdAQsS6HoAAEB1AADQdAAA0HQAAAh7AEHg3QELRuh6AADgdwAAOHsAAFh7AADoegAA+HUAADh7AADYdAAA6HoAAOh1AAA4ewAAOHsAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQbDeAQvhA9B0AADQdAAA0HQAANB0AAACAADAAwAAwAQAAMAFAADABgAAwAcAAMAIAADACQAAwAoAAMALAADADAAAwA0AAMAOAADADwAAwBAAAMARAADAEgAAwBMAAMAUAADAFQAAwBYAAMAXAADAGAAAwBkAAMAaAADAGwAAwBwAAMAdAADAHgAAwB8AAMAAAACzAQAAwwIAAMMDAADDBAAAwwUAAMMGAADDBwAAwwgAAMMJAADDCgAAwwsAAMMMAADDDQAA0w4AAMMPAADDAAAMuwEADMMCAAzDAwAMwwQADNMAAAAA/////////////////////////////////////////////////////////////////wABAgMEBQYHCAn/////////CgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiP///////8KCwwNDg8QERITFBUWFxgZGhscHR4fICEiI/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AQaDiAQsYEQAKABEREQAAAAAFAAAAAAAACQAAAAALAEHA4gELIREADwoREREDCgcAARMJCwsAAAkGCwAACwAGEQAAABEREQBB8eIBCwELAEH64gELGBEACgoREREACgAAAgAJCwAAAAkACwAACwBBq+MBCwEMAEG34wELFQwAAAAADAAAAAAJDAAAAAAADAAADABB5eMBCwEOAEHx4wELFQ0AAAAEDQAAAAAJDgAAAAAADgAADgBBn+QBCwEQAEGr5AELHg8AAAAADwAAAAAJEAAAAAAAEAAAEAAAEgAAABISEgBB4uQBCw4SAAAAEhISAAAAAAAACQBBk+UBCwELAEGf5QELFQoAAAAACgAAAAAJCwAAAAAACwAACwBBzeUBCwEMAEHZ5QEL3gIMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYKAAAAZAAAAOgDAAAQJwAAoIYBAEBCDwCAlpgAAOH1BQMAAAAEAAAABAAAAAYAAACD+aIARE5uAPwpFQDRVycA3TT1AGLbwAA8mZUAQZBDAGNR/gC73qsAt2HFADpuJADSTUIASQbgAAnqLgAcktEA6x3+ACmxHADoPqcA9TWCAES7LgCc6YQAtCZwAEF+XwDWkTkAU4M5AJz0OQCLX4QAKPm9APgfOwDe/5cAD5gFABEv7wAKWosAbR9tAM9+NgAJyycARk+3AJ5mPwAt6l8Auid1AOXrxwA9e/EA9zkHAJJSigD7a+oAH7FfAAhdjQAwA1YAe/xGAPCrawAgvM8ANvSaAOOpHQBeYZEACBvmAIWZZQCgFF8AjUBoAIDY/wAnc00ABgYxAMpWFQDJqHMAe+JgAGuMwABBw+gBC21A+yH5PwAAAAAtRHQ+AAAAgJhG+DwAAABgUcx4OwAAAICDG/A5AAAAQCAlejgAAACAIoLjNgAAAAAd82k1OGPtPtoPST9emHs/2g/JP2k3rDFoISIztA8UM2ghojMAAAAAAADwPwAAAAAAAPg/AEG46QELCAbQ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aXZlAFBsb3RMaW5lc0hvdmVyZWQAUGxvdEhpc3RvZ3JhbUhvdmVyZWQAVGV4dFNlbGVjdGVkQmcARHJhZ0Ryb3BUYXJnZXQATmF2SGlnaGxpZ2h0AE5hdldpbmRvd2luZ0hpZ2hsaWdodABOYXZXaW5kb3dpbmdEaW1CZwBNb2RhbFdpbmRvd0RpbUJnAFVua25vd24AIyNUb29sdGlwXyUwMmQAIyNNZW51XyUwMmQAIyNQb3B1cF8lMDh4AHdpbmRvd19jb250ZXh0AHZvaWRfY29udGV4dABjb2x1bW5zACNTb3VyY2VFeHRlcm4ACiUqcyUuKnMAICUuKnMAYWIACgBMb2cgVG8gVFRZAExvZyBUbyBGaWxlAExvZyBUbyBDbGlwYm9hcmQARGVwdGgAcmIAd3QASW1HdWkgTWV0cmljcwABRGVhciBJbUd1aSAlcwBBcHBsaWNhdGlvbiBhdmVyYWdlICUuM2YgbXMvZnJhbWUgKCUuMWYgRlBTKQAlZCB2ZXJ0aWNlcywgJWQgaW5kaWNlcyAoJWQgdHJpYW5nbGVzKQAlZCBhY3RpdmUgd2luZG93cyAoJWQgdmlzaWJsZSkAJWQgYWxsb2NhdGlvbnMAU2hvdyBjbGlwcGluZyByZWN0YW5nbGVzIHdoZW4gaG92ZXJpbmcgZHJhdyBjb21tYW5kcwBDdHJsIHNob3dzIHdpbmRvdyBiZWdpbiBvcmRlcgBXaW5kb3dzAERyYXdMaXN0AEFjdGl2ZSBEcmF3TGlzdHMgKCVkKQBQb3B1cHMAUG9wdXBzICglZCkAUG9wdXBJRDogJTA4eCwgV2luZG93OiAnJXMnJXMlcwBOVUxMACBDaGlsZFdpbmRvdwAgQ2hpbGRNZW51AFRhYkJhcnMAVGFiIEJhcnMgKCVkKQBJbnRlcm5hbCBzdGF0ZQBOb25lAE1vdXNlAE5hdgBOYXZLZXlib2FyZABOYXZHYW1lcGFkAEhvdmVyZWRXaW5kb3c6ICclcycASG92ZXJlZFJvb3RXaW5kb3c6ICclcycASG92ZXJlZElkOiAweCUwOFgvMHglMDhYICglLjJmIHNlYyksIEFsbG93T3ZlcmxhcDogJWQAQWN0aXZlSWQ6IDB4JTA4WC8weCUwOFggKCUuMmYgc2VjKSwgQWxsb3dPdmVybGFwOiAlZCwgU291cmNlOiAlcwBBY3RpdmVJZFdpbmRvdzogJyVzJwBNb3ZpbmdXaW5kb3c6ICclcycATmF2V2luZG93OiAnJXMnAE5hdklkOiAweCUwOFgsIE5hdkxheWVyOiAlZABOYXZJbnB1dFNvdXJjZTogJXMATmF2QWN0aXZlOiAlZCwgTmF2VmlzaWJsZTogJWQATmF2QWN0aXZhdGVJZDogMHglMDhYLCBOYXZJbnB1dElkOiAweCUwOFgATmF2RGlzYWJsZUhpZ2hsaWdodDogJWQsIE5hdkRpc2FibGVNb3VzZUhvdmVyOiAlZABOYXZXaW5kb3dpbmdUYXJnZXQ6ICclcycARHJhZ0Ryb3A6ICVkLCBTb3VyY2VJZCA9IDB4JTA4WCwgUGF5bG9hZCAiJXMiICglZCBieXRlcykAIyNPdmVybGF5ACVzLyVzXyUwOFgAJXMvJTA4WAAjUkVTSVpFACMjI05hdldpbmRvd2luZ0xpc3QAKFBvcHVwKQAoTWFpbiBtZW51IGJhcikAKFVudGl0bGVkKQBQb3M9JWYsJWYAU2l6ZT0lZiwlZgBDb2xsYXBzZWQ9JWQAIyMjAFslc11bJXNdCgBQb3M9JWQsJWQKAFNpemU9JWQsJWQKAENvbGxhcHNlZD0lZAoAJXMgKCVkKQAlcyAnJXMnLCAlZCBAIDB4JXAAUG9zOiAoJS4xZiwlLjFmKSwgU2l6ZTogKCUuMWYsJS4xZiksIFNpemVDb250ZW50cyAoJS4xZiwlLjFmKQBGbGFnczogMHglMDhYICglcyVzJXMlcyVzJXMlcyVzJXMuLikAQ2hpbGQgAFRvb2x0aXAgAFBvcHVwIABNb2RhbCAAQ2hpbGRNZW51IABOb1NhdmVkU2V0dGluZ3MgAE5vTW91c2VJbnB1dHMATm9OYXZJbnB1dHMAQWx3YXlzQXV0b1Jlc2l6ZQBTY3JvbGw6ICglLjJmLyUuMmYsJS4yZi8lLjJmKQBBY3RpdmU6ICVkLyVkLCBXcml0ZUFjY2Vzc2VkOiAlZCwgQmVnaW5PcmRlcldpdGhpbkNvbnRleHQ6ICVkAEFwcGVhcmluZzogJWQsIEhpZGRlbjogJWQgKFJlZyAlZCBSZXNpemUgJWQpLCBTa2lwSXRlbXM6ICVkAE5hdkxhc3RJZHM6IDB4JTA4WCwweCUwOFgs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bnRDb250ZXh0AERlYnVnQ2hlY2tWZXJzaW9uQW5kRGF0YUxheW91dABHZXRJTwBHZXRTdHlsZQBHZXREcmF3RGF0YQBOZXdGcmFtZQBSZW5kZXIARW5kRnJhbWUAU2hvd0RlbW9XaW5kb3cAU2hvd0Fib3V0V2luZG93AFNob3dNZXRyaWNzV2luZG93AFNob3dTdHlsZUVkaXRvcgBTaG93U3R5bGVTZWxlY3RvcgBTaG93Rm9udFNlbGVjdG9yAFNob3dVc2VyR3VpZGUAR2V0VmVyc2lvbgBTdHlsZUNvbG9yc0RhcmsAU3R5bGVDb2xvcnNDbGFzc2ljAFN0eWxlQ29sb3JzTGlnaHQAQmVnaW4ARW5kAEJlZ2luQ2hpbGQARW5kQ2hpbGQAR2V0Q29udGVudFJlZ2lvbk1heABHZXRDb250ZW50UmVnaW9uQXZhaWwAR2V0Q29udGVudFJlZ2lvbkF2YWlsV2lkdGgAR2V0V2luZG93Q29udGVudFJlZ2lvbk1pbgBHZXRXaW5kb3dDb250ZW50UmVnaW9uTWF4AEdldFdpbmRvd0NvbnRlbnRSZWdpb25XaWR0aABHZXRXaW5kb3dEcmF3TGlzdABHZXRXaW5kb3dQb3MAR2V0V2luZG93U2l6ZQBHZXRXaW5kb3dXaWR0aABHZXRXaW5kb3dIZWlnaHQASXNXaW5kb3dDb2xsYXBzZWQASXNXaW5kb3dBcHBlYXJpbmcAU2V0V2luZG93Rm9udFNjYWxlAFNldE5leHRXaW5kb3dQb3MAU2V0TmV4dFdpbmRvd1NpemUAU2V0TmV4dFdpbmRvd1NpemVDb25zdHJhaW50cwBTZXROZXh0V2luZG93Q29udGVudFNpemUAU2V0TmV4dFdpbmRvd0NvbGxhcHNlZABTZXROZXh0V2luZG93Rm9jdXMAU2V0TmV4dFdpbmRvd0JnQWxwaGEAU2V0V2luZG93UG9zAFNldFdpbmRvd1NpemUAU2V0V2luZG93Q29sbGFwc2VkAFNldFdpbmRvd0ZvY3VzAFNldFdpbmRvd05hbWVQb3MAU2V0V2luZG93TmFtZVNpemUAU2V0V2luZG93TmFtZUNvbGxhcHNlZABTZXRXaW5kb3dOYW1lRm9jdXMAR2V0U2Nyb2xsWABHZXRTY3JvbGxZAEdldFNjcm9sbE1heFgAR2V0U2Nyb2xsTWF4WQBTZXRTY3JvbGxYAFNldFNjcm9sbFkAU2V0U2Nyb2xsSGVyZVkAU2V0U2Nyb2xsRnJvbVBvc1kAU2V0U3RhdGVTdG9yYWdlAEdldFN0YXRlU3RvcmFnZQBQdXNoRm9udABQb3BGb250AFB1c2hTdHlsZUNvbG9yAFBvcFN0eWxlQ29sb3IAUHVzaFN0eWxlVmFyAFBvcFN0eWxlVmFyAEdldFN0eWxlQ29sb3JWZWM0AEdldEZvbnQAR2V0Rm9udFNpemUAR2V0Rm9udFRleFV2V2hpdGVQaXhlbABHZXRDb2xvclUzMl9BAEdldENvbG9yVTMyX0IAR2V0Q29sb3JVMzJfQwBQdXNoSXRlbVdpZHRoAFBvcEl0ZW1XaWR0aABDYWxjSXRlbVdpZHRoAFB1c2hUZXh0V3JhcFBvcwBQb3BUZXh0V3JhcFBvcwBQdXNoQWxsb3dLZXlib2FyZEZvY3VzAFBvcEFsbG93S2V5Ym9hcmRGb2N1cwBQdXNoQnV0dG9uUmVwZWF0AFBvcEJ1dHRvblJlcGVhdABTZXBhcmF0b3IAU2FtZUxpbmUATmV3TGluZQBTcGFjaW5nAER1bW15AEluZGVudABVbmluZGVudABCZWdpbkdyb3VwAEVuZEdyb3VwAEdldEN1cnNvclBvcwBHZXRDdXJzb3JQb3NYAEdldEN1cnNvclBvc1kAU2V0Q3Vyc29yUG9zAFNldEN1cnNvclBvc1gAU2V0Q3Vyc29yUG9zWQBHZXRDdXJzb3JTdGFydFBvcwBHZXRDdXJzb3JTY3JlZW5Qb3MAU2V0Q3Vyc29yU2NyZWVuUG9zAEFsaWduVGV4dFRvRnJhbWVQYWRkaW5nAEdldFRleHRMaW5lSGVpZ2h0AEdldFRleHRMaW5lSGVpZ2h0V2l0aFNwYWNpbmcAR2V0RnJhbWVIZWlnaHQAR2V0RnJhbWVIZWlnaHRXaXRoU3BhY2luZwBDb2x1bW5zAE5leHRDb2x1bW4AR2V0Q29sdW1uSW5kZXgAR2V0Q29sdW1uV2lkdGgAU2V0Q29sdW1uV2lkdGgAR2V0Q29sdW1uT2Zmc2V0AFNldENvbHVtbk9mZnNldABHZXRDb2x1bW5zQ291bnQAUHVzaElEAFBvcElEAEdldElEAFRleHRVbmZvcm1hdHRlZABUZXh0AFRleHRWAFRleHRDb2xvcmVkAFRleHRDb2xvcmVkVgBUZXh0RGlzYWJsZWQAVGV4dERpc2FibGVkVgBUZXh0V3JhcHBlZABUZXh0V3JhcHBlZFYATGFiZWxUZXh0AExhYmVsVGV4dFYAQnVsbGV0VGV4dABCdWxsZXRUZXh0VgBCdWxsZXQAQnV0dG9uAFNtYWxsQnV0dG9uAEFycm93QnV0dG9uAEludmlzaWJsZUJ1dHRvbgBJbWFnZQBJbWFnZUJ1dHRvbgBDaGVja2JveABDaGVja2JveEZsYWdzAFJhZGlvQnV0dG9uX0EAUmFkaW9CdXR0b25fQgBQbG90TGluZXMAUGxvdEhpc3RvZ3JhbQBQcm9ncmVzc0JhcgBCZWdpbkNvbWJvAEVuZENvbWJvAENvbWJvAERyYWdGbG9hdABEcmFnRmxvYXQyAERyYWdGbG9hdDMARHJhZ0Zsb2F0NABEcmFnRmxvYXRSYW5nZTIARHJhZ0ludABEcmFnSW50MgBEcmFnSW50MwBEcmFnSW50NABEcmFnSW50UmFuZ2UyAERyYWdTY2FsYXIASW5wdXRUZXh0AElucHV0VGV4dE11bHRpbGluZQBJbnB1dEZsb2F0AElucHV0RmxvYXQyAElucHV0RmxvYXQzAElucHV0RmxvYXQ0AElucHV0SW50AElucHV0SW50MgBJbnB1dEludDMASW5wdXRJbnQ0AElucHV0RG91YmxlAElucHV0U2NhbGFyAFNsaWRlckZsb2F0AFNsaWRlckZsb2F0MgBTbGlkZXJGbG9hdDMAU2xpZGVyRmxvYXQ0AFNsaWRlckFuZ2xlAFNsaWRlckludABTbGlkZXJJbnQyAFNsaWRlckludDMAU2xpZGVySW50NABTbGlkZXJTY2FsYXIAVlNsaWRlckZsb2F0AFZTbGlkZXJJbnQAVlNsaWRlclNjYWxhcgBDb2xvckVkaXQzAENvbG9yRWRpdDQAQ29sb3JQaWNrZXIzAENvbG9yUGlja2VyNABDb2xvckJ1dHRvbgBTZXRDb2xvckVkaXRPcHRpb25zAFRyZWVOb2RlX0EAVHJlZU5vZGVfQgBUcmVlTm9kZV9DAFRyZWVOb2RlRXhfQQBUcmVlTm9kZUV4X0IAVHJlZU5vZGVFeF9DAFRyZWVQdXNoX0EAVHJlZVB1c2hfQgBUcmVlUG9wAFRyZWVBZHZhbmNlVG9MYWJlbFBvcwBHZXRUcmVlTm9kZVRvTGFiZWxTcGFjaW5nAFNldE5leHRUcmVlTm9kZU9wZW4AQ29sbGFwc2luZ0hlYWRlcl9BAENvbGxhcHNpbmdIZWFkZXJfQgBTZWxlY3RhYmxlX0EAU2VsZWN0YWJsZV9CAExpc3RCb3hfQQBMaXN0Qm94X0IATGlzdEJveEhlYWRlcl9BAExpc3RCb3hIZWFkZXJfQgBMaXN0Qm94Rm9vdGVyAFZhbHVlX0EAVmFsdWVfQgBWYWx1ZV9DAFZhbHVlX0QAU2V0VG9vbHRpcABCZWdpblRvb2x0aXAARW5kVG9vbHRpcABCZWdpbk1haW5NZW51QmFyAEVuZE1haW5NZW51QmFyAEJlZ2luTWVudUJhcgBFbmRNZW51QmFyAEJlZ2luTWVudQBFbmRNZW51AE1lbnVJdGVtX0EATWVudUl0ZW1fQgBPcGVuUG9wdXAAT3BlblBvcHVwT25JdGVtQ2xpY2sAQmVnaW5Qb3B1cABCZWdpblBvcHVwTW9kYWwAQmVnaW5Qb3B1cENvbnRleHRJdGVtAEJlZ2luUG9wdXBDb250ZXh0V2luZG93AEJlZ2luUG9wdXBDb250ZXh0Vm9pZABFbmRQb3B1cABJc1BvcHVwT3BlbgBDbG9zZUN1cnJlbnRQb3B1cABCZWdpblRhYkJhcgBFbmRUYWJCYXIAQmVnaW5UYWJJdGVtAEVuZFRhYkl0ZW0AU2V0VGFiSXRlbUNsb3NlZABMb2dUb1RUWQBMb2dUb0ZpbGUATG9nVG9DbGlwYm9hcmQATG9nRmluaXNoAExvZ0J1dHRvbnMATG9nVGV4dABCZWdpbkRyYWdEcm9wU291cmNlAFNldERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFNvdXJjZQBCZWdpbkRyYWdEcm9wVGFyZ2V0AEFjY2VwdERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFRhcmdldABHZXREcmFnRHJvcFBheWxvYWQAUHVzaENsaXBSZWN0AFBvcENsaXBSZWN0AFNldEl0ZW1EZWZhdWx0Rm9jdXMAU2V0S2V5Ym9hcmRGb2N1c0hlcmUASXNJdGVtSG92ZXJlZABJc0l0ZW1BY3RpdmUASXNJdGVtRWRpdGVkAElzSXRlbUZvY3VzZWQASXNJdGVtQ2xpY2tlZABJc0l0ZW1WaXNpYmxlAElzSXRlbURlYWN0aXZhdGVkAElzSXRlbURlYWN0aXZhdGVkQWZ0ZXJFZGl0AElzQW55SXRlbUhvdmVyZWQASXNBbnlJdGVtQWN0aXZlAElzQW55SXRlbUZvY3VzZWQAR2V0SXRlbVJlY3RNaW4AR2V0SXRlbVJlY3RNYXgAR2V0SXRlbVJlY3RTaXplAFNldEl0ZW1BbGxvd092ZXJsYXAASXNXaW5kb3dGb2N1c2VkAElzV2luZG93SG92ZXJlZABJc1JlY3RWaXNpYmxlX0EASXNSZWN0VmlzaWJsZV9CAEdldFRpbWUAR2V0RnJhbWVDb3VudABHZXRPdmVybGF5RHJhd0xpc3QAR2V0RHJhd0xpc3RTaGFyZWREYXRhAEdldFN0eWxlQ29sb3JOYW1lAENhbGNUZXh0U2l6ZQBDYWxjTGlzdENsaXBwaW5nAEJlZ2luQ2hpbGRGcmFtZQBFbmRDaGlsZEZyYW1lAENvbG9yQ29udmVydFUzMlRvRmxvYXQ0AENvbG9yQ29udmVydEZsb2F0NFRvVTMyAENvbG9yQ29udmVydFJHQnRvSFNWAENvbG9yQ29udmVydEhTVnRvUkdCAEdldEtleUluZGV4AElzS2V5RG93bgBJc0tleVByZXNzZWQASXNLZXlSZWxlYXNlZABHZXRLZXlQcmVzc2VkQW1vdW50AElzTW91c2VEb3duAElzQW55TW91c2VEb3duAElzTW91c2VDbGlja2VkAElzTW91c2VEb3VibGVDbGlja2VkAElzTW91c2VSZWxlYXNlZABJc01vdXNlRHJhZ2dpbmcASXNNb3VzZUhvdmVyaW5nUmVjdABJc01vdXNlUG9zVmFsaWQAR2V0TW91c2VQb3MAR2V0TW91c2VQb3NPbk9wZW5pbmdDdXJyZW50UG9wdXAAR2V0TW91c2VEcmFnRGVsdGEAUmVzZXRNb3VzZURyYWdEZWx0YQBHZXRNb3VzZUN1cnNvcgBTZXRNb3VzZUN1cnNvcgBDYXB0dXJlS2V5Ym9hcmRGcm9tQXBwAENhcHR1cmVNb3VzZUZyb21BcHAAR2V0Q2xpcGJvYXJkVGV4dABTZXRDbGlwYm9hcmRUZXh0AExvYWRJbmlTZXR0aW5nc0Zyb21NZW1vcnkAU2F2ZUluaVNldHRpbmdzVG9NZW1vcnkAU2V0QWxsb2NhdG9yRnVuY3Rpb25zAE1lbUFsbG9jAE1lbUZyZWUAaWlpAE4xMGVtc2NyaXB0ZW4zdmFsRQB2aWlpaQBOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TXzExY2hhcl90cmFpdHNJY0VFTlNfOWFsbG9jYXRvckljRUVFRQBOU3QzX18yMjFfX2Jhc2ljX3N0cmluZ19jb21tb25JTGIxRUVFAGlpaWZpAHgAeQAyM2ltcG9ydF9tYXliZV9udWxsX3ZhbHVlSTZJbVZlYzJFAGlpaWlpAGlpaWYAaWlpZmYAaWlpaQAxMmFjY2Vzc192YWx1ZUlmTG0xRUUAdmlmZmZpaWkAegB3ADZJbVZlYzIAdmlpZmlpADEyYWNjZXNzX3ZhbHVlSWlMbTFFRQBpaWlpZmkAUDIwSW1EcmF3TGlzdFNoYXJlZERhdGEAMjBJbURyYXdMaXN0U2hhcmVkRGF0YQBQMTBJbURyYXdMaXN0ADEwSW1EcmF3TGlzdABkaQBpaWlpaWkAJXMAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TMF8xMWNoYXJfdHJhaXRzSWNFRU5TMF85YWxsb2NhdG9ySWNFRUVFRQAyNGltcG9ydF9tYXliZV9udWxsX3N0cmluZwAyM2FjY2Vzc19tYXliZV9udWxsX3ZhbHVlSWJMbTFFRQB2aWlmaQB2aWlpAGlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJZkxtNEVFADIzYWNjZXNzX21heWJlX251bGxfdmFsdWVJZkxtNEVFADEyYWNjZXNzX3ZhbHVlSWZMbTNFRQBpaWlpaWlpaWlpAHNldABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lkRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlkRQBsZW5ndGgAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lmRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlmRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lqRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlqRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lpRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlpRQBpaWlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJaUxtNEVFADEyYWNjZXNzX3ZhbHVlSWlMbTNFRQAxMmFjY2Vzc192YWx1ZUlpTG0yRUUAJS4wZiBkZWcAMTJhY2Nlc3NfdmFsdWVJZkxtMkVFAGlpaWlpaWlpAGlpaWlkZGlpADEyYWNjZXNzX3ZhbHVlSWRMbTFFRQBQMjZJbUd1aUlucHV0VGV4dENhbGxiYWNrRGF0YQAyNkltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAGlpaWlpaWlpaWlpAHZpZmlpAHZpaWlpaWlpaWlpADEyYWNjZXNzX3ZhbHVlSWpMbTFFRQAxMmFjY2Vzc192YWx1ZUliTG0xRUUAdmlpaWlpaWkAbnVtYmVyAHZpaWYAZmlpAGlpAHZpaQBQNkltRm9udAA2SW1Gb250AFBLNkltVmVjNAA2SW1WZWM0AFRPRE86ICVzCgBhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoZW1zY3JpcHRlbjo6dmFsKSBjb25zdAB2aWZmAHZpaWlpaQBQMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAdmlmAGZpAHN0cmluZwBQMTBJbUd1aVN0eWxlADEwSW1HdWlTdHlsZQB2aQBQMTBJbURyYXdEYXRhADEwSW1EcmF3RGF0YQBQN0ltR3VpSU8AN0ltR3VpSU8AUDE2V3JhcEltR3VpQ29udGV4dAAxNldyYXBJbUd1aUNvbnRleHQAUDExSW1Gb250QXRsYXMAMTFJbUZvbnRBdGxhcwBJbUd1aVN0eWxlAEFscGhhAFdpbmRvd1BhZGRpbmcAV2luZG93Um91bmRpbmcAV2luZG93Qm9yZGVyU2l6ZQBXaW5kb3dNaW5TaXplAFdpbmRvd1RpdGxlQWxpZ24AQ2hpbGRSb3VuZGluZwBDaGlsZEJvcmRlclNpemUAUG9wdXBSb3VuZGluZwBQb3B1cEJvcmRlclNpemUARnJhbWVQYWRkaW5nAEZyYW1lUm91bmRpbmcARnJhbWVCb3JkZXJTaXplAEl0ZW1TcGFjaW5nAEl0ZW1Jbm5lclNwYWNpbmcAVG91Y2hFeHRyYVBhZGRpbmcASW5kZW50U3BhY2luZwBDb2x1bW5zTWluU3BhY2luZwBTY3JvbGxiYXJTaXplAFNjcm9sbGJhclJvdW5kaW5nAEdyYWJNaW5TaXplAEdyYWJSb3VuZGluZwBUYWJSb3VuZGluZwBUYWJCb3JkZXJTaXplAEJ1dHRvblRleHRBbGlnbgBEaXNwbGF5V2luZG93UGFkZGluZwBEaXNwbGF5U2FmZUFyZWFQYWRkaW5nAE1vdXNlQ3Vyc29yU2NhbGUAQW50aUFsaWFzZWRMaW5lcwBBbnRpQWxpYXNlZEZpbGwAQ3VydmVUZXNzZWxsYXRpb25Ub2wAX2dldEF0X0NvbG9ycwBfc2V0QXRfQ29sb3JzAFNjYWxlQWxsU2l6ZXMAUDZJbVZlYzQAUEs2SW1WZWMyAHYAUEsxMEltR3VpU3R5bGUASW1HdWlJTwBDb25maWdGbGFncwBCYWNrZW5kRmxhZ3MARGlzcGxheVNpemUARGVsdGFUaW1lAEluaVNhdmluZ1JhdGUASW5pRmlsZW5hbWUATG9nRmlsZW5hbWUATW91c2VEb3VibGVDbGlja1RpbWUATW91c2VEb3VibGVDbGlja01heERpc3QATW91c2VEcmFnVGhyZXNob2xkAF9nZXRBdF9LZXlNYXAAX3NldEF0X0tleU1hcABLZXlSZXBlYXREZWxheQBLZXlSZXBlYXRSYXRlAFVzZXJEYXRhAEZvbnRzAEZvbnRHbG9iYWxTY2FsZQBGb250QWxsb3dVc2VyU2NhbGluZwBGb250RGVmYXVsdABEaXNwbGF5RnJhbWVidWZmZXJTY2FsZQBEaXNwbGF5VmlzaWJsZU1pbgBEaXNwbGF5VmlzaWJsZU1heABNb3VzZURyYXdDdXJzb3IAQ29uZmlnTWFjT1NYQmVoYXZpb3JzAENvbmZpZ0lucHV0VGV4dEN1cnNvckJsaW5rAENvbmZpZ1dpbmRvd3NSZXNpemVGcm9tRWRnZXMAQ29uZmlnV2luZG93c01vdmVGcm9tVGl0bGVCYXJPbmx5AEdldENsaXBib2FyZFRleHRGbgBTZXRDbGlwYm9hcmRUZXh0Rm4AQ2xpcGJvYXJkVXNlckRhdGEATW91c2VQb3MAX2dldEF0X01vdXNlRG93bgBfc2V0QXRfTW91c2VEb3duAE1vdXNlV2hlZWwAS2V5Q3RybABLZXlTaGlmdABLZXlBbHQAS2V5U3VwZXIAX2dldEF0X0tleXNEb3duAF9zZXRBdF9LZXlzRG93bgBfZ2V0QXRfTmF2SW5wdXRzAF9zZXRBdF9OYXZJbnB1dHMAQWRkSW5wdXRDaGFyYWN0ZXIAQWRkSW5wdXRDaGFyYWN0ZXJzVVRGOABDbGVhcklucHV0Q2hhcmFjdGVycwBXYW50Q2FwdHVyZU1vdXNlAFdhbnRDYXB0dXJlS2V5Ym9hcmQAV2FudFRleHRJbnB1dABXYW50U2V0TW91c2VQb3MAV2FudFNhdmVJbmlTZXR0aW5ncwBOYXZBY3RpdmUATmF2VmlzaWJsZQBGcmFtZXJhdGUATWV0cmljc1JlbmRlclZlcnRpY2VzAE1ldHJpY3NSZW5kZXJJbmRpY2VzAE1ldHJpY3NSZW5kZXJXaW5kb3dzAE1ldHJpY3NBY3RpdmVXaW5kb3dzAE1ldHJpY3NBY3RpdmVBbGxvY2F0aW9ucwBNb3VzZURlbHRhAF9nZXRBdF9Nb3VzZUNsaWNrZWRQb3MAX2dldEF0X01vdXNlRG93bkR1cmF0aW9uAF9nZXRBdF9LZXlzRG93bkR1cmF0aW9uAF9nZXRBdF9OYXZJbnB1dHNEb3duRHVyYXRpb24AUEs3SW1HdWlJTwBpaWlpZgBmaWlpAEltRm9udEF0bGFzAEFkZEZvbnREZWZhdWx0AEFkZEZvbnRGcm9tTWVtb3J5VFRGAENsZWFyVGV4RGF0YQBDbGVhcklucHV0RGF0YQBDbGVhckZvbnRzAENsZWFyAEJ1aWxkAElzQnVpbHQAR2V0VGV4RGF0YUFzQWxwaGE4AEdldFRleERhdGFBc1JHQkEzMgBHZXRHbHlwaFJhbmdlc0RlZmF1bHQAR2V0R2x5cGhSYW5nZXNLb3JlYW4AR2V0R2x5cGhSYW5nZXNKYXBhbmVzZQBHZXRHbHlwaFJhbmdlc0NoaW5lc2VGdWxsAEdldEdseXBoUmFuZ2VzQ2hpbmVzZVNpbXBsaWZpZWRDb21tb24AR2V0R2x5cGhSYW5nZXNDeXJpbGxpYwBHZXRHbHlwaFJhbmdlc1RoYWkATG9ja2VkAEZsYWdzAFRleElEAFRleERlc2lyZWRXaWR0aABUZXhHbHlwaFBhZGRpbmcAVGV4V2lkdGgAVGV4SGVpZ2h0AFRleFV2U2NhbGUAVGV4VXZXaGl0ZVBpeGVsAEl0ZXJhdGVGb250cwBwaXhlbHMAd2lkdGgAaGVpZ2h0AGJ5dGVzX3Blcl9waXhlbABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0loRUUAaWlpaWZpaQBGb250RGF0YQBidWZmZXIAYnl0ZU9mZnNldABieXRlTGVuZ3RoAFRPRE86IEZvbnREYXRhICV6dSAlenUKAEZvbnREYXRhT3duZWRCeUF0bGFzAEZvbnRObwBTaXplUGl4ZWxzAE92ZXJzYW1wbGVIAE92ZXJzYW1wbGVWAFBpeGVsU25hcEgAR2x5cGhFeHRyYVNwYWNpbmcAR2x5cGhPZmZzZXQAR2x5cGhSYW5nZXMAR2x5cGhNaW5BZHZhbmNlWABHbHlwaE1heEFkdmFuY2VYAE1lcmdlTW9kZQBSYXN0ZXJpemVyRmxhZ3MAUmFzdGVyaXplck11bHRpcGx5AE5hbWUAUEsxMUltRm9udEF0bGFzAEltRm9udABGb250U2l6ZQBTY2FsZQBEaXNwbGF5T2Zmc2V0AEl0ZXJhdGVHbHlwaHMARmFsbGJhY2tHbHlwaABGYWxsYmFja0FkdmFuY2VYAEZhbGxiYWNrQ2hhcgBDb25maWdEYXRhQ291bnQASXRlcmF0ZUNvbmZpZ0RhdGEAQXNjZW50AERlc2NlbnQATWV0cmljc1RvdGFsU3VyZmFjZQBDbGVhck91dHB1dERhdGEAQnVpbGRMb29rdXBUYWJsZQBGaW5kR2x5cGgARmluZEdseXBoTm9GYWxsYmFjawBTZXRGYWxsYmFja0NoYXIAR2V0Q2hhckFkdmFuY2UASXNMb2FkZWQAR2V0RGVidWdOYW1lAENhbGNUZXh0U2l6ZUEAQ2FsY1dvcmRXcmFwUG9zaXRpb25BAFJlbmRlckNoYXIAdmlpaWZpaWkAaWlpZmlmAGlpaWZmZmlpaQA8dW5rbm93bj4AUEs2SW1Gb250AFBLMTFJbUZvbnRHbHlwaAAxMUltRm9udEdseXBoAFAxMkltRm9udENvbmZpZwAxMkltRm9udENvbmZpZwBQMTFJbUZvbnRHbHlwaABJbUZvbnRDb25maWcARHN0Rm9udABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShJbUZvbnRDb25maWcgJiwgZW1zY3JpcHRlbjo6dmFsKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShjb25zdCBJbUZvbnRDb25maWcgJikgY29uc3QAUEsxMkltRm9udENvbmZpZwBJbUZvbnRHbHlwaABDb2RlcG9pbnQAQWR2YW5jZVgAWDAAWTAAWDEAWTEAVTAAVjAAVTEAVjEASW1EcmF3RGF0YQBJdGVyYXRlRHJhd0xpc3RzAFZhbGlkAENtZExpc3RzQ291bnQAVG90YWxJZHhDb3VudABUb3RhbFZ0eENvdW50AERpc3BsYXlQb3MARGVJbmRleEFsbEJ1ZmZlcnMAU2NhbGVDbGlwUmVjdHMAUEsxMEltRHJhd0RhdGEAUEsxMEltRHJhd0xpc3QASW1EcmF3TGlzdABJdGVyYXRlRHJhd0NtZHMASWR4QnVmZmVyAFZ0eEJ1ZmZlcgBQdXNoQ2xpcFJlY3RGdWxsU2NyZWVuAFB1c2hUZXh0dXJlSUQAUG9wVGV4dHVyZUlEAEdldENsaXBSZWN0TWluAEdldENsaXBSZWN0TWF4AEFkZExpbmUAQWRkUmVjdABBZGRSZWN0RmlsbGVkAEFkZFJlY3RGaWxsZWRNdWx0aUNvbG9yAEFkZFF1YWQAQWRkUXVhZEZpbGxlZABBZGRUcmlhbmdsZQBBZGRUcmlhbmdsZUZpbGxlZABBZGRDaXJjbGUAQWRkQ2lyY2xlRmlsbGVkAEFkZFRleHRfQQBBZGRUZXh0X0IAQWRkSW1hZ2UAQWRkSW1hZ2VRdWFkAEFkZEltYWdlUm91bmRlZABBZGRQb2x5bGluZQBBZGRDb252ZXhQb2x5RmlsbGVkAEFkZEJlemllckN1cnZlAFBhdGhDbGVhcgBQYXRoTGluZVRvAFBhdGhMaW5lVG9NZXJnZUR1cGxpY2F0ZQBQYXRoRmlsbENvbnZleABQYXRoU3Ryb2tlAFBhdGhBcmNUbwBQYXRoQXJjVG9GYXN0AFBhdGhCZXppZXJDdXJ2ZVRvAFBhdGhSZWN0AENoYW5uZWxzU3BsaXQAQ2hhbm5lbHNNZXJnZQBDaGFubmVsc1NldEN1cnJlbnQAQWRkQ2FsbGJhY2sAQWRkRHJhd0NtZABDbGVhckZyZWVNZW1vcnkAUHJpbVJlc2VydmUAUHJpbVJlY3QAUHJpbVJlY3RVVgBQcmltUXVhZFVWAFByaW1Xcml0ZVZ0eABQcmltV3JpdGVJZHgAUHJpbVZ0eABVcGRhdGVDbGlwUmVjdABVcGRhdGVUZXh0dXJlSUQAdmlpaWlpaWlpaWlpAHZpaWlpZmkAdmlpaWZmZmkAdmlpaWlmAHZpaWlpaWlpZmkAdmlpaWlpaWlpZmkAdmlpaWlpaWlpaWlpaQB2aWlpZmlpaWZpADIzaW1wb3J0X21heWJlX251bGxfdmFsdWVJNkltVmVjNEUAdmlpaWZpaQB2aWlpZmlpZgB2aWlpaWlpAHZpaWlpaWlmAHZpaWlpaWlpZgB2aWlpaWlpaWkAdmlpaWlpZmkAdmlpaWlpZmlmAHZpaWlpaWYATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJY0VFAFBLOUltRHJhd0NtZAA5SW1EcmF3Q21kAEltRHJhd0NtZABFbGVtQ291bnQAQ2xpcFJlY3QAVGV4dHVyZUlkAFA5SW1EcmF3Q21kAEltR3VpTGlzdENsaXBwZXIAU3RhcnRQb3NZAEl0ZW1zSGVpZ2h0AEl0ZW1zQ291bnQAU3RlcE5vAERpc3BsYXlTdGFydABEaXNwbGF5RW5kAFN0ZXAAUDE2SW1HdWlMaXN0Q2xpcHBlcgAxNkltR3VpTGlzdENsaXBwZXIAdmlpaWYAUEsxNkltR3VpTGlzdENsaXBwZXIASW1HdWlTaXplQ2FsbGJhY2tEYXRhAFBvcwBDdXJyZW50U2l6ZQBEZXNpcmVkU2l6ZQBQSzIxSW1HdWlTaXplQ2FsbGJhY2tEYXRhAEltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAEV2ZW50RmxhZwBFdmVudENoYXIARXZlbnRLZXkAQnVmAEJ1ZlRleHRMZW4AQnVmU2l6ZQBCdWZEaXJ0eQBDdXJzb3JQb3MAU2VsZWN0aW9uU3RhcnQAU2VsZWN0aW9uRW5kAERlbGV0ZUNoYXJzAEluc2VydENoYXJzAEhhc1NlbGVjdGlvbgBQSzI2SW1HdWlJbnB1dFRleHRDYWxsYmFja0RhdGEASW1WZWM0AFNldABDb3B5AEVxdWFscwBJbVZlYzIAUDZJbVZlYzIAV3JhcEltR3VpQ29udGV4dABQSzE2V3JhcEltR3VpQ29udGV4dABtYWxsaW5mbwBhcmVuYQBvcmRibGtzAHNtYmxrcwBoYmxrcwBoYmxraGQAdXNtYmxrcwBmc21ibGtzAHVvcmRibGtzAGZvcmRibGtzAGtlZXBjb3N0AHZvaWQAYm9vbABzdGQ6OnN0cmluZwBzdGQ6OmJhc2ljX3N0cmluZzx1bnNpZ25lZCBjaGFyPgBzdGQ6OndzdHJpbmcAZW1zY3JpcHRlbjo6dmFsAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgc2hvcnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgaW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludDE2X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQzMl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZyBkb3VibGU+AE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SWVFRQBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxkb3VibGU+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBsb25nPgBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0ltRUUAZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZz4ATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJbEVFAE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SXRFRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lzRUUATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJYUVFAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGNoYXI+AE5TdDNfXzIxMmJhc2ljX3N0cmluZ0l3TlNfMTFjaGFyX3RyYWl0c0l3RUVOU185YWxsb2NhdG9ySXdFRUVFAE5TdDNfXzIxMmJhc2ljX3N0cmluZ0loTlNfMTFjaGFyX3RyYWl0c0loRUVOU185YWxsb2NhdG9ySWhFRUVFAGRvdWJsZQBmbG9hdAB1bnNpZ25lZCBsb25nAGxvbmcAdW5zaWduZWQgaW50AGludAB1bnNpZ25lZCBzaG9ydABzaG9ydAB1bnNpZ25lZCBjaGFyAHNpZ25lZCBjaGFyAGNoYXIAAAECBAcDBgUALSsgICAwWDB4AChudWxsKQAtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBOQU4ALgBpbmZpbml0eQBuYW4AcndhAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXM6ICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXMAdGVybWluYXRpbmcgd2l0aCAlcyBmb3JlaWduIGV4Y2VwdGlvbgB0ZXJtaW5hdGluZwB1bmNhdWdodABTdDlleGNlcHRpb24ATjEwX19jeHhhYml2MTE2X19zaGltX3R5cGVfaW5mb0UAU3Q5dHlwZV9pbmZvAE4xMF9fY3h4YWJpdjEyMF9fc2lfY2xhc3NfdHlwZV9pbmZvRQBOMTBfX2N4eGFiaXYxMTdfX2NsYXNzX3R5cGVfaW5mb0UAcHRocmVhZF9vbmNlIGZhaWx1cmUgaW4gX19jeGFfZ2V0X2dsb2JhbHNfZmFzdCgpAGNhbm5vdCBjcmVhdGUgcHRocmVhZCBrZXkgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAY2Fubm90IHplcm8gb3V0IHRocmVhZCB2YWx1ZSBmb3IgX19jeGFfZ2V0X2dsb2JhbHMoKQB0ZXJtaW5hdGVfaGFuZGxlciB1bmV4cGVjdGVkbHkgcmV0dXJuZWQAU3QxMWxvZ2ljX2Vycm9yAFN0MTJsZW5ndGhfZXJyb3IATjEwX19jeHhhYml2MTE5X19wb2ludGVyX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19wYmFzZV90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjEyM19fZnVuZGFtZW50YWxfdHlwZV9pbmZvRQB2AFB2AERuAGIAYwBoAGEAcwB0AGkAagBsAG0AZgBkAE4xMF9fY3h4YWJpdjEyMV9fdm1pX2NsYXNzX3R5cGVfaW5mb0U=";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile);}function getBinary(){try{if(Module["wasmBinary"]){return new Uint8Array(Module["wasmBinary"])}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(Module["readBinary"]){return Module["readBinary"](wasmBinaryFile)}else{throw"both async and sync fetching of the wasm failed"}}catch(err){abort(err);}}function getBinaryPromise(){if(!Module["wasmBinary"]&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch==="function"){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()})}return new Promise(function(resolve,reject){resolve(getBinary());})}function createWasm(env){var info={"env":env,"global":{"NaN":NaN,Infinity:Infinity},"global.Math":Math,"asm2wasm":asm2wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;removeRunDependency();}addRunDependency();function receiveInstantiatedSource(output){receiveInstance(output["instance"]);}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason);})}function instantiateAsync(){if(!Module["wasmBinary"]&&typeof WebAssembly.instantiateStreaming==="function"&&!isDataURI(wasmBinaryFile)&&typeof fetch==="function"){return WebAssembly.instantiateStreaming(fetch(wasmBinaryFile,{credentials:"same-origin"}),info).then(receiveInstantiatedSource,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");instantiateArrayBuffer(receiveInstantiatedSource);})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module["instantiateWasm"]){try{return Module["instantiateWasm"](info,receiveInstance)}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}}instantiateAsync();return {}}Module["asm"]=function(global,env,providedBuffer){env["memory"]=wasmMemory;env["table"]=wasmTable=new WebAssembly.Table({"initial":1442,"maximum":1442,"element":"anyfunc"});env["__memory_base"]=1024;env["__table_base"]=0;var exports=createWasm(env);return exports};__ATINIT__.push({func:function(){globalCtors();}});function ___cxa_allocate_exception(size){return _malloc(size)}function ___cxa_throw(ptr,type,destructor){throw ptr}function ___lock(){}var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0;}else{buffer.push(curr);}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get();}};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall145(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();return SYSCALLS.doReadv(stream,iov,iovcnt)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j>2]=value;return value}function ___syscall221(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___unlock(){}function getShiftFromSize(size){switch(size){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError("Unknown type size: "+size)}}function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<256;++i){codes[i]=String.fromCharCode(i);}embind_charCodes=codes;}var embind_charCodes=undefined;function readLatin1String(ptr){var ret="";var c=ptr;while(HEAPU8[c]){ret+=embind_charCodes[HEAPU8[c++]];}return ret}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return "_unknown"}name=name.replace(/[^a-zA-Z0-9_]/g,"$");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return "_"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return new Function("body","return function "+name+"() {\n"+' "use strict";'+" return body.apply(this, arguments);\n"+"};\n")(body)}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+"\n"+stack.replace(/^Error(:[^\n]*)?\n/,"");}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+": "+this.message}};return errorClass}var BindingError=undefined;function throwBindingError(message){throw new BindingError(message)}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes;});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError("Mismatched type converter count");}for(var i=0;i>shift])},destructorFunction:null});}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass;}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass;}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return {count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+" instance already deleted");}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr);}else{$$.ptrType.registeredClass.rawDestructor($$.ptr);}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$);}}function attachFinalizer(handle){if("undefined"===typeof FinalizationGroup){attachFinalizer=function(handle){return handle};return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn("object already deleted: "+$$.ptr);}else{releaseClassHandle($$);}}});attachFinalizer=function(handle){finalizationGroup.register(handle,handle.$$,handle.$$);return handle};detachFinalizer=function(handle){finalizationGroup.unregister(handle.$$);};return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined;}}function ClassHandle_isDeleted(){return !this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj["delete"]();}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes);}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype["isAliasOf"]=ClassHandle_isAliasOf;ClassHandle.prototype["clone"]=ClassHandle_clone;ClassHandle.prototype["delete"]=ClassHandle_delete;ClassHandle.prototype["isDeleted"]=ClassHandle_isDeleted;ClassHandle.prototype["deleteLater"]=ClassHandle_deleteLater;}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError("Function '"+humanName+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+proto[methodName].overloadTable+")!");}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc;}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError("Cannot register public name '"+name+"' twice");}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError("Cannot register multiple overloads of a function with the same number of arguments ("+numArguments+")!");}Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments;}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[];}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError("Expected null or instance of "+desiredClass.name+", got an instance of "+ptrClass.name);}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass;}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr);}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError("Passing raw pointer to smart pointer is illegal");}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{var clonedHandle=handle["clone"]();ptr=this.rawShare(ptr,__emval_register(function(){clonedHandle["delete"]();}));if(destructors!==null){destructors.push(this.rawDestructor,ptr);}}break;default:throwBindingError("Unsupporting sharing policy");}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+handle.$$.ptrType.name+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function simpleReadValueFromPointer(pointer){return this["fromWireType"](HEAPU32[pointer>>2])}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr);}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr);}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle["delete"]();}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k]);}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes);}}function init_embind(){Module["getInheritedInstanceCount"]=getInheritedInstanceCount;Module["getLiveInheritedInstances"]=getLiveInheritedInstances;Module["flushPendingDeletes"]=flushPendingDeletes;Module["setDelayFunction"]=setDelayFunction;}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError("ptr should not be undefined");}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass;}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError("makeClassHandle requires ptr and ptrType");}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError("Both smartPtrType and smartPtr must be specified");}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance["clone"]()}else{var rv=registeredInstance["clone"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType;}else{toType=registeredPointerRecord.pointerType;}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype["argPackAdvance"]=8;RegisteredPointer.prototype["readValueFromPointer"]=simpleReadValueFromPointer;RegisteredPointer.prototype["deleteObject"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype["fromWireType"]=RegisteredPointer_fromWireType;}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this["toWireType"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}else{this["toWireType"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}}else{this["toWireType"]=genericPointerToWireType;}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError("Replacing nonexistant public symbol");}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;Module[name].argCount=numArguments;}}function embind__requireFunction(signature,rawFunction){signature=readLatin1String(signature);function makeDynCaller(dynCall){var args=[];for(var i=1;i>2)+i]);}return array}function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr);}}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName="constructor "+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[];}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError("Cannot register multiple constructors with identical number of parameters ("+(argCount-1)+") for class '"+classType.name+"'! Overload resolution is currently only performed using the parameter count, not actual type info!")}classType.registeredClass.constructor_body[argCount-1]=function unboundTypeHandler(){throwUnboundTypeError("Cannot construct "+classType.name+" due to unbound types",rawArgTypes);};whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){classType.registeredClass.constructor_body[argCount-1]=function constructor_body(){if(arguments.length!==argCount-1){throwBindingError(humanName+" called with "+arguments.length+" arguments, expected "+(argCount-1));}var destructors=[];var args=new Array(argCount);args[0]=rawConstructor;for(var i=1;i0?", ":"")+argsListWired;}invokerFnBody+=(returns?"var rv = ":"")+"invoker(fn"+(argsListWired.length>0?", ":"")+argsListWired+");\n";if(needsDestructorStack){invokerFnBody+="runDestructors(destructors);\n";}else{for(var i=isClassMethodFunc?1:2;i4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle);}}function count_emval_handles(){var count=0;for(var i=5;i>2])};case 3:return function(pointer){return this["fromWireType"](HEAPF64[pointer>>3])};default:throw new TypeError("Unknown float type: "+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":function(value){return value},"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}return value},"argPackAdvance":8,"readValueFromPointer":floatReadValueFromPointer(name,shift),destructorFunction:null});}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError("Cannot call "+name+" due to unbound types",argTypes);},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return []});}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError("Unknown integer type: "+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295;}var shift=getShiftFromSize(size);var fromWireType=function(value){return value};if(minRange===0){var bitshift=32-8*size;fromWireType=function(value){return value<>>bitshift};}var isUnsignedType=name.indexOf("unsigned")!=-1;registerType(primitiveType,{name:name,"fromWireType":fromWireType,"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}if(valuemaxRange){throw new TypeError('Passing a number "'+_embind_repr(value)+'" from JS side to C/C++ side to an argument of type "'+name+'", which is outside the valid range ['+minRange+", "+maxRange+"]!")}return isUnsignedType?value>>>0:value|0},"argPackAdvance":8,"readValueFromPointer":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null});}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(heap["buffer"],data,size)}name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":decodeMemoryView,"argPackAdvance":8,"readValueFromPointer":decodeMemoryView},{ignoreDuplicateRegistrations:true});}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name==="std::string";registerType(rawType,{name:name,"fromWireType":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var endChar=HEAPU8[value+4+length];var endCharSwap=0;if(endChar!=0){endCharSwap=endChar;HEAPU8[value+4+length]=0;}var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(HEAPU8[currentBytePtr]==0){var stringSegment=UTF8ToString(decodeStartPtr);if(str===undefined)str=stringSegment;else{str+=String.fromCharCode(0);str+=stringSegment;}decodeStartPtr=currentBytePtr+1;}}if(endCharSwap!=0)HEAPU8[value+4+length]=endCharSwap;}else{var a=new Array(length);for(var i=0;i>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1);}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError("String has UTF-16 code units that do not fit in 8 bits");}HEAPU8[ptr+4+i]=charCode;}}else{for(var i=0;i>2];var a=new Array(length);var start=value+4>>shift;for(var i=0;i>2]=length;var start=ptr+4>>shift;for(var i=0;i>2]=rd;return returnType["toWireType"](destructors,handle)}function __emval_lookupTypes(argCount,argTypes,argWireTypes){var a=new Array(argCount);for(var i=0;i>2)+i],"parameter "+i);}return a}function __emval_call(handle,argCount,argTypes,argv){handle=requireHandle(handle);var types=__emval_lookupTypes(argCount,argTypes);var args=new Array(argCount);for(var i=0;i4){emval_handle_array[handle].refcount+=1;}}function __emval_new_array(){return __emval_register([])}function __emval_new_cstring(v){return __emval_register(getStringOrSymbol(v))}function __emval_new_object(){return __emval_register({})}function __emval_run_destructors(handle){var destructors=emval_handle_array[handle].value;runDestructors(destructors);__emval_decref(handle);}function __emval_set_property(handle,key,value){handle=requireHandle(handle);key=requireHandle(key);value=requireHandle(value);handle[key]=value;}function __emval_strictly_equals(first,second){first=requireHandle(first);second=requireHandle(second);return first===second}function __emval_take_value(type,argv){type=requireRegisteredType(type,"_emval_take_value");var v=type["readValueFromPointer"](argv);return __emval_register(v)}function __emval_typeof(handle){handle=requireHandle(handle);return __emval_register(typeof handle)}function _abort(){Module["abort"]();}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest);}function abortOnCannotGrowMemory(requestedSize){abort("OOM");}function _emscripten_resize_heap(requestedSize){abortOnCannotGrowMemory();}embind_init_charCodes();BindingError=Module["BindingError"]=extendError(Error,"BindingError");InternalError=Module["InternalError"]=extendError(Error,"InternalError");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module["UnboundTypeError"]=extendError(Error,"UnboundTypeError");init_emval();function intArrayToString(array){var ret=[];for(var i=0;i255){chr&=255;}ret.push(String.fromCharCode(chr));}return ret.join("")}var decodeBase64=typeof atob==="function"?atob:function(input){var keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2);}if(enc4!==64){output=output+String.fromCharCode(chr3);}}while(i0){return}preRun();if(runDependencies>0)return;if(Module["calledRun"])return;function doRun(){if(Module["calledRun"])return;Module["calledRun"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun();}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("");},1);doRun();},1);}else{doRun();}}Module["run"]=run;function abort(what){if(Module["onAbort"]){Module["onAbort"](what);}if(what!==undefined){out(what);err(what);what=JSON.stringify(what);}else{what="";}ABORT=true;throw"abort("+what+"). Build with -s ASSERTIONS=1 for more info."}Module["abort"]=abort;if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()();}}Module["noExitRuntime"]=true;run(); + + + return Module +} +); +})(); +module.exports = Module; +}); + +let bind; +const IMGUI_VERSION = "1.71"; // bind.IMGUI_VERSION; +// #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert)) +function IMGUI_CHECKVERSION() { return DebugCheckVersionAndDataLayout(IMGUI_VERSION, bind.ImGuiIOSize, bind.ImGuiStyleSize, bind.ImVec2Size, bind.ImVec4Size, bind.ImDrawVertSize, bind.ImDrawIdxSize); } +function IM_ASSERT(_EXPR) { if (!_EXPR) { + throw new Error(); +} } +function IM_ARRAYSIZE(_ARR) { + if (_ARR instanceof ImStringBuffer) { + return _ARR.size; + } + else { + return _ARR.length; + } +} +class ImStringBuffer { + constructor(size, buffer = "") { + this.size = size; + this.buffer = buffer; + } +} +var ImGuiWindowFlags; +(function (ImGuiWindowFlags) { + ImGuiWindowFlags[ImGuiWindowFlags["None"] = 0] = "None"; + ImGuiWindowFlags[ImGuiWindowFlags["NoTitleBar"] = 1] = "NoTitleBar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoResize"] = 2] = "NoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMove"] = 4] = "NoMove"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollbar"] = 8] = "NoScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollWithMouse"] = 16] = "NoScrollWithMouse"; + ImGuiWindowFlags[ImGuiWindowFlags["NoCollapse"] = 32] = "NoCollapse"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysAutoResize"] = 64] = "AlwaysAutoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBackground"] = 128] = "NoBackground"; + ImGuiWindowFlags[ImGuiWindowFlags["NoSavedSettings"] = 256] = "NoSavedSettings"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMouseInputs"] = 512] = "NoMouseInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["MenuBar"] = 1024] = "MenuBar"; + ImGuiWindowFlags[ImGuiWindowFlags["HorizontalScrollbar"] = 2048] = "HorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoFocusOnAppearing"] = 4096] = "NoFocusOnAppearing"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBringToFrontOnFocus"] = 8192] = "NoBringToFrontOnFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysVerticalScrollbar"] = 16384] = "AlwaysVerticalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysHorizontalScrollbar"] = 32768] = "AlwaysHorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysUseWindowPadding"] = 65536] = "AlwaysUseWindowPadding"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavInputs"] = 262144] = "NoNavInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavFocus"] = 524288] = "NoNavFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["UnsavedDocument"] = 1048576] = "UnsavedDocument"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNav"] = 786432] = "NoNav"; + ImGuiWindowFlags[ImGuiWindowFlags["NoDecoration"] = 43] = "NoDecoration"; + ImGuiWindowFlags[ImGuiWindowFlags["NoInputs"] = 786944] = "NoInputs"; + // [Internal] + ImGuiWindowFlags[ImGuiWindowFlags["NavFlattened"] = 8388608] = "NavFlattened"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildWindow"] = 16777216] = "ChildWindow"; + ImGuiWindowFlags[ImGuiWindowFlags["Tooltip"] = 33554432] = "Tooltip"; + ImGuiWindowFlags[ImGuiWindowFlags["Popup"] = 67108864] = "Popup"; + ImGuiWindowFlags[ImGuiWindowFlags["Modal"] = 134217728] = "Modal"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildMenu"] = 268435456] = "ChildMenu"; +})(ImGuiWindowFlags || (ImGuiWindowFlags = {})); +var ImGuiInputTextFlags; +(function (ImGuiInputTextFlags) { + ImGuiInputTextFlags[ImGuiInputTextFlags["None"] = 0] = "None"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsDecimal"] = 1] = "CharsDecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsHexadecimal"] = 2] = "CharsHexadecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsUppercase"] = 4] = "CharsUppercase"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsNoBlank"] = 8] = "CharsNoBlank"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AutoSelectAll"] = 16] = "AutoSelectAll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["EnterReturnsTrue"] = 32] = "EnterReturnsTrue"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCompletion"] = 64] = "CallbackCompletion"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackHistory"] = 128] = "CallbackHistory"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackAlways"] = 256] = "CallbackAlways"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCharFilter"] = 512] = "CallbackCharFilter"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AllowTabInput"] = 1024] = "AllowTabInput"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CtrlEnterForNewLine"] = 2048] = "CtrlEnterForNewLine"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoHorizontalScroll"] = 4096] = "NoHorizontalScroll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AlwaysInsertMode"] = 8192] = "AlwaysInsertMode"; + ImGuiInputTextFlags[ImGuiInputTextFlags["ReadOnly"] = 16384] = "ReadOnly"; + ImGuiInputTextFlags[ImGuiInputTextFlags["Password"] = 32768] = "Password"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoUndoRedo"] = 65536] = "NoUndoRedo"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsScientific"] = 131072] = "CharsScientific"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackResize"] = 262144] = "CallbackResize"; + // [Internal] + ImGuiInputTextFlags[ImGuiInputTextFlags["Multiline"] = 1048576] = "Multiline"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoMarkEdited"] = 2097152] = "NoMarkEdited"; +})(ImGuiInputTextFlags || (ImGuiInputTextFlags = {})); +var ImGuiTreeNodeFlags; +(function (ImGuiTreeNodeFlags) { + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["None"] = 0] = "None"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Selected"] = 1] = "Selected"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Framed"] = 2] = "Framed"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["AllowItemOverlap"] = 4] = "AllowItemOverlap"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoTreePushOnOpen"] = 8] = "NoTreePushOnOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoAutoOpenOnLog"] = 16] = "NoAutoOpenOnLog"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["DefaultOpen"] = 32] = "DefaultOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnDoubleClick"] = 64] = "OpenOnDoubleClick"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnArrow"] = 128] = "OpenOnArrow"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Leaf"] = 256] = "Leaf"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Bullet"] = 512] = "Bullet"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["FramePadding"] = 1024] = "FramePadding"; + //SpanAllAvailWidth = 1 << 11, // FIXME: TODO: Extend hit box horizontally even if not framed + //NoScrollOnOpen = 1 << 12, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NavLeftJumpsBackHere"] = 8192] = "NavLeftJumpsBackHere"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["CollapsingHeader"] = 26] = "CollapsingHeader"; +})(ImGuiTreeNodeFlags || (ImGuiTreeNodeFlags = {})); +var ImGuiSelectableFlags; +(function (ImGuiSelectableFlags) { + ImGuiSelectableFlags[ImGuiSelectableFlags["None"] = 0] = "None"; + ImGuiSelectableFlags[ImGuiSelectableFlags["DontClosePopups"] = 1] = "DontClosePopups"; + ImGuiSelectableFlags[ImGuiSelectableFlags["SpanAllColumns"] = 2] = "SpanAllColumns"; + ImGuiSelectableFlags[ImGuiSelectableFlags["AllowDoubleClick"] = 4] = "AllowDoubleClick"; + ImGuiSelectableFlags[ImGuiSelectableFlags["Disabled"] = 8] = "Disabled"; // Cannot be selected, display greyed out text +})(ImGuiSelectableFlags || (ImGuiSelectableFlags = {})); +var ImGuiComboFlags; +(function (ImGuiComboFlags) { + ImGuiComboFlags[ImGuiComboFlags["None"] = 0] = "None"; + ImGuiComboFlags[ImGuiComboFlags["PopupAlignLeft"] = 1] = "PopupAlignLeft"; + ImGuiComboFlags[ImGuiComboFlags["HeightSmall"] = 2] = "HeightSmall"; + ImGuiComboFlags[ImGuiComboFlags["HeightRegular"] = 4] = "HeightRegular"; + ImGuiComboFlags[ImGuiComboFlags["HeightLarge"] = 8] = "HeightLarge"; + ImGuiComboFlags[ImGuiComboFlags["HeightLargest"] = 16] = "HeightLargest"; + ImGuiComboFlags[ImGuiComboFlags["NoArrowButton"] = 32] = "NoArrowButton"; + ImGuiComboFlags[ImGuiComboFlags["NoPreview"] = 64] = "NoPreview"; + ImGuiComboFlags[ImGuiComboFlags["HeightMask_"] = 30] = "HeightMask_"; +})(ImGuiComboFlags || (ImGuiComboFlags = {})); +var ImGuiTabBarFlags; +(function (ImGuiTabBarFlags) { + ImGuiTabBarFlags[ImGuiTabBarFlags["None"] = 0] = "None"; + ImGuiTabBarFlags[ImGuiTabBarFlags["Reorderable"] = 1] = "Reorderable"; + ImGuiTabBarFlags[ImGuiTabBarFlags["AutoSelectNewTabs"] = 2] = "AutoSelectNewTabs"; + ImGuiTabBarFlags[ImGuiTabBarFlags["TabListPopupButton"] = 4] = "TabListPopupButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoCloseWithMiddleMouseButton"] = 8] = "NoCloseWithMiddleMouseButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTabListScrollingButtons"] = 16] = "NoTabListScrollingButtons"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTooltip"] = 32] = "NoTooltip"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyResizeDown"] = 64] = "FittingPolicyResizeDown"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyScroll"] = 128] = "FittingPolicyScroll"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyMask_"] = 192] = "FittingPolicyMask_"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyDefault_"] = 64] = "FittingPolicyDefault_"; +})(ImGuiTabBarFlags || (ImGuiTabBarFlags = {})); +var ImGuiTabItemFlags; +(function (ImGuiTabItemFlags) { + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_None"] = 0] = "ImGuiTabItemFlags_None"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_UnsavedDocument"] = 1] = "ImGuiTabItemFlags_UnsavedDocument"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_SetSelected"] = 2] = "ImGuiTabItemFlags_SetSelected"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"] = 4] = "ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoPushId"] = 8] = "ImGuiTabItemFlags_NoPushId"; // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem() +})(ImGuiTabItemFlags || (ImGuiTabItemFlags = {})); +var ImGuiFocusedFlags; +(function (ImGuiFocusedFlags) { + ImGuiFocusedFlags[ImGuiFocusedFlags["None"] = 0] = "None"; + ImGuiFocusedFlags[ImGuiFocusedFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiFocusedFlags || (ImGuiFocusedFlags = {})); +var ImGuiHoveredFlags; +(function (ImGuiHoveredFlags) { + ImGuiHoveredFlags[ImGuiHoveredFlags["None"] = 0] = "None"; + ImGuiHoveredFlags[ImGuiHoveredFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByPopup"] = 8] = "AllowWhenBlockedByPopup"; + //AllowWhenBlockedByModal = 1 << 4, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet. + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByActiveItem"] = 32] = "AllowWhenBlockedByActiveItem"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenOverlapped"] = 64] = "AllowWhenOverlapped"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenDisabled"] = 128] = "AllowWhenDisabled"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RectOnly"] = 104] = "RectOnly"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiHoveredFlags || (ImGuiHoveredFlags = {})); +var ImGuiDragDropFlags; +(function (ImGuiDragDropFlags) { + // BeginDragDropSource() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["None"] = 0] = "None"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoPreviewTooltip"] = 1] = "SourceNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoDisableHover"] = 2] = "SourceNoDisableHover"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoHoldToOpenOthers"] = 4] = "SourceNoHoldToOpenOthers"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAllowNullID"] = 8] = "SourceAllowNullID"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceExtern"] = 16] = "SourceExtern"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAutoExpirePayload"] = 32] = "SourceAutoExpirePayload"; + // AcceptDragDropPayload() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptBeforeDelivery"] = 1024] = "AcceptBeforeDelivery"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoDrawDefaultRect"] = 2048] = "AcceptNoDrawDefaultRect"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoPreviewTooltip"] = 4096] = "AcceptNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptPeekOnly"] = 3072] = "AcceptPeekOnly"; +})(ImGuiDragDropFlags || (ImGuiDragDropFlags = {})); +var ImGuiDataType; +(function (ImGuiDataType) { + ImGuiDataType[ImGuiDataType["S8"] = 0] = "S8"; + ImGuiDataType[ImGuiDataType["U8"] = 1] = "U8"; + ImGuiDataType[ImGuiDataType["S16"] = 2] = "S16"; + ImGuiDataType[ImGuiDataType["U16"] = 3] = "U16"; + ImGuiDataType[ImGuiDataType["S32"] = 4] = "S32"; + ImGuiDataType[ImGuiDataType["U32"] = 5] = "U32"; + ImGuiDataType[ImGuiDataType["S64"] = 6] = "S64"; + ImGuiDataType[ImGuiDataType["U64"] = 7] = "U64"; + ImGuiDataType[ImGuiDataType["Float"] = 8] = "Float"; + ImGuiDataType[ImGuiDataType["Double"] = 9] = "Double"; + ImGuiDataType[ImGuiDataType["COUNT"] = 10] = "COUNT"; +})(ImGuiDataType || (ImGuiDataType = {})); +var ImGuiDir; +(function (ImGuiDir) { + ImGuiDir[ImGuiDir["None"] = -1] = "None"; + ImGuiDir[ImGuiDir["Left"] = 0] = "Left"; + ImGuiDir[ImGuiDir["Right"] = 1] = "Right"; + ImGuiDir[ImGuiDir["Up"] = 2] = "Up"; + ImGuiDir[ImGuiDir["Down"] = 3] = "Down"; + ImGuiDir[ImGuiDir["COUNT"] = 4] = "COUNT"; +})(ImGuiDir || (ImGuiDir = {})); +var ImGuiKey; +(function (ImGuiKey) { + ImGuiKey[ImGuiKey["Tab"] = 0] = "Tab"; + ImGuiKey[ImGuiKey["LeftArrow"] = 1] = "LeftArrow"; + ImGuiKey[ImGuiKey["RightArrow"] = 2] = "RightArrow"; + ImGuiKey[ImGuiKey["UpArrow"] = 3] = "UpArrow"; + ImGuiKey[ImGuiKey["DownArrow"] = 4] = "DownArrow"; + ImGuiKey[ImGuiKey["PageUp"] = 5] = "PageUp"; + ImGuiKey[ImGuiKey["PageDown"] = 6] = "PageDown"; + ImGuiKey[ImGuiKey["Home"] = 7] = "Home"; + ImGuiKey[ImGuiKey["End"] = 8] = "End"; + ImGuiKey[ImGuiKey["Insert"] = 9] = "Insert"; + ImGuiKey[ImGuiKey["Delete"] = 10] = "Delete"; + ImGuiKey[ImGuiKey["Backspace"] = 11] = "Backspace"; + ImGuiKey[ImGuiKey["Space"] = 12] = "Space"; + ImGuiKey[ImGuiKey["Enter"] = 13] = "Enter"; + ImGuiKey[ImGuiKey["Escape"] = 14] = "Escape"; + ImGuiKey[ImGuiKey["A"] = 15] = "A"; + ImGuiKey[ImGuiKey["C"] = 16] = "C"; + ImGuiKey[ImGuiKey["V"] = 17] = "V"; + ImGuiKey[ImGuiKey["X"] = 18] = "X"; + ImGuiKey[ImGuiKey["Y"] = 19] = "Y"; + ImGuiKey[ImGuiKey["Z"] = 20] = "Z"; + ImGuiKey[ImGuiKey["COUNT"] = 21] = "COUNT"; +})(ImGuiKey || (ImGuiKey = {})); +var ImGuiNavInput; +(function (ImGuiNavInput) { + // Gamepad Mapping + ImGuiNavInput[ImGuiNavInput["Activate"] = 0] = "Activate"; + ImGuiNavInput[ImGuiNavInput["Cancel"] = 1] = "Cancel"; + ImGuiNavInput[ImGuiNavInput["Input"] = 2] = "Input"; + ImGuiNavInput[ImGuiNavInput["Menu"] = 3] = "Menu"; + ImGuiNavInput[ImGuiNavInput["DpadLeft"] = 4] = "DpadLeft"; + ImGuiNavInput[ImGuiNavInput["DpadRight"] = 5] = "DpadRight"; + ImGuiNavInput[ImGuiNavInput["DpadUp"] = 6] = "DpadUp"; + ImGuiNavInput[ImGuiNavInput["DpadDown"] = 7] = "DpadDown"; + ImGuiNavInput[ImGuiNavInput["LStickLeft"] = 8] = "LStickLeft"; + ImGuiNavInput[ImGuiNavInput["LStickRight"] = 9] = "LStickRight"; + ImGuiNavInput[ImGuiNavInput["LStickUp"] = 10] = "LStickUp"; + ImGuiNavInput[ImGuiNavInput["LStickDown"] = 11] = "LStickDown"; + ImGuiNavInput[ImGuiNavInput["FocusPrev"] = 12] = "FocusPrev"; + ImGuiNavInput[ImGuiNavInput["FocusNext"] = 13] = "FocusNext"; + ImGuiNavInput[ImGuiNavInput["TweakSlow"] = 14] = "TweakSlow"; + ImGuiNavInput[ImGuiNavInput["TweakFast"] = 15] = "TweakFast"; + // [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them. + // Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) may be directly reading from io.KeyDown[] instead of io.NavInputs[]. + ImGuiNavInput[ImGuiNavInput["KeyMenu_"] = 16] = "KeyMenu_"; + ImGuiNavInput[ImGuiNavInput["KeyTab_"] = 17] = "KeyTab_"; + ImGuiNavInput[ImGuiNavInput["KeyLeft_"] = 18] = "KeyLeft_"; + ImGuiNavInput[ImGuiNavInput["KeyRight_"] = 19] = "KeyRight_"; + ImGuiNavInput[ImGuiNavInput["KeyUp_"] = 20] = "KeyUp_"; + ImGuiNavInput[ImGuiNavInput["KeyDown_"] = 21] = "KeyDown_"; + ImGuiNavInput[ImGuiNavInput["COUNT"] = 22] = "COUNT"; + ImGuiNavInput[ImGuiNavInput["InternalStart_"] = 16] = "InternalStart_"; +})(ImGuiNavInput || (ImGuiNavInput = {})); +var ImGuiConfigFlags; +(function (ImGuiConfigFlags) { + ImGuiConfigFlags[ImGuiConfigFlags["None"] = 0] = "None"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableKeyboard"] = 1] = "NavEnableKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableGamepad"] = 2] = "NavEnableGamepad"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableSetMousePos"] = 4] = "NavEnableSetMousePos"; + ImGuiConfigFlags[ImGuiConfigFlags["NavNoCaptureKeyboard"] = 8] = "NavNoCaptureKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouse"] = 16] = "NoMouse"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouseCursorChange"] = 32] = "NoMouseCursorChange"; + ImGuiConfigFlags[ImGuiConfigFlags["IsSRGB"] = 1048576] = "IsSRGB"; + ImGuiConfigFlags[ImGuiConfigFlags["IsTouchScreen"] = 2097152] = "IsTouchScreen"; // Application is using a touch screen instead of a mouse. +})(ImGuiConfigFlags || (ImGuiConfigFlags = {})); +var ImGuiCol; +(function (ImGuiCol) { + ImGuiCol[ImGuiCol["Text"] = 0] = "Text"; + ImGuiCol[ImGuiCol["TextDisabled"] = 1] = "TextDisabled"; + ImGuiCol[ImGuiCol["WindowBg"] = 2] = "WindowBg"; + ImGuiCol[ImGuiCol["ChildBg"] = 3] = "ChildBg"; + ImGuiCol[ImGuiCol["PopupBg"] = 4] = "PopupBg"; + ImGuiCol[ImGuiCol["Border"] = 5] = "Border"; + ImGuiCol[ImGuiCol["BorderShadow"] = 6] = "BorderShadow"; + ImGuiCol[ImGuiCol["FrameBg"] = 7] = "FrameBg"; + ImGuiCol[ImGuiCol["FrameBgHovered"] = 8] = "FrameBgHovered"; + ImGuiCol[ImGuiCol["FrameBgActive"] = 9] = "FrameBgActive"; + ImGuiCol[ImGuiCol["TitleBg"] = 10] = "TitleBg"; + ImGuiCol[ImGuiCol["TitleBgActive"] = 11] = "TitleBgActive"; + ImGuiCol[ImGuiCol["TitleBgCollapsed"] = 12] = "TitleBgCollapsed"; + ImGuiCol[ImGuiCol["MenuBarBg"] = 13] = "MenuBarBg"; + ImGuiCol[ImGuiCol["ScrollbarBg"] = 14] = "ScrollbarBg"; + ImGuiCol[ImGuiCol["ScrollbarGrab"] = 15] = "ScrollbarGrab"; + ImGuiCol[ImGuiCol["ScrollbarGrabHovered"] = 16] = "ScrollbarGrabHovered"; + ImGuiCol[ImGuiCol["ScrollbarGrabActive"] = 17] = "ScrollbarGrabActive"; + ImGuiCol[ImGuiCol["CheckMark"] = 18] = "CheckMark"; + ImGuiCol[ImGuiCol["SliderGrab"] = 19] = "SliderGrab"; + ImGuiCol[ImGuiCol["SliderGrabActive"] = 20] = "SliderGrabActive"; + ImGuiCol[ImGuiCol["Button"] = 21] = "Button"; + ImGuiCol[ImGuiCol["ButtonHovered"] = 22] = "ButtonHovered"; + ImGuiCol[ImGuiCol["ButtonActive"] = 23] = "ButtonActive"; + ImGuiCol[ImGuiCol["Header"] = 24] = "Header"; + ImGuiCol[ImGuiCol["HeaderHovered"] = 25] = "HeaderHovered"; + ImGuiCol[ImGuiCol["HeaderActive"] = 26] = "HeaderActive"; + ImGuiCol[ImGuiCol["Separator"] = 27] = "Separator"; + ImGuiCol[ImGuiCol["SeparatorHovered"] = 28] = "SeparatorHovered"; + ImGuiCol[ImGuiCol["SeparatorActive"] = 29] = "SeparatorActive"; + ImGuiCol[ImGuiCol["ResizeGrip"] = 30] = "ResizeGrip"; + ImGuiCol[ImGuiCol["ResizeGripHovered"] = 31] = "ResizeGripHovered"; + ImGuiCol[ImGuiCol["ResizeGripActive"] = 32] = "ResizeGripActive"; + ImGuiCol[ImGuiCol["Tab"] = 33] = "Tab"; + ImGuiCol[ImGuiCol["TabHovered"] = 34] = "TabHovered"; + ImGuiCol[ImGuiCol["TabActive"] = 35] = "TabActive"; + ImGuiCol[ImGuiCol["TabUnfocused"] = 36] = "TabUnfocused"; + ImGuiCol[ImGuiCol["TabUnfocusedActive"] = 37] = "TabUnfocusedActive"; + ImGuiCol[ImGuiCol["PlotLines"] = 38] = "PlotLines"; + ImGuiCol[ImGuiCol["PlotLinesHovered"] = 39] = "PlotLinesHovered"; + ImGuiCol[ImGuiCol["PlotHistogram"] = 40] = "PlotHistogram"; + ImGuiCol[ImGuiCol["PlotHistogramHovered"] = 41] = "PlotHistogramHovered"; + ImGuiCol[ImGuiCol["TextSelectedBg"] = 42] = "TextSelectedBg"; + ImGuiCol[ImGuiCol["DragDropTarget"] = 43] = "DragDropTarget"; + ImGuiCol[ImGuiCol["NavHighlight"] = 44] = "NavHighlight"; + ImGuiCol[ImGuiCol["NavWindowingHighlight"] = 45] = "NavWindowingHighlight"; + ImGuiCol[ImGuiCol["NavWindowingDimBg"] = 46] = "NavWindowingDimBg"; + ImGuiCol[ImGuiCol["ModalWindowDimBg"] = 47] = "ModalWindowDimBg"; + ImGuiCol[ImGuiCol["COUNT"] = 48] = "COUNT"; +})(ImGuiCol || (ImGuiCol = {})); +var ImGuiStyleVar; +(function (ImGuiStyleVar) { + // Enum name ......................// Member in ImGuiStyle structure (see ImGuiStyle for descriptions) + ImGuiStyleVar[ImGuiStyleVar["Alpha"] = 0] = "Alpha"; + ImGuiStyleVar[ImGuiStyleVar["WindowPadding"] = 1] = "WindowPadding"; + ImGuiStyleVar[ImGuiStyleVar["WindowRounding"] = 2] = "WindowRounding"; + ImGuiStyleVar[ImGuiStyleVar["WindowBorderSize"] = 3] = "WindowBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowMinSize"] = 4] = "WindowMinSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowTitleAlign"] = 5] = "WindowTitleAlign"; + // WindowMenuButtonPosition, // ImGuiDir WindowMenuButtonPosition + ImGuiStyleVar[ImGuiStyleVar["ChildRounding"] = 6] = "ChildRounding"; + ImGuiStyleVar[ImGuiStyleVar["ChildBorderSize"] = 7] = "ChildBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["PopupRounding"] = 8] = "PopupRounding"; + ImGuiStyleVar[ImGuiStyleVar["PopupBorderSize"] = 9] = "PopupBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["FramePadding"] = 10] = "FramePadding"; + ImGuiStyleVar[ImGuiStyleVar["FrameRounding"] = 11] = "FrameRounding"; + ImGuiStyleVar[ImGuiStyleVar["FrameBorderSize"] = 12] = "FrameBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["ItemSpacing"] = 13] = "ItemSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ItemInnerSpacing"] = 14] = "ItemInnerSpacing"; + ImGuiStyleVar[ImGuiStyleVar["IndentSpacing"] = 15] = "IndentSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarSize"] = 16] = "ScrollbarSize"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarRounding"] = 17] = "ScrollbarRounding"; + ImGuiStyleVar[ImGuiStyleVar["GrabMinSize"] = 18] = "GrabMinSize"; + ImGuiStyleVar[ImGuiStyleVar["GrabRounding"] = 19] = "GrabRounding"; + ImGuiStyleVar[ImGuiStyleVar["TabRounding"] = 20] = "TabRounding"; + ImGuiStyleVar[ImGuiStyleVar["ButtonTextAlign"] = 21] = "ButtonTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["SelectableTextAlign"] = 22] = "SelectableTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["Count_"] = 23] = "Count_"; + ImGuiStyleVar[ImGuiStyleVar["COUNT"] = 23] = "COUNT"; +})(ImGuiStyleVar || (ImGuiStyleVar = {})); +var ImGuiBackendFlags; +(function (ImGuiBackendFlags) { + ImGuiBackendFlags[ImGuiBackendFlags["None"] = 0] = "None"; + ImGuiBackendFlags[ImGuiBackendFlags["HasGamepad"] = 1] = "HasGamepad"; + ImGuiBackendFlags[ImGuiBackendFlags["HasMouseCursors"] = 2] = "HasMouseCursors"; + ImGuiBackendFlags[ImGuiBackendFlags["HasSetMousePos"] = 4] = "HasSetMousePos"; + ImGuiBackendFlags[ImGuiBackendFlags["RendererHasVtxOffset"] = 8] = "RendererHasVtxOffset"; +})(ImGuiBackendFlags || (ImGuiBackendFlags = {})); +var ImGuiColorEditFlags; +(function (ImGuiColorEditFlags) { + ImGuiColorEditFlags[ImGuiColorEditFlags["None"] = 0] = "None"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoAlpha"] = 2] = "NoAlpha"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoPicker"] = 4] = "NoPicker"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoOptions"] = 8] = "NoOptions"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSmallPreview"] = 16] = "NoSmallPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoInputs"] = 32] = "NoInputs"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoTooltip"] = 64] = "NoTooltip"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoLabel"] = 128] = "NoLabel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSidePreview"] = 256] = "NoSidePreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoDragDrop"] = 512] = "NoDragDrop"; + // User Options (right-click on widget to change some of them). You can set application defaults using SetColorEditOptions(). The idea is that you probably don't want to override them in most of your calls, let the user choose and/or call SetColorEditOptions() during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaBar"] = 65536] = "AlphaBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreview"] = 131072] = "AlphaPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreviewHalf"] = 262144] = "AlphaPreviewHalf"; + ImGuiColorEditFlags[ImGuiColorEditFlags["HDR"] = 524288] = "HDR"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayRGB"] = 1048576] = "DisplayRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHSV"] = 2097152] = "DisplayHSV"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHex"] = 4194304] = "DisplayHex"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Uint8"] = 8388608] = "Uint8"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Float"] = 16777216] = "Float"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueBar"] = 33554432] = "PickerHueBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueWheel"] = 67108864] = "PickerHueWheel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputRGB"] = 134217728] = "InputRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputHSV"] = 268435456] = "InputHSV"; + // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to + // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["_OptionsDefault"] = 177209344] = "_OptionsDefault"; + // [Internal] Masks + ImGuiColorEditFlags[ImGuiColorEditFlags["_DisplayMask"] = 7340032] = "_DisplayMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_DataTypeMask"] = 25165824] = "_DataTypeMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_PickerMask"] = 100663296] = "_PickerMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_InputMask"] = 402653184] = "_InputMask"; +})(ImGuiColorEditFlags || (ImGuiColorEditFlags = {})); +var ImGuiMouseCursor; +(function (ImGuiMouseCursor) { + ImGuiMouseCursor[ImGuiMouseCursor["None"] = -1] = "None"; + ImGuiMouseCursor[ImGuiMouseCursor["Arrow"] = 0] = "Arrow"; + ImGuiMouseCursor[ImGuiMouseCursor["TextInput"] = 1] = "TextInput"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeAll"] = 2] = "ResizeAll"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNS"] = 3] = "ResizeNS"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeEW"] = 4] = "ResizeEW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNESW"] = 5] = "ResizeNESW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNWSE"] = 6] = "ResizeNWSE"; + ImGuiMouseCursor[ImGuiMouseCursor["Hand"] = 7] = "Hand"; + ImGuiMouseCursor[ImGuiMouseCursor["Count_"] = 8] = "Count_"; + ImGuiMouseCursor[ImGuiMouseCursor["COUNT"] = 8] = "COUNT"; +})(ImGuiMouseCursor || (ImGuiMouseCursor = {})); +var ImGuiCond; +(function (ImGuiCond) { + ImGuiCond[ImGuiCond["Always"] = 1] = "Always"; + ImGuiCond[ImGuiCond["Once"] = 2] = "Once"; + ImGuiCond[ImGuiCond["FirstUseEver"] = 4] = "FirstUseEver"; + ImGuiCond[ImGuiCond["Appearing"] = 8] = "Appearing"; +})(ImGuiCond || (ImGuiCond = {})); +var ImDrawCornerFlags; +(function (ImDrawCornerFlags) { + ImDrawCornerFlags[ImDrawCornerFlags["TopLeft"] = 1] = "TopLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["TopRight"] = 2] = "TopRight"; + ImDrawCornerFlags[ImDrawCornerFlags["BotLeft"] = 4] = "BotLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["BotRight"] = 8] = "BotRight"; + ImDrawCornerFlags[ImDrawCornerFlags["Top"] = 3] = "Top"; + ImDrawCornerFlags[ImDrawCornerFlags["Bot"] = 12] = "Bot"; + ImDrawCornerFlags[ImDrawCornerFlags["Left"] = 5] = "Left"; + ImDrawCornerFlags[ImDrawCornerFlags["Right"] = 10] = "Right"; + ImDrawCornerFlags[ImDrawCornerFlags["All"] = 15] = "All"; +})(ImDrawCornerFlags || (ImDrawCornerFlags = {})); +var ImDrawListFlags; +(function (ImDrawListFlags) { + ImDrawListFlags[ImDrawListFlags["None"] = 0] = "None"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedLines"] = 1] = "AntiAliasedLines"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedFill"] = 2] = "AntiAliasedFill"; +})(ImDrawListFlags || (ImDrawListFlags = {})); +class ImVec2 { + constructor(x = 0.0, y = 0.0) { + this.x = x; + this.y = y; + } + Set(x, y) { + this.x = x; + this.y = y; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + return true; + } +} +ImVec2.ZERO = new ImVec2(0.0, 0.0); +ImVec2.UNIT = new ImVec2(1.0, 1.0); +ImVec2.UNIT_X = new ImVec2(1.0, 0.0); +ImVec2.UNIT_Y = new ImVec2(0.0, 1.0); +class ImVec4 { + constructor(x = 0.0, y = 0.0, z = 0.0, w = 1.0) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + } + Set(x, y, z, w) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + this.z = other.z; + this.w = other.w; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + if (this.z !== other.z) { + return false; + } + if (this.w !== other.w) { + return false; + } + return true; + } +} +ImVec4.ZERO = new ImVec4(0.0, 0.0, 0.0, 0.0); +ImVec4.UNIT = new ImVec4(1.0, 1.0, 1.0, 1.0); +ImVec4.UNIT_X = new ImVec4(1.0, 0.0, 0.0, 0.0); +ImVec4.UNIT_Y = new ImVec4(0.0, 1.0, 0.0, 0.0); +ImVec4.UNIT_Z = new ImVec4(0.0, 0.0, 1.0, 0.0); +ImVec4.UNIT_W = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.BLACK = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.WHITE = new ImVec4(1.0, 1.0, 1.0, 1.0); +//----------------------------------------------------------------------------- +// Helpers +//----------------------------------------------------------------------------- +// Lightweight std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug). +// Our implementation does NOT call C++ constructors/destructors. This is intentional and we do not require it. Do not use this class as a straight std::vector replacement in your code! +class ImVector extends Array { + constructor() { + super(...arguments); + this.Data = this; + // public: + // int Size; + // int Capacity; + // T* Data; + // typedef T value_type; + // typedef value_type* iterator; + // typedef const value_type* const_iterator; + // inline ImVector() { Size = Capacity = 0; Data = NULL; } + // inline ~ImVector() { if (Data) ImGui::MemFree(Data); } + // inline bool empty() const { return Size == 0; } + // inline int size() const { return Size; } + // inline int capacity() const { return Capacity; } + // inline value_type& operator[](int i) { IM_ASSERT(i < Size); return Data[i]; } + // inline const value_type& operator[](int i) const { IM_ASSERT(i < Size); return Data[i]; } + // inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } } + // inline iterator begin() { return Data; } + // inline const_iterator begin() const { return Data; } + // inline iterator end() { return Data + Size; } + // inline const_iterator end() const { return Data + Size; } + // inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; } + // inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; } + // inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; } + // inline int _grow_capacity(int size) const { int new_capacity = Capacity ? (Capacity + Capacity/2) : 8; return new_capacity > size ? new_capacity : size; } + // inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; } + // inline void resize(int new_size, const T& v){ if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) Data[n] = v; Size = new_size; } + // inline void reserve(int new_capacity) + // { + // if (new_capacity <= Capacity) + // return; + // T* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T)); + // if (Data) + // memcpy(new_data, Data, (size_t)Size * sizeof(T)); + // ImGui::MemFree(Data); + // Data = new_data; + // Capacity = new_capacity; + // } + // inline void push_back(const value_type& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); Data[Size++] = v; } + // inline void pop_back() { IM_ASSERT(Size > 0); Size--; } + // inline void push_front(const value_type& v) { if (Size == 0) push_back(v); else insert(Data, v); } + // inline iterator erase(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; } + // inline iterator erase(const_iterator it, const_iterator it_last){ IM_ASSERT(it >= Data && it < Data+Size && it_last > it && it_last <= Data+Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - count) * sizeof(value_type)); Size -= (int)count; return Data + off; } + // inline iterator erase_unsorted(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; if (it < Data+Size-1) memcpy(Data + off, Data + Size - 1, sizeof(value_type)); Size--; return Data + off; } + // inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= Data && it <= Data+Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; } + // inline bool contains(const value_type& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; } + } + get Size() { return this.length; } + empty() { return this.length === 0; } + clear() { this.length = 0; } + pop_back() { return this.pop(); } + push_back(value) { this.push(value); } +} +// Typically, 1 command = 1 GPU draw call (unless command is a callback) +// Pre 1.71 back-ends will typically ignore the VtxOffset/IdxOffset fields. When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset' +// is enabled, those fields allow us to render meshes larger than 64K vertices while keeping 16-bits indices. +class ImDrawCmd { + constructor(native) { + this.native = native; + // ImDrawCallback UserCallback; // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally. + this.UserCallback = null; // TODO + // void* UserCallbackData; // The draw callback code can access this. + this.UserCallbackData = null; // TODO + } + // unsigned int ElemCount; // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[]. + get ElemCount() { return this.native.ElemCount; } + // ImVec4 ClipRect; // Clipping rectangle (x1, y1, x2, y2) + get ClipRect() { return this.native.ClipRect; } + // ImTextureID TextureId; // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas. + get TextureId() { + return ImGuiContext.getTexture(this.native.TextureId); + } + // unsigned int VtxOffset; // Start offset in vertex buffer. Pre-1.71 or without ImGuiBackendFlags_RendererHasVtxOffset: always 0. With ImGuiBackendFlags_RendererHasVtxOffset: may be >0 to support meshes larger than 64K vertices with 16-bits indices. + get VtxOffset() { return this.native.VtxOffset; } + // unsigned int IdxOffset; // Start offset in index buffer. Always equal to sum of ElemCount drawn so far. + get IdxOffset() { return this.native.IdxOffset; } +} +// Vertex index +// (to allow large meshes with 16-bits indices: set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset in the renderer back-end) +// (to use 32-bits indices: override with '#define ImDrawIdx unsigned int' in imconfig.h) +// #ifndef ImDrawIdx +// typedef unsigned short ImDrawIdx; +// #endif +const ImDrawIdxSize = 2; // bind.ImDrawIdxSize; +// Vertex layout +// #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT +const ImDrawVertSize = 20; // bind.ImDrawVertSize; +const ImDrawVertPosOffset = 0; // bind.ImDrawVertPosOffset; +const ImDrawVertUVOffset = 8; // bind.ImDrawVertUVOffset; +const ImDrawVertColOffset = 16; // bind.ImDrawVertColOffset; +class ImDrawVert { + constructor(buffer, byteOffset = 0) { + this.pos = new Float32Array(buffer, byteOffset + bind.ImDrawVertPosOffset, 2); + this.uv = new Float32Array(buffer, byteOffset + bind.ImDrawVertUVOffset, 2); + this.col = new Uint32Array(buffer, byteOffset + bind.ImDrawVertColOffset, 1); + } +} +// Draw command list +// This is the low-level list of polygons that ImGui functions are filling. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering. +// Each ImGui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to access the current window draw list and draw custom primitives. +// You can interleave normal ImGui:: calls and adding primitives to the current draw list. +// All positions are generally in pixel coordinates (top-left at (0,0), bottom-right at io.DisplaySize), however you are totally free to apply whatever transformation matrix to want to the data (if you apply such transformation you'll want to apply it to ClipRect as well) +// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects. +class ImDrawList { + constructor(native) { + this.native = native; + } + IterateDrawCmds(callback) { + this.native.IterateDrawCmds((draw_cmd, ElemStart) => { + callback(new ImDrawCmd(draw_cmd), ElemStart); + }); + } + // This is what you have to render + // ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback. + // ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those + get IdxBuffer() { return this.native.IdxBuffer; } + // ImVector VtxBuffer; // Vertex buffer. + get VtxBuffer() { return this.native.VtxBuffer; } + // ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive. + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // [Internal, used while building lists] + // const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context) + // const char* _OwnerName; // Pointer to owner window's name for debugging + // unsigned int _VtxCurrentIdx; // [Internal] == VtxBuffer.Size + // ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImVector _ClipRectStack; // [Internal] + // ImVector _TextureIdStack; // [Internal] + // ImVector _Path; // [Internal] current path building + // int _ChannelsCurrent; // [Internal] current channel number (0) + // int _ChannelsCount; // [Internal] number of active channels (1+) + // ImVector _Channels; // [Internal] draw channels for columns API (not resized down so _ChannelsCount may be smaller than _Channels.Size) + // ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clear(); } + // ~ImDrawList() { ClearFreeMemory(); } + // IMGUI_API void PushClipRect(ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling) + PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect = false) { + this.native.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect); + } + // IMGUI_API void PushClipRectFullScreen(); + PushClipRectFullScreen() { this.native.PushClipRectFullScreen(); } + // IMGUI_API void PopClipRect(); + PopClipRect() { this.native.PopClipRect(); } + // IMGUI_API void PushTextureID(ImTextureID texture_id); + PushTextureID(texture_id) { + this.native.PushTextureID(ImGuiContext.setTexture(texture_id)); + } + // IMGUI_API void PopTextureID(); + PopTextureID() { this.native.PopTextureID(); } + // inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); } + GetClipRectMin(out = new ImVec2()) { + return this.native.GetClipRectMin(out); + } + // inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); } + GetClipRectMax(out = new ImVec2()) { + return this.native.GetClipRectMax(out); + } + // Primitives + // IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness = 1.0f); + AddLine(a, b, col, thickness = 1.0) { + this.native.AddLine(a, b, col, thickness); + } + // IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All, float thickness = 1.0f); // a: upper-left, b: lower-right, rounding_corners_flags: 4-bits corresponding to which corner to round + AddRect(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All, thickness = 1.0) { + this.native.AddRect(a, b, col, rounding, rounding_corners_flags, thickness); + } + // IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); // a: upper-left, b: lower-right + AddRectFilled(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { + this.native.AddRectFilled(a, b, col, rounding, rounding_corners_flags); + } + // IMGUI_API void AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left); + AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left) { + this.native.AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left); + } + // IMGUI_API void AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness = 1.0f); + AddQuad(a, b, c, d, col, thickness = 1.0) { + this.native.AddQuad(a, b, c, d, col, thickness); + } + // IMGUI_API void AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col); + AddQuadFilled(a, b, c, d, col) { + this.native.AddQuadFilled(a, b, c, d, col); + } + // IMGUI_API void AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness = 1.0f); + AddTriangle(a, b, c, col, thickness = 1.0) { + this.native.AddTriangle(a, b, c, col, thickness); + } + // IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col); + AddTriangleFilled(a, b, c, col) { + this.native.AddTriangleFilled(a, b, c, col); + } + // IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f); + AddCircle(centre, radius, col, num_segments = 12, thickness = 1.0) { + this.native.AddCircle(centre, radius, col, num_segments, thickness); + } + // IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12); + AddCircleFilled(centre, radius, col, num_segments = 12) { + this.native.AddCircleFilled(centre, radius, col, num_segments); + } + AddText(...args) { + if (args[0] instanceof ImFont) { + const font = args[0]; + const font_size = args[1]; + const pos = args[2]; + const col = args[3]; + const text_begin = args[4]; + const text_end = args[5] || null; + const wrap_width = args[6] = 0.0; + const cpu_fine_clip_rect = args[7] || null; + this.native.AddText_B(font.native, font_size, pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin, wrap_width, cpu_fine_clip_rect); + } + else { + const pos = args[0]; + const col = args[1]; + const text_begin = args[2]; + const text_end = args[3] || null; + this.native.AddText_A(pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin); + } + } + // IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,1), ImU32 col = 0xFFFFFFFF); + AddImage(user_texture_id, a, b, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT, col = 0xFFFFFFFF) { + this.native.AddImage(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col); + } + // IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,0), const ImVec2& uv_c = ImVec2(1,1), const ImVec2& uv_d = ImVec2(0,1), ImU32 col = 0xFFFFFFFF); + AddImageQuad(user_texture_id, a, b, c, d, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT_X, uv_c = ImVec2.UNIT, uv_d = ImVec2.UNIT_Y, col = 0xFFFFFFFF) { + this.native.AddImageQuad(ImGuiContext.setTexture(user_texture_id), a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); + } + // IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col, float rounding, int rounding_corners = ImDrawCornerFlags_All); + AddImageRounded(user_texture_id, a, b, uv_a, uv_b, col, rounding, rounding_corners = ImDrawCornerFlags.All) { + this.native.AddImageRounded(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col, rounding, rounding_corners); + } + // IMGUI_API void AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness); + AddPolyline(points, num_points, col, closed, thickness) { + this.native.AddPolyline(points, num_points, col, closed, thickness); + } + // IMGUI_API void AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col); + AddConvexPolyFilled(points, num_points, col) { + this.native.AddConvexPolyFilled(points, num_points, col); + } + // IMGUI_API void AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments = 0); + AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness = 1.0, num_segments = 0) { + this.native.AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments); + } + // Stateful path API, add points then finish with PathFill() or PathStroke() + // inline void PathClear() { _Path.resize(0); } + PathClear() { this.native.PathClear(); } + // inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); } + PathLineTo(pos) { this.native.PathLineTo(pos); } + // inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path[_Path.Size-1], &pos, 8) != 0) _Path.push_back(pos); } + PathLineToMergeDuplicate(pos) { this.native.PathLineToMergeDuplicate(pos); } + // inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); PathClear(); } + PathFillConvex(col) { this.native.PathFillConvex(col); } + // inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness); PathClear(); } + PathStroke(col, closed, thickness = 1.0) { this.native.PathStroke(col, closed, thickness); } + // IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_segments = 10); + PathArcTo(centre, radius, a_min, a_max, num_segments = 10) { this.native.PathArcTo(centre, radius, a_min, a_max, num_segments); } + // IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle + PathArcToFast(centre, radius, a_min_of_12, a_max_of_12) { this.native.PathArcToFast(centre, radius, a_min_of_12, a_max_of_12); } + // IMGUI_API void PathBezierCurveTo(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, int num_segments = 0); + PathBezierCurveTo(p1, p2, p3, num_segments = 0) { this.native.PathBezierCurveTo(p1, p2, p3, num_segments); } + // IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); + PathRect(rect_min, rect_max, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { this.native.PathRect(rect_min, rect_max, rounding, rounding_corners_flags); } + // Channels + // - Use to simulate layers. By switching channels to can render out-of-order (e.g. submit foreground primitives before background primitives) + // - Use to minimize draw calls (e.g. if going back-and-forth between multiple non-overlapping clipping rectangles, prefer to append into separate channels then merge at the end) + // IMGUI_API void ChannelsSplit(int channels_count); + ChannelsSplit(channels_count) { this.native.ChannelsSplit(channels_count); } + // IMGUI_API void ChannelsMerge(); + ChannelsMerge() { this.native.ChannelsMerge(); } + // IMGUI_API void ChannelsSetCurrent(int channel_index); + ChannelsSetCurrent(channel_index) { this.native.ChannelsSetCurrent(channel_index); } + // Advanced + // IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles. + AddCallback(callback, callback_data) { + const _callback = (parent_list, draw_cmd) => { + callback(new ImDrawList(parent_list), new ImDrawCmd(draw_cmd)); + }; + this.native.AddCallback(_callback, callback_data); + } + // IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible + AddDrawCmd() { this.native.AddDrawCmd(); } + // Internal helpers + // NB: all primitives needs to be reserved via PrimReserve() beforehand! + // IMGUI_API void Clear(); + Clear() { this.native.Clear(); } + // IMGUI_API void ClearFreeMemory(); + ClearFreeMemory() { this.native.ClearFreeMemory(); } + // IMGUI_API void PrimReserve(int idx_count, int vtx_count); + PrimReserve(idx_count, vtx_count) { this.native.PrimReserve(idx_count, vtx_count); } + // IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles) + PrimRect(a, b, col) { this.native.PrimRect(a, b, col); } + // IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col); + PrimRectUV(a, b, uv_a, uv_b, col) { this.native.PrimRectUV(a, b, uv_a, uv_b, col); } + // IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col); + PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col) { this.native.PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); } + // inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; } + PrimWriteVtx(pos, uv, col) { this.native.PrimWriteVtx(pos, uv, col); } + // inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; } + PrimWriteIdx(idx) { this.native.PrimWriteIdx(idx); } + // inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); } + PrimVtx(pos, uv, col) { this.native.PrimVtx(pos, uv, col); } + // IMGUI_API void UpdateClipRect(); + UpdateClipRect() { this.native.UpdateClipRect(); } + // IMGUI_API void UpdateTextureID(); + UpdateTextureID() { this.native.UpdateTextureID(); } +} +// All draw data to render an ImGui frame +class ImDrawData { + constructor(native) { + this.native = native; + } + IterateDrawLists(callback) { + this.native.IterateDrawLists((draw_list) => { + callback(new ImDrawList(draw_list)); + }); + } + // bool Valid; // Only valid after Render() is called and before the next NewFrame() is called. + get Valid() { return this.native.Valid; } + // ImDrawList** CmdLists; + // int CmdListsCount; + get CmdListsCount() { return this.native.CmdListsCount; } + // int TotalIdxCount; // For convenience, sum of all cmd_lists idx_buffer.Size + get TotalIdxCount() { return this.native.TotalIdxCount; } + // int TotalVtxCount; // For convenience, sum of all cmd_lists vtx_buffer.Size + get TotalVtxCount() { return this.native.TotalVtxCount; } + // ImVec2 DisplayPos; // Upper-left position of the viewport to render (== upper-left of the orthogonal projection matrix to use) + get DisplayPos() { return this.native.DisplayPos; } + // ImVec2 DisplaySize; // Size of the viewport to render (== io.DisplaySize for the main viewport) (DisplayPos + DisplaySize == lower-right of the orthogonal projection matrix to use) + get DisplaySize() { return this.native.DisplaySize; } + // ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display. + get FramebufferScale() { return this.native.FramebufferScale; } + // Functions + // ImDrawData() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCount = 0; } + // IMGUI_API void DeIndexAllBuffers(); // For backward compatibility or convenience: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering! + DeIndexAllBuffers() { this.native.DeIndexAllBuffers(); } + // IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than ImGui expects, or if there is a difference between your window resolution and framebuffer resolution. + ScaleClipRects(fb_scale) { + this.native.ScaleClipRects(fb_scale); + } +} +class script_ImFontConfig { + constructor() { + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + this.FontData = null; + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + this.FontDataOwnedByAtlas = true; + // int FontNo; // 0 // Index of font within TTF/OTF file + this.FontNo = 0; + // float SizePixels; // // Size in pixels for rasterizer. + this.SizePixels = 0; + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + this.OversampleH = 3; + this.OversampleV = 1; + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + this.PixelSnapH = false; + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + this.GlyphExtraSpacing = new ImVec2(0, 0); + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + this.GlyphOffset = new ImVec2(0, 0); + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + this.GlyphRanges = null; + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + this.GlyphMinAdvanceX = 0; + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + this.GlyphMaxAdvanceX = Number.MAX_VALUE; + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + this.MergeMode = false; + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + this.RasterizerFlags = 0; + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + this.RasterizerMultiply = 1.0; + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + this.Name = ""; + // ImFont* DstFont; + this.DstFont = null; + // IMGUI_API ImFontConfig(); + } +} +class ImFontConfig { + constructor(internal = new script_ImFontConfig()) { + this.internal = internal; + } + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + get FontData() { return this.internal.FontData; } + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + get FontDataOwnedByAtlas() { return this.internal.FontDataOwnedByAtlas; } + // int FontNo; // 0 // Index of font within TTF/OTF file + get FontNo() { return this.internal.FontNo; } + // float SizePixels; // // Size in pixels for rasterizer. + get SizePixels() { return this.internal.SizePixels; } + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + get OversampleH() { return this.internal.OversampleH; } + get OversampleV() { return this.internal.OversampleV; } + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + get PixelSnapH() { return this.internal.PixelSnapH; } + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + get GlyphExtraSpacing() { return this.internal.GlyphExtraSpacing; } + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + get GlyphOffset() { return this.internal.GlyphOffset; } + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + get GlyphRanges() { return this.internal.GlyphRanges; } + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + get GlyphMinAdvanceX() { return this.internal.GlyphMinAdvanceX; } + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + get GlyphMaxAdvanceX() { return this.internal.GlyphMaxAdvanceX; } + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + get MergeMode() { return this.internal.MergeMode; } + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + get RasterizerFlags() { return this.internal.RasterizerFlags; } + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + get RasterizerMultiply() { return this.internal.RasterizerMultiply; } + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + get Name() { return this.internal.Name; } + set Name(value) { this.internal.Name = value; } + // ImFont* DstFont; + get DstFont() { + const font = this.internal.DstFont; + return font && new ImFont(font); + } +} +// struct ImFontGlyph +class script_ImFontGlyph { + constructor() { + // ImWchar Codepoint; // 0x0000..0xFFFF + this.Codepoint = 0; + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + this.AdvanceX = 0.0; + // float X0, Y0, X1, Y1; // Glyph corners + this.X0 = 0.0; + this.Y0 = 0.0; + this.X1 = 1.0; + this.Y1 = 1.0; + // float U0, V0, U1, V1; // Texture coordinates + this.U0 = 0.0; + this.V0 = 0.0; + this.U1 = 1.0; + this.V1 = 1.0; + } +} +class ImFontGlyph { + constructor(internal = new script_ImFontGlyph()) { + this.internal = internal; + } + // ImWchar Codepoint; // 0x0000..0xFFFF + get Codepoint() { return this.internal.Codepoint; } + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + get AdvanceX() { return this.internal.AdvanceX; } + ; + // float X0, Y0, X1, Y1; // Glyph corners + get X0() { return this.internal.X0; } + ; + get Y0() { return this.internal.Y0; } + ; + get X1() { return this.internal.X1; } + ; + get Y1() { return this.internal.Y1; } + ; + // float U0, V0, U1, V1; // Texture coordinates + get U0() { return this.internal.U0; } + ; + get V0() { return this.internal.V0; } + ; + get U1() { return this.internal.U1; } + ; + get V1() { return this.internal.V1; } + ; +} +var ImFontAtlasFlags; +(function (ImFontAtlasFlags) { + ImFontAtlasFlags[ImFontAtlasFlags["None"] = 0] = "None"; + ImFontAtlasFlags[ImFontAtlasFlags["NoPowerOfTwoHeight"] = 1] = "NoPowerOfTwoHeight"; + ImFontAtlasFlags[ImFontAtlasFlags["NoMouseCursors"] = 2] = "NoMouseCursors"; +})(ImFontAtlasFlags || (ImFontAtlasFlags = {})); +// Load and rasterize multiple TTF/OTF fonts into a same texture. +// Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering. +// We also add custom graphic data into the texture that serves for ImGui. +// 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you. +// 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data. +// 3. Upload the pixels data into a texture within your graphics system. +// 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture. +// IMPORTANT: If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the ImFont is build (when calling GetTextData*** or Build()). We only copy the pointer, not the data. +class ImFontAtlas { + constructor(native) { + this.native = native; + } + // IMGUI_API ImFontAtlas(); + // IMGUI_API ~ImFontAtlas(); + // IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg); + // IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL); + AddFontDefault(font_cfg = null) { + return new ImFont(this.native.AddFontDefault(font_cfg)); + } + // IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); + // IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after Build(). Set font_cfg->FontDataOwnedByAtlas to false to keep ownership. + AddFontFromMemoryTTF(data, size_pixels, font_cfg = null, glyph_ranges = null) { + return new ImFont(this.native.AddFontFromMemoryTTF(new Uint8Array(data), size_pixels, font_cfg && font_cfg.internal, glyph_ranges)); + } + // IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp. + // IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter. + // IMGUI_API void ClearTexData(); // Clear the CPU-side texture data. Saves RAM once the texture has been copied to graphics memory. + ClearTexData() { this.native.ClearTexData(); } + // IMGUI_API void ClearInputData(); // Clear the input TTF data (inc sizes, glyph ranges) + ClearInputData() { this.native.ClearInputData(); } + // IMGUI_API void ClearFonts(); // Clear the ImGui-side font data (glyphs storage, UV coordinates) + ClearFonts() { this.native.ClearFonts(); } + // IMGUI_API void Clear(); // Clear all + Clear() { this.native.Clear(); } + // Build atlas, retrieve pixel data. + // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID(). + // RGBA32 format is provided for convenience and compatibility, but note that unless you use CustomRect to draw color data, the RGB pixels emitted from Fonts will all be white (~75% of waste). + // Pitch = Width * BytesPerPixels + // IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions. + Build() { return this.native.Build(); } + // IMGUI_API bool IsBuilt() { return Fonts.Size > 0 && (TexPixelsAlpha8 != NULL || TexPixelsRGBA32 != NULL); } + IsBuilt() { return this.native.IsBuilt(); } + // IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel + GetTexDataAsAlpha8() { + return this.native.GetTexDataAsAlpha8(); + } + // IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel + GetTexDataAsRGBA32() { + return this.native.GetTexDataAsRGBA32(); + } + // void SetTexID(ImTextureID id) { TexID = id; } + SetTexID(id) { this.TexID = id; } + //------------------------------------------- + // Glyph Ranges + //------------------------------------------- + // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list) + // NB: Make sure that your string are UTF-8 and NOT in your local code page. In C++11, you can create UTF-8 string literal using the u8"Hello world" syntax. See FAQ for details. + // IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin + GetGlyphRangesDefault() { return this.native.GetGlyphRangesDefault(); } + // IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters + GetGlyphRangesKorean() { return this.native.GetGlyphRangesKorean(); } + // IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs + GetGlyphRangesJapanese() { return this.native.GetGlyphRangesJapanese(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs + GetGlyphRangesChineseFull() { return this.native.GetGlyphRangesChineseFull(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese + GetGlyphRangesChineseSimplifiedCommon() { return this.native.GetGlyphRangesChineseSimplifiedCommon(); } + // IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters + GetGlyphRangesCyrillic() { return this.native.GetGlyphRangesCyrillic(); } + // IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters + GetGlyphRangesThai() { return this.native.GetGlyphRangesThai(); } + // IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters + GetGlyphRangesVietnamese() { return this.native.GetGlyphRangesVietnamese(); } + // Helpers to build glyph ranges from text data. Feed your application strings/characters to it then call BuildRanges(). + // struct GlyphRangesBuilder + // { + // ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used) + // GlyphRangesBuilder() { UsedChars.resize(0x10000 / 8); memset(UsedChars.Data, 0, 0x10000 / 8); } + // bool GetBit(int n) const { return (UsedChars[n >> 3] & (1 << (n & 7))) != 0; } + // void SetBit(int n) { UsedChars[n >> 3] |= 1 << (n & 7); } // Set bit 'c' in the array + // void AddChar(ImWchar c) { SetBit(c); } // Add character + // IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added) + // IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault) to force add all of ASCII/Latin+Ext + // IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges + // }; + //------------------------------------------- + // Custom Rectangles/Glyphs API + //------------------------------------------- + // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. After calling Build(), you can query the rectangle position and render your pixels. + // You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs. + // struct CustomRect + // { + // unsigned int ID; // Input // User ID. Use <0x10000 to map into a font glyph, >=0x10000 for other/internal/custom texture data. + // unsigned short Width, Height; // Input // Desired rectangle dimension + // unsigned short X, Y; // Output // Packed position in Atlas + // float GlyphAdvanceX; // Input // For custom font glyphs only (ID<0x10000): glyph xadvance + // ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph display offset + // ImFont* Font; // Input // For custom font glyphs only (ID<0x10000): target font + // CustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); Font = NULL; } + // bool IsPacked() const { return X != 0xFFFF; } + // }; + // IMGUI_API int AddCustomRectRegular(unsigned int id, int width, int height); // Id needs to be >= 0x10000. Id >= 0x80000000 are reserved for ImGui and ImDrawList + // IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0,0)); // Id needs to be < 0x10000 to register a rectangle to map into a specific font. + // IMGUI_API void CalcCustomRectUV(const CustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max); + // const CustomRect* GetCustomRectByIndex(int index) const { if (index < 0) return NULL; return &CustomRects[index]; } + //------------------------------------------- + // Members + //------------------------------------------- + // bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert. + get Locked() { return this.native.Locked; } + set Locked(value) { this.native.Locked = value; } + // ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_) + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure. + get TexID() { + return ImGuiContext.getTexture(this.native.TexID); + } + set TexID(value) { + this.native.TexID = ImGuiContext.setTexture(value); + } + // int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height. + get TexDesiredWidth() { return this.native.TexDesiredWidth; } + set TexDesiredWidth(value) { this.native.TexDesiredWidth = value; } + // int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1. + get TexGlyphPadding() { return this.native.TexGlyphPadding; } + set TexGlyphPadding(value) { this.native.TexGlyphPadding = value; } + // [Internal] + // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you. + // unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight + // unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4 + // int TexWidth; // Texture width calculated during Build(). + get TexWidth() { return this.native.TexWidth; } + // int TexHeight; // Texture height calculated during Build(). + get TexHeight() { return this.native.TexHeight; } + // ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight) + get TexUvScale() { return this.native.TexUvScale; } + // ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel + get TexUvWhitePixel() { return this.native.TexUvWhitePixel; } + // ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font. + get Fonts() { + const fonts = new ImVector(); + this.native.IterateFonts((font) => { + fonts.push(new ImFont(font)); + }); + return fonts; + } +} +// Font runtime data and rendering +// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32(). +class ImFont { + constructor(native) { + this.native = native; + } + // Members: Hot ~62/78 bytes + // float FontSize; // // Height of characters, set during loading (don't change after loading) + get FontSize() { return this.native.FontSize; } + // float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale() + get Scale() { return this.native.Scale; } + set Scale(value) { this.native.Scale = value; } + // ImVec2 DisplayOffset; // = (0.f,1.f) // Offset font rendering by xx pixels + get DisplayOffset() { return this.native.DisplayOffset; } + // ImVector Glyphs; // // All glyphs. + get Glyphs() { + const glyphs = new ImVector(); + this.native.IterateGlyphs((glyph) => { + glyphs.push(new ImFontGlyph(glyph)); // TODO: wrap native + }); + return glyphs; + } + // ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI). + // get IndexAdvanceX(): any { return this.native.IndexAdvanceX; } + // ImVector IndexLookup; // // Sparse. Index glyphs by Unicode code-point. + // get IndexLookup(): any { return this.native.IndexLookup; } + // const ImFontGlyph* FallbackGlyph; // == FindGlyph(FontFallbackChar) + get FallbackGlyph() { + const glyph = this.native.FallbackGlyph; + return glyph && new ImFontGlyph(glyph); + } + set FallbackGlyph(value) { + this.native.FallbackGlyph = value && value.internal; + } + // float FallbackAdvanceX; // == FallbackGlyph->AdvanceX + get FallbackAdvanceX() { return this.native.FallbackAdvanceX; } + // ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found. Only set via SetFallbackChar() + get FallbackChar() { return this.native.FallbackChar; } + // Members: Cold ~18/26 bytes + // short ConfigDataCount; // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont. + get ConfigDataCount() { return this.ConfigData.length; } + // ImFontConfig* ConfigData; // // Pointer within ContainerAtlas->ConfigData + get ConfigData() { + const cfg_data = []; + this.native.IterateConfigData((cfg) => { + cfg_data.push(new ImFontConfig(cfg)); + }); + return cfg_data; + } + // ImFontAtlas* ContainerAtlas; // // What we has been loaded into + get ContainerAtlas() { return null; } + // float Ascent, Descent; // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize] + get Ascent() { return this.native.Ascent; } + get Descent() { return this.native.Descent; } + // int MetricsTotalSurface;// // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs) + get MetricsTotalSurface() { return this.native.MetricsTotalSurface; } + // Methods + // IMGUI_API ImFont(); + // IMGUI_API ~ImFont(); + // IMGUI_API void ClearOutputData(); + ClearOutputData() { return this.native.ClearOutputData(); } + // IMGUI_API void BuildLookupTable(); + BuildLookupTable() { return this.native.BuildLookupTable(); } + // IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const; + FindGlyph(c) { + const glyph = this.native.FindGlyph(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const; + FindGlyphNoFallback(c) { + const glyph = this.native.FindGlyphNoFallback(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API void SetFallbackChar(ImWchar c); + SetFallbackChar(c) { return this.native.SetFallbackChar(c); } + // float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; } + GetCharAdvance(c) { return this.native.GetCharAdvance(c); } + // bool IsLoaded() const { return ContainerAtlas != NULL; } + IsLoaded() { return this.native.IsLoaded(); } + // const char* GetDebugName() const { return ConfigData ? ConfigData->Name : ""; } + GetDebugName() { return this.native.GetDebugName(); } + // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable. + // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable. + // IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8 + CalcTextSizeA(size, max_width, wrap_width, text_begin, text_end = null, remaining = null) { + return this.native.CalcTextSizeA(size, max_width, wrap_width, text_end !== null ? text_begin.substring(0, text_end) : text_begin, remaining, new ImVec2()); + } + // IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const; + CalcWordWrapPositionA(scale, text, text_end = null, wrap_width) { + return this.native.CalcWordWrapPositionA(scale, text_end !== null ? text.substring(0, text_end) : text, wrap_width); + } + // IMGUI_API void RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, unsigned short c) const; + RenderChar(draw_list, size, pos, col, c) { + this.native.RenderChar(draw_list.native, size, pos, col, c); + } + // IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const; + RenderText(draw_list, size, pos, col, clip_rect, text_begin, text_end = null, wrap_width = 0.0, cpu_fine_clip = false) { } +} +// This is where your app communicate with Dear ImGui. Access via ImGui::GetIO(). +// Read 'Programmer guide' section in .cpp file for general usage. +class ImGuiIO { + constructor(native) { + this.native = native; + // int KeyMap[ImGuiKey_COUNT]; // // Map of indices into the KeysDown[512] entries array + this.KeyMap = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiKey.COUNT; + } + return this.native._getAt_KeyMap(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeyMap(Number(key), value); + }, + }); + // bool MouseDown[5]; // Mouse buttons: left, right, middle + extras. ImGui itself mostly only uses left button (BeginPopupContext** are using right button). Others buttons allows us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API. + this.MouseDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_MouseDown(Number(key), value); + }, + }); + // bool KeysDown[512]; // Keyboard keys that are pressed (in whatever storage order you naturally have access to keyboard data) + this.KeysDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeysDown(Number(key), value); + }, + }); + // float NavInputs[ImGuiNavInput_COUNT]; // Gamepad inputs (keyboard keys will be auto-mapped and be written here by ImGui::NewFrame) + this.NavInputs = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputs(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_NavInputs(Number(key), value); + }, + }); + //------------------------------------------------------------------ + // [Internal] ImGui will maintain those fields. Forward compatibility not guaranteed! + //------------------------------------------------------------------ + // ImVec2 MousePosPrev; // Previous mouse position temporary storage (nb: not for public use, set to MousePos in NewFrame()) + // ImVec2 MouseClickedPos[5]; // Position at time of clicking + this.MouseClickedPos = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseClickedPos(Number(key)); + }, + }); + // float MouseClickedTime[5]; // Time of last click (used to figure out double-click) + // bool MouseClicked[5]; // Mouse button went from !Down to Down + // bool MouseDoubleClicked[5]; // Has mouse button been double-clicked? + // bool MouseReleased[5]; // Mouse button went from Down to !Down + // bool MouseDownOwned[5]; // Track if button was clicked inside a window. We don't request mouse capture from the application if click started outside ImGui bounds. + // float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked) + this.MouseDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDownDuration(Number(key)); + }, + }); + // float MouseDownDurationPrev[5]; // Previous time the mouse button has been down + // ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point + // float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point + // float KeysDownDuration[512]; // Duration the keyboard key has been down (0.0f == just pressed) + this.KeysDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDownDuration(Number(key)); + }, + }); + // float KeysDownDurationPrev[512]; // Previous duration the key has been down + // float NavInputsDownDuration[ImGuiNavInput_COUNT]; + this.NavInputsDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputsDownDuration(Number(key)); + }, + }); + } + //------------------------------------------------------------------ + // Settings (fill once) // Default value: + //------------------------------------------------------------------ + // ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc. + get ConfigFlags() { return this.native.ConfigFlags; } + set ConfigFlags(value) { this.native.ConfigFlags = value; } + // ImGuiBackendFlags BackendFlags; // = 0 // Set ImGuiBackendFlags_ enum. Set by imgui_impl_xxx files or custom back-end to communicate features supported by the back-end. + get BackendFlags() { return this.native.BackendFlags; } + set BackendFlags(value) { this.native.BackendFlags = value; } + // ImVec2 DisplaySize; // // Display size, in pixels. For clamping windows positions. + get DisplaySize() { return this.native.DisplaySize; } + // float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds. + get DeltaTime() { return this.native.DeltaTime; } + set DeltaTime(value) { this.native.DeltaTime = value; } + // float IniSavingRate; // = 5.0f // Maximum time between saving positions/sizes to .ini file, in seconds. + get IniSavingRate() { return this.native.IniSavingRate; } + set IniSavingRate(value) { this.native.IniSavingRate = value; } + // const char* IniFilename; // = "imgui.ini" // Path to .ini file. NULL to disable .ini saving. + get IniFilename() { return this.native.IniFilename; } + set IniFilename(value) { this.native.IniFilename = value; } + // const char* LogFilename; // = "imgui_log.txt" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified). + get LogFilename() { return this.native.LogFilename; } + set LogFilename(value) { this.native.LogFilename = value; } + // float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds. + get MouseDoubleClickTime() { return this.native.MouseDoubleClickTime; } + set MouseDoubleClickTime(value) { this.native.MouseDoubleClickTime = value; } + // float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels. + get MouseDoubleClickMaxDist() { return this.native.MouseDoubleClickMaxDist; } + set MouseDoubleClickMaxDist(value) { this.native.MouseDoubleClickMaxDist = value; } + // float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging + get MouseDragThreshold() { return this.native.MouseDragThreshold; } + set MouseDragThreshold(value) { this.native.MouseDragThreshold = value; } + // float KeyRepeatDelay; // = 0.250f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.). + get KeyRepeatDelay() { return this.native.KeyRepeatDelay; } + set KeyRepeatDelay(value) { this.native.KeyRepeatDelay = value; } + // float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds. + get KeyRepeatRate() { return this.native.KeyRepeatRate; } + set KeyRepeatRate(value) { this.native.KeyRepeatRate = value; } + // void* UserData; // = NULL // Store your own data for retrieval by callbacks. + get UserData() { return this.native.UserData; } + set UserData(value) { this.native.UserData = value; } + // ImFontAtlas* Fonts; // // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array. + get Fonts() { return new ImFontAtlas(this.native.Fonts); } + // float FontGlobalScale; // = 1.0f // Global scale all fonts + get FontGlobalScale() { return this.native.FontGlobalScale; } + set FontGlobalScale(value) { this.native.FontGlobalScale = value; } + // bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel. + get FontAllowUserScaling() { return this.native.FontAllowUserScaling; } + set FontAllowUserScaling(value) { this.native.FontAllowUserScaling = value; } + // ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0]. + get FontDefault() { + const font = this.native.FontDefault; + return (font === null) ? null : new ImFont(font); + } + set FontDefault(value) { + this.native.FontDefault = value && value.native; + } + // ImVec2 DisplayFramebufferScale; // = (1.0f,1.0f) // For retina display or other situations where window coordinates are different from framebuffer coordinates. User storage only, presently not used by ImGui. + get DisplayFramebufferScale() { return this.native.DisplayFramebufferScale; } + // Miscellaneous configuration options + // bool OptMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl + get ConfigMacOSXBehaviors() { return this.native.ConfigMacOSXBehaviors; } + set ConfigMacOSXBehaviors(value) { this.native.ConfigMacOSXBehaviors = value; } + // bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor, for users who consider it annoying. + get ConfigInputTextCursorBlink() { return this.native.ConfigInputTextCursorBlink; } + set ConfigInputTextCursorBlink(value) { this.native.ConfigInputTextCursorBlink = value; } + // bool ConfigWindowsResizeFromEdges; // = false // [BETA] Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be the ImGuiWindowFlags_ResizeFromAnySide flag) + get ConfigWindowsResizeFromEdges() { return this.native.ConfigWindowsResizeFromEdges; } + set ConfigWindowsResizeFromEdges(value) { this.native.ConfigWindowsResizeFromEdges = value; } + // bool ConfigWindowsMoveFromTitleBarOnly;// = false // [BETA] Set to true to only allow moving windows when clicked+dragged from the title bar. Windows without a title bar are not affected. + get ConfigWindowsMoveFromTitleBarOnly() { return this.native.ConfigWindowsMoveFromTitleBarOnly; } + set ConfigWindowsMoveFromTitleBarOnly(value) { this.native.ConfigWindowsMoveFromTitleBarOnly = value; } + //------------------------------------------------------------------ + // Settings (User Functions) + //------------------------------------------------------------------ + // Optional: Platform/Renderer back-end name (informational only! will be displayed in About Window) + User data for back-end/wrappers to store their own stuff. + // const char* BackendPlatformName; // = NULL + get BackendPlatformName() { return this.native.BackendPlatformName; } + set BackendPlatformName(value) { this.native.BackendPlatformName = value; } + // const char* BackendRendererName; // = NULL + get BackendRendererName() { return this.native.BackendRendererName; } + set BackendRendererName(value) { this.native.BackendRendererName = value; } + // void* BackendPlatformUserData; // = NULL + get BackendPlatformUserData() { return this.native.BackendPlatformUserData; } + set BackendPlatformUserData(value) { this.native.BackendPlatformUserData = value; } + // void* BackendRendererUserData; // = NULL + get BackendRendererUserData() { return this.native.BackendRendererUserData; } + set BackendRendererUserData(value) { this.native.BackendRendererUserData = value; } + // void* BackendLanguageUserData; // = NULL + get BackendLanguageUserData() { return this.native.BackendLanguageUserData; } + set BackendLanguageUserData(value) { this.native.BackendLanguageUserData = value; } + // Optional: access OS clipboard + // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures) + // const char* (*GetClipboardTextFn)(void* user_data); + get GetClipboardTextFn() { return this.native.GetClipboardTextFn; } + set GetClipboardTextFn(value) { this.native.GetClipboardTextFn = value; } + // void (*SetClipboardTextFn)(void* user_data, const char* text); + get SetClipboardTextFn() { return this.native.SetClipboardTextFn; } + set SetClipboardTextFn(value) { this.native.SetClipboardTextFn = value; } + // void* ClipboardUserData; + get ClipboardUserData() { return this.native.ClipboardUserData; } + set ClipboardUserData(value) { this.native.ClipboardUserData = value; } + // Optional: override memory allocations. MemFreeFn() may be called with a NULL pointer. + // (default to posix malloc/free) + // void* (*MemAllocFn)(size_t sz); + // void (*MemFreeFn)(void* ptr); + // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME in Windows) + // (default to use native imm32 api on Windows) + // void (*ImeSetInputScreenPosFn)(int x, int y); + // void* ImeWindowHandle; // (Windows) Set this to your HWND to get automatic IME cursor positioning. + //------------------------------------------------------------------ + // Input - Fill before calling NewFrame() + //------------------------------------------------------------------ + // ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX,-FLT_MAX) if mouse is unavailable (on another screen, etc.) + get MousePos() { return this.native.MousePos; } + // float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text. + get MouseWheel() { return this.native.MouseWheel; } + set MouseWheel(value) { this.native.MouseWheel = value; } + // float MouseWheelH; // Mouse wheel (Horizontal). Most users don't have a mouse with an horizontal wheel, may not be filled by all back-ends. + get MouseWheelH() { return this.native.MouseWheelH; } + set MouseWheelH(value) { this.native.MouseWheelH = value; } + // bool MouseDrawCursor; // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor). + get MouseDrawCursor() { return this.native.MouseDrawCursor; } + set MouseDrawCursor(value) { this.native.MouseDrawCursor = value; } + // bool KeyCtrl; // Keyboard modifier pressed: Control + get KeyCtrl() { return this.native.KeyCtrl; } + set KeyCtrl(value) { this.native.KeyCtrl = value; } + // bool KeyShift; // Keyboard modifier pressed: Shift + get KeyShift() { return this.native.KeyShift; } + set KeyShift(value) { this.native.KeyShift = value; } + // bool KeyAlt; // Keyboard modifier pressed: Alt + get KeyAlt() { return this.native.KeyAlt; } + set KeyAlt(value) { this.native.KeyAlt = value; } + // bool KeySuper; // Keyboard modifier pressed: Cmd/Super/Windows + get KeySuper() { return this.native.KeySuper; } + set KeySuper(value) { this.native.KeySuper = value; } + // Functions + // IMGUI_API void AddInputCharacter(ImWchar c); // Add new character into InputCharacters[] + AddInputCharacter(c) { this.native.AddInputCharacter(c); } + // IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Add new characters into InputCharacters[] from an UTF-8 string + AddInputCharactersUTF8(utf8_chars) { this.native.AddInputCharactersUTF8(utf8_chars); } + // inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Clear the text input buffer manually + ClearInputCharacters() { this.native.ClearInputCharacters(); } + //------------------------------------------------------------------ + // Output - Retrieve after calling NewFrame() + //------------------------------------------------------------------ + // bool WantCaptureMouse; // When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. This is set by ImGui when it wants to use your mouse (e.g. unclicked mouse is hovering a window, or a widget is active). + get WantCaptureMouse() { return this.native.WantCaptureMouse; } + set WantCaptureMouse(value) { this.native.WantCaptureMouse = value; } + // bool WantCaptureKeyboard; // When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. This is set by ImGui when it wants to use your keyboard inputs. + get WantCaptureKeyboard() { return this.native.WantCaptureKeyboard; } + set WantCaptureKeyboard(value) { this.native.WantCaptureKeyboard = value; } + // bool WantTextInput; // Mobile/console: when io.WantTextInput is true, you may display an on-screen keyboard. This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active). + get WantTextInput() { return this.native.WantTextInput; } + set WantTextInput(value) { this.native.WantTextInput = value; } + // bool WantSetMousePos; // [BETA-NAV] MousePos has been altered, back-end should reposition mouse on next frame. Set only when 'NavMovesMouse=true'. + get WantSetMousePos() { return this.native.WantSetMousePos; } + set WantSetMousePos(value) { this.native.WantSetMousePos = value; } + // bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. IMPORTANT: You need to clear io.WantSaveIniSettings yourself. + get WantSaveIniSettings() { return this.native.WantSaveIniSettings; } + set WantSaveIniSettings(value) { this.native.WantSaveIniSettings = value; } + // bool NavActive; // Directional navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag. + get NavActive() { return this.native.NavActive; } + set NavActive(value) { this.native.NavActive = value; } + // bool NavVisible; // Directional navigation is visible and allowed (will handle ImGuiKey_NavXXX events). + get NavVisible() { return this.native.NavVisible; } + set NavVisible(value) { this.native.NavVisible = value; } + // float Framerate; // Application framerate estimation, in frame per second. Solely for convenience. Rolling average estimation based on IO.DeltaTime over 120 frames + get Framerate() { return this.native.Framerate; } + // int MetricsRenderVertices; // Vertices output during last call to Render() + get MetricsRenderVertices() { return this.native.MetricsRenderVertices; } + // int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3 + get MetricsRenderIndices() { return this.native.MetricsRenderIndices; } + // int MetricsRenderWindows; // Number of visible windows + get MetricsRenderWindows() { return this.native.MetricsRenderWindows; } + // int MetricsActiveWindows; // Number of visible root windows (exclude child windows) + get MetricsActiveWindows() { return this.native.MetricsActiveWindows; } + // int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts. + get MetricsActiveAllocations() { return this.native.MetricsActiveAllocations; } + // ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta. + get MouseDelta() { return this.native.MouseDelta; } +} +const _texturesById = []; +// Context creation and access, if you want to use multiple context, share context between modules (e.g. DLL). +// All contexts share a same ImFontAtlas by default. If you want different font atlas, you can new() them and overwrite the GetIO().Fonts variable of an ImGui context. +// All those functions are not reliant on the current context. +class ImGuiContext { + constructor(native) { + this.native = native; + } + static getTexture(index) { + return _texturesById[index] || null; + } + static setTexture(texture) { + let index = _texturesById.indexOf(texture); + if (index === -1) { + for (let i = 0; i < _texturesById.length; ++i) { + if (_texturesById[i] === null) { + _texturesById[i] = texture; + return i; + } + } + index = _texturesById.length; + _texturesById.push(texture); + } + return index; + } +} +ImGuiContext.current_ctx = null; +// IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL); +function CreateContext(shared_font_atlas = null) { + const ctx = new ImGuiContext(bind.CreateContext(shared_font_atlas ? shared_font_atlas.native : null)); + if (ImGuiContext.current_ctx === null) { + ImGuiContext.current_ctx = ctx; + } + return ctx; +} +// IMGUI_API void SetCurrentContext(ImGuiContext* ctx); +function SetCurrentContext(ctx) { + bind.SetCurrentContext((ctx === null) ? null : ctx.native); + ImGuiContext.current_ctx = ctx; +} +// IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert); +function DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx) { + return bind.DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx); +} +// Main +// IMGUI_API ImGuiIO& GetIO(); +function GetIO() { return new ImGuiIO(bind.GetIO()); } +// IMGUI_API void NewFrame(); // start a new ImGui frame, you can submit any command from this point until Render()/EndFrame(). +function NewFrame() { bind.NewFrame(); } +// IMGUI_API void EndFrame(); // ends the ImGui frame. automatically called by Render(), so most likely don't need to ever call that yourself directly. If you don't need to render you may call EndFrame() but you'll have wasted CPU already. If you don't need to render, better to not create any imgui windows instead! +function EndFrame() { bind.EndFrame(); } +// IMGUI_API void Render(); // ends the ImGui frame, finalize the draw data, then call your io.RenderDrawListsFn() function if set. +function Render() { bind.Render(); } +// IMGUI_API ImDrawData* GetDrawData(); // same value as passed to your io.RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame() +function GetDrawData() { + const draw_data = bind.GetDrawData(); + return (draw_data === null) ? null : new ImDrawData(draw_data); +} +// IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you +function GetMouseCursor() { return bind.GetMouseCursor(); } +// IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source. +function LoadIniSettingsFromMemory(ini_data, ini_size = 0) { bind.LoadIniSettingsFromMemory(ini_data); } +// IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings. +function SaveIniSettingsToMemory(out_ini_size = null) { return bind.SaveIniSettingsToMemory(); } + +var promise = createCommonjsModule(function (module, exports) { +(function(global){ + +// +// Check for native Promise and it has correct interface +// + +var NativePromise = global['Promise']; +var nativePromiseSupported = + NativePromise && + // Some of these methods are missing from + // Firefox/Chrome experimental implementations + 'resolve' in NativePromise && + 'reject' in NativePromise && + 'all' in NativePromise && + 'race' in NativePromise && + // Older version of the spec had a resolver object + // as the arg rather than a function + (function(){ + var resolve; + new NativePromise(function(r){ resolve = r; }); + return typeof resolve === 'function'; + })(); + + +// +// export if necessary +// + +if ( exports) +{ + // node.js + exports.Promise = nativePromiseSupported ? NativePromise : Promise; + exports.Polyfill = Promise; +} +else +{ + // AMD + { + // in browser add to global + if (!nativePromiseSupported) + global['Promise'] = Promise; + } +} + + +// +// Polyfill +// + +var PENDING = 'pending'; +var SEALED = 'sealed'; +var FULFILLED = 'fulfilled'; +var REJECTED = 'rejected'; +var NOOP = function(){}; + +function isArray(value) { + return Object.prototype.toString.call(value) === '[object Array]'; +} + +// async calls +var asyncSetTimer = typeof setImmediate !== 'undefined' ? setImmediate : setTimeout; +var asyncQueue = []; +var asyncTimer; + +function asyncFlush(){ + // run promise callbacks + for (var i = 0; i < asyncQueue.length; i++) + asyncQueue[i][0](asyncQueue[i][1]); + + // reset async asyncQueue + asyncQueue = []; + asyncTimer = false; +} + +function asyncCall(callback, arg){ + asyncQueue.push([callback, arg]); + + if (!asyncTimer) + { + asyncTimer = true; + asyncSetTimer(asyncFlush, 0); + } +} + + +function invokeResolver(resolver, promise) { + function resolvePromise(value) { + resolve(promise, value); + } + + function rejectPromise(reason) { + reject(promise, reason); + } + + try { + resolver(resolvePromise, rejectPromise); + } catch(e) { + rejectPromise(e); + } +} + +function invokeCallback(subscriber){ + var owner = subscriber.owner; + var settled = owner.state_; + var value = owner.data_; + var callback = subscriber[settled]; + var promise = subscriber.then; + + if (typeof callback === 'function') + { + settled = FULFILLED; + try { + value = callback(value); + } catch(e) { + reject(promise, e); + } + } + + if (!handleThenable(promise, value)) + { + if (settled === FULFILLED) + resolve(promise, value); + + if (settled === REJECTED) + reject(promise, value); + } +} + +function handleThenable(promise, value) { + var resolved; + + try { + if (promise === value) + throw new TypeError('A promises callback cannot return that same promise.'); + + if (value && (typeof value === 'function' || typeof value === 'object')) + { + var then = value.then; // then should be retrived only once + + if (typeof then === 'function') + { + then.call(value, function(val){ + if (!resolved) + { + resolved = true; + + if (value !== val) + resolve(promise, val); + else + fulfill(promise, val); + } + }, function(reason){ + if (!resolved) + { + resolved = true; + + reject(promise, reason); + } + }); + + return true; + } + } + } catch (e) { + if (!resolved) + reject(promise, e); + + return true; + } + + return false; +} + +function resolve(promise, value){ + if (promise === value || !handleThenable(promise, value)) + fulfill(promise, value); +} + +function fulfill(promise, value){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = value; + + asyncCall(publishFulfillment, promise); + } +} + +function reject(promise, reason){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = reason; + + asyncCall(publishRejection, promise); + } +} + +function publish(promise) { + var callbacks = promise.then_; + promise.then_ = undefined; + + for (var i = 0; i < callbacks.length; i++) { + invokeCallback(callbacks[i]); + } +} + +function publishFulfillment(promise){ + promise.state_ = FULFILLED; + publish(promise); +} + +function publishRejection(promise){ + promise.state_ = REJECTED; + publish(promise); +} + +/** +* @class +*/ +function Promise(resolver){ + if (typeof resolver !== 'function') + throw new TypeError('Promise constructor takes a function argument'); + + if (this instanceof Promise === false) + throw new TypeError('Failed to construct \'Promise\': Please use the \'new\' operator, this object constructor cannot be called as a function.'); + + this.then_ = []; + + invokeResolver(resolver, this); +} + +Promise.prototype = { + constructor: Promise, + + state_: PENDING, + then_: null, + data_: undefined, + + then: function(onFulfillment, onRejection){ + var subscriber = { + owner: this, + then: new this.constructor(NOOP), + fulfilled: onFulfillment, + rejected: onRejection + }; + + if (this.state_ === FULFILLED || this.state_ === REJECTED) + { + // already resolved, call callback async + asyncCall(invokeCallback, subscriber); + } + else + { + // subscribe + this.then_.push(subscriber); + } + + return subscriber.then; + }, + + 'catch': function(onRejection) { + return this.then(null, onRejection); + } +}; + +Promise.all = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.all().'); + + return new Class(function(resolve, reject){ + var results = []; + var remaining = 0; + + function resolver(index){ + remaining++; + return function(value){ + results[index] = value; + if (!--remaining) + resolve(results); + }; + } + + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolver(i), reject); + else + results[i] = promise; + } + + if (!remaining) + resolve(results); + }); +}; + +Promise.race = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.race().'); + + return new Class(function(resolve, reject) { + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolve, reject); + else + resolve(promise); + } + }); +}; + +Promise.resolve = function(value){ + var Class = this; + + if (value && typeof value === 'object' && value.constructor === Class) + return value; + + return new Class(function(resolve){ + resolve(value); + }); +}; + +Promise.reject = function(reason){ + var Class = this; + + return new Class(function(resolve, reject){ + reject(reason); + }); +}; + +})(typeof window != 'undefined' ? window : typeof commonjsGlobal != 'undefined' ? commonjsGlobal : typeof self != 'undefined' ? self : commonjsGlobal); +}); +var promise_1 = promise.Promise; +var promise_2 = promise.Polyfill; + +/* +object-assign +(c) Sindre Sorhus +@license MIT +*/ +/* eslint-disable no-unused-vars */ +var getOwnPropertySymbols = Object.getOwnPropertySymbols; +var hasOwnProperty = Object.prototype.hasOwnProperty; +var propIsEnumerable = Object.prototype.propertyIsEnumerable; + +function toObject(val) { + if (val === null || val === undefined) { + throw new TypeError('Object.assign cannot be called with null or undefined'); + } + + return Object(val); +} + +function shouldUseNative() { + try { + if (!Object.assign) { + return false; + } + + // Detect buggy property enumeration order in older V8 versions. + + // https://bugs.chromium.org/p/v8/issues/detail?id=4118 + var test1 = new String('abc'); // eslint-disable-line no-new-wrappers + test1[5] = 'de'; + if (Object.getOwnPropertyNames(test1)[0] === '5') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test2 = {}; + for (var i = 0; i < 10; i++) { + test2['_' + String.fromCharCode(i)] = i; + } + var order2 = Object.getOwnPropertyNames(test2).map(function (n) { + return test2[n]; + }); + if (order2.join('') !== '0123456789') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test3 = {}; + 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { + test3[letter] = letter; + }); + if (Object.keys(Object.assign({}, test3)).join('') !== + 'abcdefghijklmnopqrst') { + return false; + } + + return true; + } catch (err) { + // We don't expect any of the above to throw, but better to be safe. + return false; + } +} + +var objectAssign = shouldUseNative() ? Object.assign : function (target, source) { + var from; + var to = toObject(target); + var symbols; + + for (var s = 1; s < arguments.length; s++) { + from = Object(arguments[s]); + + for (var key in from) { + if (hasOwnProperty.call(from, key)) { + to[key] = from[key]; + } + } + + if (getOwnPropertySymbols) { + symbols = getOwnPropertySymbols(from); + for (var i = 0; i < symbols.length; i++) { + if (propIsEnumerable.call(from, symbols[i])) { + to[symbols[i]] = from[symbols[i]]; + } + } + } + } + + return to; +}; + +/*! + * @pixi/polyfill - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/polyfill is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Support for IE 9 - 11 which does not include Promises +if (!window.Promise) +{ + window.Promise = promise_2; +} + +// References: + +if (!Object.assign) +{ + Object.assign = objectAssign; +} + +var commonjsGlobal$1 = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +// References: +// http://paulirish.com/2011/requestanimationframe-for-smart-animating/ +// https://gist.github.com/1579671 +// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision +// https://gist.github.com/timhall/4078614 +// https://github.com/Financial-Times/polyfill-service/tree/master/polyfills/requestAnimationFrame + +// Expected to be used with Browserfiy +// Browserify automatically detects the use of `global` and passes the +// correct reference of `global`, `self`, and finally `window` + +var ONE_FRAME_TIME = 16; + +// Date.now +if (!(Date.now && Date.prototype.getTime)) +{ + Date.now = function now() + { + return new Date().getTime(); + }; +} + +// performance.now +if (!(commonjsGlobal$1.performance && commonjsGlobal$1.performance.now)) +{ + var startTime = Date.now(); + + if (!commonjsGlobal$1.performance) + { + commonjsGlobal$1.performance = {}; + } + + commonjsGlobal$1.performance.now = function () { return Date.now() - startTime; }; +} + +// requestAnimationFrame +var lastTime = Date.now(); +var vendors = ['ms', 'moz', 'webkit', 'o']; + +for (var x = 0; x < vendors.length && !commonjsGlobal$1.requestAnimationFrame; ++x) +{ + var p = vendors[x]; + + commonjsGlobal$1.requestAnimationFrame = commonjsGlobal$1[(p + "RequestAnimationFrame")]; + commonjsGlobal$1.cancelAnimationFrame = commonjsGlobal$1[(p + "CancelAnimationFrame")] || commonjsGlobal$1[(p + "CancelRequestAnimationFrame")]; +} + +if (!commonjsGlobal$1.requestAnimationFrame) +{ + commonjsGlobal$1.requestAnimationFrame = function (callback) { + if (typeof callback !== 'function') + { + throw new TypeError((callback + "is not a function")); + } + + var currentTime = Date.now(); + var delay = ONE_FRAME_TIME + lastTime - currentTime; + + if (delay < 0) + { + delay = 0; + } + + lastTime = currentTime; + + return setTimeout(function () { + lastTime = Date.now(); + callback(performance.now()); + }, delay); + }; +} + +if (!commonjsGlobal$1.cancelAnimationFrame) +{ + commonjsGlobal$1.cancelAnimationFrame = function (id) { return clearTimeout(id); }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign + +if (!Math.sign) +{ + Math.sign = function mathSign(x) + { + x = Number(x); + + if (x === 0 || isNaN(x)) + { + return x; + } + + return x > 0 ? 1 : -1; + }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger + +if (!Number.isInteger) +{ + Number.isInteger = function numberIsInteger(value) + { + return typeof value === 'number' && isFinite(value) && Math.floor(value) === value; + }; +} + +if (!window.ArrayBuffer) +{ + window.ArrayBuffer = Array; +} + +if (!window.Float32Array) +{ + window.Float32Array = Array; +} + +if (!window.Uint32Array) +{ + window.Uint32Array = Array; +} + +if (!window.Uint16Array) +{ + window.Uint16Array = Array; +} + +if (!window.Uint8Array) +{ + window.Uint8Array = Array; +} + +if (!window.Int32Array) +{ + window.Int32Array = Array; +} + +var isMobile = createCommonjsModule(function (module) { +(function(global) { + var apple_phone = /iPhone/i, + apple_ipod = /iPod/i, + apple_tablet = /iPad/i, + android_phone = /\bAndroid(?:.+)Mobile\b/i, // Match 'Android' AND 'Mobile' + android_tablet = /Android/i, + amazon_phone = /\bAndroid(?:.+)SD4930UR\b/i, + amazon_tablet = /\bAndroid(?:.+)(?:KF[A-Z]{2,4})\b/i, + windows_phone = /Windows Phone/i, + windows_tablet = /\bWindows(?:.+)ARM\b/i, // Match 'Windows' AND 'ARM' + other_blackberry = /BlackBerry/i, + other_blackberry_10 = /BB10/i, + other_opera = /Opera Mini/i, + other_chrome = /\b(CriOS|Chrome)(?:.+)Mobile/i, + other_firefox = /Mobile(?:.+)Firefox\b/i; // Match 'Mobile' AND 'Firefox' + + function match(regex, userAgent) { + return regex.test(userAgent); + } + + function isMobile(userAgent) { + var ua = + userAgent || + (typeof navigator !== 'undefined' ? navigator.userAgent : ''); + + // Facebook mobile app's integrated browser adds a bunch of strings that + // match everything. Strip it out if it exists. + var tmp = ua.split('[FBAN'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + // Twitter mobile app's integrated browser on iPad adds a "Twitter for + // iPhone" string. Same probably happens on other tablet platforms. + // This will confuse detection so strip it out if it exists. + tmp = ua.split('Twitter'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + var result = { + apple: { + phone: match(apple_phone, ua) && !match(windows_phone, ua), + ipod: match(apple_ipod, ua), + tablet: + !match(apple_phone, ua) && + match(apple_tablet, ua) && + !match(windows_phone, ua), + device: + (match(apple_phone, ua) || + match(apple_ipod, ua) || + match(apple_tablet, ua)) && + !match(windows_phone, ua) + }, + amazon: { + phone: match(amazon_phone, ua), + tablet: !match(amazon_phone, ua) && match(amazon_tablet, ua), + device: match(amazon_phone, ua) || match(amazon_tablet, ua) + }, + android: { + phone: + (!match(windows_phone, ua) && match(amazon_phone, ua)) || + (!match(windows_phone, ua) && match(android_phone, ua)), + tablet: + !match(windows_phone, ua) && + !match(amazon_phone, ua) && + !match(android_phone, ua) && + (match(amazon_tablet, ua) || match(android_tablet, ua)), + device: + (!match(windows_phone, ua) && + (match(amazon_phone, ua) || + match(amazon_tablet, ua) || + match(android_phone, ua) || + match(android_tablet, ua))) || + match(/\bokhttp\b/i, ua) + }, + windows: { + phone: match(windows_phone, ua), + tablet: match(windows_tablet, ua), + device: match(windows_phone, ua) || match(windows_tablet, ua) + }, + other: { + blackberry: match(other_blackberry, ua), + blackberry10: match(other_blackberry_10, ua), + opera: match(other_opera, ua), + firefox: match(other_firefox, ua), + chrome: match(other_chrome, ua), + device: + match(other_blackberry, ua) || + match(other_blackberry_10, ua) || + match(other_opera, ua) || + match(other_firefox, ua) || + match(other_chrome, ua) + } + }; + (result.any = + result.apple.device || + result.android.device || + result.windows.device || + result.other.device), + // excludes 'other' devices and ipods, targeting touchscreen phones + (result.phone = + result.apple.phone || result.android.phone || result.windows.phone), + (result.tablet = + result.apple.tablet || result.android.tablet || result.windows.tablet); + + return result; + } + + if ( + + module.exports && + typeof window === 'undefined' + ) { + // Node.js + module.exports = isMobile; + } else if ( + + module.exports && + typeof window !== 'undefined' + ) { + // Browserify + module.exports = isMobile(); + module.exports.isMobile = isMobile; + } else { + global.isMobile = isMobile(); + } +})(commonjsGlobal); +}); +var isMobile_1 = isMobile.isMobile; + +/*! + * @pixi/settings - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/settings is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The maximum recommended texture units to use. + * In theory the bigger the better, and for desktop we'll use as many as we can. + * But some mobile devices slow down if there is to many branches in the shader. + * So in practice there seems to be a sweet spot size that varies depending on the device. + * + * In v4, all mobile devices were limited to 4 texture units because for this. + * In v5, we allow all texture units to be used on modern Apple or Android devices. + * + * @private + * @param {number} max + * @returns {number} + */ +function maxRecommendedTextures(max) +{ + var allowMax = true; + + if (isMobile.tablet || isMobile.phone) + { + allowMax = false; + + if (isMobile.apple.device) + { + var match = (navigator.userAgent).match(/OS (\d+)_(\d+)?/); + + if (match) + { + var majorVersion = parseInt(match[1], 10); + + // All texture units can be used on devices that support ios 11 or above + if (majorVersion >= 11) + { + allowMax = true; + } + } + } + if (isMobile.android.device) + { + var match$1 = (navigator.userAgent).match(/Android\s([0-9.]*)/); + + if (match$1) + { + var majorVersion$1 = parseInt(match$1[1], 10); + + // All texture units can be used on devices that support Android 7 (Nougat) or above + if (majorVersion$1 >= 7) + { + allowMax = true; + } + } + } + } + + return allowMax ? max : 4; +} + +/** + * Uploading the same buffer multiple times in a single frame can cause performance issues. + * Apparent on iOS so only check for that at the moment + * This check may become more complex if this issue pops up elsewhere. + * + * @private + * @returns {boolean} + */ +function canUploadSameBuffer() +{ + return !isMobile.apple.device; +} + +/** + * User's customizable globals for overriding the default PIXI settings, such + * as a renderer's default resolution, framerate, float precision, etc. + * @example + * // Use the native window resolution as the default resolution + * // will support high-density displays when rendering + * PIXI.settings.RESOLUTION = window.devicePixelRatio; + * + * // Disable interpolation when scaling, will make texture be pixelated + * PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST; + * @namespace PIXI.settings + */ +var settings = { + + /** + * If set to true WebGL will attempt make textures mimpaped by default. + * Mipmapping will only succeed if the base texture uploaded has power of two dimensions. + * + * @static + * @name MIPMAP_TEXTURES + * @memberof PIXI.settings + * @type {PIXI.MIPMAP_MODES} + * @default PIXI.MIPMAP_MODES.POW2 + */ + MIPMAP_TEXTURES: 1, + + /** + * Default anisotropic filtering level of textures. + * Usually from 0 to 16 + * + * @static + * @name ANISOTROPIC_LEVEL + * @memberof PIXI.settings + * @type {number} + * @default 0 + */ + ANISOTROPIC_LEVEL: 0, + + /** + * Default resolution / device pixel ratio of the renderer. + * + * @static + * @name RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + RESOLUTION: 1, + + /** + * Default filter resolution. + * + * @static + * @name FILTER_RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + FILTER_RESOLUTION: 1, + + /** + * The maximum textures that this device supports. + * + * @static + * @name SPRITE_MAX_TEXTURES + * @memberof PIXI.settings + * @type {number} + * @default 32 + */ + SPRITE_MAX_TEXTURES: maxRecommendedTextures(32), + + // TODO: maybe change to SPRITE.BATCH_SIZE: 2000 + // TODO: maybe add PARTICLE.BATCH_SIZE: 15000 + + /** + * The default sprite batch size. + * + * The default aims to balance desktop and mobile devices. + * + * @static + * @name SPRITE_BATCH_SIZE + * @memberof PIXI.settings + * @type {number} + * @default 4096 + */ + SPRITE_BATCH_SIZE: 4096, + + /** + * The default render options if none are supplied to {@link PIXI.Renderer} + * or {@link PIXI.CanvasRenderer}. + * + * @static + * @name RENDER_OPTIONS + * @memberof PIXI.settings + * @type {object} + * @property {HTMLCanvasElement} view=null + * @property {number} resolution=1 + * @property {boolean} antialias=false + * @property {boolean} forceFXAA=false + * @property {boolean} autoDensity=false + * @property {boolean} transparent=false + * @property {number} backgroundColor=0x000000 + * @property {boolean} clearBeforeRender=true + * @property {boolean} preserveDrawingBuffer=false + * @property {number} width=800 + * @property {number} height=600 + * @property {boolean} legacy=false + */ + RENDER_OPTIONS: { + view: null, + antialias: false, + forceFXAA: false, + autoDensity: false, + transparent: false, + backgroundColor: 0x000000, + clearBeforeRender: true, + preserveDrawingBuffer: false, + width: 800, + height: 600, + legacy: false, + }, + + /** + * Default Garbage Collection mode. + * + * @static + * @name GC_MODE + * @memberof PIXI.settings + * @type {PIXI.GC_MODES} + * @default PIXI.GC_MODES.AUTO + */ + GC_MODE: 0, + + /** + * Default Garbage Collection max idle. + * + * @static + * @name GC_MAX_IDLE + * @memberof PIXI.settings + * @type {number} + * @default 3600 + */ + GC_MAX_IDLE: 60 * 60, + + /** + * Default Garbage Collection maximum check count. + * + * @static + * @name GC_MAX_CHECK_COUNT + * @memberof PIXI.settings + * @type {number} + * @default 600 + */ + GC_MAX_CHECK_COUNT: 60 * 10, + + /** + * Default wrap modes that are supported by pixi. + * + * @static + * @name WRAP_MODE + * @memberof PIXI.settings + * @type {PIXI.WRAP_MODES} + * @default PIXI.WRAP_MODES.CLAMP + */ + WRAP_MODE: 33071, + + /** + * Default scale mode for textures. + * + * @static + * @name SCALE_MODE + * @memberof PIXI.settings + * @type {PIXI.SCALE_MODES} + * @default PIXI.SCALE_MODES.LINEAR + */ + SCALE_MODE: 1, + + /** + * Default specify float precision in vertex shader. + * + * @static + * @name PRECISION_VERTEX + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.HIGH + */ + PRECISION_VERTEX: 'highp', + + /** + * Default specify float precision in fragment shader. + * iOS is best set at highp due to https://github.com/pixijs/pixi.js/issues/3742 + * + * @static + * @name PRECISION_FRAGMENT + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.MEDIUM + */ + PRECISION_FRAGMENT: isMobile.apple.device ? 'highp' : 'mediump', + + /** + * Can we upload the same buffer in a single frame? + * + * @static + * @name CAN_UPLOAD_SAME_BUFFER + * @memberof PIXI.settings + * @type {boolean} + */ + CAN_UPLOAD_SAME_BUFFER: canUploadSameBuffer(), + + /** + * Enables bitmap creation before image load. This feature is experimental. + * + * @static + * @name CREATE_IMAGE_BITMAP + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + CREATE_IMAGE_BITMAP: false, + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * + * @static + * @constant + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + ROUND_PIXELS: false, +}; + +var eventemitter3 = createCommonjsModule(function (module) { + +var has = Object.prototype.hasOwnProperty + , prefix = '~'; + +/** + * Constructor to create a storage for our `EE` objects. + * An `Events` instance is a plain object whose properties are event names. + * + * @constructor + * @private + */ +function Events() {} + +// +// We try to not inherit from `Object.prototype`. In some engines creating an +// instance in this way is faster than calling `Object.create(null)` directly. +// If `Object.create(null)` is not supported we prefix the event names with a +// character to make sure that the built-in object properties are not +// overridden or used as an attack vector. +// +if (Object.create) { + Events.prototype = Object.create(null); + + // + // This hack is needed because the `__proto__` property is still inherited in + // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5. + // + if (!new Events().__proto__) prefix = false; +} + +/** + * Representation of a single event listener. + * + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} [once=false] Specify if the listener is a one-time listener. + * @constructor + * @private + */ +function EE(fn, context, once) { + this.fn = fn; + this.context = context; + this.once = once || false; +} + +/** + * Add a listener for a given event. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} once Specify if the listener is a one-time listener. + * @returns {EventEmitter} + * @private + */ +function addListener(emitter, event, fn, context, once) { + if (typeof fn !== 'function') { + throw new TypeError('The listener must be a function'); + } + + var listener = new EE(fn, context || emitter, once) + , evt = prefix ? prefix + event : event; + + if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++; + else if (!emitter._events[evt].fn) emitter._events[evt].push(listener); + else emitter._events[evt] = [emitter._events[evt], listener]; + + return emitter; +} + +/** + * Clear event by name. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} evt The Event name. + * @private + */ +function clearEvent(emitter, evt) { + if (--emitter._eventsCount === 0) emitter._events = new Events(); + else delete emitter._events[evt]; +} + +/** + * Minimal `EventEmitter` interface that is molded against the Node.js + * `EventEmitter` interface. + * + * @constructor + * @public + */ +function EventEmitter() { + this._events = new Events(); + this._eventsCount = 0; +} + +/** + * Return an array listing the events for which the emitter has registered + * listeners. + * + * @returns {Array} + * @public + */ +EventEmitter.prototype.eventNames = function eventNames() { + var names = [] + , events + , name; + + if (this._eventsCount === 0) return names; + + for (name in (events = this._events)) { + if (has.call(events, name)) names.push(prefix ? name.slice(1) : name); + } + + if (Object.getOwnPropertySymbols) { + return names.concat(Object.getOwnPropertySymbols(events)); + } + + return names; +}; + +/** + * Return the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Array} The registered listeners. + * @public + */ +EventEmitter.prototype.listeners = function listeners(event) { + var evt = prefix ? prefix + event : event + , handlers = this._events[evt]; + + if (!handlers) return []; + if (handlers.fn) return [handlers.fn]; + + for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) { + ee[i] = handlers[i].fn; + } + + return ee; +}; + +/** + * Return the number of listeners listening to a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Number} The number of listeners. + * @public + */ +EventEmitter.prototype.listenerCount = function listenerCount(event) { + var evt = prefix ? prefix + event : event + , listeners = this._events[evt]; + + if (!listeners) return 0; + if (listeners.fn) return 1; + return listeners.length; +}; + +/** + * Calls each of the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Boolean} `true` if the event had listeners, else `false`. + * @public + */ +EventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return false; + + var listeners = this._events[evt] + , len = arguments.length + , args + , i; + + if (listeners.fn) { + if (listeners.once) this.removeListener(event, listeners.fn, undefined, true); + + switch (len) { + case 1: return listeners.fn.call(listeners.context), true; + case 2: return listeners.fn.call(listeners.context, a1), true; + case 3: return listeners.fn.call(listeners.context, a1, a2), true; + case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true; + case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true; + case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true; + } + + for (i = 1, args = new Array(len -1); i < len; i++) { + args[i - 1] = arguments[i]; + } + + listeners.fn.apply(listeners.context, args); + } else { + var length = listeners.length + , j; + + for (i = 0; i < length; i++) { + if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true); + + switch (len) { + case 1: listeners[i].fn.call(listeners[i].context); break; + case 2: listeners[i].fn.call(listeners[i].context, a1); break; + case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break; + case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break; + default: + if (!args) for (j = 1, args = new Array(len -1); j < len; j++) { + args[j - 1] = arguments[j]; + } + + listeners[i].fn.apply(listeners[i].context, args); + } + } + } + + return true; +}; + +/** + * Add a listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.on = function on(event, fn, context) { + return addListener(this, event, fn, context, false); +}; + +/** + * Add a one-time listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.once = function once(event, fn, context) { + return addListener(this, event, fn, context, true); +}; + +/** + * Remove the listeners of a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn Only remove the listeners that match this function. + * @param {*} context Only remove the listeners that have this context. + * @param {Boolean} once Only remove one-time listeners. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return this; + if (!fn) { + clearEvent(this, evt); + return this; + } + + var listeners = this._events[evt]; + + if (listeners.fn) { + if ( + listeners.fn === fn && + (!once || listeners.once) && + (!context || listeners.context === context) + ) { + clearEvent(this, evt); + } + } else { + for (var i = 0, events = [], length = listeners.length; i < length; i++) { + if ( + listeners[i].fn !== fn || + (once && !listeners[i].once) || + (context && listeners[i].context !== context) + ) { + events.push(listeners[i]); + } + } + + // + // Reset the array, or remove it completely if we have no more listeners. + // + if (events.length) this._events[evt] = events.length === 1 ? events[0] : events; + else clearEvent(this, evt); + } + + return this; +}; + +/** + * Remove all listeners, or those of the specified event. + * + * @param {(String|Symbol)} [event] The event name. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeAllListeners = function removeAllListeners(event) { + var evt; + + if (event) { + evt = prefix ? prefix + event : event; + if (this._events[evt]) clearEvent(this, evt); + } else { + this._events = new Events(); + this._eventsCount = 0; + } + + return this; +}; + +// +// Alias methods names because people roll like that. +// +EventEmitter.prototype.off = EventEmitter.prototype.removeListener; +EventEmitter.prototype.addListener = EventEmitter.prototype.on; + +// +// Expose the prefix. +// +EventEmitter.prefixed = prefix; + +// +// Allow `EventEmitter` to be imported as module namespace. +// +EventEmitter.EventEmitter = EventEmitter; + +// +// Expose the module. +// +{ + module.exports = EventEmitter; +} +}); + +var earcut_1 = earcut; +var default_1 = earcut; + +function earcut(data, holeIndices, dim) { + + dim = dim || 2; + + var hasHoles = holeIndices && holeIndices.length, + outerLen = hasHoles ? holeIndices[0] * dim : data.length, + outerNode = linkedList(data, 0, outerLen, dim, true), + triangles = []; + + if (!outerNode || outerNode.next === outerNode.prev) return triangles; + + var minX, minY, maxX, maxY, x, y, invSize; + + if (hasHoles) outerNode = eliminateHoles(data, holeIndices, outerNode, dim); + + // if the shape is not too simple, we'll use z-order curve hash later; calculate polygon bbox + if (data.length > 80 * dim) { + minX = maxX = data[0]; + minY = maxY = data[1]; + + for (var i = dim; i < outerLen; i += dim) { + x = data[i]; + y = data[i + 1]; + if (x < minX) minX = x; + if (y < minY) minY = y; + if (x > maxX) maxX = x; + if (y > maxY) maxY = y; + } + + // minX, minY and invSize are later used to transform coords into integers for z-order calculation + invSize = Math.max(maxX - minX, maxY - minY); + invSize = invSize !== 0 ? 1 / invSize : 0; + } + + earcutLinked(outerNode, triangles, dim, minX, minY, invSize); + + return triangles; +} + +// create a circular doubly linked list from polygon points in the specified winding order +function linkedList(data, start, end, dim, clockwise) { + var i, last; + + if (clockwise === (signedArea(data, start, end, dim) > 0)) { + for (i = start; i < end; i += dim) last = insertNode(i, data[i], data[i + 1], last); + } else { + for (i = end - dim; i >= start; i -= dim) last = insertNode(i, data[i], data[i + 1], last); + } + + if (last && equals(last, last.next)) { + removeNode(last); + last = last.next; + } + + return last; +} + +// eliminate colinear or duplicate points +function filterPoints(start, end) { + if (!start) return start; + if (!end) end = start; + + var p = start, + again; + do { + again = false; + + if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) { + removeNode(p); + p = end = p.prev; + if (p === p.next) break; + again = true; + + } else { + p = p.next; + } + } while (again || p !== end); + + return end; +} + +// main ear slicing loop which triangulates a polygon (given as a linked list) +function earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) { + if (!ear) return; + + // interlink polygon nodes in z-order + if (!pass && invSize) indexCurve(ear, minX, minY, invSize); + + var stop = ear, + prev, next; + + // iterate through ears, slicing them one by one + while (ear.prev !== ear.next) { + prev = ear.prev; + next = ear.next; + + if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) { + // cut off the triangle + triangles.push(prev.i / dim); + triangles.push(ear.i / dim); + triangles.push(next.i / dim); + + removeNode(ear); + + // skipping the next vertex leads to less sliver triangles + ear = next.next; + stop = next.next; + + continue; + } + + ear = next; + + // if we looped through the whole remaining polygon and can't find any more ears + if (ear === stop) { + // try filtering points and slicing again + if (!pass) { + earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1); + + // if this didn't work, try curing all small self-intersections locally + } else if (pass === 1) { + ear = cureLocalIntersections(filterPoints(ear), triangles, dim); + earcutLinked(ear, triangles, dim, minX, minY, invSize, 2); + + // as a last resort, try splitting the remaining polygon into two + } else if (pass === 2) { + splitEarcut(ear, triangles, dim, minX, minY, invSize); + } + + break; + } + } +} + +// check whether a polygon node forms a valid ear with adjacent nodes +function isEar(ear) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // now make sure we don't have other points inside the potential ear + var p = ear.next.next; + + while (p !== ear.prev) { + if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.next; + } + + return true; +} + +function isEarHashed(ear, minX, minY, invSize) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // triangle bbox; min & max are calculated like this for speed + var minTX = a.x < b.x ? (a.x < c.x ? a.x : c.x) : (b.x < c.x ? b.x : c.x), + minTY = a.y < b.y ? (a.y < c.y ? a.y : c.y) : (b.y < c.y ? b.y : c.y), + maxTX = a.x > b.x ? (a.x > c.x ? a.x : c.x) : (b.x > c.x ? b.x : c.x), + maxTY = a.y > b.y ? (a.y > c.y ? a.y : c.y) : (b.y > c.y ? b.y : c.y); + + // z-order range for the current triangle bbox; + var minZ = zOrder(minTX, minTY, minX, minY, invSize), + maxZ = zOrder(maxTX, maxTY, minX, minY, invSize); + + var p = ear.prevZ, + n = ear.nextZ; + + // look for points inside the triangle in both directions + while (p && p.z >= minZ && n && n.z <= maxZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + // look for remaining points in decreasing z-order + while (p && p.z >= minZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + } + + // look for remaining points in increasing z-order + while (n && n.z <= maxZ) { + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + return true; +} + +// go through all polygon nodes and cure small local self-intersections +function cureLocalIntersections(start, triangles, dim) { + var p = start; + do { + var a = p.prev, + b = p.next.next; + + if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) { + + triangles.push(a.i / dim); + triangles.push(p.i / dim); + triangles.push(b.i / dim); + + // remove two nodes involved + removeNode(p); + removeNode(p.next); + + p = start = b; + } + p = p.next; + } while (p !== start); + + return filterPoints(p); +} + +// try splitting polygon into two and triangulate them independently +function splitEarcut(start, triangles, dim, minX, minY, invSize) { + // look for a valid diagonal that divides the polygon into two + var a = start; + do { + var b = a.next.next; + while (b !== a.prev) { + if (a.i !== b.i && isValidDiagonal(a, b)) { + // split the polygon in two by the diagonal + var c = splitPolygon(a, b); + + // filter colinear points around the cuts + a = filterPoints(a, a.next); + c = filterPoints(c, c.next); + + // run earcut on each half + earcutLinked(a, triangles, dim, minX, minY, invSize); + earcutLinked(c, triangles, dim, minX, minY, invSize); + return; + } + b = b.next; + } + a = a.next; + } while (a !== start); +} + +// link every hole into the outer loop, producing a single-ring polygon without holes +function eliminateHoles(data, holeIndices, outerNode, dim) { + var queue = [], + i, len, start, end, list; + + for (i = 0, len = holeIndices.length; i < len; i++) { + start = holeIndices[i] * dim; + end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + list = linkedList(data, start, end, dim, false); + if (list === list.next) list.steiner = true; + queue.push(getLeftmost(list)); + } + + queue.sort(compareX); + + // process holes from left to right + for (i = 0; i < queue.length; i++) { + eliminateHole(queue[i], outerNode); + outerNode = filterPoints(outerNode, outerNode.next); + } + + return outerNode; +} + +function compareX(a, b) { + return a.x - b.x; +} + +// find a bridge between vertices that connects hole with an outer ring and and link it +function eliminateHole(hole, outerNode) { + outerNode = findHoleBridge(hole, outerNode); + if (outerNode) { + var b = splitPolygon(outerNode, hole); + filterPoints(b, b.next); + } +} + +// David Eberly's algorithm for finding a bridge between hole and outer polygon +function findHoleBridge(hole, outerNode) { + var p = outerNode, + hx = hole.x, + hy = hole.y, + qx = -Infinity, + m; + + // find a segment intersected by a ray from the hole's leftmost point to the left; + // segment's endpoint with lesser x will be potential connection point + do { + if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) { + var x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y); + if (x <= hx && x > qx) { + qx = x; + if (x === hx) { + if (hy === p.y) return p; + if (hy === p.next.y) return p.next; + } + m = p.x < p.next.x ? p : p.next; + } + } + p = p.next; + } while (p !== outerNode); + + if (!m) return null; + + if (hx === qx) return m; // hole touches outer segment; pick leftmost endpoint + + // look for points inside the triangle of hole point, segment intersection and endpoint; + // if there are no points found, we have a valid connection; + // otherwise choose the point of the minimum angle with the ray as connection point + + var stop = m, + mx = m.x, + my = m.y, + tanMin = Infinity, + tan; + + p = m; + + do { + if (hx >= p.x && p.x >= mx && hx !== p.x && + pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) { + + tan = Math.abs(hy - p.y) / (hx - p.x); // tangential + + if (locallyInside(p, hole) && + (tan < tanMin || (tan === tanMin && (p.x > m.x || (p.x === m.x && sectorContainsSector(m, p)))))) { + m = p; + tanMin = tan; + } + } + + p = p.next; + } while (p !== stop); + + return m; +} + +// whether sector in vertex m contains sector in vertex p in the same coordinates +function sectorContainsSector(m, p) { + return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0; +} + +// interlink polygon nodes in z-order +function indexCurve(start, minX, minY, invSize) { + var p = start; + do { + if (p.z === null) p.z = zOrder(p.x, p.y, minX, minY, invSize); + p.prevZ = p.prev; + p.nextZ = p.next; + p = p.next; + } while (p !== start); + + p.prevZ.nextZ = null; + p.prevZ = null; + + sortLinked(p); +} + +// Simon Tatham's linked list merge sort algorithm +// http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html +function sortLinked(list) { + var i, p, q, e, tail, numMerges, pSize, qSize, + inSize = 1; + + do { + p = list; + list = null; + tail = null; + numMerges = 0; + + while (p) { + numMerges++; + q = p; + pSize = 0; + for (i = 0; i < inSize; i++) { + pSize++; + q = q.nextZ; + if (!q) break; + } + qSize = inSize; + + while (pSize > 0 || (qSize > 0 && q)) { + + if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) { + e = p; + p = p.nextZ; + pSize--; + } else { + e = q; + q = q.nextZ; + qSize--; + } + + if (tail) tail.nextZ = e; + else list = e; + + e.prevZ = tail; + tail = e; + } + + p = q; + } + + tail.nextZ = null; + inSize *= 2; + + } while (numMerges > 1); + + return list; +} + +// z-order of a point given coords and inverse of the longer side of data bbox +function zOrder(x, y, minX, minY, invSize) { + // coords are transformed into non-negative 15-bit integer range + x = 32767 * (x - minX) * invSize; + y = 32767 * (y - minY) * invSize; + + x = (x | (x << 8)) & 0x00FF00FF; + x = (x | (x << 4)) & 0x0F0F0F0F; + x = (x | (x << 2)) & 0x33333333; + x = (x | (x << 1)) & 0x55555555; + + y = (y | (y << 8)) & 0x00FF00FF; + y = (y | (y << 4)) & 0x0F0F0F0F; + y = (y | (y << 2)) & 0x33333333; + y = (y | (y << 1)) & 0x55555555; + + return x | (y << 1); +} + +// find the leftmost node of a polygon ring +function getLeftmost(start) { + var p = start, + leftmost = start; + do { + if (p.x < leftmost.x || (p.x === leftmost.x && p.y < leftmost.y)) leftmost = p; + p = p.next; + } while (p !== start); + + return leftmost; +} + +// check if a point lies within a convex triangle +function pointInTriangle(ax, ay, bx, by, cx, cy, px, py) { + return (cx - px) * (ay - py) - (ax - px) * (cy - py) >= 0 && + (ax - px) * (by - py) - (bx - px) * (ay - py) >= 0 && + (bx - px) * (cy - py) - (cx - px) * (by - py) >= 0; +} + +// check if a diagonal between two polygon nodes is valid (lies in polygon interior) +function isValidDiagonal(a, b) { + return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && // dones't intersect other edges + (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && // locally visible + (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors + equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case +} + +// signed area of a triangle +function area(p, q, r) { + return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y); +} + +// check if two points are equal +function equals(p1, p2) { + return p1.x === p2.x && p1.y === p2.y; +} + +// check if two segments intersect +function intersects(p1, q1, p2, q2) { + var o1 = sign(area(p1, q1, p2)); + var o2 = sign(area(p1, q1, q2)); + var o3 = sign(area(p2, q2, p1)); + var o4 = sign(area(p2, q2, q1)); + + if (o1 !== o2 && o3 !== o4) return true; // general case + + if (o1 === 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p1q1 + if (o2 === 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p1q1 + if (o3 === 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p2q2 + if (o4 === 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p2q2 + + return false; +} + +// for collinear points p, q, r, check if point q lies on segment pr +function onSegment(p, q, r) { + return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y); +} + +function sign(num) { + return num > 0 ? 1 : num < 0 ? -1 : 0; +} + +// check if a polygon diagonal intersects any polygon segments +function intersectsPolygon(a, b) { + var p = a; + do { + if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i && + intersects(p, p.next, a, b)) return true; + p = p.next; + } while (p !== a); + + return false; +} + +// check if a polygon diagonal is locally inside the polygon +function locallyInside(a, b) { + return area(a.prev, a, a.next) < 0 ? + area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 : + area(a, b, a.prev) < 0 || area(a, a.next, b) < 0; +} + +// check if the middle point of a polygon diagonal is inside the polygon +function middleInside(a, b) { + var p = a, + inside = false, + px = (a.x + b.x) / 2, + py = (a.y + b.y) / 2; + do { + if (((p.y > py) !== (p.next.y > py)) && p.next.y !== p.y && + (px < (p.next.x - p.x) * (py - p.y) / (p.next.y - p.y) + p.x)) + inside = !inside; + p = p.next; + } while (p !== a); + + return inside; +} + +// link two polygon vertices with a bridge; if the vertices belong to the same ring, it splits polygon into two; +// if one belongs to the outer ring and another to a hole, it merges it into a single ring +function splitPolygon(a, b) { + var a2 = new Node(a.i, a.x, a.y), + b2 = new Node(b.i, b.x, b.y), + an = a.next, + bp = b.prev; + + a.next = b; + b.prev = a; + + a2.next = an; + an.prev = a2; + + b2.next = a2; + a2.prev = b2; + + bp.next = b2; + b2.prev = bp; + + return b2; +} + +// create a node and optionally link it with previous one (in a circular doubly linked list) +function insertNode(i, x, y, last) { + var p = new Node(i, x, y); + + if (!last) { + p.prev = p; + p.next = p; + + } else { + p.next = last.next; + p.prev = last; + last.next.prev = p; + last.next = p; + } + return p; +} + +function removeNode(p) { + p.next.prev = p.prev; + p.prev.next = p.next; + + if (p.prevZ) p.prevZ.nextZ = p.nextZ; + if (p.nextZ) p.nextZ.prevZ = p.prevZ; +} + +function Node(i, x, y) { + // vertex index in coordinates array + this.i = i; + + // vertex coordinates + this.x = x; + this.y = y; + + // previous and next vertex nodes in a polygon ring + this.prev = null; + this.next = null; + + // z-order curve value + this.z = null; + + // previous and next nodes in z-order + this.prevZ = null; + this.nextZ = null; + + // indicates whether this is a steiner point + this.steiner = false; +} + +// return a percentage difference between the polygon area and its triangulation area; +// used to verify correctness of triangulation +earcut.deviation = function (data, holeIndices, dim, triangles) { + var hasHoles = holeIndices && holeIndices.length; + var outerLen = hasHoles ? holeIndices[0] * dim : data.length; + + var polygonArea = Math.abs(signedArea(data, 0, outerLen, dim)); + if (hasHoles) { + for (var i = 0, len = holeIndices.length; i < len; i++) { + var start = holeIndices[i] * dim; + var end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + polygonArea -= Math.abs(signedArea(data, start, end, dim)); + } + } + + var trianglesArea = 0; + for (i = 0; i < triangles.length; i += 3) { + var a = triangles[i] * dim; + var b = triangles[i + 1] * dim; + var c = triangles[i + 2] * dim; + trianglesArea += Math.abs( + (data[a] - data[c]) * (data[b + 1] - data[a + 1]) - + (data[a] - data[b]) * (data[c + 1] - data[a + 1])); + } + + return polygonArea === 0 && trianglesArea === 0 ? 0 : + Math.abs((trianglesArea - polygonArea) / polygonArea); +}; + +function signedArea(data, start, end, dim) { + var sum = 0; + for (var i = start, j = end - dim; i < end; i += dim) { + sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]); + j = i; + } + return sum; +} + +// turn a polygon in a multi-dimensional array form (e.g. as in GeoJSON) into a form Earcut accepts +earcut.flatten = function (data) { + var dim = data[0][0].length, + result = {vertices: [], holes: [], dimensions: dim}, + holeIndex = 0; + + for (var i = 0; i < data.length; i++) { + for (var j = 0; j < data[i].length; j++) { + for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]); + } + if (i > 0) { + holeIndex += data[i - 1].length; + result.holes.push(holeIndex); + } + } + return result; +}; +earcut_1.default = default_1; + +/*! https://mths.be/punycode v1.4.1 by @mathias */ + + +/** Highest positive signed 32-bit float value */ +var maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1 + +/** Bootstring parameters */ +var base = 36; +var tMin = 1; +var tMax = 26; +var skew = 38; +var damp = 700; +var initialBias = 72; +var initialN = 128; // 0x80 +var delimiter$1 = '-'; // '\x2D' +var regexNonASCII = /[^\x20-\x7E]/; // unprintable ASCII chars + non-ASCII chars +var regexSeparators = /[\x2E\u3002\uFF0E\uFF61]/g; // RFC 3490 separators + +/** Error messages */ +var errors = { + 'overflow': 'Overflow: input needs wider integers to process', + 'not-basic': 'Illegal input >= 0x80 (not a basic code point)', + 'invalid-input': 'Invalid input' +}; + +/** Convenience shortcuts */ +var baseMinusTMin = base - tMin; +var floor = Math.floor; +var stringFromCharCode = String.fromCharCode; + +/*--------------------------------------------------------------------------*/ + +/** + * A generic error utility function. + * @private + * @param {String} type The error type. + * @returns {Error} Throws a `RangeError` with the applicable error message. + */ +function error(type) { + throw new RangeError(errors[type]); +} + +/** + * A generic `Array#map` utility function. + * @private + * @param {Array} array The array to iterate over. + * @param {Function} callback The function that gets called for every array + * item. + * @returns {Array} A new array of values returned by the callback function. + */ +function map(array, fn) { + var length = array.length; + var result = []; + while (length--) { + result[length] = fn(array[length]); + } + return result; +} + +/** + * A simple `Array#map`-like wrapper to work with domain name strings or email + * addresses. + * @private + * @param {String} domain The domain name or email address. + * @param {Function} callback The function that gets called for every + * character. + * @returns {Array} A new string of characters returned by the callback + * function. + */ +function mapDomain(string, fn) { + var parts = string.split('@'); + var result = ''; + if (parts.length > 1) { + // In email addresses, only the domain name should be punycoded. Leave + // the local part (i.e. everything up to `@`) intact. + result = parts[0] + '@'; + string = parts[1]; + } + // Avoid `split(regex)` for IE8 compatibility. See #17. + string = string.replace(regexSeparators, '\x2E'); + var labels = string.split('.'); + var encoded = map(labels, fn).join('.'); + return result + encoded; +} + +/** + * Creates an array containing the numeric code points of each Unicode + * character in the string. While JavaScript uses UCS-2 internally, + * this function will convert a pair of surrogate halves (each of which + * UCS-2 exposes as separate characters) into a single code point, + * matching UTF-16. + * @see `punycode.ucs2.encode` + * @see + * @memberOf punycode.ucs2 + * @name decode + * @param {String} string The Unicode input string (UCS-2). + * @returns {Array} The new array of code points. + */ +function ucs2decode(string) { + var output = [], + counter = 0, + length = string.length, + value, + extra; + while (counter < length) { + value = string.charCodeAt(counter++); + if (value >= 0xD800 && value <= 0xDBFF && counter < length) { + // high surrogate, and there is a next character + extra = string.charCodeAt(counter++); + if ((extra & 0xFC00) == 0xDC00) { // low surrogate + output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000); + } else { + // unmatched surrogate; only append this code unit, in case the next + // code unit is the high surrogate of a surrogate pair + output.push(value); + counter--; + } + } else { + output.push(value); + } + } + return output; +} + +/** + * Converts a digit/integer into a basic code point. + * @see `basicToDigit()` + * @private + * @param {Number} digit The numeric value of a basic code point. + * @returns {Number} The basic code point whose value (when used for + * representing integers) is `digit`, which needs to be in the range + * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is + * used; else, the lowercase form is used. The behavior is undefined + * if `flag` is non-zero and `digit` has no uppercase form. + */ +function digitToBasic(digit, flag) { + // 0..25 map to ASCII a..z or A..Z + // 26..35 map to ASCII 0..9 + return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5); +} + +/** + * Bias adaptation function as per section 3.4 of RFC 3492. + * https://tools.ietf.org/html/rfc3492#section-3.4 + * @private + */ +function adapt(delta, numPoints, firstTime) { + var k = 0; + delta = firstTime ? floor(delta / damp) : delta >> 1; + delta += floor(delta / numPoints); + for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) { + delta = floor(delta / baseMinusTMin); + } + return floor(k + (baseMinusTMin + 1) * delta / (delta + skew)); +} + +/** + * Converts a string of Unicode symbols (e.g. a domain name label) to a + * Punycode string of ASCII-only symbols. + * @memberOf punycode + * @param {String} input The string of Unicode symbols. + * @returns {String} The resulting Punycode string of ASCII-only symbols. + */ +function encode(input) { + var n, + delta, + handledCPCount, + basicLength, + bias, + j, + m, + q, + k, + t, + currentValue, + output = [], + /** `inputLength` will hold the number of code points in `input`. */ + inputLength, + /** Cached calculation results */ + handledCPCountPlusOne, + baseMinusT, + qMinusT; + + // Convert the input in UCS-2 to Unicode + input = ucs2decode(input); + + // Cache the length + inputLength = input.length; + + // Initialize the state + n = initialN; + delta = 0; + bias = initialBias; + + // Handle the basic code points + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue < 0x80) { + output.push(stringFromCharCode(currentValue)); + } + } + + handledCPCount = basicLength = output.length; + + // `handledCPCount` is the number of code points that have been handled; + // `basicLength` is the number of basic code points. + + // Finish the basic string - if it is not empty - with a delimiter + if (basicLength) { + output.push(delimiter$1); + } + + // Main encoding loop: + while (handledCPCount < inputLength) { + + // All non-basic code points < n have been handled already. Find the next + // larger one: + for (m = maxInt, j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue >= n && currentValue < m) { + m = currentValue; + } + } + + // Increase `delta` enough to advance the decoder's state to , + // but guard against overflow + handledCPCountPlusOne = handledCPCount + 1; + if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) { + error('overflow'); + } + + delta += (m - n) * handledCPCountPlusOne; + n = m; + + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + + if (currentValue < n && ++delta > maxInt) { + error('overflow'); + } + + if (currentValue == n) { + // Represent delta as a generalized variable-length integer + for (q = delta, k = base; /* no condition */ ; k += base) { + t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias); + if (q < t) { + break; + } + qMinusT = q - t; + baseMinusT = base - t; + output.push( + stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0)) + ); + q = floor(qMinusT / baseMinusT); + } + + output.push(stringFromCharCode(digitToBasic(q, 0))); + bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength); + delta = 0; + ++handledCPCount; + } + } + + ++delta; + ++n; + + } + return output.join(''); +} + +/** + * Converts a Unicode string representing a domain name or an email address to + * Punycode. Only the non-ASCII parts of the domain name will be converted, + * i.e. it doesn't matter if you call it with a domain that's already in + * ASCII. + * @memberOf punycode + * @param {String} input The domain name or email address to convert, as a + * Unicode string. + * @returns {String} The Punycode representation of the given domain name or + * email address. + */ +function toASCII(input) { + return mapDomain(input, function(string) { + return regexNonASCII.test(string) ? + 'xn--' + encode(string) : + string; + }); +} + +// Copyright Joyent, Inc. and other Node contributors. + +function isNull(arg) { + return arg === null; +} + +function isNullOrUndefined(arg) { + return arg == null; +} + +function isString(arg) { + return typeof arg === 'string'; +} + +function isObject(arg) { + return typeof arg === 'object' && arg !== null; +} + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + + +// If obj.hasOwnProperty has been overridden, then calling +// obj.hasOwnProperty(prop) will break. +// See: https://github.com/joyent/node/issues/1707 +function hasOwnProperty$1(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop); +} +var isArray = Array.isArray || function (xs) { + return Object.prototype.toString.call(xs) === '[object Array]'; +}; +function stringifyPrimitive(v) { + switch (typeof v) { + case 'string': + return v; + + case 'boolean': + return v ? 'true' : 'false'; + + case 'number': + return isFinite(v) ? v : ''; + + default: + return ''; + } +} + +function stringify (obj, sep, eq, name) { + sep = sep || '&'; + eq = eq || '='; + if (obj === null) { + obj = undefined; + } + + if (typeof obj === 'object') { + return map$1(objectKeys(obj), function(k) { + var ks = encodeURIComponent(stringifyPrimitive(k)) + eq; + if (isArray(obj[k])) { + return map$1(obj[k], function(v) { + return ks + encodeURIComponent(stringifyPrimitive(v)); + }).join(sep); + } else { + return ks + encodeURIComponent(stringifyPrimitive(obj[k])); + } + }).join(sep); + + } + + if (!name) return ''; + return encodeURIComponent(stringifyPrimitive(name)) + eq + + encodeURIComponent(stringifyPrimitive(obj)); +} +function map$1 (xs, f) { + if (xs.map) return xs.map(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + res.push(f(xs[i], i)); + } + return res; +} + +var objectKeys = Object.keys || function (obj) { + var res = []; + for (var key in obj) { + if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key); + } + return res; +}; + +function parse(qs, sep, eq, options) { + sep = sep || '&'; + eq = eq || '='; + var obj = {}; + + if (typeof qs !== 'string' || qs.length === 0) { + return obj; + } + + var regexp = /\+/g; + qs = qs.split(sep); + + var maxKeys = 1000; + if (options && typeof options.maxKeys === 'number') { + maxKeys = options.maxKeys; + } + + var len = qs.length; + // maxKeys <= 0 means that we should not limit keys count + if (maxKeys > 0 && len > maxKeys) { + len = maxKeys; + } + + for (var i = 0; i < len; ++i) { + var x = qs[i].replace(regexp, '%20'), + idx = x.indexOf(eq), + kstr, vstr, k, v; + + if (idx >= 0) { + kstr = x.substr(0, idx); + vstr = x.substr(idx + 1); + } else { + kstr = x; + vstr = ''; + } + + k = decodeURIComponent(kstr); + v = decodeURIComponent(vstr); + + if (!hasOwnProperty$1(obj, k)) { + obj[k] = v; + } else if (isArray(obj[k])) { + obj[k].push(v); + } else { + obj[k] = [obj[k], v]; + } + } + + return obj; +} + +// Copyright Joyent, Inc. and other Node contributors. +var url = { + parse: urlParse, + resolve: urlResolve, + resolveObject: urlResolveObject, + format: urlFormat, + Url: Url +}; +function Url() { + this.protocol = null; + this.slashes = null; + this.auth = null; + this.host = null; + this.port = null; + this.hostname = null; + this.hash = null; + this.search = null; + this.query = null; + this.pathname = null; + this.path = null; + this.href = null; +} + +// Reference: RFC 3986, RFC 1808, RFC 2396 + +// define these here so at least they only have to be +// compiled once on the first module load. +var protocolPattern = /^([a-z0-9.+-]+:)/i, + portPattern = /:[0-9]*$/, + + // Special case for a simple path URL + simplePathPattern = /^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/, + + // RFC 2396: characters reserved for delimiting URLs. + // We actually just auto-escape these. + delims = ['<', '>', '"', '`', ' ', '\r', '\n', '\t'], + + // RFC 2396: characters not allowed for various reasons. + unwise = ['{', '}', '|', '\\', '^', '`'].concat(delims), + + // Allowed by RFCs, but cause of XSS attacks. Always escape these. + autoEscape = ['\''].concat(unwise), + // Characters that are never ever allowed in a hostname. + // Note that any invalid chars are also handled, but these + // are the ones that are *expected* to be seen, so we fast-path + // them. + nonHostChars = ['%', '/', '?', ';', '#'].concat(autoEscape), + hostEndingChars = ['/', '?', '#'], + hostnameMaxLen = 255, + hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/, + hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/, + // protocols that can allow "unsafe" and "unwise" chars. + unsafeProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that never have a hostname. + hostlessProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that always contain a // bit. + slashedProtocol = { + 'http': true, + 'https': true, + 'ftp': true, + 'gopher': true, + 'file': true, + 'http:': true, + 'https:': true, + 'ftp:': true, + 'gopher:': true, + 'file:': true + }; + +function urlParse(url, parseQueryString, slashesDenoteHost) { + if (url && isObject(url) && url instanceof Url) return url; + + var u = new Url; + u.parse(url, parseQueryString, slashesDenoteHost); + return u; +} +Url.prototype.parse = function(url, parseQueryString, slashesDenoteHost) { + return parse$1(this, url, parseQueryString, slashesDenoteHost); +}; + +function parse$1(self, url, parseQueryString, slashesDenoteHost) { + if (!isString(url)) { + throw new TypeError('Parameter \'url\' must be a string, not ' + typeof url); + } + + // Copy chrome, IE, opera backslash-handling behavior. + // Back slashes before the query string get converted to forward slashes + // See: https://code.google.com/p/chromium/issues/detail?id=25916 + var queryIndex = url.indexOf('?'), + splitter = + (queryIndex !== -1 && queryIndex < url.indexOf('#')) ? '?' : '#', + uSplit = url.split(splitter), + slashRegex = /\\/g; + uSplit[0] = uSplit[0].replace(slashRegex, '/'); + url = uSplit.join(splitter); + + var rest = url; + + // trim before proceeding. + // This is to support parse stuff like " http://foo.com \n" + rest = rest.trim(); + + if (!slashesDenoteHost && url.split('#').length === 1) { + // Try fast path regexp + var simplePath = simplePathPattern.exec(rest); + if (simplePath) { + self.path = rest; + self.href = rest; + self.pathname = simplePath[1]; + if (simplePath[2]) { + self.search = simplePath[2]; + if (parseQueryString) { + self.query = parse(self.search.substr(1)); + } else { + self.query = self.search.substr(1); + } + } else if (parseQueryString) { + self.search = ''; + self.query = {}; + } + return self; + } + } + + var proto = protocolPattern.exec(rest); + if (proto) { + proto = proto[0]; + var lowerProto = proto.toLowerCase(); + self.protocol = lowerProto; + rest = rest.substr(proto.length); + } + + // figure out if it's got a host + // user@server is *always* interpreted as a hostname, and url + // resolution will treat //foo/bar as host=foo,path=bar because that's + // how the browser resolves relative URLs. + if (slashesDenoteHost || proto || rest.match(/^\/\/[^@\/]+@[^@\/]+/)) { + var slashes = rest.substr(0, 2) === '//'; + if (slashes && !(proto && hostlessProtocol[proto])) { + rest = rest.substr(2); + self.slashes = true; + } + } + var i, hec, l, p; + if (!hostlessProtocol[proto] && + (slashes || (proto && !slashedProtocol[proto]))) { + + // there's a hostname. + // the first instance of /, ?, ;, or # ends the host. + // + // If there is an @ in the hostname, then non-host chars *are* allowed + // to the left of the last @ sign, unless some host-ending character + // comes *before* the @-sign. + // URLs are obnoxious. + // + // ex: + // http://a@b@c/ => user:a@b host:c + // http://a@b?@c => user:a host:c path:/?@c + + // v0.12 TODO(isaacs): This is not quite how Chrome does things. + // Review our test case against browsers more comprehensively. + + // find the first instance of any hostEndingChars + var hostEnd = -1; + for (i = 0; i < hostEndingChars.length; i++) { + hec = rest.indexOf(hostEndingChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + + // at this point, either we have an explicit point where the + // auth portion cannot go past, or the last @ char is the decider. + var auth, atSign; + if (hostEnd === -1) { + // atSign can be anywhere. + atSign = rest.lastIndexOf('@'); + } else { + // atSign must be in auth portion. + // http://a@b/c@d => host:b auth:a path:/c@d + atSign = rest.lastIndexOf('@', hostEnd); + } + + // Now we have a portion which is definitely the auth. + // Pull that off. + if (atSign !== -1) { + auth = rest.slice(0, atSign); + rest = rest.slice(atSign + 1); + self.auth = decodeURIComponent(auth); + } + + // the host is the remaining to the left of the first non-host char + hostEnd = -1; + for (i = 0; i < nonHostChars.length; i++) { + hec = rest.indexOf(nonHostChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + // if we still have not hit it, then the entire thing is a host. + if (hostEnd === -1) + hostEnd = rest.length; + + self.host = rest.slice(0, hostEnd); + rest = rest.slice(hostEnd); + + // pull out port. + parseHost(self); + + // we've indicated that there is a hostname, + // so even if it's empty, it has to be present. + self.hostname = self.hostname || ''; + + // if hostname begins with [ and ends with ] + // assume that it's an IPv6 address. + var ipv6Hostname = self.hostname[0] === '[' && + self.hostname[self.hostname.length - 1] === ']'; + + // validate a little. + if (!ipv6Hostname) { + var hostparts = self.hostname.split(/\./); + for (i = 0, l = hostparts.length; i < l; i++) { + var part = hostparts[i]; + if (!part) continue; + if (!part.match(hostnamePartPattern)) { + var newpart = ''; + for (var j = 0, k = part.length; j < k; j++) { + if (part.charCodeAt(j) > 127) { + // we replace non-ASCII char with a temporary placeholder + // we need this to make sure size of hostname is not + // broken by replacing non-ASCII by nothing + newpart += 'x'; + } else { + newpart += part[j]; + } + } + // we test again with ASCII char only + if (!newpart.match(hostnamePartPattern)) { + var validParts = hostparts.slice(0, i); + var notHost = hostparts.slice(i + 1); + var bit = part.match(hostnamePartStart); + if (bit) { + validParts.push(bit[1]); + notHost.unshift(bit[2]); + } + if (notHost.length) { + rest = '/' + notHost.join('.') + rest; + } + self.hostname = validParts.join('.'); + break; + } + } + } + } + + if (self.hostname.length > hostnameMaxLen) { + self.hostname = ''; + } else { + // hostnames are always lower case. + self.hostname = self.hostname.toLowerCase(); + } + + if (!ipv6Hostname) { + // IDNA Support: Returns a punycoded representation of "domain". + // It only converts parts of the domain name that + // have non-ASCII characters, i.e. it doesn't matter if + // you call it with a domain that already is ASCII-only. + self.hostname = toASCII(self.hostname); + } + + p = self.port ? ':' + self.port : ''; + var h = self.hostname || ''; + self.host = h + p; + self.href += self.host; + + // strip [ and ] from the hostname + // the host field still retains them, though + if (ipv6Hostname) { + self.hostname = self.hostname.substr(1, self.hostname.length - 2); + if (rest[0] !== '/') { + rest = '/' + rest; + } + } + } + + // now rest is set to the post-host stuff. + // chop off any delim chars. + if (!unsafeProtocol[lowerProto]) { + + // First, make 100% sure that any "autoEscape" chars get + // escaped, even if encodeURIComponent doesn't think they + // need to be. + for (i = 0, l = autoEscape.length; i < l; i++) { + var ae = autoEscape[i]; + if (rest.indexOf(ae) === -1) + continue; + var esc = encodeURIComponent(ae); + if (esc === ae) { + esc = escape(ae); + } + rest = rest.split(ae).join(esc); + } + } + + + // chop off from the tail first. + var hash = rest.indexOf('#'); + if (hash !== -1) { + // got a fragment string. + self.hash = rest.substr(hash); + rest = rest.slice(0, hash); + } + var qm = rest.indexOf('?'); + if (qm !== -1) { + self.search = rest.substr(qm); + self.query = rest.substr(qm + 1); + if (parseQueryString) { + self.query = parse(self.query); + } + rest = rest.slice(0, qm); + } else if (parseQueryString) { + // no query string, but parseQueryString still requested + self.search = ''; + self.query = {}; + } + if (rest) self.pathname = rest; + if (slashedProtocol[lowerProto] && + self.hostname && !self.pathname) { + self.pathname = '/'; + } + + //to support http.request + if (self.pathname || self.search) { + p = self.pathname || ''; + var s = self.search || ''; + self.path = p + s; + } + + // finally, reconstruct the href based on what has been validated. + self.href = format(self); + return self; +} + +// format a parsed object into a url string +function urlFormat(obj) { + // ensure it's an object, and not a string url. + // If it's an obj, this is a no-op. + // this way, you can call url_format() on strings + // to clean up potentially wonky urls. + if (isString(obj)) obj = parse$1({}, obj); + return format(obj); +} + +function format(self) { + var auth = self.auth || ''; + if (auth) { + auth = encodeURIComponent(auth); + auth = auth.replace(/%3A/i, ':'); + auth += '@'; + } + + var protocol = self.protocol || '', + pathname = self.pathname || '', + hash = self.hash || '', + host = false, + query = ''; + + if (self.host) { + host = auth + self.host; + } else if (self.hostname) { + host = auth + (self.hostname.indexOf(':') === -1 ? + self.hostname : + '[' + this.hostname + ']'); + if (self.port) { + host += ':' + self.port; + } + } + + if (self.query && + isObject(self.query) && + Object.keys(self.query).length) { + query = stringify(self.query); + } + + var search = self.search || (query && ('?' + query)) || ''; + + if (protocol && protocol.substr(-1) !== ':') protocol += ':'; + + // only the slashedProtocols get the //. Not mailto:, xmpp:, etc. + // unless they had them to begin with. + if (self.slashes || + (!protocol || slashedProtocol[protocol]) && host !== false) { + host = '//' + (host || ''); + if (pathname && pathname.charAt(0) !== '/') pathname = '/' + pathname; + } else if (!host) { + host = ''; + } + + if (hash && hash.charAt(0) !== '#') hash = '#' + hash; + if (search && search.charAt(0) !== '?') search = '?' + search; + + pathname = pathname.replace(/[?#]/g, function(match) { + return encodeURIComponent(match); + }); + search = search.replace('#', '%23'); + + return protocol + host + pathname + search + hash; +} + +Url.prototype.format = function() { + return format(this); +}; + +function urlResolve(source, relative) { + return urlParse(source, false, true).resolve(relative); +} + +Url.prototype.resolve = function(relative) { + return this.resolveObject(urlParse(relative, false, true)).format(); +}; + +function urlResolveObject(source, relative) { + if (!source) return relative; + return urlParse(source, false, true).resolveObject(relative); +} + +Url.prototype.resolveObject = function(relative) { + if (isString(relative)) { + var rel = new Url(); + rel.parse(relative, false, true); + relative = rel; + } + + var result = new Url(); + var tkeys = Object.keys(this); + for (var tk = 0; tk < tkeys.length; tk++) { + var tkey = tkeys[tk]; + result[tkey] = this[tkey]; + } + + // hash is always overridden, no matter what. + // even href="" will remove it. + result.hash = relative.hash; + + // if the relative url is empty, then there's nothing left to do here. + if (relative.href === '') { + result.href = result.format(); + return result; + } + + // hrefs like //foo/bar always cut to the protocol. + if (relative.slashes && !relative.protocol) { + // take everything except the protocol from relative + var rkeys = Object.keys(relative); + for (var rk = 0; rk < rkeys.length; rk++) { + var rkey = rkeys[rk]; + if (rkey !== 'protocol') + result[rkey] = relative[rkey]; + } + + //urlParse appends trailing / to urls like http://www.example.com + if (slashedProtocol[result.protocol] && + result.hostname && !result.pathname) { + result.path = result.pathname = '/'; + } + + result.href = result.format(); + return result; + } + var relPath; + if (relative.protocol && relative.protocol !== result.protocol) { + // if it's a known url protocol, then changing + // the protocol does weird things + // first, if it's not file:, then we MUST have a host, + // and if there was a path + // to begin with, then we MUST have a path. + // if it is file:, then the host is dropped, + // because that's known to be hostless. + // anything else is assumed to be absolute. + if (!slashedProtocol[relative.protocol]) { + var keys = Object.keys(relative); + for (var v = 0; v < keys.length; v++) { + var k = keys[v]; + result[k] = relative[k]; + } + result.href = result.format(); + return result; + } + + result.protocol = relative.protocol; + if (!relative.host && !hostlessProtocol[relative.protocol]) { + relPath = (relative.pathname || '').split('/'); + while (relPath.length && !(relative.host = relPath.shift())); + if (!relative.host) relative.host = ''; + if (!relative.hostname) relative.hostname = ''; + if (relPath[0] !== '') relPath.unshift(''); + if (relPath.length < 2) relPath.unshift(''); + result.pathname = relPath.join('/'); + } else { + result.pathname = relative.pathname; + } + result.search = relative.search; + result.query = relative.query; + result.host = relative.host || ''; + result.auth = relative.auth; + result.hostname = relative.hostname || relative.host; + result.port = relative.port; + // to support http.request + if (result.pathname || result.search) { + var p = result.pathname || ''; + var s = result.search || ''; + result.path = p + s; + } + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; + } + + var isSourceAbs = (result.pathname && result.pathname.charAt(0) === '/'), + isRelAbs = ( + relative.host || + relative.pathname && relative.pathname.charAt(0) === '/' + ), + mustEndAbs = (isRelAbs || isSourceAbs || + (result.host && relative.pathname)), + removeAllDots = mustEndAbs, + srcPath = result.pathname && result.pathname.split('/') || [], + psychotic = result.protocol && !slashedProtocol[result.protocol]; + relPath = relative.pathname && relative.pathname.split('/') || []; + // if the url is a non-slashed url, then relative + // links like ../.. should be able + // to crawl up to the hostname, as well. This is strange. + // result.protocol has already been set by now. + // Later on, put the first path part into the host field. + if (psychotic) { + result.hostname = ''; + result.port = null; + if (result.host) { + if (srcPath[0] === '') srcPath[0] = result.host; + else srcPath.unshift(result.host); + } + result.host = ''; + if (relative.protocol) { + relative.hostname = null; + relative.port = null; + if (relative.host) { + if (relPath[0] === '') relPath[0] = relative.host; + else relPath.unshift(relative.host); + } + relative.host = null; + } + mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === ''); + } + var authInHost; + if (isRelAbs) { + // it's absolute. + result.host = (relative.host || relative.host === '') ? + relative.host : result.host; + result.hostname = (relative.hostname || relative.hostname === '') ? + relative.hostname : result.hostname; + result.search = relative.search; + result.query = relative.query; + srcPath = relPath; + // fall through to the dot-handling below. + } else if (relPath.length) { + // it's relative + // throw away the existing file, and take the new path instead. + if (!srcPath) srcPath = []; + srcPath.pop(); + srcPath = srcPath.concat(relPath); + result.search = relative.search; + result.query = relative.query; + } else if (!isNullOrUndefined(relative.search)) { + // just pull out the search. + // like href='?foo'. + // Put this after the other two cases because it simplifies the booleans + if (psychotic) { + result.hostname = result.host = srcPath.shift(); + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + result.search = relative.search; + result.query = relative.query; + //to support http.request + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.href = result.format(); + return result; + } + + if (!srcPath.length) { + // no path at all. easy. + // we've already handled the other stuff above. + result.pathname = null; + //to support http.request + if (result.search) { + result.path = '/' + result.search; + } else { + result.path = null; + } + result.href = result.format(); + return result; + } + + // if a url ENDs in . or .., then it must get a trailing slash. + // however, if it ends in anything else non-slashy, + // then it must NOT get a trailing slash. + var last = srcPath.slice(-1)[0]; + var hasTrailingSlash = ( + (result.host || relative.host || srcPath.length > 1) && + (last === '.' || last === '..') || last === ''); + + // strip single dots, resolve double dots to parent dir + // if the path tries to go above the root, `up` ends up > 0 + var up = 0; + for (var i = srcPath.length; i >= 0; i--) { + last = srcPath[i]; + if (last === '.') { + srcPath.splice(i, 1); + } else if (last === '..') { + srcPath.splice(i, 1); + up++; + } else if (up) { + srcPath.splice(i, 1); + up--; + } + } + + // if the path is allowed to go above the root, restore leading ..s + if (!mustEndAbs && !removeAllDots) { + for (; up--; up) { + srcPath.unshift('..'); + } + } + + if (mustEndAbs && srcPath[0] !== '' && + (!srcPath[0] || srcPath[0].charAt(0) !== '/')) { + srcPath.unshift(''); + } + + if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) { + srcPath.push(''); + } + + var isAbsolute = srcPath[0] === '' || + (srcPath[0] && srcPath[0].charAt(0) === '/'); + + // put the host back + if (psychotic) { + result.hostname = result.host = isAbsolute ? '' : + srcPath.length ? srcPath.shift() : ''; + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + + mustEndAbs = mustEndAbs || (result.host && srcPath.length); + + if (mustEndAbs && !isAbsolute) { + srcPath.unshift(''); + } + + if (!srcPath.length) { + result.pathname = null; + result.path = null; + } else { + result.pathname = srcPath.join('/'); + } + + //to support request.http + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.auth = relative.auth || result.auth; + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; +}; + +Url.prototype.parseHost = function() { + return parseHost(this); +}; + +function parseHost(self) { + var host = self.host; + var port = portPattern.exec(host); + if (port) { + port = port[0]; + if (port !== ':') { + self.port = port.substr(1); + } + host = host.substr(0, host.length - port.length); + } + if (host) self.hostname = host; +} + +/*! + * @pixi/constants - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/constants is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * Different types of environments for WebGL. + * + * @static + * @memberof PIXI + * @name ENV + * @enum {number} + * @property {number} WEBGL_LEGACY - Used for older v1 WebGL devices. PixiJS will aim to ensure compatibility + * with older / less advanced devices. If you experience unexplained flickering prefer this environment. + * @property {number} WEBGL - Version 1 of WebGL + * @property {number} WEBGL2 - Version 2 of WebGL + */ +var ENV = { + WEBGL_LEGACY: 0, + WEBGL: 1, + WEBGL2: 2, +}; + +/** + * Constant to identify the Renderer Type. + * + * @static + * @memberof PIXI + * @name RENDERER_TYPE + * @enum {number} + * @property {number} UNKNOWN - Unknown render type. + * @property {number} WEBGL - WebGL render type. + * @property {number} CANVAS - Canvas render type. + */ +var RENDERER_TYPE = { + UNKNOWN: 0, + WEBGL: 1, + CANVAS: 2, +}; + +/** + * Various blend modes supported by PIXI. + * + * IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes. + * Anything else will silently act like NORMAL. + * + * @memberof PIXI + * @name BLEND_MODES + * @enum {number} + * @property {number} NORMAL + * @property {number} ADD + * @property {number} MULTIPLY + * @property {number} SCREEN + * @property {number} OVERLAY + * @property {number} DARKEN + * @property {number} LIGHTEN + * @property {number} COLOR_DODGE + * @property {number} COLOR_BURN + * @property {number} HARD_LIGHT + * @property {number} SOFT_LIGHT + * @property {number} DIFFERENCE + * @property {number} EXCLUSION + * @property {number} HUE + * @property {number} SATURATION + * @property {number} COLOR + * @property {number} LUMINOSITY + * @property {number} NORMAL_NPM + * @property {number} ADD_NPM + * @property {number} SCREEN_NPM + * @property {number} NONE + * @property {number} SRC_IN + * @property {number} SRC_OUT + * @property {number} SRC_ATOP + * @property {number} DST_OVER + * @property {number} DST_IN + * @property {number} DST_OUT + * @property {number} DST_ATOP + * @property {number} SUBTRACT + * @property {number} SRC_OVER + * @property {number} ERASE + */ +var BLEND_MODES = { + NORMAL: 0, + ADD: 1, + MULTIPLY: 2, + SCREEN: 3, + OVERLAY: 4, + DARKEN: 5, + LIGHTEN: 6, + COLOR_DODGE: 7, + COLOR_BURN: 8, + HARD_LIGHT: 9, + SOFT_LIGHT: 10, + DIFFERENCE: 11, + EXCLUSION: 12, + HUE: 13, + SATURATION: 14, + COLOR: 15, + LUMINOSITY: 16, + NORMAL_NPM: 17, + ADD_NPM: 18, + SCREEN_NPM: 19, + NONE: 20, + + SRC_OVER: 0, + SRC_IN: 21, + SRC_OUT: 22, + SRC_ATOP: 23, + DST_OVER: 24, + DST_IN: 25, + DST_OUT: 26, + DST_ATOP: 27, + ERASE: 26, + SUBTRACT: 28, +}; + +/** + * Various webgl draw modes. These can be used to specify which GL drawMode to use + * under certain situations and renderers. + * + * @memberof PIXI + * @static + * @name DRAW_MODES + * @enum {number} + * @property {number} POINTS + * @property {number} LINES + * @property {number} LINE_LOOP + * @property {number} LINE_STRIP + * @property {number} TRIANGLES + * @property {number} TRIANGLE_STRIP + * @property {number} TRIANGLE_FAN + */ +var DRAW_MODES = { + POINTS: 0, + LINES: 1, + LINE_LOOP: 2, + LINE_STRIP: 3, + TRIANGLES: 4, + TRIANGLE_STRIP: 5, + TRIANGLE_FAN: 6, +}; + +/** + * Various GL texture/resources formats. + * + * @memberof PIXI + * @static + * @name FORMATS + * @enum {number} + * @property {number} RGBA=6408 + * @property {number} RGB=6407 + * @property {number} ALPHA=6406 + * @property {number} LUMINANCE=6409 + * @property {number} LUMINANCE_ALPHA=6410 + * @property {number} DEPTH_COMPONENT=6402 + * @property {number} DEPTH_STENCIL=34041 + */ +var FORMATS = { + RGBA: 6408, + RGB: 6407, + ALPHA: 6406, + LUMINANCE: 6409, + LUMINANCE_ALPHA: 6410, + DEPTH_COMPONENT: 6402, + DEPTH_STENCIL: 34041, +}; + +/** + * Various GL target types. + * + * @memberof PIXI + * @static + * @name TARGETS + * @enum {number} + * @property {number} TEXTURE_2D=3553 + * @property {number} TEXTURE_CUBE_MAP=34067 + * @property {number} TEXTURE_2D_ARRAY=35866 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_X=34069 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_X=34070 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Y=34071 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Y=34072 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Z=34073 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Z=34074 + */ +var TARGETS = { + TEXTURE_2D: 3553, + TEXTURE_CUBE_MAP: 34067, + TEXTURE_2D_ARRAY: 35866, + TEXTURE_CUBE_MAP_POSITIVE_X: 34069, + TEXTURE_CUBE_MAP_NEGATIVE_X: 34070, + TEXTURE_CUBE_MAP_POSITIVE_Y: 34071, + TEXTURE_CUBE_MAP_NEGATIVE_Y: 34072, + TEXTURE_CUBE_MAP_POSITIVE_Z: 34073, + TEXTURE_CUBE_MAP_NEGATIVE_Z: 34074, +}; + +/** + * Various GL data format types. + * + * @memberof PIXI + * @static + * @name TYPES + * @enum {number} + * @property {number} UNSIGNED_BYTE=5121 + * @property {number} UNSIGNED_SHORT=5123 + * @property {number} UNSIGNED_SHORT_5_6_5=33635 + * @property {number} UNSIGNED_SHORT_4_4_4_4=32819 + * @property {number} UNSIGNED_SHORT_5_5_5_1=32820 + * @property {number} FLOAT=5126 + * @property {number} HALF_FLOAT=36193 + */ +var TYPES = { + UNSIGNED_BYTE: 5121, + UNSIGNED_SHORT: 5123, + UNSIGNED_SHORT_5_6_5: 33635, + UNSIGNED_SHORT_4_4_4_4: 32819, + UNSIGNED_SHORT_5_5_5_1: 32820, + FLOAT: 5126, + HALF_FLOAT: 36193, +}; + +/** + * The scale modes that are supported by pixi. + * + * The {@link PIXI.settings.SCALE_MODE} scale mode affects the default scaling mode of future operations. + * It can be re-assigned to either LINEAR or NEAREST, depending upon suitability. + * + * @memberof PIXI + * @static + * @name SCALE_MODES + * @enum {number} + * @property {number} LINEAR Smooth scaling + * @property {number} NEAREST Pixelating scaling + */ +var SCALE_MODES = { + LINEAR: 1, + NEAREST: 0, +}; + +/** + * The wrap modes that are supported by pixi. + * + * The {@link PIXI.settings.WRAP_MODE} wrap mode affects the default wrapping mode of future operations. + * It can be re-assigned to either CLAMP or REPEAT, depending upon suitability. + * If the texture is non power of two then clamp will be used regardless as WebGL can + * only use REPEAT if the texture is po2. + * + * This property only affects WebGL. + * + * @name WRAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} CLAMP - The textures uvs are clamped + * @property {number} REPEAT - The texture uvs tile and repeat + * @property {number} MIRRORED_REPEAT - The texture uvs tile and repeat with mirroring + */ +var WRAP_MODES = { + CLAMP: 33071, + REPEAT: 10497, + MIRRORED_REPEAT: 33648, +}; + +/** + * Mipmap filtering modes that are supported by pixi. + * + * The {@link PIXI.settings.MIPMAP_TEXTURES} affects default texture filtering. + * Mipmaps are generated for a baseTexture if its `mipmap` field is `ON`, + * or its `POW2` and texture dimensions are powers of 2. + * Due to platform restriction, `ON` option will work like `POW2` for webgl-1. + * + * This property only affects WebGL. + * + * @name MIPMAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} OFF - No mipmaps + * @property {number} POW2 - Generate mipmaps if texture dimensions are pow2 + * @property {number} ON - Always generate mipmaps + */ +var MIPMAP_MODES = { + OFF: 0, + POW2: 1, + ON: 2, +}; + +/** + * The gc modes that are supported by pixi. + * + * The {@link PIXI.settings.GC_MODE} Garbage Collection mode for PixiJS textures is AUTO + * If set to GC_MODE, the renderer will occasionally check textures usage. If they are not + * used for a specified period of time they will be removed from the GPU. They will of course + * be uploaded again when they are required. This is a silent behind the scenes process that + * should ensure that the GPU does not get filled up. + * + * Handy for mobile devices! + * This property only affects WebGL. + * + * @name GC_MODES + * @enum {number} + * @static + * @memberof PIXI + * @property {number} AUTO - Garbage collection will happen periodically automatically + * @property {number} MANUAL - Garbage collection will need to be called manually + */ +var GC_MODES = { + AUTO: 0, + MANUAL: 1, +}; + +/** + * Constants that specify float precision in shaders. + * + * @name PRECISION + * @memberof PIXI + * @static + * @enum {string} + * @constant + * @property {string} LOW='lowp' + * @property {string} MEDIUM='mediump' + * @property {string} HIGH='highp' + */ +var PRECISION = { + LOW: 'lowp', + MEDIUM: 'mediump', + HIGH: 'highp', +}; + +/*! + * @pixi/utils - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/utils is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The prefix that denotes a URL is for a retina asset. + * + * @static + * @name RETINA_PREFIX + * @memberof PIXI.settings + * @type {RegExp} + * @default /@([0-9\.]+)x/ + * @example `@2x` + */ +settings.RETINA_PREFIX = /@([0-9\.]+)x/; + +/** + * Should the `failIfMajorPerformanceCaveat` flag be enabled as a context option used in the `isWebGLSupported` function. + * For most scenarios this should be left as true, as otherwise the user may have a poor experience. + * However, it can be useful to disable under certain scenarios, such as headless unit tests. + * + * @static + * @name FAIL_IF_MAJOR_PERFORMANCE_CAVEAT + * @memberof PIXI.settings + * @type {boolean} + * @default true + */ +settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = true; + +var saidHello = false; +var VERSION = '5.1.3'; + +/** + * Logs out the version and renderer information for this running instance of PIXI. + * If you don't want to see this message you can run `PIXI.utils.skipHello()` before + * creating your renderer. Keep in mind that doing that will forever make you a jerk face. + * + * @static + * @function sayHello + * @memberof PIXI.utils + * @param {string} type - The string renderer type to log. + */ +function sayHello(type) +{ + if (saidHello) + { + return; + } + + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + var args = [ + ("\n %c %c %c PixiJS " + VERSION + " - ✰ " + type + " ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \n\n"), + 'background: #ff66a5; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff66a5; background: #030307; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'background: #ffc3dc; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;' ]; + + window.console.log.apply(console, args); + } + else if (window.console) + { + window.console.log(("PixiJS " + VERSION + " - " + type + " - http://www.pixijs.com/")); + } + + saidHello = true; +} + +var supported; + +/** + * Helper for checking for WebGL support. + * + * @memberof PIXI.utils + * @function isWebGLSupported + * @return {boolean} Is WebGL supported. + */ +function isWebGLSupported() +{ + if (typeof supported === 'undefined') + { + supported = (function supported() + { + var contextOptions = { + stencil: true, + failIfMajorPerformanceCaveat: settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT, + }; + + try + { + if (!window.WebGLRenderingContext) + { + return false; + } + + var canvas = document.createElement('canvas'); + var gl = canvas.getContext('webgl', contextOptions) + || canvas.getContext('experimental-webgl', contextOptions); + + var success = !!(gl && gl.getContextAttributes().stencil); + + if (gl) + { + var loseContext = gl.getExtension('WEBGL_lose_context'); + + if (loseContext) + { + loseContext.loseContext(); + } + } + + gl = null; + + return success; + } + catch (e) + { + return false; + } + })(); + } + + return supported; +} + +/** + * Converts a hexadecimal color number to an [R, G, B] array of normalized floats (numbers from 0.0 to 1.0). + * + * @example + * PIXI.utils.hex2rgb(0xffffff); // returns [1, 1, 1] + * @memberof PIXI.utils + * @function hex2rgb + * @param {number} hex - The hexadecimal number to convert + * @param {number[]} [out=[]] If supplied, this array will be used rather than returning a new one + * @return {number[]} An array representing the [R, G, B] of the color where all values are floats. + */ +function hex2rgb(hex, out) +{ + out = out || []; + + out[0] = ((hex >> 16) & 0xFF) / 255; + out[1] = ((hex >> 8) & 0xFF) / 255; + out[2] = (hex & 0xFF) / 255; + + return out; +} + +/** + * Converts a hexadecimal color number to a string. + * + * @example + * PIXI.utils.hex2string(0xffffff); // returns "#ffffff" + * @memberof PIXI.utils + * @function hex2string + * @param {number} hex - Number in hex (e.g., `0xffffff`) + * @return {string} The string color (e.g., `"#ffffff"`). + */ +function hex2string(hex) +{ + hex = hex.toString(16); + hex = '000000'.substr(0, 6 - hex.length) + hex; + + return ("#" + hex); +} + +/** + * Converts a hexadecimal string to a hexadecimal color number. + * + * @example + * PIXI.utils.string2hex("#ffffff"); // returns 0xffffff + * @memberof PIXI.utils + * @function string2hex + * @param {string} The string color (e.g., `"#ffffff"`) + * @return {number} Number in hexadecimal. + */ +function string2hex(string) +{ + if (typeof string === 'string' && string[0] === '#') + { + string = string.substr(1); + } + + return parseInt(string, 16); +} + +/** + * Corrects PixiJS blend, takes premultiplied alpha into account + * + * @memberof PIXI.utils + * @function mapPremultipliedBlendModes + * @private + * @param {Array} [array] - The array to output into. + * @return {Array} Mapped modes. + */ +function mapPremultipliedBlendModes() +{ + var pm = []; + var npm = []; + + for (var i = 0; i < 32; i++) + { + pm[i] = i; + npm[i] = i; + } + + pm[BLEND_MODES.NORMAL_NPM] = BLEND_MODES.NORMAL; + pm[BLEND_MODES.ADD_NPM] = BLEND_MODES.ADD; + pm[BLEND_MODES.SCREEN_NPM] = BLEND_MODES.SCREEN; + + npm[BLEND_MODES.NORMAL] = BLEND_MODES.NORMAL_NPM; + npm[BLEND_MODES.ADD] = BLEND_MODES.ADD_NPM; + npm[BLEND_MODES.SCREEN] = BLEND_MODES.SCREEN_NPM; + + var array = []; + + array.push(npm); + array.push(pm); + + return array; +} + +/** + * maps premultiply flag and blendMode to adjusted blendMode + * @memberof PIXI.utils + * @const premultiplyBlendMode + * @type {Array} + */ +var premultiplyBlendMode = mapPremultipliedBlendModes(); + +/** + * changes blendMode according to texture format + * + * @memberof PIXI.utils + * @function correctBlendMode + * @param {number} blendMode supposed blend mode + * @param {boolean} premultiplied whether source is premultiplied + * @returns {number} true blend mode for this texture + */ +function correctBlendMode(blendMode, premultiplied) +{ + return premultiplyBlendMode[premultiplied ? 1 : 0][blendMode]; +} + +/** + * combines rgb and alpha to out array + * + * @memberof PIXI.utils + * @function premultiplyRgba + * @param {Float32Array|number[]} rgb input rgb + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyRgba(rgb, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + if (premultiply || premultiply === undefined) + { + out[0] = rgb[0] * alpha; + out[1] = rgb[1] * alpha; + out[2] = rgb[2] * alpha; + } + else + { + out[0] = rgb[0]; + out[1] = rgb[1]; + out[2] = rgb[2]; + } + out[3] = alpha; + + return out; +} + +/** + * premultiplies tint + * + * @memberof PIXI.utils + * @function premultiplyTint + * @param {number} tint integer RGB + * @param {number} alpha floating point alpha (0.0-1.0) + * @returns {number} tint multiplied by alpha + */ +function premultiplyTint(tint, alpha) +{ + if (alpha === 1.0) + { + return (alpha * 255 << 24) + tint; + } + if (alpha === 0.0) + { + return 0; + } + var R = ((tint >> 16) & 0xFF); + var G = ((tint >> 8) & 0xFF); + var B = (tint & 0xFF); + + R = ((R * alpha) + 0.5) | 0; + G = ((G * alpha) + 0.5) | 0; + B = ((B * alpha) + 0.5) | 0; + + return (alpha * 255 << 24) + (R << 16) + (G << 8) + B; +} + +/** + * converts integer tint and float alpha to vec4 form, premultiplies by default + * + * @memberof PIXI.utils + * @function premultiplyTintToRgba + * @param {number} tint input tint + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyTintToRgba(tint, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + out[0] = ((tint >> 16) & 0xFF) / 255.0; + out[1] = ((tint >> 8) & 0xFF) / 255.0; + out[2] = (tint & 0xFF) / 255.0; + if (premultiply || premultiply === undefined) + { + out[0] *= alpha; + out[1] *= alpha; + out[2] *= alpha; + } + out[3] = alpha; + + return out; +} + +/** + * Generic Mask Stack data structure + * + * @memberof PIXI.utils + * @function createIndicesForQuads + * @param {number} size - Number of quads + * @param {Uint16Array|Uint32Array} [outBuffer] - Buffer for output, length has to be `6 * size` + * @return {Uint16Array|Uint32Array} - Resulting index buffer + */ +function createIndicesForQuads(size, outBuffer) +{ + if ( outBuffer === void 0 ) outBuffer = null; + + // the total number of indices in our array, there are 6 points per quad. + var totalIndices = size * 6; + + outBuffer = outBuffer || new Uint16Array(totalIndices); + + if (outBuffer.length !== totalIndices) + { + throw new Error(("Out buffer length is incorrect, got " + (outBuffer.length) + " and expected " + totalIndices)); + } + + // fill the indices with the quads to draw + for (var i = 0, j = 0; i < totalIndices; i += 6, j += 4) + { + outBuffer[i + 0] = j + 0; + outBuffer[i + 1] = j + 1; + outBuffer[i + 2] = j + 2; + outBuffer[i + 3] = j + 0; + outBuffer[i + 4] = j + 2; + outBuffer[i + 5] = j + 3; + } + + return outBuffer; +} + +/** + * Remove items from a javascript array without generating garbage + * + * @function removeItems + * @memberof PIXI.utils + * @param {Array} arr Array to remove elements from + * @param {number} startIdx starting index + * @param {number} removeCount how many to remove + */ +function removeItems(arr, startIdx, removeCount) +{ + var length = arr.length; + var i; + + if (startIdx >= length || removeCount === 0) + { + return; + } + + removeCount = (startIdx + removeCount > length ? length - startIdx : removeCount); + + var len = length - removeCount; + + for (i = startIdx; i < len; ++i) + { + arr[i] = arr[i + removeCount]; + } + + arr.length = len; +} + +var nextUid = 0; + +/** + * Gets the next unique identifier + * + * @memberof PIXI.utils + * @function uid + * @return {number} The next unique identifier to use. + */ +function uid() +{ + return ++nextUid; +} + +/** + * Returns sign of number + * + * @memberof PIXI.utils + * @function sign + * @param {number} n - the number to check the sign of + * @returns {number} 0 if `n` is 0, -1 if `n` is negative, 1 if `n` is positive + */ +function sign$1(n) +{ + if (n === 0) { return 0; } + + return n < 0 ? -1 : 1; +} + +// Taken from the bit-twiddle package + +/** + * Rounds to next power of two. + * + * @function nextPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} + */ +function nextPow2(v) +{ + v += v === 0; + --v; + v |= v >>> 1; + v |= v >>> 2; + v |= v >>> 4; + v |= v >>> 8; + v |= v >>> 16; + + return v + 1; +} + +/** + * Checks if a number is a power of two. + * + * @function isPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {boolean} `true` if value is power of two + */ +function isPow2(v) +{ + return !(v & (v - 1)) && (!!v); +} + +/** + * Computes ceil of log base 2 + * + * @function log2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} logarithm base 2 + */ +function log2(v) +{ + var r = (v > 0xFFFF) << 4; + + v >>>= r; + + var shift = (v > 0xFF) << 3; + + v >>>= shift; r |= shift; + shift = (v > 0xF) << 2; + v >>>= shift; r |= shift; + shift = (v > 0x3) << 1; + v >>>= shift; r |= shift; + + return r | (v >> 1); +} + +/** + * @todo Describe property usage + * + * @static + * @name ProgramCache + * @memberof PIXI.utils + * @type {Object} + */ +var ProgramCache = {}; + +/** + * @todo Describe property usage + * + * @static + * @name TextureCache + * @memberof PIXI.utils + * @type {Object} + */ +var TextureCache = Object.create(null); + +/** + * @todo Describe property usage + * + * @static + * @name BaseTextureCache + * @memberof PIXI.utils + * @type {Object} + */ + +var BaseTextureCache = Object.create(null); + +/** + * Trim transparent borders from a canvas + * + * @memberof PIXI.utils + * @function trimCanvas + * @param {HTMLCanvasElement} canvas - the canvas to trim + * @returns {object} Trim data + */ +function trimCanvas(canvas) +{ + // https://gist.github.com/remy/784508 + + var width = canvas.width; + var height = canvas.height; + + var context = canvas.getContext('2d'); + var imageData = context.getImageData(0, 0, width, height); + var pixels = imageData.data; + var len = pixels.length; + + var bound = { + top: null, + left: null, + right: null, + bottom: null, + }; + var data = null; + var i; + var x; + var y; + + for (i = 0; i < len; i += 4) + { + if (pixels[i + 3] !== 0) + { + x = (i / 4) % width; + y = ~~((i / 4) / width); + + if (bound.top === null) + { + bound.top = y; + } + + if (bound.left === null) + { + bound.left = x; + } + else if (x < bound.left) + { + bound.left = x; + } + + if (bound.right === null) + { + bound.right = x + 1; + } + else if (bound.right < x) + { + bound.right = x + 1; + } + + if (bound.bottom === null) + { + bound.bottom = y; + } + else if (bound.bottom < y) + { + bound.bottom = y; + } + } + } + + if (bound.top !== null) + { + width = bound.right - bound.left; + height = bound.bottom - bound.top + 1; + data = context.getImageData(bound.left, bound.top, width, height); + } + + return { + height: height, + width: width, + data: data, + }; +} + +/** + * Creates a Canvas element of the given size to be used as a target for rendering to. + * + * @class + * @memberof PIXI.utils + */ +var CanvasRenderTarget = function CanvasRenderTarget(width, height, resolution) +{ + /** + * The Canvas object that belongs to this CanvasRenderTarget. + * + * @member {HTMLCanvasElement} + */ + this.canvas = document.createElement('canvas'); + + /** + * A CanvasRenderingContext2D object representing a two-dimensional rendering context. + * + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + this.resolution = resolution || settings.RESOLUTION; + + this.resize(width, height); +}; + +var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + +/** + * Clears the canvas that was created by the CanvasRenderTarget class. + * + * @private + */ +CanvasRenderTarget.prototype.clear = function clear () +{ + this.context.setTransform(1, 0, 0, 1, 0, 0); + this.context.clearRect(0, 0, this.canvas.width, this.canvas.height); +}; + +/** + * Resizes the canvas to the specified width and height. + * + * @param {number} width - the new width of the canvas + * @param {number} height - the new height of the canvas + */ +CanvasRenderTarget.prototype.resize = function resize (width, height) +{ + this.canvas.width = width * this.resolution; + this.canvas.height = height * this.resolution; +}; + +/** + * Destroys this canvas. + * + */ +CanvasRenderTarget.prototype.destroy = function destroy () +{ + this.context = null; + this.canvas = null; +}; + +/** + * The width of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.width.get = function () +{ + return this.canvas.width; +}; + +prototypeAccessors.width.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.width = val; +}; + +/** + * The height of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.height.get = function () +{ + return this.canvas.height; +}; + +prototypeAccessors.height.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.height = val; +}; + +Object.defineProperties( CanvasRenderTarget.prototype, prototypeAccessors ); + +var tempAnchor; + +/** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * Nipped from the resource loader! + * + * @ignore + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ +function determineCrossOrigin(url$1, loc) +{ + if ( loc === void 0 ) loc = window.location; + + // data: and javascript: urls are considered same-origin + if (url$1.indexOf('data:') === 0) + { + return ''; + } + + // default is window.location + loc = loc || window.location; + + if (!tempAnchor) + { + tempAnchor = document.createElement('a'); + } + + // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + tempAnchor.href = url$1; + url$1 = url.parse(tempAnchor.href); + + var samePort = (!url$1.port && loc.port === '') || (url$1.port === loc.port); + + // if cross origin + if (url$1.hostname !== loc.hostname || !samePort || url$1.protocol !== loc.protocol) + { + return 'anonymous'; + } + + return ''; +} + +/** + * get the resolution / device pixel ratio of an asset by looking for the prefix + * used by spritesheets and image urls + * + * @memberof PIXI.utils + * @function getResolutionOfUrl + * @param {string} url - the image path + * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set. + * @return {number} resolution / device pixel ratio of an asset + */ +function getResolutionOfUrl(url, defaultValue) +{ + var resolution = settings.RETINA_PREFIX.exec(url); + + if (resolution) + { + return parseFloat(resolution[1]); + } + + return defaultValue !== undefined ? defaultValue : 1; +} + +// A map of warning messages already fired +var warnings = {}; + +/** + * Helper for warning developers about deprecated features & settings. + * A stack track for warnings is given; useful for tracking-down where + * deprecated methods/properties/classes are being used within the code. + * + * @memberof PIXI.utils + * @function deprecation + * @param {string} version - The version where the feature became deprecated + * @param {string} message - Message should include what is deprecated, where, and the new solution + * @param {number} [ignoreDepth=3] - The number of steps to ignore at the top of the error stack + * this is mostly to ignore internal deprecation calls. + */ +function deprecation(version, message, ignoreDepth) +{ + if ( ignoreDepth === void 0 ) ignoreDepth = 3; + + // Ignore duplicat + if (warnings[message]) + { + return; + } + + /* eslint-disable no-console */ + var stack = new Error().stack; + + // Handle IE < 10 and Safari < 6 + if (typeof stack === 'undefined') + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + } + else + { + // chop off the stack trace which includes PixiJS internal calls + stack = stack.split('\n').splice(ignoreDepth).join('\n'); + + if (console.groupCollapsed) + { + console.groupCollapsed( + '%cPixiJS Deprecation Warning: %c%s', + 'color:#614108;background:#fffbe6', + 'font-weight:normal;color:#614108;background:#fffbe6', + (message + "\nDeprecated since v" + version) + ); + console.warn(stack); + console.groupEnd(); + } + else + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + console.warn(stack); + } + } + /* eslint-enable no-console */ + + warnings[message] = true; +} + +/*! + * @pixi/math - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/math is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * @class + * @memberof PIXI + */ +var Point = function Point(x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; +}; + +/** + * Creates a clone of this point + * + * @return {PIXI.Point} a copy of the point + */ +Point.prototype.clone = function clone () +{ + return new Point(this.x, this.y); +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from + * @returns {PIXI.IPoint} Returns itself. + */ +Point.prototype.copyFrom = function copyFrom (p) +{ + this.set(p.x, p.y); + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +Point.prototype.copyTo = function copyTo (p) +{ + p.set(this.x, this.y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +Point.prototype.equals = function equals (p) +{ + return (p.x === this.x) && (p.y === this.y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +Point.prototype.set = function set (x, y) +{ + this.x = x || 0; + this.y = y || ((y !== 0) ? this.x : 0); +}; + +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * An ObservablePoint is a point that triggers a callback when the point's position is changed. + * + * @class + * @memberof PIXI + */ +var ObservablePoint = function ObservablePoint(cb, scope, x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + this._x = x; + this._y = y; + + this.cb = cb; + this.scope = scope; +}; + +var prototypeAccessors$1 = { x: { configurable: true },y: { configurable: true } }; + +/** + * Creates a clone of this point. + * The callback and scope params can be overidden otherwise they will default + * to the clone object's values. + * + * @override + * @param {Function} [cb=null] - callback when changed + * @param {object} [scope=null] - owner of callback + * @return {PIXI.ObservablePoint} a copy of the point + */ +ObservablePoint.prototype.clone = function clone (cb, scope) +{ + if ( cb === void 0 ) cb = null; + if ( scope === void 0 ) scope = null; + + var _cb = cb || this.cb; + var _scope = scope || this.scope; + + return new ObservablePoint(_cb, _scope, this._x, this._y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +ObservablePoint.prototype.set = function set (x, y) +{ + var _x = x || 0; + var _y = y || ((y !== 0) ? _x : 0); + + if (this._x !== _x || this._y !== _y) + { + this._x = _x; + this._y = _y; + this.cb.call(this.scope); + } +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from. + * @returns {PIXI.IPoint} Returns itself. + */ +ObservablePoint.prototype.copyFrom = function copyFrom (p) +{ + if (this._x !== p.x || this._y !== p.y) + { + this._x = p.x; + this._y = p.y; + this.cb.call(this.scope); + } + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +ObservablePoint.prototype.copyTo = function copyTo (p) +{ + p.set(this._x, this._y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +ObservablePoint.prototype.equals = function equals (p) +{ + return (p.x === this._x) && (p.y === this._y); +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.x.get = function () +{ + return this._x; +}; + +prototypeAccessors$1.x.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._x !== value) + { + this._x = value; + this.cb.call(this.scope); + } +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.y.get = function () +{ + return this._y; +}; + +prototypeAccessors$1.y.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._y !== value) + { + this._y = value; + this.cb.call(this.scope); + } +}; + +Object.defineProperties( ObservablePoint.prototype, prototypeAccessors$1 ); + +/** + * A number, or a string containing a number. + * @memberof PIXI + * @typedef {(PIXI.Point|PIXI.ObservablePoint)} IPoint + */ + +/** + * Two Pi. + * + * @static + * @constant {number} PI_2 + * @memberof PIXI + */ +var PI_2 = Math.PI * 2; + +/** + * Conversion factor for converting radians to degrees. + * + * @static + * @constant {number} RAD_TO_DEG + * @memberof PIXI + */ +var RAD_TO_DEG = 180 / Math.PI; + +/** + * Conversion factor for converting degrees to radians. + * + * @static + * @constant {number} DEG_TO_RAD + * @memberof PIXI + */ +var DEG_TO_RAD = Math.PI / 180; + +/** + * Constants that identify shapes, mainly to prevent `instanceof` calls. + * + * @static + * @constant + * @name SHAPES + * @memberof PIXI + * @type {object} + * @property {number} POLY Polygon + * @property {number} RECT Rectangle + * @property {number} CIRC Circle + * @property {number} ELIP Ellipse + * @property {number} RREC Rounded Rectangle + */ +var SHAPES = { + POLY: 0, + RECT: 1, + CIRC: 2, + ELIP: 3, + RREC: 4, +}; + +/** + * The PixiJS Matrix as a class makes it a lot faster. + * + * Here is a representation of it: + * ```js + * | a | c | tx| + * | b | d | ty| + * | 0 | 0 | 1 | + * ``` + * @class + * @memberof PIXI + */ +var Matrix = function Matrix(a, b, c, d, tx, ty) +{ + if ( a === void 0 ) a = 1; + if ( b === void 0 ) b = 0; + if ( c === void 0 ) c = 0; + if ( d === void 0 ) d = 1; + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + /** + * @member {number} + * @default 1 + */ + this.a = a; + + /** + * @member {number} + * @default 0 + */ + this.b = b; + + /** + * @member {number} + * @default 0 + */ + this.c = c; + + /** + * @member {number} + * @default 1 + */ + this.d = d; + + /** + * @member {number} + * @default 0 + */ + this.tx = tx; + + /** + * @member {number} + * @default 0 + */ + this.ty = ty; + + this.array = null; +}; + +var staticAccessors = { IDENTITY: { configurable: true },TEMP_MATRIX: { configurable: true } }; + +/** + * Creates a Matrix object based on the given array. The Element to Matrix mapping order is as follows: + * + * a = array[0] + * b = array[1] + * c = array[3] + * d = array[4] + * tx = array[2] + * ty = array[5] + * + * @param {number[]} array - The array that the matrix will be populated from. + */ +Matrix.prototype.fromArray = function fromArray (array) +{ + this.a = array[0]; + this.b = array[1]; + this.c = array[3]; + this.d = array[4]; + this.tx = array[2]; + this.ty = array[5]; +}; + +/** + * sets the matrix properties + * + * @param {number} a - Matrix component + * @param {number} b - Matrix component + * @param {number} c - Matrix component + * @param {number} d - Matrix component + * @param {number} tx - Matrix component + * @param {number} ty - Matrix component + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.set = function set (a, b, c, d, tx, ty) +{ + this.a = a; + this.b = b; + this.c = c; + this.d = d; + this.tx = tx; + this.ty = ty; + + return this; +}; + +/** + * Creates an array from the current Matrix object. + * + * @param {boolean} transpose - Whether we need to transpose the matrix or not + * @param {Float32Array} [out=new Float32Array(9)] - If provided the array will be assigned to out + * @return {number[]} the newly created array which contains the matrix + */ +Matrix.prototype.toArray = function toArray (transpose, out) +{ + if (!this.array) + { + this.array = new Float32Array(9); + } + + var array = out || this.array; + + if (transpose) + { + array[0] = this.a; + array[1] = this.b; + array[2] = 0; + array[3] = this.c; + array[4] = this.d; + array[5] = 0; + array[6] = this.tx; + array[7] = this.ty; + array[8] = 1; + } + else + { + array[0] = this.a; + array[1] = this.c; + array[2] = this.tx; + array[3] = this.b; + array[4] = this.d; + array[5] = this.ty; + array[6] = 0; + array[7] = 0; + array[8] = 1; + } + + return array; +}; + +/** + * Get a new position with the current transformation applied. + * Can be used to go from a child's coordinate space to the world coordinate space. (e.g. rendering) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, transformed through this matrix + */ +Matrix.prototype.apply = function apply (pos, newPos) +{ + newPos = newPos || new Point(); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.a * x) + (this.c * y) + this.tx; + newPos.y = (this.b * x) + (this.d * y) + this.ty; + + return newPos; +}; + +/** + * Get a new position with the inverse of the current transformation applied. + * Can be used to go from the world coordinate space to a child's coordinate space. (e.g. input) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, inverse-transformed through this matrix + */ +Matrix.prototype.applyInverse = function applyInverse (pos, newPos) +{ + newPos = newPos || new Point(); + + var id = 1 / ((this.a * this.d) + (this.c * -this.b)); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.d * id * x) + (-this.c * id * y) + (((this.ty * this.c) - (this.tx * this.d)) * id); + newPos.y = (this.a * id * y) + (-this.b * id * x) + (((-this.ty * this.a) + (this.tx * this.b)) * id); + + return newPos; +}; + +/** + * Translates the matrix on the x and y. + * + * @param {number} x How much to translate x by + * @param {number} y How much to translate y by + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.translate = function translate (x, y) +{ + this.tx += x; + this.ty += y; + + return this; +}; + +/** + * Applies a scale transformation to the matrix. + * + * @param {number} x The amount to scale horizontally + * @param {number} y The amount to scale vertically + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.scale = function scale (x, y) +{ + this.a *= x; + this.d *= y; + this.c *= x; + this.b *= y; + this.tx *= x; + this.ty *= y; + + return this; +}; + +/** + * Applies a rotation transformation to the matrix. + * + * @param {number} angle - The angle in radians. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.rotate = function rotate (angle) +{ + var cos = Math.cos(angle); + var sin = Math.sin(angle); + + var a1 = this.a; + var c1 = this.c; + var tx1 = this.tx; + + this.a = (a1 * cos) - (this.b * sin); + this.b = (a1 * sin) + (this.b * cos); + this.c = (c1 * cos) - (this.d * sin); + this.d = (c1 * sin) + (this.d * cos); + this.tx = (tx1 * cos) - (this.ty * sin); + this.ty = (tx1 * sin) + (this.ty * cos); + + return this; +}; + +/** + * Appends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to append. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.append = function append (matrix) +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + + this.a = (matrix.a * a1) + (matrix.b * c1); + this.b = (matrix.a * b1) + (matrix.b * d1); + this.c = (matrix.c * a1) + (matrix.d * c1); + this.d = (matrix.c * b1) + (matrix.d * d1); + + this.tx = (matrix.tx * a1) + (matrix.ty * c1) + this.tx; + this.ty = (matrix.tx * b1) + (matrix.ty * d1) + this.ty; + + return this; +}; + +/** + * Sets the matrix based on all the available properties + * + * @param {number} x - Position on the x axis + * @param {number} y - Position on the y axis + * @param {number} pivotX - Pivot on the x axis + * @param {number} pivotY - Pivot on the y axis + * @param {number} scaleX - Scale on the x axis + * @param {number} scaleY - Scale on the y axis + * @param {number} rotation - Rotation in radians + * @param {number} skewX - Skew on the x axis + * @param {number} skewY - Skew on the y axis + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.setTransform = function setTransform (x, y, pivotX, pivotY, scaleX, scaleY, rotation, skewX, skewY) +{ + this.a = Math.cos(rotation + skewY) * scaleX; + this.b = Math.sin(rotation + skewY) * scaleX; + this.c = -Math.sin(rotation - skewX) * scaleY; + this.d = Math.cos(rotation - skewX) * scaleY; + + this.tx = x - ((pivotX * this.a) + (pivotY * this.c)); + this.ty = y - ((pivotX * this.b) + (pivotY * this.d)); + + return this; +}; + +/** + * Prepends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to prepend + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.prepend = function prepend (matrix) +{ + var tx1 = this.tx; + + if (matrix.a !== 1 || matrix.b !== 0 || matrix.c !== 0 || matrix.d !== 1) + { + var a1 = this.a; + var c1 = this.c; + + this.a = (a1 * matrix.a) + (this.b * matrix.c); + this.b = (a1 * matrix.b) + (this.b * matrix.d); + this.c = (c1 * matrix.a) + (this.d * matrix.c); + this.d = (c1 * matrix.b) + (this.d * matrix.d); + } + + this.tx = (tx1 * matrix.a) + (this.ty * matrix.c) + matrix.tx; + this.ty = (tx1 * matrix.b) + (this.ty * matrix.d) + matrix.ty; + + return this; +}; + +/** + * Decomposes the matrix (x, y, scaleX, scaleY, and rotation) and sets the properties on to a transform. + * + * @param {PIXI.Transform} transform - The transform to apply the properties to. + * @return {PIXI.Transform} The transform with the newly applied properties + */ +Matrix.prototype.decompose = function decompose (transform) +{ + // sort out rotation / skew.. + var a = this.a; + var b = this.b; + var c = this.c; + var d = this.d; + + var skewX = -Math.atan2(-c, d); + var skewY = Math.atan2(b, a); + + var delta = Math.abs(skewX + skewY); + + if (delta < 0.00001 || Math.abs(PI_2 - delta) < 0.00001) + { + transform.rotation = skewY; + transform.skew.x = transform.skew.y = 0; + } + else + { + transform.rotation = 0; + transform.skew.x = skewX; + transform.skew.y = skewY; + } + + // next set scale + transform.scale.x = Math.sqrt((a * a) + (b * b)); + transform.scale.y = Math.sqrt((c * c) + (d * d)); + + // next set position + transform.position.x = this.tx; + transform.position.y = this.ty; + + return transform; +}; + +/** + * Inverts this matrix + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.invert = function invert () +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + var tx1 = this.tx; + var n = (a1 * d1) - (b1 * c1); + + this.a = d1 / n; + this.b = -b1 / n; + this.c = -c1 / n; + this.d = a1 / n; + this.tx = ((c1 * this.ty) - (d1 * tx1)) / n; + this.ty = -((a1 * this.ty) - (b1 * tx1)) / n; + + return this; +}; + +/** + * Resets this Matrix to an identity (default) matrix. + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.identity = function identity () +{ + this.a = 1; + this.b = 0; + this.c = 0; + this.d = 1; + this.tx = 0; + this.ty = 0; + + return this; +}; + +/** + * Creates a new Matrix object with the same values as this one. + * + * @return {PIXI.Matrix} A copy of this matrix. Good for chaining method calls. + */ +Matrix.prototype.clone = function clone () +{ + var matrix = new Matrix(); + + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the given matrix to be the same as the ones in this matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy to. + * @return {PIXI.Matrix} The matrix given in parameter with its values updated. + */ +Matrix.prototype.copyTo = function copyTo (matrix) +{ + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the matrix to be the same as the ones in given matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy from. + * @return {PIXI.Matrix} this + */ +Matrix.prototype.copyFrom = function copyFrom (matrix) +{ + this.a = matrix.a; + this.b = matrix.b; + this.c = matrix.c; + this.d = matrix.d; + this.tx = matrix.tx; + this.ty = matrix.ty; + + return this; +}; + +/** + * A default (identity) matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.IDENTITY.get = function () +{ + return new Matrix(); +}; + +/** + * A temp matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.TEMP_MATRIX.get = function () +{ + return new Matrix(); +}; + +Object.defineProperties( Matrix, staticAccessors ); + +// Your friendly neighbour https://en.wikipedia.org/wiki/Dihedral_group + +/* + * Transform matrix for operation n is: + * | ux | vx | + * | uy | vy | + */ + +var ux = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1]; +var uy = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vx = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vy = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1]; + +/** + * [Cayley Table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * for the composition of each rotation in the dihederal group D8. + * + * @type number[][] + * @private + */ +var rotationCayley = []; + +/** + * Matrices for each `GD8Symmetry` rotation. + * + * @type Matrix[] + * @private + */ +var rotationMatrices = []; + +/* + * Alias for {@code Math.sign}. + */ +var signum = Math.sign; + +/* + * Initializes `rotationCayley` and `rotationMatrices`. It is called + * only once below. + */ +function init() +{ + for (var i = 0; i < 16; i++) + { + var row = []; + + rotationCayley.push(row); + + for (var j = 0; j < 16; j++) + { + /* Multiplies rotation matrices i and j. */ + var _ux = signum((ux[i] * ux[j]) + (vx[i] * uy[j])); + var _uy = signum((uy[i] * ux[j]) + (vy[i] * uy[j])); + var _vx = signum((ux[i] * vx[j]) + (vx[i] * vy[j])); + var _vy = signum((uy[i] * vx[j]) + (vy[i] * vy[j])); + + /* Finds rotation matrix matching the product and pushes it. */ + for (var k = 0; k < 16; k++) + { + if (ux[k] === _ux && uy[k] === _uy + && vx[k] === _vx && vy[k] === _vy) + { + row.push(k); + break; + } + } + } + } + + for (var i$1 = 0; i$1 < 16; i$1++) + { + var mat = new Matrix(); + + mat.set(ux[i$1], uy[i$1], vx[i$1], vy[i$1], 0, 0); + rotationMatrices.push(mat); + } +} + +init(); + +/** + * @memberof PIXI + * @typedef {number} GD8Symmetry + * @see PIXI.GroupD8 + */ + +/** + * Implements the dihedral group D8, which is similar to + * [group D4]{@link http://mathworld.wolfram.com/DihedralGroupD4.html}; + * D8 is the same but with diagonals, and it is used for texture + * rotations. + * + * The directions the U- and V- axes after rotation + * of an angle of `a: GD8Constant` are the vectors `(uX(a), uY(a))` + * and `(vX(a), vY(a))`. These aren't necessarily unit vectors. + * + * **Origin:**
+ * This is the small part of gameofbombs.com portal system. It works. + * + * @see PIXI.GroupD8.E + * @see PIXI.GroupD8.SE + * @see PIXI.GroupD8.S + * @see PIXI.GroupD8.SW + * @see PIXI.GroupD8.W + * @see PIXI.GroupD8.NW + * @see PIXI.GroupD8.N + * @see PIXI.GroupD8.NE + * @author Ivan @ivanpopelyshev + * @class + * @memberof PIXI + */ +var GroupD8 = { + /** + * | Rotation | Direction | + * |----------|-----------| + * | 0° | East | + * + * @constant {PIXI.GD8Symmetry} + */ + E: 0, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 45°↻ | Southeast | + * + * @constant {PIXI.GD8Symmetry} + */ + SE: 1, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 90°↻ | South | + * + * @constant {PIXI.GD8Symmetry} + */ + S: 2, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 135°↻ | Southwest | + * + * @constant {PIXI.GD8Symmetry} + */ + SW: 3, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 180° | West | + * + * @constant {PIXI.GD8Symmetry} + */ + W: 4, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -135°/225°↻ | Northwest | + * + * @constant {PIXI.GD8Symmetry} + */ + NW: 5, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -90°/270°↻ | North | + * + * @constant {PIXI.GD8Symmetry} + */ + N: 6, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -45°/315°↻ | Northeast | + * + * @constant {PIXI.GD8Symmetry} + */ + NE: 7, + + /** + * Reflection about Y-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_VERTICAL: 8, + + /** + * Reflection about the main diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + MAIN_DIAGONAL: 10, + + /** + * Reflection about X-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_HORIZONTAL: 12, + + /** + * Reflection about reverse diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + REVERSE_DIAGONAL: 14, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the U-axis + * after rotating the axes. + */ + uX: function (ind) { return ux[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the U-axis + * after rotating the axes. + */ + uY: function (ind) { return uy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the V-axis + * after rotating the axes. + */ + vX: function (ind) { return vx[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the V-axis + * after rotating the axes. + */ + vY: function (ind) { return vy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - symmetry whose opposite + * is needed. Only rotations have opposite symmetries while + * reflections don't. + * @return {PIXI.GD8Symmetry} The opposite symmetry of `rotation` + */ + inv: function (rotation) { + if (rotation & 8)// true only if between 8 & 15 (reflections) + { + return rotation & 15;// or rotation % 16 + } + + return (-rotation) & 7;// or (8 - rotation) % 8 + }, + + /** + * Composes the two D8 operations. + * + * Taking `^` as reflection: + * + * | | E=0 | S=2 | W=4 | N=6 | E^=8 | S^=10 | W^=12 | N^=14 | + * |-------|-----|-----|-----|-----|------|-------|-------|-------| + * | E=0 | E | S | W | N | E^ | S^ | W^ | N^ | + * | S=2 | S | W | N | E | S^ | W^ | N^ | E^ | + * | W=4 | W | N | E | S | W^ | N^ | E^ | S^ | + * | N=6 | N | E | S | W | N^ | E^ | S^ | W^ | + * | E^=8 | E^ | N^ | W^ | S^ | E | N | W | S | + * | S^=10 | S^ | E^ | N^ | W^ | S | E | N | W | + * | W^=12 | W^ | S^ | E^ | N^ | W | S | E | N | + * | N^=14 | N^ | W^ | S^ | E^ | N | W | S | E | + * + * [This is a Cayley table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation, which + * is the row in the above cayley table. + * @param {PIXI.GD8Symmetry} rotationFirst - First operation, which + * is the column in the above cayley table. + * @return {PIXI.GD8Symmetry} Composed operation + */ + add: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][rotationFirst] + ); }, + + /** + * Reverse of `add`. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation + * @param {PIXI.GD8Symmetry} rotationFirst - First operation + * @return {PIXI.GD8Symmetry} Result + */ + sub: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][GroupD8.inv(rotationFirst)] + ); }, + + /** + * Adds 180 degrees to rotation, which is a commutative + * operation. + * + * @memberof PIXI.GroupD8 + * @param {number} rotation - The number to rotate. + * @returns {number} Rotated number + */ + rotate180: function (rotation) { return rotation ^ 4; }, + + /** + * Checks if the rotation angle is vertical, i.e. south + * or north. It doesn't work for reflections. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - The number to check. + * @returns {boolean} Whether or not the direction is vertical + */ + isVertical: function (rotation) { return (rotation & 3) === 2; }, // rotation % 4 === 2 + + /** + * Approximates the vector `V(dx,dy)` into one of the + * eight directions provided by `GroupD8`. + * + * @memberof PIXI.GroupD8 + * @param {number} dx - X-component of the vector + * @param {number} dy - Y-component of the vector + * @return {PIXI.GD8Symmetry} Approximation of the vector into + * one of the eight symmetries. + */ + byDirection: function (dx, dy) { + if (Math.abs(dx) * 2 <= Math.abs(dy)) + { + if (dy >= 0) + { + return GroupD8.S; + } + + return GroupD8.N; + } + else if (Math.abs(dy) * 2 <= Math.abs(dx)) + { + if (dx > 0) + { + return GroupD8.E; + } + + return GroupD8.W; + } + else if (dy > 0) + { + if (dx > 0) + { + return GroupD8.SE; + } + + return GroupD8.SW; + } + else if (dx > 0) + { + return GroupD8.NE; + } + + return GroupD8.NW; + }, + + /** + * Helps sprite to compensate texture packer rotation. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.Matrix} matrix - sprite world matrix + * @param {PIXI.GD8Symmetry} rotation - The rotation factor to use. + * @param {number} tx - sprite anchoring + * @param {number} ty - sprite anchoring + */ + matrixAppendRotationInv: function (matrix, rotation, tx, ty) { + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + // Packer used "rotation", we use "inv(rotation)" + var mat = rotationMatrices[GroupD8.inv(rotation)]; + + mat.tx = tx; + mat.ty = ty; + matrix.append(mat); + }, +}; + +/** + * Transform that takes care about its versions + * + * @class + * @memberof PIXI + */ +var Transform = function Transform() +{ + /** + * The world transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.worldTransform = new Matrix(); + + /** + * The local transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.localTransform = new Matrix(); + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * + * @member {PIXI.ObservablePoint} + */ + this.position = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The scale factor of the object. + * + * @member {PIXI.ObservablePoint} + */ + this.scale = new ObservablePoint(this.onChange, this, 1, 1); + + /** + * The pivot point of the displayObject that it rotates around. + * + * @member {PIXI.ObservablePoint} + */ + this.pivot = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The skew amount, on the x and y axis. + * + * @member {PIXI.ObservablePoint} + */ + this.skew = new ObservablePoint(this.updateSkew, this, 0, 0); + + /** + * The rotation amount. + * + * @protected + * @member {number} + */ + this._rotation = 0; + + /** + * The X-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cx = 1; + + /** + * The Y-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sx = 0; + + /** + * The X-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cy = 0; + + /** + * The Y-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sy = 1; + + /** + * The locally unique ID of the local transform. + * + * @protected + * @member {number} + */ + this._localID = 0; + + /** + * The locally unique ID of the local transform + * used to calculate the current local transformation matrix. + * + * @protected + * @member {number} + */ + this._currentLocalID = 0; + + /** + * The locally unique ID of the world transform. + * + * @protected + * @member {number} + */ + this._worldID = 0; + + /** + * The locally unique ID of the parent's world transform + * used to calculate the current world transformation matrix. + * + * @protected + * @member {number} + */ + this._parentID = 0; +}; + +var prototypeAccessors$1$1 = { rotation: { configurable: true } }; + +/** + * Called when a value changes. + * + * @protected + */ +Transform.prototype.onChange = function onChange () +{ + this._localID++; +}; + +/** + * Called when the skew or the rotation changes. + * + * @protected + */ +Transform.prototype.updateSkew = function updateSkew () +{ + this._cx = Math.cos(this._rotation + this.skew._y); + this._sx = Math.sin(this._rotation + this.skew._y); + this._cy = -Math.sin(this._rotation - this.skew._x); // cos, added PI/2 + this._sy = Math.cos(this._rotation - this.skew._x); // sin, added PI/2 + + this._localID++; +}; + +/** + * Updates the local transformation matrix. + */ +Transform.prototype.updateLocalTransform = function updateLocalTransform () +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } +}; + +/** + * Updates the local and the world transformation matrices. + * + * @param {PIXI.Transform} parentTransform - The parent transform + */ +Transform.prototype.updateTransform = function updateTransform (parentTransform) +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } + + if (this._parentID !== parentTransform._worldID) + { + // concat the parent matrix with the objects transform. + var pt = parentTransform.worldTransform; + var wt = this.worldTransform; + + wt.a = (lt.a * pt.a) + (lt.b * pt.c); + wt.b = (lt.a * pt.b) + (lt.b * pt.d); + wt.c = (lt.c * pt.a) + (lt.d * pt.c); + wt.d = (lt.c * pt.b) + (lt.d * pt.d); + wt.tx = (lt.tx * pt.a) + (lt.ty * pt.c) + pt.tx; + wt.ty = (lt.tx * pt.b) + (lt.ty * pt.d) + pt.ty; + + this._parentID = parentTransform._worldID; + + // update the id of the transform.. + this._worldID++; + } +}; + +/** + * Decomposes a matrix and sets the transforms properties based on it. + * + * @param {PIXI.Matrix} matrix - The matrix to decompose + */ +Transform.prototype.setFromMatrix = function setFromMatrix (matrix) +{ + matrix.decompose(this); + this._localID++; +}; + +/** + * The rotation of the object in radians. + * + * @member {number} + */ +prototypeAccessors$1$1.rotation.get = function () +{ + return this._rotation; +}; + +prototypeAccessors$1$1.rotation.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._rotation !== value) + { + this._rotation = value; + this.updateSkew(); + } +}; + +Object.defineProperties( Transform.prototype, prototypeAccessors$1$1 ); + +/** + * A default (identity) transform + * + * @static + * @constant + * @member {PIXI.Transform} + */ +Transform.IDENTITY = new Transform(); + +/** + * Size object, contains width and height + * + * @memberof PIXI + * @typedef {object} ISize + * @property {number} width - Width component + * @property {number} height - Height component + */ + +/** + * Rectangle object is an area defined by its position, as indicated by its top-left corner + * point (x, y) and by its width and its height. + * + * @class + * @memberof PIXI + */ +var Rectangle = function Rectangle(x, y, width, height) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = Number(x); + + /** + * @member {number} + * @default 0 + */ + this.y = Number(y); + + /** + * @member {number} + * @default 0 + */ + this.width = Number(width); + + /** + * @member {number} + * @default 0 + */ + this.height = Number(height); + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.RECT + * @see PIXI.SHAPES + */ + this.type = SHAPES.RECT; +}; + +var prototypeAccessors$2 = { left: { configurable: true },right: { configurable: true },top: { configurable: true },bottom: { configurable: true } }; +var staticAccessors$1 = { EMPTY: { configurable: true } }; + +/** + * returns the left edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.left.get = function () +{ + return this.x; +}; + +/** + * returns the right edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.right.get = function () +{ + return this.x + this.width; +}; + +/** + * returns the top edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.top.get = function () +{ + return this.y; +}; + +/** + * returns the bottom edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.bottom.get = function () +{ + return this.y + this.height; +}; + +/** + * A constant empty rectangle. + * + * @static + * @constant + * @member {PIXI.Rectangle} + */ +staticAccessors$1.EMPTY.get = function () +{ + return new Rectangle(0, 0, 0, 0); +}; + +/** + * Creates a clone of this Rectangle + * + * @return {PIXI.Rectangle} a copy of the rectangle + */ +Rectangle.prototype.clone = function clone () +{ + return new Rectangle(this.x, this.y, this.width, this.height); +}; + +/** + * Copies another rectangle to this one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy from. + * @return {PIXI.Rectangle} Returns itself. + */ +Rectangle.prototype.copyFrom = function copyFrom (rectangle) +{ + this.x = rectangle.x; + this.y = rectangle.y; + this.width = rectangle.width; + this.height = rectangle.height; + + return this; +}; + +/** + * Copies this rectangle to another one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy to. + * @return {PIXI.Rectangle} Returns given parameter. + */ +Rectangle.prototype.copyTo = function copyTo (rectangle) +{ + rectangle.x = this.x; + rectangle.y = this.y; + rectangle.width = this.width; + rectangle.height = this.height; + + return rectangle; +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rectangle + */ +Rectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + if (x >= this.x && x < this.x + this.width) + { + if (y >= this.y && y < this.y + this.height) + { + return true; + } + } + + return false; +}; + +/** + * Pads the rectangle making it grow in all directions. + * + * @param {number} paddingX - The horizontal padding amount. + * @param {number} paddingY - The vertical padding amount. + */ +Rectangle.prototype.pad = function pad (paddingX, paddingY) +{ + paddingX = paddingX || 0; + paddingY = paddingY || ((paddingY !== 0) ? paddingX : 0); + + this.x -= paddingX; + this.y -= paddingY; + + this.width += paddingX * 2; + this.height += paddingY * 2; +}; + +/** + * Fits this rectangle around the passed one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to fit. + */ +Rectangle.prototype.fit = function fit (rectangle) +{ + var x1 = Math.max(this.x, rectangle.x); + var x2 = Math.min(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.max(this.y, rectangle.y); + var y2 = Math.min(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = Math.max(x2 - x1, 0); + this.y = y1; + this.height = Math.max(y2 - y1, 0); +}; + +/** + * Enlarges rectangle that way its corners lie on grid + * + * @param {number} [resolution=1] resolution + * @param {number} [eps=0.001] precision + */ +Rectangle.prototype.ceil = function ceil (resolution, eps) +{ + if ( resolution === void 0 ) resolution = 1; + if ( eps === void 0 ) eps = 0.001; + + var x2 = Math.ceil((this.x + this.width - eps) * resolution) / resolution; + var y2 = Math.ceil((this.y + this.height - eps) * resolution) / resolution; + + this.x = Math.floor((this.x + eps) * resolution) / resolution; + this.y = Math.floor((this.y + eps) * resolution) / resolution; + + this.width = x2 - this.x; + this.height = y2 - this.y; +}; + +/** + * Enlarges this rectangle to include the passed rectangle. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to include. + */ +Rectangle.prototype.enlarge = function enlarge (rectangle) +{ + var x1 = Math.min(this.x, rectangle.x); + var x2 = Math.max(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.min(this.y, rectangle.y); + var y2 = Math.max(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = x2 - x1; + this.y = y1; + this.height = y2 - y1; +}; + +Object.defineProperties( Rectangle.prototype, prototypeAccessors$2 ); +Object.defineProperties( Rectangle, staticAccessors$1 ); + +/** + * The Circle object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Circle = function Circle(x, y, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( radius === void 0 ) radius = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.CIRC + * @see PIXI.SHAPES + */ + this.type = SHAPES.CIRC; +}; + +/** + * Creates a clone of this Circle instance + * + * @return {PIXI.Circle} a copy of the Circle + */ +Circle.prototype.clone = function clone () +{ + return new Circle(this.x, this.y, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this circle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Circle + */ +Circle.prototype.contains = function contains (x, y) +{ + if (this.radius <= 0) + { + return false; + } + + var r2 = this.radius * this.radius; + var dx = (this.x - x); + var dy = (this.y - y); + + dx *= dx; + dy *= dy; + + return (dx + dy <= r2); +}; + +/** +* Returns the framing rectangle of the circle as a Rectangle object +* +* @return {PIXI.Rectangle} the framing rectangle +*/ +Circle.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2); +}; + +/** + * The Ellipse object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Ellipse = function Ellipse(x, y, halfWidth, halfHeight) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( halfWidth === void 0 ) halfWidth = 0; + if ( halfHeight === void 0 ) halfHeight = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = halfWidth; + + /** + * @member {number} + * @default 0 + */ + this.height = halfHeight; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.ELIP + * @see PIXI.SHAPES + */ + this.type = SHAPES.ELIP; +}; + +/** + * Creates a clone of this Ellipse instance + * + * @return {PIXI.Ellipse} a copy of the ellipse + */ +Ellipse.prototype.clone = function clone () +{ + return new Ellipse(this.x, this.y, this.width, this.height); +}; + +/** + * Checks whether the x and y coordinates given are contained within this ellipse + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coords are within this ellipse + */ +Ellipse.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + // normalize the coords to an ellipse with center 0,0 + var normx = ((x - this.x) / this.width); + var normy = ((y - this.y) / this.height); + + normx *= normx; + normy *= normy; + + return (normx + normy <= 1); +}; + +/** + * Returns the framing rectangle of the ellipse as a Rectangle object + * + * @return {PIXI.Rectangle} the framing rectangle + */ +Ellipse.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height); +}; + +/** + * A class to define a shape via user defined co-orinates. + * + * @class + * @memberof PIXI + */ +var Polygon = function Polygon() +{ + var points = [], len = arguments.length; + while ( len-- ) points[ len ] = arguments[ len ]; + + if (Array.isArray(points[0])) + { + points = points[0]; + } + + // if this is an array of points, convert it to a flat array of numbers + if (points[0] instanceof Point) + { + var p = []; + + for (var i = 0, il = points.length; i < il; i++) + { + p.push(points[i].x, points[i].y); + } + + points = p; + } + + /** + * An array of the points of this polygon + * + * @member {number[]} + */ + this.points = points; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.POLY + * @see PIXI.SHAPES + */ + this.type = SHAPES.POLY; + + /** + * `false` after moveTo, `true` after `closePath`. In all other cases it is `true`. + * @member {boolean} + * @default true + */ + this.closeStroke = true; +}; + +/** + * Creates a clone of this polygon + * + * @return {PIXI.Polygon} a copy of the polygon + */ +Polygon.prototype.clone = function clone () +{ + var polygon = new Polygon(this.points.slice()); + + polygon.closeStroke = this.closeStroke; + + return polygon; +}; + +/** + * Checks whether the x and y coordinates passed to this function are contained within this polygon + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this polygon + */ +Polygon.prototype.contains = function contains (x, y) +{ + var inside = false; + + // use some raycasting to test hits + // https://github.com/substack/point-in-polygon/blob/master/index.js + var length = this.points.length / 2; + + for (var i = 0, j = length - 1; i < length; j = i++) + { + var xi = this.points[i * 2]; + var yi = this.points[(i * 2) + 1]; + var xj = this.points[j * 2]; + var yj = this.points[(j * 2) + 1]; + var intersect = ((yi > y) !== (yj > y)) && (x < ((xj - xi) * ((y - yi) / (yj - yi))) + xi); + + if (intersect) + { + inside = !inside; + } + } + + return inside; +}; + +/** + * The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its + * top-left corner point (x, y) and by its width and its height and its radius. + * + * @class + * @memberof PIXI + */ +var RoundedRectangle = function RoundedRectangle(x, y, width, height, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + if ( radius === void 0 ) radius = 20; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = width; + + /** + * @member {number} + * @default 0 + */ + this.height = height; + + /** + * @member {number} + * @default 20 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readonly + * @default PIXI.SHAPES.RREC + * @see PIXI.SHAPES + */ + this.type = SHAPES.RREC; +}; + +/** + * Creates a clone of this Rounded Rectangle + * + * @return {PIXI.RoundedRectangle} a copy of the rounded rectangle + */ +RoundedRectangle.prototype.clone = function clone () +{ + return new RoundedRectangle(this.x, this.y, this.width, this.height, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rounded Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rounded Rectangle + */ +RoundedRectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + if (x >= this.x && x <= this.x + this.width) + { + if (y >= this.y && y <= this.y + this.height) + { + if ((y >= this.y + this.radius && y <= this.y + this.height - this.radius) + || (x >= this.x + this.radius && x <= this.x + this.width - this.radius)) + { + return true; + } + var dx = x - (this.x + this.radius); + var dy = y - (this.y + this.radius); + var radius2 = this.radius * this.radius; + + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.width - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dy = y - (this.y + this.height - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + } + } + + return false; +}; + +/*! + * @pixi/display - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/display is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Sets the default value for the container property 'sortableChildren'. + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @static + * @constant + * @name SORTABLE_CHILDREN + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ +settings.SORTABLE_CHILDREN = false; + +/** + * 'Builder' pattern for bounds rectangles. + * + * This could be called an Axis-Aligned Bounding Box. + * It is not an actual shape. It is a mutable thing; no 'EMPTY' or those kind of problems. + * + * @class + * @memberof PIXI + */ +var Bounds = function Bounds() +{ + /** + * @member {number} + * @default 0 + */ + this.minX = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.minY = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxX = -Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxY = -Infinity; + + this.rect = null; +}; + +/** + * Checks if bounds are empty. + * + * @return {boolean} True if empty. + */ +Bounds.prototype.isEmpty = function isEmpty () +{ + return this.minX > this.maxX || this.minY > this.maxY; +}; + +/** + * Clears the bounds and resets. + * + */ +Bounds.prototype.clear = function clear () +{ + this.updateID++; + + this.minX = Infinity; + this.minY = Infinity; + this.maxX = -Infinity; + this.maxY = -Infinity; +}; + +/** + * Can return Rectangle.EMPTY constant, either construct new rectangle, either use your rectangle + * It is not guaranteed that it will return tempRect + * + * @param {PIXI.Rectangle} rect - temporary object will be used if AABB is not empty + * @returns {PIXI.Rectangle} A rectangle of the bounds + */ +Bounds.prototype.getRectangle = function getRectangle (rect) +{ + if (this.minX > this.maxX || this.minY > this.maxY) + { + return Rectangle.EMPTY; + } + + rect = rect || new Rectangle(0, 0, 1, 1); + + rect.x = this.minX; + rect.y = this.minY; + rect.width = this.maxX - this.minX; + rect.height = this.maxY - this.minY; + + return rect; +}; + +/** + * This function should be inlined when its possible. + * + * @param {PIXI.Point} point - The point to add. + */ +Bounds.prototype.addPoint = function addPoint (point) +{ + this.minX = Math.min(this.minX, point.x); + this.maxX = Math.max(this.maxX, point.x); + this.minY = Math.min(this.minY, point.y); + this.maxY = Math.max(this.maxY, point.y); +}; + +/** + * Adds a quad, not transformed + * + * @param {Float32Array} vertices - The verts to add. + */ +Bounds.prototype.addQuad = function addQuad (vertices) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = vertices[0]; + var y = vertices[1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[2]; + y = vertices[3]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[4]; + y = vertices[5]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[6]; + y = vertices[7]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds sprite frame, transformed. + * + * @param {PIXI.Transform} transform - TODO + * @param {number} x0 - TODO + * @param {number} y0 - TODO + * @param {number} x1 - TODO + * @param {number} y1 - TODO + */ +Bounds.prototype.addFrame = function addFrame (transform, x0, y0, x1, y1) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = (a * x0) + (c * y0) + tx; + var y = (b * x0) + (d * y0) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y0) + tx; + y = (b * x1) + (d * y0) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x0) + (c * y1) + tx; + y = (b * x0) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y1) + tx; + y = (b * x1) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds screen vertices from array + * + * @param {Float32Array} vertexData - calculated vertices + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertexData = function addVertexData (vertexData, beginOffset, endOffset) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var x = vertexData[i]; + var y = vertexData[i + 1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Add an array of mesh vertices + * + * @param {PIXI.Transform} transform - mesh transform + * @param {Float32Array} vertices - mesh coordinates in array + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertices = function addVertices (transform, vertices, beginOffset, endOffset) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var rawX = vertices[i]; + var rawY = vertices[i + 1]; + var x = (a * rawX) + (c * rawY) + tx; + var y = (d * rawY) + (b * rawX) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds other Bounds + * + * @param {PIXI.Bounds} bounds - TODO + */ +Bounds.prototype.addBounds = function addBounds (bounds) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = bounds.minX < minX ? bounds.minX : minX; + this.minY = bounds.minY < minY ? bounds.minY : minY; + this.maxX = bounds.maxX > maxX ? bounds.maxX : maxX; + this.maxY = bounds.maxY > maxY ? bounds.maxY : maxY; +}; + +/** + * Adds other Bounds, masked with Bounds + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Bounds} mask - TODO + */ +Bounds.prototype.addBoundsMask = function addBoundsMask (bounds, mask) +{ + var _minX = bounds.minX > mask.minX ? bounds.minX : mask.minX; + var _minY = bounds.minY > mask.minY ? bounds.minY : mask.minY; + var _maxX = bounds.maxX < mask.maxX ? bounds.maxX : mask.maxX; + var _maxY = bounds.maxY < mask.maxY ? bounds.maxY : mask.maxY; + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +/** + * Adds other Bounds, masked with Rectangle + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Rectangle} area - TODO + */ +Bounds.prototype.addBoundsArea = function addBoundsArea (bounds, area) +{ + var _minX = bounds.minX > area.x ? bounds.minX : area.x; + var _minY = bounds.minY > area.y ? bounds.minY : area.y; + var _maxX = bounds.maxX < area.x + area.width ? bounds.maxX : (area.x + area.width); + var _maxY = bounds.maxY < area.y + area.height ? bounds.maxY : (area.y + area.height); + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +// _tempDisplayObjectParent = new DisplayObject(); + +/** + * The base class for all objects that are rendered on the screen. + * + * This is an abstract class and should not be used on its own; rather it should be extended. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var DisplayObject = /*@__PURE__*/(function (EventEmitter) { + function DisplayObject() + { + EventEmitter.call(this); + + this.tempDisplayObjectParent = null; + + // TODO: need to create Transform from factory + /** + * World transform and local transform of this object. + * This will become read-only later, please do not assign anything there unless you know what are you doing. + * + * @member {PIXI.Transform} + */ + this.transform = new Transform(); + + /** + * The opacity of the object. + * + * @member {number} + */ + this.alpha = 1; + + /** + * The visibility of the object. If false the object will not be drawn, and + * the updateTransform function will not be called. + * + * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually. + * + * @member {boolean} + */ + this.visible = true; + + /** + * Can this object be rendered, if false the object will not be drawn but the updateTransform + * methods will still be called. + * + * Only affects recursive calls from parent. You can ask for bounds manually. + * + * @member {boolean} + */ + this.renderable = true; + + /** + * The display object container that contains this display object. + * + * @member {PIXI.Container} + * @readonly + */ + this.parent = null; + + /** + * The multiplied alpha of the displayObject. + * + * @member {number} + * @readonly + */ + this.worldAlpha = 1; + + /** + * Which index in the children array the display component was before the previous zIndex sort. + * Used by containers to help sort objects with the same zIndex, by using previous array index as the decider. + * + * @member {number} + * @protected + */ + this._lastSortedIndex = 0; + + /** + * The zIndex of the displayObject. + * A higher value will mean it will be rendered on top of other displayObjects within the same container. + * + * @member {number} + * @protected + */ + this._zIndex = 0; + + /** + * The area the filter is applied to. This is used as more of an optimization + * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle. + * + * Also works as an interaction mask. + * + * @member {?PIXI.Rectangle} + */ + this.filterArea = null; + + /** + * Sets the filters for the displayObject. + * * IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer. + * To remove filters simply set this property to `'null'`. + * + * @member {?PIXI.Filter[]} + */ + this.filters = null; + this._enabledFilters = null; + + /** + * The bounds object, this is used to calculate and store the bounds of the displayObject. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + this._boundsID = 0; + this._lastBoundsID = -1; + this._boundsRect = null; + this._localBoundsRect = null; + + /** + * The original, cached mask of the object. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + * @protected + */ + this._mask = null; + + /** + * Fired when this DisplayObject is added to a Container. + * + * @event PIXI.DisplayObject#added + * @param {PIXI.Container} container - The container added to. + */ + + /** + * Fired when this DisplayObject is removed from a Container. + * + * @event PIXI.DisplayObject#removed + * @param {PIXI.Container} container - The container removed from. + */ + + /** + * If the object has been destroyed via destroy(). If true, it should not be used. + * + * @member {boolean} + * @protected + */ + this._destroyed = false; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = false; + } + + if ( EventEmitter ) DisplayObject.__proto__ = EventEmitter; + DisplayObject.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + DisplayObject.prototype.constructor = DisplayObject; + + var prototypeAccessors = { _tempDisplayObjectParent: { configurable: true },x: { configurable: true },y: { configurable: true },worldTransform: { configurable: true },localTransform: { configurable: true },position: { configurable: true },scale: { configurable: true },pivot: { configurable: true },skew: { configurable: true },rotation: { configurable: true },angle: { configurable: true },zIndex: { configurable: true },worldVisible: { configurable: true },mask: { configurable: true } }; + + /** + * @protected + * @member {PIXI.DisplayObject} + */ + DisplayObject.mixin = function mixin (source) + { + // in ES8/ES2017, this would be really easy: + // Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); + + // get all the enumerable property keys + var keys = Object.keys(source); + + // loop through properties + for (var i = 0; i < keys.length; ++i) + { + var propertyName = keys[i]; + + // Set the property using the property descriptor - this works for accessors and normal value properties + Object.defineProperty( + DisplayObject.prototype, + propertyName, + Object.getOwnPropertyDescriptor(source, propertyName) + ); + } + }; + + prototypeAccessors._tempDisplayObjectParent.get = function () + { + if (this.tempDisplayObjectParent === null) + { + this.tempDisplayObjectParent = new DisplayObject(); + } + + return this.tempDisplayObjectParent; + }; + + /** + * Updates the object transform for rendering. + * + * TODO - Optimization pass! + */ + DisplayObject.prototype.updateTransform = function updateTransform () + { + this.transform.updateTransform(this.parent.transform); + // multiply the alphas.. + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + this._bounds.updateID++; + }; + + /** + * Recursively updates transform of all objects from the root to this one + * internal function for toLocal() + */ + DisplayObject.prototype._recursivePostUpdateTransform = function _recursivePostUpdateTransform () + { + if (this.parent) + { + this.parent._recursivePostUpdateTransform(); + this.transform.updateTransform(this.parent.transform); + } + else + { + this.transform.updateTransform(this._tempDisplayObjectParent.transform); + } + }; + + /** + * Retrieves the bounds of the displayObject as a rectangle object. + * + * @param {boolean} [skipUpdate] - Setting to `true` will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getBounds = function getBounds (skipUpdate, rect) + { + if (!skipUpdate) + { + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this._recursivePostUpdateTransform(); + this.updateTransform(); + } + } + + if (this._boundsID !== this._lastBoundsID) + { + this.calculateBounds(); + this._lastBoundsID = this._boundsID; + } + + if (!rect) + { + if (!this._boundsRect) + { + this._boundsRect = new Rectangle(); + } + + rect = this._boundsRect; + } + + return this._bounds.getRectangle(rect); + }; + + /** + * Retrieves the local bounds of the displayObject as a rectangle object. + * + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getLocalBounds = function getLocalBounds (rect) + { + var transformRef = this.transform; + var parentRef = this.parent; + + this.parent = null; + this.transform = this._tempDisplayObjectParent.transform; + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + var bounds = this.getBounds(false, rect); + + this.parent = parentRef; + this.transform = transformRef; + + return bounds; + }; + + /** + * Calculates the global position of the display object. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform. + * @return {PIXI.IPoint} A point object representing the position of this object. + */ + DisplayObject.prototype.toGlobal = function toGlobal (position, point, skipUpdate) + { + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // don't need to update the lot + return this.worldTransform.apply(position, point); + }; + + /** + * Calculates the local position of the display object relative to another point. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform + * @return {PIXI.IPoint} A point object representing the position of this object + */ + DisplayObject.prototype.toLocal = function toLocal (position, from, point, skipUpdate) + { + if (from) + { + position = from.toGlobal(position, point, skipUpdate); + } + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // simply apply the matrix.. + return this.worldTransform.applyInverse(position, point); + }; + + /** + * Renders the object using the WebGL renderer. + * + * @param {PIXI.Renderer} renderer - The renderer. + */ + DisplayObject.prototype.render = function render (renderer) // eslint-disable-line no-unused-vars + { + // OVERWRITE; + }; + + /** + * Set the parent Container of this DisplayObject. + * + * @param {PIXI.Container} container - The Container to add this DisplayObject to. + * @return {PIXI.Container} The Container that this DisplayObject was added to. + */ + DisplayObject.prototype.setParent = function setParent (container) + { + if (!container || !container.addChild) + { + throw new Error('setParent: Argument must be a Container'); + } + + container.addChild(this); + + return container; + }; + + /** + * Convenience function to set the position, scale, skew and pivot at once. + * + * @param {number} [x=0] - The X position + * @param {number} [y=0] - The Y position + * @param {number} [scaleX=1] - The X scale value + * @param {number} [scaleY=1] - The Y scale value + * @param {number} [rotation=0] - The rotation + * @param {number} [skewX=0] - The X skew value + * @param {number} [skewY=0] - The Y skew value + * @param {number} [pivotX=0] - The X pivot value + * @param {number} [pivotY=0] - The Y pivot value + * @return {PIXI.DisplayObject} The DisplayObject instance + */ + DisplayObject.prototype.setTransform = function setTransform (x, y, scaleX, scaleY, rotation, skewX, skewY, pivotX, pivotY) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( scaleX === void 0 ) scaleX = 1; + if ( scaleY === void 0 ) scaleY = 1; + if ( rotation === void 0 ) rotation = 0; + if ( skewX === void 0 ) skewX = 0; + if ( skewY === void 0 ) skewY = 0; + if ( pivotX === void 0 ) pivotX = 0; + if ( pivotY === void 0 ) pivotY = 0; + + this.position.x = x; + this.position.y = y; + this.scale.x = !scaleX ? 1 : scaleX; + this.scale.y = !scaleY ? 1 : scaleY; + this.rotation = rotation; + this.skew.x = skewX; + this.skew.y = skewY; + this.pivot.x = pivotX; + this.pivot.y = pivotY; + + return this; + }; + + /** + * Base destroy method for generic display objects. This will automatically + * remove the display object from its parent Container as well as remove + * all current event listeners and internal references. Do not use a DisplayObject + * after calling `destroy()`. + * + */ + DisplayObject.prototype.destroy = function destroy () + { + this.removeAllListeners(); + if (this.parent) + { + this.parent.removeChild(this); + } + this.transform = null; + + this.parent = null; + + this._bounds = null; + this._currentBounds = null; + this._mask = null; + + this.filterArea = null; + + this.interactive = false; + this.interactiveChildren = false; + + this._destroyed = true; + }; + + /** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * An alias to position.x + * + * @member {number} + */ + prototypeAccessors.x.get = function () + { + return this.position.x; + }; + + prototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.x = value; + }; + + /** + * The position of the displayObject on the y axis relative to the local coordinates of the parent. + * An alias to position.y + * + * @member {number} + */ + prototypeAccessors.y.get = function () + { + return this.position.y; + }; + + prototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.y = value; + }; + + /** + * Current transform of the object based on world (parent) factors. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.worldTransform.get = function () + { + return this.transform.worldTransform; + }; + + /** + * Current transform of the object based on local factors: position, scale, other stuff. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.localTransform.get = function () + { + return this.transform.localTransform; + }; + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.position.get = function () + { + return this.transform.position; + }; + + prototypeAccessors.position.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.copyFrom(value); + }; + + /** + * The scale factor of the object. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.scale.get = function () + { + return this.transform.scale; + }; + + prototypeAccessors.scale.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.scale.copyFrom(value); + }; + + /** + * The pivot point of the displayObject that it rotates around. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.pivot.get = function () + { + return this.transform.pivot; + }; + + prototypeAccessors.pivot.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.pivot.copyFrom(value); + }; + + /** + * The skew factor for the object in radians. + * Assignment by value since pixi-v4. + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.skew.get = function () + { + return this.transform.skew; + }; + + prototypeAccessors.skew.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.skew.copyFrom(value); + }; + + /** + * The rotation of the object in radians. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.rotation.get = function () + { + return this.transform.rotation; + }; + + prototypeAccessors.rotation.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value; + }; + + /** + * The angle of the object in degrees. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.angle.get = function () + { + return this.transform.rotation * RAD_TO_DEG; + }; + + prototypeAccessors.angle.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value * DEG_TO_RAD; + }; + + /** + * The zIndex of the displayObject. + * If a container has the sortableChildren property set to true, children will be automatically + * sorted by zIndex value; a higher value will mean it will be moved towards the end of the array, + * and thus rendered on top of other displayObjects within the same container. + * + * @member {number} + */ + prototypeAccessors.zIndex.get = function () + { + return this._zIndex; + }; + + prototypeAccessors.zIndex.set = function (value) // eslint-disable-line require-jsdoc + { + this._zIndex = value; + if (this.parent) + { + this.parent.sortDirty = true; + } + }; + + /** + * Indicates if the object is globally visible. + * + * @member {boolean} + * @readonly + */ + prototypeAccessors.worldVisible.get = function () + { + var item = this; + + do + { + if (!item.visible) + { + return false; + } + + item = item.parent; + } while (item); + + return true; + }; + + /** + * Sets a mask for the displayObject. A mask is an object that limits the visibility of an + * object to the shape of the mask applied to it. In PixiJS a regular mask must be a + * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it + * utilities shape clipping. To remove a mask, set this property to `null`. + * + * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask. + * @example + * const graphics = new PIXI.Graphics(); + * graphics.beginFill(0xFF3300); + * graphics.drawRect(50, 250, 100, 100); + * graphics.endFill(); + * + * const sprite = new PIXI.Sprite(texture); + * sprite.mask = graphics; + * @todo At the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + */ + prototypeAccessors.mask.get = function () + { + return this._mask; + }; + + prototypeAccessors.mask.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._mask) + { + this._mask.renderable = true; + this._mask.isMask = false; + } + + this._mask = value; + + if (this._mask) + { + this._mask.renderable = false; + this._mask.isMask = true; + } + }; + + Object.defineProperties( DisplayObject.prototype, prototypeAccessors ); + + return DisplayObject; +}(eventemitter3)); + +/** + * DisplayObject default updateTransform, does not update children of container. + * Will crash if there's no parent element. + * + * @memberof PIXI.DisplayObject# + * @function displayObjectUpdateTransform + */ +DisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform; + +function sortChildren(a, b) +{ + if (a.zIndex === b.zIndex) + { + return a._lastSortedIndex - b._lastSortedIndex; + } + + return a.zIndex - b.zIndex; +} + +/** + * A Container represents a collection of display objects. + * + * It is the base class of all display objects that act as a container for other objects (like Sprites). + * + *```js + * let container = new PIXI.Container(); + * container.addChild(sprite); + * ``` + * + * @class + * @extends PIXI.DisplayObject + * @memberof PIXI + */ +var Container = /*@__PURE__*/(function (DisplayObject) { + function Container() + { + DisplayObject.call(this); + + /** + * The array of children of this container. + * + * @member {PIXI.DisplayObject[]} + * @readonly + */ + this.children = []; + + /** + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @see PIXI.settings.SORTABLE_CHILDREN + * + * @member {boolean} + */ + this.sortableChildren = settings.SORTABLE_CHILDREN; + + /** + * Should children be sorted by zIndex at the next updateTransform call. + * Will get automatically set to true if a new child is added, or if a child's zIndex changes. + * + * @member {boolean} + */ + this.sortDirty = false; + + /** + * Fired when a DisplayObject is added to this Container. + * + * @event PIXI.Container#childAdded + * @param {PIXI.DisplayObject} child - The child added to the Container. + * @param {PIXI.Container} container - The container that added the child. + * @param {number} index - The children's index of the added child. + */ + + /** + * Fired when a DisplayObject is removed from this Container. + * + * @event PIXI.DisplayObject#removedFrom + * @param {PIXI.DisplayObject} child - The child removed from the Container. + * @param {PIXI.Container} container - The container that removed removed the child. + * @param {number} index - The former children's index of the removed child + */ + } + + if ( DisplayObject ) Container.__proto__ = DisplayObject; + Container.prototype = Object.create( DisplayObject && DisplayObject.prototype ); + Container.prototype.constructor = Container; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + + /** + * Overridable method that can be used by Container subclasses whenever the children array is modified + * + * @protected + */ + Container.prototype.onChildrenChange = function onChildrenChange () + { + /* empty */ + }; + + /** + * Adds one or more children to the container. + * + * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)` + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container + * @return {PIXI.DisplayObject} The first child that was added. + */ + Container.prototype.addChild = function addChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.addChild(arguments$1[i]); + } + } + else + { + // if the child has a parent then lets remove it as PixiJS objects can only exist in one place + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.push(child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(this.children.length - 1); + this.emit('childAdded', child, this, this.children.length - 1); + child.emit('added', this); + } + + return child; + }; + + /** + * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown + * + * @param {PIXI.DisplayObject} child - The child to add + * @param {number} index - The index to place the child in + * @return {PIXI.DisplayObject} The child that was added. + */ + Container.prototype.addChildAt = function addChildAt (child, index) + { + if (index < 0 || index > this.children.length) + { + throw new Error((child + "addChildAt: The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.splice(index, 0, child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('added', this); + this.emit('childAdded', child, this, index); + + return child; + }; + + /** + * Swaps the position of 2 Display Objects within this container. + * + * @param {PIXI.DisplayObject} child - First display object to swap + * @param {PIXI.DisplayObject} child2 - Second display object to swap + */ + Container.prototype.swapChildren = function swapChildren (child, child2) + { + if (child === child2) + { + return; + } + + var index1 = this.getChildIndex(child); + var index2 = this.getChildIndex(child2); + + this.children[index1] = child2; + this.children[index2] = child; + this.onChildrenChange(index1 < index2 ? index1 : index2); + }; + + /** + * Returns the index position of a child DisplayObject instance + * + * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify + * @return {number} The index position of the child display object to identify + */ + Container.prototype.getChildIndex = function getChildIndex (child) + { + var index = this.children.indexOf(child); + + if (index === -1) + { + throw new Error('The supplied DisplayObject must be a child of the caller'); + } + + return index; + }; + + /** + * Changes the position of an existing child in the display object container + * + * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number + * @param {number} index - The resulting index number for the child display object + */ + Container.prototype.setChildIndex = function setChildIndex (child, index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + var currentIndex = this.getChildIndex(child); + + removeItems(this.children, currentIndex, 1); // remove from old position + this.children.splice(index, 0, child); // add at new position + + this.onChildrenChange(index); + }; + + /** + * Returns the child at the specified index + * + * @param {number} index - The index to get the child at + * @return {PIXI.DisplayObject} The child at the given index, if any. + */ + Container.prototype.getChildAt = function getChildAt (index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("getChildAt: Index (" + index + ") does not exist.")); + } + + return this.children[index]; + }; + + /** + * Removes one or more children from the container. + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove + * @return {PIXI.DisplayObject} The first child that was removed. + */ + Container.prototype.removeChild = function removeChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.removeChild(arguments$1[i]); + } + } + else + { + var index = this.children.indexOf(child); + + if (index === -1) { return null; } + + child.parent = null; + // ensure child transform will be recalculated + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + } + + return child; + }; + + /** + * Removes a child from the specified index position. + * + * @param {number} index - The index to get the child from + * @return {PIXI.DisplayObject} The child that was removed. + */ + Container.prototype.removeChildAt = function removeChildAt (index) + { + var child = this.getChildAt(index); + + // ensure child transform will be recalculated.. + child.parent = null; + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + + return child; + }; + + /** + * Removes all children from this container that are within the begin and end indexes. + * + * @param {number} [beginIndex=0] - The beginning position. + * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container. + * @returns {PIXI.DisplayObject[]} List of removed children + */ + Container.prototype.removeChildren = function removeChildren (beginIndex, endIndex) + { + if ( beginIndex === void 0 ) beginIndex = 0; + + var begin = beginIndex; + var end = typeof endIndex === 'number' ? endIndex : this.children.length; + var range = end - begin; + var removed; + + if (range > 0 && range <= end) + { + removed = this.children.splice(begin, range); + + for (var i = 0; i < removed.length; ++i) + { + removed[i].parent = null; + if (removed[i].transform) + { + removed[i].transform._parentID = -1; + } + } + + this._boundsID++; + + this.onChildrenChange(beginIndex); + + for (var i$1 = 0; i$1 < removed.length; ++i$1) + { + removed[i$1].emit('removed', this); + this.emit('childRemoved', removed[i$1], this, i$1); + } + + return removed; + } + else if (range === 0 && this.children.length === 0) + { + return []; + } + + throw new RangeError('removeChildren: numeric values are outside the acceptable range.'); + }; + + /** + * Sorts children by zIndex. Previous order is mantained for 2 children with the same zIndex. + */ + Container.prototype.sortChildren = function sortChildren$1 () + { + var sortRequired = false; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + child._lastSortedIndex = i; + + if (!sortRequired && child.zIndex !== 0) + { + sortRequired = true; + } + } + + if (sortRequired && this.children.length > 1) + { + this.children.sort(sortChildren); + } + + this.sortDirty = false; + }; + + /** + * Updates the transform on all children of this container for rendering + */ + Container.prototype.updateTransform = function updateTransform () + { + if (this.sortableChildren && this.sortDirty) + { + this.sortChildren(); + } + + this._boundsID++; + + this.transform.updateTransform(this.parent.transform); + + // TODO: check render flags, how to process stuff here + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + if (child.visible) + { + child.updateTransform(); + } + } + }; + + /** + * Recalculates the bounds of the container. + * + */ + Container.prototype.calculateBounds = function calculateBounds () + { + this._bounds.clear(); + + this._calculateBounds(); + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (!child.visible || !child.renderable) + { + continue; + } + + child.calculateBounds(); + + // TODO: filter+mask, need to mask both somehow + if (child._mask) + { + child._mask.calculateBounds(); + this._bounds.addBoundsMask(child._bounds, child._mask._bounds); + } + else if (child.filterArea) + { + this._bounds.addBoundsArea(child._bounds, child.filterArea); + } + else + { + this._bounds.addBounds(child._bounds); + } + } + + this._lastBoundsID = this._boundsID; + }; + + /** + * Recalculates the bounds of the object. Override this to + * calculate the bounds of the specific object (not including children). + * + * @protected + */ + Container.prototype._calculateBounds = function _calculateBounds () + { + // FILL IN// + }; + + /** + * Renders the object using the WebGL renderer + * + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.render = function render (renderer) + { + // if the object is not visible or the alpha is 0 then no need to render this element + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + // do a quick check to see if this element has a mask or a filter. + if (this._mask || (this.filters && this.filters.length)) + { + this.renderAdvanced(renderer); + } + else + { + this._render(renderer); + + // simple render children! + for (var i = 0, j = this.children.length; i < j; ++i) + { + this.children[i].render(renderer); + } + } + }; + + /** + * Render the object using the WebGL renderer and advanced features. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.renderAdvanced = function renderAdvanced (renderer) + { + renderer.batch.flush(); + + var filters = this.filters; + var mask = this._mask; + + // push filter first as we need to ensure the stencil buffer is correct for any masking + if (filters) + { + if (!this._enabledFilters) + { + this._enabledFilters = []; + } + + this._enabledFilters.length = 0; + + for (var i = 0; i < filters.length; i++) + { + if (filters[i].enabled) + { + this._enabledFilters.push(filters[i]); + } + } + + if (this._enabledFilters.length) + { + renderer.filter.push(this, this._enabledFilters); + } + } + + if (mask) + { + renderer.mask.push(this, this._mask); + } + + // add this object to the batch, only rendered if it has a texture. + this._render(renderer); + + // now loop through the children and make sure they get rendered + for (var i$1 = 0, j = this.children.length; i$1 < j; i$1++) + { + this.children[i$1].render(renderer); + } + + renderer.batch.flush(); + + if (mask) + { + renderer.mask.pop(this, this._mask); + } + + if (filters && this._enabledFilters && this._enabledFilters.length) + { + renderer.filter.pop(); + } + }; + + /** + * To be overridden by the subclasses. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype._render = function _render (renderer) // eslint-disable-line no-unused-vars + { + // this is where content itself gets rendered... + }; + + /** + * Removes all internal references and listeners as well as removes children from the display list. + * Do not use a Container after calling `destroy`. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Container.prototype.destroy = function destroy (options) + { + DisplayObject.prototype.destroy.call(this); + + this.sortDirty = false; + + var destroyChildren = typeof options === 'boolean' ? options : options && options.children; + + var oldChildren = this.removeChildren(0, this.children.length); + + if (destroyChildren) + { + for (var i = 0; i < oldChildren.length; ++i) + { + oldChildren[i].destroy(options); + } + } + }; + + /** + * The width of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.scale.x * this.getLocalBounds().width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var width = this.getLocalBounds().width; + + if (width !== 0) + { + this.scale.x = value / width; + } + else + { + this.scale.x = 1; + } + + this._width = value; + }; + + /** + * The height of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.scale.y * this.getLocalBounds().height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var height = this.getLocalBounds().height; + + if (height !== 0) + { + this.scale.y = value / height; + } + else + { + this.scale.y = 1; + } + + this._height = value; + }; + + Object.defineProperties( Container.prototype, prototypeAccessors ); + + return Container; +}(DisplayObject)); + +// performance increase to avoid using call.. (10x faster) +Container.prototype.containerUpdateTransform = Container.prototype.updateTransform; + +/*! + * @pixi/accessibility - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/accessibility is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default property values of accessible objects + * used by {@link PIXI.accessibility.AccessibilityManager}. + * + * @private + * @function accessibleTarget + * @memberof PIXI.accessibility + * @type {Object} + * @example + * function MyObject() {} + * + * Object.assign( + * MyObject.prototype, + * PIXI.accessibility.accessibleTarget + * ); + */ +var accessibleTarget = { + /** + * Flag for if the object is accessible. If true AccessibilityManager will overlay a + * shadow div with attributes set + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + accessible: false, + + /** + * Sets the title attribute of the shadow div + * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]' + * + * @member {?string} + * @memberof PIXI.DisplayObject# + */ + accessibleTitle: null, + + /** + * Sets the aria-label attribute of the shadow div + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + accessibleHint: null, + + /** + * @member {number} + * @memberof PIXI.DisplayObject# + * @private + * @todo Needs docs. + */ + tabIndex: 0, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleActive: false, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleDiv: false, +}; + +// add some extra variables to the container.. +DisplayObject.mixin(accessibleTarget); + +var KEY_CODE_TAB = 9; + +var DIV_TOUCH_SIZE = 100; +var DIV_TOUCH_POS_X = 0; +var DIV_TOUCH_POS_Y = 0; +var DIV_TOUCH_ZINDEX = 2; + +var DIV_HOOK_SIZE = 1; +var DIV_HOOK_POS_X = -1000; +var DIV_HOOK_POS_Y = -1000; +var DIV_HOOK_ZINDEX = 2; + +/** + * The Accessibility manager recreates the ability to tab and have content read by screen readers. + * This is very important as it can possibly help people with disabilities access PixiJS content. + * + * A DisplayObject can be made accessible just like it can be made interactive. This manager will map the + * events as if the mouse was being used, minimizing the effort required to implement. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.accessibility` + * + * @class + * @memberof PIXI.accessibility + */ +var AccessibilityManager = function AccessibilityManager(renderer) +{ + /** + * @type {?HTMLElement} + * @private + */ + this._hookDiv = null; + if (isMobile.tablet || isMobile.phone) + { + this.createTouchHook(); + } + + // first we create a div that will sit over the PixiJS element. This is where the div overlays will go. + var div = document.createElement('div'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.position = 'absolute'; + div.style.top = DIV_TOUCH_POS_X + "px"; + div.style.left = DIV_TOUCH_POS_Y + "px"; + div.style.zIndex = DIV_TOUCH_ZINDEX; + + /** + * This is the dom element that will sit over the PixiJS element. This is where the div overlays will go. + * + * @type {HTMLElement} + * @private + */ + this.div = div; + + /** + * A simple pool for storing divs. + * + * @type {*} + * @private + */ + this.pool = []; + + /** + * This is a tick used to check if an object is no longer being rendered. + * + * @type {Number} + * @private + */ + this.renderId = 0; + + /** + * Setting this to true will visually show the divs. + * + * @type {boolean} + */ + this.debug = false; + + /** + * The renderer this accessibility manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * The array of currently active accessible items. + * + * @member {Array<*>} + * @private + */ + this.children = []; + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onKeyDown = this._onKeyDown.bind(this); + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onMouseMove = this._onMouseMove.bind(this); + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isActive = false; + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isMobileAccessibility = false; + + // let listen for tab.. once pressed we can fire up and show the accessibility layer + window.addEventListener('keydown', this._onKeyDown, false); +}; + +/** + * Creates the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.createTouchHook = function createTouchHook () +{ + var this$1 = this; + + var hookDiv = document.createElement('button'); + + hookDiv.style.width = DIV_HOOK_SIZE + "px"; + hookDiv.style.height = DIV_HOOK_SIZE + "px"; + hookDiv.style.position = 'absolute'; + hookDiv.style.top = DIV_HOOK_POS_X + "px"; + hookDiv.style.left = DIV_HOOK_POS_Y + "px"; + hookDiv.style.zIndex = DIV_HOOK_ZINDEX; + hookDiv.style.backgroundColor = '#FF0000'; + hookDiv.title = 'HOOK DIV'; + + hookDiv.addEventListener('focus', function () { + this$1.isMobileAccessibility = true; + this$1.activate(); + this$1.destroyTouchHook(); + }); + + document.body.appendChild(hookDiv); + this._hookDiv = hookDiv; +}; + +/** + * Destroys the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.destroyTouchHook = function destroyTouchHook () +{ + if (!this._hookDiv) + { + return; + } + document.body.removeChild(this._hookDiv); + this._hookDiv = null; +}; + +/** + * Activating will cause the Accessibility layer to be shown. + * This is called when a user presses the tab key. + * + * @private + */ +AccessibilityManager.prototype.activate = function activate () +{ + if (this.isActive) + { + return; + } + + this.isActive = true; + + window.document.addEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown, false); + + this.renderer.on('postrender', this.update, this); + + if (this.renderer.view.parentNode) + { + this.renderer.view.parentNode.appendChild(this.div); + } +}; + +/** + * Deactivating will cause the Accessibility layer to be hidden. + * This is called when a user moves the mouse. + * + * @private + */ +AccessibilityManager.prototype.deactivate = function deactivate () +{ + if (!this.isActive || this.isMobileAccessibility) + { + return; + } + + this.isActive = false; + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.addEventListener('keydown', this._onKeyDown, false); + + this.renderer.off('postrender', this.update); + + if (this.div.parentNode) + { + this.div.parentNode.removeChild(this.div); + } +}; + +/** + * This recursive function will run through the scene graph and add any new accessible objects to the DOM layer. + * + * @private + * @param {PIXI.Container} displayObject - The DisplayObject to check. + */ +AccessibilityManager.prototype.updateAccessibleObjects = function updateAccessibleObjects (displayObject) +{ + if (!displayObject.visible) + { + return; + } + + if (displayObject.accessible && displayObject.interactive) + { + if (!displayObject._accessibleActive) + { + this.addChild(displayObject); + } + + displayObject.renderId = this.renderId; + } + + var children = displayObject.children; + + for (var i = 0; i < children.length; i++) + { + this.updateAccessibleObjects(children[i]); + } +}; + +/** + * Before each render this function will ensure that all divs are mapped correctly to their DisplayObjects. + * + * @private + */ +AccessibilityManager.prototype.update = function update () +{ + if (!this.renderer.renderingToScreen) + { + return; + } + + // update children... + this.updateAccessibleObjects(this.renderer._lastObjectRendered); + + var rect = this.renderer.view.getBoundingClientRect(); + var sx = rect.width / this.renderer.width; + var sy = rect.height / this.renderer.height; + + var div = this.div; + + div.style.left = (rect.left) + "px"; + div.style.top = (rect.top) + "px"; + div.style.width = (this.renderer.width) + "px"; + div.style.height = (this.renderer.height) + "px"; + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (child.renderId !== this.renderId) + { + child._accessibleActive = false; + + removeItems(this.children, i, 1); + this.div.removeChild(child._accessibleDiv); + this.pool.push(child._accessibleDiv); + child._accessibleDiv = null; + + i--; + + if (this.children.length === 0) + { + this.deactivate(); + } + } + else + { + // map div to display.. + div = child._accessibleDiv; + var hitArea = child.hitArea; + var wt = child.worldTransform; + + if (child.hitArea) + { + div.style.left = ((wt.tx + (hitArea.x * wt.a)) * sx) + "px"; + div.style.top = ((wt.ty + (hitArea.y * wt.d)) * sy) + "px"; + + div.style.width = (hitArea.width * wt.a * sx) + "px"; + div.style.height = (hitArea.height * wt.d * sy) + "px"; + } + else + { + hitArea = child.getBounds(); + + this.capHitArea(hitArea); + + div.style.left = (hitArea.x * sx) + "px"; + div.style.top = (hitArea.y * sy) + "px"; + + div.style.width = (hitArea.width * sx) + "px"; + div.style.height = (hitArea.height * sy) + "px"; + + // update button titles and hints if they exist and they've changed + if (div.title !== child.accessibleTitle && child.accessibleTitle !== null) + { + div.title = child.accessibleTitle; + } + if (div.getAttribute('aria-label') !== child.accessibleHint + && child.accessibleHint !== null) + { + div.setAttribute('aria-label', child.accessibleHint); + } + } + } + } + + // increment the render id.. + this.renderId++; +}; + +/** + * Adjust the hit area based on the bounds of a display object + * + * @param {PIXI.Rectangle} hitArea - Bounds of the child + */ +AccessibilityManager.prototype.capHitArea = function capHitArea (hitArea) +{ + if (hitArea.x < 0) + { + hitArea.width += hitArea.x; + hitArea.x = 0; + } + + if (hitArea.y < 0) + { + hitArea.height += hitArea.y; + hitArea.y = 0; + } + + if (hitArea.x + hitArea.width > this.renderer.width) + { + hitArea.width = this.renderer.width - hitArea.x; + } + + if (hitArea.y + hitArea.height > this.renderer.height) + { + hitArea.height = this.renderer.height - hitArea.y; + } +}; + +/** + * Adds a DisplayObject to the accessibility manager + * + * @private + * @param {PIXI.DisplayObject} displayObject - The child to make accessible. + */ +AccessibilityManager.prototype.addChild = function addChild (displayObject) +{ + //this.activate(); + + var div = this.pool.pop(); + + if (!div) + { + div = document.createElement('button'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.backgroundColor = this.debug ? 'rgba(255,0,0,0.5)' : 'transparent'; + div.style.position = 'absolute'; + div.style.zIndex = DIV_TOUCH_ZINDEX; + div.style.borderStyle = 'none'; + + // ARIA attributes ensure that button title and hint updates are announced properly + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + // Chrome doesn't need aria-live to work as intended; in fact it just gets more confused. + div.setAttribute('aria-live', 'off'); + } + else + { + div.setAttribute('aria-live', 'polite'); + } + + if (navigator.userAgent.match(/rv:.*Gecko\//)) + { + // FireFox needs this to announce only the new button name + div.setAttribute('aria-relevant', 'additions'); + } + else + { + // required by IE, other browsers don't much care + div.setAttribute('aria-relevant', 'text'); + } + + div.addEventListener('click', this._onClick.bind(this)); + div.addEventListener('focus', this._onFocus.bind(this)); + div.addEventListener('focusout', this._onFocusOut.bind(this)); + } + + if (displayObject.accessibleTitle && displayObject.accessibleTitle !== null) + { + div.title = displayObject.accessibleTitle; + } + else if (!displayObject.accessibleHint + || displayObject.accessibleHint === null) + { + div.title = "displayObject " + (displayObject.tabIndex); + } + + if (displayObject.accessibleHint + && displayObject.accessibleHint !== null) + { + div.setAttribute('aria-label', displayObject.accessibleHint); + } + + // + + displayObject._accessibleActive = true; + displayObject._accessibleDiv = div; + div.displayObject = displayObject; + + this.children.push(displayObject); + this.div.appendChild(displayObject._accessibleDiv); + displayObject._accessibleDiv.tabIndex = displayObject.tabIndex; +}; + +/** + * Maps the div button press to pixi's InteractionManager (click) + * + * @private + * @param {MouseEvent} e - The click event. + */ +AccessibilityManager.prototype._onClick = function _onClick (e) +{ + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'click', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'pointertap', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'tap', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseover) + * + * @private + * @param {FocusEvent} e - The focus event. + */ +AccessibilityManager.prototype._onFocus = function _onFocus (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'assertive'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseover', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseout) + * + * @private + * @param {FocusEvent} e - The focusout event. + */ +AccessibilityManager.prototype._onFocusOut = function _onFocusOut (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'polite'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseout', interactionManager.eventData); +}; + +/** + * Is called when a key is pressed + * + * @private + * @param {KeyboardEvent} e - The keydown event. + */ +AccessibilityManager.prototype._onKeyDown = function _onKeyDown (e) +{ + if (e.keyCode !== KEY_CODE_TAB) + { + return; + } + + this.activate(); +}; + +/** + * Is called when the mouse moves across the renderer element + * + * @private + * @param {MouseEvent} e - The mouse event. + */ +AccessibilityManager.prototype._onMouseMove = function _onMouseMove (e) +{ + if (e.movementX === 0 && e.movementY === 0) + { + return; + } + + this.deactivate(); +}; + +/** + * Destroys the accessibility manager + * + */ +AccessibilityManager.prototype.destroy = function destroy () +{ + this.destroyTouchHook(); + this.div = null; + + for (var i = 0; i < this.children.length; i++) + { + this.children[i].div = null; + } + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown); + + this.pool = null; + this.children = null; + this.renderer = null; +}; + +/*! + * @pixi/runner - v5.1.1 + * Compiled Fri, 02 Aug 2019 23:20:23 UTC + * + * @pixi/runner is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * A Runner is a highly performant and simple alternative to signals. Best used in situations + * where events are dispatched to many objects at high frequency (say every frame!) + * + * + * like a signal.. + * ``` + * const myObject = { + * loaded: new PIXI.Runner('loaded') + * } + * + * const listener = { + * loaded: function(){ + * // thin + * } + * } + * + * myObject.update.add(listener); + * + * myObject.loaded.emit(); + * ``` + * + * Or for handling calling the same function on many items + * ``` + * const myGame = { + * update: new PIXI.Runner('update') + * } + * + * const gameObject = { + * update: function(time){ + * // update my gamey state + * } + * } + * + * myGame.update.add(gameObject1); + * + * myGame.update.emit(time); + * ``` + * @class + * @memberof PIXI + */ +var Runner = function Runner(name) +{ + this.items = []; + this._name = name; + this._aliasCount = 0; +}; + +var prototypeAccessors$3 = { empty: { configurable: true },name: { configurable: true } }; + +/** + * Dispatch/Broadcast Runner to all listeners added to the queue. + * @param {...any} params - optional parameters to pass to each listener + */ +Runner.prototype.emit = function emit (a0, a1, a2, a3, a4, a5, a6, a7) +{ + if (arguments.length > 8) + { + throw new Error('max arguments reached'); + } + + var ref = this; + var name = ref.name; + var items = ref.items; + + this._aliasCount++; + + for (var i = 0, len = items.length; i < len; i++) + { + items[i][name](a0, a1, a2, a3, a4, a5, a6, a7); + } + + if (items === this.items) + { + this._aliasCount--; + } + + return this; +}; + +Runner.prototype.ensureNonAliasedItems = function ensureNonAliasedItems () +{ + if (this._aliasCount > 0 && this.items.length > 1) + { + this._aliasCount = 0; + this.items = this.items.slice(0); + } +}; + +/** + * Add a listener to the Runner + * + * Runners do not need to have scope or functions passed to them. + * All that is required is to pass the listening object and ensure that it has contains a function that has the same name + * as the name provided to the Runner when it was created. + * + * Eg A listener passed to this Runner will require a 'complete' function. + * + * ``` + * const complete = new PIXI.Runner('complete'); + * ``` + * + * The scope used will be the object itself. + * + * @param {any} item - The object that will be listening. + */ +Runner.prototype.add = function add (item) +{ + if (item[this._name]) + { + this.ensureNonAliasedItems(); + this.remove(item); + this.items.push(item); + } + + return this; +}; + +/** + * Remove a single listener from the dispatch queue. + * @param {any} item - The listenr that you would like to remove. + */ +Runner.prototype.remove = function remove (item) +{ + var index = this.items.indexOf(item); + + if (index !== -1) + { + this.ensureNonAliasedItems(); + this.items.splice(index, 1); + } + + return this; +}; + +/** + * Check to see if the listener is already in the Runner + * @param {any} item - The listener that you would like to check. + */ +Runner.prototype.contains = function contains (item) +{ + return this.items.indexOf(item) !== -1; +}; + +/** + * Remove all listeners from the Runner + */ +Runner.prototype.removeAll = function removeAll () +{ + this.ensureNonAliasedItems(); + this.items.length = 0; + + return this; +}; + +/** + * Remove all references, don't use after this. + */ +Runner.prototype.destroy = function destroy () +{ + this.removeAll(); + this.items = null; + this._name = null; +}; + +/** + * `true` if there are no this Runner contains no listeners + * + * @member {boolean} + * @readonly + */ +prototypeAccessors$3.empty.get = function () +{ + return this.items.length === 0; +}; + +/** + * The name of the runner. + * + * @member {string} + * @readonly + */ +prototypeAccessors$3.name.get = function () +{ + return this._name; +}; + +Object.defineProperties( Runner.prototype, prototypeAccessors$3 ); + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method dispatch + * @see PIXI.Runner#emit + */ +Runner.prototype.dispatch = Runner.prototype.emit; + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method run + * @see PIXI.Runner#emit + */ +Runner.prototype.run = Runner.prototype.emit; + +/*! + * @pixi/ticker - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/ticker is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Target frames per millisecond. + * + * @static + * @name TARGET_FPMS + * @memberof PIXI.settings + * @type {number} + * @default 0.06 + */ +settings.TARGET_FPMS = 0.06; + +/** + * Represents the update priorities used by internal PIXI classes when registered with + * the {@link PIXI.Ticker} object. Higher priority items are updated first and lower + * priority items, such as render, should go later. + * + * @static + * @constant + * @name UPDATE_PRIORITY + * @memberof PIXI + * @type {object} + * @property {number} INTERACTION=50 Highest priority, used for {@link PIXI.interaction.InteractionManager} + * @property {number} HIGH=25 High priority updating, {@link PIXI.VideoBaseTexture} and {@link PIXI.AnimatedSprite} + * @property {number} NORMAL=0 Default priority for ticker events, see {@link PIXI.Ticker#add}. + * @property {number} LOW=-25 Low priority used for {@link PIXI.Application} rendering. + * @property {number} UTILITY=-50 Lowest priority used for {@link PIXI.prepare.BasePrepare} utility. + */ +var UPDATE_PRIORITY = { + INTERACTION: 50, + HIGH: 25, + NORMAL: 0, + LOW: -25, + UTILITY: -50, +}; + +/** + * Internal class for handling the priority sorting of ticker handlers. + * + * @private + * @class + * @memberof PIXI + */ +var TickerListener = function TickerListener(fn, context, priority, once) +{ + if ( context === void 0 ) context = null; + if ( priority === void 0 ) priority = 0; + if ( once === void 0 ) once = false; + + /** + * The handler function to execute. + * @private + * @member {Function} + */ + this.fn = fn; + + /** + * The calling to execute. + * @private + * @member {*} + */ + this.context = context; + + /** + * The current priority. + * @private + * @member {number} + */ + this.priority = priority; + + /** + * If this should only execute once. + * @private + * @member {boolean} + */ + this.once = once; + + /** + * The next item in chain. + * @private + * @member {TickerListener} + */ + this.next = null; + + /** + * The previous item in chain. + * @private + * @member {TickerListener} + */ + this.previous = null; + + /** + * `true` if this listener has been destroyed already. + * @member {boolean} + * @private + */ + this._destroyed = false; +}; + +/** + * Simple compare function to figure out if a function and context match. + * @private + * @param {Function} fn - The listener function to be added for one update + * @param {Function} context - The listener context + * @return {boolean} `true` if the listener match the arguments + */ +TickerListener.prototype.match = function match (fn, context) +{ + context = context || null; + + return this.fn === fn && this.context === context; +}; + +/** + * Emit by calling the current function. + * @private + * @param {number} deltaTime - time since the last emit. + * @return {TickerListener} Next ticker + */ +TickerListener.prototype.emit = function emit (deltaTime) +{ + if (this.fn) + { + if (this.context) + { + this.fn.call(this.context, deltaTime); + } + else + { + this.fn(deltaTime); + } + } + + var redirect = this.next; + + if (this.once) + { + this.destroy(true); + } + + // Soft-destroying should remove + // the next reference + if (this._destroyed) + { + this.next = null; + } + + return redirect; +}; + +/** + * Connect to the list. + * @private + * @param {TickerListener} previous - Input node, previous listener + */ +TickerListener.prototype.connect = function connect (previous) +{ + this.previous = previous; + if (previous.next) + { + previous.next.previous = this; + } + this.next = previous.next; + previous.next = this; +}; + +/** + * Destroy and don't use after this. + * @private + * @param {boolean} [hard = false] `true` to remove the `next` reference, this + * is considered a hard destroy. Soft destroy maintains the next reference. + * @return {TickerListener} The listener to redirect while emitting or removing. + */ +TickerListener.prototype.destroy = function destroy (hard) +{ + if ( hard === void 0 ) hard = false; + + this._destroyed = true; + this.fn = null; + this.context = null; + + // Disconnect, hook up next and previous + if (this.previous) + { + this.previous.next = this.next; + } + + if (this.next) + { + this.next.previous = this.previous; + } + + // Redirect to the next item + var redirect = this.next; + + // Remove references + this.next = hard ? null : redirect; + this.previous = null; + + return redirect; +}; + +/** + * A Ticker class that runs an update loop that other objects listen to. + * + * This class is composed around listeners meant for execution on the next requested animation frame. + * Animation frames are requested only when necessary, e.g. When the ticker is started and the emitter has listeners. + * + * @class + * @memberof PIXI + */ +var Ticker = function Ticker() +{ + var this$1 = this; + + /** + * The first listener. All new listeners added are chained on this. + * @private + * @type {TickerListener} + */ + this._head = new TickerListener(null, null, Infinity); + + /** + * Internal current frame request ID + * @type {?number} + * @private + */ + this._requestId = null; + + /** + * Internal value managed by minFPS property setter and getter. + * This is the maximum allowed milliseconds between updates. + * @type {number} + * @private + */ + this._maxElapsedMS = 100; + + /** + * Internal value managed by maxFPS property setter and getter. + * This is the minimum allowed milliseconds between updates. + * @private + */ + this._minElapsedMS = 0; + + /** + * Whether or not this ticker should invoke the method + * {@link PIXI.Ticker#start} automatically + * when a listener is added. + * + * @member {boolean} + * @default false + */ + this.autoStart = false; + + /** + * Scalar time value from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * + * @member {number} + * @default 1 + */ + this.deltaTime = 1; + + /** + * Scaler time elapsed in milliseconds from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.deltaMS = 1 / settings.TARGET_FPMS; + + /** + * Time elapsed in milliseconds from last frame to this frame. + * Opposed to what the scalar {@link PIXI.Ticker#deltaTime} + * is based, this value is neither capped nor scaled. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.elapsedMS = 1 / settings.TARGET_FPMS; + + /** + * The last time {@link PIXI.Ticker#update} was invoked. + * This value is also reset internally outside of invoking + * update, but only when a new animation frame is requested. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * + * @member {number} + * @default -1 + */ + this.lastTime = -1; + + /** + * Factor of current {@link PIXI.Ticker#deltaTime}. + * @example + * // Scales ticker.deltaTime to what would be + * // the equivalent of approximately 120 FPS + * ticker.speed = 2; + * + * @member {number} + * @default 1 + */ + this.speed = 1; + + /** + * Whether or not this ticker has been started. + * `true` if {@link PIXI.Ticker#start} has been called. + * `false` if {@link PIXI.Ticker#stop} has been called. + * While `false`, this value may change to `true` in the + * event of {@link PIXI.Ticker#autoStart} being `true` + * and a listener is added. + * + * @member {boolean} + * @default false + */ + this.started = false; + + /** + * If enabled, deleting is disabled. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + + /** + * The last time keyframe was executed. + * Maintains a relatively fixed interval with the previous value. + * @member {number} + * @default -1 + * @private + */ + this._lastFrame = -1; + + /** + * Internal tick method bound to ticker instance. + * This is because in early 2015, Function.bind + * is still 60% slower in high performance scenarios. + * Also separating frame requests from update method + * so listeners may be called at any time and with + * any animation API, just invoke ticker.update(time). + * + * @private + * @param {number} time - Time since last tick. + */ + this._tick = function (time) { + this$1._requestId = null; + + if (this$1.started) + { + // Invoke listeners now + this$1.update(time); + // Listener side effects may have modified ticker state. + if (this$1.started && this$1._requestId === null && this$1._head.next) + { + this$1._requestId = requestAnimationFrame(this$1._tick); + } + } + }; +}; + +var prototypeAccessors$4 = { FPS: { configurable: true },minFPS: { configurable: true },maxFPS: { configurable: true } }; +var staticAccessors$2 = { shared: { configurable: true },system: { configurable: true } }; + +/** + * Conditionally requests a new animation frame. + * If a frame has not already been requested, and if the internal + * emitter has listeners, a new frame is requested. + * + * @private + */ +Ticker.prototype._requestIfNeeded = function _requestIfNeeded () +{ + if (this._requestId === null && this._head.next) + { + // ensure callbacks get correct delta + this.lastTime = performance.now(); + this._lastFrame = this.lastTime; + this._requestId = requestAnimationFrame(this._tick); + } +}; + +/** + * Conditionally cancels a pending animation frame. + * + * @private + */ +Ticker.prototype._cancelIfNeeded = function _cancelIfNeeded () +{ + if (this._requestId !== null) + { + cancelAnimationFrame(this._requestId); + this._requestId = null; + } +}; + +/** + * Conditionally requests a new animation frame. + * If the ticker has been started it checks if a frame has not already + * been requested, and if the internal emitter has listeners. If these + * conditions are met, a new frame is requested. If the ticker has not + * been started, but autoStart is `true`, then the ticker starts now, + * and continues with the previous conditions to request a new frame. + * + * @private + */ +Ticker.prototype._startIfPossible = function _startIfPossible () +{ + if (this.started) + { + this._requestIfNeeded(); + } + else if (this.autoStart) + { + this.start(); + } +}; + +/** + * Register a handler for tick events. Calls continuously unless + * it is removed or the ticker is stopped. + * + * @param {Function} fn - The listener function to be added for updates + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.add = function add (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority)); +}; + +/** + * Add a handler for the tick event which is only execute once. + * + * @param {Function} fn - The listener function to be added for one update + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.addOnce = function addOnce (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority, true)); +}; + +/** + * Internally adds the event handler so that it can be sorted by priority. + * Priority allows certain handler (user, AnimatedSprite, Interaction) to be run + * before the rendering. + * + * @private + * @param {TickerListener} listener - Current listener being added. + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype._addListener = function _addListener (listener) +{ + // For attaching to head + var current = this._head.next; + var previous = this._head; + + // Add the first item + if (!current) + { + listener.connect(previous); + } + else + { + // Go from highest to lowest priority + while (current) + { + if (listener.priority > current.priority) + { + listener.connect(previous); + break; + } + previous = current; + current = current.next; + } + + // Not yet connected + if (!listener.previous) + { + listener.connect(previous); + } + } + + this._startIfPossible(); + + return this; +}; + +/** + * Removes any handlers matching the function and context parameters. + * If no handlers are left after removing, then it cancels the animation frame. + * + * @param {Function} fn - The listener function to be removed + * @param {*} [context] - The listener context to be removed + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.remove = function remove (fn, context) +{ + var listener = this._head.next; + + while (listener) + { + // We found a match, lets remove it + // no break to delete all possible matches + // incase a listener was added 2+ times + if (listener.match(fn, context)) + { + listener = listener.destroy(); + } + else + { + listener = listener.next; + } + } + + if (!this._head.next) + { + this._cancelIfNeeded(); + } + + return this; +}; + +/** + * Starts the ticker. If the ticker has listeners + * a new animation frame is requested at this point. + */ +Ticker.prototype.start = function start () +{ + if (!this.started) + { + this.started = true; + this._requestIfNeeded(); + } +}; + +/** + * Stops the ticker. If the ticker has requested + * an animation frame it is canceled at this point. + */ +Ticker.prototype.stop = function stop () +{ + if (this.started) + { + this.started = false; + this._cancelIfNeeded(); + } +}; + +/** + * Destroy the ticker and don't use after this. Calling + * this method removes all references to internal events. + */ +Ticker.prototype.destroy = function destroy () +{ + if (!this._protected) + { + this.stop(); + + var listener = this._head.next; + + while (listener) + { + listener = listener.destroy(true); + } + + this._head.destroy(); + this._head = null; + } +}; + +/** + * Triggers an update. An update entails setting the + * current {@link PIXI.Ticker#elapsedMS}, + * the current {@link PIXI.Ticker#deltaTime}, + * invoking all listeners with current deltaTime, + * and then finally setting {@link PIXI.Ticker#lastTime} + * with the value of currentTime that was provided. + * This method will be called automatically by animation + * frame callbacks if the ticker instance has been started + * and listeners are added. + * + * @param {number} [currentTime=performance.now()] - the current time of execution + */ +Ticker.prototype.update = function update (currentTime) +{ + if ( currentTime === void 0 ) currentTime = performance.now(); + + var elapsedMS; + + // If the difference in time is zero or negative, we ignore most of the work done here. + // If there is no valid difference, then should be no reason to let anyone know about it. + // A zero delta, is exactly that, nothing should update. + // + // The difference in time can be negative, and no this does not mean time traveling. + // This can be the result of a race condition between when an animation frame is requested + // on the current JavaScript engine event loop, and when the ticker's start method is invoked + // (which invokes the internal _requestIfNeeded method). If a frame is requested before + // _requestIfNeeded is invoked, then the callback for the animation frame the ticker requests, + // can receive a time argument that can be less than the lastTime value that was set within + // _requestIfNeeded. This difference is in microseconds, but this is enough to cause problems. + // + // This check covers this browser engine timing issue, as well as if consumers pass an invalid + // currentTime value. This may happen if consumers opt-out of the autoStart, and update themselves. + + if (currentTime > this.lastTime) + { + // Save uncapped elapsedMS for measurement + elapsedMS = this.elapsedMS = currentTime - this.lastTime; + + // cap the milliseconds elapsed used for deltaTime + if (elapsedMS > this._maxElapsedMS) + { + elapsedMS = this._maxElapsedMS; + } + + elapsedMS *= this.speed; + + // If not enough time has passed, exit the function. + // Get ready for next frame by setting _lastFrame, but based on _minElapsedMS + // adjustment to ensure a relatively stable interval. + if (this._minElapsedMS) + { + var delta = currentTime - this._lastFrame | 0; + + if (delta < this._minElapsedMS) + { + return; + } + + this._lastFrame = currentTime - (delta % this._minElapsedMS); + } + + this.deltaMS = elapsedMS; + this.deltaTime = this.deltaMS * settings.TARGET_FPMS; + + // Cache a local reference, in-case ticker is destroyed + // during the emit, we can still check for head.next + var head = this._head; + + // Invoke listeners added to internal emitter + var listener = head.next; + + while (listener) + { + listener = listener.emit(this.deltaTime); + } + + if (!head.next) + { + this._cancelIfNeeded(); + } + } + else + { + this.deltaTime = this.deltaMS = this.elapsedMS = 0; + } + + this.lastTime = currentTime; +}; + +/** + * The frames per second at which this ticker is running. + * The default is approximately 60 in most modern browsers. + * **Note:** This does not factor in the value of + * {@link PIXI.Ticker#speed}, which is specific + * to scaling {@link PIXI.Ticker#deltaTime}. + * + * @member {number} + * @readonly + */ +prototypeAccessors$4.FPS.get = function () +{ + return 1000 / this.elapsedMS; +}; + +/** + * Manages the maximum amount of milliseconds allowed to + * elapse between invoking {@link PIXI.Ticker#update}. + * This value is used to cap {@link PIXI.Ticker#deltaTime}, + * but does not effect the measured value of {@link PIXI.Ticker#FPS}. + * When setting this property it is clamped to a value between + * `0` and `PIXI.settings.TARGET_FPMS * 1000`. + * + * @member {number} + * @default 10 + */ +prototypeAccessors$4.minFPS.get = function () +{ + return 1000 / this._maxElapsedMS; +}; + +prototypeAccessors$4.minFPS.set = function (fps) // eslint-disable-line require-jsdoc +{ + // Minimum must be below the maxFPS + var minFPS = Math.min(this.maxFPS, fps); + + // Must be at least 0, but below 1 / settings.TARGET_FPMS + var minFPMS = Math.min(Math.max(0, minFPS) / 1000, settings.TARGET_FPMS); + + this._maxElapsedMS = 1 / minFPMS; +}; + +/** + * Manages the minimum amount of milliseconds required to + * elapse between invoking {@link PIXI.Ticker#update}. + * This will effect the measured value of {@link PIXI.Ticker#FPS}. + * If it is set to `0`, then there is no limit; PixiJS will render as many frames as it can. + * Otherwise it will be at least `minFPS` + * + * @member {number} + * @default 0 + */ +prototypeAccessors$4.maxFPS.get = function () +{ + if (this._minElapsedMS) + { + return Math.round(1000 / this._minElapsedMS); + } + + return 0; +}; + +prototypeAccessors$4.maxFPS.set = function (fps) +{ + if (fps === 0) + { + this._minElapsedMS = 0; + } + else + { + // Max must be at least the minFPS + var maxFPS = Math.max(this.minFPS, fps); + + this._minElapsedMS = 1 / (maxFPS / 1000); + } +}; + +/** + * The shared ticker instance used by {@link PIXI.AnimatedSprite} and by + * {@link PIXI.VideoResource} to update animation frames / video textures. + * + * It may also be used by {@link PIXI.Application} if created with the `sharedTicker` option property set to true. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * Please follow the examples for usage, including how to opt-out of auto-starting the shared ticker. + * + * @example + * let ticker = PIXI.Ticker.shared; + * // Set this to prevent starting this ticker when listeners are added. + * // By default this is true only for the PIXI.Ticker.shared instance. + * ticker.autoStart = false; + * // FYI, call this to ensure the ticker is stopped. It should be stopped + * // if you have not attempted to render anything yet. + * ticker.stop(); + * // Call this when you are ready for a running shared ticker. + * ticker.start(); + * + * @example + * // You may use the shared ticker to render... + * let renderer = PIXI.autoDetectRenderer(); + * let stage = new PIXI.Container(); + * document.body.appendChild(renderer.view); + * ticker.add(function (time) { + * renderer.render(stage); + * }); + * + * @example + * // Or you can just update it manually. + * ticker.autoStart = false; + * ticker.stop(); + * function animate(time) { + * ticker.update(time); + * renderer.render(stage); + * requestAnimationFrame(animate); + * } + * animate(performance.now()); + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.shared.get = function () +{ + if (!Ticker._shared) + { + var shared = Ticker._shared = new Ticker(); + + shared.autoStart = true; + shared._protected = true; + } + + return Ticker._shared; +}; + +/** + * The system ticker instance used by {@link PIXI.interaction.InteractionManager} and by + * {@link PIXI.BasePrepare} for core timing functionality that shouldn't usually need to be paused, + * unlike the `shared` ticker which drives visual animations and rendering which may want to be paused. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.system.get = function () +{ + if (!Ticker._system) + { + var system = Ticker._system = new Ticker(); + + system.autoStart = true; + system._protected = true; + } + + return Ticker._system; +}; + +Object.defineProperties( Ticker.prototype, prototypeAccessors$4 ); +Object.defineProperties( Ticker, staticAccessors$2 ); + +/** + * Middleware for for Application Ticker. + * + * @example + * import {TickerPlugin} from '@pixi/ticker'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(TickerPlugin); + * + * @class + * @memberof PIXI + */ +var TickerPlugin = function TickerPlugin () {}; + +TickerPlugin.init = function init (options) +{ + var this$1 = this; + + // Set default + options = Object.assign({ + autoStart: true, + sharedTicker: false, + }, options); + + // Create ticker setter + Object.defineProperty(this, 'ticker', + { + set: function set(ticker) + { + if (this._ticker) + { + this._ticker.remove(this.render, this); + } + this._ticker = ticker; + if (ticker) + { + ticker.add(this.render, this, UPDATE_PRIORITY.LOW); + } + }, + get: function get() + { + return this._ticker; + }, + }); + + /** + * Convenience method for stopping the render. + * + * @method PIXI.Application#stop + */ + this.stop = function () { + this$1._ticker.stop(); + }; + + /** + * Convenience method for starting the render. + * + * @method PIXI.Application#start + */ + this.start = function () { + this$1._ticker.start(); + }; + + /** + * Internal reference to the ticker. + * + * @type {PIXI.Ticker} + * @name _ticker + * @memberof PIXI.Application# + * @private + */ + this._ticker = null; + + /** + * Ticker for doing render updates. + * + * @type {PIXI.Ticker} + * @name ticker + * @memberof PIXI.Application# + * @default PIXI.Ticker.shared + */ + this.ticker = options.sharedTicker ? Ticker.shared : new Ticker(); + + // Start the rendering + if (options.autoStart) + { + this.start(); + } +}; + +/** + * Clean up the ticker, scoped to application. + * + * @static + * @private + */ +TickerPlugin.destroy = function destroy () +{ + if (this._ticker) + { + var oldTicker = this._ticker; + + this.ticker = null; + oldTicker.destroy(); + } +}; + +/*! + * @pixi/core - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/core is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Base resource class for textures that manages validation and uploading, depending on its type. + * + * Uploading of a base texture to the GPU is required. + * + * @class + * @memberof PIXI.resources + */ +var Resource = function Resource(width, height) +{ + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * Internal width of the resource + * @member {number} + * @protected + */ + this._width = width; + + /** + * Internal height of the resource + * @member {number} + * @protected + */ + this._height = height; + + /** + * If resource has been destroyed + * @member {boolean} + * @readonly + * @default false + */ + this.destroyed = false; + + /** + * `true` if resource is created by BaseTexture + * useful for doing cleanup with BaseTexture destroy + * and not cleaning up resources that were created + * externally. + * @member {boolean} + * @protected + */ + this.internal = false; + + /** + * Mini-runner for handling resize events + * + * @member {Runner} + * @private + */ + this.onResize = new Runner('setRealSize', 2); + + /** + * Mini-runner for handling update events + * + * @member {Runner} + * @private + */ + this.onUpdate = new Runner('update'); + + /** + * Handle internal errors, such as loading errors + * + * @member {Runner} + * @private + */ + this.onError = new Runner('onError', 1); +}; + +var prototypeAccessors$5 = { valid: { configurable: true },width: { configurable: true },height: { configurable: true } }; + +/** + * Bind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.bind = function bind (baseTexture) +{ + this.onResize.add(baseTexture); + this.onUpdate.add(baseTexture); + this.onError.add(baseTexture); + + // Call a resize immediate if we already + // have the width and height of the resource + if (this._width || this._height) + { + this.onResize.run(this._width, this._height); + } +}; + +/** + * Unbind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.unbind = function unbind (baseTexture) +{ + this.onResize.remove(baseTexture); + this.onUpdate.remove(baseTexture); + this.onError.remove(baseTexture); +}; + +/** + * Trigger a resize event + * @param {number} width X dimension + * @param {number} height Y dimension + */ +Resource.prototype.resize = function resize (width, height) +{ + if (width !== this._width || height !== this._height) + { + this._width = width; + this._height = height; + this.onResize.run(width, height); + } +}; + +/** + * Has been validated + * @readonly + * @member {boolean} + */ +prototypeAccessors$5.valid.get = function () +{ + return !!this._width && !!this._height; +}; + +/** + * Has been updated trigger event + */ +Resource.prototype.update = function update () +{ + if (!this.destroyed) + { + this.onUpdate.run(); + } +}; + +/** + * This can be overridden to start preloading a resource + * or do any other prepare step. + * @protected + * @return {Promise} Handle the validate event + */ +Resource.prototype.load = function load () +{ + return Promise.resolve(); +}; + +/** + * The width of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.width.get = function () +{ + return this._width; +}; + +/** + * The height of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.height.get = function () +{ + return this._height; +}; + +/** + * Uploads the texture or returns false if it cant for some reason. Override this. + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} true is success + */ +Resource.prototype.upload = function upload (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Set the style, optional to override + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} `true` is success + */ +Resource.prototype.style = function style (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Clean up anything, this happens when destroying is ready. + * + * @protected + */ +Resource.prototype.dispose = function dispose () +{ + // override +}; + +/** + * Call when destroying resource, unbind any BaseTexture object + * before calling this method, as reference counts are maintained + * internally. + */ +Resource.prototype.destroy = function destroy () +{ + if (!this.destroyed) + { + this.destroyed = true; + this.dispose(); + this.onError.removeAll(); + this.onError = null; + this.onResize.removeAll(); + this.onResize = null; + this.onUpdate.removeAll(); + this.onUpdate = null; + } +}; + +Object.defineProperties( Resource.prototype, prototypeAccessors$5 ); + +/** + * Base for all the image/canvas resources + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BaseImageResource = /*@__PURE__*/(function (Resource) { + function BaseImageResource(source) + { + var width = source.naturalWidth || source.videoWidth || source.width; + var height = source.naturalHeight || source.videoHeight || source.height; + + Resource.call(this, width, height); + + /** + * The source element + * @member {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} + * @readonly + */ + this.source = source; + + /** + * If set to `true`, will force `texImage2D` over `texSubImage2D` for uploading. + * Certain types of media (e.g. video) using `texImage2D` is more performant. + * @member {boolean} + * @default false + * @private + */ + this.noSubImage = false; + } + + if ( Resource ) BaseImageResource.__proto__ = Resource; + BaseImageResource.prototype = Object.create( Resource && Resource.prototype ); + BaseImageResource.prototype.constructor = BaseImageResource; + + /** + * Set cross origin based detecting the url and the crossorigin + * @protected + * @param {HTMLElement} element - Element to apply crossOrigin + * @param {string} url - URL to check + * @param {boolean|string} [crossorigin=true] - Cross origin value to use + */ + BaseImageResource.crossOrigin = function crossOrigin (element, url, crossorigin) + { + if (crossorigin === undefined && url.indexOf('data:') !== 0) + { + element.crossOrigin = determineCrossOrigin(url); + } + else if (crossorigin !== false) + { + element.crossOrigin = typeof crossorigin === 'string' ? crossorigin : 'anonymous'; + } + }; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture + * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} [source] (optional) + * @returns {boolean} true is success + */ + BaseImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture, source) + { + var gl = renderer.gl; + var width = baseTexture.realWidth; + var height = baseTexture.realHeight; + + source = source || this.source; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (!this.noSubImage + && baseTexture.target === gl.TEXTURE_2D + && glTexture.width === width + && glTexture.height === height) + { + gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, baseTexture.format, baseTexture.type, source); + } + else + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(baseTexture.target, 0, baseTexture.format, baseTexture.format, baseTexture.type, source); + } + + return true; + }; + + /** + * Checks if source width/height was changed, resize can cause extra baseTexture update. + * Triggers one update in any case. + */ + BaseImageResource.prototype.update = function update () + { + if (this.destroyed) + { + return; + } + + var width = this.source.naturalWidth || this.source.videoWidth || this.source.width; + var height = this.source.naturalHeight || this.source.videoHeight || this.source.height; + + this.resize(width, height); + + Resource.prototype.update.call(this); + }; + + /** + * Destroy this BaseImageResource + * @override + * @param {PIXI.BaseTexture} [fromTexture] Optional base texture + * @return {boolean} Destroy was successful + */ + BaseImageResource.prototype.dispose = function dispose () + { + this.source = null; + }; + + return BaseImageResource; +}(Resource)); + +/** + * Resource type for HTMLImageElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + */ +var ImageResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLImageElement)) + { + var imageElement = new Image(); + + BaseImageResource.crossOrigin(imageElement, source, options.crossorigin); + + imageElement.src = source; + source = imageElement; + } + + BaseImageResource.call(this, source); + + // FireFox 68, and possibly other versions, seems like setting the HTMLImageElement#width and #height + // to non-zero values before its loading completes if images are in a cache. + // Because of this, need to set the `_width` and the `_height` to zero to avoid uploading incomplete images. + // Please refer to the issue #5968 (https://github.com/pixijs/pixi.js/issues/5968). + if (!source.complete && !!this._width && !!this._height) + { + this._width = 0; + this._height = 0; + } + + /** + * URL of the image source + * @member {string} + */ + this.url = source.src; + + /** + * When process is completed + * @member {Promise} + * @private + */ + this._process = null; + + /** + * If the image should be disposed after upload + * @member {boolean} + * @default false + */ + this.preserveBitmap = false; + + /** + * If capable, convert the image using createImageBitmap API + * @member {boolean} + * @default PIXI.settings.CREATE_IMAGE_BITMAP + */ + this.createBitmap = (options.createBitmap !== undefined + ? options.createBitmap : settings.CREATE_IMAGE_BITMAP) && !!window.createImageBitmap; + + /** + * Controls texture premultiplyAlpha field + * Copies from options + * @member {boolean|null} + * @readonly + */ + this.premultiplyAlpha = options.premultiplyAlpha !== false; + + /** + * The ImageBitmap element created for HTMLImageElement + * @member {ImageBitmap} + * @default null + */ + this.bitmap = null; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) ImageResource.__proto__ = BaseImageResource; + ImageResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageResource.prototype.constructor = ImageResource; + + /** + * returns a promise when image will be loaded and processed + * + * @param {boolean} [createBitmap=true] whether process image into bitmap + * @returns {Promise} + */ + ImageResource.prototype.load = function load (createBitmap) + { + var this$1 = this; + + if (createBitmap !== undefined) + { + this.createBitmap = createBitmap; + } + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + this$1.url = this$1.source.src; + var ref = this$1; + var source = ref.source; + + var completed = function () { + if (this$1.destroyed) + { + return; + } + source.onload = null; + source.onerror = null; + + this$1.resize(source.width, source.height); + this$1._load = null; + + if (this$1.createBitmap) + { + resolve(this$1.process()); + } + else + { + resolve(this$1); + } + }; + + if (source.complete && source.src) + { + completed(); + } + else + { + source.onload = completed; + source.onerror = function (event) { return this$1.onError.run(event); }; + } + }); + + return this._load; + }; + + /** + * Called when we need to convert image into BitmapImage. + * Can be called multiple times, real promise is cached inside. + * + * @returns {Promise} cached promise to fill that bitmap + */ + ImageResource.prototype.process = function process () + { + var this$1 = this; + + if (this._process !== null) + { + return this._process; + } + if (this.bitmap !== null || !window.createImageBitmap) + { + return Promise.resolve(this); + } + + this._process = window.createImageBitmap(this.source, + 0, 0, this.source.width, this.source.height, + { + premultiplyAlpha: this.premultiplyAlpha ? 'premultiply' : 'none', + }) + .then(function (bitmap) { + if (this$1.destroyed) + { + return Promise.reject(); + } + this$1.bitmap = bitmap; + this$1.update(); + this$1._process = null; + + return Promise.resolve(this$1); + }); + + return this._process; + }; + + /** + * Upload the image resource to GPU. + * + * @param {PIXI.Renderer} renderer - Renderer to upload to + * @param {PIXI.BaseTexture} baseTexture - BaseTexture for this resource + * @param {PIXI.GLTexture} glTexture - GLTexture to use + * @returns {boolean} true is success + */ + ImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + baseTexture.premultiplyAlpha = this.premultiplyAlpha; + + if (!this.createBitmap) + { + return BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture); + } + if (!this.bitmap) + { + // yeah, ignore the output + this.process(); + if (!this.bitmap) + { + return false; + } + } + + BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture, this.bitmap); + + if (!this.preserveBitmap) + { + // checks if there are other renderers that possibly need this bitmap + + var flag = true; + + for (var key in baseTexture._glTextures) + { + var otherTex = baseTexture._glTextures[key]; + + if (otherTex !== glTexture && otherTex.dirtyId !== baseTexture.dirtyId) + { + flag = false; + break; + } + } + + if (flag) + { + if (this.bitmap.close) + { + this.bitmap.close(); + } + + this.bitmap = null; + } + } + + return true; + }; + + /** + * Destroys this texture + * @override + */ + ImageResource.prototype.dispose = function dispose () + { + this.source.onload = null; + this.source.onerror = null; + + BaseImageResource.prototype.dispose.call(this); + + if (this.bitmap) + { + this.bitmap.close(); + this.bitmap = null; + } + this._process = null; + this._load = null; + }; + + return ImageResource; +}(BaseImageResource)); + +/** + * Collection of installed resource types, class must extend {@link PIXI.resources.Resource}. + * @example + * class CustomResource extends PIXI.resources.Resource { + * // MUST have source, options constructor signature + * // for auto-detected resources to be created. + * constructor(source, options) { + * super(); + * } + * upload(renderer, baseTexture, glTexture) { + * // upload with GL + * return true; + * } + * // used to auto-detect resource + * static test(source, extension) { + * return extension === 'xyz'|| source instanceof SomeClass; + * } + * } + * // Install the new resource type + * PIXI.resources.INSTALLED.push(CustomResource); + * + * @name PIXI.resources.INSTALLED + * @type {Array<*>} + * @static + * @readonly + */ +var INSTALLED = []; + +/** + * Create a resource element from a single source element. This + * auto-detects which type of resource to create. All resources that + * are auto-detectable must have a static `test` method and a constructor + * with the arguments `(source, options?)`. Currently, the supported + * resources for auto-detection include: + * - {@link PIXI.resources.ImageResource} + * - {@link PIXI.resources.CanvasResource} + * - {@link PIXI.resources.VideoResource} + * - {@link PIXI.resources.SVGResource} + * - {@link PIXI.resources.BufferResource} + * @static + * @function PIXI.resources.autoDetectResource + * @param {string|*} source - Resource source, this can be the URL to the resource, + * a typed-array (for BufferResource), HTMLVideoElement, SVG data-uri + * or any other resource that can be auto-detected. If not resource is + * detected, it's assumed to be an ImageResource. + * @param {object} [options] - Pass-through options to use for Resource + * @param {number} [options.width] - Width of BufferResource or SVG rasterization + * @param {number} [options.height] - Height of BufferResource or SVG rasterization + * @param {boolean} [options.autoLoad=true] - Image, SVG and Video flag to start loading + * @param {number} [options.scale=1] - SVG source scale. Overridden by width, height + * @param {boolean} [options.createBitmap=PIXI.settings.CREATE_IMAGE_BITMAP] - Image option to create Bitmap object + * @param {boolean} [options.crossorigin=true] - Image and Video option to set crossOrigin + * @param {boolean} [options.autoPlay=true] - Video option to start playing video immediately + * @param {number} [options.updateFPS=0] - Video option to update how many times a second the + * texture should be updated from the video. Leave at 0 to update at every render + * @return {PIXI.resources.Resource} The created resource. + */ +function autoDetectResource(source, options) +{ + if (!source) + { + return null; + } + + var extension = ''; + + if (typeof source === 'string') + { + // search for file extension: period, 3-4 chars, then ?, # or EOL + var result = (/\.(\w{3,4})(?:$|\?|#)/i).exec(source); + + if (result) + { + extension = result[1].toLowerCase(); + } + } + + for (var i = INSTALLED.length - 1; i >= 0; --i) + { + var ResourcePlugin = INSTALLED[i]; + + if (ResourcePlugin.test && ResourcePlugin.test(source, extension)) + { + return new ResourcePlugin(source, options); + } + } + + // When in doubt: probably an image + // might be appropriate to throw an error or return null + return new ImageResource(source, options); +} + +/** + * @interface SharedArrayBuffer + */ + +/** + * Buffer resource with data of typed array. + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BufferResource = /*@__PURE__*/(function (Resource) { + function BufferResource(source, options) + { + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + if (!width || !height) + { + throw new Error('BufferResource width or height invalid'); + } + + Resource.call(this, width, height); + + /** + * Source array + * Cannot be ClampedUint8Array because it cant be uploaded to WebGL + * + * @member {Float32Array|Uint8Array|Uint32Array} + */ + this.data = source; + } + + if ( Resource ) BufferResource.__proto__ = Resource; + BufferResource.prototype = Object.create( Resource && Resource.prototype ); + BufferResource.prototype.constructor = BufferResource; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture glTexture + * @returns {boolean} true is success + */ + BufferResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + glTexture.internalFormat, + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + glTexture.type, + this.data + ); + } + + return true; + }; + + /** + * Destroy and don't use after this + * @override + */ + BufferResource.prototype.dispose = function dispose () + { + this.data = null; + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @return {boolean} `true` if + */ + BufferResource.test = function test (source) + { + return source instanceof Float32Array + || source instanceof Uint8Array + || source instanceof Uint32Array; + }; + + return BufferResource; +}(Resource)); + +var defaultBufferOptions = { + scaleMode: SCALE_MODES.NEAREST, + format: FORMATS.RGBA, + premultiplyAlpha: false, +}; + +/** + * A Texture stores the information that represents an image. + * All textures have a base texture, which contains information about the source. + * Therefore you can have many textures all using a single BaseTexture + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + * @param {PIXI.resources.Resource|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} [resource=null] + * The current resource to use, for things that aren't Resource objects, will be converted + * into a Resource. + * @param {Object} [options] - Collection of options + * @param {PIXI.MIPMAP_MODES} [options.mipmap=PIXI.settings.MIPMAP_TEXTURES] - If mipmapping is enabled for texture + * @param {number} [options.anisotropicLevel=PIXI.settings.ANISOTROPIC_LEVEL] - Anisotropic filtering level of texture + * @param {PIXI.WRAP_MODES} [options.wrapMode=PIXI.settings.WRAP_MODE] - Wrap mode for textures + * @param {PIXI.SCALE_MODES} [options.scaleMode=PIXI.settings.SCALE_MODE] - Default scale mode, linear, nearest + * @param {PIXI.FORMATS} [options.format=PIXI.FORMATS.RGBA] - GL format type + * @param {PIXI.TYPES} [options.type=PIXI.TYPES.UNSIGNED_BYTE] - GL data type + * @param {PIXI.TARGETS} [options.target=PIXI.TARGETS.TEXTURE_2D] - GL texture target + * @param {boolean} [options.premultiplyAlpha=true] - Pre multiply the image alpha + * @param {number} [options.width=0] - Width of the texture + * @param {number} [options.height=0] - Height of the texture + * @param {number} [options.resolution] - Resolution of the base texture + * @param {object} [options.resourceOptions] - Optional resource options, + * see {@link PIXI.resources.autoDetectResource autoDetectResource} + */ +var BaseTexture = /*@__PURE__*/(function (EventEmitter) { + function BaseTexture(resource, options) + { + if ( resource === void 0 ) resource = null; + if ( options === void 0 ) options = null; + + EventEmitter.call(this); + + options = options || {}; + + var premultiplyAlpha = options.premultiplyAlpha; + var mipmap = options.mipmap; + var anisotropicLevel = options.anisotropicLevel; + var scaleMode = options.scaleMode; + var width = options.width; + var height = options.height; + var wrapMode = options.wrapMode; + var format = options.format; + var type = options.type; + var target = options.target; + var resolution = options.resolution; + var resourceOptions = options.resourceOptions; + + // Convert the resource to a Resource object + if (resource && !(resource instanceof Resource)) + { + resource = autoDetectResource(resource, resourceOptions); + resource.internal = true; + } + + /** + * The width of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.width = width || 0; + + /** + * The height of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.height = height || 0; + + /** + * The resolution / device pixel ratio of the texture + * + * @member {number} + * @default PIXI.settings.RESOLUTION + */ + this.resolution = resolution || settings.RESOLUTION; + + /** + * Mipmap mode of the texture, affects downscaled images + * + * @member {PIXI.MIPMAP_MODES} + * @default PIXI.settings.MIPMAP_TEXTURES + */ + this.mipmap = mipmap !== undefined ? mipmap : settings.MIPMAP_TEXTURES; + + /** + * Anisotropic filtering level of texture + * + * @member {number} + * @default PIXI.settings.ANISOTROPIC_LEVEL + */ + this.anisotropicLevel = anisotropicLevel !== undefined ? anisotropicLevel : settings.ANISOTROPIC_LEVEL; + + /** + * How the texture wraps + * @member {number} + */ + this.wrapMode = wrapMode || settings.WRAP_MODE; + + /** + * The scale mode to apply when scaling this texture + * + * @member {PIXI.SCALE_MODES} + * @default PIXI.settings.SCALE_MODE + */ + this.scaleMode = scaleMode !== undefined ? scaleMode : settings.SCALE_MODE; + + /** + * The pixel format of the texture + * + * @member {PIXI.FORMATS} + * @default PIXI.FORMATS.RGBA + */ + this.format = format || FORMATS.RGBA; + + /** + * The type of resource data + * + * @member {PIXI.TYPES} + * @default PIXI.TYPES.UNSIGNED_BYTE + */ + this.type = type || TYPES.UNSIGNED_BYTE; + + /** + * The target type + * + * @member {PIXI.TARGETS} + * @default PIXI.TARGETS.TEXTURE_2D + */ + this.target = target || TARGETS.TEXTURE_2D; + + /** + * Set to true to enable pre-multiplied alpha + * + * @member {boolean} + * @default true + */ + this.premultiplyAlpha = premultiplyAlpha !== false; + + /** + * Global unique identifier for this BaseTexture + * + * @member {string} + * @protected + */ + this.uid = uid(); + + /** + * Used by automatic texture Garbage Collection, stores last GC tick when it was bound + * + * @member {number} + * @protected + */ + this.touched = 0; + + /** + * Whether or not the texture is a power of two, try to use power of two textures as much + * as you can + * + * @readonly + * @member {boolean} + * @default false + */ + this.isPowerOfTwo = false; + this._refreshPOT(); + + /** + * The map of render context textures where this is bound + * + * @member {Object} + * @private + */ + this._glTextures = {}; + + /** + * Used by TextureSystem to only update texture to the GPU when needed. + * Please call `update()` to increment it. + * + * @readonly + * @member {number} + */ + this.dirtyId = 0; + + /** + * Used by TextureSystem to only update texture style when needed. + * + * @protected + * @member {number} + */ + this.dirtyStyleId = 0; + + /** + * Currently default cache ID. + * + * @member {string} + */ + this.cacheId = null; + + /** + * Generally speaking means when resource is loaded. + * @readonly + * @member {boolean} + */ + this.valid = width > 0 && height > 0; + + /** + * The collection of alternative cache ids, since some BaseTextures + * can have more than one ID, short name and longer full URL + * + * @member {Array} + * @readonly + */ + this.textureCacheIds = []; + + /** + * Flag if BaseTexture has been destroyed. + * + * @member {boolean} + * @readonly + */ + this.destroyed = false; + + /** + * The resource used by this BaseTexture, there can only + * be one resource per BaseTexture, but textures can share + * resources. + * + * @member {PIXI.resources.Resource} + * @readonly + */ + this.resource = null; + + /** + * Number of the texture batch, used by multi-texture renderers + * + * @member {number} + */ + this._batchEnabled = 0; + + /** + * Fired when a not-immediately-available source finishes loading. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when a not-immediately-available source fails to load. + * + * @protected + * @event PIXI.BaseTexture#error + * @param {PIXI.BaseTexture} baseTexture - Resource errored. + * @param {ErrorEvent} event - Load error event. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#update + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being updated. + */ + + /** + * Fired when BaseTexture is destroyed. + * + * @protected + * @event PIXI.BaseTexture#dispose + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being destroyed. + */ + + // Set the resource + this.setResource(resource); + } + + if ( EventEmitter ) BaseTexture.__proto__ = EventEmitter; + BaseTexture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + BaseTexture.prototype.constructor = BaseTexture; + + var prototypeAccessors = { realWidth: { configurable: true },realHeight: { configurable: true } }; + + /** + * Pixel width of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realWidth.get = function () + { + return Math.ceil((this.width * this.resolution) - 1e-4); + }; + + /** + * Pixel height of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realHeight.get = function () + { + return Math.ceil((this.height * this.resolution) - 1e-4); + }; + + /** + * Changes style options of BaseTexture + * + * @param {PIXI.SCALE_MODES} [scaleMode] - Pixi scalemode + * @param {PIXI.MIPMAP_MODES} [mipmap] - enable mipmaps + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setStyle = function setStyle (scaleMode, mipmap) + { + var dirty; + + if (scaleMode !== undefined && scaleMode !== this.scaleMode) + { + this.scaleMode = scaleMode; + dirty = true; + } + + if (mipmap !== undefined && mipmap !== this.mipmap) + { + this.mipmap = mipmap; + dirty = true; + } + + if (dirty) + { + this.dirtyStyleId++; + } + + return this; + }; + + /** + * Changes w/h/resolution. Texture becomes valid if width and height are greater than zero. + * + * @param {number} width Visual width + * @param {number} height Visual height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setSize = function setSize (width, height, resolution) + { + this.resolution = resolution || this.resolution; + this.width = width; + this.height = height; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Sets real size of baseTexture, preserves current resolution. + * + * @param {number} realWidth Full rendered width + * @param {number} realHeight Full rendered height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setRealSize = function setRealSize (realWidth, realHeight, resolution) + { + this.resolution = resolution || this.resolution; + this.width = realWidth / this.resolution; + this.height = realHeight / this.resolution; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Refresh check for isPowerOfTwo texture based on size + * + * @private + */ + BaseTexture.prototype._refreshPOT = function _refreshPOT () + { + this.isPowerOfTwo = isPow2(this.realWidth) && isPow2(this.realHeight); + }; + + /** + * Changes resolution + * + * @param {number} [resolution] res + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResolution = function setResolution (resolution) + { + var oldResolution = this.resolution; + + if (oldResolution === resolution) + { + return this; + } + + this.resolution = resolution; + + if (this.valid) + { + this.width = this.width * oldResolution / resolution; + this.height = this.height * oldResolution / resolution; + this.emit('update', this); + } + + this._refreshPOT(); + + return this; + }; + + /** + * Sets the resource if it wasn't set. Throws error if resource already present + * + * @param {PIXI.resources.Resource} resource - that is managing this BaseTexture + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResource = function setResource (resource) + { + if (this.resource === resource) + { + return this; + } + + if (this.resource) + { + throw new Error('Resource can be set only once'); + } + + resource.bind(this); + + this.resource = resource; + + return this; + }; + + /** + * Invalidates the object. Texture becomes valid if width and height are greater than zero. + */ + BaseTexture.prototype.update = function update () + { + if (!this.valid) + { + if (this.width > 0 && this.height > 0) + { + this.valid = true; + this.emit('loaded', this); + this.emit('update', this); + } + } + else + { + this.dirtyId++; + this.dirtyStyleId++; + this.emit('update', this); + } + }; + + /** + * Handle errors with resources. + * @private + * @param {ErrorEvent} event - Error event emitted. + */ + BaseTexture.prototype.onError = function onError (event) + { + this.emit('error', this, event); + }; + + /** + * Destroys this base texture. + * The method stops if resource doesn't want this texture to be destroyed. + * Removes texture from all caches. + */ + BaseTexture.prototype.destroy = function destroy () + { + // remove and destroy the resource + if (this.resource) + { + this.resource.unbind(this); + // only destroy resourced created internally + if (this.resource.internal) + { + this.resource.destroy(); + } + this.resource = null; + } + + if (this.cacheId) + { + delete BaseTextureCache[this.cacheId]; + delete TextureCache[this.cacheId]; + + this.cacheId = null; + } + + // finally let the WebGL renderer know.. + this.dispose(); + + BaseTexture.removeFromCache(this); + this.textureCacheIds = null; + + this.destroyed = true; + }; + + /** + * Frees the texture from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseTexture.prototype.dispose = function dispose () + { + this.emit('dispose', this); + }; + + /** + * Helper function that creates a base texture based on the source you provide. + * The source can be - image url, image element, canvas element. If the + * source is an image url or an image element and not in the base texture + * cache, it will be created and loaded. + * + * @static + * @param {string|HTMLImageElement|HTMLCanvasElement|SVGElement|HTMLVideoElement} source - The + * source to create base texture from. + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @returns {PIXI.BaseTexture} The new base texture. + */ + BaseTexture.from = function from (source, options) + { + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var baseTexture = BaseTextureCache[cacheId]; + + if (!baseTexture) + { + baseTexture = new BaseTexture(source, options); + baseTexture.cacheId = cacheId; + BaseTexture.addToCache(baseTexture, cacheId); + } + + return baseTexture; + }; + + /** + * Create a new BaseTexture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.BaseTexture} The resulting new BaseTexture + */ + BaseTexture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + buffer = buffer || new Float32Array(width * height * 4); + + var resource = new BufferResource(buffer, { width: width, height: height }); + var type = buffer instanceof Float32Array ? TYPES.FLOAT : TYPES.UNSIGNED_BYTE; + + return new BaseTexture(resource, Object.assign(defaultBufferOptions, options || { width: width, height: height, type: type })); + }; + + /** + * Adds a BaseTexture to the global BaseTextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.BaseTexture} baseTexture - The BaseTexture to add to the cache. + * @param {string} id - The id that the BaseTexture will be stored against. + */ + BaseTexture.addToCache = function addToCache (baseTexture, id) + { + if (id) + { + if (baseTexture.textureCacheIds.indexOf(id) === -1) + { + baseTexture.textureCacheIds.push(id); + } + + if (BaseTextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("BaseTexture added to the cache with an id [" + id + "] that already had an entry")); + } + + BaseTextureCache[id] = baseTexture; + } + }; + + /** + * Remove a BaseTexture from the global BaseTextureCache. + * + * @static + * @param {string|PIXI.BaseTexture} baseTexture - id of a BaseTexture to be removed, or a BaseTexture instance itself. + * @return {PIXI.BaseTexture|null} The BaseTexture that was removed. + */ + BaseTexture.removeFromCache = function removeFromCache (baseTexture) + { + if (typeof baseTexture === 'string') + { + var baseTextureFromCache = BaseTextureCache[baseTexture]; + + if (baseTextureFromCache) + { + var index = baseTextureFromCache.textureCacheIds.indexOf(baseTexture); + + if (index > -1) + { + baseTextureFromCache.textureCacheIds.splice(index, 1); + } + + delete BaseTextureCache[baseTexture]; + + return baseTextureFromCache; + } + } + else if (baseTexture && baseTexture.textureCacheIds) + { + for (var i = 0; i < baseTexture.textureCacheIds.length; ++i) + { + delete BaseTextureCache[baseTexture.textureCacheIds[i]]; + } + + baseTexture.textureCacheIds.length = 0; + + return baseTexture; + } + + return null; + }; + + Object.defineProperties( BaseTexture.prototype, prototypeAccessors ); + + return BaseTexture; +}(eventemitter3)); + +/** + * Global number of the texture batch, used by multi-texture renderers + * + * @static + * @member {number} + */ +BaseTexture._globalBatch = 0; + +/** + * A resource that contains a number of sources. + * + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + * @param {number|Array<*>} source - Number of items in array or the collection + * of image URLs to use. Can also be resources, image elements, canvas, etc. + * @param {object} [options] Options to apply to {@link PIXI.resources.autoDetectResource} + * @param {number} [options.width] - Width of the resource + * @param {number} [options.height] - Height of the resource + */ +var ArrayResource = /*@__PURE__*/(function (Resource) { + function ArrayResource(source, options) + { + options = options || {}; + + var urls; + var length = source; + + if (Array.isArray(source)) + { + urls = source; + length = source.length; + } + + Resource.call(this, options.width, options.height); + + /** + * Collection of resources. + * @member {Array} + * @readonly + */ + this.items = []; + + /** + * Dirty IDs for each part + * @member {Array} + * @readonly + */ + this.itemDirtyIds = []; + + for (var i = 0; i < length; i++) + { + var partTexture = new BaseTexture(); + + this.items.push(partTexture); + this.itemDirtyIds.push(-1); + } + + /** + * Number of elements in array + * + * @member {number} + * @readonly + */ + this.length = length; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (urls) + { + for (var i$1 = 0; i$1 < length; i$1++) + { + this.addResourceAt(autoDetectResource(urls[i$1], options), i$1); + } + } + } + + if ( Resource ) ArrayResource.__proto__ = Resource; + ArrayResource.prototype = Object.create( Resource && Resource.prototype ); + ArrayResource.prototype.constructor = ArrayResource; + + /** + * Destroy this BaseImageResource + * @override + */ + ArrayResource.prototype.dispose = function dispose () + { + for (var i = 0, len = this.length; i < len; i++) + { + this.items[i].destroy(); + } + this.items = null; + this.itemDirtyIds = null; + this._load = null; + }; + + /** + * Set a resource by ID + * + * @param {PIXI.resources.Resource} resource + * @param {number} index - Zero-based index of resource to set + * @return {PIXI.resources.ArrayResource} Instance for chaining + */ + ArrayResource.prototype.addResourceAt = function addResourceAt (resource, index) + { + var baseTexture = this.items[index]; + + if (!baseTexture) + { + throw new Error(("Index " + index + " is out of bounds")); + } + + // Inherit the first resource dimensions + if (resource.valid && !this.valid) + { + this.resize(resource.width, resource.height); + } + + this.items[index].setResource(resource); + + return this; + }; + + /** + * Set the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.bind = function bind (baseTexture) + { + Resource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_2D_ARRAY; + + for (var i = 0; i < this.length; i++) + { + this.items[i].on('update', baseTexture.update, baseTexture); + } + }; + + /** + * Unset the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.unbind = function unbind (baseTexture) + { + Resource.prototype.unbind.call(this, baseTexture); + + for (var i = 0; i < this.length; i++) + { + this.items[i].off('update', baseTexture.update, baseTexture); + } + }; + + /** + * Load all the resources simultaneously + * @override + * @return {Promise} When load is resolved + */ + ArrayResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var resources = this.items.map(function (item) { return item.resource; }); + + // TODO: also implement load part-by-part strategy + var promises = resources.map(function (item) { return item.load(); }); + + this._load = Promise.all(promises) + .then(function () { + var ref = resources[0]; + var width = ref.width; + var height = ref.height; + + this$1.resize(width, height); + + return Promise.resolve(this$1); + } + ); + + return this._load; + }; + + /** + * Upload the resources to the GPU. + * @param {PIXI.Renderer} renderer + * @param {PIXI.BaseTexture} texture + * @param {PIXI.GLTexture} glTexture + * @returns {boolean} whether texture was uploaded + */ + ArrayResource.prototype.upload = function upload (renderer, texture, glTexture) + { + var ref = this; + var length = ref.length; + var itemDirtyIds = ref.itemDirtyIds; + var items = ref.items; + var gl = renderer.gl; + + if (glTexture.dirtyId < 0) + { + gl.texImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + texture.format, + this._width, + this._height, + length, + 0, + texture.format, + texture.type, + null + ); + } + + for (var i = 0; i < length; i++) + { + var item = items[i]; + + if (itemDirtyIds[i] < item.dirtyId) + { + itemDirtyIds[i] = item.dirtyId; + if (item.valid) + { + gl.texSubImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + 0, // xoffset + 0, // yoffset + i, // zoffset + item.resource.width, + item.resource.height, + 1, + texture.format, + texture.type, + item.resource.source + ); + } + } + } + + return true; + }; + + return ArrayResource; +}(Resource)); + +/** + * @interface OffscreenCanvas + */ + +/** + * Resource type for HTMLCanvasElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLCanvasElement} source - Canvas element to use + */ +var CanvasResource = /*@__PURE__*/(function (BaseImageResource) { + function CanvasResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) CanvasResource.__proto__ = BaseImageResource; + CanvasResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + CanvasResource.prototype.constructor = CanvasResource; + + CanvasResource.test = function test (source) + { + var OffscreenCanvas = window.OffscreenCanvas; + + // Check for browsers that don't yet support OffscreenCanvas + if (OffscreenCanvas && source instanceof OffscreenCanvas) + { + return true; + } + + return source instanceof HTMLCanvasElement; + }; + + return CanvasResource; +}(BaseImageResource)); + +/** + * Resource for a CubeTexture which contains six resources. + * + * @class + * @extends PIXI.resources.ArrayResource + * @memberof PIXI.resources + * @param {Array} [source] Collection of URLs or resources + * to use as the sides of the cube. + * @param {object} [options] - ImageResource options + * @param {number} [options.width] - Width of resource + * @param {number} [options.height] - Height of resource + */ +var CubeResource = /*@__PURE__*/(function (ArrayResource) { + function CubeResource(source, options) + { + options = options || {}; + + ArrayResource.call(this, source, options); + + if (this.length !== CubeResource.SIDES) + { + throw new Error(("Invalid length. Got " + (this.length) + ", expected 6")); + } + + for (var i = 0; i < CubeResource.SIDES; i++) + { + this.items[i].target = TARGETS.TEXTURE_CUBE_MAP_POSITIVE_X + i; + } + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( ArrayResource ) CubeResource.__proto__ = ArrayResource; + CubeResource.prototype = Object.create( ArrayResource && ArrayResource.prototype ); + CubeResource.prototype.constructor = CubeResource; + + /** + * Add binding + * + * @override + * @param {PIXI.BaseTexture} baseTexture - parent base texture + */ + CubeResource.prototype.bind = function bind (baseTexture) + { + ArrayResource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_CUBE_MAP; + }; + + /** + * Upload the resource + * + * @returns {boolean} true is success + */ + CubeResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var dirty = this.itemDirtyIds; + + for (var i = 0; i < CubeResource.SIDES; i++) + { + var side = this.items[i]; + + if (dirty[i] < side.dirtyId) + { + dirty[i] = side.dirtyId; + if (side.valid) + { + side.resource.upload(renderer, side, glTexture); + } + } + } + + return true; + }; + + return CubeResource; +}(ArrayResource)); + +/** + * Number of texture sides to store for CubeResources + * + * @name PIXI.resources.CubeResource.SIDES + * @static + * @member {number} + * @default 6 + */ +CubeResource.SIDES = 6; + +/** + * Resource type for SVG elements and graphics. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {string} source - Base64 encoded SVG element or URL for SVG file. + * @param {object} [options] - Options to use + * @param {number} [options.scale=1] Scale to apply to SVG. Overridden by... + * @param {number} [options.width] Rasterize SVG this wide. Aspect ratio preserved if height not specified. + * @param {number} [options.height] Rasterize SVG this high. Aspect ratio preserved if width not specified. + * @param {boolean} [options.autoLoad=true] Start loading right away. + */ +var SVGResource = /*@__PURE__*/(function (BaseImageResource) { + function SVGResource(source, options) + { + options = options || {}; + + BaseImageResource.call(this, document.createElement('canvas')); + this._width = 0; + this._height = 0; + + /** + * Base64 encoded SVG element or URL for SVG file + * @readonly + * @member {string} + */ + this.svg = source; + + /** + * The source scale to apply when rasterizing on load + * @readonly + * @member {number} + */ + this.scale = options.scale || 1; + + /** + * A width override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideWidth = options.width; + + /** + * A height override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideHeight = options.height; + + /** + * Call when completely loaded + * @private + * @member {function} + */ + this._resolve = null; + + /** + * Cross origin value to use + * @private + * @member {boolean|string} + */ + this._crossorigin = options.crossorigin; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) SVGResource.__proto__ = BaseImageResource; + SVGResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + SVGResource.prototype.constructor = SVGResource; + + SVGResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + // Save this until after load is finished + this$1._resolve = function () { + this$1.resize(this$1.source.width, this$1.source.height); + resolve(this$1); + }; + + // Convert SVG inline string to data-uri + if ((/^\]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*>/i; // eslint-disable-line max-len + +/** + * Resource type for HTMLVideoElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLVideoElement|object|string|Array} source - Video element to use. + * @param {object} [options] - Options to use + * @param {boolean} [options.autoLoad=true] - Start loading the video immediately + * @param {boolean} [options.autoPlay=true] - Start playing video immediately + * @param {number} [options.updateFPS=0] - How many times a second to update the texture from the video. + * Leave at 0 to update at every render. + * @param {boolean} [options.crossorigin=true] - Load image using cross origin + */ +var VideoResource = /*@__PURE__*/(function (BaseImageResource) { + function VideoResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLVideoElement)) + { + var videoElement = document.createElement('video'); + + // workaround for https://github.com/pixijs/pixi.js/issues/5996 + videoElement.setAttribute('preload', 'auto'); + videoElement.setAttribute('webkit-playsinline', ''); + videoElement.setAttribute('playsinline', ''); + + if (typeof source === 'string') + { + source = [source]; + } + + BaseImageResource.crossOrigin(videoElement, (source[0].src || source[0]), options.crossorigin); + + // array of objects or strings + for (var i = 0; i < source.length; ++i) + { + var sourceElement = document.createElement('source'); + + var ref = source[i]; + var src = ref.src; + var mime = ref.mime; + + src = src || source[i]; + + var baseSrc = src.split('?').shift().toLowerCase(); + var ext = baseSrc.substr(baseSrc.lastIndexOf('.') + 1); + + mime = mime || ("video/" + ext); + + sourceElement.src = src; + sourceElement.type = mime; + + videoElement.appendChild(sourceElement); + } + + // Override the source + source = videoElement; + } + + BaseImageResource.call(this, source); + + this.noSubImage = true; + this._autoUpdate = true; + this._isAutoUpdating = false; + this._updateFPS = options.updateFPS || 0; + this._msToNextUpdate = 0; + + /** + * When set to true will automatically play videos used by this texture once + * they are loaded. If false, it will not modify the playing state. + * + * @member {boolean} + * @default true + */ + this.autoPlay = options.autoPlay !== false; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + /** + * Callback when completed with load. + * @member {function} + * @private + */ + this._resolve = null; + + // Bind for listeners + this._onCanPlay = this._onCanPlay.bind(this); + this._onError = this._onError.bind(this); + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) VideoResource.__proto__ = BaseImageResource; + VideoResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + VideoResource.prototype.constructor = VideoResource; + + var prototypeAccessors = { autoUpdate: { configurable: true },updateFPS: { configurable: true } }; + + /** + * Trigger updating of the texture + * + * @param {number} [deltaTime=0] - time delta since last tick + */ + VideoResource.prototype.update = function update (deltaTime) + { + if ( deltaTime === void 0 ) deltaTime = 0; + + if (!this.destroyed) + { + // account for if video has had its playbackRate changed + var elapsedMS = Ticker.shared.elapsedMS * this.source.playbackRate; + + this._msToNextUpdate = Math.floor(this._msToNextUpdate - elapsedMS); + if (!this._updateFPS || this._msToNextUpdate <= 0) + { + BaseImageResource.prototype.update.call(this, deltaTime); + this._msToNextUpdate = this._updateFPS ? Math.floor(1000 / this._updateFPS) : 0; + } + } + }; + + /** + * Start preloading the video resource. + * + * @protected + * @return {Promise} Handle the validate event + */ + VideoResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var source = this.source; + + if ((source.readyState === source.HAVE_ENOUGH_DATA || source.readyState === source.HAVE_FUTURE_DATA) + && source.width && source.height) + { + source.complete = true; + } + + source.addEventListener('play', this._onPlayStart.bind(this)); + source.addEventListener('pause', this._onPlayStop.bind(this)); + + if (!this._isSourceReady()) + { + source.addEventListener('canplay', this._onCanPlay); + source.addEventListener('canplaythrough', this._onCanPlay); + source.addEventListener('error', this._onError, true); + } + else + { + this._onCanPlay(); + } + + this._load = new Promise(function (resolve) { + if (this$1.valid) + { + resolve(this$1); + } + else + { + this$1._resolve = resolve; + + source.load(); + } + }); + + return this._load; + }; + + /** + * Handle video error events. + * + * @private + */ + VideoResource.prototype._onError = function _onError () + { + this.source.removeEventListener('error', this._onError, true); + this.onError.run(event); + }; + + /** + * Returns true if the underlying source is playing. + * + * @private + * @return {boolean} True if playing. + */ + VideoResource.prototype._isSourcePlaying = function _isSourcePlaying () + { + var source = this.source; + + return (source.currentTime > 0 && source.paused === false && source.ended === false && source.readyState > 2); + }; + + /** + * Returns true if the underlying source is ready for playing. + * + * @private + * @return {boolean} True if ready. + */ + VideoResource.prototype._isSourceReady = function _isSourceReady () + { + return this.source.readyState === 3 || this.source.readyState === 4; + }; + + /** + * Runs the update loop when the video is ready to play + * + * @private + */ + VideoResource.prototype._onPlayStart = function _onPlayStart () + { + // Just in case the video has not received its can play even yet.. + if (!this.valid) + { + this._onCanPlay(); + } + + if (!this._isAutoUpdating && this.autoUpdate) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + }; + + /** + * Fired when a pause event is triggered, stops the update loop + * + * @private + */ + VideoResource.prototype._onPlayStop = function _onPlayStop () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + }; + + /** + * Fired when the video is loaded and ready to play + * + * @private + */ + VideoResource.prototype._onCanPlay = function _onCanPlay () + { + var ref = this; + var source = ref.source; + + source.removeEventListener('canplay', this._onCanPlay); + source.removeEventListener('canplaythrough', this._onCanPlay); + + var valid = this.valid; + + this.resize(source.videoWidth, source.videoHeight); + + // prevent multiple loaded dispatches.. + if (!valid && this._resolve) + { + this._resolve(this); + this._resolve = null; + } + + if (this._isSourcePlaying()) + { + this._onPlayStart(); + } + else if (this.autoPlay) + { + source.play(); + } + }; + + /** + * Destroys this texture + * @override + */ + VideoResource.prototype.dispose = function dispose () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + } + + if (this.source) + { + this.source.removeEventListener('error', this._onError, true); + this.source.pause(); + this.source.src = ''; + this.source.load(); + } + BaseImageResource.prototype.dispose.call(this); + }; + + /** + * Should the base texture automatically update itself, set to true by default + * + * @member {boolean} + */ + prototypeAccessors.autoUpdate.get = function () + { + return this._autoUpdate; + }; + + prototypeAccessors.autoUpdate.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._autoUpdate) + { + this._autoUpdate = value; + + if (!this._autoUpdate && this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + else if (this._autoUpdate && !this._isAutoUpdating) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + } + }; + + /** + * How many times a second to update the texture from the video. Leave at 0 to update at every render. + * A lower fps can help performance, as updating the texture at 60fps on a 30ps video may not be efficient. + * + * @member {number} + */ + prototypeAccessors.updateFPS.get = function () + { + return this._updateFPS; + }; + + prototypeAccessors.updateFPS.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._updateFPS) + { + this._updateFPS = value; + } + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @param {string} extension - The extension of source, if set + * @return {boolean} `true` if video source + */ + VideoResource.test = function test (source, extension) + { + return (source instanceof HTMLVideoElement) + || VideoResource.TYPES.indexOf(extension) > -1; + }; + + Object.defineProperties( VideoResource.prototype, prototypeAccessors ); + + return VideoResource; +}(BaseImageResource)); + +/** + * List of common video file extensions supported by VideoResource. + * @constant + * @member {Array} + * @static + * @readonly + */ +VideoResource.TYPES = ['mp4', 'm4v', 'webm', 'ogg', 'ogv', 'h264', 'avi', 'mov']; + +/** + * Resource type for ImageBitmap. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {ImageBitmap} source - Image element to use + */ +var ImageBitmapResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageBitmapResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) ImageBitmapResource.__proto__ = BaseImageResource; + ImageBitmapResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageBitmapResource.prototype.constructor = ImageBitmapResource; + + ImageBitmapResource.test = function test (source) + { + return !!window.createImageBitmap && source instanceof ImageBitmap; + }; + + return ImageBitmapResource; +}(BaseImageResource)); + +INSTALLED.push( + ImageResource, + ImageBitmapResource, + CanvasResource, + VideoResource, + SVGResource, + BufferResource, + CubeResource, + ArrayResource +); + +/** + * System is a base class used for extending systems used by the {@link PIXI.Renderer} + * + * @see PIXI.Renderer#addSystem + * @class + * @memberof PIXI + */ +var System = function System(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Generic destroy methods to be overridden by the subclass + */ +System.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Resource type for DepthTexture. + * @class + * @extends PIXI.resources.BufferResource + * @memberof PIXI.resources + */ +var DepthResource = /*@__PURE__*/(function (BufferResource) { + function DepthResource () { + BufferResource.apply(this, arguments); + } + + if ( BufferResource ) DepthResource.__proto__ = BufferResource; + DepthResource.prototype = Object.create( BufferResource && BufferResource.prototype ); + DepthResource.prototype.constructor = DepthResource; + + DepthResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + gl.DEPTH_COMPONENT16, // Needed for depth to render properly in webgl2.0 + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + baseTexture.type, + this.data + ); + } + + return true; + }; + + return DepthResource; +}(BufferResource)); + +/** + * Frame buffer used by the BaseRenderTexture + * + * @class + * @memberof PIXI + */ +var Framebuffer = function Framebuffer(width, height) +{ + this.width = Math.ceil(width || 100); + this.height = Math.ceil(height || 100); + + this.stencil = false; + this.depth = false; + + this.dirtyId = 0; + this.dirtyFormat = 0; + this.dirtySize = 0; + + this.depthTexture = null; + this.colorTextures = []; + + this.glFramebuffers = {}; + + this.disposeRunner = new Runner('disposeFramebuffer', 2); +}; + +var prototypeAccessors$1$2 = { colorTexture: { configurable: true } }; + +/** + * Reference to the colorTexture. + * + * @member {PIXI.Texture[]} + * @readonly + */ +prototypeAccessors$1$2.colorTexture.get = function () +{ + return this.colorTextures[0]; +}; + +/** + * Add texture to the colorTexture array + * + * @param {number} [index=0] - Index of the array to add the texture to + * @param {PIXI.Texture} [texture] - Texture to add to the array + */ +Framebuffer.prototype.addColorTexture = function addColorTexture (index, texture) +{ + if ( index === void 0 ) index = 0; + + // TODO add some validation to the texture - same width / height etc? + this.colorTextures[index] = texture || new BaseTexture(null, { scaleMode: 0, + resolution: 1, + mipmap: false, + width: this.width, + height: this.height });// || new Texture(); + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Add a depth texture to the frame buffer + * + * @param {PIXI.Texture} [texture] - Texture to add + */ +Framebuffer.prototype.addDepthTexture = function addDepthTexture (texture) +{ + /* eslint-disable max-len */ + this.depthTexture = texture || new BaseTexture(new DepthResource(null, { width: this.width, height: this.height }), { scaleMode: 0, + resolution: 1, + width: this.width, + height: this.height, + mipmap: false, + format: FORMATS.DEPTH_COMPONENT, + type: TYPES.UNSIGNED_SHORT });// UNSIGNED_SHORT; + /* eslint-disable max-len */ + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable depth on the frame buffer + */ +Framebuffer.prototype.enableDepth = function enableDepth () +{ + this.depth = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable stencil on the frame buffer + */ +Framebuffer.prototype.enableStencil = function enableStencil () +{ + this.stencil = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Resize the frame buffer + * + * @param {number} width - Width of the frame buffer to resize to + * @param {number} height - Height of the frame buffer to resize to + */ +Framebuffer.prototype.resize = function resize (width, height) +{ + width = Math.ceil(width); + height = Math.ceil(height); + + if (width === this.width && height === this.height) { return; } + + this.width = width; + this.height = height; + + this.dirtyId++; + this.dirtySize++; + + for (var i = 0; i < this.colorTextures.length; i++) + { + var texture = this.colorTextures[i]; + var resolution = texture.resolution; + + // take into acount the fact the texture may have a different resolution.. + texture.setSize(width / resolution, height / resolution); + } + + if (this.depthTexture) + { + var resolution$1 = this.depthTexture.resolution; + + this.depthTexture.setSize(width / resolution$1, height / resolution$1); + } +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Framebuffer.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +Object.defineProperties( Framebuffer.prototype, prototypeAccessors$1$2 ); + +/** + * A BaseRenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a BaseRenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * A BaseRenderTexture takes a snapshot of any Display Object given to its render method. The position + * and rotation of the given Display Objects is ignored. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 800, height: 600 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 100, height: 100 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.BaseTexture + * @memberof PIXI + */ +var BaseRenderTexture = /*@__PURE__*/(function (BaseTexture) { + function BaseRenderTexture(options) + { + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + // Backward compatibility of signature + var width$1 = arguments[0]; + var height$1 = arguments[1]; + var scaleMode = arguments[2]; + var resolution = arguments[3]; + + options = { width: width$1, height: height$1, scaleMode: scaleMode, resolution: resolution }; + /* eslint-enable prefer-rest-params */ + } + + BaseTexture.call(this, null, options); + + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + // Set defaults + this.mipmap = false; + this.width = Math.ceil(width) || 100; + this.height = Math.ceil(height) || 100; + this.valid = true; + + /** + * A reference to the canvas render target (we only need one as this can be shared across renderers) + * + * @protected + * @member {object} + */ + this._canvasRenderTarget = null; + + this.clearColor = [0, 0, 0, 0]; + + this.framebuffer = new Framebuffer(this.width * this.resolution, this.height * this.resolution) + .addColorTexture(0, this); + + // TODO - could this be added the systems? + + /** + * The data structure for the stencil masks. + * + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + + /** + * The data structure for the filters. + * + * @member {PIXI.Graphics[]} + */ + this.filterStack = [{}]; + } + + if ( BaseTexture ) BaseRenderTexture.__proto__ = BaseTexture; + BaseRenderTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype ); + BaseRenderTexture.prototype.constructor = BaseRenderTexture; + + /** + * Resizes the BaseRenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + */ + BaseRenderTexture.prototype.resize = function resize (width, height) + { + width = Math.ceil(width); + height = Math.ceil(height); + this.framebuffer.resize(width * this.resolution, height * this.resolution); + }; + + /** + * Frees the texture and framebuffer from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseRenderTexture.prototype.dispose = function dispose () + { + this.framebuffer.dispose(); + + BaseTexture.prototype.dispose.call(this); + }; + + /** + * Destroys this texture. + * + */ + BaseRenderTexture.prototype.destroy = function destroy () + { + BaseTexture.prototype.destroy.call(this, true); + + this.framebuffer = null; + }; + + return BaseRenderTexture; +}(BaseTexture)); + +/** + * Stores a texture's frame in UV coordinates, in + * which everything lies in the rectangle `[(0,0), (1,0), + * (1,1), (0,1)]`. + * + * | Corner | Coordinates | + * |--------------|-------------| + * | Top-Left | `(x0,y0)` | + * | Top-Right | `(x1,y1)` | + * | Bottom-Right | `(x2,y2)` | + * | Bottom-Left | `(x3,y3)` | + * + * @class + * @protected + * @memberof PIXI + */ +var TextureUvs = function TextureUvs() +{ + /** + * X-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.x0 = 0; + + /** + * Y-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.y0 = 0; + + /** + * X-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.x1 = 1; + + /** + * Y-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.y1 = 0; + + /** + * X-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.x2 = 1; + + /** + * Y-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.y2 = 1; + + /** + * X-component of bottom-left corner `(x3,y3)`. + * + * @member {number} + */ + this.x3 = 0; + + /** + * Y-component of bottom-right corner `(x3,y3)`. + * + * @member {number} + */ + this.y3 = 1; + + this.uvsFloat32 = new Float32Array(8); +}; + +/** + * Sets the texture Uvs based on the given frame information. + * + * @protected + * @param {PIXI.Rectangle} frame - The frame of the texture + * @param {PIXI.Rectangle} baseFrame - The base frame of the texture + * @param {number} rotate - Rotation of frame, see {@link PIXI.GroupD8} + */ +TextureUvs.prototype.set = function set (frame, baseFrame, rotate) +{ + var tw = baseFrame.width; + var th = baseFrame.height; + + if (rotate) + { + // width and height div 2 div baseFrame size + var w2 = frame.width / 2 / tw; + var h2 = frame.height / 2 / th; + + // coordinates of center + var cX = (frame.x / tw) + w2; + var cY = (frame.y / th) + h2; + + rotate = GroupD8.add(rotate, GroupD8.NW); // NW is top-left corner + this.x0 = cX + (w2 * GroupD8.uX(rotate)); + this.y0 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); // rotate 90 degrees clockwise + this.x1 = cX + (w2 * GroupD8.uX(rotate)); + this.y1 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x2 = cX + (w2 * GroupD8.uX(rotate)); + this.y2 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x3 = cX + (w2 * GroupD8.uX(rotate)); + this.y3 = cY + (h2 * GroupD8.uY(rotate)); + } + else + { + this.x0 = frame.x / tw; + this.y0 = frame.y / th; + + this.x1 = (frame.x + frame.width) / tw; + this.y1 = frame.y / th; + + this.x2 = (frame.x + frame.width) / tw; + this.y2 = (frame.y + frame.height) / th; + + this.x3 = frame.x / tw; + this.y3 = (frame.y + frame.height) / th; + } + + this.uvsFloat32[0] = this.x0; + this.uvsFloat32[1] = this.y0; + this.uvsFloat32[2] = this.x1; + this.uvsFloat32[3] = this.y1; + this.uvsFloat32[4] = this.x2; + this.uvsFloat32[5] = this.y2; + this.uvsFloat32[6] = this.x3; + this.uvsFloat32[7] = this.y3; +}; + +var DEFAULT_UVS = new TextureUvs(); + +/** + * A texture stores the information that represents an image or part of an image. + * + * It cannot be added to the display list directly; instead use it as the texture for a Sprite. + * If no frame is provided for a texture, then the whole image is used. + * + * You can directly create a texture from an image and then reuse it multiple times like this : + * + * ```js + * let texture = PIXI.Texture.from('assets/image.png'); + * let sprite1 = new PIXI.Sprite(texture); + * let sprite2 = new PIXI.Sprite(texture); + * ``` + * + * If you didnt pass the texture frame to constructor, it enables `noFrame` mode: + * it subscribes on baseTexture events, it automatically resizes at the same time as baseTexture. + * + * Textures made from SVGs, loaded or not, cannot be used before the file finishes processing. + * You can check for this by checking the sprite's _textureID property. + * ```js + * var texture = PIXI.Texture.from('assets/image.svg'); + * var sprite1 = new PIXI.Sprite(texture); + * //sprite1._textureID should not be undefined if the texture has finished processing the SVG file + * ``` + * You can use a ticker or rAF to ensure your sprites load the finished textures after processing. See issue #3068. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var Texture = /*@__PURE__*/(function (EventEmitter) { + function Texture(baseTexture, frame, orig, trim, rotate, anchor) + { + EventEmitter.call(this); + + /** + * Does this Texture have any frame data assigned to it? + * + * This mode is enabled automatically if no frame was passed inside constructor. + * + * In this mode texture is subscribed to baseTexture events, and fires `update` on any change. + * + * Beware, after loading or resize of baseTexture event can fired two times! + * If you want more control, subscribe on baseTexture itself. + * + * ```js + * texture.on('update', () => {}); + * ``` + * + * Any assignment of `frame` switches off `noFrame` mode. + * + * @member {boolean} + */ + this.noFrame = false; + + if (!frame) + { + this.noFrame = true; + frame = new Rectangle(0, 0, 1, 1); + } + + if (baseTexture instanceof Texture) + { + baseTexture = baseTexture.baseTexture; + } + + /** + * The base texture that this texture uses. + * + * @member {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering, + * irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases) + * + * @member {PIXI.Rectangle} + */ + this._frame = frame; + + /** + * This is the trimmed area of original texture, before it was put in atlas + * Please call `updateUvs()` after you change coordinates of `trim` manually. + * + * @member {PIXI.Rectangle} + */ + this.trim = trim; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = false; + + /** + * This will let a renderer know that a texture has been updated (used mainly for WebGL uv updates) + * + * @member {boolean} + */ + this.requiresUpdate = false; + + /** + * The WebGL UV data cache. Can be used as quad UV + * + * @member {PIXI.TextureUvs} + * @protected + */ + this._uvs = DEFAULT_UVS; + + /** + * Default TextureMatrix instance for this texture + * By default that object is not created because its heavy + * + * @member {PIXI.TextureMatrix} + */ + this.uvMatrix = null; + + /** + * This is the area of original texture, before it was put in atlas + * + * @member {PIXI.Rectangle} + */ + this.orig = orig || frame;// new Rectangle(0, 0, 1, 1); + + this._rotate = Number(rotate || 0); + + if (rotate === true) + { + // this is old texturepacker legacy, some games/libraries are passing "true" for rotated textures + this._rotate = 2; + } + else if (this._rotate % 2 !== 0) + { + throw new Error('attempt to use diamond-shaped UVs. If you are sure, set rotation manually'); + } + + /** + * Anchor point that is used as default if sprite is created with this texture. + * Changing the `defaultAnchor` at a later point of time will not update Sprite's anchor point. + * @member {PIXI.Point} + * @default {0,0} + */ + this.defaultAnchor = anchor ? new Point(anchor.x, anchor.y) : new Point(0, 0); + + /** + * Update ID is observed by sprites and TextureMatrix instances. + * Call updateUvs() to increment it. + * + * @member {number} + * @protected + */ + + this._updateID = 0; + + /** + * The ids under which this Texture has been added to the texture cache. This is + * automatically set as long as Texture.addToCache is used, but may not be set if a + * Texture is added directly to the TextureCache array. + * + * @member {string[]} + */ + this.textureCacheIds = []; + + if (!baseTexture.valid) + { + baseTexture.once('loaded', this.onBaseTextureUpdated, this); + } + else if (this.noFrame) + { + // if there is no frame we should monitor for any base texture changes.. + if (baseTexture.valid) + { + this.onBaseTextureUpdated(baseTexture); + } + } + else + { + this.frame = frame; + } + + if (this.noFrame) + { + baseTexture.on('update', this.onBaseTextureUpdated, this); + } + } + + if ( EventEmitter ) Texture.__proto__ = EventEmitter; + Texture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + Texture.prototype.constructor = Texture; + + var prototypeAccessors = { resolution: { configurable: true },frame: { configurable: true },rotate: { configurable: true },width: { configurable: true },height: { configurable: true } }; + + /** + * Updates this texture on the gpu. + * + * Calls the TextureResource update. + * + * If you adjusted `frame` manually, please call `updateUvs()` instead. + * + */ + Texture.prototype.update = function update () + { + if (this.baseTexture.resource) + { + this.baseTexture.resource.update(); + } + }; + + /** + * Called when the base texture is updated + * + * @protected + * @param {PIXI.BaseTexture} baseTexture - The base texture. + */ + Texture.prototype.onBaseTextureUpdated = function onBaseTextureUpdated (baseTexture) + { + if (this.noFrame) + { + if (!this.baseTexture.valid) + { + return; + } + + this._frame.width = baseTexture.width; + this._frame.height = baseTexture.height; + this.valid = true; + this.updateUvs(); + } + else + { + // TODO this code looks confusing.. boo to abusing getters and setters! + // if user gave us frame that has bigger size than resized texture it can be a problem + this.frame = this._frame; + } + + this.emit('update', this); + }; + + /** + * Destroys this texture + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ + Texture.prototype.destroy = function destroy (destroyBase) + { + if (this.baseTexture) + { + if (destroyBase) + { + var ref = this.baseTexture; + var resource = ref.resource; + + // delete the texture if it exists in the texture cache.. + // this only needs to be removed if the base texture is actually destroyed too.. + if (resource && TextureCache[resource.url]) + { + Texture.removeFromCache(resource.url); + } + + this.baseTexture.destroy(); + } + + this.baseTexture.off('update', this.onBaseTextureUpdated, this); + + this.baseTexture = null; + } + + this._frame = null; + this._uvs = null; + this.trim = null; + this.orig = null; + + this.valid = false; + + Texture.removeFromCache(this); + this.textureCacheIds = null; + }; + + /** + * Creates a new texture object that acts the same as this one. + * + * @return {PIXI.Texture} The new texture + */ + Texture.prototype.clone = function clone () + { + return new Texture(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor); + }; + + /** + * Updates the internal WebGL UV cache. Use it after you change `frame` or `trim` of the texture. + * Call it after changing the frame + */ + Texture.prototype.updateUvs = function updateUvs () + { + if (this._uvs === DEFAULT_UVS) + { + this._uvs = new TextureUvs(); + } + + this._uvs.set(this._frame, this.baseTexture, this.rotate); + + this._updateID++; + }; + + /** + * Helper function that creates a new Texture based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|PIXI.BaseTexture} source + * Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The newly created texture + */ + Texture.from = function from (source, options) + { + if ( options === void 0 ) options = {}; + + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var texture = TextureCache[cacheId]; + + if (!texture) + { + if (!options.resolution) + { + options.resolution = getResolutionOfUrl(source); + } + + texture = new Texture(new BaseTexture(source, options)); + texture.baseTexture.cacheId = cacheId; + + BaseTexture.addToCache(texture.baseTexture, cacheId); + Texture.addToCache(texture, cacheId); + } + + // lets assume its a base texture! + return texture; + }; + + /** + * Create a new Texture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The resulting new BaseTexture + */ + Texture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + return new Texture(BaseTexture.fromBuffer(buffer, width, height, options)); + }; + + /** + * Create a texture from a source and add to the cache. + * + * @static + * @param {HTMLImageElement|HTMLCanvasElement} source - The input source. + * @param {String} imageUrl - File name of texture, for cache and resolving resolution. + * @param {String} [name] - Human readable name for the texture cache. If no name is + * specified, only `imageUrl` will be used as the cache ID. + * @return {PIXI.Texture} Output texture + */ + Texture.fromLoader = function fromLoader (source, imageUrl, name) + { + var resource = new ImageResource(source); + + resource.url = imageUrl; + + var baseTexture = new BaseTexture(resource, { + scaleMode: settings.SCALE_MODE, + resolution: getResolutionOfUrl(imageUrl), + }); + + var texture = new Texture(baseTexture); + + // No name, use imageUrl instead + if (!name) + { + name = imageUrl; + } + + // lets also add the frame to pixi's global cache for 'fromLoader' function + BaseTexture.addToCache(texture.baseTexture, name); + Texture.addToCache(texture, name); + + // also add references by url if they are different. + if (name !== imageUrl) + { + BaseTexture.addToCache(texture.baseTexture, imageUrl); + Texture.addToCache(texture, imageUrl); + } + + return texture; + }; + + /** + * Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.Texture} texture - The Texture to add to the cache. + * @param {string} id - The id that the Texture will be stored against. + */ + Texture.addToCache = function addToCache (texture, id) + { + if (id) + { + if (texture.textureCacheIds.indexOf(id) === -1) + { + texture.textureCacheIds.push(id); + } + + if (TextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("Texture added to the cache with an id [" + id + "] that already had an entry")); + } + + TextureCache[id] = texture; + } + }; + + /** + * Remove a Texture from the global TextureCache. + * + * @static + * @param {string|PIXI.Texture} texture - id of a Texture to be removed, or a Texture instance itself + * @return {PIXI.Texture|null} The Texture that was removed + */ + Texture.removeFromCache = function removeFromCache (texture) + { + if (typeof texture === 'string') + { + var textureFromCache = TextureCache[texture]; + + if (textureFromCache) + { + var index = textureFromCache.textureCacheIds.indexOf(texture); + + if (index > -1) + { + textureFromCache.textureCacheIds.splice(index, 1); + } + + delete TextureCache[texture]; + + return textureFromCache; + } + } + else if (texture && texture.textureCacheIds) + { + for (var i = 0; i < texture.textureCacheIds.length; ++i) + { + // Check that texture matches the one being passed in before deleting it from the cache. + if (TextureCache[texture.textureCacheIds[i]] === texture) + { + delete TextureCache[texture.textureCacheIds[i]]; + } + } + + texture.textureCacheIds.length = 0; + + return texture; + } + + return null; + }; + + /** + * Returns resolution of baseTexture + * + * @member {number} + * @readonly + */ + prototypeAccessors.resolution.get = function () + { + return this.baseTexture.resolution; + }; + + /** + * The frame specifies the region of the base texture that this texture uses. + * Please call `updateUvs()` after you change coordinates of `frame` manually. + * + * @member {PIXI.Rectangle} + */ + prototypeAccessors.frame.get = function () + { + return this._frame; + }; + + prototypeAccessors.frame.set = function (frame) // eslint-disable-line require-jsdoc + { + this._frame = frame; + + this.noFrame = false; + + var x = frame.x; + var y = frame.y; + var width = frame.width; + var height = frame.height; + var xNotFit = x + width > this.baseTexture.width; + var yNotFit = y + height > this.baseTexture.height; + + if (xNotFit || yNotFit) + { + var relationship = xNotFit && yNotFit ? 'and' : 'or'; + var errorX = "X: " + x + " + " + width + " = " + (x + width) + " > " + (this.baseTexture.width); + var errorY = "Y: " + y + " + " + height + " = " + (y + height) + " > " + (this.baseTexture.height); + + throw new Error('Texture Error: frame does not fit inside the base Texture dimensions: ' + + errorX + " " + relationship + " " + errorY); + } + + this.valid = width && height && this.baseTexture.valid; + + if (!this.trim && !this.rotate) + { + this.orig = frame; + } + + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * Indicates whether the texture is rotated inside the atlas + * set to 2 to compensate for texture packer rotation + * set to 6 to compensate for spine packer rotation + * can be used to rotate or mirror sprites + * See {@link PIXI.GroupD8} for explanation + * + * @member {number} + */ + prototypeAccessors.rotate.get = function () + { + return this._rotate; + }; + + prototypeAccessors.rotate.set = function (rotate) // eslint-disable-line require-jsdoc + { + this._rotate = rotate; + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * The width of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.orig.width; + }; + + /** + * The height of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.orig.height; + }; + + Object.defineProperties( Texture.prototype, prototypeAccessors ); + + return Texture; +}(eventemitter3)); + +function createWhiteTexture() +{ + var canvas = document.createElement('canvas'); + + canvas.width = 16; + canvas.height = 16; + + var context = canvas.getContext('2d'); + + context.fillStyle = 'white'; + context.fillRect(0, 0, 16, 16); + + return new Texture(new BaseTexture(new CanvasResource(canvas))); +} + +function removeAllHandlers(tex) +{ + tex.destroy = function _emptyDestroy() { /* empty */ }; + tex.on = function _emptyOn() { /* empty */ }; + tex.once = function _emptyOnce() { /* empty */ }; + tex.emit = function _emptyEmit() { /* empty */ }; +} + +/** + * An empty texture, used often to not have to create multiple empty textures. + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.EMPTY = new Texture(new BaseTexture()); +removeAllHandlers(Texture.EMPTY); +removeAllHandlers(Texture.EMPTY.baseTexture); + +/** + * A white texture of 16x16 size, used for graphics and other things + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.WHITE = createWhiteTexture(); +removeAllHandlers(Texture.WHITE); +removeAllHandlers(Texture.WHITE.baseTexture); + +/** + * A RenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a RenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * __Hint-2__: The actual memory allocation will happen on first render. + * You shouldn't create renderTextures each frame just to delete them after, try to reuse them. + * + * A RenderTexture takes a snapshot of any Display Object given to its render method. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let renderTexture = PIXI.RenderTexture.create(800, 600); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let renderTexture = new PIXI.RenderTexture.create(100, 100); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.Texture + * @memberof PIXI + */ +var RenderTexture = /*@__PURE__*/(function (Texture) { + function RenderTexture(baseRenderTexture, frame) + { + // support for legacy.. + var _legacyRenderer = null; + + if (!(baseRenderTexture instanceof BaseRenderTexture)) + { + /* eslint-disable prefer-rest-params, no-console */ + var width = arguments[1]; + var height = arguments[2]; + var scaleMode = arguments[3]; + var resolution = arguments[4]; + + // we have an old render texture.. + console.warn(("Please use RenderTexture.create(" + width + ", " + height + ") instead of the ctor directly.")); + _legacyRenderer = arguments[0]; + /* eslint-enable prefer-rest-params, no-console */ + + frame = null; + baseRenderTexture = new BaseRenderTexture({ + width: width, + height: height, + scaleMode: scaleMode, + resolution: resolution, + }); + } + + /** + * The base texture object that this texture uses + * + * @member {PIXI.BaseTexture} + */ + Texture.call(this, baseRenderTexture, frame); + + this.legacyRenderer = _legacyRenderer; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = true; + + /** + * Stores `sourceFrame` when this texture is inside current filter stack. + * You can read it inside filters. + * + * @readonly + * @member {PIXI.Rectangle} + */ + this.filterFrame = null; + + /** + * The key for pooled texture of FilterSystem + * @protected + * @member {string} + */ + this.filterPoolKey = null; + + this.updateUvs(); + } + + if ( Texture ) RenderTexture.__proto__ = Texture; + RenderTexture.prototype = Object.create( Texture && Texture.prototype ); + RenderTexture.prototype.constructor = RenderTexture; + + /** + * Resizes the RenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + * @param {boolean} [resizeBaseTexture=true] - Should the baseTexture.width and height values be resized as well? + */ + RenderTexture.prototype.resize = function resize (width, height, resizeBaseTexture) + { + if ( resizeBaseTexture === void 0 ) resizeBaseTexture = true; + + width = Math.ceil(width); + height = Math.ceil(height); + + // TODO - could be not required.. + this.valid = (width > 0 && height > 0); + + this._frame.width = this.orig.width = width; + this._frame.height = this.orig.height = height; + + if (resizeBaseTexture) + { + this.baseTexture.resize(width, height); + } + + this.updateUvs(); + }; + + /** + * Changes the resolution of baseTexture, but does not change framebuffer size. + * + * @param {number} resolution - The new resolution to apply to RenderTexture + */ + RenderTexture.prototype.setResolution = function setResolution (resolution) + { + var ref = this; + var baseTexture = ref.baseTexture; + + if (baseTexture.resolution === resolution) + { + return; + } + + baseTexture.setResolution(resolution); + this.resize(baseTexture.width, baseTexture.height, false); + }; + + /** + * A short hand way of creating a render texture. + * + * @param {object} [options] - Options + * @param {number} [options.width=100] - The width of the render texture + * @param {number} [options.height=100] - The height of the render texture + * @param {number} [options.scaleMode=PIXI.settings.SCALE_MODE] - See {@link PIXI.SCALE_MODES} for possible values + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the texture being generated + * @return {PIXI.RenderTexture} The new render texture + */ + RenderTexture.create = function create (options) + { + // fallback, old-style: create(width, height, scaleMode, resolution) + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + options = { + width: options, + height: arguments[1], + scaleMode: arguments[2], + resolution: arguments[3], + }; + /* eslint-enable prefer-rest-params */ + } + + return new RenderTexture(new BaseRenderTexture(options)); + }; + + return RenderTexture; +}(Texture)); + +/** + * Experimental! + * + * Texture pool, used by FilterSystem and plugins + * Stores collection of temporary pow2 or screen-sized renderTextures + * + * If you use custom RenderTexturePool for your filters, you can use methods + * `getFilterTexture` and `returnFilterTexture` same as in + * + * @class + * @memberof PIXI + */ +var RenderTexturePool = function RenderTexturePool(textureOptions) +{ + this.texturePool = {}; + this.textureOptions = textureOptions || {}; + /** + * Allow renderTextures of the same size as screen, not just pow2 + * + * Automatically sets to true after `setScreenSize` + * + * @member {boolean} + * @default false + */ + this.enableFullScreen = false; + + this._pixelsWidth = 0; + this._pixelsHeight = 0; +}; + +/** + * creates of texture with params that were specified in pool constructor + * + * @param {number} realWidth width of texture in pixels + * @param {number} realHeight height of texture in pixels + * @returns {RenderTexture} + */ +RenderTexturePool.prototype.createTexture = function createTexture (realWidth, realHeight) +{ + var baseRenderTexture = new BaseRenderTexture(Object.assign({ + width: realWidth, + height: realHeight, + resolution: 1, + }, this.textureOptions)); + + return new RenderTexture(baseRenderTexture); +}; + +/** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ +RenderTexturePool.prototype.getOptimalTexture = function getOptimalTexture (minWidth, minHeight, resolution) +{ + if ( resolution === void 0 ) resolution = 1; + + var key = RenderTexturePool.SCREEN_KEY; + + minWidth *= resolution; + minHeight *= resolution; + + if (!this.enableFullScreen || minWidth !== this._pixelsWidth || minHeight !== this._pixelsHeight) + { + minWidth = nextPow2(minWidth); + minHeight = nextPow2(minHeight); + key = ((minWidth & 0xFFFF) << 16) | (minHeight & 0xFFFF); + } + + if (!this.texturePool[key]) + { + this.texturePool[key] = []; + } + + var renderTexture = this.texturePool[key].pop(); + + if (!renderTexture) + { + renderTexture = this.createTexture(minWidth, minHeight); + } + + renderTexture.filterPoolKey = key; + renderTexture.setResolution(resolution); + + return renderTexture; +}; + +/** + * Gets extra texture of the same size as input renderTexture + * + * `getFilterTexture(input, 0.5)` or `getFilterTexture(0.5, input)` + * + * @param {PIXI.RenderTexture} input renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * It overrides, it does not multiply + * @returns {PIXI.RenderTexture} + */ +RenderTexturePool.prototype.getFilterTexture = function getFilterTexture (input, resolution) +{ + var filterTexture = this.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; +}; + +/** + * Place a render texture back into the pool. + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnTexture = function returnTexture (renderTexture) +{ + var key = renderTexture.filterPoolKey; + + renderTexture.filterFrame = null; + this.texturePool[key].push(renderTexture); +}; + +/** + * Alias for returnTexture, to be compliant with FilterSystem interface + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) +{ + this.returnTexture(renderTexture); +}; + +/** + * Clears the pool + * + * @param {boolean} [destroyTextures=true] destroy all stored textures + */ +RenderTexturePool.prototype.clear = function clear (destroyTextures) +{ + destroyTextures = destroyTextures !== false; + if (destroyTextures) + { + for (var i in this.texturePool) + { + var textures = this.texturePool[i]; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + } + } + + this.texturePool = {}; +}; + +/** + * If screen size was changed, drops all screen-sized textures, + * sets new screen size, sets `enableFullScreen` to true + * + * Size is measured in pixels, `renderer.view` can be passed here, not `renderer.screen` + * + * @param {PIXI.ISize} size - Initial size of screen + */ +RenderTexturePool.prototype.setScreenSize = function setScreenSize (size) +{ + if (size.width === this._pixelsWidth + && size.height === this._pixelsHeight) + { + return; + } + + var screenKey = RenderTexturePool.SCREEN_KEY; + var textures = this.texturePool[screenKey]; + + this.enableFullScreen = size.width > 0 && size.height > 0; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + this.texturePool[screenKey] = []; + + this._pixelsWidth = size.width; + this._pixelsHeight = size.height; +}; + +/** + * Key that is used to store fullscreen renderTextures in a pool + * + * @static + * @const {string} + */ +RenderTexturePool.SCREEN_KEY = 'screen'; + +/* eslint-disable max-len */ + +/** + * Holds the information for a single attribute structure required to render geometry. + * + * This does not contain the actual data, but instead has a buffer id that maps to a {@link PIXI.Buffer} + * This can include anything from positions, uvs, normals, colors etc. + * + * @class + * @memberof PIXI + */ +var Attribute = function Attribute(buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( type === void 0 ) type = 5126; + + this.buffer = buffer; + this.size = size; + this.normalized = normalized; + this.type = type; + this.stride = stride; + this.start = start; + this.instance = instance; +}; + +/** + * Destroys the Attribute. + */ +Attribute.prototype.destroy = function destroy () +{ + this.buffer = null; +}; + +/** + * Helper function that creates an Attribute based on the information provided + * + * @static + * @param {string} buffer the id of the buffer that this attribute will look for + * @param {Number} [size=2] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 + * @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) + * @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) + * @param {Boolean} [normalized=false] should the data be normalized. + * + * @returns {PIXI.Attribute} A new {@link PIXI.Attribute} based on the information provided + */ +Attribute.from = function from (buffer, size, normalized, type, stride) +{ + return new Attribute(buffer, size, normalized, type, stride); +}; + +var UID = 0; +/* eslint-disable max-len */ + +/** + * A wrapper for data so that it can be used and uploaded by WebGL + * + * @class + * @memberof PIXI + */ +var Buffer$1 = function Buffer(data, _static, index) +{ + if ( _static === void 0 ) _static = true; + if ( index === void 0 ) index = false; + + /** + * The data in the buffer, as a typed array + * + * @member {ArrayBuffer| SharedArrayBuffer|ArrayBufferView} + */ + this.data = data || new Float32Array(1); + + /** + * A map of renderer IDs to webgl buffer + * + * @private + * @member {object} + */ + this._glBuffers = {}; + + this._updateID = 0; + + this.index = index; + + this.static = _static; + + this.id = UID++; + + this.disposeRunner = new Runner('disposeBuffer', 2); +}; + +// TODO could explore flagging only a partial upload? +/** + * flags this buffer as requiring an upload to the GPU + * @param {ArrayBuffer|SharedArrayBuffer|ArrayBufferView} [data] the data to update in the buffer. + */ +Buffer$1.prototype.update = function update (data) +{ + this.data = data || this.data; + this._updateID++; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Buffer$1.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the buffer + */ +Buffer$1.prototype.destroy = function destroy () +{ + this.dispose(); + + this.data = null; +}; + +/** + * Helper function that creates a buffer based on an array or TypedArray + * + * @static + * @param {ArrayBufferView | number[]} data the TypedArray that the buffer will store. If this is a regular Array it will be converted to a Float32Array. + * @return {PIXI.Buffer} A new Buffer based on the data provided. + */ +Buffer$1.from = function from (data) +{ + if (data instanceof Array) + { + data = new Float32Array(data); + } + + return new Buffer$1(data); +}; + +function getBufferType(array) +{ + if (array.BYTES_PER_ELEMENT === 4) + { + if (array instanceof Float32Array) + { + return 'Float32Array'; + } + else if (array instanceof Uint32Array) + { + return 'Uint32Array'; + } + + return 'Int32Array'; + } + else if (array.BYTES_PER_ELEMENT === 2) + { + if (array instanceof Uint16Array) + { + return 'Uint16Array'; + } + } + else if (array.BYTES_PER_ELEMENT === 1) + { + if (array instanceof Uint8Array) + { + return 'Uint8Array'; + } + } + + // TODO map out the rest of the array elements! + return null; +} + +/* eslint-disable object-shorthand */ +var map$2 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, +}; + +function interleaveTypedArrays(arrays, sizes) +{ + var outSize = 0; + var stride = 0; + var views = {}; + + for (var i = 0; i < arrays.length; i++) + { + stride += sizes[i]; + outSize += arrays[i].length; + } + + var buffer = new ArrayBuffer(outSize * 4); + + var out = null; + var littleOffset = 0; + + for (var i$1 = 0; i$1 < arrays.length; i$1++) + { + var size = sizes[i$1]; + var array = arrays[i$1]; + + var type = getBufferType(array); + + if (!views[type]) + { + views[type] = new map$2[type](buffer); + } + + out = views[type]; + + for (var j = 0; j < array.length; j++) + { + var indexStart = ((j / size | 0) * stride) + littleOffset; + var index = j % size; + + out[indexStart + index] = array[j]; + } + + littleOffset += size; + } + + return new Float32Array(buffer); +} + +var byteSizeMap = { 5126: 4, 5123: 2, 5121: 1 }; +var UID$1 = 0; + +/* eslint-disable object-shorthand */ +var map$1$1 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, + Uint16Array: Uint16Array, +}; + +/* eslint-disable max-len */ + +/** + * The Geometry represents a model. It consists of two components: + * - GeometryStyle - The structure of the model such as the attributes layout + * - GeometryData - the data of the model - this consists of buffers. + * This can include anything from positions, uvs, normals, colors etc. + * + * Geometry can be defined without passing in a style or data if required (thats how I prefer!) + * + * ```js + * let geometry = new PIXI.Geometry(); + * + * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2); + * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1],2) + * geometry.addIndex([0,1,2,1,3,2]) + * + * ``` + * @class + * @memberof PIXI + */ +var Geometry = function Geometry(buffers, attributes) +{ + if ( buffers === void 0 ) buffers = []; + if ( attributes === void 0 ) attributes = {}; + + this.buffers = buffers; + + this.indexBuffer = null; + + this.attributes = attributes; + + /** + * A map of renderer IDs to webgl VAOs + * + * @protected + * @type {object} + */ + this.glVertexArrayObjects = {}; + + this.id = UID$1++; + + this.instanced = false; + + /** + * Number of instances in this geometry, pass it to `GeometrySystem.draw()` + * @member {number} + * @default 1 + */ + this.instanceCount = 1; + + this.disposeRunner = new Runner('disposeGeometry', 2); + + /** + * Count of existing (not destroyed) meshes that reference this geometry + * @member {number} + */ + this.refCount = 0; +}; + +/** +* +* Adds an attribute to the geometry +* +* @param {String} id - the name of the attribute (matching up to a shader) +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it. +* @param {Number} [size=0] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 +* @param {Boolean} [normalized=false] should the data be normalized. +* @param {Number} [type=PIXI.TYPES.FLOAT] what type of number is the attribute. Check {PIXI.TYPES} to see the ones available +* @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) +* @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) +* +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addAttribute = function addAttribute (id, buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( instance === void 0 ) instance = false; + + if (!buffer) + { + throw new Error('You must pass a buffer when creating an attribute'); + } + + // check if this is a buffer! + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Float32Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + var ids = id.split('|'); + + if (ids.length > 1) + { + for (var i = 0; i < ids.length; i++) + { + this.addAttribute(ids[i], buffer, size, normalized, type); + } + + return this; + } + + var bufferIndex = this.buffers.indexOf(buffer); + + if (bufferIndex === -1) + { + this.buffers.push(buffer); + bufferIndex = this.buffers.length - 1; + } + + this.attributes[id] = new Attribute(bufferIndex, size, normalized, type, stride, start, instance); + + // assuming that if there is instanced data then this will be drawn with instancing! + this.instanced = this.instanced || instance; + + return this; +}; + +/** + * returns the requested attribute + * + * @param {String} id the name of the attribute required + * @return {PIXI.Attribute} the attribute requested. + */ +Geometry.prototype.getAttribute = function getAttribute (id) +{ + return this.attributes[id]; +}; + +/** + * returns the requested buffer + * + * @param {String} id the name of the buffer required + * @return {PIXI.Buffer} the buffer requested. + */ +Geometry.prototype.getBuffer = function getBuffer (id) +{ + return this.buffers[this.getAttribute(id).buffer]; +}; + +/** +* +* Adds an index buffer to the geometry +* The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer. +* +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it. +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addIndex = function addIndex (buffer) +{ + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Uint16Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + buffer.index = true; + this.indexBuffer = buffer; + + if (this.buffers.indexOf(buffer) === -1) + { + this.buffers.push(buffer); + } + + return this; +}; + +/** + * returns the index buffer + * + * @return {PIXI.Buffer} the index buffer. + */ +Geometry.prototype.getIndex = function getIndex () +{ + return this.indexBuffer; +}; + +/** + * this function modifies the structure so that all current attributes become interleaved into a single buffer + * This can be useful if your model remains static as it offers a little performance boost + * + * @return {PIXI.Geometry} returns self, useful for chaining. + */ +Geometry.prototype.interleave = function interleave () +{ + // a simple check to see if buffers are already interleaved.. + if (this.buffers.length === 1 || (this.buffers.length === 2 && this.indexBuffer)) { return this; } + + // assume already that no buffers are interleaved + var arrays = []; + var sizes = []; + var interleavedBuffer = new Buffer$1(); + var i; + + for (i in this.attributes) + { + var attribute = this.attributes[i]; + + var buffer = this.buffers[attribute.buffer]; + + arrays.push(buffer.data); + + sizes.push((attribute.size * byteSizeMap[attribute.type]) / 4); + + attribute.buffer = 0; + } + + interleavedBuffer.data = interleaveTypedArrays(arrays, sizes); + + for (i = 0; i < this.buffers.length; i++) + { + if (this.buffers[i] !== this.indexBuffer) + { + this.buffers[i].destroy(); + } + } + + this.buffers = [interleavedBuffer]; + + if (this.indexBuffer) + { + this.buffers.push(this.indexBuffer); + } + + return this; +}; + +Geometry.prototype.getSize = function getSize () +{ + for (var i in this.attributes) + { + var attribute = this.attributes[i]; + var buffer = this.buffers[attribute.buffer]; + + return buffer.data.length / ((attribute.stride / 4) || attribute.size); + } + + return 0; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Geometry.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the geometry. + */ +Geometry.prototype.destroy = function destroy () +{ + this.dispose(); + + this.buffers = null; + this.indexBuffer.destroy(); + + this.attributes = null; +}; + +/** + * returns a clone of the geometry + * + * @returns {PIXI.Geometry} a new clone of this geometry + */ +Geometry.prototype.clone = function clone () +{ + var geometry = new Geometry(); + + for (var i = 0; i < this.buffers.length; i++) + { + geometry.buffers[i] = new Buffer$1(this.buffers[i].data.slice()); + } + + for (var i$1 in this.attributes) + { + var attrib = this.attributes[i$1]; + + geometry.attributes[i$1] = new Attribute( + attrib.buffer, + attrib.size, + attrib.normalized, + attrib.type, + attrib.stride, + attrib.start, + attrib.instance + ); + } + + if (this.indexBuffer) + { + geometry.indexBuffer = geometry.buffers[this.buffers.indexOf(this.indexBuffer)]; + geometry.indexBuffer.index = true; + } + + return geometry; +}; + +/** + * merges an array of geometries into a new single one + * geometry attribute styles must match for this operation to work + * + * @param {PIXI.Geometry[]} geometries array of geometries to merge + * @returns {PIXI.Geometry} shiny new geometry! + */ +Geometry.merge = function merge (geometries) +{ + // todo add a geometry check! + // also a size check.. cant be too big!] + + var geometryOut = new Geometry(); + + var arrays = []; + var sizes = []; + var offsets = []; + + var geometry; + + // pass one.. get sizes.. + for (var i = 0; i < geometries.length; i++) + { + geometry = geometries[i]; + + for (var j = 0; j < geometry.buffers.length; j++) + { + sizes[j] = sizes[j] || 0; + sizes[j] += geometry.buffers[j].data.length; + offsets[j] = 0; + } + } + + // build the correct size arrays.. + for (var i$1 = 0; i$1 < geometry.buffers.length; i$1++) + { + // TODO types! + arrays[i$1] = new map$1$1[getBufferType(geometry.buffers[i$1].data)](sizes[i$1]); + geometryOut.buffers[i$1] = new Buffer$1(arrays[i$1]); + } + + // pass to set data.. + for (var i$2 = 0; i$2 < geometries.length; i$2++) + { + geometry = geometries[i$2]; + + for (var j$1 = 0; j$1 < geometry.buffers.length; j$1++) + { + arrays[j$1].set(geometry.buffers[j$1].data, offsets[j$1]); + offsets[j$1] += geometry.buffers[j$1].data.length; + } + } + + geometryOut.attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + geometryOut.indexBuffer = geometryOut.buffers[geometry.buffers.indexOf(geometry.indexBuffer)]; + geometryOut.indexBuffer.index = true; + + var offset = 0; + var stride = 0; + var offset2 = 0; + var bufferIndexToCount = 0; + + // get a buffer + for (var i$3 = 0; i$3 < geometry.buffers.length; i$3++) + { + if (geometry.buffers[i$3] !== geometry.indexBuffer) + { + bufferIndexToCount = i$3; + break; + } + } + + // figure out the stride of one buffer.. + for (var i$4 in geometry.attributes) + { + var attribute = geometry.attributes[i$4]; + + if ((attribute.buffer | 0) === bufferIndexToCount) + { + stride += ((attribute.size * byteSizeMap[attribute.type]) / 4); + } + } + + // time to off set all indexes.. + for (var i$5 = 0; i$5 < geometries.length; i$5++) + { + var indexBufferData = geometries[i$5].indexBuffer.data; + + for (var j$2 = 0; j$2 < indexBufferData.length; j$2++) + { + geometryOut.indexBuffer.data[j$2 + offset2] += offset; + } + + offset += geometry.buffers[bufferIndexToCount].data.length / (stride); + offset2 += indexBufferData.length; + } + } + + return geometryOut; +}; + +/** + * Helper class to create a quad + * + * @class + * @memberof PIXI + */ +var Quad = /*@__PURE__*/(function (Geometry) { + function Quad() + { + Geometry.call(this); + + this.addAttribute('aVertexPosition', [ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]) + .addIndex([0, 1, 3, 2]); + } + + if ( Geometry ) Quad.__proto__ = Geometry; + Quad.prototype = Object.create( Geometry && Geometry.prototype ); + Quad.prototype.constructor = Quad; + + return Quad; +}(Geometry)); + +/** + * Helper class to create a quad with uvs like in v4 + * + * @class + * @memberof PIXI + * @extends PIXI.Geometry + */ +var QuadUv = /*@__PURE__*/(function (Geometry) { + function QuadUv() + { + Geometry.call(this); + + /** + * An array of vertices + * + * @member {Float32Array} + */ + this.vertices = new Float32Array([ + -1, -1, + 1, -1, + 1, 1, + -1, 1 ]); + + /** + * The Uvs of the quad + * + * @member {Float32Array} + */ + this.uvs = new Float32Array([ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]); + + this.vertexBuffer = new Buffer$1(this.vertices); + this.uvBuffer = new Buffer$1(this.uvs); + + this.addAttribute('aVertexPosition', this.vertexBuffer) + .addAttribute('aTextureCoord', this.uvBuffer) + .addIndex([0, 1, 2, 0, 2, 3]); + } + + if ( Geometry ) QuadUv.__proto__ = Geometry; + QuadUv.prototype = Object.create( Geometry && Geometry.prototype ); + QuadUv.prototype.constructor = QuadUv; + + /** + * Maps two Rectangle to the quad. + * + * @param {PIXI.Rectangle} targetTextureFrame - the first rectangle + * @param {PIXI.Rectangle} destinationFrame - the second rectangle + * @return {PIXI.Quad} Returns itself. + */ + QuadUv.prototype.map = function map (targetTextureFrame, destinationFrame) + { + var x = 0; // destinationFrame.x / targetTextureFrame.width; + var y = 0; // destinationFrame.y / targetTextureFrame.height; + + this.uvs[0] = x; + this.uvs[1] = y; + + this.uvs[2] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[3] = y; + + this.uvs[4] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[5] = y + (destinationFrame.height / targetTextureFrame.height); + + this.uvs[6] = x; + this.uvs[7] = y + (destinationFrame.height / targetTextureFrame.height); + + x = destinationFrame.x; + y = destinationFrame.y; + + this.vertices[0] = x; + this.vertices[1] = y; + + this.vertices[2] = x + destinationFrame.width; + this.vertices[3] = y; + + this.vertices[4] = x + destinationFrame.width; + this.vertices[5] = y + destinationFrame.height; + + this.vertices[6] = x; + this.vertices[7] = y + destinationFrame.height; + + this.invalidate(); + + return this; + }; + + /** + * legacy upload method, just marks buffers dirty + * @returns {PIXI.QuadUv} Returns itself. + */ + QuadUv.prototype.invalidate = function invalidate () + { + this.vertexBuffer._updateID++; + this.uvBuffer._updateID++; + + return this; + }; + + return QuadUv; +}(Geometry)); + +var UID$2 = 0; + +/** + * Uniform group holds uniform map and some ID's for work + * + * @class + * @memberof PIXI + */ +var UniformGroup = function UniformGroup(uniforms, _static) +{ + /** + * uniform values + * @member {object} + * @readonly + */ + this.uniforms = uniforms; + + /** + * Its a group and not a single uniforms + * @member {boolean} + * @readonly + * @default true + */ + this.group = true; + + // lets generate this when the shader ? + this.syncUniforms = {}; + + /** + * dirty version + * @protected + * @member {number} + */ + this.dirtyId = 0; + + /** + * unique id + * @protected + * @member {number} + */ + this.id = UID$2++; + + /** + * Uniforms wont be changed after creation + * @member {boolean} + */ + this.static = !!_static; +}; + +UniformGroup.prototype.update = function update () +{ + this.dirtyId++; +}; + +UniformGroup.prototype.add = function add (name, uniforms, _static) +{ + this.uniforms[name] = new UniformGroup(uniforms, _static); +}; + +UniformGroup.from = function from (uniforms, _static) +{ + return new UniformGroup(uniforms, _static); +}; + +/** + * System plugin to the renderer to manage filter states. + * + * @class + * @private + */ +var FilterState = function FilterState() +{ + this.renderTexture = null; + + /** + * Target of the filters + * We store for case when custom filter wants to know the element it was applied on + * @member {PIXI.DisplayObject} + * @private + */ + this.target = null; + + /** + * Compatibility with PixiJS v4 filters + * @member {boolean} + * @default false + * @private + */ + this.legacy = false; + + /** + * Resolution of filters + * @member {number} + * @default 1 + * @private + */ + this.resolution = 1; + + // next three fields are created only for root + // re-assigned for everything else + + /** + * Source frame + * @member {PIXI.Rectangle} + * @private + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @private + */ + this.destinationFrame = new Rectangle(); + + /** + * Collection of filters + * @member {PIXI.Filter[]} + * @private + */ + this.filters = []; +}; + +/** + * clears the state + * @private + */ +FilterState.prototype.clear = function clear () +{ + this.target = null; + this.filters = null; + this.renderTexture = null; +}; + +/** + * System plugin to the renderer to manage the filters. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var FilterSystem = /*@__PURE__*/(function (System) { + function FilterSystem(renderer) + { + System.call(this, renderer); + + /** + * List of filters for the FilterSystem + * @member {Object[]} + * @readonly + */ + this.defaultFilterStack = [{}]; + + /** + * stores a bunch of PO2 textures used for filtering + * @member {Object} + */ + this.texturePool = new RenderTexturePool(); + + this.texturePool.setScreenSize(renderer.view); + + /** + * a pool for storing filter states, save us creating new ones each tick + * @member {Object[]} + */ + this.statePool = []; + + /** + * A very simple geometry used when drawing a filter effect to the screen + * @member {PIXI.Quad} + */ + this.quad = new Quad(); + + /** + * Quad UVs + * @member {PIXI.QuadUv} + */ + this.quadUv = new QuadUv(); + + /** + * Temporary rect for maths + * @type {PIXI.Rectangle} + */ + this.tempRect = new Rectangle(); + + /** + * Active state + * @member {object} + */ + this.activeState = {}; + + /** + * This uniform group is attached to filter uniforms when used + * @member {PIXI.UniformGroup} + * @property {PIXI.Rectangle} outputFrame + * @property {Float32Array} inputSize + * @property {Float32Array} inputPixel + * @property {Float32Array} inputClamp + * @property {Number} resolution + * @property {Float32Array} filterArea + * @property {Fload32Array} filterClamp + */ + this.globalUniforms = new UniformGroup({ + outputFrame: this.tempRect, + inputSize: new Float32Array(4), + inputPixel: new Float32Array(4), + inputClamp: new Float32Array(4), + resolution: 1, + + // legacy variables + filterArea: new Float32Array(4), + filterClamp: new Float32Array(4), + }, true); + + this._pixelsWidth = renderer.view.width; + this._pixelsHeight = renderer.view.height; + } + + if ( System ) FilterSystem.__proto__ = System; + FilterSystem.prototype = Object.create( System && System.prototype ); + FilterSystem.prototype.constructor = FilterSystem; + + /** + * Adds a new filter to the System. + * + * @param {PIXI.DisplayObject} target - The target of the filter to render. + * @param {PIXI.Filter[]} filters - The filters to apply. + */ + FilterSystem.prototype.push = function push (target, filters) + { + var renderer = this.renderer; + var filterStack = this.defaultFilterStack; + var state = this.statePool.pop() || new FilterState(); + + var resolution = filters[0].resolution; + var padding = filters[0].padding; + var autoFit = filters[0].autoFit; + var legacy = filters[0].legacy; + + for (var i = 1; i < filters.length; i++) + { + var filter = filters[i]; + + // lets use the lowest resolution.. + resolution = Math.min(resolution, filter.resolution); + // and the largest amount of padding! + padding = Math.max(padding, filter.padding); + // only auto fit if all filters are autofit + autoFit = autoFit || filter.autoFit; + + legacy = legacy || filter.legacy; + } + + if (filterStack.length === 1) + { + this.defaultFilterStack[0].renderTexture = renderer.renderTexture.current; + } + + filterStack.push(state); + + state.resolution = resolution; + + state.legacy = legacy; + + state.target = target; + + state.sourceFrame.copyFrom(target.filterArea || target.getBounds(true)); + + state.sourceFrame.pad(padding); + if (autoFit) + { + state.sourceFrame.fit(this.renderer.renderTexture.sourceFrame); + } + + // round to whole number based on resolution + state.sourceFrame.ceil(resolution); + + state.renderTexture = this.getOptimalFilterTexture(state.sourceFrame.width, state.sourceFrame.height, resolution); + state.filters = filters; + + state.destinationFrame.width = state.renderTexture.width; + state.destinationFrame.height = state.renderTexture.height; + + state.renderTexture.filterFrame = state.sourceFrame; + + renderer.renderTexture.bind(state.renderTexture, state.sourceFrame);// /, state.destinationFrame); + renderer.renderTexture.clear(); + }; + + /** + * Pops off the filter and applies it. + * + */ + FilterSystem.prototype.pop = function pop () + { + var filterStack = this.defaultFilterStack; + var state = filterStack.pop(); + var filters = state.filters; + + this.activeState = state; + + var globalUniforms = this.globalUniforms.uniforms; + + globalUniforms.outputFrame = state.sourceFrame; + globalUniforms.resolution = state.resolution; + + var inputSize = globalUniforms.inputSize; + var inputPixel = globalUniforms.inputPixel; + var inputClamp = globalUniforms.inputClamp; + + inputSize[0] = state.destinationFrame.width; + inputSize[1] = state.destinationFrame.height; + inputSize[2] = 1.0 / inputSize[0]; + inputSize[3] = 1.0 / inputSize[1]; + + inputPixel[0] = inputSize[0] * state.resolution; + inputPixel[1] = inputSize[1] * state.resolution; + inputPixel[2] = 1.0 / inputPixel[0]; + inputPixel[3] = 1.0 / inputPixel[1]; + + inputClamp[0] = 0.5 * inputPixel[2]; + inputClamp[1] = 0.5 * inputPixel[3]; + inputClamp[2] = (state.sourceFrame.width * inputSize[2]) - (0.5 * inputPixel[2]); + inputClamp[3] = (state.sourceFrame.height * inputSize[3]) - (0.5 * inputPixel[3]); + + // only update the rect if its legacy.. + if (state.legacy) + { + var filterArea = globalUniforms.filterArea; + + filterArea[0] = state.destinationFrame.width; + filterArea[1] = state.destinationFrame.height; + filterArea[2] = state.sourceFrame.x; + filterArea[3] = state.sourceFrame.y; + + globalUniforms.filterClamp = globalUniforms.inputClamp; + } + + this.globalUniforms.update(); + + var lastState = filterStack[filterStack.length - 1]; + + if (filters.length === 1) + { + filters[0].apply(this, state.renderTexture, lastState.renderTexture, false, state); + + this.returnFilterTexture(state.renderTexture); + } + else + { + var flip = state.renderTexture; + var flop = this.getOptimalFilterTexture( + flip.width, + flip.height, + state.resolution + ); + + flop.filterFrame = flip.filterFrame; + + var i = 0; + + for (i = 0; i < filters.length - 1; ++i) + { + filters[i].apply(this, flip, flop, true, state); + + var t = flip; + + flip = flop; + flop = t; + } + + filters[i].apply(this, flip, lastState.renderTexture, false, state); + + this.returnFilterTexture(flip); + this.returnFilterTexture(flop); + } + + state.clear(); + this.statePool.push(state); + }; + + /** + * Draws a filter. + * + * @param {PIXI.Filter} filter - The filter to draw. + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + */ + FilterSystem.prototype.applyFilter = function applyFilter (filter, input, output, clear) + { + var renderer = this.renderer; + + renderer.renderTexture.bind(output, output ? output.filterFrame : null); + + if (clear) + { + // gl.disable(gl.SCISSOR_TEST); + renderer.renderTexture.clear(); + // gl.enable(gl.SCISSOR_TEST); + } + + // set the uniforms.. + filter.uniforms.uSampler = input; + filter.uniforms.filterGlobals = this.globalUniforms; + + // TODO make it so that the order of this does not matter.. + // because it does at the moment cos of global uniforms. + // they need to get resynced + + renderer.state.set(filter.state); + renderer.shader.bind(filter); + + if (filter.legacy) + { + this.quadUv.map(input._frame, input.filterFrame); + + renderer.geometry.bind(this.quadUv); + renderer.geometry.draw(DRAW_MODES.TRIANGLES); + } + else + { + renderer.geometry.bind(this.quad); + renderer.geometry.draw(DRAW_MODES.TRIANGLE_STRIP); + } + }; + + /** + * Multiply _input normalized coordinates_ to this matrix to get _sprite texture normalized coordinates_. + * + * Use `outputMatrix * vTextureCoord` in the shader. + * + * @param {PIXI.Matrix} outputMatrix - The matrix to output to. + * @param {PIXI.Sprite} sprite - The sprite to map to. + * @return {PIXI.Matrix} The mapped matrix. + */ + FilterSystem.prototype.calculateSpriteMatrix = function calculateSpriteMatrix (outputMatrix, sprite) + { + var ref = this.activeState; + var sourceFrame = ref.sourceFrame; + var destinationFrame = ref.destinationFrame; + var ref$1 = sprite._texture; + var orig = ref$1.orig; + var mappedMatrix = outputMatrix.set(destinationFrame.width, 0, 0, + destinationFrame.height, sourceFrame.x, sourceFrame.y); + var worldTransform = sprite.worldTransform.copyTo(Matrix.TEMP_MATRIX); + + worldTransform.invert(); + mappedMatrix.prepend(worldTransform); + mappedMatrix.scale(1.0 / orig.width, 1.0 / orig.height); + mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y); + + return mappedMatrix; + }; + + /** + * Destroys this Filter System. + */ + FilterSystem.prototype.destroy = function destroy () + { + // Those textures has to be destroyed by RenderTextureSystem or FramebufferSystem + this.texturePool.clear(false); + }; + + /** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ + FilterSystem.prototype.getOptimalFilterTexture = function getOptimalFilterTexture (minWidth, minHeight, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + return this.texturePool.getOptimalTexture(minWidth, minHeight, resolution); + }; + + /** + * Gets extra render texture to use inside current filter + * To be compliant with older filters, you can use params in any order + * + * @param {PIXI.RenderTexture} [input] renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * @returns {PIXI.RenderTexture} + */ + FilterSystem.prototype.getFilterTexture = function getFilterTexture (input, resolution) + { + if (typeof input === 'number') + { + var swap = input; + + input = resolution; + resolution = swap; + } + + input = input || this.activeState.renderTexture; + + var filterTexture = this.texturePool.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; + }; + + /** + * Frees a render texture back into the pool. + * + * @param {PIXI.RenderTexture} renderTexture - The renderTarget to free + */ + FilterSystem.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) + { + this.texturePool.returnTexture(renderTexture); + }; + + /** + * Empties the texture pool. + */ + FilterSystem.prototype.emptyPool = function emptyPool () + { + this.texturePool.clear(true); + }; + + /** + * calls `texturePool.resize()`, affects fullScreen renderTextures + */ + FilterSystem.prototype.resize = function resize () + { + this.texturePool.setScreenSize(this.renderer.view); + }; + + return FilterSystem; +}(System)); + +/** + * Base for a common object renderer that can be used as a + * system renderer plugin. + * + * @class + * @extends PIXI.System + * @memberof PIXI + */ +var ObjectRenderer = function ObjectRenderer(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Stub method that should be used to empty the current + * batch by rendering objects now. + */ +ObjectRenderer.prototype.flush = function flush () +{ + // flush! +}; + +/** + * Generic destruction method that frees all resources. This + * should be called by subclasses. + */ +ObjectRenderer.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Stub method that initializes any state required before + * rendering starts. It is different from the `prerender` + * signal, which occurs every frame, in that it is called + * whenever an object requests _this_ renderer specifically. + */ +ObjectRenderer.prototype.start = function start () +{ + // set the shader.. +}; + +/** + * Stops the renderer. It should free up any state and + * become dormant. + */ +ObjectRenderer.prototype.stop = function stop () +{ + this.flush(); +}; + +/** + * Keeps the object to render. It doesn't have to be + * rendered immediately. + * + * @param {PIXI.DisplayObject} object - The object to render. + */ +ObjectRenderer.prototype.render = function render (object) // eslint-disable-line no-unused-vars +{ + // render the object +}; + +/** + * System plugin to the renderer to manage batching. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var BatchSystem = /*@__PURE__*/(function (System) { + function BatchSystem(renderer) + { + System.call(this, renderer); + + /** + * An empty renderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.emptyRenderer = new ObjectRenderer(renderer); + + /** + * The currently active ObjectRenderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.currentRenderer = this.emptyRenderer; + } + + if ( System ) BatchSystem.__proto__ = System; + BatchSystem.prototype = Object.create( System && System.prototype ); + BatchSystem.prototype.constructor = BatchSystem; + + /** + * Changes the current renderer to the one given in parameter + * + * @param {PIXI.ObjectRenderer} objectRenderer - The object renderer to use. + */ + BatchSystem.prototype.setObjectRenderer = function setObjectRenderer (objectRenderer) + { + if (this.currentRenderer === objectRenderer) + { + return; + } + + this.currentRenderer.stop(); + this.currentRenderer = objectRenderer; + + this.currentRenderer.start(); + }; + + /** + * This should be called if you wish to do some custom rendering + * It will basically render anything that may be batched up such as sprites + */ + BatchSystem.prototype.flush = function flush () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + /** + * Reset the system to an empty renderer + */ + BatchSystem.prototype.reset = function reset () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + return BatchSystem; +}(System)); + +/** + * The maximum support for using WebGL. If a device does not + * support WebGL version, for instance WebGL 2, it will still + * attempt to fallback support to WebGL 1. If you want to + * explicitly remove feature support to target a more stable + * baseline, prefer a lower environment. + * + * Due to {@link https://bugs.chromium.org/p/chromium/issues/detail?id=934823|bug in chromium} + * we disable webgl2 by default for all non-apple mobile devices. + * + * @static + * @name PREFER_ENV + * @memberof PIXI.settings + * @type {number} + * @default PIXI.ENV.WEBGL2 + */ +settings.PREFER_ENV = isMobile.any ? ENV.WEBGL : ENV.WEBGL2; + +var CONTEXT_UID = 0; + +/** + * System plugin to the renderer to manage the context. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var ContextSystem = /*@__PURE__*/(function (System) { + function ContextSystem(renderer) + { + System.call(this, renderer); + + /** + * Either 1 or 2 to reflect the WebGL version being used + * @member {number} + * @readonly + */ + this.webGLVersion = 1; + + /** + * Extensions being used + * @member {object} + * @readonly + * @property {WEBGL_draw_buffers} drawBuffers - WebGL v1 extension + * @property {WEBGL_depth_texture} depthTexture - WebGL v1 extension + * @property {OES_texture_float} floatTexture - WebGL v1 extension + * @property {WEBGL_lose_context} loseContext - WebGL v1 extension + * @property {OES_vertex_array_object} vertexArrayObject - WebGL v1 extension + * @property {EXT_texture_filter_anisotropic} anisotropicFiltering - WebGL v1 and v2 extension + */ + this.extensions = {}; + + // Bind functions + this.handleContextLost = this.handleContextLost.bind(this); + this.handleContextRestored = this.handleContextRestored.bind(this); + + renderer.view.addEventListener('webglcontextlost', this.handleContextLost, false); + renderer.view.addEventListener('webglcontextrestored', this.handleContextRestored, false); + } + + if ( System ) ContextSystem.__proto__ = System; + ContextSystem.prototype = Object.create( System && System.prototype ); + ContextSystem.prototype.constructor = ContextSystem; + + var prototypeAccessors = { isLost: { configurable: true } }; + + /** + * `true` if the context is lost + * @member {boolean} + * @readonly + */ + prototypeAccessors.isLost.get = function () + { + return (!this.gl || this.gl.isContextLost()); + }; + + /** + * Handle the context change event + * @param {WebGLRenderingContext} gl new webgl context + */ + ContextSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + + // restore a context if it was previously lost + if (gl.isContextLost() && gl.getExtension('WEBGL_lose_context')) + { + gl.getExtension('WEBGL_lose_context').restoreContext(); + } + }; + + /** + * Initialize the context + * + * @protected + * @param {WebGLRenderingContext} gl - WebGL context + */ + ContextSystem.prototype.initFromContext = function initFromContext (gl) + { + this.gl = gl; + this.validateContext(gl); + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + this.renderer.runners.contextChange.run(gl); + }; + + /** + * Initialize from context options + * + * @protected + * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext + * @param {object} options - context attributes + */ + ContextSystem.prototype.initFromOptions = function initFromOptions (options) + { + var gl = this.createContext(this.renderer.view, options); + + this.initFromContext(gl); + }; + + /** + * Helper class to create a WebGL Context + * + * @param canvas {HTMLCanvasElement} the canvas element that we will get the context from + * @param options {object} An options object that gets passed in to the canvas element containing the context attributes + * @see https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement/getContext + * @return {WebGLRenderingContext} the WebGL context + */ + ContextSystem.prototype.createContext = function createContext (canvas, options) + { + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', options); + } + + if (gl) + { + this.webGLVersion = 2; + } + else + { + this.webGLVersion = 1; + + gl = canvas.getContext('webgl', options) + || canvas.getContext('experimental-webgl', options); + + if (!gl) + { + // fail, not able to get a context + throw new Error('This browser does not support WebGL. Try using the canvas renderer'); + } + } + + this.gl = gl; + + this.getExtensions(); + + return gl; + }; + + /** + * Auto-populate the extensions + * + * @protected + */ + ContextSystem.prototype.getExtensions = function getExtensions () + { + // time to set up default extensions that Pixi uses. + var ref = this; + var gl = ref.gl; + + if (this.webGLVersion === 1) + { + Object.assign(this.extensions, { + drawBuffers: gl.getExtension('WEBGL_draw_buffers'), + depthTexture: gl.getExtension('WEBKIT_WEBGL_depth_texture'), + loseContext: gl.getExtension('WEBGL_lose_context'), + vertexArrayObject: gl.getExtension('OES_vertex_array_object') + || gl.getExtension('MOZ_OES_vertex_array_object') + || gl.getExtension('WEBKIT_OES_vertex_array_object'), + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + uint32ElementIndex: gl.getExtension('OES_element_index_uint'), + // Floats and half-floats + floatTexture: gl.getExtension('OES_texture_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + textureHalfFloat: gl.getExtension('OES_texture_half_float'), + textureHalfFloatLinear: gl.getExtension('OES_texture_half_float_linear'), + }); + } + else if (this.webGLVersion === 2) + { + Object.assign(this.extensions, { + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + // Floats and half-floats + colorBufferFloat: gl.getExtension('EXT_color_buffer_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + }); + } + }; + + /** + * Handles a lost webgl context + * + * @protected + * @param {WebGLContextEvent} event - The context lost event. + */ + ContextSystem.prototype.handleContextLost = function handleContextLost (event) + { + event.preventDefault(); + }; + + /** + * Handles a restored webgl context + * + * @protected + */ + ContextSystem.prototype.handleContextRestored = function handleContextRestored () + { + this.renderer.runners.contextChange.run(this.gl); + }; + + ContextSystem.prototype.destroy = function destroy () + { + var view = this.renderer.view; + + // remove listeners + view.removeEventListener('webglcontextlost', this.handleContextLost); + view.removeEventListener('webglcontextrestored', this.handleContextRestored); + + this.gl.useProgram(null); + + if (this.extensions.loseContext) + { + this.extensions.loseContext.loseContext(); + } + }; + + /** + * Handle the post-render runner event + * + * @protected + */ + ContextSystem.prototype.postrender = function postrender () + { + this.gl.flush(); + }; + + /** + * Validate context + * + * @protected + * @param {WebGLRenderingContext} gl - Render context + */ + ContextSystem.prototype.validateContext = function validateContext (gl) + { + var attributes = gl.getContextAttributes(); + + // this is going to be fairly simple for now.. but at least we have room to grow! + if (!attributes.stencil) + { + /* eslint-disable max-len */ + + /* eslint-disable no-console */ + console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly'); + /* eslint-enable no-console */ + + /* eslint-enable max-len */ + } + }; + + Object.defineProperties( ContextSystem.prototype, prototypeAccessors ); + + return ContextSystem; +}(System)); + +/** + * System plugin to the renderer to manage framebuffers. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var FramebufferSystem = /*@__PURE__*/(function (System) { + function FramebufferSystem(renderer) + { + System.call(this, renderer); + + /** + * A list of managed framebuffers + * @member {PIXI.Framebuffer[]} + * @readonly + */ + this.managedFramebuffers = []; + + /** + * Framebuffer value that shows that we don't know what is bound + * @member {Framebuffer} + * @readonly + */ + this.unknownFramebuffer = new Framebuffer(10, 10); + } + + if ( System ) FramebufferSystem.__proto__ = System; + FramebufferSystem.prototype = Object.create( System && System.prototype ); + FramebufferSystem.prototype.constructor = FramebufferSystem; + + var prototypeAccessors = { size: { configurable: true } }; + + /** + * Sets up the renderer context and necessary buffers. + */ + FramebufferSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + this.hasMRT = true; + this.writeDepthTexture = true; + + this.disposeAll(true); + + // webgl2 + if (this.renderer.context.webGLVersion === 1) + { + // webgl 1! + var nativeDrawBuffersExtension = this.renderer.context.extensions.drawBuffers; + var nativeDepthTextureExtension = this.renderer.context.extensions.depthTexture; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeDrawBuffersExtension = null; + nativeDepthTextureExtension = null; + } + + if (nativeDrawBuffersExtension) + { + gl.drawBuffers = function (activeTextures) { return nativeDrawBuffersExtension.drawBuffersWEBGL(activeTextures); }; + } + else + { + this.hasMRT = false; + gl.drawBuffers = function () { + // empty + }; + } + + if (!nativeDepthTextureExtension) + { + this.writeDepthTexture = false; + } + } + }; + + /** + * Bind a framebuffer + * + * @param {PIXI.Framebuffer} framebuffer + * @param {PIXI.Rectangle} [frame] frame, default is framebuffer size + */ + FramebufferSystem.prototype.bind = function bind (framebuffer, frame) + { + var ref = this; + var gl = ref.gl; + + if (framebuffer) + { + // TODO caching layer! + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID] || this.initFramebuffer(framebuffer); + + if (this.current !== framebuffer) + { + this.current = framebuffer; + gl.bindFramebuffer(gl.FRAMEBUFFER, fbo.framebuffer); + } + // make sure all textures are unbound.. + + // now check for updates... + if (fbo.dirtyId !== framebuffer.dirtyId) + { + fbo.dirtyId = framebuffer.dirtyId; + + if (fbo.dirtyFormat !== framebuffer.dirtyFormat) + { + fbo.dirtyFormat = framebuffer.dirtyFormat; + this.updateFramebuffer(framebuffer); + } + else if (fbo.dirtySize !== framebuffer.dirtySize) + { + fbo.dirtySize = framebuffer.dirtySize; + this.resizeFramebuffer(framebuffer); + } + } + + for (var i = 0; i < framebuffer.colorTextures.length; i++) + { + if (framebuffer.colorTextures[i].texturePart) + { + this.renderer.texture.unbind(framebuffer.colorTextures[i].texture); + } + else + { + this.renderer.texture.unbind(framebuffer.colorTextures[i]); + } + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.unbind(framebuffer.depthTexture); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, framebuffer.width, framebuffer.height); + } + } + else + { + if (this.current) + { + this.current = null; + gl.bindFramebuffer(gl.FRAMEBUFFER, null); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, this.renderer.width, this.renderer.height); + } + } + }; + + /** + * Set the WebGLRenderingContext's viewport. + * + * @param {Number} x - X position of viewport + * @param {Number} y - Y position of viewport + * @param {Number} width - Width of viewport + * @param {Number} height - Height of viewport + */ + FramebufferSystem.prototype.setViewport = function setViewport (x, y, width, height) + { + var v = this.viewport; + + if (v.width !== width || v.height !== height || v.x !== x || v.y !== y) + { + v.x = x; + v.y = y; + v.width = width; + v.height = height; + + this.gl.viewport(x, y, width, height); + } + }; + + /** + * Get the size of the current width and height. Returns object with `width` and `height` values. + * + * @member {object} + * @readonly + */ + prototypeAccessors.size.get = function () + { + if (this.current) + { + // TODO store temp + return { x: 0, y: 0, width: this.current.width, height: this.current.height }; + } + + return { x: 0, y: 0, width: this.renderer.width, height: this.renderer.height }; + }; + + /** + * Clear the color of the context + * + * @param {Number} r - Red value from 0 to 1 + * @param {Number} g - Green value from 0 to 1 + * @param {Number} b - Blue value from 0 to 1 + * @param {Number} a - Alpha value from 0 to 1 + */ + FramebufferSystem.prototype.clear = function clear (r, g, b, a) + { + var ref = this; + var gl = ref.gl; + + // TODO clear color can be set only one right? + gl.clearColor(r, g, b, a); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + }; + + /** + * Initialize framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.initFramebuffer = function initFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + // TODO - make this a class? + var fbo = { + framebuffer: gl.createFramebuffer(), + stencil: null, + dirtyId: 0, + dirtyFormat: 0, + dirtySize: 0, + }; + + framebuffer.glFramebuffers[this.CONTEXT_UID] = fbo; + + this.managedFramebuffers.push(framebuffer); + framebuffer.disposeRunner.add(this); + + return fbo; + }; + + /** + * Resize the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.resizeFramebuffer = function resizeFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (fbo.stencil) + { + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + } + + var colorTextures = framebuffer.colorTextures; + + for (var i = 0; i < colorTextures.length; i++) + { + this.renderer.texture.bind(colorTextures[i], 0); + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.bind(framebuffer.depthTexture, 0); + } + }; + + /** + * Update the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.updateFramebuffer = function updateFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + // bind the color texture + var colorTextures = framebuffer.colorTextures; + + var count = colorTextures.length; + + if (!gl.drawBuffers) + { + count = Math.min(count, 1); + } + + var activeTextures = []; + + for (var i = 0; i < count; i++) + { + var texture = framebuffer.colorTextures[i]; + + if (texture.texturePart) + { + this.renderer.texture.bind(texture.texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_CUBE_MAP_NEGATIVE_X + texture.side, + texture.texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + else + { + this.renderer.texture.bind(texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_2D, + texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + + activeTextures.push(gl.COLOR_ATTACHMENT0 + i); + } + + if (activeTextures.length > 1) + { + gl.drawBuffers(activeTextures); + } + + if (framebuffer.depthTexture) + { + var writeDepthTexture = this.writeDepthTexture; + + if (writeDepthTexture) + { + var depthTexture = framebuffer.depthTexture; + + this.renderer.texture.bind(depthTexture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.DEPTH_ATTACHMENT, + gl.TEXTURE_2D, + depthTexture._glTextures[this.CONTEXT_UID].texture, + 0); + } + } + + if (!fbo.stencil && (framebuffer.stencil || framebuffer.depth)) + { + fbo.stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + // TODO.. this is depth AND stencil? + if (!framebuffer.depthTexture) + { // you can't have both, so one should take priority if enabled + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, fbo.stencil); + } + } + }; + + /** + * Disposes framebuffer + * @param {PIXI.Framebuffer} framebuffer framebuffer that has to be disposed of + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeFramebuffer = function disposeFramebuffer (framebuffer, contextLost) + { + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + var gl = this.gl; + + if (!fbo) + { + return; + } + + delete framebuffer.glFramebuffers[this.CONTEXT_UID]; + + var index = this.managedFramebuffers.indexOf(framebuffer); + + if (index >= 0) + { + this.managedFramebuffers.splice(index, 1); + } + + framebuffer.disposeRunner.remove(this); + + if (!contextLost) + { + gl.deleteFramebuffer(fbo.framebuffer); + if (fbo.stencil) + { + gl.deleteRenderbuffer(fbo.stencil); + } + } + }; + + /** + * Disposes all framebuffers, but not textures bound to them + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeAll = function disposeAll (contextLost) + { + var list = this.managedFramebuffers; + + this.managedFramebuffers = []; + + for (var i = 0; i < list.length; i++) + { + this.disposeFramebuffer(list[i], contextLost); + } + }; + + /** + * Forcing creation of stencil buffer for current framebuffer, if it wasn't done before. + * Used by MaskSystem, when its time to use stencil mask for Graphics element. + * + * Its an alternative for public lazy `framebuffer.enableStencil`, in case we need stencil without rebind. + * + * @private + */ + FramebufferSystem.prototype.forceStencil = function forceStencil () + { + var framebuffer = this.current; + + if (!framebuffer) + { + return; + } + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (!fbo || fbo.stencil) + { + return; + } + framebuffer.enableStencil(); + + var w = framebuffer.width; + var h = framebuffer.height; + var gl = this.gl; + var stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, w, h); + + fbo.stencil = stencil; + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, stencil); + }; + + /** + * resets framebuffer stored state, binds screen framebuffer + * + * should be called before renderTexture reset() + */ + FramebufferSystem.prototype.reset = function reset () + { + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + }; + + Object.defineProperties( FramebufferSystem.prototype, prototypeAccessors ); + + return FramebufferSystem; +}(System)); + +var GLBuffer = function GLBuffer(buffer) +{ + this.buffer = buffer; + this.updateID = -1; + this.byteLength = -1; + this.refCount = 0; +}; + +var byteSizeMap$1 = { 5126: 4, 5123: 2, 5121: 1 }; + +/** + * System plugin to the renderer to manage geometry. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var GeometrySystem = /*@__PURE__*/(function (System) { + function GeometrySystem(renderer) + { + System.call(this, renderer); + + this._activeGeometry = null; + this._activeVao = null; + + /** + * `true` if we has `*_vertex_array_object` extension + * @member {boolean} + * @readonly + */ + this.hasVao = true; + + /** + * `true` if has `ANGLE_instanced_arrays` extension + * @member {boolean} + * @readonly + */ + this.hasInstance = true; + + /** + * `true` if support `gl.UNSIGNED_INT` in `gl.drawElements` or `gl.drawElementsInstanced` + * @member {boolean} + * @readonly + */ + this.canUseUInt32ElementIndex = false; + + /** + * A cache of currently bound buffer, + * contains only two members with keys ARRAY_BUFFER and ELEMENT_ARRAY_BUFFER + * @member {Object.} + * @readonly + */ + this.boundBuffers = {}; + + /** + * Cache for all geometries by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedGeometries = {}; + + /** + * Cache for all buffers by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedBuffers = {}; + } + + if ( System ) GeometrySystem.__proto__ = System; + GeometrySystem.prototype = Object.create( System && System.prototype ); + GeometrySystem.prototype.constructor = GeometrySystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + GeometrySystem.prototype.contextChange = function contextChange () + { + this.disposeAll(true); + + var gl = this.gl = this.renderer.gl; + var context = this.renderer.context; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + // webgl2 + if (!gl.createVertexArray) + { + // webgl 1! + var nativeVaoExtension = this.renderer.context.extensions.vertexArrayObject; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeVaoExtension = null; + } + + if (nativeVaoExtension) + { + gl.createVertexArray = function () { return nativeVaoExtension.createVertexArrayOES(); }; + + gl.bindVertexArray = function (vao) { return nativeVaoExtension.bindVertexArrayOES(vao); }; + + gl.deleteVertexArray = function (vao) { return nativeVaoExtension.deleteVertexArrayOES(vao); }; + } + else + { + this.hasVao = false; + gl.createVertexArray = function () { + // empty + }; + + gl.bindVertexArray = function () { + // empty + }; + + gl.deleteVertexArray = function () { + // empty + }; + } + } + + if (!gl.vertexAttribDivisor) + { + var instanceExt = gl.getExtension('ANGLE_instanced_arrays'); + + if (instanceExt) + { + gl.vertexAttribDivisor = function (a, b) { return instanceExt.vertexAttribDivisorANGLE(a, b); }; + + gl.drawElementsInstanced = function (a, b, c, d, e) { return instanceExt.drawElementsInstancedANGLE(a, b, c, d, e); }; + + gl.drawArraysInstanced = function (a, b, c, d) { return instanceExt.drawArraysInstancedANGLE(a, b, c, d); }; + } + else + { + this.hasInstance = false; + } + } + + this.canUseUInt32ElementIndex = context.webGLVersion === 2 || !!context.extensions.uint32ElementIndex; + }; + + /** + * Binds geometry so that is can be drawn. Creating a Vao if required + * + * @param {PIXI.Geometry} geometry instance of geometry to bind + * @param {PIXI.Shader} [shader] instance of shader to use vao for + */ + GeometrySystem.prototype.bind = function bind (geometry, shader) + { + shader = shader || this.renderer.shader.shader; + + var ref = this; + var gl = ref.gl; + + // not sure the best way to address this.. + // currently different shaders require different VAOs for the same geometry + // Still mulling over the best way to solve this one.. + // will likely need to modify the shader attribute locations at run time! + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + if (!vaos) + { + this.managedGeometries[geometry.id] = geometry; + geometry.disposeRunner.add(this); + geometry.glVertexArrayObjects[this.CONTEXT_UID] = vaos = {}; + } + + var vao = vaos[shader.program.id] || this.initGeometryVao(geometry, shader.program); + + this._activeGeometry = geometry; + + if (this._activeVao !== vao) + { + this._activeVao = vao; + + if (this.hasVao) + { + gl.bindVertexArray(vao); + } + else + { + this.activateVao(geometry, shader.program); + } + } + + // TODO - optimise later! + // don't need to loop through if nothing changed! + // maybe look to add an 'autoupdate' to geometry? + this.updateBuffers(); + }; + + /** + * Reset and unbind any active VAO and geometry + */ + GeometrySystem.prototype.reset = function reset () + { + this.unbind(); + }; + + /** + * Update buffers + * @protected + */ + GeometrySystem.prototype.updateBuffers = function updateBuffers () + { + var geometry = this._activeGeometry; + var ref = this; + var gl = ref.gl; + + for (var i = 0; i < geometry.buffers.length; i++) + { + var buffer = geometry.buffers[i]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + + if (buffer._updateID !== glBuffer.updateID) + { + glBuffer.updateID = buffer._updateID; + + // TODO can cache this on buffer! maybe added a getter / setter? + var type = buffer.index ? gl.ELEMENT_ARRAY_BUFFER : gl.ARRAY_BUFFER; + + // TODO this could change if the VAO changes... + // need to come up with a better way to cache.. + // if (this.boundBuffers[type] !== glBuffer) + // { + // this.boundBuffers[type] = glBuffer; + gl.bindBuffer(type, glBuffer.buffer); + // } + + this._boundBuffer = glBuffer; + + if (glBuffer.byteLength >= buffer.data.byteLength) + { + // offset is always zero for now! + gl.bufferSubData(type, 0, buffer.data); + } + else + { + var drawType = buffer.static ? gl.STATIC_DRAW : gl.DYNAMIC_DRAW; + + glBuffer.byteLength = buffer.data.byteLength; + gl.bufferData(type, buffer.data, drawType); + } + } + } + }; + + /** + * Check compability between a geometry and a program + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Program instance + */ + GeometrySystem.prototype.checkCompatibility = function checkCompatibility (geometry, program) + { + // geometry must have at least all the attributes that the shader requires. + var geometryAttributes = geometry.attributes; + var shaderAttributes = program.attributeData; + + for (var j in shaderAttributes) + { + if (!geometryAttributes[j]) + { + throw new Error(("shader and geometry incompatible, geometry missing the \"" + j + "\" attribute")); + } + } + }; + + /** + * Takes a geometry and program and generates a unique signature for them. + * + * @param {PIXI.Geometry} geometry to get signature from + * @param {PIXI.Program} program to test geometry against + * @returns {String} Unique signature of the geometry and program + * @protected + */ + GeometrySystem.prototype.getSignature = function getSignature (geometry, program) + { + var attribs = geometry.attributes; + var shaderAttributes = program.attributeData; + + var strings = ['g', geometry.id]; + + for (var i in attribs) + { + if (shaderAttributes[i]) + { + strings.push(i); + } + } + + return strings.join('-'); + }; + + /** + * Creates or gets Vao with the same structure as the geometry and stores it on the geometry. + * If vao is created, it is bound automatically. + * + * @protected + * @param {PIXI.Geometry} geometry - Instance of geometry to to generate Vao for + * @param {PIXI.Program} program - Instance of program + */ + GeometrySystem.prototype.initGeometryVao = function initGeometryVao (geometry, program) + { + this.checkCompatibility(geometry, program); + + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + + var signature = this.getSignature(geometry, program); + + var vaoObjectHash = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + var vao = vaoObjectHash[signature]; + + if (vao) + { + // this will give us easy access to the vao + vaoObjectHash[program.id] = vao; + + return vao; + } + + var buffers = geometry.buffers; + var attributes = geometry.attributes; + var tempStride = {}; + var tempStart = {}; + + for (var j in buffers) + { + tempStride[j] = 0; + tempStart[j] = 0; + } + + for (var j$1 in attributes) + { + if (!attributes[j$1].size && program.attributeData[j$1]) + { + attributes[j$1].size = program.attributeData[j$1].size; + } + else if (!attributes[j$1].size) + { + console.warn(("PIXI Geometry attribute '" + j$1 + "' size cannot be determined (likely the bound shader does not have the attribute)")); // eslint-disable-line + } + + tempStride[attributes[j$1].buffer] += attributes[j$1].size * byteSizeMap$1[attributes[j$1].type]; + } + + for (var j$2 in attributes) + { + var attribute = attributes[j$2]; + var attribSize = attribute.size; + + if (attribute.stride === undefined) + { + if (tempStride[attribute.buffer] === attribSize * byteSizeMap$1[attribute.type]) + { + attribute.stride = 0; + } + else + { + attribute.stride = tempStride[attribute.buffer]; + } + } + + if (attribute.start === undefined) + { + attribute.start = tempStart[attribute.buffer]; + + tempStart[attribute.buffer] += attribSize * byteSizeMap$1[attribute.type]; + } + } + + vao = gl.createVertexArray(); + + gl.bindVertexArray(vao); + + // first update - and create the buffers! + // only create a gl buffer if it actually gets + for (var i = 0; i < buffers.length; i++) + { + var buffer = buffers[i]; + + if (!buffer._glBuffers[CONTEXT_UID]) + { + buffer._glBuffers[CONTEXT_UID] = new GLBuffer(gl.createBuffer()); + this.managedBuffers[buffer.id] = buffer; + buffer.disposeRunner.add(this); + } + + buffer._glBuffers[CONTEXT_UID].refCount++; + } + + // TODO - maybe make this a data object? + // lets wait to see if we need to first! + + this.activateVao(geometry, program); + + this._activeVao = vao; + + // add it to the cache! + vaoObjectHash[program.id] = vao; + vaoObjectHash[signature] = vao; + + return vao; + }; + + /** + * Disposes buffer + * @param {PIXI.Buffer} buffer buffer with data + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeBuffer = function disposeBuffer (buffer, contextLost) + { + if (!this.managedBuffers[buffer.id]) + { + return; + } + + delete this.managedBuffers[buffer.id]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + var gl = this.gl; + + buffer.disposeRunner.remove(this); + + if (!glBuffer) + { + return; + } + + if (!contextLost) + { + gl.deleteBuffer(glBuffer.buffer); + } + + delete buffer._glBuffers[this.CONTEXT_UID]; + }; + + /** + * Disposes geometry + * @param {PIXI.Geometry} geometry Geometry with buffers. Only VAO will be disposed + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeGeometry = function disposeGeometry (geometry, contextLost) + { + if (!this.managedGeometries[geometry.id]) + { + return; + } + + delete this.managedGeometries[geometry.id]; + + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + var gl = this.gl; + var buffers = geometry.buffers; + + geometry.disposeRunner.remove(this); + + if (!vaos) + { + return; + } + + for (var i = 0; i < buffers.length; i++) + { + var buf = buffers[i]._glBuffers[this.CONTEXT_UID]; + + buf.refCount--; + if (buf.refCount === 0 && !contextLost) + { + this.disposeBuffer(buffers[i], contextLost); + } + } + + if (!contextLost) + { + for (var vaoId in vaos) + { + // delete only signatures, everything else are copies + if (vaoId[0] === 'g') + { + var vao = vaos[vaoId]; + + if (this._activeVao === vao) + { + this.unbind(); + } + gl.deleteVertexArray(vao); + } + } + } + + delete geometry.glVertexArrayObjects[this.CONTEXT_UID]; + }; + + /** + * dispose all WebGL resources of all managed geometries and buffers + * @param {boolean} [contextLost=false] If context was lost, we suppress `gl.delete` calls + */ + GeometrySystem.prototype.disposeAll = function disposeAll (contextLost) + { + var all = Object.keys(this.managedGeometries); + + for (var i = 0; i < all.length; i++) + { + this.disposeGeometry(this.managedGeometries[all[i]], contextLost); + } + all = Object.keys(this.managedBuffers); + for (var i$1 = 0; i$1 < all.length; i$1++) + { + this.disposeBuffer(this.managedBuffers[all[i$1]], contextLost); + } + }; + + /** + * Activate vertex array object + * + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Shader program instance + */ + GeometrySystem.prototype.activateVao = function activateVao (geometry, program) + { + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + var buffers = geometry.buffers; + var attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + // first update the index buffer if we have one.. + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, geometry.indexBuffer._glBuffers[CONTEXT_UID].buffer); + } + + var lastBuffer = null; + + // add a new one! + for (var j in attributes) + { + var attribute = attributes[j]; + var buffer = buffers[attribute.buffer]; + var glBuffer = buffer._glBuffers[CONTEXT_UID]; + + if (program.attributeData[j]) + { + if (lastBuffer !== glBuffer) + { + gl.bindBuffer(gl.ARRAY_BUFFER, glBuffer.buffer); + + lastBuffer = glBuffer; + } + + var location = program.attributeData[j].location; + + // TODO introduce state again + // we can optimise this for older devices that have no VAOs + gl.enableVertexAttribArray(location); + + gl.vertexAttribPointer(location, + attribute.size, + attribute.type || gl.FLOAT, + attribute.normalized, + attribute.stride, + attribute.start); + + if (attribute.instance) + { + // TODO calculate instance count based of this... + if (this.hasInstance) + { + gl.vertexAttribDivisor(location, 1); + } + else + { + throw new Error('geometry error, GPU Instancing is not supported on this device'); + } + } + } + } + }; + + /** + * Draw the geometry + * + * @param {Number} type - the type primitive to render + * @param {Number} [size] - the number of elements to be rendered + * @param {Number} [start] - Starting index + * @param {Number} [instanceCount] - the number of instances of the set of elements to execute + */ + GeometrySystem.prototype.draw = function draw (type, size, start, instanceCount) + { + var ref = this; + var gl = ref.gl; + var geometry = this._activeGeometry; + + // TODO.. this should not change so maybe cache the function? + + if (geometry.indexBuffer) + { + var byteSize = geometry.indexBuffer.data.BYTES_PER_ELEMENT; + var glType = byteSize === 2 ? gl.UNSIGNED_SHORT : gl.UNSIGNED_INT; + + if (byteSize === 2 || (byteSize === 4 && this.canUseUInt32ElementIndex)) + { + if (geometry.instanced) + { + /* eslint-disable max-len */ + gl.drawElementsInstanced(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize, instanceCount || 1); + /* eslint-enable max-len */ + } + else + { + /* eslint-disable max-len */ + gl.drawElements(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize); + /* eslint-enable max-len */ + } + } + else + { + console.warn('unsupported index buffer type: uint32'); + } + } + else if (geometry.instanced) + { + // TODO need a better way to calculate size.. + gl.drawArraysInstanced(type, start, size || geometry.getSize(), instanceCount || 1); + } + else + { + gl.drawArrays(type, start, size || geometry.getSize()); + } + + return this; + }; + + /** + * Unbind/reset everything + * @protected + */ + GeometrySystem.prototype.unbind = function unbind () + { + this.gl.bindVertexArray(null); + this._activeVao = null; + this._activeGeometry = null; + }; + + return GeometrySystem; +}(System)); + +/** + * @method compileProgram + * @private + * @memberof PIXI.glCore.shader + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @param fragmentSrc {string|string[]} The fragment shader source as an array of strings. + * @param attributeLocations {Object} An attribute location map that lets you manually set the attribute locations + * @return {WebGLProgram} the shader program + */ +function compileProgram(gl, vertexSrc, fragmentSrc, attributeLocations) +{ + var glVertShader = compileShader(gl, gl.VERTEX_SHADER, vertexSrc); + var glFragShader = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc); + + var program = gl.createProgram(); + + gl.attachShader(program, glVertShader); + gl.attachShader(program, glFragShader); + + // optionally, set the attributes manually for the program rather than letting WebGL decide.. + if (attributeLocations) + { + for (var i in attributeLocations) + { + gl.bindAttribLocation(program, attributeLocations[i], i); + } + } + + gl.linkProgram(program); + + // if linking fails, then log and cleanup + if (!gl.getProgramParameter(program, gl.LINK_STATUS)) + { + console.error('Pixi.js Error: Could not initialize shader.'); + console.error('gl.VALIDATE_STATUS', gl.getProgramParameter(program, gl.VALIDATE_STATUS)); + console.error('gl.getError()', gl.getError()); + + // if there is a program info log, log it + if (gl.getProgramInfoLog(program) !== '') + { + console.warn('Pixi.js Warning: gl.getProgramInfoLog()', gl.getProgramInfoLog(program)); + } + + gl.deleteProgram(program); + program = null; + } + + // clean up some shaders + gl.deleteShader(glVertShader); + gl.deleteShader(glFragShader); + + return program; +} + +/** + * @private + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param type {Number} the type, can be either VERTEX_SHADER or FRAGMENT_SHADER + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @return {WebGLShader} the shader + */ +function compileShader(gl, type, src) +{ + var shader = gl.createShader(type); + + gl.shaderSource(shader, src); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + console.warn(src); + console.error(gl.getShaderInfoLog(shader)); + + return null; + } + + return shader; +} + +/** + * @method defaultValue + * @memberof PIXI.glCore.shader + * @param type {String} Type of value + * @param size {Number} + * @private + */ +function defaultValue(type, size) +{ + switch (type) + { + case 'float': + return 0; + + case 'vec2': + return new Float32Array(2 * size); + + case 'vec3': + return new Float32Array(3 * size); + + case 'vec4': + return new Float32Array(4 * size); + + case 'int': + case 'sampler2D': + case 'sampler2DArray': + return 0; + + case 'ivec2': + return new Int32Array(2 * size); + + case 'ivec3': + return new Int32Array(3 * size); + + case 'ivec4': + return new Int32Array(4 * size); + + case 'bool': + return false; + + case 'bvec2': + + return booleanArray(2 * size); + + case 'bvec3': + return booleanArray(3 * size); + + case 'bvec4': + return booleanArray(4 * size); + + case 'mat2': + return new Float32Array([1, 0, + 0, 1]); + + case 'mat3': + return new Float32Array([1, 0, 0, + 0, 1, 0, + 0, 0, 1]); + + case 'mat4': + return new Float32Array([1, 0, 0, 0, + 0, 1, 0, 0, + 0, 0, 1, 0, + 0, 0, 0, 1]); + } + + return null; +} + +function booleanArray(size) +{ + var array = new Array(size); + + for (var i = 0; i < array.length; i++) + { + array[i] = false; + } + + return array; +} + +var unknownContext = {}; +var context = unknownContext; + +/** + * returns a little WebGL context to use for program inspection. + * + * @static + * @private + * @returns {webGL-context} a gl context to test with + */ +function getTestContext() +{ + if (context === unknownContext || context.isContextLost()) + { + var canvas = document.createElement('canvas'); + + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', {}); + } + + if (!gl) + { + gl = canvas.getContext('webgl', {}) + || canvas.getContext('experimental-webgl', {}); + + if (!gl) + { + // fail, not able to get a context + gl = null; + } + else + { + // for shader testing.. + gl.getExtension('WEBGL_draw_buffers'); + } + } + + context = gl; + } + + return context; +} + +var maxFragmentPrecision; + +function getMaxFragmentPrecision() +{ + if (!maxFragmentPrecision) + { + maxFragmentPrecision = PRECISION.MEDIUM; + var gl = getTestContext(); + + if (gl) + { + if (gl.getShaderPrecisionFormat) + { + var shaderFragment = gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT); + + maxFragmentPrecision = shaderFragment.precision ? PRECISION.HIGH : PRECISION.MEDIUM; + } + } + } + + return maxFragmentPrecision; +} + +/** + * Sets the float precision on the shader, ensuring the device supports the request precision. + * If the precision is already present, it just ensures that the device is able to handle it. + * + * @private + * @param {string} src - The shader source + * @param {string} requestedPrecision - The request float precision of the shader. Options are 'lowp', 'mediump' or 'highp'. + * @param {string} maxSupportedPrecision - The maximum precision the shader supports. + * + * @return {string} modified shader source + */ +function setPrecision(src, requestedPrecision, maxSupportedPrecision) +{ + if (src.substring(0, 9) !== 'precision') + { + // no precision supplied, so PixiJS will add the requested level. + var precision = requestedPrecision; + + // If highp is requested but not supported, downgrade precision to a level all devices support. + if (requestedPrecision === PRECISION.HIGH && maxSupportedPrecision !== PRECISION.HIGH) + { + precision = PRECISION.MEDIUM; + } + + return ("precision " + precision + " float;\n" + src); + } + else if (maxSupportedPrecision !== PRECISION.HIGH && src.substring(0, 15) === 'precision highp') + { + // precision was supplied, but at a level this device does not support, so downgrading to mediump. + return src.replace('precision highp', 'precision mediump'); + } + + return src; +} + +var GLSL_TO_SIZE = { + float: 1, + vec2: 2, + vec3: 3, + vec4: 4, + + int: 1, + ivec2: 2, + ivec3: 3, + ivec4: 4, + + bool: 1, + bvec2: 2, + bvec3: 3, + bvec4: 4, + + mat2: 4, + mat3: 9, + mat4: 16, + + sampler2D: 1, +}; + +/** + * @private + * @method mapSize + * @memberof PIXI.glCore.shader + * @param type {String} + * @return {Number} + */ +function mapSize(type) +{ + return GLSL_TO_SIZE[type]; +} + +var GL_TABLE = null; + +var GL_TO_GLSL_TYPES = { + FLOAT: 'float', + FLOAT_VEC2: 'vec2', + FLOAT_VEC3: 'vec3', + FLOAT_VEC4: 'vec4', + + INT: 'int', + INT_VEC2: 'ivec2', + INT_VEC3: 'ivec3', + INT_VEC4: 'ivec4', + + BOOL: 'bool', + BOOL_VEC2: 'bvec2', + BOOL_VEC3: 'bvec3', + BOOL_VEC4: 'bvec4', + + FLOAT_MAT2: 'mat2', + FLOAT_MAT3: 'mat3', + FLOAT_MAT4: 'mat4', + + SAMPLER_2D: 'sampler2D', + SAMPLER_CUBE: 'samplerCube', + SAMPLER_2D_ARRAY: 'sampler2DArray', +}; + +function mapType(gl, type) +{ + if (!GL_TABLE) + { + var typeNames = Object.keys(GL_TO_GLSL_TYPES); + + GL_TABLE = {}; + + for (var i = 0; i < typeNames.length; ++i) + { + var tn = typeNames[i]; + + GL_TABLE[gl[tn]] = GL_TO_GLSL_TYPES[tn]; + } + } + + return GL_TABLE[type]; +} + +// cv = CachedValue +// v = value +// ud = uniformData +// uv = uniformValue +// l = location +var GLSL_TO_SINGLE_SETTERS_CACHED = { + + float: "\n if(cv !== v)\n {\n cv.v = v;\n gl.uniform1f(location, v)\n }", + + vec2: "\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(location, v[0], v[1])\n }", + + vec3: "\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n\n gl.uniform3f(location, v[0], v[1], v[2])\n }", + + vec4: 'gl.uniform4f(location, v[0], v[1], v[2], v[3])', + + int: 'gl.uniform1i(location, v)', + ivec2: 'gl.uniform2i(location, v[0], v[1])', + ivec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + ivec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + bool: 'gl.uniform1i(location, v)', + bvec2: 'gl.uniform2i(location, v[0], v[1])', + bvec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + bvec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + mat2: 'gl.uniformMatrix2fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat4: 'gl.uniformMatrix4fv(location, false, v)', + + sampler2D: 'gl.uniform1i(location, v)', + samplerCube: 'gl.uniform1i(location, v)', + sampler2DArray: 'gl.uniform1i(location, v)', +}; + +var GLSL_TO_ARRAY_SETTERS = { + + float: "gl.uniform1fv(location, v)", + + vec2: "gl.uniform2fv(location, v)", + vec3: "gl.uniform3fv(location, v)", + vec4: 'gl.uniform4fv(location, v)', + + mat4: 'gl.uniformMatrix4fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat2: 'gl.uniformMatrix2fv(location, false, v)', + + int: 'gl.uniform1iv(location, v)', + ivec2: 'gl.uniform2iv(location, v)', + ivec3: 'gl.uniform3iv(location, v)', + ivec4: 'gl.uniform4iv(location, v)', + + bool: 'gl.uniform1iv(location, v)', + bvec2: 'gl.uniform2iv(location, v)', + bvec3: 'gl.uniform3iv(location, v)', + bvec4: 'gl.uniform4iv(location, v)', + + sampler2D: 'gl.uniform1iv(location, v)', + samplerCube: 'gl.uniform1iv(location, v)', + sampler2DArray: 'gl.uniform1iv(location, v)', +}; + +function generateUniformsSync(group, uniformData) +{ + var textureCount = 0; + var func = "var v = null;\n var cv = null\n var gl = renderer.gl"; + + for (var i in group.uniforms) + { + var data = uniformData[i]; + + if (!data) + { + if (group.uniforms[i].group) + { + func += "\n renderer.shader.syncUniformGroup(uv." + i + ");\n "; + } + + continue; + } + + // TODO && uniformData[i].value !== 0 <-- do we still need this? + if (data.type === 'float' && data.size === 1) + { + func += "\n if(uv." + i + " !== ud." + i + ".value)\n {\n ud." + i + ".value = uv." + i + "\n gl.uniform1f(ud." + i + ".location, uv." + i + ")\n }\n"; + } + /* eslint-disable max-len */ + else if ((data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray) + /* eslint-disable max-len */ + { + func += "\n renderer.texture.bind(uv." + i + ", " + textureCount + ");\n\n if(ud." + i + ".value !== " + textureCount + ")\n {\n ud." + i + ".value = " + textureCount + ";\n gl.uniform1i(ud." + i + ".location, " + textureCount + ");\n; // eslint-disable-line max-len\n }\n"; + + textureCount++; + } + else if (data.type === 'mat3' && data.size === 1) + { + if (group.uniforms[i].a !== undefined) + { + // TODO and some smart caching dirty ids here! + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ".toArray(true));\n \n"; + } + else + { + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ");\n \n"; + } + } + else if (data.type === 'vec2' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].x !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n gl.uniform2f(ud." + i + ".location, v.x, v.y);\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(ud." + i + ".location, v[0], v[1]);\n }\n \n"; + } + } + else if (data.type === 'vec4' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].width !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y || cv[2] !== v.width || cv[3] !== v.height)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n cv[2] = v.width;\n cv[3] = v.height;\n gl.uniform4f(ud." + i + ".location, v.x, v.y, v.width, v.height)\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2] || cv[3] !== v[3])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n cv[3] = v[3];\n\n gl.uniform4f(ud." + i + ".location, v[0], v[1], v[2], v[3])\n }\n \n"; + } + } + else + { + var templateType = (data.size === 1) ? GLSL_TO_SINGLE_SETTERS_CACHED : GLSL_TO_ARRAY_SETTERS; + + var template = templateType[data.type].replace('location', ("ud." + i + ".location")); + + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n " + template + ";\n"; + } + } + + return new Function('ud', 'uv', 'renderer', func); // eslint-disable-line no-new-func +} + +var fragTemplate = [ + 'precision mediump float;', + 'void main(void){', + 'float test = 0.1;', + '%forloop%', + 'gl_FragColor = vec4(0.0);', + '}' ].join('\n'); + +function checkMaxIfStatementsInShader(maxIfs, gl) +{ + if (maxIfs === 0) + { + throw new Error('Invalid value of `0` passed to `checkMaxIfStatementsInShader`'); + } + + var shader = gl.createShader(gl.FRAGMENT_SHADER); + + while (true) // eslint-disable-line no-constant-condition + { + var fragmentSrc = fragTemplate.replace(/%forloop%/gi, generateIfTestSrc(maxIfs)); + + gl.shaderSource(shader, fragmentSrc); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + maxIfs = (maxIfs / 2) | 0; + } + else + { + // valid! + break; + } + } + + return maxIfs; +} + +function generateIfTestSrc(maxIfs) +{ + var src = ''; + + for (var i = 0; i < maxIfs; ++i) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxIfs - 1) + { + src += "if(test == " + i + ".0){}"; + } + } + + return src; +} + +// Cache the result to prevent running this over and over +var unsafeEval; + +/** + * Not all platforms allow to generate function code (e.g., `new Function`). + * this provides the platform-level detection. + * + * @private + * @returns {boolean} + */ +function unsafeEvalSupported() +{ + if (typeof unsafeEval === 'boolean') + { + return unsafeEval; + } + + try + { + /* eslint-disable no-new-func */ + var func = new Function('param1', 'param2', 'param3', 'return param1[param2] === param3;'); + /* eslint-enable no-new-func */ + + unsafeEval = func({ a: 'b' }, 'a', 'b') === true; + } + catch (e) + { + unsafeEval = false; + } + + return unsafeEval; +} + +var defaultFragment = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor *= texture2D(uSampler, vTextureCoord);\n}"; + +var defaultVertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n vTextureCoord = aTextureCoord;\n}\n"; + +// import * as from '../systems/shader/shader'; + +var UID$3 = 0; + +var nameCache = {}; + +/** + * Helper class to create a shader program. + * + * @class + * @memberof PIXI + */ +var Program = function Program(vertexSrc, fragmentSrc, name) +{ + if ( name === void 0 ) name = 'pixi-shader'; + + this.id = UID$3++; + + /** + * The vertex shader. + * + * @member {string} + */ + this.vertexSrc = vertexSrc || Program.defaultVertexSrc; + + /** + * The fragment shader. + * + * @member {string} + */ + this.fragmentSrc = fragmentSrc || Program.defaultFragmentSrc; + + this.vertexSrc = this.vertexSrc.trim(); + this.fragmentSrc = this.fragmentSrc.trim(); + + if (this.vertexSrc.substring(0, 8) !== '#version') + { + name = name.replace(/\s+/g, '-'); + + if (nameCache[name]) + { + nameCache[name]++; + name += "-" + (nameCache[name]); + } + else + { + nameCache[name] = 1; + } + + this.vertexSrc = "#define SHADER_NAME " + name + "\n" + (this.vertexSrc); + this.fragmentSrc = "#define SHADER_NAME " + name + "\n" + (this.fragmentSrc); + + this.vertexSrc = setPrecision(this.vertexSrc, settings.PRECISION_VERTEX, PRECISION.HIGH); + this.fragmentSrc = setPrecision(this.fragmentSrc, settings.PRECISION_FRAGMENT, getMaxFragmentPrecision()); + } + + // currently this does not extract structs only default types + this.extractData(this.vertexSrc, this.fragmentSrc); + + // this is where we store shader references.. + this.glPrograms = {}; + + this.syncUniforms = null; +}; + +var staticAccessors$3 = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + +/** + * Extracts the data for a buy creating a small test program + * or reading the src directly. + * @protected + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + */ +Program.prototype.extractData = function extractData (vertexSrc, fragmentSrc) +{ + var gl = getTestContext(); + + if (gl) + { + var program = compileProgram(gl, vertexSrc, fragmentSrc); + + this.attributeData = this.getAttributeData(program, gl); + this.uniformData = this.getUniformData(program, gl); + + gl.deleteProgram(program); + } + else + { + this.uniformData = {}; + this.attributeData = {}; + } +}; + +/** + * returns the attribute data from the program + * @private + * + * @param {WebGLProgram} [program] - the WebGL program + * @param {WebGLRenderingContext} [gl] - the WebGL context + * + * @returns {object} the attribute data for this program + */ +Program.prototype.getAttributeData = function getAttributeData (program, gl) +{ + var attributes = {}; + var attributesArray = []; + + var totalAttributes = gl.getProgramParameter(program, gl.ACTIVE_ATTRIBUTES); + + for (var i = 0; i < totalAttributes; i++) + { + var attribData = gl.getActiveAttrib(program, i); + var type = mapType(gl, attribData.type); + + /*eslint-disable */ + var data = { + type: type, + name: attribData.name, + size: mapSize(type), + location: 0, + }; + /* eslint-enable */ + + attributes[attribData.name] = data; + attributesArray.push(data); + } + + attributesArray.sort(function (a, b) { return (a.name > b.name) ? 1 : -1; }); // eslint-disable-line no-confusing-arrow + + for (var i$1 = 0; i$1 < attributesArray.length; i$1++) + { + attributesArray[i$1].location = i$1; + } + + return attributes; +}; + +/** + * returns the uniform data from the program + * @private + * + * @param {webGL-program} [program] - the webgl program + * @param {context} [gl] - the WebGL context + * + * @returns {object} the uniform data for this program + */ +Program.prototype.getUniformData = function getUniformData (program, gl) +{ + var uniforms = {}; + + var totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS); + + // TODO expose this as a prop? + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + + for (var i = 0; i < totalUniforms; i++) + { + var uniformData = gl.getActiveUniform(program, i); + var name = uniformData.name.replace(/\[.*?\]/, ''); + + var isArray = uniformData.name.match(/\[.*?\]/, ''); + var type = mapType(gl, uniformData.type); + + /*eslint-disable */ + uniforms[name] = { + type: type, + size: uniformData.size, + isArray:isArray, + value: defaultValue(type, uniformData.size), + }; + /* eslint-enable */ + } + + return uniforms; +}; + +/** + * The default vertex shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultVertexSrc.get = function () +{ + return defaultVertex; +}; + +/** + * The default fragment shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultFragmentSrc.get = function () +{ + return defaultFragment; +}; + +/** + * A short hand function to create a program based of a vertex and fragment shader + * this method will also check to see if there is a cached program. + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Program} an shiny new Pixi shader! + */ +Program.from = function from (vertexSrc, fragmentSrc, name) +{ + var key = vertexSrc + fragmentSrc; + + var program = ProgramCache[key]; + + if (!program) + { + ProgramCache[key] = program = new Program(vertexSrc, fragmentSrc, name); + } + + return program; +}; + +Object.defineProperties( Program, staticAccessors$3 ); + +/** + * A helper class for shaders + * + * @class + * @memberof PIXI + */ +var Shader = function Shader(program, uniforms) +{ + /** + * Program that the shader uses + * + * @member {PIXI.Program} + */ + this.program = program; + + // lets see whats been passed in + // uniforms should be converted to a uniform group + if (uniforms) + { + if (uniforms instanceof UniformGroup) + { + this.uniformGroup = uniforms; + } + else + { + this.uniformGroup = new UniformGroup(uniforms); + } + } + else + { + this.uniformGroup = new UniformGroup({}); + } + + // time to build some getters and setters! + // I guess down the line this could sort of generate an instruction list rather than use dirty ids? + // does the trick for now though! + for (var i in program.uniformData) + { + if (this.uniformGroup.uniforms[i] instanceof Array) + { + this.uniformGroup.uniforms[i] = new Float32Array(this.uniformGroup.uniforms[i]); + } + } +}; + +var prototypeAccessors$2$1 = { uniforms: { configurable: true } }; + +// TODO move to shader system.. +Shader.prototype.checkUniformExists = function checkUniformExists (name, group) +{ + if (group.uniforms[name]) + { + return true; + } + + for (var i in group.uniforms) + { + var uniform = group.uniforms[i]; + + if (uniform.group) + { + if (this.checkUniformExists(name, uniform)) + { + return true; + } + } + } + + return false; +}; + +Shader.prototype.destroy = function destroy () +{ + // usage count on programs? + // remove if not used! + this.uniformGroup = null; +}; + +/** + * Shader uniform values, shortcut for `uniformGroup.uniforms` + * @readonly + * @member {object} + */ +prototypeAccessors$2$1.uniforms.get = function () +{ + return this.uniformGroup.uniforms; +}; + +/** + * A short hand function to create a shader based of a vertex and fragment shader + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Shader} an shiny new Pixi shader! + */ +Shader.from = function from (vertexSrc, fragmentSrc, uniforms) +{ + var program = Program.from(vertexSrc, fragmentSrc); + + return new Shader(program, uniforms); +}; + +Object.defineProperties( Shader.prototype, prototypeAccessors$2$1 ); + +/* eslint-disable max-len */ + +var BLEND = 0; +var OFFSET = 1; +var CULLING = 2; +var DEPTH_TEST = 3; +var WINDING = 4; + +/** + * This is a WebGL state, and is is passed The WebGL StateManager. + * + * Each mesh rendered may require WebGL to be in a different state. + * For example you may want different blend mode or to enable polygon offsets + * + * @class + * @memberof PIXI + */ +var State = function State() +{ + this.data = 0; + + this.blendMode = BLEND_MODES.NORMAL; + this.polygonOffset = 0; + + this.blend = true; + // this.depthTest = true; +}; + +var prototypeAccessors$3$1 = { blend: { configurable: true },offsets: { configurable: true },culling: { configurable: true },depthTest: { configurable: true },clockwiseFrontFace: { configurable: true },blendMode: { configurable: true },polygonOffset: { configurable: true } }; + +/** + * Activates blending of the computed fragment color values + * + * @member {boolean} + */ +prototypeAccessors$3$1.blend.get = function () +{ + return !!(this.data & (1 << BLEND)); +}; + +prototypeAccessors$3$1.blend.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << BLEND)) !== value) + { + this.data ^= (1 << BLEND); + } +}; + +/** + * Activates adding an offset to depth values of polygon's fragments + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.offsets.get = function () +{ + return !!(this.data & (1 << OFFSET)); +}; + +prototypeAccessors$3$1.offsets.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << OFFSET)) !== value) + { + this.data ^= (1 << OFFSET); + } +}; + +/** + * Activates culling of polygons. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.culling.get = function () +{ + return !!(this.data & (1 << CULLING)); +}; + +prototypeAccessors$3$1.culling.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << CULLING)) !== value) + { + this.data ^= (1 << CULLING); + } +}; + +/** + * Activates depth comparisons and updates to the depth buffer. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.depthTest.get = function () +{ + return !!(this.data & (1 << DEPTH_TEST)); +}; + +prototypeAccessors$3$1.depthTest.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << DEPTH_TEST)) !== value) + { + this.data ^= (1 << DEPTH_TEST); + } +}; + +/** + * Specifies whether or not front or back-facing polygons can be culled. + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.clockwiseFrontFace.get = function () +{ + return !!(this.data & (1 << WINDING)); +}; + +prototypeAccessors$3$1.clockwiseFrontFace.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << WINDING)) !== value) + { + this.data ^= (1 << WINDING); + } +}; + +/** + * The blend mode to be applied when this state is set. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * Setting this mode to anything other than NO_BLEND will automatically switch blending on. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ +prototypeAccessors$3$1.blendMode.get = function () +{ + return this._blendMode; +}; + +prototypeAccessors$3$1.blendMode.set = function (value) // eslint-disable-line require-jsdoc +{ + this.blend = (value !== BLEND_MODES.NONE); + this._blendMode = value; +}; + +/** + * The polygon offset. Setting this property to anything other than 0 will automatically enable polygon offset fill. + * + * @member {number} + * @default 0 + */ +prototypeAccessors$3$1.polygonOffset.get = function () +{ + return this._polygonOffset; +}; + +prototypeAccessors$3$1.polygonOffset.set = function (value) // eslint-disable-line require-jsdoc +{ + this.offsets = !!value; + this._polygonOffset = value; +}; + +State.for2d = function for2d () +{ + var state = new State(); + + state.depthTest = false; + state.blend = true; + + return state; +}; + +Object.defineProperties( State.prototype, prototypeAccessors$3$1 ); + +var defaultVertex$1 = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +var defaultFragment$1 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor = texture2D(uSampler, vTextureCoord);\n}\n"; + +/** + * Filter is a special type of WebGL shader that is applied to the screen. + * + * {@link http://pixijs.io/examples/#/filters/blur-filter.js Example} of the + * {@link PIXI.filters.BlurFilter BlurFilter}. + * + * ### Usage + * Filters can be applied to any DisplayObject or Container. + * PixiJS' `FilterSystem` renders the container into temporary Framebuffer, + * then filter renders it to the screen. + * Multiple filters can be added to the `filters` array property and stacked on each other. + * + * ``` + * const filter = new PIXI.Filter(myShaderVert, myShaderFrag, { myUniform: 0.5 }); + * const container = new PIXI.Container(); + * container.filters = [filter]; + * ``` + * + * ### Previous Version Differences + * + * In PixiJS **v3**, a filter was always applied to _whole screen_. + * + * In PixiJS **v4**, a filter can be applied _only part of the screen_. + * Developers had to create a set of uniforms to deal with coordinates. + * + * In PixiJS **v5** combines _both approaches_. + * Developers can use normal coordinates of v3 and then allow filter to use partial Framebuffers, + * bringing those extra uniforms into account. + * + * Also be aware that we have changed default vertex shader, please consult + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * ### Built-in Uniforms + * + * PixiJS viewport uses screen (CSS) coordinates, `(0, 0, renderer.screen.width, renderer.screen.height)`, + * and `projectionMatrix` uniform maps it to the gl viewport. + * + * **uSampler** + * + * The most important uniform is the input texture that container was rendered into. + * _Important note: as with all Framebuffers in PixiJS, both input and output are + * premultiplied by alpha._ + * + * By default, input normalized coordinates are passed to fragment shader with `vTextureCoord`. + * Use it to sample the input. + * + * ``` + * const fragment = ` + * varying vec2 vTextureCoord; + * uniform sampler2D uSampler; + * void main(void) + * { + * gl_FragColor = texture2D(uSampler, vTextureCoord); + * } + * `; + * + * const myFilter = new PIXI.Filter(null, fragment); + * ``` + * + * This filter is just one uniform less than {@link PIXI.filters.AlphaFilter AlphaFilter}. + * + * **outputFrame** + * + * The `outputFrame` holds the rectangle where filter is applied in screen (CSS) coordinates. + * It's the same as `renderer.screen` for a fullscreen filter. + * Only a part of `outputFrame.zw` size of temporary Framebuffer is used, + * `(0, 0, outputFrame.width, outputFrame.height)`, + * + * Filters uses this quad to normalized (0-1) space, its passed into `aVertexPosition` attribute. + * To calculate vertex position in screen space using normalized (0-1) space: + * + * ``` + * vec4 filterVertexPosition( void ) + * { + * vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy; + * return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0); + * } + * ``` + * + * **inputSize** + * + * Temporary framebuffer is different, it can be either the size of screen, either power-of-two. + * The `inputSize.xy` are size of temporary framebuffer that holds input. + * The `inputSize.zw` is inverted, it's a shortcut to evade division inside the shader. + * + * Set `inputSize.xy = outputFrame.zw` for a fullscreen filter. + * + * To calculate input normalized coordinate, you have to map it to filter normalized space. + * Multiply by `outputFrame.zw` to get input coordinate. + * Divide by `inputSize.xy` to get input normalized coordinate. + * + * ``` + * vec2 filterTextureCoord( void ) + * { + * return aVertexPosition * (outputFrame.zw * inputSize.zw); // same as /inputSize.xy + * } + * ``` + * **resolution** + * + * The `resolution` is the ratio of screen (CSS) pixels to real pixels. + * + * **inputPixel** + * + * `inputPixel.xy` is the size of framebuffer in real pixels, same as `inputSize.xy * resolution` + * `inputPixel.zw` is inverted `inputPixel.xy`. + * + * It's handy for filters that use neighbour pixels, like {@link PIXI.filters.FXAAFilter FXAAFilter}. + * + * **inputClamp** + * + * If you try to get info from outside of used part of Framebuffer - you'll get undefined behaviour. + * For displacements, coordinates has to be clamped. + * + * The `inputClamp.xy` is left-top pixel center, you may ignore it, because we use left-top part of Framebuffer + * `inputClamp.zw` is bottom-right pixel center. + * + * ``` + * vec4 color = texture2D(uSampler, clamp(modifigedTextureCoord, inputClamp.xy, inputClamp.zw)) + * ``` + * OR + * ``` + * vec4 color = texture2D(uSampler, min(modifigedTextureCoord, inputClamp.zw)) + * ``` + * + * ### Additional Information + * + * Complete documentation on Filter usage is located in the + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * Since PixiJS only had a handful of built-in filters, additional filters can be downloaded + * {@link https://github.com/pixijs/pixi-filters here} from the PixiJS Filters repository. + * + * @class + * @memberof PIXI + * @extends PIXI.Shader + */ +var Filter = /*@__PURE__*/(function (Shader) { + function Filter(vertexSrc, fragmentSrc, uniforms) + { + var program = Program.from(vertexSrc || Filter.defaultVertexSrc, + fragmentSrc || Filter.defaultFragmentSrc); + + Shader.call(this, program, uniforms); + + /** + * The padding of the filter. Some filters require extra space to breath such as a blur. + * Increasing this will add extra width and height to the bounds of the object that the + * filter is applied to. + * + * @member {number} + */ + this.padding = 0; + + /** + * The resolution of the filter. Setting this to be lower will lower the quality but + * increase the performance of the filter. + * + * @member {number} + */ + this.resolution = settings.FILTER_RESOLUTION; + + /** + * If enabled is true the filter is applied, if false it will not. + * + * @member {boolean} + */ + this.enabled = true; + + /** + * If enabled, PixiJS will fit the filter area into boundaries for better performance. + * Switch it off if it does not work for specific shader. + * + * @member {boolean} + */ + this.autoFit = true; + + /** + * Legacy filters use position and uvs from attributes + * @member {boolean} + * @readonly + */ + this.legacy = !!this.program.attributeData.aTextureCoord; + + /** + * The WebGL state the filter requires to render + * @member {PIXI.State} + */ + this.state = new State(); + } + + if ( Shader ) Filter.__proto__ = Shader; + Filter.prototype = Object.create( Shader && Shader.prototype ); + Filter.prototype.constructor = Filter; + + var prototypeAccessors = { blendMode: { configurable: true } }; + var staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + * @param {object} [currentState] - It's current state of filter. + * There are some useful properties in the currentState : + * target, filters, sourceFrame, destinationFrame, renderTarget, resolution + */ + Filter.prototype.apply = function apply (filterManager, input, output, clear, currentState) + { + // do as you please! + + filterManager.applyFilter(this, input, output, clear, currentState); + + // or just do a regular render.. + }; + + /** + * Sets the blendmode of the filter + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + */ + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + prototypeAccessors.blendMode.set = function (value) // eslint-disable-line require-jsdoc + { + this.state.blendMode = value; + }; + + /** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultVertexSrc.get = function () + { + return defaultVertex$1; + }; + + /** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultFragmentSrc.get = function () + { + return defaultFragment$1; + }; + + Object.defineProperties( Filter.prototype, prototypeAccessors ); + Object.defineProperties( Filter, staticAccessors ); + + return Filter; +}(Shader)); + +/** + * Used for caching shader IDs + * + * @static + * @type {object} + * @protected + */ +Filter.SOURCE_KEY_MAP = {}; + +var vertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 otherMatrix;\n\nvarying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\n}\n"; + +var fragment = "varying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform sampler2D mask;\nuniform float alpha;\nuniform float npmAlpha;\nuniform vec4 maskClamp;\n\nvoid main(void)\n{\n float clip = step(3.5,\n step(maskClamp.x, vMaskCoord.x) +\n step(maskClamp.y, vMaskCoord.y) +\n step(vMaskCoord.x, maskClamp.z) +\n step(vMaskCoord.y, maskClamp.w));\n\n vec4 original = texture2D(uSampler, vTextureCoord);\n vec4 masky = texture2D(mask, vMaskCoord);\n float alphaMul = 1.0 - npmAlpha * (1.0 - masky.a);\n\n original *= (alphaMul * masky.r * alpha * clip);\n\n gl_FragColor = original;\n}\n"; + +var tempMat = new Matrix(); + +/** + * Class controls uv mapping from Texture normal space to BaseTexture normal space. + * + * Takes `trim` and `rotate` into account. May contain clamp settings for Meshes and TilingSprite. + * + * Can be used in Texture `uvMatrix` field, or separately, you can use different clamp settings on the same texture. + * If you want to add support for texture region of certain feature or filter, that's what you're looking for. + * + * Takes track of Texture changes through `_lastTextureID` private field. + * Use `update()` method call to track it from outside. + * + * @see PIXI.Texture + * @see PIXI.Mesh + * @see PIXI.TilingSprite + * @class + * @memberof PIXI + */ +var TextureMatrix = function TextureMatrix(texture, clampMargin) +{ + this._texture = texture; + + /** + * Matrix operation that converts texture region coords to texture coords + * @member {PIXI.Matrix} + * @readonly + */ + this.mapCoord = new Matrix(); + + /** + * Clamp region for normalized coords, left-top pixel center in xy , bottom-right in zw. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampFrame = new Float32Array(4); + + /** + * Normalized clamp offset. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampOffset = new Float32Array(2); + + /** + * Tracks Texture frame changes + * @member {number} + * @protected + */ + this._updateID = -1; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to 1.5 if you texture has repeated right and bottom lines, that leads to smoother borders + * + * @default 0 + * @member {number} + */ + this.clampOffset = 0; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas + * + * @default 0.5 + * @member {number} + */ + this.clampMargin = (typeof clampMargin === 'undefined') ? 0.5 : clampMargin; + + /** + * If texture size is the same as baseTexture + * @member {boolean} + * @default false + * @readonly + */ + this.isSimple = false; +}; + +var prototypeAccessors$4$1 = { texture: { configurable: true } }; + +/** + * texture property + * @member {PIXI.Texture} + */ +prototypeAccessors$4$1.texture.get = function () +{ + return this._texture; +}; + +prototypeAccessors$4$1.texture.set = function (value) // eslint-disable-line require-jsdoc +{ + this._texture = value; + this._updateID = -1; +}; + +/** + * Multiplies uvs array to transform + * @param {Float32Array} uvs mesh uvs + * @param {Float32Array} [out=uvs] output + * @returns {Float32Array} output + */ +TextureMatrix.prototype.multiplyUvs = function multiplyUvs (uvs, out) +{ + if (out === undefined) + { + out = uvs; + } + + var mat = this.mapCoord; + + for (var i = 0; i < uvs.length; i += 2) + { + var x = uvs[i]; + var y = uvs[i + 1]; + + out[i] = (x * mat.a) + (y * mat.c) + mat.tx; + out[i + 1] = (x * mat.b) + (y * mat.d) + mat.ty; + } + + return out; +}; + +/** + * updates matrices if texture was changed + * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case + * @returns {boolean} whether or not it was updated + */ +TextureMatrix.prototype.update = function update (forceUpdate) +{ + var tex = this._texture; + + if (!tex || !tex.valid) + { + return false; + } + + if (!forceUpdate + && this._updateID === tex._updateID) + { + return false; + } + + this._updateID = tex._updateID; + + var uvs = tex._uvs; + + this.mapCoord.set(uvs.x1 - uvs.x0, uvs.y1 - uvs.y0, uvs.x3 - uvs.x0, uvs.y3 - uvs.y0, uvs.x0, uvs.y0); + + var orig = tex.orig; + var trim = tex.trim; + + if (trim) + { + tempMat.set(orig.width / trim.width, 0, 0, orig.height / trim.height, + -trim.x / trim.width, -trim.y / trim.height); + this.mapCoord.append(tempMat); + } + + var texBase = tex.baseTexture; + var frame = this.uClampFrame; + var margin = this.clampMargin / texBase.resolution; + var offset = this.clampOffset; + + frame[0] = (tex._frame.x + margin + offset) / texBase.width; + frame[1] = (tex._frame.y + margin + offset) / texBase.height; + frame[2] = (tex._frame.x + tex._frame.width - margin + offset) / texBase.width; + frame[3] = (tex._frame.y + tex._frame.height - margin + offset) / texBase.height; + this.uClampOffset[0] = offset / texBase.realWidth; + this.uClampOffset[1] = offset / texBase.realHeight; + + this.isSimple = tex._frame.width === texBase.width + && tex._frame.height === texBase.height + && tex.rotate === 0; + + return true; +}; + +Object.defineProperties( TextureMatrix.prototype, prototypeAccessors$4$1 ); + +/** + * This handles a Sprite acting as a mask, as opposed to a Graphic. + * + * WebGL only. + * + * @class + * @extends PIXI.Filter + * @memberof PIXI + */ +var SpriteMaskFilter = /*@__PURE__*/(function (Filter) { + function SpriteMaskFilter(sprite) + { + var maskMatrix = new Matrix(); + + Filter.call(this, vertex, fragment); + + sprite.renderable = false; + + /** + * Sprite mask + * @member {PIXI.Sprite} + */ + this.maskSprite = sprite; + + /** + * Mask matrix + * @member {PIXI.Matrix} + */ + this.maskMatrix = maskMatrix; + } + + if ( Filter ) SpriteMaskFilter.__proto__ = Filter; + SpriteMaskFilter.prototype = Object.create( Filter && Filter.prototype ); + SpriteMaskFilter.prototype.constructor = SpriteMaskFilter; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it. + */ + SpriteMaskFilter.prototype.apply = function apply (filterManager, input, output, clear) + { + var maskSprite = this.maskSprite; + var tex = this.maskSprite.texture; + + if (!tex.valid) + { + return; + } + if (!tex.transform) + { + // margin = 0.0, let it bleed a bit, shader code becomes easier + // assuming that atlas textures were made with 1-pixel padding + tex.transform = new TextureMatrix(tex, 0.0); + } + tex.transform.update(); + + this.uniforms.npmAlpha = tex.baseTexture.premultiplyAlpha ? 0.0 : 1.0; + this.uniforms.mask = tex; + // get _normalized sprite texture coords_ and convert them to _normalized atlas texture coords_ with `prepend` + this.uniforms.otherMatrix = filterManager.calculateSpriteMatrix(this.maskMatrix, maskSprite) + .prepend(tex.transform.mapCoord); + this.uniforms.alpha = maskSprite.worldAlpha; + this.uniforms.maskClamp = tex.transform.uClampFrame; + + filterManager.applyFilter(this, input, output, clear); + }; + + return SpriteMaskFilter; +}(Filter)); + +/** + * System plugin to the renderer to manage masks. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var MaskSystem = /*@__PURE__*/(function (System) { + function MaskSystem(renderer) + { + System.call(this, renderer); + + // TODO - we don't need both! + /** + * `true` if current pushed masked is scissor + * @member {boolean} + * @readonly + */ + this.scissor = false; + + /** + * Mask data + * @member {PIXI.Graphics} + * @readonly + */ + this.scissorData = null; + + /** + * Target to mask + * @member {PIXI.DisplayObject} + * @readonly + */ + this.scissorRenderTarget = null; + + /** + * Enable scissor + * @member {boolean} + * @readonly + */ + this.enableScissor = false; + + /** + * Pool of used sprite mask filters + * @member {PIXI.SpriteMaskFilter[]} + * @readonly + */ + this.alphaMaskPool = []; + + /** + * Current index of alpha mask pool + * @member {number} + * @default 0 + * @readonly + */ + this.alphaMaskIndex = 0; + } + + if ( System ) MaskSystem.__proto__ = System; + MaskSystem.prototype = Object.create( System && System.prototype ); + MaskSystem.prototype.constructor = MaskSystem; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.push = function push (target, maskData) + { + // TODO the root check means scissor rect will not + // be used on render textures more info here: + // https://github.com/pixijs/pixi.js/pull/3545 + + if (maskData.isSprite) + { + this.pushSpriteMask(target, maskData); + } + else if (this.enableScissor + && !this.scissor + && this.renderer._activeRenderTarget.root + && !this.renderer.stencil.stencilMaskStack.length + && maskData.isFastRect()) + { + var matrix = maskData.worldTransform; + + var rot = Math.atan2(matrix.b, matrix.a); + + // use the nearest degree! + rot = Math.round(rot * (180 / Math.PI)); + + if (rot % 90) + { + this.pushStencilMask(maskData); + } + else + { + this.pushScissorMask(target, maskData); + } + } + else + { + this.pushStencilMask(maskData); + } + }; + + /** + * Removes the last mask from the mask stack and doesn't return it. + * + * @param {PIXI.DisplayObject} target - Display Object to pop the mask from + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pop = function pop (target, maskData) + { + if (maskData.isSprite) + { + this.popSpriteMask(target, maskData); + } + else if (this.enableScissor && !this.renderer.stencil.stencilMaskStack.length) + { + this.popScissorMask(target, maskData); + } + else + { + this.popStencilMask(target, maskData); + } + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.RenderTexture} target - Display Object to push the sprite mask to + * @param {PIXI.Sprite} maskData - Sprite to be used as the mask + */ + MaskSystem.prototype.pushSpriteMask = function pushSpriteMask (target, maskData) + { + var alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex]; + + if (!alphaMaskFilter) + { + alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex] = [new SpriteMaskFilter(maskData)]; + } + + alphaMaskFilter[0].resolution = this.renderer.resolution; + alphaMaskFilter[0].maskSprite = maskData; + + var stashFilterArea = target.filterArea; + + target.filterArea = maskData.getBounds(true); + this.renderer.filter.push(target, alphaMaskFilter); + target.filterArea = stashFilterArea; + + this.alphaMaskIndex++; + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popSpriteMask = function popSpriteMask () + { + this.renderer.filter.pop(); + this.alphaMaskIndex--; + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushStencilMask = function pushStencilMask (maskData) + { + this.renderer.batch.flush(); + this.renderer.stencil.pushStencil(maskData); + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popStencilMask = function popStencilMask () + { + // this.renderer.currentRenderer.stop(); + this.renderer.stencil.popStencil(); + }; + + /** + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushScissorMask = function pushScissorMask (target, maskData) + { + maskData.renderable = true; + + var renderTarget = this.renderer._activeRenderTarget; + + var bounds = maskData.getBounds(); + + bounds.fit(renderTarget.size); + maskData.renderable = false; + + this.renderer.gl.enable(this.renderer.gl.SCISSOR_TEST); + + var resolution = this.renderer.resolution; + + this.renderer.gl.scissor( + bounds.x * resolution, + (renderTarget.root ? renderTarget.size.height - bounds.y - bounds.height : bounds.y) * resolution, + bounds.width * resolution, + bounds.height * resolution + ); + + this.scissorRenderTarget = renderTarget; + this.scissorData = maskData; + this.scissor = true; + }; + + /** + * Pop scissor mask + * + */ + MaskSystem.prototype.popScissorMask = function popScissorMask () + { + this.scissorRenderTarget = null; + this.scissorData = null; + this.scissor = false; + + // must be scissor! + var ref = this.renderer; + var gl = ref.gl; + + gl.disable(gl.SCISSOR_TEST); + }; + + return MaskSystem; +}(System)); + +/** + * System plugin to the renderer to manage stencils (used for masks). + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StencilSystem = /*@__PURE__*/(function (System) { + function StencilSystem(renderer) + { + System.call(this, renderer); + + /** + * The mask stack + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + } + + if ( System ) StencilSystem.__proto__ = System; + StencilSystem.prototype = Object.create( System && System.prototype ); + StencilSystem.prototype.constructor = StencilSystem; + + /** + * Changes the mask stack that is used by this System. + * + * @param {PIXI.Graphics[]} stencilMaskStack - The mask stack + */ + StencilSystem.prototype.setMaskStack = function setMaskStack (stencilMaskStack) + { + var gl = this.renderer.gl; + var curStackLen = this.stencilMaskStack.length; + + this.stencilMaskStack = stencilMaskStack; + if (stencilMaskStack.length !== curStackLen) + { + if (stencilMaskStack.length === 0) + { + gl.disable(gl.STENCIL_TEST); + } + else + { + gl.enable(gl.STENCIL_TEST); + this._useCurrent(); + } + } + }; + + /** + * Applies the Mask and adds it to the current stencil stack. @alvin + * + * @param {PIXI.Graphics} graphics - The mask + */ + StencilSystem.prototype.pushStencil = function pushStencil (graphics) + { + var gl = this.renderer.gl; + var prevMaskCount = this.stencilMaskStack.length; + + if (prevMaskCount === 0) + { + // force use stencil texture in current framebuffer + this.renderer.framebuffer.forceStencil(); + gl.enable(gl.STENCIL_TEST); + } + + this.stencilMaskStack.push(graphics); + + // Increment the reference stencil value where the new mask overlaps with the old ones. + gl.colorMask(false, false, false, false); + gl.stencilFunc(gl.EQUAL, prevMaskCount, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.INCR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + }; + + /** + * Removes the last mask from the stencil stack. @alvin + */ + StencilSystem.prototype.popStencil = function popStencil () + { + var gl = this.renderer.gl; + var graphics = this.stencilMaskStack.pop(); + + if (this.stencilMaskStack.length === 0) + { + // the stack is empty! + gl.disable(gl.STENCIL_TEST); + gl.clear(gl.STENCIL_BUFFER_BIT); + gl.clearStencil(0); + } + else + { + // Decrement the reference stencil value where the popped mask overlaps with the other ones + gl.colorMask(false, false, false, false); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.DECR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + } + }; + + /** + * Setup renderer to use the current stencil data. + * @private + */ + StencilSystem.prototype._useCurrent = function _useCurrent () + { + var gl = this.renderer.gl; + + gl.colorMask(true, true, true, true); + gl.stencilFunc(gl.EQUAL, this.stencilMaskStack.length, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.KEEP); + }; + + /** + * Fill 1s equal to the number of acitve stencil masks. + * @private + * @return {number} The bitwise mask. + */ + StencilSystem.prototype._getBitwiseMask = function _getBitwiseMask () + { + return (1 << this.stencilMaskStack.length) - 1; + }; + + /** + * Destroys the mask stack. + * + */ + StencilSystem.prototype.destroy = function destroy () + { + System.prototype.destroy.call(this, this); + + this.stencilMaskStack = null; + }; + + return StencilSystem; +}(System)); + +/** + * System plugin to the renderer to manage the projection matrix. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var ProjectionSystem = /*@__PURE__*/(function (System) { + function ProjectionSystem(renderer) + { + System.call(this, renderer); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = null; + + /** + * Default destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.defaultFrame = null; + + /** + * Project matrix + * @member {PIXI.Matrix} + * @readonly + */ + this.projectionMatrix = new Matrix(); + + /** + * A transform that will be appended to the projection matrix + * if null, nothing will be applied + * @member {PIXI.Matrix} + */ + this.transform = null; + } + + if ( System ) ProjectionSystem.__proto__ = System; + ProjectionSystem.prototype = Object.create( System && System.prototype ); + ProjectionSystem.prototype.constructor = ProjectionSystem; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.update = function update (destinationFrame, sourceFrame, resolution, root) + { + this.destinationFrame = destinationFrame || this.destinationFrame || this.defaultFrame; + this.sourceFrame = sourceFrame || this.sourceFrame || destinationFrame; + + this.calculateProjection(this.destinationFrame, this.sourceFrame, resolution, root); + + if (this.transform) + { + this.projectionMatrix.append(this.transform); + } + + var renderer = this.renderer; + + renderer.globalUniforms.uniforms.projectionMatrix = this.projectionMatrix; + renderer.globalUniforms.update(); + + // this will work for now + // but would be sweet to stick and even on the global uniforms.. + if (renderer.shader.shader) + { + renderer.shader.syncUniformGroup(renderer.shader.shader.uniforms.globals); + } + }; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.calculateProjection = function calculateProjection (destinationFrame, sourceFrame, resolution, root) + { + var pm = this.projectionMatrix; + + // I don't think we will need this line.. + // pm.identity(); + + if (!root) + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = -1 - (sourceFrame.y * pm.d); + } + else + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (-1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = 1 - (sourceFrame.y * pm.d); + } + }; + + /** + * Sets the transform of the active render target to the given matrix + * + * @param {PIXI.Matrix} matrix - The transformation matrix + */ + ProjectionSystem.prototype.setTransform = function setTransform ()// matrix) + { + // this._activeRenderTarget.transform = matrix; + }; + + return ProjectionSystem; +}(System)); + +var tempRect = new Rectangle(); + +/** + * System plugin to the renderer to manage render textures. + * + * Should be added after FramebufferSystem + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var RenderTextureSystem = /*@__PURE__*/(function (System) { + function RenderTextureSystem(renderer) + { + System.call(this, renderer); + + /** + * The clear background color as rgba + * @member {number[]} + */ + this.clearColor = renderer._backgroundColorRgba; + + // TODO move this property somewhere else! + /** + * List of masks for the StencilSystem + * @member {PIXI.Graphics[]} + * @readonly + */ + this.defaultMaskStack = []; + + // empty render texture? + /** + * Render texture + * @member {PIXI.RenderTexture} + * @readonly + */ + this.current = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = new Rectangle(); + } + + if ( System ) RenderTextureSystem.__proto__ = System; + RenderTextureSystem.prototype = Object.create( System && System.prototype ); + RenderTextureSystem.prototype.constructor = RenderTextureSystem; + + /** + * Bind the current render texture + * @param {PIXI.RenderTexture} [renderTexture] - RenderTexture to bind, by default its `null`, the screen + * @param {PIXI.Rectangle} [sourceFrame] - part of screen that is mapped to the renderTexture + * @param {PIXI.Rectangle} [destinationFrame] - part of renderTexture, by default it has the same size as sourceFrame + */ + RenderTextureSystem.prototype.bind = function bind (renderTexture, sourceFrame, destinationFrame) + { + if ( renderTexture === void 0 ) renderTexture = null; + + this.current = renderTexture; + + var renderer = this.renderer; + + var resolution; + + if (renderTexture) + { + var baseTexture = renderTexture.baseTexture; + + resolution = baseTexture.resolution; + + if (!destinationFrame) + { + tempRect.width = baseTexture.realWidth; + tempRect.height = baseTexture.realHeight; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + this.renderer.framebuffer.bind(baseTexture.framebuffer, destinationFrame); + + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, false); + this.renderer.stencil.setMaskStack(baseTexture.stencilMaskStack); + } + else + { + resolution = this.renderer.resolution; + + // TODO these validation checks happen deeper down.. + // thing they can be avoided.. + if (!destinationFrame) + { + tempRect.width = renderer.width; + tempRect.height = renderer.height; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + renderer.framebuffer.bind(null, destinationFrame); + + // TODO store this.. + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, true); + this.renderer.stencil.setMaskStack(this.defaultMaskStack); + } + + this.sourceFrame.copyFrom(sourceFrame); + + this.destinationFrame.x = destinationFrame.x / resolution; + this.destinationFrame.y = destinationFrame.y / resolution; + + this.destinationFrame.width = destinationFrame.width / resolution; + this.destinationFrame.height = destinationFrame.height / resolution; + + if (sourceFrame === destinationFrame) + { + this.sourceFrame.copyFrom(this.destinationFrame); + } + }; + + /** + * Erases the render texture and fills the drawing area with a colour + * + * @param {number[]} [clearColor] - The color as rgba, default to use the renderer backgroundColor + * @return {PIXI.Renderer} Returns itself. + */ + RenderTextureSystem.prototype.clear = function clear (clearColor) + { + if (this.current) + { + clearColor = clearColor || this.current.baseTexture.clearColor; + } + else + { + clearColor = clearColor || this.clearColor; + } + + this.renderer.framebuffer.clear(clearColor[0], clearColor[1], clearColor[2], clearColor[3]); + }; + + RenderTextureSystem.prototype.resize = function resize ()// screenWidth, screenHeight) + { + // resize the root only! + this.bind(null); + }; + + /** + * Resets renderTexture state + */ + RenderTextureSystem.prototype.reset = function reset () + { + this.bind(null); + }; + + return RenderTextureSystem; +}(System)); + +/** + * Helper class to create a WebGL Program + * + * @class + * @memberof PIXI + */ +var GLProgram = function GLProgram(program, uniformData) +{ + /** + * The shader program + * + * @member {WebGLProgram} + */ + this.program = program; + + /** + * holds the uniform data which contains uniform locations + * and current uniform values used for caching and preventing unneeded GPU commands + * @member {Object} + */ + this.uniformData = uniformData; + + /** + * uniformGroups holds the various upload functions for the shader. Each uniform group + * and program have a unique upload function generated. + * @member {Object} + */ + this.uniformGroups = {}; +}; + +/** + * Destroys this program + */ +GLProgram.prototype.destroy = function destroy () +{ + this.uniformData = null; + this.uniformGroups = null; + this.program = null; +}; + +var UID$4 = 0; + +/** + * System plugin to the renderer to manage shaders. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var ShaderSystem = /*@__PURE__*/(function (System) { + function ShaderSystem(renderer) + { + System.call(this, renderer); + + // Validation check that this environment support `new Function` + this.systemCheck(); + + /** + * The current WebGL rendering context + * + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.shader = null; + this.program = null; + + /** + * Cache to holds the generated functions. Stored against UniformObjects unique signature + * @type {Object} + * @private + */ + this.cache = {}; + + this.id = UID$4++; + } + + if ( System ) ShaderSystem.__proto__ = System; + ShaderSystem.prototype = Object.create( System && System.prototype ); + ShaderSystem.prototype.constructor = ShaderSystem; + + /** + * Overrideable function by `@pixi/unsafe-eval` to silence + * throwing an error if platform doesn't support unsafe-evals. + * + * @private + */ + ShaderSystem.prototype.systemCheck = function systemCheck () + { + if (!unsafeEvalSupported()) + { + throw new Error('Current environment does not allow unsafe-eval, ' + + 'please use @pixi/unsafe-eval module to enable support.'); + } + }; + + ShaderSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.reset(); + }; + + /** + * Changes the current shader to the one given in parameter + * + * @param {PIXI.Shader} shader - the new shader + * @param {boolean} dontSync - false if the shader should automatically sync its uniforms. + * @returns {PIXI.GLProgram} the glProgram that belongs to the shader. + */ + ShaderSystem.prototype.bind = function bind (shader, dontSync) + { + shader.uniforms.globals = this.renderer.globalUniforms; + + var program = shader.program; + var glProgram = program.glPrograms[this.renderer.CONTEXT_UID] || this.generateShader(shader); + + this.shader = shader; + + // TODO - some current Pixi plugins bypass this.. so it not safe to use yet.. + if (this.program !== program) + { + this.program = program; + this.gl.useProgram(glProgram.program); + } + + if (!dontSync) + { + this.syncUniformGroup(shader.uniformGroup); + } + + return glProgram; + }; + + /** + * Uploads the uniforms values to the currently bound shader. + * + * @param {object} uniforms - the uniforms values that be applied to the current shader + */ + ShaderSystem.prototype.setUniforms = function setUniforms (uniforms) + { + var shader = this.shader.program; + var glProgram = shader.glPrograms[this.renderer.CONTEXT_UID]; + + shader.syncUniforms(glProgram.uniformData, uniforms, this.renderer); + }; + + ShaderSystem.prototype.syncUniformGroup = function syncUniformGroup (group) + { + var glProgram = this.getglProgram(); + + if (!group.static || group.dirtyId !== glProgram.uniformGroups[group.id]) + { + glProgram.uniformGroups[group.id] = group.dirtyId; + + this.syncUniforms(group, glProgram); + } + }; + + /** + * Overrideable by the @pixi/unsafe-eval package to use static + * syncUnforms instead. + * + * @private + */ + ShaderSystem.prototype.syncUniforms = function syncUniforms (group, glProgram) + { + var syncFunc = group.syncUniforms[this.shader.program.id] || this.createSyncGroups(group); + + syncFunc(glProgram.uniformData, group.uniforms, this.renderer); + }; + + ShaderSystem.prototype.createSyncGroups = function createSyncGroups (group) + { + var id = this.getSignature(group, this.shader.program.uniformData); + + if (!this.cache[id]) + { + this.cache[id] = generateUniformsSync(group, this.shader.program.uniformData); + } + + group.syncUniforms[this.shader.program.id] = this.cache[id]; + + return group.syncUniforms[this.shader.program.id]; + }; + + /** + * Takes a uniform group and data and generates a unique signature for them. + * + * @param {PIXI.UniformGroup} group the uniform group to get signature of + * @param {Object} uniformData uniform information generated by the shader + * @returns {String} Unique signature of the uniform group + * @private + */ + ShaderSystem.prototype.getSignature = function getSignature (group, uniformData) + { + var uniforms = group.uniforms; + + var strings = []; + + for (var i in uniforms) + { + strings.push(i); + + if (uniformData[i]) + { + strings.push(uniformData[i].type); + } + } + + return strings.join('-'); + }; + + /** + * Returns the underlying GLShade rof the currently bound shader. + * This can be handy for when you to have a little more control over the setting of your uniforms. + * + * @return {PIXI.GLProgram} the glProgram for the currently bound Shader for this context + */ + ShaderSystem.prototype.getglProgram = function getglProgram () + { + if (this.shader) + { + return this.shader.program.glPrograms[this.renderer.CONTEXT_UID]; + } + + return null; + }; + + /** + * Generates a glProgram version of the Shader provided. + * + * @private + * @param {PIXI.Shader} shader the shader that the glProgram will be based on. + * @return {PIXI.GLProgram} A shiny new glProgram! + */ + ShaderSystem.prototype.generateShader = function generateShader (shader) + { + var gl = this.gl; + + var program = shader.program; + + var attribMap = {}; + + for (var i in program.attributeData) + { + attribMap[i] = program.attributeData[i].location; + } + + var shaderProgram = compileProgram(gl, program.vertexSrc, program.fragmentSrc, attribMap); + var uniformData = {}; + + for (var i$1 in program.uniformData) + { + var data = program.uniformData[i$1]; + + uniformData[i$1] = { + location: gl.getUniformLocation(shaderProgram, i$1), + value: defaultValue(data.type, data.size), + }; + } + + var glProgram = new GLProgram(shaderProgram, uniformData); + + program.glPrograms[this.renderer.CONTEXT_UID] = glProgram; + + return glProgram; + }; + + /** + * Resets ShaderSystem state, does not affect WebGL state + */ + ShaderSystem.prototype.reset = function reset () + { + this.program = null; + this.shader = null; + }; + + /** + * Destroys this System and removes all its textures + */ + ShaderSystem.prototype.destroy = function destroy () + { + // TODO implement destroy method for ShaderSystem + this.destroyed = true; + }; + + return ShaderSystem; +}(System)); + +/** + * Maps gl blend combinations to WebGL. + * + * @memberof PIXI + * @function mapWebGLBlendModesToPixi + * @private + * @param {WebGLRenderingContext} gl - The rendering context. + * @param {number[][]} [array=[]] - The array to output into. + * @return {number[][]} Mapped modes. + */ +function mapWebGLBlendModesToPixi(gl, array) +{ + if ( array === void 0 ) array = []; + + // TODO - premultiply alpha would be different. + // add a boolean for that! + array[BLEND_MODES.NORMAL] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD] = [gl.ONE, gl.ONE]; + array[BLEND_MODES.MULTIPLY] = [gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SCREEN] = [gl.ONE, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.OVERLAY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DARKEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LIGHTEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_DODGE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_BURN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HARD_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SOFT_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DIFFERENCE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.EXCLUSION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HUE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SATURATION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LUMINOSITY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.NONE] = [0, 0]; + + // not-premultiplied blend modes + array[BLEND_MODES.NORMAL_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD_NPM] = [gl.SRC_ALPHA, gl.ONE, gl.ONE, gl.ONE]; + array[BLEND_MODES.SCREEN_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + + // composite operations + array[BLEND_MODES.SRC_IN] = [gl.DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_OUT] = [gl.ONE_MINUS_DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_ATOP] = [gl.DST_ALPHA, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_OVER] = [gl.ONE_MINUS_DST_ALPHA, gl.ONE]; + array[BLEND_MODES.DST_IN] = [gl.ZERO, gl.SRC_ALPHA]; + array[BLEND_MODES.DST_OUT] = [gl.ZERO, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_ATOP] = [gl.ONE_MINUS_DST_ALPHA, gl.SRC_ALPHA]; + + // SUBTRACT from flash + array[BLEND_MODES.SUBTRACT] = [gl.ONE, gl.ONE, gl.ONE, gl.ONE, gl.FUNC_REVERSE_SUBTRACT, gl.FUNC_ADD]; + + return array; +} + +var BLEND$1 = 0; +var OFFSET$1 = 1; +var CULLING$1 = 2; +var DEPTH_TEST$1 = 3; +var WINDING$1 = 4; + +/** + * System plugin to the renderer to manage WebGL state machines. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StateSystem = /*@__PURE__*/(function (System) { + function StateSystem(renderer) + { + System.call(this, renderer); + + /** + * GL context + * @member {WebGLRenderingContext} + * @readonly + */ + this.gl = null; + + /** + * State ID + * @member {number} + * @readonly + */ + this.stateId = 0; + + /** + * Polygon offset + * @member {number} + * @readonly + */ + this.polygonOffset = 0; + + /** + * Blend mode + * @member {number} + * @default PIXI.BLEND_MODES.NONE + * @readonly + */ + this.blendMode = BLEND_MODES.NONE; + + /** + * Whether current blend equation is different + * @member {boolean} + * @protected + */ + this._blendEq = false; + + /** + * Collection of calls + * @member {function[]} + * @readonly + */ + this.map = []; + + // map functions for when we set state.. + this.map[BLEND$1] = this.setBlend; + this.map[OFFSET$1] = this.setOffset; + this.map[CULLING$1] = this.setCullFace; + this.map[DEPTH_TEST$1] = this.setDepthTest; + this.map[WINDING$1] = this.setFrontFace; + + /** + * Collection of check calls + * @member {function[]} + * @readonly + */ + this.checks = []; + + /** + * Default WebGL State + * @member {PIXI.State} + * @readonly + */ + this.defaultState = new State(); + this.defaultState.blend = true; + this.defaultState.depth = true; + } + + if ( System ) StateSystem.__proto__ = System; + StateSystem.prototype = Object.create( System && System.prototype ); + StateSystem.prototype.constructor = StateSystem; + + StateSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + + this.blendModes = mapWebGLBlendModesToPixi(gl); + + this.set(this.defaultState); + + this.reset(); + }; + + /** + * Sets the current state + * + * @param {*} state - The state to set. + */ + StateSystem.prototype.set = function set (state) + { + state = state || this.defaultState; + + // TODO maybe to an object check? ( this.state === state )? + if (this.stateId !== state.data) + { + var diff = this.stateId ^ state.data; + var i = 0; + + // order from least to most common + while (diff) + { + if (diff & 1) + { + // state change! + this.map[i].call(this, !!(state.data & (1 << i))); + } + + diff = diff >> 1; + i++; + } + + this.stateId = state.data; + } + + // based on the above settings we check for specific modes.. + // for example if blend is active we check and set the blend modes + // or of polygon offset is active we check the poly depth. + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + }; + + /** + * Sets the state, when previous state is unknown + * + * @param {*} state - The state to set + */ + StateSystem.prototype.forceState = function forceState (state) + { + state = state || this.defaultState; + for (var i = 0; i < this.map.length; i++) + { + this.map[i].call(this, !!(state.data & (1 << i))); + } + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + + this.stateId = state.data; + }; + + /** + * Enables or disabled blending. + * + * @param {boolean} value - Turn on or off webgl blending. + */ + StateSystem.prototype.setBlend = function setBlend (value) + { + this.updateCheck(StateSystem.checkBlendMode, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.BLEND); + }; + + /** + * Enables or disable polygon offset fill + * + * @param {boolean} value - Turn on or off webgl polygon offset testing. + */ + StateSystem.prototype.setOffset = function setOffset (value) + { + this.updateCheck(StateSystem.checkPolygonOffset, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.POLYGON_OFFSET_FILL); + }; + + /** + * Sets whether to enable or disable depth test. + * + * @param {boolean} value - Turn on or off webgl depth testing. + */ + StateSystem.prototype.setDepthTest = function setDepthTest (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.DEPTH_TEST); + }; + + /** + * Sets whether to enable or disable cull face. + * + * @param {boolean} value - Turn on or off webgl cull face. + */ + StateSystem.prototype.setCullFace = function setCullFace (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.CULL_FACE); + }; + + /** + * Sets the gl front face. + * + * @param {boolean} value - true is clockwise and false is counter-clockwise + */ + StateSystem.prototype.setFrontFace = function setFrontFace (value) + { + this.gl.frontFace(this.gl[value ? 'CW' : 'CCW']); + }; + + /** + * Sets the blend mode. + * + * @param {number} value - The blend mode to set to. + */ + StateSystem.prototype.setBlendMode = function setBlendMode (value) + { + if (value === this.blendMode) + { + return; + } + + this.blendMode = value; + + var mode = this.blendModes[value]; + var gl = this.gl; + + if (mode.length === 2) + { + gl.blendFunc(mode[0], mode[1]); + } + else + { + gl.blendFuncSeparate(mode[0], mode[1], mode[2], mode[3]); + } + if (mode.length === 6) + { + this._blendEq = true; + gl.blendEquationSeparate(mode[4], mode[5]); + } + else if (this._blendEq) + { + this._blendEq = false; + gl.blendEquationSeparate(gl.FUNC_ADD, gl.FUNC_ADD); + } + }; + + /** + * Sets the polygon offset. + * + * @param {number} value - the polygon offset + * @param {number} scale - the polygon offset scale + */ + StateSystem.prototype.setPolygonOffset = function setPolygonOffset (value, scale) + { + this.gl.polygonOffset(value, scale); + }; + + // used + /** + * Resets all the logic and disables the vaos + */ + StateSystem.prototype.reset = function reset () + { + this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false); + + this.forceState(0); + + this._blendEq = true; + this.blendMode = -1; + this.setBlendMode(0); + }; + + /** + * checks to see which updates should be checked based on which settings have been activated. + * For example, if blend is enabled then we should check the blend modes each time the state is changed + * or if polygon fill is activated then we need to check if the polygon offset changes. + * The idea is that we only check what we have too. + * + * @param {Function} func the checking function to add or remove + * @param {boolean} value should the check function be added or removed. + */ + StateSystem.prototype.updateCheck = function updateCheck (func, value) + { + var index = this.checks.indexOf(func); + + if (value && index === -1) + { + this.checks.push(func); + } + else if (!value && index !== -1) + { + this.checks.splice(index, 1); + } + }; + + /** + * A private little wrapper function that we call to check the blend mode. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkBlendMode = function checkBlendMode (system, state) + { + system.setBlendMode(state.blendMode); + }; + + /** + * A private little wrapper function that we call to check the polygon offset. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkPolygonOffset = function checkPolygonOffset (system, state) + { + system.setPolygonOffset(state.polygonOffset, 0); + }; + + return StateSystem; +}(System)); + +/** + * System plugin to the renderer to manage texture garbage collection on the GPU, + * ensuring that it does not get clogged up with textures that are no longer being used. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var TextureGCSystem = /*@__PURE__*/(function (System) { + function TextureGCSystem(renderer) + { + System.call(this, renderer); + + /** + * Count + * @member {number} + * @readonly + */ + this.count = 0; + + /** + * Check count + * @member {number} + * @readonly + */ + this.checkCount = 0; + + /** + * Maximum idle time, in seconds + * @member {number} + * @see PIXI.settings.GC_MAX_IDLE + */ + this.maxIdle = settings.GC_MAX_IDLE; + + /** + * Maximum number of item to check + * @member {number} + * @see PIXI.settings.GC_MAX_CHECK_COUNT + */ + this.checkCountMax = settings.GC_MAX_CHECK_COUNT; + + /** + * Current garabage collection mode + * @member {PIXI.GC_MODES} + * @see PIXI.settings.GC_MODE + */ + this.mode = settings.GC_MODE; + } + + if ( System ) TextureGCSystem.__proto__ = System; + TextureGCSystem.prototype = Object.create( System && System.prototype ); + TextureGCSystem.prototype.constructor = TextureGCSystem; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.postrender = function postrender () + { + this.count++; + + if (this.mode === GC_MODES.MANUAL) + { + return; + } + + this.checkCount++; + + if (this.checkCount > this.checkCountMax) + { + this.checkCount = 0; + + this.run(); + } + }; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.run = function run () + { + var tm = this.renderer.texture; + var managedTextures = tm.managedTextures; + var wasRemoved = false; + + for (var i = 0; i < managedTextures.length; i++) + { + var texture = managedTextures[i]; + + // only supports non generated textures at the moment! + if (!texture.framebuffer && this.count - texture.touched > this.maxIdle) + { + tm.destroyTexture(texture, true); + managedTextures[i] = null; + wasRemoved = true; + } + } + + if (wasRemoved) + { + var j = 0; + + for (var i$1 = 0; i$1 < managedTextures.length; i$1++) + { + if (managedTextures[i$1] !== null) + { + managedTextures[j++] = managedTextures[i$1]; + } + } + + managedTextures.length = j; + } + }; + + /** + * Removes all the textures within the specified displayObject and its children from the GPU + * + * @param {PIXI.DisplayObject} displayObject - the displayObject to remove the textures from. + */ + TextureGCSystem.prototype.unload = function unload (displayObject) + { + var tm = this.renderer.textureSystem; + + // only destroy non generated textures + if (displayObject._texture && displayObject._texture._glRenderTargets) + { + tm.destroyTexture(displayObject._texture); + } + + for (var i = displayObject.children.length - 1; i >= 0; i--) + { + this.unload(displayObject.children[i]); + } + }; + + return TextureGCSystem; +}(System)); + +/** + * Internal texture for WebGL context + * @class + * @memberof PIXI + */ +var GLTexture = function GLTexture(texture) +{ + /** + * The WebGL texture + * @member {WebGLTexture} + */ + this.texture = texture; + + /** + * Width of texture that was used in texImage2D + * @member {number} + */ + this.width = -1; + + /** + * Height of texture that was used in texImage2D + * @member {number} + */ + this.height = -1; + + /** + * Texture contents dirty flag + * @member {number} + */ + this.dirtyId = -1; + + /** + * Texture style dirty flag + * @member {number} + */ + this.dirtyStyleId = -1; + + /** + * Whether mip levels has to be generated + * @member {boolean} + */ + this.mipmap = false; + + /** + * WrapMode copied from baseTexture + * @member {number} + */ + this.wrapMode = 33071; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.type = 6408; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.internalFormat = 5121; +}; + +/** + * System plugin to the renderer to manage textures. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var TextureSystem = /*@__PURE__*/(function (System) { + function TextureSystem(renderer) + { + System.call(this, renderer); + + // TODO set to max textures... + /** + * Bound textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.boundTextures = []; + /** + * Current location + * @member {number} + * @readonly + */ + this.currentLocation = -1; + + /** + * List of managed textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.managedTextures = []; + + /** + * Did someone temper with textures state? We'll overwrite them when we need to unbind something. + * @member {boolean} + * @private + */ + this._unknownBoundTextures = false; + + /** + * BaseTexture value that shows that we don't know what is bound + * @member {PIXI.BaseTexture} + * @readonly + */ + this.unknownTexture = new BaseTexture(); + } + + if ( System ) TextureSystem.__proto__ = System; + TextureSystem.prototype = Object.create( System && System.prototype ); + TextureSystem.prototype.constructor = TextureSystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + TextureSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + this.webGLVersion = this.renderer.context.webGLVersion; + + var maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS); + + this.boundTextures.length = maxTextures; + + for (var i = 0; i < maxTextures; i++) + { + this.boundTextures[i] = null; + } + + // TODO move this.. to a nice make empty textures class.. + this.emptyTextures = {}; + + var emptyTexture2D = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_2D, emptyTexture2D.texture); + gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4)); + + this.emptyTextures[gl.TEXTURE_2D] = emptyTexture2D; + this.emptyTextures[gl.TEXTURE_CUBE_MAP] = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_CUBE_MAP, this.emptyTextures[gl.TEXTURE_CUBE_MAP].texture); + + for (var i$1 = 0; i$1 < 6; i$1++) + { + gl.texImage2D(gl.TEXTURE_CUBE_MAP_POSITIVE_X + i$1, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, null); + } + + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + + for (var i$2 = 0; i$2 < this.boundTextures.length; i$2++) + { + this.bind(null, i$2); + } + }; + + /** + * Bind a texture to a specific location + * + * If you want to unbind something, please use `unbind(texture)` instead of `bind(null, textureLocation)` + * + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + * @param {number} [location=0] - Location to bind at + */ + TextureSystem.prototype.bind = function bind (texture, location) + { + if ( location === void 0 ) location = 0; + + var ref = this; + var gl = ref.gl; + + if (texture) + { + texture = texture.baseTexture || texture; + + if (texture.valid) + { + texture.touched = this.renderer.textureGC.count; + + var glTexture = texture._glTextures[this.CONTEXT_UID] || this.initTexture(texture); + + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + if (this.boundTextures[location] !== texture) + { + gl.bindTexture(texture.target, glTexture.texture); + } + + if (glTexture.dirtyId !== texture.dirtyId) + { + this.updateTexture(texture); + } + + this.boundTextures[location] = texture; + } + } + else + { + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[gl.TEXTURE_2D].texture); + this.boundTextures[location] = null; + } + }; + + /** + * Resets texture location and bound textures + * + * Actual `bind(null, i)` calls will be performed at next `unbind()` call + */ + TextureSystem.prototype.reset = function reset () + { + this._unknownBoundTextures = true; + this.currentLocation = -1; + + for (var i = 0; i < this.boundTextures.length; i++) + { + this.boundTextures[i] = this.unknownTexture; + } + }; + + /** + * Unbind a texture + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + */ + TextureSystem.prototype.unbind = function unbind (texture) + { + var ref = this; + var gl = ref.gl; + var boundTextures = ref.boundTextures; + + if (this._unknownBoundTextures) + { + this._unknownBoundTextures = false; + // someone changed webGL state, + // we have to be sure that our texture does not appear in multi-texture renderer samplers + for (var i = 0; i < boundTextures.length; i++) + { + if (boundTextures[i] === this.unknownTexture) + { + this.bind(null, i); + } + } + } + + for (var i$1 = 0; i$1 < boundTextures.length; i$1++) + { + if (boundTextures[i$1] === texture) + { + if (this.currentLocation !== i$1) + { + gl.activeTexture(gl.TEXTURE0 + i$1); + this.currentLocation = i$1; + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[texture.target].texture); + boundTextures[i$1] = null; + } + } + }; + + /** + * Initialize a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.initTexture = function initTexture (texture) + { + var glTexture = new GLTexture(this.gl.createTexture()); + + // guarantee an update.. + glTexture.dirtyId = -1; + + texture._glTextures[this.CONTEXT_UID] = glTexture; + + this.managedTextures.push(texture); + texture.on('dispose', this.destroyTexture, this); + + return glTexture; + }; + + TextureSystem.prototype.initTextureType = function initTextureType (texture, glTexture) + { + glTexture.internalFormat = texture.format; + glTexture.type = texture.type; + if (this.webGLVersion !== 2) + { + return; + } + var gl = this.renderer.gl; + + if (texture.type === gl.FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA32F; + } + // that's WebGL1 HALF_FLOAT_OES + // we have to convert it to WebGL HALF_FLOAT + if (texture.type === TYPES.HALF_FLOAT) + { + glTexture.type = gl.HALF_FLOAT; + } + if (glTexture.type === gl.HALF_FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA16F; + } + }; + + /** + * Update a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.updateTexture = function updateTexture (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + var renderer = this.renderer; + + this.initTextureType(texture, glTexture); + + if (texture.resource && texture.resource.upload(renderer, texture, glTexture)) + ; + else + { + // default, renderTexture-like logic + var width = texture.realWidth; + var height = texture.realHeight; + var gl = renderer.gl; + + if (glTexture.width !== width + || glTexture.height !== height + || glTexture.dirtyId < 0) + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(texture.target, 0, + glTexture.internalFormat, + width, + height, + 0, + texture.format, + glTexture.type, + null); + } + } + + // lets only update what changes.. + if (texture.dirtyStyleId !== glTexture.dirtyStyleId) + { + this.updateTextureStyle(texture); + } + glTexture.dirtyId = texture.dirtyId; + }; + + /** + * Deletes the texture from WebGL + * + * @private + * @param {PIXI.BaseTexture|PIXI.Texture} texture - the texture to destroy + * @param {boolean} [skipRemove=false] - Whether to skip removing the texture from the TextureManager. + */ + TextureSystem.prototype.destroyTexture = function destroyTexture (texture, skipRemove) + { + var ref = this; + var gl = ref.gl; + + texture = texture.baseTexture || texture; + + if (texture._glTextures[this.CONTEXT_UID]) + { + this.unbind(texture); + + gl.deleteTexture(texture._glTextures[this.CONTEXT_UID].texture); + texture.off('dispose', this.destroyTexture, this); + + delete texture._glTextures[this.CONTEXT_UID]; + + if (!skipRemove) + { + var i = this.managedTextures.indexOf(texture); + + if (i !== -1) + { + removeItems(this.managedTextures, i, 1); + } + } + } + }; + + /** + * Update texture style such as mipmap flag + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + */ + TextureSystem.prototype.updateTextureStyle = function updateTextureStyle (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + if ((texture.mipmap === MIPMAP_MODES.POW2 || this.webGLVersion !== 2) && !texture.isPowerOfTwo) + { + glTexture.mipmap = 0; + glTexture.wrapMode = WRAP_MODES.CLAMP; + } + else + { + glTexture.mipmap = texture.mipmap >= 1; + glTexture.wrapMode = texture.wrapMode; + } + + if (texture.resource && texture.resource.style(this.renderer, texture, glTexture)) + ; + else + { + this.setStyle(texture, glTexture); + } + + glTexture.dirtyStyleId = texture.dirtyStyleId; + }; + + /** + * Set style for texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + * @param {PIXI.GLTexture} glTexture + */ + TextureSystem.prototype.setStyle = function setStyle (texture, glTexture) + { + var gl = this.gl; + + if (glTexture.mipmap) + { + gl.generateMipmap(texture.target); + } + + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_S, glTexture.wrapMode); + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_T, glTexture.wrapMode); + + if (glTexture.mipmap) + { + /* eslint-disable max-len */ + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR_MIPMAP_LINEAR : gl.NEAREST_MIPMAP_NEAREST); + /* eslint-disable max-len */ + + var anisotropicExt = this.renderer.context.extensions.anisotropicFiltering; + + if (anisotropicExt && texture.anisotropicLevel > 0 && texture.scaleMode === SCALE_MODES.LINEAR) + { + var level = Math.min(texture.anisotropicLevel, gl.getParameter(anisotropicExt.MAX_TEXTURE_MAX_ANISOTROPY_EXT)); + + gl.texParameterf(texture.target, anisotropicExt.TEXTURE_MAX_ANISOTROPY_EXT, level); + } + } + else + { + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + } + + gl.texParameteri(texture.target, gl.TEXTURE_MAG_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + }; + + return TextureSystem; +}(System)); + +var tempMatrix = new Matrix(); + +/** + * The AbstractRenderer is the base for a PixiJS Renderer. It is extended by the {@link PIXI.CanvasRenderer} + * and {@link PIXI.Renderer} which can be used for rendering a PixiJS scene. + * + * @abstract + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var AbstractRenderer = /*@__PURE__*/(function (EventEmitter) { + function AbstractRenderer(system, options) + { + EventEmitter.call(this); + + // Add the default render options + options = Object.assign({}, settings.RENDER_OPTIONS, options); + + // Deprecation notice for renderer roundPixels option + if (options.roundPixels) + { + settings.ROUND_PIXELS = options.roundPixels; + deprecation('5.0.0', 'Renderer roundPixels option is deprecated, please use PIXI.settings.ROUND_PIXELS', 2); + } + + /** + * The supplied constructor options. + * + * @member {Object} + * @readOnly + */ + this.options = options; + + /** + * The type of the renderer. + * + * @member {number} + * @default PIXI.RENDERER_TYPE.UNKNOWN + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.UNKNOWN; + + /** + * Measurements of the screen. (0, 0, screenWidth, screenHeight). + * + * Its safe to use as filterArea or hitArea for the whole stage. + * + * @member {PIXI.Rectangle} + */ + this.screen = new Rectangle(0, 0, options.width, options.height); + + /** + * The canvas element that everything is drawn to. + * + * @member {HTMLCanvasElement} + */ + this.view = options.view || document.createElement('canvas'); + + /** + * The resolution / device pixel ratio of the renderer. + * + * @member {number} + * @default 1 + */ + this.resolution = options.resolution || settings.RESOLUTION; + + /** + * Whether the render view is transparent. + * + * @member {boolean} + */ + this.transparent = options.transparent; + + /** + * Whether CSS dimensions of canvas view should be resized to screen dimensions automatically. + * + * @member {boolean} + */ + this.autoDensity = options.autoDensity || options.autoResize || false; + // autoResize is deprecated, provides fallback support + + /** + * The value of the preserveDrawingBuffer flag affects whether or not the contents of + * the stencil buffer is retained after rendering. + * + * @member {boolean} + */ + this.preserveDrawingBuffer = options.preserveDrawingBuffer; + + /** + * This sets if the CanvasRenderer will clear the canvas or not before the new render pass. + * If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every + * frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect + * to clear the canvas every frame. Disable this by setting this to false. For example, if + * your game has a canvas filling background image you often don't need this set. + * + * @member {boolean} + * @default + */ + this.clearBeforeRender = options.clearBeforeRender; + + /** + * The background color as a number. + * + * @member {number} + * @protected + */ + this._backgroundColor = 0x000000; + + /** + * The background color as an [R, G, B] array. + * + * @member {number[]} + * @protected + */ + this._backgroundColorRgba = [0, 0, 0, 0]; + + /** + * The background color as a string. + * + * @member {string} + * @protected + */ + this._backgroundColorString = '#000000'; + + this.backgroundColor = options.backgroundColor || this._backgroundColor; // run bg color setter + + /** + * This temporary display object used as the parent of the currently being rendered item. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._tempDisplayObjectParent = new Container(); + + /** + * The last root object that the renderer tried to render. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._lastObjectRendered = this._tempDisplayObjectParent; + + /** + * Collection of plugins. + * @readonly + * @member {object} + */ + this.plugins = {}; + } + + if ( EventEmitter ) AbstractRenderer.__proto__ = EventEmitter; + AbstractRenderer.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + AbstractRenderer.prototype.constructor = AbstractRenderer; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },backgroundColor: { configurable: true } }; + + /** + * Initialize the plugins. + * + * @protected + * @param {object} staticMap - The dictionary of statically saved plugins. + */ + AbstractRenderer.prototype.initPlugins = function initPlugins (staticMap) + { + for (var o in staticMap) + { + this.plugins[o] = new (staticMap[o])(this); + } + }; + + /** + * Same as view.width, actual number of pixels in the canvas by horizontal. + * + * @member {number} + * @readonly + * @default 800 + */ + prototypeAccessors.width.get = function () + { + return this.view.width; + }; + + /** + * Same as view.height, actual number of pixels in the canvas by vertical. + * + * @member {number} + * @readonly + * @default 600 + */ + prototypeAccessors.height.get = function () + { + return this.view.height; + }; + + /** + * Resizes the screen and canvas to the specified width and height. + * Canvas dimensions are multiplied by resolution. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + AbstractRenderer.prototype.resize = function resize (screenWidth, screenHeight) + { + this.screen.width = screenWidth; + this.screen.height = screenHeight; + + this.view.width = screenWidth * this.resolution; + this.view.height = screenHeight * this.resolution; + + if (this.autoDensity) + { + this.view.style.width = screenWidth + "px"; + this.view.style.height = screenHeight + "px"; + } + }; + + /** + * Useful function that returns a texture of the display object that can then be used to create sprites + * This can be quite useful if your displayObject is complicated and needs to be reused multiple times. + * + * @param {PIXI.DisplayObject} displayObject - The displayObject the object will be generated from. + * @param {number} scaleMode - Should be one of the scaleMode consts. + * @param {number} resolution - The resolution / device pixel ratio of the texture being generated. + * @param {PIXI.Rectangle} [region] - The region of the displayObject, that shall be rendered, + * if no region is specified, defaults to the local bounds of the displayObject. + * @return {PIXI.RenderTexture} A texture of the graphics object. + */ + AbstractRenderer.prototype.generateTexture = function generateTexture (displayObject, scaleMode, resolution, region) + { + region = region || displayObject.getLocalBounds(); + + // minimum texture size is 1x1, 0x0 will throw an error + if (region.width === 0) { region.width = 1; } + if (region.height === 0) { region.height = 1; } + + var renderTexture = RenderTexture.create(region.width | 0, region.height | 0, scaleMode, resolution); + + tempMatrix.tx = -region.x; + tempMatrix.ty = -region.y; + + this.render(displayObject, renderTexture, false, tempMatrix, !!displayObject.parent); + + return renderTexture; + }; + + /** + * Removes everything from the renderer and optionally removes the Canvas DOM element. + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + */ + AbstractRenderer.prototype.destroy = function destroy (removeView) + { + for (var o in this.plugins) + { + this.plugins[o].destroy(); + this.plugins[o] = null; + } + + if (removeView && this.view.parentNode) + { + this.view.parentNode.removeChild(this.view); + } + + this.plugins = null; + + this.type = RENDERER_TYPE.UNKNOWN; + + this.view = null; + + this.screen = null; + + this.resolution = 0; + + this.transparent = false; + + this.autoDensity = false; + + this.blendModes = null; + + this.options = null; + + this.preserveDrawingBuffer = false; + this.clearBeforeRender = false; + + this._backgroundColor = 0; + this._backgroundColorRgba = null; + this._backgroundColorString = null; + + this._tempDisplayObjectParent = null; + this._lastObjectRendered = null; + }; + + /** + * The background color to fill if not transparent + * + * @member {number} + */ + prototypeAccessors.backgroundColor.get = function () + { + return this._backgroundColor; + }; + + prototypeAccessors.backgroundColor.set = function (value) // eslint-disable-line require-jsdoc + { + this._backgroundColor = value; + this._backgroundColorString = hex2string(value); + hex2rgb(value, this._backgroundColorRgba); + }; + + Object.defineProperties( AbstractRenderer.prototype, prototypeAccessors ); + + return AbstractRenderer; +}(eventemitter3)); + +/** + * The Renderer draws the scene and all its content onto a WebGL enabled canvas. + * + * This renderer should be used for browsers that support WebGL. + * + * This renderer works by automatically managing WebGLBatchesm, so no need for Sprite Batches or Sprite Clouds. + * Don't forget to add the view to your DOM or you will not see anything! + * + * @class + * @memberof PIXI + * @extends PIXI.AbstractRenderer + */ +var Renderer = /*@__PURE__*/(function (AbstractRenderer) { + function Renderer(options) + { + if ( options === void 0 ) options = {}; + + AbstractRenderer.call(this, 'WebGL', options); + + // the options will have been modified here in the super constructor with pixi's default settings.. + options = this.options; + + /** + * The type of this renderer as a standardized const + * + * @member {number} + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.WEBGL; + + /** + * WebGL context, set by the contextSystem (this.context) + * + * @readonly + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.CONTEXT_UID = 0; + + // TODO legacy! + + /** + * Internal signal instances of **runner**, these + * are assigned to each system created. + * @see PIXI.Runner + * @name PIXI.Renderer#runners + * @private + * @type {object} + * @readonly + * @property {PIXI.Runner} destroy - Destroy runner + * @property {PIXI.Runner} contextChange - Context change runner + * @property {PIXI.Runner} reset - Reset runner + * @property {PIXI.Runner} update - Update runner + * @property {PIXI.Runner} postrender - Post-render runner + * @property {PIXI.Runner} prerender - Pre-render runner + * @property {PIXI.Runner} resize - Resize runner + */ + this.runners = { + destroy: new Runner('destroy'), + contextChange: new Runner('contextChange', 1), + reset: new Runner('reset'), + update: new Runner('update'), + postrender: new Runner('postrender'), + prerender: new Runner('prerender'), + resize: new Runner('resize', 2), + }; + + /** + * Global uniforms + * @member {PIXI.UniformGroup} + */ + this.globalUniforms = new UniformGroup({ + projectionMatrix: new Matrix(), + }, true); + + /** + * Mask system instance + * @member {PIXI.systems.MaskSystem} mask + * @memberof PIXI.Renderer# + * @readonly + */ + this.addSystem(MaskSystem, 'mask') + /** + * Context system instance + * @member {PIXI.systems.ContextSystem} context + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ContextSystem, 'context') + /** + * State system instance + * @member {PIXI.systems.StateSystem} state + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StateSystem, 'state') + /** + * Shader system instance + * @member {PIXI.systems.ShaderSystem} shader + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ShaderSystem, 'shader') + /** + * Texture system instance + * @member {PIXI.systems.TextureSystem} texture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureSystem, 'texture') + /** + * Geometry system instance + * @member {PIXI.systems.GeometrySystem} geometry + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(GeometrySystem, 'geometry') + /** + * Framebuffer system instance + * @member {PIXI.systems.FramebufferSystem} framebuffer + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FramebufferSystem, 'framebuffer') + /** + * Stencil system instance + * @member {PIXI.systems.StencilSystem} stencil + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StencilSystem, 'stencil') + /** + * Projection system instance + * @member {PIXI.systems.ProjectionSystem} projection + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ProjectionSystem, 'projection') + /** + * Texture garbage collector system instance + * @member {PIXI.systems.TextureGCSystem} textureGC + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureGCSystem, 'textureGC') + /** + * Filter system instance + * @member {PIXI.systems.FilterSystem} filter + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FilterSystem, 'filter') + /** + * RenderTexture system instance + * @member {PIXI.systems.RenderTextureSystem} renderTexture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(RenderTextureSystem, 'renderTexture') + + /** + * Batch system instance + * @member {PIXI.systems.BatchSystem} batch + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(BatchSystem, 'batch'); + + this.initPlugins(Renderer.__plugins); + + /** + * The options passed in to create a new WebGL context. + */ + if (options.context) + { + this.context.initFromContext(options.context); + } + else + { + this.context.initFromOptions({ + alpha: this.transparent, + antialias: options.antialias, + premultipliedAlpha: this.transparent && this.transparent !== 'notMultiplied', + stencil: true, + preserveDrawingBuffer: options.preserveDrawingBuffer, + powerPreference: this.options.powerPreference, + }); + } + + /** + * Flag if we are rendering to the screen vs renderTexture + * @member {boolean} + * @readonly + * @default true + */ + this.renderingToScreen = true; + + sayHello(this.context.webGLVersion === 2 ? 'WebGL 2' : 'WebGL 1'); + + this.resize(this.options.width, this.options.height); + } + + if ( AbstractRenderer ) Renderer.__proto__ = AbstractRenderer; + Renderer.prototype = Object.create( AbstractRenderer && AbstractRenderer.prototype ); + Renderer.prototype.constructor = Renderer; + + /** + * Add a new system to the renderer. + * @param {Function} ClassRef - Class reference + * @param {string} [name] - Property name for system, if not specified + * will use a static `name` property on the class itself. This + * name will be assigned as s property on the Renderer so make + * sure it doesn't collide with properties on Renderer. + * @return {PIXI.Renderer} Return instance of renderer + */ + Renderer.create = function create (options) + { + if (isWebGLSupported()) + { + return new Renderer(options); + } + + throw new Error('WebGL unsupported in this browser, use "pixi.js-legacy" for fallback canvas2d support.'); + }; + + Renderer.prototype.addSystem = function addSystem (ClassRef, name) + { + if (!name) + { + name = ClassRef.name; + } + + var system = new ClassRef(this); + + if (this[name]) + { + throw new Error(("Whoops! The name \"" + name + "\" is already in use")); + } + + this[name] = system; + + for (var i in this.runners) + { + this.runners[i].add(system); + } + + /** + * Fired after rendering finishes. + * + * @event PIXI.Renderer#postrender + */ + + /** + * Fired before rendering starts. + * + * @event PIXI.Renderer#prerender + */ + + /** + * Fired when the WebGL context is set. + * + * @event PIXI.Renderer#context + * @param {WebGLRenderingContext} gl - WebGL context. + */ + + return this; + }; + + /** + * Renders the object to its WebGL view + * + * @param {PIXI.DisplayObject} displayObject - The object to be rendered. + * @param {PIXI.RenderTexture} [renderTexture] - The render texture to render to. + * @param {boolean} [clear=true] - Should the canvas be cleared before the new render. + * @param {PIXI.Matrix} [transform] - A transform to apply to the render texture before rendering. + * @param {boolean} [skipUpdateTransform=false] - Should we skip the update transform pass? + */ + Renderer.prototype.render = function render (displayObject, renderTexture, clear, transform, skipUpdateTransform) + { + // can be handy to know! + this.renderingToScreen = !renderTexture; + + this.runners.prerender.run(); + this.emit('prerender'); + + // apply a transform at a GPU level + this.projection.transform = transform; + + // no point rendering if our context has been blown up! + if (this.context.isLost) + { + return; + } + + if (!renderTexture) + { + this._lastObjectRendered = displayObject; + } + + if (!skipUpdateTransform) + { + // update the scene graph + var cacheParent = displayObject.parent; + + displayObject.parent = this._tempDisplayObjectParent; + displayObject.updateTransform(); + displayObject.parent = cacheParent; + // displayObject.hitArea = //TODO add a temp hit area + } + + this.renderTexture.bind(renderTexture); + this.batch.currentRenderer.start(); + + if (clear !== undefined ? clear : this.clearBeforeRender) + { + this.renderTexture.clear(); + } + + displayObject.render(this); + + // apply transform.. + this.batch.currentRenderer.flush(); + + if (renderTexture) + { + renderTexture.baseTexture.update(); + } + + this.runners.postrender.run(); + + // reset transform after render + this.projection.transform = null; + + this.emit('postrender'); + }; + + /** + * Resizes the WebGL view to the specified width and height. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + Renderer.prototype.resize = function resize (screenWidth, screenHeight) + { + AbstractRenderer.prototype.resize.call(this, screenWidth, screenHeight); + + this.runners.resize.run(screenWidth, screenHeight); + }; + + /** + * Resets the WebGL state so you can render things however you fancy! + * + * @return {PIXI.Renderer} Returns itself. + */ + Renderer.prototype.reset = function reset () + { + this.runners.reset.run(); + + return this; + }; + + /** + * Clear the frame buffer + */ + Renderer.prototype.clear = function clear () + { + this.framebuffer.bind(); + this.framebuffer.clear(); + }; + + /** + * Removes everything from the renderer (event listeners, spritebatch, etc...) + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + * See: https://github.com/pixijs/pixi.js/issues/2233 + */ + Renderer.prototype.destroy = function destroy (removeView) + { + this.runners.destroy.run(); + + for (var r in this.runners) + { + this.runners[r].destroy(); + } + + // call base destroy + AbstractRenderer.prototype.destroy.call(this, removeView); + + // TODO nullify all the managers.. + this.gl = null; + }; + + /** + * Collection of installed plugins. These are included by default in PIXI, but can be excluded + * by creating a custom build. Consult the README for more information about creating custom + * builds and excluding plugins. + * @name PIXI.Renderer#plugins + * @type {object} + * @readonly + * @property {PIXI.accessibility.AccessibilityManager} accessibility Support tabbing interactive elements. + * @property {PIXI.extract.Extract} extract Extract image data from renderer. + * @property {PIXI.interaction.InteractionManager} interaction Handles mouse, touch and pointer events. + * @property {PIXI.prepare.Prepare} prepare Pre-render display objects. + */ + + /** + * Adds a plugin to the renderer. + * + * @method + * @param {string} pluginName - The name of the plugin. + * @param {Function} ctor - The constructor function or class for the plugin. + */ + Renderer.registerPlugin = function registerPlugin (pluginName, ctor) + { + Renderer.__plugins = Renderer.__plugins || {}; + Renderer.__plugins[pluginName] = ctor; + }; + + return Renderer; +}(AbstractRenderer)); + +/** + * This helper function will automatically detect which renderer you should be using. + * WebGL is the preferred renderer as it is a lot faster. If WebGL is not supported by + * the browser then this function will return a canvas renderer + * + * @memberof PIXI + * @function autoDetectRenderer + * @param {object} [options] - The optional renderer parameters + * @param {number} [options.width=800] - the width of the renderers view + * @param {number} [options.height=600] - the height of the renderers view + * @param {HTMLCanvasElement} [options.view] - the canvas to use as a view, optional + * @param {boolean} [options.transparent=false] - If the render view is transparent, default false + * @param {boolean} [options.autoDensity=false] - Resizes renderer view in CSS pixels to allow for + * resolutions other than 1 + * @param {boolean} [options.antialias=false] - sets antialias + * @param {boolean} [options.preserveDrawingBuffer=false] - enables drawing buffer preservation, enable this if you + * need to call toDataUrl on the webgl context + * @param {number} [options.backgroundColor=0x000000] - The background color of the rendered area + * (shown if not transparent). + * @param {boolean} [options.clearBeforeRender=true] - This sets if the renderer will clear the canvas or + * not before the new render pass. + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the renderer, retina would be 2 + * @param {boolean} [options.forceCanvas=false] - prevents selection of WebGL renderer, even if such is present, this + * option only is available when using **pixi.js-legacy** or **@pixi/canvas-renderer** modules, otherwise + * it is ignored. + * @param {boolean} [options.forceFXAA=false] - forces FXAA antialiasing to be used over native. + * FXAA is faster, but may not always look as great **webgl only** + * @param {string} [options.powerPreference] - Parameter passed to webgl context, set to "high-performance" + * for devices with dual graphics card **webgl only** + * @return {PIXI.Renderer|PIXI.CanvasRenderer} Returns WebGL renderer if available, otherwise CanvasRenderer + */ +function autoDetectRenderer(options) +{ + return Renderer.create(options); +} + +var defaultFilter = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +/** + * Used by the batcher to draw batches. + * Each one of these contains all information required to draw a bound geometry. + * + * @class + * @memberof PIXI + */ +var BatchDrawCall = function BatchDrawCall() +{ + this.textures = []; + this.ids = []; + this.blend = 0; + this.textureCount = 0; + this.start = 0; + this.size = 0; + this.type = 4; +}; + +/** + * Flexible wrapper around `ArrayBuffer` that also provides + * typed array views on demand. + * + * @class + * @memberof PIXI + */ +var ViewableBuffer = function ViewableBuffer(size) +{ + /** + * Underlying `ArrayBuffer` that holds all the data + * and is of capacity `size`. + * + * @member {ArrayBuffer} + */ + this.rawBinaryData = new ArrayBuffer(size); + + /** + * View on the raw binary data as a `Uint32Array`. + * + * @member {Uint32Array} + */ + this.uint32View = new Uint32Array(this.rawBinaryData); + + /** + * View on the raw binary data as a `Float32Array`. + * + * @member {Float32Array} + */ + this.float32View = new Float32Array(this.rawBinaryData); +}; + +var prototypeAccessors$5$1 = { int8View: { configurable: true },uint8View: { configurable: true },int16View: { configurable: true },uint16View: { configurable: true },int32View: { configurable: true } }; + +/** + * View on the raw binary data as a `Int8Array`. + * + * @member {Int8Array} + */ +prototypeAccessors$5$1.int8View.get = function () +{ + if (!this._int8View) + { + this._int8View = new Int8Array(this.rawBinaryData); + } + + return this._int8View; +}; + +/** + * View on the raw binary data as a `Uint8Array`. + * + * @member {Uint8Array} + */ +prototypeAccessors$5$1.uint8View.get = function () +{ + if (!this._uint8View) + { + this._uint8View = new Uint8Array(this.rawBinaryData); + } + + return this._uint8View; +}; + +/** + * View on the raw binary data as a `Int16Array`. + * + * @member {Int16Array} + */ +prototypeAccessors$5$1.int16View.get = function () +{ + if (!this._int16View) + { + this._int16View = new Int16Array(this.rawBinaryData); + } + + return this._int16View; +}; + +/** + * View on the raw binary data as a `Uint16Array`. + * + * @member {Uint16Array} + */ +prototypeAccessors$5$1.uint16View.get = function () +{ + if (!this._uint16View) + { + this._uint16View = new Uint16Array(this.rawBinaryData); + } + + return this._uint16View; +}; + +/** + * View on the raw binary data as a `Int32Array`. + * + * @member {Int32Array} + */ +prototypeAccessors$5$1.int32View.get = function () +{ + if (!this._int32View) + { + this._int32View = new Int32Array(this.rawBinaryData); + } + + return this._int32View; +}; + +/** + * Returns the view of the given type. + * + * @param {string} type - One of `int8`, `uint8`, `int16`, + *`uint16`, `int32`, `uint32`, and `float32`. + * @return {object} typed array of given type + */ +ViewableBuffer.prototype.view = function view (type) +{ + return this[(type + "View")]; +}; + +/** + * Destroys all buffer references. Do not use after calling + * this. + */ +ViewableBuffer.prototype.destroy = function destroy () +{ + this.rawBinaryData = null; + this._int8View = null; + this._uint8View = null; + this._int16View = null; + this._uint16View = null; + this._int32View = null; + this.uint32View = null; + this.float32View = null; +}; + +ViewableBuffer.sizeOf = function sizeOf (type) +{ + switch (type) + { + case 'int8': + case 'uint8': + return 1; + case 'int16': + case 'uint16': + return 2; + case 'int32': + case 'uint32': + case 'float32': + return 4; + default: + throw new Error((type + " isn't a valid view type")); + } +}; + +Object.defineProperties( ViewableBuffer.prototype, prototypeAccessors$5$1 ); + +/** + * Renderer dedicated to drawing and batching sprites. + * + * This is the default batch renderer. It buffers objects + * with texture-based geometries and renders them in + * batches. It uploads multiple textures to the GPU to + * reduce to the number of draw calls. + * + * @class + * @protected + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var AbstractBatchRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function AbstractBatchRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + /** + * This is used to generate a shader that can + * color each vertex based on a `aTextureId` + * attribute that points to an texture in `uSampler`. + * + * This enables the objects with different textures + * to be drawn in the same draw call. + * + * You can customize your shader by creating your + * custom shader generator. + * + * @member {PIXI.BatchShaderGenerator} + * @protected + */ + this.shaderGenerator = null; + + /** + * The class that represents the geometry of objects + * that are going to be batched with this. + * + * @member {object} + * @default PIXI.BatchGeometry + * @protected + */ + this.geometryClass = null; + + /** + * Size of data being buffered per vertex in the + * attribute buffers (in floats). By default, the + * batch-renderer plugin uses 6: + * + * | aVertexPosition | 2 | + * |-----------------|---| + * | aTextureCoords | 2 | + * | aColor | 1 | + * | aTextureId | 1 | + * + * @member {number} + * @readonly + */ + this.vertexSize = null; + + /** + * The WebGL state in which this renderer will work. + * + * @member {PIXI.State} + * @readonly + */ + this.state = State.for2d(); + + /** + * The number of bufferable objects before a flush + * occurs automatically. + * + * @member {number} + * @default settings.SPRITE_MAX_TEXTURES + */ + this.size = 2000 * 4;// settings.SPRITE_BATCH_SIZE, 2000 is a nice balance between mobile/desktop + + /** + * Total count of all vertices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._vertexCount = 0; + + /** + * Total count of all indices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._indexCount = 0; + + /** + * Buffer of objects that are yet to be rendered. + * + * @member {PIXI.DisplayObject[]} + * @private + */ + this._bufferedElements = []; + + /** + * Number of elements that are buffered and are + * waiting to be flushed. + * + * @member {number} + * @private + */ + this._bufferSize = 0; + + /** + * This shader is generated by `this.shaderGenerator`. + * + * It is generated specifically to handle the required + * number of textures being batched together. + * + * @member {PIXI.Shader} + * @protected + */ + this._shader = null; + + /** + * Pool of `this.geometryClass` geometry objects + * that store buffers. They are used to pass data + * to the shader on each draw call. + * + * These are never re-allocated again, unless a + * context change occurs; however, the pool may + * be expanded if required. + * + * @member {PIXI.Geometry[]} + * @private + * @see PIXI.AbstractBatchRenderer.contextChange + */ + this._packedGeometries = []; + + /** + * Size of `this._packedGeometries`. It can be expanded + * if more than `this._packedGeometryPoolSize` flushes + * occur in a single frame. + * + * @member {number} + * @private + */ + this._packedGeometryPoolSize = 2; + + /** + * A flush may occur multiple times in a single + * frame. On iOS devices or when + * `settings.CAN_UPLOAD_SAME_BUFFER` is false, the + * batch renderer does not upload data to the same + * `WebGLBuffer` for performance reasons. + * + * This is the index into `packedGeometries` that points to + * geometry holding the most recent buffers. + * + * @member {number} + * @private + */ + this._flushId = 0; + + /** + * Pool of `BatchDrawCall` objects that `flush` used + * to create "batches" of the objects being rendered. + * + * These are never re-allocated again. + * + * @member BatchDrawCall[] + * @private + */ + this._drawCalls = []; + + for (var k = 0; k < this.size / 4; k++) + { // initialize the draw-calls pool to max size. + this._drawCalls[k] = new BatchDrawCall(); + } + + /** + * Pool of `ViewableBuffer` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing attributes. + * + * The first buffer has a size of 8; each subsequent + * buffer has double capacity of its previous. + * + * @member {PIXI.ViewableBuffer} + * @private + * @see PIXI.AbstractBatchRenderer#getAttributeBuffer + */ + this._aBuffers = {}; + + /** + * Pool of `Uint16Array` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing indices. + * + * The first buffer has a size of 12; each subsequent + * buffer has double capacity of its previous. + * + * @member {Uint16Array[]} + * @private + * @see PIXI.AbstractBatchRenderer#getIndexBuffer + */ + this._iBuffers = {}; + + /** + * Maximum number of textures that can be uploaded to + * the GPU under the current context. It is initialized + * properly in `this.contextChange`. + * + * @member {number} + * @see PIXI.AbstractBatchRenderer#contextChange + * @readonly + */ + this.MAX_TEXTURES = 1; + + this.renderer.on('prerender', this.onPrerender, this); + renderer.runners.contextChange.add(this); + } + + if ( ObjectRenderer ) AbstractBatchRenderer.__proto__ = ObjectRenderer; + AbstractBatchRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + AbstractBatchRenderer.prototype.constructor = AbstractBatchRenderer; + + /** + * Handles the `contextChange` signal. + * + * It calculates `this.MAX_TEXTURES` and allocating the + * packed-geometry object pool. + */ + AbstractBatchRenderer.prototype.contextChange = function contextChange () + { + var gl = this.renderer.gl; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + this.MAX_TEXTURES = 1; + } + else + { + // step 1: first check max textures the GPU can handle. + this.MAX_TEXTURES = Math.min( + gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS), + settings.SPRITE_MAX_TEXTURES); + + // step 2: check the maximum number of if statements the shader can have too.. + this.MAX_TEXTURES = checkMaxIfStatementsInShader( + this.MAX_TEXTURES, gl); + } + + this._shader = this.shaderGenerator.generateShader(this.MAX_TEXTURES); + + // we use the second shader as the first one depending on your browser + // may omit aTextureId as it is not used by the shader so is optimized out. + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + /* eslint-disable max-len */ + this._packedGeometries[i] = new (this.geometryClass)(); + } + }; + + /** + * Handles the `prerender` signal. + * + * It ensures that flushes start from the first geometry + * object again. + */ + AbstractBatchRenderer.prototype.onPrerender = function onPrerender () + { + this._flushId = 0; + }; + + /** + * Buffers the "batchable" object. It need not be rendered + * immediately. + * + * @param {PIXI.Sprite} sprite - the sprite to render when + * using this spritebatch + */ + AbstractBatchRenderer.prototype.render = function render (element) + { + if (!element._texture.valid) + { + return; + } + + if (this._vertexCount + (element.vertexData.length / 2) > this.size) + { + this.flush(); + } + + this._vertexCount += element.vertexData.length / 2; + this._indexCount += element.indices.length; + this._bufferedElements[this._bufferSize++] = element; + }; + + /** + * Renders the content _now_ and empties the current batch. + */ + AbstractBatchRenderer.prototype.flush = function flush () + { + if (this._vertexCount === 0) + { + return; + } + + var attributeBuffer = this.getAttributeBuffer(this._vertexCount); + var indexBuffer = this.getIndexBuffer(this._indexCount); + var gl = this.renderer.gl; + + var ref = this; + var elements = ref._bufferedElements; + var drawCalls = ref._drawCalls; + var MAX_TEXTURES = ref.MAX_TEXTURES; + var packedGeometries = ref._packedGeometries; + var vertexSize = ref.vertexSize; + + var touch = this.renderer.textureGC.count; + + var index = 0; + var _indexCount = 0; + + var nextTexture; + var currentTexture; + var textureCount = 0; + + var currentGroup = drawCalls[0]; + var groupCount = 0; + + var blendMode = -1;// blend-mode of previous element/sprite/object! + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.blend = blendMode; + + var TICK = ++BaseTexture._globalBatch; + var i; + + for (i = 0; i < this._bufferSize; ++i) + { + var sprite = elements[i]; + + elements[i] = null; + nextTexture = sprite._texture.baseTexture; + + var spriteBlendMode = premultiplyBlendMode[ + nextTexture.premultiplyAlpha ? 1 : 0][sprite.blendMode]; + + if (blendMode !== spriteBlendMode) + { + blendMode = spriteBlendMode; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + currentGroup.size = _indexCount - currentGroup.start; + + currentGroup = drawCalls[groupCount++]; + currentGroup.textureCount = 0; + currentGroup.blend = blendMode; + currentGroup.start = _indexCount; + } + + nextTexture.touched = touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + this.packInterleavedGeometry(sprite, attributeBuffer, + indexBuffer, index, _indexCount); + + // push a graphics.. + index += (sprite.vertexData.length / 2) * vertexSize; + _indexCount += sprite.indices.length; + } + + BaseTexture._globalBatch = TICK; + currentGroup.size = _indexCount - currentGroup.start; + + if (!settings.CAN_UPLOAD_SAME_BUFFER) + { /* Usually on iOS devices, where the browser doesn't + like uploads to the same buffer in a single frame. */ + if (this._packedGeometryPoolSize <= this._flushId) + { + this._packedGeometryPoolSize++; + packedGeometries[this._flushId] = new (this.geometryClass)(); + } + + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.bind(packedGeometries[this._flushId]); + this.renderer.geometry.updateBuffers(); + this._flushId++; + } + else + { + // lets use the faster option, always use buffer number 0 + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.updateBuffers(); + } + + var textureSystem = this.renderer.texture; + var stateSystem = this.renderer.state; + + // Upload textures and do the draw calls + for (i = 0; i < groupCount; i++) + { + var group = drawCalls[i]; + var groupTextureCount = group.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + textureSystem.bind(group.textures[j], j); + group.textures[j] = null; + } + + stateSystem.setBlendMode(group.blend); + gl.drawElements(group.type, group.size, gl.UNSIGNED_SHORT, group.start * 2); + } + + // reset elements for the next flush + this._bufferSize = 0; + this._vertexCount = 0; + this._indexCount = 0; + }; + + /** + * Starts a new sprite batch. + */ + AbstractBatchRenderer.prototype.start = function start () + { + this.renderer.state.set(this.state); + + this.renderer.shader.bind(this._shader); + + if (settings.CAN_UPLOAD_SAME_BUFFER) + { + // bind buffer #0, we don't need others + this.renderer.geometry.bind(this._packedGeometries[this._flushId]); + } + }; + + /** + * Stops and flushes the current batch. + */ + AbstractBatchRenderer.prototype.stop = function stop () + { + this.flush(); + }; + + /** + * Destroys this `AbstractBatchRenderer`. It cannot be used again. + */ + AbstractBatchRenderer.prototype.destroy = function destroy () + { + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + if (this._packedGeometries[i]) + { + this._packedGeometries[i].destroy(); + } + } + + this.renderer.off('prerender', this.onPrerender, this); + + this._aBuffers = null; + this._iBuffers = null; + this._packedGeometries = null; + this._drawCalls = null; + + if (this._shader) + { + this._shader.destroy(); + this._shader = null; + } + + ObjectRenderer.prototype.destroy.call(this); + }; + + /** + * Fetches an attribute buffer from `this._aBuffers` that + * can hold atleast `size` floats. + * + * @param {number} size - minimum capacity required + * @return {ViewableBuffer} - buffer than can hold atleast `size` floats + * @private + */ + AbstractBatchRenderer.prototype.getAttributeBuffer = function getAttributeBuffer (size) + { + // 8 vertices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 8)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 8; + + if (this._aBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._aBuffers[roundedSize]; + + if (!buffer) + { + this._aBuffers[roundedSize] = buffer = new ViewableBuffer(roundedSize * this.vertexSize * 4); + } + + return buffer; + }; + + /** + * Fetches an index buffer from `this._iBuffers` that can + * has atleast `size` capacity. + * + * @param {number} size - minimum required capacity + * @return {Uint16Array} - buffer that can fit `size` + * indices. + * @private + */ + AbstractBatchRenderer.prototype.getIndexBuffer = function getIndexBuffer (size) + { + // 12 indices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 12)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 12; + + if (this._iBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._iBuffers[roundedSizeIndex]; + + if (!buffer) + { + this._iBuffers[roundedSizeIndex] = buffer = new Uint16Array(roundedSize); + } + + return buffer; + }; + + /** + * Takes the four batching parameters of `element`, interleaves + * and pushes them into the batching attribute/index buffers given. + * + * It uses these properties: `vertexData` `uvs`, `textureId` and + * `indicies`. It also uses the "tint" of the base-texture, if + * present. + * + * @param {PIXI.Sprite} element - element being rendered + * @param {PIXI.ViewableBuffer} attributeBuffer - attribute buffer. + * @param {Uint16Array} indexBuffer - index buffer + * @param {number} aIndex - number of floats already in the attribute buffer + * @param {number} iIndex - number of indices already in `indexBuffer` + */ + AbstractBatchRenderer.prototype.packInterleavedGeometry = function packInterleavedGeometry (element, attributeBuffer, indexBuffer, aIndex, iIndex) + { + var uint32View = attributeBuffer.uint32View; + var float32View = attributeBuffer.float32View; + + var packedVertices = aIndex / this.vertexSize; + var uvs = element.uvs; + var indicies = element.indices; + var vertexData = element.vertexData; + var textureId = element._texture.baseTexture._id; + + var alpha = Math.min(element.worldAlpha, 1.0); + var argb = (alpha < 1.0 + && element._texture.baseTexture.premultiplyAlpha) + ? premultiplyTint(element._tintRGB, alpha) + : element._tintRGB + (alpha * 255 << 24); + + // lets not worry about tint! for now.. + for (var i = 0; i < vertexData.length; i += 2) + { + float32View[aIndex++] = vertexData[i]; + float32View[aIndex++] = vertexData[i + 1]; + float32View[aIndex++] = uvs[i]; + float32View[aIndex++] = uvs[i + 1]; + uint32View[aIndex++] = argb; + float32View[aIndex++] = textureId; + } + + for (var i$1 = 0; i$1 < indicies.length; i$1++) + { + indexBuffer[iIndex++] = packedVertices + indicies[i$1]; + } + }; + + return AbstractBatchRenderer; +}(ObjectRenderer)); + +/** + * Helper that generates batching multi-texture shader. Use it with your new BatchRenderer + * + * @class + * @memberof PIXI + */ +var BatchShaderGenerator = function BatchShaderGenerator(vertexSrc, fragTemplate) +{ + /** + * Reference to the vertex shader source. + * + * @member {string} + */ + this.vertexSrc = vertexSrc; + + /** + * Reference to the fragement shader template. Must contain "%count%" and "%forloop%". + * + * @member {string} + */ + this.fragTemplate = fragTemplate; + + this.programCache = {}; + this.defaultGroupCache = {}; + + if (fragTemplate.indexOf('%count%') < 0) + { + throw new Error('Fragment template must contain "%count%".'); + } + + if (fragTemplate.indexOf('%forloop%') < 0) + { + throw new Error('Fragment template must contain "%forloop%".'); + } +}; + +BatchShaderGenerator.prototype.generateShader = function generateShader (maxTextures) +{ + if (!this.programCache[maxTextures]) + { + var sampleValues = new Int32Array(maxTextures); + + for (var i = 0; i < maxTextures; i++) + { + sampleValues[i] = i; + } + + this.defaultGroupCache[maxTextures] = UniformGroup.from({ uSamplers: sampleValues }, true); + + var fragmentSrc = this.fragTemplate; + + fragmentSrc = fragmentSrc.replace(/%count%/gi, ("" + maxTextures)); + fragmentSrc = fragmentSrc.replace(/%forloop%/gi, this.generateSampleSrc(maxTextures)); + + this.programCache[maxTextures] = new Program(this.vertexSrc, fragmentSrc); + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: this.defaultGroupCache[maxTextures], + }; + + return new Shader(this.programCache[maxTextures], uniforms); +}; + +BatchShaderGenerator.prototype.generateSampleSrc = function generateSampleSrc (maxTextures) +{ + var src = ''; + + src += '\n'; + src += '\n'; + + for (var i = 0; i < maxTextures; i++) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxTextures - 1) + { + src += "if(vTextureId < " + i + ".5)"; + } + + src += '\n{'; + src += "\n\tcolor = texture2D(uSamplers[" + i + "], vTextureCoord);"; + src += '\n}'; + } + + src += '\n'; + src += '\n'; + + return src; +}; + +/** + * Geometry used to batch standard PIXI content (e.g. Mesh, Sprite, Graphics objects). + * + * @class + * @memberof PIXI + */ +var BatchGeometry = /*@__PURE__*/(function (Geometry) { + function BatchGeometry(_static) + { + if ( _static === void 0 ) _static = false; + + Geometry.call(this); + + /** + * Buffer used for position, color, texture IDs + * + * @member {PIXI.Buffer} + * @protected + */ + this._buffer = new Buffer$1(null, _static, false); + + /** + * Index buffer data + * + * @member {PIXI.Buffer} + * @protected + */ + this._indexBuffer = new Buffer$1(null, _static, true); + + this.addAttribute('aVertexPosition', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aTextureCoord', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aColor', this._buffer, 4, true, TYPES.UNSIGNED_BYTE) + .addAttribute('aTextureId', this._buffer, 1, true, TYPES.FLOAT) + .addIndex(this._indexBuffer); + } + + if ( Geometry ) BatchGeometry.__proto__ = Geometry; + BatchGeometry.prototype = Object.create( Geometry && Geometry.prototype ); + BatchGeometry.prototype.constructor = BatchGeometry; + + return BatchGeometry; +}(Geometry)); + +var defaultVertex$2 = "precision highp float;\nattribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\nattribute float aTextureId;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform vec4 tint;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vTextureId = aTextureId;\n vColor = aColor * tint;\n}\n"; + +var defaultFragment$2 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\nuniform sampler2D uSamplers[%count%];\n\nvoid main(void){\n vec4 color;\n %forloop%\n gl_FragColor = color * vColor;\n}\n"; + +/** + * @class + * @memberof PIXI + * @hideconstructor + */ +var BatchPluginFactory = function BatchPluginFactory () {}; + +var staticAccessors$1$1 = { defaultVertexSrc: { configurable: true },defaultFragmentTemplate: { configurable: true } }; + +BatchPluginFactory.create = function create (options) +{ + var ref = Object.assign({ + vertex: defaultVertex$2, + fragment: defaultFragment$2, + geometryClass: BatchGeometry, + vertexSize: 6, + }, options); + var vertex = ref.vertex; + var fragment = ref.fragment; + var vertexSize = ref.vertexSize; + var geometryClass = ref.geometryClass; + + return /*@__PURE__*/(function (AbstractBatchRenderer) { + function BatchPlugin(renderer) + { + AbstractBatchRenderer.call(this, renderer); + + this.shaderGenerator = new BatchShaderGenerator(vertex, fragment); + this.geometryClass = geometryClass; + this.vertexSize = vertexSize; + } + + if ( AbstractBatchRenderer ) BatchPlugin.__proto__ = AbstractBatchRenderer; + BatchPlugin.prototype = Object.create( AbstractBatchRenderer && AbstractBatchRenderer.prototype ); + BatchPlugin.prototype.constructor = BatchPlugin; + + return BatchPlugin; + }(AbstractBatchRenderer)); +}; + +/** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultVertexSrc.get = function () +{ + return defaultVertex$2; +}; + +/** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultFragmentTemplate.get = function () +{ + return defaultFragment$2; +}; + +Object.defineProperties( BatchPluginFactory, staticAccessors$1$1 ); + +// Setup the default BatchRenderer plugin, this is what +// we'll actually export at the root level +var BatchRenderer = BatchPluginFactory.create(); + +/*! + * @pixi/extract - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/extract is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var TEMP_RECT = new Rectangle(); +var BYTES_PER_PIXEL = 4; + +/** + * The extract manager provides functionality to export content from the renderers. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.extract` + * + * @class + * @memberof PIXI.extract + */ +var Extract = function Extract(renderer) +{ + this.renderer = renderer; + /** + * Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture + * + * @member {PIXI.extract.Extract} extract + * @memberof PIXI.Renderer# + * @see PIXI.extract.Extract + */ + renderer.extract = this; +}; + +/** + * Will return a HTML Image of the target + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {HTMLImageElement} HTML Image of the target + */ +Extract.prototype.image = function image (target, format, quality) +{ + var image = new Image(); + + image.src = this.base64(target, format, quality); + + return image; +}; + +/** + * Will return a a base64 encoded string of this target. It works by calling + * `Extract.getCanvas` and then running toDataURL on that. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {string} A base64 encoded string of the texture. + */ +Extract.prototype.base64 = function base64 (target, format, quality) +{ + return this.canvas(target).toDataURL(format, quality); +}; + +/** + * Creates a Canvas element, renders this target to it and then returns it. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {HTMLCanvasElement} A Canvas element with the texture rendered on. + */ +Extract.prototype.canvas = function canvas (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var flipY = false; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + flipY = false; + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = this.renderer.resolution; + + flipY = true; + + frame = TEMP_RECT; + frame.width = this.renderer.width; + frame.height = this.renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = Math.floor(frame.width * resolution); + var height = Math.floor(frame.height * resolution); + + var canvasBuffer = new CanvasRenderTarget(width, height, 1); + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + // add the pixels to the canvas + var canvasData = canvasBuffer.context.getImageData(0, 0, width, height); + + Extract.arrayPostDivide(webglPixels, canvasData.data); + + canvasBuffer.context.putImageData(canvasData, 0, 0); + + // pulling pixels + if (flipY) + { + canvasBuffer.context.scale(1, -1); + canvasBuffer.context.drawImage(canvasBuffer.canvas, 0, -height); + } + + if (generated) + { + renderTexture.destroy(true); + } + + // send the canvas back.. + return canvasBuffer.canvas; +}; + +/** + * Will return a one-dimensional array containing the pixel data of the entire texture in RGBA + * order, with integer values between 0 and 255 (included). + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {Uint8Array} One-dimensional array containing the pixel data of the entire texture + */ +Extract.prototype.pixels = function pixels (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + + // bind the buffer + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = renderer.resolution; + + frame = TEMP_RECT; + frame.width = renderer.width; + frame.height = renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = frame.width * resolution; + var height = frame.height * resolution; + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + if (generated) + { + renderTexture.destroy(true); + } + + Extract.arrayPostDivide(webglPixels, webglPixels); + + return webglPixels; +}; + +/** + * Destroys the extract + * + */ +Extract.prototype.destroy = function destroy () +{ + this.renderer.extract = null; + this.renderer = null; +}; + +/** + * Takes premultiplied pixel data and produces regular pixel data + * + * @private + * @param pixels {number[] | Uint8Array | Uint8ClampedArray} array of pixel data + * @param out {number[] | Uint8Array | Uint8ClampedArray} output array + */ +Extract.arrayPostDivide = function arrayPostDivide (pixels, out) +{ + for (var i = 0; i < pixels.length; i += 4) + { + var alpha = out[i + 3] = pixels[i + 3]; + + if (alpha !== 0) + { + out[i] = Math.round(Math.min(pixels[i] * 255.0 / alpha, 255.0)); + out[i + 1] = Math.round(Math.min(pixels[i + 1] * 255.0 / alpha, 255.0)); + out[i + 2] = Math.round(Math.min(pixels[i + 2] * 255.0 / alpha, 255.0)); + } + else + { + out[i] = pixels[i]; + out[i + 1] = pixels[i + 1]; + out[i + 2] = pixels[i + 2]; + } + } +}; + +/*! + * @pixi/interaction - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/interaction is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Holds all information related to an Interaction event + * + * @class + * @memberof PIXI.interaction + */ +var InteractionData = function InteractionData() +{ + /** + * This point stores the global coords of where the touch/mouse event happened + * + * @member {PIXI.Point} + */ + this.global = new Point(); + + /** + * The target Sprite that was interacted with + * + * @member {PIXI.Sprite} + */ + this.target = null; + + /** + * When passed to an event handler, this will be the original DOM Event that was captured + * + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent + * @member {MouseEvent|TouchEvent|PointerEvent} + */ + this.originalEvent = null; + + /** + * Unique identifier for this interaction + * + * @member {number} + */ + this.identifier = null; + + /** + * Indicates whether or not the pointer device that created the event is the primary pointer. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary + * @type {Boolean} + */ + this.isPrimary = false; + + /** + * Indicates which button was pressed on the mouse or pointer device to trigger the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button + * @type {number} + */ + this.button = 0; + + /** + * Indicates which buttons are pressed on the mouse or pointer device when the event is triggered. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/buttons + * @type {number} + */ + this.buttons = 0; + + /** + * The width of the pointer's contact along the x-axis, measured in CSS pixels. + * radiusX of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width + * @type {number} + */ + this.width = 0; + + /** + * The height of the pointer's contact along the y-axis, measured in CSS pixels. + * radiusY of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height + * @type {number} + */ + this.height = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX + * @type {number} + */ + this.tiltX = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY + * @type {number} + */ + this.tiltY = 0; + + /** + * The type of pointer that triggered the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType + * @type {string} + */ + this.pointerType = null; + + /** + * Pressure applied by the pointing device during the event. A Touch's force property + * will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure + * @type {number} + */ + this.pressure = 0; + + /** + * From TouchEvents (not PointerEvents triggered by touches), the rotationAngle of the Touch. + * @see https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle + * @type {number} + */ + this.rotationAngle = 0; + + /** + * Twist of a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.twist = 0; + + /** + * Barrel pressure on a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.tangentialPressure = 0; +}; + +var prototypeAccessors$6 = { pointerId: { configurable: true } }; + +/** + * The unique identifier of the pointer. It will be the same as `identifier`. + * @readonly + * @member {number} + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId + */ +prototypeAccessors$6.pointerId.get = function () +{ + return this.identifier; +}; + +/** + * This will return the local coordinates of the specified displayObject for this InteractionData + * + * @param {PIXI.DisplayObject} displayObject - The DisplayObject that you would like the local + * coords off + * @param {PIXI.Point} [point] - A Point object in which to store the value, optional (otherwise + * will create a new point) + * @param {PIXI.Point} [globalPos] - A Point object containing your custom global coords, optional + * (otherwise will use the current global coords) + * @return {PIXI.Point} A point containing the coordinates of the InteractionData position relative + * to the DisplayObject + */ +InteractionData.prototype.getLocalPosition = function getLocalPosition (displayObject, point, globalPos) +{ + return displayObject.worldTransform.applyInverse(globalPos || this.global, point); +}; + +/** + * Copies properties from normalized event data. + * + * @param {Touch|MouseEvent|PointerEvent} event The normalized event data + */ +InteractionData.prototype.copyEvent = function copyEvent (event) +{ + // isPrimary should only change on touchstart/pointerdown, so we don't want to overwrite + // it with "false" on later events when our shim for it on touch events might not be + // accurate + if (event.isPrimary) + { + this.isPrimary = true; + } + this.button = event.button; + // event.buttons is not available in all browsers (ie. Safari), but it does have a non-standard + // event.which property instead, which conveys the same information. + this.buttons = Number.isInteger(event.buttons) ? event.buttons : event.which; + this.width = event.width; + this.height = event.height; + this.tiltX = event.tiltX; + this.tiltY = event.tiltY; + this.pointerType = event.pointerType; + this.pressure = event.pressure; + this.rotationAngle = event.rotationAngle; + this.twist = event.twist || 0; + this.tangentialPressure = event.tangentialPressure || 0; +}; + +/** + * Resets the data for pooling. + */ +InteractionData.prototype.reset = function reset () +{ + // isPrimary is the only property that we really need to reset - everything else is + // guaranteed to be overwritten + this.isPrimary = false; +}; + +Object.defineProperties( InteractionData.prototype, prototypeAccessors$6 ); + +/** + * Event class that mimics native DOM events. + * + * @class + * @memberof PIXI.interaction + */ +var InteractionEvent = function InteractionEvent() +{ + /** + * Whether this event will continue propagating in the tree. + * + * Remaining events for the {@link stopsPropagatingAt} object + * will still be dispatched. + * + * @member {boolean} + */ + this.stopped = false; + + /** + * At which object this event stops propagating. + * + * @private + * @member {PIXI.DisplayObject} + */ + this.stopsPropagatingAt = null; + + /** + * Whether we already reached the element we want to + * stop propagating at. This is important for delayed events, + * where we start over deeper in the tree again. + * + * @private + * @member {boolean} + */ + this.stopPropagationHint = false; + + /** + * The object which caused this event to be dispatched. + * For listener callback see {@link PIXI.interaction.InteractionEvent.currentTarget}. + * + * @member {PIXI.DisplayObject} + */ + this.target = null; + + /** + * The object whose event listener’s callback is currently being invoked. + * + * @member {PIXI.DisplayObject} + */ + this.currentTarget = null; + + /** + * Type of the event + * + * @member {string} + */ + this.type = null; + + /** + * InteractionData related to this event + * + * @member {PIXI.interaction.InteractionData} + */ + this.data = null; +}; + +/** + * Prevents event from reaching any objects other than the current object. + * + */ +InteractionEvent.prototype.stopPropagation = function stopPropagation () +{ + this.stopped = true; + this.stopPropagationHint = true; + this.stopsPropagatingAt = this.currentTarget; +}; + +/** + * Resets the event. + */ +InteractionEvent.prototype.reset = function reset () +{ + this.stopped = false; + this.stopsPropagatingAt = null; + this.stopPropagationHint = false; + this.currentTarget = null; + this.target = null; +}; + +/** + * DisplayObjects with the {@link PIXI.interaction.interactiveTarget} mixin use this class to track interactions + * + * @class + * @private + * @memberof PIXI.interaction + */ +var InteractionTrackingData = function InteractionTrackingData(pointerId) +{ + this._pointerId = pointerId; + this._flags = InteractionTrackingData.FLAGS.NONE; +}; + +var prototypeAccessors$1$3 = { pointerId: { configurable: true },flags: { configurable: true },none: { configurable: true },over: { configurable: true },rightDown: { configurable: true },leftDown: { configurable: true } }; + +/** + * + * @private + * @param {number} flag - The interaction flag to set + * @param {boolean} yn - Should the flag be set or unset + */ +InteractionTrackingData.prototype._doSet = function _doSet (flag, yn) +{ + if (yn) + { + this._flags = this._flags | flag; + } + else + { + this._flags = this._flags & (~flag); + } +}; + +/** + * Unique pointer id of the event + * + * @readonly + * @private + * @member {number} + */ +prototypeAccessors$1$3.pointerId.get = function () +{ + return this._pointerId; +}; + +/** + * State of the tracking data, expressed as bit flags + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.flags.get = function () +{ + return this._flags; +}; + +prototypeAccessors$1$3.flags.set = function (flags) // eslint-disable-line require-jsdoc +{ + this._flags = flags; +}; + +/** + * Is the tracked event inactive (not over or down)? + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.none.get = function () +{ + return this._flags === this.constructor.FLAGS.NONE; +}; + +/** + * Is the tracked event over the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.over.get = function () +{ + return (this._flags & this.constructor.FLAGS.OVER) !== 0; +}; + +prototypeAccessors$1$3.over.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.OVER, yn); +}; + +/** + * Did the right mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.rightDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.RIGHT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.rightDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.RIGHT_DOWN, yn); +}; + +/** + * Did the left mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.leftDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.LEFT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.leftDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.LEFT_DOWN, yn); +}; + +Object.defineProperties( InteractionTrackingData.prototype, prototypeAccessors$1$3 ); + +InteractionTrackingData.FLAGS = Object.freeze({ + NONE: 0, + OVER: 1 << 0, + LEFT_DOWN: 1 << 1, + RIGHT_DOWN: 1 << 2, +}); + +/** + * Interface for classes that represent a hit area. + * + * It is implemented by the following classes: + * - {@link PIXI.Circle} + * - {@link PIXI.Ellipse} + * - {@link PIXI.Polygon} + * - {@link PIXI.RoundedRectangle} + * + * @interface IHitArea + * @memberof PIXI + */ + +/** + * Checks whether the x and y coordinates given are contained within this area + * + * @method + * @name contains + * @memberof PIXI.IHitArea# + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this area + */ + +/** + * Default property values of interactive objects + * Used by {@link PIXI.interaction.InteractionManager} to automatically give all DisplayObjects these properties + * + * @private + * @name interactiveTarget + * @type {Object} + * @memberof PIXI.interaction + * @example + * function MyObject() {} + * + * Object.assign( + * DisplayObject.prototype, + * PIXI.interaction.interactiveTarget + * ); + */ +var interactiveTarget = { + + /** + * Enable interaction events for the DisplayObject. Touch, pointer and mouse + * events will not be emitted unless `interactive` is set to `true`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.on('tap', (event) => { + * //handle event + * }); + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + interactive: false, + + /** + * Determines if the children to the displayObject can be clicked/touched + * Setting this to false allows PixiJS to bypass a recursive `hitTest` function + * + * @member {boolean} + * @memberof PIXI.Container# + */ + interactiveChildren: true, + + /** + * Interaction shape. Children will be hit first, then this shape will be checked. + * Setting this will cause this shape to be checked in hit tests rather than the displayObject's bounds. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.hitArea = new PIXI.Rectangle(0, 0, 100, 100); + * @member {PIXI.IHitArea} + * @memberof PIXI.DisplayObject# + */ + hitArea: null, + + /** + * If enabled, the mouse cursor use the pointer behavior when hovered over the displayObject if it is interactive + * Setting this changes the 'cursor' property to `'pointer'`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.buttonMode = true; + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + get buttonMode() + { + return this.cursor === 'pointer'; + }, + set buttonMode(value) + { + if (value) + { + this.cursor = 'pointer'; + } + else if (this.cursor === 'pointer') + { + this.cursor = null; + } + }, + + /** + * This defines what cursor mode is used when the mouse cursor + * is hovered over the displayObject. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.cursor = 'wait'; + * @see https://developer.mozilla.org/en/docs/Web/CSS/cursor + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + cursor: null, + + /** + * Internal set of all active pointers, by identifier + * + * @member {Map} + * @memberof PIXI.DisplayObject# + * @private + */ + get trackedPointers() + { + if (this._trackedPointers === undefined) { this._trackedPointers = {}; } + + return this._trackedPointers; + }, + + /** + * Map of all tracked pointers, by identifier. Use trackedPointers to access. + * + * @private + * @type {Map} + */ + _trackedPointers: undefined, +}; + +// Mix interactiveTarget into DisplayObject.prototype, +// after deprecation has been handled +DisplayObject.mixin(interactiveTarget); + +var MOUSE_POINTER_ID = 1; + +// helpers for hitTest() - only used inside hitTest() +var hitTestEvent = { + target: null, + data: { + global: null, + }, +}; + +/** + * The interaction manager deals with mouse, touch and pointer events. + * + * Any DisplayObject can be interactive if its `interactive` property is set to true. + * + * This manager also supports multitouch. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.interaction` + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI.interaction + */ +var InteractionManager = /*@__PURE__*/(function (EventEmitter) { + function InteractionManager(renderer, options) + { + EventEmitter.call(this); + + options = options || {}; + + /** + * The renderer this interaction manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * Should default browser actions automatically be prevented. + * Does not apply to pointer events for backwards compatibility + * preventDefault on pointer events stops mouse events from firing + * Thus, for every pointer event, there will always be either a mouse of touch event alongside it. + * + * @member {boolean} + * @default true + */ + this.autoPreventDefault = options.autoPreventDefault !== undefined ? options.autoPreventDefault : true; + + /** + * Frequency in milliseconds that the mousemove, mouseover & mouseout interaction events will be checked. + * + * @member {number} + * @default 10 + */ + this.interactionFrequency = options.interactionFrequency || 10; + + /** + * The mouse data + * + * @member {PIXI.interaction.InteractionData} + */ + this.mouse = new InteractionData(); + this.mouse.identifier = MOUSE_POINTER_ID; + + // setting the mouse to start off far off screen will mean that mouse over does + // not get called before we even move the mouse. + this.mouse.global.set(-999999); + + /** + * Actively tracked InteractionData + * + * @private + * @member {Object.} + */ + this.activeInteractionData = {}; + this.activeInteractionData[MOUSE_POINTER_ID] = this.mouse; + + /** + * Pool of unused InteractionData + * + * @private + * @member {PIXI.interaction.InteractionData[]} + */ + this.interactionDataPool = []; + + /** + * An event data object to handle all the event tracking/dispatching + * + * @member {object} + */ + this.eventData = new InteractionEvent(); + + /** + * The DOM element to bind to. + * + * @protected + * @member {HTMLElement} + */ + this.interactionDOMElement = null; + + /** + * This property determines if mousemove and touchmove events are fired only when the cursor + * is over the object. + * Setting to true will make things work more in line with how the DOM version works. + * Setting to false can make things easier for things like dragging + * It is currently set to false as this is how PixiJS used to work. This will be set to true in + * future versions of pixi. + * + * @member {boolean} + * @default false + */ + this.moveWhenInside = false; + + /** + * Have events been attached to the dom element? + * + * @protected + * @member {boolean} + */ + this.eventsAdded = false; + + /** + * Is the mouse hovering over the renderer? + * + * @protected + * @member {boolean} + */ + this.mouseOverRenderer = false; + + /** + * Does the device support touch events + * https://www.w3.org/TR/touch-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsTouchEvents = 'ontouchstart' in window; + + /** + * Does the device support pointer events + * https://www.w3.org/Submission/pointer-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsPointerEvents = !!window.PointerEvent; + + // this will make it so that you don't have to call bind all the time + + /** + * @private + * @member {Function} + */ + this.onPointerUp = this.onPointerUp.bind(this); + this.processPointerUp = this.processPointerUp.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerCancel = this.onPointerCancel.bind(this); + this.processPointerCancel = this.processPointerCancel.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerDown = this.onPointerDown.bind(this); + this.processPointerDown = this.processPointerDown.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerMove = this.onPointerMove.bind(this); + this.processPointerMove = this.processPointerMove.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOut = this.onPointerOut.bind(this); + this.processPointerOverOut = this.processPointerOverOut.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOver = this.onPointerOver.bind(this); + + /** + * Dictionary of how different cursor modes are handled. Strings are handled as CSS cursor + * values, objects are handled as dictionaries of CSS values for interactionDOMElement, + * and functions are called instead of changing the CSS. + * Default CSS cursor values are provided for 'default' and 'pointer' modes. + * @member {Object.} + */ + this.cursorStyles = { + default: 'inherit', + pointer: 'pointer', + }; + + /** + * The mode of the cursor that is being used. + * The value of this is a key from the cursorStyles dictionary. + * + * @member {string} + */ + this.currentCursorMode = null; + + /** + * Internal cached let. + * + * @private + * @member {string} + */ + this.cursor = null; + + /** + * Internal cached let. + * + * @private + * @member {PIXI.Point} + */ + this._tempPoint = new Point(); + + /** + * The current resolution / device pixel ratio. + * + * @member {number} + * @default 1 + */ + this.resolution = 1; + + /** + * Delayed pointer events. Used to guarantee correct ordering of over/out events. + * + * @private + * @member {Array} + */ + this.delayedEvents = []; + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display + * object. + * + * @event PIXI.interaction.InteractionManager#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. + * + * @event PIXI.interaction.InteractionManager#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. + * + * @event PIXI.interaction.InteractionManager#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. + * + * @event PIXI.interaction.InteractionManager#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. + * + * @event PIXI.interaction.InteractionManager#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. + * + * @event PIXI.interaction.InteractionManager#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown}. + * + * @event PIXI.interaction.InteractionManager#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.interaction.InteractionManager#event:rightdown}. + * + * @event PIXI.interaction.InteractionManager#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object + * + * @event PIXI.interaction.InteractionManager#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * + * @event PIXI.interaction.InteractionManager#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * Not always fired when some buttons are held down while others are released. In those cases, + * use [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown} and + * [mouseup]{@link PIXI.interaction.InteractionManager#event:mouseup} instead. + * + * @event PIXI.interaction.InteractionManager#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event + * + * @event PIXI.interaction.InteractionManager#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * + * @event PIXI.interaction.InteractionManager#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.interaction.InteractionManager#event:pointerdown}. + * + * @event PIXI.interaction.InteractionManager#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object + * + * @event PIXI.interaction.InteractionManager#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * + * @event PIXI.interaction.InteractionManager#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * + * @event PIXI.interaction.InteractionManager#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch + * + * @event PIXI.interaction.InteractionManager#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * + * @event PIXI.interaction.InteractionManager#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.interaction.InteractionManager#event:touchstart}. + * + * @event PIXI.interaction.InteractionManager#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * + * @event PIXI.interaction.InteractionManager#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display. + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.DisplayObject#event:mousedown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.DisplayObject#event:rightdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.DisplayObject#event:pointerdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.DisplayObject#event:touchstart}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + this.setTargetElement(this.renderer.view, this.renderer.resolution); + } + + if ( EventEmitter ) InteractionManager.__proto__ = EventEmitter; + InteractionManager.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + InteractionManager.prototype.constructor = InteractionManager; + + /** + * Hit tests a point against the display tree, returning the first interactive object that is hit. + * + * @param {PIXI.Point} globalPoint - A point to hit test with, in global space. + * @param {PIXI.Container} [root] - The root display object to start from. If omitted, defaults + * to the last rendered root of the associated renderer. + * @return {PIXI.DisplayObject} The hit display object, if any. + */ + InteractionManager.prototype.hitTest = function hitTest (globalPoint, root) + { + // clear the target for our hit test + hitTestEvent.target = null; + // assign the global point + hitTestEvent.data.global = globalPoint; + // ensure safety of the root + if (!root) + { + root = this.renderer._lastObjectRendered; + } + // run the hit test + this.processInteractive(hitTestEvent, root, null, true); + // return our found object - it'll be null if we didn't hit anything + + return hitTestEvent.target; + }; + + /** + * Sets the DOM element which will receive mouse/touch events. This is useful for when you have + * other DOM elements on top of the renderers Canvas element. With this you'll be bale to delegate + * another DOM element to receive those events. + * + * @param {HTMLElement} element - the DOM element which will receive mouse and touch events. + * @param {number} [resolution=1] - The resolution / device pixel ratio of the new element (relative to the canvas). + */ + InteractionManager.prototype.setTargetElement = function setTargetElement (element, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + this.removeEvents(); + + this.interactionDOMElement = element; + + this.resolution = resolution; + + this.addEvents(); + }; + + /** + * Registers all the DOM events + * + * @private + */ + InteractionManager.prototype.addEvents = function addEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.add(this.update, this, UPDATE_PRIORITY.INTERACTION); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = 'none'; + this.interactionDOMElement.style['-ms-touch-action'] = 'none'; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = 'none'; + } + + /** + * These events are added first, so that if pointer events are normalized, they are fired + * in the same order as non-normalized events. ie. pointer event 1st, mouse / touch 2nd + */ + if (this.supportsPointerEvents) + { + window.document.addEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('pointerdown', this.onPointerDown, true); + // pointerout is fired in addition to pointerup (for touch events) and pointercancel + // we already handle those, so for the purposes of what we do in onPointerOut, we only + // care about the pointerleave event + this.interactionDOMElement.addEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('pointerover', this.onPointerOver, true); + window.addEventListener('pointercancel', this.onPointerCancel, true); + window.addEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.addEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('mouseover', this.onPointerOver, true); + window.addEventListener('mouseup', this.onPointerUp, true); + } + + // always look directly for touch events so that we can provide original data + // In a future version we should change this to being just a fallback and rely solely on + // PointerEvents whenever available + if (this.supportsTouchEvents) + { + this.interactionDOMElement.addEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.addEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.addEventListener('touchmove', this.onPointerMove, true); + } + + this.eventsAdded = true; + }; + + /** + * Removes all the DOM events that were previously registered + * + * @private + */ + InteractionManager.prototype.removeEvents = function removeEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.remove(this.update, this); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = ''; + this.interactionDOMElement.style['-ms-touch-action'] = ''; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = ''; + } + + if (this.supportsPointerEvents) + { + window.document.removeEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('pointerdown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('pointerover', this.onPointerOver, true); + window.removeEventListener('pointercancel', this.onPointerCancel, true); + window.removeEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.removeEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('mouseover', this.onPointerOver, true); + window.removeEventListener('mouseup', this.onPointerUp, true); + } + + if (this.supportsTouchEvents) + { + this.interactionDOMElement.removeEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.removeEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.removeEventListener('touchmove', this.onPointerMove, true); + } + + this.interactionDOMElement = null; + + this.eventsAdded = false; + }; + + /** + * Updates the state of interactive objects. + * Invoked by a throttled ticker update from {@link PIXI.Ticker.system}. + * + * @param {number} deltaTime - time delta since last tick + */ + InteractionManager.prototype.update = function update (deltaTime) + { + this._deltaTime += deltaTime; + + if (this._deltaTime < this.interactionFrequency) + { + return; + } + + this._deltaTime = 0; + + if (!this.interactionDOMElement) + { + return; + } + + // if the user move the mouse this check has already been done using the mouse move! + if (this.didMove) + { + this.didMove = false; + + return; + } + + this.cursor = null; + + // Resets the flag as set by a stopPropagation call. This flag is usually reset by a user interaction of any kind, + // but there was a scenario of a display object moving under a static mouse cursor. + // In this case, mouseover and mouseevents would not pass the flag test in dispatchEvent function + for (var k in this.activeInteractionData) + { + // eslint-disable-next-line no-prototype-builtins + if (this.activeInteractionData.hasOwnProperty(k)) + { + var interactionData = this.activeInteractionData[k]; + + if (interactionData.originalEvent && interactionData.pointerType !== 'touch') + { + var interactionEvent = this.configureInteractionEventForDOMEvent( + this.eventData, + interactionData.originalEvent, + interactionData + ); + + this.processInteractive( + interactionEvent, + this.renderer._lastObjectRendered, + this.processPointerOverOut, + true + ); + } + } + } + + this.setCursorMode(this.cursor); + }; + + /** + * Sets the current cursor mode, handling any callbacks or CSS style changes. + * + * @param {string} mode - cursor mode, a key from the cursorStyles dictionary + */ + InteractionManager.prototype.setCursorMode = function setCursorMode (mode) + { + mode = mode || 'default'; + // if the mode didn't actually change, bail early + if (this.currentCursorMode === mode) + { + return; + } + this.currentCursorMode = mode; + var style = this.cursorStyles[mode]; + + // only do things if there is a cursor style for it + if (style) + { + switch (typeof style) + { + case 'string': + // string styles are handled as cursor CSS + this.interactionDOMElement.style.cursor = style; + break; + case 'function': + // functions are just called, and passed the cursor mode + style(mode); + break; + case 'object': + // if it is an object, assume that it is a dictionary of CSS styles, + // apply it to the interactionDOMElement + Object.assign(this.interactionDOMElement.style, style); + break; + } + } + else if (typeof mode === 'string' && !Object.prototype.hasOwnProperty.call(this.cursorStyles, mode)) + { + // if it mode is a string (not a Symbol) and cursorStyles doesn't have any entry + // for the mode, then assume that the dev wants it to be CSS for the cursor. + this.interactionDOMElement.style.cursor = mode; + } + }; + + /** + * Dispatches an event on the display object that was interacted with + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.dispatchEvent = function dispatchEvent (displayObject, eventString, eventData) + { + // Even if the event was stopped, at least dispatch any remaining events + // for the same display object. + if (!eventData.stopPropagationHint || displayObject === eventData.stopsPropagatingAt) + { + eventData.currentTarget = displayObject; + eventData.type = eventString; + + displayObject.emit(eventString, eventData); + + if (displayObject[eventString]) + { + displayObject[eventString](eventData); + } + } + }; + + /** + * Puts a event on a queue to be dispatched later. This is used to guarantee correct + * ordering of over/out events. + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.delayDispatchEvent = function delayDispatchEvent (displayObject, eventString, eventData) + { + this.delayedEvents.push({ displayObject: displayObject, eventString: eventString, eventData: eventData }); + }; + + /** + * Maps x and y coords from a DOM object and maps them correctly to the PixiJS view. The + * resulting value is stored in the point. This takes into account the fact that the DOM + * element could be scaled and positioned anywhere on the screen. + * + * @param {PIXI.Point} point - the point that the result will be stored in + * @param {number} x - the x coord of the position to map + * @param {number} y - the y coord of the position to map + */ + InteractionManager.prototype.mapPositionToPoint = function mapPositionToPoint (point, x, y) + { + var rect; + + // IE 11 fix + if (!this.interactionDOMElement.parentElement) + { + rect = { x: 0, y: 0, width: 0, height: 0 }; + } + else + { + rect = this.interactionDOMElement.getBoundingClientRect(); + } + + var resolutionMultiplier = 1.0 / this.resolution; + + point.x = ((x - rect.left) * (this.interactionDOMElement.width / rect.width)) * resolutionMultiplier; + point.y = ((y - rect.top) * (this.interactionDOMElement.height / rect.height)) * resolutionMultiplier; + }; + + /** + * This function is provides a neat way of crawling through the scene graph and running a + * specified function on all interactive objects it finds. It will also take care of hit + * testing the interactive objects and passes the hit across in the function. + * + * @protected + * @param {PIXI.interaction.InteractionEvent} interactionEvent - event containing the point that + * is tested for collision + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the displayObject + * that will be hit test (recursively crawls its children) + * @param {Function} [func] - the function that will be called on each interactive object. The + * interactionEvent, displayObject and hit will be passed to the function + * @param {boolean} [hitTest] - this indicates if the objects inside should be hit test against the point + * @param {boolean} [interactive] - Whether the displayObject is interactive + * @param {boolean} [skipDelayed] - Whether to process delayed events before returning. This is + * used to avoid processing them too early during recursive calls. + * @return {boolean} returns true if the displayObject hit the point + */ + InteractionManager.prototype.processInteractive = function processInteractive (interactionEvent, displayObject, func, hitTest, interactive, skipDelayed) + { + if (!displayObject || !displayObject.visible) + { + return false; + } + + var point = interactionEvent.data.global; + + // Took a little while to rework this function correctly! But now it is done and nice and optimized! ^_^ + // + // This function will now loop through all objects and then only hit test the objects it HAS + // to, not all of them. MUCH faster.. + // An object will be hit test if the following is true: + // + // 1: It is interactive. + // 2: It belongs to a parent that is interactive AND one of the parents children have not already been hit. + // + // As another little optimization once an interactive object has been hit we can carry on + // through the scenegraph, but we know that there will be no more hits! So we can avoid extra hit tests + // A final optimization is that an object is not hit test directly if a child has already been hit. + + interactive = displayObject.interactive || interactive; + + var hit = false; + var interactiveParent = interactive; + + // Flag here can set to false if the event is outside the parents hitArea or mask + var hitTestChildren = true; + + // If there is a hitArea, no need to test against anything else if the pointer is not within the hitArea + // There is also no longer a need to hitTest children. + if (displayObject.hitArea) + { + if (hitTest) + { + displayObject.worldTransform.applyInverse(point, this._tempPoint); + if (!displayObject.hitArea.contains(this._tempPoint.x, this._tempPoint.y)) + { + hitTest = false; + hitTestChildren = false; + } + else + { + hit = true; + } + } + interactiveParent = false; + } + // If there is a mask, no need to hitTest against anything else if the pointer is not within the mask. + // We still want to hitTestChildren, however, to ensure a mouseout can still be generated. + // https://github.com/pixijs/pixi.js/issues/5135 + else if (displayObject._mask) + { + if (hitTest) + { + if (!(displayObject._mask.containsPoint && displayObject._mask.containsPoint(point))) + { + hitTest = false; + } + } + } + + // ** FREE TIP **! If an object is not interactive or has no buttons in it + // (such as a game scene!) set interactiveChildren to false for that displayObject. + // This will allow PixiJS to completely ignore and bypass checking the displayObjects children. + if (hitTestChildren && displayObject.interactiveChildren && displayObject.children) + { + var children = displayObject.children; + + for (var i = children.length - 1; i >= 0; i--) + { + var child = children[i]; + + // time to get recursive.. if this function will return if something is hit.. + var childHit = this.processInteractive(interactionEvent, child, func, hitTest, interactiveParent, true); + + if (childHit) + { + // its a good idea to check if a child has lost its parent. + // this means it has been removed whilst looping so its best + if (!child.parent) + { + continue; + } + + // we no longer need to hit test any more objects in this container as we we + // now know the parent has been hit + interactiveParent = false; + + // If the child is interactive , that means that the object hit was actually + // interactive and not just the child of an interactive object. + // This means we no longer need to hit test anything else. We still need to run + // through all objects, but we don't need to perform any hit tests. + + if (childHit) + { + if (interactionEvent.target) + { + hitTest = false; + } + hit = true; + } + } + } + } + + // no point running this if the item is not interactive or does not have an interactive parent. + if (interactive) + { + // if we are hit testing (as in we have no hit any objects yet) + // We also don't need to worry about hit testing if once of the displayObjects children + // has already been hit - but only if it was interactive, otherwise we need to keep + // looking for an interactive child, just in case we hit one + if (hitTest && !interactionEvent.target) + { + // already tested against hitArea if it is defined + if (!displayObject.hitArea && displayObject.containsPoint) + { + if (displayObject.containsPoint(point)) + { + hit = true; + } + } + } + + if (displayObject.interactive) + { + if (hit && !interactionEvent.target) + { + interactionEvent.target = displayObject; + } + + if (func) + { + func(interactionEvent, displayObject, !!hit); + } + } + } + + var delayedEvents = this.delayedEvents; + + if (delayedEvents.length && !skipDelayed) + { + // Reset the propagation hint, because we start deeper in the tree again. + interactionEvent.stopPropagationHint = false; + + var delayedLen = delayedEvents.length; + + this.delayedEvents = []; + + for (var i$1 = 0; i$1 < delayedLen; i$1++) + { + var ref = delayedEvents[i$1]; + var displayObject$1 = ref.displayObject; + var eventString = ref.eventString; + var eventData = ref.eventData; + + // When we reach the object we wanted to stop propagating at, + // set the propagation hint. + if (eventData.stopsPropagatingAt === displayObject$1) + { + eventData.stopPropagationHint = true; + } + + this.dispatchEvent(displayObject$1, eventString, eventData); + } + } + + return hit; + }; + + /** + * Is called when the pointer button is pressed down on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being pressed down + */ + InteractionManager.prototype.onPointerDown = function onPointerDown (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + /** + * No need to prevent default on natural pointer events, as there are no side effects + * Normalized events, however, may have the double mousedown/touchstart issue on the native android browser, + * so still need to be prevented. + */ + + // Guaranteed that there will be at least one event in events, and all events must have the same pointer type + + if (this.autoPreventDefault && events[0].isNormalized) + { + var cancelable = originalEvent.cancelable || !('cancelable' in originalEvent); + + if (cancelable) + { + originalEvent.preventDefault(); + } + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerDown, true); + + this.emit('pointerdown', interactionEvent); + if (event.pointerType === 'touch') + { + this.emit('touchstart', interactionEvent); + } + // emit a mouse event for "pen" pointers, the way a browser would emit a fallback event + else if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? 'rightdown' : 'mousedown', this.eventData); + } + } + }; + + /** + * Processes the result of the pointer down check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerDown = function processPointerDown (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + var id = interactionEvent.data.identifier; + + if (hit) + { + if (!displayObject.trackedPointers[id]) + { + displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + this.dispatchEvent(displayObject, 'pointerdown', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchstart', interactionEvent); + } + else if (data.pointerType === 'mouse' || data.pointerType === 'pen') + { + var isRightButton = data.button === 2; + + if (isRightButton) + { + displayObject.trackedPointers[id].rightDown = true; + } + else + { + displayObject.trackedPointers[id].leftDown = true; + } + + this.dispatchEvent(displayObject, isRightButton ? 'rightdown' : 'mousedown', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being released + * @param {boolean} cancelled - true if the pointer is cancelled + * @param {Function} func - Function passed to {@link processInteractive} + */ + InteractionManager.prototype.onPointerComplete = function onPointerComplete (originalEvent, cancelled, func) + { + var events = this.normalizeToPointerData(originalEvent); + + var eventLen = events.length; + + // if the event wasn't targeting our canvas, then consider it to be pointerupoutside + // in all cases (unless it was a pointercancel) + var eventAppend = originalEvent.target !== this.interactionDOMElement ? 'outside' : ''; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + // perform hit testing for events targeting our canvas or cancel events + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, func, cancelled || !eventAppend); + + this.emit(cancelled ? 'pointercancel' : ("pointerup" + eventAppend), interactionEvent); + + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? ("rightup" + eventAppend) : ("mouseup" + eventAppend), interactionEvent); + } + else if (event.pointerType === 'touch') + { + this.emit(cancelled ? 'touchcancel' : ("touchend" + eventAppend), interactionEvent); + this.releaseInteractionDataForPointerId(event.pointerId, interactionData); + } + } + }; + + /** + * Is called when the pointer button is cancelled + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerCancel = function onPointerCancel (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, true, this.processPointerCancel); + }; + + /** + * Processes the result of the pointer cancel check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + */ + InteractionManager.prototype.processPointerCancel = function processPointerCancel (interactionEvent, displayObject) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + if (displayObject.trackedPointers[id] !== undefined) + { + delete displayObject.trackedPointers[id]; + this.dispatchEvent(displayObject, 'pointercancel', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchcancel', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerUp = function onPointerUp (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, false, this.processPointerUp); + }; + + /** + * Processes the result of the pointer up check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerUp = function processPointerUp (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var trackingData = displayObject.trackedPointers[id]; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + // need to track mouse down status in the mouse block so that we can emit + // event in a later block + var isMouseTap = false; + + // Mouse only + if (isMouse) + { + var isRightButton = data.button === 2; + + var flags = InteractionTrackingData.FLAGS; + + var test = isRightButton ? flags.RIGHT_DOWN : flags.LEFT_DOWN; + + var isDown = trackingData !== undefined && (trackingData.flags & test); + + if (hit) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightup' : 'mouseup', interactionEvent); + + if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightclick' : 'click', interactionEvent); + // because we can confirm that the mousedown happened on this object, flag for later emit of pointertap + isMouseTap = true; + } + } + else if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightupoutside' : 'mouseupoutside', interactionEvent); + } + // update the down state of the tracking data + if (trackingData) + { + if (isRightButton) + { + trackingData.rightDown = false; + } + else + { + trackingData.leftDown = false; + } + } + } + + // Pointers and Touches, and Mouse + if (hit) + { + this.dispatchEvent(displayObject, 'pointerup', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchend', interactionEvent); } + + if (trackingData) + { + // emit pointertap if not a mouse, or if the mouse block decided it was a tap + if (!isMouse || isMouseTap) + { + this.dispatchEvent(displayObject, 'pointertap', interactionEvent); + } + if (isTouch) + { + this.dispatchEvent(displayObject, 'tap', interactionEvent); + // touches are no longer over (if they ever were) when we get the touchend + // so we should ensure that we don't keep pretending that they are + trackingData.over = false; + } + } + } + else if (trackingData) + { + this.dispatchEvent(displayObject, 'pointerupoutside', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchendoutside', interactionEvent); } + } + // Only remove the tracking data if there is no over/down state still associated with it + if (trackingData && trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + }; + + /** + * Is called when the pointer moves across the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer moving + */ + InteractionManager.prototype.onPointerMove = function onPointerMove (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + if (events[0].pointerType === 'mouse' || events[0].pointerType === 'pen') + { + this.didMove = true; + + this.cursor = null; + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerMove, true); + + this.emit('pointermove', interactionEvent); + if (event.pointerType === 'touch') { this.emit('touchmove', interactionEvent); } + if (event.pointerType === 'mouse' || event.pointerType === 'pen') { this.emit('mousemove', interactionEvent); } + } + + if (events[0].pointerType === 'mouse') + { + this.setCursorMode(this.cursor); + + // TODO BUG for parents interactive object (border order issue) + } + }; + + /** + * Processes the result of the pointer move check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerMove = function processPointerMove (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + if (isMouse) + { + this.processPointerOverOut(interactionEvent, displayObject, hit); + } + + if (!this.moveWhenInside || hit) + { + this.dispatchEvent(displayObject, 'pointermove', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchmove', interactionEvent); } + if (isMouse) { this.dispatchEvent(displayObject, 'mousemove', interactionEvent); } + } + }; + + /** + * Is called when the pointer is moved out of the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer being moved out + */ + InteractionManager.prototype.onPointerOut = function onPointerOut (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOut, so events will always be length 1 + var event = events[0]; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = false; + this.setCursorMode(null); + } + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerOverOut, false); + + this.emit('pointerout', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseout', interactionEvent); + } + else + { + // we can get touchleave events after touchend, so we want to make sure we don't + // introduce memory leaks + this.releaseInteractionDataForPointerId(interactionData.identifier); + } + }; + + /** + * Processes the result of the pointer over/out check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerOverOut = function processPointerOverOut (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + var trackingData = displayObject.trackedPointers[id]; + + // if we just moused over the display object, then we need to track that state + if (hit && !trackingData) + { + trackingData = displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + + if (trackingData === undefined) { return; } + + if (hit && this.mouseOverRenderer) + { + if (!trackingData.over) + { + trackingData.over = true; + this.delayDispatchEvent(displayObject, 'pointerover', interactionEvent); + if (isMouse) + { + this.delayDispatchEvent(displayObject, 'mouseover', interactionEvent); + } + } + + // only change the cursor if it has not already been changed (by something deeper in the + // display tree) + if (isMouse && this.cursor === null) + { + this.cursor = displayObject.cursor; + } + } + else if (trackingData.over) + { + trackingData.over = false; + this.dispatchEvent(displayObject, 'pointerout', this.eventData); + if (isMouse) + { + this.dispatchEvent(displayObject, 'mouseout', interactionEvent); + } + // if there is no mouse down information for the pointer, then it is safe to delete + if (trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + } + }; + + /** + * Is called when the pointer is moved into the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being moved into the renderer view + */ + InteractionManager.prototype.onPointerOver = function onPointerOver (originalEvent) + { + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOver, so events will always be length 1 + var event = events[0]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = true; + } + + this.emit('pointerover', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseover', interactionEvent); + } + }; + + /** + * Get InteractionData for a given pointerId. Store that data as well + * + * @private + * @param {PointerEvent} event - Normalized pointer event, output from normalizeToPointerData + * @return {PIXI.interaction.InteractionData} - Interaction data for the given pointer identifier + */ + InteractionManager.prototype.getInteractionDataForPointerId = function getInteractionDataForPointerId (event) + { + var pointerId = event.pointerId; + + var interactionData; + + if (pointerId === MOUSE_POINTER_ID || event.pointerType === 'mouse') + { + interactionData = this.mouse; + } + else if (this.activeInteractionData[pointerId]) + { + interactionData = this.activeInteractionData[pointerId]; + } + else + { + interactionData = this.interactionDataPool.pop() || new InteractionData(); + interactionData.identifier = pointerId; + this.activeInteractionData[pointerId] = interactionData; + } + // copy properties from the event, so that we can make sure that touch/pointer specific + // data is available + interactionData.copyEvent(event); + + return interactionData; + }; + + /** + * Return unused InteractionData to the pool, for a given pointerId + * + * @private + * @param {number} pointerId - Identifier from a pointer event + */ + InteractionManager.prototype.releaseInteractionDataForPointerId = function releaseInteractionDataForPointerId (pointerId) + { + var interactionData = this.activeInteractionData[pointerId]; + + if (interactionData) + { + delete this.activeInteractionData[pointerId]; + interactionData.reset(); + this.interactionDataPool.push(interactionData); + } + }; + + /** + * Configure an InteractionEvent to wrap a DOM PointerEvent and InteractionData + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The event to be configured + * @param {PointerEvent} pointerEvent - The DOM event that will be paired with the InteractionEvent + * @param {PIXI.interaction.InteractionData} interactionData - The InteractionData that will be paired + * with the InteractionEvent + * @return {PIXI.interaction.InteractionEvent} the interaction event that was passed in + */ + InteractionManager.prototype.configureInteractionEventForDOMEvent = function configureInteractionEventForDOMEvent (interactionEvent, pointerEvent, interactionData) + { + interactionEvent.data = interactionData; + + this.mapPositionToPoint(interactionData.global, pointerEvent.clientX, pointerEvent.clientY); + + // Not really sure why this is happening, but it's how a previous version handled things + if (pointerEvent.pointerType === 'touch') + { + pointerEvent.globalX = interactionData.global.x; + pointerEvent.globalY = interactionData.global.y; + } + + interactionData.originalEvent = pointerEvent; + interactionEvent.reset(); + + return interactionEvent; + }; + + /** + * Ensures that the original event object contains all data that a regular pointer event would have + * + * @private + * @param {TouchEvent|MouseEvent|PointerEvent} event - The original event data from a touch or mouse event + * @return {PointerEvent[]} An array containing a single normalized pointer event, in the case of a pointer + * or mouse event, or a multiple normalized pointer events if there are multiple changed touches + */ + InteractionManager.prototype.normalizeToPointerData = function normalizeToPointerData (event) + { + var normalizedEvents = []; + + if (this.supportsTouchEvents && event instanceof TouchEvent) + { + for (var i = 0, li = event.changedTouches.length; i < li; i++) + { + var touch = event.changedTouches[i]; + + if (typeof touch.button === 'undefined') { touch.button = event.touches.length ? 1 : 0; } + if (typeof touch.buttons === 'undefined') { touch.buttons = event.touches.length ? 1 : 0; } + if (typeof touch.isPrimary === 'undefined') + { + touch.isPrimary = event.touches.length === 1 && event.type === 'touchstart'; + } + if (typeof touch.width === 'undefined') { touch.width = touch.radiusX || 1; } + if (typeof touch.height === 'undefined') { touch.height = touch.radiusY || 1; } + if (typeof touch.tiltX === 'undefined') { touch.tiltX = 0; } + if (typeof touch.tiltY === 'undefined') { touch.tiltY = 0; } + if (typeof touch.pointerType === 'undefined') { touch.pointerType = 'touch'; } + if (typeof touch.pointerId === 'undefined') { touch.pointerId = touch.identifier || 0; } + if (typeof touch.pressure === 'undefined') { touch.pressure = touch.force || 0.5; } + if (typeof touch.twist === 'undefined') { touch.twist = 0; } + if (typeof touch.tangentialPressure === 'undefined') { touch.tangentialPressure = 0; } + // TODO: Remove these, as layerX/Y is not a standard, is deprecated, has uneven + // support, and the fill ins are not quite the same + // offsetX/Y might be okay, but is not the same as clientX/Y when the canvas's top + // left is not 0,0 on the page + if (typeof touch.layerX === 'undefined') { touch.layerX = touch.offsetX = touch.clientX; } + if (typeof touch.layerY === 'undefined') { touch.layerY = touch.offsetY = touch.clientY; } + + // mark the touch as normalized, just so that we know we did it + touch.isNormalized = true; + + normalizedEvents.push(touch); + } + } + // apparently PointerEvent subclasses MouseEvent, so yay + else if (event instanceof MouseEvent && (!this.supportsPointerEvents || !(event instanceof window.PointerEvent))) + { + if (typeof event.isPrimary === 'undefined') { event.isPrimary = true; } + if (typeof event.width === 'undefined') { event.width = 1; } + if (typeof event.height === 'undefined') { event.height = 1; } + if (typeof event.tiltX === 'undefined') { event.tiltX = 0; } + if (typeof event.tiltY === 'undefined') { event.tiltY = 0; } + if (typeof event.pointerType === 'undefined') { event.pointerType = 'mouse'; } + if (typeof event.pointerId === 'undefined') { event.pointerId = MOUSE_POINTER_ID; } + if (typeof event.pressure === 'undefined') { event.pressure = 0.5; } + if (typeof event.twist === 'undefined') { event.twist = 0; } + if (typeof event.tangentialPressure === 'undefined') { event.tangentialPressure = 0; } + + // mark the mouse event as normalized, just so that we know we did it + event.isNormalized = true; + + normalizedEvents.push(event); + } + else + { + normalizedEvents.push(event); + } + + return normalizedEvents; + }; + + /** + * Destroys the interaction manager + * + */ + InteractionManager.prototype.destroy = function destroy () + { + this.removeEvents(); + + this.removeAllListeners(); + + this.renderer = null; + + this.mouse = null; + + this.eventData = null; + + this.interactionDOMElement = null; + + this.onPointerDown = null; + this.processPointerDown = null; + + this.onPointerUp = null; + this.processPointerUp = null; + + this.onPointerCancel = null; + this.processPointerCancel = null; + + this.onPointerMove = null; + this.processPointerMove = null; + + this.onPointerOut = null; + this.processPointerOverOut = null; + + this.onPointerOver = null; + + this._tempPoint = null; + }; + + return InteractionManager; +}(eventemitter3)); + +/*! + * @pixi/graphics - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/graphics is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Graphics curves resolution settings. If `adaptive` flag is set to `true`, + * the resolution is calculated based on the curve's length to ensure better visual quality. + * Adaptive draw works with `bezierCurveTo` and `quadraticCurveTo`. + * + * @static + * @constant + * @memberof PIXI + * @name GRAPHICS_CURVES + * @type {object} + * @property {boolean} adaptive=false - flag indicating if the resolution should be adaptive + * @property {number} maxLength=10 - maximal length of a single segment of the curve (if adaptive = false, ignored) + * @property {number} minSegments=8 - minimal number of segments in the curve (if adaptive = false, ignored) + * @property {number} maxSegments=2048 - maximal number of segments in the curve (if adaptive = false, ignored) + */ +var GRAPHICS_CURVES = { + adaptive: true, + maxLength: 10, + minSegments: 8, + maxSegments: 2048, + _segmentsCount: function _segmentsCount(length, defaultSegments) + { + if ( defaultSegments === void 0 ) defaultSegments = 20; + + if (!this.adaptive) + { + return defaultSegments; + } + + var result = Math.ceil(length / this.maxLength); + + if (result < this.minSegments) + { + result = this.minSegments; + } + else if (result > this.maxSegments) + { + result = this.maxSegments; + } + + return result; + }, +}; + +/** + * Fill style object for Graphics. + * + * @class + * @memberof PIXI + */ +var FillStyle = function FillStyle() +{ + this.reset(); +}; + +/** + * Clones the object + * + * @return {PIXI.FillStyle} + */ +FillStyle.prototype.clone = function clone () +{ + var obj = new FillStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + + return obj; +}; + +/** + * Reset + */ +FillStyle.prototype.reset = function reset () +{ + /** + * The hex color value used when coloring the Graphics object. + * + * @member {number} + * @default 1 + */ + this.color = 0xFFFFFF; + + /** + * The alpha value used when filling the Graphics object. + * + * @member {number} + * @default 1 + */ + this.alpha = 1; + + /** + * The texture to be used for the fill. + * + * @member {string} + * @default 0 + */ + this.texture = Texture.WHITE; + + /** + * The transform aplpied to the texture. + * + * @member {string} + * @default 0 + */ + this.matrix = null; + + /** + * If the current fill is visible. + * + * @member {boolean} + * @default false + */ + this.visible = false; +}; + +/** + * Destroy and don't use after this + */ +FillStyle.prototype.destroy = function destroy () +{ + this.texture = null; + this.matrix = null; +}; + +/** + * A class to contain data useful for Graphics objects + * + * @class + * @memberof PIXI + */ +var GraphicsData = function GraphicsData(shape, fillStyle, lineStyle, matrix) +{ + if ( fillStyle === void 0 ) fillStyle = null; + if ( lineStyle === void 0 ) lineStyle = null; + if ( matrix === void 0 ) matrix = null; + + /** + * The shape object to draw. + * @member {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} + */ + this.shape = shape; + + /** + * The style of the line. + * @member {PIXI.LineStyle} + */ + this.lineStyle = lineStyle; + + /** + * The style of the fill. + * @member {PIXI.FillStyle} + */ + this.fillStyle = fillStyle; + + /** + * The transform matrix. + * @member {PIXI.Matrix} + */ + this.matrix = matrix; + + /** + * The type of the shape, see the Const.Shapes file for all the existing types, + * @member {number} + */ + this.type = shape.type; + + /** + * The collection of points. + * @member {number[]} + */ + this.points = []; + + /** + * The collection of holes. + * @member {PIXI.GraphicsData[]} + */ + this.holes = []; +}; + +/** + * Creates a new GraphicsData object with the same values as this one. + * + * @return {PIXI.GraphicsData} Cloned GraphicsData object + */ +GraphicsData.prototype.clone = function clone () +{ + return new GraphicsData( + this.shape, + this.fillStyle, + this.lineStyle, + this.matrix + ); +}; + +/** + * Destroys the Graphics data. + */ +GraphicsData.prototype.destroy = function destroy () +{ + this.shape = null; + this.holes.length = 0; + this.holes = null; + this.points.length = 0; + this.points = null; + this.lineStyle = null; + this.fillStyle = null; +}; + +/** + * Builds a circle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object to draw + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildCircle = { + + build: function build(graphicsData) + { + // need to convert points to a nice regular data + var circleData = graphicsData.shape; + var points = graphicsData.points; + var x = circleData.x; + var y = circleData.y; + var width; + var height; + + points.length = 0; + + // TODO - bit hacky?? + if (graphicsData.type === SHAPES.CIRC) + { + width = circleData.radius; + height = circleData.radius; + } + else + { + width = circleData.width; + height = circleData.height; + } + + if (width === 0 || height === 0) + { + return; + } + + var totalSegs = Math.floor(30 * Math.sqrt(circleData.radius)) + || Math.floor(15 * Math.sqrt(circleData.width + circleData.height)); + + totalSegs /= 2.3; + + var seg = (Math.PI * 2) / totalSegs; + + for (var i = 0; i < totalSegs; i++) + { + points.push( + x + (Math.sin(-seg * i) * width), + y + (Math.cos(-seg * i) * height) + ); + } + + points.push( + points[0], + points[1] + ); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vertPos = verts.length / 2; + var center = vertPos; + + verts.push(graphicsData.shape.x, graphicsData.shape.y); + + for (var i = 0; i < points.length; i += 2) + { + verts.push(points[i], points[i + 1]); + + // add some uvs + indices.push(vertPos++, center, vertPos); + } + }, +}; + +/** + * Builds a line to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine (graphicsData, graphicsGeometry) +{ + if (graphicsData.lineStyle.native) + { + buildNativeLine(graphicsData, graphicsGeometry); + } + else + { + buildLine$1(graphicsData, graphicsGeometry); + } +} + +/** + * Builds a line to draw using the polygon method. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine$1(graphicsData, graphicsGeometry) +{ + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points.slice(); + var eps = graphicsGeometry.closePointEps; + + if (points.length === 0) + { + return; + } + // if the line width is an odd number add 0.5 to align to a whole pixel + // commenting this out fixes #711 and #1620 + // if (graphicsData.lineWidth%2) + // { + // for (i = 0; i < points.length; i++) + // { + // points[i] += 0.5; + // } + // } + + var style = graphicsData.lineStyle; + + // get first and last point.. figure out the middle! + var firstPoint = new Point(points[0], points[1]); + var lastPoint = new Point(points[points.length - 2], points[points.length - 1]); + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + var closedPath = Math.abs(firstPoint.x - lastPoint.x) < eps + && Math.abs(firstPoint.y - lastPoint.y) < eps; + + // if the first point is the last point - gonna have issues :) + if (closedShape) + { + // need to clone as we are going to slightly modify the shape.. + points = points.slice(); + + if (closedPath) + { + points.pop(); + points.pop(); + lastPoint.set(points[points.length - 2], points[points.length - 1]); + } + + var midPointX = lastPoint.x + ((firstPoint.x - lastPoint.x) * 0.5); + var midPointY = lastPoint.y + ((firstPoint.y - lastPoint.y) * 0.5); + + points.unshift(midPointX, midPointY); + points.push(midPointX, midPointY); + } + + var verts = graphicsGeometry.points; + var length = points.length / 2; + var indexCount = points.length; + var indexStart = verts.length / 2; + + // DRAW the Line + var width = style.width / 2; + + // sort color + var p1x = points[0]; + var p1y = points[1]; + var p2x = points[2]; + var p2y = points[3]; + var p3x = 0; + var p3y = 0; + + var perpx = -(p1y - p2y); + var perpy = p1x - p2x; + var perp2x = 0; + var perp2y = 0; + var perp3x = 0; + var perp3y = 0; + + var dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + var ratio = style.alignment;// 0.5; + var r1 = (1 - ratio) * 2; + var r2 = ratio * 2; + + // start + verts.push( + p1x - (perpx * r1), + p1y - (perpy * r1)); + + verts.push( + p1x + (perpx * r2), + p1y + (perpy * r2)); + + for (var i = 1; i < length - 1; ++i) + { + p1x = points[(i - 1) * 2]; + p1y = points[((i - 1) * 2) + 1]; + + p2x = points[i * 2]; + p2y = points[(i * 2) + 1]; + + p3x = points[(i + 1) * 2]; + p3y = points[((i + 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + perp2x = -(p2y - p3y); + perp2y = p2x - p3x; + + dist = Math.sqrt((perp2x * perp2x) + (perp2y * perp2y)); + perp2x /= dist; + perp2y /= dist; + perp2x *= width; + perp2y *= width; + + var a1 = (-perpy + p1y) - (-perpy + p2y); + var b1 = (-perpx + p2x) - (-perpx + p1x); + var c1 = ((-perpx + p1x) * (-perpy + p2y)) - ((-perpx + p2x) * (-perpy + p1y)); + var a2 = (-perp2y + p3y) - (-perp2y + p2y); + var b2 = (-perp2x + p2x) - (-perp2x + p3x); + var c2 = ((-perp2x + p3x) * (-perp2y + p2y)) - ((-perp2x + p2x) * (-perp2y + p3y)); + + var denom = (a1 * b2) - (a2 * b1); + + if (Math.abs(denom) < 0.1) + { + denom += 10.1; + verts.push( + p2x - (perpx * r1), + p2y - (perpy * r1)); + + verts.push( + p2x + (perpx * r2), + p2y + (perpy * r2)); + + continue; + } + + var px = ((b1 * c2) - (b2 * c1)) / denom; + var py = ((a2 * c1) - (a1 * c2)) / denom; + var pdist = ((px - p2x) * (px - p2x)) + ((py - p2y) * (py - p2y)); + + if (pdist > (196 * width * width)) + { + perp3x = perpx - perp2x; + perp3y = perpy - perp2y; + + dist = Math.sqrt((perp3x * perp3x) + (perp3y * perp3y)); + perp3x /= dist; + perp3y /= dist; + perp3x *= width; + perp3y *= width; + + verts.push(p2x - (perp3x * r1), p2y - (perp3y * r1)); + + verts.push(p2x + (perp3x * r2), p2y + (perp3y * r2)); + + verts.push(p2x - (perp3x * r2 * r1), p2y - (perp3y * r1)); + + indexCount++; + } + else + { + verts.push(p2x + ((px - p2x) * r1), p2y + ((py - p2y) * r1)); + + verts.push(p2x - ((px - p2x) * r2), p2y - ((py - p2y) * r2)); + } + } + + p1x = points[(length - 2) * 2]; + p1y = points[((length - 2) * 2) + 1]; + + p2x = points[(length - 1) * 2]; + p2y = points[((length - 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + verts.push(p2x - (perpx * r1), p2y - (perpy * r1)); + + verts.push(p2x + (perpx * r2), p2y + (perpy * r2)); + + var indices = graphicsGeometry.indices; + + // indices.push(indexStart); + + for (var i$1 = 0; i$1 < indexCount - 2; ++i$1) + { + indices.push(indexStart, indexStart + 1, indexStart + 2); + + indexStart++; + } +} + +/** + * Builds a line to draw using the gl.drawArrays(gl.LINES) method + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildNativeLine(graphicsData, graphicsGeometry) +{ + var i = 0; + + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points; + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + + if (points.length === 0) { return; } + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + var length = points.length / 2; + + var startIndex = verts.length / 2; + var currentIndex = startIndex; + + verts.push(points[0], points[1]); + + for (i = 1; i < length; i++) + { + verts.push(points[i * 2], points[(i * 2) + 1]); + indices.push(currentIndex, currentIndex + 1); + + currentIndex++; + } + + if (closedShape) + { + indices.push(currentIndex, startIndex); + } +} + +/** + * Builds a polygon to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildPoly = { + + build: function build(graphicsData) + { + graphicsData.points = graphicsData.shape.points.slice(); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var holes = graphicsData.holes; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + if (points.length >= 6) + { + var holeArray = []; + // Process holes.. + + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + holeArray.push(points.length / 2); + points = points.concat(hole.points); + } + + // sort color + var triangles = earcut_1(points, holeArray, 2); + + if (!triangles) + { + return; + } + + var vertPos = verts.length / 2; + + for (var i$1 = 0; i$1 < triangles.length; i$1 += 3) + { + indices.push(triangles[i$1] + vertPos); + indices.push(triangles[i$1 + 1] + vertPos); + indices.push(triangles[i$1 + 2] + vertPos); + } + + for (var i$2 = 0; i$2 < points.length; i$2++) + { + verts.push(points[i$2]); + } + } + }, +}; + +/** + * Builds a rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRectangle = { + + build: function build(graphicsData) + { + // --- // + // need to convert points to a nice regular data + // + var rectData = graphicsData.shape; + var x = rectData.x; + var y = rectData.y; + var width = rectData.width; + var height = rectData.height; + + var points = graphicsData.points; + + points.length = 0; + + points.push(x, y, + x + width, y, + x + width, y + height, + x, y + height); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + + var vertPos = verts.length / 2; + + verts.push(points[0], points[1], + points[2], points[3], + points[6], points[7], + points[4], points[5]); + + graphicsGeometry.indices.push(vertPos, vertPos + 1, vertPos + 2, + vertPos + 1, vertPos + 2, vertPos + 3); + }, +}; + +/** + * Builds a rounded rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRoundedRectangle = { + + build: function build(graphicsData) + { + var rrectData = graphicsData.shape; + var points = graphicsData.points; + var x = rrectData.x; + var y = rrectData.y; + var width = rrectData.width; + var height = rrectData.height; + + var radius = rrectData.radius; + + points.length = 0; + + quadraticBezierCurve(x, y + radius, + x, y, + x + radius, y, + points); + quadraticBezierCurve(x + width - radius, + y, x + width, y, + x + width, y + radius, + points); + quadraticBezierCurve(x + width, y + height - radius, + x + width, y + height, + x + width - radius, y + height, + points); + quadraticBezierCurve(x + radius, y + height, + x, y + height, + x, y + height - radius, + points); + + // this tiny number deals with the issue that occurs when points overlap and earcut fails to triangulate the item. + // TODO - fix this properly, this is not very elegant.. but it works for now. + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vecPos = verts.length / 2; + + var triangles = earcut_1(points, null, 2); + + for (var i = 0, j = triangles.length; i < j; i += 3) + { + indices.push(triangles[i] + vecPos); + // indices.push(triangles[i] + vecPos); + indices.push(triangles[i + 1] + vecPos); + // indices.push(triangles[i + 2] + vecPos); + indices.push(triangles[i + 2] + vecPos); + } + + for (var i$1 = 0, j$1 = points.length; i$1 < j$1; i$1++) + { + verts.push(points[i$1], points[++i$1]); + } + }, +}; + +/** + * Calculate a single point for a quadratic bezier curve. + * Utility function used by quadraticBezierCurve. + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} n1 - first number + * @param {number} n2 - second number + * @param {number} perc - percentage + * @return {number} the result + * + */ +function getPt(n1, n2, perc) +{ + var diff = n2 - n1; + + return n1 + (diff * perc); +} + +/** + * Calculate the points for a quadratic bezier curve. (helper function..) + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} fromX - Origin point x + * @param {number} fromY - Origin point x + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} [out=[]] - The output array to add points into. If not passed, a new array is created. + * @return {number[]} an array of points + */ +function quadraticBezierCurve(fromX, fromY, cpX, cpY, toX, toY, out) +{ + if ( out === void 0 ) out = []; + + var n = 20; + var points = out; + + var xa = 0; + var ya = 0; + var xb = 0; + var yb = 0; + var x = 0; + var y = 0; + + for (var i = 0, j = 0; i <= n; ++i) + { + j = i / n; + + // The Green Line + xa = getPt(fromX, cpX, j); + ya = getPt(fromY, cpY, j); + xb = getPt(cpX, toX, j); + yb = getPt(cpY, toY, j); + + // The Black Dot + x = getPt(xa, xb, j); + y = getPt(ya, yb, j); + + points.push(x, y); + } + + return points; +} + +var BATCH_POOL = []; +var DRAW_CALL_POOL = []; +var tmpPoint = new Point(); + +/** + * Map of fill commands for each shape type. + * + * @member {Object} + * @private + */ +var fillCommands = {}; + +fillCommands[SHAPES.POLY] = buildPoly; +fillCommands[SHAPES.CIRC] = buildCircle; +fillCommands[SHAPES.ELIP] = buildCircle; +fillCommands[SHAPES.RECT] = buildRectangle; +fillCommands[SHAPES.RREC] = buildRoundedRectangle; + +/** + * A little internal structure to hold interim batch objects. + * + * @private + */ +var BatchPart = function BatchPart() +{ + this.style = null; + this.size = 0; + this.start = 0; + this.attribStart = 0; + this.attribSize = 0; +}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * GraphicsGeometry is designed to not be continually updating the geometry since it's expensive + * to re-tesselate using **earcut**. Consider using {@link PIXI.Mesh} for this use-case, it's much faster. + * + * @class + * @extends PIXI.BatchGeometry + * @memberof PIXI + */ +var GraphicsGeometry = /*@__PURE__*/(function (BatchGeometry) { + function GraphicsGeometry() + { + BatchGeometry.call(this); + + /** + * An array of points to draw, 2 numbers per point + * + * @member {number[]} + * @protected + */ + this.points = []; + + /** + * The collection of colors + * + * @member {number[]} + * @protected + */ + this.colors = []; + + /** + * The UVs collection + * + * @member {number[]} + * @protected + */ + this.uvs = []; + + /** + * The indices of the vertices + * + * @member {number[]} + * @protected + */ + this.indices = []; + + /** + * Reference to the texture IDs. + * + * @member {number[]} + * @protected + */ + this.textureIds = []; + + /** + * The collection of drawn shapes. + * + * @member {PIXI.GraphicsData[]} + * @protected + */ + this.graphicsData = []; + + /** + * Used to detect if the graphics object has changed. + * + * @member {number} + * @protected + */ + this.dirty = 0; + + /** + * Batches need to regenerated if the geometry is updated. + * + * @member {number} + * @protected + */ + this.batchDirty = -1; + + /** + * Used to check if the cache is dirty. + * + * @member {number} + * @protected + */ + this.cacheDirty = -1; + + /** + * Used to detect if we cleared the graphicsData. + * + * @member {number} + * @default 0 + * @protected + */ + this.clearDirty = 0; + + /** + * List of current draw calls drived from the batches. + * + * @member {object[]} + * @protected + */ + this.drawCalls = []; + + /** + * Intermediate abstract format sent to batch system. + * Can be converted to drawCalls or to batchable objects. + * + * @member {object[]} + * @protected + */ + this.batches = []; + + /** + * Index of the last batched shape in the stack of calls. + * + * @member {number} + * @protected + */ + this.shapeIndex = 0; + + /** + * Cached bounds. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + + /** + * The bounds dirty flag. + * + * @member {number} + * @protected + */ + this.boundsDirty = -1; + + /** + * Padding to add to the bounds. + * + * @member {number} + * @default 0 + */ + this.boundsPadding = 0; + + this.batchable = false; + + this.indicesUint16 = null; + + this.uvsFloat32 = null; + + /** + * Minimal distance between points that are considered different. + * Affects line tesselation. + * + * @member {number} + */ + this.closePointEps = 1e-4; + } + + if ( BatchGeometry ) GraphicsGeometry.__proto__ = BatchGeometry; + GraphicsGeometry.prototype = Object.create( BatchGeometry && BatchGeometry.prototype ); + GraphicsGeometry.prototype.constructor = GraphicsGeometry; + + var prototypeAccessors = { bounds: { configurable: true } }; + + /** + * Get the current bounds of the graphic geometry. + * + * @member {PIXI.Bounds} + * @readonly + */ + prototypeAccessors.bounds.get = function () + { + if (this.boundsDirty !== this.dirty) + { + this.boundsDirty = this.dirty; + this.calculateBounds(); + } + + return this._bounds; + }; + + /** + * Call if you changed graphicsData manually. + * Empties all batch buffers. + */ + GraphicsGeometry.prototype.invalidate = function invalidate () + { + this.boundsDirty = -1; + this.dirty++; + this.batchDirty++; + this.shapeIndex = 0; + + this.points.length = 0; + this.colors.length = 0; + this.uvs.length = 0; + this.indices.length = 0; + this.textureIds.length = 0; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var batch = this.batches[i$1]; + + batch.start = 0; + batch.attribStart = 0; + batch.style = null; + BATCH_POOL.push(batch); + } + + this.batches.length = 0; + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.GraphicsGeometry} This GraphicsGeometry object. Good for chaining method calls + */ + GraphicsGeometry.prototype.clear = function clear () + { + if (this.graphicsData.length > 0) + { + this.invalidate(); + this.clearDirty++; + this.graphicsData.length = 0; + } + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.FillStyle} fillStyle - Defines style of the fill. + * @param {PIXI.LineStyle} lineStyle - Defines style of the lines. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawShape = function drawShape (shape, fillStyle, lineStyle, matrix) + { + var data = new GraphicsData(shape, fillStyle, lineStyle, matrix); + + this.graphicsData.push(data); + this.dirty++; + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawHole = function drawHole (shape, matrix) + { + if (!this.graphicsData.length) + { + return null; + } + + var data = new GraphicsData(shape, null, null, matrix); + + var lastShape = this.graphicsData[this.graphicsData.length - 1]; + + data.lineStyle = lastShape.lineStyle; + + lastShape.holes.push(data); + + this.dirty++; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + GraphicsGeometry.prototype.destroy = function destroy (options) + { + BatchGeometry.prototype.destroy.call(this, options); + + // destroy each of the GraphicsData objects + for (var i = 0; i < this.graphicsData.length; ++i) + { + this.graphicsData[i].destroy(); + } + + this.points.length = 0; + this.points = null; + this.colors.length = 0; + this.colors = null; + this.uvs.length = 0; + this.uvs = null; + this.indices.length = 0; + this.indices = null; + this.indexBuffer.destroy(); + this.indexBuffer = null; + this.graphicsData.length = 0; + this.graphicsData = null; + this.drawCalls.length = 0; + this.drawCalls = null; + this.batches.length = 0; + this.batches = null; + this._bounds = null; + }; + + /** + * Check to see if a point is contained within this geometry. + * + * @param {PIXI.Point} point - Point to check if it's contained. + * @return {Boolean} `true` if the point is contained within geometry. + */ + GraphicsGeometry.prototype.containsPoint = function containsPoint (point) + { + var graphicsData = this.graphicsData; + + for (var i = 0; i < graphicsData.length; ++i) + { + var data = graphicsData[i]; + + if (!data.fillStyle.visible) + { + continue; + } + + // only deal with fills.. + if (data.shape) + { + if (data.matrix) + { + data.matrix.applyInverse(point, tmpPoint); + } + else + { + tmpPoint.copyFrom(point); + } + + if (data.shape.contains(tmpPoint.x, tmpPoint.y)) + { + if (data.holes) + { + for (var i$1 = 0; i$1 < data.holes.length; i$1++) + { + var hole = data.holes[i$1]; + + if (hole.shape.contains(tmpPoint.x, tmpPoint.y)) + { + return false; + } + } + } + + return true; + } + } + } + + return false; + }; + + /** + * Generates intermediate batch data. Either gets converted to drawCalls + * or used to convert to batch objects directly by the Graphics object. + */ + GraphicsGeometry.prototype.updateBatches = function updateBatches () + { + if (this.dirty === this.cacheDirty) { return; } + if (this.graphicsData.length === 0) + { + this.batchable = true; + + return; + } + + if (this.dirty !== this.cacheDirty) + { + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + if (data.fillStyle && !data.fillStyle.texture.baseTexture.valid) { return; } + if (data.lineStyle && !data.lineStyle.texture.baseTexture.valid) { return; } + } + } + + this.cacheDirty = this.dirty; + + var uvs = this.uvs; + + var batchPart = null; + var currentTexture = null; + var currentColor = 0; + var currentNative = false; + + if (this.batches.length > 0) + { + batchPart = this.batches[this.batches.length - 1]; + + var style = batchPart.style; + + currentTexture = style.texture.baseTexture; + currentColor = style.color + style.alpha; + currentNative = !!style.native; + } + + for (var i$1 = this.shapeIndex; i$1 < this.graphicsData.length; i$1++) + { + this.shapeIndex++; + + var data$1 = this.graphicsData[i$1]; + var command = fillCommands[data$1.type]; + + var fillStyle = data$1.fillStyle; + var lineStyle = data$1.lineStyle; + + // build out the shapes points.. + command.build(data$1); + + if (data$1.matrix) + { + this.transformPoints(data$1.points, data$1.matrix); + } + + for (var j = 0; j < 2; j++) + { + var style$1 = (j === 0) ? fillStyle : lineStyle; + + if (!style$1.visible) { continue; } + + var nextTexture = style$1.texture.baseTexture; + + var index$1 = this.indices.length; + var attribIndex = this.points.length / 2; + + // close batch if style is different + if (batchPart + && (currentTexture !== nextTexture + || currentColor !== (style$1.color + style$1.alpha) + || currentNative !== !!style$1.native)) + { + batchPart.size = index$1 - batchPart.start; + batchPart.attribSize = attribIndex - batchPart.attribStart; + + if (batchPart.size > 0) + { + batchPart = null; + } + } + // spawn new batch if its first batch or previous was closed + if (!batchPart) + { + batchPart = BATCH_POOL.pop() || new BatchPart(); + this.batches.push(batchPart); + nextTexture.wrapMode = WRAP_MODES.REPEAT; + currentTexture = nextTexture; + currentColor = style$1.color + style$1.alpha; + currentNative = style$1.native; + + batchPart.style = style$1; + batchPart.start = index$1; + batchPart.attribStart = attribIndex; + } + + var start = this.points.length / 2; + + if (j === 0) + { + if (data$1.holes.length) + { + this.processHoles(data$1.holes); + + buildPoly.triangulate(data$1, this); + } + else + { + command.triangulate(data$1, this); + } + } + else + { + buildLine(data$1, this); + + for (var i$2 = 0; i$2 < data$1.holes.length; i$2++) + { + buildLine(data$1.holes[i$2], this); + } + } + + var size = (this.points.length / 2) - start; + + this.addUvs(this.points, uvs, style$1.texture, start, size, style$1.matrix); + } + } + + var index = this.indices.length; + var attrib = this.points.length / 2; + + if (!batchPart) + { + // there are no visible styles in GraphicsData + // its possible that someone wants Graphics just for the bounds + this.batchable = true; + + return; + } + + batchPart.size = index - batchPart.start; + batchPart.attribSize = attrib - batchPart.attribStart; + this.indicesUint16 = new Uint16Array(this.indices); + + // TODO make this a const.. + this.batchable = this.isBatchable(); + + if (this.batchable) + { + this.batchDirty++; + + this.uvsFloat32 = new Float32Array(this.uvs); + + // offset the indices so that it works with the batcher... + for (var i$3 = 0; i$3 < this.batches.length; i$3++) + { + var batch = this.batches[i$3]; + + for (var j$1 = 0; j$1 < batch.size; j$1++) + { + var index$2 = batch.start + j$1; + + this.indicesUint16[index$2] = this.indicesUint16[index$2] - batch.attribStart; + } + } + } + else + { + this.buildDrawCalls(); + } + }; + + /** + * Checks to see if this graphics geometry can be batched. + * Currently it needs to be small enough and not contain any native lines. + * @protected + */ + GraphicsGeometry.prototype.isBatchable = function isBatchable () + { + var batches = this.batches; + + for (var i = 0; i < batches.length; i++) + { + if (batches[i].style.native) + { + return false; + } + } + + return (this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2); + }; + + /** + * Converts intermediate batches data to drawCalls. + * @protected + */ + GraphicsGeometry.prototype.buildDrawCalls = function buildDrawCalls () + { + var TICK = ++BaseTexture._globalBatch; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + var uvs = this.uvs; + var colors = this.colors; + var textureIds = this.textureIds; + + var currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.size = 0; + currentGroup.type = DRAW_MODES.TRIANGLES; + + var textureCount = 0; + var currentTexture = null; + var textureId = 0; + var native = false; + var drawMode = DRAW_MODES.TRIANGLES; + + var index = 0; + + this.drawCalls.push(currentGroup); + + // TODO - this can be simplified + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var data = this.batches[i$1]; + + // TODO add some full on MAX_TEXTURE CODE.. + var MAX_TEXTURES = 8; + + var style = data.style; + + var nextTexture = style.texture.baseTexture; + + if (native !== !!style.native) + { + native = style.native; + drawMode = native ? DRAW_MODES.LINES : DRAW_MODES.TRIANGLES; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + if (currentGroup.size > 0) + { + currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + this.drawCalls.push(currentGroup); + } + + currentGroup.start = index; + currentGroup.size = 0; + currentGroup.textureCount = 0; + currentGroup.type = drawMode; + } + + // TODO add this to the render part.. + nextTexture.touched = 1;// touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + nextTexture.wrapMode = 10497; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + currentGroup.size += data.size; + index += data.size; + + textureId = nextTexture._id; + + this.addColors(colors, style.color, style.alpha, data.attribSize); + this.addTextureIds(textureIds, textureId, data.attribSize); + } + + BaseTexture._globalBatch = TICK; + + // upload.. + // merge for now! + var verts = this.points; + + // verts are 2 positions.. so we * by 3 as there are 6 properties.. then 4 cos its bytes + var glPoints = new ArrayBuffer(verts.length * 3 * 4); + var f32 = new Float32Array(glPoints); + var u32 = new Uint32Array(glPoints); + + var p = 0; + + for (var i$2 = 0; i$2 < verts.length / 2; i$2++) + { + f32[p++] = verts[i$2 * 2]; + f32[p++] = verts[(i$2 * 2) + 1]; + + f32[p++] = uvs[i$2 * 2]; + f32[p++] = uvs[(i$2 * 2) + 1]; + + u32[p++] = colors[i$2]; + + f32[p++] = textureIds[i$2]; + } + + this._buffer.update(glPoints); + this._indexBuffer.update(this.indicesUint16); + }; + + /** + * Process the holes data. + * + * @param {PIXI.GraphicsData[]} holes - Holes to render + * @protected + */ + GraphicsGeometry.prototype.processHoles = function processHoles (holes) + { + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + var command = fillCommands[hole.type]; + + command.build(hole); + + if (hole.matrix) + { + this.transformPoints(hole.points, hole.matrix); + } + } + }; + + /** + * Update the local bounds of the object. Expensive to use performance-wise. + * @protected + */ + GraphicsGeometry.prototype.calculateBounds = function calculateBounds () + { + var minX = Infinity; + var maxX = -Infinity; + + var minY = Infinity; + var maxY = -Infinity; + + if (this.graphicsData.length) + { + var shape = null; + var x = 0; + var y = 0; + var w = 0; + var h = 0; + + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + var type = data.type; + var lineWidth = data.lineStyle ? data.lineStyle.width : 0; + + shape = data.shape; + + if (type === SHAPES.RECT || type === SHAPES.RREC) + { + x = shape.x - (lineWidth / 2); + y = shape.y - (lineWidth / 2); + w = shape.width + lineWidth; + h = shape.height + lineWidth; + + minX = x < minX ? x : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y < minY ? y : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.CIRC) + { + x = shape.x; + y = shape.y; + w = shape.radius + (lineWidth / 2); + h = shape.radius + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.ELIP) + { + x = shape.x; + y = shape.y; + w = shape.width + (lineWidth / 2); + h = shape.height + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else + { + // POLY + var points = shape.points; + var x2 = 0; + var y2 = 0; + var dx = 0; + var dy = 0; + var rw = 0; + var rh = 0; + var cx = 0; + var cy = 0; + + for (var j = 0; j + 2 < points.length; j += 2) + { + x = points[j]; + y = points[j + 1]; + x2 = points[j + 2]; + y2 = points[j + 3]; + dx = Math.abs(x2 - x); + dy = Math.abs(y2 - y); + h = lineWidth; + w = Math.sqrt((dx * dx) + (dy * dy)); + + if (w < 1e-9) + { + continue; + } + + rw = ((h / w * dy) + dx) / 2; + rh = ((h / w * dx) + dy) / 2; + cx = (x2 + x) / 2; + cy = (y2 + y) / 2; + + minX = cx - rw < minX ? cx - rw : minX; + maxX = cx + rw > maxX ? cx + rw : maxX; + + minY = cy - rh < minY ? cy - rh : minY; + maxY = cy + rh > maxY ? cy + rh : maxY; + } + } + } + } + else + { + minX = 0; + maxX = 0; + minY = 0; + maxY = 0; + } + + var padding = this.boundsPadding; + + this._bounds.minX = minX - padding; + this._bounds.maxX = maxX + padding; + + this._bounds.minY = minY - padding; + this._bounds.maxY = maxY + padding; + }; + + /** + * Transform points using matrix. + * + * @protected + * @param {number[]} points - Points to transform + * @param {PIXI.Matrix} matrix - Transform matrix + */ + GraphicsGeometry.prototype.transformPoints = function transformPoints (points, matrix) + { + for (var i = 0; i < points.length / 2; i++) + { + var x = points[(i * 2)]; + var y = points[(i * 2) + 1]; + + points[(i * 2)] = (matrix.a * x) + (matrix.c * y) + matrix.tx; + points[(i * 2) + 1] = (matrix.b * x) + (matrix.d * y) + matrix.ty; + } + }; + + /** + * Add colors. + * + * @protected + * @param {number[]} colors - List of colors to add to + * @param {number} color - Color to add + * @param {number} alpha - Alpha to use + * @param {number} size - Number of colors to add + */ + GraphicsGeometry.prototype.addColors = function addColors (colors, color, alpha, size) + { + // TODO use the premultiply bits Ivan added + var rgb = (color >> 16) + (color & 0xff00) + ((color & 0xff) << 16); + + var rgba = premultiplyTint(rgb, alpha); + + while (size-- > 0) + { + colors.push(rgba); + } + }; + + /** + * Add texture id that the shader/fragment wants to use. + * + * @protected + * @param {number[]} textureIds + * @param {number} id + * @param {number} size + */ + GraphicsGeometry.prototype.addTextureIds = function addTextureIds (textureIds, id, size) + { + while (size-- > 0) + { + textureIds.push(id); + } + }; + + /** + * Generates the UVs for a shape. + * + * @protected + * @param {number[]} verts - Vertices + * @param {number[]} uvs - UVs + * @param {PIXI.Texture} texture - Reference to Texture + * @param {number} start - Index buffer start index. + * @param {number} size - The size/length for index buffer. + * @param {PIXI.Matrix} [matrix] - Optional transform for all points. + */ + GraphicsGeometry.prototype.addUvs = function addUvs (verts, uvs, texture, start, size, matrix) + { + var index = 0; + var uvsStart = uvs.length; + var frame = texture.frame; + + while (index < size) + { + var x = verts[(start + index) * 2]; + var y = verts[((start + index) * 2) + 1]; + + if (matrix) + { + var nx = (matrix.a * x) + (matrix.c * y) + matrix.tx; + + y = (matrix.b * x) + (matrix.d * y) + matrix.ty; + x = nx; + } + + index++; + + uvs.push(x / frame.width, y / frame.height); + } + + var baseTexture = texture.baseTexture; + + if (frame.width < baseTexture.width + || frame.height < baseTexture.height) + { + this.adjustUvs(uvs, texture, uvsStart, size); + } + }; + + /** + * Modify uvs array according to position of texture region + * Does not work with rotated or trimmed textures + * @param {number[]} uvs array + * @param {PIXI.Texture} texture region + * @param {number} start starting index for uvs + * @param {number} size how many points to adjust + */ + GraphicsGeometry.prototype.adjustUvs = function adjustUvs (uvs, texture, start, size) + { + var baseTexture = texture.baseTexture; + var eps = 1e-6; + var finish = start + (size * 2); + var frame = texture.frame; + var scaleX = frame.width / baseTexture.width; + var scaleY = frame.height / baseTexture.height; + var offsetX = frame.x / frame.width; + var offsetY = frame.y / frame.height; + var minX = Math.floor(uvs[start] + eps); + var minY = Math.floor(uvs[start + 1] + eps); + + for (var i = start + 2; i < finish; i += 2) + { + minX = Math.min(minX, Math.floor(uvs[i] + eps)); + minY = Math.min(minY, Math.floor(uvs[i + 1] + eps)); + } + offsetX -= minX; + offsetY -= minY; + for (var i$1 = start; i$1 < finish; i$1 += 2) + { + uvs[i$1] = (uvs[i$1] + offsetX) * scaleX; + uvs[i$1 + 1] = (uvs[i$1 + 1] + offsetY) * scaleY; + } + }; + + Object.defineProperties( GraphicsGeometry.prototype, prototypeAccessors ); + + return GraphicsGeometry; +}(BatchGeometry)); + +/** + * The maximum number of points to consider an object "batchable", + * able to be batched by the renderer's batch system. + * + * @memberof PIXI.GraphicsGeometry + * @static + * @member {number} BATCHABLE_SIZE + * @default 100 + */ +GraphicsGeometry.BATCHABLE_SIZE = 100; + +/** + * Represents the line style for Graphics. + * @memberof PIXI + * @class + * @extends PIXI.FillStyle + */ +var LineStyle = /*@__PURE__*/(function (FillStyle) { + function LineStyle () { + FillStyle.apply(this, arguments); + } + + if ( FillStyle ) LineStyle.__proto__ = FillStyle; + LineStyle.prototype = Object.create( FillStyle && FillStyle.prototype ); + LineStyle.prototype.constructor = LineStyle; + + LineStyle.prototype.clone = function clone () + { + var obj = new LineStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + obj.width = this.width; + obj.alignment = this.alignment; + obj.native = this.native; + + return obj; + }; + /** + * Reset the line style to default. + */ + LineStyle.prototype.reset = function reset () + { + FillStyle.prototype.reset.call(this); + + // Override default line style color + this.color = 0x0; + + /** + * The width (thickness) of any lines drawn. + * + * @member {number} + * @default 0 + */ + this.width = 0; + + /** + * The alignment of any lines drawn (0.5 = middle, 1 = outter, 0 = inner). + * + * @member {number} + * @default 0 + */ + this.alignment = 0.5; + + /** + * If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * + * @member {boolean} + * @default false + */ + this.native = false; + }; + + return LineStyle; +}(FillStyle)); + +/** + * Utilities for bezier curves + * @class + * @private + */ +var BezierUtils = function BezierUtils () {}; + +BezierUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) +{ + var n = 10; + var result = 0.0; + var t = 0.0; + var t2 = 0.0; + var t3 = 0.0; + var nt = 0.0; + var nt2 = 0.0; + var nt3 = 0.0; + var x = 0.0; + var y = 0.0; + var dx = 0.0; + var dy = 0.0; + var prevX = fromX; + var prevY = fromY; + + for (var i = 1; i <= n; ++i) + { + t = i / n; + t2 = t * t; + t3 = t2 * t; + nt = (1.0 - t); + nt2 = nt * nt; + nt3 = nt2 * nt; + + x = (nt3 * fromX) + (3.0 * nt2 * t * cpX) + (3.0 * nt * t2 * cpX2) + (t3 * toX); + y = (nt3 * fromY) + (3.0 * nt2 * t * cpY) + (3 * nt * t2 * cpY2) + (t3 * toY); + dx = prevX - x; + dy = prevY - y; + prevX = x; + prevY = y; + + result += Math.sqrt((dx * dx) + (dy * dy)); + } + + return result; +}; + +/** + * Calculate the points for a bezier curve and then draws it. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Path array to push points into + */ +BezierUtils.curveTo = function curveTo (cpX, cpY, cpX2, cpY2, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + points.length -= 2; + + var n = GRAPHICS_CURVES._segmentsCount( + BezierUtils.curveLength(fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) + ); + + var dt = 0; + var dt2 = 0; + var dt3 = 0; + var t2 = 0; + var t3 = 0; + + points.push(fromX, fromY); + + for (var i = 1, j = 0; i <= n; ++i) + { + j = i / n; + + dt = (1 - j); + dt2 = dt * dt; + dt3 = dt2 * dt; + + t2 = j * j; + t3 = t2 * j; + + points.push( + (dt3 * fromX) + (3 * dt2 * j * cpX) + (3 * dt * t2 * cpX2) + (t3 * toX), + (dt3 * fromY) + (3 * dt2 * j * cpY) + (3 * dt * t2 * cpY2) + (t3 * toY) + ); + } +}; + +/** + * Utilities for quadratic curves + * @class + * @private + */ +var QuadraticUtils = function QuadraticUtils () {}; + +QuadraticUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, toX, toY) +{ + var ax = fromX - (2.0 * cpX) + toX; + var ay = fromY - (2.0 * cpY) + toY; + var bx = (2.0 * cpX) - (2.0 * fromX); + var by = (2.0 * cpY) - (2.0 * fromY); + var a = 4.0 * ((ax * ax) + (ay * ay)); + var b = 4.0 * ((ax * bx) + (ay * by)); + var c = (bx * bx) + (by * by); + + var s = 2.0 * Math.sqrt(a + b + c); + var a2 = Math.sqrt(a); + var a32 = 2.0 * a * a2; + var c2 = 2.0 * Math.sqrt(c); + var ba = b / a2; + + return ( + (a32 * s) + + (a2 * b * (s - c2)) + + ( + ((4.0 * c * a) - (b * b)) + * Math.log(((2.0 * a2) + ba + s) / (ba + c2)) + ) + ) / (4.0 * a32); +}; + +/** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @private + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Points to add segments to. + */ +QuadraticUtils.curveTo = function curveTo (cpX, cpY, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var n = GRAPHICS_CURVES._segmentsCount( + QuadraticUtils.curveLength(fromX, fromY, cpX, cpY, toX, toY) + ); + + var xa = 0; + var ya = 0; + + for (var i = 1; i <= n; ++i) + { + var j = i / n; + + xa = fromX + ((cpX - fromX) * j); + ya = fromY + ((cpY - fromY) * j); + + points.push(xa + (((cpX + ((toX - cpX) * j)) - xa) * j), + ya + (((cpY + ((toY - cpY) * j)) - ya) * j)); + } +}; + +/** + * Utilities for arc curves + * @class + * @private + */ +var ArcUtils = function ArcUtils () {}; + +ArcUtils.curveTo = function curveTo (x1, y1, x2, y2, radius, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var a1 = fromY - y1; + var b1 = fromX - x1; + var a2 = y2 - y1; + var b2 = x2 - x1; + var mm = Math.abs((a1 * b2) - (b1 * a2)); + + if (mm < 1.0e-8 || radius === 0) + { + if (points[points.length - 2] !== x1 || points[points.length - 1] !== y1) + { + points.push(x1, y1); + } + + return null; + } + + var dd = (a1 * a1) + (b1 * b1); + var cc = (a2 * a2) + (b2 * b2); + var tt = (a1 * a2) + (b1 * b2); + var k1 = radius * Math.sqrt(dd) / mm; + var k2 = radius * Math.sqrt(cc) / mm; + var j1 = k1 * tt / dd; + var j2 = k2 * tt / cc; + var cx = (k1 * b2) + (k2 * b1); + var cy = (k1 * a2) + (k2 * a1); + var px = b1 * (k2 + j1); + var py = a1 * (k2 + j1); + var qx = b2 * (k1 + j2); + var qy = a2 * (k1 + j2); + var startAngle = Math.atan2(py - cy, px - cx); + var endAngle = Math.atan2(qy - cy, qx - cx); + + return { + cx: (cx + x1), + cy: (cy + y1), + radius: radius, + startAngle: startAngle, + endAngle: endAngle, + anticlockwise: (b1 * a2 > b2 * a1), + }; +}; + +/** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @private + * @param {number} startX - Start x location of arc + * @param {number} startY - Start y location of arc + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} anticlockwise - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @param {number} n - Number of segments + * @param {number[]} points - Collection of points to add to + */ +ArcUtils.arc = function arc (startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points) +{ + var sweep = endAngle - startAngle; + var n = GRAPHICS_CURVES._segmentsCount( + Math.abs(sweep) * radius, + Math.ceil(Math.abs(sweep) / PI_2) * 40 + ); + + var theta = (sweep) / (n * 2); + var theta2 = theta * 2; + var cTheta = Math.cos(theta); + var sTheta = Math.sin(theta); + var segMinus = n - 1; + var remainder = (segMinus % 1) / segMinus; + + for (var i = 0; i <= segMinus; ++i) + { + var real = i + (remainder * i); + var angle = ((theta) + startAngle + (theta2 * real)); + var c = Math.cos(angle); + var s = -Math.sin(angle); + + points.push( + (((cTheta * c) + (sTheta * s)) * radius) + cx, + (((cTheta * -s) + (sTheta * c)) * radius) + cy + ); + } +}; + +/** + * Draw a star shape with an arbitrary number of points. + * + * @class + * @extends PIXI.Polygon + * @memberof PIXI + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ +var Star = /*@__PURE__*/(function (Polygon) { + function Star(x, y, points, radius, innerRadius, rotation) + { + innerRadius = innerRadius || radius / 2; + + var startAngle = (-1 * Math.PI / 2) + rotation; + var len = points * 2; + var delta = PI_2 / len; + var polygon = []; + + for (var i = 0; i < len; i++) + { + var r = i % 2 ? innerRadius : radius; + var angle = (i * delta) + startAngle; + + polygon.push( + x + (r * Math.cos(angle)), + y + (r * Math.sin(angle)) + ); + } + + Polygon.call(this, polygon); + } + + if ( Polygon ) Star.__proto__ = Polygon; + Star.prototype = Object.create( Polygon && Polygon.prototype ); + Star.prototype.constructor = Star; + + return Star; +}(Polygon)); + +var temp = new Float32Array(3); + +// a default shaders map used by graphics.. +var DEFAULT_SHADERS = {}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * Note that because Graphics can share a GraphicsGeometry with other instances, + * it is necessary to call `destroy()` to properly dereference the underlying + * GraphicsGeometry and avoid a memory leak. Alternatively, keep using the same + * Graphics instance and call `clear()` between redraws. + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Graphics = /*@__PURE__*/(function (Container) { + function Graphics(geometry) + { + if ( geometry === void 0 ) geometry = null; + + Container.call(this); + /** + * Includes vertex positions, face indices, normals, colors, UVs, and + * custom attributes within buffers, reducing the cost of passing all + * this data to the GPU. Can be shared between multiple Mesh or Graphics objects. + * @member {PIXI.GraphicsGeometry} + * @readonly + */ + this.geometry = geometry || new GraphicsGeometry(); + + this.geometry.refCount++; + + /** + * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU. + * Can be shared between multiple Graphics objects. + * @member {PIXI.Shader} + */ + this.shader = null; + + /** + * Represents the WebGL state the Graphics required to render, excludes shader and geometry. E.g., + * blend mode, culling, depth testing, direction of rendering triangles, backface, etc. + * @member {PIXI.State} + */ + this.state = State.for2d(); + + /** + * Current fill style + * + * @member {PIXI.FillStyle} + * @protected + */ + this._fillStyle = new FillStyle(); + + /** + * Current line style + * + * @member {PIXI.LineStyle} + * @protected + */ + this._lineStyle = new LineStyle(); + + /** + * Current shape transform matrix. + * + * @member {PIXI.Matrix} + * @protected + */ + this._matrix = null; + + /** + * Current hole mode is enabled. + * + * @member {boolean} + * @default false + * @protected + */ + this._holeMode = false; + + /** + * Current path + * + * @member {PIXI.Polygon} + * @protected + */ + this.currentPath = null; + + /** + * When cacheAsBitmap is set to true the graphics object will be rendered as if it was a sprite. + * This is useful if your graphics element does not change often, as it will speed up the rendering + * of the object in exchange for taking up texture memory. It is also useful if you need the graphics + * object to be anti-aliased, because it will be rendered using canvas. This is not recommended if + * you are constantly redrawing the graphics element. + * + * @name cacheAsBitmap + * @member {boolean} + * @memberof PIXI.Graphics# + * @default false + */ + + /** + * A collections of batches! These can be drawn by the renderer batch system. + * + * @protected + * @member {object[]} + */ + this.batches = []; + + /** + * Update dirty for limiting calculating tints for batches. + * + * @protected + * @member {number} + * @default -1 + */ + this.batchTint = -1; + + /** + * Copy of the object vertex data. + * + * @protected + * @member {Float32Array} + */ + this.vertexData = null; + + this._transformID = -1; + this.batchDirty = -1; + + /** + * Renderer plugin for batching + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + // Set default + this.tint = 0xFFFFFF; + this.blendMode = BLEND_MODES.NORMAL; + } + + if ( Container ) Graphics.__proto__ = Container; + Graphics.prototype = Object.create( Container && Container.prototype ); + Graphics.prototype.constructor = Graphics; + + var prototypeAccessors = { blendMode: { configurable: true },tint: { configurable: true },fill: { configurable: true },line: { configurable: true } }; + + /** + * Creates a new Graphics object with the same values as this one. + * Note that the only the properties of the object are cloned, not its transform (position,scale,etc) + * + * @return {PIXI.Graphics} A clone of the graphics object + */ + Graphics.prototype.clone = function clone () + { + this.finishPoly(); + + return new Graphics(this.geometry); + }; + + /** + * The blend mode to be applied to the graphic shape. Apply a value of + * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL; + * @see PIXI.BLEND_MODES + */ + prototypeAccessors.blendMode.set = function (value) + { + this.state.blendMode = value; + }; + + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + /** + * The tint applied to the graphic shape. This is a hex value. A value of + * 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + prototypeAccessors.tint.set = function (value) + { + this._tint = value; + }; + + /** + * The current fill style. + * + * @member {PIXI.FillStyle} + * @readonly + */ + prototypeAccessors.fill.get = function () + { + return this._fillStyle; + }; + + /** + * The current line style. + * + * @member {PIXI.LineStyle} + * @readonly + */ + prototypeAccessors.line.get = function () + { + return this._lineStyle; + }; + + /** + * Specifies the line style used for subsequent calls to Graphics methods such as the lineTo() + * method or the drawCircle() method. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineStyle = function lineStyle (width, color, alpha, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + this.lineTextureStyle(width, Texture.WHITE, color, alpha, null, alignment, native); + + return this; + }; + + /** + * Like line style but support texture for line fill. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to use + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {PIXI.Matrix} [matrix=null] Texture matrix to transform texture + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTextureStyle = function lineTextureStyle (width, texture, color, alpha, + matrix, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = width > 0 && alpha > 0; + + if (!visible) + { + this._lineStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._lineStyle, { + color: color, + width: width, + alpha: alpha, + matrix: matrix, + texture: texture, + alignment: alignment, + native: native, + visible: visible, + }); + } + + return this; + }; + + /** + * Start a polygon object internally + * @protected + */ + Graphics.prototype.startPoly = function startPoly () + { + if (this.currentPath) + { + var points = this.currentPath.points; + var len = this.currentPath.points.length; + + if (len > 2) + { + this.drawShape(this.currentPath); + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + this.currentPath.points.push(points[len - 2], points[len - 1]); + } + } + else + { + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + } + }; + + /** + * Finish the polygon object. + * @protected + */ + Graphics.prototype.finishPoly = function finishPoly () + { + if (this.currentPath) + { + if (this.currentPath.points.length > 2) + { + this.drawShape(this.currentPath); + this.currentPath = null; + } + else + { + this.currentPath.points.length = 0; + } + } + }; + + /** + * Moves the current drawing position to x, y. + * + * @param {number} x - the X coordinate to move to + * @param {number} y - the Y coordinate to move to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.moveTo = function moveTo (x, y) + { + this.startPoly(); + this.currentPath.points[0] = x; + this.currentPath.points[1] = y; + + return this; + }; + + /** + * Draws a line using the current line style from the current drawing position to (x, y); + * The current drawing position is then set to (x, y). + * + * @param {number} x - the X coordinate to draw to + * @param {number} y - the Y coordinate to draw to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTo = function lineTo (x, y) + { + if (!this.currentPath) + { + this.moveTo(0, 0); + } + + // remove duplicates.. + var points = this.currentPath.points; + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + if (fromX !== x || fromY !== y) + { + points.push(x, y); + } + + return this; + }; + + /** + * Initialize the curve + * + * @protected + * @param {number} [x=0] + * @param {number} [y=0] + */ + Graphics.prototype._initCurve = function _initCurve (x, y) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + if (this.currentPath) + { + if (this.currentPath.points.length === 0) + { + this.currentPath.points = [x, y]; + } + } + else + { + this.moveTo(x, y); + } + }; + + /** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.quadraticCurveTo = function quadraticCurveTo (cpX, cpY, toX, toY) + { + this._initCurve(); + + var points = this.currentPath.points; + + if (points.length === 0) + { + this.moveTo(0, 0); + } + + QuadraticUtils.curveTo(cpX, cpY, toX, toY, points); + + return this; + }; + + /** + * Calculate the points for a bezier curve and then draws it. + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.bezierCurveTo = function bezierCurveTo (cpX, cpY, cpX2, cpY2, toX, toY) + { + this._initCurve(); + + BezierUtils.curveTo(cpX, cpY, cpX2, cpY2, toX, toY, this.currentPath.points); + + return this; + }; + + /** + * The arcTo() method creates an arc/curve between two tangents on the canvas. + * + * "borrowed" from https://code.google.com/p/fxcanvas/ - thanks google! + * + * @param {number} x1 - The x-coordinate of the first tangent point of the arc + * @param {number} y1 - The y-coordinate of the first tangent point of the arc + * @param {number} x2 - The x-coordinate of the end of the arc + * @param {number} y2 - The y-coordinate of the end of the arc + * @param {number} radius - The radius of the arc + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arcTo = function arcTo (x1, y1, x2, y2, radius) + { + this._initCurve(x1, y1); + + var points = this.currentPath.points; + + var result = ArcUtils.curveTo(x1, y1, x2, y2, radius, points); + + if (result) + { + var cx = result.cx; + var cy = result.cy; + var radius$1 = result.radius; + var startAngle = result.startAngle; + var endAngle = result.endAngle; + var anticlockwise = result.anticlockwise; + + this.arc(cx, cy, radius$1, startAngle, endAngle, anticlockwise); + } + + return this; + }; + + /** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arc = function arc (cx, cy, radius, startAngle, endAngle, anticlockwise) + { + if ( anticlockwise === void 0 ) anticlockwise = false; + + if (startAngle === endAngle) + { + return this; + } + + if (!anticlockwise && endAngle <= startAngle) + { + endAngle += PI_2; + } + else if (anticlockwise && startAngle <= endAngle) + { + startAngle += PI_2; + } + + var sweep = endAngle - startAngle; + + if (sweep === 0) + { + return this; + } + + var startX = cx + (Math.cos(startAngle) * radius); + var startY = cy + (Math.sin(startAngle) * radius); + var eps = this.geometry.closePointEps; + + // If the currentPath exists, take its points. Otherwise call `moveTo` to start a path. + var points = this.currentPath ? this.currentPath.points : null; + + if (points) + { + // TODO: make a better fix. + + // We check how far our start is from the last existing point + var xDiff = Math.abs(points[points.length - 2] - startX); + var yDiff = Math.abs(points[points.length - 1] - startY); + + if (xDiff < eps && yDiff < eps) + ; + else + { + points.push(startX, startY); + } + } + else + { + this.moveTo(startX, startY); + points = this.currentPath.points; + } + + ArcUtils.arc(startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points); + + return this; + }; + + /** + * Specifies a simple one-color fill that subsequent calls to other Graphics methods + * (such as lineTo() or drawCircle()) use when drawing. + * + * @param {number} [color=0] - the color of the fill + * @param {number} [alpha=1] - the alpha of the fill + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginFill = function beginFill (color, alpha) + { + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + + return this.beginTextureFill(Texture.WHITE, color, alpha); + }; + + /** + * Begin the texture fill + * + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to fill + * @param {number} [color=0xffffff] - Background to fill behind texture + * @param {number} [alpha=1] - Alpha of fill + * @param {PIXI.Matrix} [matrix=null] - Transform matrix + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginTextureFill = function beginTextureFill (texture, color, alpha, matrix) + { + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = alpha > 0; + + if (!visible) + { + this._fillStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._fillStyle, { + color: color, + alpha: alpha, + texture: texture, + matrix: matrix, + visible: visible, + }); + } + + return this; + }; + + /** + * Applies a fill to the lines and shapes that were added since the last call to the beginFill() method. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.endFill = function endFill () + { + this.finishPoly(); + + this._fillStyle.reset(); + + return this; + }; + + /** + * Draws a rectangle shape. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRect = function drawRect (x, y, width, height) + { + return this.drawShape(new Rectangle(x, y, width, height)); + }; + + /** + * Draw a rectangle shape with rounded/beveled corners. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @param {number} radius - Radius of the rectangle corners + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRoundedRect = function drawRoundedRect (x, y, width, height, radius) + { + return this.drawShape(new RoundedRectangle(x, y, width, height, radius)); + }; + + /** + * Draws a circle. + * + * @param {number} x - The X coordinate of the center of the circle + * @param {number} y - The Y coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawCircle = function drawCircle (x, y, radius) + { + return this.drawShape(new Circle(x, y, radius)); + }; + + /** + * Draws an ellipse. + * + * @param {number} x - The X coordinate of the center of the ellipse + * @param {number} y - The Y coordinate of the center of the ellipse + * @param {number} width - The half width of the ellipse + * @param {number} height - The half height of the ellipse + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawEllipse = function drawEllipse (x, y, width, height) + { + return this.drawShape(new Ellipse(x, y, width, height)); + }; + + /** + * Draws a polygon using the given path. + * + * @param {number[]|PIXI.Point[]|PIXI.Polygon} path - The path data used to construct the polygon. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawPolygon = function drawPolygon (path) + { + var arguments$1 = arguments; + + // prevents an argument assignment deopt + // see section 3.1: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + var points = path; + + var closeStroke = true;// !!this._fillStyle; + + // check if data has points.. + if (points.points) + { + closeStroke = points.closeStroke; + points = points.points; + } + + if (!Array.isArray(points)) + { + // prevents an argument leak deopt + // see section 3.2: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + points = new Array(arguments.length); + + for (var i = 0; i < points.length; ++i) + { + points[i] = arguments$1[i]; // eslint-disable-line prefer-rest-params + } + } + + var shape = new Polygon(points); + + shape.closeStroke = closeStroke; + + this.drawShape(shape); + + return this; + }; + + /** + * Draw any shape. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - Shape to draw + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawShape = function drawShape (shape) + { + if (!this._holeMode) + { + this.geometry.drawShape( + shape, + this._fillStyle.clone(), + this._lineStyle.clone(), + this._matrix + ); + } + else + { + this.geometry.drawHole(shape, this._matrix); + } + + return this; + }; + + /** + * Draw a star shape with an arbitrary number of points. + * + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawStar = function drawStar (x, y, points, radius, innerRadius, rotation) + { + if ( rotation === void 0 ) rotation = 0; + + return this.drawPolygon(new Star(x, y, points, radius, innerRadius, rotation)); + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.clear = function clear () + { + this.geometry.clear(); + this._lineStyle.reset(); + this._fillStyle.reset(); + + this._matrix = null; + this._holeMode = false; + this.currentPath = null; + + return this; + }; + + /** + * True if graphics consists of one rectangle, and thus, can be drawn like a Sprite and + * masked with gl.scissor. + * + * @returns {boolean} True if only 1 rect. + */ + Graphics.prototype.isFastRect = function isFastRect () + { + // will fix this! + return false; + // this.graphicsData.length === 1 + // && this.graphicsData[0].shape.type === SHAPES.RECT + // && !this.graphicsData[0].lineWidth; + }; + + /** + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._render = function _render (renderer) + { + this.finishPoly(); + + var geometry = this.geometry; + + // batch part.. + // batch it! + geometry.updateBatches(); + + if (geometry.batchable) + { + if (this.batchDirty !== geometry.batchDirty) + { + this._populateBatches(); + } + + this._renderBatched(renderer); + } + else + { + // no batching... + renderer.batch.flush(); + + this._renderDirect(renderer); + } + }; + + /** + * Populating batches for rendering + * + * @protected + */ + Graphics.prototype._populateBatches = function _populateBatches () + { + var geometry = this.geometry; + var blendMode = this.blendMode; + + this.batches = []; + this.batchTint = -1; + this._transformID = -1; + this.batchDirty = geometry.batchDirty; + + this.vertexData = new Float32Array(geometry.points); + + for (var i = 0, l = geometry.batches.length; i < l; i++) + { + var gI = geometry.batches[i]; + var color = gI.style.color; + var vertexData = new Float32Array(this.vertexData.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var uvs = new Float32Array(geometry.uvsFloat32.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var indices = new Uint16Array(geometry.indicesUint16.buffer, + gI.start * 2, + gI.size); + + var batch = { + vertexData: vertexData, + blendMode: blendMode, + indices: indices, + uvs: uvs, + _batchRGB: hex2rgb(color), + _tintRGB: color, + _texture: gI.style.texture, + alpha: gI.style.alpha, + worldAlpha: 1 }; + + this.batches[i] = batch; + } + }; + + /** + * Renders the batches using the BathedRenderer plugin + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderBatched = function _renderBatched (renderer) + { + if (!this.batches.length) + { + return; + } + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + + this.calculateVertices(); + this.calculateTints(); + + for (var i = 0, l = this.batches.length; i < l; i++) + { + var batch = this.batches[i]; + + batch.worldAlpha = this.worldAlpha * batch.alpha; + + renderer.plugins[this.pluginName].render(batch); + } + }; + + /** + * Renders the graphics direct + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderDirect = function _renderDirect (renderer) + { + var shader = this._resolveDirectShader(renderer); + + var geometry = this.geometry; + var tint = this.tint; + var worldAlpha = this.worldAlpha; + var uniforms = shader.uniforms; + var drawCalls = geometry.drawCalls; + + // lets set the transfomr + uniforms.translationMatrix = this.transform.worldTransform; + + // and then lets set the tint.. + uniforms.tint[0] = (((tint >> 16) & 0xFF) / 255) * worldAlpha; + uniforms.tint[1] = (((tint >> 8) & 0xFF) / 255) * worldAlpha; + uniforms.tint[2] = ((tint & 0xFF) / 255) * worldAlpha; + uniforms.tint[3] = worldAlpha; + + // the first draw call, we can set the uniforms of the shader directly here. + + // this means that we can tack advantage of the sync function of pixi! + // bind and sync uniforms.. + // there is a way to optimise this.. + renderer.shader.bind(shader); + renderer.geometry.bind(geometry, shader); + + // set state.. + renderer.state.set(this.state); + + // then render the rest of them... + for (var i = 0, l = drawCalls.length; i < l; i++) + { + this._renderDrawCallDirect(renderer, geometry.drawCalls[i]); + } + }; + + /** + * Renders specific DrawCall + * + * @param {PIXI.Renderer} renderer + * @param {PIXI.BatchDrawCall} drawCall + */ + Graphics.prototype._renderDrawCallDirect = function _renderDrawCallDirect (renderer, drawCall) + { + var groupTextureCount = drawCall.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + renderer.texture.bind(drawCall.textures[j], j); + } + + renderer.geometry.draw(drawCall.type, drawCall.size, drawCall.start); + }; + + /** + * Resolves shader for direct rendering + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._resolveDirectShader = function _resolveDirectShader (renderer) + { + var shader = this.shader; + + var pluginName = this.pluginName; + + if (!shader) + { + // if there is no shader here, we can use the default shader. + // and that only gets created if we actually need it.. + // but may be more than one plugins for graphics + if (!DEFAULT_SHADERS[pluginName]) + { + var sampleValues = new Int32Array(16); + + for (var i = 0; i < 16; i++) + { + sampleValues[i] = i; + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: UniformGroup.from({ uSamplers: sampleValues }, true), + }; + + var program = renderer.plugins[pluginName]._shader.program; + + DEFAULT_SHADERS[pluginName] = new Shader(program, uniforms); + } + + shader = DEFAULT_SHADERS[pluginName]; + } + + return shader; + }; + + /** + * Retrieves the bounds of the graphic shape as a rectangle object + * + * @protected + */ + Graphics.prototype._calculateBounds = function _calculateBounds () + { + this.finishPoly(); + var lb = this.geometry.bounds; + + this._bounds.addFrame(this.transform, lb.minX, lb.minY, lb.maxX, lb.maxY); + }; + + /** + * Tests if a point is inside this graphics object + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Graphics.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, Graphics._TEMP_POINT); + + return this.geometry.containsPoint(Graphics._TEMP_POINT); + }; + + /** + * Recalcuate the tint by applying tin to batches using Graphics tint. + * @protected + */ + Graphics.prototype.calculateTints = function calculateTints () + { + if (this.batchTint !== this.tint) + { + this.batchTint = this.tint; + + var tintRGB = hex2rgb(this.tint, temp); + + for (var i = 0; i < this.batches.length; i++) + { + var batch = this.batches[i]; + + var batchTint = batch._batchRGB; + + var r = (tintRGB[0] * batchTint[0]) * 255; + var g = (tintRGB[1] * batchTint[1]) * 255; + var b = (tintRGB[2] * batchTint[2]) * 255; + + // TODO Ivan, can this be done in one go? + var color = (r << 16) + (g << 8) + (b | 0); + + batch._tintRGB = (color >> 16) + + (color & 0xff00) + + ((color & 0xff) << 16); + } + } + }; + + /** + * If there's a transform update or a change to the shape of the + * geometry, recaculate the vertices. + * @protected + */ + Graphics.prototype.calculateVertices = function calculateVertices () + { + if (this._transformID === this.transform._worldID) + { + return; + } + + this._transformID = this.transform._worldID; + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var data = this.geometry.points;// batch.vertexDataOriginal; + var vertexData = this.vertexData; + + var count = 0; + + for (var i = 0; i < data.length; i += 2) + { + var x = data[i]; + var y = data[i + 1]; + + vertexData[count++] = (a * x) + (c * y) + tx; + vertexData[count++] = (d * y) + (b * x) + ty; + } + }; + + /** + * Closes the current path. + * + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.closePath = function closePath () + { + var currentPath = this.currentPath; + + if (currentPath) + { + // we don't need to add extra point in the end because buildLine will take care of that + currentPath.closeStroke = true; + } + + return this; + }; + + /** + * Apply a matrix to the positional data. + * + * @param {PIXI.Matrix} matrix - Matrix to use for transform current shape. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.setMatrix = function setMatrix (matrix) + { + this._matrix = matrix; + + return this; + }; + + /** + * Begin adding holes to the last draw shape + * IMPORTANT: holes must be fully inside a shape to work + * Also weirdness ensues if holes overlap! + * Ellipses, Circles, Rectangles and Rounded Rectangles cannot be holes or host for holes in CanvasRenderer, + * please use `moveTo` `lineTo`, `quadraticCurveTo` if you rely on pixi-legacy bundle. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.beginHole = function beginHole () + { + this.finishPoly(); + this._holeMode = true; + + return this; + }; + + /** + * End adding holes to the last draw shape + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.endHole = function endHole () + { + this.finishPoly(); + this._holeMode = false; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Graphics.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this.geometry.refCount--; + if (this.geometry.refCount === 0) + { + this.geometry.dispose(); + } + + this._matrix = null; + this.currentPath = null; + this._lineStyle.destroy(); + this._lineStyle = null; + this._fillStyle.destroy(); + this._fillStyle = null; + this.geometry = null; + this.shader = null; + this.vertexData = null; + this.batches.length = 0; + this.batches = null; + + Container.prototype.destroy.call(this, options); + }; + + Object.defineProperties( Graphics.prototype, prototypeAccessors ); + + return Graphics; +}(Container)); + +/** + * Temporary point to use for containsPoint + * + * @static + * @private + * @member {PIXI.Point} + */ +Graphics._TEMP_POINT = new Point(); + +/*! + * @pixi/sprite - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint = new Point(); +var indices = new Uint16Array([0, 1, 2, 0, 2, 3]); + +/** + * The Sprite object is the base for all textured objects that are rendered to the screen +* + * A sprite can be created directly from an image like this: + * + * ```js + * let sprite = PIXI.Sprite.from('assets/image.png'); + * ``` + * + * The more efficient way to create sprites is using a {@link PIXI.Spritesheet}, + * as swapping base textures when rendering to the screen is inefficient. + * + * ```js + * PIXI.Loader.shared.add("assets/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["assets/spritesheet.json"].spritesheet; + * let sprite = new PIXI.Sprite(sheet.textures["image.png"]); + * ... + * } + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Sprite = /*@__PURE__*/(function (Container) { + function Sprite(texture) + { + Container.call(this); + + /** + * The anchor point defines the normalized coordinates + * in the texture that map to the position of this + * sprite. + * + * By default, this is `(0,0)` (or `texture.defaultAnchor` + * if you have modified that), which means the position + * `(x,y)` of this `Sprite` will be the top-left corner. + * + * Note: Updating `texture.defaultAnchor` after + * constructing a `Sprite` does _not_ update its anchor. + * + * {@link https://docs.cocos2d-x.org/cocos2d-x/en/sprites/manipulation.html} + * + * @default `texture.defaultAnchor` + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint( + this._onAnchorUpdate, + this, + (texture ? texture.defaultAnchor.x : 0), + (texture ? texture.defaultAnchor.y : 0) + ); + + /** + * The texture that the sprite is using + * + * @private + * @member {PIXI.Texture} + */ + this._texture = null; + + /** + * The width of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._width = 0; + + /** + * The height of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._height = 0; + + /** + * The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect. + * + * @private + * @member {number} + * @default 0xFFFFFF + */ + this._tint = null; + this._tintRGB = null; + this.tint = 0xFFFFFF; + + /** + * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ + this.blendMode = BLEND_MODES.NORMAL; + + /** + * The shader that will be used to render the sprite. Set to null to remove a current shader. + * + * @member {PIXI.Filter|PIXI.Shader} + */ + this.shader = null; + + /** + * Cached tint value so we can tell when the tint is changed. + * Value is used for 2d CanvasRenderer. + * + * @protected + * @member {number} + * @default 0xFFFFFF + */ + this._cachedTint = 0xFFFFFF; + + /** + * this is used to store the uvs data of the sprite, assigned at the same time + * as the vertexData in calculateVertices() + * + * @private + * @member {Float32Array} + */ + this.uvs = null; + + // call texture setter + this.texture = texture || Texture.EMPTY; + + /** + * this is used to store the vertex data of the sprite (basically a quad) + * + * @private + * @member {Float32Array} + */ + this.vertexData = new Float32Array(8); + + /** + * This is used to calculate the bounds of the object IF it is a trimmed sprite + * + * @private + * @member {Float32Array} + */ + this.vertexTrimmedData = null; + + this._transformID = -1; + this._textureID = -1; + + this._transformTrimmedID = -1; + this._textureTrimmedID = -1; + + // Batchable stuff.. + // TODO could make this a mixin? + this.indices = indices; + this.size = 4; + this.start = 0; + + /** + * Plugin that is responsible for rendering this element. + * Allows to customize the rendering process without overriding '_render' & '_renderCanvas' methods. + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = true; + + /** + * Internal roundPixels field + * + * @member {boolean} + * @private + */ + this._roundPixels = settings.ROUND_PIXELS; + } + + if ( Container ) Sprite.__proto__ = Container; + Sprite.prototype = Object.create( Container && Container.prototype ); + Sprite.prototype.constructor = Sprite; + + var prototypeAccessors = { roundPixels: { configurable: true },width: { configurable: true },height: { configurable: true },anchor: { configurable: true },tint: { configurable: true },texture: { configurable: true } }; + + /** + * When the texture is updated, this event will fire to update the scale and frame + * + * @private + */ + Sprite.prototype._onTextureUpdate = function _onTextureUpdate () + { + this._textureID = -1; + this._textureTrimmedID = -1; + this._cachedTint = 0xFFFFFF; + + // so if _width is 0 then width was not set.. + if (this._width) + { + this.scale.x = sign$1(this.scale.x) * this._width / this._texture.orig.width; + } + + if (this._height) + { + this.scale.y = sign$1(this.scale.y) * this._height / this._texture.orig.height; + } + }; + + /** + * Called when the anchor position updates. + * + * @private + */ + Sprite.prototype._onAnchorUpdate = function _onAnchorUpdate () + { + this._transformID = -1; + this._transformTrimmedID = -1; + }; + + /** + * calculates worldTransform * vertices, store it in vertexData + */ + Sprite.prototype.calculateVertices = function calculateVertices () + { + var texture = this._texture; + + if (this._transformID === this.transform._worldID && this._textureID === texture._updateID) + { + return; + } + + // update texture UV here, because base texture can be changed without calling `_onTextureUpdate` + if (this._textureID !== texture._updateID) + { + this.uvs = this._texture._uvs.uvsFloat32; + } + + this._transformID = this.transform._worldID; + this._textureID = texture._updateID; + + // set the vertex data + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + var vertexData = this.vertexData; + var trim = texture.trim; + var orig = texture.orig; + var anchor = this._anchor; + + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the extra + // space before transforming the sprite coords. + w1 = trim.x - (anchor._x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (anchor._y * orig.height); + h0 = h1 + trim.height; + } + else + { + w1 = -anchor._x * orig.width; + w0 = w1 + orig.width; + + h1 = -anchor._y * orig.height; + h0 = h1 + orig.height; + } + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + + if (this._roundPixels) + { + for (var i = 0; i < 8; i++) + { + vertexData[i] = Math.round(vertexData[i]); + } + } + }; + + /** + * calculates worldTransform * vertices for a non texture with a trim. store it in vertexTrimmedData + * This is used to ensure that the true width and height of a trimmed texture is respected + */ + Sprite.prototype.calculateTrimmedVertices = function calculateTrimmedVertices () + { + if (!this.vertexTrimmedData) + { + this.vertexTrimmedData = new Float32Array(8); + } + else if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID) + { + return; + } + + this._transformTrimmedID = this.transform._worldID; + this._textureTrimmedID = this._texture._updateID; + + // lets do some special trim code! + var texture = this._texture; + var vertexData = this.vertexTrimmedData; + var orig = texture.orig; + var anchor = this._anchor; + + // lets calculate the new untrimmed bounds.. + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var w1 = -anchor._x * orig.width; + var w0 = w1 + orig.width; + + var h1 = -anchor._y * orig.height; + var h0 = h1 + orig.height; + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + }; + + /** + * + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The webgl renderer to use. + */ + Sprite.prototype._render = function _render (renderer) + { + this.calculateVertices(); + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + renderer.plugins[this.pluginName].render(this); + }; + + /** + * Updates the bounds of the sprite. + * + * @protected + */ + Sprite.prototype._calculateBounds = function _calculateBounds () + { + var trim = this._texture.trim; + var orig = this._texture.orig; + + // First lets check to see if the current texture has a trim.. + if (!trim || (trim.width === orig.width && trim.height === orig.height)) + { + // no trim! lets use the usual calculations.. + this.calculateVertices(); + this._bounds.addQuad(this.vertexData); + } + else + { + // lets calculate a special trimmed bounds... + this.calculateTrimmedVertices(); + this._bounds.addQuad(this.vertexTrimmedData); + } + }; + + /** + * Gets the local bounds of the sprite object. + * + * @param {PIXI.Rectangle} [rect] - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Sprite.prototype.getLocalBounds = function getLocalBounds (rect) + { + // we can do a fast local bounds if the sprite has no children! + if (this.children.length === 0) + { + this._bounds.minX = this._texture.orig.width * -this._anchor._x; + this._bounds.minY = this._texture.orig.height * -this._anchor._y; + this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x); + this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y); + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + return this._bounds.getRectangle(rect); + } + + return Container.prototype.getLocalBounds.call(this, rect); + }; + + /** + * Tests if a point is inside this sprite + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Sprite.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, tempPoint); + + var width = this._texture.orig.width; + var height = this._texture.orig.height; + var x1 = -width * this.anchor.x; + var y1 = 0; + + if (tempPoint.x >= x1 && tempPoint.x < x1 + width) + { + y1 = -height * this.anchor.y; + + if (tempPoint.y >= y1 && tempPoint.y < y1 + height) + { + return true; + } + } + + return false; + }; + + /** + * Destroys this sprite and optionally its texture and children + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well + */ + Sprite.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this._texture.off('update', this._onTextureUpdate, this); + + this._anchor = null; + + var destroyTexture = typeof options === 'boolean' ? options : options && options.texture; + + if (destroyTexture) + { + var destroyBaseTexture = typeof options === 'boolean' ? options : options && options.baseTexture; + + this._texture.destroy(!!destroyBaseTexture); + } + + this._texture = null; + this.shader = null; + }; + + // some helper functions.. + + /** + * Helper function that creates a new sprite based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Sprite} The newly created sprite + */ + Sprite.from = function from (source, options) + { + var texture = (source instanceof Texture) + ? source + : Texture.from(source, options); + + return new Sprite(texture); + }; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + prototypeAccessors.roundPixels.set = function (value) + { + if (this._roundPixels !== value) + { + this._transformID = -1; + } + this._roundPixels = value; + }; + + prototypeAccessors.roundPixels.get = function () + { + return this._roundPixels; + }; + + /** + * The width of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * The anchor sets the origin point of the text. The default value is taken from the {@link PIXI.Texture|Texture} + * and passed to the constructor. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * If you pass only single parameter, it will set both x and y to the same value as shown in the example below. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.anchor.set(0.5); // This will set the origin to center. (0.5) is same as (0.5, 0.5). + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + this._anchor.copyFrom(value); + }; + + /** + * The tint applied to the sprite. This is a hex value. + * A value of 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._tint = value; + this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16); + }; + + /** + * The texture that the sprite is using + * + * @member {PIXI.Texture} + */ + prototypeAccessors.texture.get = function () + { + return this._texture; + }; + + prototypeAccessors.texture.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._texture === value) + { + return; + } + + this._texture = value || Texture.EMPTY; + this._cachedTint = 0xFFFFFF; + + this._textureID = -1; + this._textureTrimmedID = -1; + + if (value) + { + // wait for the texture to load + if (value.baseTexture.valid) + { + this._onTextureUpdate(); + } + else + { + value.once('update', this._onTextureUpdate, this); + } + } + }; + + Object.defineProperties( Sprite.prototype, prototypeAccessors ); + + return Sprite; +}(Container)); + +/*! + * @pixi/text - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Constants that define the type of gradient on text. + * + * @static + * @constant + * @name TEXT_GRADIENT + * @memberof PIXI + * @type {object} + * @property {number} LINEAR_VERTICAL Vertical gradient + * @property {number} LINEAR_HORIZONTAL Linear gradient + */ +var TEXT_GRADIENT = { + LINEAR_VERTICAL: 0, + LINEAR_HORIZONTAL: 1, +}; + +// disabling eslint for now, going to rewrite this in v5 + +var defaultStyle = { + align: 'left', + breakWords: false, + dropShadow: false, + dropShadowAlpha: 1, + dropShadowAngle: Math.PI / 6, + dropShadowBlur: 0, + dropShadowColor: 'black', + dropShadowDistance: 5, + fill: 'black', + fillGradientType: TEXT_GRADIENT.LINEAR_VERTICAL, + fillGradientStops: [], + fontFamily: 'Arial', + fontSize: 26, + fontStyle: 'normal', + fontVariant: 'normal', + fontWeight: 'normal', + letterSpacing: 0, + lineHeight: 0, + lineJoin: 'miter', + miterLimit: 10, + padding: 0, + stroke: 'black', + strokeThickness: 0, + textBaseline: 'alphabetic', + trim: false, + whiteSpace: 'pre', + wordWrap: false, + wordWrapWidth: 100, + leading: 0, +}; + +var genericFontFamilies = [ + 'serif', + 'sans-serif', + 'monospace', + 'cursive', + 'fantasy', + 'system-ui' ]; + +/** + * A TextStyle Object contains information to decorate a Text objects. + * + * An instance can be shared between multiple Text objects; then changing the style will update all text objects using it. + * + * A tool can be used to generate a text style [here](https://pixijs.io/pixi-text-style). + * + * @class + * @memberof PIXI + */ +var TextStyle = function TextStyle(style) +{ + this.styleID = 0; + + this.reset(); + + deepCopyProperties(this, style, style); +}; + +var prototypeAccessors$7 = { align: { configurable: true },breakWords: { configurable: true },dropShadow: { configurable: true },dropShadowAlpha: { configurable: true },dropShadowAngle: { configurable: true },dropShadowBlur: { configurable: true },dropShadowColor: { configurable: true },dropShadowDistance: { configurable: true },fill: { configurable: true },fillGradientType: { configurable: true },fillGradientStops: { configurable: true },fontFamily: { configurable: true },fontSize: { configurable: true },fontStyle: { configurable: true },fontVariant: { configurable: true },fontWeight: { configurable: true },letterSpacing: { configurable: true },lineHeight: { configurable: true },leading: { configurable: true },lineJoin: { configurable: true },miterLimit: { configurable: true },padding: { configurable: true },stroke: { configurable: true },strokeThickness: { configurable: true },textBaseline: { configurable: true },trim: { configurable: true },whiteSpace: { configurable: true },wordWrap: { configurable: true },wordWrapWidth: { configurable: true } }; + +/** + * Creates a new TextStyle object with the same values as this one. + * Note that the only the properties of the object are cloned. + * + * @return {PIXI.TextStyle} New cloned TextStyle object + */ +TextStyle.prototype.clone = function clone () +{ + var clonedProperties = {}; + + deepCopyProperties(clonedProperties, this, defaultStyle); + + return new TextStyle(clonedProperties); +}; + +/** + * Resets all properties to the defaults specified in TextStyle.prototype._default + */ +TextStyle.prototype.reset = function reset () +{ + deepCopyProperties(this, defaultStyle, defaultStyle); +}; + +/** + * Alignment for multiline text ('left', 'center' or 'right'), does not affect single line text + * + * @member {string} + */ +prototypeAccessors$7.align.get = function () +{ + return this._align; +}; +prototypeAccessors$7.align.set = function (align) // eslint-disable-line require-jsdoc +{ + if (this._align !== align) + { + this._align = align; + this.styleID++; + } +}; + +/** + * Indicates if lines can be wrapped within words, it needs wordWrap to be set to true + * + * @member {boolean} + */ +prototypeAccessors$7.breakWords.get = function () +{ + return this._breakWords; +}; +prototypeAccessors$7.breakWords.set = function (breakWords) // eslint-disable-line require-jsdoc +{ + if (this._breakWords !== breakWords) + { + this._breakWords = breakWords; + this.styleID++; + } +}; + +/** + * Set a drop shadow for the text + * + * @member {boolean} + */ +prototypeAccessors$7.dropShadow.get = function () +{ + return this._dropShadow; +}; +prototypeAccessors$7.dropShadow.set = function (dropShadow) // eslint-disable-line require-jsdoc +{ + if (this._dropShadow !== dropShadow) + { + this._dropShadow = dropShadow; + this.styleID++; + } +}; + +/** + * Set alpha for the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAlpha.get = function () +{ + return this._dropShadowAlpha; +}; +prototypeAccessors$7.dropShadowAlpha.set = function (dropShadowAlpha) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAlpha !== dropShadowAlpha) + { + this._dropShadowAlpha = dropShadowAlpha; + this.styleID++; + } +}; + +/** + * Set a angle of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAngle.get = function () +{ + return this._dropShadowAngle; +}; +prototypeAccessors$7.dropShadowAngle.set = function (dropShadowAngle) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAngle !== dropShadowAngle) + { + this._dropShadowAngle = dropShadowAngle; + this.styleID++; + } +}; + +/** + * Set a shadow blur radius + * + * @member {number} + */ +prototypeAccessors$7.dropShadowBlur.get = function () +{ + return this._dropShadowBlur; +}; +prototypeAccessors$7.dropShadowBlur.set = function (dropShadowBlur) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowBlur !== dropShadowBlur) + { + this._dropShadowBlur = dropShadowBlur; + this.styleID++; + } +}; + +/** + * A fill style to be used on the dropshadow e.g 'red', '#00FF00' + * + * @member {string|number} + */ +prototypeAccessors$7.dropShadowColor.get = function () +{ + return this._dropShadowColor; +}; +prototypeAccessors$7.dropShadowColor.set = function (dropShadowColor) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(dropShadowColor); + if (this._dropShadowColor !== outputColor) + { + this._dropShadowColor = outputColor; + this.styleID++; + } +}; + +/** + * Set a distance of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowDistance.get = function () +{ + return this._dropShadowDistance; +}; +prototypeAccessors$7.dropShadowDistance.set = function (dropShadowDistance) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowDistance !== dropShadowDistance) + { + this._dropShadowDistance = dropShadowDistance; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text e.g 'red', '#00FF00'. + * Can be an array to create a gradient eg ['#000000','#FFFFFF'] + * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle|MDN} + * + * @member {string|string[]|number|number[]|CanvasGradient|CanvasPattern} + */ +prototypeAccessors$7.fill.get = function () +{ + return this._fill; +}; +prototypeAccessors$7.fill.set = function (fill) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(fill); + if (this._fill !== outputColor) + { + this._fill = outputColor; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this can change the type/direction of the gradient. + * See {@link PIXI.TEXT_GRADIENT} + * + * @member {number} + */ +prototypeAccessors$7.fillGradientType.get = function () +{ + return this._fillGradientType; +}; +prototypeAccessors$7.fillGradientType.set = function (fillGradientType) // eslint-disable-line require-jsdoc +{ + if (this._fillGradientType !== fillGradientType) + { + this._fillGradientType = fillGradientType; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this array can set the stop points + * (numbers between 0 and 1) for the color, overriding the default behaviour of evenly spacing them. + * + * @member {number[]} + */ +prototypeAccessors$7.fillGradientStops.get = function () +{ + return this._fillGradientStops; +}; +prototypeAccessors$7.fillGradientStops.set = function (fillGradientStops) // eslint-disable-line require-jsdoc +{ + if (!areArraysEqual(this._fillGradientStops,fillGradientStops)) + { + this._fillGradientStops = fillGradientStops; + this.styleID++; + } +}; + +/** + * The font family + * + * @member {string|string[]} + */ +prototypeAccessors$7.fontFamily.get = function () +{ + return this._fontFamily; +}; +prototypeAccessors$7.fontFamily.set = function (fontFamily) // eslint-disable-line require-jsdoc +{ + if (this.fontFamily !== fontFamily) + { + this._fontFamily = fontFamily; + this.styleID++; + } +}; + +/** + * The font size + * (as a number it converts to px, but as a string, equivalents are '26px','20pt','160%' or '1.6em') + * + * @member {number|string} + */ +prototypeAccessors$7.fontSize.get = function () +{ + return this._fontSize; +}; +prototypeAccessors$7.fontSize.set = function (fontSize) // eslint-disable-line require-jsdoc +{ + if (this._fontSize !== fontSize) + { + this._fontSize = fontSize; + this.styleID++; + } +}; + +/** + * The font style + * ('normal', 'italic' or 'oblique') + * + * @member {string} + */ +prototypeAccessors$7.fontStyle.get = function () +{ + return this._fontStyle; +}; +prototypeAccessors$7.fontStyle.set = function (fontStyle) // eslint-disable-line require-jsdoc +{ + if (this._fontStyle !== fontStyle) + { + this._fontStyle = fontStyle; + this.styleID++; + } +}; + +/** + * The font variant + * ('normal' or 'small-caps') + * + * @member {string} + */ +prototypeAccessors$7.fontVariant.get = function () +{ + return this._fontVariant; +}; +prototypeAccessors$7.fontVariant.set = function (fontVariant) // eslint-disable-line require-jsdoc +{ + if (this._fontVariant !== fontVariant) + { + this._fontVariant = fontVariant; + this.styleID++; + } +}; + +/** + * The font weight + * ('normal', 'bold', 'bolder', 'lighter' and '100', '200', '300', '400', '500', '600', '700', 800' or '900') + * + * @member {string} + */ +prototypeAccessors$7.fontWeight.get = function () +{ + return this._fontWeight; +}; +prototypeAccessors$7.fontWeight.set = function (fontWeight) // eslint-disable-line require-jsdoc +{ + if (this._fontWeight !== fontWeight) + { + this._fontWeight = fontWeight; + this.styleID++; + } +}; + +/** + * The amount of spacing between letters, default is 0 + * + * @member {number} + */ +prototypeAccessors$7.letterSpacing.get = function () +{ + return this._letterSpacing; +}; +prototypeAccessors$7.letterSpacing.set = function (letterSpacing) // eslint-disable-line require-jsdoc +{ + if (this._letterSpacing !== letterSpacing) + { + this._letterSpacing = letterSpacing; + this.styleID++; + } +}; + +/** + * The line height, a number that represents the vertical space that a letter uses + * + * @member {number} + */ +prototypeAccessors$7.lineHeight.get = function () +{ + return this._lineHeight; +}; +prototypeAccessors$7.lineHeight.set = function (lineHeight) // eslint-disable-line require-jsdoc +{ + if (this._lineHeight !== lineHeight) + { + this._lineHeight = lineHeight; + this.styleID++; + } +}; + +/** + * The space between lines + * + * @member {number} + */ +prototypeAccessors$7.leading.get = function () +{ + return this._leading; +}; +prototypeAccessors$7.leading.set = function (leading) // eslint-disable-line require-jsdoc +{ + if (this._leading !== leading) + { + this._leading = leading; + this.styleID++; + } +}; + +/** + * The lineJoin property sets the type of corner created, it can resolve spiked text issues. + * Default is 'miter' (creates a sharp corner). + * + * @member {string} + */ +prototypeAccessors$7.lineJoin.get = function () +{ + return this._lineJoin; +}; +prototypeAccessors$7.lineJoin.set = function (lineJoin) // eslint-disable-line require-jsdoc +{ + if (this._lineJoin !== lineJoin) + { + this._lineJoin = lineJoin; + this.styleID++; + } +}; + +/** + * The miter limit to use when using the 'miter' lineJoin mode + * This can reduce or increase the spikiness of rendered text. + * + * @member {number} + */ +prototypeAccessors$7.miterLimit.get = function () +{ + return this._miterLimit; +}; +prototypeAccessors$7.miterLimit.set = function (miterLimit) // eslint-disable-line require-jsdoc +{ + if (this._miterLimit !== miterLimit) + { + this._miterLimit = miterLimit; + this.styleID++; + } +}; + +/** + * Occasionally some fonts are cropped. Adding some padding will prevent this from happening + * by adding padding to all sides of the text. + * + * @member {number} + */ +prototypeAccessors$7.padding.get = function () +{ + return this._padding; +}; +prototypeAccessors$7.padding.set = function (padding) // eslint-disable-line require-jsdoc +{ + if (this._padding !== padding) + { + this._padding = padding; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text stroke + * e.g 'blue', '#FCFF00' + * + * @member {string|number} + */ +prototypeAccessors$7.stroke.get = function () +{ + return this._stroke; +}; +prototypeAccessors$7.stroke.set = function (stroke) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(stroke); + if (this._stroke !== outputColor) + { + this._stroke = outputColor; + this.styleID++; + } +}; + +/** + * A number that represents the thickness of the stroke. + * Default is 0 (no stroke) + * + * @member {number} + */ +prototypeAccessors$7.strokeThickness.get = function () +{ + return this._strokeThickness; +}; +prototypeAccessors$7.strokeThickness.set = function (strokeThickness) // eslint-disable-line require-jsdoc +{ + if (this._strokeThickness !== strokeThickness) + { + this._strokeThickness = strokeThickness; + this.styleID++; + } +}; + +/** + * The baseline of the text that is rendered. + * + * @member {string} + */ +prototypeAccessors$7.textBaseline.get = function () +{ + return this._textBaseline; +}; +prototypeAccessors$7.textBaseline.set = function (textBaseline) // eslint-disable-line require-jsdoc +{ + if (this._textBaseline !== textBaseline) + { + this._textBaseline = textBaseline; + this.styleID++; + } +}; + +/** + * Trim transparent borders + * + * @member {boolean} + */ +prototypeAccessors$7.trim.get = function () +{ + return this._trim; +}; +prototypeAccessors$7.trim.set = function (trim) // eslint-disable-line require-jsdoc +{ + if (this._trim !== trim) + { + this._trim = trim; + this.styleID++; + } +}; + +/** + * How newlines and spaces should be handled. + * Default is 'pre' (preserve, preserve). + * + * value | New lines | Spaces + * --- | --- | --- + * 'normal' | Collapse | Collapse + * 'pre' | Preserve | Preserve + * 'pre-line' | Preserve | Collapse + * + * @member {string} + */ +prototypeAccessors$7.whiteSpace.get = function () +{ + return this._whiteSpace; +}; +prototypeAccessors$7.whiteSpace.set = function (whiteSpace) // eslint-disable-line require-jsdoc +{ + if (this._whiteSpace !== whiteSpace) + { + this._whiteSpace = whiteSpace; + this.styleID++; + } +}; + +/** + * Indicates if word wrap should be used + * + * @member {boolean} + */ +prototypeAccessors$7.wordWrap.get = function () +{ + return this._wordWrap; +}; +prototypeAccessors$7.wordWrap.set = function (wordWrap) // eslint-disable-line require-jsdoc +{ + if (this._wordWrap !== wordWrap) + { + this._wordWrap = wordWrap; + this.styleID++; + } +}; + +/** + * The width at which text will wrap, it needs wordWrap to be set to true + * + * @member {number} + */ +prototypeAccessors$7.wordWrapWidth.get = function () +{ + return this._wordWrapWidth; +}; +prototypeAccessors$7.wordWrapWidth.set = function (wordWrapWidth) // eslint-disable-line require-jsdoc +{ + if (this._wordWrapWidth !== wordWrapWidth) + { + this._wordWrapWidth = wordWrapWidth; + this.styleID++; + } +}; + +/** + * Generates a font style string to use for `TextMetrics.measureFont()`. + * + * @return {string} Font style string, for passing to `TextMetrics.measureFont()` + */ +TextStyle.prototype.toFontString = function toFontString () +{ + // build canvas api font setting from individual components. Convert a numeric this.fontSize to px + var fontSizeString = (typeof this.fontSize === 'number') ? ((this.fontSize) + "px") : this.fontSize; + + // Clean-up fontFamily property by quoting each font name + // this will support font names with spaces + var fontFamilies = this.fontFamily; + + if (!Array.isArray(this.fontFamily)) + { + fontFamilies = this.fontFamily.split(','); + } + + for (var i = fontFamilies.length - 1; i >= 0; i--) + { + // Trim any extra white-space + var fontFamily = fontFamilies[i].trim(); + + // Check if font already contains strings + if (!(/([\"\'])[^\'\"]+\1/).test(fontFamily) && genericFontFamilies.indexOf(fontFamily) < 0) + { + fontFamily = "\"" + fontFamily + "\""; + } + fontFamilies[i] = fontFamily; + } + + return ((this.fontStyle) + " " + (this.fontVariant) + " " + (this.fontWeight) + " " + fontSizeString + " " + (fontFamilies.join(','))); +}; + +Object.defineProperties( TextStyle.prototype, prototypeAccessors$7 ); + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getSingleColor(color) +{ + if (typeof color === 'number') + { + return hex2string(color); + } + else if ( typeof color === 'string' ) + { + if ( color.indexOf('0x') === 0 ) + { + color = color.replace('0x', '#'); + } + } + + return color; +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getColor(color) +{ + if (!Array.isArray(color)) + { + return getSingleColor(color); + } + else + { + for (var i = 0; i < color.length; ++i) + { + color[i] = getSingleColor(color[i]); + } + + return color; + } +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {Array} array1 First array to compare + * @param {Array} array2 Second array to compare + * @return {boolean} Do the arrays contain the same values in the same order + */ +function areArraysEqual(array1, array2) +{ + if (!Array.isArray(array1) || !Array.isArray(array2)) + { + return false; + } + + if (array1.length !== array2.length) + { + return false; + } + + for (var i = 0; i < array1.length; ++i) + { + if (array1[i] !== array2[i]) + { + return false; + } + } + + return true; +} + +/** + * Utility function to ensure that object properties are copied by value, and not by reference + * @private + * @param {Object} target Target object to copy properties into + * @param {Object} source Source object for the properties to copy + * @param {string} propertyObj Object containing properties names we want to loop over + */ +function deepCopyProperties(target, source, propertyObj) { + for (var prop in propertyObj) { + if (Array.isArray(source[prop])) { + target[prop] = source[prop].slice(); + } else { + target[prop] = source[prop]; + } + } +} + +/** + * The TextMetrics object represents the measurement of a block of text with a specified style. + * + * ```js + * let style = new PIXI.TextStyle({fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}) + * let textMetrics = PIXI.TextMetrics.measureText('Your text', style) + * ``` + * + * @class + * @memberof PIXI + */ +var TextMetrics = function TextMetrics(text, style, width, height, lines, lineWidths, lineHeight, maxLineWidth, fontProperties) +{ + /** + * The text that was measured + * + * @member {string} + */ + this.text = text; + + /** + * The style that was measured + * + * @member {PIXI.TextStyle} + */ + this.style = style; + + /** + * The measured width of the text + * + * @member {number} + */ + this.width = width; + + /** + * The measured height of the text + * + * @member {number} + */ + this.height = height; + + /** + * An array of lines of the text broken by new lines and wrapping is specified in style + * + * @member {string[]} + */ + this.lines = lines; + + /** + * An array of the line widths for each line matched to `lines` + * + * @member {number[]} + */ + this.lineWidths = lineWidths; + + /** + * The measured line height for this style + * + * @member {number} + */ + this.lineHeight = lineHeight; + + /** + * The maximum line width for all measured lines + * + * @member {number} + */ + this.maxLineWidth = maxLineWidth; + + /** + * The font properties object from TextMetrics.measureFont + * + * @member {PIXI.IFontMetrics} + */ + this.fontProperties = fontProperties; +}; + +/** + * Measures the supplied string of text and returns a Rectangle. + * + * @param {string} text - the text to measure. + * @param {PIXI.TextStyle} style - the text style to use for measuring + * @param {boolean} [wordWrap] - optional override for if word-wrap should be applied to the text. + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {PIXI.TextMetrics} measured width and height of the text. + */ +TextMetrics.measureText = function measureText (text, style, wordWrap, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + wordWrap = (wordWrap === undefined || wordWrap === null) ? style.wordWrap : wordWrap; + var font = style.toFontString(); + var fontProperties = TextMetrics.measureFont(font); + + // fallback in case UA disallow canvas data extraction + // (toDataURI, getImageData functions) + if (fontProperties.fontSize === 0) + { + fontProperties.fontSize = style.fontSize; + fontProperties.ascent = style.fontSize; + } + + var context = canvas.getContext('2d'); + + context.font = font; + + var outputText = wordWrap ? TextMetrics.wordWrap(text, style, canvas) : text; + var lines = outputText.split(/(?:\r\n|\r|\n)/); + var lineWidths = new Array(lines.length); + var maxLineWidth = 0; + + for (var i = 0; i < lines.length; i++) + { + var lineWidth = context.measureText(lines[i]).width + ((lines[i].length - 1) * style.letterSpacing); + + lineWidths[i] = lineWidth; + maxLineWidth = Math.max(maxLineWidth, lineWidth); + } + var width = maxLineWidth + style.strokeThickness; + + if (style.dropShadow) + { + width += style.dropShadowDistance; + } + + var lineHeight = style.lineHeight || fontProperties.fontSize + style.strokeThickness; + var height = Math.max(lineHeight, fontProperties.fontSize + style.strokeThickness) + + ((lines.length - 1) * (lineHeight + style.leading)); + + if (style.dropShadow) + { + height += style.dropShadowDistance; + } + + return new TextMetrics( + text, + style, + width, + height, + lines, + lineWidths, + lineHeight + style.leading, + maxLineWidth, + fontProperties + ); +}; + +/** + * Applies newlines to a string to have it optimally fit into the horizontal + * bounds set by the Text object's wordWrapWidth property. + * + * @private + * @param {string} text - String to apply word wrapping to + * @param {PIXI.TextStyle} style - the style to use when wrapping + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {string} New string with new lines applied where required + */ +TextMetrics.wordWrap = function wordWrap (text, style, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + var context = canvas.getContext('2d'); + + var width = 0; + var line = ''; + var lines = ''; + + var cache = {}; + var letterSpacing = style.letterSpacing; + var whiteSpace = style.whiteSpace; + + // How to handle whitespaces + var collapseSpaces = TextMetrics.collapseSpaces(whiteSpace); + var collapseNewlines = TextMetrics.collapseNewlines(whiteSpace); + + // whether or not spaces may be added to the beginning of lines + var canPrependSpaces = !collapseSpaces; + + // There is letterSpacing after every char except the last one + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_! + // so for convenience the above needs to be compared to width + 1 extra letterSpace + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!_ + // ________________________________________________ + // And then the final space is simply no appended to each line + var wordWrapWidth = style.wordWrapWidth + letterSpacing; + + // break text into words, spaces and newline chars + var tokens = TextMetrics.tokenize(text); + + for (var i = 0; i < tokens.length; i++) + { + // get the word, space or newlineChar + var token = tokens[i]; + + // if word is a new line + if (TextMetrics.isNewline(token)) + { + // keep the new line + if (!collapseNewlines) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = !collapseSpaces; + line = ''; + width = 0; + continue; + } + + // if we should collapse new lines + // we simply convert it into a space + token = ' '; + } + + // if we should collapse repeated whitespaces + if (collapseSpaces) + { + // check both this and the last tokens for spaces + var currIsBreakingSpace = TextMetrics.isBreakingSpace(token); + var lastIsBreakingSpace = TextMetrics.isBreakingSpace(line[line.length - 1]); + + if (currIsBreakingSpace && lastIsBreakingSpace) + { + continue; + } + } + + // get word width from cache if possible + var tokenWidth = TextMetrics.getFromCache(token, letterSpacing, cache, context); + + // word is longer than desired bounds + if (tokenWidth > wordWrapWidth) + { + // if we are not already at the beginning of a line + if (line !== '') + { + // start newlines for overflow words + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + // break large word over multiple lines + if (TextMetrics.canBreakWords(token, style.breakWords)) + { + // break word into characters + var characters = token.split(''); + + // loop the characters + for (var j = 0; j < characters.length; j++) + { + var char = characters[j]; + + var k = 1; + // we are not at the end of the token + + while (characters[j + k]) + { + var nextChar = characters[j + k]; + var lastChar = char[char.length - 1]; + + // should not split chars + if (!TextMetrics.canBreakChars(lastChar, nextChar, token, j, style.breakWords)) + { + // combine chars & move forward one + char += nextChar; + } + else + { + break; + } + + k++; + } + + j += char.length - 1; + + var characterWidth = TextMetrics.getFromCache(char, letterSpacing, cache, context); + + if (characterWidth + width > wordWrapWidth) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = false; + line = ''; + width = 0; + } + + line += char; + width += characterWidth; + } + } + + // run word out of the bounds + else + { + // if there are words in this line already + // finish that line and start a new one + if (line.length > 0) + { + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + var isLastToken = i === tokens.length - 1; + + // give it its own line if it's not the end + lines += TextMetrics.addLine(token, !isLastToken); + canPrependSpaces = false; + line = ''; + width = 0; + } + } + + // word could fit + else + { + // word won't fit because of existing words + // start a new line + if (tokenWidth + width > wordWrapWidth) + { + // if its a space we don't want it + canPrependSpaces = false; + + // add a new line + lines += TextMetrics.addLine(line); + + // start a new line + line = ''; + width = 0; + } + + // don't add spaces to the beginning of lines + if (line.length > 0 || !TextMetrics.isBreakingSpace(token) || canPrependSpaces) + { + // add the word to the current line + line += token; + + // update width counter + width += tokenWidth; + } + } + } + + lines += TextMetrics.addLine(line, false); + + return lines; +}; + +/** + * Convienience function for logging each line added during the wordWrap + * method + * + * @private + * @param {string} line - The line of text to add + * @param {boolean} newLine - Add new line character to end + * @return {string} A formatted line + */ +TextMetrics.addLine = function addLine (line, newLine) +{ + if ( newLine === void 0 ) newLine = true; + + line = TextMetrics.trimRight(line); + + line = (newLine) ? (line + "\n") : line; + + return line; +}; + +/** + * Gets & sets the widths of calculated characters in a cache object + * + * @private + * @param {string} key The key + * @param {number} letterSpacing The letter spacing + * @param {object} cache The cache + * @param {CanvasRenderingContext2D} context The canvas context + * @return {number} The from cache. + */ +TextMetrics.getFromCache = function getFromCache (key, letterSpacing, cache, context) +{ + var width = cache[key]; + + if (width === undefined) + { + var spacing = ((key.length) * letterSpacing); + + width = context.measureText(key).width + spacing; + cache[key] = width; + } + + return width; +}; + +/** + * Determines whether we should collapse breaking spaces + * + * @private + * @param {string} whiteSpace The TextStyle property whiteSpace + * @return {boolean} should collapse + */ +TextMetrics.collapseSpaces = function collapseSpaces (whiteSpace) +{ + return (whiteSpace === 'normal' || whiteSpace === 'pre-line'); +}; + +/** + * Determines whether we should collapse newLine chars + * + * @private + * @param {string} whiteSpace The white space + * @return {boolean} should collapse + */ +TextMetrics.collapseNewlines = function collapseNewlines (whiteSpace) +{ + return (whiteSpace === 'normal'); +}; + +/** + * trims breaking whitespaces from string + * + * @private + * @param {string} text The text + * @return {string} trimmed string + */ +TextMetrics.trimRight = function trimRight (text) +{ + if (typeof text !== 'string') + { + return ''; + } + + for (var i = text.length - 1; i >= 0; i--) + { + var char = text[i]; + + if (!TextMetrics.isBreakingSpace(char)) + { + break; + } + + text = text.slice(0, -1); + } + + return text; +}; + +/** + * Determines if char is a newline. + * + * @private + * @param {string} char The character + * @return {boolean} True if newline, False otherwise. + */ +TextMetrics.isNewline = function isNewline (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._newlines.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Determines if char is a breaking whitespace. + * + * @private + * @param {string} char The character + * @return {boolean} True if whitespace, False otherwise. + */ +TextMetrics.isBreakingSpace = function isBreakingSpace (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._breakingSpaces.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Splits a string into words, breaking-spaces and newLine characters + * + * @private + * @param {string} text The text + * @return {string[]} A tokenized array + */ +TextMetrics.tokenize = function tokenize (text) +{ + var tokens = []; + var token = ''; + + if (typeof text !== 'string') + { + return tokens; + } + + for (var i = 0; i < text.length; i++) + { + var char = text[i]; + + if (TextMetrics.isBreakingSpace(char) || TextMetrics.isNewline(char)) + { + if (token !== '') + { + tokens.push(token); + token = ''; + } + + tokens.push(char); + + continue; + } + + token += char; + } + + if (token !== '') + { + tokens.push(token); + } + + return tokens; +}; + +/** + * This method exists to be easily overridden + * It allows one to customise which words should break + * Examples are if the token is CJK or numbers. + * It must return a boolean. + * + * @private + * @param {string} token The token + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakWords = function canBreakWords (token, breakWords) +{ + return breakWords; +}; + +/** + * This method exists to be easily overridden + * It allows one to determine whether a pair of characters + * should be broken by newlines + * For example certain characters in CJK langs or numbers. + * It must return a boolean. + * + * @private + * @param {string} char The character + * @param {string} nextChar The next character + * @param {string} token The token/word the characters are from + * @param {number} index The index in the token of the char + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakChars = function canBreakChars (char, nextChar, token, index, breakWords) // eslint-disable-line no-unused-vars +{ + return true; +}; + +/** + * Calculates the ascent, descent and fontSize of a given font-style + * + * @static + * @param {string} font - String representing the style of the font + * @return {PIXI.IFontMetrics} Font properties object + */ +TextMetrics.measureFont = function measureFont (font) +{ + // as this method is used for preparing assets, don't recalculate things if we don't need to + if (TextMetrics._fonts[font]) + { + return TextMetrics._fonts[font]; + } + + var properties = {}; + + var canvas = TextMetrics._canvas; + var context = TextMetrics._context; + + context.font = font; + + var metricsString = TextMetrics.METRICS_STRING + TextMetrics.BASELINE_SYMBOL; + var width = Math.ceil(context.measureText(metricsString).width); + var baseline = Math.ceil(context.measureText(TextMetrics.BASELINE_SYMBOL).width); + var height = 2 * baseline; + + baseline = baseline * TextMetrics.BASELINE_MULTIPLIER | 0; + + canvas.width = width; + canvas.height = height; + + context.fillStyle = '#f00'; + context.fillRect(0, 0, width, height); + + context.font = font; + + context.textBaseline = 'alphabetic'; + context.fillStyle = '#000'; + context.fillText(metricsString, 0, baseline); + + var imagedata = context.getImageData(0, 0, width, height).data; + var pixels = imagedata.length; + var line = width * 4; + + var i = 0; + var idx = 0; + var stop = false; + + // ascent. scan from top to bottom until we find a non red pixel + for (i = 0; i < baseline; ++i) + { + for (var j = 0; j < line; j += 4) + { + if (imagedata[idx + j] !== 255) + { + stop = true; + break; + } + } + if (!stop) + { + idx += line; + } + else + { + break; + } + } + + properties.ascent = baseline - i; + + idx = pixels - line; + stop = false; + + // descent. scan from bottom to top until we find a non red pixel + for (i = height; i > baseline; --i) + { + for (var j$1 = 0; j$1 < line; j$1 += 4) + { + if (imagedata[idx + j$1] !== 255) + { + stop = true; + break; + } + } + + if (!stop) + { + idx -= line; + } + else + { + break; + } + } + + properties.descent = i - baseline; + properties.fontSize = properties.ascent + properties.descent; + + TextMetrics._fonts[font] = properties; + + return properties; +}; + +/** + * Clear font metrics in metrics cache. + * + * @static + * @param {string} [font] - font name. If font name not set then clear cache for all fonts. + */ +TextMetrics.clearMetrics = function clearMetrics (font) +{ + if ( font === void 0 ) font = ''; + + if (font) + { + delete TextMetrics._fonts[font]; + } + else + { + TextMetrics._fonts = {}; + } +}; + +/** + * Internal return object for {@link PIXI.TextMetrics.measureFont `TextMetrics.measureFont`}. + * + * @typedef {object} FontMetrics + * @property {number} ascent - The ascent distance + * @property {number} descent - The descent distance + * @property {number} fontSize - Font size from ascent to descent + * @memberof PIXI.TextMetrics + * @private + */ + +var canvas = (function () { + try + { + // OffscreenCanvas2D measureText can be up to 40% faster. + var c = new OffscreenCanvas(0, 0); + + return c.getContext('2d') ? c : document.createElement('canvas'); + } + catch (ex) + { + return document.createElement('canvas'); + } +})(); + +canvas.width = canvas.height = 10; + +/** + * Cached canvas element for measuring text + * + * @memberof PIXI.TextMetrics + * @type {HTMLCanvasElement} + * @private + */ +TextMetrics._canvas = canvas; + +/** + * Cache for context to use. + * + * @memberof PIXI.TextMetrics + * @type {CanvasRenderingContext2D} + * @private + */ +TextMetrics._context = canvas.getContext('2d'); + +/** + * Cache of {@see PIXI.TextMetrics.FontMetrics} objects. + * + * @memberof PIXI.TextMetrics + * @type {Object} + * @private + */ +TextMetrics._fonts = {}; + +/** + * String used for calculate font metrics. + * These characters are all tall to help calculate the height required for text. + * + * @static + * @memberof PIXI.TextMetrics + * @name METRICS_STRING + * @type {string} + * @default |ÉqÅ + */ +TextMetrics.METRICS_STRING = '|ÉqÅ'; + +/** + * Baseline symbol for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_SYMBOL + * @type {string} + * @default M + */ +TextMetrics.BASELINE_SYMBOL = 'M'; + +/** + * Baseline multiplier for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_MULTIPLIER + * @type {number} + * @default 1.4 + */ +TextMetrics.BASELINE_MULTIPLIER = 1.4; + +/** + * Cache of new line chars. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._newlines = [ + 0x000A, // line feed + 0x000D ]; + +/** + * Cache of breaking spaces. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._breakingSpaces = [ + 0x0009, // character tabulation + 0x0020, // space + 0x2000, // en quad + 0x2001, // em quad + 0x2002, // en space + 0x2003, // em space + 0x2004, // three-per-em space + 0x2005, // four-per-em space + 0x2006, // six-per-em space + 0x2008, // punctuation space + 0x2009, // thin space + 0x200A, // hair space + 0x205F, // medium mathematical space + 0x3000 ]; + +/** + * A number, or a string containing a number. + * + * @memberof PIXI + * @typedef IFontMetrics + * @property {number} ascent - Font ascent + * @property {number} descent - Font descent + * @property {number} fontSize - Font size + */ + +/* eslint max-depth: [2, 8] */ + +var defaultDestroyOptions = { + texture: true, + children: false, + baseTexture: true, +}; + +/** + * A Text Object will create a line or multiple lines of text. + * + * The text is created using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API). + * + * The primary advantage of this class over BitmapText is that you have great control over the style of the next, + * which you can change at runtime. + * + * The primary disadvantages is that each piece of text has it's own texture, which can use more memory. + * When text changes, this texture has to be re-generated and re-uploaded to the GPU, taking up time. + * + * To split a line you can use '\n' in your text string, or, on the `style` object, + * change its `wordWrap` property to true and and give the `wordWrapWidth` property a value. + * + * A Text can be created directly from a string and a style object, + * which can be generated [here](https://pixijs.io/pixi-text-style). + * + * ```js + * let text = new PIXI.Text('This is a PixiJS text',{fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}); + * ``` + * + * @class + * @extends PIXI.Sprite + * @memberof PIXI + */ +var Text = /*@__PURE__*/(function (Sprite) { + function Text(text, style, canvas) + { + canvas = canvas || document.createElement('canvas'); + + canvas.width = 3; + canvas.height = 3; + + var texture = Texture.from(canvas); + + texture.orig = new Rectangle(); + texture.trim = new Rectangle(); + + Sprite.call(this, texture); + + /** + * The canvas element that everything is drawn to + * + * @member {HTMLCanvasElement} + */ + this.canvas = canvas; + + /** + * The canvas 2d context that everything is drawn with + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + this._resolution = settings.RESOLUTION; + this._autoResolution = true; + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = null; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._style = null; + /** + * Private listener to track style changes. + * + * @member {Function} + * @private + */ + this._styleListener = null; + + /** + * Private tracker for the current font. + * + * @member {string} + * @private + */ + this._font = ''; + + this.text = text; + this.style = style; + + this.localStyleID = -1; + } + + if ( Sprite ) Text.__proto__ = Sprite; + Text.prototype = Object.create( Sprite && Sprite.prototype ); + Text.prototype.constructor = Text; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },style: { configurable: true },text: { configurable: true },resolution: { configurable: true } }; + + /** + * Renders text and updates it when needed. + * + * @private + * @param {boolean} respectDirty - Whether to abort updating the text if the Text isn't dirty and the function is called. + */ + Text.prototype.updateText = function updateText (respectDirty) + { + var style = this._style; + + // check if style has changed.. + if (this.localStyleID !== style.styleID) + { + this.dirty = true; + this.localStyleID = style.styleID; + } + + if (!this.dirty && respectDirty) + { + return; + } + + this._font = this._style.toFontString(); + + var context = this.context; + var measured = TextMetrics.measureText(this._text || ' ', this._style, this._style.wordWrap, this.canvas); + var width = measured.width; + var height = measured.height; + var lines = measured.lines; + var lineHeight = measured.lineHeight; + var lineWidths = measured.lineWidths; + var maxLineWidth = measured.maxLineWidth; + var fontProperties = measured.fontProperties; + + this.canvas.width = Math.ceil((Math.max(1, width) + (style.padding * 2)) * this._resolution); + this.canvas.height = Math.ceil((Math.max(1, height) + (style.padding * 2)) * this._resolution); + + context.scale(this._resolution, this._resolution); + + context.clearRect(0, 0, this.canvas.width, this.canvas.height); + + context.font = this._font; + context.lineWidth = style.strokeThickness; + context.textBaseline = style.textBaseline; + context.lineJoin = style.lineJoin; + context.miterLimit = style.miterLimit; + + var linePositionX; + var linePositionY; + + // require 2 passes if a shadow; the first to draw the drop shadow, the second to draw the text + var passesCount = style.dropShadow ? 2 : 1; + + // For v4, we drew text at the colours of the drop shadow underneath the normal text. This gave the correct zIndex, + // but features such as alpha and shadowblur did not look right at all, since we were using actual text as a shadow. + // + // For v5.0.0, we moved over to just use the canvas API for drop shadows, which made them look much nicer and more + // visually please, but now because the stroke is drawn and then the fill, drop shadows would appear on both the fill + // and the stroke; and fill drop shadows would appear over the top of the stroke. + // + // For v5.1.1, the new route is to revert to v4 style of drawing text first to get the drop shadows underneath normal + // text, but instead drawing text in the correct location, we'll draw it off screen (-paddingY), and then adjust the + // drop shadow so only that appears on screen (+paddingY). Now we'll have the correct draw order of the shadow + // beneath the text, whilst also having the proper text shadow styling. + for (var i = 0; i < passesCount; ++i) + { + var isShadowPass = style.dropShadow && i === 0; + var dsOffsetText = isShadowPass ? height * 2 : 0; // we only want the drop shadow, so put text way off-screen + var dsOffsetShadow = dsOffsetText * this.resolution; + + if (isShadowPass) + { + // On Safari, text with gradient and drop shadows together do not position correctly + // if the scale of the canvas is not 1: https://bugs.webkit.org/show_bug.cgi?id=197689 + // Therefore we'll set the styles to be a plain black whilst generating this drop shadow + context.fillStyle = 'black'; + context.strokeStyle = 'black'; + + var dropShadowColor = style.dropShadowColor; + var rgb = hex2rgb(typeof dropShadowColor === 'number' ? dropShadowColor : string2hex(dropShadowColor)); + + context.shadowColor = "rgba(" + (rgb[0] * 255) + "," + (rgb[1] * 255) + "," + (rgb[2] * 255) + "," + (style.dropShadowAlpha) + ")"; + context.shadowBlur = style.dropShadowBlur; + context.shadowOffsetX = Math.cos(style.dropShadowAngle) * style.dropShadowDistance; + context.shadowOffsetY = (Math.sin(style.dropShadowAngle) * style.dropShadowDistance) + dsOffsetShadow; + } + else + { + // set canvas text styles + context.fillStyle = this._generateFillStyle(style, lines); + context.strokeStyle = style.stroke; + + context.shadowColor = 0; + context.shadowBlur = 0; + context.shadowOffsetX = 0; + context.shadowOffsetY = 0; + } + + // draw lines line by line + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + linePositionX = style.strokeThickness / 2; + linePositionY = ((style.strokeThickness / 2) + (i$1 * lineHeight)) + fontProperties.ascent; + + if (style.align === 'right') + { + linePositionX += maxLineWidth - lineWidths[i$1]; + } + else if (style.align === 'center') + { + linePositionX += (maxLineWidth - lineWidths[i$1]) / 2; + } + + if (style.stroke && style.strokeThickness) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText, + true + ); + } + + if (style.fill) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText + ); + } + } + } + + this.updateTexture(); + }; + + /** + * Render the text with letter-spacing. + * @param {string} text - The text to draw + * @param {number} x - Horizontal position to draw the text + * @param {number} y - Vertical position to draw the text + * @param {boolean} [isStroke=false] - Is this drawing for the outside stroke of the + * text? If not, it's for the inside fill + * @private + */ + Text.prototype.drawLetterSpacing = function drawLetterSpacing (text, x, y, isStroke) + { + if ( isStroke === void 0 ) isStroke = false; + + var style = this._style; + + // letterSpacing of 0 means normal + var letterSpacing = style.letterSpacing; + + if (letterSpacing === 0) + { + if (isStroke) + { + this.context.strokeText(text, x, y); + } + else + { + this.context.fillText(text, x, y); + } + + return; + } + + var currentPosition = x; + + // Using Array.from correctly splits characters whilst keeping emoji together. + // This is not supported on IE as it requires ES6, so regular text splitting occurs. + // This also doesn't account for emoji that are multiple emoji put together to make something else. + // Handling all of this would require a big library itself. + // https://medium.com/@giltayar/iterating-over-emoji-characters-the-es6-way-f06e4589516 + // https://github.com/orling/grapheme-splitter + var stringArray = Array.from ? Array.from(text) : text.split(''); + var previousWidth = this.context.measureText(text).width; + var currentWidth = 0; + + for (var i = 0; i < stringArray.length; ++i) + { + var currentChar = stringArray[i]; + + if (isStroke) + { + this.context.strokeText(currentChar, currentPosition, y); + } + else + { + this.context.fillText(currentChar, currentPosition, y); + } + currentWidth = this.context.measureText(text.substring(i + 1)).width; + currentPosition += previousWidth - currentWidth + letterSpacing; + previousWidth = currentWidth; + } + }; + + /** + * Updates texture size based on canvas size + * + * @private + */ + Text.prototype.updateTexture = function updateTexture () + { + var canvas = this.canvas; + + if (this._style.trim) + { + var trimmed = trimCanvas(canvas); + + if (trimmed.data) + { + canvas.width = trimmed.width; + canvas.height = trimmed.height; + this.context.putImageData(trimmed.data, 0, 0); + } + } + + var texture = this._texture; + var style = this._style; + var padding = style.trim ? 0 : style.padding; + var baseTexture = texture.baseTexture; + + texture.trim.width = texture._frame.width = Math.ceil(canvas.width / this._resolution); + texture.trim.height = texture._frame.height = Math.ceil(canvas.height / this._resolution); + texture.trim.x = -padding; + texture.trim.y = -padding; + + texture.orig.width = texture._frame.width - (padding * 2); + texture.orig.height = texture._frame.height - (padding * 2); + + // call sprite onTextureUpdate to update scale if _width or _height were set + this._onTextureUpdate(); + + baseTexture.setRealSize(canvas.width, canvas.height, this._resolution); + + this.dirty = false; + }; + + /** + * Renders the object using the WebGL renderer + * + * @private + * @param {PIXI.Renderer} renderer - The renderer + */ + Text.prototype._render = function _render (renderer) + { + if (this._autoResolution && this._resolution !== renderer.resolution) + { + this._resolution = renderer.resolution; + this.dirty = true; + } + + this.updateText(true); + + Sprite.prototype._render.call(this, renderer); + }; + + /** + * Gets the local bounds of the text object. + * + * @param {PIXI.Rectangle} rect - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Text.prototype.getLocalBounds = function getLocalBounds (rect) + { + this.updateText(true); + + return Sprite.prototype.getLocalBounds.call(this, rect); + }; + + /** + * calculates the bounds of the Text as a rectangle. The bounds calculation takes the worldTransform into account. + * @protected + */ + Text.prototype._calculateBounds = function _calculateBounds () + { + this.updateText(true); + this.calculateVertices(); + // if we have already done this on THIS frame. + this._bounds.addQuad(this.vertexData); + }; + + /** + * Method to be called upon a TextStyle change. + * @private + */ + Text.prototype._onStyleChange = function _onStyleChange () + { + this.dirty = true; + }; + + /** + * Generates the fill style. Can automatically generate a gradient based on the fill style being an array + * + * @private + * @param {object} style - The style. + * @param {string[]} lines - The lines of text. + * @return {string|number|CanvasGradient} The fill style + */ + Text.prototype._generateFillStyle = function _generateFillStyle (style, lines) + { + if (!Array.isArray(style.fill)) + { + return style.fill; + } + else if (style.fill.length === 1) + { + return style.fill[0]; + } + + // the gradient will be evenly spaced out according to how large the array is. + // ['#FF0000', '#00FF00', '#0000FF'] would created stops at 0.25, 0.5 and 0.75 + var gradient; + var totalIterations; + var currentIteration; + var stop; + + var width = Math.ceil(this.canvas.width / this._resolution); + var height = Math.ceil(this.canvas.height / this._resolution); + + // make a copy of the style settings, so we can manipulate them later + var fill = style.fill.slice(); + var fillGradientStops = style.fillGradientStops.slice(); + + // wanting to evenly distribute the fills. So an array of 4 colours should give fills of 0.25, 0.5 and 0.75 + if (!fillGradientStops.length) + { + var lengthPlus1 = fill.length + 1; + + for (var i = 1; i < lengthPlus1; ++i) + { + fillGradientStops.push(i / lengthPlus1); + } + } + + // stop the bleeding of the last gradient on the line above to the top gradient of the this line + // by hard defining the first gradient colour at point 0, and last gradient colour at point 1 + fill.unshift(style.fill[0]); + fillGradientStops.unshift(0); + + fill.push(style.fill[style.fill.length - 1]); + fillGradientStops.push(1); + + if (style.fillGradientType === TEXT_GRADIENT.LINEAR_VERTICAL) + { + // start the gradient at the top center of the canvas, and end at the bottom middle of the canvas + gradient = this.context.createLinearGradient(width / 2, 0, width / 2, height); + + // we need to repeat the gradient so that each individual line of text has the same vertical gradient effect + // ['#FF0000', '#00FF00', '#0000FF'] over 2 lines would create stops at 0.125, 0.25, 0.375, 0.625, 0.75, 0.875 + totalIterations = (fill.length + 1) * lines.length; + currentIteration = 0; + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + currentIteration += 1; + for (var j = 0; j < fill.length; j++) + { + if (typeof fillGradientStops[j] === 'number') + { + stop = (fillGradientStops[j] / lines.length) + (i$1 / lines.length); + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[j]); + currentIteration++; + } + } + } + else + { + // start the gradient at the center left of the canvas, and end at the center right of the canvas + gradient = this.context.createLinearGradient(0, height / 2, width, height / 2); + + // can just evenly space out the gradients in this case, as multiple lines makes no difference + // to an even left to right gradient + totalIterations = fill.length + 1; + currentIteration = 1; + + for (var i$2 = 0; i$2 < fill.length; i$2++) + { + if (typeof fillGradientStops[i$2] === 'number') + { + stop = fillGradientStops[i$2]; + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[i$2]); + currentIteration++; + } + } + + return gradient; + }; + + /** + * Destroys this text object. + * Note* Unlike a Sprite, a Text object will automatically destroy its baseTexture and texture as + * the majority of the time the texture will not be shared with any other Sprites. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their + * destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=true] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=true] - Should it destroy the base texture of the sprite as well + */ + Text.prototype.destroy = function destroy (options) + { + if (typeof options === 'boolean') + { + options = { children: options }; + } + + options = Object.assign({}, defaultDestroyOptions, options); + + Sprite.prototype.destroy.call(this, options); + + // make sure to reset the the context and canvas.. dont want this hanging around in memory! + this.context = null; + this.canvas = null; + + this._style = null; + }; + + /** + * The width of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * Set the style of the text. Set up an event listener to listen for changes on the style + * object and mark the text as dirty. + * + * @member {object|PIXI.TextStyle} + */ + prototypeAccessors.style.get = function () + { + return this._style; + }; + + prototypeAccessors.style.set = function (style) // eslint-disable-line require-jsdoc + { + style = style || {}; + + if (style instanceof TextStyle) + { + this._style = style; + } + else + { + this._style = new TextStyle(style); + } + + this.localStyleID = -1; + this.dirty = true; + }; + + /** + * Set the copy for the text object. To split a line you can use '\n'. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + prototypeAccessors.resolution.get = function () + { + return this._resolution; + }; + + prototypeAccessors.resolution.set = function (value) // eslint-disable-line require-jsdoc + { + this._autoResolution = false; + + if (this._resolution === value) + { + return; + } + + this._resolution = value; + this.dirty = true; + }; + + Object.defineProperties( Text.prototype, prototypeAccessors ); + + return Text; +}(Sprite)); + +/*! + * @pixi/prepare - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/prepare is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default number of uploads per frame using prepare plugin. + * + * @static + * @memberof PIXI.settings + * @name UPLOADS_PER_FRAME + * @type {number} + * @default 4 + */ +settings.UPLOADS_PER_FRAME = 4; + +/** + * CountLimiter limits the number of items handled by a {@link PIXI.prepare.BasePrepare} to a specified + * number of items per frame. + * + * @class + * @memberof PIXI.prepare + */ +var CountLimiter = function CountLimiter(maxItemsPerFrame) +{ + /** + * The maximum number of items that can be prepared each frame. + * @type {number} + * @private + */ + this.maxItemsPerFrame = maxItemsPerFrame; + /** + * The number of items that can be prepared in the current frame. + * @type {number} + * @private + */ + this.itemsLeft = 0; +}; + +/** + * Resets any counting properties to start fresh on a new frame. + */ +CountLimiter.prototype.beginFrame = function beginFrame () +{ + this.itemsLeft = this.maxItemsPerFrame; +}; + +/** + * Checks to see if another item can be uploaded. This should only be called once per item. + * @return {boolean} If the item is allowed to be uploaded. + */ +CountLimiter.prototype.allowedToUpload = function allowedToUpload () +{ + return this.itemsLeft-- > 0; +}; + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * BasePrepare handles basic queuing functionality and is extended by + * {@link PIXI.prepare.Prepare} and {@link PIXI.prepare.CanvasPrepare} + * to provide preparation capabilities specific to their respective renderers. + * + * @example + * // Create a sprite + * const sprite = PIXI.Sprite.from('something.png'); + * + * // Load object into GPU + * app.renderer.plugins.prepare.upload(sprite, () => { + * + * //Texture(s) has been uploaded to GPU + * app.stage.addChild(sprite); + * + * }) + * + * @abstract + * @class + * @memberof PIXI.prepare + */ +var BasePrepare = function BasePrepare(renderer) +{ + var this$1 = this; + + /** + * The limiter to be used to control how quickly items are prepared. + * @type {PIXI.prepare.CountLimiter|PIXI.prepare.TimeLimiter} + */ + this.limiter = new CountLimiter(settings.UPLOADS_PER_FRAME); + + /** + * Reference to the renderer. + * @type {PIXI.AbstractRenderer} + * @protected + */ + this.renderer = renderer; + + /** + * The only real difference between CanvasPrepare and Prepare is what they pass + * to upload hooks. That different parameter is stored here. + * @type {PIXI.prepare.CanvasPrepare|PIXI.Renderer} + * @protected + */ + this.uploadHookHelper = null; + + /** + * Collection of items to uploads at once. + * @type {Array<*>} + * @private + */ + this.queue = []; + + /** + * Collection of additional hooks for finding assets. + * @type {Array} + * @private + */ + this.addHooks = []; + + /** + * Collection of additional hooks for processing assets. + * @type {Array} + * @private + */ + this.uploadHooks = []; + + /** + * Callback to call after completed. + * @type {Array} + * @private + */ + this.completes = []; + + /** + * If prepare is ticking (running). + * @type {boolean} + * @private + */ + this.ticking = false; + + /** + * 'bound' call for prepareItems(). + * @type {Function} + * @private + */ + this.delayedTick = function () { + // unlikely, but in case we were destroyed between tick() and delayedTick() + if (!this$1.queue) + { + return; + } + this$1.prepareItems(); + }; + + // hooks to find the correct texture + this.registerFindHook(findText); + this.registerFindHook(findTextStyle); + this.registerFindHook(findMultipleBaseTextures); + this.registerFindHook(findBaseTexture); + this.registerFindHook(findTexture); + + // upload hooks + this.registerUploadHook(drawText); + this.registerUploadHook(calculateTextStyle); +}; + +/** + * Upload all the textures and graphics to the GPU. + * + * @param {Function|PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text} item - + * Either the container or display object to search for items to upload, the items to upload themselves, + * or the callback function, if items have been added using `prepare.add`. + * @param {Function} [done] - Optional callback when all queued uploads have completed + */ +BasePrepare.prototype.upload = function upload (item, done) +{ + if (typeof item === 'function') + { + done = item; + item = null; + } + + // If a display object, search for items + // that we could upload + if (item) + { + this.add(item); + } + + // Get the items for upload from the display + if (this.queue.length) + { + if (done) + { + this.completes.push(done); + } + + if (!this.ticking) + { + this.ticking = true; + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } + } + else if (done) + { + done(); + } +}; + +/** + * Handle tick update + * + * @private + */ +BasePrepare.prototype.tick = function tick () +{ + setTimeout(this.delayedTick, 0); +}; + +/** + * Actually prepare items. This is handled outside of the tick because it will take a while + * and we do NOT want to block the current animation frame from rendering. + * + * @private + */ +BasePrepare.prototype.prepareItems = function prepareItems () +{ + this.limiter.beginFrame(); + // Upload the graphics + while (this.queue.length && this.limiter.allowedToUpload()) + { + var item = this.queue[0]; + var uploaded = false; + + if (item && !item._destroyed) + { + for (var i = 0, len = this.uploadHooks.length; i < len; i++) + { + if (this.uploadHooks[i](this.uploadHookHelper, item)) + { + this.queue.shift(); + uploaded = true; + break; + } + } + } + + if (!uploaded) + { + this.queue.shift(); + } + } + + // We're finished + if (!this.queue.length) + { + this.ticking = false; + + var completes = this.completes.slice(0); + + this.completes.length = 0; + + for (var i$1 = 0, len$1 = completes.length; i$1 < len$1; i$1++) + { + completes[i$1](); + } + } + else + { + // if we are not finished, on the next rAF do this again + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } +}; + +/** + * Adds hooks for finding items. + * + * @param {Function} addHook - Function call that takes two parameters: `item:*, queue:Array` + * function must return `true` if it was able to add item to the queue. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerFindHook = function registerFindHook (addHook) +{ + if (addHook) + { + this.addHooks.push(addHook); + } + + return this; +}; + +/** + * Adds hooks for uploading items. + * + * @param {Function} uploadHook - Function call that takes two parameters: `prepare:CanvasPrepare, item:*` and + * function must return `true` if it was able to handle upload of item. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerUploadHook = function registerUploadHook (uploadHook) +{ + if (uploadHook) + { + this.uploadHooks.push(uploadHook); + } + + return this; +}; + +/** + * Manually add an item to the uploading queue. + * + * @param {PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text|*} item - Object to + * add to the queue + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.add = function add (item) +{ + // Add additional hooks for finding elements on special + // types of objects that + for (var i = 0, len = this.addHooks.length; i < len; i++) + { + if (this.addHooks[i](item, this.queue)) + { + break; + } + } + + // Get children recursively + if (item instanceof Container) + { + for (var i$1 = item.children.length - 1; i$1 >= 0; i$1--) + { + this.add(item.children[i$1]); + } + } + + return this; +}; + +/** + * Destroys the plugin, don't use after this. + * + */ +BasePrepare.prototype.destroy = function destroy () +{ + if (this.ticking) + { + Ticker.system.remove(this.tick, this); + } + this.ticking = false; + this.addHooks = null; + this.uploadHooks = null; + this.renderer = null; + this.completes = null; + this.queue = null; + this.limiter = null; + this.uploadHookHelper = null; +}; + +/** + * Built-in hook to find multiple textures from objects like AnimatedSprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findMultipleBaseTextures(item, queue) +{ + var result = false; + + // Objects with multiple textures + if (item && item._textures && item._textures.length) + { + for (var i = 0; i < item._textures.length; i++) + { + if (item._textures[i] instanceof Texture) + { + var baseTexture = item._textures[i].baseTexture; + + if (queue.indexOf(baseTexture) === -1) + { + queue.push(baseTexture); + result = true; + } + } + } + } + + return result; +} + +/** + * Built-in hook to find BaseTextures from Sprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findBaseTexture(item, queue) +{ + // Objects with textures, like Sprites/Text + if (item instanceof BaseTexture) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find textures from objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findTexture(item, queue) +{ + if (item._texture && item._texture instanceof Texture) + { + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to draw PIXI.Text to its texture. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function drawText(helper, item) +{ + if (item instanceof Text) + { + // updating text will return early if it is not dirty + item.updateText(true); + + return true; + } + + return false; +} + +/** + * Built-in hook to calculate a text style for a PIXI.Text object. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function calculateTextStyle(helper, item) +{ + if (item instanceof TextStyle) + { + var font = item.toFontString(); + + TextMetrics.measureFont(font); + + return true; + } + + return false; +} + +/** + * Built-in hook to find Text objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Text object was found. + */ +function findText(item, queue) +{ + if (item instanceof Text) + { + // push the text style to prepare it - this can be really expensive + if (queue.indexOf(item.style) === -1) + { + queue.push(item.style); + } + // also push the text object so that we can render it (to canvas/texture) if needed + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + // also push the Text's texture for upload to GPU + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find TextStyle objects. + * + * @private + * @param {PIXI.TextStyle} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.TextStyle object was found. + */ +function findTextStyle(item, queue) +{ + if (item instanceof TextStyle) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.prepare` + * + * @class + * @extends PIXI.prepare.BasePrepare + * @memberof PIXI.prepare + */ +var Prepare = /*@__PURE__*/(function (BasePrepare) { + function Prepare(renderer) + { + BasePrepare.call(this, renderer); + + this.uploadHookHelper = this.renderer; + + // Add textures and graphics to upload + this.registerFindHook(findGraphics); + this.registerUploadHook(uploadBaseTextures); + this.registerUploadHook(uploadGraphics); + } + + if ( BasePrepare ) Prepare.__proto__ = BasePrepare; + Prepare.prototype = Object.create( BasePrepare && BasePrepare.prototype ); + Prepare.prototype.constructor = Prepare; + + return Prepare; +}(BasePrepare)); +/** + * Built-in hook to upload PIXI.Texture objects to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadBaseTextures(renderer, item) +{ + if (item instanceof BaseTexture) + { + // if the texture already has a GL texture, then the texture has been prepared or rendered + // before now. If the texture changed, then the changer should be calling texture.update() which + // reuploads the texture without need for preparing it again + if (!item._glTextures[renderer.CONTEXT_UID]) + { + renderer.texture.bind(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to upload PIXI.Graphics to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadGraphics(renderer, item) +{ + if (item instanceof Graphics) + { + // if the item is not dirty and already has webgl data, then it got prepared or rendered + // before now and we shouldn't waste time updating it again + if (item.dirty || item.clearDirty || !item._webGL[renderer.plugins.graphics.CONTEXT_UID]) + { + renderer.plugins.graphics.updateGraphics(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find graphics. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Graphics object was found. + */ +function findGraphics(item, queue) +{ + if (item instanceof Graphics) + { + queue.push(item); + + return true; + } + + return false; +} + +/*! + * @pixi/app - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/app is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Convenience class to create a new PIXI application. + * + * This class automatically creates the renderer, ticker and root container. + * + * @example + * // Create the application + * const app = new PIXI.Application(); + * + * // Add the view to the DOM + * document.body.appendChild(app.view); + * + * // ex, add display objects + * app.stage.addChild(PIXI.Sprite.from('something.png')); + * + * @class + * @memberof PIXI + */ +var Application = function Application(options) +{ + var this$1 = this; + + // The default options + options = Object.assign({ + forceCanvas: false, + }, options); + + /** + * WebGL renderer if available, otherwise CanvasRenderer. + * @member {PIXI.Renderer|PIXI.CanvasRenderer} + */ + this.renderer = autoDetectRenderer(options); + + /** + * The root display container that's rendered. + * @member {PIXI.Container} + */ + this.stage = new Container(); + + // install plugins here + Application._plugins.forEach(function (plugin) { + plugin.init.call(this$1, options); + }); +}; + +var prototypeAccessors$8 = { view: { configurable: true },screen: { configurable: true } }; + +/** + * Register a middleware plugin for the application + * @static + * @param {PIXI.Application.Plugin} plugin - Plugin being installed + */ +Application.registerPlugin = function registerPlugin (plugin) +{ + Application._plugins.push(plugin); +}; + +/** + * Render the current stage. + */ +Application.prototype.render = function render () +{ + this.renderer.render(this.stage); +}; + +/** + * Reference to the renderer's canvas element. + * @member {HTMLCanvasElement} + * @readonly + */ +prototypeAccessors$8.view.get = function () +{ + return this.renderer.view; +}; + +/** + * Reference to the renderer's screen rectangle. Its safe to use as `filterArea` or `hitArea` for the whole screen. + * @member {PIXI.Rectangle} + * @readonly + */ +prototypeAccessors$8.screen.get = function () +{ + return this.renderer.screen; +}; + +/** + * Destroy and don't use after this. + * @param {Boolean} [removeView=false] Automatically remove canvas from DOM. + * @param {object|boolean} [stageOptions] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [stageOptions.children=false] - if set to true, all the children will have their destroy + * method called as well. 'stageOptions' will be passed on to those calls. + * @param {boolean} [stageOptions.texture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the texture of the child sprite + * @param {boolean} [stageOptions.baseTexture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the base texture of the child sprite + */ +Application.prototype.destroy = function destroy (removeView, stageOptions) +{ + var this$1 = this; + + // Destroy plugins in the opposite order + // which they were constructed + var plugins = Application._plugins.slice(0); + + plugins.reverse(); + plugins.forEach(function (plugin) { + plugin.destroy.call(this$1); + }); + + this.stage.destroy(stageOptions); + this.stage = null; + + this.renderer.destroy(removeView); + this.renderer = null; + + this._options = null; +}; + +Object.defineProperties( Application.prototype, prototypeAccessors$8 ); + +/** + * @memberof PIXI.Application + * @typedef {object} Plugin + * @property {function} init - Called when Application is constructed, scoped to Application instance. + * Passes in `options` as the only argument, which are Application constructor options. + * @property {function} destroy - Called when destroying Application, scoped to Application instance + */ + +/** + * Collection of installed plugins. + * @static + * @private + * @type {PIXI.Application.Plugin[]} + */ +Application._plugins = []; + +/** + * Middleware for for Application's resize functionality + * @private + * @class + */ +var ResizePlugin = function ResizePlugin () {}; + +ResizePlugin.init = function init (options) +{ + var this$1 = this; + + /** + * The element or window to resize the application to. + * @type {Window|HTMLElement} + * @name resizeTo + * @memberof PIXI.Application# + */ + Object.defineProperty(this, 'resizeTo', + { + set: function set(dom) + { + window.removeEventListener('resize', this.resize); + this._resizeTo = dom; + if (dom) + { + window.addEventListener('resize', this.resize); + this.resize(); + } + }, + get: function get() + { + return this._resizeTo; + }, + }); + + /** + * If `resizeTo` is set, calling this function + * will resize to the width and height of that element. + * @method PIXI.Application#resize + */ + this.resize = function () { + if (this$1._resizeTo) + { + // Resize to the window + if (this$1._resizeTo === window) + { + this$1.renderer.resize( + window.innerWidth, + window.innerHeight + ); + } + // Resize to other HTML entities + else + { + this$1.renderer.resize( + this$1._resizeTo.clientWidth, + this$1._resizeTo.clientHeight + ); + } + } + }; + + // On resize + this._resizeTo = null; + this.resizeTo = options.resizeTo || null; +}; + +/** + * Clean up the ticker, scoped to application + * @static + * @private + */ +ResizePlugin.destroy = function destroy () +{ + this.resizeTo = null; + this.resize = null; +}; + +Application.registerPlugin(ResizePlugin); + +var parseUri = function parseURI (str, opts) { + opts = opts || {}; + + var o = { + key: ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'], + q: { + name: 'queryKey', + parser: /(?:^|&)([^&=]*)=?([^&]*)/g + }, + parser: { + strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/, + loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/ + } + }; + + var m = o.parser[opts.strictMode ? 'strict' : 'loose'].exec(str); + var uri = {}; + var i = 14; + + while (i--) uri[o.key[i]] = m[i] || ''; + + uri[o.q.name] = {}; + uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) { + if ($1) uri[o.q.name][$1] = $2; + }); + + return uri +}; + +var miniSignals = createCommonjsModule(function (module, exports) { + +Object.defineProperty(exports, '__esModule', { + value: true +}); + +var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + +var MiniSignalBinding = (function () { + function MiniSignalBinding(fn, once, thisArg) { + if (once === undefined) once = false; + + _classCallCheck(this, MiniSignalBinding); + + this._fn = fn; + this._once = once; + this._thisArg = thisArg; + this._next = this._prev = this._owner = null; + } + + _createClass(MiniSignalBinding, [{ + key: 'detach', + value: function detach() { + if (this._owner === null) return false; + this._owner.detach(this); + return true; + } + }]); + + return MiniSignalBinding; +})(); + +function _addMiniSignalBinding(self, node) { + if (!self._head) { + self._head = node; + self._tail = node; + } else { + self._tail._next = node; + node._prev = self._tail; + self._tail = node; + } + + node._owner = self; + + return node; +} + +var MiniSignal = (function () { + function MiniSignal() { + _classCallCheck(this, MiniSignal); + + this._head = this._tail = undefined; + } + + _createClass(MiniSignal, [{ + key: 'handlers', + value: function handlers() { + var exists = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0]; + + var node = this._head; + + if (exists) return !!node; + + var ee = []; + + while (node) { + ee.push(node); + node = node._next; + } + + return ee; + } + }, { + key: 'has', + value: function has(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#has(): First arg must be a MiniSignalBinding object.'); + } + + return node._owner === this; + } + }, { + key: 'dispatch', + value: function dispatch() { + var node = this._head; + + if (!node) return false; + + while (node) { + if (node._once) this.detach(node); + node._fn.apply(node._thisArg, arguments); + node = node._next; + } + + return true; + } + }, { + key: 'add', + value: function add(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#add(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, false, thisArg)); + } + }, { + key: 'once', + value: function once(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#once(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, true, thisArg)); + } + }, { + key: 'detach', + value: function detach(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#detach(): First arg must be a MiniSignalBinding object.'); + } + if (node._owner !== this) return this; + + if (node._prev) node._prev._next = node._next; + if (node._next) node._next._prev = node._prev; + + if (node === this._head) { + this._head = node._next; + if (node._next === null) { + this._tail = null; + } + } else if (node === this._tail) { + this._tail = node._prev; + this._tail._next = null; + } + + node._owner = null; + return this; + } + }, { + key: 'detachAll', + value: function detachAll() { + var node = this._head; + if (!node) return this; + + this._head = this._tail = null; + + while (node) { + node._owner = null; + node = node._next; + } + return this; + } + }]); + + return MiniSignal; +})(); + +MiniSignal.MiniSignalBinding = MiniSignalBinding; + +exports['default'] = MiniSignal; +module.exports = exports['default']; +}); + +var Signal = unwrapExports(miniSignals); + +/*! + * resource-loader - v3.0.1 + * https://github.com/pixijs/pixi-sound + * Compiled Tue, 02 Jul 2019 14:06:18 UTC + * + * resource-loader is licensed under the MIT license. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Smaller version of the async library constructs. + * + * @namespace async + */ + +/** + * Noop function + * + * @ignore + * @function + * @memberof async + */ +function _noop() {} +/* empty */ + +/** + * Iterates an array in series. + * + * @memberof async + * @function eachSeries + * @param {Array.<*>} array - Array to iterate. + * @param {function} iterator - Function to call for each element. + * @param {function} callback - Function to call when done, or on error. + * @param {boolean} [deferNext=false] - Break synchronous each loop by calling next with a setTimeout of 1. + */ + + +function eachSeries(array, iterator, callback, deferNext) { + var i = 0; + var len = array.length; + + (function next(err) { + if (err || i === len) { + if (callback) { + callback(err); + } + + return; + } + + if (deferNext) { + setTimeout(function () { + iterator(array[i++], next); + }, 1); + } else { + iterator(array[i++], next); + } + })(); +} +/** + * Ensures a function is only called once. + * + * @ignore + * @memberof async + * @param {function} fn - The function to wrap. + * @return {function} The wrapping function. + */ + +function onlyOnce(fn) { + return function onceWrapper() { + if (fn === null) { + throw new Error('Callback was already called.'); + } + + var callFn = fn; + fn = null; + callFn.apply(this, arguments); + }; +} +/** + * Async queue implementation, + * + * @memberof async + * @function queue + * @param {function} worker - The worker function to call for each task. + * @param {number} concurrency - How many workers to run in parrallel. + * @return {*} The async queue object. + */ + + +function queue(worker, concurrency) { + if (concurrency == null) { + // eslint-disable-line no-eq-null,eqeqeq + concurrency = 1; + } else if (concurrency === 0) { + throw new Error('Concurrency must not be zero'); + } + + var workers = 0; + var q = { + _tasks: [], + concurrency: concurrency, + saturated: _noop, + unsaturated: _noop, + buffer: concurrency / 4, + empty: _noop, + drain: _noop, + error: _noop, + started: false, + paused: false, + push: function push(data, callback) { + _insert(data, false, callback); + }, + kill: function kill() { + workers = 0; + q.drain = _noop; + q.started = false; + q._tasks = []; + }, + unshift: function unshift(data, callback) { + _insert(data, true, callback); + }, + process: function process() { + while (!q.paused && workers < q.concurrency && q._tasks.length) { + var task = q._tasks.shift(); + + if (q._tasks.length === 0) { + q.empty(); + } + + workers += 1; + + if (workers === q.concurrency) { + q.saturated(); + } + + worker(task.data, onlyOnce(_next(task))); + } + }, + length: function length() { + return q._tasks.length; + }, + running: function running() { + return workers; + }, + idle: function idle() { + return q._tasks.length + workers === 0; + }, + pause: function pause() { + if (q.paused === true) { + return; + } + + q.paused = true; + }, + resume: function resume() { + if (q.paused === false) { + return; + } + + q.paused = false; // Need to call q.process once per concurrent + // worker to preserve full concurrency after pause + + for (var w = 1; w <= q.concurrency; w++) { + q.process(); + } + } + }; + + function _insert(data, insertAtFront, callback) { + if (callback != null && typeof callback !== 'function') { + // eslint-disable-line no-eq-null,eqeqeq + throw new Error('task callback must be a function'); + } + + q.started = true; + + if (data == null && q.idle()) { + // eslint-disable-line no-eq-null,eqeqeq + // call drain immediately if there are no tasks + setTimeout(function () { + return q.drain(); + }, 1); + return; + } + + var item = { + data: data, + callback: typeof callback === 'function' ? callback : _noop + }; + + if (insertAtFront) { + q._tasks.unshift(item); + } else { + q._tasks.push(item); + } + + setTimeout(function () { + return q.process(); + }, 1); + } + + function _next(task) { + return function next() { + workers -= 1; + task.callback.apply(task, arguments); + + if (arguments[0] != null) { + // eslint-disable-line no-eq-null,eqeqeq + q.error(arguments[0], task.data); + } + + if (workers <= q.concurrency - q.buffer) { + q.unsaturated(); + } + + if (q.idle()) { + q.drain(); + } + + q.process(); + }; + } + + return q; +} + +// a simple in-memory cache for resources +var cache = {}; +/** + * A simple in-memory cache for resource. + * + * @memberof middleware + * @function caching + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.caching); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function caching(resource, next) { + var _this = this; + + // if cached, then set data and complete the resource + if (cache[resource.url]) { + resource.data = cache[resource.url]; + resource.complete(); // marks resource load complete and stops processing before middlewares + } // if not cached, wait for complete and store it in the cache. + else { + resource.onComplete.once(function () { + return cache[_this.url] = _this.data; + }); + } + + next(); +} + +function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } +} + +function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + return Constructor; +} + +var useXdr = !!(window.XDomainRequest && !('withCredentials' in new XMLHttpRequest())); +var tempAnchor$1 = null; // some status constants + +var STATUS_NONE = 0; +var STATUS_OK = 200; +var STATUS_EMPTY = 204; +var STATUS_IE_BUG_EMPTY = 1223; +var STATUS_TYPE_OK = 2; // noop + +function _noop$1() {} +/* empty */ + +/** + * Manages the state and loading of a resource and all child resources. + * + * @class + */ + + +var Resource$1 = +/*#__PURE__*/ +function () { + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.LOAD_TYPE} loadType - The load type to set it to. + */ + Resource.setExtensionLoadType = function setExtensionLoadType(extname, loadType) { + setExtMap(Resource._loadTypeMap, extname, loadType); + } + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.XHR_RESPONSE_TYPE} xhrType - The xhr type to set it to. + */ + ; + + Resource.setExtensionXhrType = function setExtensionXhrType(extname, xhrType) { + setExtMap(Resource._xhrTypeMap, extname, xhrType); + } + /** + * @param {string} name - The name of the resource to load. + * @param {string|string[]} url - The url for this resource, for audio/video loads you can pass + * an array of sources. + * @param {object} [options] - The options for the load. + * @param {string|boolean} [options.crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @param {number} [options.timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @param {Resource.LOAD_TYPE} [options.loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @param {Resource.XHR_RESPONSE_TYPE} [options.xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @param {Resource.IMetadata} [options.metadata] - Extra configuration for middleware and the Resource object. + */ + ; + + function Resource(name, url, options) { + if (typeof name !== 'string' || typeof url !== 'string') { + throw new Error('Both name and url are required for constructing a resource.'); + } + + options = options || {}; + /** + * The state flags of this resource. + * + * @private + * @member {number} + */ + + this._flags = 0; // set data url flag, needs to be set early for some _determineX checks to work. + + this._setFlag(Resource.STATUS_FLAGS.DATA_URL, url.indexOf('data:') === 0); + /** + * The name of this resource. + * + * @readonly + * @member {string} + */ + + + this.name = name; + /** + * The url used to load this resource. + * + * @readonly + * @member {string} + */ + + this.url = url; + /** + * The extension used to load this resource. + * + * @readonly + * @member {string} + */ + + this.extension = this._getExtension(); + /** + * The data that was loaded by the resource. + * + * @member {any} + */ + + this.data = null; + /** + * Is this request cross-origin? If unset, determined automatically. + * + * @member {string} + */ + + this.crossOrigin = options.crossOrigin === true ? 'anonymous' : options.crossOrigin; + /** + * A timeout in milliseconds for the load. If the load takes longer than this time + * it is cancelled and the load is considered a failure. If this value is set to `0` + * then there is no explicit timeout. + * + * @member {number} + */ + + this.timeout = options.timeout || 0; + /** + * The method of loading to use for this resource. + * + * @member {Resource.LOAD_TYPE} + */ + + this.loadType = options.loadType || this._determineLoadType(); + /** + * The type used to load the resource via XHR. If unset, determined automatically. + * + * @member {string} + */ + + this.xhrType = options.xhrType; + /** + * Extra info for middleware, and controlling specifics about how the resource loads. + * + * Note that if you pass in a `loadElement`, the Resource class takes ownership of it. + * Meaning it will modify it as it sees fit. + * + * @member {Resource.IMetadata} + */ + + this.metadata = options.metadata || {}; + /** + * The error that occurred while loading (if any). + * + * @readonly + * @member {Error} + */ + + this.error = null; + /** + * The XHR object that was used to load this resource. This is only set + * when `loadType` is `Resource.LOAD_TYPE.XHR`. + * + * @readonly + * @member {XMLHttpRequest} + */ + + this.xhr = null; + /** + * The child resources this resource owns. + * + * @readonly + * @member {Resource[]} + */ + + this.children = []; + /** + * The resource type. + * + * @readonly + * @member {Resource.TYPE} + */ + + this.type = Resource.TYPE.UNKNOWN; + /** + * The progress chunk owned by this resource. + * + * @readonly + * @member {number} + */ + + this.progressChunk = 0; + /** + * The `dequeue` method that will be used a storage place for the async queue dequeue method + * used privately by the loader. + * + * @private + * @member {function} + */ + + this._dequeue = _noop$1; + /** + * Used a storage place for the on load binding used privately by the loader. + * + * @private + * @member {function} + */ + + this._onLoadBinding = null; + /** + * The timer for element loads to check if they timeout. + * + * @private + * @member {number} + */ + + this._elementTimer = 0; + /** + * The `complete` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundComplete = this.complete.bind(this); + /** + * The `_onError` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnError = this._onError.bind(this); + /** + * The `_onProgress` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnProgress = this._onProgress.bind(this); + /** + * The `_onTimeout` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnTimeout = this._onTimeout.bind(this); // xhr callbacks + + this._boundXhrOnError = this._xhrOnError.bind(this); + this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this); + this._boundXhrOnAbort = this._xhrOnAbort.bind(this); + this._boundXhrOnLoad = this._xhrOnLoad.bind(this); + /** + * Dispatched when the resource beings to load. + * + * The callback looks like {@link Resource.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched each time progress of this resource load updates. + * Not all resources types and loader systems can support this event + * so sometimes it may not be available. If the resource + * is being loaded on a modern browser, using XHR, and the remote server + * properly sets Content-Length headers, then this will be available. + * + * The callback looks like {@link Resource.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once this resource has loaded, if there was an error it will + * be in the `error` property. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); + /** + * Dispatched after this resource has had all the *after* middleware run on it. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onAfterMiddleware = new Signal(); + } + /** + * When the resource starts to load. + * + * @memberof Resource + * @callback OnStartSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * When the resource reports loading progress. + * + * @memberof Resource + * @callback OnProgressSignal + * @param {Resource} resource - The resource that the event happened on. + * @param {number} percentage - The progress of the load in the range [0, 1]. + */ + + /** + * When the resource finishes loading. + * + * @memberof Resource + * @callback OnCompleteSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * @memberof Resource + * @typedef {object} IMetadata + * @property {HTMLImageElement|HTMLAudioElement|HTMLVideoElement} [loadElement=null] - The + * element to use for loading, instead of creating one. + * @property {boolean} [skipSource=false] - Skips adding source(s) to the load element. This + * is useful if you want to pass in a `loadElement` that you already added load sources to. + * @property {string|string[]} [mimeType] - The mime type to use for the source element + * of a video/audio elment. If the urls are an array, you can pass this as an array as well + * where each index is the mime type to use for the corresponding url index. + */ + + /** + * Stores whether or not this url is a data url. + * + * @readonly + * @member {boolean} + */ + + + var _proto = Resource.prototype; + + /** + * Marks the resource as complete. + * + */ + _proto.complete = function complete() { + this._clearEvents(); + + this._finish(); + } + /** + * Aborts the loading of this resource, with an optional message. + * + * @param {string} message - The message to use for the error + */ + ; + + _proto.abort = function abort(message) { + // abort can be called multiple times, ignore subsequent calls. + if (this.error) { + return; + } // store error + + + this.error = new Error(message); // clear events before calling aborts + + this._clearEvents(); // abort the actual loading + + + if (this.xhr) { + this.xhr.abort(); + } else if (this.xdr) { + this.xdr.abort(); + } else if (this.data) { + // single source + if (this.data.src) { + this.data.src = Resource.EMPTY_GIF; + } // multi-source + else { + while (this.data.firstChild) { + this.data.removeChild(this.data.firstChild); + } + } + } // done now. + + + this._finish(); + } + /** + * Kicks off loading of this resource. This method is asynchronous. + * + * @param {Resource.OnCompleteSignal} [cb] - Optional callback to call once the resource is loaded. + */ + ; + + _proto.load = function load(cb) { + var _this = this; + + if (this.isLoading) { + return; + } + + if (this.isComplete) { + if (cb) { + setTimeout(function () { + return cb(_this); + }, 1); + } + + return; + } else if (cb) { + this.onComplete.once(cb); + } + + this._setFlag(Resource.STATUS_FLAGS.LOADING, true); + + this.onStart.dispatch(this); // if unset, determine the value + + if (this.crossOrigin === false || typeof this.crossOrigin !== 'string') { + this.crossOrigin = this._determineCrossOrigin(this.url); + } + + switch (this.loadType) { + case Resource.LOAD_TYPE.IMAGE: + this.type = Resource.TYPE.IMAGE; + + this._loadElement('image'); + + break; + + case Resource.LOAD_TYPE.AUDIO: + this.type = Resource.TYPE.AUDIO; + + this._loadSourceElement('audio'); + + break; + + case Resource.LOAD_TYPE.VIDEO: + this.type = Resource.TYPE.VIDEO; + + this._loadSourceElement('video'); + + break; + + case Resource.LOAD_TYPE.XHR: + /* falls through */ + + default: + if (useXdr && this.crossOrigin) { + this._loadXdr(); + } else { + this._loadXhr(); + } + + break; + } + } + /** + * Checks if the flag is set. + * + * @private + * @param {number} flag - The flag to check. + * @return {boolean} True if the flag is set. + */ + ; + + _proto._hasFlag = function _hasFlag(flag) { + return (this._flags & flag) !== 0; + } + /** + * (Un)Sets the flag. + * + * @private + * @param {number} flag - The flag to (un)set. + * @param {boolean} value - Whether to set or (un)set the flag. + */ + ; + + _proto._setFlag = function _setFlag(flag, value) { + this._flags = value ? this._flags | flag : this._flags & ~flag; + } + /** + * Clears all the events from the underlying loading source. + * + * @private + */ + ; + + _proto._clearEvents = function _clearEvents() { + clearTimeout(this._elementTimer); + + if (this.data && this.data.removeEventListener) { + this.data.removeEventListener('error', this._boundOnError, false); + this.data.removeEventListener('load', this._boundComplete, false); + this.data.removeEventListener('progress', this._boundOnProgress, false); + this.data.removeEventListener('canplaythrough', this._boundComplete, false); + } + + if (this.xhr) { + if (this.xhr.removeEventListener) { + this.xhr.removeEventListener('error', this._boundXhrOnError, false); + this.xhr.removeEventListener('timeout', this._boundXhrOnTimeout, false); + this.xhr.removeEventListener('abort', this._boundXhrOnAbort, false); + this.xhr.removeEventListener('progress', this._boundOnProgress, false); + this.xhr.removeEventListener('load', this._boundXhrOnLoad, false); + } else { + this.xhr.onerror = null; + this.xhr.ontimeout = null; + this.xhr.onprogress = null; + this.xhr.onload = null; + } + } + } + /** + * Finalizes the load. + * + * @private + */ + ; + + _proto._finish = function _finish() { + if (this.isComplete) { + throw new Error('Complete called again for an already completed resource.'); + } + + this._setFlag(Resource.STATUS_FLAGS.COMPLETE, true); + + this._setFlag(Resource.STATUS_FLAGS.LOADING, false); + + this.onComplete.dispatch(this); + } + /** + * Loads this resources using an element that has a single source, + * like an HTMLImageElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadElement = function _loadElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'image' && typeof window.Image !== 'undefined') { + this.data = new Image(); + } else { + this.data = document.createElement(type); + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + this.data.src = this.url; + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an element that has multiple sources, + * like an HTMLAudioElement or HTMLVideoElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadSourceElement = function _loadSourceElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'audio' && typeof window.Audio !== 'undefined') { + this.data = new Audio(); + } else { + this.data = document.createElement(type); + } + + if (this.data === null) { + this.abort("Unsupported element: " + type); + return; + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + // support for CocoonJS Canvas+ runtime, lacks document.createElement('source') + if (navigator.isCocoonJS) { + this.data.src = Array.isArray(this.url) ? this.url[0] : this.url; + } else if (Array.isArray(this.url)) { + var mimeTypes = this.metadata.mimeType; + + for (var i = 0; i < this.url.length; ++i) { + this.data.appendChild(this._createSource(type, this.url[i], Array.isArray(mimeTypes) ? mimeTypes[i] : mimeTypes)); + } + } else { + var _mimeTypes = this.metadata.mimeType; + this.data.appendChild(this._createSource(type, this.url, Array.isArray(_mimeTypes) ? _mimeTypes[0] : _mimeTypes)); + } + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + this.data.addEventListener('canplaythrough', this._boundComplete, false); + this.data.load(); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an XMLHttpRequest. + * + * @private + */ + ; + + _proto._loadXhr = function _loadXhr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xhr = this.xhr = new XMLHttpRequest(); // set the request type and url + + xhr.open('GET', this.url, true); + xhr.timeout = this.timeout; // load json as text and parse it ourselves. We do this because some browsers + // *cough* safari *cough* can't deal with it. + + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON || this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + xhr.responseType = Resource.XHR_RESPONSE_TYPE.TEXT; + } else { + xhr.responseType = this.xhrType; + } + + xhr.addEventListener('error', this._boundXhrOnError, false); + xhr.addEventListener('timeout', this._boundXhrOnTimeout, false); + xhr.addEventListener('abort', this._boundXhrOnAbort, false); + xhr.addEventListener('progress', this._boundOnProgress, false); + xhr.addEventListener('load', this._boundXhrOnLoad, false); + xhr.send(); + } + /** + * Loads this resources using an XDomainRequest. This is here because we need to support IE9 (gross). + * + * @private + */ + ; + + _proto._loadXdr = function _loadXdr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xdr = this.xhr = new XDomainRequest(); // eslint-disable-line no-undef + // XDomainRequest has a few quirks. Occasionally it will abort requests + // A way to avoid this is to make sure ALL callbacks are set even if not used + // More info here: http://stackoverflow.com/questions/15786966/xdomainrequest-aborts-post-on-ie-9 + + xdr.timeout = this.timeout || 5000; // XDR needs a timeout value or it breaks in IE9 + + xdr.onerror = this._boundXhrOnError; + xdr.ontimeout = this._boundXhrOnTimeout; + xdr.onprogress = this._boundOnProgress; + xdr.onload = this._boundXhrOnLoad; + xdr.open('GET', this.url, true); // Note: The xdr.send() call is wrapped in a timeout to prevent an + // issue with the interface where some requests are lost if multiple + // XDomainRequests are being sent at the same time. + // Some info here: https://github.com/photonstorm/phaser/issues/1248 + + setTimeout(function () { + return xdr.send(); + }, 1); + } + /** + * Creates a source used in loading via an element. + * + * @private + * @param {string} type - The element type (video or audio). + * @param {string} url - The source URL to load from. + * @param {string} [mime] - The mime type of the video + * @return {HTMLSourceElement} The source element. + */ + ; + + _proto._createSource = function _createSource(type, url, mime) { + if (!mime) { + mime = type + "/" + this._getExtension(url); + } + + var source = document.createElement('source'); + source.src = url; + source.type = mime; + return source; + } + /** + * Called if a load errors out. + * + * @param {Event} event - The error event from the element that emits it. + * @private + */ + ; + + _proto._onError = function _onError(event) { + this.abort("Failed to load element using: " + event.target.nodeName); + } + /** + * Called if a load progress event fires for an element or xhr/xdr. + * + * @private + * @param {XMLHttpRequestProgressEvent|Event} event - Progress event. + */ + ; + + _proto._onProgress = function _onProgress(event) { + if (event && event.lengthComputable) { + this.onProgress.dispatch(this, event.loaded / event.total); + } + } + /** + * Called if a timeout event fires for an element. + * + * @private + */ + ; + + _proto._onTimeout = function _onTimeout() { + this.abort("Load timed out."); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnError = function _xhrOnError() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request failed. Status: " + xhr.status + ", text: \"" + xhr.statusText + "\""); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnTimeout = function _xhrOnTimeout() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request timed out."); + } + /** + * Called if an abort event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnAbort = function _xhrOnAbort() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request was aborted by the user."); + } + /** + * Called when data successfully loads from an xhr/xdr request. + * + * @private + * @param {XMLHttpRequestLoadEvent|Event} event - Load event + */ + ; + + _proto._xhrOnLoad = function _xhrOnLoad() { + var xhr = this.xhr; + var text = ''; + var status = typeof xhr.status === 'undefined' ? STATUS_OK : xhr.status; // XDR has no `.status`, assume 200. + // responseText is accessible only if responseType is '' or 'text' and on older browsers + + if (xhr.responseType === '' || xhr.responseType === 'text' || typeof xhr.responseType === 'undefined') { + text = xhr.responseText; + } // status can be 0 when using the `file://` protocol so we also check if a response is set. + // If it has a response, we assume 200; otherwise a 0 status code with no contents is an aborted request. + + + if (status === STATUS_NONE && (text.length > 0 || xhr.responseType === Resource.XHR_RESPONSE_TYPE.BUFFER)) { + status = STATUS_OK; + } // handle IE9 bug: http://stackoverflow.com/questions/10046972/msie-returns-status-code-of-1223-for-ajax-request + else if (status === STATUS_IE_BUG_EMPTY) { + status = STATUS_EMPTY; + } + + var statusType = status / 100 | 0; + + if (statusType === STATUS_TYPE_OK) { + // if text, just return it + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.TEXT) { + this.data = text; + this.type = Resource.TYPE.TEXT; + } // if json, parse into json object + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON) { + try { + this.data = JSON.parse(text); + this.type = Resource.TYPE.JSON; + } catch (e) { + this.abort("Error trying to parse loaded json: " + e); + return; + } + } // if xml, parse into an xml document or div element + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + try { + if (window.DOMParser) { + var domparser = new DOMParser(); + this.data = domparser.parseFromString(text, 'text/xml'); + } else { + var div = document.createElement('div'); + div.innerHTML = text; + this.data = div; + } + + this.type = Resource.TYPE.XML; + } catch (e) { + this.abort("Error trying to parse loaded xml: " + e); + return; + } + } // other types just return the response + else { + this.data = xhr.response || text; + } + } else { + this.abort("[" + xhr.status + "] " + xhr.statusText + ": " + xhr.responseURL); + return; + } + + this.complete(); + } + /** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * + * @private + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ + ; + + _proto._determineCrossOrigin = function _determineCrossOrigin(url, loc) { + // data: and javascript: urls are considered same-origin + if (url.indexOf('data:') === 0) { + return ''; + } // A sandboxed iframe without the 'allow-same-origin' attribute will have a special + // origin designed not to match window.location.origin, and will always require + // crossOrigin requests regardless of whether the location matches. + + + if (window.origin !== window.location.origin) { + return 'anonymous'; + } // default is window.location + + + loc = loc || window.location; + + if (!tempAnchor$1) { + tempAnchor$1 = document.createElement('a'); + } // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + + + tempAnchor$1.href = url; + url = parseUri(tempAnchor$1.href, { + strictMode: true + }); + var samePort = !url.port && loc.port === '' || url.port === loc.port; + var protocol = url.protocol ? url.protocol + ":" : ''; // if cross origin + + if (url.host !== loc.hostname || !samePort || protocol !== loc.protocol) { + return 'anonymous'; + } + + return ''; + } + /** + * Determines the responseType of an XHR request based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.XHR_RESPONSE_TYPE} The responseType to use. + */ + ; + + _proto._determineXhrType = function _determineXhrType() { + return Resource._xhrTypeMap[this.extension] || Resource.XHR_RESPONSE_TYPE.TEXT; + } + /** + * Determines the loadType of a resource based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.LOAD_TYPE} The loadType to use. + */ + ; + + _proto._determineLoadType = function _determineLoadType() { + return Resource._loadTypeMap[this.extension] || Resource.LOAD_TYPE.XHR; + } + /** + * Extracts the extension (sans '.') of the file being loaded by the resource. + * + * @private + * @return {string} The extension. + */ + ; + + _proto._getExtension = function _getExtension() { + var url = this.url; + var ext = ''; + + if (this.isDataUrl) { + var slashIndex = url.indexOf('/'); + ext = url.substring(slashIndex + 1, url.indexOf(';', slashIndex)); + } else { + var queryStart = url.indexOf('?'); + var hashStart = url.indexOf('#'); + var index = Math.min(queryStart > -1 ? queryStart : url.length, hashStart > -1 ? hashStart : url.length); + url = url.substring(0, index); + ext = url.substring(url.lastIndexOf('.') + 1); + } + + return ext.toLowerCase(); + } + /** + * Determines the mime type of an XHR request based on the responseType of + * resource being loaded. + * + * @private + * @param {Resource.XHR_RESPONSE_TYPE} type - The type to get a mime type for. + * @return {string} The mime type to use. + */ + ; + + _proto._getMimeFromXhrType = function _getMimeFromXhrType(type) { + switch (type) { + case Resource.XHR_RESPONSE_TYPE.BUFFER: + return 'application/octet-binary'; + + case Resource.XHR_RESPONSE_TYPE.BLOB: + return 'application/blob'; + + case Resource.XHR_RESPONSE_TYPE.DOCUMENT: + return 'application/xml'; + + case Resource.XHR_RESPONSE_TYPE.JSON: + return 'application/json'; + + case Resource.XHR_RESPONSE_TYPE.DEFAULT: + case Resource.XHR_RESPONSE_TYPE.TEXT: + /* falls through */ + + default: + return 'text/plain'; + } + }; + + _createClass(Resource, [{ + key: "isDataUrl", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.DATA_URL); + } + /** + * Describes if this resource has finished loading. Is true when the resource has completely + * loaded. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isComplete", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.COMPLETE); + } + /** + * Describes if this resource is currently loading. Is true when the resource starts loading, + * and is false again when complete. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isLoading", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.LOADING); + } + }]); + + return Resource; +}(); +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + + +Resource$1.STATUS_FLAGS = { + NONE: 0, + DATA_URL: 1 << 0, + COMPLETE: 1 << 1, + LOADING: 1 << 2 +}; +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.TYPE = { + UNKNOWN: 0, + JSON: 1, + XML: 2, + IMAGE: 3, + AUDIO: 4, + VIDEO: 5, + TEXT: 6 +}; +/** + * The types of loading a resource can use. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.LOAD_TYPE = { + /** Uses XMLHttpRequest to load the resource. */ + XHR: 1, + + /** Uses an `Image` object to load the resource. */ + IMAGE: 2, + + /** Uses an `Audio` object to load the resource. */ + AUDIO: 3, + + /** Uses a `Video` object to load the resource. */ + VIDEO: 4 +}; +/** + * The XHR ready states, used internally. + * + * @static + * @readonly + * @enum {string} + */ + +Resource$1.XHR_RESPONSE_TYPE = { + /** string */ + DEFAULT: 'text', + + /** ArrayBuffer */ + BUFFER: 'arraybuffer', + + /** Blob */ + BLOB: 'blob', + + /** Document */ + DOCUMENT: 'document', + + /** Object */ + JSON: 'json', + + /** String */ + TEXT: 'text' +}; +Resource$1._loadTypeMap = { + // images + gif: Resource$1.LOAD_TYPE.IMAGE, + png: Resource$1.LOAD_TYPE.IMAGE, + bmp: Resource$1.LOAD_TYPE.IMAGE, + jpg: Resource$1.LOAD_TYPE.IMAGE, + jpeg: Resource$1.LOAD_TYPE.IMAGE, + tif: Resource$1.LOAD_TYPE.IMAGE, + tiff: Resource$1.LOAD_TYPE.IMAGE, + webp: Resource$1.LOAD_TYPE.IMAGE, + tga: Resource$1.LOAD_TYPE.IMAGE, + svg: Resource$1.LOAD_TYPE.IMAGE, + 'svg+xml': Resource$1.LOAD_TYPE.IMAGE, + // for SVG data urls + // audio + mp3: Resource$1.LOAD_TYPE.AUDIO, + ogg: Resource$1.LOAD_TYPE.AUDIO, + wav: Resource$1.LOAD_TYPE.AUDIO, + // videos + mp4: Resource$1.LOAD_TYPE.VIDEO, + webm: Resource$1.LOAD_TYPE.VIDEO +}; +Resource$1._xhrTypeMap = { + // xml + xhtml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + html: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + htm: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + xml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + tmx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + svg: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // This was added to handle Tiled Tileset XML, but .tsx is also a TypeScript React Component. + // Since it is way less likely for people to be loading TypeScript files instead of Tiled files, + // this should probably be fine. + tsx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // images + gif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + png: Resource$1.XHR_RESPONSE_TYPE.BLOB, + bmp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpeg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tiff: Resource$1.XHR_RESPONSE_TYPE.BLOB, + webp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tga: Resource$1.XHR_RESPONSE_TYPE.BLOB, + // json + json: Resource$1.XHR_RESPONSE_TYPE.JSON, + // text + text: Resource$1.XHR_RESPONSE_TYPE.TEXT, + txt: Resource$1.XHR_RESPONSE_TYPE.TEXT, + // fonts + ttf: Resource$1.XHR_RESPONSE_TYPE.BUFFER, + otf: Resource$1.XHR_RESPONSE_TYPE.BUFFER +}; // We can't set the `src` attribute to empty string, so on abort we set it to this 1px transparent gif + +Resource$1.EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='; +/** + * Quick helper to set a value on one of the extension maps. Ensures there is no + * dot at the start of the extension. + * + * @ignore + * @param {object} map - The map to set on. + * @param {string} extname - The extension (or key) to set. + * @param {number} val - The value to set. + */ + +function setExtMap(map, extname, val) { + if (extname && extname.indexOf('.') === 0) { + extname = extname.substring(1); + } + + if (!extname) { + return; + } + + map[extname] = val; +} +/** + * Quick helper to get string xhr type. + * + * @ignore + * @param {XMLHttpRequest|XDomainRequest} xhr - The request to check. + * @return {string} The type. + */ + + +function reqType(xhr) { + return xhr.toString().replace('object ', ''); +} + +var _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; +/** + * Encodes binary into base64. + * + * @function encodeBinary + * @param {string} input The input data to encode. + * @returns {string} The encoded base64 string + */ + +function encodeBinary(input) { + var output = ''; + var inx = 0; + + while (inx < input.length) { + // Fill byte buffer array + var bytebuffer = [0, 0, 0]; + var encodedCharIndexes = [0, 0, 0, 0]; + + for (var jnx = 0; jnx < bytebuffer.length; ++jnx) { + if (inx < input.length) { + // throw away high-order byte, as documented at: + // https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data + bytebuffer[jnx] = input.charCodeAt(inx++) & 0xff; + } else { + bytebuffer[jnx] = 0; + } + } // Get each encoded character, 6 bits at a time + // index 1: first 6 bits + + + encodedCharIndexes[0] = bytebuffer[0] >> 2; // index 2: second 6 bits (2 least significant bits from input byte 1 + 4 most significant bits from byte 2) + + encodedCharIndexes[1] = (bytebuffer[0] & 0x3) << 4 | bytebuffer[1] >> 4; // index 3: third 6 bits (4 least significant bits from input byte 2 + 2 most significant bits from byte 3) + + encodedCharIndexes[2] = (bytebuffer[1] & 0x0f) << 2 | bytebuffer[2] >> 6; // index 3: forth 6 bits (6 least significant bits from input byte 3) + + encodedCharIndexes[3] = bytebuffer[2] & 0x3f; // Determine whether padding happened, and adjust accordingly + + var paddingBytes = inx - (input.length - 1); + + switch (paddingBytes) { + case 2: + // Set last 2 characters to padding char + encodedCharIndexes[3] = 64; + encodedCharIndexes[2] = 64; + break; + + case 1: + // Set last character to padding char + encodedCharIndexes[3] = 64; + break; + + default: + break; + // No padding - proceed + } // Now we will grab each appropriate character out of our keystring + // based on our index array and append it to the output string + + + for (var _jnx = 0; _jnx < encodedCharIndexes.length; ++_jnx) { + output += _keyStr.charAt(encodedCharIndexes[_jnx]); + } + } + + return output; +} + +var Url$1 = window.URL || window.webkitURL; +/** + * A middleware for transforming XHR loaded Blobs into more useful objects + * + * @memberof middleware + * @function parsing + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.parsing); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function parsing(resource, next) { + if (!resource.data) { + next(); + return; + } // if this was an XHR load of a blob + + + if (resource.xhr && resource.xhrType === Resource$1.XHR_RESPONSE_TYPE.BLOB) { + // if there is no blob support we probably got a binary string back + if (!window.Blob || typeof resource.data === 'string') { + var type = resource.xhr.getResponseHeader('content-type'); // this is an image, convert the binary string into a data url + + if (type && type.indexOf('image') === 0) { + resource.data = new Image(); + resource.data.src = "data:" + type + ";base64," + encodeBinary(resource.xhr.responseText); + resource.type = Resource$1.TYPE.IMAGE; // wait until the image loads and then callback + + resource.data.onload = function () { + resource.data.onload = null; + next(); + }; // next will be called on load + + + return; + } + } // if content type says this is an image, then we should transform the blob into an Image object + else if (resource.data.type.indexOf('image') === 0) { + var src = Url$1.createObjectURL(resource.data); + resource.blob = resource.data; + resource.data = new Image(); + resource.data.src = src; + resource.type = Resource$1.TYPE.IMAGE; // cleanup the no longer used blob after the image loads + // TODO: Is this correct? Will the image be invalid after revoking? + + resource.data.onload = function () { + Url$1.revokeObjectURL(src); + resource.data.onload = null; + next(); + }; // next will be called on load. + + + return; + } + } + + next(); +} + +/** + * @namespace middleware + */ + +var index = ({ + caching: caching, + parsing: parsing +}); + +var MAX_PROGRESS = 100; +var rgxExtractUrlHash = /(#[\w-]+)?$/; +/** + * Manages the state and loading of multiple resources to load. + * + * @class + */ + +var Loader = +/*#__PURE__*/ +function () { + /** + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ + function Loader(baseUrl, concurrency) { + var _this = this; + + if (baseUrl === void 0) { + baseUrl = ''; + } + + if (concurrency === void 0) { + concurrency = 10; + } + + /** + * The base url for all resources loaded by this loader. + * + * @member {string} + */ + this.baseUrl = baseUrl; + /** + * The progress percent of the loader going through the queue. + * + * @member {number} + * @default 0 + */ + + this.progress = 0; + /** + * Loading state of the loader, true if it is currently loading resources. + * + * @member {boolean} + * @default false + */ + + this.loading = false; + /** + * A querystring to append to every URL added to the loader. + * + * This should be a valid query string *without* the question-mark (`?`). The loader will + * also *not* escape values for you. Make sure to escape your parameters with + * [`encodeURIComponent`](https://mdn.io/encodeURIComponent) before assigning this property. + * + * @example + * const loader = new Loader(); + * + * loader.defaultQueryString = 'user=me&password=secret'; + * + * // This will request 'image.png?user=me&password=secret' + * loader.add('image.png').load(); + * + * loader.reset(); + * + * // This will request 'image.png?v=1&user=me&password=secret' + * loader.add('iamge.png?v=1').load(); + * + * @member {string} + * @default '' + */ + + this.defaultQueryString = ''; + /** + * The middleware to run before loading each resource. + * + * @private + * @member {function[]} + */ + + this._beforeMiddleware = []; + /** + * The middleware to run after loading each resource. + * + * @private + * @member {function[]} + */ + + this._afterMiddleware = []; + /** + * The tracks the resources we are currently completing parsing for. + * + * @private + * @member {Resource[]} + */ + + this._resourcesParsing = []; + /** + * The `_loadResource` function bound with this object context. + * + * @private + * @member {function} + * @param {Resource} r - The resource to load + * @param {Function} d - The dequeue function + * @return {undefined} + */ + + this._boundLoadResource = function (r, d) { + return _this._loadResource(r, d); + }; + /** + * The resources waiting to be loaded. + * + * @private + * @member {Resource[]} + */ + + + this._queue = queue(this._boundLoadResource, concurrency); + + this._queue.pause(); + /** + * All the resources for this loader keyed by name. + * + * @member {object} + */ + + + this.resources = {}; + /** + * Dispatched once per loaded or errored resource. + * + * The callback looks like {@link Loader.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once per errored resource. + * + * The callback looks like {@link Loader.OnErrorSignal}. + * + * @member {Signal} + */ + + this.onError = new Signal(); + /** + * Dispatched once per loaded resource. + * + * The callback looks like {@link Loader.OnLoadSignal}. + * + * @member {Signal} + */ + + this.onLoad = new Signal(); + /** + * Dispatched when the loader begins to process the queue. + * + * The callback looks like {@link Loader.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched when the queued resources all load. + * + * The callback looks like {@link Loader.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); // Add default before middleware + + for (var i = 0; i < Loader._defaultBeforeMiddleware.length; ++i) { + this.pre(Loader._defaultBeforeMiddleware[i]); + } // Add default after middleware + + + for (var _i = 0; _i < Loader._defaultAfterMiddleware.length; ++_i) { + this.use(Loader._defaultAfterMiddleware[_i]); + } + } + /** + * When the progress changes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnProgressSignal + * @param {Loader} loader - The loader the progress is advancing on. + * @param {Resource} resource - The resource that has completed or failed to cause the progress to advance. + */ + + /** + * When an error occurrs the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnErrorSignal + * @param {Loader} loader - The loader the error happened in. + * @param {Resource} resource - The resource that caused the error. + */ + + /** + * When a load completes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnLoadSignal + * @param {Loader} loader - The loader that laoded the resource. + * @param {Resource} resource - The resource that has completed loading. + */ + + /** + * When the loader starts loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnStartSignal + * @param {Loader} loader - The loader that has started loading resources. + */ + + /** + * When the loader completes loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnCompleteSignal + * @param {Loader} loader - The loader that has finished loading resources. + */ + + /** + * Options for a call to `.add()`. + * + * @see Loader#add + * + * @typedef {object} IAddOptions + * @property {string} [name] - The name of the resource to load, if not passed the url is used. + * @property {string} [key] - Alias for `name`. + * @property {string} [url] - The url for this resource, relative to the baseUrl of this loader. + * @property {string|boolean} [crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @property {number} [timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @property {Resource.LOAD_TYPE} [loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @property {Resource.XHR_RESPONSE_TYPE} [xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @property {Resource.OnCompleteSignal} [onComplete] - Callback to add an an onComplete signal istener. + * @property {Resource.OnCompleteSignal} [callback] - Alias for `onComplete`. + * @property {Resource.IMetadata} [metadata] - Extra configuration for middleware and the Resource object. + */ + + /* eslint-disable require-jsdoc,valid-jsdoc */ + + /** + * Adds a resource (or multiple resources) to the loader queue. + * + * This function can take a wide variety of different parameters. The only thing that is always + * required the url to load. All the following will work: + * + * ```js + * loader + * // normal param syntax + * .add('key', 'http://...', function () {}) + * .add('http://...', function () {}) + * .add('http://...') + * + * // object syntax + * .add({ + * name: 'key2', + * url: 'http://...' + * }, function () {}) + * .add({ + * url: 'http://...' + * }, function () {}) + * .add({ + * name: 'key3', + * url: 'http://...' + * onComplete: function () {} + * }) + * .add({ + * url: 'https://...', + * onComplete: function () {}, + * crossOrigin: true + * }) + * + * // you can also pass an array of objects or urls or both + * .add([ + * { name: 'key4', url: 'http://...', onComplete: function () {} }, + * { url: 'http://...', onComplete: function () {} }, + * 'http://...' + * ]) + * + * // and you can use both params and options + * .add('key', 'http://...', { crossOrigin: true }, function () {}) + * .add('http://...', { crossOrigin: true }, function () {}); + * ``` + * + * @function + * @variation 1 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 2 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 3 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 4 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 5 + * @param {IAddOptions} options - The options for the load. This object must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 6 + * @param {Array} resources - An array of resources to load, where each is + * either an object with the options or a string url. If you pass an object, it must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + + var _proto = Loader.prototype; + + _proto.add = function add(name, url, options, cb) { + // special case of an array of objects or urls + if (Array.isArray(name)) { + for (var i = 0; i < name.length; ++i) { + this.add(name[i]); + } + + return this; + } // if an object is passed instead of params + + + if (typeof name === 'object') { + cb = url || name.callback || name.onComplete; + options = name; + url = name.url; + name = name.name || name.key || name.url; + } // case where no name is passed shift all args over by one. + + + if (typeof url !== 'string') { + cb = options; + options = url; + url = name; + } // now that we shifted make sure we have a proper url. + + + if (typeof url !== 'string') { + throw new Error('No url passed to add resource to loader.'); + } // options are optional so people might pass a function and no options + + + if (typeof options === 'function') { + cb = options; + options = null; + } // if loading already you can only add resources that have a parent. + + + if (this.loading && (!options || !options.parentResource)) { + throw new Error('Cannot add resources while the loader is running.'); + } // check if resource already exists. + + + if (this.resources[name]) { + throw new Error("Resource named \"" + name + "\" already exists."); + } // add base url if this isn't an absolute url + + + url = this._prepareUrl(url); // create the store the resource + + this.resources[name] = new Resource$1(name, url, options); + + if (typeof cb === 'function') { + this.resources[name].onAfterMiddleware.once(cb); + } // if actively loading, make sure to adjust progress chunks for that parent and its children + + + if (this.loading) { + var parent = options.parentResource; + var incompleteChildren = []; + + for (var _i2 = 0; _i2 < parent.children.length; ++_i2) { + if (!parent.children[_i2].isComplete) { + incompleteChildren.push(parent.children[_i2]); + } + } + + var fullChunk = parent.progressChunk * (incompleteChildren.length + 1); // +1 for parent + + var eachChunk = fullChunk / (incompleteChildren.length + 2); // +2 for parent & new child + + parent.children.push(this.resources[name]); + parent.progressChunk = eachChunk; + + for (var _i3 = 0; _i3 < incompleteChildren.length; ++_i3) { + incompleteChildren[_i3].progressChunk = eachChunk; + } + + this.resources[name].progressChunk = eachChunk; + } // add the resource to the queue + + + this._queue.push(this.resources[name]); + + return this; + } + /* eslint-enable require-jsdoc,valid-jsdoc */ + + /** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.pre = function pre(fn) { + this._beforeMiddleware.push(fn); + + return this; + } + /** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.use = function use(fn) { + this._afterMiddleware.push(fn); + + return this; + } + /** + * Resets the queue of the loader to prepare for a new load. + * + * @return {this} Returns itself. + */ + ; + + _proto.reset = function reset() { + this.progress = 0; + this.loading = false; + + this._queue.kill(); + + this._queue.pause(); // abort all resource loads + + + for (var k in this.resources) { + var res = this.resources[k]; + + if (res._onLoadBinding) { + res._onLoadBinding.detach(); + } + + if (res.isLoading) { + res.abort(); + } + } + + this.resources = {}; + return this; + } + /** + * Starts loading the queued resources. + * + * @param {function} [cb] - Optional callback that will be bound to the `complete` event. + * @return {this} Returns itself. + */ + ; + + _proto.load = function load(cb) { + // register complete callback if they pass one + if (typeof cb === 'function') { + this.onComplete.once(cb); + } // if the queue has already started we are done here + + + if (this.loading) { + return this; + } + + if (this._queue.idle()) { + this._onStart(); + + this._onComplete(); + } else { + // distribute progress chunks + var numTasks = this._queue._tasks.length; + var chunk = MAX_PROGRESS / numTasks; + + for (var i = 0; i < this._queue._tasks.length; ++i) { + this._queue._tasks[i].data.progressChunk = chunk; + } // notify we are starting + + + this._onStart(); // start loading + + + this._queue.resume(); + } + + return this; + } + /** + * The number of resources to load concurrently. + * + * @member {number} + * @default 10 + */ + ; + + /** + * Prepares a url for usage based on the configuration of this object + * + * @private + * @param {string} url - The url to prepare. + * @return {string} The prepared url. + */ + _proto._prepareUrl = function _prepareUrl(url) { + var parsedUrl = parseUri(url, { + strictMode: true + }); + var result; // absolute url, just use it as is. + + if (parsedUrl.protocol || !parsedUrl.path || url.indexOf('//') === 0) { + result = url; + } // if baseUrl doesn't end in slash and url doesn't start with slash, then add a slash inbetween + else if (this.baseUrl.length && this.baseUrl.lastIndexOf('/') !== this.baseUrl.length - 1 && url.charAt(0) !== '/') { + result = this.baseUrl + "/" + url; + } else { + result = this.baseUrl + url; + } // if we need to add a default querystring, there is a bit more work + + + if (this.defaultQueryString) { + var hash = rgxExtractUrlHash.exec(result)[0]; + result = result.substr(0, result.length - hash.length); + + if (result.indexOf('?') !== -1) { + result += "&" + this.defaultQueryString; + } else { + result += "?" + this.defaultQueryString; + } + + result += hash; + } + + return result; + } + /** + * Loads a single resource. + * + * @private + * @param {Resource} resource - The resource to load. + * @param {function} dequeue - The function to call when we need to dequeue this item. + */ + ; + + _proto._loadResource = function _loadResource(resource, dequeue) { + var _this2 = this; + + resource._dequeue = dequeue; // run before middleware + + eachSeries(this._beforeMiddleware, function (fn, next) { + fn.call(_this2, resource, function () { + // if the before middleware marks the resource as complete, + // break and don't process any more before middleware + next(resource.isComplete ? {} : null); + }); + }, function () { + if (resource.isComplete) { + _this2._onLoad(resource); + } else { + resource._onLoadBinding = resource.onComplete.once(_this2._onLoad, _this2); + resource.load(); + } + }, true); + } + /** + * Called once loading has started. + * + * @private + */ + ; + + _proto._onStart = function _onStart() { + this.progress = 0; + this.loading = true; + this.onStart.dispatch(this); + } + /** + * Called once each resource has loaded. + * + * @private + */ + ; + + _proto._onComplete = function _onComplete() { + this.progress = MAX_PROGRESS; + this.loading = false; + this.onComplete.dispatch(this, this.resources); + } + /** + * Called each time a resources is loaded. + * + * @private + * @param {Resource} resource - The resource that was loaded + */ + ; + + _proto._onLoad = function _onLoad(resource) { + var _this3 = this; + + resource._onLoadBinding = null; // remove this resource from the async queue, and add it to our list of resources that are being parsed + + this._resourcesParsing.push(resource); + + resource._dequeue(); // run all the after middleware for this resource + + + eachSeries(this._afterMiddleware, function (fn, next) { + fn.call(_this3, resource, next); + }, function () { + resource.onAfterMiddleware.dispatch(resource); + _this3.progress = Math.min(MAX_PROGRESS, _this3.progress + resource.progressChunk); + + _this3.onProgress.dispatch(_this3, resource); + + if (resource.error) { + _this3.onError.dispatch(resource.error, _this3, resource); + } else { + _this3.onLoad.dispatch(_this3, resource); + } + + _this3._resourcesParsing.splice(_this3._resourcesParsing.indexOf(resource), 1); // do completion check + + + if (_this3._queue.idle() && _this3._resourcesParsing.length === 0) { + _this3._onComplete(); + } + }, true); + }; + + _createClass(Loader, [{ + key: "concurrency", + get: function get() { + return this._queue.concurrency; + } // eslint-disable-next-line require-jsdoc + , + set: function set(concurrency) { + this._queue.concurrency = concurrency; + } + }]); + + return Loader; +}(); +/** + * A default array of middleware to run before loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + + +Loader._defaultBeforeMiddleware = []; +/** + * A default array of middleware to run after loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + +Loader._defaultAfterMiddleware = []; +/** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + +Loader.pre = function LoaderPreStatic(fn) { + Loader._defaultBeforeMiddleware.push(fn); + + return Loader; +}; +/** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + + +Loader.use = function LoaderUseStatic(fn) { + Loader._defaultAfterMiddleware.push(fn); + + return Loader; +}; + +/*! + * @pixi/loaders - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/loaders is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Loader plugin for handling Texture resources. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var TextureLoader = function TextureLoader () {}; + +TextureLoader.use = function use (resource, next) +{ + // create a new texture if the data is an Image object + if (resource.data && resource.type === Resource$1.TYPE.IMAGE) + { + resource.texture = Texture.fromLoader( + resource.data, + resource.url, + resource.name + ); + } + next(); +}; + +/** + * The new loader, extends Resource Loader by Chad Engler: https://github.com/englercj/resource-loader + * + * ```js + * const loader = PIXI.Loader.shared; // PixiJS exposes a premade instance for you to use. + * //or + * const loader = new PIXI.Loader(); // you can also create your own if you want + * + * const sprites = {}; + * + * // Chainable `add` to enqueue a resource + * loader.add('bunny', 'data/bunny.png') + * .add('spaceship', 'assets/spritesheet.json'); + * loader.add('scoreFont', 'assets/score.fnt'); + * + * // Chainable `pre` to add a middleware that runs for each resource, *before* loading that resource. + * // This is useful to implement custom caching modules (using filesystem, indexeddb, memory, etc). + * loader.pre(cachingMiddleware); + * + * // Chainable `use` to add a middleware that runs for each resource, *after* loading that resource. + * // This is useful to implement custom parsing modules (like spritesheet parsers, spine parser, etc). + * loader.use(parsingMiddleware); + * + * // The `load` method loads the queue of resources, and calls the passed in callback called once all + * // resources have loaded. + * loader.load((loader, resources) => { + * // resources is an object where the key is the name of the resource loaded and the value is the resource object. + * // They have a couple default properties: + * // - `url`: The URL that the resource was loaded from + * // - `error`: The error that happened when trying to load (if any) + * // - `data`: The raw data that was loaded + * // also may contain other properties based on the middleware that runs. + * sprites.bunny = new PIXI.TilingSprite(resources.bunny.texture); + * sprites.spaceship = new PIXI.TilingSprite(resources.spaceship.texture); + * sprites.scoreFont = new PIXI.TilingSprite(resources.scoreFont.texture); + * }); + * + * // throughout the process multiple signals can be dispatched. + * loader.onProgress.add(() => {}); // called once per loaded/errored file + * loader.onError.add(() => {}); // called once per errored file + * loader.onLoad.add(() => {}); // called once per loaded file + * loader.onComplete.add(() => {}); // called once when the queued resources all load. + * ``` + * + * @see https://github.com/englercj/resource-loader + * + * @class Loader + * @memberof PIXI + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ +var Loader$1 = /*@__PURE__*/(function (ResourceLoader) { + function Loader(baseUrl, concurrency) + { + var this$1 = this; + + ResourceLoader.call(this, baseUrl, concurrency); + eventemitter3.call(this); + + for (var i = 0; i < Loader._plugins.length; ++i) + { + var plugin = Loader._plugins[i]; + var pre = plugin.pre; + var use = plugin.use; + + if (pre) + { + this.pre(pre); + } + + if (use) + { + this.use(use); + } + } + + // Compat layer, translate the new v2 signals into old v1 events. + this.onStart.add(function (l) { return this$1.emit('start', l); }); + this.onProgress.add(function (l, r) { return this$1.emit('progress', l, r); }); + this.onError.add(function (e, l, r) { return this$1.emit('error', e, l, r); }); + this.onLoad.add(function (l, r) { return this$1.emit('load', l, r); }); + this.onComplete.add(function (l, r) { return this$1.emit('complete', l, r); }); + + /** + * If this loader cannot be destroyed. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + } + + if ( ResourceLoader ) Loader.__proto__ = ResourceLoader; + Loader.prototype = Object.create( ResourceLoader && ResourceLoader.prototype ); + Loader.prototype.constructor = Loader; + + var staticAccessors = { shared: { configurable: true } }; + + /** + * Destroy the loader, removes references. + * @private + */ + Loader.prototype.destroy = function destroy () + { + if (!this._protected) + { + this.removeAllListeners(); + this.reset(); + } + }; + + /** + * A premade instance of the loader that can be used to load resources. + * @name shared + * @type {PIXI.Loader} + * @static + * @memberof PIXI.Loader + */ + staticAccessors.shared.get = function () + { + var shared = Loader._shared; + + if (!shared) + { + shared = new Loader(); + shared._protected = true; + Loader._shared = shared; + } + + return shared; + }; + + Object.defineProperties( Loader, staticAccessors ); + + return Loader; +}(Loader)); + +// Copy EE3 prototype (mixin) +Object.assign(Loader$1.prototype, eventemitter3.prototype); + +/** + * Collection of all installed `use` middleware for Loader. + * + * @static + * @member {Array} _plugins + * @memberof PIXI.Loader + * @private + */ +Loader$1._plugins = []; + +/** + * Adds a Loader plugin for the global shared loader and all + * new Loader instances created. + * + * @static + * @method registerPlugin + * @memberof PIXI.Loader + * @param {PIXI.ILoaderPlugin} plugin - The plugin to add + * @return {PIXI.Loader} Reference to PIXI.Loader for chaining + */ +Loader$1.registerPlugin = function registerPlugin(plugin) +{ + Loader$1._plugins.push(plugin); + + if (plugin.add) + { + plugin.add(); + } + + return Loader$1; +}; + +// parse any blob into more usable objects (e.g. Image) +Loader$1.registerPlugin({ use: index.parsing }); + +// parse any Image objects into textures +Loader$1.registerPlugin(TextureLoader); + +/** + * Plugin to be installed for handling specific Loader resources. + * + * @memberof PIXI + * @typedef ILoaderPlugin + * @property {function} [add] - Function to call immediate after registering plugin. + * @property {PIXI.Loader.loaderMiddleware} [pre] - Middleware function to run before load, the + * arguments for this are `(resource, next)` + * @property {PIXI.Loader.loaderMiddleware} [use] - Middleware function to run after load, the + * arguments for this are `(resource, next)` + */ + +/** + * @memberof PIXI.Loader + * @callback loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onStart + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onProgress + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onError + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onLoad + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onComplete + */ + +/** + * Application plugin for supporting loader option. Installing the LoaderPlugin + * is not necessary if using **pixi.js** or **pixi.js-legacy**. + * @example + * import {AppLoaderPlugin} from '@pixi/loaders'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(AppLoaderPlugin); + * @class + * @memberof PIXI + */ +var AppLoaderPlugin = function AppLoaderPlugin () {}; + +AppLoaderPlugin.init = function init (options) +{ + options = Object.assign({ + sharedLoader: false, + }, options); + + /** + * Loader instance to help with asset loading. + * @name PIXI.Application#loader + * @type {PIXI.Loader} + * @readonly + */ + this.loader = options.sharedLoader ? Loader$1.shared : new Loader$1(); +}; + +/** + * Called when application destroyed + * @private + */ +AppLoaderPlugin.destroy = function destroy () +{ + if (this.loader) + { + this.loader.destroy(); + this.loader = null; + } +}; + +/** + * Reference to **{@link https://github.com/englercj/resource-loader + * resource-loader}**'s Resource class. + * @see http://englercj.github.io/resource-loader/Resource.html + * @class LoaderResource + * @memberof PIXI + */ +var LoaderResource = Resource$1; + +/*! + * @pixi/particles - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/particles is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that + * they now share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleBuffer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleBuffer.java + */ + +/** + * The particle buffer manages the static and dynamic buffers for a particle container. + * + * @class + * @private + * @memberof PIXI + */ +var ParticleBuffer = function ParticleBuffer(properties, dynamicPropertyFlags, size) +{ + this.geometry = new Geometry(); + + this.indexBuffer = null; + + /** + * The number of particles the buffer can hold + * + * @private + * @member {number} + */ + this.size = size; + + /** + * A list of the properties that are dynamic. + * + * @private + * @member {object[]} + */ + this.dynamicProperties = []; + + /** + * A list of the properties that are static. + * + * @private + * @member {object[]} + */ + this.staticProperties = []; + + for (var i = 0; i < properties.length; ++i) + { + var property = properties[i]; + + // Make copy of properties object so that when we edit the offset it doesn't + // change all other instances of the object literal + property = { + attributeName: property.attributeName, + size: property.size, + uploadFunction: property.uploadFunction, + type: property.type || TYPES.FLOAT, + offset: property.offset, + }; + + if (dynamicPropertyFlags[i]) + { + this.dynamicProperties.push(property); + } + else + { + this.staticProperties.push(property); + } + } + + this.staticStride = 0; + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + + this.dynamicStride = 0; + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this._updateID = 0; + + this.initBuffers(); +}; + +/** + * Sets up the renderer context and necessary buffers. + * + * @private + */ +ParticleBuffer.prototype.initBuffers = function initBuffers () +{ + var geometry = this.geometry; + + var dynamicOffset = 0; + + /** + * Holds the indices of the geometry (quads) to draw + * + * @member {Uint16Array} + * @private + */ + this.indexBuffer = new Buffer$1(createIndicesForQuads(this.size), true, true); + geometry.addIndex(this.indexBuffer); + + this.dynamicStride = 0; + + for (var i = 0; i < this.dynamicProperties.length; ++i) + { + var property = this.dynamicProperties[i]; + + property.offset = dynamicOffset; + dynamicOffset += property.size; + this.dynamicStride += property.size; + } + + var dynBuffer = new ArrayBuffer(this.size * this.dynamicStride * 4 * 4); + + this.dynamicData = new Float32Array(dynBuffer); + this.dynamicDataUint32 = new Uint32Array(dynBuffer); + this.dynamicBuffer = new Buffer$1(this.dynamicData, false, false); + + // static // + var staticOffset = 0; + + this.staticStride = 0; + + for (var i$1 = 0; i$1 < this.staticProperties.length; ++i$1) + { + var property$1 = this.staticProperties[i$1]; + + property$1.offset = staticOffset; + staticOffset += property$1.size; + this.staticStride += property$1.size; + } + + var statBuffer = new ArrayBuffer(this.size * this.staticStride * 4 * 4); + + this.staticData = new Float32Array(statBuffer); + this.staticDataUint32 = new Uint32Array(statBuffer); + this.staticBuffer = new Buffer$1(this.staticData, true, false); + + for (var i$2 = 0; i$2 < this.dynamicProperties.length; ++i$2) + { + var property$2 = this.dynamicProperties[i$2]; + + geometry.addAttribute( + property$2.attributeName, + this.dynamicBuffer, + 0, + property$2.type === TYPES.UNSIGNED_BYTE, + property$2.type, + this.dynamicStride * 4, + property$2.offset * 4 + ); + } + + for (var i$3 = 0; i$3 < this.staticProperties.length; ++i$3) + { + var property$3 = this.staticProperties[i$3]; + + geometry.addAttribute( + property$3.attributeName, + this.staticBuffer, + 0, + property$3.type === TYPES.UNSIGNED_BYTE, + property$3.type, + this.staticStride * 4, + property$3.offset * 4 + ); + } +}; + +/** + * Uploads the dynamic properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadDynamic = function uploadDynamic (children, startIndex, amount) +{ + for (var i = 0; i < this.dynamicProperties.length; i++) + { + var property = this.dynamicProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.dynamicDataUint32 : this.dynamicData, + this.dynamicStride, property.offset); + } + + this.dynamicBuffer._updateID++; +}; + +/** + * Uploads the static properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadStatic = function uploadStatic (children, startIndex, amount) +{ + for (var i = 0; i < this.staticProperties.length; i++) + { + var property = this.staticProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.staticDataUint32 : this.staticData, + this.staticStride, property.offset); + } + + this.staticBuffer._updateID++; +}; + +/** + * Destroys the ParticleBuffer. + * + * @private + */ +ParticleBuffer.prototype.destroy = function destroy () +{ + this.indexBuffer = null; + + this.dynamicProperties = null; + // this.dynamicBuffer.destroy(); + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this.staticProperties = null; + // this.staticBuffer.destroy(); + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + // all buffers are destroyed inside geometry + this.geometry.destroy(); +}; + +var vertex$1 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\n\nattribute vec2 aPositionCoord;\nattribute float aRotation;\n\nuniform mat3 translationMatrix;\nuniform vec4 uColor;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nvoid main(void){\n float x = (aVertexPosition.x) * cos(aRotation) - (aVertexPosition.y) * sin(aRotation);\n float y = (aVertexPosition.x) * sin(aRotation) + (aVertexPosition.y) * cos(aRotation);\n\n vec2 v = vec2(x, y);\n v = v + aPositionCoord;\n\n gl_Position = vec4((translationMatrix * vec3(v, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vColor = aColor * uColor;\n}\n"; + +var fragment$1 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n vec4 color = texture2D(uSampler, vTextureCoord) * vColor;\n gl_FragColor = color;\n}"; + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that they now + * share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleRenderer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleRenderer.java + */ + +/** + * Renderer for Particles that is designer for speed over feature set. + * + * @class + * @memberof PIXI + */ +var ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function ParticleRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + // 65535 is max vertex index in the index buffer (see ParticleRenderer) + // so max number of particles is 65536 / 4 = 16384 + // and max number of element in the index buffer is 16384 * 6 = 98304 + // Creating a full index buffer, overhead is 98304 * 2 = 196Ko + // let numIndices = 98304; + + /** + * The default shader that is used if a sprite doesn't have a more specific one. + * + * @member {PIXI.Shader} + */ + this.shader = null; + + this.properties = null; + + this.tempMatrix = new Matrix(); + + this.properties = [ + // verticesData + { + attributeName: 'aVertexPosition', + size: 2, + uploadFunction: this.uploadVertices, + offset: 0, + }, + // positionData + { + attributeName: 'aPositionCoord', + size: 2, + uploadFunction: this.uploadPosition, + offset: 0, + }, + // rotationData + { + attributeName: 'aRotation', + size: 1, + uploadFunction: this.uploadRotation, + offset: 0, + }, + // uvsData + { + attributeName: 'aTextureCoord', + size: 2, + uploadFunction: this.uploadUvs, + offset: 0, + }, + // tintData + { + attributeName: 'aColor', + size: 1, + type: TYPES.UNSIGNED_BYTE, + uploadFunction: this.uploadTint, + offset: 0, + } ]; + + this.shader = Shader.from(vertex$1, fragment$1, {}); + } + + if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer; + ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + ParticleRenderer.prototype.constructor = ParticleRenderer; + + /** + * Renders the particle container object. + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + */ + ParticleRenderer.prototype.render = function render (container) + { + var children = container.children; + var maxSize = container._maxSize; + var batchSize = container._batchSize; + var renderer = this.renderer; + var totalChildren = children.length; + + if (totalChildren === 0) + { + return; + } + else if (totalChildren > maxSize && !container.autoResize) + { + totalChildren = maxSize; + } + + var buffers = container._buffers; + + if (!buffers) + { + buffers = container._buffers = this.generateBuffers(container); + } + + var baseTexture = children[0]._texture.baseTexture; + + // if the uvs have not updated then no point rendering just yet! + this.renderer.state.setBlendMode(correctBlendMode(container.blendMode, baseTexture.premultiplyAlpha)); + + var gl = renderer.gl; + + var m = container.worldTransform.copyTo(this.tempMatrix); + + m.prepend(renderer.globalUniforms.uniforms.projectionMatrix); + + this.shader.uniforms.translationMatrix = m.toArray(true); + + this.shader.uniforms.uColor = premultiplyRgba(container.tintRgb, + container.worldAlpha, this.shader.uniforms.uColor, baseTexture.premultiplyAlpha); + + this.shader.uniforms.uSampler = baseTexture; + + this.renderer.shader.bind(this.shader); + + var updateStatic = false; + + // now lets upload and render the buffers.. + for (var i = 0, j = 0; i < totalChildren; i += batchSize, j += 1) + { + var amount = (totalChildren - i); + + if (amount > batchSize) + { + amount = batchSize; + } + + if (j >= buffers.length) + { + buffers.push(this._generateOneMoreBuffer(container)); + } + + var buffer = buffers[j]; + + // we always upload the dynamic + buffer.uploadDynamic(children, i, amount); + + var bid = container._bufferUpdateIDs[j] || 0; + + updateStatic = updateStatic || (buffer._updateID < bid); + // we only upload the static content when we have to! + if (updateStatic) + { + buffer._updateID = container._updateID; + buffer.uploadStatic(children, i, amount); + } + + // bind the buffer + renderer.geometry.bind(buffer.geometry); + gl.drawElements(gl.TRIANGLES, amount * 6, gl.UNSIGNED_SHORT, 0); + } + }; + + /** + * Creates one particle buffer for each child in the container we want to render and updates internal properties + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer[]} The buffers + * @private + */ + ParticleRenderer.prototype.generateBuffers = function generateBuffers (container) + { + var buffers = []; + var size = container._maxSize; + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + for (var i = 0; i < size; i += batchSize) + { + buffers.push(new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize)); + } + + return buffers; + }; + + /** + * Creates one more particle buffer, because container has autoResize feature + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer} generated buffer + * @private + */ + ParticleRenderer.prototype._generateOneMoreBuffer = function _generateOneMoreBuffer (container) + { + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + return new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize); + }; + + /** + * Uploads the vertices. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their vertices uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadVertices = function uploadVertices (children, startIndex, amount, array, stride, offset) + { + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var texture = sprite._texture; + var sx = sprite.scale.x; + var sy = sprite.scale.y; + var trim = texture.trim; + var orig = texture.orig; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the + // extra space before transforming the sprite coords.. + w1 = trim.x - (sprite.anchor.x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (sprite.anchor.y * orig.height); + h0 = h1 + trim.height; + } + else + { + w0 = (orig.width) * (1 - sprite.anchor.x); + w1 = (orig.width) * -sprite.anchor.x; + + h0 = orig.height * (1 - sprite.anchor.y); + h1 = orig.height * -sprite.anchor.y; + } + + array[offset] = w1 * sx; + array[offset + 1] = h1 * sy; + + array[offset + stride] = w0 * sx; + array[offset + stride + 1] = h1 * sy; + + array[offset + (stride * 2)] = w0 * sx; + array[offset + (stride * 2) + 1] = h0 * sy; + + array[offset + (stride * 3)] = w1 * sx; + array[offset + (stride * 3) + 1] = h0 * sy; + + offset += stride * 4; + } + }; + + /** + * Uploads the position. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their positions uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadPosition = function uploadPosition (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spritePosition = children[startIndex + i].position; + + array[offset] = spritePosition.x; + array[offset + 1] = spritePosition.y; + + array[offset + stride] = spritePosition.x; + array[offset + stride + 1] = spritePosition.y; + + array[offset + (stride * 2)] = spritePosition.x; + array[offset + (stride * 2) + 1] = spritePosition.y; + + array[offset + (stride * 3)] = spritePosition.x; + array[offset + (stride * 3) + 1] = spritePosition.y; + + offset += stride * 4; + } + }; + + /** + * Uploads the rotiation. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadRotation = function uploadRotation (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spriteRotation = children[startIndex + i].rotation; + + array[offset] = spriteRotation; + array[offset + stride] = spriteRotation; + array[offset + (stride * 2)] = spriteRotation; + array[offset + (stride * 3)] = spriteRotation; + + offset += stride * 4; + } + }; + + /** + * Uploads the Uvs + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadUvs = function uploadUvs (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var textureUvs = children[startIndex + i]._texture._uvs; + + if (textureUvs) + { + array[offset] = textureUvs.x0; + array[offset + 1] = textureUvs.y0; + + array[offset + stride] = textureUvs.x1; + array[offset + stride + 1] = textureUvs.y1; + + array[offset + (stride * 2)] = textureUvs.x2; + array[offset + (stride * 2) + 1] = textureUvs.y2; + + array[offset + (stride * 3)] = textureUvs.x3; + array[offset + (stride * 3) + 1] = textureUvs.y3; + + offset += stride * 4; + } + else + { + // TODO you know this can be easier! + array[offset] = 0; + array[offset + 1] = 0; + + array[offset + stride] = 0; + array[offset + stride + 1] = 0; + + array[offset + (stride * 2)] = 0; + array[offset + (stride * 2) + 1] = 0; + + array[offset + (stride * 3)] = 0; + array[offset + (stride * 3) + 1] = 0; + + offset += stride * 4; + } + } + }; + + /** + * Uploads the tint. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadTint = function uploadTint (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var premultiplied = sprite._texture.baseTexture.premultiplyAlpha; + var alpha = sprite.alpha; + // we dont call extra function if alpha is 1.0, that's faster + var argb = alpha < 1.0 && premultiplied ? premultiplyTint(sprite._tintRGB, alpha) + : sprite._tintRGB + (alpha * 255 << 24); + + array[offset] = argb; + array[offset + stride] = argb; + array[offset + (stride * 2)] = argb; + array[offset + (stride * 3)] = argb; + + offset += stride * 4; + } + }; + + /** + * Destroys the ParticleRenderer. + */ + ParticleRenderer.prototype.destroy = function destroy () + { + ObjectRenderer.prototype.destroy.call(this); + + if (this.shader) + { + this.shader.destroy(); + this.shader = null; + } + + this.tempMatrix = null; + }; + + return ParticleRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/spritesheet - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/spritesheet is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Utility class for maintaining reference to a collection + * of Textures on a single Spritesheet. + * + * To access a sprite sheet from your code pass its JSON data file to Pixi's loader: + * + * ```js + * PIXI.Loader.shared.add("images/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["images/spritesheet.json"].spritesheet; + * ... + * } + * ``` + * With the `sheet.textures` you can create Sprite objects,`sheet.animations` can be used to create an AnimatedSprite. + * + * Sprite sheets can be packed using tools like {@link https://codeandweb.com/texturepacker|TexturePacker}, + * {@link https://renderhjs.net/shoebox/|Shoebox} or {@link https://github.com/krzysztof-o/spritesheet.js|Spritesheet.js}. + * Default anchor points (see {@link PIXI.Texture#defaultAnchor}) and grouping of animation sprites are currently only + * supported by TexturePacker. + * + * @class + * @memberof PIXI + */ +var Spritesheet = function Spritesheet(baseTexture, data, resolutionFilename) +{ + if ( resolutionFilename === void 0 ) resolutionFilename = null; + + /** + * Reference to ths source texture + * @type {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * A map containing all textures of the sprite sheet. + * Can be used to create a {@link PIXI.Sprite|Sprite}: + * ```js + * new PIXI.Sprite(sheet.textures["image.png"]); + * ``` + * @member {Object} + */ + this.textures = {}; + + /** + * A map containing the textures for each animation. + * Can be used to create an {@link PIXI.AnimatedSprite|AnimatedSprite}: + * ```js + * new PIXI.AnimatedSprite(sheet.animations["anim_name"]) + * ``` + * @member {Object} + */ + this.animations = {}; + + /** + * Reference to the original JSON data. + * @type {Object} + */ + this.data = data; + + /** + * The resolution of the spritesheet. + * @type {number} + */ + this.resolution = this._updateResolution( + resolutionFilename + || (this.baseTexture.resource ? this.baseTexture.resource.url : null) + ); + + /** + * Map of spritesheet frames. + * @type {Object} + * @private + */ + this._frames = this.data.frames; + + /** + * Collection of frame names. + * @type {string[]} + * @private + */ + this._frameKeys = Object.keys(this._frames); + + /** + * Current batch index being processed. + * @type {number} + * @private + */ + this._batchIndex = 0; + + /** + * Callback when parse is completed. + * @type {Function} + * @private + */ + this._callback = null; +}; + +var staticAccessors$4 = { BATCH_SIZE: { configurable: true } }; + +/** + * Generate the resolution from the filename or fallback + * to the meta.scale field of the JSON data. + * + * @private + * @param {string} resolutionFilename - The filename to use for resolving + * the default resolution. + * @return {number} Resolution to use for spritesheet. + */ +staticAccessors$4.BATCH_SIZE.get = function () +{ + return 1000; +}; + +Spritesheet.prototype._updateResolution = function _updateResolution (resolutionFilename) +{ + var scale = this.data.meta.scale; + + // Use a defaultValue of `null` to check if a url-based resolution is set + var resolution = getResolutionOfUrl(resolutionFilename, null); + + // No resolution found via URL + if (resolution === null) + { + // Use the scale value or default to 1 + resolution = scale !== undefined ? parseFloat(scale) : 1; + } + + // For non-1 resolutions, update baseTexture + if (resolution !== 1) + { + this.baseTexture.setResolution(resolution); + } + + return resolution; +}; + +/** + * Parser spritesheet from loaded data. This is done asynchronously + * to prevent creating too many Texture within a single process. + * + * @param {Function} callback - Callback when complete returns + * a map of the Textures for this spritesheet. + */ +Spritesheet.prototype.parse = function parse (callback) +{ + this._batchIndex = 0; + this._callback = callback; + + if (this._frameKeys.length <= Spritesheet.BATCH_SIZE) + { + this._processFrames(0); + this._processAnimations(); + this._parseComplete(); + } + else + { + this._nextBatch(); + } +}; + +/** + * Process a batch of frames + * + * @private + * @param {number} initialFrameIndex - The index of frame to start. + */ +Spritesheet.prototype._processFrames = function _processFrames (initialFrameIndex) +{ + var frameIndex = initialFrameIndex; + var maxFrames = Spritesheet.BATCH_SIZE; + + while (frameIndex - initialFrameIndex < maxFrames && frameIndex < this._frameKeys.length) + { + var i = this._frameKeys[frameIndex]; + var data = this._frames[i]; + var rect = data.frame; + + if (rect) + { + var frame = null; + var trim = null; + var sourceSize = data.trimmed !== false && data.sourceSize + ? data.sourceSize : data.frame; + + var orig = new Rectangle( + 0, + 0, + Math.floor(sourceSize.w) / this.resolution, + Math.floor(sourceSize.h) / this.resolution + ); + + if (data.rotated) + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.h) / this.resolution, + Math.floor(rect.w) / this.resolution + ); + } + else + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + // Check to see if the sprite is trimmed + if (data.trimmed !== false && data.spriteSourceSize) + { + trim = new Rectangle( + Math.floor(data.spriteSourceSize.x) / this.resolution, + Math.floor(data.spriteSourceSize.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + this.textures[i] = new Texture( + this.baseTexture, + frame, + orig, + trim, + data.rotated ? 2 : 0, + data.anchor + ); + + // lets also add the frame to pixi's global cache for 'from' and 'fromLoader' functions + Texture.addToCache(this.textures[i], i); + } + + frameIndex++; + } +}; + +/** + * Parse animations config + * + * @private + */ +Spritesheet.prototype._processAnimations = function _processAnimations () +{ + var animations = this.data.animations || {}; + + for (var animName in animations) + { + this.animations[animName] = []; + for (var i = 0; i < animations[animName].length; i++) + { + var frameName = animations[animName][i]; + + this.animations[animName].push(this.textures[frameName]); + } + } +}; + +/** + * The parse has completed. + * + * @private + */ +Spritesheet.prototype._parseComplete = function _parseComplete () +{ + var callback = this._callback; + + this._callback = null; + this._batchIndex = 0; + callback.call(this, this.textures); +}; + +/** + * Begin the next batch of textures. + * + * @private + */ +Spritesheet.prototype._nextBatch = function _nextBatch () +{ + var this$1 = this; + + this._processFrames(this._batchIndex * Spritesheet.BATCH_SIZE); + this._batchIndex++; + setTimeout(function () { + if (this$1._batchIndex * Spritesheet.BATCH_SIZE < this$1._frameKeys.length) + { + this$1._nextBatch(); + } + else + { + this$1._processAnimations(); + this$1._parseComplete(); + } + }, 0); +}; + +/** + * Destroy Spritesheet and don't use after this. + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ +Spritesheet.prototype.destroy = function destroy (destroyBase) +{ + if ( destroyBase === void 0 ) destroyBase = false; + + for (var i in this.textures) + { + this.textures[i].destroy(); + } + this._frames = null; + this._frameKeys = null; + this.data = null; + this.textures = null; + if (destroyBase) + { + this.baseTexture.destroy(); + } + this.baseTexture = null; +}; + +Object.defineProperties( Spritesheet, staticAccessors$4 ); + +/** + * {@link PIXI.Loader Loader} middleware for loading texture atlases that have been created with + * TexturePacker or similar JSON-based spritesheet. + * + * This middleware automatically generates Texture resources. + * + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var SpritesheetLoader = function SpritesheetLoader () {}; + +SpritesheetLoader.use = function use (resource, next) +{ + var imageResourceName = (resource.name) + "_image"; + + // skip if no data, its not json, it isn't spritesheet data, or the image resource already exists + if (!resource.data + || resource.type !== LoaderResource.TYPE.JSON + || !resource.data.frames + || this.resources[imageResourceName] + ) + { + next(); + + return; + } + + var loadOptions = { + crossOrigin: resource.crossOrigin, + metadata: resource.metadata.imageMetadata, + parentResource: resource, + }; + + var resourcePath = SpritesheetLoader.getResourcePath(resource, this.baseUrl); + + // load the image for this sheet + this.add(imageResourceName, resourcePath, loadOptions, function onImageLoad(res) + { + if (res.error) + { + next(res.error); + + return; + } + + var spritesheet = new Spritesheet( + res.texture.baseTexture, + resource.data, + resource.url + ); + + spritesheet.parse(function () { + resource.spritesheet = spritesheet; + resource.textures = spritesheet.textures; + next(); + }); + }); +}; + +/** + * Get the spritesheets root path + * @param {PIXI.LoaderResource} resource - Resource to check path + * @param {string} baseUrl - Base root url + */ +SpritesheetLoader.getResourcePath = function getResourcePath (resource, baseUrl) +{ + // Prepend url path unless the resource image is a data url + if (resource.isDataUrl) + { + return resource.data.meta.image; + } + + return url.resolve(resource.url.replace(baseUrl, ''), resource.data.meta.image); +}; + +/*! + * @pixi/sprite-tiling - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite-tiling is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$1 = new Point(); + +var vertex$2 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform mat3 uTransform;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = (uTransform * vec3(aTextureCoord, 1.0)).xy;\n}\n"; + +var fragment$2 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\nuniform mat3 uMapCoord;\nuniform vec4 uClampFrame;\nuniform vec2 uClampOffset;\n\nvoid main(void)\n{\n vec2 coord = mod(vTextureCoord - uClampOffset, vec2(1.0, 1.0)) + uClampOffset;\n coord = (uMapCoord * vec3(coord, 1.0)).xy;\n coord = clamp(coord, uClampFrame.xy, uClampFrame.zw);\n\n vec4 sample = texture2D(uSampler, coord);\n gl_FragColor = sample * uColor;\n}\n"; + +var fragmentSimple = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\n\nvoid main(void)\n{\n vec4 sample = texture2D(uSampler, vTextureCoord);\n gl_FragColor = sample * uColor;\n}\n"; + +var tempMat$1 = new Matrix(); + +/** + * WebGL renderer plugin for tiling sprites + * + * @class + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function TilingSpriteRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + var uniforms = { globals: this.renderer.globalUniforms }; + + this.shader = Shader.from(vertex$2, fragment$2, uniforms); + + this.simpleShader = Shader.from(vertex$2, fragmentSimple, uniforms); + + this.quad = new QuadUv(); + } + + if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer; + TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer; + + /** + * + * @param {PIXI.TilingSprite} ts tilingSprite to be rendered + */ + TilingSpriteRenderer.prototype.render = function render (ts) + { + var renderer = this.renderer; + var quad = this.quad; + + var vertices = quad.vertices; + + vertices[0] = vertices[6] = (ts._width) * -ts.anchor.x; + vertices[1] = vertices[3] = ts._height * -ts.anchor.y; + + vertices[2] = vertices[4] = (ts._width) * (1.0 - ts.anchor.x); + vertices[5] = vertices[7] = ts._height * (1.0 - ts.anchor.y); + + if (ts.uvRespectAnchor) + { + vertices = quad.uvs; + + vertices[0] = vertices[6] = -ts.anchor.x; + vertices[1] = vertices[3] = -ts.anchor.y; + + vertices[2] = vertices[4] = 1.0 - ts.anchor.x; + vertices[5] = vertices[7] = 1.0 - ts.anchor.y; + } + + quad.invalidate(); + + var tex = ts._texture; + var baseTex = tex.baseTexture; + var lt = ts.tileTransform.localTransform; + var uv = ts.uvMatrix; + var isSimple = baseTex.isPowerOfTwo + && tex.frame.width === baseTex.width && tex.frame.height === baseTex.height; + + // auto, force repeat wrapMode for big tiling textures + if (isSimple) + { + if (!baseTex._glTextures[renderer.CONTEXT_UID]) + { + if (baseTex.wrapMode === WRAP_MODES.CLAMP) + { + baseTex.wrapMode = WRAP_MODES.REPEAT; + } + } + else + { + isSimple = baseTex.wrapMode !== WRAP_MODES.CLAMP; + } + } + + var shader = isSimple ? this.simpleShader : this.shader; + + var w = tex.width; + var h = tex.height; + var W = ts._width; + var H = ts._height; + + tempMat$1.set(lt.a * w / W, + lt.b * w / H, + lt.c * h / W, + lt.d * h / H, + lt.tx / W, + lt.ty / H); + + // that part is the same as above: + // tempMat.identity(); + // tempMat.scale(tex.width, tex.height); + // tempMat.prepend(lt); + // tempMat.scale(1.0 / ts._width, 1.0 / ts._height); + + tempMat$1.invert(); + if (isSimple) + { + tempMat$1.prepend(uv.mapCoord); + } + else + { + shader.uniforms.uMapCoord = uv.mapCoord.toArray(true); + shader.uniforms.uClampFrame = uv.uClampFrame; + shader.uniforms.uClampOffset = uv.uClampOffset; + } + + shader.uniforms.uTransform = tempMat$1.toArray(true); + shader.uniforms.uColor = premultiplyTintToRgba(ts.tint, ts.worldAlpha, + shader.uniforms.uColor, baseTex.premultiplyAlpha); + shader.uniforms.translationMatrix = ts.transform.worldTransform.toArray(true); + shader.uniforms.uSampler = tex; + + renderer.shader.bind(shader); + renderer.geometry.bind(quad);// , renderer.shader.getGLShader()); + + renderer.state.setBlendMode(correctBlendMode(ts.blendMode, baseTex.premultiplyAlpha)); + renderer.geometry.draw(this.renderer.gl.TRIANGLES, 6, 0); + }; + + return TilingSpriteRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/text-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * A BitmapText object will create a line or multiple lines of text using bitmap font. + * + * The primary advantage of this class over Text is that all of your textures are pre-generated and loading, + * meaning that rendering is fast, and changing text has no performance implications. + * + * The primary disadvantage is that you need to preload the bitmap font assets, and thus the styling is set in stone. + * Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters. + * + * To split a line you can use '\n', '\r' or '\r\n' in your string. + * + * You can generate the fnt files using + * http://www.angelcode.com/products/bmfont/ for Windows or + * http://www.bmglyph.com/ for Mac. + * + * A BitmapText can only be created when the font is loaded. + * + * ```js + * // in this case the font is in a file called 'desyrel.fnt' + * let bitmapText = new PIXI.BitmapText("text using a fancy font!", {font: "35px Desyrel", align: "right"}); + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var BitmapText = /*@__PURE__*/(function (Container) { + function BitmapText(text, style) + { + var this$1 = this; + if ( style === void 0 ) style = {}; + + Container.call(this); + + /** + * Private tracker for the width of the overall text + * + * @member {number} + * @private + */ + this._textWidth = 0; + + /** + * Private tracker for the height of the overall text + * + * @member {number} + * @private + */ + this._textHeight = 0; + + /** + * Private tracker for the letter sprite pool. + * + * @member {PIXI.Sprite[]} + * @private + */ + this._glyphs = []; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._font = { + tint: style.tint !== undefined ? style.tint : 0xFFFFFF, + align: style.align || 'left', + name: null, + size: 0, + }; + + /** + * Private tracker for the current font. + * + * @member {object} + * @private + */ + this.font = style.font; // run font setter + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = text; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting value to 0 + * + * @member {number} + * @private + */ + this._maxWidth = 0; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * ie: when trying to vertically align. + * + * @member {number} + * @private + */ + this._maxLineHeight = 0; + + /** + * Letter spacing. This is useful for setting the space between characters. + * @member {number} + * @private + */ + this._letterSpacing = 0; + + /** + * Text anchor. read-only + * + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint(function () { this$1.dirty = true; }, this, 0, 0); + + /** + * The dirty state of this object. + * + * @member {boolean} + */ + this.dirty = false; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + this.roundPixels = settings.ROUND_PIXELS; + + this.updateText(); + } + + if ( Container ) BitmapText.__proto__ = Container; + BitmapText.prototype = Object.create( Container && Container.prototype ); + BitmapText.prototype.constructor = BitmapText; + + var prototypeAccessors = { tint: { configurable: true },align: { configurable: true },anchor: { configurable: true },font: { configurable: true },text: { configurable: true },maxWidth: { configurable: true },maxLineHeight: { configurable: true },textWidth: { configurable: true },letterSpacing: { configurable: true },textHeight: { configurable: true } }; + + /** + * Renders text and updates it when needed + * + * @private + */ + BitmapText.prototype.updateText = function updateText () + { + var data = BitmapText.fonts[this._font.name]; + var scale = this._font.size / data.size; + var pos = new Point(); + var chars = []; + var lineWidths = []; + var text = this._text.replace(/(?:\r\n|\r)/g, '\n') || ' '; + var textLength = text.length; + var maxWidth = this._maxWidth * data.size / this._font.size; + + var prevCharCode = null; + var lastLineWidth = 0; + var maxLineWidth = 0; + var line = 0; + var lastBreakPos = -1; + var lastBreakWidth = 0; + var spacesRemoved = 0; + var maxLineHeight = 0; + + for (var i = 0; i < textLength; i++) + { + var charCode = text.charCodeAt(i); + var char = text.charAt(i); + + if ((/(?:\s)/).test(char)) + { + lastBreakPos = i; + lastBreakWidth = lastLineWidth; + } + + if (char === '\r' || char === '\n') + { + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + ++line; + ++spacesRemoved; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + continue; + } + + var charData = data.chars[charCode]; + + if (!charData) + { + continue; + } + + if (prevCharCode && charData.kerning[prevCharCode]) + { + pos.x += charData.kerning[prevCharCode]; + } + + chars.push({ + texture: charData.texture, + line: line, + charCode: charCode, + position: new Point(pos.x + charData.xOffset + (this._letterSpacing / 2), pos.y + charData.yOffset), + }); + pos.x += charData.xAdvance + this._letterSpacing; + lastLineWidth = pos.x; + maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height)); + prevCharCode = charCode; + + if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth) + { + ++spacesRemoved; + removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos); + i = lastBreakPos; + lastBreakPos = -1; + + lineWidths.push(lastBreakWidth); + maxLineWidth = Math.max(maxLineWidth, lastBreakWidth); + line++; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + } + } + + var lastChar = text.charAt(text.length - 1); + + if (lastChar !== '\r' && lastChar !== '\n') + { + if ((/(?:\s)/).test(lastChar)) + { + lastLineWidth = lastBreakWidth; + } + + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + } + + var lineAlignOffsets = []; + + for (var i$1 = 0; i$1 <= line; i$1++) + { + var alignOffset = 0; + + if (this._font.align === 'right') + { + alignOffset = maxLineWidth - lineWidths[i$1]; + } + else if (this._font.align === 'center') + { + alignOffset = (maxLineWidth - lineWidths[i$1]) / 2; + } + + lineAlignOffsets.push(alignOffset); + } + + var lenChars = chars.length; + var tint = this.tint; + + for (var i$2 = 0; i$2 < lenChars; i$2++) + { + var c = this._glyphs[i$2]; // get the next glyph sprite + + if (c) + { + c.texture = chars[i$2].texture; + } + else + { + c = new Sprite(chars[i$2].texture); + c.roundPixels = this.roundPixels; + this._glyphs.push(c); + } + + c.position.x = (chars[i$2].position.x + lineAlignOffsets[chars[i$2].line]) * scale; + c.position.y = chars[i$2].position.y * scale; + c.scale.x = c.scale.y = scale; + c.tint = tint; + + if (!c.parent) + { + this.addChild(c); + } + } + + // remove unnecessary children. + for (var i$3 = lenChars; i$3 < this._glyphs.length; ++i$3) + { + this.removeChild(this._glyphs[i$3]); + } + + this._textWidth = maxLineWidth * scale; + this._textHeight = (pos.y + data.lineHeight) * scale; + + // apply anchor + if (this.anchor.x !== 0 || this.anchor.y !== 0) + { + for (var i$4 = 0; i$4 < lenChars; i$4++) + { + this._glyphs[i$4].x -= this._textWidth * this.anchor.x; + this._glyphs[i$4].y -= this._textHeight * this.anchor.y; + } + } + this._maxLineHeight = maxLineHeight * scale; + }; + + /** + * Updates the transform of this object + * + * @private + */ + BitmapText.prototype.updateTransform = function updateTransform () + { + this.validate(); + this.containerUpdateTransform(); + }; + + /** + * Validates text before calling parent's getLocalBounds + * + * @return {PIXI.Rectangle} The rectangular bounding area + */ + BitmapText.prototype.getLocalBounds = function getLocalBounds () + { + this.validate(); + + return Container.prototype.getLocalBounds.call(this); + }; + + /** + * Updates text when needed + * + * @private + */ + BitmapText.prototype.validate = function validate () + { + if (this.dirty) + { + this.updateText(); + this.dirty = false; + } + }; + + /** + * The tint of the BitmapText object. + * + * @member {number} + */ + prototypeAccessors.tint.get = function () + { + return this._font.tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.tint = (typeof value === 'number' && value >= 0) ? value : 0xFFFFFF; + + this.dirty = true; + }; + + /** + * The alignment of the BitmapText object. + * + * @member {string} + * @default 'left' + */ + prototypeAccessors.align.get = function () + { + return this._font.align; + }; + + prototypeAccessors.align.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.align = value || 'left'; + + this.dirty = true; + }; + + /** + * The anchor sets the origin point of the text. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * @member {PIXI.Point | number} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + if (typeof value === 'number') + { + this._anchor.set(value); + } + else + { + this._anchor.copyFrom(value); + } + }; + + /** + * The font descriptor of the BitmapText object. + * + * @member {object} + */ + prototypeAccessors.font.get = function () + { + return this._font; + }; + + prototypeAccessors.font.set = function (value) // eslint-disable-line require-jsdoc + { + if (!value) + { + return; + } + + if (typeof value === 'string') + { + value = value.split(' '); + + this._font.name = value.length === 1 ? value[0] : value.slice(1).join(' '); + this._font.size = value.length >= 2 ? parseInt(value[0], 10) : BitmapText.fonts[this._font.name].size; + } + else + { + this._font.name = value.name; + this._font.size = typeof value.size === 'number' ? value.size : parseInt(value.size, 10); + } + + this.dirty = true; + }; + + /** + * The text of the BitmapText object. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting the value to 0. + * + * @member {number} + */ + prototypeAccessors.maxWidth.get = function () + { + return this._maxWidth; + }; + + prototypeAccessors.maxWidth.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._maxWidth === value) + { + return; + } + this._maxWidth = value; + this.dirty = true; + }; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * i.e. when trying to vertically align. + * + * @member {number} + * @readonly + */ + prototypeAccessors.maxLineHeight.get = function () + { + this.validate(); + + return this._maxLineHeight; + }; + + /** + * The width of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textWidth.get = function () + { + this.validate(); + + return this._textWidth; + }; + + /** + * Additional space between characters. + * + * @member {number} + */ + prototypeAccessors.letterSpacing.get = function () + { + return this._letterSpacing; + }; + + prototypeAccessors.letterSpacing.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._letterSpacing !== value) + { + this._letterSpacing = value; + this.dirty = true; + } + }; + + /** + * The height of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textHeight.get = function () + { + this.validate(); + + return this._textHeight; + }; + + /** + * Register a bitmap font with data and a texture. + * + * @static + * @param {XMLDocument} xml - The XML document data. + * @param {Object.|PIXI.Texture|PIXI.Texture[]} textures - List of textures for each page. + * If providing an object, the key is the `` element's `file` attribute in the FNT file. + * @return {Object} Result font object with font, size, lineHeight and char fields. + */ + BitmapText.registerFont = function registerFont (xml, textures) + { + var data = {}; + var info = xml.getElementsByTagName('info')[0]; + var common = xml.getElementsByTagName('common')[0]; + var pages = xml.getElementsByTagName('page'); + var res = getResolutionOfUrl(pages[0].getAttribute('file'), settings.RESOLUTION); + var pagesTextures = {}; + + data.font = info.getAttribute('face'); + data.size = parseInt(info.getAttribute('size'), 10); + data.lineHeight = parseInt(common.getAttribute('lineHeight'), 10) / res; + data.chars = {}; + + // Single texture, convert to list + if (textures instanceof Texture) + { + textures = [textures]; + } + + // Convert the input Texture, Textures or object + // into a page Texture lookup by "id" + for (var i = 0; i < pages.length; i++) + { + var id = pages[i].getAttribute('id'); + var file = pages[i].getAttribute('file'); + + pagesTextures[id] = textures instanceof Array ? textures[i] : textures[file]; + } + + // parse letters + var letters = xml.getElementsByTagName('char'); + + for (var i$1 = 0; i$1 < letters.length; i$1++) + { + var letter = letters[i$1]; + var charCode = parseInt(letter.getAttribute('id'), 10); + var page = letter.getAttribute('page') || 0; + var textureRect = new Rectangle( + (parseInt(letter.getAttribute('x'), 10) / res) + (pagesTextures[page].frame.x / res), + (parseInt(letter.getAttribute('y'), 10) / res) + (pagesTextures[page].frame.y / res), + parseInt(letter.getAttribute('width'), 10) / res, + parseInt(letter.getAttribute('height'), 10) / res + ); + + data.chars[charCode] = { + xOffset: parseInt(letter.getAttribute('xoffset'), 10) / res, + yOffset: parseInt(letter.getAttribute('yoffset'), 10) / res, + xAdvance: parseInt(letter.getAttribute('xadvance'), 10) / res, + kerning: {}, + texture: new Texture(pagesTextures[page].baseTexture, textureRect), + page: page, + }; + } + + // parse kernings + var kernings = xml.getElementsByTagName('kerning'); + + for (var i$2 = 0; i$2 < kernings.length; i$2++) + { + var kerning = kernings[i$2]; + var first = parseInt(kerning.getAttribute('first'), 10) / res; + var second = parseInt(kerning.getAttribute('second'), 10) / res; + var amount = parseInt(kerning.getAttribute('amount'), 10) / res; + + if (data.chars[second]) + { + data.chars[second].kerning[first] = amount; + } + } + + // I'm leaving this as a temporary fix so we can test the bitmap fonts in v3 + // but it's very likely to change + BitmapText.fonts[data.font] = data; + + return data; + }; + + Object.defineProperties( BitmapText.prototype, prototypeAccessors ); + + return BitmapText; +}(Container)); + +BitmapText.fonts = {}; + +/** + * {@link PIXI.Loader Loader} middleware for loading + * bitmap-based fonts suitable for using with {@link PIXI.BitmapText}. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var BitmapFontLoader = function BitmapFontLoader () {}; + +BitmapFontLoader.parse = function parse (resource, texture) +{ + resource.bitmapFont = BitmapText.registerFont(resource.data, texture); +}; + +/** + * Called when the plugin is installed. + * + * @see PIXI.Loader.registerPlugin + */ +BitmapFontLoader.add = function add () +{ + LoaderResource.setExtensionXhrType('fnt', LoaderResource.XHR_RESPONSE_TYPE.DOCUMENT); +}; + +/** + * Replacement for NodeJS's path.dirname + * @private + * @param {string} url Path to get directory for + */ +BitmapFontLoader.dirname = function dirname (url) +{ + var dir = url + .replace(/\/$/, '') // replace trailing slash + .replace(/\/[^\/]*$/, ''); // remove everything after the last + + // File request is relative, use current directory + if (dir === url) + { + return '.'; + } + // Started with a slash + else if (dir === '') + { + return '/'; + } + + return dir; +}; + +/** + * Called after a resource is loaded. + * @see PIXI.Loader.loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ +BitmapFontLoader.use = function use (resource, next) +{ + // skip if no data or not xml data + if (!resource.data || resource.type !== LoaderResource.TYPE.XML) + { + next(); + + return; + } + + // skip if not bitmap font data, using some silly duck-typing + if (resource.data.getElementsByTagName('page').length === 0 + || resource.data.getElementsByTagName('info').length === 0 + || resource.data.getElementsByTagName('info')[0].getAttribute('face') === null + ) + { + next(); + + return; + } + + var xmlUrl = !resource.isDataUrl ? BitmapFontLoader.dirname(resource.url) : ''; + + if (resource.isDataUrl) + { + if (xmlUrl === '.') + { + xmlUrl = ''; + } + + if (this.baseUrl && xmlUrl) + { + // if baseurl has a trailing slash then add one to xmlUrl so the replace works below + if (this.baseUrl.charAt(this.baseUrl.length - 1) === '/') + { + xmlUrl += '/'; + } + } + } + + // remove baseUrl from xmlUrl + xmlUrl = xmlUrl.replace(this.baseUrl, ''); + + // if there is an xmlUrl now, it needs a trailing slash. Ensure that it does if the string isn't empty. + if (xmlUrl && xmlUrl.charAt(xmlUrl.length - 1) !== '/') + { + xmlUrl += '/'; + } + + var pages = resource.data.getElementsByTagName('page'); + var textures = {}; + + // Handle completed, when the number of textures + // load is the same number as references in the fnt file + var completed = function (page) { + textures[page.metadata.pageFile] = page.texture; + + if (Object.keys(textures).length === pages.length) + { + BitmapFontLoader.parse(resource, textures); + next(); + } + }; + + for (var i = 0; i < pages.length; ++i) + { + var pageFile = pages[i].getAttribute('file'); + var url = xmlUrl + pageFile; + var exists = false; + + // incase the image is loaded outside + // using the same loader, resource will be available + for (var name in this.resources) + { + var bitmapResource = this.resources[name]; + + if (bitmapResource.url === url) + { + bitmapResource.metadata.pageFile = pageFile; + if (bitmapResource.texture) + { + completed(bitmapResource); + } + else + { + bitmapResource.onAfterMiddleware.add(completed); + } + exists = true; + break; + } + } + + // texture is not loaded, we'll attempt to add + // it to the load and add the texture to the list + if (!exists) + { + // Standard loading options for images + var options = { + crossOrigin: resource.crossOrigin, + loadType: LoaderResource.LOAD_TYPE.IMAGE, + metadata: Object.assign( + { pageFile: pageFile }, + resource.metadata.imageMetadata + ), + parentResource: resource, + }; + + this.add(url, options, completed); + } + } +}; + +/*! + * @pixi/filter-color-matrix - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/filter-color-matrix is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var fragment$3 = "varying vec2 vTextureCoord;\nuniform sampler2D uSampler;\nuniform float m[20];\nuniform float uAlpha;\n\nvoid main(void)\n{\n vec4 c = texture2D(uSampler, vTextureCoord);\n\n if (uAlpha == 0.0) {\n gl_FragColor = c;\n return;\n }\n\n // Un-premultiply alpha before applying the color matrix. See issue #3539.\n if (c.a > 0.0) {\n c.rgb /= c.a;\n }\n\n vec4 result;\n\n result.r = (m[0] * c.r);\n result.r += (m[1] * c.g);\n result.r += (m[2] * c.b);\n result.r += (m[3] * c.a);\n result.r += m[4];\n\n result.g = (m[5] * c.r);\n result.g += (m[6] * c.g);\n result.g += (m[7] * c.b);\n result.g += (m[8] * c.a);\n result.g += m[9];\n\n result.b = (m[10] * c.r);\n result.b += (m[11] * c.g);\n result.b += (m[12] * c.b);\n result.b += (m[13] * c.a);\n result.b += m[14];\n\n result.a = (m[15] * c.r);\n result.a += (m[16] * c.g);\n result.a += (m[17] * c.b);\n result.a += (m[18] * c.a);\n result.a += m[19];\n\n vec3 rgb = mix(c.rgb, result.rgb, uAlpha);\n\n // Premultiply alpha again.\n rgb *= result.a;\n\n gl_FragColor = vec4(rgb, result.a);\n}\n"; + +/** + * The ColorMatrixFilter class lets you apply a 5x4 matrix transformation on the RGBA + * color and alpha values of every pixel on your displayObject to produce a result + * with a new set of RGBA color and alpha values. It's pretty powerful! + * + * ```js + * let colorMatrix = new PIXI.filters.ColorMatrixFilter(); + * container.filters = [colorMatrix]; + * colorMatrix.contrast(2); + * ``` + * @author Clément Chenebault + * @class + * @extends PIXI.Filter + * @memberof PIXI.filters + */ +var ColorMatrixFilter = /*@__PURE__*/(function (Filter) { + function ColorMatrixFilter() + { + var uniforms = { + m: new Float32Array([1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0]), + uAlpha: 1, + }; + + Filter.call(this, defaultFilter, fragment$3, uniforms); + + this.alpha = 1; + } + + if ( Filter ) ColorMatrixFilter.__proto__ = Filter; + ColorMatrixFilter.prototype = Object.create( Filter && Filter.prototype ); + ColorMatrixFilter.prototype.constructor = ColorMatrixFilter; + + var prototypeAccessors = { matrix: { configurable: true },alpha: { configurable: true } }; + + /** + * Transforms current matrix and set the new one + * + * @param {number[]} matrix - 5x4 matrix + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype._loadMatrix = function _loadMatrix (matrix, multiply) + { + if ( multiply === void 0 ) multiply = false; + + var newMatrix = matrix; + + if (multiply) + { + this._multiply(newMatrix, this.uniforms.m, matrix); + newMatrix = this._colorMatrix(newMatrix); + } + + // set the new matrix + this.uniforms.m = newMatrix; + }; + + /** + * Multiplies two mat5's + * + * @private + * @param {number[]} out - 5x4 matrix the receiving matrix + * @param {number[]} a - 5x4 matrix the first operand + * @param {number[]} b - 5x4 matrix the second operand + * @returns {number[]} 5x4 matrix + */ + ColorMatrixFilter.prototype._multiply = function _multiply (out, a, b) + { + // Red Channel + out[0] = (a[0] * b[0]) + (a[1] * b[5]) + (a[2] * b[10]) + (a[3] * b[15]); + out[1] = (a[0] * b[1]) + (a[1] * b[6]) + (a[2] * b[11]) + (a[3] * b[16]); + out[2] = (a[0] * b[2]) + (a[1] * b[7]) + (a[2] * b[12]) + (a[3] * b[17]); + out[3] = (a[0] * b[3]) + (a[1] * b[8]) + (a[2] * b[13]) + (a[3] * b[18]); + out[4] = (a[0] * b[4]) + (a[1] * b[9]) + (a[2] * b[14]) + (a[3] * b[19]) + a[4]; + + // Green Channel + out[5] = (a[5] * b[0]) + (a[6] * b[5]) + (a[7] * b[10]) + (a[8] * b[15]); + out[6] = (a[5] * b[1]) + (a[6] * b[6]) + (a[7] * b[11]) + (a[8] * b[16]); + out[7] = (a[5] * b[2]) + (a[6] * b[7]) + (a[7] * b[12]) + (a[8] * b[17]); + out[8] = (a[5] * b[3]) + (a[6] * b[8]) + (a[7] * b[13]) + (a[8] * b[18]); + out[9] = (a[5] * b[4]) + (a[6] * b[9]) + (a[7] * b[14]) + (a[8] * b[19]) + a[9]; + + // Blue Channel + out[10] = (a[10] * b[0]) + (a[11] * b[5]) + (a[12] * b[10]) + (a[13] * b[15]); + out[11] = (a[10] * b[1]) + (a[11] * b[6]) + (a[12] * b[11]) + (a[13] * b[16]); + out[12] = (a[10] * b[2]) + (a[11] * b[7]) + (a[12] * b[12]) + (a[13] * b[17]); + out[13] = (a[10] * b[3]) + (a[11] * b[8]) + (a[12] * b[13]) + (a[13] * b[18]); + out[14] = (a[10] * b[4]) + (a[11] * b[9]) + (a[12] * b[14]) + (a[13] * b[19]) + a[14]; + + // Alpha Channel + out[15] = (a[15] * b[0]) + (a[16] * b[5]) + (a[17] * b[10]) + (a[18] * b[15]); + out[16] = (a[15] * b[1]) + (a[16] * b[6]) + (a[17] * b[11]) + (a[18] * b[16]); + out[17] = (a[15] * b[2]) + (a[16] * b[7]) + (a[17] * b[12]) + (a[18] * b[17]); + out[18] = (a[15] * b[3]) + (a[16] * b[8]) + (a[17] * b[13]) + (a[18] * b[18]); + out[19] = (a[15] * b[4]) + (a[16] * b[9]) + (a[17] * b[14]) + (a[18] * b[19]) + a[19]; + + return out; + }; + + /** + * Create a Float32 Array and normalize the offset component to 0-1 + * + * @private + * @param {number[]} matrix - 5x4 matrix + * @return {number[]} 5x4 matrix with all values between 0-1 + */ + ColorMatrixFilter.prototype._colorMatrix = function _colorMatrix (matrix) + { + // Create a Float32 Array and normalize the offset component to 0-1 + var m = new Float32Array(matrix); + + m[4] /= 255; + m[9] /= 255; + m[14] /= 255; + m[19] /= 255; + + return m; + }; + + /** + * Adjusts brightness + * + * @param {number} b - value of the brigthness (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.brightness = function brightness (b, multiply) + { + var matrix = [ + b, 0, 0, 0, 0, + 0, b, 0, 0, 0, + 0, 0, b, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the matrices in grey scales + * + * @param {number} scale - value of the grey (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.greyscale = function greyscale (scale, multiply) + { + var matrix = [ + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the black and white matrice. + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.blackAndWhite = function blackAndWhite (multiply) + { + var matrix = [ + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the hue property of the color + * + * @param {number} rotation - in degrees + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.hue = function hue (rotation, multiply) + { + rotation = (rotation || 0) / 180 * Math.PI; + + var cosR = Math.cos(rotation); + var sinR = Math.sin(rotation); + var sqrt = Math.sqrt; + + /* a good approximation for hue rotation + This matrix is far better than the versions with magic luminance constants + formerly used here, but also used in the starling framework (flash) and known from this + old part of the internet: quasimondo.com/archives/000565.php + + This new matrix is based on rgb cube rotation in space. Look here for a more descriptive + implementation as a shader not a general matrix: + https://github.com/evanw/glfx.js/blob/58841c23919bd59787effc0333a4897b43835412/src/filters/adjust/huesaturation.js + + This is the source for the code: + see http://stackoverflow.com/questions/8507885/shift-hue-of-an-rgb-color/8510751#8510751 + */ + + var w = 1 / 3; + var sqrW = sqrt(w); // weight is + + var a00 = cosR + ((1.0 - cosR) * w); + var a01 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a02 = (w * (1.0 - cosR)) + (sqrW * sinR); + + var a10 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a11 = cosR + (w * (1.0 - cosR)); + var a12 = (w * (1.0 - cosR)) - (sqrW * sinR); + + var a20 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a21 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a22 = cosR + (w * (1.0 - cosR)); + + var matrix = [ + a00, a01, a02, 0, 0, + a10, a11, a12, 0, 0, + a20, a21, a22, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the contrast matrix, increase the separation between dark and bright + * Increase contrast : shadows darker and highlights brighter + * Decrease contrast : bring the shadows up and the highlights down + * + * @param {number} amount - value of the contrast (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.contrast = function contrast (amount, multiply) + { + var v = (amount || 0) + 1; + var o = -0.5 * (v - 1); + + var matrix = [ + v, 0, 0, 0, o, + 0, v, 0, 0, o, + 0, 0, v, 0, o, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the saturation matrix, increase the separation between colors + * Increase saturation : increase contrast, brightness, and sharpness + * + * @param {number} amount - The saturation amount (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.saturate = function saturate (amount, multiply) + { + if ( amount === void 0 ) amount = 0; + + var x = (amount * 2 / 3) + 1; + var y = ((x - 1) * -0.5); + + var matrix = [ + x, y, y, 0, 0, + y, x, y, 0, 0, + y, y, x, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Desaturate image (remove color) + * + * Call the saturate function + * + */ + ColorMatrixFilter.prototype.desaturate = function desaturate () // eslint-disable-line no-unused-vars + { + this.saturate(-1); + }; + + /** + * Negative image (inverse of classic rgb matrix) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.negative = function negative (multiply) + { + var matrix = [ + -1, 0, 0, 1, 0, + 0, -1, 0, 1, 0, + 0, 0, -1, 1, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Sepia image + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.sepia = function sepia (multiply) + { + var matrix = [ + 0.393, 0.7689999, 0.18899999, 0, 0, + 0.349, 0.6859999, 0.16799999, 0, 0, + 0.272, 0.5339999, 0.13099999, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color motion picture process invented in 1916 (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.technicolor = function technicolor (multiply) + { + var matrix = [ + 1.9125277891456083, -0.8545344976951645, -0.09155508482755585, 0, 11.793603434377337, + -0.3087833385928097, 1.7658908555458428, -0.10601743074722245, 0, -70.35205161461398, + -0.231103377548616, -0.7501899197440212, 1.847597816108189, 0, 30.950940869491138, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Polaroid filter + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.polaroid = function polaroid (multiply) + { + var matrix = [ + 1.438, -0.062, -0.062, 0, 0, + -0.122, 1.378, -0.122, 0, 0, + -0.016, -0.016, 1.483, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Filter who transforms : Red -> Blue and Blue -> Red + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.toBGR = function toBGR (multiply) + { + var matrix = [ + 0, 0, 1, 0, 0, + 0, 1, 0, 0, 0, + 1, 0, 0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color reversal film introduced by Eastman Kodak in 1935. (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.kodachrome = function kodachrome (multiply) + { + var matrix = [ + 1.1285582396593525, -0.3967382283601348, -0.03992559172921793, 0, 63.72958762196502, + -0.16404339962244616, 1.0835251566291304, -0.05498805115633132, 0, 24.732407896706203, + -0.16786010706155763, -0.5603416277695248, 1.6014850761964943, 0, 35.62982807460946, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Brown delicious browni filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.browni = function browni (multiply) + { + var matrix = [ + 0.5997023498159715, 0.34553243048391263, -0.2708298674538042, 0, 47.43192855600873, + -0.037703249837783157, 0.8609577587992641, 0.15059552388459913, 0, -36.96841498319127, + 0.24113635128153335, -0.07441037908422492, 0.44972182064877153, 0, -7.562075277591283, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Vintage filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.vintage = function vintage (multiply) + { + var matrix = [ + 0.6279345635605994, 0.3202183420819367, -0.03965408211312453, 0, 9.651285835294123, + 0.02578397704808868, 0.6441188644374771, 0.03259127616149294, 0, 7.462829176470591, + 0.0466055556782719, -0.0851232987247891, 0.5241648018700465, 0, 5.159190588235296, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * We don't know exactly what it does, kind of gradient map, but funny to play with! + * + * @param {number} desaturation - Tone values. + * @param {number} toned - Tone values. + * @param {string} lightColor - Tone values, example: `0xFFE580` + * @param {string} darkColor - Tone values, example: `0xFFE580` + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.colorTone = function colorTone (desaturation, toned, lightColor, darkColor, multiply) + { + desaturation = desaturation || 0.2; + toned = toned || 0.15; + lightColor = lightColor || 0xFFE580; + darkColor = darkColor || 0x338000; + + var lR = ((lightColor >> 16) & 0xFF) / 255; + var lG = ((lightColor >> 8) & 0xFF) / 255; + var lB = (lightColor & 0xFF) / 255; + + var dR = ((darkColor >> 16) & 0xFF) / 255; + var dG = ((darkColor >> 8) & 0xFF) / 255; + var dB = (darkColor & 0xFF) / 255; + + var matrix = [ + 0.3, 0.59, 0.11, 0, 0, + lR, lG, lB, desaturation, 0, + dR, dG, dB, toned, 0, + lR - dR, lG - dG, lB - dB, 0, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Night effect + * + * @param {number} intensity - The intensity of the night effect. + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.night = function night (intensity, multiply) + { + intensity = intensity || 0.1; + var matrix = [ + intensity * (-2.0), -intensity, 0, 0, 0, + -intensity, 0, intensity, 0, 0, + 0, intensity, intensity * 2.0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Predator effect + * + * Erase the current matrix by setting a new indepent one + * + * @param {number} amount - how much the predator feels his future victim + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.predator = function predator (amount, multiply) + { + var matrix = [ + // row 1 + 11.224130630493164 * amount, + -4.794486999511719 * amount, + -2.8746118545532227 * amount, + 0 * amount, + 0.40342438220977783 * amount, + // row 2 + -3.6330697536468506 * amount, + 9.193157196044922 * amount, + -2.951810836791992 * amount, + 0 * amount, + -1.316135048866272 * amount, + // row 3 + -3.2184197902679443 * amount, + -4.2375030517578125 * amount, + 7.476448059082031 * amount, + 0 * amount, + 0.8044459223747253 * amount, + // row 4 + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * LSD effect + * + * Multiply the current matrix + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.lsd = function lsd (multiply) + { + var matrix = [ + 2, -0.4, 0.5, 0, 0, + -0.5, 2, -0.4, 0, 0, + -0.4, -0.5, 3, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Erase the current matrix by setting the default one + * + */ + ColorMatrixFilter.prototype.reset = function reset () + { + var matrix = [ + 1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, false); + }; + + /** + * The matrix of the color matrix filter + * + * @member {number[]} + * @default [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0] + */ + prototypeAccessors.matrix.get = function () + { + return this.uniforms.m; + }; + + prototypeAccessors.matrix.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.m = value; + }; + + /** + * The opacity value to use when mixing the original and resultant colors. + * + * When the value is 0, the original color is used without modification. + * When the value is 1, the result color is used. + * When in the range (0, 1) the color is interpolated between the original and result by this amount. + * + * @member {number} + * @default 1 + */ + prototypeAccessors.alpha.get = function () + { + return this.uniforms.uAlpha; + }; + + prototypeAccessors.alpha.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.uAlpha = value; + }; + + Object.defineProperties( ColorMatrixFilter.prototype, prototypeAccessors ); + + return ColorMatrixFilter; +}(Filter)); + +// Americanized alias +ColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale; + +/*! + * @pixi/mixin-cache-as-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mixin-cache-as-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var _tempMatrix = new Matrix(); + +DisplayObject.prototype._cacheAsBitmap = false; +DisplayObject.prototype._cacheData = false; + +// figured theres no point adding ALL the extra variables to prototype. +// this model can hold the information needed. This can also be generated on demand as +// most objects are not cached as bitmaps. +/** + * @class + * @ignore + */ +var CacheData = function CacheData() +{ + this.textureCacheId = null; + + this.originalRender = null; + this.originalRenderCanvas = null; + this.originalCalculateBounds = null; + this.originalGetLocalBounds = null; + + this.originalUpdateTransform = null; + this.originalHitTest = null; + this.originalDestroy = null; + this.originalMask = null; + this.originalFilterArea = null; + this.sprite = null; +}; + +Object.defineProperties(DisplayObject.prototype, { + /** + * Set this to true if you want this display object to be cached as a bitmap. + * This basically takes a snap shot of the display object as it is at that moment. It can + * provide a performance benefit for complex static displayObjects. + * To remove simply set this property to `false` + * + * IMPORTANT GOTCHA - Make sure that all your textures are preloaded BEFORE setting this property to true + * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear. + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + cacheAsBitmap: { + get: function get() + { + return this._cacheAsBitmap; + }, + set: function set(value) + { + if (this._cacheAsBitmap === value) + { + return; + } + + this._cacheAsBitmap = value; + + var data; + + if (value) + { + if (!this._cacheData) + { + this._cacheData = new CacheData(); + } + + data = this._cacheData; + + data.originalRender = this.render; + data.originalRenderCanvas = this.renderCanvas; + + data.originalUpdateTransform = this.updateTransform; + data.originalCalculateBounds = this.calculateBounds; + data.originalGetLocalBounds = this.getLocalBounds; + + data.originalDestroy = this.destroy; + + data.originalContainsPoint = this.containsPoint; + + data.originalMask = this._mask; + data.originalFilterArea = this.filterArea; + + this.render = this._renderCached; + this.renderCanvas = this._renderCachedCanvas; + + this.destroy = this._cacheAsBitmapDestroy; + } + else + { + data = this._cacheData; + + if (data.sprite) + { + this._destroyCachedDisplayObject(); + } + + this.render = data.originalRender; + this.renderCanvas = data.originalRenderCanvas; + this.calculateBounds = data.originalCalculateBounds; + this.getLocalBounds = data.originalGetLocalBounds; + + this.destroy = data.originalDestroy; + + this.updateTransform = data.originalUpdateTransform; + this.containsPoint = data.originalContainsPoint; + + this._mask = data.originalMask; + this.filterArea = data.originalFilterArea; + } + }, + }, +}); + +/** + * Renders a cached version of the sprite with WebGL + * + * @private + * @function _renderCached + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCached = function _renderCached(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObject(renderer); + + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._render(renderer); +}; + +/** + * Prepares the WebGL renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObject + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObject = function _initCachedDisplayObject(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // make sure alpha is set to 1 otherwise it will get rendered as invisible! + var cacheAlpha = this.alpha; + + this.alpha = 1; + + // first we flush anything left in the renderer (otherwise it would get rendered to the cached texture) + renderer.batch.flush(); + // this.filters= []; + + // next we find the dimensions of the untransformed object + // this function also calls updatetransform on all its children as part of the measuring. + // This means we don't need to update the transform again in this function + // TODO pass an object to clone too? saves having to create a new one each time! + var bounds = this.getLocalBounds().clone(); + + // add some padding! + if (this.filters) + { + var padding = this.filters[0].padding; + + bounds.pad(padding); + } + + bounds.ceil(settings.RESOLUTION); + + // for now we cache the current renderTarget that the WebGL renderer is currently using. + // this could be more elegant.. + var cachedRenderTexture = renderer.renderTexture.current; + var cachedSourceFrame = renderer.renderTexture.sourceFrame; + var cachedProjectionTransform = renderer.projection.transform; + + // We also store the filter stack - I will definitely look to change how this works a little later down the line. + // const stack = renderer.filterManager.filterStack; + + // this renderTexture will be used to store the cached DisplayObject + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + m.tx = -bounds.x; + m.ty = -bounds.y; + + // reset + this.transform.worldTransform.identity(); + + // set all properties to there original so we can render to a texture + this.render = this._cacheData.originalRender; + + renderer.render(this, renderTexture, true, m, true); + + // now restore the state be setting the new properties + renderer.projection.transform = cachedProjectionTransform; + renderer.renderTexture.bind(cachedRenderTexture, cachedSourceFrame); + + // renderer.filterManager.filterStack = stack; + + this.render = this._renderCached; + // the rest is the same as for Canvas + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Renders a cached version of the sprite with canvas + * + * @private + * @function _renderCachedCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCachedCanvas = function _renderCachedCanvas(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObjectCanvas(renderer); + + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._renderCanvas(renderer); +}; + +// TODO this can be the same as the WebGL version.. will need to do a little tweaking first though.. +/** + * Prepares the Canvas renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObjectCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObjectCanvas = function _initCachedDisplayObjectCanvas(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // get bounds actually transforms the object for us already! + var bounds = this.getLocalBounds(); + + var cacheAlpha = this.alpha; + + this.alpha = 1; + + var cachedRenderTarget = renderer.context; + + bounds.ceil(settings.RESOLUTION); + + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + this.transform.localTransform.copyTo(m); + m.invert(); + + m.tx -= bounds.x; + m.ty -= bounds.y; + + // m.append(this.transform.worldTransform.) + // set all properties to there original so we can render to a texture + this.renderCanvas = this._cacheData.originalRenderCanvas; + + // renderTexture.render(this, m, true); + renderer.render(this, renderTexture, true, m, false); + + // now restore the state be setting the new properties + renderer.context = cachedRenderTarget; + + this.renderCanvas = this._renderCachedCanvas; + // the rest is the same as for WebGL + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Calculates the bounds of the cached sprite + * + * @private + */ +DisplayObject.prototype._calculateCachedBounds = function _calculateCachedBounds() +{ + this._bounds.clear(); + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite._calculateBounds(); + this._lastBoundsID = this._boundsID; +}; + +/** + * Gets the bounds of the cached sprite. + * + * @private + * @return {Rectangle} The local bounds. + */ +DisplayObject.prototype._getCachedLocalBounds = function _getCachedLocalBounds() +{ + return this._cacheData.sprite.getLocalBounds(); +}; + +/** + * Destroys the cached sprite. + * + * @private + */ +DisplayObject.prototype._destroyCachedDisplayObject = function _destroyCachedDisplayObject() +{ + this._cacheData.sprite._texture.destroy(true); + this._cacheData.sprite = null; + + BaseTexture.removeFromCache(this._cacheData.textureCacheId); + Texture.removeFromCache(this._cacheData.textureCacheId); + + this._cacheData.textureCacheId = null; +}; + +/** + * Destroys the cached object. + * + * @private + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value. + * Used when destroying containers, see the Container.destroy method. + */ +DisplayObject.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy(options) +{ + this.cacheAsBitmap = false; + this.destroy(options); +}; + +/*! + * @pixi/mixin-get-child-by-name - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-child-by-name is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The instance name of the object. + * + * @memberof PIXI.DisplayObject# + * @member {string} name + */ +DisplayObject.prototype.name = null; + +/** + * Returns the display object in the container. + * + * @method getChildByName + * @memberof PIXI.Container# + * @param {string} name - Instance name. + * @return {PIXI.DisplayObject} The child with the specified name. + */ +Container.prototype.getChildByName = function getChildByName(name) +{ + for (var i = 0; i < this.children.length; i++) + { + if (this.children[i].name === name) + { + return this.children[i]; + } + } + + return null; +}; + +/*! + * @pixi/mixin-get-global-position - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-global-position is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Returns the global position of the displayObject. Does not depend on object scale, rotation and pivot. + * + * @method getGlobalPosition + * @memberof PIXI.DisplayObject# + * @param {PIXI.Point} [point=new PIXI.Point()] - The point to write the global value to. + * @param {boolean} [skipUpdate=false] - Setting to true will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @return {PIXI.Point} The updated point. + */ +DisplayObject.prototype.getGlobalPosition = function getGlobalPosition(point, skipUpdate) +{ + if ( point === void 0 ) point = new Point(); + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (this.parent) + { + this.parent.toGlobal(this.position, point, skipUpdate); + } + else + { + point.x = this.position.x; + point.y = this.position.y; + } + + return point; +}; + +/*! + * @pixi/mesh - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mesh is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$2 = new Point(); +var tempPolygon = new Polygon(); + +/*! + * pixi.js - v5.1.4 + * Compiled Sat, 21 Sep 2019 07:35:21 UTC + * + * pixi.js is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Install renderer plugins +Renderer.registerPlugin('accessibility', AccessibilityManager); +Renderer.registerPlugin('extract', Extract); +Renderer.registerPlugin('interaction', InteractionManager); +Renderer.registerPlugin('particle', ParticleRenderer); +Renderer.registerPlugin('prepare', Prepare); +Renderer.registerPlugin('batch', BatchRenderer); +Renderer.registerPlugin('tilingSprite', TilingSpriteRenderer); + +Loader$1.registerPlugin(BitmapFontLoader); +Loader$1.registerPlugin(SpritesheetLoader); + +Application.registerPlugin(TickerPlugin); +Application.registerPlugin(AppLoaderPlugin); + +function fromConstructor(constr) { + return constr; +} + +let clipboard_text = ""; +const contexts = []; +const contextIOs = []; +class ImGuiImplInternalRenderer extends ObjectRenderer { + constructor(r) { + super(r); + } + render(owner) { + if (!(owner instanceof ImGuiWindowLayer)) + return; + const window = owner.window; + const io = window.io; + const draw_data = GetDrawData(); + if (draw_data === null) { + throw new Error(); + } + gl || console.log(draw_data); + // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) + const fb_width = io.DisplaySize.x * io.DisplayFramebufferScale.x; + const fb_height = io.DisplaySize.y * io.DisplayFramebufferScale.y; + if (fb_width === 0 || fb_height === 0) { + return; + } + draw_data.ScaleClipRects(io.DisplayFramebufferScale); + // Backup GL state + const last_program = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null; + const last_active_texture = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null; + gl && gl.activeTexture(gl.TEXTURE0); + const last_texture0 = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null; + const last_vertex_array = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null; + const last_array_buffer = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null; + const last_element_array_buffer = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null; + // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode); + const last_viewport = gl && gl.getParameter(gl.VIEWPORT) || null; + const last_scissor_box = gl && gl.getParameter(gl.SCISSOR_BOX) || null; + const last_blend_src_rgb = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null; + const last_blend_dst_rgb = gl && gl.getParameter(gl.BLEND_DST_RGB) || null; + const last_blend_src_alpha = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null; + const last_blend_dst_alpha = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null; + const last_blend_equation_rgb = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null; + const last_blend_equation_alpha = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null; + const last_enable_blend = gl && gl.getParameter(gl.BLEND) || null; + const last_enable_cull_face = gl && gl.getParameter(gl.CULL_FACE) || null; + const last_enable_depth_test = gl && gl.getParameter(gl.DEPTH_TEST) || null; + const last_enable_scissor_test = gl && gl.getParameter(gl.SCISSOR_TEST) || null; + gl.clearColor(0, 0, 0, 0); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl && gl.bindVertexArray(g_VaoHandle); + // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill + gl && gl.enable(gl.BLEND); + gl && gl.blendEquation(gl.FUNC_ADD); + gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE); + gl && gl.disable(gl.CULL_FACE); + gl && gl.disable(gl.DEPTH_TEST); + gl && gl.enable(gl.SCISSOR_TEST); + // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + // Setup viewport, orthographic projection matrix + // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps. + gl && gl.viewport(0, 0, fb_width, fb_height); + const L = draw_data.DisplayPos.x; + const R = draw_data.DisplayPos.x + draw_data.DisplaySize.x; + const T = draw_data.DisplayPos.y; + const B = draw_data.DisplayPos.y + draw_data.DisplaySize.y; + // we actually flip the bottom and top here to match with PIXI's texture usage + const ortho_projection = new Float32Array([ + 2.0 / (R - L), 0.0, 0.0, 0.0, + 0.0, 2.0 / (B - T), 0.0, 0.0, + 0.0, 0.0, -1.0, 0.0, + (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0, + ]); + gl && gl.useProgram(g_ShaderHandle); + gl && gl.uniform1i(g_AttribLocationTex, 0); + gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection); + // Render command lists + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.enableVertexAttribArray(g_AttribLocationPosition); + gl && gl.enableVertexAttribArray(g_AttribLocationUV); + gl && gl.enableVertexAttribArray(g_AttribLocationColor); + gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertPosOffset); + gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertUVOffset); + gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImDrawVertSize, ImDrawVertColOffset); + // Draw + const pos = draw_data.DisplayPos; + const idx_buffer_type = gl && ( gl.UNSIGNED_SHORT) || 0; + draw_data.IterateDrawLists((draw_list) => { + gl || console.log(draw_list); + gl || console.log("VtxBuffer.length", draw_list.VtxBuffer.length); + gl || console.log("IdxBuffer.length", draw_list.IdxBuffer.length); + let idx_buffer_offset = 0; + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW); + gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle); + gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW); + draw_list.IterateDrawCmds((draw_cmd) => { + gl || console.log(draw_cmd); + gl || console.log("ElemCount", draw_cmd.ElemCount); + gl || console.log("ClipRect", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y); + gl || console.log("TextureId", draw_cmd.TextureId); + if (!gl) { + console.log("i: pos.x pos.y uv.x uv.y col"); + for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) { + const view = new ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImDrawVertSize); + console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${("00000000" + view.col[0].toString(16)).substr(-8)}`); + } + } + if (draw_cmd.UserCallback !== null) { + // User callback (registered via ImDrawList::AddCallback) + draw_cmd.UserCallback(draw_list, draw_cmd); + } + else { + const clip_rect = new ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y); + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) { + // Apply scissor/clipping rectangle + gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y); + // Bind texture, Draw + gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId); + gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset); + } + } + idx_buffer_offset += draw_cmd.ElemCount * ImDrawIdxSize; + }); + }); + // Restore modified GL state + gl && (last_program !== null) && gl.useProgram(last_program); + gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0); + gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture); + gl && gl.disableVertexAttribArray(g_AttribLocationPosition); + gl && gl.disableVertexAttribArray(g_AttribLocationUV); + gl && gl.disableVertexAttribArray(g_AttribLocationColor); + gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array); + gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer); + gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer); + gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]); + gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]); + gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha); + gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); + gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND)); + gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE)); + gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST)); + gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST)); + // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]); + } +} +let gl = null; +let app = null; +class ImGuiWindowLayer extends Sprite { + constructor(window, tex) { + super(); + this.pluginName = "imgui_renderer"; + this.window = window; + } +} +class ImGuiWindow extends Container { + constructor(sizeX, sizeY, update) { + super(); + this.baseTex = new BaseRenderTexture({ scaleMode: SCALE_MODES.LINEAR, resolution: 1, type: TYPES.FLOAT, format: FORMATS.RGBA }); + this.tex = new RenderTexture(this.baseTex); + this.surface = new Sprite(this.tex); + this.imgui = new ImGuiWindowLayer(this, this.tex); + this.ctx = CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts); + SetCurrentContext(this.ctx); + this.io = GetIO(); + contexts.push(this.ctx); + contextIOs.push(this.io); + if (contexts.length == 1) { + CreateFontsTexture(); + } + if (typeof (window) !== "undefined") { + LoadIniSettingsFromMemory(window.localStorage.getItem("imgui.ini") || ""); + } + if (typeof (navigator) !== "undefined") { + this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null; + } + this.io.SetClipboardTextFn = (user_data, text) => { + clipboard_text = text; + // console.log(`set clipboard_text: "${clipboard_text}"`); + if (typeof navigator !== "undefined" && typeof navigator.clipboard !== "undefined") { + // console.log(`clipboard.writeText: "${clipboard_text}"`); + navigator.clipboard.writeText(clipboard_text).then(() => { + // console.log(`clipboard.writeText: "${clipboard_text}" done.`); + }); + } + }; + this.io.GetClipboardTextFn = (user_data) => { + // if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.readText: "${clipboard_text}"`); + // (navigator as any).clipboard.readText().then((text: string): void => { + // clipboard_text = text; + // console.log(`clipboard.readText: "${clipboard_text}" done.`); + // }); + // } + // console.log(`get clipboard_text: "${clipboard_text}"`); + return clipboard_text; + }; + this.io.ClipboardUserData = null; + // Setup back-end capabilities flags + this.io.BackendFlags |= ImGuiBackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional) + // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array. + this.io.KeyMap[ImGuiKey.Tab] = 9; + this.io.KeyMap[ImGuiKey.LeftArrow] = 37; + this.io.KeyMap[ImGuiKey.RightArrow] = 39; + this.io.KeyMap[ImGuiKey.UpArrow] = 38; + this.io.KeyMap[ImGuiKey.DownArrow] = 40; + this.io.KeyMap[ImGuiKey.PageUp] = 33; + this.io.KeyMap[ImGuiKey.PageDown] = 34; + this.io.KeyMap[ImGuiKey.Home] = 36; + this.io.KeyMap[ImGuiKey.End] = 35; + this.io.KeyMap[ImGuiKey.Insert] = 45; + this.io.KeyMap[ImGuiKey.Delete] = 46; + this.io.KeyMap[ImGuiKey.Backspace] = 8; + this.io.KeyMap[ImGuiKey.Space] = 32; + this.io.KeyMap[ImGuiKey.Enter] = 13; + this.io.KeyMap[ImGuiKey.Escape] = 27; + this.io.KeyMap[ImGuiKey.A] = 65; + this.io.KeyMap[ImGuiKey.C] = 67; + this.io.KeyMap[ImGuiKey.V] = 86; + this.io.KeyMap[ImGuiKey.X] = 88; + this.io.KeyMap[ImGuiKey.Y] = 89; + this.io.KeyMap[ImGuiKey.Z] = 90; + this.update = update; + this.resize(sizeX, sizeY); + this.imgui.pluginName = 'imgui_renderer'; + this.addChild(this.surface); + app.renderer.plugins.interaction.addListener("mousedown", this.mouseDown.bind(this)); + app.renderer.plugins.interaction.addListener("mouseup", this.mouseUp.bind(this)); + app.ticker.add(this.updateInternal.bind(this)); + this.interactive = false; + this.interactiveChildren = true; + this.surface.interactive = false; + } + getSizeX() { return this.sizeX; } + getSizeY() { return this.sizeY; } + withContext(cb) { + SetCurrentContext(this.ctx); + cb(); + } + mouseDown(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = true; + } + } + mouseUp(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = false; + } + } + resize(sizeX, sizeY) { + this.sizeX = sizeX; + this.sizeY = sizeY; + this.baseTex.resize(sizeX, sizeY); + this.tex.frame = new Rectangle(0, 0, this.baseTex.width, this.baseTex.height); + } + updateInternal(deltaTime) { + const dt = deltaTime * 1 / (1000 * settings.TARGET_FPMS); + SetCurrentContext(this.ctx); + if (this.io.WantSaveIniSettings) { + this.io.WantSaveIniSettings = false; + if (typeof (window) !== "undefined") { + window.localStorage.setItem("imgui.ini", SaveIniSettingsToMemory()); + } + } + this.io.DisplaySize.x = this.sizeX; + this.io.DisplaySize.y = this.sizeY; + this.io.DisplayFramebufferScale.x = 1; + this.io.DisplayFramebufferScale.y = 1; + this.io.DeltaTime = dt; + let localPos = this.toLocal(app.renderer.plugins.interaction.mouse.global); + if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY) { + localPos = new Point(-Number.MAX_VALUE, -Number.MAX_VALUE); + } + this.io.MousePos.x = localPos.x; + this.io.MousePos.y = localPos.y; + if (this.io.WantSetMousePos) { + console.log("TODO: MousePos", this.io.MousePos.x, this.io.MousePos.y); + } + if (typeof (document) !== "undefined") { + if (this.io.MouseDrawCursor) { + document.body.style.cursor = "none"; + } + else { + switch (GetMouseCursor()) { + case ImGuiMouseCursor.None: + document.body.style.cursor = "none"; + break; + default: + case ImGuiMouseCursor.Arrow: + document.body.style.cursor = "default"; + break; + case ImGuiMouseCursor.TextInput: + document.body.style.cursor = "text"; + break; // When hovering over InputText, etc. + case ImGuiMouseCursor.ResizeAll: + document.body.style.cursor = "move"; + break; // Unused + case ImGuiMouseCursor.ResizeNS: + document.body.style.cursor = "ns-resize"; + break; // When hovering over an horizontal border + case ImGuiMouseCursor.ResizeEW: + document.body.style.cursor = "ew-resize"; + break; // When hovering over a vertical border or a column + case ImGuiMouseCursor.ResizeNESW: + document.body.style.cursor = "nesw-resize"; + break; // When hovering over the bottom-left corner of a window + case ImGuiMouseCursor.ResizeNWSE: + document.body.style.cursor = "nwse-resize"; + break; // When hovering over the bottom-right corner of a window + case ImGuiMouseCursor.Hand: + document.body.style.cursor = "move"; + break; + } + } + } + // Gamepad navigation mapping [BETA] + for (let i = 0; i < this.io.NavInputs.length; ++i) { + this.io.NavInputs[i] = 0.0; + } + if (this.io.ConfigFlags & ImGuiConfigFlags.NavEnableGamepad) { + // Update gamepad inputs + const gamepads = (typeof (navigator) !== "undefined" && typeof (navigator.getGamepads) === "function") ? navigator.getGamepads() : []; + for (let i = 0; i < gamepads.length; ++i) { + const gamepad = gamepads[i]; + if (!gamepad) { + continue; + } + const buttons_count = gamepad.buttons.length; + const axes_count = gamepad.axes.length; + const MAP_BUTTON = function (NAV_NO, BUTTON_NO) { + if (!gamepad) { + return; + } + if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed) + this.io.NavInputs[NAV_NO] = 1.0; + }; + const MAP_ANALOG = function (NAV_NO, AXIS_NO, V0, V1) { + if (!gamepad) { + return; + } + let v = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0; + v = (v - V0) / (V1 - V0); + if (v > 1.0) + v = 1.0; + if (this.io.NavInputs[NAV_NO] < v) + this.io.NavInputs[NAV_NO] = v; + }; + // TODO: map input based on vendor and product id + // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id + const match = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/); + const match_chrome = gamepad.id.match(/^.*\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\).*$/); + const vendor = (match && match[1]) || (match_chrome && match_chrome[1]) || "0000"; + const product = (match && match[2]) || (match_chrome && match_chrome[2]) || "0000"; + switch (vendor + product) { + case "046dc216": // Logitech Logitech Dual Action (Vendor: 046d Product: c216) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 2); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 0); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "046dc21d": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d) + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_ANALOG(ImGuiNavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT + MAP_ANALOG(ImGuiNavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "2dc86001": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001) + case "2dc86101": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 0); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 4); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 6); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 7); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 8); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + default: // standard gamepad: https://w3c.github.io/gamepad/#remapping + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + } + } + } + NewFrame(); + this.update(dt); + EndFrame(); + Render(); + app.renderer.render(this.imgui, this.tex); + this.surface.interactive = this.io.WantCaptureMouse; + } +} +let canvas$1 = null; +//export let gl: WebGL2RenderingContext | null = null; +let g_ShaderHandle = null; +let g_VertHandle = null; +let g_FragHandle = null; +let g_AttribLocationTex = null; +let g_AttribLocationProjMtx = null; +let g_AttribLocationPosition = -1; +let g_AttribLocationUV = -1; +let g_AttribLocationColor = -1; +let g_VaoHandle = null; +let g_VboHandle = null; +let g_ElementsHandle = null; +let g_FontTexture = null; +function document_on_copy(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_cut(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_paste(event) { + if (event.clipboardData) { + clipboard_text = event.clipboardData.getData("text/plain"); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function window_on_gamepadconnected(event /* GamepadEvent */) { + console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.", event.gamepad.index, event.gamepad.id, event.gamepad.buttons.length, event.gamepad.axes.length); +} +function window_on_gamepaddisconnected(event /* GamepadEvent */) { + console.log("Gamepad disconnected at index %d: %s.", event.gamepad.index, event.gamepad.id); +} +function canvas_on_blur(event) { + for (var io of contextIOs) { + io.KeyCtrl = false; + io.KeyShift = false; + io.KeyAlt = false; + io.KeySuper = false; + for (let i = 0; i < io.KeysDown.length; ++i) { + io.KeysDown[i] = false; + } + for (let i = 0; i < io.MouseDown.length; ++i) { + io.MouseDown[i] = false; + } + } +} +function canvas_on_keydown(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = true; + // forward to the keypress event + if ( /*io.WantCaptureKeyboard ||*/event.key === "Tab") { + event.preventDefault(); + } + } +} +function canvas_on_keyup(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = false; + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +function canvas_on_keypress(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.AddInputCharacter(event.charCode); + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +// MouseEvent.button +// A number representing a given button: +// 0: Main button pressed, usually the left button or the un-initialized state +// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present) +// 2: Secondary button pressed, usually the right button +// 3: Fourth button, typically the Browser Back button +// 4: Fifth button, typically the Browser Forward button +const mouse_button_map = [0, 2, 1, 3, 4]; +function canvas_on_contextmenu(event) { + for (var io of contextIOs) { + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function canvas_on_wheel(event) { + for (var io of contextIOs) { + let scale = 1.0; + switch (event.deltaMode) { + case event.DOM_DELTA_PIXEL: + scale = 0.01; + break; + case event.DOM_DELTA_LINE: + scale = 0.2; + break; + case event.DOM_DELTA_PAGE: + scale = 1.0; + break; + } + io.MouseWheelH = event.deltaX * scale; + io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text. + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function PrePIXIInit() { + Renderer.registerPlugin("imgui_renderer", fromConstructor(ImGuiImplInternalRenderer)); +} +function Init(_app) { + // Setup Dear ImGui binding + IMGUI_CHECKVERSION(); + if (typeof (document) !== "undefined") { + document.body.addEventListener("copy", document_on_copy); + document.body.addEventListener("cut", document_on_cut); + document.body.addEventListener("paste", document_on_paste); + } + if (typeof (window) !== "undefined") { + window.addEventListener("gamepadconnected", window_on_gamepadconnected); + window.addEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + app = _app; + gl = app.renderer.gl; + canvas$1 = app.view; + gl.getExtension("EXT_color_buffer_float"); + if (canvas$1 !== null) { + canvas$1.style.touchAction = "none"; // Disable browser handling of all panning and zooming gestures. + canvas$1.addEventListener("blur", canvas_on_blur); + canvas$1.addEventListener("keydown", canvas_on_keydown); + canvas$1.addEventListener("keyup", canvas_on_keyup); + canvas$1.addEventListener("keypress", canvas_on_keypress); + canvas$1.addEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.addEventListener("wheel", canvas_on_wheel); + } + CreateDeviceObjects(); +} +function Shutdown() { + DestroyDeviceObjects(); + if (canvas$1 !== null) { + canvas$1.removeEventListener("blur", canvas_on_blur); + canvas$1.removeEventListener("keydown", canvas_on_keydown); + canvas$1.removeEventListener("keyup", canvas_on_keyup); + canvas$1.removeEventListener("keypress", canvas_on_keypress); + canvas$1.removeEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.removeEventListener("wheel", canvas_on_wheel); + } + app = null; + canvas$1 = null; + if (typeof (window) !== "undefined") { + window.removeEventListener("gamepadconnected", window_on_gamepadconnected); + window.removeEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + if (typeof (document) !== "undefined") { + document.body.removeEventListener("copy", document_on_copy); + document.body.removeEventListener("cut", document_on_cut); + document.body.removeEventListener("paste", document_on_paste); + } +} +function CreateFontsTexture() { + const io = GetIO(); + // Backup GL state + const last_texture = gl && gl.getParameter(gl.TEXTURE_BINDING_2D); + // Build texture atlas + // const width: number = 256; + // const height: number = 256; + // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff); + const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory. + // console.log(`font texture ${width} x ${height} @ ${pixels.length}`); + // Upload texture to graphics system + g_FontTexture = gl && gl.createTexture(); + gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2 + gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels); + // Store our identifier + io.Fonts.TexID = g_FontTexture || { foo: "bar" }; + // console.log("font texture id", g_FontTexture); + // Restore modified GL state + gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture); +} +function DestroyFontsTexture() { + const io = GetIO(); + io.Fonts.TexID = null; + gl && gl.deleteTexture(g_FontTexture); + g_FontTexture = null; +} +function CreateDeviceObjects() { + const vertex_shader = [ + "#version 300 es", + "uniform mat4 ProjMtx;", + "in vec2 Position;", + "in vec2 UV;", + "in vec4 Color;", + "out vec2 Frag_UV;", + "out vec4 Frag_Color;", + "void main() {", + " Frag_UV = UV;", + " Frag_Color = Color;", + " gl_Position = ProjMtx * vec4(Position.xy,0,1);", + "}", + ]; + const fragment_shader = [ + "#version 300 es", + "precision mediump float;", + "uniform sampler2D Texture;", + "in vec2 Frag_UV;", + "in vec4 Frag_Color;", + "out vec4 OutColor;", + "void main() {", + " OutColor = Frag_Color * texture(Texture, Frag_UV);", + "}", + ]; + g_ShaderHandle = gl && gl.createProgram(); + g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER); + g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER); + gl && gl.shaderSource(g_VertHandle, vertex_shader.join("\n")); + gl && gl.shaderSource(g_FragHandle, fragment_shader.join("\n")); + gl && gl.compileShader(g_VertHandle); + gl && gl.compileShader(g_FragHandle); + gl && gl.attachShader(g_ShaderHandle, g_VertHandle); + gl && gl.attachShader(g_ShaderHandle, g_FragHandle); + gl && gl.linkProgram(g_ShaderHandle); + g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle, "Texture"); + g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle, "ProjMtx"); + g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle, "Position") || 0; + g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle, "UV") || 0; + g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle, "Color") || 0; + g_VaoHandle = gl && gl.createVertexArray(); + g_VboHandle = gl && gl.createBuffer(); + g_ElementsHandle = gl && gl.createBuffer(); +} +function DestroyDeviceObjects() { + DestroyFontsTexture(); + gl && gl.deleteVertexArray(g_VaoHandle); + g_VaoHandle = null; + gl && gl.deleteBuffer(g_VboHandle); + g_VboHandle = null; + gl && gl.deleteBuffer(g_ElementsHandle); + g_ElementsHandle = null; + g_AttribLocationTex = null; + g_AttribLocationProjMtx = null; + g_AttribLocationPosition = -1; + g_AttribLocationUV = -1; + g_AttribLocationColor = -1; + gl && gl.deleteProgram(g_ShaderHandle); + g_ShaderHandle = null; + gl && gl.deleteShader(g_VertHandle); + g_VertHandle = null; + gl && gl.deleteShader(g_FragHandle); + g_FragHandle = null; +} + +exports.ImGuiWindow = ImGuiWindow; +exports.Init = Init; +exports.PrePIXIInit = PrePIXIInit; +exports.Shutdown = Shutdown; +//# sourceMappingURL=imgui_impl.js.map diff --git a/imgui_impl.js.map b/imgui_impl.js.map new file mode 100644 index 0000000..30848af --- /dev/null +++ b/imgui_impl.js.map @@ -0,0 +1 @@ +{"version":3,"file":"imgui_impl.js","sources":["node_modules/rollup-plugin-node-builtins/src/es6/empty.js","node_modules/rollup-plugin-node-builtins/src/es6/path.js","node_modules/imgui-js/bind-imgui.js","node_modules/imgui-js/imgui.ts","node_modules/es6-promise-polyfill/promise.js","node_modules/object-assign/index.js","node_modules/@pixi/polyfill/lib/polyfill.es.js","node_modules/ismobilejs/src/isMobile.js","node_modules/@pixi/settings/lib/settings.es.js","node_modules/eventemitter3/index.js","node_modules/earcut/src/earcut.js","node_modules/rollup-plugin-node-builtins/src/es6/punycode.js","node_modules/rollup-plugin-node-builtins/src/es6/util.js","node_modules/rollup-plugin-node-builtins/src/es6/qs.js","node_modules/rollup-plugin-node-builtins/src/es6/url.js","node_modules/@pixi/constants/lib/constants.es.js","node_modules/@pixi/utils/lib/utils.es.js","node_modules/@pixi/math/lib/math.es.js","node_modules/@pixi/display/lib/display.es.js","node_modules/@pixi/accessibility/lib/accessibility.es.js","node_modules/@pixi/runner/lib/runner.es.js","node_modules/@pixi/ticker/lib/ticker.es.js","node_modules/@pixi/core/lib/core.es.js","node_modules/@pixi/extract/lib/extract.es.js","node_modules/@pixi/interaction/lib/interaction.es.js","node_modules/@pixi/graphics/lib/graphics.es.js","node_modules/@pixi/sprite/lib/sprite.es.js","node_modules/@pixi/text/lib/text.es.js","node_modules/@pixi/prepare/lib/prepare.es.js","node_modules/@pixi/app/lib/app.es.js","node_modules/parse-uri/index.js","node_modules/mini-signals/lib/mini-signals.js","node_modules/resource-loader/dist/resource-loader.esm.js","node_modules/@pixi/loaders/lib/loaders.es.js","node_modules/@pixi/particles/lib/particles.es.js","node_modules/@pixi/spritesheet/lib/spritesheet.es.js","node_modules/@pixi/sprite-tiling/lib/sprite-tiling.es.js","node_modules/@pixi/text-bitmap/lib/text-bitmap.es.js","node_modules/@pixi/filter-color-matrix/lib/filter-color-matrix.es.js","node_modules/@pixi/mixin-cache-as-bitmap/lib/mixin-cache-as-bitmap.es.js","node_modules/@pixi/mixin-get-child-by-name/lib/mixin-get-child-by-name.es.js","node_modules/@pixi/mixin-get-global-position/lib/mixin-get-global-position.es.js","node_modules/@pixi/mesh/lib/mesh.es.js","node_modules/pixi.js/lib/pixi.es.js","utils.ts","imgui_impl.ts"],"sourcesContent":["export default {};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// resolves . and .. elements in a path array with directory names there\n// must be no slashes, empty elements, or device names (c:\\) in the array\n// (so also no leading and trailing slashes - it does not distinguish\n// relative and absolute paths)\nfunction normalizeArray(parts, allowAboveRoot) {\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = parts.length - 1; i >= 0; i--) {\n var last = parts[i];\n if (last === '.') {\n parts.splice(i, 1);\n } else if (last === '..') {\n parts.splice(i, 1);\n up++;\n } else if (up) {\n parts.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (allowAboveRoot) {\n for (; up--; up) {\n parts.unshift('..');\n }\n }\n\n return parts;\n}\n\n// Split a filename into [root, dir, basename, ext], unix version\n// 'root' is just a slash, or nothing.\nvar splitPathRe =\n /^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;\nvar splitPath = function(filename) {\n return splitPathRe.exec(filename).slice(1);\n};\n\n// path.resolve([from ...], to)\n// posix version\nexport function resolve() {\n var resolvedPath = '',\n resolvedAbsolute = false;\n\n for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {\n var path = (i >= 0) ? arguments[i] : '/';\n\n // Skip empty and invalid entries\n if (typeof path !== 'string') {\n throw new TypeError('Arguments to path.resolve must be strings');\n } else if (!path) {\n continue;\n }\n\n resolvedPath = path + '/' + resolvedPath;\n resolvedAbsolute = path.charAt(0) === '/';\n }\n\n // At this point the path should be resolved to a full absolute path, but\n // handle relative paths to be safe (might happen when process.cwd() fails)\n\n // Normalize the path\n resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {\n return !!p;\n }), !resolvedAbsolute).join('/');\n\n return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';\n};\n\n// path.normalize(path)\n// posix version\nexport function normalize(path) {\n var isPathAbsolute = isAbsolute(path),\n trailingSlash = substr(path, -1) === '/';\n\n // Normalize the path\n path = normalizeArray(filter(path.split('/'), function(p) {\n return !!p;\n }), !isPathAbsolute).join('/');\n\n if (!path && !isPathAbsolute) {\n path = '.';\n }\n if (path && trailingSlash) {\n path += '/';\n }\n\n return (isPathAbsolute ? '/' : '') + path;\n};\n\n// posix version\nexport function isAbsolute(path) {\n return path.charAt(0) === '/';\n}\n\n// posix version\nexport function join() {\n var paths = Array.prototype.slice.call(arguments, 0);\n return normalize(filter(paths, function(p, index) {\n if (typeof p !== 'string') {\n throw new TypeError('Arguments to path.join must be strings');\n }\n return p;\n }).join('/'));\n}\n\n\n// path.relative(from, to)\n// posix version\nexport function relative(from, to) {\n from = resolve(from).substr(1);\n to = resolve(to).substr(1);\n\n function trim(arr) {\n var start = 0;\n for (; start < arr.length; start++) {\n if (arr[start] !== '') break;\n }\n\n var end = arr.length - 1;\n for (; end >= 0; end--) {\n if (arr[end] !== '') break;\n }\n\n if (start > end) return [];\n return arr.slice(start, end - start + 1);\n }\n\n var fromParts = trim(from.split('/'));\n var toParts = trim(to.split('/'));\n\n var length = Math.min(fromParts.length, toParts.length);\n var samePartsLength = length;\n for (var i = 0; i < length; i++) {\n if (fromParts[i] !== toParts[i]) {\n samePartsLength = i;\n break;\n }\n }\n\n var outputParts = [];\n for (var i = samePartsLength; i < fromParts.length; i++) {\n outputParts.push('..');\n }\n\n outputParts = outputParts.concat(toParts.slice(samePartsLength));\n\n return outputParts.join('/');\n}\n\nexport var sep = '/';\nexport var delimiter = ':';\n\nexport function dirname(path) {\n var result = splitPath(path),\n root = result[0],\n dir = result[1];\n\n if (!root && !dir) {\n // No dirname whatsoever\n return '.';\n }\n\n if (dir) {\n // It has a dirname, strip trailing slash\n dir = dir.substr(0, dir.length - 1);\n }\n\n return root + dir;\n}\n\nexport function basename(path, ext) {\n var f = splitPath(path)[2];\n // TODO: make this comparison case-insensitive on windows?\n if (ext && f.substr(-1 * ext.length) === ext) {\n f = f.substr(0, f.length - ext.length);\n }\n return f;\n}\n\n\nexport function extname(path) {\n return splitPath(path)[3];\n}\nexport default {\n extname: extname,\n basename: basename,\n dirname: dirname,\n sep: sep,\n delimiter: delimiter,\n relative: relative,\n join: join,\n isAbsolute: isAbsolute,\n normalize: normalize,\n resolve: resolve\n};\nfunction filter (xs, f) {\n if (xs.filter) return xs.filter(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n if (f(xs[i], i, xs)) res.push(xs[i]);\n }\n return res;\n}\n\n// String.prototype.substr - negative index don't work in IE8\nvar substr = 'ab'.substr(-1) === 'b' ?\n function (str, start, len) { return str.substr(start, len) } :\n function (str, start, len) {\n if (start < 0) start = str.length + start;\n return str.substr(start, len);\n }\n;\n","\nvar Module = (function() {\n var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;\n return (\nfunction(Module) {\n Module = Module || {};\n\nvar Module=typeof Module!==\"undefined\"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key]}}Module[\"arguments\"]=[];Module[\"thisProgram\"]=\"./this.program\";Module[\"quit\"]=function(status,toThrow){throw toThrow};Module[\"preRun\"]=[];Module[\"postRun\"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window===\"object\";ENVIRONMENT_IS_WORKER=typeof importScripts===\"function\";ENVIRONMENT_HAS_NODE=typeof process===\"object\"&&typeof require===\"function\";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory=\"\";function locateFile(path){if(Module[\"locateFile\"]){return Module[\"locateFile\"](path,scriptDirectory)}else{return scriptDirectory+path}}if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+\"/\";var nodeFS;var nodePath;Module[\"read\"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require(\"fs\");if(!nodePath)nodePath=require(\"path\");filename=nodePath[\"normalize\"](filename);ret=nodeFS[\"readFileSync\"](filename)}return binary?ret:ret.toString()};Module[\"readBinary\"]=function readBinary(filename){var ret=Module[\"read\"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}assert(ret.buffer);return ret};if(process[\"argv\"].length>1){Module[\"thisProgram\"]=process[\"argv\"][1].replace(/\\\\/g,\"/\")}Module[\"arguments\"]=process[\"argv\"].slice(2);process[\"on\"](\"uncaughtException\",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process[\"on\"](\"unhandledRejection\",abort);Module[\"quit\"]=function(status){process[\"exit\"](status)};Module[\"inspect\"]=function(){return\"[Emscripten Module object]\"}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!=\"undefined\"){Module[\"read\"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)}}Module[\"readBinary\"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer===\"function\"){return new Uint8Array(readbuffer(f))}data=read(f,\"binary\");assert(typeof data===\"object\");return data};if(typeof scriptArgs!=\"undefined\"){Module[\"arguments\"]=scriptArgs}else if(typeof arguments!=\"undefined\"){Module[\"arguments\"]=arguments}if(typeof quit===\"function\"){Module[\"quit\"]=function(status){quit(status)}}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf(\"blob:\")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf(\"/\")+1)}else{scriptDirectory=\"\"}Module[\"read\"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module[\"readBinary\"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.responseType=\"arraybuffer\";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}}}Module[\"readAsync\"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,true);xhr.responseType=\"arraybuffer\";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror()};xhr.onerror=onerror;xhr.send(null)};Module[\"setWindowTitle\"]=function(title){document.title=title}}else{}var out=Module[\"print\"]||(typeof console!==\"undefined\"?console.log.bind(console):typeof print!==\"undefined\"?print:null);var err=Module[\"printErr\"]||(typeof printErr!==\"undefined\"?printErr:typeof console!==\"undefined\"&&console.warn.bind(console)||out);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key]}}moduleOverrides=undefined;var asm2wasmImports={\"f64-rem\":function(x,y){return x%y},\"debugger\":function(){debugger}};var functionPointers=new Array(0);var tempRet0=0;var setTempRet0=function(value){tempRet0=value};if(typeof WebAssembly!==\"object\"){err(\"no native wasm support detected\")}var wasmMemory;var wasmTable;var ABORT=false;var EXITSTATUS=0;function assert(condition,text){if(!condition){abort(\"Assertion failed: \"+text)}}var UTF8Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf8\"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str=\"\";while(idx>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):\"\"}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4}return len}var UTF16Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf-16le\"):undefined;var WASM_PAGE_SIZE=65536;var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferViews(){Module[\"HEAP8\"]=HEAP8=new Int8Array(buffer);Module[\"HEAP16\"]=HEAP16=new Int16Array(buffer);Module[\"HEAP32\"]=HEAP32=new Int32Array(buffer);Module[\"HEAPU8\"]=HEAPU8=new Uint8Array(buffer);Module[\"HEAPU16\"]=HEAPU16=new Uint16Array(buffer);Module[\"HEAPU32\"]=HEAPU32=new Uint32Array(buffer);Module[\"HEAPF32\"]=HEAPF32=new Float32Array(buffer);Module[\"HEAPF64\"]=HEAPF64=new Float64Array(buffer)}var DYNAMIC_BASE=5315584,DYNAMICTOP_PTR=72672;var TOTAL_STACK=5242880;var INITIAL_TOTAL_MEMORY=Module[\"TOTAL_MEMORY\"]||16777216;if(INITIAL_TOTAL_MEMORY>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback==\"function\"){callback();continue}var func=callback.func;if(typeof func===\"number\"){if(callback.arg===undefined){Module[\"dynCall_v\"](func)}else{Module[\"dynCall_vi\"](func,callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;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 ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__)}function preMain(){callRuntimeCallbacks(__ATMAIN__)}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 addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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()}}}Module[\"preloadedImages\"]={};Module[\"preloadedAudios\"]={};var dataURIPrefix=\"data:application/octet-stream;base64,\";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile=\"data:application/octet-stream;base64,AGFzbQEAAAAB2AyxAWACf38Bf2ACf38AYAJ8fAF8YAF/AX9gAX8AYAN/f38Bf2AEf39/fwBgA39/fwBgAn9/AX1gBH9/f38Bf2AEf399fwBgAn99AX9gA399fQF/YAZ9fX1/f38AYAR/fX9/AGAFf39/fX8AYAABfGADf31/AGAFf39/f38Bf2AIf39/f39/f38Bf2AHf39/f39/fwF/YAZ/f39/f38Bf2AGf398fH9/AX9gCX9/f39/f39/fwF/YAN9f38AYAl/f39/f39/f38AYAZ/f39/f38AYAJ/fQBgAX8BfWAAAX9gAn19AGABfQBgAAF9YAAAYAN/f30Bf2AGf39/fX9/AGAIf399fX1/f38AYAR/fX99AX9gBn9/fX9/fwBgBX9/f399AGAHf39/f31/fQBgBn9/f399fwBgB39/f39/f38AYAd/f39/f399AGAGf39/f399AGAFf39/f38AYAZ/f31/f30AYAV/f31/fwBgCH9/fX9/f31/AGALf39/f39/f39/f38AYAl/f39/f39/fX8AYAh/f39/f399fwBgBH9/f30AYAZ/f319fX8AYAp/f39/f39/f39/AGADf399AGAGf3x/f39/AX9gA39+fwF+YAF/AXxgA39/fwF9YAR/f319AX9gCH9/fX19f39/AX9gBH9/fX8Bf2AFf399f30Bf2AHf39/fHx/fwF/YAR/f399AX9gBX9/f31/AX9gBn9/f31/fwF/YAp/f39/f39/f39/AX9gA399fQBgB399fX1/f38AYAd/f399fX1/AGAHf39/fX9/fQBgB39/f31/f38AYAl/f399f39/fX8AYAd/f39/f31/AGAIf39/f399f30AYAh/f39/f39/fQBgCH9/f39/f39/AGAKf39/f39/f399fwBgDH9/f39/f39/f39/fwBgDX9/f39/f39/f39/f38AYAN/f3wAYAN/f38BfGABfQF9YAJ9fQF9YAV/fX19fQBgBH9/fX0AYAJ/fQF9YAR9fX19AX9gBX9/f319AGADfX19AX1gAn19AX9gBH19fX0BfWALf319fX19fX19fX8AYAl/f31/f39/fX8AYAp/f31/f39/f31/AGAFf31/f30Bf2AIf399fX9/f38AYAt/f319fX19fX19fQBgCH9/f39/fX1/AGAHf39/fX1/fwBgBX9/fX9/AX9gCH9/f399fX9/AGAHf39/fX19fQBgCn9/fX19fX19fX8AYAx/f319fX19fX19fX8AYAd/fX19fX19AGAEf31/fwF/YAh/f399f39/fQF/YAV/fX9/fwF/YAV/fX5+fwF/YAZ/fX19f30Bf2AGf318fH99AX9gAn98AXxgAn9+AX5gCX9/f399f39/fQF/YAd/f319fX99AX9gCX9/f319fX9/fQF/YAZ/f31/f38Bf2AIf39/fX9/f38Bf2AKf39/f39/f31/fwF/YAl/f39/f399f38Bf2AJf39/fn5/fX9/AX9gCX9/f319f31/fwF/YAl/f398fH99f38Bf2AFfHx8fX0BfWADfHx9AXxgA3x8fAF8YAV9fX19fQF9YAN+fn4BfWADfn5+AX5gBX5+fn19AX1gBX9/f319AX1gB39/f39/f30Bf2AIf39/f39/f30Bf2AGf399fX99AX9gB39/f319f30Bf2AGf399fX9/AX9gB39/f31/fX8AYAl/f39/f399fX8AYAd/f39/fX1/AGAEf319fQF9YAZ/f39/f30Bf2AHf399f39/fQF/YAJ/fgBgAn9/AX5gA35/fwF/YAJ+fwF/YAJ8fwF8YAV/f39/fwF8YAZ/f39/f38BfGACfX8BfWABfAF9YAJ9fwF/YAN/f34AYAF/AX5gAn9/AXxgBH9/f38BfWAHf398f39/fwF/YAV/f399fQF/YAl/f399fX1/f38Bf2AGf39/fX99AX9gCH9/f398fH9/AX9gBX9/f399AX9gBn9/f399fwF/YAd/f39/fX9/AX9gC39/f39/f39/f39/AX9gCX9/f319fX9/fwBgCH9/f399fX1/AGAHf39/f31/fwBgCH9/f399f399AGAIf39/f31/f38AYAp/f39/fX9/f31/AGAJf39/f39/fX99AGAJf39/f39/f399AGALf39/f39/f39/fX8AAvQDNwNlbnYBYgA2A2VudgFjAE4DZW52AWQAGgNlbnYBZQAEA2VudgFmAAADZW52AWcAUQNlbnYBaABTA2VudgFpAAcDZW52AWoAAANlbnYBawAtA2VudgFsACEDZW52AW0ABwNlbnYBbgAAA2VudgFvAAYDZW52AXAAAANlbnYBcQAaA2VudgFyAAQDZW52AXMABANlbnYBdAAEA2VudgF1AAAI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/AYLC0H89gEoAgAhASAAQZypBCgCACABQf8BcUHyBmoRAQALWgEDfyMEIQIjBEEQaiQEIAJBmKkEKAIAIgNBsCtqIABBBHRqIgApAgA3AgAgAiAAKQIINwIIIAIgAioCDCADQZAqaioCACABlJQ4AgwgAhChAyEEIAIkBCAECxYAIAAgASkCADcCACAAIAIpAgA3AggLBgBBNBADCwwAIAAgASAAIAFdGwvGAwEDfyACQYDAAE4EQCAAIAEgAhAjGiAADwsgACEEIAAgAmohAyAAQQNxIAFBA3FGBEADQCAAQQNxBEAgAkUEQCAEDwsgACABLAAAOgAAIABBAWohACABQQFqIQEgAkEBayECDAELCyADQXxxIgJBQGohBQNAIAAgBUwEQCAAIAEoAgA2AgAgACABKAIENgIEIAAgASgCCDYCCCAAIAEoAgw2AgwgACABKAIQNgIQIAAgASgCFDYCFCAAIAEoAhg2AhggACABKAIcNgIcIAAgASgCIDYCICAAIAEoAiQ2AiQgACABKAIoNgIoIAAgASgCLDYCLCAAIAEoAjA2AjAgACABKAI0NgI0IAAgASgCODYCOCAAIAEoAjw2AjwgAEFAayEAIAFBQGshAQwBCwsDQCAAIAJIBEAgACABKAIANgIAIABBBGohACABQQRqIQEMAQsLBSADQQRrIQIDQCAAIAJIBEAgACABLAAAOgAAIAAgASwAAToAASAAIAEsAAI6AAIgACABLAADOgADIABBBGohACABQQRqIQEMAQsLCwNAIAAgA0gEQCAAIAEsAAA6AAAgAEEBaiEAIAFBAWohAQwBCwsgBAsSACAAQbT4ATYCACAAQQRqED4LKgAgACgCEBBbBEBBACEABSAAQQRqIgAsAAtBAEgEQCAAKAIAIQALCyAACxIAIAAgARDpECAAQcD4ATYCAAsQACAALQABIAAtAABBCHRyCyoBAX8jBCEBIwRBEGokBCABIAA2AgBBBBA/IgAgASgCADYCACABJAQgAAslAQF/IAEoAgAhAiAAQgA3AgAgAEEANgIIIAAgAUEEaiACEJMBCwgAQQwQA0EACwcAIABBBGoLJwEBfyAAKAIIIgEEQCAAQQA2AgQgAEEANgIAIAEQQSAAQQA2AggLCw0AIAAoAgggAUECdGoLFgAgACABKgIAIAKUIAEqAgQgApQQMgsp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QCADIAMoApACQQFyNgKQAgtBAQsLBgAgAKiyCw0AIABB1ABqIAEQmgILFAAgASACIAAgACACXhsgACABXRsLEQBBACAAQQRqIAAoAggQWxsLIQAgAEP//39/Q///f38QMiAAQQhqQ///f/9D//9//xAyCxAAIAAoAggiAARAIAAQQQsLFwAgAEEANgIEIABBADYCACAAQQA2AggLIQEBfyMEIQIjBEEQaiQEIAIgATYCACAAIAIQ2gIgAiQEC5gCAQR/IAAgAmohBCABQf8BcSEDIAJBwwBOBEADQCAAQQNxBEAgACADOgAAIABBAWohAAwBCwsgA0EIdCADciADQRB0ciADQRh0ciEBIARBfHEiBUFAaiEGA0AgACAGTARAIAAgATYCACAAIAE2AgQgACABNgIIIAAgATYCDCAAIAE2AhAgACABNgIUIAAgATYCGCAAIAE2AhwgACABNgIgIAAgATYCJCAAIAE2AiggACABNgIsIAAgATYCMCAAIAE2AjQgACABNgI4IAAgATYCPCAAQUBrIQAMAQsLA0AgACAFSARAIAAgATYCACAAQQRqIQAMAQsLCwNAIAAgBEgEQCAAIAM6AAAgAEEBaiEADAELCyAEIAJrC58BAQN/EDwiAiwAf0UEQEGYqQQoAgAhBCABQwAAAABdIQMgAEMAAAAAXARAIAIqArQDQwAAAAAgASADGyACKgIMIAIqAliTIACSkpIhACACKgK4AyEBBSADBEAgBEHUKmoqAgAhAQsgAioC0AEhAAsgAiABIACSOALIASACIAIoAtQBNgLMASACIAIpAvQBNwLoASACIAIoAvwBNgLwAQsLqwECA38BfSMEIQUjBEEQaiQEQZipBCgCACEGIAMEQCABIAIQkAEhAgsgBSEDIAZBsDFqKAIAIQcgBkG0MWoqAgAhCCABIAJGBEAgAEMAAAAAIAgQMgUgAyAHIAhD//9/fyAEIAEgAkEAEJoDIAMqAgAiBEMAAAAAXgRAIAMgBCAIIAcqAgCVkyIEOAIACyADIARDMzNzP5KosjgCACAAIAMpAwA3AgALIAUkBAsnAEGYqQQoAgBBNGogAEECdGooAgAiAEF/SgR/IAAgARD2AgVBAAsLNQECfyMEIQMjBEEQaiQEAn8gACgCACEEIAMgARB3IAQLIAMoAgAgAigCABALIAMQMSADJAQL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KAIIRgRAIAEQ4QELIAEgACABKAIAEPIFIgI2AgAgASACNgIIIAAgARCCAQwFCyABEOEBIAFBADYCCCABQQA2AgAgAUEAOgAPDAQLIAEQ4QEgASAAKAIsIgI2AgggASACNgIAIAFBADoADwwDCyAAKAIsIQQgACABEIIBIAEQ4QEgASwAEARAIAEgBDYCACAEIQIFIAEoAgAiAiAESARAA0ACQAJ/IAAgAhDiAUH//wNxQQpGIQwgASgCACECIAwLDQAgASACQQFqIgI2AgAgAiAESA0BCwsLCyABIAI2AgggAUEAOgAPDAILQQMhAwwBCyAFQYCADEgEQCAFQY2ABGsEQEEDIQMMAgsgASgCBCABKAIIRgRAIAEgACABKAIAEPIFNgIAIAAgARCCAQUgACABELgECwwBCwJAAkACQCAFQYCADGsOAgIAAQsgARDhASABIAEoAghBAWo2AgggACABEIIBIAEgASgCCDYCACABQQA6AA8MAgtBAyEDDAELIAAgARCCASABEOEBIAEoAggiAkEASgRAIAEgAkF/aiICNgIICyABIAI2AgAgAUEAOgAPCyADQQNGBEBBACAFIAVB//8DShsiAkEASgRAAkAgBiACOwEAIAJBCkYEQCABLAAQDQELAkACQCABLAAMRQ0AIAEoAgQgASgCCEcNACABKAIAIgIgACgCLE4NACAAIQUgAUEYaiACQQFBARC5BCIEBEAgBCAFIAIQ4gE7AQALIAAgASgCAEEBENkDIAAgASgCACAGQQEQkgMEQCABIAEoAgBBAWo2AgAgAUEAOgAPCwwBCyAAIAEQkwMgACABKAIAIAZBARCSAwRAIAEgASgCAEEBEPcFIAEgASgCAEEBajYCACABQQA6AA8LCwsLBSADQckARgRAIAEoAgQgASgCCEYEQCABKAIAIgIgACgCLEgEQCAAIAEgAkEBENoDCwUgACABEJMDCyABQQA6AA8FIANBzgBGBEAgASgCBCABKAIIRgRAIAAgARCCASABKAIAIgJBAEoEQCAAIAEgAkF/akEBENoDIAEgASgCAEF/ajYCAAsFIAAgARCTAwsgAUEAOgAPCwsLIAkkBAtIAQF/IAFBGGogAiADQQAQuQQiBEEARyADQQBKcQRAQQAhAQNAIAFBAXQgBGogACABIAJqEOIBOwEAIAFBAWoiASADRw0A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CyQAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAAQQNxQZwLahExAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBA3FBmAtqETYACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBlAtqERkACyIAIAEgAiADIAQgBSAGIAcgCCAJIAogAEEBcUGSC2oRTwALHgAgASACIAMgBCAFIAYgByAIIABBA3FBjgtqEU4ACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBigtqETIACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQYgLahFNAAscACABIAIgAyAEIAUgBiAHIABBB3FBgAtqESoACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQf4KahEzAAscACABIAIgAyAEIAUgBiAHIABBA3FB+gpqESsACxoAIAEgAiADIAQgBSAGIABBD3FB6gpqERoACw0AIABB+ClqQQAQwAELHgAgASACIAMgBCAFIAYgByAIIABBAXFB6ApqEUwACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHmCmoRSwALGgAgASACIAMgBCAFIAYgAEEDcUHiCmoRLAALGAAgASACIAMgBCAFIABBD3FB0gpqES0ACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHQCmoRKAALGgAgASACIAMgBCAFIAYgAEEDcUHMCmoRKQALGAAgASACIAMgBCAFIABBA3FByApqEScACxYAIAEgAiADIAQgAEEfcUGoCmoRBgALIAAgASACIAMgBCAFIAYgByAIIAkgAEEBcUGmCmoRSgALHAAgASACIAMgBCAFIAYgByAAQQFxQaQKahFJAAscACABIAIgAyAEIAUgBiAHIABBAXFBogpqEUgACxoAIAEgAiADIAQgBSAGIABBA3FBngpqESMACxgAIAEgAiADIAQgBSAAQQNxQZoKahEPAAscACABIAIgAyAEIAUgBiAHIABBAXFBmApqEUcACxYAIAEgAiADIAQgAEEDcUGUCmoRNAALFQAgASACIAMgAEH/AHFBlAlqEQcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQZIJahEwAAsaACABIAIgAyAEIAUgBiAAQQFxQZAJahEmAAsaACABIAIgAyAEIAUgBiAAQQFxQY4JahEuAAsYACABIAIgAyAEIAUgAEEDcUGKCWoRLwALFgAgASACIAMgBCAAQQNxQYYJahEKAAseACABIAIgAyAEIAUgBiAHIAggAEEBcUGECWoRJAALGgAgASACIAMgBCAFIAYgAEEBcUGCCWoRNQALFAAgASACIAMgAEEPcUHyCGoRNwALFgAgASACIAMgBCAAQQNxQe4GahEOAAsUACABIAIgAyAAQQFxQewGahERAAscACABIAIgAyAEIAUgBiAHIABBAXFB6gZqEUYACxQAIAEgAiADIABBAXFB6AZqEUUACxQAIAEgAiADIABBAXFB3gRqERgACxoAIAEgAiADIAQgBSAGIABBA3FB2gRqEQ0ACxUAQZipBCgCAEE0aiAAQQJ0aigCAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBAXFBggRqEUQACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBB3FB+gNqERcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQ9xQeoDahETAAscACABIAIgAyAEIAUgBiAHIABBD3FB2gNqERQACxoAIAEgAiADIAQgBSAGIABBH3FBugNqERUACxgAIAEgAiADIAQgBSAAQQ9xQaoDahESAAsWACABIAIgAyAEIABBH3FBigNqEQkACxoAIAEgAiADIAQgBSAGIABBAXFBiANqEUMACxgAIAEgAiADIAQgBSAAQQFxQYYDahFCAAsWACABIAIgAyAEIABBAXFBhANqEUEACxwAIAEgAiADIAQgBSAGIAcgAEEBcUGCA2oRQAALGAAgASACIAMgBCAFIABBAXFBwAJqET8ACxYAIAEgAiADIAQgAEEBcUG+AmoRPgALHgAgASACIAMgBCAFIAYgByAIIABBAXFBvAJqET0ACxYAIAEgAiADIAQgAEEBcUG6AmoRPAALFAAgASACIAMgAEEDcUG2AmoRIgALGgAgASACIAMgBCAFIAYgAEEBcUG0AmoRFgALFgAgASACIAMgBCAAQQFxQbIBahElAAsUACABIAIgAyAAQQFxQbABahEMAAsaACABIAIgAyAEIAUgBiAAQQFxQawBahE4AAsUACABIAIgAyAAQQNxQcgAahE7AAsRACABIAIgAEEfcUEoahEIAAsPACABIABBA3FBJGoRHAALDQAgAEEfcUEEahEgAAsPACABIABBAXFBAmoROgALCgAgAEEBcREQAAvS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AiADIAQgBUEPcUHSCmoRLQAMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIAFBADoANCABQQA6ADUgACgCCCIAKAIAKAIUIQMgACABIAIgAkEBIAQgA0EPcUHqCmoRGgAgAQJ/AkAgASwANQR/IAEsADQNAUEBBUEACyEAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAA0CQQQMAwsLIAANAEEEDAELQQMLNgIsDAILCyADQQFGBEAgAUEBNgIgCwsLC0QBAX8gACABKAIIEIUBBEAgASACIAMgBBCFBQUgACgCCCIAKAIAKAIUIQYgACABIAIgAyAEIAUgBkEPcUHqCmoRGgALCxgAIAAgASgCCBCFAQRAIAEgAiADEIcFCwuPAQAgACABKAIIEIUBBEAgASACIAMQhgUFIAAgASgCABCFAQRAAkAgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASACNgIUIAEgASgCKEEBajYCKCABKAIkQQFGBEAgASgCGEECRgRAIAFBAToANgsLIAFBBDYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwsLGgAgACABKAIIEIUBBEAgASACIAMgBBCFBQsLyQEBA38jBCEEIwRBQGskBCAEIQMgACABEIUBBH9BAQUgAQR/IAFB4PQBEJQEIgEEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyABNgIAIAMgADYCCCADQX82AgwgA0EBNgIwIAEoAgAoAhwhACABIAMgAigCAEEBIABBH3FBqApqEQYAIAMoAhhBAUYEfyACIAMoAhA2AgBBAQVBAAsFQQALBUEACwshBSAEJAQgBQt4AQN/IwQhASMEQRBqJAQgASEAAn9BAEGMrgQoAgBB37femgFGDQAaQbMEESEAQYyuBEHft96aATYCAEEACwRAQZSKAyAAEMICBQJ/An9BAEGQrgQoAgAiACgCBEHOlZoSRw0AGiAAKAIACyECIAEkBCACCw8LQQALowICB38BfiMEIQIjBEEwaiQEIAJBGGohASACQRBqIQMgAiEEIAJBJGohBRDLCyIABEAgACgCACIABEAgACkDMCIHQoB+g0KA1qyZ9MiT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AgAhBCAAEIoCIAAoAiAQtgcgBAsQigILCyAAQdQyaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAwRAIAMQjRIgAxBBCyABQQFqIgEgAigCAEgNAAsLIAIQTyAAQeAyahBPIABB7DJqEE8gAEGUM2pBADYCACAAQfgyahBPIABBhDNqEE8gAEGgNWpBADYCACAAQZgzakEANgIAIABBnDNqQQA2AgAgAEHcM2pBADYCACAAQdgzakEANgIAIABB9DNqQQA2AgAgAEH4M2oQTyAAQYQ0ahBPIABBkDRqEE8gAEGcNGoQTyAAQag0ahBPIABBwDdqIQJBACEBA0AgAUEMbCACahBPIAFBAWoiAUECRw0ACyAAQdw3ahDdBCAAQYTYAGoQTyAAQZA6ahBPIABBnDpqEE8gAEGoOmoQTyAAQcDYAGoiAigCAEEASgRAQQAhAQNAIAIgARBVKAIAEPYHIAFBAWoiASACKAIASA0ACwsgAhBPIABBtNgAahBPIABB0NgAaiICKAIAIgFBzIECKAIARiABRXJFBEAgARDDAhogAkEANgIACyAAQdTYAGoQTyAAQQA6AAALCwsAIAAQngUgABBUC00BAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACQYz8ATYCACACIAE2AgggAhCvBSAAIAJBBGoQ5AMhAyACEJ4FIAIkBCADCwsAIAAQnwUgABBUC08BAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADQfT7ATYCACADIAE2AgggAxDGByAAIANBBGogAhCABiEEIAMQnwUgAyQEIAQLMwAgAEGYqQQoAgAgABsiABCxD0GYqQQoAgAgAEYEQEEAEIoCCyAABEAgABDkCSAAEEELC1QBAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQygEgACACIAMQTiIAKAIARhC5AiIBBEAgACACNgIACyABIQQgAxC0ASADJAQgBAtWAgJ/An0jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQcSABQQhqIgIgAEE8aiAAQUBrIAEQywcgAhA9IQQgAhAxIAEQMSABJAQgBAsHACABELgPC4kBAgJ/An0jBCEJIwRBMGokBEGwqQQoAgAiCkE8aiABEIgBIApBQGsg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QYAHaiIKEDogAEGwB2ohAyAAQYgHaiEBA0AgARA6IAFBCGoiASADRw0ACyAAQbwIaiEDIABBlAhqIQEDQCABEDogAUEIaiIBIANHDQALIABB+ClqEGggAEEAQYgqEGoaIAJDAACAv0MAAIC/EDIgBSACKQMANwIAIABDiYiIPDgCECAAQwAAoEA4AhQgAEHmhQI2AhggAEHwhQI2AhwgAEOamZk+OAIgIABDAADAQDgCJCAAQSxqIgFCfzcCACABQn83AgggAUJ/NwIQIAFCfzcCGCABQn83AiAgAUJ/NwIoIAFCfzcCMCABQn83AjggAUFAa0J/NwIAIAFCfzcCSCABQX82AlAgAEMAAIA+OAKAASAAQ83MTD04AoQBIABBADYCiAEgAEEANgKMASAAQwAAgD84ApABIABBADYCmAEgAEEAOgCUASACQwAAgD9DAACAPxAyIAYgAikDADcCACACQwAAAABDAAAAABAyIAggAikDACILNwIAIAcgCzcCACAAQQA6ALUBIABBAToAtgEgAEEBOgC3ASAAQQA6ALgBIABCADcCvAEgAEIANwLEASAAQQA2AswBIABBAzYC0AEgAEECNgLUASAAQQA2AtgBIABBAzYC3AEgAEEANgLgASACQ///f/9D//9//xAyIAkgAikDADcCACACQ///f/9D//9//xAyIAogAikDADcCACAAQwAAwEA4AihBACEBA0AgAEGACGogAUECdGpDAACAvzgCACAAQewHaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEFRw0AC0EAIQEDQCAAQdAYaiABQQJ0akMAAIC/OAIAIABB0AhqIAFBAnRqQwAAgL84AgAgAUEBaiIBQYAERw0AC0EAIQEDQCAAQdAoaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEVRw0ACyAEJAQLNAECfyMEIQQjBEEQaiQEIARBCGoiBSABIAIQwgogBCADEG8gACAFIAQQgQEgBBAxIAQkBAtCAQJ/IwQhBCMEQRBqJAQgBCADEDQgBEEEaiIDIAEgAiAEIABBA3FBhglqEQoAIAMQfSEFIAMQMSAEEDEgBCQEIAULKwEBfxDVByIBQZquBCABGyEBIABCADcCACAAQQA2AgggACABIAEQXBCTAQsxAQF/IwQhASMEQRBqJAQgASAAEJ8BIAEoAgAgASABLAAL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C0EASAR/IAAoAgAFIAALIAEQqwgLGAAgACwAC0EASAR/IAAoAgAFIAALEJMKCwkAIAAgARDiEAsqAQJ/An8jBCEBIwRBEGokBEHEvgJBBEHAywFBicsCQRJBFxACIAELJAQLCwAgACABIAIQ4BALCQAgACABEN8QCwsAIAAgASACEN4QCxgAIAAsAAtBAEgEfyAAKAIABSAACxCpAwsJACAAIAEQ3BALGAAgACwAC0EASAR/IAAoAgAFIAALEKsDCyoBAn8CfyMEIQEjBEEQaiQEQem9AkEFQdDLAUG7zAJBDUELEAIgAQskBAsNACAAIAEgAiADENsQCyoBAn8CfyMEIQEjBEEQaiQEQd69AkEFQfDLAUG7zAJBDEEKEAIgAQskBAsNACAAIAEgAiADENoQCxoAIAAsAAtBAEgEfyAAKAIABSAACyABEK8ICwcAIAAQ2RALKgECfwJ/IwQhASMEQRBqJARB6bwCQQRBkMwBQd3NAkECQQEQAiABCyQECwsAIAAgASACENcQCyoBAn8CfyMEIQEjBEEQaiQEQeG8AkEDQez4AUHjzQJBEUEdEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHZvAJBA0H4+AFB480CQRBBHBACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB0bwCQQNBhPkBQePNAkEPQRsQAiABCyQECxoAIAAsAAtBAEgEfyAAKAIABSAACyABELUICyoBAn8CfyMEIQEjBEEQaiQEQbO8AkEEQaDMAUGJywJBEUEVEAIgAQskBAscACAALAALQQBIBH8gACgCAAUgAAsgASACEM8FCwkAIAAgARDVEAsRACAAIAEgAiADIAQgBRDUEAsqAQJ/An8jBCEBIwRBEGokBEGPvAJBBkGwzAFB6M0CQRFBBhACIAELJAQLDwAgACABIAIgAyAEEM0QCw0AIAAgASACIAMQyhALKgECfwJ/IwQhASMEQRBqJARB9bsCQQVB0MwBQbvMAkELQQgQAiABCyQECw0AIAAgASACIAMQyBALCwAgACABIAIQxxALNQEBfyAALAALQQBIBEAgACgCACEACxA8IgIsAH8Ef0EABSACIAAQXiABQRpyIABBABDTAgsLBwAgABC9CAsYACAALAALQQBIBH8gACgCAAUgAAsQvggLKgECfwJ/IwQhASMEQRBqJARB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AAtBAEgEfyAAKAIABSAACyABELkCCyoBAn8CfyMEIQEjBEEQaiQEQc61AkEEQfDSAUGJywJBDkEJEAIgAQskBAsLACAAIAEgAhC1DwsJACAAIAEQsw8LKgECfwJ/IwQhASMEQRBqJARBubUCQQhBgNMBQYfRAkEEQQEQAiABCyQECxMAIAAgASACIAMgBCAFIAYQrw8LKgECfwJ/IwQhASMEQRBqJARBs7UCQQdBoNMBQZ/TAkEBQQQQAiABCyQECxEAIAAgASACIAMgBCAFEK0PCwkAIAAgARCsDwsaACAALAALQQBIBH8gACgCAAUgAAsgARCDCQsYACAALAALQQBIBH8gACgCAAUgAAsQxAQLCQAgACABEKkPC6cEAgF/AX4jBCEBIwRBEGokBCAAEDogAEEIahA6IABBEGoQOiAAQRhqEDogAEEgahA6IABBLGoQOiAAQcwAahBmIABB3ABqEGYgAEGAAWoQOiAAQYgBahBoIABBADYCsAEgAEEANgKsASAAQQA2ArQBIABBuAFqEGggAEHEAWoQaCAAQQA2AtQBIABBADYC0AEgAEEANgLYASAAQegBahDnAiAAQewBahDnAiAAQfABahDnAiABQwAAAABDAAAAABAyIAAgASkDACICNwIYIAAgAjcCECAAIAI3AgggACACNwIAIAFDAAAAAEMAAAAAEDIgACABKQMAIgI3AiwgACACNwIgIABDAAAAADgCNCAAQwAAAAA4AiggAEMAAIC/OAI4IABCADcCPCAAQgA3AkQgARBmIAAgASkCADcCXCAAIAEpAgg3AmQgACABKQIANwJMIAAgASkCCDcCVCAAQQA2AnggAEEANgJ0IABBADYCbCAAQQE2AnAgAEEAOgB8IABBADoAfSAAQQA6AH4gAUMAAAAAQwAAAAAQMiAAIAEpAwA3AoABIABBADYClAEgAEEBNgKcASAAQQE2ApgBIABDAAAAADgCpAEgAEEANgKgASAAQwAAgL84AqgBIABCADcC3AEgAEEANgLkASABEOcCIAAgASgCADYC6AEgARDnAiAAIAEoAgA2AuwBIAEQ5wIgACABKAIANgLwASAAQQA2AvQBIAEkBAsaACAALAALQQBIBH8gACgCAAUgAAtBABC5AQsHACAAEKAPC9AHAgV/AX4jBCEFIwRBEGokBCAFIQMgAEEMahA6IABBFGoQOiAAQRxqEDogAEEkahA6IABBLGoQOiAAQTRqEDogAEE8ahA6IABB2ABqEDogAEHgAGoQOiAAQegAahA6IABB8ABqEDogAEG4AWoQOiAAQcABahA6IABByAFqEMoSIABBwANqIgYiBEEANgIEIARBADYCACAEQQA2AgggAEHMA2oQZiAAQdwDahBmIABB7ANqEGYgAEH8A2oQZiAAQYwEahBmIABBpARqEN4DIABB1ARqEGggAEEANgLkBCAAQQA2AuAEIABBADYC6AQgAEH4BGoiByABQbwxahD4ByAAQagGaiEEIABBiAZqIQEDQCABEGYgAUEQaiIBIARHDQALIAAgAhDaBjYCACAAQQRqIgEgAkEAQQAQuwE2AgAgBiABEHggAEEANgIIIANDAAAAAEMAAAAAEDIgACADKQMANwIMIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AhwgACAINwIUIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AjQgACAINwIsIANDAAAAAEMAAAAAEDIgACADKQMANwI8IABDAAAAADgCRCAAQwAAAAA4AkggACACEFxBAWo2AkwgACAAQf6FAhBeNgJQIABBADYCVCADQwAAAABDAAAAABAyIAAgAykDADcCWCADQ///f39D//9/fxAyIAAgAykDADcCYCADQwAAAD9DAAAAPxAyIAAgAykDADcCaCADQwAAAABDAAAAABAyIAAgAykDADcCcCAAQQA7AYQBIABCADcCeCAAQQA7AYABIABBADoAggEgAEF/OwGGASAAQX87AYgBIABBADYCjAEgAEF/NgKUASAAQX82ApABIABBADoAmAEgAEEANgKcASAAQX82AqABIABBADYCqAEgAEEANgKkASAAQQ82ArQBIABBDzYCsAEgAEEPNgKsASADQ///f39D//9/fxAyIAAgAykDACIINwLAASAAIAg3ArgBIABBfzYCnAQgAEMAAAAAOAKgBCAAQwAAgD84AuwEIABBfzYC8AQgACAHNgL0BCAAIAAoAgA2AqQFIABBADYChAYgAEEANgKABiAAQgA3AuwFIABCADcC9AUgAxBmIAAgAykCADcCmAYgACADKQIINwKgBiAAIAMpAgA3AogGIAAgAykCCDcCkAYgAEEANgL8BSAAQX82AqwGIABBfzYCqAYgAEH/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ICAtICAgICAgICAgIFguWCAgICAgICAgICAtWC4uLi4uWCAgICAgICAgICAtICAgICAgICAgIFguLi4uLlgtICAgIFguLlggICAgICAgICAtLS0gICAgICAgICAtWFhYLlhYWC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtWC4uLi5YICAgICAgICAgICAtICAgICAgICAgICBYLi4uLlgtICAgIFguLlggICAgICAgICBYICAgICAgICAgICAtICBYLlggIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtWC4uLlggICAgICAgICAgICAtICAgICAgICAgICAgWC4uLlgtICAgIFguLlggICAgICAgICBYWCAgICAgICAgICAtICBYLlggIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtWC4uWC5YICAgICAgICAgICAtICAgICAgICAgICBYLlguLlgtICAgIFguLlggICAgICAgICBYLlggICAgICAgICAtICBYLlggIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtWC5YIFguWCAgICAgICAgICAtICAgICAgICAgIFguWCBYLlgtICAgIFguLlhYWCAgICAgICBYLi5YICAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWFggICBYLlggICAgICAgICAtICAgICAgICAgWC5YICAgWFgtICAgIFguLlguLlhYWCAgICBYLi4uWCAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgWC5YICAgICAgICAtICAgICAgICBYLlggICAgICAtICAgIFguLlguLlguLlhYICBYLi4uLlggICAgICAtICBYLlggIC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgIFguWCAgICAgICAtICAgICAgIFguWCAgICAgICAtICAgIFguLlguLlguLlguWCBYLi4uLi5YICAgICAtICBYLlggIC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICBYLlggICAgICAtICAgICAgWC5YICAgICAgICAtWFhYIFguLlguLlguLlguLlhYLi4uLi4uWCAgICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgWC5YICAgWFgtWFggICBYLlggICAgICAgICAtWC4uWFguLi4uLi4uLlguLlhYLi4uLi4uLlggICAtICBYLlggIC0gICBYLlggICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgIFguWCBYLlgtWC5YIFguWCAgICAgICAgICAtWC4uLlguLi4uLi4uLi4uLlhYLi4uLi4uLi5YICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgICBYLlguLlgtWC4uWC5YICAgICAgICAgICAtIFguLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uWCAtWFhYLlhYWC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICAgICAgWC4uLlgtWC4uLlggICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uLlgtWC4uLi4uWC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgICAgICBYLi4uLlgtWC4uLi5YICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uWFhYWFgtWFhYWFhYWC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgICAgIFguLi4uLlgtWC4uLi4uWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uLlhYLi4uWC4uWCAgICAtLS0tLS0tLS0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtWFhYWFhYWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uWCBYLi5YIFguLlggICAtICAgICAgIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tICAgIFguLi4uLi4uLi4uWCBYLlggIFguLlggICAtICAgICAgIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAtICAgIFguLi4uLi4uLi4uWCBYWCAgICBYLi5YICAtICAgICAgIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICBYLi5YICAgICAgICAgIC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICAgWFggICAgICAgICAgIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAtICAgICBYWFhYWFhYWFhYICAtLS0tLS0tLS0tLS0gICAgICAgIC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0gICAgICAgICAgICAgICAgICAgIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAQaAiC8xdN10pIyMjIyMjI2hWMHFzJy8jIyNbKSwjIy9sOiQjUTY+IyM1W240Mj5jLVRIYC0+PiMvZT4xMU5OVj1CdigqOi5GP3V1IyhnUlUubzBYR0hgJHZoTEcxaHh0OT9XYCMsNUxzQ3AjLWk+LnIkPCQ2cEQ+TGInOzlDcmM2dGdYbUtWZVUyY0Q0RW8zUi8yKj5dYihNQzskalBmWS47aF5gSVdNOTxMaDJUbFMrZi1zJG82UTxCV0hgWWlVLnhmTHEkTjskMGlSL0dYOlUoamNXMnAvVypxPy1xbW5VQ0k7akhTQWlGV00uUiprVUBDPUdIP2E5d3A4ZiRlLi00XlFnMSlRLUdMKGxmKHIvN0dyUmd3ViVNUz1DI2A4TkQ+UW8jdCdYIyh2I1k5dzAjMUQkQ0lmO1cnI3BXVVBYT3V4WHVVKEg5TSgxPHEtVUUzMSNeLVYnOElSVW83UWYuL0w+PUtlJCQnNUYlKV0wXiMwWEBVLmE8cjpRTHRGc0xjTDYjI2xPaikjLlk1PC1SJktnTHdxSmZMZ04mO1E/Z0leI0RZMnVMaUBeck1sOXQ9Y1dxNiMjd2VnPiRGQmpWUVRTRGdFS25JUzdFTTk+Wlk5dzAjTDs+PiNNeCY0TXZ0Ly9MW01rQSNXQGxLLk4nWzAjN1JMXyYjdytGJUh0RzlNI1hMYE4mLixHTTRQZzstPG5MRU5odng+LVZzTS5NMHJKZkxIMmVUTWAqb0pNSFJDYE5rZmltTTJKLFctalhTOilyMHdLI0BGZ2UkVT5gdydON0cjJCNmQiMkRV4kIzo5OmhrK2VPZS0tNngpRjcqRSU/NzYlXkdNSGVQVy1aNWwnJkdpRiMkOTU2OnJTP2RBI2ZpSzopWXIrYCYjMGpAJ0RiRyYjXiRQRy5MbCtETmE8WENNS0VWKk4pTE4vTipiPSVRNnBpYS1YZzhJJDxNUiYsVmRKZSQ8KDdHO0NrbCcmaEY7OyQ8Xz1YKGIuUlMlJSkjIyNNUEJ1dUUxVjp2JmNYJiMybSMoJmNWXWBrOU9oTE1ibiVzJEcyLEIkQmZEM1gqc3A1I2wsJFIjXXhfWDF4S1glYjVVKltyNWlNZlVvOVVgTjk5aEcpdG0rL1VzOXBHKVhQdWA8MHMtKVdUdChnQ1J4SWcoJTZzZmg9a3RNS24zaik8NjxiNVNrXy8wKF5dQWFOIyhwL0w+JlZaPjFpJWgxUzl1NW9AWWFhVyRlK2I8VFdGbi9aOk9oKEN4MiRsTkVvTl5lKSNDRllAQEk7Qk9RKnNSd1p0WnhSY1U3dVc2Q1hvdzBpKD8kUVtjak9kW1A0ZCldPlJPUE9weFRPN1N0d2kxOjppQjFxKUNfPWRWMjZKOzIsXTdvcCRddVFyQF9WNyRxXiVsUXd0dUhZXT1EWCxuM0wjMFBIRE80Zjk+ZENATz5IQnVLUHBQKkUsTitiM0wjbHBSL01yVEVILklBUWsuYT5EWy5lO21jLnhdSXAuUEheJy9hcVVPLyQxV3hMb1cwW2lMQTxRVDs1SEtEK0BxUSdOUSgzX1BMaEU0OFIucUFQU3dRMC9XSz9aLFt4Py1KO2pRVFdBMFhAS0ooX1k4Ti06L003NDovLVpwS3JVc3M/ZCNkWnFdREFia1UqSnFrTCtud1hAQDQ3YDU+dz00aCg5LmBHQ1JVeEhQZVJgNU1qb2woZFVXeFphKD5TVHJQa3JKaVd4YDVVN0YjLmcqanJvaEdnYGNnOmxTVHZFWS9FVl83SDRROVtaJWNudjtKUVlaNXEubDdaZWFzOkhPSVpPQj9HPE5hbGQkcXNdQF1MPEo3YlIqPmd2Ols3TUkyaykuJzIoJDVGTlAmRVEoLClVXVddK2ZoMTgudnNhaTAwKTtEM0A0a3U1UD9EUDhhSnQrO3FVTV09K2InOEA7bVZpQkt4MERFWy1hdUdsODpQSiZEaitNNk9DXU9eKCgjI11gMGkpZHJUOy03WGA9LUgzW2lnVW5QRy1OWmxvLiNrQGgjPU9yayRtPmE+JC0/VG0kVVYoPyNQNllZIycvIyMjeGU3cS43M3JJMypwUC8kMT5zOSlXLEpyTTdTTl0nLzRDI3YkVWAwI1YuWzA+eFFzSCRmRW1QTWdZMnU3S2goRyVzaUlmTFNvUytNSzJlVE0kPTUsTThwYEEuO19SJSN1W0sjJHg0QUc4LmtLL0hTQj09LSdJZS9RVHRHPy0uKl5OLTRCL1pNXzNZbFFDNyhwN3EpJl0oYDZfYykkLypKTChMLV4oXSR3SU1gZFB0T2RHQSxVMzp3Mk0tMDxxLV1MXz9eKTF2dycuLE1Sc3FWci5MO2FOJiMvRWdKKVBCY1stZj4rV29tWDJ1N2xxTTJpRXVtTVRjc0Y/LWFUPVotOTdVRW5YZ2xFbjFLLWJuRU9gZ3VGdChjJT07QW1fUXNAakxvb0kmTlg7XTAjajQjRjE0O2dsOC1HUXBnd2hycTgnPWxfZi1iNDknVU9xa0x1Ny0jI29EWTJMKHRlK01jaCZnTFl0SixNRXRKZkxoJ3gnTT0kQ1MtWlolUF04Ylo+I1M/WVkjJVEmcSczXkZ3Jj9EKVVETnJvY00zQTc2Ly9vTD8jaDdnbDg1W3FXL05ET2slMTZpajsrOjFhJ2lOSWRiLW91OC5QKncsdjUjRUkkVFdTPlBvdC1SKkgnLVNFcEE6ZylmK08kJSVga0EjRz04Uk1tRzEmT2A+dG84YkNdVCYkLG4uTG9PPjI5c3AzZHQtNTJVJVZNI3E3J0RIcGcrI1o5JUhbSzxMJWEyRS1ncldWTTNAMj0tazIydExdNCQjIzZXZSc4VUpDS0VbZF89JXdJOyc2WC1Hc0xYNGpeU2dKJCMjUip3LHZQM3dLI2lpVyYjKmheRCZSP2pwNysvdSYjKEFQIyNYVThjJGZTWVctSjk1Xy1EcFtnOXdjTyYjTS1oMU9jSmxjLSp2cHcweFVYJiNPUUZLTlhAUUknSW9QcDduYixRVS8vTVEmWkRrS1ApWDxXU1ZMKDY4dVZsJiNjJ1swIyhzMVgmeG0kWSVCNypLOmVEQTMyM2o5OThHWGJBI3B3TXMtamdEJDlRSVNCLUFfKGFONHhvRk1eQEM1OEQwK1ErcTNuMCMzVTFJbkRqRjY4Mi1Tak1YSkspKGgkaHh1YV9LXXVsOTIlJ0JPVSYjQlJSaC1zbGc4S0RscjolTDcxS2E6LkE7JVlVTGpEUG1MPExZczhpI1h3Sk9ZYUtQS2MxaDonOUtlLGcpYiksNzg9STM5Qjt4aVkkYmdHdy0mLlppOUluWER1WWElRypmMkJxN21uOV4jcDF2diUjKFdpLTsvWjVobzsjMjo7JWQmI3g5djY4QzVnP250WDBYKXBUYDslcEIzcTdtZ0dOKTMlKFA4blRkNUw3R2VBLUdMQCslSjN1MjooWWY+ZXRgZTspZiNLbTgmK0RDJEk0Nj4jS3JdXXUtWz05OXR0czEucWIjcTcyZzFXSk84MXErZU4nMDMnZU0+JjFYeFktY2FFbk9qJTJuOCkpLD9JTFI1Xi5JYm48LVgtTXE3W2E4MkxxOkYmI2NlK1M5d3NDSyp4YDU2OUU4ZXcnSGVdaDpzSVsyTE0kW2d1a2EzWlJkNjp0JUlHOjskJVlpSjpOcT0/ZUF3Oy86bm5EcTAoQ1ljTXBHKXFMTjQkIyMmSjxqJFVwSzxRNGExXU11cFdeLXNqXyQlW0hLJSdGIyMjI1FSWko6OlkzRUdsNCdAJUZraUFPZyNwWyMjT2BndWtUZkJIYWdMPExIdyVxJk9WMCMjRj02LzpjaEltMEBlQ1A4WF06a0ZJJWhsOGhnT0BSY0JoUy1AUWIkJSttPWhQRExnKiVLOGxuKHdjZjMvJ0RXLSQubFI/bltuQ0gtZVhPT05USmxoOi5SWUYlMydwNnNxOlVJTUE5NDUmXkhGUzg3QCRFUDJpRzwtbENPJCVjYHVLR0QzckMkeDBCTDhhRm4tLWBrZSUjSE1QJ3ZoMS9SJk9fSjkndW0sLjx0eFtAJXdzSmsmYlVUMmAwdU12N2dnI3FwL2lqLkw1NidobDsuczVDVXJ4ak9NNy0jIy5sK0F1J0EmTzotVDcyTF1QYCY9O2N0cCdYU2NYKnJVLj4tWFR0LCVPVlU0KVMxK1ItI2RnMC9Obj9LdTFeMGYkQipQOlJvd3dtLWAwUEtqWURETSczXWQzOVZaSEVsNCwuaiddUGstTS5oXiY6MEZBQ20kbWFxLSZzZ3cwdDcvNiheeHRrJUx1SDg4RmotZWttPkdBI18+NTY4eDYoT0ZSbC1JWnBgJmIsX1AnJE08Sm5xNzlWc0pXL21XUypQVWlxNzY7XS9OTV8+aExieGZjJG1qYCxPOyYlVzJtYFpoOi8pVWV0dzphSiVdSzloOlRjRl11Xy1TajksVkszTS4qJyYwRFtDYV1KOWdwOCxrQVddJSg/QSVSJGY8LT5adHMnXmtuPS1eQGM0JS1wWTZxSSVKJTFJR3hmTFU5Q1A4Y2JQbFh2KTtDPWIpLDwybU92UDh1cCxVVmYzODM5YWNBV0FXLVc/I2FvL14jJUtZbzhmUlVMTmQyLj4lbV1VSzpuJXIkJ3N3XUo7NXBBb09fIzJtTzNuLCc9SDUoZXRIZypgK1JMZ3Y+PTRVOGd1RCRJJUQ6Vz4tcjVWKiVqKlc6S3Zlai5McCQ8TS1TR1onOitRX2srdXZPU0xpRW8oPGFEL0s8Q0NjYCdMeD4nPzsrK08nPigpakxSLV51NjhQSG04WkZXZStlajhoOjlyNkwqMC8vYyZpSCZSOHBSYkEjS2ptJXVwVjFnOmFfI1VyN0Z1QSModFJoIy5ZNUsrQD8zPC04bTAkUEVuO0o6cmg2P0k2dUc8LWB3TVUnaXJjcDBMYUVfT3RsTWImMSM2VC4jRkRLdSMxTHcldSUrR00rWCdlP1lMZmpNW1ZPME1idUZwNzs+USYjV0lvKTBARiVxN2MjNFhBWE4tVSZWQjxIRkYqcUwoJC9WLDsoa1haZWpXT2A8WzU/P2V3WSgqOT0ld0RjOyx1PCc5dDNXLShIMXRoMytHXXVjUV1rTHM3ZGYoJC8qSkxdQCp0N0J1X0czXzdtcDc8aWFRak9ALmtMZzt4M0IwbHFwN0hmLF5aZTctIyNAL2M1OE1vKDM7a25wMCUpQTc/LVcrZUknbzgpYjxuS253J0hvOEM9WT5wcUI+MGllJmpoWls/aUxSQEBfQXZBLWlRQyg9a3NSWlJWcDdgLj0rTnBCQyVyaCYzXVI6OFhEbUU1XlY4Tyh4PDxhRy8xTiQjRlgkMFY1WTZ4J2FFckkzSSQ3eCVFYHY8LUJZLCklLT9Qc2YqbD8lQzMubU0oPS9NMDpKeEcnPzdXaEglbydhPC04MGcwTkJ4b08oR0g8ZE1dbi4rJXFAakg/Zi5Vc0oyR2dzJjQ8LWU0NyZLbCtmLy85QGBiKz8uVGVOXyZCOFNzP3Y7XlRyaztmI1l2SmtsJnckXT4tK2s/Jyg8Uzo2OHRxKldvRGZadSc7bU0/OFhbbWE4VyUqYC09O0QuKG5jNy87KWc6VDE9XkokJkJSVigtbFRtTkI2eHFCW0AwKm8uZXJNKjxTV0ZddTI9c3QtKig2dj5eXShILmFSRVpTaSwjMTpbSVhhWkZPbTwtdWkjcVVxMiQjI1JpO3U3NU9LIyhSdGFXLUstRmBTK2NGXXVOYC1LTVElclAvWHJpLkxSY0IjIz1ZTDNCZ00vM01EP0BmJjEnQlctKUp1PEwyNWdsOHVoVm0xaEwkIyMqOCMjIydBMy9Ma0tXKyhecldYPzVXXzhnKWEobSZLOFA+I2JtbVdDTWtrJiNUUmBDLDVkPmcpRjt0LDQ6QF9sOEcvNWg0dlVkJSYlOTUwOlZYRCdRZFdvWS1GJEJ0VXdtZmUkWXFMJzgoUFdYKFA/XkBQbzMkIyNgTVNzP0RXQlovUz4rNCU+ZlgsVld2L3cnS0RgTFA1SWJIO3JUVj5uM2NFSzhVI2JYXWwtL1YrXmxqMzt2bE1iJls1WVE4I3Bla1g5SlAzWFVDNzJMLCw/K05pJmNvN0Fwbk8qNU5LLCgoVy1pOiQsa3AnVURBTyhHMFNxN01WakpzYkl1KSdaLCpbPmJyNWZYXjpGUEFXci1tMktnTDxMVU4wOThrVEYmI2x2bzU4PS92akRvOy47KUthKmhMUiMvaz1yS2J4dVZgPlFfbk42Jzh1VEcmIzFUNWcpdUx2Ojg3M1VwVExnSCsjRmdwSCdfbzE3ODBQaDhLbXhRSjgjSDcyTDRANzY4QFRtJlFoNENCLzVPdm1BJixRJlFiVW9pJGFfJTNNMDFIKTR4N0leJktRVmd0Rm5WKztbUGM+W200ay8vLF0xPyNgVllbSnIqMyYmc2xSZkxpVlpKOl0/PUszU3c9WyQ9dVJCPzN4azQ4QGFlZzxaJzwkIzRIKTYsPmUwalQ2J04jKHElLk89PzJTXXUqKG08LVY4SicoMSlHXVs2OGhXJDUncVtHQyY1amBURT9tJ2VzRkdOUk0paixmZlo/LXF4ODstPmc0dCo6Q0lQL1tRYXA3LzknIygxc2FvN3ctLnFOVWRrSil0Q0YmI0JeO3hHdm4ycjlGRVBGRkZjTEAuaUZOa1R2ZSRtJSNRdlFTOFVAKTJaKzNLOkFLTTVpc1o4OCtkS1EpVzY+SiVDTDxLRT5gLmQqKEJgLW44RDlvSzxVcF1jJFgkKCwpTThadDcvW3Jka3FUZ2wtMGN1R012Jz8+LVhWMXFbJy01aydjQVo2OWU7RF8/JFpQUCZzXis3XSkkKiQjQFFZaTksNVAmIzlyKyQlQ0U9Njg+SzhyMD1kU0MlJShAcDcubTdqaWxRMDInMC1WV0FnPGEvJyczdS49NEwkWSk2ay9LOl9bMz0manZMPEwwQy8yJ3Y6XjstRElCVyxCNEU2ODprWjslPzgoUThCSD1rTzY1Qlc/eFNHJiNAdVUsRFMqLD8uKyhvKCMxdkNTOCNDSEY+VGxHVydiKVRxN1ZUOXFeKl4kJC46Jk5AQCQmKVdIdFBtKjVfck8wJmUlSyYjLTMwaihFNCMnWmIuby8oVHBtJD5LJ2ZAW1B2RmwsaGZJTlROVTZ1JzBwYW83JVhVcDldNS4+JWhgOF89VllieHVlbC5OVFNzSmZMYWNGdTNCJ2xRU3UvbTYtT3FlbThUK29FLS0kMGEva111ajlFd3NHPiV2ZVIqaHZeQkZwUWo6SycjU0osc0ItJyNdKGouTGc5MnJUdy0qbiVALzszOXJySkYsbCNxViVPcnRCZUM2Lyw7cUIzZWJOV1s/LEhxajJMLjFOUCZHalVSPTFEOFFhUzNVcCZAKjl3UD8rbG83Yj9AJSdrNGBwMFokMjIlSzMraUNaaj9YSk40Tm0mK1lGXXVALVckVSVWRVEvLCw+PiMpRDxoI2ApaDA6PFE2OTA5dWErJlZVJW4yOmNHM0ZKLSVAQmotRGdMcmBIdyZIQUtqS2pzZUs8L3hLVCopQixOOVgzXWtyYzEydCdwZ1RWKEx2LXRMW3hnXyU9TV9xN2FeeD83VWJkPiMlOGNZI1laPz0sYFdkeHUvYWUmI3c2KVI4OXRJIzZAcycoNkJmN2EmP1M9XlpJX2tTJmFpYCY9dEU3MkxfRCw7XlIpN1skczxFaCNjJilxLk1YSSUjdjlST2E1RlpPJXNGN3E3TndiJiNwdFVKOmFxSmUkU2w2OCUuRCMjI0VDPjw/LWFGJiNSTlF2Pm84bEtOJTUvJCh2ZGZxNytlYkEjdTFwXW92VUtXJlklcV0nPiQxQC1beGZuJDdaVHA3bU0sRyxLbzdhJkd1JUdbUk14SnNbME1NJXdjaS5MRkRLKSg8Y2BROE4pakVJRiorP1AyYThnJSkkcV1vMmFIOEMmPFNpYkMvcSwoZTp2Oy1iIzZbJE50RFo4NEplMktOdkIjJFA1P3RRM250KDBkPWouTFFmLi9MbDMzKyg7cTNMLXc9OGRYJCNXRiZ1SUpALWJmST4lOl9pMkI1Q3NSOCY5WiYjPW1QRW5tMGZgPCZjKVFMNXVKIyV1JWxKaitELXI7Qm9GJiM0RG9TOTdoNWcpRSNvOiZTNHdlREYsOV5Ib2VgaCpMK19hKk5yTFctMXBHXyYyVWRCODZlJUIvOj0+KU40eGVXLip3ZnQtOyQnNTgtRVNxcjxiP1VJKF8lQFtQNDY+I1VgJzZBUV1tJjYvYFo+I1M/WVkjVmM7cjdVMiYzMjZkPXcmSCMjIyM/VFpgKjQ/Ji5NSz9MUDhWeGc+JFtRWGMlUUp2OTIuKERiKkIpZ2IqQk05ZE0qaEpNQW8qYyYjYjB2PVBqZXJdJGdHJkpYRGYtPidTdHZVNzUwNWw5JEFGdmdZUkleJjxeYjY4P2ojcTlRWDRTTSdSTyMmc0wxSU0uckpmTFVBajIyMV1kIyNEVz1tODN1NTsnYll4LCpTbDBoTChXOzskZG9CJk8vVFE6KFpeeEJkTGpMPExuaTsnJ1guYCQjOCsxR0Q6ayRZVVdzYm44b2doNnJ4WjJaOV0lbmQrPlYjKjhVXzcyTGgrMlE4Q2owaTo2aHAmJEMvOnAoSEs+VDhZW2dIUTRgNCknJEFiKE5vZiVWJzhoTCYjPE5FZHRnKG4nPVMxQShRMS9JJjQoWyVkTWAsSXUnMTpfaEw+U2ZEMDcmNkQ8ZnA4ZEhNNy9nK3RsUE45SipyS2FQY3QmPyd1QkNlbV5qbiU5X0spPCxDNUszcz01ZyZHbUpiKltTWXE3SztUUkxHQ3NNLSQkO1MlOllAcjdBSzBwcHJwTDxMcmgscTdlLyVLV0s6NTBJXittJ3ZpYDM/JVpwKzwtZCskTC1TdjpALm8xOW4kczAmMzk7a247UyVCU3EqJDNXb0pTQ0x3ZVZbYVonTVFJak88NztYLVg7JitkTUx2dSNeVXNHRUM5V0VjW1god0k3IzIuKEYwalYqZVpmPC1RdjNKLWMrSjVBbHJCIyRwKEg2OEx2RUEncTNuMCNtLFtgKjhGdClGY1lnRXVkXUNXZm02OCwoYUxBJEBFRlRnTFhvQnEvVVBscDc6ZFsvO3JfaXg9OlRGYFM1SC1iPExJJkhZKEs9aCMpXUxrJEsxNGxWZm06eCRIPDNeUWw8TWAkT2hhcEJua3VwJ0QjTCRQYl9gTipnXTJlO1gvRHRnLGJzaiZLIzJbLTppWXInX3dnSClOVUlSOGExbiNTP1llaidoOF41OFViWmQrXkZLRCpUQDs2QTdhUUNbSzhkLSh2NkdJJHg6VDwmJ0dwNVVmPkBNLipKOjskLXJ2MjknTV04cU12LXRMcCwnODg2aWFDPUhiKllKb0tKLChqJUs9SGBLLnY5SGdncUJJaVp1J1F2QlQuIz0pMHVrcnVWJi4pMz0oXjFgbypQajQ8LTxhTigoXjcoJyNaMHdLIzVHWEA3dV1bYCpTXjQzOTMzQTRybF1bYCpPNENnTEVsXXYkMVEzQWVGMzdkYlhrLC4pdmojeCdkYDtxZ2JRUiVGVywyKD9MTz1zJVNjNjglTlAnIyNBb3RsOHg9QkUjajFVRChbMyRNKF1VSTJMWDNScEtOQDsvI2YnZi8mX210JkYpWGRGPDl0NClRYS4qa1RMd1EnKFRUQjkueEgnPiNNSitnTHE5LSMjQEh1WlBOMF11Omg3LlQuLkc6OyQvVXNqKFQ3YFE4dFQ3MkxuWWw8LXF4ODstSFY3US0mWGR4JTFhLGhDPTB1K0hsc1Y+bnVJUUwtNTxOPylOQlMpUU4qX0ksPyYpMidJTSVMM0kpWCgoZS9kbDImOCc8TTpeI00qUStbVC5YcmkuTFlTM3YlZkZgNjhoO2ItWFsvRW4nQ1IucTdFKXAnL2tsZTJITSx1O14lT0tDLU4rTGwlRjlDRjxOZideI3QyTCw7MjdXOjBPQDYjI1U2Vzc6JHJKZkxXSGokIyl3b3FCZWZJWi5QSzxiKnQ3ZWQ7cCpfbTs0RXhLI2hAJl0+Xz5Aa1hRdE1hY2ZELm0tVkFiODtJUmVNMyR3ZjAnJ2hyYSpzbzU2OCdJcCZ2UnM4NDknTVJZU3AlOnQ6aDVxU2d3cEVyJEI+USw7cyhDIyQpYHN2UXVGJCMjLUQsIyMsZzY4QDJbVDsuWFNkTjlRZSlycHQuX0stIzV3RilzUCcjI3AjQzBjJS1HYiVoZCs8LWonQWkqeCYmSE1rVF1DJ09TbCMjNVJHW0pYYUhOO2QndUEjeC5fVTsuYFBVQChaM2R0NHIxNTJAOnYsJ1IuU2ondyMwPC07a1BJKUZmSiYjQVlKJiMvLyk+LWs9bT0qWG5LJD49KTcyTF0wSSU+Lkc2OTBhOiQjIzwsKTs/OzcyIz94OStkO15WJzk7allAOyliciNxXllRcHg6WCNUZSRaXic9LT1iR2hMZjpENiZiTndaOS1aRCNuXjlIaExNcjVHOyddZCY2J3dZbVRGbUw8TEQpRl4lW3RDJzg7KzlFI0MkZyUjNVk+cTl3ST5QKDltSVs+a0MtZWtMQy9SJkNIK3MnQjtLLU02JEVCJWlzMDA6K0E0Wzd4a3MuTHJOazAmRSl3SUxZRkAyTCcwTmIkK3B2PCgyLjc2OC9GclkmaCReM2kmQCtHJUpUJzwtLHZgMztfKUk5TV5BRV1DTj9DbDJBWmcrJTRpVHBUMzxuLSYlSCViPEZEajJNPGhIPSZFaDwyTGVuJGIqYVRYPS04UXhOKWsxMUlNMWNeaiU5czxMPE5GU28pQj8rPC0oR3hzRixeLUVoQCQ0ZFhoTiQrI3J4SzgnamUnRDdrYGU7KTJwWXdQQSdfcDkmQF4xOG1sMV5bQGc0dCpbSk9hKls9UXA3KHFKX29PTF4oJzdmQiZIcS06c2Ysc05qOHhxXj4kVTRPXUdLeCdtOSliQHA3WXN2SzN3XllSLUNkUSo6SXI8KCR1JikjKCY/TDlSZzNIKTRmaUVwXmlJOU84S25UaixdSD9EKnI3J007UHdaOUswRV5rJi1jcEk7LnAvNl92d29GTVY8LT4jJVhpLkx4Vm5yVSg0JjgvUCs6aExTS2okI1UlXTQ5dCdJOnJnTWknRkxAYTowWS11QVszOScsKHZibWEqaFUlPC1TUkZgVHQ6NTQyUl9WViRwQFtwOERWW0EsPzE4MzlGV2RGPFRkZEY8OUFoLTYmOXRXb0RsaF0mMVNwR01xPlRpMU8qSCYjKEFMOFtfUCUuTT52Xi0pKXFPVCpGNUNxMGBZZSUrJEI2aTo3QDBJWDxOK1QrME1sTUJQUSpWaj5Tc0Q8VTRKSFk4a0QyKTJmVS9NIyRlLilUNCxfPThoTGltWyYpOz9Va0snLXg/Jyg6c2lJZkw8JHBGTWBpPD8lVyhtR0RITSU+aVdQLCMjUGAlL0w8ZVhpOkBaOUMuN289QChwWGRBTy9OTFE4bFBsK0hQT1FhOHdEOD1eR2xQYThUS0kxQ2poc0NUU0xKTScvV2w+LVMocXclc2YvQCUjQjY7L1U3S111WmJpXk9jXjJuPGJoUG1Va013PiV0PCknbUVWRScnbmBXbkpyYSReVEt2WDVCPjtfYVNFSycsKGh3YTA6aTRHPy5CY2kuKFhbP2IqKCQsPS1uPC5RJWAoWD0/K0BBbSpKczAmPTNiaDhLXW1MPExvTnMnNiwnODVgMD90LydfVTU5QF1kZEY8I0xkRjxlV2RGPE91Ti80NXJZPC1MQCYjK2ZtPjY5PUxiLE9jWlYvKTtUVG04Vkk7PyVPdEo8KGI0bXE3TTY6dT9LUmRGPGdSQDJMPUZOVS08YlsoOWMvTUwzbTtaWyRvRjNnKUdBV3FwQVJjPTxST3U3Y0w1bDstW0FdJS8rZnNkO2wjU2FmVC9mKlddMD1PJyQoVGI8WykqQGU3NzVSLTpZb2IlZyo+bCo6eFA/WWIuNSkld19JPzd1azVKQytGUyhtI2knay4nYTBpKTk8N2InZnMnNTlocSQqNVVodiMjcGleOCtoSUVCRmBudm9gOydsMC5eUzE8LXdVSzIvQ29oNThLS2hMak09U08qcmZPYCtxQ2BXLU9uLj1BSjU2Pj5pMkAyTEg2QTomNXFgPzlJM0BAJzA0JnAyL0xWYSpULTQ8LWkzO005VXZaZCtONz5iKmVJd2c6Q0MpYzw+bk8mIzxJR2U7X18udGhqWmw8JXcoV2syeG1wNFFASSNJOSxERl11Ny1QPS4tXzpZSl1hU0BWPzYqQygpZE9wNzpXTCxiJjNSZy8uY21NOSZyXj4kKD4uWi1JJkooUTBIZDVRJTdDby1iYC1jPE4oNnJAaXArQXVySzxtODZRSXRoKiN2Oy1PQnFpK0w3d0RFLUlyOEtbJ20rRERTTHdLJi8uPy1WJVVfJTM6cUtOdSRfYipCLWtwN05hRCdRZFdRUEtZcVtAPlApaEk7Kl9GXXVgUmJbLmo4X1EvPCY+dXUrVnNIJHNNOVRBJT8pKHZtSjgwKSxQN0U+KXRqRCUyTD0tdCNmS1slYHY9UTg8RmZOa2dnXm9JYmFoKiM4L1F0JEYmOksqLShOLycrMXZNQix1KCktYS5WVVUqI1tlJWdBQU8oUz5XbEEyKTtTYT5nWG04WUJgMWRASyNuXTc2LWEkVSxtRjxmWF1pZHFkKTwzLF1KN0ptVzRgNl11a3M9NC03MkwoakVrKzpiSjBNXnEtOERtX1o/MG9sUDFDOVNhJkhbZCZjJG9vUVVqXUV4ZCozWk1ALVdHVzIlcycsQi1fTSU+JVVsOiMvJ3hvRk05UVgtJC5RTic+WyUkWiR1RjZwQTZLaTJPNTo4dyp2UDE8LTFgW0csKS1tIz4wYFAmI2ViIy4zaSlydEI2MShvJyQ/WDNCPC9SOTA7ZVpdJU5jcTstVGxdI0Y+MlFmdF5hZV81dEtMOU1VZTliKnNMRVE5NUMmYD1HP0BNaj13aConM0U+PS08KUd0Kkl3KSdRRzpgQEl3T2Y3Jl0xaSdTMDFCK0V2L05hYyM5Uzs9O1lRcGdfNlVgKmtWWTM5eEssWy82QWo3OicxQm0tXzFFWWZhMStvJm80aHA3S05fUShPbElvQFMlO2pWZG4wJzE8VmM1Mj11YDNeby1uMSdnNHY1OEhqJjZfdDckIyM/TSljPCRiZ1FfJ1NZKCgteGtBI1koLHAnSDlySVZZLWIsJyViQ1BGNy5KPFVwXiwoZFUxVlkqNSNXa1RVPmgxOXcsV1FoTEkpM1MjZiQyKGViLGpyKmI7M1Z3XSo3TkglJGM0VnMsZUQ5PlhXOD9OXW8rKCpwZ0MlLzcyTFYtdTxIcCwzQGVeOVVCMUorYWs5LVROL21oS1BnK0FKWWQkTWx2QUZfakNLKi5PLV4oNjNhZE1ULT5XJWlld1M4VzZtMnJ0Q3BvJ1JTMVI4ND1AcGFUS3QpPj0lJjFbKSp2cCd1K3gsVnJ3TjsmXWt1TzlKRGJnPXBPJEoqLmpWZTt1J20wZHI5bCw8KndNSypPZT1nOGxWX0tFQkZrTydvVV1ePVstNzkyI29rLClpXWxSOHFRMm9BOHdjUkNaXjd3L05qaDs/LnN0WD9RMT5TMXE0Qm4kKUsxPC1yR2RPJyRXci5MYy5DRykkLypKTDR0TlIvLFNWTzMsYVV3J0RKTjopU3M7d0duOUEzMmlqdyVGTCtaMEZuLlU5O3JlU3EpYm1JMzJVPT01QUx1RyYjVmYxMzk4L3BWbzEqYy0oYVkxNjhvPGBKc1Niay0sMU47JD4wOk9VYXMoMzo4Wjk3MkxTZkY4ZWI9Yy07PlNQdzcuNmhuM21gOV5Ya24oci5xU1swO1QlJlFjPStTVFJ4WCdxMUJOazMmKmV1MjsmOHEkJng+USNRN15UZis2PChkJVpWbWoyYkRpJS4zTDJuKzRXJyRQaURERylnLHIlKz8sJEA/dW91NXRTZTJhTl9BUVUqPGhgZS1HSTcpP09LMkEuZDdfYyk/d1E1QVNAREwzciM3ZlNrZ2w2LSsrRDonQSx1cTdTdmxCJHBjcEgncTNuMCNfJWRZI3hDcHItbDxGME5SQC0jI0ZFVjZOVEY2IyMkbDg0TjF3P0FPPidJQU9VUlEjI1ZeRnYtWEZiR003RmwoTjwzRGhMR0YlcS4xckMkIzpUX18mUGk2OCUweGlfJltxRkooNzdqXyZKV29GLlY3MzUmVCxbUio6eEZSKks1Pj4jYGJXLT80TmVfJjZOZV8mNk5lXyZuYGtyLSNHSmNNNlg7dU02WDt1TSguYS4uXjJUa0wlb1IoIzt1LlQlZkFyJTR0SjgmPjwxPUdIWl8rbTkvI0gxRl5SI1NDIypOPUJBOShEP3ZbVWlGWT4+XjhwLEtLRi5XXUwyOXVMa0xsdS8rNFQ8WG9JQiZoeD1UMVBjRGFCJjtISCstQUZyPyhtOUhaVilGS1M4SkN3O1NEPTZbXi9EWlVMYEVVRGZdR0dsRyY+dyQpRi4vXm4zK3JsbytEQjs1c0lZR05rK2kxdC02OUpnLS0wcGFvN1NtI0spcGRIVyY7THVETkhASD4jL1gtVEkoO1A+IyxHYz4jMFN1PiM0YDE/IzhsQz8jPHhVPyNALmk/I0Q6JUAjSEY3QCNMUklAI1BfW0AjVGtuQCNYdypBI10tPUEjYTlPQSNkPEYmIyo7RyMjLkdZIyMyU2wjIzZgKCQjOmw6JCM+eEwkI0IuYCQjRjpyJCNKRi4lI05SQCUjUl9SJSNWa2UlI1p3dyUjXy00JiMzXlJoJVNmbHItaydNUy5vPy41L3NXZWwvd3BFTTAlMycvMSlLXmYxLWQ+RzIxJnYoMzU+VmAzOVY3QTQ9b254NEExT1k1RUkwOzZJYmdyNk0kSFM3UTwpNThDNXcsO1dvQSojWyVUKiNgMWcqI2Q9IysjaEk1KyNsVUcrI3BiWSsjdG5sKyN4JCksIyYxOywjKj1NLCMuSWAsIzJVciwjNmIuLSM7d1tII2lRdEEjbV4wQiNxakJCI3V2VEIjIy1oQiMnOSRDIytFNkMjL1FIQyMzXlpDIzdqbUMjO3YpRCM/LDxEI0M4TkQjR0RhRCNLUHNEI09dL0UjZzFBNSNLQSoxI2dDMTcjTUdkOyM4KDAyI0wtZDMjcldNNCNIZ2ExIyw8dzAjVC5qPCNPIycyI0NZTjEjcWFeOiNfNG0zI29ALz0jZUc4PSN0OEo1I2ArNzgjNHVJLSNtM0IyI1NCWzgjUTBAOCNpWyo5I2lPbjgjMU5tOyNec045I3FoPDkjOj14LSNQO0syIyQlWDkjYkMrLiNSZzs8I21OPS4jTVRGLiNSWk8uIzI/KTQjWSMoLyNbKTEvI2I7TC8jZEFVLyMwU3Y7I2xZJDAjbmAtMCNzZjYwIyhGMjQjd3JIMCMlL2UwI1RtRDwjJUpTTUZvdmU6Q1RCRVhJOjxlaDJnKUIsM2gyXkczaTsjZDNqRD4pNGtNWUQ0bFZ1YDRtYDomNW5pVUE1QChBNUJBMV1QQkI6eGxCQ0M9MkNETFhNQ0VVdGlDZiYwZzIndE4/UEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQLXFla0NgLjlrRWdeK0Yka3dWaUZKVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVvLF48LTI4WkknTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cDs3cS0jbExZSTp4dkQ9IwBB9v8ACwpAQAAAQEEAAJhBAEGKgAELugFQQQAAAAAAAOBAAACAQQAAgD8AAABBAAD4QQAAAAAAALhBAAC4QQAAMEEAADBBAACoQQAAAAAAABBBAAC4QQAAgEAAADBBAABcQgAAkEEAALhBAAAQQQAAMEEAAIBAAACSQgAAAAAAAIhBAACIQQAAAEEAAABBAABcQgAAAAAAAIhBAACIQQAAAEEAAABBAAC2QgAAAAAAAIhBAACwQQAAoEAAAAAAIAD/AAAw/zDwMf8xAP/v/wBOr58AQdCBAQuXJyAA/wAAMP8w8DH/MQD/7/8AAAEAAgAEAAEAAQABAAEAAgABAAMAAgABAAIAAgABAAEAAQABAAEABQACAAEAAgADAAMAAwACAAIABAABAAEAAQACAAEABQACAAMAAQACAAEAAgABAAEAAgABAAEAAgACAAEABAABAAEAAQABAAUACgABAAIAEwACAAEAAgABAAIAAQACAAEAAgABAAUAAQAGAAMAAgABAAIAAgABAAEAAQAEAAgABQABAAEABAABAAEAAwABAAIAAQAFAAEAAgABAAEAAQAKAAEAAQAFAAIABAAGAAEABAACAAIAAgAMAAIAAQABAAYAAQABAAEABAABAAEABAAGAAUAAQAEAAIAAgAEAAoABwABAAEABAACAAQAAgABAAQAAwAGAAoADAAFAAcAAgAOAAIACQABAAEABgAHAAoABAAHAA0AAQAFAAQACAAEAAEAAQACABwABQAGAAEAAQAFAAIABQAUAAIAAgAJAAgACwACAAkAEQABAAgABgAIABsABAAGAAkAFAALABsABgBEAAIAAgABAAEAAQACAAEAAgACAAcABgALAAMAAwABAAEAAwABAAIAAQABAAEAAQABAAMAAQABAAgAAwAEAAEABQAHAAIAAQAEAAQACAAEAAIAAQACAAEAAQAEAAUABgADAAYAAgAMAAMAAQADAAkAAgAEAAMABAABAAUAAwADAAEAAwAHAAEABQABAAEAAQABAAIAAwAEAAUAAgADAAIABgABAAEAAgABAAcAAQAHAAMABAAFAA8AAgACAAEABQADABYAEwACAAEAAQABAAEAAgAFAAEAAQABAAYAAQABAAwACAACAAkAEgAWAAQAAQABAAUAAQAQAAEAAgAHAAoADwABAAEABgACAAQAAQACAAQAAQAGAAEAAQADAAIABAABAAYABAAFAAEAAgABAAEAAgABAAoAAwABAAMAAgABAAkAAwACAAUABwACABMABAADAAYAAQABAAEAAQABAAQAAwACAAEAAQABAAIABQADAAEAAQABAAIAAgABAAEAAgABAAEAAgABAAMAAQABAAEAAwAHAAEABAABAAEAAgABAAEAAgABAAIABAAEAAMACAABAAEAAQACAAEAAwAFAAEAAwABAAMABAAGAAIAAgAOAAQABgAGAAsACQABAA8AAwABABwABQACAAUABQADAAEAAwAEAAUABAAGAA4AAwACAAMABQAVAAIABwAUAAoAAQACABMAAgAEABwAHAACAAMAAgABAA4ABAABABoAHAAqAAwAKAADADQATwAFAA4AEQADAAIAAgALAAMABAAGAAMAAQAIAAIAFwAEAAUACAAKAAQAAgAHAAMABQABAAEABgADAAEAAgACAAIABQAcAAEAAQAHAAcAFAAFAAMAHQADABEAGgABAAgABAAbAAMABgALABcABQADAAQABgANABgAEAAGAAUACgAZACMABwADAAIAAwADAA4AAwAGAAIABgABAAQAAgADAAgAAgABAAEAAwADAAMABAABAAEADQACAAIABAAFAAIAAQAOAA4AAQACAAIAAQAEAAUAAgADAAEADgADAAwAAwARAAIAEAAFAAEAAgABAAgACQADABMABAACAAIABAARABkAFQAUABwASwABAAoAHQBnAAQAAQACAAEAAQAEAAIABAABAAIAAwAYAAIAAgACAAEAAQACAAEAAwAIAAEAAQABAAIAAQABAAMAAQABAAEABgABAAUAAwABAAEAAQADAAQAAQABAAUAAgABAAUABgANAAkAEAABAAEAAQABAAMAAgADAAIABAAFAAIABQACAAIAAwAHAA0ABwACAAIAAQABAAEAAQACAAMAAwACAAEABgAEAAkAAgABAA4AAgAOAAIAAQASAAMABAAOAAQACwApAA8AFwAPABcAsAABAAMABAABAAEAAQABAAUAAwABAAIAAwAHAAMAAQABAAIAAQACAAQABAAGAAIABAABAAkABwABAAoABQAIABAAHQABAAEAAgACAAMAAQADAAUAAgAEAAUABAABAAEAAgACAAMAAwAHAAEABgAKAAEAEQABACwABAAGAAIAAQABAAYABQAEAAIACgABAAYACQACAAgAAQAYAAEAAgANAAcACAAIAAIAAQAEAAEAAwABAAMAAwAFAAIABQAKAAkABAAJAAwAAgABAAYAAQAKAAEAAQAHAAcABAAKAAgAAwABAA0ABAADAAEABgABAAMABQACAAEAAgARABAABQACABAABgABAAQAAgABAAMAAwAGAAgABQALAAsAAQADAAMAAgAEAAYACgAJAAUABwAEAAcABAAHAAEAAQAEAAIAAQADAAYACAAHAAEABgALAAUABQADABgACQAEAAIABwANAAUAAQAIAFIAEAA9AAEAAQABAAQAAgACABAACgADAAgAAQABAAYABAACAAEAAwABAAEAAQAEAAMACAAEAAIAAgABAAEAAQABAAEABgADAAUAAQABAAQABgAJAAIAAQABAAEAAgABAAcAAgABAAYAAQAFAAQABAADAAEACAABAAMAAwABAAMAAgACAAIAAgADAAEABgABAAIAAQACAAEAAwAHAAEACAACAAEAAgABAAUAAgAFAAMABQAKAAEAAgABAAEAAwACAAUACwADAAkAAwAFAAEAAQAFAAkAAQACAAEABQAHAAkACQAIAAEAAwADAAMABgAIAAIAAwACAAEAAQAgAAYAAQACAA8ACQADAAcADQABAAMACgANAAIADgABAA0ACgACAAEAAwAKAAQADwACAA8ADwAKAAEAAwAJAAYACQAgABkAGgAvAAcAAwACAAMAAQAGAAMABAADAAIACAAFAAQAAQAJAAQAAgACABMACgAGAAIAAwAIAAEAAgACAAQAAgABAAkABAAEAAQABgAEAAgACQACAAMAAQABAAEAAQADAAUABQABAAMACAAEAAYAAgABAAQADAABAAUAAwAHAA0AAgAFAAgAAQAGAAEAAgAFAA4ABgABAAUAAgAEAAgADwAFAAEAFwAGAD4AAgAKAAEAAQAIAAEAAgACAAoABAACAAIACQACAAEAAQADAAIAAwABAAUAAwADAAIAAQADAAgAAQABAAEACwADAAEAAQAEAAMABwABAA4AAQACAAMADAAFAAIABQABAAYABwAFAAcADgALAAEAAwABAAgACQAMAAIAAQALAAgABAAEAAIABgAKAAkADQABAAEAAwABAAUAAQADAAIABAAEAAEAEgACAAMADgALAAQAHQAEAAIABwABAAMADQAJAAIAAgAFAAMABQAUAAcAEAAIAAUASAAiAAYABAAWAAwADAAcAC0AJAAJAAcAJwAJAL8AAQABAAEABAALAAgABAAJAAIAAwAWAAEAAQABAAEABAARAAEABwAHAAEACwAfAAoAAgAEAAgAAgADAAIAAQAEAAIAEAAEACAAAgADABMADQAEAAkAAQAFAAIADgAIAAEAAQADAAYAEwAGAAUAAQAQAAYAAgAKAAgABQABAAIAAwABAAUABQABAAsABgAGAAEAAwADAAIABgADAAgAAQABAAQACgAHAAUABwAHAAUACAAJAAIAAQADAAQAAQABAAMAAQADAAMAAgAGABAAAQAEAAYAAwABAAoABgABAAMADwACAAkAAgAKABkADQAJABAABgACAAIACgALAAQAAwAJAAEAAgAGAAYABQAEAB4AKAABAAoABwAMAA4AIQAGAAMABgAHAAMAAQADAAEACwAOAAQACQAFAAwACwAxABIAMwAfAIwAHwACAAIAAQAFAAEACAABAAoAAQAEAAQAAwAYAAEACgABAAMABgAGABAAAwAEAAUAAgABAAQAAgA5AAoABgAWAAIAFgADAAcAFgAGAAoACwAkABIAEAAhACQAAgAFAAUAAQABAAEABAAKAAEABAANAAIABwAFAAIACQADAAQAAQAHACsAAwAHAAMACQAOAAcACQABAAsAAQABAAMABwAEABIADQABAA4AAQADAAYACgBJAAIAAgAeAAYAAQALABIAEwANABYAAwAuACoAJQBZAAcAAwAQACIAAgACAAMACQABAAcAAQABAAEAAgACAAQACgAHAAMACgADAAkABQAcAAkAAgAGAA0ABwADAAEAAwAKAAIABwACAAsAAwAGABUANgBVAAIAAQAEAAIAAgABACcAAwAVAAIAAgAFAAEAAQABAAQAAQABAAMABAAPAAEAAwACAAQABAACAAMACAACABQAAQAIAAcADQAEAAEAGgAGAAIACQAiAAQAFQA0AAoABAAEAAEABQAMAAIACwABAAcAAgAeAAwALAACAB4AAQABAAMABgAQAAkAEQAnAFIAAgACABgABwABAAcAAwAQAAkADgAsAAIAAQACAAEAAgADAAUAAgAEAAEABgAHAAUAAwACAAYAAQALAAUACwACAAEAEgATAAgAAQADABgAHQACAAEAAwAFAAIAAgABAA0ABgAFAAEALgALAAMABQABAAEABQAIAAIACgAGAAwABgADAAcACwACAAQAEAANAAIABQABAAEAAgACAAUAAgAcAAUAAgAXAAoACAAEAAQAFgAnAF8AJgAIAA4ACQAFAAEADQAFAAQAAwANAAwACwABAAkAAQAbACUAAgAFAAQABAA/ANMAXwACAAIAAgABAAMABQACAAEAAQACAAIAAQABAAEAAwACAAQAAQACAAEAAQAFAAIAAgABAAEAAgADAAEAAwABAAEAAQADAAEABAACAAEAAwAGAAEAAQADAAcADwAFAAMAAgAFAAMACQALAAQAAgAWAAEABgADAAgABwABAAQAHAAEABAAAwADABkABAAEABsAGwABAAQAAQACAAIABwABAAMABQACABwACAACAA4AAQAIAAYAEAAZAAMAAwADAA4AAwADAAEAAQACAAEABAAGAAMACAAEAAEAAQABAAIAAwAGAAoABgACAAMAEgADAAIABQAFAAQAAwABAAUAAgAFAAQAFwAHAAYADAAGAAQAEQALAAkABQABAAEACgAFAAwAAQABAAsAGgAhAAcAAwAGAAEAEQAHAAEABQAMAAEACwACAAQAAQAIAA4AEQAXAAEAAgABAAcACAAQAAsACQAGAAUAAgAGAAQAEAACAAgADgABAAsACAAJAAEAAQABAAkAGQAEAAsAEwAHAAIADwACAAwACAA0AAcABQATAAIAEAAEACQACAABABAACAAYABoABAAGAAIACQAFAAQAJAADABwADAAZAA8AJQAbABEADAA7ACYABQAgAH8AAQACAAkAEQAOAAQAAQACAAEAAQAIAAsAMgAEAA4AAgATABAABAARAAUABAAFABoADAAtAAIAFwAtAGgAHgAMAAgAAwAKAAIAAgADAAMAAQAEABQABwACAAkABgAPAAIAFAABAAMAEAAEAAsADwAGAIYAAgAFADsAAQACAAIAAgABAAkAEQADABoAiQAKANMAOwABAAIABAABAAQAAQABAAEAAgAGAAIAAwABAAEAAgADAAIAAwABAAMABAAEAAIAAwADAAEABAADAAEABwACAAIAAwABAAIAAQADAAMAAwACAAIAAwACAAEAAwAOAAYAAQADAAIACQAGAA8AGwAJACIAkQABAAEAAgABAAEAAQABAAIAAQABAAEAAQACAAIAAgADAAEAAgABAAEAAQACAAMABQAIAAMABQACAAQAAQADAAIAAgACAAwABAABAAEAAQAKAAQABQABABQABAAQAAEADwAJAAUADAACAAkAAgAFAAQAAgAaABMABwABABoABAAeAAwADwAqAAEABgAIAKwAAQABAAQAAgABAAEACwACAAIABAACAAEAAgABAAoACAABAAIAAQAEAAUAAQACAAUAAQAIAAQAAQADAAQAAgABAAYAAgABAAMABAABAAIAAQABAAEAAQAMAAUABwACAAQAAwABAAEAAQADAAMABgABAAIAAgADAAMAAwACAAEAAgAMAA4ACwAGAAYABAAMAAIACAABAAcACgABACMABwAEAA0ADwAEAAMAFwAVABwANAAFABoABQAGAAEABwAKAAIABwA1AAMAAgABAAEAAQACAKMAFAIBAAoACwABAAMAAwAEAAgAAgAIAAYAAgACABcAFgAEAAIAAgAEAAIAAQADAAEAAwADAAUACQAIAAIAAQACAAgAAQAKAAIADAAVABQADwBpAAIAAwABAAEAAwACAAMAAQABAAIABQABAAQADwALABMAAQABAAEAAQAFAAQABQABAAEAAgAFAAMABQAMAAEAAgAFAAEACwABAAEADwAJAAEABAAFAAMAGgAIAAIAAQADAAEAAQAPABMAAgAMAAEAAgAFAAIABwACABMAAgAUAAYAGgAHAAUAAgACAAcAIgAVAA0ARgACAIAAAQABAAIAAQABAAIAAQABAAMAAgACAAIADwABAAQAAQADAAQAKgAKAAYAAQAxAFUACAABAAIAAQABAAQABAACAAMABgABAAUABwAEAAMA0wAEAAEAAgABAAIABQABAAIABAACAAIABgAFAAYACgADAAQAMABkAAYAAgAQACgBBQAbAIMBAgACAAMABwAQAAgABQAmAA8AJwAVAAkACgADAAcAOwANABsAFQAvAAUAFQAGAEHyqAELsR4BAAIABAABAAEAAQABAAIAAQAGAAIAAgABAAgABQAHAAsAAQACAAoACgAIAAIABAAUAAIACwAIAAIAAQACAAEABgACAAEABwAFAAMABwABAAEADQAHAAkAAQAEAAYAAQACAAEACgABAAEACQACAAIABAAFAAYADgABAAEACQADABIABQAEAAIAAgAKAAcAAQABAAEAAwACAAQAAwAXAAIACgAMAAIADgACAAQADQABAAYACgADAAEABwANAAYABAANAAUAAgADABEAAgACAAUABwAGAAQAAQAHAA4AEAAGAA0ACQAPAAEAAQAHABAABAAHAAEAEwAJAAIABwAPAAIABgAFAA0AGQAEAA4ADQALABkAAQABAAEAAgABAAIAAgADAAoACwADAAMAAQABAAQABAACAAEABAAJAAEABAADAAUABQACAAcADAALAA8ABwAQAAQABQAQAAIAAQABAAYAAwADAAEAAQACAAcABgAGAAcAAQAEAAcABgABAAEAAgABAAwAAwADAAkABQAIAAEACwABAAIAAwASABQABAABAAMABgABAAcAAwAFAAUABwACAAIADAADAAEABAACAAMAAgADAAsACAAHAAQAEQABAAkAGQABAAEABAACAAIABAABAAIABwABAAEAAQADAAEAAgAGABAAAQACAAEAAQADAAwAFAACAAUAFAAIAAcABgACAAEAAQABAAEABgACAAEAAgAKAAEAAQAGAAEAAwABAAIAAQAEAAEADAAEAAEAAwABAAEAAQABAAEACgAEAAcABQANAAEADwABAAEAHgALAAkAAQAPACYADgABACAAEQAUAAEACQAfAAIAFQAJAAQAMQAWAAIAAQANAAEACwAtACMAKwA3AAwAEwBTAAEAAwACAAMADQACAAEABwADABIAAwANAAgAAQAIABIABQADAAcAGQAYAAkAGAAoAAMAEQAYAAIAAQAGAAIAAwAQAA8ABgAHAAMADAABAAkABwADAAMAAwAPABUABQAQAAQABQAMAAsACwADAAYAAwACAB8AAwACAAEAAQAXAAYABgABAAQAAgAGAAUAAgABAAEAAwADABYAAgAGAAIAAwARAAMAAgAEAAUAAQAJAAUAAQABAAYADwAMAAMAEQACAA4AAgAIAAEAFwAQAAQAAgAXAAgADwAXABQADAAZABMALwALABUAQQAuAAQAAwABAAUABgABAAIABQAaAAIAAQABAAMACwABAAEAAQACAAEAAgADAAEAAQAKAAIAAwABAAEAAQADAAYAAwACAAIABgAGAAkAAgACAAIABgACAAUACgACAAQAAQACAAEAAgACAAMAAQABAAMAAQACAAkAFwAJAAIAAQABAAEAAQAFAAMAAgABAAoACQAGAAEACgACAB8AGQADAAcABQAoAAEADwAGABEABwAbALQAAQADAAIAAgABAAEAAQAGAAMACgAHAAEAAwAGABEACAAGAAIAAgABAAMABQAFAAgAEAAOAA8AAQABAAQAAQACAAEAAQABAAMAAgAHAAUABgACAAUACgABAAQAAgAJAAEAAQALAAYAAQAsAAEAAwAHAAkABQABAAMAAQABAAoABwABAAoABAACAAcAFQAPAAcAAgAFAAEACAADAAQAAQADAAEABgABAAQAAgABAAQACgAIAAEABAAFAAEABQAKAAIABwABAAoAAQABAAMABAALAAoAHQAEAAcAAwAFAAIAAwAhAAUAAgATAAMAAQAEAAIABgAfAAsAAQADAAMAAwABAAgACgAJAAwACwAMAAgAAwAOAAgABgALAAEABAApAAMAAQACAAcADQABAAUABgACAAYADAAMABYABQAJAAQACAAJAAkAIgAGABgAAQABABQACQAJAAMABAABAAcAAgACAAIABgACABwABQADAAYAAQAEAAYABwAEAAIAAQAEAAIADQAGAAQABAADAAEACAAIAAMAAgABAAUAAQACAAIAAwABAAsACwAHAAMABgAKAAgABgAQABAAFgAHAAwABgAVAAUABAAGAAYAAwAGAAEAAwACAAEAAgAIAB0AAQAKAAEABgANAAYABgATAB8AAQANAAQABAAWABEAGgAhAAoABAAPAAwAGQAGAEMACgACAAMAAQAGAAoAAgAGAAIACQABAAkABAAEAAEAAgAQAAIABQAJAAIAAwAIAAEACAADAAkABAAIAAYABAAIAAsAAwACAAEAAQADABoAAQAHAAUAAQALAAEABQADAAUAAgANAAYAJwAFAAEABQACAAsABgAKAAUAAQAPAAUAAwAGABMAFQAWAAIABAABAAYAAQAIAAEABAAIAAIABAACAAIACQACAAEAAQABAAQAAwAGAAMADAAHAAEADgACAAQACgACAA0AAQARAAcAAwACAAEAAwACAA0ABwAOAAwAAwABAB0AAgAIAAkADwAOAAkADgABAAMAAQAGAAUACQALAAMAJgArABQABwAHAAgABQAPAAwAEwAPAFEACAAHAAEABQBJAA0AJQAcAAgACAABAA8AEgAUAKUAHAABAAYACwAIAAQADgAHAA8AAQADAAMABgAEAAEABwAOAAEAAQALAB4AAQAFAAEABAAOAAEABAACAAcANAACAAYAHQADAAEACQABABUAAwAFAAEAGgADAAsADgALAAEAEQAFAAEAAgABAAMAAgAIAAEAAgAJAAwAAQABAAIAAwAIAAMAGAAMAAcABwAFABEAAwADAAMAAQAXAAoABAAEAAYAAwABABAAEQAWAAMACgAVABAAEAAGAAQACgACAAEAAQACAAgACAAGAAUAAwADAAMAJwAZAA8AAQABABAABgAHABkADwAGAAYADAABABYADQABAAQACQAFAAwAAgAJAAEADAAcAAgAAwAFAAoAFgA8AAEAAgAoAAQAPQA/AAQAAQANAAwAAQAEAB8ADAABAA4AWQAFABAABgAdAA4AAgAFADEAEgASAAUAHQAhAC8AAQARAAEAEwAMAAIACQAHACcADAADAAcADAAnAAMAAQAuAAQADAADAAgACQAFAB8ADwASAAMAAgACAEIAEwANABEABQADAC4AfAANADkAIgACAAUABAAFAAgAAQABAAEABAADAAEAEQAFAAMABQADAAEACAAFAAYAAwAbAAMAGgAHAAwABwACABEAAwAHABIATgAQAAQAJAABAAIAAQAGAAIAAQAnABEABwAEAA0ABAAEAAQAAQAKAAQAAgAEAAYAAwAKAAEAEwABABoAAgAEACEAAgBJAC8ABwADAAgAAgAEAA8AEgABAB0AAgApAA4AAQAVABAAKQAHACcAGQANACwAAgACAAoAAQANAAcAAQAHAAMABQAUAAQACAACADEAAQAKAAYAAQAGAAcACgAHAAsAEAADAAwAFAAEAAoAAwABAAIACwACABwACQACAAQABwACAA8AAQAbAAEAHAARAAQABQAKAAcAAwAYAAoACwAGABoAAwACAAcAAgACADEAEAAKABAADwAEAAUAGwA9AB4ADgAmABYAAgAHAAUAAQADAAwAFwAYABEAEQADAAMAAgAEAAEABgACAAcABQABAAEABQABAAEACQAEAAEAAwAGAAEACAACAAgABAAOAAMABQALAAQAAQADACAAAQATAAQAAQANAAsABQACAAEACAAGAAgAAQAGAAUADQADABcACwAFAAMAEAADAAkACgABABgAAwDGADQABAACAAIABQAOAAUABAAWAAUAFAAEAAsABgApAAEABQACAAIACwAFAAIAHAAjAAgAFgADABIAAwAKAAcABQADAAQAAQAFAAMACAAJAAMABgACABAAFgAEAAUABQADAAMAEgAXAAIABgAXAAUAGwAIAAEAIQACAAwAKwAQAAUAAgADAAYAAQAUAAQAAgAJAAcAAQALAAIACgADAA4AHwAJAAMAGQASABQAAgAFAAUAGgAOAAEACwARAAwAKAATAAkABgAfAFMAAgAHAAkAEwBOAAwADgAVAEwADABxAE8AIgAEAAEAAQA9ABIAVQAKAAIAAgANAB8ACwAyAAYAIQCfALMABgAGAAcABAAEAAIABAACAAUACAAHABQAIAAWAAEAAwAKAAYABwAcAAUACgAJAAIATQATAA0AAgAFAAEABAAEAAcABAANAAMACQAfABEAAwAaAAIABgAGAAUABAABAAcACwADAAQAAgABAAYAAgAUAAQAAQAJAAIABgADAAcAAQABAAEAFAACAAMAAQAGAAIAAwAGAAIABAAIAAEABQANAAgABAALABcAAQAKAAYAAgABAAMAFQACAAIABAAYAB8ABAAKAAoAAgAFAMAADwAEABAABwAJADMAAQACAAEAAQAFAAEAAQACAAEAAwAFAAMAAQADAAQAAQADAAEAAwADAAkACAABAAIAAgACAAQABAASAAwAXAACAAoABAADAA4ABQAZABAAKgAEAA4ABAACABUABQB+AB4AHwACAAEABQANAAMAFgAFAAYABgAUAAwAAQAOAAwAVwADABMAAQAIAAIACQAJAAMAAwAXAAIAAwAHAAYAAwABAAIAAwAJAAEAAwABAAYAAwACAAEAAwALAAMAAQAGAAoAAwACAAMAAQACAAEABQABAAEACwADAAYABAABAAcAAgABAAIABQAFACIABAAOABIABAATAAcABQAIAAIABgBPAAEABQACAA4ACAACAAkAAgABACQAHAAQAAQAAQABAAEAAgAMAAYAKgAnABAAFwAHAA8ADwADAAIADAAHABUAQAAGAAkAHAAIAAwAAwADACkAOwAYADMANwA5ACYBCQAJAAIABgACAA8AAQACAA0AJgBaAAkACQAJAAMACwAHAAEAAQABAAUABgADAAIAAQACAAIAAwAIAAEABAAEAAEABQAHAAEABAADABQABAAJAAEAAQABAAUABQARAAEABQACAAYAAgAEAAEABAAFAAcAAwASAAsACwAgAAcABQAEAAcACwB/AAgABAADAAMAAQAKAAEAAQAGABUADgABABAAAQAHAAEAAwAGAAkAQQAzAAQAAwANAAMACgABAAEADAAJABUAbgADABMAGAABAAEACgA+AAQAAQAdACoATgAcABQAEgBSAAYAAwAPAAYAVAA6AP0ADwCbAAgBDwAVAAkADgAHADoAKAAnAEGwxwELECAA/wAABC8F4C3/LUCmn6YAQdLHAQsmgD/NzMw9CtcjPG8SgzoXt9E4rMUnN703hjWVv9Yzd8wrMl9wiTAAQYDIAQtGBAAAAOeOAADnjgAABAAAAPGOAADxjgAACAAAAPSOAAD0jgAACAAAAPmOAAD5jgAABAAAAOqOAADqjgAACAAAAOqOAADtjgBB0MgBC5IC/5AAAAORAAAHkQAAC5EAAMGQAADBkAAAwZAAAMGQAADHkAAAz5AAANeQAADfkAAA55AAAO+QAAD3kAAA35AAAJOQAACTkAAAk5AAAJOQAACXkAAAnZAAAKOQAACpkAAAr5AAALWQAAC7kAAAqZAAAP8AAP///wD/AP8A/wD///8AAP///wD///8AAP8AAAAA6HoAANB0AADQdAAA0HQAANB0AAA4ewAAWHsAANB0AAAIewAA0HQAANB0AAAIewAAOHsAADh7AABYewAAWHsAAOh6AABYewAAWHsAAFh7AADQdAAA0HQAANB0AAAAAAAACHsAAEB7AAAIdQAAOHsAAOh6AAA4ewAAWHsAANB0AADQdABB8MoBCxLQdAAA2HQAAAh7AABYewAA0HQAQZDLAQsi6HoAANB0AADQdAAACHsAAAh7AADYdAAA0HQAAFB7AAA4ewBBwMsBCyIIewAA0HQAADh7AAAIewAACHsAANh0AADQdAAA0HQAAAh7AEHwywELEgh7AADYdAAA0HQAAAh7AAAIewBBkMwBCzboegAA2HQAAFh7AADQdAAACHsAANh0AAA4ewAAOHsAAAh7AADYdAAA0HQAANB0AAA4ewAAOHsAQdDMAQsSCHsAANh0AAAIewAAOHsAANB0AEHwzAELMgh7AAA4ewAAOHsAANh0AAAIewAA2HQAADh7AADYdAAACHsAANh0AADQdAAAOHsAANB0AEGwzQELIgh7AADYdAAA0HQAADh7AADQdAAA0HQAANB0AADQdAAA0HQAQeDNAQs2CHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AAA4ewAAOHsAANB0AEGgzgELEgh7AADYdAAA0HQAANB0AADQdABBwM4BC3YIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAAAAAAAAh7AADYdAAAOHsAANB0AADQdAAA0HQAANB0AAA4ewAACHsAANh0AADQdAAAYHsAAGB7AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AAA4ewAAOHsAADh7AEHAzwELEgh7AADYdAAA0HQAANB0AAA4ewBB4M8BC4IBCHsAANh0AADQdAAA0HQAANB0AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AABQewAA0HQAADh7AADQdAAA0HQAAAh7AADYdAAA0HQAAFB7AAA4ewAA0HQAANB0AAAAAAAACHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AADQdABB8NABCyIIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AEGg0QELRgh7AADYdAAA0HQAANB0AAA4ewAAOHsAANB0AAAAAAAACHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQfDRAQt2CHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AADQdAAA0HQAADh7AAA4ewAAAAAAAOh6AABYewAA0HQAANB0AADoegAA2HQAANB0AADQdAAAOHsAADh7AADQdAAA0HQAANB0AADQdABB8NIBC5IBCHsAANh0AADQdAAAQHsAAAh7AADQdAAA0HQAANB0AADQdAAAOHsAANB0AADQdAAA6HoAANB0AADQdAAA0HQAANB0AADQdAAA0HQAAAAAAADoegAAOHsAANB0AAAIewAA6HoAANh0AAAIewAAOHsAAOh6AADYdAAA0HQAADh7AADoegAA0HQAANB0AADQdAAA0HQAQZDUAQsi6HoAANB0AAA4ewAA0HQAAAh7AADQdAAA0HQAAAh7AAA4ewBBwNQBC4YBCHsAANh0AADQdAAAOHsAAAh7AADYdAAAUHsAAFB7AABQewAAUHsAAFB7AAAAAAAACHsAAFh2AAA4ewAA0HQAAAh7AACYdgAAOHsAAFh7AAAIewAAmHYAADh7AAAIewAACHsAAJh2AAA4ewAAOHsAANB0AADIdgAA0HQAAFh7AADQdAAA0HQAQdDVAQsy6HoAACB2AADQdAAAWHsAANB0AABAewAAMHsAAAAAAAA4ewAAIHYAAFh7AADYdAAAWHsAQZDWAQti0HQAACB2AABYewAAWHsAAFh7AADYdAAA0HQAANB0AADoegAAQHUAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAQYDXAQs26HoAADB1AAA4ewAAOHsAAOh6AABAdQAA0HQAANB0AADoegAAQHUAANB0AADQdAAAWHsAADh7AEHA1wELFuh6AABAdQAA0HQAANB0AADQdAAAOHsAQeDXAQsW6HoAAEB1AADQdAAAWHsAADh7AAA4ewBBgNgBCzLoegAAQHUAANB0AABYewAAWHsAAFh7AAA4ewAAAAAAAOh6AABAdQAAQHsAAAh7AABYewBBwNgBCyLoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHw2AELEuh6AABAdQAA0HQAADh7AABAewBBkNkBC0boegAAQHUAANB0AAA4ewAAQHsAAAh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHg2QELcuh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAA6HoAAEB1AADQdAAAWHsAANB0AABAewAA2HQAAFh7AADQdABB4NoBCxLoegAAQHUAANB0AABAewAA2HQAQYDbAQsW6HoAAEB1AADQdAAAWHsAAEB7AAA4ewBBoNsBCzboegAAQHUAANB0AABYewAAQHsAADh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAAQHsAQeDbAQvWAeh6AABAdQAA0HQAANB0AADQdAAAQHsAAFh7AAAAAAAA6HoAAEB1AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAQHsAAEB7AABAewAA6HoAAEB1AADQdAAA0HQAAEB7AABYewAAOHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAAFh7AAA4ewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAWHsAQcDdAQsS6HoAAEB1AADQdAAA0HQAAAh7AEHg3QELRuh6AADgdwAAOHsAAFh7AADoegAA+HUAADh7AADYdAAA6HoAAOh1AAA4ewAAOHsAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQbDeAQvhA9B0AADQdAAA0HQAANB0AAACAADAAwAAwAQAAMAFAADABgAAwAcAAMAIAADACQAAwAoAAMALAADADAAAwA0AAMAOAADADwAAwBAAAMARAADAEgAAwBMAAMAUAADAFQAAwBYAAMAXAADAGAAAwBkAAMAaAADAGwAAwBwAAMAdAADAHgAAwB8AAMAAAACzAQAAwwIAAMMDAADDBAAAwwUAAMMGAADDBwAAwwgAAMMJAADDCgAAwwsAAMMMAADDDQAA0w4AAMMPAADDAAAMuwEADMMCAAzDAwAMwwQADNMAAAAA/////////////////////////////////////////////////////////////////wABAgMEBQYHCAn/////////CgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiP///////8KCwwNDg8QERITFBUWFxgZGhscHR4fICEiI/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AQaDiAQsYEQAKABEREQAAAAAFAAAAAAAACQAAAAALAEHA4gELIREADwoREREDCgcAARMJCwsAAAkGCwAACwAGEQAAABEREQBB8eIBCwELAEH64gELGBEACgoREREACgAAAgAJCwAAAAkACwAACwBBq+MBCwEMAEG34wELFQwAAAAADAAAAAAJDAAAAAAADAAADABB5eMBCwEOAEHx4wELFQ0AAAAEDQAAAAAJDgAAAAAADgAADgBBn+QBCwEQAEGr5AELHg8AAAAADwAAAAAJEAAAAAAAEAAAEAAAEgAAABISEgBB4uQBCw4SAAAAEhISAAAAAAAACQBBk+UBCwELAEGf5QELFQoAAAAACgAAAAAJCwAAAAAACwAACwBBzeUBCwEMAEHZ5QEL3gIMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYKAAAAZAAAAOgDAAAQJwAAoIYBAEBCDwCAlpgAAOH1BQMAAAAEAAAABAAAAAYAAACD+aIARE5uAPwpFQDRVycA3TT1AGLbwAA8mZUAQZBDAGNR/gC73qsAt2HFADpuJADSTUIASQbgAAnqLgAcktEA6x3+ACmxHADoPqcA9TWCAES7LgCc6YQAtCZwAEF+XwDWkTkAU4M5AJz0OQCLX4QAKPm9APgfOwDe/5cAD5gFABEv7wAKWosAbR9tAM9+NgAJyycARk+3AJ5mPwAt6l8Auid1AOXrxwA9e/EA9zkHAJJSigD7a+oAH7FfAAhdjQAwA1YAe/xGAPCrawAgvM8ANvSaAOOpHQBeYZEACBvmAIWZZQCgFF8AjUBoAIDY/wAnc00ABgYxAMpWFQDJqHMAe+JgAGuMwABBw+gBC21A+yH5PwAAAAAtRHQ+AAAAgJhG+DwAAABgUcx4OwAAAICDG/A5AAAAQCAlejgAAACAIoLjNgAAAAAd82k1OGPtPtoPST9emHs/2g/JP2k3rDFoISIztA8UM2ghojMAAAAAAADwPwAAAAAAAPg/AEG46QELCAbQ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aXZlAFBsb3RMaW5lc0hvdmVyZWQAUGxvdEhpc3RvZ3JhbUhvdmVyZWQAVGV4dFNlbGVjdGVkQmcARHJhZ0Ryb3BUYXJnZXQATmF2SGlnaGxpZ2h0AE5hdldpbmRvd2luZ0hpZ2hsaWdodABOYXZXaW5kb3dpbmdEaW1CZwBNb2RhbFdpbmRvd0RpbUJnAFVua25vd24AIyNUb29sdGlwXyUwMmQAIyNNZW51XyUwMmQAIyNQb3B1cF8lMDh4AHdpbmRvd19jb250ZXh0AHZvaWRfY29udGV4dABjb2x1bW5zACNTb3VyY2VFeHRlcm4ACiUqcyUuKnMAICUuKnMAYWIACgBMb2cgVG8gVFRZAExvZyBUbyBGaWxlAExvZyBUbyBDbGlwYm9hcmQARGVwdGgAcmIAd3QASW1HdWkgTWV0cmljcwABRGVhciBJbUd1aSAlcwBBcHBsaWNhdGlvbiBhdmVyYWdlICUuM2YgbXMvZnJhbWUgKCUuMWYgRlBTKQAlZCB2ZXJ0aWNlcywgJWQgaW5kaWNlcyAoJWQgdHJpYW5nbGVzKQAlZCBhY3RpdmUgd2luZG93cyAoJWQgdmlzaWJsZSkAJWQgYWxsb2NhdGlvbnMAU2hvdyBjbGlwcGluZyByZWN0YW5nbGVzIHdoZW4gaG92ZXJpbmcgZHJhdyBjb21tYW5kcwBDdHJsIHNob3dzIHdpbmRvdyBiZWdpbiBvcmRlcgBXaW5kb3dzAERyYXdMaXN0AEFjdGl2ZSBEcmF3TGlzdHMgKCVkKQBQb3B1cHMAUG9wdXBzICglZCkAUG9wdXBJRDogJTA4eCwgV2luZG93OiAnJXMnJXMlcwBOVUxMACBDaGlsZFdpbmRvdwAgQ2hpbGRNZW51AFRhYkJhcnMAVGFiIEJhcnMgKCVkKQBJbnRlcm5hbCBzdGF0ZQBOb25lAE1vdXNlAE5hdgBOYXZLZXlib2FyZABOYXZHYW1lcGFkAEhvdmVyZWRXaW5kb3c6ICclcycASG92ZXJlZFJvb3RXaW5kb3c6ICclcycASG92ZXJlZElkOiAweCUwOFgvMHglMDhYICglLjJmIHNlYyksIEFsbG93T3ZlcmxhcDogJWQAQWN0aXZlSWQ6IDB4JTA4WC8weCUwOFggKCUuMmYgc2VjKSwgQWxsb3dPdmVybGFwOiAlZCwgU291cmNlOiAlcwBBY3RpdmVJZFdpbmRvdzogJyVzJwBNb3ZpbmdXaW5kb3c6ICclcycATmF2V2luZG93OiAnJXMnAE5hdklkOiAweCUwOFgsIE5hdkxheWVyOiAlZABOYXZJbnB1dFNvdXJjZTogJXMATmF2QWN0aXZlOiAlZCwgTmF2VmlzaWJsZTogJWQATmF2QWN0aXZhdGVJZDogMHglMDhYLCBOYXZJbnB1dElkOiAweCUwOFgATmF2RGlzYWJsZUhpZ2hsaWdodDogJWQsIE5hdkRpc2FibGVNb3VzZUhvdmVyOiAlZABOYXZXaW5kb3dpbmdUYXJnZXQ6ICclcycARHJhZ0Ryb3A6ICVkLCBTb3VyY2VJZCA9IDB4JTA4WCwgUGF5bG9hZCAiJXMiICglZCBieXRlcykAIyNPdmVybGF5ACVzLyVzXyUwOFgAJXMvJTA4WAAjUkVTSVpFACMjI05hdldpbmRvd2luZ0xpc3QAKFBvcHVwKQAoTWFpbiBtZW51IGJhcikAKFVudGl0bGVkKQBQb3M9JWYsJWYAU2l6ZT0lZiwlZgBDb2xsYXBzZWQ9JWQAIyMjAFslc11bJXNdCgBQb3M9JWQsJWQKAFNpemU9JWQsJWQKAENvbGxhcHNlZD0lZAoAJXMgKCVkKQAlcyAnJXMnLCAlZCBAIDB4JXAAUG9zOiAoJS4xZiwlLjFmKSwgU2l6ZTogKCUuMWYsJS4xZiksIFNpemVDb250ZW50cyAoJS4xZiwlLjFmKQBGbGFnczogMHglMDhYICglcyVzJXMlcyVzJXMlcyVzJXMuLikAQ2hpbGQgAFRvb2x0aXAgAFBvcHVwIABNb2RhbCAAQ2hpbGRNZW51IABOb1NhdmVkU2V0dGluZ3MgAE5vTW91c2VJbnB1dHMATm9OYXZJbnB1dHMAQWx3YXlzQXV0b1Jlc2l6ZQBTY3JvbGw6ICglLjJmLyUuMmYsJS4yZi8lLjJmKQBBY3RpdmU6ICVkLyVkLCBXcml0ZUFjY2Vzc2VkOiAlZCwgQmVnaW5PcmRlcldpdGhpbkNvbnRleHQ6ICVkAEFwcGVhcmluZzogJWQsIEhpZGRlbjogJWQgKFJlZyAlZCBSZXNpemUgJWQpLCBTa2lwSXRlbXM6ICVkAE5hdkxhc3RJZHM6IDB4JTA4WCwweCUwOFgs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bnRDb250ZXh0AERlYnVnQ2hlY2tWZXJzaW9uQW5kRGF0YUxheW91dABHZXRJTwBHZXRTdHlsZQBHZXREcmF3RGF0YQBOZXdGcmFtZQBSZW5kZXIARW5kRnJhbWUAU2hvd0RlbW9XaW5kb3cAU2hvd0Fib3V0V2luZG93AFNob3dNZXRyaWNzV2luZG93AFNob3dTdHlsZUVkaXRvcgBTaG93U3R5bGVTZWxlY3RvcgBTaG93Rm9udFNlbGVjdG9yAFNob3dVc2VyR3VpZGUAR2V0VmVyc2lvbgBTdHlsZUNvbG9yc0RhcmsAU3R5bGVDb2xvcnNDbGFzc2ljAFN0eWxlQ29sb3JzTGlnaHQAQmVnaW4ARW5kAEJlZ2luQ2hpbGQARW5kQ2hpbGQAR2V0Q29udGVudFJlZ2lvbk1heABHZXRDb250ZW50UmVnaW9uQXZhaWwAR2V0Q29udGVudFJlZ2lvbkF2YWlsV2lkdGgAR2V0V2luZG93Q29udGVudFJlZ2lvbk1pbgBHZXRXaW5kb3dDb250ZW50UmVnaW9uTWF4AEdldFdpbmRvd0NvbnRlbnRSZWdpb25XaWR0aABHZXRXaW5kb3dEcmF3TGlzdABHZXRXaW5kb3dQb3MAR2V0V2luZG93U2l6ZQBHZXRXaW5kb3dXaWR0aABHZXRXaW5kb3dIZWlnaHQASXNXaW5kb3dDb2xsYXBzZWQASXNXaW5kb3dBcHBlYXJpbmcAU2V0V2luZG93Rm9udFNjYWxlAFNldE5leHRXaW5kb3dQb3MAU2V0TmV4dFdpbmRvd1NpemUAU2V0TmV4dFdpbmRvd1NpemVDb25zdHJhaW50cwBTZXROZXh0V2luZG93Q29udGVudFNpemUAU2V0TmV4dFdpbmRvd0NvbGxhcHNlZABTZXROZXh0V2luZG93Rm9jdXMAU2V0TmV4dFdpbmRvd0JnQWxwaGEAU2V0V2luZG93UG9zAFNldFdpbmRvd1NpemUAU2V0V2luZG93Q29sbGFwc2VkAFNldFdpbmRvd0ZvY3VzAFNldFdpbmRvd05hbWVQb3MAU2V0V2luZG93TmFtZVNpemUAU2V0V2luZG93TmFtZUNvbGxhcHNlZABTZXRXaW5kb3dOYW1lRm9jdXMAR2V0U2Nyb2xsWABHZXRTY3JvbGxZAEdldFNjcm9sbE1heFgAR2V0U2Nyb2xsTWF4WQBTZXRTY3JvbGxYAFNldFNjcm9sbFkAU2V0U2Nyb2xsSGVyZVkAU2V0U2Nyb2xsRnJvbVBvc1kAU2V0U3RhdGVTdG9yYWdlAEdldFN0YXRlU3RvcmFnZQBQdXNoRm9udABQb3BGb250AFB1c2hTdHlsZUNvbG9yAFBvcFN0eWxlQ29sb3IAUHVzaFN0eWxlVmFyAFBvcFN0eWxlVmFyAEdldFN0eWxlQ29sb3JWZWM0AEdldEZvbnQAR2V0Rm9udFNpemUAR2V0Rm9udFRleFV2V2hpdGVQaXhlbABHZXRDb2xvclUzMl9BAEdldENvbG9yVTMyX0IAR2V0Q29sb3JVMzJfQwBQdXNoSXRlbVdpZHRoAFBvcEl0ZW1XaWR0aABDYWxjSXRlbVdpZHRoAFB1c2hUZXh0V3JhcFBvcwBQb3BUZXh0V3JhcFBvcwBQdXNoQWxsb3dLZXlib2FyZEZvY3VzAFBvcEFsbG93S2V5Ym9hcmRGb2N1cwBQdXNoQnV0dG9uUmVwZWF0AFBvcEJ1dHRvblJlcGVhdABTZXBhcmF0b3IAU2FtZUxpbmUATmV3TGluZQBTcGFjaW5nAER1bW15AEluZGVudABVbmluZGVudABCZWdpbkdyb3VwAEVuZEdyb3VwAEdldEN1cnNvclBvcwBHZXRDdXJzb3JQb3NYAEdldEN1cnNvclBvc1kAU2V0Q3Vyc29yUG9zAFNldEN1cnNvclBvc1gAU2V0Q3Vyc29yUG9zWQBHZXRDdXJzb3JTdGFydFBvcwBHZXRDdXJzb3JTY3JlZW5Qb3MAU2V0Q3Vyc29yU2NyZWVuUG9zAEFsaWduVGV4dFRvRnJhbWVQYWRkaW5nAEdldFRleHRMaW5lSGVpZ2h0AEdldFRleHRMaW5lSGVpZ2h0V2l0aFNwYWNpbmcAR2V0RnJhbWVIZWlnaHQAR2V0RnJhbWVIZWlnaHRXaXRoU3BhY2luZwBDb2x1bW5zAE5leHRDb2x1bW4AR2V0Q29sdW1uSW5kZXgAR2V0Q29sdW1uV2lkdGgAU2V0Q29sdW1uV2lkdGgAR2V0Q29sdW1uT2Zmc2V0AFNldENvbHVtbk9mZnNldABHZXRDb2x1bW5zQ291bnQAUHVzaElEAFBvcElEAEdldElEAFRleHRVbmZvcm1hdHRlZABUZXh0AFRleHRWAFRleHRDb2xvcmVkAFRleHRDb2xvcmVkVgBUZXh0RGlzYWJsZWQAVGV4dERpc2FibGVkVgBUZXh0V3JhcHBlZABUZXh0V3JhcHBlZFYATGFiZWxUZXh0AExhYmVsVGV4dFYAQnVsbGV0VGV4dABCdWxsZXRUZXh0VgBCdWxsZXQAQnV0dG9uAFNtYWxsQnV0dG9uAEFycm93QnV0dG9uAEludmlzaWJsZUJ1dHRvbgBJbWFnZQBJbWFnZUJ1dHRvbgBDaGVja2JveABDaGVja2JveEZsYWdzAFJhZGlvQnV0dG9uX0EAUmFkaW9CdXR0b25fQgBQbG90TGluZXMAUGxvdEhpc3RvZ3JhbQBQcm9ncmVzc0JhcgBCZWdpbkNvbWJvAEVuZENvbWJvAENvbWJvAERyYWdGbG9hdABEcmFnRmxvYXQyAERyYWdGbG9hdDMARHJhZ0Zsb2F0NABEcmFnRmxvYXRSYW5nZTIARHJhZ0ludABEcmFnSW50MgBEcmFnSW50MwBEcmFnSW50NABEcmFnSW50UmFuZ2UyAERyYWdTY2FsYXIASW5wdXRUZXh0AElucHV0VGV4dE11bHRpbGluZQBJbnB1dEZsb2F0AElucHV0RmxvYXQyAElucHV0RmxvYXQzAElucHV0RmxvYXQ0AElucHV0SW50AElucHV0SW50MgBJbnB1dEludDMASW5wdXRJbnQ0AElucHV0RG91YmxlAElucHV0U2NhbGFyAFNsaWRlckZsb2F0AFNsaWRlckZsb2F0MgBTbGlkZXJGbG9hdDMAU2xpZGVyRmxvYXQ0AFNsaWRlckFuZ2xlAFNsaWRlckludABTbGlkZXJJbnQyAFNsaWRlckludDMAU2xpZGVySW50NABTbGlkZXJTY2FsYXIAVlNsaWRlckZsb2F0AFZTbGlkZXJJbnQAVlNsaWRlclNjYWxhcgBDb2xvckVkaXQzAENvbG9yRWRpdDQAQ29sb3JQaWNrZXIzAENvbG9yUGlja2VyNABDb2xvckJ1dHRvbgBTZXRDb2xvckVkaXRPcHRpb25zAFRyZWVOb2RlX0EAVHJlZU5vZGVfQgBUcmVlTm9kZV9DAFRyZWVOb2RlRXhfQQBUcmVlTm9kZUV4X0IAVHJlZU5vZGVFeF9DAFRyZWVQdXNoX0EAVHJlZVB1c2hfQgBUcmVlUG9wAFRyZWVBZHZhbmNlVG9MYWJlbFBvcwBHZXRUcmVlTm9kZVRvTGFiZWxTcGFjaW5nAFNldE5leHRUcmVlTm9kZU9wZW4AQ29sbGFwc2luZ0hlYWRlcl9BAENvbGxhcHNpbmdIZWFkZXJfQgBTZWxlY3RhYmxlX0EAU2VsZWN0YWJsZV9CAExpc3RCb3hfQQBMaXN0Qm94X0IATGlzdEJveEhlYWRlcl9BAExpc3RCb3hIZWFkZXJfQgBMaXN0Qm94Rm9vdGVyAFZhbHVlX0EAVmFsdWVfQgBWYWx1ZV9DAFZhbHVlX0QAU2V0VG9vbHRpcABCZWdpblRvb2x0aXAARW5kVG9vbHRpcABCZWdpbk1haW5NZW51QmFyAEVuZE1haW5NZW51QmFyAEJlZ2luTWVudUJhcgBFbmRNZW51QmFyAEJlZ2luTWVudQBFbmRNZW51AE1lbnVJdGVtX0EATWVudUl0ZW1fQgBPcGVuUG9wdXAAT3BlblBvcHVwT25JdGVtQ2xpY2sAQmVnaW5Qb3B1cABCZWdpblBvcHVwTW9kYWwAQmVnaW5Qb3B1cENvbnRleHRJdGVtAEJlZ2luUG9wdXBDb250ZXh0V2luZG93AEJlZ2luUG9wdXBDb250ZXh0Vm9pZABFbmRQb3B1cABJc1BvcHVwT3BlbgBDbG9zZUN1cnJlbnRQb3B1cABCZWdpblRhYkJhcgBFbmRUYWJCYXIAQmVnaW5UYWJJdGVtAEVuZFRhYkl0ZW0AU2V0VGFiSXRlbUNsb3NlZABMb2dUb1RUWQBMb2dUb0ZpbGUATG9nVG9DbGlwYm9hcmQATG9nRmluaXNoAExvZ0J1dHRvbnMATG9nVGV4dABCZWdpbkRyYWdEcm9wU291cmNlAFNldERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFNvdXJjZQBCZWdpbkRyYWdEcm9wVGFyZ2V0AEFjY2VwdERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFRhcmdldABHZXREcmFnRHJvcFBheWxvYWQAUHVzaENsaXBSZWN0AFBvcENsaXBSZWN0AFNldEl0ZW1EZWZhdWx0Rm9jdXMAU2V0S2V5Ym9hcmRGb2N1c0hlcmUASXNJdGVtSG92ZXJlZABJc0l0ZW1BY3RpdmUASXNJdGVtRWRpdGVkAElzSXRlbUZvY3VzZWQASXNJdGVtQ2xpY2tlZABJc0l0ZW1WaXNpYmxlAElzSXRlbURlYWN0aXZhdGVkAElzSXRlbURlYWN0aXZhdGVkQWZ0ZXJFZGl0AElzQW55SXRlbUhvdmVyZWQASXNBbnlJdGVtQWN0aXZlAElzQW55SXRlbUZvY3VzZWQAR2V0SXRlbVJlY3RNaW4AR2V0SXRlbVJlY3RNYXgAR2V0SXRlbVJlY3RTaXplAFNldEl0ZW1BbGxvd092ZXJsYXAASXNXaW5kb3dGb2N1c2VkAElzV2luZG93SG92ZXJlZABJc1JlY3RWaXNpYmxlX0EASXNSZWN0VmlzaWJsZV9CAEdldFRpbWUAR2V0RnJhbWVDb3VudABHZXRPdmVybGF5RHJhd0xpc3QAR2V0RHJhd0xpc3RTaGFyZWREYXRhAEdldFN0eWxlQ29sb3JOYW1lAENhbGNUZXh0U2l6ZQBDYWxjTGlzdENsaXBwaW5nAEJlZ2luQ2hpbGRGcmFtZQBFbmRDaGlsZEZyYW1lAENvbG9yQ29udmVydFUzMlRvRmxvYXQ0AENvbG9yQ29udmVydEZsb2F0NFRvVTMyAENvbG9yQ29udmVydFJHQnRvSFNWAENvbG9yQ29udmVydEhTVnRvUkdCAEdldEtleUluZGV4AElzS2V5RG93bgBJc0tleVByZXNzZWQASXNLZXlSZWxlYXNlZABHZXRLZXlQcmVzc2VkQW1vdW50AElzTW91c2VEb3duAElzQW55TW91c2VEb3duAElzTW91c2VDbGlja2VkAElzTW91c2VEb3VibGVDbGlja2VkAElzTW91c2VSZWxlYXNlZABJc01vdXNlRHJhZ2dpbmcASXNNb3VzZUhvdmVyaW5nUmVjdABJc01vdXNlUG9zVmFsaWQAR2V0TW91c2VQb3MAR2V0TW91c2VQb3NPbk9wZW5pbmdDdXJyZW50UG9wdXAAR2V0TW91c2VEcmFnRGVsdGEAUmVzZXRNb3VzZURyYWdEZWx0YQBHZXRNb3VzZUN1cnNvcgBTZXRNb3VzZUN1cnNvcgBDYXB0dXJlS2V5Ym9hcmRGcm9tQXBwAENhcHR1cmVNb3VzZUZyb21BcHAAR2V0Q2xpcGJvYXJkVGV4dABTZXRDbGlwYm9hcmRUZXh0AExvYWRJbmlTZXR0aW5nc0Zyb21NZW1vcnkAU2F2ZUluaVNldHRpbmdzVG9NZW1vcnkAU2V0QWxsb2NhdG9yRnVuY3Rpb25zAE1lbUFsbG9jAE1lbUZyZWUAaWlpAE4xMGVtc2NyaXB0ZW4zdmFsRQB2aWlpaQBOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TXzExY2hhcl90cmFpdHNJY0VFTlNfOWFsbG9jYXRvckljRUVFRQBOU3QzX18yMjFfX2Jhc2ljX3N0cmluZ19jb21tb25JTGIxRUVFAGlpaWZpAHgAeQAyM2ltcG9ydF9tYXliZV9udWxsX3ZhbHVlSTZJbVZlYzJFAGlpaWlpAGlpaWYAaWlpZmYAaWlpaQAxMmFjY2Vzc192YWx1ZUlmTG0xRUUAdmlmZmZpaWkAegB3ADZJbVZlYzIAdmlpZmlpADEyYWNjZXNzX3ZhbHVlSWlMbTFFRQBpaWlpZmkAUDIwSW1EcmF3TGlzdFNoYXJlZERhdGEAMjBJbURyYXdMaXN0U2hhcmVkRGF0YQBQMTBJbURyYXdMaXN0ADEwSW1EcmF3TGlzdABkaQBpaWlpaWkAJXMAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TMF8xMWNoYXJfdHJhaXRzSWNFRU5TMF85YWxsb2NhdG9ySWNFRUVFRQAyNGltcG9ydF9tYXliZV9udWxsX3N0cmluZwAyM2FjY2Vzc19tYXliZV9udWxsX3ZhbHVlSWJMbTFFRQB2aWlmaQB2aWlpAGlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJZkxtNEVFADIzYWNjZXNzX21heWJlX251bGxfdmFsdWVJZkxtNEVFADEyYWNjZXNzX3ZhbHVlSWZMbTNFRQBpaWlpaWlpaWlpAHNldABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lkRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlkRQBsZW5ndGgAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lmRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlmRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lqRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlqRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lpRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlpRQBpaWlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJaUxtNEVFADEyYWNjZXNzX3ZhbHVlSWlMbTNFRQAxMmFjY2Vzc192YWx1ZUlpTG0yRUUAJS4wZiBkZWcAMTJhY2Nlc3NfdmFsdWVJZkxtMkVFAGlpaWlpaWlpAGlpaWlkZGlpADEyYWNjZXNzX3ZhbHVlSWRMbTFFRQBQMjZJbUd1aUlucHV0VGV4dENhbGxiYWNrRGF0YQAyNkltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAGlpaWlpaWlpaWlpAHZpZmlpAHZpaWlpaWlpaWlpADEyYWNjZXNzX3ZhbHVlSWpMbTFFRQAxMmFjY2Vzc192YWx1ZUliTG0xRUUAdmlpaWlpaWkAbnVtYmVyAHZpaWYAZmlpAGlpAHZpaQBQNkltRm9udAA2SW1Gb250AFBLNkltVmVjNAA2SW1WZWM0AFRPRE86ICVzCgBhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoZW1zY3JpcHRlbjo6dmFsKSBjb25zdAB2aWZmAHZpaWlpaQBQMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAdmlmAGZpAHN0cmluZwBQMTBJbUd1aVN0eWxlADEwSW1HdWlTdHlsZQB2aQBQMTBJbURyYXdEYXRhADEwSW1EcmF3RGF0YQBQN0ltR3VpSU8AN0ltR3VpSU8AUDE2V3JhcEltR3VpQ29udGV4dAAxNldyYXBJbUd1aUNvbnRleHQAUDExSW1Gb250QXRsYXMAMTFJbUZvbnRBdGxhcwBJbUd1aVN0eWxlAEFscGhhAFdpbmRvd1BhZGRpbmcAV2luZG93Um91bmRpbmcAV2luZG93Qm9yZGVyU2l6ZQBXaW5kb3dNaW5TaXplAFdpbmRvd1RpdGxlQWxpZ24AQ2hpbGRSb3VuZGluZwBDaGlsZEJvcmRlclNpemUAUG9wdXBSb3VuZGluZwBQb3B1cEJvcmRlclNpemUARnJhbWVQYWRkaW5nAEZyYW1lUm91bmRpbmcARnJhbWVCb3JkZXJTaXplAEl0ZW1TcGFjaW5nAEl0ZW1Jbm5lclNwYWNpbmcAVG91Y2hFeHRyYVBhZGRpbmcASW5kZW50U3BhY2luZwBDb2x1bW5zTWluU3BhY2luZwBTY3JvbGxiYXJTaXplAFNjcm9sbGJhclJvdW5kaW5nAEdyYWJNaW5TaXplAEdyYWJSb3VuZGluZwBUYWJSb3VuZGluZwBUYWJCb3JkZXJTaXplAEJ1dHRvblRleHRBbGlnbgBEaXNwbGF5V2luZG93UGFkZGluZwBEaXNwbGF5U2FmZUFyZWFQYWRkaW5nAE1vdXNlQ3Vyc29yU2NhbGUAQW50aUFsaWFzZWRMaW5lcwBBbnRpQWxpYXNlZEZpbGwAQ3VydmVUZXNzZWxsYXRpb25Ub2wAX2dldEF0X0NvbG9ycwBfc2V0QXRfQ29sb3JzAFNjYWxlQWxsU2l6ZXMAUDZJbVZlYzQAUEs2SW1WZWMyAHYAUEsxMEltR3VpU3R5bGUASW1HdWlJTwBDb25maWdGbGFncwBCYWNrZW5kRmxhZ3MARGlzcGxheVNpemUARGVsdGFUaW1lAEluaVNhdmluZ1JhdGUASW5pRmlsZW5hbWUATG9nRmlsZW5hbWUATW91c2VEb3VibGVDbGlja1RpbWUATW91c2VEb3VibGVDbGlja01heERpc3QATW91c2VEcmFnVGhyZXNob2xkAF9nZXRBdF9LZXlNYXAAX3NldEF0X0tleU1hcABLZXlSZXBlYXREZWxheQBLZXlSZXBlYXRSYXRlAFVzZXJEYXRhAEZvbnRzAEZvbnRHbG9iYWxTY2FsZQBGb250QWxsb3dVc2VyU2NhbGluZwBGb250RGVmYXVsdABEaXNwbGF5RnJhbWVidWZmZXJTY2FsZQBEaXNwbGF5VmlzaWJsZU1pbgBEaXNwbGF5VmlzaWJsZU1heABNb3VzZURyYXdDdXJzb3IAQ29uZmlnTWFjT1NYQmVoYXZpb3JzAENvbmZpZ0lucHV0VGV4dEN1cnNvckJsaW5rAENvbmZpZ1dpbmRvd3NSZXNpemVGcm9tRWRnZXMAQ29uZmlnV2luZG93c01vdmVGcm9tVGl0bGVCYXJPbmx5AEdldENsaXBib2FyZFRleHRGbgBTZXRDbGlwYm9hcmRUZXh0Rm4AQ2xpcGJvYXJkVXNlckRhdGEATW91c2VQb3MAX2dldEF0X01vdXNlRG93bgBfc2V0QXRfTW91c2VEb3duAE1vdXNlV2hlZWwAS2V5Q3RybABLZXlTaGlmdABLZXlBbHQAS2V5U3VwZXIAX2dldEF0X0tleXNEb3duAF9zZXRBdF9LZXlzRG93bgBfZ2V0QXRfTmF2SW5wdXRzAF9zZXRBdF9OYXZJbnB1dHMAQWRkSW5wdXRDaGFyYWN0ZXIAQWRkSW5wdXRDaGFyYWN0ZXJzVVRGOABDbGVhcklucHV0Q2hhcmFjdGVycwBXYW50Q2FwdHVyZU1vdXNlAFdhbnRDYXB0dXJlS2V5Ym9hcmQAV2FudFRleHRJbnB1dABXYW50U2V0TW91c2VQb3MAV2FudFNhdmVJbmlTZXR0aW5ncwBOYXZBY3RpdmUATmF2VmlzaWJsZQBGcmFtZXJhdGUATWV0cmljc1JlbmRlclZlcnRpY2VzAE1ldHJpY3NSZW5kZXJJbmRpY2VzAE1ldHJpY3NSZW5kZXJXaW5kb3dzAE1ldHJpY3NBY3RpdmVXaW5kb3dzAE1ldHJpY3NBY3RpdmVBbGxvY2F0aW9ucwBNb3VzZURlbHRhAF9nZXRBdF9Nb3VzZUNsaWNrZWRQb3MAX2dldEF0X01vdXNlRG93bkR1cmF0aW9uAF9nZXRBdF9LZXlzRG93bkR1cmF0aW9uAF9nZXRBdF9OYXZJbnB1dHNEb3duRHVyYXRpb24AUEs3SW1HdWlJTwBpaWlpZgBmaWlpAEltRm9udEF0bGFzAEFkZEZvbnREZWZhdWx0AEFkZEZvbnRGcm9tTWVtb3J5VFRGAENsZWFyVGV4RGF0YQBDbGVhcklucHV0RGF0YQBDbGVhckZvbnRzAENsZWFyAEJ1aWxkAElzQnVpbHQAR2V0VGV4RGF0YUFzQWxwaGE4AEdldFRleERhdGFBc1JHQkEzMgBHZXRHbHlwaFJhbmdlc0RlZmF1bHQAR2V0R2x5cGhSYW5nZXNLb3JlYW4AR2V0R2x5cGhSYW5nZXNKYXBhbmVzZQBHZXRHbHlwaFJhbmdlc0NoaW5lc2VGdWxsAEdldEdseXBoUmFuZ2VzQ2hpbmVzZVNpbXBsaWZpZWRDb21tb24AR2V0R2x5cGhSYW5nZXNDeXJpbGxpYwBHZXRHbHlwaFJhbmdlc1RoYWkATG9ja2VkAEZsYWdzAFRleElEAFRleERlc2lyZWRXaWR0aABUZXhHbHlwaFBhZGRpbmcAVGV4V2lkdGgAVGV4SGVpZ2h0AFRleFV2U2NhbGUAVGV4VXZXaGl0ZVBpeGVsAEl0ZXJhdGVGb250cwBwaXhlbHMAd2lkdGgAaGVpZ2h0AGJ5dGVzX3Blcl9waXhlbABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0loRUUAaWlpaWZpaQBGb250RGF0YQBidWZmZXIAYnl0ZU9mZnNldABieXRlTGVuZ3RoAFRPRE86IEZvbnREYXRhICV6dSAlenUKAEZvbnREYXRhT3duZWRCeUF0bGFzAEZvbnRObwBTaXplUGl4ZWxzAE92ZXJzYW1wbGVIAE92ZXJzYW1wbGVWAFBpeGVsU25hcEgAR2x5cGhFeHRyYVNwYWNpbmcAR2x5cGhPZmZzZXQAR2x5cGhSYW5nZXMAR2x5cGhNaW5BZHZhbmNlWABHbHlwaE1heEFkdmFuY2VYAE1lcmdlTW9kZQBSYXN0ZXJpemVyRmxhZ3MAUmFzdGVyaXplck11bHRpcGx5AE5hbWUAUEsxMUltRm9udEF0bGFzAEltRm9udABGb250U2l6ZQBTY2FsZQBEaXNwbGF5T2Zmc2V0AEl0ZXJhdGVHbHlwaHMARmFsbGJhY2tHbHlwaABGYWxsYmFja0FkdmFuY2VYAEZhbGxiYWNrQ2hhcgBDb25maWdEYXRhQ291bnQASXRlcmF0ZUNvbmZpZ0RhdGEAQXNjZW50AERlc2NlbnQATWV0cmljc1RvdGFsU3VyZmFjZQBDbGVhck91dHB1dERhdGEAQnVpbGRMb29rdXBUYWJsZQBGaW5kR2x5cGgARmluZEdseXBoTm9GYWxsYmFjawBTZXRGYWxsYmFja0NoYXIAR2V0Q2hhckFkdmFuY2UASXNMb2FkZWQAR2V0RGVidWdOYW1lAENhbGNUZXh0U2l6ZUEAQ2FsY1dvcmRXcmFwUG9zaXRpb25BAFJlbmRlckNoYXIAdmlpaWZpaWkAaWlpZmlmAGlpaWZmZmlpaQA8dW5rbm93bj4AUEs2SW1Gb250AFBLMTFJbUZvbnRHbHlwaAAxMUltRm9udEdseXBoAFAxMkltRm9udENvbmZpZwAxMkltRm9udENvbmZpZwBQMTFJbUZvbnRHbHlwaABJbUZvbnRDb25maWcARHN0Rm9udABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShJbUZvbnRDb25maWcgJiwgZW1zY3JpcHRlbjo6dmFsKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShjb25zdCBJbUZvbnRDb25maWcgJikgY29uc3QAUEsxMkltRm9udENvbmZpZwBJbUZvbnRHbHlwaABDb2RlcG9pbnQAQWR2YW5jZVgAWDAAWTAAWDEAWTEAVTAAVjAAVTEAVjEASW1EcmF3RGF0YQBJdGVyYXRlRHJhd0xpc3RzAFZhbGlkAENtZExpc3RzQ291bnQAVG90YWxJZHhDb3VudABUb3RhbFZ0eENvdW50AERpc3BsYXlQb3MARGVJbmRleEFsbEJ1ZmZlcnMAU2NhbGVDbGlwUmVjdHMAUEsxMEltRHJhd0RhdGEAUEsxMEltRHJhd0xpc3QASW1EcmF3TGlzdABJdGVyYXRlRHJhd0NtZHMASWR4QnVmZmVyAFZ0eEJ1ZmZlcgBQdXNoQ2xpcFJlY3RGdWxsU2NyZWVuAFB1c2hUZXh0dXJlSUQAUG9wVGV4dHVyZUlEAEdldENsaXBSZWN0TWluAEdldENsaXBSZWN0TWF4AEFkZExpbmUAQWRkUmVjdABBZGRSZWN0RmlsbGVkAEFkZFJlY3RGaWxsZWRNdWx0aUNvbG9yAEFkZFF1YWQAQWRkUXVhZEZpbGxlZABBZGRUcmlhbmdsZQBBZGRUcmlhbmdsZUZpbGxlZABBZGRDaXJjbGUAQWRkQ2lyY2xlRmlsbGVkAEFkZFRleHRfQQBBZGRUZXh0X0IAQWRkSW1hZ2UAQWRkSW1hZ2VRdWFkAEFkZEltYWdlUm91bmRlZABBZGRQb2x5bGluZQBBZGRDb252ZXhQb2x5RmlsbGVkAEFkZEJlemllckN1cnZlAFBhdGhDbGVhcgBQYXRoTGluZVRvAFBhdGhMaW5lVG9NZXJnZUR1cGxpY2F0ZQBQYXRoRmlsbENvbnZleABQYXRoU3Ryb2tlAFBhdGhBcmNUbwBQYXRoQXJjVG9GYXN0AFBhdGhCZXppZXJDdXJ2ZVRvAFBhdGhSZWN0AENoYW5uZWxzU3BsaXQAQ2hhbm5lbHNNZXJnZQBDaGFubmVsc1NldEN1cnJlbnQAQWRkQ2FsbGJhY2sAQWRkRHJhd0NtZABDbGVhckZyZWVNZW1vcnkAUHJpbVJlc2VydmUAUHJpbVJlY3QAUHJpbVJlY3RVVgBQcmltUXVhZFVWAFByaW1Xcml0ZVZ0eABQcmltV3JpdGVJZHgAUHJpbVZ0eABVcGRhdGVDbGlwUmVjdABVcGRhdGVUZXh0dXJlSUQAdmlpaWlpaWlpaWlpAHZpaWlpZmkAdmlpaWZmZmkAdmlpaWlmAHZpaWlpaWlpZmkAdmlpaWlpaWlpZmkAdmlpaWlpaWlpaWlpaQB2aWlpZmlpaWZpADIzaW1wb3J0X21heWJlX251bGxfdmFsdWVJNkltVmVjNEUAdmlpaWZpaQB2aWlpZmlpZgB2aWlpaWlpAHZpaWlpaWlmAHZpaWlpaWlpZgB2aWlpaWlpaWkAdmlpaWlpZmkAdmlpaWlpZmlmAHZpaWlpaWYATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJY0VFAFBLOUltRHJhd0NtZAA5SW1EcmF3Q21kAEltRHJhd0NtZABFbGVtQ291bnQAQ2xpcFJlY3QAVGV4dHVyZUlkAFA5SW1EcmF3Q21kAEltR3VpTGlzdENsaXBwZXIAU3RhcnRQb3NZAEl0ZW1zSGVpZ2h0AEl0ZW1zQ291bnQAU3RlcE5vAERpc3BsYXlTdGFydABEaXNwbGF5RW5kAFN0ZXAAUDE2SW1HdWlMaXN0Q2xpcHBlcgAxNkltR3VpTGlzdENsaXBwZXIAdmlpaWYAUEsxNkltR3VpTGlzdENsaXBwZXIASW1HdWlTaXplQ2FsbGJhY2tEYXRhAFBvcwBDdXJyZW50U2l6ZQBEZXNpcmVkU2l6ZQBQSzIxSW1HdWlTaXplQ2FsbGJhY2tEYXRhAEltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAEV2ZW50RmxhZwBFdmVudENoYXIARXZlbnRLZXkAQnVmAEJ1ZlRleHRMZW4AQnVmU2l6ZQBCdWZEaXJ0eQBDdXJzb3JQb3MAU2VsZWN0aW9uU3RhcnQAU2VsZWN0aW9uRW5kAERlbGV0ZUNoYXJzAEluc2VydENoYXJzAEhhc1NlbGVjdGlvbgBQSzI2SW1HdWlJbnB1dFRleHRDYWxsYmFja0RhdGEASW1WZWM0AFNldABDb3B5AEVxdWFscwBJbVZlYzIAUDZJbVZlYzIAV3JhcEltR3VpQ29udGV4dABQSzE2V3JhcEltR3VpQ29udGV4dABtYWxsaW5mbwBhcmVuYQBvcmRibGtzAHNtYmxrcwBoYmxrcwBoYmxraGQAdXNtYmxrcwBmc21ibGtzAHVvcmRibGtzAGZvcmRibGtzAGtlZXBjb3N0AHZvaWQAYm9vbABzdGQ6OnN0cmluZwBzdGQ6OmJhc2ljX3N0cmluZzx1bnNpZ25lZCBjaGFyPgBzdGQ6OndzdHJpbmcAZW1zY3JpcHRlbjo6dmFsAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgc2hvcnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgaW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludDE2X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQzMl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZyBkb3VibGU+AE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SWVFRQBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxkb3VibGU+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBsb25nPgBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0ltRUUAZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZz4ATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJbEVFAE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SXRFRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lzRUUATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJYUVFAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGNoYXI+AE5TdDNfXzIxMmJhc2ljX3N0cmluZ0l3TlNfMTFjaGFyX3RyYWl0c0l3RUVOU185YWxsb2NhdG9ySXdFRUVFAE5TdDNfXzIxMmJhc2ljX3N0cmluZ0loTlNfMTFjaGFyX3RyYWl0c0loRUVOU185YWxsb2NhdG9ySWhFRUVFAGRvdWJsZQBmbG9hdAB1bnNpZ25lZCBsb25nAGxvbmcAdW5zaWduZWQgaW50AGludAB1bnNpZ25lZCBzaG9ydABzaG9ydAB1bnNpZ25lZCBjaGFyAHNpZ25lZCBjaGFyAGNoYXIAAAECBAcDBgUALSsgICAwWDB4AChudWxsKQAtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBOQU4ALgBpbmZpbml0eQBuYW4AcndhAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXM6ICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXMAdGVybWluYXRpbmcgd2l0aCAlcyBmb3JlaWduIGV4Y2VwdGlvbgB0ZXJtaW5hdGluZwB1bmNhdWdodABTdDlleGNlcHRpb24ATjEwX19jeHhhYml2MTE2X19zaGltX3R5cGVfaW5mb0UAU3Q5dHlwZV9pbmZvAE4xMF9fY3h4YWJpdjEyMF9fc2lfY2xhc3NfdHlwZV9pbmZvRQBOMTBfX2N4eGFiaXYxMTdfX2NsYXNzX3R5cGVfaW5mb0UAcHRocmVhZF9vbmNlIGZhaWx1cmUgaW4gX19jeGFfZ2V0X2dsb2JhbHNfZmFzdCgpAGNhbm5vdCBjcmVhdGUgcHRocmVhZCBrZXkgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAY2Fubm90IHplcm8gb3V0IHRocmVhZCB2YWx1ZSBmb3IgX19jeGFfZ2V0X2dsb2JhbHMoKQB0ZXJtaW5hdGVfaGFuZGxlciB1bmV4cGVjdGVkbHkgcmV0dXJuZWQAU3QxMWxvZ2ljX2Vycm9yAFN0MTJsZW5ndGhfZXJyb3IATjEwX19jeHhhYml2MTE5X19wb2ludGVyX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19wYmFzZV90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjEyM19fZnVuZGFtZW50YWxfdHlwZV9pbmZvRQB2AFB2AERuAGIAYwBoAGEAcwB0AGkAagBsAG0AZgBkAE4xMF9fY3h4YWJpdjEyMV9fdm1pX2NsYXNzX3R5cGVfaW5mb0U=\";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}function getBinary(){try{if(Module[\"wasmBinary\"]){return new Uint8Array(Module[\"wasmBinary\"])}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(Module[\"readBinary\"]){return Module[\"readBinary\"](wasmBinaryFile)}else{throw\"both async and sync fetching of the wasm failed\"}}catch(err){abort(err)}}function getBinaryPromise(){if(!Module[\"wasmBinary\"]&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch===\"function\"){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()})}return new Promise(function(resolve,reject){resolve(getBinary())})}function createWasm(env){var info={\"env\":env,\"global\":{\"NaN\":NaN,Infinity:Infinity},\"global.Math\":Math,\"asm2wasm\":asm2wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module[\"asm\"]=exports;removeRunDependency(\"wasm-instantiate\")}addRunDependency(\"wasm-instantiate\");function receiveInstantiatedSource(output){receiveInstance(output[\"instance\"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err(\"failed to asynchronously prepare wasm: \"+reason);abort(reason)})}function instantiateAsync(){if(!Module[\"wasmBinary\"]&&typeof WebAssembly.instantiateStreaming===\"function\"&&!isDataURI(wasmBinaryFile)&&typeof fetch===\"function\"){return WebAssembly.instantiateStreaming(fetch(wasmBinaryFile,{credentials:\"same-origin\"}),info).then(receiveInstantiatedSource,function(reason){err(\"wasm streaming compile failed: \"+reason);err(\"falling back to ArrayBuffer instantiation\");instantiateArrayBuffer(receiveInstantiatedSource)})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module[\"instantiateWasm\"]){try{return Module[\"instantiateWasm\"](info,receiveInstance)}catch(e){err(\"Module.instantiateWasm callback failed with error: \"+e);return false}}instantiateAsync();return{}}Module[\"asm\"]=function(global,env,providedBuffer){env[\"memory\"]=wasmMemory;env[\"table\"]=wasmTable=new WebAssembly.Table({\"initial\":1442,\"maximum\":1442,\"element\":\"anyfunc\"});env[\"__memory_base\"]=1024;env[\"__table_base\"]=0;var exports=createWasm(env);return exports};__ATINIT__.push({func:function(){globalCtors()}});function ___cxa_allocate_exception(size){return _malloc(size)}function __ZSt18uncaught_exceptionv(){return!!__ZSt18uncaught_exceptionv.uncaught_exception}function ___cxa_free_exception(ptr){try{return _free(ptr)}catch(e){}}var EXCEPTIONS={last:0,caught:[],infos:{},deAdjust:function(adjusted){if(!adjusted||EXCEPTIONS.infos[adjusted])return adjusted;for(var key in EXCEPTIONS.infos){var ptr=+key;var adj=EXCEPTIONS.infos[ptr].adjusted;var len=adj.length;for(var i=0;i0);info.refcount--;if(info.refcount===0&&!info.rethrown){if(info.destructor){Module[\"dynCall_vi\"](info.destructor,ptr)}delete EXCEPTIONS.infos[ptr];___cxa_free_exception(ptr)}},clearRef:function(ptr){if(!ptr)return;var info=EXCEPTIONS.infos[ptr];info.refcount=0}};function ___cxa_throw(ptr,type,destructor){EXCEPTIONS.infos[ptr]={ptr:ptr,adjusted:[ptr],type:type,destructor:destructor,refcount:0,caught:false,rethrown:false};EXCEPTIONS.last=ptr;if(!(\"uncaught_exception\"in __ZSt18uncaught_exceptionv)){__ZSt18uncaught_exceptionv.uncaught_exception=1}else{__ZSt18uncaught_exceptionv.uncaught_exception++}throw ptr}function ___lock(){}var PATH={splitPath:function(filename){var splitPathRe=/^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:function(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:function(path){var isAbsolute=path.charAt(0)===\"/\",trailingSlash=path.substr(-1)===\"/\";path=PATH.normalizeArray(path.split(\"/\").filter(function(p){return!!p}),!isAbsolute).join(\"/\");if(!path&&!isAbsolute){path=\".\"}if(path&&trailingSlash){path+=\"/\"}return(isAbsolute?\"/\":\"\")+path},dirname:function(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:function(path){if(path===\"/\")return\"/\";var lastSlash=path.lastIndexOf(\"/\");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},extname:function(path){return PATH.splitPath(path)[3]},join:function(){var paths=Array.prototype.slice.call(arguments,0);return PATH.normalize(paths.join(\"/\"))},join2:function(l,r){return PATH.normalize(l+\"/\"+r)}};var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0}else{buffer.push(curr)}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get()}};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall145(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();return SYSCALLS.doReadv(stream,iov,iovcnt)}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j>2]=value;return value}function ___syscall221(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___unlock(){}function getShiftFromSize(size){switch(size){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError(\"Unknown type size: \"+size)}}function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<256;++i){codes[i]=String.fromCharCode(i)}embind_charCodes=codes}var embind_charCodes=undefined;function readLatin1String(ptr){var ret=\"\";var c=ptr;while(HEAPU8[c]){ret+=embind_charCodes[HEAPU8[c++]]}return ret}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return\"_unknown\"}name=name.replace(/[^a-zA-Z0-9_]/g,\"$\");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return\"_\"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return new Function(\"body\",\"return function \"+name+\"() {\\n\"+' \"use strict\";'+\" return body.apply(this, arguments);\\n\"+\"};\\n\")(body)}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+\"\\n\"+stack.replace(/^Error(:[^\\n]*)?\\n/,\"\")}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+\": \"+this.message}};return errorClass}var BindingError=undefined;function throwBindingError(message){throw new BindingError(message)}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError(\"Mismatched type converter count\")}for(var i=0;i>shift])},destructorFunction:null})}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return{count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+\" instance already deleted\")}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr)}else{$$.ptrType.registeredClass.rawDestructor($$.ptr)}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$)}}function attachFinalizer(handle){if(\"undefined\"===typeof FinalizationGroup){attachFinalizer=function(handle){return handle};return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn(\"object already deleted: \"+$$.ptr)}else{releaseClassHandle($$)}}});attachFinalizer=function(handle){finalizationGroup.register(handle,handle.$$,handle.$$);return handle};detachFinalizer=function(handle){finalizationGroup.unregister(handle.$$)};return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError(\"Object already scheduled for deletion\")}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined}}function ClassHandle_isDeleted(){return!this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj[\"delete\"]()}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError(\"Object already scheduled for deletion\")}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes)}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype[\"isAliasOf\"]=ClassHandle_isAliasOf;ClassHandle.prototype[\"clone\"]=ClassHandle_clone;ClassHandle.prototype[\"delete\"]=ClassHandle_delete;ClassHandle.prototype[\"isDeleted\"]=ClassHandle_isDeleted;ClassHandle.prototype[\"deleteLater\"]=ClassHandle_deleteLater}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError(\"Function '\"+humanName+\"' called with an invalid number of arguments (\"+arguments.length+\") - expects one of (\"+proto[methodName].overloadTable+\")!\")}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError(\"Cannot register public name '\"+name+\"' twice\")}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError(\"Cannot register multiple overloads of a function with the same number of arguments (\"+numArguments+\")!\")}Module[name].overloadTable[numArguments]=value}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[]}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError(\"Expected null or instance of \"+desiredClass.name+\", got an instance of \"+ptrClass.name)}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr)}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError(\"Cannot convert argument of type \"+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+\" to parameter type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError(\"Passing raw pointer to smart pointer is illegal\")}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{throwBindingError(\"Cannot convert argument of type \"+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+\" to parameter type \"+this.name)}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{var clonedHandle=handle[\"clone\"]();ptr=this.rawShare(ptr,__emval_register(function(){clonedHandle[\"delete\"]()}));if(destructors!==null){destructors.push(this.rawDestructor,ptr)}}break;default:throwBindingError(\"Unsupporting sharing policy\")}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}if(handle.$$.ptrType.isConst){throwBindingError(\"Cannot convert argument of type \"+handle.$$.ptrType.name+\" to parameter type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function simpleReadValueFromPointer(pointer){return this[\"fromWireType\"](HEAPU32[pointer>>2])}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr)}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr)}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle[\"delete\"]()}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k])}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes)}}function init_embind(){Module[\"getInheritedInstanceCount\"]=getInheritedInstanceCount;Module[\"getLiveInheritedInstances\"]=getLiveInheritedInstances;Module[\"flushPendingDeletes\"]=flushPendingDeletes;Module[\"setDelayFunction\"]=setDelayFunction}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError(\"ptr should not be undefined\")}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError(\"makeClassHandle requires ptr and ptrType\")}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError(\"Both smartPtrType and smartPtr must be specified\")}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance[\"clone\"]()}else{var rv=registeredInstance[\"clone\"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType}else{toType=registeredPointerRecord.pointerType}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype[\"argPackAdvance\"]=8;RegisteredPointer.prototype[\"readValueFromPointer\"]=simpleReadValueFromPointer;RegisteredPointer.prototype[\"deleteObject\"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype[\"fromWireType\"]=RegisteredPointer_fromWireType}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this[\"toWireType\"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null}else{this[\"toWireType\"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null}}else{this[\"toWireType\"]=genericPointerToWireType}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError(\"Replacing nonexistant public symbol\")}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value}else{Module[name]=value;Module[name].argCount=numArguments}}function embind__requireFunction(signature,rawFunction){signature=readLatin1String(signature);function makeDynCaller(dynCall){var args=[];for(var i=1;i>2)+i])}return array}function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr)}}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName=\"constructor \"+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[]}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError(\"Cannot register multiple constructors with identical number of parameters (\"+(argCount-1)+\") for class '\"+classType.name+\"'! Overload resolution is currently only performed using the parameter count, not actual type info!\")}classType.registeredClass.constructor_body[argCount-1]=function unboundTypeHandler(){throwUnboundTypeError(\"Cannot construct \"+classType.name+\" due to unbound types\",rawArgTypes)};whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){classType.registeredClass.constructor_body[argCount-1]=function constructor_body(){if(arguments.length!==argCount-1){throwBindingError(humanName+\" called with \"+arguments.length+\" arguments, expected \"+(argCount-1))}var destructors=[];var args=new Array(argCount);args[0]=rawConstructor;for(var i=1;i0?\", \":\"\")+argsListWired}invokerFnBody+=(returns?\"var rv = \":\"\")+\"invoker(fn\"+(argsListWired.length>0?\", \":\"\")+argsListWired+\");\\n\";if(needsDestructorStack){invokerFnBody+=\"runDestructors(destructors);\\n\"}else{for(var i=isClassMethodFunc?1:2;i4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle)}}function count_emval_handles(){var count=0;for(var i=5;i>2])};case 3:return function(pointer){return this[\"fromWireType\"](HEAPF64[pointer>>3])};default:throw new TypeError(\"Unknown float type: \"+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,\"fromWireType\":function(value){return value},\"toWireType\":function(destructors,value){if(typeof value!==\"number\"&&typeof value!==\"boolean\"){throw new TypeError('Cannot convert \"'+_embind_repr(value)+'\" to '+this.name)}return value},\"argPackAdvance\":8,\"readValueFromPointer\":floatReadValueFromPointer(name,shift),destructorFunction:null})}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError(\"Cannot call \"+name+\" due to unbound types\",argTypes)},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return[]})}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError(\"Unknown integer type: \"+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295}var shift=getShiftFromSize(size);var fromWireType=function(value){return value};if(minRange===0){var bitshift=32-8*size;fromWireType=function(value){return value<>>bitshift}}var isUnsignedType=name.indexOf(\"unsigned\")!=-1;registerType(primitiveType,{name:name,\"fromWireType\":fromWireType,\"toWireType\":function(destructors,value){if(typeof value!==\"number\"&&typeof value!==\"boolean\"){throw new TypeError('Cannot convert \"'+_embind_repr(value)+'\" to '+this.name)}if(valuemaxRange){throw new TypeError('Passing a number \"'+_embind_repr(value)+'\" from JS side to C/C++ side to an argument of type \"'+name+'\", which is outside the valid range ['+minRange+\", \"+maxRange+\"]!\")}return isUnsignedType?value>>>0:value|0},\"argPackAdvance\":8,\"readValueFromPointer\":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null})}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(heap[\"buffer\"],data,size)}name=readLatin1String(name);registerType(rawType,{name:name,\"fromWireType\":decodeMemoryView,\"argPackAdvance\":8,\"readValueFromPointer\":decodeMemoryView},{ignoreDuplicateRegistrations:true})}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name===\"std::string\";registerType(rawType,{name:name,\"fromWireType\":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var endChar=HEAPU8[value+4+length];var endCharSwap=0;if(endChar!=0){endCharSwap=endChar;HEAPU8[value+4+length]=0}var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(HEAPU8[currentBytePtr]==0){var stringSegment=UTF8ToString(decodeStartPtr);if(str===undefined)str=stringSegment;else{str+=String.fromCharCode(0);str+=stringSegment}decodeStartPtr=currentBytePtr+1}}if(endCharSwap!=0)HEAPU8[value+4+length]=endCharSwap}else{var a=new Array(length);for(var i=0;i>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1)}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError(\"String has UTF-16 code units that do not fit in 8 bits\")}HEAPU8[ptr+4+i]=charCode}}else{for(var i=0;i>2];var a=new Array(length);var start=value+4>>shift;for(var i=0;i>2]=length;var start=ptr+4>>shift;for(var i=0;i>2]=rd;return returnType[\"toWireType\"](destructors,handle)}function __emval_lookupTypes(argCount,argTypes,argWireTypes){var a=new Array(argCount);for(var i=0;i>2)+i],\"parameter \"+i)}return a}function __emval_call(handle,argCount,argTypes,argv){handle=requireHandle(handle);var types=__emval_lookupTypes(argCount,argTypes);var args=new Array(argCount);for(var i=0;i4){emval_handle_array[handle].refcount+=1}}function __emval_new_array(){return __emval_register([])}function __emval_new_cstring(v){return __emval_register(getStringOrSymbol(v))}function __emval_new_object(){return __emval_register({})}function __emval_run_destructors(handle){var destructors=emval_handle_array[handle].value;runDestructors(destructors);__emval_decref(handle)}function __emval_set_property(handle,key,value){handle=requireHandle(handle);key=requireHandle(key);value=requireHandle(value);handle[key]=value}function __emval_strictly_equals(first,second){first=requireHandle(first);second=requireHandle(second);return first===second}function __emval_take_value(type,argv){type=requireRegisteredType(type,\"_emval_take_value\");var v=type[\"readValueFromPointer\"](argv);return __emval_register(v)}function __emval_typeof(handle){handle=requireHandle(handle);return __emval_register(typeof handle)}function _abort(){Module[\"abort\"]()}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest)}function abortOnCannotGrowMemory(requestedSize){abort(\"OOM\")}function _emscripten_resize_heap(requestedSize){abortOnCannotGrowMemory(requestedSize)}embind_init_charCodes();BindingError=Module[\"BindingError\"]=extendError(Error,\"BindingError\");InternalError=Module[\"InternalError\"]=extendError(Error,\"InternalError\");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module[\"UnboundTypeError\"]=extendError(Error,\"UnboundTypeError\");init_emval();var ASSERTIONS=false;function intArrayToString(array){var ret=[];for(var i=0;i255){if(ASSERTIONS){assert(false,\"Character code \"+chr+\" (\"+String.fromCharCode(chr)+\") at offset \"+i+\" not in 0x00-0xFF.\")}chr&=255}ret.push(String.fromCharCode(chr))}return ret.join(\"\")}var decodeBase64=typeof atob===\"function\"?atob:function(input){var keyStr=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";var output=\"\";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\\+\\/\\=]/g,\"\");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(i0){return}preRun();if(runDependencies>0)return;if(Module[\"calledRun\"])return;function doRun(){if(Module[\"calledRun\"])return;Module[\"calledRun\"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module[\"onRuntimeInitialized\"])Module[\"onRuntimeInitialized\"]();postRun()}if(Module[\"setStatus\"]){Module[\"setStatus\"](\"Running...\");setTimeout(function(){setTimeout(function(){Module[\"setStatus\"](\"\")},1);doRun()},1)}else{doRun()}}Module[\"run\"]=run;function abort(what){if(Module[\"onAbort\"]){Module[\"onAbort\"](what)}if(what!==undefined){out(what);err(what);what=JSON.stringify(what)}else{what=\"\"}ABORT=true;EXITSTATUS=1;throw\"abort(\"+what+\"). Build with -s ASSERTIONS=1 for more info.\"}Module[\"abort\"]=abort;if(Module[\"preInit\"]){if(typeof Module[\"preInit\"]==\"function\")Module[\"preInit\"]=[Module[\"preInit\"]];while(Module[\"preInit\"].length>0){Module[\"preInit\"].pop()()}}Module[\"noExitRuntime\"]=true;run();\n\n\n return Module\n}\n);\n})();\nif (typeof exports === 'object' && typeof module === 'object')\n module.exports = Module;\n else if (typeof define === 'function' && define['amd'])\n define([], function() { return Module; });\n else if (typeof exports === 'object')\n exports[\"Module\"] = Module;\n ","export interface XY { x: number, y: number; }\nexport interface XYZ extends XY { z: number; }\nexport interface XYZW extends XYZ { w: number; }\n\nexport interface RGB { r: number; g: number; b: number; }\nexport interface RGBA extends RGB { a: number; }\n\nimport * as Bind from \"./bind-imgui\";\nexport { Bind };\n\nlet bind: Bind.Module;\nexport default async function(value?: Partial): Promise {\n return new Promise((resolve: () => void) => {\n Bind.default(value).then((value: Bind.Module): void => {\n bind = value;\n resolve();\n });\n });\n}\nexport { bind };\n\nfunction import_Scalar(sca: XY | XYZ | XYZW | Bind.ImAccess | Bind.ImScalar | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImScalar {\n if (Array.isArray(sca)) { return [ sca[0] ]; }\n if (typeof sca === \"function\") { return [ sca() ]; }\n return [ sca.x ];\n}\n\nfunction export_Scalar(tuple: Bind.ImScalar, sca: XY | XYZ | XYZW | Bind.ImAccess | Bind.ImScalar | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(sca)) { sca[0] = tuple[0]; return; }\n if (typeof sca === \"function\") { sca(tuple[0]); return; }\n sca.x = tuple[0];\n}\n\nfunction import_Vector2(vec: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple2 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1] ]; }\n return [ vec.x, vec.y ];\n}\n\nfunction export_Vector2(tuple: Bind.ImTuple2, vec: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; return; }\n vec.x = tuple[0]; vec.y = tuple[1];\n}\n\nfunction import_Vector3(vec: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple3 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1], vec[2] ]; }\n return [ vec.x, vec.y, vec.z ];\n}\n\nfunction export_Vector3(tuple: Bind.ImTuple3, vec: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; vec[2] = tuple[2]; return; }\n vec.x = tuple[0]; vec.y = tuple[1]; vec.z = tuple[2];\n}\n\nfunction import_Vector4(vec: XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple4 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1], vec[2], vec[3] || 0 ]; }\n return [ vec.x, vec.y, vec.z, vec.w ];\n}\n\nfunction export_Vector4(tuple: Bind.ImTuple4, vec: XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; vec[2] = tuple[2]; vec[3] = tuple[3]; return; }\n vec.x = tuple[0]; vec.y = tuple[1]; vec.z = tuple[2]; vec.w = tuple[3];\n}\n\nfunction import_Color3(col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple3 {\n if (Array.isArray(col)) { return [ col[0], col[1], col[2] ]; }\n if (\"r\" in col) { return [ col.r, col.g, col.b ]; }\n return [ col.x, col.y, col.z ];\n}\n\nfunction export_Color3(tuple: Bind.ImTuple3, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(col)) { col[0] = tuple[0]; col[1] = tuple[1]; col[2] = tuple[2]; return; }\n if (\"r\" in col) { col.r = tuple[0]; col.g = tuple[1]; col.b = tuple[2]; return; }\n col.x = tuple[0]; col.y = tuple[1]; col.z = tuple[2];\n}\n\nfunction import_Color4(col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4 | RGBA): Bind.ImTuple4 {\n if (Array.isArray(col)) { return [ col[0], col[1], col[2], col[3] ]; }\n if (\"r\" in col) { return [ col.r, col.g, col.b, col.a ]; }\n return [ col.x, col.y, col.z, col.w ];\n}\n\nfunction export_Color4(tuple: Bind.ImTuple4, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4 | RGBA): void {\n if (Array.isArray(col)) { col[0] = tuple[0]; col[1] = tuple[1]; col[2] = tuple[2]; return; }\n if (\"r\" in col) { col.r = tuple[0]; col.g = tuple[1]; col.b = tuple[2]; return; }\n col.x = tuple[0]; col.y = tuple[1]; col.z = tuple[2];\n}\n\nimport * as config from \"./imconfig\";\n\nexport const IMGUI_VERSION: string = \"1.71\"; // bind.IMGUI_VERSION;\nexport const IMGUI_VERSION_NUM: number = 17100; // bind.IMGUI_VERSION_NUM;\n\n// #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert))\nexport function IMGUI_CHECKVERSION(): boolean { return DebugCheckVersionAndDataLayout(IMGUI_VERSION, bind.ImGuiIOSize, bind.ImGuiStyleSize, bind.ImVec2Size, bind.ImVec4Size, bind.ImDrawVertSize, bind.ImDrawIdxSize); }\n\nexport function IM_ASSERT(_EXPR: boolean | number): void { if (!_EXPR) { throw new Error(); } }\n\nexport function IM_ARRAYSIZE(_ARR: ArrayLike | ImStringBuffer): number {\n if (_ARR instanceof ImStringBuffer) {\n return _ARR.size;\n } else {\n return _ARR.length;\n }\n}\n\nexport class ImStringBuffer {\n constructor(public size: number, public buffer: string = \"\") {}\n}\n\nexport { ImAccess } from \"./bind-imgui\";\nexport { ImScalar } from \"./bind-imgui\";\nexport { ImTuple2 } from \"./bind-imgui\";\nexport { ImTuple3 } from \"./bind-imgui\";\nexport { ImTuple4 } from \"./bind-imgui\";\n\nexport type ImTextureID = WebGLTexture;\n\n// Flags for ImGui::Begin()\nexport { ImGuiWindowFlags as WindowFlags };\nexport enum ImGuiWindowFlags {\n None = 0,\n NoTitleBar = 1 << 0, // Disable title-bar\n NoResize = 1 << 1, // Disable user resizing with the lower-right grip\n NoMove = 1 << 2, // Disable user moving the window\n NoScrollbar = 1 << 3, // Disable scrollbars (window can still scroll with mouse or programatically)\n NoScrollWithMouse = 1 << 4, // Disable user vertically scrolling with mouse wheel. On child window, mouse wheel will be forwarded to the parent unless NoScrollbar is also set.\n NoCollapse = 1 << 5, // Disable user collapsing window by double-clicking on it\n AlwaysAutoResize = 1 << 6, // Resize every window to its content every frame\n NoBackground = 1 << 7, // Disable drawing background color (WindowBg, etc.) and outside border. Similar as using SetNextWindowBgAlpha(0.0f).\n NoSavedSettings = 1 << 8, // Never load/save settings in .ini file\n NoMouseInputs = 1 << 9, // Disable catching mouse or keyboard inputs, hovering test with pass through.\n MenuBar = 1 << 10, // Has a menu-bar\n HorizontalScrollbar = 1 << 11, // Allow horizontal scrollbar to appear (off by default). You may use SetNextWindowContentSize(ImVec2(width,0.0f)); prior to calling Begin() to specify width. Read code in imgui_demo in the \"Horizontal Scrolling\" section.\n NoFocusOnAppearing = 1 << 12, // Disable taking focus when transitioning from hidden to visible state\n NoBringToFrontOnFocus = 1 << 13, // Disable bringing window to front when taking focus (e.g. clicking on it or programatically giving it focus)\n AlwaysVerticalScrollbar= 1 << 14, // Always show vertical scrollbar (even if ContentSize.y < Size.y)\n AlwaysHorizontalScrollbar= 1 << 15, // Always show horizontal scrollbar (even if ContentSize.x < Size.x)\n AlwaysUseWindowPadding = 1 << 16, // Ensure child windows without border uses style.WindowPadding (ignored by default for non-bordered child windows, because more convenient)\n NoNavInputs = 1 << 18, // No gamepad/keyboard navigation within the window\n NoNavFocus = 1 << 19, // No focusing toward this window with gamepad/keyboard navigation (e.g. skipped by CTRL+TAB)\n UnsavedDocument = 1 << 20, // Append '*' to title without affecting the ID, as a convenience to avoid using the ### operator. When used in a tab/docking context, tab is selected on closure and closure is deferred by one frame to allow code to cancel the closure (with a confirmation popup, etc.) without flicker.\n NoNav = NoNavInputs | NoNavFocus,\n NoDecoration = NoTitleBar | NoResize | NoScrollbar | NoCollapse,\n NoInputs = NoMouseInputs | NoNavInputs | NoNavFocus,\n\n // [Internal]\n NavFlattened = 1 << 23, // (WIP) Allow gamepad/keyboard navigation to cross over parent border to this child (only use on child that have no scrolling!)\n ChildWindow = 1 << 24, // Don't use! For internal use by BeginChild()\n Tooltip = 1 << 25, // Don't use! For internal use by BeginTooltip()\n Popup = 1 << 26, // Don't use! For internal use by BeginPopup()\n Modal = 1 << 27, // Don't use! For internal use by BeginPopupModal()\n ChildMenu = 1 << 28, // Don't use! For internal use by BeginMenu()\n}\n\n// Flags for ImGui::InputText()\nexport { ImGuiInputTextFlags as InputTextFlags };\nexport enum ImGuiInputTextFlags {\n None = 0,\n CharsDecimal = 1 << 0, // Allow 0123456789.+-*/\n CharsHexadecimal = 1 << 1, // Allow 0123456789ABCDEFabcdef\n CharsUppercase = 1 << 2, // Turn a..z into A..Z\n CharsNoBlank = 1 << 3, // Filter out spaces, tabs\n AutoSelectAll = 1 << 4, // Select entire text when first taking mouse focus\n EnterReturnsTrue = 1 << 5, // Return 'true' when Enter is pressed (as opposed to when the value was modified)\n CallbackCompletion = 1 << 6, // Call user function on pressing TAB (for completion handling)\n CallbackHistory = 1 << 7, // Call user function on pressing Up/Down arrows (for history handling)\n CallbackAlways = 1 << 8, // Call user function every time. User code may query cursor position, modify text buffer.\n CallbackCharFilter = 1 << 9, // Call user function to filter character. Modify data->EventChar to replace/filter input, or return 1 to discard character.\n AllowTabInput = 1 << 10, // Pressing TAB input a '\\t' character into the text field\n CtrlEnterForNewLine = 1 << 11, // In multi-line mode, unfocus with Enter, add new line with Ctrl+Enter (default is opposite: unfocus with Ctrl+Enter, add line with Enter).\n NoHorizontalScroll = 1 << 12, // Disable following the cursor horizontally\n AlwaysInsertMode = 1 << 13, // Insert mode\n ReadOnly = 1 << 14, // Read-only mode\n Password = 1 << 15, // Password mode, display all characters as '*'\n NoUndoRedo = 1 << 16, // Disable undo/redo. Note that input text owns the text data while active, if you want to provide your own undo/redo stack you need e.g. to call ClearActiveID().\n CharsScientific = 1 << 17, // Allow 0123456789.+-*/eE (Scientific notation input)\n CallbackResize = 1 << 18, // Allow buffer capacity resize + notify when the string wants to be resized (for string types which hold a cache of their Size) (see misc/stl/imgui_stl.h for an example of using this)\n // [Internal]\n Multiline = 1 << 20, // For internal use by InputTextMultiline()\n NoMarkEdited = 1 << 21, // For internal use by functions using InputText() before reformatting data\n}\n\n// Flags for ImGui::TreeNodeEx(), ImGui::CollapsingHeader*()\nexport { ImGuiTreeNodeFlags as TreeNodeFlags };\nexport enum ImGuiTreeNodeFlags {\n None = 0,\n Selected = 1 << 0, // Draw as selected\n Framed = 1 << 1, // Full colored frame (e.g. for CollapsingHeader)\n AllowItemOverlap = 1 << 2, // Hit testing to allow subsequent widgets to overlap this one\n NoTreePushOnOpen = 1 << 3, // Don't do a TreePush() when open (e.g. for CollapsingHeader) = no extra indent nor pushing on ID stack\n NoAutoOpenOnLog = 1 << 4, // Don't automatically and temporarily open node when Logging is active (by default logging will automatically open tree nodes)\n DefaultOpen = 1 << 5, // Default node to be open\n OpenOnDoubleClick = 1 << 6, // Need double-click to open node\n OpenOnArrow = 1 << 7, // Only open when clicking on the arrow part. If OpenOnDoubleClick is also set, single-click arrow or double-click all box to open.\n Leaf = 1 << 8, // No collapsing, no arrow (use as a convenience for leaf nodes).\n Bullet = 1 << 9, // Display a bullet instead of arrow\n FramePadding = 1 << 10, // Use FramePadding (even for an unframed text node) to vertically align text baseline to regular widget height. Equivalent to calling AlignTextToFramePadding().\n //SpanAllAvailWidth = 1 << 11, // FIXME: TODO: Extend hit box horizontally even if not framed\n //NoScrollOnOpen = 1 << 12, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible\n NavLeftJumpsBackHere = 1 << 13, // (WIP) Nav: left direction may move to this TreeNode() from any of its child (items submitted between TreeNode and TreePop)\n CollapsingHeader = Framed | NoTreePushOnOpen | NoAutoOpenOnLog,\n}\n\n// Flags for ImGui::Selectable()\nexport { ImGuiSelectableFlags as SelectableFlags };\nexport enum ImGuiSelectableFlags {\n None = 0,\n DontClosePopups = 1 << 0, // Clicking this don't close parent popup window\n SpanAllColumns = 1 << 1, // Selectable frame can span all columns (text will still fit in current column)\n AllowDoubleClick = 1 << 2, // Generate press events on double clicks too\n Disabled = 1 << 3 // Cannot be selected, display greyed out text\n}\n\n// Flags for ImGui::BeginCombo()\nexport { ImGuiComboFlags as ComboFlags };\nexport enum ImGuiComboFlags {\n None = 0,\n PopupAlignLeft = 1 << 0, // Align the popup toward the left by default\n HeightSmall = 1 << 1, // Max ~4 items visible. Tip: If you want your combo popup to be a specific size you can use SetNextWindowSizeConstraints() prior to calling BeginCombo()\n HeightRegular = 1 << 2, // Max ~8 items visible (default)\n HeightLarge = 1 << 3, // Max ~20 items visible\n HeightLargest = 1 << 4, // As many fitting items as possible\n NoArrowButton = 1 << 5, // Display on the preview box without the square arrow button\n NoPreview = 1 << 6, // Display only a square arrow button\n HeightMask_ = HeightSmall | HeightRegular | HeightLarge | HeightLargest,\n}\n\n// Flags for ImGui::BeginTabBar()\nexport { ImGuiTabBarFlags as TabBarFlags };\nexport enum ImGuiTabBarFlags {\n None = 0,\n Reorderable = 1 << 0, // Allow manually dragging tabs to re-order them + New tabs are appended at the end of list\n AutoSelectNewTabs = 1 << 1, // Automatically select new tabs when they appear\n TabListPopupButton = 1 << 2,\n NoCloseWithMiddleMouseButton = 1 << 3, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.\n NoTabListScrollingButtons = 1 << 4,\n NoTooltip = 1 << 5, // Disable tooltips when hovering a tab\n FittingPolicyResizeDown = 1 << 6, // Resize tabs when they don't fit\n FittingPolicyScroll = 1 << 7, // Add scroll buttons when tabs don't fit\n FittingPolicyMask_ = FittingPolicyResizeDown | FittingPolicyScroll,\n FittingPolicyDefault_ = FittingPolicyResizeDown\n};\n\n// Flags for ImGui::BeginTabItem()\nexport { ImGuiTabItemFlags as TabItemFlags };\nexport enum ImGuiTabItemFlags\n{\n ImGuiTabItemFlags_None = 0,\n ImGuiTabItemFlags_UnsavedDocument = 1 << 0, // Append '*' to title without affecting the ID, as a convenience to avoid using the ### operator. Also: tab is selected on closure and closure is deferred by one frame to allow code to undo it without flicker.\n ImGuiTabItemFlags_SetSelected = 1 << 1, // Trigger flag to programatically make the tab selected when calling BeginTabItem()\n ImGuiTabItemFlags_NoCloseWithMiddleMouseButton = 1 << 2, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.\n ImGuiTabItemFlags_NoPushId = 1 << 3 // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem()\n};\n\n// Flags for ImGui::IsWindowFocused()\nexport { ImGuiFocusedFlags as FocusedFlags };\nexport enum ImGuiFocusedFlags {\n None = 0,\n ChildWindows = 1 << 0, // IsWindowFocused(): Return true if any children of the window is focused\n RootWindow = 1 << 1, // IsWindowFocused(): Test from root window (top most parent of the current hierarchy)\n AnyWindow = 1 << 2, // IsWindowFocused(): Return true if any window is focused\n RootAndChildWindows = RootWindow | ChildWindows,\n}\n\n// Flags for ImGui::IsItemHovered(), ImGui::IsWindowHovered()\nexport { ImGuiHoveredFlags as HoveredFlags };\nexport enum ImGuiHoveredFlags {\n None = 0, // Return true if directly over the item/window, not obstructed by another window, not obstructed by an active popup or modal blocking inputs under them.\n ChildWindows = 1 << 0, // IsWindowHovered() only: Return true if any children of the window is hovered\n RootWindow = 1 << 1, // IsWindowHovered() only: Test from root window (top most parent of the current hierarchy)\n AnyWindow = 1 << 2, // IsWindowHovered() only: Return true if any window is hovered\n AllowWhenBlockedByPopup = 1 << 3, // Return true even if a popup window is normally blocking access to this item/window\n //AllowWhenBlockedByModal = 1 << 4, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet.\n AllowWhenBlockedByActiveItem = 1 << 5, // Return true even if an active item is blocking access to this item/window. Useful for Drag and Drop patterns.\n AllowWhenOverlapped = 1 << 6, // Return true even if the position is overlapped by another window\n AllowWhenDisabled = 1 << 7, // Return true even if the item is disabled\n RectOnly = AllowWhenBlockedByPopup | AllowWhenBlockedByActiveItem | AllowWhenOverlapped,\n RootAndChildWindows = RootWindow | ChildWindows,\n}\n\n// Flags for ImGui::BeginDragDropSource(), ImGui::AcceptDragDropPayload()\nexport { ImGuiDragDropFlags as DragDropFlags };\nexport enum ImGuiDragDropFlags {\n // BeginDragDropSource() flags\n None = 0,\n SourceNoPreviewTooltip = 1 << 0, // By default, a successful call to BeginDragDropSource opens a tooltip so you can display a preview or description of the source contents. This flag disable this behavior.\n SourceNoDisableHover = 1 << 1, // By default, when dragging we clear data so that IsItemHovered() will return true, to avoid subsequent user code submitting tooltips. This flag disable this behavior so you can still call IsItemHovered() on the source item.\n SourceNoHoldToOpenOthers = 1 << 2, // Disable the behavior that allows to open tree nodes and collapsing header by holding over them while dragging a source item.\n SourceAllowNullID = 1 << 3, // Allow items such as Text(), Image() that have no unique identifier to be used as drag source, by manufacturing a temporary identifier based on their window-relative position. This is extremely unusual within the dear imgui ecosystem and so we made it explicit.\n SourceExtern = 1 << 4, // External source (from outside of imgui), won't attempt to read current item/window info. Will always return true. Only one Extern source can be active simultaneously.\n SourceAutoExpirePayload = 1 << 5, // Automatically expire the payload if the source cease to be submitted (otherwise payloads are persisting while being dragged)\n // AcceptDragDropPayload() flags\n AcceptBeforeDelivery = 1 << 10, // AcceptDragDropPayload() will returns true even before the mouse button is released. You can then call IsDelivery() to test if the payload needs to be delivered.\n AcceptNoDrawDefaultRect = 1 << 11, // Do not draw the default highlight rectangle when hovering over target.\n AcceptNoPreviewTooltip = 1 << 12, // Request hiding the BeginDragDropSource tooltip from the BeginDragDropTarget site.\n AcceptPeekOnly = AcceptBeforeDelivery | AcceptNoDrawDefaultRect, // For peeking ahead and inspecting the payload before delivery.\n}\n\n// Standard Drag and Drop payload types. You can define you own payload types using 12-characters long strings. Types starting with '_' are defined by Dear ImGui.\nexport const IMGUI_PAYLOAD_TYPE_COLOR_3F: string = \"_COL3F\"; // float[3] // Standard type for colors, without alpha. User code may use this type.\nexport const IMGUI_PAYLOAD_TYPE_COLOR_4F: string = \"_COL4F\"; // float[4] // Standard type for colors. User code may use this type.\n\n// A primary data type\nexport { ImGuiDataType as DataType };\nexport enum ImGuiDataType {\n S8, // char\n U8, // unsigned char\n S16, // short\n U16, // unsigned short\n S32, // int\n U32, // unsigned int\n S64, // long long, __int64\n U64, // unsigned long long, unsigned __int64\n Float, // float\n Double, // double\n COUNT\n}\n\n// A cardinal direction\nexport { ImGuiDir as Dir };\nexport enum ImGuiDir {\n None = -1,\n Left = 0,\n Right = 1,\n Up = 2,\n Down = 3,\n COUNT\n}\n\n// User fill ImGuiIO.KeyMap[] array with indices into the ImGuiIO.KeysDown[512] array\nexport { ImGuiKey as Key };\nexport enum ImGuiKey {\n Tab,\n LeftArrow,\n RightArrow,\n UpArrow,\n DownArrow,\n PageUp,\n PageDown,\n Home,\n End,\n Insert,\n Delete,\n Backspace,\n Space,\n Enter,\n Escape,\n A, // for text edit CTRL+A: select all\n C, // for text edit CTRL+C: copy\n V, // for text edit CTRL+V: paste\n X, // for text edit CTRL+X: cut\n Y, // for text edit CTRL+Y: redo\n Z, // for text edit CTRL+Z: undo\n COUNT,\n}\n\n// [BETA] Gamepad/Keyboard directional navigation\n// Keyboard: Set io.ConfigFlags |= EnableKeyboard to enable. NewFrame() will automatically fill io.NavInputs[] based on your io.KeyDown[] + io.KeyMap[] arrays.\n// Gamepad: Set io.ConfigFlags |= EnableGamepad to enable. Fill the io.NavInputs[] fields before calling NewFrame(). Note that io.NavInputs[] is cleared by EndFrame().\n// Read instructions in imgui.cpp for more details.\nexport { ImGuiNavInput as NavInput };\nexport enum ImGuiNavInput\n{\n // Gamepad Mapping\n Activate, // activate / open / toggle / tweak value // e.g. Circle (PS4), A (Xbox), B (Switch), Space (Keyboard)\n Cancel, // cancel / close / exit // e.g. Cross (PS4), B (Xbox), A (Switch), Escape (Keyboard)\n Input, // text input / on-screen keyboard // e.g. Triang.(PS4), Y (Xbox), X (Switch), Return (Keyboard)\n Menu, // tap: toggle menu / hold: focus, move, resize // e.g. Square (PS4), X (Xbox), Y (Switch), Alt (Keyboard)\n DpadLeft, // move / tweak / resize window (w/ PadMenu) // e.g. D-pad Left/Right/Up/Down (Gamepads), Arrow keys (Keyboard)\n DpadRight, //\n DpadUp, //\n DpadDown, //\n LStickLeft, // scroll / move window (w/ PadMenu) // e.g. Left Analog Stick Left/Right/Up/Down\n LStickRight, //\n LStickUp, //\n LStickDown, //\n FocusPrev, // next window (w/ PadMenu) // e.g. L1 or L2 (PS4), LB or LT (Xbox), L or ZL (Switch)\n FocusNext, // prev window (w/ PadMenu) // e.g. R1 or R2 (PS4), RB or RT (Xbox), R or ZL (Switch)\n TweakSlow, // slower tweaks // e.g. L1 or L2 (PS4), LB or LT (Xbox), L or ZL (Switch)\n TweakFast, // faster tweaks // e.g. R1 or R2 (PS4), RB or RT (Xbox), R or ZL (Switch)\n\n // [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them.\n // Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) may be directly reading from io.KeyDown[] instead of io.NavInputs[].\n KeyMenu_, // toggle menu // = io.KeyAlt\n KeyTab_, // tab // = Tab key\n KeyLeft_, // move left // = Arrow keys\n KeyRight_, // move right\n KeyUp_, // move up\n KeyDown_, // move down\n COUNT,\n InternalStart_ = KeyMenu_,\n}\n\n// [BETA] Gamepad/Keyboard directional navigation flags, stored in io.ConfigFlags\nexport { ImGuiConfigFlags as ConfigFlags };\nexport enum ImGuiConfigFlags\n{\n None = 0,\n NavEnableKeyboard = 1 << 0, // Master keyboard navigation enable flag. NewFrame() will automatically fill io.NavInputs[] based on io.KeyDown[].\n NavEnableGamepad = 1 << 1, // Master gamepad navigation enable flag. This is mostly to instruct your imgui back-end to fill io.NavInputs[].\n NavEnableSetMousePos = 1 << 2, // Request navigation to allow moving the mouse cursor. May be useful on TV/console systems where moving a virtual mouse is awkward. Will update io.MousePos and set io.WantMoveMouse=true. If enabled you MUST honor io.WantMoveMouse requests in your binding, otherwise ImGui will react as if the mouse is jumping around back and forth.\n NavNoCaptureKeyboard = 1 << 3, // Do not set the io.WantCaptureKeyboard flag with io.NavActive is set.\n NoMouse = 1 << 4, // Instruct imgui to clear mouse position/buttons in NewFrame(). This allows ignoring the mouse information back-end\n NoMouseCursorChange = 1 << 5, // Instruct back-end to not alter mouse cursor shape and visibility.\n\n IsSRGB = 1 << 20, // Application is SRGB-aware.\n IsTouchScreen = 1 << 21 // Application is using a touch screen instead of a mouse.\n}\n\n// Enumeration for PushStyleColor() / PopStyleColor()\nexport { ImGuiCol as Col };\nexport enum ImGuiCol {\n Text,\n TextDisabled,\n WindowBg, // Background of normal windows\n ChildBg, // Background of child windows\n PopupBg, // Background of popups, menus, tooltips windows\n Border,\n BorderShadow,\n FrameBg, // Background of checkbox, radio button, plot, slider, text input\n FrameBgHovered,\n FrameBgActive,\n TitleBg,\n TitleBgActive,\n TitleBgCollapsed,\n MenuBarBg,\n ScrollbarBg,\n ScrollbarGrab,\n ScrollbarGrabHovered,\n ScrollbarGrabActive,\n CheckMark,\n SliderGrab,\n SliderGrabActive,\n Button,\n ButtonHovered,\n ButtonActive,\n Header,\n HeaderHovered,\n HeaderActive,\n Separator,\n SeparatorHovered,\n SeparatorActive,\n ResizeGrip,\n ResizeGripHovered,\n ResizeGripActive,\n Tab,\n TabHovered,\n TabActive,\n TabUnfocused,\n TabUnfocusedActive,\n PlotLines,\n PlotLinesHovered,\n PlotHistogram,\n PlotHistogramHovered,\n TextSelectedBg,\n DragDropTarget,\n NavHighlight, // Gamepad/keyboard: current highlighted item\n NavWindowingHighlight, // Highlight window when using CTRL+TAB\n NavWindowingDimBg, // Darken/colorize entire screen behind the CTRL+TAB window list, when active\n ModalWindowDimBg, // Darken/colorize entire screen behind a modal window, when one is active\n COUNT,\n}\n\n// Enumeration for PushStyleVar() / PopStyleVar() to temporarily modify the ImGuiStyle structure.\n// NB: the enum only refers to fields of ImGuiStyle which makes sense to be pushed/popped inside UI code. During initialization, feel free to just poke into ImGuiStyle directly.\n// NB: if changing this enum, you need to update the associated internal table GStyleVarInfo[] accordingly. This is where we link enum values to members offset/type.\nexport { ImGuiStyleVar as StyleVar };\nexport enum ImGuiStyleVar {\n // Enum name ......................// Member in ImGuiStyle structure (see ImGuiStyle for descriptions)\n Alpha, // float Alpha\n WindowPadding, // ImVec2 WindowPadding\n WindowRounding, // float WindowRounding\n WindowBorderSize, // float WindowBorderSize\n WindowMinSize, // ImVec2 WindowMinSize\n WindowTitleAlign, // ImVec2 WindowTitleAlign\n // WindowMenuButtonPosition, // ImGuiDir WindowMenuButtonPosition\n ChildRounding, // float ChildRounding\n ChildBorderSize, // float ChildBorderSize\n PopupRounding, // float PopupRounding\n PopupBorderSize, // float PopupBorderSize\n FramePadding, // ImVec2 FramePadding\n FrameRounding, // float FrameRounding\n FrameBorderSize, // float FrameBorderSize\n ItemSpacing, // ImVec2 ItemSpacing\n ItemInnerSpacing, // ImVec2 ItemInnerSpacing\n IndentSpacing, // float IndentSpacing\n ScrollbarSize, // float ScrollbarSize\n ScrollbarRounding, // float ScrollbarRounding\n GrabMinSize, // float GrabMinSize\n GrabRounding, // float GrabRounding\n TabRounding, // float TabRounding\n ButtonTextAlign, // ImVec2 ButtonTextAlign\n SelectableTextAlign, // ImVec2 SelectableTextAlign\n Count_, COUNT = Count_,\n}\n\n// Back-end capabilities flags stored in io.BackendFlags. Set by imgui_impl_xxx or custom back-end.\nexport { ImGuiBackendFlags as BackendFlags };\nexport enum ImGuiBackendFlags {\n None = 0,\n HasGamepad = 1 << 0, // Back-end has a connected gamepad.\n HasMouseCursors = 1 << 1, // Back-end can honor GetMouseCursor() values and change the OS cursor shape.\n HasSetMousePos = 1 << 2, // Back-end can honor io.WantSetMousePos and reposition the mouse (only used if ImGuiConfigFlags_NavEnableSetMousePos is set).\n RendererHasVtxOffset = 1 << 3, // Back-end Renderer supports ImDrawCmd::VtxOffset. This enables output of large meshes (64K+ vertices) while still using 16-bits indices.\n}\n\n// Enumeration for ColorEdit3() / ColorEdit4() / ColorPicker3() / ColorPicker4() / ColorButton()\nexport { ImGuiColorEditFlags as ColorEditFlags };\nexport enum ImGuiColorEditFlags {\n None = 0,\n NoAlpha = 1 << 1, // // ColorEdit, ColorPicker, ColorButton: ignore Alpha component (read 3 components from the input pointer).\n NoPicker = 1 << 2, // // ColorEdit: disable picker when clicking on colored square.\n NoOptions = 1 << 3, // // ColorEdit: disable toggling options menu when right-clicking on inputs/small preview.\n NoSmallPreview = 1 << 4, // // ColorEdit, ColorPicker: disable colored square preview next to the inputs. (e.g. to show only the inputs)\n NoInputs = 1 << 5, // // ColorEdit, ColorPicker: disable inputs sliders/text widgets (e.g. to show only the small preview colored square).\n NoTooltip = 1 << 6, // // ColorEdit, ColorPicker, ColorButton: disable tooltip when hovering the preview.\n NoLabel = 1 << 7, // // ColorEdit, ColorPicker: disable display of inline text label (the label is still forwarded to the tooltip and picker).\n NoSidePreview = 1 << 8, // // ColorPicker: disable bigger color preview on right side of the picker, use small colored square preview instead.\n NoDragDrop = 1 << 9, // // ColorEdit: disable drag and drop target. ColorButton: disable drag and drop source.\n // User Options (right-click on widget to change some of them). You can set application defaults using SetColorEditOptions(). The idea is that you probably don't want to override them in most of your calls, let the user choose and/or call SetColorEditOptions() during startup.\n AlphaBar = 1 << 16, // // ColorEdit, ColorPicker: show vertical alpha bar/gradient in picker.\n AlphaPreview = 1 << 17, // // ColorEdit, ColorPicker, ColorButton: display preview as a transparent color over a checkerboard, instead of opaque.\n AlphaPreviewHalf= 1 << 18, // // ColorEdit, ColorPicker, ColorButton: display half opaque / half checkerboard, instead of opaque.\n HDR = 1 << 19, // // (WIP) ColorEdit: Currently only disable 0.0f..1.0f limits in RGBA edition (note: you probably want to use Float flag as well).\n DisplayRGB = 1 << 20, // [Inputs] // ColorEdit: choose one among RGB/HSV/HEX. ColorPicker: choose any combination using RGB/HSV/HEX.\n DisplayHSV = 1 << 21, // [Inputs] // \"\n DisplayHex = 1 << 22, // [Inputs] // \"\n Uint8 = 1 << 23, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0..255.\n Float = 1 << 24, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0.0f..1.0f floats instead of 0..255 integers. No round-trip of value via integers.\n PickerHueBar = 1 << 25, // [PickerMode] // ColorPicker: bar for Hue, rectangle for Sat/Value.\n PickerHueWheel = 1 << 26, // [PickerMode] // ColorPicker: wheel for Hue, triangle for Sat/Value.\n InputRGB = 1 << 27, // [Input] // ColorEdit, ColorPicker: input and output data in RGB format.\n InputHSV = 1 << 28, // [Input] // ColorEdit, ColorPicker: input and output data in HSV format.\n\n // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to\n // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup.\n _OptionsDefault = Uint8|DisplayRGB|InputRGB|PickerHueBar,\n\n // [Internal] Masks\n _DisplayMask = DisplayRGB|DisplayHSV|DisplayHex,\n _DataTypeMask = Uint8|Float,\n _PickerMask = PickerHueWheel|PickerHueBar,\n _InputMask = InputRGB|InputHSV,\n}\n\n// Enumeration for GetMouseCursor()\nexport { ImGuiMouseCursor as MouseCursor };\nexport enum ImGuiMouseCursor {\n None = -1,\n Arrow = 0,\n TextInput, // When hovering over InputText, etc.\n ResizeAll, // (Unused by imgui functions)\n ResizeNS, // When hovering over an horizontal border\n ResizeEW, // When hovering over a vertical border or a column\n ResizeNESW, // When hovering over the bottom-left corner of a window\n ResizeNWSE, // When hovering over the bottom-right corner of a window\n Hand, // (Unused by imgui functions. Use for e.g. hyperlinks)\n Count_, COUNT = Count_,\n}\n\n// Condition for ImGui::SetWindow***(), SetNextWindow***(), SetNextTreeNode***() functions\n// All those functions treat 0 as a shortcut to Always. From the point of view of the user use this as an enum (don't combine multiple values into flags).\nexport { ImGuiCond as Cond };\nexport enum ImGuiCond {\n Always = 1 << 0, // Set the variable\n Once = 1 << 1, // Set the variable once per runtime session (only the first call with succeed)\n FirstUseEver = 1 << 2, // Set the variable if the window has no saved data (if doesn't exist in the .ini file)\n Appearing = 1 << 3, // Set the variable if the window is appearing after being hidden/inactive (or the first time)\n}\n\nexport { ImDrawCornerFlags as wCornerFlags };\nexport enum ImDrawCornerFlags\n{\n TopLeft = 1 << 0, // 0x1\n TopRight = 1 << 1, // 0x2\n BotLeft = 1 << 2, // 0x4\n BotRight = 1 << 3, // 0x8\n Top = TopLeft | TopRight, // 0x3\n Bot = BotLeft | BotRight, // 0xC\n Left = TopLeft | BotLeft, // 0x5\n Right = TopRight | BotRight, // 0xA\n All = 0xF, // In your function calls you may use ~0 (= all bits sets) instead of All, as a convenience\n}\n\nexport { ImDrawListFlags as wListFlags };\nexport enum ImDrawListFlags\n{\n None = 0,\n AntiAliasedLines = 1 << 0,\n AntiAliasedFill = 1 << 1,\n}\n\nexport { ImU32 } from \"./bind-imgui\";\n\nexport { interface_ImVec2 } from \"./bind-imgui\";\nexport { reference_ImVec2 } from \"./bind-imgui\";\n\nexport class ImVec2 implements Bind.interface_ImVec2 {\n public static readonly ZERO: Readonly = new ImVec2(0.0, 0.0);\n public static readonly UNIT: Readonly = new ImVec2(1.0, 1.0);\n public static readonly UNIT_X: Readonly = new ImVec2(1.0, 0.0);\n public static readonly UNIT_Y: Readonly = new ImVec2(0.0, 1.0);\n\n constructor(public x: number = 0.0, public y: number = 0.0) {}\n\n public Set(x: number, y: number): this {\n this.x = x;\n this.y = y;\n return this;\n }\n\n public Copy(other: Readonly): this {\n this.x = other.x;\n this.y = other.y;\n return this;\n }\n\n public Equals(other: Readonly): boolean {\n if (this.x !== other.x) { return false; }\n if (this.y !== other.y) { return false; }\n return true;\n }\n}\n\nexport { interface_ImVec4 } from \"./bind-imgui\";\nexport { reference_ImVec4 } from \"./bind-imgui\";\n\nexport class ImVec4 implements Bind.interface_ImVec4 {\n public static readonly ZERO: Readonly = new ImVec4(0.0, 0.0, 0.0, 0.0);\n public static readonly UNIT: Readonly = new ImVec4(1.0, 1.0, 1.0, 1.0);\n public static readonly UNIT_X: Readonly = new ImVec4(1.0, 0.0, 0.0, 0.0);\n public static readonly UNIT_Y: Readonly = new ImVec4(0.0, 1.0, 0.0, 0.0);\n public static readonly UNIT_Z: Readonly = new ImVec4(0.0, 0.0, 1.0, 0.0);\n public static readonly UNIT_W: Readonly = new ImVec4(0.0, 0.0, 0.0, 1.0);\n public static readonly BLACK: Readonly = new ImVec4(0.0, 0.0, 0.0, 1.0);\n public static readonly WHITE: Readonly = new ImVec4(1.0, 1.0, 1.0, 1.0);\n\n constructor(public x: number = 0.0, public y: number = 0.0, public z: number = 0.0, public w: number = 1.0) {}\n\n public Set(x: number, y: number, z: number, w: number): this {\n this.x = x;\n this.y = y;\n this.z = z;\n this.w = w;\n return this;\n }\n\n public Copy(other: Readonly): this {\n this.x = other.x;\n this.y = other.y;\n this.z = other.z;\n this.w = other.w;\n return this;\n }\n\n public Equals(other: Readonly): boolean {\n if (this.x !== other.x) { return false; }\n if (this.y !== other.y) { return false; }\n if (this.z !== other.z) { return false; }\n if (this.w !== other.w) { return false; }\n return true;\n }\n}\n\n//-----------------------------------------------------------------------------\n// Helpers\n//-----------------------------------------------------------------------------\n\n// Lightweight std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug).\n// Our implementation does NOT call C++ constructors/destructors. This is intentional and we do not require it. Do not use this class as a straight std::vector replacement in your code!\nexport class ImVector extends Array\n{\n public get Size(): number { return this.length; }\n public Data: T[] = this;\n public empty(): boolean { return this.length === 0; }\n public clear(): void { this.length = 0; }\n public pop_back(): T | undefined { return this.pop(); }\n public push_back(value: T): void { this.push(value); }\n // public:\n // int Size;\n // int Capacity;\n // T* Data;\n\n // typedef T value_type;\n // typedef value_type* iterator;\n // typedef const value_type* const_iterator;\n\n // inline ImVector() { Size = Capacity = 0; Data = NULL; }\n // inline ~ImVector() { if (Data) ImGui::MemFree(Data); }\n\n // inline bool empty() const { return Size == 0; }\n // inline int size() const { return Size; }\n // inline int capacity() const { return Capacity; }\n\n // inline value_type& operator[](int i) { IM_ASSERT(i < Size); return Data[i]; }\n // inline const value_type& operator[](int i) const { IM_ASSERT(i < Size); return Data[i]; }\n\n // inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } }\n // inline iterator begin() { return Data; }\n // inline const_iterator begin() const { return Data; }\n // inline iterator end() { return Data + Size; }\n // inline const_iterator end() const { return Data + Size; }\n // inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; }\n // inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; }\n // inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; }\n // inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; }\n // inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; }\n\n // inline int _grow_capacity(int size) const { int new_capacity = Capacity ? (Capacity + Capacity/2) : 8; return new_capacity > size ? new_capacity : size; }\n\n // inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; }\n // inline void resize(int new_size, const T& v){ if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) Data[n] = v; Size = new_size; }\n // inline void reserve(int new_capacity)\n // {\n // if (new_capacity <= Capacity)\n // return;\n // T* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T));\n // if (Data)\n // memcpy(new_data, Data, (size_t)Size * sizeof(T));\n // ImGui::MemFree(Data);\n // Data = new_data;\n // Capacity = new_capacity;\n // }\n\n // inline void push_back(const value_type& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); Data[Size++] = v; }\n // inline void pop_back() { IM_ASSERT(Size > 0); Size--; }\n // inline void push_front(const value_type& v) { if (Size == 0) push_back(v); else insert(Data, v); }\n\n // inline iterator erase(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; }\n // inline iterator erase(const_iterator it, const_iterator it_last){ IM_ASSERT(it >= Data && it < Data+Size && it_last > it && it_last <= Data+Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - count) * sizeof(value_type)); Size -= (int)count; return Data + off; }\n // inline iterator erase_unsorted(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; if (it < Data+Size-1) memcpy(Data + off, Data + Size - 1, sizeof(value_type)); Size--; return Data + off; }\n // inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= Data && it <= Data+Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; }\n // inline bool contains(const value_type& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; }\n}\n\n// Helper: Parse and apply text filters. In format \"aaaaa[,bbbb][,ccccc]\"\nexport class ImGuiTextFilter\n{\n // IMGUI_API ImGuiTextFilter(const char* default_filter = \"\");\n constructor(default_filter: string = \"\") {\n if (default_filter)\n {\n // ImStrncpy(InputBuf, default_filter, IM_ARRAYSIZE(InputBuf));\n this.InputBuf.buffer = default_filter;\n this.Build();\n }\n else\n {\n // InputBuf[0] = 0;\n this.InputBuf.buffer = \"\";\n this.CountGrep = 0;\n }\n }\n // IMGUI_API bool Draw(const char* label = \"Filter (inc,-exc)\", float width = 0.0f); // Helper calling InputText+Build\n public Draw(label: string = \"Filter (inc,-exc)\", width: number = 0.0): boolean {\n if (width !== 0.0)\n bind.PushItemWidth(width);\n const value_changed: boolean = InputText(label, this.InputBuf, IM_ARRAYSIZE(this.InputBuf));\n if (width !== 0.0)\n bind.PopItemWidth();\n if (value_changed)\n this.Build();\n return value_changed;\n }\n // IMGUI_API bool PassFilter(const char* text, const char* text_end = NULL) const;\n public PassFilter(text: string, text_end: number | null = null): boolean {\n // if (Filters.empty())\n // return true;\n\n // if (text == NULL)\n // text = \"\";\n\n // for (int i = 0; i != Filters.Size; i++)\n // {\n // const TextRange& f = Filters[i];\n // if (f.empty())\n // continue;\n // if (f.front() == '-')\n // {\n // // Subtract\n // if (ImStristr(text, text_end, f.begin()+1, f.end()) != NULL)\n // return false;\n // }\n // else\n // {\n // // Grep\n // if (ImStristr(text, text_end, f.begin(), f.end()) != NULL)\n // return true;\n // }\n // }\n\n // Implicit * grep\n if (this.CountGrep === 0)\n return true;\n\n return false;\n }\n // IMGUI_API void Build();\n public Build(): void {\n // Filters.resize(0);\n // TextRange input_range(InputBuf, InputBuf+strlen(InputBuf));\n // input_range.split(',', Filters);\n\n this.CountGrep = 0;\n // for (int i = 0; i != Filters.Size; i++)\n // {\n // Filters[i].trim_blanks();\n // if (Filters[i].empty())\n // continue;\n // if (Filters[i].front() != '-')\n // CountGrep += 1;\n // }\n }\n // void Clear() { InputBuf[0] = 0; Build(); }\n public Clear(): void { this.InputBuf.buffer = \"\"; this.Build(); }\n // bool IsActive() const { return !Filters.empty(); }\n public IsActive(): boolean { return false; }\n\n // [Internal]\n // struct TextRange\n // {\n // const char* b;\n // const char* e;\n\n // TextRange() { b = e = NULL; }\n // TextRange(const char* _b, const char* _e) { b = _b; e = _e; }\n // const char* begin() const { return b; }\n // const char* end() const { return e; }\n // bool empty() const { return b == e; }\n // char front() const { return *b; }\n // static bool is_blank(char c) { return c == ' ' || c == '\\t'; }\n // void trim_blanks() { while (b < e && is_blank(*b)) b++; while (e > b && is_blank(*(e-1))) e--; }\n // IMGUI_API void split(char separator, ImVector& out);\n // };\n\n // char InputBuf[256];\n public InputBuf: ImStringBuffer = new ImStringBuffer(256);\n // ImVector Filters;\n // int CountGrep;\n public CountGrep: number = 0;\n}\n\n// Helper: Text buffer for logging/accumulating text\nexport class ImGuiTextBuffer\n{\n // ImVector Buf;\n public Buf: string = \"\";\n public begin(): string { return this.Buf; }\n public size(): number { return this.Buf.length; }\n public clear(): void { this.Buf = \"\"; }\n public append(text: string): void { this.Buf += text; }\n\n // ImGuiTextBuffer() { Buf.push_back(0); }\n // inline char operator[](int i) { return Buf.Data[i]; }\n // const char* begin() const { return &Buf.front(); }\n // const char* end() const { return &Buf.back(); } // Buf is zero-terminated, so end() will point on the zero-terminator\n // int size() const { return Buf.Size - 1; }\n // bool empty() { return Buf.Size <= 1; }\n // void clear() { Buf.clear(); Buf.push_back(0); }\n // void reserve(int capacity) { Buf.reserve(capacity); }\n // const char* c_str() const { return Buf.Data; }\n // IMGUI_API void appendf(const char* fmt, ...) IM_FMTARGS(2);\n // IMGUI_API void appendfv(const char* fmt, va_list args) IM_FMTLIST(2);\n}\n\n// Helper: Simple Key->value storage\n// Typically you don't have to worry about this since a storage is held within each Window.\n// We use it to e.g. store collapse state for a tree (Int 0/1), store color edit options.\n// This is optimized for efficient reading (dichotomy into a contiguous buffer), rare writing (typically tied to user interactions)\n// You can use it as custom user storage for temporary values. Declare your own storage if, for example:\n// - You want to manipulate the open/close state of a particular sub-tree in your interface (tree node uses Int 0/1 to store their state).\n// - You want to store custom debug data easily without adding or editing structures in your code (probably not efficient, but convenient)\n// Types are NOT stored, so it is up to you to make sure your Key don't collide with different types.\nexport class ImGuiStorage\n{\n // struct Pair\n // {\n // ImGuiID key;\n // union { int val_i; float val_f; void* val_p; };\n // Pair(ImGuiID _key, int _val_i) { key = _key; val_i = _val_i; }\n // Pair(ImGuiID _key, float _val_f) { key = _key; val_f = _val_f; }\n // Pair(ImGuiID _key, void* _val_p) { key = _key; val_p = _val_p; }\n // };\n // ImVector Data;\n\n // - Get***() functions find pair, never add/allocate. Pairs are sorted so a query is O(log N)\n // - Set***() functions find pair, insertion on demand if missing.\n // - Sorted insertion is costly, paid once. A typical frame shouldn't need to insert any new pair.\n // void Clear() { Data.clear(); }\n // IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const;\n // IMGUI_API void SetInt(ImGuiID key, int val);\n // IMGUI_API bool GetBool(ImGuiID key, bool default_val = false) const;\n // IMGUI_API void SetBool(ImGuiID key, bool val);\n // IMGUI_API float GetFloat(ImGuiID key, float default_val = 0.0f) const;\n // IMGUI_API void SetFloat(ImGuiID key, float val);\n // IMGUI_API void* GetVoidPtr(ImGuiID key) const; // default_val is NULL\n // IMGUI_API void SetVoidPtr(ImGuiID key, void* val);\n\n // - Get***Ref() functions finds pair, insert on demand if missing, return pointer. Useful if you intend to do Get+Set.\n // - References are only valid until a new value is added to the storage. Calling a Set***() function or a Get***Ref() function invalidates the pointer.\n // - A typical use case where this is convenient for quick hacking (e.g. add storage during a live Edit&Continue session if you can't modify existing struct)\n // float* pvar = ImGui::GetFloatRef(key); ImGui::SliderFloat(\"var\", pvar, 0, 100.0f); some_var += *pvar;\n // IMGUI_API int* GetIntRef(ImGuiID key, int default_val = 0);\n // IMGUI_API bool* GetBoolRef(ImGuiID key, bool default_val = false);\n // IMGUI_API float* GetFloatRef(ImGuiID key, float default_val = 0.0f);\n // IMGUI_API void** GetVoidPtrRef(ImGuiID key, void* default_val = NULL);\n\n // Use on your own storage if you know only integer are being stored (open/close all tree nodes)\n // IMGUI_API void SetAllInt(int val);\n\n // For quicker full rebuild of a storage (instead of an incremental one), you may add all your contents and then sort once.\n // IMGUI_API void BuildSortByKey();\n}\n\n// Data payload for Drag and Drop operations\nexport interface ImGuiPayload\n{\n // Members\n // void* Data; // Data (copied and owned by dear imgui)\n Data: T;\n // int DataSize; // Data size\n\n // [Internal]\n // ImGuiID SourceId; // Source item id\n // ImGuiID SourceParentId; // Source parent id (if available)\n // int DataFrameCount; // Data timestamp\n // char DataType[12 + 1]; // Data type tag (short user-supplied string, 12 characters max)\n // bool Preview; // Set when AcceptDragDropPayload() was called and mouse has been hovering the target item (nb: handle overlapping drag targets)\n // bool Delivery; // Set when AcceptDragDropPayload() was called and mouse button is released over the target item.\n\n // ImGuiPayload() { Clear(); }\n // void Clear() { SourceId = SourceParentId = 0; Data = NULL; DataSize = 0; memset(DataType, 0, sizeof(DataType)); DataFrameCount = -1; Preview = Delivery = false; }\n // bool IsDataType(const char* type) const { return DataFrameCount != -1 && strcmp(type, DataType) == 0; }\n // bool IsPreview() const { return Preview; }\n // bool IsDelivery() const { return Delivery; }\n}\n\n// Helpers macros to generate 32-bits encoded colors\nexport const IM_COL32_R_SHIFT: number = config.IMGUI_USE_BGRA_PACKED_COLOR ? 16 : 0;\nexport const IM_COL32_G_SHIFT: number = 8;\nexport const IM_COL32_B_SHIFT: number = config.IMGUI_USE_BGRA_PACKED_COLOR ? 0 : 16;\nexport const IM_COL32_A_SHIFT: number = 24;\nexport const IM_COL32_A_MASK: number = 0xFF000000;\nexport function IM_COL32(R: number, G: number, B: number, A: number = 255): number {\n return ((A << IM_COL32_A_SHIFT) | (B << IM_COL32_B_SHIFT) | (G << IM_COL32_G_SHIFT) | (R << IM_COL32_R_SHIFT)) >>> 0;\n}\nexport const IM_COL32_WHITE: number = IM_COL32(255, 255, 255, 255); // Opaque white = 0xFFFFFFFF\nexport const IM_COL32_BLACK: number = IM_COL32(0, 0, 0, 255); // Opaque black\nexport const IM_COL32_BLACK_TRANS: number = IM_COL32(0, 0, 0, 0); // Transparent black = 0x00000000\n\n// ImColor() helper to implicity converts colors to either ImU32 (packed 4x1 byte) or ImVec4 (4x1 float)\n// Prefer using IM_COL32() macros if you want a guaranteed compile-time ImU32 for usage with ImDrawList API.\n// **Avoid storing ImColor! Store either u32 of ImVec4. This is not a full-featured color class. MAY OBSOLETE.\n// **None of the ImGui API are using ImColor directly but you can use it as a convenience to pass colors in either ImU32 or ImVec4 formats. Explicitly cast to ImU32 or ImVec4 if needed.\nexport class ImColor\n{\n // ImVec4 Value;\n public Value: ImVec4 = new ImVec4();\n\n // ImColor() { Value.x = Value.y = Value.z = Value.w = 0.0f; }\n // ImColor(int r, int g, int b, int a = 255) { float sc = 1.0f/255.0f; Value.x = (float)r * sc; Value.y = (float)g * sc; Value.z = (float)b * sc; Value.w = (float)a * sc; }\n // ImColor(ImU32 rgba) { float sc = 1.0f/255.0f; Value.x = (float)((rgba>>IM_COL32_R_SHIFT)&0xFF) * sc; Value.y = (float)((rgba>>IM_COL32_G_SHIFT)&0xFF) * sc; Value.z = (float)((rgba>>IM_COL32_B_SHIFT)&0xFF) * sc; Value.w = (float)((rgba>>IM_COL32_A_SHIFT)&0xFF) * sc; }\n // ImColor(float r, float g, float b, float a = 1.0f) { Value.x = r; Value.y = g; Value.z = b; Value.w = a; }\n // ImColor(const ImVec4& col) { Value = col; }\n constructor();\n constructor(r: number, g: number, b: number);\n constructor(r: number, g: number, b: number, a: number);\n constructor(rgba: Bind.ImU32);\n constructor(col: Readonly);\n constructor(r: number | Bind.ImU32 | Readonly = 0.0, g: number = 0.0, b: number = 0.0, a: number = 1.0) {\n if (typeof(r) === \"number\") {\n if (r > 255 && g === 0.0 && b === 0.0 && a === 1.0) {\n this.Value.x = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_R_SHIFT) & 0xFF) / 255));\n this.Value.y = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_G_SHIFT) & 0xFF) / 255));\n this.Value.z = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_B_SHIFT) & 0xFF) / 255));\n this.Value.w = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_A_SHIFT) & 0xFF) / 255));\n } else if (r <= 1.0 && g <= 1.0 && b <= 1.0 && a <= 1.0) {\n this.Value.x = Math.max(0.0, r);\n this.Value.y = Math.max(0.0, g);\n this.Value.z = Math.max(0.0, b);\n this.Value.w = Math.max(0.0, a);\n } else {\n this.Value.x = Math.max(0.0, Math.min(1.0, r / 255));\n this.Value.y = Math.max(0.0, Math.min(1.0, g / 255));\n this.Value.z = Math.max(0.0, Math.min(1.0, b / 255));\n if (a <= 1.0) {\n this.Value.w = Math.max(0.0, a);\n } else {\n this.Value.w = Math.max(0.0, Math.min(1.0, a / 255));\n }\n }\n } else {\n this.Value.Copy(r);\n }\n }\n // inline operator ImU32() const { return ImGui::ColorConvertFloat4ToU32(Value); }\n public toImU32(): Bind.ImU32 { return ColorConvertFloat4ToU32(this.Value); }\n // inline operator ImVec4() const { return Value; }\n public toImVec4(): ImVec4 { return this.Value; }\n\n // FIXME-OBSOLETE: May need to obsolete/cleanup those helpers.\n // inline void SetHSV(float h, float s, float v, float a = 1.0f){ ImGui::ColorConvertHSVtoRGB(h, s, v, Value.x, Value.y, Value.z); Value.w = a; }\n public SetHSV(h: number, s: number, v: number, a: number = 1.0): void {\n const ref_r: Bind.ImScalar = [ this.Value.x ];\n const ref_g: Bind.ImScalar = [ this.Value.y ];\n const ref_b: Bind.ImScalar = [ this.Value.z ];\n ColorConvertHSVtoRGB(h, s, v, ref_r, ref_g, ref_b);\n this.Value.x = ref_r[0];\n this.Value.y = ref_g[0];\n this.Value.z = ref_b[0];\n this.Value.w = a;\n }\n // static ImColor HSV(float h, float s, float v, float a = 1.0f) { float r,g,b; ImGui::ColorConvertHSVtoRGB(h, s, v, r, g, b); return ImColor(r,g,b,a); }\n public static HSV(h: number, s: number, v: number, a: number = 1.0): ImColor {\n const color = new ImColor();\n color.SetHSV(h, s, v, a);\n return color;\n }\n}\n\nexport const ImGuiInputTextDefaultSize: number = 128;\n\nexport type ImGuiInputTextCallback = (data: ImGuiInputTextCallbackData) => number;\n\n// Shared state of InputText(), passed to callback when a ImGuiInputTextFlags_Callback* flag is used and the corresponding callback is triggered.\nexport class ImGuiInputTextCallbackData {\n constructor(public readonly native: Bind.reference_ImGuiInputTextCallbackData, public readonly UserData: any) {}\n\n // ImGuiInputTextFlags EventFlag; // One of ImGuiInputTextFlags_Callback* // Read-only\n public get EventFlag(): ImGuiInputTextFlags { return this.native.EventFlag; }\n // ImGuiInputTextFlags Flags; // What user passed to InputText() // Read-only\n public get Flags(): ImGuiInputTextFlags { return this.native.Flags; }\n // void* UserData; // What user passed to InputText() // Read-only\n // public get UserData(): any { return this.native.UserData; }\n\n // CharFilter event:\n // ImWchar EventChar; // Character input // Read-write (replace character or set to zero)\n public get EventChar(): Bind.ImWchar { return this.native.EventChar; }\n public set EventChar(value: Bind.ImWchar) { this.native.EventChar = value; }\n\n // Completion,History,Always events:\n // If you modify the buffer contents make sure you update 'BufTextLen' and set 'BufDirty' to true.\n // ImGuiKey EventKey; // Key pressed (Up/Down/TAB) // Read-only\n public get EventKey(): ImGuiKey { return this.native.EventKey; }\n // char* Buf; // Current text buffer // Read-write (pointed data only, can't replace the actual pointer)\n public get Buf(): string { return this.native.Buf; }\n public set Buf(value: string) { this.native.Buf = value; }\n // int BufTextLen; // Current text length in bytes // Read-write\n public get BufTextLen(): number { return this.native.BufTextLen; }\n public set BufTextLen(value: number) { this.native.BufTextLen = value; }\n // int BufSize; // Maximum text length in bytes // Read-only\n public get BufSize(): number { return this.native.BufSize; }\n // bool BufDirty; // Set if you modify Buf/BufTextLen!! // Write\n public set BufDirty(value: boolean) { this.native.BufDirty = value; }\n // int CursorPos; // // Read-write\n public get CursorPos(): number { return this.native.CursorPos; }\n public set CursorPos(value: number) { this.native.CursorPos = value; }\n // int SelectionStart; // // Read-write (== to SelectionEnd when no selection)\n public get SelectionStart(): number { return this.native.SelectionStart; }\n public set SelectionStart(value: number) { this.native.SelectionStart = value; }\n // int SelectionEnd; // // Read-write\n public get SelectionEnd(): number { return this.native.SelectionEnd; }\n public set SelectionEnd(value: number) { this.native.SelectionEnd = value; }\n\n // NB: Helper functions for text manipulation. Calling those function loses selection.\n // IMGUI_API void DeleteChars(int pos, int bytes_count);\n public DeleteChars(pos: number, bytes_count: number): void { return this.native.DeleteChars(pos, bytes_count); }\n // IMGUI_API void InsertChars(int pos, const char* text, const char* text_end = NULL);\n public InsertChars(pos: number, text: string, text_end: number | null = null): void { return this.native.InsertChars(pos, text_end !== null ? text.substring(0, text_end) : text); }\n // bool HasSelection() const { return SelectionStart != SelectionEnd; }\n public HasSelection(): boolean { return this.native.HasSelection(); }\n}\n\nexport type ImGuiSizeConstraintCallback = (data: ImGuiSizeCallbackData) => void;\n\n// Resizing callback data to apply custom constraint. As enabled by SetNextWindowSizeConstraints(). Callback is called during the next Begin().\n// NB: For basic min/max size constraint on each axis you don't need to use the callback! The SetNextWindowSizeConstraints() parameters are enough.\nexport class ImGuiSizeCallbackData {\n constructor(public readonly native: Bind.reference_ImGuiSizeCallbackData, public readonly UserData: any) {}\n\n get Pos(): Readonly { return this.native.Pos; }\n get CurrentSize(): Readonly { return this.native.CurrentSize; }\n get DesiredSize(): Bind.interface_ImVec2 { return this.native.DesiredSize; }\n}\n\nexport class ImGuiListClipper\n{\n private native: Bind.ImGuiListClipper;\n\n public get StartPosY(): number { return this.native.StartPosY; }\n public get ItemsHeight(): number { return this.native.ItemsHeight; }\n public get ItemsCount(): number { return this.native.ItemsCount; }\n public get StepNo(): number { return this.native.StepNo; }\n public get DisplayStart(): number { return this.native.DisplayStart; }\n public get DisplayEnd(): number { return this.native.DisplayEnd; }\n\n // items_count: Use -1 to ignore (you can call Begin later). Use INT_MAX if you don't know how many items you have (in which case the cursor won't be advanced in the final step).\n // items_height: Use -1.0f to be calculated automatically on first step. Otherwise pass in the distance between your items, typically GetTextLineHeightWithSpacing() or GetFrameHeightWithSpacing().\n // If you don't specify an items_height, you NEED to call Step(). If you specify items_height you may call the old Begin()/End() api directly, but prefer calling Step().\n // ImGuiListClipper(int items_count = -1, float items_height = -1.0f) { Begin(items_count, items_height); } // NB: Begin() initialize every fields (as we allow user to call Begin/End multiple times on a same instance if they want).\n constructor(items_count: number = -1, items_height: number = -1.0) {\n this.native = new bind.ImGuiListClipper(items_count, items_height);\n }\n // ~ImGuiListClipper() { IM_ASSERT(ItemsCount == -1); } // Assert if user forgot to call End() or Step() until false.\n public delete(): void {\n if (this.native) {\n this.native.delete();\n delete this.native;\n }\n }\n\n // IMGUI_API bool Step(); // Call until it returns false. The DisplayStart/DisplayEnd fields will be set and you can process/draw those items.\n public Step(): boolean {\n if (!this.native) { throw new Error(); }\n const busy: boolean = this.native.Step();\n if (!busy) {\n this.delete();\n }\n return busy;\n }\n // IMGUI_API void Begin(int items_count, float items_height = -1.0f); // Automatically called by constructor if you passed 'items_count' or by Step() in Step 1.\n public Begin(items_count: number, items_height: number = -1.0): void {\n if (!this.native) {\n this.native = new Bind.ImGuiListClipper(items_count, items_height);\n }\n this.native.Begin(items_count, items_height);\n }\n // IMGUI_API void End(); // Automatically called on the last call of Step() that returns false.\n public End(): void {\n if (!this.native) { throw new Error(); }\n this.native.End();\n this.delete();\n }\n}\n\n//-----------------------------------------------------------------------------\n// Draw List\n// Hold a series of drawing commands. The user provides a renderer for ImDrawData which essentially contains an array of ImDrawList.\n//-----------------------------------------------------------------------------\n\n// Draw callbacks for advanced uses.\n// NB- You most likely do NOT need to use draw callbacks just to create your own widget or customized UI rendering (you can poke into the draw list for that)\n// Draw callback may be useful for example, A) Change your GPU render state, B) render a complex 3D scene inside a UI element (without an intermediate texture/render target), etc.\n// The expected behavior from your rendering function is 'if (cmd.UserCallback != NULL) cmd.UserCallback(parent_list, cmd); else RenderTriangles()'\n// typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd);\nexport type ImDrawCallback = (parent_list: Readonly, cmd: Readonly) => void;\n\n// Special Draw callback value to request renderer back-end to reset the graphics/render state.\n// The renderer back-end needs to handle this special value, otherwise it will crash trying to call a function at this address.\n// This is useful for example if you submitted callbacks which you know have altered the render state and you want it to be restored.\n// It is not done by default because they are many perfectly useful way of altering render state for imgui contents (e.g. changing shader/blending settings before an Image call).\nexport const ImDrawCallback_ResetRenderState = -1;\n\n// Typically, 1 command = 1 GPU draw call (unless command is a callback)\n// Pre 1.71 back-ends will typically ignore the VtxOffset/IdxOffset fields. When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset'\n// is enabled, those fields allow us to render meshes larger than 64K vertices while keeping 16-bits indices.\nexport class ImDrawCmd\n{\n constructor(public readonly native: Bind.reference_ImDrawCmd) {}\n\n // unsigned int ElemCount; // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[].\n get ElemCount(): number { return this.native.ElemCount; }\n // ImVec4 ClipRect; // Clipping rectangle (x1, y1, x2, y2)\n get ClipRect(): Readonly { return this.native.ClipRect; }\n // ImTextureID TextureId; // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas.\n get TextureId(): ImTextureID | null {\n return ImGuiContext.getTexture(this.native.TextureId);\n }\n // unsigned int VtxOffset; // Start offset in vertex buffer. Pre-1.71 or without ImGuiBackendFlags_RendererHasVtxOffset: always 0. With ImGuiBackendFlags_RendererHasVtxOffset: may be >0 to support meshes larger than 64K vertices with 16-bits indices.\n get VtxOffset(): number { return this.native.VtxOffset; }\n // unsigned int IdxOffset; // Start offset in index buffer. Always equal to sum of ElemCount drawn so far.\n get IdxOffset(): number { return this.native.IdxOffset; }\n // ImDrawCallback UserCallback; // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally.\n public readonly UserCallback: ImDrawCallback | null = null; // TODO\n // void* UserCallbackData; // The draw callback code can access this.\n public readonly UserCallbackData: any = null; // TODO\n\n // ImDrawCmd() { ElemCount = 0; ClipRect.x = ClipRect.y = ClipRect.z = ClipRect.w = 0.0f; TextureId = NULL; UserCallback = NULL; UserCallbackData = NULL; }\n}\n\n// Vertex index \n// (to allow large meshes with 16-bits indices: set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset in the renderer back-end)\n// (to use 32-bits indices: override with '#define ImDrawIdx unsigned int' in imconfig.h)\n// #ifndef ImDrawIdx\n// typedef unsigned short ImDrawIdx;\n// #endif\nexport const ImDrawIdxSize: number = 2; // bind.ImDrawIdxSize;\nexport type ImDrawIdx = number;\n\n// Vertex layout\n// #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT\nexport const ImDrawVertSize: number = 20; // bind.ImDrawVertSize;\nexport const ImDrawVertPosOffset: number = 0; // bind.ImDrawVertPosOffset;\nexport const ImDrawVertUVOffset: number = 8; // bind.ImDrawVertUVOffset;\nexport const ImDrawVertColOffset: number = 16; // bind.ImDrawVertColOffset;\nexport class ImDrawVert\n{\n // ImVec2 pos;\n public pos: Float32Array;\n // ImVec2 uv;\n public uv: Float32Array;\n // ImU32 col;\n public col: Uint32Array;\n\n constructor(buffer: ArrayBuffer, byteOffset: number = 0) {\n this.pos = new Float32Array(buffer, byteOffset + bind.ImDrawVertPosOffset, 2);\n this.uv = new Float32Array(buffer, byteOffset + bind.ImDrawVertUVOffset, 2);\n this.col = new Uint32Array(buffer, byteOffset + bind.ImDrawVertColOffset, 1);\n }\n}\n// #else\n// You can override the vertex format layout by defining IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT in imconfig.h\n// The code expect ImVec2 pos (8 bytes), ImVec2 uv (8 bytes), ImU32 col (4 bytes), but you can re-order them or add other fields as needed to simplify integration in your engine.\n// The type has to be described within the macro (you can either declare the struct or use a typedef)\n// NOTE: IMGUI DOESN'T CLEAR THE STRUCTURE AND DOESN'T CALL A CONSTRUCTOR SO ANY CUSTOM FIELD WILL BE UNINITIALIZED. IF YOU ADD EXTRA FIELDS (SUCH AS A 'Z' COORDINATES) YOU WILL NEED TO CLEAR THEM DURING RENDER OR TO IGNORE THEM.\n// IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT;\n// #endif\n\n// Draw channels are used by the Columns API to \"split\" the render list into different channels while building, so items of each column can be batched together.\n// You can also use them to simulate drawing layers and submit primitives in a different order than how they will be rendered.\nexport class ImDrawChannel\n{\n // ImVector CmdBuffer;\n // ImVector IdxBuffer;\n}\n\nexport class ImDrawListSharedData\n{\n constructor(public readonly native: Bind.reference_ImDrawListSharedData) {}\n}\n\n// Draw command list\n// This is the low-level list of polygons that ImGui functions are filling. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering.\n// Each ImGui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to access the current window draw list and draw custom primitives.\n// You can interleave normal ImGui:: calls and adding primitives to the current draw list.\n// All positions are generally in pixel coordinates (top-left at (0,0), bottom-right at io.DisplaySize), however you are totally free to apply whatever transformation matrix to want to the data (if you apply such transformation you'll want to apply it to ClipRect as well)\n// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects.\nexport class ImDrawList\n{\n constructor(public readonly native: Bind.reference_ImDrawList) {}\n\n public IterateDrawCmds(callback: (draw_cmd: ImDrawCmd, ElemStart: number) => void): void {\n this.native.IterateDrawCmds((draw_cmd: Bind.reference_ImDrawCmd, ElemStart: number): void => {\n callback(new ImDrawCmd(draw_cmd), ElemStart);\n });\n }\n\n // This is what you have to render\n // ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback.\n // ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those\n get IdxBuffer(): Uint8Array { return this.native.IdxBuffer; }\n // ImVector VtxBuffer; // Vertex buffer.\n get VtxBuffer(): Uint8Array { return this.native.VtxBuffer; }\n // ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive.\n get Flags(): ImDrawListFlags { return this.native.Flags; }\n set Flags(value: ImDrawListFlags) { this.native.Flags = value; }\n\n // [Internal, used while building lists]\n // const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context)\n // const char* _OwnerName; // Pointer to owner window's name for debugging\n // unsigned int _VtxCurrentIdx; // [Internal] == VtxBuffer.Size\n // ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)\n // ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)\n // ImVector _ClipRectStack; // [Internal]\n // ImVector _TextureIdStack; // [Internal]\n // ImVector _Path; // [Internal] current path building\n // int _ChannelsCurrent; // [Internal] current channel number (0)\n // int _ChannelsCount; // [Internal] number of active channels (1+)\n // ImVector _Channels; // [Internal] draw channels for columns API (not resized down so _ChannelsCount may be smaller than _Channels.Size)\n\n // ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clear(); }\n // ~ImDrawList() { ClearFreeMemory(); }\n // IMGUI_API void PushClipRect(ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling)\n public PushClipRect(clip_rect_min: Readonly, clip_rect_max: Readonly, intersect_with_current_clip_rect: boolean = false): void {\n this.native.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect);\n }\n // IMGUI_API void PushClipRectFullScreen();\n public PushClipRectFullScreen(): void { this.native.PushClipRectFullScreen(); }\n // IMGUI_API void PopClipRect();\n public PopClipRect(): void { this.native.PopClipRect(); }\n // IMGUI_API void PushTextureID(ImTextureID texture_id);\n public PushTextureID(texture_id: ImTextureID): void {\n this.native.PushTextureID(ImGuiContext.setTexture(texture_id));\n }\n // IMGUI_API void PopTextureID();\n public PopTextureID(): void { this.native.PopTextureID(); }\n // inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); }\n public GetClipRectMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return this.native.GetClipRectMin(out);\n }\n // inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); }\n public GetClipRectMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return this.native.GetClipRectMax(out);\n }\n\n // Primitives\n // IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness = 1.0f);\n public AddLine(a: Readonly, b: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddLine(a, b, col, thickness);\n }\n // IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All, float thickness = 1.0f); // a: upper-left, b: lower-right, rounding_corners_flags: 4-bits corresponding to which corner to round\n public AddRect(a: Readonly, b: Readonly, col: Bind.ImU32, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All, thickness: number = 1.0): void {\n this.native.AddRect(a, b, col, rounding, rounding_corners_flags, thickness);\n }\n // IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); // a: upper-left, b: lower-right\n public AddRectFilled(a: Readonly, b: Readonly, col: Bind.ImU32, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All): void {\n this.native.AddRectFilled(a, b, col, rounding, rounding_corners_flags);\n }\n // IMGUI_API void AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left);\n public AddRectFilledMultiColor(a: Readonly, b: Readonly, col_upr_left: Bind.ImU32, col_upr_right: Bind.ImU32, col_bot_right: Bind.ImU32, col_bot_left: Bind.ImU32): void {\n this.native.AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left);\n }\n // IMGUI_API void AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness = 1.0f);\n public AddQuad(a: Readonly, b: Readonly, c: Readonly, d: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddQuad(a, b, c, d, col, thickness);\n }\n // IMGUI_API void AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col);\n public AddQuadFilled(a: Readonly, b: Readonly, c: Readonly, d: Readonly, col: Bind.ImU32): void {\n this.native.AddQuadFilled(a, b, c, d, col);\n }\n // IMGUI_API void AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness = 1.0f);\n public AddTriangle(a: Readonly, b: Readonly, c: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddTriangle(a, b, c, col, thickness);\n }\n // IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col);\n public AddTriangleFilled(a: Readonly, b: Readonly, c: Readonly, col: Bind.ImU32): void {\n this.native.AddTriangleFilled(a, b, c, col);\n }\n // IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f);\n public AddCircle(centre: Readonly, radius: number, col: Bind.ImU32, num_segments: number = 12, thickness: number = 1.0): void {\n this.native.AddCircle(centre, radius, col, num_segments, thickness);\n }\n // IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12);\n public AddCircleFilled(centre: Readonly, radius: number, col: Bind.ImU32, num_segments: number = 12): void {\n this.native.AddCircleFilled(centre, radius, col, num_segments);\n }\n // IMGUI_API void AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL);\n // IMGUI_API void AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL, float wrap_width = 0.0f, const ImVec4* cpu_fine_clip_rect = NULL);\n public AddText(pos: Readonly, col: Bind.ImU32, text_begin: string, text_end?: number | null): void;\n public AddText(font: ImFont, font_size: number, pos: Readonly, col: Bind.ImU32, text_begin: string, text_end?: number | null, wrap_width?: number, cpu_fine_clip_rect?: Readonly | null): void;\n public AddText(...args: any[]): void {\n if (args[0] instanceof ImFont) {\n const font: ImFont = args[0];\n const font_size: number = args[1];\n const pos: Readonly = args[2];\n const col: Bind.ImU32 = args[3];\n const text_begin: string = args[4];\n const text_end: number | null = args[5] || null;\n const wrap_width: number = args[6] = 0.0;\n const cpu_fine_clip_rect: Readonly | null = args[7] || null;\n this.native.AddText_B(font.native, font_size, pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin, wrap_width, cpu_fine_clip_rect);\n } else {\n const pos: Readonly = args[0];\n const col: Bind.ImU32 = args[1];\n const text_begin: string = args[2];\n const text_end: number | null = args[3] || null;\n this.native.AddText_A(pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin);\n }\n }\n // IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,1), ImU32 col = 0xFFFFFFFF);\n public AddImage(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, uv_a: Readonly = ImVec2.ZERO, uv_b: Readonly = ImVec2.UNIT, col: Bind.ImU32 = 0xFFFFFFFF): void {\n this.native.AddImage(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col);\n }\n // IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,0), const ImVec2& uv_c = ImVec2(1,1), const ImVec2& uv_d = ImVec2(0,1), ImU32 col = 0xFFFFFFFF);\n public AddImageQuad(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, c: Readonly, d: Readonly, uv_a: Readonly = ImVec2.ZERO, uv_b: Readonly = ImVec2.UNIT_X, uv_c: Readonly = ImVec2.UNIT, uv_d: Readonly = ImVec2.UNIT_Y, col: Bind.ImU32 = 0xFFFFFFFF): void {\n this.native.AddImageQuad(ImGuiContext.setTexture(user_texture_id), a, b, c, d, uv_a, uv_b, uv_c, uv_d, col);\n }\n // IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col, float rounding, int rounding_corners = ImDrawCornerFlags_All);\n public AddImageRounded(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, uv_a: Readonly, uv_b: Readonly, col: Bind.ImU32, rounding: number, rounding_corners: ImDrawCornerFlags = ImDrawCornerFlags.All): void {\n this.native.AddImageRounded(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col, rounding, rounding_corners);\n }\n // IMGUI_API void AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness);\n public AddPolyline(points: Array>, num_points: number, col: Bind.ImU32, closed: boolean, thickness: number): void {\n this.native.AddPolyline(points, num_points, col, closed, thickness);\n }\n // IMGUI_API void AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col);\n public AddConvexPolyFilled(points: Array>, num_points: number, col: Bind.ImU32): void {\n this.native.AddConvexPolyFilled(points, num_points, col);\n }\n // IMGUI_API void AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments = 0);\n public AddBezierCurve(pos0: Readonly, cp0: Readonly, cp1: Readonly, pos1: Readonly, col: Bind.ImU32, thickness: number = 1.0, num_segments: number = 0): void {\n this.native.AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments);\n }\n\n // Stateful path API, add points then finish with PathFill() or PathStroke()\n // inline void PathClear() { _Path.resize(0); }\n public PathClear(): void { this.native.PathClear(); }\n // inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); }\n public PathLineTo(pos: Readonly): void { this.native.PathLineTo(pos); }\n // inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path[_Path.Size-1], &pos, 8) != 0) _Path.push_back(pos); }\n public PathLineToMergeDuplicate(pos: Readonly): void { this.native.PathLineToMergeDuplicate(pos); }\n // inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); PathClear(); }\n public PathFillConvex(col: Bind.ImU32): void { this.native.PathFillConvex(col); }\n // inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness); PathClear(); }\n public PathStroke(col: Bind.ImU32, closed: boolean, thickness: number = 1.0): void { this.native.PathStroke(col, closed, thickness); }\n // IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_segments = 10);\n public PathArcTo(centre: Readonly, radius: number, a_min: number, a_max: number, num_segments: number = 10): void { this.native.PathArcTo(centre, radius, a_min, a_max, num_segments); }\n // IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle\n public PathArcToFast(centre: Readonly, radius: number, a_min_of_12: number, a_max_of_12: number): void { this.native.PathArcToFast(centre, radius, a_min_of_12, a_max_of_12); }\n // IMGUI_API void PathBezierCurveTo(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, int num_segments = 0);\n public PathBezierCurveTo(p1: Readonly, p2: Readonly, p3: Readonly, num_segments: number = 0): void { this.native.PathBezierCurveTo(p1, p2, p3, num_segments); }\n // IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All);\n public PathRect(rect_min: Readonly, rect_max: Readonly, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All): void { this.native.PathRect(rect_min, rect_max, rounding, rounding_corners_flags); }\n\n // Channels\n // - Use to simulate layers. By switching channels to can render out-of-order (e.g. submit foreground primitives before background primitives)\n // - Use to minimize draw calls (e.g. if going back-and-forth between multiple non-overlapping clipping rectangles, prefer to append into separate channels then merge at the end)\n // IMGUI_API void ChannelsSplit(int channels_count);\n public ChannelsSplit(channels_count: number): void { this.native.ChannelsSplit(channels_count); }\n // IMGUI_API void ChannelsMerge();\n public ChannelsMerge(): void { this.native.ChannelsMerge(); }\n // IMGUI_API void ChannelsSetCurrent(int channel_index);\n public ChannelsSetCurrent(channel_index: number): void { this.native.ChannelsSetCurrent(channel_index); }\n\n // Advanced\n // IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles.\n public AddCallback(callback: ImDrawCallback, callback_data: any): void {\n const _callback: Bind.ImDrawCallback = (parent_list: Readonly, draw_cmd: Readonly): void => {\n callback(new ImDrawList(parent_list), new ImDrawCmd(draw_cmd));\n };\n this.native.AddCallback(_callback, callback_data);\n }\n // IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible\n public AddDrawCmd(): void { this.native.AddDrawCmd(); }\n\n // Internal helpers\n // NB: all primitives needs to be reserved via PrimReserve() beforehand!\n // IMGUI_API void Clear();\n public Clear(): void { this.native.Clear(); }\n // IMGUI_API void ClearFreeMemory();\n public ClearFreeMemory(): void { this.native.ClearFreeMemory(); }\n // IMGUI_API void PrimReserve(int idx_count, int vtx_count);\n public PrimReserve(idx_count: number, vtx_count: number): void { this.native.PrimReserve(idx_count, vtx_count); }\n // IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles)\n public PrimRect(a: Readonly, b: Readonly, col: Bind.ImU32): void { this.native.PrimRect(a, b, col); }\n // IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col);\n public PrimRectUV(a: Readonly, b: Readonly, uv_a: Readonly, uv_b: Readonly, col: Bind.ImU32): void { this.native.PrimRectUV(a, b, uv_a, uv_b, col); }\n // IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col);\n public PrimQuadUV(a: Readonly, b: Readonly, c: Readonly, d: Readonly, uv_a: Readonly, uv_b: Readonly, uv_c: Readonly, uv_d: Readonly, col: Bind.ImU32): void { this.native.PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); }\n // inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; }\n public PrimWriteVtx(pos: Readonly, uv: Readonly, col: Bind.ImU32): void { this.native.PrimWriteVtx(pos, uv, col); }\n // inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; }\n public PrimWriteIdx(idx: ImDrawIdx): void { this.native.PrimWriteIdx(idx); }\n // inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); }\n public PrimVtx(pos: Readonly, uv: Readonly, col: Bind.ImU32): void { this.native.PrimVtx(pos, uv, col); }\n // IMGUI_API void UpdateClipRect();\n public UpdateClipRect(): void { this.native.UpdateClipRect(); }\n // IMGUI_API void UpdateTextureID();\n public UpdateTextureID(): void { this.native.UpdateTextureID(); }\n}\n\n// All draw data to render an ImGui frame\nexport class ImDrawData\n{\n constructor(public readonly native: Bind.reference_ImDrawData) {}\n\n public IterateDrawLists(callback: (draw_list: ImDrawList) => void): void {\n this.native.IterateDrawLists((draw_list: Bind.reference_ImDrawList): void => {\n callback(new ImDrawList(draw_list));\n });\n }\n\n // bool Valid; // Only valid after Render() is called and before the next NewFrame() is called.\n get Valid(): boolean { return this.native.Valid; }\n // ImDrawList** CmdLists;\n // int CmdListsCount;\n get CmdListsCount(): number { return this.native.CmdListsCount; }\n // int TotalIdxCount; // For convenience, sum of all cmd_lists idx_buffer.Size\n get TotalIdxCount(): number { return this.native.TotalIdxCount; }\n // int TotalVtxCount; // For convenience, sum of all cmd_lists vtx_buffer.Size\n get TotalVtxCount(): number { return this.native.TotalVtxCount; }\n // ImVec2 DisplayPos; // Upper-left position of the viewport to render (== upper-left of the orthogonal projection matrix to use)\n get DisplayPos(): Readonly { return this.native.DisplayPos; }\n // ImVec2 DisplaySize; // Size of the viewport to render (== io.DisplaySize for the main viewport) (DisplayPos + DisplaySize == lower-right of the orthogonal projection matrix to use)\n get DisplaySize(): Readonly { return this.native.DisplaySize; }\n // ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display.\n get FramebufferScale(): Readonly { return this.native.FramebufferScale; }\n\n // Functions\n // ImDrawData() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCount = 0; }\n // IMGUI_API void DeIndexAllBuffers(); // For backward compatibility or convenience: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering!\n public DeIndexAllBuffers(): void { this.native.DeIndexAllBuffers(); }\n // IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than ImGui expects, or if there is a difference between your window resolution and framebuffer resolution.\n public ScaleClipRects(fb_scale: Readonly): void {\n this.native.ScaleClipRects(fb_scale);\n }\n}\n\nexport class script_ImFontConfig implements Bind.interface_ImFontConfig\n{\n // void* FontData; // // TTF/OTF data\n // int FontDataSize; // // TTF/OTF data size\n FontData: DataView | null = null;\n // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself).\n FontDataOwnedByAtlas: boolean = true;\n // int FontNo; // 0 // Index of font within TTF/OTF file\n FontNo: number = 0;\n // float SizePixels; // // Size in pixels for rasterizer.\n SizePixels: number = 0;\n // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis.\n OversampleH: number = 3;\n OversampleV: number = 1;\n // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1.\n PixelSnapH: boolean = false;\n // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now.\n GlyphExtraSpacing: ImVec2 = new ImVec2(0, 0);\n // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input.\n GlyphOffset: ImVec2 = new ImVec2(0, 0);\n // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE.\n GlyphRanges: number | null = null;\n // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font\n GlyphMinAdvanceX: number = 0;\n // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs\n GlyphMaxAdvanceX: number = Number.MAX_VALUE;\n // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights.\n MergeMode: boolean = false;\n // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one.\n RasterizerFlags: number = 0;\n // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable.\n RasterizerMultiply: number = 1.0;\n\n // [Internal]\n // char Name[32]; // Name (strictly to ease debugging)\n Name: string = \"\";\n // ImFont* DstFont;\n DstFont: Bind.reference_ImFont | null = null;\n\n // IMGUI_API ImFontConfig();\n}\n\nexport class ImFontConfig {\n constructor(public readonly internal: Bind.interface_ImFontConfig = new script_ImFontConfig()) {}\n\n // void* FontData; // // TTF/OTF data\n // int FontDataSize; // // TTF/OTF data size\n get FontData(): DataView | null { return this.internal.FontData; }\n // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself).\n get FontDataOwnedByAtlas(): boolean { return this.internal.FontDataOwnedByAtlas; }\n // int FontNo; // 0 // Index of font within TTF/OTF file\n get FontNo(): number { return this.internal.FontNo; }\n // float SizePixels; // // Size in pixels for rasterizer.\n get SizePixels(): number { return this.internal.SizePixels; }\n // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis.\n get OversampleH(): number { return this.internal.OversampleH; }\n get OversampleV(): number { return this.internal.OversampleV; }\n // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1.\n get PixelSnapH(): boolean { return this.internal.PixelSnapH; }\n // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now.\n get GlyphExtraSpacing(): ImVec2 { return this.internal.GlyphExtraSpacing; }\n // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input.\n get GlyphOffset(): ImVec2 { return this.internal.GlyphOffset; }\n // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE.\n get GlyphRanges(): number | null { return this.internal.GlyphRanges; }\n // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font\n get GlyphMinAdvanceX(): number { return this.internal.GlyphMinAdvanceX; }\n // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs\n get GlyphMaxAdvanceX(): number { return this.internal.GlyphMaxAdvanceX; }\n // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights.\n get MergeMode(): boolean { return this.internal.MergeMode; }\n // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one.\n get RasterizerFlags(): number { return this.internal.RasterizerFlags; }\n // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable.\n get RasterizerMultiply(): number { return this.internal.RasterizerMultiply; }\n\n // [Internal]\n // char Name[32]; // Name (strictly to ease debugging)\n get Name(): string { return this.internal.Name; }\n set Name(value: string) { this.internal.Name = value; }\n // ImFont* DstFont;\n get DstFont(): ImFont | null {\n const font = this.internal.DstFont;\n return font && new ImFont(font);\n }\n\n // IMGUI_API ImFontConfig();\n}\n\n// struct ImFontGlyph\nexport class script_ImFontGlyph implements Bind.interface_ImFontGlyph\n{\n // ImWchar Codepoint; // 0x0000..0xFFFF\n Codepoint: number = 0;\n // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in)\n AdvanceX: number = 0.0;\n // float X0, Y0, X1, Y1; // Glyph corners\n X0: number = 0.0;\n Y0: number = 0.0;\n X1: number = 1.0;\n Y1: number = 1.0;\n // float U0, V0, U1, V1; // Texture coordinates\n U0: number = 0.0;\n V0: number = 0.0;\n U1: number = 1.0;\n V1: number = 1.0;\n}\n\nexport class ImFontGlyph implements Bind.interface_ImFontGlyph {\n constructor(public readonly internal: Bind.interface_ImFontGlyph = new script_ImFontGlyph()) {}\n // ImWchar Codepoint; // 0x0000..0xFFFF\n get Codepoint(): number { return this.internal.Codepoint; }\n // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in)\n get AdvanceX(): number { return this.internal.AdvanceX; };\n // float X0, Y0, X1, Y1; // Glyph corners\n get X0(): number { return this.internal.X0; };\n get Y0(): number { return this.internal.Y0; };\n get X1(): number { return this.internal.X1; };\n get Y1(): number { return this.internal.Y1; };\n // float U0, V0, U1, V1; // Texture coordinates\n get U0(): number { return this.internal.U0; };\n get V0(): number { return this.internal.V0; };\n get U1(): number { return this.internal.U1; };\n get V1(): number { return this.internal.V1; };\n}\n\nexport enum ImFontAtlasFlags\n{\n None = 0,\n NoPowerOfTwoHeight = 1 << 0, // Don't round the height to next power of two\n NoMouseCursors = 1 << 1, // Don't build software mouse cursors into the atlas\n}\n\n// Load and rasterize multiple TTF/OTF fonts into a same texture.\n// Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering.\n// We also add custom graphic data into the texture that serves for ImGui.\n// 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you.\n// 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data.\n// 3. Upload the pixels data into a texture within your graphics system.\n// 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture.\n// IMPORTANT: If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the ImFont is build (when calling GetTextData*** or Build()). We only copy the pointer, not the data.\nexport class ImFontAtlas\n{\n constructor(public readonly native: Bind.reference_ImFontAtlas) {}\n\n // IMGUI_API ImFontAtlas();\n // IMGUI_API ~ImFontAtlas();\n // IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg);\n // IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL);\n public AddFontDefault(font_cfg: Bind.interface_ImFontConfig | null = null): ImFont {\n return new ImFont(this.native.AddFontDefault(font_cfg));\n }\n // IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL);\n // IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after Build(). Set font_cfg->FontDataOwnedByAtlas to false to keep ownership.\n public AddFontFromMemoryTTF(data: ArrayBuffer, size_pixels: number, font_cfg: ImFontConfig | null = null, glyph_ranges: number | null = null): ImFont {\n return new ImFont(this.native.AddFontFromMemoryTTF(new Uint8Array(data), size_pixels, font_cfg && font_cfg.internal, glyph_ranges));\n }\n // IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp.\n // IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter.\n // IMGUI_API void ClearTexData(); // Clear the CPU-side texture data. Saves RAM once the texture has been copied to graphics memory.\n public ClearTexData(): void { this.native.ClearTexData(); }\n // IMGUI_API void ClearInputData(); // Clear the input TTF data (inc sizes, glyph ranges)\n public ClearInputData(): void { this.native.ClearInputData(); }\n // IMGUI_API void ClearFonts(); // Clear the ImGui-side font data (glyphs storage, UV coordinates)\n public ClearFonts(): void { this.native.ClearFonts(); }\n // IMGUI_API void Clear(); // Clear all\n public Clear(): void { this.native.Clear(); }\n\n // Build atlas, retrieve pixel data.\n // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID().\n // RGBA32 format is provided for convenience and compatibility, but note that unless you use CustomRect to draw color data, the RGB pixels emitted from Fonts will all be white (~75% of waste).\n // Pitch = Width * BytesPerPixels\n // IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions.\n public Build(): boolean { return this.native.Build(); }\n // IMGUI_API bool IsBuilt() { return Fonts.Size > 0 && (TexPixelsAlpha8 != NULL || TexPixelsRGBA32 != NULL); }\n public IsBuilt(): boolean { return this.native.IsBuilt(); }\n // IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel\n public GetTexDataAsAlpha8(): { pixels: Uint8ClampedArray, width: number, height: number, bytes_per_pixel: number } {\n return this.native.GetTexDataAsAlpha8();\n }\n // IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel\n public GetTexDataAsRGBA32(): { pixels: Uint8ClampedArray, width: number, height: number, bytes_per_pixel: number } {\n return this.native.GetTexDataAsRGBA32();\n }\n // void SetTexID(ImTextureID id) { TexID = id; }\n public SetTexID(id: ImTextureID | null): void { this.TexID = id; }\n\n //-------------------------------------------\n // Glyph Ranges\n //-------------------------------------------\n\n // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list)\n // NB: Make sure that your string are UTF-8 and NOT in your local code page. In C++11, you can create UTF-8 string literal using the u8\"Hello world\" syntax. See FAQ for details.\n // IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin\n GetGlyphRangesDefault(): number { return this.native.GetGlyphRangesDefault(); }\n // IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters\n GetGlyphRangesKorean(): number { return this.native.GetGlyphRangesKorean(); }\n // IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs\n GetGlyphRangesJapanese(): number { return this.native.GetGlyphRangesJapanese(); }\n // IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs\n GetGlyphRangesChineseFull(): number { return this.native.GetGlyphRangesChineseFull(); }\n // IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese\n GetGlyphRangesChineseSimplifiedCommon(): number { return this.native.GetGlyphRangesChineseSimplifiedCommon(); }\n // IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters\n GetGlyphRangesCyrillic(): number { return this.native.GetGlyphRangesCyrillic(); }\n // IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters\n GetGlyphRangesThai(): number { return this.native.GetGlyphRangesThai(); }\n // IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters\n GetGlyphRangesVietnamese(): number { return this.native.GetGlyphRangesVietnamese(); }\n\n // Helpers to build glyph ranges from text data. Feed your application strings/characters to it then call BuildRanges().\n // struct GlyphRangesBuilder\n // {\n // ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used)\n // GlyphRangesBuilder() { UsedChars.resize(0x10000 / 8); memset(UsedChars.Data, 0, 0x10000 / 8); }\n // bool GetBit(int n) const { return (UsedChars[n >> 3] & (1 << (n & 7))) != 0; }\n // void SetBit(int n) { UsedChars[n >> 3] |= 1 << (n & 7); } // Set bit 'c' in the array\n // void AddChar(ImWchar c) { SetBit(c); } // Add character\n // IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added)\n // IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault) to force add all of ASCII/Latin+Ext\n // IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges\n // };\n\n //-------------------------------------------\n // Custom Rectangles/Glyphs API\n //-------------------------------------------\n\n // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. After calling Build(), you can query the rectangle position and render your pixels.\n // You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs.\n // struct CustomRect\n // {\n // unsigned int ID; // Input // User ID. Use <0x10000 to map into a font glyph, >=0x10000 for other/internal/custom texture data.\n // unsigned short Width, Height; // Input // Desired rectangle dimension\n // unsigned short X, Y; // Output // Packed position in Atlas\n // float GlyphAdvanceX; // Input // For custom font glyphs only (ID<0x10000): glyph xadvance\n // ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph display offset\n // ImFont* Font; // Input // For custom font glyphs only (ID<0x10000): target font\n // CustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); Font = NULL; }\n // bool IsPacked() const { return X != 0xFFFF; }\n // };\n\n // IMGUI_API int AddCustomRectRegular(unsigned int id, int width, int height); // Id needs to be >= 0x10000. Id >= 0x80000000 are reserved for ImGui and ImDrawList\n // IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0,0)); // Id needs to be < 0x10000 to register a rectangle to map into a specific font.\n // IMGUI_API void CalcCustomRectUV(const CustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max);\n // const CustomRect* GetCustomRectByIndex(int index) const { if (index < 0) return NULL; return &CustomRects[index]; }\n\n //-------------------------------------------\n // Members\n //-------------------------------------------\n\n // bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert.\n get Locked(): boolean { return this.native.Locked; }\n set Locked(value: boolean) { this.native.Locked = value; }\n // ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_)\n get Flags(): ImFontAtlasFlags { return this.native.Flags; }\n set Flags(value: ImFontAtlasFlags) { this.native.Flags = value; }\n // ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure.\n get TexID(): ImTextureID | null {\n return ImGuiContext.getTexture(this.native.TexID);\n }\n set TexID(value: ImTextureID | null) {\n this.native.TexID = ImGuiContext.setTexture(value);\n }\n // int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height.\n get TexDesiredWidth(): number { return this.native.TexDesiredWidth; }\n set TexDesiredWidth(value: number) { this.native.TexDesiredWidth = value; }\n // int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1.\n get TexGlyphPadding(): number { return this.native.TexGlyphPadding; }\n set TexGlyphPadding(value: number) { this.native.TexGlyphPadding = value; }\n\n // [Internal]\n // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you.\n // unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight\n // unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4\n // int TexWidth; // Texture width calculated during Build().\n get TexWidth(): number { return this.native.TexWidth; }\n // int TexHeight; // Texture height calculated during Build().\n get TexHeight(): number { return this.native.TexHeight; }\n // ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight)\n get TexUvScale(): Readonly { return this.native.TexUvScale; }\n // ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel\n get TexUvWhitePixel(): Readonly { return this.native.TexUvWhitePixel; }\n // ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font.\n get Fonts(): ImVector {\n const fonts: ImVector = new ImVector();\n this.native.IterateFonts((font: Bind.reference_ImFont) => {\n fonts.push(new ImFont(font));\n });\n return fonts;\n }\n // ImVector CustomRects; // Rectangles for packing custom texture data into the atlas.\n // ImVector ConfigData; // Internal data\n // int CustomRectIds[1]; // Identifiers of custom texture rectangle used by ImFontAtlas/ImDrawList\n}\n\n// Font runtime data and rendering\n// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32().\nexport class ImFont\n{\n constructor(public readonly native: Bind.reference_ImFont) {}\n\n // Members: Hot ~62/78 bytes\n // float FontSize; // // Height of characters, set during loading (don't change after loading)\n get FontSize(): number { return this.native.FontSize; }\n // float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale()\n get Scale(): number { return this.native.Scale; }\n set Scale(value: number) { this.native.Scale = value; }\n // ImVec2 DisplayOffset; // = (0.f,1.f) // Offset font rendering by xx pixels\n get DisplayOffset(): Bind.interface_ImVec2 { return this.native.DisplayOffset; }\n // ImVector Glyphs; // // All glyphs.\n get Glyphs(): ImVector {\n const glyphs = new ImVector();\n this.native.IterateGlyphs((glyph: Bind.reference_ImFontGlyph): void => {\n glyphs.push(new ImFontGlyph(glyph)); // TODO: wrap native\n });\n return glyphs;\n }\n // ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI).\n // get IndexAdvanceX(): any { return this.native.IndexAdvanceX; }\n // ImVector IndexLookup; // // Sparse. Index glyphs by Unicode code-point.\n // get IndexLookup(): any { return this.native.IndexLookup; }\n // const ImFontGlyph* FallbackGlyph; // == FindGlyph(FontFallbackChar)\n get FallbackGlyph(): ImFontGlyph | null {\n const glyph = this.native.FallbackGlyph;\n return glyph && new ImFontGlyph(glyph);\n }\n set FallbackGlyph(value: ImFontGlyph | null) {\n this.native.FallbackGlyph = value && value.internal as Bind.reference_ImFontGlyph;\n }\n // float FallbackAdvanceX; // == FallbackGlyph->AdvanceX\n get FallbackAdvanceX(): number { return this.native.FallbackAdvanceX; }\n // ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found. Only set via SetFallbackChar()\n get FallbackChar(): number { return this.native.FallbackChar; }\n\n // Members: Cold ~18/26 bytes\n // short ConfigDataCount; // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont.\n get ConfigDataCount(): number { return this.ConfigData.length; }\n // ImFontConfig* ConfigData; // // Pointer within ContainerAtlas->ConfigData\n get ConfigData(): ImFontConfig[] {\n const cfg_data: ImFontConfig[] = [];\n this.native.IterateConfigData((cfg: Bind.interface_ImFontConfig): void => {\n cfg_data.push(new ImFontConfig(cfg));\n });\n return cfg_data;\n }\n // ImFontAtlas* ContainerAtlas; // // What we has been loaded into\n get ContainerAtlas(): ImFontAtlas | null { return null; }\n // float Ascent, Descent; // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize]\n get Ascent(): number { return this.native.Ascent; }\n get Descent(): number { return this.native.Descent; }\n // int MetricsTotalSurface;// // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs)\n get MetricsTotalSurface(): number { return this.native.MetricsTotalSurface; }\n\n // Methods\n // IMGUI_API ImFont();\n // IMGUI_API ~ImFont();\n // IMGUI_API void ClearOutputData();\n public ClearOutputData(): void { return this.native.ClearOutputData(); }\n // IMGUI_API void BuildLookupTable();\n public BuildLookupTable(): void { return this.native.BuildLookupTable(); }\n // IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const;\n public FindGlyph(c: number): Readonly | null {\n const glyph: Readonly | null = this.native.FindGlyph(c);\n return glyph && new ImFontGlyph(glyph);\n }\n // IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const;\n public FindGlyphNoFallback(c: number): ImFontGlyph | null {\n const glyph: Readonly | null = this.native.FindGlyphNoFallback(c);\n return glyph && new ImFontGlyph(glyph);\n }\n // IMGUI_API void SetFallbackChar(ImWchar c);\n public SetFallbackChar(c: number): void { return this.native.SetFallbackChar(c); }\n // float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; }\n public GetCharAdvance(c: number): number { return this.native.GetCharAdvance(c); }\n // bool IsLoaded() const { return ContainerAtlas != NULL; }\n public IsLoaded(): boolean { return this.native.IsLoaded(); }\n // const char* GetDebugName() const { return ConfigData ? ConfigData->Name : \"\"; }\n public GetDebugName(): string { return this.native.GetDebugName(); }\n\n // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable.\n // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable.\n // IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8\n public CalcTextSizeA(size: number, max_width: number, wrap_width: number, text_begin: string, text_end: number | null = null, remaining: Bind.ImScalar | null = null): Bind.interface_ImVec2 {\n return this.native.CalcTextSizeA(size, max_width, wrap_width, text_end !== null ? text_begin.substring(0, text_end) : text_begin, remaining, new ImVec2());\n }\n // IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const;\n public CalcWordWrapPositionA(scale: number, text: string, text_end: number | null = null, wrap_width: number): number {\n return this.native.CalcWordWrapPositionA(scale, text_end !== null ? text.substring(0, text_end) : text, wrap_width);\n }\n // IMGUI_API void RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, unsigned short c) const;\n public RenderChar(draw_list: ImDrawList, size: number, pos: Readonly, col: Bind.ImU32, c: Bind.ImWchar): void {\n this.native.RenderChar(draw_list.native, size, pos, col, c);\n }\n // IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const;\n public RenderText(draw_list: ImDrawList, size: number, pos: Readonly, col: Bind.ImU32, clip_rect: Readonly, text_begin: string, text_end: number | null = null, wrap_width: number = 0.0, cpu_fine_clip: boolean = false): void {}\n\n // [Internal]\n // IMGUI_API void GrowIndex(int new_size);\n // IMGUI_API void AddGlyph(ImWchar c, float x0, float y0, float x1, float y1, float u0, float v0, float u1, float v1, float advance_x);\n // IMGUI_API void AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst = true); // Makes 'dst' character/glyph points to 'src' character/glyph. Currently needs to be called AFTER fonts have been built.\n\n // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS\n // typedef ImFontGlyph Glyph; // OBSOLETE 1.52+\n // #endif\n}\n\n// a script version of BindImGui.ImGuiStyle with matching interface\nclass script_ImGuiStyle implements Bind.interface_ImGuiStyle {\n public Alpha: number = 1.0;\n public WindowPadding: ImVec2 = new ImVec2(8, 8);\n public WindowRounding: number = 7.0;\n public WindowBorderSize: number = 0.0;\n public WindowMinSize: ImVec2 = new ImVec2(32, 32);\n public WindowTitleAlign: ImVec2 = new ImVec2(0.0, 0.5);\n public WindowMenuButtonPosition: ImGuiDir = ImGuiDir.Left;\n public ChildRounding: number = 0.0;\n public ChildBorderSize: number = 1.0;\n public PopupRounding: number = 0.0;\n public PopupBorderSize: number = 1.0;\n public FramePadding: ImVec2 = new ImVec2(4, 3);\n public FrameRounding: number = 0.0;\n public FrameBorderSize: number = 0.0;\n public ItemSpacing: ImVec2 = new ImVec2(8, 4);\n public ItemInnerSpacing: ImVec2 = new ImVec2(4, 4);\n public TouchExtraPadding: ImVec2 = new ImVec2(0, 0);\n public IndentSpacing: number = 21.0;\n public ColumnsMinSpacing: number = 6.0;\n public ScrollbarSize: number = 16.0;\n public ScrollbarRounding: number = 9.0;\n public GrabMinSize: number = 10.0;\n public GrabRounding: number = 0.0;\n public TabRounding: number = 0.0;\n public TabBorderSize: number = 0.0;\n public ButtonTextAlign: ImVec2 = new ImVec2(0.5, 0.5);\n public SelectableTextAlign: ImVec2 = new ImVec2(0.0, 0.0);\n public DisplayWindowPadding: ImVec2 = new ImVec2(22, 22);\n public DisplaySafeAreaPadding: ImVec2 = new ImVec2(4, 4);\n public MouseCursorScale: number = 1;\n public AntiAliasedLines: boolean = true;\n public AntiAliasedFill: boolean = true;\n public CurveTessellationTol: number = 1.25;\n private Colors: ImVec4[] = [];\n public _getAt_Colors(index: number): Bind.interface_ImVec4 { return this.Colors[index]; }\n public _setAt_Colors(index: number, color: Readonly): boolean { this.Colors[index].Copy(color); return true; }\n\n constructor() {\n for (let i = 0; i < ImGuiCol.COUNT; ++i) {\n this.Colors[i] = new ImVec4();\n }\n const _this = new ImGuiStyle(this);\n const native = new bind.ImGuiStyle();\n const _that = new ImGuiStyle(native);\n _that.Copy(_this);\n bind.StyleColorsClassic(native);\n _this.Copy(_that);\n native.delete();\n }\n\n public ScaleAllSizes(scale_factor: number): void {\n const _this = new ImGuiStyle(this);\n const native = new bind.ImGuiStyle();\n const _that = new ImGuiStyle(native);\n _that.Copy(_this);\n native.ScaleAllSizes(scale_factor);\n _this.Copy(_that);\n native.delete();\n }\n}\n\nexport class ImGuiStyle\n{\n constructor(public readonly internal: Bind.interface_ImGuiStyle = new script_ImGuiStyle()) {}\n\n get Alpha(): number { return this.internal.Alpha; } set Alpha(value: number) { this.internal.Alpha = value; }\n get WindowPadding(): Bind.interface_ImVec2 { return this.internal.WindowPadding; }\n get WindowRounding(): number { return this.internal.WindowRounding; } set WindowRounding(value: number) { this.internal.WindowRounding = value; }\n get WindowBorderSize(): number { return this.internal.WindowBorderSize; } set WindowBorderSize(value: number) { this.internal.WindowBorderSize = value; }\n get WindowMinSize(): Bind.interface_ImVec2 { return this.internal.WindowMinSize; }\n get WindowTitleAlign(): Bind.interface_ImVec2 { return this.internal.WindowTitleAlign; }\n get WindowMenuButtonPosition(): ImGuiDir { return this.internal.WindowMenuButtonPosition; } set WindowMenuButtonPosition(value: ImGuiDir) { this.internal.WindowMenuButtonPosition = value; }\n get ChildRounding(): number { return this.internal.ChildRounding; } set ChildRounding(value: number) { this.internal.ChildRounding = value; }\n get ChildBorderSize(): number { return this.internal.ChildBorderSize; } set ChildBorderSize(value: number) { this.internal.ChildBorderSize = value; }\n get PopupRounding(): number { return this.internal.PopupRounding; } set PopupRounding(value: number) { this.internal.PopupRounding = value; }\n get PopupBorderSize(): number { return this.internal.PopupBorderSize; } set PopupBorderSize(value: number) { this.internal.PopupBorderSize = value; }\n get FramePadding(): Bind.interface_ImVec2 { return this.internal.FramePadding; }\n get FrameRounding(): number { return this.internal.FrameRounding; } set FrameRounding(value: number) { this.internal.FrameRounding = value; }\n get FrameBorderSize(): number { return this.internal.FrameBorderSize; } set FrameBorderSize(value: number) { this.internal.FrameBorderSize = value; }\n get ItemSpacing(): Bind.interface_ImVec2 { return this.internal.ItemSpacing; }\n get ItemInnerSpacing(): Bind.interface_ImVec2 { return this.internal.ItemInnerSpacing; }\n get TouchExtraPadding(): Bind.interface_ImVec2 { return this.internal.TouchExtraPadding; }\n get IndentSpacing(): number { return this.internal.IndentSpacing; } set IndentSpacing(value: number) { this.internal.IndentSpacing = value; }\n get ColumnsMinSpacing(): number { return this.internal.ColumnsMinSpacing; } set ColumnsMinSpacing(value: number) { this.internal.ColumnsMinSpacing = value; }\n get ScrollbarSize(): number { return this.internal.ScrollbarSize; } set ScrollbarSize(value: number) { this.internal.ScrollbarSize = value; }\n get ScrollbarRounding(): number { return this.internal.ScrollbarRounding; } set ScrollbarRounding(value: number) { this.internal.ScrollbarRounding = value; }\n get GrabMinSize(): number { return this.internal.GrabMinSize; } set GrabMinSize(value: number) { this.internal.GrabMinSize = value; }\n get GrabRounding(): number { return this.internal.GrabRounding; } set GrabRounding(value: number) { this.internal.GrabRounding = value; }\n get TabRounding(): number { return this.internal.TabRounding; } set TabRounding(value: number) { this.internal.TabRounding = value; }\n get TabBorderSize(): number { return this.internal.TabBorderSize; } set TabBorderSize(value: number) { this.internal.TabBorderSize = value; }\n get ButtonTextAlign(): Bind.interface_ImVec2 { return this.internal.ButtonTextAlign; }\n get SelectableTextAlign(): Bind.interface_ImVec2 { return this.internal.SelectableTextAlign; }\n get DisplayWindowPadding(): Bind.interface_ImVec2 { return this.internal.DisplayWindowPadding; }\n get DisplaySafeAreaPadding(): Bind.interface_ImVec2 { return this.internal.DisplaySafeAreaPadding; }\n get MouseCursorScale(): number { return this.internal.MouseCursorScale; } set MouseCursorScale(value: number) { this.internal.MouseCursorScale = value; }\n get AntiAliasedLines(): boolean { return this.internal.AntiAliasedLines; } set AntiAliasedLines(value: boolean) { this.internal.AntiAliasedLines = value; }\n get AntiAliasedFill(): boolean { return this.internal.AntiAliasedFill; } set AntiAliasedFill(value: boolean) { this.internal.AntiAliasedFill = value; }\n get CurveTessellationTol(): number { return this.internal.CurveTessellationTol; } set CurveTessellationTol(value: number) { this.internal.CurveTessellationTol = value; }\n public Colors: Bind.interface_ImVec4[] = new Proxy([], {\n get: (target: Bind.interface_ImVec4[], key: PropertyKey): number | Bind.interface_ImVec4 => {\n if (key === \"length\") { return ImGuiCol.COUNT; }\n return this.internal._getAt_Colors(Number(key));\n },\n set: (target: Bind.interface_ImVec4[], key: PropertyKey, value: Readonly): boolean => {\n return this.internal._setAt_Colors(Number(key), value);\n },\n });\n\n public Copy(other: Readonly): this {\n this.Alpha = other.Alpha;\n this.WindowPadding.Copy(other.WindowPadding);\n this.WindowRounding = other.WindowRounding;\n this.WindowBorderSize = other.WindowBorderSize;\n this.WindowMinSize.Copy(other.WindowMinSize);\n this.WindowTitleAlign.Copy(other.WindowTitleAlign);\n this.WindowMenuButtonPosition = other.WindowMenuButtonPosition;\n this.ChildRounding = other.ChildRounding;\n this.ChildBorderSize = other.ChildBorderSize;\n this.PopupRounding = other.PopupRounding;\n this.PopupBorderSize = other.PopupBorderSize;\n this.FramePadding.Copy(other.FramePadding);\n this.FrameRounding = other.FrameRounding;\n this.FrameBorderSize = other.FrameBorderSize;\n this.ItemSpacing.Copy(other.ItemSpacing);\n this.ItemInnerSpacing.Copy(other.ItemInnerSpacing);\n this.TouchExtraPadding.Copy(other.TouchExtraPadding);\n this.IndentSpacing = other.IndentSpacing;\n this.ColumnsMinSpacing = other.ColumnsMinSpacing;\n this.ScrollbarSize = other.ScrollbarSize;\n this.ScrollbarRounding = other.ScrollbarRounding;\n this.GrabMinSize = other.GrabMinSize;\n this.GrabRounding = other.GrabRounding;\n this.TabRounding = other.TabRounding;\n this.TabBorderSize = other.TabBorderSize;\n this.ButtonTextAlign.Copy(other.ButtonTextAlign);\n this.DisplayWindowPadding.Copy(other.DisplayWindowPadding);\n this.DisplaySafeAreaPadding.Copy(other.DisplaySafeAreaPadding);\n this.MouseCursorScale = other.MouseCursorScale;\n this.AntiAliasedLines = other.AntiAliasedLines;\n this.AntiAliasedFill = other.AntiAliasedFill;\n this.CurveTessellationTol = other.CurveTessellationTol;\n for (let i = 0; i < ImGuiCol.COUNT; ++i) {\n this.Colors[i].Copy(other.Colors[i]);\n }\n return this;\n }\n\n public ScaleAllSizes(scale_factor: number): void { this.internal.ScaleAllSizes(scale_factor); }\n}\n\n// This is where your app communicate with Dear ImGui. Access via ImGui::GetIO().\n// Read 'Programmer guide' section in .cpp file for general usage.\nexport class ImGuiIO\n{\n constructor(public readonly native: Bind.reference_ImGuiIO) {}\n\n //------------------------------------------------------------------\n // Settings (fill once) // Default value:\n //------------------------------------------------------------------\n\n // ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc.\n get ConfigFlags(): ImGuiConfigFlags { return this.native.ConfigFlags; }\n set ConfigFlags(value: ImGuiConfigFlags) { this.native.ConfigFlags = value; }\n // ImGuiBackendFlags BackendFlags; // = 0 // Set ImGuiBackendFlags_ enum. Set by imgui_impl_xxx files or custom back-end to communicate features supported by the back-end.\n get BackendFlags(): ImGuiBackendFlags { return this.native.BackendFlags; }\n set BackendFlags(value: ImGuiBackendFlags) { this.native.BackendFlags = value; }\n // ImVec2 DisplaySize; // // Display size, in pixels. For clamping windows positions.\n get DisplaySize(): Bind.reference_ImVec2 { return this.native.DisplaySize; }\n // float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds.\n get DeltaTime(): number { return this.native.DeltaTime; }\n set DeltaTime(value: number) { this.native.DeltaTime = value; }\n // float IniSavingRate; // = 5.0f // Maximum time between saving positions/sizes to .ini file, in seconds.\n get IniSavingRate(): number { return this.native.IniSavingRate; }\n set IniSavingRate(value: number) { this.native.IniSavingRate = value; }\n // const char* IniFilename; // = \"imgui.ini\" // Path to .ini file. NULL to disable .ini saving.\n get IniFilename(): string { return this.native.IniFilename; }\n set IniFilename(value: string) { this.native.IniFilename = value; }\n // const char* LogFilename; // = \"imgui_log.txt\" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified).\n get LogFilename(): string { return this.native.LogFilename; }\n set LogFilename(value: string) { this.native.LogFilename = value; }\n // float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds.\n get MouseDoubleClickTime(): number { return this.native.MouseDoubleClickTime; }\n set MouseDoubleClickTime(value: number) { this.native.MouseDoubleClickTime = value; }\n // float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels.\n get MouseDoubleClickMaxDist(): number { return this.native.MouseDoubleClickMaxDist; }\n set MouseDoubleClickMaxDist(value: number) { this.native.MouseDoubleClickMaxDist = value; }\n // float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging\n get MouseDragThreshold(): number { return this.native.MouseDragThreshold; }\n set MouseDragThreshold(value: number) { this.native.MouseDragThreshold = value; }\n // int KeyMap[ImGuiKey_COUNT]; // // Map of indices into the KeysDown[512] entries array\n public KeyMap: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiKey.COUNT; }\n return this.native._getAt_KeyMap(Number(key));\n },\n set: (target: number[], key: PropertyKey, value: number): boolean => {\n return this.native._setAt_KeyMap(Number(key), value);\n },\n });\n // float KeyRepeatDelay; // = 0.250f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.).\n get KeyRepeatDelay(): number { return this.native.KeyRepeatDelay; }\n set KeyRepeatDelay(value: number) { this.native.KeyRepeatDelay = value; }\n // float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds.\n get KeyRepeatRate(): number { return this.native.KeyRepeatRate; }\n set KeyRepeatRate(value: number) { this.native.KeyRepeatRate = value; }\n // void* UserData; // = NULL // Store your own data for retrieval by callbacks.\n get UserData(): any { return this.native.UserData; }\n set UserData(value: any) { this.native.UserData = value; }\n\n // ImFontAtlas* Fonts; // // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array.\n get Fonts(): ImFontAtlas { return new ImFontAtlas(this.native.Fonts); }\n // float FontGlobalScale; // = 1.0f // Global scale all fonts\n get FontGlobalScale(): number { return this.native.FontGlobalScale; }\n set FontGlobalScale(value: number) { this.native.FontGlobalScale = value; }\n // bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel.\n get FontAllowUserScaling(): boolean { return this.native.FontAllowUserScaling; }\n set FontAllowUserScaling(value: boolean) { this.native.FontAllowUserScaling = value; }\n // ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0].\n get FontDefault(): ImFont | null {\n const font: Bind.reference_ImFont | null = this.native.FontDefault;\n return (font === null) ? null : new ImFont(font);\n }\n set FontDefault(value: ImFont | null) {\n this.native.FontDefault = value && value.native;\n }\n // ImVec2 DisplayFramebufferScale; // = (1.0f,1.0f) // For retina display or other situations where window coordinates are different from framebuffer coordinates. User storage only, presently not used by ImGui.\n get DisplayFramebufferScale(): Bind.reference_ImVec2 { return this.native.DisplayFramebufferScale; }\n\n // Miscellaneous configuration options\n // bool OptMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl\n get ConfigMacOSXBehaviors(): boolean { return this.native.ConfigMacOSXBehaviors; }\n set ConfigMacOSXBehaviors(value: boolean) { this.native.ConfigMacOSXBehaviors = value; }\n // bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor, for users who consider it annoying.\n get ConfigInputTextCursorBlink(): boolean { return this.native.ConfigInputTextCursorBlink; }\n set ConfigInputTextCursorBlink(value: boolean) { this.native.ConfigInputTextCursorBlink = value; }\n // bool ConfigWindowsResizeFromEdges; // = false // [BETA] Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be the ImGuiWindowFlags_ResizeFromAnySide flag)\n get ConfigWindowsResizeFromEdges(): boolean { return this.native.ConfigWindowsResizeFromEdges; }\n set ConfigWindowsResizeFromEdges(value: boolean) { this.native.ConfigWindowsResizeFromEdges = value; }\n // bool ConfigWindowsMoveFromTitleBarOnly;// = false // [BETA] Set to true to only allow moving windows when clicked+dragged from the title bar. Windows without a title bar are not affected.\n get ConfigWindowsMoveFromTitleBarOnly(): boolean { return this.native.ConfigWindowsMoveFromTitleBarOnly; }\n set ConfigWindowsMoveFromTitleBarOnly(value: boolean) { this.native.ConfigWindowsMoveFromTitleBarOnly = value; }\n\n //------------------------------------------------------------------\n // Settings (User Functions)\n //------------------------------------------------------------------\n\n // Optional: Platform/Renderer back-end name (informational only! will be displayed in About Window) + User data for back-end/wrappers to store their own stuff.\n // const char* BackendPlatformName; // = NULL\n get BackendPlatformName(): string | null { return this.native.BackendPlatformName; }\n set BackendPlatformName(value: string | null) { this.native.BackendPlatformName = value; }\n // const char* BackendRendererName; // = NULL\n get BackendRendererName(): string | null { return this.native.BackendRendererName; }\n set BackendRendererName(value: string | null) { this.native.BackendRendererName = value; }\n // void* BackendPlatformUserData; // = NULL\n get BackendPlatformUserData(): string | null { return this.native.BackendPlatformUserData; }\n set BackendPlatformUserData(value: string | null) { this.native.BackendPlatformUserData = value; }\n // void* BackendRendererUserData; // = NULL\n get BackendRendererUserData(): string | null { return this.native.BackendRendererUserData; }\n set BackendRendererUserData(value: string | null) { this.native.BackendRendererUserData = value; }\n // void* BackendLanguageUserData; // = NULL\n get BackendLanguageUserData(): string | null { return this.native.BackendLanguageUserData; }\n set BackendLanguageUserData(value: string | null) { this.native.BackendLanguageUserData = value; }\n\n // Optional: access OS clipboard\n // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures)\n // const char* (*GetClipboardTextFn)(void* user_data);\n get GetClipboardTextFn(): ((user_data: any) => string) | null { return this.native.GetClipboardTextFn; }\n set GetClipboardTextFn(value: ((user_data: any) => string) | null) { this.native.GetClipboardTextFn = value; }\n // void (*SetClipboardTextFn)(void* user_data, const char* text);\n get SetClipboardTextFn(): ((user_data: any, text: string) => void) | null { return this.native.SetClipboardTextFn; }\n set SetClipboardTextFn(value: ((user_data: any, text: string) => void) | null) { this.native.SetClipboardTextFn = value; }\n // void* ClipboardUserData;\n get ClipboardUserData(): any { return this.native.ClipboardUserData; }\n set ClipboardUserData(value: any) { this.native.ClipboardUserData = value; }\n\n // Optional: override memory allocations. MemFreeFn() may be called with a NULL pointer.\n // (default to posix malloc/free)\n // void* (*MemAllocFn)(size_t sz);\n // void (*MemFreeFn)(void* ptr);\n\n // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME in Windows)\n // (default to use native imm32 api on Windows)\n // void (*ImeSetInputScreenPosFn)(int x, int y);\n // void* ImeWindowHandle; // (Windows) Set this to your HWND to get automatic IME cursor positioning.\n\n //------------------------------------------------------------------\n // Input - Fill before calling NewFrame()\n //------------------------------------------------------------------\n\n // ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX,-FLT_MAX) if mouse is unavailable (on another screen, etc.)\n get MousePos(): Bind.reference_ImVec2 { return this.native.MousePos; }\n // bool MouseDown[5]; // Mouse buttons: left, right, middle + extras. ImGui itself mostly only uses left button (BeginPopupContext** are using right button). Others buttons allows us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API.\n public MouseDown: boolean[] = new Proxy([], {\n get: (target: boolean[], key: PropertyKey): number | boolean => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseDown(Number(key));\n },\n set: (target: boolean[], key: PropertyKey, value: boolean): boolean => {\n return this.native._setAt_MouseDown(Number(key), value);\n },\n });\n // float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text.\n public get MouseWheel(): number { return this.native.MouseWheel; }\n public set MouseWheel(value: number) { this.native.MouseWheel = value; }\n // float MouseWheelH; // Mouse wheel (Horizontal). Most users don't have a mouse with an horizontal wheel, may not be filled by all back-ends.\n public get MouseWheelH(): number { return this.native.MouseWheelH; }\n public set MouseWheelH(value: number) { this.native.MouseWheelH = value; }\n // bool MouseDrawCursor; // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor).\n get MouseDrawCursor(): boolean { return this.native.MouseDrawCursor; } set MouseDrawCursor(value: boolean) { this.native.MouseDrawCursor = value; }\n // bool KeyCtrl; // Keyboard modifier pressed: Control\n get KeyCtrl(): boolean { return this.native.KeyCtrl; } set KeyCtrl(value: boolean) { this.native.KeyCtrl = value; }\n // bool KeyShift; // Keyboard modifier pressed: Shift\n get KeyShift(): boolean { return this.native.KeyShift; } set KeyShift(value: boolean) { this.native.KeyShift = value; }\n // bool KeyAlt; // Keyboard modifier pressed: Alt\n get KeyAlt(): boolean { return this.native.KeyAlt; } set KeyAlt(value: boolean) { this.native.KeyAlt = value; }\n // bool KeySuper; // Keyboard modifier pressed: Cmd/Super/Windows\n get KeySuper(): boolean { return this.native.KeySuper; } set KeySuper(value: boolean) { this.native.KeySuper = value; }\n // bool KeysDown[512]; // Keyboard keys that are pressed (in whatever storage order you naturally have access to keyboard data)\n public KeysDown: boolean[] = new Proxy([], {\n get: (target: boolean[], key: PropertyKey): number | boolean => {\n if (key === \"length\") { return 512; }\n return this.native._getAt_KeysDown(Number(key));\n },\n set: (target: boolean[], key: PropertyKey, value: boolean): boolean => {\n return this.native._setAt_KeysDown(Number(key), value);\n },\n });\n // float NavInputs[ImGuiNavInput_COUNT]; // Gamepad inputs (keyboard keys will be auto-mapped and be written here by ImGui::NewFrame)\n public NavInputs: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiNavInput.COUNT; }\n return this.native._getAt_NavInputs(Number(key));\n },\n set: (target: number[], key: PropertyKey, value: number): boolean => {\n return this.native._setAt_NavInputs(Number(key), value);\n },\n });\n\n // Functions\n // IMGUI_API void AddInputCharacter(ImWchar c); // Add new character into InputCharacters[]\n public AddInputCharacter(c: number): void { this.native.AddInputCharacter(c); }\n // IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Add new characters into InputCharacters[] from an UTF-8 string\n public AddInputCharactersUTF8(utf8_chars: string): void { this.native.AddInputCharactersUTF8(utf8_chars); }\n // inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Clear the text input buffer manually\n public ClearInputCharacters(): void { this.native.ClearInputCharacters(); }\n\n //------------------------------------------------------------------\n // Output - Retrieve after calling NewFrame()\n //------------------------------------------------------------------\n\n // bool WantCaptureMouse; // When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. This is set by ImGui when it wants to use your mouse (e.g. unclicked mouse is hovering a window, or a widget is active).\n get WantCaptureMouse(): boolean { return this.native.WantCaptureMouse; } set WantCaptureMouse(value: boolean) { this.native.WantCaptureMouse = value; }\n // bool WantCaptureKeyboard; // When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. This is set by ImGui when it wants to use your keyboard inputs.\n get WantCaptureKeyboard(): boolean { return this.native.WantCaptureKeyboard; } set WantCaptureKeyboard(value: boolean) { this.native.WantCaptureKeyboard = value; }\n // bool WantTextInput; // Mobile/console: when io.WantTextInput is true, you may display an on-screen keyboard. This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active).\n get WantTextInput(): boolean { return this.native.WantTextInput; } set WantTextInput(value: boolean) { this.native.WantTextInput = value; }\n // bool WantSetMousePos; // [BETA-NAV] MousePos has been altered, back-end should reposition mouse on next frame. Set only when 'NavMovesMouse=true'.\n get WantSetMousePos(): boolean { return this.native.WantSetMousePos; } set WantSetMousePos(value: boolean) { this.native.WantSetMousePos = value; }\n // bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. IMPORTANT: You need to clear io.WantSaveIniSettings yourself.\n get WantSaveIniSettings(): boolean { return this.native.WantSaveIniSettings; } set WantSaveIniSettings(value: boolean) { this.native.WantSaveIniSettings = value; }\n // bool NavActive; // Directional navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag.\n get NavActive(): boolean { return this.native.NavActive; } set NavActive(value: boolean) { this.native.NavActive = value; }\n // bool NavVisible; // Directional navigation is visible and allowed (will handle ImGuiKey_NavXXX events).\n get NavVisible(): boolean { return this.native.NavVisible; } set NavVisible(value: boolean) { this.native.NavVisible = value; }\n // float Framerate; // Application framerate estimation, in frame per second. Solely for convenience. Rolling average estimation based on IO.DeltaTime over 120 frames\n get Framerate(): number { return this.native.Framerate; }\n // int MetricsRenderVertices; // Vertices output during last call to Render()\n get MetricsRenderVertices(): number { return this.native.MetricsRenderVertices; }\n // int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3\n get MetricsRenderIndices(): number { return this.native.MetricsRenderIndices; }\n // int MetricsRenderWindows; // Number of visible windows\n get MetricsRenderWindows(): number { return this.native.MetricsRenderWindows; }\n // int MetricsActiveWindows; // Number of visible root windows (exclude child windows)\n get MetricsActiveWindows(): number { return this.native.MetricsActiveWindows; }\n // int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts.\n get MetricsActiveAllocations(): number { return this.native.MetricsActiveAllocations; }\n // ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta.\n get MouseDelta(): Readonly { return this.native.MouseDelta; }\n\n //------------------------------------------------------------------\n // [Internal] ImGui will maintain those fields. Forward compatibility not guaranteed!\n //------------------------------------------------------------------\n\n // ImVec2 MousePosPrev; // Previous mouse position temporary storage (nb: not for public use, set to MousePos in NewFrame())\n // ImVec2 MouseClickedPos[5]; // Position at time of clicking\n public MouseClickedPos: Array> = new Proxy([], {\n get: (target: Array>, key: PropertyKey): number | Readonly => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseClickedPos(Number(key));\n },\n });\n // float MouseClickedTime[5]; // Time of last click (used to figure out double-click)\n // bool MouseClicked[5]; // Mouse button went from !Down to Down\n // bool MouseDoubleClicked[5]; // Has mouse button been double-clicked?\n // bool MouseReleased[5]; // Mouse button went from Down to !Down\n // bool MouseDownOwned[5]; // Track if button was clicked inside a window. We don't request mouse capture from the application if click started outside ImGui bounds.\n // float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked)\n public MouseDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseDownDuration(Number(key));\n },\n });\n // float MouseDownDurationPrev[5]; // Previous time the mouse button has been down\n // ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point\n // float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point\n // float KeysDownDuration[512]; // Duration the keyboard key has been down (0.0f == just pressed)\n public KeysDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return 512; }\n return this.native._getAt_KeysDownDuration(Number(key));\n },\n });\n // float KeysDownDurationPrev[512]; // Previous duration the key has been down\n // float NavInputsDownDuration[ImGuiNavInput_COUNT];\n public NavInputsDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiNavInput.COUNT; }\n return this.native._getAt_NavInputsDownDuration(Number(key));\n },\n });\n // float NavInputsDownDurationPrev[ImGuiNavInput_COUNT];\n\n // IMGUI_API ImGuiIO();\n}\n\nconst _texturesById: Array = [];\n\n// Context creation and access, if you want to use multiple context, share context between modules (e.g. DLL).\n// All contexts share a same ImFontAtlas by default. If you want different font atlas, you can new() them and overwrite the GetIO().Fonts variable of an ImGui context.\n// All those functions are not reliant on the current context.\nexport class ImGuiContext {\n public static current_ctx: ImGuiContext | null = null;\n public static getTexture(index: number): ImTextureID | null {\n return _texturesById[index] || null;\n }\n public static setTexture(texture: ImTextureID | null): number {\n let index = _texturesById.indexOf(texture);\n if (index === -1) {\n for (let i = 0; i < _texturesById.length; ++i) {\n if (_texturesById[i] === null) {\n _texturesById[i] = texture;\n return i;\n }\n }\n index = _texturesById.length;\n _texturesById.push(texture);\n }\n return index;\n }\n\n constructor(public readonly native: Bind.WrapImGuiContext) {}\n}\n// IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL);\nexport function CreateContext(shared_font_atlas: ImFontAtlas | null = null): ImGuiContext | null {\n const ctx: ImGuiContext = new ImGuiContext(bind.CreateContext(shared_font_atlas ? shared_font_atlas.native : null));\n if (ImGuiContext.current_ctx === null) {\n ImGuiContext.current_ctx = ctx;\n }\n return ctx;\n}\n// IMGUI_API void DestroyContext(ImGuiContext* ctx = NULL); // NULL = Destroy current context\nexport function DestroyContext(ctx: ImGuiContext | null = null): void {\n if (ctx === null) {\n ctx = ImGuiContext.current_ctx;\n ImGuiContext.current_ctx = null;\n }\n bind.DestroyContext((ctx === null) ? null : ctx.native);\n}\n// IMGUI_API ImGuiContext* GetCurrentContext();\nexport function GetCurrentContext(): ImGuiContext | null {\n // const ctx_native: BindImGui.ImGuiContext | null = bind.GetCurrentContext();\n return ImGuiContext.current_ctx;\n}\n// IMGUI_API void SetCurrentContext(ImGuiContext* ctx);\nexport function SetCurrentContext(ctx: ImGuiContext | null): void {\n bind.SetCurrentContext((ctx === null) ? null : ctx.native);\n ImGuiContext.current_ctx = ctx;\n}\n\n// IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert);\nexport function DebugCheckVersionAndDataLayout(version_str: string, sz_io: number, sz_style: number, sz_vec2: number, sz_vec4: number, sz_draw_vert: number, sz_draw_idx: number): boolean {\n return bind.DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx);\n}\n\n// Main\n// IMGUI_API ImGuiIO& GetIO();\nexport function GetIO(): ImGuiIO { return new ImGuiIO(bind.GetIO()); }\n// IMGUI_API ImGuiStyle& GetStyle();\nexport function GetStyle(): ImGuiStyle { return new ImGuiStyle(bind.GetStyle()); }\n// IMGUI_API void NewFrame(); // start a new ImGui frame, you can submit any command from this point until Render()/EndFrame().\nexport function NewFrame(): void { bind.NewFrame(); }\n// IMGUI_API void EndFrame(); // ends the ImGui frame. automatically called by Render(), so most likely don't need to ever call that yourself directly. If you don't need to render you may call EndFrame() but you'll have wasted CPU already. If you don't need to render, better to not create any imgui windows instead!\nexport function EndFrame(): void { bind.EndFrame(); }\n// IMGUI_API void Render(); // ends the ImGui frame, finalize the draw data, then call your io.RenderDrawListsFn() function if set.\nexport function Render(): void { bind.Render(); }\n// IMGUI_API ImDrawData* GetDrawData(); // same value as passed to your io.RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame()\nexport function GetDrawData(): ImDrawData | null {\n const draw_data: Bind.reference_ImDrawData | null = bind.GetDrawData();\n return (draw_data === null) ? null : new ImDrawData(draw_data);\n}\n\n// Demo, Debug, Informations\n// IMGUI_API void ShowDemoWindow(bool* p_open = NULL); // create demo/test window (previously called ShowTestWindow). demonstrate most ImGui features. call this to learn about the library! try to make it always available in your application!\nexport function ShowDemoWindow(p_open: Bind.ImScalar | null = null): void { bind.ShowDemoWindow(p_open); }\n// IMGUI_API void ShowAboutWindow(bool* p_open = NULL); // create about window. display Dear ImGui version, credits and build/system information.\nexport function ShowAboutWindow(p_open: Bind.ImScalar | Bind.ImAccess | null = null): void {\n if (p_open === null) {\n bind.ShowAboutWindow(null);\n } else if (Array.isArray(p_open)) {\n bind.ShowAboutWindow(p_open);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n bind.ShowAboutWindow(ref_open);\n p_open(ref_open[0]);\n }\n}\n// IMGUI_API void ShowMetricsWindow(bool* p_open = NULL); // create metrics window. display ImGui internals: draw commands (with individual draw calls and vertices), window list, basic internal state, etc.\nexport function ShowMetricsWindow(p_open: Bind.ImScalar | Bind.ImAccess | null = null): void {\n if (p_open === null) {\n bind.ShowMetricsWindow(null);\n } else if (Array.isArray(p_open)) {\n bind.ShowMetricsWindow(p_open);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n bind.ShowMetricsWindow(ref_open);\n p_open(ref_open[0]);\n }\n}\n// IMGUI_API void ShowStyleEditor(ImGuiStyle* ref = NULL); // add style editor block (not a window). you can pass in a reference ImGuiStyle structure to compare to, revert to and save to (else it uses the default style)\nexport function ShowStyleEditor(ref: ImGuiStyle | null = null): void {\n if (ref === null) {\n bind.ShowStyleEditor(null);\n } else if (ref.internal instanceof bind.ImGuiStyle) {\n bind.ShowStyleEditor(ref.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(ref);\n bind.ShowStyleEditor(native);\n ref.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API bool ShowStyleSelector(const char* label);\nexport function ShowStyleSelector(label: string): boolean { return bind.ShowStyleSelector(label); }\n// IMGUI_API void ShowFontSelector(const char* label);\nexport function ShowFontSelector(label: string): void { bind.ShowFontSelector(label); }\n// IMGUI_API void ShowUserGuide(); // add basic help/info block (not a window): how to manipulate ImGui as a end-user (mouse/keyboard controls).\nexport function ShowUserGuide(): void { bind.ShowUserGuide(); }\n// IMGUI_API const char* GetVersion();\nexport function GetVersion(): string { return bind.GetVersion(); }\n\n// Styles\n// IMGUI_API void StyleColorsClassic(ImGuiStyle* dst = NULL);\nexport function StyleColorsClassic(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsClassic(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsClassic(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsClassic(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API void StyleColorsDark(ImGuiStyle* dst = NULL);\nexport function StyleColorsDark(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsDark(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsDark(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsDark(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API void StyleColorsLight(ImGuiStyle* dst = NULL);\nexport function StyleColorsLight(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsLight(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsLight(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsLight(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n\n// Window\n// IMGUI_API bool Begin(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); // push window to the stack and start appending to it. see .cpp for details. return false when window is collapsed, so you can early out in your code. 'bool* p_open' creates a widget on the upper-right to close the window (which sets your bool to false).\nexport function Begin(name: string, open: Bind.ImScalar | Bind.ImAccess | null = null, flags: ImGuiWindowFlags = 0): boolean {\n if (open === null) {\n return bind.Begin(name, null, flags);\n } else if (Array.isArray(open)) {\n return bind.Begin(name, open, flags);\n } else {\n const ref_open: Bind.ImScalar = [ open() ];\n const opened: boolean = bind.Begin(name, ref_open, flags);\n open(ref_open[0]);\n return opened;\n }\n}\n// IMGUI_API void End(); // finish appending to current window, pop it off the window stack.\nexport function End(): void { bind.End(); }\n// IMGUI_API bool BeginChild(const char* str_id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags extra_flags = 0); // begin a scrolling region. size==0.0f: use remaining window size, size<0.0f: use remaining window size minus abs(size). size>0.0f: fixed size. each axis can use a different mode, e.g. ImVec2(0,400).\n// IMGUI_API bool BeginChild(ImGuiID id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags extra_flags = 0); // \"\nexport function BeginChild(id: string | Bind.ImGuiID, size: Readonly = ImVec2.ZERO, border: boolean = false, extra_flags: ImGuiWindowFlags = 0): boolean {\n return bind.BeginChild(id, size, border, extra_flags);\n}\n// IMGUI_API void EndChild();\nexport function EndChild(): void { bind.EndChild(); }\n// IMGUI_API ImVec2 GetContentRegionMax(); // current content boundaries (typically window boundaries including scrolling, or current column boundaries), in windows coordinates\nexport function GetContentRegionMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetContentRegionMax(out);\n}\n// IMGUI_API ImVec2 GetContentRegionAvail(); // == GetContentRegionMax() - GetCursorPos()\nexport function GetContentRegionAvail(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetContentRegionAvail(out);\n}\n// IMGUI_API ImVec2 GetWindowContentRegionMin(); // content boundaries min (roughly (0,0)-Scroll), in window coordinates\nexport function GetWindowContentRegionMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowContentRegionMin(out);\n}\n// IMGUI_API ImVec2 GetWindowContentRegionMax(); // content boundaries max (roughly (0,0)+Size-Scroll) where Size can be override with SetNextWindowContentSize(), in window coordinates\nexport function GetWindowContentRegionMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowContentRegionMax(out);\n}\n// IMGUI_API float GetWindowContentRegionWidth(); //\nexport function GetWindowContentRegionWidth(): number { return bind.GetWindowContentRegionWidth(); }\n// IMGUI_API ImDrawList* GetWindowDrawList(); // get rendering command-list if you want to append your own draw primitives\nexport function GetWindowDrawList(): ImDrawList {\n return new ImDrawList(bind.GetWindowDrawList());\n}\n// IMGUI_API ImVec2 GetWindowPos(); // get current window position in screen space (useful if you want to do your own drawing via the DrawList api)\nexport function GetWindowPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowPos(out);\n}\n// IMGUI_API ImVec2 GetWindowSize(); // get current window size\nexport function GetWindowSize(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowSize(out);\n}\n// IMGUI_API float GetWindowWidth();\nexport function GetWindowWidth(): number { return bind.GetWindowWidth(); }\n// IMGUI_API float GetWindowHeight();\nexport function GetWindowHeight(): number { return bind.GetWindowHeight(); }\n// IMGUI_API bool IsWindowCollapsed();\nexport function IsWindowCollapsed(): boolean { return bind.IsWindowCollapsed(); }\n// IMGUI_API bool IsWindowAppearing();\nexport function IsWindowAppearing(): boolean { return bind.IsWindowAppearing(); }\n// IMGUI_API void SetWindowFontScale(float scale); // per-window font scale. Adjust IO.FontGlobalScale if you want to scale all windows\nexport function SetWindowFontScale(scale: number): void { bind.SetWindowFontScale(scale); }\n\n// IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivot = ImVec2(0,0)); // set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc.\nexport function SetNextWindowPos(pos: Readonly, cond: ImGuiCond = 0, pivot: Readonly = ImVec2.ZERO): void {\n bind.SetNextWindowPos(pos, cond, pivot);\n}\n// IMGUI_API void SetNextWindowSize(const ImVec2& size, ImGuiCond cond = 0); // set next window size. set axis to 0.0f to force an auto-fit on this axis. call before Begin()\nexport function SetNextWindowSize(pos: Readonly, cond: ImGuiCond = 0): void {\n bind.SetNextWindowSize(pos, cond);\n}\n// IMGUI_API void SetNextWindowSizeConstraints(const ImVec2& size_min, const ImVec2& size_max, ImGuiSizeConstraintCallback custom_callback = NULL, void* custom_callback_data = NULL); // set next window size limits. use -1,-1 on either X/Y axis to preserve the current size. Use callback to apply non-trivial programmatic constraints.\nexport function SetNextWindowSizeConstraints(size_min: Readonly, size_max: Readonly, custom_callback: ImGuiSizeConstraintCallback | null = null, custom_callback_data: any = null): void {\n if (custom_callback) {\n bind.SetNextWindowSizeConstraints(size_min, size_max, (data: Bind.reference_ImGuiSizeCallbackData): void => {\n custom_callback(new ImGuiSizeCallbackData(data, custom_callback_data));\n }, null);\n } else {\n bind.SetNextWindowSizeConstraints(size_min, size_max, null, null);\n }\n}\n// IMGUI_API void SetNextWindowContentSize(const ImVec2& size); // set next window content size (~ enforce the range of scrollbars). not including window decorations (title bar, menu bar, etc.). set an axis to 0.0f to leave it automatic. call before Begin()\nexport function SetNextWindowContentSize(size: Readonly): void {\n bind.SetNextWindowContentSize(size);\n}\n// IMGUI_API void SetNextWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // set next window collapsed state. call before Begin()\nexport function SetNextWindowCollapsed(collapsed: boolean, cond: ImGuiCond = 0): void {\n bind.SetNextWindowCollapsed(collapsed, cond);\n}\n// IMGUI_API void SetNextWindowFocus(); // set next window to be focused / front-most. call before Begin()\nexport function SetNextWindowFocus(): void { bind.SetNextWindowFocus(); }\n// IMGUI_API void SetNextWindowBgAlpha(float alpha); // set next window background color alpha. helper to easily modify ImGuiCol_WindowBg/ChildBg/PopupBg.\nexport function SetNextWindowBgAlpha(alpha: number): void { bind.SetNextWindowBgAlpha(alpha); }\n// IMGUI_API void SetWindowPos(const ImVec2& pos, ImGuiCond cond = 0); // (not recommended) set current window position - call within Begin()/End(). prefer using SetNextWindowPos(), as this may incur tearing and side-effects.\n// IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); // (not recommended) set current window size - call within Begin()/End(). set to ImVec2(0,0) to force an auto-fit. prefer using SetNextWindowSize(), as this may incur tearing and minor side-effects.\n// IMGUI_API void SetWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // (not recommended) set current window collapsed state. prefer using SetNextWindowCollapsed().\n// IMGUI_API void SetWindowFocus(); // (not recommended) set current window to be focused / front-most. prefer using SetNextWindowFocus().\n// IMGUI_API void SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond = 0); // set named window position.\n// IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); // set named window size. set axis to 0.0f to force an auto-fit on this axis.\n// IMGUI_API void SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond = 0); // set named window collapsed state\n// IMGUI_API void SetWindowFocus(const char* name); // set named window to be focused / front-most. use NULL to remove focus.\nexport function SetWindowPos(name_or_pos: string | Readonly, pos_or_cond: Readonly | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_pos) === \"string\") {\n bind.SetWindowNamePos(name_or_pos, pos_or_cond as Readonly, cond);\n return;\n } else {\n bind.SetWindowPos(name_or_pos, pos_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowSize(name_or_size: string | Readonly, size_or_cond: Readonly | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_size) === \"string\") {\n bind.SetWindowNamePos(name_or_size, size_or_cond as Readonly, cond);\n } else {\n bind.SetWindowSize(name_or_size, size_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowCollapsed(name_or_collapsed: string | boolean, collapsed_or_cond: boolean | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_collapsed) === \"string\") {\n bind.SetWindowNameCollapsed(name_or_collapsed, collapsed_or_cond as boolean, cond);\n } else {\n bind.SetWindowCollapsed(name_or_collapsed, collapsed_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowFocus(name?: string): void {\n if (typeof(name) === \"string\") {\n bind.SetWindowNameFocus(name);\n } else {\n bind.SetWindowFocus();\n }\n}\n\n// IMGUI_API float GetScrollX(); // get scrolling amount [0..GetScrollMaxX()]\nexport function GetScrollX(): number { return bind.GetScrollX(); }\n// IMGUI_API float GetScrollY(); // get scrolling amount [0..GetScrollMaxY()]\nexport function GetScrollY(): number { return bind.GetScrollY(); }\n// IMGUI_API float GetScrollMaxX(); // get maximum scrolling amount ~~ ContentSize.X - WindowSize.X\nexport function GetScrollMaxX(): number { return bind.GetScrollMaxX(); }\n// IMGUI_API float GetScrollMaxY(); // get maximum scrolling amount ~~ ContentSize.Y - WindowSize.Y\nexport function GetScrollMaxY(): number { return bind.GetScrollMaxY(); }\n// IMGUI_API void SetScrollX(float scroll_x); // set scrolling amount [0..GetScrollMaxX()]\nexport function SetScrollX(scroll_x: number): void { bind.SetScrollX(scroll_x); }\n// IMGUI_API void SetScrollY(float scroll_y); // set scrolling amount [0..GetScrollMaxY()]\nexport function SetScrollY(scroll_y: number): void { bind.SetScrollY(scroll_y); }\n// IMGUI_API void SetScrollHereY(float center_y_ratio = 0.5f); // adjust scrolling amount to make current cursor position visible. center_y_ratio=0.0: top, 0.5: center, 1.0: bottom. When using to make a \"default/current item\" visible, consider using SetItemDefaultFocus() instead.\nexport function SetScrollHereY(center_y_ratio: number = 0.5): void {\n bind.SetScrollHereY(center_y_ratio);\n}\n// IMGUI_API void SetScrollFromPosY(float pos_y, float center_y_ratio = 0.5f); // adjust scrolling amount to make given position valid. use GetCursorPos() or GetCursorStartPos()+offset to get valid positions.\nexport function SetScrollFromPosY(pos_y: number, center_y_ratio: number = 0.5): void {\n bind.SetScrollFromPosY(pos_y, center_y_ratio);\n}\n// IMGUI_API void SetStateStorage(ImGuiStorage* tree); // replace tree state storage with our own (if you want to manipulate it yourself, typically clear subsection of it)\n// IMGUI_API ImGuiStorage* GetStateStorage();\n\n// Parameters stacks (shared)\n// IMGUI_API void PushFont(ImFont* font); // use NULL as a shortcut to push default font\nexport function PushFont(font: ImFont | null): void { bind.PushFont(font ? font.native : null); }\n// IMGUI_API void PopFont();\nexport function PopFont(): void { bind.PopFont(); }\n// IMGUI_API void PushStyleColor(ImGuiCol idx, ImU32 col);\n// IMGUI_API void PushStyleColor(ImGuiCol idx, const ImVec4& col);\nexport function PushStyleColor(idx: ImGuiCol, col: Bind.ImU32 | Readonly | Readonly): void {\n if (col instanceof ImColor) {\n bind.PushStyleColor(idx, col.Value);\n } else {\n bind.PushStyleColor(idx, col as (Bind.ImU32 | Readonly));\n }\n}\n// IMGUI_API void PopStyleColor(int count = 1);\nexport function PopStyleColor(count: number = 1): void {\n bind.PopStyleColor(count);\n}\n// IMGUI_API void PushStyleVar(ImGuiStyleVar idx, float val);\n// IMGUI_API void PushStyleVar(ImGuiStyleVar idx, const ImVec2& val);\nexport function PushStyleVar(idx: ImGuiStyleVar, val: number | Readonly): void {\n bind.PushStyleVar(idx, val);\n}\n// IMGUI_API void PopStyleVar(int count = 1);\nexport function PopStyleVar(count: number = 1): void {\n bind.PopStyleVar(count);\n}\n// IMGUI_API const ImVec4& GetStyleColorVec4(ImGuiCol idx); // retrieve style color as stored in ImGuiStyle structure. use to feed back into PushStyleColor(), otherwhise use GetColorU32() to get style color + style alpha.\nexport function GetStyleColorVec4(idx: ImGuiCol): Readonly {\n return bind.GetStyleColorVec4(idx);\n}\n// IMGUI_API ImFont* GetFont(); // get current font\nexport function GetFont(): ImFont {\n return new ImFont(bind.GetFont());\n}\n// IMGUI_API float GetFontSize(); // get current font size (= height in pixels) of current font with current scale applied\nexport function GetFontSize(): number { return bind.GetFontSize(); }\n// IMGUI_API ImVec2 GetFontTexUvWhitePixel(); // get UV coordinate for a while pixel, useful to draw custom shapes via the ImDrawList API\nexport function GetFontTexUvWhitePixel(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetFontTexUvWhitePixel(out);\n}\n// IMGUI_API ImU32 GetColorU32(ImGuiCol idx, float alpha_mul = 1.0f); // retrieve given style color with style alpha applied and optional extra alpha multiplier\n// IMGUI_API ImU32 GetColorU32(const ImVec4& col); // retrieve given color with style alpha applied\n// IMGUI_API ImU32 GetColorU32(ImU32 col); // retrieve given color with style alpha applied\nexport function GetColorU32(idx: ImGuiCol, alpha_mul?: number): Bind.ImU32;\nexport function GetColorU32(col: Readonly): Bind.ImU32;\nexport function GetColorU32(col: Bind.ImU32): Bind.ImU32;\nexport function GetColorU32(...args: any[]): Bind.ImU32 {\n if (args.length === 1) {\n if (typeof(args[0]) === \"number\") {\n // TODO: ImGuiCol or ImU32\n const idx: ImGuiCol = args[0];\n return bind.GetColorU32_A(idx, 1.0);\n } else {\n const col: Readonly = args[0];\n return bind.GetColorU32_B(col);\n }\n } else {\n const idx: ImGuiCol = args[0];\n const alpha_mul: number = args[1];\n return bind.GetColorU32_A(idx, alpha_mul);\n }\n}\n\n// Parameters stacks (current window)\n// IMGUI_API void PushItemWidth(float item_width); // width of items for the common item+label case, pixels. 0.0f = default to ~2/3 of windows width, >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)\nexport function PushItemWidth(item_width: number): void { bind.PushItemWidth(item_width); }\n// IMGUI_API void PopItemWidth();\nexport function PopItemWidth(): void { bind.PopItemWidth(); }\n// IMGUI_API float CalcItemWidth(); // width of item given pushed settings and current cursor position\nexport function SetNextItemWidth(item_width: number): void { bind.SetNextItemWidth(item_width); } // set width of the _next_ common large \"item+label\" widget. >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)\nexport function CalcItemWidth(): number { return bind.CalcItemWidth(); }\n// IMGUI_API void PushTextWrapPos(float wrap_pos_x = 0.0f); // word-wrapping for Text*() commands. < 0.0f: no wrapping; 0.0f: wrap to end of window (or column); > 0.0f: wrap at 'wrap_pos_x' position in window local space\nexport function PushTextWrapPos(wrap_pos_x: number = 0.0): void {\n bind.PushTextWrapPos(wrap_pos_x);\n}\n// IMGUI_API void PopTextWrapPos();\nexport function PopTextWrapPos(): void { bind.PopTextWrapPos(); }\n// IMGUI_API void PushAllowKeyboardFocus(bool allow_keyboard_focus); // allow focusing using TAB/Shift-TAB, enabled by default but you can disable it for certain widgets\nexport function PushAllowKeyboardFocus(allow_keyboard_focus: boolean): void { bind.PushAllowKeyboardFocus(allow_keyboard_focus); }\n// IMGUI_API void PopAllowKeyboardFocus();\nexport function PopAllowKeyboardFocus(): void { bind.PopAllowKeyboardFocus(); }\n// IMGUI_API void PushButtonRepeat(bool repeat); // in 'repeat' mode, Button*() functions return repeated true in a typematic manner (using io.KeyRepeatDelay/io.KeyRepeatRate setting). Note that you can call IsItemActive() after any Button() to tell if the button is held in the current frame.\nexport function PushButtonRepeat(repeat: boolean): void { bind.PushButtonRepeat(repeat); }\n// IMGUI_API void PopButtonRepeat();\nexport function PopButtonRepeat(): void { bind.PopButtonRepeat(); }\n\n// Cursor / Layout\n// IMGUI_API void Separator(); // separator, generally horizontal. inside a menu bar or in horizontal layout mode, this becomes a vertical separator.\nexport function Separator(): void { bind.Separator(); }\n// IMGUI_API void SameLine(float pos_x = 0.0f, float spacing_w = -1.0f); // call between widgets or groups to layout them horizontally\nexport function SameLine(pos_x: number = 0.0, spacing_w: number = -1.0): void {\n bind.SameLine(pos_x, spacing_w);\n}\n// IMGUI_API void NewLine(); // undo a SameLine()\nexport function NewLine(): void { bind.NewLine(); }\n// IMGUI_API void Spacing(); // add vertical spacing\nexport function Spacing(): void { bind.Spacing(); }\n// IMGUI_API void Dummy(const ImVec2& size); // add a dummy item of given size\nexport function Dummy(size: Readonly): void { bind.Dummy(size); }\n// IMGUI_API void Indent(float indent_w = 0.0f); // move content position toward the right, by style.IndentSpacing or indent_w if != 0\nexport function Indent(indent_w: number = 0.0) { bind.Indent(indent_w); }\n// IMGUI_API void Unindent(float indent_w = 0.0f); // move content position back to the left, by style.IndentSpacing or indent_w if != 0\nexport function Unindent(indent_w: number = 0.0) { bind.Unindent(indent_w); }\n// IMGUI_API void BeginGroup(); // lock horizontal starting position + capture group bounding box into one \"item\" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.)\nexport function BeginGroup(): void { bind.BeginGroup(); }\n// IMGUI_API void EndGroup();\nexport function EndGroup(): void { bind.EndGroup(); }\n// IMGUI_API ImVec2 GetCursorPos(); // cursor position is relative to window position\nexport function GetCursorPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorPos(out); }\n// IMGUI_API float GetCursorPosX(); // \"\nexport function GetCursorPosX(): number { return bind.GetCursorPosX(); }\n// IMGUI_API float GetCursorPosY(); // \"\nexport function GetCursorPosY(): number { return bind.GetCursorPosY(); }\n// IMGUI_API void SetCursorPos(const ImVec2& local_pos); // \"\nexport function SetCursorPos(local_pos: Readonly): void { bind.SetCursorPos(local_pos); }\n// IMGUI_API void SetCursorPosX(float x); // \"\nexport function SetCursorPosX(x: number): void { bind.SetCursorPosX(x); }\n// IMGUI_API void SetCursorPosY(float y); // \"\nexport function SetCursorPosY(y: number): void { bind.SetCursorPosY(y); }\n// IMGUI_API ImVec2 GetCursorStartPos(); // initial cursor position\nexport function GetCursorStartPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorStartPos(out); }\n// IMGUI_API ImVec2 GetCursorScreenPos(); // cursor position in absolute screen coordinates [0..io.DisplaySize] (useful to work with ImDrawList API)\nexport function GetCursorScreenPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorScreenPos(out); }\n// IMGUI_API void SetCursorScreenPos(const ImVec2& pos); // cursor position in absolute screen coordinates [0..io.DisplaySize]\nexport function SetCursorScreenPos(pos: Readonly): void { bind.SetCursorScreenPos(pos); }\n// IMGUI_API void AlignTextToFramePadding(); // vertically align/lower upcoming text to FramePadding.y so that it will aligns to upcoming widgets (call if you have text on a line before regular widgets)\nexport function AlignTextToFramePadding(): void { bind.AlignTextToFramePadding(); }\n// IMGUI_API float GetTextLineHeight(); // ~ FontSize\nexport function GetTextLineHeight(): number { return bind.GetTextLineHeight(); }\n// IMGUI_API float GetTextLineHeightWithSpacing(); // ~ FontSize + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of text)\nexport function GetTextLineHeightWithSpacing(): number { return bind.GetTextLineHeightWithSpacing(); }\n// IMGUI_API float GetFrameHeight(); // ~ FontSize + style.FramePadding.y * 2\nexport function GetFrameHeight(): number { return bind.GetFrameHeight(); }\n// IMGUI_API float GetFrameHeightWithSpacing(); // ~ FontSize + style.FramePadding.y * 2 + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of framed widgets)\nexport function GetFrameHeightWithSpacing(): number { return bind.GetFrameHeightWithSpacing(); }\n\n// Columns\n// You can also use SameLine(pos_x) for simplified columns. The columns API is still work-in-progress and rather lacking.\n// IMGUI_API void Columns(int count = 1, const char* id = NULL, bool border = true);\nexport function Columns(count: number = 1, id: string | null = null, border: boolean = true): void {\n id = id || \"\";\n bind.Columns(count, id, border);\n}\n// IMGUI_API void NextColumn(); // next column, defaults to current row or next row if the current row is finished\nexport function NextColumn(): void { bind.NextColumn(); }\n// IMGUI_API int GetColumnIndex(); // get current column index\nexport function GetColumnIndex(): number { return bind.GetColumnIndex(); }\n// IMGUI_API float GetColumnWidth(int column_index = -1); // get column width (in pixels). pass -1 to use current column\nexport function GetColumnWidth(column_index: number = -1): number {\n return bind.GetColumnWidth(column_index);\n}\n// IMGUI_API void SetColumnWidth(int column_index, float width); // set column width (in pixels). pass -1 to use current column\nexport function SetColumnWidth(column_index: number, width: number): void { bind.SetColumnWidth(column_index, width); }\n// IMGUI_API float GetColumnOffset(int column_index = -1); // get position of column line (in pixels, from the left side of the contents region). pass -1 to use current column, otherwise 0..GetColumnsCount() inclusive. column 0 is typically 0.0f\nexport function GetColumnOffset(column_index: number = -1): number {\n return bind.GetColumnOffset(column_index);\n}\n// IMGUI_API void SetColumnOffset(int column_index, float offset_x); // set position of column line (in pixels, from the left side of the contents region). pass -1 to use current column\nexport function SetColumnOffset(column_index: number, offset_x: number): void { bind.SetColumnOffset(column_index, offset_x); }\n// IMGUI_API int GetColumnsCount();\nexport function GetColumnsCount(): number { return bind.GetColumnsCount(); }\n\n// ID scopes\n// If you are creating widgets in a loop you most likely want to push a unique identifier (e.g. object pointer, loop index) so ImGui can differentiate them.\n// You can also use the \"##foobar\" syntax within widget label to distinguish them from each others. Read \"A primer on the use of labels/IDs\" in the FAQ for more details.\n// IMGUI_API void PushID(const char* str_id); // push identifier into the ID stack. IDs are hash of the entire stack!\n// IMGUI_API void PushID(const char* str_id_begin, const char* str_id_end);\n// IMGUI_API void PushID(const void* ptr_id);\n// IMGUI_API void PushID(int int_id);\nexport function PushID(id: string | number): void { bind.PushID(id); }\n// IMGUI_API void PopID();\nexport function PopID(): void { bind.PopID(); }\n// IMGUI_API ImGuiID GetID(const char* str_id); // calculate unique ID (hash of whole ID stack + given parameter). e.g. if you want to query into ImGuiStorage yourself\n// IMGUI_API ImGuiID GetID(const char* str_id_begin, const char* str_id_end);\n// IMGUI_API ImGuiID GetID(const void* ptr_id);\nexport function GetID(id: string | number): Bind.ImGuiID { return bind.GetID(id); }\n\n// Widgets: Text\n// IMGUI_API void TextUnformatted(const char* text, const char* text_end = NULL); // raw text without formatting. Roughly equivalent to Text(\"%s\", text) but: A) doesn't require null terminated string if 'text_end' is specified, B) it's faster, no memory copy is done, no buffer size limits, recommended for long chunks of text.\nexport function TextUnformatted(text: string, text_end: number | null = null): void { bind.TextUnformatted(text_end !== null ? text.substring(0, text_end) : text); }\n// IMGUI_API void Text(const char* fmt, ...) IM_FMTARGS(1); // simple formatted text\n// IMGUI_API void TextV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function Text(fmt: string/*, ...args: any[]*/): void { bind.Text(fmt/*, ...args*/); }\n// IMGUI_API void TextColored(const ImVec4& col, const char* fmt, ...) IM_FMTARGS(2); // shortcut for PushStyleColor(ImGuiCol_Text, col); Text(fmt, ...); PopStyleColor();\n// IMGUI_API void TextColoredV(const ImVec4& col, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function TextColored(col: Readonly | Readonly, fmt: string/*, ...args: any[]*/): void {\n bind.TextColored((col instanceof ImColor) ? col.Value : col as Readonly, fmt/*, ...args*/);\n}\n// IMGUI_API void TextDisabled(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushStyleColor(ImGuiCol_Text, style.Colors[ImGuiCol_TextDisabled]); Text(fmt, ...); PopStyleColor();\n// IMGUI_API void TextDisabledV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function TextDisabled(fmt: string/*, ...args: any[]*/): void { bind.TextDisabled(fmt/*, ...args*/); }\n// IMGUI_API void TextWrapped(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize().\n// IMGUI_API void TextWrappedV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function TextWrapped(fmt: string/*, ...args: any[]*/): void { bind.TextWrapped(fmt/*, ...args*/); }\n// IMGUI_API void LabelText(const char* label, const char* fmt, ...) IM_FMTARGS(2); // display text+label aligned the same way as value+label widgets\n// IMGUI_API void LabelTextV(const char* label, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function LabelText(label: string, fmt: string/*, ...args: any[]*/): void { bind.LabelText(label, fmt/*, ...args*/); }\n// IMGUI_API void BulletText(const char* fmt, ...) IM_FMTARGS(1); // shortcut for Bullet()+Text()\n// IMGUI_API void BulletTextV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function BulletText(fmt: string/*, ...args: any[]*/): void { bind.BulletText(fmt/*, ...args*/); }\n// IMGUI_API void Bullet(); // draw a small circle and keep the cursor on the same line. advance cursor x position by GetTreeNodeToLabelSpacing(), same distance that TreeNode() uses\nexport function Bullet(): void { bind.Bullet(); }\n\n// Widgets: Main\n// IMGUI_API bool Button(const char* label, const ImVec2& size = ImVec2(0,0)); // button\nexport function Button(label: string, size: Readonly = ImVec2.ZERO): boolean {\n return bind.Button(label, size);\n}\n// IMGUI_API bool SmallButton(const char* label); // button with FramePadding=(0,0) to easily embed within text\nexport function SmallButton(label: string): boolean { return bind.SmallButton(label); }\n// IMGUI_API bool ArrowButton(const char* str_id, ImGuiDir dir); // square button with an arrow shape\nexport function ArrowButton(str_id: string, dir: ImGuiDir): boolean { return bind.ArrowButton(str_id, dir); }\n// IMGUI_API bool InvisibleButton(const char* str_id, const ImVec2& size); // button behavior without the visuals, useful to build custom behaviors using the public api (along with IsItemActive, IsItemHovered, etc.)\nexport function InvisibleButton(str_id: string, size: Readonly): boolean {\n return bind.InvisibleButton(str_id, size);\n}\n// IMGUI_API void Image(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0,0), const ImVec2& uv1 = ImVec2(1,1), const ImVec4& tint_col = ImVec4(1,1,1,1), const ImVec4& border_col = ImVec4(0,0,0,0));\nexport function Image(user_texture_id: ImTextureID | null, size: Readonly, uv0: Readonly = ImVec2.ZERO, uv1: Readonly = ImVec2.UNIT, tint_col: Readonly = ImVec4.WHITE, border_col: Readonly = ImVec4.ZERO): void {\n bind.Image(ImGuiContext.setTexture(user_texture_id), size, uv0, uv1, tint_col, border_col);\n}\n// IMGUI_API bool ImageButton(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0,0), const ImVec2& uv1 = ImVec2(1,1), int frame_padding = -1, const ImVec4& bg_col = ImVec4(0,0,0,0), const ImVec4& tint_col = ImVec4(1,1,1,1)); // <0 frame_padding uses default frame padding settings. 0 for no padding\nexport function ImageButton(user_texture_id: ImTextureID | null, size: Readonly, uv0: Readonly = ImVec2.ZERO, uv1: Readonly = ImVec2.UNIT, frame_padding: number = -1, bg_col: Readonly = ImVec4.ZERO, tint_col: Readonly = ImVec4.WHITE): boolean {\n return bind.ImageButton(ImGuiContext.setTexture(user_texture_id), size, uv0, uv1, frame_padding, bg_col, tint_col);\n}\n// IMGUI_API bool Checkbox(const char* label, bool* v);\nexport function Checkbox(label: string, v: Bind.ImScalar | Bind.ImAccess): boolean {\n if (Array.isArray(v)) {\n return bind.Checkbox(label, v);\n } else {\n const ref_v: Bind.ImScalar = [ v() ];\n const ret = bind.Checkbox(label, ref_v);\n v(ref_v[0]);\n return ret;\n }\n}\n// IMGUI_API bool CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value);\nexport function CheckboxFlags(label: string, flags: Bind.ImAccess | Bind.ImScalar, flags_value: number): boolean {\n if (Array.isArray(flags)) {\n return bind.CheckboxFlags(label, flags, flags_value);\n } else {\n const ref_flags: Bind.ImScalar = [ flags() ];\n const ret = bind.CheckboxFlags(label, ref_flags, flags_value);\n flags(ref_flags[0]);\n return ret;\n }\n}\n// IMGUI_API bool RadioButton(const char* label, bool active);\n// IMGUI_API bool RadioButton(const char* label, int* v, int v_button);\nexport function RadioButton(label: string, active: boolean): boolean;\nexport function RadioButton(label: string, v: Bind.ImAccess | Bind.ImScalar, v_button: number): boolean;\nexport function RadioButton(label: string, ...args: any[]): boolean {\n if (typeof(args[0]) === \"boolean\") {\n const active: boolean = args[0];\n return bind.RadioButton_A(label, active);\n } else {\n const v: Bind.ImAccess | Bind.ImScalar = args[0];\n const v_button: number = args[1];\n const _v: Bind.ImScalar = Array.isArray(v) ? v : [ v() ];\n const ret = bind.RadioButton_B(label, _v, v_button);\n if (!Array.isArray(v)) { v(_v[0]); }\n return ret;\n }\n}\n// IMGUI_API void PlotLines(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), int stride = sizeof(float));\n// IMGUI_API void PlotLines(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));\nexport type PlotLinesValueGetter = (data: any, idx: number) => number;\nexport function PlotLines(label: string, values: ArrayLike, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly, stride?: number): void;\nexport function PlotLines(label: string, values_getter: PlotLinesValueGetter, data: any, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly): void;\nexport function PlotLines(label: string, ...args: any[]): void {\n if (Array.isArray(args[0])) {\n const values: ArrayLike = args[0];\n const values_getter: PlotLinesValueGetter = (data: any, idx: number): number => values[idx * stride];\n const values_count: number = typeof(args[1]) === \"number\" ? args[1] : values.length;\n const values_offset: number = typeof(args[2]) === \"number\" ? args[2] : 0;\n const overlay_text: string | null = typeof(args[3]) === \"string\" ? args[3] : null;\n const scale_min: number = typeof(args[4]) === \"number\" ? args[4] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const graph_size: Readonly = args[6] || ImVec2.ZERO;\n const stride: number = typeof(args[7]) === \"number\" ? args[7] : 1;\n bind.PlotLines(label, values_getter, null, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n } else {\n const values_getter: PlotLinesValueGetter = args[0];\n const data: any = args[1];\n const values_count: number = args[2];\n const values_offset: number = typeof(args[3]) === \"number\" ? args[3] : 0;\n const overlay_text: string | null = typeof(args[4]) === \"string\" ? args[4] : null;\n const scale_min: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[6]) === \"number\" ? args[6] : Number.MAX_VALUE;\n const graph_size: Readonly = args[7] || ImVec2.ZERO;\n bind.PlotLines(label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n }\n}\n// IMGUI_API void PlotHistogram(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), int stride = sizeof(float));\n// IMGUI_API void PlotHistogram(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));\nexport type PlotHistogramValueGetter = (data: any, idx: number) => number;\nexport function PlotHistogram(label: string, values: ArrayLike, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly, stride?: number): void;\nexport function PlotHistogram(label: string, values_getter: PlotHistogramValueGetter, data: any, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly): void;\nexport function PlotHistogram(label: string, ...args: any[]): void {\n if (Array.isArray(args[0])) {\n const values: ArrayLike = args[0];\n const values_getter: PlotHistogramValueGetter = (data: any, idx: number): number => values[idx * stride];\n const values_count: number = typeof(args[1]) === \"number\" ? args[1] : values.length;\n const values_offset: number = typeof(args[2]) === \"number\" ? args[2] : 0;\n const overlay_text: string | null = typeof(args[3]) === \"string\" ? args[3] : null;\n const scale_min: number = typeof(args[4]) === \"number\" ? args[4] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const graph_size: Readonly = args[6] || ImVec2.ZERO;\n const stride: number = typeof(args[7]) === \"number\" ? args[7] : 1;\n bind.PlotHistogram(label, values_getter, null, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n } else {\n const values_getter: PlotHistogramValueGetter = args[0];\n const data: any = args[1];\n const values_count: number = args[2];\n const values_offset: number = typeof(args[3]) === \"number\" ? args[3] : 0;\n const overlay_text: string | null = typeof(args[4]) === \"string\" ? args[4] : null;\n const scale_min: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[6]) === \"number\" ? args[6] : Number.MAX_VALUE;\n const graph_size: Readonly = args[7] || ImVec2.ZERO;\n bind.PlotHistogram(label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n }\n}\n// IMGUI_API void ProgressBar(float fraction, const ImVec2& size_arg = ImVec2(-1,0), const char* overlay = NULL);\nexport function ProgressBar(fraction: number, size_arg: Readonly = new ImVec2(-1, 0), overlay: string | null = null): void {\n bind.ProgressBar(fraction, size_arg, overlay);\n}\n\n// Widgets: Combo Box\n// The new BeginCombo()/EndCombo() api allows you to manage your contents and selection state however you want it.\n// The old Combo() api are helpers over BeginCombo()/EndCombo() which are kept available for convenience purpose.\n// IMGUI_API bool BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags = 0);\nexport function BeginCombo(label: string, preview_value: string | null = null, flags: ImGuiComboFlags = 0): boolean {\n return bind.BeginCombo(label, preview_value, flags);\n}\n// IMGUI_API void EndCombo();\nexport function EndCombo(): void { bind.EndCombo(); }\n// IMGUI_API bool Combo(const char* label, int* current_item, const char* const items[], int items_count, int popup_max_height_in_items = -1);\n// IMGUI_API bool Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int popup_max_height_in_items = -1); // Separate items with \\0 within a string, end item-list with \\0\\0. e.g. \"One\\0Two\\0Three\\0\"\n// IMGUI_API bool Combo(const char* label, int* current_item, bool(*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int popup_max_height_in_items = -1);\nexport type ComboValueGetter = (data: any, idx: number, out_text: [string]) => boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items: string[], items_count?: number, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_separated_by_zeros: string, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_getter: ComboValueGetter, data: any, items_count: number, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, ...args: any[]): boolean {\n let ret = false;\n const _current_item: Bind.ImScalar = Array.isArray(current_item) ? current_item : [ current_item() ];\n if (Array.isArray(args[0])) {\n const items: string[] = args[0];\n const items_count = typeof(args[1]) === \"number\" ? args[1] : items.length;\n const popup_max_height_in_items: number = typeof(args[2]) === \"number\" ? args[2] : -1;\n const items_getter = (data: any, idx: number, out_text: [string]): boolean => { out_text[0] = items[idx]; return true; };\n ret = bind.Combo(label, _current_item, items_getter, null, items_count, popup_max_height_in_items);\n } else if (typeof(args[0]) === \"string\") {\n const items_separated_by_zeros: string = args[0]\n const popup_max_height_in_items: number = typeof(args[1]) === \"number\" ? args[1] : -1;\n const items: string[] = items_separated_by_zeros.replace(/^\\0+|\\0+$/g, \"\").split(\"\\0\");\n const items_count: number = items.length;\n const items_getter = (data: any, idx: number, out_text: [string]): boolean => { out_text[0] = items[idx]; return true; };\n ret = bind.Combo(label, _current_item, items_getter, null, items_count, popup_max_height_in_items);\n } else {\n const items_getter: (data: any, idx: number, out_text: [string]) => boolean = args[0];\n const data: any = args[1];\n const items_count = args[2];\n const popup_max_height_in_items: number = typeof(args[3]) === \"number\" ? args[3] : -1;\n ret = bind.Combo(label, _current_item, items_getter, data, items_count, popup_max_height_in_items);\n }\n if (!Array.isArray(current_item)) { current_item(_current_item[0]); }\n return ret;\n}\n\n// Widgets: Drags (tip: ctrl+click on a drag box to input with keyboard. manually input values aren't clamped, can go off-bounds)\n// For all the Float2/Float3/Float4/Int2/Int3/Int4 versions of every functions, note that a 'float v[X]' function argument is the same as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. You can pass address of your first element out of a contiguous set, e.g. &myvector.x\n// IMGUI_API bool DragFloat(const char* label, float* v, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f); // If v_min >= v_max we have no bound\nexport function DragFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string | null = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.DragFloat(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat2(const char* label, float v[2], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | ImVec2, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.DragFloat2(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.DragFloat3(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat4(const char* label, float v[4], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat4(label: string, v: XYZW | Bind.ImTuple4 | ImVec4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.DragFloat4(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", const char* display_format_max = NULL, float power = 1.0f);\nexport function DragFloatRange2(label: string, v_current_min: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_current_max: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", display_format_max: string | null = null, power: number = 1.0): boolean {\n const _v_current_min = import_Scalar(v_current_min);\n const _v_current_max = import_Scalar(v_current_max);\n const ret = bind.DragFloatRange2(label, _v_current_min, _v_current_max, v_speed, v_min, v_max, display_format, display_format_max, power);\n export_Scalar(_v_current_min, v_current_min);\n export_Scalar(_v_current_max, v_current_max);\n return ret;\n}\n// IMGUI_API bool DragInt(const char* label, int* v, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = \"%d\"); // If v_min >= v_max we have no bound\nexport function DragInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.DragInt(label, _v, v_speed, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt2(const char* label, int v[2], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector2(v);\n const ret = bind.DragInt2(label, _v, v_speed, v_min, v_max, format);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt3(const char* label, int v[3], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector3(v);\n const ret = bind.DragInt3(label, _v, v_speed, v_min, v_max, format);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt4(const char* label, int v[4], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt4(label: string, v: XYZW | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector4(v);\n const ret = bind.DragInt4(label, _v, v_speed, v_min, v_max, format);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = \"%.0f\", const char* display_format_max = NULL);\nexport function DragIntRange2(label: string, v_current_min: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_current_max: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\", format_max: string | null = null): boolean {\n const _v_current_min = import_Scalar(v_current_min);\n const _v_current_max = import_Scalar(v_current_max);\n const ret = bind.DragIntRange2(label, _v_current_min, _v_current_max, v_speed, v_min, v_max, format, format_max);\n export_Scalar(_v_current_min, v_current_min);\n export_Scalar(_v_current_max, v_current_max);\n return ret;\n}\n// IMGUI_API bool DragScalar(const char* label, ImGuiDataType data_type, void* v, float v_speed, const void* v_min = NULL, const void* v_max = NULL, const char* format = NULL, float power = 1.0f);\n// IMGUI_API bool DragScalarN(const char* label, ImGuiDataType data_type, void* v, int components, float v_speed, const void* v_min = NULL, const void* v_max = NULL, const char* format = NULL, float power = 1.0f);\nexport function DragScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, v_speed: number, v_min: number | null = null, v_max: number | null = null, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.DragScalar(label, ImGuiDataType.S8, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.DragScalar(label, ImGuiDataType.U8, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.DragScalar(label, ImGuiDataType.S16, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.DragScalar(label, ImGuiDataType.U16, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.DragScalar(label, ImGuiDataType.S32, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.DragScalar(label, ImGuiDataType.U32, v, v_speed, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.DragScalar(label, ImGuiDataType.S64, v, v_speed, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.DragScalar(label, ImGuiDataType.U64, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.DragScalar(label, ImGuiDataType.Float, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.DragScalar(label, ImGuiDataType.Double, v, v_speed, v_min, v_max, format, power); }\n throw new Error();\n}\n\n// Widgets: Input with Keyboard\n// IMGUI_API bool InputText(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputText(label: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputText(label, buf, buf_size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputText(label, ref_buf, _buf_size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputText(label, ref_buf, buf_size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputTextWithHint(const char* label, const char* hint, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputTextWithHint(label: string, hint: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputTextWithHint(label, hint, buf, buf_size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputTextWithHint(label, hint, ref_buf, _buf_size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputTextWithHint(label, hint, ref_buf, buf_size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputTextMultiline(const char* label, char* buf, size_t buf_size, const ImVec2& size = ImVec2(0,0), ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputTextMultiline(label: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, size: Readonly = ImVec2.ZERO, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputTextMultiline(label, buf, buf_size, size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputTextMultiline(label, ref_buf, _buf_size, size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputTextMultiline(label, ref_buf, buf_size, size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputFloat(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 0.0, step_fast: number = 0.0, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputFloat(label, _v, step, step_fast, format, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat2(const char* label, float v[2], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.InputFloat2(label, _v, format, extra_flags);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat3(const char* label, float v[3], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.InputFloat3(label, _v, format, extra_flags);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat4(const char* label, float v[4], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat4(label: string, v: XYZW | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.InputFloat4(label, _v, format, extra_flags);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt(const char* label, int* v, int step = 1, int step_fast = 100, ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 1, step_fast: number = 100, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputInt(label, _v, step, step_fast, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt2(const char* label, int v[2], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.InputInt2(label, _v, extra_flags);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt3(const char* label, int v[3], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.InputInt3(label, _v, extra_flags);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt4(const char* label, int v[4], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt4(label: string, v: XYZW | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.InputInt4(label, _v, extra_flags);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool InputDouble(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = \"%.6f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputDouble(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 0.0, step_fast: number = 0.0, format: string = \"%.6f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputDouble(label, _v, step, step_fast, format, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputScalar(const char* label, ImGuiDataType data_type, void* v, const void* step = NULL, const void* step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags extra_flags = 0);\n// IMGUI_API bool InputScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* step = NULL, const void* step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags extra_flags = 0);\nexport function InputScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, step: number | null = null, step_fast: number | null = null, format: string | null = null, extra_flags: ImGuiInputTextFlags = 0): boolean {\n if (v instanceof Int8Array) { return bind.InputScalar(label, ImGuiDataType.S8, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint8Array) { return bind.InputScalar(label, ImGuiDataType.U8, v, step, step_fast, format, extra_flags); }\n if (v instanceof Int16Array) { return bind.InputScalar(label, ImGuiDataType.S16, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint16Array) { return bind.InputScalar(label, ImGuiDataType.U16, v, step, step_fast, format, extra_flags); }\n if (v instanceof Int32Array) { return bind.InputScalar(label, ImGuiDataType.S32, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint32Array) { return bind.InputScalar(label, ImGuiDataType.U32, v, step, step_fast, format, extra_flags); }\n // if (v instanceof Int64Array) { return bind.InputScalar(label, ImGuiDataType.S64, v, step, step_fast, format, extra_flags); }\n // if (v instanceof Uint64Array) { return bind.InputScalar(label, ImGuiDataType.U64, v, step, step_fast, format, extra_flags); }\n if (v instanceof Float32Array) { return bind.InputScalar(label, ImGuiDataType.Float, v, step, step_fast, format, extra_flags); }\n if (v instanceof Float64Array) { return bind.InputScalar(label, ImGuiDataType.Double, v, step, step_fast, format, extra_flags); }\n throw new Error();\n}\n\n// Widgets: Sliders (tip: ctrl+click on a slider to input with keyboard. manually input values aren't clamped, can go off-bounds)\n// IMGUI_API bool SliderFloat(const char* label, float* v, float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f); // adjust format to decorate the value with a prefix or a suffix for in-slider labels or unit display. Use power!=1.0 for logarithmic sliders\nexport function SliderFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.SliderFloat(label, _v, v_min, v_max, format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec2, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.SliderFloat2(label, _v, v_min, v_max, format, power);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.SliderFloat3(label, _v, v_min, v_max, format, power);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat4(label: string, v: XYZW | Bind.ImTuple4 | XYZW, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.SliderFloat4(label, _v, v_min, v_max, format, power);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderAngle(const char* label, float* v_rad, float v_degrees_min = -360.0f, float v_degrees_max = +360.0f);\nexport function SliderAngle(label: string, v_rad: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_degrees_min: number = -360.0, v_degrees_max: number = +360.0): boolean {\n const _v_rad = import_Scalar(v_rad);\n const ret = bind.SliderAngle(label, _v_rad, v_degrees_min, v_degrees_max);\n export_Scalar(_v_rad, v_rad);\n return ret;\n}\nexport function SliderAngle3(label: string, v_rad: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_degrees_min: number = -360.0, v_degrees_max: number = +360.0): boolean {\n const _v_rad = import_Vector3(v_rad);\n _v_rad[0] = Math.floor(_v_rad[0] * 180 / Math.PI);\n _v_rad[1] = Math.floor(_v_rad[1] * 180 / Math.PI);\n _v_rad[2] = Math.floor(_v_rad[2] * 180 / Math.PI);\n const ret = bind.SliderInt3(label, _v_rad, v_degrees_min, v_degrees_max, \"%d deg\");\n _v_rad[0] = _v_rad[0] * Math.PI / 180;\n _v_rad[1] = _v_rad[1] * Math.PI / 180;\n _v_rad[2] = _v_rad[2] * Math.PI / 180;\n export_Vector3(_v_rad, v_rad);\n return ret;\n}\n// IMGUI_API bool SliderInt(const char* label, int* v, int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.SliderInt(label, _v, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector2(v);\n const ret = bind.SliderInt2(label, _v, v_min, v_max, format);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt3(const char* label, int v[3], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector3(v);\n const ret = bind.SliderInt3(label, _v, v_min, v_max, format);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt4(const char* label, int v[4], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt4(label: string, v: XYZW | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector4(v);\n const ret = bind.SliderInt4(label, _v, v_min, v_max, format);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderScalar(const char* label, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\n// IMGUI_API bool SliderScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\nexport function SliderScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, v_min: number, v_max: number, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.SliderScalar(label, ImGuiDataType.S8, v, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.SliderScalar(label, ImGuiDataType.U8, v, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.SliderScalar(label, ImGuiDataType.S16, v, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.SliderScalar(label, ImGuiDataType.U16, v, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.SliderScalar(label, ImGuiDataType.S32, v, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.SliderScalar(label, ImGuiDataType.U32, v, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.SliderScalar(label, ImGuiDataType.S64, v, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.SliderScalar(label, ImGuiDataType.U64, v, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.SliderScalar(label, ImGuiDataType.Float, v, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.SliderScalar(label, ImGuiDataType.Double, v, v_min, v_max, format, power); }\n throw new Error();\n}\n// IMGUI_API bool VSliderFloat(const char* label, const ImVec2& size, float* v, float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function VSliderFloat(label: string, size: Readonly, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.VSliderFloat(label, size, _v, v_min, v_max, format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, const char* format = \"%d\");\nexport function VSliderInt(label: string, size: Readonly, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.VSliderInt(label, size, _v, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool VSliderScalar(const char* label, const ImVec2& size, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\nexport function VSliderScalar(label: string, size: Readonly, data_type: ImGuiDataType, v: Bind.ImAccess | Bind.ImScalar, v_min: number, v_max: number, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S8, v, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U8, v, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S16, v, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U16, v, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S32, v, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U32, v, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S64, v, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U64, v, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.Float, v, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.Double, v, v_min, v_max, format, power); }\n throw new Error();\n}\n\n// Widgets: Color Editor/Picker (tip: the ColorEdit* functions have a little colored preview square that can be left-clicked to open a picker, and right-clicked to open an option menu.)\n// Note that a 'float v[X]' function argument is the same as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. You can the pass the address of a first float element out of a contiguous structure, e.g. &myvector.x\n// IMGUI_API bool ColorEdit3(const char* label, float col[3], ImGuiColorEditFlags flags = 0);\nexport function ColorEdit3(label: string, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color3(col);\n const ret = bind.ColorEdit3(label, _col, flags);\n export_Color3(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags = 0);\nexport function ColorEdit4(label: string, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color4(col);\n const ret = bind.ColorEdit4(label, _col, flags);\n export_Color4(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorPicker3(const char* label, float col[3], ImGuiColorEditFlags flags = 0);\nexport function ColorPicker3(label: string, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color3(col);\n const ret = bind.ColorPicker3(label, _col, flags);\n export_Color3(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags flags = 0, const float* ref_col = NULL);\nexport function ColorPicker4(label: string, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0, ref_col: Bind.ImTuple4 | Bind.interface_ImVec4 | null = null): boolean {\n const _col = import_Color4(col);\n const _ref_col = ref_col ? import_Color4(ref_col) : null;\n const ret = bind.ColorPicker4(label, _col, flags, _ref_col);\n export_Color4(_col, col);\n if (_ref_col && ref_col) { export_Color4(_ref_col, ref_col); }\n return ret;\n}\n// IMGUI_API bool ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFlags flags = 0, ImVec2 size = ImVec2(0,0)); // display a colored square/button, hover for details, return true when pressed.\nexport function ColorButton(desc_id: string, col: Readonly, flags: ImGuiColorEditFlags = 0, size: Readonly = ImVec2.ZERO): boolean {\n return bind.ColorButton(desc_id, col, flags, size);\n}\n// IMGUI_API void SetColorEditOptions(ImGuiColorEditFlags flags); // initialize current options (generally on application startup) if you want to select a default format, picker type, etc. User will be able to change many settings, unless you pass the _NoOptions flag to your calls.\nexport function SetColorEditOptions(flags: ImGuiColorEditFlags): void {\n bind.SetColorEditOptions(flags);\n}\n\n// Widgets: Trees\n// IMGUI_API bool TreeNode(const char* label); // if returning 'true' the node is open and the tree id is pushed into the id stack. user is responsible for calling TreePop().\n// IMGUI_API bool TreeNode(const char* str_id, const char* fmt, ...) IM_FMTARGS(2); // read the FAQ about why and how to use ID. to align arbitrary text at the same level as a TreeNode() you can use Bullet().\n// IMGUI_API bool TreeNode(const void* ptr_id, const char* fmt, ...) IM_FMTARGS(2); // \"\n// IMGUI_API bool TreeNodeV(const char* str_id, const char* fmt, va_list args) IM_FMTLIST(2);\n// IMGUI_API bool TreeNodeV(const void* ptr_id, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function TreeNode(label: string): boolean;\nexport function TreeNode(label: string, fmt: string): boolean;\nexport function TreeNode(label: number, fmt: string): boolean;\nexport function TreeNode(...args: any[]): boolean {\n if (typeof(args[0]) === \"string\") {\n if (args.length === 1) {\n const label: string = args[0];\n return bind.TreeNode_A(label);\n } else {\n const str_id: string = args[0];\n const fmt: string = args[1];\n return bind.TreeNode_B(str_id, fmt);\n }\n } else {\n const ptr_id: number = args[0];\n const fmt: string = args[1];\n return bind.TreeNode_C(ptr_id, fmt);\n }\n}\n// IMGUI_API bool TreeNodeEx(const char* label, ImGuiTreeNodeFlags flags = 0);\n// IMGUI_API bool TreeNodeEx(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3);\n// IMGUI_API bool TreeNodeEx(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3);\n// IMGUI_API bool TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3);\n// IMGUI_API bool TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3);\nexport function TreeNodeEx(label: string, flags?: ImGuiTreeNodeFlags): boolean;\nexport function TreeNodeEx(str_id: string, flags: ImGuiTreeNodeFlags, fmt: string): boolean;\nexport function TreeNodeEx(ptr_id: number, flags: ImGuiTreeNodeFlags, fmt: string): boolean;\nexport function TreeNodeEx(...args: any[]): boolean {\n if (typeof(args[0]) === \"string\") {\n if (args.length < 3) {\n const label: string = args[0];\n const flags: ImGuiTreeNodeFlags = args[1] || 0;\n return bind.TreeNodeEx_A(label, flags);\n } else {\n const str_id: string = args[0];\n const flags: ImGuiTreeNodeFlags = args[1];\n const fmt: string = args[2];\n return bind.TreeNodeEx_B(str_id, flags, fmt);\n }\n } else {\n const ptr_id: number = args[0];\n const flags: ImGuiTreeNodeFlags = args[1];\n const fmt: string = args[2];\n return bind.TreeNodeEx_C(ptr_id, flags, fmt);\n }\n}\n// IMGUI_API void TreePush(const char* str_id); // ~ Indent()+PushId(). Already called by TreeNode() when returning true, but you can call Push/Pop yourself for layout purpose\n// IMGUI_API void TreePush(const void* ptr_id = NULL); // \"\nexport function TreePush(str_id: string): void;\nexport function TreePush(ptr_id: number): void;\nexport function TreePush(...args: any[]): void {\n if (typeof(args[0]) === \"string\") {\n const str_id: string = args[0];\n bind.TreePush_A(str_id);\n } else {\n const ptr_id: number = args[0];\n bind.TreePush_B(ptr_id);\n }\n}\n// IMGUI_API void TreePop(); // ~ Unindent()+PopId()\nexport function TreePop(): void { bind.TreePop(); }\n// IMGUI_API void TreeAdvanceToLabelPos(); // advance cursor x position by GetTreeNodeToLabelSpacing()\nexport function TreeAdvanceToLabelPos(): void { bind.TreeAdvanceToLabelPos(); }\n// IMGUI_API float GetTreeNodeToLabelSpacing(); // horizontal distance preceding label when using TreeNode*() or Bullet() == (g.FontSize + style.FramePadding.x*2) for a regular unframed TreeNode\nexport function GetTreeNodeToLabelSpacing(): number { return bind.GetTreeNodeToLabelSpacing(); }\n// IMGUI_API bool CollapsingHeader(const char* label, ImGuiTreeNodeFlags flags = 0); // if returning 'true' the header is open. doesn't indent nor push on ID stack. user doesn't have to call TreePop().\n// IMGUI_API bool CollapsingHeader(const char* label, bool* p_open, ImGuiTreeNodeFlags flags = 0); // when 'p_open' isn't NULL, display an additional small close button on upper right of the header\nexport function CollapsingHeader(label: string, flags?: ImGuiTreeNodeFlags): boolean;\nexport function CollapsingHeader(label: string, p_open: Bind.ImScalar | Bind.ImAccess, flags?: ImGuiTreeNodeFlags): boolean;\nexport function CollapsingHeader(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.CollapsingHeader_A(label, 0);\n } else {\n if (typeof(args[0]) === \"number\") {\n const flags: ImGuiTreeNodeFlags = args[0];\n return bind.CollapsingHeader_A(label, flags);\n } else {\n const p_open: Bind.ImScalar | Bind.ImAccess = args[0];\n const flags: ImGuiTreeNodeFlags = args[1] || 0;\n const ref_open: Bind.ImScalar = Array.isArray(p_open) ? p_open : [ p_open() ];\n const ret = bind.CollapsingHeader_B(label, ref_open, flags);\n if (!Array.isArray(p_open)) { p_open(ref_open[0]); }\n return ret;\n }\n }\n}\n// IMGUI_API void SetNextItemOpen(bool is_open, ImGuiCond cond = 0); // set next TreeNode/CollapsingHeader open state.\nexport function SetNextItemOpen(is_open: boolean, cond: ImGuiCond = 0): void {\n bind.SetNextItemOpen(is_open, cond);\n}\n\n// Widgets: Selectable / Lists\n// IMGUI_API bool Selectable(const char* label, bool selected = false, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0,0)); // size.x==0.0: use remaining width, size.x>0.0: specify width. size.y==0.0: use label height, size.y>0.0: specify height\n// IMGUI_API bool Selectable(const char* label, bool* p_selected, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0,0));\nexport function Selectable(label: string, selected?: boolean, flags?: ImGuiSelectableFlags, size?: Readonly): boolean;\nexport function Selectable(label: string, p_selected: Bind.ImScalar | Bind.ImAccess, flags?: ImGuiSelectableFlags, size?: Readonly): boolean;\nexport function Selectable(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.Selectable_A(label, false, 0, ImVec2.ZERO);\n } else {\n if (typeof(args[0]) === \"boolean\") {\n const selected: boolean = args[0];\n const flags: ImGuiSelectableFlags = args[1] || 0;\n const size: Readonly = args[2] || ImVec2.ZERO;\n return bind.Selectable_A(label, selected, flags, size);\n } else {\n const p_selected: Bind.ImScalar | Bind.ImAccess = args[0];\n const flags: ImGuiSelectableFlags = args[1] || 0;\n const size: Readonly = args[2] || ImVec2.ZERO;\n const ref_selected: Bind.ImScalar = Array.isArray(p_selected) ? p_selected : [ p_selected() ];\n const ret = bind.Selectable_B(label, ref_selected, flags, size);\n if (!Array.isArray(p_selected)) { p_selected(ref_selected[0]); }\n return ret;\n }\n }\n}\n// IMGUI_API bool ListBox(const char* label, int* current_item, const char* const* items, int items_count, int height_in_items = -1);\n// IMGUI_API bool ListBox(const char* label, int* current_item, bool (*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int height_in_items = -1);\nexport type ListBoxItemGetter = (data: any, idx: number, out_text: [string]) => boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items: string[], items_count?: number, height_in_items?: number): boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_getter: ListBoxItemGetter, data: any, items_count: number, height_in_items?: number): boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, ...args: any[]): boolean {\n let ret: boolean = false;\n const _current_item: Bind.ImScalar = Array.isArray(current_item) ? current_item : [ current_item() ];\n if (Array.isArray(args[0])) {\n const items: string[] = args[0];\n const items_count: number = typeof(args[1]) === \"number\" ? args[1] : items.length;\n const height_in_items: number = typeof(args[2]) === \"number\" ? args[2] : -1;\n ret = bind.ListBox_A(label, _current_item, items, items_count, height_in_items);\n } else {\n const items_getter: ListBoxItemGetter = args[0];\n const data: any = args[1];\n const items_count: number = args[2];\n const height_in_items: number = typeof(args[3]) === \"number\" ? args[3] : -1;\n ret = bind.ListBox_B(label, _current_item, items_getter, data, items_count, height_in_items);\n }\n if (!Array.isArray(current_item)) { current_item(_current_item[0]); }\n return ret;\n}\n// IMGUI_API bool ListBoxHeader(const char* label, const ImVec2& size = ImVec2(0,0)); // use if you want to reimplement ListBox() will custom data or interactions. make sure to call ListBoxFooter() afterwards.\n// IMGUI_API bool ListBoxHeader(const char* label, int items_count, int height_in_items = -1); // \"\nexport function ListBoxHeader(label: string, size: Readonly): boolean;\nexport function ListBoxHeader(label: string, items_count: number, height_in_items?: number): boolean;\nexport function ListBoxHeader(label: string, ...args: any[]): boolean {\n if (typeof(args[0]) === \"object\") {\n const size: Readonly = args[0];\n return bind.ListBoxHeader_A(label, size);\n } else {\n const items_count: number = args[0];\n const height_in_items: number = typeof(args[1]) === \"number\" ? args[1] : -1;\n return bind.ListBoxHeader_B(label, items_count, height_in_items);\n }\n}\n// IMGUI_API void ListBoxFooter(); // terminate the scrolling region\nexport function ListBoxFooter(): void {\n bind.ListBoxFooter();\n}\n\n// Widgets: Value() Helpers. Output single value in \"name: value\" format (tip: freely declare more in your code to handle your types. you can add functions to the ImGui namespace)\n// IMGUI_API void Value(const char* prefix, bool b);\n// IMGUI_API void Value(const char* prefix, int v);\n// IMGUI_API void Value(const char* prefix, unsigned int v);\n// IMGUI_API void Value(const char* prefix, float v, const char* float_format = NULL);\nexport function Value(prefix: string, b: boolean): void;\nexport function Value(prefix: string, v: number): void;\nexport function Value(prefix: string, v: number, float_format?: string | null): void;\nexport function Value(prefix: string, v: any): void;\nexport function Value(prefix: string, ...args: any[]): void {\n if (typeof(args[0]) === \"boolean\") {\n bind.Value_A(prefix, args[0]);\n } else if (typeof(args[0]) === \"number\") {\n if (Number.isInteger(args[0])) {\n bind.Value_B(prefix, args[0]);\n } else {\n bind.Value_D(prefix, args[0], typeof(args[1]) === \"string\" ? args[1] : null);\n }\n } else {\n bind.Text(prefix + String(args[0]));\n }\n}\n\n// Tooltips\n// IMGUI_API void BeginTooltip(); // begin/append a tooltip window. to create full-featured tooltip (with any kind of contents).\nexport function BeginTooltip(): void { bind.BeginTooltip(); }\n// IMGUI_API void EndTooltip();\nexport function EndTooltip(): void { bind.EndTooltip(); }\n// IMGUI_API void SetTooltip(const char* fmt, ...) IM_FMTARGS(1); // set text tooltip under mouse-cursor, typically use with ImGui::IsItemHovered(). overidde any previous call to SetTooltip().\n// IMGUI_API void SetTooltipV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function SetTooltip(fmt: string): void {\n bind.SetTooltip(fmt);\n}\n\n// Menus\n// IMGUI_API bool BeginMainMenuBar(); // create and append to a full screen menu-bar. only call EndMainMenuBar() if this returns true!\nexport function BeginMainMenuBar(): boolean { return bind.BeginMainMenuBar(); }\n// IMGUI_API void EndMainMenuBar();\nexport function EndMainMenuBar(): void { bind.EndMainMenuBar(); }\n// IMGUI_API bool BeginMenuBar(); // append to menu-bar of current window (requires ImGuiWindowFlags_MenuBar flag set on parent window). only call EndMenuBar() if this returns true!\nexport function BeginMenuBar(): boolean { return bind.BeginMenuBar(); }\n// IMGUI_API void EndMenuBar();\nexport function EndMenuBar(): void { bind.EndMenuBar(); }\n// IMGUI_API bool BeginMenu(const char* label, bool enabled = true); // create a sub-menu entry. only call EndMenu() if this returns true!\nexport function BeginMenu(label: string, enabled: boolean = true): boolean { return bind.BeginMenu(label, enabled); }\n// IMGUI_API void EndMenu();\nexport function EndMenu(): void { bind.EndMenu(); }\n// IMGUI_API bool MenuItem(const char* label, const char* shortcut = NULL, bool selected = false, bool enabled = true); // return true when activated. shortcuts are displayed for convenience but not processed by ImGui at the moment\n// IMGUI_API bool MenuItem(const char* label, const char* shortcut, bool* p_selected, bool enabled = true); // return true when activated + toggle (*p_selected) if p_selected != NULL\nexport function MenuItem(label: string, shortcut?: string | null, selected?: boolean, enabled?: boolean): boolean;\nexport function MenuItem(label: string, shortcut: string | null, p_selected: Bind.ImScalar | Bind.ImAccess | null, enabled?: boolean): boolean;\nexport function MenuItem(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.MenuItem_A(label, null, false, true);\n } else if (args.length === 1) {\n const shortcut: string | null = args[0];\n return bind.MenuItem_A(label, shortcut, false, true);\n } else {\n const shortcut: string | null = args[0];\n if (typeof(args[1]) === \"boolean\") {\n const selected: boolean = args[1];\n const enabled: boolean = typeof(args[2]) === \"boolean\" ? args[2] : true;\n return bind.MenuItem_A(label, shortcut, selected, enabled);\n } else {\n const p_selected: Bind.ImScalar | Bind.ImAccess = args[1];\n const enabled: boolean = typeof(args[2]) === \"boolean\" ? args[2] : true;\n const ref_selected: Bind.ImScalar = Array.isArray(p_selected) ? p_selected : [ p_selected() ];\n const ret = bind.MenuItem_B(label, shortcut, ref_selected, enabled);\n if (!Array.isArray(p_selected)) { p_selected(ref_selected[0]); }\n return ret;\n }\n }\n}\n\n// Popups\n// IMGUI_API void OpenPopup(const char* str_id); // call to mark popup as open (don't call every frame!). popups are closed when user click outside, or if CloseCurrentPopup() is called within a BeginPopup()/EndPopup() block. By default, Selectable()/MenuItem() are calling CloseCurrentPopup(). Popup identifiers are relative to the current ID-stack (so OpenPopup and BeginPopup needs to be at the same level).\nexport function OpenPopup(str_id: string): void { bind.OpenPopup(str_id); }\n// IMGUI_API bool OpenPopupOnItemClick(const char* str_id = NULL, int mouse_button = 1); // helper to open popup when clicked on last item. return true when just opened.\nexport function OpenPopupOnItemClick(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.OpenPopupOnItemClick(str_id, mouse_button);\n}\n// IMGUI_API bool BeginPopup(const char* str_id); // return true if the popup is open, and you can start outputting to it. only call EndPopup() if BeginPopup() returned true!\nexport function BeginPopup(str_id: string): boolean { return bind.BeginPopup(str_id); }\n// IMGUI_API bool BeginPopupModal(const char* name, bool* p_open = NULL, ImGuiWindowFlags extra_flags = 0); // modal dialog (block interactions behind the modal window, can't close the modal window by clicking outside)\nexport function BeginPopupModal(str_id: string = \"\", p_open: Bind.ImScalar | Bind.ImAccess | null = null, extra_flags: ImGuiWindowFlags = 0): boolean {\n if (Array.isArray(p_open)) {\n return bind.BeginPopupModal(str_id, p_open, extra_flags);\n } else if (typeof(p_open) === \"function\") {\n const _p_open: Bind.ImScalar = [ p_open() ];\n const ret = bind.BeginPopupModal(str_id, _p_open, extra_flags);\n p_open(_p_open[0]);\n return ret;\n } else {\n return bind.BeginPopupModal(str_id, null, extra_flags);\n }\n}\n// IMGUI_API bool BeginPopupContextItem(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked on last item. if you can pass a NULL str_id only if the previous item had an id. If you want to use that on a non-interactive item such as Text() you need to pass in an explicit ID here. read comments in .cpp!\nexport function BeginPopupContextItem(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.BeginPopupContextItem(str_id, mouse_button);\n}\n// IMGUI_API bool BeginPopupContextWindow(const char* str_id = NULL, int mouse_button = 1, bool also_over_items = true); // helper to open and begin popup when clicked on current window.\nexport function BeginPopupContextWindow(str_id: string | null = null, mouse_button: number = 1, also_over_items: boolean = true): boolean {\n return bind.BeginPopupContextWindow(str_id, mouse_button, also_over_items);\n}\n// IMGUI_API bool BeginPopupContextVoid(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked in void (where there are no imgui windows).\nexport function BeginPopupContextVoid(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.BeginPopupContextVoid(str_id, mouse_button);\n}\n// IMGUI_API void EndPopup();\nexport function EndPopup(): void { bind.EndPopup(); }\n// IMGUI_API bool IsPopupOpen(const char* str_id); // return true if the popup is open\nexport function IsPopupOpen(str_id: string): boolean { return bind.IsPopupOpen(str_id); }\n// IMGUI_API void CloseCurrentPopup(); // close the popup we have begin-ed into. clicking on a MenuItem or Selectable automatically close the current popup.\nexport function CloseCurrentPopup(): void { bind.CloseCurrentPopup(); }\n\n// Tab Bars, Tabs\n// [BETA API] API may evolve!\n// IMGUI_API bool BeginTabBar(const char* str_id, ImGuiTabBarFlags flags = 0); // create and append into a TabBar\nexport function BeginTabBar(str_id: string, flags: ImGuiTabBarFlags = 0): boolean { return bind.BeginTabBar(str_id, flags); }\n// IMGUI_API void EndTabBar(); // only call EndTabBar() if BeginTabBar() returns true!\nexport function EndTabBar(): void { bind.EndTabBar(); }\n// IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags flags = 0);// create a Tab. Returns true if the Tab is selected.\nexport function BeginTabItem(label: string, p_open: Bind.ImScalar | Bind.ImAccess | null = null, flags: ImGuiTabItemFlags = 0): boolean {\n // return bind.BeginTabItem(label, p_open, flags);\n if (p_open === null) {\n return bind.BeginTabItem(label, null, flags);\n } else if (Array.isArray(p_open)) {\n return bind.BeginTabItem(label, p_open, flags);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n const ret = bind.BeginTabItem(label, ref_open, flags);\n p_open(ref_open[0]);\n return ret;\n }\n}\n// IMGUI_API void EndTabItem(); // only call EndTabItem() if BeginTabItem() returns true!\nexport function EndTabItem(): void { bind.EndTabItem(); }\n// IMGUI_API void SetTabItemClosed(const char* tab_or_docked_window_label); // notify TabBar or Docking system of a closed tab/window ahead (useful to reduce visual flicker on reorderable tab bars). For tab-bar: call after BeginTabBar() and before Tab submissions. Otherwise call with a window name.\nexport function SetTabItemClosed(tab_or_docked_window_label: string): void { bind.SetTabItemClosed(tab_or_docked_window_label); }\n\n// Logging/Capture: all text output from interface is captured to tty/file/clipboard. By default, tree nodes are automatically opened during logging.\n// IMGUI_API void LogToTTY(int max_depth = -1); // start logging to tty\nexport function LogToTTY(max_depth: number = -1): void {\n bind.LogToTTY(max_depth);\n}\n// IMGUI_API void LogToFile(int max_depth = -1, const char* filename = NULL); // start logging to file\nexport function LogToFile(max_depth: number = -1, filename: string | null = null): void {\n bind.LogToFile(max_depth, filename);\n}\n// IMGUI_API void LogToClipboard(int max_depth = -1); // start logging to OS clipboard\nexport function LogToClipboard(max_depth: number = -1): void {\n bind.LogToClipboard(max_depth);\n}\n// IMGUI_API void LogFinish(); // stop logging (close file, etc.)\nexport function LogFinish(): void { bind.LogFinish(); }\n// IMGUI_API void LogButtons(); // helper to display buttons for logging to tty/file/clipboard\nexport function LogButtons(): void { bind.LogButtons(); }\n// IMGUI_API void LogText(const char* fmt, ...) IM_FMTARGS(1); // pass text data straight to log (without being displayed)\nexport function LogText(fmt: string): void {\n bind.LogText(fmt);\n}\n\nconst _ImGui_DragDropPayload_data: {[key: string]: any} = {};\n// Drag and Drop\n// [BETA API] Missing Demo code. API may evolve.\n// IMGUI_API bool BeginDragDropSource(ImGuiDragDropFlags flags = 0); // call when the current item is active. If this return true, you can call SetDragDropPayload() + EndDragDropSource()\nexport function BeginDragDropSource(flags: ImGuiDragDropFlags = 0): boolean {\n return bind.BeginDragDropSource(flags);\n}\n// IMGUI_API bool SetDragDropPayload(const char* type, const void* data, size_t size, ImGuiCond cond = 0);// type is a user defined string of maximum 8 characters. Strings starting with '_' are reserved for dear imgui internal types. Data is copied and held by imgui.\nexport function SetDragDropPayload(type: string, data: T, cond: ImGuiCond = 0): boolean {\n _ImGui_DragDropPayload_data[type] = data;\n return bind.SetDragDropPayload(type, data, 0, cond);\n}\n// IMGUI_API void EndDragDropSource();\nexport function EndDragDropSource(): void {\n bind.EndDragDropSource();\n}\n// IMGUI_API bool BeginDragDropTarget(); // call after submitting an item that may receive an item. If this returns true, you can call AcceptDragDropPayload() + EndDragDropTarget()\nexport function BeginDragDropTarget(): boolean {\n return bind.BeginDragDropTarget();\n}\n// IMGUI_API const ImGuiPayload* AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags = 0); // accept contents of a given type. If ImGuiDragDropFlags_AcceptBeforeDelivery is set you can peek into the payload before the mouse button is released.\nexport function AcceptDragDropPayload(type: string, flags: ImGuiDragDropFlags = 0): ImGuiPayload | null {\n const data: T = _ImGui_DragDropPayload_data[type];\n return bind.AcceptDragDropPayload(type, flags) ? { Data: data } : null;\n}\n// IMGUI_API void EndDragDropTarget();\nexport function EndDragDropTarget(): void {\n bind.EndDragDropTarget();\n}\n\n// Clipping\n// IMGUI_API void PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect);\nexport function PushClipRect(clip_rect_min: Readonly, clip_rect_max: Readonly, intersect_with_current_clip_rect: boolean): void {\n bind.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect);\n}\n// IMGUI_API void PopClipRect();\nexport function PopClipRect(): void {\n bind.PopClipRect();\n}\n\n// Focus\n// (FIXME: Those functions will be reworked after we merge the navigation branch + have a pass at focusing/tabbing features.)\n// (Prefer using \"SetItemDefaultFocus()\" over \"if (IsWindowAppearing()) SetScrollHere()\" when applicable, to make your code more forward compatible when navigation branch is merged)\n// IMGUI_API void SetItemDefaultFocus(); // make last item the default focused item of a window (WIP navigation branch only). Pleaase use instead of SetScrollHere().\nexport function SetItemDefaultFocus(): void { bind.SetItemDefaultFocus(); }\n// IMGUI_API void SetKeyboardFocusHere(int offset = 0); // focus keyboard on the next widget. Use positive 'offset' to access sub components of a multiple component widget. Use -1 to access previous widget.\nexport function SetKeyboardFocusHere(offset: number = 0): void {\n bind.SetKeyboardFocusHere(offset);\n}\n\n// Utilities\n// IMGUI_API bool IsItemHovered(ImGuiHoveredFlags flags = 0); // is the last item hovered? (and usable, aka not blocked by a popup, etc.). See ImGuiHoveredFlags for more options.\nexport function IsItemHovered(flags: ImGuiHoveredFlags = 0): boolean {\n return bind.IsItemHovered(flags);\n}\n// IMGUI_API bool IsItemActive(); // is the last item active? (e.g. button being held, text field being edited- items that don't interact will always return false)\nexport function IsItemActive(): boolean { return bind.IsItemActive(); }\n// IMGUI_API bool IsItemEdited(); // is the last item active? (e.g. button being held, text field being edited- items that don't interact will always return false)\nexport function IsItemEdited(): boolean { return bind.IsItemEdited(); }\n// IMGUI_API bool IsItemFocused(); // is the last item focused for keyboard/gamepad navigation?\nexport function IsItemFocused(): boolean { return bind.IsItemFocused(); }\n// IMGUI_API bool IsItemClicked(int mouse_button = 0); // is the last item clicked? (e.g. button/node just clicked on)\nexport function IsItemClicked(mouse_button: number = 0): boolean {\n return bind.IsItemClicked(mouse_button);\n}\n// IMGUI_API bool IsItemVisible(); // is the last item visible? (aka not out of sight due to clipping/scrolling.)\nexport function IsItemVisible(): boolean { return bind.IsItemVisible(); }\n// IMGUI_API bool IsItemActivated(); // was the last item just made active (item was previously inactive).\nexport function IsItemActivated(): boolean { return bind.IsItemActivated(); }\n// IMGUI_API bool IsItemDeactivated(); // was the last item just made inactive (item was previously active). Useful for Undo/Redo patterns with widgets that requires continuous editing.\nexport function IsItemDeactivated(): boolean { return bind.IsItemDeactivated(); }\n// IMGUI_API bool IsItemDeactivatedAfterEdit(); // was the last item just made inactive and made a value change when it was active? (e.g. Slider/Drag moved). Useful for Undo/Redo patterns with widgets that requires continuous editing. Note that you may get false positives (some widgets such as Combo()/ListBox()/Selectable() will return true even when clicking an already selected item).\nexport function IsItemDeactivatedAfterEdit(): boolean { return bind.IsItemDeactivatedAfterEdit(); }\n// IMGUI_API bool IsAnyItemHovered();\nexport function IsAnyItemHovered(): boolean { return bind.IsAnyItemHovered(); }\n// IMGUI_API bool IsAnyItemActive();\nexport function IsAnyItemActive(): boolean { return bind.IsAnyItemActive(); }\n// IMGUI_API bool IsAnyItemFocused();\nexport function IsAnyItemFocused(): boolean { return bind.IsAnyItemFocused(); }\n// IMGUI_API ImVec2 GetItemRectMin(); // get bounding rectangle of last item, in screen space\nexport function GetItemRectMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectMin(out);\n}\n// IMGUI_API ImVec2 GetItemRectMax(); // \"\nexport function GetItemRectMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectMax(out);\n}\n// IMGUI_API ImVec2 GetItemRectSize(); // get size of last item, in screen space\nexport function GetItemRectSize(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectSize(out);\n}\n// IMGUI_API void SetItemAllowOverlap(); // allow last item to be overlapped by a subsequent item. sometimes useful with invisible buttons, selectables, etc. to catch unused area.\nexport function SetItemAllowOverlap(): void { bind.SetItemAllowOverlap(); }\n// IMGUI_API bool IsWindowFocused(ImGuiFocusedFlags flags = 0); // is current window focused? or its root/child, depending on flags. see flags for options.\nexport function IsWindowFocused(flags: ImGuiFocusedFlags = 0): boolean {\n return bind.IsWindowFocused(flags);\n}\n// IMGUI_API bool IsWindowHovered(ImGuiHoveredFlags flags = 0); // is current window hovered (and typically: not blocked by a popup/modal)? see flags for options.\nexport function IsWindowHovered(flags: ImGuiHoveredFlags = 0): boolean {\n return bind.IsWindowHovered(flags);\n}\n// IMGUI_API bool IsRectVisible(const ImVec2& size); // test if rectangle (of given size, starting from cursor position) is visible / not clipped.\n// IMGUI_API bool IsRectVisible(const ImVec2& rect_min, const ImVec2& rect_max); // test if rectangle (in screen space) is visible / not clipped. to perform coarse clipping on user's side.\nexport function IsRectVisible(size: Readonly): boolean;\nexport function IsRectVisible(rect_min: Readonly, rect_max: Readonly): boolean;\nexport function IsRectVisible(...args: any[]): boolean {\n if (args.length === 1) {\n const size: Readonly = args[0];\n return bind.IsRectVisible_A(size);\n } else {\n const rect_min: Readonly = args[0];\n const rect_max: Readonly = args[1];\n return bind.IsRectVisible_B(rect_min, rect_max);\n }\n}\n// IMGUI_API float GetTime();\nexport function GetTime(): number { return bind.GetTime(); }\n// IMGUI_API int GetFrameCount();\nexport function GetFrameCount(): number { return bind.GetFrameCount(); }\nexport function GetBackgroundDrawList(): ImDrawList {\n return new ImDrawList(bind.GetBackgroundDrawList());\n}\nexport function GetForegroundDrawList(): ImDrawList {\n return new ImDrawList(bind.GetForegroundDrawList());\n}\n// IMGUI_API ImDrawListSharedData* GetDrawListSharedData();\nexport function GetDrawListSharedData(): ImDrawListSharedData {\n return new ImDrawListSharedData(bind.GetDrawListSharedData());\n}\n// IMGUI_API const char* GetStyleColorName(ImGuiCol idx);\nexport function GetStyleColorName(idx: ImGuiCol): string { return bind.GetStyleColorName(idx); }\n// IMGUI_API ImVec2 CalcTextSize(const char* text, const char* text_end = NULL, bool hide_text_after_double_hash = false, float wrap_width = -1.0f);\nexport function CalcTextSize(text: string, text_end: number | null = null, hide_text_after_double_hash: boolean = false, wrap_width: number = -1, out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.CalcTextSize(text_end !== null ? text.substring(0, text_end) : text, hide_text_after_double_hash, wrap_width, out);\n}\n// IMGUI_API void CalcListClipping(int items_count, float items_height, int* out_items_display_start, int* out_items_display_end); // calculate coarse clipping for large list of evenly sized items. Prefer using the ImGuiListClipper higher-level helper if you can.\nexport function CalcListClipping(items_count: number, items_height: number, out_items_display_start: Bind.ImScalar, out_items_display_end: Bind.ImScalar): void {\n return bind.CalcListClipping(items_count, items_height, out_items_display_start, out_items_display_end);\n}\n\n// IMGUI_API bool BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags extra_flags = 0); // helper to create a child window / scrolling region that looks like a normal widget frame\nexport function BeginChildFrame(id: Bind.ImGuiID, size: Readonly, extra_flags: ImGuiWindowFlags = 0): boolean {\n return bind.BeginChildFrame(id, size, extra_flags);\n}\n// IMGUI_API void EndChildFrame();\nexport function EndChildFrame(): void { bind.EndChildFrame(); }\n\n// IMGUI_API ImVec4 ColorConvertU32ToFloat4(ImU32 in);\nexport function ColorConvertU32ToFloat4(in_: Bind.ImU32, out: Bind.interface_ImVec4 = new ImVec4()): typeof out {\n return bind.ColorConvertU32ToFloat4(in_, out);\n}\n// IMGUI_API ImU32 ColorConvertFloat4ToU32(const ImVec4& in);\nexport function ColorConvertFloat4ToU32(in_: Readonly): Bind.ImU32 {\n return bind.ColorConvertFloat4ToU32(in_);\n}\n// IMGUI_API void ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v);\nexport function ColorConvertRGBtoHSV(r: number, g: number, b: number, out_h: Bind.ImScalar, out_s: Bind.ImScalar, out_v: Bind.ImScalar): void { bind.ColorConvertRGBtoHSV(r, g, b, out_h, out_s, out_v); }\n// IMGUI_API void ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g, float& out_b);\nexport function ColorConvertHSVtoRGB(h: number, s: number, v: number, out_r: Bind.ImScalar, out_g: Bind.ImScalar, out_b: Bind.ImScalar): void { bind.ColorConvertHSVtoRGB(h, s, v, out_r, out_g, out_b); }\n\n// Inputs\n// IMGUI_API int GetKeyIndex(ImGuiKey imgui_key); // map ImGuiKey_* values into user's key index. == io.KeyMap[key]\nexport function GetKeyIndex(imgui_key: ImGuiKey): number {\n return bind.GetKeyIndex(imgui_key);\n}\n// IMGUI_API bool IsKeyDown(int user_key_index); // is key being held. == io.KeysDown[user_key_index]. note that imgui doesn't know the semantic of each entry of io.KeyDown[]. Use your own indices/enums according to how your backend/engine stored them into KeyDown[]!\nexport function IsKeyDown(user_key_index: number): boolean {\n return bind.IsKeyDown(user_key_index);\n}\n// IMGUI_API bool IsKeyPressed(int user_key_index, bool repeat = true); // was key pressed (went from !Down to Down). if repeat=true, uses io.KeyRepeatDelay / KeyRepeatRate\nexport function IsKeyPressed(user_key_index: number, repeat: boolean = true): boolean {\n return bind.IsKeyPressed(user_key_index, repeat);\n}\n// IMGUI_API bool IsKeyReleased(int user_key_index); // was key released (went from Down to !Down)..\nexport function IsKeyReleased(user_key_index: number): boolean {\n return bind.IsKeyReleased(user_key_index);\n}\n// IMGUI_API int GetKeyPressedAmount(int key_index, float repeat_delay, float rate); // uses provided repeat rate/delay. return a count, most often 0 or 1 but might be >1 if RepeatRate is small enough that DeltaTime > RepeatRate\nexport function GetKeyPressedAmount(user_key_index: number, repeat_delay: number, rate: number): number {\n return bind.GetKeyPressedAmount(user_key_index, repeat_delay, rate);\n}\n// IMGUI_API bool IsMouseDown(int button); // is mouse button held\nexport function IsMouseDown(button: number): boolean {\n return bind.IsMouseDown(button);\n}\n// IMGUI_API bool IsMouseClicked(int button, bool repeat = false); // did mouse button clicked (went from !Down to Down)\nexport function IsMouseClicked(button: number, repeat: boolean = false): boolean {\n return bind.IsMouseClicked(button, repeat);\n}\n// IMGUI_API bool IsMouseDoubleClicked(int button); // did mouse button double-clicked. a double-click returns false in IsMouseClicked(). uses io.MouseDoubleClickTime.\nexport function IsMouseDoubleClicked(button: number): boolean {\n return bind.IsMouseDoubleClicked(button);\n}\n// IMGUI_API bool IsMouseReleased(int button); // did mouse button released (went from Down to !Down)\nexport function IsMouseReleased(button: number): boolean {\n return bind.IsMouseReleased(button);\n}\n// IMGUI_API bool IsMouseDragging(int button = 0, float lock_threshold = -1.0f); // is mouse dragging. if lock_threshold < -1.0f uses io.MouseDraggingThreshold\nexport function IsMouseDragging(button: number = 0, lock_threshold: number = -1.0): boolean {\n return bind.IsMouseDragging(button, lock_threshold);\n}\n// IMGUI_API bool IsMouseHoveringRect(const ImVec2& r_min, const ImVec2& r_max, bool clip = true); // is mouse hovering given bounding rect (in screen space). clipped by current clipping settings. disregarding of consideration of focus/window ordering/blocked by a popup.\nexport function IsMouseHoveringRect(r_min: Readonly, r_max: Readonly, clip: boolean = true): boolean {\n return bind.IsMouseHoveringRect(r_min, r_max, clip);\n}\n// IMGUI_API bool IsMousePosValid(const ImVec2* mouse_pos = NULL); //\nexport function IsMousePosValid(mouse_pos: Readonly | null = null): boolean {\n return bind.IsMousePosValid(mouse_pos);\n}\n// IMGUI_API ImVec2 GetMousePos(); // shortcut to ImGui::GetIO().MousePos provided by user, to be consistent with other calls\nexport function GetMousePos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMousePos(out);\n}\n// IMGUI_API ImVec2 GetMousePosOnOpeningCurrentPopup(); // retrieve backup of mouse positioning at the time of opening popup we have BeginPopup() into\nexport function GetMousePosOnOpeningCurrentPopup(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMousePosOnOpeningCurrentPopup(out);\n}\n// IMGUI_API ImVec2 GetMouseDragDelta(int button = 0, float lock_threshold = -1.0f); // dragging amount since clicking. if lock_threshold < -1.0f uses io.MouseDraggingThreshold\nexport function GetMouseDragDelta(button: number = 0, lock_threshold: number = -1.0, out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMouseDragDelta(button, lock_threshold, out);\n}\n// IMGUI_API void ResetMouseDragDelta(int button = 0); //\nexport function ResetMouseDragDelta(button: number = 0): void {\n bind.ResetMouseDragDelta(button);\n}\n// IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you\nexport function GetMouseCursor(): ImGuiMouseCursor { return bind.GetMouseCursor(); }\n// IMGUI_API void SetMouseCursor(ImGuiMouseCursor type); // set desired cursor type\nexport function SetMouseCursor(type: ImGuiMouseCursor): void { bind.SetMouseCursor(type); }\n// IMGUI_API void CaptureKeyboardFromApp(bool capture = true); // manually override io.WantCaptureKeyboard flag next frame (said flag is entirely left for your application handle). e.g. force capture keyboard when your widget is being hovered.\nexport function CaptureKeyboardFromApp(capture: boolean = true) {\n return bind.CaptureKeyboardFromApp(capture);\n}\n// IMGUI_API void CaptureMouseFromApp(bool capture = true); // manually override io.WantCaptureMouse flag next frame (said flag is entirely left for your application handle).\nexport function CaptureMouseFromApp(capture: boolean = true): void {\n bind.CaptureMouseFromApp(capture);\n}\n\n// Clipboard Utilities (also see the LogToClipboard() function to capture or output text data to the clipboard)\n// IMGUI_API const char* GetClipboardText();\nexport function GetClipboardText(): string { return bind.GetClipboardText(); }\n// IMGUI_API void SetClipboardText(const char* text);\nexport function SetClipboardText(text: string): void { bind.SetClipboardText(text); }\n\n// Settings/.Ini Utilities\n// The disk functions are automatically called if io.IniFilename != NULL (default is \"imgui.ini\").\n// Set io.IniFilename to NULL to load/save manually. Read io.WantSaveIniSettings description about handling .ini saving manually.\n// IMGUI_API void LoadIniSettingsFromDisk(const char* ini_filename); // call after CreateContext() and before the first call to NewFrame(). NewFrame() automatically calls LoadIniSettingsFromDisk(io.IniFilename).\nexport function LoadIniSettingsFromDisk(ini_filename: string): void { throw new Error(); } // TODO\n// IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source.\nexport function LoadIniSettingsFromMemory(ini_data: string, ini_size: number = 0): void { bind.LoadIniSettingsFromMemory(ini_data); }\n// IMGUI_API void SaveIniSettingsToDisk(const char* ini_filename);\nexport function SaveIniSettingsToDisk(ini_filename: string): void { throw new Error(); } // TODO\n// IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings.\nexport function SaveIniSettingsToMemory(out_ini_size: Bind.ImScalar | null = null): string { return bind.SaveIniSettingsToMemory(); }\n\n// Memory Utilities\n// All those functions are not reliant on the current context.\n// If you reload the contents of imgui.cpp at runtime, you may need to call SetCurrentContext() + SetAllocatorFunctions() again.\n// IMGUI_API void SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void(*free_func)(void* ptr, void* user_data), void* user_data = NULL);\nexport function SetAllocatorFunctions(alloc_func: (sz: number, user_data: any) => number, free_func: (ptr: number, user_data: any) => void, user_data: any = null): void {\n bind.SetAllocatorFunctions(alloc_func, free_func, user_data);\n}\n// IMGUI_API void* MemAlloc(size_t sz);\nexport function MemAlloc(sz: number): void { bind.MemAlloc(sz); }\n// IMGUI_API void MemFree(void* ptr);\nexport function MemFree(ptr: any): void { bind.MemFree(ptr); }\n","(function(global){\n\n//\n// Check for native Promise and it has correct interface\n//\n\nvar NativePromise = global['Promise'];\nvar nativePromiseSupported =\n NativePromise &&\n // Some of these methods are missing from\n // Firefox/Chrome experimental implementations\n 'resolve' in NativePromise &&\n 'reject' in NativePromise &&\n 'all' in NativePromise &&\n 'race' in NativePromise &&\n // Older version of the spec had a resolver object\n // as the arg rather than a function\n (function(){\n var resolve;\n new NativePromise(function(r){ resolve = r; });\n return typeof resolve === 'function';\n })();\n\n\n//\n// export if necessary\n//\n\nif (typeof exports !== 'undefined' && exports)\n{\n // node.js\n exports.Promise = nativePromiseSupported ? NativePromise : Promise;\n exports.Polyfill = Promise;\n}\nelse\n{\n // AMD\n if (typeof define == 'function' && define.amd)\n {\n define(function(){\n return nativePromiseSupported ? NativePromise : Promise;\n });\n }\n else\n {\n // in browser add to global\n if (!nativePromiseSupported)\n global['Promise'] = Promise;\n }\n}\n\n\n//\n// Polyfill\n//\n\nvar PENDING = 'pending';\nvar SEALED = 'sealed';\nvar FULFILLED = 'fulfilled';\nvar REJECTED = 'rejected';\nvar NOOP = function(){};\n\nfunction isArray(value) {\n return Object.prototype.toString.call(value) === '[object Array]';\n}\n\n// async calls\nvar asyncSetTimer = typeof setImmediate !== 'undefined' ? setImmediate : setTimeout;\nvar asyncQueue = [];\nvar asyncTimer;\n\nfunction asyncFlush(){\n // run promise callbacks\n for (var i = 0; i < asyncQueue.length; i++)\n asyncQueue[i][0](asyncQueue[i][1]);\n\n // reset async asyncQueue\n asyncQueue = [];\n asyncTimer = false;\n}\n\nfunction asyncCall(callback, arg){\n asyncQueue.push([callback, arg]);\n\n if (!asyncTimer)\n {\n asyncTimer = true;\n asyncSetTimer(asyncFlush, 0);\n }\n}\n\n\nfunction invokeResolver(resolver, promise) {\n function resolvePromise(value) {\n resolve(promise, value);\n }\n\n function rejectPromise(reason) {\n reject(promise, reason);\n }\n\n try {\n resolver(resolvePromise, rejectPromise);\n } catch(e) {\n rejectPromise(e);\n }\n}\n\nfunction invokeCallback(subscriber){\n var owner = subscriber.owner;\n var settled = owner.state_;\n var value = owner.data_; \n var callback = subscriber[settled];\n var promise = subscriber.then;\n\n if (typeof callback === 'function')\n {\n settled = FULFILLED;\n try {\n value = callback(value);\n } catch(e) {\n reject(promise, e);\n }\n }\n\n if (!handleThenable(promise, value))\n {\n if (settled === FULFILLED)\n resolve(promise, value);\n\n if (settled === REJECTED)\n reject(promise, value);\n }\n}\n\nfunction handleThenable(promise, value) {\n var resolved;\n\n try {\n if (promise === value)\n throw new TypeError('A promises callback cannot return that same promise.');\n\n if (value && (typeof value === 'function' || typeof value === 'object'))\n {\n var then = value.then; // then should be retrived only once\n\n if (typeof then === 'function')\n {\n then.call(value, function(val){\n if (!resolved)\n {\n resolved = true;\n\n if (value !== val)\n resolve(promise, val);\n else\n fulfill(promise, val);\n }\n }, function(reason){\n if (!resolved)\n {\n resolved = true;\n\n reject(promise, reason);\n }\n });\n\n return true;\n }\n }\n } catch (e) {\n if (!resolved)\n reject(promise, e);\n\n return true;\n }\n\n return false;\n}\n\nfunction resolve(promise, value){\n if (promise === value || !handleThenable(promise, value))\n fulfill(promise, value);\n}\n\nfunction fulfill(promise, value){\n if (promise.state_ === PENDING)\n {\n promise.state_ = SEALED;\n promise.data_ = value;\n\n asyncCall(publishFulfillment, promise);\n }\n}\n\nfunction reject(promise, reason){\n if (promise.state_ === PENDING)\n {\n promise.state_ = SEALED;\n promise.data_ = reason;\n\n asyncCall(publishRejection, promise);\n }\n}\n\nfunction publish(promise) {\n var callbacks = promise.then_;\n promise.then_ = undefined;\n\n for (var i = 0; i < callbacks.length; i++) {\n invokeCallback(callbacks[i]);\n }\n}\n\nfunction publishFulfillment(promise){\n promise.state_ = FULFILLED;\n publish(promise);\n}\n\nfunction publishRejection(promise){\n promise.state_ = REJECTED;\n publish(promise);\n}\n\n/**\n* @class\n*/\nfunction Promise(resolver){\n if (typeof resolver !== 'function')\n throw new TypeError('Promise constructor takes a function argument');\n\n if (this instanceof Promise === false)\n throw new TypeError('Failed to construct \\'Promise\\': Please use the \\'new\\' operator, this object constructor cannot be called as a function.');\n\n this.then_ = [];\n\n invokeResolver(resolver, this);\n}\n\nPromise.prototype = {\n constructor: Promise,\n\n state_: PENDING,\n then_: null,\n data_: undefined,\n\n then: function(onFulfillment, onRejection){\n var subscriber = {\n owner: this,\n then: new this.constructor(NOOP),\n fulfilled: onFulfillment,\n rejected: onRejection\n };\n\n if (this.state_ === FULFILLED || this.state_ === REJECTED)\n {\n // already resolved, call callback async\n asyncCall(invokeCallback, subscriber);\n }\n else\n {\n // subscribe\n this.then_.push(subscriber);\n }\n\n return subscriber.then;\n },\n\n 'catch': function(onRejection) {\n return this.then(null, onRejection);\n }\n};\n\nPromise.all = function(promises){\n var Class = this;\n\n if (!isArray(promises))\n throw new TypeError('You must pass an array to Promise.all().');\n\n return new Class(function(resolve, reject){\n var results = [];\n var remaining = 0;\n\n function resolver(index){\n remaining++;\n return function(value){\n results[index] = value;\n if (!--remaining)\n resolve(results);\n };\n }\n\n for (var i = 0, promise; i < promises.length; i++)\n {\n promise = promises[i];\n\n if (promise && typeof promise.then === 'function')\n promise.then(resolver(i), reject);\n else\n results[i] = promise;\n }\n\n if (!remaining)\n resolve(results);\n });\n};\n\nPromise.race = function(promises){\n var Class = this;\n\n if (!isArray(promises))\n throw new TypeError('You must pass an array to Promise.race().');\n\n return new Class(function(resolve, reject) {\n for (var i = 0, promise; i < promises.length; i++)\n {\n promise = promises[i];\n\n if (promise && typeof promise.then === 'function')\n promise.then(resolve, reject);\n else\n resolve(promise);\n }\n });\n};\n\nPromise.resolve = function(value){\n var Class = this;\n\n if (value && typeof value === 'object' && value.constructor === Class)\n return value;\n\n return new Class(function(resolve){\n resolve(value);\n });\n};\n\nPromise.reject = function(reason){\n var Class = this;\n\n return new Class(function(resolve, reject){\n reject(reason);\n });\n};\n\n})(typeof window != 'undefined' ? window : typeof global != 'undefined' ? global : typeof self != 'undefined' ? self : this);\n","/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\n\n'use strict';\n/* eslint-disable no-unused-vars */\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\n\nfunction toObject(val) {\n\tif (val === null || val === undefined) {\n\t\tthrow new TypeError('Object.assign cannot be called with null or undefined');\n\t}\n\n\treturn Object(val);\n}\n\nfunction shouldUseNative() {\n\ttry {\n\t\tif (!Object.assign) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Detect buggy property enumeration order in older V8 versions.\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=4118\n\t\tvar test1 = new String('abc'); // eslint-disable-line no-new-wrappers\n\t\ttest1[5] = 'de';\n\t\tif (Object.getOwnPropertyNames(test1)[0] === '5') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test2 = {};\n\t\tfor (var i = 0; i < 10; i++) {\n\t\t\ttest2['_' + String.fromCharCode(i)] = i;\n\t\t}\n\t\tvar order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n\t\t\treturn test2[n];\n\t\t});\n\t\tif (order2.join('') !== '0123456789') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test3 = {};\n\t\t'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n\t\t\ttest3[letter] = letter;\n\t\t});\n\t\tif (Object.keys(Object.assign({}, test3)).join('') !==\n\t\t\t\t'abcdefghijklmnopqrst') {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t} catch (err) {\n\t\t// We don't expect any of the above to throw, but better to be safe.\n\t\treturn false;\n\t}\n}\n\nmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n\tvar from;\n\tvar to = toObject(target);\n\tvar symbols;\n\n\tfor (var s = 1; s < arguments.length; s++) {\n\t\tfrom = Object(arguments[s]);\n\n\t\tfor (var key in from) {\n\t\t\tif (hasOwnProperty.call(from, key)) {\n\t\t\t\tto[key] = from[key];\n\t\t\t}\n\t\t}\n\n\t\tif (getOwnPropertySymbols) {\n\t\t\tsymbols = getOwnPropertySymbols(from);\n\t\t\tfor (var i = 0; i < symbols.length; i++) {\n\t\t\t\tif (propIsEnumerable.call(from, symbols[i])) {\n\t\t\t\t\tto[symbols[i]] = from[symbols[i]];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn to;\n};\n","/*!\n * @pixi/polyfill - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/polyfill is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Polyfill } from 'es6-promise-polyfill';\nimport objectAssign from 'object-assign';\n\n// Support for IE 9 - 11 which does not include Promises\nif (!window.Promise)\n{\n window.Promise = Polyfill;\n}\n\n// References:\n\nif (!Object.assign)\n{\n Object.assign = objectAssign;\n}\n\nvar commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\n// References:\n// http://paulirish.com/2011/requestanimationframe-for-smart-animating/\n// https://gist.github.com/1579671\n// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision\n// https://gist.github.com/timhall/4078614\n// https://github.com/Financial-Times/polyfill-service/tree/master/polyfills/requestAnimationFrame\n\n// Expected to be used with Browserfiy\n// Browserify automatically detects the use of `global` and passes the\n// correct reference of `global`, `self`, and finally `window`\n\nvar ONE_FRAME_TIME = 16;\n\n// Date.now\nif (!(Date.now && Date.prototype.getTime))\n{\n Date.now = function now()\n {\n return new Date().getTime();\n };\n}\n\n// performance.now\nif (!(commonjsGlobal.performance && commonjsGlobal.performance.now))\n{\n var startTime = Date.now();\n\n if (!commonjsGlobal.performance)\n {\n commonjsGlobal.performance = {};\n }\n\n commonjsGlobal.performance.now = function () { return Date.now() - startTime; };\n}\n\n// requestAnimationFrame\nvar lastTime = Date.now();\nvar vendors = ['ms', 'moz', 'webkit', 'o'];\n\nfor (var x = 0; x < vendors.length && !commonjsGlobal.requestAnimationFrame; ++x)\n{\n var p = vendors[x];\n\n commonjsGlobal.requestAnimationFrame = commonjsGlobal[(p + \"RequestAnimationFrame\")];\n commonjsGlobal.cancelAnimationFrame = commonjsGlobal[(p + \"CancelAnimationFrame\")] || commonjsGlobal[(p + \"CancelRequestAnimationFrame\")];\n}\n\nif (!commonjsGlobal.requestAnimationFrame)\n{\n commonjsGlobal.requestAnimationFrame = function (callback) {\n if (typeof callback !== 'function')\n {\n throw new TypeError((callback + \"is not a function\"));\n }\n\n var currentTime = Date.now();\n var delay = ONE_FRAME_TIME + lastTime - currentTime;\n\n if (delay < 0)\n {\n delay = 0;\n }\n\n lastTime = currentTime;\n\n return setTimeout(function () {\n lastTime = Date.now();\n callback(performance.now());\n }, delay);\n };\n}\n\nif (!commonjsGlobal.cancelAnimationFrame)\n{\n commonjsGlobal.cancelAnimationFrame = function (id) { return clearTimeout(id); };\n}\n\n// References:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign\n\nif (!Math.sign)\n{\n Math.sign = function mathSign(x)\n {\n x = Number(x);\n\n if (x === 0 || isNaN(x))\n {\n return x;\n }\n\n return x > 0 ? 1 : -1;\n };\n}\n\n// References:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger\n\nif (!Number.isInteger)\n{\n Number.isInteger = function numberIsInteger(value)\n {\n return typeof value === 'number' && isFinite(value) && Math.floor(value) === value;\n };\n}\n\nif (!window.ArrayBuffer)\n{\n window.ArrayBuffer = Array;\n}\n\nif (!window.Float32Array)\n{\n window.Float32Array = Array;\n}\n\nif (!window.Uint32Array)\n{\n window.Uint32Array = Array;\n}\n\nif (!window.Uint16Array)\n{\n window.Uint16Array = Array;\n}\n\nif (!window.Uint8Array)\n{\n window.Uint8Array = Array;\n}\n\nif (!window.Int32Array)\n{\n window.Int32Array = Array;\n}\n//# sourceMappingURL=polyfill.es.js.map\n","(function(global) {\n var apple_phone = /iPhone/i,\n apple_ipod = /iPod/i,\n apple_tablet = /iPad/i,\n android_phone = /\\bAndroid(?:.+)Mobile\\b/i, // Match 'Android' AND 'Mobile'\n android_tablet = /Android/i,\n amazon_phone = /\\bAndroid(?:.+)SD4930UR\\b/i,\n amazon_tablet = /\\bAndroid(?:.+)(?:KF[A-Z]{2,4})\\b/i,\n windows_phone = /Windows Phone/i,\n windows_tablet = /\\bWindows(?:.+)ARM\\b/i, // Match 'Windows' AND 'ARM'\n other_blackberry = /BlackBerry/i,\n other_blackberry_10 = /BB10/i,\n other_opera = /Opera Mini/i,\n other_chrome = /\\b(CriOS|Chrome)(?:.+)Mobile/i,\n other_firefox = /Mobile(?:.+)Firefox\\b/i; // Match 'Mobile' AND 'Firefox'\n\n function match(regex, userAgent) {\n return regex.test(userAgent);\n }\n\n function isMobile(userAgent) {\n var ua =\n userAgent ||\n (typeof navigator !== 'undefined' ? navigator.userAgent : '');\n\n // Facebook mobile app's integrated browser adds a bunch of strings that\n // match everything. Strip it out if it exists.\n var tmp = ua.split('[FBAN');\n if (typeof tmp[1] !== 'undefined') {\n ua = tmp[0];\n }\n\n // Twitter mobile app's integrated browser on iPad adds a \"Twitter for\n // iPhone\" string. Same probably happens on other tablet platforms.\n // This will confuse detection so strip it out if it exists.\n tmp = ua.split('Twitter');\n if (typeof tmp[1] !== 'undefined') {\n ua = tmp[0];\n }\n\n var result = {\n apple: {\n phone: match(apple_phone, ua) && !match(windows_phone, ua),\n ipod: match(apple_ipod, ua),\n tablet:\n !match(apple_phone, ua) &&\n match(apple_tablet, ua) &&\n !match(windows_phone, ua),\n device:\n (match(apple_phone, ua) ||\n match(apple_ipod, ua) ||\n match(apple_tablet, ua)) &&\n !match(windows_phone, ua)\n },\n amazon: {\n phone: match(amazon_phone, ua),\n tablet: !match(amazon_phone, ua) && match(amazon_tablet, ua),\n device: match(amazon_phone, ua) || match(amazon_tablet, ua)\n },\n android: {\n phone:\n (!match(windows_phone, ua) && match(amazon_phone, ua)) ||\n (!match(windows_phone, ua) && match(android_phone, ua)),\n tablet:\n !match(windows_phone, ua) &&\n !match(amazon_phone, ua) &&\n !match(android_phone, ua) &&\n (match(amazon_tablet, ua) || match(android_tablet, ua)),\n device:\n (!match(windows_phone, ua) &&\n (match(amazon_phone, ua) ||\n match(amazon_tablet, ua) ||\n match(android_phone, ua) ||\n match(android_tablet, ua))) ||\n match(/\\bokhttp\\b/i, ua)\n },\n windows: {\n phone: match(windows_phone, ua),\n tablet: match(windows_tablet, ua),\n device: match(windows_phone, ua) || match(windows_tablet, ua)\n },\n other: {\n blackberry: match(other_blackberry, ua),\n blackberry10: match(other_blackberry_10, ua),\n opera: match(other_opera, ua),\n firefox: match(other_firefox, ua),\n chrome: match(other_chrome, ua),\n device:\n match(other_blackberry, ua) ||\n match(other_blackberry_10, ua) ||\n match(other_opera, ua) ||\n match(other_firefox, ua) ||\n match(other_chrome, ua)\n }\n };\n (result.any =\n result.apple.device ||\n result.android.device ||\n result.windows.device ||\n result.other.device),\n // excludes 'other' devices and ipods, targeting touchscreen phones\n (result.phone =\n result.apple.phone || result.android.phone || result.windows.phone),\n (result.tablet =\n result.apple.tablet || result.android.tablet || result.windows.tablet);\n\n return result;\n }\n\n if (\n typeof module !== 'undefined' &&\n module.exports &&\n typeof window === 'undefined'\n ) {\n // Node.js\n module.exports = isMobile;\n } else if (\n typeof module !== 'undefined' &&\n module.exports &&\n typeof window !== 'undefined'\n ) {\n // Browserify\n module.exports = isMobile();\n module.exports.isMobile = isMobile;\n } else if (typeof define === 'function' && define.amd) {\n // AMD\n define([], (global.isMobile = isMobile()));\n } else {\n global.isMobile = isMobile();\n }\n})(this);\n","/*!\n * @pixi/settings - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/settings is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport isMobile from 'ismobilejs';\nexport { default as isMobile } from 'ismobilejs';\n\n/**\n * The maximum recommended texture units to use.\n * In theory the bigger the better, and for desktop we'll use as many as we can.\n * But some mobile devices slow down if there is to many branches in the shader.\n * So in practice there seems to be a sweet spot size that varies depending on the device.\n *\n * In v4, all mobile devices were limited to 4 texture units because for this.\n * In v5, we allow all texture units to be used on modern Apple or Android devices.\n *\n * @private\n * @param {number} max\n * @returns {number}\n */\nfunction maxRecommendedTextures(max)\n{\n var allowMax = true;\n\n if (isMobile.tablet || isMobile.phone)\n {\n allowMax = false;\n\n if (isMobile.apple.device)\n {\n var match = (navigator.userAgent).match(/OS (\\d+)_(\\d+)?/);\n\n if (match)\n {\n var majorVersion = parseInt(match[1], 10);\n\n // All texture units can be used on devices that support ios 11 or above\n if (majorVersion >= 11)\n {\n allowMax = true;\n }\n }\n }\n if (isMobile.android.device)\n {\n var match$1 = (navigator.userAgent).match(/Android\\s([0-9.]*)/);\n\n if (match$1)\n {\n var majorVersion$1 = parseInt(match$1[1], 10);\n\n // All texture units can be used on devices that support Android 7 (Nougat) or above\n if (majorVersion$1 >= 7)\n {\n allowMax = true;\n }\n }\n }\n }\n\n return allowMax ? max : 4;\n}\n\n/**\n * Uploading the same buffer multiple times in a single frame can cause performance issues.\n * Apparent on iOS so only check for that at the moment\n * This check may become more complex if this issue pops up elsewhere.\n *\n * @private\n * @returns {boolean}\n */\nfunction canUploadSameBuffer()\n{\n return !isMobile.apple.device;\n}\n\n/**\n * User's customizable globals for overriding the default PIXI settings, such\n * as a renderer's default resolution, framerate, float precision, etc.\n * @example\n * // Use the native window resolution as the default resolution\n * // will support high-density displays when rendering\n * PIXI.settings.RESOLUTION = window.devicePixelRatio;\n *\n * // Disable interpolation when scaling, will make texture be pixelated\n * PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST;\n * @namespace PIXI.settings\n */\nvar settings = {\n\n /**\n * If set to true WebGL will attempt make textures mimpaped by default.\n * Mipmapping will only succeed if the base texture uploaded has power of two dimensions.\n *\n * @static\n * @name MIPMAP_TEXTURES\n * @memberof PIXI.settings\n * @type {PIXI.MIPMAP_MODES}\n * @default PIXI.MIPMAP_MODES.POW2\n */\n MIPMAP_TEXTURES: 1,\n\n /**\n * Default anisotropic filtering level of textures.\n * Usually from 0 to 16\n *\n * @static\n * @name ANISOTROPIC_LEVEL\n * @memberof PIXI.settings\n * @type {number}\n * @default 0\n */\n ANISOTROPIC_LEVEL: 0,\n\n /**\n * Default resolution / device pixel ratio of the renderer.\n *\n * @static\n * @name RESOLUTION\n * @memberof PIXI.settings\n * @type {number}\n * @default 1\n */\n RESOLUTION: 1,\n\n /**\n * Default filter resolution.\n *\n * @static\n * @name FILTER_RESOLUTION\n * @memberof PIXI.settings\n * @type {number}\n * @default 1\n */\n FILTER_RESOLUTION: 1,\n\n /**\n * The maximum textures that this device supports.\n *\n * @static\n * @name SPRITE_MAX_TEXTURES\n * @memberof PIXI.settings\n * @type {number}\n * @default 32\n */\n SPRITE_MAX_TEXTURES: maxRecommendedTextures(32),\n\n // TODO: maybe change to SPRITE.BATCH_SIZE: 2000\n // TODO: maybe add PARTICLE.BATCH_SIZE: 15000\n\n /**\n * The default sprite batch size.\n *\n * The default aims to balance desktop and mobile devices.\n *\n * @static\n * @name SPRITE_BATCH_SIZE\n * @memberof PIXI.settings\n * @type {number}\n * @default 4096\n */\n SPRITE_BATCH_SIZE: 4096,\n\n /**\n * The default render options if none are supplied to {@link PIXI.Renderer}\n * or {@link PIXI.CanvasRenderer}.\n *\n * @static\n * @name RENDER_OPTIONS\n * @memberof PIXI.settings\n * @type {object}\n * @property {HTMLCanvasElement} view=null\n * @property {number} resolution=1\n * @property {boolean} antialias=false\n * @property {boolean} forceFXAA=false\n * @property {boolean} autoDensity=false\n * @property {boolean} transparent=false\n * @property {number} backgroundColor=0x000000\n * @property {boolean} clearBeforeRender=true\n * @property {boolean} preserveDrawingBuffer=false\n * @property {number} width=800\n * @property {number} height=600\n * @property {boolean} legacy=false\n */\n RENDER_OPTIONS: {\n view: null,\n antialias: false,\n forceFXAA: false,\n autoDensity: false,\n transparent: false,\n backgroundColor: 0x000000,\n clearBeforeRender: true,\n preserveDrawingBuffer: false,\n width: 800,\n height: 600,\n legacy: false,\n },\n\n /**\n * Default Garbage Collection mode.\n *\n * @static\n * @name GC_MODE\n * @memberof PIXI.settings\n * @type {PIXI.GC_MODES}\n * @default PIXI.GC_MODES.AUTO\n */\n GC_MODE: 0,\n\n /**\n * Default Garbage Collection max idle.\n *\n * @static\n * @name GC_MAX_IDLE\n * @memberof PIXI.settings\n * @type {number}\n * @default 3600\n */\n GC_MAX_IDLE: 60 * 60,\n\n /**\n * Default Garbage Collection maximum check count.\n *\n * @static\n * @name GC_MAX_CHECK_COUNT\n * @memberof PIXI.settings\n * @type {number}\n * @default 600\n */\n GC_MAX_CHECK_COUNT: 60 * 10,\n\n /**\n * Default wrap modes that are supported by pixi.\n *\n * @static\n * @name WRAP_MODE\n * @memberof PIXI.settings\n * @type {PIXI.WRAP_MODES}\n * @default PIXI.WRAP_MODES.CLAMP\n */\n WRAP_MODE: 33071,\n\n /**\n * Default scale mode for textures.\n *\n * @static\n * @name SCALE_MODE\n * @memberof PIXI.settings\n * @type {PIXI.SCALE_MODES}\n * @default PIXI.SCALE_MODES.LINEAR\n */\n SCALE_MODE: 1,\n\n /**\n * Default specify float precision in vertex shader.\n *\n * @static\n * @name PRECISION_VERTEX\n * @memberof PIXI.settings\n * @type {PIXI.PRECISION}\n * @default PIXI.PRECISION.HIGH\n */\n PRECISION_VERTEX: 'highp',\n\n /**\n * Default specify float precision in fragment shader.\n * iOS is best set at highp due to https://github.com/pixijs/pixi.js/issues/3742\n *\n * @static\n * @name PRECISION_FRAGMENT\n * @memberof PIXI.settings\n * @type {PIXI.PRECISION}\n * @default PIXI.PRECISION.MEDIUM\n */\n PRECISION_FRAGMENT: isMobile.apple.device ? 'highp' : 'mediump',\n\n /**\n * Can we upload the same buffer in a single frame?\n *\n * @static\n * @name CAN_UPLOAD_SAME_BUFFER\n * @memberof PIXI.settings\n * @type {boolean}\n */\n CAN_UPLOAD_SAME_BUFFER: canUploadSameBuffer(),\n\n /**\n * Enables bitmap creation before image load. This feature is experimental.\n *\n * @static\n * @name CREATE_IMAGE_BITMAP\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\n CREATE_IMAGE_BITMAP: false,\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n *\n * @static\n * @constant\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\n ROUND_PIXELS: false,\n};\n\nexport { settings };\n//# sourceMappingURL=settings.es.js.map\n","'use strict';\n\nvar has = Object.prototype.hasOwnProperty\n , prefix = '~';\n\n/**\n * Constructor to create a storage for our `EE` objects.\n * An `Events` instance is a plain object whose properties are event names.\n *\n * @constructor\n * @private\n */\nfunction Events() {}\n\n//\n// We try to not inherit from `Object.prototype`. In some engines creating an\n// instance in this way is faster than calling `Object.create(null)` directly.\n// If `Object.create(null)` is not supported we prefix the event names with a\n// character to make sure that the built-in object properties are not\n// overridden or used as an attack vector.\n//\nif (Object.create) {\n Events.prototype = Object.create(null);\n\n //\n // This hack is needed because the `__proto__` property is still inherited in\n // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5.\n //\n if (!new Events().__proto__) prefix = false;\n}\n\n/**\n * Representation of a single event listener.\n *\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} [once=false] Specify if the listener is a one-time listener.\n * @constructor\n * @private\n */\nfunction EE(fn, context, once) {\n this.fn = fn;\n this.context = context;\n this.once = once || false;\n}\n\n/**\n * Add a listener for a given event.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} once Specify if the listener is a one-time listener.\n * @returns {EventEmitter}\n * @private\n */\nfunction addListener(emitter, event, fn, context, once) {\n if (typeof fn !== 'function') {\n throw new TypeError('The listener must be a function');\n }\n\n var listener = new EE(fn, context || emitter, once)\n , evt = prefix ? prefix + event : event;\n\n if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;\n else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);\n else emitter._events[evt] = [emitter._events[evt], listener];\n\n return emitter;\n}\n\n/**\n * Clear event by name.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} evt The Event name.\n * @private\n */\nfunction clearEvent(emitter, evt) {\n if (--emitter._eventsCount === 0) emitter._events = new Events();\n else delete emitter._events[evt];\n}\n\n/**\n * Minimal `EventEmitter` interface that is molded against the Node.js\n * `EventEmitter` interface.\n *\n * @constructor\n * @public\n */\nfunction EventEmitter() {\n this._events = new Events();\n this._eventsCount = 0;\n}\n\n/**\n * Return an array listing the events for which the emitter has registered\n * listeners.\n *\n * @returns {Array}\n * @public\n */\nEventEmitter.prototype.eventNames = function eventNames() {\n var names = []\n , events\n , name;\n\n if (this._eventsCount === 0) return names;\n\n for (name in (events = this._events)) {\n if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);\n }\n\n if (Object.getOwnPropertySymbols) {\n return names.concat(Object.getOwnPropertySymbols(events));\n }\n\n return names;\n};\n\n/**\n * Return the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Array} The registered listeners.\n * @public\n */\nEventEmitter.prototype.listeners = function listeners(event) {\n var evt = prefix ? prefix + event : event\n , handlers = this._events[evt];\n\n if (!handlers) return [];\n if (handlers.fn) return [handlers.fn];\n\n for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) {\n ee[i] = handlers[i].fn;\n }\n\n return ee;\n};\n\n/**\n * Return the number of listeners listening to a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Number} The number of listeners.\n * @public\n */\nEventEmitter.prototype.listenerCount = function listenerCount(event) {\n var evt = prefix ? prefix + event : event\n , listeners = this._events[evt];\n\n if (!listeners) return 0;\n if (listeners.fn) return 1;\n return listeners.length;\n};\n\n/**\n * Calls each of the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Boolean} `true` if the event had listeners, else `false`.\n * @public\n */\nEventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return false;\n\n var listeners = this._events[evt]\n , len = arguments.length\n , args\n , i;\n\n if (listeners.fn) {\n if (listeners.once) this.removeListener(event, listeners.fn, undefined, true);\n\n switch (len) {\n case 1: return listeners.fn.call(listeners.context), true;\n case 2: return listeners.fn.call(listeners.context, a1), true;\n case 3: return listeners.fn.call(listeners.context, a1, a2), true;\n case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true;\n case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;\n case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;\n }\n\n for (i = 1, args = new Array(len -1); i < len; i++) {\n args[i - 1] = arguments[i];\n }\n\n listeners.fn.apply(listeners.context, args);\n } else {\n var length = listeners.length\n , j;\n\n for (i = 0; i < length; i++) {\n if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true);\n\n switch (len) {\n case 1: listeners[i].fn.call(listeners[i].context); break;\n case 2: listeners[i].fn.call(listeners[i].context, a1); break;\n case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break;\n case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break;\n default:\n if (!args) for (j = 1, args = new Array(len -1); j < len; j++) {\n args[j - 1] = arguments[j];\n }\n\n listeners[i].fn.apply(listeners[i].context, args);\n }\n }\n }\n\n return true;\n};\n\n/**\n * Add a listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.on = function on(event, fn, context) {\n return addListener(this, event, fn, context, false);\n};\n\n/**\n * Add a one-time listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.once = function once(event, fn, context) {\n return addListener(this, event, fn, context, true);\n};\n\n/**\n * Remove the listeners of a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn Only remove the listeners that match this function.\n * @param {*} context Only remove the listeners that have this context.\n * @param {Boolean} once Only remove one-time listeners.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return this;\n if (!fn) {\n clearEvent(this, evt);\n return this;\n }\n\n var listeners = this._events[evt];\n\n if (listeners.fn) {\n if (\n listeners.fn === fn &&\n (!once || listeners.once) &&\n (!context || listeners.context === context)\n ) {\n clearEvent(this, evt);\n }\n } else {\n for (var i = 0, events = [], length = listeners.length; i < length; i++) {\n if (\n listeners[i].fn !== fn ||\n (once && !listeners[i].once) ||\n (context && listeners[i].context !== context)\n ) {\n events.push(listeners[i]);\n }\n }\n\n //\n // Reset the array, or remove it completely if we have no more listeners.\n //\n if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;\n else clearEvent(this, evt);\n }\n\n return this;\n};\n\n/**\n * Remove all listeners, or those of the specified event.\n *\n * @param {(String|Symbol)} [event] The event name.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {\n var evt;\n\n if (event) {\n evt = prefix ? prefix + event : event;\n if (this._events[evt]) clearEvent(this, evt);\n } else {\n this._events = new Events();\n this._eventsCount = 0;\n }\n\n return this;\n};\n\n//\n// Alias methods names because people roll like that.\n//\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\nEventEmitter.prototype.addListener = EventEmitter.prototype.on;\n\n//\n// Expose the prefix.\n//\nEventEmitter.prefixed = prefix;\n\n//\n// Allow `EventEmitter` to be imported as module namespace.\n//\nEventEmitter.EventEmitter = EventEmitter;\n\n//\n// Expose the module.\n//\nif ('undefined' !== typeof module) {\n module.exports = EventEmitter;\n}\n","'use strict';\n\nmodule.exports = earcut;\nmodule.exports.default = earcut;\n\nfunction earcut(data, holeIndices, dim) {\n\n dim = dim || 2;\n\n var hasHoles = holeIndices && holeIndices.length,\n outerLen = hasHoles ? holeIndices[0] * dim : data.length,\n outerNode = linkedList(data, 0, outerLen, dim, true),\n triangles = [];\n\n if (!outerNode || outerNode.next === outerNode.prev) return triangles;\n\n var minX, minY, maxX, maxY, x, y, invSize;\n\n if (hasHoles) outerNode = eliminateHoles(data, holeIndices, outerNode, dim);\n\n // if the shape is not too simple, we'll use z-order curve hash later; calculate polygon bbox\n if (data.length > 80 * dim) {\n minX = maxX = data[0];\n minY = maxY = data[1];\n\n for (var i = dim; i < outerLen; i += dim) {\n x = data[i];\n y = data[i + 1];\n if (x < minX) minX = x;\n if (y < minY) minY = y;\n if (x > maxX) maxX = x;\n if (y > maxY) maxY = y;\n }\n\n // minX, minY and invSize are later used to transform coords into integers for z-order calculation\n invSize = Math.max(maxX - minX, maxY - minY);\n invSize = invSize !== 0 ? 1 / invSize : 0;\n }\n\n earcutLinked(outerNode, triangles, dim, minX, minY, invSize);\n\n return triangles;\n}\n\n// create a circular doubly linked list from polygon points in the specified winding order\nfunction linkedList(data, start, end, dim, clockwise) {\n var i, last;\n\n if (clockwise === (signedArea(data, start, end, dim) > 0)) {\n for (i = start; i < end; i += dim) last = insertNode(i, data[i], data[i + 1], last);\n } else {\n for (i = end - dim; i >= start; i -= dim) last = insertNode(i, data[i], data[i + 1], last);\n }\n\n if (last && equals(last, last.next)) {\n removeNode(last);\n last = last.next;\n }\n\n return last;\n}\n\n// eliminate colinear or duplicate points\nfunction filterPoints(start, end) {\n if (!start) return start;\n if (!end) end = start;\n\n var p = start,\n again;\n do {\n again = false;\n\n if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) {\n removeNode(p);\n p = end = p.prev;\n if (p === p.next) break;\n again = true;\n\n } else {\n p = p.next;\n }\n } while (again || p !== end);\n\n return end;\n}\n\n// main ear slicing loop which triangulates a polygon (given as a linked list)\nfunction earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) {\n if (!ear) return;\n\n // interlink polygon nodes in z-order\n if (!pass && invSize) indexCurve(ear, minX, minY, invSize);\n\n var stop = ear,\n prev, next;\n\n // iterate through ears, slicing them one by one\n while (ear.prev !== ear.next) {\n prev = ear.prev;\n next = ear.next;\n\n if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) {\n // cut off the triangle\n triangles.push(prev.i / dim);\n triangles.push(ear.i / dim);\n triangles.push(next.i / dim);\n\n removeNode(ear);\n\n // skipping the next vertex leads to less sliver triangles\n ear = next.next;\n stop = next.next;\n\n continue;\n }\n\n ear = next;\n\n // if we looped through the whole remaining polygon and can't find any more ears\n if (ear === stop) {\n // try filtering points and slicing again\n if (!pass) {\n earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1);\n\n // if this didn't work, try curing all small self-intersections locally\n } else if (pass === 1) {\n ear = cureLocalIntersections(filterPoints(ear), triangles, dim);\n earcutLinked(ear, triangles, dim, minX, minY, invSize, 2);\n\n // as a last resort, try splitting the remaining polygon into two\n } else if (pass === 2) {\n splitEarcut(ear, triangles, dim, minX, minY, invSize);\n }\n\n break;\n }\n }\n}\n\n// check whether a polygon node forms a valid ear with adjacent nodes\nfunction isEar(ear) {\n var a = ear.prev,\n b = ear,\n c = ear.next;\n\n if (area(a, b, c) >= 0) return false; // reflex, can't be an ear\n\n // now make sure we don't have other points inside the potential ear\n var p = ear.next.next;\n\n while (p !== ear.prev) {\n if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.next;\n }\n\n return true;\n}\n\nfunction isEarHashed(ear, minX, minY, invSize) {\n var a = ear.prev,\n b = ear,\n c = ear.next;\n\n if (area(a, b, c) >= 0) return false; // reflex, can't be an ear\n\n // triangle bbox; min & max are calculated like this for speed\n var minTX = a.x < b.x ? (a.x < c.x ? a.x : c.x) : (b.x < c.x ? b.x : c.x),\n minTY = a.y < b.y ? (a.y < c.y ? a.y : c.y) : (b.y < c.y ? b.y : c.y),\n maxTX = a.x > b.x ? (a.x > c.x ? a.x : c.x) : (b.x > c.x ? b.x : c.x),\n maxTY = a.y > b.y ? (a.y > c.y ? a.y : c.y) : (b.y > c.y ? b.y : c.y);\n\n // z-order range for the current triangle bbox;\n var minZ = zOrder(minTX, minTY, minX, minY, invSize),\n maxZ = zOrder(maxTX, maxTY, minX, minY, invSize);\n\n var p = ear.prevZ,\n n = ear.nextZ;\n\n // look for points inside the triangle in both directions\n while (p && p.z >= minZ && n && n.z <= maxZ) {\n if (p !== ear.prev && p !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.prevZ;\n\n if (n !== ear.prev && n !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) &&\n area(n.prev, n, n.next) >= 0) return false;\n n = n.nextZ;\n }\n\n // look for remaining points in decreasing z-order\n while (p && p.z >= minZ) {\n if (p !== ear.prev && p !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.prevZ;\n }\n\n // look for remaining points in increasing z-order\n while (n && n.z <= maxZ) {\n if (n !== ear.prev && n !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) &&\n area(n.prev, n, n.next) >= 0) return false;\n n = n.nextZ;\n }\n\n return true;\n}\n\n// go through all polygon nodes and cure small local self-intersections\nfunction cureLocalIntersections(start, triangles, dim) {\n var p = start;\n do {\n var a = p.prev,\n b = p.next.next;\n\n if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) {\n\n triangles.push(a.i / dim);\n triangles.push(p.i / dim);\n triangles.push(b.i / dim);\n\n // remove two nodes involved\n removeNode(p);\n removeNode(p.next);\n\n p = start = b;\n }\n p = p.next;\n } while (p !== start);\n\n return filterPoints(p);\n}\n\n// try splitting polygon into two and triangulate them independently\nfunction splitEarcut(start, triangles, dim, minX, minY, invSize) {\n // look for a valid diagonal that divides the polygon into two\n var a = start;\n do {\n var b = a.next.next;\n while (b !== a.prev) {\n if (a.i !== b.i && isValidDiagonal(a, b)) {\n // split the polygon in two by the diagonal\n var c = splitPolygon(a, b);\n\n // filter colinear points around the cuts\n a = filterPoints(a, a.next);\n c = filterPoints(c, c.next);\n\n // run earcut on each half\n earcutLinked(a, triangles, dim, minX, minY, invSize);\n earcutLinked(c, triangles, dim, minX, minY, invSize);\n return;\n }\n b = b.next;\n }\n a = a.next;\n } while (a !== start);\n}\n\n// link every hole into the outer loop, producing a single-ring polygon without holes\nfunction eliminateHoles(data, holeIndices, outerNode, dim) {\n var queue = [],\n i, len, start, end, list;\n\n for (i = 0, len = holeIndices.length; i < len; i++) {\n start = holeIndices[i] * dim;\n end = i < len - 1 ? holeIndices[i + 1] * dim : data.length;\n list = linkedList(data, start, end, dim, false);\n if (list === list.next) list.steiner = true;\n queue.push(getLeftmost(list));\n }\n\n queue.sort(compareX);\n\n // process holes from left to right\n for (i = 0; i < queue.length; i++) {\n eliminateHole(queue[i], outerNode);\n outerNode = filterPoints(outerNode, outerNode.next);\n }\n\n return outerNode;\n}\n\nfunction compareX(a, b) {\n return a.x - b.x;\n}\n\n// find a bridge between vertices that connects hole with an outer ring and and link it\nfunction eliminateHole(hole, outerNode) {\n outerNode = findHoleBridge(hole, outerNode);\n if (outerNode) {\n var b = splitPolygon(outerNode, hole);\n filterPoints(b, b.next);\n }\n}\n\n// David Eberly's algorithm for finding a bridge between hole and outer polygon\nfunction findHoleBridge(hole, outerNode) {\n var p = outerNode,\n hx = hole.x,\n hy = hole.y,\n qx = -Infinity,\n m;\n\n // find a segment intersected by a ray from the hole's leftmost point to the left;\n // segment's endpoint with lesser x will be potential connection point\n do {\n if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) {\n var x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y);\n if (x <= hx && x > qx) {\n qx = x;\n if (x === hx) {\n if (hy === p.y) return p;\n if (hy === p.next.y) return p.next;\n }\n m = p.x < p.next.x ? p : p.next;\n }\n }\n p = p.next;\n } while (p !== outerNode);\n\n if (!m) return null;\n\n if (hx === qx) return m; // hole touches outer segment; pick leftmost endpoint\n\n // look for points inside the triangle of hole point, segment intersection and endpoint;\n // if there are no points found, we have a valid connection;\n // otherwise choose the point of the minimum angle with the ray as connection point\n\n var stop = m,\n mx = m.x,\n my = m.y,\n tanMin = Infinity,\n tan;\n\n p = m;\n\n do {\n if (hx >= p.x && p.x >= mx && hx !== p.x &&\n pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) {\n\n tan = Math.abs(hy - p.y) / (hx - p.x); // tangential\n\n if (locallyInside(p, hole) &&\n (tan < tanMin || (tan === tanMin && (p.x > m.x || (p.x === m.x && sectorContainsSector(m, p)))))) {\n m = p;\n tanMin = tan;\n }\n }\n\n p = p.next;\n } while (p !== stop);\n\n return m;\n}\n\n// whether sector in vertex m contains sector in vertex p in the same coordinates\nfunction sectorContainsSector(m, p) {\n return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0;\n}\n\n// interlink polygon nodes in z-order\nfunction indexCurve(start, minX, minY, invSize) {\n var p = start;\n do {\n if (p.z === null) p.z = zOrder(p.x, p.y, minX, minY, invSize);\n p.prevZ = p.prev;\n p.nextZ = p.next;\n p = p.next;\n } while (p !== start);\n\n p.prevZ.nextZ = null;\n p.prevZ = null;\n\n sortLinked(p);\n}\n\n// Simon Tatham's linked list merge sort algorithm\n// http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html\nfunction sortLinked(list) {\n var i, p, q, e, tail, numMerges, pSize, qSize,\n inSize = 1;\n\n do {\n p = list;\n list = null;\n tail = null;\n numMerges = 0;\n\n while (p) {\n numMerges++;\n q = p;\n pSize = 0;\n for (i = 0; i < inSize; i++) {\n pSize++;\n q = q.nextZ;\n if (!q) break;\n }\n qSize = inSize;\n\n while (pSize > 0 || (qSize > 0 && q)) {\n\n if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) {\n e = p;\n p = p.nextZ;\n pSize--;\n } else {\n e = q;\n q = q.nextZ;\n qSize--;\n }\n\n if (tail) tail.nextZ = e;\n else list = e;\n\n e.prevZ = tail;\n tail = e;\n }\n\n p = q;\n }\n\n tail.nextZ = null;\n inSize *= 2;\n\n } while (numMerges > 1);\n\n return list;\n}\n\n// z-order of a point given coords and inverse of the longer side of data bbox\nfunction zOrder(x, y, minX, minY, invSize) {\n // coords are transformed into non-negative 15-bit integer range\n x = 32767 * (x - minX) * invSize;\n y = 32767 * (y - minY) * invSize;\n\n x = (x | (x << 8)) & 0x00FF00FF;\n x = (x | (x << 4)) & 0x0F0F0F0F;\n x = (x | (x << 2)) & 0x33333333;\n x = (x | (x << 1)) & 0x55555555;\n\n y = (y | (y << 8)) & 0x00FF00FF;\n y = (y | (y << 4)) & 0x0F0F0F0F;\n y = (y | (y << 2)) & 0x33333333;\n y = (y | (y << 1)) & 0x55555555;\n\n return x | (y << 1);\n}\n\n// find the leftmost node of a polygon ring\nfunction getLeftmost(start) {\n var p = start,\n leftmost = start;\n do {\n if (p.x < leftmost.x || (p.x === leftmost.x && p.y < leftmost.y)) leftmost = p;\n p = p.next;\n } while (p !== start);\n\n return leftmost;\n}\n\n// check if a point lies within a convex triangle\nfunction pointInTriangle(ax, ay, bx, by, cx, cy, px, py) {\n return (cx - px) * (ay - py) - (ax - px) * (cy - py) >= 0 &&\n (ax - px) * (by - py) - (bx - px) * (ay - py) >= 0 &&\n (bx - px) * (cy - py) - (cx - px) * (by - py) >= 0;\n}\n\n// check if a diagonal between two polygon nodes is valid (lies in polygon interior)\nfunction isValidDiagonal(a, b) {\n return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && // dones't intersect other edges\n (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && // locally visible\n (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors\n equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case\n}\n\n// signed area of a triangle\nfunction area(p, q, r) {\n return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y);\n}\n\n// check if two points are equal\nfunction equals(p1, p2) {\n return p1.x === p2.x && p1.y === p2.y;\n}\n\n// check if two segments intersect\nfunction intersects(p1, q1, p2, q2) {\n var o1 = sign(area(p1, q1, p2));\n var o2 = sign(area(p1, q1, q2));\n var o3 = sign(area(p2, q2, p1));\n var o4 = sign(area(p2, q2, q1));\n\n if (o1 !== o2 && o3 !== o4) return true; // general case\n\n if (o1 === 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p1q1\n if (o2 === 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p1q1\n if (o3 === 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p2q2\n if (o4 === 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p2q2\n\n return false;\n}\n\n// for collinear points p, q, r, check if point q lies on segment pr\nfunction onSegment(p, q, r) {\n return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y);\n}\n\nfunction sign(num) {\n return num > 0 ? 1 : num < 0 ? -1 : 0;\n}\n\n// check if a polygon diagonal intersects any polygon segments\nfunction intersectsPolygon(a, b) {\n var p = a;\n do {\n if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i &&\n intersects(p, p.next, a, b)) return true;\n p = p.next;\n } while (p !== a);\n\n return false;\n}\n\n// check if a polygon diagonal is locally inside the polygon\nfunction locallyInside(a, b) {\n return area(a.prev, a, a.next) < 0 ?\n area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 :\n area(a, b, a.prev) < 0 || area(a, a.next, b) < 0;\n}\n\n// check if the middle point of a polygon diagonal is inside the polygon\nfunction middleInside(a, b) {\n var p = a,\n inside = false,\n px = (a.x + b.x) / 2,\n py = (a.y + b.y) / 2;\n do {\n if (((p.y > py) !== (p.next.y > py)) && p.next.y !== p.y &&\n (px < (p.next.x - p.x) * (py - p.y) / (p.next.y - p.y) + p.x))\n inside = !inside;\n p = p.next;\n } while (p !== a);\n\n return inside;\n}\n\n// link two polygon vertices with a bridge; if the vertices belong to the same ring, it splits polygon into two;\n// if one belongs to the outer ring and another to a hole, it merges it into a single ring\nfunction splitPolygon(a, b) {\n var a2 = new Node(a.i, a.x, a.y),\n b2 = new Node(b.i, b.x, b.y),\n an = a.next,\n bp = b.prev;\n\n a.next = b;\n b.prev = a;\n\n a2.next = an;\n an.prev = a2;\n\n b2.next = a2;\n a2.prev = b2;\n\n bp.next = b2;\n b2.prev = bp;\n\n return b2;\n}\n\n// create a node and optionally link it with previous one (in a circular doubly linked list)\nfunction insertNode(i, x, y, last) {\n var p = new Node(i, x, y);\n\n if (!last) {\n p.prev = p;\n p.next = p;\n\n } else {\n p.next = last.next;\n p.prev = last;\n last.next.prev = p;\n last.next = p;\n }\n return p;\n}\n\nfunction removeNode(p) {\n p.next.prev = p.prev;\n p.prev.next = p.next;\n\n if (p.prevZ) p.prevZ.nextZ = p.nextZ;\n if (p.nextZ) p.nextZ.prevZ = p.prevZ;\n}\n\nfunction Node(i, x, y) {\n // vertex index in coordinates array\n this.i = i;\n\n // vertex coordinates\n this.x = x;\n this.y = y;\n\n // previous and next vertex nodes in a polygon ring\n this.prev = null;\n this.next = null;\n\n // z-order curve value\n this.z = null;\n\n // previous and next nodes in z-order\n this.prevZ = null;\n this.nextZ = null;\n\n // indicates whether this is a steiner point\n this.steiner = false;\n}\n\n// return a percentage difference between the polygon area and its triangulation area;\n// used to verify correctness of triangulation\nearcut.deviation = function (data, holeIndices, dim, triangles) {\n var hasHoles = holeIndices && holeIndices.length;\n var outerLen = hasHoles ? holeIndices[0] * dim : data.length;\n\n var polygonArea = Math.abs(signedArea(data, 0, outerLen, dim));\n if (hasHoles) {\n for (var i = 0, len = holeIndices.length; i < len; i++) {\n var start = holeIndices[i] * dim;\n var end = i < len - 1 ? holeIndices[i + 1] * dim : data.length;\n polygonArea -= Math.abs(signedArea(data, start, end, dim));\n }\n }\n\n var trianglesArea = 0;\n for (i = 0; i < triangles.length; i += 3) {\n var a = triangles[i] * dim;\n var b = triangles[i + 1] * dim;\n var c = triangles[i + 2] * dim;\n trianglesArea += Math.abs(\n (data[a] - data[c]) * (data[b + 1] - data[a + 1]) -\n (data[a] - data[b]) * (data[c + 1] - data[a + 1]));\n }\n\n return polygonArea === 0 && trianglesArea === 0 ? 0 :\n Math.abs((trianglesArea - polygonArea) / polygonArea);\n};\n\nfunction signedArea(data, start, end, dim) {\n var sum = 0;\n for (var i = start, j = end - dim; i < end; i += dim) {\n sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]);\n j = i;\n }\n return sum;\n}\n\n// turn a polygon in a multi-dimensional array form (e.g. as in GeoJSON) into a form Earcut accepts\nearcut.flatten = function (data) {\n var dim = data[0][0].length,\n result = {vertices: [], holes: [], dimensions: dim},\n holeIndex = 0;\n\n for (var i = 0; i < data.length; i++) {\n for (var j = 0; j < data[i].length; j++) {\n for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]);\n }\n if (i > 0) {\n holeIndex += data[i - 1].length;\n result.holes.push(holeIndex);\n }\n }\n return result;\n};\n","/*! https://mths.be/punycode v1.4.1 by @mathias */\n\n\n/** Highest positive signed 32-bit float value */\nvar maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1\n\n/** Bootstring parameters */\nvar base = 36;\nvar tMin = 1;\nvar tMax = 26;\nvar skew = 38;\nvar damp = 700;\nvar initialBias = 72;\nvar initialN = 128; // 0x80\nvar delimiter = '-'; // '\\x2D'\n\n/** Regular expressions */\nvar regexPunycode = /^xn--/;\nvar regexNonASCII = /[^\\x20-\\x7E]/; // unprintable ASCII chars + non-ASCII chars\nvar regexSeparators = /[\\x2E\\u3002\\uFF0E\\uFF61]/g; // RFC 3490 separators\n\n/** Error messages */\nvar errors = {\n 'overflow': 'Overflow: input needs wider integers to process',\n 'not-basic': 'Illegal input >= 0x80 (not a basic code point)',\n 'invalid-input': 'Invalid input'\n};\n\n/** Convenience shortcuts */\nvar baseMinusTMin = base - tMin;\nvar floor = Math.floor;\nvar stringFromCharCode = String.fromCharCode;\n\n/*--------------------------------------------------------------------------*/\n\n/**\n * A generic error utility function.\n * @private\n * @param {String} type The error type.\n * @returns {Error} Throws a `RangeError` with the applicable error message.\n */\nfunction error(type) {\n throw new RangeError(errors[type]);\n}\n\n/**\n * A generic `Array#map` utility function.\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} callback The function that gets called for every array\n * item.\n * @returns {Array} A new array of values returned by the callback function.\n */\nfunction map(array, fn) {\n var length = array.length;\n var result = [];\n while (length--) {\n result[length] = fn(array[length]);\n }\n return result;\n}\n\n/**\n * A simple `Array#map`-like wrapper to work with domain name strings or email\n * addresses.\n * @private\n * @param {String} domain The domain name or email address.\n * @param {Function} callback The function that gets called for every\n * character.\n * @returns {Array} A new string of characters returned by the callback\n * function.\n */\nfunction mapDomain(string, fn) {\n var parts = string.split('@');\n var result = '';\n if (parts.length > 1) {\n // In email addresses, only the domain name should be punycoded. Leave\n // the local part (i.e. everything up to `@`) intact.\n result = parts[0] + '@';\n string = parts[1];\n }\n // Avoid `split(regex)` for IE8 compatibility. See #17.\n string = string.replace(regexSeparators, '\\x2E');\n var labels = string.split('.');\n var encoded = map(labels, fn).join('.');\n return result + encoded;\n}\n\n/**\n * Creates an array containing the numeric code points of each Unicode\n * character in the string. While JavaScript uses UCS-2 internally,\n * this function will convert a pair of surrogate halves (each of which\n * UCS-2 exposes as separate characters) into a single code point,\n * matching UTF-16.\n * @see `punycode.ucs2.encode`\n * @see \n * @memberOf punycode.ucs2\n * @name decode\n * @param {String} string The Unicode input string (UCS-2).\n * @returns {Array} The new array of code points.\n */\nfunction ucs2decode(string) {\n var output = [],\n counter = 0,\n length = string.length,\n value,\n extra;\n while (counter < length) {\n value = string.charCodeAt(counter++);\n if (value >= 0xD800 && value <= 0xDBFF && counter < length) {\n // high surrogate, and there is a next character\n extra = string.charCodeAt(counter++);\n if ((extra & 0xFC00) == 0xDC00) { // low surrogate\n output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000);\n } else {\n // unmatched surrogate; only append this code unit, in case the next\n // code unit is the high surrogate of a surrogate pair\n output.push(value);\n counter--;\n }\n } else {\n output.push(value);\n }\n }\n return output;\n}\n\n/**\n * Creates a string based on an array of numeric code points.\n * @see `punycode.ucs2.decode`\n * @memberOf punycode.ucs2\n * @name encode\n * @param {Array} codePoints The array of numeric code points.\n * @returns {String} The new Unicode string (UCS-2).\n */\nfunction ucs2encode(array) {\n return map(array, function(value) {\n var output = '';\n if (value > 0xFFFF) {\n value -= 0x10000;\n output += stringFromCharCode(value >>> 10 & 0x3FF | 0xD800);\n value = 0xDC00 | value & 0x3FF;\n }\n output += stringFromCharCode(value);\n return output;\n }).join('');\n}\n\n/**\n * Converts a basic code point into a digit/integer.\n * @see `digitToBasic()`\n * @private\n * @param {Number} codePoint The basic numeric code point value.\n * @returns {Number} The numeric value of a basic code point (for use in\n * representing integers) in the range `0` to `base - 1`, or `base` if\n * the code point does not represent a value.\n */\nfunction basicToDigit(codePoint) {\n if (codePoint - 48 < 10) {\n return codePoint - 22;\n }\n if (codePoint - 65 < 26) {\n return codePoint - 65;\n }\n if (codePoint - 97 < 26) {\n return codePoint - 97;\n }\n return base;\n}\n\n/**\n * Converts a digit/integer into a basic code point.\n * @see `basicToDigit()`\n * @private\n * @param {Number} digit The numeric value of a basic code point.\n * @returns {Number} The basic code point whose value (when used for\n * representing integers) is `digit`, which needs to be in the range\n * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is\n * used; else, the lowercase form is used. The behavior is undefined\n * if `flag` is non-zero and `digit` has no uppercase form.\n */\nfunction digitToBasic(digit, flag) {\n // 0..25 map to ASCII a..z or A..Z\n // 26..35 map to ASCII 0..9\n return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5);\n}\n\n/**\n * Bias adaptation function as per section 3.4 of RFC 3492.\n * https://tools.ietf.org/html/rfc3492#section-3.4\n * @private\n */\nfunction adapt(delta, numPoints, firstTime) {\n var k = 0;\n delta = firstTime ? floor(delta / damp) : delta >> 1;\n delta += floor(delta / numPoints);\n for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) {\n delta = floor(delta / baseMinusTMin);\n }\n return floor(k + (baseMinusTMin + 1) * delta / (delta + skew));\n}\n\n/**\n * Converts a Punycode string of ASCII-only symbols to a string of Unicode\n * symbols.\n * @memberOf punycode\n * @param {String} input The Punycode string of ASCII-only symbols.\n * @returns {String} The resulting string of Unicode symbols.\n */\nexport function decode(input) {\n // Don't use UCS-2\n var output = [],\n inputLength = input.length,\n out,\n i = 0,\n n = initialN,\n bias = initialBias,\n basic,\n j,\n index,\n oldi,\n w,\n k,\n digit,\n t,\n /** Cached calculation results */\n baseMinusT;\n\n // Handle the basic code points: let `basic` be the number of input code\n // points before the last delimiter, or `0` if there is none, then copy\n // the first basic code points to the output.\n\n basic = input.lastIndexOf(delimiter);\n if (basic < 0) {\n basic = 0;\n }\n\n for (j = 0; j < basic; ++j) {\n // if it's not a basic code point\n if (input.charCodeAt(j) >= 0x80) {\n error('not-basic');\n }\n output.push(input.charCodeAt(j));\n }\n\n // Main decoding loop: start just after the last delimiter if any basic code\n // points were copied; start at the beginning otherwise.\n\n for (index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */ ) {\n\n // `index` is the index of the next character to be consumed.\n // Decode a generalized variable-length integer into `delta`,\n // which gets added to `i`. The overflow checking is easier\n // if we increase `i` as we go, then subtract off its starting\n // value at the end to obtain `delta`.\n for (oldi = i, w = 1, k = base; /* no condition */ ; k += base) {\n\n if (index >= inputLength) {\n error('invalid-input');\n }\n\n digit = basicToDigit(input.charCodeAt(index++));\n\n if (digit >= base || digit > floor((maxInt - i) / w)) {\n error('overflow');\n }\n\n i += digit * w;\n t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n\n if (digit < t) {\n break;\n }\n\n baseMinusT = base - t;\n if (w > floor(maxInt / baseMinusT)) {\n error('overflow');\n }\n\n w *= baseMinusT;\n\n }\n\n out = output.length + 1;\n bias = adapt(i - oldi, out, oldi == 0);\n\n // `i` was supposed to wrap around from `out` to `0`,\n // incrementing `n` each time, so we'll fix that now:\n if (floor(i / out) > maxInt - n) {\n error('overflow');\n }\n\n n += floor(i / out);\n i %= out;\n\n // Insert `n` at position `i` of the output\n output.splice(i++, 0, n);\n\n }\n\n return ucs2encode(output);\n}\n\n/**\n * Converts a string of Unicode symbols (e.g. a domain name label) to a\n * Punycode string of ASCII-only symbols.\n * @memberOf punycode\n * @param {String} input The string of Unicode symbols.\n * @returns {String} The resulting Punycode string of ASCII-only symbols.\n */\nexport function encode(input) {\n var n,\n delta,\n handledCPCount,\n basicLength,\n bias,\n j,\n m,\n q,\n k,\n t,\n currentValue,\n output = [],\n /** `inputLength` will hold the number of code points in `input`. */\n inputLength,\n /** Cached calculation results */\n handledCPCountPlusOne,\n baseMinusT,\n qMinusT;\n\n // Convert the input in UCS-2 to Unicode\n input = ucs2decode(input);\n\n // Cache the length\n inputLength = input.length;\n\n // Initialize the state\n n = initialN;\n delta = 0;\n bias = initialBias;\n\n // Handle the basic code points\n for (j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n if (currentValue < 0x80) {\n output.push(stringFromCharCode(currentValue));\n }\n }\n\n handledCPCount = basicLength = output.length;\n\n // `handledCPCount` is the number of code points that have been handled;\n // `basicLength` is the number of basic code points.\n\n // Finish the basic string - if it is not empty - with a delimiter\n if (basicLength) {\n output.push(delimiter);\n }\n\n // Main encoding loop:\n while (handledCPCount < inputLength) {\n\n // All non-basic code points < n have been handled already. Find the next\n // larger one:\n for (m = maxInt, j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n if (currentValue >= n && currentValue < m) {\n m = currentValue;\n }\n }\n\n // Increase `delta` enough to advance the decoder's state to ,\n // but guard against overflow\n handledCPCountPlusOne = handledCPCount + 1;\n if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) {\n error('overflow');\n }\n\n delta += (m - n) * handledCPCountPlusOne;\n n = m;\n\n for (j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n\n if (currentValue < n && ++delta > maxInt) {\n error('overflow');\n }\n\n if (currentValue == n) {\n // Represent delta as a generalized variable-length integer\n for (q = delta, k = base; /* no condition */ ; k += base) {\n t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n if (q < t) {\n break;\n }\n qMinusT = q - t;\n baseMinusT = base - t;\n output.push(\n stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0))\n );\n q = floor(qMinusT / baseMinusT);\n }\n\n output.push(stringFromCharCode(digitToBasic(q, 0)));\n bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength);\n delta = 0;\n ++handledCPCount;\n }\n }\n\n ++delta;\n ++n;\n\n }\n return output.join('');\n}\n\n/**\n * Converts a Punycode string representing a domain name or an email address\n * to Unicode. Only the Punycoded parts of the input will be converted, i.e.\n * it doesn't matter if you call it on a string that has already been\n * converted to Unicode.\n * @memberOf punycode\n * @param {String} input The Punycoded domain name or email address to\n * convert to Unicode.\n * @returns {String} The Unicode representation of the given Punycode\n * string.\n */\nexport function toUnicode(input) {\n return mapDomain(input, function(string) {\n return regexPunycode.test(string) ?\n decode(string.slice(4).toLowerCase()) :\n string;\n });\n}\n\n/**\n * Converts a Unicode string representing a domain name or an email address to\n * Punycode. Only the non-ASCII parts of the domain name will be converted,\n * i.e. it doesn't matter if you call it with a domain that's already in\n * ASCII.\n * @memberOf punycode\n * @param {String} input The domain name or email address to convert, as a\n * Unicode string.\n * @returns {String} The Punycode representation of the given domain name or\n * email address.\n */\nexport function toASCII(input) {\n return mapDomain(input, function(string) {\n return regexNonASCII.test(string) ?\n 'xn--' + encode(string) :\n string;\n });\n}\nexport var version = '1.4.1';\n/**\n * An object of methods to convert from JavaScript's internal character\n * representation (UCS-2) to Unicode code points, and back.\n * @see \n * @memberOf punycode\n * @type Object\n */\n\nexport var ucs2 = {\n decode: ucs2decode,\n encode: ucs2encode\n};\nexport default {\n version: version,\n ucs2: ucs2,\n toASCII: toASCII,\n toUnicode: toUnicode,\n encode: encode,\n decode: decode\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\nimport process from 'process';\nvar formatRegExp = /%[sdj%]/g;\nexport function format(f) {\n if (!isString(f)) {\n var objects = [];\n for (var i = 0; i < arguments.length; i++) {\n objects.push(inspect(arguments[i]));\n }\n return objects.join(' ');\n }\n\n var i = 1;\n var args = arguments;\n var len = args.length;\n var str = String(f).replace(formatRegExp, function(x) {\n if (x === '%%') return '%';\n if (i >= len) return x;\n switch (x) {\n case '%s': return String(args[i++]);\n case '%d': return Number(args[i++]);\n case '%j':\n try {\n return JSON.stringify(args[i++]);\n } catch (_) {\n return '[Circular]';\n }\n default:\n return x;\n }\n });\n for (var x = args[i]; i < len; x = args[++i]) {\n if (isNull(x) || !isObject(x)) {\n str += ' ' + x;\n } else {\n str += ' ' + inspect(x);\n }\n }\n return str;\n};\n\n\n// Mark that a method should not be used.\n// Returns a modified function which warns once by default.\n// If --no-deprecation is set, then it is a no-op.\nexport function deprecate(fn, msg) {\n // Allow for deprecating things in the process of starting up.\n if (isUndefined(global.process)) {\n return function() {\n return deprecate(fn, msg).apply(this, arguments);\n };\n }\n\n if (process.noDeprecation === true) {\n return fn;\n }\n\n var warned = false;\n function deprecated() {\n if (!warned) {\n if (process.throwDeprecation) {\n throw new Error(msg);\n } else if (process.traceDeprecation) {\n console.trace(msg);\n } else {\n console.error(msg);\n }\n warned = true;\n }\n return fn.apply(this, arguments);\n }\n\n return deprecated;\n};\n\n\nvar debugs = {};\nvar debugEnviron;\nexport function debuglog(set) {\n if (isUndefined(debugEnviron))\n debugEnviron = process.env.NODE_DEBUG || '';\n set = set.toUpperCase();\n if (!debugs[set]) {\n if (new RegExp('\\\\b' + set + '\\\\b', 'i').test(debugEnviron)) {\n var pid = 0;\n debugs[set] = function() {\n var msg = format.apply(null, arguments);\n console.error('%s %d: %s', set, pid, msg);\n };\n } else {\n debugs[set] = function() {};\n }\n }\n return debugs[set];\n};\n\n\n/**\n * Echos the value of a value. Trys to print the value out\n * in the best way possible given the different types.\n *\n * @param {Object} obj The object to print out.\n * @param {Object} opts Optional options object that alters the output.\n */\n/* legacy: obj, showHidden, depth, colors*/\nexport function inspect(obj, opts) {\n // default options\n var ctx = {\n seen: [],\n stylize: stylizeNoColor\n };\n // legacy...\n if (arguments.length >= 3) ctx.depth = arguments[2];\n if (arguments.length >= 4) ctx.colors = arguments[3];\n if (isBoolean(opts)) {\n // legacy...\n ctx.showHidden = opts;\n } else if (opts) {\n // got an \"options\" object\n _extend(ctx, opts);\n }\n // set default options\n if (isUndefined(ctx.showHidden)) ctx.showHidden = false;\n if (isUndefined(ctx.depth)) ctx.depth = 2;\n if (isUndefined(ctx.colors)) ctx.colors = false;\n if (isUndefined(ctx.customInspect)) ctx.customInspect = true;\n if (ctx.colors) ctx.stylize = stylizeWithColor;\n return formatValue(ctx, obj, ctx.depth);\n}\n\n// http://en.wikipedia.org/wiki/ANSI_escape_code#graphics\ninspect.colors = {\n 'bold' : [1, 22],\n 'italic' : [3, 23],\n 'underline' : [4, 24],\n 'inverse' : [7, 27],\n 'white' : [37, 39],\n 'grey' : [90, 39],\n 'black' : [30, 39],\n 'blue' : [34, 39],\n 'cyan' : [36, 39],\n 'green' : [32, 39],\n 'magenta' : [35, 39],\n 'red' : [31, 39],\n 'yellow' : [33, 39]\n};\n\n// Don't use 'blue' not visible on cmd.exe\ninspect.styles = {\n 'special': 'cyan',\n 'number': 'yellow',\n 'boolean': 'yellow',\n 'undefined': 'grey',\n 'null': 'bold',\n 'string': 'green',\n 'date': 'magenta',\n // \"name\": intentionally not styling\n 'regexp': 'red'\n};\n\n\nfunction stylizeWithColor(str, styleType) {\n var style = inspect.styles[styleType];\n\n if (style) {\n return '\\u001b[' + inspect.colors[style][0] + 'm' + str +\n '\\u001b[' + inspect.colors[style][1] + 'm';\n } else {\n return str;\n }\n}\n\n\nfunction stylizeNoColor(str, styleType) {\n return str;\n}\n\n\nfunction arrayToHash(array) {\n var hash = {};\n\n array.forEach(function(val, idx) {\n hash[val] = true;\n });\n\n return hash;\n}\n\n\nfunction formatValue(ctx, value, recurseTimes) {\n // Provide a hook for user-specified inspect functions.\n // Check that value is an object with an inspect function on it\n if (ctx.customInspect &&\n value &&\n isFunction(value.inspect) &&\n // Filter out the util module, it's inspect function is special\n value.inspect !== inspect &&\n // Also filter out any prototype objects using the circular check.\n !(value.constructor && value.constructor.prototype === value)) {\n var ret = value.inspect(recurseTimes, ctx);\n if (!isString(ret)) {\n ret = formatValue(ctx, ret, recurseTimes);\n }\n return ret;\n }\n\n // Primitive types cannot have properties\n var primitive = formatPrimitive(ctx, value);\n if (primitive) {\n return primitive;\n }\n\n // Look up the keys of the object.\n var keys = Object.keys(value);\n var visibleKeys = arrayToHash(keys);\n\n if (ctx.showHidden) {\n keys = Object.getOwnPropertyNames(value);\n }\n\n // IE doesn't make error fields non-enumerable\n // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx\n if (isError(value)\n && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) {\n return formatError(value);\n }\n\n // Some type of object without properties can be shortcutted.\n if (keys.length === 0) {\n if (isFunction(value)) {\n var name = value.name ? ': ' + value.name : '';\n return ctx.stylize('[Function' + name + ']', 'special');\n }\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n }\n if (isDate(value)) {\n return ctx.stylize(Date.prototype.toString.call(value), 'date');\n }\n if (isError(value)) {\n return formatError(value);\n }\n }\n\n var base = '', array = false, braces = ['{', '}'];\n\n // Make Array say that they are Array\n if (isArray(value)) {\n array = true;\n braces = ['[', ']'];\n }\n\n // Make functions say that they are functions\n if (isFunction(value)) {\n var n = value.name ? ': ' + value.name : '';\n base = ' [Function' + n + ']';\n }\n\n // Make RegExps say that they are RegExps\n if (isRegExp(value)) {\n base = ' ' + RegExp.prototype.toString.call(value);\n }\n\n // Make dates with properties first say the date\n if (isDate(value)) {\n base = ' ' + Date.prototype.toUTCString.call(value);\n }\n\n // Make error with message first say the error\n if (isError(value)) {\n base = ' ' + formatError(value);\n }\n\n if (keys.length === 0 && (!array || value.length == 0)) {\n return braces[0] + base + braces[1];\n }\n\n if (recurseTimes < 0) {\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n } else {\n return ctx.stylize('[Object]', 'special');\n }\n }\n\n ctx.seen.push(value);\n\n var output;\n if (array) {\n output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);\n } else {\n output = keys.map(function(key) {\n return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array);\n });\n }\n\n ctx.seen.pop();\n\n return reduceToSingleString(output, base, braces);\n}\n\n\nfunction formatPrimitive(ctx, value) {\n if (isUndefined(value))\n return ctx.stylize('undefined', 'undefined');\n if (isString(value)) {\n var simple = '\\'' + JSON.stringify(value).replace(/^\"|\"$/g, '')\n .replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"') + '\\'';\n return ctx.stylize(simple, 'string');\n }\n if (isNumber(value))\n return ctx.stylize('' + value, 'number');\n if (isBoolean(value))\n return ctx.stylize('' + value, 'boolean');\n // For some reason typeof null is \"object\", so special case here.\n if (isNull(value))\n return ctx.stylize('null', 'null');\n}\n\n\nfunction formatError(value) {\n return '[' + Error.prototype.toString.call(value) + ']';\n}\n\n\nfunction formatArray(ctx, value, recurseTimes, visibleKeys, keys) {\n var output = [];\n for (var i = 0, l = value.length; i < l; ++i) {\n if (hasOwnProperty(value, String(i))) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n String(i), true));\n } else {\n output.push('');\n }\n }\n keys.forEach(function(key) {\n if (!key.match(/^\\d+$/)) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n key, true));\n }\n });\n return output;\n}\n\n\nfunction formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {\n var name, str, desc;\n desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] };\n if (desc.get) {\n if (desc.set) {\n str = ctx.stylize('[Getter/Setter]', 'special');\n } else {\n str = ctx.stylize('[Getter]', 'special');\n }\n } else {\n if (desc.set) {\n str = ctx.stylize('[Setter]', 'special');\n }\n }\n if (!hasOwnProperty(visibleKeys, key)) {\n name = '[' + key + ']';\n }\n if (!str) {\n if (ctx.seen.indexOf(desc.value) < 0) {\n if (isNull(recurseTimes)) {\n str = formatValue(ctx, desc.value, null);\n } else {\n str = formatValue(ctx, desc.value, recurseTimes - 1);\n }\n if (str.indexOf('\\n') > -1) {\n if (array) {\n str = str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n').substr(2);\n } else {\n str = '\\n' + str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n');\n }\n }\n } else {\n str = ctx.stylize('[Circular]', 'special');\n }\n }\n if (isUndefined(name)) {\n if (array && key.match(/^\\d+$/)) {\n return str;\n }\n name = JSON.stringify('' + key);\n if (name.match(/^\"([a-zA-Z_][a-zA-Z_0-9]*)\"$/)) {\n name = name.substr(1, name.length - 2);\n name = ctx.stylize(name, 'name');\n } else {\n name = name.replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"')\n .replace(/(^\"|\"$)/g, \"'\");\n name = ctx.stylize(name, 'string');\n }\n }\n\n return name + ': ' + str;\n}\n\n\nfunction reduceToSingleString(output, base, braces) {\n var numLinesEst = 0;\n var length = output.reduce(function(prev, cur) {\n numLinesEst++;\n if (cur.indexOf('\\n') >= 0) numLinesEst++;\n return prev + cur.replace(/\\u001b\\[\\d\\d?m/g, '').length + 1;\n }, 0);\n\n if (length > 60) {\n return braces[0] +\n (base === '' ? '' : base + '\\n ') +\n ' ' +\n output.join(',\\n ') +\n ' ' +\n braces[1];\n }\n\n return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];\n}\n\n\n// NOTE: These type checking functions intentionally don't use `instanceof`\n// because it is fragile and can be easily faked with `Object.create()`.\nexport function isArray(ar) {\n return Array.isArray(ar);\n}\n\nexport function isBoolean(arg) {\n return typeof arg === 'boolean';\n}\n\nexport function isNull(arg) {\n return arg === null;\n}\n\nexport function isNullOrUndefined(arg) {\n return arg == null;\n}\n\nexport function isNumber(arg) {\n return typeof arg === 'number';\n}\n\nexport function isString(arg) {\n return typeof arg === 'string';\n}\n\nexport function isSymbol(arg) {\n return typeof arg === 'symbol';\n}\n\nexport function isUndefined(arg) {\n return arg === void 0;\n}\n\nexport function isRegExp(re) {\n return isObject(re) && objectToString(re) === '[object RegExp]';\n}\n\nexport function isObject(arg) {\n return typeof arg === 'object' && arg !== null;\n}\n\nexport function isDate(d) {\n return isObject(d) && objectToString(d) === '[object Date]';\n}\n\nexport function isError(e) {\n return isObject(e) &&\n (objectToString(e) === '[object Error]' || e instanceof Error);\n}\n\nexport function isFunction(arg) {\n return typeof arg === 'function';\n}\n\nexport function isPrimitive(arg) {\n return arg === null ||\n typeof arg === 'boolean' ||\n typeof arg === 'number' ||\n typeof arg === 'string' ||\n typeof arg === 'symbol' || // ES6 symbol\n typeof arg === 'undefined';\n}\n\nexport function isBuffer(maybeBuf) {\n return Buffer.isBuffer(maybeBuf);\n}\n\nfunction objectToString(o) {\n return Object.prototype.toString.call(o);\n}\n\n\nfunction pad(n) {\n return n < 10 ? '0' + n.toString(10) : n.toString(10);\n}\n\n\nvar months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep',\n 'Oct', 'Nov', 'Dec'];\n\n// 26 Feb 16:19:34\nfunction timestamp() {\n var d = new Date();\n var time = [pad(d.getHours()),\n pad(d.getMinutes()),\n pad(d.getSeconds())].join(':');\n return [d.getDate(), months[d.getMonth()], time].join(' ');\n}\n\n\n// log is just a thin wrapper to console.log that prepends a timestamp\nexport function log() {\n console.log('%s - %s', timestamp(), format.apply(null, arguments));\n}\n\n\n/**\n * Inherit the prototype methods from one constructor into another.\n *\n * The Function.prototype.inherits from lang.js rewritten as a standalone\n * function (not on Function.prototype). NOTE: If this file is to be loaded\n * during bootstrapping this function needs to be rewritten using some native\n * functions as prototype setup using normal JavaScript does not work as\n * expected during bootstrapping (see mirror.js in r114903).\n *\n * @param {function} ctor Constructor function which needs to inherit the\n * prototype.\n * @param {function} superCtor Constructor function to inherit prototype from.\n */\nimport inherits from './inherits';\nexport {inherits}\n\nexport function _extend(origin, add) {\n // Don't do anything if add isn't an object\n if (!add || !isObject(add)) return origin;\n\n var keys = Object.keys(add);\n var i = keys.length;\n while (i--) {\n origin[keys[i]] = add[keys[i]];\n }\n return origin;\n};\n\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\n\nexport default {\n inherits: inherits,\n _extend: _extend,\n log: log,\n isBuffer: isBuffer,\n isPrimitive: isPrimitive,\n isFunction: isFunction,\n isError: isError,\n isDate: isDate,\n isObject: isObject,\n isRegExp: isRegExp,\n isUndefined: isUndefined,\n isSymbol: isSymbol,\n isString: isString,\n isNumber: isNumber,\n isNullOrUndefined: isNullOrUndefined,\n isNull: isNull,\n isBoolean: isBoolean,\n isArray: isArray,\n inspect: inspect,\n deprecate: deprecate,\n format: format,\n debuglog: debuglog\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n// If obj.hasOwnProperty has been overridden, then calling\n// obj.hasOwnProperty(prop) will break.\n// See: https://github.com/joyent/node/issues/1707\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\nvar isArray = Array.isArray || function (xs) {\n return Object.prototype.toString.call(xs) === '[object Array]';\n};\nfunction stringifyPrimitive(v) {\n switch (typeof v) {\n case 'string':\n return v;\n\n case 'boolean':\n return v ? 'true' : 'false';\n\n case 'number':\n return isFinite(v) ? v : '';\n\n default:\n return '';\n }\n}\n\nexport function stringify (obj, sep, eq, name) {\n sep = sep || '&';\n eq = eq || '=';\n if (obj === null) {\n obj = undefined;\n }\n\n if (typeof obj === 'object') {\n return map(objectKeys(obj), function(k) {\n var ks = encodeURIComponent(stringifyPrimitive(k)) + eq;\n if (isArray(obj[k])) {\n return map(obj[k], function(v) {\n return ks + encodeURIComponent(stringifyPrimitive(v));\n }).join(sep);\n } else {\n return ks + encodeURIComponent(stringifyPrimitive(obj[k]));\n }\n }).join(sep);\n\n }\n\n if (!name) return '';\n return encodeURIComponent(stringifyPrimitive(name)) + eq +\n encodeURIComponent(stringifyPrimitive(obj));\n};\n\nfunction map (xs, f) {\n if (xs.map) return xs.map(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n res.push(f(xs[i], i));\n }\n return res;\n}\n\nvar objectKeys = Object.keys || function (obj) {\n var res = [];\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key);\n }\n return res;\n};\n\nexport function parse(qs, sep, eq, options) {\n sep = sep || '&';\n eq = eq || '=';\n var obj = {};\n\n if (typeof qs !== 'string' || qs.length === 0) {\n return obj;\n }\n\n var regexp = /\\+/g;\n qs = qs.split(sep);\n\n var maxKeys = 1000;\n if (options && typeof options.maxKeys === 'number') {\n maxKeys = options.maxKeys;\n }\n\n var len = qs.length;\n // maxKeys <= 0 means that we should not limit keys count\n if (maxKeys > 0 && len > maxKeys) {\n len = maxKeys;\n }\n\n for (var i = 0; i < len; ++i) {\n var x = qs[i].replace(regexp, '%20'),\n idx = x.indexOf(eq),\n kstr, vstr, k, v;\n\n if (idx >= 0) {\n kstr = x.substr(0, idx);\n vstr = x.substr(idx + 1);\n } else {\n kstr = x;\n vstr = '';\n }\n\n k = decodeURIComponent(kstr);\n v = decodeURIComponent(vstr);\n\n if (!hasOwnProperty(obj, k)) {\n obj[k] = v;\n } else if (isArray(obj[k])) {\n obj[k].push(v);\n } else {\n obj[k] = [obj[k], v];\n }\n }\n\n return obj;\n};\nexport default {\n encode: stringify,\n stringify: stringify,\n decode: parse,\n parse: parse\n}\nexport {stringify as encode, parse as decode};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nimport {toASCII} from 'punycode';\nimport {isObject,isString,isNullOrUndefined,isNull} from 'util';\nimport {parse as qsParse,stringify as qsStringify} from 'querystring';\nexport {\n urlParse as parse,\n urlResolve as resolve,\n urlResolveObject as resolveObject,\n urlFormat as format\n};\nexport default {\n parse: urlParse,\n resolve: urlResolve,\n resolveObject: urlResolveObject,\n format: urlFormat,\n Url: Url\n}\nexport function Url() {\n this.protocol = null;\n this.slashes = null;\n this.auth = null;\n this.host = null;\n this.port = null;\n this.hostname = null;\n this.hash = null;\n this.search = null;\n this.query = null;\n this.pathname = null;\n this.path = null;\n this.href = null;\n}\n\n// Reference: RFC 3986, RFC 1808, RFC 2396\n\n// define these here so at least they only have to be\n// compiled once on the first module load.\nvar protocolPattern = /^([a-z0-9.+-]+:)/i,\n portPattern = /:[0-9]*$/,\n\n // Special case for a simple path URL\n simplePathPattern = /^(\\/\\/?(?!\\/)[^\\?\\s]*)(\\?[^\\s]*)?$/,\n\n // RFC 2396: characters reserved for delimiting URLs.\n // We actually just auto-escape these.\n delims = ['<', '>', '\"', '`', ' ', '\\r', '\\n', '\\t'],\n\n // RFC 2396: characters not allowed for various reasons.\n unwise = ['{', '}', '|', '\\\\', '^', '`'].concat(delims),\n\n // Allowed by RFCs, but cause of XSS attacks. Always escape these.\n autoEscape = ['\\''].concat(unwise),\n // Characters that are never ever allowed in a hostname.\n // Note that any invalid chars are also handled, but these\n // are the ones that are *expected* to be seen, so we fast-path\n // them.\n nonHostChars = ['%', '/', '?', ';', '#'].concat(autoEscape),\n hostEndingChars = ['/', '?', '#'],\n hostnameMaxLen = 255,\n hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/,\n hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/,\n // protocols that can allow \"unsafe\" and \"unwise\" chars.\n unsafeProtocol = {\n 'javascript': true,\n 'javascript:': true\n },\n // protocols that never have a hostname.\n hostlessProtocol = {\n 'javascript': true,\n 'javascript:': true\n },\n // protocols that always contain a // bit.\n slashedProtocol = {\n 'http': true,\n 'https': true,\n 'ftp': true,\n 'gopher': true,\n 'file': true,\n 'http:': true,\n 'https:': true,\n 'ftp:': true,\n 'gopher:': true,\n 'file:': true\n };\n\nfunction urlParse(url, parseQueryString, slashesDenoteHost) {\n if (url && isObject(url) && url instanceof Url) return url;\n\n var u = new Url;\n u.parse(url, parseQueryString, slashesDenoteHost);\n return u;\n}\nUrl.prototype.parse = function(url, parseQueryString, slashesDenoteHost) {\n return parse(this, url, parseQueryString, slashesDenoteHost);\n}\n\nfunction parse(self, url, parseQueryString, slashesDenoteHost) {\n if (!isString(url)) {\n throw new TypeError('Parameter \\'url\\' must be a string, not ' + typeof url);\n }\n\n // Copy chrome, IE, opera backslash-handling behavior.\n // Back slashes before the query string get converted to forward slashes\n // See: https://code.google.com/p/chromium/issues/detail?id=25916\n var queryIndex = url.indexOf('?'),\n splitter =\n (queryIndex !== -1 && queryIndex < url.indexOf('#')) ? '?' : '#',\n uSplit = url.split(splitter),\n slashRegex = /\\\\/g;\n uSplit[0] = uSplit[0].replace(slashRegex, '/');\n url = uSplit.join(splitter);\n\n var rest = url;\n\n // trim before proceeding.\n // This is to support parse stuff like \" http://foo.com \\n\"\n rest = rest.trim();\n\n if (!slashesDenoteHost && url.split('#').length === 1) {\n // Try fast path regexp\n var simplePath = simplePathPattern.exec(rest);\n if (simplePath) {\n self.path = rest;\n self.href = rest;\n self.pathname = simplePath[1];\n if (simplePath[2]) {\n self.search = simplePath[2];\n if (parseQueryString) {\n self.query = qsParse(self.search.substr(1));\n } else {\n self.query = self.search.substr(1);\n }\n } else if (parseQueryString) {\n self.search = '';\n self.query = {};\n }\n return self;\n }\n }\n\n var proto = protocolPattern.exec(rest);\n if (proto) {\n proto = proto[0];\n var lowerProto = proto.toLowerCase();\n self.protocol = lowerProto;\n rest = rest.substr(proto.length);\n }\n\n // figure out if it's got a host\n // user@server is *always* interpreted as a hostname, and url\n // resolution will treat //foo/bar as host=foo,path=bar because that's\n // how the browser resolves relative URLs.\n if (slashesDenoteHost || proto || rest.match(/^\\/\\/[^@\\/]+@[^@\\/]+/)) {\n var slashes = rest.substr(0, 2) === '//';\n if (slashes && !(proto && hostlessProtocol[proto])) {\n rest = rest.substr(2);\n self.slashes = true;\n }\n }\n var i, hec, l, p;\n if (!hostlessProtocol[proto] &&\n (slashes || (proto && !slashedProtocol[proto]))) {\n\n // there's a hostname.\n // the first instance of /, ?, ;, or # ends the host.\n //\n // If there is an @ in the hostname, then non-host chars *are* allowed\n // to the left of the last @ sign, unless some host-ending character\n // comes *before* the @-sign.\n // URLs are obnoxious.\n //\n // ex:\n // http://a@b@c/ => user:a@b host:c\n // http://a@b?@c => user:a host:c path:/?@c\n\n // v0.12 TODO(isaacs): This is not quite how Chrome does things.\n // Review our test case against browsers more comprehensively.\n\n // find the first instance of any hostEndingChars\n var hostEnd = -1;\n for (i = 0; i < hostEndingChars.length; i++) {\n hec = rest.indexOf(hostEndingChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd))\n hostEnd = hec;\n }\n\n // at this point, either we have an explicit point where the\n // auth portion cannot go past, or the last @ char is the decider.\n var auth, atSign;\n if (hostEnd === -1) {\n // atSign can be anywhere.\n atSign = rest.lastIndexOf('@');\n } else {\n // atSign must be in auth portion.\n // http://a@b/c@d => host:b auth:a path:/c@d\n atSign = rest.lastIndexOf('@', hostEnd);\n }\n\n // Now we have a portion which is definitely the auth.\n // Pull that off.\n if (atSign !== -1) {\n auth = rest.slice(0, atSign);\n rest = rest.slice(atSign + 1);\n self.auth = decodeURIComponent(auth);\n }\n\n // the host is the remaining to the left of the first non-host char\n hostEnd = -1;\n for (i = 0; i < nonHostChars.length; i++) {\n hec = rest.indexOf(nonHostChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd))\n hostEnd = hec;\n }\n // if we still have not hit it, then the entire thing is a host.\n if (hostEnd === -1)\n hostEnd = rest.length;\n\n self.host = rest.slice(0, hostEnd);\n rest = rest.slice(hostEnd);\n\n // pull out port.\n parseHost(self);\n\n // we've indicated that there is a hostname,\n // so even if it's empty, it has to be present.\n self.hostname = self.hostname || '';\n\n // if hostname begins with [ and ends with ]\n // assume that it's an IPv6 address.\n var ipv6Hostname = self.hostname[0] === '[' &&\n self.hostname[self.hostname.length - 1] === ']';\n\n // validate a little.\n if (!ipv6Hostname) {\n var hostparts = self.hostname.split(/\\./);\n for (i = 0, l = hostparts.length; i < l; i++) {\n var part = hostparts[i];\n if (!part) continue;\n if (!part.match(hostnamePartPattern)) {\n var newpart = '';\n for (var j = 0, k = part.length; j < k; j++) {\n if (part.charCodeAt(j) > 127) {\n // we replace non-ASCII char with a temporary placeholder\n // we need this to make sure size of hostname is not\n // broken by replacing non-ASCII by nothing\n newpart += 'x';\n } else {\n newpart += part[j];\n }\n }\n // we test again with ASCII char only\n if (!newpart.match(hostnamePartPattern)) {\n var validParts = hostparts.slice(0, i);\n var notHost = hostparts.slice(i + 1);\n var bit = part.match(hostnamePartStart);\n if (bit) {\n validParts.push(bit[1]);\n notHost.unshift(bit[2]);\n }\n if (notHost.length) {\n rest = '/' + notHost.join('.') + rest;\n }\n self.hostname = validParts.join('.');\n break;\n }\n }\n }\n }\n\n if (self.hostname.length > hostnameMaxLen) {\n self.hostname = '';\n } else {\n // hostnames are always lower case.\n self.hostname = self.hostname.toLowerCase();\n }\n\n if (!ipv6Hostname) {\n // IDNA Support: Returns a punycoded representation of \"domain\".\n // It only converts parts of the domain name that\n // have non-ASCII characters, i.e. it doesn't matter if\n // you call it with a domain that already is ASCII-only.\n self.hostname = toASCII(self.hostname);\n }\n\n p = self.port ? ':' + self.port : '';\n var h = self.hostname || '';\n self.host = h + p;\n self.href += self.host;\n\n // strip [ and ] from the hostname\n // the host field still retains them, though\n if (ipv6Hostname) {\n self.hostname = self.hostname.substr(1, self.hostname.length - 2);\n if (rest[0] !== '/') {\n rest = '/' + rest;\n }\n }\n }\n\n // now rest is set to the post-host stuff.\n // chop off any delim chars.\n if (!unsafeProtocol[lowerProto]) {\n\n // First, make 100% sure that any \"autoEscape\" chars get\n // escaped, even if encodeURIComponent doesn't think they\n // need to be.\n for (i = 0, l = autoEscape.length; i < l; i++) {\n var ae = autoEscape[i];\n if (rest.indexOf(ae) === -1)\n continue;\n var esc = encodeURIComponent(ae);\n if (esc === ae) {\n esc = escape(ae);\n }\n rest = rest.split(ae).join(esc);\n }\n }\n\n\n // chop off from the tail first.\n var hash = rest.indexOf('#');\n if (hash !== -1) {\n // got a fragment string.\n self.hash = rest.substr(hash);\n rest = rest.slice(0, hash);\n }\n var qm = rest.indexOf('?');\n if (qm !== -1) {\n self.search = rest.substr(qm);\n self.query = rest.substr(qm + 1);\n if (parseQueryString) {\n self.query = qsParse(self.query);\n }\n rest = rest.slice(0, qm);\n } else if (parseQueryString) {\n // no query string, but parseQueryString still requested\n self.search = '';\n self.query = {};\n }\n if (rest) self.pathname = rest;\n if (slashedProtocol[lowerProto] &&\n self.hostname && !self.pathname) {\n self.pathname = '/';\n }\n\n //to support http.request\n if (self.pathname || self.search) {\n p = self.pathname || '';\n var s = self.search || '';\n self.path = p + s;\n }\n\n // finally, reconstruct the href based on what has been validated.\n self.href = format(self);\n return self;\n}\n\n// format a parsed object into a url string\nfunction urlFormat(obj) {\n // ensure it's an object, and not a string url.\n // If it's an obj, this is a no-op.\n // this way, you can call url_format() on strings\n // to clean up potentially wonky urls.\n if (isString(obj)) obj = parse({}, obj);\n return format(obj);\n}\n\nfunction format(self) {\n var auth = self.auth || '';\n if (auth) {\n auth = encodeURIComponent(auth);\n auth = auth.replace(/%3A/i, ':');\n auth += '@';\n }\n\n var protocol = self.protocol || '',\n pathname = self.pathname || '',\n hash = self.hash || '',\n host = false,\n query = '';\n\n if (self.host) {\n host = auth + self.host;\n } else if (self.hostname) {\n host = auth + (self.hostname.indexOf(':') === -1 ?\n self.hostname :\n '[' + this.hostname + ']');\n if (self.port) {\n host += ':' + self.port;\n }\n }\n\n if (self.query &&\n isObject(self.query) &&\n Object.keys(self.query).length) {\n query = qsStringify(self.query);\n }\n\n var search = self.search || (query && ('?' + query)) || '';\n\n if (protocol && protocol.substr(-1) !== ':') protocol += ':';\n\n // only the slashedProtocols get the //. Not mailto:, xmpp:, etc.\n // unless they had them to begin with.\n if (self.slashes ||\n (!protocol || slashedProtocol[protocol]) && host !== false) {\n host = '//' + (host || '');\n if (pathname && pathname.charAt(0) !== '/') pathname = '/' + pathname;\n } else if (!host) {\n host = '';\n }\n\n if (hash && hash.charAt(0) !== '#') hash = '#' + hash;\n if (search && search.charAt(0) !== '?') search = '?' + search;\n\n pathname = pathname.replace(/[?#]/g, function(match) {\n return encodeURIComponent(match);\n });\n search = search.replace('#', '%23');\n\n return protocol + host + pathname + search + hash;\n}\n\nUrl.prototype.format = function() {\n return format(this);\n}\n\nfunction urlResolve(source, relative) {\n return urlParse(source, false, true).resolve(relative);\n}\n\nUrl.prototype.resolve = function(relative) {\n return this.resolveObject(urlParse(relative, false, true)).format();\n};\n\nfunction urlResolveObject(source, relative) {\n if (!source) return relative;\n return urlParse(source, false, true).resolveObject(relative);\n}\n\nUrl.prototype.resolveObject = function(relative) {\n if (isString(relative)) {\n var rel = new Url();\n rel.parse(relative, false, true);\n relative = rel;\n }\n\n var result = new Url();\n var tkeys = Object.keys(this);\n for (var tk = 0; tk < tkeys.length; tk++) {\n var tkey = tkeys[tk];\n result[tkey] = this[tkey];\n }\n\n // hash is always overridden, no matter what.\n // even href=\"\" will remove it.\n result.hash = relative.hash;\n\n // if the relative url is empty, then there's nothing left to do here.\n if (relative.href === '') {\n result.href = result.format();\n return result;\n }\n\n // hrefs like //foo/bar always cut to the protocol.\n if (relative.slashes && !relative.protocol) {\n // take everything except the protocol from relative\n var rkeys = Object.keys(relative);\n for (var rk = 0; rk < rkeys.length; rk++) {\n var rkey = rkeys[rk];\n if (rkey !== 'protocol')\n result[rkey] = relative[rkey];\n }\n\n //urlParse appends trailing / to urls like http://www.example.com\n if (slashedProtocol[result.protocol] &&\n result.hostname && !result.pathname) {\n result.path = result.pathname = '/';\n }\n\n result.href = result.format();\n return result;\n }\n var relPath;\n if (relative.protocol && relative.protocol !== result.protocol) {\n // if it's a known url protocol, then changing\n // the protocol does weird things\n // first, if it's not file:, then we MUST have a host,\n // and if there was a path\n // to begin with, then we MUST have a path.\n // if it is file:, then the host is dropped,\n // because that's known to be hostless.\n // anything else is assumed to be absolute.\n if (!slashedProtocol[relative.protocol]) {\n var keys = Object.keys(relative);\n for (var v = 0; v < keys.length; v++) {\n var k = keys[v];\n result[k] = relative[k];\n }\n result.href = result.format();\n return result;\n }\n\n result.protocol = relative.protocol;\n if (!relative.host && !hostlessProtocol[relative.protocol]) {\n relPath = (relative.pathname || '').split('/');\n while (relPath.length && !(relative.host = relPath.shift()));\n if (!relative.host) relative.host = '';\n if (!relative.hostname) relative.hostname = '';\n if (relPath[0] !== '') relPath.unshift('');\n if (relPath.length < 2) relPath.unshift('');\n result.pathname = relPath.join('/');\n } else {\n result.pathname = relative.pathname;\n }\n result.search = relative.search;\n result.query = relative.query;\n result.host = relative.host || '';\n result.auth = relative.auth;\n result.hostname = relative.hostname || relative.host;\n result.port = relative.port;\n // to support http.request\n if (result.pathname || result.search) {\n var p = result.pathname || '';\n var s = result.search || '';\n result.path = p + s;\n }\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n }\n\n var isSourceAbs = (result.pathname && result.pathname.charAt(0) === '/'),\n isRelAbs = (\n relative.host ||\n relative.pathname && relative.pathname.charAt(0) === '/'\n ),\n mustEndAbs = (isRelAbs || isSourceAbs ||\n (result.host && relative.pathname)),\n removeAllDots = mustEndAbs,\n srcPath = result.pathname && result.pathname.split('/') || [],\n psychotic = result.protocol && !slashedProtocol[result.protocol];\n relPath = relative.pathname && relative.pathname.split('/') || [];\n // if the url is a non-slashed url, then relative\n // links like ../.. should be able\n // to crawl up to the hostname, as well. This is strange.\n // result.protocol has already been set by now.\n // Later on, put the first path part into the host field.\n if (psychotic) {\n result.hostname = '';\n result.port = null;\n if (result.host) {\n if (srcPath[0] === '') srcPath[0] = result.host;\n else srcPath.unshift(result.host);\n }\n result.host = '';\n if (relative.protocol) {\n relative.hostname = null;\n relative.port = null;\n if (relative.host) {\n if (relPath[0] === '') relPath[0] = relative.host;\n else relPath.unshift(relative.host);\n }\n relative.host = null;\n }\n mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === '');\n }\n var authInHost;\n if (isRelAbs) {\n // it's absolute.\n result.host = (relative.host || relative.host === '') ?\n relative.host : result.host;\n result.hostname = (relative.hostname || relative.hostname === '') ?\n relative.hostname : result.hostname;\n result.search = relative.search;\n result.query = relative.query;\n srcPath = relPath;\n // fall through to the dot-handling below.\n } else if (relPath.length) {\n // it's relative\n // throw away the existing file, and take the new path instead.\n if (!srcPath) srcPath = [];\n srcPath.pop();\n srcPath = srcPath.concat(relPath);\n result.search = relative.search;\n result.query = relative.query;\n } else if (!isNullOrUndefined(relative.search)) {\n // just pull out the search.\n // like href='?foo'.\n // Put this after the other two cases because it simplifies the booleans\n if (psychotic) {\n result.hostname = result.host = srcPath.shift();\n //occationaly the auth can get stuck only in host\n //this especially happens in cases like\n //url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n authInHost = result.host && result.host.indexOf('@') > 0 ?\n result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.host = result.hostname = authInHost.shift();\n }\n }\n result.search = relative.search;\n result.query = relative.query;\n //to support http.request\n if (!isNull(result.pathname) || !isNull(result.search)) {\n result.path = (result.pathname ? result.pathname : '') +\n (result.search ? result.search : '');\n }\n result.href = result.format();\n return result;\n }\n\n if (!srcPath.length) {\n // no path at all. easy.\n // we've already handled the other stuff above.\n result.pathname = null;\n //to support http.request\n if (result.search) {\n result.path = '/' + result.search;\n } else {\n result.path = null;\n }\n result.href = result.format();\n return result;\n }\n\n // if a url ENDs in . or .., then it must get a trailing slash.\n // however, if it ends in anything else non-slashy,\n // then it must NOT get a trailing slash.\n var last = srcPath.slice(-1)[0];\n var hasTrailingSlash = (\n (result.host || relative.host || srcPath.length > 1) &&\n (last === '.' || last === '..') || last === '');\n\n // strip single dots, resolve double dots to parent dir\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = srcPath.length; i >= 0; i--) {\n last = srcPath[i];\n if (last === '.') {\n srcPath.splice(i, 1);\n } else if (last === '..') {\n srcPath.splice(i, 1);\n up++;\n } else if (up) {\n srcPath.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (!mustEndAbs && !removeAllDots) {\n for (; up--; up) {\n srcPath.unshift('..');\n }\n }\n\n if (mustEndAbs && srcPath[0] !== '' &&\n (!srcPath[0] || srcPath[0].charAt(0) !== '/')) {\n srcPath.unshift('');\n }\n\n if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) {\n srcPath.push('');\n }\n\n var isAbsolute = srcPath[0] === '' ||\n (srcPath[0] && srcPath[0].charAt(0) === '/');\n\n // put the host back\n if (psychotic) {\n result.hostname = result.host = isAbsolute ? '' :\n srcPath.length ? srcPath.shift() : '';\n //occationaly the auth can get stuck only in host\n //this especially happens in cases like\n //url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n authInHost = result.host && result.host.indexOf('@') > 0 ?\n result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.host = result.hostname = authInHost.shift();\n }\n }\n\n mustEndAbs = mustEndAbs || (result.host && srcPath.length);\n\n if (mustEndAbs && !isAbsolute) {\n srcPath.unshift('');\n }\n\n if (!srcPath.length) {\n result.pathname = null;\n result.path = null;\n } else {\n result.pathname = srcPath.join('/');\n }\n\n //to support request.http\n if (!isNull(result.pathname) || !isNull(result.search)) {\n result.path = (result.pathname ? result.pathname : '') +\n (result.search ? result.search : '');\n }\n result.auth = relative.auth || result.auth;\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n};\n\nUrl.prototype.parseHost = function() {\n return parseHost(this);\n};\n\nfunction parseHost(self) {\n var host = self.host;\n var port = portPattern.exec(host);\n if (port) {\n port = port[0];\n if (port !== ':') {\n self.port = port.substr(1);\n }\n host = host.substr(0, host.length - port.length);\n }\n if (host) self.hostname = host;\n}\n","/*!\n * @pixi/constants - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/constants is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * Different types of environments for WebGL.\n *\n * @static\n * @memberof PIXI\n * @name ENV\n * @enum {number}\n * @property {number} WEBGL_LEGACY - Used for older v1 WebGL devices. PixiJS will aim to ensure compatibility\n * with older / less advanced devices. If you experience unexplained flickering prefer this environment.\n * @property {number} WEBGL - Version 1 of WebGL\n * @property {number} WEBGL2 - Version 2 of WebGL\n */\nvar ENV = {\n WEBGL_LEGACY: 0,\n WEBGL: 1,\n WEBGL2: 2,\n};\n\n/**\n * Constant to identify the Renderer Type.\n *\n * @static\n * @memberof PIXI\n * @name RENDERER_TYPE\n * @enum {number}\n * @property {number} UNKNOWN - Unknown render type.\n * @property {number} WEBGL - WebGL render type.\n * @property {number} CANVAS - Canvas render type.\n */\nvar RENDERER_TYPE = {\n UNKNOWN: 0,\n WEBGL: 1,\n CANVAS: 2,\n};\n\n/**\n * Various blend modes supported by PIXI.\n *\n * IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes.\n * Anything else will silently act like NORMAL.\n *\n * @memberof PIXI\n * @name BLEND_MODES\n * @enum {number}\n * @property {number} NORMAL\n * @property {number} ADD\n * @property {number} MULTIPLY\n * @property {number} SCREEN\n * @property {number} OVERLAY\n * @property {number} DARKEN\n * @property {number} LIGHTEN\n * @property {number} COLOR_DODGE\n * @property {number} COLOR_BURN\n * @property {number} HARD_LIGHT\n * @property {number} SOFT_LIGHT\n * @property {number} DIFFERENCE\n * @property {number} EXCLUSION\n * @property {number} HUE\n * @property {number} SATURATION\n * @property {number} COLOR\n * @property {number} LUMINOSITY\n * @property {number} NORMAL_NPM\n * @property {number} ADD_NPM\n * @property {number} SCREEN_NPM\n * @property {number} NONE\n * @property {number} SRC_IN\n * @property {number} SRC_OUT\n * @property {number} SRC_ATOP\n * @property {number} DST_OVER\n * @property {number} DST_IN\n * @property {number} DST_OUT\n * @property {number} DST_ATOP\n * @property {number} SUBTRACT\n * @property {number} SRC_OVER\n * @property {number} ERASE\n */\nvar BLEND_MODES = {\n NORMAL: 0,\n ADD: 1,\n MULTIPLY: 2,\n SCREEN: 3,\n OVERLAY: 4,\n DARKEN: 5,\n LIGHTEN: 6,\n COLOR_DODGE: 7,\n COLOR_BURN: 8,\n HARD_LIGHT: 9,\n SOFT_LIGHT: 10,\n DIFFERENCE: 11,\n EXCLUSION: 12,\n HUE: 13,\n SATURATION: 14,\n COLOR: 15,\n LUMINOSITY: 16,\n NORMAL_NPM: 17,\n ADD_NPM: 18,\n SCREEN_NPM: 19,\n NONE: 20,\n\n SRC_OVER: 0,\n SRC_IN: 21,\n SRC_OUT: 22,\n SRC_ATOP: 23,\n DST_OVER: 24,\n DST_IN: 25,\n DST_OUT: 26,\n DST_ATOP: 27,\n ERASE: 26,\n SUBTRACT: 28,\n};\n\n/**\n * Various webgl draw modes. These can be used to specify which GL drawMode to use\n * under certain situations and renderers.\n *\n * @memberof PIXI\n * @static\n * @name DRAW_MODES\n * @enum {number}\n * @property {number} POINTS\n * @property {number} LINES\n * @property {number} LINE_LOOP\n * @property {number} LINE_STRIP\n * @property {number} TRIANGLES\n * @property {number} TRIANGLE_STRIP\n * @property {number} TRIANGLE_FAN\n */\nvar DRAW_MODES = {\n POINTS: 0,\n LINES: 1,\n LINE_LOOP: 2,\n LINE_STRIP: 3,\n TRIANGLES: 4,\n TRIANGLE_STRIP: 5,\n TRIANGLE_FAN: 6,\n};\n\n/**\n * Various GL texture/resources formats.\n *\n * @memberof PIXI\n * @static\n * @name FORMATS\n * @enum {number}\n * @property {number} RGBA=6408\n * @property {number} RGB=6407\n * @property {number} ALPHA=6406\n * @property {number} LUMINANCE=6409\n * @property {number} LUMINANCE_ALPHA=6410\n * @property {number} DEPTH_COMPONENT=6402\n * @property {number} DEPTH_STENCIL=34041\n */\nvar FORMATS = {\n RGBA: 6408,\n RGB: 6407,\n ALPHA: 6406,\n LUMINANCE: 6409,\n LUMINANCE_ALPHA: 6410,\n DEPTH_COMPONENT: 6402,\n DEPTH_STENCIL: 34041,\n};\n\n/**\n * Various GL target types.\n *\n * @memberof PIXI\n * @static\n * @name TARGETS\n * @enum {number}\n * @property {number} TEXTURE_2D=3553\n * @property {number} TEXTURE_CUBE_MAP=34067\n * @property {number} TEXTURE_2D_ARRAY=35866\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_X=34069\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_X=34070\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Y=34071\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Y=34072\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Z=34073\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Z=34074\n */\nvar TARGETS = {\n TEXTURE_2D: 3553,\n TEXTURE_CUBE_MAP: 34067,\n TEXTURE_2D_ARRAY: 35866,\n TEXTURE_CUBE_MAP_POSITIVE_X: 34069,\n TEXTURE_CUBE_MAP_NEGATIVE_X: 34070,\n TEXTURE_CUBE_MAP_POSITIVE_Y: 34071,\n TEXTURE_CUBE_MAP_NEGATIVE_Y: 34072,\n TEXTURE_CUBE_MAP_POSITIVE_Z: 34073,\n TEXTURE_CUBE_MAP_NEGATIVE_Z: 34074,\n};\n\n/**\n * Various GL data format types.\n *\n * @memberof PIXI\n * @static\n * @name TYPES\n * @enum {number}\n * @property {number} UNSIGNED_BYTE=5121\n * @property {number} UNSIGNED_SHORT=5123\n * @property {number} UNSIGNED_SHORT_5_6_5=33635\n * @property {number} UNSIGNED_SHORT_4_4_4_4=32819\n * @property {number} UNSIGNED_SHORT_5_5_5_1=32820\n * @property {number} FLOAT=5126\n * @property {number} HALF_FLOAT=36193\n */\nvar TYPES = {\n UNSIGNED_BYTE: 5121,\n UNSIGNED_SHORT: 5123,\n UNSIGNED_SHORT_5_6_5: 33635,\n UNSIGNED_SHORT_4_4_4_4: 32819,\n UNSIGNED_SHORT_5_5_5_1: 32820,\n FLOAT: 5126,\n HALF_FLOAT: 36193,\n};\n\n/**\n * The scale modes that are supported by pixi.\n *\n * The {@link PIXI.settings.SCALE_MODE} scale mode affects the default scaling mode of future operations.\n * It can be re-assigned to either LINEAR or NEAREST, depending upon suitability.\n *\n * @memberof PIXI\n * @static\n * @name SCALE_MODES\n * @enum {number}\n * @property {number} LINEAR Smooth scaling\n * @property {number} NEAREST Pixelating scaling\n */\nvar SCALE_MODES = {\n LINEAR: 1,\n NEAREST: 0,\n};\n\n/**\n * The wrap modes that are supported by pixi.\n *\n * The {@link PIXI.settings.WRAP_MODE} wrap mode affects the default wrapping mode of future operations.\n * It can be re-assigned to either CLAMP or REPEAT, depending upon suitability.\n * If the texture is non power of two then clamp will be used regardless as WebGL can\n * only use REPEAT if the texture is po2.\n *\n * This property only affects WebGL.\n *\n * @name WRAP_MODES\n * @memberof PIXI\n * @static\n * @enum {number}\n * @property {number} CLAMP - The textures uvs are clamped\n * @property {number} REPEAT - The texture uvs tile and repeat\n * @property {number} MIRRORED_REPEAT - The texture uvs tile and repeat with mirroring\n */\nvar WRAP_MODES = {\n CLAMP: 33071,\n REPEAT: 10497,\n MIRRORED_REPEAT: 33648,\n};\n\n/**\n * Mipmap filtering modes that are supported by pixi.\n *\n * The {@link PIXI.settings.MIPMAP_TEXTURES} affects default texture filtering.\n * Mipmaps are generated for a baseTexture if its `mipmap` field is `ON`,\n * or its `POW2` and texture dimensions are powers of 2.\n * Due to platform restriction, `ON` option will work like `POW2` for webgl-1.\n *\n * This property only affects WebGL.\n *\n * @name MIPMAP_MODES\n * @memberof PIXI\n * @static\n * @enum {number}\n * @property {number} OFF - No mipmaps\n * @property {number} POW2 - Generate mipmaps if texture dimensions are pow2\n * @property {number} ON - Always generate mipmaps\n */\nvar MIPMAP_MODES = {\n OFF: 0,\n POW2: 1,\n ON: 2,\n};\n\n/**\n * The gc modes that are supported by pixi.\n *\n * The {@link PIXI.settings.GC_MODE} Garbage Collection mode for PixiJS textures is AUTO\n * If set to GC_MODE, the renderer will occasionally check textures usage. If they are not\n * used for a specified period of time they will be removed from the GPU. They will of course\n * be uploaded again when they are required. This is a silent behind the scenes process that\n * should ensure that the GPU does not get filled up.\n *\n * Handy for mobile devices!\n * This property only affects WebGL.\n *\n * @name GC_MODES\n * @enum {number}\n * @static\n * @memberof PIXI\n * @property {number} AUTO - Garbage collection will happen periodically automatically\n * @property {number} MANUAL - Garbage collection will need to be called manually\n */\nvar GC_MODES = {\n AUTO: 0,\n MANUAL: 1,\n};\n\n/**\n * Constants that specify float precision in shaders.\n *\n * @name PRECISION\n * @memberof PIXI\n * @static\n * @enum {string}\n * @constant\n * @property {string} LOW='lowp'\n * @property {string} MEDIUM='mediump'\n * @property {string} HIGH='highp'\n */\nvar PRECISION = {\n LOW: 'lowp',\n MEDIUM: 'mediump',\n HIGH: 'highp',\n};\n\nexport { BLEND_MODES, DRAW_MODES, ENV, FORMATS, GC_MODES, MIPMAP_MODES, PRECISION, RENDERER_TYPE, SCALE_MODES, TARGETS, TYPES, WRAP_MODES };\n//# sourceMappingURL=constants.es.js.map\n","/*!\n * @pixi/utils - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/utils is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nexport { isMobile } from '@pixi/settings';\nexport { default as EventEmitter } from 'eventemitter3';\nexport { default as earcut } from 'earcut';\nimport _url from 'url';\nexport { default as url } from 'url';\nimport { BLEND_MODES } from '@pixi/constants';\n\n/**\n * The prefix that denotes a URL is for a retina asset.\n *\n * @static\n * @name RETINA_PREFIX\n * @memberof PIXI.settings\n * @type {RegExp}\n * @default /@([0-9\\.]+)x/\n * @example `@2x`\n */\nsettings.RETINA_PREFIX = /@([0-9\\.]+)x/;\n\n/**\n * Should the `failIfMajorPerformanceCaveat` flag be enabled as a context option used in the `isWebGLSupported` function.\n * For most scenarios this should be left as true, as otherwise the user may have a poor experience.\n * However, it can be useful to disable under certain scenarios, such as headless unit tests.\n *\n * @static\n * @name FAIL_IF_MAJOR_PERFORMANCE_CAVEAT\n * @memberof PIXI.settings\n * @type {boolean}\n * @default true\n */\nsettings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = true;\n\nvar saidHello = false;\nvar VERSION = '5.1.3';\n\n/**\n * Skips the hello message of renderers that are created after this is run.\n *\n * @function skipHello\n * @memberof PIXI.utils\n */\nfunction skipHello()\n{\n saidHello = true;\n}\n\n/**\n * Logs out the version and renderer information for this running instance of PIXI.\n * If you don't want to see this message you can run `PIXI.utils.skipHello()` before\n * creating your renderer. Keep in mind that doing that will forever make you a jerk face.\n *\n * @static\n * @function sayHello\n * @memberof PIXI.utils\n * @param {string} type - The string renderer type to log.\n */\nfunction sayHello(type)\n{\n if (saidHello)\n {\n return;\n }\n\n if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)\n {\n var args = [\n (\"\\n %c %c %c PixiJS \" + VERSION + \" - ✰ \" + type + \" ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \\n\\n\"),\n 'background: #ff66a5; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'color: #ff66a5; background: #030307; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'background: #ffc3dc; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;' ];\n\n window.console.log.apply(console, args);\n }\n else if (window.console)\n {\n window.console.log((\"PixiJS \" + VERSION + \" - \" + type + \" - http://www.pixijs.com/\"));\n }\n\n saidHello = true;\n}\n\nvar supported;\n\n/**\n * Helper for checking for WebGL support.\n *\n * @memberof PIXI.utils\n * @function isWebGLSupported\n * @return {boolean} Is WebGL supported.\n */\nfunction isWebGLSupported()\n{\n if (typeof supported === 'undefined')\n {\n supported = (function supported()\n {\n var contextOptions = {\n stencil: true,\n failIfMajorPerformanceCaveat: settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT,\n };\n\n try\n {\n if (!window.WebGLRenderingContext)\n {\n return false;\n }\n\n var canvas = document.createElement('canvas');\n var gl = canvas.getContext('webgl', contextOptions)\n || canvas.getContext('experimental-webgl', contextOptions);\n\n var success = !!(gl && gl.getContextAttributes().stencil);\n\n if (gl)\n {\n var loseContext = gl.getExtension('WEBGL_lose_context');\n\n if (loseContext)\n {\n loseContext.loseContext();\n }\n }\n\n gl = null;\n\n return success;\n }\n catch (e)\n {\n return false;\n }\n })();\n }\n\n return supported;\n}\n\n/**\n * Converts a hexadecimal color number to an [R, G, B] array of normalized floats (numbers from 0.0 to 1.0).\n *\n * @example\n * PIXI.utils.hex2rgb(0xffffff); // returns [1, 1, 1]\n * @memberof PIXI.utils\n * @function hex2rgb\n * @param {number} hex - The hexadecimal number to convert\n * @param {number[]} [out=[]] If supplied, this array will be used rather than returning a new one\n * @return {number[]} An array representing the [R, G, B] of the color where all values are floats.\n */\nfunction hex2rgb(hex, out)\n{\n out = out || [];\n\n out[0] = ((hex >> 16) & 0xFF) / 255;\n out[1] = ((hex >> 8) & 0xFF) / 255;\n out[2] = (hex & 0xFF) / 255;\n\n return out;\n}\n\n/**\n * Converts a hexadecimal color number to a string.\n *\n * @example\n * PIXI.utils.hex2string(0xffffff); // returns \"#ffffff\"\n * @memberof PIXI.utils\n * @function hex2string\n * @param {number} hex - Number in hex (e.g., `0xffffff`)\n * @return {string} The string color (e.g., `\"#ffffff\"`).\n */\nfunction hex2string(hex)\n{\n hex = hex.toString(16);\n hex = '000000'.substr(0, 6 - hex.length) + hex;\n\n return (\"#\" + hex);\n}\n\n/**\n * Converts a hexadecimal string to a hexadecimal color number.\n *\n * @example\n * PIXI.utils.string2hex(\"#ffffff\"); // returns 0xffffff\n * @memberof PIXI.utils\n * @function string2hex\n * @param {string} The string color (e.g., `\"#ffffff\"`)\n * @return {number} Number in hexadecimal.\n */\nfunction string2hex(string)\n{\n if (typeof string === 'string' && string[0] === '#')\n {\n string = string.substr(1);\n }\n\n return parseInt(string, 16);\n}\n\n/**\n * Converts a color as an [R, G, B] array of normalized floats to a hexadecimal number.\n *\n * @example\n * PIXI.utils.rgb2hex([1, 1, 1]); // returns 0xffffff\n * @memberof PIXI.utils\n * @function rgb2hex\n * @param {number[]} rgb - Array of numbers where all values are normalized floats from 0.0 to 1.0.\n * @return {number} Number in hexadecimal.\n */\nfunction rgb2hex(rgb)\n{\n return (((rgb[0] * 255) << 16) + ((rgb[1] * 255) << 8) + (rgb[2] * 255 | 0));\n}\n\n/**\n * Corrects PixiJS blend, takes premultiplied alpha into account\n *\n * @memberof PIXI.utils\n * @function mapPremultipliedBlendModes\n * @private\n * @param {Array} [array] - The array to output into.\n * @return {Array} Mapped modes.\n */\nfunction mapPremultipliedBlendModes()\n{\n var pm = [];\n var npm = [];\n\n for (var i = 0; i < 32; i++)\n {\n pm[i] = i;\n npm[i] = i;\n }\n\n pm[BLEND_MODES.NORMAL_NPM] = BLEND_MODES.NORMAL;\n pm[BLEND_MODES.ADD_NPM] = BLEND_MODES.ADD;\n pm[BLEND_MODES.SCREEN_NPM] = BLEND_MODES.SCREEN;\n\n npm[BLEND_MODES.NORMAL] = BLEND_MODES.NORMAL_NPM;\n npm[BLEND_MODES.ADD] = BLEND_MODES.ADD_NPM;\n npm[BLEND_MODES.SCREEN] = BLEND_MODES.SCREEN_NPM;\n\n var array = [];\n\n array.push(npm);\n array.push(pm);\n\n return array;\n}\n\n/**\n * maps premultiply flag and blendMode to adjusted blendMode\n * @memberof PIXI.utils\n * @const premultiplyBlendMode\n * @type {Array}\n */\nvar premultiplyBlendMode = mapPremultipliedBlendModes();\n\n/**\n * changes blendMode according to texture format\n *\n * @memberof PIXI.utils\n * @function correctBlendMode\n * @param {number} blendMode supposed blend mode\n * @param {boolean} premultiplied whether source is premultiplied\n * @returns {number} true blend mode for this texture\n */\nfunction correctBlendMode(blendMode, premultiplied)\n{\n return premultiplyBlendMode[premultiplied ? 1 : 0][blendMode];\n}\n\n/**\n * combines rgb and alpha to out array\n *\n * @memberof PIXI.utils\n * @function premultiplyRgba\n * @param {Float32Array|number[]} rgb input rgb\n * @param {number} alpha alpha param\n * @param {Float32Array} [out] output\n * @param {boolean} [premultiply=true] do premultiply it\n * @returns {Float32Array} vec4 rgba\n */\nfunction premultiplyRgba(rgb, alpha, out, premultiply)\n{\n out = out || new Float32Array(4);\n if (premultiply || premultiply === undefined)\n {\n out[0] = rgb[0] * alpha;\n out[1] = rgb[1] * alpha;\n out[2] = rgb[2] * alpha;\n }\n else\n {\n out[0] = rgb[0];\n out[1] = rgb[1];\n out[2] = rgb[2];\n }\n out[3] = alpha;\n\n return out;\n}\n\n/**\n * premultiplies tint\n *\n * @memberof PIXI.utils\n * @function premultiplyTint\n * @param {number} tint integer RGB\n * @param {number} alpha floating point alpha (0.0-1.0)\n * @returns {number} tint multiplied by alpha\n */\nfunction premultiplyTint(tint, alpha)\n{\n if (alpha === 1.0)\n {\n return (alpha * 255 << 24) + tint;\n }\n if (alpha === 0.0)\n {\n return 0;\n }\n var R = ((tint >> 16) & 0xFF);\n var G = ((tint >> 8) & 0xFF);\n var B = (tint & 0xFF);\n\n R = ((R * alpha) + 0.5) | 0;\n G = ((G * alpha) + 0.5) | 0;\n B = ((B * alpha) + 0.5) | 0;\n\n return (alpha * 255 << 24) + (R << 16) + (G << 8) + B;\n}\n\n/**\n * converts integer tint and float alpha to vec4 form, premultiplies by default\n *\n * @memberof PIXI.utils\n * @function premultiplyTintToRgba\n * @param {number} tint input tint\n * @param {number} alpha alpha param\n * @param {Float32Array} [out] output\n * @param {boolean} [premultiply=true] do premultiply it\n * @returns {Float32Array} vec4 rgba\n */\nfunction premultiplyTintToRgba(tint, alpha, out, premultiply)\n{\n out = out || new Float32Array(4);\n out[0] = ((tint >> 16) & 0xFF) / 255.0;\n out[1] = ((tint >> 8) & 0xFF) / 255.0;\n out[2] = (tint & 0xFF) / 255.0;\n if (premultiply || premultiply === undefined)\n {\n out[0] *= alpha;\n out[1] *= alpha;\n out[2] *= alpha;\n }\n out[3] = alpha;\n\n return out;\n}\n\n/**\n * Generic Mask Stack data structure\n *\n * @memberof PIXI.utils\n * @function createIndicesForQuads\n * @param {number} size - Number of quads\n * @param {Uint16Array|Uint32Array} [outBuffer] - Buffer for output, length has to be `6 * size`\n * @return {Uint16Array|Uint32Array} - Resulting index buffer\n */\nfunction createIndicesForQuads(size, outBuffer)\n{\n if ( outBuffer === void 0 ) outBuffer = null;\n\n // the total number of indices in our array, there are 6 points per quad.\n var totalIndices = size * 6;\n\n outBuffer = outBuffer || new Uint16Array(totalIndices);\n\n if (outBuffer.length !== totalIndices)\n {\n throw new Error((\"Out buffer length is incorrect, got \" + (outBuffer.length) + \" and expected \" + totalIndices));\n }\n\n // fill the indices with the quads to draw\n for (var i = 0, j = 0; i < totalIndices; i += 6, j += 4)\n {\n outBuffer[i + 0] = j + 0;\n outBuffer[i + 1] = j + 1;\n outBuffer[i + 2] = j + 2;\n outBuffer[i + 3] = j + 0;\n outBuffer[i + 4] = j + 2;\n outBuffer[i + 5] = j + 3;\n }\n\n return outBuffer;\n}\n\n/**\n * Remove items from a javascript array without generating garbage\n *\n * @function removeItems\n * @memberof PIXI.utils\n * @param {Array} arr Array to remove elements from\n * @param {number} startIdx starting index\n * @param {number} removeCount how many to remove\n */\nfunction removeItems(arr, startIdx, removeCount)\n{\n var length = arr.length;\n var i;\n\n if (startIdx >= length || removeCount === 0)\n {\n return;\n }\n\n removeCount = (startIdx + removeCount > length ? length - startIdx : removeCount);\n\n var len = length - removeCount;\n\n for (i = startIdx; i < len; ++i)\n {\n arr[i] = arr[i + removeCount];\n }\n\n arr.length = len;\n}\n\nvar nextUid = 0;\n\n/**\n * Gets the next unique identifier\n *\n * @memberof PIXI.utils\n * @function uid\n * @return {number} The next unique identifier to use.\n */\nfunction uid()\n{\n return ++nextUid;\n}\n\n/**\n * Returns sign of number\n *\n * @memberof PIXI.utils\n * @function sign\n * @param {number} n - the number to check the sign of\n * @returns {number} 0 if `n` is 0, -1 if `n` is negative, 1 if `n` is positive\n */\nfunction sign(n)\n{\n if (n === 0) { return 0; }\n\n return n < 0 ? -1 : 1;\n}\n\n// Taken from the bit-twiddle package\n\n/**\n * Rounds to next power of two.\n *\n * @function nextPow2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {number}\n */\nfunction nextPow2(v)\n{\n v += v === 0;\n --v;\n v |= v >>> 1;\n v |= v >>> 2;\n v |= v >>> 4;\n v |= v >>> 8;\n v |= v >>> 16;\n\n return v + 1;\n}\n\n/**\n * Checks if a number is a power of two.\n *\n * @function isPow2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {boolean} `true` if value is power of two\n */\nfunction isPow2(v)\n{\n return !(v & (v - 1)) && (!!v);\n}\n\n/**\n * Computes ceil of log base 2\n *\n * @function log2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {number} logarithm base 2\n */\nfunction log2(v)\n{\n var r = (v > 0xFFFF) << 4;\n\n v >>>= r;\n\n var shift = (v > 0xFF) << 3;\n\n v >>>= shift; r |= shift;\n shift = (v > 0xF) << 2;\n v >>>= shift; r |= shift;\n shift = (v > 0x3) << 1;\n v >>>= shift; r |= shift;\n\n return r | (v >> 1);\n}\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name ProgramCache\n * @memberof PIXI.utils\n * @type {Object}\n */\nvar ProgramCache = {};\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name TextureCache\n * @memberof PIXI.utils\n * @type {Object}\n */\nvar TextureCache = Object.create(null);\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name BaseTextureCache\n * @memberof PIXI.utils\n * @type {Object}\n */\n\nvar BaseTextureCache = Object.create(null);\n/**\n * Destroys all texture in the cache\n *\n * @memberof PIXI.utils\n * @function destroyTextureCache\n */\nfunction destroyTextureCache()\n{\n var key;\n\n for (key in TextureCache)\n {\n TextureCache[key].destroy();\n }\n for (key in BaseTextureCache)\n {\n BaseTextureCache[key].destroy();\n }\n}\n\n/**\n * Removes all textures from cache, but does not destroy them\n *\n * @memberof PIXI.utils\n * @function clearTextureCache\n */\nfunction clearTextureCache()\n{\n var key;\n\n for (key in TextureCache)\n {\n delete TextureCache[key];\n }\n for (key in BaseTextureCache)\n {\n delete BaseTextureCache[key];\n }\n}\n\n/**\n * Trim transparent borders from a canvas\n *\n * @memberof PIXI.utils\n * @function trimCanvas\n * @param {HTMLCanvasElement} canvas - the canvas to trim\n * @returns {object} Trim data\n */\nfunction trimCanvas(canvas)\n{\n // https://gist.github.com/remy/784508\n\n var width = canvas.width;\n var height = canvas.height;\n\n var context = canvas.getContext('2d');\n var imageData = context.getImageData(0, 0, width, height);\n var pixels = imageData.data;\n var len = pixels.length;\n\n var bound = {\n top: null,\n left: null,\n right: null,\n bottom: null,\n };\n var data = null;\n var i;\n var x;\n var y;\n\n for (i = 0; i < len; i += 4)\n {\n if (pixels[i + 3] !== 0)\n {\n x = (i / 4) % width;\n y = ~~((i / 4) / width);\n\n if (bound.top === null)\n {\n bound.top = y;\n }\n\n if (bound.left === null)\n {\n bound.left = x;\n }\n else if (x < bound.left)\n {\n bound.left = x;\n }\n\n if (bound.right === null)\n {\n bound.right = x + 1;\n }\n else if (bound.right < x)\n {\n bound.right = x + 1;\n }\n\n if (bound.bottom === null)\n {\n bound.bottom = y;\n }\n else if (bound.bottom < y)\n {\n bound.bottom = y;\n }\n }\n }\n\n if (bound.top !== null)\n {\n width = bound.right - bound.left;\n height = bound.bottom - bound.top + 1;\n data = context.getImageData(bound.left, bound.top, width, height);\n }\n\n return {\n height: height,\n width: width,\n data: data,\n };\n}\n\n/**\n * Creates a Canvas element of the given size to be used as a target for rendering to.\n *\n * @class\n * @memberof PIXI.utils\n */\nvar CanvasRenderTarget = function CanvasRenderTarget(width, height, resolution)\n{\n /**\n * The Canvas object that belongs to this CanvasRenderTarget.\n *\n * @member {HTMLCanvasElement}\n */\n this.canvas = document.createElement('canvas');\n\n /**\n * A CanvasRenderingContext2D object representing a two-dimensional rendering context.\n *\n * @member {CanvasRenderingContext2D}\n */\n this.context = this.canvas.getContext('2d');\n\n this.resolution = resolution || settings.RESOLUTION;\n\n this.resize(width, height);\n};\n\nvar prototypeAccessors = { width: { configurable: true },height: { configurable: true } };\n\n/**\n * Clears the canvas that was created by the CanvasRenderTarget class.\n *\n * @private\n */\nCanvasRenderTarget.prototype.clear = function clear ()\n{\n this.context.setTransform(1, 0, 0, 1, 0, 0);\n this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);\n};\n\n/**\n * Resizes the canvas to the specified width and height.\n *\n * @param {number} width - the new width of the canvas\n * @param {number} height - the new height of the canvas\n */\nCanvasRenderTarget.prototype.resize = function resize (width, height)\n{\n this.canvas.width = width * this.resolution;\n this.canvas.height = height * this.resolution;\n};\n\n/**\n * Destroys this canvas.\n *\n */\nCanvasRenderTarget.prototype.destroy = function destroy ()\n{\n this.context = null;\n this.canvas = null;\n};\n\n/**\n * The width of the canvas buffer in pixels.\n *\n * @member {number}\n */\nprototypeAccessors.width.get = function ()\n{\n return this.canvas.width;\n};\n\nprototypeAccessors.width.set = function (val) // eslint-disable-line require-jsdoc\n{\n this.canvas.width = val;\n};\n\n/**\n * The height of the canvas buffer in pixels.\n *\n * @member {number}\n */\nprototypeAccessors.height.get = function ()\n{\n return this.canvas.height;\n};\n\nprototypeAccessors.height.set = function (val) // eslint-disable-line require-jsdoc\n{\n this.canvas.height = val;\n};\n\nObject.defineProperties( CanvasRenderTarget.prototype, prototypeAccessors );\n\n/**\n * Regexp for data URI.\n * Based on: {@link https://github.com/ragingwind/data-uri-regex}\n *\n * @static\n * @constant {RegExp|string} DATA_URI\n * @memberof PIXI\n * @example data:image/png;base64\n */\nvar DATA_URI = /^\\s*data:(?:([\\w-]+)\\/([\\w+.-]+))?(?:;charset=([\\w-]+))?(?:;(base64))?,(.*)/i;\n\n/**\n * Typedef for decomposeDataUri return object.\n *\n * @memberof PIXI.utils\n * @typedef {object} DecomposedDataUri\n * @property {string} mediaType Media type, eg. `image`\n * @property {string} subType Sub type, eg. `png`\n * @property {string} encoding Data encoding, eg. `base64`\n * @property {string} data The actual data\n */\n\n/**\n * Split a data URI into components. Returns undefined if\n * parameter `dataUri` is not a valid data URI.\n *\n * @memberof PIXI.utils\n * @function decomposeDataUri\n * @param {string} dataUri - the data URI to check\n * @return {PIXI.utils.DecomposedDataUri|undefined} The decomposed data uri or undefined\n */\nfunction decomposeDataUri(dataUri)\n{\n var dataUriMatch = DATA_URI.exec(dataUri);\n\n if (dataUriMatch)\n {\n return {\n mediaType: dataUriMatch[1] ? dataUriMatch[1].toLowerCase() : undefined,\n subType: dataUriMatch[2] ? dataUriMatch[2].toLowerCase() : undefined,\n charset: dataUriMatch[3] ? dataUriMatch[3].toLowerCase() : undefined,\n encoding: dataUriMatch[4] ? dataUriMatch[4].toLowerCase() : undefined,\n data: dataUriMatch[5],\n };\n }\n\n return undefined;\n}\n\nvar tempAnchor;\n\n/**\n * Sets the `crossOrigin` property for this resource based on if the url\n * for this resource is cross-origin. If crossOrigin was manually set, this\n * function does nothing.\n * Nipped from the resource loader!\n *\n * @ignore\n * @param {string} url - The url to test.\n * @param {object} [loc=window.location] - The location object to test against.\n * @return {string} The crossOrigin value to use (or empty string for none).\n */\nfunction determineCrossOrigin(url, loc)\n{\n if ( loc === void 0 ) loc = window.location;\n\n // data: and javascript: urls are considered same-origin\n if (url.indexOf('data:') === 0)\n {\n return '';\n }\n\n // default is window.location\n loc = loc || window.location;\n\n if (!tempAnchor)\n {\n tempAnchor = document.createElement('a');\n }\n\n // let the browser determine the full href for the url of this resource and then\n // parse with the node url lib, we can't use the properties of the anchor element\n // because they don't work in IE9 :(\n tempAnchor.href = url;\n url = _url.parse(tempAnchor.href);\n\n var samePort = (!url.port && loc.port === '') || (url.port === loc.port);\n\n // if cross origin\n if (url.hostname !== loc.hostname || !samePort || url.protocol !== loc.protocol)\n {\n return 'anonymous';\n }\n\n return '';\n}\n\n/**\n * get the resolution / device pixel ratio of an asset by looking for the prefix\n * used by spritesheets and image urls\n *\n * @memberof PIXI.utils\n * @function getResolutionOfUrl\n * @param {string} url - the image path\n * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set.\n * @return {number} resolution / device pixel ratio of an asset\n */\nfunction getResolutionOfUrl(url, defaultValue)\n{\n var resolution = settings.RETINA_PREFIX.exec(url);\n\n if (resolution)\n {\n return parseFloat(resolution[1]);\n }\n\n return defaultValue !== undefined ? defaultValue : 1;\n}\n\n// A map of warning messages already fired\nvar warnings = {};\n\n/**\n * Helper for warning developers about deprecated features & settings.\n * A stack track for warnings is given; useful for tracking-down where\n * deprecated methods/properties/classes are being used within the code.\n *\n * @memberof PIXI.utils\n * @function deprecation\n * @param {string} version - The version where the feature became deprecated\n * @param {string} message - Message should include what is deprecated, where, and the new solution\n * @param {number} [ignoreDepth=3] - The number of steps to ignore at the top of the error stack\n * this is mostly to ignore internal deprecation calls.\n */\nfunction deprecation(version, message, ignoreDepth)\n{\n if ( ignoreDepth === void 0 ) ignoreDepth = 3;\n\n // Ignore duplicat\n if (warnings[message])\n {\n return;\n }\n\n /* eslint-disable no-console */\n var stack = new Error().stack;\n\n // Handle IE < 10 and Safari < 6\n if (typeof stack === 'undefined')\n {\n console.warn('PixiJS Deprecation Warning: ', (message + \"\\nDeprecated since v\" + version));\n }\n else\n {\n // chop off the stack trace which includes PixiJS internal calls\n stack = stack.split('\\n').splice(ignoreDepth).join('\\n');\n\n if (console.groupCollapsed)\n {\n console.groupCollapsed(\n '%cPixiJS Deprecation Warning: %c%s',\n 'color:#614108;background:#fffbe6',\n 'font-weight:normal;color:#614108;background:#fffbe6',\n (message + \"\\nDeprecated since v\" + version)\n );\n console.warn(stack);\n console.groupEnd();\n }\n else\n {\n console.warn('PixiJS Deprecation Warning: ', (message + \"\\nDeprecated since v\" + version));\n console.warn(stack);\n }\n }\n /* eslint-enable no-console */\n\n warnings[message] = true;\n}\n\n/**\n * Generalized convenience utilities for PIXI.\n * @example\n * // Extend PIXI's internal Event Emitter.\n * class MyEmitter extends PIXI.utils.EventEmitter {\n * constructor() {\n * super();\n * console.log(\"Emitter created!\");\n * }\n * }\n *\n * // Get info on current device\n * console.log(PIXI.utils.isMobile);\n *\n * // Convert hex color to string\n * console.log(PIXI.utils.hex2string(0xff00ff)); // returns: \"#ff00ff\"\n * @namespace PIXI.utils\n */\n\nexport { BaseTextureCache, CanvasRenderTarget, DATA_URI, ProgramCache, TextureCache, clearTextureCache, correctBlendMode, createIndicesForQuads, decomposeDataUri, deprecation, destroyTextureCache, determineCrossOrigin, getResolutionOfUrl, hex2rgb, hex2string, isPow2, isWebGLSupported, log2, nextPow2, premultiplyBlendMode, premultiplyRgba, premultiplyTint, premultiplyTintToRgba, removeItems, rgb2hex, sayHello, sign, skipHello, string2hex, trimCanvas, uid };\n//# sourceMappingURL=utils.es.js.map\n","/*!\n * @pixi/math - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/math is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * The Point object represents a location in a two-dimensional coordinate system, where x represents\n * the horizontal axis and y represents the vertical axis.\n *\n * @class\n * @memberof PIXI\n */\nvar Point = function Point(x, y)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n};\n\n/**\n * Creates a clone of this point\n *\n * @return {PIXI.Point} a copy of the point\n */\nPoint.prototype.clone = function clone ()\n{\n return new Point(this.x, this.y);\n};\n\n/**\n * Copies x and y from the given point\n *\n * @param {PIXI.IPoint} p - The point to copy from\n * @returns {PIXI.IPoint} Returns itself.\n */\nPoint.prototype.copyFrom = function copyFrom (p)\n{\n this.set(p.x, p.y);\n\n return this;\n};\n\n/**\n * Copies x and y into the given point\n *\n * @param {PIXI.IPoint} p - The point to copy.\n * @returns {PIXI.IPoint} Given point with values updated\n */\nPoint.prototype.copyTo = function copyTo (p)\n{\n p.set(this.x, this.y);\n\n return p;\n};\n\n/**\n * Returns true if the given point is equal to this point\n *\n * @param {PIXI.IPoint} p - The point to check\n * @returns {boolean} Whether the given point equal to this point\n */\nPoint.prototype.equals = function equals (p)\n{\n return (p.x === this.x) && (p.y === this.y);\n};\n\n/**\n * Sets the point to a new x and y position.\n * If y is omitted, both x and y will be set to x.\n *\n * @param {number} [x=0] - position of the point on the x axis\n * @param {number} [y=0] - position of the point on the y axis\n */\nPoint.prototype.set = function set (x, y)\n{\n this.x = x || 0;\n this.y = y || ((y !== 0) ? this.x : 0);\n};\n\n/**\n * The Point object represents a location in a two-dimensional coordinate system, where x represents\n * the horizontal axis and y represents the vertical axis.\n *\n * An ObservablePoint is a point that triggers a callback when the point's position is changed.\n *\n * @class\n * @memberof PIXI\n */\nvar ObservablePoint = function ObservablePoint(cb, scope, x, y)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n this._x = x;\n this._y = y;\n\n this.cb = cb;\n this.scope = scope;\n};\n\nvar prototypeAccessors = { x: { configurable: true },y: { configurable: true } };\n\n/**\n * Creates a clone of this point.\n * The callback and scope params can be overidden otherwise they will default\n * to the clone object's values.\n *\n * @override\n * @param {Function} [cb=null] - callback when changed\n * @param {object} [scope=null] - owner of callback\n * @return {PIXI.ObservablePoint} a copy of the point\n */\nObservablePoint.prototype.clone = function clone (cb, scope)\n{\n if ( cb === void 0 ) cb = null;\n if ( scope === void 0 ) scope = null;\n\n var _cb = cb || this.cb;\n var _scope = scope || this.scope;\n\n return new ObservablePoint(_cb, _scope, this._x, this._y);\n};\n\n/**\n * Sets the point to a new x and y position.\n * If y is omitted, both x and y will be set to x.\n *\n * @param {number} [x=0] - position of the point on the x axis\n * @param {number} [y=0] - position of the point on the y axis\n */\nObservablePoint.prototype.set = function set (x, y)\n{\n var _x = x || 0;\n var _y = y || ((y !== 0) ? _x : 0);\n\n if (this._x !== _x || this._y !== _y)\n {\n this._x = _x;\n this._y = _y;\n this.cb.call(this.scope);\n }\n};\n\n/**\n * Copies x and y from the given point\n *\n * @param {PIXI.IPoint} p - The point to copy from.\n * @returns {PIXI.IPoint} Returns itself.\n */\nObservablePoint.prototype.copyFrom = function copyFrom (p)\n{\n if (this._x !== p.x || this._y !== p.y)\n {\n this._x = p.x;\n this._y = p.y;\n this.cb.call(this.scope);\n }\n\n return this;\n};\n\n/**\n * Copies x and y into the given point\n *\n * @param {PIXI.IPoint} p - The point to copy.\n * @returns {PIXI.IPoint} Given point with values updated\n */\nObservablePoint.prototype.copyTo = function copyTo (p)\n{\n p.set(this._x, this._y);\n\n return p;\n};\n\n/**\n * Returns true if the given point is equal to this point\n *\n * @param {PIXI.IPoint} p - The point to check\n * @returns {boolean} Whether the given point equal to this point\n */\nObservablePoint.prototype.equals = function equals (p)\n{\n return (p.x === this._x) && (p.y === this._y);\n};\n\n/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n *\n * @member {number}\n */\nprototypeAccessors.x.get = function ()\n{\n return this._x;\n};\n\nprototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._x !== value)\n {\n this._x = value;\n this.cb.call(this.scope);\n }\n};\n\n/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n *\n * @member {number}\n */\nprototypeAccessors.y.get = function ()\n{\n return this._y;\n};\n\nprototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._y !== value)\n {\n this._y = value;\n this.cb.call(this.scope);\n }\n};\n\nObject.defineProperties( ObservablePoint.prototype, prototypeAccessors );\n\n/**\n * A number, or a string containing a number.\n * @memberof PIXI\n * @typedef {(PIXI.Point|PIXI.ObservablePoint)} IPoint\n */\n\n/**\n * Two Pi.\n *\n * @static\n * @constant {number} PI_2\n * @memberof PIXI\n */\nvar PI_2 = Math.PI * 2;\n\n/**\n * Conversion factor for converting radians to degrees.\n *\n * @static\n * @constant {number} RAD_TO_DEG\n * @memberof PIXI\n */\nvar RAD_TO_DEG = 180 / Math.PI;\n\n/**\n * Conversion factor for converting degrees to radians.\n *\n * @static\n * @constant {number} DEG_TO_RAD\n * @memberof PIXI\n */\nvar DEG_TO_RAD = Math.PI / 180;\n\n/**\n * Constants that identify shapes, mainly to prevent `instanceof` calls.\n *\n * @static\n * @constant\n * @name SHAPES\n * @memberof PIXI\n * @type {object}\n * @property {number} POLY Polygon\n * @property {number} RECT Rectangle\n * @property {number} CIRC Circle\n * @property {number} ELIP Ellipse\n * @property {number} RREC Rounded Rectangle\n */\nvar SHAPES = {\n POLY: 0,\n RECT: 1,\n CIRC: 2,\n ELIP: 3,\n RREC: 4,\n};\n\n/**\n * The PixiJS Matrix as a class makes it a lot faster.\n *\n * Here is a representation of it:\n * ```js\n * | a | c | tx|\n * | b | d | ty|\n * | 0 | 0 | 1 |\n * ```\n * @class\n * @memberof PIXI\n */\nvar Matrix = function Matrix(a, b, c, d, tx, ty)\n{\n if ( a === void 0 ) a = 1;\n if ( b === void 0 ) b = 0;\n if ( c === void 0 ) c = 0;\n if ( d === void 0 ) d = 1;\n if ( tx === void 0 ) tx = 0;\n if ( ty === void 0 ) ty = 0;\n\n /**\n * @member {number}\n * @default 1\n */\n this.a = a;\n\n /**\n * @member {number}\n * @default 0\n */\n this.b = b;\n\n /**\n * @member {number}\n * @default 0\n */\n this.c = c;\n\n /**\n * @member {number}\n * @default 1\n */\n this.d = d;\n\n /**\n * @member {number}\n * @default 0\n */\n this.tx = tx;\n\n /**\n * @member {number}\n * @default 0\n */\n this.ty = ty;\n\n this.array = null;\n};\n\nvar staticAccessors = { IDENTITY: { configurable: true },TEMP_MATRIX: { configurable: true } };\n\n/**\n * Creates a Matrix object based on the given array. The Element to Matrix mapping order is as follows:\n *\n * a = array[0]\n * b = array[1]\n * c = array[3]\n * d = array[4]\n * tx = array[2]\n * ty = array[5]\n *\n * @param {number[]} array - The array that the matrix will be populated from.\n */\nMatrix.prototype.fromArray = function fromArray (array)\n{\n this.a = array[0];\n this.b = array[1];\n this.c = array[3];\n this.d = array[4];\n this.tx = array[2];\n this.ty = array[5];\n};\n\n/**\n * sets the matrix properties\n *\n * @param {number} a - Matrix component\n * @param {number} b - Matrix component\n * @param {number} c - Matrix component\n * @param {number} d - Matrix component\n * @param {number} tx - Matrix component\n * @param {number} ty - Matrix component\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.set = function set (a, b, c, d, tx, ty)\n{\n this.a = a;\n this.b = b;\n this.c = c;\n this.d = d;\n this.tx = tx;\n this.ty = ty;\n\n return this;\n};\n\n/**\n * Creates an array from the current Matrix object.\n *\n * @param {boolean} transpose - Whether we need to transpose the matrix or not\n * @param {Float32Array} [out=new Float32Array(9)] - If provided the array will be assigned to out\n * @return {number[]} the newly created array which contains the matrix\n */\nMatrix.prototype.toArray = function toArray (transpose, out)\n{\n if (!this.array)\n {\n this.array = new Float32Array(9);\n }\n\n var array = out || this.array;\n\n if (transpose)\n {\n array[0] = this.a;\n array[1] = this.b;\n array[2] = 0;\n array[3] = this.c;\n array[4] = this.d;\n array[5] = 0;\n array[6] = this.tx;\n array[7] = this.ty;\n array[8] = 1;\n }\n else\n {\n array[0] = this.a;\n array[1] = this.c;\n array[2] = this.tx;\n array[3] = this.b;\n array[4] = this.d;\n array[5] = this.ty;\n array[6] = 0;\n array[7] = 0;\n array[8] = 1;\n }\n\n return array;\n};\n\n/**\n * Get a new position with the current transformation applied.\n * Can be used to go from a child's coordinate space to the world coordinate space. (e.g. rendering)\n *\n * @param {PIXI.Point} pos - The origin\n * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input)\n * @return {PIXI.Point} The new point, transformed through this matrix\n */\nMatrix.prototype.apply = function apply (pos, newPos)\n{\n newPos = newPos || new Point();\n\n var x = pos.x;\n var y = pos.y;\n\n newPos.x = (this.a * x) + (this.c * y) + this.tx;\n newPos.y = (this.b * x) + (this.d * y) + this.ty;\n\n return newPos;\n};\n\n/**\n * Get a new position with the inverse of the current transformation applied.\n * Can be used to go from the world coordinate space to a child's coordinate space. (e.g. input)\n *\n * @param {PIXI.Point} pos - The origin\n * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input)\n * @return {PIXI.Point} The new point, inverse-transformed through this matrix\n */\nMatrix.prototype.applyInverse = function applyInverse (pos, newPos)\n{\n newPos = newPos || new Point();\n\n var id = 1 / ((this.a * this.d) + (this.c * -this.b));\n\n var x = pos.x;\n var y = pos.y;\n\n newPos.x = (this.d * id * x) + (-this.c * id * y) + (((this.ty * this.c) - (this.tx * this.d)) * id);\n newPos.y = (this.a * id * y) + (-this.b * id * x) + (((-this.ty * this.a) + (this.tx * this.b)) * id);\n\n return newPos;\n};\n\n/**\n * Translates the matrix on the x and y.\n *\n * @param {number} x How much to translate x by\n * @param {number} y How much to translate y by\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.translate = function translate (x, y)\n{\n this.tx += x;\n this.ty += y;\n\n return this;\n};\n\n/**\n * Applies a scale transformation to the matrix.\n *\n * @param {number} x The amount to scale horizontally\n * @param {number} y The amount to scale vertically\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.scale = function scale (x, y)\n{\n this.a *= x;\n this.d *= y;\n this.c *= x;\n this.b *= y;\n this.tx *= x;\n this.ty *= y;\n\n return this;\n};\n\n/**\n * Applies a rotation transformation to the matrix.\n *\n * @param {number} angle - The angle in radians.\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.rotate = function rotate (angle)\n{\n var cos = Math.cos(angle);\n var sin = Math.sin(angle);\n\n var a1 = this.a;\n var c1 = this.c;\n var tx1 = this.tx;\n\n this.a = (a1 * cos) - (this.b * sin);\n this.b = (a1 * sin) + (this.b * cos);\n this.c = (c1 * cos) - (this.d * sin);\n this.d = (c1 * sin) + (this.d * cos);\n this.tx = (tx1 * cos) - (this.ty * sin);\n this.ty = (tx1 * sin) + (this.ty * cos);\n\n return this;\n};\n\n/**\n * Appends the given Matrix to this Matrix.\n *\n * @param {PIXI.Matrix} matrix - The matrix to append.\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.append = function append (matrix)\n{\n var a1 = this.a;\n var b1 = this.b;\n var c1 = this.c;\n var d1 = this.d;\n\n this.a = (matrix.a * a1) + (matrix.b * c1);\n this.b = (matrix.a * b1) + (matrix.b * d1);\n this.c = (matrix.c * a1) + (matrix.d * c1);\n this.d = (matrix.c * b1) + (matrix.d * d1);\n\n this.tx = (matrix.tx * a1) + (matrix.ty * c1) + this.tx;\n this.ty = (matrix.tx * b1) + (matrix.ty * d1) + this.ty;\n\n return this;\n};\n\n/**\n * Sets the matrix based on all the available properties\n *\n * @param {number} x - Position on the x axis\n * @param {number} y - Position on the y axis\n * @param {number} pivotX - Pivot on the x axis\n * @param {number} pivotY - Pivot on the y axis\n * @param {number} scaleX - Scale on the x axis\n * @param {number} scaleY - Scale on the y axis\n * @param {number} rotation - Rotation in radians\n * @param {number} skewX - Skew on the x axis\n * @param {number} skewY - Skew on the y axis\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.setTransform = function setTransform (x, y, pivotX, pivotY, scaleX, scaleY, rotation, skewX, skewY)\n{\n this.a = Math.cos(rotation + skewY) * scaleX;\n this.b = Math.sin(rotation + skewY) * scaleX;\n this.c = -Math.sin(rotation - skewX) * scaleY;\n this.d = Math.cos(rotation - skewX) * scaleY;\n\n this.tx = x - ((pivotX * this.a) + (pivotY * this.c));\n this.ty = y - ((pivotX * this.b) + (pivotY * this.d));\n\n return this;\n};\n\n/**\n * Prepends the given Matrix to this Matrix.\n *\n * @param {PIXI.Matrix} matrix - The matrix to prepend\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.prepend = function prepend (matrix)\n{\n var tx1 = this.tx;\n\n if (matrix.a !== 1 || matrix.b !== 0 || matrix.c !== 0 || matrix.d !== 1)\n {\n var a1 = this.a;\n var c1 = this.c;\n\n this.a = (a1 * matrix.a) + (this.b * matrix.c);\n this.b = (a1 * matrix.b) + (this.b * matrix.d);\n this.c = (c1 * matrix.a) + (this.d * matrix.c);\n this.d = (c1 * matrix.b) + (this.d * matrix.d);\n }\n\n this.tx = (tx1 * matrix.a) + (this.ty * matrix.c) + matrix.tx;\n this.ty = (tx1 * matrix.b) + (this.ty * matrix.d) + matrix.ty;\n\n return this;\n};\n\n/**\n * Decomposes the matrix (x, y, scaleX, scaleY, and rotation) and sets the properties on to a transform.\n *\n * @param {PIXI.Transform} transform - The transform to apply the properties to.\n * @return {PIXI.Transform} The transform with the newly applied properties\n */\nMatrix.prototype.decompose = function decompose (transform)\n{\n // sort out rotation / skew..\n var a = this.a;\n var b = this.b;\n var c = this.c;\n var d = this.d;\n\n var skewX = -Math.atan2(-c, d);\n var skewY = Math.atan2(b, a);\n\n var delta = Math.abs(skewX + skewY);\n\n if (delta < 0.00001 || Math.abs(PI_2 - delta) < 0.00001)\n {\n transform.rotation = skewY;\n transform.skew.x = transform.skew.y = 0;\n }\n else\n {\n transform.rotation = 0;\n transform.skew.x = skewX;\n transform.skew.y = skewY;\n }\n\n // next set scale\n transform.scale.x = Math.sqrt((a * a) + (b * b));\n transform.scale.y = Math.sqrt((c * c) + (d * d));\n\n // next set position\n transform.position.x = this.tx;\n transform.position.y = this.ty;\n\n return transform;\n};\n\n/**\n * Inverts this matrix\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.invert = function invert ()\n{\n var a1 = this.a;\n var b1 = this.b;\n var c1 = this.c;\n var d1 = this.d;\n var tx1 = this.tx;\n var n = (a1 * d1) - (b1 * c1);\n\n this.a = d1 / n;\n this.b = -b1 / n;\n this.c = -c1 / n;\n this.d = a1 / n;\n this.tx = ((c1 * this.ty) - (d1 * tx1)) / n;\n this.ty = -((a1 * this.ty) - (b1 * tx1)) / n;\n\n return this;\n};\n\n/**\n * Resets this Matrix to an identity (default) matrix.\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.identity = function identity ()\n{\n this.a = 1;\n this.b = 0;\n this.c = 0;\n this.d = 1;\n this.tx = 0;\n this.ty = 0;\n\n return this;\n};\n\n/**\n * Creates a new Matrix object with the same values as this one.\n *\n * @return {PIXI.Matrix} A copy of this matrix. Good for chaining method calls.\n */\nMatrix.prototype.clone = function clone ()\n{\n var matrix = new Matrix();\n\n matrix.a = this.a;\n matrix.b = this.b;\n matrix.c = this.c;\n matrix.d = this.d;\n matrix.tx = this.tx;\n matrix.ty = this.ty;\n\n return matrix;\n};\n\n/**\n * Changes the values of the given matrix to be the same as the ones in this matrix\n *\n * @param {PIXI.Matrix} matrix - The matrix to copy to.\n * @return {PIXI.Matrix} The matrix given in parameter with its values updated.\n */\nMatrix.prototype.copyTo = function copyTo (matrix)\n{\n matrix.a = this.a;\n matrix.b = this.b;\n matrix.c = this.c;\n matrix.d = this.d;\n matrix.tx = this.tx;\n matrix.ty = this.ty;\n\n return matrix;\n};\n\n/**\n * Changes the values of the matrix to be the same as the ones in given matrix\n *\n * @param {PIXI.Matrix} matrix - The matrix to copy from.\n * @return {PIXI.Matrix} this\n */\nMatrix.prototype.copyFrom = function copyFrom (matrix)\n{\n this.a = matrix.a;\n this.b = matrix.b;\n this.c = matrix.c;\n this.d = matrix.d;\n this.tx = matrix.tx;\n this.ty = matrix.ty;\n\n return this;\n};\n\n/**\n * A default (identity) matrix\n *\n * @static\n * @const\n * @member {PIXI.Matrix}\n */\nstaticAccessors.IDENTITY.get = function ()\n{\n return new Matrix();\n};\n\n/**\n * A temp matrix\n *\n * @static\n * @const\n * @member {PIXI.Matrix}\n */\nstaticAccessors.TEMP_MATRIX.get = function ()\n{\n return new Matrix();\n};\n\nObject.defineProperties( Matrix, staticAccessors );\n\n// Your friendly neighbour https://en.wikipedia.org/wiki/Dihedral_group\n\n/*\n * Transform matrix for operation n is:\n * | ux | vx |\n * | uy | vy |\n */\n\nvar ux = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1];\nvar uy = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1];\nvar vx = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1];\nvar vy = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1];\n\n/**\n * [Cayley Table]{@link https://en.wikipedia.org/wiki/Cayley_table}\n * for the composition of each rotation in the dihederal group D8.\n *\n * @type number[][]\n * @private\n */\nvar rotationCayley = [];\n\n/**\n * Matrices for each `GD8Symmetry` rotation.\n *\n * @type Matrix[]\n * @private\n */\nvar rotationMatrices = [];\n\n/*\n * Alias for {@code Math.sign}.\n */\nvar signum = Math.sign;\n\n/*\n * Initializes `rotationCayley` and `rotationMatrices`. It is called\n * only once below.\n */\nfunction init()\n{\n for (var i = 0; i < 16; i++)\n {\n var row = [];\n\n rotationCayley.push(row);\n\n for (var j = 0; j < 16; j++)\n {\n /* Multiplies rotation matrices i and j. */\n var _ux = signum((ux[i] * ux[j]) + (vx[i] * uy[j]));\n var _uy = signum((uy[i] * ux[j]) + (vy[i] * uy[j]));\n var _vx = signum((ux[i] * vx[j]) + (vx[i] * vy[j]));\n var _vy = signum((uy[i] * vx[j]) + (vy[i] * vy[j]));\n\n /* Finds rotation matrix matching the product and pushes it. */\n for (var k = 0; k < 16; k++)\n {\n if (ux[k] === _ux && uy[k] === _uy\n && vx[k] === _vx && vy[k] === _vy)\n {\n row.push(k);\n break;\n }\n }\n }\n }\n\n for (var i$1 = 0; i$1 < 16; i$1++)\n {\n var mat = new Matrix();\n\n mat.set(ux[i$1], uy[i$1], vx[i$1], vy[i$1], 0, 0);\n rotationMatrices.push(mat);\n }\n}\n\ninit();\n\n/**\n * @memberof PIXI\n * @typedef {number} GD8Symmetry\n * @see PIXI.GroupD8\n */\n\n/**\n * Implements the dihedral group D8, which is similar to\n * [group D4]{@link http://mathworld.wolfram.com/DihedralGroupD4.html};\n * D8 is the same but with diagonals, and it is used for texture\n * rotations.\n *\n * The directions the U- and V- axes after rotation\n * of an angle of `a: GD8Constant` are the vectors `(uX(a), uY(a))`\n * and `(vX(a), vY(a))`. These aren't necessarily unit vectors.\n *\n * **Origin:**
\n * This is the small part of gameofbombs.com portal system. It works.\n *\n * @see PIXI.GroupD8.E\n * @see PIXI.GroupD8.SE\n * @see PIXI.GroupD8.S\n * @see PIXI.GroupD8.SW\n * @see PIXI.GroupD8.W\n * @see PIXI.GroupD8.NW\n * @see PIXI.GroupD8.N\n * @see PIXI.GroupD8.NE\n * @author Ivan @ivanpopelyshev\n * @class\n * @memberof PIXI\n */\nvar GroupD8 = {\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 0° | East |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n E: 0,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 45°↻ | Southeast |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n SE: 1,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 90°↻ | South |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n S: 2,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 135°↻ | Southwest |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n SW: 3,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 180° | West |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n W: 4,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -135°/225°↻ | Northwest |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n NW: 5,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -90°/270°↻ | North |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n N: 6,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -45°/315°↻ | Northeast |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n NE: 7,\n\n /**\n * Reflection about Y-axis.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MIRROR_VERTICAL: 8,\n\n /**\n * Reflection about the main diagonal.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MAIN_DIAGONAL: 10,\n\n /**\n * Reflection about X-axis.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MIRROR_HORIZONTAL: 12,\n\n /**\n * Reflection about reverse diagonal.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n REVERSE_DIAGONAL: 14,\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The X-component of the U-axis\n * after rotating the axes.\n */\n uX: function (ind) { return ux[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The Y-component of the U-axis\n * after rotating the axes.\n */\n uY: function (ind) { return uy[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The X-component of the V-axis\n * after rotating the axes.\n */\n vX: function (ind) { return vx[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The Y-component of the V-axis\n * after rotating the axes.\n */\n vY: function (ind) { return vy[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotation - symmetry whose opposite\n * is needed. Only rotations have opposite symmetries while\n * reflections don't.\n * @return {PIXI.GD8Symmetry} The opposite symmetry of `rotation`\n */\n inv: function (rotation) {\n if (rotation & 8)// true only if between 8 & 15 (reflections)\n {\n return rotation & 15;// or rotation % 16\n }\n\n return (-rotation) & 7;// or (8 - rotation) % 8\n },\n\n /**\n * Composes the two D8 operations.\n *\n * Taking `^` as reflection:\n *\n * | | E=0 | S=2 | W=4 | N=6 | E^=8 | S^=10 | W^=12 | N^=14 |\n * |-------|-----|-----|-----|-----|------|-------|-------|-------|\n * | E=0 | E | S | W | N | E^ | S^ | W^ | N^ |\n * | S=2 | S | W | N | E | S^ | W^ | N^ | E^ |\n * | W=4 | W | N | E | S | W^ | N^ | E^ | S^ |\n * | N=6 | N | E | S | W | N^ | E^ | S^ | W^ |\n * | E^=8 | E^ | N^ | W^ | S^ | E | N | W | S |\n * | S^=10 | S^ | E^ | N^ | W^ | S | E | N | W |\n * | W^=12 | W^ | S^ | E^ | N^ | W | S | E | N |\n * | N^=14 | N^ | W^ | S^ | E^ | N | W | S | E |\n *\n * [This is a Cayley table]{@link https://en.wikipedia.org/wiki/Cayley_table}\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotationSecond - Second operation, which\n * is the row in the above cayley table.\n * @param {PIXI.GD8Symmetry} rotationFirst - First operation, which\n * is the column in the above cayley table.\n * @return {PIXI.GD8Symmetry} Composed operation\n */\n add: function (rotationSecond, rotationFirst) { return (\n rotationCayley[rotationSecond][rotationFirst]\n ); },\n\n /**\n * Reverse of `add`.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotationSecond - Second operation\n * @param {PIXI.GD8Symmetry} rotationFirst - First operation\n * @return {PIXI.GD8Symmetry} Result\n */\n sub: function (rotationSecond, rotationFirst) { return (\n rotationCayley[rotationSecond][GroupD8.inv(rotationFirst)]\n ); },\n\n /**\n * Adds 180 degrees to rotation, which is a commutative\n * operation.\n *\n * @memberof PIXI.GroupD8\n * @param {number} rotation - The number to rotate.\n * @returns {number} Rotated number\n */\n rotate180: function (rotation) { return rotation ^ 4; },\n\n /**\n * Checks if the rotation angle is vertical, i.e. south\n * or north. It doesn't work for reflections.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotation - The number to check.\n * @returns {boolean} Whether or not the direction is vertical\n */\n isVertical: function (rotation) { return (rotation & 3) === 2; }, // rotation % 4 === 2\n\n /**\n * Approximates the vector `V(dx,dy)` into one of the\n * eight directions provided by `GroupD8`.\n *\n * @memberof PIXI.GroupD8\n * @param {number} dx - X-component of the vector\n * @param {number} dy - Y-component of the vector\n * @return {PIXI.GD8Symmetry} Approximation of the vector into\n * one of the eight symmetries.\n */\n byDirection: function (dx, dy) {\n if (Math.abs(dx) * 2 <= Math.abs(dy))\n {\n if (dy >= 0)\n {\n return GroupD8.S;\n }\n\n return GroupD8.N;\n }\n else if (Math.abs(dy) * 2 <= Math.abs(dx))\n {\n if (dx > 0)\n {\n return GroupD8.E;\n }\n\n return GroupD8.W;\n }\n else if (dy > 0)\n {\n if (dx > 0)\n {\n return GroupD8.SE;\n }\n\n return GroupD8.SW;\n }\n else if (dx > 0)\n {\n return GroupD8.NE;\n }\n\n return GroupD8.NW;\n },\n\n /**\n * Helps sprite to compensate texture packer rotation.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.Matrix} matrix - sprite world matrix\n * @param {PIXI.GD8Symmetry} rotation - The rotation factor to use.\n * @param {number} tx - sprite anchoring\n * @param {number} ty - sprite anchoring\n */\n matrixAppendRotationInv: function (matrix, rotation, tx, ty) {\n if ( tx === void 0 ) tx = 0;\n if ( ty === void 0 ) ty = 0;\n\n // Packer used \"rotation\", we use \"inv(rotation)\"\n var mat = rotationMatrices[GroupD8.inv(rotation)];\n\n mat.tx = tx;\n mat.ty = ty;\n matrix.append(mat);\n },\n};\n\n/**\n * Transform that takes care about its versions\n *\n * @class\n * @memberof PIXI\n */\nvar Transform = function Transform()\n{\n /**\n * The world transformation matrix.\n *\n * @member {PIXI.Matrix}\n */\n this.worldTransform = new Matrix();\n\n /**\n * The local transformation matrix.\n *\n * @member {PIXI.Matrix}\n */\n this.localTransform = new Matrix();\n\n /**\n * The coordinate of the object relative to the local coordinates of the parent.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.position = new ObservablePoint(this.onChange, this, 0, 0);\n\n /**\n * The scale factor of the object.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.scale = new ObservablePoint(this.onChange, this, 1, 1);\n\n /**\n * The pivot point of the displayObject that it rotates around.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.pivot = new ObservablePoint(this.onChange, this, 0, 0);\n\n /**\n * The skew amount, on the x and y axis.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.skew = new ObservablePoint(this.updateSkew, this, 0, 0);\n\n /**\n * The rotation amount.\n *\n * @protected\n * @member {number}\n */\n this._rotation = 0;\n\n /**\n * The X-coordinate value of the normalized local X axis,\n * the first column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._cx = 1;\n\n /**\n * The Y-coordinate value of the normalized local X axis,\n * the first column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._sx = 0;\n\n /**\n * The X-coordinate value of the normalized local Y axis,\n * the second column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._cy = 0;\n\n /**\n * The Y-coordinate value of the normalized local Y axis,\n * the second column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._sy = 1;\n\n /**\n * The locally unique ID of the local transform.\n *\n * @protected\n * @member {number}\n */\n this._localID = 0;\n\n /**\n * The locally unique ID of the local transform\n * used to calculate the current local transformation matrix.\n *\n * @protected\n * @member {number}\n */\n this._currentLocalID = 0;\n\n /**\n * The locally unique ID of the world transform.\n *\n * @protected\n * @member {number}\n */\n this._worldID = 0;\n\n /**\n * The locally unique ID of the parent's world transform\n * used to calculate the current world transformation matrix.\n *\n * @protected\n * @member {number}\n */\n this._parentID = 0;\n};\n\nvar prototypeAccessors$1 = { rotation: { configurable: true } };\n\n/**\n * Called when a value changes.\n *\n * @protected\n */\nTransform.prototype.onChange = function onChange ()\n{\n this._localID++;\n};\n\n/**\n * Called when the skew or the rotation changes.\n *\n * @protected\n */\nTransform.prototype.updateSkew = function updateSkew ()\n{\n this._cx = Math.cos(this._rotation + this.skew._y);\n this._sx = Math.sin(this._rotation + this.skew._y);\n this._cy = -Math.sin(this._rotation - this.skew._x); // cos, added PI/2\n this._sy = Math.cos(this._rotation - this.skew._x); // sin, added PI/2\n\n this._localID++;\n};\n\n/**\n * Updates the local transformation matrix.\n */\nTransform.prototype.updateLocalTransform = function updateLocalTransform ()\n{\n var lt = this.localTransform;\n\n if (this._localID !== this._currentLocalID)\n {\n // get the matrix values of the displayobject based on its transform properties..\n lt.a = this._cx * this.scale._x;\n lt.b = this._sx * this.scale._x;\n lt.c = this._cy * this.scale._y;\n lt.d = this._sy * this.scale._y;\n\n lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c));\n lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d));\n this._currentLocalID = this._localID;\n\n // force an update..\n this._parentID = -1;\n }\n};\n\n/**\n * Updates the local and the world transformation matrices.\n *\n * @param {PIXI.Transform} parentTransform - The parent transform\n */\nTransform.prototype.updateTransform = function updateTransform (parentTransform)\n{\n var lt = this.localTransform;\n\n if (this._localID !== this._currentLocalID)\n {\n // get the matrix values of the displayobject based on its transform properties..\n lt.a = this._cx * this.scale._x;\n lt.b = this._sx * this.scale._x;\n lt.c = this._cy * this.scale._y;\n lt.d = this._sy * this.scale._y;\n\n lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c));\n lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d));\n this._currentLocalID = this._localID;\n\n // force an update..\n this._parentID = -1;\n }\n\n if (this._parentID !== parentTransform._worldID)\n {\n // concat the parent matrix with the objects transform.\n var pt = parentTransform.worldTransform;\n var wt = this.worldTransform;\n\n wt.a = (lt.a * pt.a) + (lt.b * pt.c);\n wt.b = (lt.a * pt.b) + (lt.b * pt.d);\n wt.c = (lt.c * pt.a) + (lt.d * pt.c);\n wt.d = (lt.c * pt.b) + (lt.d * pt.d);\n wt.tx = (lt.tx * pt.a) + (lt.ty * pt.c) + pt.tx;\n wt.ty = (lt.tx * pt.b) + (lt.ty * pt.d) + pt.ty;\n\n this._parentID = parentTransform._worldID;\n\n // update the id of the transform..\n this._worldID++;\n }\n};\n\n/**\n * Decomposes a matrix and sets the transforms properties based on it.\n *\n * @param {PIXI.Matrix} matrix - The matrix to decompose\n */\nTransform.prototype.setFromMatrix = function setFromMatrix (matrix)\n{\n matrix.decompose(this);\n this._localID++;\n};\n\n/**\n * The rotation of the object in radians.\n *\n * @member {number}\n */\nprototypeAccessors$1.rotation.get = function ()\n{\n return this._rotation;\n};\n\nprototypeAccessors$1.rotation.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._rotation !== value)\n {\n this._rotation = value;\n this.updateSkew();\n }\n};\n\nObject.defineProperties( Transform.prototype, prototypeAccessors$1 );\n\n/**\n * A default (identity) transform\n *\n * @static\n * @constant\n * @member {PIXI.Transform}\n */\nTransform.IDENTITY = new Transform();\n\n/**\n * Size object, contains width and height\n *\n * @memberof PIXI\n * @typedef {object} ISize\n * @property {number} width - Width component\n * @property {number} height - Height component\n */\n\n/**\n * Rectangle object is an area defined by its position, as indicated by its top-left corner\n * point (x, y) and by its width and its height.\n *\n * @class\n * @memberof PIXI\n */\nvar Rectangle = function Rectangle(x, y, width, height)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = Number(x);\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = Number(y);\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = Number(width);\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = Number(height);\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.RECT\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.RECT;\n};\n\nvar prototypeAccessors$2 = { left: { configurable: true },right: { configurable: true },top: { configurable: true },bottom: { configurable: true } };\nvar staticAccessors$1 = { EMPTY: { configurable: true } };\n\n/**\n * returns the left edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.left.get = function ()\n{\n return this.x;\n};\n\n/**\n * returns the right edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.right.get = function ()\n{\n return this.x + this.width;\n};\n\n/**\n * returns the top edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.top.get = function ()\n{\n return this.y;\n};\n\n/**\n * returns the bottom edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.bottom.get = function ()\n{\n return this.y + this.height;\n};\n\n/**\n * A constant empty rectangle.\n *\n * @static\n * @constant\n * @member {PIXI.Rectangle}\n */\nstaticAccessors$1.EMPTY.get = function ()\n{\n return new Rectangle(0, 0, 0, 0);\n};\n\n/**\n * Creates a clone of this Rectangle\n *\n * @return {PIXI.Rectangle} a copy of the rectangle\n */\nRectangle.prototype.clone = function clone ()\n{\n return new Rectangle(this.x, this.y, this.width, this.height);\n};\n\n/**\n * Copies another rectangle to this one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to copy from.\n * @return {PIXI.Rectangle} Returns itself.\n */\nRectangle.prototype.copyFrom = function copyFrom (rectangle)\n{\n this.x = rectangle.x;\n this.y = rectangle.y;\n this.width = rectangle.width;\n this.height = rectangle.height;\n\n return this;\n};\n\n/**\n * Copies this rectangle to another one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to copy to.\n * @return {PIXI.Rectangle} Returns given parameter.\n */\nRectangle.prototype.copyTo = function copyTo (rectangle)\n{\n rectangle.x = this.x;\n rectangle.y = this.y;\n rectangle.width = this.width;\n rectangle.height = this.height;\n\n return rectangle;\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this Rectangle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Rectangle\n */\nRectangle.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n\n if (x >= this.x && x < this.x + this.width)\n {\n if (y >= this.y && y < this.y + this.height)\n {\n return true;\n }\n }\n\n return false;\n};\n\n/**\n * Pads the rectangle making it grow in all directions.\n *\n * @param {number} paddingX - The horizontal padding amount.\n * @param {number} paddingY - The vertical padding amount.\n */\nRectangle.prototype.pad = function pad (paddingX, paddingY)\n{\n paddingX = paddingX || 0;\n paddingY = paddingY || ((paddingY !== 0) ? paddingX : 0);\n\n this.x -= paddingX;\n this.y -= paddingY;\n\n this.width += paddingX * 2;\n this.height += paddingY * 2;\n};\n\n/**\n * Fits this rectangle around the passed one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to fit.\n */\nRectangle.prototype.fit = function fit (rectangle)\n{\n var x1 = Math.max(this.x, rectangle.x);\n var x2 = Math.min(this.x + this.width, rectangle.x + rectangle.width);\n var y1 = Math.max(this.y, rectangle.y);\n var y2 = Math.min(this.y + this.height, rectangle.y + rectangle.height);\n\n this.x = x1;\n this.width = Math.max(x2 - x1, 0);\n this.y = y1;\n this.height = Math.max(y2 - y1, 0);\n};\n\n/**\n * Enlarges rectangle that way its corners lie on grid\n *\n * @param {number} [resolution=1] resolution\n * @param {number} [eps=0.001] precision\n */\nRectangle.prototype.ceil = function ceil (resolution, eps)\n{\n if ( resolution === void 0 ) resolution = 1;\n if ( eps === void 0 ) eps = 0.001;\n\n var x2 = Math.ceil((this.x + this.width - eps) * resolution) / resolution;\n var y2 = Math.ceil((this.y + this.height - eps) * resolution) / resolution;\n\n this.x = Math.floor((this.x + eps) * resolution) / resolution;\n this.y = Math.floor((this.y + eps) * resolution) / resolution;\n\n this.width = x2 - this.x;\n this.height = y2 - this.y;\n};\n\n/**\n * Enlarges this rectangle to include the passed rectangle.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to include.\n */\nRectangle.prototype.enlarge = function enlarge (rectangle)\n{\n var x1 = Math.min(this.x, rectangle.x);\n var x2 = Math.max(this.x + this.width, rectangle.x + rectangle.width);\n var y1 = Math.min(this.y, rectangle.y);\n var y2 = Math.max(this.y + this.height, rectangle.y + rectangle.height);\n\n this.x = x1;\n this.width = x2 - x1;\n this.y = y1;\n this.height = y2 - y1;\n};\n\nObject.defineProperties( Rectangle.prototype, prototypeAccessors$2 );\nObject.defineProperties( Rectangle, staticAccessors$1 );\n\n/**\n * The Circle object is used to help draw graphics and can also be used to specify a hit area for displayObjects.\n *\n * @class\n * @memberof PIXI\n */\nvar Circle = function Circle(x, y, radius)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( radius === void 0 ) radius = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.radius = radius;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.CIRC\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.CIRC;\n};\n\n/**\n * Creates a clone of this Circle instance\n *\n * @return {PIXI.Circle} a copy of the Circle\n */\nCircle.prototype.clone = function clone ()\n{\n return new Circle(this.x, this.y, this.radius);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this circle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Circle\n */\nCircle.prototype.contains = function contains (x, y)\n{\n if (this.radius <= 0)\n {\n return false;\n }\n\n var r2 = this.radius * this.radius;\n var dx = (this.x - x);\n var dy = (this.y - y);\n\n dx *= dx;\n dy *= dy;\n\n return (dx + dy <= r2);\n};\n\n/**\n* Returns the framing rectangle of the circle as a Rectangle object\n*\n* @return {PIXI.Rectangle} the framing rectangle\n*/\nCircle.prototype.getBounds = function getBounds ()\n{\n return new Rectangle(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2);\n};\n\n/**\n * The Ellipse object is used to help draw graphics and can also be used to specify a hit area for displayObjects.\n *\n * @class\n * @memberof PIXI\n */\nvar Ellipse = function Ellipse(x, y, halfWidth, halfHeight)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( halfWidth === void 0 ) halfWidth = 0;\n if ( halfHeight === void 0 ) halfHeight = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = halfWidth;\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = halfHeight;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.ELIP\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.ELIP;\n};\n\n/**\n * Creates a clone of this Ellipse instance\n *\n * @return {PIXI.Ellipse} a copy of the ellipse\n */\nEllipse.prototype.clone = function clone ()\n{\n return new Ellipse(this.x, this.y, this.width, this.height);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this ellipse\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coords are within this ellipse\n */\nEllipse.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n\n // normalize the coords to an ellipse with center 0,0\n var normx = ((x - this.x) / this.width);\n var normy = ((y - this.y) / this.height);\n\n normx *= normx;\n normy *= normy;\n\n return (normx + normy <= 1);\n};\n\n/**\n * Returns the framing rectangle of the ellipse as a Rectangle object\n *\n * @return {PIXI.Rectangle} the framing rectangle\n */\nEllipse.prototype.getBounds = function getBounds ()\n{\n return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height);\n};\n\n/**\n * A class to define a shape via user defined co-orinates.\n *\n * @class\n * @memberof PIXI\n */\nvar Polygon = function Polygon()\n{\n var points = [], len = arguments.length;\n while ( len-- ) points[ len ] = arguments[ len ];\n\n if (Array.isArray(points[0]))\n {\n points = points[0];\n }\n\n // if this is an array of points, convert it to a flat array of numbers\n if (points[0] instanceof Point)\n {\n var p = [];\n\n for (var i = 0, il = points.length; i < il; i++)\n {\n p.push(points[i].x, points[i].y);\n }\n\n points = p;\n }\n\n /**\n * An array of the points of this polygon\n *\n * @member {number[]}\n */\n this.points = points;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.POLY\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.POLY;\n\n /**\n * `false` after moveTo, `true` after `closePath`. In all other cases it is `true`.\n * @member {boolean}\n * @default true\n */\n this.closeStroke = true;\n};\n\n/**\n * Creates a clone of this polygon\n *\n * @return {PIXI.Polygon} a copy of the polygon\n */\nPolygon.prototype.clone = function clone ()\n{\n var polygon = new Polygon(this.points.slice());\n\n polygon.closeStroke = this.closeStroke;\n\n return polygon;\n};\n\n/**\n * Checks whether the x and y coordinates passed to this function are contained within this polygon\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this polygon\n */\nPolygon.prototype.contains = function contains (x, y)\n{\n var inside = false;\n\n // use some raycasting to test hits\n // https://github.com/substack/point-in-polygon/blob/master/index.js\n var length = this.points.length / 2;\n\n for (var i = 0, j = length - 1; i < length; j = i++)\n {\n var xi = this.points[i * 2];\n var yi = this.points[(i * 2) + 1];\n var xj = this.points[j * 2];\n var yj = this.points[(j * 2) + 1];\n var intersect = ((yi > y) !== (yj > y)) && (x < ((xj - xi) * ((y - yi) / (yj - yi))) + xi);\n\n if (intersect)\n {\n inside = !inside;\n }\n }\n\n return inside;\n};\n\n/**\n * The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its\n * top-left corner point (x, y) and by its width and its height and its radius.\n *\n * @class\n * @memberof PIXI\n */\nvar RoundedRectangle = function RoundedRectangle(x, y, width, height, radius)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n if ( radius === void 0 ) radius = 20;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = width;\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = height;\n\n /**\n * @member {number}\n * @default 20\n */\n this.radius = radius;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readonly\n * @default PIXI.SHAPES.RREC\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.RREC;\n};\n\n/**\n * Creates a clone of this Rounded Rectangle\n *\n * @return {PIXI.RoundedRectangle} a copy of the rounded rectangle\n */\nRoundedRectangle.prototype.clone = function clone ()\n{\n return new RoundedRectangle(this.x, this.y, this.width, this.height, this.radius);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this Rounded Rectangle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Rounded Rectangle\n */\nRoundedRectangle.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n if (x >= this.x && x <= this.x + this.width)\n {\n if (y >= this.y && y <= this.y + this.height)\n {\n if ((y >= this.y + this.radius && y <= this.y + this.height - this.radius)\n || (x >= this.x + this.radius && x <= this.x + this.width - this.radius))\n {\n return true;\n }\n var dx = x - (this.x + this.radius);\n var dy = y - (this.y + this.radius);\n var radius2 = this.radius * this.radius;\n\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dx = x - (this.x + this.width - this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dy = y - (this.y + this.height - this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dx = x - (this.x + this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n }\n }\n\n return false;\n};\n\n/**\n * Math classes and utilities mixed into PIXI namespace.\n *\n * @lends PIXI\n */\n\nexport { Circle, DEG_TO_RAD, Ellipse, GroupD8, Matrix, ObservablePoint, PI_2, Point, Polygon, RAD_TO_DEG, Rectangle, RoundedRectangle, SHAPES, Transform };\n//# sourceMappingURL=math.es.js.map\n","/*!\n * @pixi/display - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/display is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nimport { Rectangle, RAD_TO_DEG, DEG_TO_RAD, Transform } from '@pixi/math';\nimport { EventEmitter, removeItems } from '@pixi/utils';\n\n/**\n * Sets the default value for the container property 'sortableChildren'.\n * If set to true, the container will sort its children by zIndex value\n * when updateTransform() is called, or manually if sortChildren() is called.\n *\n * This actually changes the order of elements in the array, so should be treated\n * as a basic solution that is not performant compared to other solutions,\n * such as @link https://github.com/pixijs/pixi-display\n *\n * Also be aware of that this may not work nicely with the addChildAt() function,\n * as the zIndex sorting may cause the child to automatically sorted to another position.\n *\n * @static\n * @constant\n * @name SORTABLE_CHILDREN\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\nsettings.SORTABLE_CHILDREN = false;\n\n/**\n * 'Builder' pattern for bounds rectangles.\n *\n * This could be called an Axis-Aligned Bounding Box.\n * It is not an actual shape. It is a mutable thing; no 'EMPTY' or those kind of problems.\n *\n * @class\n * @memberof PIXI\n */\nvar Bounds = function Bounds()\n{\n /**\n * @member {number}\n * @default 0\n */\n this.minX = Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.minY = Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.maxX = -Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.maxY = -Infinity;\n\n this.rect = null;\n};\n\n/**\n * Checks if bounds are empty.\n *\n * @return {boolean} True if empty.\n */\nBounds.prototype.isEmpty = function isEmpty ()\n{\n return this.minX > this.maxX || this.minY > this.maxY;\n};\n\n/**\n * Clears the bounds and resets.\n *\n */\nBounds.prototype.clear = function clear ()\n{\n this.updateID++;\n\n this.minX = Infinity;\n this.minY = Infinity;\n this.maxX = -Infinity;\n this.maxY = -Infinity;\n};\n\n/**\n * Can return Rectangle.EMPTY constant, either construct new rectangle, either use your rectangle\n * It is not guaranteed that it will return tempRect\n *\n * @param {PIXI.Rectangle} rect - temporary object will be used if AABB is not empty\n * @returns {PIXI.Rectangle} A rectangle of the bounds\n */\nBounds.prototype.getRectangle = function getRectangle (rect)\n{\n if (this.minX > this.maxX || this.minY > this.maxY)\n {\n return Rectangle.EMPTY;\n }\n\n rect = rect || new Rectangle(0, 0, 1, 1);\n\n rect.x = this.minX;\n rect.y = this.minY;\n rect.width = this.maxX - this.minX;\n rect.height = this.maxY - this.minY;\n\n return rect;\n};\n\n/**\n * This function should be inlined when its possible.\n *\n * @param {PIXI.Point} point - The point to add.\n */\nBounds.prototype.addPoint = function addPoint (point)\n{\n this.minX = Math.min(this.minX, point.x);\n this.maxX = Math.max(this.maxX, point.x);\n this.minY = Math.min(this.minY, point.y);\n this.maxY = Math.max(this.maxY, point.y);\n};\n\n/**\n * Adds a quad, not transformed\n *\n * @param {Float32Array} vertices - The verts to add.\n */\nBounds.prototype.addQuad = function addQuad (vertices)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n var x = vertices[0];\n var y = vertices[1];\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[2];\n y = vertices[3];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[4];\n y = vertices[5];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[6];\n y = vertices[7];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds sprite frame, transformed.\n *\n * @param {PIXI.Transform} transform - TODO\n * @param {number} x0 - TODO\n * @param {number} y0 - TODO\n * @param {number} x1 - TODO\n * @param {number} y1 - TODO\n */\nBounds.prototype.addFrame = function addFrame (transform, x0, y0, x1, y1)\n{\n var matrix = transform.worldTransform;\n var a = matrix.a;\n var b = matrix.b;\n var c = matrix.c;\n var d = matrix.d;\n var tx = matrix.tx;\n var ty = matrix.ty;\n\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n var x = (a * x0) + (c * y0) + tx;\n var y = (b * x0) + (d * y0) + ty;\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x1) + (c * y0) + tx;\n y = (b * x1) + (d * y0) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x0) + (c * y1) + tx;\n y = (b * x0) + (d * y1) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x1) + (c * y1) + tx;\n y = (b * x1) + (d * y1) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds screen vertices from array\n *\n * @param {Float32Array} vertexData - calculated vertices\n * @param {number} beginOffset - begin offset\n * @param {number} endOffset - end offset, excluded\n */\nBounds.prototype.addVertexData = function addVertexData (vertexData, beginOffset, endOffset)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n for (var i = beginOffset; i < endOffset; i += 2)\n {\n var x = vertexData[i];\n var y = vertexData[i + 1];\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n }\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Add an array of mesh vertices\n *\n * @param {PIXI.Transform} transform - mesh transform\n * @param {Float32Array} vertices - mesh coordinates in array\n * @param {number} beginOffset - begin offset\n * @param {number} endOffset - end offset, excluded\n */\nBounds.prototype.addVertices = function addVertices (transform, vertices, beginOffset, endOffset)\n{\n var matrix = transform.worldTransform;\n var a = matrix.a;\n var b = matrix.b;\n var c = matrix.c;\n var d = matrix.d;\n var tx = matrix.tx;\n var ty = matrix.ty;\n\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n for (var i = beginOffset; i < endOffset; i += 2)\n {\n var rawX = vertices[i];\n var rawY = vertices[i + 1];\n var x = (a * rawX) + (c * rawY) + tx;\n var y = (d * rawY) + (b * rawX) + ty;\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n }\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds other Bounds\n *\n * @param {PIXI.Bounds} bounds - TODO\n */\nBounds.prototype.addBounds = function addBounds (bounds)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = bounds.minX < minX ? bounds.minX : minX;\n this.minY = bounds.minY < minY ? bounds.minY : minY;\n this.maxX = bounds.maxX > maxX ? bounds.maxX : maxX;\n this.maxY = bounds.maxY > maxY ? bounds.maxY : maxY;\n};\n\n/**\n * Adds other Bounds, masked with Bounds\n *\n * @param {PIXI.Bounds} bounds - TODO\n * @param {PIXI.Bounds} mask - TODO\n */\nBounds.prototype.addBoundsMask = function addBoundsMask (bounds, mask)\n{\n var _minX = bounds.minX > mask.minX ? bounds.minX : mask.minX;\n var _minY = bounds.minY > mask.minY ? bounds.minY : mask.minY;\n var _maxX = bounds.maxX < mask.maxX ? bounds.maxX : mask.maxX;\n var _maxY = bounds.maxY < mask.maxY ? bounds.maxY : mask.maxY;\n\n if (_minX <= _maxX && _minY <= _maxY)\n {\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = _minX < minX ? _minX : minX;\n this.minY = _minY < minY ? _minY : minY;\n this.maxX = _maxX > maxX ? _maxX : maxX;\n this.maxY = _maxY > maxY ? _maxY : maxY;\n }\n};\n\n/**\n * Adds other Bounds, masked with Rectangle\n *\n * @param {PIXI.Bounds} bounds - TODO\n * @param {PIXI.Rectangle} area - TODO\n */\nBounds.prototype.addBoundsArea = function addBoundsArea (bounds, area)\n{\n var _minX = bounds.minX > area.x ? bounds.minX : area.x;\n var _minY = bounds.minY > area.y ? bounds.minY : area.y;\n var _maxX = bounds.maxX < area.x + area.width ? bounds.maxX : (area.x + area.width);\n var _maxY = bounds.maxY < area.y + area.height ? bounds.maxY : (area.y + area.height);\n\n if (_minX <= _maxX && _minY <= _maxY)\n {\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = _minX < minX ? _minX : minX;\n this.minY = _minY < minY ? _minY : minY;\n this.maxX = _maxX > maxX ? _maxX : maxX;\n this.maxY = _maxY > maxY ? _maxY : maxY;\n }\n};\n\n// _tempDisplayObjectParent = new DisplayObject();\n\n/**\n * The base class for all objects that are rendered on the screen.\n *\n * This is an abstract class and should not be used on its own; rather it should be extended.\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar DisplayObject = /*@__PURE__*/(function (EventEmitter) {\n function DisplayObject()\n {\n EventEmitter.call(this);\n\n this.tempDisplayObjectParent = null;\n\n // TODO: need to create Transform from factory\n /**\n * World transform and local transform of this object.\n * This will become read-only later, please do not assign anything there unless you know what are you doing.\n *\n * @member {PIXI.Transform}\n */\n this.transform = new Transform();\n\n /**\n * The opacity of the object.\n *\n * @member {number}\n */\n this.alpha = 1;\n\n /**\n * The visibility of the object. If false the object will not be drawn, and\n * the updateTransform function will not be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually.\n *\n * @member {boolean}\n */\n this.visible = true;\n\n /**\n * Can this object be rendered, if false the object will not be drawn but the updateTransform\n * methods will still be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds manually.\n *\n * @member {boolean}\n */\n this.renderable = true;\n\n /**\n * The display object container that contains this display object.\n *\n * @member {PIXI.Container}\n * @readonly\n */\n this.parent = null;\n\n /**\n * The multiplied alpha of the displayObject.\n *\n * @member {number}\n * @readonly\n */\n this.worldAlpha = 1;\n\n /**\n * Which index in the children array the display component was before the previous zIndex sort.\n * Used by containers to help sort objects with the same zIndex, by using previous array index as the decider.\n *\n * @member {number}\n * @protected\n */\n this._lastSortedIndex = 0;\n\n /**\n * The zIndex of the displayObject.\n * A higher value will mean it will be rendered on top of other displayObjects within the same container.\n *\n * @member {number}\n * @protected\n */\n this._zIndex = 0;\n\n /**\n * The area the filter is applied to. This is used as more of an optimization\n * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle.\n *\n * Also works as an interaction mask.\n *\n * @member {?PIXI.Rectangle}\n */\n this.filterArea = null;\n\n /**\n * Sets the filters for the displayObject.\n * * IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer.\n * To remove filters simply set this property to `'null'`.\n *\n * @member {?PIXI.Filter[]}\n */\n this.filters = null;\n this._enabledFilters = null;\n\n /**\n * The bounds object, this is used to calculate and store the bounds of the displayObject.\n *\n * @member {PIXI.Bounds}\n * @protected\n */\n this._bounds = new Bounds();\n this._boundsID = 0;\n this._lastBoundsID = -1;\n this._boundsRect = null;\n this._localBoundsRect = null;\n\n /**\n * The original, cached mask of the object.\n *\n * @member {PIXI.Graphics|PIXI.Sprite|null}\n * @protected\n */\n this._mask = null;\n\n /**\n * Fired when this DisplayObject is added to a Container.\n *\n * @event PIXI.DisplayObject#added\n * @param {PIXI.Container} container - The container added to.\n */\n\n /**\n * Fired when this DisplayObject is removed from a Container.\n *\n * @event PIXI.DisplayObject#removed\n * @param {PIXI.Container} container - The container removed from.\n */\n\n /**\n * If the object has been destroyed via destroy(). If true, it should not be used.\n *\n * @member {boolean}\n * @protected\n */\n this._destroyed = false;\n\n /**\n * used to fast check if a sprite is.. a sprite!\n * @member {boolean}\n */\n this.isSprite = false;\n }\n\n if ( EventEmitter ) DisplayObject.__proto__ = EventEmitter;\n DisplayObject.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n DisplayObject.prototype.constructor = DisplayObject;\n\n var prototypeAccessors = { _tempDisplayObjectParent: { configurable: true },x: { configurable: true },y: { configurable: true },worldTransform: { configurable: true },localTransform: { configurable: true },position: { configurable: true },scale: { configurable: true },pivot: { configurable: true },skew: { configurable: true },rotation: { configurable: true },angle: { configurable: true },zIndex: { configurable: true },worldVisible: { configurable: true },mask: { configurable: true } };\n\n /**\n * @protected\n * @member {PIXI.DisplayObject}\n */\n DisplayObject.mixin = function mixin (source)\n {\n // in ES8/ES2017, this would be really easy:\n // Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n\n // get all the enumerable property keys\n var keys = Object.keys(source);\n\n // loop through properties\n for (var i = 0; i < keys.length; ++i)\n {\n var propertyName = keys[i];\n\n // Set the property using the property descriptor - this works for accessors and normal value properties\n Object.defineProperty(\n DisplayObject.prototype,\n propertyName,\n Object.getOwnPropertyDescriptor(source, propertyName)\n );\n }\n };\n\n prototypeAccessors._tempDisplayObjectParent.get = function ()\n {\n if (this.tempDisplayObjectParent === null)\n {\n this.tempDisplayObjectParent = new DisplayObject();\n }\n\n return this.tempDisplayObjectParent;\n };\n\n /**\n * Updates the object transform for rendering.\n *\n * TODO - Optimization pass!\n */\n DisplayObject.prototype.updateTransform = function updateTransform ()\n {\n this.transform.updateTransform(this.parent.transform);\n // multiply the alphas..\n this.worldAlpha = this.alpha * this.parent.worldAlpha;\n\n this._bounds.updateID++;\n };\n\n /**\n * Recursively updates transform of all objects from the root to this one\n * internal function for toLocal()\n */\n DisplayObject.prototype._recursivePostUpdateTransform = function _recursivePostUpdateTransform ()\n {\n if (this.parent)\n {\n this.parent._recursivePostUpdateTransform();\n this.transform.updateTransform(this.parent.transform);\n }\n else\n {\n this.transform.updateTransform(this._tempDisplayObjectParent.transform);\n }\n };\n\n /**\n * Retrieves the bounds of the displayObject as a rectangle object.\n *\n * @param {boolean} [skipUpdate] - Setting to `true` will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost.\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation.\n * @return {PIXI.Rectangle} The rectangular bounding area.\n */\n DisplayObject.prototype.getBounds = function getBounds (skipUpdate, rect)\n {\n if (!skipUpdate)\n {\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this._recursivePostUpdateTransform();\n this.updateTransform();\n }\n }\n\n if (this._boundsID !== this._lastBoundsID)\n {\n this.calculateBounds();\n this._lastBoundsID = this._boundsID;\n }\n\n if (!rect)\n {\n if (!this._boundsRect)\n {\n this._boundsRect = new Rectangle();\n }\n\n rect = this._boundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n };\n\n /**\n * Retrieves the local bounds of the displayObject as a rectangle object.\n *\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation.\n * @return {PIXI.Rectangle} The rectangular bounding area.\n */\n DisplayObject.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n var transformRef = this.transform;\n var parentRef = this.parent;\n\n this.parent = null;\n this.transform = this._tempDisplayObjectParent.transform;\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n var bounds = this.getBounds(false, rect);\n\n this.parent = parentRef;\n this.transform = transformRef;\n\n return bounds;\n };\n\n /**\n * Calculates the global position of the display object.\n *\n * @param {PIXI.IPoint} position - The world origin to calculate from.\n * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point).\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform.\n * @return {PIXI.IPoint} A point object representing the position of this object.\n */\n DisplayObject.prototype.toGlobal = function toGlobal (position, point, skipUpdate)\n {\n if ( skipUpdate === void 0 ) skipUpdate = false;\n\n if (!skipUpdate)\n {\n this._recursivePostUpdateTransform();\n\n // this parent check is for just in case the item is a root object.\n // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly\n // this is mainly to avoid a parent check in the main loop. Every little helps for performance :)\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.displayObjectUpdateTransform();\n this.parent = null;\n }\n else\n {\n this.displayObjectUpdateTransform();\n }\n }\n\n // don't need to update the lot\n return this.worldTransform.apply(position, point);\n };\n\n /**\n * Calculates the local position of the display object relative to another point.\n *\n * @param {PIXI.IPoint} position - The world origin to calculate from.\n * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from.\n * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point).\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform\n * @return {PIXI.IPoint} A point object representing the position of this object\n */\n DisplayObject.prototype.toLocal = function toLocal (position, from, point, skipUpdate)\n {\n if (from)\n {\n position = from.toGlobal(position, point, skipUpdate);\n }\n\n if (!skipUpdate)\n {\n this._recursivePostUpdateTransform();\n\n // this parent check is for just in case the item is a root object.\n // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly\n // this is mainly to avoid a parent check in the main loop. Every little helps for performance :)\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.displayObjectUpdateTransform();\n this.parent = null;\n }\n else\n {\n this.displayObjectUpdateTransform();\n }\n }\n\n // simply apply the matrix..\n return this.worldTransform.applyInverse(position, point);\n };\n\n /**\n * Renders the object using the WebGL renderer.\n *\n * @param {PIXI.Renderer} renderer - The renderer.\n */\n DisplayObject.prototype.render = function render (renderer) // eslint-disable-line no-unused-vars\n {\n // OVERWRITE;\n };\n\n /**\n * Set the parent Container of this DisplayObject.\n *\n * @param {PIXI.Container} container - The Container to add this DisplayObject to.\n * @return {PIXI.Container} The Container that this DisplayObject was added to.\n */\n DisplayObject.prototype.setParent = function setParent (container)\n {\n if (!container || !container.addChild)\n {\n throw new Error('setParent: Argument must be a Container');\n }\n\n container.addChild(this);\n\n return container;\n };\n\n /**\n * Convenience function to set the position, scale, skew and pivot at once.\n *\n * @param {number} [x=0] - The X position\n * @param {number} [y=0] - The Y position\n * @param {number} [scaleX=1] - The X scale value\n * @param {number} [scaleY=1] - The Y scale value\n * @param {number} [rotation=0] - The rotation\n * @param {number} [skewX=0] - The X skew value\n * @param {number} [skewY=0] - The Y skew value\n * @param {number} [pivotX=0] - The X pivot value\n * @param {number} [pivotY=0] - The Y pivot value\n * @return {PIXI.DisplayObject} The DisplayObject instance\n */\n DisplayObject.prototype.setTransform = function setTransform (x, y, scaleX, scaleY, rotation, skewX, skewY, pivotX, pivotY)\n {\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( scaleX === void 0 ) scaleX = 1;\n if ( scaleY === void 0 ) scaleY = 1;\n if ( rotation === void 0 ) rotation = 0;\n if ( skewX === void 0 ) skewX = 0;\n if ( skewY === void 0 ) skewY = 0;\n if ( pivotX === void 0 ) pivotX = 0;\n if ( pivotY === void 0 ) pivotY = 0;\n\n this.position.x = x;\n this.position.y = y;\n this.scale.x = !scaleX ? 1 : scaleX;\n this.scale.y = !scaleY ? 1 : scaleY;\n this.rotation = rotation;\n this.skew.x = skewX;\n this.skew.y = skewY;\n this.pivot.x = pivotX;\n this.pivot.y = pivotY;\n\n return this;\n };\n\n /**\n * Base destroy method for generic display objects. This will automatically\n * remove the display object from its parent Container as well as remove\n * all current event listeners and internal references. Do not use a DisplayObject\n * after calling `destroy()`.\n *\n */\n DisplayObject.prototype.destroy = function destroy ()\n {\n this.removeAllListeners();\n if (this.parent)\n {\n this.parent.removeChild(this);\n }\n this.transform = null;\n\n this.parent = null;\n\n this._bounds = null;\n this._currentBounds = null;\n this._mask = null;\n\n this.filterArea = null;\n\n this.interactive = false;\n this.interactiveChildren = false;\n\n this._destroyed = true;\n };\n\n /**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n * An alias to position.x\n *\n * @member {number}\n */\n prototypeAccessors.x.get = function ()\n {\n return this.position.x;\n };\n\n prototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.x = value;\n };\n\n /**\n * The position of the displayObject on the y axis relative to the local coordinates of the parent.\n * An alias to position.y\n *\n * @member {number}\n */\n prototypeAccessors.y.get = function ()\n {\n return this.position.y;\n };\n\n prototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.y = value;\n };\n\n /**\n * Current transform of the object based on world (parent) factors.\n *\n * @member {PIXI.Matrix}\n * @readonly\n */\n prototypeAccessors.worldTransform.get = function ()\n {\n return this.transform.worldTransform;\n };\n\n /**\n * Current transform of the object based on local factors: position, scale, other stuff.\n *\n * @member {PIXI.Matrix}\n * @readonly\n */\n prototypeAccessors.localTransform.get = function ()\n {\n return this.transform.localTransform;\n };\n\n /**\n * The coordinate of the object relative to the local coordinates of the parent.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.position.get = function ()\n {\n return this.transform.position;\n };\n\n prototypeAccessors.position.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.copyFrom(value);\n };\n\n /**\n * The scale factor of the object.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.scale.get = function ()\n {\n return this.transform.scale;\n };\n\n prototypeAccessors.scale.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.scale.copyFrom(value);\n };\n\n /**\n * The pivot point of the displayObject that it rotates around.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.pivot.get = function ()\n {\n return this.transform.pivot;\n };\n\n prototypeAccessors.pivot.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.pivot.copyFrom(value);\n };\n\n /**\n * The skew factor for the object in radians.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.skew.get = function ()\n {\n return this.transform.skew;\n };\n\n prototypeAccessors.skew.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.skew.copyFrom(value);\n };\n\n /**\n * The rotation of the object in radians.\n * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees.\n *\n * @member {number}\n */\n prototypeAccessors.rotation.get = function ()\n {\n return this.transform.rotation;\n };\n\n prototypeAccessors.rotation.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.rotation = value;\n };\n\n /**\n * The angle of the object in degrees.\n * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees.\n *\n * @member {number}\n */\n prototypeAccessors.angle.get = function ()\n {\n return this.transform.rotation * RAD_TO_DEG;\n };\n\n prototypeAccessors.angle.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.rotation = value * DEG_TO_RAD;\n };\n\n /**\n * The zIndex of the displayObject.\n * If a container has the sortableChildren property set to true, children will be automatically\n * sorted by zIndex value; a higher value will mean it will be moved towards the end of the array,\n * and thus rendered on top of other displayObjects within the same container.\n *\n * @member {number}\n */\n prototypeAccessors.zIndex.get = function ()\n {\n return this._zIndex;\n };\n\n prototypeAccessors.zIndex.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._zIndex = value;\n if (this.parent)\n {\n this.parent.sortDirty = true;\n }\n };\n\n /**\n * Indicates if the object is globally visible.\n *\n * @member {boolean}\n * @readonly\n */\n prototypeAccessors.worldVisible.get = function ()\n {\n var item = this;\n\n do\n {\n if (!item.visible)\n {\n return false;\n }\n\n item = item.parent;\n } while (item);\n\n return true;\n };\n\n /**\n * Sets a mask for the displayObject. A mask is an object that limits the visibility of an\n * object to the shape of the mask applied to it. In PixiJS a regular mask must be a\n * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it\n * utilities shape clipping. To remove a mask, set this property to `null`.\n *\n * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask.\n * @example\n * const graphics = new PIXI.Graphics();\n * graphics.beginFill(0xFF3300);\n * graphics.drawRect(50, 250, 100, 100);\n * graphics.endFill();\n *\n * const sprite = new PIXI.Sprite(texture);\n * sprite.mask = graphics;\n * @todo At the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask.\n *\n * @member {PIXI.Graphics|PIXI.Sprite|null}\n */\n prototypeAccessors.mask.get = function ()\n {\n return this._mask;\n };\n\n prototypeAccessors.mask.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._mask)\n {\n this._mask.renderable = true;\n this._mask.isMask = false;\n }\n\n this._mask = value;\n\n if (this._mask)\n {\n this._mask.renderable = false;\n this._mask.isMask = true;\n }\n };\n\n Object.defineProperties( DisplayObject.prototype, prototypeAccessors );\n\n return DisplayObject;\n}(EventEmitter));\n\n/**\n * DisplayObject default updateTransform, does not update children of container.\n * Will crash if there's no parent element.\n *\n * @memberof PIXI.DisplayObject#\n * @function displayObjectUpdateTransform\n */\nDisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform;\n\nfunction sortChildren(a, b)\n{\n if (a.zIndex === b.zIndex)\n {\n return a._lastSortedIndex - b._lastSortedIndex;\n }\n\n return a.zIndex - b.zIndex;\n}\n\n/**\n * A Container represents a collection of display objects.\n *\n * It is the base class of all display objects that act as a container for other objects (like Sprites).\n *\n *```js\n * let container = new PIXI.Container();\n * container.addChild(sprite);\n * ```\n *\n * @class\n * @extends PIXI.DisplayObject\n * @memberof PIXI\n */\nvar Container = /*@__PURE__*/(function (DisplayObject) {\n function Container()\n {\n DisplayObject.call(this);\n\n /**\n * The array of children of this container.\n *\n * @member {PIXI.DisplayObject[]}\n * @readonly\n */\n this.children = [];\n\n /**\n * If set to true, the container will sort its children by zIndex value\n * when updateTransform() is called, or manually if sortChildren() is called.\n *\n * This actually changes the order of elements in the array, so should be treated\n * as a basic solution that is not performant compared to other solutions,\n * such as @link https://github.com/pixijs/pixi-display\n *\n * Also be aware of that this may not work nicely with the addChildAt() function,\n * as the zIndex sorting may cause the child to automatically sorted to another position.\n *\n * @see PIXI.settings.SORTABLE_CHILDREN\n *\n * @member {boolean}\n */\n this.sortableChildren = settings.SORTABLE_CHILDREN;\n\n /**\n * Should children be sorted by zIndex at the next updateTransform call.\n * Will get automatically set to true if a new child is added, or if a child's zIndex changes.\n *\n * @member {boolean}\n */\n this.sortDirty = false;\n\n /**\n * Fired when a DisplayObject is added to this Container.\n *\n * @event PIXI.Container#childAdded\n * @param {PIXI.DisplayObject} child - The child added to the Container.\n * @param {PIXI.Container} container - The container that added the child.\n * @param {number} index - The children's index of the added child.\n */\n\n /**\n * Fired when a DisplayObject is removed from this Container.\n *\n * @event PIXI.DisplayObject#removedFrom\n * @param {PIXI.DisplayObject} child - The child removed from the Container.\n * @param {PIXI.Container} container - The container that removed removed the child.\n * @param {number} index - The former children's index of the removed child\n */\n }\n\n if ( DisplayObject ) Container.__proto__ = DisplayObject;\n Container.prototype = Object.create( DisplayObject && DisplayObject.prototype );\n Container.prototype.constructor = Container;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true } };\n\n /**\n * Overridable method that can be used by Container subclasses whenever the children array is modified\n *\n * @protected\n */\n Container.prototype.onChildrenChange = function onChildrenChange ()\n {\n /* empty */\n };\n\n /**\n * Adds one or more children to the container.\n *\n * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)`\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container\n * @return {PIXI.DisplayObject} The first child that was added.\n */\n Container.prototype.addChild = function addChild (child)\n {\n var arguments$1 = arguments;\n\n var argumentsLength = arguments.length;\n\n // if there is only one argument we can bypass looping through the them\n if (argumentsLength > 1)\n {\n // loop through the arguments property and add all children\n // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes\n for (var i = 0; i < argumentsLength; i++)\n {\n this.addChild(arguments$1[i]);\n }\n }\n else\n {\n // if the child has a parent then lets remove it as PixiJS objects can only exist in one place\n if (child.parent)\n {\n child.parent.removeChild(child);\n }\n\n child.parent = this;\n this.sortDirty = true;\n\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n\n this.children.push(child);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(this.children.length - 1);\n this.emit('childAdded', child, this, this.children.length - 1);\n child.emit('added', this);\n }\n\n return child;\n };\n\n /**\n * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown\n *\n * @param {PIXI.DisplayObject} child - The child to add\n * @param {number} index - The index to place the child in\n * @return {PIXI.DisplayObject} The child that was added.\n */\n Container.prototype.addChildAt = function addChildAt (child, index)\n {\n if (index < 0 || index > this.children.length)\n {\n throw new Error((child + \"addChildAt: The index \" + index + \" supplied is out of bounds \" + (this.children.length)));\n }\n\n if (child.parent)\n {\n child.parent.removeChild(child);\n }\n\n child.parent = this;\n this.sortDirty = true;\n\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n\n this.children.splice(index, 0, child);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('added', this);\n this.emit('childAdded', child, this, index);\n\n return child;\n };\n\n /**\n * Swaps the position of 2 Display Objects within this container.\n *\n * @param {PIXI.DisplayObject} child - First display object to swap\n * @param {PIXI.DisplayObject} child2 - Second display object to swap\n */\n Container.prototype.swapChildren = function swapChildren (child, child2)\n {\n if (child === child2)\n {\n return;\n }\n\n var index1 = this.getChildIndex(child);\n var index2 = this.getChildIndex(child2);\n\n this.children[index1] = child2;\n this.children[index2] = child;\n this.onChildrenChange(index1 < index2 ? index1 : index2);\n };\n\n /**\n * Returns the index position of a child DisplayObject instance\n *\n * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify\n * @return {number} The index position of the child display object to identify\n */\n Container.prototype.getChildIndex = function getChildIndex (child)\n {\n var index = this.children.indexOf(child);\n\n if (index === -1)\n {\n throw new Error('The supplied DisplayObject must be a child of the caller');\n }\n\n return index;\n };\n\n /**\n * Changes the position of an existing child in the display object container\n *\n * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number\n * @param {number} index - The resulting index number for the child display object\n */\n Container.prototype.setChildIndex = function setChildIndex (child, index)\n {\n if (index < 0 || index >= this.children.length)\n {\n throw new Error((\"The index \" + index + \" supplied is out of bounds \" + (this.children.length)));\n }\n\n var currentIndex = this.getChildIndex(child);\n\n removeItems(this.children, currentIndex, 1); // remove from old position\n this.children.splice(index, 0, child); // add at new position\n\n this.onChildrenChange(index);\n };\n\n /**\n * Returns the child at the specified index\n *\n * @param {number} index - The index to get the child at\n * @return {PIXI.DisplayObject} The child at the given index, if any.\n */\n Container.prototype.getChildAt = function getChildAt (index)\n {\n if (index < 0 || index >= this.children.length)\n {\n throw new Error((\"getChildAt: Index (\" + index + \") does not exist.\"));\n }\n\n return this.children[index];\n };\n\n /**\n * Removes one or more children from the container.\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove\n * @return {PIXI.DisplayObject} The first child that was removed.\n */\n Container.prototype.removeChild = function removeChild (child)\n {\n var arguments$1 = arguments;\n\n var argumentsLength = arguments.length;\n\n // if there is only one argument we can bypass looping through the them\n if (argumentsLength > 1)\n {\n // loop through the arguments property and add all children\n // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes\n for (var i = 0; i < argumentsLength; i++)\n {\n this.removeChild(arguments$1[i]);\n }\n }\n else\n {\n var index = this.children.indexOf(child);\n\n if (index === -1) { return null; }\n\n child.parent = null;\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n removeItems(this.children, index, 1);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('removed', this);\n this.emit('childRemoved', child, this, index);\n }\n\n return child;\n };\n\n /**\n * Removes a child from the specified index position.\n *\n * @param {number} index - The index to get the child from\n * @return {PIXI.DisplayObject} The child that was removed.\n */\n Container.prototype.removeChildAt = function removeChildAt (index)\n {\n var child = this.getChildAt(index);\n\n // ensure child transform will be recalculated..\n child.parent = null;\n child.transform._parentID = -1;\n removeItems(this.children, index, 1);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('removed', this);\n this.emit('childRemoved', child, this, index);\n\n return child;\n };\n\n /**\n * Removes all children from this container that are within the begin and end indexes.\n *\n * @param {number} [beginIndex=0] - The beginning position.\n * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container.\n * @returns {PIXI.DisplayObject[]} List of removed children\n */\n Container.prototype.removeChildren = function removeChildren (beginIndex, endIndex)\n {\n if ( beginIndex === void 0 ) beginIndex = 0;\n\n var begin = beginIndex;\n var end = typeof endIndex === 'number' ? endIndex : this.children.length;\n var range = end - begin;\n var removed;\n\n if (range > 0 && range <= end)\n {\n removed = this.children.splice(begin, range);\n\n for (var i = 0; i < removed.length; ++i)\n {\n removed[i].parent = null;\n if (removed[i].transform)\n {\n removed[i].transform._parentID = -1;\n }\n }\n\n this._boundsID++;\n\n this.onChildrenChange(beginIndex);\n\n for (var i$1 = 0; i$1 < removed.length; ++i$1)\n {\n removed[i$1].emit('removed', this);\n this.emit('childRemoved', removed[i$1], this, i$1);\n }\n\n return removed;\n }\n else if (range === 0 && this.children.length === 0)\n {\n return [];\n }\n\n throw new RangeError('removeChildren: numeric values are outside the acceptable range.');\n };\n\n /**\n * Sorts children by zIndex. Previous order is mantained for 2 children with the same zIndex.\n */\n Container.prototype.sortChildren = function sortChildren$1 ()\n {\n var sortRequired = false;\n\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n var child = this.children[i];\n\n child._lastSortedIndex = i;\n\n if (!sortRequired && child.zIndex !== 0)\n {\n sortRequired = true;\n }\n }\n\n if (sortRequired && this.children.length > 1)\n {\n this.children.sort(sortChildren);\n }\n\n this.sortDirty = false;\n };\n\n /**\n * Updates the transform on all children of this container for rendering\n */\n Container.prototype.updateTransform = function updateTransform ()\n {\n if (this.sortableChildren && this.sortDirty)\n {\n this.sortChildren();\n }\n\n this._boundsID++;\n\n this.transform.updateTransform(this.parent.transform);\n\n // TODO: check render flags, how to process stuff here\n this.worldAlpha = this.alpha * this.parent.worldAlpha;\n\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n var child = this.children[i];\n\n if (child.visible)\n {\n child.updateTransform();\n }\n }\n };\n\n /**\n * Recalculates the bounds of the container.\n *\n */\n Container.prototype.calculateBounds = function calculateBounds ()\n {\n this._bounds.clear();\n\n this._calculateBounds();\n\n for (var i = 0; i < this.children.length; i++)\n {\n var child = this.children[i];\n\n if (!child.visible || !child.renderable)\n {\n continue;\n }\n\n child.calculateBounds();\n\n // TODO: filter+mask, need to mask both somehow\n if (child._mask)\n {\n child._mask.calculateBounds();\n this._bounds.addBoundsMask(child._bounds, child._mask._bounds);\n }\n else if (child.filterArea)\n {\n this._bounds.addBoundsArea(child._bounds, child.filterArea);\n }\n else\n {\n this._bounds.addBounds(child._bounds);\n }\n }\n\n this._lastBoundsID = this._boundsID;\n };\n\n /**\n * Recalculates the bounds of the object. Override this to\n * calculate the bounds of the specific object (not including children).\n *\n * @protected\n */\n Container.prototype._calculateBounds = function _calculateBounds ()\n {\n // FILL IN//\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype.render = function render (renderer)\n {\n // if the object is not visible or the alpha is 0 then no need to render this element\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n // do a quick check to see if this element has a mask or a filter.\n if (this._mask || (this.filters && this.filters.length))\n {\n this.renderAdvanced(renderer);\n }\n else\n {\n this._render(renderer);\n\n // simple render children!\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n this.children[i].render(renderer);\n }\n }\n };\n\n /**\n * Render the object using the WebGL renderer and advanced features.\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype.renderAdvanced = function renderAdvanced (renderer)\n {\n renderer.batch.flush();\n\n var filters = this.filters;\n var mask = this._mask;\n\n // push filter first as we need to ensure the stencil buffer is correct for any masking\n if (filters)\n {\n if (!this._enabledFilters)\n {\n this._enabledFilters = [];\n }\n\n this._enabledFilters.length = 0;\n\n for (var i = 0; i < filters.length; i++)\n {\n if (filters[i].enabled)\n {\n this._enabledFilters.push(filters[i]);\n }\n }\n\n if (this._enabledFilters.length)\n {\n renderer.filter.push(this, this._enabledFilters);\n }\n }\n\n if (mask)\n {\n renderer.mask.push(this, this._mask);\n }\n\n // add this object to the batch, only rendered if it has a texture.\n this._render(renderer);\n\n // now loop through the children and make sure they get rendered\n for (var i$1 = 0, j = this.children.length; i$1 < j; i$1++)\n {\n this.children[i$1].render(renderer);\n }\n\n renderer.batch.flush();\n\n if (mask)\n {\n renderer.mask.pop(this, this._mask);\n }\n\n if (filters && this._enabledFilters && this._enabledFilters.length)\n {\n renderer.filter.pop();\n }\n };\n\n /**\n * To be overridden by the subclasses.\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype._render = function _render (renderer) // eslint-disable-line no-unused-vars\n {\n // this is where content itself gets rendered...\n };\n\n /**\n * Removes all internal references and listeners as well as removes children from the display list.\n * Do not use a Container after calling `destroy`.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n Container.prototype.destroy = function destroy (options)\n {\n DisplayObject.prototype.destroy.call(this);\n\n this.sortDirty = false;\n\n var destroyChildren = typeof options === 'boolean' ? options : options && options.children;\n\n var oldChildren = this.removeChildren(0, this.children.length);\n\n if (destroyChildren)\n {\n for (var i = 0; i < oldChildren.length; ++i)\n {\n oldChildren[i].destroy(options);\n }\n }\n };\n\n /**\n * The width of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this.scale.x * this.getLocalBounds().width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n var width = this.getLocalBounds().width;\n\n if (width !== 0)\n {\n this.scale.x = value / width;\n }\n else\n {\n this.scale.x = 1;\n }\n\n this._width = value;\n };\n\n /**\n * The height of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this.scale.y * this.getLocalBounds().height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n var height = this.getLocalBounds().height;\n\n if (height !== 0)\n {\n this.scale.y = value / height;\n }\n else\n {\n this.scale.y = 1;\n }\n\n this._height = value;\n };\n\n Object.defineProperties( Container.prototype, prototypeAccessors );\n\n return Container;\n}(DisplayObject));\n\n// performance increase to avoid using call.. (10x faster)\nContainer.prototype.containerUpdateTransform = Container.prototype.updateTransform;\n\nexport { Bounds, Container, DisplayObject };\n//# sourceMappingURL=display.es.js.map\n","/*!\n * @pixi/accessibility - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/accessibility is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { isMobile, removeItems } from '@pixi/utils';\nimport { DisplayObject } from '@pixi/display';\n\n/**\n * Default property values of accessible objects\n * used by {@link PIXI.accessibility.AccessibilityManager}.\n *\n * @private\n * @function accessibleTarget\n * @memberof PIXI.accessibility\n * @type {Object}\n * @example\n * function MyObject() {}\n *\n * Object.assign(\n * MyObject.prototype,\n * PIXI.accessibility.accessibleTarget\n * );\n */\nvar accessibleTarget = {\n /**\n * Flag for if the object is accessible. If true AccessibilityManager will overlay a\n * shadow div with attributes set\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n accessible: false,\n\n /**\n * Sets the title attribute of the shadow div\n * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]'\n *\n * @member {?string}\n * @memberof PIXI.DisplayObject#\n */\n accessibleTitle: null,\n\n /**\n * Sets the aria-label attribute of the shadow div\n *\n * @member {string}\n * @memberof PIXI.DisplayObject#\n */\n accessibleHint: null,\n\n /**\n * @member {number}\n * @memberof PIXI.DisplayObject#\n * @private\n * @todo Needs docs.\n */\n tabIndex: 0,\n\n /**\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n * @todo Needs docs.\n */\n _accessibleActive: false,\n\n /**\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n * @todo Needs docs.\n */\n _accessibleDiv: false,\n};\n\n// add some extra variables to the container..\nDisplayObject.mixin(accessibleTarget);\n\nvar KEY_CODE_TAB = 9;\n\nvar DIV_TOUCH_SIZE = 100;\nvar DIV_TOUCH_POS_X = 0;\nvar DIV_TOUCH_POS_Y = 0;\nvar DIV_TOUCH_ZINDEX = 2;\n\nvar DIV_HOOK_SIZE = 1;\nvar DIV_HOOK_POS_X = -1000;\nvar DIV_HOOK_POS_Y = -1000;\nvar DIV_HOOK_ZINDEX = 2;\n\n/**\n * The Accessibility manager recreates the ability to tab and have content read by screen readers.\n * This is very important as it can possibly help people with disabilities access PixiJS content.\n *\n * A DisplayObject can be made accessible just like it can be made interactive. This manager will map the\n * events as if the mouse was being used, minimizing the effort required to implement.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.accessibility`\n *\n * @class\n * @memberof PIXI.accessibility\n */\nvar AccessibilityManager = function AccessibilityManager(renderer)\n{\n /**\n * @type {?HTMLElement}\n * @private\n */\n this._hookDiv = null;\n if (isMobile.tablet || isMobile.phone)\n {\n this.createTouchHook();\n }\n\n // first we create a div that will sit over the PixiJS element. This is where the div overlays will go.\n var div = document.createElement('div');\n\n div.style.width = DIV_TOUCH_SIZE + \"px\";\n div.style.height = DIV_TOUCH_SIZE + \"px\";\n div.style.position = 'absolute';\n div.style.top = DIV_TOUCH_POS_X + \"px\";\n div.style.left = DIV_TOUCH_POS_Y + \"px\";\n div.style.zIndex = DIV_TOUCH_ZINDEX;\n\n /**\n * This is the dom element that will sit over the PixiJS element. This is where the div overlays will go.\n *\n * @type {HTMLElement}\n * @private\n */\n this.div = div;\n\n /**\n * A simple pool for storing divs.\n *\n * @type {*}\n * @private\n */\n this.pool = [];\n\n /**\n * This is a tick used to check if an object is no longer being rendered.\n *\n * @type {Number}\n * @private\n */\n this.renderId = 0;\n\n /**\n * Setting this to true will visually show the divs.\n *\n * @type {boolean}\n */\n this.debug = false;\n\n /**\n * The renderer this accessibility manager works for.\n *\n * @member {PIXI.AbstractRenderer}\n */\n this.renderer = renderer;\n\n /**\n * The array of currently active accessible items.\n *\n * @member {Array<*>}\n * @private\n */\n this.children = [];\n\n /**\n * pre-bind the functions\n *\n * @type {Function}\n * @private\n */\n this._onKeyDown = this._onKeyDown.bind(this);\n\n /**\n * pre-bind the functions\n *\n * @type {Function}\n * @private\n */\n this._onMouseMove = this._onMouseMove.bind(this);\n\n /**\n * A flag\n * @type {boolean}\n * @readonly\n */\n this.isActive = false;\n\n /**\n * A flag\n * @type {boolean}\n * @readonly\n */\n this.isMobileAccessibility = false;\n\n // let listen for tab.. once pressed we can fire up and show the accessibility layer\n window.addEventListener('keydown', this._onKeyDown, false);\n};\n\n/**\n * Creates the touch hooks.\n *\n * @private\n */\nAccessibilityManager.prototype.createTouchHook = function createTouchHook ()\n{\n var this$1 = this;\n\n var hookDiv = document.createElement('button');\n\n hookDiv.style.width = DIV_HOOK_SIZE + \"px\";\n hookDiv.style.height = DIV_HOOK_SIZE + \"px\";\n hookDiv.style.position = 'absolute';\n hookDiv.style.top = DIV_HOOK_POS_X + \"px\";\n hookDiv.style.left = DIV_HOOK_POS_Y + \"px\";\n hookDiv.style.zIndex = DIV_HOOK_ZINDEX;\n hookDiv.style.backgroundColor = '#FF0000';\n hookDiv.title = 'HOOK DIV';\n\n hookDiv.addEventListener('focus', function () {\n this$1.isMobileAccessibility = true;\n this$1.activate();\n this$1.destroyTouchHook();\n });\n\n document.body.appendChild(hookDiv);\n this._hookDiv = hookDiv;\n};\n\n/**\n * Destroys the touch hooks.\n *\n * @private\n */\nAccessibilityManager.prototype.destroyTouchHook = function destroyTouchHook ()\n{\n if (!this._hookDiv)\n {\n return;\n }\n document.body.removeChild(this._hookDiv);\n this._hookDiv = null;\n};\n\n/**\n * Activating will cause the Accessibility layer to be shown.\n * This is called when a user presses the tab key.\n *\n * @private\n */\nAccessibilityManager.prototype.activate = function activate ()\n{\n if (this.isActive)\n {\n return;\n }\n\n this.isActive = true;\n\n window.document.addEventListener('mousemove', this._onMouseMove, true);\n window.removeEventListener('keydown', this._onKeyDown, false);\n\n this.renderer.on('postrender', this.update, this);\n\n if (this.renderer.view.parentNode)\n {\n this.renderer.view.parentNode.appendChild(this.div);\n }\n};\n\n/**\n * Deactivating will cause the Accessibility layer to be hidden.\n * This is called when a user moves the mouse.\n *\n * @private\n */\nAccessibilityManager.prototype.deactivate = function deactivate ()\n{\n if (!this.isActive || this.isMobileAccessibility)\n {\n return;\n }\n\n this.isActive = false;\n\n window.document.removeEventListener('mousemove', this._onMouseMove, true);\n window.addEventListener('keydown', this._onKeyDown, false);\n\n this.renderer.off('postrender', this.update);\n\n if (this.div.parentNode)\n {\n this.div.parentNode.removeChild(this.div);\n }\n};\n\n/**\n * This recursive function will run through the scene graph and add any new accessible objects to the DOM layer.\n *\n * @private\n * @param {PIXI.Container} displayObject - The DisplayObject to check.\n */\nAccessibilityManager.prototype.updateAccessibleObjects = function updateAccessibleObjects (displayObject)\n{\n if (!displayObject.visible)\n {\n return;\n }\n\n if (displayObject.accessible && displayObject.interactive)\n {\n if (!displayObject._accessibleActive)\n {\n this.addChild(displayObject);\n }\n\n displayObject.renderId = this.renderId;\n }\n\n var children = displayObject.children;\n\n for (var i = 0; i < children.length; i++)\n {\n this.updateAccessibleObjects(children[i]);\n }\n};\n\n/**\n * Before each render this function will ensure that all divs are mapped correctly to their DisplayObjects.\n *\n * @private\n */\nAccessibilityManager.prototype.update = function update ()\n{\n if (!this.renderer.renderingToScreen)\n {\n return;\n }\n\n // update children...\n this.updateAccessibleObjects(this.renderer._lastObjectRendered);\n\n var rect = this.renderer.view.getBoundingClientRect();\n var sx = rect.width / this.renderer.width;\n var sy = rect.height / this.renderer.height;\n\n var div = this.div;\n\n div.style.left = (rect.left) + \"px\";\n div.style.top = (rect.top) + \"px\";\n div.style.width = (this.renderer.width) + \"px\";\n div.style.height = (this.renderer.height) + \"px\";\n\n for (var i = 0; i < this.children.length; i++)\n {\n var child = this.children[i];\n\n if (child.renderId !== this.renderId)\n {\n child._accessibleActive = false;\n\n removeItems(this.children, i, 1);\n this.div.removeChild(child._accessibleDiv);\n this.pool.push(child._accessibleDiv);\n child._accessibleDiv = null;\n\n i--;\n\n if (this.children.length === 0)\n {\n this.deactivate();\n }\n }\n else\n {\n // map div to display..\n div = child._accessibleDiv;\n var hitArea = child.hitArea;\n var wt = child.worldTransform;\n\n if (child.hitArea)\n {\n div.style.left = ((wt.tx + (hitArea.x * wt.a)) * sx) + \"px\";\n div.style.top = ((wt.ty + (hitArea.y * wt.d)) * sy) + \"px\";\n\n div.style.width = (hitArea.width * wt.a * sx) + \"px\";\n div.style.height = (hitArea.height * wt.d * sy) + \"px\";\n }\n else\n {\n hitArea = child.getBounds();\n\n this.capHitArea(hitArea);\n\n div.style.left = (hitArea.x * sx) + \"px\";\n div.style.top = (hitArea.y * sy) + \"px\";\n\n div.style.width = (hitArea.width * sx) + \"px\";\n div.style.height = (hitArea.height * sy) + \"px\";\n\n // update button titles and hints if they exist and they've changed\n if (div.title !== child.accessibleTitle && child.accessibleTitle !== null)\n {\n div.title = child.accessibleTitle;\n }\n if (div.getAttribute('aria-label') !== child.accessibleHint\n && child.accessibleHint !== null)\n {\n div.setAttribute('aria-label', child.accessibleHint);\n }\n }\n }\n }\n\n // increment the render id..\n this.renderId++;\n};\n\n/**\n * Adjust the hit area based on the bounds of a display object\n *\n * @param {PIXI.Rectangle} hitArea - Bounds of the child\n */\nAccessibilityManager.prototype.capHitArea = function capHitArea (hitArea)\n{\n if (hitArea.x < 0)\n {\n hitArea.width += hitArea.x;\n hitArea.x = 0;\n }\n\n if (hitArea.y < 0)\n {\n hitArea.height += hitArea.y;\n hitArea.y = 0;\n }\n\n if (hitArea.x + hitArea.width > this.renderer.width)\n {\n hitArea.width = this.renderer.width - hitArea.x;\n }\n\n if (hitArea.y + hitArea.height > this.renderer.height)\n {\n hitArea.height = this.renderer.height - hitArea.y;\n }\n};\n\n/**\n * Adds a DisplayObject to the accessibility manager\n *\n * @private\n * @param {PIXI.DisplayObject} displayObject - The child to make accessible.\n */\nAccessibilityManager.prototype.addChild = function addChild (displayObject)\n{\n //this.activate();\n\n var div = this.pool.pop();\n\n if (!div)\n {\n div = document.createElement('button');\n\n div.style.width = DIV_TOUCH_SIZE + \"px\";\n div.style.height = DIV_TOUCH_SIZE + \"px\";\n div.style.backgroundColor = this.debug ? 'rgba(255,0,0,0.5)' : 'transparent';\n div.style.position = 'absolute';\n div.style.zIndex = DIV_TOUCH_ZINDEX;\n div.style.borderStyle = 'none';\n\n // ARIA attributes ensure that button title and hint updates are announced properly\n if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)\n {\n // Chrome doesn't need aria-live to work as intended; in fact it just gets more confused.\n div.setAttribute('aria-live', 'off');\n }\n else\n {\n div.setAttribute('aria-live', 'polite');\n }\n\n if (navigator.userAgent.match(/rv:.*Gecko\\//))\n {\n // FireFox needs this to announce only the new button name\n div.setAttribute('aria-relevant', 'additions');\n }\n else\n {\n // required by IE, other browsers don't much care\n div.setAttribute('aria-relevant', 'text');\n }\n\n div.addEventListener('click', this._onClick.bind(this));\n div.addEventListener('focus', this._onFocus.bind(this));\n div.addEventListener('focusout', this._onFocusOut.bind(this));\n }\n\n if (displayObject.accessibleTitle && displayObject.accessibleTitle !== null)\n {\n div.title = displayObject.accessibleTitle;\n }\n else if (!displayObject.accessibleHint\n || displayObject.accessibleHint === null)\n {\n div.title = \"displayObject \" + (displayObject.tabIndex);\n }\n\n if (displayObject.accessibleHint\n && displayObject.accessibleHint !== null)\n {\n div.setAttribute('aria-label', displayObject.accessibleHint);\n }\n\n //\n\n displayObject._accessibleActive = true;\n displayObject._accessibleDiv = div;\n div.displayObject = displayObject;\n\n this.children.push(displayObject);\n this.div.appendChild(displayObject._accessibleDiv);\n displayObject._accessibleDiv.tabIndex = displayObject.tabIndex;\n};\n\n/**\n * Maps the div button press to pixi's InteractionManager (click)\n *\n * @private\n * @param {MouseEvent} e - The click event.\n */\nAccessibilityManager.prototype._onClick = function _onClick (e)\n{\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'click', interactionManager.eventData);\n interactionManager.dispatchEvent(e.target.displayObject, 'pointertap', interactionManager.eventData);\n interactionManager.dispatchEvent(e.target.displayObject, 'tap', interactionManager.eventData);\n};\n\n/**\n * Maps the div focus events to pixi's InteractionManager (mouseover)\n *\n * @private\n * @param {FocusEvent} e - The focus event.\n */\nAccessibilityManager.prototype._onFocus = function _onFocus (e)\n{\n if (!e.target.getAttribute('aria-live', 'off'))\n {\n e.target.setAttribute('aria-live', 'assertive');\n }\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'mouseover', interactionManager.eventData);\n};\n\n/**\n * Maps the div focus events to pixi's InteractionManager (mouseout)\n *\n * @private\n * @param {FocusEvent} e - The focusout event.\n */\nAccessibilityManager.prototype._onFocusOut = function _onFocusOut (e)\n{\n if (!e.target.getAttribute('aria-live', 'off'))\n {\n e.target.setAttribute('aria-live', 'polite');\n }\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'mouseout', interactionManager.eventData);\n};\n\n/**\n * Is called when a key is pressed\n *\n * @private\n * @param {KeyboardEvent} e - The keydown event.\n */\nAccessibilityManager.prototype._onKeyDown = function _onKeyDown (e)\n{\n if (e.keyCode !== KEY_CODE_TAB)\n {\n return;\n }\n\n this.activate();\n};\n\n/**\n * Is called when the mouse moves across the renderer element\n *\n * @private\n * @param {MouseEvent} e - The mouse event.\n */\nAccessibilityManager.prototype._onMouseMove = function _onMouseMove (e)\n{\n if (e.movementX === 0 && e.movementY === 0)\n {\n return;\n }\n\n this.deactivate();\n};\n\n/**\n * Destroys the accessibility manager\n *\n */\nAccessibilityManager.prototype.destroy = function destroy ()\n{\n this.destroyTouchHook();\n this.div = null;\n\n for (var i = 0; i < this.children.length; i++)\n {\n this.children[i].div = null;\n }\n\n window.document.removeEventListener('mousemove', this._onMouseMove, true);\n window.removeEventListener('keydown', this._onKeyDown);\n\n this.pool = null;\n this.children = null;\n this.renderer = null;\n};\n\n/**\n * This namespace contains an accessibility plugin for allowing interaction via the keyboard.\n *\n * Do not instantiate this plugin directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @namespace PIXI.accessibility\n */\n\nexport { AccessibilityManager, accessibleTarget };\n//# sourceMappingURL=accessibility.es.js.map\n","/*!\n * @pixi/runner - v5.1.1\n * Compiled Fri, 02 Aug 2019 23:20:23 UTC\n *\n * @pixi/runner is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * A Runner is a highly performant and simple alternative to signals. Best used in situations\n * where events are dispatched to many objects at high frequency (say every frame!)\n *\n *\n * like a signal..\n * ```\n * const myObject = {\n * loaded: new PIXI.Runner('loaded')\n * }\n *\n * const listener = {\n * loaded: function(){\n * // thin\n * }\n * }\n *\n * myObject.update.add(listener);\n *\n * myObject.loaded.emit();\n * ```\n *\n * Or for handling calling the same function on many items\n * ```\n * const myGame = {\n * update: new PIXI.Runner('update')\n * }\n *\n * const gameObject = {\n * update: function(time){\n * // update my gamey state\n * }\n * }\n *\n * myGame.update.add(gameObject1);\n *\n * myGame.update.emit(time);\n * ```\n * @class\n * @memberof PIXI\n */\nvar Runner = function Runner(name)\n{\n this.items = [];\n this._name = name;\n this._aliasCount = 0;\n};\n\nvar prototypeAccessors = { empty: { configurable: true },name: { configurable: true } };\n\n/**\n * Dispatch/Broadcast Runner to all listeners added to the queue.\n * @param {...any} params - optional parameters to pass to each listener\n */\nRunner.prototype.emit = function emit (a0, a1, a2, a3, a4, a5, a6, a7)\n{\n if (arguments.length > 8)\n {\n throw new Error('max arguments reached');\n }\n\n var ref = this;\n var name = ref.name;\n var items = ref.items;\n\n this._aliasCount++;\n\n for (var i = 0, len = items.length; i < len; i++)\n {\n items[i][name](a0, a1, a2, a3, a4, a5, a6, a7);\n }\n\n if (items === this.items)\n {\n this._aliasCount--;\n }\n\n return this;\n};\n\nRunner.prototype.ensureNonAliasedItems = function ensureNonAliasedItems ()\n{\n if (this._aliasCount > 0 && this.items.length > 1)\n {\n this._aliasCount = 0;\n this.items = this.items.slice(0);\n }\n};\n\n/**\n * Add a listener to the Runner\n *\n * Runners do not need to have scope or functions passed to them.\n * All that is required is to pass the listening object and ensure that it has contains a function that has the same name\n * as the name provided to the Runner when it was created.\n *\n * Eg A listener passed to this Runner will require a 'complete' function.\n *\n * ```\n * const complete = new PIXI.Runner('complete');\n * ```\n *\n * The scope used will be the object itself.\n *\n * @param {any} item - The object that will be listening.\n */\nRunner.prototype.add = function add (item)\n{\n if (item[this._name])\n {\n this.ensureNonAliasedItems();\n this.remove(item);\n this.items.push(item);\n }\n\n return this;\n};\n\n/**\n * Remove a single listener from the dispatch queue.\n * @param {any} item - The listenr that you would like to remove.\n */\nRunner.prototype.remove = function remove (item)\n{\n var index = this.items.indexOf(item);\n\n if (index !== -1)\n {\n this.ensureNonAliasedItems();\n this.items.splice(index, 1);\n }\n\n return this;\n};\n\n/**\n * Check to see if the listener is already in the Runner\n * @param {any} item - The listener that you would like to check.\n */\nRunner.prototype.contains = function contains (item)\n{\n return this.items.indexOf(item) !== -1;\n};\n\n/**\n * Remove all listeners from the Runner\n */\nRunner.prototype.removeAll = function removeAll ()\n{\n this.ensureNonAliasedItems();\n this.items.length = 0;\n\n return this;\n};\n\n/**\n * Remove all references, don't use after this.\n */\nRunner.prototype.destroy = function destroy ()\n{\n this.removeAll();\n this.items = null;\n this._name = null;\n};\n\n/**\n * `true` if there are no this Runner contains no listeners\n *\n * @member {boolean}\n * @readonly\n */\nprototypeAccessors.empty.get = function ()\n{\n return this.items.length === 0;\n};\n\n/**\n * The name of the runner.\n *\n * @member {string}\n * @readonly\n */\nprototypeAccessors.name.get = function ()\n{\n return this._name;\n};\n\nObject.defineProperties( Runner.prototype, prototypeAccessors );\n\n/**\n * Alias for `emit`\n * @memberof PIXI.Runner#\n * @method dispatch\n * @see PIXI.Runner#emit\n */\nRunner.prototype.dispatch = Runner.prototype.emit;\n\n/**\n * Alias for `emit`\n * @memberof PIXI.Runner#\n * @method run\n * @see PIXI.Runner#emit\n */\nRunner.prototype.run = Runner.prototype.emit;\n\nexport { Runner };\n//# sourceMappingURL=runner.es.js.map\n","/*!\n * @pixi/ticker - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/ticker is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\n\n/**\n * Target frames per millisecond.\n *\n * @static\n * @name TARGET_FPMS\n * @memberof PIXI.settings\n * @type {number}\n * @default 0.06\n */\nsettings.TARGET_FPMS = 0.06;\n\n/**\n * Represents the update priorities used by internal PIXI classes when registered with\n * the {@link PIXI.Ticker} object. Higher priority items are updated first and lower\n * priority items, such as render, should go later.\n *\n * @static\n * @constant\n * @name UPDATE_PRIORITY\n * @memberof PIXI\n * @type {object}\n * @property {number} INTERACTION=50 Highest priority, used for {@link PIXI.interaction.InteractionManager}\n * @property {number} HIGH=25 High priority updating, {@link PIXI.VideoBaseTexture} and {@link PIXI.AnimatedSprite}\n * @property {number} NORMAL=0 Default priority for ticker events, see {@link PIXI.Ticker#add}.\n * @property {number} LOW=-25 Low priority used for {@link PIXI.Application} rendering.\n * @property {number} UTILITY=-50 Lowest priority used for {@link PIXI.prepare.BasePrepare} utility.\n */\nvar UPDATE_PRIORITY = {\n INTERACTION: 50,\n HIGH: 25,\n NORMAL: 0,\n LOW: -25,\n UTILITY: -50,\n};\n\n/**\n * Internal class for handling the priority sorting of ticker handlers.\n *\n * @private\n * @class\n * @memberof PIXI\n */\nvar TickerListener = function TickerListener(fn, context, priority, once)\n{\n if ( context === void 0 ) context = null;\n if ( priority === void 0 ) priority = 0;\n if ( once === void 0 ) once = false;\n\n /**\n * The handler function to execute.\n * @private\n * @member {Function}\n */\n this.fn = fn;\n\n /**\n * The calling to execute.\n * @private\n * @member {*}\n */\n this.context = context;\n\n /**\n * The current priority.\n * @private\n * @member {number}\n */\n this.priority = priority;\n\n /**\n * If this should only execute once.\n * @private\n * @member {boolean}\n */\n this.once = once;\n\n /**\n * The next item in chain.\n * @private\n * @member {TickerListener}\n */\n this.next = null;\n\n /**\n * The previous item in chain.\n * @private\n * @member {TickerListener}\n */\n this.previous = null;\n\n /**\n * `true` if this listener has been destroyed already.\n * @member {boolean}\n * @private\n */\n this._destroyed = false;\n};\n\n/**\n * Simple compare function to figure out if a function and context match.\n * @private\n * @param {Function} fn - The listener function to be added for one update\n * @param {Function} context - The listener context\n * @return {boolean} `true` if the listener match the arguments\n */\nTickerListener.prototype.match = function match (fn, context)\n{\n context = context || null;\n\n return this.fn === fn && this.context === context;\n};\n\n/**\n * Emit by calling the current function.\n * @private\n * @param {number} deltaTime - time since the last emit.\n * @return {TickerListener} Next ticker\n */\nTickerListener.prototype.emit = function emit (deltaTime)\n{\n if (this.fn)\n {\n if (this.context)\n {\n this.fn.call(this.context, deltaTime);\n }\n else\n {\n this.fn(deltaTime);\n }\n }\n\n var redirect = this.next;\n\n if (this.once)\n {\n this.destroy(true);\n }\n\n // Soft-destroying should remove\n // the next reference\n if (this._destroyed)\n {\n this.next = null;\n }\n\n return redirect;\n};\n\n/**\n * Connect to the list.\n * @private\n * @param {TickerListener} previous - Input node, previous listener\n */\nTickerListener.prototype.connect = function connect (previous)\n{\n this.previous = previous;\n if (previous.next)\n {\n previous.next.previous = this;\n }\n this.next = previous.next;\n previous.next = this;\n};\n\n/**\n * Destroy and don't use after this.\n * @private\n * @param {boolean} [hard = false] `true` to remove the `next` reference, this\n * is considered a hard destroy. Soft destroy maintains the next reference.\n * @return {TickerListener} The listener to redirect while emitting or removing.\n */\nTickerListener.prototype.destroy = function destroy (hard)\n{\n if ( hard === void 0 ) hard = false;\n\n this._destroyed = true;\n this.fn = null;\n this.context = null;\n\n // Disconnect, hook up next and previous\n if (this.previous)\n {\n this.previous.next = this.next;\n }\n\n if (this.next)\n {\n this.next.previous = this.previous;\n }\n\n // Redirect to the next item\n var redirect = this.next;\n\n // Remove references\n this.next = hard ? null : redirect;\n this.previous = null;\n\n return redirect;\n};\n\n/**\n * A Ticker class that runs an update loop that other objects listen to.\n *\n * This class is composed around listeners meant for execution on the next requested animation frame.\n * Animation frames are requested only when necessary, e.g. When the ticker is started and the emitter has listeners.\n *\n * @class\n * @memberof PIXI\n */\nvar Ticker = function Ticker()\n{\n var this$1 = this;\n\n /**\n * The first listener. All new listeners added are chained on this.\n * @private\n * @type {TickerListener}\n */\n this._head = new TickerListener(null, null, Infinity);\n\n /**\n * Internal current frame request ID\n * @type {?number}\n * @private\n */\n this._requestId = null;\n\n /**\n * Internal value managed by minFPS property setter and getter.\n * This is the maximum allowed milliseconds between updates.\n * @type {number}\n * @private\n */\n this._maxElapsedMS = 100;\n\n /**\n * Internal value managed by maxFPS property setter and getter.\n * This is the minimum allowed milliseconds between updates.\n * @private\n */\n this._minElapsedMS = 0;\n\n /**\n * Whether or not this ticker should invoke the method\n * {@link PIXI.Ticker#start} automatically\n * when a listener is added.\n *\n * @member {boolean}\n * @default false\n */\n this.autoStart = false;\n\n /**\n * Scalar time value from last frame to this frame.\n * This value is capped by setting {@link PIXI.Ticker#minFPS}\n * and is scaled with {@link PIXI.Ticker#speed}.\n * **Note:** The cap may be exceeded by scaling.\n *\n * @member {number}\n * @default 1\n */\n this.deltaTime = 1;\n\n /**\n * Scaler time elapsed in milliseconds from last frame to this frame.\n * This value is capped by setting {@link PIXI.Ticker#minFPS}\n * and is scaled with {@link PIXI.Ticker#speed}.\n * **Note:** The cap may be exceeded by scaling.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n * Defaults to target frame time\n *\n * @member {number}\n * @default 16.66\n */\n this.deltaMS = 1 / settings.TARGET_FPMS;\n\n /**\n * Time elapsed in milliseconds from last frame to this frame.\n * Opposed to what the scalar {@link PIXI.Ticker#deltaTime}\n * is based, this value is neither capped nor scaled.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n * Defaults to target frame time\n *\n * @member {number}\n * @default 16.66\n */\n this.elapsedMS = 1 / settings.TARGET_FPMS;\n\n /**\n * The last time {@link PIXI.Ticker#update} was invoked.\n * This value is also reset internally outside of invoking\n * update, but only when a new animation frame is requested.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n *\n * @member {number}\n * @default -1\n */\n this.lastTime = -1;\n\n /**\n * Factor of current {@link PIXI.Ticker#deltaTime}.\n * @example\n * // Scales ticker.deltaTime to what would be\n * // the equivalent of approximately 120 FPS\n * ticker.speed = 2;\n *\n * @member {number}\n * @default 1\n */\n this.speed = 1;\n\n /**\n * Whether or not this ticker has been started.\n * `true` if {@link PIXI.Ticker#start} has been called.\n * `false` if {@link PIXI.Ticker#stop} has been called.\n * While `false`, this value may change to `true` in the\n * event of {@link PIXI.Ticker#autoStart} being `true`\n * and a listener is added.\n *\n * @member {boolean}\n * @default false\n */\n this.started = false;\n\n /**\n * If enabled, deleting is disabled.\n * @member {boolean}\n * @default false\n * @private\n */\n this._protected = false;\n\n /**\n * The last time keyframe was executed.\n * Maintains a relatively fixed interval with the previous value.\n * @member {number}\n * @default -1\n * @private\n */\n this._lastFrame = -1;\n\n /**\n * Internal tick method bound to ticker instance.\n * This is because in early 2015, Function.bind\n * is still 60% slower in high performance scenarios.\n * Also separating frame requests from update method\n * so listeners may be called at any time and with\n * any animation API, just invoke ticker.update(time).\n *\n * @private\n * @param {number} time - Time since last tick.\n */\n this._tick = function (time) {\n this$1._requestId = null;\n\n if (this$1.started)\n {\n // Invoke listeners now\n this$1.update(time);\n // Listener side effects may have modified ticker state.\n if (this$1.started && this$1._requestId === null && this$1._head.next)\n {\n this$1._requestId = requestAnimationFrame(this$1._tick);\n }\n }\n };\n};\n\nvar prototypeAccessors = { FPS: { configurable: true },minFPS: { configurable: true },maxFPS: { configurable: true } };\nvar staticAccessors = { shared: { configurable: true },system: { configurable: true } };\n\n/**\n * Conditionally requests a new animation frame.\n * If a frame has not already been requested, and if the internal\n * emitter has listeners, a new frame is requested.\n *\n * @private\n */\nTicker.prototype._requestIfNeeded = function _requestIfNeeded ()\n{\n if (this._requestId === null && this._head.next)\n {\n // ensure callbacks get correct delta\n this.lastTime = performance.now();\n this._lastFrame = this.lastTime;\n this._requestId = requestAnimationFrame(this._tick);\n }\n};\n\n/**\n * Conditionally cancels a pending animation frame.\n *\n * @private\n */\nTicker.prototype._cancelIfNeeded = function _cancelIfNeeded ()\n{\n if (this._requestId !== null)\n {\n cancelAnimationFrame(this._requestId);\n this._requestId = null;\n }\n};\n\n/**\n * Conditionally requests a new animation frame.\n * If the ticker has been started it checks if a frame has not already\n * been requested, and if the internal emitter has listeners. If these\n * conditions are met, a new frame is requested. If the ticker has not\n * been started, but autoStart is `true`, then the ticker starts now,\n * and continues with the previous conditions to request a new frame.\n *\n * @private\n */\nTicker.prototype._startIfPossible = function _startIfPossible ()\n{\n if (this.started)\n {\n this._requestIfNeeded();\n }\n else if (this.autoStart)\n {\n this.start();\n }\n};\n\n/**\n * Register a handler for tick events. Calls continuously unless\n * it is removed or the ticker is stopped.\n *\n * @param {Function} fn - The listener function to be added for updates\n * @param {*} [context] - The listener context\n * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.add = function add (fn, context, priority)\n{\n if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL;\n\n return this._addListener(new TickerListener(fn, context, priority));\n};\n\n/**\n * Add a handler for the tick event which is only execute once.\n *\n * @param {Function} fn - The listener function to be added for one update\n * @param {*} [context] - The listener context\n * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.addOnce = function addOnce (fn, context, priority)\n{\n if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL;\n\n return this._addListener(new TickerListener(fn, context, priority, true));\n};\n\n/**\n * Internally adds the event handler so that it can be sorted by priority.\n * Priority allows certain handler (user, AnimatedSprite, Interaction) to be run\n * before the rendering.\n *\n * @private\n * @param {TickerListener} listener - Current listener being added.\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype._addListener = function _addListener (listener)\n{\n // For attaching to head\n var current = this._head.next;\n var previous = this._head;\n\n // Add the first item\n if (!current)\n {\n listener.connect(previous);\n }\n else\n {\n // Go from highest to lowest priority\n while (current)\n {\n if (listener.priority > current.priority)\n {\n listener.connect(previous);\n break;\n }\n previous = current;\n current = current.next;\n }\n\n // Not yet connected\n if (!listener.previous)\n {\n listener.connect(previous);\n }\n }\n\n this._startIfPossible();\n\n return this;\n};\n\n/**\n * Removes any handlers matching the function and context parameters.\n * If no handlers are left after removing, then it cancels the animation frame.\n *\n * @param {Function} fn - The listener function to be removed\n * @param {*} [context] - The listener context to be removed\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.remove = function remove (fn, context)\n{\n var listener = this._head.next;\n\n while (listener)\n {\n // We found a match, lets remove it\n // no break to delete all possible matches\n // incase a listener was added 2+ times\n if (listener.match(fn, context))\n {\n listener = listener.destroy();\n }\n else\n {\n listener = listener.next;\n }\n }\n\n if (!this._head.next)\n {\n this._cancelIfNeeded();\n }\n\n return this;\n};\n\n/**\n * Starts the ticker. If the ticker has listeners\n * a new animation frame is requested at this point.\n */\nTicker.prototype.start = function start ()\n{\n if (!this.started)\n {\n this.started = true;\n this._requestIfNeeded();\n }\n};\n\n/**\n * Stops the ticker. If the ticker has requested\n * an animation frame it is canceled at this point.\n */\nTicker.prototype.stop = function stop ()\n{\n if (this.started)\n {\n this.started = false;\n this._cancelIfNeeded();\n }\n};\n\n/**\n * Destroy the ticker and don't use after this. Calling\n * this method removes all references to internal events.\n */\nTicker.prototype.destroy = function destroy ()\n{\n if (!this._protected)\n {\n this.stop();\n\n var listener = this._head.next;\n\n while (listener)\n {\n listener = listener.destroy(true);\n }\n\n this._head.destroy();\n this._head = null;\n }\n};\n\n/**\n * Triggers an update. An update entails setting the\n * current {@link PIXI.Ticker#elapsedMS},\n * the current {@link PIXI.Ticker#deltaTime},\n * invoking all listeners with current deltaTime,\n * and then finally setting {@link PIXI.Ticker#lastTime}\n * with the value of currentTime that was provided.\n * This method will be called automatically by animation\n * frame callbacks if the ticker instance has been started\n * and listeners are added.\n *\n * @param {number} [currentTime=performance.now()] - the current time of execution\n */\nTicker.prototype.update = function update (currentTime)\n{\n if ( currentTime === void 0 ) currentTime = performance.now();\n\n var elapsedMS;\n\n // If the difference in time is zero or negative, we ignore most of the work done here.\n // If there is no valid difference, then should be no reason to let anyone know about it.\n // A zero delta, is exactly that, nothing should update.\n //\n // The difference in time can be negative, and no this does not mean time traveling.\n // This can be the result of a race condition between when an animation frame is requested\n // on the current JavaScript engine event loop, and when the ticker's start method is invoked\n // (which invokes the internal _requestIfNeeded method). If a frame is requested before\n // _requestIfNeeded is invoked, then the callback for the animation frame the ticker requests,\n // can receive a time argument that can be less than the lastTime value that was set within\n // _requestIfNeeded. This difference is in microseconds, but this is enough to cause problems.\n //\n // This check covers this browser engine timing issue, as well as if consumers pass an invalid\n // currentTime value. This may happen if consumers opt-out of the autoStart, and update themselves.\n\n if (currentTime > this.lastTime)\n {\n // Save uncapped elapsedMS for measurement\n elapsedMS = this.elapsedMS = currentTime - this.lastTime;\n\n // cap the milliseconds elapsed used for deltaTime\n if (elapsedMS > this._maxElapsedMS)\n {\n elapsedMS = this._maxElapsedMS;\n }\n\n elapsedMS *= this.speed;\n\n // If not enough time has passed, exit the function.\n // Get ready for next frame by setting _lastFrame, but based on _minElapsedMS\n // adjustment to ensure a relatively stable interval.\n if (this._minElapsedMS)\n {\n var delta = currentTime - this._lastFrame | 0;\n\n if (delta < this._minElapsedMS)\n {\n return;\n }\n\n this._lastFrame = currentTime - (delta % this._minElapsedMS);\n }\n\n this.deltaMS = elapsedMS;\n this.deltaTime = this.deltaMS * settings.TARGET_FPMS;\n\n // Cache a local reference, in-case ticker is destroyed\n // during the emit, we can still check for head.next\n var head = this._head;\n\n // Invoke listeners added to internal emitter\n var listener = head.next;\n\n while (listener)\n {\n listener = listener.emit(this.deltaTime);\n }\n\n if (!head.next)\n {\n this._cancelIfNeeded();\n }\n }\n else\n {\n this.deltaTime = this.deltaMS = this.elapsedMS = 0;\n }\n\n this.lastTime = currentTime;\n};\n\n/**\n * The frames per second at which this ticker is running.\n * The default is approximately 60 in most modern browsers.\n * **Note:** This does not factor in the value of\n * {@link PIXI.Ticker#speed}, which is specific\n * to scaling {@link PIXI.Ticker#deltaTime}.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.FPS.get = function ()\n{\n return 1000 / this.elapsedMS;\n};\n\n/**\n * Manages the maximum amount of milliseconds allowed to\n * elapse between invoking {@link PIXI.Ticker#update}.\n * This value is used to cap {@link PIXI.Ticker#deltaTime},\n * but does not effect the measured value of {@link PIXI.Ticker#FPS}.\n * When setting this property it is clamped to a value between\n * `0` and `PIXI.settings.TARGET_FPMS * 1000`.\n *\n * @member {number}\n * @default 10\n */\nprototypeAccessors.minFPS.get = function ()\n{\n return 1000 / this._maxElapsedMS;\n};\n\nprototypeAccessors.minFPS.set = function (fps) // eslint-disable-line require-jsdoc\n{\n // Minimum must be below the maxFPS\n var minFPS = Math.min(this.maxFPS, fps);\n\n // Must be at least 0, but below 1 / settings.TARGET_FPMS\n var minFPMS = Math.min(Math.max(0, minFPS) / 1000, settings.TARGET_FPMS);\n\n this._maxElapsedMS = 1 / minFPMS;\n};\n\n/**\n * Manages the minimum amount of milliseconds required to\n * elapse between invoking {@link PIXI.Ticker#update}.\n * This will effect the measured value of {@link PIXI.Ticker#FPS}.\n * If it is set to `0`, then there is no limit; PixiJS will render as many frames as it can.\n * Otherwise it will be at least `minFPS`\n *\n * @member {number}\n * @default 0\n */\nprototypeAccessors.maxFPS.get = function ()\n{\n if (this._minElapsedMS)\n {\n return Math.round(1000 / this._minElapsedMS);\n }\n\n return 0;\n};\n\nprototypeAccessors.maxFPS.set = function (fps)\n{\n if (fps === 0)\n {\n this._minElapsedMS = 0;\n }\n else\n {\n // Max must be at least the minFPS\n var maxFPS = Math.max(this.minFPS, fps);\n\n this._minElapsedMS = 1 / (maxFPS / 1000);\n }\n};\n\n/**\n * The shared ticker instance used by {@link PIXI.AnimatedSprite} and by\n * {@link PIXI.VideoResource} to update animation frames / video textures.\n *\n * It may also be used by {@link PIXI.Application} if created with the `sharedTicker` option property set to true.\n *\n * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance.\n * Please follow the examples for usage, including how to opt-out of auto-starting the shared ticker.\n *\n * @example\n * let ticker = PIXI.Ticker.shared;\n * // Set this to prevent starting this ticker when listeners are added.\n * // By default this is true only for the PIXI.Ticker.shared instance.\n * ticker.autoStart = false;\n * // FYI, call this to ensure the ticker is stopped. It should be stopped\n * // if you have not attempted to render anything yet.\n * ticker.stop();\n * // Call this when you are ready for a running shared ticker.\n * ticker.start();\n *\n * @example\n * // You may use the shared ticker to render...\n * let renderer = PIXI.autoDetectRenderer();\n * let stage = new PIXI.Container();\n * document.body.appendChild(renderer.view);\n * ticker.add(function (time) {\n * renderer.render(stage);\n * });\n *\n * @example\n * // Or you can just update it manually.\n * ticker.autoStart = false;\n * ticker.stop();\n * function animate(time) {\n * ticker.update(time);\n * renderer.render(stage);\n * requestAnimationFrame(animate);\n * }\n * animate(performance.now());\n *\n * @member {PIXI.Ticker}\n * @static\n */\nstaticAccessors.shared.get = function ()\n{\n if (!Ticker._shared)\n {\n var shared = Ticker._shared = new Ticker();\n\n shared.autoStart = true;\n shared._protected = true;\n }\n\n return Ticker._shared;\n};\n\n/**\n * The system ticker instance used by {@link PIXI.interaction.InteractionManager} and by\n * {@link PIXI.BasePrepare} for core timing functionality that shouldn't usually need to be paused,\n * unlike the `shared` ticker which drives visual animations and rendering which may want to be paused.\n *\n * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance.\n *\n * @member {PIXI.Ticker}\n * @static\n */\nstaticAccessors.system.get = function ()\n{\n if (!Ticker._system)\n {\n var system = Ticker._system = new Ticker();\n\n system.autoStart = true;\n system._protected = true;\n }\n\n return Ticker._system;\n};\n\nObject.defineProperties( Ticker.prototype, prototypeAccessors );\nObject.defineProperties( Ticker, staticAccessors );\n\n/**\n * Middleware for for Application Ticker.\n *\n * @example\n * import {TickerPlugin} from '@pixi/ticker';\n * import {Application} from '@pixi/app';\n * Application.registerPlugin(TickerPlugin);\n *\n * @class\n * @memberof PIXI\n */\nvar TickerPlugin = function TickerPlugin () {};\n\nTickerPlugin.init = function init (options)\n{\n var this$1 = this;\n\n // Set default\n options = Object.assign({\n autoStart: true,\n sharedTicker: false,\n }, options);\n\n // Create ticker setter\n Object.defineProperty(this, 'ticker',\n {\n set: function set(ticker)\n {\n if (this._ticker)\n {\n this._ticker.remove(this.render, this);\n }\n this._ticker = ticker;\n if (ticker)\n {\n ticker.add(this.render, this, UPDATE_PRIORITY.LOW);\n }\n },\n get: function get()\n {\n return this._ticker;\n },\n });\n\n /**\n * Convenience method for stopping the render.\n *\n * @method PIXI.Application#stop\n */\n this.stop = function () {\n this$1._ticker.stop();\n };\n\n /**\n * Convenience method for starting the render.\n *\n * @method PIXI.Application#start\n */\n this.start = function () {\n this$1._ticker.start();\n };\n\n /**\n * Internal reference to the ticker.\n *\n * @type {PIXI.Ticker}\n * @name _ticker\n * @memberof PIXI.Application#\n * @private\n */\n this._ticker = null;\n\n /**\n * Ticker for doing render updates.\n *\n * @type {PIXI.Ticker}\n * @name ticker\n * @memberof PIXI.Application#\n * @default PIXI.Ticker.shared\n */\n this.ticker = options.sharedTicker ? Ticker.shared : new Ticker();\n\n // Start the rendering\n if (options.autoStart)\n {\n this.start();\n }\n};\n\n/**\n * Clean up the ticker, scoped to application.\n *\n * @static\n * @private\n */\nTickerPlugin.destroy = function destroy ()\n{\n if (this._ticker)\n {\n var oldTicker = this._ticker;\n\n this.ticker = null;\n oldTicker.destroy();\n }\n};\n\nexport { Ticker, TickerPlugin, UPDATE_PRIORITY };\n//# sourceMappingURL=ticker.es.js.map\n","/*!\n * @pixi/core - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/core is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Runner } from '@pixi/runner';\nimport { determineCrossOrigin, isPow2, BaseTextureCache, TextureCache, uid, EventEmitter, getResolutionOfUrl, nextPow2, isMobile, ProgramCache, removeItems, hex2string, hex2rgb, deprecation, isWebGLSupported, sayHello, premultiplyBlendMode, log2, premultiplyTint } from '@pixi/utils';\nimport { settings } from '@pixi/settings';\nimport { SCALE_MODES, FORMATS, TYPES, TARGETS, DRAW_MODES, ENV, PRECISION, BLEND_MODES, GC_MODES, MIPMAP_MODES, WRAP_MODES, RENDERER_TYPE } from '@pixi/constants';\nimport { Ticker } from '@pixi/ticker';\nimport { GroupD8, Rectangle, Point, Matrix } from '@pixi/math';\nimport { Container } from '@pixi/display';\n\n/**\n * Base resource class for textures that manages validation and uploading, depending on its type.\n *\n * Uploading of a base texture to the GPU is required.\n *\n * @class\n * @memberof PIXI.resources\n */\nvar Resource = function Resource(width, height)\n{\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n\n /**\n * Internal width of the resource\n * @member {number}\n * @protected\n */\n this._width = width;\n\n /**\n * Internal height of the resource\n * @member {number}\n * @protected\n */\n this._height = height;\n\n /**\n * If resource has been destroyed\n * @member {boolean}\n * @readonly\n * @default false\n */\n this.destroyed = false;\n\n /**\n * `true` if resource is created by BaseTexture\n * useful for doing cleanup with BaseTexture destroy\n * and not cleaning up resources that were created\n * externally.\n * @member {boolean}\n * @protected\n */\n this.internal = false;\n\n /**\n * Mini-runner for handling resize events\n *\n * @member {Runner}\n * @private\n */\n this.onResize = new Runner('setRealSize', 2);\n\n /**\n * Mini-runner for handling update events\n *\n * @member {Runner}\n * @private\n */\n this.onUpdate = new Runner('update');\n\n /**\n * Handle internal errors, such as loading errors\n *\n * @member {Runner}\n * @private\n */\n this.onError = new Runner('onError', 1);\n};\n\nvar prototypeAccessors = { valid: { configurable: true },width: { configurable: true },height: { configurable: true } };\n\n/**\n * Bind to a parent BaseTexture\n *\n * @param {PIXI.BaseTexture} baseTexture - Parent texture\n */\nResource.prototype.bind = function bind (baseTexture)\n{\n this.onResize.add(baseTexture);\n this.onUpdate.add(baseTexture);\n this.onError.add(baseTexture);\n\n // Call a resize immediate if we already\n // have the width and height of the resource\n if (this._width || this._height)\n {\n this.onResize.run(this._width, this._height);\n }\n};\n\n/**\n * Unbind to a parent BaseTexture\n *\n * @param {PIXI.BaseTexture} baseTexture - Parent texture\n */\nResource.prototype.unbind = function unbind (baseTexture)\n{\n this.onResize.remove(baseTexture);\n this.onUpdate.remove(baseTexture);\n this.onError.remove(baseTexture);\n};\n\n/**\n * Trigger a resize event\n * @param {number} width X dimension\n * @param {number} height Y dimension\n */\nResource.prototype.resize = function resize (width, height)\n{\n if (width !== this._width || height !== this._height)\n {\n this._width = width;\n this._height = height;\n this.onResize.run(width, height);\n }\n};\n\n/**\n * Has been validated\n * @readonly\n * @member {boolean}\n */\nprototypeAccessors.valid.get = function ()\n{\n return !!this._width && !!this._height;\n};\n\n/**\n * Has been updated trigger event\n */\nResource.prototype.update = function update ()\n{\n if (!this.destroyed)\n {\n this.onUpdate.run();\n }\n};\n\n/**\n * This can be overridden to start preloading a resource\n * or do any other prepare step.\n * @protected\n * @return {Promise} Handle the validate event\n */\nResource.prototype.load = function load ()\n{\n return Promise.resolve();\n};\n\n/**\n * The width of the resource.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.width.get = function ()\n{\n return this._width;\n};\n\n/**\n * The height of the resource.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.height.get = function ()\n{\n return this._height;\n};\n\n/**\n * Uploads the texture or returns false if it cant for some reason. Override this.\n *\n * @param {PIXI.Renderer} renderer - yeah, renderer!\n * @param {PIXI.BaseTexture} baseTexture - the texture\n * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context\n * @returns {boolean} true is success\n */\nResource.prototype.upload = function upload (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars\n{\n return false;\n};\n\n/**\n * Set the style, optional to override\n *\n * @param {PIXI.Renderer} renderer - yeah, renderer!\n * @param {PIXI.BaseTexture} baseTexture - the texture\n * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context\n * @returns {boolean} `true` is success\n */\nResource.prototype.style = function style (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars\n{\n return false;\n};\n\n/**\n * Clean up anything, this happens when destroying is ready.\n *\n * @protected\n */\nResource.prototype.dispose = function dispose ()\n{\n // override\n};\n\n/**\n * Call when destroying resource, unbind any BaseTexture object\n * before calling this method, as reference counts are maintained\n * internally.\n */\nResource.prototype.destroy = function destroy ()\n{\n if (!this.destroyed)\n {\n this.destroyed = true;\n this.dispose();\n this.onError.removeAll();\n this.onError = null;\n this.onResize.removeAll();\n this.onResize = null;\n this.onUpdate.removeAll();\n this.onUpdate = null;\n }\n};\n\nObject.defineProperties( Resource.prototype, prototypeAccessors );\n\n/**\n * Base for all the image/canvas resources\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n */\nvar BaseImageResource = /*@__PURE__*/(function (Resource) {\n function BaseImageResource(source)\n {\n var width = source.naturalWidth || source.videoWidth || source.width;\n var height = source.naturalHeight || source.videoHeight || source.height;\n\n Resource.call(this, width, height);\n\n /**\n * The source element\n * @member {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement}\n * @readonly\n */\n this.source = source;\n\n /**\n * If set to `true`, will force `texImage2D` over `texSubImage2D` for uploading.\n * Certain types of media (e.g. video) using `texImage2D` is more performant.\n * @member {boolean}\n * @default false\n * @private\n */\n this.noSubImage = false;\n }\n\n if ( Resource ) BaseImageResource.__proto__ = Resource;\n BaseImageResource.prototype = Object.create( Resource && Resource.prototype );\n BaseImageResource.prototype.constructor = BaseImageResource;\n\n /**\n * Set cross origin based detecting the url and the crossorigin\n * @protected\n * @param {HTMLElement} element - Element to apply crossOrigin\n * @param {string} url - URL to check\n * @param {boolean|string} [crossorigin=true] - Cross origin value to use\n */\n BaseImageResource.crossOrigin = function crossOrigin (element, url, crossorigin)\n {\n if (crossorigin === undefined && url.indexOf('data:') !== 0)\n {\n element.crossOrigin = determineCrossOrigin(url);\n }\n else if (crossorigin !== false)\n {\n element.crossOrigin = typeof crossorigin === 'string' ? crossorigin : 'anonymous';\n }\n };\n\n /**\n * Upload the texture to the GPU.\n * @param {PIXI.Renderer} renderer Upload to the renderer\n * @param {PIXI.BaseTexture} baseTexture Reference to parent texture\n * @param {PIXI.GLTexture} glTexture\n * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} [source] (optional)\n * @returns {boolean} true is success\n */\n BaseImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture, source)\n {\n var gl = renderer.gl;\n var width = baseTexture.realWidth;\n var height = baseTexture.realHeight;\n\n source = source || this.source;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (!this.noSubImage\n && baseTexture.target === gl.TEXTURE_2D\n && glTexture.width === width\n && glTexture.height === height)\n {\n gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, baseTexture.format, baseTexture.type, source);\n }\n else\n {\n glTexture.width = width;\n glTexture.height = height;\n\n gl.texImage2D(baseTexture.target, 0, baseTexture.format, baseTexture.format, baseTexture.type, source);\n }\n\n return true;\n };\n\n /**\n * Checks if source width/height was changed, resize can cause extra baseTexture update.\n * Triggers one update in any case.\n */\n BaseImageResource.prototype.update = function update ()\n {\n if (this.destroyed)\n {\n return;\n }\n\n var width = this.source.naturalWidth || this.source.videoWidth || this.source.width;\n var height = this.source.naturalHeight || this.source.videoHeight || this.source.height;\n\n this.resize(width, height);\n\n Resource.prototype.update.call(this);\n };\n\n /**\n * Destroy this BaseImageResource\n * @override\n * @param {PIXI.BaseTexture} [fromTexture] Optional base texture\n * @return {boolean} Destroy was successful\n */\n BaseImageResource.prototype.dispose = function dispose ()\n {\n this.source = null;\n };\n\n return BaseImageResource;\n}(Resource));\n\n/**\n * Resource type for HTMLImageElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n */\nvar ImageResource = /*@__PURE__*/(function (BaseImageResource) {\n function ImageResource(source, options)\n {\n options = options || {};\n\n if (!(source instanceof HTMLImageElement))\n {\n var imageElement = new Image();\n\n BaseImageResource.crossOrigin(imageElement, source, options.crossorigin);\n\n imageElement.src = source;\n source = imageElement;\n }\n\n BaseImageResource.call(this, source);\n\n // FireFox 68, and possibly other versions, seems like setting the HTMLImageElement#width and #height\n // to non-zero values before its loading completes if images are in a cache.\n // Because of this, need to set the `_width` and the `_height` to zero to avoid uploading incomplete images.\n // Please refer to the issue #5968 (https://github.com/pixijs/pixi.js/issues/5968).\n if (!source.complete && !!this._width && !!this._height)\n {\n this._width = 0;\n this._height = 0;\n }\n\n /**\n * URL of the image source\n * @member {string}\n */\n this.url = source.src;\n\n /**\n * When process is completed\n * @member {Promise}\n * @private\n */\n this._process = null;\n\n /**\n * If the image should be disposed after upload\n * @member {boolean}\n * @default false\n */\n this.preserveBitmap = false;\n\n /**\n * If capable, convert the image using createImageBitmap API\n * @member {boolean}\n * @default PIXI.settings.CREATE_IMAGE_BITMAP\n */\n this.createBitmap = (options.createBitmap !== undefined\n ? options.createBitmap : settings.CREATE_IMAGE_BITMAP) && !!window.createImageBitmap;\n\n /**\n * Controls texture premultiplyAlpha field\n * Copies from options\n * @member {boolean|null}\n * @readonly\n */\n this.premultiplyAlpha = options.premultiplyAlpha !== false;\n\n /**\n * The ImageBitmap element created for HTMLImageElement\n * @member {ImageBitmap}\n * @default null\n */\n this.bitmap = null;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) ImageResource.__proto__ = BaseImageResource;\n ImageResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n ImageResource.prototype.constructor = ImageResource;\n\n /**\n * returns a promise when image will be loaded and processed\n *\n * @param {boolean} [createBitmap=true] whether process image into bitmap\n * @returns {Promise}\n */\n ImageResource.prototype.load = function load (createBitmap)\n {\n var this$1 = this;\n\n if (createBitmap !== undefined)\n {\n this.createBitmap = createBitmap;\n }\n\n if (this._load)\n {\n return this._load;\n }\n\n this._load = new Promise(function (resolve) {\n this$1.url = this$1.source.src;\n var ref = this$1;\n var source = ref.source;\n\n var completed = function () {\n if (this$1.destroyed)\n {\n return;\n }\n source.onload = null;\n source.onerror = null;\n\n this$1.resize(source.width, source.height);\n this$1._load = null;\n\n if (this$1.createBitmap)\n {\n resolve(this$1.process());\n }\n else\n {\n resolve(this$1);\n }\n };\n\n if (source.complete && source.src)\n {\n completed();\n }\n else\n {\n source.onload = completed;\n source.onerror = function (event) { return this$1.onError.run(event); };\n }\n });\n\n return this._load;\n };\n\n /**\n * Called when we need to convert image into BitmapImage.\n * Can be called multiple times, real promise is cached inside.\n *\n * @returns {Promise} cached promise to fill that bitmap\n */\n ImageResource.prototype.process = function process ()\n {\n var this$1 = this;\n\n if (this._process !== null)\n {\n return this._process;\n }\n if (this.bitmap !== null || !window.createImageBitmap)\n {\n return Promise.resolve(this);\n }\n\n this._process = window.createImageBitmap(this.source,\n 0, 0, this.source.width, this.source.height,\n {\n premultiplyAlpha: this.premultiplyAlpha ? 'premultiply' : 'none',\n })\n .then(function (bitmap) {\n if (this$1.destroyed)\n {\n return Promise.reject();\n }\n this$1.bitmap = bitmap;\n this$1.update();\n this$1._process = null;\n\n return Promise.resolve(this$1);\n });\n\n return this._process;\n };\n\n /**\n * Upload the image resource to GPU.\n *\n * @param {PIXI.Renderer} renderer - Renderer to upload to\n * @param {PIXI.BaseTexture} baseTexture - BaseTexture for this resource\n * @param {PIXI.GLTexture} glTexture - GLTexture to use\n * @returns {boolean} true is success\n */\n ImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n baseTexture.premultiplyAlpha = this.premultiplyAlpha;\n\n if (!this.createBitmap)\n {\n return BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture);\n }\n if (!this.bitmap)\n {\n // yeah, ignore the output\n this.process();\n if (!this.bitmap)\n {\n return false;\n }\n }\n\n BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture, this.bitmap);\n\n if (!this.preserveBitmap)\n {\n // checks if there are other renderers that possibly need this bitmap\n\n var flag = true;\n\n for (var key in baseTexture._glTextures)\n {\n var otherTex = baseTexture._glTextures[key];\n\n if (otherTex !== glTexture && otherTex.dirtyId !== baseTexture.dirtyId)\n {\n flag = false;\n break;\n }\n }\n\n if (flag)\n {\n if (this.bitmap.close)\n {\n this.bitmap.close();\n }\n\n this.bitmap = null;\n }\n }\n\n return true;\n };\n\n /**\n * Destroys this texture\n * @override\n */\n ImageResource.prototype.dispose = function dispose ()\n {\n this.source.onload = null;\n this.source.onerror = null;\n\n BaseImageResource.prototype.dispose.call(this);\n\n if (this.bitmap)\n {\n this.bitmap.close();\n this.bitmap = null;\n }\n this._process = null;\n this._load = null;\n };\n\n return ImageResource;\n}(BaseImageResource));\n\n/**\n * Collection of installed resource types, class must extend {@link PIXI.resources.Resource}.\n * @example\n * class CustomResource extends PIXI.resources.Resource {\n * // MUST have source, options constructor signature\n * // for auto-detected resources to be created.\n * constructor(source, options) {\n * super();\n * }\n * upload(renderer, baseTexture, glTexture) {\n * // upload with GL\n * return true;\n * }\n * // used to auto-detect resource\n * static test(source, extension) {\n * return extension === 'xyz'|| source instanceof SomeClass;\n * }\n * }\n * // Install the new resource type\n * PIXI.resources.INSTALLED.push(CustomResource);\n *\n * @name PIXI.resources.INSTALLED\n * @type {Array<*>}\n * @static\n * @readonly\n */\nvar INSTALLED = [];\n\n/**\n * Create a resource element from a single source element. This\n * auto-detects which type of resource to create. All resources that\n * are auto-detectable must have a static `test` method and a constructor\n * with the arguments `(source, options?)`. Currently, the supported\n * resources for auto-detection include:\n * - {@link PIXI.resources.ImageResource}\n * - {@link PIXI.resources.CanvasResource}\n * - {@link PIXI.resources.VideoResource}\n * - {@link PIXI.resources.SVGResource}\n * - {@link PIXI.resources.BufferResource}\n * @static\n * @function PIXI.resources.autoDetectResource\n * @param {string|*} source - Resource source, this can be the URL to the resource,\n * a typed-array (for BufferResource), HTMLVideoElement, SVG data-uri\n * or any other resource that can be auto-detected. If not resource is\n * detected, it's assumed to be an ImageResource.\n * @param {object} [options] - Pass-through options to use for Resource\n * @param {number} [options.width] - Width of BufferResource or SVG rasterization\n * @param {number} [options.height] - Height of BufferResource or SVG rasterization\n * @param {boolean} [options.autoLoad=true] - Image, SVG and Video flag to start loading\n * @param {number} [options.scale=1] - SVG source scale. Overridden by width, height\n * @param {boolean} [options.createBitmap=PIXI.settings.CREATE_IMAGE_BITMAP] - Image option to create Bitmap object\n * @param {boolean} [options.crossorigin=true] - Image and Video option to set crossOrigin\n * @param {boolean} [options.autoPlay=true] - Video option to start playing video immediately\n * @param {number} [options.updateFPS=0] - Video option to update how many times a second the\n * texture should be updated from the video. Leave at 0 to update at every render\n * @return {PIXI.resources.Resource} The created resource.\n */\nfunction autoDetectResource(source, options)\n{\n if (!source)\n {\n return null;\n }\n\n var extension = '';\n\n if (typeof source === 'string')\n {\n // search for file extension: period, 3-4 chars, then ?, # or EOL\n var result = (/\\.(\\w{3,4})(?:$|\\?|#)/i).exec(source);\n\n if (result)\n {\n extension = result[1].toLowerCase();\n }\n }\n\n for (var i = INSTALLED.length - 1; i >= 0; --i)\n {\n var ResourcePlugin = INSTALLED[i];\n\n if (ResourcePlugin.test && ResourcePlugin.test(source, extension))\n {\n return new ResourcePlugin(source, options);\n }\n }\n\n // When in doubt: probably an image\n // might be appropriate to throw an error or return null\n return new ImageResource(source, options);\n}\n\n/**\n * @interface SharedArrayBuffer\n */\n\n/**\n * Buffer resource with data of typed array.\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n */\nvar BufferResource = /*@__PURE__*/(function (Resource) {\n function BufferResource(source, options)\n {\n var ref = options || {};\n var width = ref.width;\n var height = ref.height;\n\n if (!width || !height)\n {\n throw new Error('BufferResource width or height invalid');\n }\n\n Resource.call(this, width, height);\n\n /**\n * Source array\n * Cannot be ClampedUint8Array because it cant be uploaded to WebGL\n *\n * @member {Float32Array|Uint8Array|Uint32Array}\n */\n this.data = source;\n }\n\n if ( Resource ) BufferResource.__proto__ = Resource;\n BufferResource.prototype = Object.create( Resource && Resource.prototype );\n BufferResource.prototype.constructor = BufferResource;\n\n /**\n * Upload the texture to the GPU.\n * @param {PIXI.Renderer} renderer Upload to the renderer\n * @param {PIXI.BaseTexture} baseTexture Reference to parent texture\n * @param {PIXI.GLTexture} glTexture glTexture\n * @returns {boolean} true is success\n */\n BufferResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var gl = renderer.gl;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height)\n {\n gl.texSubImage2D(\n baseTexture.target,\n 0,\n 0,\n 0,\n baseTexture.width,\n baseTexture.height,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n else\n {\n glTexture.width = baseTexture.width;\n glTexture.height = baseTexture.height;\n\n gl.texImage2D(\n baseTexture.target,\n 0,\n glTexture.internalFormat,\n baseTexture.width,\n baseTexture.height,\n 0,\n baseTexture.format,\n glTexture.type,\n this.data\n );\n }\n\n return true;\n };\n\n /**\n * Destroy and don't use after this\n * @override\n */\n BufferResource.prototype.dispose = function dispose ()\n {\n this.data = null;\n };\n\n /**\n * Used to auto-detect the type of resource.\n *\n * @static\n * @param {*} source - The source object\n * @return {boolean} `true` if \n */\n BufferResource.test = function test (source)\n {\n return source instanceof Float32Array\n || source instanceof Uint8Array\n || source instanceof Uint32Array;\n };\n\n return BufferResource;\n}(Resource));\n\nvar defaultBufferOptions = {\n scaleMode: SCALE_MODES.NEAREST,\n format: FORMATS.RGBA,\n premultiplyAlpha: false,\n};\n\n/**\n * A Texture stores the information that represents an image.\n * All textures have a base texture, which contains information about the source.\n * Therefore you can have many textures all using a single BaseTexture\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n * @param {PIXI.resources.Resource|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} [resource=null]\n * The current resource to use, for things that aren't Resource objects, will be converted\n * into a Resource.\n * @param {Object} [options] - Collection of options\n * @param {PIXI.MIPMAP_MODES} [options.mipmap=PIXI.settings.MIPMAP_TEXTURES] - If mipmapping is enabled for texture\n * @param {number} [options.anisotropicLevel=PIXI.settings.ANISOTROPIC_LEVEL] - Anisotropic filtering level of texture\n * @param {PIXI.WRAP_MODES} [options.wrapMode=PIXI.settings.WRAP_MODE] - Wrap mode for textures\n * @param {PIXI.SCALE_MODES} [options.scaleMode=PIXI.settings.SCALE_MODE] - Default scale mode, linear, nearest\n * @param {PIXI.FORMATS} [options.format=PIXI.FORMATS.RGBA] - GL format type\n * @param {PIXI.TYPES} [options.type=PIXI.TYPES.UNSIGNED_BYTE] - GL data type\n * @param {PIXI.TARGETS} [options.target=PIXI.TARGETS.TEXTURE_2D] - GL texture target\n * @param {boolean} [options.premultiplyAlpha=true] - Pre multiply the image alpha\n * @param {number} [options.width=0] - Width of the texture\n * @param {number} [options.height=0] - Height of the texture\n * @param {number} [options.resolution] - Resolution of the base texture\n * @param {object} [options.resourceOptions] - Optional resource options,\n * see {@link PIXI.resources.autoDetectResource autoDetectResource}\n */\nvar BaseTexture = /*@__PURE__*/(function (EventEmitter) {\n function BaseTexture(resource, options)\n {\n if ( resource === void 0 ) resource = null;\n if ( options === void 0 ) options = null;\n\n EventEmitter.call(this);\n\n options = options || {};\n\n var premultiplyAlpha = options.premultiplyAlpha;\n var mipmap = options.mipmap;\n var anisotropicLevel = options.anisotropicLevel;\n var scaleMode = options.scaleMode;\n var width = options.width;\n var height = options.height;\n var wrapMode = options.wrapMode;\n var format = options.format;\n var type = options.type;\n var target = options.target;\n var resolution = options.resolution;\n var resourceOptions = options.resourceOptions;\n\n // Convert the resource to a Resource object\n if (resource && !(resource instanceof Resource))\n {\n resource = autoDetectResource(resource, resourceOptions);\n resource.internal = true;\n }\n\n /**\n * The width of the base texture set when the image has loaded\n *\n * @readonly\n * @member {number}\n */\n this.width = width || 0;\n\n /**\n * The height of the base texture set when the image has loaded\n *\n * @readonly\n * @member {number}\n */\n this.height = height || 0;\n\n /**\n * The resolution / device pixel ratio of the texture\n *\n * @member {number}\n * @default PIXI.settings.RESOLUTION\n */\n this.resolution = resolution || settings.RESOLUTION;\n\n /**\n * Mipmap mode of the texture, affects downscaled images\n *\n * @member {PIXI.MIPMAP_MODES}\n * @default PIXI.settings.MIPMAP_TEXTURES\n */\n this.mipmap = mipmap !== undefined ? mipmap : settings.MIPMAP_TEXTURES;\n\n /**\n * Anisotropic filtering level of texture\n *\n * @member {number}\n * @default PIXI.settings.ANISOTROPIC_LEVEL\n */\n this.anisotropicLevel = anisotropicLevel !== undefined ? anisotropicLevel : settings.ANISOTROPIC_LEVEL;\n\n /**\n * How the texture wraps\n * @member {number}\n */\n this.wrapMode = wrapMode || settings.WRAP_MODE;\n\n /**\n * The scale mode to apply when scaling this texture\n *\n * @member {PIXI.SCALE_MODES}\n * @default PIXI.settings.SCALE_MODE\n */\n this.scaleMode = scaleMode !== undefined ? scaleMode : settings.SCALE_MODE;\n\n /**\n * The pixel format of the texture\n *\n * @member {PIXI.FORMATS}\n * @default PIXI.FORMATS.RGBA\n */\n this.format = format || FORMATS.RGBA;\n\n /**\n * The type of resource data\n *\n * @member {PIXI.TYPES}\n * @default PIXI.TYPES.UNSIGNED_BYTE\n */\n this.type = type || TYPES.UNSIGNED_BYTE;\n\n /**\n * The target type\n *\n * @member {PIXI.TARGETS}\n * @default PIXI.TARGETS.TEXTURE_2D\n */\n this.target = target || TARGETS.TEXTURE_2D;\n\n /**\n * Set to true to enable pre-multiplied alpha\n *\n * @member {boolean}\n * @default true\n */\n this.premultiplyAlpha = premultiplyAlpha !== false;\n\n /**\n * Global unique identifier for this BaseTexture\n *\n * @member {string}\n * @protected\n */\n this.uid = uid();\n\n /**\n * Used by automatic texture Garbage Collection, stores last GC tick when it was bound\n *\n * @member {number}\n * @protected\n */\n this.touched = 0;\n\n /**\n * Whether or not the texture is a power of two, try to use power of two textures as much\n * as you can\n *\n * @readonly\n * @member {boolean}\n * @default false\n */\n this.isPowerOfTwo = false;\n this._refreshPOT();\n\n /**\n * The map of render context textures where this is bound\n *\n * @member {Object}\n * @private\n */\n this._glTextures = {};\n\n /**\n * Used by TextureSystem to only update texture to the GPU when needed.\n * Please call `update()` to increment it.\n *\n * @readonly\n * @member {number}\n */\n this.dirtyId = 0;\n\n /**\n * Used by TextureSystem to only update texture style when needed.\n *\n * @protected\n * @member {number}\n */\n this.dirtyStyleId = 0;\n\n /**\n * Currently default cache ID.\n *\n * @member {string}\n */\n this.cacheId = null;\n\n /**\n * Generally speaking means when resource is loaded.\n * @readonly\n * @member {boolean}\n */\n this.valid = width > 0 && height > 0;\n\n /**\n * The collection of alternative cache ids, since some BaseTextures\n * can have more than one ID, short name and longer full URL\n *\n * @member {Array}\n * @readonly\n */\n this.textureCacheIds = [];\n\n /**\n * Flag if BaseTexture has been destroyed.\n *\n * @member {boolean}\n * @readonly\n */\n this.destroyed = false;\n\n /**\n * The resource used by this BaseTexture, there can only\n * be one resource per BaseTexture, but textures can share\n * resources.\n *\n * @member {PIXI.resources.Resource}\n * @readonly\n */\n this.resource = null;\n\n /**\n * Number of the texture batch, used by multi-texture renderers\n *\n * @member {number}\n */\n this._batchEnabled = 0;\n\n /**\n * Fired when a not-immediately-available source finishes loading.\n *\n * @protected\n * @event PIXI.BaseTexture#loaded\n * @param {PIXI.BaseTexture} baseTexture - Resource loaded.\n */\n\n /**\n * Fired when a not-immediately-available source fails to load.\n *\n * @protected\n * @event PIXI.BaseTexture#error\n * @param {PIXI.BaseTexture} baseTexture - Resource errored.\n * @param {ErrorEvent} event - Load error event.\n */\n\n /**\n * Fired when BaseTexture is updated.\n *\n * @protected\n * @event PIXI.BaseTexture#loaded\n * @param {PIXI.BaseTexture} baseTexture - Resource loaded.\n */\n\n /**\n * Fired when BaseTexture is updated.\n *\n * @protected\n * @event PIXI.BaseTexture#update\n * @param {PIXI.BaseTexture} baseTexture - Instance of texture being updated.\n */\n\n /**\n * Fired when BaseTexture is destroyed.\n *\n * @protected\n * @event PIXI.BaseTexture#dispose\n * @param {PIXI.BaseTexture} baseTexture - Instance of texture being destroyed.\n */\n\n // Set the resource\n this.setResource(resource);\n }\n\n if ( EventEmitter ) BaseTexture.__proto__ = EventEmitter;\n BaseTexture.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n BaseTexture.prototype.constructor = BaseTexture;\n\n var prototypeAccessors = { realWidth: { configurable: true },realHeight: { configurable: true } };\n\n /**\n * Pixel width of the source of this texture\n *\n * @readonly\n * @member {number}\n */\n prototypeAccessors.realWidth.get = function ()\n {\n return Math.ceil((this.width * this.resolution) - 1e-4);\n };\n\n /**\n * Pixel height of the source of this texture\n *\n * @readonly\n * @member {number}\n */\n prototypeAccessors.realHeight.get = function ()\n {\n return Math.ceil((this.height * this.resolution) - 1e-4);\n };\n\n /**\n * Changes style options of BaseTexture\n *\n * @param {PIXI.SCALE_MODES} [scaleMode] - Pixi scalemode\n * @param {PIXI.MIPMAP_MODES} [mipmap] - enable mipmaps\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setStyle = function setStyle (scaleMode, mipmap)\n {\n var dirty;\n\n if (scaleMode !== undefined && scaleMode !== this.scaleMode)\n {\n this.scaleMode = scaleMode;\n dirty = true;\n }\n\n if (mipmap !== undefined && mipmap !== this.mipmap)\n {\n this.mipmap = mipmap;\n dirty = true;\n }\n\n if (dirty)\n {\n this.dirtyStyleId++;\n }\n\n return this;\n };\n\n /**\n * Changes w/h/resolution. Texture becomes valid if width and height are greater than zero.\n *\n * @param {number} width Visual width\n * @param {number} height Visual height\n * @param {number} [resolution] Optionally set resolution\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setSize = function setSize (width, height, resolution)\n {\n this.resolution = resolution || this.resolution;\n this.width = width;\n this.height = height;\n this._refreshPOT();\n this.update();\n\n return this;\n };\n\n /**\n * Sets real size of baseTexture, preserves current resolution.\n *\n * @param {number} realWidth Full rendered width\n * @param {number} realHeight Full rendered height\n * @param {number} [resolution] Optionally set resolution\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setRealSize = function setRealSize (realWidth, realHeight, resolution)\n {\n this.resolution = resolution || this.resolution;\n this.width = realWidth / this.resolution;\n this.height = realHeight / this.resolution;\n this._refreshPOT();\n this.update();\n\n return this;\n };\n\n /**\n * Refresh check for isPowerOfTwo texture based on size\n *\n * @private\n */\n BaseTexture.prototype._refreshPOT = function _refreshPOT ()\n {\n this.isPowerOfTwo = isPow2(this.realWidth) && isPow2(this.realHeight);\n };\n\n /**\n * Changes resolution\n *\n * @param {number} [resolution] res\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setResolution = function setResolution (resolution)\n {\n var oldResolution = this.resolution;\n\n if (oldResolution === resolution)\n {\n return this;\n }\n\n this.resolution = resolution;\n\n if (this.valid)\n {\n this.width = this.width * oldResolution / resolution;\n this.height = this.height * oldResolution / resolution;\n this.emit('update', this);\n }\n\n this._refreshPOT();\n\n return this;\n };\n\n /**\n * Sets the resource if it wasn't set. Throws error if resource already present\n *\n * @param {PIXI.resources.Resource} resource - that is managing this BaseTexture\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setResource = function setResource (resource)\n {\n if (this.resource === resource)\n {\n return this;\n }\n\n if (this.resource)\n {\n throw new Error('Resource can be set only once');\n }\n\n resource.bind(this);\n\n this.resource = resource;\n\n return this;\n };\n\n /**\n * Invalidates the object. Texture becomes valid if width and height are greater than zero.\n */\n BaseTexture.prototype.update = function update ()\n {\n if (!this.valid)\n {\n if (this.width > 0 && this.height > 0)\n {\n this.valid = true;\n this.emit('loaded', this);\n this.emit('update', this);\n }\n }\n else\n {\n this.dirtyId++;\n this.dirtyStyleId++;\n this.emit('update', this);\n }\n };\n\n /**\n * Handle errors with resources.\n * @private\n * @param {ErrorEvent} event - Error event emitted.\n */\n BaseTexture.prototype.onError = function onError (event)\n {\n this.emit('error', this, event);\n };\n\n /**\n * Destroys this base texture.\n * The method stops if resource doesn't want this texture to be destroyed.\n * Removes texture from all caches.\n */\n BaseTexture.prototype.destroy = function destroy ()\n {\n // remove and destroy the resource\n if (this.resource)\n {\n this.resource.unbind(this);\n // only destroy resourced created internally\n if (this.resource.internal)\n {\n this.resource.destroy();\n }\n this.resource = null;\n }\n\n if (this.cacheId)\n {\n delete BaseTextureCache[this.cacheId];\n delete TextureCache[this.cacheId];\n\n this.cacheId = null;\n }\n\n // finally let the WebGL renderer know..\n this.dispose();\n\n BaseTexture.removeFromCache(this);\n this.textureCacheIds = null;\n\n this.destroyed = true;\n };\n\n /**\n * Frees the texture from WebGL memory without destroying this texture object.\n * This means you can still use the texture later which will upload it to GPU\n * memory again.\n *\n * @fires PIXI.BaseTexture#dispose\n */\n BaseTexture.prototype.dispose = function dispose ()\n {\n this.emit('dispose', this);\n };\n\n /**\n * Helper function that creates a base texture based on the source you provide.\n * The source can be - image url, image element, canvas element. If the\n * source is an image url or an image element and not in the base texture\n * cache, it will be created and loaded.\n *\n * @static\n * @param {string|HTMLImageElement|HTMLCanvasElement|SVGElement|HTMLVideoElement} source - The\n * source to create base texture from.\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @returns {PIXI.BaseTexture} The new base texture.\n */\n BaseTexture.from = function from (source, options)\n {\n var cacheId = null;\n\n if (typeof source === 'string')\n {\n cacheId = source;\n }\n else\n {\n if (!source._pixiId)\n {\n source._pixiId = \"pixiid_\" + (uid());\n }\n\n cacheId = source._pixiId;\n }\n\n var baseTexture = BaseTextureCache[cacheId];\n\n if (!baseTexture)\n {\n baseTexture = new BaseTexture(source, options);\n baseTexture.cacheId = cacheId;\n BaseTexture.addToCache(baseTexture, cacheId);\n }\n\n return baseTexture;\n };\n\n /**\n * Create a new BaseTexture with a BufferResource from a Float32Array.\n * RGBA values are floats from 0 to 1.\n * @static\n * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data\n * is provided, a new Float32Array is created.\n * @param {number} width - Width of the resource\n * @param {number} height - Height of the resource\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.BaseTexture} The resulting new BaseTexture\n */\n BaseTexture.fromBuffer = function fromBuffer (buffer, width, height, options)\n {\n buffer = buffer || new Float32Array(width * height * 4);\n\n var resource = new BufferResource(buffer, { width: width, height: height });\n var type = buffer instanceof Float32Array ? TYPES.FLOAT : TYPES.UNSIGNED_BYTE;\n\n return new BaseTexture(resource, Object.assign(defaultBufferOptions, options || { width: width, height: height, type: type }));\n };\n\n /**\n * Adds a BaseTexture to the global BaseTextureCache. This cache is shared across the whole PIXI object.\n *\n * @static\n * @param {PIXI.BaseTexture} baseTexture - The BaseTexture to add to the cache.\n * @param {string} id - The id that the BaseTexture will be stored against.\n */\n BaseTexture.addToCache = function addToCache (baseTexture, id)\n {\n if (id)\n {\n if (baseTexture.textureCacheIds.indexOf(id) === -1)\n {\n baseTexture.textureCacheIds.push(id);\n }\n\n if (BaseTextureCache[id])\n {\n // eslint-disable-next-line no-console\n console.warn((\"BaseTexture added to the cache with an id [\" + id + \"] that already had an entry\"));\n }\n\n BaseTextureCache[id] = baseTexture;\n }\n };\n\n /**\n * Remove a BaseTexture from the global BaseTextureCache.\n *\n * @static\n * @param {string|PIXI.BaseTexture} baseTexture - id of a BaseTexture to be removed, or a BaseTexture instance itself.\n * @return {PIXI.BaseTexture|null} The BaseTexture that was removed.\n */\n BaseTexture.removeFromCache = function removeFromCache (baseTexture)\n {\n if (typeof baseTexture === 'string')\n {\n var baseTextureFromCache = BaseTextureCache[baseTexture];\n\n if (baseTextureFromCache)\n {\n var index = baseTextureFromCache.textureCacheIds.indexOf(baseTexture);\n\n if (index > -1)\n {\n baseTextureFromCache.textureCacheIds.splice(index, 1);\n }\n\n delete BaseTextureCache[baseTexture];\n\n return baseTextureFromCache;\n }\n }\n else if (baseTexture && baseTexture.textureCacheIds)\n {\n for (var i = 0; i < baseTexture.textureCacheIds.length; ++i)\n {\n delete BaseTextureCache[baseTexture.textureCacheIds[i]];\n }\n\n baseTexture.textureCacheIds.length = 0;\n\n return baseTexture;\n }\n\n return null;\n };\n\n Object.defineProperties( BaseTexture.prototype, prototypeAccessors );\n\n return BaseTexture;\n}(EventEmitter));\n\n/**\n * Global number of the texture batch, used by multi-texture renderers\n *\n * @static\n * @member {number}\n */\nBaseTexture._globalBatch = 0;\n\n/**\n * A resource that contains a number of sources.\n *\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n * @param {number|Array<*>} source - Number of items in array or the collection\n * of image URLs to use. Can also be resources, image elements, canvas, etc.\n * @param {object} [options] Options to apply to {@link PIXI.resources.autoDetectResource}\n * @param {number} [options.width] - Width of the resource\n * @param {number} [options.height] - Height of the resource\n */\nvar ArrayResource = /*@__PURE__*/(function (Resource) {\n function ArrayResource(source, options)\n {\n options = options || {};\n\n var urls;\n var length = source;\n\n if (Array.isArray(source))\n {\n urls = source;\n length = source.length;\n }\n\n Resource.call(this, options.width, options.height);\n\n /**\n * Collection of resources.\n * @member {Array}\n * @readonly\n */\n this.items = [];\n\n /**\n * Dirty IDs for each part\n * @member {Array}\n * @readonly\n */\n this.itemDirtyIds = [];\n\n for (var i = 0; i < length; i++)\n {\n var partTexture = new BaseTexture();\n\n this.items.push(partTexture);\n this.itemDirtyIds.push(-1);\n }\n\n /**\n * Number of elements in array\n *\n * @member {number}\n * @readonly\n */\n this.length = length;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (urls)\n {\n for (var i$1 = 0; i$1 < length; i$1++)\n {\n this.addResourceAt(autoDetectResource(urls[i$1], options), i$1);\n }\n }\n }\n\n if ( Resource ) ArrayResource.__proto__ = Resource;\n ArrayResource.prototype = Object.create( Resource && Resource.prototype );\n ArrayResource.prototype.constructor = ArrayResource;\n\n /**\n * Destroy this BaseImageResource\n * @override\n */\n ArrayResource.prototype.dispose = function dispose ()\n {\n for (var i = 0, len = this.length; i < len; i++)\n {\n this.items[i].destroy();\n }\n this.items = null;\n this.itemDirtyIds = null;\n this._load = null;\n };\n\n /**\n * Set a resource by ID\n *\n * @param {PIXI.resources.Resource} resource\n * @param {number} index - Zero-based index of resource to set\n * @return {PIXI.resources.ArrayResource} Instance for chaining\n */\n ArrayResource.prototype.addResourceAt = function addResourceAt (resource, index)\n {\n var baseTexture = this.items[index];\n\n if (!baseTexture)\n {\n throw new Error((\"Index \" + index + \" is out of bounds\"));\n }\n\n // Inherit the first resource dimensions\n if (resource.valid && !this.valid)\n {\n this.resize(resource.width, resource.height);\n }\n\n this.items[index].setResource(resource);\n\n return this;\n };\n\n /**\n * Set the parent base texture\n * @member {PIXI.BaseTexture}\n * @override\n */\n ArrayResource.prototype.bind = function bind (baseTexture)\n {\n Resource.prototype.bind.call(this, baseTexture);\n\n baseTexture.target = TARGETS.TEXTURE_2D_ARRAY;\n\n for (var i = 0; i < this.length; i++)\n {\n this.items[i].on('update', baseTexture.update, baseTexture);\n }\n };\n\n /**\n * Unset the parent base texture\n * @member {PIXI.BaseTexture}\n * @override\n */\n ArrayResource.prototype.unbind = function unbind (baseTexture)\n {\n Resource.prototype.unbind.call(this, baseTexture);\n\n for (var i = 0; i < this.length; i++)\n {\n this.items[i].off('update', baseTexture.update, baseTexture);\n }\n };\n\n /**\n * Load all the resources simultaneously\n * @override\n * @return {Promise} When load is resolved\n */\n ArrayResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n var resources = this.items.map(function (item) { return item.resource; });\n\n // TODO: also implement load part-by-part strategy\n var promises = resources.map(function (item) { return item.load(); });\n\n this._load = Promise.all(promises)\n .then(function () {\n var ref = resources[0];\n var width = ref.width;\n var height = ref.height;\n\n this$1.resize(width, height);\n\n return Promise.resolve(this$1);\n }\n );\n\n return this._load;\n };\n\n /**\n * Upload the resources to the GPU.\n * @param {PIXI.Renderer} renderer\n * @param {PIXI.BaseTexture} texture\n * @param {PIXI.GLTexture} glTexture\n * @returns {boolean} whether texture was uploaded\n */\n ArrayResource.prototype.upload = function upload (renderer, texture, glTexture)\n {\n var ref = this;\n var length = ref.length;\n var itemDirtyIds = ref.itemDirtyIds;\n var items = ref.items;\n var gl = renderer.gl;\n\n if (glTexture.dirtyId < 0)\n {\n gl.texImage3D(\n gl.TEXTURE_2D_ARRAY,\n 0,\n texture.format,\n this._width,\n this._height,\n length,\n 0,\n texture.format,\n texture.type,\n null\n );\n }\n\n for (var i = 0; i < length; i++)\n {\n var item = items[i];\n\n if (itemDirtyIds[i] < item.dirtyId)\n {\n itemDirtyIds[i] = item.dirtyId;\n if (item.valid)\n {\n gl.texSubImage3D(\n gl.TEXTURE_2D_ARRAY,\n 0,\n 0, // xoffset\n 0, // yoffset\n i, // zoffset\n item.resource.width,\n item.resource.height,\n 1,\n texture.format,\n texture.type,\n item.resource.source\n );\n }\n }\n }\n\n return true;\n };\n\n return ArrayResource;\n}(Resource));\n\n/**\n * @interface OffscreenCanvas\n */\n\n/**\n * Resource type for HTMLCanvasElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {HTMLCanvasElement} source - Canvas element to use\n */\nvar CanvasResource = /*@__PURE__*/(function (BaseImageResource) {\n function CanvasResource () {\n BaseImageResource.apply(this, arguments);\n }\n\n if ( BaseImageResource ) CanvasResource.__proto__ = BaseImageResource;\n CanvasResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n CanvasResource.prototype.constructor = CanvasResource;\n\n CanvasResource.test = function test (source)\n {\n var OffscreenCanvas = window.OffscreenCanvas;\n\n // Check for browsers that don't yet support OffscreenCanvas\n if (OffscreenCanvas && source instanceof OffscreenCanvas)\n {\n return true;\n }\n\n return source instanceof HTMLCanvasElement;\n };\n\n return CanvasResource;\n}(BaseImageResource));\n\n/**\n * Resource for a CubeTexture which contains six resources.\n *\n * @class\n * @extends PIXI.resources.ArrayResource\n * @memberof PIXI.resources\n * @param {Array} [source] Collection of URLs or resources\n * to use as the sides of the cube.\n * @param {object} [options] - ImageResource options\n * @param {number} [options.width] - Width of resource\n * @param {number} [options.height] - Height of resource\n */\nvar CubeResource = /*@__PURE__*/(function (ArrayResource) {\n function CubeResource(source, options)\n {\n options = options || {};\n\n ArrayResource.call(this, source, options);\n\n if (this.length !== CubeResource.SIDES)\n {\n throw new Error((\"Invalid length. Got \" + (this.length) + \", expected 6\"));\n }\n\n for (var i = 0; i < CubeResource.SIDES; i++)\n {\n this.items[i].target = TARGETS.TEXTURE_CUBE_MAP_POSITIVE_X + i;\n }\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( ArrayResource ) CubeResource.__proto__ = ArrayResource;\n CubeResource.prototype = Object.create( ArrayResource && ArrayResource.prototype );\n CubeResource.prototype.constructor = CubeResource;\n\n /**\n * Add binding\n *\n * @override\n * @param {PIXI.BaseTexture} baseTexture - parent base texture\n */\n CubeResource.prototype.bind = function bind (baseTexture)\n {\n ArrayResource.prototype.bind.call(this, baseTexture);\n\n baseTexture.target = TARGETS.TEXTURE_CUBE_MAP;\n };\n\n /**\n * Upload the resource\n *\n * @returns {boolean} true is success\n */\n CubeResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var dirty = this.itemDirtyIds;\n\n for (var i = 0; i < CubeResource.SIDES; i++)\n {\n var side = this.items[i];\n\n if (dirty[i] < side.dirtyId)\n {\n dirty[i] = side.dirtyId;\n if (side.valid)\n {\n side.resource.upload(renderer, side, glTexture);\n }\n }\n }\n\n return true;\n };\n\n return CubeResource;\n}(ArrayResource));\n\n/**\n * Number of texture sides to store for CubeResources\n *\n * @name PIXI.resources.CubeResource.SIDES\n * @static\n * @member {number}\n * @default 6\n */\nCubeResource.SIDES = 6;\n\n/**\n * Resource type for SVG elements and graphics.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {string} source - Base64 encoded SVG element or URL for SVG file.\n * @param {object} [options] - Options to use\n * @param {number} [options.scale=1] Scale to apply to SVG. Overridden by...\n * @param {number} [options.width] Rasterize SVG this wide. Aspect ratio preserved if height not specified.\n * @param {number} [options.height] Rasterize SVG this high. Aspect ratio preserved if width not specified.\n * @param {boolean} [options.autoLoad=true] Start loading right away.\n */\nvar SVGResource = /*@__PURE__*/(function (BaseImageResource) {\n function SVGResource(source, options)\n {\n options = options || {};\n\n BaseImageResource.call(this, document.createElement('canvas'));\n this._width = 0;\n this._height = 0;\n\n /**\n * Base64 encoded SVG element or URL for SVG file\n * @readonly\n * @member {string}\n */\n this.svg = source;\n\n /**\n * The source scale to apply when rasterizing on load\n * @readonly\n * @member {number}\n */\n this.scale = options.scale || 1;\n\n /**\n * A width override for rasterization on load\n * @readonly\n * @member {number}\n */\n this._overrideWidth = options.width;\n\n /**\n * A height override for rasterization on load\n * @readonly\n * @member {number}\n */\n this._overrideHeight = options.height;\n\n /**\n * Call when completely loaded\n * @private\n * @member {function}\n */\n this._resolve = null;\n\n /**\n * Cross origin value to use\n * @private\n * @member {boolean|string}\n */\n this._crossorigin = options.crossorigin;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) SVGResource.__proto__ = BaseImageResource;\n SVGResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n SVGResource.prototype.constructor = SVGResource;\n\n SVGResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n this._load = new Promise(function (resolve) {\n // Save this until after load is finished\n this$1._resolve = function () {\n this$1.resize(this$1.source.width, this$1.source.height);\n resolve(this$1);\n };\n\n // Convert SVG inline string to data-uri\n if ((/^\\]*(?:\\s(width|height)=('|\")(\\d*(?:\\.\\d+)?)(?:px)?('|\"))[^>]*(?:\\s(width|height)=('|\")(\\d*(?:\\.\\d+)?)(?:px)?('|\"))[^>]*>/i; // eslint-disable-line max-len\n\n/**\n * Resource type for HTMLVideoElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {HTMLVideoElement|object|string|Array} source - Video element to use.\n * @param {object} [options] - Options to use\n * @param {boolean} [options.autoLoad=true] - Start loading the video immediately\n * @param {boolean} [options.autoPlay=true] - Start playing video immediately\n * @param {number} [options.updateFPS=0] - How many times a second to update the texture from the video.\n * Leave at 0 to update at every render.\n * @param {boolean} [options.crossorigin=true] - Load image using cross origin\n */\nvar VideoResource = /*@__PURE__*/(function (BaseImageResource) {\n function VideoResource(source, options)\n {\n options = options || {};\n\n if (!(source instanceof HTMLVideoElement))\n {\n var videoElement = document.createElement('video');\n\n // workaround for https://github.com/pixijs/pixi.js/issues/5996\n videoElement.setAttribute('preload', 'auto');\n videoElement.setAttribute('webkit-playsinline', '');\n videoElement.setAttribute('playsinline', '');\n\n if (typeof source === 'string')\n {\n source = [source];\n }\n\n BaseImageResource.crossOrigin(videoElement, (source[0].src || source[0]), options.crossorigin);\n\n // array of objects or strings\n for (var i = 0; i < source.length; ++i)\n {\n var sourceElement = document.createElement('source');\n\n var ref = source[i];\n var src = ref.src;\n var mime = ref.mime;\n\n src = src || source[i];\n\n var baseSrc = src.split('?').shift().toLowerCase();\n var ext = baseSrc.substr(baseSrc.lastIndexOf('.') + 1);\n\n mime = mime || (\"video/\" + ext);\n\n sourceElement.src = src;\n sourceElement.type = mime;\n\n videoElement.appendChild(sourceElement);\n }\n\n // Override the source\n source = videoElement;\n }\n\n BaseImageResource.call(this, source);\n\n this.noSubImage = true;\n this._autoUpdate = true;\n this._isAutoUpdating = false;\n this._updateFPS = options.updateFPS || 0;\n this._msToNextUpdate = 0;\n\n /**\n * When set to true will automatically play videos used by this texture once\n * they are loaded. If false, it will not modify the playing state.\n *\n * @member {boolean}\n * @default true\n */\n this.autoPlay = options.autoPlay !== false;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n /**\n * Callback when completed with load.\n * @member {function}\n * @private\n */\n this._resolve = null;\n\n // Bind for listeners\n this._onCanPlay = this._onCanPlay.bind(this);\n this._onError = this._onError.bind(this);\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) VideoResource.__proto__ = BaseImageResource;\n VideoResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n VideoResource.prototype.constructor = VideoResource;\n\n var prototypeAccessors = { autoUpdate: { configurable: true },updateFPS: { configurable: true } };\n\n /**\n * Trigger updating of the texture\n *\n * @param {number} [deltaTime=0] - time delta since last tick\n */\n VideoResource.prototype.update = function update (deltaTime)\n {\n if ( deltaTime === void 0 ) deltaTime = 0;\n\n if (!this.destroyed)\n {\n // account for if video has had its playbackRate changed\n var elapsedMS = Ticker.shared.elapsedMS * this.source.playbackRate;\n\n this._msToNextUpdate = Math.floor(this._msToNextUpdate - elapsedMS);\n if (!this._updateFPS || this._msToNextUpdate <= 0)\n {\n BaseImageResource.prototype.update.call(this, deltaTime);\n this._msToNextUpdate = this._updateFPS ? Math.floor(1000 / this._updateFPS) : 0;\n }\n }\n };\n\n /**\n * Start preloading the video resource.\n *\n * @protected\n * @return {Promise} Handle the validate event\n */\n VideoResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n var source = this.source;\n\n if ((source.readyState === source.HAVE_ENOUGH_DATA || source.readyState === source.HAVE_FUTURE_DATA)\n && source.width && source.height)\n {\n source.complete = true;\n }\n\n source.addEventListener('play', this._onPlayStart.bind(this));\n source.addEventListener('pause', this._onPlayStop.bind(this));\n\n if (!this._isSourceReady())\n {\n source.addEventListener('canplay', this._onCanPlay);\n source.addEventListener('canplaythrough', this._onCanPlay);\n source.addEventListener('error', this._onError, true);\n }\n else\n {\n this._onCanPlay();\n }\n\n this._load = new Promise(function (resolve) {\n if (this$1.valid)\n {\n resolve(this$1);\n }\n else\n {\n this$1._resolve = resolve;\n\n source.load();\n }\n });\n\n return this._load;\n };\n\n /**\n * Handle video error events.\n *\n * @private\n */\n VideoResource.prototype._onError = function _onError ()\n {\n this.source.removeEventListener('error', this._onError, true);\n this.onError.run(event);\n };\n\n /**\n * Returns true if the underlying source is playing.\n *\n * @private\n * @return {boolean} True if playing.\n */\n VideoResource.prototype._isSourcePlaying = function _isSourcePlaying ()\n {\n var source = this.source;\n\n return (source.currentTime > 0 && source.paused === false && source.ended === false && source.readyState > 2);\n };\n\n /**\n * Returns true if the underlying source is ready for playing.\n *\n * @private\n * @return {boolean} True if ready.\n */\n VideoResource.prototype._isSourceReady = function _isSourceReady ()\n {\n return this.source.readyState === 3 || this.source.readyState === 4;\n };\n\n /**\n * Runs the update loop when the video is ready to play\n *\n * @private\n */\n VideoResource.prototype._onPlayStart = function _onPlayStart ()\n {\n // Just in case the video has not received its can play even yet..\n if (!this.valid)\n {\n this._onCanPlay();\n }\n\n if (!this._isAutoUpdating && this.autoUpdate)\n {\n Ticker.shared.add(this.update, this);\n this._isAutoUpdating = true;\n }\n };\n\n /**\n * Fired when a pause event is triggered, stops the update loop\n *\n * @private\n */\n VideoResource.prototype._onPlayStop = function _onPlayStop ()\n {\n if (this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n this._isAutoUpdating = false;\n }\n };\n\n /**\n * Fired when the video is loaded and ready to play\n *\n * @private\n */\n VideoResource.prototype._onCanPlay = function _onCanPlay ()\n {\n var ref = this;\n var source = ref.source;\n\n source.removeEventListener('canplay', this._onCanPlay);\n source.removeEventListener('canplaythrough', this._onCanPlay);\n\n var valid = this.valid;\n\n this.resize(source.videoWidth, source.videoHeight);\n\n // prevent multiple loaded dispatches..\n if (!valid && this._resolve)\n {\n this._resolve(this);\n this._resolve = null;\n }\n\n if (this._isSourcePlaying())\n {\n this._onPlayStart();\n }\n else if (this.autoPlay)\n {\n source.play();\n }\n };\n\n /**\n * Destroys this texture\n * @override\n */\n VideoResource.prototype.dispose = function dispose ()\n {\n if (this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n }\n\n if (this.source)\n {\n this.source.removeEventListener('error', this._onError, true);\n this.source.pause();\n this.source.src = '';\n this.source.load();\n }\n BaseImageResource.prototype.dispose.call(this);\n };\n\n /**\n * Should the base texture automatically update itself, set to true by default\n *\n * @member {boolean}\n */\n prototypeAccessors.autoUpdate.get = function ()\n {\n return this._autoUpdate;\n };\n\n prototypeAccessors.autoUpdate.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (value !== this._autoUpdate)\n {\n this._autoUpdate = value;\n\n if (!this._autoUpdate && this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n this._isAutoUpdating = false;\n }\n else if (this._autoUpdate && !this._isAutoUpdating)\n {\n Ticker.shared.add(this.update, this);\n this._isAutoUpdating = true;\n }\n }\n };\n\n /**\n * How many times a second to update the texture from the video. Leave at 0 to update at every render.\n * A lower fps can help performance, as updating the texture at 60fps on a 30ps video may not be efficient.\n *\n * @member {number}\n */\n prototypeAccessors.updateFPS.get = function ()\n {\n return this._updateFPS;\n };\n\n prototypeAccessors.updateFPS.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (value !== this._updateFPS)\n {\n this._updateFPS = value;\n }\n };\n\n /**\n * Used to auto-detect the type of resource.\n *\n * @static\n * @param {*} source - The source object\n * @param {string} extension - The extension of source, if set\n * @return {boolean} `true` if video source\n */\n VideoResource.test = function test (source, extension)\n {\n return (source instanceof HTMLVideoElement)\n || VideoResource.TYPES.indexOf(extension) > -1;\n };\n\n Object.defineProperties( VideoResource.prototype, prototypeAccessors );\n\n return VideoResource;\n}(BaseImageResource));\n\n/**\n * List of common video file extensions supported by VideoResource.\n * @constant\n * @member {Array}\n * @static\n * @readonly\n */\nVideoResource.TYPES = ['mp4', 'm4v', 'webm', 'ogg', 'ogv', 'h264', 'avi', 'mov'];\n\n/**\n * Resource type for ImageBitmap.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {ImageBitmap} source - Image element to use\n */\nvar ImageBitmapResource = /*@__PURE__*/(function (BaseImageResource) {\n function ImageBitmapResource () {\n BaseImageResource.apply(this, arguments);\n }\n\n if ( BaseImageResource ) ImageBitmapResource.__proto__ = BaseImageResource;\n ImageBitmapResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n ImageBitmapResource.prototype.constructor = ImageBitmapResource;\n\n ImageBitmapResource.test = function test (source)\n {\n return !!window.createImageBitmap && source instanceof ImageBitmap;\n };\n\n return ImageBitmapResource;\n}(BaseImageResource));\n\nINSTALLED.push(\n ImageResource,\n ImageBitmapResource,\n CanvasResource,\n VideoResource,\n SVGResource,\n BufferResource,\n CubeResource,\n ArrayResource\n);\n\nvar index = ({\n INSTALLED: INSTALLED,\n autoDetectResource: autoDetectResource,\n ArrayResource: ArrayResource,\n BufferResource: BufferResource,\n CanvasResource: CanvasResource,\n CubeResource: CubeResource,\n ImageResource: ImageResource,\n ImageBitmapResource: ImageBitmapResource,\n SVGResource: SVGResource,\n VideoResource: VideoResource,\n Resource: Resource,\n BaseImageResource: BaseImageResource\n});\n\n/**\n * System is a base class used for extending systems used by the {@link PIXI.Renderer}\n *\n * @see PIXI.Renderer#addSystem\n * @class\n * @memberof PIXI\n */\nvar System = function System(renderer)\n{\n /**\n * The renderer this manager works for.\n *\n * @member {PIXI.Renderer}\n */\n this.renderer = renderer;\n};\n\n/**\n * Generic destroy methods to be overridden by the subclass\n */\nSystem.prototype.destroy = function destroy ()\n{\n this.renderer = null;\n};\n\n/**\n * Resource type for DepthTexture.\n * @class\n * @extends PIXI.resources.BufferResource\n * @memberof PIXI.resources\n */\nvar DepthResource = /*@__PURE__*/(function (BufferResource) {\n function DepthResource () {\n BufferResource.apply(this, arguments);\n }\n\n if ( BufferResource ) DepthResource.__proto__ = BufferResource;\n DepthResource.prototype = Object.create( BufferResource && BufferResource.prototype );\n DepthResource.prototype.constructor = DepthResource;\n\n DepthResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var gl = renderer.gl;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height)\n {\n gl.texSubImage2D(\n baseTexture.target,\n 0,\n 0,\n 0,\n baseTexture.width,\n baseTexture.height,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n else\n {\n glTexture.width = baseTexture.width;\n glTexture.height = baseTexture.height;\n\n gl.texImage2D(\n baseTexture.target,\n 0,\n gl.DEPTH_COMPONENT16, // Needed for depth to render properly in webgl2.0\n baseTexture.width,\n baseTexture.height,\n 0,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n\n return true;\n };\n\n return DepthResource;\n}(BufferResource));\n\n/**\n * Frame buffer used by the BaseRenderTexture\n *\n * @class\n * @memberof PIXI\n */\nvar Framebuffer = function Framebuffer(width, height)\n{\n this.width = Math.ceil(width || 100);\n this.height = Math.ceil(height || 100);\n\n this.stencil = false;\n this.depth = false;\n\n this.dirtyId = 0;\n this.dirtyFormat = 0;\n this.dirtySize = 0;\n\n this.depthTexture = null;\n this.colorTextures = [];\n\n this.glFramebuffers = {};\n\n this.disposeRunner = new Runner('disposeFramebuffer', 2);\n};\n\nvar prototypeAccessors$1 = { colorTexture: { configurable: true } };\n\n/**\n * Reference to the colorTexture.\n *\n * @member {PIXI.Texture[]}\n * @readonly\n */\nprototypeAccessors$1.colorTexture.get = function ()\n{\n return this.colorTextures[0];\n};\n\n/**\n * Add texture to the colorTexture array\n *\n * @param {number} [index=0] - Index of the array to add the texture to\n * @param {PIXI.Texture} [texture] - Texture to add to the array\n */\nFramebuffer.prototype.addColorTexture = function addColorTexture (index, texture)\n{\n if ( index === void 0 ) index = 0;\n\n // TODO add some validation to the texture - same width / height etc?\n this.colorTextures[index] = texture || new BaseTexture(null, { scaleMode: 0,\n resolution: 1,\n mipmap: false,\n width: this.width,\n height: this.height });// || new Texture();\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Add a depth texture to the frame buffer\n *\n * @param {PIXI.Texture} [texture] - Texture to add\n */\nFramebuffer.prototype.addDepthTexture = function addDepthTexture (texture)\n{\n /* eslint-disable max-len */\n this.depthTexture = texture || new BaseTexture(new DepthResource(null, { width: this.width, height: this.height }), { scaleMode: 0,\n resolution: 1,\n width: this.width,\n height: this.height,\n mipmap: false,\n format: FORMATS.DEPTH_COMPONENT,\n type: TYPES.UNSIGNED_SHORT });// UNSIGNED_SHORT;\n /* eslint-disable max-len */\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Enable depth on the frame buffer\n */\nFramebuffer.prototype.enableDepth = function enableDepth ()\n{\n this.depth = true;\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Enable stencil on the frame buffer\n */\nFramebuffer.prototype.enableStencil = function enableStencil ()\n{\n this.stencil = true;\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Resize the frame buffer\n *\n * @param {number} width - Width of the frame buffer to resize to\n * @param {number} height - Height of the frame buffer to resize to\n */\nFramebuffer.prototype.resize = function resize (width, height)\n{\n width = Math.ceil(width);\n height = Math.ceil(height);\n\n if (width === this.width && height === this.height) { return; }\n\n this.width = width;\n this.height = height;\n\n this.dirtyId++;\n this.dirtySize++;\n\n for (var i = 0; i < this.colorTextures.length; i++)\n {\n var texture = this.colorTextures[i];\n var resolution = texture.resolution;\n\n // take into acount the fact the texture may have a different resolution..\n texture.setSize(width / resolution, height / resolution);\n }\n\n if (this.depthTexture)\n {\n var resolution$1 = this.depthTexture.resolution;\n\n this.depthTexture.setSize(width / resolution$1, height / resolution$1);\n }\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nFramebuffer.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\nObject.defineProperties( Framebuffer.prototype, prototypeAccessors$1 );\n\n/**\n * A BaseRenderTexture is a special texture that allows any PixiJS display object to be rendered to it.\n *\n * __Hint__: All DisplayObjects (i.e. Sprites) that render to a BaseRenderTexture should be preloaded\n * otherwise black rectangles will be drawn instead.\n *\n * A BaseRenderTexture takes a snapshot of any Display Object given to its render method. The position\n * and rotation of the given Display Objects is ignored. For example:\n *\n * ```js\n * let renderer = PIXI.autoDetectRenderer();\n * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 800, height: 600 });\n * let renderTexture = new PIXI.RenderTexture(baseRenderTexture);\n * let sprite = PIXI.Sprite.from(\"spinObj_01.png\");\n *\n * sprite.position.x = 800/2;\n * sprite.position.y = 600/2;\n * sprite.anchor.x = 0.5;\n * sprite.anchor.y = 0.5;\n *\n * renderer.render(sprite, renderTexture);\n * ```\n *\n * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0\n * you can clear the transform\n *\n * ```js\n *\n * sprite.setTransform()\n *\n * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 100, height: 100 });\n * let renderTexture = new PIXI.RenderTexture(baseRenderTexture);\n *\n * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture\n * ```\n *\n * @class\n * @extends PIXI.BaseTexture\n * @memberof PIXI\n */\nvar BaseRenderTexture = /*@__PURE__*/(function (BaseTexture) {\n function BaseRenderTexture(options)\n {\n if (typeof options === 'number')\n {\n /* eslint-disable prefer-rest-params */\n // Backward compatibility of signature\n var width$1 = arguments[0];\n var height$1 = arguments[1];\n var scaleMode = arguments[2];\n var resolution = arguments[3];\n\n options = { width: width$1, height: height$1, scaleMode: scaleMode, resolution: resolution };\n /* eslint-enable prefer-rest-params */\n }\n\n BaseTexture.call(this, null, options);\n\n var ref = options || {};\n var width = ref.width;\n var height = ref.height;\n\n // Set defaults\n this.mipmap = false;\n this.width = Math.ceil(width) || 100;\n this.height = Math.ceil(height) || 100;\n this.valid = true;\n\n /**\n * A reference to the canvas render target (we only need one as this can be shared across renderers)\n *\n * @protected\n * @member {object}\n */\n this._canvasRenderTarget = null;\n\n this.clearColor = [0, 0, 0, 0];\n\n this.framebuffer = new Framebuffer(this.width * this.resolution, this.height * this.resolution)\n .addColorTexture(0, this);\n\n // TODO - could this be added the systems?\n\n /**\n * The data structure for the stencil masks.\n *\n * @member {PIXI.Graphics[]}\n */\n this.stencilMaskStack = [];\n\n /**\n * The data structure for the filters.\n *\n * @member {PIXI.Graphics[]}\n */\n this.filterStack = [{}];\n }\n\n if ( BaseTexture ) BaseRenderTexture.__proto__ = BaseTexture;\n BaseRenderTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype );\n BaseRenderTexture.prototype.constructor = BaseRenderTexture;\n\n /**\n * Resizes the BaseRenderTexture.\n *\n * @param {number} width - The width to resize to.\n * @param {number} height - The height to resize to.\n */\n BaseRenderTexture.prototype.resize = function resize (width, height)\n {\n width = Math.ceil(width);\n height = Math.ceil(height);\n this.framebuffer.resize(width * this.resolution, height * this.resolution);\n };\n\n /**\n * Frees the texture and framebuffer from WebGL memory without destroying this texture object.\n * This means you can still use the texture later which will upload it to GPU\n * memory again.\n *\n * @fires PIXI.BaseTexture#dispose\n */\n BaseRenderTexture.prototype.dispose = function dispose ()\n {\n this.framebuffer.dispose();\n\n BaseTexture.prototype.dispose.call(this);\n };\n\n /**\n * Destroys this texture.\n *\n */\n BaseRenderTexture.prototype.destroy = function destroy ()\n {\n BaseTexture.prototype.destroy.call(this, true);\n\n this.framebuffer = null;\n };\n\n return BaseRenderTexture;\n}(BaseTexture));\n\n/**\n * Stores a texture's frame in UV coordinates, in\n * which everything lies in the rectangle `[(0,0), (1,0),\n * (1,1), (0,1)]`.\n *\n * | Corner | Coordinates |\n * |--------------|-------------|\n * | Top-Left | `(x0,y0)` |\n * | Top-Right | `(x1,y1)` |\n * | Bottom-Right | `(x2,y2)` |\n * | Bottom-Left | `(x3,y3)` |\n *\n * @class\n * @protected\n * @memberof PIXI\n */\nvar TextureUvs = function TextureUvs()\n{\n /**\n * X-component of top-left corner `(x0,y0)`.\n *\n * @member {number}\n */\n this.x0 = 0;\n\n /**\n * Y-component of top-left corner `(x0,y0)`.\n *\n * @member {number}\n */\n this.y0 = 0;\n\n /**\n * X-component of top-right corner `(x1,y1)`.\n *\n * @member {number}\n */\n this.x1 = 1;\n\n /**\n * Y-component of top-right corner `(x1,y1)`.\n *\n * @member {number}\n */\n this.y1 = 0;\n\n /**\n * X-component of bottom-right corner `(x2,y2)`.\n *\n * @member {number}\n */\n this.x2 = 1;\n\n /**\n * Y-component of bottom-right corner `(x2,y2)`.\n *\n * @member {number}\n */\n this.y2 = 1;\n\n /**\n * X-component of bottom-left corner `(x3,y3)`.\n *\n * @member {number}\n */\n this.x3 = 0;\n\n /**\n * Y-component of bottom-right corner `(x3,y3)`.\n *\n * @member {number}\n */\n this.y3 = 1;\n\n this.uvsFloat32 = new Float32Array(8);\n};\n\n/**\n * Sets the texture Uvs based on the given frame information.\n *\n * @protected\n * @param {PIXI.Rectangle} frame - The frame of the texture\n * @param {PIXI.Rectangle} baseFrame - The base frame of the texture\n * @param {number} rotate - Rotation of frame, see {@link PIXI.GroupD8}\n */\nTextureUvs.prototype.set = function set (frame, baseFrame, rotate)\n{\n var tw = baseFrame.width;\n var th = baseFrame.height;\n\n if (rotate)\n {\n // width and height div 2 div baseFrame size\n var w2 = frame.width / 2 / tw;\n var h2 = frame.height / 2 / th;\n\n // coordinates of center\n var cX = (frame.x / tw) + w2;\n var cY = (frame.y / th) + h2;\n\n rotate = GroupD8.add(rotate, GroupD8.NW); // NW is top-left corner\n this.x0 = cX + (w2 * GroupD8.uX(rotate));\n this.y0 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2); // rotate 90 degrees clockwise\n this.x1 = cX + (w2 * GroupD8.uX(rotate));\n this.y1 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2);\n this.x2 = cX + (w2 * GroupD8.uX(rotate));\n this.y2 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2);\n this.x3 = cX + (w2 * GroupD8.uX(rotate));\n this.y3 = cY + (h2 * GroupD8.uY(rotate));\n }\n else\n {\n this.x0 = frame.x / tw;\n this.y0 = frame.y / th;\n\n this.x1 = (frame.x + frame.width) / tw;\n this.y1 = frame.y / th;\n\n this.x2 = (frame.x + frame.width) / tw;\n this.y2 = (frame.y + frame.height) / th;\n\n this.x3 = frame.x / tw;\n this.y3 = (frame.y + frame.height) / th;\n }\n\n this.uvsFloat32[0] = this.x0;\n this.uvsFloat32[1] = this.y0;\n this.uvsFloat32[2] = this.x1;\n this.uvsFloat32[3] = this.y1;\n this.uvsFloat32[4] = this.x2;\n this.uvsFloat32[5] = this.y2;\n this.uvsFloat32[6] = this.x3;\n this.uvsFloat32[7] = this.y3;\n};\n\nvar DEFAULT_UVS = new TextureUvs();\n\n/**\n * A texture stores the information that represents an image or part of an image.\n *\n * It cannot be added to the display list directly; instead use it as the texture for a Sprite.\n * If no frame is provided for a texture, then the whole image is used.\n *\n * You can directly create a texture from an image and then reuse it multiple times like this :\n *\n * ```js\n * let texture = PIXI.Texture.from('assets/image.png');\n * let sprite1 = new PIXI.Sprite(texture);\n * let sprite2 = new PIXI.Sprite(texture);\n * ```\n *\n * If you didnt pass the texture frame to constructor, it enables `noFrame` mode:\n * it subscribes on baseTexture events, it automatically resizes at the same time as baseTexture.\n *\n * Textures made from SVGs, loaded or not, cannot be used before the file finishes processing.\n * You can check for this by checking the sprite's _textureID property.\n * ```js\n * var texture = PIXI.Texture.from('assets/image.svg');\n * var sprite1 = new PIXI.Sprite(texture);\n * //sprite1._textureID should not be undefined if the texture has finished processing the SVG file\n * ```\n * You can use a ticker or rAF to ensure your sprites load the finished textures after processing. See issue #3068.\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar Texture = /*@__PURE__*/(function (EventEmitter) {\n function Texture(baseTexture, frame, orig, trim, rotate, anchor)\n {\n EventEmitter.call(this);\n\n /**\n * Does this Texture have any frame data assigned to it?\n *\n * This mode is enabled automatically if no frame was passed inside constructor.\n *\n * In this mode texture is subscribed to baseTexture events, and fires `update` on any change.\n *\n * Beware, after loading or resize of baseTexture event can fired two times!\n * If you want more control, subscribe on baseTexture itself.\n *\n * ```js\n * texture.on('update', () => {});\n * ```\n *\n * Any assignment of `frame` switches off `noFrame` mode.\n *\n * @member {boolean}\n */\n this.noFrame = false;\n\n if (!frame)\n {\n this.noFrame = true;\n frame = new Rectangle(0, 0, 1, 1);\n }\n\n if (baseTexture instanceof Texture)\n {\n baseTexture = baseTexture.baseTexture;\n }\n\n /**\n * The base texture that this texture uses.\n *\n * @member {PIXI.BaseTexture}\n */\n this.baseTexture = baseTexture;\n\n /**\n * This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering,\n * irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases)\n *\n * @member {PIXI.Rectangle}\n */\n this._frame = frame;\n\n /**\n * This is the trimmed area of original texture, before it was put in atlas\n * Please call `updateUvs()` after you change coordinates of `trim` manually.\n *\n * @member {PIXI.Rectangle}\n */\n this.trim = trim;\n\n /**\n * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered.\n *\n * @member {boolean}\n */\n this.valid = false;\n\n /**\n * This will let a renderer know that a texture has been updated (used mainly for WebGL uv updates)\n *\n * @member {boolean}\n */\n this.requiresUpdate = false;\n\n /**\n * The WebGL UV data cache. Can be used as quad UV\n *\n * @member {PIXI.TextureUvs}\n * @protected\n */\n this._uvs = DEFAULT_UVS;\n\n /**\n * Default TextureMatrix instance for this texture\n * By default that object is not created because its heavy\n *\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = null;\n\n /**\n * This is the area of original texture, before it was put in atlas\n *\n * @member {PIXI.Rectangle}\n */\n this.orig = orig || frame;// new Rectangle(0, 0, 1, 1);\n\n this._rotate = Number(rotate || 0);\n\n if (rotate === true)\n {\n // this is old texturepacker legacy, some games/libraries are passing \"true\" for rotated textures\n this._rotate = 2;\n }\n else if (this._rotate % 2 !== 0)\n {\n throw new Error('attempt to use diamond-shaped UVs. If you are sure, set rotation manually');\n }\n\n /**\n * Anchor point that is used as default if sprite is created with this texture.\n * Changing the `defaultAnchor` at a later point of time will not update Sprite's anchor point.\n * @member {PIXI.Point}\n * @default {0,0}\n */\n this.defaultAnchor = anchor ? new Point(anchor.x, anchor.y) : new Point(0, 0);\n\n /**\n * Update ID is observed by sprites and TextureMatrix instances.\n * Call updateUvs() to increment it.\n *\n * @member {number}\n * @protected\n */\n\n this._updateID = 0;\n\n /**\n * The ids under which this Texture has been added to the texture cache. This is\n * automatically set as long as Texture.addToCache is used, but may not be set if a\n * Texture is added directly to the TextureCache array.\n *\n * @member {string[]}\n */\n this.textureCacheIds = [];\n\n if (!baseTexture.valid)\n {\n baseTexture.once('loaded', this.onBaseTextureUpdated, this);\n }\n else if (this.noFrame)\n {\n // if there is no frame we should monitor for any base texture changes..\n if (baseTexture.valid)\n {\n this.onBaseTextureUpdated(baseTexture);\n }\n }\n else\n {\n this.frame = frame;\n }\n\n if (this.noFrame)\n {\n baseTexture.on('update', this.onBaseTextureUpdated, this);\n }\n }\n\n if ( EventEmitter ) Texture.__proto__ = EventEmitter;\n Texture.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n Texture.prototype.constructor = Texture;\n\n var prototypeAccessors = { resolution: { configurable: true },frame: { configurable: true },rotate: { configurable: true },width: { configurable: true },height: { configurable: true } };\n\n /**\n * Updates this texture on the gpu.\n *\n * Calls the TextureResource update.\n *\n * If you adjusted `frame` manually, please call `updateUvs()` instead.\n *\n */\n Texture.prototype.update = function update ()\n {\n if (this.baseTexture.resource)\n {\n this.baseTexture.resource.update();\n }\n };\n\n /**\n * Called when the base texture is updated\n *\n * @protected\n * @param {PIXI.BaseTexture} baseTexture - The base texture.\n */\n Texture.prototype.onBaseTextureUpdated = function onBaseTextureUpdated (baseTexture)\n {\n if (this.noFrame)\n {\n if (!this.baseTexture.valid)\n {\n return;\n }\n\n this._frame.width = baseTexture.width;\n this._frame.height = baseTexture.height;\n this.valid = true;\n this.updateUvs();\n }\n else\n {\n // TODO this code looks confusing.. boo to abusing getters and setters!\n // if user gave us frame that has bigger size than resized texture it can be a problem\n this.frame = this._frame;\n }\n\n this.emit('update', this);\n };\n\n /**\n * Destroys this texture\n *\n * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well\n */\n Texture.prototype.destroy = function destroy (destroyBase)\n {\n if (this.baseTexture)\n {\n if (destroyBase)\n {\n var ref = this.baseTexture;\n var resource = ref.resource;\n\n // delete the texture if it exists in the texture cache..\n // this only needs to be removed if the base texture is actually destroyed too..\n if (resource && TextureCache[resource.url])\n {\n Texture.removeFromCache(resource.url);\n }\n\n this.baseTexture.destroy();\n }\n\n this.baseTexture.off('update', this.onBaseTextureUpdated, this);\n\n this.baseTexture = null;\n }\n\n this._frame = null;\n this._uvs = null;\n this.trim = null;\n this.orig = null;\n\n this.valid = false;\n\n Texture.removeFromCache(this);\n this.textureCacheIds = null;\n };\n\n /**\n * Creates a new texture object that acts the same as this one.\n *\n * @return {PIXI.Texture} The new texture\n */\n Texture.prototype.clone = function clone ()\n {\n return new Texture(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor);\n };\n\n /**\n * Updates the internal WebGL UV cache. Use it after you change `frame` or `trim` of the texture.\n * Call it after changing the frame\n */\n Texture.prototype.updateUvs = function updateUvs ()\n {\n if (this._uvs === DEFAULT_UVS)\n {\n this._uvs = new TextureUvs();\n }\n\n this._uvs.set(this._frame, this.baseTexture, this.rotate);\n\n this._updateID++;\n };\n\n /**\n * Helper function that creates a new Texture based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|PIXI.BaseTexture} source\n * Source to create texture from\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Texture} The newly created texture\n */\n Texture.from = function from (source, options)\n {\n if ( options === void 0 ) options = {};\n\n var cacheId = null;\n\n if (typeof source === 'string')\n {\n cacheId = source;\n }\n else\n {\n if (!source._pixiId)\n {\n source._pixiId = \"pixiid_\" + (uid());\n }\n\n cacheId = source._pixiId;\n }\n\n var texture = TextureCache[cacheId];\n\n if (!texture)\n {\n if (!options.resolution)\n {\n options.resolution = getResolutionOfUrl(source);\n }\n\n texture = new Texture(new BaseTexture(source, options));\n texture.baseTexture.cacheId = cacheId;\n\n BaseTexture.addToCache(texture.baseTexture, cacheId);\n Texture.addToCache(texture, cacheId);\n }\n\n // lets assume its a base texture!\n return texture;\n };\n\n /**\n * Create a new Texture with a BufferResource from a Float32Array.\n * RGBA values are floats from 0 to 1.\n * @static\n * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data\n * is provided, a new Float32Array is created.\n * @param {number} width - Width of the resource\n * @param {number} height - Height of the resource\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Texture} The resulting new BaseTexture\n */\n Texture.fromBuffer = function fromBuffer (buffer, width, height, options)\n {\n return new Texture(BaseTexture.fromBuffer(buffer, width, height, options));\n };\n\n /**\n * Create a texture from a source and add to the cache.\n *\n * @static\n * @param {HTMLImageElement|HTMLCanvasElement} source - The input source.\n * @param {String} imageUrl - File name of texture, for cache and resolving resolution.\n * @param {String} [name] - Human readable name for the texture cache. If no name is\n * specified, only `imageUrl` will be used as the cache ID.\n * @return {PIXI.Texture} Output texture\n */\n Texture.fromLoader = function fromLoader (source, imageUrl, name)\n {\n var resource = new ImageResource(source);\n\n resource.url = imageUrl;\n\n var baseTexture = new BaseTexture(resource, {\n scaleMode: settings.SCALE_MODE,\n resolution: getResolutionOfUrl(imageUrl),\n });\n\n var texture = new Texture(baseTexture);\n\n // No name, use imageUrl instead\n if (!name)\n {\n name = imageUrl;\n }\n\n // lets also add the frame to pixi's global cache for 'fromLoader' function\n BaseTexture.addToCache(texture.baseTexture, name);\n Texture.addToCache(texture, name);\n\n // also add references by url if they are different.\n if (name !== imageUrl)\n {\n BaseTexture.addToCache(texture.baseTexture, imageUrl);\n Texture.addToCache(texture, imageUrl);\n }\n\n return texture;\n };\n\n /**\n * Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object.\n *\n * @static\n * @param {PIXI.Texture} texture - The Texture to add to the cache.\n * @param {string} id - The id that the Texture will be stored against.\n */\n Texture.addToCache = function addToCache (texture, id)\n {\n if (id)\n {\n if (texture.textureCacheIds.indexOf(id) === -1)\n {\n texture.textureCacheIds.push(id);\n }\n\n if (TextureCache[id])\n {\n // eslint-disable-next-line no-console\n console.warn((\"Texture added to the cache with an id [\" + id + \"] that already had an entry\"));\n }\n\n TextureCache[id] = texture;\n }\n };\n\n /**\n * Remove a Texture from the global TextureCache.\n *\n * @static\n * @param {string|PIXI.Texture} texture - id of a Texture to be removed, or a Texture instance itself\n * @return {PIXI.Texture|null} The Texture that was removed\n */\n Texture.removeFromCache = function removeFromCache (texture)\n {\n if (typeof texture === 'string')\n {\n var textureFromCache = TextureCache[texture];\n\n if (textureFromCache)\n {\n var index = textureFromCache.textureCacheIds.indexOf(texture);\n\n if (index > -1)\n {\n textureFromCache.textureCacheIds.splice(index, 1);\n }\n\n delete TextureCache[texture];\n\n return textureFromCache;\n }\n }\n else if (texture && texture.textureCacheIds)\n {\n for (var i = 0; i < texture.textureCacheIds.length; ++i)\n {\n // Check that texture matches the one being passed in before deleting it from the cache.\n if (TextureCache[texture.textureCacheIds[i]] === texture)\n {\n delete TextureCache[texture.textureCacheIds[i]];\n }\n }\n\n texture.textureCacheIds.length = 0;\n\n return texture;\n }\n\n return null;\n };\n\n /**\n * Returns resolution of baseTexture\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.resolution.get = function ()\n {\n return this.baseTexture.resolution;\n };\n\n /**\n * The frame specifies the region of the base texture that this texture uses.\n * Please call `updateUvs()` after you change coordinates of `frame` manually.\n *\n * @member {PIXI.Rectangle}\n */\n prototypeAccessors.frame.get = function ()\n {\n return this._frame;\n };\n\n prototypeAccessors.frame.set = function (frame) // eslint-disable-line require-jsdoc\n {\n this._frame = frame;\n\n this.noFrame = false;\n\n var x = frame.x;\n var y = frame.y;\n var width = frame.width;\n var height = frame.height;\n var xNotFit = x + width > this.baseTexture.width;\n var yNotFit = y + height > this.baseTexture.height;\n\n if (xNotFit || yNotFit)\n {\n var relationship = xNotFit && yNotFit ? 'and' : 'or';\n var errorX = \"X: \" + x + \" + \" + width + \" = \" + (x + width) + \" > \" + (this.baseTexture.width);\n var errorY = \"Y: \" + y + \" + \" + height + \" = \" + (y + height) + \" > \" + (this.baseTexture.height);\n\n throw new Error('Texture Error: frame does not fit inside the base Texture dimensions: '\n + errorX + \" \" + relationship + \" \" + errorY);\n }\n\n this.valid = width && height && this.baseTexture.valid;\n\n if (!this.trim && !this.rotate)\n {\n this.orig = frame;\n }\n\n if (this.valid)\n {\n this.updateUvs();\n }\n };\n\n /**\n * Indicates whether the texture is rotated inside the atlas\n * set to 2 to compensate for texture packer rotation\n * set to 6 to compensate for spine packer rotation\n * can be used to rotate or mirror sprites\n * See {@link PIXI.GroupD8} for explanation\n *\n * @member {number}\n */\n prototypeAccessors.rotate.get = function ()\n {\n return this._rotate;\n };\n\n prototypeAccessors.rotate.set = function (rotate) // eslint-disable-line require-jsdoc\n {\n this._rotate = rotate;\n if (this.valid)\n {\n this.updateUvs();\n }\n };\n\n /**\n * The width of the Texture in pixels.\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this.orig.width;\n };\n\n /**\n * The height of the Texture in pixels.\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this.orig.height;\n };\n\n Object.defineProperties( Texture.prototype, prototypeAccessors );\n\n return Texture;\n}(EventEmitter));\n\nfunction createWhiteTexture()\n{\n var canvas = document.createElement('canvas');\n\n canvas.width = 16;\n canvas.height = 16;\n\n var context = canvas.getContext('2d');\n\n context.fillStyle = 'white';\n context.fillRect(0, 0, 16, 16);\n\n return new Texture(new BaseTexture(new CanvasResource(canvas)));\n}\n\nfunction removeAllHandlers(tex)\n{\n tex.destroy = function _emptyDestroy() { /* empty */ };\n tex.on = function _emptyOn() { /* empty */ };\n tex.once = function _emptyOnce() { /* empty */ };\n tex.emit = function _emptyEmit() { /* empty */ };\n}\n\n/**\n * An empty texture, used often to not have to create multiple empty textures.\n * Can not be destroyed.\n *\n * @static\n * @constant\n * @member {PIXI.Texture}\n */\nTexture.EMPTY = new Texture(new BaseTexture());\nremoveAllHandlers(Texture.EMPTY);\nremoveAllHandlers(Texture.EMPTY.baseTexture);\n\n/**\n * A white texture of 16x16 size, used for graphics and other things\n * Can not be destroyed.\n *\n * @static\n * @constant\n * @member {PIXI.Texture}\n */\nTexture.WHITE = createWhiteTexture();\nremoveAllHandlers(Texture.WHITE);\nremoveAllHandlers(Texture.WHITE.baseTexture);\n\n/**\n * A RenderTexture is a special texture that allows any PixiJS display object to be rendered to it.\n *\n * __Hint__: All DisplayObjects (i.e. Sprites) that render to a RenderTexture should be preloaded\n * otherwise black rectangles will be drawn instead.\n *\n * __Hint-2__: The actual memory allocation will happen on first render.\n * You shouldn't create renderTextures each frame just to delete them after, try to reuse them.\n *\n * A RenderTexture takes a snapshot of any Display Object given to its render method. For example:\n *\n * ```js\n * let renderer = PIXI.autoDetectRenderer();\n * let renderTexture = PIXI.RenderTexture.create(800, 600);\n * let sprite = PIXI.Sprite.from(\"spinObj_01.png\");\n *\n * sprite.position.x = 800/2;\n * sprite.position.y = 600/2;\n * sprite.anchor.x = 0.5;\n * sprite.anchor.y = 0.5;\n *\n * renderer.render(sprite, renderTexture);\n * ```\n *\n * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0\n * you can clear the transform\n *\n * ```js\n *\n * sprite.setTransform()\n *\n * let renderTexture = new PIXI.RenderTexture.create(100, 100);\n *\n * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture\n * ```\n *\n * @class\n * @extends PIXI.Texture\n * @memberof PIXI\n */\nvar RenderTexture = /*@__PURE__*/(function (Texture) {\n function RenderTexture(baseRenderTexture, frame)\n {\n // support for legacy..\n var _legacyRenderer = null;\n\n if (!(baseRenderTexture instanceof BaseRenderTexture))\n {\n /* eslint-disable prefer-rest-params, no-console */\n var width = arguments[1];\n var height = arguments[2];\n var scaleMode = arguments[3];\n var resolution = arguments[4];\n\n // we have an old render texture..\n console.warn((\"Please use RenderTexture.create(\" + width + \", \" + height + \") instead of the ctor directly.\"));\n _legacyRenderer = arguments[0];\n /* eslint-enable prefer-rest-params, no-console */\n\n frame = null;\n baseRenderTexture = new BaseRenderTexture({\n width: width,\n height: height,\n scaleMode: scaleMode,\n resolution: resolution,\n });\n }\n\n /**\n * The base texture object that this texture uses\n *\n * @member {PIXI.BaseTexture}\n */\n Texture.call(this, baseRenderTexture, frame);\n\n this.legacyRenderer = _legacyRenderer;\n\n /**\n * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered.\n *\n * @member {boolean}\n */\n this.valid = true;\n\n /**\n * Stores `sourceFrame` when this texture is inside current filter stack.\n * You can read it inside filters.\n *\n * @readonly\n * @member {PIXI.Rectangle}\n */\n this.filterFrame = null;\n\n /**\n * The key for pooled texture of FilterSystem\n * @protected\n * @member {string}\n */\n this.filterPoolKey = null;\n\n this.updateUvs();\n }\n\n if ( Texture ) RenderTexture.__proto__ = Texture;\n RenderTexture.prototype = Object.create( Texture && Texture.prototype );\n RenderTexture.prototype.constructor = RenderTexture;\n\n /**\n * Resizes the RenderTexture.\n *\n * @param {number} width - The width to resize to.\n * @param {number} height - The height to resize to.\n * @param {boolean} [resizeBaseTexture=true] - Should the baseTexture.width and height values be resized as well?\n */\n RenderTexture.prototype.resize = function resize (width, height, resizeBaseTexture)\n {\n if ( resizeBaseTexture === void 0 ) resizeBaseTexture = true;\n\n width = Math.ceil(width);\n height = Math.ceil(height);\n\n // TODO - could be not required..\n this.valid = (width > 0 && height > 0);\n\n this._frame.width = this.orig.width = width;\n this._frame.height = this.orig.height = height;\n\n if (resizeBaseTexture)\n {\n this.baseTexture.resize(width, height);\n }\n\n this.updateUvs();\n };\n\n /**\n * Changes the resolution of baseTexture, but does not change framebuffer size.\n *\n * @param {number} resolution - The new resolution to apply to RenderTexture\n */\n RenderTexture.prototype.setResolution = function setResolution (resolution)\n {\n var ref = this;\n var baseTexture = ref.baseTexture;\n\n if (baseTexture.resolution === resolution)\n {\n return;\n }\n\n baseTexture.setResolution(resolution);\n this.resize(baseTexture.width, baseTexture.height, false);\n };\n\n /**\n * A short hand way of creating a render texture.\n *\n * @param {object} [options] - Options\n * @param {number} [options.width=100] - The width of the render texture\n * @param {number} [options.height=100] - The height of the render texture\n * @param {number} [options.scaleMode=PIXI.settings.SCALE_MODE] - See {@link PIXI.SCALE_MODES} for possible values\n * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the texture being generated\n * @return {PIXI.RenderTexture} The new render texture\n */\n RenderTexture.create = function create (options)\n {\n // fallback, old-style: create(width, height, scaleMode, resolution)\n if (typeof options === 'number')\n {\n /* eslint-disable prefer-rest-params */\n options = {\n width: options,\n height: arguments[1],\n scaleMode: arguments[2],\n resolution: arguments[3],\n };\n /* eslint-enable prefer-rest-params */\n }\n\n return new RenderTexture(new BaseRenderTexture(options));\n };\n\n return RenderTexture;\n}(Texture));\n\n/**\n * Experimental!\n *\n * Texture pool, used by FilterSystem and plugins\n * Stores collection of temporary pow2 or screen-sized renderTextures\n *\n * If you use custom RenderTexturePool for your filters, you can use methods\n * `getFilterTexture` and `returnFilterTexture` same as in\n *\n * @class\n * @memberof PIXI\n */\nvar RenderTexturePool = function RenderTexturePool(textureOptions)\n{\n this.texturePool = {};\n this.textureOptions = textureOptions || {};\n /**\n * Allow renderTextures of the same size as screen, not just pow2\n *\n * Automatically sets to true after `setScreenSize`\n *\n * @member {boolean}\n * @default false\n */\n this.enableFullScreen = false;\n\n this._pixelsWidth = 0;\n this._pixelsHeight = 0;\n};\n\n/**\n * creates of texture with params that were specified in pool constructor\n *\n * @param {number} realWidth width of texture in pixels\n * @param {number} realHeight height of texture in pixels\n * @returns {RenderTexture}\n */\nRenderTexturePool.prototype.createTexture = function createTexture (realWidth, realHeight)\n{\n var baseRenderTexture = new BaseRenderTexture(Object.assign({\n width: realWidth,\n height: realHeight,\n resolution: 1,\n }, this.textureOptions));\n\n return new RenderTexture(baseRenderTexture);\n};\n\n/**\n * Gets a Power-of-Two render texture or fullScreen texture\n *\n * @protected\n * @param {number} minWidth - The minimum width of the render texture in real pixels.\n * @param {number} minHeight - The minimum height of the render texture in real pixels.\n * @param {number} [resolution=1] - The resolution of the render texture.\n * @return {PIXI.RenderTexture} The new render texture.\n */\nRenderTexturePool.prototype.getOptimalTexture = function getOptimalTexture (minWidth, minHeight, resolution)\n{\n if ( resolution === void 0 ) resolution = 1;\n\n var key = RenderTexturePool.SCREEN_KEY;\n\n minWidth *= resolution;\n minHeight *= resolution;\n\n if (!this.enableFullScreen || minWidth !== this._pixelsWidth || minHeight !== this._pixelsHeight)\n {\n minWidth = nextPow2(minWidth);\n minHeight = nextPow2(minHeight);\n key = ((minWidth & 0xFFFF) << 16) | (minHeight & 0xFFFF);\n }\n\n if (!this.texturePool[key])\n {\n this.texturePool[key] = [];\n }\n\n var renderTexture = this.texturePool[key].pop();\n\n if (!renderTexture)\n {\n renderTexture = this.createTexture(minWidth, minHeight);\n }\n\n renderTexture.filterPoolKey = key;\n renderTexture.setResolution(resolution);\n\n return renderTexture;\n};\n\n/**\n * Gets extra texture of the same size as input renderTexture\n *\n * `getFilterTexture(input, 0.5)` or `getFilterTexture(0.5, input)`\n *\n * @param {PIXI.RenderTexture} input renderTexture from which size and resolution will be copied\n * @param {number} [resolution] override resolution of the renderTexture\n * It overrides, it does not multiply\n * @returns {PIXI.RenderTexture}\n */\nRenderTexturePool.prototype.getFilterTexture = function getFilterTexture (input, resolution)\n{\n var filterTexture = this.getOptimalTexture(input.width, input.height, resolution || input.resolution);\n\n filterTexture.filterFrame = input.filterFrame;\n\n return filterTexture;\n};\n\n/**\n * Place a render texture back into the pool.\n * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free\n */\nRenderTexturePool.prototype.returnTexture = function returnTexture (renderTexture)\n{\n var key = renderTexture.filterPoolKey;\n\n renderTexture.filterFrame = null;\n this.texturePool[key].push(renderTexture);\n};\n\n/**\n * Alias for returnTexture, to be compliant with FilterSystem interface\n * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free\n */\nRenderTexturePool.prototype.returnFilterTexture = function returnFilterTexture (renderTexture)\n{\n this.returnTexture(renderTexture);\n};\n\n/**\n * Clears the pool\n *\n * @param {boolean} [destroyTextures=true] destroy all stored textures\n */\nRenderTexturePool.prototype.clear = function clear (destroyTextures)\n{\n destroyTextures = destroyTextures !== false;\n if (destroyTextures)\n {\n for (var i in this.texturePool)\n {\n var textures = this.texturePool[i];\n\n if (textures)\n {\n for (var j = 0; j < textures.length; j++)\n {\n textures[j].destroy(true);\n }\n }\n }\n }\n\n this.texturePool = {};\n};\n\n/**\n * If screen size was changed, drops all screen-sized textures,\n * sets new screen size, sets `enableFullScreen` to true\n *\n * Size is measured in pixels, `renderer.view` can be passed here, not `renderer.screen`\n *\n * @param {PIXI.ISize} size - Initial size of screen\n */\nRenderTexturePool.prototype.setScreenSize = function setScreenSize (size)\n{\n if (size.width === this._pixelsWidth\n && size.height === this._pixelsHeight)\n {\n return;\n }\n\n var screenKey = RenderTexturePool.SCREEN_KEY;\n var textures = this.texturePool[screenKey];\n\n this.enableFullScreen = size.width > 0 && size.height > 0;\n\n if (textures)\n {\n for (var j = 0; j < textures.length; j++)\n {\n textures[j].destroy(true);\n }\n }\n this.texturePool[screenKey] = [];\n\n this._pixelsWidth = size.width;\n this._pixelsHeight = size.height;\n};\n\n/**\n * Key that is used to store fullscreen renderTextures in a pool\n *\n * @static\n * @const {string}\n */\nRenderTexturePool.SCREEN_KEY = 'screen';\n\n/* eslint-disable max-len */\n\n/**\n * Holds the information for a single attribute structure required to render geometry.\n *\n * This does not contain the actual data, but instead has a buffer id that maps to a {@link PIXI.Buffer}\n * This can include anything from positions, uvs, normals, colors etc.\n *\n * @class\n * @memberof PIXI\n */\nvar Attribute = function Attribute(buffer, size, normalized, type, stride, start, instance)\n{\n if ( normalized === void 0 ) normalized = false;\n if ( type === void 0 ) type = 5126;\n\n this.buffer = buffer;\n this.size = size;\n this.normalized = normalized;\n this.type = type;\n this.stride = stride;\n this.start = start;\n this.instance = instance;\n};\n\n/**\n * Destroys the Attribute.\n */\nAttribute.prototype.destroy = function destroy ()\n{\n this.buffer = null;\n};\n\n/**\n * Helper function that creates an Attribute based on the information provided\n *\n * @static\n * @param {string} buffer the id of the buffer that this attribute will look for\n * @param {Number} [size=2] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2\n * @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data)\n * @param {Number} [start=0] How far into the array to start reading values (used for interleaving data)\n * @param {Boolean} [normalized=false] should the data be normalized.\n *\n * @returns {PIXI.Attribute} A new {@link PIXI.Attribute} based on the information provided\n */\nAttribute.from = function from (buffer, size, normalized, type, stride)\n{\n return new Attribute(buffer, size, normalized, type, stride);\n};\n\nvar UID = 0;\n/* eslint-disable max-len */\n\n/**\n * A wrapper for data so that it can be used and uploaded by WebGL\n *\n * @class\n * @memberof PIXI\n */\nvar Buffer = function Buffer(data, _static, index)\n{\n if ( _static === void 0 ) _static = true;\n if ( index === void 0 ) index = false;\n\n /**\n * The data in the buffer, as a typed array\n *\n * @member {ArrayBuffer| SharedArrayBuffer|ArrayBufferView}\n */\n this.data = data || new Float32Array(1);\n\n /**\n * A map of renderer IDs to webgl buffer\n *\n * @private\n * @member {object}\n */\n this._glBuffers = {};\n\n this._updateID = 0;\n\n this.index = index;\n\n this.static = _static;\n\n this.id = UID++;\n\n this.disposeRunner = new Runner('disposeBuffer', 2);\n};\n\n// TODO could explore flagging only a partial upload?\n/**\n * flags this buffer as requiring an upload to the GPU\n * @param {ArrayBuffer|SharedArrayBuffer|ArrayBufferView} [data] the data to update in the buffer.\n */\nBuffer.prototype.update = function update (data)\n{\n this.data = data || this.data;\n this._updateID++;\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nBuffer.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\n/**\n * Destroys the buffer\n */\nBuffer.prototype.destroy = function destroy ()\n{\n this.dispose();\n\n this.data = null;\n};\n\n/**\n * Helper function that creates a buffer based on an array or TypedArray\n *\n * @static\n * @param {ArrayBufferView | number[]} data the TypedArray that the buffer will store. If this is a regular Array it will be converted to a Float32Array.\n * @return {PIXI.Buffer} A new Buffer based on the data provided.\n */\nBuffer.from = function from (data)\n{\n if (data instanceof Array)\n {\n data = new Float32Array(data);\n }\n\n return new Buffer(data);\n};\n\nfunction getBufferType(array)\n{\n if (array.BYTES_PER_ELEMENT === 4)\n {\n if (array instanceof Float32Array)\n {\n return 'Float32Array';\n }\n else if (array instanceof Uint32Array)\n {\n return 'Uint32Array';\n }\n\n return 'Int32Array';\n }\n else if (array.BYTES_PER_ELEMENT === 2)\n {\n if (array instanceof Uint16Array)\n {\n return 'Uint16Array';\n }\n }\n else if (array.BYTES_PER_ELEMENT === 1)\n {\n if (array instanceof Uint8Array)\n {\n return 'Uint8Array';\n }\n }\n\n // TODO map out the rest of the array elements!\n return null;\n}\n\n/* eslint-disable object-shorthand */\nvar map = {\n Float32Array: Float32Array,\n Uint32Array: Uint32Array,\n Int32Array: Int32Array,\n Uint8Array: Uint8Array,\n};\n\nfunction interleaveTypedArrays(arrays, sizes)\n{\n var outSize = 0;\n var stride = 0;\n var views = {};\n\n for (var i = 0; i < arrays.length; i++)\n {\n stride += sizes[i];\n outSize += arrays[i].length;\n }\n\n var buffer = new ArrayBuffer(outSize * 4);\n\n var out = null;\n var littleOffset = 0;\n\n for (var i$1 = 0; i$1 < arrays.length; i$1++)\n {\n var size = sizes[i$1];\n var array = arrays[i$1];\n\n var type = getBufferType(array);\n\n if (!views[type])\n {\n views[type] = new map[type](buffer);\n }\n\n out = views[type];\n\n for (var j = 0; j < array.length; j++)\n {\n var indexStart = ((j / size | 0) * stride) + littleOffset;\n var index = j % size;\n\n out[indexStart + index] = array[j];\n }\n\n littleOffset += size;\n }\n\n return new Float32Array(buffer);\n}\n\nvar byteSizeMap = { 5126: 4, 5123: 2, 5121: 1 };\nvar UID$1 = 0;\n\n/* eslint-disable object-shorthand */\nvar map$1 = {\n Float32Array: Float32Array,\n Uint32Array: Uint32Array,\n Int32Array: Int32Array,\n Uint8Array: Uint8Array,\n Uint16Array: Uint16Array,\n};\n\n/* eslint-disable max-len */\n\n/**\n * The Geometry represents a model. It consists of two components:\n * - GeometryStyle - The structure of the model such as the attributes layout\n * - GeometryData - the data of the model - this consists of buffers.\n * This can include anything from positions, uvs, normals, colors etc.\n *\n * Geometry can be defined without passing in a style or data if required (thats how I prefer!)\n *\n * ```js\n * let geometry = new PIXI.Geometry();\n *\n * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2);\n * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1],2)\n * geometry.addIndex([0,1,2,1,3,2])\n *\n * ```\n * @class\n * @memberof PIXI\n */\nvar Geometry = function Geometry(buffers, attributes)\n{\n if ( buffers === void 0 ) buffers = [];\n if ( attributes === void 0 ) attributes = {};\n\n this.buffers = buffers;\n\n this.indexBuffer = null;\n\n this.attributes = attributes;\n\n /**\n * A map of renderer IDs to webgl VAOs\n *\n * @protected\n * @type {object}\n */\n this.glVertexArrayObjects = {};\n\n this.id = UID$1++;\n\n this.instanced = false;\n\n /**\n * Number of instances in this geometry, pass it to `GeometrySystem.draw()`\n * @member {number}\n * @default 1\n */\n this.instanceCount = 1;\n\n this.disposeRunner = new Runner('disposeGeometry', 2);\n\n /**\n * Count of existing (not destroyed) meshes that reference this geometry\n * @member {number}\n */\n this.refCount = 0;\n};\n\n/**\n*\n* Adds an attribute to the geometry\n*\n* @param {String} id - the name of the attribute (matching up to a shader)\n* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it.\n* @param {Number} [size=0] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2\n* @param {Boolean} [normalized=false] should the data be normalized.\n* @param {Number} [type=PIXI.TYPES.FLOAT] what type of number is the attribute. Check {PIXI.TYPES} to see the ones available\n* @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data)\n* @param {Number} [start=0] How far into the array to start reading values (used for interleaving data)\n*\n* @return {PIXI.Geometry} returns self, useful for chaining.\n*/\nGeometry.prototype.addAttribute = function addAttribute (id, buffer, size, normalized, type, stride, start, instance)\n{\n if ( normalized === void 0 ) normalized = false;\n if ( instance === void 0 ) instance = false;\n\n if (!buffer)\n {\n throw new Error('You must pass a buffer when creating an attribute');\n }\n\n // check if this is a buffer!\n if (!buffer.data)\n {\n // its an array!\n if (buffer instanceof Array)\n {\n buffer = new Float32Array(buffer);\n }\n\n buffer = new Buffer(buffer);\n }\n\n var ids = id.split('|');\n\n if (ids.length > 1)\n {\n for (var i = 0; i < ids.length; i++)\n {\n this.addAttribute(ids[i], buffer, size, normalized, type);\n }\n\n return this;\n }\n\n var bufferIndex = this.buffers.indexOf(buffer);\n\n if (bufferIndex === -1)\n {\n this.buffers.push(buffer);\n bufferIndex = this.buffers.length - 1;\n }\n\n this.attributes[id] = new Attribute(bufferIndex, size, normalized, type, stride, start, instance);\n\n // assuming that if there is instanced data then this will be drawn with instancing!\n this.instanced = this.instanced || instance;\n\n return this;\n};\n\n/**\n * returns the requested attribute\n *\n * @param {String} id the name of the attribute required\n * @return {PIXI.Attribute} the attribute requested.\n */\nGeometry.prototype.getAttribute = function getAttribute (id)\n{\n return this.attributes[id];\n};\n\n/**\n * returns the requested buffer\n *\n * @param {String} id the name of the buffer required\n * @return {PIXI.Buffer} the buffer requested.\n */\nGeometry.prototype.getBuffer = function getBuffer (id)\n{\n return this.buffers[this.getAttribute(id).buffer];\n};\n\n/**\n*\n* Adds an index buffer to the geometry\n* The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer.\n*\n* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it.\n* @return {PIXI.Geometry} returns self, useful for chaining.\n*/\nGeometry.prototype.addIndex = function addIndex (buffer)\n{\n if (!buffer.data)\n {\n // its an array!\n if (buffer instanceof Array)\n {\n buffer = new Uint16Array(buffer);\n }\n\n buffer = new Buffer(buffer);\n }\n\n buffer.index = true;\n this.indexBuffer = buffer;\n\n if (this.buffers.indexOf(buffer) === -1)\n {\n this.buffers.push(buffer);\n }\n\n return this;\n};\n\n/**\n * returns the index buffer\n *\n * @return {PIXI.Buffer} the index buffer.\n */\nGeometry.prototype.getIndex = function getIndex ()\n{\n return this.indexBuffer;\n};\n\n/**\n * this function modifies the structure so that all current attributes become interleaved into a single buffer\n * This can be useful if your model remains static as it offers a little performance boost\n *\n * @return {PIXI.Geometry} returns self, useful for chaining.\n */\nGeometry.prototype.interleave = function interleave ()\n{\n // a simple check to see if buffers are already interleaved..\n if (this.buffers.length === 1 || (this.buffers.length === 2 && this.indexBuffer)) { return this; }\n\n // assume already that no buffers are interleaved\n var arrays = [];\n var sizes = [];\n var interleavedBuffer = new Buffer();\n var i;\n\n for (i in this.attributes)\n {\n var attribute = this.attributes[i];\n\n var buffer = this.buffers[attribute.buffer];\n\n arrays.push(buffer.data);\n\n sizes.push((attribute.size * byteSizeMap[attribute.type]) / 4);\n\n attribute.buffer = 0;\n }\n\n interleavedBuffer.data = interleaveTypedArrays(arrays, sizes);\n\n for (i = 0; i < this.buffers.length; i++)\n {\n if (this.buffers[i] !== this.indexBuffer)\n {\n this.buffers[i].destroy();\n }\n }\n\n this.buffers = [interleavedBuffer];\n\n if (this.indexBuffer)\n {\n this.buffers.push(this.indexBuffer);\n }\n\n return this;\n};\n\nGeometry.prototype.getSize = function getSize ()\n{\n for (var i in this.attributes)\n {\n var attribute = this.attributes[i];\n var buffer = this.buffers[attribute.buffer];\n\n return buffer.data.length / ((attribute.stride / 4) || attribute.size);\n }\n\n return 0;\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nGeometry.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\n/**\n * Destroys the geometry.\n */\nGeometry.prototype.destroy = function destroy ()\n{\n this.dispose();\n\n this.buffers = null;\n this.indexBuffer.destroy();\n\n this.attributes = null;\n};\n\n/**\n * returns a clone of the geometry\n *\n * @returns {PIXI.Geometry} a new clone of this geometry\n */\nGeometry.prototype.clone = function clone ()\n{\n var geometry = new Geometry();\n\n for (var i = 0; i < this.buffers.length; i++)\n {\n geometry.buffers[i] = new Buffer(this.buffers[i].data.slice());\n }\n\n for (var i$1 in this.attributes)\n {\n var attrib = this.attributes[i$1];\n\n geometry.attributes[i$1] = new Attribute(\n attrib.buffer,\n attrib.size,\n attrib.normalized,\n attrib.type,\n attrib.stride,\n attrib.start,\n attrib.instance\n );\n }\n\n if (this.indexBuffer)\n {\n geometry.indexBuffer = geometry.buffers[this.buffers.indexOf(this.indexBuffer)];\n geometry.indexBuffer.index = true;\n }\n\n return geometry;\n};\n\n/**\n * merges an array of geometries into a new single one\n * geometry attribute styles must match for this operation to work\n *\n * @param {PIXI.Geometry[]} geometries array of geometries to merge\n * @returns {PIXI.Geometry} shiny new geometry!\n */\nGeometry.merge = function merge (geometries)\n{\n // todo add a geometry check!\n // also a size check.. cant be too big!]\n\n var geometryOut = new Geometry();\n\n var arrays = [];\n var sizes = [];\n var offsets = [];\n\n var geometry;\n\n // pass one.. get sizes..\n for (var i = 0; i < geometries.length; i++)\n {\n geometry = geometries[i];\n\n for (var j = 0; j < geometry.buffers.length; j++)\n {\n sizes[j] = sizes[j] || 0;\n sizes[j] += geometry.buffers[j].data.length;\n offsets[j] = 0;\n }\n }\n\n // build the correct size arrays..\n for (var i$1 = 0; i$1 < geometry.buffers.length; i$1++)\n {\n // TODO types!\n arrays[i$1] = new map$1[getBufferType(geometry.buffers[i$1].data)](sizes[i$1]);\n geometryOut.buffers[i$1] = new Buffer(arrays[i$1]);\n }\n\n // pass to set data..\n for (var i$2 = 0; i$2 < geometries.length; i$2++)\n {\n geometry = geometries[i$2];\n\n for (var j$1 = 0; j$1 < geometry.buffers.length; j$1++)\n {\n arrays[j$1].set(geometry.buffers[j$1].data, offsets[j$1]);\n offsets[j$1] += geometry.buffers[j$1].data.length;\n }\n }\n\n geometryOut.attributes = geometry.attributes;\n\n if (geometry.indexBuffer)\n {\n geometryOut.indexBuffer = geometryOut.buffers[geometry.buffers.indexOf(geometry.indexBuffer)];\n geometryOut.indexBuffer.index = true;\n\n var offset = 0;\n var stride = 0;\n var offset2 = 0;\n var bufferIndexToCount = 0;\n\n // get a buffer\n for (var i$3 = 0; i$3 < geometry.buffers.length; i$3++)\n {\n if (geometry.buffers[i$3] !== geometry.indexBuffer)\n {\n bufferIndexToCount = i$3;\n break;\n }\n }\n\n // figure out the stride of one buffer..\n for (var i$4 in geometry.attributes)\n {\n var attribute = geometry.attributes[i$4];\n\n if ((attribute.buffer | 0) === bufferIndexToCount)\n {\n stride += ((attribute.size * byteSizeMap[attribute.type]) / 4);\n }\n }\n\n // time to off set all indexes..\n for (var i$5 = 0; i$5 < geometries.length; i$5++)\n {\n var indexBufferData = geometries[i$5].indexBuffer.data;\n\n for (var j$2 = 0; j$2 < indexBufferData.length; j$2++)\n {\n geometryOut.indexBuffer.data[j$2 + offset2] += offset;\n }\n\n offset += geometry.buffers[bufferIndexToCount].data.length / (stride);\n offset2 += indexBufferData.length;\n }\n }\n\n return geometryOut;\n};\n\n/**\n * Helper class to create a quad\n *\n * @class\n * @memberof PIXI\n */\nvar Quad = /*@__PURE__*/(function (Geometry) {\n function Quad()\n {\n Geometry.call(this);\n\n this.addAttribute('aVertexPosition', [\n 0, 0,\n 1, 0,\n 1, 1,\n 0, 1 ])\n .addIndex([0, 1, 3, 2]);\n }\n\n if ( Geometry ) Quad.__proto__ = Geometry;\n Quad.prototype = Object.create( Geometry && Geometry.prototype );\n Quad.prototype.constructor = Quad;\n\n return Quad;\n}(Geometry));\n\n/**\n * Helper class to create a quad with uvs like in v4\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.Geometry\n */\nvar QuadUv = /*@__PURE__*/(function (Geometry) {\n function QuadUv()\n {\n Geometry.call(this);\n\n /**\n * An array of vertices\n *\n * @member {Float32Array}\n */\n this.vertices = new Float32Array([\n -1, -1,\n 1, -1,\n 1, 1,\n -1, 1 ]);\n\n /**\n * The Uvs of the quad\n *\n * @member {Float32Array}\n */\n this.uvs = new Float32Array([\n 0, 0,\n 1, 0,\n 1, 1,\n 0, 1 ]);\n\n this.vertexBuffer = new Buffer(this.vertices);\n this.uvBuffer = new Buffer(this.uvs);\n\n this.addAttribute('aVertexPosition', this.vertexBuffer)\n .addAttribute('aTextureCoord', this.uvBuffer)\n .addIndex([0, 1, 2, 0, 2, 3]);\n }\n\n if ( Geometry ) QuadUv.__proto__ = Geometry;\n QuadUv.prototype = Object.create( Geometry && Geometry.prototype );\n QuadUv.prototype.constructor = QuadUv;\n\n /**\n * Maps two Rectangle to the quad.\n *\n * @param {PIXI.Rectangle} targetTextureFrame - the first rectangle\n * @param {PIXI.Rectangle} destinationFrame - the second rectangle\n * @return {PIXI.Quad} Returns itself.\n */\n QuadUv.prototype.map = function map (targetTextureFrame, destinationFrame)\n {\n var x = 0; // destinationFrame.x / targetTextureFrame.width;\n var y = 0; // destinationFrame.y / targetTextureFrame.height;\n\n this.uvs[0] = x;\n this.uvs[1] = y;\n\n this.uvs[2] = x + (destinationFrame.width / targetTextureFrame.width);\n this.uvs[3] = y;\n\n this.uvs[4] = x + (destinationFrame.width / targetTextureFrame.width);\n this.uvs[5] = y + (destinationFrame.height / targetTextureFrame.height);\n\n this.uvs[6] = x;\n this.uvs[7] = y + (destinationFrame.height / targetTextureFrame.height);\n\n x = destinationFrame.x;\n y = destinationFrame.y;\n\n this.vertices[0] = x;\n this.vertices[1] = y;\n\n this.vertices[2] = x + destinationFrame.width;\n this.vertices[3] = y;\n\n this.vertices[4] = x + destinationFrame.width;\n this.vertices[5] = y + destinationFrame.height;\n\n this.vertices[6] = x;\n this.vertices[7] = y + destinationFrame.height;\n\n this.invalidate();\n\n return this;\n };\n\n /**\n * legacy upload method, just marks buffers dirty\n * @returns {PIXI.QuadUv} Returns itself.\n */\n QuadUv.prototype.invalidate = function invalidate ()\n {\n this.vertexBuffer._updateID++;\n this.uvBuffer._updateID++;\n\n return this;\n };\n\n return QuadUv;\n}(Geometry));\n\nvar UID$2 = 0;\n\n/**\n * Uniform group holds uniform map and some ID's for work\n *\n * @class\n * @memberof PIXI\n */\nvar UniformGroup = function UniformGroup(uniforms, _static)\n{\n /**\n * uniform values\n * @member {object}\n * @readonly\n */\n this.uniforms = uniforms;\n\n /**\n * Its a group and not a single uniforms\n * @member {boolean}\n * @readonly\n * @default true\n */\n this.group = true;\n\n // lets generate this when the shader ?\n this.syncUniforms = {};\n\n /**\n * dirty version\n * @protected\n * @member {number}\n */\n this.dirtyId = 0;\n\n /**\n * unique id\n * @protected\n * @member {number}\n */\n this.id = UID$2++;\n\n /**\n * Uniforms wont be changed after creation\n * @member {boolean}\n */\n this.static = !!_static;\n};\n\nUniformGroup.prototype.update = function update ()\n{\n this.dirtyId++;\n};\n\nUniformGroup.prototype.add = function add (name, uniforms, _static)\n{\n this.uniforms[name] = new UniformGroup(uniforms, _static);\n};\n\nUniformGroup.from = function from (uniforms, _static)\n{\n return new UniformGroup(uniforms, _static);\n};\n\n/**\n * System plugin to the renderer to manage filter states.\n *\n * @class\n * @private\n */\nvar FilterState = function FilterState()\n{\n this.renderTexture = null;\n\n /**\n * Target of the filters\n * We store for case when custom filter wants to know the element it was applied on\n * @member {PIXI.DisplayObject}\n * @private\n */\n this.target = null;\n\n /**\n * Compatibility with PixiJS v4 filters\n * @member {boolean}\n * @default false\n * @private\n */\n this.legacy = false;\n\n /**\n * Resolution of filters\n * @member {number}\n * @default 1\n * @private\n */\n this.resolution = 1;\n\n // next three fields are created only for root\n // re-assigned for everything else\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @private\n */\n this.sourceFrame = new Rectangle();\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @private\n */\n this.destinationFrame = new Rectangle();\n\n /**\n * Collection of filters\n * @member {PIXI.Filter[]}\n * @private\n */\n this.filters = [];\n};\n\n/**\n * clears the state\n * @private\n */\nFilterState.prototype.clear = function clear ()\n{\n this.target = null;\n this.filters = null;\n this.renderTexture = null;\n};\n\n/**\n * System plugin to the renderer to manage the filters.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar FilterSystem = /*@__PURE__*/(function (System) {\n function FilterSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * List of filters for the FilterSystem\n * @member {Object[]}\n * @readonly\n */\n this.defaultFilterStack = [{}];\n\n /**\n * stores a bunch of PO2 textures used for filtering\n * @member {Object}\n */\n this.texturePool = new RenderTexturePool();\n\n this.texturePool.setScreenSize(renderer.view);\n\n /**\n * a pool for storing filter states, save us creating new ones each tick\n * @member {Object[]}\n */\n this.statePool = [];\n\n /**\n * A very simple geometry used when drawing a filter effect to the screen\n * @member {PIXI.Quad}\n */\n this.quad = new Quad();\n\n /**\n * Quad UVs\n * @member {PIXI.QuadUv}\n */\n this.quadUv = new QuadUv();\n\n /**\n * Temporary rect for maths\n * @type {PIXI.Rectangle}\n */\n this.tempRect = new Rectangle();\n\n /**\n * Active state\n * @member {object}\n */\n this.activeState = {};\n\n /**\n * This uniform group is attached to filter uniforms when used\n * @member {PIXI.UniformGroup}\n * @property {PIXI.Rectangle} outputFrame\n * @property {Float32Array} inputSize\n * @property {Float32Array} inputPixel\n * @property {Float32Array} inputClamp\n * @property {Number} resolution\n * @property {Float32Array} filterArea\n * @property {Fload32Array} filterClamp\n */\n this.globalUniforms = new UniformGroup({\n outputFrame: this.tempRect,\n inputSize: new Float32Array(4),\n inputPixel: new Float32Array(4),\n inputClamp: new Float32Array(4),\n resolution: 1,\n\n // legacy variables\n filterArea: new Float32Array(4),\n filterClamp: new Float32Array(4),\n }, true);\n\n this._pixelsWidth = renderer.view.width;\n this._pixelsHeight = renderer.view.height;\n }\n\n if ( System ) FilterSystem.__proto__ = System;\n FilterSystem.prototype = Object.create( System && System.prototype );\n FilterSystem.prototype.constructor = FilterSystem;\n\n /**\n * Adds a new filter to the System.\n *\n * @param {PIXI.DisplayObject} target - The target of the filter to render.\n * @param {PIXI.Filter[]} filters - The filters to apply.\n */\n FilterSystem.prototype.push = function push (target, filters)\n {\n var renderer = this.renderer;\n var filterStack = this.defaultFilterStack;\n var state = this.statePool.pop() || new FilterState();\n\n var resolution = filters[0].resolution;\n var padding = filters[0].padding;\n var autoFit = filters[0].autoFit;\n var legacy = filters[0].legacy;\n\n for (var i = 1; i < filters.length; i++)\n {\n var filter = filters[i];\n\n // lets use the lowest resolution..\n resolution = Math.min(resolution, filter.resolution);\n // and the largest amount of padding!\n padding = Math.max(padding, filter.padding);\n // only auto fit if all filters are autofit\n autoFit = autoFit || filter.autoFit;\n\n legacy = legacy || filter.legacy;\n }\n\n if (filterStack.length === 1)\n {\n this.defaultFilterStack[0].renderTexture = renderer.renderTexture.current;\n }\n\n filterStack.push(state);\n\n state.resolution = resolution;\n\n state.legacy = legacy;\n\n state.target = target;\n\n state.sourceFrame.copyFrom(target.filterArea || target.getBounds(true));\n\n state.sourceFrame.pad(padding);\n if (autoFit)\n {\n state.sourceFrame.fit(this.renderer.renderTexture.sourceFrame);\n }\n\n // round to whole number based on resolution\n state.sourceFrame.ceil(resolution);\n\n state.renderTexture = this.getOptimalFilterTexture(state.sourceFrame.width, state.sourceFrame.height, resolution);\n state.filters = filters;\n\n state.destinationFrame.width = state.renderTexture.width;\n state.destinationFrame.height = state.renderTexture.height;\n\n state.renderTexture.filterFrame = state.sourceFrame;\n\n renderer.renderTexture.bind(state.renderTexture, state.sourceFrame);// /, state.destinationFrame);\n renderer.renderTexture.clear();\n };\n\n /**\n * Pops off the filter and applies it.\n *\n */\n FilterSystem.prototype.pop = function pop ()\n {\n var filterStack = this.defaultFilterStack;\n var state = filterStack.pop();\n var filters = state.filters;\n\n this.activeState = state;\n\n var globalUniforms = this.globalUniforms.uniforms;\n\n globalUniforms.outputFrame = state.sourceFrame;\n globalUniforms.resolution = state.resolution;\n\n var inputSize = globalUniforms.inputSize;\n var inputPixel = globalUniforms.inputPixel;\n var inputClamp = globalUniforms.inputClamp;\n\n inputSize[0] = state.destinationFrame.width;\n inputSize[1] = state.destinationFrame.height;\n inputSize[2] = 1.0 / inputSize[0];\n inputSize[3] = 1.0 / inputSize[1];\n\n inputPixel[0] = inputSize[0] * state.resolution;\n inputPixel[1] = inputSize[1] * state.resolution;\n inputPixel[2] = 1.0 / inputPixel[0];\n inputPixel[3] = 1.0 / inputPixel[1];\n\n inputClamp[0] = 0.5 * inputPixel[2];\n inputClamp[1] = 0.5 * inputPixel[3];\n inputClamp[2] = (state.sourceFrame.width * inputSize[2]) - (0.5 * inputPixel[2]);\n inputClamp[3] = (state.sourceFrame.height * inputSize[3]) - (0.5 * inputPixel[3]);\n\n // only update the rect if its legacy..\n if (state.legacy)\n {\n var filterArea = globalUniforms.filterArea;\n\n filterArea[0] = state.destinationFrame.width;\n filterArea[1] = state.destinationFrame.height;\n filterArea[2] = state.sourceFrame.x;\n filterArea[3] = state.sourceFrame.y;\n\n globalUniforms.filterClamp = globalUniforms.inputClamp;\n }\n\n this.globalUniforms.update();\n\n var lastState = filterStack[filterStack.length - 1];\n\n if (filters.length === 1)\n {\n filters[0].apply(this, state.renderTexture, lastState.renderTexture, false, state);\n\n this.returnFilterTexture(state.renderTexture);\n }\n else\n {\n var flip = state.renderTexture;\n var flop = this.getOptimalFilterTexture(\n flip.width,\n flip.height,\n state.resolution\n );\n\n flop.filterFrame = flip.filterFrame;\n\n var i = 0;\n\n for (i = 0; i < filters.length - 1; ++i)\n {\n filters[i].apply(this, flip, flop, true, state);\n\n var t = flip;\n\n flip = flop;\n flop = t;\n }\n\n filters[i].apply(this, flip, lastState.renderTexture, false, state);\n\n this.returnFilterTexture(flip);\n this.returnFilterTexture(flop);\n }\n\n state.clear();\n this.statePool.push(state);\n };\n\n /**\n * Draws a filter.\n *\n * @param {PIXI.Filter} filter - The filter to draw.\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it\n */\n FilterSystem.prototype.applyFilter = function applyFilter (filter, input, output, clear)\n {\n var renderer = this.renderer;\n\n renderer.renderTexture.bind(output, output ? output.filterFrame : null);\n\n if (clear)\n {\n // gl.disable(gl.SCISSOR_TEST);\n renderer.renderTexture.clear();\n // gl.enable(gl.SCISSOR_TEST);\n }\n\n // set the uniforms..\n filter.uniforms.uSampler = input;\n filter.uniforms.filterGlobals = this.globalUniforms;\n\n // TODO make it so that the order of this does not matter..\n // because it does at the moment cos of global uniforms.\n // they need to get resynced\n\n renderer.state.set(filter.state);\n renderer.shader.bind(filter);\n\n if (filter.legacy)\n {\n this.quadUv.map(input._frame, input.filterFrame);\n\n renderer.geometry.bind(this.quadUv);\n renderer.geometry.draw(DRAW_MODES.TRIANGLES);\n }\n else\n {\n renderer.geometry.bind(this.quad);\n renderer.geometry.draw(DRAW_MODES.TRIANGLE_STRIP);\n }\n };\n\n /**\n * Multiply _input normalized coordinates_ to this matrix to get _sprite texture normalized coordinates_.\n *\n * Use `outputMatrix * vTextureCoord` in the shader.\n *\n * @param {PIXI.Matrix} outputMatrix - The matrix to output to.\n * @param {PIXI.Sprite} sprite - The sprite to map to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n FilterSystem.prototype.calculateSpriteMatrix = function calculateSpriteMatrix (outputMatrix, sprite)\n {\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n var ref$1 = sprite._texture;\n var orig = ref$1.orig;\n var mappedMatrix = outputMatrix.set(destinationFrame.width, 0, 0,\n destinationFrame.height, sourceFrame.x, sourceFrame.y);\n var worldTransform = sprite.worldTransform.copyTo(Matrix.TEMP_MATRIX);\n\n worldTransform.invert();\n mappedMatrix.prepend(worldTransform);\n mappedMatrix.scale(1.0 / orig.width, 1.0 / orig.height);\n mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y);\n\n return mappedMatrix;\n };\n\n /**\n * Destroys this Filter System.\n */\n FilterSystem.prototype.destroy = function destroy ()\n {\n // Those textures has to be destroyed by RenderTextureSystem or FramebufferSystem\n this.texturePool.clear(false);\n };\n\n /**\n * Gets a Power-of-Two render texture or fullScreen texture\n *\n * @protected\n * @param {number} minWidth - The minimum width of the render texture in real pixels.\n * @param {number} minHeight - The minimum height of the render texture in real pixels.\n * @param {number} [resolution=1] - The resolution of the render texture.\n * @return {PIXI.RenderTexture} The new render texture.\n */\n FilterSystem.prototype.getOptimalFilterTexture = function getOptimalFilterTexture (minWidth, minHeight, resolution)\n {\n if ( resolution === void 0 ) resolution = 1;\n\n return this.texturePool.getOptimalTexture(minWidth, minHeight, resolution);\n };\n\n /**\n * Gets extra render texture to use inside current filter\n * To be compliant with older filters, you can use params in any order\n *\n * @param {PIXI.RenderTexture} [input] renderTexture from which size and resolution will be copied\n * @param {number} [resolution] override resolution of the renderTexture\n * @returns {PIXI.RenderTexture}\n */\n FilterSystem.prototype.getFilterTexture = function getFilterTexture (input, resolution)\n {\n if (typeof input === 'number')\n {\n var swap = input;\n\n input = resolution;\n resolution = swap;\n }\n\n input = input || this.activeState.renderTexture;\n\n var filterTexture = this.texturePool.getOptimalTexture(input.width, input.height, resolution || input.resolution);\n\n filterTexture.filterFrame = input.filterFrame;\n\n return filterTexture;\n };\n\n /**\n * Frees a render texture back into the pool.\n *\n * @param {PIXI.RenderTexture} renderTexture - The renderTarget to free\n */\n FilterSystem.prototype.returnFilterTexture = function returnFilterTexture (renderTexture)\n {\n this.texturePool.returnTexture(renderTexture);\n };\n\n /**\n * Empties the texture pool.\n */\n FilterSystem.prototype.emptyPool = function emptyPool ()\n {\n this.texturePool.clear(true);\n };\n\n /**\n * calls `texturePool.resize()`, affects fullScreen renderTextures\n */\n FilterSystem.prototype.resize = function resize ()\n {\n this.texturePool.setScreenSize(this.renderer.view);\n };\n\n return FilterSystem;\n}(System));\n\n/**\n * Base for a common object renderer that can be used as a\n * system renderer plugin.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI\n */\nvar ObjectRenderer = function ObjectRenderer(renderer)\n{\n /**\n * The renderer this manager works for.\n *\n * @member {PIXI.Renderer}\n */\n this.renderer = renderer;\n};\n\n/**\n * Stub method that should be used to empty the current\n * batch by rendering objects now.\n */\nObjectRenderer.prototype.flush = function flush ()\n{\n // flush!\n};\n\n/**\n * Generic destruction method that frees all resources. This\n * should be called by subclasses.\n */\nObjectRenderer.prototype.destroy = function destroy ()\n{\n this.renderer = null;\n};\n\n/**\n * Stub method that initializes any state required before\n * rendering starts. It is different from the `prerender`\n * signal, which occurs every frame, in that it is called\n * whenever an object requests _this_ renderer specifically.\n */\nObjectRenderer.prototype.start = function start ()\n{\n // set the shader..\n};\n\n/**\n * Stops the renderer. It should free up any state and\n * become dormant.\n */\nObjectRenderer.prototype.stop = function stop ()\n{\n this.flush();\n};\n\n/**\n * Keeps the object to render. It doesn't have to be\n * rendered immediately.\n *\n * @param {PIXI.DisplayObject} object - The object to render.\n */\nObjectRenderer.prototype.render = function render (object) // eslint-disable-line no-unused-vars\n{\n // render the object\n};\n\n/**\n * System plugin to the renderer to manage batching.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar BatchSystem = /*@__PURE__*/(function (System) {\n function BatchSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * An empty renderer.\n *\n * @member {PIXI.ObjectRenderer}\n */\n this.emptyRenderer = new ObjectRenderer(renderer);\n\n /**\n * The currently active ObjectRenderer.\n *\n * @member {PIXI.ObjectRenderer}\n */\n this.currentRenderer = this.emptyRenderer;\n }\n\n if ( System ) BatchSystem.__proto__ = System;\n BatchSystem.prototype = Object.create( System && System.prototype );\n BatchSystem.prototype.constructor = BatchSystem;\n\n /**\n * Changes the current renderer to the one given in parameter\n *\n * @param {PIXI.ObjectRenderer} objectRenderer - The object renderer to use.\n */\n BatchSystem.prototype.setObjectRenderer = function setObjectRenderer (objectRenderer)\n {\n if (this.currentRenderer === objectRenderer)\n {\n return;\n }\n\n this.currentRenderer.stop();\n this.currentRenderer = objectRenderer;\n\n this.currentRenderer.start();\n };\n\n /**\n * This should be called if you wish to do some custom rendering\n * It will basically render anything that may be batched up such as sprites\n */\n BatchSystem.prototype.flush = function flush ()\n {\n this.setObjectRenderer(this.emptyRenderer);\n };\n\n /**\n * Reset the system to an empty renderer\n */\n BatchSystem.prototype.reset = function reset ()\n {\n this.setObjectRenderer(this.emptyRenderer);\n };\n\n return BatchSystem;\n}(System));\n\n/**\n * The maximum support for using WebGL. If a device does not\n * support WebGL version, for instance WebGL 2, it will still\n * attempt to fallback support to WebGL 1. If you want to\n * explicitly remove feature support to target a more stable\n * baseline, prefer a lower environment.\n *\n * Due to {@link https://bugs.chromium.org/p/chromium/issues/detail?id=934823|bug in chromium}\n * we disable webgl2 by default for all non-apple mobile devices.\n *\n * @static\n * @name PREFER_ENV\n * @memberof PIXI.settings\n * @type {number}\n * @default PIXI.ENV.WEBGL2\n */\nsettings.PREFER_ENV = isMobile.any ? ENV.WEBGL : ENV.WEBGL2;\n\nvar CONTEXT_UID = 0;\n\n/**\n * System plugin to the renderer to manage the context.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar ContextSystem = /*@__PURE__*/(function (System) {\n function ContextSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Either 1 or 2 to reflect the WebGL version being used\n * @member {number}\n * @readonly\n */\n this.webGLVersion = 1;\n\n /**\n * Extensions being used\n * @member {object}\n * @readonly\n * @property {WEBGL_draw_buffers} drawBuffers - WebGL v1 extension\n * @property {WEBGL_depth_texture} depthTexture - WebGL v1 extension\n * @property {OES_texture_float} floatTexture - WebGL v1 extension\n * @property {WEBGL_lose_context} loseContext - WebGL v1 extension\n * @property {OES_vertex_array_object} vertexArrayObject - WebGL v1 extension\n * @property {EXT_texture_filter_anisotropic} anisotropicFiltering - WebGL v1 and v2 extension\n */\n this.extensions = {};\n\n // Bind functions\n this.handleContextLost = this.handleContextLost.bind(this);\n this.handleContextRestored = this.handleContextRestored.bind(this);\n\n renderer.view.addEventListener('webglcontextlost', this.handleContextLost, false);\n renderer.view.addEventListener('webglcontextrestored', this.handleContextRestored, false);\n }\n\n if ( System ) ContextSystem.__proto__ = System;\n ContextSystem.prototype = Object.create( System && System.prototype );\n ContextSystem.prototype.constructor = ContextSystem;\n\n var prototypeAccessors = { isLost: { configurable: true } };\n\n /**\n * `true` if the context is lost\n * @member {boolean}\n * @readonly\n */\n prototypeAccessors.isLost.get = function ()\n {\n return (!this.gl || this.gl.isContextLost());\n };\n\n /**\n * Handle the context change event\n * @param {WebGLRenderingContext} gl new webgl context\n */\n ContextSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n this.renderer.gl = gl;\n this.renderer.CONTEXT_UID = CONTEXT_UID++;\n\n // restore a context if it was previously lost\n if (gl.isContextLost() && gl.getExtension('WEBGL_lose_context'))\n {\n gl.getExtension('WEBGL_lose_context').restoreContext();\n }\n };\n\n /**\n * Initialize the context\n *\n * @protected\n * @param {WebGLRenderingContext} gl - WebGL context\n */\n ContextSystem.prototype.initFromContext = function initFromContext (gl)\n {\n this.gl = gl;\n this.validateContext(gl);\n this.renderer.gl = gl;\n this.renderer.CONTEXT_UID = CONTEXT_UID++;\n this.renderer.runners.contextChange.run(gl);\n };\n\n /**\n * Initialize from context options\n *\n * @protected\n * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext\n * @param {object} options - context attributes\n */\n ContextSystem.prototype.initFromOptions = function initFromOptions (options)\n {\n var gl = this.createContext(this.renderer.view, options);\n\n this.initFromContext(gl);\n };\n\n /**\n * Helper class to create a WebGL Context\n *\n * @param canvas {HTMLCanvasElement} the canvas element that we will get the context from\n * @param options {object} An options object that gets passed in to the canvas element containing the context attributes\n * @see https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement/getContext\n * @return {WebGLRenderingContext} the WebGL context\n */\n ContextSystem.prototype.createContext = function createContext (canvas, options)\n {\n var gl;\n\n if (settings.PREFER_ENV >= ENV.WEBGL2)\n {\n gl = canvas.getContext('webgl2', options);\n }\n\n if (gl)\n {\n this.webGLVersion = 2;\n }\n else\n {\n this.webGLVersion = 1;\n\n gl = canvas.getContext('webgl', options)\n || canvas.getContext('experimental-webgl', options);\n\n if (!gl)\n {\n // fail, not able to get a context\n throw new Error('This browser does not support WebGL. Try using the canvas renderer');\n }\n }\n\n this.gl = gl;\n\n this.getExtensions();\n\n return gl;\n };\n\n /**\n * Auto-populate the extensions\n *\n * @protected\n */\n ContextSystem.prototype.getExtensions = function getExtensions ()\n {\n // time to set up default extensions that Pixi uses.\n var ref = this;\n var gl = ref.gl;\n\n if (this.webGLVersion === 1)\n {\n Object.assign(this.extensions, {\n drawBuffers: gl.getExtension('WEBGL_draw_buffers'),\n depthTexture: gl.getExtension('WEBKIT_WEBGL_depth_texture'),\n loseContext: gl.getExtension('WEBGL_lose_context'),\n vertexArrayObject: gl.getExtension('OES_vertex_array_object')\n || gl.getExtension('MOZ_OES_vertex_array_object')\n || gl.getExtension('WEBKIT_OES_vertex_array_object'),\n anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'),\n uint32ElementIndex: gl.getExtension('OES_element_index_uint'),\n // Floats and half-floats\n floatTexture: gl.getExtension('OES_texture_float'),\n floatTextureLinear: gl.getExtension('OES_texture_float_linear'),\n textureHalfFloat: gl.getExtension('OES_texture_half_float'),\n textureHalfFloatLinear: gl.getExtension('OES_texture_half_float_linear'),\n });\n }\n else if (this.webGLVersion === 2)\n {\n Object.assign(this.extensions, {\n anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'),\n // Floats and half-floats\n colorBufferFloat: gl.getExtension('EXT_color_buffer_float'),\n floatTextureLinear: gl.getExtension('OES_texture_float_linear'),\n });\n }\n };\n\n /**\n * Handles a lost webgl context\n *\n * @protected\n * @param {WebGLContextEvent} event - The context lost event.\n */\n ContextSystem.prototype.handleContextLost = function handleContextLost (event)\n {\n event.preventDefault();\n };\n\n /**\n * Handles a restored webgl context\n *\n * @protected\n */\n ContextSystem.prototype.handleContextRestored = function handleContextRestored ()\n {\n this.renderer.runners.contextChange.run(this.gl);\n };\n\n ContextSystem.prototype.destroy = function destroy ()\n {\n var view = this.renderer.view;\n\n // remove listeners\n view.removeEventListener('webglcontextlost', this.handleContextLost);\n view.removeEventListener('webglcontextrestored', this.handleContextRestored);\n\n this.gl.useProgram(null);\n\n if (this.extensions.loseContext)\n {\n this.extensions.loseContext.loseContext();\n }\n };\n\n /**\n * Handle the post-render runner event\n *\n * @protected\n */\n ContextSystem.prototype.postrender = function postrender ()\n {\n this.gl.flush();\n };\n\n /**\n * Validate context\n *\n * @protected\n * @param {WebGLRenderingContext} gl - Render context\n */\n ContextSystem.prototype.validateContext = function validateContext (gl)\n {\n var attributes = gl.getContextAttributes();\n\n // this is going to be fairly simple for now.. but at least we have room to grow!\n if (!attributes.stencil)\n {\n /* eslint-disable max-len */\n\n /* eslint-disable no-console */\n console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly');\n /* eslint-enable no-console */\n\n /* eslint-enable max-len */\n }\n };\n\n Object.defineProperties( ContextSystem.prototype, prototypeAccessors );\n\n return ContextSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage framebuffers.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar FramebufferSystem = /*@__PURE__*/(function (System) {\n function FramebufferSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * A list of managed framebuffers\n * @member {PIXI.Framebuffer[]}\n * @readonly\n */\n this.managedFramebuffers = [];\n\n /**\n * Framebuffer value that shows that we don't know what is bound\n * @member {Framebuffer}\n * @readonly\n */\n this.unknownFramebuffer = new Framebuffer(10, 10);\n }\n\n if ( System ) FramebufferSystem.__proto__ = System;\n FramebufferSystem.prototype = Object.create( System && System.prototype );\n FramebufferSystem.prototype.constructor = FramebufferSystem;\n\n var prototypeAccessors = { size: { configurable: true } };\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n FramebufferSystem.prototype.contextChange = function contextChange ()\n {\n var gl = this.gl = this.renderer.gl;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n this.current = this.unknownFramebuffer;\n this.viewport = new Rectangle();\n this.hasMRT = true;\n this.writeDepthTexture = true;\n\n this.disposeAll(true);\n\n // webgl2\n if (this.renderer.context.webGLVersion === 1)\n {\n // webgl 1!\n var nativeDrawBuffersExtension = this.renderer.context.extensions.drawBuffers;\n var nativeDepthTextureExtension = this.renderer.context.extensions.depthTexture;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n nativeDrawBuffersExtension = null;\n nativeDepthTextureExtension = null;\n }\n\n if (nativeDrawBuffersExtension)\n {\n gl.drawBuffers = function (activeTextures) { return nativeDrawBuffersExtension.drawBuffersWEBGL(activeTextures); };\n }\n else\n {\n this.hasMRT = false;\n gl.drawBuffers = function () {\n // empty\n };\n }\n\n if (!nativeDepthTextureExtension)\n {\n this.writeDepthTexture = false;\n }\n }\n };\n\n /**\n * Bind a framebuffer\n *\n * @param {PIXI.Framebuffer} framebuffer\n * @param {PIXI.Rectangle} [frame] frame, default is framebuffer size\n */\n FramebufferSystem.prototype.bind = function bind (framebuffer, frame)\n {\n var ref = this;\n var gl = ref.gl;\n\n if (framebuffer)\n {\n // TODO caching layer!\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID] || this.initFramebuffer(framebuffer);\n\n if (this.current !== framebuffer)\n {\n this.current = framebuffer;\n gl.bindFramebuffer(gl.FRAMEBUFFER, fbo.framebuffer);\n }\n // make sure all textures are unbound..\n\n // now check for updates...\n if (fbo.dirtyId !== framebuffer.dirtyId)\n {\n fbo.dirtyId = framebuffer.dirtyId;\n\n if (fbo.dirtyFormat !== framebuffer.dirtyFormat)\n {\n fbo.dirtyFormat = framebuffer.dirtyFormat;\n this.updateFramebuffer(framebuffer);\n }\n else if (fbo.dirtySize !== framebuffer.dirtySize)\n {\n fbo.dirtySize = framebuffer.dirtySize;\n this.resizeFramebuffer(framebuffer);\n }\n }\n\n for (var i = 0; i < framebuffer.colorTextures.length; i++)\n {\n if (framebuffer.colorTextures[i].texturePart)\n {\n this.renderer.texture.unbind(framebuffer.colorTextures[i].texture);\n }\n else\n {\n this.renderer.texture.unbind(framebuffer.colorTextures[i]);\n }\n }\n\n if (framebuffer.depthTexture)\n {\n this.renderer.texture.unbind(framebuffer.depthTexture);\n }\n\n if (frame)\n {\n this.setViewport(frame.x, frame.y, frame.width, frame.height);\n }\n else\n {\n this.setViewport(0, 0, framebuffer.width, framebuffer.height);\n }\n }\n else\n {\n if (this.current)\n {\n this.current = null;\n gl.bindFramebuffer(gl.FRAMEBUFFER, null);\n }\n\n if (frame)\n {\n this.setViewport(frame.x, frame.y, frame.width, frame.height);\n }\n else\n {\n this.setViewport(0, 0, this.renderer.width, this.renderer.height);\n }\n }\n };\n\n /**\n * Set the WebGLRenderingContext's viewport.\n *\n * @param {Number} x - X position of viewport\n * @param {Number} y - Y position of viewport\n * @param {Number} width - Width of viewport\n * @param {Number} height - Height of viewport\n */\n FramebufferSystem.prototype.setViewport = function setViewport (x, y, width, height)\n {\n var v = this.viewport;\n\n if (v.width !== width || v.height !== height || v.x !== x || v.y !== y)\n {\n v.x = x;\n v.y = y;\n v.width = width;\n v.height = height;\n\n this.gl.viewport(x, y, width, height);\n }\n };\n\n /**\n * Get the size of the current width and height. Returns object with `width` and `height` values.\n *\n * @member {object}\n * @readonly\n */\n prototypeAccessors.size.get = function ()\n {\n if (this.current)\n {\n // TODO store temp\n return { x: 0, y: 0, width: this.current.width, height: this.current.height };\n }\n\n return { x: 0, y: 0, width: this.renderer.width, height: this.renderer.height };\n };\n\n /**\n * Clear the color of the context\n *\n * @param {Number} r - Red value from 0 to 1\n * @param {Number} g - Green value from 0 to 1\n * @param {Number} b - Blue value from 0 to 1\n * @param {Number} a - Alpha value from 0 to 1\n */\n FramebufferSystem.prototype.clear = function clear (r, g, b, a)\n {\n var ref = this;\n var gl = ref.gl;\n\n // TODO clear color can be set only one right?\n gl.clearColor(r, g, b, a);\n gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);\n };\n\n /**\n * Initialize framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.initFramebuffer = function initFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n // TODO - make this a class?\n var fbo = {\n framebuffer: gl.createFramebuffer(),\n stencil: null,\n dirtyId: 0,\n dirtyFormat: 0,\n dirtySize: 0,\n };\n\n framebuffer.glFramebuffers[this.CONTEXT_UID] = fbo;\n\n this.managedFramebuffers.push(framebuffer);\n framebuffer.disposeRunner.add(this);\n\n return fbo;\n };\n\n /**\n * Resize the framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.resizeFramebuffer = function resizeFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n if (fbo.stencil)\n {\n gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil);\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height);\n }\n\n var colorTextures = framebuffer.colorTextures;\n\n for (var i = 0; i < colorTextures.length; i++)\n {\n this.renderer.texture.bind(colorTextures[i], 0);\n }\n\n if (framebuffer.depthTexture)\n {\n this.renderer.texture.bind(framebuffer.depthTexture, 0);\n }\n };\n\n /**\n * Update the framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.updateFramebuffer = function updateFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n // bind the color texture\n var colorTextures = framebuffer.colorTextures;\n\n var count = colorTextures.length;\n\n if (!gl.drawBuffers)\n {\n count = Math.min(count, 1);\n }\n\n var activeTextures = [];\n\n for (var i = 0; i < count; i++)\n {\n var texture = framebuffer.colorTextures[i];\n\n if (texture.texturePart)\n {\n this.renderer.texture.bind(texture.texture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.COLOR_ATTACHMENT0 + i,\n gl.TEXTURE_CUBE_MAP_NEGATIVE_X + texture.side,\n texture.texture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n else\n {\n this.renderer.texture.bind(texture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.COLOR_ATTACHMENT0 + i,\n gl.TEXTURE_2D,\n texture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n\n activeTextures.push(gl.COLOR_ATTACHMENT0 + i);\n }\n\n if (activeTextures.length > 1)\n {\n gl.drawBuffers(activeTextures);\n }\n\n if (framebuffer.depthTexture)\n {\n var writeDepthTexture = this.writeDepthTexture;\n\n if (writeDepthTexture)\n {\n var depthTexture = framebuffer.depthTexture;\n\n this.renderer.texture.bind(depthTexture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.DEPTH_ATTACHMENT,\n gl.TEXTURE_2D,\n depthTexture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n }\n\n if (!fbo.stencil && (framebuffer.stencil || framebuffer.depth))\n {\n fbo.stencil = gl.createRenderbuffer();\n\n gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil);\n\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height);\n // TODO.. this is depth AND stencil?\n if (!framebuffer.depthTexture)\n { // you can't have both, so one should take priority if enabled\n gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, fbo.stencil);\n }\n }\n };\n\n /**\n * Disposes framebuffer\n * @param {PIXI.Framebuffer} framebuffer framebuffer that has to be disposed of\n * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls\n */\n FramebufferSystem.prototype.disposeFramebuffer = function disposeFramebuffer (framebuffer, contextLost)\n {\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n var gl = this.gl;\n\n if (!fbo)\n {\n return;\n }\n\n delete framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n var index = this.managedFramebuffers.indexOf(framebuffer);\n\n if (index >= 0)\n {\n this.managedFramebuffers.splice(index, 1);\n }\n\n framebuffer.disposeRunner.remove(this);\n\n if (!contextLost)\n {\n gl.deleteFramebuffer(fbo.framebuffer);\n if (fbo.stencil)\n {\n gl.deleteRenderbuffer(fbo.stencil);\n }\n }\n };\n\n /**\n * Disposes all framebuffers, but not textures bound to them\n * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls\n */\n FramebufferSystem.prototype.disposeAll = function disposeAll (contextLost)\n {\n var list = this.managedFramebuffers;\n\n this.managedFramebuffers = [];\n\n for (var i = 0; i < list.length; i++)\n {\n this.disposeFramebuffer(list[i], contextLost);\n }\n };\n\n /**\n * Forcing creation of stencil buffer for current framebuffer, if it wasn't done before.\n * Used by MaskSystem, when its time to use stencil mask for Graphics element.\n *\n * Its an alternative for public lazy `framebuffer.enableStencil`, in case we need stencil without rebind.\n *\n * @private\n */\n FramebufferSystem.prototype.forceStencil = function forceStencil ()\n {\n var framebuffer = this.current;\n\n if (!framebuffer)\n {\n return;\n }\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n if (!fbo || fbo.stencil)\n {\n return;\n }\n framebuffer.enableStencil();\n\n var w = framebuffer.width;\n var h = framebuffer.height;\n var gl = this.gl;\n var stencil = gl.createRenderbuffer();\n\n gl.bindRenderbuffer(gl.RENDERBUFFER, stencil);\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, w, h);\n\n fbo.stencil = stencil;\n gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, stencil);\n };\n\n /**\n * resets framebuffer stored state, binds screen framebuffer\n *\n * should be called before renderTexture reset()\n */\n FramebufferSystem.prototype.reset = function reset ()\n {\n this.current = this.unknownFramebuffer;\n this.viewport = new Rectangle();\n };\n\n Object.defineProperties( FramebufferSystem.prototype, prototypeAccessors );\n\n return FramebufferSystem;\n}(System));\n\nvar GLBuffer = function GLBuffer(buffer)\n{\n this.buffer = buffer;\n this.updateID = -1;\n this.byteLength = -1;\n this.refCount = 0;\n};\n\nvar byteSizeMap$1 = { 5126: 4, 5123: 2, 5121: 1 };\n\n/**\n * System plugin to the renderer to manage geometry.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar GeometrySystem = /*@__PURE__*/(function (System) {\n function GeometrySystem(renderer)\n {\n System.call(this, renderer);\n\n this._activeGeometry = null;\n this._activeVao = null;\n\n /**\n * `true` if we has `*_vertex_array_object` extension\n * @member {boolean}\n * @readonly\n */\n this.hasVao = true;\n\n /**\n * `true` if has `ANGLE_instanced_arrays` extension\n * @member {boolean}\n * @readonly\n */\n this.hasInstance = true;\n\n /**\n * `true` if support `gl.UNSIGNED_INT` in `gl.drawElements` or `gl.drawElementsInstanced`\n * @member {boolean}\n * @readonly\n */\n this.canUseUInt32ElementIndex = false;\n\n /**\n * A cache of currently bound buffer,\n * contains only two members with keys ARRAY_BUFFER and ELEMENT_ARRAY_BUFFER\n * @member {Object.}\n * @readonly\n */\n this.boundBuffers = {};\n\n /**\n * Cache for all geometries by id, used in case renderer gets destroyed or for profiling\n * @member {object}\n * @readonly\n */\n this.managedGeometries = {};\n\n /**\n * Cache for all buffers by id, used in case renderer gets destroyed or for profiling\n * @member {object}\n * @readonly\n */\n this.managedBuffers = {};\n }\n\n if ( System ) GeometrySystem.__proto__ = System;\n GeometrySystem.prototype = Object.create( System && System.prototype );\n GeometrySystem.prototype.constructor = GeometrySystem;\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n GeometrySystem.prototype.contextChange = function contextChange ()\n {\n this.disposeAll(true);\n\n var gl = this.gl = this.renderer.gl;\n var context = this.renderer.context;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n\n // webgl2\n if (!gl.createVertexArray)\n {\n // webgl 1!\n var nativeVaoExtension = this.renderer.context.extensions.vertexArrayObject;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n nativeVaoExtension = null;\n }\n\n if (nativeVaoExtension)\n {\n gl.createVertexArray = function () { return nativeVaoExtension.createVertexArrayOES(); };\n\n gl.bindVertexArray = function (vao) { return nativeVaoExtension.bindVertexArrayOES(vao); };\n\n gl.deleteVertexArray = function (vao) { return nativeVaoExtension.deleteVertexArrayOES(vao); };\n }\n else\n {\n this.hasVao = false;\n gl.createVertexArray = function () {\n // empty\n };\n\n gl.bindVertexArray = function () {\n // empty\n };\n\n gl.deleteVertexArray = function () {\n // empty\n };\n }\n }\n\n if (!gl.vertexAttribDivisor)\n {\n var instanceExt = gl.getExtension('ANGLE_instanced_arrays');\n\n if (instanceExt)\n {\n gl.vertexAttribDivisor = function (a, b) { return instanceExt.vertexAttribDivisorANGLE(a, b); };\n\n gl.drawElementsInstanced = function (a, b, c, d, e) { return instanceExt.drawElementsInstancedANGLE(a, b, c, d, e); };\n\n gl.drawArraysInstanced = function (a, b, c, d) { return instanceExt.drawArraysInstancedANGLE(a, b, c, d); };\n }\n else\n {\n this.hasInstance = false;\n }\n }\n\n this.canUseUInt32ElementIndex = context.webGLVersion === 2 || !!context.extensions.uint32ElementIndex;\n };\n\n /**\n * Binds geometry so that is can be drawn. Creating a Vao if required\n *\n * @param {PIXI.Geometry} geometry instance of geometry to bind\n * @param {PIXI.Shader} [shader] instance of shader to use vao for\n */\n GeometrySystem.prototype.bind = function bind (geometry, shader)\n {\n shader = shader || this.renderer.shader.shader;\n\n var ref = this;\n var gl = ref.gl;\n\n // not sure the best way to address this..\n // currently different shaders require different VAOs for the same geometry\n // Still mulling over the best way to solve this one..\n // will likely need to modify the shader attribute locations at run time!\n var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n\n if (!vaos)\n {\n this.managedGeometries[geometry.id] = geometry;\n geometry.disposeRunner.add(this);\n geometry.glVertexArrayObjects[this.CONTEXT_UID] = vaos = {};\n }\n\n var vao = vaos[shader.program.id] || this.initGeometryVao(geometry, shader.program);\n\n this._activeGeometry = geometry;\n\n if (this._activeVao !== vao)\n {\n this._activeVao = vao;\n\n if (this.hasVao)\n {\n gl.bindVertexArray(vao);\n }\n else\n {\n this.activateVao(geometry, shader.program);\n }\n }\n\n // TODO - optimise later!\n // don't need to loop through if nothing changed!\n // maybe look to add an 'autoupdate' to geometry?\n this.updateBuffers();\n };\n\n /**\n * Reset and unbind any active VAO and geometry\n */\n GeometrySystem.prototype.reset = function reset ()\n {\n this.unbind();\n };\n\n /**\n * Update buffers\n * @protected\n */\n GeometrySystem.prototype.updateBuffers = function updateBuffers ()\n {\n var geometry = this._activeGeometry;\n var ref = this;\n var gl = ref.gl;\n\n for (var i = 0; i < geometry.buffers.length; i++)\n {\n var buffer = geometry.buffers[i];\n\n var glBuffer = buffer._glBuffers[this.CONTEXT_UID];\n\n if (buffer._updateID !== glBuffer.updateID)\n {\n glBuffer.updateID = buffer._updateID;\n\n // TODO can cache this on buffer! maybe added a getter / setter?\n var type = buffer.index ? gl.ELEMENT_ARRAY_BUFFER : gl.ARRAY_BUFFER;\n\n // TODO this could change if the VAO changes...\n // need to come up with a better way to cache..\n // if (this.boundBuffers[type] !== glBuffer)\n // {\n // this.boundBuffers[type] = glBuffer;\n gl.bindBuffer(type, glBuffer.buffer);\n // }\n\n this._boundBuffer = glBuffer;\n\n if (glBuffer.byteLength >= buffer.data.byteLength)\n {\n // offset is always zero for now!\n gl.bufferSubData(type, 0, buffer.data);\n }\n else\n {\n var drawType = buffer.static ? gl.STATIC_DRAW : gl.DYNAMIC_DRAW;\n\n glBuffer.byteLength = buffer.data.byteLength;\n gl.bufferData(type, buffer.data, drawType);\n }\n }\n }\n };\n\n /**\n * Check compability between a geometry and a program\n * @protected\n * @param {PIXI.Geometry} geometry - Geometry instance\n * @param {PIXI.Program} program - Program instance\n */\n GeometrySystem.prototype.checkCompatibility = function checkCompatibility (geometry, program)\n {\n // geometry must have at least all the attributes that the shader requires.\n var geometryAttributes = geometry.attributes;\n var shaderAttributes = program.attributeData;\n\n for (var j in shaderAttributes)\n {\n if (!geometryAttributes[j])\n {\n throw new Error((\"shader and geometry incompatible, geometry missing the \\\"\" + j + \"\\\" attribute\"));\n }\n }\n };\n\n /**\n * Takes a geometry and program and generates a unique signature for them.\n *\n * @param {PIXI.Geometry} geometry to get signature from\n * @param {PIXI.Program} program to test geometry against\n * @returns {String} Unique signature of the geometry and program\n * @protected\n */\n GeometrySystem.prototype.getSignature = function getSignature (geometry, program)\n {\n var attribs = geometry.attributes;\n var shaderAttributes = program.attributeData;\n\n var strings = ['g', geometry.id];\n\n for (var i in attribs)\n {\n if (shaderAttributes[i])\n {\n strings.push(i);\n }\n }\n\n return strings.join('-');\n };\n\n /**\n * Creates or gets Vao with the same structure as the geometry and stores it on the geometry.\n * If vao is created, it is bound automatically.\n *\n * @protected\n * @param {PIXI.Geometry} geometry - Instance of geometry to to generate Vao for\n * @param {PIXI.Program} program - Instance of program\n */\n GeometrySystem.prototype.initGeometryVao = function initGeometryVao (geometry, program)\n {\n this.checkCompatibility(geometry, program);\n\n var gl = this.gl;\n var CONTEXT_UID = this.CONTEXT_UID;\n\n var signature = this.getSignature(geometry, program);\n\n var vaoObjectHash = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n\n var vao = vaoObjectHash[signature];\n\n if (vao)\n {\n // this will give us easy access to the vao\n vaoObjectHash[program.id] = vao;\n\n return vao;\n }\n\n var buffers = geometry.buffers;\n var attributes = geometry.attributes;\n var tempStride = {};\n var tempStart = {};\n\n for (var j in buffers)\n {\n tempStride[j] = 0;\n tempStart[j] = 0;\n }\n\n for (var j$1 in attributes)\n {\n if (!attributes[j$1].size && program.attributeData[j$1])\n {\n attributes[j$1].size = program.attributeData[j$1].size;\n }\n else if (!attributes[j$1].size)\n {\n console.warn((\"PIXI Geometry attribute '\" + j$1 + \"' size cannot be determined (likely the bound shader does not have the attribute)\")); // eslint-disable-line\n }\n\n tempStride[attributes[j$1].buffer] += attributes[j$1].size * byteSizeMap$1[attributes[j$1].type];\n }\n\n for (var j$2 in attributes)\n {\n var attribute = attributes[j$2];\n var attribSize = attribute.size;\n\n if (attribute.stride === undefined)\n {\n if (tempStride[attribute.buffer] === attribSize * byteSizeMap$1[attribute.type])\n {\n attribute.stride = 0;\n }\n else\n {\n attribute.stride = tempStride[attribute.buffer];\n }\n }\n\n if (attribute.start === undefined)\n {\n attribute.start = tempStart[attribute.buffer];\n\n tempStart[attribute.buffer] += attribSize * byteSizeMap$1[attribute.type];\n }\n }\n\n vao = gl.createVertexArray();\n\n gl.bindVertexArray(vao);\n\n // first update - and create the buffers!\n // only create a gl buffer if it actually gets\n for (var i = 0; i < buffers.length; i++)\n {\n var buffer = buffers[i];\n\n if (!buffer._glBuffers[CONTEXT_UID])\n {\n buffer._glBuffers[CONTEXT_UID] = new GLBuffer(gl.createBuffer());\n this.managedBuffers[buffer.id] = buffer;\n buffer.disposeRunner.add(this);\n }\n\n buffer._glBuffers[CONTEXT_UID].refCount++;\n }\n\n // TODO - maybe make this a data object?\n // lets wait to see if we need to first!\n\n this.activateVao(geometry, program);\n\n this._activeVao = vao;\n\n // add it to the cache!\n vaoObjectHash[program.id] = vao;\n vaoObjectHash[signature] = vao;\n\n return vao;\n };\n\n /**\n * Disposes buffer\n * @param {PIXI.Buffer} buffer buffer with data\n * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray\n */\n GeometrySystem.prototype.disposeBuffer = function disposeBuffer (buffer, contextLost)\n {\n if (!this.managedBuffers[buffer.id])\n {\n return;\n }\n\n delete this.managedBuffers[buffer.id];\n\n var glBuffer = buffer._glBuffers[this.CONTEXT_UID];\n var gl = this.gl;\n\n buffer.disposeRunner.remove(this);\n\n if (!glBuffer)\n {\n return;\n }\n\n if (!contextLost)\n {\n gl.deleteBuffer(glBuffer.buffer);\n }\n\n delete buffer._glBuffers[this.CONTEXT_UID];\n };\n\n /**\n * Disposes geometry\n * @param {PIXI.Geometry} geometry Geometry with buffers. Only VAO will be disposed\n * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray\n */\n GeometrySystem.prototype.disposeGeometry = function disposeGeometry (geometry, contextLost)\n {\n if (!this.managedGeometries[geometry.id])\n {\n return;\n }\n\n delete this.managedGeometries[geometry.id];\n\n var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n var gl = this.gl;\n var buffers = geometry.buffers;\n\n geometry.disposeRunner.remove(this);\n\n if (!vaos)\n {\n return;\n }\n\n for (var i = 0; i < buffers.length; i++)\n {\n var buf = buffers[i]._glBuffers[this.CONTEXT_UID];\n\n buf.refCount--;\n if (buf.refCount === 0 && !contextLost)\n {\n this.disposeBuffer(buffers[i], contextLost);\n }\n }\n\n if (!contextLost)\n {\n for (var vaoId in vaos)\n {\n // delete only signatures, everything else are copies\n if (vaoId[0] === 'g')\n {\n var vao = vaos[vaoId];\n\n if (this._activeVao === vao)\n {\n this.unbind();\n }\n gl.deleteVertexArray(vao);\n }\n }\n }\n\n delete geometry.glVertexArrayObjects[this.CONTEXT_UID];\n };\n\n /**\n * dispose all WebGL resources of all managed geometries and buffers\n * @param {boolean} [contextLost=false] If context was lost, we suppress `gl.delete` calls\n */\n GeometrySystem.prototype.disposeAll = function disposeAll (contextLost)\n {\n var all = Object.keys(this.managedGeometries);\n\n for (var i = 0; i < all.length; i++)\n {\n this.disposeGeometry(this.managedGeometries[all[i]], contextLost);\n }\n all = Object.keys(this.managedBuffers);\n for (var i$1 = 0; i$1 < all.length; i$1++)\n {\n this.disposeBuffer(this.managedBuffers[all[i$1]], contextLost);\n }\n };\n\n /**\n * Activate vertex array object\n *\n * @protected\n * @param {PIXI.Geometry} geometry - Geometry instance\n * @param {PIXI.Program} program - Shader program instance\n */\n GeometrySystem.prototype.activateVao = function activateVao (geometry, program)\n {\n var gl = this.gl;\n var CONTEXT_UID = this.CONTEXT_UID;\n var buffers = geometry.buffers;\n var attributes = geometry.attributes;\n\n if (geometry.indexBuffer)\n {\n // first update the index buffer if we have one..\n gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, geometry.indexBuffer._glBuffers[CONTEXT_UID].buffer);\n }\n\n var lastBuffer = null;\n\n // add a new one!\n for (var j in attributes)\n {\n var attribute = attributes[j];\n var buffer = buffers[attribute.buffer];\n var glBuffer = buffer._glBuffers[CONTEXT_UID];\n\n if (program.attributeData[j])\n {\n if (lastBuffer !== glBuffer)\n {\n gl.bindBuffer(gl.ARRAY_BUFFER, glBuffer.buffer);\n\n lastBuffer = glBuffer;\n }\n\n var location = program.attributeData[j].location;\n\n // TODO introduce state again\n // we can optimise this for older devices that have no VAOs\n gl.enableVertexAttribArray(location);\n\n gl.vertexAttribPointer(location,\n attribute.size,\n attribute.type || gl.FLOAT,\n attribute.normalized,\n attribute.stride,\n attribute.start);\n\n if (attribute.instance)\n {\n // TODO calculate instance count based of this...\n if (this.hasInstance)\n {\n gl.vertexAttribDivisor(location, 1);\n }\n else\n {\n throw new Error('geometry error, GPU Instancing is not supported on this device');\n }\n }\n }\n }\n };\n\n /**\n * Draw the geometry\n *\n * @param {Number} type - the type primitive to render\n * @param {Number} [size] - the number of elements to be rendered\n * @param {Number} [start] - Starting index\n * @param {Number} [instanceCount] - the number of instances of the set of elements to execute\n */\n GeometrySystem.prototype.draw = function draw (type, size, start, instanceCount)\n {\n var ref = this;\n var gl = ref.gl;\n var geometry = this._activeGeometry;\n\n // TODO.. this should not change so maybe cache the function?\n\n if (geometry.indexBuffer)\n {\n var byteSize = geometry.indexBuffer.data.BYTES_PER_ELEMENT;\n var glType = byteSize === 2 ? gl.UNSIGNED_SHORT : gl.UNSIGNED_INT;\n\n if (byteSize === 2 || (byteSize === 4 && this.canUseUInt32ElementIndex))\n {\n if (geometry.instanced)\n {\n /* eslint-disable max-len */\n gl.drawElementsInstanced(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize, instanceCount || 1);\n /* eslint-enable max-len */\n }\n else\n {\n /* eslint-disable max-len */\n gl.drawElements(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize);\n /* eslint-enable max-len */\n }\n }\n else\n {\n console.warn('unsupported index buffer type: uint32');\n }\n }\n else if (geometry.instanced)\n {\n // TODO need a better way to calculate size..\n gl.drawArraysInstanced(type, start, size || geometry.getSize(), instanceCount || 1);\n }\n else\n {\n gl.drawArrays(type, start, size || geometry.getSize());\n }\n\n return this;\n };\n\n /**\n * Unbind/reset everything\n * @protected\n */\n GeometrySystem.prototype.unbind = function unbind ()\n {\n this.gl.bindVertexArray(null);\n this._activeVao = null;\n this._activeGeometry = null;\n };\n\n return GeometrySystem;\n}(System));\n\n/**\n * @method compileProgram\n * @private\n * @memberof PIXI.glCore.shader\n * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram}\n * @param vertexSrc {string|string[]} The vertex shader source as an array of strings.\n * @param fragmentSrc {string|string[]} The fragment shader source as an array of strings.\n * @param attributeLocations {Object} An attribute location map that lets you manually set the attribute locations\n * @return {WebGLProgram} the shader program\n */\nfunction compileProgram(gl, vertexSrc, fragmentSrc, attributeLocations)\n{\n var glVertShader = compileShader(gl, gl.VERTEX_SHADER, vertexSrc);\n var glFragShader = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc);\n\n var program = gl.createProgram();\n\n gl.attachShader(program, glVertShader);\n gl.attachShader(program, glFragShader);\n\n // optionally, set the attributes manually for the program rather than letting WebGL decide..\n if (attributeLocations)\n {\n for (var i in attributeLocations)\n {\n gl.bindAttribLocation(program, attributeLocations[i], i);\n }\n }\n\n gl.linkProgram(program);\n\n // if linking fails, then log and cleanup\n if (!gl.getProgramParameter(program, gl.LINK_STATUS))\n {\n console.error('Pixi.js Error: Could not initialize shader.');\n console.error('gl.VALIDATE_STATUS', gl.getProgramParameter(program, gl.VALIDATE_STATUS));\n console.error('gl.getError()', gl.getError());\n\n // if there is a program info log, log it\n if (gl.getProgramInfoLog(program) !== '')\n {\n console.warn('Pixi.js Warning: gl.getProgramInfoLog()', gl.getProgramInfoLog(program));\n }\n\n gl.deleteProgram(program);\n program = null;\n }\n\n // clean up some shaders\n gl.deleteShader(glVertShader);\n gl.deleteShader(glFragShader);\n\n return program;\n}\n\n/**\n * @private\n * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram}\n * @param type {Number} the type, can be either VERTEX_SHADER or FRAGMENT_SHADER\n * @param vertexSrc {string|string[]} The vertex shader source as an array of strings.\n * @return {WebGLShader} the shader\n */\nfunction compileShader(gl, type, src)\n{\n var shader = gl.createShader(type);\n\n gl.shaderSource(shader, src);\n gl.compileShader(shader);\n\n if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS))\n {\n console.warn(src);\n console.error(gl.getShaderInfoLog(shader));\n\n return null;\n }\n\n return shader;\n}\n\n/**\n * @method defaultValue\n * @memberof PIXI.glCore.shader\n * @param type {String} Type of value\n * @param size {Number}\n * @private\n */\nfunction defaultValue(type, size)\n{\n switch (type)\n {\n case 'float':\n return 0;\n\n case 'vec2':\n return new Float32Array(2 * size);\n\n case 'vec3':\n return new Float32Array(3 * size);\n\n case 'vec4':\n return new Float32Array(4 * size);\n\n case 'int':\n case 'sampler2D':\n case 'sampler2DArray':\n return 0;\n\n case 'ivec2':\n return new Int32Array(2 * size);\n\n case 'ivec3':\n return new Int32Array(3 * size);\n\n case 'ivec4':\n return new Int32Array(4 * size);\n\n case 'bool':\n return false;\n\n case 'bvec2':\n\n return booleanArray(2 * size);\n\n case 'bvec3':\n return booleanArray(3 * size);\n\n case 'bvec4':\n return booleanArray(4 * size);\n\n case 'mat2':\n return new Float32Array([1, 0,\n 0, 1]);\n\n case 'mat3':\n return new Float32Array([1, 0, 0,\n 0, 1, 0,\n 0, 0, 1]);\n\n case 'mat4':\n return new Float32Array([1, 0, 0, 0,\n 0, 1, 0, 0,\n 0, 0, 1, 0,\n 0, 0, 0, 1]);\n }\n\n return null;\n}\n\nfunction booleanArray(size)\n{\n var array = new Array(size);\n\n for (var i = 0; i < array.length; i++)\n {\n array[i] = false;\n }\n\n return array;\n}\n\nvar unknownContext = {};\nvar context = unknownContext;\n\n/**\n * returns a little WebGL context to use for program inspection.\n *\n * @static\n * @private\n * @returns {webGL-context} a gl context to test with\n */\nfunction getTestContext()\n{\n if (context === unknownContext || context.isContextLost())\n {\n var canvas = document.createElement('canvas');\n\n var gl;\n\n if (settings.PREFER_ENV >= ENV.WEBGL2)\n {\n gl = canvas.getContext('webgl2', {});\n }\n\n if (!gl)\n {\n gl = canvas.getContext('webgl', {})\n || canvas.getContext('experimental-webgl', {});\n\n if (!gl)\n {\n // fail, not able to get a context\n gl = null;\n }\n else\n {\n // for shader testing..\n gl.getExtension('WEBGL_draw_buffers');\n }\n }\n\n context = gl;\n }\n\n return context;\n}\n\nvar maxFragmentPrecision;\n\nfunction getMaxFragmentPrecision()\n{\n if (!maxFragmentPrecision)\n {\n maxFragmentPrecision = PRECISION.MEDIUM;\n var gl = getTestContext();\n\n if (gl)\n {\n if (gl.getShaderPrecisionFormat)\n {\n var shaderFragment = gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT);\n\n maxFragmentPrecision = shaderFragment.precision ? PRECISION.HIGH : PRECISION.MEDIUM;\n }\n }\n }\n\n return maxFragmentPrecision;\n}\n\n/**\n * Sets the float precision on the shader, ensuring the device supports the request precision.\n * If the precision is already present, it just ensures that the device is able to handle it.\n *\n * @private\n * @param {string} src - The shader source\n * @param {string} requestedPrecision - The request float precision of the shader. Options are 'lowp', 'mediump' or 'highp'.\n * @param {string} maxSupportedPrecision - The maximum precision the shader supports.\n *\n * @return {string} modified shader source\n */\nfunction setPrecision(src, requestedPrecision, maxSupportedPrecision)\n{\n if (src.substring(0, 9) !== 'precision')\n {\n // no precision supplied, so PixiJS will add the requested level.\n var precision = requestedPrecision;\n\n // If highp is requested but not supported, downgrade precision to a level all devices support.\n if (requestedPrecision === PRECISION.HIGH && maxSupportedPrecision !== PRECISION.HIGH)\n {\n precision = PRECISION.MEDIUM;\n }\n\n return (\"precision \" + precision + \" float;\\n\" + src);\n }\n else if (maxSupportedPrecision !== PRECISION.HIGH && src.substring(0, 15) === 'precision highp')\n {\n // precision was supplied, but at a level this device does not support, so downgrading to mediump.\n return src.replace('precision highp', 'precision mediump');\n }\n\n return src;\n}\n\nvar GLSL_TO_SIZE = {\n float: 1,\n vec2: 2,\n vec3: 3,\n vec4: 4,\n\n int: 1,\n ivec2: 2,\n ivec3: 3,\n ivec4: 4,\n\n bool: 1,\n bvec2: 2,\n bvec3: 3,\n bvec4: 4,\n\n mat2: 4,\n mat3: 9,\n mat4: 16,\n\n sampler2D: 1,\n};\n\n/**\n * @private\n * @method mapSize\n * @memberof PIXI.glCore.shader\n * @param type {String}\n * @return {Number}\n */\nfunction mapSize(type)\n{\n return GLSL_TO_SIZE[type];\n}\n\nvar GL_TABLE = null;\n\nvar GL_TO_GLSL_TYPES = {\n FLOAT: 'float',\n FLOAT_VEC2: 'vec2',\n FLOAT_VEC3: 'vec3',\n FLOAT_VEC4: 'vec4',\n\n INT: 'int',\n INT_VEC2: 'ivec2',\n INT_VEC3: 'ivec3',\n INT_VEC4: 'ivec4',\n\n BOOL: 'bool',\n BOOL_VEC2: 'bvec2',\n BOOL_VEC3: 'bvec3',\n BOOL_VEC4: 'bvec4',\n\n FLOAT_MAT2: 'mat2',\n FLOAT_MAT3: 'mat3',\n FLOAT_MAT4: 'mat4',\n\n SAMPLER_2D: 'sampler2D',\n SAMPLER_CUBE: 'samplerCube',\n SAMPLER_2D_ARRAY: 'sampler2DArray',\n};\n\nfunction mapType(gl, type)\n{\n if (!GL_TABLE)\n {\n var typeNames = Object.keys(GL_TO_GLSL_TYPES);\n\n GL_TABLE = {};\n\n for (var i = 0; i < typeNames.length; ++i)\n {\n var tn = typeNames[i];\n\n GL_TABLE[gl[tn]] = GL_TO_GLSL_TYPES[tn];\n }\n }\n\n return GL_TABLE[type];\n}\n\n// cv = CachedValue\n// v = value\n// ud = uniformData\n// uv = uniformValue\n// l = location\nvar GLSL_TO_SINGLE_SETTERS_CACHED = {\n\n float: \"\\n if(cv !== v)\\n {\\n cv.v = v;\\n gl.uniform1f(location, v)\\n }\",\n\n vec2: \"\\n if(cv[0] !== v[0] || cv[1] !== v[1])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n gl.uniform2f(location, v[0], v[1])\\n }\",\n\n vec3: \"\\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n cv[2] = v[2];\\n\\n gl.uniform3f(location, v[0], v[1], v[2])\\n }\",\n\n vec4: 'gl.uniform4f(location, v[0], v[1], v[2], v[3])',\n\n int: 'gl.uniform1i(location, v)',\n ivec2: 'gl.uniform2i(location, v[0], v[1])',\n ivec3: 'gl.uniform3i(location, v[0], v[1], v[2])',\n ivec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])',\n\n bool: 'gl.uniform1i(location, v)',\n bvec2: 'gl.uniform2i(location, v[0], v[1])',\n bvec3: 'gl.uniform3i(location, v[0], v[1], v[2])',\n bvec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])',\n\n mat2: 'gl.uniformMatrix2fv(location, false, v)',\n mat3: 'gl.uniformMatrix3fv(location, false, v)',\n mat4: 'gl.uniformMatrix4fv(location, false, v)',\n\n sampler2D: 'gl.uniform1i(location, v)',\n samplerCube: 'gl.uniform1i(location, v)',\n sampler2DArray: 'gl.uniform1i(location, v)',\n};\n\nvar GLSL_TO_ARRAY_SETTERS = {\n\n float: \"gl.uniform1fv(location, v)\",\n\n vec2: \"gl.uniform2fv(location, v)\",\n vec3: \"gl.uniform3fv(location, v)\",\n vec4: 'gl.uniform4fv(location, v)',\n\n mat4: 'gl.uniformMatrix4fv(location, false, v)',\n mat3: 'gl.uniformMatrix3fv(location, false, v)',\n mat2: 'gl.uniformMatrix2fv(location, false, v)',\n\n int: 'gl.uniform1iv(location, v)',\n ivec2: 'gl.uniform2iv(location, v)',\n ivec3: 'gl.uniform3iv(location, v)',\n ivec4: 'gl.uniform4iv(location, v)',\n\n bool: 'gl.uniform1iv(location, v)',\n bvec2: 'gl.uniform2iv(location, v)',\n bvec3: 'gl.uniform3iv(location, v)',\n bvec4: 'gl.uniform4iv(location, v)',\n\n sampler2D: 'gl.uniform1iv(location, v)',\n samplerCube: 'gl.uniform1iv(location, v)',\n sampler2DArray: 'gl.uniform1iv(location, v)',\n};\n\nfunction generateUniformsSync(group, uniformData)\n{\n var textureCount = 0;\n var func = \"var v = null;\\n var cv = null\\n var gl = renderer.gl\";\n\n for (var i in group.uniforms)\n {\n var data = uniformData[i];\n\n if (!data)\n {\n if (group.uniforms[i].group)\n {\n func += \"\\n renderer.shader.syncUniformGroup(uv.\" + i + \");\\n \";\n }\n\n continue;\n }\n\n // TODO && uniformData[i].value !== 0 <-- do we still need this?\n if (data.type === 'float' && data.size === 1)\n {\n func += \"\\n if(uv.\" + i + \" !== ud.\" + i + \".value)\\n {\\n ud.\" + i + \".value = uv.\" + i + \"\\n gl.uniform1f(ud.\" + i + \".location, uv.\" + i + \")\\n }\\n\";\n }\n /* eslint-disable max-len */\n else if ((data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray)\n /* eslint-disable max-len */\n {\n func += \"\\n renderer.texture.bind(uv.\" + i + \", \" + textureCount + \");\\n\\n if(ud.\" + i + \".value !== \" + textureCount + \")\\n {\\n ud.\" + i + \".value = \" + textureCount + \";\\n gl.uniform1i(ud.\" + i + \".location, \" + textureCount + \");\\n; // eslint-disable-line max-len\\n }\\n\";\n\n textureCount++;\n }\n else if (data.type === 'mat3' && data.size === 1)\n {\n if (group.uniforms[i].a !== undefined)\n {\n // TODO and some smart caching dirty ids here!\n func += \"\\n gl.uniformMatrix3fv(ud.\" + i + \".location, false, uv.\" + i + \".toArray(true));\\n \\n\";\n }\n else\n {\n func += \"\\n gl.uniformMatrix3fv(ud.\" + i + \".location, false, uv.\" + i + \");\\n \\n\";\n }\n }\n else if (data.type === 'vec2' && data.size === 1)\n {\n // TODO - do we need both here?\n // maybe we can get away with only using points?\n if (group.uniforms[i].x !== undefined)\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v.x || cv[1] !== v.y)\\n {\\n cv[0] = v.x;\\n cv[1] = v.y;\\n gl.uniform2f(ud.\" + i + \".location, v.x, v.y);\\n }\\n\";\n }\n else\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v[0] || cv[1] !== v[1])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n gl.uniform2f(ud.\" + i + \".location, v[0], v[1]);\\n }\\n \\n\";\n }\n }\n else if (data.type === 'vec4' && data.size === 1)\n {\n // TODO - do we need both here?\n // maybe we can get away with only using points?\n if (group.uniforms[i].width !== undefined)\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v.x || cv[1] !== v.y || cv[2] !== v.width || cv[3] !== v.height)\\n {\\n cv[0] = v.x;\\n cv[1] = v.y;\\n cv[2] = v.width;\\n cv[3] = v.height;\\n gl.uniform4f(ud.\" + i + \".location, v.x, v.y, v.width, v.height)\\n }\\n\";\n }\n else\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2] || cv[3] !== v[3])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n cv[2] = v[2];\\n cv[3] = v[3];\\n\\n gl.uniform4f(ud.\" + i + \".location, v[0], v[1], v[2], v[3])\\n }\\n \\n\";\n }\n }\n else\n {\n var templateType = (data.size === 1) ? GLSL_TO_SINGLE_SETTERS_CACHED : GLSL_TO_ARRAY_SETTERS;\n\n var template = templateType[data.type].replace('location', (\"ud.\" + i + \".location\"));\n\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n \" + template + \";\\n\";\n }\n }\n\n return new Function('ud', 'uv', 'renderer', func); // eslint-disable-line no-new-func\n}\n\nvar fragTemplate = [\n 'precision mediump float;',\n 'void main(void){',\n 'float test = 0.1;',\n '%forloop%',\n 'gl_FragColor = vec4(0.0);',\n '}' ].join('\\n');\n\nfunction checkMaxIfStatementsInShader(maxIfs, gl)\n{\n if (maxIfs === 0)\n {\n throw new Error('Invalid value of `0` passed to `checkMaxIfStatementsInShader`');\n }\n\n var shader = gl.createShader(gl.FRAGMENT_SHADER);\n\n while (true) // eslint-disable-line no-constant-condition\n {\n var fragmentSrc = fragTemplate.replace(/%forloop%/gi, generateIfTestSrc(maxIfs));\n\n gl.shaderSource(shader, fragmentSrc);\n gl.compileShader(shader);\n\n if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS))\n {\n maxIfs = (maxIfs / 2) | 0;\n }\n else\n {\n // valid!\n break;\n }\n }\n\n return maxIfs;\n}\n\nfunction generateIfTestSrc(maxIfs)\n{\n var src = '';\n\n for (var i = 0; i < maxIfs; ++i)\n {\n if (i > 0)\n {\n src += '\\nelse ';\n }\n\n if (i < maxIfs - 1)\n {\n src += \"if(test == \" + i + \".0){}\";\n }\n }\n\n return src;\n}\n\n// Cache the result to prevent running this over and over\nvar unsafeEval;\n\n/**\n * Not all platforms allow to generate function code (e.g., `new Function`).\n * this provides the platform-level detection.\n *\n * @private\n * @returns {boolean}\n */\nfunction unsafeEvalSupported()\n{\n if (typeof unsafeEval === 'boolean')\n {\n return unsafeEval;\n }\n\n try\n {\n /* eslint-disable no-new-func */\n var func = new Function('param1', 'param2', 'param3', 'return param1[param2] === param3;');\n /* eslint-enable no-new-func */\n\n unsafeEval = func({ a: 'b' }, 'a', 'b') === true;\n }\n catch (e)\n {\n unsafeEval = false;\n }\n\n return unsafeEval;\n}\n\nvar defaultFragment = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n gl_FragColor *= texture2D(uSampler, vTextureCoord);\\n}\";\n\nvar defaultVertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void){\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n vTextureCoord = aTextureCoord;\\n}\\n\";\n\n// import * as from '../systems/shader/shader';\n\nvar UID$3 = 0;\n\nvar nameCache = {};\n\n/**\n * Helper class to create a shader program.\n *\n * @class\n * @memberof PIXI\n */\nvar Program = function Program(vertexSrc, fragmentSrc, name)\n{\n if ( name === void 0 ) name = 'pixi-shader';\n\n this.id = UID$3++;\n\n /**\n * The vertex shader.\n *\n * @member {string}\n */\n this.vertexSrc = vertexSrc || Program.defaultVertexSrc;\n\n /**\n * The fragment shader.\n *\n * @member {string}\n */\n this.fragmentSrc = fragmentSrc || Program.defaultFragmentSrc;\n\n this.vertexSrc = this.vertexSrc.trim();\n this.fragmentSrc = this.fragmentSrc.trim();\n\n if (this.vertexSrc.substring(0, 8) !== '#version')\n {\n name = name.replace(/\\s+/g, '-');\n\n if (nameCache[name])\n {\n nameCache[name]++;\n name += \"-\" + (nameCache[name]);\n }\n else\n {\n nameCache[name] = 1;\n }\n\n this.vertexSrc = \"#define SHADER_NAME \" + name + \"\\n\" + (this.vertexSrc);\n this.fragmentSrc = \"#define SHADER_NAME \" + name + \"\\n\" + (this.fragmentSrc);\n\n this.vertexSrc = setPrecision(this.vertexSrc, settings.PRECISION_VERTEX, PRECISION.HIGH);\n this.fragmentSrc = setPrecision(this.fragmentSrc, settings.PRECISION_FRAGMENT, getMaxFragmentPrecision());\n }\n\n // currently this does not extract structs only default types\n this.extractData(this.vertexSrc, this.fragmentSrc);\n\n // this is where we store shader references..\n this.glPrograms = {};\n\n this.syncUniforms = null;\n};\n\nvar staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } };\n\n/**\n * Extracts the data for a buy creating a small test program\n * or reading the src directly.\n * @protected\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n */\nProgram.prototype.extractData = function extractData (vertexSrc, fragmentSrc)\n{\n var gl = getTestContext();\n\n if (gl)\n {\n var program = compileProgram(gl, vertexSrc, fragmentSrc);\n\n this.attributeData = this.getAttributeData(program, gl);\n this.uniformData = this.getUniformData(program, gl);\n\n gl.deleteProgram(program);\n }\n else\n {\n this.uniformData = {};\n this.attributeData = {};\n }\n};\n\n/**\n * returns the attribute data from the program\n * @private\n *\n * @param {WebGLProgram} [program] - the WebGL program\n * @param {WebGLRenderingContext} [gl] - the WebGL context\n *\n * @returns {object} the attribute data for this program\n */\nProgram.prototype.getAttributeData = function getAttributeData (program, gl)\n{\n var attributes = {};\n var attributesArray = [];\n\n var totalAttributes = gl.getProgramParameter(program, gl.ACTIVE_ATTRIBUTES);\n\n for (var i = 0; i < totalAttributes; i++)\n {\n var attribData = gl.getActiveAttrib(program, i);\n var type = mapType(gl, attribData.type);\n\n /*eslint-disable */\n var data = {\n type: type,\n name: attribData.name,\n size: mapSize(type),\n location: 0,\n };\n /* eslint-enable */\n\n attributes[attribData.name] = data;\n attributesArray.push(data);\n }\n\n attributesArray.sort(function (a, b) { return (a.name > b.name) ? 1 : -1; }); // eslint-disable-line no-confusing-arrow\n\n for (var i$1 = 0; i$1 < attributesArray.length; i$1++)\n {\n attributesArray[i$1].location = i$1;\n }\n\n return attributes;\n};\n\n/**\n * returns the uniform data from the program\n * @private\n *\n * @param {webGL-program} [program] - the webgl program\n * @param {context} [gl] - the WebGL context\n *\n * @returns {object} the uniform data for this program\n */\nProgram.prototype.getUniformData = function getUniformData (program, gl)\n{\n var uniforms = {};\n\n var totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS);\n\n // TODO expose this as a prop?\n // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$');\n // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$');\n\n for (var i = 0; i < totalUniforms; i++)\n {\n var uniformData = gl.getActiveUniform(program, i);\n var name = uniformData.name.replace(/\\[.*?\\]/, '');\n\n var isArray = uniformData.name.match(/\\[.*?\\]/, '');\n var type = mapType(gl, uniformData.type);\n\n /*eslint-disable */\n uniforms[name] = {\n type: type,\n size: uniformData.size,\n isArray:isArray,\n value: defaultValue(type, uniformData.size),\n };\n /* eslint-enable */\n }\n\n return uniforms;\n};\n\n/**\n * The default vertex shader source\n *\n * @static\n * @constant\n * @member {string}\n */\nstaticAccessors.defaultVertexSrc.get = function ()\n{\n return defaultVertex;\n};\n\n/**\n * The default fragment shader source\n *\n * @static\n * @constant\n * @member {string}\n */\nstaticAccessors.defaultFragmentSrc.get = function ()\n{\n return defaultFragment;\n};\n\n/**\n * A short hand function to create a program based of a vertex and fragment shader\n * this method will also check to see if there is a cached program.\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones.\n *\n * @returns {PIXI.Program} an shiny new Pixi shader!\n */\nProgram.from = function from (vertexSrc, fragmentSrc, name)\n{\n var key = vertexSrc + fragmentSrc;\n\n var program = ProgramCache[key];\n\n if (!program)\n {\n ProgramCache[key] = program = new Program(vertexSrc, fragmentSrc, name);\n }\n\n return program;\n};\n\nObject.defineProperties( Program, staticAccessors );\n\n/**\n * A helper class for shaders\n *\n * @class\n * @memberof PIXI\n */\nvar Shader = function Shader(program, uniforms)\n{\n /**\n * Program that the shader uses\n *\n * @member {PIXI.Program}\n */\n this.program = program;\n\n // lets see whats been passed in\n // uniforms should be converted to a uniform group\n if (uniforms)\n {\n if (uniforms instanceof UniformGroup)\n {\n this.uniformGroup = uniforms;\n }\n else\n {\n this.uniformGroup = new UniformGroup(uniforms);\n }\n }\n else\n {\n this.uniformGroup = new UniformGroup({});\n }\n\n // time to build some getters and setters!\n // I guess down the line this could sort of generate an instruction list rather than use dirty ids?\n // does the trick for now though!\n for (var i in program.uniformData)\n {\n if (this.uniformGroup.uniforms[i] instanceof Array)\n {\n this.uniformGroup.uniforms[i] = new Float32Array(this.uniformGroup.uniforms[i]);\n }\n }\n};\n\nvar prototypeAccessors$2 = { uniforms: { configurable: true } };\n\n// TODO move to shader system..\nShader.prototype.checkUniformExists = function checkUniformExists (name, group)\n{\n if (group.uniforms[name])\n {\n return true;\n }\n\n for (var i in group.uniforms)\n {\n var uniform = group.uniforms[i];\n\n if (uniform.group)\n {\n if (this.checkUniformExists(name, uniform))\n {\n return true;\n }\n }\n }\n\n return false;\n};\n\nShader.prototype.destroy = function destroy ()\n{\n // usage count on programs?\n // remove if not used!\n this.uniformGroup = null;\n};\n\n/**\n * Shader uniform values, shortcut for `uniformGroup.uniforms`\n * @readonly\n * @member {object}\n */\nprototypeAccessors$2.uniforms.get = function ()\n{\n return this.uniformGroup.uniforms;\n};\n\n/**\n * A short hand function to create a shader based of a vertex and fragment shader\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones.\n *\n * @returns {PIXI.Shader} an shiny new Pixi shader!\n */\nShader.from = function from (vertexSrc, fragmentSrc, uniforms)\n{\n var program = Program.from(vertexSrc, fragmentSrc);\n\n return new Shader(program, uniforms);\n};\n\nObject.defineProperties( Shader.prototype, prototypeAccessors$2 );\n\n/* eslint-disable max-len */\n\nvar BLEND = 0;\nvar OFFSET = 1;\nvar CULLING = 2;\nvar DEPTH_TEST = 3;\nvar WINDING = 4;\n\n/**\n * This is a WebGL state, and is is passed The WebGL StateManager.\n *\n * Each mesh rendered may require WebGL to be in a different state.\n * For example you may want different blend mode or to enable polygon offsets\n *\n * @class\n * @memberof PIXI\n */\nvar State = function State()\n{\n this.data = 0;\n\n this.blendMode = BLEND_MODES.NORMAL;\n this.polygonOffset = 0;\n\n this.blend = true;\n // this.depthTest = true;\n};\n\nvar prototypeAccessors$3 = { blend: { configurable: true },offsets: { configurable: true },culling: { configurable: true },depthTest: { configurable: true },clockwiseFrontFace: { configurable: true },blendMode: { configurable: true },polygonOffset: { configurable: true } };\n\n/**\n * Activates blending of the computed fragment color values\n *\n * @member {boolean}\n */\nprototypeAccessors$3.blend.get = function ()\n{\n return !!(this.data & (1 << BLEND));\n};\n\nprototypeAccessors$3.blend.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << BLEND)) !== value)\n {\n this.data ^= (1 << BLEND);\n }\n};\n\n/**\n * Activates adding an offset to depth values of polygon's fragments\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.offsets.get = function ()\n{\n return !!(this.data & (1 << OFFSET));\n};\n\nprototypeAccessors$3.offsets.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << OFFSET)) !== value)\n {\n this.data ^= (1 << OFFSET);\n }\n};\n\n/**\n * Activates culling of polygons.\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.culling.get = function ()\n{\n return !!(this.data & (1 << CULLING));\n};\n\nprototypeAccessors$3.culling.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << CULLING)) !== value)\n {\n this.data ^= (1 << CULLING);\n }\n};\n\n/**\n * Activates depth comparisons and updates to the depth buffer.\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.depthTest.get = function ()\n{\n return !!(this.data & (1 << DEPTH_TEST));\n};\n\nprototypeAccessors$3.depthTest.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << DEPTH_TEST)) !== value)\n {\n this.data ^= (1 << DEPTH_TEST);\n }\n};\n\n/**\n * Specifies whether or not front or back-facing polygons can be culled.\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.clockwiseFrontFace.get = function ()\n{\n return !!(this.data & (1 << WINDING));\n};\n\nprototypeAccessors$3.clockwiseFrontFace.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << WINDING)) !== value)\n {\n this.data ^= (1 << WINDING);\n }\n};\n\n/**\n * The blend mode to be applied when this state is set. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n * Setting this mode to anything other than NO_BLEND will automatically switch blending on.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\nprototypeAccessors$3.blendMode.get = function ()\n{\n return this._blendMode;\n};\n\nprototypeAccessors$3.blendMode.set = function (value) // eslint-disable-line require-jsdoc\n{\n this.blend = (value !== BLEND_MODES.NONE);\n this._blendMode = value;\n};\n\n/**\n * The polygon offset. Setting this property to anything other than 0 will automatically enable polygon offset fill.\n *\n * @member {number}\n * @default 0\n */\nprototypeAccessors$3.polygonOffset.get = function ()\n{\n return this._polygonOffset;\n};\n\nprototypeAccessors$3.polygonOffset.set = function (value) // eslint-disable-line require-jsdoc\n{\n this.offsets = !!value;\n this._polygonOffset = value;\n};\n\nState.for2d = function for2d ()\n{\n var state = new State();\n\n state.depthTest = false;\n state.blend = true;\n\n return state;\n};\n\nObject.defineProperties( State.prototype, prototypeAccessors$3 );\n\nvar defaultVertex$1 = \"attribute vec2 aVertexPosition;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nuniform vec4 inputSize;\\nuniform vec4 outputFrame;\\n\\nvec4 filterVertexPosition( void )\\n{\\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\\n\\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\\n}\\n\\nvec2 filterTextureCoord( void )\\n{\\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\\n}\\n\\nvoid main(void)\\n{\\n gl_Position = filterVertexPosition();\\n vTextureCoord = filterTextureCoord();\\n}\\n\";\n\nvar defaultFragment$1 = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n gl_FragColor = texture2D(uSampler, vTextureCoord);\\n}\\n\";\n\n/**\n * Filter is a special type of WebGL shader that is applied to the screen.\n *\n * {@link http://pixijs.io/examples/#/filters/blur-filter.js Example} of the\n * {@link PIXI.filters.BlurFilter BlurFilter}.\n *\n * ### Usage\n * Filters can be applied to any DisplayObject or Container.\n * PixiJS' `FilterSystem` renders the container into temporary Framebuffer,\n * then filter renders it to the screen.\n * Multiple filters can be added to the `filters` array property and stacked on each other.\n *\n * ```\n * const filter = new PIXI.Filter(myShaderVert, myShaderFrag, { myUniform: 0.5 });\n * const container = new PIXI.Container();\n * container.filters = [filter];\n * ```\n *\n * ### Previous Version Differences\n *\n * In PixiJS **v3**, a filter was always applied to _whole screen_.\n *\n * In PixiJS **v4**, a filter can be applied _only part of the screen_.\n * Developers had to create a set of uniforms to deal with coordinates.\n *\n * In PixiJS **v5** combines _both approaches_.\n * Developers can use normal coordinates of v3 and then allow filter to use partial Framebuffers,\n * bringing those extra uniforms into account.\n *\n * Also be aware that we have changed default vertex shader, please consult\n * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}.\n *\n * ### Built-in Uniforms\n *\n * PixiJS viewport uses screen (CSS) coordinates, `(0, 0, renderer.screen.width, renderer.screen.height)`,\n * and `projectionMatrix` uniform maps it to the gl viewport.\n *\n * **uSampler**\n *\n * The most important uniform is the input texture that container was rendered into.\n * _Important note: as with all Framebuffers in PixiJS, both input and output are\n * premultiplied by alpha._\n *\n * By default, input normalized coordinates are passed to fragment shader with `vTextureCoord`.\n * Use it to sample the input.\n *\n * ```\n * const fragment = `\n * varying vec2 vTextureCoord;\n * uniform sampler2D uSampler;\n * void main(void)\n * {\n * gl_FragColor = texture2D(uSampler, vTextureCoord);\n * }\n * `;\n *\n * const myFilter = new PIXI.Filter(null, fragment);\n * ```\n *\n * This filter is just one uniform less than {@link PIXI.filters.AlphaFilter AlphaFilter}.\n *\n * **outputFrame**\n *\n * The `outputFrame` holds the rectangle where filter is applied in screen (CSS) coordinates.\n * It's the same as `renderer.screen` for a fullscreen filter.\n * Only a part of `outputFrame.zw` size of temporary Framebuffer is used,\n * `(0, 0, outputFrame.width, outputFrame.height)`,\n *\n * Filters uses this quad to normalized (0-1) space, its passed into `aVertexPosition` attribute.\n * To calculate vertex position in screen space using normalized (0-1) space:\n *\n * ```\n * vec4 filterVertexPosition( void )\n * {\n * vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n * return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n * }\n * ```\n *\n * **inputSize**\n *\n * Temporary framebuffer is different, it can be either the size of screen, either power-of-two.\n * The `inputSize.xy` are size of temporary framebuffer that holds input.\n * The `inputSize.zw` is inverted, it's a shortcut to evade division inside the shader.\n *\n * Set `inputSize.xy = outputFrame.zw` for a fullscreen filter.\n *\n * To calculate input normalized coordinate, you have to map it to filter normalized space.\n * Multiply by `outputFrame.zw` to get input coordinate.\n * Divide by `inputSize.xy` to get input normalized coordinate.\n *\n * ```\n * vec2 filterTextureCoord( void )\n * {\n * return aVertexPosition * (outputFrame.zw * inputSize.zw); // same as /inputSize.xy\n * }\n * ```\n * **resolution**\n *\n * The `resolution` is the ratio of screen (CSS) pixels to real pixels.\n *\n * **inputPixel**\n *\n * `inputPixel.xy` is the size of framebuffer in real pixels, same as `inputSize.xy * resolution`\n * `inputPixel.zw` is inverted `inputPixel.xy`.\n *\n * It's handy for filters that use neighbour pixels, like {@link PIXI.filters.FXAAFilter FXAAFilter}.\n *\n * **inputClamp**\n *\n * If you try to get info from outside of used part of Framebuffer - you'll get undefined behaviour.\n * For displacements, coordinates has to be clamped.\n *\n * The `inputClamp.xy` is left-top pixel center, you may ignore it, because we use left-top part of Framebuffer\n * `inputClamp.zw` is bottom-right pixel center.\n *\n * ```\n * vec4 color = texture2D(uSampler, clamp(modifigedTextureCoord, inputClamp.xy, inputClamp.zw))\n * ```\n * OR\n * ```\n * vec4 color = texture2D(uSampler, min(modifigedTextureCoord, inputClamp.zw))\n * ```\n *\n * ### Additional Information\n *\n * Complete documentation on Filter usage is located in the\n * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}.\n *\n * Since PixiJS only had a handful of built-in filters, additional filters can be downloaded\n * {@link https://github.com/pixijs/pixi-filters here} from the PixiJS Filters repository.\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.Shader\n */\nvar Filter = /*@__PURE__*/(function (Shader) {\n function Filter(vertexSrc, fragmentSrc, uniforms)\n {\n var program = Program.from(vertexSrc || Filter.defaultVertexSrc,\n fragmentSrc || Filter.defaultFragmentSrc);\n\n Shader.call(this, program, uniforms);\n\n /**\n * The padding of the filter. Some filters require extra space to breath such as a blur.\n * Increasing this will add extra width and height to the bounds of the object that the\n * filter is applied to.\n *\n * @member {number}\n */\n this.padding = 0;\n\n /**\n * The resolution of the filter. Setting this to be lower will lower the quality but\n * increase the performance of the filter.\n *\n * @member {number}\n */\n this.resolution = settings.FILTER_RESOLUTION;\n\n /**\n * If enabled is true the filter is applied, if false it will not.\n *\n * @member {boolean}\n */\n this.enabled = true;\n\n /**\n * If enabled, PixiJS will fit the filter area into boundaries for better performance.\n * Switch it off if it does not work for specific shader.\n *\n * @member {boolean}\n */\n this.autoFit = true;\n\n /**\n * Legacy filters use position and uvs from attributes\n * @member {boolean}\n * @readonly\n */\n this.legacy = !!this.program.attributeData.aTextureCoord;\n\n /**\n * The WebGL state the filter requires to render\n * @member {PIXI.State}\n */\n this.state = new State();\n }\n\n if ( Shader ) Filter.__proto__ = Shader;\n Filter.prototype = Object.create( Shader && Shader.prototype );\n Filter.prototype.constructor = Filter;\n\n var prototypeAccessors = { blendMode: { configurable: true } };\n var staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } };\n\n /**\n * Applies the filter\n *\n * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it\n * @param {object} [currentState] - It's current state of filter.\n * There are some useful properties in the currentState :\n * target, filters, sourceFrame, destinationFrame, renderTarget, resolution\n */\n Filter.prototype.apply = function apply (filterManager, input, output, clear, currentState)\n {\n // do as you please!\n\n filterManager.applyFilter(this, input, output, clear, currentState);\n\n // or just do a regular render..\n };\n\n /**\n * Sets the blendmode of the filter\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n */\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n prototypeAccessors.blendMode.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.state.blendMode = value;\n };\n\n /**\n * The default vertex shader source\n *\n * @static\n * @type {string}\n * @constant\n */\n staticAccessors.defaultVertexSrc.get = function ()\n {\n return defaultVertex$1;\n };\n\n /**\n * The default fragment shader source\n *\n * @static\n * @type {string}\n * @constant\n */\n staticAccessors.defaultFragmentSrc.get = function ()\n {\n return defaultFragment$1;\n };\n\n Object.defineProperties( Filter.prototype, prototypeAccessors );\n Object.defineProperties( Filter, staticAccessors );\n\n return Filter;\n}(Shader));\n\n/**\n * Used for caching shader IDs\n *\n * @static\n * @type {object}\n * @protected\n */\nFilter.SOURCE_KEY_MAP = {};\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 otherMatrix;\\n\\nvarying vec2 vMaskCoord;\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vMaskCoord;\\nvarying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform sampler2D mask;\\nuniform float alpha;\\nuniform float npmAlpha;\\nuniform vec4 maskClamp;\\n\\nvoid main(void)\\n{\\n float clip = step(3.5,\\n step(maskClamp.x, vMaskCoord.x) +\\n step(maskClamp.y, vMaskCoord.y) +\\n step(vMaskCoord.x, maskClamp.z) +\\n step(vMaskCoord.y, maskClamp.w));\\n\\n vec4 original = texture2D(uSampler, vTextureCoord);\\n vec4 masky = texture2D(mask, vMaskCoord);\\n float alphaMul = 1.0 - npmAlpha * (1.0 - masky.a);\\n\\n original *= (alphaMul * masky.r * alpha * clip);\\n\\n gl_FragColor = original;\\n}\\n\";\n\nvar tempMat = new Matrix();\n\n/**\n * Class controls uv mapping from Texture normal space to BaseTexture normal space.\n *\n * Takes `trim` and `rotate` into account. May contain clamp settings for Meshes and TilingSprite.\n *\n * Can be used in Texture `uvMatrix` field, or separately, you can use different clamp settings on the same texture.\n * If you want to add support for texture region of certain feature or filter, that's what you're looking for.\n *\n * Takes track of Texture changes through `_lastTextureID` private field.\n * Use `update()` method call to track it from outside.\n *\n * @see PIXI.Texture\n * @see PIXI.Mesh\n * @see PIXI.TilingSprite\n * @class\n * @memberof PIXI\n */\nvar TextureMatrix = function TextureMatrix(texture, clampMargin)\n{\n this._texture = texture;\n\n /**\n * Matrix operation that converts texture region coords to texture coords\n * @member {PIXI.Matrix}\n * @readonly\n */\n this.mapCoord = new Matrix();\n\n /**\n * Clamp region for normalized coords, left-top pixel center in xy , bottom-right in zw.\n * Calculated based on clampOffset.\n * @member {Float32Array}\n * @readonly\n */\n this.uClampFrame = new Float32Array(4);\n\n /**\n * Normalized clamp offset.\n * Calculated based on clampOffset.\n * @member {Float32Array}\n * @readonly\n */\n this.uClampOffset = new Float32Array(2);\n\n /**\n * Tracks Texture frame changes\n * @member {number}\n * @protected\n */\n this._updateID = -1;\n\n /**\n * Changes frame clamping\n * Works with TilingSprite and Mesh\n * Change to 1.5 if you texture has repeated right and bottom lines, that leads to smoother borders\n *\n * @default 0\n * @member {number}\n */\n this.clampOffset = 0;\n\n /**\n * Changes frame clamping\n * Works with TilingSprite and Mesh\n * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas\n *\n * @default 0.5\n * @member {number}\n */\n this.clampMargin = (typeof clampMargin === 'undefined') ? 0.5 : clampMargin;\n\n /**\n * If texture size is the same as baseTexture\n * @member {boolean}\n * @default false\n * @readonly\n */\n this.isSimple = false;\n};\n\nvar prototypeAccessors$4 = { texture: { configurable: true } };\n\n/**\n * texture property\n * @member {PIXI.Texture}\n */\nprototypeAccessors$4.texture.get = function ()\n{\n return this._texture;\n};\n\nprototypeAccessors$4.texture.set = function (value) // eslint-disable-line require-jsdoc\n{\n this._texture = value;\n this._updateID = -1;\n};\n\n/**\n * Multiplies uvs array to transform\n * @param {Float32Array} uvs mesh uvs\n * @param {Float32Array} [out=uvs] output\n * @returns {Float32Array} output\n */\nTextureMatrix.prototype.multiplyUvs = function multiplyUvs (uvs, out)\n{\n if (out === undefined)\n {\n out = uvs;\n }\n\n var mat = this.mapCoord;\n\n for (var i = 0; i < uvs.length; i += 2)\n {\n var x = uvs[i];\n var y = uvs[i + 1];\n\n out[i] = (x * mat.a) + (y * mat.c) + mat.tx;\n out[i + 1] = (x * mat.b) + (y * mat.d) + mat.ty;\n }\n\n return out;\n};\n\n/**\n * updates matrices if texture was changed\n * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case\n * @returns {boolean} whether or not it was updated\n */\nTextureMatrix.prototype.update = function update (forceUpdate)\n{\n var tex = this._texture;\n\n if (!tex || !tex.valid)\n {\n return false;\n }\n\n if (!forceUpdate\n && this._updateID === tex._updateID)\n {\n return false;\n }\n\n this._updateID = tex._updateID;\n\n var uvs = tex._uvs;\n\n this.mapCoord.set(uvs.x1 - uvs.x0, uvs.y1 - uvs.y0, uvs.x3 - uvs.x0, uvs.y3 - uvs.y0, uvs.x0, uvs.y0);\n\n var orig = tex.orig;\n var trim = tex.trim;\n\n if (trim)\n {\n tempMat.set(orig.width / trim.width, 0, 0, orig.height / trim.height,\n -trim.x / trim.width, -trim.y / trim.height);\n this.mapCoord.append(tempMat);\n }\n\n var texBase = tex.baseTexture;\n var frame = this.uClampFrame;\n var margin = this.clampMargin / texBase.resolution;\n var offset = this.clampOffset;\n\n frame[0] = (tex._frame.x + margin + offset) / texBase.width;\n frame[1] = (tex._frame.y + margin + offset) / texBase.height;\n frame[2] = (tex._frame.x + tex._frame.width - margin + offset) / texBase.width;\n frame[3] = (tex._frame.y + tex._frame.height - margin + offset) / texBase.height;\n this.uClampOffset[0] = offset / texBase.realWidth;\n this.uClampOffset[1] = offset / texBase.realHeight;\n\n this.isSimple = tex._frame.width === texBase.width\n && tex._frame.height === texBase.height\n && tex.rotate === 0;\n\n return true;\n};\n\nObject.defineProperties( TextureMatrix.prototype, prototypeAccessors$4 );\n\n/**\n * This handles a Sprite acting as a mask, as opposed to a Graphic.\n *\n * WebGL only.\n *\n * @class\n * @extends PIXI.Filter\n * @memberof PIXI\n */\nvar SpriteMaskFilter = /*@__PURE__*/(function (Filter) {\n function SpriteMaskFilter(sprite)\n {\n var maskMatrix = new Matrix();\n\n Filter.call(this, vertex, fragment);\n\n sprite.renderable = false;\n\n /**\n * Sprite mask\n * @member {PIXI.Sprite}\n */\n this.maskSprite = sprite;\n\n /**\n * Mask matrix\n * @member {PIXI.Matrix}\n */\n this.maskMatrix = maskMatrix;\n }\n\n if ( Filter ) SpriteMaskFilter.__proto__ = Filter;\n SpriteMaskFilter.prototype = Object.create( Filter && Filter.prototype );\n SpriteMaskFilter.prototype.constructor = SpriteMaskFilter;\n\n /**\n * Applies the filter\n *\n * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it.\n */\n SpriteMaskFilter.prototype.apply = function apply (filterManager, input, output, clear)\n {\n var maskSprite = this.maskSprite;\n var tex = this.maskSprite.texture;\n\n if (!tex.valid)\n {\n return;\n }\n if (!tex.transform)\n {\n // margin = 0.0, let it bleed a bit, shader code becomes easier\n // assuming that atlas textures were made with 1-pixel padding\n tex.transform = new TextureMatrix(tex, 0.0);\n }\n tex.transform.update();\n\n this.uniforms.npmAlpha = tex.baseTexture.premultiplyAlpha ? 0.0 : 1.0;\n this.uniforms.mask = tex;\n // get _normalized sprite texture coords_ and convert them to _normalized atlas texture coords_ with `prepend`\n this.uniforms.otherMatrix = filterManager.calculateSpriteMatrix(this.maskMatrix, maskSprite)\n .prepend(tex.transform.mapCoord);\n this.uniforms.alpha = maskSprite.worldAlpha;\n this.uniforms.maskClamp = tex.transform.uClampFrame;\n\n filterManager.applyFilter(this, input, output, clear);\n };\n\n return SpriteMaskFilter;\n}(Filter));\n\n/**\n * System plugin to the renderer to manage masks.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar MaskSystem = /*@__PURE__*/(function (System) {\n function MaskSystem(renderer)\n {\n System.call(this, renderer);\n\n // TODO - we don't need both!\n /**\n * `true` if current pushed masked is scissor\n * @member {boolean}\n * @readonly\n */\n this.scissor = false;\n\n /**\n * Mask data\n * @member {PIXI.Graphics}\n * @readonly\n */\n this.scissorData = null;\n\n /**\n * Target to mask\n * @member {PIXI.DisplayObject}\n * @readonly\n */\n this.scissorRenderTarget = null;\n\n /**\n * Enable scissor\n * @member {boolean}\n * @readonly\n */\n this.enableScissor = false;\n\n /**\n * Pool of used sprite mask filters\n * @member {PIXI.SpriteMaskFilter[]}\n * @readonly\n */\n this.alphaMaskPool = [];\n\n /**\n * Current index of alpha mask pool\n * @member {number}\n * @default 0\n * @readonly\n */\n this.alphaMaskIndex = 0;\n }\n\n if ( System ) MaskSystem.__proto__ = System;\n MaskSystem.prototype = Object.create( System && System.prototype );\n MaskSystem.prototype.constructor = MaskSystem;\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.DisplayObject} target - Display Object to push the mask to\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.push = function push (target, maskData)\n {\n // TODO the root check means scissor rect will not\n // be used on render textures more info here:\n // https://github.com/pixijs/pixi.js/pull/3545\n\n if (maskData.isSprite)\n {\n this.pushSpriteMask(target, maskData);\n }\n else if (this.enableScissor\n && !this.scissor\n && this.renderer._activeRenderTarget.root\n && !this.renderer.stencil.stencilMaskStack.length\n && maskData.isFastRect())\n {\n var matrix = maskData.worldTransform;\n\n var rot = Math.atan2(matrix.b, matrix.a);\n\n // use the nearest degree!\n rot = Math.round(rot * (180 / Math.PI));\n\n if (rot % 90)\n {\n this.pushStencilMask(maskData);\n }\n else\n {\n this.pushScissorMask(target, maskData);\n }\n }\n else\n {\n this.pushStencilMask(maskData);\n }\n };\n\n /**\n * Removes the last mask from the mask stack and doesn't return it.\n *\n * @param {PIXI.DisplayObject} target - Display Object to pop the mask from\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pop = function pop (target, maskData)\n {\n if (maskData.isSprite)\n {\n this.popSpriteMask(target, maskData);\n }\n else if (this.enableScissor && !this.renderer.stencil.stencilMaskStack.length)\n {\n this.popScissorMask(target, maskData);\n }\n else\n {\n this.popStencilMask(target, maskData);\n }\n };\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.RenderTexture} target - Display Object to push the sprite mask to\n * @param {PIXI.Sprite} maskData - Sprite to be used as the mask\n */\n MaskSystem.prototype.pushSpriteMask = function pushSpriteMask (target, maskData)\n {\n var alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex];\n\n if (!alphaMaskFilter)\n {\n alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex] = [new SpriteMaskFilter(maskData)];\n }\n\n alphaMaskFilter[0].resolution = this.renderer.resolution;\n alphaMaskFilter[0].maskSprite = maskData;\n\n var stashFilterArea = target.filterArea;\n\n target.filterArea = maskData.getBounds(true);\n this.renderer.filter.push(target, alphaMaskFilter);\n target.filterArea = stashFilterArea;\n\n this.alphaMaskIndex++;\n };\n\n /**\n * Removes the last filter from the filter stack and doesn't return it.\n *\n */\n MaskSystem.prototype.popSpriteMask = function popSpriteMask ()\n {\n this.renderer.filter.pop();\n this.alphaMaskIndex--;\n };\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pushStencilMask = function pushStencilMask (maskData)\n {\n this.renderer.batch.flush();\n this.renderer.stencil.pushStencil(maskData);\n };\n\n /**\n * Removes the last filter from the filter stack and doesn't return it.\n *\n */\n MaskSystem.prototype.popStencilMask = function popStencilMask ()\n {\n // this.renderer.currentRenderer.stop();\n this.renderer.stencil.popStencil();\n };\n\n /**\n *\n * @param {PIXI.DisplayObject} target - Display Object to push the mask to\n * @param {PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pushScissorMask = function pushScissorMask (target, maskData)\n {\n maskData.renderable = true;\n\n var renderTarget = this.renderer._activeRenderTarget;\n\n var bounds = maskData.getBounds();\n\n bounds.fit(renderTarget.size);\n maskData.renderable = false;\n\n this.renderer.gl.enable(this.renderer.gl.SCISSOR_TEST);\n\n var resolution = this.renderer.resolution;\n\n this.renderer.gl.scissor(\n bounds.x * resolution,\n (renderTarget.root ? renderTarget.size.height - bounds.y - bounds.height : bounds.y) * resolution,\n bounds.width * resolution,\n bounds.height * resolution\n );\n\n this.scissorRenderTarget = renderTarget;\n this.scissorData = maskData;\n this.scissor = true;\n };\n\n /**\n * Pop scissor mask\n *\n */\n MaskSystem.prototype.popScissorMask = function popScissorMask ()\n {\n this.scissorRenderTarget = null;\n this.scissorData = null;\n this.scissor = false;\n\n // must be scissor!\n var ref = this.renderer;\n var gl = ref.gl;\n\n gl.disable(gl.SCISSOR_TEST);\n };\n\n return MaskSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage stencils (used for masks).\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar StencilSystem = /*@__PURE__*/(function (System) {\n function StencilSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * The mask stack\n * @member {PIXI.Graphics[]}\n */\n this.stencilMaskStack = [];\n }\n\n if ( System ) StencilSystem.__proto__ = System;\n StencilSystem.prototype = Object.create( System && System.prototype );\n StencilSystem.prototype.constructor = StencilSystem;\n\n /**\n * Changes the mask stack that is used by this System.\n *\n * @param {PIXI.Graphics[]} stencilMaskStack - The mask stack\n */\n StencilSystem.prototype.setMaskStack = function setMaskStack (stencilMaskStack)\n {\n var gl = this.renderer.gl;\n var curStackLen = this.stencilMaskStack.length;\n\n this.stencilMaskStack = stencilMaskStack;\n if (stencilMaskStack.length !== curStackLen)\n {\n if (stencilMaskStack.length === 0)\n {\n gl.disable(gl.STENCIL_TEST);\n }\n else\n {\n gl.enable(gl.STENCIL_TEST);\n this._useCurrent();\n }\n }\n };\n\n /**\n * Applies the Mask and adds it to the current stencil stack. @alvin\n *\n * @param {PIXI.Graphics} graphics - The mask\n */\n StencilSystem.prototype.pushStencil = function pushStencil (graphics)\n {\n var gl = this.renderer.gl;\n var prevMaskCount = this.stencilMaskStack.length;\n\n if (prevMaskCount === 0)\n {\n // force use stencil texture in current framebuffer\n this.renderer.framebuffer.forceStencil();\n gl.enable(gl.STENCIL_TEST);\n }\n\n this.stencilMaskStack.push(graphics);\n\n // Increment the reference stencil value where the new mask overlaps with the old ones.\n gl.colorMask(false, false, false, false);\n gl.stencilFunc(gl.EQUAL, prevMaskCount, this._getBitwiseMask());\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.INCR);\n\n graphics.renderable = true;\n graphics.render(this.renderer);\n this.renderer.batch.flush();\n graphics.renderable = false;\n\n this._useCurrent();\n };\n\n /**\n * Removes the last mask from the stencil stack. @alvin\n */\n StencilSystem.prototype.popStencil = function popStencil ()\n {\n var gl = this.renderer.gl;\n var graphics = this.stencilMaskStack.pop();\n\n if (this.stencilMaskStack.length === 0)\n {\n // the stack is empty!\n gl.disable(gl.STENCIL_TEST);\n gl.clear(gl.STENCIL_BUFFER_BIT);\n gl.clearStencil(0);\n }\n else\n {\n // Decrement the reference stencil value where the popped mask overlaps with the other ones\n gl.colorMask(false, false, false, false);\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.DECR);\n\n graphics.renderable = true;\n graphics.render(this.renderer);\n this.renderer.batch.flush();\n graphics.renderable = false;\n\n this._useCurrent();\n }\n };\n\n /**\n * Setup renderer to use the current stencil data.\n * @private\n */\n StencilSystem.prototype._useCurrent = function _useCurrent ()\n {\n var gl = this.renderer.gl;\n\n gl.colorMask(true, true, true, true);\n gl.stencilFunc(gl.EQUAL, this.stencilMaskStack.length, this._getBitwiseMask());\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.KEEP);\n };\n\n /**\n * Fill 1s equal to the number of acitve stencil masks.\n * @private\n * @return {number} The bitwise mask.\n */\n StencilSystem.prototype._getBitwiseMask = function _getBitwiseMask ()\n {\n return (1 << this.stencilMaskStack.length) - 1;\n };\n\n /**\n * Destroys the mask stack.\n *\n */\n StencilSystem.prototype.destroy = function destroy ()\n {\n System.prototype.destroy.call(this, this);\n\n this.stencilMaskStack = null;\n };\n\n return StencilSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage the projection matrix.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\n\nvar ProjectionSystem = /*@__PURE__*/(function (System) {\n function ProjectionSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.destinationFrame = null;\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.sourceFrame = null;\n\n /**\n * Default destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.defaultFrame = null;\n\n /**\n * Project matrix\n * @member {PIXI.Matrix}\n * @readonly\n */\n this.projectionMatrix = new Matrix();\n\n /**\n * A transform that will be appended to the projection matrix\n * if null, nothing will be applied\n * @member {PIXI.Matrix}\n */\n this.transform = null;\n }\n\n if ( System ) ProjectionSystem.__proto__ = System;\n ProjectionSystem.prototype = Object.create( System && System.prototype );\n ProjectionSystem.prototype.constructor = ProjectionSystem;\n\n /**\n * Updates the projection matrix based on a projection frame (which is a rectangle)\n *\n * @param {PIXI.Rectangle} destinationFrame - The destination frame.\n * @param {PIXI.Rectangle} sourceFrame - The source frame.\n * @param {Number} resolution - Resolution\n * @param {boolean} root - If is root\n */\n ProjectionSystem.prototype.update = function update (destinationFrame, sourceFrame, resolution, root)\n {\n this.destinationFrame = destinationFrame || this.destinationFrame || this.defaultFrame;\n this.sourceFrame = sourceFrame || this.sourceFrame || destinationFrame;\n\n this.calculateProjection(this.destinationFrame, this.sourceFrame, resolution, root);\n\n if (this.transform)\n {\n this.projectionMatrix.append(this.transform);\n }\n\n var renderer = this.renderer;\n\n renderer.globalUniforms.uniforms.projectionMatrix = this.projectionMatrix;\n renderer.globalUniforms.update();\n\n // this will work for now\n // but would be sweet to stick and even on the global uniforms..\n if (renderer.shader.shader)\n {\n renderer.shader.syncUniformGroup(renderer.shader.shader.uniforms.globals);\n }\n };\n\n /**\n * Updates the projection matrix based on a projection frame (which is a rectangle)\n *\n * @param {PIXI.Rectangle} destinationFrame - The destination frame.\n * @param {PIXI.Rectangle} sourceFrame - The source frame.\n * @param {Number} resolution - Resolution\n * @param {boolean} root - If is root\n */\n ProjectionSystem.prototype.calculateProjection = function calculateProjection (destinationFrame, sourceFrame, resolution, root)\n {\n var pm = this.projectionMatrix;\n\n // I don't think we will need this line..\n // pm.identity();\n\n if (!root)\n {\n pm.a = (1 / destinationFrame.width * 2) * resolution;\n pm.d = (1 / destinationFrame.height * 2) * resolution;\n\n pm.tx = -1 - (sourceFrame.x * pm.a);\n pm.ty = -1 - (sourceFrame.y * pm.d);\n }\n else\n {\n pm.a = (1 / destinationFrame.width * 2) * resolution;\n pm.d = (-1 / destinationFrame.height * 2) * resolution;\n\n pm.tx = -1 - (sourceFrame.x * pm.a);\n pm.ty = 1 - (sourceFrame.y * pm.d);\n }\n };\n\n /**\n * Sets the transform of the active render target to the given matrix\n *\n * @param {PIXI.Matrix} matrix - The transformation matrix\n */\n ProjectionSystem.prototype.setTransform = function setTransform ()// matrix)\n {\n // this._activeRenderTarget.transform = matrix;\n };\n\n return ProjectionSystem;\n}(System));\n\nvar tempRect = new Rectangle();\n\n/**\n * System plugin to the renderer to manage render textures.\n *\n * Should be added after FramebufferSystem\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\n\nvar RenderTextureSystem = /*@__PURE__*/(function (System) {\n function RenderTextureSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * The clear background color as rgba\n * @member {number[]}\n */\n this.clearColor = renderer._backgroundColorRgba;\n\n // TODO move this property somewhere else!\n /**\n * List of masks for the StencilSystem\n * @member {PIXI.Graphics[]}\n * @readonly\n */\n this.defaultMaskStack = [];\n\n // empty render texture?\n /**\n * Render texture\n * @member {PIXI.RenderTexture}\n * @readonly\n */\n this.current = null;\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.sourceFrame = new Rectangle();\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.destinationFrame = new Rectangle();\n }\n\n if ( System ) RenderTextureSystem.__proto__ = System;\n RenderTextureSystem.prototype = Object.create( System && System.prototype );\n RenderTextureSystem.prototype.constructor = RenderTextureSystem;\n\n /**\n * Bind the current render texture\n * @param {PIXI.RenderTexture} [renderTexture] - RenderTexture to bind, by default its `null`, the screen\n * @param {PIXI.Rectangle} [sourceFrame] - part of screen that is mapped to the renderTexture\n * @param {PIXI.Rectangle} [destinationFrame] - part of renderTexture, by default it has the same size as sourceFrame\n */\n RenderTextureSystem.prototype.bind = function bind (renderTexture, sourceFrame, destinationFrame)\n {\n if ( renderTexture === void 0 ) renderTexture = null;\n\n this.current = renderTexture;\n\n var renderer = this.renderer;\n\n var resolution;\n\n if (renderTexture)\n {\n var baseTexture = renderTexture.baseTexture;\n\n resolution = baseTexture.resolution;\n\n if (!destinationFrame)\n {\n tempRect.width = baseTexture.realWidth;\n tempRect.height = baseTexture.realHeight;\n\n destinationFrame = tempRect;\n }\n\n if (!sourceFrame)\n {\n sourceFrame = destinationFrame;\n }\n\n this.renderer.framebuffer.bind(baseTexture.framebuffer, destinationFrame);\n\n this.renderer.projection.update(destinationFrame, sourceFrame, resolution, false);\n this.renderer.stencil.setMaskStack(baseTexture.stencilMaskStack);\n }\n else\n {\n resolution = this.renderer.resolution;\n\n // TODO these validation checks happen deeper down..\n // thing they can be avoided..\n if (!destinationFrame)\n {\n tempRect.width = renderer.width;\n tempRect.height = renderer.height;\n\n destinationFrame = tempRect;\n }\n\n if (!sourceFrame)\n {\n sourceFrame = destinationFrame;\n }\n\n renderer.framebuffer.bind(null, destinationFrame);\n\n // TODO store this..\n this.renderer.projection.update(destinationFrame, sourceFrame, resolution, true);\n this.renderer.stencil.setMaskStack(this.defaultMaskStack);\n }\n\n this.sourceFrame.copyFrom(sourceFrame);\n\n this.destinationFrame.x = destinationFrame.x / resolution;\n this.destinationFrame.y = destinationFrame.y / resolution;\n\n this.destinationFrame.width = destinationFrame.width / resolution;\n this.destinationFrame.height = destinationFrame.height / resolution;\n\n if (sourceFrame === destinationFrame)\n {\n this.sourceFrame.copyFrom(this.destinationFrame);\n }\n };\n\n /**\n * Erases the render texture and fills the drawing area with a colour\n *\n * @param {number[]} [clearColor] - The color as rgba, default to use the renderer backgroundColor\n * @return {PIXI.Renderer} Returns itself.\n */\n RenderTextureSystem.prototype.clear = function clear (clearColor)\n {\n if (this.current)\n {\n clearColor = clearColor || this.current.baseTexture.clearColor;\n }\n else\n {\n clearColor = clearColor || this.clearColor;\n }\n\n this.renderer.framebuffer.clear(clearColor[0], clearColor[1], clearColor[2], clearColor[3]);\n };\n\n RenderTextureSystem.prototype.resize = function resize ()// screenWidth, screenHeight)\n {\n // resize the root only!\n this.bind(null);\n };\n\n /**\n * Resets renderTexture state\n */\n RenderTextureSystem.prototype.reset = function reset ()\n {\n this.bind(null);\n };\n\n return RenderTextureSystem;\n}(System));\n\n/**\n * Helper class to create a WebGL Program\n *\n * @class\n * @memberof PIXI\n */\nvar GLProgram = function GLProgram(program, uniformData)\n{\n /**\n * The shader program\n *\n * @member {WebGLProgram}\n */\n this.program = program;\n\n /**\n * holds the uniform data which contains uniform locations\n * and current uniform values used for caching and preventing unneeded GPU commands\n * @member {Object}\n */\n this.uniformData = uniformData;\n\n /**\n * uniformGroups holds the various upload functions for the shader. Each uniform group\n * and program have a unique upload function generated.\n * @member {Object}\n */\n this.uniformGroups = {};\n};\n\n/**\n * Destroys this program\n */\nGLProgram.prototype.destroy = function destroy ()\n{\n this.uniformData = null;\n this.uniformGroups = null;\n this.program = null;\n};\n\nvar UID$4 = 0;\n\n/**\n * System plugin to the renderer to manage shaders.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar ShaderSystem = /*@__PURE__*/(function (System) {\n function ShaderSystem(renderer)\n {\n System.call(this, renderer);\n\n // Validation check that this environment support `new Function`\n this.systemCheck();\n\n /**\n * The current WebGL rendering context\n *\n * @member {WebGLRenderingContext}\n */\n this.gl = null;\n\n this.shader = null;\n this.program = null;\n\n /**\n * Cache to holds the generated functions. Stored against UniformObjects unique signature\n * @type {Object}\n * @private\n */\n this.cache = {};\n\n this.id = UID$4++;\n }\n\n if ( System ) ShaderSystem.__proto__ = System;\n ShaderSystem.prototype = Object.create( System && System.prototype );\n ShaderSystem.prototype.constructor = ShaderSystem;\n\n /**\n * Overrideable function by `@pixi/unsafe-eval` to silence\n * throwing an error if platform doesn't support unsafe-evals.\n *\n * @private\n */\n ShaderSystem.prototype.systemCheck = function systemCheck ()\n {\n if (!unsafeEvalSupported())\n {\n throw new Error('Current environment does not allow unsafe-eval, '\n + 'please use @pixi/unsafe-eval module to enable support.');\n }\n };\n\n ShaderSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n this.reset();\n };\n\n /**\n * Changes the current shader to the one given in parameter\n *\n * @param {PIXI.Shader} shader - the new shader\n * @param {boolean} dontSync - false if the shader should automatically sync its uniforms.\n * @returns {PIXI.GLProgram} the glProgram that belongs to the shader.\n */\n ShaderSystem.prototype.bind = function bind (shader, dontSync)\n {\n shader.uniforms.globals = this.renderer.globalUniforms;\n\n var program = shader.program;\n var glProgram = program.glPrograms[this.renderer.CONTEXT_UID] || this.generateShader(shader);\n\n this.shader = shader;\n\n // TODO - some current Pixi plugins bypass this.. so it not safe to use yet..\n if (this.program !== program)\n {\n this.program = program;\n this.gl.useProgram(glProgram.program);\n }\n\n if (!dontSync)\n {\n this.syncUniformGroup(shader.uniformGroup);\n }\n\n return glProgram;\n };\n\n /**\n * Uploads the uniforms values to the currently bound shader.\n *\n * @param {object} uniforms - the uniforms values that be applied to the current shader\n */\n ShaderSystem.prototype.setUniforms = function setUniforms (uniforms)\n {\n var shader = this.shader.program;\n var glProgram = shader.glPrograms[this.renderer.CONTEXT_UID];\n\n shader.syncUniforms(glProgram.uniformData, uniforms, this.renderer);\n };\n\n ShaderSystem.prototype.syncUniformGroup = function syncUniformGroup (group)\n {\n var glProgram = this.getglProgram();\n\n if (!group.static || group.dirtyId !== glProgram.uniformGroups[group.id])\n {\n glProgram.uniformGroups[group.id] = group.dirtyId;\n\n this.syncUniforms(group, glProgram);\n }\n };\n\n /**\n * Overrideable by the @pixi/unsafe-eval package to use static\n * syncUnforms instead.\n *\n * @private\n */\n ShaderSystem.prototype.syncUniforms = function syncUniforms (group, glProgram)\n {\n var syncFunc = group.syncUniforms[this.shader.program.id] || this.createSyncGroups(group);\n\n syncFunc(glProgram.uniformData, group.uniforms, this.renderer);\n };\n\n ShaderSystem.prototype.createSyncGroups = function createSyncGroups (group)\n {\n var id = this.getSignature(group, this.shader.program.uniformData);\n\n if (!this.cache[id])\n {\n this.cache[id] = generateUniformsSync(group, this.shader.program.uniformData);\n }\n\n group.syncUniforms[this.shader.program.id] = this.cache[id];\n\n return group.syncUniforms[this.shader.program.id];\n };\n\n /**\n * Takes a uniform group and data and generates a unique signature for them.\n *\n * @param {PIXI.UniformGroup} group the uniform group to get signature of\n * @param {Object} uniformData uniform information generated by the shader\n * @returns {String} Unique signature of the uniform group\n * @private\n */\n ShaderSystem.prototype.getSignature = function getSignature (group, uniformData)\n {\n var uniforms = group.uniforms;\n\n var strings = [];\n\n for (var i in uniforms)\n {\n strings.push(i);\n\n if (uniformData[i])\n {\n strings.push(uniformData[i].type);\n }\n }\n\n return strings.join('-');\n };\n\n /**\n * Returns the underlying GLShade rof the currently bound shader.\n * This can be handy for when you to have a little more control over the setting of your uniforms.\n *\n * @return {PIXI.GLProgram} the glProgram for the currently bound Shader for this context\n */\n ShaderSystem.prototype.getglProgram = function getglProgram ()\n {\n if (this.shader)\n {\n return this.shader.program.glPrograms[this.renderer.CONTEXT_UID];\n }\n\n return null;\n };\n\n /**\n * Generates a glProgram version of the Shader provided.\n *\n * @private\n * @param {PIXI.Shader} shader the shader that the glProgram will be based on.\n * @return {PIXI.GLProgram} A shiny new glProgram!\n */\n ShaderSystem.prototype.generateShader = function generateShader (shader)\n {\n var gl = this.gl;\n\n var program = shader.program;\n\n var attribMap = {};\n\n for (var i in program.attributeData)\n {\n attribMap[i] = program.attributeData[i].location;\n }\n\n var shaderProgram = compileProgram(gl, program.vertexSrc, program.fragmentSrc, attribMap);\n var uniformData = {};\n\n for (var i$1 in program.uniformData)\n {\n var data = program.uniformData[i$1];\n\n uniformData[i$1] = {\n location: gl.getUniformLocation(shaderProgram, i$1),\n value: defaultValue(data.type, data.size),\n };\n }\n\n var glProgram = new GLProgram(shaderProgram, uniformData);\n\n program.glPrograms[this.renderer.CONTEXT_UID] = glProgram;\n\n return glProgram;\n };\n\n /**\n * Resets ShaderSystem state, does not affect WebGL state\n */\n ShaderSystem.prototype.reset = function reset ()\n {\n this.program = null;\n this.shader = null;\n };\n\n /**\n * Destroys this System and removes all its textures\n */\n ShaderSystem.prototype.destroy = function destroy ()\n {\n // TODO implement destroy method for ShaderSystem\n this.destroyed = true;\n };\n\n return ShaderSystem;\n}(System));\n\n/**\n * Maps gl blend combinations to WebGL.\n *\n * @memberof PIXI\n * @function mapWebGLBlendModesToPixi\n * @private\n * @param {WebGLRenderingContext} gl - The rendering context.\n * @param {number[][]} [array=[]] - The array to output into.\n * @return {number[][]} Mapped modes.\n */\nfunction mapWebGLBlendModesToPixi(gl, array)\n{\n if ( array === void 0 ) array = [];\n\n // TODO - premultiply alpha would be different.\n // add a boolean for that!\n array[BLEND_MODES.NORMAL] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.ADD] = [gl.ONE, gl.ONE];\n array[BLEND_MODES.MULTIPLY] = [gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SCREEN] = [gl.ONE, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.OVERLAY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DARKEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.LIGHTEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR_DODGE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR_BURN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.HARD_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SOFT_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DIFFERENCE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.EXCLUSION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.HUE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SATURATION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.LUMINOSITY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.NONE] = [0, 0];\n\n // not-premultiplied blend modes\n array[BLEND_MODES.NORMAL_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.ADD_NPM] = [gl.SRC_ALPHA, gl.ONE, gl.ONE, gl.ONE];\n array[BLEND_MODES.SCREEN_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n\n // composite operations\n array[BLEND_MODES.SRC_IN] = [gl.DST_ALPHA, gl.ZERO];\n array[BLEND_MODES.SRC_OUT] = [gl.ONE_MINUS_DST_ALPHA, gl.ZERO];\n array[BLEND_MODES.SRC_ATOP] = [gl.DST_ALPHA, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DST_OVER] = [gl.ONE_MINUS_DST_ALPHA, gl.ONE];\n array[BLEND_MODES.DST_IN] = [gl.ZERO, gl.SRC_ALPHA];\n array[BLEND_MODES.DST_OUT] = [gl.ZERO, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DST_ATOP] = [gl.ONE_MINUS_DST_ALPHA, gl.SRC_ALPHA];\n\n // SUBTRACT from flash\n array[BLEND_MODES.SUBTRACT] = [gl.ONE, gl.ONE, gl.ONE, gl.ONE, gl.FUNC_REVERSE_SUBTRACT, gl.FUNC_ADD];\n\n return array;\n}\n\nvar BLEND$1 = 0;\nvar OFFSET$1 = 1;\nvar CULLING$1 = 2;\nvar DEPTH_TEST$1 = 3;\nvar WINDING$1 = 4;\n\n/**\n * System plugin to the renderer to manage WebGL state machines.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar StateSystem = /*@__PURE__*/(function (System) {\n function StateSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * GL context\n * @member {WebGLRenderingContext}\n * @readonly\n */\n this.gl = null;\n\n /**\n * State ID\n * @member {number}\n * @readonly\n */\n this.stateId = 0;\n\n /**\n * Polygon offset\n * @member {number}\n * @readonly\n */\n this.polygonOffset = 0;\n\n /**\n * Blend mode\n * @member {number}\n * @default PIXI.BLEND_MODES.NONE\n * @readonly\n */\n this.blendMode = BLEND_MODES.NONE;\n\n /**\n * Whether current blend equation is different\n * @member {boolean}\n * @protected\n */\n this._blendEq = false;\n\n /**\n * Collection of calls\n * @member {function[]}\n * @readonly\n */\n this.map = [];\n\n // map functions for when we set state..\n this.map[BLEND$1] = this.setBlend;\n this.map[OFFSET$1] = this.setOffset;\n this.map[CULLING$1] = this.setCullFace;\n this.map[DEPTH_TEST$1] = this.setDepthTest;\n this.map[WINDING$1] = this.setFrontFace;\n\n /**\n * Collection of check calls\n * @member {function[]}\n * @readonly\n */\n this.checks = [];\n\n /**\n * Default WebGL State\n * @member {PIXI.State}\n * @readonly\n */\n this.defaultState = new State();\n this.defaultState.blend = true;\n this.defaultState.depth = true;\n }\n\n if ( System ) StateSystem.__proto__ = System;\n StateSystem.prototype = Object.create( System && System.prototype );\n StateSystem.prototype.constructor = StateSystem;\n\n StateSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n\n this.blendModes = mapWebGLBlendModesToPixi(gl);\n\n this.set(this.defaultState);\n\n this.reset();\n };\n\n /**\n * Sets the current state\n *\n * @param {*} state - The state to set.\n */\n StateSystem.prototype.set = function set (state)\n {\n state = state || this.defaultState;\n\n // TODO maybe to an object check? ( this.state === state )?\n if (this.stateId !== state.data)\n {\n var diff = this.stateId ^ state.data;\n var i = 0;\n\n // order from least to most common\n while (diff)\n {\n if (diff & 1)\n {\n // state change!\n this.map[i].call(this, !!(state.data & (1 << i)));\n }\n\n diff = diff >> 1;\n i++;\n }\n\n this.stateId = state.data;\n }\n\n // based on the above settings we check for specific modes..\n // for example if blend is active we check and set the blend modes\n // or of polygon offset is active we check the poly depth.\n for (var i$1 = 0; i$1 < this.checks.length; i$1++)\n {\n this.checks[i$1](this, state);\n }\n };\n\n /**\n * Sets the state, when previous state is unknown\n *\n * @param {*} state - The state to set\n */\n StateSystem.prototype.forceState = function forceState (state)\n {\n state = state || this.defaultState;\n for (var i = 0; i < this.map.length; i++)\n {\n this.map[i].call(this, !!(state.data & (1 << i)));\n }\n for (var i$1 = 0; i$1 < this.checks.length; i$1++)\n {\n this.checks[i$1](this, state);\n }\n\n this.stateId = state.data;\n };\n\n /**\n * Enables or disabled blending.\n *\n * @param {boolean} value - Turn on or off webgl blending.\n */\n StateSystem.prototype.setBlend = function setBlend (value)\n {\n this.updateCheck(StateSystem.checkBlendMode, value);\n\n this.gl[value ? 'enable' : 'disable'](this.gl.BLEND);\n };\n\n /**\n * Enables or disable polygon offset fill\n *\n * @param {boolean} value - Turn on or off webgl polygon offset testing.\n */\n StateSystem.prototype.setOffset = function setOffset (value)\n {\n this.updateCheck(StateSystem.checkPolygonOffset, value);\n\n this.gl[value ? 'enable' : 'disable'](this.gl.POLYGON_OFFSET_FILL);\n };\n\n /**\n * Sets whether to enable or disable depth test.\n *\n * @param {boolean} value - Turn on or off webgl depth testing.\n */\n StateSystem.prototype.setDepthTest = function setDepthTest (value)\n {\n this.gl[value ? 'enable' : 'disable'](this.gl.DEPTH_TEST);\n };\n\n /**\n * Sets whether to enable or disable cull face.\n *\n * @param {boolean} value - Turn on or off webgl cull face.\n */\n StateSystem.prototype.setCullFace = function setCullFace (value)\n {\n this.gl[value ? 'enable' : 'disable'](this.gl.CULL_FACE);\n };\n\n /**\n * Sets the gl front face.\n *\n * @param {boolean} value - true is clockwise and false is counter-clockwise\n */\n StateSystem.prototype.setFrontFace = function setFrontFace (value)\n {\n this.gl.frontFace(this.gl[value ? 'CW' : 'CCW']);\n };\n\n /**\n * Sets the blend mode.\n *\n * @param {number} value - The blend mode to set to.\n */\n StateSystem.prototype.setBlendMode = function setBlendMode (value)\n {\n if (value === this.blendMode)\n {\n return;\n }\n\n this.blendMode = value;\n\n var mode = this.blendModes[value];\n var gl = this.gl;\n\n if (mode.length === 2)\n {\n gl.blendFunc(mode[0], mode[1]);\n }\n else\n {\n gl.blendFuncSeparate(mode[0], mode[1], mode[2], mode[3]);\n }\n if (mode.length === 6)\n {\n this._blendEq = true;\n gl.blendEquationSeparate(mode[4], mode[5]);\n }\n else if (this._blendEq)\n {\n this._blendEq = false;\n gl.blendEquationSeparate(gl.FUNC_ADD, gl.FUNC_ADD);\n }\n };\n\n /**\n * Sets the polygon offset.\n *\n * @param {number} value - the polygon offset\n * @param {number} scale - the polygon offset scale\n */\n StateSystem.prototype.setPolygonOffset = function setPolygonOffset (value, scale)\n {\n this.gl.polygonOffset(value, scale);\n };\n\n // used\n /**\n * Resets all the logic and disables the vaos\n */\n StateSystem.prototype.reset = function reset ()\n {\n this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false);\n\n this.forceState(0);\n\n this._blendEq = true;\n this.blendMode = -1;\n this.setBlendMode(0);\n };\n\n /**\n * checks to see which updates should be checked based on which settings have been activated.\n * For example, if blend is enabled then we should check the blend modes each time the state is changed\n * or if polygon fill is activated then we need to check if the polygon offset changes.\n * The idea is that we only check what we have too.\n *\n * @param {Function} func the checking function to add or remove\n * @param {boolean} value should the check function be added or removed.\n */\n StateSystem.prototype.updateCheck = function updateCheck (func, value)\n {\n var index = this.checks.indexOf(func);\n\n if (value && index === -1)\n {\n this.checks.push(func);\n }\n else if (!value && index !== -1)\n {\n this.checks.splice(index, 1);\n }\n };\n\n /**\n * A private little wrapper function that we call to check the blend mode.\n *\n * @static\n * @private\n * @param {PIXI.StateSystem} System the System to perform the state check on\n * @param {PIXI.State} state the state that the blendMode will pulled from\n */\n StateSystem.checkBlendMode = function checkBlendMode (system, state)\n {\n system.setBlendMode(state.blendMode);\n };\n\n /**\n * A private little wrapper function that we call to check the polygon offset.\n *\n * @static\n * @private\n * @param {PIXI.StateSystem} System the System to perform the state check on\n * @param {PIXI.State} state the state that the blendMode will pulled from\n */\n StateSystem.checkPolygonOffset = function checkPolygonOffset (system, state)\n {\n system.setPolygonOffset(state.polygonOffset, 0);\n };\n\n return StateSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage texture garbage collection on the GPU,\n * ensuring that it does not get clogged up with textures that are no longer being used.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar TextureGCSystem = /*@__PURE__*/(function (System) {\n function TextureGCSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Count\n * @member {number}\n * @readonly\n */\n this.count = 0;\n\n /**\n * Check count\n * @member {number}\n * @readonly\n */\n this.checkCount = 0;\n\n /**\n * Maximum idle time, in seconds\n * @member {number}\n * @see PIXI.settings.GC_MAX_IDLE\n */\n this.maxIdle = settings.GC_MAX_IDLE;\n\n /**\n * Maximum number of item to check\n * @member {number}\n * @see PIXI.settings.GC_MAX_CHECK_COUNT\n */\n this.checkCountMax = settings.GC_MAX_CHECK_COUNT;\n\n /**\n * Current garabage collection mode\n * @member {PIXI.GC_MODES}\n * @see PIXI.settings.GC_MODE\n */\n this.mode = settings.GC_MODE;\n }\n\n if ( System ) TextureGCSystem.__proto__ = System;\n TextureGCSystem.prototype = Object.create( System && System.prototype );\n TextureGCSystem.prototype.constructor = TextureGCSystem;\n\n /**\n * Checks to see when the last time a texture was used\n * if the texture has not been used for a specified amount of time it will be removed from the GPU\n */\n TextureGCSystem.prototype.postrender = function postrender ()\n {\n this.count++;\n\n if (this.mode === GC_MODES.MANUAL)\n {\n return;\n }\n\n this.checkCount++;\n\n if (this.checkCount > this.checkCountMax)\n {\n this.checkCount = 0;\n\n this.run();\n }\n };\n\n /**\n * Checks to see when the last time a texture was used\n * if the texture has not been used for a specified amount of time it will be removed from the GPU\n */\n TextureGCSystem.prototype.run = function run ()\n {\n var tm = this.renderer.texture;\n var managedTextures = tm.managedTextures;\n var wasRemoved = false;\n\n for (var i = 0; i < managedTextures.length; i++)\n {\n var texture = managedTextures[i];\n\n // only supports non generated textures at the moment!\n if (!texture.framebuffer && this.count - texture.touched > this.maxIdle)\n {\n tm.destroyTexture(texture, true);\n managedTextures[i] = null;\n wasRemoved = true;\n }\n }\n\n if (wasRemoved)\n {\n var j = 0;\n\n for (var i$1 = 0; i$1 < managedTextures.length; i$1++)\n {\n if (managedTextures[i$1] !== null)\n {\n managedTextures[j++] = managedTextures[i$1];\n }\n }\n\n managedTextures.length = j;\n }\n };\n\n /**\n * Removes all the textures within the specified displayObject and its children from the GPU\n *\n * @param {PIXI.DisplayObject} displayObject - the displayObject to remove the textures from.\n */\n TextureGCSystem.prototype.unload = function unload (displayObject)\n {\n var tm = this.renderer.textureSystem;\n\n // only destroy non generated textures\n if (displayObject._texture && displayObject._texture._glRenderTargets)\n {\n tm.destroyTexture(displayObject._texture);\n }\n\n for (var i = displayObject.children.length - 1; i >= 0; i--)\n {\n this.unload(displayObject.children[i]);\n }\n };\n\n return TextureGCSystem;\n}(System));\n\n/**\n * Internal texture for WebGL context\n * @class\n * @memberof PIXI\n */\nvar GLTexture = function GLTexture(texture)\n{\n /**\n * The WebGL texture\n * @member {WebGLTexture}\n */\n this.texture = texture;\n\n /**\n * Width of texture that was used in texImage2D\n * @member {number}\n */\n this.width = -1;\n\n /**\n * Height of texture that was used in texImage2D\n * @member {number}\n */\n this.height = -1;\n\n /**\n * Texture contents dirty flag\n * @member {number}\n */\n this.dirtyId = -1;\n\n /**\n * Texture style dirty flag\n * @member {number}\n */\n this.dirtyStyleId = -1;\n\n /**\n * Whether mip levels has to be generated\n * @member {boolean}\n */\n this.mipmap = false;\n\n /**\n * WrapMode copied from baseTexture\n * @member {number}\n */\n this.wrapMode = 33071;\n\n /**\n * Type copied from baseTexture\n * @member {number}\n */\n this.type = 6408;\n\n /**\n * Type copied from baseTexture\n * @member {number}\n */\n this.internalFormat = 5121;\n};\n\n/**\n * System plugin to the renderer to manage textures.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar TextureSystem = /*@__PURE__*/(function (System) {\n function TextureSystem(renderer)\n {\n System.call(this, renderer);\n\n // TODO set to max textures...\n /**\n * Bound textures\n * @member {PIXI.BaseTexture[]}\n * @readonly\n */\n this.boundTextures = [];\n /**\n * Current location\n * @member {number}\n * @readonly\n */\n this.currentLocation = -1;\n\n /**\n * List of managed textures\n * @member {PIXI.BaseTexture[]}\n * @readonly\n */\n this.managedTextures = [];\n\n /**\n * Did someone temper with textures state? We'll overwrite them when we need to unbind something.\n * @member {boolean}\n * @private\n */\n this._unknownBoundTextures = false;\n\n /**\n * BaseTexture value that shows that we don't know what is bound\n * @member {PIXI.BaseTexture}\n * @readonly\n */\n this.unknownTexture = new BaseTexture();\n }\n\n if ( System ) TextureSystem.__proto__ = System;\n TextureSystem.prototype = Object.create( System && System.prototype );\n TextureSystem.prototype.constructor = TextureSystem;\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n TextureSystem.prototype.contextChange = function contextChange ()\n {\n var gl = this.gl = this.renderer.gl;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n\n this.webGLVersion = this.renderer.context.webGLVersion;\n\n var maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS);\n\n this.boundTextures.length = maxTextures;\n\n for (var i = 0; i < maxTextures; i++)\n {\n this.boundTextures[i] = null;\n }\n\n // TODO move this.. to a nice make empty textures class..\n this.emptyTextures = {};\n\n var emptyTexture2D = new GLTexture(gl.createTexture());\n\n gl.bindTexture(gl.TEXTURE_2D, emptyTexture2D.texture);\n gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4));\n\n this.emptyTextures[gl.TEXTURE_2D] = emptyTexture2D;\n this.emptyTextures[gl.TEXTURE_CUBE_MAP] = new GLTexture(gl.createTexture());\n\n gl.bindTexture(gl.TEXTURE_CUBE_MAP, this.emptyTextures[gl.TEXTURE_CUBE_MAP].texture);\n\n for (var i$1 = 0; i$1 < 6; i$1++)\n {\n gl.texImage2D(gl.TEXTURE_CUBE_MAP_POSITIVE_X + i$1, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, null);\n }\n\n gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR);\n gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR);\n\n for (var i$2 = 0; i$2 < this.boundTextures.length; i$2++)\n {\n this.bind(null, i$2);\n }\n };\n\n /**\n * Bind a texture to a specific location\n *\n * If you want to unbind something, please use `unbind(texture)` instead of `bind(null, textureLocation)`\n *\n * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind\n * @param {number} [location=0] - Location to bind at\n */\n TextureSystem.prototype.bind = function bind (texture, location)\n {\n if ( location === void 0 ) location = 0;\n\n var ref = this;\n var gl = ref.gl;\n\n if (texture)\n {\n texture = texture.baseTexture || texture;\n\n if (texture.valid)\n {\n texture.touched = this.renderer.textureGC.count;\n\n var glTexture = texture._glTextures[this.CONTEXT_UID] || this.initTexture(texture);\n\n if (this.currentLocation !== location)\n {\n this.currentLocation = location;\n gl.activeTexture(gl.TEXTURE0 + location);\n }\n\n if (this.boundTextures[location] !== texture)\n {\n gl.bindTexture(texture.target, glTexture.texture);\n }\n\n if (glTexture.dirtyId !== texture.dirtyId)\n {\n this.updateTexture(texture);\n }\n\n this.boundTextures[location] = texture;\n }\n }\n else\n {\n if (this.currentLocation !== location)\n {\n this.currentLocation = location;\n gl.activeTexture(gl.TEXTURE0 + location);\n }\n\n gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[gl.TEXTURE_2D].texture);\n this.boundTextures[location] = null;\n }\n };\n\n /**\n * Resets texture location and bound textures\n *\n * Actual `bind(null, i)` calls will be performed at next `unbind()` call\n */\n TextureSystem.prototype.reset = function reset ()\n {\n this._unknownBoundTextures = true;\n this.currentLocation = -1;\n\n for (var i = 0; i < this.boundTextures.length; i++)\n {\n this.boundTextures[i] = this.unknownTexture;\n }\n };\n\n /**\n * Unbind a texture\n * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind\n */\n TextureSystem.prototype.unbind = function unbind (texture)\n {\n var ref = this;\n var gl = ref.gl;\n var boundTextures = ref.boundTextures;\n\n if (this._unknownBoundTextures)\n {\n this._unknownBoundTextures = false;\n // someone changed webGL state,\n // we have to be sure that our texture does not appear in multi-texture renderer samplers\n for (var i = 0; i < boundTextures.length; i++)\n {\n if (boundTextures[i] === this.unknownTexture)\n {\n this.bind(null, i);\n }\n }\n }\n\n for (var i$1 = 0; i$1 < boundTextures.length; i$1++)\n {\n if (boundTextures[i$1] === texture)\n {\n if (this.currentLocation !== i$1)\n {\n gl.activeTexture(gl.TEXTURE0 + i$1);\n this.currentLocation = i$1;\n }\n\n gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[texture.target].texture);\n boundTextures[i$1] = null;\n }\n }\n };\n\n /**\n * Initialize a texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to initialize\n */\n TextureSystem.prototype.initTexture = function initTexture (texture)\n {\n var glTexture = new GLTexture(this.gl.createTexture());\n\n // guarantee an update..\n glTexture.dirtyId = -1;\n\n texture._glTextures[this.CONTEXT_UID] = glTexture;\n\n this.managedTextures.push(texture);\n texture.on('dispose', this.destroyTexture, this);\n\n return glTexture;\n };\n\n TextureSystem.prototype.initTextureType = function initTextureType (texture, glTexture)\n {\n glTexture.internalFormat = texture.format;\n glTexture.type = texture.type;\n if (this.webGLVersion !== 2)\n {\n return;\n }\n var gl = this.renderer.gl;\n\n if (texture.type === gl.FLOAT\n && texture.format === gl.RGBA)\n {\n glTexture.internalFormat = gl.RGBA32F;\n }\n // that's WebGL1 HALF_FLOAT_OES\n // we have to convert it to WebGL HALF_FLOAT\n if (texture.type === TYPES.HALF_FLOAT)\n {\n glTexture.type = gl.HALF_FLOAT;\n }\n if (glTexture.type === gl.HALF_FLOAT\n && texture.format === gl.RGBA)\n {\n glTexture.internalFormat = gl.RGBA16F;\n }\n };\n\n /**\n * Update a texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to initialize\n */\n TextureSystem.prototype.updateTexture = function updateTexture (texture)\n {\n var glTexture = texture._glTextures[this.CONTEXT_UID];\n\n if (!glTexture)\n {\n return;\n }\n\n var renderer = this.renderer;\n\n this.initTextureType(texture, glTexture);\n\n if (texture.resource && texture.resource.upload(renderer, texture, glTexture))\n ;\n else\n {\n // default, renderTexture-like logic\n var width = texture.realWidth;\n var height = texture.realHeight;\n var gl = renderer.gl;\n\n if (glTexture.width !== width\n || glTexture.height !== height\n || glTexture.dirtyId < 0)\n {\n glTexture.width = width;\n glTexture.height = height;\n\n gl.texImage2D(texture.target, 0,\n glTexture.internalFormat,\n width,\n height,\n 0,\n texture.format,\n glTexture.type,\n null);\n }\n }\n\n // lets only update what changes..\n if (texture.dirtyStyleId !== glTexture.dirtyStyleId)\n {\n this.updateTextureStyle(texture);\n }\n glTexture.dirtyId = texture.dirtyId;\n };\n\n /**\n * Deletes the texture from WebGL\n *\n * @private\n * @param {PIXI.BaseTexture|PIXI.Texture} texture - the texture to destroy\n * @param {boolean} [skipRemove=false] - Whether to skip removing the texture from the TextureManager.\n */\n TextureSystem.prototype.destroyTexture = function destroyTexture (texture, skipRemove)\n {\n var ref = this;\n var gl = ref.gl;\n\n texture = texture.baseTexture || texture;\n\n if (texture._glTextures[this.CONTEXT_UID])\n {\n this.unbind(texture);\n\n gl.deleteTexture(texture._glTextures[this.CONTEXT_UID].texture);\n texture.off('dispose', this.destroyTexture, this);\n\n delete texture._glTextures[this.CONTEXT_UID];\n\n if (!skipRemove)\n {\n var i = this.managedTextures.indexOf(texture);\n\n if (i !== -1)\n {\n removeItems(this.managedTextures, i, 1);\n }\n }\n }\n };\n\n /**\n * Update texture style such as mipmap flag\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to update\n */\n TextureSystem.prototype.updateTextureStyle = function updateTextureStyle (texture)\n {\n var glTexture = texture._glTextures[this.CONTEXT_UID];\n\n if (!glTexture)\n {\n return;\n }\n\n if ((texture.mipmap === MIPMAP_MODES.POW2 || this.webGLVersion !== 2) && !texture.isPowerOfTwo)\n {\n glTexture.mipmap = 0;\n glTexture.wrapMode = WRAP_MODES.CLAMP;\n }\n else\n {\n glTexture.mipmap = texture.mipmap >= 1;\n glTexture.wrapMode = texture.wrapMode;\n }\n\n if (texture.resource && texture.resource.style(this.renderer, texture, glTexture))\n ;\n else\n {\n this.setStyle(texture, glTexture);\n }\n\n glTexture.dirtyStyleId = texture.dirtyStyleId;\n };\n\n /**\n * Set style for texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to update\n * @param {PIXI.GLTexture} glTexture\n */\n TextureSystem.prototype.setStyle = function setStyle (texture, glTexture)\n {\n var gl = this.gl;\n\n if (glTexture.mipmap)\n {\n gl.generateMipmap(texture.target);\n }\n\n gl.texParameteri(texture.target, gl.TEXTURE_WRAP_S, glTexture.wrapMode);\n gl.texParameteri(texture.target, gl.TEXTURE_WRAP_T, glTexture.wrapMode);\n\n if (glTexture.mipmap)\n {\n /* eslint-disable max-len */\n gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR_MIPMAP_LINEAR : gl.NEAREST_MIPMAP_NEAREST);\n /* eslint-disable max-len */\n\n var anisotropicExt = this.renderer.context.extensions.anisotropicFiltering;\n\n if (anisotropicExt && texture.anisotropicLevel > 0 && texture.scaleMode === SCALE_MODES.LINEAR)\n {\n var level = Math.min(texture.anisotropicLevel, gl.getParameter(anisotropicExt.MAX_TEXTURE_MAX_ANISOTROPY_EXT));\n\n gl.texParameterf(texture.target, anisotropicExt.TEXTURE_MAX_ANISOTROPY_EXT, level);\n }\n }\n else\n {\n gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST);\n }\n\n gl.texParameteri(texture.target, gl.TEXTURE_MAG_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST);\n };\n\n return TextureSystem;\n}(System));\n\n/**\n * Systems are individual components to the Renderer pipeline.\n * @namespace PIXI.systems\n */\n\nvar systems = ({\n FilterSystem: FilterSystem,\n BatchSystem: BatchSystem,\n ContextSystem: ContextSystem,\n FramebufferSystem: FramebufferSystem,\n GeometrySystem: GeometrySystem,\n MaskSystem: MaskSystem,\n StencilSystem: StencilSystem,\n ProjectionSystem: ProjectionSystem,\n RenderTextureSystem: RenderTextureSystem,\n ShaderSystem: ShaderSystem,\n StateSystem: StateSystem,\n TextureGCSystem: TextureGCSystem,\n TextureSystem: TextureSystem\n});\n\nvar tempMatrix = new Matrix();\n\n/**\n * The AbstractRenderer is the base for a PixiJS Renderer. It is extended by the {@link PIXI.CanvasRenderer}\n * and {@link PIXI.Renderer} which can be used for rendering a PixiJS scene.\n *\n * @abstract\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar AbstractRenderer = /*@__PURE__*/(function (EventEmitter) {\n function AbstractRenderer(system, options)\n {\n EventEmitter.call(this);\n\n // Add the default render options\n options = Object.assign({}, settings.RENDER_OPTIONS, options);\n\n // Deprecation notice for renderer roundPixels option\n if (options.roundPixels)\n {\n settings.ROUND_PIXELS = options.roundPixels;\n deprecation('5.0.0', 'Renderer roundPixels option is deprecated, please use PIXI.settings.ROUND_PIXELS', 2);\n }\n\n /**\n * The supplied constructor options.\n *\n * @member {Object}\n * @readOnly\n */\n this.options = options;\n\n /**\n * The type of the renderer.\n *\n * @member {number}\n * @default PIXI.RENDERER_TYPE.UNKNOWN\n * @see PIXI.RENDERER_TYPE\n */\n this.type = RENDERER_TYPE.UNKNOWN;\n\n /**\n * Measurements of the screen. (0, 0, screenWidth, screenHeight).\n *\n * Its safe to use as filterArea or hitArea for the whole stage.\n *\n * @member {PIXI.Rectangle}\n */\n this.screen = new Rectangle(0, 0, options.width, options.height);\n\n /**\n * The canvas element that everything is drawn to.\n *\n * @member {HTMLCanvasElement}\n */\n this.view = options.view || document.createElement('canvas');\n\n /**\n * The resolution / device pixel ratio of the renderer.\n *\n * @member {number}\n * @default 1\n */\n this.resolution = options.resolution || settings.RESOLUTION;\n\n /**\n * Whether the render view is transparent.\n *\n * @member {boolean}\n */\n this.transparent = options.transparent;\n\n /**\n * Whether CSS dimensions of canvas view should be resized to screen dimensions automatically.\n *\n * @member {boolean}\n */\n this.autoDensity = options.autoDensity || options.autoResize || false;\n // autoResize is deprecated, provides fallback support\n\n /**\n * The value of the preserveDrawingBuffer flag affects whether or not the contents of\n * the stencil buffer is retained after rendering.\n *\n * @member {boolean}\n */\n this.preserveDrawingBuffer = options.preserveDrawingBuffer;\n\n /**\n * This sets if the CanvasRenderer will clear the canvas or not before the new render pass.\n * If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every\n * frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect\n * to clear the canvas every frame. Disable this by setting this to false. For example, if\n * your game has a canvas filling background image you often don't need this set.\n *\n * @member {boolean}\n * @default\n */\n this.clearBeforeRender = options.clearBeforeRender;\n\n /**\n * The background color as a number.\n *\n * @member {number}\n * @protected\n */\n this._backgroundColor = 0x000000;\n\n /**\n * The background color as an [R, G, B] array.\n *\n * @member {number[]}\n * @protected\n */\n this._backgroundColorRgba = [0, 0, 0, 0];\n\n /**\n * The background color as a string.\n *\n * @member {string}\n * @protected\n */\n this._backgroundColorString = '#000000';\n\n this.backgroundColor = options.backgroundColor || this._backgroundColor; // run bg color setter\n\n /**\n * This temporary display object used as the parent of the currently being rendered item.\n *\n * @member {PIXI.DisplayObject}\n * @protected\n */\n this._tempDisplayObjectParent = new Container();\n\n /**\n * The last root object that the renderer tried to render.\n *\n * @member {PIXI.DisplayObject}\n * @protected\n */\n this._lastObjectRendered = this._tempDisplayObjectParent;\n\n /**\n * Collection of plugins.\n * @readonly\n * @member {object}\n */\n this.plugins = {};\n }\n\n if ( EventEmitter ) AbstractRenderer.__proto__ = EventEmitter;\n AbstractRenderer.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n AbstractRenderer.prototype.constructor = AbstractRenderer;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true },backgroundColor: { configurable: true } };\n\n /**\n * Initialize the plugins.\n *\n * @protected\n * @param {object} staticMap - The dictionary of statically saved plugins.\n */\n AbstractRenderer.prototype.initPlugins = function initPlugins (staticMap)\n {\n for (var o in staticMap)\n {\n this.plugins[o] = new (staticMap[o])(this);\n }\n };\n\n /**\n * Same as view.width, actual number of pixels in the canvas by horizontal.\n *\n * @member {number}\n * @readonly\n * @default 800\n */\n prototypeAccessors.width.get = function ()\n {\n return this.view.width;\n };\n\n /**\n * Same as view.height, actual number of pixels in the canvas by vertical.\n *\n * @member {number}\n * @readonly\n * @default 600\n */\n prototypeAccessors.height.get = function ()\n {\n return this.view.height;\n };\n\n /**\n * Resizes the screen and canvas to the specified width and height.\n * Canvas dimensions are multiplied by resolution.\n *\n * @param {number} screenWidth - The new width of the screen.\n * @param {number} screenHeight - The new height of the screen.\n */\n AbstractRenderer.prototype.resize = function resize (screenWidth, screenHeight)\n {\n this.screen.width = screenWidth;\n this.screen.height = screenHeight;\n\n this.view.width = screenWidth * this.resolution;\n this.view.height = screenHeight * this.resolution;\n\n if (this.autoDensity)\n {\n this.view.style.width = screenWidth + \"px\";\n this.view.style.height = screenHeight + \"px\";\n }\n };\n\n /**\n * Useful function that returns a texture of the display object that can then be used to create sprites\n * This can be quite useful if your displayObject is complicated and needs to be reused multiple times.\n *\n * @param {PIXI.DisplayObject} displayObject - The displayObject the object will be generated from.\n * @param {number} scaleMode - Should be one of the scaleMode consts.\n * @param {number} resolution - The resolution / device pixel ratio of the texture being generated.\n * @param {PIXI.Rectangle} [region] - The region of the displayObject, that shall be rendered,\n * if no region is specified, defaults to the local bounds of the displayObject.\n * @return {PIXI.RenderTexture} A texture of the graphics object.\n */\n AbstractRenderer.prototype.generateTexture = function generateTexture (displayObject, scaleMode, resolution, region)\n {\n region = region || displayObject.getLocalBounds();\n\n // minimum texture size is 1x1, 0x0 will throw an error\n if (region.width === 0) { region.width = 1; }\n if (region.height === 0) { region.height = 1; }\n\n var renderTexture = RenderTexture.create(region.width | 0, region.height | 0, scaleMode, resolution);\n\n tempMatrix.tx = -region.x;\n tempMatrix.ty = -region.y;\n\n this.render(displayObject, renderTexture, false, tempMatrix, !!displayObject.parent);\n\n return renderTexture;\n };\n\n /**\n * Removes everything from the renderer and optionally removes the Canvas DOM element.\n *\n * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM.\n */\n AbstractRenderer.prototype.destroy = function destroy (removeView)\n {\n for (var o in this.plugins)\n {\n this.plugins[o].destroy();\n this.plugins[o] = null;\n }\n\n if (removeView && this.view.parentNode)\n {\n this.view.parentNode.removeChild(this.view);\n }\n\n this.plugins = null;\n\n this.type = RENDERER_TYPE.UNKNOWN;\n\n this.view = null;\n\n this.screen = null;\n\n this.resolution = 0;\n\n this.transparent = false;\n\n this.autoDensity = false;\n\n this.blendModes = null;\n\n this.options = null;\n\n this.preserveDrawingBuffer = false;\n this.clearBeforeRender = false;\n\n this._backgroundColor = 0;\n this._backgroundColorRgba = null;\n this._backgroundColorString = null;\n\n this._tempDisplayObjectParent = null;\n this._lastObjectRendered = null;\n };\n\n /**\n * The background color to fill if not transparent\n *\n * @member {number}\n */\n prototypeAccessors.backgroundColor.get = function ()\n {\n return this._backgroundColor;\n };\n\n prototypeAccessors.backgroundColor.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._backgroundColor = value;\n this._backgroundColorString = hex2string(value);\n hex2rgb(value, this._backgroundColorRgba);\n };\n\n Object.defineProperties( AbstractRenderer.prototype, prototypeAccessors );\n\n return AbstractRenderer;\n}(EventEmitter));\n\n/**\n * The Renderer draws the scene and all its content onto a WebGL enabled canvas.\n *\n * This renderer should be used for browsers that support WebGL.\n *\n * This renderer works by automatically managing WebGLBatchesm, so no need for Sprite Batches or Sprite Clouds.\n * Don't forget to add the view to your DOM or you will not see anything!\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.AbstractRenderer\n */\nvar Renderer = /*@__PURE__*/(function (AbstractRenderer) {\n function Renderer(options)\n {\n if ( options === void 0 ) options = {};\n\n AbstractRenderer.call(this, 'WebGL', options);\n\n // the options will have been modified here in the super constructor with pixi's default settings..\n options = this.options;\n\n /**\n * The type of this renderer as a standardized const\n *\n * @member {number}\n * @see PIXI.RENDERER_TYPE\n */\n this.type = RENDERER_TYPE.WEBGL;\n\n /**\n * WebGL context, set by the contextSystem (this.context)\n *\n * @readonly\n * @member {WebGLRenderingContext}\n */\n this.gl = null;\n\n this.CONTEXT_UID = 0;\n\n // TODO legacy!\n\n /**\n * Internal signal instances of **runner**, these\n * are assigned to each system created.\n * @see PIXI.Runner\n * @name PIXI.Renderer#runners\n * @private\n * @type {object}\n * @readonly\n * @property {PIXI.Runner} destroy - Destroy runner\n * @property {PIXI.Runner} contextChange - Context change runner\n * @property {PIXI.Runner} reset - Reset runner\n * @property {PIXI.Runner} update - Update runner\n * @property {PIXI.Runner} postrender - Post-render runner\n * @property {PIXI.Runner} prerender - Pre-render runner\n * @property {PIXI.Runner} resize - Resize runner\n */\n this.runners = {\n destroy: new Runner('destroy'),\n contextChange: new Runner('contextChange', 1),\n reset: new Runner('reset'),\n update: new Runner('update'),\n postrender: new Runner('postrender'),\n prerender: new Runner('prerender'),\n resize: new Runner('resize', 2),\n };\n\n /**\n * Global uniforms\n * @member {PIXI.UniformGroup}\n */\n this.globalUniforms = new UniformGroup({\n projectionMatrix: new Matrix(),\n }, true);\n\n /**\n * Mask system instance\n * @member {PIXI.systems.MaskSystem} mask\n * @memberof PIXI.Renderer#\n * @readonly\n */\n this.addSystem(MaskSystem, 'mask')\n /**\n * Context system instance\n * @member {PIXI.systems.ContextSystem} context\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ContextSystem, 'context')\n /**\n * State system instance\n * @member {PIXI.systems.StateSystem} state\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(StateSystem, 'state')\n /**\n * Shader system instance\n * @member {PIXI.systems.ShaderSystem} shader\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ShaderSystem, 'shader')\n /**\n * Texture system instance\n * @member {PIXI.systems.TextureSystem} texture\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(TextureSystem, 'texture')\n /**\n * Geometry system instance\n * @member {PIXI.systems.GeometrySystem} geometry\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(GeometrySystem, 'geometry')\n /**\n * Framebuffer system instance\n * @member {PIXI.systems.FramebufferSystem} framebuffer\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(FramebufferSystem, 'framebuffer')\n /**\n * Stencil system instance\n * @member {PIXI.systems.StencilSystem} stencil\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(StencilSystem, 'stencil')\n /**\n * Projection system instance\n * @member {PIXI.systems.ProjectionSystem} projection\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ProjectionSystem, 'projection')\n /**\n * Texture garbage collector system instance\n * @member {PIXI.systems.TextureGCSystem} textureGC\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(TextureGCSystem, 'textureGC')\n /**\n * Filter system instance\n * @member {PIXI.systems.FilterSystem} filter\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(FilterSystem, 'filter')\n /**\n * RenderTexture system instance\n * @member {PIXI.systems.RenderTextureSystem} renderTexture\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(RenderTextureSystem, 'renderTexture')\n\n /**\n * Batch system instance\n * @member {PIXI.systems.BatchSystem} batch\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(BatchSystem, 'batch');\n\n this.initPlugins(Renderer.__plugins);\n\n /**\n * The options passed in to create a new WebGL context.\n */\n if (options.context)\n {\n this.context.initFromContext(options.context);\n }\n else\n {\n this.context.initFromOptions({\n alpha: this.transparent,\n antialias: options.antialias,\n premultipliedAlpha: this.transparent && this.transparent !== 'notMultiplied',\n stencil: true,\n preserveDrawingBuffer: options.preserveDrawingBuffer,\n powerPreference: this.options.powerPreference,\n });\n }\n\n /**\n * Flag if we are rendering to the screen vs renderTexture\n * @member {boolean}\n * @readonly\n * @default true\n */\n this.renderingToScreen = true;\n\n sayHello(this.context.webGLVersion === 2 ? 'WebGL 2' : 'WebGL 1');\n\n this.resize(this.options.width, this.options.height);\n }\n\n if ( AbstractRenderer ) Renderer.__proto__ = AbstractRenderer;\n Renderer.prototype = Object.create( AbstractRenderer && AbstractRenderer.prototype );\n Renderer.prototype.constructor = Renderer;\n\n /**\n * Add a new system to the renderer.\n * @param {Function} ClassRef - Class reference\n * @param {string} [name] - Property name for system, if not specified\n * will use a static `name` property on the class itself. This\n * name will be assigned as s property on the Renderer so make\n * sure it doesn't collide with properties on Renderer.\n * @return {PIXI.Renderer} Return instance of renderer\n */\n Renderer.create = function create (options)\n {\n if (isWebGLSupported())\n {\n return new Renderer(options);\n }\n\n throw new Error('WebGL unsupported in this browser, use \"pixi.js-legacy\" for fallback canvas2d support.');\n };\n\n Renderer.prototype.addSystem = function addSystem (ClassRef, name)\n {\n if (!name)\n {\n name = ClassRef.name;\n }\n\n var system = new ClassRef(this);\n\n if (this[name])\n {\n throw new Error((\"Whoops! The name \\\"\" + name + \"\\\" is already in use\"));\n }\n\n this[name] = system;\n\n for (var i in this.runners)\n {\n this.runners[i].add(system);\n }\n\n /**\n * Fired after rendering finishes.\n *\n * @event PIXI.Renderer#postrender\n */\n\n /**\n * Fired before rendering starts.\n *\n * @event PIXI.Renderer#prerender\n */\n\n /**\n * Fired when the WebGL context is set.\n *\n * @event PIXI.Renderer#context\n * @param {WebGLRenderingContext} gl - WebGL context.\n */\n\n return this;\n };\n\n /**\n * Renders the object to its WebGL view\n *\n * @param {PIXI.DisplayObject} displayObject - The object to be rendered.\n * @param {PIXI.RenderTexture} [renderTexture] - The render texture to render to.\n * @param {boolean} [clear=true] - Should the canvas be cleared before the new render.\n * @param {PIXI.Matrix} [transform] - A transform to apply to the render texture before rendering.\n * @param {boolean} [skipUpdateTransform=false] - Should we skip the update transform pass?\n */\n Renderer.prototype.render = function render (displayObject, renderTexture, clear, transform, skipUpdateTransform)\n {\n // can be handy to know!\n this.renderingToScreen = !renderTexture;\n\n this.runners.prerender.run();\n this.emit('prerender');\n\n // apply a transform at a GPU level\n this.projection.transform = transform;\n\n // no point rendering if our context has been blown up!\n if (this.context.isLost)\n {\n return;\n }\n\n if (!renderTexture)\n {\n this._lastObjectRendered = displayObject;\n }\n\n if (!skipUpdateTransform)\n {\n // update the scene graph\n var cacheParent = displayObject.parent;\n\n displayObject.parent = this._tempDisplayObjectParent;\n displayObject.updateTransform();\n displayObject.parent = cacheParent;\n // displayObject.hitArea = //TODO add a temp hit area\n }\n\n this.renderTexture.bind(renderTexture);\n this.batch.currentRenderer.start();\n\n if (clear !== undefined ? clear : this.clearBeforeRender)\n {\n this.renderTexture.clear();\n }\n\n displayObject.render(this);\n\n // apply transform..\n this.batch.currentRenderer.flush();\n\n if (renderTexture)\n {\n renderTexture.baseTexture.update();\n }\n\n this.runners.postrender.run();\n\n // reset transform after render\n this.projection.transform = null;\n\n this.emit('postrender');\n };\n\n /**\n * Resizes the WebGL view to the specified width and height.\n *\n * @param {number} screenWidth - The new width of the screen.\n * @param {number} screenHeight - The new height of the screen.\n */\n Renderer.prototype.resize = function resize (screenWidth, screenHeight)\n {\n AbstractRenderer.prototype.resize.call(this, screenWidth, screenHeight);\n\n this.runners.resize.run(screenWidth, screenHeight);\n };\n\n /**\n * Resets the WebGL state so you can render things however you fancy!\n *\n * @return {PIXI.Renderer} Returns itself.\n */\n Renderer.prototype.reset = function reset ()\n {\n this.runners.reset.run();\n\n return this;\n };\n\n /**\n * Clear the frame buffer\n */\n Renderer.prototype.clear = function clear ()\n {\n this.framebuffer.bind();\n this.framebuffer.clear();\n };\n\n /**\n * Removes everything from the renderer (event listeners, spritebatch, etc...)\n *\n * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM.\n * See: https://github.com/pixijs/pixi.js/issues/2233\n */\n Renderer.prototype.destroy = function destroy (removeView)\n {\n this.runners.destroy.run();\n\n for (var r in this.runners)\n {\n this.runners[r].destroy();\n }\n\n // call base destroy\n AbstractRenderer.prototype.destroy.call(this, removeView);\n\n // TODO nullify all the managers..\n this.gl = null;\n };\n\n /**\n * Collection of installed plugins. These are included by default in PIXI, but can be excluded\n * by creating a custom build. Consult the README for more information about creating custom\n * builds and excluding plugins.\n * @name PIXI.Renderer#plugins\n * @type {object}\n * @readonly\n * @property {PIXI.accessibility.AccessibilityManager} accessibility Support tabbing interactive elements.\n * @property {PIXI.extract.Extract} extract Extract image data from renderer.\n * @property {PIXI.interaction.InteractionManager} interaction Handles mouse, touch and pointer events.\n * @property {PIXI.prepare.Prepare} prepare Pre-render display objects.\n */\n\n /**\n * Adds a plugin to the renderer.\n *\n * @method\n * @param {string} pluginName - The name of the plugin.\n * @param {Function} ctor - The constructor function or class for the plugin.\n */\n Renderer.registerPlugin = function registerPlugin (pluginName, ctor)\n {\n Renderer.__plugins = Renderer.__plugins || {};\n Renderer.__plugins[pluginName] = ctor;\n };\n\n return Renderer;\n}(AbstractRenderer));\n\n/**\n * This helper function will automatically detect which renderer you should be using.\n * WebGL is the preferred renderer as it is a lot faster. If WebGL is not supported by\n * the browser then this function will return a canvas renderer\n *\n * @memberof PIXI\n * @function autoDetectRenderer\n * @param {object} [options] - The optional renderer parameters\n * @param {number} [options.width=800] - the width of the renderers view\n * @param {number} [options.height=600] - the height of the renderers view\n * @param {HTMLCanvasElement} [options.view] - the canvas to use as a view, optional\n * @param {boolean} [options.transparent=false] - If the render view is transparent, default false\n * @param {boolean} [options.autoDensity=false] - Resizes renderer view in CSS pixels to allow for\n * resolutions other than 1\n * @param {boolean} [options.antialias=false] - sets antialias\n * @param {boolean} [options.preserveDrawingBuffer=false] - enables drawing buffer preservation, enable this if you\n * need to call toDataUrl on the webgl context\n * @param {number} [options.backgroundColor=0x000000] - The background color of the rendered area\n * (shown if not transparent).\n * @param {boolean} [options.clearBeforeRender=true] - This sets if the renderer will clear the canvas or\n * not before the new render pass.\n * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the renderer, retina would be 2\n * @param {boolean} [options.forceCanvas=false] - prevents selection of WebGL renderer, even if such is present, this\n * option only is available when using **pixi.js-legacy** or **@pixi/canvas-renderer** modules, otherwise\n * it is ignored.\n * @param {boolean} [options.forceFXAA=false] - forces FXAA antialiasing to be used over native.\n * FXAA is faster, but may not always look as great **webgl only**\n * @param {string} [options.powerPreference] - Parameter passed to webgl context, set to \"high-performance\"\n * for devices with dual graphics card **webgl only**\n * @return {PIXI.Renderer|PIXI.CanvasRenderer} Returns WebGL renderer if available, otherwise CanvasRenderer\n */\nfunction autoDetectRenderer(options)\n{\n return Renderer.create(options);\n}\n\nvar _default = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n vTextureCoord = aTextureCoord;\\n}\";\n\nvar defaultFilter = \"attribute vec2 aVertexPosition;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nuniform vec4 inputSize;\\nuniform vec4 outputFrame;\\n\\nvec4 filterVertexPosition( void )\\n{\\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\\n\\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\\n}\\n\\nvec2 filterTextureCoord( void )\\n{\\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\\n}\\n\\nvoid main(void)\\n{\\n gl_Position = filterVertexPosition();\\n vTextureCoord = filterTextureCoord();\\n}\\n\";\n\n/**\n * A Texture that depends on six other resources.\n *\n * @class\n * @extends PIXI.BaseTexture\n * @memberof PIXI\n */\nvar CubeTexture = /*@__PURE__*/(function (BaseTexture) {\n function CubeTexture () {\n BaseTexture.apply(this, arguments);\n }\n\n if ( BaseTexture ) CubeTexture.__proto__ = BaseTexture;\n CubeTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype );\n CubeTexture.prototype.constructor = CubeTexture;\n\n CubeTexture.from = function from (resources, options)\n {\n return new CubeTexture(new CubeResource(resources, options));\n };\n\n return CubeTexture;\n}(BaseTexture));\n\n/**\n * Used by the batcher to draw batches.\n * Each one of these contains all information required to draw a bound geometry.\n *\n * @class\n * @memberof PIXI\n */\nvar BatchDrawCall = function BatchDrawCall()\n{\n this.textures = [];\n this.ids = [];\n this.blend = 0;\n this.textureCount = 0;\n this.start = 0;\n this.size = 0;\n this.type = 4;\n};\n\n/**\n * Flexible wrapper around `ArrayBuffer` that also provides\n * typed array views on demand.\n *\n * @class\n * @memberof PIXI\n */\nvar ViewableBuffer = function ViewableBuffer(size)\n{\n /**\n * Underlying `ArrayBuffer` that holds all the data\n * and is of capacity `size`.\n *\n * @member {ArrayBuffer}\n */\n this.rawBinaryData = new ArrayBuffer(size);\n\n /**\n * View on the raw binary data as a `Uint32Array`.\n *\n * @member {Uint32Array}\n */\n this.uint32View = new Uint32Array(this.rawBinaryData);\n\n /**\n * View on the raw binary data as a `Float32Array`.\n *\n * @member {Float32Array}\n */\n this.float32View = new Float32Array(this.rawBinaryData);\n};\n\nvar prototypeAccessors$5 = { int8View: { configurable: true },uint8View: { configurable: true },int16View: { configurable: true },uint16View: { configurable: true },int32View: { configurable: true } };\n\n/**\n * View on the raw binary data as a `Int8Array`.\n *\n * @member {Int8Array}\n */\nprototypeAccessors$5.int8View.get = function ()\n{\n if (!this._int8View)\n {\n this._int8View = new Int8Array(this.rawBinaryData);\n }\n\n return this._int8View;\n};\n\n/**\n * View on the raw binary data as a `Uint8Array`.\n *\n * @member {Uint8Array}\n */\nprototypeAccessors$5.uint8View.get = function ()\n{\n if (!this._uint8View)\n {\n this._uint8View = new Uint8Array(this.rawBinaryData);\n }\n\n return this._uint8View;\n};\n\n/**\n * View on the raw binary data as a `Int16Array`.\n *\n * @member {Int16Array}\n */\nprototypeAccessors$5.int16View.get = function ()\n{\n if (!this._int16View)\n {\n this._int16View = new Int16Array(this.rawBinaryData);\n }\n\n return this._int16View;\n};\n\n/**\n * View on the raw binary data as a `Uint16Array`.\n *\n * @member {Uint16Array}\n */\nprototypeAccessors$5.uint16View.get = function ()\n{\n if (!this._uint16View)\n {\n this._uint16View = new Uint16Array(this.rawBinaryData);\n }\n\n return this._uint16View;\n};\n\n/**\n * View on the raw binary data as a `Int32Array`.\n *\n * @member {Int32Array}\n */\nprototypeAccessors$5.int32View.get = function ()\n{\n if (!this._int32View)\n {\n this._int32View = new Int32Array(this.rawBinaryData);\n }\n\n return this._int32View;\n};\n\n/**\n * Returns the view of the given type.\n *\n * @param {string} type - One of `int8`, `uint8`, `int16`,\n *`uint16`, `int32`, `uint32`, and `float32`.\n * @return {object} typed array of given type\n */\nViewableBuffer.prototype.view = function view (type)\n{\n return this[(type + \"View\")];\n};\n\n/**\n * Destroys all buffer references. Do not use after calling\n * this.\n */\nViewableBuffer.prototype.destroy = function destroy ()\n{\n this.rawBinaryData = null;\n this._int8View = null;\n this._uint8View = null;\n this._int16View = null;\n this._uint16View = null;\n this._int32View = null;\n this.uint32View = null;\n this.float32View = null;\n};\n\nViewableBuffer.sizeOf = function sizeOf (type)\n{\n switch (type)\n {\n case 'int8':\n case 'uint8':\n return 1;\n case 'int16':\n case 'uint16':\n return 2;\n case 'int32':\n case 'uint32':\n case 'float32':\n return 4;\n default:\n throw new Error((type + \" isn't a valid view type\"));\n }\n};\n\nObject.defineProperties( ViewableBuffer.prototype, prototypeAccessors$5 );\n\n/**\n * Renderer dedicated to drawing and batching sprites.\n *\n * This is the default batch renderer. It buffers objects\n * with texture-based geometries and renders them in\n * batches. It uploads multiple textures to the GPU to\n * reduce to the number of draw calls.\n *\n * @class\n * @protected\n * @memberof PIXI\n * @extends PIXI.ObjectRenderer\n */\nvar AbstractBatchRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function AbstractBatchRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n /**\n * This is used to generate a shader that can\n * color each vertex based on a `aTextureId`\n * attribute that points to an texture in `uSampler`.\n *\n * This enables the objects with different textures\n * to be drawn in the same draw call.\n *\n * You can customize your shader by creating your\n * custom shader generator.\n *\n * @member {PIXI.BatchShaderGenerator}\n * @protected\n */\n this.shaderGenerator = null;\n\n /**\n * The class that represents the geometry of objects\n * that are going to be batched with this.\n *\n * @member {object}\n * @default PIXI.BatchGeometry\n * @protected\n */\n this.geometryClass = null;\n\n /**\n * Size of data being buffered per vertex in the\n * attribute buffers (in floats). By default, the\n * batch-renderer plugin uses 6:\n *\n * | aVertexPosition | 2 |\n * |-----------------|---|\n * | aTextureCoords | 2 |\n * | aColor | 1 |\n * | aTextureId | 1 |\n *\n * @member {number}\n * @readonly\n */\n this.vertexSize = null;\n\n /**\n * The WebGL state in which this renderer will work.\n *\n * @member {PIXI.State}\n * @readonly\n */\n this.state = State.for2d();\n\n /**\n * The number of bufferable objects before a flush\n * occurs automatically.\n *\n * @member {number}\n * @default settings.SPRITE_MAX_TEXTURES\n */\n this.size = 2000 * 4;// settings.SPRITE_BATCH_SIZE, 2000 is a nice balance between mobile/desktop\n\n /**\n * Total count of all vertices used by the currently\n * buffered objects.\n *\n * @member {number}\n * @private\n */\n this._vertexCount = 0;\n\n /**\n * Total count of all indices used by the currently\n * buffered objects.\n *\n * @member {number}\n * @private\n */\n this._indexCount = 0;\n\n /**\n * Buffer of objects that are yet to be rendered.\n *\n * @member {PIXI.DisplayObject[]}\n * @private\n */\n this._bufferedElements = [];\n\n /**\n * Number of elements that are buffered and are\n * waiting to be flushed.\n *\n * @member {number}\n * @private\n */\n this._bufferSize = 0;\n\n /**\n * This shader is generated by `this.shaderGenerator`.\n *\n * It is generated specifically to handle the required\n * number of textures being batched together.\n *\n * @member {PIXI.Shader}\n * @protected\n */\n this._shader = null;\n\n /**\n * Pool of `this.geometryClass` geometry objects\n * that store buffers. They are used to pass data\n * to the shader on each draw call.\n *\n * These are never re-allocated again, unless a\n * context change occurs; however, the pool may\n * be expanded if required.\n *\n * @member {PIXI.Geometry[]}\n * @private\n * @see PIXI.AbstractBatchRenderer.contextChange\n */\n this._packedGeometries = [];\n\n /**\n * Size of `this._packedGeometries`. It can be expanded\n * if more than `this._packedGeometryPoolSize` flushes\n * occur in a single frame.\n *\n * @member {number}\n * @private\n */\n this._packedGeometryPoolSize = 2;\n\n /**\n * A flush may occur multiple times in a single\n * frame. On iOS devices or when\n * `settings.CAN_UPLOAD_SAME_BUFFER` is false, the\n * batch renderer does not upload data to the same\n * `WebGLBuffer` for performance reasons.\n *\n * This is the index into `packedGeometries` that points to\n * geometry holding the most recent buffers.\n *\n * @member {number}\n * @private\n */\n this._flushId = 0;\n\n /**\n * Pool of `BatchDrawCall` objects that `flush` used\n * to create \"batches\" of the objects being rendered.\n *\n * These are never re-allocated again.\n *\n * @member BatchDrawCall[]\n * @private\n */\n this._drawCalls = [];\n\n for (var k = 0; k < this.size / 4; k++)\n { // initialize the draw-calls pool to max size.\n this._drawCalls[k] = new BatchDrawCall();\n }\n\n /**\n * Pool of `ViewableBuffer` objects that are sorted in\n * order of increasing size. The flush method uses\n * the buffer with the least size above the amount\n * it requires. These are used for passing attributes.\n *\n * The first buffer has a size of 8; each subsequent\n * buffer has double capacity of its previous.\n *\n * @member {PIXI.ViewableBuffer}\n * @private\n * @see PIXI.AbstractBatchRenderer#getAttributeBuffer\n */\n this._aBuffers = {};\n\n /**\n * Pool of `Uint16Array` objects that are sorted in\n * order of increasing size. The flush method uses\n * the buffer with the least size above the amount\n * it requires. These are used for passing indices.\n *\n * The first buffer has a size of 12; each subsequent\n * buffer has double capacity of its previous.\n *\n * @member {Uint16Array[]}\n * @private\n * @see PIXI.AbstractBatchRenderer#getIndexBuffer\n */\n this._iBuffers = {};\n\n /**\n * Maximum number of textures that can be uploaded to\n * the GPU under the current context. It is initialized\n * properly in `this.contextChange`.\n *\n * @member {number}\n * @see PIXI.AbstractBatchRenderer#contextChange\n * @readonly\n */\n this.MAX_TEXTURES = 1;\n\n this.renderer.on('prerender', this.onPrerender, this);\n renderer.runners.contextChange.add(this);\n }\n\n if ( ObjectRenderer ) AbstractBatchRenderer.__proto__ = ObjectRenderer;\n AbstractBatchRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n AbstractBatchRenderer.prototype.constructor = AbstractBatchRenderer;\n\n /**\n * Handles the `contextChange` signal.\n *\n * It calculates `this.MAX_TEXTURES` and allocating the\n * packed-geometry object pool.\n */\n AbstractBatchRenderer.prototype.contextChange = function contextChange ()\n {\n var gl = this.renderer.gl;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n this.MAX_TEXTURES = 1;\n }\n else\n {\n // step 1: first check max textures the GPU can handle.\n this.MAX_TEXTURES = Math.min(\n gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS),\n settings.SPRITE_MAX_TEXTURES);\n\n // step 2: check the maximum number of if statements the shader can have too..\n this.MAX_TEXTURES = checkMaxIfStatementsInShader(\n this.MAX_TEXTURES, gl);\n }\n\n this._shader = this.shaderGenerator.generateShader(this.MAX_TEXTURES);\n\n // we use the second shader as the first one depending on your browser\n // may omit aTextureId as it is not used by the shader so is optimized out.\n for (var i = 0; i < this._packedGeometryPoolSize; i++)\n {\n /* eslint-disable max-len */\n this._packedGeometries[i] = new (this.geometryClass)();\n }\n };\n\n /**\n * Handles the `prerender` signal.\n *\n * It ensures that flushes start from the first geometry\n * object again.\n */\n AbstractBatchRenderer.prototype.onPrerender = function onPrerender ()\n {\n this._flushId = 0;\n };\n\n /**\n * Buffers the \"batchable\" object. It need not be rendered\n * immediately.\n *\n * @param {PIXI.Sprite} sprite - the sprite to render when\n * using this spritebatch\n */\n AbstractBatchRenderer.prototype.render = function render (element)\n {\n if (!element._texture.valid)\n {\n return;\n }\n\n if (this._vertexCount + (element.vertexData.length / 2) > this.size)\n {\n this.flush();\n }\n\n this._vertexCount += element.vertexData.length / 2;\n this._indexCount += element.indices.length;\n this._bufferedElements[this._bufferSize++] = element;\n };\n\n /**\n * Renders the content _now_ and empties the current batch.\n */\n AbstractBatchRenderer.prototype.flush = function flush ()\n {\n if (this._vertexCount === 0)\n {\n return;\n }\n\n var attributeBuffer = this.getAttributeBuffer(this._vertexCount);\n var indexBuffer = this.getIndexBuffer(this._indexCount);\n var gl = this.renderer.gl;\n\n var ref = this;\n var elements = ref._bufferedElements;\n var drawCalls = ref._drawCalls;\n var MAX_TEXTURES = ref.MAX_TEXTURES;\n var packedGeometries = ref._packedGeometries;\n var vertexSize = ref.vertexSize;\n\n var touch = this.renderer.textureGC.count;\n\n var index = 0;\n var _indexCount = 0;\n\n var nextTexture;\n var currentTexture;\n var textureCount = 0;\n\n var currentGroup = drawCalls[0];\n var groupCount = 0;\n\n var blendMode = -1;// blend-mode of previous element/sprite/object!\n\n currentGroup.textureCount = 0;\n currentGroup.start = 0;\n currentGroup.blend = blendMode;\n\n var TICK = ++BaseTexture._globalBatch;\n var i;\n\n for (i = 0; i < this._bufferSize; ++i)\n {\n var sprite = elements[i];\n\n elements[i] = null;\n nextTexture = sprite._texture.baseTexture;\n\n var spriteBlendMode = premultiplyBlendMode[\n nextTexture.premultiplyAlpha ? 1 : 0][sprite.blendMode];\n\n if (blendMode !== spriteBlendMode)\n {\n blendMode = spriteBlendMode;\n\n // force the batch to break!\n currentTexture = null;\n textureCount = MAX_TEXTURES;\n TICK++;\n }\n\n if (currentTexture !== nextTexture)\n {\n currentTexture = nextTexture;\n\n if (nextTexture._batchEnabled !== TICK)\n {\n if (textureCount === MAX_TEXTURES)\n {\n TICK++;\n\n textureCount = 0;\n\n currentGroup.size = _indexCount - currentGroup.start;\n\n currentGroup = drawCalls[groupCount++];\n currentGroup.textureCount = 0;\n currentGroup.blend = blendMode;\n currentGroup.start = _indexCount;\n }\n\n nextTexture.touched = touch;\n nextTexture._batchEnabled = TICK;\n nextTexture._id = textureCount;\n\n currentGroup.textures[currentGroup.textureCount++] = nextTexture;\n textureCount++;\n }\n }\n\n this.packInterleavedGeometry(sprite, attributeBuffer,\n indexBuffer, index, _indexCount);\n\n // push a graphics..\n index += (sprite.vertexData.length / 2) * vertexSize;\n _indexCount += sprite.indices.length;\n }\n\n BaseTexture._globalBatch = TICK;\n currentGroup.size = _indexCount - currentGroup.start;\n\n if (!settings.CAN_UPLOAD_SAME_BUFFER)\n { /* Usually on iOS devices, where the browser doesn't\n like uploads to the same buffer in a single frame. */\n if (this._packedGeometryPoolSize <= this._flushId)\n {\n this._packedGeometryPoolSize++;\n packedGeometries[this._flushId] = new (this.geometryClass)();\n }\n\n packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0);\n packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0);\n\n this.renderer.geometry.bind(packedGeometries[this._flushId]);\n this.renderer.geometry.updateBuffers();\n this._flushId++;\n }\n else\n {\n // lets use the faster option, always use buffer number 0\n packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0);\n packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0);\n\n this.renderer.geometry.updateBuffers();\n }\n\n var textureSystem = this.renderer.texture;\n var stateSystem = this.renderer.state;\n\n // Upload textures and do the draw calls\n for (i = 0; i < groupCount; i++)\n {\n var group = drawCalls[i];\n var groupTextureCount = group.textureCount;\n\n for (var j = 0; j < groupTextureCount; j++)\n {\n textureSystem.bind(group.textures[j], j);\n group.textures[j] = null;\n }\n\n stateSystem.setBlendMode(group.blend);\n gl.drawElements(group.type, group.size, gl.UNSIGNED_SHORT, group.start * 2);\n }\n\n // reset elements for the next flush\n this._bufferSize = 0;\n this._vertexCount = 0;\n this._indexCount = 0;\n };\n\n /**\n * Starts a new sprite batch.\n */\n AbstractBatchRenderer.prototype.start = function start ()\n {\n this.renderer.state.set(this.state);\n\n this.renderer.shader.bind(this._shader);\n\n if (settings.CAN_UPLOAD_SAME_BUFFER)\n {\n // bind buffer #0, we don't need others\n this.renderer.geometry.bind(this._packedGeometries[this._flushId]);\n }\n };\n\n /**\n * Stops and flushes the current batch.\n */\n AbstractBatchRenderer.prototype.stop = function stop ()\n {\n this.flush();\n };\n\n /**\n * Destroys this `AbstractBatchRenderer`. It cannot be used again.\n */\n AbstractBatchRenderer.prototype.destroy = function destroy ()\n {\n for (var i = 0; i < this._packedGeometryPoolSize; i++)\n {\n if (this._packedGeometries[i])\n {\n this._packedGeometries[i].destroy();\n }\n }\n\n this.renderer.off('prerender', this.onPrerender, this);\n\n this._aBuffers = null;\n this._iBuffers = null;\n this._packedGeometries = null;\n this._drawCalls = null;\n\n if (this._shader)\n {\n this._shader.destroy();\n this._shader = null;\n }\n\n ObjectRenderer.prototype.destroy.call(this);\n };\n\n /**\n * Fetches an attribute buffer from `this._aBuffers` that\n * can hold atleast `size` floats.\n *\n * @param {number} size - minimum capacity required\n * @return {ViewableBuffer} - buffer than can hold atleast `size` floats\n * @private\n */\n AbstractBatchRenderer.prototype.getAttributeBuffer = function getAttributeBuffer (size)\n {\n // 8 vertices is enough for 2 quads\n var roundedP2 = nextPow2(Math.ceil(size / 8));\n var roundedSizeIndex = log2(roundedP2);\n var roundedSize = roundedP2 * 8;\n\n if (this._aBuffers.length <= roundedSizeIndex)\n {\n this._iBuffers.length = roundedSizeIndex + 1;\n }\n\n var buffer = this._aBuffers[roundedSize];\n\n if (!buffer)\n {\n this._aBuffers[roundedSize] = buffer = new ViewableBuffer(roundedSize * this.vertexSize * 4);\n }\n\n return buffer;\n };\n\n /**\n * Fetches an index buffer from `this._iBuffers` that can\n * has atleast `size` capacity.\n *\n * @param {number} size - minimum required capacity\n * @return {Uint16Array} - buffer that can fit `size`\n * indices.\n * @private\n */\n AbstractBatchRenderer.prototype.getIndexBuffer = function getIndexBuffer (size)\n {\n // 12 indices is enough for 2 quads\n var roundedP2 = nextPow2(Math.ceil(size / 12));\n var roundedSizeIndex = log2(roundedP2);\n var roundedSize = roundedP2 * 12;\n\n if (this._iBuffers.length <= roundedSizeIndex)\n {\n this._iBuffers.length = roundedSizeIndex + 1;\n }\n\n var buffer = this._iBuffers[roundedSizeIndex];\n\n if (!buffer)\n {\n this._iBuffers[roundedSizeIndex] = buffer = new Uint16Array(roundedSize);\n }\n\n return buffer;\n };\n\n /**\n * Takes the four batching parameters of `element`, interleaves\n * and pushes them into the batching attribute/index buffers given.\n *\n * It uses these properties: `vertexData` `uvs`, `textureId` and\n * `indicies`. It also uses the \"tint\" of the base-texture, if\n * present.\n *\n * @param {PIXI.Sprite} element - element being rendered\n * @param {PIXI.ViewableBuffer} attributeBuffer - attribute buffer.\n * @param {Uint16Array} indexBuffer - index buffer\n * @param {number} aIndex - number of floats already in the attribute buffer\n * @param {number} iIndex - number of indices already in `indexBuffer`\n */\n AbstractBatchRenderer.prototype.packInterleavedGeometry = function packInterleavedGeometry (element, attributeBuffer, indexBuffer, aIndex, iIndex)\n {\n var uint32View = attributeBuffer.uint32View;\n var float32View = attributeBuffer.float32View;\n\n var packedVertices = aIndex / this.vertexSize;\n var uvs = element.uvs;\n var indicies = element.indices;\n var vertexData = element.vertexData;\n var textureId = element._texture.baseTexture._id;\n\n var alpha = Math.min(element.worldAlpha, 1.0);\n var argb = (alpha < 1.0\n && element._texture.baseTexture.premultiplyAlpha)\n ? premultiplyTint(element._tintRGB, alpha)\n : element._tintRGB + (alpha * 255 << 24);\n\n // lets not worry about tint! for now..\n for (var i = 0; i < vertexData.length; i += 2)\n {\n float32View[aIndex++] = vertexData[i];\n float32View[aIndex++] = vertexData[i + 1];\n float32View[aIndex++] = uvs[i];\n float32View[aIndex++] = uvs[i + 1];\n uint32View[aIndex++] = argb;\n float32View[aIndex++] = textureId;\n }\n\n for (var i$1 = 0; i$1 < indicies.length; i$1++)\n {\n indexBuffer[iIndex++] = packedVertices + indicies[i$1];\n }\n };\n\n return AbstractBatchRenderer;\n}(ObjectRenderer));\n\n/**\n * Helper that generates batching multi-texture shader. Use it with your new BatchRenderer\n *\n * @class\n * @memberof PIXI\n */\nvar BatchShaderGenerator = function BatchShaderGenerator(vertexSrc, fragTemplate)\n{\n /**\n * Reference to the vertex shader source.\n *\n * @member {string}\n */\n this.vertexSrc = vertexSrc;\n\n /**\n * Reference to the fragement shader template. Must contain \"%count%\" and \"%forloop%\".\n *\n * @member {string}\n */\n this.fragTemplate = fragTemplate;\n\n this.programCache = {};\n this.defaultGroupCache = {};\n\n if (fragTemplate.indexOf('%count%') < 0)\n {\n throw new Error('Fragment template must contain \"%count%\".');\n }\n\n if (fragTemplate.indexOf('%forloop%') < 0)\n {\n throw new Error('Fragment template must contain \"%forloop%\".');\n }\n};\n\nBatchShaderGenerator.prototype.generateShader = function generateShader (maxTextures)\n{\n if (!this.programCache[maxTextures])\n {\n var sampleValues = new Int32Array(maxTextures);\n\n for (var i = 0; i < maxTextures; i++)\n {\n sampleValues[i] = i;\n }\n\n this.defaultGroupCache[maxTextures] = UniformGroup.from({ uSamplers: sampleValues }, true);\n\n var fragmentSrc = this.fragTemplate;\n\n fragmentSrc = fragmentSrc.replace(/%count%/gi, (\"\" + maxTextures));\n fragmentSrc = fragmentSrc.replace(/%forloop%/gi, this.generateSampleSrc(maxTextures));\n\n this.programCache[maxTextures] = new Program(this.vertexSrc, fragmentSrc);\n }\n\n var uniforms = {\n tint: new Float32Array([1, 1, 1, 1]),\n translationMatrix: new Matrix(),\n default: this.defaultGroupCache[maxTextures],\n };\n\n return new Shader(this.programCache[maxTextures], uniforms);\n};\n\nBatchShaderGenerator.prototype.generateSampleSrc = function generateSampleSrc (maxTextures)\n{\n var src = '';\n\n src += '\\n';\n src += '\\n';\n\n for (var i = 0; i < maxTextures; i++)\n {\n if (i > 0)\n {\n src += '\\nelse ';\n }\n\n if (i < maxTextures - 1)\n {\n src += \"if(vTextureId < \" + i + \".5)\";\n }\n\n src += '\\n{';\n src += \"\\n\\tcolor = texture2D(uSamplers[\" + i + \"], vTextureCoord);\";\n src += '\\n}';\n }\n\n src += '\\n';\n src += '\\n';\n\n return src;\n};\n\n/**\n * Geometry used to batch standard PIXI content (e.g. Mesh, Sprite, Graphics objects).\n *\n * @class\n * @memberof PIXI\n */\nvar BatchGeometry = /*@__PURE__*/(function (Geometry) {\n function BatchGeometry(_static)\n {\n if ( _static === void 0 ) _static = false;\n\n Geometry.call(this);\n\n /**\n * Buffer used for position, color, texture IDs\n *\n * @member {PIXI.Buffer}\n * @protected\n */\n this._buffer = new Buffer(null, _static, false);\n\n /**\n * Index buffer data\n *\n * @member {PIXI.Buffer}\n * @protected\n */\n this._indexBuffer = new Buffer(null, _static, true);\n\n this.addAttribute('aVertexPosition', this._buffer, 2, false, TYPES.FLOAT)\n .addAttribute('aTextureCoord', this._buffer, 2, false, TYPES.FLOAT)\n .addAttribute('aColor', this._buffer, 4, true, TYPES.UNSIGNED_BYTE)\n .addAttribute('aTextureId', this._buffer, 1, true, TYPES.FLOAT)\n .addIndex(this._indexBuffer);\n }\n\n if ( Geometry ) BatchGeometry.__proto__ = Geometry;\n BatchGeometry.prototype = Object.create( Geometry && Geometry.prototype );\n BatchGeometry.prototype.constructor = BatchGeometry;\n\n return BatchGeometry;\n}(Geometry));\n\nvar defaultVertex$2 = \"precision highp float;\\nattribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\nattribute vec4 aColor;\\nattribute float aTextureId;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform vec4 tint;\\n\\nvarying vec2 vTextureCoord;\\nvarying vec4 vColor;\\nvarying float vTextureId;\\n\\nvoid main(void){\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vTextureId = aTextureId;\\n vColor = aColor * tint;\\n}\\n\";\n\nvar defaultFragment$2 = \"varying vec2 vTextureCoord;\\nvarying vec4 vColor;\\nvarying float vTextureId;\\nuniform sampler2D uSamplers[%count%];\\n\\nvoid main(void){\\n vec4 color;\\n %forloop%\\n gl_FragColor = color * vColor;\\n}\\n\";\n\n/**\n * @class\n * @memberof PIXI\n * @hideconstructor\n */\nvar BatchPluginFactory = function BatchPluginFactory () {};\n\nvar staticAccessors$1 = { defaultVertexSrc: { configurable: true },defaultFragmentTemplate: { configurable: true } };\n\nBatchPluginFactory.create = function create (options)\n{\n var ref = Object.assign({\n vertex: defaultVertex$2,\n fragment: defaultFragment$2,\n geometryClass: BatchGeometry,\n vertexSize: 6,\n }, options);\n var vertex = ref.vertex;\n var fragment = ref.fragment;\n var vertexSize = ref.vertexSize;\n var geometryClass = ref.geometryClass;\n\n return /*@__PURE__*/(function (AbstractBatchRenderer) {\n function BatchPlugin(renderer)\n {\n AbstractBatchRenderer.call(this, renderer);\n\n this.shaderGenerator = new BatchShaderGenerator(vertex, fragment);\n this.geometryClass = geometryClass;\n this.vertexSize = vertexSize;\n }\n\n if ( AbstractBatchRenderer ) BatchPlugin.__proto__ = AbstractBatchRenderer;\n BatchPlugin.prototype = Object.create( AbstractBatchRenderer && AbstractBatchRenderer.prototype );\n BatchPlugin.prototype.constructor = BatchPlugin;\n\n return BatchPlugin;\n }(AbstractBatchRenderer));\n};\n\n/**\n * The default vertex shader source\n *\n * @static\n * @type {string}\n * @constant\n */\nstaticAccessors$1.defaultVertexSrc.get = function ()\n{\n return defaultVertex$2;\n};\n\n/**\n * The default fragment shader source\n *\n * @static\n * @type {string}\n * @constant\n */\nstaticAccessors$1.defaultFragmentTemplate.get = function ()\n{\n return defaultFragment$2;\n};\n\nObject.defineProperties( BatchPluginFactory, staticAccessors$1 );\n\n// Setup the default BatchRenderer plugin, this is what\n// we'll actually export at the root level\nvar BatchRenderer = BatchPluginFactory.create();\n\nexport { AbstractBatchRenderer, AbstractRenderer, Attribute, BaseRenderTexture, BaseTexture, BatchDrawCall, BatchGeometry, BatchPluginFactory, BatchRenderer, BatchShaderGenerator, Buffer, CubeTexture, Filter, Framebuffer, GLProgram, BaseTexture as GLTexture, Geometry, ObjectRenderer, Program, Quad, QuadUv, RenderTexture, RenderTexturePool, Renderer, Shader, SpriteMaskFilter, State, System, Texture, TextureMatrix, TextureUvs, UniformGroup, ViewableBuffer, autoDetectRenderer, checkMaxIfStatementsInShader, defaultFilter as defaultFilterVertex, _default as defaultVertex, index as resources, systems };\n//# sourceMappingURL=core.es.js.map\n","/*!\n * @pixi/extract - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/extract is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { RenderTexture } from '@pixi/core';\nimport { CanvasRenderTarget } from '@pixi/utils';\nimport { Rectangle } from '@pixi/math';\n\nvar TEMP_RECT = new Rectangle();\nvar BYTES_PER_PIXEL = 4;\n\n/**\n * The extract manager provides functionality to export content from the renderers.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.extract`\n *\n * @class\n * @memberof PIXI.extract\n */\nvar Extract = function Extract(renderer)\n{\n this.renderer = renderer;\n /**\n * Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture\n *\n * @member {PIXI.extract.Extract} extract\n * @memberof PIXI.Renderer#\n * @see PIXI.extract.Extract\n */\n renderer.extract = this;\n};\n\n/**\n * Will return a HTML Image of the target\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @param {string} [format] - Image format, e.g. \"image/jpeg\" or \"image/webp\".\n * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92.\n * @return {HTMLImageElement} HTML Image of the target\n */\nExtract.prototype.image = function image (target, format, quality)\n{\n var image = new Image();\n\n image.src = this.base64(target, format, quality);\n\n return image;\n};\n\n/**\n * Will return a a base64 encoded string of this target. It works by calling\n * `Extract.getCanvas` and then running toDataURL on that.\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @param {string} [format] - Image format, e.g. \"image/jpeg\" or \"image/webp\".\n * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92.\n * @return {string} A base64 encoded string of the texture.\n */\nExtract.prototype.base64 = function base64 (target, format, quality)\n{\n return this.canvas(target).toDataURL(format, quality);\n};\n\n/**\n * Creates a Canvas element, renders this target to it and then returns it.\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @return {HTMLCanvasElement} A Canvas element with the texture rendered on.\n */\nExtract.prototype.canvas = function canvas (target)\n{\n var renderer = this.renderer;\n var resolution;\n var frame;\n var flipY = false;\n var renderTexture;\n var generated = false;\n\n if (target)\n {\n if (target instanceof RenderTexture)\n {\n renderTexture = target;\n }\n else\n {\n renderTexture = this.renderer.generateTexture(target);\n generated = true;\n }\n }\n\n if (renderTexture)\n {\n resolution = renderTexture.baseTexture.resolution;\n frame = renderTexture.frame;\n flipY = false;\n renderer.renderTexture.bind(renderTexture);\n }\n else\n {\n resolution = this.renderer.resolution;\n\n flipY = true;\n\n frame = TEMP_RECT;\n frame.width = this.renderer.width;\n frame.height = this.renderer.height;\n\n renderer.renderTexture.bind(null);\n }\n\n var width = Math.floor(frame.width * resolution);\n var height = Math.floor(frame.height * resolution);\n\n var canvasBuffer = new CanvasRenderTarget(width, height, 1);\n\n var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height);\n\n // read pixels to the array\n var gl = renderer.gl;\n\n gl.readPixels(\n frame.x * resolution,\n frame.y * resolution,\n width,\n height,\n gl.RGBA,\n gl.UNSIGNED_BYTE,\n webglPixels\n );\n\n // add the pixels to the canvas\n var canvasData = canvasBuffer.context.getImageData(0, 0, width, height);\n\n Extract.arrayPostDivide(webglPixels, canvasData.data);\n\n canvasBuffer.context.putImageData(canvasData, 0, 0);\n\n // pulling pixels\n if (flipY)\n {\n canvasBuffer.context.scale(1, -1);\n canvasBuffer.context.drawImage(canvasBuffer.canvas, 0, -height);\n }\n\n if (generated)\n {\n renderTexture.destroy(true);\n }\n\n // send the canvas back..\n return canvasBuffer.canvas;\n};\n\n/**\n * Will return a one-dimensional array containing the pixel data of the entire texture in RGBA\n * order, with integer values between 0 and 255 (included).\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @return {Uint8Array} One-dimensional array containing the pixel data of the entire texture\n */\nExtract.prototype.pixels = function pixels (target)\n{\n var renderer = this.renderer;\n var resolution;\n var frame;\n var renderTexture;\n var generated = false;\n\n if (target)\n {\n if (target instanceof RenderTexture)\n {\n renderTexture = target;\n }\n else\n {\n renderTexture = this.renderer.generateTexture(target);\n generated = true;\n }\n }\n\n if (renderTexture)\n {\n resolution = renderTexture.baseTexture.resolution;\n frame = renderTexture.frame;\n\n // bind the buffer\n renderer.renderTexture.bind(renderTexture);\n }\n else\n {\n resolution = renderer.resolution;\n\n frame = TEMP_RECT;\n frame.width = renderer.width;\n frame.height = renderer.height;\n\n renderer.renderTexture.bind(null);\n }\n\n var width = frame.width * resolution;\n var height = frame.height * resolution;\n\n var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height);\n\n // read pixels to the array\n var gl = renderer.gl;\n\n gl.readPixels(\n frame.x * resolution,\n frame.y * resolution,\n width,\n height,\n gl.RGBA,\n gl.UNSIGNED_BYTE,\n webglPixels\n );\n\n if (generated)\n {\n renderTexture.destroy(true);\n }\n\n Extract.arrayPostDivide(webglPixels, webglPixels);\n\n return webglPixels;\n};\n\n/**\n * Destroys the extract\n *\n */\nExtract.prototype.destroy = function destroy ()\n{\n this.renderer.extract = null;\n this.renderer = null;\n};\n\n/**\n * Takes premultiplied pixel data and produces regular pixel data\n *\n * @private\n * @param pixels {number[] | Uint8Array | Uint8ClampedArray} array of pixel data\n * @param out {number[] | Uint8Array | Uint8ClampedArray} output array\n */\nExtract.arrayPostDivide = function arrayPostDivide (pixels, out)\n{\n for (var i = 0; i < pixels.length; i += 4)\n {\n var alpha = out[i + 3] = pixels[i + 3];\n\n if (alpha !== 0)\n {\n out[i] = Math.round(Math.min(pixels[i] * 255.0 / alpha, 255.0));\n out[i + 1] = Math.round(Math.min(pixels[i + 1] * 255.0 / alpha, 255.0));\n out[i + 2] = Math.round(Math.min(pixels[i + 2] * 255.0 / alpha, 255.0));\n }\n else\n {\n out[i] = pixels[i];\n out[i + 1] = pixels[i + 1];\n out[i + 2] = pixels[i + 2];\n }\n }\n};\n\n/**\n * This namespace provides renderer-specific plugins for exporting content from a renderer.\n * For instance, these plugins can be used for saving an Image, Canvas element or for exporting the raw image data (pixels).\n *\n * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @example\n * // Create a new app (will auto-add extract plugin to renderer)\n * const app = new PIXI.Application();\n *\n * // Draw a red circle\n * const graphics = new PIXI.Graphics()\n * .beginFill(0xFF0000)\n * .drawCircle(0, 0, 50);\n *\n * // Render the graphics as an HTMLImageElement\n * const image = app.renderer.plugins.extract.image(graphics);\n * document.body.appendChild(image);\n * @namespace PIXI.extract\n */\n\nexport { Extract };\n//# sourceMappingURL=extract.es.js.map\n","/*!\n * @pixi/interaction - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/interaction is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Point } from '@pixi/math';\nimport { Ticker, UPDATE_PRIORITY } from '@pixi/ticker';\nimport { DisplayObject } from '@pixi/display';\nimport { EventEmitter } from '@pixi/utils';\n\n/**\n * Holds all information related to an Interaction event\n *\n * @class\n * @memberof PIXI.interaction\n */\nvar InteractionData = function InteractionData()\n{\n /**\n * This point stores the global coords of where the touch/mouse event happened\n *\n * @member {PIXI.Point}\n */\n this.global = new Point();\n\n /**\n * The target Sprite that was interacted with\n *\n * @member {PIXI.Sprite}\n */\n this.target = null;\n\n /**\n * When passed to an event handler, this will be the original DOM Event that was captured\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent\n * @see https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent\n * @member {MouseEvent|TouchEvent|PointerEvent}\n */\n this.originalEvent = null;\n\n /**\n * Unique identifier for this interaction\n *\n * @member {number}\n */\n this.identifier = null;\n\n /**\n * Indicates whether or not the pointer device that created the event is the primary pointer.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary\n * @type {Boolean}\n */\n this.isPrimary = false;\n\n /**\n * Indicates which button was pressed on the mouse or pointer device to trigger the event.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button\n * @type {number}\n */\n this.button = 0;\n\n /**\n * Indicates which buttons are pressed on the mouse or pointer device when the event is triggered.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/buttons\n * @type {number}\n */\n this.buttons = 0;\n\n /**\n * The width of the pointer's contact along the x-axis, measured in CSS pixels.\n * radiusX of TouchEvents will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width\n * @type {number}\n */\n this.width = 0;\n\n /**\n * The height of the pointer's contact along the y-axis, measured in CSS pixels.\n * radiusY of TouchEvents will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height\n * @type {number}\n */\n this.height = 0;\n\n /**\n * The angle, in degrees, between the pointer device and the screen.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX\n * @type {number}\n */\n this.tiltX = 0;\n\n /**\n * The angle, in degrees, between the pointer device and the screen.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY\n * @type {number}\n */\n this.tiltY = 0;\n\n /**\n * The type of pointer that triggered the event.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType\n * @type {string}\n */\n this.pointerType = null;\n\n /**\n * Pressure applied by the pointing device during the event. A Touch's force property\n * will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure\n * @type {number}\n */\n this.pressure = 0;\n\n /**\n * From TouchEvents (not PointerEvents triggered by touches), the rotationAngle of the Touch.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle\n * @type {number}\n */\n this.rotationAngle = 0;\n\n /**\n * Twist of a stylus pointer.\n * @see https://w3c.github.io/pointerevents/#pointerevent-interface\n * @type {number}\n */\n this.twist = 0;\n\n /**\n * Barrel pressure on a stylus pointer.\n * @see https://w3c.github.io/pointerevents/#pointerevent-interface\n * @type {number}\n */\n this.tangentialPressure = 0;\n};\n\nvar prototypeAccessors = { pointerId: { configurable: true } };\n\n/**\n * The unique identifier of the pointer. It will be the same as `identifier`.\n * @readonly\n * @member {number}\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId\n */\nprototypeAccessors.pointerId.get = function ()\n{\n return this.identifier;\n};\n\n/**\n * This will return the local coordinates of the specified displayObject for this InteractionData\n *\n * @param {PIXI.DisplayObject} displayObject - The DisplayObject that you would like the local\n * coords off\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional (otherwise\n * will create a new point)\n * @param {PIXI.Point} [globalPos] - A Point object containing your custom global coords, optional\n * (otherwise will use the current global coords)\n * @return {PIXI.Point} A point containing the coordinates of the InteractionData position relative\n * to the DisplayObject\n */\nInteractionData.prototype.getLocalPosition = function getLocalPosition (displayObject, point, globalPos)\n{\n return displayObject.worldTransform.applyInverse(globalPos || this.global, point);\n};\n\n/**\n * Copies properties from normalized event data.\n *\n * @param {Touch|MouseEvent|PointerEvent} event The normalized event data\n */\nInteractionData.prototype.copyEvent = function copyEvent (event)\n{\n // isPrimary should only change on touchstart/pointerdown, so we don't want to overwrite\n // it with \"false\" on later events when our shim for it on touch events might not be\n // accurate\n if (event.isPrimary)\n {\n this.isPrimary = true;\n }\n this.button = event.button;\n // event.buttons is not available in all browsers (ie. Safari), but it does have a non-standard\n // event.which property instead, which conveys the same information.\n this.buttons = Number.isInteger(event.buttons) ? event.buttons : event.which;\n this.width = event.width;\n this.height = event.height;\n this.tiltX = event.tiltX;\n this.tiltY = event.tiltY;\n this.pointerType = event.pointerType;\n this.pressure = event.pressure;\n this.rotationAngle = event.rotationAngle;\n this.twist = event.twist || 0;\n this.tangentialPressure = event.tangentialPressure || 0;\n};\n\n/**\n * Resets the data for pooling.\n */\nInteractionData.prototype.reset = function reset ()\n{\n // isPrimary is the only property that we really need to reset - everything else is\n // guaranteed to be overwritten\n this.isPrimary = false;\n};\n\nObject.defineProperties( InteractionData.prototype, prototypeAccessors );\n\n/**\n * Event class that mimics native DOM events.\n *\n * @class\n * @memberof PIXI.interaction\n */\nvar InteractionEvent = function InteractionEvent()\n{\n /**\n * Whether this event will continue propagating in the tree.\n *\n * Remaining events for the {@link stopsPropagatingAt} object\n * will still be dispatched.\n *\n * @member {boolean}\n */\n this.stopped = false;\n\n /**\n * At which object this event stops propagating.\n *\n * @private\n * @member {PIXI.DisplayObject}\n */\n this.stopsPropagatingAt = null;\n\n /**\n * Whether we already reached the element we want to\n * stop propagating at. This is important for delayed events,\n * where we start over deeper in the tree again.\n *\n * @private\n * @member {boolean}\n */\n this.stopPropagationHint = false;\n\n /**\n * The object which caused this event to be dispatched.\n * For listener callback see {@link PIXI.interaction.InteractionEvent.currentTarget}.\n *\n * @member {PIXI.DisplayObject}\n */\n this.target = null;\n\n /**\n * The object whose event listener’s callback is currently being invoked.\n *\n * @member {PIXI.DisplayObject}\n */\n this.currentTarget = null;\n\n /**\n * Type of the event\n *\n * @member {string}\n */\n this.type = null;\n\n /**\n * InteractionData related to this event\n *\n * @member {PIXI.interaction.InteractionData}\n */\n this.data = null;\n};\n\n/**\n * Prevents event from reaching any objects other than the current object.\n *\n */\nInteractionEvent.prototype.stopPropagation = function stopPropagation ()\n{\n this.stopped = true;\n this.stopPropagationHint = true;\n this.stopsPropagatingAt = this.currentTarget;\n};\n\n/**\n * Resets the event.\n */\nInteractionEvent.prototype.reset = function reset ()\n{\n this.stopped = false;\n this.stopsPropagatingAt = null;\n this.stopPropagationHint = false;\n this.currentTarget = null;\n this.target = null;\n};\n\n/**\n * DisplayObjects with the {@link PIXI.interaction.interactiveTarget} mixin use this class to track interactions\n *\n * @class\n * @private\n * @memberof PIXI.interaction\n */\nvar InteractionTrackingData = function InteractionTrackingData(pointerId)\n{\n this._pointerId = pointerId;\n this._flags = InteractionTrackingData.FLAGS.NONE;\n};\n\nvar prototypeAccessors$1 = { pointerId: { configurable: true },flags: { configurable: true },none: { configurable: true },over: { configurable: true },rightDown: { configurable: true },leftDown: { configurable: true } };\n\n/**\n *\n * @private\n * @param {number} flag - The interaction flag to set\n * @param {boolean} yn - Should the flag be set or unset\n */\nInteractionTrackingData.prototype._doSet = function _doSet (flag, yn)\n{\n if (yn)\n {\n this._flags = this._flags | flag;\n }\n else\n {\n this._flags = this._flags & (~flag);\n }\n};\n\n/**\n * Unique pointer id of the event\n *\n * @readonly\n * @private\n * @member {number}\n */\nprototypeAccessors$1.pointerId.get = function ()\n{\n return this._pointerId;\n};\n\n/**\n * State of the tracking data, expressed as bit flags\n *\n * @private\n * @member {number}\n */\nprototypeAccessors$1.flags.get = function ()\n{\n return this._flags;\n};\n\nprototypeAccessors$1.flags.set = function (flags) // eslint-disable-line require-jsdoc\n{\n this._flags = flags;\n};\n\n/**\n * Is the tracked event inactive (not over or down)?\n *\n * @private\n * @member {number}\n */\nprototypeAccessors$1.none.get = function ()\n{\n return this._flags === this.constructor.FLAGS.NONE;\n};\n\n/**\n * Is the tracked event over the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.over.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.OVER) !== 0;\n};\n\nprototypeAccessors$1.over.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.OVER, yn);\n};\n\n/**\n * Did the right mouse button come down in the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.rightDown.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.RIGHT_DOWN) !== 0;\n};\n\nprototypeAccessors$1.rightDown.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.RIGHT_DOWN, yn);\n};\n\n/**\n * Did the left mouse button come down in the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.leftDown.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.LEFT_DOWN) !== 0;\n};\n\nprototypeAccessors$1.leftDown.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.LEFT_DOWN, yn);\n};\n\nObject.defineProperties( InteractionTrackingData.prototype, prototypeAccessors$1 );\n\nInteractionTrackingData.FLAGS = Object.freeze({\n NONE: 0,\n OVER: 1 << 0,\n LEFT_DOWN: 1 << 1,\n RIGHT_DOWN: 1 << 2,\n});\n\n/**\n * Interface for classes that represent a hit area.\n *\n * It is implemented by the following classes:\n * - {@link PIXI.Circle}\n * - {@link PIXI.Ellipse}\n * - {@link PIXI.Polygon}\n * - {@link PIXI.RoundedRectangle}\n *\n * @interface IHitArea\n * @memberof PIXI\n */\n\n/**\n * Checks whether the x and y coordinates given are contained within this area\n *\n * @method\n * @name contains\n * @memberof PIXI.IHitArea#\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this area\n */\n\n/**\n * Default property values of interactive objects\n * Used by {@link PIXI.interaction.InteractionManager} to automatically give all DisplayObjects these properties\n *\n * @private\n * @name interactiveTarget\n * @type {Object}\n * @memberof PIXI.interaction\n * @example\n * function MyObject() {}\n *\n * Object.assign(\n * DisplayObject.prototype,\n * PIXI.interaction.interactiveTarget\n * );\n */\nvar interactiveTarget = {\n\n /**\n * Enable interaction events for the DisplayObject. Touch, pointer and mouse\n * events will not be emitted unless `interactive` is set to `true`.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.on('tap', (event) => {\n * //handle event\n * });\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n interactive: false,\n\n /**\n * Determines if the children to the displayObject can be clicked/touched\n * Setting this to false allows PixiJS to bypass a recursive `hitTest` function\n *\n * @member {boolean}\n * @memberof PIXI.Container#\n */\n interactiveChildren: true,\n\n /**\n * Interaction shape. Children will be hit first, then this shape will be checked.\n * Setting this will cause this shape to be checked in hit tests rather than the displayObject's bounds.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.hitArea = new PIXI.Rectangle(0, 0, 100, 100);\n * @member {PIXI.IHitArea}\n * @memberof PIXI.DisplayObject#\n */\n hitArea: null,\n\n /**\n * If enabled, the mouse cursor use the pointer behavior when hovered over the displayObject if it is interactive\n * Setting this changes the 'cursor' property to `'pointer'`.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.buttonMode = true;\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n get buttonMode()\n {\n return this.cursor === 'pointer';\n },\n set buttonMode(value)\n {\n if (value)\n {\n this.cursor = 'pointer';\n }\n else if (this.cursor === 'pointer')\n {\n this.cursor = null;\n }\n },\n\n /**\n * This defines what cursor mode is used when the mouse cursor\n * is hovered over the displayObject.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.cursor = 'wait';\n * @see https://developer.mozilla.org/en/docs/Web/CSS/cursor\n *\n * @member {string}\n * @memberof PIXI.DisplayObject#\n */\n cursor: null,\n\n /**\n * Internal set of all active pointers, by identifier\n *\n * @member {Map}\n * @memberof PIXI.DisplayObject#\n * @private\n */\n get trackedPointers()\n {\n if (this._trackedPointers === undefined) { this._trackedPointers = {}; }\n\n return this._trackedPointers;\n },\n\n /**\n * Map of all tracked pointers, by identifier. Use trackedPointers to access.\n *\n * @private\n * @type {Map}\n */\n _trackedPointers: undefined,\n};\n\n// Mix interactiveTarget into DisplayObject.prototype,\n// after deprecation has been handled\nDisplayObject.mixin(interactiveTarget);\n\nvar MOUSE_POINTER_ID = 1;\n\n// helpers for hitTest() - only used inside hitTest()\nvar hitTestEvent = {\n target: null,\n data: {\n global: null,\n },\n};\n\n/**\n * The interaction manager deals with mouse, touch and pointer events.\n *\n * Any DisplayObject can be interactive if its `interactive` property is set to true.\n *\n * This manager also supports multitouch.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.interaction`\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI.interaction\n */\nvar InteractionManager = /*@__PURE__*/(function (EventEmitter) {\n function InteractionManager(renderer, options)\n {\n EventEmitter.call(this);\n\n options = options || {};\n\n /**\n * The renderer this interaction manager works for.\n *\n * @member {PIXI.AbstractRenderer}\n */\n this.renderer = renderer;\n\n /**\n * Should default browser actions automatically be prevented.\n * Does not apply to pointer events for backwards compatibility\n * preventDefault on pointer events stops mouse events from firing\n * Thus, for every pointer event, there will always be either a mouse of touch event alongside it.\n *\n * @member {boolean}\n * @default true\n */\n this.autoPreventDefault = options.autoPreventDefault !== undefined ? options.autoPreventDefault : true;\n\n /**\n * Frequency in milliseconds that the mousemove, mouseover & mouseout interaction events will be checked.\n *\n * @member {number}\n * @default 10\n */\n this.interactionFrequency = options.interactionFrequency || 10;\n\n /**\n * The mouse data\n *\n * @member {PIXI.interaction.InteractionData}\n */\n this.mouse = new InteractionData();\n this.mouse.identifier = MOUSE_POINTER_ID;\n\n // setting the mouse to start off far off screen will mean that mouse over does\n // not get called before we even move the mouse.\n this.mouse.global.set(-999999);\n\n /**\n * Actively tracked InteractionData\n *\n * @private\n * @member {Object.}\n */\n this.activeInteractionData = {};\n this.activeInteractionData[MOUSE_POINTER_ID] = this.mouse;\n\n /**\n * Pool of unused InteractionData\n *\n * @private\n * @member {PIXI.interaction.InteractionData[]}\n */\n this.interactionDataPool = [];\n\n /**\n * An event data object to handle all the event tracking/dispatching\n *\n * @member {object}\n */\n this.eventData = new InteractionEvent();\n\n /**\n * The DOM element to bind to.\n *\n * @protected\n * @member {HTMLElement}\n */\n this.interactionDOMElement = null;\n\n /**\n * This property determines if mousemove and touchmove events are fired only when the cursor\n * is over the object.\n * Setting to true will make things work more in line with how the DOM version works.\n * Setting to false can make things easier for things like dragging\n * It is currently set to false as this is how PixiJS used to work. This will be set to true in\n * future versions of pixi.\n *\n * @member {boolean}\n * @default false\n */\n this.moveWhenInside = false;\n\n /**\n * Have events been attached to the dom element?\n *\n * @protected\n * @member {boolean}\n */\n this.eventsAdded = false;\n\n /**\n * Is the mouse hovering over the renderer?\n *\n * @protected\n * @member {boolean}\n */\n this.mouseOverRenderer = false;\n\n /**\n * Does the device support touch events\n * https://www.w3.org/TR/touch-events/\n *\n * @readonly\n * @member {boolean}\n */\n this.supportsTouchEvents = 'ontouchstart' in window;\n\n /**\n * Does the device support pointer events\n * https://www.w3.org/Submission/pointer-events/\n *\n * @readonly\n * @member {boolean}\n */\n this.supportsPointerEvents = !!window.PointerEvent;\n\n // this will make it so that you don't have to call bind all the time\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerUp = this.onPointerUp.bind(this);\n this.processPointerUp = this.processPointerUp.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerCancel = this.onPointerCancel.bind(this);\n this.processPointerCancel = this.processPointerCancel.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerDown = this.onPointerDown.bind(this);\n this.processPointerDown = this.processPointerDown.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerMove = this.onPointerMove.bind(this);\n this.processPointerMove = this.processPointerMove.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerOut = this.onPointerOut.bind(this);\n this.processPointerOverOut = this.processPointerOverOut.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerOver = this.onPointerOver.bind(this);\n\n /**\n * Dictionary of how different cursor modes are handled. Strings are handled as CSS cursor\n * values, objects are handled as dictionaries of CSS values for interactionDOMElement,\n * and functions are called instead of changing the CSS.\n * Default CSS cursor values are provided for 'default' and 'pointer' modes.\n * @member {Object.}\n */\n this.cursorStyles = {\n default: 'inherit',\n pointer: 'pointer',\n };\n\n /**\n * The mode of the cursor that is being used.\n * The value of this is a key from the cursorStyles dictionary.\n *\n * @member {string}\n */\n this.currentCursorMode = null;\n\n /**\n * Internal cached let.\n *\n * @private\n * @member {string}\n */\n this.cursor = null;\n\n /**\n * Internal cached let.\n *\n * @private\n * @member {PIXI.Point}\n */\n this._tempPoint = new Point();\n\n /**\n * The current resolution / device pixel ratio.\n *\n * @member {number}\n * @default 1\n */\n this.resolution = 1;\n\n /**\n * Delayed pointer events. Used to guarantee correct ordering of over/out events.\n *\n * @private\n * @member {Array}\n */\n this.delayedEvents = [];\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed on the display\n * object.\n *\n * @event PIXI.interaction.InteractionManager#mousedown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * on the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released over the display\n * object.\n *\n * @event PIXI.interaction.InteractionManager#mouseup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * over the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed and released on\n * the display object.\n *\n * @event PIXI.interaction.InteractionManager#click\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * and released on the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightclick\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released outside the\n * display object that initially registered a\n * [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown}.\n *\n * @event PIXI.interaction.InteractionManager#mouseupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * outside the display object that initially registered a\n * [rightdown]{@link PIXI.interaction.InteractionManager#event:rightdown}.\n *\n * @event PIXI.interaction.InteractionManager#rightupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved while over the display object\n *\n * @event PIXI.interaction.InteractionManager#mousemove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved onto the display object\n *\n * @event PIXI.interaction.InteractionManager#mouseover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved off the display object\n *\n * @event PIXI.interaction.InteractionManager#mouseout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed on the display object.\n *\n * @event PIXI.interaction.InteractionManager#pointerdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released over the display object.\n * Not always fired when some buttons are held down while others are released. In those cases,\n * use [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown} and\n * [mouseup]{@link PIXI.interaction.InteractionManager#event:mouseup} instead.\n *\n * @event PIXI.interaction.InteractionManager#pointerup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a pointer event\n *\n * @event PIXI.interaction.InteractionManager#pointercancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed and released on the display object.\n *\n * @event PIXI.interaction.InteractionManager#pointertap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released outside the display object that initially\n * registered a [pointerdown]{@link PIXI.interaction.InteractionManager#event:pointerdown}.\n *\n * @event PIXI.interaction.InteractionManager#pointerupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved while over the display object\n *\n * @event PIXI.interaction.InteractionManager#pointermove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved onto the display object\n *\n * @event PIXI.interaction.InteractionManager#pointerover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved off the display object\n *\n * @event PIXI.interaction.InteractionManager#pointerout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed on the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchstart\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed from the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchend\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a touch\n *\n * @event PIXI.interaction.InteractionManager#touchcancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed and removed from the display object.\n *\n * @event PIXI.interaction.InteractionManager#tap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed outside of the display object that initially\n * registered a [touchstart]{@link PIXI.interaction.InteractionManager#event:touchstart}.\n *\n * @event PIXI.interaction.InteractionManager#touchendoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is moved along the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchmove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed on the display.\n * object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mousedown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * on the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released over the display\n * object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * over the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed and released on\n * the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#click\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * and released on the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightclick\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released outside the\n * display object that initially registered a\n * [mousedown]{@link PIXI.DisplayObject#event:mousedown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * outside the display object that initially registered a\n * [rightdown]{@link PIXI.DisplayObject#event:rightdown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved while over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mousemove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved onto the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved off the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a pointer event.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointercancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed and released on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointertap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released outside the display object that initially\n * registered a [pointerdown]{@link PIXI.DisplayObject#event:pointerdown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved while over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointermove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved onto the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved off the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchstart\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed from the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchend\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a touch.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchcancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed and removed from the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#tap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed outside of the display object that initially\n * registered a [touchstart]{@link PIXI.DisplayObject#event:touchstart}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchendoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is moved along the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchmove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n this.setTargetElement(this.renderer.view, this.renderer.resolution);\n }\n\n if ( EventEmitter ) InteractionManager.__proto__ = EventEmitter;\n InteractionManager.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n InteractionManager.prototype.constructor = InteractionManager;\n\n /**\n * Hit tests a point against the display tree, returning the first interactive object that is hit.\n *\n * @param {PIXI.Point} globalPoint - A point to hit test with, in global space.\n * @param {PIXI.Container} [root] - The root display object to start from. If omitted, defaults\n * to the last rendered root of the associated renderer.\n * @return {PIXI.DisplayObject} The hit display object, if any.\n */\n InteractionManager.prototype.hitTest = function hitTest (globalPoint, root)\n {\n // clear the target for our hit test\n hitTestEvent.target = null;\n // assign the global point\n hitTestEvent.data.global = globalPoint;\n // ensure safety of the root\n if (!root)\n {\n root = this.renderer._lastObjectRendered;\n }\n // run the hit test\n this.processInteractive(hitTestEvent, root, null, true);\n // return our found object - it'll be null if we didn't hit anything\n\n return hitTestEvent.target;\n };\n\n /**\n * Sets the DOM element which will receive mouse/touch events. This is useful for when you have\n * other DOM elements on top of the renderers Canvas element. With this you'll be bale to delegate\n * another DOM element to receive those events.\n *\n * @param {HTMLElement} element - the DOM element which will receive mouse and touch events.\n * @param {number} [resolution=1] - The resolution / device pixel ratio of the new element (relative to the canvas).\n */\n InteractionManager.prototype.setTargetElement = function setTargetElement (element, resolution)\n {\n if ( resolution === void 0 ) resolution = 1;\n\n this.removeEvents();\n\n this.interactionDOMElement = element;\n\n this.resolution = resolution;\n\n this.addEvents();\n };\n\n /**\n * Registers all the DOM events\n *\n * @private\n */\n InteractionManager.prototype.addEvents = function addEvents ()\n {\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n Ticker.system.add(this.update, this, UPDATE_PRIORITY.INTERACTION);\n\n if (window.navigator.msPointerEnabled)\n {\n this.interactionDOMElement.style['-ms-content-zooming'] = 'none';\n this.interactionDOMElement.style['-ms-touch-action'] = 'none';\n }\n else if (this.supportsPointerEvents)\n {\n this.interactionDOMElement.style['touch-action'] = 'none';\n }\n\n /**\n * These events are added first, so that if pointer events are normalized, they are fired\n * in the same order as non-normalized events. ie. pointer event 1st, mouse / touch 2nd\n */\n if (this.supportsPointerEvents)\n {\n window.document.addEventListener('pointermove', this.onPointerMove, true);\n this.interactionDOMElement.addEventListener('pointerdown', this.onPointerDown, true);\n // pointerout is fired in addition to pointerup (for touch events) and pointercancel\n // we already handle those, so for the purposes of what we do in onPointerOut, we only\n // care about the pointerleave event\n this.interactionDOMElement.addEventListener('pointerleave', this.onPointerOut, true);\n this.interactionDOMElement.addEventListener('pointerover', this.onPointerOver, true);\n window.addEventListener('pointercancel', this.onPointerCancel, true);\n window.addEventListener('pointerup', this.onPointerUp, true);\n }\n else\n {\n window.document.addEventListener('mousemove', this.onPointerMove, true);\n this.interactionDOMElement.addEventListener('mousedown', this.onPointerDown, true);\n this.interactionDOMElement.addEventListener('mouseout', this.onPointerOut, true);\n this.interactionDOMElement.addEventListener('mouseover', this.onPointerOver, true);\n window.addEventListener('mouseup', this.onPointerUp, true);\n }\n\n // always look directly for touch events so that we can provide original data\n // In a future version we should change this to being just a fallback and rely solely on\n // PointerEvents whenever available\n if (this.supportsTouchEvents)\n {\n this.interactionDOMElement.addEventListener('touchstart', this.onPointerDown, true);\n this.interactionDOMElement.addEventListener('touchcancel', this.onPointerCancel, true);\n this.interactionDOMElement.addEventListener('touchend', this.onPointerUp, true);\n this.interactionDOMElement.addEventListener('touchmove', this.onPointerMove, true);\n }\n\n this.eventsAdded = true;\n };\n\n /**\n * Removes all the DOM events that were previously registered\n *\n * @private\n */\n InteractionManager.prototype.removeEvents = function removeEvents ()\n {\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n Ticker.system.remove(this.update, this);\n\n if (window.navigator.msPointerEnabled)\n {\n this.interactionDOMElement.style['-ms-content-zooming'] = '';\n this.interactionDOMElement.style['-ms-touch-action'] = '';\n }\n else if (this.supportsPointerEvents)\n {\n this.interactionDOMElement.style['touch-action'] = '';\n }\n\n if (this.supportsPointerEvents)\n {\n window.document.removeEventListener('pointermove', this.onPointerMove, true);\n this.interactionDOMElement.removeEventListener('pointerdown', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('pointerleave', this.onPointerOut, true);\n this.interactionDOMElement.removeEventListener('pointerover', this.onPointerOver, true);\n window.removeEventListener('pointercancel', this.onPointerCancel, true);\n window.removeEventListener('pointerup', this.onPointerUp, true);\n }\n else\n {\n window.document.removeEventListener('mousemove', this.onPointerMove, true);\n this.interactionDOMElement.removeEventListener('mousedown', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('mouseout', this.onPointerOut, true);\n this.interactionDOMElement.removeEventListener('mouseover', this.onPointerOver, true);\n window.removeEventListener('mouseup', this.onPointerUp, true);\n }\n\n if (this.supportsTouchEvents)\n {\n this.interactionDOMElement.removeEventListener('touchstart', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('touchcancel', this.onPointerCancel, true);\n this.interactionDOMElement.removeEventListener('touchend', this.onPointerUp, true);\n this.interactionDOMElement.removeEventListener('touchmove', this.onPointerMove, true);\n }\n\n this.interactionDOMElement = null;\n\n this.eventsAdded = false;\n };\n\n /**\n * Updates the state of interactive objects.\n * Invoked by a throttled ticker update from {@link PIXI.Ticker.system}.\n *\n * @param {number} deltaTime - time delta since last tick\n */\n InteractionManager.prototype.update = function update (deltaTime)\n {\n this._deltaTime += deltaTime;\n\n if (this._deltaTime < this.interactionFrequency)\n {\n return;\n }\n\n this._deltaTime = 0;\n\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n // if the user move the mouse this check has already been done using the mouse move!\n if (this.didMove)\n {\n this.didMove = false;\n\n return;\n }\n\n this.cursor = null;\n\n // Resets the flag as set by a stopPropagation call. This flag is usually reset by a user interaction of any kind,\n // but there was a scenario of a display object moving under a static mouse cursor.\n // In this case, mouseover and mouseevents would not pass the flag test in dispatchEvent function\n for (var k in this.activeInteractionData)\n {\n // eslint-disable-next-line no-prototype-builtins\n if (this.activeInteractionData.hasOwnProperty(k))\n {\n var interactionData = this.activeInteractionData[k];\n\n if (interactionData.originalEvent && interactionData.pointerType !== 'touch')\n {\n var interactionEvent = this.configureInteractionEventForDOMEvent(\n this.eventData,\n interactionData.originalEvent,\n interactionData\n );\n\n this.processInteractive(\n interactionEvent,\n this.renderer._lastObjectRendered,\n this.processPointerOverOut,\n true\n );\n }\n }\n }\n\n this.setCursorMode(this.cursor);\n };\n\n /**\n * Sets the current cursor mode, handling any callbacks or CSS style changes.\n *\n * @param {string} mode - cursor mode, a key from the cursorStyles dictionary\n */\n InteractionManager.prototype.setCursorMode = function setCursorMode (mode)\n {\n mode = mode || 'default';\n // if the mode didn't actually change, bail early\n if (this.currentCursorMode === mode)\n {\n return;\n }\n this.currentCursorMode = mode;\n var style = this.cursorStyles[mode];\n\n // only do things if there is a cursor style for it\n if (style)\n {\n switch (typeof style)\n {\n case 'string':\n // string styles are handled as cursor CSS\n this.interactionDOMElement.style.cursor = style;\n break;\n case 'function':\n // functions are just called, and passed the cursor mode\n style(mode);\n break;\n case 'object':\n // if it is an object, assume that it is a dictionary of CSS styles,\n // apply it to the interactionDOMElement\n Object.assign(this.interactionDOMElement.style, style);\n break;\n }\n }\n else if (typeof mode === 'string' && !Object.prototype.hasOwnProperty.call(this.cursorStyles, mode))\n {\n // if it mode is a string (not a Symbol) and cursorStyles doesn't have any entry\n // for the mode, then assume that the dev wants it to be CSS for the cursor.\n this.interactionDOMElement.style.cursor = mode;\n }\n };\n\n /**\n * Dispatches an event on the display object that was interacted with\n *\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question\n * @param {string} eventString - the name of the event (e.g, mousedown)\n * @param {object} eventData - the event data object\n * @private\n */\n InteractionManager.prototype.dispatchEvent = function dispatchEvent (displayObject, eventString, eventData)\n {\n // Even if the event was stopped, at least dispatch any remaining events\n // for the same display object.\n if (!eventData.stopPropagationHint || displayObject === eventData.stopsPropagatingAt)\n {\n eventData.currentTarget = displayObject;\n eventData.type = eventString;\n\n displayObject.emit(eventString, eventData);\n\n if (displayObject[eventString])\n {\n displayObject[eventString](eventData);\n }\n }\n };\n\n /**\n * Puts a event on a queue to be dispatched later. This is used to guarantee correct\n * ordering of over/out events.\n *\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question\n * @param {string} eventString - the name of the event (e.g, mousedown)\n * @param {object} eventData - the event data object\n * @private\n */\n InteractionManager.prototype.delayDispatchEvent = function delayDispatchEvent (displayObject, eventString, eventData)\n {\n this.delayedEvents.push({ displayObject: displayObject, eventString: eventString, eventData: eventData });\n };\n\n /**\n * Maps x and y coords from a DOM object and maps them correctly to the PixiJS view. The\n * resulting value is stored in the point. This takes into account the fact that the DOM\n * element could be scaled and positioned anywhere on the screen.\n *\n * @param {PIXI.Point} point - the point that the result will be stored in\n * @param {number} x - the x coord of the position to map\n * @param {number} y - the y coord of the position to map\n */\n InteractionManager.prototype.mapPositionToPoint = function mapPositionToPoint (point, x, y)\n {\n var rect;\n\n // IE 11 fix\n if (!this.interactionDOMElement.parentElement)\n {\n rect = { x: 0, y: 0, width: 0, height: 0 };\n }\n else\n {\n rect = this.interactionDOMElement.getBoundingClientRect();\n }\n\n var resolutionMultiplier = 1.0 / this.resolution;\n\n point.x = ((x - rect.left) * (this.interactionDOMElement.width / rect.width)) * resolutionMultiplier;\n point.y = ((y - rect.top) * (this.interactionDOMElement.height / rect.height)) * resolutionMultiplier;\n };\n\n /**\n * This function is provides a neat way of crawling through the scene graph and running a\n * specified function on all interactive objects it finds. It will also take care of hit\n * testing the interactive objects and passes the hit across in the function.\n *\n * @protected\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - event containing the point that\n * is tested for collision\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the displayObject\n * that will be hit test (recursively crawls its children)\n * @param {Function} [func] - the function that will be called on each interactive object. The\n * interactionEvent, displayObject and hit will be passed to the function\n * @param {boolean} [hitTest] - this indicates if the objects inside should be hit test against the point\n * @param {boolean} [interactive] - Whether the displayObject is interactive\n * @param {boolean} [skipDelayed] - Whether to process delayed events before returning. This is\n * used to avoid processing them too early during recursive calls.\n * @return {boolean} returns true if the displayObject hit the point\n */\n InteractionManager.prototype.processInteractive = function processInteractive (interactionEvent, displayObject, func, hitTest, interactive, skipDelayed)\n {\n if (!displayObject || !displayObject.visible)\n {\n return false;\n }\n\n var point = interactionEvent.data.global;\n\n // Took a little while to rework this function correctly! But now it is done and nice and optimized! ^_^\n //\n // This function will now loop through all objects and then only hit test the objects it HAS\n // to, not all of them. MUCH faster..\n // An object will be hit test if the following is true:\n //\n // 1: It is interactive.\n // 2: It belongs to a parent that is interactive AND one of the parents children have not already been hit.\n //\n // As another little optimization once an interactive object has been hit we can carry on\n // through the scenegraph, but we know that there will be no more hits! So we can avoid extra hit tests\n // A final optimization is that an object is not hit test directly if a child has already been hit.\n\n interactive = displayObject.interactive || interactive;\n\n var hit = false;\n var interactiveParent = interactive;\n\n // Flag here can set to false if the event is outside the parents hitArea or mask\n var hitTestChildren = true;\n\n // If there is a hitArea, no need to test against anything else if the pointer is not within the hitArea\n // There is also no longer a need to hitTest children.\n if (displayObject.hitArea)\n {\n if (hitTest)\n {\n displayObject.worldTransform.applyInverse(point, this._tempPoint);\n if (!displayObject.hitArea.contains(this._tempPoint.x, this._tempPoint.y))\n {\n hitTest = false;\n hitTestChildren = false;\n }\n else\n {\n hit = true;\n }\n }\n interactiveParent = false;\n }\n // If there is a mask, no need to hitTest against anything else if the pointer is not within the mask.\n // We still want to hitTestChildren, however, to ensure a mouseout can still be generated.\n // https://github.com/pixijs/pixi.js/issues/5135\n else if (displayObject._mask)\n {\n if (hitTest)\n {\n if (!(displayObject._mask.containsPoint && displayObject._mask.containsPoint(point)))\n {\n hitTest = false;\n }\n }\n }\n\n // ** FREE TIP **! If an object is not interactive or has no buttons in it\n // (such as a game scene!) set interactiveChildren to false for that displayObject.\n // This will allow PixiJS to completely ignore and bypass checking the displayObjects children.\n if (hitTestChildren && displayObject.interactiveChildren && displayObject.children)\n {\n var children = displayObject.children;\n\n for (var i = children.length - 1; i >= 0; i--)\n {\n var child = children[i];\n\n // time to get recursive.. if this function will return if something is hit..\n var childHit = this.processInteractive(interactionEvent, child, func, hitTest, interactiveParent, true);\n\n if (childHit)\n {\n // its a good idea to check if a child has lost its parent.\n // this means it has been removed whilst looping so its best\n if (!child.parent)\n {\n continue;\n }\n\n // we no longer need to hit test any more objects in this container as we we\n // now know the parent has been hit\n interactiveParent = false;\n\n // If the child is interactive , that means that the object hit was actually\n // interactive and not just the child of an interactive object.\n // This means we no longer need to hit test anything else. We still need to run\n // through all objects, but we don't need to perform any hit tests.\n\n if (childHit)\n {\n if (interactionEvent.target)\n {\n hitTest = false;\n }\n hit = true;\n }\n }\n }\n }\n\n // no point running this if the item is not interactive or does not have an interactive parent.\n if (interactive)\n {\n // if we are hit testing (as in we have no hit any objects yet)\n // We also don't need to worry about hit testing if once of the displayObjects children\n // has already been hit - but only if it was interactive, otherwise we need to keep\n // looking for an interactive child, just in case we hit one\n if (hitTest && !interactionEvent.target)\n {\n // already tested against hitArea if it is defined\n if (!displayObject.hitArea && displayObject.containsPoint)\n {\n if (displayObject.containsPoint(point))\n {\n hit = true;\n }\n }\n }\n\n if (displayObject.interactive)\n {\n if (hit && !interactionEvent.target)\n {\n interactionEvent.target = displayObject;\n }\n\n if (func)\n {\n func(interactionEvent, displayObject, !!hit);\n }\n }\n }\n\n var delayedEvents = this.delayedEvents;\n\n if (delayedEvents.length && !skipDelayed)\n {\n // Reset the propagation hint, because we start deeper in the tree again.\n interactionEvent.stopPropagationHint = false;\n\n var delayedLen = delayedEvents.length;\n\n this.delayedEvents = [];\n\n for (var i$1 = 0; i$1 < delayedLen; i$1++)\n {\n var ref = delayedEvents[i$1];\n var displayObject$1 = ref.displayObject;\n var eventString = ref.eventString;\n var eventData = ref.eventData;\n\n // When we reach the object we wanted to stop propagating at,\n // set the propagation hint.\n if (eventData.stopsPropagatingAt === displayObject$1)\n {\n eventData.stopPropagationHint = true;\n }\n\n this.dispatchEvent(displayObject$1, eventString, eventData);\n }\n }\n\n return hit;\n };\n\n /**\n * Is called when the pointer button is pressed down on the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being pressed down\n */\n InteractionManager.prototype.onPointerDown = function onPointerDown (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n /**\n * No need to prevent default on natural pointer events, as there are no side effects\n * Normalized events, however, may have the double mousedown/touchstart issue on the native android browser,\n * so still need to be prevented.\n */\n\n // Guaranteed that there will be at least one event in events, and all events must have the same pointer type\n\n if (this.autoPreventDefault && events[0].isNormalized)\n {\n var cancelable = originalEvent.cancelable || !('cancelable' in originalEvent);\n\n if (cancelable)\n {\n originalEvent.preventDefault();\n }\n }\n\n var eventLen = events.length;\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerDown, true);\n\n this.emit('pointerdown', interactionEvent);\n if (event.pointerType === 'touch')\n {\n this.emit('touchstart', interactionEvent);\n }\n // emit a mouse event for \"pen\" pointers, the way a browser would emit a fallback event\n else if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n var isRightButton = event.button === 2;\n\n this.emit(isRightButton ? 'rightdown' : 'mousedown', this.eventData);\n }\n }\n };\n\n /**\n * Processes the result of the pointer down check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerDown = function processPointerDown (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n var id = interactionEvent.data.identifier;\n\n if (hit)\n {\n if (!displayObject.trackedPointers[id])\n {\n displayObject.trackedPointers[id] = new InteractionTrackingData(id);\n }\n this.dispatchEvent(displayObject, 'pointerdown', interactionEvent);\n\n if (data.pointerType === 'touch')\n {\n this.dispatchEvent(displayObject, 'touchstart', interactionEvent);\n }\n else if (data.pointerType === 'mouse' || data.pointerType === 'pen')\n {\n var isRightButton = data.button === 2;\n\n if (isRightButton)\n {\n displayObject.trackedPointers[id].rightDown = true;\n }\n else\n {\n displayObject.trackedPointers[id].leftDown = true;\n }\n\n this.dispatchEvent(displayObject, isRightButton ? 'rightdown' : 'mousedown', interactionEvent);\n }\n }\n };\n\n /**\n * Is called when the pointer button is released on the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being released\n * @param {boolean} cancelled - true if the pointer is cancelled\n * @param {Function} func - Function passed to {@link processInteractive}\n */\n InteractionManager.prototype.onPointerComplete = function onPointerComplete (originalEvent, cancelled, func)\n {\n var events = this.normalizeToPointerData(originalEvent);\n\n var eventLen = events.length;\n\n // if the event wasn't targeting our canvas, then consider it to be pointerupoutside\n // in all cases (unless it was a pointercancel)\n var eventAppend = originalEvent.target !== this.interactionDOMElement ? 'outside' : '';\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n // perform hit testing for events targeting our canvas or cancel events\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, func, cancelled || !eventAppend);\n\n this.emit(cancelled ? 'pointercancel' : (\"pointerup\" + eventAppend), interactionEvent);\n\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n var isRightButton = event.button === 2;\n\n this.emit(isRightButton ? (\"rightup\" + eventAppend) : (\"mouseup\" + eventAppend), interactionEvent);\n }\n else if (event.pointerType === 'touch')\n {\n this.emit(cancelled ? 'touchcancel' : (\"touchend\" + eventAppend), interactionEvent);\n this.releaseInteractionDataForPointerId(event.pointerId, interactionData);\n }\n }\n };\n\n /**\n * Is called when the pointer button is cancelled\n *\n * @private\n * @param {PointerEvent} event - The DOM event of a pointer button being released\n */\n InteractionManager.prototype.onPointerCancel = function onPointerCancel (event)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && event.pointerType === 'touch') { return; }\n\n this.onPointerComplete(event, true, this.processPointerCancel);\n };\n\n /**\n * Processes the result of the pointer cancel check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n */\n InteractionManager.prototype.processPointerCancel = function processPointerCancel (interactionEvent, displayObject)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n if (displayObject.trackedPointers[id] !== undefined)\n {\n delete displayObject.trackedPointers[id];\n this.dispatchEvent(displayObject, 'pointercancel', interactionEvent);\n\n if (data.pointerType === 'touch')\n {\n this.dispatchEvent(displayObject, 'touchcancel', interactionEvent);\n }\n }\n };\n\n /**\n * Is called when the pointer button is released on the renderer element\n *\n * @private\n * @param {PointerEvent} event - The DOM event of a pointer button being released\n */\n InteractionManager.prototype.onPointerUp = function onPointerUp (event)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && event.pointerType === 'touch') { return; }\n\n this.onPointerComplete(event, false, this.processPointerUp);\n };\n\n /**\n * Processes the result of the pointer up check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerUp = function processPointerUp (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n var trackingData = displayObject.trackedPointers[id];\n\n var isTouch = data.pointerType === 'touch';\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n // need to track mouse down status in the mouse block so that we can emit\n // event in a later block\n var isMouseTap = false;\n\n // Mouse only\n if (isMouse)\n {\n var isRightButton = data.button === 2;\n\n var flags = InteractionTrackingData.FLAGS;\n\n var test = isRightButton ? flags.RIGHT_DOWN : flags.LEFT_DOWN;\n\n var isDown = trackingData !== undefined && (trackingData.flags & test);\n\n if (hit)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightup' : 'mouseup', interactionEvent);\n\n if (isDown)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightclick' : 'click', interactionEvent);\n // because we can confirm that the mousedown happened on this object, flag for later emit of pointertap\n isMouseTap = true;\n }\n }\n else if (isDown)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightupoutside' : 'mouseupoutside', interactionEvent);\n }\n // update the down state of the tracking data\n if (trackingData)\n {\n if (isRightButton)\n {\n trackingData.rightDown = false;\n }\n else\n {\n trackingData.leftDown = false;\n }\n }\n }\n\n // Pointers and Touches, and Mouse\n if (hit)\n {\n this.dispatchEvent(displayObject, 'pointerup', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchend', interactionEvent); }\n\n if (trackingData)\n {\n // emit pointertap if not a mouse, or if the mouse block decided it was a tap\n if (!isMouse || isMouseTap)\n {\n this.dispatchEvent(displayObject, 'pointertap', interactionEvent);\n }\n if (isTouch)\n {\n this.dispatchEvent(displayObject, 'tap', interactionEvent);\n // touches are no longer over (if they ever were) when we get the touchend\n // so we should ensure that we don't keep pretending that they are\n trackingData.over = false;\n }\n }\n }\n else if (trackingData)\n {\n this.dispatchEvent(displayObject, 'pointerupoutside', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchendoutside', interactionEvent); }\n }\n // Only remove the tracking data if there is no over/down state still associated with it\n if (trackingData && trackingData.none)\n {\n delete displayObject.trackedPointers[id];\n }\n };\n\n /**\n * Is called when the pointer moves across the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer moving\n */\n InteractionManager.prototype.onPointerMove = function onPointerMove (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n if (events[0].pointerType === 'mouse' || events[0].pointerType === 'pen')\n {\n this.didMove = true;\n\n this.cursor = null;\n }\n\n var eventLen = events.length;\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerMove, true);\n\n this.emit('pointermove', interactionEvent);\n if (event.pointerType === 'touch') { this.emit('touchmove', interactionEvent); }\n if (event.pointerType === 'mouse' || event.pointerType === 'pen') { this.emit('mousemove', interactionEvent); }\n }\n\n if (events[0].pointerType === 'mouse')\n {\n this.setCursorMode(this.cursor);\n\n // TODO BUG for parents interactive object (border order issue)\n }\n };\n\n /**\n * Processes the result of the pointer move check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerMove = function processPointerMove (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var isTouch = data.pointerType === 'touch';\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n\n if (isMouse)\n {\n this.processPointerOverOut(interactionEvent, displayObject, hit);\n }\n\n if (!this.moveWhenInside || hit)\n {\n this.dispatchEvent(displayObject, 'pointermove', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchmove', interactionEvent); }\n if (isMouse) { this.dispatchEvent(displayObject, 'mousemove', interactionEvent); }\n }\n };\n\n /**\n * Is called when the pointer is moved out of the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer being moved out\n */\n InteractionManager.prototype.onPointerOut = function onPointerOut (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n // Only mouse and pointer can call onPointerOut, so events will always be length 1\n var event = events[0];\n\n if (event.pointerType === 'mouse')\n {\n this.mouseOverRenderer = false;\n this.setCursorMode(null);\n }\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = event;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerOverOut, false);\n\n this.emit('pointerout', interactionEvent);\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n this.emit('mouseout', interactionEvent);\n }\n else\n {\n // we can get touchleave events after touchend, so we want to make sure we don't\n // introduce memory leaks\n this.releaseInteractionDataForPointerId(interactionData.identifier);\n }\n };\n\n /**\n * Processes the result of the pointer over/out check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerOverOut = function processPointerOverOut (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n\n var trackingData = displayObject.trackedPointers[id];\n\n // if we just moused over the display object, then we need to track that state\n if (hit && !trackingData)\n {\n trackingData = displayObject.trackedPointers[id] = new InteractionTrackingData(id);\n }\n\n if (trackingData === undefined) { return; }\n\n if (hit && this.mouseOverRenderer)\n {\n if (!trackingData.over)\n {\n trackingData.over = true;\n this.delayDispatchEvent(displayObject, 'pointerover', interactionEvent);\n if (isMouse)\n {\n this.delayDispatchEvent(displayObject, 'mouseover', interactionEvent);\n }\n }\n\n // only change the cursor if it has not already been changed (by something deeper in the\n // display tree)\n if (isMouse && this.cursor === null)\n {\n this.cursor = displayObject.cursor;\n }\n }\n else if (trackingData.over)\n {\n trackingData.over = false;\n this.dispatchEvent(displayObject, 'pointerout', this.eventData);\n if (isMouse)\n {\n this.dispatchEvent(displayObject, 'mouseout', interactionEvent);\n }\n // if there is no mouse down information for the pointer, then it is safe to delete\n if (trackingData.none)\n {\n delete displayObject.trackedPointers[id];\n }\n }\n };\n\n /**\n * Is called when the pointer is moved into the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being moved into the renderer view\n */\n InteractionManager.prototype.onPointerOver = function onPointerOver (originalEvent)\n {\n var events = this.normalizeToPointerData(originalEvent);\n\n // Only mouse and pointer can call onPointerOver, so events will always be length 1\n var event = events[0];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = event;\n\n if (event.pointerType === 'mouse')\n {\n this.mouseOverRenderer = true;\n }\n\n this.emit('pointerover', interactionEvent);\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n this.emit('mouseover', interactionEvent);\n }\n };\n\n /**\n * Get InteractionData for a given pointerId. Store that data as well\n *\n * @private\n * @param {PointerEvent} event - Normalized pointer event, output from normalizeToPointerData\n * @return {PIXI.interaction.InteractionData} - Interaction data for the given pointer identifier\n */\n InteractionManager.prototype.getInteractionDataForPointerId = function getInteractionDataForPointerId (event)\n {\n var pointerId = event.pointerId;\n\n var interactionData;\n\n if (pointerId === MOUSE_POINTER_ID || event.pointerType === 'mouse')\n {\n interactionData = this.mouse;\n }\n else if (this.activeInteractionData[pointerId])\n {\n interactionData = this.activeInteractionData[pointerId];\n }\n else\n {\n interactionData = this.interactionDataPool.pop() || new InteractionData();\n interactionData.identifier = pointerId;\n this.activeInteractionData[pointerId] = interactionData;\n }\n // copy properties from the event, so that we can make sure that touch/pointer specific\n // data is available\n interactionData.copyEvent(event);\n\n return interactionData;\n };\n\n /**\n * Return unused InteractionData to the pool, for a given pointerId\n *\n * @private\n * @param {number} pointerId - Identifier from a pointer event\n */\n InteractionManager.prototype.releaseInteractionDataForPointerId = function releaseInteractionDataForPointerId (pointerId)\n {\n var interactionData = this.activeInteractionData[pointerId];\n\n if (interactionData)\n {\n delete this.activeInteractionData[pointerId];\n interactionData.reset();\n this.interactionDataPool.push(interactionData);\n }\n };\n\n /**\n * Configure an InteractionEvent to wrap a DOM PointerEvent and InteractionData\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The event to be configured\n * @param {PointerEvent} pointerEvent - The DOM event that will be paired with the InteractionEvent\n * @param {PIXI.interaction.InteractionData} interactionData - The InteractionData that will be paired\n * with the InteractionEvent\n * @return {PIXI.interaction.InteractionEvent} the interaction event that was passed in\n */\n InteractionManager.prototype.configureInteractionEventForDOMEvent = function configureInteractionEventForDOMEvent (interactionEvent, pointerEvent, interactionData)\n {\n interactionEvent.data = interactionData;\n\n this.mapPositionToPoint(interactionData.global, pointerEvent.clientX, pointerEvent.clientY);\n\n // Not really sure why this is happening, but it's how a previous version handled things\n if (pointerEvent.pointerType === 'touch')\n {\n pointerEvent.globalX = interactionData.global.x;\n pointerEvent.globalY = interactionData.global.y;\n }\n\n interactionData.originalEvent = pointerEvent;\n interactionEvent.reset();\n\n return interactionEvent;\n };\n\n /**\n * Ensures that the original event object contains all data that a regular pointer event would have\n *\n * @private\n * @param {TouchEvent|MouseEvent|PointerEvent} event - The original event data from a touch or mouse event\n * @return {PointerEvent[]} An array containing a single normalized pointer event, in the case of a pointer\n * or mouse event, or a multiple normalized pointer events if there are multiple changed touches\n */\n InteractionManager.prototype.normalizeToPointerData = function normalizeToPointerData (event)\n {\n var normalizedEvents = [];\n\n if (this.supportsTouchEvents && event instanceof TouchEvent)\n {\n for (var i = 0, li = event.changedTouches.length; i < li; i++)\n {\n var touch = event.changedTouches[i];\n\n if (typeof touch.button === 'undefined') { touch.button = event.touches.length ? 1 : 0; }\n if (typeof touch.buttons === 'undefined') { touch.buttons = event.touches.length ? 1 : 0; }\n if (typeof touch.isPrimary === 'undefined')\n {\n touch.isPrimary = event.touches.length === 1 && event.type === 'touchstart';\n }\n if (typeof touch.width === 'undefined') { touch.width = touch.radiusX || 1; }\n if (typeof touch.height === 'undefined') { touch.height = touch.radiusY || 1; }\n if (typeof touch.tiltX === 'undefined') { touch.tiltX = 0; }\n if (typeof touch.tiltY === 'undefined') { touch.tiltY = 0; }\n if (typeof touch.pointerType === 'undefined') { touch.pointerType = 'touch'; }\n if (typeof touch.pointerId === 'undefined') { touch.pointerId = touch.identifier || 0; }\n if (typeof touch.pressure === 'undefined') { touch.pressure = touch.force || 0.5; }\n if (typeof touch.twist === 'undefined') { touch.twist = 0; }\n if (typeof touch.tangentialPressure === 'undefined') { touch.tangentialPressure = 0; }\n // TODO: Remove these, as layerX/Y is not a standard, is deprecated, has uneven\n // support, and the fill ins are not quite the same\n // offsetX/Y might be okay, but is not the same as clientX/Y when the canvas's top\n // left is not 0,0 on the page\n if (typeof touch.layerX === 'undefined') { touch.layerX = touch.offsetX = touch.clientX; }\n if (typeof touch.layerY === 'undefined') { touch.layerY = touch.offsetY = touch.clientY; }\n\n // mark the touch as normalized, just so that we know we did it\n touch.isNormalized = true;\n\n normalizedEvents.push(touch);\n }\n }\n // apparently PointerEvent subclasses MouseEvent, so yay\n else if (event instanceof MouseEvent && (!this.supportsPointerEvents || !(event instanceof window.PointerEvent)))\n {\n if (typeof event.isPrimary === 'undefined') { event.isPrimary = true; }\n if (typeof event.width === 'undefined') { event.width = 1; }\n if (typeof event.height === 'undefined') { event.height = 1; }\n if (typeof event.tiltX === 'undefined') { event.tiltX = 0; }\n if (typeof event.tiltY === 'undefined') { event.tiltY = 0; }\n if (typeof event.pointerType === 'undefined') { event.pointerType = 'mouse'; }\n if (typeof event.pointerId === 'undefined') { event.pointerId = MOUSE_POINTER_ID; }\n if (typeof event.pressure === 'undefined') { event.pressure = 0.5; }\n if (typeof event.twist === 'undefined') { event.twist = 0; }\n if (typeof event.tangentialPressure === 'undefined') { event.tangentialPressure = 0; }\n\n // mark the mouse event as normalized, just so that we know we did it\n event.isNormalized = true;\n\n normalizedEvents.push(event);\n }\n else\n {\n normalizedEvents.push(event);\n }\n\n return normalizedEvents;\n };\n\n /**\n * Destroys the interaction manager\n *\n */\n InteractionManager.prototype.destroy = function destroy ()\n {\n this.removeEvents();\n\n this.removeAllListeners();\n\n this.renderer = null;\n\n this.mouse = null;\n\n this.eventData = null;\n\n this.interactionDOMElement = null;\n\n this.onPointerDown = null;\n this.processPointerDown = null;\n\n this.onPointerUp = null;\n this.processPointerUp = null;\n\n this.onPointerCancel = null;\n this.processPointerCancel = null;\n\n this.onPointerMove = null;\n this.processPointerMove = null;\n\n this.onPointerOut = null;\n this.processPointerOverOut = null;\n\n this.onPointerOver = null;\n\n this._tempPoint = null;\n };\n\n return InteractionManager;\n}(EventEmitter));\n\n/**\n * This namespace contains a renderer plugin for handling mouse, pointer, and touch events.\n *\n * Do not instantiate this plugin directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @namespace PIXI.interaction\n */\n\nexport { InteractionData, InteractionEvent, InteractionManager, InteractionTrackingData, interactiveTarget };\n//# sourceMappingURL=interaction.es.js.map\n","/*!\n * @pixi/graphics - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/graphics is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture, BaseTexture, BatchDrawCall, BatchGeometry, UniformGroup, Shader, State } from '@pixi/core';\nimport { SHAPES, Point, PI_2, Polygon, Rectangle, RoundedRectangle, Circle, Ellipse, Matrix } from '@pixi/math';\nimport { earcut, premultiplyTint, hex2rgb } from '@pixi/utils';\nimport { Bounds, Container } from '@pixi/display';\nimport { WRAP_MODES, DRAW_MODES, BLEND_MODES } from '@pixi/constants';\n\n/**\n * Graphics curves resolution settings. If `adaptive` flag is set to `true`,\n * the resolution is calculated based on the curve's length to ensure better visual quality.\n * Adaptive draw works with `bezierCurveTo` and `quadraticCurveTo`.\n *\n * @static\n * @constant\n * @memberof PIXI\n * @name GRAPHICS_CURVES\n * @type {object}\n * @property {boolean} adaptive=false - flag indicating if the resolution should be adaptive\n * @property {number} maxLength=10 - maximal length of a single segment of the curve (if adaptive = false, ignored)\n * @property {number} minSegments=8 - minimal number of segments in the curve (if adaptive = false, ignored)\n * @property {number} maxSegments=2048 - maximal number of segments in the curve (if adaptive = false, ignored)\n */\nvar GRAPHICS_CURVES = {\n adaptive: true,\n maxLength: 10,\n minSegments: 8,\n maxSegments: 2048,\n _segmentsCount: function _segmentsCount(length, defaultSegments)\n {\n if ( defaultSegments === void 0 ) defaultSegments = 20;\n\n if (!this.adaptive)\n {\n return defaultSegments;\n }\n\n var result = Math.ceil(length / this.maxLength);\n\n if (result < this.minSegments)\n {\n result = this.minSegments;\n }\n else if (result > this.maxSegments)\n {\n result = this.maxSegments;\n }\n\n return result;\n },\n};\n\n/**\n * Fill style object for Graphics.\n *\n * @class\n * @memberof PIXI\n */\nvar FillStyle = function FillStyle()\n{\n this.reset();\n};\n\n/**\n * Clones the object\n *\n * @return {PIXI.FillStyle}\n */\nFillStyle.prototype.clone = function clone ()\n{\n var obj = new FillStyle();\n\n obj.color = this.color;\n obj.alpha = this.alpha;\n obj.texture = this.texture;\n obj.matrix = this.matrix;\n obj.visible = this.visible;\n\n return obj;\n};\n\n/**\n * Reset\n */\nFillStyle.prototype.reset = function reset ()\n{\n /**\n * The hex color value used when coloring the Graphics object.\n *\n * @member {number}\n * @default 1\n */\n this.color = 0xFFFFFF;\n\n /**\n * The alpha value used when filling the Graphics object.\n *\n * @member {number}\n * @default 1\n */\n this.alpha = 1;\n\n /**\n * The texture to be used for the fill.\n *\n * @member {string}\n * @default 0\n */\n this.texture = Texture.WHITE;\n\n /**\n * The transform aplpied to the texture.\n *\n * @member {string}\n * @default 0\n */\n this.matrix = null;\n\n /**\n * If the current fill is visible.\n *\n * @member {boolean}\n * @default false\n */\n this.visible = false;\n};\n\n/**\n * Destroy and don't use after this\n */\nFillStyle.prototype.destroy = function destroy ()\n{\n this.texture = null;\n this.matrix = null;\n};\n\n/**\n * A class to contain data useful for Graphics objects\n *\n * @class\n * @memberof PIXI\n */\nvar GraphicsData = function GraphicsData(shape, fillStyle, lineStyle, matrix)\n{\n if ( fillStyle === void 0 ) fillStyle = null;\n if ( lineStyle === void 0 ) lineStyle = null;\n if ( matrix === void 0 ) matrix = null;\n\n /**\n * The shape object to draw.\n * @member {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle}\n */\n this.shape = shape;\n\n /**\n * The style of the line.\n * @member {PIXI.LineStyle}\n */\n this.lineStyle = lineStyle;\n\n /**\n * The style of the fill.\n * @member {PIXI.FillStyle}\n */\n this.fillStyle = fillStyle;\n\n /**\n * The transform matrix.\n * @member {PIXI.Matrix}\n */\n this.matrix = matrix;\n\n /**\n * The type of the shape, see the Const.Shapes file for all the existing types,\n * @member {number}\n */\n this.type = shape.type;\n\n /**\n * The collection of points.\n * @member {number[]}\n */\n this.points = [];\n\n /**\n * The collection of holes.\n * @member {PIXI.GraphicsData[]}\n */\n this.holes = [];\n};\n\n/**\n * Creates a new GraphicsData object with the same values as this one.\n *\n * @return {PIXI.GraphicsData} Cloned GraphicsData object\n */\nGraphicsData.prototype.clone = function clone ()\n{\n return new GraphicsData(\n this.shape,\n this.fillStyle,\n this.lineStyle,\n this.matrix\n );\n};\n\n/**\n * Destroys the Graphics data.\n */\nGraphicsData.prototype.destroy = function destroy ()\n{\n this.shape = null;\n this.holes.length = 0;\n this.holes = null;\n this.points.length = 0;\n this.points = null;\n this.lineStyle = null;\n this.fillStyle = null;\n};\n\n/**\n * Builds a circle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object to draw\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildCircle = {\n\n build: function build(graphicsData)\n {\n // need to convert points to a nice regular data\n var circleData = graphicsData.shape;\n var points = graphicsData.points;\n var x = circleData.x;\n var y = circleData.y;\n var width;\n var height;\n\n points.length = 0;\n\n // TODO - bit hacky??\n if (graphicsData.type === SHAPES.CIRC)\n {\n width = circleData.radius;\n height = circleData.radius;\n }\n else\n {\n width = circleData.width;\n height = circleData.height;\n }\n\n if (width === 0 || height === 0)\n {\n return;\n }\n\n var totalSegs = Math.floor(30 * Math.sqrt(circleData.radius))\n || Math.floor(15 * Math.sqrt(circleData.width + circleData.height));\n\n totalSegs /= 2.3;\n\n var seg = (Math.PI * 2) / totalSegs;\n\n for (var i = 0; i < totalSegs; i++)\n {\n points.push(\n x + (Math.sin(-seg * i) * width),\n y + (Math.cos(-seg * i) * height)\n );\n }\n\n points.push(\n points[0],\n points[1]\n );\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n var vertPos = verts.length / 2;\n var center = vertPos;\n\n verts.push(graphicsData.shape.x, graphicsData.shape.y);\n\n for (var i = 0; i < points.length; i += 2)\n {\n verts.push(points[i], points[i + 1]);\n\n // add some uvs\n indices.push(vertPos++, center, vertPos);\n }\n },\n};\n\n/**\n * Builds a line to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildLine (graphicsData, graphicsGeometry)\n{\n if (graphicsData.lineStyle.native)\n {\n buildNativeLine(graphicsData, graphicsGeometry);\n }\n else\n {\n buildLine$1(graphicsData, graphicsGeometry);\n }\n}\n\n/**\n * Builds a line to draw using the polygon method.\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildLine$1(graphicsData, graphicsGeometry)\n{\n var shape = graphicsData.shape;\n var points = graphicsData.points || shape.points.slice();\n var eps = graphicsGeometry.closePointEps;\n\n if (points.length === 0)\n {\n return;\n }\n // if the line width is an odd number add 0.5 to align to a whole pixel\n // commenting this out fixes #711 and #1620\n // if (graphicsData.lineWidth%2)\n // {\n // for (i = 0; i < points.length; i++)\n // {\n // points[i] += 0.5;\n // }\n // }\n\n var style = graphicsData.lineStyle;\n\n // get first and last point.. figure out the middle!\n var firstPoint = new Point(points[0], points[1]);\n var lastPoint = new Point(points[points.length - 2], points[points.length - 1]);\n var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke;\n var closedPath = Math.abs(firstPoint.x - lastPoint.x) < eps\n && Math.abs(firstPoint.y - lastPoint.y) < eps;\n\n // if the first point is the last point - gonna have issues :)\n if (closedShape)\n {\n // need to clone as we are going to slightly modify the shape..\n points = points.slice();\n\n if (closedPath)\n {\n points.pop();\n points.pop();\n lastPoint.set(points[points.length - 2], points[points.length - 1]);\n }\n\n var midPointX = lastPoint.x + ((firstPoint.x - lastPoint.x) * 0.5);\n var midPointY = lastPoint.y + ((firstPoint.y - lastPoint.y) * 0.5);\n\n points.unshift(midPointX, midPointY);\n points.push(midPointX, midPointY);\n }\n\n var verts = graphicsGeometry.points;\n var length = points.length / 2;\n var indexCount = points.length;\n var indexStart = verts.length / 2;\n\n // DRAW the Line\n var width = style.width / 2;\n\n // sort color\n var p1x = points[0];\n var p1y = points[1];\n var p2x = points[2];\n var p2y = points[3];\n var p3x = 0;\n var p3y = 0;\n\n var perpx = -(p1y - p2y);\n var perpy = p1x - p2x;\n var perp2x = 0;\n var perp2y = 0;\n var perp3x = 0;\n var perp3y = 0;\n\n var dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n var ratio = style.alignment;// 0.5;\n var r1 = (1 - ratio) * 2;\n var r2 = ratio * 2;\n\n // start\n verts.push(\n p1x - (perpx * r1),\n p1y - (perpy * r1));\n\n verts.push(\n p1x + (perpx * r2),\n p1y + (perpy * r2));\n\n for (var i = 1; i < length - 1; ++i)\n {\n p1x = points[(i - 1) * 2];\n p1y = points[((i - 1) * 2) + 1];\n\n p2x = points[i * 2];\n p2y = points[(i * 2) + 1];\n\n p3x = points[(i + 1) * 2];\n p3y = points[((i + 1) * 2) + 1];\n\n perpx = -(p1y - p2y);\n perpy = p1x - p2x;\n\n dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n perp2x = -(p2y - p3y);\n perp2y = p2x - p3x;\n\n dist = Math.sqrt((perp2x * perp2x) + (perp2y * perp2y));\n perp2x /= dist;\n perp2y /= dist;\n perp2x *= width;\n perp2y *= width;\n\n var a1 = (-perpy + p1y) - (-perpy + p2y);\n var b1 = (-perpx + p2x) - (-perpx + p1x);\n var c1 = ((-perpx + p1x) * (-perpy + p2y)) - ((-perpx + p2x) * (-perpy + p1y));\n var a2 = (-perp2y + p3y) - (-perp2y + p2y);\n var b2 = (-perp2x + p2x) - (-perp2x + p3x);\n var c2 = ((-perp2x + p3x) * (-perp2y + p2y)) - ((-perp2x + p2x) * (-perp2y + p3y));\n\n var denom = (a1 * b2) - (a2 * b1);\n\n if (Math.abs(denom) < 0.1)\n {\n denom += 10.1;\n verts.push(\n p2x - (perpx * r1),\n p2y - (perpy * r1));\n\n verts.push(\n p2x + (perpx * r2),\n p2y + (perpy * r2));\n\n continue;\n }\n\n var px = ((b1 * c2) - (b2 * c1)) / denom;\n var py = ((a2 * c1) - (a1 * c2)) / denom;\n var pdist = ((px - p2x) * (px - p2x)) + ((py - p2y) * (py - p2y));\n\n if (pdist > (196 * width * width))\n {\n perp3x = perpx - perp2x;\n perp3y = perpy - perp2y;\n\n dist = Math.sqrt((perp3x * perp3x) + (perp3y * perp3y));\n perp3x /= dist;\n perp3y /= dist;\n perp3x *= width;\n perp3y *= width;\n\n verts.push(p2x - (perp3x * r1), p2y - (perp3y * r1));\n\n verts.push(p2x + (perp3x * r2), p2y + (perp3y * r2));\n\n verts.push(p2x - (perp3x * r2 * r1), p2y - (perp3y * r1));\n\n indexCount++;\n }\n else\n {\n verts.push(p2x + ((px - p2x) * r1), p2y + ((py - p2y) * r1));\n\n verts.push(p2x - ((px - p2x) * r2), p2y - ((py - p2y) * r2));\n }\n }\n\n p1x = points[(length - 2) * 2];\n p1y = points[((length - 2) * 2) + 1];\n\n p2x = points[(length - 1) * 2];\n p2y = points[((length - 1) * 2) + 1];\n\n perpx = -(p1y - p2y);\n perpy = p1x - p2x;\n\n dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n verts.push(p2x - (perpx * r1), p2y - (perpy * r1));\n\n verts.push(p2x + (perpx * r2), p2y + (perpy * r2));\n\n var indices = graphicsGeometry.indices;\n\n // indices.push(indexStart);\n\n for (var i$1 = 0; i$1 < indexCount - 2; ++i$1)\n {\n indices.push(indexStart, indexStart + 1, indexStart + 2);\n\n indexStart++;\n }\n}\n\n/**\n * Builds a line to draw using the gl.drawArrays(gl.LINES) method\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildNativeLine(graphicsData, graphicsGeometry)\n{\n var i = 0;\n\n var shape = graphicsData.shape;\n var points = graphicsData.points || shape.points;\n var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke;\n\n if (points.length === 0) { return; }\n\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n var length = points.length / 2;\n\n var startIndex = verts.length / 2;\n var currentIndex = startIndex;\n\n verts.push(points[0], points[1]);\n\n for (i = 1; i < length; i++)\n {\n verts.push(points[i * 2], points[(i * 2) + 1]);\n indices.push(currentIndex, currentIndex + 1);\n\n currentIndex++;\n }\n\n if (closedShape)\n {\n indices.push(currentIndex, startIndex);\n }\n}\n\n/**\n * Builds a polygon to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildPoly = {\n\n build: function build(graphicsData)\n {\n graphicsData.points = graphicsData.shape.points.slice();\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var holes = graphicsData.holes;\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n if (points.length >= 6)\n {\n var holeArray = [];\n // Process holes..\n\n for (var i = 0; i < holes.length; i++)\n {\n var hole = holes[i];\n\n holeArray.push(points.length / 2);\n points = points.concat(hole.points);\n }\n\n // sort color\n var triangles = earcut(points, holeArray, 2);\n\n if (!triangles)\n {\n return;\n }\n\n var vertPos = verts.length / 2;\n\n for (var i$1 = 0; i$1 < triangles.length; i$1 += 3)\n {\n indices.push(triangles[i$1] + vertPos);\n indices.push(triangles[i$1 + 1] + vertPos);\n indices.push(triangles[i$1 + 2] + vertPos);\n }\n\n for (var i$2 = 0; i$2 < points.length; i$2++)\n {\n verts.push(points[i$2]);\n }\n }\n },\n};\n\n/**\n * Builds a rectangle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildRectangle = {\n\n build: function build(graphicsData)\n {\n // --- //\n // need to convert points to a nice regular data\n //\n var rectData = graphicsData.shape;\n var x = rectData.x;\n var y = rectData.y;\n var width = rectData.width;\n var height = rectData.height;\n\n var points = graphicsData.points;\n\n points.length = 0;\n\n points.push(x, y,\n x + width, y,\n x + width, y + height,\n x, y + height);\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var verts = graphicsGeometry.points;\n\n var vertPos = verts.length / 2;\n\n verts.push(points[0], points[1],\n points[2], points[3],\n points[6], points[7],\n points[4], points[5]);\n\n graphicsGeometry.indices.push(vertPos, vertPos + 1, vertPos + 2,\n vertPos + 1, vertPos + 2, vertPos + 3);\n },\n};\n\n/**\n * Builds a rounded rectangle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildRoundedRectangle = {\n\n build: function build(graphicsData)\n {\n var rrectData = graphicsData.shape;\n var points = graphicsData.points;\n var x = rrectData.x;\n var y = rrectData.y;\n var width = rrectData.width;\n var height = rrectData.height;\n\n var radius = rrectData.radius;\n\n points.length = 0;\n\n quadraticBezierCurve(x, y + radius,\n x, y,\n x + radius, y,\n points);\n quadraticBezierCurve(x + width - radius,\n y, x + width, y,\n x + width, y + radius,\n points);\n quadraticBezierCurve(x + width, y + height - radius,\n x + width, y + height,\n x + width - radius, y + height,\n points);\n quadraticBezierCurve(x + radius, y + height,\n x, y + height,\n x, y + height - radius,\n points);\n\n // this tiny number deals with the issue that occurs when points overlap and earcut fails to triangulate the item.\n // TODO - fix this properly, this is not very elegant.. but it works for now.\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n var vecPos = verts.length / 2;\n\n var triangles = earcut(points, null, 2);\n\n for (var i = 0, j = triangles.length; i < j; i += 3)\n {\n indices.push(triangles[i] + vecPos);\n // indices.push(triangles[i] + vecPos);\n indices.push(triangles[i + 1] + vecPos);\n // indices.push(triangles[i + 2] + vecPos);\n indices.push(triangles[i + 2] + vecPos);\n }\n\n for (var i$1 = 0, j$1 = points.length; i$1 < j$1; i$1++)\n {\n verts.push(points[i$1], points[++i$1]);\n }\n },\n};\n\n/**\n * Calculate a single point for a quadratic bezier curve.\n * Utility function used by quadraticBezierCurve.\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {number} n1 - first number\n * @param {number} n2 - second number\n * @param {number} perc - percentage\n * @return {number} the result\n *\n */\nfunction getPt(n1, n2, perc)\n{\n var diff = n2 - n1;\n\n return n1 + (diff * perc);\n}\n\n/**\n * Calculate the points for a quadratic bezier curve. (helper function..)\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {number} fromX - Origin point x\n * @param {number} fromY - Origin point x\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} [out=[]] - The output array to add points into. If not passed, a new array is created.\n * @return {number[]} an array of points\n */\nfunction quadraticBezierCurve(fromX, fromY, cpX, cpY, toX, toY, out)\n{\n if ( out === void 0 ) out = [];\n\n var n = 20;\n var points = out;\n\n var xa = 0;\n var ya = 0;\n var xb = 0;\n var yb = 0;\n var x = 0;\n var y = 0;\n\n for (var i = 0, j = 0; i <= n; ++i)\n {\n j = i / n;\n\n // The Green Line\n xa = getPt(fromX, cpX, j);\n ya = getPt(fromY, cpY, j);\n xb = getPt(cpX, toX, j);\n yb = getPt(cpY, toY, j);\n\n // The Black Dot\n x = getPt(xa, xb, j);\n y = getPt(ya, yb, j);\n\n points.push(x, y);\n }\n\n return points;\n}\n\nvar BATCH_POOL = [];\nvar DRAW_CALL_POOL = [];\nvar tmpPoint = new Point();\n\n/**\n * Map of fill commands for each shape type.\n *\n * @member {Object}\n * @private\n */\nvar fillCommands = {};\n\nfillCommands[SHAPES.POLY] = buildPoly;\nfillCommands[SHAPES.CIRC] = buildCircle;\nfillCommands[SHAPES.ELIP] = buildCircle;\nfillCommands[SHAPES.RECT] = buildRectangle;\nfillCommands[SHAPES.RREC] = buildRoundedRectangle;\n\n/**\n * A little internal structure to hold interim batch objects.\n *\n * @private\n */\nvar BatchPart = function BatchPart()\n{\n this.style = null;\n this.size = 0;\n this.start = 0;\n this.attribStart = 0;\n this.attribSize = 0;\n};\n\n/**\n * The Graphics class contains methods used to draw primitive shapes such as lines, circles and\n * rectangles to the display, and to color and fill them.\n *\n * GraphicsGeometry is designed to not be continually updating the geometry since it's expensive\n * to re-tesselate using **earcut**. Consider using {@link PIXI.Mesh} for this use-case, it's much faster.\n *\n * @class\n * @extends PIXI.BatchGeometry\n * @memberof PIXI\n */\nvar GraphicsGeometry = /*@__PURE__*/(function (BatchGeometry) {\n function GraphicsGeometry()\n {\n BatchGeometry.call(this);\n\n /**\n * An array of points to draw, 2 numbers per point\n *\n * @member {number[]}\n * @protected\n */\n this.points = [];\n\n /**\n * The collection of colors\n *\n * @member {number[]}\n * @protected\n */\n this.colors = [];\n\n /**\n * The UVs collection\n *\n * @member {number[]}\n * @protected\n */\n this.uvs = [];\n\n /**\n * The indices of the vertices\n *\n * @member {number[]}\n * @protected\n */\n this.indices = [];\n\n /**\n * Reference to the texture IDs.\n *\n * @member {number[]}\n * @protected\n */\n this.textureIds = [];\n\n /**\n * The collection of drawn shapes.\n *\n * @member {PIXI.GraphicsData[]}\n * @protected\n */\n this.graphicsData = [];\n\n /**\n * Used to detect if the graphics object has changed.\n *\n * @member {number}\n * @protected\n */\n this.dirty = 0;\n\n /**\n * Batches need to regenerated if the geometry is updated.\n *\n * @member {number}\n * @protected\n */\n this.batchDirty = -1;\n\n /**\n * Used to check if the cache is dirty.\n *\n * @member {number}\n * @protected\n */\n this.cacheDirty = -1;\n\n /**\n * Used to detect if we cleared the graphicsData.\n *\n * @member {number}\n * @default 0\n * @protected\n */\n this.clearDirty = 0;\n\n /**\n * List of current draw calls drived from the batches.\n *\n * @member {object[]}\n * @protected\n */\n this.drawCalls = [];\n\n /**\n * Intermediate abstract format sent to batch system.\n * Can be converted to drawCalls or to batchable objects.\n *\n * @member {object[]}\n * @protected\n */\n this.batches = [];\n\n /**\n * Index of the last batched shape in the stack of calls.\n *\n * @member {number}\n * @protected\n */\n this.shapeIndex = 0;\n\n /**\n * Cached bounds.\n *\n * @member {PIXI.Bounds}\n * @protected\n */\n this._bounds = new Bounds();\n\n /**\n * The bounds dirty flag.\n *\n * @member {number}\n * @protected\n */\n this.boundsDirty = -1;\n\n /**\n * Padding to add to the bounds.\n *\n * @member {number}\n * @default 0\n */\n this.boundsPadding = 0;\n\n this.batchable = false;\n\n this.indicesUint16 = null;\n\n this.uvsFloat32 = null;\n\n /**\n * Minimal distance between points that are considered different.\n * Affects line tesselation.\n *\n * @member {number}\n */\n this.closePointEps = 1e-4;\n }\n\n if ( BatchGeometry ) GraphicsGeometry.__proto__ = BatchGeometry;\n GraphicsGeometry.prototype = Object.create( BatchGeometry && BatchGeometry.prototype );\n GraphicsGeometry.prototype.constructor = GraphicsGeometry;\n\n var prototypeAccessors = { bounds: { configurable: true } };\n\n /**\n * Get the current bounds of the graphic geometry.\n *\n * @member {PIXI.Bounds}\n * @readonly\n */\n prototypeAccessors.bounds.get = function ()\n {\n if (this.boundsDirty !== this.dirty)\n {\n this.boundsDirty = this.dirty;\n this.calculateBounds();\n }\n\n return this._bounds;\n };\n\n /**\n * Call if you changed graphicsData manually.\n * Empties all batch buffers.\n */\n GraphicsGeometry.prototype.invalidate = function invalidate ()\n {\n this.boundsDirty = -1;\n this.dirty++;\n this.batchDirty++;\n this.shapeIndex = 0;\n\n this.points.length = 0;\n this.colors.length = 0;\n this.uvs.length = 0;\n this.indices.length = 0;\n this.textureIds.length = 0;\n\n for (var i = 0; i < this.drawCalls.length; i++)\n {\n this.drawCalls[i].textures.length = 0;\n DRAW_CALL_POOL.push(this.drawCalls[i]);\n }\n\n this.drawCalls.length = 0;\n\n for (var i$1 = 0; i$1 < this.batches.length; i$1++)\n {\n var batch = this.batches[i$1];\n\n batch.start = 0;\n batch.attribStart = 0;\n batch.style = null;\n BATCH_POOL.push(batch);\n }\n\n this.batches.length = 0;\n };\n\n /**\n * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings.\n *\n * @return {PIXI.GraphicsGeometry} This GraphicsGeometry object. Good for chaining method calls\n */\n GraphicsGeometry.prototype.clear = function clear ()\n {\n if (this.graphicsData.length > 0)\n {\n this.invalidate();\n this.clearDirty++;\n this.graphicsData.length = 0;\n }\n\n return this;\n };\n\n /**\n * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw.\n * @param {PIXI.FillStyle} fillStyle - Defines style of the fill.\n * @param {PIXI.LineStyle} lineStyle - Defines style of the lines.\n * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape.\n * @return {PIXI.GraphicsGeometry} Returns geometry for chaining.\n */\n GraphicsGeometry.prototype.drawShape = function drawShape (shape, fillStyle, lineStyle, matrix)\n {\n var data = new GraphicsData(shape, fillStyle, lineStyle, matrix);\n\n this.graphicsData.push(data);\n this.dirty++;\n\n return this;\n };\n\n /**\n * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw.\n * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape.\n * @return {PIXI.GraphicsGeometry} Returns geometry for chaining.\n */\n GraphicsGeometry.prototype.drawHole = function drawHole (shape, matrix)\n {\n if (!this.graphicsData.length)\n {\n return null;\n }\n\n var data = new GraphicsData(shape, null, null, matrix);\n\n var lastShape = this.graphicsData[this.graphicsData.length - 1];\n\n data.lineStyle = lastShape.lineStyle;\n\n lastShape.holes.push(data);\n\n this.dirty++;\n\n return this;\n };\n\n /**\n * Destroys the Graphics object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n GraphicsGeometry.prototype.destroy = function destroy (options)\n {\n BatchGeometry.prototype.destroy.call(this, options);\n\n // destroy each of the GraphicsData objects\n for (var i = 0; i < this.graphicsData.length; ++i)\n {\n this.graphicsData[i].destroy();\n }\n\n this.points.length = 0;\n this.points = null;\n this.colors.length = 0;\n this.colors = null;\n this.uvs.length = 0;\n this.uvs = null;\n this.indices.length = 0;\n this.indices = null;\n this.indexBuffer.destroy();\n this.indexBuffer = null;\n this.graphicsData.length = 0;\n this.graphicsData = null;\n this.drawCalls.length = 0;\n this.drawCalls = null;\n this.batches.length = 0;\n this.batches = null;\n this._bounds = null;\n };\n\n /**\n * Check to see if a point is contained within this geometry.\n *\n * @param {PIXI.Point} point - Point to check if it's contained.\n * @return {Boolean} `true` if the point is contained within geometry.\n */\n GraphicsGeometry.prototype.containsPoint = function containsPoint (point)\n {\n var graphicsData = this.graphicsData;\n\n for (var i = 0; i < graphicsData.length; ++i)\n {\n var data = graphicsData[i];\n\n if (!data.fillStyle.visible)\n {\n continue;\n }\n\n // only deal with fills..\n if (data.shape)\n {\n if (data.matrix)\n {\n data.matrix.applyInverse(point, tmpPoint);\n }\n else\n {\n tmpPoint.copyFrom(point);\n }\n\n if (data.shape.contains(tmpPoint.x, tmpPoint.y))\n {\n if (data.holes)\n {\n for (var i$1 = 0; i$1 < data.holes.length; i$1++)\n {\n var hole = data.holes[i$1];\n\n if (hole.shape.contains(tmpPoint.x, tmpPoint.y))\n {\n return false;\n }\n }\n }\n\n return true;\n }\n }\n }\n\n return false;\n };\n\n /**\n * Generates intermediate batch data. Either gets converted to drawCalls\n * or used to convert to batch objects directly by the Graphics object.\n */\n GraphicsGeometry.prototype.updateBatches = function updateBatches ()\n {\n if (this.dirty === this.cacheDirty) { return; }\n if (this.graphicsData.length === 0)\n {\n this.batchable = true;\n\n return;\n }\n\n if (this.dirty !== this.cacheDirty)\n {\n for (var i = 0; i < this.graphicsData.length; i++)\n {\n var data = this.graphicsData[i];\n\n if (data.fillStyle && !data.fillStyle.texture.baseTexture.valid) { return; }\n if (data.lineStyle && !data.lineStyle.texture.baseTexture.valid) { return; }\n }\n }\n\n this.cacheDirty = this.dirty;\n\n var uvs = this.uvs;\n\n var batchPart = null;\n var currentTexture = null;\n var currentColor = 0;\n var currentNative = false;\n\n if (this.batches.length > 0)\n {\n batchPart = this.batches[this.batches.length - 1];\n\n var style = batchPart.style;\n\n currentTexture = style.texture.baseTexture;\n currentColor = style.color + style.alpha;\n currentNative = !!style.native;\n }\n\n for (var i$1 = this.shapeIndex; i$1 < this.graphicsData.length; i$1++)\n {\n this.shapeIndex++;\n\n var data$1 = this.graphicsData[i$1];\n var command = fillCommands[data$1.type];\n\n var fillStyle = data$1.fillStyle;\n var lineStyle = data$1.lineStyle;\n\n // build out the shapes points..\n command.build(data$1);\n\n if (data$1.matrix)\n {\n this.transformPoints(data$1.points, data$1.matrix);\n }\n\n for (var j = 0; j < 2; j++)\n {\n var style$1 = (j === 0) ? fillStyle : lineStyle;\n\n if (!style$1.visible) { continue; }\n\n var nextTexture = style$1.texture.baseTexture;\n\n var index$1 = this.indices.length;\n var attribIndex = this.points.length / 2;\n\n // close batch if style is different\n if (batchPart\n && (currentTexture !== nextTexture\n || currentColor !== (style$1.color + style$1.alpha)\n || currentNative !== !!style$1.native))\n {\n batchPart.size = index$1 - batchPart.start;\n batchPart.attribSize = attribIndex - batchPart.attribStart;\n\n if (batchPart.size > 0)\n {\n batchPart = null;\n }\n }\n // spawn new batch if its first batch or previous was closed\n if (!batchPart)\n {\n batchPart = BATCH_POOL.pop() || new BatchPart();\n this.batches.push(batchPart);\n nextTexture.wrapMode = WRAP_MODES.REPEAT;\n currentTexture = nextTexture;\n currentColor = style$1.color + style$1.alpha;\n currentNative = style$1.native;\n\n batchPart.style = style$1;\n batchPart.start = index$1;\n batchPart.attribStart = attribIndex;\n }\n\n var start = this.points.length / 2;\n\n if (j === 0)\n {\n if (data$1.holes.length)\n {\n this.processHoles(data$1.holes);\n\n buildPoly.triangulate(data$1, this);\n }\n else\n {\n command.triangulate(data$1, this);\n }\n }\n else\n {\n buildLine(data$1, this);\n\n for (var i$2 = 0; i$2 < data$1.holes.length; i$2++)\n {\n buildLine(data$1.holes[i$2], this);\n }\n }\n\n var size = (this.points.length / 2) - start;\n\n this.addUvs(this.points, uvs, style$1.texture, start, size, style$1.matrix);\n }\n }\n\n var index = this.indices.length;\n var attrib = this.points.length / 2;\n\n if (!batchPart)\n {\n // there are no visible styles in GraphicsData\n // its possible that someone wants Graphics just for the bounds\n this.batchable = true;\n\n return;\n }\n\n batchPart.size = index - batchPart.start;\n batchPart.attribSize = attrib - batchPart.attribStart;\n this.indicesUint16 = new Uint16Array(this.indices);\n\n // TODO make this a const..\n this.batchable = this.isBatchable();\n\n if (this.batchable)\n {\n this.batchDirty++;\n\n this.uvsFloat32 = new Float32Array(this.uvs);\n\n // offset the indices so that it works with the batcher...\n for (var i$3 = 0; i$3 < this.batches.length; i$3++)\n {\n var batch = this.batches[i$3];\n\n for (var j$1 = 0; j$1 < batch.size; j$1++)\n {\n var index$2 = batch.start + j$1;\n\n this.indicesUint16[index$2] = this.indicesUint16[index$2] - batch.attribStart;\n }\n }\n }\n else\n {\n this.buildDrawCalls();\n }\n };\n\n /**\n * Checks to see if this graphics geometry can be batched.\n * Currently it needs to be small enough and not contain any native lines.\n * @protected\n */\n GraphicsGeometry.prototype.isBatchable = function isBatchable ()\n {\n var batches = this.batches;\n\n for (var i = 0; i < batches.length; i++)\n {\n if (batches[i].style.native)\n {\n return false;\n }\n }\n\n return (this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2);\n };\n\n /**\n * Converts intermediate batches data to drawCalls.\n * @protected\n */\n GraphicsGeometry.prototype.buildDrawCalls = function buildDrawCalls ()\n {\n var TICK = ++BaseTexture._globalBatch;\n\n for (var i = 0; i < this.drawCalls.length; i++)\n {\n this.drawCalls[i].textures.length = 0;\n DRAW_CALL_POOL.push(this.drawCalls[i]);\n }\n\n this.drawCalls.length = 0;\n\n var uvs = this.uvs;\n var colors = this.colors;\n var textureIds = this.textureIds;\n\n var currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall();\n\n currentGroup.textureCount = 0;\n currentGroup.start = 0;\n currentGroup.size = 0;\n currentGroup.type = DRAW_MODES.TRIANGLES;\n\n var textureCount = 0;\n var currentTexture = null;\n var textureId = 0;\n var native = false;\n var drawMode = DRAW_MODES.TRIANGLES;\n\n var index = 0;\n\n this.drawCalls.push(currentGroup);\n\n // TODO - this can be simplified\n for (var i$1 = 0; i$1 < this.batches.length; i$1++)\n {\n var data = this.batches[i$1];\n\n // TODO add some full on MAX_TEXTURE CODE..\n var MAX_TEXTURES = 8;\n\n var style = data.style;\n\n var nextTexture = style.texture.baseTexture;\n\n if (native !== !!style.native)\n {\n native = style.native;\n drawMode = native ? DRAW_MODES.LINES : DRAW_MODES.TRIANGLES;\n\n // force the batch to break!\n currentTexture = null;\n textureCount = MAX_TEXTURES;\n TICK++;\n }\n\n if (currentTexture !== nextTexture)\n {\n currentTexture = nextTexture;\n\n if (nextTexture._batchEnabled !== TICK)\n {\n if (textureCount === MAX_TEXTURES)\n {\n TICK++;\n\n textureCount = 0;\n\n if (currentGroup.size > 0)\n {\n currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall();\n this.drawCalls.push(currentGroup);\n }\n\n currentGroup.start = index;\n currentGroup.size = 0;\n currentGroup.textureCount = 0;\n currentGroup.type = drawMode;\n }\n\n // TODO add this to the render part..\n nextTexture.touched = 1;// touch;\n nextTexture._batchEnabled = TICK;\n nextTexture._id = textureCount;\n nextTexture.wrapMode = 10497;\n\n currentGroup.textures[currentGroup.textureCount++] = nextTexture;\n textureCount++;\n }\n }\n\n currentGroup.size += data.size;\n index += data.size;\n\n textureId = nextTexture._id;\n\n this.addColors(colors, style.color, style.alpha, data.attribSize);\n this.addTextureIds(textureIds, textureId, data.attribSize);\n }\n\n BaseTexture._globalBatch = TICK;\n\n // upload..\n // merge for now!\n var verts = this.points;\n\n // verts are 2 positions.. so we * by 3 as there are 6 properties.. then 4 cos its bytes\n var glPoints = new ArrayBuffer(verts.length * 3 * 4);\n var f32 = new Float32Array(glPoints);\n var u32 = new Uint32Array(glPoints);\n\n var p = 0;\n\n for (var i$2 = 0; i$2 < verts.length / 2; i$2++)\n {\n f32[p++] = verts[i$2 * 2];\n f32[p++] = verts[(i$2 * 2) + 1];\n\n f32[p++] = uvs[i$2 * 2];\n f32[p++] = uvs[(i$2 * 2) + 1];\n\n u32[p++] = colors[i$2];\n\n f32[p++] = textureIds[i$2];\n }\n\n this._buffer.update(glPoints);\n this._indexBuffer.update(this.indicesUint16);\n };\n\n /**\n * Process the holes data.\n *\n * @param {PIXI.GraphicsData[]} holes - Holes to render\n * @protected\n */\n GraphicsGeometry.prototype.processHoles = function processHoles (holes)\n {\n for (var i = 0; i < holes.length; i++)\n {\n var hole = holes[i];\n\n var command = fillCommands[hole.type];\n\n command.build(hole);\n\n if (hole.matrix)\n {\n this.transformPoints(hole.points, hole.matrix);\n }\n }\n };\n\n /**\n * Update the local bounds of the object. Expensive to use performance-wise.\n * @protected\n */\n GraphicsGeometry.prototype.calculateBounds = function calculateBounds ()\n {\n var minX = Infinity;\n var maxX = -Infinity;\n\n var minY = Infinity;\n var maxY = -Infinity;\n\n if (this.graphicsData.length)\n {\n var shape = null;\n var x = 0;\n var y = 0;\n var w = 0;\n var h = 0;\n\n for (var i = 0; i < this.graphicsData.length; i++)\n {\n var data = this.graphicsData[i];\n\n var type = data.type;\n var lineWidth = data.lineStyle ? data.lineStyle.width : 0;\n\n shape = data.shape;\n\n if (type === SHAPES.RECT || type === SHAPES.RREC)\n {\n x = shape.x - (lineWidth / 2);\n y = shape.y - (lineWidth / 2);\n w = shape.width + lineWidth;\n h = shape.height + lineWidth;\n\n minX = x < minX ? x : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y < minY ? y : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else if (type === SHAPES.CIRC)\n {\n x = shape.x;\n y = shape.y;\n w = shape.radius + (lineWidth / 2);\n h = shape.radius + (lineWidth / 2);\n\n minX = x - w < minX ? x - w : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y - h < minY ? y - h : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else if (type === SHAPES.ELIP)\n {\n x = shape.x;\n y = shape.y;\n w = shape.width + (lineWidth / 2);\n h = shape.height + (lineWidth / 2);\n\n minX = x - w < minX ? x - w : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y - h < minY ? y - h : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else\n {\n // POLY\n var points = shape.points;\n var x2 = 0;\n var y2 = 0;\n var dx = 0;\n var dy = 0;\n var rw = 0;\n var rh = 0;\n var cx = 0;\n var cy = 0;\n\n for (var j = 0; j + 2 < points.length; j += 2)\n {\n x = points[j];\n y = points[j + 1];\n x2 = points[j + 2];\n y2 = points[j + 3];\n dx = Math.abs(x2 - x);\n dy = Math.abs(y2 - y);\n h = lineWidth;\n w = Math.sqrt((dx * dx) + (dy * dy));\n\n if (w < 1e-9)\n {\n continue;\n }\n\n rw = ((h / w * dy) + dx) / 2;\n rh = ((h / w * dx) + dy) / 2;\n cx = (x2 + x) / 2;\n cy = (y2 + y) / 2;\n\n minX = cx - rw < minX ? cx - rw : minX;\n maxX = cx + rw > maxX ? cx + rw : maxX;\n\n minY = cy - rh < minY ? cy - rh : minY;\n maxY = cy + rh > maxY ? cy + rh : maxY;\n }\n }\n }\n }\n else\n {\n minX = 0;\n maxX = 0;\n minY = 0;\n maxY = 0;\n }\n\n var padding = this.boundsPadding;\n\n this._bounds.minX = minX - padding;\n this._bounds.maxX = maxX + padding;\n\n this._bounds.minY = minY - padding;\n this._bounds.maxY = maxY + padding;\n };\n\n /**\n * Transform points using matrix.\n *\n * @protected\n * @param {number[]} points - Points to transform\n * @param {PIXI.Matrix} matrix - Transform matrix\n */\n GraphicsGeometry.prototype.transformPoints = function transformPoints (points, matrix)\n {\n for (var i = 0; i < points.length / 2; i++)\n {\n var x = points[(i * 2)];\n var y = points[(i * 2) + 1];\n\n points[(i * 2)] = (matrix.a * x) + (matrix.c * y) + matrix.tx;\n points[(i * 2) + 1] = (matrix.b * x) + (matrix.d * y) + matrix.ty;\n }\n };\n\n /**\n * Add colors.\n *\n * @protected\n * @param {number[]} colors - List of colors to add to\n * @param {number} color - Color to add\n * @param {number} alpha - Alpha to use\n * @param {number} size - Number of colors to add\n */\n GraphicsGeometry.prototype.addColors = function addColors (colors, color, alpha, size)\n {\n // TODO use the premultiply bits Ivan added\n var rgb = (color >> 16) + (color & 0xff00) + ((color & 0xff) << 16);\n\n var rgba = premultiplyTint(rgb, alpha);\n\n while (size-- > 0)\n {\n colors.push(rgba);\n }\n };\n\n /**\n * Add texture id that the shader/fragment wants to use.\n *\n * @protected\n * @param {number[]} textureIds\n * @param {number} id\n * @param {number} size\n */\n GraphicsGeometry.prototype.addTextureIds = function addTextureIds (textureIds, id, size)\n {\n while (size-- > 0)\n {\n textureIds.push(id);\n }\n };\n\n /**\n * Generates the UVs for a shape.\n *\n * @protected\n * @param {number[]} verts - Vertices\n * @param {number[]} uvs - UVs\n * @param {PIXI.Texture} texture - Reference to Texture\n * @param {number} start - Index buffer start index.\n * @param {number} size - The size/length for index buffer.\n * @param {PIXI.Matrix} [matrix] - Optional transform for all points.\n */\n GraphicsGeometry.prototype.addUvs = function addUvs (verts, uvs, texture, start, size, matrix)\n {\n var index = 0;\n var uvsStart = uvs.length;\n var frame = texture.frame;\n\n while (index < size)\n {\n var x = verts[(start + index) * 2];\n var y = verts[((start + index) * 2) + 1];\n\n if (matrix)\n {\n var nx = (matrix.a * x) + (matrix.c * y) + matrix.tx;\n\n y = (matrix.b * x) + (matrix.d * y) + matrix.ty;\n x = nx;\n }\n\n index++;\n\n uvs.push(x / frame.width, y / frame.height);\n }\n\n var baseTexture = texture.baseTexture;\n\n if (frame.width < baseTexture.width\n || frame.height < baseTexture.height)\n {\n this.adjustUvs(uvs, texture, uvsStart, size);\n }\n };\n\n /**\n * Modify uvs array according to position of texture region\n * Does not work with rotated or trimmed textures\n * @param {number[]} uvs array\n * @param {PIXI.Texture} texture region\n * @param {number} start starting index for uvs\n * @param {number} size how many points to adjust\n */\n GraphicsGeometry.prototype.adjustUvs = function adjustUvs (uvs, texture, start, size)\n {\n var baseTexture = texture.baseTexture;\n var eps = 1e-6;\n var finish = start + (size * 2);\n var frame = texture.frame;\n var scaleX = frame.width / baseTexture.width;\n var scaleY = frame.height / baseTexture.height;\n var offsetX = frame.x / frame.width;\n var offsetY = frame.y / frame.height;\n var minX = Math.floor(uvs[start] + eps);\n var minY = Math.floor(uvs[start + 1] + eps);\n\n for (var i = start + 2; i < finish; i += 2)\n {\n minX = Math.min(minX, Math.floor(uvs[i] + eps));\n minY = Math.min(minY, Math.floor(uvs[i + 1] + eps));\n }\n offsetX -= minX;\n offsetY -= minY;\n for (var i$1 = start; i$1 < finish; i$1 += 2)\n {\n uvs[i$1] = (uvs[i$1] + offsetX) * scaleX;\n uvs[i$1 + 1] = (uvs[i$1 + 1] + offsetY) * scaleY;\n }\n };\n\n Object.defineProperties( GraphicsGeometry.prototype, prototypeAccessors );\n\n return GraphicsGeometry;\n}(BatchGeometry));\n\n/**\n * The maximum number of points to consider an object \"batchable\",\n * able to be batched by the renderer's batch system.\n *\n * @memberof PIXI.GraphicsGeometry\n * @static\n * @member {number} BATCHABLE_SIZE\n * @default 100\n */\nGraphicsGeometry.BATCHABLE_SIZE = 100;\n\n/**\n * Represents the line style for Graphics.\n * @memberof PIXI\n * @class\n * @extends PIXI.FillStyle\n */\nvar LineStyle = /*@__PURE__*/(function (FillStyle) {\n function LineStyle () {\n FillStyle.apply(this, arguments);\n }\n\n if ( FillStyle ) LineStyle.__proto__ = FillStyle;\n LineStyle.prototype = Object.create( FillStyle && FillStyle.prototype );\n LineStyle.prototype.constructor = LineStyle;\n\n LineStyle.prototype.clone = function clone ()\n {\n var obj = new LineStyle();\n\n obj.color = this.color;\n obj.alpha = this.alpha;\n obj.texture = this.texture;\n obj.matrix = this.matrix;\n obj.visible = this.visible;\n obj.width = this.width;\n obj.alignment = this.alignment;\n obj.native = this.native;\n\n return obj;\n };\n /**\n * Reset the line style to default.\n */\n LineStyle.prototype.reset = function reset ()\n {\n FillStyle.prototype.reset.call(this);\n\n // Override default line style color\n this.color = 0x0;\n\n /**\n * The width (thickness) of any lines drawn.\n *\n * @member {number}\n * @default 0\n */\n this.width = 0;\n\n /**\n * The alignment of any lines drawn (0.5 = middle, 1 = outter, 0 = inner).\n *\n * @member {number}\n * @default 0\n */\n this.alignment = 0.5;\n\n /**\n * If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n *\n * @member {boolean}\n * @default false\n */\n this.native = false;\n };\n\n return LineStyle;\n}(FillStyle));\n\n/**\n * Utilities for bezier curves\n * @class\n * @private\n */\nvar BezierUtils = function BezierUtils () {};\n\nBezierUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY)\n{\n var n = 10;\n var result = 0.0;\n var t = 0.0;\n var t2 = 0.0;\n var t3 = 0.0;\n var nt = 0.0;\n var nt2 = 0.0;\n var nt3 = 0.0;\n var x = 0.0;\n var y = 0.0;\n var dx = 0.0;\n var dy = 0.0;\n var prevX = fromX;\n var prevY = fromY;\n\n for (var i = 1; i <= n; ++i)\n {\n t = i / n;\n t2 = t * t;\n t3 = t2 * t;\n nt = (1.0 - t);\n nt2 = nt * nt;\n nt3 = nt2 * nt;\n\n x = (nt3 * fromX) + (3.0 * nt2 * t * cpX) + (3.0 * nt * t2 * cpX2) + (t3 * toX);\n y = (nt3 * fromY) + (3.0 * nt2 * t * cpY) + (3 * nt * t2 * cpY2) + (t3 * toY);\n dx = prevX - x;\n dy = prevY - y;\n prevX = x;\n prevY = y;\n\n result += Math.sqrt((dx * dx) + (dy * dy));\n }\n\n return result;\n};\n\n/**\n * Calculate the points for a bezier curve and then draws it.\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} cpX2 - Second Control point x\n * @param {number} cpY2 - Second Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} points - Path array to push points into\n */\nBezierUtils.curveTo = function curveTo (cpX, cpY, cpX2, cpY2, toX, toY, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n points.length -= 2;\n\n var n = GRAPHICS_CURVES._segmentsCount(\n BezierUtils.curveLength(fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY)\n );\n\n var dt = 0;\n var dt2 = 0;\n var dt3 = 0;\n var t2 = 0;\n var t3 = 0;\n\n points.push(fromX, fromY);\n\n for (var i = 1, j = 0; i <= n; ++i)\n {\n j = i / n;\n\n dt = (1 - j);\n dt2 = dt * dt;\n dt3 = dt2 * dt;\n\n t2 = j * j;\n t3 = t2 * j;\n\n points.push(\n (dt3 * fromX) + (3 * dt2 * j * cpX) + (3 * dt * t2 * cpX2) + (t3 * toX),\n (dt3 * fromY) + (3 * dt2 * j * cpY) + (3 * dt * t2 * cpY2) + (t3 * toY)\n );\n }\n};\n\n/**\n * Utilities for quadratic curves\n * @class\n * @private\n */\nvar QuadraticUtils = function QuadraticUtils () {};\n\nQuadraticUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, toX, toY)\n{\n var ax = fromX - (2.0 * cpX) + toX;\n var ay = fromY - (2.0 * cpY) + toY;\n var bx = (2.0 * cpX) - (2.0 * fromX);\n var by = (2.0 * cpY) - (2.0 * fromY);\n var a = 4.0 * ((ax * ax) + (ay * ay));\n var b = 4.0 * ((ax * bx) + (ay * by));\n var c = (bx * bx) + (by * by);\n\n var s = 2.0 * Math.sqrt(a + b + c);\n var a2 = Math.sqrt(a);\n var a32 = 2.0 * a * a2;\n var c2 = 2.0 * Math.sqrt(c);\n var ba = b / a2;\n\n return (\n (a32 * s)\n + (a2 * b * (s - c2))\n + (\n ((4.0 * c * a) - (b * b))\n * Math.log(((2.0 * a2) + ba + s) / (ba + c2))\n )\n ) / (4.0 * a32);\n};\n\n/**\n * Calculate the points for a quadratic bezier curve and then draws it.\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * @private\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} points - Points to add segments to.\n */\nQuadraticUtils.curveTo = function curveTo (cpX, cpY, toX, toY, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n var n = GRAPHICS_CURVES._segmentsCount(\n QuadraticUtils.curveLength(fromX, fromY, cpX, cpY, toX, toY)\n );\n\n var xa = 0;\n var ya = 0;\n\n for (var i = 1; i <= n; ++i)\n {\n var j = i / n;\n\n xa = fromX + ((cpX - fromX) * j);\n ya = fromY + ((cpY - fromY) * j);\n\n points.push(xa + (((cpX + ((toX - cpX) * j)) - xa) * j),\n ya + (((cpY + ((toY - cpY) * j)) - ya) * j));\n }\n};\n\n/**\n * Utilities for arc curves\n * @class\n * @private\n */\nvar ArcUtils = function ArcUtils () {};\n\nArcUtils.curveTo = function curveTo (x1, y1, x2, y2, radius, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n var a1 = fromY - y1;\n var b1 = fromX - x1;\n var a2 = y2 - y1;\n var b2 = x2 - x1;\n var mm = Math.abs((a1 * b2) - (b1 * a2));\n\n if (mm < 1.0e-8 || radius === 0)\n {\n if (points[points.length - 2] !== x1 || points[points.length - 1] !== y1)\n {\n points.push(x1, y1);\n }\n\n return null;\n }\n\n var dd = (a1 * a1) + (b1 * b1);\n var cc = (a2 * a2) + (b2 * b2);\n var tt = (a1 * a2) + (b1 * b2);\n var k1 = radius * Math.sqrt(dd) / mm;\n var k2 = radius * Math.sqrt(cc) / mm;\n var j1 = k1 * tt / dd;\n var j2 = k2 * tt / cc;\n var cx = (k1 * b2) + (k2 * b1);\n var cy = (k1 * a2) + (k2 * a1);\n var px = b1 * (k2 + j1);\n var py = a1 * (k2 + j1);\n var qx = b2 * (k1 + j2);\n var qy = a2 * (k1 + j2);\n var startAngle = Math.atan2(py - cy, px - cx);\n var endAngle = Math.atan2(qy - cy, qx - cx);\n\n return {\n cx: (cx + x1),\n cy: (cy + y1),\n radius: radius,\n startAngle: startAngle,\n endAngle: endAngle,\n anticlockwise: (b1 * a2 > b2 * a1),\n };\n};\n\n/**\n * The arc method creates an arc/curve (used to create circles, or parts of circles).\n *\n * @private\n * @param {number} startX - Start x location of arc\n * @param {number} startY - Start y location of arc\n * @param {number} cx - The x-coordinate of the center of the circle\n * @param {number} cy - The y-coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position\n * of the arc's circle)\n * @param {number} endAngle - The ending angle, in radians\n * @param {boolean} anticlockwise - Specifies whether the drawing should be\n * counter-clockwise or clockwise. False is default, and indicates clockwise, while true\n * indicates counter-clockwise.\n * @param {number} n - Number of segments\n * @param {number[]} points - Collection of points to add to\n */\nArcUtils.arc = function arc (startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points)\n{\n var sweep = endAngle - startAngle;\n var n = GRAPHICS_CURVES._segmentsCount(\n Math.abs(sweep) * radius,\n Math.ceil(Math.abs(sweep) / PI_2) * 40\n );\n\n var theta = (sweep) / (n * 2);\n var theta2 = theta * 2;\n var cTheta = Math.cos(theta);\n var sTheta = Math.sin(theta);\n var segMinus = n - 1;\n var remainder = (segMinus % 1) / segMinus;\n\n for (var i = 0; i <= segMinus; ++i)\n {\n var real = i + (remainder * i);\n var angle = ((theta) + startAngle + (theta2 * real));\n var c = Math.cos(angle);\n var s = -Math.sin(angle);\n\n points.push(\n (((cTheta * c) + (sTheta * s)) * radius) + cx,\n (((cTheta * -s) + (sTheta * c)) * radius) + cy\n );\n }\n};\n\n/**\n * Draw a star shape with an arbitrary number of points.\n *\n * @class\n * @extends PIXI.Polygon\n * @memberof PIXI\n * @param {number} x - Center X position of the star\n * @param {number} y - Center Y position of the star\n * @param {number} points - The number of points of the star, must be > 1\n * @param {number} radius - The outer radius of the star\n * @param {number} [innerRadius] - The inner radius between points, default half `radius`\n * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\nvar Star = /*@__PURE__*/(function (Polygon) {\n function Star(x, y, points, radius, innerRadius, rotation)\n {\n innerRadius = innerRadius || radius / 2;\n\n var startAngle = (-1 * Math.PI / 2) + rotation;\n var len = points * 2;\n var delta = PI_2 / len;\n var polygon = [];\n\n for (var i = 0; i < len; i++)\n {\n var r = i % 2 ? innerRadius : radius;\n var angle = (i * delta) + startAngle;\n\n polygon.push(\n x + (r * Math.cos(angle)),\n y + (r * Math.sin(angle))\n );\n }\n\n Polygon.call(this, polygon);\n }\n\n if ( Polygon ) Star.__proto__ = Polygon;\n Star.prototype = Object.create( Polygon && Polygon.prototype );\n Star.prototype.constructor = Star;\n\n return Star;\n}(Polygon));\n\nvar temp = new Float32Array(3);\n\n// a default shaders map used by graphics..\nvar DEFAULT_SHADERS = {};\n\n/**\n * The Graphics class contains methods used to draw primitive shapes such as lines, circles and\n * rectangles to the display, and to color and fill them.\n *\n * Note that because Graphics can share a GraphicsGeometry with other instances,\n * it is necessary to call `destroy()` to properly dereference the underlying\n * GraphicsGeometry and avoid a memory leak. Alternatively, keep using the same\n * Graphics instance and call `clear()` between redraws.\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Graphics = /*@__PURE__*/(function (Container) {\n function Graphics(geometry)\n {\n if ( geometry === void 0 ) geometry = null;\n\n Container.call(this);\n /**\n * Includes vertex positions, face indices, normals, colors, UVs, and\n * custom attributes within buffers, reducing the cost of passing all\n * this data to the GPU. Can be shared between multiple Mesh or Graphics objects.\n * @member {PIXI.GraphicsGeometry}\n * @readonly\n */\n this.geometry = geometry || new GraphicsGeometry();\n\n this.geometry.refCount++;\n\n /**\n * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU.\n * Can be shared between multiple Graphics objects.\n * @member {PIXI.Shader}\n */\n this.shader = null;\n\n /**\n * Represents the WebGL state the Graphics required to render, excludes shader and geometry. E.g.,\n * blend mode, culling, depth testing, direction of rendering triangles, backface, etc.\n * @member {PIXI.State}\n */\n this.state = State.for2d();\n\n /**\n * Current fill style\n *\n * @member {PIXI.FillStyle}\n * @protected\n */\n this._fillStyle = new FillStyle();\n\n /**\n * Current line style\n *\n * @member {PIXI.LineStyle}\n * @protected\n */\n this._lineStyle = new LineStyle();\n\n /**\n * Current shape transform matrix.\n *\n * @member {PIXI.Matrix}\n * @protected\n */\n this._matrix = null;\n\n /**\n * Current hole mode is enabled.\n *\n * @member {boolean}\n * @default false\n * @protected\n */\n this._holeMode = false;\n\n /**\n * Current path\n *\n * @member {PIXI.Polygon}\n * @protected\n */\n this.currentPath = null;\n\n /**\n * When cacheAsBitmap is set to true the graphics object will be rendered as if it was a sprite.\n * This is useful if your graphics element does not change often, as it will speed up the rendering\n * of the object in exchange for taking up texture memory. It is also useful if you need the graphics\n * object to be anti-aliased, because it will be rendered using canvas. This is not recommended if\n * you are constantly redrawing the graphics element.\n *\n * @name cacheAsBitmap\n * @member {boolean}\n * @memberof PIXI.Graphics#\n * @default false\n */\n\n /**\n * A collections of batches! These can be drawn by the renderer batch system.\n *\n * @protected\n * @member {object[]}\n */\n this.batches = [];\n\n /**\n * Update dirty for limiting calculating tints for batches.\n *\n * @protected\n * @member {number}\n * @default -1\n */\n this.batchTint = -1;\n\n /**\n * Copy of the object vertex data.\n *\n * @protected\n * @member {Float32Array}\n */\n this.vertexData = null;\n\n this._transformID = -1;\n this.batchDirty = -1;\n\n /**\n * Renderer plugin for batching\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = 'batch';\n\n // Set default\n this.tint = 0xFFFFFF;\n this.blendMode = BLEND_MODES.NORMAL;\n }\n\n if ( Container ) Graphics.__proto__ = Container;\n Graphics.prototype = Object.create( Container && Container.prototype );\n Graphics.prototype.constructor = Graphics;\n\n var prototypeAccessors = { blendMode: { configurable: true },tint: { configurable: true },fill: { configurable: true },line: { configurable: true } };\n\n /**\n * Creates a new Graphics object with the same values as this one.\n * Note that the only the properties of the object are cloned, not its transform (position,scale,etc)\n *\n * @return {PIXI.Graphics} A clone of the graphics object\n */\n Graphics.prototype.clone = function clone ()\n {\n this.finishPoly();\n\n return new Graphics(this.geometry);\n };\n\n /**\n * The blend mode to be applied to the graphic shape. Apply a value of\n * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL;\n * @see PIXI.BLEND_MODES\n */\n prototypeAccessors.blendMode.set = function (value)\n {\n this.state.blendMode = value;\n };\n\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n /**\n * The tint applied to the graphic shape. This is a hex value. A value of\n * 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n prototypeAccessors.tint.set = function (value)\n {\n this._tint = value;\n };\n\n /**\n * The current fill style.\n *\n * @member {PIXI.FillStyle}\n * @readonly\n */\n prototypeAccessors.fill.get = function ()\n {\n return this._fillStyle;\n };\n\n /**\n * The current line style.\n *\n * @member {PIXI.LineStyle}\n * @readonly\n */\n prototypeAccessors.line.get = function ()\n {\n return this._lineStyle;\n };\n\n /**\n * Specifies the line style used for subsequent calls to Graphics methods such as the lineTo()\n * method or the drawCircle() method.\n *\n * @param {number} [width=0] - width of the line to draw, will update the objects stored style\n * @param {number} [color=0] - color of the line to draw, will update the objects stored style\n * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style\n * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter)\n * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineStyle = function lineStyle (width, color, alpha, alignment, native)\n {\n if ( width === void 0 ) width = 0;\n if ( color === void 0 ) color = 0;\n if ( alpha === void 0 ) alpha = 1;\n if ( alignment === void 0 ) alignment = 0.5;\n if ( native === void 0 ) native = false;\n\n this.lineTextureStyle(width, Texture.WHITE, color, alpha, null, alignment, native);\n\n return this;\n };\n\n /**\n * Like line style but support texture for line fill.\n *\n * @param {number} [width=0] - width of the line to draw, will update the objects stored style\n * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to use\n * @param {number} [color=0] - color of the line to draw, will update the objects stored style\n * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style\n * @param {PIXI.Matrix} [matrix=null] Texture matrix to transform texture\n * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter)\n * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineTextureStyle = function lineTextureStyle (width, texture, color, alpha,\n matrix, alignment, native)\n {\n if ( width === void 0 ) width = 0;\n if ( texture === void 0 ) texture = Texture.WHITE;\n if ( color === void 0 ) color = 0xFFFFFF;\n if ( alpha === void 0 ) alpha = 1;\n if ( matrix === void 0 ) matrix = null;\n if ( alignment === void 0 ) alignment = 0.5;\n if ( native === void 0 ) native = false;\n\n if (this.currentPath)\n {\n this.startPoly();\n }\n\n var visible = width > 0 && alpha > 0;\n\n if (!visible)\n {\n this._lineStyle.reset();\n }\n else\n {\n if (matrix)\n {\n matrix = matrix.clone();\n matrix.invert();\n }\n\n Object.assign(this._lineStyle, {\n color: color,\n width: width,\n alpha: alpha,\n matrix: matrix,\n texture: texture,\n alignment: alignment,\n native: native,\n visible: visible,\n });\n }\n\n return this;\n };\n\n /**\n * Start a polygon object internally\n * @protected\n */\n Graphics.prototype.startPoly = function startPoly ()\n {\n if (this.currentPath)\n {\n var points = this.currentPath.points;\n var len = this.currentPath.points.length;\n\n if (len > 2)\n {\n this.drawShape(this.currentPath);\n this.currentPath = new Polygon();\n this.currentPath.closeStroke = false;\n this.currentPath.points.push(points[len - 2], points[len - 1]);\n }\n }\n else\n {\n this.currentPath = new Polygon();\n this.currentPath.closeStroke = false;\n }\n };\n\n /**\n * Finish the polygon object.\n * @protected\n */\n Graphics.prototype.finishPoly = function finishPoly ()\n {\n if (this.currentPath)\n {\n if (this.currentPath.points.length > 2)\n {\n this.drawShape(this.currentPath);\n this.currentPath = null;\n }\n else\n {\n this.currentPath.points.length = 0;\n }\n }\n };\n\n /**\n * Moves the current drawing position to x, y.\n *\n * @param {number} x - the X coordinate to move to\n * @param {number} y - the Y coordinate to move to\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.moveTo = function moveTo (x, y)\n {\n this.startPoly();\n this.currentPath.points[0] = x;\n this.currentPath.points[1] = y;\n\n return this;\n };\n\n /**\n * Draws a line using the current line style from the current drawing position to (x, y);\n * The current drawing position is then set to (x, y).\n *\n * @param {number} x - the X coordinate to draw to\n * @param {number} y - the Y coordinate to draw to\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineTo = function lineTo (x, y)\n {\n if (!this.currentPath)\n {\n this.moveTo(0, 0);\n }\n\n // remove duplicates..\n var points = this.currentPath.points;\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n if (fromX !== x || fromY !== y)\n {\n points.push(x, y);\n }\n\n return this;\n };\n\n /**\n * Initialize the curve\n *\n * @protected\n * @param {number} [x=0]\n * @param {number} [y=0]\n */\n Graphics.prototype._initCurve = function _initCurve (x, y)\n {\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n if (this.currentPath)\n {\n if (this.currentPath.points.length === 0)\n {\n this.currentPath.points = [x, y];\n }\n }\n else\n {\n this.moveTo(x, y);\n }\n };\n\n /**\n * Calculate the points for a quadratic bezier curve and then draws it.\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.quadraticCurveTo = function quadraticCurveTo (cpX, cpY, toX, toY)\n {\n this._initCurve();\n\n var points = this.currentPath.points;\n\n if (points.length === 0)\n {\n this.moveTo(0, 0);\n }\n\n QuadraticUtils.curveTo(cpX, cpY, toX, toY, points);\n\n return this;\n };\n\n /**\n * Calculate the points for a bezier curve and then draws it.\n *\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} cpX2 - Second Control point x\n * @param {number} cpY2 - Second Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.bezierCurveTo = function bezierCurveTo (cpX, cpY, cpX2, cpY2, toX, toY)\n {\n this._initCurve();\n\n BezierUtils.curveTo(cpX, cpY, cpX2, cpY2, toX, toY, this.currentPath.points);\n\n return this;\n };\n\n /**\n * The arcTo() method creates an arc/curve between two tangents on the canvas.\n *\n * \"borrowed\" from https://code.google.com/p/fxcanvas/ - thanks google!\n *\n * @param {number} x1 - The x-coordinate of the first tangent point of the arc\n * @param {number} y1 - The y-coordinate of the first tangent point of the arc\n * @param {number} x2 - The x-coordinate of the end of the arc\n * @param {number} y2 - The y-coordinate of the end of the arc\n * @param {number} radius - The radius of the arc\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.arcTo = function arcTo (x1, y1, x2, y2, radius)\n {\n this._initCurve(x1, y1);\n\n var points = this.currentPath.points;\n\n var result = ArcUtils.curveTo(x1, y1, x2, y2, radius, points);\n\n if (result)\n {\n var cx = result.cx;\n var cy = result.cy;\n var radius$1 = result.radius;\n var startAngle = result.startAngle;\n var endAngle = result.endAngle;\n var anticlockwise = result.anticlockwise;\n\n this.arc(cx, cy, radius$1, startAngle, endAngle, anticlockwise);\n }\n\n return this;\n };\n\n /**\n * The arc method creates an arc/curve (used to create circles, or parts of circles).\n *\n * @param {number} cx - The x-coordinate of the center of the circle\n * @param {number} cy - The y-coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position\n * of the arc's circle)\n * @param {number} endAngle - The ending angle, in radians\n * @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be\n * counter-clockwise or clockwise. False is default, and indicates clockwise, while true\n * indicates counter-clockwise.\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.arc = function arc (cx, cy, radius, startAngle, endAngle, anticlockwise)\n {\n if ( anticlockwise === void 0 ) anticlockwise = false;\n\n if (startAngle === endAngle)\n {\n return this;\n }\n\n if (!anticlockwise && endAngle <= startAngle)\n {\n endAngle += PI_2;\n }\n else if (anticlockwise && startAngle <= endAngle)\n {\n startAngle += PI_2;\n }\n\n var sweep = endAngle - startAngle;\n\n if (sweep === 0)\n {\n return this;\n }\n\n var startX = cx + (Math.cos(startAngle) * radius);\n var startY = cy + (Math.sin(startAngle) * radius);\n var eps = this.geometry.closePointEps;\n\n // If the currentPath exists, take its points. Otherwise call `moveTo` to start a path.\n var points = this.currentPath ? this.currentPath.points : null;\n\n if (points)\n {\n // TODO: make a better fix.\n\n // We check how far our start is from the last existing point\n var xDiff = Math.abs(points[points.length - 2] - startX);\n var yDiff = Math.abs(points[points.length - 1] - startY);\n\n if (xDiff < eps && yDiff < eps)\n ;\n else\n {\n points.push(startX, startY);\n }\n }\n else\n {\n this.moveTo(startX, startY);\n points = this.currentPath.points;\n }\n\n ArcUtils.arc(startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points);\n\n return this;\n };\n\n /**\n * Specifies a simple one-color fill that subsequent calls to other Graphics methods\n * (such as lineTo() or drawCircle()) use when drawing.\n *\n * @param {number} [color=0] - the color of the fill\n * @param {number} [alpha=1] - the alpha of the fill\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.beginFill = function beginFill (color, alpha)\n {\n if ( color === void 0 ) color = 0;\n if ( alpha === void 0 ) alpha = 1;\n\n return this.beginTextureFill(Texture.WHITE, color, alpha);\n };\n\n /**\n * Begin the texture fill\n *\n * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to fill\n * @param {number} [color=0xffffff] - Background to fill behind texture\n * @param {number} [alpha=1] - Alpha of fill\n * @param {PIXI.Matrix} [matrix=null] - Transform matrix\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.beginTextureFill = function beginTextureFill (texture, color, alpha, matrix)\n {\n if ( texture === void 0 ) texture = Texture.WHITE;\n if ( color === void 0 ) color = 0xFFFFFF;\n if ( alpha === void 0 ) alpha = 1;\n if ( matrix === void 0 ) matrix = null;\n\n if (this.currentPath)\n {\n this.startPoly();\n }\n\n var visible = alpha > 0;\n\n if (!visible)\n {\n this._fillStyle.reset();\n }\n else\n {\n if (matrix)\n {\n matrix = matrix.clone();\n matrix.invert();\n }\n\n Object.assign(this._fillStyle, {\n color: color,\n alpha: alpha,\n texture: texture,\n matrix: matrix,\n visible: visible,\n });\n }\n\n return this;\n };\n\n /**\n * Applies a fill to the lines and shapes that were added since the last call to the beginFill() method.\n *\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.endFill = function endFill ()\n {\n this.finishPoly();\n\n this._fillStyle.reset();\n\n return this;\n };\n\n /**\n * Draws a rectangle shape.\n *\n * @param {number} x - The X coord of the top-left of the rectangle\n * @param {number} y - The Y coord of the top-left of the rectangle\n * @param {number} width - The width of the rectangle\n * @param {number} height - The height of the rectangle\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawRect = function drawRect (x, y, width, height)\n {\n return this.drawShape(new Rectangle(x, y, width, height));\n };\n\n /**\n * Draw a rectangle shape with rounded/beveled corners.\n *\n * @param {number} x - The X coord of the top-left of the rectangle\n * @param {number} y - The Y coord of the top-left of the rectangle\n * @param {number} width - The width of the rectangle\n * @param {number} height - The height of the rectangle\n * @param {number} radius - Radius of the rectangle corners\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawRoundedRect = function drawRoundedRect (x, y, width, height, radius)\n {\n return this.drawShape(new RoundedRectangle(x, y, width, height, radius));\n };\n\n /**\n * Draws a circle.\n *\n * @param {number} x - The X coordinate of the center of the circle\n * @param {number} y - The Y coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawCircle = function drawCircle (x, y, radius)\n {\n return this.drawShape(new Circle(x, y, radius));\n };\n\n /**\n * Draws an ellipse.\n *\n * @param {number} x - The X coordinate of the center of the ellipse\n * @param {number} y - The Y coordinate of the center of the ellipse\n * @param {number} width - The half width of the ellipse\n * @param {number} height - The half height of the ellipse\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawEllipse = function drawEllipse (x, y, width, height)\n {\n return this.drawShape(new Ellipse(x, y, width, height));\n };\n\n /**\n * Draws a polygon using the given path.\n *\n * @param {number[]|PIXI.Point[]|PIXI.Polygon} path - The path data used to construct the polygon.\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawPolygon = function drawPolygon (path)\n {\n var arguments$1 = arguments;\n\n // prevents an argument assignment deopt\n // see section 3.1: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments\n var points = path;\n\n var closeStroke = true;// !!this._fillStyle;\n\n // check if data has points..\n if (points.points)\n {\n closeStroke = points.closeStroke;\n points = points.points;\n }\n\n if (!Array.isArray(points))\n {\n // prevents an argument leak deopt\n // see section 3.2: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments\n points = new Array(arguments.length);\n\n for (var i = 0; i < points.length; ++i)\n {\n points[i] = arguments$1[i]; // eslint-disable-line prefer-rest-params\n }\n }\n\n var shape = new Polygon(points);\n\n shape.closeStroke = closeStroke;\n\n this.drawShape(shape);\n\n return this;\n };\n\n /**\n * Draw any shape.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - Shape to draw\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawShape = function drawShape (shape)\n {\n if (!this._holeMode)\n {\n this.geometry.drawShape(\n shape,\n this._fillStyle.clone(),\n this._lineStyle.clone(),\n this._matrix\n );\n }\n else\n {\n this.geometry.drawHole(shape, this._matrix);\n }\n\n return this;\n };\n\n /**\n * Draw a star shape with an arbitrary number of points.\n *\n * @param {number} x - Center X position of the star\n * @param {number} y - Center Y position of the star\n * @param {number} points - The number of points of the star, must be > 1\n * @param {number} radius - The outer radius of the star\n * @param {number} [innerRadius] - The inner radius between points, default half `radius`\n * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawStar = function drawStar (x, y, points, radius, innerRadius, rotation)\n {\n if ( rotation === void 0 ) rotation = 0;\n\n return this.drawPolygon(new Star(x, y, points, radius, innerRadius, rotation));\n };\n\n /**\n * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings.\n *\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.clear = function clear ()\n {\n this.geometry.clear();\n this._lineStyle.reset();\n this._fillStyle.reset();\n\n this._matrix = null;\n this._holeMode = false;\n this.currentPath = null;\n\n return this;\n };\n\n /**\n * True if graphics consists of one rectangle, and thus, can be drawn like a Sprite and\n * masked with gl.scissor.\n *\n * @returns {boolean} True if only 1 rect.\n */\n Graphics.prototype.isFastRect = function isFastRect ()\n {\n // will fix this!\n return false;\n // this.graphicsData.length === 1\n // && this.graphicsData[0].shape.type === SHAPES.RECT\n // && !this.graphicsData[0].lineWidth;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._render = function _render (renderer)\n {\n this.finishPoly();\n\n var geometry = this.geometry;\n\n // batch part..\n // batch it!\n geometry.updateBatches();\n\n if (geometry.batchable)\n {\n if (this.batchDirty !== geometry.batchDirty)\n {\n this._populateBatches();\n }\n\n this._renderBatched(renderer);\n }\n else\n {\n // no batching...\n renderer.batch.flush();\n\n this._renderDirect(renderer);\n }\n };\n\n /**\n * Populating batches for rendering\n *\n * @protected\n */\n Graphics.prototype._populateBatches = function _populateBatches ()\n {\n var geometry = this.geometry;\n var blendMode = this.blendMode;\n\n this.batches = [];\n this.batchTint = -1;\n this._transformID = -1;\n this.batchDirty = geometry.batchDirty;\n\n this.vertexData = new Float32Array(geometry.points);\n\n for (var i = 0, l = geometry.batches.length; i < l; i++)\n {\n var gI = geometry.batches[i];\n var color = gI.style.color;\n var vertexData = new Float32Array(this.vertexData.buffer,\n gI.attribStart * 4 * 2,\n gI.attribSize * 2);\n\n var uvs = new Float32Array(geometry.uvsFloat32.buffer,\n gI.attribStart * 4 * 2,\n gI.attribSize * 2);\n\n var indices = new Uint16Array(geometry.indicesUint16.buffer,\n gI.start * 2,\n gI.size);\n\n var batch = {\n vertexData: vertexData,\n blendMode: blendMode,\n indices: indices,\n uvs: uvs,\n _batchRGB: hex2rgb(color),\n _tintRGB: color,\n _texture: gI.style.texture,\n alpha: gI.style.alpha,\n worldAlpha: 1 };\n\n this.batches[i] = batch;\n }\n };\n\n /**\n * Renders the batches using the BathedRenderer plugin\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._renderBatched = function _renderBatched (renderer)\n {\n if (!this.batches.length)\n {\n return;\n }\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n\n this.calculateVertices();\n this.calculateTints();\n\n for (var i = 0, l = this.batches.length; i < l; i++)\n {\n var batch = this.batches[i];\n\n batch.worldAlpha = this.worldAlpha * batch.alpha;\n\n renderer.plugins[this.pluginName].render(batch);\n }\n };\n\n /**\n * Renders the graphics direct\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._renderDirect = function _renderDirect (renderer)\n {\n var shader = this._resolveDirectShader(renderer);\n\n var geometry = this.geometry;\n var tint = this.tint;\n var worldAlpha = this.worldAlpha;\n var uniforms = shader.uniforms;\n var drawCalls = geometry.drawCalls;\n\n // lets set the transfomr\n uniforms.translationMatrix = this.transform.worldTransform;\n\n // and then lets set the tint..\n uniforms.tint[0] = (((tint >> 16) & 0xFF) / 255) * worldAlpha;\n uniforms.tint[1] = (((tint >> 8) & 0xFF) / 255) * worldAlpha;\n uniforms.tint[2] = ((tint & 0xFF) / 255) * worldAlpha;\n uniforms.tint[3] = worldAlpha;\n\n // the first draw call, we can set the uniforms of the shader directly here.\n\n // this means that we can tack advantage of the sync function of pixi!\n // bind and sync uniforms..\n // there is a way to optimise this..\n renderer.shader.bind(shader);\n renderer.geometry.bind(geometry, shader);\n\n // set state..\n renderer.state.set(this.state);\n\n // then render the rest of them...\n for (var i = 0, l = drawCalls.length; i < l; i++)\n {\n this._renderDrawCallDirect(renderer, geometry.drawCalls[i]);\n }\n };\n\n /**\n * Renders specific DrawCall\n *\n * @param {PIXI.Renderer} renderer\n * @param {PIXI.BatchDrawCall} drawCall\n */\n Graphics.prototype._renderDrawCallDirect = function _renderDrawCallDirect (renderer, drawCall)\n {\n var groupTextureCount = drawCall.textureCount;\n\n for (var j = 0; j < groupTextureCount; j++)\n {\n renderer.texture.bind(drawCall.textures[j], j);\n }\n\n renderer.geometry.draw(drawCall.type, drawCall.size, drawCall.start);\n };\n\n /**\n * Resolves shader for direct rendering\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._resolveDirectShader = function _resolveDirectShader (renderer)\n {\n var shader = this.shader;\n\n var pluginName = this.pluginName;\n\n if (!shader)\n {\n // if there is no shader here, we can use the default shader.\n // and that only gets created if we actually need it..\n // but may be more than one plugins for graphics\n if (!DEFAULT_SHADERS[pluginName])\n {\n var sampleValues = new Int32Array(16);\n\n for (var i = 0; i < 16; i++)\n {\n sampleValues[i] = i;\n }\n\n var uniforms = {\n tint: new Float32Array([1, 1, 1, 1]),\n translationMatrix: new Matrix(),\n default: UniformGroup.from({ uSamplers: sampleValues }, true),\n };\n\n var program = renderer.plugins[pluginName]._shader.program;\n\n DEFAULT_SHADERS[pluginName] = new Shader(program, uniforms);\n }\n\n shader = DEFAULT_SHADERS[pluginName];\n }\n\n return shader;\n };\n\n /**\n * Retrieves the bounds of the graphic shape as a rectangle object\n *\n * @protected\n */\n Graphics.prototype._calculateBounds = function _calculateBounds ()\n {\n this.finishPoly();\n var lb = this.geometry.bounds;\n\n this._bounds.addFrame(this.transform, lb.minX, lb.minY, lb.maxX, lb.maxY);\n };\n\n /**\n * Tests if a point is inside this graphics object\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */\n Graphics.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, Graphics._TEMP_POINT);\n\n return this.geometry.containsPoint(Graphics._TEMP_POINT);\n };\n\n /**\n * Recalcuate the tint by applying tin to batches using Graphics tint.\n * @protected\n */\n Graphics.prototype.calculateTints = function calculateTints ()\n {\n if (this.batchTint !== this.tint)\n {\n this.batchTint = this.tint;\n\n var tintRGB = hex2rgb(this.tint, temp);\n\n for (var i = 0; i < this.batches.length; i++)\n {\n var batch = this.batches[i];\n\n var batchTint = batch._batchRGB;\n\n var r = (tintRGB[0] * batchTint[0]) * 255;\n var g = (tintRGB[1] * batchTint[1]) * 255;\n var b = (tintRGB[2] * batchTint[2]) * 255;\n\n // TODO Ivan, can this be done in one go?\n var color = (r << 16) + (g << 8) + (b | 0);\n\n batch._tintRGB = (color >> 16)\n + (color & 0xff00)\n + ((color & 0xff) << 16);\n }\n }\n };\n\n /**\n * If there's a transform update or a change to the shape of the\n * geometry, recaculate the vertices.\n * @protected\n */\n Graphics.prototype.calculateVertices = function calculateVertices ()\n {\n if (this._transformID === this.transform._worldID)\n {\n return;\n }\n\n this._transformID = this.transform._worldID;\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var data = this.geometry.points;// batch.vertexDataOriginal;\n var vertexData = this.vertexData;\n\n var count = 0;\n\n for (var i = 0; i < data.length; i += 2)\n {\n var x = data[i];\n var y = data[i + 1];\n\n vertexData[count++] = (a * x) + (c * y) + tx;\n vertexData[count++] = (d * y) + (b * x) + ty;\n }\n };\n\n /**\n * Closes the current path.\n *\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.closePath = function closePath ()\n {\n var currentPath = this.currentPath;\n\n if (currentPath)\n {\n // we don't need to add extra point in the end because buildLine will take care of that\n currentPath.closeStroke = true;\n }\n\n return this;\n };\n\n /**\n * Apply a matrix to the positional data.\n *\n * @param {PIXI.Matrix} matrix - Matrix to use for transform current shape.\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.setMatrix = function setMatrix (matrix)\n {\n this._matrix = matrix;\n\n return this;\n };\n\n /**\n * Begin adding holes to the last draw shape\n * IMPORTANT: holes must be fully inside a shape to work\n * Also weirdness ensues if holes overlap!\n * Ellipses, Circles, Rectangles and Rounded Rectangles cannot be holes or host for holes in CanvasRenderer,\n * please use `moveTo` `lineTo`, `quadraticCurveTo` if you rely on pixi-legacy bundle.\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.beginHole = function beginHole ()\n {\n this.finishPoly();\n this._holeMode = true;\n\n return this;\n };\n\n /**\n * End adding holes to the last draw shape\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.endHole = function endHole ()\n {\n this.finishPoly();\n this._holeMode = false;\n\n return this;\n };\n\n /**\n * Destroys the Graphics object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n Graphics.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.geometry.refCount--;\n if (this.geometry.refCount === 0)\n {\n this.geometry.dispose();\n }\n\n this._matrix = null;\n this.currentPath = null;\n this._lineStyle.destroy();\n this._lineStyle = null;\n this._fillStyle.destroy();\n this._fillStyle = null;\n this.geometry = null;\n this.shader = null;\n this.vertexData = null;\n this.batches.length = 0;\n this.batches = null;\n\n Container.prototype.destroy.call(this, options);\n };\n\n Object.defineProperties( Graphics.prototype, prototypeAccessors );\n\n return Graphics;\n}(Container));\n\n/**\n * Temporary point to use for containsPoint\n *\n * @static\n * @private\n * @member {PIXI.Point}\n */\nGraphics._TEMP_POINT = new Point();\n\nexport { FillStyle, GRAPHICS_CURVES, Graphics, GraphicsData, GraphicsGeometry, LineStyle };\n//# sourceMappingURL=graphics.es.js.map\n","/*!\n * @pixi/sprite - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/sprite is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Point, Rectangle, ObservablePoint } from '@pixi/math';\nimport { sign } from '@pixi/utils';\nimport { Texture } from '@pixi/core';\nimport { BLEND_MODES } from '@pixi/constants';\nimport { Container } from '@pixi/display';\nimport { settings } from '@pixi/settings';\n\nvar tempPoint = new Point();\nvar indices = new Uint16Array([0, 1, 2, 0, 2, 3]);\n\n/**\n * The Sprite object is the base for all textured objects that are rendered to the screen\n*\n * A sprite can be created directly from an image like this:\n *\n * ```js\n * let sprite = PIXI.Sprite.from('assets/image.png');\n * ```\n *\n * The more efficient way to create sprites is using a {@link PIXI.Spritesheet},\n * as swapping base textures when rendering to the screen is inefficient.\n *\n * ```js\n * PIXI.Loader.shared.add(\"assets/spritesheet.json\").load(setup);\n *\n * function setup() {\n * let sheet = PIXI.Loader.shared.resources[\"assets/spritesheet.json\"].spritesheet;\n * let sprite = new PIXI.Sprite(sheet.textures[\"image.png\"]);\n * ...\n * }\n * ```\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Sprite = /*@__PURE__*/(function (Container) {\n function Sprite(texture)\n {\n Container.call(this);\n\n /**\n * The anchor point defines the normalized coordinates\n * in the texture that map to the position of this\n * sprite.\n *\n * By default, this is `(0,0)` (or `texture.defaultAnchor`\n * if you have modified that), which means the position\n * `(x,y)` of this `Sprite` will be the top-left corner.\n *\n * Note: Updating `texture.defaultAnchor` after\n * constructing a `Sprite` does _not_ update its anchor.\n *\n * {@link https://docs.cocos2d-x.org/cocos2d-x/en/sprites/manipulation.html}\n *\n * @default `texture.defaultAnchor`\n * @member {PIXI.ObservablePoint}\n * @private\n */\n this._anchor = new ObservablePoint(\n this._onAnchorUpdate,\n this,\n (texture ? texture.defaultAnchor.x : 0),\n (texture ? texture.defaultAnchor.y : 0)\n );\n\n /**\n * The texture that the sprite is using\n *\n * @private\n * @member {PIXI.Texture}\n */\n this._texture = null;\n\n /**\n * The width of the sprite (this is initially set by the texture)\n *\n * @private\n * @member {number}\n */\n this._width = 0;\n\n /**\n * The height of the sprite (this is initially set by the texture)\n *\n * @private\n * @member {number}\n */\n this._height = 0;\n\n /**\n * The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @private\n * @member {number}\n * @default 0xFFFFFF\n */\n this._tint = null;\n this._tintRGB = null;\n this.tint = 0xFFFFFF;\n\n /**\n * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * The shader that will be used to render the sprite. Set to null to remove a current shader.\n *\n * @member {PIXI.Filter|PIXI.Shader}\n */\n this.shader = null;\n\n /**\n * Cached tint value so we can tell when the tint is changed.\n * Value is used for 2d CanvasRenderer.\n *\n * @protected\n * @member {number}\n * @default 0xFFFFFF\n */\n this._cachedTint = 0xFFFFFF;\n\n /**\n * this is used to store the uvs data of the sprite, assigned at the same time\n * as the vertexData in calculateVertices()\n *\n * @private\n * @member {Float32Array}\n */\n this.uvs = null;\n\n // call texture setter\n this.texture = texture || Texture.EMPTY;\n\n /**\n * this is used to store the vertex data of the sprite (basically a quad)\n *\n * @private\n * @member {Float32Array}\n */\n this.vertexData = new Float32Array(8);\n\n /**\n * This is used to calculate the bounds of the object IF it is a trimmed sprite\n *\n * @private\n * @member {Float32Array}\n */\n this.vertexTrimmedData = null;\n\n this._transformID = -1;\n this._textureID = -1;\n\n this._transformTrimmedID = -1;\n this._textureTrimmedID = -1;\n\n // Batchable stuff..\n // TODO could make this a mixin?\n this.indices = indices;\n this.size = 4;\n this.start = 0;\n\n /**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_render' & '_renderCanvas' methods.\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = 'batch';\n\n /**\n * used to fast check if a sprite is.. a sprite!\n * @member {boolean}\n */\n this.isSprite = true;\n\n /**\n * Internal roundPixels field\n *\n * @member {boolean}\n * @private\n */\n this._roundPixels = settings.ROUND_PIXELS;\n }\n\n if ( Container ) Sprite.__proto__ = Container;\n Sprite.prototype = Object.create( Container && Container.prototype );\n Sprite.prototype.constructor = Sprite;\n\n var prototypeAccessors = { roundPixels: { configurable: true },width: { configurable: true },height: { configurable: true },anchor: { configurable: true },tint: { configurable: true },texture: { configurable: true } };\n\n /**\n * When the texture is updated, this event will fire to update the scale and frame\n *\n * @private\n */\n Sprite.prototype._onTextureUpdate = function _onTextureUpdate ()\n {\n this._textureID = -1;\n this._textureTrimmedID = -1;\n this._cachedTint = 0xFFFFFF;\n\n // so if _width is 0 then width was not set..\n if (this._width)\n {\n this.scale.x = sign(this.scale.x) * this._width / this._texture.orig.width;\n }\n\n if (this._height)\n {\n this.scale.y = sign(this.scale.y) * this._height / this._texture.orig.height;\n }\n };\n\n /**\n * Called when the anchor position updates.\n *\n * @private\n */\n Sprite.prototype._onAnchorUpdate = function _onAnchorUpdate ()\n {\n this._transformID = -1;\n this._transformTrimmedID = -1;\n };\n\n /**\n * calculates worldTransform * vertices, store it in vertexData\n */\n Sprite.prototype.calculateVertices = function calculateVertices ()\n {\n var texture = this._texture;\n\n if (this._transformID === this.transform._worldID && this._textureID === texture._updateID)\n {\n return;\n }\n\n // update texture UV here, because base texture can be changed without calling `_onTextureUpdate`\n if (this._textureID !== texture._updateID)\n {\n this.uvs = this._texture._uvs.uvsFloat32;\n }\n\n this._transformID = this.transform._worldID;\n this._textureID = texture._updateID;\n\n // set the vertex data\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n var vertexData = this.vertexData;\n var trim = texture.trim;\n var orig = texture.orig;\n var anchor = this._anchor;\n\n var w0 = 0;\n var w1 = 0;\n var h0 = 0;\n var h1 = 0;\n\n if (trim)\n {\n // if the sprite is trimmed and is not a tilingsprite then we need to add the extra\n // space before transforming the sprite coords.\n w1 = trim.x - (anchor._x * orig.width);\n w0 = w1 + trim.width;\n\n h1 = trim.y - (anchor._y * orig.height);\n h0 = h1 + trim.height;\n }\n else\n {\n w1 = -anchor._x * orig.width;\n w0 = w1 + orig.width;\n\n h1 = -anchor._y * orig.height;\n h0 = h1 + orig.height;\n }\n\n // xy\n vertexData[0] = (a * w1) + (c * h1) + tx;\n vertexData[1] = (d * h1) + (b * w1) + ty;\n\n // xy\n vertexData[2] = (a * w0) + (c * h1) + tx;\n vertexData[3] = (d * h1) + (b * w0) + ty;\n\n // xy\n vertexData[4] = (a * w0) + (c * h0) + tx;\n vertexData[5] = (d * h0) + (b * w0) + ty;\n\n // xy\n vertexData[6] = (a * w1) + (c * h0) + tx;\n vertexData[7] = (d * h0) + (b * w1) + ty;\n\n if (this._roundPixels)\n {\n for (var i = 0; i < 8; i++)\n {\n vertexData[i] = Math.round(vertexData[i]);\n }\n }\n };\n\n /**\n * calculates worldTransform * vertices for a non texture with a trim. store it in vertexTrimmedData\n * This is used to ensure that the true width and height of a trimmed texture is respected\n */\n Sprite.prototype.calculateTrimmedVertices = function calculateTrimmedVertices ()\n {\n if (!this.vertexTrimmedData)\n {\n this.vertexTrimmedData = new Float32Array(8);\n }\n else if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID)\n {\n return;\n }\n\n this._transformTrimmedID = this.transform._worldID;\n this._textureTrimmedID = this._texture._updateID;\n\n // lets do some special trim code!\n var texture = this._texture;\n var vertexData = this.vertexTrimmedData;\n var orig = texture.orig;\n var anchor = this._anchor;\n\n // lets calculate the new untrimmed bounds..\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var w1 = -anchor._x * orig.width;\n var w0 = w1 + orig.width;\n\n var h1 = -anchor._y * orig.height;\n var h0 = h1 + orig.height;\n\n // xy\n vertexData[0] = (a * w1) + (c * h1) + tx;\n vertexData[1] = (d * h1) + (b * w1) + ty;\n\n // xy\n vertexData[2] = (a * w0) + (c * h1) + tx;\n vertexData[3] = (d * h1) + (b * w0) + ty;\n\n // xy\n vertexData[4] = (a * w0) + (c * h0) + tx;\n vertexData[5] = (d * h0) + (b * w0) + ty;\n\n // xy\n vertexData[6] = (a * w1) + (c * h0) + tx;\n vertexData[7] = (d * h0) + (b * w1) + ty;\n };\n\n /**\n *\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The webgl renderer to use.\n */\n Sprite.prototype._render = function _render (renderer)\n {\n this.calculateVertices();\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n renderer.plugins[this.pluginName].render(this);\n };\n\n /**\n * Updates the bounds of the sprite.\n *\n * @protected\n */\n Sprite.prototype._calculateBounds = function _calculateBounds ()\n {\n var trim = this._texture.trim;\n var orig = this._texture.orig;\n\n // First lets check to see if the current texture has a trim..\n if (!trim || (trim.width === orig.width && trim.height === orig.height))\n {\n // no trim! lets use the usual calculations..\n this.calculateVertices();\n this._bounds.addQuad(this.vertexData);\n }\n else\n {\n // lets calculate a special trimmed bounds...\n this.calculateTrimmedVertices();\n this._bounds.addQuad(this.vertexTrimmedData);\n }\n };\n\n /**\n * Gets the local bounds of the sprite object.\n *\n * @param {PIXI.Rectangle} [rect] - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n Sprite.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n // we can do a fast local bounds if the sprite has no children!\n if (this.children.length === 0)\n {\n this._bounds.minX = this._texture.orig.width * -this._anchor._x;\n this._bounds.minY = this._texture.orig.height * -this._anchor._y;\n this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x);\n this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y);\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n }\n\n return Container.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * Tests if a point is inside this sprite\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */\n Sprite.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, tempPoint);\n\n var width = this._texture.orig.width;\n var height = this._texture.orig.height;\n var x1 = -width * this.anchor.x;\n var y1 = 0;\n\n if (tempPoint.x >= x1 && tempPoint.x < x1 + width)\n {\n y1 = -height * this.anchor.y;\n\n if (tempPoint.y >= y1 && tempPoint.y < y1 + height)\n {\n return true;\n }\n }\n\n return false;\n };\n\n /**\n * Destroys this sprite and optionally its texture and children\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well\n */\n Sprite.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this._texture.off('update', this._onTextureUpdate, this);\n\n this._anchor = null;\n\n var destroyTexture = typeof options === 'boolean' ? options : options && options.texture;\n\n if (destroyTexture)\n {\n var destroyBaseTexture = typeof options === 'boolean' ? options : options && options.baseTexture;\n\n this._texture.destroy(!!destroyBaseTexture);\n }\n\n this._texture = null;\n this.shader = null;\n };\n\n // some helper functions..\n\n /**\n * Helper function that creates a new sprite based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source Source to create texture from\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Sprite} The newly created sprite\n */\n Sprite.from = function from (source, options)\n {\n var texture = (source instanceof Texture)\n ? source\n : Texture.from(source, options);\n\n return new Sprite(texture);\n };\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n prototypeAccessors.roundPixels.set = function (value)\n {\n if (this._roundPixels !== value)\n {\n this._transformID = -1;\n }\n this._roundPixels = value;\n };\n\n prototypeAccessors.roundPixels.get = function ()\n {\n return this._roundPixels;\n };\n\n /**\n * The width of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return Math.abs(this.scale.x) * this._texture.orig.width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n var s = sign(this.scale.x) || 1;\n\n this.scale.x = s * value / this._texture.orig.width;\n this._width = value;\n };\n\n /**\n * The height of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return Math.abs(this.scale.y) * this._texture.orig.height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n var s = sign(this.scale.y) || 1;\n\n this.scale.y = s * value / this._texture.orig.height;\n this._height = value;\n };\n\n /**\n * The anchor sets the origin point of the text. The default value is taken from the {@link PIXI.Texture|Texture}\n * and passed to the constructor.\n *\n * The default is `(0,0)`, this means the text's origin is the top left.\n *\n * Setting the anchor to `(0.5,0.5)` means the text's origin is centered.\n *\n * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner.\n *\n * If you pass only single parameter, it will set both x and y to the same value as shown in the example below.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.anchor.set(0.5); // This will set the origin to center. (0.5) is same as (0.5, 0.5).\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.anchor.get = function ()\n {\n return this._anchor;\n };\n\n prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._anchor.copyFrom(value);\n };\n\n /**\n * The tint applied to the sprite. This is a hex value.\n * A value of 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._tint = value;\n this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16);\n };\n\n /**\n * The texture that the sprite is using\n *\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this._texture;\n };\n\n prototypeAccessors.texture.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._texture === value)\n {\n return;\n }\n\n this._texture = value || Texture.EMPTY;\n this._cachedTint = 0xFFFFFF;\n\n this._textureID = -1;\n this._textureTrimmedID = -1;\n\n if (value)\n {\n // wait for the texture to load\n if (value.baseTexture.valid)\n {\n this._onTextureUpdate();\n }\n else\n {\n value.once('update', this._onTextureUpdate, this);\n }\n }\n };\n\n Object.defineProperties( Sprite.prototype, prototypeAccessors );\n\n return Sprite;\n}(Container));\n\nexport { Sprite };\n//# sourceMappingURL=sprite.es.js.map\n","/*!\n * @pixi/text - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/text is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Sprite } from '@pixi/sprite';\nimport { Texture } from '@pixi/core';\nimport { settings } from '@pixi/settings';\nimport { Rectangle } from '@pixi/math';\nimport { hex2string, hex2rgb, string2hex, trimCanvas, sign } from '@pixi/utils';\n\n/**\n * Constants that define the type of gradient on text.\n *\n * @static\n * @constant\n * @name TEXT_GRADIENT\n * @memberof PIXI\n * @type {object}\n * @property {number} LINEAR_VERTICAL Vertical gradient\n * @property {number} LINEAR_HORIZONTAL Linear gradient\n */\nvar TEXT_GRADIENT = {\n LINEAR_VERTICAL: 0,\n LINEAR_HORIZONTAL: 1,\n};\n\n// disabling eslint for now, going to rewrite this in v5\n\nvar defaultStyle = {\n align: 'left',\n breakWords: false,\n dropShadow: false,\n dropShadowAlpha: 1,\n dropShadowAngle: Math.PI / 6,\n dropShadowBlur: 0,\n dropShadowColor: 'black',\n dropShadowDistance: 5,\n fill: 'black',\n fillGradientType: TEXT_GRADIENT.LINEAR_VERTICAL,\n fillGradientStops: [],\n fontFamily: 'Arial',\n fontSize: 26,\n fontStyle: 'normal',\n fontVariant: 'normal',\n fontWeight: 'normal',\n letterSpacing: 0,\n lineHeight: 0,\n lineJoin: 'miter',\n miterLimit: 10,\n padding: 0,\n stroke: 'black',\n strokeThickness: 0,\n textBaseline: 'alphabetic',\n trim: false,\n whiteSpace: 'pre',\n wordWrap: false,\n wordWrapWidth: 100,\n leading: 0,\n};\n\nvar genericFontFamilies = [\n 'serif',\n 'sans-serif',\n 'monospace',\n 'cursive',\n 'fantasy',\n 'system-ui' ];\n\n/**\n * A TextStyle Object contains information to decorate a Text objects.\n *\n * An instance can be shared between multiple Text objects; then changing the style will update all text objects using it.\n *\n * A tool can be used to generate a text style [here](https://pixijs.io/pixi-text-style).\n *\n * @class\n * @memberof PIXI\n */\nvar TextStyle = function TextStyle(style)\n{\n this.styleID = 0;\n\n this.reset();\n\n deepCopyProperties(this, style, style);\n};\n\nvar prototypeAccessors = { align: { configurable: true },breakWords: { configurable: true },dropShadow: { configurable: true },dropShadowAlpha: { configurable: true },dropShadowAngle: { configurable: true },dropShadowBlur: { configurable: true },dropShadowColor: { configurable: true },dropShadowDistance: { configurable: true },fill: { configurable: true },fillGradientType: { configurable: true },fillGradientStops: { configurable: true },fontFamily: { configurable: true },fontSize: { configurable: true },fontStyle: { configurable: true },fontVariant: { configurable: true },fontWeight: { configurable: true },letterSpacing: { configurable: true },lineHeight: { configurable: true },leading: { configurable: true },lineJoin: { configurable: true },miterLimit: { configurable: true },padding: { configurable: true },stroke: { configurable: true },strokeThickness: { configurable: true },textBaseline: { configurable: true },trim: { configurable: true },whiteSpace: { configurable: true },wordWrap: { configurable: true },wordWrapWidth: { configurable: true } };\n\n/**\n * Creates a new TextStyle object with the same values as this one.\n * Note that the only the properties of the object are cloned.\n *\n * @return {PIXI.TextStyle} New cloned TextStyle object\n */\nTextStyle.prototype.clone = function clone ()\n{\n var clonedProperties = {};\n\n deepCopyProperties(clonedProperties, this, defaultStyle);\n\n return new TextStyle(clonedProperties);\n};\n\n/**\n * Resets all properties to the defaults specified in TextStyle.prototype._default\n */\nTextStyle.prototype.reset = function reset ()\n{\n deepCopyProperties(this, defaultStyle, defaultStyle);\n};\n\n/**\n * Alignment for multiline text ('left', 'center' or 'right'), does not affect single line text\n *\n * @member {string}\n */\nprototypeAccessors.align.get = function ()\n{\n return this._align;\n};\nprototypeAccessors.align.set = function (align) // eslint-disable-line require-jsdoc\n{\n if (this._align !== align)\n {\n this._align = align;\n this.styleID++;\n }\n};\n\n/**\n * Indicates if lines can be wrapped within words, it needs wordWrap to be set to true\n *\n * @member {boolean}\n */\nprototypeAccessors.breakWords.get = function ()\n{\n return this._breakWords;\n};\nprototypeAccessors.breakWords.set = function (breakWords) // eslint-disable-line require-jsdoc\n{\n if (this._breakWords !== breakWords)\n {\n this._breakWords = breakWords;\n this.styleID++;\n }\n};\n\n/**\n * Set a drop shadow for the text\n *\n * @member {boolean}\n */\nprototypeAccessors.dropShadow.get = function ()\n{\n return this._dropShadow;\n};\nprototypeAccessors.dropShadow.set = function (dropShadow) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadow !== dropShadow)\n {\n this._dropShadow = dropShadow;\n this.styleID++;\n }\n};\n\n/**\n * Set alpha for the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowAlpha.get = function ()\n{\n return this._dropShadowAlpha;\n};\nprototypeAccessors.dropShadowAlpha.set = function (dropShadowAlpha) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowAlpha !== dropShadowAlpha)\n {\n this._dropShadowAlpha = dropShadowAlpha;\n this.styleID++;\n }\n};\n\n/**\n * Set a angle of the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowAngle.get = function ()\n{\n return this._dropShadowAngle;\n};\nprototypeAccessors.dropShadowAngle.set = function (dropShadowAngle) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowAngle !== dropShadowAngle)\n {\n this._dropShadowAngle = dropShadowAngle;\n this.styleID++;\n }\n};\n\n/**\n * Set a shadow blur radius\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowBlur.get = function ()\n{\n return this._dropShadowBlur;\n};\nprototypeAccessors.dropShadowBlur.set = function (dropShadowBlur) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowBlur !== dropShadowBlur)\n {\n this._dropShadowBlur = dropShadowBlur;\n this.styleID++;\n }\n};\n\n/**\n * A fill style to be used on the dropshadow e.g 'red', '#00FF00'\n *\n * @member {string|number}\n */\nprototypeAccessors.dropShadowColor.get = function ()\n{\n return this._dropShadowColor;\n};\nprototypeAccessors.dropShadowColor.set = function (dropShadowColor) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(dropShadowColor);\n if (this._dropShadowColor !== outputColor)\n {\n this._dropShadowColor = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * Set a distance of the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowDistance.get = function ()\n{\n return this._dropShadowDistance;\n};\nprototypeAccessors.dropShadowDistance.set = function (dropShadowDistance) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowDistance !== dropShadowDistance)\n {\n this._dropShadowDistance = dropShadowDistance;\n this.styleID++;\n }\n};\n\n/**\n * A canvas fillstyle that will be used on the text e.g 'red', '#00FF00'.\n * Can be an array to create a gradient eg ['#000000','#FFFFFF']\n * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle|MDN}\n *\n * @member {string|string[]|number|number[]|CanvasGradient|CanvasPattern}\n */\nprototypeAccessors.fill.get = function ()\n{\n return this._fill;\n};\nprototypeAccessors.fill.set = function (fill) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(fill);\n if (this._fill !== outputColor)\n {\n this._fill = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * If fill is an array of colours to create a gradient, this can change the type/direction of the gradient.\n * See {@link PIXI.TEXT_GRADIENT}\n *\n * @member {number}\n */\nprototypeAccessors.fillGradientType.get = function ()\n{\n return this._fillGradientType;\n};\nprototypeAccessors.fillGradientType.set = function (fillGradientType) // eslint-disable-line require-jsdoc\n{\n if (this._fillGradientType !== fillGradientType)\n {\n this._fillGradientType = fillGradientType;\n this.styleID++;\n }\n};\n\n/**\n * If fill is an array of colours to create a gradient, this array can set the stop points\n * (numbers between 0 and 1) for the color, overriding the default behaviour of evenly spacing them.\n *\n * @member {number[]}\n */\nprototypeAccessors.fillGradientStops.get = function ()\n{\n return this._fillGradientStops;\n};\nprototypeAccessors.fillGradientStops.set = function (fillGradientStops) // eslint-disable-line require-jsdoc\n{\n if (!areArraysEqual(this._fillGradientStops,fillGradientStops))\n {\n this._fillGradientStops = fillGradientStops;\n this.styleID++;\n }\n};\n\n/**\n * The font family\n *\n * @member {string|string[]}\n */\nprototypeAccessors.fontFamily.get = function ()\n{\n return this._fontFamily;\n};\nprototypeAccessors.fontFamily.set = function (fontFamily) // eslint-disable-line require-jsdoc\n{\n if (this.fontFamily !== fontFamily)\n {\n this._fontFamily = fontFamily;\n this.styleID++;\n }\n};\n\n/**\n * The font size\n * (as a number it converts to px, but as a string, equivalents are '26px','20pt','160%' or '1.6em')\n *\n * @member {number|string}\n */\nprototypeAccessors.fontSize.get = function ()\n{\n return this._fontSize;\n};\nprototypeAccessors.fontSize.set = function (fontSize) // eslint-disable-line require-jsdoc\n{\n if (this._fontSize !== fontSize)\n {\n this._fontSize = fontSize;\n this.styleID++;\n }\n};\n\n/**\n * The font style\n * ('normal', 'italic' or 'oblique')\n *\n * @member {string}\n */\nprototypeAccessors.fontStyle.get = function ()\n{\n return this._fontStyle;\n};\nprototypeAccessors.fontStyle.set = function (fontStyle) // eslint-disable-line require-jsdoc\n{\n if (this._fontStyle !== fontStyle)\n {\n this._fontStyle = fontStyle;\n this.styleID++;\n }\n};\n\n/**\n * The font variant\n * ('normal' or 'small-caps')\n *\n * @member {string}\n */\nprototypeAccessors.fontVariant.get = function ()\n{\n return this._fontVariant;\n};\nprototypeAccessors.fontVariant.set = function (fontVariant) // eslint-disable-line require-jsdoc\n{\n if (this._fontVariant !== fontVariant)\n {\n this._fontVariant = fontVariant;\n this.styleID++;\n }\n};\n\n/**\n * The font weight\n * ('normal', 'bold', 'bolder', 'lighter' and '100', '200', '300', '400', '500', '600', '700', 800' or '900')\n *\n * @member {string}\n */\nprototypeAccessors.fontWeight.get = function ()\n{\n return this._fontWeight;\n};\nprototypeAccessors.fontWeight.set = function (fontWeight) // eslint-disable-line require-jsdoc\n{\n if (this._fontWeight !== fontWeight)\n {\n this._fontWeight = fontWeight;\n this.styleID++;\n }\n};\n\n/**\n * The amount of spacing between letters, default is 0\n *\n * @member {number}\n */\nprototypeAccessors.letterSpacing.get = function ()\n{\n return this._letterSpacing;\n};\nprototypeAccessors.letterSpacing.set = function (letterSpacing) // eslint-disable-line require-jsdoc\n{\n if (this._letterSpacing !== letterSpacing)\n {\n this._letterSpacing = letterSpacing;\n this.styleID++;\n }\n};\n\n/**\n * The line height, a number that represents the vertical space that a letter uses\n *\n * @member {number}\n */\nprototypeAccessors.lineHeight.get = function ()\n{\n return this._lineHeight;\n};\nprototypeAccessors.lineHeight.set = function (lineHeight) // eslint-disable-line require-jsdoc\n{\n if (this._lineHeight !== lineHeight)\n {\n this._lineHeight = lineHeight;\n this.styleID++;\n }\n};\n\n/**\n * The space between lines\n *\n * @member {number}\n */\nprototypeAccessors.leading.get = function ()\n{\n return this._leading;\n};\nprototypeAccessors.leading.set = function (leading) // eslint-disable-line require-jsdoc\n{\n if (this._leading !== leading)\n {\n this._leading = leading;\n this.styleID++;\n }\n};\n\n/**\n * The lineJoin property sets the type of corner created, it can resolve spiked text issues.\n * Default is 'miter' (creates a sharp corner).\n *\n * @member {string}\n */\nprototypeAccessors.lineJoin.get = function ()\n{\n return this._lineJoin;\n};\nprototypeAccessors.lineJoin.set = function (lineJoin) // eslint-disable-line require-jsdoc\n{\n if (this._lineJoin !== lineJoin)\n {\n this._lineJoin = lineJoin;\n this.styleID++;\n }\n};\n\n/**\n * The miter limit to use when using the 'miter' lineJoin mode\n * This can reduce or increase the spikiness of rendered text.\n *\n * @member {number}\n */\nprototypeAccessors.miterLimit.get = function ()\n{\n return this._miterLimit;\n};\nprototypeAccessors.miterLimit.set = function (miterLimit) // eslint-disable-line require-jsdoc\n{\n if (this._miterLimit !== miterLimit)\n {\n this._miterLimit = miterLimit;\n this.styleID++;\n }\n};\n\n/**\n * Occasionally some fonts are cropped. Adding some padding will prevent this from happening\n * by adding padding to all sides of the text.\n *\n * @member {number}\n */\nprototypeAccessors.padding.get = function ()\n{\n return this._padding;\n};\nprototypeAccessors.padding.set = function (padding) // eslint-disable-line require-jsdoc\n{\n if (this._padding !== padding)\n {\n this._padding = padding;\n this.styleID++;\n }\n};\n\n/**\n * A canvas fillstyle that will be used on the text stroke\n * e.g 'blue', '#FCFF00'\n *\n * @member {string|number}\n */\nprototypeAccessors.stroke.get = function ()\n{\n return this._stroke;\n};\nprototypeAccessors.stroke.set = function (stroke) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(stroke);\n if (this._stroke !== outputColor)\n {\n this._stroke = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * A number that represents the thickness of the stroke.\n * Default is 0 (no stroke)\n *\n * @member {number}\n */\nprototypeAccessors.strokeThickness.get = function ()\n{\n return this._strokeThickness;\n};\nprototypeAccessors.strokeThickness.set = function (strokeThickness) // eslint-disable-line require-jsdoc\n{\n if (this._strokeThickness !== strokeThickness)\n {\n this._strokeThickness = strokeThickness;\n this.styleID++;\n }\n};\n\n/**\n * The baseline of the text that is rendered.\n *\n * @member {string}\n */\nprototypeAccessors.textBaseline.get = function ()\n{\n return this._textBaseline;\n};\nprototypeAccessors.textBaseline.set = function (textBaseline) // eslint-disable-line require-jsdoc\n{\n if (this._textBaseline !== textBaseline)\n {\n this._textBaseline = textBaseline;\n this.styleID++;\n }\n};\n\n/**\n * Trim transparent borders\n *\n * @member {boolean}\n */\nprototypeAccessors.trim.get = function ()\n{\n return this._trim;\n};\nprototypeAccessors.trim.set = function (trim) // eslint-disable-line require-jsdoc\n{\n if (this._trim !== trim)\n {\n this._trim = trim;\n this.styleID++;\n }\n};\n\n/**\n * How newlines and spaces should be handled.\n * Default is 'pre' (preserve, preserve).\n *\n * value | New lines | Spaces\n * --- | --- | ---\n * 'normal' | Collapse | Collapse\n * 'pre' | Preserve | Preserve\n * 'pre-line' | Preserve | Collapse\n *\n * @member {string}\n */\nprototypeAccessors.whiteSpace.get = function ()\n{\n return this._whiteSpace;\n};\nprototypeAccessors.whiteSpace.set = function (whiteSpace) // eslint-disable-line require-jsdoc\n{\n if (this._whiteSpace !== whiteSpace)\n {\n this._whiteSpace = whiteSpace;\n this.styleID++;\n }\n};\n\n/**\n * Indicates if word wrap should be used\n *\n * @member {boolean}\n */\nprototypeAccessors.wordWrap.get = function ()\n{\n return this._wordWrap;\n};\nprototypeAccessors.wordWrap.set = function (wordWrap) // eslint-disable-line require-jsdoc\n{\n if (this._wordWrap !== wordWrap)\n {\n this._wordWrap = wordWrap;\n this.styleID++;\n }\n};\n\n/**\n * The width at which text will wrap, it needs wordWrap to be set to true\n *\n * @member {number}\n */\nprototypeAccessors.wordWrapWidth.get = function ()\n{\n return this._wordWrapWidth;\n};\nprototypeAccessors.wordWrapWidth.set = function (wordWrapWidth) // eslint-disable-line require-jsdoc\n{\n if (this._wordWrapWidth !== wordWrapWidth)\n {\n this._wordWrapWidth = wordWrapWidth;\n this.styleID++;\n }\n};\n\n/**\n * Generates a font style string to use for `TextMetrics.measureFont()`.\n *\n * @return {string} Font style string, for passing to `TextMetrics.measureFont()`\n */\nTextStyle.prototype.toFontString = function toFontString ()\n{\n // build canvas api font setting from individual components. Convert a numeric this.fontSize to px\n var fontSizeString = (typeof this.fontSize === 'number') ? ((this.fontSize) + \"px\") : this.fontSize;\n\n // Clean-up fontFamily property by quoting each font name\n // this will support font names with spaces\n var fontFamilies = this.fontFamily;\n\n if (!Array.isArray(this.fontFamily))\n {\n fontFamilies = this.fontFamily.split(',');\n }\n\n for (var i = fontFamilies.length - 1; i >= 0; i--)\n {\n // Trim any extra white-space\n var fontFamily = fontFamilies[i].trim();\n\n // Check if font already contains strings\n if (!(/([\\\"\\'])[^\\'\\\"]+\\1/).test(fontFamily) && genericFontFamilies.indexOf(fontFamily) < 0)\n {\n fontFamily = \"\\\"\" + fontFamily + \"\\\"\";\n }\n fontFamilies[i] = fontFamily;\n }\n\n return ((this.fontStyle) + \" \" + (this.fontVariant) + \" \" + (this.fontWeight) + \" \" + fontSizeString + \" \" + (fontFamilies.join(',')));\n};\n\nObject.defineProperties( TextStyle.prototype, prototypeAccessors );\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * @private\n * @param {number|number[]} color\n * @return {string} The color as a string.\n */\nfunction getSingleColor(color)\n{\n if (typeof color === 'number')\n {\n return hex2string(color);\n }\n else if ( typeof color === 'string' )\n {\n if ( color.indexOf('0x') === 0 )\n {\n color = color.replace('0x', '#');\n }\n }\n\n return color;\n}\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * This version can also convert array of colors\n * @private\n * @param {number|number[]} color\n * @return {string} The color as a string.\n */\nfunction getColor(color)\n{\n if (!Array.isArray(color))\n {\n return getSingleColor(color);\n }\n else\n {\n for (var i = 0; i < color.length; ++i)\n {\n color[i] = getSingleColor(color[i]);\n }\n\n return color;\n }\n}\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * This version can also convert array of colors\n * @private\n * @param {Array} array1 First array to compare\n * @param {Array} array2 Second array to compare\n * @return {boolean} Do the arrays contain the same values in the same order\n */\nfunction areArraysEqual(array1, array2)\n{\n if (!Array.isArray(array1) || !Array.isArray(array2))\n {\n return false;\n }\n\n if (array1.length !== array2.length)\n {\n return false;\n }\n\n for (var i = 0; i < array1.length; ++i)\n {\n if (array1[i] !== array2[i])\n {\n return false;\n }\n }\n\n return true;\n}\n\n/**\n * Utility function to ensure that object properties are copied by value, and not by reference\n * @private\n * @param {Object} target Target object to copy properties into\n * @param {Object} source Source object for the properties to copy\n * @param {string} propertyObj Object containing properties names we want to loop over\n */\nfunction deepCopyProperties(target, source, propertyObj) {\n for (var prop in propertyObj) {\n if (Array.isArray(source[prop])) {\n target[prop] = source[prop].slice();\n } else {\n target[prop] = source[prop];\n }\n }\n}\n\n/**\n * The TextMetrics object represents the measurement of a block of text with a specified style.\n *\n * ```js\n * let style = new PIXI.TextStyle({fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'})\n * let textMetrics = PIXI.TextMetrics.measureText('Your text', style)\n * ```\n *\n * @class\n * @memberof PIXI\n */\nvar TextMetrics = function TextMetrics(text, style, width, height, lines, lineWidths, lineHeight, maxLineWidth, fontProperties)\n{\n /**\n * The text that was measured\n *\n * @member {string}\n */\n this.text = text;\n\n /**\n * The style that was measured\n *\n * @member {PIXI.TextStyle}\n */\n this.style = style;\n\n /**\n * The measured width of the text\n *\n * @member {number}\n */\n this.width = width;\n\n /**\n * The measured height of the text\n *\n * @member {number}\n */\n this.height = height;\n\n /**\n * An array of lines of the text broken by new lines and wrapping is specified in style\n *\n * @member {string[]}\n */\n this.lines = lines;\n\n /**\n * An array of the line widths for each line matched to `lines`\n *\n * @member {number[]}\n */\n this.lineWidths = lineWidths;\n\n /**\n * The measured line height for this style\n *\n * @member {number}\n */\n this.lineHeight = lineHeight;\n\n /**\n * The maximum line width for all measured lines\n *\n * @member {number}\n */\n this.maxLineWidth = maxLineWidth;\n\n /**\n * The font properties object from TextMetrics.measureFont\n *\n * @member {PIXI.IFontMetrics}\n */\n this.fontProperties = fontProperties;\n};\n\n/**\n * Measures the supplied string of text and returns a Rectangle.\n *\n * @param {string} text - the text to measure.\n * @param {PIXI.TextStyle} style - the text style to use for measuring\n * @param {boolean} [wordWrap] - optional override for if word-wrap should be applied to the text.\n * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring.\n * @return {PIXI.TextMetrics} measured width and height of the text.\n */\nTextMetrics.measureText = function measureText (text, style, wordWrap, canvas)\n{\n if ( canvas === void 0 ) canvas = TextMetrics._canvas;\n\n wordWrap = (wordWrap === undefined || wordWrap === null) ? style.wordWrap : wordWrap;\n var font = style.toFontString();\n var fontProperties = TextMetrics.measureFont(font);\n\n // fallback in case UA disallow canvas data extraction\n // (toDataURI, getImageData functions)\n if (fontProperties.fontSize === 0)\n {\n fontProperties.fontSize = style.fontSize;\n fontProperties.ascent = style.fontSize;\n }\n\n var context = canvas.getContext('2d');\n\n context.font = font;\n\n var outputText = wordWrap ? TextMetrics.wordWrap(text, style, canvas) : text;\n var lines = outputText.split(/(?:\\r\\n|\\r|\\n)/);\n var lineWidths = new Array(lines.length);\n var maxLineWidth = 0;\n\n for (var i = 0; i < lines.length; i++)\n {\n var lineWidth = context.measureText(lines[i]).width + ((lines[i].length - 1) * style.letterSpacing);\n\n lineWidths[i] = lineWidth;\n maxLineWidth = Math.max(maxLineWidth, lineWidth);\n }\n var width = maxLineWidth + style.strokeThickness;\n\n if (style.dropShadow)\n {\n width += style.dropShadowDistance;\n }\n\n var lineHeight = style.lineHeight || fontProperties.fontSize + style.strokeThickness;\n var height = Math.max(lineHeight, fontProperties.fontSize + style.strokeThickness)\n + ((lines.length - 1) * (lineHeight + style.leading));\n\n if (style.dropShadow)\n {\n height += style.dropShadowDistance;\n }\n\n return new TextMetrics(\n text,\n style,\n width,\n height,\n lines,\n lineWidths,\n lineHeight + style.leading,\n maxLineWidth,\n fontProperties\n );\n};\n\n/**\n * Applies newlines to a string to have it optimally fit into the horizontal\n * bounds set by the Text object's wordWrapWidth property.\n *\n * @private\n * @param {string} text - String to apply word wrapping to\n * @param {PIXI.TextStyle} style - the style to use when wrapping\n * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring.\n * @return {string} New string with new lines applied where required\n */\nTextMetrics.wordWrap = function wordWrap (text, style, canvas)\n{\n if ( canvas === void 0 ) canvas = TextMetrics._canvas;\n\n var context = canvas.getContext('2d');\n\n var width = 0;\n var line = '';\n var lines = '';\n\n var cache = {};\n var letterSpacing = style.letterSpacing;\n var whiteSpace = style.whiteSpace;\n\n // How to handle whitespaces\n var collapseSpaces = TextMetrics.collapseSpaces(whiteSpace);\n var collapseNewlines = TextMetrics.collapseNewlines(whiteSpace);\n\n // whether or not spaces may be added to the beginning of lines\n var canPrependSpaces = !collapseSpaces;\n\n // There is letterSpacing after every char except the last one\n // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!\n // so for convenience the above needs to be compared to width + 1 extra letterSpace\n // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!_\n // ________________________________________________\n // And then the final space is simply no appended to each line\n var wordWrapWidth = style.wordWrapWidth + letterSpacing;\n\n // break text into words, spaces and newline chars\n var tokens = TextMetrics.tokenize(text);\n\n for (var i = 0; i < tokens.length; i++)\n {\n // get the word, space or newlineChar\n var token = tokens[i];\n\n // if word is a new line\n if (TextMetrics.isNewline(token))\n {\n // keep the new line\n if (!collapseNewlines)\n {\n lines += TextMetrics.addLine(line);\n canPrependSpaces = !collapseSpaces;\n line = '';\n width = 0;\n continue;\n }\n\n // if we should collapse new lines\n // we simply convert it into a space\n token = ' ';\n }\n\n // if we should collapse repeated whitespaces\n if (collapseSpaces)\n {\n // check both this and the last tokens for spaces\n var currIsBreakingSpace = TextMetrics.isBreakingSpace(token);\n var lastIsBreakingSpace = TextMetrics.isBreakingSpace(line[line.length - 1]);\n\n if (currIsBreakingSpace && lastIsBreakingSpace)\n {\n continue;\n }\n }\n\n // get word width from cache if possible\n var tokenWidth = TextMetrics.getFromCache(token, letterSpacing, cache, context);\n\n // word is longer than desired bounds\n if (tokenWidth > wordWrapWidth)\n {\n // if we are not already at the beginning of a line\n if (line !== '')\n {\n // start newlines for overflow words\n lines += TextMetrics.addLine(line);\n line = '';\n width = 0;\n }\n\n // break large word over multiple lines\n if (TextMetrics.canBreakWords(token, style.breakWords))\n {\n // break word into characters\n var characters = token.split('');\n\n // loop the characters\n for (var j = 0; j < characters.length; j++)\n {\n var char = characters[j];\n\n var k = 1;\n // we are not at the end of the token\n\n while (characters[j + k])\n {\n var nextChar = characters[j + k];\n var lastChar = char[char.length - 1];\n\n // should not split chars\n if (!TextMetrics.canBreakChars(lastChar, nextChar, token, j, style.breakWords))\n {\n // combine chars & move forward one\n char += nextChar;\n }\n else\n {\n break;\n }\n\n k++;\n }\n\n j += char.length - 1;\n\n var characterWidth = TextMetrics.getFromCache(char, letterSpacing, cache, context);\n\n if (characterWidth + width > wordWrapWidth)\n {\n lines += TextMetrics.addLine(line);\n canPrependSpaces = false;\n line = '';\n width = 0;\n }\n\n line += char;\n width += characterWidth;\n }\n }\n\n // run word out of the bounds\n else\n {\n // if there are words in this line already\n // finish that line and start a new one\n if (line.length > 0)\n {\n lines += TextMetrics.addLine(line);\n line = '';\n width = 0;\n }\n\n var isLastToken = i === tokens.length - 1;\n\n // give it its own line if it's not the end\n lines += TextMetrics.addLine(token, !isLastToken);\n canPrependSpaces = false;\n line = '';\n width = 0;\n }\n }\n\n // word could fit\n else\n {\n // word won't fit because of existing words\n // start a new line\n if (tokenWidth + width > wordWrapWidth)\n {\n // if its a space we don't want it\n canPrependSpaces = false;\n\n // add a new line\n lines += TextMetrics.addLine(line);\n\n // start a new line\n line = '';\n width = 0;\n }\n\n // don't add spaces to the beginning of lines\n if (line.length > 0 || !TextMetrics.isBreakingSpace(token) || canPrependSpaces)\n {\n // add the word to the current line\n line += token;\n\n // update width counter\n width += tokenWidth;\n }\n }\n }\n\n lines += TextMetrics.addLine(line, false);\n\n return lines;\n};\n\n/**\n * Convienience function for logging each line added during the wordWrap\n * method\n *\n * @private\n * @param {string} line - The line of text to add\n * @param {boolean} newLine - Add new line character to end\n * @return {string} A formatted line\n */\nTextMetrics.addLine = function addLine (line, newLine)\n{\n if ( newLine === void 0 ) newLine = true;\n\n line = TextMetrics.trimRight(line);\n\n line = (newLine) ? (line + \"\\n\") : line;\n\n return line;\n};\n\n/**\n * Gets & sets the widths of calculated characters in a cache object\n *\n * @private\n * @param {string} key The key\n * @param {number} letterSpacing The letter spacing\n * @param {object} cache The cache\n * @param {CanvasRenderingContext2D} context The canvas context\n * @return {number} The from cache.\n */\nTextMetrics.getFromCache = function getFromCache (key, letterSpacing, cache, context)\n{\n var width = cache[key];\n\n if (width === undefined)\n {\n var spacing = ((key.length) * letterSpacing);\n\n width = context.measureText(key).width + spacing;\n cache[key] = width;\n }\n\n return width;\n};\n\n/**\n * Determines whether we should collapse breaking spaces\n *\n * @private\n * @param {string} whiteSpace The TextStyle property whiteSpace\n * @return {boolean} should collapse\n */\nTextMetrics.collapseSpaces = function collapseSpaces (whiteSpace)\n{\n return (whiteSpace === 'normal' || whiteSpace === 'pre-line');\n};\n\n/**\n * Determines whether we should collapse newLine chars\n *\n * @private\n * @param {string} whiteSpace The white space\n * @return {boolean} should collapse\n */\nTextMetrics.collapseNewlines = function collapseNewlines (whiteSpace)\n{\n return (whiteSpace === 'normal');\n};\n\n/**\n * trims breaking whitespaces from string\n *\n * @private\n * @param {string} text The text\n * @return {string} trimmed string\n */\nTextMetrics.trimRight = function trimRight (text)\n{\n if (typeof text !== 'string')\n {\n return '';\n }\n\n for (var i = text.length - 1; i >= 0; i--)\n {\n var char = text[i];\n\n if (!TextMetrics.isBreakingSpace(char))\n {\n break;\n }\n\n text = text.slice(0, -1);\n }\n\n return text;\n};\n\n/**\n * Determines if char is a newline.\n *\n * @private\n * @param {string} char The character\n * @return {boolean} True if newline, False otherwise.\n */\nTextMetrics.isNewline = function isNewline (char)\n{\n if (typeof char !== 'string')\n {\n return false;\n }\n\n return (TextMetrics._newlines.indexOf(char.charCodeAt(0)) >= 0);\n};\n\n/**\n * Determines if char is a breaking whitespace.\n *\n * @private\n * @param {string} char The character\n * @return {boolean} True if whitespace, False otherwise.\n */\nTextMetrics.isBreakingSpace = function isBreakingSpace (char)\n{\n if (typeof char !== 'string')\n {\n return false;\n }\n\n return (TextMetrics._breakingSpaces.indexOf(char.charCodeAt(0)) >= 0);\n};\n\n/**\n * Splits a string into words, breaking-spaces and newLine characters\n *\n * @private\n * @param {string} text The text\n * @return {string[]} A tokenized array\n */\nTextMetrics.tokenize = function tokenize (text)\n{\n var tokens = [];\n var token = '';\n\n if (typeof text !== 'string')\n {\n return tokens;\n }\n\n for (var i = 0; i < text.length; i++)\n {\n var char = text[i];\n\n if (TextMetrics.isBreakingSpace(char) || TextMetrics.isNewline(char))\n {\n if (token !== '')\n {\n tokens.push(token);\n token = '';\n }\n\n tokens.push(char);\n\n continue;\n }\n\n token += char;\n }\n\n if (token !== '')\n {\n tokens.push(token);\n }\n\n return tokens;\n};\n\n/**\n * This method exists to be easily overridden\n * It allows one to customise which words should break\n * Examples are if the token is CJK or numbers.\n * It must return a boolean.\n *\n * @private\n * @param {string} token The token\n * @param {boolean} breakWords The style attr break words\n * @return {boolean} whether to break word or not\n */\nTextMetrics.canBreakWords = function canBreakWords (token, breakWords)\n{\n return breakWords;\n};\n\n/**\n * This method exists to be easily overridden\n * It allows one to determine whether a pair of characters\n * should be broken by newlines\n * For example certain characters in CJK langs or numbers.\n * It must return a boolean.\n *\n * @private\n * @param {string} char The character\n * @param {string} nextChar The next character\n * @param {string} token The token/word the characters are from\n * @param {number} index The index in the token of the char\n * @param {boolean} breakWords The style attr break words\n * @return {boolean} whether to break word or not\n */\nTextMetrics.canBreakChars = function canBreakChars (char, nextChar, token, index, breakWords) // eslint-disable-line no-unused-vars\n{\n return true;\n};\n\n/**\n * Calculates the ascent, descent and fontSize of a given font-style\n *\n * @static\n * @param {string} font - String representing the style of the font\n * @return {PIXI.IFontMetrics} Font properties object\n */\nTextMetrics.measureFont = function measureFont (font)\n{\n // as this method is used for preparing assets, don't recalculate things if we don't need to\n if (TextMetrics._fonts[font])\n {\n return TextMetrics._fonts[font];\n }\n\n var properties = {};\n\n var canvas = TextMetrics._canvas;\n var context = TextMetrics._context;\n\n context.font = font;\n\n var metricsString = TextMetrics.METRICS_STRING + TextMetrics.BASELINE_SYMBOL;\n var width = Math.ceil(context.measureText(metricsString).width);\n var baseline = Math.ceil(context.measureText(TextMetrics.BASELINE_SYMBOL).width);\n var height = 2 * baseline;\n\n baseline = baseline * TextMetrics.BASELINE_MULTIPLIER | 0;\n\n canvas.width = width;\n canvas.height = height;\n\n context.fillStyle = '#f00';\n context.fillRect(0, 0, width, height);\n\n context.font = font;\n\n context.textBaseline = 'alphabetic';\n context.fillStyle = '#000';\n context.fillText(metricsString, 0, baseline);\n\n var imagedata = context.getImageData(0, 0, width, height).data;\n var pixels = imagedata.length;\n var line = width * 4;\n\n var i = 0;\n var idx = 0;\n var stop = false;\n\n // ascent. scan from top to bottom until we find a non red pixel\n for (i = 0; i < baseline; ++i)\n {\n for (var j = 0; j < line; j += 4)\n {\n if (imagedata[idx + j] !== 255)\n {\n stop = true;\n break;\n }\n }\n if (!stop)\n {\n idx += line;\n }\n else\n {\n break;\n }\n }\n\n properties.ascent = baseline - i;\n\n idx = pixels - line;\n stop = false;\n\n // descent. scan from bottom to top until we find a non red pixel\n for (i = height; i > baseline; --i)\n {\n for (var j$1 = 0; j$1 < line; j$1 += 4)\n {\n if (imagedata[idx + j$1] !== 255)\n {\n stop = true;\n break;\n }\n }\n\n if (!stop)\n {\n idx -= line;\n }\n else\n {\n break;\n }\n }\n\n properties.descent = i - baseline;\n properties.fontSize = properties.ascent + properties.descent;\n\n TextMetrics._fonts[font] = properties;\n\n return properties;\n};\n\n/**\n * Clear font metrics in metrics cache.\n *\n * @static\n * @param {string} [font] - font name. If font name not set then clear cache for all fonts.\n */\nTextMetrics.clearMetrics = function clearMetrics (font)\n{\n if ( font === void 0 ) font = '';\n\n if (font)\n {\n delete TextMetrics._fonts[font];\n }\n else\n {\n TextMetrics._fonts = {};\n }\n};\n\n/**\n * Internal return object for {@link PIXI.TextMetrics.measureFont `TextMetrics.measureFont`}.\n *\n * @typedef {object} FontMetrics\n * @property {number} ascent - The ascent distance\n * @property {number} descent - The descent distance\n * @property {number} fontSize - Font size from ascent to descent\n * @memberof PIXI.TextMetrics\n * @private\n */\n\nvar canvas = (function () {\n try\n {\n // OffscreenCanvas2D measureText can be up to 40% faster.\n var c = new OffscreenCanvas(0, 0);\n\n return c.getContext('2d') ? c : document.createElement('canvas');\n }\n catch (ex)\n {\n return document.createElement('canvas');\n }\n})();\n\ncanvas.width = canvas.height = 10;\n\n/**\n * Cached canvas element for measuring text\n *\n * @memberof PIXI.TextMetrics\n * @type {HTMLCanvasElement}\n * @private\n */\nTextMetrics._canvas = canvas;\n\n/**\n * Cache for context to use.\n *\n * @memberof PIXI.TextMetrics\n * @type {CanvasRenderingContext2D}\n * @private\n */\nTextMetrics._context = canvas.getContext('2d');\n\n/**\n * Cache of {@see PIXI.TextMetrics.FontMetrics} objects.\n *\n * @memberof PIXI.TextMetrics\n * @type {Object}\n * @private\n */\nTextMetrics._fonts = {};\n\n/**\n * String used for calculate font metrics.\n * These characters are all tall to help calculate the height required for text.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name METRICS_STRING\n * @type {string}\n * @default |ÉqÅ\n */\nTextMetrics.METRICS_STRING = '|ÉqÅ';\n\n/**\n * Baseline symbol for calculate font metrics.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name BASELINE_SYMBOL\n * @type {string}\n * @default M\n */\nTextMetrics.BASELINE_SYMBOL = 'M';\n\n/**\n * Baseline multiplier for calculate font metrics.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name BASELINE_MULTIPLIER\n * @type {number}\n * @default 1.4\n */\nTextMetrics.BASELINE_MULTIPLIER = 1.4;\n\n/**\n * Cache of new line chars.\n *\n * @memberof PIXI.TextMetrics\n * @type {number[]}\n * @private\n */\nTextMetrics._newlines = [\n 0x000A, // line feed\n 0x000D ];\n\n/**\n * Cache of breaking spaces.\n *\n * @memberof PIXI.TextMetrics\n * @type {number[]}\n * @private\n */\nTextMetrics._breakingSpaces = [\n 0x0009, // character tabulation\n 0x0020, // space\n 0x2000, // en quad\n 0x2001, // em quad\n 0x2002, // en space\n 0x2003, // em space\n 0x2004, // three-per-em space\n 0x2005, // four-per-em space\n 0x2006, // six-per-em space\n 0x2008, // punctuation space\n 0x2009, // thin space\n 0x200A, // hair space\n 0x205F, // medium mathematical space\n 0x3000 ];\n\n/**\n * A number, or a string containing a number.\n *\n * @memberof PIXI\n * @typedef IFontMetrics\n * @property {number} ascent - Font ascent\n * @property {number} descent - Font descent\n * @property {number} fontSize - Font size\n */\n\n/* eslint max-depth: [2, 8] */\n\nvar defaultDestroyOptions = {\n texture: true,\n children: false,\n baseTexture: true,\n};\n\n/**\n * A Text Object will create a line or multiple lines of text.\n *\n * The text is created using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API).\n *\n * The primary advantage of this class over BitmapText is that you have great control over the style of the next,\n * which you can change at runtime.\n *\n * The primary disadvantages is that each piece of text has it's own texture, which can use more memory.\n * When text changes, this texture has to be re-generated and re-uploaded to the GPU, taking up time.\n *\n * To split a line you can use '\\n' in your text string, or, on the `style` object,\n * change its `wordWrap` property to true and and give the `wordWrapWidth` property a value.\n *\n * A Text can be created directly from a string and a style object,\n * which can be generated [here](https://pixijs.io/pixi-text-style).\n *\n * ```js\n * let text = new PIXI.Text('This is a PixiJS text',{fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'});\n * ```\n *\n * @class\n * @extends PIXI.Sprite\n * @memberof PIXI\n */\nvar Text = /*@__PURE__*/(function (Sprite) {\n function Text(text, style, canvas)\n {\n canvas = canvas || document.createElement('canvas');\n\n canvas.width = 3;\n canvas.height = 3;\n\n var texture = Texture.from(canvas);\n\n texture.orig = new Rectangle();\n texture.trim = new Rectangle();\n\n Sprite.call(this, texture);\n\n /**\n * The canvas element that everything is drawn to\n *\n * @member {HTMLCanvasElement}\n */\n this.canvas = canvas;\n\n /**\n * The canvas 2d context that everything is drawn with\n * @member {CanvasRenderingContext2D}\n */\n this.context = this.canvas.getContext('2d');\n\n /**\n * The resolution / device pixel ratio of the canvas.\n * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually.\n * @member {number}\n * @default 1\n */\n this._resolution = settings.RESOLUTION;\n this._autoResolution = true;\n\n /**\n * Private tracker for the current text.\n *\n * @member {string}\n * @private\n */\n this._text = null;\n\n /**\n * Private tracker for the current style.\n *\n * @member {object}\n * @private\n */\n this._style = null;\n /**\n * Private listener to track style changes.\n *\n * @member {Function}\n * @private\n */\n this._styleListener = null;\n\n /**\n * Private tracker for the current font.\n *\n * @member {string}\n * @private\n */\n this._font = '';\n\n this.text = text;\n this.style = style;\n\n this.localStyleID = -1;\n }\n\n if ( Sprite ) Text.__proto__ = Sprite;\n Text.prototype = Object.create( Sprite && Sprite.prototype );\n Text.prototype.constructor = Text;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true },style: { configurable: true },text: { configurable: true },resolution: { configurable: true } };\n\n /**\n * Renders text and updates it when needed.\n *\n * @private\n * @param {boolean} respectDirty - Whether to abort updating the text if the Text isn't dirty and the function is called.\n */\n Text.prototype.updateText = function updateText (respectDirty)\n {\n var style = this._style;\n\n // check if style has changed..\n if (this.localStyleID !== style.styleID)\n {\n this.dirty = true;\n this.localStyleID = style.styleID;\n }\n\n if (!this.dirty && respectDirty)\n {\n return;\n }\n\n this._font = this._style.toFontString();\n\n var context = this.context;\n var measured = TextMetrics.measureText(this._text || ' ', this._style, this._style.wordWrap, this.canvas);\n var width = measured.width;\n var height = measured.height;\n var lines = measured.lines;\n var lineHeight = measured.lineHeight;\n var lineWidths = measured.lineWidths;\n var maxLineWidth = measured.maxLineWidth;\n var fontProperties = measured.fontProperties;\n\n this.canvas.width = Math.ceil((Math.max(1, width) + (style.padding * 2)) * this._resolution);\n this.canvas.height = Math.ceil((Math.max(1, height) + (style.padding * 2)) * this._resolution);\n\n context.scale(this._resolution, this._resolution);\n\n context.clearRect(0, 0, this.canvas.width, this.canvas.height);\n\n context.font = this._font;\n context.lineWidth = style.strokeThickness;\n context.textBaseline = style.textBaseline;\n context.lineJoin = style.lineJoin;\n context.miterLimit = style.miterLimit;\n\n var linePositionX;\n var linePositionY;\n\n // require 2 passes if a shadow; the first to draw the drop shadow, the second to draw the text\n var passesCount = style.dropShadow ? 2 : 1;\n\n // For v4, we drew text at the colours of the drop shadow underneath the normal text. This gave the correct zIndex,\n // but features such as alpha and shadowblur did not look right at all, since we were using actual text as a shadow.\n //\n // For v5.0.0, we moved over to just use the canvas API for drop shadows, which made them look much nicer and more\n // visually please, but now because the stroke is drawn and then the fill, drop shadows would appear on both the fill\n // and the stroke; and fill drop shadows would appear over the top of the stroke.\n //\n // For v5.1.1, the new route is to revert to v4 style of drawing text first to get the drop shadows underneath normal\n // text, but instead drawing text in the correct location, we'll draw it off screen (-paddingY), and then adjust the\n // drop shadow so only that appears on screen (+paddingY). Now we'll have the correct draw order of the shadow\n // beneath the text, whilst also having the proper text shadow styling.\n for (var i = 0; i < passesCount; ++i)\n {\n var isShadowPass = style.dropShadow && i === 0;\n var dsOffsetText = isShadowPass ? height * 2 : 0; // we only want the drop shadow, so put text way off-screen\n var dsOffsetShadow = dsOffsetText * this.resolution;\n\n if (isShadowPass)\n {\n // On Safari, text with gradient and drop shadows together do not position correctly\n // if the scale of the canvas is not 1: https://bugs.webkit.org/show_bug.cgi?id=197689\n // Therefore we'll set the styles to be a plain black whilst generating this drop shadow\n context.fillStyle = 'black';\n context.strokeStyle = 'black';\n\n var dropShadowColor = style.dropShadowColor;\n var rgb = hex2rgb(typeof dropShadowColor === 'number' ? dropShadowColor : string2hex(dropShadowColor));\n\n context.shadowColor = \"rgba(\" + (rgb[0] * 255) + \",\" + (rgb[1] * 255) + \",\" + (rgb[2] * 255) + \",\" + (style.dropShadowAlpha) + \")\";\n context.shadowBlur = style.dropShadowBlur;\n context.shadowOffsetX = Math.cos(style.dropShadowAngle) * style.dropShadowDistance;\n context.shadowOffsetY = (Math.sin(style.dropShadowAngle) * style.dropShadowDistance) + dsOffsetShadow;\n }\n else\n {\n // set canvas text styles\n context.fillStyle = this._generateFillStyle(style, lines);\n context.strokeStyle = style.stroke;\n\n context.shadowColor = 0;\n context.shadowBlur = 0;\n context.shadowOffsetX = 0;\n context.shadowOffsetY = 0;\n }\n\n // draw lines line by line\n for (var i$1 = 0; i$1 < lines.length; i$1++)\n {\n linePositionX = style.strokeThickness / 2;\n linePositionY = ((style.strokeThickness / 2) + (i$1 * lineHeight)) + fontProperties.ascent;\n\n if (style.align === 'right')\n {\n linePositionX += maxLineWidth - lineWidths[i$1];\n }\n else if (style.align === 'center')\n {\n linePositionX += (maxLineWidth - lineWidths[i$1]) / 2;\n }\n\n if (style.stroke && style.strokeThickness)\n {\n this.drawLetterSpacing(\n lines[i$1],\n linePositionX + style.padding,\n linePositionY + style.padding - dsOffsetText,\n true\n );\n }\n\n if (style.fill)\n {\n this.drawLetterSpacing(\n lines[i$1],\n linePositionX + style.padding,\n linePositionY + style.padding - dsOffsetText\n );\n }\n }\n }\n\n this.updateTexture();\n };\n\n /**\n * Render the text with letter-spacing.\n * @param {string} text - The text to draw\n * @param {number} x - Horizontal position to draw the text\n * @param {number} y - Vertical position to draw the text\n * @param {boolean} [isStroke=false] - Is this drawing for the outside stroke of the\n * text? If not, it's for the inside fill\n * @private\n */\n Text.prototype.drawLetterSpacing = function drawLetterSpacing (text, x, y, isStroke)\n {\n if ( isStroke === void 0 ) isStroke = false;\n\n var style = this._style;\n\n // letterSpacing of 0 means normal\n var letterSpacing = style.letterSpacing;\n\n if (letterSpacing === 0)\n {\n if (isStroke)\n {\n this.context.strokeText(text, x, y);\n }\n else\n {\n this.context.fillText(text, x, y);\n }\n\n return;\n }\n\n var currentPosition = x;\n\n // Using Array.from correctly splits characters whilst keeping emoji together.\n // This is not supported on IE as it requires ES6, so regular text splitting occurs.\n // This also doesn't account for emoji that are multiple emoji put together to make something else.\n // Handling all of this would require a big library itself.\n // https://medium.com/@giltayar/iterating-over-emoji-characters-the-es6-way-f06e4589516\n // https://github.com/orling/grapheme-splitter\n var stringArray = Array.from ? Array.from(text) : text.split('');\n var previousWidth = this.context.measureText(text).width;\n var currentWidth = 0;\n\n for (var i = 0; i < stringArray.length; ++i)\n {\n var currentChar = stringArray[i];\n\n if (isStroke)\n {\n this.context.strokeText(currentChar, currentPosition, y);\n }\n else\n {\n this.context.fillText(currentChar, currentPosition, y);\n }\n currentWidth = this.context.measureText(text.substring(i + 1)).width;\n currentPosition += previousWidth - currentWidth + letterSpacing;\n previousWidth = currentWidth;\n }\n };\n\n /**\n * Updates texture size based on canvas size\n *\n * @private\n */\n Text.prototype.updateTexture = function updateTexture ()\n {\n var canvas = this.canvas;\n\n if (this._style.trim)\n {\n var trimmed = trimCanvas(canvas);\n\n if (trimmed.data)\n {\n canvas.width = trimmed.width;\n canvas.height = trimmed.height;\n this.context.putImageData(trimmed.data, 0, 0);\n }\n }\n\n var texture = this._texture;\n var style = this._style;\n var padding = style.trim ? 0 : style.padding;\n var baseTexture = texture.baseTexture;\n\n texture.trim.width = texture._frame.width = Math.ceil(canvas.width / this._resolution);\n texture.trim.height = texture._frame.height = Math.ceil(canvas.height / this._resolution);\n texture.trim.x = -padding;\n texture.trim.y = -padding;\n\n texture.orig.width = texture._frame.width - (padding * 2);\n texture.orig.height = texture._frame.height - (padding * 2);\n\n // call sprite onTextureUpdate to update scale if _width or _height were set\n this._onTextureUpdate();\n\n baseTexture.setRealSize(canvas.width, canvas.height, this._resolution);\n\n this.dirty = false;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @private\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Text.prototype._render = function _render (renderer)\n {\n if (this._autoResolution && this._resolution !== renderer.resolution)\n {\n this._resolution = renderer.resolution;\n this.dirty = true;\n }\n\n this.updateText(true);\n\n Sprite.prototype._render.call(this, renderer);\n };\n\n /**\n * Gets the local bounds of the text object.\n *\n * @param {PIXI.Rectangle} rect - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n Text.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n this.updateText(true);\n\n return Sprite.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * calculates the bounds of the Text as a rectangle. The bounds calculation takes the worldTransform into account.\n * @protected\n */\n Text.prototype._calculateBounds = function _calculateBounds ()\n {\n this.updateText(true);\n this.calculateVertices();\n // if we have already done this on THIS frame.\n this._bounds.addQuad(this.vertexData);\n };\n\n /**\n * Method to be called upon a TextStyle change.\n * @private\n */\n Text.prototype._onStyleChange = function _onStyleChange ()\n {\n this.dirty = true;\n };\n\n /**\n * Generates the fill style. Can automatically generate a gradient based on the fill style being an array\n *\n * @private\n * @param {object} style - The style.\n * @param {string[]} lines - The lines of text.\n * @return {string|number|CanvasGradient} The fill style\n */\n Text.prototype._generateFillStyle = function _generateFillStyle (style, lines)\n {\n if (!Array.isArray(style.fill))\n {\n return style.fill;\n }\n else if (style.fill.length === 1)\n {\n return style.fill[0];\n }\n\n // the gradient will be evenly spaced out according to how large the array is.\n // ['#FF0000', '#00FF00', '#0000FF'] would created stops at 0.25, 0.5 and 0.75\n var gradient;\n var totalIterations;\n var currentIteration;\n var stop;\n\n var width = Math.ceil(this.canvas.width / this._resolution);\n var height = Math.ceil(this.canvas.height / this._resolution);\n\n // make a copy of the style settings, so we can manipulate them later\n var fill = style.fill.slice();\n var fillGradientStops = style.fillGradientStops.slice();\n\n // wanting to evenly distribute the fills. So an array of 4 colours should give fills of 0.25, 0.5 and 0.75\n if (!fillGradientStops.length)\n {\n var lengthPlus1 = fill.length + 1;\n\n for (var i = 1; i < lengthPlus1; ++i)\n {\n fillGradientStops.push(i / lengthPlus1);\n }\n }\n\n // stop the bleeding of the last gradient on the line above to the top gradient of the this line\n // by hard defining the first gradient colour at point 0, and last gradient colour at point 1\n fill.unshift(style.fill[0]);\n fillGradientStops.unshift(0);\n\n fill.push(style.fill[style.fill.length - 1]);\n fillGradientStops.push(1);\n\n if (style.fillGradientType === TEXT_GRADIENT.LINEAR_VERTICAL)\n {\n // start the gradient at the top center of the canvas, and end at the bottom middle of the canvas\n gradient = this.context.createLinearGradient(width / 2, 0, width / 2, height);\n\n // we need to repeat the gradient so that each individual line of text has the same vertical gradient effect\n // ['#FF0000', '#00FF00', '#0000FF'] over 2 lines would create stops at 0.125, 0.25, 0.375, 0.625, 0.75, 0.875\n totalIterations = (fill.length + 1) * lines.length;\n currentIteration = 0;\n for (var i$1 = 0; i$1 < lines.length; i$1++)\n {\n currentIteration += 1;\n for (var j = 0; j < fill.length; j++)\n {\n if (typeof fillGradientStops[j] === 'number')\n {\n stop = (fillGradientStops[j] / lines.length) + (i$1 / lines.length);\n }\n else\n {\n stop = currentIteration / totalIterations;\n }\n gradient.addColorStop(stop, fill[j]);\n currentIteration++;\n }\n }\n }\n else\n {\n // start the gradient at the center left of the canvas, and end at the center right of the canvas\n gradient = this.context.createLinearGradient(0, height / 2, width, height / 2);\n\n // can just evenly space out the gradients in this case, as multiple lines makes no difference\n // to an even left to right gradient\n totalIterations = fill.length + 1;\n currentIteration = 1;\n\n for (var i$2 = 0; i$2 < fill.length; i$2++)\n {\n if (typeof fillGradientStops[i$2] === 'number')\n {\n stop = fillGradientStops[i$2];\n }\n else\n {\n stop = currentIteration / totalIterations;\n }\n gradient.addColorStop(stop, fill[i$2]);\n currentIteration++;\n }\n }\n\n return gradient;\n };\n\n /**\n * Destroys this text object.\n * Note* Unlike a Sprite, a Text object will automatically destroy its baseTexture and texture as\n * the majority of the time the texture will not be shared with any other Sprites.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their\n * destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=true] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=true] - Should it destroy the base texture of the sprite as well\n */\n Text.prototype.destroy = function destroy (options)\n {\n if (typeof options === 'boolean')\n {\n options = { children: options };\n }\n\n options = Object.assign({}, defaultDestroyOptions, options);\n\n Sprite.prototype.destroy.call(this, options);\n\n // make sure to reset the the context and canvas.. dont want this hanging around in memory!\n this.context = null;\n this.canvas = null;\n\n this._style = null;\n };\n\n /**\n * The width of the Text, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n this.updateText(true);\n\n return Math.abs(this.scale.x) * this._texture.orig.width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.updateText(true);\n\n var s = sign(this.scale.x) || 1;\n\n this.scale.x = s * value / this._texture.orig.width;\n this._width = value;\n };\n\n /**\n * The height of the Text, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n this.updateText(true);\n\n return Math.abs(this.scale.y) * this._texture.orig.height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.updateText(true);\n\n var s = sign(this.scale.y) || 1;\n\n this.scale.y = s * value / this._texture.orig.height;\n this._height = value;\n };\n\n /**\n * Set the style of the text. Set up an event listener to listen for changes on the style\n * object and mark the text as dirty.\n *\n * @member {object|PIXI.TextStyle}\n */\n prototypeAccessors.style.get = function ()\n {\n return this._style;\n };\n\n prototypeAccessors.style.set = function (style) // eslint-disable-line require-jsdoc\n {\n style = style || {};\n\n if (style instanceof TextStyle)\n {\n this._style = style;\n }\n else\n {\n this._style = new TextStyle(style);\n }\n\n this.localStyleID = -1;\n this.dirty = true;\n };\n\n /**\n * Set the copy for the text object. To split a line you can use '\\n'.\n *\n * @member {string}\n */\n prototypeAccessors.text.get = function ()\n {\n return this._text;\n };\n\n prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc\n {\n text = String(text === null || text === undefined ? '' : text);\n\n if (this._text === text)\n {\n return;\n }\n this._text = text;\n this.dirty = true;\n };\n\n /**\n * The resolution / device pixel ratio of the canvas.\n * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually.\n * @member {number}\n * @default 1\n */\n prototypeAccessors.resolution.get = function ()\n {\n return this._resolution;\n };\n\n prototypeAccessors.resolution.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._autoResolution = false;\n\n if (this._resolution === value)\n {\n return;\n }\n\n this._resolution = value;\n this.dirty = true;\n };\n\n Object.defineProperties( Text.prototype, prototypeAccessors );\n\n return Text;\n}(Sprite));\n\nexport { TEXT_GRADIENT, Text, TextMetrics, TextStyle };\n//# sourceMappingURL=text.es.js.map\n","/*!\n * @pixi/prepare - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/prepare is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nimport { Texture, BaseTexture } from '@pixi/core';\nimport { Graphics } from '@pixi/graphics';\nimport { Ticker, UPDATE_PRIORITY } from '@pixi/ticker';\nimport { Container } from '@pixi/display';\nimport { Text, TextStyle, TextMetrics } from '@pixi/text';\n\n/**\n * Default number of uploads per frame using prepare plugin.\n *\n * @static\n * @memberof PIXI.settings\n * @name UPLOADS_PER_FRAME\n * @type {number}\n * @default 4\n */\nsettings.UPLOADS_PER_FRAME = 4;\n\n/**\n * CountLimiter limits the number of items handled by a {@link PIXI.prepare.BasePrepare} to a specified\n * number of items per frame.\n *\n * @class\n * @memberof PIXI.prepare\n */\nvar CountLimiter = function CountLimiter(maxItemsPerFrame)\n{\n /**\n * The maximum number of items that can be prepared each frame.\n * @type {number}\n * @private\n */\n this.maxItemsPerFrame = maxItemsPerFrame;\n /**\n * The number of items that can be prepared in the current frame.\n * @type {number}\n * @private\n */\n this.itemsLeft = 0;\n};\n\n/**\n * Resets any counting properties to start fresh on a new frame.\n */\nCountLimiter.prototype.beginFrame = function beginFrame ()\n{\n this.itemsLeft = this.maxItemsPerFrame;\n};\n\n/**\n * Checks to see if another item can be uploaded. This should only be called once per item.\n * @return {boolean} If the item is allowed to be uploaded.\n */\nCountLimiter.prototype.allowedToUpload = function allowedToUpload ()\n{\n return this.itemsLeft-- > 0;\n};\n\n/**\n * The prepare manager provides functionality to upload content to the GPU.\n *\n * BasePrepare handles basic queuing functionality and is extended by\n * {@link PIXI.prepare.Prepare} and {@link PIXI.prepare.CanvasPrepare}\n * to provide preparation capabilities specific to their respective renderers.\n *\n * @example\n * // Create a sprite\n * const sprite = PIXI.Sprite.from('something.png');\n *\n * // Load object into GPU\n * app.renderer.plugins.prepare.upload(sprite, () => {\n *\n * //Texture(s) has been uploaded to GPU\n * app.stage.addChild(sprite);\n *\n * })\n *\n * @abstract\n * @class\n * @memberof PIXI.prepare\n */\nvar BasePrepare = function BasePrepare(renderer)\n{\n var this$1 = this;\n\n /**\n * The limiter to be used to control how quickly items are prepared.\n * @type {PIXI.prepare.CountLimiter|PIXI.prepare.TimeLimiter}\n */\n this.limiter = new CountLimiter(settings.UPLOADS_PER_FRAME);\n\n /**\n * Reference to the renderer.\n * @type {PIXI.AbstractRenderer}\n * @protected\n */\n this.renderer = renderer;\n\n /**\n * The only real difference between CanvasPrepare and Prepare is what they pass\n * to upload hooks. That different parameter is stored here.\n * @type {PIXI.prepare.CanvasPrepare|PIXI.Renderer}\n * @protected\n */\n this.uploadHookHelper = null;\n\n /**\n * Collection of items to uploads at once.\n * @type {Array<*>}\n * @private\n */\n this.queue = [];\n\n /**\n * Collection of additional hooks for finding assets.\n * @type {Array}\n * @private\n */\n this.addHooks = [];\n\n /**\n * Collection of additional hooks for processing assets.\n * @type {Array}\n * @private\n */\n this.uploadHooks = [];\n\n /**\n * Callback to call after completed.\n * @type {Array}\n * @private\n */\n this.completes = [];\n\n /**\n * If prepare is ticking (running).\n * @type {boolean}\n * @private\n */\n this.ticking = false;\n\n /**\n * 'bound' call for prepareItems().\n * @type {Function}\n * @private\n */\n this.delayedTick = function () {\n // unlikely, but in case we were destroyed between tick() and delayedTick()\n if (!this$1.queue)\n {\n return;\n }\n this$1.prepareItems();\n };\n\n // hooks to find the correct texture\n this.registerFindHook(findText);\n this.registerFindHook(findTextStyle);\n this.registerFindHook(findMultipleBaseTextures);\n this.registerFindHook(findBaseTexture);\n this.registerFindHook(findTexture);\n\n // upload hooks\n this.registerUploadHook(drawText);\n this.registerUploadHook(calculateTextStyle);\n};\n\n/**\n * Upload all the textures and graphics to the GPU.\n *\n * @param {Function|PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text} item -\n * Either the container or display object to search for items to upload, the items to upload themselves,\n * or the callback function, if items have been added using `prepare.add`.\n * @param {Function} [done] - Optional callback when all queued uploads have completed\n */\nBasePrepare.prototype.upload = function upload (item, done)\n{\n if (typeof item === 'function')\n {\n done = item;\n item = null;\n }\n\n // If a display object, search for items\n // that we could upload\n if (item)\n {\n this.add(item);\n }\n\n // Get the items for upload from the display\n if (this.queue.length)\n {\n if (done)\n {\n this.completes.push(done);\n }\n\n if (!this.ticking)\n {\n this.ticking = true;\n Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY);\n }\n }\n else if (done)\n {\n done();\n }\n};\n\n/**\n * Handle tick update\n *\n * @private\n */\nBasePrepare.prototype.tick = function tick ()\n{\n setTimeout(this.delayedTick, 0);\n};\n\n/**\n * Actually prepare items. This is handled outside of the tick because it will take a while\n * and we do NOT want to block the current animation frame from rendering.\n *\n * @private\n */\nBasePrepare.prototype.prepareItems = function prepareItems ()\n{\n this.limiter.beginFrame();\n // Upload the graphics\n while (this.queue.length && this.limiter.allowedToUpload())\n {\n var item = this.queue[0];\n var uploaded = false;\n\n if (item && !item._destroyed)\n {\n for (var i = 0, len = this.uploadHooks.length; i < len; i++)\n {\n if (this.uploadHooks[i](this.uploadHookHelper, item))\n {\n this.queue.shift();\n uploaded = true;\n break;\n }\n }\n }\n\n if (!uploaded)\n {\n this.queue.shift();\n }\n }\n\n // We're finished\n if (!this.queue.length)\n {\n this.ticking = false;\n\n var completes = this.completes.slice(0);\n\n this.completes.length = 0;\n\n for (var i$1 = 0, len$1 = completes.length; i$1 < len$1; i$1++)\n {\n completes[i$1]();\n }\n }\n else\n {\n // if we are not finished, on the next rAF do this again\n Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY);\n }\n};\n\n/**\n * Adds hooks for finding items.\n *\n * @param {Function} addHook - Function call that takes two parameters: `item:*, queue:Array`\n * function must return `true` if it was able to add item to the queue.\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.registerFindHook = function registerFindHook (addHook)\n{\n if (addHook)\n {\n this.addHooks.push(addHook);\n }\n\n return this;\n};\n\n/**\n * Adds hooks for uploading items.\n *\n * @param {Function} uploadHook - Function call that takes two parameters: `prepare:CanvasPrepare, item:*` and\n * function must return `true` if it was able to handle upload of item.\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.registerUploadHook = function registerUploadHook (uploadHook)\n{\n if (uploadHook)\n {\n this.uploadHooks.push(uploadHook);\n }\n\n return this;\n};\n\n/**\n * Manually add an item to the uploading queue.\n *\n * @param {PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text|*} item - Object to\n * add to the queue\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.add = function add (item)\n{\n // Add additional hooks for finding elements on special\n // types of objects that\n for (var i = 0, len = this.addHooks.length; i < len; i++)\n {\n if (this.addHooks[i](item, this.queue))\n {\n break;\n }\n }\n\n // Get children recursively\n if (item instanceof Container)\n {\n for (var i$1 = item.children.length - 1; i$1 >= 0; i$1--)\n {\n this.add(item.children[i$1]);\n }\n }\n\n return this;\n};\n\n/**\n * Destroys the plugin, don't use after this.\n *\n */\nBasePrepare.prototype.destroy = function destroy ()\n{\n if (this.ticking)\n {\n Ticker.system.remove(this.tick, this);\n }\n this.ticking = false;\n this.addHooks = null;\n this.uploadHooks = null;\n this.renderer = null;\n this.completes = null;\n this.queue = null;\n this.limiter = null;\n this.uploadHookHelper = null;\n};\n\n/**\n * Built-in hook to find multiple textures from objects like AnimatedSprites.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findMultipleBaseTextures(item, queue)\n{\n var result = false;\n\n // Objects with multiple textures\n if (item && item._textures && item._textures.length)\n {\n for (var i = 0; i < item._textures.length; i++)\n {\n if (item._textures[i] instanceof Texture)\n {\n var baseTexture = item._textures[i].baseTexture;\n\n if (queue.indexOf(baseTexture) === -1)\n {\n queue.push(baseTexture);\n result = true;\n }\n }\n }\n }\n\n return result;\n}\n\n/**\n * Built-in hook to find BaseTextures from Sprites.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findBaseTexture(item, queue)\n{\n // Objects with textures, like Sprites/Text\n if (item instanceof BaseTexture)\n {\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find textures from objects.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findTexture(item, queue)\n{\n if (item._texture && item._texture instanceof Texture)\n {\n var texture = item._texture.baseTexture;\n\n if (queue.indexOf(texture) === -1)\n {\n queue.push(texture);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to draw PIXI.Text to its texture.\n *\n * @private\n * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction drawText(helper, item)\n{\n if (item instanceof Text)\n {\n // updating text will return early if it is not dirty\n item.updateText(true);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to calculate a text style for a PIXI.Text object.\n *\n * @private\n * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction calculateTextStyle(helper, item)\n{\n if (item instanceof TextStyle)\n {\n var font = item.toFontString();\n\n TextMetrics.measureFont(font);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find Text objects.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Text object was found.\n */\nfunction findText(item, queue)\n{\n if (item instanceof Text)\n {\n // push the text style to prepare it - this can be really expensive\n if (queue.indexOf(item.style) === -1)\n {\n queue.push(item.style);\n }\n // also push the text object so that we can render it (to canvas/texture) if needed\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n // also push the Text's texture for upload to GPU\n var texture = item._texture.baseTexture;\n\n if (queue.indexOf(texture) === -1)\n {\n queue.push(texture);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find TextStyle objects.\n *\n * @private\n * @param {PIXI.TextStyle} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.TextStyle object was found.\n */\nfunction findTextStyle(item, queue)\n{\n if (item instanceof TextStyle)\n {\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * The prepare manager provides functionality to upload content to the GPU.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.prepare`\n *\n * @class\n * @extends PIXI.prepare.BasePrepare\n * @memberof PIXI.prepare\n */\nvar Prepare = /*@__PURE__*/(function (BasePrepare) {\n function Prepare(renderer)\n {\n BasePrepare.call(this, renderer);\n\n this.uploadHookHelper = this.renderer;\n\n // Add textures and graphics to upload\n this.registerFindHook(findGraphics);\n this.registerUploadHook(uploadBaseTextures);\n this.registerUploadHook(uploadGraphics);\n }\n\n if ( BasePrepare ) Prepare.__proto__ = BasePrepare;\n Prepare.prototype = Object.create( BasePrepare && BasePrepare.prototype );\n Prepare.prototype.constructor = Prepare;\n\n return Prepare;\n}(BasePrepare));\n/**\n * Built-in hook to upload PIXI.Texture objects to the GPU.\n *\n * @private\n * @param {PIXI.Renderer} renderer - instance of the webgl renderer\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction uploadBaseTextures(renderer, item)\n{\n if (item instanceof BaseTexture)\n {\n // if the texture already has a GL texture, then the texture has been prepared or rendered\n // before now. If the texture changed, then the changer should be calling texture.update() which\n // reuploads the texture without need for preparing it again\n if (!item._glTextures[renderer.CONTEXT_UID])\n {\n renderer.texture.bind(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to upload PIXI.Graphics to the GPU.\n *\n * @private\n * @param {PIXI.Renderer} renderer - instance of the webgl renderer\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction uploadGraphics(renderer, item)\n{\n if (item instanceof Graphics)\n {\n // if the item is not dirty and already has webgl data, then it got prepared or rendered\n // before now and we shouldn't waste time updating it again\n if (item.dirty || item.clearDirty || !item._webGL[renderer.plugins.graphics.CONTEXT_UID])\n {\n renderer.plugins.graphics.updateGraphics(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find graphics.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Graphics object was found.\n */\nfunction findGraphics(item, queue)\n{\n if (item instanceof Graphics)\n {\n queue.push(item);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * TimeLimiter limits the number of items handled by a {@link PIXI.BasePrepare} to a specified\n * number of milliseconds per frame.\n *\n * @class\n * @memberof PIXI.prepare\n */\nvar TimeLimiter = function TimeLimiter(maxMilliseconds)\n{\n /**\n * The maximum milliseconds that can be spent preparing items each frame.\n * @type {number}\n * @private\n */\n this.maxMilliseconds = maxMilliseconds;\n /**\n * The start time of the current frame.\n * @type {number}\n * @private\n */\n this.frameStart = 0;\n};\n\n/**\n * Resets any counting properties to start fresh on a new frame.\n */\nTimeLimiter.prototype.beginFrame = function beginFrame ()\n{\n this.frameStart = Date.now();\n};\n\n/**\n * Checks to see if another item can be uploaded. This should only be called once per item.\n * @return {boolean} If the item is allowed to be uploaded.\n */\nTimeLimiter.prototype.allowedToUpload = function allowedToUpload ()\n{\n return Date.now() - this.frameStart < this.maxMilliseconds;\n};\n\n/**\n * The prepare namespace provides renderer-specific plugins for pre-rendering DisplayObjects. These plugins are useful for\n * asynchronously preparing and uploading to the GPU assets, textures, graphics waiting to be displayed.\n *\n * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @example\n * // Create a new application\n * const app = new PIXI.Application();\n * document.body.appendChild(app.view);\n *\n * // Don't start rendering right away\n * app.stop();\n *\n * // create a display object\n * const rect = new PIXI.Graphics()\n * .beginFill(0x00ff00)\n * .drawRect(40, 40, 200, 200);\n *\n * // Add to the stage\n * app.stage.addChild(rect);\n *\n * // Don't start rendering until the graphic is uploaded to the GPU\n * app.renderer.plugins.prepare.upload(app.stage, () => {\n * app.start();\n * });\n * @namespace PIXI.prepare\n */\n\nexport { BasePrepare, CountLimiter, Prepare, TimeLimiter };\n//# sourceMappingURL=prepare.es.js.map\n","/*!\n * @pixi/app - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/app is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Container } from '@pixi/display';\nimport { autoDetectRenderer } from '@pixi/core';\n\n/**\n * Convenience class to create a new PIXI application.\n *\n * This class automatically creates the renderer, ticker and root container.\n *\n * @example\n * // Create the application\n * const app = new PIXI.Application();\n *\n * // Add the view to the DOM\n * document.body.appendChild(app.view);\n *\n * // ex, add display objects\n * app.stage.addChild(PIXI.Sprite.from('something.png'));\n *\n * @class\n * @memberof PIXI\n */\nvar Application = function Application(options)\n{\n var this$1 = this;\n\n // The default options\n options = Object.assign({\n forceCanvas: false,\n }, options);\n\n /**\n * WebGL renderer if available, otherwise CanvasRenderer.\n * @member {PIXI.Renderer|PIXI.CanvasRenderer}\n */\n this.renderer = autoDetectRenderer(options);\n\n /**\n * The root display container that's rendered.\n * @member {PIXI.Container}\n */\n this.stage = new Container();\n\n // install plugins here\n Application._plugins.forEach(function (plugin) {\n plugin.init.call(this$1, options);\n });\n};\n\nvar prototypeAccessors = { view: { configurable: true },screen: { configurable: true } };\n\n/**\n * Register a middleware plugin for the application\n * @static\n * @param {PIXI.Application.Plugin} plugin - Plugin being installed\n */\nApplication.registerPlugin = function registerPlugin (plugin)\n{\n Application._plugins.push(plugin);\n};\n\n/**\n * Render the current stage.\n */\nApplication.prototype.render = function render ()\n{\n this.renderer.render(this.stage);\n};\n\n/**\n * Reference to the renderer's canvas element.\n * @member {HTMLCanvasElement}\n * @readonly\n */\nprototypeAccessors.view.get = function ()\n{\n return this.renderer.view;\n};\n\n/**\n * Reference to the renderer's screen rectangle. Its safe to use as `filterArea` or `hitArea` for the whole screen.\n * @member {PIXI.Rectangle}\n * @readonly\n */\nprototypeAccessors.screen.get = function ()\n{\n return this.renderer.screen;\n};\n\n/**\n * Destroy and don't use after this.\n * @param {Boolean} [removeView=false] Automatically remove canvas from DOM.\n * @param {object|boolean} [stageOptions] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [stageOptions.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'stageOptions' will be passed on to those calls.\n * @param {boolean} [stageOptions.texture=false] - Only used for child Sprites if stageOptions.children is set\n * to true. Should it destroy the texture of the child sprite\n * @param {boolean} [stageOptions.baseTexture=false] - Only used for child Sprites if stageOptions.children is set\n * to true. Should it destroy the base texture of the child sprite\n */\nApplication.prototype.destroy = function destroy (removeView, stageOptions)\n{\n var this$1 = this;\n\n // Destroy plugins in the opposite order\n // which they were constructed\n var plugins = Application._plugins.slice(0);\n\n plugins.reverse();\n plugins.forEach(function (plugin) {\n plugin.destroy.call(this$1);\n });\n\n this.stage.destroy(stageOptions);\n this.stage = null;\n\n this.renderer.destroy(removeView);\n this.renderer = null;\n\n this._options = null;\n};\n\nObject.defineProperties( Application.prototype, prototypeAccessors );\n\n/**\n * @memberof PIXI.Application\n * @typedef {object} Plugin\n * @property {function} init - Called when Application is constructed, scoped to Application instance.\n * Passes in `options` as the only argument, which are Application constructor options.\n * @property {function} destroy - Called when destroying Application, scoped to Application instance\n */\n\n/**\n * Collection of installed plugins.\n * @static\n * @private\n * @type {PIXI.Application.Plugin[]}\n */\nApplication._plugins = [];\n\n/**\n * Middleware for for Application's resize functionality\n * @private\n * @class\n */\nvar ResizePlugin = function ResizePlugin () {};\n\nResizePlugin.init = function init (options)\n{\n var this$1 = this;\n\n /**\n * The element or window to resize the application to.\n * @type {Window|HTMLElement}\n * @name resizeTo\n * @memberof PIXI.Application#\n */\n Object.defineProperty(this, 'resizeTo',\n {\n set: function set(dom)\n {\n window.removeEventListener('resize', this.resize);\n this._resizeTo = dom;\n if (dom)\n {\n window.addEventListener('resize', this.resize);\n this.resize();\n }\n },\n get: function get()\n {\n return this._resizeTo;\n },\n });\n\n /**\n * If `resizeTo` is set, calling this function\n * will resize to the width and height of that element.\n * @method PIXI.Application#resize\n */\n this.resize = function () {\n if (this$1._resizeTo)\n {\n // Resize to the window\n if (this$1._resizeTo === window)\n {\n this$1.renderer.resize(\n window.innerWidth,\n window.innerHeight\n );\n }\n // Resize to other HTML entities\n else\n {\n this$1.renderer.resize(\n this$1._resizeTo.clientWidth,\n this$1._resizeTo.clientHeight\n );\n }\n }\n };\n\n // On resize\n this._resizeTo = null;\n this.resizeTo = options.resizeTo || null;\n};\n\n/**\n * Clean up the ticker, scoped to application\n * @static\n * @private\n */\nResizePlugin.destroy = function destroy ()\n{\n this.resizeTo = null;\n this.resize = null;\n};\n\nApplication.registerPlugin(ResizePlugin);\n\nexport { Application };\n//# sourceMappingURL=app.es.js.map\n","'use strict'\n\nmodule.exports = function parseURI (str, opts) {\n opts = opts || {}\n\n var o = {\n key: ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'],\n q: {\n name: 'queryKey',\n parser: /(?:^|&)([^&=]*)=?([^&]*)/g\n },\n parser: {\n strict: /^(?:([^:\\/?#]+):)?(?:\\/\\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\\/?#]*)(?::(\\d*))?))?((((?:[^?#\\/]*\\/)*)([^?#]*))(?:\\?([^#]*))?(?:#(.*))?)/,\n loose: /^(?:(?![^:@]+:[^:@\\/]*@)([^:\\/?#.]+):)?(?:\\/\\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\\/?#]*)(?::(\\d*))?)(((\\/(?:[^?#](?![^?#\\/]*\\.[^?#\\/.]+(?:[?#]|$)))*\\/?)?([^?#\\/]*))(?:\\?([^#]*))?(?:#(.*))?)/\n }\n }\n\n var m = o.parser[opts.strictMode ? 'strict' : 'loose'].exec(str)\n var uri = {}\n var i = 14\n\n while (i--) uri[o.key[i]] = m[i] || ''\n\n uri[o.q.name] = {}\n uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) {\n if ($1) uri[o.q.name][$1] = $2\n })\n\n return uri\n}\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\n\nvar _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }\n\nvar MiniSignalBinding = (function () {\n function MiniSignalBinding(fn, once, thisArg) {\n if (once === undefined) once = false;\n\n _classCallCheck(this, MiniSignalBinding);\n\n this._fn = fn;\n this._once = once;\n this._thisArg = thisArg;\n this._next = this._prev = this._owner = null;\n }\n\n _createClass(MiniSignalBinding, [{\n key: 'detach',\n value: function detach() {\n if (this._owner === null) return false;\n this._owner.detach(this);\n return true;\n }\n }]);\n\n return MiniSignalBinding;\n})();\n\nfunction _addMiniSignalBinding(self, node) {\n if (!self._head) {\n self._head = node;\n self._tail = node;\n } else {\n self._tail._next = node;\n node._prev = self._tail;\n self._tail = node;\n }\n\n node._owner = self;\n\n return node;\n}\n\nvar MiniSignal = (function () {\n function MiniSignal() {\n _classCallCheck(this, MiniSignal);\n\n this._head = this._tail = undefined;\n }\n\n _createClass(MiniSignal, [{\n key: 'handlers',\n value: function handlers() {\n var exists = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0];\n\n var node = this._head;\n\n if (exists) return !!node;\n\n var ee = [];\n\n while (node) {\n ee.push(node);\n node = node._next;\n }\n\n return ee;\n }\n }, {\n key: 'has',\n value: function has(node) {\n if (!(node instanceof MiniSignalBinding)) {\n throw new Error('MiniSignal#has(): First arg must be a MiniSignalBinding object.');\n }\n\n return node._owner === this;\n }\n }, {\n key: 'dispatch',\n value: function dispatch() {\n var node = this._head;\n\n if (!node) return false;\n\n while (node) {\n if (node._once) this.detach(node);\n node._fn.apply(node._thisArg, arguments);\n node = node._next;\n }\n\n return true;\n }\n }, {\n key: 'add',\n value: function add(fn) {\n var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];\n\n if (typeof fn !== 'function') {\n throw new Error('MiniSignal#add(): First arg must be a Function.');\n }\n return _addMiniSignalBinding(this, new MiniSignalBinding(fn, false, thisArg));\n }\n }, {\n key: 'once',\n value: function once(fn) {\n var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];\n\n if (typeof fn !== 'function') {\n throw new Error('MiniSignal#once(): First arg must be a Function.');\n }\n return _addMiniSignalBinding(this, new MiniSignalBinding(fn, true, thisArg));\n }\n }, {\n key: 'detach',\n value: function detach(node) {\n if (!(node instanceof MiniSignalBinding)) {\n throw new Error('MiniSignal#detach(): First arg must be a MiniSignalBinding object.');\n }\n if (node._owner !== this) return this;\n\n if (node._prev) node._prev._next = node._next;\n if (node._next) node._next._prev = node._prev;\n\n if (node === this._head) {\n this._head = node._next;\n if (node._next === null) {\n this._tail = null;\n }\n } else if (node === this._tail) {\n this._tail = node._prev;\n this._tail._next = null;\n }\n\n node._owner = null;\n return this;\n }\n }, {\n key: 'detachAll',\n value: function detachAll() {\n var node = this._head;\n if (!node) return this;\n\n this._head = this._tail = null;\n\n while (node) {\n node._owner = null;\n node = node._next;\n }\n return this;\n }\n }]);\n\n return MiniSignal;\n})();\n\nMiniSignal.MiniSignalBinding = MiniSignalBinding;\n\nexports['default'] = MiniSignal;\nmodule.exports = exports['default'];\n","/*!\n * resource-loader - v3.0.1\n * https://github.com/pixijs/pixi-sound\n * Compiled Tue, 02 Jul 2019 14:06:18 UTC\n *\n * resource-loader is licensed under the MIT license.\n * http://www.opensource.org/licenses/mit-license\n */\nimport parseUri from 'parse-uri';\nimport Signal from 'mini-signals';\n\n/**\n * Smaller version of the async library constructs.\n *\n * @namespace async\n */\n\n/**\n * Noop function\n *\n * @ignore\n * @function\n * @memberof async\n */\nfunction _noop() {}\n/* empty */\n\n/**\n * Iterates an array in series.\n *\n * @memberof async\n * @function eachSeries\n * @param {Array.<*>} array - Array to iterate.\n * @param {function} iterator - Function to call for each element.\n * @param {function} callback - Function to call when done, or on error.\n * @param {boolean} [deferNext=false] - Break synchronous each loop by calling next with a setTimeout of 1.\n */\n\n\nfunction eachSeries(array, iterator, callback, deferNext) {\n var i = 0;\n var len = array.length;\n\n (function next(err) {\n if (err || i === len) {\n if (callback) {\n callback(err);\n }\n\n return;\n }\n\n if (deferNext) {\n setTimeout(function () {\n iterator(array[i++], next);\n }, 1);\n } else {\n iterator(array[i++], next);\n }\n })();\n}\n/**\n * Ensures a function is only called once.\n *\n * @ignore\n * @memberof async\n * @param {function} fn - The function to wrap.\n * @return {function} The wrapping function.\n */\n\nfunction onlyOnce(fn) {\n return function onceWrapper() {\n if (fn === null) {\n throw new Error('Callback was already called.');\n }\n\n var callFn = fn;\n fn = null;\n callFn.apply(this, arguments);\n };\n}\n/**\n * Async queue implementation,\n *\n * @memberof async\n * @function queue\n * @param {function} worker - The worker function to call for each task.\n * @param {number} concurrency - How many workers to run in parrallel.\n * @return {*} The async queue object.\n */\n\n\nfunction queue(worker, concurrency) {\n if (concurrency == null) {\n // eslint-disable-line no-eq-null,eqeqeq\n concurrency = 1;\n } else if (concurrency === 0) {\n throw new Error('Concurrency must not be zero');\n }\n\n var workers = 0;\n var q = {\n _tasks: [],\n concurrency: concurrency,\n saturated: _noop,\n unsaturated: _noop,\n buffer: concurrency / 4,\n empty: _noop,\n drain: _noop,\n error: _noop,\n started: false,\n paused: false,\n push: function push(data, callback) {\n _insert(data, false, callback);\n },\n kill: function kill() {\n workers = 0;\n q.drain = _noop;\n q.started = false;\n q._tasks = [];\n },\n unshift: function unshift(data, callback) {\n _insert(data, true, callback);\n },\n process: function process() {\n while (!q.paused && workers < q.concurrency && q._tasks.length) {\n var task = q._tasks.shift();\n\n if (q._tasks.length === 0) {\n q.empty();\n }\n\n workers += 1;\n\n if (workers === q.concurrency) {\n q.saturated();\n }\n\n worker(task.data, onlyOnce(_next(task)));\n }\n },\n length: function length() {\n return q._tasks.length;\n },\n running: function running() {\n return workers;\n },\n idle: function idle() {\n return q._tasks.length + workers === 0;\n },\n pause: function pause() {\n if (q.paused === true) {\n return;\n }\n\n q.paused = true;\n },\n resume: function resume() {\n if (q.paused === false) {\n return;\n }\n\n q.paused = false; // Need to call q.process once per concurrent\n // worker to preserve full concurrency after pause\n\n for (var w = 1; w <= q.concurrency; w++) {\n q.process();\n }\n }\n };\n\n function _insert(data, insertAtFront, callback) {\n if (callback != null && typeof callback !== 'function') {\n // eslint-disable-line no-eq-null,eqeqeq\n throw new Error('task callback must be a function');\n }\n\n q.started = true;\n\n if (data == null && q.idle()) {\n // eslint-disable-line no-eq-null,eqeqeq\n // call drain immediately if there are no tasks\n setTimeout(function () {\n return q.drain();\n }, 1);\n return;\n }\n\n var item = {\n data: data,\n callback: typeof callback === 'function' ? callback : _noop\n };\n\n if (insertAtFront) {\n q._tasks.unshift(item);\n } else {\n q._tasks.push(item);\n }\n\n setTimeout(function () {\n return q.process();\n }, 1);\n }\n\n function _next(task) {\n return function next() {\n workers -= 1;\n task.callback.apply(task, arguments);\n\n if (arguments[0] != null) {\n // eslint-disable-line no-eq-null,eqeqeq\n q.error(arguments[0], task.data);\n }\n\n if (workers <= q.concurrency - q.buffer) {\n q.unsaturated();\n }\n\n if (q.idle()) {\n q.drain();\n }\n\n q.process();\n };\n }\n\n return q;\n}\n\nvar async = ({\n eachSeries: eachSeries,\n queue: queue\n});\n\n// a simple in-memory cache for resources\nvar cache = {};\n/**\n * A simple in-memory cache for resource.\n *\n * @memberof middleware\n * @function caching\n * @example\n * import { Loader, middleware } from 'resource-loader';\n * const loader = new Loader();\n * loader.use(middleware.caching);\n * @param {Resource} resource - Current Resource\n * @param {function} next - Callback when complete\n */\n\nfunction caching(resource, next) {\n var _this = this;\n\n // if cached, then set data and complete the resource\n if (cache[resource.url]) {\n resource.data = cache[resource.url];\n resource.complete(); // marks resource load complete and stops processing before middlewares\n } // if not cached, wait for complete and store it in the cache.\n else {\n resource.onComplete.once(function () {\n return cache[_this.url] = _this.data;\n });\n }\n\n next();\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nvar useXdr = !!(window.XDomainRequest && !('withCredentials' in new XMLHttpRequest()));\nvar tempAnchor = null; // some status constants\n\nvar STATUS_NONE = 0;\nvar STATUS_OK = 200;\nvar STATUS_EMPTY = 204;\nvar STATUS_IE_BUG_EMPTY = 1223;\nvar STATUS_TYPE_OK = 2; // noop\n\nfunction _noop$1() {}\n/* empty */\n\n/**\n * Manages the state and loading of a resource and all child resources.\n *\n * @class\n */\n\n\nvar Resource =\n/*#__PURE__*/\nfunction () {\n /**\n * Sets the load type to be used for a specific extension.\n *\n * @static\n * @param {string} extname - The extension to set the type for, e.g. \"png\" or \"fnt\"\n * @param {Resource.LOAD_TYPE} loadType - The load type to set it to.\n */\n Resource.setExtensionLoadType = function setExtensionLoadType(extname, loadType) {\n setExtMap(Resource._loadTypeMap, extname, loadType);\n }\n /**\n * Sets the load type to be used for a specific extension.\n *\n * @static\n * @param {string} extname - The extension to set the type for, e.g. \"png\" or \"fnt\"\n * @param {Resource.XHR_RESPONSE_TYPE} xhrType - The xhr type to set it to.\n */\n ;\n\n Resource.setExtensionXhrType = function setExtensionXhrType(extname, xhrType) {\n setExtMap(Resource._xhrTypeMap, extname, xhrType);\n }\n /**\n * @param {string} name - The name of the resource to load.\n * @param {string|string[]} url - The url for this resource, for audio/video loads you can pass\n * an array of sources.\n * @param {object} [options] - The options for the load.\n * @param {string|boolean} [options.crossOrigin] - Is this request cross-origin? Default is to\n * determine automatically.\n * @param {number} [options.timeout=0] - A timeout in milliseconds for the load. If the load takes\n * longer than this time it is cancelled and the load is considered a failure. If this value is\n * set to `0` then there is no explicit timeout.\n * @param {Resource.LOAD_TYPE} [options.loadType=Resource.LOAD_TYPE.XHR] - How should this resource\n * be loaded?\n * @param {Resource.XHR_RESPONSE_TYPE} [options.xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How\n * should the data being loaded be interpreted when using XHR?\n * @param {Resource.IMetadata} [options.metadata] - Extra configuration for middleware and the Resource object.\n */\n ;\n\n function Resource(name, url, options) {\n if (typeof name !== 'string' || typeof url !== 'string') {\n throw new Error('Both name and url are required for constructing a resource.');\n }\n\n options = options || {};\n /**\n * The state flags of this resource.\n *\n * @private\n * @member {number}\n */\n\n this._flags = 0; // set data url flag, needs to be set early for some _determineX checks to work.\n\n this._setFlag(Resource.STATUS_FLAGS.DATA_URL, url.indexOf('data:') === 0);\n /**\n * The name of this resource.\n *\n * @readonly\n * @member {string}\n */\n\n\n this.name = name;\n /**\n * The url used to load this resource.\n *\n * @readonly\n * @member {string}\n */\n\n this.url = url;\n /**\n * The extension used to load this resource.\n *\n * @readonly\n * @member {string}\n */\n\n this.extension = this._getExtension();\n /**\n * The data that was loaded by the resource.\n *\n * @member {any}\n */\n\n this.data = null;\n /**\n * Is this request cross-origin? If unset, determined automatically.\n *\n * @member {string}\n */\n\n this.crossOrigin = options.crossOrigin === true ? 'anonymous' : options.crossOrigin;\n /**\n * A timeout in milliseconds for the load. If the load takes longer than this time\n * it is cancelled and the load is considered a failure. If this value is set to `0`\n * then there is no explicit timeout.\n *\n * @member {number}\n */\n\n this.timeout = options.timeout || 0;\n /**\n * The method of loading to use for this resource.\n *\n * @member {Resource.LOAD_TYPE}\n */\n\n this.loadType = options.loadType || this._determineLoadType();\n /**\n * The type used to load the resource via XHR. If unset, determined automatically.\n *\n * @member {string}\n */\n\n this.xhrType = options.xhrType;\n /**\n * Extra info for middleware, and controlling specifics about how the resource loads.\n *\n * Note that if you pass in a `loadElement`, the Resource class takes ownership of it.\n * Meaning it will modify it as it sees fit.\n *\n * @member {Resource.IMetadata}\n */\n\n this.metadata = options.metadata || {};\n /**\n * The error that occurred while loading (if any).\n *\n * @readonly\n * @member {Error}\n */\n\n this.error = null;\n /**\n * The XHR object that was used to load this resource. This is only set\n * when `loadType` is `Resource.LOAD_TYPE.XHR`.\n *\n * @readonly\n * @member {XMLHttpRequest}\n */\n\n this.xhr = null;\n /**\n * The child resources this resource owns.\n *\n * @readonly\n * @member {Resource[]}\n */\n\n this.children = [];\n /**\n * The resource type.\n *\n * @readonly\n * @member {Resource.TYPE}\n */\n\n this.type = Resource.TYPE.UNKNOWN;\n /**\n * The progress chunk owned by this resource.\n *\n * @readonly\n * @member {number}\n */\n\n this.progressChunk = 0;\n /**\n * The `dequeue` method that will be used a storage place for the async queue dequeue method\n * used privately by the loader.\n *\n * @private\n * @member {function}\n */\n\n this._dequeue = _noop$1;\n /**\n * Used a storage place for the on load binding used privately by the loader.\n *\n * @private\n * @member {function}\n */\n\n this._onLoadBinding = null;\n /**\n * The timer for element loads to check if they timeout.\n *\n * @private\n * @member {number}\n */\n\n this._elementTimer = 0;\n /**\n * The `complete` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundComplete = this.complete.bind(this);\n /**\n * The `_onError` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnError = this._onError.bind(this);\n /**\n * The `_onProgress` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnProgress = this._onProgress.bind(this);\n /**\n * The `_onTimeout` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnTimeout = this._onTimeout.bind(this); // xhr callbacks\n\n this._boundXhrOnError = this._xhrOnError.bind(this);\n this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this);\n this._boundXhrOnAbort = this._xhrOnAbort.bind(this);\n this._boundXhrOnLoad = this._xhrOnLoad.bind(this);\n /**\n * Dispatched when the resource beings to load.\n *\n * The callback looks like {@link Resource.OnStartSignal}.\n *\n * @member {Signal}\n */\n\n this.onStart = new Signal();\n /**\n * Dispatched each time progress of this resource load updates.\n * Not all resources types and loader systems can support this event\n * so sometimes it may not be available. If the resource\n * is being loaded on a modern browser, using XHR, and the remote server\n * properly sets Content-Length headers, then this will be available.\n *\n * The callback looks like {@link Resource.OnProgressSignal}.\n *\n * @member {Signal}\n */\n\n this.onProgress = new Signal();\n /**\n * Dispatched once this resource has loaded, if there was an error it will\n * be in the `error` property.\n *\n * The callback looks like {@link Resource.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onComplete = new Signal();\n /**\n * Dispatched after this resource has had all the *after* middleware run on it.\n *\n * The callback looks like {@link Resource.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onAfterMiddleware = new Signal();\n }\n /**\n * When the resource starts to load.\n *\n * @memberof Resource\n * @callback OnStartSignal\n * @param {Resource} resource - The resource that the event happened on.\n */\n\n /**\n * When the resource reports loading progress.\n *\n * @memberof Resource\n * @callback OnProgressSignal\n * @param {Resource} resource - The resource that the event happened on.\n * @param {number} percentage - The progress of the load in the range [0, 1].\n */\n\n /**\n * When the resource finishes loading.\n *\n * @memberof Resource\n * @callback OnCompleteSignal\n * @param {Resource} resource - The resource that the event happened on.\n */\n\n /**\n * @memberof Resource\n * @typedef {object} IMetadata\n * @property {HTMLImageElement|HTMLAudioElement|HTMLVideoElement} [loadElement=null] - The\n * element to use for loading, instead of creating one.\n * @property {boolean} [skipSource=false] - Skips adding source(s) to the load element. This\n * is useful if you want to pass in a `loadElement` that you already added load sources to.\n * @property {string|string[]} [mimeType] - The mime type to use for the source element\n * of a video/audio elment. If the urls are an array, you can pass this as an array as well\n * where each index is the mime type to use for the corresponding url index.\n */\n\n /**\n * Stores whether or not this url is a data url.\n *\n * @readonly\n * @member {boolean}\n */\n\n\n var _proto = Resource.prototype;\n\n /**\n * Marks the resource as complete.\n *\n */\n _proto.complete = function complete() {\n this._clearEvents();\n\n this._finish();\n }\n /**\n * Aborts the loading of this resource, with an optional message.\n *\n * @param {string} message - The message to use for the error\n */\n ;\n\n _proto.abort = function abort(message) {\n // abort can be called multiple times, ignore subsequent calls.\n if (this.error) {\n return;\n } // store error\n\n\n this.error = new Error(message); // clear events before calling aborts\n\n this._clearEvents(); // abort the actual loading\n\n\n if (this.xhr) {\n this.xhr.abort();\n } else if (this.xdr) {\n this.xdr.abort();\n } else if (this.data) {\n // single source\n if (this.data.src) {\n this.data.src = Resource.EMPTY_GIF;\n } // multi-source\n else {\n while (this.data.firstChild) {\n this.data.removeChild(this.data.firstChild);\n }\n }\n } // done now.\n\n\n this._finish();\n }\n /**\n * Kicks off loading of this resource. This method is asynchronous.\n *\n * @param {Resource.OnCompleteSignal} [cb] - Optional callback to call once the resource is loaded.\n */\n ;\n\n _proto.load = function load(cb) {\n var _this = this;\n\n if (this.isLoading) {\n return;\n }\n\n if (this.isComplete) {\n if (cb) {\n setTimeout(function () {\n return cb(_this);\n }, 1);\n }\n\n return;\n } else if (cb) {\n this.onComplete.once(cb);\n }\n\n this._setFlag(Resource.STATUS_FLAGS.LOADING, true);\n\n this.onStart.dispatch(this); // if unset, determine the value\n\n if (this.crossOrigin === false || typeof this.crossOrigin !== 'string') {\n this.crossOrigin = this._determineCrossOrigin(this.url);\n }\n\n switch (this.loadType) {\n case Resource.LOAD_TYPE.IMAGE:\n this.type = Resource.TYPE.IMAGE;\n\n this._loadElement('image');\n\n break;\n\n case Resource.LOAD_TYPE.AUDIO:\n this.type = Resource.TYPE.AUDIO;\n\n this._loadSourceElement('audio');\n\n break;\n\n case Resource.LOAD_TYPE.VIDEO:\n this.type = Resource.TYPE.VIDEO;\n\n this._loadSourceElement('video');\n\n break;\n\n case Resource.LOAD_TYPE.XHR:\n /* falls through */\n\n default:\n if (useXdr && this.crossOrigin) {\n this._loadXdr();\n } else {\n this._loadXhr();\n }\n\n break;\n }\n }\n /**\n * Checks if the flag is set.\n *\n * @private\n * @param {number} flag - The flag to check.\n * @return {boolean} True if the flag is set.\n */\n ;\n\n _proto._hasFlag = function _hasFlag(flag) {\n return (this._flags & flag) !== 0;\n }\n /**\n * (Un)Sets the flag.\n *\n * @private\n * @param {number} flag - The flag to (un)set.\n * @param {boolean} value - Whether to set or (un)set the flag.\n */\n ;\n\n _proto._setFlag = function _setFlag(flag, value) {\n this._flags = value ? this._flags | flag : this._flags & ~flag;\n }\n /**\n * Clears all the events from the underlying loading source.\n *\n * @private\n */\n ;\n\n _proto._clearEvents = function _clearEvents() {\n clearTimeout(this._elementTimer);\n\n if (this.data && this.data.removeEventListener) {\n this.data.removeEventListener('error', this._boundOnError, false);\n this.data.removeEventListener('load', this._boundComplete, false);\n this.data.removeEventListener('progress', this._boundOnProgress, false);\n this.data.removeEventListener('canplaythrough', this._boundComplete, false);\n }\n\n if (this.xhr) {\n if (this.xhr.removeEventListener) {\n this.xhr.removeEventListener('error', this._boundXhrOnError, false);\n this.xhr.removeEventListener('timeout', this._boundXhrOnTimeout, false);\n this.xhr.removeEventListener('abort', this._boundXhrOnAbort, false);\n this.xhr.removeEventListener('progress', this._boundOnProgress, false);\n this.xhr.removeEventListener('load', this._boundXhrOnLoad, false);\n } else {\n this.xhr.onerror = null;\n this.xhr.ontimeout = null;\n this.xhr.onprogress = null;\n this.xhr.onload = null;\n }\n }\n }\n /**\n * Finalizes the load.\n *\n * @private\n */\n ;\n\n _proto._finish = function _finish() {\n if (this.isComplete) {\n throw new Error('Complete called again for an already completed resource.');\n }\n\n this._setFlag(Resource.STATUS_FLAGS.COMPLETE, true);\n\n this._setFlag(Resource.STATUS_FLAGS.LOADING, false);\n\n this.onComplete.dispatch(this);\n }\n /**\n * Loads this resources using an element that has a single source,\n * like an HTMLImageElement.\n *\n * @private\n * @param {string} type - The type of element to use.\n */\n ;\n\n _proto._loadElement = function _loadElement(type) {\n if (this.metadata.loadElement) {\n this.data = this.metadata.loadElement;\n } else if (type === 'image' && typeof window.Image !== 'undefined') {\n this.data = new Image();\n } else {\n this.data = document.createElement(type);\n }\n\n if (this.crossOrigin) {\n this.data.crossOrigin = this.crossOrigin;\n }\n\n if (!this.metadata.skipSource) {\n this.data.src = this.url;\n }\n\n this.data.addEventListener('error', this._boundOnError, false);\n this.data.addEventListener('load', this._boundComplete, false);\n this.data.addEventListener('progress', this._boundOnProgress, false);\n\n if (this.timeout) {\n this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout);\n }\n }\n /**\n * Loads this resources using an element that has multiple sources,\n * like an HTMLAudioElement or HTMLVideoElement.\n *\n * @private\n * @param {string} type - The type of element to use.\n */\n ;\n\n _proto._loadSourceElement = function _loadSourceElement(type) {\n if (this.metadata.loadElement) {\n this.data = this.metadata.loadElement;\n } else if (type === 'audio' && typeof window.Audio !== 'undefined') {\n this.data = new Audio();\n } else {\n this.data = document.createElement(type);\n }\n\n if (this.data === null) {\n this.abort(\"Unsupported element: \" + type);\n return;\n }\n\n if (this.crossOrigin) {\n this.data.crossOrigin = this.crossOrigin;\n }\n\n if (!this.metadata.skipSource) {\n // support for CocoonJS Canvas+ runtime, lacks document.createElement('source')\n if (navigator.isCocoonJS) {\n this.data.src = Array.isArray(this.url) ? this.url[0] : this.url;\n } else if (Array.isArray(this.url)) {\n var mimeTypes = this.metadata.mimeType;\n\n for (var i = 0; i < this.url.length; ++i) {\n this.data.appendChild(this._createSource(type, this.url[i], Array.isArray(mimeTypes) ? mimeTypes[i] : mimeTypes));\n }\n } else {\n var _mimeTypes = this.metadata.mimeType;\n this.data.appendChild(this._createSource(type, this.url, Array.isArray(_mimeTypes) ? _mimeTypes[0] : _mimeTypes));\n }\n }\n\n this.data.addEventListener('error', this._boundOnError, false);\n this.data.addEventListener('load', this._boundComplete, false);\n this.data.addEventListener('progress', this._boundOnProgress, false);\n this.data.addEventListener('canplaythrough', this._boundComplete, false);\n this.data.load();\n\n if (this.timeout) {\n this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout);\n }\n }\n /**\n * Loads this resources using an XMLHttpRequest.\n *\n * @private\n */\n ;\n\n _proto._loadXhr = function _loadXhr() {\n // if unset, determine the value\n if (typeof this.xhrType !== 'string') {\n this.xhrType = this._determineXhrType();\n }\n\n var xhr = this.xhr = new XMLHttpRequest(); // set the request type and url\n\n xhr.open('GET', this.url, true);\n xhr.timeout = this.timeout; // load json as text and parse it ourselves. We do this because some browsers\n // *cough* safari *cough* can't deal with it.\n\n if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON || this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) {\n xhr.responseType = Resource.XHR_RESPONSE_TYPE.TEXT;\n } else {\n xhr.responseType = this.xhrType;\n }\n\n xhr.addEventListener('error', this._boundXhrOnError, false);\n xhr.addEventListener('timeout', this._boundXhrOnTimeout, false);\n xhr.addEventListener('abort', this._boundXhrOnAbort, false);\n xhr.addEventListener('progress', this._boundOnProgress, false);\n xhr.addEventListener('load', this._boundXhrOnLoad, false);\n xhr.send();\n }\n /**\n * Loads this resources using an XDomainRequest. This is here because we need to support IE9 (gross).\n *\n * @private\n */\n ;\n\n _proto._loadXdr = function _loadXdr() {\n // if unset, determine the value\n if (typeof this.xhrType !== 'string') {\n this.xhrType = this._determineXhrType();\n }\n\n var xdr = this.xhr = new XDomainRequest(); // eslint-disable-line no-undef\n // XDomainRequest has a few quirks. Occasionally it will abort requests\n // A way to avoid this is to make sure ALL callbacks are set even if not used\n // More info here: http://stackoverflow.com/questions/15786966/xdomainrequest-aborts-post-on-ie-9\n\n xdr.timeout = this.timeout || 5000; // XDR needs a timeout value or it breaks in IE9\n\n xdr.onerror = this._boundXhrOnError;\n xdr.ontimeout = this._boundXhrOnTimeout;\n xdr.onprogress = this._boundOnProgress;\n xdr.onload = this._boundXhrOnLoad;\n xdr.open('GET', this.url, true); // Note: The xdr.send() call is wrapped in a timeout to prevent an\n // issue with the interface where some requests are lost if multiple\n // XDomainRequests are being sent at the same time.\n // Some info here: https://github.com/photonstorm/phaser/issues/1248\n\n setTimeout(function () {\n return xdr.send();\n }, 1);\n }\n /**\n * Creates a source used in loading via an element.\n *\n * @private\n * @param {string} type - The element type (video or audio).\n * @param {string} url - The source URL to load from.\n * @param {string} [mime] - The mime type of the video\n * @return {HTMLSourceElement} The source element.\n */\n ;\n\n _proto._createSource = function _createSource(type, url, mime) {\n if (!mime) {\n mime = type + \"/\" + this._getExtension(url);\n }\n\n var source = document.createElement('source');\n source.src = url;\n source.type = mime;\n return source;\n }\n /**\n * Called if a load errors out.\n *\n * @param {Event} event - The error event from the element that emits it.\n * @private\n */\n ;\n\n _proto._onError = function _onError(event) {\n this.abort(\"Failed to load element using: \" + event.target.nodeName);\n }\n /**\n * Called if a load progress event fires for an element or xhr/xdr.\n *\n * @private\n * @param {XMLHttpRequestProgressEvent|Event} event - Progress event.\n */\n ;\n\n _proto._onProgress = function _onProgress(event) {\n if (event && event.lengthComputable) {\n this.onProgress.dispatch(this, event.loaded / event.total);\n }\n }\n /**\n * Called if a timeout event fires for an element.\n *\n * @private\n */\n ;\n\n _proto._onTimeout = function _onTimeout() {\n this.abort(\"Load timed out.\");\n }\n /**\n * Called if an error event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnError = function _xhrOnError() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request failed. Status: \" + xhr.status + \", text: \\\"\" + xhr.statusText + \"\\\"\");\n }\n /**\n * Called if an error event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnTimeout = function _xhrOnTimeout() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request timed out.\");\n }\n /**\n * Called if an abort event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnAbort = function _xhrOnAbort() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request was aborted by the user.\");\n }\n /**\n * Called when data successfully loads from an xhr/xdr request.\n *\n * @private\n * @param {XMLHttpRequestLoadEvent|Event} event - Load event\n */\n ;\n\n _proto._xhrOnLoad = function _xhrOnLoad() {\n var xhr = this.xhr;\n var text = '';\n var status = typeof xhr.status === 'undefined' ? STATUS_OK : xhr.status; // XDR has no `.status`, assume 200.\n // responseText is accessible only if responseType is '' or 'text' and on older browsers\n\n if (xhr.responseType === '' || xhr.responseType === 'text' || typeof xhr.responseType === 'undefined') {\n text = xhr.responseText;\n } // status can be 0 when using the `file://` protocol so we also check if a response is set.\n // If it has a response, we assume 200; otherwise a 0 status code with no contents is an aborted request.\n\n\n if (status === STATUS_NONE && (text.length > 0 || xhr.responseType === Resource.XHR_RESPONSE_TYPE.BUFFER)) {\n status = STATUS_OK;\n } // handle IE9 bug: http://stackoverflow.com/questions/10046972/msie-returns-status-code-of-1223-for-ajax-request\n else if (status === STATUS_IE_BUG_EMPTY) {\n status = STATUS_EMPTY;\n }\n\n var statusType = status / 100 | 0;\n\n if (statusType === STATUS_TYPE_OK) {\n // if text, just return it\n if (this.xhrType === Resource.XHR_RESPONSE_TYPE.TEXT) {\n this.data = text;\n this.type = Resource.TYPE.TEXT;\n } // if json, parse into json object\n else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON) {\n try {\n this.data = JSON.parse(text);\n this.type = Resource.TYPE.JSON;\n } catch (e) {\n this.abort(\"Error trying to parse loaded json: \" + e);\n return;\n }\n } // if xml, parse into an xml document or div element\n else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) {\n try {\n if (window.DOMParser) {\n var domparser = new DOMParser();\n this.data = domparser.parseFromString(text, 'text/xml');\n } else {\n var div = document.createElement('div');\n div.innerHTML = text;\n this.data = div;\n }\n\n this.type = Resource.TYPE.XML;\n } catch (e) {\n this.abort(\"Error trying to parse loaded xml: \" + e);\n return;\n }\n } // other types just return the response\n else {\n this.data = xhr.response || text;\n }\n } else {\n this.abort(\"[\" + xhr.status + \"] \" + xhr.statusText + \": \" + xhr.responseURL);\n return;\n }\n\n this.complete();\n }\n /**\n * Sets the `crossOrigin` property for this resource based on if the url\n * for this resource is cross-origin. If crossOrigin was manually set, this\n * function does nothing.\n *\n * @private\n * @param {string} url - The url to test.\n * @param {object} [loc=window.location] - The location object to test against.\n * @return {string} The crossOrigin value to use (or empty string for none).\n */\n ;\n\n _proto._determineCrossOrigin = function _determineCrossOrigin(url, loc) {\n // data: and javascript: urls are considered same-origin\n if (url.indexOf('data:') === 0) {\n return '';\n } // A sandboxed iframe without the 'allow-same-origin' attribute will have a special\n // origin designed not to match window.location.origin, and will always require\n // crossOrigin requests regardless of whether the location matches.\n\n\n if (window.origin !== window.location.origin) {\n return 'anonymous';\n } // default is window.location\n\n\n loc = loc || window.location;\n\n if (!tempAnchor) {\n tempAnchor = document.createElement('a');\n } // let the browser determine the full href for the url of this resource and then\n // parse with the node url lib, we can't use the properties of the anchor element\n // because they don't work in IE9 :(\n\n\n tempAnchor.href = url;\n url = parseUri(tempAnchor.href, {\n strictMode: true\n });\n var samePort = !url.port && loc.port === '' || url.port === loc.port;\n var protocol = url.protocol ? url.protocol + \":\" : ''; // if cross origin\n\n if (url.host !== loc.hostname || !samePort || protocol !== loc.protocol) {\n return 'anonymous';\n }\n\n return '';\n }\n /**\n * Determines the responseType of an XHR request based on the extension of the\n * resource being loaded.\n *\n * @private\n * @return {Resource.XHR_RESPONSE_TYPE} The responseType to use.\n */\n ;\n\n _proto._determineXhrType = function _determineXhrType() {\n return Resource._xhrTypeMap[this.extension] || Resource.XHR_RESPONSE_TYPE.TEXT;\n }\n /**\n * Determines the loadType of a resource based on the extension of the\n * resource being loaded.\n *\n * @private\n * @return {Resource.LOAD_TYPE} The loadType to use.\n */\n ;\n\n _proto._determineLoadType = function _determineLoadType() {\n return Resource._loadTypeMap[this.extension] || Resource.LOAD_TYPE.XHR;\n }\n /**\n * Extracts the extension (sans '.') of the file being loaded by the resource.\n *\n * @private\n * @return {string} The extension.\n */\n ;\n\n _proto._getExtension = function _getExtension() {\n var url = this.url;\n var ext = '';\n\n if (this.isDataUrl) {\n var slashIndex = url.indexOf('/');\n ext = url.substring(slashIndex + 1, url.indexOf(';', slashIndex));\n } else {\n var queryStart = url.indexOf('?');\n var hashStart = url.indexOf('#');\n var index = Math.min(queryStart > -1 ? queryStart : url.length, hashStart > -1 ? hashStart : url.length);\n url = url.substring(0, index);\n ext = url.substring(url.lastIndexOf('.') + 1);\n }\n\n return ext.toLowerCase();\n }\n /**\n * Determines the mime type of an XHR request based on the responseType of\n * resource being loaded.\n *\n * @private\n * @param {Resource.XHR_RESPONSE_TYPE} type - The type to get a mime type for.\n * @return {string} The mime type to use.\n */\n ;\n\n _proto._getMimeFromXhrType = function _getMimeFromXhrType(type) {\n switch (type) {\n case Resource.XHR_RESPONSE_TYPE.BUFFER:\n return 'application/octet-binary';\n\n case Resource.XHR_RESPONSE_TYPE.BLOB:\n return 'application/blob';\n\n case Resource.XHR_RESPONSE_TYPE.DOCUMENT:\n return 'application/xml';\n\n case Resource.XHR_RESPONSE_TYPE.JSON:\n return 'application/json';\n\n case Resource.XHR_RESPONSE_TYPE.DEFAULT:\n case Resource.XHR_RESPONSE_TYPE.TEXT:\n /* falls through */\n\n default:\n return 'text/plain';\n }\n };\n\n _createClass(Resource, [{\n key: \"isDataUrl\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.DATA_URL);\n }\n /**\n * Describes if this resource has finished loading. Is true when the resource has completely\n * loaded.\n *\n * @readonly\n * @member {boolean}\n */\n\n }, {\n key: \"isComplete\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.COMPLETE);\n }\n /**\n * Describes if this resource is currently loading. Is true when the resource starts loading,\n * and is false again when complete.\n *\n * @readonly\n * @member {boolean}\n */\n\n }, {\n key: \"isLoading\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.LOADING);\n }\n }]);\n\n return Resource;\n}();\n/**\n * The types of resources a resource could represent.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\n\nResource.STATUS_FLAGS = {\n NONE: 0,\n DATA_URL: 1 << 0,\n COMPLETE: 1 << 1,\n LOADING: 1 << 2\n};\n/**\n * The types of resources a resource could represent.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\nResource.TYPE = {\n UNKNOWN: 0,\n JSON: 1,\n XML: 2,\n IMAGE: 3,\n AUDIO: 4,\n VIDEO: 5,\n TEXT: 6\n};\n/**\n * The types of loading a resource can use.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\nResource.LOAD_TYPE = {\n /** Uses XMLHttpRequest to load the resource. */\n XHR: 1,\n\n /** Uses an `Image` object to load the resource. */\n IMAGE: 2,\n\n /** Uses an `Audio` object to load the resource. */\n AUDIO: 3,\n\n /** Uses a `Video` object to load the resource. */\n VIDEO: 4\n};\n/**\n * The XHR ready states, used internally.\n *\n * @static\n * @readonly\n * @enum {string}\n */\n\nResource.XHR_RESPONSE_TYPE = {\n /** string */\n DEFAULT: 'text',\n\n /** ArrayBuffer */\n BUFFER: 'arraybuffer',\n\n /** Blob */\n BLOB: 'blob',\n\n /** Document */\n DOCUMENT: 'document',\n\n /** Object */\n JSON: 'json',\n\n /** String */\n TEXT: 'text'\n};\nResource._loadTypeMap = {\n // images\n gif: Resource.LOAD_TYPE.IMAGE,\n png: Resource.LOAD_TYPE.IMAGE,\n bmp: Resource.LOAD_TYPE.IMAGE,\n jpg: Resource.LOAD_TYPE.IMAGE,\n jpeg: Resource.LOAD_TYPE.IMAGE,\n tif: Resource.LOAD_TYPE.IMAGE,\n tiff: Resource.LOAD_TYPE.IMAGE,\n webp: Resource.LOAD_TYPE.IMAGE,\n tga: Resource.LOAD_TYPE.IMAGE,\n svg: Resource.LOAD_TYPE.IMAGE,\n 'svg+xml': Resource.LOAD_TYPE.IMAGE,\n // for SVG data urls\n // audio\n mp3: Resource.LOAD_TYPE.AUDIO,\n ogg: Resource.LOAD_TYPE.AUDIO,\n wav: Resource.LOAD_TYPE.AUDIO,\n // videos\n mp4: Resource.LOAD_TYPE.VIDEO,\n webm: Resource.LOAD_TYPE.VIDEO\n};\nResource._xhrTypeMap = {\n // xml\n xhtml: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n html: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n htm: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n xml: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n tmx: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n svg: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n // This was added to handle Tiled Tileset XML, but .tsx is also a TypeScript React Component.\n // Since it is way less likely for people to be loading TypeScript files instead of Tiled files,\n // this should probably be fine.\n tsx: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n // images\n gif: Resource.XHR_RESPONSE_TYPE.BLOB,\n png: Resource.XHR_RESPONSE_TYPE.BLOB,\n bmp: Resource.XHR_RESPONSE_TYPE.BLOB,\n jpg: Resource.XHR_RESPONSE_TYPE.BLOB,\n jpeg: Resource.XHR_RESPONSE_TYPE.BLOB,\n tif: Resource.XHR_RESPONSE_TYPE.BLOB,\n tiff: Resource.XHR_RESPONSE_TYPE.BLOB,\n webp: Resource.XHR_RESPONSE_TYPE.BLOB,\n tga: Resource.XHR_RESPONSE_TYPE.BLOB,\n // json\n json: Resource.XHR_RESPONSE_TYPE.JSON,\n // text\n text: Resource.XHR_RESPONSE_TYPE.TEXT,\n txt: Resource.XHR_RESPONSE_TYPE.TEXT,\n // fonts\n ttf: Resource.XHR_RESPONSE_TYPE.BUFFER,\n otf: Resource.XHR_RESPONSE_TYPE.BUFFER\n}; // We can't set the `src` attribute to empty string, so on abort we set it to this 1px transparent gif\n\nResource.EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==';\n/**\n * Quick helper to set a value on one of the extension maps. Ensures there is no\n * dot at the start of the extension.\n *\n * @ignore\n * @param {object} map - The map to set on.\n * @param {string} extname - The extension (or key) to set.\n * @param {number} val - The value to set.\n */\n\nfunction setExtMap(map, extname, val) {\n if (extname && extname.indexOf('.') === 0) {\n extname = extname.substring(1);\n }\n\n if (!extname) {\n return;\n }\n\n map[extname] = val;\n}\n/**\n * Quick helper to get string xhr type.\n *\n * @ignore\n * @param {XMLHttpRequest|XDomainRequest} xhr - The request to check.\n * @return {string} The type.\n */\n\n\nfunction reqType(xhr) {\n return xhr.toString().replace('object ', '');\n}\n\nvar _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\n/**\n * Encodes binary into base64.\n *\n * @function encodeBinary\n * @param {string} input The input data to encode.\n * @returns {string} The encoded base64 string\n */\n\nfunction encodeBinary(input) {\n var output = '';\n var inx = 0;\n\n while (inx < input.length) {\n // Fill byte buffer array\n var bytebuffer = [0, 0, 0];\n var encodedCharIndexes = [0, 0, 0, 0];\n\n for (var jnx = 0; jnx < bytebuffer.length; ++jnx) {\n if (inx < input.length) {\n // throw away high-order byte, as documented at:\n // https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data\n bytebuffer[jnx] = input.charCodeAt(inx++) & 0xff;\n } else {\n bytebuffer[jnx] = 0;\n }\n } // Get each encoded character, 6 bits at a time\n // index 1: first 6 bits\n\n\n encodedCharIndexes[0] = bytebuffer[0] >> 2; // index 2: second 6 bits (2 least significant bits from input byte 1 + 4 most significant bits from byte 2)\n\n encodedCharIndexes[1] = (bytebuffer[0] & 0x3) << 4 | bytebuffer[1] >> 4; // index 3: third 6 bits (4 least significant bits from input byte 2 + 2 most significant bits from byte 3)\n\n encodedCharIndexes[2] = (bytebuffer[1] & 0x0f) << 2 | bytebuffer[2] >> 6; // index 3: forth 6 bits (6 least significant bits from input byte 3)\n\n encodedCharIndexes[3] = bytebuffer[2] & 0x3f; // Determine whether padding happened, and adjust accordingly\n\n var paddingBytes = inx - (input.length - 1);\n\n switch (paddingBytes) {\n case 2:\n // Set last 2 characters to padding char\n encodedCharIndexes[3] = 64;\n encodedCharIndexes[2] = 64;\n break;\n\n case 1:\n // Set last character to padding char\n encodedCharIndexes[3] = 64;\n break;\n\n default:\n break;\n // No padding - proceed\n } // Now we will grab each appropriate character out of our keystring\n // based on our index array and append it to the output string\n\n\n for (var _jnx = 0; _jnx < encodedCharIndexes.length; ++_jnx) {\n output += _keyStr.charAt(encodedCharIndexes[_jnx]);\n }\n }\n\n return output;\n}\n\nvar Url = window.URL || window.webkitURL;\n/**\n * A middleware for transforming XHR loaded Blobs into more useful objects\n *\n * @memberof middleware\n * @function parsing\n * @example\n * import { Loader, middleware } from 'resource-loader';\n * const loader = new Loader();\n * loader.use(middleware.parsing);\n * @param {Resource} resource - Current Resource\n * @param {function} next - Callback when complete\n */\n\nfunction parsing(resource, next) {\n if (!resource.data) {\n next();\n return;\n } // if this was an XHR load of a blob\n\n\n if (resource.xhr && resource.xhrType === Resource.XHR_RESPONSE_TYPE.BLOB) {\n // if there is no blob support we probably got a binary string back\n if (!window.Blob || typeof resource.data === 'string') {\n var type = resource.xhr.getResponseHeader('content-type'); // this is an image, convert the binary string into a data url\n\n if (type && type.indexOf('image') === 0) {\n resource.data = new Image();\n resource.data.src = \"data:\" + type + \";base64,\" + encodeBinary(resource.xhr.responseText);\n resource.type = Resource.TYPE.IMAGE; // wait until the image loads and then callback\n\n resource.data.onload = function () {\n resource.data.onload = null;\n next();\n }; // next will be called on load\n\n\n return;\n }\n } // if content type says this is an image, then we should transform the blob into an Image object\n else if (resource.data.type.indexOf('image') === 0) {\n var src = Url.createObjectURL(resource.data);\n resource.blob = resource.data;\n resource.data = new Image();\n resource.data.src = src;\n resource.type = Resource.TYPE.IMAGE; // cleanup the no longer used blob after the image loads\n // TODO: Is this correct? Will the image be invalid after revoking?\n\n resource.data.onload = function () {\n Url.revokeObjectURL(src);\n resource.data.onload = null;\n next();\n }; // next will be called on load.\n\n\n return;\n }\n }\n\n next();\n}\n\n/**\n * @namespace middleware\n */\n\nvar index = ({\n caching: caching,\n parsing: parsing\n});\n\nvar MAX_PROGRESS = 100;\nvar rgxExtractUrlHash = /(#[\\w-]+)?$/;\n/**\n * Manages the state and loading of multiple resources to load.\n *\n * @class\n */\n\nvar Loader =\n/*#__PURE__*/\nfunction () {\n /**\n * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader.\n * @param {number} [concurrency=10] - The number of resources to load concurrently.\n */\n function Loader(baseUrl, concurrency) {\n var _this = this;\n\n if (baseUrl === void 0) {\n baseUrl = '';\n }\n\n if (concurrency === void 0) {\n concurrency = 10;\n }\n\n /**\n * The base url for all resources loaded by this loader.\n *\n * @member {string}\n */\n this.baseUrl = baseUrl;\n /**\n * The progress percent of the loader going through the queue.\n *\n * @member {number}\n * @default 0\n */\n\n this.progress = 0;\n /**\n * Loading state of the loader, true if it is currently loading resources.\n *\n * @member {boolean}\n * @default false\n */\n\n this.loading = false;\n /**\n * A querystring to append to every URL added to the loader.\n *\n * This should be a valid query string *without* the question-mark (`?`). The loader will\n * also *not* escape values for you. Make sure to escape your parameters with\n * [`encodeURIComponent`](https://mdn.io/encodeURIComponent) before assigning this property.\n *\n * @example\n * const loader = new Loader();\n *\n * loader.defaultQueryString = 'user=me&password=secret';\n *\n * // This will request 'image.png?user=me&password=secret'\n * loader.add('image.png').load();\n *\n * loader.reset();\n *\n * // This will request 'image.png?v=1&user=me&password=secret'\n * loader.add('iamge.png?v=1').load();\n *\n * @member {string}\n * @default ''\n */\n\n this.defaultQueryString = '';\n /**\n * The middleware to run before loading each resource.\n *\n * @private\n * @member {function[]}\n */\n\n this._beforeMiddleware = [];\n /**\n * The middleware to run after loading each resource.\n *\n * @private\n * @member {function[]}\n */\n\n this._afterMiddleware = [];\n /**\n * The tracks the resources we are currently completing parsing for.\n *\n * @private\n * @member {Resource[]}\n */\n\n this._resourcesParsing = [];\n /**\n * The `_loadResource` function bound with this object context.\n *\n * @private\n * @member {function}\n * @param {Resource} r - The resource to load\n * @param {Function} d - The dequeue function\n * @return {undefined}\n */\n\n this._boundLoadResource = function (r, d) {\n return _this._loadResource(r, d);\n };\n /**\n * The resources waiting to be loaded.\n *\n * @private\n * @member {Resource[]}\n */\n\n\n this._queue = queue(this._boundLoadResource, concurrency);\n\n this._queue.pause();\n /**\n * All the resources for this loader keyed by name.\n *\n * @member {object}\n */\n\n\n this.resources = {};\n /**\n * Dispatched once per loaded or errored resource.\n *\n * The callback looks like {@link Loader.OnProgressSignal}.\n *\n * @member {Signal}\n */\n\n this.onProgress = new Signal();\n /**\n * Dispatched once per errored resource.\n *\n * The callback looks like {@link Loader.OnErrorSignal}.\n *\n * @member {Signal}\n */\n\n this.onError = new Signal();\n /**\n * Dispatched once per loaded resource.\n *\n * The callback looks like {@link Loader.OnLoadSignal}.\n *\n * @member {Signal}\n */\n\n this.onLoad = new Signal();\n /**\n * Dispatched when the loader begins to process the queue.\n *\n * The callback looks like {@link Loader.OnStartSignal}.\n *\n * @member {Signal}\n */\n\n this.onStart = new Signal();\n /**\n * Dispatched when the queued resources all load.\n *\n * The callback looks like {@link Loader.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onComplete = new Signal(); // Add default before middleware\n\n for (var i = 0; i < Loader._defaultBeforeMiddleware.length; ++i) {\n this.pre(Loader._defaultBeforeMiddleware[i]);\n } // Add default after middleware\n\n\n for (var _i = 0; _i < Loader._defaultAfterMiddleware.length; ++_i) {\n this.use(Loader._defaultAfterMiddleware[_i]);\n }\n }\n /**\n * When the progress changes the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnProgressSignal\n * @param {Loader} loader - The loader the progress is advancing on.\n * @param {Resource} resource - The resource that has completed or failed to cause the progress to advance.\n */\n\n /**\n * When an error occurrs the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnErrorSignal\n * @param {Loader} loader - The loader the error happened in.\n * @param {Resource} resource - The resource that caused the error.\n */\n\n /**\n * When a load completes the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnLoadSignal\n * @param {Loader} loader - The loader that laoded the resource.\n * @param {Resource} resource - The resource that has completed loading.\n */\n\n /**\n * When the loader starts loading resources it dispatches this callback.\n *\n * @memberof Loader\n * @callback OnStartSignal\n * @param {Loader} loader - The loader that has started loading resources.\n */\n\n /**\n * When the loader completes loading resources it dispatches this callback.\n *\n * @memberof Loader\n * @callback OnCompleteSignal\n * @param {Loader} loader - The loader that has finished loading resources.\n */\n\n /**\n * Options for a call to `.add()`.\n *\n * @see Loader#add\n *\n * @typedef {object} IAddOptions\n * @property {string} [name] - The name of the resource to load, if not passed the url is used.\n * @property {string} [key] - Alias for `name`.\n * @property {string} [url] - The url for this resource, relative to the baseUrl of this loader.\n * @property {string|boolean} [crossOrigin] - Is this request cross-origin? Default is to\n * determine automatically.\n * @property {number} [timeout=0] - A timeout in milliseconds for the load. If the load takes\n * longer than this time it is cancelled and the load is considered a failure. If this value is\n * set to `0` then there is no explicit timeout.\n * @property {Resource.LOAD_TYPE} [loadType=Resource.LOAD_TYPE.XHR] - How should this resource\n * be loaded?\n * @property {Resource.XHR_RESPONSE_TYPE} [xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How\n * should the data being loaded be interpreted when using XHR?\n * @property {Resource.OnCompleteSignal} [onComplete] - Callback to add an an onComplete signal istener.\n * @property {Resource.OnCompleteSignal} [callback] - Alias for `onComplete`.\n * @property {Resource.IMetadata} [metadata] - Extra configuration for middleware and the Resource object.\n */\n\n /* eslint-disable require-jsdoc,valid-jsdoc */\n\n /**\n * Adds a resource (or multiple resources) to the loader queue.\n *\n * This function can take a wide variety of different parameters. The only thing that is always\n * required the url to load. All the following will work:\n *\n * ```js\n * loader\n * // normal param syntax\n * .add('key', 'http://...', function () {})\n * .add('http://...', function () {})\n * .add('http://...')\n *\n * // object syntax\n * .add({\n * name: 'key2',\n * url: 'http://...'\n * }, function () {})\n * .add({\n * url: 'http://...'\n * }, function () {})\n * .add({\n * name: 'key3',\n * url: 'http://...'\n * onComplete: function () {}\n * })\n * .add({\n * url: 'https://...',\n * onComplete: function () {},\n * crossOrigin: true\n * })\n *\n * // you can also pass an array of objects or urls or both\n * .add([\n * { name: 'key4', url: 'http://...', onComplete: function () {} },\n * { url: 'http://...', onComplete: function () {} },\n * 'http://...'\n * ])\n *\n * // and you can use both params and options\n * .add('key', 'http://...', { crossOrigin: true }, function () {})\n * .add('http://...', { crossOrigin: true }, function () {});\n * ```\n *\n * @function\n * @variation 1\n * @param {string} name - The name of the resource to load.\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 2\n * @param {string} name - The name of the resource to load.\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {IAddOptions} [options] - The options for the load.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 3\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 4\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {IAddOptions} [options] - The options for the load.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 5\n * @param {IAddOptions} options - The options for the load. This object must contain a `url` property.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 6\n * @param {Array} resources - An array of resources to load, where each is\n * either an object with the options or a string url. If you pass an object, it must contain a `url` property.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n\n var _proto = Loader.prototype;\n\n _proto.add = function add(name, url, options, cb) {\n // special case of an array of objects or urls\n if (Array.isArray(name)) {\n for (var i = 0; i < name.length; ++i) {\n this.add(name[i]);\n }\n\n return this;\n } // if an object is passed instead of params\n\n\n if (typeof name === 'object') {\n cb = url || name.callback || name.onComplete;\n options = name;\n url = name.url;\n name = name.name || name.key || name.url;\n } // case where no name is passed shift all args over by one.\n\n\n if (typeof url !== 'string') {\n cb = options;\n options = url;\n url = name;\n } // now that we shifted make sure we have a proper url.\n\n\n if (typeof url !== 'string') {\n throw new Error('No url passed to add resource to loader.');\n } // options are optional so people might pass a function and no options\n\n\n if (typeof options === 'function') {\n cb = options;\n options = null;\n } // if loading already you can only add resources that have a parent.\n\n\n if (this.loading && (!options || !options.parentResource)) {\n throw new Error('Cannot add resources while the loader is running.');\n } // check if resource already exists.\n\n\n if (this.resources[name]) {\n throw new Error(\"Resource named \\\"\" + name + \"\\\" already exists.\");\n } // add base url if this isn't an absolute url\n\n\n url = this._prepareUrl(url); // create the store the resource\n\n this.resources[name] = new Resource(name, url, options);\n\n if (typeof cb === 'function') {\n this.resources[name].onAfterMiddleware.once(cb);\n } // if actively loading, make sure to adjust progress chunks for that parent and its children\n\n\n if (this.loading) {\n var parent = options.parentResource;\n var incompleteChildren = [];\n\n for (var _i2 = 0; _i2 < parent.children.length; ++_i2) {\n if (!parent.children[_i2].isComplete) {\n incompleteChildren.push(parent.children[_i2]);\n }\n }\n\n var fullChunk = parent.progressChunk * (incompleteChildren.length + 1); // +1 for parent\n\n var eachChunk = fullChunk / (incompleteChildren.length + 2); // +2 for parent & new child\n\n parent.children.push(this.resources[name]);\n parent.progressChunk = eachChunk;\n\n for (var _i3 = 0; _i3 < incompleteChildren.length; ++_i3) {\n incompleteChildren[_i3].progressChunk = eachChunk;\n }\n\n this.resources[name].progressChunk = eachChunk;\n } // add the resource to the queue\n\n\n this._queue.push(this.resources[name]);\n\n return this;\n }\n /* eslint-enable require-jsdoc,valid-jsdoc */\n\n /**\n * Sets up a middleware function that will run *before* the\n * resource is loaded.\n *\n * @param {function} fn - The middleware function to register.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.pre = function pre(fn) {\n this._beforeMiddleware.push(fn);\n\n return this;\n }\n /**\n * Sets up a middleware function that will run *after* the\n * resource is loaded.\n *\n * @param {function} fn - The middleware function to register.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.use = function use(fn) {\n this._afterMiddleware.push(fn);\n\n return this;\n }\n /**\n * Resets the queue of the loader to prepare for a new load.\n *\n * @return {this} Returns itself.\n */\n ;\n\n _proto.reset = function reset() {\n this.progress = 0;\n this.loading = false;\n\n this._queue.kill();\n\n this._queue.pause(); // abort all resource loads\n\n\n for (var k in this.resources) {\n var res = this.resources[k];\n\n if (res._onLoadBinding) {\n res._onLoadBinding.detach();\n }\n\n if (res.isLoading) {\n res.abort();\n }\n }\n\n this.resources = {};\n return this;\n }\n /**\n * Starts loading the queued resources.\n *\n * @param {function} [cb] - Optional callback that will be bound to the `complete` event.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.load = function load(cb) {\n // register complete callback if they pass one\n if (typeof cb === 'function') {\n this.onComplete.once(cb);\n } // if the queue has already started we are done here\n\n\n if (this.loading) {\n return this;\n }\n\n if (this._queue.idle()) {\n this._onStart();\n\n this._onComplete();\n } else {\n // distribute progress chunks\n var numTasks = this._queue._tasks.length;\n var chunk = MAX_PROGRESS / numTasks;\n\n for (var i = 0; i < this._queue._tasks.length; ++i) {\n this._queue._tasks[i].data.progressChunk = chunk;\n } // notify we are starting\n\n\n this._onStart(); // start loading\n\n\n this._queue.resume();\n }\n\n return this;\n }\n /**\n * The number of resources to load concurrently.\n *\n * @member {number}\n * @default 10\n */\n ;\n\n /**\n * Prepares a url for usage based on the configuration of this object\n *\n * @private\n * @param {string} url - The url to prepare.\n * @return {string} The prepared url.\n */\n _proto._prepareUrl = function _prepareUrl(url) {\n var parsedUrl = parseUri(url, {\n strictMode: true\n });\n var result; // absolute url, just use it as is.\n\n if (parsedUrl.protocol || !parsedUrl.path || url.indexOf('//') === 0) {\n result = url;\n } // if baseUrl doesn't end in slash and url doesn't start with slash, then add a slash inbetween\n else if (this.baseUrl.length && this.baseUrl.lastIndexOf('/') !== this.baseUrl.length - 1 && url.charAt(0) !== '/') {\n result = this.baseUrl + \"/\" + url;\n } else {\n result = this.baseUrl + url;\n } // if we need to add a default querystring, there is a bit more work\n\n\n if (this.defaultQueryString) {\n var hash = rgxExtractUrlHash.exec(result)[0];\n result = result.substr(0, result.length - hash.length);\n\n if (result.indexOf('?') !== -1) {\n result += \"&\" + this.defaultQueryString;\n } else {\n result += \"?\" + this.defaultQueryString;\n }\n\n result += hash;\n }\n\n return result;\n }\n /**\n * Loads a single resource.\n *\n * @private\n * @param {Resource} resource - The resource to load.\n * @param {function} dequeue - The function to call when we need to dequeue this item.\n */\n ;\n\n _proto._loadResource = function _loadResource(resource, dequeue) {\n var _this2 = this;\n\n resource._dequeue = dequeue; // run before middleware\n\n eachSeries(this._beforeMiddleware, function (fn, next) {\n fn.call(_this2, resource, function () {\n // if the before middleware marks the resource as complete,\n // break and don't process any more before middleware\n next(resource.isComplete ? {} : null);\n });\n }, function () {\n if (resource.isComplete) {\n _this2._onLoad(resource);\n } else {\n resource._onLoadBinding = resource.onComplete.once(_this2._onLoad, _this2);\n resource.load();\n }\n }, true);\n }\n /**\n * Called once loading has started.\n *\n * @private\n */\n ;\n\n _proto._onStart = function _onStart() {\n this.progress = 0;\n this.loading = true;\n this.onStart.dispatch(this);\n }\n /**\n * Called once each resource has loaded.\n *\n * @private\n */\n ;\n\n _proto._onComplete = function _onComplete() {\n this.progress = MAX_PROGRESS;\n this.loading = false;\n this.onComplete.dispatch(this, this.resources);\n }\n /**\n * Called each time a resources is loaded.\n *\n * @private\n * @param {Resource} resource - The resource that was loaded\n */\n ;\n\n _proto._onLoad = function _onLoad(resource) {\n var _this3 = this;\n\n resource._onLoadBinding = null; // remove this resource from the async queue, and add it to our list of resources that are being parsed\n\n this._resourcesParsing.push(resource);\n\n resource._dequeue(); // run all the after middleware for this resource\n\n\n eachSeries(this._afterMiddleware, function (fn, next) {\n fn.call(_this3, resource, next);\n }, function () {\n resource.onAfterMiddleware.dispatch(resource);\n _this3.progress = Math.min(MAX_PROGRESS, _this3.progress + resource.progressChunk);\n\n _this3.onProgress.dispatch(_this3, resource);\n\n if (resource.error) {\n _this3.onError.dispatch(resource.error, _this3, resource);\n } else {\n _this3.onLoad.dispatch(_this3, resource);\n }\n\n _this3._resourcesParsing.splice(_this3._resourcesParsing.indexOf(resource), 1); // do completion check\n\n\n if (_this3._queue.idle() && _this3._resourcesParsing.length === 0) {\n _this3._onComplete();\n }\n }, true);\n };\n\n _createClass(Loader, [{\n key: \"concurrency\",\n get: function get() {\n return this._queue.concurrency;\n } // eslint-disable-next-line require-jsdoc\n ,\n set: function set(concurrency) {\n this._queue.concurrency = concurrency;\n }\n }]);\n\n return Loader;\n}();\n/**\n * A default array of middleware to run before loading each resource.\n * Each of these middlewares are added to any new Loader instances when they are created.\n *\n * @private\n * @member {function[]}\n */\n\n\nLoader._defaultBeforeMiddleware = [];\n/**\n * A default array of middleware to run after loading each resource.\n * Each of these middlewares are added to any new Loader instances when they are created.\n *\n * @private\n * @member {function[]}\n */\n\nLoader._defaultAfterMiddleware = [];\n/**\n * Sets up a middleware function that will run *before* the\n * resource is loaded.\n *\n * @static\n * @param {function} fn - The middleware function to register.\n * @return {Loader} Returns itself.\n */\n\nLoader.pre = function LoaderPreStatic(fn) {\n Loader._defaultBeforeMiddleware.push(fn);\n\n return Loader;\n};\n/**\n * Sets up a middleware function that will run *after* the\n * resource is loaded.\n *\n * @static\n * @param {function} fn - The middleware function to register.\n * @return {Loader} Returns itself.\n */\n\n\nLoader.use = function LoaderUseStatic(fn) {\n Loader._defaultAfterMiddleware.push(fn);\n\n return Loader;\n};\n\nexport { Loader, Resource, async, encodeBinary, index as middleware };\n//# sourceMappingURL=resource-loader.esm.js.map\n","/*!\n * @pixi/loaders - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/loaders is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Resource, Loader as Loader$1, middleware } from 'resource-loader';\nimport { EventEmitter } from '@pixi/utils';\nimport { Texture } from '@pixi/core';\n\n/**\n * Loader plugin for handling Texture resources.\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar TextureLoader = function TextureLoader () {};\n\nTextureLoader.use = function use (resource, next)\n{\n // create a new texture if the data is an Image object\n if (resource.data && resource.type === Resource.TYPE.IMAGE)\n {\n resource.texture = Texture.fromLoader(\n resource.data,\n resource.url,\n resource.name\n );\n }\n next();\n};\n\n/**\n * The new loader, extends Resource Loader by Chad Engler: https://github.com/englercj/resource-loader\n *\n * ```js\n * const loader = PIXI.Loader.shared; // PixiJS exposes a premade instance for you to use.\n * //or\n * const loader = new PIXI.Loader(); // you can also create your own if you want\n *\n * const sprites = {};\n *\n * // Chainable `add` to enqueue a resource\n * loader.add('bunny', 'data/bunny.png')\n * .add('spaceship', 'assets/spritesheet.json');\n * loader.add('scoreFont', 'assets/score.fnt');\n *\n * // Chainable `pre` to add a middleware that runs for each resource, *before* loading that resource.\n * // This is useful to implement custom caching modules (using filesystem, indexeddb, memory, etc).\n * loader.pre(cachingMiddleware);\n *\n * // Chainable `use` to add a middleware that runs for each resource, *after* loading that resource.\n * // This is useful to implement custom parsing modules (like spritesheet parsers, spine parser, etc).\n * loader.use(parsingMiddleware);\n *\n * // The `load` method loads the queue of resources, and calls the passed in callback called once all\n * // resources have loaded.\n * loader.load((loader, resources) => {\n * // resources is an object where the key is the name of the resource loaded and the value is the resource object.\n * // They have a couple default properties:\n * // - `url`: The URL that the resource was loaded from\n * // - `error`: The error that happened when trying to load (if any)\n * // - `data`: The raw data that was loaded\n * // also may contain other properties based on the middleware that runs.\n * sprites.bunny = new PIXI.TilingSprite(resources.bunny.texture);\n * sprites.spaceship = new PIXI.TilingSprite(resources.spaceship.texture);\n * sprites.scoreFont = new PIXI.TilingSprite(resources.scoreFont.texture);\n * });\n *\n * // throughout the process multiple signals can be dispatched.\n * loader.onProgress.add(() => {}); // called once per loaded/errored file\n * loader.onError.add(() => {}); // called once per errored file\n * loader.onLoad.add(() => {}); // called once per loaded file\n * loader.onComplete.add(() => {}); // called once when the queued resources all load.\n * ```\n *\n * @see https://github.com/englercj/resource-loader\n *\n * @class Loader\n * @memberof PIXI\n * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader.\n * @param {number} [concurrency=10] - The number of resources to load concurrently.\n */\nvar Loader = /*@__PURE__*/(function (ResourceLoader) {\n function Loader(baseUrl, concurrency)\n {\n var this$1 = this;\n\n ResourceLoader.call(this, baseUrl, concurrency);\n EventEmitter.call(this);\n\n for (var i = 0; i < Loader._plugins.length; ++i)\n {\n var plugin = Loader._plugins[i];\n var pre = plugin.pre;\n var use = plugin.use;\n\n if (pre)\n {\n this.pre(pre);\n }\n\n if (use)\n {\n this.use(use);\n }\n }\n\n // Compat layer, translate the new v2 signals into old v1 events.\n this.onStart.add(function (l) { return this$1.emit('start', l); });\n this.onProgress.add(function (l, r) { return this$1.emit('progress', l, r); });\n this.onError.add(function (e, l, r) { return this$1.emit('error', e, l, r); });\n this.onLoad.add(function (l, r) { return this$1.emit('load', l, r); });\n this.onComplete.add(function (l, r) { return this$1.emit('complete', l, r); });\n\n /**\n * If this loader cannot be destroyed.\n * @member {boolean}\n * @default false\n * @private\n */\n this._protected = false;\n }\n\n if ( ResourceLoader ) Loader.__proto__ = ResourceLoader;\n Loader.prototype = Object.create( ResourceLoader && ResourceLoader.prototype );\n Loader.prototype.constructor = Loader;\n\n var staticAccessors = { shared: { configurable: true } };\n\n /**\n * Destroy the loader, removes references.\n * @private\n */\n Loader.prototype.destroy = function destroy ()\n {\n if (!this._protected)\n {\n this.removeAllListeners();\n this.reset();\n }\n };\n\n /**\n * A premade instance of the loader that can be used to load resources.\n * @name shared\n * @type {PIXI.Loader}\n * @static\n * @memberof PIXI.Loader\n */\n staticAccessors.shared.get = function ()\n {\n var shared = Loader._shared;\n\n if (!shared)\n {\n shared = new Loader();\n shared._protected = true;\n Loader._shared = shared;\n }\n\n return shared;\n };\n\n Object.defineProperties( Loader, staticAccessors );\n\n return Loader;\n}(Loader$1));\n\n// Copy EE3 prototype (mixin)\nObject.assign(Loader.prototype, EventEmitter.prototype);\n\n/**\n * Collection of all installed `use` middleware for Loader.\n *\n * @static\n * @member {Array} _plugins\n * @memberof PIXI.Loader\n * @private\n */\nLoader._plugins = [];\n\n/**\n * Adds a Loader plugin for the global shared loader and all\n * new Loader instances created.\n *\n * @static\n * @method registerPlugin\n * @memberof PIXI.Loader\n * @param {PIXI.ILoaderPlugin} plugin - The plugin to add\n * @return {PIXI.Loader} Reference to PIXI.Loader for chaining\n */\nLoader.registerPlugin = function registerPlugin(plugin)\n{\n Loader._plugins.push(plugin);\n\n if (plugin.add)\n {\n plugin.add();\n }\n\n return Loader;\n};\n\n// parse any blob into more usable objects (e.g. Image)\nLoader.registerPlugin({ use: middleware.parsing });\n\n// parse any Image objects into textures\nLoader.registerPlugin(TextureLoader);\n\n/**\n * Plugin to be installed for handling specific Loader resources.\n *\n * @memberof PIXI\n * @typedef ILoaderPlugin\n * @property {function} [add] - Function to call immediate after registering plugin.\n * @property {PIXI.Loader.loaderMiddleware} [pre] - Middleware function to run before load, the\n * arguments for this are `(resource, next)`\n * @property {PIXI.Loader.loaderMiddleware} [use] - Middleware function to run after load, the\n * arguments for this are `(resource, next)`\n */\n\n/**\n * @memberof PIXI.Loader\n * @callback loaderMiddleware\n * @param {PIXI.LoaderResource} resource\n * @param {function} next\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onStart\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onProgress\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onError\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onLoad\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onComplete\n */\n\n/**\n * Application plugin for supporting loader option. Installing the LoaderPlugin\n * is not necessary if using **pixi.js** or **pixi.js-legacy**.\n * @example\n * import {AppLoaderPlugin} from '@pixi/loaders';\n * import {Application} from '@pixi/app';\n * Application.registerPlugin(AppLoaderPlugin);\n * @class\n * @memberof PIXI\n */\nvar AppLoaderPlugin = function AppLoaderPlugin () {};\n\nAppLoaderPlugin.init = function init (options)\n{\n options = Object.assign({\n sharedLoader: false,\n }, options);\n\n /**\n * Loader instance to help with asset loading.\n * @name PIXI.Application#loader\n * @type {PIXI.Loader}\n * @readonly\n */\n this.loader = options.sharedLoader ? Loader.shared : new Loader();\n};\n\n/**\n * Called when application destroyed\n * @private\n */\nAppLoaderPlugin.destroy = function destroy ()\n{\n if (this.loader)\n {\n this.loader.destroy();\n this.loader = null;\n }\n};\n\n/**\n * Reference to **{@link https://github.com/englercj/resource-loader\n * resource-loader}**'s Resource class.\n * @see http://englercj.github.io/resource-loader/Resource.html\n * @class LoaderResource\n * @memberof PIXI\n */\nvar LoaderResource = Resource;\n\nexport { AppLoaderPlugin, Loader, LoaderResource, TextureLoader };\n//# sourceMappingURL=loaders.es.js.map\n","/*!\n * @pixi/particles - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/particles is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { BLEND_MODES, TYPES } from '@pixi/constants';\nimport { hex2rgb, createIndicesForQuads, correctBlendMode, premultiplyRgba, premultiplyTint } from '@pixi/utils';\nimport { Container } from '@pixi/display';\nimport { Geometry, Buffer, ObjectRenderer, Shader } from '@pixi/core';\nimport { Matrix } from '@pixi/math';\n\n/**\n * The ParticleContainer class is a really fast version of the Container built solely for speed,\n * so use when you need a lot of sprites or particles.\n *\n * The tradeoff of the ParticleContainer is that most advanced functionality will not work.\n * ParticleContainer implements the basic object transform (position, scale, rotation)\n * and some advanced functionality like tint (as of v4.5.6).\n *\n * Other more advanced functionality like masking, children, filters, etc will not work on sprites in this batch.\n *\n * It's extremely easy to use:\n * ```js\n * let container = new ParticleContainer();\n *\n * for (let i = 0; i < 100; ++i)\n * {\n * let sprite = PIXI.Sprite.from(\"myImage.png\");\n * container.addChild(sprite);\n * }\n * ```\n *\n * And here you have a hundred sprites that will be rendered at the speed of light.\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar ParticleContainer = /*@__PURE__*/(function (Container) {\n function ParticleContainer(maxSize, properties, batchSize, autoResize)\n {\n if ( maxSize === void 0 ) maxSize = 1500;\n if ( batchSize === void 0 ) batchSize = 16384;\n if ( autoResize === void 0 ) autoResize = false;\n\n Container.call(this);\n\n // Making sure the batch size is valid\n // 65535 is max vertex index in the index buffer (see ParticleRenderer)\n // so max number of particles is 65536 / 4 = 16384\n var maxBatchSize = 16384;\n\n if (batchSize > maxBatchSize)\n {\n batchSize = maxBatchSize;\n }\n\n /**\n * Set properties to be dynamic (true) / static (false)\n *\n * @member {boolean[]}\n * @private\n */\n this._properties = [false, true, false, false, false];\n\n /**\n * @member {number}\n * @private\n */\n this._maxSize = maxSize;\n\n /**\n * @member {number}\n * @private\n */\n this._batchSize = batchSize;\n\n /**\n * @member {Array}\n * @private\n */\n this._buffers = null;\n\n /**\n * for every batch stores _updateID corresponding to the last change in that batch\n * @member {number[]}\n * @private\n */\n this._bufferUpdateIDs = [];\n\n /**\n * when child inserted, removed or changes position this number goes up\n * @member {number[]}\n * @private\n */\n this._updateID = 0;\n\n /**\n * @member {boolean}\n *\n */\n this.interactiveChildren = false;\n\n /**\n * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL`\n * to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * If true, container allocates more batches in case there are more than `maxSize` particles.\n * @member {boolean}\n * @default false\n */\n this.autoResize = autoResize;\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * Default to true here as performance is usually the priority for particles.\n *\n * @member {boolean}\n * @default true\n */\n this.roundPixels = true;\n\n /**\n * The texture used to render the children.\n *\n * @readonly\n * @member {PIXI.BaseTexture}\n */\n this.baseTexture = null;\n\n this.setProperties(properties);\n\n /**\n * The tint applied to the container.\n * This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @private\n * @member {number}\n * @default 0xFFFFFF\n */\n this._tint = 0;\n this.tintRgb = new Float32Array(4);\n this.tint = 0xFFFFFF;\n }\n\n if ( Container ) ParticleContainer.__proto__ = Container;\n ParticleContainer.prototype = Object.create( Container && Container.prototype );\n ParticleContainer.prototype.constructor = ParticleContainer;\n\n var prototypeAccessors = { tint: { configurable: true } };\n\n /**\n * Sets the private properties array to dynamic / static based on the passed properties object\n *\n * @param {object} properties - The properties to be uploaded\n */\n ParticleContainer.prototype.setProperties = function setProperties (properties)\n {\n if (properties)\n {\n this._properties[0] = 'vertices' in properties || 'scale' in properties\n ? !!properties.vertices || !!properties.scale : this._properties[0];\n this._properties[1] = 'position' in properties ? !!properties.position : this._properties[1];\n this._properties[2] = 'rotation' in properties ? !!properties.rotation : this._properties[2];\n this._properties[3] = 'uvs' in properties ? !!properties.uvs : this._properties[3];\n this._properties[4] = 'tint' in properties || 'alpha' in properties\n ? !!properties.tint || !!properties.alpha : this._properties[4];\n }\n };\n\n /**\n * Updates the object transform for rendering\n *\n * @private\n */\n ParticleContainer.prototype.updateTransform = function updateTransform ()\n {\n // TODO don't need to!\n this.displayObjectUpdateTransform();\n // PIXI.Container.prototype.updateTransform.call( this );\n };\n\n /**\n * The tint applied to the container. This is a hex value.\n * A value of 0xFFFFFF will remove any tint effect.\n ** IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer.\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._tint = value;\n hex2rgb(value, this.tintRgb);\n };\n\n /**\n * Renders the container using the WebGL renderer\n *\n * @private\n * @param {PIXI.Renderer} renderer - The webgl renderer\n */\n ParticleContainer.prototype.render = function render (renderer)\n {\n var this$1 = this;\n\n if (!this.visible || this.worldAlpha <= 0 || !this.children.length || !this.renderable)\n {\n return;\n }\n\n if (!this.baseTexture)\n {\n this.baseTexture = this.children[0]._texture.baseTexture;\n if (!this.baseTexture.valid)\n {\n this.baseTexture.once('update', function () { return this$1.onChildrenChange(0); });\n }\n }\n\n renderer.batch.setObjectRenderer(renderer.plugins.particle);\n renderer.plugins.particle.render(this);\n };\n\n /**\n * Set the flag that static data should be updated to true\n *\n * @private\n * @param {number} smallestChildIndex - The smallest child index\n */\n ParticleContainer.prototype.onChildrenChange = function onChildrenChange (smallestChildIndex)\n {\n var bufferIndex = Math.floor(smallestChildIndex / this._batchSize);\n\n while (this._bufferUpdateIDs.length < bufferIndex)\n {\n this._bufferUpdateIDs.push(0);\n }\n this._bufferUpdateIDs[bufferIndex] = ++this._updateID;\n };\n\n ParticleContainer.prototype.dispose = function dispose ()\n {\n if (this._buffers)\n {\n for (var i = 0; i < this._buffers.length; ++i)\n {\n this._buffers[i].destroy();\n }\n\n this._buffers = null;\n }\n };\n\n /**\n * Destroys the container\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their\n * destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n ParticleContainer.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.dispose();\n\n this._properties = null;\n this._buffers = null;\n this._bufferUpdateIDs = null;\n };\n\n Object.defineProperties( ParticleContainer.prototype, prototypeAccessors );\n\n return ParticleContainer;\n}(Container));\n\n/**\n * @author Mat Groves\n *\n * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/\n * for creating the original PixiJS version!\n * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that\n * they now share 4 bytes on the vertex buffer\n *\n * Heavily inspired by LibGDX's ParticleBuffer:\n * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleBuffer.java\n */\n\n/**\n * The particle buffer manages the static and dynamic buffers for a particle container.\n *\n * @class\n * @private\n * @memberof PIXI\n */\nvar ParticleBuffer = function ParticleBuffer(properties, dynamicPropertyFlags, size)\n{\n this.geometry = new Geometry();\n\n this.indexBuffer = null;\n\n /**\n * The number of particles the buffer can hold\n *\n * @private\n * @member {number}\n */\n this.size = size;\n\n /**\n * A list of the properties that are dynamic.\n *\n * @private\n * @member {object[]}\n */\n this.dynamicProperties = [];\n\n /**\n * A list of the properties that are static.\n *\n * @private\n * @member {object[]}\n */\n this.staticProperties = [];\n\n for (var i = 0; i < properties.length; ++i)\n {\n var property = properties[i];\n\n // Make copy of properties object so that when we edit the offset it doesn't\n // change all other instances of the object literal\n property = {\n attributeName: property.attributeName,\n size: property.size,\n uploadFunction: property.uploadFunction,\n type: property.type || TYPES.FLOAT,\n offset: property.offset,\n };\n\n if (dynamicPropertyFlags[i])\n {\n this.dynamicProperties.push(property);\n }\n else\n {\n this.staticProperties.push(property);\n }\n }\n\n this.staticStride = 0;\n this.staticBuffer = null;\n this.staticData = null;\n this.staticDataUint32 = null;\n\n this.dynamicStride = 0;\n this.dynamicBuffer = null;\n this.dynamicData = null;\n this.dynamicDataUint32 = null;\n\n this._updateID = 0;\n\n this.initBuffers();\n};\n\n/**\n * Sets up the renderer context and necessary buffers.\n *\n * @private\n */\nParticleBuffer.prototype.initBuffers = function initBuffers ()\n{\n var geometry = this.geometry;\n\n var dynamicOffset = 0;\n\n /**\n * Holds the indices of the geometry (quads) to draw\n *\n * @member {Uint16Array}\n * @private\n */\n this.indexBuffer = new Buffer(createIndicesForQuads(this.size), true, true);\n geometry.addIndex(this.indexBuffer);\n\n this.dynamicStride = 0;\n\n for (var i = 0; i < this.dynamicProperties.length; ++i)\n {\n var property = this.dynamicProperties[i];\n\n property.offset = dynamicOffset;\n dynamicOffset += property.size;\n this.dynamicStride += property.size;\n }\n\n var dynBuffer = new ArrayBuffer(this.size * this.dynamicStride * 4 * 4);\n\n this.dynamicData = new Float32Array(dynBuffer);\n this.dynamicDataUint32 = new Uint32Array(dynBuffer);\n this.dynamicBuffer = new Buffer(this.dynamicData, false, false);\n\n // static //\n var staticOffset = 0;\n\n this.staticStride = 0;\n\n for (var i$1 = 0; i$1 < this.staticProperties.length; ++i$1)\n {\n var property$1 = this.staticProperties[i$1];\n\n property$1.offset = staticOffset;\n staticOffset += property$1.size;\n this.staticStride += property$1.size;\n }\n\n var statBuffer = new ArrayBuffer(this.size * this.staticStride * 4 * 4);\n\n this.staticData = new Float32Array(statBuffer);\n this.staticDataUint32 = new Uint32Array(statBuffer);\n this.staticBuffer = new Buffer(this.staticData, true, false);\n\n for (var i$2 = 0; i$2 < this.dynamicProperties.length; ++i$2)\n {\n var property$2 = this.dynamicProperties[i$2];\n\n geometry.addAttribute(\n property$2.attributeName,\n this.dynamicBuffer,\n 0,\n property$2.type === TYPES.UNSIGNED_BYTE,\n property$2.type,\n this.dynamicStride * 4,\n property$2.offset * 4\n );\n }\n\n for (var i$3 = 0; i$3 < this.staticProperties.length; ++i$3)\n {\n var property$3 = this.staticProperties[i$3];\n\n geometry.addAttribute(\n property$3.attributeName,\n this.staticBuffer,\n 0,\n property$3.type === TYPES.UNSIGNED_BYTE,\n property$3.type,\n this.staticStride * 4,\n property$3.offset * 4\n );\n }\n};\n\n/**\n * Uploads the dynamic properties.\n *\n * @private\n * @param {PIXI.DisplayObject[]} children - The children to upload.\n * @param {number} startIndex - The index to start at.\n * @param {number} amount - The number to upload.\n */\nParticleBuffer.prototype.uploadDynamic = function uploadDynamic (children, startIndex, amount)\n{\n for (var i = 0; i < this.dynamicProperties.length; i++)\n {\n var property = this.dynamicProperties[i];\n\n property.uploadFunction(children, startIndex, amount,\n property.type === TYPES.UNSIGNED_BYTE ? this.dynamicDataUint32 : this.dynamicData,\n this.dynamicStride, property.offset);\n }\n\n this.dynamicBuffer._updateID++;\n};\n\n/**\n * Uploads the static properties.\n *\n * @private\n * @param {PIXI.DisplayObject[]} children - The children to upload.\n * @param {number} startIndex - The index to start at.\n * @param {number} amount - The number to upload.\n */\nParticleBuffer.prototype.uploadStatic = function uploadStatic (children, startIndex, amount)\n{\n for (var i = 0; i < this.staticProperties.length; i++)\n {\n var property = this.staticProperties[i];\n\n property.uploadFunction(children, startIndex, amount,\n property.type === TYPES.UNSIGNED_BYTE ? this.staticDataUint32 : this.staticData,\n this.staticStride, property.offset);\n }\n\n this.staticBuffer._updateID++;\n};\n\n/**\n * Destroys the ParticleBuffer.\n *\n * @private\n */\nParticleBuffer.prototype.destroy = function destroy ()\n{\n this.indexBuffer = null;\n\n this.dynamicProperties = null;\n // this.dynamicBuffer.destroy();\n this.dynamicBuffer = null;\n this.dynamicData = null;\n this.dynamicDataUint32 = null;\n\n this.staticProperties = null;\n // this.staticBuffer.destroy();\n this.staticBuffer = null;\n this.staticData = null;\n this.staticDataUint32 = null;\n // all buffers are destroyed inside geometry\n this.geometry.destroy();\n};\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\nattribute vec4 aColor;\\n\\nattribute vec2 aPositionCoord;\\nattribute float aRotation;\\n\\nuniform mat3 translationMatrix;\\nuniform vec4 uColor;\\n\\nvarying vec2 vTextureCoord;\\nvarying vec4 vColor;\\n\\nvoid main(void){\\n float x = (aVertexPosition.x) * cos(aRotation) - (aVertexPosition.y) * sin(aRotation);\\n float y = (aVertexPosition.x) * sin(aRotation) + (aVertexPosition.y) * cos(aRotation);\\n\\n vec2 v = vec2(x, y);\\n v = v + aPositionCoord;\\n\\n gl_Position = vec4((translationMatrix * vec3(v, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vColor = aColor * uColor;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\nvarying vec4 vColor;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n vec4 color = texture2D(uSampler, vTextureCoord) * vColor;\\n gl_FragColor = color;\\n}\";\n\n/**\n * @author Mat Groves\n *\n * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/\n * for creating the original PixiJS version!\n * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that they now\n * share 4 bytes on the vertex buffer\n *\n * Heavily inspired by LibGDX's ParticleRenderer:\n * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleRenderer.java\n */\n\n/**\n * Renderer for Particles that is designer for speed over feature set.\n *\n * @class\n * @memberof PIXI\n */\nvar ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function ParticleRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n // 65535 is max vertex index in the index buffer (see ParticleRenderer)\n // so max number of particles is 65536 / 4 = 16384\n // and max number of element in the index buffer is 16384 * 6 = 98304\n // Creating a full index buffer, overhead is 98304 * 2 = 196Ko\n // let numIndices = 98304;\n\n /**\n * The default shader that is used if a sprite doesn't have a more specific one.\n *\n * @member {PIXI.Shader}\n */\n this.shader = null;\n\n this.properties = null;\n\n this.tempMatrix = new Matrix();\n\n this.properties = [\n // verticesData\n {\n attributeName: 'aVertexPosition',\n size: 2,\n uploadFunction: this.uploadVertices,\n offset: 0,\n },\n // positionData\n {\n attributeName: 'aPositionCoord',\n size: 2,\n uploadFunction: this.uploadPosition,\n offset: 0,\n },\n // rotationData\n {\n attributeName: 'aRotation',\n size: 1,\n uploadFunction: this.uploadRotation,\n offset: 0,\n },\n // uvsData\n {\n attributeName: 'aTextureCoord',\n size: 2,\n uploadFunction: this.uploadUvs,\n offset: 0,\n },\n // tintData\n {\n attributeName: 'aColor',\n size: 1,\n type: TYPES.UNSIGNED_BYTE,\n uploadFunction: this.uploadTint,\n offset: 0,\n } ];\n\n this.shader = Shader.from(vertex, fragment, {});\n }\n\n if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer;\n ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n ParticleRenderer.prototype.constructor = ParticleRenderer;\n\n /**\n * Renders the particle container object.\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n */\n ParticleRenderer.prototype.render = function render (container)\n {\n var children = container.children;\n var maxSize = container._maxSize;\n var batchSize = container._batchSize;\n var renderer = this.renderer;\n var totalChildren = children.length;\n\n if (totalChildren === 0)\n {\n return;\n }\n else if (totalChildren > maxSize && !container.autoResize)\n {\n totalChildren = maxSize;\n }\n\n var buffers = container._buffers;\n\n if (!buffers)\n {\n buffers = container._buffers = this.generateBuffers(container);\n }\n\n var baseTexture = children[0]._texture.baseTexture;\n\n // if the uvs have not updated then no point rendering just yet!\n this.renderer.state.setBlendMode(correctBlendMode(container.blendMode, baseTexture.premultiplyAlpha));\n\n var gl = renderer.gl;\n\n var m = container.worldTransform.copyTo(this.tempMatrix);\n\n m.prepend(renderer.globalUniforms.uniforms.projectionMatrix);\n\n this.shader.uniforms.translationMatrix = m.toArray(true);\n\n this.shader.uniforms.uColor = premultiplyRgba(container.tintRgb,\n container.worldAlpha, this.shader.uniforms.uColor, baseTexture.premultiplyAlpha);\n\n this.shader.uniforms.uSampler = baseTexture;\n\n this.renderer.shader.bind(this.shader);\n\n var updateStatic = false;\n\n // now lets upload and render the buffers..\n for (var i = 0, j = 0; i < totalChildren; i += batchSize, j += 1)\n {\n var amount = (totalChildren - i);\n\n if (amount > batchSize)\n {\n amount = batchSize;\n }\n\n if (j >= buffers.length)\n {\n buffers.push(this._generateOneMoreBuffer(container));\n }\n\n var buffer = buffers[j];\n\n // we always upload the dynamic\n buffer.uploadDynamic(children, i, amount);\n\n var bid = container._bufferUpdateIDs[j] || 0;\n\n updateStatic = updateStatic || (buffer._updateID < bid);\n // we only upload the static content when we have to!\n if (updateStatic)\n {\n buffer._updateID = container._updateID;\n buffer.uploadStatic(children, i, amount);\n }\n\n // bind the buffer\n renderer.geometry.bind(buffer.geometry);\n gl.drawElements(gl.TRIANGLES, amount * 6, gl.UNSIGNED_SHORT, 0);\n }\n };\n\n /**\n * Creates one particle buffer for each child in the container we want to render and updates internal properties\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n * @return {PIXI.ParticleBuffer[]} The buffers\n * @private\n */\n ParticleRenderer.prototype.generateBuffers = function generateBuffers (container)\n {\n var buffers = [];\n var size = container._maxSize;\n var batchSize = container._batchSize;\n var dynamicPropertyFlags = container._properties;\n\n for (var i = 0; i < size; i += batchSize)\n {\n buffers.push(new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize));\n }\n\n return buffers;\n };\n\n /**\n * Creates one more particle buffer, because container has autoResize feature\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n * @return {PIXI.ParticleBuffer} generated buffer\n * @private\n */\n ParticleRenderer.prototype._generateOneMoreBuffer = function _generateOneMoreBuffer (container)\n {\n var batchSize = container._batchSize;\n var dynamicPropertyFlags = container._properties;\n\n return new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize);\n };\n\n /**\n * Uploads the vertices.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their vertices uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadVertices = function uploadVertices (children, startIndex, amount, array, stride, offset)\n {\n var w0 = 0;\n var w1 = 0;\n var h0 = 0;\n var h1 = 0;\n\n for (var i = 0; i < amount; ++i)\n {\n var sprite = children[startIndex + i];\n var texture = sprite._texture;\n var sx = sprite.scale.x;\n var sy = sprite.scale.y;\n var trim = texture.trim;\n var orig = texture.orig;\n\n if (trim)\n {\n // if the sprite is trimmed and is not a tilingsprite then we need to add the\n // extra space before transforming the sprite coords..\n w1 = trim.x - (sprite.anchor.x * orig.width);\n w0 = w1 + trim.width;\n\n h1 = trim.y - (sprite.anchor.y * orig.height);\n h0 = h1 + trim.height;\n }\n else\n {\n w0 = (orig.width) * (1 - sprite.anchor.x);\n w1 = (orig.width) * -sprite.anchor.x;\n\n h0 = orig.height * (1 - sprite.anchor.y);\n h1 = orig.height * -sprite.anchor.y;\n }\n\n array[offset] = w1 * sx;\n array[offset + 1] = h1 * sy;\n\n array[offset + stride] = w0 * sx;\n array[offset + stride + 1] = h1 * sy;\n\n array[offset + (stride * 2)] = w0 * sx;\n array[offset + (stride * 2) + 1] = h0 * sy;\n\n array[offset + (stride * 3)] = w1 * sx;\n array[offset + (stride * 3) + 1] = h0 * sy;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the position.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their positions uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadPosition = function uploadPosition (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; i++)\n {\n var spritePosition = children[startIndex + i].position;\n\n array[offset] = spritePosition.x;\n array[offset + 1] = spritePosition.y;\n\n array[offset + stride] = spritePosition.x;\n array[offset + stride + 1] = spritePosition.y;\n\n array[offset + (stride * 2)] = spritePosition.x;\n array[offset + (stride * 2) + 1] = spritePosition.y;\n\n array[offset + (stride * 3)] = spritePosition.x;\n array[offset + (stride * 3) + 1] = spritePosition.y;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the rotiation.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadRotation = function uploadRotation (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; i++)\n {\n var spriteRotation = children[startIndex + i].rotation;\n\n array[offset] = spriteRotation;\n array[offset + stride] = spriteRotation;\n array[offset + (stride * 2)] = spriteRotation;\n array[offset + (stride * 3)] = spriteRotation;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the Uvs\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadUvs = function uploadUvs (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; ++i)\n {\n var textureUvs = children[startIndex + i]._texture._uvs;\n\n if (textureUvs)\n {\n array[offset] = textureUvs.x0;\n array[offset + 1] = textureUvs.y0;\n\n array[offset + stride] = textureUvs.x1;\n array[offset + stride + 1] = textureUvs.y1;\n\n array[offset + (stride * 2)] = textureUvs.x2;\n array[offset + (stride * 2) + 1] = textureUvs.y2;\n\n array[offset + (stride * 3)] = textureUvs.x3;\n array[offset + (stride * 3) + 1] = textureUvs.y3;\n\n offset += stride * 4;\n }\n else\n {\n // TODO you know this can be easier!\n array[offset] = 0;\n array[offset + 1] = 0;\n\n array[offset + stride] = 0;\n array[offset + stride + 1] = 0;\n\n array[offset + (stride * 2)] = 0;\n array[offset + (stride * 2) + 1] = 0;\n\n array[offset + (stride * 3)] = 0;\n array[offset + (stride * 3) + 1] = 0;\n\n offset += stride * 4;\n }\n }\n };\n\n /**\n * Uploads the tint.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadTint = function uploadTint (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; ++i)\n {\n var sprite = children[startIndex + i];\n var premultiplied = sprite._texture.baseTexture.premultiplyAlpha;\n var alpha = sprite.alpha;\n // we dont call extra function if alpha is 1.0, that's faster\n var argb = alpha < 1.0 && premultiplied ? premultiplyTint(sprite._tintRGB, alpha)\n : sprite._tintRGB + (alpha * 255 << 24);\n\n array[offset] = argb;\n array[offset + stride] = argb;\n array[offset + (stride * 2)] = argb;\n array[offset + (stride * 3)] = argb;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Destroys the ParticleRenderer.\n */\n ParticleRenderer.prototype.destroy = function destroy ()\n {\n ObjectRenderer.prototype.destroy.call(this);\n\n if (this.shader)\n {\n this.shader.destroy();\n this.shader = null;\n }\n\n this.tempMatrix = null;\n };\n\n return ParticleRenderer;\n}(ObjectRenderer));\n\nexport { ParticleContainer, ParticleRenderer };\n//# sourceMappingURL=particles.es.js.map\n","/*!\n * @pixi/spritesheet - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/spritesheet is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Rectangle } from '@pixi/math';\nimport { Texture } from '@pixi/core';\nimport { getResolutionOfUrl, url } from '@pixi/utils';\nimport { LoaderResource } from '@pixi/loaders';\n\n/**\n * Utility class for maintaining reference to a collection\n * of Textures on a single Spritesheet.\n *\n * To access a sprite sheet from your code pass its JSON data file to Pixi's loader:\n *\n * ```js\n * PIXI.Loader.shared.add(\"images/spritesheet.json\").load(setup);\n *\n * function setup() {\n * let sheet = PIXI.Loader.shared.resources[\"images/spritesheet.json\"].spritesheet;\n * ...\n * }\n * ```\n * With the `sheet.textures` you can create Sprite objects,`sheet.animations` can be used to create an AnimatedSprite.\n *\n * Sprite sheets can be packed using tools like {@link https://codeandweb.com/texturepacker|TexturePacker},\n * {@link https://renderhjs.net/shoebox/|Shoebox} or {@link https://github.com/krzysztof-o/spritesheet.js|Spritesheet.js}.\n * Default anchor points (see {@link PIXI.Texture#defaultAnchor}) and grouping of animation sprites are currently only\n * supported by TexturePacker.\n *\n * @class\n * @memberof PIXI\n */\nvar Spritesheet = function Spritesheet(baseTexture, data, resolutionFilename)\n{\n if ( resolutionFilename === void 0 ) resolutionFilename = null;\n\n /**\n * Reference to ths source texture\n * @type {PIXI.BaseTexture}\n */\n this.baseTexture = baseTexture;\n\n /**\n * A map containing all textures of the sprite sheet.\n * Can be used to create a {@link PIXI.Sprite|Sprite}:\n * ```js\n * new PIXI.Sprite(sheet.textures[\"image.png\"]);\n * ```\n * @member {Object}\n */\n this.textures = {};\n\n /**\n * A map containing the textures for each animation.\n * Can be used to create an {@link PIXI.AnimatedSprite|AnimatedSprite}:\n * ```js\n * new PIXI.AnimatedSprite(sheet.animations[\"anim_name\"])\n * ```\n * @member {Object}\n */\n this.animations = {};\n\n /**\n * Reference to the original JSON data.\n * @type {Object}\n */\n this.data = data;\n\n /**\n * The resolution of the spritesheet.\n * @type {number}\n */\n this.resolution = this._updateResolution(\n resolutionFilename\n || (this.baseTexture.resource ? this.baseTexture.resource.url : null)\n );\n\n /**\n * Map of spritesheet frames.\n * @type {Object}\n * @private\n */\n this._frames = this.data.frames;\n\n /**\n * Collection of frame names.\n * @type {string[]}\n * @private\n */\n this._frameKeys = Object.keys(this._frames);\n\n /**\n * Current batch index being processed.\n * @type {number}\n * @private\n */\n this._batchIndex = 0;\n\n /**\n * Callback when parse is completed.\n * @type {Function}\n * @private\n */\n this._callback = null;\n};\n\nvar staticAccessors = { BATCH_SIZE: { configurable: true } };\n\n/**\n * Generate the resolution from the filename or fallback\n * to the meta.scale field of the JSON data.\n *\n * @private\n * @param {string} resolutionFilename - The filename to use for resolving\n * the default resolution.\n * @return {number} Resolution to use for spritesheet.\n */\nstaticAccessors.BATCH_SIZE.get = function ()\n{\n return 1000;\n};\n\nSpritesheet.prototype._updateResolution = function _updateResolution (resolutionFilename)\n{\n var scale = this.data.meta.scale;\n\n // Use a defaultValue of `null` to check if a url-based resolution is set\n var resolution = getResolutionOfUrl(resolutionFilename, null);\n\n // No resolution found via URL\n if (resolution === null)\n {\n // Use the scale value or default to 1\n resolution = scale !== undefined ? parseFloat(scale) : 1;\n }\n\n // For non-1 resolutions, update baseTexture\n if (resolution !== 1)\n {\n this.baseTexture.setResolution(resolution);\n }\n\n return resolution;\n};\n\n/**\n * Parser spritesheet from loaded data. This is done asynchronously\n * to prevent creating too many Texture within a single process.\n *\n * @param {Function} callback - Callback when complete returns\n * a map of the Textures for this spritesheet.\n */\nSpritesheet.prototype.parse = function parse (callback)\n{\n this._batchIndex = 0;\n this._callback = callback;\n\n if (this._frameKeys.length <= Spritesheet.BATCH_SIZE)\n {\n this._processFrames(0);\n this._processAnimations();\n this._parseComplete();\n }\n else\n {\n this._nextBatch();\n }\n};\n\n/**\n * Process a batch of frames\n *\n * @private\n * @param {number} initialFrameIndex - The index of frame to start.\n */\nSpritesheet.prototype._processFrames = function _processFrames (initialFrameIndex)\n{\n var frameIndex = initialFrameIndex;\n var maxFrames = Spritesheet.BATCH_SIZE;\n\n while (frameIndex - initialFrameIndex < maxFrames && frameIndex < this._frameKeys.length)\n {\n var i = this._frameKeys[frameIndex];\n var data = this._frames[i];\n var rect = data.frame;\n\n if (rect)\n {\n var frame = null;\n var trim = null;\n var sourceSize = data.trimmed !== false && data.sourceSize\n ? data.sourceSize : data.frame;\n\n var orig = new Rectangle(\n 0,\n 0,\n Math.floor(sourceSize.w) / this.resolution,\n Math.floor(sourceSize.h) / this.resolution\n );\n\n if (data.rotated)\n {\n frame = new Rectangle(\n Math.floor(rect.x) / this.resolution,\n Math.floor(rect.y) / this.resolution,\n Math.floor(rect.h) / this.resolution,\n Math.floor(rect.w) / this.resolution\n );\n }\n else\n {\n frame = new Rectangle(\n Math.floor(rect.x) / this.resolution,\n Math.floor(rect.y) / this.resolution,\n Math.floor(rect.w) / this.resolution,\n Math.floor(rect.h) / this.resolution\n );\n }\n\n // Check to see if the sprite is trimmed\n if (data.trimmed !== false && data.spriteSourceSize)\n {\n trim = new Rectangle(\n Math.floor(data.spriteSourceSize.x) / this.resolution,\n Math.floor(data.spriteSourceSize.y) / this.resolution,\n Math.floor(rect.w) / this.resolution,\n Math.floor(rect.h) / this.resolution\n );\n }\n\n this.textures[i] = new Texture(\n this.baseTexture,\n frame,\n orig,\n trim,\n data.rotated ? 2 : 0,\n data.anchor\n );\n\n // lets also add the frame to pixi's global cache for 'from' and 'fromLoader' functions\n Texture.addToCache(this.textures[i], i);\n }\n\n frameIndex++;\n }\n};\n\n/**\n * Parse animations config\n *\n * @private\n */\nSpritesheet.prototype._processAnimations = function _processAnimations ()\n{\n var animations = this.data.animations || {};\n\n for (var animName in animations)\n {\n this.animations[animName] = [];\n for (var i = 0; i < animations[animName].length; i++)\n {\n var frameName = animations[animName][i];\n\n this.animations[animName].push(this.textures[frameName]);\n }\n }\n};\n\n/**\n * The parse has completed.\n *\n * @private\n */\nSpritesheet.prototype._parseComplete = function _parseComplete ()\n{\n var callback = this._callback;\n\n this._callback = null;\n this._batchIndex = 0;\n callback.call(this, this.textures);\n};\n\n/**\n * Begin the next batch of textures.\n *\n * @private\n */\nSpritesheet.prototype._nextBatch = function _nextBatch ()\n{\n var this$1 = this;\n\n this._processFrames(this._batchIndex * Spritesheet.BATCH_SIZE);\n this._batchIndex++;\n setTimeout(function () {\n if (this$1._batchIndex * Spritesheet.BATCH_SIZE < this$1._frameKeys.length)\n {\n this$1._nextBatch();\n }\n else\n {\n this$1._processAnimations();\n this$1._parseComplete();\n }\n }, 0);\n};\n\n/**\n * Destroy Spritesheet and don't use after this.\n *\n * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well\n */\nSpritesheet.prototype.destroy = function destroy (destroyBase)\n{\n if ( destroyBase === void 0 ) destroyBase = false;\n\n for (var i in this.textures)\n {\n this.textures[i].destroy();\n }\n this._frames = null;\n this._frameKeys = null;\n this.data = null;\n this.textures = null;\n if (destroyBase)\n {\n this.baseTexture.destroy();\n }\n this.baseTexture = null;\n};\n\nObject.defineProperties( Spritesheet, staticAccessors );\n\n/**\n * {@link PIXI.Loader Loader} middleware for loading texture atlases that have been created with\n * TexturePacker or similar JSON-based spritesheet.\n *\n * This middleware automatically generates Texture resources.\n *\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar SpritesheetLoader = function SpritesheetLoader () {};\n\nSpritesheetLoader.use = function use (resource, next)\n{\n var imageResourceName = (resource.name) + \"_image\";\n\n // skip if no data, its not json, it isn't spritesheet data, or the image resource already exists\n if (!resource.data\n || resource.type !== LoaderResource.TYPE.JSON\n || !resource.data.frames\n || this.resources[imageResourceName]\n )\n {\n next();\n\n return;\n }\n\n var loadOptions = {\n crossOrigin: resource.crossOrigin,\n metadata: resource.metadata.imageMetadata,\n parentResource: resource,\n };\n\n var resourcePath = SpritesheetLoader.getResourcePath(resource, this.baseUrl);\n\n // load the image for this sheet\n this.add(imageResourceName, resourcePath, loadOptions, function onImageLoad(res)\n {\n if (res.error)\n {\n next(res.error);\n\n return;\n }\n\n var spritesheet = new Spritesheet(\n res.texture.baseTexture,\n resource.data,\n resource.url\n );\n\n spritesheet.parse(function () {\n resource.spritesheet = spritesheet;\n resource.textures = spritesheet.textures;\n next();\n });\n });\n};\n\n/**\n * Get the spritesheets root path\n * @param {PIXI.LoaderResource} resource - Resource to check path\n * @param {string} baseUrl - Base root url\n */\nSpritesheetLoader.getResourcePath = function getResourcePath (resource, baseUrl)\n{\n // Prepend url path unless the resource image is a data url\n if (resource.isDataUrl)\n {\n return resource.data.meta.image;\n }\n\n return url.resolve(resource.url.replace(baseUrl, ''), resource.data.meta.image);\n};\n\nexport { Spritesheet, SpritesheetLoader };\n//# sourceMappingURL=spritesheet.es.js.map\n","/*!\n * @pixi/sprite-tiling - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/sprite-tiling is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture, TextureMatrix, ObjectRenderer, Shader, QuadUv } from '@pixi/core';\nimport { Point, Rectangle, Transform, Matrix } from '@pixi/math';\nimport { TextureCache, premultiplyTintToRgba, correctBlendMode } from '@pixi/utils';\nimport { Sprite } from '@pixi/sprite';\nimport { WRAP_MODES } from '@pixi/constants';\n\nvar tempPoint = new Point();\n\n/**\n * A tiling sprite is a fast way of rendering a tiling image\n *\n * @class\n * @extends PIXI.Sprite\n * @memberof PIXI\n */\nvar TilingSprite = /*@__PURE__*/(function (Sprite) {\n function TilingSprite(texture, width, height)\n {\n if ( width === void 0 ) width = 100;\n if ( height === void 0 ) height = 100;\n\n Sprite.call(this, texture);\n\n /**\n * Tile transform\n *\n * @member {PIXI.Transform}\n */\n this.tileTransform = new Transform();\n\n // /// private\n\n /**\n * The with of the tiling sprite\n *\n * @member {number}\n * @private\n */\n this._width = width;\n\n /**\n * The height of the tiling sprite\n *\n * @member {number}\n * @private\n */\n this._height = height;\n\n /**\n * Canvas pattern\n *\n * @type {CanvasPattern}\n * @private\n */\n this._canvasPattern = null;\n\n /**\n * matrix that is applied to UV to get the coords in Texture normalized space to coords in BaseTexture space\n *\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = texture.uvMatrix || new TextureMatrix(texture);\n\n /**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_render' method.\n *\n * @member {string}\n * @default 'tilingSprite'\n */\n this.pluginName = 'tilingSprite';\n\n /**\n * Whether or not anchor affects uvs\n *\n * @member {boolean}\n * @default false\n */\n this.uvRespectAnchor = false;\n }\n\n if ( Sprite ) TilingSprite.__proto__ = Sprite;\n TilingSprite.prototype = Object.create( Sprite && Sprite.prototype );\n TilingSprite.prototype.constructor = TilingSprite;\n\n var prototypeAccessors = { clampMargin: { configurable: true },tileScale: { configurable: true },tilePosition: { configurable: true },width: { configurable: true },height: { configurable: true } };\n /**\n * Changes frame clamping in corresponding textureTransform, shortcut\n * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas\n *\n * @default 0.5\n * @member {number}\n */\n prototypeAccessors.clampMargin.get = function ()\n {\n return this.uvMatrix.clampMargin;\n };\n\n prototypeAccessors.clampMargin.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uvMatrix.clampMargin = value;\n this.uvMatrix.update(true);\n };\n\n /**\n * The scaling of the image that is being tiled\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.tileScale.get = function ()\n {\n return this.tileTransform.scale;\n };\n\n prototypeAccessors.tileScale.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.tileTransform.scale.copyFrom(value);\n };\n\n /**\n * The offset of the image that is being tiled\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.tilePosition.get = function ()\n {\n return this.tileTransform.position;\n };\n\n prototypeAccessors.tilePosition.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.tileTransform.position.copyFrom(value);\n };\n\n /**\n * @private\n */\n TilingSprite.prototype._onTextureUpdate = function _onTextureUpdate ()\n {\n if (this.uvMatrix)\n {\n this.uvMatrix.texture = this._texture;\n }\n this._cachedTint = 0xFFFFFF;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n TilingSprite.prototype._render = function _render (renderer)\n {\n // tweak our texture temporarily..\n var texture = this._texture;\n\n if (!texture || !texture.valid)\n {\n return;\n }\n\n this.tileTransform.updateLocalTransform();\n this.uvMatrix.update();\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n renderer.plugins[this.pluginName].render(this);\n };\n\n /**\n * Updates the bounds of the tiling sprite.\n *\n * @protected\n */\n TilingSprite.prototype._calculateBounds = function _calculateBounds ()\n {\n var minX = this._width * -this._anchor._x;\n var minY = this._height * -this._anchor._y;\n var maxX = this._width * (1 - this._anchor._x);\n var maxY = this._height * (1 - this._anchor._y);\n\n this._bounds.addFrame(this.transform, minX, minY, maxX, maxY);\n };\n\n /**\n * Gets the local bounds of the sprite object.\n *\n * @param {PIXI.Rectangle} rect - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n TilingSprite.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n // we can do a fast local bounds if the sprite has no children!\n if (this.children.length === 0)\n {\n this._bounds.minX = this._width * -this._anchor._x;\n this._bounds.minY = this._height * -this._anchor._y;\n this._bounds.maxX = this._width * (1 - this._anchor._x);\n this._bounds.maxY = this._height * (1 - this._anchor._y);\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n }\n\n return Sprite.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * Checks if a point is inside this tiling sprite.\n *\n * @param {PIXI.Point} point - the point to check\n * @return {boolean} Whether or not the sprite contains the point.\n */\n TilingSprite.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, tempPoint);\n\n var width = this._width;\n var height = this._height;\n var x1 = -width * this.anchor._x;\n\n if (tempPoint.x >= x1 && tempPoint.x < x1 + width)\n {\n var y1 = -height * this.anchor._y;\n\n if (tempPoint.y >= y1 && tempPoint.y < y1 + height)\n {\n return true;\n }\n }\n\n return false;\n };\n\n /**\n * Destroys this sprite and optionally its texture and children\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well\n */\n TilingSprite.prototype.destroy = function destroy (options)\n {\n Sprite.prototype.destroy.call(this, options);\n\n this.tileTransform = null;\n this.uvMatrix = null;\n };\n\n /**\n * Helper function that creates a new tiling sprite based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source - Source to create texture from\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @return {PIXI.TilingSprite} The newly created texture\n */\n TilingSprite.from = function from (source, width, height)\n {\n return new TilingSprite(Texture.from(source), width, height);\n };\n\n /**\n * Helper function that creates a tiling sprite that will use a texture from the TextureCache based on the frameId\n * The frame ids are created when a Texture packer file has been loaded\n *\n * @static\n * @param {string} frameId - The frame Id of the texture in the cache\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @return {PIXI.TilingSprite} A new TilingSprite using a texture from the texture cache matching the frameId\n */\n TilingSprite.fromFrame = function fromFrame (frameId, width, height)\n {\n var texture = TextureCache[frameId];\n\n if (!texture)\n {\n throw new Error((\"The frameId \\\"\" + frameId + \"\\\" does not exist in the texture cache \" + (this)));\n }\n\n return new TilingSprite(texture, width, height);\n };\n\n /**\n * Helper function that creates a sprite that will contain a texture based on an image url\n * If the image is not in the texture cache it will be loaded\n *\n * @static\n * @param {string} imageId - The image url of the texture\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @param {Object} [options] - See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.TilingSprite} A new TilingSprite using a texture from the texture cache matching the image id\n */\n TilingSprite.fromImage = function fromImage (imageId, width, height, options)\n {\n // Fallback support for crossorigin, scaleMode parameters\n if (options && typeof options !== 'object')\n {\n options = {\n scaleMode: arguments[4],\n resourceOptions: {\n crossorigin: arguments[3],\n },\n };\n }\n\n return new TilingSprite(Texture.from(imageId, options), width, height);\n };\n\n /**\n * The width of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this._width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._width = value;\n };\n\n /**\n * The height of the TilingSprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this._height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._height = value;\n };\n\n Object.defineProperties( TilingSprite.prototype, prototypeAccessors );\n\n return TilingSprite;\n}(Sprite));\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform mat3 uTransform;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = (uTransform * vec3(aTextureCoord, 1.0)).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform vec4 uColor;\\nuniform mat3 uMapCoord;\\nuniform vec4 uClampFrame;\\nuniform vec2 uClampOffset;\\n\\nvoid main(void)\\n{\\n vec2 coord = mod(vTextureCoord - uClampOffset, vec2(1.0, 1.0)) + uClampOffset;\\n coord = (uMapCoord * vec3(coord, 1.0)).xy;\\n coord = clamp(coord, uClampFrame.xy, uClampFrame.zw);\\n\\n vec4 sample = texture2D(uSampler, coord);\\n gl_FragColor = sample * uColor;\\n}\\n\";\n\nvar fragmentSimple = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform vec4 uColor;\\n\\nvoid main(void)\\n{\\n vec4 sample = texture2D(uSampler, vTextureCoord);\\n gl_FragColor = sample * uColor;\\n}\\n\";\n\nvar tempMat = new Matrix();\n\n/**\n * WebGL renderer plugin for tiling sprites\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.ObjectRenderer\n */\nvar TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function TilingSpriteRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n var uniforms = { globals: this.renderer.globalUniforms };\n\n this.shader = Shader.from(vertex, fragment, uniforms);\n\n this.simpleShader = Shader.from(vertex, fragmentSimple, uniforms);\n\n this.quad = new QuadUv();\n }\n\n if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer;\n TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer;\n\n /**\n *\n * @param {PIXI.TilingSprite} ts tilingSprite to be rendered\n */\n TilingSpriteRenderer.prototype.render = function render (ts)\n {\n var renderer = this.renderer;\n var quad = this.quad;\n\n var vertices = quad.vertices;\n\n vertices[0] = vertices[6] = (ts._width) * -ts.anchor.x;\n vertices[1] = vertices[3] = ts._height * -ts.anchor.y;\n\n vertices[2] = vertices[4] = (ts._width) * (1.0 - ts.anchor.x);\n vertices[5] = vertices[7] = ts._height * (1.0 - ts.anchor.y);\n\n if (ts.uvRespectAnchor)\n {\n vertices = quad.uvs;\n\n vertices[0] = vertices[6] = -ts.anchor.x;\n vertices[1] = vertices[3] = -ts.anchor.y;\n\n vertices[2] = vertices[4] = 1.0 - ts.anchor.x;\n vertices[5] = vertices[7] = 1.0 - ts.anchor.y;\n }\n\n quad.invalidate();\n\n var tex = ts._texture;\n var baseTex = tex.baseTexture;\n var lt = ts.tileTransform.localTransform;\n var uv = ts.uvMatrix;\n var isSimple = baseTex.isPowerOfTwo\n && tex.frame.width === baseTex.width && tex.frame.height === baseTex.height;\n\n // auto, force repeat wrapMode for big tiling textures\n if (isSimple)\n {\n if (!baseTex._glTextures[renderer.CONTEXT_UID])\n {\n if (baseTex.wrapMode === WRAP_MODES.CLAMP)\n {\n baseTex.wrapMode = WRAP_MODES.REPEAT;\n }\n }\n else\n {\n isSimple = baseTex.wrapMode !== WRAP_MODES.CLAMP;\n }\n }\n\n var shader = isSimple ? this.simpleShader : this.shader;\n\n var w = tex.width;\n var h = tex.height;\n var W = ts._width;\n var H = ts._height;\n\n tempMat.set(lt.a * w / W,\n lt.b * w / H,\n lt.c * h / W,\n lt.d * h / H,\n lt.tx / W,\n lt.ty / H);\n\n // that part is the same as above:\n // tempMat.identity();\n // tempMat.scale(tex.width, tex.height);\n // tempMat.prepend(lt);\n // tempMat.scale(1.0 / ts._width, 1.0 / ts._height);\n\n tempMat.invert();\n if (isSimple)\n {\n tempMat.prepend(uv.mapCoord);\n }\n else\n {\n shader.uniforms.uMapCoord = uv.mapCoord.toArray(true);\n shader.uniforms.uClampFrame = uv.uClampFrame;\n shader.uniforms.uClampOffset = uv.uClampOffset;\n }\n\n shader.uniforms.uTransform = tempMat.toArray(true);\n shader.uniforms.uColor = premultiplyTintToRgba(ts.tint, ts.worldAlpha,\n shader.uniforms.uColor, baseTex.premultiplyAlpha);\n shader.uniforms.translationMatrix = ts.transform.worldTransform.toArray(true);\n shader.uniforms.uSampler = tex;\n\n renderer.shader.bind(shader);\n renderer.geometry.bind(quad);// , renderer.shader.getGLShader());\n\n renderer.state.setBlendMode(correctBlendMode(ts.blendMode, baseTex.premultiplyAlpha));\n renderer.geometry.draw(this.renderer.gl.TRIANGLES, 6, 0);\n };\n\n return TilingSpriteRenderer;\n}(ObjectRenderer));\n\nexport { TilingSprite, TilingSpriteRenderer };\n//# sourceMappingURL=sprite-tiling.es.js.map\n","/*!\n * @pixi/text-bitmap - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/text-bitmap is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture } from '@pixi/core';\nimport { Container } from '@pixi/display';\nimport { Point, Rectangle, ObservablePoint } from '@pixi/math';\nimport { settings } from '@pixi/settings';\nimport { Sprite } from '@pixi/sprite';\nimport { removeItems, getResolutionOfUrl } from '@pixi/utils';\nimport { LoaderResource } from '@pixi/loaders';\n\n/**\n * A BitmapText object will create a line or multiple lines of text using bitmap font.\n *\n * The primary advantage of this class over Text is that all of your textures are pre-generated and loading,\n * meaning that rendering is fast, and changing text has no performance implications.\n *\n * The primary disadvantage is that you need to preload the bitmap font assets, and thus the styling is set in stone.\n * Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters.\n *\n * To split a line you can use '\\n', '\\r' or '\\r\\n' in your string.\n *\n * You can generate the fnt files using\n * http://www.angelcode.com/products/bmfont/ for Windows or\n * http://www.bmglyph.com/ for Mac.\n *\n * A BitmapText can only be created when the font is loaded.\n *\n * ```js\n * // in this case the font is in a file called 'desyrel.fnt'\n * let bitmapText = new PIXI.BitmapText(\"text using a fancy font!\", {font: \"35px Desyrel\", align: \"right\"});\n * ```\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar BitmapText = /*@__PURE__*/(function (Container) {\n function BitmapText(text, style)\n {\n var this$1 = this;\n if ( style === void 0 ) style = {};\n\n Container.call(this);\n\n /**\n * Private tracker for the width of the overall text\n *\n * @member {number}\n * @private\n */\n this._textWidth = 0;\n\n /**\n * Private tracker for the height of the overall text\n *\n * @member {number}\n * @private\n */\n this._textHeight = 0;\n\n /**\n * Private tracker for the letter sprite pool.\n *\n * @member {PIXI.Sprite[]}\n * @private\n */\n this._glyphs = [];\n\n /**\n * Private tracker for the current style.\n *\n * @member {object}\n * @private\n */\n this._font = {\n tint: style.tint !== undefined ? style.tint : 0xFFFFFF,\n align: style.align || 'left',\n name: null,\n size: 0,\n };\n\n /**\n * Private tracker for the current font.\n *\n * @member {object}\n * @private\n */\n this.font = style.font; // run font setter\n\n /**\n * Private tracker for the current text.\n *\n * @member {string}\n * @private\n */\n this._text = text;\n\n /**\n * The max width of this bitmap text in pixels. If the text provided is longer than the\n * value provided, line breaks will be automatically inserted in the last whitespace.\n * Disable by setting value to 0\n *\n * @member {number}\n * @private\n */\n this._maxWidth = 0;\n\n /**\n * The max line height. This is useful when trying to use the total height of the Text,\n * ie: when trying to vertically align.\n *\n * @member {number}\n * @private\n */\n this._maxLineHeight = 0;\n\n /**\n * Letter spacing. This is useful for setting the space between characters.\n * @member {number}\n * @private\n */\n this._letterSpacing = 0;\n\n /**\n * Text anchor. read-only\n *\n * @member {PIXI.ObservablePoint}\n * @private\n */\n this._anchor = new ObservablePoint(function () { this$1.dirty = true; }, this, 0, 0);\n\n /**\n * The dirty state of this object.\n *\n * @member {boolean}\n */\n this.dirty = false;\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n this.roundPixels = settings.ROUND_PIXELS;\n\n this.updateText();\n }\n\n if ( Container ) BitmapText.__proto__ = Container;\n BitmapText.prototype = Object.create( Container && Container.prototype );\n BitmapText.prototype.constructor = BitmapText;\n\n var prototypeAccessors = { tint: { configurable: true },align: { configurable: true },anchor: { configurable: true },font: { configurable: true },text: { configurable: true },maxWidth: { configurable: true },maxLineHeight: { configurable: true },textWidth: { configurable: true },letterSpacing: { configurable: true },textHeight: { configurable: true } };\n\n /**\n * Renders text and updates it when needed\n *\n * @private\n */\n BitmapText.prototype.updateText = function updateText ()\n {\n var data = BitmapText.fonts[this._font.name];\n var scale = this._font.size / data.size;\n var pos = new Point();\n var chars = [];\n var lineWidths = [];\n var text = this._text.replace(/(?:\\r\\n|\\r)/g, '\\n') || ' ';\n var textLength = text.length;\n var maxWidth = this._maxWidth * data.size / this._font.size;\n\n var prevCharCode = null;\n var lastLineWidth = 0;\n var maxLineWidth = 0;\n var line = 0;\n var lastBreakPos = -1;\n var lastBreakWidth = 0;\n var spacesRemoved = 0;\n var maxLineHeight = 0;\n\n for (var i = 0; i < textLength; i++)\n {\n var charCode = text.charCodeAt(i);\n var char = text.charAt(i);\n\n if ((/(?:\\s)/).test(char))\n {\n lastBreakPos = i;\n lastBreakWidth = lastLineWidth;\n }\n\n if (char === '\\r' || char === '\\n')\n {\n lineWidths.push(lastLineWidth);\n maxLineWidth = Math.max(maxLineWidth, lastLineWidth);\n ++line;\n ++spacesRemoved;\n\n pos.x = 0;\n pos.y += data.lineHeight;\n prevCharCode = null;\n continue;\n }\n\n var charData = data.chars[charCode];\n\n if (!charData)\n {\n continue;\n }\n\n if (prevCharCode && charData.kerning[prevCharCode])\n {\n pos.x += charData.kerning[prevCharCode];\n }\n\n chars.push({\n texture: charData.texture,\n line: line,\n charCode: charCode,\n position: new Point(pos.x + charData.xOffset + (this._letterSpacing / 2), pos.y + charData.yOffset),\n });\n pos.x += charData.xAdvance + this._letterSpacing;\n lastLineWidth = pos.x;\n maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height));\n prevCharCode = charCode;\n\n if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth)\n {\n ++spacesRemoved;\n removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos);\n i = lastBreakPos;\n lastBreakPos = -1;\n\n lineWidths.push(lastBreakWidth);\n maxLineWidth = Math.max(maxLineWidth, lastBreakWidth);\n line++;\n\n pos.x = 0;\n pos.y += data.lineHeight;\n prevCharCode = null;\n }\n }\n\n var lastChar = text.charAt(text.length - 1);\n\n if (lastChar !== '\\r' && lastChar !== '\\n')\n {\n if ((/(?:\\s)/).test(lastChar))\n {\n lastLineWidth = lastBreakWidth;\n }\n\n lineWidths.push(lastLineWidth);\n maxLineWidth = Math.max(maxLineWidth, lastLineWidth);\n }\n\n var lineAlignOffsets = [];\n\n for (var i$1 = 0; i$1 <= line; i$1++)\n {\n var alignOffset = 0;\n\n if (this._font.align === 'right')\n {\n alignOffset = maxLineWidth - lineWidths[i$1];\n }\n else if (this._font.align === 'center')\n {\n alignOffset = (maxLineWidth - lineWidths[i$1]) / 2;\n }\n\n lineAlignOffsets.push(alignOffset);\n }\n\n var lenChars = chars.length;\n var tint = this.tint;\n\n for (var i$2 = 0; i$2 < lenChars; i$2++)\n {\n var c = this._glyphs[i$2]; // get the next glyph sprite\n\n if (c)\n {\n c.texture = chars[i$2].texture;\n }\n else\n {\n c = new Sprite(chars[i$2].texture);\n c.roundPixels = this.roundPixels;\n this._glyphs.push(c);\n }\n\n c.position.x = (chars[i$2].position.x + lineAlignOffsets[chars[i$2].line]) * scale;\n c.position.y = chars[i$2].position.y * scale;\n c.scale.x = c.scale.y = scale;\n c.tint = tint;\n\n if (!c.parent)\n {\n this.addChild(c);\n }\n }\n\n // remove unnecessary children.\n for (var i$3 = lenChars; i$3 < this._glyphs.length; ++i$3)\n {\n this.removeChild(this._glyphs[i$3]);\n }\n\n this._textWidth = maxLineWidth * scale;\n this._textHeight = (pos.y + data.lineHeight) * scale;\n\n // apply anchor\n if (this.anchor.x !== 0 || this.anchor.y !== 0)\n {\n for (var i$4 = 0; i$4 < lenChars; i$4++)\n {\n this._glyphs[i$4].x -= this._textWidth * this.anchor.x;\n this._glyphs[i$4].y -= this._textHeight * this.anchor.y;\n }\n }\n this._maxLineHeight = maxLineHeight * scale;\n };\n\n /**\n * Updates the transform of this object\n *\n * @private\n */\n BitmapText.prototype.updateTransform = function updateTransform ()\n {\n this.validate();\n this.containerUpdateTransform();\n };\n\n /**\n * Validates text before calling parent's getLocalBounds\n *\n * @return {PIXI.Rectangle} The rectangular bounding area\n */\n BitmapText.prototype.getLocalBounds = function getLocalBounds ()\n {\n this.validate();\n\n return Container.prototype.getLocalBounds.call(this);\n };\n\n /**\n * Updates text when needed\n *\n * @private\n */\n BitmapText.prototype.validate = function validate ()\n {\n if (this.dirty)\n {\n this.updateText();\n this.dirty = false;\n }\n };\n\n /**\n * The tint of the BitmapText object.\n *\n * @member {number}\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._font.tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._font.tint = (typeof value === 'number' && value >= 0) ? value : 0xFFFFFF;\n\n this.dirty = true;\n };\n\n /**\n * The alignment of the BitmapText object.\n *\n * @member {string}\n * @default 'left'\n */\n prototypeAccessors.align.get = function ()\n {\n return this._font.align;\n };\n\n prototypeAccessors.align.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._font.align = value || 'left';\n\n this.dirty = true;\n };\n\n /**\n * The anchor sets the origin point of the text.\n *\n * The default is `(0,0)`, this means the text's origin is the top left.\n *\n * Setting the anchor to `(0.5,0.5)` means the text's origin is centered.\n *\n * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner.\n *\n * @member {PIXI.Point | number}\n */\n prototypeAccessors.anchor.get = function ()\n {\n return this._anchor;\n };\n\n prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (typeof value === 'number')\n {\n this._anchor.set(value);\n }\n else\n {\n this._anchor.copyFrom(value);\n }\n };\n\n /**\n * The font descriptor of the BitmapText object.\n *\n * @member {object}\n */\n prototypeAccessors.font.get = function ()\n {\n return this._font;\n };\n\n prototypeAccessors.font.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (!value)\n {\n return;\n }\n\n if (typeof value === 'string')\n {\n value = value.split(' ');\n\n this._font.name = value.length === 1 ? value[0] : value.slice(1).join(' ');\n this._font.size = value.length >= 2 ? parseInt(value[0], 10) : BitmapText.fonts[this._font.name].size;\n }\n else\n {\n this._font.name = value.name;\n this._font.size = typeof value.size === 'number' ? value.size : parseInt(value.size, 10);\n }\n\n this.dirty = true;\n };\n\n /**\n * The text of the BitmapText object.\n *\n * @member {string}\n */\n prototypeAccessors.text.get = function ()\n {\n return this._text;\n };\n\n prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc\n {\n text = String(text === null || text === undefined ? '' : text);\n\n if (this._text === text)\n {\n return;\n }\n this._text = text;\n this.dirty = true;\n };\n\n /**\n * The max width of this bitmap text in pixels. If the text provided is longer than the\n * value provided, line breaks will be automatically inserted in the last whitespace.\n * Disable by setting the value to 0.\n *\n * @member {number}\n */\n prototypeAccessors.maxWidth.get = function ()\n {\n return this._maxWidth;\n };\n\n prototypeAccessors.maxWidth.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._maxWidth === value)\n {\n return;\n }\n this._maxWidth = value;\n this.dirty = true;\n };\n\n /**\n * The max line height. This is useful when trying to use the total height of the Text,\n * i.e. when trying to vertically align.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.maxLineHeight.get = function ()\n {\n this.validate();\n\n return this._maxLineHeight;\n };\n\n /**\n * The width of the overall text, different from fontSize,\n * which is defined in the style object.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.textWidth.get = function ()\n {\n this.validate();\n\n return this._textWidth;\n };\n\n /**\n * Additional space between characters.\n *\n * @member {number}\n */\n prototypeAccessors.letterSpacing.get = function ()\n {\n return this._letterSpacing;\n };\n\n prototypeAccessors.letterSpacing.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._letterSpacing !== value)\n {\n this._letterSpacing = value;\n this.dirty = true;\n }\n };\n\n /**\n * The height of the overall text, different from fontSize,\n * which is defined in the style object.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.textHeight.get = function ()\n {\n this.validate();\n\n return this._textHeight;\n };\n\n /**\n * Register a bitmap font with data and a texture.\n *\n * @static\n * @param {XMLDocument} xml - The XML document data.\n * @param {Object.|PIXI.Texture|PIXI.Texture[]} textures - List of textures for each page.\n * If providing an object, the key is the `` element's `file` attribute in the FNT file.\n * @return {Object} Result font object with font, size, lineHeight and char fields.\n */\n BitmapText.registerFont = function registerFont (xml, textures)\n {\n var data = {};\n var info = xml.getElementsByTagName('info')[0];\n var common = xml.getElementsByTagName('common')[0];\n var pages = xml.getElementsByTagName('page');\n var res = getResolutionOfUrl(pages[0].getAttribute('file'), settings.RESOLUTION);\n var pagesTextures = {};\n\n data.font = info.getAttribute('face');\n data.size = parseInt(info.getAttribute('size'), 10);\n data.lineHeight = parseInt(common.getAttribute('lineHeight'), 10) / res;\n data.chars = {};\n\n // Single texture, convert to list\n if (textures instanceof Texture)\n {\n textures = [textures];\n }\n\n // Convert the input Texture, Textures or object\n // into a page Texture lookup by \"id\"\n for (var i = 0; i < pages.length; i++)\n {\n var id = pages[i].getAttribute('id');\n var file = pages[i].getAttribute('file');\n\n pagesTextures[id] = textures instanceof Array ? textures[i] : textures[file];\n }\n\n // parse letters\n var letters = xml.getElementsByTagName('char');\n\n for (var i$1 = 0; i$1 < letters.length; i$1++)\n {\n var letter = letters[i$1];\n var charCode = parseInt(letter.getAttribute('id'), 10);\n var page = letter.getAttribute('page') || 0;\n var textureRect = new Rectangle(\n (parseInt(letter.getAttribute('x'), 10) / res) + (pagesTextures[page].frame.x / res),\n (parseInt(letter.getAttribute('y'), 10) / res) + (pagesTextures[page].frame.y / res),\n parseInt(letter.getAttribute('width'), 10) / res,\n parseInt(letter.getAttribute('height'), 10) / res\n );\n\n data.chars[charCode] = {\n xOffset: parseInt(letter.getAttribute('xoffset'), 10) / res,\n yOffset: parseInt(letter.getAttribute('yoffset'), 10) / res,\n xAdvance: parseInt(letter.getAttribute('xadvance'), 10) / res,\n kerning: {},\n texture: new Texture(pagesTextures[page].baseTexture, textureRect),\n page: page,\n };\n }\n\n // parse kernings\n var kernings = xml.getElementsByTagName('kerning');\n\n for (var i$2 = 0; i$2 < kernings.length; i$2++)\n {\n var kerning = kernings[i$2];\n var first = parseInt(kerning.getAttribute('first'), 10) / res;\n var second = parseInt(kerning.getAttribute('second'), 10) / res;\n var amount = parseInt(kerning.getAttribute('amount'), 10) / res;\n\n if (data.chars[second])\n {\n data.chars[second].kerning[first] = amount;\n }\n }\n\n // I'm leaving this as a temporary fix so we can test the bitmap fonts in v3\n // but it's very likely to change\n BitmapText.fonts[data.font] = data;\n\n return data;\n };\n\n Object.defineProperties( BitmapText.prototype, prototypeAccessors );\n\n return BitmapText;\n}(Container));\n\nBitmapText.fonts = {};\n\n/**\n * {@link PIXI.Loader Loader} middleware for loading\n * bitmap-based fonts suitable for using with {@link PIXI.BitmapText}.\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar BitmapFontLoader = function BitmapFontLoader () {};\n\nBitmapFontLoader.parse = function parse (resource, texture)\n{\n resource.bitmapFont = BitmapText.registerFont(resource.data, texture);\n};\n\n/**\n * Called when the plugin is installed.\n *\n * @see PIXI.Loader.registerPlugin\n */\nBitmapFontLoader.add = function add ()\n{\n LoaderResource.setExtensionXhrType('fnt', LoaderResource.XHR_RESPONSE_TYPE.DOCUMENT);\n};\n\n/**\n * Replacement for NodeJS's path.dirname\n * @private\n * @param {string} url Path to get directory for\n */\nBitmapFontLoader.dirname = function dirname (url)\n{\n var dir = url\n .replace(/\\/$/, '') // replace trailing slash\n .replace(/\\/[^\\/]*$/, ''); // remove everything after the last\n\n // File request is relative, use current directory\n if (dir === url)\n {\n return '.';\n }\n // Started with a slash\n else if (dir === '')\n {\n return '/';\n }\n\n return dir;\n};\n\n/**\n * Called after a resource is loaded.\n * @see PIXI.Loader.loaderMiddleware\n * @param {PIXI.LoaderResource} resource\n * @param {function} next\n */\nBitmapFontLoader.use = function use (resource, next)\n{\n // skip if no data or not xml data\n if (!resource.data || resource.type !== LoaderResource.TYPE.XML)\n {\n next();\n\n return;\n }\n\n // skip if not bitmap font data, using some silly duck-typing\n if (resource.data.getElementsByTagName('page').length === 0\n || resource.data.getElementsByTagName('info').length === 0\n || resource.data.getElementsByTagName('info')[0].getAttribute('face') === null\n )\n {\n next();\n\n return;\n }\n\n var xmlUrl = !resource.isDataUrl ? BitmapFontLoader.dirname(resource.url) : '';\n\n if (resource.isDataUrl)\n {\n if (xmlUrl === '.')\n {\n xmlUrl = '';\n }\n\n if (this.baseUrl && xmlUrl)\n {\n // if baseurl has a trailing slash then add one to xmlUrl so the replace works below\n if (this.baseUrl.charAt(this.baseUrl.length - 1) === '/')\n {\n xmlUrl += '/';\n }\n }\n }\n\n // remove baseUrl from xmlUrl\n xmlUrl = xmlUrl.replace(this.baseUrl, '');\n\n // if there is an xmlUrl now, it needs a trailing slash. Ensure that it does if the string isn't empty.\n if (xmlUrl && xmlUrl.charAt(xmlUrl.length - 1) !== '/')\n {\n xmlUrl += '/';\n }\n\n var pages = resource.data.getElementsByTagName('page');\n var textures = {};\n\n // Handle completed, when the number of textures\n // load is the same number as references in the fnt file\n var completed = function (page) {\n textures[page.metadata.pageFile] = page.texture;\n\n if (Object.keys(textures).length === pages.length)\n {\n BitmapFontLoader.parse(resource, textures);\n next();\n }\n };\n\n for (var i = 0; i < pages.length; ++i)\n {\n var pageFile = pages[i].getAttribute('file');\n var url = xmlUrl + pageFile;\n var exists = false;\n\n // incase the image is loaded outside\n // using the same loader, resource will be available\n for (var name in this.resources)\n {\n var bitmapResource = this.resources[name];\n\n if (bitmapResource.url === url)\n {\n bitmapResource.metadata.pageFile = pageFile;\n if (bitmapResource.texture)\n {\n completed(bitmapResource);\n }\n else\n {\n bitmapResource.onAfterMiddleware.add(completed);\n }\n exists = true;\n break;\n }\n }\n\n // texture is not loaded, we'll attempt to add\n // it to the load and add the texture to the list\n if (!exists)\n {\n // Standard loading options for images\n var options = {\n crossOrigin: resource.crossOrigin,\n loadType: LoaderResource.LOAD_TYPE.IMAGE,\n metadata: Object.assign(\n { pageFile: pageFile },\n resource.metadata.imageMetadata\n ),\n parentResource: resource,\n };\n\n this.add(url, options, completed);\n }\n }\n};\n\nexport { BitmapFontLoader, BitmapText };\n//# sourceMappingURL=text-bitmap.es.js.map\n","/*!\n * @pixi/filter-color-matrix - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/filter-color-matrix is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Filter, defaultFilterVertex } from '@pixi/core';\n\nvar fragment = \"varying vec2 vTextureCoord;\\nuniform sampler2D uSampler;\\nuniform float m[20];\\nuniform float uAlpha;\\n\\nvoid main(void)\\n{\\n vec4 c = texture2D(uSampler, vTextureCoord);\\n\\n if (uAlpha == 0.0) {\\n gl_FragColor = c;\\n return;\\n }\\n\\n // Un-premultiply alpha before applying the color matrix. See issue #3539.\\n if (c.a > 0.0) {\\n c.rgb /= c.a;\\n }\\n\\n vec4 result;\\n\\n result.r = (m[0] * c.r);\\n result.r += (m[1] * c.g);\\n result.r += (m[2] * c.b);\\n result.r += (m[3] * c.a);\\n result.r += m[4];\\n\\n result.g = (m[5] * c.r);\\n result.g += (m[6] * c.g);\\n result.g += (m[7] * c.b);\\n result.g += (m[8] * c.a);\\n result.g += m[9];\\n\\n result.b = (m[10] * c.r);\\n result.b += (m[11] * c.g);\\n result.b += (m[12] * c.b);\\n result.b += (m[13] * c.a);\\n result.b += m[14];\\n\\n result.a = (m[15] * c.r);\\n result.a += (m[16] * c.g);\\n result.a += (m[17] * c.b);\\n result.a += (m[18] * c.a);\\n result.a += m[19];\\n\\n vec3 rgb = mix(c.rgb, result.rgb, uAlpha);\\n\\n // Premultiply alpha again.\\n rgb *= result.a;\\n\\n gl_FragColor = vec4(rgb, result.a);\\n}\\n\";\n\n/**\n * The ColorMatrixFilter class lets you apply a 5x4 matrix transformation on the RGBA\n * color and alpha values of every pixel on your displayObject to produce a result\n * with a new set of RGBA color and alpha values. It's pretty powerful!\n *\n * ```js\n * let colorMatrix = new PIXI.filters.ColorMatrixFilter();\n * container.filters = [colorMatrix];\n * colorMatrix.contrast(2);\n * ```\n * @author Clément Chenebault \n * @class\n * @extends PIXI.Filter\n * @memberof PIXI.filters\n */\nvar ColorMatrixFilter = /*@__PURE__*/(function (Filter) {\n function ColorMatrixFilter()\n {\n var uniforms = {\n m: new Float32Array([1, 0, 0, 0, 0,\n 0, 1, 0, 0, 0,\n 0, 0, 1, 0, 0,\n 0, 0, 0, 1, 0]),\n uAlpha: 1,\n };\n\n Filter.call(this, defaultFilterVertex, fragment, uniforms);\n\n this.alpha = 1;\n }\n\n if ( Filter ) ColorMatrixFilter.__proto__ = Filter;\n ColorMatrixFilter.prototype = Object.create( Filter && Filter.prototype );\n ColorMatrixFilter.prototype.constructor = ColorMatrixFilter;\n\n var prototypeAccessors = { matrix: { configurable: true },alpha: { configurable: true } };\n\n /**\n * Transforms current matrix and set the new one\n *\n * @param {number[]} matrix - 5x4 matrix\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype._loadMatrix = function _loadMatrix (matrix, multiply)\n {\n if ( multiply === void 0 ) multiply = false;\n\n var newMatrix = matrix;\n\n if (multiply)\n {\n this._multiply(newMatrix, this.uniforms.m, matrix);\n newMatrix = this._colorMatrix(newMatrix);\n }\n\n // set the new matrix\n this.uniforms.m = newMatrix;\n };\n\n /**\n * Multiplies two mat5's\n *\n * @private\n * @param {number[]} out - 5x4 matrix the receiving matrix\n * @param {number[]} a - 5x4 matrix the first operand\n * @param {number[]} b - 5x4 matrix the second operand\n * @returns {number[]} 5x4 matrix\n */\n ColorMatrixFilter.prototype._multiply = function _multiply (out, a, b)\n {\n // Red Channel\n out[0] = (a[0] * b[0]) + (a[1] * b[5]) + (a[2] * b[10]) + (a[3] * b[15]);\n out[1] = (a[0] * b[1]) + (a[1] * b[6]) + (a[2] * b[11]) + (a[3] * b[16]);\n out[2] = (a[0] * b[2]) + (a[1] * b[7]) + (a[2] * b[12]) + (a[3] * b[17]);\n out[3] = (a[0] * b[3]) + (a[1] * b[8]) + (a[2] * b[13]) + (a[3] * b[18]);\n out[4] = (a[0] * b[4]) + (a[1] * b[9]) + (a[2] * b[14]) + (a[3] * b[19]) + a[4];\n\n // Green Channel\n out[5] = (a[5] * b[0]) + (a[6] * b[5]) + (a[7] * b[10]) + (a[8] * b[15]);\n out[6] = (a[5] * b[1]) + (a[6] * b[6]) + (a[7] * b[11]) + (a[8] * b[16]);\n out[7] = (a[5] * b[2]) + (a[6] * b[7]) + (a[7] * b[12]) + (a[8] * b[17]);\n out[8] = (a[5] * b[3]) + (a[6] * b[8]) + (a[7] * b[13]) + (a[8] * b[18]);\n out[9] = (a[5] * b[4]) + (a[6] * b[9]) + (a[7] * b[14]) + (a[8] * b[19]) + a[9];\n\n // Blue Channel\n out[10] = (a[10] * b[0]) + (a[11] * b[5]) + (a[12] * b[10]) + (a[13] * b[15]);\n out[11] = (a[10] * b[1]) + (a[11] * b[6]) + (a[12] * b[11]) + (a[13] * b[16]);\n out[12] = (a[10] * b[2]) + (a[11] * b[7]) + (a[12] * b[12]) + (a[13] * b[17]);\n out[13] = (a[10] * b[3]) + (a[11] * b[8]) + (a[12] * b[13]) + (a[13] * b[18]);\n out[14] = (a[10] * b[4]) + (a[11] * b[9]) + (a[12] * b[14]) + (a[13] * b[19]) + a[14];\n\n // Alpha Channel\n out[15] = (a[15] * b[0]) + (a[16] * b[5]) + (a[17] * b[10]) + (a[18] * b[15]);\n out[16] = (a[15] * b[1]) + (a[16] * b[6]) + (a[17] * b[11]) + (a[18] * b[16]);\n out[17] = (a[15] * b[2]) + (a[16] * b[7]) + (a[17] * b[12]) + (a[18] * b[17]);\n out[18] = (a[15] * b[3]) + (a[16] * b[8]) + (a[17] * b[13]) + (a[18] * b[18]);\n out[19] = (a[15] * b[4]) + (a[16] * b[9]) + (a[17] * b[14]) + (a[18] * b[19]) + a[19];\n\n return out;\n };\n\n /**\n * Create a Float32 Array and normalize the offset component to 0-1\n *\n * @private\n * @param {number[]} matrix - 5x4 matrix\n * @return {number[]} 5x4 matrix with all values between 0-1\n */\n ColorMatrixFilter.prototype._colorMatrix = function _colorMatrix (matrix)\n {\n // Create a Float32 Array and normalize the offset component to 0-1\n var m = new Float32Array(matrix);\n\n m[4] /= 255;\n m[9] /= 255;\n m[14] /= 255;\n m[19] /= 255;\n\n return m;\n };\n\n /**\n * Adjusts brightness\n *\n * @param {number} b - value of the brigthness (0-1, where 0 is black)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.brightness = function brightness (b, multiply)\n {\n var matrix = [\n b, 0, 0, 0, 0,\n 0, b, 0, 0, 0,\n 0, 0, b, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the matrices in grey scales\n *\n * @param {number} scale - value of the grey (0-1, where 0 is black)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.greyscale = function greyscale (scale, multiply)\n {\n var matrix = [\n scale, scale, scale, 0, 0,\n scale, scale, scale, 0, 0,\n scale, scale, scale, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the black and white matrice.\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.blackAndWhite = function blackAndWhite (multiply)\n {\n var matrix = [\n 0.3, 0.6, 0.1, 0, 0,\n 0.3, 0.6, 0.1, 0, 0,\n 0.3, 0.6, 0.1, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the hue property of the color\n *\n * @param {number} rotation - in degrees\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.hue = function hue (rotation, multiply)\n {\n rotation = (rotation || 0) / 180 * Math.PI;\n\n var cosR = Math.cos(rotation);\n var sinR = Math.sin(rotation);\n var sqrt = Math.sqrt;\n\n /* a good approximation for hue rotation\n This matrix is far better than the versions with magic luminance constants\n formerly used here, but also used in the starling framework (flash) and known from this\n old part of the internet: quasimondo.com/archives/000565.php\n\n This new matrix is based on rgb cube rotation in space. Look here for a more descriptive\n implementation as a shader not a general matrix:\n https://github.com/evanw/glfx.js/blob/58841c23919bd59787effc0333a4897b43835412/src/filters/adjust/huesaturation.js\n\n This is the source for the code:\n see http://stackoverflow.com/questions/8507885/shift-hue-of-an-rgb-color/8510751#8510751\n */\n\n var w = 1 / 3;\n var sqrW = sqrt(w); // weight is\n\n var a00 = cosR + ((1.0 - cosR) * w);\n var a01 = (w * (1.0 - cosR)) - (sqrW * sinR);\n var a02 = (w * (1.0 - cosR)) + (sqrW * sinR);\n\n var a10 = (w * (1.0 - cosR)) + (sqrW * sinR);\n var a11 = cosR + (w * (1.0 - cosR));\n var a12 = (w * (1.0 - cosR)) - (sqrW * sinR);\n\n var a20 = (w * (1.0 - cosR)) - (sqrW * sinR);\n var a21 = (w * (1.0 - cosR)) + (sqrW * sinR);\n var a22 = cosR + (w * (1.0 - cosR));\n\n var matrix = [\n a00, a01, a02, 0, 0,\n a10, a11, a12, 0, 0,\n a20, a21, a22, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the contrast matrix, increase the separation between dark and bright\n * Increase contrast : shadows darker and highlights brighter\n * Decrease contrast : bring the shadows up and the highlights down\n *\n * @param {number} amount - value of the contrast (0-1)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.contrast = function contrast (amount, multiply)\n {\n var v = (amount || 0) + 1;\n var o = -0.5 * (v - 1);\n\n var matrix = [\n v, 0, 0, 0, o,\n 0, v, 0, 0, o,\n 0, 0, v, 0, o,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the saturation matrix, increase the separation between colors\n * Increase saturation : increase contrast, brightness, and sharpness\n *\n * @param {number} amount - The saturation amount (0-1)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.saturate = function saturate (amount, multiply)\n {\n if ( amount === void 0 ) amount = 0;\n\n var x = (amount * 2 / 3) + 1;\n var y = ((x - 1) * -0.5);\n\n var matrix = [\n x, y, y, 0, 0,\n y, x, y, 0, 0,\n y, y, x, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Desaturate image (remove color)\n *\n * Call the saturate function\n *\n */\n ColorMatrixFilter.prototype.desaturate = function desaturate () // eslint-disable-line no-unused-vars\n {\n this.saturate(-1);\n };\n\n /**\n * Negative image (inverse of classic rgb matrix)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.negative = function negative (multiply)\n {\n var matrix = [\n -1, 0, 0, 1, 0,\n 0, -1, 0, 1, 0,\n 0, 0, -1, 1, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Sepia image\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.sepia = function sepia (multiply)\n {\n var matrix = [\n 0.393, 0.7689999, 0.18899999, 0, 0,\n 0.349, 0.6859999, 0.16799999, 0, 0,\n 0.272, 0.5339999, 0.13099999, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Color motion picture process invented in 1916 (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.technicolor = function technicolor (multiply)\n {\n var matrix = [\n 1.9125277891456083, -0.8545344976951645, -0.09155508482755585, 0, 11.793603434377337,\n -0.3087833385928097, 1.7658908555458428, -0.10601743074722245, 0, -70.35205161461398,\n -0.231103377548616, -0.7501899197440212, 1.847597816108189, 0, 30.950940869491138,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Polaroid filter\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.polaroid = function polaroid (multiply)\n {\n var matrix = [\n 1.438, -0.062, -0.062, 0, 0,\n -0.122, 1.378, -0.122, 0, 0,\n -0.016, -0.016, 1.483, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Filter who transforms : Red -> Blue and Blue -> Red\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.toBGR = function toBGR (multiply)\n {\n var matrix = [\n 0, 0, 1, 0, 0,\n 0, 1, 0, 0, 0,\n 1, 0, 0, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Color reversal film introduced by Eastman Kodak in 1935. (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.kodachrome = function kodachrome (multiply)\n {\n var matrix = [\n 1.1285582396593525, -0.3967382283601348, -0.03992559172921793, 0, 63.72958762196502,\n -0.16404339962244616, 1.0835251566291304, -0.05498805115633132, 0, 24.732407896706203,\n -0.16786010706155763, -0.5603416277695248, 1.6014850761964943, 0, 35.62982807460946,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Brown delicious browni filter (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.browni = function browni (multiply)\n {\n var matrix = [\n 0.5997023498159715, 0.34553243048391263, -0.2708298674538042, 0, 47.43192855600873,\n -0.037703249837783157, 0.8609577587992641, 0.15059552388459913, 0, -36.96841498319127,\n 0.24113635128153335, -0.07441037908422492, 0.44972182064877153, 0, -7.562075277591283,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Vintage filter (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.vintage = function vintage (multiply)\n {\n var matrix = [\n 0.6279345635605994, 0.3202183420819367, -0.03965408211312453, 0, 9.651285835294123,\n 0.02578397704808868, 0.6441188644374771, 0.03259127616149294, 0, 7.462829176470591,\n 0.0466055556782719, -0.0851232987247891, 0.5241648018700465, 0, 5.159190588235296,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * We don't know exactly what it does, kind of gradient map, but funny to play with!\n *\n * @param {number} desaturation - Tone values.\n * @param {number} toned - Tone values.\n * @param {string} lightColor - Tone values, example: `0xFFE580`\n * @param {string} darkColor - Tone values, example: `0xFFE580`\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.colorTone = function colorTone (desaturation, toned, lightColor, darkColor, multiply)\n {\n desaturation = desaturation || 0.2;\n toned = toned || 0.15;\n lightColor = lightColor || 0xFFE580;\n darkColor = darkColor || 0x338000;\n\n var lR = ((lightColor >> 16) & 0xFF) / 255;\n var lG = ((lightColor >> 8) & 0xFF) / 255;\n var lB = (lightColor & 0xFF) / 255;\n\n var dR = ((darkColor >> 16) & 0xFF) / 255;\n var dG = ((darkColor >> 8) & 0xFF) / 255;\n var dB = (darkColor & 0xFF) / 255;\n\n var matrix = [\n 0.3, 0.59, 0.11, 0, 0,\n lR, lG, lB, desaturation, 0,\n dR, dG, dB, toned, 0,\n lR - dR, lG - dG, lB - dB, 0, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Night effect\n *\n * @param {number} intensity - The intensity of the night effect.\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.night = function night (intensity, multiply)\n {\n intensity = intensity || 0.1;\n var matrix = [\n intensity * (-2.0), -intensity, 0, 0, 0,\n -intensity, 0, intensity, 0, 0,\n 0, intensity, intensity * 2.0, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Predator effect\n *\n * Erase the current matrix by setting a new indepent one\n *\n * @param {number} amount - how much the predator feels his future victim\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.predator = function predator (amount, multiply)\n {\n var matrix = [\n // row 1\n 11.224130630493164 * amount,\n -4.794486999511719 * amount,\n -2.8746118545532227 * amount,\n 0 * amount,\n 0.40342438220977783 * amount,\n // row 2\n -3.6330697536468506 * amount,\n 9.193157196044922 * amount,\n -2.951810836791992 * amount,\n 0 * amount,\n -1.316135048866272 * amount,\n // row 3\n -3.2184197902679443 * amount,\n -4.2375030517578125 * amount,\n 7.476448059082031 * amount,\n 0 * amount,\n 0.8044459223747253 * amount,\n // row 4\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * LSD effect\n *\n * Multiply the current matrix\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.lsd = function lsd (multiply)\n {\n var matrix = [\n 2, -0.4, 0.5, 0, 0,\n -0.5, 2, -0.4, 0, 0,\n -0.4, -0.5, 3, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Erase the current matrix by setting the default one\n *\n */\n ColorMatrixFilter.prototype.reset = function reset ()\n {\n var matrix = [\n 1, 0, 0, 0, 0,\n 0, 1, 0, 0, 0,\n 0, 0, 1, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, false);\n };\n\n /**\n * The matrix of the color matrix filter\n *\n * @member {number[]}\n * @default [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]\n */\n prototypeAccessors.matrix.get = function ()\n {\n return this.uniforms.m;\n };\n\n prototypeAccessors.matrix.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uniforms.m = value;\n };\n\n /**\n * The opacity value to use when mixing the original and resultant colors.\n *\n * When the value is 0, the original color is used without modification.\n * When the value is 1, the result color is used.\n * When in the range (0, 1) the color is interpolated between the original and result by this amount.\n *\n * @member {number}\n * @default 1\n */\n prototypeAccessors.alpha.get = function ()\n {\n return this.uniforms.uAlpha;\n };\n\n prototypeAccessors.alpha.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uniforms.uAlpha = value;\n };\n\n Object.defineProperties( ColorMatrixFilter.prototype, prototypeAccessors );\n\n return ColorMatrixFilter;\n}(Filter));\n\n// Americanized alias\nColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale;\n\nexport { ColorMatrixFilter };\n//# sourceMappingURL=filter-color-matrix.es.js.map\n","/*!\n * @pixi/mixin-cache-as-bitmap - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/mixin-cache-as-bitmap is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { RenderTexture, BaseTexture, Texture } from '@pixi/core';\nimport { Sprite } from '@pixi/sprite';\nimport { DisplayObject } from '@pixi/display';\nimport { Matrix } from '@pixi/math';\nimport { uid } from '@pixi/utils';\nimport { settings } from '@pixi/settings';\n\nvar _tempMatrix = new Matrix();\n\nDisplayObject.prototype._cacheAsBitmap = false;\nDisplayObject.prototype._cacheData = false;\n\n// figured theres no point adding ALL the extra variables to prototype.\n// this model can hold the information needed. This can also be generated on demand as\n// most objects are not cached as bitmaps.\n/**\n * @class\n * @ignore\n */\nvar CacheData = function CacheData()\n{\n this.textureCacheId = null;\n\n this.originalRender = null;\n this.originalRenderCanvas = null;\n this.originalCalculateBounds = null;\n this.originalGetLocalBounds = null;\n\n this.originalUpdateTransform = null;\n this.originalHitTest = null;\n this.originalDestroy = null;\n this.originalMask = null;\n this.originalFilterArea = null;\n this.sprite = null;\n};\n\nObject.defineProperties(DisplayObject.prototype, {\n /**\n * Set this to true if you want this display object to be cached as a bitmap.\n * This basically takes a snap shot of the display object as it is at that moment. It can\n * provide a performance benefit for complex static displayObjects.\n * To remove simply set this property to `false`\n *\n * IMPORTANT GOTCHA - Make sure that all your textures are preloaded BEFORE setting this property to true\n * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n cacheAsBitmap: {\n get: function get()\n {\n return this._cacheAsBitmap;\n },\n set: function set(value)\n {\n if (this._cacheAsBitmap === value)\n {\n return;\n }\n\n this._cacheAsBitmap = value;\n\n var data;\n\n if (value)\n {\n if (!this._cacheData)\n {\n this._cacheData = new CacheData();\n }\n\n data = this._cacheData;\n\n data.originalRender = this.render;\n data.originalRenderCanvas = this.renderCanvas;\n\n data.originalUpdateTransform = this.updateTransform;\n data.originalCalculateBounds = this.calculateBounds;\n data.originalGetLocalBounds = this.getLocalBounds;\n\n data.originalDestroy = this.destroy;\n\n data.originalContainsPoint = this.containsPoint;\n\n data.originalMask = this._mask;\n data.originalFilterArea = this.filterArea;\n\n this.render = this._renderCached;\n this.renderCanvas = this._renderCachedCanvas;\n\n this.destroy = this._cacheAsBitmapDestroy;\n }\n else\n {\n data = this._cacheData;\n\n if (data.sprite)\n {\n this._destroyCachedDisplayObject();\n }\n\n this.render = data.originalRender;\n this.renderCanvas = data.originalRenderCanvas;\n this.calculateBounds = data.originalCalculateBounds;\n this.getLocalBounds = data.originalGetLocalBounds;\n\n this.destroy = data.originalDestroy;\n\n this.updateTransform = data.originalUpdateTransform;\n this.containsPoint = data.originalContainsPoint;\n\n this._mask = data.originalMask;\n this.filterArea = data.originalFilterArea;\n }\n },\n },\n});\n\n/**\n * Renders a cached version of the sprite with WebGL\n *\n * @private\n * @function _renderCached\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._renderCached = function _renderCached(renderer)\n{\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n this._initCachedDisplayObject(renderer);\n\n this._cacheData.sprite.transform._worldID = this.transform._worldID;\n this._cacheData.sprite.worldAlpha = this.worldAlpha;\n this._cacheData.sprite._render(renderer);\n};\n\n/**\n * Prepares the WebGL renderer to cache the sprite\n *\n * @private\n * @function _initCachedDisplayObject\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._initCachedDisplayObject = function _initCachedDisplayObject(renderer)\n{\n if (this._cacheData && this._cacheData.sprite)\n {\n return;\n }\n\n // make sure alpha is set to 1 otherwise it will get rendered as invisible!\n var cacheAlpha = this.alpha;\n\n this.alpha = 1;\n\n // first we flush anything left in the renderer (otherwise it would get rendered to the cached texture)\n renderer.batch.flush();\n // this.filters= [];\n\n // next we find the dimensions of the untransformed object\n // this function also calls updatetransform on all its children as part of the measuring.\n // This means we don't need to update the transform again in this function\n // TODO pass an object to clone too? saves having to create a new one each time!\n var bounds = this.getLocalBounds().clone();\n\n // add some padding!\n if (this.filters)\n {\n var padding = this.filters[0].padding;\n\n bounds.pad(padding);\n }\n\n bounds.ceil(settings.RESOLUTION);\n\n // for now we cache the current renderTarget that the WebGL renderer is currently using.\n // this could be more elegant..\n var cachedRenderTexture = renderer.renderTexture.current;\n var cachedSourceFrame = renderer.renderTexture.sourceFrame;\n var cachedProjectionTransform = renderer.projection.transform;\n\n // We also store the filter stack - I will definitely look to change how this works a little later down the line.\n // const stack = renderer.filterManager.filterStack;\n\n // this renderTexture will be used to store the cached DisplayObject\n var renderTexture = RenderTexture.create(bounds.width, bounds.height);\n\n var textureCacheId = \"cacheAsBitmap_\" + (uid());\n\n this._cacheData.textureCacheId = textureCacheId;\n\n BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId);\n Texture.addToCache(renderTexture, textureCacheId);\n\n // need to set //\n var m = _tempMatrix;\n\n m.tx = -bounds.x;\n m.ty = -bounds.y;\n\n // reset\n this.transform.worldTransform.identity();\n\n // set all properties to there original so we can render to a texture\n this.render = this._cacheData.originalRender;\n\n renderer.render(this, renderTexture, true, m, true);\n\n // now restore the state be setting the new properties\n renderer.projection.transform = cachedProjectionTransform;\n renderer.renderTexture.bind(cachedRenderTexture, cachedSourceFrame);\n\n // renderer.filterManager.filterStack = stack;\n\n this.render = this._renderCached;\n // the rest is the same as for Canvas\n this.updateTransform = this.displayObjectUpdateTransform;\n this.calculateBounds = this._calculateCachedBounds;\n this.getLocalBounds = this._getCachedLocalBounds;\n\n this._mask = null;\n this.filterArea = null;\n\n // create our cached sprite\n var cachedSprite = new Sprite(renderTexture);\n\n cachedSprite.transform.worldTransform = this.transform.worldTransform;\n cachedSprite.anchor.x = -(bounds.x / bounds.width);\n cachedSprite.anchor.y = -(bounds.y / bounds.height);\n cachedSprite.alpha = cacheAlpha;\n cachedSprite._bounds = this._bounds;\n\n this._cacheData.sprite = cachedSprite;\n\n this.transform._parentID = -1;\n // restore the transform of the cached sprite to avoid the nasty flicker..\n if (!this.parent)\n {\n this.parent = renderer._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this.updateTransform();\n }\n\n // map the hit test..\n this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite);\n};\n\n/**\n * Renders a cached version of the sprite with canvas\n *\n * @private\n * @function _renderCachedCanvas\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._renderCachedCanvas = function _renderCachedCanvas(renderer)\n{\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n this._initCachedDisplayObjectCanvas(renderer);\n\n this._cacheData.sprite.worldAlpha = this.worldAlpha;\n this._cacheData.sprite._renderCanvas(renderer);\n};\n\n// TODO this can be the same as the WebGL version.. will need to do a little tweaking first though..\n/**\n * Prepares the Canvas renderer to cache the sprite\n *\n * @private\n * @function _initCachedDisplayObjectCanvas\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._initCachedDisplayObjectCanvas = function _initCachedDisplayObjectCanvas(renderer)\n{\n if (this._cacheData && this._cacheData.sprite)\n {\n return;\n }\n\n // get bounds actually transforms the object for us already!\n var bounds = this.getLocalBounds();\n\n var cacheAlpha = this.alpha;\n\n this.alpha = 1;\n\n var cachedRenderTarget = renderer.context;\n\n bounds.ceil(settings.RESOLUTION);\n\n var renderTexture = RenderTexture.create(bounds.width, bounds.height);\n\n var textureCacheId = \"cacheAsBitmap_\" + (uid());\n\n this._cacheData.textureCacheId = textureCacheId;\n\n BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId);\n Texture.addToCache(renderTexture, textureCacheId);\n\n // need to set //\n var m = _tempMatrix;\n\n this.transform.localTransform.copyTo(m);\n m.invert();\n\n m.tx -= bounds.x;\n m.ty -= bounds.y;\n\n // m.append(this.transform.worldTransform.)\n // set all properties to there original so we can render to a texture\n this.renderCanvas = this._cacheData.originalRenderCanvas;\n\n // renderTexture.render(this, m, true);\n renderer.render(this, renderTexture, true, m, false);\n\n // now restore the state be setting the new properties\n renderer.context = cachedRenderTarget;\n\n this.renderCanvas = this._renderCachedCanvas;\n // the rest is the same as for WebGL\n this.updateTransform = this.displayObjectUpdateTransform;\n this.calculateBounds = this._calculateCachedBounds;\n this.getLocalBounds = this._getCachedLocalBounds;\n\n this._mask = null;\n this.filterArea = null;\n\n // create our cached sprite\n var cachedSprite = new Sprite(renderTexture);\n\n cachedSprite.transform.worldTransform = this.transform.worldTransform;\n cachedSprite.anchor.x = -(bounds.x / bounds.width);\n cachedSprite.anchor.y = -(bounds.y / bounds.height);\n cachedSprite.alpha = cacheAlpha;\n cachedSprite._bounds = this._bounds;\n\n this._cacheData.sprite = cachedSprite;\n\n this.transform._parentID = -1;\n // restore the transform of the cached sprite to avoid the nasty flicker..\n if (!this.parent)\n {\n this.parent = renderer._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this.updateTransform();\n }\n\n // map the hit test..\n this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite);\n};\n\n/**\n * Calculates the bounds of the cached sprite\n *\n * @private\n */\nDisplayObject.prototype._calculateCachedBounds = function _calculateCachedBounds()\n{\n this._bounds.clear();\n this._cacheData.sprite.transform._worldID = this.transform._worldID;\n this._cacheData.sprite._calculateBounds();\n this._lastBoundsID = this._boundsID;\n};\n\n/**\n * Gets the bounds of the cached sprite.\n *\n * @private\n * @return {Rectangle} The local bounds.\n */\nDisplayObject.prototype._getCachedLocalBounds = function _getCachedLocalBounds()\n{\n return this._cacheData.sprite.getLocalBounds();\n};\n\n/**\n * Destroys the cached sprite.\n *\n * @private\n */\nDisplayObject.prototype._destroyCachedDisplayObject = function _destroyCachedDisplayObject()\n{\n this._cacheData.sprite._texture.destroy(true);\n this._cacheData.sprite = null;\n\n BaseTexture.removeFromCache(this._cacheData.textureCacheId);\n Texture.removeFromCache(this._cacheData.textureCacheId);\n\n this._cacheData.textureCacheId = null;\n};\n\n/**\n * Destroys the cached object.\n *\n * @private\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value.\n * Used when destroying containers, see the Container.destroy method.\n */\nDisplayObject.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy(options)\n{\n this.cacheAsBitmap = false;\n this.destroy(options);\n};\n//# sourceMappingURL=mixin-cache-as-bitmap.es.js.map\n","/*!\n * @pixi/mixin-get-child-by-name - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/mixin-get-child-by-name is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { DisplayObject, Container } from '@pixi/display';\n\n/**\n * The instance name of the object.\n *\n * @memberof PIXI.DisplayObject#\n * @member {string} name\n */\nDisplayObject.prototype.name = null;\n\n/**\n * Returns the display object in the container.\n *\n * @method getChildByName\n * @memberof PIXI.Container#\n * @param {string} name - Instance name.\n * @return {PIXI.DisplayObject} The child with the specified name.\n */\nContainer.prototype.getChildByName = function getChildByName(name)\n{\n for (var i = 0; i < this.children.length; i++)\n {\n if (this.children[i].name === name)\n {\n return this.children[i];\n }\n }\n\n return null;\n};\n//# sourceMappingURL=mixin-get-child-by-name.es.js.map\n","/*!\n * @pixi/mixin-get-global-position - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/mixin-get-global-position is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { DisplayObject } from '@pixi/display';\nimport { Point } from '@pixi/math';\n\n/**\n * Returns the global position of the displayObject. Does not depend on object scale, rotation and pivot.\n *\n * @method getGlobalPosition\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Point} [point=new PIXI.Point()] - The point to write the global value to.\n * @param {boolean} [skipUpdate=false] - Setting to true will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost.\n * @return {PIXI.Point} The updated point.\n */\nDisplayObject.prototype.getGlobalPosition = function getGlobalPosition(point, skipUpdate)\n{\n if ( point === void 0 ) point = new Point();\n if ( skipUpdate === void 0 ) skipUpdate = false;\n\n if (this.parent)\n {\n this.parent.toGlobal(this.position, point, skipUpdate);\n }\n else\n {\n point.x = this.position.x;\n point.y = this.position.y;\n }\n\n return point;\n};\n//# sourceMappingURL=mixin-get-global-position.es.js.map\n","/*!\n * @pixi/mesh - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/mesh is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { State, Shader, Program, TextureMatrix, Geometry, Buffer } from '@pixi/core';\nimport { Point, Polygon, Matrix } from '@pixi/math';\nimport { DRAW_MODES, BLEND_MODES, TYPES } from '@pixi/constants';\nimport { Container } from '@pixi/display';\nimport { settings } from '@pixi/settings';\nimport { premultiplyTintToRgba } from '@pixi/utils';\n\n/**\n * Class controls cache for UV mapping from Texture normal space to BaseTexture normal space.\n *\n * @class\n * @memberof PIXI\n */\nvar MeshBatchUvs = function MeshBatchUvs(uvBuffer, uvMatrix)\n{\n /**\n * Buffer with normalized UV's\n * @member {PIXI.Buffer}\n */\n this.uvBuffer = uvBuffer;\n\n /**\n * Material UV matrix\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = uvMatrix;\n\n /**\n * UV Buffer data\n * @member {Float32Array}\n * @readonly\n */\n this.data = null;\n\n this._bufferUpdateId = -1;\n\n this._textureUpdateId = -1;\n\n this._updateID = 0;\n};\n\n/**\n * updates\n *\n * @param {boolean} forceUpdate - force the update\n */\nMeshBatchUvs.prototype.update = function update (forceUpdate)\n{\n if (!forceUpdate\n && this._bufferUpdateId === this.uvBuffer._updateID\n && this._textureUpdateId === this.uvMatrix._updateID)\n {\n return;\n }\n\n this._bufferUpdateId = this.uvBuffer._updateID;\n this._textureUpdateId = this.uvMatrix._updateID;\n\n var data = this.uvBuffer.data;\n\n if (!this.data || this.data.length !== data.length)\n {\n this.data = new Float32Array(data.length);\n }\n\n this.uvMatrix.multiplyUvs(data, this.data);\n\n this._updateID++;\n};\n\nvar tempPoint = new Point();\nvar tempPolygon = new Polygon();\n\n/**\n * Base mesh class.\n *\n * This class empowers you to have maximum flexibility to render any kind of WebGL visuals you can think of.\n * This class assumes a certain level of WebGL knowledge.\n * If you know a bit this should abstract enough away to make you life easier!\n *\n * Pretty much ALL WebGL can be broken down into the following:\n * - Geometry - The structure and data for the mesh. This can include anything from positions, uvs, normals, colors etc..\n * - Shader - This is the shader that PixiJS will render the geometry with (attributes in the shader must match the geometry)\n * - State - This is the state of WebGL required to render the mesh.\n *\n * Through a combination of the above elements you can render anything you want, 2D or 3D!\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Mesh = /*@__PURE__*/(function (Container) {\n function Mesh(geometry, shader, state, drawMode)// vertices, uvs, indices, drawMode)\n {\n if ( drawMode === void 0 ) drawMode = DRAW_MODES.TRIANGLES;\n\n Container.call(this);\n\n /**\n * Includes vertex positions, face indices, normals, colors, UVs, and\n * custom attributes within buffers, reducing the cost of passing all\n * this data to the GPU. Can be shared between multiple Mesh objects.\n * @member {PIXI.Geometry}\n * @readonly\n */\n this.geometry = geometry;\n\n geometry.refCount++;\n\n /**\n * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU.\n * Can be shared between multiple Mesh objects.\n * @member {PIXI.Shader|PIXI.MeshMaterial}\n */\n this.shader = shader;\n\n /**\n * Represents the WebGL state the Mesh required to render, excludes shader and geometry. E.g.,\n * blend mode, culling, depth testing, direction of rendering triangles, backface, etc.\n * @member {PIXI.State}\n */\n this.state = state || State.for2d();\n\n /**\n * The way the Mesh should be drawn, can be any of the {@link PIXI.DRAW_MODES} constants.\n *\n * @member {number}\n * @see PIXI.DRAW_MODES\n */\n this.drawMode = drawMode;\n\n /**\n * Typically the index of the IndexBuffer where to start drawing.\n * @member {number}\n * @default 0\n */\n this.start = 0;\n\n /**\n * How much of the geometry to draw, by default `0` renders everything.\n * @member {number}\n * @default 0\n */\n this.size = 0;\n\n /**\n * thease are used as easy access for batching\n * @member {Float32Array}\n * @private\n */\n this.uvs = null;\n\n /**\n * thease are used as easy access for batching\n * @member {Uint16Array}\n * @private\n */\n this.indices = null;\n\n /**\n * this is the caching layer used by the batcher\n * @member {Float32Array}\n * @private\n */\n this.vertexData = new Float32Array(1);\n\n /**\n * If geometry is changed used to decide to re-transform\n * the vertexData.\n * @member {number}\n * @private\n */\n this.vertexDirty = 0;\n\n this._transformID = -1;\n\n // Inherited from DisplayMode, set defaults\n this.tint = 0xFFFFFF;\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * Internal roundPixels field\n *\n * @member {boolean}\n * @private\n */\n this._roundPixels = settings.ROUND_PIXELS;\n\n /**\n * Batched UV's are cached for atlas textures\n * @member {PIXI.MeshBatchUvs}\n * @private\n */\n this.batchUvs = null;\n }\n\n if ( Container ) Mesh.__proto__ = Container;\n Mesh.prototype = Object.create( Container && Container.prototype );\n Mesh.prototype.constructor = Mesh;\n\n var prototypeAccessors = { uvBuffer: { configurable: true },verticesBuffer: { configurable: true },material: { configurable: true },blendMode: { configurable: true },roundPixels: { configurable: true },tint: { configurable: true },texture: { configurable: true } };\n\n /**\n * To change mesh uv's, change its uvBuffer data and increment its _updateID.\n * @member {PIXI.Buffer}\n * @readonly\n */\n prototypeAccessors.uvBuffer.get = function ()\n {\n return this.geometry.buffers[1];\n };\n\n /**\n * To change mesh vertices, change its uvBuffer data and increment its _updateID.\n * Incrementing _updateID is optional because most of Mesh objects do it anyway.\n * @member {PIXI.Buffer}\n * @readonly\n */\n prototypeAccessors.verticesBuffer.get = function ()\n {\n return this.geometry.buffers[0];\n };\n\n /**\n * Alias for {@link PIXI.Mesh#shader}.\n * @member {PIXI.Shader|PIXI.MeshMaterial}\n */\n prototypeAccessors.material.set = function (value)\n {\n this.shader = value;\n };\n\n prototypeAccessors.material.get = function ()\n {\n return this.shader;\n };\n\n /**\n * The blend mode to be applied to the Mesh. Apply a value of\n * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL;\n * @see PIXI.BLEND_MODES\n */\n prototypeAccessors.blendMode.set = function (value)\n {\n this.state.blendMode = value;\n };\n\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n prototypeAccessors.roundPixels.set = function (value)\n {\n if (this._roundPixels !== value)\n {\n this._transformID = -1;\n }\n this._roundPixels = value;\n };\n\n prototypeAccessors.roundPixels.get = function ()\n {\n return this._roundPixels;\n };\n\n /**\n * The multiply tint applied to the Mesh. This is a hex value. A value of\n * `0xFFFFFF` will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this.shader.tint;\n };\n\n prototypeAccessors.tint.set = function (value)\n {\n this.shader.tint = value;\n };\n\n /**\n * The texture that the Mesh uses.\n *\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this.shader.texture;\n };\n\n prototypeAccessors.texture.set = function (value)\n {\n this.shader.texture = value;\n };\n\n /**\n * Standard renderer draw.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._render = function _render (renderer)\n {\n // set properties for batching..\n // TODO could use a different way to grab verts?\n var vertices = this.geometry.buffers[0].data;\n\n // TODO benchmark check for attribute size..\n if (this.shader.batchable && this.drawMode === DRAW_MODES.TRIANGLES && vertices.length < Mesh.BATCHABLE_SIZE * 2)\n {\n this._renderToBatch(renderer);\n }\n else\n {\n this._renderDefault(renderer);\n }\n };\n\n /**\n * Standard non-batching way of rendering.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._renderDefault = function _renderDefault (renderer)\n {\n var shader = this.shader;\n\n shader.alpha = this.worldAlpha;\n if (shader.update)\n {\n shader.update();\n }\n\n renderer.batch.flush();\n\n if (shader.program.uniformData.translationMatrix)\n {\n shader.uniforms.translationMatrix = this.transform.worldTransform.toArray(true);\n }\n\n // bind and sync uniforms..\n renderer.shader.bind(shader);\n\n // set state..\n renderer.state.set(this.state);\n\n // bind the geometry...\n renderer.geometry.bind(this.geometry, shader);\n\n // then render it\n renderer.geometry.draw(this.drawMode, this.size, this.start, this.geometry.instanceCount);\n };\n\n /**\n * Rendering by using the Batch system.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._renderToBatch = function _renderToBatch (renderer)\n {\n var geometry = this.geometry;\n\n if (this.shader.uvMatrix)\n {\n this.shader.uvMatrix.update();\n this.calculateUvs();\n }\n\n // set properties for batching..\n this.calculateVertices();\n this.indices = geometry.indexBuffer.data;\n this._tintRGB = this.shader._tintRGB;\n this._texture = this.shader.texture;\n\n var pluginName = this.material.pluginName;\n\n renderer.batch.setObjectRenderer(renderer.plugins[pluginName]);\n renderer.plugins[pluginName].render(this);\n };\n\n /**\n * Updates vertexData field based on transform and vertices\n */\n Mesh.prototype.calculateVertices = function calculateVertices ()\n {\n var geometry = this.geometry;\n var vertices = geometry.buffers[0].data;\n\n if (geometry.vertexDirtyId === this.vertexDirty && this._transformID === this.transform._worldID)\n {\n return;\n }\n\n this._transformID = this.transform._worldID;\n\n if (this.vertexData.length !== vertices.length)\n {\n this.vertexData = new Float32Array(vertices.length);\n }\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var vertexData = this.vertexData;\n\n for (var i = 0; i < vertexData.length / 2; i++)\n {\n var x = vertices[(i * 2)];\n var y = vertices[(i * 2) + 1];\n\n vertexData[(i * 2)] = (a * x) + (c * y) + tx;\n vertexData[(i * 2) + 1] = (b * x) + (d * y) + ty;\n }\n\n if (this._roundPixels)\n {\n for (var i$1 = 0; i$1 < vertexData.length; i$1++)\n {\n vertexData[i$1] = Math.round(vertexData[i$1]);\n }\n }\n\n this.vertexDirty = geometry.vertexDirtyId;\n };\n\n /**\n * Updates uv field based on from geometry uv's or batchUvs\n */\n Mesh.prototype.calculateUvs = function calculateUvs ()\n {\n var geomUvs = this.geometry.buffers[1];\n\n if (!this.shader.uvMatrix.isSimple)\n {\n if (!this.batchUvs)\n {\n this.batchUvs = new MeshBatchUvs(geomUvs, this.shader.uvMatrix);\n }\n this.batchUvs.update();\n this.uvs = this.batchUvs.data;\n }\n else\n {\n this.uvs = geomUvs.data;\n }\n };\n\n /**\n * Updates the bounds of the mesh as a rectangle. The bounds calculation takes the worldTransform into account.\n * there must be a aVertexPosition attribute present in the geometry for bounds to be calculated correctly.\n *\n * @protected\n */\n Mesh.prototype._calculateBounds = function _calculateBounds ()\n {\n this.calculateVertices();\n\n this._bounds.addVertexData(this.vertexData, 0, this.vertexData.length);\n };\n\n /**\n * Tests if a point is inside this mesh. Works only for PIXI.DRAW_MODES.TRIANGLES.\n *\n * @param {PIXI.Point} point the point to test\n * @return {boolean} the result of the test\n */\n Mesh.prototype.containsPoint = function containsPoint (point)\n {\n if (!this.getBounds().contains(point.x, point.y))\n {\n return false;\n }\n\n this.worldTransform.applyInverse(point, tempPoint);\n\n var vertices = this.geometry.getBuffer('aVertexPosition').data;\n\n var points = tempPolygon.points;\n var indices = this.geometry.getIndex().data;\n var len = indices.length;\n var step = this.drawMode === 4 ? 3 : 1;\n\n for (var i = 0; i + 2 < len; i += step)\n {\n var ind0 = indices[i] * 2;\n var ind1 = indices[i + 1] * 2;\n var ind2 = indices[i + 2] * 2;\n\n points[0] = vertices[ind0];\n points[1] = vertices[ind0 + 1];\n points[2] = vertices[ind1];\n points[3] = vertices[ind1 + 1];\n points[4] = vertices[ind2];\n points[5] = vertices[ind2 + 1];\n\n if (tempPolygon.contains(tempPoint.x, tempPoint.y))\n {\n return true;\n }\n }\n\n return false;\n };\n /**\n * Destroys the Mesh object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n */\n Mesh.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.geometry.refCount--;\n if (this.geometry.refCount === 0)\n {\n this.geometry.dispose();\n }\n\n this.geometry = null;\n this.shader = null;\n this.state = null;\n this.uvs = null;\n this.indices = null;\n this.vertexData = null;\n };\n\n Object.defineProperties( Mesh.prototype, prototypeAccessors );\n\n return Mesh;\n}(Container));\n\n/**\n * The maximum number of vertices to consider batchable. Generally, the complexity\n * of the geometry.\n * @memberof PIXI.Mesh\n * @static\n * @member {number} BATCHABLE_SIZE\n */\nMesh.BATCHABLE_SIZE = 100;\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform mat3 uTextureMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = (uTextureMatrix * vec3(aTextureCoord, 1.0)).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\nuniform vec4 uColor;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void)\\n{\\n gl_FragColor = texture2D(uSampler, vTextureCoord) * uColor;\\n}\\n\";\n\n/**\n * Slightly opinionated default shader for PixiJS 2D objects.\n * @class\n * @memberof PIXI\n * @extends PIXI.Shader\n */\nvar MeshMaterial = /*@__PURE__*/(function (Shader) {\n function MeshMaterial(uSampler, options)\n {\n var uniforms = {\n uSampler: uSampler,\n alpha: 1,\n uTextureMatrix: Matrix.IDENTITY,\n uColor: new Float32Array([1, 1, 1, 1]),\n };\n\n // Set defaults\n options = Object.assign({\n tint: 0xFFFFFF,\n alpha: 1,\n pluginName: 'batch',\n }, options);\n\n if (options.uniforms)\n {\n Object.assign(uniforms, options.uniforms);\n }\n\n Shader.call(this, options.program || Program.from(vertex, fragment), uniforms);\n\n /**\n * Only do update if tint or alpha changes.\n * @member {boolean}\n * @private\n * @default false\n */\n this._colorDirty = false;\n\n /**\n * TextureMatrix instance for this Mesh, used to track Texture changes\n *\n * @member {PIXI.TextureMatrix}\n * @readonly\n */\n this.uvMatrix = new TextureMatrix(uSampler);\n\n /**\n * `true` if shader can be batch with the renderer's batch system.\n * @member {boolean}\n * @default true\n */\n this.batchable = options.program === undefined;\n\n /**\n * Renderer plugin for batching\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = options.pluginName;\n\n this.tint = options.tint;\n this.alpha = options.alpha;\n }\n\n if ( Shader ) MeshMaterial.__proto__ = Shader;\n MeshMaterial.prototype = Object.create( Shader && Shader.prototype );\n MeshMaterial.prototype.constructor = MeshMaterial;\n\n var prototypeAccessors = { texture: { configurable: true },alpha: { configurable: true },tint: { configurable: true } };\n\n /**\n * Reference to the texture being rendered.\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this.uniforms.uSampler;\n };\n prototypeAccessors.texture.set = function (value)\n {\n if (this.uniforms.uSampler !== value)\n {\n this.uniforms.uSampler = value;\n this.uvMatrix.texture = value;\n }\n };\n\n /**\n * This gets automatically set by the object using this.\n *\n * @default 1\n * @member {number}\n */\n prototypeAccessors.alpha.set = function (value)\n {\n if (value === this._alpha) { return; }\n\n this._alpha = value;\n this._colorDirty = true;\n };\n prototypeAccessors.alpha.get = function ()\n {\n return this._alpha;\n };\n\n /**\n * Multiply tint for the material.\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.set = function (value)\n {\n if (value === this._tint) { return; }\n\n this._tint = value;\n this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16);\n this._colorDirty = true;\n };\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n /**\n * Gets called automatically by the Mesh. Intended to be overridden for custom\n * MeshMaterial objects.\n */\n MeshMaterial.prototype.update = function update ()\n {\n if (this._colorDirty)\n {\n this._colorDirty = false;\n var baseTexture = this.texture.baseTexture;\n\n premultiplyTintToRgba(this._tint, this._alpha, this.uniforms.uColor, baseTexture.premultiplyAlpha);\n }\n if (this.uvMatrix.update())\n {\n this.uniforms.uTextureMatrix = this.uvMatrix.mapCoord;\n }\n };\n\n Object.defineProperties( MeshMaterial.prototype, prototypeAccessors );\n\n return MeshMaterial;\n}(Shader));\n\n/**\n * Standard 2D geometry used in PixiJS.\n *\n * Geometry can be defined without passing in a style or data if required.\n *\n * ```js\n * const geometry = new PIXI.Geometry();\n *\n * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2);\n * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1], 2);\n * geometry.addIndex([0,1,2,1,3,2]);\n *\n * ```\n * @class\n * @memberof PIXI\n * @extends PIXI.Geometry\n */\nvar MeshGeometry = /*@__PURE__*/(function (Geometry) {\n function MeshGeometry(vertices, uvs, index)\n {\n Geometry.call(this);\n\n var verticesBuffer = new Buffer(vertices);\n var uvsBuffer = new Buffer(uvs, true);\n var indexBuffer = new Buffer(index, true, true);\n\n this.addAttribute('aVertexPosition', verticesBuffer, 2, false, TYPES.FLOAT)\n .addAttribute('aTextureCoord', uvsBuffer, 2, false, TYPES.FLOAT)\n .addIndex(indexBuffer);\n\n /**\n * Dirty flag to limit update calls on Mesh. For example,\n * limiting updates on a single Mesh instance with a shared Geometry\n * within the render loop.\n * @private\n * @member {number}\n * @default -1\n */\n this._updateId = -1;\n }\n\n if ( Geometry ) MeshGeometry.__proto__ = Geometry;\n MeshGeometry.prototype = Object.create( Geometry && Geometry.prototype );\n MeshGeometry.prototype.constructor = MeshGeometry;\n\n var prototypeAccessors = { vertexDirtyId: { configurable: true } };\n\n /**\n * If the vertex position is updated.\n * @member {number}\n * @readonly\n * @private\n */\n prototypeAccessors.vertexDirtyId.get = function ()\n {\n return this.buffers[0]._updateID;\n };\n\n Object.defineProperties( MeshGeometry.prototype, prototypeAccessors );\n\n return MeshGeometry;\n}(Geometry));\n\nexport { Mesh, MeshBatchUvs, MeshGeometry, MeshMaterial };\n//# sourceMappingURL=mesh.es.js.map\n","/*!\n * pixi.js - v5.1.4\n * Compiled Sat, 21 Sep 2019 07:35:21 UTC\n *\n * pixi.js is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport '@pixi/polyfill';\nimport { AccessibilityManager } from '@pixi/accessibility';\nimport * as accessibility from '@pixi/accessibility';\nexport { accessibility };\nimport { Extract } from '@pixi/extract';\nimport * as extract from '@pixi/extract';\nexport { extract };\nimport { InteractionManager } from '@pixi/interaction';\nimport * as interaction from '@pixi/interaction';\nexport { interaction };\nimport { Prepare } from '@pixi/prepare';\nimport * as prepare from '@pixi/prepare';\nexport { prepare };\nimport { deprecation } from '@pixi/utils';\nimport * as utils from '@pixi/utils';\nexport { utils };\nimport { Application } from '@pixi/app';\nexport * from '@pixi/app';\nimport { Renderer, BatchRenderer } from '@pixi/core';\nexport * from '@pixi/core';\nimport { Loader, AppLoaderPlugin } from '@pixi/loaders';\nexport * from '@pixi/loaders';\nimport { ParticleRenderer } from '@pixi/particles';\nexport * from '@pixi/particles';\nimport { SpritesheetLoader } from '@pixi/spritesheet';\nexport * from '@pixi/spritesheet';\nimport { TilingSpriteRenderer } from '@pixi/sprite-tiling';\nexport * from '@pixi/sprite-tiling';\nimport { BitmapFontLoader } from '@pixi/text-bitmap';\nexport * from '@pixi/text-bitmap';\nimport { TickerPlugin } from '@pixi/ticker';\nexport * from '@pixi/ticker';\nimport { AlphaFilter } from '@pixi/filter-alpha';\nimport { BlurFilter, BlurFilterPass } from '@pixi/filter-blur';\nimport { ColorMatrixFilter } from '@pixi/filter-color-matrix';\nimport { DisplacementFilter } from '@pixi/filter-displacement';\nimport { FXAAFilter } from '@pixi/filter-fxaa';\nimport { NoiseFilter } from '@pixi/filter-noise';\nimport '@pixi/mixin-cache-as-bitmap';\nimport '@pixi/mixin-get-child-by-name';\nimport '@pixi/mixin-get-global-position';\nexport * from '@pixi/constants';\nexport * from '@pixi/display';\nexport * from '@pixi/graphics';\nexport * from '@pixi/math';\nexport * from '@pixi/mesh';\nexport * from '@pixi/mesh-extras';\nexport * from '@pixi/runner';\nexport * from '@pixi/sprite';\nexport * from '@pixi/sprite-animated';\nexport * from '@pixi/text';\nexport * from '@pixi/settings';\n\nvar v5 = '5.0.0';\n\n/**\n * Deprecations (backward compatibilities) are automatically applied for browser bundles\n * in the UMD module format. If using Webpack or Rollup, you'll need to apply these\n * deprecations manually by doing something like this:\n * @example\n * import * as PIXI from 'pixi.js';\n * PIXI.useDeprecated(); // MUST be bound to namespace\n * @memberof PIXI\n * @function useDeprecated\n */\nfunction useDeprecated()\n{\n var PIXI = this;\n\n Object.defineProperties(PIXI, {\n /**\n * @constant {RegExp|string} SVG_SIZE\n * @memberof PIXI\n * @see PIXI.resources.SVGResource.SVG_SIZE\n * @deprecated since 5.0.0\n */\n SVG_SIZE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.utils.SVG_SIZE property has moved to PIXI.resources.SVGResource.SVG_SIZE');\n\n return PIXI.SVGResource.SVG_SIZE;\n },\n },\n\n /**\n * @class PIXI.TransformStatic\n * @deprecated since 5.0.0\n * @see PIXI.Transform\n */\n TransformStatic: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TransformStatic class has been removed, use PIXI.Transform');\n\n return PIXI.Transform;\n },\n },\n\n /**\n * @class PIXI.TransformBase\n * @deprecated since 5.0.0\n * @see PIXI.Transform\n */\n TransformBase: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TransformBase class has been removed, use PIXI.Transform');\n\n return PIXI.Transform;\n },\n },\n\n /**\n * Constants that specify the transform type.\n *\n * @static\n * @constant\n * @name TRANSFORM_MODE\n * @memberof PIXI\n * @enum {number}\n * @deprecated since 5.0.0\n * @property {number} STATIC\n * @property {number} DYNAMIC\n */\n TRANSFORM_MODE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TRANSFORM_MODE property has been removed');\n\n return { STATIC: 0, DYNAMIC: 1 };\n },\n },\n\n /**\n * @class PIXI.WebGLRenderer\n * @see PIXI.Renderer\n * @deprecated since 5.0.0\n */\n WebGLRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.WebGLRenderer class has moved to PIXI.Renderer');\n\n return PIXI.Renderer;\n },\n },\n\n /**\n * @class PIXI.CanvasRenderTarget\n * @see PIXI.utils.CanvasRenderTarget\n * @deprecated since 5.0.0\n */\n CanvasRenderTarget: {\n get: function get()\n {\n deprecation(v5, 'PIXI.CanvasRenderTarget class has moved to PIXI.utils.CanvasRenderTarget');\n\n return PIXI.utils.CanvasRenderTarget;\n },\n },\n\n /**\n * @memberof PIXI\n * @name loader\n * @type {PIXI.Loader}\n * @see PIXI.Loader.shared\n * @deprecated since 5.0.0\n */\n loader: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loader instance has moved to PIXI.Loader.shared');\n\n return PIXI.Loader.shared;\n },\n },\n\n /**\n * @class PIXI.FilterManager\n * @see PIXI.systems.FilterSystem\n * @deprecated since 5.0.0\n */\n FilterManager: {\n get: function get()\n {\n deprecation(v5, 'PIXI.FilterManager class has moved to PIXI.systems.FilterSystem');\n\n return PIXI.systems.FilterSystem;\n },\n },\n\n /**\n * @namespace PIXI.CanvasTinter\n * @see PIXI.canvasUtils\n * @deprecated since 5.2.0\n */\n CanvasTinter: {\n get: function get()\n {\n deprecation('5.2.0', 'PIXI.CanvasTinter namespace has moved to PIXI.canvasUtils');\n\n return PIXI.canvasUtils;\n },\n },\n\n /**\n * @namespace PIXI.GroupD8\n * @see PIXI.groupD8\n * @deprecated since 5.2.0\n */\n GroupD8: {\n get: function get()\n {\n deprecation('5.2.0', 'PIXI.GroupD8 namespace has moved to PIXI.groupD8');\n\n return PIXI.groupD8;\n },\n },\n });\n\n /**\n * This namespace has been removed. All classes previous nested\n * under this namespace have been moved to the top-level `PIXI` object.\n * @namespace PIXI.extras\n * @deprecated since 5.0.0\n */\n PIXI.extras = {};\n\n Object.defineProperties(PIXI.extras, {\n /**\n * @class PIXI.extras.TilingSprite\n * @see PIXI.TilingSprite\n * @deprecated since 5.0.0\n */\n TilingSprite: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.TilingSprite class has moved to PIXI.TilingSprite');\n\n return PIXI.TilingSprite;\n },\n },\n /**\n * @class PIXI.extras.TilingSpriteRenderer\n * @see PIXI.TilingSpriteRenderer\n * @deprecated since 5.0.0\n */\n TilingSpriteRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.TilingSpriteRenderer class has moved to PIXI.TilingSpriteRenderer');\n\n return PIXI.TilingSpriteRenderer;\n },\n },\n /**\n * @class PIXI.extras.AnimatedSprite\n * @see PIXI.AnimatedSprite\n * @deprecated since 5.0.0\n */\n AnimatedSprite: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.AnimatedSprite class has moved to PIXI.AnimatedSprite');\n\n return PIXI.AnimatedSprite;\n },\n },\n /**\n * @class PIXI.extras.BitmapText\n * @see PIXI.BitmapText\n * @deprecated since 5.0.0\n */\n BitmapText: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.BitmapText class has moved to PIXI.BitmapText');\n\n return PIXI.BitmapText;\n },\n },\n });\n\n Object.defineProperties(PIXI.utils, {\n /**\n * @function PIXI.utils.getSvgSize\n * @see PIXI.resources.SVGResource.getSize\n * @deprecated since 5.0.0\n */\n getSvgSize: {\n get: function get()\n {\n deprecation(v5, 'PIXI.utils.getSvgSize function has moved to PIXI.resources.SVGResource.getSize');\n\n return PIXI.SVGResource.getSize;\n },\n },\n });\n\n /**\n * All classes on this namespace have moved to the high-level `PIXI` object.\n * @namespace PIXI.mesh\n * @deprecated since 5.0.0\n */\n PIXI.mesh = {};\n\n Object.defineProperties(PIXI.mesh, {\n /**\n * @class PIXI.mesh.Mesh\n * @see PIXI.SimpleMesh\n * @deprecated since 5.0.0\n */\n Mesh: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Mesh class has moved to PIXI.SimpleMesh');\n\n return PIXI.SimpleMesh;\n },\n },\n /**\n * @class PIXI.mesh.NineSlicePlane\n * @see PIXI.NineSlicePlane\n * @deprecated since 5.0.0\n */\n NineSlicePlane: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.NineSlicePlane class has moved to PIXI.NineSlicePlane');\n\n return PIXI.NineSlicePlane;\n },\n },\n /**\n * @class PIXI.mesh.Plane\n * @see PIXI.SimplePlane\n * @deprecated since 5.0.0\n */\n Plane: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Plane class has moved to PIXI.SimplePlane');\n\n return PIXI.SimplePlane;\n },\n },\n /**\n * @class PIXI.mesh.Rope\n * @see PIXI.SimpleRope\n * @deprecated since 5.0.0\n */\n Rope: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Rope class has moved to PIXI.SimpleRope');\n\n return PIXI.SimpleRope;\n },\n },\n /**\n * @class PIXI.mesh.RawMesh\n * @see PIXI.Mesh\n * @deprecated since 5.0.0\n */\n RawMesh: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.RawMesh class has moved to PIXI.Mesh');\n\n return PIXI.Mesh;\n },\n },\n /**\n * @class PIXI.mesh.CanvasMeshRenderer\n * @see PIXI.CanvasMeshRenderer\n * @deprecated since 5.0.0\n */\n CanvasMeshRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.CanvasMeshRenderer class has moved to PIXI.CanvasMeshRenderer');\n\n return PIXI.CanvasMeshRenderer;\n },\n },\n /**\n * @class PIXI.mesh.MeshRenderer\n * @see PIXI.MeshRenderer\n * @deprecated since 5.0.0\n */\n MeshRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.MeshRenderer class has moved to PIXI.MeshRenderer');\n\n return PIXI.MeshRenderer;\n },\n },\n });\n\n /**\n * This namespace has been removed and items have been moved to\n * the top-level `PIXI` object.\n * @namespace PIXI.particles\n * @deprecated since 5.0.0\n */\n PIXI.particles = {};\n\n Object.defineProperties(PIXI.particles, {\n /**\n * @class PIXI.particles.ParticleContainer\n * @deprecated since 5.0.0\n * @see PIXI.ParticleContainer\n */\n ParticleContainer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.particles.ParticleContainer class has moved to PIXI.ParticleContainer');\n\n return PIXI.ParticleContainer;\n },\n },\n /**\n * @class PIXI.particles.ParticleRenderer\n * @deprecated since 5.0.0\n * @see PIXI.ParticleRenderer\n */\n ParticleRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.particles.ParticleRenderer class has moved to PIXI.ParticleRenderer');\n\n return PIXI.ParticleRenderer;\n },\n },\n });\n\n /**\n * This namespace has been removed and items have been moved to\n * the top-level `PIXI` object.\n * @namespace PIXI.ticker\n * @deprecated since 5.0.0\n */\n PIXI.ticker = {};\n\n Object.defineProperties(PIXI.ticker, {\n /**\n * @class PIXI.ticker.Ticker\n * @deprecated since 5.0.0\n * @see PIXI.Ticker\n */\n Ticker: {\n get: function get()\n {\n deprecation(v5, 'PIXI.ticker.Ticker class has moved to PIXI.Ticker');\n\n return PIXI.Ticker;\n },\n },\n /**\n * @name PIXI.ticker.shared\n * @type {PIXI.Ticker}\n * @deprecated since 5.0.0\n * @see PIXI.Ticker.shared\n */\n shared: {\n get: function get()\n {\n deprecation(v5, 'PIXI.ticker.shared instance has moved to PIXI.Ticker.shared');\n\n return PIXI.Ticker.shared;\n },\n },\n });\n\n /**\n * All classes on this namespace have moved to the high-level `PIXI` object.\n * @namespace PIXI.loaders\n * @deprecated since 5.0.0\n */\n PIXI.loaders = {};\n\n Object.defineProperties(PIXI.loaders, {\n /**\n * @class PIXI.loaders.Loader\n * @see PIXI.Loader\n * @deprecated since 5.0.0\n */\n Loader: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.Loader class has moved to PIXI.Loader');\n\n return PIXI.Loader;\n },\n },\n /**\n * @class PIXI.loaders.Resource\n * @see PIXI.LoaderResource\n * @deprecated since 5.0.0\n */\n Resource: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.Resource class has moved to PIXI.LoaderResource');\n\n return PIXI.LoaderResource;\n },\n },\n /**\n * @function PIXI.loaders.bitmapFontParser\n * @see PIXI.BitmapFontLoader.use\n * @deprecated since 5.0.0\n */\n bitmapFontParser: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.bitmapFontParser function has moved to PIXI.BitmapFontLoader.use');\n\n return PIXI.BitmapFontLoader.use;\n },\n },\n /**\n * @function PIXI.loaders.parseBitmapFontData\n * @see PIXI.BitmapFontLoader.parse\n * @deprecated since 5.0.0\n */\n parseBitmapFontData: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.parseBitmapFontData function has moved to PIXI.BitmapFontLoader.parse');\n\n return PIXI.BitmapFontLoader.parse;\n },\n },\n /**\n * @function PIXI.loaders.spritesheetParser\n * @see PIXI.SpritesheetLoader.use\n * @deprecated since 5.0.0\n */\n spritesheetParser: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.spritesheetParser function has moved to PIXI.SpritesheetLoader.use');\n\n return PIXI.SpritesheetLoader.use;\n },\n },\n /**\n * @function PIXI.loaders.getResourcePath\n * @see PIXI.SpritesheetLoader.getResourcePath\n * @deprecated since 5.0.0\n */\n getResourcePath: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.getResourcePath property has moved to PIXI.SpritesheetLoader.getResourcePath');\n\n return PIXI.SpritesheetLoader.getResourcePath;\n },\n },\n });\n\n /**\n * @function PIXI.loaders.Loader.addPixiMiddleware\n * @see PIXI.Loader.registerPlugin\n * @deprecated since 5.0.0\n * @param {function} middleware\n */\n PIXI.Loader.addPixiMiddleware = function addPixiMiddleware(middleware)\n {\n deprecation(v5,\n 'PIXI.loaders.Loader.addPixiMiddleware function is deprecated, use PIXI.loaders.Loader.registerPlugin'\n );\n\n return PIXI.loaders.Loader.registerPlugin({ use: middleware() });\n };\n\n /**\n * @class PIXI.extract.WebGLExtract\n * @deprecated since 5.0.0\n * @see PIXI.extract.Extract\n */\n Object.defineProperty(PIXI.extract, 'WebGLExtract', {\n get: function get()\n {\n deprecation(v5, 'PIXI.extract.WebGLExtract method has moved to PIXI.extract.Extract');\n\n return PIXI.extract.Extract;\n },\n });\n\n /**\n * @class PIXI.prepare.WebGLPrepare\n * @deprecated since 5.0.0\n * @see PIXI.prepare.Prepare\n */\n Object.defineProperty(PIXI.prepare, 'WebGLPrepare', {\n get: function get()\n {\n deprecation(v5, 'PIXI.prepare.WebGLPrepare class has moved to PIXI.prepare.Prepare');\n\n return PIXI.prepare.Prepare;\n },\n });\n\n /**\n * @method PIXI.Container#_renderWebGL\n * @private\n * @deprecated since 5.0.0\n * @see PIXI.Container#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype._renderWebGL = function _renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container._renderWebGL method has moved to PIXI.Container._render');\n\n this._render(renderer);\n };\n\n /**\n * @method PIXI.Container#renderWebGL\n * @deprecated since 5.0.0\n * @see PIXI.Container#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype.renderWebGL = function renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container.renderWebGL method has moved to PIXI.Container.render');\n\n this.render(renderer);\n };\n\n /**\n * @method PIXI.DisplayObject#renderWebGL\n * @deprecated since 5.0.0\n * @see PIXI.DisplayObject#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.DisplayObject.prototype.renderWebGL = function renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.DisplayObject.renderWebGL method has moved to PIXI.DisplayObject.render');\n\n this.render(renderer);\n };\n\n /**\n * @method PIXI.Container#renderAdvancedWebGL\n * @deprecated since 5.0.0\n * @see PIXI.Container#renderAdvanced\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype.renderAdvancedWebGL = function renderAdvancedWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container.renderAdvancedWebGL method has moved to PIXI.Container.renderAdvanced');\n\n this.renderAdvanced(renderer);\n };\n\n Object.defineProperties(PIXI.settings, {\n /**\n * Default transform type.\n *\n * @static\n * @deprecated since 5.0.0\n * @memberof PIXI.settings\n * @type {PIXI.TRANSFORM_MODE}\n * @default PIXI.TRANSFORM_MODE.STATIC\n */\n TRANSFORM_MODE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.settings.TRANSFORM_MODE property has been removed');\n\n return 0;\n },\n set: function set()\n {\n deprecation(v5, 'PIXI.settings.TRANSFORM_MODE property has been removed');\n },\n },\n });\n\n var BaseTexture = PIXI.BaseTexture;\n\n /**\n * @method loadSource\n * @memberof PIXI.BaseTexture#\n * @deprecated since 5.0.0\n */\n BaseTexture.prototype.loadSource = function loadSource(image)\n {\n deprecation(v5, 'PIXI.BaseTexture.loadSource method has been deprecated');\n\n var resource = PIXI.resources.autoDetectResource(image);\n\n resource.internal = true;\n\n this.setResource(resource);\n this.update();\n };\n\n Object.defineProperties(BaseTexture.prototype, {\n /**\n * @name PIXI.BaseTexture#hasLoaded\n * @type {boolean}\n * @deprecated since 5.0.0\n * @readonly\n * @see PIXI.BaseTexture#valid\n */\n hasLoaded: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.hasLoaded property has been removed, use PIXI.BaseTexture.valid');\n\n return this.valid;\n },\n },\n /**\n * @name PIXI.BaseTexture#imageUrl\n * @type {string}\n * @deprecated since 5.0.0\n * @see PIXI.resource.ImageResource#url\n */\n imageUrl: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.imageUrl property has been removed, use PIXI.BaseTexture.resource.url');\n\n return this.resource && this.resource.url;\n },\n\n set: function set(imageUrl)\n {\n deprecation(v5, 'PIXI.BaseTexture.imageUrl property has been removed, use PIXI.BaseTexture.resource.url');\n\n if (this.resource)\n {\n this.resource.url = imageUrl;\n }\n },\n },\n /**\n * @name PIXI.BaseTexture#source\n * @type {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement}\n * @deprecated since 5.0.0\n * @readonly\n * @see PIXI.resources.BaseImageResource#source\n */\n source: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.source property has been moved, use `PIXI.BaseTexture.resource.source`');\n\n return this.resource && this.resource.source;\n },\n set: function set(source)\n {\n deprecation(v5, 'PIXI.BaseTexture.source property has been moved, use `PIXI.BaseTexture.resource.source` '\n + 'if you want to set HTMLCanvasElement. Otherwise, create new BaseTexture.');\n\n if (this.resource)\n {\n this.resource.source = source;\n }\n },\n },\n });\n\n /**\n * @method fromImage\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromImage = function fromImage(canvas, crossorigin, scaleMode, scale)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromImage method has been replaced with PIXI.BaseTexture.from');\n\n var resourceOptions = { scale: scale, crossorigin: crossorigin };\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode, resourceOptions: resourceOptions });\n };\n\n /**\n * @method fromCanvas\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromCanvas = function fromCanvas(canvas, scaleMode)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromCanvas method has been replaced with PIXI.BaseTexture.from');\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode });\n };\n\n /**\n * @method fromSVG\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromSVG = function fromSVG(canvas, crossorigin, scaleMode, scale)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromSVG method has been replaced with PIXI.BaseTexture.from');\n\n var resourceOptions = { scale: scale, crossorigin: crossorigin };\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode, resourceOptions: resourceOptions });\n };\n\n /**\n * @method PIXI.Point#copy\n * @deprecated since 5.0.0\n * @see PIXI.Point#copyFrom\n */\n PIXI.Point.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Point.copy method has been replaced with PIXI.Point.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.ObservablePoint#copy\n * @deprecated since 5.0.0\n * @see PIXI.ObservablePoint#copyFrom\n */\n PIXI.ObservablePoint.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.ObservablePoint.copy method has been replaced with PIXI.ObservablePoint.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.Rectangle#copy\n * @deprecated since 5.0.0\n * @see PIXI.Rectangle#copyFrom\n */\n PIXI.Rectangle.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Rectangle.copy method has been replaced with PIXI.Rectangle.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.Matrix#copy\n * @deprecated since 5.0.0\n * @see PIXI.Matrix#copyTo\n */\n PIXI.Matrix.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Matrix.copy method has been replaced with PIXI.Matrix.copyTo');\n\n return this.copyTo(p);\n };\n\n /**\n * @method PIXI.systems.StateSystem#setState\n * @deprecated since 5.1.0\n * @see PIXI.systems.StateSystem#set\n */\n PIXI.systems.StateSystem.prototype.setState = function setState(s)\n {\n deprecation('v5.1.0', 'StateSystem.setState has been renamed to StateSystem.set');\n\n return this.set(s);\n };\n\n Object.assign(PIXI.systems.FilterSystem.prototype, {\n /**\n * @method PIXI.FilterManager#getRenderTarget\n * @deprecated since 5.0.0\n * @see PIXI.systems.FilterSystem#getFilterTexture\n */\n getRenderTarget: function getRenderTarget(clear, resolution)\n {\n deprecation(v5,\n 'PIXI.FilterManager.getRenderTarget method has been replaced with PIXI.systems.FilterSystem#getFilterTexture'\n );\n\n return this.getFilterTexture(resolution);\n },\n\n /**\n * @method PIXI.FilterManager#returnRenderTarget\n * @deprecated since 5.0.0\n * @see PIXI.systems.FilterSystem#returnFilterTexture\n */\n returnRenderTarget: function returnRenderTarget(renderTexture)\n {\n deprecation(v5,\n 'PIXI.FilterManager.returnRenderTarget method has been replaced with '\n + 'PIXI.systems.FilterSystem.returnFilterTexture'\n );\n\n this.returnFilterTexture(renderTexture);\n },\n\n /**\n * @method PIXI.systems.FilterSystem#calculateScreenSpaceMatrix\n * @deprecated since 5.0.0\n * @param {PIXI.Matrix} outputMatrix - the matrix to output to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n calculateScreenSpaceMatrix: function calculateScreenSpaceMatrix(outputMatrix)\n {\n deprecation(v5, 'PIXI.systems.FilterSystem.calculateScreenSpaceMatrix method is removed, '\n + 'use `(vTextureCoord * inputSize.xy) + outputFrame.xy` instead');\n\n var mappedMatrix = outputMatrix.identity();\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n\n mappedMatrix.translate(sourceFrame.x / destinationFrame.width, sourceFrame.y / destinationFrame.height);\n mappedMatrix.scale(destinationFrame.width, destinationFrame.height);\n\n return mappedMatrix;\n },\n\n /**\n * @method PIXI.systems.FilterSystem#calculateNormalizedScreenSpaceMatrix\n * @deprecated since 5.0.0\n * @param {PIXI.Matrix} outputMatrix - The matrix to output to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n calculateNormalizedScreenSpaceMatrix: function calculateNormalizedScreenSpaceMatrix(outputMatrix)\n {\n deprecation(v5, 'PIXI.systems.FilterManager.calculateNormalizedScreenSpaceMatrix method is removed, '\n + 'use `((vTextureCoord * inputSize.xy) + outputFrame.xy) / outputFrame.zw` instead.');\n\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n var mappedMatrix = outputMatrix.identity();\n\n mappedMatrix.translate(sourceFrame.x / destinationFrame.width, sourceFrame.y / destinationFrame.height);\n\n var translateScaleX = (destinationFrame.width / sourceFrame.width);\n var translateScaleY = (destinationFrame.height / sourceFrame.height);\n\n mappedMatrix.scale(translateScaleX, translateScaleY);\n\n return mappedMatrix;\n },\n });\n\n Object.defineProperties(PIXI.RenderTexture.prototype, {\n /**\n * @name PIXI.RenderTexture#sourceFrame\n * @type {PIXI.Rectangle}\n * @deprecated since 5.0.0\n * @readonly\n */\n sourceFrame: {\n get: function get()\n {\n deprecation(v5, 'PIXI.RenderTexture.sourceFrame property has been removed');\n\n return this.filterFrame;\n },\n },\n /**\n * @name PIXI.RenderTexture#size\n * @type {PIXI.Rectangle}\n * @deprecated since 5.0.0\n * @readonly\n */\n size: {\n get: function get()\n {\n deprecation(v5, 'PIXI.RenderTexture.size property has been removed');\n\n return this._frame;\n },\n },\n });\n\n /**\n * @class BlurXFilter\n * @memberof PIXI.filters\n * @deprecated since 5.0.0\n * @see PIXI.filters.BlurFilterPass\n */\n var BlurXFilter = /*@__PURE__*/(function (superclass) {\n function BlurXFilter(strength, quality, resolution, kernelSize)\n {\n deprecation(v5, 'PIXI.filters.BlurXFilter class is deprecated, use PIXI.filters.BlurFilterPass');\n\n superclass.call(this, true, strength, quality, resolution, kernelSize);\n }\n\n if ( superclass ) BlurXFilter.__proto__ = superclass;\n BlurXFilter.prototype = Object.create( superclass && superclass.prototype );\n BlurXFilter.prototype.constructor = BlurXFilter;\n\n return BlurXFilter;\n }(PIXI.filters.BlurFilterPass));\n\n /**\n * @class BlurYFilter\n * @memberof PIXI.filters\n * @deprecated since 5.0.0\n * @see PIXI.filters.BlurFilterPass\n */\n var BlurYFilter = /*@__PURE__*/(function (superclass) {\n function BlurYFilter(strength, quality, resolution, kernelSize)\n {\n deprecation(v5, 'PIXI.filters.BlurYFilter class is deprecated, use PIXI.filters.BlurFilterPass');\n\n superclass.call(this, false, strength, quality, resolution, kernelSize);\n }\n\n if ( superclass ) BlurYFilter.__proto__ = superclass;\n BlurYFilter.prototype = Object.create( superclass && superclass.prototype );\n BlurYFilter.prototype.constructor = BlurYFilter;\n\n return BlurYFilter;\n }(PIXI.filters.BlurFilterPass));\n\n Object.assign(PIXI.filters, {\n BlurXFilter: BlurXFilter,\n BlurYFilter: BlurYFilter,\n });\n\n var Sprite = PIXI.Sprite;\n var Texture = PIXI.Texture;\n var Graphics = PIXI.Graphics;\n\n // Support for pixi.js-legacy bifurcation\n // give users a friendly assist to use legacy\n if (!Graphics.prototype.generateCanvasTexture)\n {\n Graphics.prototype.generateCanvasTexture = function generateCanvasTexture()\n {\n deprecation(v5, 'PIXI.Graphics.generateCanvasTexture method is only available in \"pixi.js-legacy\"');\n };\n }\n\n /**\n * @deprecated since 5.0.0\n * @member {PIXI.Graphics} PIXI.Graphics#graphicsData\n * @see PIXI.Graphics#geometry\n * @readonly\n */\n Object.defineProperty(PIXI.Graphics.prototype, 'graphicsData', {\n get: function get()\n {\n deprecation(v5, 'PIXI.Graphics.graphicsData property is deprecated, use PIXI.Graphics.geometry.graphicsData');\n\n return this.geometry.graphicsData;\n },\n });\n\n // Use these to deprecate all the Sprite from* methods\n function spriteFrom(name, source, crossorigin, scaleMode)\n {\n deprecation(v5, (\"PIXI.Sprite.\" + name + \" method is deprecated, use PIXI.Sprite.from\"));\n\n return Sprite.from(source, {\n resourceOptions: {\n scale: scaleMode,\n crossorigin: crossorigin,\n },\n });\n }\n\n /**\n * @deprecated since 5.0.0\n * @see PIXI.Sprite.from\n * @method PIXI.Sprite.fromImage\n * @return {PIXI.Sprite}\n */\n Sprite.fromImage = spriteFrom.bind(null, 'fromImage');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromSVG\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromSVG = spriteFrom.bind(null, 'fromSVG');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromCanvas\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromCanvas = spriteFrom.bind(null, 'fromCanvas');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromVideo\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromVideo = spriteFrom.bind(null, 'fromVideo');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromFrame\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromFrame = spriteFrom.bind(null, 'fromFrame');\n\n // Use these to deprecate all the Texture from* methods\n function textureFrom(name, source, crossorigin, scaleMode)\n {\n deprecation(v5, (\"PIXI.Texture.\" + name + \" method is deprecated, use PIXI.Texture.from\"));\n\n return Texture.from(source, {\n resourceOptions: {\n scale: scaleMode,\n crossorigin: crossorigin,\n },\n });\n }\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromImage\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromImage = textureFrom.bind(null, 'fromImage');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromSVG\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromSVG = textureFrom.bind(null, 'fromSVG');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromCanvas\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromCanvas = textureFrom.bind(null, 'fromCanvas');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromVideo\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromVideo = textureFrom.bind(null, 'fromVideo');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromFrame\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromFrame = textureFrom.bind(null, 'fromFrame');\n\n /**\n * @deprecated since 5.0.0\n * @member {boolean} PIXI.AbstractRenderer#autoResize\n * @see PIXI.AbstractRenderer#autoDensity\n */\n Object.defineProperty(PIXI.AbstractRenderer.prototype, 'autoResize', {\n get: function get()\n {\n deprecation(v5, 'PIXI.AbstractRenderer.autoResize property is deprecated, '\n + 'use PIXI.AbstractRenderer.autoDensity');\n\n return this.autoDensity;\n },\n set: function set(value)\n {\n deprecation(v5, 'PIXI.AbstractRenderer.autoResize property is deprecated, '\n + 'use PIXI.AbstractRenderer.autoDensity');\n\n this.autoDensity = value;\n },\n });\n\n /**\n * @deprecated since 5.0.0\n * @member {PIXI.systems.TextureSystem} PIXI.Renderer#textureManager\n * @see PIXI.Renderer#texture\n */\n Object.defineProperty(PIXI.Renderer.prototype, 'textureManager', {\n get: function get()\n {\n deprecation(v5, 'PIXI.Renderer.textureManager property is deprecated, use PIXI.Renderer.texture');\n\n return this.texture;\n },\n });\n\n /**\n * @namespace PIXI.utils.mixins\n * @deprecated since 5.0.0\n */\n PIXI.utils.mixins = {\n /**\n * @memberof PIXI.utils.mixins\n * @function mixin\n * @deprecated since 5.0.0\n */\n mixin: function mixin()\n {\n deprecation(v5, 'PIXI.utils.mixins.mixin function is no longer available');\n },\n /**\n * @memberof PIXI.utils.mixins\n * @function delayMixin\n * @deprecated since 5.0.0\n */\n delayMixin: function delayMixin()\n {\n deprecation(v5, 'PIXI.utils.mixins.delayMixin function is no longer available');\n },\n /**\n * @memberof PIXI.utils.mixins\n * @function performMixins\n * @deprecated since 5.0.0\n */\n performMixins: function performMixins()\n {\n deprecation(v5, 'PIXI.utils.mixins.performMixins function is no longer available');\n },\n };\n}\n\n// Install renderer plugins\nRenderer.registerPlugin('accessibility', AccessibilityManager);\nRenderer.registerPlugin('extract', Extract);\nRenderer.registerPlugin('interaction', InteractionManager);\nRenderer.registerPlugin('particle', ParticleRenderer);\nRenderer.registerPlugin('prepare', Prepare);\nRenderer.registerPlugin('batch', BatchRenderer);\nRenderer.registerPlugin('tilingSprite', TilingSpriteRenderer);\n\nLoader.registerPlugin(BitmapFontLoader);\nLoader.registerPlugin(SpritesheetLoader);\n\nApplication.registerPlugin(TickerPlugin);\nApplication.registerPlugin(AppLoaderPlugin);\n\n/**\n * String of the current PIXI version.\n *\n * @static\n * @constant\n * @memberof PIXI\n * @name VERSION\n * @type {string}\n */\nvar VERSION = '5.1.4';\n\n/**\n * @namespace PIXI\n */\n\n/**\n * This namespace contains WebGL-only display filters that can be applied\n * to DisplayObjects using the {@link PIXI.DisplayObject#filters filters} property.\n *\n * Since PixiJS only had a handful of built-in filters, additional filters\n * can be downloaded {@link https://github.com/pixijs/pixi-filters here} from the\n * PixiJS Filters repository.\n *\n * All filters must extend {@link PIXI.Filter}.\n *\n * @example\n * // Create a new application\n * const app = new PIXI.Application();\n *\n * // Draw a green rectangle\n * const rect = new PIXI.Graphics()\n * .beginFill(0x00ff00)\n * .drawRect(40, 40, 200, 200);\n *\n * // Add a blur filter\n * rect.filters = [new PIXI.filters.BlurFilter()];\n *\n * // Display rectangle\n * app.stage.addChild(rect);\n * document.body.appendChild(app.view);\n * @namespace PIXI.filters\n */\nvar filters = {\n AlphaFilter: AlphaFilter,\n BlurFilter: BlurFilter,\n BlurFilterPass: BlurFilterPass,\n ColorMatrixFilter: ColorMatrixFilter,\n DisplacementFilter: DisplacementFilter,\n FXAAFilter: FXAAFilter,\n NoiseFilter: NoiseFilter,\n};\n\nexport { VERSION, filters, useDeprecated };\n//# sourceMappingURL=pixi.es.js.map\n","import { ImVec4 } from \"imgui-js\";\n\nexport function fromConstructor(constr: any):((params: any[]) => any)\n{\n return constr as unknown as ((params: any[]) => any)\n}\n\nexport function vec2col(v: ImVec4): number\n{\n return (((v.x * 255) & 0xFF) << 16) +\n (((v.y * 255) & 0xFF) << 8) +\n (((v.z * 255) & 0xFF) << 0);\n}\n","import * as ImGui from \"imgui-js\";\nimport { ImVec2 } from \"imgui-js\";\nimport * as PIXI from \"pixi.js\";\nimport * as U from \"./utils\";\n\nlet clipboard_text: string = \"\";\n\nconst contexts: ImGui.ImGuiContext[] = [];\nconst contextIOs: ImGui.ImGuiIO[] = [];\nlet isFirstWindow: boolean = true;\n\nclass ImGuiImplInternalRenderer extends PIXI.ObjectRenderer\n{\n constructor(r: PIXI.Renderer)\n {\n super(r);\n }\n render(owner: PIXI.DisplayObject): void\n {\n if (!(owner instanceof ImGuiWindowLayer)) return;\n\n const window: ImGuiWindow = (owner as ImGuiWindowLayer).window;\n\n const io: ImGui.ImGuiIO = window.io;\n const draw_data: ImGui.ImDrawData = ImGui.GetDrawData();\n if (draw_data === null) { throw new Error(); }\n\n gl || console.log(draw_data);\n\n // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates)\n const fb_width: number = io.DisplaySize.x * io.DisplayFramebufferScale.x;\n const fb_height: number = io.DisplaySize.y * io.DisplayFramebufferScale.y;\n if (fb_width === 0 || fb_height === 0) {\n return;\n }\n draw_data.ScaleClipRects(io.DisplayFramebufferScale);\n\n // Backup GL state\n const last_program: WebGLProgram | null = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null;\n const last_active_texture: GLenum | null = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null;\n gl && gl.activeTexture(gl.TEXTURE0);\n const last_texture0: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null;\n const last_vertex_array: WebGLVertexArrayObject | null = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null;\n const last_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null;\n const last_element_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null;\n // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode);\n const last_viewport: Int32Array | null = gl && gl.getParameter(gl.VIEWPORT) || null;\n const last_scissor_box: Int32Array | null = gl && gl.getParameter(gl.SCISSOR_BOX) || null;\n const last_blend_src_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null;\n const last_blend_dst_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_RGB) || null;\n const last_blend_src_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null;\n const last_blend_dst_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null;\n const last_blend_equation_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null;\n const last_blend_equation_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null;\n const last_enable_blend: GLboolean | null = gl && gl.getParameter(gl.BLEND) || null;\n const last_enable_cull_face: GLboolean | null = gl && gl.getParameter(gl.CULL_FACE) || null;\n const last_enable_depth_test: GLboolean | null = gl && gl.getParameter(gl.DEPTH_TEST) || null;\n const last_enable_scissor_test: GLboolean | null = gl && gl.getParameter(gl.SCISSOR_TEST) || null;\n\n gl.clearColor(0, 0, 0, 0);\n gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);\n \n gl && gl.bindVertexArray(g_VaoHandle);\n\n // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill\n gl && gl.enable(gl.BLEND);\n gl && gl.blendEquation(gl.FUNC_ADD);\n gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE);\n gl && gl.disable(gl.CULL_FACE);\n gl && gl.disable(gl.DEPTH_TEST);\n gl && gl.enable(gl.SCISSOR_TEST);\n // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);\n\n // Setup viewport, orthographic projection matrix\n // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps.\n gl && gl.viewport(0, 0, fb_width, fb_height);\n const L: number = draw_data.DisplayPos.x;\n const R: number = draw_data.DisplayPos.x + draw_data.DisplaySize.x;\n const T: number = draw_data.DisplayPos.y;\n const B: number = draw_data.DisplayPos.y + draw_data.DisplaySize.y;\n // we actually flip the bottom and top here to match with PIXI's texture usage\n const ortho_projection: Float32Array = new Float32Array([\n 2.0 / (R - L), 0.0, 0.0, 0.0,\n 0.0, 2.0 / (B - T), 0.0, 0.0,\n 0.0, 0.0, -1.0, 0.0,\n (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0,\n ]);\n gl && gl.useProgram(g_ShaderHandle);\n gl && gl.uniform1i(g_AttribLocationTex, 0);\n gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection);\n\n // Render command lists\n gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle);\n gl && gl.enableVertexAttribArray(g_AttribLocationPosition);\n gl && gl.enableVertexAttribArray(g_AttribLocationUV);\n gl && gl.enableVertexAttribArray(g_AttribLocationColor);\n\n gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertPosOffset);\n gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertUVOffset);\n gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImGui.ImDrawVertSize, ImGui.ImDrawVertColOffset);\n\n // Draw\n const pos = draw_data.DisplayPos;\n const idx_buffer_type: GLenum = gl && ((ImGui.ImDrawIdxSize === 4) ? gl.UNSIGNED_INT : gl.UNSIGNED_SHORT) || 0;\n draw_data.IterateDrawLists((draw_list: ImGui.ImDrawList): void => {\n gl || console.log(draw_list);\n gl || console.log(\"VtxBuffer.length\", draw_list.VtxBuffer.length);\n gl || console.log(\"IdxBuffer.length\", draw_list.IdxBuffer.length);\n \n let idx_buffer_offset: number = 0;\n\n gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle);\n gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW);\n gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle);\n gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW);\n\n draw_list.IterateDrawCmds((draw_cmd: ImGui.ImDrawCmd): void => {\n gl || console.log(draw_cmd);\n gl || console.log(\"ElemCount\", draw_cmd.ElemCount);\n gl || console.log(\"ClipRect\", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y);\n gl || console.log(\"TextureId\", draw_cmd.TextureId);\n if (!gl) {\n console.log(\"i: pos.x pos.y uv.x uv.y col\");\n for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) {\n const view: ImGui.ImDrawVert = new ImGui.ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImGui.ImDrawVertSize);\n console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${(\"00000000\" + view.col[0].toString(16)).substr(-8)}`);\n }\n }\n\n if (draw_cmd.UserCallback !== null) {\n // User callback (registered via ImDrawList::AddCallback)\n draw_cmd.UserCallback(draw_list, draw_cmd);\n } else {\n const clip_rect = new ImGui.ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y);\n if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) {\n // Apply scissor/clipping rectangle\n gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y);\n\n // Bind texture, Draw\n gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId);\n gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset);\n }\n }\n\n idx_buffer_offset += draw_cmd.ElemCount * ImGui.ImDrawIdxSize;\n });\n });\n\n // Restore modified GL state\n \n gl && (last_program !== null) && gl.useProgram(last_program);\n gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0);\n gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture);\n gl && gl.disableVertexAttribArray(g_AttribLocationPosition);\n gl && gl.disableVertexAttribArray(g_AttribLocationUV);\n gl && gl.disableVertexAttribArray(g_AttribLocationColor);\n gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array);\n gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer);\n gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer);\n gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]);\n gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]);\n gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha);\n gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha);\n gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND));\n gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE));\n gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST));\n gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST));\n // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]);\n }\n}\n\nlet gl: WebGL2RenderingContext = null;\nlet app: PIXI.Application = null;\n\nclass ImGuiWindowLayer extends PIXI.Sprite\n{\n public readonly window: ImGuiWindow;\n constructor(window: ImGuiWindow, tex:PIXI.RenderTexture)\n {\n super();\n this.pluginName = \"imgui_renderer\";\n this.window = window;\n }\n}\n\nexport class ImGuiWindow extends PIXI.Container\n{\n public readonly ctx: ImGui.ImGuiContext;\n public readonly io: ImGui.ImGuiIO;\n private sizeX: number;\n private sizeY: number;\n public getSizeX(): number { return this.sizeX; }\n public getSizeY(): number { return this.sizeY; }\n\n private baseTex: PIXI.BaseRenderTexture = new PIXI.BaseRenderTexture({scaleMode: PIXI.SCALE_MODES.LINEAR, resolution: 1, type: PIXI.TYPES.FLOAT, format: PIXI.FORMATS.RGBA});\n private tex: PIXI.RenderTexture = new PIXI.RenderTexture(this.baseTex);\n \n private surface: PIXI.Sprite = new PIXI.Sprite(this.tex);\n private imgui: ImGuiWindowLayer = new ImGuiWindowLayer(this, this.tex);\n \n private update: (dt: number) => void;\n constructor(sizeX: number, sizeY: number, update: (dt: number) => void)\n {\n super();\n\n this.ctx = ImGui.CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts);\n ImGui.SetCurrentContext(this.ctx);\n this.io = ImGui.GetIO();\n\n contexts.push(this.ctx);\n contextIOs.push(this.io);\n\n if (contexts.length == 1)\n {\n CreateFontsTexture();\n }\n\n if (typeof(window) !== \"undefined\") {\n ImGui.LoadIniSettingsFromMemory(window.localStorage.getItem(\"imgui.ini\") || \"\");\n }\n\n if (typeof(navigator) !== \"undefined\") {\n this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null;\n }\n\n this.io.SetClipboardTextFn = (user_data: any, text: string): void => {\n clipboard_text = text;\n // console.log(`set clipboard_text: \"${clipboard_text}\"`);\n if (typeof navigator !== \"undefined\" && typeof (navigator as any).clipboard !== \"undefined\") {\n // console.log(`clipboard.writeText: \"${clipboard_text}\"`);\n (navigator as any).clipboard.writeText(clipboard_text).then((): void => {\n // console.log(`clipboard.writeText: \"${clipboard_text}\" done.`);\n });\n }\n };\n this.io.GetClipboardTextFn = (user_data: any): string => {\n // if (typeof navigator !== \"undefined\" && typeof (navigator as any).clipboard !== \"undefined\") {\n // console.log(`clipboard.readText: \"${clipboard_text}\"`);\n // (navigator as any).clipboard.readText().then((text: string): void => {\n // clipboard_text = text;\n // console.log(`clipboard.readText: \"${clipboard_text}\" done.`);\n // });\n // }\n // console.log(`get clipboard_text: \"${clipboard_text}\"`);\n return clipboard_text;\n };\n this.io.ClipboardUserData = null;\n\n // Setup back-end capabilities flags\n this.io.BackendFlags |= ImGui.BackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional)\n\n // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array.\n this.io.KeyMap[ImGui.Key.Tab] = 9;\n this.io.KeyMap[ImGui.Key.LeftArrow] = 37;\n this.io.KeyMap[ImGui.Key.RightArrow] = 39;\n this.io.KeyMap[ImGui.Key.UpArrow] = 38;\n this.io.KeyMap[ImGui.Key.DownArrow] = 40;\n this.io.KeyMap[ImGui.Key.PageUp] = 33;\n this.io.KeyMap[ImGui.Key.PageDown] = 34;\n this.io.KeyMap[ImGui.Key.Home] = 36;\n this.io.KeyMap[ImGui.Key.End] = 35;\n this.io.KeyMap[ImGui.Key.Insert] = 45;\n this.io.KeyMap[ImGui.Key.Delete] = 46;\n this.io.KeyMap[ImGui.Key.Backspace] = 8;\n this.io.KeyMap[ImGui.Key.Space] = 32;\n this.io.KeyMap[ImGui.Key.Enter] = 13;\n this.io.KeyMap[ImGui.Key.Escape] = 27;\n this.io.KeyMap[ImGui.Key.A] = 65;\n this.io.KeyMap[ImGui.Key.C] = 67;\n this.io.KeyMap[ImGui.Key.V] = 86;\n this.io.KeyMap[ImGui.Key.X] = 88;\n this.io.KeyMap[ImGui.Key.Y] = 89;\n this.io.KeyMap[ImGui.Key.Z] = 90;\n\n this.update = update;\n this.resize(sizeX, sizeY);\n this.imgui.pluginName = 'imgui_renderer';\n this.addChild(this.surface);\n app.renderer.plugins.interaction.addListener(\"mousedown\", this.mouseDown.bind(this));\n app.renderer.plugins.interaction.addListener(\"mouseup\", this.mouseUp.bind(this));\n app.ticker.add(this.updateInternal.bind(this));\n\n this.interactive = false;\n this.interactiveChildren = true;\n\n this.surface.interactive = false;\n }\n withContext(cb: () => void)\n {\n ImGui.SetCurrentContext(this.ctx);\n cb();\n }\n mouseDown(e: PIXI.interaction.InteractionEvent): void\n {\n if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface)\n {\n this.io.MouseDown[mouse_button_map[0]] = true;\n }\n }\n mouseUp(e: PIXI.interaction.InteractionEvent): void\n {\n if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface)\n {\n this.io.MouseDown[mouse_button_map[0]] = false;\n }\n }\n resize(sizeX: number, sizeY: number)\n {\n this.sizeX = sizeX;\n this.sizeY = sizeY;\n this.baseTex.resize(sizeX, sizeY);\n this.tex.frame = new PIXI.Rectangle(0, 0, this.baseTex.width, this.baseTex.height);\n }\n updateInternal(deltaTime: number)\n {\n const dt: number = deltaTime * 1 / (1000 * PIXI.settings.TARGET_FPMS);\n\n ImGui.SetCurrentContext(this.ctx);\n\n if (this.io.WantSaveIniSettings) {\n this.io.WantSaveIniSettings = false;\n if (typeof(window) !== \"undefined\") {\n window.localStorage.setItem(\"imgui.ini\", ImGui.SaveIniSettingsToMemory());\n }\n }\n\n this.io.DisplaySize.x = this.sizeX;\n this.io.DisplaySize.y = this.sizeY;\n this.io.DisplayFramebufferScale.x = 1;\n this.io.DisplayFramebufferScale.y = 1;\n\n this.io.DeltaTime = dt;\n\n let localPos: PIXI.Point = this.toLocal(app.renderer.plugins.interaction.mouse.global);\n if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY)\n {\n localPos = new PIXI.Point(-Number.MAX_VALUE, -Number.MAX_VALUE);\n }\n this.io.MousePos.x = localPos.x;\n this.io.MousePos.y = localPos.y;\n\n if (this.io.WantSetMousePos) {\n console.log(\"TODO: MousePos\", this.io.MousePos.x, this.io.MousePos.y);\n }\n\n if (typeof(document) !== \"undefined\") {\n if (this.io.MouseDrawCursor) {\n document.body.style.cursor = \"none\";\n } else {\n switch (ImGui.GetMouseCursor()) {\n case ImGui.MouseCursor.None: document.body.style.cursor = \"none\"; break;\n default: case ImGui.MouseCursor.Arrow: document.body.style.cursor = \"default\"; break;\n case ImGui.MouseCursor.TextInput: document.body.style.cursor = \"text\"; break; // When hovering over InputText, etc.\n case ImGui.MouseCursor.ResizeAll: document.body.style.cursor = \"move\"; break; // Unused\n case ImGui.MouseCursor.ResizeNS: document.body.style.cursor = \"ns-resize\"; break; // When hovering over an horizontal border\n case ImGui.MouseCursor.ResizeEW: document.body.style.cursor = \"ew-resize\"; break; // When hovering over a vertical border or a column\n case ImGui.MouseCursor.ResizeNESW: document.body.style.cursor = \"nesw-resize\"; break; // When hovering over the bottom-left corner of a window\n case ImGui.MouseCursor.ResizeNWSE: document.body.style.cursor = \"nwse-resize\"; break; // When hovering over the bottom-right corner of a window\n case ImGui.MouseCursor.Hand: document.body.style.cursor = \"move\"; break;\n }\n }\n }\n\n // Gamepad navigation mapping [BETA]\n for (let i = 0; i < this.io.NavInputs.length; ++i) {\n this.io.NavInputs[i] = 0.0;\n }\n if (this.io.ConfigFlags & ImGui.ConfigFlags.NavEnableGamepad) {\n // Update gamepad inputs\n const gamepads: (Gamepad | null)[] = (typeof(navigator) !== \"undefined\" && typeof(navigator.getGamepads) === \"function\") ? navigator.getGamepads() : [];\n for (let i = 0; i < gamepads.length; ++i) {\n const gamepad: Gamepad | null = gamepads[i];\n if (!gamepad) { continue; }\n const buttons_count: number = gamepad.buttons.length;\n const axes_count: number = gamepad.axes.length;\n const MAP_BUTTON = function(NAV_NO: number, BUTTON_NO: number): void {\n if (!gamepad) { return; }\n if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed)\n this.io.NavInputs[NAV_NO] = 1.0;\n }\n const MAP_ANALOG = function(NAV_NO: number, AXIS_NO: number, V0: number, V1: number): void {\n if (!gamepad) { return; }\n let v: number = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0;\n v = (v - V0) / (V1 - V0);\n if (v > 1.0) v = 1.0;\n if (this.io.NavInputs[NAV_NO] < v) this.io.NavInputs[NAV_NO] = v;\n }\n // TODO: map input based on vendor and product id\n // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id\n const match: RegExpMatchArray | null = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/);\n const match_chrome: RegExpMatchArray | null = gamepad.id.match(/^.*\\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\\).*$/);\n const vendor: string = (match && match[1]) || (match_chrome && match_chrome[1]) || \"0000\";\n const product: string = (match && match[2]) || (match_chrome && match_chrome[2]) || \"0000\";\n switch (vendor + product) {\n case \"046dc216\": // Logitech Logitech Dual Action (Vendor: 046d Product: c216)\n MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 2); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 0); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_ANALOG(ImGui.NavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left\n MAP_ANALOG(ImGui.NavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right\n MAP_ANALOG(ImGui.NavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up\n MAP_ANALOG(ImGui.NavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n case \"046dc21d\": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d)\n MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left\n MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right\n MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up\n MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_ANALOG(ImGui.NavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT\n MAP_ANALOG(ImGui.NavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n case \"2dc86001\": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001)\n case \"2dc86101\": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101)\n MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 0); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 4); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_ANALOG(ImGui.NavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left\n MAP_ANALOG(ImGui.NavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right\n MAP_ANALOG(ImGui.NavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up\n MAP_ANALOG(ImGui.NavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 6); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 7); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 8); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 9); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n default: // standard gamepad: https://w3c.github.io/gamepad/#remapping\n MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left\n MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right\n MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up\n MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n }\n }\n }\n\n ImGui.NewFrame();\n\n this.update(dt);\n\n ImGui.EndFrame();\n ImGui.Render();\n\n app.renderer.render(this.imgui, this.tex);\n\n this.surface.interactive = this.io.WantCaptureMouse;\n }\n}\n\nlet canvas: HTMLCanvasElement | null = null;\n\n//export let gl: WebGL2RenderingContext | null = null;\nlet g_ShaderHandle: WebGLProgram | null = null;\nlet g_VertHandle: WebGLShader | null = null;\nlet g_FragHandle: WebGLShader | null = null;\nlet g_AttribLocationTex: WebGLUniformLocation | null = null;\nlet g_AttribLocationProjMtx: WebGLUniformLocation | null = null;\nlet g_AttribLocationPosition: GLint = -1;\nlet g_AttribLocationUV: GLint = -1;\nlet g_AttribLocationColor: GLint = -1;\nlet g_VaoHandle: WebGLVertexArrayObject = null;\nlet g_VboHandle: WebGLBuffer | null = null;\nlet g_ElementsHandle: WebGLBuffer | null = null;\nlet g_FontTexture: WebGLTexture | null = null;\n\nfunction document_on_copy(event: ClipboardEvent): void {\n if (event.clipboardData) {\n event.clipboardData.setData(\"text/plain\", clipboard_text);\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction document_on_cut(event: ClipboardEvent): void {\n if (event.clipboardData) {\n event.clipboardData.setData(\"text/plain\", clipboard_text);\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction document_on_paste(event: ClipboardEvent): void {\n if (event.clipboardData) {\n clipboard_text = event.clipboardData.getData(\"text/plain\");\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction window_on_gamepadconnected(event: any /* GamepadEvent */): void {\n console.log(\"Gamepad connected at index %d: %s. %d buttons, %d axes.\",\n event.gamepad.index, event.gamepad.id,\n event.gamepad.buttons.length, event.gamepad.axes.length);\n}\n\nfunction window_on_gamepaddisconnected(event: any /* GamepadEvent */): void {\n console.log(\"Gamepad disconnected at index %d: %s.\",\n event.gamepad.index, event.gamepad.id);\n}\n\nfunction canvas_on_blur(event: FocusEvent): void {\n for (var io of contextIOs)\n {\n io.KeyCtrl = false;\n io.KeyShift = false;\n io.KeyAlt = false;\n io.KeySuper = false;\n for (let i = 0; i < io.KeysDown.length; ++i) {\n io.KeysDown[i] = false;\n }\n for (let i = 0; i < io.MouseDown.length; ++i) {\n io.MouseDown[i] = false;\n }\n }\n}\n\nfunction canvas_on_keydown(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.KeyCtrl = event.ctrlKey;\n io.KeyShift = event.shiftKey;\n io.KeyAlt = event.altKey;\n io.KeySuper = event.metaKey;\n ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown));\n io.KeysDown[event.keyCode] = true;\n // forward to the keypress event\n if (/*io.WantCaptureKeyboard ||*/ event.key === \"Tab\") {\n event.preventDefault();\n }\n }\n}\n\nfunction canvas_on_keyup(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.KeyCtrl = event.ctrlKey;\n io.KeyShift = event.shiftKey;\n io.KeyAlt = event.altKey;\n io.KeySuper = event.metaKey;\n ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown));\n io.KeysDown[event.keyCode] = false;\n if (io.WantCaptureKeyboard) {\n event.preventDefault();\n }\n }\n}\n\nfunction canvas_on_keypress(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.AddInputCharacter(event.charCode);\n if (io.WantCaptureKeyboard) {\n event.preventDefault();\n }\n }\n}\n\n// MouseEvent.button\n// A number representing a given button:\n// 0: Main button pressed, usually the left button or the un-initialized state\n// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present)\n// 2: Secondary button pressed, usually the right button\n// 3: Fourth button, typically the Browser Back button\n// 4: Fifth button, typically the Browser Forward button\nconst mouse_button_map: number[] = [ 0, 2, 1, 3, 4 ];\n\nfunction canvas_on_contextmenu(event: Event): void {\n for (var io of contextIOs)\n {\n if (io.WantCaptureMouse) { event.preventDefault(); }\n }\n}\n\nfunction canvas_on_wheel(event: WheelEvent): void {\n for (var io of contextIOs)\n {\n let scale: number = 1.0;\n switch (event.deltaMode) {\n case event.DOM_DELTA_PIXEL: scale = 0.01; break;\n case event.DOM_DELTA_LINE: scale = 0.2; break;\n case event.DOM_DELTA_PAGE: scale = 1.0; break;\n }\n io.MouseWheelH = event.deltaX * scale;\n io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text.\n if (io.WantCaptureMouse) {\n event.preventDefault();\n }\n }\n}\n\nexport function PrePIXIInit(): void\n{\n PIXI.Renderer.registerPlugin(\"imgui_renderer\", U.fromConstructor(ImGuiImplInternalRenderer));\n}\n\nexport function Init(_app: PIXI.Application): void {\n // Setup Dear ImGui binding\n ImGui.IMGUI_CHECKVERSION();\n\n if (typeof(document) !== \"undefined\") {\n document.body.addEventListener(\"copy\", document_on_copy);\n document.body.addEventListener(\"cut\", document_on_cut);\n document.body.addEventListener(\"paste\", document_on_paste);\n }\n\n if (typeof(window) !== \"undefined\") {\n window.addEventListener(\"gamepadconnected\", window_on_gamepadconnected);\n window.addEventListener(\"gamepaddisconnected\", window_on_gamepaddisconnected);\n }\n\n app = _app;\n gl = (app.renderer as any).gl;\n canvas = app.view;\n\n gl.getExtension(\"EXT_color_buffer_float\");\n\n if (canvas !== null) {\n canvas.style.touchAction = \"none\"; // Disable browser handling of all panning and zooming gestures.\n canvas.addEventListener(\"blur\", canvas_on_blur);\n canvas.addEventListener(\"keydown\", canvas_on_keydown);\n canvas.addEventListener(\"keyup\", canvas_on_keyup);\n canvas.addEventListener(\"keypress\", canvas_on_keypress);\n canvas.addEventListener(\"contextmenu\", canvas_on_contextmenu);\n canvas.addEventListener(\"wheel\", canvas_on_wheel);\n }\n\n CreateDeviceObjects();\n}\n\nexport function Shutdown(): void {\n DestroyDeviceObjects();\n\n if (canvas !== null) {\n canvas.removeEventListener(\"blur\", canvas_on_blur);\n canvas.removeEventListener(\"keydown\", canvas_on_keydown);\n canvas.removeEventListener(\"keyup\", canvas_on_keyup);\n canvas.removeEventListener(\"keypress\", canvas_on_keypress);\n canvas.removeEventListener(\"contextmenu\", canvas_on_contextmenu);\n canvas.removeEventListener(\"wheel\", canvas_on_wheel);\n }\n\n app = null;\n canvas = null;\n\n if (typeof(window) !== \"undefined\") {\n window.removeEventListener(\"gamepadconnected\", window_on_gamepadconnected);\n window.removeEventListener(\"gamepaddisconnected\", window_on_gamepaddisconnected);\n }\n\n if (typeof(document) !== \"undefined\") {\n document.body.removeEventListener(\"copy\", document_on_copy);\n document.body.removeEventListener(\"cut\", document_on_cut);\n document.body.removeEventListener(\"paste\", document_on_paste);\n }\n}\n\nfunction CreateFontsTexture(): void {\n const io = ImGui.GetIO();\n\n // Backup GL state\n const last_texture: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D);\n\n // Build texture atlas\n // const width: number = 256;\n // const height: number = 256;\n // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff);\n const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory.\n // console.log(`font texture ${width} x ${height} @ ${pixels.length}`);\n\n // Upload texture to graphics system\n g_FontTexture = gl && gl.createTexture();\n gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture);\n gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);\n gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR);\n // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2\n gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels);\n\n // Store our identifier\n io.Fonts.TexID = g_FontTexture || { foo: \"bar\" };\n // console.log(\"font texture id\", g_FontTexture);\n\n // Restore modified GL state\n gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture);\n}\n\nfunction DestroyFontsTexture(): void {\n const io = ImGui.GetIO();\n io.Fonts.TexID = null;\n gl && gl.deleteTexture(g_FontTexture); g_FontTexture = null;\n}\n\nfunction CreateDeviceObjects(): void {\n const vertex_shader: string[] = [\n \"#version 300 es\",\n \"uniform mat4 ProjMtx;\",\n \"in vec2 Position;\",\n \"in vec2 UV;\",\n \"in vec4 Color;\",\n \"out vec2 Frag_UV;\",\n \"out vec4 Frag_Color;\",\n \"void main() {\",\n \"\tFrag_UV = UV;\",\n \"\tFrag_Color = Color;\",\n \"\tgl_Position = ProjMtx * vec4(Position.xy,0,1);\",\n \"}\",\n ];\n\n const fragment_shader: string[] = [\n \"#version 300 es\",\n \"precision mediump float;\", // WebGL requires precision specifiers\n \"uniform sampler2D Texture;\",\n \"in vec2 Frag_UV;\",\n \"in vec4 Frag_Color;\",\n \"out vec4 OutColor;\",\n \"void main() {\",\n \"\tOutColor = Frag_Color * texture(Texture, Frag_UV);\",\n \"}\",\n ];\n\n g_ShaderHandle = gl && gl.createProgram();\n g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER);\n g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER);\n gl && gl.shaderSource(g_VertHandle as WebGLShader, vertex_shader.join(\"\\n\"));\n gl && gl.shaderSource(g_FragHandle as WebGLShader, fragment_shader.join(\"\\n\"));\n gl && gl.compileShader(g_VertHandle as WebGLShader);\n gl && gl.compileShader(g_FragHandle as WebGLShader);\n gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_VertHandle as WebGLShader);\n gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_FragHandle as WebGLShader);\n gl && gl.linkProgram(g_ShaderHandle as WebGLProgram);\n\n g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, \"Texture\");\n g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, \"ProjMtx\");\n g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"Position\") || 0;\n g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"UV\") || 0;\n g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"Color\") || 0;\n\n g_VaoHandle = gl && gl.createVertexArray();\n g_VboHandle = gl && gl.createBuffer();\n g_ElementsHandle = gl && gl.createBuffer();\n\n}\n\nfunction DestroyDeviceObjects(): void {\n DestroyFontsTexture();\n\n gl && gl.deleteVertexArray(g_VaoHandle); g_VaoHandle = null;\n gl && gl.deleteBuffer(g_VboHandle); g_VboHandle = null;\n gl && gl.deleteBuffer(g_ElementsHandle); g_ElementsHandle = null;\n\n g_AttribLocationTex = null;\n g_AttribLocationProjMtx = null;\n g_AttribLocationPosition = -1;\n g_AttribLocationUV = -1;\n g_AttribLocationColor = -1;\n\n gl && gl.deleteProgram(g_ShaderHandle); g_ShaderHandle = null;\n gl && gl.deleteShader(g_VertHandle); g_VertHandle = null;\n gl && gl.deleteShader(g_FragHandle); g_FragHandle = null;\n}\n"],"names":["require","global","this","Polyfill","commonjsGlobal","delimiter","hasOwnProperty","map","parse","qsParse","qsStringify","sign","url","_url","prototypeAccessors","prototypeAccessors$1","EventEmitter","staticAccessors","Buffer","map$1","prototypeAccessors$2","prototypeAccessors$3","prototypeAccessors$4","prototypeAccessors$5","staticAccessors$1","earcut","tempAnchor","Resource","Url","Loader","Loader$1","middleware","vertex","fragment","tempPoint","tempMat","defaultFilterVertex","PIXI.ObjectRenderer","ImGui.GetDrawData","ImGui.ImDrawVertSize","ImGui.ImDrawVertPosOffset","ImGui.ImDrawVertUVOffset","ImGui.ImDrawVertColOffset","ImGui.ImDrawVert","ImGui.ImVec4","ImGui.ImDrawIdxSize","PIXI.Sprite","PIXI.Container","PIXI.BaseRenderTexture","PIXI.SCALE_MODES","PIXI.TYPES","PIXI.FORMATS","PIXI.RenderTexture","ImGui.CreateContext","ImGui.SetCurrentContext","ImGui.GetIO","ImGui.LoadIniSettingsFromMemory","ImGui.BackendFlags","ImGui.Key","PIXI.Rectangle","PIXI.settings","ImGui.SaveIniSettingsToMemory","PIXI.Point","ImGui.GetMouseCursor","ImGui.MouseCursor","ImGui.ConfigFlags","ImGui.NavInput","ImGui.NewFrame","ImGui.EndFrame","ImGui.Render","canvas","ImGui.IM_ASSERT","ImGui.IM_ARRAYSIZE","PIXI.Renderer","U.fromConstructor","ImGui.IMGUI_CHECKVERSION"],"mappings":"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C,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGhF,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGhF,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;;;QAGtF,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAA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"} \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..583e8ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +tsconfig.tsbuildinfo +*.swp +node_modules +nohup.out +.rpt2_cache diff --git a/imgui_impl.js b/imgui_impl.js new file mode 100644 index 0000000..0f4a8ec --- /dev/null +++ b/imgui_impl.js @@ -0,0 +1,41080 @@ +'use strict'; + +Object.defineProperty(exports, '__esModule', { value: true }); + +var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +function commonjsRequire () { + throw new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs'); +} + +function unwrapExports (x) { + return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x; +} + +function createCommonjsModule(fn, module) { + return module = { exports: {} }, fn(module, module.exports), module.exports; +} + +var require$$0 = {}; + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +// resolves . and .. elements in a path array with directory names there +// must be no slashes, empty elements, or device names (c:\) in the array +// (so also no leading and trailing slashes - it does not distinguish +// relative and absolute paths) +function normalizeArray(parts, allowAboveRoot) { + // if the path tries to go above the root, `up` ends up > 0 + 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 the path is allowed to go above the root, restore leading ..s + if (allowAboveRoot) { + for (; up--; up) { + parts.unshift('..'); + } + } + + return parts; +} + +// Split a filename into [root, dir, basename, ext], unix version +// 'root' is just a slash, or nothing. +var splitPathRe = + /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; +var splitPath = function(filename) { + return splitPathRe.exec(filename).slice(1); +}; + +// path.resolve([from ...], to) +// posix version +function resolve() { + var resolvedPath = '', + resolvedAbsolute = false; + + for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { + var path = (i >= 0) ? arguments[i] : '/'; + + // Skip empty and invalid entries + if (typeof path !== 'string') { + throw new TypeError('Arguments to path.resolve must be strings'); + } else if (!path) { + continue; + } + + resolvedPath = path + '/' + resolvedPath; + resolvedAbsolute = path.charAt(0) === '/'; + } + + // At this point the path should be resolved to a full absolute path, but + // handle relative paths to be safe (might happen when process.cwd() fails) + + // Normalize the path + resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) { + return !!p; + }), !resolvedAbsolute).join('/'); + + return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; +} +// path.normalize(path) +// posix version +function normalize(path) { + var isPathAbsolute = isAbsolute(path), + trailingSlash = substr(path, -1) === '/'; + + // Normalize the path + path = normalizeArray(filter(path.split('/'), function(p) { + return !!p; + }), !isPathAbsolute).join('/'); + + if (!path && !isPathAbsolute) { + path = '.'; + } + if (path && trailingSlash) { + path += '/'; + } + + return (isPathAbsolute ? '/' : '') + path; +} +// posix version +function isAbsolute(path) { + return path.charAt(0) === '/'; +} + +// posix version +function join() { + var paths = Array.prototype.slice.call(arguments, 0); + return normalize(filter(paths, function(p, index) { + if (typeof p !== 'string') { + throw new TypeError('Arguments to path.join must be strings'); + } + return p; + }).join('/')); +} + + +// path.relative(from, to) +// posix version +function relative(from, to) { + from = resolve(from).substr(1); + to = 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('/'); +} + +var sep = '/'; +var delimiter = ':'; + +function dirname(path) { + var result = splitPath(path), + root = result[0], + dir = result[1]; + + if (!root && !dir) { + // No dirname whatsoever + return '.'; + } + + if (dir) { + // It has a dirname, strip trailing slash + dir = dir.substr(0, dir.length - 1); + } + + return root + dir; +} + +function basename(path, ext) { + var f = splitPath(path)[2]; + // TODO: make this comparison case-insensitive on windows? + if (ext && f.substr(-1 * ext.length) === ext) { + f = f.substr(0, f.length - ext.length); + } + return f; +} + + +function extname(path) { + return splitPath(path)[3]; +} +var require$$1 = { + extname: extname, + basename: basename, + dirname: dirname, + sep: sep, + delimiter: delimiter, + relative: relative, + join: join, + isAbsolute: isAbsolute, + normalize: normalize, + resolve: resolve +}; +function filter (xs, f) { + if (xs.filter) return xs.filter(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + if (f(xs[i], i, xs)) res.push(xs[i]); + } + return res; +} + +// String.prototype.substr - negative index don't work in IE8 +var substr = 'ab'.substr(-1) === 'b' ? + function (str, start, len) { return str.substr(start, len) } : + function (str, start, len) { + if (start < 0) start = str.length + start; + return str.substr(start, len); + } +; + +var bindImgui = createCommonjsModule(function (module, exports) { +var Module = (function() { + var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; + return ( +function(Module) { + Module = Module || {}; + +var Module=typeof Module!=="undefined"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key];}}Module["arguments"]=[];Module["thisProgram"]="./this.program";Module["quit"]=function(status,toThrow){throw toThrow};Module["preRun"]=[];Module["postRun"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window==="object";ENVIRONMENT_IS_WORKER=typeof importScripts==="function";ENVIRONMENT_HAS_NODE=typeof process==="object"&&typeof commonjsRequire==="function";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}else{return scriptDirectory+path}}if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+"/";var nodeFS;var nodePath;Module["read"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require$$0;if(!nodePath)nodePath=require$$1;filename=nodePath["normalize"](filename);ret=nodeFS["readFileSync"](filename);}return binary?ret:ret.toString()};Module["readBinary"]=function readBinary(filename){var ret=Module["read"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret);}assert(ret.buffer);return ret};if(process["argv"].length>1){Module["thisProgram"]=process["argv"][1].replace(/\\/g,"/");}Module["arguments"]=process["argv"].slice(2);process["on"]("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process["on"]("unhandledRejection",abort);Module["quit"]=function(status){process["exit"](status);};Module["inspect"]=function(){return "[Emscripten Module object]"};}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){Module["read"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)};}Module["readBinary"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer==="function"){return new Uint8Array(readbuffer(f))}data=read(f,"binary");assert(typeof data==="object");return data};if(typeof scriptArgs!="undefined"){Module["arguments"]=scriptArgs;}else if(typeof arguments!="undefined"){Module["arguments"]=arguments;}if(typeof quit==="function"){Module["quit"]=function(status){quit(status);};}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href;}else if(document.currentScript){scriptDirectory=document.currentScript.src;}if(_scriptDir){scriptDirectory=_scriptDir;}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf("/")+1);}else{scriptDirectory="";}Module["read"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module["readBinary"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}};}Module["readAsync"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror();};xhr.onerror=onerror;xhr.send(null);};Module["setWindowTitle"]=function(title){document.title=title;};}var out=Module["print"]||(typeof console!=="undefined"?console.log.bind(console):typeof print!=="undefined"?print:null);var err=Module["printErr"]||(typeof printErr!=="undefined"?printErr:typeof console!=="undefined"&&console.warn.bind(console)||out);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key];}}moduleOverrides=undefined;var asm2wasmImports={"f64-rem":function(x,y){return x%y},"debugger":function(){debugger}};var functionPointers=new Array(0);var setTempRet0=function(value){};if(typeof WebAssembly!=="object"){err("no native wasm support detected");}var wasmMemory;var wasmTable;var ABORT=false;function assert(condition,text){if(!condition){abort("Assertion failed: "+text);}}var UTF8Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf8"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str="";while(idx>10,56320|ch&1023);}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023;}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u;}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63;}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4;}return len}var UTF16Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf-16le"):undefined;var WASM_PAGE_SIZE=65536;var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferViews(){Module["HEAP8"]=HEAP8=new Int8Array(buffer);Module["HEAP16"]=HEAP16=new Int16Array(buffer);Module["HEAP32"]=HEAP32=new Int32Array(buffer);Module["HEAPU8"]=HEAPU8=new Uint8Array(buffer);Module["HEAPU16"]=HEAPU16=new Uint16Array(buffer);Module["HEAPU32"]=HEAPU32=new Uint32Array(buffer);Module["HEAPF32"]=HEAPF32=new Float32Array(buffer);Module["HEAPF64"]=HEAPF64=new Float64Array(buffer);}var DYNAMIC_BASE=5315584,DYNAMICTOP_PTR=72672;var TOTAL_STACK=5242880;var INITIAL_TOTAL_MEMORY=Module["TOTAL_MEMORY"]||16777216;if(INITIAL_TOTAL_MEMORY>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback();continue}var func=callback.func;if(typeof func==="number"){if(callback.arg===undefined){Module["dynCall_v"](func);}else{Module["dynCall_vi"](func,callback.arg);}}else{func(callback.arg===undefined?null:callback.arg);}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;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 ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__);}function preMain(){callRuntimeCallbacks(__ATMAIN__);}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 addOnPostRun(cb){__ATPOSTRUN__.unshift(cb);}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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();}}}Module["preloadedImages"]={};Module["preloadedAudios"]={};var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile="data:application/octet-stream;base64,AGFzbQEAAAAB2AyxAWACf38Bf2ACf38AYAJ8fAF8YAF/AX9gAX8AYAN/f38Bf2AEf39/fwBgA39/fwBgAn9/AX1gBH9/f38Bf2AEf399fwBgAn99AX9gA399fQF/YAZ9fX1/f38AYAR/fX9/AGAFf39/fX8AYAABfGADf31/AGAFf39/f38Bf2AIf39/f39/f38Bf2AHf39/f39/fwF/YAZ/f39/f38Bf2AGf398fH9/AX9gCX9/f39/f39/fwF/YAN9f38AYAl/f39/f39/f38AYAZ/f39/f38AYAJ/fQBgAX8BfWAAAX9gAn19AGABfQBgAAF9YAAAYAN/f30Bf2AGf39/fX9/AGAIf399fX1/f38AYAR/fX99AX9gBn9/fX9/fwBgBX9/f399AGAHf39/f31/fQBgBn9/f399fwBgB39/f39/f38AYAd/f39/f399AGAGf39/f399AGAFf39/f38AYAZ/f31/f30AYAV/f31/fwBgCH9/fX9/f31/AGALf39/f39/f39/f38AYAl/f39/f39/fX8AYAh/f39/f399fwBgBH9/f30AYAZ/f319fX8AYAp/f39/f39/f39/AGADf399AGAGf3x/f39/AX9gA39+fwF+YAF/AXxgA39/fwF9YAR/f319AX9gCH9/fX19f39/AX9gBH9/fX8Bf2AFf399f30Bf2AHf39/fHx/fwF/YAR/f399AX9gBX9/f31/AX9gBn9/f31/fwF/YAp/f39/f39/f39/AX9gA399fQBgB399fX1/f38AYAd/f399fX1/AGAHf39/fX9/fQBgB39/f31/f38AYAl/f399f39/fX8AYAd/f39/f31/AGAIf39/f399f30AYAh/f39/f39/fQBgCH9/f39/f39/AGAKf39/f39/f399fwBgDH9/f39/f39/f39/fwBgDX9/f39/f39/f39/f38AYAN/f3wAYAN/f38BfGABfQF9YAJ9fQF9YAV/fX19fQBgBH9/fX0AYAJ/fQF9YAR9fX19AX9gBX9/f319AGADfX19AX1gAn19AX9gBH19fX0BfWALf319fX19fX19fX8AYAl/f31/f39/fX8AYAp/f31/f39/f31/AGAFf31/f30Bf2AIf399fX9/f38AYAt/f319fX19fX19fQBgCH9/f39/fX1/AGAHf39/fX1/fwBgBX9/fX9/AX9gCH9/f399fX9/AGAHf39/fX19fQBgCn9/fX19fX19fX8AYAx/f319fX19fX19fX8AYAd/fX19fX19AGAEf31/fwF/YAh/f399f39/fQF/YAV/fX9/fwF/YAV/fX5+fwF/YAZ/fX19f30Bf2AGf318fH99AX9gAn98AXxgAn9+AX5gCX9/f399f39/fQF/YAd/f319fX99AX9gCX9/f319fX9/fQF/YAZ/f31/f38Bf2AIf39/fX9/f38Bf2AKf39/f39/f31/fwF/YAl/f39/f399f38Bf2AJf39/fn5/fX9/AX9gCX9/f319f31/fwF/YAl/f398fH99f38Bf2AFfHx8fX0BfWADfHx9AXxgA3x8fAF8YAV9fX19fQF9YAN+fn4BfWADfn5+AX5gBX5+fn19AX1gBX9/f319AX1gB39/f39/f30Bf2AIf39/f39/f30Bf2AGf399fX99AX9gB39/f319f30Bf2AGf399fX9/AX9gB39/f31/fX8AYAl/f39/f399fX8AYAd/f39/fX1/AGAEf319fQF9YAZ/f39/f30Bf2AHf399f39/fQF/YAJ/fgBgAn9/AX5gA35/fwF/YAJ+fwF/YAJ8fwF8YAV/f39/fwF8YAZ/f39/f38BfGACfX8BfWABfAF9YAJ9fwF/YAN/f34AYAF/AX5gAn9/AXxgBH9/f38BfWAHf398f39/fwF/YAV/f399fQF/YAl/f399fX1/f38Bf2AGf39/fX99AX9gCH9/f398fH9/AX9gBX9/f399AX9gBn9/f399fwF/YAd/f39/fX9/AX9gC39/f39/f39/f39/AX9gCX9/f319fX9/fwBgCH9/f399fX1/AGAHf39/f31/fwBgCH9/f399f399AGAIf39/f31/f38AYAp/f39/fX9/f31/AGAJf39/f39/fX99AGAJf39/f39/f399AGALf39/f39/f39/fX8AAvQDNwNlbnYBYgA2A2VudgFjAE4DZW52AWQAGgNlbnYBZQAEA2VudgFmAAADZW52AWcAUQNlbnYBaABTA2VudgFpAAcDZW52AWoAAANlbnYBawAtA2VudgFsACEDZW52AW0ABwNlbnYBbgAAA2VudgFvAAYDZW52AXAAAANlbnYBcQAaA2VudgFyAAQDZW52AXMABANlbnYBdAAEA2VudgF1AAAI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/AYLC0H89gEoAgAhASAAQZypBCgCACABQf8BcUHyBmoRAQALWgEDfyMEIQIjBEEQaiQEIAJBmKkEKAIAIgNBsCtqIABBBHRqIgApAgA3AgAgAiAAKQIINwIIIAIgAioCDCADQZAqaioCACABlJQ4AgwgAhChAyEEIAIkBCAECxYAIAAgASkCADcCACAAIAIpAgA3AggLBgBBNBADCwwAIAAgASAAIAFdGwvGAwEDfyACQYDAAE4EQCAAIAEgAhAjGiAADwsgACEEIAAgAmohAyAAQQNxIAFBA3FGBEADQCAAQQNxBEAgAkUEQCAEDwsgACABLAAAOgAAIABBAWohACABQQFqIQEgAkEBayECDAELCyADQXxxIgJBQGohBQNAIAAgBUwEQCAAIAEoAgA2AgAgACABKAIENgIEIAAgASgCCDYCCCAAIAEoAgw2AgwgACABKAIQNgIQIAAgASgCFDYCFCAAIAEoAhg2AhggACABKAIcNgIcIAAgASgCIDYCICAAIAEoAiQ2AiQgACABKAIoNgIoIAAgASgCLDYCLCAAIAEoAjA2AjAgACABKAI0NgI0IAAgASgCODYCOCAAIAEoAjw2AjwgAEFAayEAIAFBQGshAQwBCwsDQCAAIAJIBEAgACABKAIANgIAIABBBGohACABQQRqIQEMAQsLBSADQQRrIQIDQCAAIAJIBEAgACABLAAAOgAAIAAgASwAAToAASAAIAEsAAI6AAIgACABLAADOgADIABBBGohACABQQRqIQEMAQsLCwNAIAAgA0gEQCAAIAEsAAA6AAAgAEEBaiEAIAFBAWohAQwBCwsgBAsSACAAQbT4ATYCACAAQQRqED4LKgAgACgCEBBbBEBBACEABSAAQQRqIgAsAAtBAEgEQCAAKAIAIQALCyAACxIAIAAgARDpECAAQcD4ATYCAAsQACAALQABIAAtAABBCHRyCyoBAX8jBCEBIwRBEGokBCABIAA2AgBBBBA/IgAgASgCADYCACABJAQgAAslAQF/IAEoAgAhAiAAQgA3AgAgAEEANgIIIAAgAUEEaiACEJMBCwgAQQwQA0EACwcAIABBBGoLJwEBfyAAKAIIIgEEQCAAQQA2AgQgAEEANgIAIAEQQSAAQQA2AggLCw0AIAAoAgggAUECdGoLFgAgACABKgIAIAKUIAEqAgQgApQQMgsp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QCADIAMoApACQQFyNgKQAgtBAQsLBgAgAKiyCw0AIABB1ABqIAEQmgILFAAgASACIAAgACACXhsgACABXRsLEQBBACAAQQRqIAAoAggQWxsLIQAgAEP//39/Q///f38QMiAAQQhqQ///f/9D//9//xAyCxAAIAAoAggiAARAIAAQQQsLFwAgAEEANgIEIABBADYCACAAQQA2AggLIQEBfyMEIQIjBEEQaiQEIAIgATYCACAAIAIQ2gIgAiQEC5gCAQR/IAAgAmohBCABQf8BcSEDIAJBwwBOBEADQCAAQQNxBEAgACADOgAAIABBAWohAAwBCwsgA0EIdCADciADQRB0ciADQRh0ciEBIARBfHEiBUFAaiEGA0AgACAGTARAIAAgATYCACAAIAE2AgQgACABNgIIIAAgATYCDCAAIAE2AhAgACABNgIUIAAgATYCGCAAIAE2AhwgACABNgIgIAAgATYCJCAAIAE2AiggACABNgIsIAAgATYCMCAAIAE2AjQgACABNgI4IAAgATYCPCAAQUBrIQAMAQsLA0AgACAFSARAIAAgATYCACAAQQRqIQAMAQsLCwNAIAAgBEgEQCAAIAM6AAAgAEEBaiEADAELCyAEIAJrC58BAQN/EDwiAiwAf0UEQEGYqQQoAgAhBCABQwAAAABdIQMgAEMAAAAAXARAIAIqArQDQwAAAAAgASADGyACKgIMIAIqAliTIACSkpIhACACKgK4AyEBBSADBEAgBEHUKmoqAgAhAQsgAioC0AEhAAsgAiABIACSOALIASACIAIoAtQBNgLMASACIAIpAvQBNwLoASACIAIoAvwBNgLwAQsLqwECA38BfSMEIQUjBEEQaiQEQZipBCgCACEGIAMEQCABIAIQkAEhAgsgBSEDIAZBsDFqKAIAIQcgBkG0MWoqAgAhCCABIAJGBEAgAEMAAAAAIAgQMgUgAyAHIAhD//9/fyAEIAEgAkEAEJoDIAMqAgAiBEMAAAAAXgRAIAMgBCAIIAcqAgCVkyIEOAIACyADIARDMzNzP5KosjgCACAAIAMpAwA3AgALIAUkBAsnAEGYqQQoAgBBNGogAEECdGooAgAiAEF/SgR/IAAgARD2AgVBAAsLNQECfyMEIQMjBEEQaiQEAn8gACgCACEEIAMgARB3IAQLIAMoAgAgAigCABALIAMQMSADJAQL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KAIIRgRAIAEQ4QELIAEgACABKAIAEPIFIgI2AgAgASACNgIIIAAgARCCAQwFCyABEOEBIAFBADYCCCABQQA2AgAgAUEAOgAPDAQLIAEQ4QEgASAAKAIsIgI2AgggASACNgIAIAFBADoADwwDCyAAKAIsIQQgACABEIIBIAEQ4QEgASwAEARAIAEgBDYCACAEIQIFIAEoAgAiAiAESARAA0ACQAJ/IAAgAhDiAUH//wNxQQpGIQwgASgCACECIAwLDQAgASACQQFqIgI2AgAgAiAESA0BCwsLCyABIAI2AgggAUEAOgAPDAILQQMhAwwBCyAFQYCADEgEQCAFQY2ABGsEQEEDIQMMAgsgASgCBCABKAIIRgRAIAEgACABKAIAEPIFNgIAIAAgARCCAQUgACABELgECwwBCwJAAkACQCAFQYCADGsOAgIAAQsgARDhASABIAEoAghBAWo2AgggACABEIIBIAEgASgCCDYCACABQQA6AA8MAgtBAyEDDAELIAAgARCCASABEOEBIAEoAggiAkEASgRAIAEgAkF/aiICNgIICyABIAI2AgAgAUEAOgAPCyADQQNGBEBBACAFIAVB//8DShsiAkEASgRAAkAgBiACOwEAIAJBCkYEQCABLAAQDQELAkACQCABLAAMRQ0AIAEoAgQgASgCCEcNACABKAIAIgIgACgCLE4NACAAIQUgAUEYaiACQQFBARC5BCIEBEAgBCAFIAIQ4gE7AQALIAAgASgCAEEBENkDIAAgASgCACAGQQEQkgMEQCABIAEoAgBBAWo2AgAgAUEAOgAPCwwBCyAAIAEQkwMgACABKAIAIAZBARCSAwRAIAEgASgCAEEBEPcFIAEgASgCAEEBajYCACABQQA6AA8LCwsLBSADQckARgRAIAEoAgQgASgCCEYEQCABKAIAIgIgACgCLEgEQCAAIAEgAkEBENoDCwUgACABEJMDCyABQQA6AA8FIANBzgBGBEAgASgCBCABKAIIRgRAIAAgARCCASABKAIAIgJBAEoEQCAAIAEgAkF/akEBENoDIAEgASgCAEF/ajYCAAsFIAAgARCTAwsgAUEAOgAPCwsLIAkkBAtIAQF/IAFBGGogAiADQQAQuQQiBEEARyADQQBKcQRAQQAhAQNAIAFBAXQgBGogACABIAJqEOIBOwEAIAFBAWoiASADRw0A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CyQAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAAQQNxQZwLahExAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBA3FBmAtqETYACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBlAtqERkACyIAIAEgAiADIAQgBSAGIAcgCCAJIAogAEEBcUGSC2oRTwALHgAgASACIAMgBCAFIAYgByAIIABBA3FBjgtqEU4ACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBigtqETIACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQYgLahFNAAscACABIAIgAyAEIAUgBiAHIABBB3FBgAtqESoACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQf4KahEzAAscACABIAIgAyAEIAUgBiAHIABBA3FB+gpqESsACxoAIAEgAiADIAQgBSAGIABBD3FB6gpqERoACw0AIABB+ClqQQAQwAELHgAgASACIAMgBCAFIAYgByAIIABBAXFB6ApqEUwACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHmCmoRSwALGgAgASACIAMgBCAFIAYgAEEDcUHiCmoRLAALGAAgASACIAMgBCAFIABBD3FB0gpqES0ACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHQCmoRKAALGgAgASACIAMgBCAFIAYgAEEDcUHMCmoRKQALGAAgASACIAMgBCAFIABBA3FByApqEScACxYAIAEgAiADIAQgAEEfcUGoCmoRBgALIAAgASACIAMgBCAFIAYgByAIIAkgAEEBcUGmCmoRSgALHAAgASACIAMgBCAFIAYgByAAQQFxQaQKahFJAAscACABIAIgAyAEIAUgBiAHIABBAXFBogpqEUgACxoAIAEgAiADIAQgBSAGIABBA3FBngpqESMACxgAIAEgAiADIAQgBSAAQQNxQZoKahEPAAscACABIAIgAyAEIAUgBiAHIABBAXFBmApqEUcACxYAIAEgAiADIAQgAEEDcUGUCmoRNAALFQAgASACIAMgAEH/AHFBlAlqEQcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQZIJahEwAAsaACABIAIgAyAEIAUgBiAAQQFxQZAJahEmAAsaACABIAIgAyAEIAUgBiAAQQFxQY4JahEuAAsYACABIAIgAyAEIAUgAEEDcUGKCWoRLwALFgAgASACIAMgBCAAQQNxQYYJahEKAAseACABIAIgAyAEIAUgBiAHIAggAEEBcUGECWoRJAALGgAgASACIAMgBCAFIAYgAEEBcUGCCWoRNQALFAAgASACIAMgAEEPcUHyCGoRNwALFgAgASACIAMgBCAAQQNxQe4GahEOAAsUACABIAIgAyAAQQFxQewGahERAAscACABIAIgAyAEIAUgBiAHIABBAXFB6gZqEUYACxQAIAEgAiADIABBAXFB6AZqEUUACxQAIAEgAiADIABBAXFB3gRqERgACxoAIAEgAiADIAQgBSAGIABBA3FB2gRqEQ0ACxUAQZipBCgCAEE0aiAAQQJ0aigCAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBAXFBggRqEUQACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBB3FB+gNqERcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQ9xQeoDahETAAscACABIAIgAyAEIAUgBiAHIABBD3FB2gNqERQACxoAIAEgAiADIAQgBSAGIABBH3FBugNqERUACxgAIAEgAiADIAQgBSAAQQ9xQaoDahESAAsWACABIAIgAyAEIABBH3FBigNqEQkACxoAIAEgAiADIAQgBSAGIABBAXFBiANqEUMACxgAIAEgAiADIAQgBSAAQQFxQYYDahFCAAsWACABIAIgAyAEIABBAXFBhANqEUEACxwAIAEgAiADIAQgBSAGIAcgAEEBcUGCA2oRQAALGAAgASACIAMgBCAFIABBAXFBwAJqET8ACxYAIAEgAiADIAQgAEEBcUG+AmoRPgALHgAgASACIAMgBCAFIAYgByAIIABBAXFBvAJqET0ACxYAIAEgAiADIAQgAEEBcUG6AmoRPAALFAAgASACIAMgAEEDcUG2AmoRIgALGgAgASACIAMgBCAFIAYgAEEBcUG0AmoRFgALFgAgASACIAMgBCAAQQFxQbIBahElAAsUACABIAIgAyAAQQFxQbABahEMAAsaACABIAIgAyAEIAUgBiAAQQFxQawBahE4AAsUACABIAIgAyAAQQNxQcgAahE7AAsRACABIAIgAEEfcUEoahEIAAsPACABIABBA3FBJGoRHAALDQAgAEEfcUEEahEgAAsPACABIABBAXFBAmoROgALCgAgAEEBcREQAAvS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AiADIAQgBUEPcUHSCmoRLQAMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIAFBADoANCABQQA6ADUgACgCCCIAKAIAKAIUIQMgACABIAIgAkEBIAQgA0EPcUHqCmoRGgAgAQJ/AkAgASwANQR/IAEsADQNAUEBBUEACyEAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAA0CQQQMAwsLIAANAEEEDAELQQMLNgIsDAILCyADQQFGBEAgAUEBNgIgCwsLC0QBAX8gACABKAIIEIUBBEAgASACIAMgBBCFBQUgACgCCCIAKAIAKAIUIQYgACABIAIgAyAEIAUgBkEPcUHqCmoRGgALCxgAIAAgASgCCBCFAQRAIAEgAiADEIcFCwuPAQAgACABKAIIEIUBBEAgASACIAMQhgUFIAAgASgCABCFAQRAAkAgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASACNgIUIAEgASgCKEEBajYCKCABKAIkQQFGBEAgASgCGEECRgRAIAFBAToANgsLIAFBBDYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwsLGgAgACABKAIIEIUBBEAgASACIAMgBBCFBQsLyQEBA38jBCEEIwRBQGskBCAEIQMgACABEIUBBH9BAQUgAQR/IAFB4PQBEJQEIgEEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyABNgIAIAMgADYCCCADQX82AgwgA0EBNgIwIAEoAgAoAhwhACABIAMgAigCAEEBIABBH3FBqApqEQYAIAMoAhhBAUYEfyACIAMoAhA2AgBBAQVBAAsFQQALBUEACwshBSAEJAQgBQt4AQN/IwQhASMEQRBqJAQgASEAAn9BAEGMrgQoAgBB37femgFGDQAaQbMEESEAQYyuBEHft96aATYCAEEACwRAQZSKAyAAEMICBQJ/An9BAEGQrgQoAgAiACgCBEHOlZoSRw0AGiAAKAIACyECIAEkBCACCw8LQQALowICB38BfiMEIQIjBEEwaiQEIAJBGGohASACQRBqIQMgAiEEIAJBJGohBRDLCyIABEAgACgCACIABEAgACkDMCIHQoB+g0KA1qyZ9MiT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AgAhBCAAEIoCIAAoAiAQtgcgBAsQigILCyAAQdQyaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAwRAIAMQjRIgAxBBCyABQQFqIgEgAigCAEgNAAsLIAIQTyAAQeAyahBPIABB7DJqEE8gAEGUM2pBADYCACAAQfgyahBPIABBhDNqEE8gAEGgNWpBADYCACAAQZgzakEANgIAIABBnDNqQQA2AgAgAEHcM2pBADYCACAAQdgzakEANgIAIABB9DNqQQA2AgAgAEH4M2oQTyAAQYQ0ahBPIABBkDRqEE8gAEGcNGoQTyAAQag0ahBPIABBwDdqIQJBACEBA0AgAUEMbCACahBPIAFBAWoiAUECRw0ACyAAQdw3ahDdBCAAQYTYAGoQTyAAQZA6ahBPIABBnDpqEE8gAEGoOmoQTyAAQcDYAGoiAigCAEEASgRAQQAhAQNAIAIgARBVKAIAEPYHIAFBAWoiASACKAIASA0ACwsgAhBPIABBtNgAahBPIABB0NgAaiICKAIAIgFBzIECKAIARiABRXJFBEAgARDDAhogAkEANgIACyAAQdTYAGoQTyAAQQA6AAALCwsAIAAQngUgABBUC00BAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACQYz8ATYCACACIAE2AgggAhCvBSAAIAJBBGoQ5AMhAyACEJ4FIAIkBCADCwsAIAAQnwUgABBUC08BAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADQfT7ATYCACADIAE2AgggAxDGByAAIANBBGogAhCABiEEIAMQnwUgAyQEIAQLMwAgAEGYqQQoAgAgABsiABCxD0GYqQQoAgAgAEYEQEEAEIoCCyAABEAgABDkCSAAEEELC1QBAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQygEgACACIAMQTiIAKAIARhC5AiIBBEAgACACNgIACyABIQQgAxC0ASADJAQgBAtWAgJ/An0jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQcSABQQhqIgIgAEE8aiAAQUBrIAEQywcgAhA9IQQgAhAxIAEQMSABJAQgBAsHACABELgPC4kBAgJ/An0jBCEJIwRBMGokBEGwqQQoAgAiCkE8aiABEIgBIApBQGsg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QYAHaiIKEDogAEGwB2ohAyAAQYgHaiEBA0AgARA6IAFBCGoiASADRw0ACyAAQbwIaiEDIABBlAhqIQEDQCABEDogAUEIaiIBIANHDQALIABB+ClqEGggAEEAQYgqEGoaIAJDAACAv0MAAIC/EDIgBSACKQMANwIAIABDiYiIPDgCECAAQwAAoEA4AhQgAEHmhQI2AhggAEHwhQI2AhwgAEOamZk+OAIgIABDAADAQDgCJCAAQSxqIgFCfzcCACABQn83AgggAUJ/NwIQIAFCfzcCGCABQn83AiAgAUJ/NwIoIAFCfzcCMCABQn83AjggAUFAa0J/NwIAIAFCfzcCSCABQX82AlAgAEMAAIA+OAKAASAAQ83MTD04AoQBIABBADYCiAEgAEEANgKMASAAQwAAgD84ApABIABBADYCmAEgAEEAOgCUASACQwAAgD9DAACAPxAyIAYgAikDADcCACACQwAAAABDAAAAABAyIAggAikDACILNwIAIAcgCzcCACAAQQA6ALUBIABBAToAtgEgAEEBOgC3ASAAQQA6ALgBIABCADcCvAEgAEIANwLEASAAQQA2AswBIABBAzYC0AEgAEECNgLUASAAQQA2AtgBIABBAzYC3AEgAEEANgLgASACQ///f/9D//9//xAyIAkgAikDADcCACACQ///f/9D//9//xAyIAogAikDADcCACAAQwAAwEA4AihBACEBA0AgAEGACGogAUECdGpDAACAvzgCACAAQewHaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEFRw0AC0EAIQEDQCAAQdAYaiABQQJ0akMAAIC/OAIAIABB0AhqIAFBAnRqQwAAgL84AgAgAUEBaiIBQYAERw0AC0EAIQEDQCAAQdAoaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEVRw0ACyAEJAQLNAECfyMEIQQjBEEQaiQEIARBCGoiBSABIAIQwgogBCADEG8gACAFIAQQgQEgBBAxIAQkBAtCAQJ/IwQhBCMEQRBqJAQgBCADEDQgBEEEaiIDIAEgAiAEIABBA3FBhglqEQoAIAMQfSEFIAMQMSAEEDEgBCQEIAULKwEBfxDVByIBQZquBCABGyEBIABCADcCACAAQQA2AgggACABIAEQXBCTAQsxAQF/IwQhASMEQRBqJAQgASAAEJ8BIAEoAgAgASABLAAL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C0EASAR/IAAoAgAFIAALIAEQqwgLGAAgACwAC0EASAR/IAAoAgAFIAALEJMKCwkAIAAgARDiEAsqAQJ/An8jBCEBIwRBEGokBEHEvgJBBEHAywFBicsCQRJBFxACIAELJAQLCwAgACABIAIQ4BALCQAgACABEN8QCwsAIAAgASACEN4QCxgAIAAsAAtBAEgEfyAAKAIABSAACxCpAwsJACAAIAEQ3BALGAAgACwAC0EASAR/IAAoAgAFIAALEKsDCyoBAn8CfyMEIQEjBEEQaiQEQem9AkEFQdDLAUG7zAJBDUELEAIgAQskBAsNACAAIAEgAiADENsQCyoBAn8CfyMEIQEjBEEQaiQEQd69AkEFQfDLAUG7zAJBDEEKEAIgAQskBAsNACAAIAEgAiADENoQCxoAIAAsAAtBAEgEfyAAKAIABSAACyABEK8ICwcAIAAQ2RALKgECfwJ/IwQhASMEQRBqJARB6bwCQQRBkMwBQd3NAkECQQEQAiABCyQECwsAIAAgASACENcQCyoBAn8CfyMEIQEjBEEQaiQEQeG8AkEDQez4AUHjzQJBEUEdEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHZvAJBA0H4+AFB480CQRBBHBACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB0bwCQQNBhPkBQePNAkEPQRsQAiABCyQECxoAIAAsAAtBAEgEfyAAKAIABSAACyABELUICyoBAn8CfyMEIQEjBEEQaiQEQbO8AkEEQaDMAUGJywJBEUEVEAIgAQskBAscACAALAALQQBIBH8gACgCAAUgAAsgASACEM8FCwkAIAAgARDVEAsRACAAIAEgAiADIAQgBRDUEAsqAQJ/An8jBCEBIwRBEGokBEGPvAJBBkGwzAFB6M0CQRFBBhACIAELJAQLDwAgACABIAIgAyAEEM0QCw0AIAAgASACIAMQyhALKgECfwJ/IwQhASMEQRBqJARB9bsCQQVB0MwBQbvMAkELQQgQAiABCyQECw0AIAAgASACIAMQyBALCwAgACABIAIQxxALNQEBfyAALAALQQBIBEAgACgCACEACxA8IgIsAH8Ef0EABSACIAAQXiABQRpyIABBABDTAgsLBwAgABC9CAsYACAALAALQQBIBH8gACgCAAUgAAsQvggLKgECfwJ/IwQhASMEQRBqJARB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AAtBAEgEfyAAKAIABSAACyABELkCCyoBAn8CfyMEIQEjBEEQaiQEQc61AkEEQfDSAUGJywJBDkEJEAIgAQskBAsLACAAIAEgAhC1DwsJACAAIAEQsw8LKgECfwJ/IwQhASMEQRBqJARBubUCQQhBgNMBQYfRAkEEQQEQAiABCyQECxMAIAAgASACIAMgBCAFIAYQrw8LKgECfwJ/IwQhASMEQRBqJARBs7UCQQdBoNMBQZ/TAkEBQQQQAiABCyQECxEAIAAgASACIAMgBCAFEK0PCwkAIAAgARCsDwsaACAALAALQQBIBH8gACgCAAUgAAsgARCDCQsYACAALAALQQBIBH8gACgCAAUgAAsQxAQLCQAgACABEKkPC6cEAgF/AX4jBCEBIwRBEGokBCAAEDogAEEIahA6IABBEGoQOiAAQRhqEDogAEEgahA6IABBLGoQOiAAQcwAahBmIABB3ABqEGYgAEGAAWoQOiAAQYgBahBoIABBADYCsAEgAEEANgKsASAAQQA2ArQBIABBuAFqEGggAEHEAWoQaCAAQQA2AtQBIABBADYC0AEgAEEANgLYASAAQegBahDnAiAAQewBahDnAiAAQfABahDnAiABQwAAAABDAAAAABAyIAAgASkDACICNwIYIAAgAjcCECAAIAI3AgggACACNwIAIAFDAAAAAEMAAAAAEDIgACABKQMAIgI3AiwgACACNwIgIABDAAAAADgCNCAAQwAAAAA4AiggAEMAAIC/OAI4IABCADcCPCAAQgA3AkQgARBmIAAgASkCADcCXCAAIAEpAgg3AmQgACABKQIANwJMIAAgASkCCDcCVCAAQQA2AnggAEEANgJ0IABBADYCbCAAQQE2AnAgAEEAOgB8IABBADoAfSAAQQA6AH4gAUMAAAAAQwAAAAAQMiAAIAEpAwA3AoABIABBADYClAEgAEEBNgKcASAAQQE2ApgBIABDAAAAADgCpAEgAEEANgKgASAAQwAAgL84AqgBIABCADcC3AEgAEEANgLkASABEOcCIAAgASgCADYC6AEgARDnAiAAIAEoAgA2AuwBIAEQ5wIgACABKAIANgLwASAAQQA2AvQBIAEkBAsaACAALAALQQBIBH8gACgCAAUgAAtBABC5AQsHACAAEKAPC9AHAgV/AX4jBCEFIwRBEGokBCAFIQMgAEEMahA6IABBFGoQOiAAQRxqEDogAEEkahA6IABBLGoQOiAAQTRqEDogAEE8ahA6IABB2ABqEDogAEHgAGoQOiAAQegAahA6IABB8ABqEDogAEG4AWoQOiAAQcABahA6IABByAFqEMoSIABBwANqIgYiBEEANgIEIARBADYCACAEQQA2AgggAEHMA2oQZiAAQdwDahBmIABB7ANqEGYgAEH8A2oQZiAAQYwEahBmIABBpARqEN4DIABB1ARqEGggAEEANgLkBCAAQQA2AuAEIABBADYC6AQgAEH4BGoiByABQbwxahD4ByAAQagGaiEEIABBiAZqIQEDQCABEGYgAUEQaiIBIARHDQALIAAgAhDaBjYCACAAQQRqIgEgAkEAQQAQuwE2AgAgBiABEHggAEEANgIIIANDAAAAAEMAAAAAEDIgACADKQMANwIMIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AhwgACAINwIUIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AjQgACAINwIsIANDAAAAAEMAAAAAEDIgACADKQMANwI8IABDAAAAADgCRCAAQwAAAAA4AkggACACEFxBAWo2AkwgACAAQf6FAhBeNgJQIABBADYCVCADQwAAAABDAAAAABAyIAAgAykDADcCWCADQ///f39D//9/fxAyIAAgAykDADcCYCADQwAAAD9DAAAAPxAyIAAgAykDADcCaCADQwAAAABDAAAAABAyIAAgAykDADcCcCAAQQA7AYQBIABCADcCeCAAQQA7AYABIABBADoAggEgAEF/OwGGASAAQX87AYgBIABBADYCjAEgAEF/NgKUASAAQX82ApABIABBADoAmAEgAEEANgKcASAAQX82AqABIABBADYCqAEgAEEANgKkASAAQQ82ArQBIABBDzYCsAEgAEEPNgKsASADQ///f39D//9/fxAyIAAgAykDACIINwLAASAAIAg3ArgBIABBfzYCnAQgAEMAAAAAOAKgBCAAQwAAgD84AuwEIABBfzYC8AQgACAHNgL0BCAAIAAoAgA2AqQFIABBADYChAYgAEEANgKABiAAQgA3AuwFIABCADcC9AUgAxBmIAAgAykCADcCmAYgACADKQIINwKgBiAAIAMpAgA3AogGIAAgAykCCDcCkAYgAEEANgL8BSAAQX82AqwGIABBfzYCqAYgAEH/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ICAtICAgICAgICAgIFguWCAgICAgICAgICAtWC4uLi4uWCAgICAgICAgICAtICAgICAgICAgIFguLi4uLlgtICAgIFguLlggICAgICAgICAtLS0gICAgICAgICAtWFhYLlhYWC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtWC4uLi5YICAgICAgICAgICAtICAgICAgICAgICBYLi4uLlgtICAgIFguLlggICAgICAgICBYICAgICAgICAgICAtICBYLlggIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtWC4uLlggICAgICAgICAgICAtICAgICAgICAgICAgWC4uLlgtICAgIFguLlggICAgICAgICBYWCAgICAgICAgICAtICBYLlggIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtWC4uWC5YICAgICAgICAgICAtICAgICAgICAgICBYLlguLlgtICAgIFguLlggICAgICAgICBYLlggICAgICAgICAtICBYLlggIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtWC5YIFguWCAgICAgICAgICAtICAgICAgICAgIFguWCBYLlgtICAgIFguLlhYWCAgICAgICBYLi5YICAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWFggICBYLlggICAgICAgICAtICAgICAgICAgWC5YICAgWFgtICAgIFguLlguLlhYWCAgICBYLi4uWCAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgWC5YICAgICAgICAtICAgICAgICBYLlggICAgICAtICAgIFguLlguLlguLlhYICBYLi4uLlggICAgICAtICBYLlggIC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgIFguWCAgICAgICAtICAgICAgIFguWCAgICAgICAtICAgIFguLlguLlguLlguWCBYLi4uLi5YICAgICAtICBYLlggIC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICBYLlggICAgICAtICAgICAgWC5YICAgICAgICAtWFhYIFguLlguLlguLlguLlhYLi4uLi4uWCAgICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgWC5YICAgWFgtWFggICBYLlggICAgICAgICAtWC4uWFguLi4uLi4uLlguLlhYLi4uLi4uLlggICAtICBYLlggIC0gICBYLlggICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgIFguWCBYLlgtWC5YIFguWCAgICAgICAgICAtWC4uLlguLi4uLi4uLi4uLlhYLi4uLi4uLi5YICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgICBYLlguLlgtWC4uWC5YICAgICAgICAgICAtIFguLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uWCAtWFhYLlhYWC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICAgICAgWC4uLlgtWC4uLlggICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uLlgtWC4uLi4uWC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgICAgICBYLi4uLlgtWC4uLi5YICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uWFhYWFgtWFhYWFhYWC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgICAgIFguLi4uLlgtWC4uLi4uWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uLlhYLi4uWC4uWCAgICAtLS0tLS0tLS0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtWFhYWFhYWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uWCBYLi5YIFguLlggICAtICAgICAgIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tICAgIFguLi4uLi4uLi4uWCBYLlggIFguLlggICAtICAgICAgIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAtICAgIFguLi4uLi4uLi4uWCBYWCAgICBYLi5YICAtICAgICAgIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICBYLi5YICAgICAgICAgIC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICAgWFggICAgICAgICAgIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAtICAgICBYWFhYWFhYWFhYICAtLS0tLS0tLS0tLS0gICAgICAgIC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0gICAgICAgICAgICAgICAgICAgIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAQaAiC8xdN10pIyMjIyMjI2hWMHFzJy8jIyNbKSwjIy9sOiQjUTY+IyM1W240Mj5jLVRIYC0+PiMvZT4xMU5OVj1CdigqOi5GP3V1IyhnUlUubzBYR0hgJHZoTEcxaHh0OT9XYCMsNUxzQ3AjLWk+LnIkPCQ2cEQ+TGInOzlDcmM2dGdYbUtWZVUyY0Q0RW8zUi8yKj5dYihNQzskalBmWS47aF5gSVdNOTxMaDJUbFMrZi1zJG82UTxCV0hgWWlVLnhmTHEkTjskMGlSL0dYOlUoamNXMnAvVypxPy1xbW5VQ0k7akhTQWlGV00uUiprVUBDPUdIP2E5d3A4ZiRlLi00XlFnMSlRLUdMKGxmKHIvN0dyUmd3ViVNUz1DI2A4TkQ+UW8jdCdYIyh2I1k5dzAjMUQkQ0lmO1cnI3BXVVBYT3V4WHVVKEg5TSgxPHEtVUUzMSNeLVYnOElSVW83UWYuL0w+PUtlJCQnNUYlKV0wXiMwWEBVLmE8cjpRTHRGc0xjTDYjI2xPaikjLlk1PC1SJktnTHdxSmZMZ04mO1E/Z0leI0RZMnVMaUBeck1sOXQ9Y1dxNiMjd2VnPiRGQmpWUVRTRGdFS25JUzdFTTk+Wlk5dzAjTDs+PiNNeCY0TXZ0Ly9MW01rQSNXQGxLLk4nWzAjN1JMXyYjdytGJUh0RzlNI1hMYE4mLixHTTRQZzstPG5MRU5odng+LVZzTS5NMHJKZkxIMmVUTWAqb0pNSFJDYE5rZmltTTJKLFctalhTOilyMHdLI0BGZ2UkVT5gdydON0cjJCNmQiMkRV4kIzo5OmhrK2VPZS0tNngpRjcqRSU/NzYlXkdNSGVQVy1aNWwnJkdpRiMkOTU2OnJTP2RBI2ZpSzopWXIrYCYjMGpAJ0RiRyYjXiRQRy5MbCtETmE8WENNS0VWKk4pTE4vTipiPSVRNnBpYS1YZzhJJDxNUiYsVmRKZSQ8KDdHO0NrbCcmaEY7OyQ8Xz1YKGIuUlMlJSkjIyNNUEJ1dUUxVjp2JmNYJiMybSMoJmNWXWBrOU9oTE1ibiVzJEcyLEIkQmZEM1gqc3A1I2wsJFIjXXhfWDF4S1glYjVVKltyNWlNZlVvOVVgTjk5aEcpdG0rL1VzOXBHKVhQdWA8MHMtKVdUdChnQ1J4SWcoJTZzZmg9a3RNS24zaik8NjxiNVNrXy8wKF5dQWFOIyhwL0w+JlZaPjFpJWgxUzl1NW9AWWFhVyRlK2I8VFdGbi9aOk9oKEN4MiRsTkVvTl5lKSNDRllAQEk7Qk9RKnNSd1p0WnhSY1U3dVc2Q1hvdzBpKD8kUVtjak9kW1A0ZCldPlJPUE9weFRPN1N0d2kxOjppQjFxKUNfPWRWMjZKOzIsXTdvcCRddVFyQF9WNyRxXiVsUXd0dUhZXT1EWCxuM0wjMFBIRE80Zjk+ZENATz5IQnVLUHBQKkUsTitiM0wjbHBSL01yVEVILklBUWsuYT5EWy5lO21jLnhdSXAuUEheJy9hcVVPLyQxV3hMb1cwW2lMQTxRVDs1SEtEK0BxUSdOUSgzX1BMaEU0OFIucUFQU3dRMC9XSz9aLFt4Py1KO2pRVFdBMFhAS0ooX1k4Ti06L003NDovLVpwS3JVc3M/ZCNkWnFdREFia1UqSnFrTCtud1hAQDQ3YDU+dz00aCg5LmBHQ1JVeEhQZVJgNU1qb2woZFVXeFphKD5TVHJQa3JKaVd4YDVVN0YjLmcqanJvaEdnYGNnOmxTVHZFWS9FVl83SDRROVtaJWNudjtKUVlaNXEubDdaZWFzOkhPSVpPQj9HPE5hbGQkcXNdQF1MPEo3YlIqPmd2Ols3TUkyaykuJzIoJDVGTlAmRVEoLClVXVddK2ZoMTgudnNhaTAwKTtEM0A0a3U1UD9EUDhhSnQrO3FVTV09K2InOEA7bVZpQkt4MERFWy1hdUdsODpQSiZEaitNNk9DXU9eKCgjI11gMGkpZHJUOy03WGA9LUgzW2lnVW5QRy1OWmxvLiNrQGgjPU9yayRtPmE+JC0/VG0kVVYoPyNQNllZIycvIyMjeGU3cS43M3JJMypwUC8kMT5zOSlXLEpyTTdTTl0nLzRDI3YkVWAwI1YuWzA+eFFzSCRmRW1QTWdZMnU3S2goRyVzaUlmTFNvUytNSzJlVE0kPTUsTThwYEEuO19SJSN1W0sjJHg0QUc4LmtLL0hTQj09LSdJZS9RVHRHPy0uKl5OLTRCL1pNXzNZbFFDNyhwN3EpJl0oYDZfYykkLypKTChMLV4oXSR3SU1gZFB0T2RHQSxVMzp3Mk0tMDxxLV1MXz9eKTF2dycuLE1Sc3FWci5MO2FOJiMvRWdKKVBCY1stZj4rV29tWDJ1N2xxTTJpRXVtTVRjc0Y/LWFUPVotOTdVRW5YZ2xFbjFLLWJuRU9gZ3VGdChjJT07QW1fUXNAakxvb0kmTlg7XTAjajQjRjE0O2dsOC1HUXBnd2hycTgnPWxfZi1iNDknVU9xa0x1Ny0jI29EWTJMKHRlK01jaCZnTFl0SixNRXRKZkxoJ3gnTT0kQ1MtWlolUF04Ylo+I1M/WVkjJVEmcSczXkZ3Jj9EKVVETnJvY00zQTc2Ly9vTD8jaDdnbDg1W3FXL05ET2slMTZpajsrOjFhJ2lOSWRiLW91OC5QKncsdjUjRUkkVFdTPlBvdC1SKkgnLVNFcEE6ZylmK08kJSVga0EjRz04Uk1tRzEmT2A+dG84YkNdVCYkLG4uTG9PPjI5c3AzZHQtNTJVJVZNI3E3J0RIcGcrI1o5JUhbSzxMJWEyRS1ncldWTTNAMj0tazIydExdNCQjIzZXZSc4VUpDS0VbZF89JXdJOyc2WC1Hc0xYNGpeU2dKJCMjUip3LHZQM3dLI2lpVyYjKmheRCZSP2pwNysvdSYjKEFQIyNYVThjJGZTWVctSjk1Xy1EcFtnOXdjTyYjTS1oMU9jSmxjLSp2cHcweFVYJiNPUUZLTlhAUUknSW9QcDduYixRVS8vTVEmWkRrS1ApWDxXU1ZMKDY4dVZsJiNjJ1swIyhzMVgmeG0kWSVCNypLOmVEQTMyM2o5OThHWGJBI3B3TXMtamdEJDlRSVNCLUFfKGFONHhvRk1eQEM1OEQwK1ErcTNuMCMzVTFJbkRqRjY4Mi1Tak1YSkspKGgkaHh1YV9LXXVsOTIlJ0JPVSYjQlJSaC1zbGc4S0RscjolTDcxS2E6LkE7JVlVTGpEUG1MPExZczhpI1h3Sk9ZYUtQS2MxaDonOUtlLGcpYiksNzg9STM5Qjt4aVkkYmdHdy0mLlppOUluWER1WWElRypmMkJxN21uOV4jcDF2diUjKFdpLTsvWjVobzsjMjo7JWQmI3g5djY4QzVnP250WDBYKXBUYDslcEIzcTdtZ0dOKTMlKFA4blRkNUw3R2VBLUdMQCslSjN1MjooWWY+ZXRgZTspZiNLbTgmK0RDJEk0Nj4jS3JdXXUtWz05OXR0czEucWIjcTcyZzFXSk84MXErZU4nMDMnZU0+JjFYeFktY2FFbk9qJTJuOCkpLD9JTFI1Xi5JYm48LVgtTXE3W2E4MkxxOkYmI2NlK1M5d3NDSyp4YDU2OUU4ZXcnSGVdaDpzSVsyTE0kW2d1a2EzWlJkNjp0JUlHOjskJVlpSjpOcT0/ZUF3Oy86bm5EcTAoQ1ljTXBHKXFMTjQkIyMmSjxqJFVwSzxRNGExXU11cFdeLXNqXyQlW0hLJSdGIyMjI1FSWko6OlkzRUdsNCdAJUZraUFPZyNwWyMjT2BndWtUZkJIYWdMPExIdyVxJk9WMCMjRj02LzpjaEltMEBlQ1A4WF06a0ZJJWhsOGhnT0BSY0JoUy1AUWIkJSttPWhQRExnKiVLOGxuKHdjZjMvJ0RXLSQubFI/bltuQ0gtZVhPT05USmxoOi5SWUYlMydwNnNxOlVJTUE5NDUmXkhGUzg3QCRFUDJpRzwtbENPJCVjYHVLR0QzckMkeDBCTDhhRm4tLWBrZSUjSE1QJ3ZoMS9SJk9fSjkndW0sLjx0eFtAJXdzSmsmYlVUMmAwdU12N2dnI3FwL2lqLkw1NidobDsuczVDVXJ4ak9NNy0jIy5sK0F1J0EmTzotVDcyTF1QYCY9O2N0cCdYU2NYKnJVLj4tWFR0LCVPVlU0KVMxK1ItI2RnMC9Obj9LdTFeMGYkQipQOlJvd3dtLWAwUEtqWURETSczXWQzOVZaSEVsNCwuaiddUGstTS5oXiY6MEZBQ20kbWFxLSZzZ3cwdDcvNiheeHRrJUx1SDg4RmotZWttPkdBI18+NTY4eDYoT0ZSbC1JWnBgJmIsX1AnJE08Sm5xNzlWc0pXL21XUypQVWlxNzY7XS9OTV8+aExieGZjJG1qYCxPOyYlVzJtYFpoOi8pVWV0dzphSiVdSzloOlRjRl11Xy1TajksVkszTS4qJyYwRFtDYV1KOWdwOCxrQVddJSg/QSVSJGY8LT5adHMnXmtuPS1eQGM0JS1wWTZxSSVKJTFJR3hmTFU5Q1A4Y2JQbFh2KTtDPWIpLDwybU92UDh1cCxVVmYzODM5YWNBV0FXLVc/I2FvL14jJUtZbzhmUlVMTmQyLj4lbV1VSzpuJXIkJ3N3XUo7NXBBb09fIzJtTzNuLCc9SDUoZXRIZypgK1JMZ3Y+PTRVOGd1RCRJJUQ6Vz4tcjVWKiVqKlc6S3Zlai5McCQ8TS1TR1onOitRX2srdXZPU0xpRW8oPGFEL0s8Q0NjYCdMeD4nPzsrK08nPigpakxSLV51NjhQSG04WkZXZStlajhoOjlyNkwqMC8vYyZpSCZSOHBSYkEjS2ptJXVwVjFnOmFfI1VyN0Z1QSModFJoIy5ZNUsrQD8zPC04bTAkUEVuO0o6cmg2P0k2dUc8LWB3TVUnaXJjcDBMYUVfT3RsTWImMSM2VC4jRkRLdSMxTHcldSUrR00rWCdlP1lMZmpNW1ZPME1idUZwNzs+USYjV0lvKTBARiVxN2MjNFhBWE4tVSZWQjxIRkYqcUwoJC9WLDsoa1haZWpXT2A8WzU/P2V3WSgqOT0ld0RjOyx1PCc5dDNXLShIMXRoMytHXXVjUV1rTHM3ZGYoJC8qSkxdQCp0N0J1X0czXzdtcDc8aWFRak9ALmtMZzt4M0IwbHFwN0hmLF5aZTctIyNAL2M1OE1vKDM7a25wMCUpQTc/LVcrZUknbzgpYjxuS253J0hvOEM9WT5wcUI+MGllJmpoWls/aUxSQEBfQXZBLWlRQyg9a3NSWlJWcDdgLj0rTnBCQyVyaCYzXVI6OFhEbUU1XlY4Tyh4PDxhRy8xTiQjRlgkMFY1WTZ4J2FFckkzSSQ3eCVFYHY8LUJZLCklLT9Qc2YqbD8lQzMubU0oPS9NMDpKeEcnPzdXaEglbydhPC04MGcwTkJ4b08oR0g8ZE1dbi4rJXFAakg/Zi5Vc0oyR2dzJjQ8LWU0NyZLbCtmLy85QGBiKz8uVGVOXyZCOFNzP3Y7XlRyaztmI1l2SmtsJnckXT4tK2s/Jyg8Uzo2OHRxKldvRGZadSc7bU0/OFhbbWE4VyUqYC09O0QuKG5jNy87KWc6VDE9XkokJkJSVigtbFRtTkI2eHFCW0AwKm8uZXJNKjxTV0ZddTI9c3QtKig2dj5eXShILmFSRVpTaSwjMTpbSVhhWkZPbTwtdWkjcVVxMiQjI1JpO3U3NU9LIyhSdGFXLUstRmBTK2NGXXVOYC1LTVElclAvWHJpLkxSY0IjIz1ZTDNCZ00vM01EP0BmJjEnQlctKUp1PEwyNWdsOHVoVm0xaEwkIyMqOCMjIydBMy9Ma0tXKyhecldYPzVXXzhnKWEobSZLOFA+I2JtbVdDTWtrJiNUUmBDLDVkPmcpRjt0LDQ6QF9sOEcvNWg0dlVkJSYlOTUwOlZYRCdRZFdvWS1GJEJ0VXdtZmUkWXFMJzgoUFdYKFA/XkBQbzMkIyNgTVNzP0RXQlovUz4rNCU+ZlgsVld2L3cnS0RgTFA1SWJIO3JUVj5uM2NFSzhVI2JYXWwtL1YrXmxqMzt2bE1iJls1WVE4I3Bla1g5SlAzWFVDNzJMLCw/K05pJmNvN0Fwbk8qNU5LLCgoVy1pOiQsa3AnVURBTyhHMFNxN01WakpzYkl1KSdaLCpbPmJyNWZYXjpGUEFXci1tMktnTDxMVU4wOThrVEYmI2x2bzU4PS92akRvOy47KUthKmhMUiMvaz1yS2J4dVZgPlFfbk42Jzh1VEcmIzFUNWcpdUx2Ojg3M1VwVExnSCsjRmdwSCdfbzE3ODBQaDhLbXhRSjgjSDcyTDRANzY4QFRtJlFoNENCLzVPdm1BJixRJlFiVW9pJGFfJTNNMDFIKTR4N0leJktRVmd0Rm5WKztbUGM+W200ay8vLF0xPyNgVllbSnIqMyYmc2xSZkxpVlpKOl0/PUszU3c9WyQ9dVJCPzN4azQ4QGFlZzxaJzwkIzRIKTYsPmUwalQ2J04jKHElLk89PzJTXXUqKG08LVY4SicoMSlHXVs2OGhXJDUncVtHQyY1amBURT9tJ2VzRkdOUk0paixmZlo/LXF4ODstPmc0dCo6Q0lQL1tRYXA3LzknIygxc2FvN3ctLnFOVWRrSil0Q0YmI0JeO3hHdm4ycjlGRVBGRkZjTEAuaUZOa1R2ZSRtJSNRdlFTOFVAKTJaKzNLOkFLTTVpc1o4OCtkS1EpVzY+SiVDTDxLRT5gLmQqKEJgLW44RDlvSzxVcF1jJFgkKCwpTThadDcvW3Jka3FUZ2wtMGN1R012Jz8+LVhWMXFbJy01aydjQVo2OWU7RF8/JFpQUCZzXis3XSkkKiQjQFFZaTksNVAmIzlyKyQlQ0U9Njg+SzhyMD1kU0MlJShAcDcubTdqaWxRMDInMC1WV0FnPGEvJyczdS49NEwkWSk2ay9LOl9bMz0manZMPEwwQy8yJ3Y6XjstRElCVyxCNEU2ODprWjslPzgoUThCSD1rTzY1Qlc/eFNHJiNAdVUsRFMqLD8uKyhvKCMxdkNTOCNDSEY+VGxHVydiKVRxN1ZUOXFeKl4kJC46Jk5AQCQmKVdIdFBtKjVfck8wJmUlSyYjLTMwaihFNCMnWmIuby8oVHBtJD5LJ2ZAW1B2RmwsaGZJTlROVTZ1JzBwYW83JVhVcDldNS4+JWhgOF89VllieHVlbC5OVFNzSmZMYWNGdTNCJ2xRU3UvbTYtT3FlbThUK29FLS0kMGEva111ajlFd3NHPiV2ZVIqaHZeQkZwUWo6SycjU0osc0ItJyNdKGouTGc5MnJUdy0qbiVALzszOXJySkYsbCNxViVPcnRCZUM2Lyw7cUIzZWJOV1s/LEhxajJMLjFOUCZHalVSPTFEOFFhUzNVcCZAKjl3UD8rbG83Yj9AJSdrNGBwMFokMjIlSzMraUNaaj9YSk40Tm0mK1lGXXVALVckVSVWRVEvLCw+PiMpRDxoI2ApaDA6PFE2OTA5dWErJlZVJW4yOmNHM0ZKLSVAQmotRGdMcmBIdyZIQUtqS2pzZUs8L3hLVCopQixOOVgzXWtyYzEydCdwZ1RWKEx2LXRMW3hnXyU9TV9xN2FeeD83VWJkPiMlOGNZI1laPz0sYFdkeHUvYWUmI3c2KVI4OXRJIzZAcycoNkJmN2EmP1M9XlpJX2tTJmFpYCY9dEU3MkxfRCw7XlIpN1skczxFaCNjJilxLk1YSSUjdjlST2E1RlpPJXNGN3E3TndiJiNwdFVKOmFxSmUkU2w2OCUuRCMjI0VDPjw/LWFGJiNSTlF2Pm84bEtOJTUvJCh2ZGZxNytlYkEjdTFwXW92VUtXJlklcV0nPiQxQC1beGZuJDdaVHA3bU0sRyxLbzdhJkd1JUdbUk14SnNbME1NJXdjaS5MRkRLKSg8Y2BROE4pakVJRiorP1AyYThnJSkkcV1vMmFIOEMmPFNpYkMvcSwoZTp2Oy1iIzZbJE50RFo4NEplMktOdkIjJFA1P3RRM250KDBkPWouTFFmLi9MbDMzKyg7cTNMLXc9OGRYJCNXRiZ1SUpALWJmST4lOl9pMkI1Q3NSOCY5WiYjPW1QRW5tMGZgPCZjKVFMNXVKIyV1JWxKaitELXI7Qm9GJiM0RG9TOTdoNWcpRSNvOiZTNHdlREYsOV5Ib2VgaCpMK19hKk5yTFctMXBHXyYyVWRCODZlJUIvOj0+KU40eGVXLip3ZnQtOyQnNTgtRVNxcjxiP1VJKF8lQFtQNDY+I1VgJzZBUV1tJjYvYFo+I1M/WVkjVmM7cjdVMiYzMjZkPXcmSCMjIyM/VFpgKjQ/Ji5NSz9MUDhWeGc+JFtRWGMlUUp2OTIuKERiKkIpZ2IqQk05ZE0qaEpNQW8qYyYjYjB2PVBqZXJdJGdHJkpYRGYtPidTdHZVNzUwNWw5JEFGdmdZUkleJjxeYjY4P2ojcTlRWDRTTSdSTyMmc0wxSU0uckpmTFVBajIyMV1kIyNEVz1tODN1NTsnYll4LCpTbDBoTChXOzskZG9CJk8vVFE6KFpeeEJkTGpMPExuaTsnJ1guYCQjOCsxR0Q6ayRZVVdzYm44b2doNnJ4WjJaOV0lbmQrPlYjKjhVXzcyTGgrMlE4Q2owaTo2aHAmJEMvOnAoSEs+VDhZW2dIUTRgNCknJEFiKE5vZiVWJzhoTCYjPE5FZHRnKG4nPVMxQShRMS9JJjQoWyVkTWAsSXUnMTpfaEw+U2ZEMDcmNkQ8ZnA4ZEhNNy9nK3RsUE45SipyS2FQY3QmPyd1QkNlbV5qbiU5X0spPCxDNUszcz01ZyZHbUpiKltTWXE3SztUUkxHQ3NNLSQkO1MlOllAcjdBSzBwcHJwTDxMcmgscTdlLyVLV0s6NTBJXittJ3ZpYDM/JVpwKzwtZCskTC1TdjpALm8xOW4kczAmMzk7a247UyVCU3EqJDNXb0pTQ0x3ZVZbYVonTVFJak88NztYLVg7JitkTUx2dSNeVXNHRUM5V0VjW1god0k3IzIuKEYwalYqZVpmPC1RdjNKLWMrSjVBbHJCIyRwKEg2OEx2RUEncTNuMCNtLFtgKjhGdClGY1lnRXVkXUNXZm02OCwoYUxBJEBFRlRnTFhvQnEvVVBscDc6ZFsvO3JfaXg9OlRGYFM1SC1iPExJJkhZKEs9aCMpXUxrJEsxNGxWZm06eCRIPDNeUWw8TWAkT2hhcEJua3VwJ0QjTCRQYl9gTipnXTJlO1gvRHRnLGJzaiZLIzJbLTppWXInX3dnSClOVUlSOGExbiNTP1llaidoOF41OFViWmQrXkZLRCpUQDs2QTdhUUNbSzhkLSh2NkdJJHg6VDwmJ0dwNVVmPkBNLipKOjskLXJ2MjknTV04cU12LXRMcCwnODg2aWFDPUhiKllKb0tKLChqJUs9SGBLLnY5SGdncUJJaVp1J1F2QlQuIz0pMHVrcnVWJi4pMz0oXjFgbypQajQ8LTxhTigoXjcoJyNaMHdLIzVHWEA3dV1bYCpTXjQzOTMzQTRybF1bYCpPNENnTEVsXXYkMVEzQWVGMzdkYlhrLC4pdmojeCdkYDtxZ2JRUiVGVywyKD9MTz1zJVNjNjglTlAnIyNBb3RsOHg9QkUjajFVRChbMyRNKF1VSTJMWDNScEtOQDsvI2YnZi8mX210JkYpWGRGPDl0NClRYS4qa1RMd1EnKFRUQjkueEgnPiNNSitnTHE5LSMjQEh1WlBOMF11Omg3LlQuLkc6OyQvVXNqKFQ3YFE4dFQ3MkxuWWw8LXF4ODstSFY3US0mWGR4JTFhLGhDPTB1K0hsc1Y+bnVJUUwtNTxOPylOQlMpUU4qX0ksPyYpMidJTSVMM0kpWCgoZS9kbDImOCc8TTpeI00qUStbVC5YcmkuTFlTM3YlZkZgNjhoO2ItWFsvRW4nQ1IucTdFKXAnL2tsZTJITSx1O14lT0tDLU4rTGwlRjlDRjxOZideI3QyTCw7MjdXOjBPQDYjI1U2Vzc6JHJKZkxXSGokIyl3b3FCZWZJWi5QSzxiKnQ3ZWQ7cCpfbTs0RXhLI2hAJl0+Xz5Aa1hRdE1hY2ZELm0tVkFiODtJUmVNMyR3ZjAnJ2hyYSpzbzU2OCdJcCZ2UnM4NDknTVJZU3AlOnQ6aDVxU2d3cEVyJEI+USw7cyhDIyQpYHN2UXVGJCMjLUQsIyMsZzY4QDJbVDsuWFNkTjlRZSlycHQuX0stIzV3RilzUCcjI3AjQzBjJS1HYiVoZCs8LWonQWkqeCYmSE1rVF1DJ09TbCMjNVJHW0pYYUhOO2QndUEjeC5fVTsuYFBVQChaM2R0NHIxNTJAOnYsJ1IuU2ondyMwPC07a1BJKUZmSiYjQVlKJiMvLyk+LWs9bT0qWG5LJD49KTcyTF0wSSU+Lkc2OTBhOiQjIzwsKTs/OzcyIz94OStkO15WJzk7allAOyliciNxXllRcHg6WCNUZSRaXic9LT1iR2hMZjpENiZiTndaOS1aRCNuXjlIaExNcjVHOyddZCY2J3dZbVRGbUw8TEQpRl4lW3RDJzg7KzlFI0MkZyUjNVk+cTl3ST5QKDltSVs+a0MtZWtMQy9SJkNIK3MnQjtLLU02JEVCJWlzMDA6K0E0Wzd4a3MuTHJOazAmRSl3SUxZRkAyTCcwTmIkK3B2PCgyLjc2OC9GclkmaCReM2kmQCtHJUpUJzwtLHZgMztfKUk5TV5BRV1DTj9DbDJBWmcrJTRpVHBUMzxuLSYlSCViPEZEajJNPGhIPSZFaDwyTGVuJGIqYVRYPS04UXhOKWsxMUlNMWNeaiU5czxMPE5GU28pQj8rPC0oR3hzRixeLUVoQCQ0ZFhoTiQrI3J4SzgnamUnRDdrYGU7KTJwWXdQQSdfcDkmQF4xOG1sMV5bQGc0dCpbSk9hKls9UXA3KHFKX29PTF4oJzdmQiZIcS06c2Ysc05qOHhxXj4kVTRPXUdLeCdtOSliQHA3WXN2SzN3XllSLUNkUSo6SXI8KCR1JikjKCY/TDlSZzNIKTRmaUVwXmlJOU84S25UaixdSD9EKnI3J007UHdaOUswRV5rJi1jcEk7LnAvNl92d29GTVY8LT4jJVhpLkx4Vm5yVSg0JjgvUCs6aExTS2okI1UlXTQ5dCdJOnJnTWknRkxAYTowWS11QVszOScsKHZibWEqaFUlPC1TUkZgVHQ6NTQyUl9WViRwQFtwOERWW0EsPzE4MzlGV2RGPFRkZEY8OUFoLTYmOXRXb0RsaF0mMVNwR01xPlRpMU8qSCYjKEFMOFtfUCUuTT52Xi0pKXFPVCpGNUNxMGBZZSUrJEI2aTo3QDBJWDxOK1QrME1sTUJQUSpWaj5Tc0Q8VTRKSFk4a0QyKTJmVS9NIyRlLilUNCxfPThoTGltWyYpOz9Va0snLXg/Jyg6c2lJZkw8JHBGTWBpPD8lVyhtR0RITSU+aVdQLCMjUGAlL0w8ZVhpOkBaOUMuN289QChwWGRBTy9OTFE4bFBsK0hQT1FhOHdEOD1eR2xQYThUS0kxQ2poc0NUU0xKTScvV2w+LVMocXclc2YvQCUjQjY7L1U3S111WmJpXk9jXjJuPGJoUG1Va013PiV0PCknbUVWRScnbmBXbkpyYSReVEt2WDVCPjtfYVNFSycsKGh3YTA6aTRHPy5CY2kuKFhbP2IqKCQsPS1uPC5RJWAoWD0/K0BBbSpKczAmPTNiaDhLXW1MPExvTnMnNiwnODVgMD90LydfVTU5QF1kZEY8I0xkRjxlV2RGPE91Ti80NXJZPC1MQCYjK2ZtPjY5PUxiLE9jWlYvKTtUVG04Vkk7PyVPdEo8KGI0bXE3TTY6dT9LUmRGPGdSQDJMPUZOVS08YlsoOWMvTUwzbTtaWyRvRjNnKUdBV3FwQVJjPTxST3U3Y0w1bDstW0FdJS8rZnNkO2wjU2FmVC9mKlddMD1PJyQoVGI8WykqQGU3NzVSLTpZb2IlZyo+bCo6eFA/WWIuNSkld19JPzd1azVKQytGUyhtI2knay4nYTBpKTk8N2InZnMnNTlocSQqNVVodiMjcGleOCtoSUVCRmBudm9gOydsMC5eUzE8LXdVSzIvQ29oNThLS2hMak09U08qcmZPYCtxQ2BXLU9uLj1BSjU2Pj5pMkAyTEg2QTomNXFgPzlJM0BAJzA0JnAyL0xWYSpULTQ8LWkzO005VXZaZCtONz5iKmVJd2c6Q0MpYzw+bk8mIzxJR2U7X18udGhqWmw8JXcoV2syeG1wNFFASSNJOSxERl11Ny1QPS4tXzpZSl1hU0BWPzYqQygpZE9wNzpXTCxiJjNSZy8uY21NOSZyXj4kKD4uWi1JJkooUTBIZDVRJTdDby1iYC1jPE4oNnJAaXArQXVySzxtODZRSXRoKiN2Oy1PQnFpK0w3d0RFLUlyOEtbJ20rRERTTHdLJi8uPy1WJVVfJTM6cUtOdSRfYipCLWtwN05hRCdRZFdRUEtZcVtAPlApaEk7Kl9GXXVgUmJbLmo4X1EvPCY+dXUrVnNIJHNNOVRBJT8pKHZtSjgwKSxQN0U+KXRqRCUyTD0tdCNmS1slYHY9UTg8RmZOa2dnXm9JYmFoKiM4L1F0JEYmOksqLShOLycrMXZNQix1KCktYS5WVVUqI1tlJWdBQU8oUz5XbEEyKTtTYT5nWG04WUJgMWRASyNuXTc2LWEkVSxtRjxmWF1pZHFkKTwzLF1KN0ptVzRgNl11a3M9NC03MkwoakVrKzpiSjBNXnEtOERtX1o/MG9sUDFDOVNhJkhbZCZjJG9vUVVqXUV4ZCozWk1ALVdHVzIlcycsQi1fTSU+JVVsOiMvJ3hvRk05UVgtJC5RTic+WyUkWiR1RjZwQTZLaTJPNTo4dyp2UDE8LTFgW0csKS1tIz4wYFAmI2ViIy4zaSlydEI2MShvJyQ/WDNCPC9SOTA7ZVpdJU5jcTstVGxdI0Y+MlFmdF5hZV81dEtMOU1VZTliKnNMRVE5NUMmYD1HP0BNaj13aConM0U+PS08KUd0Kkl3KSdRRzpgQEl3T2Y3Jl0xaSdTMDFCK0V2L05hYyM5Uzs9O1lRcGdfNlVgKmtWWTM5eEssWy82QWo3OicxQm0tXzFFWWZhMStvJm80aHA3S05fUShPbElvQFMlO2pWZG4wJzE8VmM1Mj11YDNeby1uMSdnNHY1OEhqJjZfdDckIyM/TSljPCRiZ1FfJ1NZKCgteGtBI1koLHAnSDlySVZZLWIsJyViQ1BGNy5KPFVwXiwoZFUxVlkqNSNXa1RVPmgxOXcsV1FoTEkpM1MjZiQyKGViLGpyKmI7M1Z3XSo3TkglJGM0VnMsZUQ5PlhXOD9OXW8rKCpwZ0MlLzcyTFYtdTxIcCwzQGVeOVVCMUorYWs5LVROL21oS1BnK0FKWWQkTWx2QUZfakNLKi5PLV4oNjNhZE1ULT5XJWlld1M4VzZtMnJ0Q3BvJ1JTMVI4ND1AcGFUS3QpPj0lJjFbKSp2cCd1K3gsVnJ3TjsmXWt1TzlKRGJnPXBPJEoqLmpWZTt1J20wZHI5bCw8KndNSypPZT1nOGxWX0tFQkZrTydvVV1ePVstNzkyI29rLClpXWxSOHFRMm9BOHdjUkNaXjd3L05qaDs/LnN0WD9RMT5TMXE0Qm4kKUsxPC1yR2RPJyRXci5MYy5DRykkLypKTDR0TlIvLFNWTzMsYVV3J0RKTjopU3M7d0duOUEzMmlqdyVGTCtaMEZuLlU5O3JlU3EpYm1JMzJVPT01QUx1RyYjVmYxMzk4L3BWbzEqYy0oYVkxNjhvPGBKc1Niay0sMU47JD4wOk9VYXMoMzo4Wjk3MkxTZkY4ZWI9Yy07PlNQdzcuNmhuM21gOV5Ya24oci5xU1swO1QlJlFjPStTVFJ4WCdxMUJOazMmKmV1MjsmOHEkJng+USNRN15UZis2PChkJVpWbWoyYkRpJS4zTDJuKzRXJyRQaURERylnLHIlKz8sJEA/dW91NXRTZTJhTl9BUVUqPGhgZS1HSTcpP09LMkEuZDdfYyk/d1E1QVNAREwzciM3ZlNrZ2w2LSsrRDonQSx1cTdTdmxCJHBjcEgncTNuMCNfJWRZI3hDcHItbDxGME5SQC0jI0ZFVjZOVEY2IyMkbDg0TjF3P0FPPidJQU9VUlEjI1ZeRnYtWEZiR003RmwoTjwzRGhMR0YlcS4xckMkIzpUX18mUGk2OCUweGlfJltxRkooNzdqXyZKV29GLlY3MzUmVCxbUio6eEZSKks1Pj4jYGJXLT80TmVfJjZOZV8mNk5lXyZuYGtyLSNHSmNNNlg7dU02WDt1TSguYS4uXjJUa0wlb1IoIzt1LlQlZkFyJTR0SjgmPjwxPUdIWl8rbTkvI0gxRl5SI1NDIypOPUJBOShEP3ZbVWlGWT4+XjhwLEtLRi5XXUwyOXVMa0xsdS8rNFQ8WG9JQiZoeD1UMVBjRGFCJjtISCstQUZyPyhtOUhaVilGS1M4SkN3O1NEPTZbXi9EWlVMYEVVRGZdR0dsRyY+dyQpRi4vXm4zK3JsbytEQjs1c0lZR05rK2kxdC02OUpnLS0wcGFvN1NtI0spcGRIVyY7THVETkhASD4jL1gtVEkoO1A+IyxHYz4jMFN1PiM0YDE/IzhsQz8jPHhVPyNALmk/I0Q6JUAjSEY3QCNMUklAI1BfW0AjVGtuQCNYdypBI10tPUEjYTlPQSNkPEYmIyo7RyMjLkdZIyMyU2wjIzZgKCQjOmw6JCM+eEwkI0IuYCQjRjpyJCNKRi4lI05SQCUjUl9SJSNWa2UlI1p3dyUjXy00JiMzXlJoJVNmbHItaydNUy5vPy41L3NXZWwvd3BFTTAlMycvMSlLXmYxLWQ+RzIxJnYoMzU+VmAzOVY3QTQ9b254NEExT1k1RUkwOzZJYmdyNk0kSFM3UTwpNThDNXcsO1dvQSojWyVUKiNgMWcqI2Q9IysjaEk1KyNsVUcrI3BiWSsjdG5sKyN4JCksIyYxOywjKj1NLCMuSWAsIzJVciwjNmIuLSM7d1tII2lRdEEjbV4wQiNxakJCI3V2VEIjIy1oQiMnOSRDIytFNkMjL1FIQyMzXlpDIzdqbUMjO3YpRCM/LDxEI0M4TkQjR0RhRCNLUHNEI09dL0UjZzFBNSNLQSoxI2dDMTcjTUdkOyM4KDAyI0wtZDMjcldNNCNIZ2ExIyw8dzAjVC5qPCNPIycyI0NZTjEjcWFeOiNfNG0zI29ALz0jZUc4PSN0OEo1I2ArNzgjNHVJLSNtM0IyI1NCWzgjUTBAOCNpWyo5I2lPbjgjMU5tOyNec045I3FoPDkjOj14LSNQO0syIyQlWDkjYkMrLiNSZzs8I21OPS4jTVRGLiNSWk8uIzI/KTQjWSMoLyNbKTEvI2I7TC8jZEFVLyMwU3Y7I2xZJDAjbmAtMCNzZjYwIyhGMjQjd3JIMCMlL2UwI1RtRDwjJUpTTUZvdmU6Q1RCRVhJOjxlaDJnKUIsM2gyXkczaTsjZDNqRD4pNGtNWUQ0bFZ1YDRtYDomNW5pVUE1QChBNUJBMV1QQkI6eGxCQ0M9MkNETFhNQ0VVdGlDZiYwZzIndE4/UEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQLXFla0NgLjlrRWdeK0Yka3dWaUZKVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVvLF48LTI4WkknTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cDs3cS0jbExZSTp4dkQ9IwBB9v8ACwpAQAAAQEEAAJhBAEGKgAELugFQQQAAAAAAAOBAAACAQQAAgD8AAABBAAD4QQAAAAAAALhBAAC4QQAAMEEAADBBAACoQQAAAAAAABBBAAC4QQAAgEAAADBBAABcQgAAkEEAALhBAAAQQQAAMEEAAIBAAACSQgAAAAAAAIhBAACIQQAAAEEAAABBAABcQgAAAAAAAIhBAACIQQAAAEEAAABBAAC2QgAAAAAAAIhBAACwQQAAoEAAAAAAIAD/AAAw/zDwMf8xAP/v/wBOr58AQdCBAQuXJyAA/wAAMP8w8DH/MQD/7/8AAAEAAgAEAAEAAQABAAEAAgABAAMAAgABAAIAAgABAAEAAQABAAEABQACAAEAAgADAAMAAwACAAIABAABAAEAAQACAAEABQACAAMAAQACAAEAAgABAAEAAgABAAEAAgACAAEABAABAAEAAQABAAUACgABAAIAEwACAAEAAgABAAIAAQACAAEAAgABAAUAAQAGAAMAAgABAAIAAgABAAEAAQAEAAgABQABAAEABAABAAEAAwABAAIAAQAFAAEAAgABAAEAAQAKAAEAAQAFAAIABAAGAAEABAACAAIAAgAMAAIAAQABAAYAAQABAAEABAABAAEABAAGAAUAAQAEAAIAAgAEAAoABwABAAEABAACAAQAAgABAAQAAwAGAAoADAAFAAcAAgAOAAIACQABAAEABgAHAAoABAAHAA0AAQAFAAQACAAEAAEAAQACABwABQAGAAEAAQAFAAIABQAUAAIAAgAJAAgACwACAAkAEQABAAgABgAIABsABAAGAAkAFAALABsABgBEAAIAAgABAAEAAQACAAEAAgACAAcABgALAAMAAwABAAEAAwABAAIAAQABAAEAAQABAAMAAQABAAgAAwAEAAEABQAHAAIAAQAEAAQACAAEAAIAAQACAAEAAQAEAAUABgADAAYAAgAMAAMAAQADAAkAAgAEAAMABAABAAUAAwADAAEAAwAHAAEABQABAAEAAQABAAIAAwAEAAUAAgADAAIABgABAAEAAgABAAcAAQAHAAMABAAFAA8AAgACAAEABQADABYAEwACAAEAAQABAAEAAgAFAAEAAQABAAYAAQABAAwACAACAAkAEgAWAAQAAQABAAUAAQAQAAEAAgAHAAoADwABAAEABgACAAQAAQACAAQAAQAGAAEAAQADAAIABAABAAYABAAFAAEAAgABAAEAAgABAAoAAwABAAMAAgABAAkAAwACAAUABwACABMABAADAAYAAQABAAEAAQABAAQAAwACAAEAAQABAAIABQADAAEAAQABAAIAAgABAAEAAgABAAEAAgABAAMAAQABAAEAAwAHAAEABAABAAEAAgABAAEAAgABAAIABAAEAAMACAABAAEAAQACAAEAAwAFAAEAAwABAAMABAAGAAIAAgAOAAQABgAGAAsACQABAA8AAwABABwABQACAAUABQADAAEAAwAEAAUABAAGAA4AAwACAAMABQAVAAIABwAUAAoAAQACABMAAgAEABwAHAACAAMAAgABAA4ABAABABoAHAAqAAwAKAADADQATwAFAA4AEQADAAIAAgALAAMABAAGAAMAAQAIAAIAFwAEAAUACAAKAAQAAgAHAAMABQABAAEABgADAAEAAgACAAIABQAcAAEAAQAHAAcAFAAFAAMAHQADABEAGgABAAgABAAbAAMABgALABcABQADAAQABgANABgAEAAGAAUACgAZACMABwADAAIAAwADAA4AAwAGAAIABgABAAQAAgADAAgAAgABAAEAAwADAAMABAABAAEADQACAAIABAAFAAIAAQAOAA4AAQACAAIAAQAEAAUAAgADAAEADgADAAwAAwARAAIAEAAFAAEAAgABAAgACQADABMABAACAAIABAARABkAFQAUABwASwABAAoAHQBnAAQAAQACAAEAAQAEAAIABAABAAIAAwAYAAIAAgACAAEAAQACAAEAAwAIAAEAAQABAAIAAQABAAMAAQABAAEABgABAAUAAwABAAEAAQADAAQAAQABAAUAAgABAAUABgANAAkAEAABAAEAAQABAAMAAgADAAIABAAFAAIABQACAAIAAwAHAA0ABwACAAIAAQABAAEAAQACAAMAAwACAAEABgAEAAkAAgABAA4AAgAOAAIAAQASAAMABAAOAAQACwApAA8AFwAPABcAsAABAAMABAABAAEAAQABAAUAAwABAAIAAwAHAAMAAQABAAIAAQACAAQABAAGAAIABAABAAkABwABAAoABQAIABAAHQABAAEAAgACAAMAAQADAAUAAgAEAAUABAABAAEAAgACAAMAAwAHAAEABgAKAAEAEQABACwABAAGAAIAAQABAAYABQAEAAIACgABAAYACQACAAgAAQAYAAEAAgANAAcACAAIAAIAAQAEAAEAAwABAAMAAwAFAAIABQAKAAkABAAJAAwAAgABAAYAAQAKAAEAAQAHAAcABAAKAAgAAwABAA0ABAADAAEABgABAAMABQACAAEAAgARABAABQACABAABgABAAQAAgABAAMAAwAGAAgABQALAAsAAQADAAMAAgAEAAYACgAJAAUABwAEAAcABAAHAAEAAQAEAAIAAQADAAYACAAHAAEABgALAAUABQADABgACQAEAAIABwANAAUAAQAIAFIAEAA9AAEAAQABAAQAAgACABAACgADAAgAAQABAAYABAACAAEAAwABAAEAAQAEAAMACAAEAAIAAgABAAEAAQABAAEABgADAAUAAQABAAQABgAJAAIAAQABAAEAAgABAAcAAgABAAYAAQAFAAQABAADAAEACAABAAMAAwABAAMAAgACAAIAAgADAAEABgABAAIAAQACAAEAAwAHAAEACAACAAEAAgABAAUAAgAFAAMABQAKAAEAAgABAAEAAwACAAUACwADAAkAAwAFAAEAAQAFAAkAAQACAAEABQAHAAkACQAIAAEAAwADAAMABgAIAAIAAwACAAEAAQAgAAYAAQACAA8ACQADAAcADQABAAMACgANAAIADgABAA0ACgACAAEAAwAKAAQADwACAA8ADwAKAAEAAwAJAAYACQAgABkAGgAvAAcAAwACAAMAAQAGAAMABAADAAIACAAFAAQAAQAJAAQAAgACABMACgAGAAIAAwAIAAEAAgACAAQAAgABAAkABAAEAAQABgAEAAgACQACAAMAAQABAAEAAQADAAUABQABAAMACAAEAAYAAgABAAQADAABAAUAAwAHAA0AAgAFAAgAAQAGAAEAAgAFAA4ABgABAAUAAgAEAAgADwAFAAEAFwAGAD4AAgAKAAEAAQAIAAEAAgACAAoABAACAAIACQACAAEAAQADAAIAAwABAAUAAwADAAIAAQADAAgAAQABAAEACwADAAEAAQAEAAMABwABAA4AAQACAAMADAAFAAIABQABAAYABwAFAAcADgALAAEAAwABAAgACQAMAAIAAQALAAgABAAEAAIABgAKAAkADQABAAEAAwABAAUAAQADAAIABAAEAAEAEgACAAMADgALAAQAHQAEAAIABwABAAMADQAJAAIAAgAFAAMABQAUAAcAEAAIAAUASAAiAAYABAAWAAwADAAcAC0AJAAJAAcAJwAJAL8AAQABAAEABAALAAgABAAJAAIAAwAWAAEAAQABAAEABAARAAEABwAHAAEACwAfAAoAAgAEAAgAAgADAAIAAQAEAAIAEAAEACAAAgADABMADQAEAAkAAQAFAAIADgAIAAEAAQADAAYAEwAGAAUAAQAQAAYAAgAKAAgABQABAAIAAwABAAUABQABAAsABgAGAAEAAwADAAIABgADAAgAAQABAAQACgAHAAUABwAHAAUACAAJAAIAAQADAAQAAQABAAMAAQADAAMAAgAGABAAAQAEAAYAAwABAAoABgABAAMADwACAAkAAgAKABkADQAJABAABgACAAIACgALAAQAAwAJAAEAAgAGAAYABQAEAB4AKAABAAoABwAMAA4AIQAGAAMABgAHAAMAAQADAAEACwAOAAQACQAFAAwACwAxABIAMwAfAIwAHwACAAIAAQAFAAEACAABAAoAAQAEAAQAAwAYAAEACgABAAMABgAGABAAAwAEAAUAAgABAAQAAgA5AAoABgAWAAIAFgADAAcAFgAGAAoACwAkABIAEAAhACQAAgAFAAUAAQABAAEABAAKAAEABAANAAIABwAFAAIACQADAAQAAQAHACsAAwAHAAMACQAOAAcACQABAAsAAQABAAMABwAEABIADQABAA4AAQADAAYACgBJAAIAAgAeAAYAAQALABIAEwANABYAAwAuACoAJQBZAAcAAwAQACIAAgACAAMACQABAAcAAQABAAEAAgACAAQACgAHAAMACgADAAkABQAcAAkAAgAGAA0ABwADAAEAAwAKAAIABwACAAsAAwAGABUANgBVAAIAAQAEAAIAAgABACcAAwAVAAIAAgAFAAEAAQABAAQAAQABAAMABAAPAAEAAwACAAQABAACAAMACAACABQAAQAIAAcADQAEAAEAGgAGAAIACQAiAAQAFQA0AAoABAAEAAEABQAMAAIACwABAAcAAgAeAAwALAACAB4AAQABAAMABgAQAAkAEQAnAFIAAgACABgABwABAAcAAwAQAAkADgAsAAIAAQACAAEAAgADAAUAAgAEAAEABgAHAAUAAwACAAYAAQALAAUACwACAAEAEgATAAgAAQADABgAHQACAAEAAwAFAAIAAgABAA0ABgAFAAEALgALAAMABQABAAEABQAIAAIACgAGAAwABgADAAcACwACAAQAEAANAAIABQABAAEAAgACAAUAAgAcAAUAAgAXAAoACAAEAAQAFgAnAF8AJgAIAA4ACQAFAAEADQAFAAQAAwANAAwACwABAAkAAQAbACUAAgAFAAQABAA/ANMAXwACAAIAAgABAAMABQACAAEAAQACAAIAAQABAAEAAwACAAQAAQACAAEAAQAFAAIAAgABAAEAAgADAAEAAwABAAEAAQADAAEABAACAAEAAwAGAAEAAQADAAcADwAFAAMAAgAFAAMACQALAAQAAgAWAAEABgADAAgABwABAAQAHAAEABAAAwADABkABAAEABsAGwABAAQAAQACAAIABwABAAMABQACABwACAACAA4AAQAIAAYAEAAZAAMAAwADAA4AAwADAAEAAQACAAEABAAGAAMACAAEAAEAAQABAAIAAwAGAAoABgACAAMAEgADAAIABQAFAAQAAwABAAUAAgAFAAQAFwAHAAYADAAGAAQAEQALAAkABQABAAEACgAFAAwAAQABAAsAGgAhAAcAAwAGAAEAEQAHAAEABQAMAAEACwACAAQAAQAIAA4AEQAXAAEAAgABAAcACAAQAAsACQAGAAUAAgAGAAQAEAACAAgADgABAAsACAAJAAEAAQABAAkAGQAEAAsAEwAHAAIADwACAAwACAA0AAcABQATAAIAEAAEACQACAABABAACAAYABoABAAGAAIACQAFAAQAJAADABwADAAZAA8AJQAbABEADAA7ACYABQAgAH8AAQACAAkAEQAOAAQAAQACAAEAAQAIAAsAMgAEAA4AAgATABAABAARAAUABAAFABoADAAtAAIAFwAtAGgAHgAMAAgAAwAKAAIAAgADAAMAAQAEABQABwACAAkABgAPAAIAFAABAAMAEAAEAAsADwAGAIYAAgAFADsAAQACAAIAAgABAAkAEQADABoAiQAKANMAOwABAAIABAABAAQAAQABAAEAAgAGAAIAAwABAAEAAgADAAIAAwABAAMABAAEAAIAAwADAAEABAADAAEABwACAAIAAwABAAIAAQADAAMAAwACAAIAAwACAAEAAwAOAAYAAQADAAIACQAGAA8AGwAJACIAkQABAAEAAgABAAEAAQABAAIAAQABAAEAAQACAAIAAgADAAEAAgABAAEAAQACAAMABQAIAAMABQACAAQAAQADAAIAAgACAAwABAABAAEAAQAKAAQABQABABQABAAQAAEADwAJAAUADAACAAkAAgAFAAQAAgAaABMABwABABoABAAeAAwADwAqAAEABgAIAKwAAQABAAQAAgABAAEACwACAAIABAACAAEAAgABAAoACAABAAIAAQAEAAUAAQACAAUAAQAIAAQAAQADAAQAAgABAAYAAgABAAMABAABAAIAAQABAAEAAQAMAAUABwACAAQAAwABAAEAAQADAAMABgABAAIAAgADAAMAAwACAAEAAgAMAA4ACwAGAAYABAAMAAIACAABAAcACgABACMABwAEAA0ADwAEAAMAFwAVABwANAAFABoABQAGAAEABwAKAAIABwA1AAMAAgABAAEAAQACAKMAFAIBAAoACwABAAMAAwAEAAgAAgAIAAYAAgACABcAFgAEAAIAAgAEAAIAAQADAAEAAwADAAUACQAIAAIAAQACAAgAAQAKAAIADAAVABQADwBpAAIAAwABAAEAAwACAAMAAQABAAIABQABAAQADwALABMAAQABAAEAAQAFAAQABQABAAEAAgAFAAMABQAMAAEAAgAFAAEACwABAAEADwAJAAEABAAFAAMAGgAIAAIAAQADAAEAAQAPABMAAgAMAAEAAgAFAAIABwACABMAAgAUAAYAGgAHAAUAAgACAAcAIgAVAA0ARgACAIAAAQABAAIAAQABAAIAAQABAAMAAgACAAIADwABAAQAAQADAAQAKgAKAAYAAQAxAFUACAABAAIAAQABAAQABAACAAMABgABAAUABwAEAAMA0wAEAAEAAgABAAIABQABAAIABAACAAIABgAFAAYACgADAAQAMABkAAYAAgAQACgBBQAbAIMBAgACAAMABwAQAAgABQAmAA8AJwAVAAkACgADAAcAOwANABsAFQAvAAUAFQAGAEHyqAELsR4BAAIABAABAAEAAQABAAIAAQAGAAIAAgABAAgABQAHAAsAAQACAAoACgAIAAIABAAUAAIACwAIAAIAAQACAAEABgACAAEABwAFAAMABwABAAEADQAHAAkAAQAEAAYAAQACAAEACgABAAEACQACAAIABAAFAAYADgABAAEACQADABIABQAEAAIAAgAKAAcAAQABAAEAAwACAAQAAwAXAAIACgAMAAIADgACAAQADQABAAYACgADAAEABwANAAYABAANAAUAAgADABEAAgACAAUABwAGAAQAAQAHAA4AEAAGAA0ACQAPAAEAAQAHABAABAAHAAEAEwAJAAIABwAPAAIABgAFAA0AGQAEAA4ADQALABkAAQABAAEAAgABAAIAAgADAAoACwADAAMAAQABAAQABAACAAEABAAJAAEABAADAAUABQACAAcADAALAA8ABwAQAAQABQAQAAIAAQABAAYAAwADAAEAAQACAAcABgAGAAcAAQAEAAcABgABAAEAAgABAAwAAwADAAkABQAIAAEACwABAAIAAwASABQABAABAAMABgABAAcAAwAFAAUABwACAAIADAADAAEABAACAAMAAgADAAsACAAHAAQAEQABAAkAGQABAAEABAACAAIABAABAAIABwABAAEAAQADAAEAAgAGABAAAQACAAEAAQADAAwAFAACAAUAFAAIAAcABgACAAEAAQABAAEABgACAAEAAgAKAAEAAQAGAAEAAwABAAIAAQAEAAEADAAEAAEAAwABAAEAAQABAAEACgAEAAcABQANAAEADwABAAEAHgALAAkAAQAPACYADgABACAAEQAUAAEACQAfAAIAFQAJAAQAMQAWAAIAAQANAAEACwAtACMAKwA3AAwAEwBTAAEAAwACAAMADQACAAEABwADABIAAwANAAgAAQAIABIABQADAAcAGQAYAAkAGAAoAAMAEQAYAAIAAQAGAAIAAwAQAA8ABgAHAAMADAABAAkABwADAAMAAwAPABUABQAQAAQABQAMAAsACwADAAYAAwACAB8AAwACAAEAAQAXAAYABgABAAQAAgAGAAUAAgABAAEAAwADABYAAgAGAAIAAwARAAMAAgAEAAUAAQAJAAUAAQABAAYADwAMAAMAEQACAA4AAgAIAAEAFwAQAAQAAgAXAAgADwAXABQADAAZABMALwALABUAQQAuAAQAAwABAAUABgABAAIABQAaAAIAAQABAAMACwABAAEAAQACAAEAAgADAAEAAQAKAAIAAwABAAEAAQADAAYAAwACAAIABgAGAAkAAgACAAIABgACAAUACgACAAQAAQACAAEAAgACAAMAAQABAAMAAQACAAkAFwAJAAIAAQABAAEAAQAFAAMAAgABAAoACQAGAAEACgACAB8AGQADAAcABQAoAAEADwAGABEABwAbALQAAQADAAIAAgABAAEAAQAGAAMACgAHAAEAAwAGABEACAAGAAIAAgABAAMABQAFAAgAEAAOAA8AAQABAAQAAQACAAEAAQABAAMAAgAHAAUABgACAAUACgABAAQAAgAJAAEAAQALAAYAAQAsAAEAAwAHAAkABQABAAMAAQABAAoABwABAAoABAACAAcAFQAPAAcAAgAFAAEACAADAAQAAQADAAEABgABAAQAAgABAAQACgAIAAEABAAFAAEABQAKAAIABwABAAoAAQABAAMABAALAAoAHQAEAAcAAwAFAAIAAwAhAAUAAgATAAMAAQAEAAIABgAfAAsAAQADAAMAAwABAAgACgAJAAwACwAMAAgAAwAOAAgABgALAAEABAApAAMAAQACAAcADQABAAUABgACAAYADAAMABYABQAJAAQACAAJAAkAIgAGABgAAQABABQACQAJAAMABAABAAcAAgACAAIABgACABwABQADAAYAAQAEAAYABwAEAAIAAQAEAAIADQAGAAQABAADAAEACAAIAAMAAgABAAUAAQACAAIAAwABAAsACwAHAAMABgAKAAgABgAQABAAFgAHAAwABgAVAAUABAAGAAYAAwAGAAEAAwACAAEAAgAIAB0AAQAKAAEABgANAAYABgATAB8AAQANAAQABAAWABEAGgAhAAoABAAPAAwAGQAGAEMACgACAAMAAQAGAAoAAgAGAAIACQABAAkABAAEAAEAAgAQAAIABQAJAAIAAwAIAAEACAADAAkABAAIAAYABAAIAAsAAwACAAEAAQADABoAAQAHAAUAAQALAAEABQADAAUAAgANAAYAJwAFAAEABQACAAsABgAKAAUAAQAPAAUAAwAGABMAFQAWAAIABAABAAYAAQAIAAEABAAIAAIABAACAAIACQACAAEAAQABAAQAAwAGAAMADAAHAAEADgACAAQACgACAA0AAQARAAcAAwACAAEAAwACAA0ABwAOAAwAAwABAB0AAgAIAAkADwAOAAkADgABAAMAAQAGAAUACQALAAMAJgArABQABwAHAAgABQAPAAwAEwAPAFEACAAHAAEABQBJAA0AJQAcAAgACAABAA8AEgAUAKUAHAABAAYACwAIAAQADgAHAA8AAQADAAMABgAEAAEABwAOAAEAAQALAB4AAQAFAAEABAAOAAEABAACAAcANAACAAYAHQADAAEACQABABUAAwAFAAEAGgADAAsADgALAAEAEQAFAAEAAgABAAMAAgAIAAEAAgAJAAwAAQABAAIAAwAIAAMAGAAMAAcABwAFABEAAwADAAMAAQAXAAoABAAEAAYAAwABABAAEQAWAAMACgAVABAAEAAGAAQACgACAAEAAQACAAgACAAGAAUAAwADAAMAJwAZAA8AAQABABAABgAHABkADwAGAAYADAABABYADQABAAQACQAFAAwAAgAJAAEADAAcAAgAAwAFAAoAFgA8AAEAAgAoAAQAPQA/AAQAAQANAAwAAQAEAB8ADAABAA4AWQAFABAABgAdAA4AAgAFADEAEgASAAUAHQAhAC8AAQARAAEAEwAMAAIACQAHACcADAADAAcADAAnAAMAAQAuAAQADAADAAgACQAFAB8ADwASAAMAAgACAEIAEwANABEABQADAC4AfAANADkAIgACAAUABAAFAAgAAQABAAEABAADAAEAEQAFAAMABQADAAEACAAFAAYAAwAbAAMAGgAHAAwABwACABEAAwAHABIATgAQAAQAJAABAAIAAQAGAAIAAQAnABEABwAEAA0ABAAEAAQAAQAKAAQAAgAEAAYAAwAKAAEAEwABABoAAgAEACEAAgBJAC8ABwADAAgAAgAEAA8AEgABAB0AAgApAA4AAQAVABAAKQAHACcAGQANACwAAgACAAoAAQANAAcAAQAHAAMABQAUAAQACAACADEAAQAKAAYAAQAGAAcACgAHAAsAEAADAAwAFAAEAAoAAwABAAIACwACABwACQACAAQABwACAA8AAQAbAAEAHAARAAQABQAKAAcAAwAYAAoACwAGABoAAwACAAcAAgACADEAEAAKABAADwAEAAUAGwA9AB4ADgAmABYAAgAHAAUAAQADAAwAFwAYABEAEQADAAMAAgAEAAEABgACAAcABQABAAEABQABAAEACQAEAAEAAwAGAAEACAACAAgABAAOAAMABQALAAQAAQADACAAAQATAAQAAQANAAsABQACAAEACAAGAAgAAQAGAAUADQADABcACwAFAAMAEAADAAkACgABABgAAwDGADQABAACAAIABQAOAAUABAAWAAUAFAAEAAsABgApAAEABQACAAIACwAFAAIAHAAjAAgAFgADABIAAwAKAAcABQADAAQAAQAFAAMACAAJAAMABgACABAAFgAEAAUABQADAAMAEgAXAAIABgAXAAUAGwAIAAEAIQACAAwAKwAQAAUAAgADAAYAAQAUAAQAAgAJAAcAAQALAAIACgADAA4AHwAJAAMAGQASABQAAgAFAAUAGgAOAAEACwARAAwAKAATAAkABgAfAFMAAgAHAAkAEwBOAAwADgAVAEwADABxAE8AIgAEAAEAAQA9ABIAVQAKAAIAAgANAB8ACwAyAAYAIQCfALMABgAGAAcABAAEAAIABAACAAUACAAHABQAIAAWAAEAAwAKAAYABwAcAAUACgAJAAIATQATAA0AAgAFAAEABAAEAAcABAANAAMACQAfABEAAwAaAAIABgAGAAUABAABAAcACwADAAQAAgABAAYAAgAUAAQAAQAJAAIABgADAAcAAQABAAEAFAACAAMAAQAGAAIAAwAGAAIABAAIAAEABQANAAgABAALABcAAQAKAAYAAgABAAMAFQACAAIABAAYAB8ABAAKAAoAAgAFAMAADwAEABAABwAJADMAAQACAAEAAQAFAAEAAQACAAEAAwAFAAMAAQADAAQAAQADAAEAAwADAAkACAABAAIAAgACAAQABAASAAwAXAACAAoABAADAA4ABQAZABAAKgAEAA4ABAACABUABQB+AB4AHwACAAEABQANAAMAFgAFAAYABgAUAAwAAQAOAAwAVwADABMAAQAIAAIACQAJAAMAAwAXAAIAAwAHAAYAAwABAAIAAwAJAAEAAwABAAYAAwACAAEAAwALAAMAAQAGAAoAAwACAAMAAQACAAEABQABAAEACwADAAYABAABAAcAAgABAAIABQAFACIABAAOABIABAATAAcABQAIAAIABgBPAAEABQACAA4ACAACAAkAAgABACQAHAAQAAQAAQABAAEAAgAMAAYAKgAnABAAFwAHAA8ADwADAAIADAAHABUAQAAGAAkAHAAIAAwAAwADACkAOwAYADMANwA5ACYBCQAJAAIABgACAA8AAQACAA0AJgBaAAkACQAJAAMACwAHAAEAAQABAAUABgADAAIAAQACAAIAAwAIAAEABAAEAAEABQAHAAEABAADABQABAAJAAEAAQABAAUABQARAAEABQACAAYAAgAEAAEABAAFAAcAAwASAAsACwAgAAcABQAEAAcACwB/AAgABAADAAMAAQAKAAEAAQAGABUADgABABAAAQAHAAEAAwAGAAkAQQAzAAQAAwANAAMACgABAAEADAAJABUAbgADABMAGAABAAEACgA+AAQAAQAdACoATgAcABQAEgBSAAYAAwAPAAYAVAA6AP0ADwCbAAgBDwAVAAkADgAHADoAKAAnAEGwxwELECAA/wAABC8F4C3/LUCmn6YAQdLHAQsmgD/NzMw9CtcjPG8SgzoXt9E4rMUnN703hjWVv9Yzd8wrMl9wiTAAQYDIAQtGBAAAAOeOAADnjgAABAAAAPGOAADxjgAACAAAAPSOAAD0jgAACAAAAPmOAAD5jgAABAAAAOqOAADqjgAACAAAAOqOAADtjgBB0MgBC5IC/5AAAAORAAAHkQAAC5EAAMGQAADBkAAAwZAAAMGQAADHkAAAz5AAANeQAADfkAAA55AAAO+QAAD3kAAA35AAAJOQAACTkAAAk5AAAJOQAACXkAAAnZAAAKOQAACpkAAAr5AAALWQAAC7kAAAqZAAAP8AAP///wD/AP8A/wD///8AAP///wD///8AAP8AAAAA6HoAANB0AADQdAAA0HQAANB0AAA4ewAAWHsAANB0AAAIewAA0HQAANB0AAAIewAAOHsAADh7AABYewAAWHsAAOh6AABYewAAWHsAAFh7AADQdAAA0HQAANB0AAAAAAAACHsAAEB7AAAIdQAAOHsAAOh6AAA4ewAAWHsAANB0AADQdABB8MoBCxLQdAAA2HQAAAh7AABYewAA0HQAQZDLAQsi6HoAANB0AADQdAAACHsAAAh7AADYdAAA0HQAAFB7AAA4ewBBwMsBCyIIewAA0HQAADh7AAAIewAACHsAANh0AADQdAAA0HQAAAh7AEHwywELEgh7AADYdAAA0HQAAAh7AAAIewBBkMwBCzboegAA2HQAAFh7AADQdAAACHsAANh0AAA4ewAAOHsAAAh7AADYdAAA0HQAANB0AAA4ewAAOHsAQdDMAQsSCHsAANh0AAAIewAAOHsAANB0AEHwzAELMgh7AAA4ewAAOHsAANh0AAAIewAA2HQAADh7AADYdAAACHsAANh0AADQdAAAOHsAANB0AEGwzQELIgh7AADYdAAA0HQAADh7AADQdAAA0HQAANB0AADQdAAA0HQAQeDNAQs2CHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AAA4ewAAOHsAANB0AEGgzgELEgh7AADYdAAA0HQAANB0AADQdABBwM4BC3YIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAAAAAAAAh7AADYdAAAOHsAANB0AADQdAAA0HQAANB0AAA4ewAACHsAANh0AADQdAAAYHsAAGB7AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AAA4ewAAOHsAADh7AEHAzwELEgh7AADYdAAA0HQAANB0AAA4ewBB4M8BC4IBCHsAANh0AADQdAAA0HQAANB0AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AABQewAA0HQAADh7AADQdAAA0HQAAAh7AADYdAAA0HQAAFB7AAA4ewAA0HQAANB0AAAAAAAACHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AADQdABB8NABCyIIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AEGg0QELRgh7AADYdAAA0HQAANB0AAA4ewAAOHsAANB0AAAAAAAACHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQfDRAQt2CHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AADQdAAA0HQAADh7AAA4ewAAAAAAAOh6AABYewAA0HQAANB0AADoegAA2HQAANB0AADQdAAAOHsAADh7AADQdAAA0HQAANB0AADQdABB8NIBC5IBCHsAANh0AADQdAAAQHsAAAh7AADQdAAA0HQAANB0AADQdAAAOHsAANB0AADQdAAA6HoAANB0AADQdAAA0HQAANB0AADQdAAA0HQAAAAAAADoegAAOHsAANB0AAAIewAA6HoAANh0AAAIewAAOHsAAOh6AADYdAAA0HQAADh7AADoegAA0HQAANB0AADQdAAA0HQAQZDUAQsi6HoAANB0AAA4ewAA0HQAAAh7AADQdAAA0HQAAAh7AAA4ewBBwNQBC4YBCHsAANh0AADQdAAAOHsAAAh7AADYdAAAUHsAAFB7AABQewAAUHsAAFB7AAAAAAAACHsAAFh2AAA4ewAA0HQAAAh7AACYdgAAOHsAAFh7AAAIewAAmHYAADh7AAAIewAACHsAAJh2AAA4ewAAOHsAANB0AADIdgAA0HQAAFh7AADQdAAA0HQAQdDVAQsy6HoAACB2AADQdAAAWHsAANB0AABAewAAMHsAAAAAAAA4ewAAIHYAAFh7AADYdAAAWHsAQZDWAQti0HQAACB2AABYewAAWHsAAFh7AADYdAAA0HQAANB0AADoegAAQHUAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAQYDXAQs26HoAADB1AAA4ewAAOHsAAOh6AABAdQAA0HQAANB0AADoegAAQHUAANB0AADQdAAAWHsAADh7AEHA1wELFuh6AABAdQAA0HQAANB0AADQdAAAOHsAQeDXAQsW6HoAAEB1AADQdAAAWHsAADh7AAA4ewBBgNgBCzLoegAAQHUAANB0AABYewAAWHsAAFh7AAA4ewAAAAAAAOh6AABAdQAAQHsAAAh7AABYewBBwNgBCyLoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHw2AELEuh6AABAdQAA0HQAADh7AABAewBBkNkBC0boegAAQHUAANB0AAA4ewAAQHsAAAh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHg2QELcuh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAA6HoAAEB1AADQdAAAWHsAANB0AABAewAA2HQAAFh7AADQdABB4NoBCxLoegAAQHUAANB0AABAewAA2HQAQYDbAQsW6HoAAEB1AADQdAAAWHsAAEB7AAA4ewBBoNsBCzboegAAQHUAANB0AABYewAAQHsAADh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAAQHsAQeDbAQvWAeh6AABAdQAA0HQAANB0AADQdAAAQHsAAFh7AAAAAAAA6HoAAEB1AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAQHsAAEB7AABAewAA6HoAAEB1AADQdAAA0HQAAEB7AABYewAAOHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAAFh7AAA4ewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAWHsAQcDdAQsS6HoAAEB1AADQdAAA0HQAAAh7AEHg3QELRuh6AADgdwAAOHsAAFh7AADoegAA+HUAADh7AADYdAAA6HoAAOh1AAA4ewAAOHsAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQbDeAQvhA9B0AADQdAAA0HQAANB0AAACAADAAwAAwAQAAMAFAADABgAAwAcAAMAIAADACQAAwAoAAMALAADADAAAwA0AAMAOAADADwAAwBAAAMARAADAEgAAwBMAAMAUAADAFQAAwBYAAMAXAADAGAAAwBkAAMAaAADAGwAAwBwAAMAdAADAHgAAwB8AAMAAAACzAQAAwwIAAMMDAADDBAAAwwUAAMMGAADDBwAAwwgAAMMJAADDCgAAwwsAAMMMAADDDQAA0w4AAMMPAADDAAAMuwEADMMCAAzDAwAMwwQADNMAAAAA/////////////////////////////////////////////////////////////////wABAgMEBQYHCAn/////////CgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiP///////8KCwwNDg8QERITFBUWFxgZGhscHR4fICEiI/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AQaDiAQsYEQAKABEREQAAAAAFAAAAAAAACQAAAAALAEHA4gELIREADwoREREDCgcAARMJCwsAAAkGCwAACwAGEQAAABEREQBB8eIBCwELAEH64gELGBEACgoREREACgAAAgAJCwAAAAkACwAACwBBq+MBCwEMAEG34wELFQwAAAAADAAAAAAJDAAAAAAADAAADABB5eMBCwEOAEHx4wELFQ0AAAAEDQAAAAAJDgAAAAAADgAADgBBn+QBCwEQAEGr5AELHg8AAAAADwAAAAAJEAAAAAAAEAAAEAAAEgAAABISEgBB4uQBCw4SAAAAEhISAAAAAAAACQBBk+UBCwELAEGf5QELFQoAAAAACgAAAAAJCwAAAAAACwAACwBBzeUBCwEMAEHZ5QEL3gIMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYKAAAAZAAAAOgDAAAQJwAAoIYBAEBCDwCAlpgAAOH1BQMAAAAEAAAABAAAAAYAAACD+aIARE5uAPwpFQDRVycA3TT1AGLbwAA8mZUAQZBDAGNR/gC73qsAt2HFADpuJADSTUIASQbgAAnqLgAcktEA6x3+ACmxHADoPqcA9TWCAES7LgCc6YQAtCZwAEF+XwDWkTkAU4M5AJz0OQCLX4QAKPm9APgfOwDe/5cAD5gFABEv7wAKWosAbR9tAM9+NgAJyycARk+3AJ5mPwAt6l8Auid1AOXrxwA9e/EA9zkHAJJSigD7a+oAH7FfAAhdjQAwA1YAe/xGAPCrawAgvM8ANvSaAOOpHQBeYZEACBvmAIWZZQCgFF8AjUBoAIDY/wAnc00ABgYxAMpWFQDJqHMAe+JgAGuMwABBw+gBC21A+yH5PwAAAAAtRHQ+AAAAgJhG+DwAAABgUcx4OwAAAICDG/A5AAAAQCAlejgAAACAIoLjNgAAAAAd82k1OGPtPtoPST9emHs/2g/JP2k3rDFoISIztA8UM2ghojMAAAAAAADwPwAAAAAAAPg/AEG46QELCAbQ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aXZlAFBsb3RMaW5lc0hvdmVyZWQAUGxvdEhpc3RvZ3JhbUhvdmVyZWQAVGV4dFNlbGVjdGVkQmcARHJhZ0Ryb3BUYXJnZXQATmF2SGlnaGxpZ2h0AE5hdldpbmRvd2luZ0hpZ2hsaWdodABOYXZXaW5kb3dpbmdEaW1CZwBNb2RhbFdpbmRvd0RpbUJnAFVua25vd24AIyNUb29sdGlwXyUwMmQAIyNNZW51XyUwMmQAIyNQb3B1cF8lMDh4AHdpbmRvd19jb250ZXh0AHZvaWRfY29udGV4dABjb2x1bW5zACNTb3VyY2VFeHRlcm4ACiUqcyUuKnMAICUuKnMAYWIACgBMb2cgVG8gVFRZAExvZyBUbyBGaWxlAExvZyBUbyBDbGlwYm9hcmQARGVwdGgAcmIAd3QASW1HdWkgTWV0cmljcwABRGVhciBJbUd1aSAlcwBBcHBsaWNhdGlvbiBhdmVyYWdlICUuM2YgbXMvZnJhbWUgKCUuMWYgRlBTKQAlZCB2ZXJ0aWNlcywgJWQgaW5kaWNlcyAoJWQgdHJpYW5nbGVzKQAlZCBhY3RpdmUgd2luZG93cyAoJWQgdmlzaWJsZSkAJWQgYWxsb2NhdGlvbnMAU2hvdyBjbGlwcGluZyByZWN0YW5nbGVzIHdoZW4gaG92ZXJpbmcgZHJhdyBjb21tYW5kcwBDdHJsIHNob3dzIHdpbmRvdyBiZWdpbiBvcmRlcgBXaW5kb3dzAERyYXdMaXN0AEFjdGl2ZSBEcmF3TGlzdHMgKCVkKQBQb3B1cHMAUG9wdXBzICglZCkAUG9wdXBJRDogJTA4eCwgV2luZG93OiAnJXMnJXMlcwBOVUxMACBDaGlsZFdpbmRvdwAgQ2hpbGRNZW51AFRhYkJhcnMAVGFiIEJhcnMgKCVkKQBJbnRlcm5hbCBzdGF0ZQBOb25lAE1vdXNlAE5hdgBOYXZLZXlib2FyZABOYXZHYW1lcGFkAEhvdmVyZWRXaW5kb3c6ICclcycASG92ZXJlZFJvb3RXaW5kb3c6ICclcycASG92ZXJlZElkOiAweCUwOFgvMHglMDhYICglLjJmIHNlYyksIEFsbG93T3ZlcmxhcDogJWQAQWN0aXZlSWQ6IDB4JTA4WC8weCUwOFggKCUuMmYgc2VjKSwgQWxsb3dPdmVybGFwOiAlZCwgU291cmNlOiAlcwBBY3RpdmVJZFdpbmRvdzogJyVzJwBNb3ZpbmdXaW5kb3c6ICclcycATmF2V2luZG93OiAnJXMnAE5hdklkOiAweCUwOFgsIE5hdkxheWVyOiAlZABOYXZJbnB1dFNvdXJjZTogJXMATmF2QWN0aXZlOiAlZCwgTmF2VmlzaWJsZTogJWQATmF2QWN0aXZhdGVJZDogMHglMDhYLCBOYXZJbnB1dElkOiAweCUwOFgATmF2RGlzYWJsZUhpZ2hsaWdodDogJWQsIE5hdkRpc2FibGVNb3VzZUhvdmVyOiAlZABOYXZXaW5kb3dpbmdUYXJnZXQ6ICclcycARHJhZ0Ryb3A6ICVkLCBTb3VyY2VJZCA9IDB4JTA4WCwgUGF5bG9hZCAiJXMiICglZCBieXRlcykAIyNPdmVybGF5ACVzLyVzXyUwOFgAJXMvJTA4WAAjUkVTSVpFACMjI05hdldpbmRvd2luZ0xpc3QAKFBvcHVwKQAoTWFpbiBtZW51IGJhcikAKFVudGl0bGVkKQBQb3M9JWYsJWYAU2l6ZT0lZiwlZgBDb2xsYXBzZWQ9JWQAIyMjAFslc11bJXNdCgBQb3M9JWQsJWQKAFNpemU9JWQsJWQKAENvbGxhcHNlZD0lZAoAJXMgKCVkKQAlcyAnJXMnLCAlZCBAIDB4JXAAUG9zOiAoJS4xZiwlLjFmKSwgU2l6ZTogKCUuMWYsJS4xZiksIFNpemVDb250ZW50cyAoJS4xZiwlLjFmKQBGbGFnczogMHglMDhYICglcyVzJXMlcyVzJXMlcyVzJXMuLikAQ2hpbGQgAFRvb2x0aXAgAFBvcHVwIABNb2RhbCAAQ2hpbGRNZW51IABOb1NhdmVkU2V0dGluZ3MgAE5vTW91c2VJbnB1dHMATm9OYXZJbnB1dHMAQWx3YXlzQXV0b1Jlc2l6ZQBTY3JvbGw6ICglLjJmLyUuMmYsJS4yZi8lLjJmKQBBY3RpdmU6ICVkLyVkLCBXcml0ZUFjY2Vzc2VkOiAlZCwgQmVnaW5PcmRlcldpdGhpbkNvbnRleHQ6ICVkAEFwcGVhcmluZzogJWQsIEhpZGRlbjogJWQgKFJlZyAlZCBSZXNpemUgJWQpLCBTa2lwSXRlbXM6ICVkAE5hdkxhc3RJZHM6IDB4JTA4WCwweCUwOFgs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bnRDb250ZXh0AERlYnVnQ2hlY2tWZXJzaW9uQW5kRGF0YUxheW91dABHZXRJTwBHZXRTdHlsZQBHZXREcmF3RGF0YQBOZXdGcmFtZQBSZW5kZXIARW5kRnJhbWUAU2hvd0RlbW9XaW5kb3cAU2hvd0Fib3V0V2luZG93AFNob3dNZXRyaWNzV2luZG93AFNob3dTdHlsZUVkaXRvcgBTaG93U3R5bGVTZWxlY3RvcgBTaG93Rm9udFNlbGVjdG9yAFNob3dVc2VyR3VpZGUAR2V0VmVyc2lvbgBTdHlsZUNvbG9yc0RhcmsAU3R5bGVDb2xvcnNDbGFzc2ljAFN0eWxlQ29sb3JzTGlnaHQAQmVnaW4ARW5kAEJlZ2luQ2hpbGQARW5kQ2hpbGQAR2V0Q29udGVudFJlZ2lvbk1heABHZXRDb250ZW50UmVnaW9uQXZhaWwAR2V0Q29udGVudFJlZ2lvbkF2YWlsV2lkdGgAR2V0V2luZG93Q29udGVudFJlZ2lvbk1pbgBHZXRXaW5kb3dDb250ZW50UmVnaW9uTWF4AEdldFdpbmRvd0NvbnRlbnRSZWdpb25XaWR0aABHZXRXaW5kb3dEcmF3TGlzdABHZXRXaW5kb3dQb3MAR2V0V2luZG93U2l6ZQBHZXRXaW5kb3dXaWR0aABHZXRXaW5kb3dIZWlnaHQASXNXaW5kb3dDb2xsYXBzZWQASXNXaW5kb3dBcHBlYXJpbmcAU2V0V2luZG93Rm9udFNjYWxlAFNldE5leHRXaW5kb3dQb3MAU2V0TmV4dFdpbmRvd1NpemUAU2V0TmV4dFdpbmRvd1NpemVDb25zdHJhaW50cwBTZXROZXh0V2luZG93Q29udGVudFNpemUAU2V0TmV4dFdpbmRvd0NvbGxhcHNlZABTZXROZXh0V2luZG93Rm9jdXMAU2V0TmV4dFdpbmRvd0JnQWxwaGEAU2V0V2luZG93UG9zAFNldFdpbmRvd1NpemUAU2V0V2luZG93Q29sbGFwc2VkAFNldFdpbmRvd0ZvY3VzAFNldFdpbmRvd05hbWVQb3MAU2V0V2luZG93TmFtZVNpemUAU2V0V2luZG93TmFtZUNvbGxhcHNlZABTZXRXaW5kb3dOYW1lRm9jdXMAR2V0U2Nyb2xsWABHZXRTY3JvbGxZAEdldFNjcm9sbE1heFgAR2V0U2Nyb2xsTWF4WQBTZXRTY3JvbGxYAFNldFNjcm9sbFkAU2V0U2Nyb2xsSGVyZVkAU2V0U2Nyb2xsRnJvbVBvc1kAU2V0U3RhdGVTdG9yYWdlAEdldFN0YXRlU3RvcmFnZQBQdXNoRm9udABQb3BGb250AFB1c2hTdHlsZUNvbG9yAFBvcFN0eWxlQ29sb3IAUHVzaFN0eWxlVmFyAFBvcFN0eWxlVmFyAEdldFN0eWxlQ29sb3JWZWM0AEdldEZvbnQAR2V0Rm9udFNpemUAR2V0Rm9udFRleFV2V2hpdGVQaXhlbABHZXRDb2xvclUzMl9BAEdldENvbG9yVTMyX0IAR2V0Q29sb3JVMzJfQwBQdXNoSXRlbVdpZHRoAFBvcEl0ZW1XaWR0aABDYWxjSXRlbVdpZHRoAFB1c2hUZXh0V3JhcFBvcwBQb3BUZXh0V3JhcFBvcwBQdXNoQWxsb3dLZXlib2FyZEZvY3VzAFBvcEFsbG93S2V5Ym9hcmRGb2N1cwBQdXNoQnV0dG9uUmVwZWF0AFBvcEJ1dHRvblJlcGVhdABTZXBhcmF0b3IAU2FtZUxpbmUATmV3TGluZQBTcGFjaW5nAER1bW15AEluZGVudABVbmluZGVudABCZWdpbkdyb3VwAEVuZEdyb3VwAEdldEN1cnNvclBvcwBHZXRDdXJzb3JQb3NYAEdldEN1cnNvclBvc1kAU2V0Q3Vyc29yUG9zAFNldEN1cnNvclBvc1gAU2V0Q3Vyc29yUG9zWQBHZXRDdXJzb3JTdGFydFBvcwBHZXRDdXJzb3JTY3JlZW5Qb3MAU2V0Q3Vyc29yU2NyZWVuUG9zAEFsaWduVGV4dFRvRnJhbWVQYWRkaW5nAEdldFRleHRMaW5lSGVpZ2h0AEdldFRleHRMaW5lSGVpZ2h0V2l0aFNwYWNpbmcAR2V0RnJhbWVIZWlnaHQAR2V0RnJhbWVIZWlnaHRXaXRoU3BhY2luZwBDb2x1bW5zAE5leHRDb2x1bW4AR2V0Q29sdW1uSW5kZXgAR2V0Q29sdW1uV2lkdGgAU2V0Q29sdW1uV2lkdGgAR2V0Q29sdW1uT2Zmc2V0AFNldENvbHVtbk9mZnNldABHZXRDb2x1bW5zQ291bnQAUHVzaElEAFBvcElEAEdldElEAFRleHRVbmZvcm1hdHRlZABUZXh0AFRleHRWAFRleHRDb2xvcmVkAFRleHRDb2xvcmVkVgBUZXh0RGlzYWJsZWQAVGV4dERpc2FibGVkVgBUZXh0V3JhcHBlZABUZXh0V3JhcHBlZFYATGFiZWxUZXh0AExhYmVsVGV4dFYAQnVsbGV0VGV4dABCdWxsZXRUZXh0VgBCdWxsZXQAQnV0dG9uAFNtYWxsQnV0dG9uAEFycm93QnV0dG9uAEludmlzaWJsZUJ1dHRvbgBJbWFnZQBJbWFnZUJ1dHRvbgBDaGVja2JveABDaGVja2JveEZsYWdzAFJhZGlvQnV0dG9uX0EAUmFkaW9CdXR0b25fQgBQbG90TGluZXMAUGxvdEhpc3RvZ3JhbQBQcm9ncmVzc0JhcgBCZWdpbkNvbWJvAEVuZENvbWJvAENvbWJvAERyYWdGbG9hdABEcmFnRmxvYXQyAERyYWdGbG9hdDMARHJhZ0Zsb2F0NABEcmFnRmxvYXRSYW5nZTIARHJhZ0ludABEcmFnSW50MgBEcmFnSW50MwBEcmFnSW50NABEcmFnSW50UmFuZ2UyAERyYWdTY2FsYXIASW5wdXRUZXh0AElucHV0VGV4dE11bHRpbGluZQBJbnB1dEZsb2F0AElucHV0RmxvYXQyAElucHV0RmxvYXQzAElucHV0RmxvYXQ0AElucHV0SW50AElucHV0SW50MgBJbnB1dEludDMASW5wdXRJbnQ0AElucHV0RG91YmxlAElucHV0U2NhbGFyAFNsaWRlckZsb2F0AFNsaWRlckZsb2F0MgBTbGlkZXJGbG9hdDMAU2xpZGVyRmxvYXQ0AFNsaWRlckFuZ2xlAFNsaWRlckludABTbGlkZXJJbnQyAFNsaWRlckludDMAU2xpZGVySW50NABTbGlkZXJTY2FsYXIAVlNsaWRlckZsb2F0AFZTbGlkZXJJbnQAVlNsaWRlclNjYWxhcgBDb2xvckVkaXQzAENvbG9yRWRpdDQAQ29sb3JQaWNrZXIzAENvbG9yUGlja2VyNABDb2xvckJ1dHRvbgBTZXRDb2xvckVkaXRPcHRpb25zAFRyZWVOb2RlX0EAVHJlZU5vZGVfQgBUcmVlTm9kZV9DAFRyZWVOb2RlRXhfQQBUcmVlTm9kZUV4X0IAVHJlZU5vZGVFeF9DAFRyZWVQdXNoX0EAVHJlZVB1c2hfQgBUcmVlUG9wAFRyZWVBZHZhbmNlVG9MYWJlbFBvcwBHZXRUcmVlTm9kZVRvTGFiZWxTcGFjaW5nAFNldE5leHRUcmVlTm9kZU9wZW4AQ29sbGFwc2luZ0hlYWRlcl9BAENvbGxhcHNpbmdIZWFkZXJfQgBTZWxlY3RhYmxlX0EAU2VsZWN0YWJsZV9CAExpc3RCb3hfQQBMaXN0Qm94X0IATGlzdEJveEhlYWRlcl9BAExpc3RCb3hIZWFkZXJfQgBMaXN0Qm94Rm9vdGVyAFZhbHVlX0EAVmFsdWVfQgBWYWx1ZV9DAFZhbHVlX0QAU2V0VG9vbHRpcABCZWdpblRvb2x0aXAARW5kVG9vbHRpcABCZWdpbk1haW5NZW51QmFyAEVuZE1haW5NZW51QmFyAEJlZ2luTWVudUJhcgBFbmRNZW51QmFyAEJlZ2luTWVudQBFbmRNZW51AE1lbnVJdGVtX0EATWVudUl0ZW1fQgBPcGVuUG9wdXAAT3BlblBvcHVwT25JdGVtQ2xpY2sAQmVnaW5Qb3B1cABCZWdpblBvcHVwTW9kYWwAQmVnaW5Qb3B1cENvbnRleHRJdGVtAEJlZ2luUG9wdXBDb250ZXh0V2luZG93AEJlZ2luUG9wdXBDb250ZXh0Vm9pZABFbmRQb3B1cABJc1BvcHVwT3BlbgBDbG9zZUN1cnJlbnRQb3B1cABCZWdpblRhYkJhcgBFbmRUYWJCYXIAQmVnaW5UYWJJdGVtAEVuZFRhYkl0ZW0AU2V0VGFiSXRlbUNsb3NlZABMb2dUb1RUWQBMb2dUb0ZpbGUATG9nVG9DbGlwYm9hcmQATG9nRmluaXNoAExvZ0J1dHRvbnMATG9nVGV4dABCZWdpbkRyYWdEcm9wU291cmNlAFNldERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFNvdXJjZQBCZWdpbkRyYWdEcm9wVGFyZ2V0AEFjY2VwdERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFRhcmdldABHZXREcmFnRHJvcFBheWxvYWQAUHVzaENsaXBSZWN0AFBvcENsaXBSZWN0AFNldEl0ZW1EZWZhdWx0Rm9jdXMAU2V0S2V5Ym9hcmRGb2N1c0hlcmUASXNJdGVtSG92ZXJlZABJc0l0ZW1BY3RpdmUASXNJdGVtRWRpdGVkAElzSXRlbUZvY3VzZWQASXNJdGVtQ2xpY2tlZABJc0l0ZW1WaXNpYmxlAElzSXRlbURlYWN0aXZhdGVkAElzSXRlbURlYWN0aXZhdGVkQWZ0ZXJFZGl0AElzQW55SXRlbUhvdmVyZWQASXNBbnlJdGVtQWN0aXZlAElzQW55SXRlbUZvY3VzZWQAR2V0SXRlbVJlY3RNaW4AR2V0SXRlbVJlY3RNYXgAR2V0SXRlbVJlY3RTaXplAFNldEl0ZW1BbGxvd092ZXJsYXAASXNXaW5kb3dGb2N1c2VkAElzV2luZG93SG92ZXJlZABJc1JlY3RWaXNpYmxlX0EASXNSZWN0VmlzaWJsZV9CAEdldFRpbWUAR2V0RnJhbWVDb3VudABHZXRPdmVybGF5RHJhd0xpc3QAR2V0RHJhd0xpc3RTaGFyZWREYXRhAEdldFN0eWxlQ29sb3JOYW1lAENhbGNUZXh0U2l6ZQBDYWxjTGlzdENsaXBwaW5nAEJlZ2luQ2hpbGRGcmFtZQBFbmRDaGlsZEZyYW1lAENvbG9yQ29udmVydFUzMlRvRmxvYXQ0AENvbG9yQ29udmVydEZsb2F0NFRvVTMyAENvbG9yQ29udmVydFJHQnRvSFNWAENvbG9yQ29udmVydEhTVnRvUkdCAEdldEtleUluZGV4AElzS2V5RG93bgBJc0tleVByZXNzZWQASXNLZXlSZWxlYXNlZABHZXRLZXlQcmVzc2VkQW1vdW50AElzTW91c2VEb3duAElzQW55TW91c2VEb3duAElzTW91c2VDbGlja2VkAElzTW91c2VEb3VibGVDbGlja2VkAElzTW91c2VSZWxlYXNlZABJc01vdXNlRHJhZ2dpbmcASXNNb3VzZUhvdmVyaW5nUmVjdABJc01vdXNlUG9zVmFsaWQAR2V0TW91c2VQb3MAR2V0TW91c2VQb3NPbk9wZW5pbmdDdXJyZW50UG9wdXAAR2V0TW91c2VEcmFnRGVsdGEAUmVzZXRNb3VzZURyYWdEZWx0YQBHZXRNb3VzZUN1cnNvcgBTZXRNb3VzZUN1cnNvcgBDYXB0dXJlS2V5Ym9hcmRGcm9tQXBwAENhcHR1cmVNb3VzZUZyb21BcHAAR2V0Q2xpcGJvYXJkVGV4dABTZXRDbGlwYm9hcmRUZXh0AExvYWRJbmlTZXR0aW5nc0Zyb21NZW1vcnkAU2F2ZUluaVNldHRpbmdzVG9NZW1vcnkAU2V0QWxsb2NhdG9yRnVuY3Rpb25zAE1lbUFsbG9jAE1lbUZyZWUAaWlpAE4xMGVtc2NyaXB0ZW4zdmFsRQB2aWlpaQBOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TXzExY2hhcl90cmFpdHNJY0VFTlNfOWFsbG9jYXRvckljRUVFRQBOU3QzX18yMjFfX2Jhc2ljX3N0cmluZ19jb21tb25JTGIxRUVFAGlpaWZpAHgAeQAyM2ltcG9ydF9tYXliZV9udWxsX3ZhbHVlSTZJbVZlYzJFAGlpaWlpAGlpaWYAaWlpZmYAaWlpaQAxMmFjY2Vzc192YWx1ZUlmTG0xRUUAdmlmZmZpaWkAegB3ADZJbVZlYzIAdmlpZmlpADEyYWNjZXNzX3ZhbHVlSWlMbTFFRQBpaWlpZmkAUDIwSW1EcmF3TGlzdFNoYXJlZERhdGEAMjBJbURyYXdMaXN0U2hhcmVkRGF0YQBQMTBJbURyYXdMaXN0ADEwSW1EcmF3TGlzdABkaQBpaWlpaWkAJXMAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TMF8xMWNoYXJfdHJhaXRzSWNFRU5TMF85YWxsb2NhdG9ySWNFRUVFRQAyNGltcG9ydF9tYXliZV9udWxsX3N0cmluZwAyM2FjY2Vzc19tYXliZV9udWxsX3ZhbHVlSWJMbTFFRQB2aWlmaQB2aWlpAGlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJZkxtNEVFADIzYWNjZXNzX21heWJlX251bGxfdmFsdWVJZkxtNEVFADEyYWNjZXNzX3ZhbHVlSWZMbTNFRQBpaWlpaWlpaWlpAHNldABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lkRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlkRQBsZW5ndGgAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lmRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlmRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lqRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlqRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lpRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlpRQBpaWlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJaUxtNEVFADEyYWNjZXNzX3ZhbHVlSWlMbTNFRQAxMmFjY2Vzc192YWx1ZUlpTG0yRUUAJS4wZiBkZWcAMTJhY2Nlc3NfdmFsdWVJZkxtMkVFAGlpaWlpaWlpAGlpaWlkZGlpADEyYWNjZXNzX3ZhbHVlSWRMbTFFRQBQMjZJbUd1aUlucHV0VGV4dENhbGxiYWNrRGF0YQAyNkltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAGlpaWlpaWlpaWlpAHZpZmlpAHZpaWlpaWlpaWlpADEyYWNjZXNzX3ZhbHVlSWpMbTFFRQAxMmFjY2Vzc192YWx1ZUliTG0xRUUAdmlpaWlpaWkAbnVtYmVyAHZpaWYAZmlpAGlpAHZpaQBQNkltRm9udAA2SW1Gb250AFBLNkltVmVjNAA2SW1WZWM0AFRPRE86ICVzCgBhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoZW1zY3JpcHRlbjo6dmFsKSBjb25zdAB2aWZmAHZpaWlpaQBQMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAdmlmAGZpAHN0cmluZwBQMTBJbUd1aVN0eWxlADEwSW1HdWlTdHlsZQB2aQBQMTBJbURyYXdEYXRhADEwSW1EcmF3RGF0YQBQN0ltR3VpSU8AN0ltR3VpSU8AUDE2V3JhcEltR3VpQ29udGV4dAAxNldyYXBJbUd1aUNvbnRleHQAUDExSW1Gb250QXRsYXMAMTFJbUZvbnRBdGxhcwBJbUd1aVN0eWxlAEFscGhhAFdpbmRvd1BhZGRpbmcAV2luZG93Um91bmRpbmcAV2luZG93Qm9yZGVyU2l6ZQBXaW5kb3dNaW5TaXplAFdpbmRvd1RpdGxlQWxpZ24AQ2hpbGRSb3VuZGluZwBDaGlsZEJvcmRlclNpemUAUG9wdXBSb3VuZGluZwBQb3B1cEJvcmRlclNpemUARnJhbWVQYWRkaW5nAEZyYW1lUm91bmRpbmcARnJhbWVCb3JkZXJTaXplAEl0ZW1TcGFjaW5nAEl0ZW1Jbm5lclNwYWNpbmcAVG91Y2hFeHRyYVBhZGRpbmcASW5kZW50U3BhY2luZwBDb2x1bW5zTWluU3BhY2luZwBTY3JvbGxiYXJTaXplAFNjcm9sbGJhclJvdW5kaW5nAEdyYWJNaW5TaXplAEdyYWJSb3VuZGluZwBUYWJSb3VuZGluZwBUYWJCb3JkZXJTaXplAEJ1dHRvblRleHRBbGlnbgBEaXNwbGF5V2luZG93UGFkZGluZwBEaXNwbGF5U2FmZUFyZWFQYWRkaW5nAE1vdXNlQ3Vyc29yU2NhbGUAQW50aUFsaWFzZWRMaW5lcwBBbnRpQWxpYXNlZEZpbGwAQ3VydmVUZXNzZWxsYXRpb25Ub2wAX2dldEF0X0NvbG9ycwBfc2V0QXRfQ29sb3JzAFNjYWxlQWxsU2l6ZXMAUDZJbVZlYzQAUEs2SW1WZWMyAHYAUEsxMEltR3VpU3R5bGUASW1HdWlJTwBDb25maWdGbGFncwBCYWNrZW5kRmxhZ3MARGlzcGxheVNpemUARGVsdGFUaW1lAEluaVNhdmluZ1JhdGUASW5pRmlsZW5hbWUATG9nRmlsZW5hbWUATW91c2VEb3VibGVDbGlja1RpbWUATW91c2VEb3VibGVDbGlja01heERpc3QATW91c2VEcmFnVGhyZXNob2xkAF9nZXRBdF9LZXlNYXAAX3NldEF0X0tleU1hcABLZXlSZXBlYXREZWxheQBLZXlSZXBlYXRSYXRlAFVzZXJEYXRhAEZvbnRzAEZvbnRHbG9iYWxTY2FsZQBGb250QWxsb3dVc2VyU2NhbGluZwBGb250RGVmYXVsdABEaXNwbGF5RnJhbWVidWZmZXJTY2FsZQBEaXNwbGF5VmlzaWJsZU1pbgBEaXNwbGF5VmlzaWJsZU1heABNb3VzZURyYXdDdXJzb3IAQ29uZmlnTWFjT1NYQmVoYXZpb3JzAENvbmZpZ0lucHV0VGV4dEN1cnNvckJsaW5rAENvbmZpZ1dpbmRvd3NSZXNpemVGcm9tRWRnZXMAQ29uZmlnV2luZG93c01vdmVGcm9tVGl0bGVCYXJPbmx5AEdldENsaXBib2FyZFRleHRGbgBTZXRDbGlwYm9hcmRUZXh0Rm4AQ2xpcGJvYXJkVXNlckRhdGEATW91c2VQb3MAX2dldEF0X01vdXNlRG93bgBfc2V0QXRfTW91c2VEb3duAE1vdXNlV2hlZWwAS2V5Q3RybABLZXlTaGlmdABLZXlBbHQAS2V5U3VwZXIAX2dldEF0X0tleXNEb3duAF9zZXRBdF9LZXlzRG93bgBfZ2V0QXRfTmF2SW5wdXRzAF9zZXRBdF9OYXZJbnB1dHMAQWRkSW5wdXRDaGFyYWN0ZXIAQWRkSW5wdXRDaGFyYWN0ZXJzVVRGOABDbGVhcklucHV0Q2hhcmFjdGVycwBXYW50Q2FwdHVyZU1vdXNlAFdhbnRDYXB0dXJlS2V5Ym9hcmQAV2FudFRleHRJbnB1dABXYW50U2V0TW91c2VQb3MAV2FudFNhdmVJbmlTZXR0aW5ncwBOYXZBY3RpdmUATmF2VmlzaWJsZQBGcmFtZXJhdGUATWV0cmljc1JlbmRlclZlcnRpY2VzAE1ldHJpY3NSZW5kZXJJbmRpY2VzAE1ldHJpY3NSZW5kZXJXaW5kb3dzAE1ldHJpY3NBY3RpdmVXaW5kb3dzAE1ldHJpY3NBY3RpdmVBbGxvY2F0aW9ucwBNb3VzZURlbHRhAF9nZXRBdF9Nb3VzZUNsaWNrZWRQb3MAX2dldEF0X01vdXNlRG93bkR1cmF0aW9uAF9nZXRBdF9LZXlzRG93bkR1cmF0aW9uAF9nZXRBdF9OYXZJbnB1dHNEb3duRHVyYXRpb24AUEs3SW1HdWlJTwBpaWlpZgBmaWlpAEltRm9udEF0bGFzAEFkZEZvbnREZWZhdWx0AEFkZEZvbnRGcm9tTWVtb3J5VFRGAENsZWFyVGV4RGF0YQBDbGVhcklucHV0RGF0YQBDbGVhckZvbnRzAENsZWFyAEJ1aWxkAElzQnVpbHQAR2V0VGV4RGF0YUFzQWxwaGE4AEdldFRleERhdGFBc1JHQkEzMgBHZXRHbHlwaFJhbmdlc0RlZmF1bHQAR2V0R2x5cGhSYW5nZXNLb3JlYW4AR2V0R2x5cGhSYW5nZXNKYXBhbmVzZQBHZXRHbHlwaFJhbmdlc0NoaW5lc2VGdWxsAEdldEdseXBoUmFuZ2VzQ2hpbmVzZVNpbXBsaWZpZWRDb21tb24AR2V0R2x5cGhSYW5nZXNDeXJpbGxpYwBHZXRHbHlwaFJhbmdlc1RoYWkATG9ja2VkAEZsYWdzAFRleElEAFRleERlc2lyZWRXaWR0aABUZXhHbHlwaFBhZGRpbmcAVGV4V2lkdGgAVGV4SGVpZ2h0AFRleFV2U2NhbGUAVGV4VXZXaGl0ZVBpeGVsAEl0ZXJhdGVGb250cwBwaXhlbHMAd2lkdGgAaGVpZ2h0AGJ5dGVzX3Blcl9waXhlbABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0loRUUAaWlpaWZpaQBGb250RGF0YQBidWZmZXIAYnl0ZU9mZnNldABieXRlTGVuZ3RoAFRPRE86IEZvbnREYXRhICV6dSAlenUKAEZvbnREYXRhT3duZWRCeUF0bGFzAEZvbnRObwBTaXplUGl4ZWxzAE92ZXJzYW1wbGVIAE92ZXJzYW1wbGVWAFBpeGVsU25hcEgAR2x5cGhFeHRyYVNwYWNpbmcAR2x5cGhPZmZzZXQAR2x5cGhSYW5nZXMAR2x5cGhNaW5BZHZhbmNlWABHbHlwaE1heEFkdmFuY2VYAE1lcmdlTW9kZQBSYXN0ZXJpemVyRmxhZ3MAUmFzdGVyaXplck11bHRpcGx5AE5hbWUAUEsxMUltRm9udEF0bGFzAEltRm9udABGb250U2l6ZQBTY2FsZQBEaXNwbGF5T2Zmc2V0AEl0ZXJhdGVHbHlwaHMARmFsbGJhY2tHbHlwaABGYWxsYmFja0FkdmFuY2VYAEZhbGxiYWNrQ2hhcgBDb25maWdEYXRhQ291bnQASXRlcmF0ZUNvbmZpZ0RhdGEAQXNjZW50AERlc2NlbnQATWV0cmljc1RvdGFsU3VyZmFjZQBDbGVhck91dHB1dERhdGEAQnVpbGRMb29rdXBUYWJsZQBGaW5kR2x5cGgARmluZEdseXBoTm9GYWxsYmFjawBTZXRGYWxsYmFja0NoYXIAR2V0Q2hhckFkdmFuY2UASXNMb2FkZWQAR2V0RGVidWdOYW1lAENhbGNUZXh0U2l6ZUEAQ2FsY1dvcmRXcmFwUG9zaXRpb25BAFJlbmRlckNoYXIAdmlpaWZpaWkAaWlpZmlmAGlpaWZmZmlpaQA8dW5rbm93bj4AUEs2SW1Gb250AFBLMTFJbUZvbnRHbHlwaAAxMUltRm9udEdseXBoAFAxMkltRm9udENvbmZpZwAxMkltRm9udENvbmZpZwBQMTFJbUZvbnRHbHlwaABJbUZvbnRDb25maWcARHN0Rm9udABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShJbUZvbnRDb25maWcgJiwgZW1zY3JpcHRlbjo6dmFsKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShjb25zdCBJbUZvbnRDb25maWcgJikgY29uc3QAUEsxMkltRm9udENvbmZpZwBJbUZvbnRHbHlwaABDb2RlcG9pbnQAQWR2YW5jZVgAWDAAWTAAWDEAWTEAVTAAVjAAVTEAVjEASW1EcmF3RGF0YQBJdGVyYXRlRHJhd0xpc3RzAFZhbGlkAENtZExpc3RzQ291bnQAVG90YWxJZHhDb3VudABUb3RhbFZ0eENvdW50AERpc3BsYXlQb3MARGVJbmRleEFsbEJ1ZmZlcnMAU2NhbGVDbGlwUmVjdHMAUEsxMEltRHJhd0RhdGEAUEsxMEltRHJhd0xpc3QASW1EcmF3TGlzdABJdGVyYXRlRHJhd0NtZHMASWR4QnVmZmVyAFZ0eEJ1ZmZlcgBQdXNoQ2xpcFJlY3RGdWxsU2NyZWVuAFB1c2hUZXh0dXJlSUQAUG9wVGV4dHVyZUlEAEdldENsaXBSZWN0TWluAEdldENsaXBSZWN0TWF4AEFkZExpbmUAQWRkUmVjdABBZGRSZWN0RmlsbGVkAEFkZFJlY3RGaWxsZWRNdWx0aUNvbG9yAEFkZFF1YWQAQWRkUXVhZEZpbGxlZABBZGRUcmlhbmdsZQBBZGRUcmlhbmdsZUZpbGxlZABBZGRDaXJjbGUAQWRkQ2lyY2xlRmlsbGVkAEFkZFRleHRfQQBBZGRUZXh0X0IAQWRkSW1hZ2UAQWRkSW1hZ2VRdWFkAEFkZEltYWdlUm91bmRlZABBZGRQb2x5bGluZQBBZGRDb252ZXhQb2x5RmlsbGVkAEFkZEJlemllckN1cnZlAFBhdGhDbGVhcgBQYXRoTGluZVRvAFBhdGhMaW5lVG9NZXJnZUR1cGxpY2F0ZQBQYXRoRmlsbENvbnZleABQYXRoU3Ryb2tlAFBhdGhBcmNUbwBQYXRoQXJjVG9GYXN0AFBhdGhCZXppZXJDdXJ2ZVRvAFBhdGhSZWN0AENoYW5uZWxzU3BsaXQAQ2hhbm5lbHNNZXJnZQBDaGFubmVsc1NldEN1cnJlbnQAQWRkQ2FsbGJhY2sAQWRkRHJhd0NtZABDbGVhckZyZWVNZW1vcnkAUHJpbVJlc2VydmUAUHJpbVJlY3QAUHJpbVJlY3RVVgBQcmltUXVhZFVWAFByaW1Xcml0ZVZ0eABQcmltV3JpdGVJZHgAUHJpbVZ0eABVcGRhdGVDbGlwUmVjdABVcGRhdGVUZXh0dXJlSUQAdmlpaWlpaWlpaWlpAHZpaWlpZmkAdmlpaWZmZmkAdmlpaWlmAHZpaWlpaWlpZmkAdmlpaWlpaWlpZmkAdmlpaWlpaWlpaWlpaQB2aWlpZmlpaWZpADIzaW1wb3J0X21heWJlX251bGxfdmFsdWVJNkltVmVjNEUAdmlpaWZpaQB2aWlpZmlpZgB2aWlpaWlpAHZpaWlpaWlmAHZpaWlpaWlpZgB2aWlpaWlpaWkAdmlpaWlpZmkAdmlpaWlpZmlmAHZpaWlpaWYATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJY0VFAFBLOUltRHJhd0NtZAA5SW1EcmF3Q21kAEltRHJhd0NtZABFbGVtQ291bnQAQ2xpcFJlY3QAVGV4dHVyZUlkAFA5SW1EcmF3Q21kAEltR3VpTGlzdENsaXBwZXIAU3RhcnRQb3NZAEl0ZW1zSGVpZ2h0AEl0ZW1zQ291bnQAU3RlcE5vAERpc3BsYXlTdGFydABEaXNwbGF5RW5kAFN0ZXAAUDE2SW1HdWlMaXN0Q2xpcHBlcgAxNkltR3VpTGlzdENsaXBwZXIAdmlpaWYAUEsxNkltR3VpTGlzdENsaXBwZXIASW1HdWlTaXplQ2FsbGJhY2tEYXRhAFBvcwBDdXJyZW50U2l6ZQBEZXNpcmVkU2l6ZQBQSzIxSW1HdWlTaXplQ2FsbGJhY2tEYXRhAEltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAEV2ZW50RmxhZwBFdmVudENoYXIARXZlbnRLZXkAQnVmAEJ1ZlRleHRMZW4AQnVmU2l6ZQBCdWZEaXJ0eQBDdXJzb3JQb3MAU2VsZWN0aW9uU3RhcnQAU2VsZWN0aW9uRW5kAERlbGV0ZUNoYXJzAEluc2VydENoYXJzAEhhc1NlbGVjdGlvbgBQSzI2SW1HdWlJbnB1dFRleHRDYWxsYmFja0RhdGEASW1WZWM0AFNldABDb3B5AEVxdWFscwBJbVZlYzIAUDZJbVZlYzIAV3JhcEltR3VpQ29udGV4dABQSzE2V3JhcEltR3VpQ29udGV4dABtYWxsaW5mbwBhcmVuYQBvcmRibGtzAHNtYmxrcwBoYmxrcwBoYmxraGQAdXNtYmxrcwBmc21ibGtzAHVvcmRibGtzAGZvcmRibGtzAGtlZXBjb3N0AHZvaWQAYm9vbABzdGQ6OnN0cmluZwBzdGQ6OmJhc2ljX3N0cmluZzx1bnNpZ25lZCBjaGFyPgBzdGQ6OndzdHJpbmcAZW1zY3JpcHRlbjo6dmFsAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgc2hvcnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgaW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludDE2X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQzMl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZyBkb3VibGU+AE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SWVFRQBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxkb3VibGU+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBsb25nPgBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0ltRUUAZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZz4ATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJbEVFAE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SXRFRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lzRUUATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJYUVFAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGNoYXI+AE5TdDNfXzIxMmJhc2ljX3N0cmluZ0l3TlNfMTFjaGFyX3RyYWl0c0l3RUVOU185YWxsb2NhdG9ySXdFRUVFAE5TdDNfXzIxMmJhc2ljX3N0cmluZ0loTlNfMTFjaGFyX3RyYWl0c0loRUVOU185YWxsb2NhdG9ySWhFRUVFAGRvdWJsZQBmbG9hdAB1bnNpZ25lZCBsb25nAGxvbmcAdW5zaWduZWQgaW50AGludAB1bnNpZ25lZCBzaG9ydABzaG9ydAB1bnNpZ25lZCBjaGFyAHNpZ25lZCBjaGFyAGNoYXIAAAECBAcDBgUALSsgICAwWDB4AChudWxsKQAtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBOQU4ALgBpbmZpbml0eQBuYW4AcndhAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXM6ICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXMAdGVybWluYXRpbmcgd2l0aCAlcyBmb3JlaWduIGV4Y2VwdGlvbgB0ZXJtaW5hdGluZwB1bmNhdWdodABTdDlleGNlcHRpb24ATjEwX19jeHhhYml2MTE2X19zaGltX3R5cGVfaW5mb0UAU3Q5dHlwZV9pbmZvAE4xMF9fY3h4YWJpdjEyMF9fc2lfY2xhc3NfdHlwZV9pbmZvRQBOMTBfX2N4eGFiaXYxMTdfX2NsYXNzX3R5cGVfaW5mb0UAcHRocmVhZF9vbmNlIGZhaWx1cmUgaW4gX19jeGFfZ2V0X2dsb2JhbHNfZmFzdCgpAGNhbm5vdCBjcmVhdGUgcHRocmVhZCBrZXkgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAY2Fubm90IHplcm8gb3V0IHRocmVhZCB2YWx1ZSBmb3IgX19jeGFfZ2V0X2dsb2JhbHMoKQB0ZXJtaW5hdGVfaGFuZGxlciB1bmV4cGVjdGVkbHkgcmV0dXJuZWQAU3QxMWxvZ2ljX2Vycm9yAFN0MTJsZW5ndGhfZXJyb3IATjEwX19jeHhhYml2MTE5X19wb2ludGVyX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19wYmFzZV90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjEyM19fZnVuZGFtZW50YWxfdHlwZV9pbmZvRQB2AFB2AERuAGIAYwBoAGEAcwB0AGkAagBsAG0AZgBkAE4xMF9fY3h4YWJpdjEyMV9fdm1pX2NsYXNzX3R5cGVfaW5mb0U=";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile);}function getBinary(){try{if(Module["wasmBinary"]){return new Uint8Array(Module["wasmBinary"])}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(Module["readBinary"]){return Module["readBinary"](wasmBinaryFile)}else{throw"both async and sync fetching of the wasm failed"}}catch(err){abort(err);}}function getBinaryPromise(){if(!Module["wasmBinary"]&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch==="function"){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()})}return new Promise(function(resolve,reject){resolve(getBinary());})}function createWasm(env){var info={"env":env,"global":{"NaN":NaN,Infinity:Infinity},"global.Math":Math,"asm2wasm":asm2wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;removeRunDependency();}addRunDependency();function receiveInstantiatedSource(output){receiveInstance(output["instance"]);}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason);})}function instantiateAsync(){if(!Module["wasmBinary"]&&typeof WebAssembly.instantiateStreaming==="function"&&!isDataURI(wasmBinaryFile)&&typeof fetch==="function"){return WebAssembly.instantiateStreaming(fetch(wasmBinaryFile,{credentials:"same-origin"}),info).then(receiveInstantiatedSource,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");instantiateArrayBuffer(receiveInstantiatedSource);})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module["instantiateWasm"]){try{return Module["instantiateWasm"](info,receiveInstance)}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}}instantiateAsync();return {}}Module["asm"]=function(global,env,providedBuffer){env["memory"]=wasmMemory;env["table"]=wasmTable=new WebAssembly.Table({"initial":1442,"maximum":1442,"element":"anyfunc"});env["__memory_base"]=1024;env["__table_base"]=0;var exports=createWasm(env);return exports};__ATINIT__.push({func:function(){globalCtors();}});function ___cxa_allocate_exception(size){return _malloc(size)}function ___cxa_throw(ptr,type,destructor){throw ptr}function ___lock(){}var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0;}else{buffer.push(curr);}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get();}};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall145(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();return SYSCALLS.doReadv(stream,iov,iovcnt)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j>2]=value;return value}function ___syscall221(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___unlock(){}function getShiftFromSize(size){switch(size){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError("Unknown type size: "+size)}}function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<256;++i){codes[i]=String.fromCharCode(i);}embind_charCodes=codes;}var embind_charCodes=undefined;function readLatin1String(ptr){var ret="";var c=ptr;while(HEAPU8[c]){ret+=embind_charCodes[HEAPU8[c++]];}return ret}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return "_unknown"}name=name.replace(/[^a-zA-Z0-9_]/g,"$");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return "_"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return new Function("body","return function "+name+"() {\n"+' "use strict";'+" return body.apply(this, arguments);\n"+"};\n")(body)}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+"\n"+stack.replace(/^Error(:[^\n]*)?\n/,"");}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+": "+this.message}};return errorClass}var BindingError=undefined;function throwBindingError(message){throw new BindingError(message)}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes;});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError("Mismatched type converter count");}for(var i=0;i>shift])},destructorFunction:null});}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass;}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass;}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return {count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+" instance already deleted");}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr);}else{$$.ptrType.registeredClass.rawDestructor($$.ptr);}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$);}}function attachFinalizer(handle){if("undefined"===typeof FinalizationGroup){attachFinalizer=function(handle){return handle};return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn("object already deleted: "+$$.ptr);}else{releaseClassHandle($$);}}});attachFinalizer=function(handle){finalizationGroup.register(handle,handle.$$,handle.$$);return handle};detachFinalizer=function(handle){finalizationGroup.unregister(handle.$$);};return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined;}}function ClassHandle_isDeleted(){return !this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj["delete"]();}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes);}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype["isAliasOf"]=ClassHandle_isAliasOf;ClassHandle.prototype["clone"]=ClassHandle_clone;ClassHandle.prototype["delete"]=ClassHandle_delete;ClassHandle.prototype["isDeleted"]=ClassHandle_isDeleted;ClassHandle.prototype["deleteLater"]=ClassHandle_deleteLater;}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError("Function '"+humanName+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+proto[methodName].overloadTable+")!");}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc;}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError("Cannot register public name '"+name+"' twice");}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError("Cannot register multiple overloads of a function with the same number of arguments ("+numArguments+")!");}Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments;}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[];}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError("Expected null or instance of "+desiredClass.name+", got an instance of "+ptrClass.name);}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass;}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr);}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError("Passing raw pointer to smart pointer is illegal");}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{var clonedHandle=handle["clone"]();ptr=this.rawShare(ptr,__emval_register(function(){clonedHandle["delete"]();}));if(destructors!==null){destructors.push(this.rawDestructor,ptr);}}break;default:throwBindingError("Unsupporting sharing policy");}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+handle.$$.ptrType.name+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function simpleReadValueFromPointer(pointer){return this["fromWireType"](HEAPU32[pointer>>2])}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr);}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr);}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle["delete"]();}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k]);}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes);}}function init_embind(){Module["getInheritedInstanceCount"]=getInheritedInstanceCount;Module["getLiveInheritedInstances"]=getLiveInheritedInstances;Module["flushPendingDeletes"]=flushPendingDeletes;Module["setDelayFunction"]=setDelayFunction;}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError("ptr should not be undefined");}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass;}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError("makeClassHandle requires ptr and ptrType");}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError("Both smartPtrType and smartPtr must be specified");}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance["clone"]()}else{var rv=registeredInstance["clone"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType;}else{toType=registeredPointerRecord.pointerType;}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype["argPackAdvance"]=8;RegisteredPointer.prototype["readValueFromPointer"]=simpleReadValueFromPointer;RegisteredPointer.prototype["deleteObject"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype["fromWireType"]=RegisteredPointer_fromWireType;}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this["toWireType"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}else{this["toWireType"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}}else{this["toWireType"]=genericPointerToWireType;}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError("Replacing nonexistant public symbol");}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;Module[name].argCount=numArguments;}}function embind__requireFunction(signature,rawFunction){signature=readLatin1String(signature);function makeDynCaller(dynCall){var args=[];for(var i=1;i>2)+i]);}return array}function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr);}}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName="constructor "+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[];}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError("Cannot register multiple constructors with identical number of parameters ("+(argCount-1)+") for class '"+classType.name+"'! Overload resolution is currently only performed using the parameter count, not actual type info!")}classType.registeredClass.constructor_body[argCount-1]=function unboundTypeHandler(){throwUnboundTypeError("Cannot construct "+classType.name+" due to unbound types",rawArgTypes);};whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){classType.registeredClass.constructor_body[argCount-1]=function constructor_body(){if(arguments.length!==argCount-1){throwBindingError(humanName+" called with "+arguments.length+" arguments, expected "+(argCount-1));}var destructors=[];var args=new Array(argCount);args[0]=rawConstructor;for(var i=1;i0?", ":"")+argsListWired;}invokerFnBody+=(returns?"var rv = ":"")+"invoker(fn"+(argsListWired.length>0?", ":"")+argsListWired+");\n";if(needsDestructorStack){invokerFnBody+="runDestructors(destructors);\n";}else{for(var i=isClassMethodFunc?1:2;i4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle);}}function count_emval_handles(){var count=0;for(var i=5;i>2])};case 3:return function(pointer){return this["fromWireType"](HEAPF64[pointer>>3])};default:throw new TypeError("Unknown float type: "+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":function(value){return value},"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}return value},"argPackAdvance":8,"readValueFromPointer":floatReadValueFromPointer(name,shift),destructorFunction:null});}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError("Cannot call "+name+" due to unbound types",argTypes);},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return []});}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError("Unknown integer type: "+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295;}var shift=getShiftFromSize(size);var fromWireType=function(value){return value};if(minRange===0){var bitshift=32-8*size;fromWireType=function(value){return value<>>bitshift};}var isUnsignedType=name.indexOf("unsigned")!=-1;registerType(primitiveType,{name:name,"fromWireType":fromWireType,"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}if(valuemaxRange){throw new TypeError('Passing a number "'+_embind_repr(value)+'" from JS side to C/C++ side to an argument of type "'+name+'", which is outside the valid range ['+minRange+", "+maxRange+"]!")}return isUnsignedType?value>>>0:value|0},"argPackAdvance":8,"readValueFromPointer":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null});}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(heap["buffer"],data,size)}name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":decodeMemoryView,"argPackAdvance":8,"readValueFromPointer":decodeMemoryView},{ignoreDuplicateRegistrations:true});}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name==="std::string";registerType(rawType,{name:name,"fromWireType":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var endChar=HEAPU8[value+4+length];var endCharSwap=0;if(endChar!=0){endCharSwap=endChar;HEAPU8[value+4+length]=0;}var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(HEAPU8[currentBytePtr]==0){var stringSegment=UTF8ToString(decodeStartPtr);if(str===undefined)str=stringSegment;else{str+=String.fromCharCode(0);str+=stringSegment;}decodeStartPtr=currentBytePtr+1;}}if(endCharSwap!=0)HEAPU8[value+4+length]=endCharSwap;}else{var a=new Array(length);for(var i=0;i>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1);}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError("String has UTF-16 code units that do not fit in 8 bits");}HEAPU8[ptr+4+i]=charCode;}}else{for(var i=0;i>2];var a=new Array(length);var start=value+4>>shift;for(var i=0;i>2]=length;var start=ptr+4>>shift;for(var i=0;i>2]=rd;return returnType["toWireType"](destructors,handle)}function __emval_lookupTypes(argCount,argTypes,argWireTypes){var a=new Array(argCount);for(var i=0;i>2)+i],"parameter "+i);}return a}function __emval_call(handle,argCount,argTypes,argv){handle=requireHandle(handle);var types=__emval_lookupTypes(argCount,argTypes);var args=new Array(argCount);for(var i=0;i4){emval_handle_array[handle].refcount+=1;}}function __emval_new_array(){return __emval_register([])}function __emval_new_cstring(v){return __emval_register(getStringOrSymbol(v))}function __emval_new_object(){return __emval_register({})}function __emval_run_destructors(handle){var destructors=emval_handle_array[handle].value;runDestructors(destructors);__emval_decref(handle);}function __emval_set_property(handle,key,value){handle=requireHandle(handle);key=requireHandle(key);value=requireHandle(value);handle[key]=value;}function __emval_strictly_equals(first,second){first=requireHandle(first);second=requireHandle(second);return first===second}function __emval_take_value(type,argv){type=requireRegisteredType(type,"_emval_take_value");var v=type["readValueFromPointer"](argv);return __emval_register(v)}function __emval_typeof(handle){handle=requireHandle(handle);return __emval_register(typeof handle)}function _abort(){Module["abort"]();}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest);}function abortOnCannotGrowMemory(requestedSize){abort("OOM");}function _emscripten_resize_heap(requestedSize){abortOnCannotGrowMemory();}embind_init_charCodes();BindingError=Module["BindingError"]=extendError(Error,"BindingError");InternalError=Module["InternalError"]=extendError(Error,"InternalError");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module["UnboundTypeError"]=extendError(Error,"UnboundTypeError");init_emval();function intArrayToString(array){var ret=[];for(var i=0;i255){chr&=255;}ret.push(String.fromCharCode(chr));}return ret.join("")}var decodeBase64=typeof atob==="function"?atob:function(input){var keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2);}if(enc4!==64){output=output+String.fromCharCode(chr3);}}while(i0){return}preRun();if(runDependencies>0)return;if(Module["calledRun"])return;function doRun(){if(Module["calledRun"])return;Module["calledRun"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun();}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("");},1);doRun();},1);}else{doRun();}}Module["run"]=run;function abort(what){if(Module["onAbort"]){Module["onAbort"](what);}if(what!==undefined){out(what);err(what);what=JSON.stringify(what);}else{what="";}ABORT=true;throw"abort("+what+"). Build with -s ASSERTIONS=1 for more info."}Module["abort"]=abort;if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()();}}Module["noExitRuntime"]=true;run(); + + + return Module +} +); +})(); +module.exports = Module; +}); + +let bind; +const IMGUI_VERSION = "1.71"; // bind.IMGUI_VERSION; +// #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert)) +function IMGUI_CHECKVERSION() { return DebugCheckVersionAndDataLayout(IMGUI_VERSION, bind.ImGuiIOSize, bind.ImGuiStyleSize, bind.ImVec2Size, bind.ImVec4Size, bind.ImDrawVertSize, bind.ImDrawIdxSize); } +function IM_ASSERT(_EXPR) { if (!_EXPR) { + throw new Error(); +} } +function IM_ARRAYSIZE(_ARR) { + if (_ARR instanceof ImStringBuffer) { + return _ARR.size; + } + else { + return _ARR.length; + } +} +class ImStringBuffer { + constructor(size, buffer = "") { + this.size = size; + this.buffer = buffer; + } +} +var ImGuiWindowFlags; +(function (ImGuiWindowFlags) { + ImGuiWindowFlags[ImGuiWindowFlags["None"] = 0] = "None"; + ImGuiWindowFlags[ImGuiWindowFlags["NoTitleBar"] = 1] = "NoTitleBar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoResize"] = 2] = "NoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMove"] = 4] = "NoMove"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollbar"] = 8] = "NoScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollWithMouse"] = 16] = "NoScrollWithMouse"; + ImGuiWindowFlags[ImGuiWindowFlags["NoCollapse"] = 32] = "NoCollapse"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysAutoResize"] = 64] = "AlwaysAutoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBackground"] = 128] = "NoBackground"; + ImGuiWindowFlags[ImGuiWindowFlags["NoSavedSettings"] = 256] = "NoSavedSettings"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMouseInputs"] = 512] = "NoMouseInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["MenuBar"] = 1024] = "MenuBar"; + ImGuiWindowFlags[ImGuiWindowFlags["HorizontalScrollbar"] = 2048] = "HorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoFocusOnAppearing"] = 4096] = "NoFocusOnAppearing"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBringToFrontOnFocus"] = 8192] = "NoBringToFrontOnFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysVerticalScrollbar"] = 16384] = "AlwaysVerticalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysHorizontalScrollbar"] = 32768] = "AlwaysHorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysUseWindowPadding"] = 65536] = "AlwaysUseWindowPadding"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavInputs"] = 262144] = "NoNavInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavFocus"] = 524288] = "NoNavFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["UnsavedDocument"] = 1048576] = "UnsavedDocument"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNav"] = 786432] = "NoNav"; + ImGuiWindowFlags[ImGuiWindowFlags["NoDecoration"] = 43] = "NoDecoration"; + ImGuiWindowFlags[ImGuiWindowFlags["NoInputs"] = 786944] = "NoInputs"; + // [Internal] + ImGuiWindowFlags[ImGuiWindowFlags["NavFlattened"] = 8388608] = "NavFlattened"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildWindow"] = 16777216] = "ChildWindow"; + ImGuiWindowFlags[ImGuiWindowFlags["Tooltip"] = 33554432] = "Tooltip"; + ImGuiWindowFlags[ImGuiWindowFlags["Popup"] = 67108864] = "Popup"; + ImGuiWindowFlags[ImGuiWindowFlags["Modal"] = 134217728] = "Modal"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildMenu"] = 268435456] = "ChildMenu"; +})(ImGuiWindowFlags || (ImGuiWindowFlags = {})); +var ImGuiInputTextFlags; +(function (ImGuiInputTextFlags) { + ImGuiInputTextFlags[ImGuiInputTextFlags["None"] = 0] = "None"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsDecimal"] = 1] = "CharsDecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsHexadecimal"] = 2] = "CharsHexadecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsUppercase"] = 4] = "CharsUppercase"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsNoBlank"] = 8] = "CharsNoBlank"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AutoSelectAll"] = 16] = "AutoSelectAll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["EnterReturnsTrue"] = 32] = "EnterReturnsTrue"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCompletion"] = 64] = "CallbackCompletion"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackHistory"] = 128] = "CallbackHistory"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackAlways"] = 256] = "CallbackAlways"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCharFilter"] = 512] = "CallbackCharFilter"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AllowTabInput"] = 1024] = "AllowTabInput"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CtrlEnterForNewLine"] = 2048] = "CtrlEnterForNewLine"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoHorizontalScroll"] = 4096] = "NoHorizontalScroll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AlwaysInsertMode"] = 8192] = "AlwaysInsertMode"; + ImGuiInputTextFlags[ImGuiInputTextFlags["ReadOnly"] = 16384] = "ReadOnly"; + ImGuiInputTextFlags[ImGuiInputTextFlags["Password"] = 32768] = "Password"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoUndoRedo"] = 65536] = "NoUndoRedo"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsScientific"] = 131072] = "CharsScientific"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackResize"] = 262144] = "CallbackResize"; + // [Internal] + ImGuiInputTextFlags[ImGuiInputTextFlags["Multiline"] = 1048576] = "Multiline"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoMarkEdited"] = 2097152] = "NoMarkEdited"; +})(ImGuiInputTextFlags || (ImGuiInputTextFlags = {})); +var ImGuiTreeNodeFlags; +(function (ImGuiTreeNodeFlags) { + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["None"] = 0] = "None"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Selected"] = 1] = "Selected"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Framed"] = 2] = "Framed"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["AllowItemOverlap"] = 4] = "AllowItemOverlap"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoTreePushOnOpen"] = 8] = "NoTreePushOnOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoAutoOpenOnLog"] = 16] = "NoAutoOpenOnLog"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["DefaultOpen"] = 32] = "DefaultOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnDoubleClick"] = 64] = "OpenOnDoubleClick"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnArrow"] = 128] = "OpenOnArrow"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Leaf"] = 256] = "Leaf"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Bullet"] = 512] = "Bullet"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["FramePadding"] = 1024] = "FramePadding"; + //SpanAllAvailWidth = 1 << 11, // FIXME: TODO: Extend hit box horizontally even if not framed + //NoScrollOnOpen = 1 << 12, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NavLeftJumpsBackHere"] = 8192] = "NavLeftJumpsBackHere"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["CollapsingHeader"] = 26] = "CollapsingHeader"; +})(ImGuiTreeNodeFlags || (ImGuiTreeNodeFlags = {})); +var ImGuiSelectableFlags; +(function (ImGuiSelectableFlags) { + ImGuiSelectableFlags[ImGuiSelectableFlags["None"] = 0] = "None"; + ImGuiSelectableFlags[ImGuiSelectableFlags["DontClosePopups"] = 1] = "DontClosePopups"; + ImGuiSelectableFlags[ImGuiSelectableFlags["SpanAllColumns"] = 2] = "SpanAllColumns"; + ImGuiSelectableFlags[ImGuiSelectableFlags["AllowDoubleClick"] = 4] = "AllowDoubleClick"; + ImGuiSelectableFlags[ImGuiSelectableFlags["Disabled"] = 8] = "Disabled"; // Cannot be selected, display greyed out text +})(ImGuiSelectableFlags || (ImGuiSelectableFlags = {})); +var ImGuiComboFlags; +(function (ImGuiComboFlags) { + ImGuiComboFlags[ImGuiComboFlags["None"] = 0] = "None"; + ImGuiComboFlags[ImGuiComboFlags["PopupAlignLeft"] = 1] = "PopupAlignLeft"; + ImGuiComboFlags[ImGuiComboFlags["HeightSmall"] = 2] = "HeightSmall"; + ImGuiComboFlags[ImGuiComboFlags["HeightRegular"] = 4] = "HeightRegular"; + ImGuiComboFlags[ImGuiComboFlags["HeightLarge"] = 8] = "HeightLarge"; + ImGuiComboFlags[ImGuiComboFlags["HeightLargest"] = 16] = "HeightLargest"; + ImGuiComboFlags[ImGuiComboFlags["NoArrowButton"] = 32] = "NoArrowButton"; + ImGuiComboFlags[ImGuiComboFlags["NoPreview"] = 64] = "NoPreview"; + ImGuiComboFlags[ImGuiComboFlags["HeightMask_"] = 30] = "HeightMask_"; +})(ImGuiComboFlags || (ImGuiComboFlags = {})); +var ImGuiTabBarFlags; +(function (ImGuiTabBarFlags) { + ImGuiTabBarFlags[ImGuiTabBarFlags["None"] = 0] = "None"; + ImGuiTabBarFlags[ImGuiTabBarFlags["Reorderable"] = 1] = "Reorderable"; + ImGuiTabBarFlags[ImGuiTabBarFlags["AutoSelectNewTabs"] = 2] = "AutoSelectNewTabs"; + ImGuiTabBarFlags[ImGuiTabBarFlags["TabListPopupButton"] = 4] = "TabListPopupButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoCloseWithMiddleMouseButton"] = 8] = "NoCloseWithMiddleMouseButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTabListScrollingButtons"] = 16] = "NoTabListScrollingButtons"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTooltip"] = 32] = "NoTooltip"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyResizeDown"] = 64] = "FittingPolicyResizeDown"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyScroll"] = 128] = "FittingPolicyScroll"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyMask_"] = 192] = "FittingPolicyMask_"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyDefault_"] = 64] = "FittingPolicyDefault_"; +})(ImGuiTabBarFlags || (ImGuiTabBarFlags = {})); +var ImGuiTabItemFlags; +(function (ImGuiTabItemFlags) { + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_None"] = 0] = "ImGuiTabItemFlags_None"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_UnsavedDocument"] = 1] = "ImGuiTabItemFlags_UnsavedDocument"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_SetSelected"] = 2] = "ImGuiTabItemFlags_SetSelected"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"] = 4] = "ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoPushId"] = 8] = "ImGuiTabItemFlags_NoPushId"; // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem() +})(ImGuiTabItemFlags || (ImGuiTabItemFlags = {})); +var ImGuiFocusedFlags; +(function (ImGuiFocusedFlags) { + ImGuiFocusedFlags[ImGuiFocusedFlags["None"] = 0] = "None"; + ImGuiFocusedFlags[ImGuiFocusedFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiFocusedFlags || (ImGuiFocusedFlags = {})); +var ImGuiHoveredFlags; +(function (ImGuiHoveredFlags) { + ImGuiHoveredFlags[ImGuiHoveredFlags["None"] = 0] = "None"; + ImGuiHoveredFlags[ImGuiHoveredFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByPopup"] = 8] = "AllowWhenBlockedByPopup"; + //AllowWhenBlockedByModal = 1 << 4, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet. + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByActiveItem"] = 32] = "AllowWhenBlockedByActiveItem"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenOverlapped"] = 64] = "AllowWhenOverlapped"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenDisabled"] = 128] = "AllowWhenDisabled"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RectOnly"] = 104] = "RectOnly"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiHoveredFlags || (ImGuiHoveredFlags = {})); +var ImGuiDragDropFlags; +(function (ImGuiDragDropFlags) { + // BeginDragDropSource() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["None"] = 0] = "None"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoPreviewTooltip"] = 1] = "SourceNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoDisableHover"] = 2] = "SourceNoDisableHover"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoHoldToOpenOthers"] = 4] = "SourceNoHoldToOpenOthers"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAllowNullID"] = 8] = "SourceAllowNullID"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceExtern"] = 16] = "SourceExtern"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAutoExpirePayload"] = 32] = "SourceAutoExpirePayload"; + // AcceptDragDropPayload() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptBeforeDelivery"] = 1024] = "AcceptBeforeDelivery"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoDrawDefaultRect"] = 2048] = "AcceptNoDrawDefaultRect"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoPreviewTooltip"] = 4096] = "AcceptNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptPeekOnly"] = 3072] = "AcceptPeekOnly"; +})(ImGuiDragDropFlags || (ImGuiDragDropFlags = {})); +var ImGuiDataType; +(function (ImGuiDataType) { + ImGuiDataType[ImGuiDataType["S8"] = 0] = "S8"; + ImGuiDataType[ImGuiDataType["U8"] = 1] = "U8"; + ImGuiDataType[ImGuiDataType["S16"] = 2] = "S16"; + ImGuiDataType[ImGuiDataType["U16"] = 3] = "U16"; + ImGuiDataType[ImGuiDataType["S32"] = 4] = "S32"; + ImGuiDataType[ImGuiDataType["U32"] = 5] = "U32"; + ImGuiDataType[ImGuiDataType["S64"] = 6] = "S64"; + ImGuiDataType[ImGuiDataType["U64"] = 7] = "U64"; + ImGuiDataType[ImGuiDataType["Float"] = 8] = "Float"; + ImGuiDataType[ImGuiDataType["Double"] = 9] = "Double"; + ImGuiDataType[ImGuiDataType["COUNT"] = 10] = "COUNT"; +})(ImGuiDataType || (ImGuiDataType = {})); +var ImGuiDir; +(function (ImGuiDir) { + ImGuiDir[ImGuiDir["None"] = -1] = "None"; + ImGuiDir[ImGuiDir["Left"] = 0] = "Left"; + ImGuiDir[ImGuiDir["Right"] = 1] = "Right"; + ImGuiDir[ImGuiDir["Up"] = 2] = "Up"; + ImGuiDir[ImGuiDir["Down"] = 3] = "Down"; + ImGuiDir[ImGuiDir["COUNT"] = 4] = "COUNT"; +})(ImGuiDir || (ImGuiDir = {})); +var ImGuiKey; +(function (ImGuiKey) { + ImGuiKey[ImGuiKey["Tab"] = 0] = "Tab"; + ImGuiKey[ImGuiKey["LeftArrow"] = 1] = "LeftArrow"; + ImGuiKey[ImGuiKey["RightArrow"] = 2] = "RightArrow"; + ImGuiKey[ImGuiKey["UpArrow"] = 3] = "UpArrow"; + ImGuiKey[ImGuiKey["DownArrow"] = 4] = "DownArrow"; + ImGuiKey[ImGuiKey["PageUp"] = 5] = "PageUp"; + ImGuiKey[ImGuiKey["PageDown"] = 6] = "PageDown"; + ImGuiKey[ImGuiKey["Home"] = 7] = "Home"; + ImGuiKey[ImGuiKey["End"] = 8] = "End"; + ImGuiKey[ImGuiKey["Insert"] = 9] = "Insert"; + ImGuiKey[ImGuiKey["Delete"] = 10] = "Delete"; + ImGuiKey[ImGuiKey["Backspace"] = 11] = "Backspace"; + ImGuiKey[ImGuiKey["Space"] = 12] = "Space"; + ImGuiKey[ImGuiKey["Enter"] = 13] = "Enter"; + ImGuiKey[ImGuiKey["Escape"] = 14] = "Escape"; + ImGuiKey[ImGuiKey["A"] = 15] = "A"; + ImGuiKey[ImGuiKey["C"] = 16] = "C"; + ImGuiKey[ImGuiKey["V"] = 17] = "V"; + ImGuiKey[ImGuiKey["X"] = 18] = "X"; + ImGuiKey[ImGuiKey["Y"] = 19] = "Y"; + ImGuiKey[ImGuiKey["Z"] = 20] = "Z"; + ImGuiKey[ImGuiKey["COUNT"] = 21] = "COUNT"; +})(ImGuiKey || (ImGuiKey = {})); +var ImGuiNavInput; +(function (ImGuiNavInput) { + // Gamepad Mapping + ImGuiNavInput[ImGuiNavInput["Activate"] = 0] = "Activate"; + ImGuiNavInput[ImGuiNavInput["Cancel"] = 1] = "Cancel"; + ImGuiNavInput[ImGuiNavInput["Input"] = 2] = "Input"; + ImGuiNavInput[ImGuiNavInput["Menu"] = 3] = "Menu"; + ImGuiNavInput[ImGuiNavInput["DpadLeft"] = 4] = "DpadLeft"; + ImGuiNavInput[ImGuiNavInput["DpadRight"] = 5] = "DpadRight"; + ImGuiNavInput[ImGuiNavInput["DpadUp"] = 6] = "DpadUp"; + ImGuiNavInput[ImGuiNavInput["DpadDown"] = 7] = "DpadDown"; + ImGuiNavInput[ImGuiNavInput["LStickLeft"] = 8] = "LStickLeft"; + ImGuiNavInput[ImGuiNavInput["LStickRight"] = 9] = "LStickRight"; + ImGuiNavInput[ImGuiNavInput["LStickUp"] = 10] = "LStickUp"; + ImGuiNavInput[ImGuiNavInput["LStickDown"] = 11] = "LStickDown"; + ImGuiNavInput[ImGuiNavInput["FocusPrev"] = 12] = "FocusPrev"; + ImGuiNavInput[ImGuiNavInput["FocusNext"] = 13] = "FocusNext"; + ImGuiNavInput[ImGuiNavInput["TweakSlow"] = 14] = "TweakSlow"; + ImGuiNavInput[ImGuiNavInput["TweakFast"] = 15] = "TweakFast"; + // [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them. + // Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) may be directly reading from io.KeyDown[] instead of io.NavInputs[]. + ImGuiNavInput[ImGuiNavInput["KeyMenu_"] = 16] = "KeyMenu_"; + ImGuiNavInput[ImGuiNavInput["KeyTab_"] = 17] = "KeyTab_"; + ImGuiNavInput[ImGuiNavInput["KeyLeft_"] = 18] = "KeyLeft_"; + ImGuiNavInput[ImGuiNavInput["KeyRight_"] = 19] = "KeyRight_"; + ImGuiNavInput[ImGuiNavInput["KeyUp_"] = 20] = "KeyUp_"; + ImGuiNavInput[ImGuiNavInput["KeyDown_"] = 21] = "KeyDown_"; + ImGuiNavInput[ImGuiNavInput["COUNT"] = 22] = "COUNT"; + ImGuiNavInput[ImGuiNavInput["InternalStart_"] = 16] = "InternalStart_"; +})(ImGuiNavInput || (ImGuiNavInput = {})); +var ImGuiConfigFlags; +(function (ImGuiConfigFlags) { + ImGuiConfigFlags[ImGuiConfigFlags["None"] = 0] = "None"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableKeyboard"] = 1] = "NavEnableKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableGamepad"] = 2] = "NavEnableGamepad"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableSetMousePos"] = 4] = "NavEnableSetMousePos"; + ImGuiConfigFlags[ImGuiConfigFlags["NavNoCaptureKeyboard"] = 8] = "NavNoCaptureKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouse"] = 16] = "NoMouse"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouseCursorChange"] = 32] = "NoMouseCursorChange"; + ImGuiConfigFlags[ImGuiConfigFlags["IsSRGB"] = 1048576] = "IsSRGB"; + ImGuiConfigFlags[ImGuiConfigFlags["IsTouchScreen"] = 2097152] = "IsTouchScreen"; // Application is using a touch screen instead of a mouse. +})(ImGuiConfigFlags || (ImGuiConfigFlags = {})); +var ImGuiCol; +(function (ImGuiCol) { + ImGuiCol[ImGuiCol["Text"] = 0] = "Text"; + ImGuiCol[ImGuiCol["TextDisabled"] = 1] = "TextDisabled"; + ImGuiCol[ImGuiCol["WindowBg"] = 2] = "WindowBg"; + ImGuiCol[ImGuiCol["ChildBg"] = 3] = "ChildBg"; + ImGuiCol[ImGuiCol["PopupBg"] = 4] = "PopupBg"; + ImGuiCol[ImGuiCol["Border"] = 5] = "Border"; + ImGuiCol[ImGuiCol["BorderShadow"] = 6] = "BorderShadow"; + ImGuiCol[ImGuiCol["FrameBg"] = 7] = "FrameBg"; + ImGuiCol[ImGuiCol["FrameBgHovered"] = 8] = "FrameBgHovered"; + ImGuiCol[ImGuiCol["FrameBgActive"] = 9] = "FrameBgActive"; + ImGuiCol[ImGuiCol["TitleBg"] = 10] = "TitleBg"; + ImGuiCol[ImGuiCol["TitleBgActive"] = 11] = "TitleBgActive"; + ImGuiCol[ImGuiCol["TitleBgCollapsed"] = 12] = "TitleBgCollapsed"; + ImGuiCol[ImGuiCol["MenuBarBg"] = 13] = "MenuBarBg"; + ImGuiCol[ImGuiCol["ScrollbarBg"] = 14] = "ScrollbarBg"; + ImGuiCol[ImGuiCol["ScrollbarGrab"] = 15] = "ScrollbarGrab"; + ImGuiCol[ImGuiCol["ScrollbarGrabHovered"] = 16] = "ScrollbarGrabHovered"; + ImGuiCol[ImGuiCol["ScrollbarGrabActive"] = 17] = "ScrollbarGrabActive"; + ImGuiCol[ImGuiCol["CheckMark"] = 18] = "CheckMark"; + ImGuiCol[ImGuiCol["SliderGrab"] = 19] = "SliderGrab"; + ImGuiCol[ImGuiCol["SliderGrabActive"] = 20] = "SliderGrabActive"; + ImGuiCol[ImGuiCol["Button"] = 21] = "Button"; + ImGuiCol[ImGuiCol["ButtonHovered"] = 22] = "ButtonHovered"; + ImGuiCol[ImGuiCol["ButtonActive"] = 23] = "ButtonActive"; + ImGuiCol[ImGuiCol["Header"] = 24] = "Header"; + ImGuiCol[ImGuiCol["HeaderHovered"] = 25] = "HeaderHovered"; + ImGuiCol[ImGuiCol["HeaderActive"] = 26] = "HeaderActive"; + ImGuiCol[ImGuiCol["Separator"] = 27] = "Separator"; + ImGuiCol[ImGuiCol["SeparatorHovered"] = 28] = "SeparatorHovered"; + ImGuiCol[ImGuiCol["SeparatorActive"] = 29] = "SeparatorActive"; + ImGuiCol[ImGuiCol["ResizeGrip"] = 30] = "ResizeGrip"; + ImGuiCol[ImGuiCol["ResizeGripHovered"] = 31] = "ResizeGripHovered"; + ImGuiCol[ImGuiCol["ResizeGripActive"] = 32] = "ResizeGripActive"; + ImGuiCol[ImGuiCol["Tab"] = 33] = "Tab"; + ImGuiCol[ImGuiCol["TabHovered"] = 34] = "TabHovered"; + ImGuiCol[ImGuiCol["TabActive"] = 35] = "TabActive"; + ImGuiCol[ImGuiCol["TabUnfocused"] = 36] = "TabUnfocused"; + ImGuiCol[ImGuiCol["TabUnfocusedActive"] = 37] = "TabUnfocusedActive"; + ImGuiCol[ImGuiCol["PlotLines"] = 38] = "PlotLines"; + ImGuiCol[ImGuiCol["PlotLinesHovered"] = 39] = "PlotLinesHovered"; + ImGuiCol[ImGuiCol["PlotHistogram"] = 40] = "PlotHistogram"; + ImGuiCol[ImGuiCol["PlotHistogramHovered"] = 41] = "PlotHistogramHovered"; + ImGuiCol[ImGuiCol["TextSelectedBg"] = 42] = "TextSelectedBg"; + ImGuiCol[ImGuiCol["DragDropTarget"] = 43] = "DragDropTarget"; + ImGuiCol[ImGuiCol["NavHighlight"] = 44] = "NavHighlight"; + ImGuiCol[ImGuiCol["NavWindowingHighlight"] = 45] = "NavWindowingHighlight"; + ImGuiCol[ImGuiCol["NavWindowingDimBg"] = 46] = "NavWindowingDimBg"; + ImGuiCol[ImGuiCol["ModalWindowDimBg"] = 47] = "ModalWindowDimBg"; + ImGuiCol[ImGuiCol["COUNT"] = 48] = "COUNT"; +})(ImGuiCol || (ImGuiCol = {})); +var ImGuiStyleVar; +(function (ImGuiStyleVar) { + // Enum name ......................// Member in ImGuiStyle structure (see ImGuiStyle for descriptions) + ImGuiStyleVar[ImGuiStyleVar["Alpha"] = 0] = "Alpha"; + ImGuiStyleVar[ImGuiStyleVar["WindowPadding"] = 1] = "WindowPadding"; + ImGuiStyleVar[ImGuiStyleVar["WindowRounding"] = 2] = "WindowRounding"; + ImGuiStyleVar[ImGuiStyleVar["WindowBorderSize"] = 3] = "WindowBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowMinSize"] = 4] = "WindowMinSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowTitleAlign"] = 5] = "WindowTitleAlign"; + // WindowMenuButtonPosition, // ImGuiDir WindowMenuButtonPosition + ImGuiStyleVar[ImGuiStyleVar["ChildRounding"] = 6] = "ChildRounding"; + ImGuiStyleVar[ImGuiStyleVar["ChildBorderSize"] = 7] = "ChildBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["PopupRounding"] = 8] = "PopupRounding"; + ImGuiStyleVar[ImGuiStyleVar["PopupBorderSize"] = 9] = "PopupBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["FramePadding"] = 10] = "FramePadding"; + ImGuiStyleVar[ImGuiStyleVar["FrameRounding"] = 11] = "FrameRounding"; + ImGuiStyleVar[ImGuiStyleVar["FrameBorderSize"] = 12] = "FrameBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["ItemSpacing"] = 13] = "ItemSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ItemInnerSpacing"] = 14] = "ItemInnerSpacing"; + ImGuiStyleVar[ImGuiStyleVar["IndentSpacing"] = 15] = "IndentSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarSize"] = 16] = "ScrollbarSize"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarRounding"] = 17] = "ScrollbarRounding"; + ImGuiStyleVar[ImGuiStyleVar["GrabMinSize"] = 18] = "GrabMinSize"; + ImGuiStyleVar[ImGuiStyleVar["GrabRounding"] = 19] = "GrabRounding"; + ImGuiStyleVar[ImGuiStyleVar["TabRounding"] = 20] = "TabRounding"; + ImGuiStyleVar[ImGuiStyleVar["ButtonTextAlign"] = 21] = "ButtonTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["SelectableTextAlign"] = 22] = "SelectableTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["Count_"] = 23] = "Count_"; + ImGuiStyleVar[ImGuiStyleVar["COUNT"] = 23] = "COUNT"; +})(ImGuiStyleVar || (ImGuiStyleVar = {})); +var ImGuiBackendFlags; +(function (ImGuiBackendFlags) { + ImGuiBackendFlags[ImGuiBackendFlags["None"] = 0] = "None"; + ImGuiBackendFlags[ImGuiBackendFlags["HasGamepad"] = 1] = "HasGamepad"; + ImGuiBackendFlags[ImGuiBackendFlags["HasMouseCursors"] = 2] = "HasMouseCursors"; + ImGuiBackendFlags[ImGuiBackendFlags["HasSetMousePos"] = 4] = "HasSetMousePos"; + ImGuiBackendFlags[ImGuiBackendFlags["RendererHasVtxOffset"] = 8] = "RendererHasVtxOffset"; +})(ImGuiBackendFlags || (ImGuiBackendFlags = {})); +var ImGuiColorEditFlags; +(function (ImGuiColorEditFlags) { + ImGuiColorEditFlags[ImGuiColorEditFlags["None"] = 0] = "None"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoAlpha"] = 2] = "NoAlpha"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoPicker"] = 4] = "NoPicker"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoOptions"] = 8] = "NoOptions"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSmallPreview"] = 16] = "NoSmallPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoInputs"] = 32] = "NoInputs"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoTooltip"] = 64] = "NoTooltip"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoLabel"] = 128] = "NoLabel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSidePreview"] = 256] = "NoSidePreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoDragDrop"] = 512] = "NoDragDrop"; + // User Options (right-click on widget to change some of them). You can set application defaults using SetColorEditOptions(). The idea is that you probably don't want to override them in most of your calls, let the user choose and/or call SetColorEditOptions() during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaBar"] = 65536] = "AlphaBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreview"] = 131072] = "AlphaPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreviewHalf"] = 262144] = "AlphaPreviewHalf"; + ImGuiColorEditFlags[ImGuiColorEditFlags["HDR"] = 524288] = "HDR"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayRGB"] = 1048576] = "DisplayRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHSV"] = 2097152] = "DisplayHSV"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHex"] = 4194304] = "DisplayHex"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Uint8"] = 8388608] = "Uint8"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Float"] = 16777216] = "Float"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueBar"] = 33554432] = "PickerHueBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueWheel"] = 67108864] = "PickerHueWheel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputRGB"] = 134217728] = "InputRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputHSV"] = 268435456] = "InputHSV"; + // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to + // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["_OptionsDefault"] = 177209344] = "_OptionsDefault"; + // [Internal] Masks + ImGuiColorEditFlags[ImGuiColorEditFlags["_DisplayMask"] = 7340032] = "_DisplayMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_DataTypeMask"] = 25165824] = "_DataTypeMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_PickerMask"] = 100663296] = "_PickerMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_InputMask"] = 402653184] = "_InputMask"; +})(ImGuiColorEditFlags || (ImGuiColorEditFlags = {})); +var ImGuiMouseCursor; +(function (ImGuiMouseCursor) { + ImGuiMouseCursor[ImGuiMouseCursor["None"] = -1] = "None"; + ImGuiMouseCursor[ImGuiMouseCursor["Arrow"] = 0] = "Arrow"; + ImGuiMouseCursor[ImGuiMouseCursor["TextInput"] = 1] = "TextInput"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeAll"] = 2] = "ResizeAll"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNS"] = 3] = "ResizeNS"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeEW"] = 4] = "ResizeEW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNESW"] = 5] = "ResizeNESW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNWSE"] = 6] = "ResizeNWSE"; + ImGuiMouseCursor[ImGuiMouseCursor["Hand"] = 7] = "Hand"; + ImGuiMouseCursor[ImGuiMouseCursor["Count_"] = 8] = "Count_"; + ImGuiMouseCursor[ImGuiMouseCursor["COUNT"] = 8] = "COUNT"; +})(ImGuiMouseCursor || (ImGuiMouseCursor = {})); +var ImGuiCond; +(function (ImGuiCond) { + ImGuiCond[ImGuiCond["Always"] = 1] = "Always"; + ImGuiCond[ImGuiCond["Once"] = 2] = "Once"; + ImGuiCond[ImGuiCond["FirstUseEver"] = 4] = "FirstUseEver"; + ImGuiCond[ImGuiCond["Appearing"] = 8] = "Appearing"; +})(ImGuiCond || (ImGuiCond = {})); +var ImDrawCornerFlags; +(function (ImDrawCornerFlags) { + ImDrawCornerFlags[ImDrawCornerFlags["TopLeft"] = 1] = "TopLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["TopRight"] = 2] = "TopRight"; + ImDrawCornerFlags[ImDrawCornerFlags["BotLeft"] = 4] = "BotLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["BotRight"] = 8] = "BotRight"; + ImDrawCornerFlags[ImDrawCornerFlags["Top"] = 3] = "Top"; + ImDrawCornerFlags[ImDrawCornerFlags["Bot"] = 12] = "Bot"; + ImDrawCornerFlags[ImDrawCornerFlags["Left"] = 5] = "Left"; + ImDrawCornerFlags[ImDrawCornerFlags["Right"] = 10] = "Right"; + ImDrawCornerFlags[ImDrawCornerFlags["All"] = 15] = "All"; +})(ImDrawCornerFlags || (ImDrawCornerFlags = {})); +var ImDrawListFlags; +(function (ImDrawListFlags) { + ImDrawListFlags[ImDrawListFlags["None"] = 0] = "None"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedLines"] = 1] = "AntiAliasedLines"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedFill"] = 2] = "AntiAliasedFill"; +})(ImDrawListFlags || (ImDrawListFlags = {})); +class ImVec2 { + constructor(x = 0.0, y = 0.0) { + this.x = x; + this.y = y; + } + Set(x, y) { + this.x = x; + this.y = y; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + return true; + } +} +ImVec2.ZERO = new ImVec2(0.0, 0.0); +ImVec2.UNIT = new ImVec2(1.0, 1.0); +ImVec2.UNIT_X = new ImVec2(1.0, 0.0); +ImVec2.UNIT_Y = new ImVec2(0.0, 1.0); +class ImVec4 { + constructor(x = 0.0, y = 0.0, z = 0.0, w = 1.0) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + } + Set(x, y, z, w) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + this.z = other.z; + this.w = other.w; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + if (this.z !== other.z) { + return false; + } + if (this.w !== other.w) { + return false; + } + return true; + } +} +ImVec4.ZERO = new ImVec4(0.0, 0.0, 0.0, 0.0); +ImVec4.UNIT = new ImVec4(1.0, 1.0, 1.0, 1.0); +ImVec4.UNIT_X = new ImVec4(1.0, 0.0, 0.0, 0.0); +ImVec4.UNIT_Y = new ImVec4(0.0, 1.0, 0.0, 0.0); +ImVec4.UNIT_Z = new ImVec4(0.0, 0.0, 1.0, 0.0); +ImVec4.UNIT_W = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.BLACK = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.WHITE = new ImVec4(1.0, 1.0, 1.0, 1.0); +//----------------------------------------------------------------------------- +// Helpers +//----------------------------------------------------------------------------- +// Lightweight std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug). +// Our implementation does NOT call C++ constructors/destructors. This is intentional and we do not require it. Do not use this class as a straight std::vector replacement in your code! +class ImVector extends Array { + constructor() { + super(...arguments); + this.Data = this; + // public: + // int Size; + // int Capacity; + // T* Data; + // typedef T value_type; + // typedef value_type* iterator; + // typedef const value_type* const_iterator; + // inline ImVector() { Size = Capacity = 0; Data = NULL; } + // inline ~ImVector() { if (Data) ImGui::MemFree(Data); } + // inline bool empty() const { return Size == 0; } + // inline int size() const { return Size; } + // inline int capacity() const { return Capacity; } + // inline value_type& operator[](int i) { IM_ASSERT(i < Size); return Data[i]; } + // inline const value_type& operator[](int i) const { IM_ASSERT(i < Size); return Data[i]; } + // inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } } + // inline iterator begin() { return Data; } + // inline const_iterator begin() const { return Data; } + // inline iterator end() { return Data + Size; } + // inline const_iterator end() const { return Data + Size; } + // inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; } + // inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; } + // inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; } + // inline int _grow_capacity(int size) const { int new_capacity = Capacity ? (Capacity + Capacity/2) : 8; return new_capacity > size ? new_capacity : size; } + // inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; } + // inline void resize(int new_size, const T& v){ if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) Data[n] = v; Size = new_size; } + // inline void reserve(int new_capacity) + // { + // if (new_capacity <= Capacity) + // return; + // T* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T)); + // if (Data) + // memcpy(new_data, Data, (size_t)Size * sizeof(T)); + // ImGui::MemFree(Data); + // Data = new_data; + // Capacity = new_capacity; + // } + // inline void push_back(const value_type& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); Data[Size++] = v; } + // inline void pop_back() { IM_ASSERT(Size > 0); Size--; } + // inline void push_front(const value_type& v) { if (Size == 0) push_back(v); else insert(Data, v); } + // inline iterator erase(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; } + // inline iterator erase(const_iterator it, const_iterator it_last){ IM_ASSERT(it >= Data && it < Data+Size && it_last > it && it_last <= Data+Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - count) * sizeof(value_type)); Size -= (int)count; return Data + off; } + // inline iterator erase_unsorted(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; if (it < Data+Size-1) memcpy(Data + off, Data + Size - 1, sizeof(value_type)); Size--; return Data + off; } + // inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= Data && it <= Data+Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; } + // inline bool contains(const value_type& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; } + } + get Size() { return this.length; } + empty() { return this.length === 0; } + clear() { this.length = 0; } + pop_back() { return this.pop(); } + push_back(value) { this.push(value); } +} +// Typically, 1 command = 1 GPU draw call (unless command is a callback) +// Pre 1.71 back-ends will typically ignore the VtxOffset/IdxOffset fields. When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset' +// is enabled, those fields allow us to render meshes larger than 64K vertices while keeping 16-bits indices. +class ImDrawCmd { + constructor(native) { + this.native = native; + // ImDrawCallback UserCallback; // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally. + this.UserCallback = null; // TODO + // void* UserCallbackData; // The draw callback code can access this. + this.UserCallbackData = null; // TODO + } + // unsigned int ElemCount; // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[]. + get ElemCount() { return this.native.ElemCount; } + // ImVec4 ClipRect; // Clipping rectangle (x1, y1, x2, y2) + get ClipRect() { return this.native.ClipRect; } + // ImTextureID TextureId; // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas. + get TextureId() { + return ImGuiContext.getTexture(this.native.TextureId); + } + // unsigned int VtxOffset; // Start offset in vertex buffer. Pre-1.71 or without ImGuiBackendFlags_RendererHasVtxOffset: always 0. With ImGuiBackendFlags_RendererHasVtxOffset: may be >0 to support meshes larger than 64K vertices with 16-bits indices. + get VtxOffset() { return this.native.VtxOffset; } + // unsigned int IdxOffset; // Start offset in index buffer. Always equal to sum of ElemCount drawn so far. + get IdxOffset() { return this.native.IdxOffset; } +} +// Vertex index +// (to allow large meshes with 16-bits indices: set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset in the renderer back-end) +// (to use 32-bits indices: override with '#define ImDrawIdx unsigned int' in imconfig.h) +// #ifndef ImDrawIdx +// typedef unsigned short ImDrawIdx; +// #endif +const ImDrawIdxSize = 2; // bind.ImDrawIdxSize; +// Vertex layout +// #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT +const ImDrawVertSize = 20; // bind.ImDrawVertSize; +const ImDrawVertPosOffset = 0; // bind.ImDrawVertPosOffset; +const ImDrawVertUVOffset = 8; // bind.ImDrawVertUVOffset; +const ImDrawVertColOffset = 16; // bind.ImDrawVertColOffset; +class ImDrawVert { + constructor(buffer, byteOffset = 0) { + this.pos = new Float32Array(buffer, byteOffset + bind.ImDrawVertPosOffset, 2); + this.uv = new Float32Array(buffer, byteOffset + bind.ImDrawVertUVOffset, 2); + this.col = new Uint32Array(buffer, byteOffset + bind.ImDrawVertColOffset, 1); + } +} +// Draw command list +// This is the low-level list of polygons that ImGui functions are filling. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering. +// Each ImGui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to access the current window draw list and draw custom primitives. +// You can interleave normal ImGui:: calls and adding primitives to the current draw list. +// All positions are generally in pixel coordinates (top-left at (0,0), bottom-right at io.DisplaySize), however you are totally free to apply whatever transformation matrix to want to the data (if you apply such transformation you'll want to apply it to ClipRect as well) +// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects. +class ImDrawList { + constructor(native) { + this.native = native; + } + IterateDrawCmds(callback) { + this.native.IterateDrawCmds((draw_cmd, ElemStart) => { + callback(new ImDrawCmd(draw_cmd), ElemStart); + }); + } + // This is what you have to render + // ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback. + // ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those + get IdxBuffer() { return this.native.IdxBuffer; } + // ImVector VtxBuffer; // Vertex buffer. + get VtxBuffer() { return this.native.VtxBuffer; } + // ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive. + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // [Internal, used while building lists] + // const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context) + // const char* _OwnerName; // Pointer to owner window's name for debugging + // unsigned int _VtxCurrentIdx; // [Internal] == VtxBuffer.Size + // ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImVector _ClipRectStack; // [Internal] + // ImVector _TextureIdStack; // [Internal] + // ImVector _Path; // [Internal] current path building + // int _ChannelsCurrent; // [Internal] current channel number (0) + // int _ChannelsCount; // [Internal] number of active channels (1+) + // ImVector _Channels; // [Internal] draw channels for columns API (not resized down so _ChannelsCount may be smaller than _Channels.Size) + // ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clear(); } + // ~ImDrawList() { ClearFreeMemory(); } + // IMGUI_API void PushClipRect(ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling) + PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect = false) { + this.native.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect); + } + // IMGUI_API void PushClipRectFullScreen(); + PushClipRectFullScreen() { this.native.PushClipRectFullScreen(); } + // IMGUI_API void PopClipRect(); + PopClipRect() { this.native.PopClipRect(); } + // IMGUI_API void PushTextureID(ImTextureID texture_id); + PushTextureID(texture_id) { + this.native.PushTextureID(ImGuiContext.setTexture(texture_id)); + } + // IMGUI_API void PopTextureID(); + PopTextureID() { this.native.PopTextureID(); } + // inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); } + GetClipRectMin(out = new ImVec2()) { + return this.native.GetClipRectMin(out); + } + // inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); } + GetClipRectMax(out = new ImVec2()) { + return this.native.GetClipRectMax(out); + } + // Primitives + // IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness = 1.0f); + AddLine(a, b, col, thickness = 1.0) { + this.native.AddLine(a, b, col, thickness); + } + // IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All, float thickness = 1.0f); // a: upper-left, b: lower-right, rounding_corners_flags: 4-bits corresponding to which corner to round + AddRect(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All, thickness = 1.0) { + this.native.AddRect(a, b, col, rounding, rounding_corners_flags, thickness); + } + // IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); // a: upper-left, b: lower-right + AddRectFilled(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { + this.native.AddRectFilled(a, b, col, rounding, rounding_corners_flags); + } + // IMGUI_API void AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left); + AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left) { + this.native.AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left); + } + // IMGUI_API void AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness = 1.0f); + AddQuad(a, b, c, d, col, thickness = 1.0) { + this.native.AddQuad(a, b, c, d, col, thickness); + } + // IMGUI_API void AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col); + AddQuadFilled(a, b, c, d, col) { + this.native.AddQuadFilled(a, b, c, d, col); + } + // IMGUI_API void AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness = 1.0f); + AddTriangle(a, b, c, col, thickness = 1.0) { + this.native.AddTriangle(a, b, c, col, thickness); + } + // IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col); + AddTriangleFilled(a, b, c, col) { + this.native.AddTriangleFilled(a, b, c, col); + } + // IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f); + AddCircle(centre, radius, col, num_segments = 12, thickness = 1.0) { + this.native.AddCircle(centre, radius, col, num_segments, thickness); + } + // IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12); + AddCircleFilled(centre, radius, col, num_segments = 12) { + this.native.AddCircleFilled(centre, radius, col, num_segments); + } + AddText(...args) { + if (args[0] instanceof ImFont) { + const font = args[0]; + const font_size = args[1]; + const pos = args[2]; + const col = args[3]; + const text_begin = args[4]; + const text_end = args[5] || null; + const wrap_width = args[6] = 0.0; + const cpu_fine_clip_rect = args[7] || null; + this.native.AddText_B(font.native, font_size, pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin, wrap_width, cpu_fine_clip_rect); + } + else { + const pos = args[0]; + const col = args[1]; + const text_begin = args[2]; + const text_end = args[3] || null; + this.native.AddText_A(pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin); + } + } + // IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,1), ImU32 col = 0xFFFFFFFF); + AddImage(user_texture_id, a, b, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT, col = 0xFFFFFFFF) { + this.native.AddImage(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col); + } + // IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,0), const ImVec2& uv_c = ImVec2(1,1), const ImVec2& uv_d = ImVec2(0,1), ImU32 col = 0xFFFFFFFF); + AddImageQuad(user_texture_id, a, b, c, d, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT_X, uv_c = ImVec2.UNIT, uv_d = ImVec2.UNIT_Y, col = 0xFFFFFFFF) { + this.native.AddImageQuad(ImGuiContext.setTexture(user_texture_id), a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); + } + // IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col, float rounding, int rounding_corners = ImDrawCornerFlags_All); + AddImageRounded(user_texture_id, a, b, uv_a, uv_b, col, rounding, rounding_corners = ImDrawCornerFlags.All) { + this.native.AddImageRounded(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col, rounding, rounding_corners); + } + // IMGUI_API void AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness); + AddPolyline(points, num_points, col, closed, thickness) { + this.native.AddPolyline(points, num_points, col, closed, thickness); + } + // IMGUI_API void AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col); + AddConvexPolyFilled(points, num_points, col) { + this.native.AddConvexPolyFilled(points, num_points, col); + } + // IMGUI_API void AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments = 0); + AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness = 1.0, num_segments = 0) { + this.native.AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments); + } + // Stateful path API, add points then finish with PathFill() or PathStroke() + // inline void PathClear() { _Path.resize(0); } + PathClear() { this.native.PathClear(); } + // inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); } + PathLineTo(pos) { this.native.PathLineTo(pos); } + // inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path[_Path.Size-1], &pos, 8) != 0) _Path.push_back(pos); } + PathLineToMergeDuplicate(pos) { this.native.PathLineToMergeDuplicate(pos); } + // inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); PathClear(); } + PathFillConvex(col) { this.native.PathFillConvex(col); } + // inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness); PathClear(); } + PathStroke(col, closed, thickness = 1.0) { this.native.PathStroke(col, closed, thickness); } + // IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_segments = 10); + PathArcTo(centre, radius, a_min, a_max, num_segments = 10) { this.native.PathArcTo(centre, radius, a_min, a_max, num_segments); } + // IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle + PathArcToFast(centre, radius, a_min_of_12, a_max_of_12) { this.native.PathArcToFast(centre, radius, a_min_of_12, a_max_of_12); } + // IMGUI_API void PathBezierCurveTo(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, int num_segments = 0); + PathBezierCurveTo(p1, p2, p3, num_segments = 0) { this.native.PathBezierCurveTo(p1, p2, p3, num_segments); } + // IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); + PathRect(rect_min, rect_max, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { this.native.PathRect(rect_min, rect_max, rounding, rounding_corners_flags); } + // Channels + // - Use to simulate layers. By switching channels to can render out-of-order (e.g. submit foreground primitives before background primitives) + // - Use to minimize draw calls (e.g. if going back-and-forth between multiple non-overlapping clipping rectangles, prefer to append into separate channels then merge at the end) + // IMGUI_API void ChannelsSplit(int channels_count); + ChannelsSplit(channels_count) { this.native.ChannelsSplit(channels_count); } + // IMGUI_API void ChannelsMerge(); + ChannelsMerge() { this.native.ChannelsMerge(); } + // IMGUI_API void ChannelsSetCurrent(int channel_index); + ChannelsSetCurrent(channel_index) { this.native.ChannelsSetCurrent(channel_index); } + // Advanced + // IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles. + AddCallback(callback, callback_data) { + const _callback = (parent_list, draw_cmd) => { + callback(new ImDrawList(parent_list), new ImDrawCmd(draw_cmd)); + }; + this.native.AddCallback(_callback, callback_data); + } + // IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible + AddDrawCmd() { this.native.AddDrawCmd(); } + // Internal helpers + // NB: all primitives needs to be reserved via PrimReserve() beforehand! + // IMGUI_API void Clear(); + Clear() { this.native.Clear(); } + // IMGUI_API void ClearFreeMemory(); + ClearFreeMemory() { this.native.ClearFreeMemory(); } + // IMGUI_API void PrimReserve(int idx_count, int vtx_count); + PrimReserve(idx_count, vtx_count) { this.native.PrimReserve(idx_count, vtx_count); } + // IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles) + PrimRect(a, b, col) { this.native.PrimRect(a, b, col); } + // IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col); + PrimRectUV(a, b, uv_a, uv_b, col) { this.native.PrimRectUV(a, b, uv_a, uv_b, col); } + // IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col); + PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col) { this.native.PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); } + // inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; } + PrimWriteVtx(pos, uv, col) { this.native.PrimWriteVtx(pos, uv, col); } + // inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; } + PrimWriteIdx(idx) { this.native.PrimWriteIdx(idx); } + // inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); } + PrimVtx(pos, uv, col) { this.native.PrimVtx(pos, uv, col); } + // IMGUI_API void UpdateClipRect(); + UpdateClipRect() { this.native.UpdateClipRect(); } + // IMGUI_API void UpdateTextureID(); + UpdateTextureID() { this.native.UpdateTextureID(); } +} +// All draw data to render an ImGui frame +class ImDrawData { + constructor(native) { + this.native = native; + } + IterateDrawLists(callback) { + this.native.IterateDrawLists((draw_list) => { + callback(new ImDrawList(draw_list)); + }); + } + // bool Valid; // Only valid after Render() is called and before the next NewFrame() is called. + get Valid() { return this.native.Valid; } + // ImDrawList** CmdLists; + // int CmdListsCount; + get CmdListsCount() { return this.native.CmdListsCount; } + // int TotalIdxCount; // For convenience, sum of all cmd_lists idx_buffer.Size + get TotalIdxCount() { return this.native.TotalIdxCount; } + // int TotalVtxCount; // For convenience, sum of all cmd_lists vtx_buffer.Size + get TotalVtxCount() { return this.native.TotalVtxCount; } + // ImVec2 DisplayPos; // Upper-left position of the viewport to render (== upper-left of the orthogonal projection matrix to use) + get DisplayPos() { return this.native.DisplayPos; } + // ImVec2 DisplaySize; // Size of the viewport to render (== io.DisplaySize for the main viewport) (DisplayPos + DisplaySize == lower-right of the orthogonal projection matrix to use) + get DisplaySize() { return this.native.DisplaySize; } + // ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display. + get FramebufferScale() { return this.native.FramebufferScale; } + // Functions + // ImDrawData() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCount = 0; } + // IMGUI_API void DeIndexAllBuffers(); // For backward compatibility or convenience: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering! + DeIndexAllBuffers() { this.native.DeIndexAllBuffers(); } + // IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than ImGui expects, or if there is a difference between your window resolution and framebuffer resolution. + ScaleClipRects(fb_scale) { + this.native.ScaleClipRects(fb_scale); + } +} +class script_ImFontConfig { + constructor() { + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + this.FontData = null; + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + this.FontDataOwnedByAtlas = true; + // int FontNo; // 0 // Index of font within TTF/OTF file + this.FontNo = 0; + // float SizePixels; // // Size in pixels for rasterizer. + this.SizePixels = 0; + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + this.OversampleH = 3; + this.OversampleV = 1; + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + this.PixelSnapH = false; + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + this.GlyphExtraSpacing = new ImVec2(0, 0); + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + this.GlyphOffset = new ImVec2(0, 0); + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + this.GlyphRanges = null; + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + this.GlyphMinAdvanceX = 0; + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + this.GlyphMaxAdvanceX = Number.MAX_VALUE; + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + this.MergeMode = false; + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + this.RasterizerFlags = 0; + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + this.RasterizerMultiply = 1.0; + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + this.Name = ""; + // ImFont* DstFont; + this.DstFont = null; + // IMGUI_API ImFontConfig(); + } +} +class ImFontConfig { + constructor(internal = new script_ImFontConfig()) { + this.internal = internal; + } + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + get FontData() { return this.internal.FontData; } + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + get FontDataOwnedByAtlas() { return this.internal.FontDataOwnedByAtlas; } + // int FontNo; // 0 // Index of font within TTF/OTF file + get FontNo() { return this.internal.FontNo; } + // float SizePixels; // // Size in pixels for rasterizer. + get SizePixels() { return this.internal.SizePixels; } + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + get OversampleH() { return this.internal.OversampleH; } + get OversampleV() { return this.internal.OversampleV; } + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + get PixelSnapH() { return this.internal.PixelSnapH; } + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + get GlyphExtraSpacing() { return this.internal.GlyphExtraSpacing; } + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + get GlyphOffset() { return this.internal.GlyphOffset; } + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + get GlyphRanges() { return this.internal.GlyphRanges; } + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + get GlyphMinAdvanceX() { return this.internal.GlyphMinAdvanceX; } + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + get GlyphMaxAdvanceX() { return this.internal.GlyphMaxAdvanceX; } + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + get MergeMode() { return this.internal.MergeMode; } + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + get RasterizerFlags() { return this.internal.RasterizerFlags; } + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + get RasterizerMultiply() { return this.internal.RasterizerMultiply; } + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + get Name() { return this.internal.Name; } + set Name(value) { this.internal.Name = value; } + // ImFont* DstFont; + get DstFont() { + const font = this.internal.DstFont; + return font && new ImFont(font); + } +} +// struct ImFontGlyph +class script_ImFontGlyph { + constructor() { + // ImWchar Codepoint; // 0x0000..0xFFFF + this.Codepoint = 0; + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + this.AdvanceX = 0.0; + // float X0, Y0, X1, Y1; // Glyph corners + this.X0 = 0.0; + this.Y0 = 0.0; + this.X1 = 1.0; + this.Y1 = 1.0; + // float U0, V0, U1, V1; // Texture coordinates + this.U0 = 0.0; + this.V0 = 0.0; + this.U1 = 1.0; + this.V1 = 1.0; + } +} +class ImFontGlyph { + constructor(internal = new script_ImFontGlyph()) { + this.internal = internal; + } + // ImWchar Codepoint; // 0x0000..0xFFFF + get Codepoint() { return this.internal.Codepoint; } + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + get AdvanceX() { return this.internal.AdvanceX; } + ; + // float X0, Y0, X1, Y1; // Glyph corners + get X0() { return this.internal.X0; } + ; + get Y0() { return this.internal.Y0; } + ; + get X1() { return this.internal.X1; } + ; + get Y1() { return this.internal.Y1; } + ; + // float U0, V0, U1, V1; // Texture coordinates + get U0() { return this.internal.U0; } + ; + get V0() { return this.internal.V0; } + ; + get U1() { return this.internal.U1; } + ; + get V1() { return this.internal.V1; } + ; +} +var ImFontAtlasFlags; +(function (ImFontAtlasFlags) { + ImFontAtlasFlags[ImFontAtlasFlags["None"] = 0] = "None"; + ImFontAtlasFlags[ImFontAtlasFlags["NoPowerOfTwoHeight"] = 1] = "NoPowerOfTwoHeight"; + ImFontAtlasFlags[ImFontAtlasFlags["NoMouseCursors"] = 2] = "NoMouseCursors"; +})(ImFontAtlasFlags || (ImFontAtlasFlags = {})); +// Load and rasterize multiple TTF/OTF fonts into a same texture. +// Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering. +// We also add custom graphic data into the texture that serves for ImGui. +// 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you. +// 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data. +// 3. Upload the pixels data into a texture within your graphics system. +// 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture. +// IMPORTANT: If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the ImFont is build (when calling GetTextData*** or Build()). We only copy the pointer, not the data. +class ImFontAtlas { + constructor(native) { + this.native = native; + } + // IMGUI_API ImFontAtlas(); + // IMGUI_API ~ImFontAtlas(); + // IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg); + // IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL); + AddFontDefault(font_cfg = null) { + return new ImFont(this.native.AddFontDefault(font_cfg)); + } + // IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); + // IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after Build(). Set font_cfg->FontDataOwnedByAtlas to false to keep ownership. + AddFontFromMemoryTTF(data, size_pixels, font_cfg = null, glyph_ranges = null) { + return new ImFont(this.native.AddFontFromMemoryTTF(new Uint8Array(data), size_pixels, font_cfg && font_cfg.internal, glyph_ranges)); + } + // IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp. + // IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter. + // IMGUI_API void ClearTexData(); // Clear the CPU-side texture data. Saves RAM once the texture has been copied to graphics memory. + ClearTexData() { this.native.ClearTexData(); } + // IMGUI_API void ClearInputData(); // Clear the input TTF data (inc sizes, glyph ranges) + ClearInputData() { this.native.ClearInputData(); } + // IMGUI_API void ClearFonts(); // Clear the ImGui-side font data (glyphs storage, UV coordinates) + ClearFonts() { this.native.ClearFonts(); } + // IMGUI_API void Clear(); // Clear all + Clear() { this.native.Clear(); } + // Build atlas, retrieve pixel data. + // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID(). + // RGBA32 format is provided for convenience and compatibility, but note that unless you use CustomRect to draw color data, the RGB pixels emitted from Fonts will all be white (~75% of waste). + // Pitch = Width * BytesPerPixels + // IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions. + Build() { return this.native.Build(); } + // IMGUI_API bool IsBuilt() { return Fonts.Size > 0 && (TexPixelsAlpha8 != NULL || TexPixelsRGBA32 != NULL); } + IsBuilt() { return this.native.IsBuilt(); } + // IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel + GetTexDataAsAlpha8() { + return this.native.GetTexDataAsAlpha8(); + } + // IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel + GetTexDataAsRGBA32() { + return this.native.GetTexDataAsRGBA32(); + } + // void SetTexID(ImTextureID id) { TexID = id; } + SetTexID(id) { this.TexID = id; } + //------------------------------------------- + // Glyph Ranges + //------------------------------------------- + // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list) + // NB: Make sure that your string are UTF-8 and NOT in your local code page. In C++11, you can create UTF-8 string literal using the u8"Hello world" syntax. See FAQ for details. + // IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin + GetGlyphRangesDefault() { return this.native.GetGlyphRangesDefault(); } + // IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters + GetGlyphRangesKorean() { return this.native.GetGlyphRangesKorean(); } + // IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs + GetGlyphRangesJapanese() { return this.native.GetGlyphRangesJapanese(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs + GetGlyphRangesChineseFull() { return this.native.GetGlyphRangesChineseFull(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese + GetGlyphRangesChineseSimplifiedCommon() { return this.native.GetGlyphRangesChineseSimplifiedCommon(); } + // IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters + GetGlyphRangesCyrillic() { return this.native.GetGlyphRangesCyrillic(); } + // IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters + GetGlyphRangesThai() { return this.native.GetGlyphRangesThai(); } + // IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters + GetGlyphRangesVietnamese() { return this.native.GetGlyphRangesVietnamese(); } + // Helpers to build glyph ranges from text data. Feed your application strings/characters to it then call BuildRanges(). + // struct GlyphRangesBuilder + // { + // ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used) + // GlyphRangesBuilder() { UsedChars.resize(0x10000 / 8); memset(UsedChars.Data, 0, 0x10000 / 8); } + // bool GetBit(int n) const { return (UsedChars[n >> 3] & (1 << (n & 7))) != 0; } + // void SetBit(int n) { UsedChars[n >> 3] |= 1 << (n & 7); } // Set bit 'c' in the array + // void AddChar(ImWchar c) { SetBit(c); } // Add character + // IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added) + // IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault) to force add all of ASCII/Latin+Ext + // IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges + // }; + //------------------------------------------- + // Custom Rectangles/Glyphs API + //------------------------------------------- + // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. After calling Build(), you can query the rectangle position and render your pixels. + // You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs. + // struct CustomRect + // { + // unsigned int ID; // Input // User ID. Use <0x10000 to map into a font glyph, >=0x10000 for other/internal/custom texture data. + // unsigned short Width, Height; // Input // Desired rectangle dimension + // unsigned short X, Y; // Output // Packed position in Atlas + // float GlyphAdvanceX; // Input // For custom font glyphs only (ID<0x10000): glyph xadvance + // ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph display offset + // ImFont* Font; // Input // For custom font glyphs only (ID<0x10000): target font + // CustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); Font = NULL; } + // bool IsPacked() const { return X != 0xFFFF; } + // }; + // IMGUI_API int AddCustomRectRegular(unsigned int id, int width, int height); // Id needs to be >= 0x10000. Id >= 0x80000000 are reserved for ImGui and ImDrawList + // IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0,0)); // Id needs to be < 0x10000 to register a rectangle to map into a specific font. + // IMGUI_API void CalcCustomRectUV(const CustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max); + // const CustomRect* GetCustomRectByIndex(int index) const { if (index < 0) return NULL; return &CustomRects[index]; } + //------------------------------------------- + // Members + //------------------------------------------- + // bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert. + get Locked() { return this.native.Locked; } + set Locked(value) { this.native.Locked = value; } + // ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_) + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure. + get TexID() { + return ImGuiContext.getTexture(this.native.TexID); + } + set TexID(value) { + this.native.TexID = ImGuiContext.setTexture(value); + } + // int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height. + get TexDesiredWidth() { return this.native.TexDesiredWidth; } + set TexDesiredWidth(value) { this.native.TexDesiredWidth = value; } + // int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1. + get TexGlyphPadding() { return this.native.TexGlyphPadding; } + set TexGlyphPadding(value) { this.native.TexGlyphPadding = value; } + // [Internal] + // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you. + // unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight + // unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4 + // int TexWidth; // Texture width calculated during Build(). + get TexWidth() { return this.native.TexWidth; } + // int TexHeight; // Texture height calculated during Build(). + get TexHeight() { return this.native.TexHeight; } + // ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight) + get TexUvScale() { return this.native.TexUvScale; } + // ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel + get TexUvWhitePixel() { return this.native.TexUvWhitePixel; } + // ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font. + get Fonts() { + const fonts = new ImVector(); + this.native.IterateFonts((font) => { + fonts.push(new ImFont(font)); + }); + return fonts; + } +} +// Font runtime data and rendering +// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32(). +class ImFont { + constructor(native) { + this.native = native; + } + // Members: Hot ~62/78 bytes + // float FontSize; // // Height of characters, set during loading (don't change after loading) + get FontSize() { return this.native.FontSize; } + // float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale() + get Scale() { return this.native.Scale; } + set Scale(value) { this.native.Scale = value; } + // ImVec2 DisplayOffset; // = (0.f,1.f) // Offset font rendering by xx pixels + get DisplayOffset() { return this.native.DisplayOffset; } + // ImVector Glyphs; // // All glyphs. + get Glyphs() { + const glyphs = new ImVector(); + this.native.IterateGlyphs((glyph) => { + glyphs.push(new ImFontGlyph(glyph)); // TODO: wrap native + }); + return glyphs; + } + // ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI). + // get IndexAdvanceX(): any { return this.native.IndexAdvanceX; } + // ImVector IndexLookup; // // Sparse. Index glyphs by Unicode code-point. + // get IndexLookup(): any { return this.native.IndexLookup; } + // const ImFontGlyph* FallbackGlyph; // == FindGlyph(FontFallbackChar) + get FallbackGlyph() { + const glyph = this.native.FallbackGlyph; + return glyph && new ImFontGlyph(glyph); + } + set FallbackGlyph(value) { + this.native.FallbackGlyph = value && value.internal; + } + // float FallbackAdvanceX; // == FallbackGlyph->AdvanceX + get FallbackAdvanceX() { return this.native.FallbackAdvanceX; } + // ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found. Only set via SetFallbackChar() + get FallbackChar() { return this.native.FallbackChar; } + // Members: Cold ~18/26 bytes + // short ConfigDataCount; // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont. + get ConfigDataCount() { return this.ConfigData.length; } + // ImFontConfig* ConfigData; // // Pointer within ContainerAtlas->ConfigData + get ConfigData() { + const cfg_data = []; + this.native.IterateConfigData((cfg) => { + cfg_data.push(new ImFontConfig(cfg)); + }); + return cfg_data; + } + // ImFontAtlas* ContainerAtlas; // // What we has been loaded into + get ContainerAtlas() { return null; } + // float Ascent, Descent; // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize] + get Ascent() { return this.native.Ascent; } + get Descent() { return this.native.Descent; } + // int MetricsTotalSurface;// // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs) + get MetricsTotalSurface() { return this.native.MetricsTotalSurface; } + // Methods + // IMGUI_API ImFont(); + // IMGUI_API ~ImFont(); + // IMGUI_API void ClearOutputData(); + ClearOutputData() { return this.native.ClearOutputData(); } + // IMGUI_API void BuildLookupTable(); + BuildLookupTable() { return this.native.BuildLookupTable(); } + // IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const; + FindGlyph(c) { + const glyph = this.native.FindGlyph(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const; + FindGlyphNoFallback(c) { + const glyph = this.native.FindGlyphNoFallback(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API void SetFallbackChar(ImWchar c); + SetFallbackChar(c) { return this.native.SetFallbackChar(c); } + // float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; } + GetCharAdvance(c) { return this.native.GetCharAdvance(c); } + // bool IsLoaded() const { return ContainerAtlas != NULL; } + IsLoaded() { return this.native.IsLoaded(); } + // const char* GetDebugName() const { return ConfigData ? ConfigData->Name : ""; } + GetDebugName() { return this.native.GetDebugName(); } + // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable. + // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable. + // IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8 + CalcTextSizeA(size, max_width, wrap_width, text_begin, text_end = null, remaining = null) { + return this.native.CalcTextSizeA(size, max_width, wrap_width, text_end !== null ? text_begin.substring(0, text_end) : text_begin, remaining, new ImVec2()); + } + // IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const; + CalcWordWrapPositionA(scale, text, text_end = null, wrap_width) { + return this.native.CalcWordWrapPositionA(scale, text_end !== null ? text.substring(0, text_end) : text, wrap_width); + } + // IMGUI_API void RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, unsigned short c) const; + RenderChar(draw_list, size, pos, col, c) { + this.native.RenderChar(draw_list.native, size, pos, col, c); + } + // IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const; + RenderText(draw_list, size, pos, col, clip_rect, text_begin, text_end = null, wrap_width = 0.0, cpu_fine_clip = false) { } +} +// This is where your app communicate with Dear ImGui. Access via ImGui::GetIO(). +// Read 'Programmer guide' section in .cpp file for general usage. +class ImGuiIO { + constructor(native) { + this.native = native; + // int KeyMap[ImGuiKey_COUNT]; // // Map of indices into the KeysDown[512] entries array + this.KeyMap = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiKey.COUNT; + } + return this.native._getAt_KeyMap(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeyMap(Number(key), value); + }, + }); + // bool MouseDown[5]; // Mouse buttons: left, right, middle + extras. ImGui itself mostly only uses left button (BeginPopupContext** are using right button). Others buttons allows us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API. + this.MouseDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_MouseDown(Number(key), value); + }, + }); + // bool KeysDown[512]; // Keyboard keys that are pressed (in whatever storage order you naturally have access to keyboard data) + this.KeysDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeysDown(Number(key), value); + }, + }); + // float NavInputs[ImGuiNavInput_COUNT]; // Gamepad inputs (keyboard keys will be auto-mapped and be written here by ImGui::NewFrame) + this.NavInputs = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputs(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_NavInputs(Number(key), value); + }, + }); + //------------------------------------------------------------------ + // [Internal] ImGui will maintain those fields. Forward compatibility not guaranteed! + //------------------------------------------------------------------ + // ImVec2 MousePosPrev; // Previous mouse position temporary storage (nb: not for public use, set to MousePos in NewFrame()) + // ImVec2 MouseClickedPos[5]; // Position at time of clicking + this.MouseClickedPos = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseClickedPos(Number(key)); + }, + }); + // float MouseClickedTime[5]; // Time of last click (used to figure out double-click) + // bool MouseClicked[5]; // Mouse button went from !Down to Down + // bool MouseDoubleClicked[5]; // Has mouse button been double-clicked? + // bool MouseReleased[5]; // Mouse button went from Down to !Down + // bool MouseDownOwned[5]; // Track if button was clicked inside a window. We don't request mouse capture from the application if click started outside ImGui bounds. + // float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked) + this.MouseDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDownDuration(Number(key)); + }, + }); + // float MouseDownDurationPrev[5]; // Previous time the mouse button has been down + // ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point + // float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point + // float KeysDownDuration[512]; // Duration the keyboard key has been down (0.0f == just pressed) + this.KeysDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDownDuration(Number(key)); + }, + }); + // float KeysDownDurationPrev[512]; // Previous duration the key has been down + // float NavInputsDownDuration[ImGuiNavInput_COUNT]; + this.NavInputsDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputsDownDuration(Number(key)); + }, + }); + } + //------------------------------------------------------------------ + // Settings (fill once) // Default value: + //------------------------------------------------------------------ + // ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc. + get ConfigFlags() { return this.native.ConfigFlags; } + set ConfigFlags(value) { this.native.ConfigFlags = value; } + // ImGuiBackendFlags BackendFlags; // = 0 // Set ImGuiBackendFlags_ enum. Set by imgui_impl_xxx files or custom back-end to communicate features supported by the back-end. + get BackendFlags() { return this.native.BackendFlags; } + set BackendFlags(value) { this.native.BackendFlags = value; } + // ImVec2 DisplaySize; // // Display size, in pixels. For clamping windows positions. + get DisplaySize() { return this.native.DisplaySize; } + // float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds. + get DeltaTime() { return this.native.DeltaTime; } + set DeltaTime(value) { this.native.DeltaTime = value; } + // float IniSavingRate; // = 5.0f // Maximum time between saving positions/sizes to .ini file, in seconds. + get IniSavingRate() { return this.native.IniSavingRate; } + set IniSavingRate(value) { this.native.IniSavingRate = value; } + // const char* IniFilename; // = "imgui.ini" // Path to .ini file. NULL to disable .ini saving. + get IniFilename() { return this.native.IniFilename; } + set IniFilename(value) { this.native.IniFilename = value; } + // const char* LogFilename; // = "imgui_log.txt" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified). + get LogFilename() { return this.native.LogFilename; } + set LogFilename(value) { this.native.LogFilename = value; } + // float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds. + get MouseDoubleClickTime() { return this.native.MouseDoubleClickTime; } + set MouseDoubleClickTime(value) { this.native.MouseDoubleClickTime = value; } + // float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels. + get MouseDoubleClickMaxDist() { return this.native.MouseDoubleClickMaxDist; } + set MouseDoubleClickMaxDist(value) { this.native.MouseDoubleClickMaxDist = value; } + // float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging + get MouseDragThreshold() { return this.native.MouseDragThreshold; } + set MouseDragThreshold(value) { this.native.MouseDragThreshold = value; } + // float KeyRepeatDelay; // = 0.250f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.). + get KeyRepeatDelay() { return this.native.KeyRepeatDelay; } + set KeyRepeatDelay(value) { this.native.KeyRepeatDelay = value; } + // float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds. + get KeyRepeatRate() { return this.native.KeyRepeatRate; } + set KeyRepeatRate(value) { this.native.KeyRepeatRate = value; } + // void* UserData; // = NULL // Store your own data for retrieval by callbacks. + get UserData() { return this.native.UserData; } + set UserData(value) { this.native.UserData = value; } + // ImFontAtlas* Fonts; // // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array. + get Fonts() { return new ImFontAtlas(this.native.Fonts); } + // float FontGlobalScale; // = 1.0f // Global scale all fonts + get FontGlobalScale() { return this.native.FontGlobalScale; } + set FontGlobalScale(value) { this.native.FontGlobalScale = value; } + // bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel. + get FontAllowUserScaling() { return this.native.FontAllowUserScaling; } + set FontAllowUserScaling(value) { this.native.FontAllowUserScaling = value; } + // ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0]. + get FontDefault() { + const font = this.native.FontDefault; + return (font === null) ? null : new ImFont(font); + } + set FontDefault(value) { + this.native.FontDefault = value && value.native; + } + // ImVec2 DisplayFramebufferScale; // = (1.0f,1.0f) // For retina display or other situations where window coordinates are different from framebuffer coordinates. User storage only, presently not used by ImGui. + get DisplayFramebufferScale() { return this.native.DisplayFramebufferScale; } + // Miscellaneous configuration options + // bool OptMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl + get ConfigMacOSXBehaviors() { return this.native.ConfigMacOSXBehaviors; } + set ConfigMacOSXBehaviors(value) { this.native.ConfigMacOSXBehaviors = value; } + // bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor, for users who consider it annoying. + get ConfigInputTextCursorBlink() { return this.native.ConfigInputTextCursorBlink; } + set ConfigInputTextCursorBlink(value) { this.native.ConfigInputTextCursorBlink = value; } + // bool ConfigWindowsResizeFromEdges; // = false // [BETA] Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be the ImGuiWindowFlags_ResizeFromAnySide flag) + get ConfigWindowsResizeFromEdges() { return this.native.ConfigWindowsResizeFromEdges; } + set ConfigWindowsResizeFromEdges(value) { this.native.ConfigWindowsResizeFromEdges = value; } + // bool ConfigWindowsMoveFromTitleBarOnly;// = false // [BETA] Set to true to only allow moving windows when clicked+dragged from the title bar. Windows without a title bar are not affected. + get ConfigWindowsMoveFromTitleBarOnly() { return this.native.ConfigWindowsMoveFromTitleBarOnly; } + set ConfigWindowsMoveFromTitleBarOnly(value) { this.native.ConfigWindowsMoveFromTitleBarOnly = value; } + //------------------------------------------------------------------ + // Settings (User Functions) + //------------------------------------------------------------------ + // Optional: Platform/Renderer back-end name (informational only! will be displayed in About Window) + User data for back-end/wrappers to store their own stuff. + // const char* BackendPlatformName; // = NULL + get BackendPlatformName() { return this.native.BackendPlatformName; } + set BackendPlatformName(value) { this.native.BackendPlatformName = value; } + // const char* BackendRendererName; // = NULL + get BackendRendererName() { return this.native.BackendRendererName; } + set BackendRendererName(value) { this.native.BackendRendererName = value; } + // void* BackendPlatformUserData; // = NULL + get BackendPlatformUserData() { return this.native.BackendPlatformUserData; } + set BackendPlatformUserData(value) { this.native.BackendPlatformUserData = value; } + // void* BackendRendererUserData; // = NULL + get BackendRendererUserData() { return this.native.BackendRendererUserData; } + set BackendRendererUserData(value) { this.native.BackendRendererUserData = value; } + // void* BackendLanguageUserData; // = NULL + get BackendLanguageUserData() { return this.native.BackendLanguageUserData; } + set BackendLanguageUserData(value) { this.native.BackendLanguageUserData = value; } + // Optional: access OS clipboard + // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures) + // const char* (*GetClipboardTextFn)(void* user_data); + get GetClipboardTextFn() { return this.native.GetClipboardTextFn; } + set GetClipboardTextFn(value) { this.native.GetClipboardTextFn = value; } + // void (*SetClipboardTextFn)(void* user_data, const char* text); + get SetClipboardTextFn() { return this.native.SetClipboardTextFn; } + set SetClipboardTextFn(value) { this.native.SetClipboardTextFn = value; } + // void* ClipboardUserData; + get ClipboardUserData() { return this.native.ClipboardUserData; } + set ClipboardUserData(value) { this.native.ClipboardUserData = value; } + // Optional: override memory allocations. MemFreeFn() may be called with a NULL pointer. + // (default to posix malloc/free) + // void* (*MemAllocFn)(size_t sz); + // void (*MemFreeFn)(void* ptr); + // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME in Windows) + // (default to use native imm32 api on Windows) + // void (*ImeSetInputScreenPosFn)(int x, int y); + // void* ImeWindowHandle; // (Windows) Set this to your HWND to get automatic IME cursor positioning. + //------------------------------------------------------------------ + // Input - Fill before calling NewFrame() + //------------------------------------------------------------------ + // ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX,-FLT_MAX) if mouse is unavailable (on another screen, etc.) + get MousePos() { return this.native.MousePos; } + // float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text. + get MouseWheel() { return this.native.MouseWheel; } + set MouseWheel(value) { this.native.MouseWheel = value; } + // float MouseWheelH; // Mouse wheel (Horizontal). Most users don't have a mouse with an horizontal wheel, may not be filled by all back-ends. + get MouseWheelH() { return this.native.MouseWheelH; } + set MouseWheelH(value) { this.native.MouseWheelH = value; } + // bool MouseDrawCursor; // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor). + get MouseDrawCursor() { return this.native.MouseDrawCursor; } + set MouseDrawCursor(value) { this.native.MouseDrawCursor = value; } + // bool KeyCtrl; // Keyboard modifier pressed: Control + get KeyCtrl() { return this.native.KeyCtrl; } + set KeyCtrl(value) { this.native.KeyCtrl = value; } + // bool KeyShift; // Keyboard modifier pressed: Shift + get KeyShift() { return this.native.KeyShift; } + set KeyShift(value) { this.native.KeyShift = value; } + // bool KeyAlt; // Keyboard modifier pressed: Alt + get KeyAlt() { return this.native.KeyAlt; } + set KeyAlt(value) { this.native.KeyAlt = value; } + // bool KeySuper; // Keyboard modifier pressed: Cmd/Super/Windows + get KeySuper() { return this.native.KeySuper; } + set KeySuper(value) { this.native.KeySuper = value; } + // Functions + // IMGUI_API void AddInputCharacter(ImWchar c); // Add new character into InputCharacters[] + AddInputCharacter(c) { this.native.AddInputCharacter(c); } + // IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Add new characters into InputCharacters[] from an UTF-8 string + AddInputCharactersUTF8(utf8_chars) { this.native.AddInputCharactersUTF8(utf8_chars); } + // inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Clear the text input buffer manually + ClearInputCharacters() { this.native.ClearInputCharacters(); } + //------------------------------------------------------------------ + // Output - Retrieve after calling NewFrame() + //------------------------------------------------------------------ + // bool WantCaptureMouse; // When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. This is set by ImGui when it wants to use your mouse (e.g. unclicked mouse is hovering a window, or a widget is active). + get WantCaptureMouse() { return this.native.WantCaptureMouse; } + set WantCaptureMouse(value) { this.native.WantCaptureMouse = value; } + // bool WantCaptureKeyboard; // When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. This is set by ImGui when it wants to use your keyboard inputs. + get WantCaptureKeyboard() { return this.native.WantCaptureKeyboard; } + set WantCaptureKeyboard(value) { this.native.WantCaptureKeyboard = value; } + // bool WantTextInput; // Mobile/console: when io.WantTextInput is true, you may display an on-screen keyboard. This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active). + get WantTextInput() { return this.native.WantTextInput; } + set WantTextInput(value) { this.native.WantTextInput = value; } + // bool WantSetMousePos; // [BETA-NAV] MousePos has been altered, back-end should reposition mouse on next frame. Set only when 'NavMovesMouse=true'. + get WantSetMousePos() { return this.native.WantSetMousePos; } + set WantSetMousePos(value) { this.native.WantSetMousePos = value; } + // bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. IMPORTANT: You need to clear io.WantSaveIniSettings yourself. + get WantSaveIniSettings() { return this.native.WantSaveIniSettings; } + set WantSaveIniSettings(value) { this.native.WantSaveIniSettings = value; } + // bool NavActive; // Directional navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag. + get NavActive() { return this.native.NavActive; } + set NavActive(value) { this.native.NavActive = value; } + // bool NavVisible; // Directional navigation is visible and allowed (will handle ImGuiKey_NavXXX events). + get NavVisible() { return this.native.NavVisible; } + set NavVisible(value) { this.native.NavVisible = value; } + // float Framerate; // Application framerate estimation, in frame per second. Solely for convenience. Rolling average estimation based on IO.DeltaTime over 120 frames + get Framerate() { return this.native.Framerate; } + // int MetricsRenderVertices; // Vertices output during last call to Render() + get MetricsRenderVertices() { return this.native.MetricsRenderVertices; } + // int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3 + get MetricsRenderIndices() { return this.native.MetricsRenderIndices; } + // int MetricsRenderWindows; // Number of visible windows + get MetricsRenderWindows() { return this.native.MetricsRenderWindows; } + // int MetricsActiveWindows; // Number of visible root windows (exclude child windows) + get MetricsActiveWindows() { return this.native.MetricsActiveWindows; } + // int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts. + get MetricsActiveAllocations() { return this.native.MetricsActiveAllocations; } + // ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta. + get MouseDelta() { return this.native.MouseDelta; } +} +const _texturesById = []; +// Context creation and access, if you want to use multiple context, share context between modules (e.g. DLL). +// All contexts share a same ImFontAtlas by default. If you want different font atlas, you can new() them and overwrite the GetIO().Fonts variable of an ImGui context. +// All those functions are not reliant on the current context. +class ImGuiContext { + constructor(native) { + this.native = native; + } + static getTexture(index) { + return _texturesById[index] || null; + } + static setTexture(texture) { + let index = _texturesById.indexOf(texture); + if (index === -1) { + for (let i = 0; i < _texturesById.length; ++i) { + if (_texturesById[i] === null) { + _texturesById[i] = texture; + return i; + } + } + index = _texturesById.length; + _texturesById.push(texture); + } + return index; + } +} +ImGuiContext.current_ctx = null; +// IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL); +function CreateContext(shared_font_atlas = null) { + const ctx = new ImGuiContext(bind.CreateContext(shared_font_atlas ? shared_font_atlas.native : null)); + if (ImGuiContext.current_ctx === null) { + ImGuiContext.current_ctx = ctx; + } + return ctx; +} +// IMGUI_API void SetCurrentContext(ImGuiContext* ctx); +function SetCurrentContext(ctx) { + bind.SetCurrentContext((ctx === null) ? null : ctx.native); + ImGuiContext.current_ctx = ctx; +} +// IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert); +function DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx) { + return bind.DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx); +} +// Main +// IMGUI_API ImGuiIO& GetIO(); +function GetIO() { return new ImGuiIO(bind.GetIO()); } +// IMGUI_API void NewFrame(); // start a new ImGui frame, you can submit any command from this point until Render()/EndFrame(). +function NewFrame() { bind.NewFrame(); } +// IMGUI_API void EndFrame(); // ends the ImGui frame. automatically called by Render(), so most likely don't need to ever call that yourself directly. If you don't need to render you may call EndFrame() but you'll have wasted CPU already. If you don't need to render, better to not create any imgui windows instead! +function EndFrame() { bind.EndFrame(); } +// IMGUI_API void Render(); // ends the ImGui frame, finalize the draw data, then call your io.RenderDrawListsFn() function if set. +function Render() { bind.Render(); } +// IMGUI_API ImDrawData* GetDrawData(); // same value as passed to your io.RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame() +function GetDrawData() { + const draw_data = bind.GetDrawData(); + return (draw_data === null) ? null : new ImDrawData(draw_data); +} +// IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you +function GetMouseCursor() { return bind.GetMouseCursor(); } +// IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source. +function LoadIniSettingsFromMemory(ini_data, ini_size = 0) { bind.LoadIniSettingsFromMemory(ini_data); } +// IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings. +function SaveIniSettingsToMemory(out_ini_size = null) { return bind.SaveIniSettingsToMemory(); } + +var promise = createCommonjsModule(function (module, exports) { +(function(global){ + +// +// Check for native Promise and it has correct interface +// + +var NativePromise = global['Promise']; +var nativePromiseSupported = + NativePromise && + // Some of these methods are missing from + // Firefox/Chrome experimental implementations + 'resolve' in NativePromise && + 'reject' in NativePromise && + 'all' in NativePromise && + 'race' in NativePromise && + // Older version of the spec had a resolver object + // as the arg rather than a function + (function(){ + var resolve; + new NativePromise(function(r){ resolve = r; }); + return typeof resolve === 'function'; + })(); + + +// +// export if necessary +// + +if ( exports) +{ + // node.js + exports.Promise = nativePromiseSupported ? NativePromise : Promise; + exports.Polyfill = Promise; +} +else +{ + // AMD + { + // in browser add to global + if (!nativePromiseSupported) + global['Promise'] = Promise; + } +} + + +// +// Polyfill +// + +var PENDING = 'pending'; +var SEALED = 'sealed'; +var FULFILLED = 'fulfilled'; +var REJECTED = 'rejected'; +var NOOP = function(){}; + +function isArray(value) { + return Object.prototype.toString.call(value) === '[object Array]'; +} + +// async calls +var asyncSetTimer = typeof setImmediate !== 'undefined' ? setImmediate : setTimeout; +var asyncQueue = []; +var asyncTimer; + +function asyncFlush(){ + // run promise callbacks + for (var i = 0; i < asyncQueue.length; i++) + asyncQueue[i][0](asyncQueue[i][1]); + + // reset async asyncQueue + asyncQueue = []; + asyncTimer = false; +} + +function asyncCall(callback, arg){ + asyncQueue.push([callback, arg]); + + if (!asyncTimer) + { + asyncTimer = true; + asyncSetTimer(asyncFlush, 0); + } +} + + +function invokeResolver(resolver, promise) { + function resolvePromise(value) { + resolve(promise, value); + } + + function rejectPromise(reason) { + reject(promise, reason); + } + + try { + resolver(resolvePromise, rejectPromise); + } catch(e) { + rejectPromise(e); + } +} + +function invokeCallback(subscriber){ + var owner = subscriber.owner; + var settled = owner.state_; + var value = owner.data_; + var callback = subscriber[settled]; + var promise = subscriber.then; + + if (typeof callback === 'function') + { + settled = FULFILLED; + try { + value = callback(value); + } catch(e) { + reject(promise, e); + } + } + + if (!handleThenable(promise, value)) + { + if (settled === FULFILLED) + resolve(promise, value); + + if (settled === REJECTED) + reject(promise, value); + } +} + +function handleThenable(promise, value) { + var resolved; + + try { + if (promise === value) + throw new TypeError('A promises callback cannot return that same promise.'); + + if (value && (typeof value === 'function' || typeof value === 'object')) + { + var then = value.then; // then should be retrived only once + + if (typeof then === 'function') + { + then.call(value, function(val){ + if (!resolved) + { + resolved = true; + + if (value !== val) + resolve(promise, val); + else + fulfill(promise, val); + } + }, function(reason){ + if (!resolved) + { + resolved = true; + + reject(promise, reason); + } + }); + + return true; + } + } + } catch (e) { + if (!resolved) + reject(promise, e); + + return true; + } + + return false; +} + +function resolve(promise, value){ + if (promise === value || !handleThenable(promise, value)) + fulfill(promise, value); +} + +function fulfill(promise, value){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = value; + + asyncCall(publishFulfillment, promise); + } +} + +function reject(promise, reason){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = reason; + + asyncCall(publishRejection, promise); + } +} + +function publish(promise) { + var callbacks = promise.then_; + promise.then_ = undefined; + + for (var i = 0; i < callbacks.length; i++) { + invokeCallback(callbacks[i]); + } +} + +function publishFulfillment(promise){ + promise.state_ = FULFILLED; + publish(promise); +} + +function publishRejection(promise){ + promise.state_ = REJECTED; + publish(promise); +} + +/** +* @class +*/ +function Promise(resolver){ + if (typeof resolver !== 'function') + throw new TypeError('Promise constructor takes a function argument'); + + if (this instanceof Promise === false) + throw new TypeError('Failed to construct \'Promise\': Please use the \'new\' operator, this object constructor cannot be called as a function.'); + + this.then_ = []; + + invokeResolver(resolver, this); +} + +Promise.prototype = { + constructor: Promise, + + state_: PENDING, + then_: null, + data_: undefined, + + then: function(onFulfillment, onRejection){ + var subscriber = { + owner: this, + then: new this.constructor(NOOP), + fulfilled: onFulfillment, + rejected: onRejection + }; + + if (this.state_ === FULFILLED || this.state_ === REJECTED) + { + // already resolved, call callback async + asyncCall(invokeCallback, subscriber); + } + else + { + // subscribe + this.then_.push(subscriber); + } + + return subscriber.then; + }, + + 'catch': function(onRejection) { + return this.then(null, onRejection); + } +}; + +Promise.all = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.all().'); + + return new Class(function(resolve, reject){ + var results = []; + var remaining = 0; + + function resolver(index){ + remaining++; + return function(value){ + results[index] = value; + if (!--remaining) + resolve(results); + }; + } + + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolver(i), reject); + else + results[i] = promise; + } + + if (!remaining) + resolve(results); + }); +}; + +Promise.race = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.race().'); + + return new Class(function(resolve, reject) { + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolve, reject); + else + resolve(promise); + } + }); +}; + +Promise.resolve = function(value){ + var Class = this; + + if (value && typeof value === 'object' && value.constructor === Class) + return value; + + return new Class(function(resolve){ + resolve(value); + }); +}; + +Promise.reject = function(reason){ + var Class = this; + + return new Class(function(resolve, reject){ + reject(reason); + }); +}; + +})(typeof window != 'undefined' ? window : typeof commonjsGlobal != 'undefined' ? commonjsGlobal : typeof self != 'undefined' ? self : commonjsGlobal); +}); +var promise_1 = promise.Promise; +var promise_2 = promise.Polyfill; + +/* +object-assign +(c) Sindre Sorhus +@license MIT +*/ +/* eslint-disable no-unused-vars */ +var getOwnPropertySymbols = Object.getOwnPropertySymbols; +var hasOwnProperty = Object.prototype.hasOwnProperty; +var propIsEnumerable = Object.prototype.propertyIsEnumerable; + +function toObject(val) { + if (val === null || val === undefined) { + throw new TypeError('Object.assign cannot be called with null or undefined'); + } + + return Object(val); +} + +function shouldUseNative() { + try { + if (!Object.assign) { + return false; + } + + // Detect buggy property enumeration order in older V8 versions. + + // https://bugs.chromium.org/p/v8/issues/detail?id=4118 + var test1 = new String('abc'); // eslint-disable-line no-new-wrappers + test1[5] = 'de'; + if (Object.getOwnPropertyNames(test1)[0] === '5') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test2 = {}; + for (var i = 0; i < 10; i++) { + test2['_' + String.fromCharCode(i)] = i; + } + var order2 = Object.getOwnPropertyNames(test2).map(function (n) { + return test2[n]; + }); + if (order2.join('') !== '0123456789') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test3 = {}; + 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { + test3[letter] = letter; + }); + if (Object.keys(Object.assign({}, test3)).join('') !== + 'abcdefghijklmnopqrst') { + return false; + } + + return true; + } catch (err) { + // We don't expect any of the above to throw, but better to be safe. + return false; + } +} + +var objectAssign = shouldUseNative() ? Object.assign : function (target, source) { + var from; + var to = toObject(target); + var symbols; + + for (var s = 1; s < arguments.length; s++) { + from = Object(arguments[s]); + + for (var key in from) { + if (hasOwnProperty.call(from, key)) { + to[key] = from[key]; + } + } + + if (getOwnPropertySymbols) { + symbols = getOwnPropertySymbols(from); + for (var i = 0; i < symbols.length; i++) { + if (propIsEnumerable.call(from, symbols[i])) { + to[symbols[i]] = from[symbols[i]]; + } + } + } + } + + return to; +}; + +/*! + * @pixi/polyfill - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/polyfill is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Support for IE 9 - 11 which does not include Promises +if (!window.Promise) +{ + window.Promise = promise_2; +} + +// References: + +if (!Object.assign) +{ + Object.assign = objectAssign; +} + +var commonjsGlobal$1 = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +// References: +// http://paulirish.com/2011/requestanimationframe-for-smart-animating/ +// https://gist.github.com/1579671 +// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision +// https://gist.github.com/timhall/4078614 +// https://github.com/Financial-Times/polyfill-service/tree/master/polyfills/requestAnimationFrame + +// Expected to be used with Browserfiy +// Browserify automatically detects the use of `global` and passes the +// correct reference of `global`, `self`, and finally `window` + +var ONE_FRAME_TIME = 16; + +// Date.now +if (!(Date.now && Date.prototype.getTime)) +{ + Date.now = function now() + { + return new Date().getTime(); + }; +} + +// performance.now +if (!(commonjsGlobal$1.performance && commonjsGlobal$1.performance.now)) +{ + var startTime = Date.now(); + + if (!commonjsGlobal$1.performance) + { + commonjsGlobal$1.performance = {}; + } + + commonjsGlobal$1.performance.now = function () { return Date.now() - startTime; }; +} + +// requestAnimationFrame +var lastTime = Date.now(); +var vendors = ['ms', 'moz', 'webkit', 'o']; + +for (var x = 0; x < vendors.length && !commonjsGlobal$1.requestAnimationFrame; ++x) +{ + var p = vendors[x]; + + commonjsGlobal$1.requestAnimationFrame = commonjsGlobal$1[(p + "RequestAnimationFrame")]; + commonjsGlobal$1.cancelAnimationFrame = commonjsGlobal$1[(p + "CancelAnimationFrame")] || commonjsGlobal$1[(p + "CancelRequestAnimationFrame")]; +} + +if (!commonjsGlobal$1.requestAnimationFrame) +{ + commonjsGlobal$1.requestAnimationFrame = function (callback) { + if (typeof callback !== 'function') + { + throw new TypeError((callback + "is not a function")); + } + + var currentTime = Date.now(); + var delay = ONE_FRAME_TIME + lastTime - currentTime; + + if (delay < 0) + { + delay = 0; + } + + lastTime = currentTime; + + return setTimeout(function () { + lastTime = Date.now(); + callback(performance.now()); + }, delay); + }; +} + +if (!commonjsGlobal$1.cancelAnimationFrame) +{ + commonjsGlobal$1.cancelAnimationFrame = function (id) { return clearTimeout(id); }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign + +if (!Math.sign) +{ + Math.sign = function mathSign(x) + { + x = Number(x); + + if (x === 0 || isNaN(x)) + { + return x; + } + + return x > 0 ? 1 : -1; + }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger + +if (!Number.isInteger) +{ + Number.isInteger = function numberIsInteger(value) + { + return typeof value === 'number' && isFinite(value) && Math.floor(value) === value; + }; +} + +if (!window.ArrayBuffer) +{ + window.ArrayBuffer = Array; +} + +if (!window.Float32Array) +{ + window.Float32Array = Array; +} + +if (!window.Uint32Array) +{ + window.Uint32Array = Array; +} + +if (!window.Uint16Array) +{ + window.Uint16Array = Array; +} + +if (!window.Uint8Array) +{ + window.Uint8Array = Array; +} + +if (!window.Int32Array) +{ + window.Int32Array = Array; +} + +var isMobile = createCommonjsModule(function (module) { +(function(global) { + var apple_phone = /iPhone/i, + apple_ipod = /iPod/i, + apple_tablet = /iPad/i, + android_phone = /\bAndroid(?:.+)Mobile\b/i, // Match 'Android' AND 'Mobile' + android_tablet = /Android/i, + amazon_phone = /\bAndroid(?:.+)SD4930UR\b/i, + amazon_tablet = /\bAndroid(?:.+)(?:KF[A-Z]{2,4})\b/i, + windows_phone = /Windows Phone/i, + windows_tablet = /\bWindows(?:.+)ARM\b/i, // Match 'Windows' AND 'ARM' + other_blackberry = /BlackBerry/i, + other_blackberry_10 = /BB10/i, + other_opera = /Opera Mini/i, + other_chrome = /\b(CriOS|Chrome)(?:.+)Mobile/i, + other_firefox = /Mobile(?:.+)Firefox\b/i; // Match 'Mobile' AND 'Firefox' + + function match(regex, userAgent) { + return regex.test(userAgent); + } + + function isMobile(userAgent) { + var ua = + userAgent || + (typeof navigator !== 'undefined' ? navigator.userAgent : ''); + + // Facebook mobile app's integrated browser adds a bunch of strings that + // match everything. Strip it out if it exists. + var tmp = ua.split('[FBAN'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + // Twitter mobile app's integrated browser on iPad adds a "Twitter for + // iPhone" string. Same probably happens on other tablet platforms. + // This will confuse detection so strip it out if it exists. + tmp = ua.split('Twitter'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + var result = { + apple: { + phone: match(apple_phone, ua) && !match(windows_phone, ua), + ipod: match(apple_ipod, ua), + tablet: + !match(apple_phone, ua) && + match(apple_tablet, ua) && + !match(windows_phone, ua), + device: + (match(apple_phone, ua) || + match(apple_ipod, ua) || + match(apple_tablet, ua)) && + !match(windows_phone, ua) + }, + amazon: { + phone: match(amazon_phone, ua), + tablet: !match(amazon_phone, ua) && match(amazon_tablet, ua), + device: match(amazon_phone, ua) || match(amazon_tablet, ua) + }, + android: { + phone: + (!match(windows_phone, ua) && match(amazon_phone, ua)) || + (!match(windows_phone, ua) && match(android_phone, ua)), + tablet: + !match(windows_phone, ua) && + !match(amazon_phone, ua) && + !match(android_phone, ua) && + (match(amazon_tablet, ua) || match(android_tablet, ua)), + device: + (!match(windows_phone, ua) && + (match(amazon_phone, ua) || + match(amazon_tablet, ua) || + match(android_phone, ua) || + match(android_tablet, ua))) || + match(/\bokhttp\b/i, ua) + }, + windows: { + phone: match(windows_phone, ua), + tablet: match(windows_tablet, ua), + device: match(windows_phone, ua) || match(windows_tablet, ua) + }, + other: { + blackberry: match(other_blackberry, ua), + blackberry10: match(other_blackberry_10, ua), + opera: match(other_opera, ua), + firefox: match(other_firefox, ua), + chrome: match(other_chrome, ua), + device: + match(other_blackberry, ua) || + match(other_blackberry_10, ua) || + match(other_opera, ua) || + match(other_firefox, ua) || + match(other_chrome, ua) + } + }; + (result.any = + result.apple.device || + result.android.device || + result.windows.device || + result.other.device), + // excludes 'other' devices and ipods, targeting touchscreen phones + (result.phone = + result.apple.phone || result.android.phone || result.windows.phone), + (result.tablet = + result.apple.tablet || result.android.tablet || result.windows.tablet); + + return result; + } + + if ( + + module.exports && + typeof window === 'undefined' + ) { + // Node.js + module.exports = isMobile; + } else if ( + + module.exports && + typeof window !== 'undefined' + ) { + // Browserify + module.exports = isMobile(); + module.exports.isMobile = isMobile; + } else { + global.isMobile = isMobile(); + } +})(commonjsGlobal); +}); +var isMobile_1 = isMobile.isMobile; + +/*! + * @pixi/settings - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/settings is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The maximum recommended texture units to use. + * In theory the bigger the better, and for desktop we'll use as many as we can. + * But some mobile devices slow down if there is to many branches in the shader. + * So in practice there seems to be a sweet spot size that varies depending on the device. + * + * In v4, all mobile devices were limited to 4 texture units because for this. + * In v5, we allow all texture units to be used on modern Apple or Android devices. + * + * @private + * @param {number} max + * @returns {number} + */ +function maxRecommendedTextures(max) +{ + var allowMax = true; + + if (isMobile.tablet || isMobile.phone) + { + allowMax = false; + + if (isMobile.apple.device) + { + var match = (navigator.userAgent).match(/OS (\d+)_(\d+)?/); + + if (match) + { + var majorVersion = parseInt(match[1], 10); + + // All texture units can be used on devices that support ios 11 or above + if (majorVersion >= 11) + { + allowMax = true; + } + } + } + if (isMobile.android.device) + { + var match$1 = (navigator.userAgent).match(/Android\s([0-9.]*)/); + + if (match$1) + { + var majorVersion$1 = parseInt(match$1[1], 10); + + // All texture units can be used on devices that support Android 7 (Nougat) or above + if (majorVersion$1 >= 7) + { + allowMax = true; + } + } + } + } + + return allowMax ? max : 4; +} + +/** + * Uploading the same buffer multiple times in a single frame can cause performance issues. + * Apparent on iOS so only check for that at the moment + * This check may become more complex if this issue pops up elsewhere. + * + * @private + * @returns {boolean} + */ +function canUploadSameBuffer() +{ + return !isMobile.apple.device; +} + +/** + * User's customizable globals for overriding the default PIXI settings, such + * as a renderer's default resolution, framerate, float precision, etc. + * @example + * // Use the native window resolution as the default resolution + * // will support high-density displays when rendering + * PIXI.settings.RESOLUTION = window.devicePixelRatio; + * + * // Disable interpolation when scaling, will make texture be pixelated + * PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST; + * @namespace PIXI.settings + */ +var settings = { + + /** + * If set to true WebGL will attempt make textures mimpaped by default. + * Mipmapping will only succeed if the base texture uploaded has power of two dimensions. + * + * @static + * @name MIPMAP_TEXTURES + * @memberof PIXI.settings + * @type {PIXI.MIPMAP_MODES} + * @default PIXI.MIPMAP_MODES.POW2 + */ + MIPMAP_TEXTURES: 1, + + /** + * Default anisotropic filtering level of textures. + * Usually from 0 to 16 + * + * @static + * @name ANISOTROPIC_LEVEL + * @memberof PIXI.settings + * @type {number} + * @default 0 + */ + ANISOTROPIC_LEVEL: 0, + + /** + * Default resolution / device pixel ratio of the renderer. + * + * @static + * @name RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + RESOLUTION: 1, + + /** + * Default filter resolution. + * + * @static + * @name FILTER_RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + FILTER_RESOLUTION: 1, + + /** + * The maximum textures that this device supports. + * + * @static + * @name SPRITE_MAX_TEXTURES + * @memberof PIXI.settings + * @type {number} + * @default 32 + */ + SPRITE_MAX_TEXTURES: maxRecommendedTextures(32), + + // TODO: maybe change to SPRITE.BATCH_SIZE: 2000 + // TODO: maybe add PARTICLE.BATCH_SIZE: 15000 + + /** + * The default sprite batch size. + * + * The default aims to balance desktop and mobile devices. + * + * @static + * @name SPRITE_BATCH_SIZE + * @memberof PIXI.settings + * @type {number} + * @default 4096 + */ + SPRITE_BATCH_SIZE: 4096, + + /** + * The default render options if none are supplied to {@link PIXI.Renderer} + * or {@link PIXI.CanvasRenderer}. + * + * @static + * @name RENDER_OPTIONS + * @memberof PIXI.settings + * @type {object} + * @property {HTMLCanvasElement} view=null + * @property {number} resolution=1 + * @property {boolean} antialias=false + * @property {boolean} forceFXAA=false + * @property {boolean} autoDensity=false + * @property {boolean} transparent=false + * @property {number} backgroundColor=0x000000 + * @property {boolean} clearBeforeRender=true + * @property {boolean} preserveDrawingBuffer=false + * @property {number} width=800 + * @property {number} height=600 + * @property {boolean} legacy=false + */ + RENDER_OPTIONS: { + view: null, + antialias: false, + forceFXAA: false, + autoDensity: false, + transparent: false, + backgroundColor: 0x000000, + clearBeforeRender: true, + preserveDrawingBuffer: false, + width: 800, + height: 600, + legacy: false, + }, + + /** + * Default Garbage Collection mode. + * + * @static + * @name GC_MODE + * @memberof PIXI.settings + * @type {PIXI.GC_MODES} + * @default PIXI.GC_MODES.AUTO + */ + GC_MODE: 0, + + /** + * Default Garbage Collection max idle. + * + * @static + * @name GC_MAX_IDLE + * @memberof PIXI.settings + * @type {number} + * @default 3600 + */ + GC_MAX_IDLE: 60 * 60, + + /** + * Default Garbage Collection maximum check count. + * + * @static + * @name GC_MAX_CHECK_COUNT + * @memberof PIXI.settings + * @type {number} + * @default 600 + */ + GC_MAX_CHECK_COUNT: 60 * 10, + + /** + * Default wrap modes that are supported by pixi. + * + * @static + * @name WRAP_MODE + * @memberof PIXI.settings + * @type {PIXI.WRAP_MODES} + * @default PIXI.WRAP_MODES.CLAMP + */ + WRAP_MODE: 33071, + + /** + * Default scale mode for textures. + * + * @static + * @name SCALE_MODE + * @memberof PIXI.settings + * @type {PIXI.SCALE_MODES} + * @default PIXI.SCALE_MODES.LINEAR + */ + SCALE_MODE: 1, + + /** + * Default specify float precision in vertex shader. + * + * @static + * @name PRECISION_VERTEX + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.HIGH + */ + PRECISION_VERTEX: 'highp', + + /** + * Default specify float precision in fragment shader. + * iOS is best set at highp due to https://github.com/pixijs/pixi.js/issues/3742 + * + * @static + * @name PRECISION_FRAGMENT + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.MEDIUM + */ + PRECISION_FRAGMENT: isMobile.apple.device ? 'highp' : 'mediump', + + /** + * Can we upload the same buffer in a single frame? + * + * @static + * @name CAN_UPLOAD_SAME_BUFFER + * @memberof PIXI.settings + * @type {boolean} + */ + CAN_UPLOAD_SAME_BUFFER: canUploadSameBuffer(), + + /** + * Enables bitmap creation before image load. This feature is experimental. + * + * @static + * @name CREATE_IMAGE_BITMAP + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + CREATE_IMAGE_BITMAP: false, + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * + * @static + * @constant + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + ROUND_PIXELS: false, +}; + +var eventemitter3 = createCommonjsModule(function (module) { + +var has = Object.prototype.hasOwnProperty + , prefix = '~'; + +/** + * Constructor to create a storage for our `EE` objects. + * An `Events` instance is a plain object whose properties are event names. + * + * @constructor + * @private + */ +function Events() {} + +// +// We try to not inherit from `Object.prototype`. In some engines creating an +// instance in this way is faster than calling `Object.create(null)` directly. +// If `Object.create(null)` is not supported we prefix the event names with a +// character to make sure that the built-in object properties are not +// overridden or used as an attack vector. +// +if (Object.create) { + Events.prototype = Object.create(null); + + // + // This hack is needed because the `__proto__` property is still inherited in + // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5. + // + if (!new Events().__proto__) prefix = false; +} + +/** + * Representation of a single event listener. + * + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} [once=false] Specify if the listener is a one-time listener. + * @constructor + * @private + */ +function EE(fn, context, once) { + this.fn = fn; + this.context = context; + this.once = once || false; +} + +/** + * Add a listener for a given event. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} once Specify if the listener is a one-time listener. + * @returns {EventEmitter} + * @private + */ +function addListener(emitter, event, fn, context, once) { + if (typeof fn !== 'function') { + throw new TypeError('The listener must be a function'); + } + + var listener = new EE(fn, context || emitter, once) + , evt = prefix ? prefix + event : event; + + if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++; + else if (!emitter._events[evt].fn) emitter._events[evt].push(listener); + else emitter._events[evt] = [emitter._events[evt], listener]; + + return emitter; +} + +/** + * Clear event by name. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} evt The Event name. + * @private + */ +function clearEvent(emitter, evt) { + if (--emitter._eventsCount === 0) emitter._events = new Events(); + else delete emitter._events[evt]; +} + +/** + * Minimal `EventEmitter` interface that is molded against the Node.js + * `EventEmitter` interface. + * + * @constructor + * @public + */ +function EventEmitter() { + this._events = new Events(); + this._eventsCount = 0; +} + +/** + * Return an array listing the events for which the emitter has registered + * listeners. + * + * @returns {Array} + * @public + */ +EventEmitter.prototype.eventNames = function eventNames() { + var names = [] + , events + , name; + + if (this._eventsCount === 0) return names; + + for (name in (events = this._events)) { + if (has.call(events, name)) names.push(prefix ? name.slice(1) : name); + } + + if (Object.getOwnPropertySymbols) { + return names.concat(Object.getOwnPropertySymbols(events)); + } + + return names; +}; + +/** + * Return the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Array} The registered listeners. + * @public + */ +EventEmitter.prototype.listeners = function listeners(event) { + var evt = prefix ? prefix + event : event + , handlers = this._events[evt]; + + if (!handlers) return []; + if (handlers.fn) return [handlers.fn]; + + for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) { + ee[i] = handlers[i].fn; + } + + return ee; +}; + +/** + * Return the number of listeners listening to a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Number} The number of listeners. + * @public + */ +EventEmitter.prototype.listenerCount = function listenerCount(event) { + var evt = prefix ? prefix + event : event + , listeners = this._events[evt]; + + if (!listeners) return 0; + if (listeners.fn) return 1; + return listeners.length; +}; + +/** + * Calls each of the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Boolean} `true` if the event had listeners, else `false`. + * @public + */ +EventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return false; + + var listeners = this._events[evt] + , len = arguments.length + , args + , i; + + if (listeners.fn) { + if (listeners.once) this.removeListener(event, listeners.fn, undefined, true); + + switch (len) { + case 1: return listeners.fn.call(listeners.context), true; + case 2: return listeners.fn.call(listeners.context, a1), true; + case 3: return listeners.fn.call(listeners.context, a1, a2), true; + case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true; + case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true; + case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true; + } + + for (i = 1, args = new Array(len -1); i < len; i++) { + args[i - 1] = arguments[i]; + } + + listeners.fn.apply(listeners.context, args); + } else { + var length = listeners.length + , j; + + for (i = 0; i < length; i++) { + if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true); + + switch (len) { + case 1: listeners[i].fn.call(listeners[i].context); break; + case 2: listeners[i].fn.call(listeners[i].context, a1); break; + case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break; + case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break; + default: + if (!args) for (j = 1, args = new Array(len -1); j < len; j++) { + args[j - 1] = arguments[j]; + } + + listeners[i].fn.apply(listeners[i].context, args); + } + } + } + + return true; +}; + +/** + * Add a listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.on = function on(event, fn, context) { + return addListener(this, event, fn, context, false); +}; + +/** + * Add a one-time listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.once = function once(event, fn, context) { + return addListener(this, event, fn, context, true); +}; + +/** + * Remove the listeners of a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn Only remove the listeners that match this function. + * @param {*} context Only remove the listeners that have this context. + * @param {Boolean} once Only remove one-time listeners. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return this; + if (!fn) { + clearEvent(this, evt); + return this; + } + + var listeners = this._events[evt]; + + if (listeners.fn) { + if ( + listeners.fn === fn && + (!once || listeners.once) && + (!context || listeners.context === context) + ) { + clearEvent(this, evt); + } + } else { + for (var i = 0, events = [], length = listeners.length; i < length; i++) { + if ( + listeners[i].fn !== fn || + (once && !listeners[i].once) || + (context && listeners[i].context !== context) + ) { + events.push(listeners[i]); + } + } + + // + // Reset the array, or remove it completely if we have no more listeners. + // + if (events.length) this._events[evt] = events.length === 1 ? events[0] : events; + else clearEvent(this, evt); + } + + return this; +}; + +/** + * Remove all listeners, or those of the specified event. + * + * @param {(String|Symbol)} [event] The event name. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeAllListeners = function removeAllListeners(event) { + var evt; + + if (event) { + evt = prefix ? prefix + event : event; + if (this._events[evt]) clearEvent(this, evt); + } else { + this._events = new Events(); + this._eventsCount = 0; + } + + return this; +}; + +// +// Alias methods names because people roll like that. +// +EventEmitter.prototype.off = EventEmitter.prototype.removeListener; +EventEmitter.prototype.addListener = EventEmitter.prototype.on; + +// +// Expose the prefix. +// +EventEmitter.prefixed = prefix; + +// +// Allow `EventEmitter` to be imported as module namespace. +// +EventEmitter.EventEmitter = EventEmitter; + +// +// Expose the module. +// +{ + module.exports = EventEmitter; +} +}); + +var earcut_1 = earcut; +var default_1 = earcut; + +function earcut(data, holeIndices, dim) { + + dim = dim || 2; + + var hasHoles = holeIndices && holeIndices.length, + outerLen = hasHoles ? holeIndices[0] * dim : data.length, + outerNode = linkedList(data, 0, outerLen, dim, true), + triangles = []; + + if (!outerNode || outerNode.next === outerNode.prev) return triangles; + + var minX, minY, maxX, maxY, x, y, invSize; + + if (hasHoles) outerNode = eliminateHoles(data, holeIndices, outerNode, dim); + + // if the shape is not too simple, we'll use z-order curve hash later; calculate polygon bbox + if (data.length > 80 * dim) { + minX = maxX = data[0]; + minY = maxY = data[1]; + + for (var i = dim; i < outerLen; i += dim) { + x = data[i]; + y = data[i + 1]; + if (x < minX) minX = x; + if (y < minY) minY = y; + if (x > maxX) maxX = x; + if (y > maxY) maxY = y; + } + + // minX, minY and invSize are later used to transform coords into integers for z-order calculation + invSize = Math.max(maxX - minX, maxY - minY); + invSize = invSize !== 0 ? 1 / invSize : 0; + } + + earcutLinked(outerNode, triangles, dim, minX, minY, invSize); + + return triangles; +} + +// create a circular doubly linked list from polygon points in the specified winding order +function linkedList(data, start, end, dim, clockwise) { + var i, last; + + if (clockwise === (signedArea(data, start, end, dim) > 0)) { + for (i = start; i < end; i += dim) last = insertNode(i, data[i], data[i + 1], last); + } else { + for (i = end - dim; i >= start; i -= dim) last = insertNode(i, data[i], data[i + 1], last); + } + + if (last && equals(last, last.next)) { + removeNode(last); + last = last.next; + } + + return last; +} + +// eliminate colinear or duplicate points +function filterPoints(start, end) { + if (!start) return start; + if (!end) end = start; + + var p = start, + again; + do { + again = false; + + if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) { + removeNode(p); + p = end = p.prev; + if (p === p.next) break; + again = true; + + } else { + p = p.next; + } + } while (again || p !== end); + + return end; +} + +// main ear slicing loop which triangulates a polygon (given as a linked list) +function earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) { + if (!ear) return; + + // interlink polygon nodes in z-order + if (!pass && invSize) indexCurve(ear, minX, minY, invSize); + + var stop = ear, + prev, next; + + // iterate through ears, slicing them one by one + while (ear.prev !== ear.next) { + prev = ear.prev; + next = ear.next; + + if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) { + // cut off the triangle + triangles.push(prev.i / dim); + triangles.push(ear.i / dim); + triangles.push(next.i / dim); + + removeNode(ear); + + // skipping the next vertex leads to less sliver triangles + ear = next.next; + stop = next.next; + + continue; + } + + ear = next; + + // if we looped through the whole remaining polygon and can't find any more ears + if (ear === stop) { + // try filtering points and slicing again + if (!pass) { + earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1); + + // if this didn't work, try curing all small self-intersections locally + } else if (pass === 1) { + ear = cureLocalIntersections(filterPoints(ear), triangles, dim); + earcutLinked(ear, triangles, dim, minX, minY, invSize, 2); + + // as a last resort, try splitting the remaining polygon into two + } else if (pass === 2) { + splitEarcut(ear, triangles, dim, minX, minY, invSize); + } + + break; + } + } +} + +// check whether a polygon node forms a valid ear with adjacent nodes +function isEar(ear) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // now make sure we don't have other points inside the potential ear + var p = ear.next.next; + + while (p !== ear.prev) { + if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.next; + } + + return true; +} + +function isEarHashed(ear, minX, minY, invSize) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // triangle bbox; min & max are calculated like this for speed + var minTX = a.x < b.x ? (a.x < c.x ? a.x : c.x) : (b.x < c.x ? b.x : c.x), + minTY = a.y < b.y ? (a.y < c.y ? a.y : c.y) : (b.y < c.y ? b.y : c.y), + maxTX = a.x > b.x ? (a.x > c.x ? a.x : c.x) : (b.x > c.x ? b.x : c.x), + maxTY = a.y > b.y ? (a.y > c.y ? a.y : c.y) : (b.y > c.y ? b.y : c.y); + + // z-order range for the current triangle bbox; + var minZ = zOrder(minTX, minTY, minX, minY, invSize), + maxZ = zOrder(maxTX, maxTY, minX, minY, invSize); + + var p = ear.prevZ, + n = ear.nextZ; + + // look for points inside the triangle in both directions + while (p && p.z >= minZ && n && n.z <= maxZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + // look for remaining points in decreasing z-order + while (p && p.z >= minZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + } + + // look for remaining points in increasing z-order + while (n && n.z <= maxZ) { + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + return true; +} + +// go through all polygon nodes and cure small local self-intersections +function cureLocalIntersections(start, triangles, dim) { + var p = start; + do { + var a = p.prev, + b = p.next.next; + + if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) { + + triangles.push(a.i / dim); + triangles.push(p.i / dim); + triangles.push(b.i / dim); + + // remove two nodes involved + removeNode(p); + removeNode(p.next); + + p = start = b; + } + p = p.next; + } while (p !== start); + + return filterPoints(p); +} + +// try splitting polygon into two and triangulate them independently +function splitEarcut(start, triangles, dim, minX, minY, invSize) { + // look for a valid diagonal that divides the polygon into two + var a = start; + do { + var b = a.next.next; + while (b !== a.prev) { + if (a.i !== b.i && isValidDiagonal(a, b)) { + // split the polygon in two by the diagonal + var c = splitPolygon(a, b); + + // filter colinear points around the cuts + a = filterPoints(a, a.next); + c = filterPoints(c, c.next); + + // run earcut on each half + earcutLinked(a, triangles, dim, minX, minY, invSize); + earcutLinked(c, triangles, dim, minX, minY, invSize); + return; + } + b = b.next; + } + a = a.next; + } while (a !== start); +} + +// link every hole into the outer loop, producing a single-ring polygon without holes +function eliminateHoles(data, holeIndices, outerNode, dim) { + var queue = [], + i, len, start, end, list; + + for (i = 0, len = holeIndices.length; i < len; i++) { + start = holeIndices[i] * dim; + end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + list = linkedList(data, start, end, dim, false); + if (list === list.next) list.steiner = true; + queue.push(getLeftmost(list)); + } + + queue.sort(compareX); + + // process holes from left to right + for (i = 0; i < queue.length; i++) { + eliminateHole(queue[i], outerNode); + outerNode = filterPoints(outerNode, outerNode.next); + } + + return outerNode; +} + +function compareX(a, b) { + return a.x - b.x; +} + +// find a bridge between vertices that connects hole with an outer ring and and link it +function eliminateHole(hole, outerNode) { + outerNode = findHoleBridge(hole, outerNode); + if (outerNode) { + var b = splitPolygon(outerNode, hole); + filterPoints(b, b.next); + } +} + +// David Eberly's algorithm for finding a bridge between hole and outer polygon +function findHoleBridge(hole, outerNode) { + var p = outerNode, + hx = hole.x, + hy = hole.y, + qx = -Infinity, + m; + + // find a segment intersected by a ray from the hole's leftmost point to the left; + // segment's endpoint with lesser x will be potential connection point + do { + if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) { + var x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y); + if (x <= hx && x > qx) { + qx = x; + if (x === hx) { + if (hy === p.y) return p; + if (hy === p.next.y) return p.next; + } + m = p.x < p.next.x ? p : p.next; + } + } + p = p.next; + } while (p !== outerNode); + + if (!m) return null; + + if (hx === qx) return m; // hole touches outer segment; pick leftmost endpoint + + // look for points inside the triangle of hole point, segment intersection and endpoint; + // if there are no points found, we have a valid connection; + // otherwise choose the point of the minimum angle with the ray as connection point + + var stop = m, + mx = m.x, + my = m.y, + tanMin = Infinity, + tan; + + p = m; + + do { + if (hx >= p.x && p.x >= mx && hx !== p.x && + pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) { + + tan = Math.abs(hy - p.y) / (hx - p.x); // tangential + + if (locallyInside(p, hole) && + (tan < tanMin || (tan === tanMin && (p.x > m.x || (p.x === m.x && sectorContainsSector(m, p)))))) { + m = p; + tanMin = tan; + } + } + + p = p.next; + } while (p !== stop); + + return m; +} + +// whether sector in vertex m contains sector in vertex p in the same coordinates +function sectorContainsSector(m, p) { + return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0; +} + +// interlink polygon nodes in z-order +function indexCurve(start, minX, minY, invSize) { + var p = start; + do { + if (p.z === null) p.z = zOrder(p.x, p.y, minX, minY, invSize); + p.prevZ = p.prev; + p.nextZ = p.next; + p = p.next; + } while (p !== start); + + p.prevZ.nextZ = null; + p.prevZ = null; + + sortLinked(p); +} + +// Simon Tatham's linked list merge sort algorithm +// http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html +function sortLinked(list) { + var i, p, q, e, tail, numMerges, pSize, qSize, + inSize = 1; + + do { + p = list; + list = null; + tail = null; + numMerges = 0; + + while (p) { + numMerges++; + q = p; + pSize = 0; + for (i = 0; i < inSize; i++) { + pSize++; + q = q.nextZ; + if (!q) break; + } + qSize = inSize; + + while (pSize > 0 || (qSize > 0 && q)) { + + if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) { + e = p; + p = p.nextZ; + pSize--; + } else { + e = q; + q = q.nextZ; + qSize--; + } + + if (tail) tail.nextZ = e; + else list = e; + + e.prevZ = tail; + tail = e; + } + + p = q; + } + + tail.nextZ = null; + inSize *= 2; + + } while (numMerges > 1); + + return list; +} + +// z-order of a point given coords and inverse of the longer side of data bbox +function zOrder(x, y, minX, minY, invSize) { + // coords are transformed into non-negative 15-bit integer range + x = 32767 * (x - minX) * invSize; + y = 32767 * (y - minY) * invSize; + + x = (x | (x << 8)) & 0x00FF00FF; + x = (x | (x << 4)) & 0x0F0F0F0F; + x = (x | (x << 2)) & 0x33333333; + x = (x | (x << 1)) & 0x55555555; + + y = (y | (y << 8)) & 0x00FF00FF; + y = (y | (y << 4)) & 0x0F0F0F0F; + y = (y | (y << 2)) & 0x33333333; + y = (y | (y << 1)) & 0x55555555; + + return x | (y << 1); +} + +// find the leftmost node of a polygon ring +function getLeftmost(start) { + var p = start, + leftmost = start; + do { + if (p.x < leftmost.x || (p.x === leftmost.x && p.y < leftmost.y)) leftmost = p; + p = p.next; + } while (p !== start); + + return leftmost; +} + +// check if a point lies within a convex triangle +function pointInTriangle(ax, ay, bx, by, cx, cy, px, py) { + return (cx - px) * (ay - py) - (ax - px) * (cy - py) >= 0 && + (ax - px) * (by - py) - (bx - px) * (ay - py) >= 0 && + (bx - px) * (cy - py) - (cx - px) * (by - py) >= 0; +} + +// check if a diagonal between two polygon nodes is valid (lies in polygon interior) +function isValidDiagonal(a, b) { + return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && // dones't intersect other edges + (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && // locally visible + (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors + equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case +} + +// signed area of a triangle +function area(p, q, r) { + return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y); +} + +// check if two points are equal +function equals(p1, p2) { + return p1.x === p2.x && p1.y === p2.y; +} + +// check if two segments intersect +function intersects(p1, q1, p2, q2) { + var o1 = sign(area(p1, q1, p2)); + var o2 = sign(area(p1, q1, q2)); + var o3 = sign(area(p2, q2, p1)); + var o4 = sign(area(p2, q2, q1)); + + if (o1 !== o2 && o3 !== o4) return true; // general case + + if (o1 === 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p1q1 + if (o2 === 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p1q1 + if (o3 === 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p2q2 + if (o4 === 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p2q2 + + return false; +} + +// for collinear points p, q, r, check if point q lies on segment pr +function onSegment(p, q, r) { + return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y); +} + +function sign(num) { + return num > 0 ? 1 : num < 0 ? -1 : 0; +} + +// check if a polygon diagonal intersects any polygon segments +function intersectsPolygon(a, b) { + var p = a; + do { + if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i && + intersects(p, p.next, a, b)) return true; + p = p.next; + } while (p !== a); + + return false; +} + +// check if a polygon diagonal is locally inside the polygon +function locallyInside(a, b) { + return area(a.prev, a, a.next) < 0 ? + area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 : + area(a, b, a.prev) < 0 || area(a, a.next, b) < 0; +} + +// check if the middle point of a polygon diagonal is inside the polygon +function middleInside(a, b) { + var p = a, + inside = false, + px = (a.x + b.x) / 2, + py = (a.y + b.y) / 2; + do { + if (((p.y > py) !== (p.next.y > py)) && p.next.y !== p.y && + (px < (p.next.x - p.x) * (py - p.y) / (p.next.y - p.y) + p.x)) + inside = !inside; + p = p.next; + } while (p !== a); + + return inside; +} + +// link two polygon vertices with a bridge; if the vertices belong to the same ring, it splits polygon into two; +// if one belongs to the outer ring and another to a hole, it merges it into a single ring +function splitPolygon(a, b) { + var a2 = new Node(a.i, a.x, a.y), + b2 = new Node(b.i, b.x, b.y), + an = a.next, + bp = b.prev; + + a.next = b; + b.prev = a; + + a2.next = an; + an.prev = a2; + + b2.next = a2; + a2.prev = b2; + + bp.next = b2; + b2.prev = bp; + + return b2; +} + +// create a node and optionally link it with previous one (in a circular doubly linked list) +function insertNode(i, x, y, last) { + var p = new Node(i, x, y); + + if (!last) { + p.prev = p; + p.next = p; + + } else { + p.next = last.next; + p.prev = last; + last.next.prev = p; + last.next = p; + } + return p; +} + +function removeNode(p) { + p.next.prev = p.prev; + p.prev.next = p.next; + + if (p.prevZ) p.prevZ.nextZ = p.nextZ; + if (p.nextZ) p.nextZ.prevZ = p.prevZ; +} + +function Node(i, x, y) { + // vertex index in coordinates array + this.i = i; + + // vertex coordinates + this.x = x; + this.y = y; + + // previous and next vertex nodes in a polygon ring + this.prev = null; + this.next = null; + + // z-order curve value + this.z = null; + + // previous and next nodes in z-order + this.prevZ = null; + this.nextZ = null; + + // indicates whether this is a steiner point + this.steiner = false; +} + +// return a percentage difference between the polygon area and its triangulation area; +// used to verify correctness of triangulation +earcut.deviation = function (data, holeIndices, dim, triangles) { + var hasHoles = holeIndices && holeIndices.length; + var outerLen = hasHoles ? holeIndices[0] * dim : data.length; + + var polygonArea = Math.abs(signedArea(data, 0, outerLen, dim)); + if (hasHoles) { + for (var i = 0, len = holeIndices.length; i < len; i++) { + var start = holeIndices[i] * dim; + var end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + polygonArea -= Math.abs(signedArea(data, start, end, dim)); + } + } + + var trianglesArea = 0; + for (i = 0; i < triangles.length; i += 3) { + var a = triangles[i] * dim; + var b = triangles[i + 1] * dim; + var c = triangles[i + 2] * dim; + trianglesArea += Math.abs( + (data[a] - data[c]) * (data[b + 1] - data[a + 1]) - + (data[a] - data[b]) * (data[c + 1] - data[a + 1])); + } + + return polygonArea === 0 && trianglesArea === 0 ? 0 : + Math.abs((trianglesArea - polygonArea) / polygonArea); +}; + +function signedArea(data, start, end, dim) { + var sum = 0; + for (var i = start, j = end - dim; i < end; i += dim) { + sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]); + j = i; + } + return sum; +} + +// turn a polygon in a multi-dimensional array form (e.g. as in GeoJSON) into a form Earcut accepts +earcut.flatten = function (data) { + var dim = data[0][0].length, + result = {vertices: [], holes: [], dimensions: dim}, + holeIndex = 0; + + for (var i = 0; i < data.length; i++) { + for (var j = 0; j < data[i].length; j++) { + for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]); + } + if (i > 0) { + holeIndex += data[i - 1].length; + result.holes.push(holeIndex); + } + } + return result; +}; +earcut_1.default = default_1; + +/*! https://mths.be/punycode v1.4.1 by @mathias */ + + +/** Highest positive signed 32-bit float value */ +var maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1 + +/** Bootstring parameters */ +var base = 36; +var tMin = 1; +var tMax = 26; +var skew = 38; +var damp = 700; +var initialBias = 72; +var initialN = 128; // 0x80 +var delimiter$1 = '-'; // '\x2D' +var regexNonASCII = /[^\x20-\x7E]/; // unprintable ASCII chars + non-ASCII chars +var regexSeparators = /[\x2E\u3002\uFF0E\uFF61]/g; // RFC 3490 separators + +/** Error messages */ +var errors = { + 'overflow': 'Overflow: input needs wider integers to process', + 'not-basic': 'Illegal input >= 0x80 (not a basic code point)', + 'invalid-input': 'Invalid input' +}; + +/** Convenience shortcuts */ +var baseMinusTMin = base - tMin; +var floor = Math.floor; +var stringFromCharCode = String.fromCharCode; + +/*--------------------------------------------------------------------------*/ + +/** + * A generic error utility function. + * @private + * @param {String} type The error type. + * @returns {Error} Throws a `RangeError` with the applicable error message. + */ +function error(type) { + throw new RangeError(errors[type]); +} + +/** + * A generic `Array#map` utility function. + * @private + * @param {Array} array The array to iterate over. + * @param {Function} callback The function that gets called for every array + * item. + * @returns {Array} A new array of values returned by the callback function. + */ +function map(array, fn) { + var length = array.length; + var result = []; + while (length--) { + result[length] = fn(array[length]); + } + return result; +} + +/** + * A simple `Array#map`-like wrapper to work with domain name strings or email + * addresses. + * @private + * @param {String} domain The domain name or email address. + * @param {Function} callback The function that gets called for every + * character. + * @returns {Array} A new string of characters returned by the callback + * function. + */ +function mapDomain(string, fn) { + var parts = string.split('@'); + var result = ''; + if (parts.length > 1) { + // In email addresses, only the domain name should be punycoded. Leave + // the local part (i.e. everything up to `@`) intact. + result = parts[0] + '@'; + string = parts[1]; + } + // Avoid `split(regex)` for IE8 compatibility. See #17. + string = string.replace(regexSeparators, '\x2E'); + var labels = string.split('.'); + var encoded = map(labels, fn).join('.'); + return result + encoded; +} + +/** + * Creates an array containing the numeric code points of each Unicode + * character in the string. While JavaScript uses UCS-2 internally, + * this function will convert a pair of surrogate halves (each of which + * UCS-2 exposes as separate characters) into a single code point, + * matching UTF-16. + * @see `punycode.ucs2.encode` + * @see + * @memberOf punycode.ucs2 + * @name decode + * @param {String} string The Unicode input string (UCS-2). + * @returns {Array} The new array of code points. + */ +function ucs2decode(string) { + var output = [], + counter = 0, + length = string.length, + value, + extra; + while (counter < length) { + value = string.charCodeAt(counter++); + if (value >= 0xD800 && value <= 0xDBFF && counter < length) { + // high surrogate, and there is a next character + extra = string.charCodeAt(counter++); + if ((extra & 0xFC00) == 0xDC00) { // low surrogate + output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000); + } else { + // unmatched surrogate; only append this code unit, in case the next + // code unit is the high surrogate of a surrogate pair + output.push(value); + counter--; + } + } else { + output.push(value); + } + } + return output; +} + +/** + * Converts a digit/integer into a basic code point. + * @see `basicToDigit()` + * @private + * @param {Number} digit The numeric value of a basic code point. + * @returns {Number} The basic code point whose value (when used for + * representing integers) is `digit`, which needs to be in the range + * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is + * used; else, the lowercase form is used. The behavior is undefined + * if `flag` is non-zero and `digit` has no uppercase form. + */ +function digitToBasic(digit, flag) { + // 0..25 map to ASCII a..z or A..Z + // 26..35 map to ASCII 0..9 + return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5); +} + +/** + * Bias adaptation function as per section 3.4 of RFC 3492. + * https://tools.ietf.org/html/rfc3492#section-3.4 + * @private + */ +function adapt(delta, numPoints, firstTime) { + var k = 0; + delta = firstTime ? floor(delta / damp) : delta >> 1; + delta += floor(delta / numPoints); + for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) { + delta = floor(delta / baseMinusTMin); + } + return floor(k + (baseMinusTMin + 1) * delta / (delta + skew)); +} + +/** + * Converts a string of Unicode symbols (e.g. a domain name label) to a + * Punycode string of ASCII-only symbols. + * @memberOf punycode + * @param {String} input The string of Unicode symbols. + * @returns {String} The resulting Punycode string of ASCII-only symbols. + */ +function encode(input) { + var n, + delta, + handledCPCount, + basicLength, + bias, + j, + m, + q, + k, + t, + currentValue, + output = [], + /** `inputLength` will hold the number of code points in `input`. */ + inputLength, + /** Cached calculation results */ + handledCPCountPlusOne, + baseMinusT, + qMinusT; + + // Convert the input in UCS-2 to Unicode + input = ucs2decode(input); + + // Cache the length + inputLength = input.length; + + // Initialize the state + n = initialN; + delta = 0; + bias = initialBias; + + // Handle the basic code points + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue < 0x80) { + output.push(stringFromCharCode(currentValue)); + } + } + + handledCPCount = basicLength = output.length; + + // `handledCPCount` is the number of code points that have been handled; + // `basicLength` is the number of basic code points. + + // Finish the basic string - if it is not empty - with a delimiter + if (basicLength) { + output.push(delimiter$1); + } + + // Main encoding loop: + while (handledCPCount < inputLength) { + + // All non-basic code points < n have been handled already. Find the next + // larger one: + for (m = maxInt, j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue >= n && currentValue < m) { + m = currentValue; + } + } + + // Increase `delta` enough to advance the decoder's state to , + // but guard against overflow + handledCPCountPlusOne = handledCPCount + 1; + if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) { + error('overflow'); + } + + delta += (m - n) * handledCPCountPlusOne; + n = m; + + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + + if (currentValue < n && ++delta > maxInt) { + error('overflow'); + } + + if (currentValue == n) { + // Represent delta as a generalized variable-length integer + for (q = delta, k = base; /* no condition */ ; k += base) { + t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias); + if (q < t) { + break; + } + qMinusT = q - t; + baseMinusT = base - t; + output.push( + stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0)) + ); + q = floor(qMinusT / baseMinusT); + } + + output.push(stringFromCharCode(digitToBasic(q, 0))); + bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength); + delta = 0; + ++handledCPCount; + } + } + + ++delta; + ++n; + + } + return output.join(''); +} + +/** + * Converts a Unicode string representing a domain name or an email address to + * Punycode. Only the non-ASCII parts of the domain name will be converted, + * i.e. it doesn't matter if you call it with a domain that's already in + * ASCII. + * @memberOf punycode + * @param {String} input The domain name or email address to convert, as a + * Unicode string. + * @returns {String} The Punycode representation of the given domain name or + * email address. + */ +function toASCII(input) { + return mapDomain(input, function(string) { + return regexNonASCII.test(string) ? + 'xn--' + encode(string) : + string; + }); +} + +// Copyright Joyent, Inc. and other Node contributors. + +function isNull(arg) { + return arg === null; +} + +function isNullOrUndefined(arg) { + return arg == null; +} + +function isString(arg) { + return typeof arg === 'string'; +} + +function isObject(arg) { + return typeof arg === 'object' && arg !== null; +} + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + + +// If obj.hasOwnProperty has been overridden, then calling +// obj.hasOwnProperty(prop) will break. +// See: https://github.com/joyent/node/issues/1707 +function hasOwnProperty$1(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop); +} +var isArray = Array.isArray || function (xs) { + return Object.prototype.toString.call(xs) === '[object Array]'; +}; +function stringifyPrimitive(v) { + switch (typeof v) { + case 'string': + return v; + + case 'boolean': + return v ? 'true' : 'false'; + + case 'number': + return isFinite(v) ? v : ''; + + default: + return ''; + } +} + +function stringify (obj, sep, eq, name) { + sep = sep || '&'; + eq = eq || '='; + if (obj === null) { + obj = undefined; + } + + if (typeof obj === 'object') { + return map$1(objectKeys(obj), function(k) { + var ks = encodeURIComponent(stringifyPrimitive(k)) + eq; + if (isArray(obj[k])) { + return map$1(obj[k], function(v) { + return ks + encodeURIComponent(stringifyPrimitive(v)); + }).join(sep); + } else { + return ks + encodeURIComponent(stringifyPrimitive(obj[k])); + } + }).join(sep); + + } + + if (!name) return ''; + return encodeURIComponent(stringifyPrimitive(name)) + eq + + encodeURIComponent(stringifyPrimitive(obj)); +} +function map$1 (xs, f) { + if (xs.map) return xs.map(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + res.push(f(xs[i], i)); + } + return res; +} + +var objectKeys = Object.keys || function (obj) { + var res = []; + for (var key in obj) { + if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key); + } + return res; +}; + +function parse(qs, sep, eq, options) { + sep = sep || '&'; + eq = eq || '='; + var obj = {}; + + if (typeof qs !== 'string' || qs.length === 0) { + return obj; + } + + var regexp = /\+/g; + qs = qs.split(sep); + + var maxKeys = 1000; + if (options && typeof options.maxKeys === 'number') { + maxKeys = options.maxKeys; + } + + var len = qs.length; + // maxKeys <= 0 means that we should not limit keys count + if (maxKeys > 0 && len > maxKeys) { + len = maxKeys; + } + + for (var i = 0; i < len; ++i) { + var x = qs[i].replace(regexp, '%20'), + idx = x.indexOf(eq), + kstr, vstr, k, v; + + if (idx >= 0) { + kstr = x.substr(0, idx); + vstr = x.substr(idx + 1); + } else { + kstr = x; + vstr = ''; + } + + k = decodeURIComponent(kstr); + v = decodeURIComponent(vstr); + + if (!hasOwnProperty$1(obj, k)) { + obj[k] = v; + } else if (isArray(obj[k])) { + obj[k].push(v); + } else { + obj[k] = [obj[k], v]; + } + } + + return obj; +} + +// Copyright Joyent, Inc. and other Node contributors. +var url = { + parse: urlParse, + resolve: urlResolve, + resolveObject: urlResolveObject, + format: urlFormat, + Url: Url +}; +function Url() { + this.protocol = null; + this.slashes = null; + this.auth = null; + this.host = null; + this.port = null; + this.hostname = null; + this.hash = null; + this.search = null; + this.query = null; + this.pathname = null; + this.path = null; + this.href = null; +} + +// Reference: RFC 3986, RFC 1808, RFC 2396 + +// define these here so at least they only have to be +// compiled once on the first module load. +var protocolPattern = /^([a-z0-9.+-]+:)/i, + portPattern = /:[0-9]*$/, + + // Special case for a simple path URL + simplePathPattern = /^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/, + + // RFC 2396: characters reserved for delimiting URLs. + // We actually just auto-escape these. + delims = ['<', '>', '"', '`', ' ', '\r', '\n', '\t'], + + // RFC 2396: characters not allowed for various reasons. + unwise = ['{', '}', '|', '\\', '^', '`'].concat(delims), + + // Allowed by RFCs, but cause of XSS attacks. Always escape these. + autoEscape = ['\''].concat(unwise), + // Characters that are never ever allowed in a hostname. + // Note that any invalid chars are also handled, but these + // are the ones that are *expected* to be seen, so we fast-path + // them. + nonHostChars = ['%', '/', '?', ';', '#'].concat(autoEscape), + hostEndingChars = ['/', '?', '#'], + hostnameMaxLen = 255, + hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/, + hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/, + // protocols that can allow "unsafe" and "unwise" chars. + unsafeProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that never have a hostname. + hostlessProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that always contain a // bit. + slashedProtocol = { + 'http': true, + 'https': true, + 'ftp': true, + 'gopher': true, + 'file': true, + 'http:': true, + 'https:': true, + 'ftp:': true, + 'gopher:': true, + 'file:': true + }; + +function urlParse(url, parseQueryString, slashesDenoteHost) { + if (url && isObject(url) && url instanceof Url) return url; + + var u = new Url; + u.parse(url, parseQueryString, slashesDenoteHost); + return u; +} +Url.prototype.parse = function(url, parseQueryString, slashesDenoteHost) { + return parse$1(this, url, parseQueryString, slashesDenoteHost); +}; + +function parse$1(self, url, parseQueryString, slashesDenoteHost) { + if (!isString(url)) { + throw new TypeError('Parameter \'url\' must be a string, not ' + typeof url); + } + + // Copy chrome, IE, opera backslash-handling behavior. + // Back slashes before the query string get converted to forward slashes + // See: https://code.google.com/p/chromium/issues/detail?id=25916 + var queryIndex = url.indexOf('?'), + splitter = + (queryIndex !== -1 && queryIndex < url.indexOf('#')) ? '?' : '#', + uSplit = url.split(splitter), + slashRegex = /\\/g; + uSplit[0] = uSplit[0].replace(slashRegex, '/'); + url = uSplit.join(splitter); + + var rest = url; + + // trim before proceeding. + // This is to support parse stuff like " http://foo.com \n" + rest = rest.trim(); + + if (!slashesDenoteHost && url.split('#').length === 1) { + // Try fast path regexp + var simplePath = simplePathPattern.exec(rest); + if (simplePath) { + self.path = rest; + self.href = rest; + self.pathname = simplePath[1]; + if (simplePath[2]) { + self.search = simplePath[2]; + if (parseQueryString) { + self.query = parse(self.search.substr(1)); + } else { + self.query = self.search.substr(1); + } + } else if (parseQueryString) { + self.search = ''; + self.query = {}; + } + return self; + } + } + + var proto = protocolPattern.exec(rest); + if (proto) { + proto = proto[0]; + var lowerProto = proto.toLowerCase(); + self.protocol = lowerProto; + rest = rest.substr(proto.length); + } + + // figure out if it's got a host + // user@server is *always* interpreted as a hostname, and url + // resolution will treat //foo/bar as host=foo,path=bar because that's + // how the browser resolves relative URLs. + if (slashesDenoteHost || proto || rest.match(/^\/\/[^@\/]+@[^@\/]+/)) { + var slashes = rest.substr(0, 2) === '//'; + if (slashes && !(proto && hostlessProtocol[proto])) { + rest = rest.substr(2); + self.slashes = true; + } + } + var i, hec, l, p; + if (!hostlessProtocol[proto] && + (slashes || (proto && !slashedProtocol[proto]))) { + + // there's a hostname. + // the first instance of /, ?, ;, or # ends the host. + // + // If there is an @ in the hostname, then non-host chars *are* allowed + // to the left of the last @ sign, unless some host-ending character + // comes *before* the @-sign. + // URLs are obnoxious. + // + // ex: + // http://a@b@c/ => user:a@b host:c + // http://a@b?@c => user:a host:c path:/?@c + + // v0.12 TODO(isaacs): This is not quite how Chrome does things. + // Review our test case against browsers more comprehensively. + + // find the first instance of any hostEndingChars + var hostEnd = -1; + for (i = 0; i < hostEndingChars.length; i++) { + hec = rest.indexOf(hostEndingChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + + // at this point, either we have an explicit point where the + // auth portion cannot go past, or the last @ char is the decider. + var auth, atSign; + if (hostEnd === -1) { + // atSign can be anywhere. + atSign = rest.lastIndexOf('@'); + } else { + // atSign must be in auth portion. + // http://a@b/c@d => host:b auth:a path:/c@d + atSign = rest.lastIndexOf('@', hostEnd); + } + + // Now we have a portion which is definitely the auth. + // Pull that off. + if (atSign !== -1) { + auth = rest.slice(0, atSign); + rest = rest.slice(atSign + 1); + self.auth = decodeURIComponent(auth); + } + + // the host is the remaining to the left of the first non-host char + hostEnd = -1; + for (i = 0; i < nonHostChars.length; i++) { + hec = rest.indexOf(nonHostChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + // if we still have not hit it, then the entire thing is a host. + if (hostEnd === -1) + hostEnd = rest.length; + + self.host = rest.slice(0, hostEnd); + rest = rest.slice(hostEnd); + + // pull out port. + parseHost(self); + + // we've indicated that there is a hostname, + // so even if it's empty, it has to be present. + self.hostname = self.hostname || ''; + + // if hostname begins with [ and ends with ] + // assume that it's an IPv6 address. + var ipv6Hostname = self.hostname[0] === '[' && + self.hostname[self.hostname.length - 1] === ']'; + + // validate a little. + if (!ipv6Hostname) { + var hostparts = self.hostname.split(/\./); + for (i = 0, l = hostparts.length; i < l; i++) { + var part = hostparts[i]; + if (!part) continue; + if (!part.match(hostnamePartPattern)) { + var newpart = ''; + for (var j = 0, k = part.length; j < k; j++) { + if (part.charCodeAt(j) > 127) { + // we replace non-ASCII char with a temporary placeholder + // we need this to make sure size of hostname is not + // broken by replacing non-ASCII by nothing + newpart += 'x'; + } else { + newpart += part[j]; + } + } + // we test again with ASCII char only + if (!newpart.match(hostnamePartPattern)) { + var validParts = hostparts.slice(0, i); + var notHost = hostparts.slice(i + 1); + var bit = part.match(hostnamePartStart); + if (bit) { + validParts.push(bit[1]); + notHost.unshift(bit[2]); + } + if (notHost.length) { + rest = '/' + notHost.join('.') + rest; + } + self.hostname = validParts.join('.'); + break; + } + } + } + } + + if (self.hostname.length > hostnameMaxLen) { + self.hostname = ''; + } else { + // hostnames are always lower case. + self.hostname = self.hostname.toLowerCase(); + } + + if (!ipv6Hostname) { + // IDNA Support: Returns a punycoded representation of "domain". + // It only converts parts of the domain name that + // have non-ASCII characters, i.e. it doesn't matter if + // you call it with a domain that already is ASCII-only. + self.hostname = toASCII(self.hostname); + } + + p = self.port ? ':' + self.port : ''; + var h = self.hostname || ''; + self.host = h + p; + self.href += self.host; + + // strip [ and ] from the hostname + // the host field still retains them, though + if (ipv6Hostname) { + self.hostname = self.hostname.substr(1, self.hostname.length - 2); + if (rest[0] !== '/') { + rest = '/' + rest; + } + } + } + + // now rest is set to the post-host stuff. + // chop off any delim chars. + if (!unsafeProtocol[lowerProto]) { + + // First, make 100% sure that any "autoEscape" chars get + // escaped, even if encodeURIComponent doesn't think they + // need to be. + for (i = 0, l = autoEscape.length; i < l; i++) { + var ae = autoEscape[i]; + if (rest.indexOf(ae) === -1) + continue; + var esc = encodeURIComponent(ae); + if (esc === ae) { + esc = escape(ae); + } + rest = rest.split(ae).join(esc); + } + } + + + // chop off from the tail first. + var hash = rest.indexOf('#'); + if (hash !== -1) { + // got a fragment string. + self.hash = rest.substr(hash); + rest = rest.slice(0, hash); + } + var qm = rest.indexOf('?'); + if (qm !== -1) { + self.search = rest.substr(qm); + self.query = rest.substr(qm + 1); + if (parseQueryString) { + self.query = parse(self.query); + } + rest = rest.slice(0, qm); + } else if (parseQueryString) { + // no query string, but parseQueryString still requested + self.search = ''; + self.query = {}; + } + if (rest) self.pathname = rest; + if (slashedProtocol[lowerProto] && + self.hostname && !self.pathname) { + self.pathname = '/'; + } + + //to support http.request + if (self.pathname || self.search) { + p = self.pathname || ''; + var s = self.search || ''; + self.path = p + s; + } + + // finally, reconstruct the href based on what has been validated. + self.href = format(self); + return self; +} + +// format a parsed object into a url string +function urlFormat(obj) { + // ensure it's an object, and not a string url. + // If it's an obj, this is a no-op. + // this way, you can call url_format() on strings + // to clean up potentially wonky urls. + if (isString(obj)) obj = parse$1({}, obj); + return format(obj); +} + +function format(self) { + var auth = self.auth || ''; + if (auth) { + auth = encodeURIComponent(auth); + auth = auth.replace(/%3A/i, ':'); + auth += '@'; + } + + var protocol = self.protocol || '', + pathname = self.pathname || '', + hash = self.hash || '', + host = false, + query = ''; + + if (self.host) { + host = auth + self.host; + } else if (self.hostname) { + host = auth + (self.hostname.indexOf(':') === -1 ? + self.hostname : + '[' + this.hostname + ']'); + if (self.port) { + host += ':' + self.port; + } + } + + if (self.query && + isObject(self.query) && + Object.keys(self.query).length) { + query = stringify(self.query); + } + + var search = self.search || (query && ('?' + query)) || ''; + + if (protocol && protocol.substr(-1) !== ':') protocol += ':'; + + // only the slashedProtocols get the //. Not mailto:, xmpp:, etc. + // unless they had them to begin with. + if (self.slashes || + (!protocol || slashedProtocol[protocol]) && host !== false) { + host = '//' + (host || ''); + if (pathname && pathname.charAt(0) !== '/') pathname = '/' + pathname; + } else if (!host) { + host = ''; + } + + if (hash && hash.charAt(0) !== '#') hash = '#' + hash; + if (search && search.charAt(0) !== '?') search = '?' + search; + + pathname = pathname.replace(/[?#]/g, function(match) { + return encodeURIComponent(match); + }); + search = search.replace('#', '%23'); + + return protocol + host + pathname + search + hash; +} + +Url.prototype.format = function() { + return format(this); +}; + +function urlResolve(source, relative) { + return urlParse(source, false, true).resolve(relative); +} + +Url.prototype.resolve = function(relative) { + return this.resolveObject(urlParse(relative, false, true)).format(); +}; + +function urlResolveObject(source, relative) { + if (!source) return relative; + return urlParse(source, false, true).resolveObject(relative); +} + +Url.prototype.resolveObject = function(relative) { + if (isString(relative)) { + var rel = new Url(); + rel.parse(relative, false, true); + relative = rel; + } + + var result = new Url(); + var tkeys = Object.keys(this); + for (var tk = 0; tk < tkeys.length; tk++) { + var tkey = tkeys[tk]; + result[tkey] = this[tkey]; + } + + // hash is always overridden, no matter what. + // even href="" will remove it. + result.hash = relative.hash; + + // if the relative url is empty, then there's nothing left to do here. + if (relative.href === '') { + result.href = result.format(); + return result; + } + + // hrefs like //foo/bar always cut to the protocol. + if (relative.slashes && !relative.protocol) { + // take everything except the protocol from relative + var rkeys = Object.keys(relative); + for (var rk = 0; rk < rkeys.length; rk++) { + var rkey = rkeys[rk]; + if (rkey !== 'protocol') + result[rkey] = relative[rkey]; + } + + //urlParse appends trailing / to urls like http://www.example.com + if (slashedProtocol[result.protocol] && + result.hostname && !result.pathname) { + result.path = result.pathname = '/'; + } + + result.href = result.format(); + return result; + } + var relPath; + if (relative.protocol && relative.protocol !== result.protocol) { + // if it's a known url protocol, then changing + // the protocol does weird things + // first, if it's not file:, then we MUST have a host, + // and if there was a path + // to begin with, then we MUST have a path. + // if it is file:, then the host is dropped, + // because that's known to be hostless. + // anything else is assumed to be absolute. + if (!slashedProtocol[relative.protocol]) { + var keys = Object.keys(relative); + for (var v = 0; v < keys.length; v++) { + var k = keys[v]; + result[k] = relative[k]; + } + result.href = result.format(); + return result; + } + + result.protocol = relative.protocol; + if (!relative.host && !hostlessProtocol[relative.protocol]) { + relPath = (relative.pathname || '').split('/'); + while (relPath.length && !(relative.host = relPath.shift())); + if (!relative.host) relative.host = ''; + if (!relative.hostname) relative.hostname = ''; + if (relPath[0] !== '') relPath.unshift(''); + if (relPath.length < 2) relPath.unshift(''); + result.pathname = relPath.join('/'); + } else { + result.pathname = relative.pathname; + } + result.search = relative.search; + result.query = relative.query; + result.host = relative.host || ''; + result.auth = relative.auth; + result.hostname = relative.hostname || relative.host; + result.port = relative.port; + // to support http.request + if (result.pathname || result.search) { + var p = result.pathname || ''; + var s = result.search || ''; + result.path = p + s; + } + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; + } + + var isSourceAbs = (result.pathname && result.pathname.charAt(0) === '/'), + isRelAbs = ( + relative.host || + relative.pathname && relative.pathname.charAt(0) === '/' + ), + mustEndAbs = (isRelAbs || isSourceAbs || + (result.host && relative.pathname)), + removeAllDots = mustEndAbs, + srcPath = result.pathname && result.pathname.split('/') || [], + psychotic = result.protocol && !slashedProtocol[result.protocol]; + relPath = relative.pathname && relative.pathname.split('/') || []; + // if the url is a non-slashed url, then relative + // links like ../.. should be able + // to crawl up to the hostname, as well. This is strange. + // result.protocol has already been set by now. + // Later on, put the first path part into the host field. + if (psychotic) { + result.hostname = ''; + result.port = null; + if (result.host) { + if (srcPath[0] === '') srcPath[0] = result.host; + else srcPath.unshift(result.host); + } + result.host = ''; + if (relative.protocol) { + relative.hostname = null; + relative.port = null; + if (relative.host) { + if (relPath[0] === '') relPath[0] = relative.host; + else relPath.unshift(relative.host); + } + relative.host = null; + } + mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === ''); + } + var authInHost; + if (isRelAbs) { + // it's absolute. + result.host = (relative.host || relative.host === '') ? + relative.host : result.host; + result.hostname = (relative.hostname || relative.hostname === '') ? + relative.hostname : result.hostname; + result.search = relative.search; + result.query = relative.query; + srcPath = relPath; + // fall through to the dot-handling below. + } else if (relPath.length) { + // it's relative + // throw away the existing file, and take the new path instead. + if (!srcPath) srcPath = []; + srcPath.pop(); + srcPath = srcPath.concat(relPath); + result.search = relative.search; + result.query = relative.query; + } else if (!isNullOrUndefined(relative.search)) { + // just pull out the search. + // like href='?foo'. + // Put this after the other two cases because it simplifies the booleans + if (psychotic) { + result.hostname = result.host = srcPath.shift(); + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + result.search = relative.search; + result.query = relative.query; + //to support http.request + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.href = result.format(); + return result; + } + + if (!srcPath.length) { + // no path at all. easy. + // we've already handled the other stuff above. + result.pathname = null; + //to support http.request + if (result.search) { + result.path = '/' + result.search; + } else { + result.path = null; + } + result.href = result.format(); + return result; + } + + // if a url ENDs in . or .., then it must get a trailing slash. + // however, if it ends in anything else non-slashy, + // then it must NOT get a trailing slash. + var last = srcPath.slice(-1)[0]; + var hasTrailingSlash = ( + (result.host || relative.host || srcPath.length > 1) && + (last === '.' || last === '..') || last === ''); + + // strip single dots, resolve double dots to parent dir + // if the path tries to go above the root, `up` ends up > 0 + var up = 0; + for (var i = srcPath.length; i >= 0; i--) { + last = srcPath[i]; + if (last === '.') { + srcPath.splice(i, 1); + } else if (last === '..') { + srcPath.splice(i, 1); + up++; + } else if (up) { + srcPath.splice(i, 1); + up--; + } + } + + // if the path is allowed to go above the root, restore leading ..s + if (!mustEndAbs && !removeAllDots) { + for (; up--; up) { + srcPath.unshift('..'); + } + } + + if (mustEndAbs && srcPath[0] !== '' && + (!srcPath[0] || srcPath[0].charAt(0) !== '/')) { + srcPath.unshift(''); + } + + if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) { + srcPath.push(''); + } + + var isAbsolute = srcPath[0] === '' || + (srcPath[0] && srcPath[0].charAt(0) === '/'); + + // put the host back + if (psychotic) { + result.hostname = result.host = isAbsolute ? '' : + srcPath.length ? srcPath.shift() : ''; + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + + mustEndAbs = mustEndAbs || (result.host && srcPath.length); + + if (mustEndAbs && !isAbsolute) { + srcPath.unshift(''); + } + + if (!srcPath.length) { + result.pathname = null; + result.path = null; + } else { + result.pathname = srcPath.join('/'); + } + + //to support request.http + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.auth = relative.auth || result.auth; + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; +}; + +Url.prototype.parseHost = function() { + return parseHost(this); +}; + +function parseHost(self) { + var host = self.host; + var port = portPattern.exec(host); + if (port) { + port = port[0]; + if (port !== ':') { + self.port = port.substr(1); + } + host = host.substr(0, host.length - port.length); + } + if (host) self.hostname = host; +} + +/*! + * @pixi/constants - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/constants is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * Different types of environments for WebGL. + * + * @static + * @memberof PIXI + * @name ENV + * @enum {number} + * @property {number} WEBGL_LEGACY - Used for older v1 WebGL devices. PixiJS will aim to ensure compatibility + * with older / less advanced devices. If you experience unexplained flickering prefer this environment. + * @property {number} WEBGL - Version 1 of WebGL + * @property {number} WEBGL2 - Version 2 of WebGL + */ +var ENV = { + WEBGL_LEGACY: 0, + WEBGL: 1, + WEBGL2: 2, +}; + +/** + * Constant to identify the Renderer Type. + * + * @static + * @memberof PIXI + * @name RENDERER_TYPE + * @enum {number} + * @property {number} UNKNOWN - Unknown render type. + * @property {number} WEBGL - WebGL render type. + * @property {number} CANVAS - Canvas render type. + */ +var RENDERER_TYPE = { + UNKNOWN: 0, + WEBGL: 1, + CANVAS: 2, +}; + +/** + * Various blend modes supported by PIXI. + * + * IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes. + * Anything else will silently act like NORMAL. + * + * @memberof PIXI + * @name BLEND_MODES + * @enum {number} + * @property {number} NORMAL + * @property {number} ADD + * @property {number} MULTIPLY + * @property {number} SCREEN + * @property {number} OVERLAY + * @property {number} DARKEN + * @property {number} LIGHTEN + * @property {number} COLOR_DODGE + * @property {number} COLOR_BURN + * @property {number} HARD_LIGHT + * @property {number} SOFT_LIGHT + * @property {number} DIFFERENCE + * @property {number} EXCLUSION + * @property {number} HUE + * @property {number} SATURATION + * @property {number} COLOR + * @property {number} LUMINOSITY + * @property {number} NORMAL_NPM + * @property {number} ADD_NPM + * @property {number} SCREEN_NPM + * @property {number} NONE + * @property {number} SRC_IN + * @property {number} SRC_OUT + * @property {number} SRC_ATOP + * @property {number} DST_OVER + * @property {number} DST_IN + * @property {number} DST_OUT + * @property {number} DST_ATOP + * @property {number} SUBTRACT + * @property {number} SRC_OVER + * @property {number} ERASE + */ +var BLEND_MODES = { + NORMAL: 0, + ADD: 1, + MULTIPLY: 2, + SCREEN: 3, + OVERLAY: 4, + DARKEN: 5, + LIGHTEN: 6, + COLOR_DODGE: 7, + COLOR_BURN: 8, + HARD_LIGHT: 9, + SOFT_LIGHT: 10, + DIFFERENCE: 11, + EXCLUSION: 12, + HUE: 13, + SATURATION: 14, + COLOR: 15, + LUMINOSITY: 16, + NORMAL_NPM: 17, + ADD_NPM: 18, + SCREEN_NPM: 19, + NONE: 20, + + SRC_OVER: 0, + SRC_IN: 21, + SRC_OUT: 22, + SRC_ATOP: 23, + DST_OVER: 24, + DST_IN: 25, + DST_OUT: 26, + DST_ATOP: 27, + ERASE: 26, + SUBTRACT: 28, +}; + +/** + * Various webgl draw modes. These can be used to specify which GL drawMode to use + * under certain situations and renderers. + * + * @memberof PIXI + * @static + * @name DRAW_MODES + * @enum {number} + * @property {number} POINTS + * @property {number} LINES + * @property {number} LINE_LOOP + * @property {number} LINE_STRIP + * @property {number} TRIANGLES + * @property {number} TRIANGLE_STRIP + * @property {number} TRIANGLE_FAN + */ +var DRAW_MODES = { + POINTS: 0, + LINES: 1, + LINE_LOOP: 2, + LINE_STRIP: 3, + TRIANGLES: 4, + TRIANGLE_STRIP: 5, + TRIANGLE_FAN: 6, +}; + +/** + * Various GL texture/resources formats. + * + * @memberof PIXI + * @static + * @name FORMATS + * @enum {number} + * @property {number} RGBA=6408 + * @property {number} RGB=6407 + * @property {number} ALPHA=6406 + * @property {number} LUMINANCE=6409 + * @property {number} LUMINANCE_ALPHA=6410 + * @property {number} DEPTH_COMPONENT=6402 + * @property {number} DEPTH_STENCIL=34041 + */ +var FORMATS = { + RGBA: 6408, + RGB: 6407, + ALPHA: 6406, + LUMINANCE: 6409, + LUMINANCE_ALPHA: 6410, + DEPTH_COMPONENT: 6402, + DEPTH_STENCIL: 34041, +}; + +/** + * Various GL target types. + * + * @memberof PIXI + * @static + * @name TARGETS + * @enum {number} + * @property {number} TEXTURE_2D=3553 + * @property {number} TEXTURE_CUBE_MAP=34067 + * @property {number} TEXTURE_2D_ARRAY=35866 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_X=34069 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_X=34070 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Y=34071 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Y=34072 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Z=34073 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Z=34074 + */ +var TARGETS = { + TEXTURE_2D: 3553, + TEXTURE_CUBE_MAP: 34067, + TEXTURE_2D_ARRAY: 35866, + TEXTURE_CUBE_MAP_POSITIVE_X: 34069, + TEXTURE_CUBE_MAP_NEGATIVE_X: 34070, + TEXTURE_CUBE_MAP_POSITIVE_Y: 34071, + TEXTURE_CUBE_MAP_NEGATIVE_Y: 34072, + TEXTURE_CUBE_MAP_POSITIVE_Z: 34073, + TEXTURE_CUBE_MAP_NEGATIVE_Z: 34074, +}; + +/** + * Various GL data format types. + * + * @memberof PIXI + * @static + * @name TYPES + * @enum {number} + * @property {number} UNSIGNED_BYTE=5121 + * @property {number} UNSIGNED_SHORT=5123 + * @property {number} UNSIGNED_SHORT_5_6_5=33635 + * @property {number} UNSIGNED_SHORT_4_4_4_4=32819 + * @property {number} UNSIGNED_SHORT_5_5_5_1=32820 + * @property {number} FLOAT=5126 + * @property {number} HALF_FLOAT=36193 + */ +var TYPES = { + UNSIGNED_BYTE: 5121, + UNSIGNED_SHORT: 5123, + UNSIGNED_SHORT_5_6_5: 33635, + UNSIGNED_SHORT_4_4_4_4: 32819, + UNSIGNED_SHORT_5_5_5_1: 32820, + FLOAT: 5126, + HALF_FLOAT: 36193, +}; + +/** + * The scale modes that are supported by pixi. + * + * The {@link PIXI.settings.SCALE_MODE} scale mode affects the default scaling mode of future operations. + * It can be re-assigned to either LINEAR or NEAREST, depending upon suitability. + * + * @memberof PIXI + * @static + * @name SCALE_MODES + * @enum {number} + * @property {number} LINEAR Smooth scaling + * @property {number} NEAREST Pixelating scaling + */ +var SCALE_MODES = { + LINEAR: 1, + NEAREST: 0, +}; + +/** + * The wrap modes that are supported by pixi. + * + * The {@link PIXI.settings.WRAP_MODE} wrap mode affects the default wrapping mode of future operations. + * It can be re-assigned to either CLAMP or REPEAT, depending upon suitability. + * If the texture is non power of two then clamp will be used regardless as WebGL can + * only use REPEAT if the texture is po2. + * + * This property only affects WebGL. + * + * @name WRAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} CLAMP - The textures uvs are clamped + * @property {number} REPEAT - The texture uvs tile and repeat + * @property {number} MIRRORED_REPEAT - The texture uvs tile and repeat with mirroring + */ +var WRAP_MODES = { + CLAMP: 33071, + REPEAT: 10497, + MIRRORED_REPEAT: 33648, +}; + +/** + * Mipmap filtering modes that are supported by pixi. + * + * The {@link PIXI.settings.MIPMAP_TEXTURES} affects default texture filtering. + * Mipmaps are generated for a baseTexture if its `mipmap` field is `ON`, + * or its `POW2` and texture dimensions are powers of 2. + * Due to platform restriction, `ON` option will work like `POW2` for webgl-1. + * + * This property only affects WebGL. + * + * @name MIPMAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} OFF - No mipmaps + * @property {number} POW2 - Generate mipmaps if texture dimensions are pow2 + * @property {number} ON - Always generate mipmaps + */ +var MIPMAP_MODES = { + OFF: 0, + POW2: 1, + ON: 2, +}; + +/** + * The gc modes that are supported by pixi. + * + * The {@link PIXI.settings.GC_MODE} Garbage Collection mode for PixiJS textures is AUTO + * If set to GC_MODE, the renderer will occasionally check textures usage. If they are not + * used for a specified period of time they will be removed from the GPU. They will of course + * be uploaded again when they are required. This is a silent behind the scenes process that + * should ensure that the GPU does not get filled up. + * + * Handy for mobile devices! + * This property only affects WebGL. + * + * @name GC_MODES + * @enum {number} + * @static + * @memberof PIXI + * @property {number} AUTO - Garbage collection will happen periodically automatically + * @property {number} MANUAL - Garbage collection will need to be called manually + */ +var GC_MODES = { + AUTO: 0, + MANUAL: 1, +}; + +/** + * Constants that specify float precision in shaders. + * + * @name PRECISION + * @memberof PIXI + * @static + * @enum {string} + * @constant + * @property {string} LOW='lowp' + * @property {string} MEDIUM='mediump' + * @property {string} HIGH='highp' + */ +var PRECISION = { + LOW: 'lowp', + MEDIUM: 'mediump', + HIGH: 'highp', +}; + +/*! + * @pixi/utils - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/utils is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The prefix that denotes a URL is for a retina asset. + * + * @static + * @name RETINA_PREFIX + * @memberof PIXI.settings + * @type {RegExp} + * @default /@([0-9\.]+)x/ + * @example `@2x` + */ +settings.RETINA_PREFIX = /@([0-9\.]+)x/; + +/** + * Should the `failIfMajorPerformanceCaveat` flag be enabled as a context option used in the `isWebGLSupported` function. + * For most scenarios this should be left as true, as otherwise the user may have a poor experience. + * However, it can be useful to disable under certain scenarios, such as headless unit tests. + * + * @static + * @name FAIL_IF_MAJOR_PERFORMANCE_CAVEAT + * @memberof PIXI.settings + * @type {boolean} + * @default true + */ +settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = true; + +var saidHello = false; +var VERSION = '5.1.3'; + +/** + * Logs out the version and renderer information for this running instance of PIXI. + * If you don't want to see this message you can run `PIXI.utils.skipHello()` before + * creating your renderer. Keep in mind that doing that will forever make you a jerk face. + * + * @static + * @function sayHello + * @memberof PIXI.utils + * @param {string} type - The string renderer type to log. + */ +function sayHello(type) +{ + if (saidHello) + { + return; + } + + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + var args = [ + ("\n %c %c %c PixiJS " + VERSION + " - ✰ " + type + " ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \n\n"), + 'background: #ff66a5; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff66a5; background: #030307; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'background: #ffc3dc; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;' ]; + + window.console.log.apply(console, args); + } + else if (window.console) + { + window.console.log(("PixiJS " + VERSION + " - " + type + " - http://www.pixijs.com/")); + } + + saidHello = true; +} + +var supported; + +/** + * Helper for checking for WebGL support. + * + * @memberof PIXI.utils + * @function isWebGLSupported + * @return {boolean} Is WebGL supported. + */ +function isWebGLSupported() +{ + if (typeof supported === 'undefined') + { + supported = (function supported() + { + var contextOptions = { + stencil: true, + failIfMajorPerformanceCaveat: settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT, + }; + + try + { + if (!window.WebGLRenderingContext) + { + return false; + } + + var canvas = document.createElement('canvas'); + var gl = canvas.getContext('webgl', contextOptions) + || canvas.getContext('experimental-webgl', contextOptions); + + var success = !!(gl && gl.getContextAttributes().stencil); + + if (gl) + { + var loseContext = gl.getExtension('WEBGL_lose_context'); + + if (loseContext) + { + loseContext.loseContext(); + } + } + + gl = null; + + return success; + } + catch (e) + { + return false; + } + })(); + } + + return supported; +} + +/** + * Converts a hexadecimal color number to an [R, G, B] array of normalized floats (numbers from 0.0 to 1.0). + * + * @example + * PIXI.utils.hex2rgb(0xffffff); // returns [1, 1, 1] + * @memberof PIXI.utils + * @function hex2rgb + * @param {number} hex - The hexadecimal number to convert + * @param {number[]} [out=[]] If supplied, this array will be used rather than returning a new one + * @return {number[]} An array representing the [R, G, B] of the color where all values are floats. + */ +function hex2rgb(hex, out) +{ + out = out || []; + + out[0] = ((hex >> 16) & 0xFF) / 255; + out[1] = ((hex >> 8) & 0xFF) / 255; + out[2] = (hex & 0xFF) / 255; + + return out; +} + +/** + * Converts a hexadecimal color number to a string. + * + * @example + * PIXI.utils.hex2string(0xffffff); // returns "#ffffff" + * @memberof PIXI.utils + * @function hex2string + * @param {number} hex - Number in hex (e.g., `0xffffff`) + * @return {string} The string color (e.g., `"#ffffff"`). + */ +function hex2string(hex) +{ + hex = hex.toString(16); + hex = '000000'.substr(0, 6 - hex.length) + hex; + + return ("#" + hex); +} + +/** + * Converts a hexadecimal string to a hexadecimal color number. + * + * @example + * PIXI.utils.string2hex("#ffffff"); // returns 0xffffff + * @memberof PIXI.utils + * @function string2hex + * @param {string} The string color (e.g., `"#ffffff"`) + * @return {number} Number in hexadecimal. + */ +function string2hex(string) +{ + if (typeof string === 'string' && string[0] === '#') + { + string = string.substr(1); + } + + return parseInt(string, 16); +} + +/** + * Corrects PixiJS blend, takes premultiplied alpha into account + * + * @memberof PIXI.utils + * @function mapPremultipliedBlendModes + * @private + * @param {Array} [array] - The array to output into. + * @return {Array} Mapped modes. + */ +function mapPremultipliedBlendModes() +{ + var pm = []; + var npm = []; + + for (var i = 0; i < 32; i++) + { + pm[i] = i; + npm[i] = i; + } + + pm[BLEND_MODES.NORMAL_NPM] = BLEND_MODES.NORMAL; + pm[BLEND_MODES.ADD_NPM] = BLEND_MODES.ADD; + pm[BLEND_MODES.SCREEN_NPM] = BLEND_MODES.SCREEN; + + npm[BLEND_MODES.NORMAL] = BLEND_MODES.NORMAL_NPM; + npm[BLEND_MODES.ADD] = BLEND_MODES.ADD_NPM; + npm[BLEND_MODES.SCREEN] = BLEND_MODES.SCREEN_NPM; + + var array = []; + + array.push(npm); + array.push(pm); + + return array; +} + +/** + * maps premultiply flag and blendMode to adjusted blendMode + * @memberof PIXI.utils + * @const premultiplyBlendMode + * @type {Array} + */ +var premultiplyBlendMode = mapPremultipliedBlendModes(); + +/** + * changes blendMode according to texture format + * + * @memberof PIXI.utils + * @function correctBlendMode + * @param {number} blendMode supposed blend mode + * @param {boolean} premultiplied whether source is premultiplied + * @returns {number} true blend mode for this texture + */ +function correctBlendMode(blendMode, premultiplied) +{ + return premultiplyBlendMode[premultiplied ? 1 : 0][blendMode]; +} + +/** + * combines rgb and alpha to out array + * + * @memberof PIXI.utils + * @function premultiplyRgba + * @param {Float32Array|number[]} rgb input rgb + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyRgba(rgb, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + if (premultiply || premultiply === undefined) + { + out[0] = rgb[0] * alpha; + out[1] = rgb[1] * alpha; + out[2] = rgb[2] * alpha; + } + else + { + out[0] = rgb[0]; + out[1] = rgb[1]; + out[2] = rgb[2]; + } + out[3] = alpha; + + return out; +} + +/** + * premultiplies tint + * + * @memberof PIXI.utils + * @function premultiplyTint + * @param {number} tint integer RGB + * @param {number} alpha floating point alpha (0.0-1.0) + * @returns {number} tint multiplied by alpha + */ +function premultiplyTint(tint, alpha) +{ + if (alpha === 1.0) + { + return (alpha * 255 << 24) + tint; + } + if (alpha === 0.0) + { + return 0; + } + var R = ((tint >> 16) & 0xFF); + var G = ((tint >> 8) & 0xFF); + var B = (tint & 0xFF); + + R = ((R * alpha) + 0.5) | 0; + G = ((G * alpha) + 0.5) | 0; + B = ((B * alpha) + 0.5) | 0; + + return (alpha * 255 << 24) + (R << 16) + (G << 8) + B; +} + +/** + * converts integer tint and float alpha to vec4 form, premultiplies by default + * + * @memberof PIXI.utils + * @function premultiplyTintToRgba + * @param {number} tint input tint + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyTintToRgba(tint, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + out[0] = ((tint >> 16) & 0xFF) / 255.0; + out[1] = ((tint >> 8) & 0xFF) / 255.0; + out[2] = (tint & 0xFF) / 255.0; + if (premultiply || premultiply === undefined) + { + out[0] *= alpha; + out[1] *= alpha; + out[2] *= alpha; + } + out[3] = alpha; + + return out; +} + +/** + * Generic Mask Stack data structure + * + * @memberof PIXI.utils + * @function createIndicesForQuads + * @param {number} size - Number of quads + * @param {Uint16Array|Uint32Array} [outBuffer] - Buffer for output, length has to be `6 * size` + * @return {Uint16Array|Uint32Array} - Resulting index buffer + */ +function createIndicesForQuads(size, outBuffer) +{ + if ( outBuffer === void 0 ) outBuffer = null; + + // the total number of indices in our array, there are 6 points per quad. + var totalIndices = size * 6; + + outBuffer = outBuffer || new Uint16Array(totalIndices); + + if (outBuffer.length !== totalIndices) + { + throw new Error(("Out buffer length is incorrect, got " + (outBuffer.length) + " and expected " + totalIndices)); + } + + // fill the indices with the quads to draw + for (var i = 0, j = 0; i < totalIndices; i += 6, j += 4) + { + outBuffer[i + 0] = j + 0; + outBuffer[i + 1] = j + 1; + outBuffer[i + 2] = j + 2; + outBuffer[i + 3] = j + 0; + outBuffer[i + 4] = j + 2; + outBuffer[i + 5] = j + 3; + } + + return outBuffer; +} + +/** + * Remove items from a javascript array without generating garbage + * + * @function removeItems + * @memberof PIXI.utils + * @param {Array} arr Array to remove elements from + * @param {number} startIdx starting index + * @param {number} removeCount how many to remove + */ +function removeItems(arr, startIdx, removeCount) +{ + var length = arr.length; + var i; + + if (startIdx >= length || removeCount === 0) + { + return; + } + + removeCount = (startIdx + removeCount > length ? length - startIdx : removeCount); + + var len = length - removeCount; + + for (i = startIdx; i < len; ++i) + { + arr[i] = arr[i + removeCount]; + } + + arr.length = len; +} + +var nextUid = 0; + +/** + * Gets the next unique identifier + * + * @memberof PIXI.utils + * @function uid + * @return {number} The next unique identifier to use. + */ +function uid() +{ + return ++nextUid; +} + +/** + * Returns sign of number + * + * @memberof PIXI.utils + * @function sign + * @param {number} n - the number to check the sign of + * @returns {number} 0 if `n` is 0, -1 if `n` is negative, 1 if `n` is positive + */ +function sign$1(n) +{ + if (n === 0) { return 0; } + + return n < 0 ? -1 : 1; +} + +// Taken from the bit-twiddle package + +/** + * Rounds to next power of two. + * + * @function nextPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} + */ +function nextPow2(v) +{ + v += v === 0; + --v; + v |= v >>> 1; + v |= v >>> 2; + v |= v >>> 4; + v |= v >>> 8; + v |= v >>> 16; + + return v + 1; +} + +/** + * Checks if a number is a power of two. + * + * @function isPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {boolean} `true` if value is power of two + */ +function isPow2(v) +{ + return !(v & (v - 1)) && (!!v); +} + +/** + * Computes ceil of log base 2 + * + * @function log2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} logarithm base 2 + */ +function log2(v) +{ + var r = (v > 0xFFFF) << 4; + + v >>>= r; + + var shift = (v > 0xFF) << 3; + + v >>>= shift; r |= shift; + shift = (v > 0xF) << 2; + v >>>= shift; r |= shift; + shift = (v > 0x3) << 1; + v >>>= shift; r |= shift; + + return r | (v >> 1); +} + +/** + * @todo Describe property usage + * + * @static + * @name ProgramCache + * @memberof PIXI.utils + * @type {Object} + */ +var ProgramCache = {}; + +/** + * @todo Describe property usage + * + * @static + * @name TextureCache + * @memberof PIXI.utils + * @type {Object} + */ +var TextureCache = Object.create(null); + +/** + * @todo Describe property usage + * + * @static + * @name BaseTextureCache + * @memberof PIXI.utils + * @type {Object} + */ + +var BaseTextureCache = Object.create(null); + +/** + * Trim transparent borders from a canvas + * + * @memberof PIXI.utils + * @function trimCanvas + * @param {HTMLCanvasElement} canvas - the canvas to trim + * @returns {object} Trim data + */ +function trimCanvas(canvas) +{ + // https://gist.github.com/remy/784508 + + var width = canvas.width; + var height = canvas.height; + + var context = canvas.getContext('2d'); + var imageData = context.getImageData(0, 0, width, height); + var pixels = imageData.data; + var len = pixels.length; + + var bound = { + top: null, + left: null, + right: null, + bottom: null, + }; + var data = null; + var i; + var x; + var y; + + for (i = 0; i < len; i += 4) + { + if (pixels[i + 3] !== 0) + { + x = (i / 4) % width; + y = ~~((i / 4) / width); + + if (bound.top === null) + { + bound.top = y; + } + + if (bound.left === null) + { + bound.left = x; + } + else if (x < bound.left) + { + bound.left = x; + } + + if (bound.right === null) + { + bound.right = x + 1; + } + else if (bound.right < x) + { + bound.right = x + 1; + } + + if (bound.bottom === null) + { + bound.bottom = y; + } + else if (bound.bottom < y) + { + bound.bottom = y; + } + } + } + + if (bound.top !== null) + { + width = bound.right - bound.left; + height = bound.bottom - bound.top + 1; + data = context.getImageData(bound.left, bound.top, width, height); + } + + return { + height: height, + width: width, + data: data, + }; +} + +/** + * Creates a Canvas element of the given size to be used as a target for rendering to. + * + * @class + * @memberof PIXI.utils + */ +var CanvasRenderTarget = function CanvasRenderTarget(width, height, resolution) +{ + /** + * The Canvas object that belongs to this CanvasRenderTarget. + * + * @member {HTMLCanvasElement} + */ + this.canvas = document.createElement('canvas'); + + /** + * A CanvasRenderingContext2D object representing a two-dimensional rendering context. + * + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + this.resolution = resolution || settings.RESOLUTION; + + this.resize(width, height); +}; + +var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + +/** + * Clears the canvas that was created by the CanvasRenderTarget class. + * + * @private + */ +CanvasRenderTarget.prototype.clear = function clear () +{ + this.context.setTransform(1, 0, 0, 1, 0, 0); + this.context.clearRect(0, 0, this.canvas.width, this.canvas.height); +}; + +/** + * Resizes the canvas to the specified width and height. + * + * @param {number} width - the new width of the canvas + * @param {number} height - the new height of the canvas + */ +CanvasRenderTarget.prototype.resize = function resize (width, height) +{ + this.canvas.width = width * this.resolution; + this.canvas.height = height * this.resolution; +}; + +/** + * Destroys this canvas. + * + */ +CanvasRenderTarget.prototype.destroy = function destroy () +{ + this.context = null; + this.canvas = null; +}; + +/** + * The width of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.width.get = function () +{ + return this.canvas.width; +}; + +prototypeAccessors.width.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.width = val; +}; + +/** + * The height of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.height.get = function () +{ + return this.canvas.height; +}; + +prototypeAccessors.height.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.height = val; +}; + +Object.defineProperties( CanvasRenderTarget.prototype, prototypeAccessors ); + +var tempAnchor; + +/** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * Nipped from the resource loader! + * + * @ignore + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ +function determineCrossOrigin(url$1, loc) +{ + if ( loc === void 0 ) loc = window.location; + + // data: and javascript: urls are considered same-origin + if (url$1.indexOf('data:') === 0) + { + return ''; + } + + // default is window.location + loc = loc || window.location; + + if (!tempAnchor) + { + tempAnchor = document.createElement('a'); + } + + // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + tempAnchor.href = url$1; + url$1 = url.parse(tempAnchor.href); + + var samePort = (!url$1.port && loc.port === '') || (url$1.port === loc.port); + + // if cross origin + if (url$1.hostname !== loc.hostname || !samePort || url$1.protocol !== loc.protocol) + { + return 'anonymous'; + } + + return ''; +} + +/** + * get the resolution / device pixel ratio of an asset by looking for the prefix + * used by spritesheets and image urls + * + * @memberof PIXI.utils + * @function getResolutionOfUrl + * @param {string} url - the image path + * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set. + * @return {number} resolution / device pixel ratio of an asset + */ +function getResolutionOfUrl(url, defaultValue) +{ + var resolution = settings.RETINA_PREFIX.exec(url); + + if (resolution) + { + return parseFloat(resolution[1]); + } + + return defaultValue !== undefined ? defaultValue : 1; +} + +// A map of warning messages already fired +var warnings = {}; + +/** + * Helper for warning developers about deprecated features & settings. + * A stack track for warnings is given; useful for tracking-down where + * deprecated methods/properties/classes are being used within the code. + * + * @memberof PIXI.utils + * @function deprecation + * @param {string} version - The version where the feature became deprecated + * @param {string} message - Message should include what is deprecated, where, and the new solution + * @param {number} [ignoreDepth=3] - The number of steps to ignore at the top of the error stack + * this is mostly to ignore internal deprecation calls. + */ +function deprecation(version, message, ignoreDepth) +{ + if ( ignoreDepth === void 0 ) ignoreDepth = 3; + + // Ignore duplicat + if (warnings[message]) + { + return; + } + + /* eslint-disable no-console */ + var stack = new Error().stack; + + // Handle IE < 10 and Safari < 6 + if (typeof stack === 'undefined') + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + } + else + { + // chop off the stack trace which includes PixiJS internal calls + stack = stack.split('\n').splice(ignoreDepth).join('\n'); + + if (console.groupCollapsed) + { + console.groupCollapsed( + '%cPixiJS Deprecation Warning: %c%s', + 'color:#614108;background:#fffbe6', + 'font-weight:normal;color:#614108;background:#fffbe6', + (message + "\nDeprecated since v" + version) + ); + console.warn(stack); + console.groupEnd(); + } + else + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + console.warn(stack); + } + } + /* eslint-enable no-console */ + + warnings[message] = true; +} + +/*! + * @pixi/math - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/math is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * @class + * @memberof PIXI + */ +var Point = function Point(x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; +}; + +/** + * Creates a clone of this point + * + * @return {PIXI.Point} a copy of the point + */ +Point.prototype.clone = function clone () +{ + return new Point(this.x, this.y); +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from + * @returns {PIXI.IPoint} Returns itself. + */ +Point.prototype.copyFrom = function copyFrom (p) +{ + this.set(p.x, p.y); + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +Point.prototype.copyTo = function copyTo (p) +{ + p.set(this.x, this.y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +Point.prototype.equals = function equals (p) +{ + return (p.x === this.x) && (p.y === this.y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +Point.prototype.set = function set (x, y) +{ + this.x = x || 0; + this.y = y || ((y !== 0) ? this.x : 0); +}; + +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * An ObservablePoint is a point that triggers a callback when the point's position is changed. + * + * @class + * @memberof PIXI + */ +var ObservablePoint = function ObservablePoint(cb, scope, x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + this._x = x; + this._y = y; + + this.cb = cb; + this.scope = scope; +}; + +var prototypeAccessors$1 = { x: { configurable: true },y: { configurable: true } }; + +/** + * Creates a clone of this point. + * The callback and scope params can be overidden otherwise they will default + * to the clone object's values. + * + * @override + * @param {Function} [cb=null] - callback when changed + * @param {object} [scope=null] - owner of callback + * @return {PIXI.ObservablePoint} a copy of the point + */ +ObservablePoint.prototype.clone = function clone (cb, scope) +{ + if ( cb === void 0 ) cb = null; + if ( scope === void 0 ) scope = null; + + var _cb = cb || this.cb; + var _scope = scope || this.scope; + + return new ObservablePoint(_cb, _scope, this._x, this._y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +ObservablePoint.prototype.set = function set (x, y) +{ + var _x = x || 0; + var _y = y || ((y !== 0) ? _x : 0); + + if (this._x !== _x || this._y !== _y) + { + this._x = _x; + this._y = _y; + this.cb.call(this.scope); + } +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from. + * @returns {PIXI.IPoint} Returns itself. + */ +ObservablePoint.prototype.copyFrom = function copyFrom (p) +{ + if (this._x !== p.x || this._y !== p.y) + { + this._x = p.x; + this._y = p.y; + this.cb.call(this.scope); + } + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +ObservablePoint.prototype.copyTo = function copyTo (p) +{ + p.set(this._x, this._y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +ObservablePoint.prototype.equals = function equals (p) +{ + return (p.x === this._x) && (p.y === this._y); +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.x.get = function () +{ + return this._x; +}; + +prototypeAccessors$1.x.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._x !== value) + { + this._x = value; + this.cb.call(this.scope); + } +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.y.get = function () +{ + return this._y; +}; + +prototypeAccessors$1.y.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._y !== value) + { + this._y = value; + this.cb.call(this.scope); + } +}; + +Object.defineProperties( ObservablePoint.prototype, prototypeAccessors$1 ); + +/** + * A number, or a string containing a number. + * @memberof PIXI + * @typedef {(PIXI.Point|PIXI.ObservablePoint)} IPoint + */ + +/** + * Two Pi. + * + * @static + * @constant {number} PI_2 + * @memberof PIXI + */ +var PI_2 = Math.PI * 2; + +/** + * Conversion factor for converting radians to degrees. + * + * @static + * @constant {number} RAD_TO_DEG + * @memberof PIXI + */ +var RAD_TO_DEG = 180 / Math.PI; + +/** + * Conversion factor for converting degrees to radians. + * + * @static + * @constant {number} DEG_TO_RAD + * @memberof PIXI + */ +var DEG_TO_RAD = Math.PI / 180; + +/** + * Constants that identify shapes, mainly to prevent `instanceof` calls. + * + * @static + * @constant + * @name SHAPES + * @memberof PIXI + * @type {object} + * @property {number} POLY Polygon + * @property {number} RECT Rectangle + * @property {number} CIRC Circle + * @property {number} ELIP Ellipse + * @property {number} RREC Rounded Rectangle + */ +var SHAPES = { + POLY: 0, + RECT: 1, + CIRC: 2, + ELIP: 3, + RREC: 4, +}; + +/** + * The PixiJS Matrix as a class makes it a lot faster. + * + * Here is a representation of it: + * ```js + * | a | c | tx| + * | b | d | ty| + * | 0 | 0 | 1 | + * ``` + * @class + * @memberof PIXI + */ +var Matrix = function Matrix(a, b, c, d, tx, ty) +{ + if ( a === void 0 ) a = 1; + if ( b === void 0 ) b = 0; + if ( c === void 0 ) c = 0; + if ( d === void 0 ) d = 1; + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + /** + * @member {number} + * @default 1 + */ + this.a = a; + + /** + * @member {number} + * @default 0 + */ + this.b = b; + + /** + * @member {number} + * @default 0 + */ + this.c = c; + + /** + * @member {number} + * @default 1 + */ + this.d = d; + + /** + * @member {number} + * @default 0 + */ + this.tx = tx; + + /** + * @member {number} + * @default 0 + */ + this.ty = ty; + + this.array = null; +}; + +var staticAccessors = { IDENTITY: { configurable: true },TEMP_MATRIX: { configurable: true } }; + +/** + * Creates a Matrix object based on the given array. The Element to Matrix mapping order is as follows: + * + * a = array[0] + * b = array[1] + * c = array[3] + * d = array[4] + * tx = array[2] + * ty = array[5] + * + * @param {number[]} array - The array that the matrix will be populated from. + */ +Matrix.prototype.fromArray = function fromArray (array) +{ + this.a = array[0]; + this.b = array[1]; + this.c = array[3]; + this.d = array[4]; + this.tx = array[2]; + this.ty = array[5]; +}; + +/** + * sets the matrix properties + * + * @param {number} a - Matrix component + * @param {number} b - Matrix component + * @param {number} c - Matrix component + * @param {number} d - Matrix component + * @param {number} tx - Matrix component + * @param {number} ty - Matrix component + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.set = function set (a, b, c, d, tx, ty) +{ + this.a = a; + this.b = b; + this.c = c; + this.d = d; + this.tx = tx; + this.ty = ty; + + return this; +}; + +/** + * Creates an array from the current Matrix object. + * + * @param {boolean} transpose - Whether we need to transpose the matrix or not + * @param {Float32Array} [out=new Float32Array(9)] - If provided the array will be assigned to out + * @return {number[]} the newly created array which contains the matrix + */ +Matrix.prototype.toArray = function toArray (transpose, out) +{ + if (!this.array) + { + this.array = new Float32Array(9); + } + + var array = out || this.array; + + if (transpose) + { + array[0] = this.a; + array[1] = this.b; + array[2] = 0; + array[3] = this.c; + array[4] = this.d; + array[5] = 0; + array[6] = this.tx; + array[7] = this.ty; + array[8] = 1; + } + else + { + array[0] = this.a; + array[1] = this.c; + array[2] = this.tx; + array[3] = this.b; + array[4] = this.d; + array[5] = this.ty; + array[6] = 0; + array[7] = 0; + array[8] = 1; + } + + return array; +}; + +/** + * Get a new position with the current transformation applied. + * Can be used to go from a child's coordinate space to the world coordinate space. (e.g. rendering) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, transformed through this matrix + */ +Matrix.prototype.apply = function apply (pos, newPos) +{ + newPos = newPos || new Point(); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.a * x) + (this.c * y) + this.tx; + newPos.y = (this.b * x) + (this.d * y) + this.ty; + + return newPos; +}; + +/** + * Get a new position with the inverse of the current transformation applied. + * Can be used to go from the world coordinate space to a child's coordinate space. (e.g. input) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, inverse-transformed through this matrix + */ +Matrix.prototype.applyInverse = function applyInverse (pos, newPos) +{ + newPos = newPos || new Point(); + + var id = 1 / ((this.a * this.d) + (this.c * -this.b)); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.d * id * x) + (-this.c * id * y) + (((this.ty * this.c) - (this.tx * this.d)) * id); + newPos.y = (this.a * id * y) + (-this.b * id * x) + (((-this.ty * this.a) + (this.tx * this.b)) * id); + + return newPos; +}; + +/** + * Translates the matrix on the x and y. + * + * @param {number} x How much to translate x by + * @param {number} y How much to translate y by + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.translate = function translate (x, y) +{ + this.tx += x; + this.ty += y; + + return this; +}; + +/** + * Applies a scale transformation to the matrix. + * + * @param {number} x The amount to scale horizontally + * @param {number} y The amount to scale vertically + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.scale = function scale (x, y) +{ + this.a *= x; + this.d *= y; + this.c *= x; + this.b *= y; + this.tx *= x; + this.ty *= y; + + return this; +}; + +/** + * Applies a rotation transformation to the matrix. + * + * @param {number} angle - The angle in radians. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.rotate = function rotate (angle) +{ + var cos = Math.cos(angle); + var sin = Math.sin(angle); + + var a1 = this.a; + var c1 = this.c; + var tx1 = this.tx; + + this.a = (a1 * cos) - (this.b * sin); + this.b = (a1 * sin) + (this.b * cos); + this.c = (c1 * cos) - (this.d * sin); + this.d = (c1 * sin) + (this.d * cos); + this.tx = (tx1 * cos) - (this.ty * sin); + this.ty = (tx1 * sin) + (this.ty * cos); + + return this; +}; + +/** + * Appends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to append. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.append = function append (matrix) +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + + this.a = (matrix.a * a1) + (matrix.b * c1); + this.b = (matrix.a * b1) + (matrix.b * d1); + this.c = (matrix.c * a1) + (matrix.d * c1); + this.d = (matrix.c * b1) + (matrix.d * d1); + + this.tx = (matrix.tx * a1) + (matrix.ty * c1) + this.tx; + this.ty = (matrix.tx * b1) + (matrix.ty * d1) + this.ty; + + return this; +}; + +/** + * Sets the matrix based on all the available properties + * + * @param {number} x - Position on the x axis + * @param {number} y - Position on the y axis + * @param {number} pivotX - Pivot on the x axis + * @param {number} pivotY - Pivot on the y axis + * @param {number} scaleX - Scale on the x axis + * @param {number} scaleY - Scale on the y axis + * @param {number} rotation - Rotation in radians + * @param {number} skewX - Skew on the x axis + * @param {number} skewY - Skew on the y axis + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.setTransform = function setTransform (x, y, pivotX, pivotY, scaleX, scaleY, rotation, skewX, skewY) +{ + this.a = Math.cos(rotation + skewY) * scaleX; + this.b = Math.sin(rotation + skewY) * scaleX; + this.c = -Math.sin(rotation - skewX) * scaleY; + this.d = Math.cos(rotation - skewX) * scaleY; + + this.tx = x - ((pivotX * this.a) + (pivotY * this.c)); + this.ty = y - ((pivotX * this.b) + (pivotY * this.d)); + + return this; +}; + +/** + * Prepends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to prepend + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.prepend = function prepend (matrix) +{ + var tx1 = this.tx; + + if (matrix.a !== 1 || matrix.b !== 0 || matrix.c !== 0 || matrix.d !== 1) + { + var a1 = this.a; + var c1 = this.c; + + this.a = (a1 * matrix.a) + (this.b * matrix.c); + this.b = (a1 * matrix.b) + (this.b * matrix.d); + this.c = (c1 * matrix.a) + (this.d * matrix.c); + this.d = (c1 * matrix.b) + (this.d * matrix.d); + } + + this.tx = (tx1 * matrix.a) + (this.ty * matrix.c) + matrix.tx; + this.ty = (tx1 * matrix.b) + (this.ty * matrix.d) + matrix.ty; + + return this; +}; + +/** + * Decomposes the matrix (x, y, scaleX, scaleY, and rotation) and sets the properties on to a transform. + * + * @param {PIXI.Transform} transform - The transform to apply the properties to. + * @return {PIXI.Transform} The transform with the newly applied properties + */ +Matrix.prototype.decompose = function decompose (transform) +{ + // sort out rotation / skew.. + var a = this.a; + var b = this.b; + var c = this.c; + var d = this.d; + + var skewX = -Math.atan2(-c, d); + var skewY = Math.atan2(b, a); + + var delta = Math.abs(skewX + skewY); + + if (delta < 0.00001 || Math.abs(PI_2 - delta) < 0.00001) + { + transform.rotation = skewY; + transform.skew.x = transform.skew.y = 0; + } + else + { + transform.rotation = 0; + transform.skew.x = skewX; + transform.skew.y = skewY; + } + + // next set scale + transform.scale.x = Math.sqrt((a * a) + (b * b)); + transform.scale.y = Math.sqrt((c * c) + (d * d)); + + // next set position + transform.position.x = this.tx; + transform.position.y = this.ty; + + return transform; +}; + +/** + * Inverts this matrix + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.invert = function invert () +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + var tx1 = this.tx; + var n = (a1 * d1) - (b1 * c1); + + this.a = d1 / n; + this.b = -b1 / n; + this.c = -c1 / n; + this.d = a1 / n; + this.tx = ((c1 * this.ty) - (d1 * tx1)) / n; + this.ty = -((a1 * this.ty) - (b1 * tx1)) / n; + + return this; +}; + +/** + * Resets this Matrix to an identity (default) matrix. + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.identity = function identity () +{ + this.a = 1; + this.b = 0; + this.c = 0; + this.d = 1; + this.tx = 0; + this.ty = 0; + + return this; +}; + +/** + * Creates a new Matrix object with the same values as this one. + * + * @return {PIXI.Matrix} A copy of this matrix. Good for chaining method calls. + */ +Matrix.prototype.clone = function clone () +{ + var matrix = new Matrix(); + + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the given matrix to be the same as the ones in this matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy to. + * @return {PIXI.Matrix} The matrix given in parameter with its values updated. + */ +Matrix.prototype.copyTo = function copyTo (matrix) +{ + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the matrix to be the same as the ones in given matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy from. + * @return {PIXI.Matrix} this + */ +Matrix.prototype.copyFrom = function copyFrom (matrix) +{ + this.a = matrix.a; + this.b = matrix.b; + this.c = matrix.c; + this.d = matrix.d; + this.tx = matrix.tx; + this.ty = matrix.ty; + + return this; +}; + +/** + * A default (identity) matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.IDENTITY.get = function () +{ + return new Matrix(); +}; + +/** + * A temp matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.TEMP_MATRIX.get = function () +{ + return new Matrix(); +}; + +Object.defineProperties( Matrix, staticAccessors ); + +// Your friendly neighbour https://en.wikipedia.org/wiki/Dihedral_group + +/* + * Transform matrix for operation n is: + * | ux | vx | + * | uy | vy | + */ + +var ux = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1]; +var uy = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vx = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vy = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1]; + +/** + * [Cayley Table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * for the composition of each rotation in the dihederal group D8. + * + * @type number[][] + * @private + */ +var rotationCayley = []; + +/** + * Matrices for each `GD8Symmetry` rotation. + * + * @type Matrix[] + * @private + */ +var rotationMatrices = []; + +/* + * Alias for {@code Math.sign}. + */ +var signum = Math.sign; + +/* + * Initializes `rotationCayley` and `rotationMatrices`. It is called + * only once below. + */ +function init() +{ + for (var i = 0; i < 16; i++) + { + var row = []; + + rotationCayley.push(row); + + for (var j = 0; j < 16; j++) + { + /* Multiplies rotation matrices i and j. */ + var _ux = signum((ux[i] * ux[j]) + (vx[i] * uy[j])); + var _uy = signum((uy[i] * ux[j]) + (vy[i] * uy[j])); + var _vx = signum((ux[i] * vx[j]) + (vx[i] * vy[j])); + var _vy = signum((uy[i] * vx[j]) + (vy[i] * vy[j])); + + /* Finds rotation matrix matching the product and pushes it. */ + for (var k = 0; k < 16; k++) + { + if (ux[k] === _ux && uy[k] === _uy + && vx[k] === _vx && vy[k] === _vy) + { + row.push(k); + break; + } + } + } + } + + for (var i$1 = 0; i$1 < 16; i$1++) + { + var mat = new Matrix(); + + mat.set(ux[i$1], uy[i$1], vx[i$1], vy[i$1], 0, 0); + rotationMatrices.push(mat); + } +} + +init(); + +/** + * @memberof PIXI + * @typedef {number} GD8Symmetry + * @see PIXI.GroupD8 + */ + +/** + * Implements the dihedral group D8, which is similar to + * [group D4]{@link http://mathworld.wolfram.com/DihedralGroupD4.html}; + * D8 is the same but with diagonals, and it is used for texture + * rotations. + * + * The directions the U- and V- axes after rotation + * of an angle of `a: GD8Constant` are the vectors `(uX(a), uY(a))` + * and `(vX(a), vY(a))`. These aren't necessarily unit vectors. + * + * **Origin:**
+ * This is the small part of gameofbombs.com portal system. It works. + * + * @see PIXI.GroupD8.E + * @see PIXI.GroupD8.SE + * @see PIXI.GroupD8.S + * @see PIXI.GroupD8.SW + * @see PIXI.GroupD8.W + * @see PIXI.GroupD8.NW + * @see PIXI.GroupD8.N + * @see PIXI.GroupD8.NE + * @author Ivan @ivanpopelyshev + * @class + * @memberof PIXI + */ +var GroupD8 = { + /** + * | Rotation | Direction | + * |----------|-----------| + * | 0° | East | + * + * @constant {PIXI.GD8Symmetry} + */ + E: 0, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 45°↻ | Southeast | + * + * @constant {PIXI.GD8Symmetry} + */ + SE: 1, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 90°↻ | South | + * + * @constant {PIXI.GD8Symmetry} + */ + S: 2, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 135°↻ | Southwest | + * + * @constant {PIXI.GD8Symmetry} + */ + SW: 3, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 180° | West | + * + * @constant {PIXI.GD8Symmetry} + */ + W: 4, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -135°/225°↻ | Northwest | + * + * @constant {PIXI.GD8Symmetry} + */ + NW: 5, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -90°/270°↻ | North | + * + * @constant {PIXI.GD8Symmetry} + */ + N: 6, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -45°/315°↻ | Northeast | + * + * @constant {PIXI.GD8Symmetry} + */ + NE: 7, + + /** + * Reflection about Y-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_VERTICAL: 8, + + /** + * Reflection about the main diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + MAIN_DIAGONAL: 10, + + /** + * Reflection about X-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_HORIZONTAL: 12, + + /** + * Reflection about reverse diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + REVERSE_DIAGONAL: 14, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the U-axis + * after rotating the axes. + */ + uX: function (ind) { return ux[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the U-axis + * after rotating the axes. + */ + uY: function (ind) { return uy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the V-axis + * after rotating the axes. + */ + vX: function (ind) { return vx[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the V-axis + * after rotating the axes. + */ + vY: function (ind) { return vy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - symmetry whose opposite + * is needed. Only rotations have opposite symmetries while + * reflections don't. + * @return {PIXI.GD8Symmetry} The opposite symmetry of `rotation` + */ + inv: function (rotation) { + if (rotation & 8)// true only if between 8 & 15 (reflections) + { + return rotation & 15;// or rotation % 16 + } + + return (-rotation) & 7;// or (8 - rotation) % 8 + }, + + /** + * Composes the two D8 operations. + * + * Taking `^` as reflection: + * + * | | E=0 | S=2 | W=4 | N=6 | E^=8 | S^=10 | W^=12 | N^=14 | + * |-------|-----|-----|-----|-----|------|-------|-------|-------| + * | E=0 | E | S | W | N | E^ | S^ | W^ | N^ | + * | S=2 | S | W | N | E | S^ | W^ | N^ | E^ | + * | W=4 | W | N | E | S | W^ | N^ | E^ | S^ | + * | N=6 | N | E | S | W | N^ | E^ | S^ | W^ | + * | E^=8 | E^ | N^ | W^ | S^ | E | N | W | S | + * | S^=10 | S^ | E^ | N^ | W^ | S | E | N | W | + * | W^=12 | W^ | S^ | E^ | N^ | W | S | E | N | + * | N^=14 | N^ | W^ | S^ | E^ | N | W | S | E | + * + * [This is a Cayley table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation, which + * is the row in the above cayley table. + * @param {PIXI.GD8Symmetry} rotationFirst - First operation, which + * is the column in the above cayley table. + * @return {PIXI.GD8Symmetry} Composed operation + */ + add: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][rotationFirst] + ); }, + + /** + * Reverse of `add`. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation + * @param {PIXI.GD8Symmetry} rotationFirst - First operation + * @return {PIXI.GD8Symmetry} Result + */ + sub: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][GroupD8.inv(rotationFirst)] + ); }, + + /** + * Adds 180 degrees to rotation, which is a commutative + * operation. + * + * @memberof PIXI.GroupD8 + * @param {number} rotation - The number to rotate. + * @returns {number} Rotated number + */ + rotate180: function (rotation) { return rotation ^ 4; }, + + /** + * Checks if the rotation angle is vertical, i.e. south + * or north. It doesn't work for reflections. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - The number to check. + * @returns {boolean} Whether or not the direction is vertical + */ + isVertical: function (rotation) { return (rotation & 3) === 2; }, // rotation % 4 === 2 + + /** + * Approximates the vector `V(dx,dy)` into one of the + * eight directions provided by `GroupD8`. + * + * @memberof PIXI.GroupD8 + * @param {number} dx - X-component of the vector + * @param {number} dy - Y-component of the vector + * @return {PIXI.GD8Symmetry} Approximation of the vector into + * one of the eight symmetries. + */ + byDirection: function (dx, dy) { + if (Math.abs(dx) * 2 <= Math.abs(dy)) + { + if (dy >= 0) + { + return GroupD8.S; + } + + return GroupD8.N; + } + else if (Math.abs(dy) * 2 <= Math.abs(dx)) + { + if (dx > 0) + { + return GroupD8.E; + } + + return GroupD8.W; + } + else if (dy > 0) + { + if (dx > 0) + { + return GroupD8.SE; + } + + return GroupD8.SW; + } + else if (dx > 0) + { + return GroupD8.NE; + } + + return GroupD8.NW; + }, + + /** + * Helps sprite to compensate texture packer rotation. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.Matrix} matrix - sprite world matrix + * @param {PIXI.GD8Symmetry} rotation - The rotation factor to use. + * @param {number} tx - sprite anchoring + * @param {number} ty - sprite anchoring + */ + matrixAppendRotationInv: function (matrix, rotation, tx, ty) { + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + // Packer used "rotation", we use "inv(rotation)" + var mat = rotationMatrices[GroupD8.inv(rotation)]; + + mat.tx = tx; + mat.ty = ty; + matrix.append(mat); + }, +}; + +/** + * Transform that takes care about its versions + * + * @class + * @memberof PIXI + */ +var Transform = function Transform() +{ + /** + * The world transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.worldTransform = new Matrix(); + + /** + * The local transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.localTransform = new Matrix(); + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * + * @member {PIXI.ObservablePoint} + */ + this.position = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The scale factor of the object. + * + * @member {PIXI.ObservablePoint} + */ + this.scale = new ObservablePoint(this.onChange, this, 1, 1); + + /** + * The pivot point of the displayObject that it rotates around. + * + * @member {PIXI.ObservablePoint} + */ + this.pivot = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The skew amount, on the x and y axis. + * + * @member {PIXI.ObservablePoint} + */ + this.skew = new ObservablePoint(this.updateSkew, this, 0, 0); + + /** + * The rotation amount. + * + * @protected + * @member {number} + */ + this._rotation = 0; + + /** + * The X-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cx = 1; + + /** + * The Y-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sx = 0; + + /** + * The X-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cy = 0; + + /** + * The Y-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sy = 1; + + /** + * The locally unique ID of the local transform. + * + * @protected + * @member {number} + */ + this._localID = 0; + + /** + * The locally unique ID of the local transform + * used to calculate the current local transformation matrix. + * + * @protected + * @member {number} + */ + this._currentLocalID = 0; + + /** + * The locally unique ID of the world transform. + * + * @protected + * @member {number} + */ + this._worldID = 0; + + /** + * The locally unique ID of the parent's world transform + * used to calculate the current world transformation matrix. + * + * @protected + * @member {number} + */ + this._parentID = 0; +}; + +var prototypeAccessors$1$1 = { rotation: { configurable: true } }; + +/** + * Called when a value changes. + * + * @protected + */ +Transform.prototype.onChange = function onChange () +{ + this._localID++; +}; + +/** + * Called when the skew or the rotation changes. + * + * @protected + */ +Transform.prototype.updateSkew = function updateSkew () +{ + this._cx = Math.cos(this._rotation + this.skew._y); + this._sx = Math.sin(this._rotation + this.skew._y); + this._cy = -Math.sin(this._rotation - this.skew._x); // cos, added PI/2 + this._sy = Math.cos(this._rotation - this.skew._x); // sin, added PI/2 + + this._localID++; +}; + +/** + * Updates the local transformation matrix. + */ +Transform.prototype.updateLocalTransform = function updateLocalTransform () +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } +}; + +/** + * Updates the local and the world transformation matrices. + * + * @param {PIXI.Transform} parentTransform - The parent transform + */ +Transform.prototype.updateTransform = function updateTransform (parentTransform) +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } + + if (this._parentID !== parentTransform._worldID) + { + // concat the parent matrix with the objects transform. + var pt = parentTransform.worldTransform; + var wt = this.worldTransform; + + wt.a = (lt.a * pt.a) + (lt.b * pt.c); + wt.b = (lt.a * pt.b) + (lt.b * pt.d); + wt.c = (lt.c * pt.a) + (lt.d * pt.c); + wt.d = (lt.c * pt.b) + (lt.d * pt.d); + wt.tx = (lt.tx * pt.a) + (lt.ty * pt.c) + pt.tx; + wt.ty = (lt.tx * pt.b) + (lt.ty * pt.d) + pt.ty; + + this._parentID = parentTransform._worldID; + + // update the id of the transform.. + this._worldID++; + } +}; + +/** + * Decomposes a matrix and sets the transforms properties based on it. + * + * @param {PIXI.Matrix} matrix - The matrix to decompose + */ +Transform.prototype.setFromMatrix = function setFromMatrix (matrix) +{ + matrix.decompose(this); + this._localID++; +}; + +/** + * The rotation of the object in radians. + * + * @member {number} + */ +prototypeAccessors$1$1.rotation.get = function () +{ + return this._rotation; +}; + +prototypeAccessors$1$1.rotation.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._rotation !== value) + { + this._rotation = value; + this.updateSkew(); + } +}; + +Object.defineProperties( Transform.prototype, prototypeAccessors$1$1 ); + +/** + * A default (identity) transform + * + * @static + * @constant + * @member {PIXI.Transform} + */ +Transform.IDENTITY = new Transform(); + +/** + * Size object, contains width and height + * + * @memberof PIXI + * @typedef {object} ISize + * @property {number} width - Width component + * @property {number} height - Height component + */ + +/** + * Rectangle object is an area defined by its position, as indicated by its top-left corner + * point (x, y) and by its width and its height. + * + * @class + * @memberof PIXI + */ +var Rectangle = function Rectangle(x, y, width, height) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = Number(x); + + /** + * @member {number} + * @default 0 + */ + this.y = Number(y); + + /** + * @member {number} + * @default 0 + */ + this.width = Number(width); + + /** + * @member {number} + * @default 0 + */ + this.height = Number(height); + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.RECT + * @see PIXI.SHAPES + */ + this.type = SHAPES.RECT; +}; + +var prototypeAccessors$2 = { left: { configurable: true },right: { configurable: true },top: { configurable: true },bottom: { configurable: true } }; +var staticAccessors$1 = { EMPTY: { configurable: true } }; + +/** + * returns the left edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.left.get = function () +{ + return this.x; +}; + +/** + * returns the right edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.right.get = function () +{ + return this.x + this.width; +}; + +/** + * returns the top edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.top.get = function () +{ + return this.y; +}; + +/** + * returns the bottom edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.bottom.get = function () +{ + return this.y + this.height; +}; + +/** + * A constant empty rectangle. + * + * @static + * @constant + * @member {PIXI.Rectangle} + */ +staticAccessors$1.EMPTY.get = function () +{ + return new Rectangle(0, 0, 0, 0); +}; + +/** + * Creates a clone of this Rectangle + * + * @return {PIXI.Rectangle} a copy of the rectangle + */ +Rectangle.prototype.clone = function clone () +{ + return new Rectangle(this.x, this.y, this.width, this.height); +}; + +/** + * Copies another rectangle to this one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy from. + * @return {PIXI.Rectangle} Returns itself. + */ +Rectangle.prototype.copyFrom = function copyFrom (rectangle) +{ + this.x = rectangle.x; + this.y = rectangle.y; + this.width = rectangle.width; + this.height = rectangle.height; + + return this; +}; + +/** + * Copies this rectangle to another one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy to. + * @return {PIXI.Rectangle} Returns given parameter. + */ +Rectangle.prototype.copyTo = function copyTo (rectangle) +{ + rectangle.x = this.x; + rectangle.y = this.y; + rectangle.width = this.width; + rectangle.height = this.height; + + return rectangle; +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rectangle + */ +Rectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + if (x >= this.x && x < this.x + this.width) + { + if (y >= this.y && y < this.y + this.height) + { + return true; + } + } + + return false; +}; + +/** + * Pads the rectangle making it grow in all directions. + * + * @param {number} paddingX - The horizontal padding amount. + * @param {number} paddingY - The vertical padding amount. + */ +Rectangle.prototype.pad = function pad (paddingX, paddingY) +{ + paddingX = paddingX || 0; + paddingY = paddingY || ((paddingY !== 0) ? paddingX : 0); + + this.x -= paddingX; + this.y -= paddingY; + + this.width += paddingX * 2; + this.height += paddingY * 2; +}; + +/** + * Fits this rectangle around the passed one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to fit. + */ +Rectangle.prototype.fit = function fit (rectangle) +{ + var x1 = Math.max(this.x, rectangle.x); + var x2 = Math.min(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.max(this.y, rectangle.y); + var y2 = Math.min(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = Math.max(x2 - x1, 0); + this.y = y1; + this.height = Math.max(y2 - y1, 0); +}; + +/** + * Enlarges rectangle that way its corners lie on grid + * + * @param {number} [resolution=1] resolution + * @param {number} [eps=0.001] precision + */ +Rectangle.prototype.ceil = function ceil (resolution, eps) +{ + if ( resolution === void 0 ) resolution = 1; + if ( eps === void 0 ) eps = 0.001; + + var x2 = Math.ceil((this.x + this.width - eps) * resolution) / resolution; + var y2 = Math.ceil((this.y + this.height - eps) * resolution) / resolution; + + this.x = Math.floor((this.x + eps) * resolution) / resolution; + this.y = Math.floor((this.y + eps) * resolution) / resolution; + + this.width = x2 - this.x; + this.height = y2 - this.y; +}; + +/** + * Enlarges this rectangle to include the passed rectangle. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to include. + */ +Rectangle.prototype.enlarge = function enlarge (rectangle) +{ + var x1 = Math.min(this.x, rectangle.x); + var x2 = Math.max(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.min(this.y, rectangle.y); + var y2 = Math.max(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = x2 - x1; + this.y = y1; + this.height = y2 - y1; +}; + +Object.defineProperties( Rectangle.prototype, prototypeAccessors$2 ); +Object.defineProperties( Rectangle, staticAccessors$1 ); + +/** + * The Circle object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Circle = function Circle(x, y, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( radius === void 0 ) radius = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.CIRC + * @see PIXI.SHAPES + */ + this.type = SHAPES.CIRC; +}; + +/** + * Creates a clone of this Circle instance + * + * @return {PIXI.Circle} a copy of the Circle + */ +Circle.prototype.clone = function clone () +{ + return new Circle(this.x, this.y, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this circle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Circle + */ +Circle.prototype.contains = function contains (x, y) +{ + if (this.radius <= 0) + { + return false; + } + + var r2 = this.radius * this.radius; + var dx = (this.x - x); + var dy = (this.y - y); + + dx *= dx; + dy *= dy; + + return (dx + dy <= r2); +}; + +/** +* Returns the framing rectangle of the circle as a Rectangle object +* +* @return {PIXI.Rectangle} the framing rectangle +*/ +Circle.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2); +}; + +/** + * The Ellipse object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Ellipse = function Ellipse(x, y, halfWidth, halfHeight) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( halfWidth === void 0 ) halfWidth = 0; + if ( halfHeight === void 0 ) halfHeight = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = halfWidth; + + /** + * @member {number} + * @default 0 + */ + this.height = halfHeight; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.ELIP + * @see PIXI.SHAPES + */ + this.type = SHAPES.ELIP; +}; + +/** + * Creates a clone of this Ellipse instance + * + * @return {PIXI.Ellipse} a copy of the ellipse + */ +Ellipse.prototype.clone = function clone () +{ + return new Ellipse(this.x, this.y, this.width, this.height); +}; + +/** + * Checks whether the x and y coordinates given are contained within this ellipse + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coords are within this ellipse + */ +Ellipse.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + // normalize the coords to an ellipse with center 0,0 + var normx = ((x - this.x) / this.width); + var normy = ((y - this.y) / this.height); + + normx *= normx; + normy *= normy; + + return (normx + normy <= 1); +}; + +/** + * Returns the framing rectangle of the ellipse as a Rectangle object + * + * @return {PIXI.Rectangle} the framing rectangle + */ +Ellipse.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height); +}; + +/** + * A class to define a shape via user defined co-orinates. + * + * @class + * @memberof PIXI + */ +var Polygon = function Polygon() +{ + var points = [], len = arguments.length; + while ( len-- ) points[ len ] = arguments[ len ]; + + if (Array.isArray(points[0])) + { + points = points[0]; + } + + // if this is an array of points, convert it to a flat array of numbers + if (points[0] instanceof Point) + { + var p = []; + + for (var i = 0, il = points.length; i < il; i++) + { + p.push(points[i].x, points[i].y); + } + + points = p; + } + + /** + * An array of the points of this polygon + * + * @member {number[]} + */ + this.points = points; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.POLY + * @see PIXI.SHAPES + */ + this.type = SHAPES.POLY; + + /** + * `false` after moveTo, `true` after `closePath`. In all other cases it is `true`. + * @member {boolean} + * @default true + */ + this.closeStroke = true; +}; + +/** + * Creates a clone of this polygon + * + * @return {PIXI.Polygon} a copy of the polygon + */ +Polygon.prototype.clone = function clone () +{ + var polygon = new Polygon(this.points.slice()); + + polygon.closeStroke = this.closeStroke; + + return polygon; +}; + +/** + * Checks whether the x and y coordinates passed to this function are contained within this polygon + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this polygon + */ +Polygon.prototype.contains = function contains (x, y) +{ + var inside = false; + + // use some raycasting to test hits + // https://github.com/substack/point-in-polygon/blob/master/index.js + var length = this.points.length / 2; + + for (var i = 0, j = length - 1; i < length; j = i++) + { + var xi = this.points[i * 2]; + var yi = this.points[(i * 2) + 1]; + var xj = this.points[j * 2]; + var yj = this.points[(j * 2) + 1]; + var intersect = ((yi > y) !== (yj > y)) && (x < ((xj - xi) * ((y - yi) / (yj - yi))) + xi); + + if (intersect) + { + inside = !inside; + } + } + + return inside; +}; + +/** + * The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its + * top-left corner point (x, y) and by its width and its height and its radius. + * + * @class + * @memberof PIXI + */ +var RoundedRectangle = function RoundedRectangle(x, y, width, height, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + if ( radius === void 0 ) radius = 20; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = width; + + /** + * @member {number} + * @default 0 + */ + this.height = height; + + /** + * @member {number} + * @default 20 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readonly + * @default PIXI.SHAPES.RREC + * @see PIXI.SHAPES + */ + this.type = SHAPES.RREC; +}; + +/** + * Creates a clone of this Rounded Rectangle + * + * @return {PIXI.RoundedRectangle} a copy of the rounded rectangle + */ +RoundedRectangle.prototype.clone = function clone () +{ + return new RoundedRectangle(this.x, this.y, this.width, this.height, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rounded Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rounded Rectangle + */ +RoundedRectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + if (x >= this.x && x <= this.x + this.width) + { + if (y >= this.y && y <= this.y + this.height) + { + if ((y >= this.y + this.radius && y <= this.y + this.height - this.radius) + || (x >= this.x + this.radius && x <= this.x + this.width - this.radius)) + { + return true; + } + var dx = x - (this.x + this.radius); + var dy = y - (this.y + this.radius); + var radius2 = this.radius * this.radius; + + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.width - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dy = y - (this.y + this.height - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + } + } + + return false; +}; + +/*! + * @pixi/display - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/display is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Sets the default value for the container property 'sortableChildren'. + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @static + * @constant + * @name SORTABLE_CHILDREN + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ +settings.SORTABLE_CHILDREN = false; + +/** + * 'Builder' pattern for bounds rectangles. + * + * This could be called an Axis-Aligned Bounding Box. + * It is not an actual shape. It is a mutable thing; no 'EMPTY' or those kind of problems. + * + * @class + * @memberof PIXI + */ +var Bounds = function Bounds() +{ + /** + * @member {number} + * @default 0 + */ + this.minX = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.minY = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxX = -Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxY = -Infinity; + + this.rect = null; +}; + +/** + * Checks if bounds are empty. + * + * @return {boolean} True if empty. + */ +Bounds.prototype.isEmpty = function isEmpty () +{ + return this.minX > this.maxX || this.minY > this.maxY; +}; + +/** + * Clears the bounds and resets. + * + */ +Bounds.prototype.clear = function clear () +{ + this.updateID++; + + this.minX = Infinity; + this.minY = Infinity; + this.maxX = -Infinity; + this.maxY = -Infinity; +}; + +/** + * Can return Rectangle.EMPTY constant, either construct new rectangle, either use your rectangle + * It is not guaranteed that it will return tempRect + * + * @param {PIXI.Rectangle} rect - temporary object will be used if AABB is not empty + * @returns {PIXI.Rectangle} A rectangle of the bounds + */ +Bounds.prototype.getRectangle = function getRectangle (rect) +{ + if (this.minX > this.maxX || this.minY > this.maxY) + { + return Rectangle.EMPTY; + } + + rect = rect || new Rectangle(0, 0, 1, 1); + + rect.x = this.minX; + rect.y = this.minY; + rect.width = this.maxX - this.minX; + rect.height = this.maxY - this.minY; + + return rect; +}; + +/** + * This function should be inlined when its possible. + * + * @param {PIXI.Point} point - The point to add. + */ +Bounds.prototype.addPoint = function addPoint (point) +{ + this.minX = Math.min(this.minX, point.x); + this.maxX = Math.max(this.maxX, point.x); + this.minY = Math.min(this.minY, point.y); + this.maxY = Math.max(this.maxY, point.y); +}; + +/** + * Adds a quad, not transformed + * + * @param {Float32Array} vertices - The verts to add. + */ +Bounds.prototype.addQuad = function addQuad (vertices) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = vertices[0]; + var y = vertices[1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[2]; + y = vertices[3]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[4]; + y = vertices[5]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[6]; + y = vertices[7]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds sprite frame, transformed. + * + * @param {PIXI.Transform} transform - TODO + * @param {number} x0 - TODO + * @param {number} y0 - TODO + * @param {number} x1 - TODO + * @param {number} y1 - TODO + */ +Bounds.prototype.addFrame = function addFrame (transform, x0, y0, x1, y1) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = (a * x0) + (c * y0) + tx; + var y = (b * x0) + (d * y0) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y0) + tx; + y = (b * x1) + (d * y0) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x0) + (c * y1) + tx; + y = (b * x0) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y1) + tx; + y = (b * x1) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds screen vertices from array + * + * @param {Float32Array} vertexData - calculated vertices + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertexData = function addVertexData (vertexData, beginOffset, endOffset) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var x = vertexData[i]; + var y = vertexData[i + 1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Add an array of mesh vertices + * + * @param {PIXI.Transform} transform - mesh transform + * @param {Float32Array} vertices - mesh coordinates in array + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertices = function addVertices (transform, vertices, beginOffset, endOffset) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var rawX = vertices[i]; + var rawY = vertices[i + 1]; + var x = (a * rawX) + (c * rawY) + tx; + var y = (d * rawY) + (b * rawX) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds other Bounds + * + * @param {PIXI.Bounds} bounds - TODO + */ +Bounds.prototype.addBounds = function addBounds (bounds) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = bounds.minX < minX ? bounds.minX : minX; + this.minY = bounds.minY < minY ? bounds.minY : minY; + this.maxX = bounds.maxX > maxX ? bounds.maxX : maxX; + this.maxY = bounds.maxY > maxY ? bounds.maxY : maxY; +}; + +/** + * Adds other Bounds, masked with Bounds + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Bounds} mask - TODO + */ +Bounds.prototype.addBoundsMask = function addBoundsMask (bounds, mask) +{ + var _minX = bounds.minX > mask.minX ? bounds.minX : mask.minX; + var _minY = bounds.minY > mask.minY ? bounds.minY : mask.minY; + var _maxX = bounds.maxX < mask.maxX ? bounds.maxX : mask.maxX; + var _maxY = bounds.maxY < mask.maxY ? bounds.maxY : mask.maxY; + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +/** + * Adds other Bounds, masked with Rectangle + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Rectangle} area - TODO + */ +Bounds.prototype.addBoundsArea = function addBoundsArea (bounds, area) +{ + var _minX = bounds.minX > area.x ? bounds.minX : area.x; + var _minY = bounds.minY > area.y ? bounds.minY : area.y; + var _maxX = bounds.maxX < area.x + area.width ? bounds.maxX : (area.x + area.width); + var _maxY = bounds.maxY < area.y + area.height ? bounds.maxY : (area.y + area.height); + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +// _tempDisplayObjectParent = new DisplayObject(); + +/** + * The base class for all objects that are rendered on the screen. + * + * This is an abstract class and should not be used on its own; rather it should be extended. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var DisplayObject = /*@__PURE__*/(function (EventEmitter) { + function DisplayObject() + { + EventEmitter.call(this); + + this.tempDisplayObjectParent = null; + + // TODO: need to create Transform from factory + /** + * World transform and local transform of this object. + * This will become read-only later, please do not assign anything there unless you know what are you doing. + * + * @member {PIXI.Transform} + */ + this.transform = new Transform(); + + /** + * The opacity of the object. + * + * @member {number} + */ + this.alpha = 1; + + /** + * The visibility of the object. If false the object will not be drawn, and + * the updateTransform function will not be called. + * + * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually. + * + * @member {boolean} + */ + this.visible = true; + + /** + * Can this object be rendered, if false the object will not be drawn but the updateTransform + * methods will still be called. + * + * Only affects recursive calls from parent. You can ask for bounds manually. + * + * @member {boolean} + */ + this.renderable = true; + + /** + * The display object container that contains this display object. + * + * @member {PIXI.Container} + * @readonly + */ + this.parent = null; + + /** + * The multiplied alpha of the displayObject. + * + * @member {number} + * @readonly + */ + this.worldAlpha = 1; + + /** + * Which index in the children array the display component was before the previous zIndex sort. + * Used by containers to help sort objects with the same zIndex, by using previous array index as the decider. + * + * @member {number} + * @protected + */ + this._lastSortedIndex = 0; + + /** + * The zIndex of the displayObject. + * A higher value will mean it will be rendered on top of other displayObjects within the same container. + * + * @member {number} + * @protected + */ + this._zIndex = 0; + + /** + * The area the filter is applied to. This is used as more of an optimization + * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle. + * + * Also works as an interaction mask. + * + * @member {?PIXI.Rectangle} + */ + this.filterArea = null; + + /** + * Sets the filters for the displayObject. + * * IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer. + * To remove filters simply set this property to `'null'`. + * + * @member {?PIXI.Filter[]} + */ + this.filters = null; + this._enabledFilters = null; + + /** + * The bounds object, this is used to calculate and store the bounds of the displayObject. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + this._boundsID = 0; + this._lastBoundsID = -1; + this._boundsRect = null; + this._localBoundsRect = null; + + /** + * The original, cached mask of the object. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + * @protected + */ + this._mask = null; + + /** + * Fired when this DisplayObject is added to a Container. + * + * @event PIXI.DisplayObject#added + * @param {PIXI.Container} container - The container added to. + */ + + /** + * Fired when this DisplayObject is removed from a Container. + * + * @event PIXI.DisplayObject#removed + * @param {PIXI.Container} container - The container removed from. + */ + + /** + * If the object has been destroyed via destroy(). If true, it should not be used. + * + * @member {boolean} + * @protected + */ + this._destroyed = false; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = false; + } + + if ( EventEmitter ) DisplayObject.__proto__ = EventEmitter; + DisplayObject.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + DisplayObject.prototype.constructor = DisplayObject; + + var prototypeAccessors = { _tempDisplayObjectParent: { configurable: true },x: { configurable: true },y: { configurable: true },worldTransform: { configurable: true },localTransform: { configurable: true },position: { configurable: true },scale: { configurable: true },pivot: { configurable: true },skew: { configurable: true },rotation: { configurable: true },angle: { configurable: true },zIndex: { configurable: true },worldVisible: { configurable: true },mask: { configurable: true } }; + + /** + * @protected + * @member {PIXI.DisplayObject} + */ + DisplayObject.mixin = function mixin (source) + { + // in ES8/ES2017, this would be really easy: + // Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); + + // get all the enumerable property keys + var keys = Object.keys(source); + + // loop through properties + for (var i = 0; i < keys.length; ++i) + { + var propertyName = keys[i]; + + // Set the property using the property descriptor - this works for accessors and normal value properties + Object.defineProperty( + DisplayObject.prototype, + propertyName, + Object.getOwnPropertyDescriptor(source, propertyName) + ); + } + }; + + prototypeAccessors._tempDisplayObjectParent.get = function () + { + if (this.tempDisplayObjectParent === null) + { + this.tempDisplayObjectParent = new DisplayObject(); + } + + return this.tempDisplayObjectParent; + }; + + /** + * Updates the object transform for rendering. + * + * TODO - Optimization pass! + */ + DisplayObject.prototype.updateTransform = function updateTransform () + { + this.transform.updateTransform(this.parent.transform); + // multiply the alphas.. + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + this._bounds.updateID++; + }; + + /** + * Recursively updates transform of all objects from the root to this one + * internal function for toLocal() + */ + DisplayObject.prototype._recursivePostUpdateTransform = function _recursivePostUpdateTransform () + { + if (this.parent) + { + this.parent._recursivePostUpdateTransform(); + this.transform.updateTransform(this.parent.transform); + } + else + { + this.transform.updateTransform(this._tempDisplayObjectParent.transform); + } + }; + + /** + * Retrieves the bounds of the displayObject as a rectangle object. + * + * @param {boolean} [skipUpdate] - Setting to `true` will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getBounds = function getBounds (skipUpdate, rect) + { + if (!skipUpdate) + { + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this._recursivePostUpdateTransform(); + this.updateTransform(); + } + } + + if (this._boundsID !== this._lastBoundsID) + { + this.calculateBounds(); + this._lastBoundsID = this._boundsID; + } + + if (!rect) + { + if (!this._boundsRect) + { + this._boundsRect = new Rectangle(); + } + + rect = this._boundsRect; + } + + return this._bounds.getRectangle(rect); + }; + + /** + * Retrieves the local bounds of the displayObject as a rectangle object. + * + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getLocalBounds = function getLocalBounds (rect) + { + var transformRef = this.transform; + var parentRef = this.parent; + + this.parent = null; + this.transform = this._tempDisplayObjectParent.transform; + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + var bounds = this.getBounds(false, rect); + + this.parent = parentRef; + this.transform = transformRef; + + return bounds; + }; + + /** + * Calculates the global position of the display object. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform. + * @return {PIXI.IPoint} A point object representing the position of this object. + */ + DisplayObject.prototype.toGlobal = function toGlobal (position, point, skipUpdate) + { + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // don't need to update the lot + return this.worldTransform.apply(position, point); + }; + + /** + * Calculates the local position of the display object relative to another point. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform + * @return {PIXI.IPoint} A point object representing the position of this object + */ + DisplayObject.prototype.toLocal = function toLocal (position, from, point, skipUpdate) + { + if (from) + { + position = from.toGlobal(position, point, skipUpdate); + } + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // simply apply the matrix.. + return this.worldTransform.applyInverse(position, point); + }; + + /** + * Renders the object using the WebGL renderer. + * + * @param {PIXI.Renderer} renderer - The renderer. + */ + DisplayObject.prototype.render = function render (renderer) // eslint-disable-line no-unused-vars + { + // OVERWRITE; + }; + + /** + * Set the parent Container of this DisplayObject. + * + * @param {PIXI.Container} container - The Container to add this DisplayObject to. + * @return {PIXI.Container} The Container that this DisplayObject was added to. + */ + DisplayObject.prototype.setParent = function setParent (container) + { + if (!container || !container.addChild) + { + throw new Error('setParent: Argument must be a Container'); + } + + container.addChild(this); + + return container; + }; + + /** + * Convenience function to set the position, scale, skew and pivot at once. + * + * @param {number} [x=0] - The X position + * @param {number} [y=0] - The Y position + * @param {number} [scaleX=1] - The X scale value + * @param {number} [scaleY=1] - The Y scale value + * @param {number} [rotation=0] - The rotation + * @param {number} [skewX=0] - The X skew value + * @param {number} [skewY=0] - The Y skew value + * @param {number} [pivotX=0] - The X pivot value + * @param {number} [pivotY=0] - The Y pivot value + * @return {PIXI.DisplayObject} The DisplayObject instance + */ + DisplayObject.prototype.setTransform = function setTransform (x, y, scaleX, scaleY, rotation, skewX, skewY, pivotX, pivotY) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( scaleX === void 0 ) scaleX = 1; + if ( scaleY === void 0 ) scaleY = 1; + if ( rotation === void 0 ) rotation = 0; + if ( skewX === void 0 ) skewX = 0; + if ( skewY === void 0 ) skewY = 0; + if ( pivotX === void 0 ) pivotX = 0; + if ( pivotY === void 0 ) pivotY = 0; + + this.position.x = x; + this.position.y = y; + this.scale.x = !scaleX ? 1 : scaleX; + this.scale.y = !scaleY ? 1 : scaleY; + this.rotation = rotation; + this.skew.x = skewX; + this.skew.y = skewY; + this.pivot.x = pivotX; + this.pivot.y = pivotY; + + return this; + }; + + /** + * Base destroy method for generic display objects. This will automatically + * remove the display object from its parent Container as well as remove + * all current event listeners and internal references. Do not use a DisplayObject + * after calling `destroy()`. + * + */ + DisplayObject.prototype.destroy = function destroy () + { + this.removeAllListeners(); + if (this.parent) + { + this.parent.removeChild(this); + } + this.transform = null; + + this.parent = null; + + this._bounds = null; + this._currentBounds = null; + this._mask = null; + + this.filterArea = null; + + this.interactive = false; + this.interactiveChildren = false; + + this._destroyed = true; + }; + + /** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * An alias to position.x + * + * @member {number} + */ + prototypeAccessors.x.get = function () + { + return this.position.x; + }; + + prototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.x = value; + }; + + /** + * The position of the displayObject on the y axis relative to the local coordinates of the parent. + * An alias to position.y + * + * @member {number} + */ + prototypeAccessors.y.get = function () + { + return this.position.y; + }; + + prototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.y = value; + }; + + /** + * Current transform of the object based on world (parent) factors. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.worldTransform.get = function () + { + return this.transform.worldTransform; + }; + + /** + * Current transform of the object based on local factors: position, scale, other stuff. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.localTransform.get = function () + { + return this.transform.localTransform; + }; + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.position.get = function () + { + return this.transform.position; + }; + + prototypeAccessors.position.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.copyFrom(value); + }; + + /** + * The scale factor of the object. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.scale.get = function () + { + return this.transform.scale; + }; + + prototypeAccessors.scale.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.scale.copyFrom(value); + }; + + /** + * The pivot point of the displayObject that it rotates around. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.pivot.get = function () + { + return this.transform.pivot; + }; + + prototypeAccessors.pivot.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.pivot.copyFrom(value); + }; + + /** + * The skew factor for the object in radians. + * Assignment by value since pixi-v4. + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.skew.get = function () + { + return this.transform.skew; + }; + + prototypeAccessors.skew.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.skew.copyFrom(value); + }; + + /** + * The rotation of the object in radians. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.rotation.get = function () + { + return this.transform.rotation; + }; + + prototypeAccessors.rotation.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value; + }; + + /** + * The angle of the object in degrees. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.angle.get = function () + { + return this.transform.rotation * RAD_TO_DEG; + }; + + prototypeAccessors.angle.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value * DEG_TO_RAD; + }; + + /** + * The zIndex of the displayObject. + * If a container has the sortableChildren property set to true, children will be automatically + * sorted by zIndex value; a higher value will mean it will be moved towards the end of the array, + * and thus rendered on top of other displayObjects within the same container. + * + * @member {number} + */ + prototypeAccessors.zIndex.get = function () + { + return this._zIndex; + }; + + prototypeAccessors.zIndex.set = function (value) // eslint-disable-line require-jsdoc + { + this._zIndex = value; + if (this.parent) + { + this.parent.sortDirty = true; + } + }; + + /** + * Indicates if the object is globally visible. + * + * @member {boolean} + * @readonly + */ + prototypeAccessors.worldVisible.get = function () + { + var item = this; + + do + { + if (!item.visible) + { + return false; + } + + item = item.parent; + } while (item); + + return true; + }; + + /** + * Sets a mask for the displayObject. A mask is an object that limits the visibility of an + * object to the shape of the mask applied to it. In PixiJS a regular mask must be a + * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it + * utilities shape clipping. To remove a mask, set this property to `null`. + * + * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask. + * @example + * const graphics = new PIXI.Graphics(); + * graphics.beginFill(0xFF3300); + * graphics.drawRect(50, 250, 100, 100); + * graphics.endFill(); + * + * const sprite = new PIXI.Sprite(texture); + * sprite.mask = graphics; + * @todo At the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + */ + prototypeAccessors.mask.get = function () + { + return this._mask; + }; + + prototypeAccessors.mask.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._mask) + { + this._mask.renderable = true; + this._mask.isMask = false; + } + + this._mask = value; + + if (this._mask) + { + this._mask.renderable = false; + this._mask.isMask = true; + } + }; + + Object.defineProperties( DisplayObject.prototype, prototypeAccessors ); + + return DisplayObject; +}(eventemitter3)); + +/** + * DisplayObject default updateTransform, does not update children of container. + * Will crash if there's no parent element. + * + * @memberof PIXI.DisplayObject# + * @function displayObjectUpdateTransform + */ +DisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform; + +function sortChildren(a, b) +{ + if (a.zIndex === b.zIndex) + { + return a._lastSortedIndex - b._lastSortedIndex; + } + + return a.zIndex - b.zIndex; +} + +/** + * A Container represents a collection of display objects. + * + * It is the base class of all display objects that act as a container for other objects (like Sprites). + * + *```js + * let container = new PIXI.Container(); + * container.addChild(sprite); + * ``` + * + * @class + * @extends PIXI.DisplayObject + * @memberof PIXI + */ +var Container = /*@__PURE__*/(function (DisplayObject) { + function Container() + { + DisplayObject.call(this); + + /** + * The array of children of this container. + * + * @member {PIXI.DisplayObject[]} + * @readonly + */ + this.children = []; + + /** + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @see PIXI.settings.SORTABLE_CHILDREN + * + * @member {boolean} + */ + this.sortableChildren = settings.SORTABLE_CHILDREN; + + /** + * Should children be sorted by zIndex at the next updateTransform call. + * Will get automatically set to true if a new child is added, or if a child's zIndex changes. + * + * @member {boolean} + */ + this.sortDirty = false; + + /** + * Fired when a DisplayObject is added to this Container. + * + * @event PIXI.Container#childAdded + * @param {PIXI.DisplayObject} child - The child added to the Container. + * @param {PIXI.Container} container - The container that added the child. + * @param {number} index - The children's index of the added child. + */ + + /** + * Fired when a DisplayObject is removed from this Container. + * + * @event PIXI.DisplayObject#removedFrom + * @param {PIXI.DisplayObject} child - The child removed from the Container. + * @param {PIXI.Container} container - The container that removed removed the child. + * @param {number} index - The former children's index of the removed child + */ + } + + if ( DisplayObject ) Container.__proto__ = DisplayObject; + Container.prototype = Object.create( DisplayObject && DisplayObject.prototype ); + Container.prototype.constructor = Container; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + + /** + * Overridable method that can be used by Container subclasses whenever the children array is modified + * + * @protected + */ + Container.prototype.onChildrenChange = function onChildrenChange () + { + /* empty */ + }; + + /** + * Adds one or more children to the container. + * + * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)` + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container + * @return {PIXI.DisplayObject} The first child that was added. + */ + Container.prototype.addChild = function addChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.addChild(arguments$1[i]); + } + } + else + { + // if the child has a parent then lets remove it as PixiJS objects can only exist in one place + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.push(child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(this.children.length - 1); + this.emit('childAdded', child, this, this.children.length - 1); + child.emit('added', this); + } + + return child; + }; + + /** + * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown + * + * @param {PIXI.DisplayObject} child - The child to add + * @param {number} index - The index to place the child in + * @return {PIXI.DisplayObject} The child that was added. + */ + Container.prototype.addChildAt = function addChildAt (child, index) + { + if (index < 0 || index > this.children.length) + { + throw new Error((child + "addChildAt: The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.splice(index, 0, child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('added', this); + this.emit('childAdded', child, this, index); + + return child; + }; + + /** + * Swaps the position of 2 Display Objects within this container. + * + * @param {PIXI.DisplayObject} child - First display object to swap + * @param {PIXI.DisplayObject} child2 - Second display object to swap + */ + Container.prototype.swapChildren = function swapChildren (child, child2) + { + if (child === child2) + { + return; + } + + var index1 = this.getChildIndex(child); + var index2 = this.getChildIndex(child2); + + this.children[index1] = child2; + this.children[index2] = child; + this.onChildrenChange(index1 < index2 ? index1 : index2); + }; + + /** + * Returns the index position of a child DisplayObject instance + * + * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify + * @return {number} The index position of the child display object to identify + */ + Container.prototype.getChildIndex = function getChildIndex (child) + { + var index = this.children.indexOf(child); + + if (index === -1) + { + throw new Error('The supplied DisplayObject must be a child of the caller'); + } + + return index; + }; + + /** + * Changes the position of an existing child in the display object container + * + * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number + * @param {number} index - The resulting index number for the child display object + */ + Container.prototype.setChildIndex = function setChildIndex (child, index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + var currentIndex = this.getChildIndex(child); + + removeItems(this.children, currentIndex, 1); // remove from old position + this.children.splice(index, 0, child); // add at new position + + this.onChildrenChange(index); + }; + + /** + * Returns the child at the specified index + * + * @param {number} index - The index to get the child at + * @return {PIXI.DisplayObject} The child at the given index, if any. + */ + Container.prototype.getChildAt = function getChildAt (index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("getChildAt: Index (" + index + ") does not exist.")); + } + + return this.children[index]; + }; + + /** + * Removes one or more children from the container. + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove + * @return {PIXI.DisplayObject} The first child that was removed. + */ + Container.prototype.removeChild = function removeChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.removeChild(arguments$1[i]); + } + } + else + { + var index = this.children.indexOf(child); + + if (index === -1) { return null; } + + child.parent = null; + // ensure child transform will be recalculated + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + } + + return child; + }; + + /** + * Removes a child from the specified index position. + * + * @param {number} index - The index to get the child from + * @return {PIXI.DisplayObject} The child that was removed. + */ + Container.prototype.removeChildAt = function removeChildAt (index) + { + var child = this.getChildAt(index); + + // ensure child transform will be recalculated.. + child.parent = null; + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + + return child; + }; + + /** + * Removes all children from this container that are within the begin and end indexes. + * + * @param {number} [beginIndex=0] - The beginning position. + * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container. + * @returns {PIXI.DisplayObject[]} List of removed children + */ + Container.prototype.removeChildren = function removeChildren (beginIndex, endIndex) + { + if ( beginIndex === void 0 ) beginIndex = 0; + + var begin = beginIndex; + var end = typeof endIndex === 'number' ? endIndex : this.children.length; + var range = end - begin; + var removed; + + if (range > 0 && range <= end) + { + removed = this.children.splice(begin, range); + + for (var i = 0; i < removed.length; ++i) + { + removed[i].parent = null; + if (removed[i].transform) + { + removed[i].transform._parentID = -1; + } + } + + this._boundsID++; + + this.onChildrenChange(beginIndex); + + for (var i$1 = 0; i$1 < removed.length; ++i$1) + { + removed[i$1].emit('removed', this); + this.emit('childRemoved', removed[i$1], this, i$1); + } + + return removed; + } + else if (range === 0 && this.children.length === 0) + { + return []; + } + + throw new RangeError('removeChildren: numeric values are outside the acceptable range.'); + }; + + /** + * Sorts children by zIndex. Previous order is mantained for 2 children with the same zIndex. + */ + Container.prototype.sortChildren = function sortChildren$1 () + { + var sortRequired = false; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + child._lastSortedIndex = i; + + if (!sortRequired && child.zIndex !== 0) + { + sortRequired = true; + } + } + + if (sortRequired && this.children.length > 1) + { + this.children.sort(sortChildren); + } + + this.sortDirty = false; + }; + + /** + * Updates the transform on all children of this container for rendering + */ + Container.prototype.updateTransform = function updateTransform () + { + if (this.sortableChildren && this.sortDirty) + { + this.sortChildren(); + } + + this._boundsID++; + + this.transform.updateTransform(this.parent.transform); + + // TODO: check render flags, how to process stuff here + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + if (child.visible) + { + child.updateTransform(); + } + } + }; + + /** + * Recalculates the bounds of the container. + * + */ + Container.prototype.calculateBounds = function calculateBounds () + { + this._bounds.clear(); + + this._calculateBounds(); + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (!child.visible || !child.renderable) + { + continue; + } + + child.calculateBounds(); + + // TODO: filter+mask, need to mask both somehow + if (child._mask) + { + child._mask.calculateBounds(); + this._bounds.addBoundsMask(child._bounds, child._mask._bounds); + } + else if (child.filterArea) + { + this._bounds.addBoundsArea(child._bounds, child.filterArea); + } + else + { + this._bounds.addBounds(child._bounds); + } + } + + this._lastBoundsID = this._boundsID; + }; + + /** + * Recalculates the bounds of the object. Override this to + * calculate the bounds of the specific object (not including children). + * + * @protected + */ + Container.prototype._calculateBounds = function _calculateBounds () + { + // FILL IN// + }; + + /** + * Renders the object using the WebGL renderer + * + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.render = function render (renderer) + { + // if the object is not visible or the alpha is 0 then no need to render this element + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + // do a quick check to see if this element has a mask or a filter. + if (this._mask || (this.filters && this.filters.length)) + { + this.renderAdvanced(renderer); + } + else + { + this._render(renderer); + + // simple render children! + for (var i = 0, j = this.children.length; i < j; ++i) + { + this.children[i].render(renderer); + } + } + }; + + /** + * Render the object using the WebGL renderer and advanced features. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.renderAdvanced = function renderAdvanced (renderer) + { + renderer.batch.flush(); + + var filters = this.filters; + var mask = this._mask; + + // push filter first as we need to ensure the stencil buffer is correct for any masking + if (filters) + { + if (!this._enabledFilters) + { + this._enabledFilters = []; + } + + this._enabledFilters.length = 0; + + for (var i = 0; i < filters.length; i++) + { + if (filters[i].enabled) + { + this._enabledFilters.push(filters[i]); + } + } + + if (this._enabledFilters.length) + { + renderer.filter.push(this, this._enabledFilters); + } + } + + if (mask) + { + renderer.mask.push(this, this._mask); + } + + // add this object to the batch, only rendered if it has a texture. + this._render(renderer); + + // now loop through the children and make sure they get rendered + for (var i$1 = 0, j = this.children.length; i$1 < j; i$1++) + { + this.children[i$1].render(renderer); + } + + renderer.batch.flush(); + + if (mask) + { + renderer.mask.pop(this, this._mask); + } + + if (filters && this._enabledFilters && this._enabledFilters.length) + { + renderer.filter.pop(); + } + }; + + /** + * To be overridden by the subclasses. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype._render = function _render (renderer) // eslint-disable-line no-unused-vars + { + // this is where content itself gets rendered... + }; + + /** + * Removes all internal references and listeners as well as removes children from the display list. + * Do not use a Container after calling `destroy`. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Container.prototype.destroy = function destroy (options) + { + DisplayObject.prototype.destroy.call(this); + + this.sortDirty = false; + + var destroyChildren = typeof options === 'boolean' ? options : options && options.children; + + var oldChildren = this.removeChildren(0, this.children.length); + + if (destroyChildren) + { + for (var i = 0; i < oldChildren.length; ++i) + { + oldChildren[i].destroy(options); + } + } + }; + + /** + * The width of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.scale.x * this.getLocalBounds().width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var width = this.getLocalBounds().width; + + if (width !== 0) + { + this.scale.x = value / width; + } + else + { + this.scale.x = 1; + } + + this._width = value; + }; + + /** + * The height of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.scale.y * this.getLocalBounds().height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var height = this.getLocalBounds().height; + + if (height !== 0) + { + this.scale.y = value / height; + } + else + { + this.scale.y = 1; + } + + this._height = value; + }; + + Object.defineProperties( Container.prototype, prototypeAccessors ); + + return Container; +}(DisplayObject)); + +// performance increase to avoid using call.. (10x faster) +Container.prototype.containerUpdateTransform = Container.prototype.updateTransform; + +/*! + * @pixi/accessibility - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/accessibility is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default property values of accessible objects + * used by {@link PIXI.accessibility.AccessibilityManager}. + * + * @private + * @function accessibleTarget + * @memberof PIXI.accessibility + * @type {Object} + * @example + * function MyObject() {} + * + * Object.assign( + * MyObject.prototype, + * PIXI.accessibility.accessibleTarget + * ); + */ +var accessibleTarget = { + /** + * Flag for if the object is accessible. If true AccessibilityManager will overlay a + * shadow div with attributes set + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + accessible: false, + + /** + * Sets the title attribute of the shadow div + * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]' + * + * @member {?string} + * @memberof PIXI.DisplayObject# + */ + accessibleTitle: null, + + /** + * Sets the aria-label attribute of the shadow div + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + accessibleHint: null, + + /** + * @member {number} + * @memberof PIXI.DisplayObject# + * @private + * @todo Needs docs. + */ + tabIndex: 0, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleActive: false, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleDiv: false, +}; + +// add some extra variables to the container.. +DisplayObject.mixin(accessibleTarget); + +var KEY_CODE_TAB = 9; + +var DIV_TOUCH_SIZE = 100; +var DIV_TOUCH_POS_X = 0; +var DIV_TOUCH_POS_Y = 0; +var DIV_TOUCH_ZINDEX = 2; + +var DIV_HOOK_SIZE = 1; +var DIV_HOOK_POS_X = -1000; +var DIV_HOOK_POS_Y = -1000; +var DIV_HOOK_ZINDEX = 2; + +/** + * The Accessibility manager recreates the ability to tab and have content read by screen readers. + * This is very important as it can possibly help people with disabilities access PixiJS content. + * + * A DisplayObject can be made accessible just like it can be made interactive. This manager will map the + * events as if the mouse was being used, minimizing the effort required to implement. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.accessibility` + * + * @class + * @memberof PIXI.accessibility + */ +var AccessibilityManager = function AccessibilityManager(renderer) +{ + /** + * @type {?HTMLElement} + * @private + */ + this._hookDiv = null; + if (isMobile.tablet || isMobile.phone) + { + this.createTouchHook(); + } + + // first we create a div that will sit over the PixiJS element. This is where the div overlays will go. + var div = document.createElement('div'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.position = 'absolute'; + div.style.top = DIV_TOUCH_POS_X + "px"; + div.style.left = DIV_TOUCH_POS_Y + "px"; + div.style.zIndex = DIV_TOUCH_ZINDEX; + + /** + * This is the dom element that will sit over the PixiJS element. This is where the div overlays will go. + * + * @type {HTMLElement} + * @private + */ + this.div = div; + + /** + * A simple pool for storing divs. + * + * @type {*} + * @private + */ + this.pool = []; + + /** + * This is a tick used to check if an object is no longer being rendered. + * + * @type {Number} + * @private + */ + this.renderId = 0; + + /** + * Setting this to true will visually show the divs. + * + * @type {boolean} + */ + this.debug = false; + + /** + * The renderer this accessibility manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * The array of currently active accessible items. + * + * @member {Array<*>} + * @private + */ + this.children = []; + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onKeyDown = this._onKeyDown.bind(this); + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onMouseMove = this._onMouseMove.bind(this); + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isActive = false; + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isMobileAccessibility = false; + + // let listen for tab.. once pressed we can fire up and show the accessibility layer + window.addEventListener('keydown', this._onKeyDown, false); +}; + +/** + * Creates the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.createTouchHook = function createTouchHook () +{ + var this$1 = this; + + var hookDiv = document.createElement('button'); + + hookDiv.style.width = DIV_HOOK_SIZE + "px"; + hookDiv.style.height = DIV_HOOK_SIZE + "px"; + hookDiv.style.position = 'absolute'; + hookDiv.style.top = DIV_HOOK_POS_X + "px"; + hookDiv.style.left = DIV_HOOK_POS_Y + "px"; + hookDiv.style.zIndex = DIV_HOOK_ZINDEX; + hookDiv.style.backgroundColor = '#FF0000'; + hookDiv.title = 'HOOK DIV'; + + hookDiv.addEventListener('focus', function () { + this$1.isMobileAccessibility = true; + this$1.activate(); + this$1.destroyTouchHook(); + }); + + document.body.appendChild(hookDiv); + this._hookDiv = hookDiv; +}; + +/** + * Destroys the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.destroyTouchHook = function destroyTouchHook () +{ + if (!this._hookDiv) + { + return; + } + document.body.removeChild(this._hookDiv); + this._hookDiv = null; +}; + +/** + * Activating will cause the Accessibility layer to be shown. + * This is called when a user presses the tab key. + * + * @private + */ +AccessibilityManager.prototype.activate = function activate () +{ + if (this.isActive) + { + return; + } + + this.isActive = true; + + window.document.addEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown, false); + + this.renderer.on('postrender', this.update, this); + + if (this.renderer.view.parentNode) + { + this.renderer.view.parentNode.appendChild(this.div); + } +}; + +/** + * Deactivating will cause the Accessibility layer to be hidden. + * This is called when a user moves the mouse. + * + * @private + */ +AccessibilityManager.prototype.deactivate = function deactivate () +{ + if (!this.isActive || this.isMobileAccessibility) + { + return; + } + + this.isActive = false; + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.addEventListener('keydown', this._onKeyDown, false); + + this.renderer.off('postrender', this.update); + + if (this.div.parentNode) + { + this.div.parentNode.removeChild(this.div); + } +}; + +/** + * This recursive function will run through the scene graph and add any new accessible objects to the DOM layer. + * + * @private + * @param {PIXI.Container} displayObject - The DisplayObject to check. + */ +AccessibilityManager.prototype.updateAccessibleObjects = function updateAccessibleObjects (displayObject) +{ + if (!displayObject.visible) + { + return; + } + + if (displayObject.accessible && displayObject.interactive) + { + if (!displayObject._accessibleActive) + { + this.addChild(displayObject); + } + + displayObject.renderId = this.renderId; + } + + var children = displayObject.children; + + for (var i = 0; i < children.length; i++) + { + this.updateAccessibleObjects(children[i]); + } +}; + +/** + * Before each render this function will ensure that all divs are mapped correctly to their DisplayObjects. + * + * @private + */ +AccessibilityManager.prototype.update = function update () +{ + if (!this.renderer.renderingToScreen) + { + return; + } + + // update children... + this.updateAccessibleObjects(this.renderer._lastObjectRendered); + + var rect = this.renderer.view.getBoundingClientRect(); + var sx = rect.width / this.renderer.width; + var sy = rect.height / this.renderer.height; + + var div = this.div; + + div.style.left = (rect.left) + "px"; + div.style.top = (rect.top) + "px"; + div.style.width = (this.renderer.width) + "px"; + div.style.height = (this.renderer.height) + "px"; + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (child.renderId !== this.renderId) + { + child._accessibleActive = false; + + removeItems(this.children, i, 1); + this.div.removeChild(child._accessibleDiv); + this.pool.push(child._accessibleDiv); + child._accessibleDiv = null; + + i--; + + if (this.children.length === 0) + { + this.deactivate(); + } + } + else + { + // map div to display.. + div = child._accessibleDiv; + var hitArea = child.hitArea; + var wt = child.worldTransform; + + if (child.hitArea) + { + div.style.left = ((wt.tx + (hitArea.x * wt.a)) * sx) + "px"; + div.style.top = ((wt.ty + (hitArea.y * wt.d)) * sy) + "px"; + + div.style.width = (hitArea.width * wt.a * sx) + "px"; + div.style.height = (hitArea.height * wt.d * sy) + "px"; + } + else + { + hitArea = child.getBounds(); + + this.capHitArea(hitArea); + + div.style.left = (hitArea.x * sx) + "px"; + div.style.top = (hitArea.y * sy) + "px"; + + div.style.width = (hitArea.width * sx) + "px"; + div.style.height = (hitArea.height * sy) + "px"; + + // update button titles and hints if they exist and they've changed + if (div.title !== child.accessibleTitle && child.accessibleTitle !== null) + { + div.title = child.accessibleTitle; + } + if (div.getAttribute('aria-label') !== child.accessibleHint + && child.accessibleHint !== null) + { + div.setAttribute('aria-label', child.accessibleHint); + } + } + } + } + + // increment the render id.. + this.renderId++; +}; + +/** + * Adjust the hit area based on the bounds of a display object + * + * @param {PIXI.Rectangle} hitArea - Bounds of the child + */ +AccessibilityManager.prototype.capHitArea = function capHitArea (hitArea) +{ + if (hitArea.x < 0) + { + hitArea.width += hitArea.x; + hitArea.x = 0; + } + + if (hitArea.y < 0) + { + hitArea.height += hitArea.y; + hitArea.y = 0; + } + + if (hitArea.x + hitArea.width > this.renderer.width) + { + hitArea.width = this.renderer.width - hitArea.x; + } + + if (hitArea.y + hitArea.height > this.renderer.height) + { + hitArea.height = this.renderer.height - hitArea.y; + } +}; + +/** + * Adds a DisplayObject to the accessibility manager + * + * @private + * @param {PIXI.DisplayObject} displayObject - The child to make accessible. + */ +AccessibilityManager.prototype.addChild = function addChild (displayObject) +{ + //this.activate(); + + var div = this.pool.pop(); + + if (!div) + { + div = document.createElement('button'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.backgroundColor = this.debug ? 'rgba(255,0,0,0.5)' : 'transparent'; + div.style.position = 'absolute'; + div.style.zIndex = DIV_TOUCH_ZINDEX; + div.style.borderStyle = 'none'; + + // ARIA attributes ensure that button title and hint updates are announced properly + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + // Chrome doesn't need aria-live to work as intended; in fact it just gets more confused. + div.setAttribute('aria-live', 'off'); + } + else + { + div.setAttribute('aria-live', 'polite'); + } + + if (navigator.userAgent.match(/rv:.*Gecko\//)) + { + // FireFox needs this to announce only the new button name + div.setAttribute('aria-relevant', 'additions'); + } + else + { + // required by IE, other browsers don't much care + div.setAttribute('aria-relevant', 'text'); + } + + div.addEventListener('click', this._onClick.bind(this)); + div.addEventListener('focus', this._onFocus.bind(this)); + div.addEventListener('focusout', this._onFocusOut.bind(this)); + } + + if (displayObject.accessibleTitle && displayObject.accessibleTitle !== null) + { + div.title = displayObject.accessibleTitle; + } + else if (!displayObject.accessibleHint + || displayObject.accessibleHint === null) + { + div.title = "displayObject " + (displayObject.tabIndex); + } + + if (displayObject.accessibleHint + && displayObject.accessibleHint !== null) + { + div.setAttribute('aria-label', displayObject.accessibleHint); + } + + // + + displayObject._accessibleActive = true; + displayObject._accessibleDiv = div; + div.displayObject = displayObject; + + this.children.push(displayObject); + this.div.appendChild(displayObject._accessibleDiv); + displayObject._accessibleDiv.tabIndex = displayObject.tabIndex; +}; + +/** + * Maps the div button press to pixi's InteractionManager (click) + * + * @private + * @param {MouseEvent} e - The click event. + */ +AccessibilityManager.prototype._onClick = function _onClick (e) +{ + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'click', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'pointertap', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'tap', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseover) + * + * @private + * @param {FocusEvent} e - The focus event. + */ +AccessibilityManager.prototype._onFocus = function _onFocus (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'assertive'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseover', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseout) + * + * @private + * @param {FocusEvent} e - The focusout event. + */ +AccessibilityManager.prototype._onFocusOut = function _onFocusOut (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'polite'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseout', interactionManager.eventData); +}; + +/** + * Is called when a key is pressed + * + * @private + * @param {KeyboardEvent} e - The keydown event. + */ +AccessibilityManager.prototype._onKeyDown = function _onKeyDown (e) +{ + if (e.keyCode !== KEY_CODE_TAB) + { + return; + } + + this.activate(); +}; + +/** + * Is called when the mouse moves across the renderer element + * + * @private + * @param {MouseEvent} e - The mouse event. + */ +AccessibilityManager.prototype._onMouseMove = function _onMouseMove (e) +{ + if (e.movementX === 0 && e.movementY === 0) + { + return; + } + + this.deactivate(); +}; + +/** + * Destroys the accessibility manager + * + */ +AccessibilityManager.prototype.destroy = function destroy () +{ + this.destroyTouchHook(); + this.div = null; + + for (var i = 0; i < this.children.length; i++) + { + this.children[i].div = null; + } + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown); + + this.pool = null; + this.children = null; + this.renderer = null; +}; + +/*! + * @pixi/runner - v5.1.1 + * Compiled Fri, 02 Aug 2019 23:20:23 UTC + * + * @pixi/runner is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * A Runner is a highly performant and simple alternative to signals. Best used in situations + * where events are dispatched to many objects at high frequency (say every frame!) + * + * + * like a signal.. + * ``` + * const myObject = { + * loaded: new PIXI.Runner('loaded') + * } + * + * const listener = { + * loaded: function(){ + * // thin + * } + * } + * + * myObject.update.add(listener); + * + * myObject.loaded.emit(); + * ``` + * + * Or for handling calling the same function on many items + * ``` + * const myGame = { + * update: new PIXI.Runner('update') + * } + * + * const gameObject = { + * update: function(time){ + * // update my gamey state + * } + * } + * + * myGame.update.add(gameObject1); + * + * myGame.update.emit(time); + * ``` + * @class + * @memberof PIXI + */ +var Runner = function Runner(name) +{ + this.items = []; + this._name = name; + this._aliasCount = 0; +}; + +var prototypeAccessors$3 = { empty: { configurable: true },name: { configurable: true } }; + +/** + * Dispatch/Broadcast Runner to all listeners added to the queue. + * @param {...any} params - optional parameters to pass to each listener + */ +Runner.prototype.emit = function emit (a0, a1, a2, a3, a4, a5, a6, a7) +{ + if (arguments.length > 8) + { + throw new Error('max arguments reached'); + } + + var ref = this; + var name = ref.name; + var items = ref.items; + + this._aliasCount++; + + for (var i = 0, len = items.length; i < len; i++) + { + items[i][name](a0, a1, a2, a3, a4, a5, a6, a7); + } + + if (items === this.items) + { + this._aliasCount--; + } + + return this; +}; + +Runner.prototype.ensureNonAliasedItems = function ensureNonAliasedItems () +{ + if (this._aliasCount > 0 && this.items.length > 1) + { + this._aliasCount = 0; + this.items = this.items.slice(0); + } +}; + +/** + * Add a listener to the Runner + * + * Runners do not need to have scope or functions passed to them. + * All that is required is to pass the listening object and ensure that it has contains a function that has the same name + * as the name provided to the Runner when it was created. + * + * Eg A listener passed to this Runner will require a 'complete' function. + * + * ``` + * const complete = new PIXI.Runner('complete'); + * ``` + * + * The scope used will be the object itself. + * + * @param {any} item - The object that will be listening. + */ +Runner.prototype.add = function add (item) +{ + if (item[this._name]) + { + this.ensureNonAliasedItems(); + this.remove(item); + this.items.push(item); + } + + return this; +}; + +/** + * Remove a single listener from the dispatch queue. + * @param {any} item - The listenr that you would like to remove. + */ +Runner.prototype.remove = function remove (item) +{ + var index = this.items.indexOf(item); + + if (index !== -1) + { + this.ensureNonAliasedItems(); + this.items.splice(index, 1); + } + + return this; +}; + +/** + * Check to see if the listener is already in the Runner + * @param {any} item - The listener that you would like to check. + */ +Runner.prototype.contains = function contains (item) +{ + return this.items.indexOf(item) !== -1; +}; + +/** + * Remove all listeners from the Runner + */ +Runner.prototype.removeAll = function removeAll () +{ + this.ensureNonAliasedItems(); + this.items.length = 0; + + return this; +}; + +/** + * Remove all references, don't use after this. + */ +Runner.prototype.destroy = function destroy () +{ + this.removeAll(); + this.items = null; + this._name = null; +}; + +/** + * `true` if there are no this Runner contains no listeners + * + * @member {boolean} + * @readonly + */ +prototypeAccessors$3.empty.get = function () +{ + return this.items.length === 0; +}; + +/** + * The name of the runner. + * + * @member {string} + * @readonly + */ +prototypeAccessors$3.name.get = function () +{ + return this._name; +}; + +Object.defineProperties( Runner.prototype, prototypeAccessors$3 ); + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method dispatch + * @see PIXI.Runner#emit + */ +Runner.prototype.dispatch = Runner.prototype.emit; + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method run + * @see PIXI.Runner#emit + */ +Runner.prototype.run = Runner.prototype.emit; + +/*! + * @pixi/ticker - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/ticker is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Target frames per millisecond. + * + * @static + * @name TARGET_FPMS + * @memberof PIXI.settings + * @type {number} + * @default 0.06 + */ +settings.TARGET_FPMS = 0.06; + +/** + * Represents the update priorities used by internal PIXI classes when registered with + * the {@link PIXI.Ticker} object. Higher priority items are updated first and lower + * priority items, such as render, should go later. + * + * @static + * @constant + * @name UPDATE_PRIORITY + * @memberof PIXI + * @type {object} + * @property {number} INTERACTION=50 Highest priority, used for {@link PIXI.interaction.InteractionManager} + * @property {number} HIGH=25 High priority updating, {@link PIXI.VideoBaseTexture} and {@link PIXI.AnimatedSprite} + * @property {number} NORMAL=0 Default priority for ticker events, see {@link PIXI.Ticker#add}. + * @property {number} LOW=-25 Low priority used for {@link PIXI.Application} rendering. + * @property {number} UTILITY=-50 Lowest priority used for {@link PIXI.prepare.BasePrepare} utility. + */ +var UPDATE_PRIORITY = { + INTERACTION: 50, + HIGH: 25, + NORMAL: 0, + LOW: -25, + UTILITY: -50, +}; + +/** + * Internal class for handling the priority sorting of ticker handlers. + * + * @private + * @class + * @memberof PIXI + */ +var TickerListener = function TickerListener(fn, context, priority, once) +{ + if ( context === void 0 ) context = null; + if ( priority === void 0 ) priority = 0; + if ( once === void 0 ) once = false; + + /** + * The handler function to execute. + * @private + * @member {Function} + */ + this.fn = fn; + + /** + * The calling to execute. + * @private + * @member {*} + */ + this.context = context; + + /** + * The current priority. + * @private + * @member {number} + */ + this.priority = priority; + + /** + * If this should only execute once. + * @private + * @member {boolean} + */ + this.once = once; + + /** + * The next item in chain. + * @private + * @member {TickerListener} + */ + this.next = null; + + /** + * The previous item in chain. + * @private + * @member {TickerListener} + */ + this.previous = null; + + /** + * `true` if this listener has been destroyed already. + * @member {boolean} + * @private + */ + this._destroyed = false; +}; + +/** + * Simple compare function to figure out if a function and context match. + * @private + * @param {Function} fn - The listener function to be added for one update + * @param {Function} context - The listener context + * @return {boolean} `true` if the listener match the arguments + */ +TickerListener.prototype.match = function match (fn, context) +{ + context = context || null; + + return this.fn === fn && this.context === context; +}; + +/** + * Emit by calling the current function. + * @private + * @param {number} deltaTime - time since the last emit. + * @return {TickerListener} Next ticker + */ +TickerListener.prototype.emit = function emit (deltaTime) +{ + if (this.fn) + { + if (this.context) + { + this.fn.call(this.context, deltaTime); + } + else + { + this.fn(deltaTime); + } + } + + var redirect = this.next; + + if (this.once) + { + this.destroy(true); + } + + // Soft-destroying should remove + // the next reference + if (this._destroyed) + { + this.next = null; + } + + return redirect; +}; + +/** + * Connect to the list. + * @private + * @param {TickerListener} previous - Input node, previous listener + */ +TickerListener.prototype.connect = function connect (previous) +{ + this.previous = previous; + if (previous.next) + { + previous.next.previous = this; + } + this.next = previous.next; + previous.next = this; +}; + +/** + * Destroy and don't use after this. + * @private + * @param {boolean} [hard = false] `true` to remove the `next` reference, this + * is considered a hard destroy. Soft destroy maintains the next reference. + * @return {TickerListener} The listener to redirect while emitting or removing. + */ +TickerListener.prototype.destroy = function destroy (hard) +{ + if ( hard === void 0 ) hard = false; + + this._destroyed = true; + this.fn = null; + this.context = null; + + // Disconnect, hook up next and previous + if (this.previous) + { + this.previous.next = this.next; + } + + if (this.next) + { + this.next.previous = this.previous; + } + + // Redirect to the next item + var redirect = this.next; + + // Remove references + this.next = hard ? null : redirect; + this.previous = null; + + return redirect; +}; + +/** + * A Ticker class that runs an update loop that other objects listen to. + * + * This class is composed around listeners meant for execution on the next requested animation frame. + * Animation frames are requested only when necessary, e.g. When the ticker is started and the emitter has listeners. + * + * @class + * @memberof PIXI + */ +var Ticker = function Ticker() +{ + var this$1 = this; + + /** + * The first listener. All new listeners added are chained on this. + * @private + * @type {TickerListener} + */ + this._head = new TickerListener(null, null, Infinity); + + /** + * Internal current frame request ID + * @type {?number} + * @private + */ + this._requestId = null; + + /** + * Internal value managed by minFPS property setter and getter. + * This is the maximum allowed milliseconds between updates. + * @type {number} + * @private + */ + this._maxElapsedMS = 100; + + /** + * Internal value managed by maxFPS property setter and getter. + * This is the minimum allowed milliseconds between updates. + * @private + */ + this._minElapsedMS = 0; + + /** + * Whether or not this ticker should invoke the method + * {@link PIXI.Ticker#start} automatically + * when a listener is added. + * + * @member {boolean} + * @default false + */ + this.autoStart = false; + + /** + * Scalar time value from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * + * @member {number} + * @default 1 + */ + this.deltaTime = 1; + + /** + * Scaler time elapsed in milliseconds from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.deltaMS = 1 / settings.TARGET_FPMS; + + /** + * Time elapsed in milliseconds from last frame to this frame. + * Opposed to what the scalar {@link PIXI.Ticker#deltaTime} + * is based, this value is neither capped nor scaled. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.elapsedMS = 1 / settings.TARGET_FPMS; + + /** + * The last time {@link PIXI.Ticker#update} was invoked. + * This value is also reset internally outside of invoking + * update, but only when a new animation frame is requested. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * + * @member {number} + * @default -1 + */ + this.lastTime = -1; + + /** + * Factor of current {@link PIXI.Ticker#deltaTime}. + * @example + * // Scales ticker.deltaTime to what would be + * // the equivalent of approximately 120 FPS + * ticker.speed = 2; + * + * @member {number} + * @default 1 + */ + this.speed = 1; + + /** + * Whether or not this ticker has been started. + * `true` if {@link PIXI.Ticker#start} has been called. + * `false` if {@link PIXI.Ticker#stop} has been called. + * While `false`, this value may change to `true` in the + * event of {@link PIXI.Ticker#autoStart} being `true` + * and a listener is added. + * + * @member {boolean} + * @default false + */ + this.started = false; + + /** + * If enabled, deleting is disabled. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + + /** + * The last time keyframe was executed. + * Maintains a relatively fixed interval with the previous value. + * @member {number} + * @default -1 + * @private + */ + this._lastFrame = -1; + + /** + * Internal tick method bound to ticker instance. + * This is because in early 2015, Function.bind + * is still 60% slower in high performance scenarios. + * Also separating frame requests from update method + * so listeners may be called at any time and with + * any animation API, just invoke ticker.update(time). + * + * @private + * @param {number} time - Time since last tick. + */ + this._tick = function (time) { + this$1._requestId = null; + + if (this$1.started) + { + // Invoke listeners now + this$1.update(time); + // Listener side effects may have modified ticker state. + if (this$1.started && this$1._requestId === null && this$1._head.next) + { + this$1._requestId = requestAnimationFrame(this$1._tick); + } + } + }; +}; + +var prototypeAccessors$4 = { FPS: { configurable: true },minFPS: { configurable: true },maxFPS: { configurable: true } }; +var staticAccessors$2 = { shared: { configurable: true },system: { configurable: true } }; + +/** + * Conditionally requests a new animation frame. + * If a frame has not already been requested, and if the internal + * emitter has listeners, a new frame is requested. + * + * @private + */ +Ticker.prototype._requestIfNeeded = function _requestIfNeeded () +{ + if (this._requestId === null && this._head.next) + { + // ensure callbacks get correct delta + this.lastTime = performance.now(); + this._lastFrame = this.lastTime; + this._requestId = requestAnimationFrame(this._tick); + } +}; + +/** + * Conditionally cancels a pending animation frame. + * + * @private + */ +Ticker.prototype._cancelIfNeeded = function _cancelIfNeeded () +{ + if (this._requestId !== null) + { + cancelAnimationFrame(this._requestId); + this._requestId = null; + } +}; + +/** + * Conditionally requests a new animation frame. + * If the ticker has been started it checks if a frame has not already + * been requested, and if the internal emitter has listeners. If these + * conditions are met, a new frame is requested. If the ticker has not + * been started, but autoStart is `true`, then the ticker starts now, + * and continues with the previous conditions to request a new frame. + * + * @private + */ +Ticker.prototype._startIfPossible = function _startIfPossible () +{ + if (this.started) + { + this._requestIfNeeded(); + } + else if (this.autoStart) + { + this.start(); + } +}; + +/** + * Register a handler for tick events. Calls continuously unless + * it is removed or the ticker is stopped. + * + * @param {Function} fn - The listener function to be added for updates + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.add = function add (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority)); +}; + +/** + * Add a handler for the tick event which is only execute once. + * + * @param {Function} fn - The listener function to be added for one update + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.addOnce = function addOnce (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority, true)); +}; + +/** + * Internally adds the event handler so that it can be sorted by priority. + * Priority allows certain handler (user, AnimatedSprite, Interaction) to be run + * before the rendering. + * + * @private + * @param {TickerListener} listener - Current listener being added. + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype._addListener = function _addListener (listener) +{ + // For attaching to head + var current = this._head.next; + var previous = this._head; + + // Add the first item + if (!current) + { + listener.connect(previous); + } + else + { + // Go from highest to lowest priority + while (current) + { + if (listener.priority > current.priority) + { + listener.connect(previous); + break; + } + previous = current; + current = current.next; + } + + // Not yet connected + if (!listener.previous) + { + listener.connect(previous); + } + } + + this._startIfPossible(); + + return this; +}; + +/** + * Removes any handlers matching the function and context parameters. + * If no handlers are left after removing, then it cancels the animation frame. + * + * @param {Function} fn - The listener function to be removed + * @param {*} [context] - The listener context to be removed + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.remove = function remove (fn, context) +{ + var listener = this._head.next; + + while (listener) + { + // We found a match, lets remove it + // no break to delete all possible matches + // incase a listener was added 2+ times + if (listener.match(fn, context)) + { + listener = listener.destroy(); + } + else + { + listener = listener.next; + } + } + + if (!this._head.next) + { + this._cancelIfNeeded(); + } + + return this; +}; + +/** + * Starts the ticker. If the ticker has listeners + * a new animation frame is requested at this point. + */ +Ticker.prototype.start = function start () +{ + if (!this.started) + { + this.started = true; + this._requestIfNeeded(); + } +}; + +/** + * Stops the ticker. If the ticker has requested + * an animation frame it is canceled at this point. + */ +Ticker.prototype.stop = function stop () +{ + if (this.started) + { + this.started = false; + this._cancelIfNeeded(); + } +}; + +/** + * Destroy the ticker and don't use after this. Calling + * this method removes all references to internal events. + */ +Ticker.prototype.destroy = function destroy () +{ + if (!this._protected) + { + this.stop(); + + var listener = this._head.next; + + while (listener) + { + listener = listener.destroy(true); + } + + this._head.destroy(); + this._head = null; + } +}; + +/** + * Triggers an update. An update entails setting the + * current {@link PIXI.Ticker#elapsedMS}, + * the current {@link PIXI.Ticker#deltaTime}, + * invoking all listeners with current deltaTime, + * and then finally setting {@link PIXI.Ticker#lastTime} + * with the value of currentTime that was provided. + * This method will be called automatically by animation + * frame callbacks if the ticker instance has been started + * and listeners are added. + * + * @param {number} [currentTime=performance.now()] - the current time of execution + */ +Ticker.prototype.update = function update (currentTime) +{ + if ( currentTime === void 0 ) currentTime = performance.now(); + + var elapsedMS; + + // If the difference in time is zero or negative, we ignore most of the work done here. + // If there is no valid difference, then should be no reason to let anyone know about it. + // A zero delta, is exactly that, nothing should update. + // + // The difference in time can be negative, and no this does not mean time traveling. + // This can be the result of a race condition between when an animation frame is requested + // on the current JavaScript engine event loop, and when the ticker's start method is invoked + // (which invokes the internal _requestIfNeeded method). If a frame is requested before + // _requestIfNeeded is invoked, then the callback for the animation frame the ticker requests, + // can receive a time argument that can be less than the lastTime value that was set within + // _requestIfNeeded. This difference is in microseconds, but this is enough to cause problems. + // + // This check covers this browser engine timing issue, as well as if consumers pass an invalid + // currentTime value. This may happen if consumers opt-out of the autoStart, and update themselves. + + if (currentTime > this.lastTime) + { + // Save uncapped elapsedMS for measurement + elapsedMS = this.elapsedMS = currentTime - this.lastTime; + + // cap the milliseconds elapsed used for deltaTime + if (elapsedMS > this._maxElapsedMS) + { + elapsedMS = this._maxElapsedMS; + } + + elapsedMS *= this.speed; + + // If not enough time has passed, exit the function. + // Get ready for next frame by setting _lastFrame, but based on _minElapsedMS + // adjustment to ensure a relatively stable interval. + if (this._minElapsedMS) + { + var delta = currentTime - this._lastFrame | 0; + + if (delta < this._minElapsedMS) + { + return; + } + + this._lastFrame = currentTime - (delta % this._minElapsedMS); + } + + this.deltaMS = elapsedMS; + this.deltaTime = this.deltaMS * settings.TARGET_FPMS; + + // Cache a local reference, in-case ticker is destroyed + // during the emit, we can still check for head.next + var head = this._head; + + // Invoke listeners added to internal emitter + var listener = head.next; + + while (listener) + { + listener = listener.emit(this.deltaTime); + } + + if (!head.next) + { + this._cancelIfNeeded(); + } + } + else + { + this.deltaTime = this.deltaMS = this.elapsedMS = 0; + } + + this.lastTime = currentTime; +}; + +/** + * The frames per second at which this ticker is running. + * The default is approximately 60 in most modern browsers. + * **Note:** This does not factor in the value of + * {@link PIXI.Ticker#speed}, which is specific + * to scaling {@link PIXI.Ticker#deltaTime}. + * + * @member {number} + * @readonly + */ +prototypeAccessors$4.FPS.get = function () +{ + return 1000 / this.elapsedMS; +}; + +/** + * Manages the maximum amount of milliseconds allowed to + * elapse between invoking {@link PIXI.Ticker#update}. + * This value is used to cap {@link PIXI.Ticker#deltaTime}, + * but does not effect the measured value of {@link PIXI.Ticker#FPS}. + * When setting this property it is clamped to a value between + * `0` and `PIXI.settings.TARGET_FPMS * 1000`. + * + * @member {number} + * @default 10 + */ +prototypeAccessors$4.minFPS.get = function () +{ + return 1000 / this._maxElapsedMS; +}; + +prototypeAccessors$4.minFPS.set = function (fps) // eslint-disable-line require-jsdoc +{ + // Minimum must be below the maxFPS + var minFPS = Math.min(this.maxFPS, fps); + + // Must be at least 0, but below 1 / settings.TARGET_FPMS + var minFPMS = Math.min(Math.max(0, minFPS) / 1000, settings.TARGET_FPMS); + + this._maxElapsedMS = 1 / minFPMS; +}; + +/** + * Manages the minimum amount of milliseconds required to + * elapse between invoking {@link PIXI.Ticker#update}. + * This will effect the measured value of {@link PIXI.Ticker#FPS}. + * If it is set to `0`, then there is no limit; PixiJS will render as many frames as it can. + * Otherwise it will be at least `minFPS` + * + * @member {number} + * @default 0 + */ +prototypeAccessors$4.maxFPS.get = function () +{ + if (this._minElapsedMS) + { + return Math.round(1000 / this._minElapsedMS); + } + + return 0; +}; + +prototypeAccessors$4.maxFPS.set = function (fps) +{ + if (fps === 0) + { + this._minElapsedMS = 0; + } + else + { + // Max must be at least the minFPS + var maxFPS = Math.max(this.minFPS, fps); + + this._minElapsedMS = 1 / (maxFPS / 1000); + } +}; + +/** + * The shared ticker instance used by {@link PIXI.AnimatedSprite} and by + * {@link PIXI.VideoResource} to update animation frames / video textures. + * + * It may also be used by {@link PIXI.Application} if created with the `sharedTicker` option property set to true. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * Please follow the examples for usage, including how to opt-out of auto-starting the shared ticker. + * + * @example + * let ticker = PIXI.Ticker.shared; + * // Set this to prevent starting this ticker when listeners are added. + * // By default this is true only for the PIXI.Ticker.shared instance. + * ticker.autoStart = false; + * // FYI, call this to ensure the ticker is stopped. It should be stopped + * // if you have not attempted to render anything yet. + * ticker.stop(); + * // Call this when you are ready for a running shared ticker. + * ticker.start(); + * + * @example + * // You may use the shared ticker to render... + * let renderer = PIXI.autoDetectRenderer(); + * let stage = new PIXI.Container(); + * document.body.appendChild(renderer.view); + * ticker.add(function (time) { + * renderer.render(stage); + * }); + * + * @example + * // Or you can just update it manually. + * ticker.autoStart = false; + * ticker.stop(); + * function animate(time) { + * ticker.update(time); + * renderer.render(stage); + * requestAnimationFrame(animate); + * } + * animate(performance.now()); + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.shared.get = function () +{ + if (!Ticker._shared) + { + var shared = Ticker._shared = new Ticker(); + + shared.autoStart = true; + shared._protected = true; + } + + return Ticker._shared; +}; + +/** + * The system ticker instance used by {@link PIXI.interaction.InteractionManager} and by + * {@link PIXI.BasePrepare} for core timing functionality that shouldn't usually need to be paused, + * unlike the `shared` ticker which drives visual animations and rendering which may want to be paused. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.system.get = function () +{ + if (!Ticker._system) + { + var system = Ticker._system = new Ticker(); + + system.autoStart = true; + system._protected = true; + } + + return Ticker._system; +}; + +Object.defineProperties( Ticker.prototype, prototypeAccessors$4 ); +Object.defineProperties( Ticker, staticAccessors$2 ); + +/** + * Middleware for for Application Ticker. + * + * @example + * import {TickerPlugin} from '@pixi/ticker'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(TickerPlugin); + * + * @class + * @memberof PIXI + */ +var TickerPlugin = function TickerPlugin () {}; + +TickerPlugin.init = function init (options) +{ + var this$1 = this; + + // Set default + options = Object.assign({ + autoStart: true, + sharedTicker: false, + }, options); + + // Create ticker setter + Object.defineProperty(this, 'ticker', + { + set: function set(ticker) + { + if (this._ticker) + { + this._ticker.remove(this.render, this); + } + this._ticker = ticker; + if (ticker) + { + ticker.add(this.render, this, UPDATE_PRIORITY.LOW); + } + }, + get: function get() + { + return this._ticker; + }, + }); + + /** + * Convenience method for stopping the render. + * + * @method PIXI.Application#stop + */ + this.stop = function () { + this$1._ticker.stop(); + }; + + /** + * Convenience method for starting the render. + * + * @method PIXI.Application#start + */ + this.start = function () { + this$1._ticker.start(); + }; + + /** + * Internal reference to the ticker. + * + * @type {PIXI.Ticker} + * @name _ticker + * @memberof PIXI.Application# + * @private + */ + this._ticker = null; + + /** + * Ticker for doing render updates. + * + * @type {PIXI.Ticker} + * @name ticker + * @memberof PIXI.Application# + * @default PIXI.Ticker.shared + */ + this.ticker = options.sharedTicker ? Ticker.shared : new Ticker(); + + // Start the rendering + if (options.autoStart) + { + this.start(); + } +}; + +/** + * Clean up the ticker, scoped to application. + * + * @static + * @private + */ +TickerPlugin.destroy = function destroy () +{ + if (this._ticker) + { + var oldTicker = this._ticker; + + this.ticker = null; + oldTicker.destroy(); + } +}; + +/*! + * @pixi/core - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/core is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Base resource class for textures that manages validation and uploading, depending on its type. + * + * Uploading of a base texture to the GPU is required. + * + * @class + * @memberof PIXI.resources + */ +var Resource = function Resource(width, height) +{ + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * Internal width of the resource + * @member {number} + * @protected + */ + this._width = width; + + /** + * Internal height of the resource + * @member {number} + * @protected + */ + this._height = height; + + /** + * If resource has been destroyed + * @member {boolean} + * @readonly + * @default false + */ + this.destroyed = false; + + /** + * `true` if resource is created by BaseTexture + * useful for doing cleanup with BaseTexture destroy + * and not cleaning up resources that were created + * externally. + * @member {boolean} + * @protected + */ + this.internal = false; + + /** + * Mini-runner for handling resize events + * + * @member {Runner} + * @private + */ + this.onResize = new Runner('setRealSize', 2); + + /** + * Mini-runner for handling update events + * + * @member {Runner} + * @private + */ + this.onUpdate = new Runner('update'); + + /** + * Handle internal errors, such as loading errors + * + * @member {Runner} + * @private + */ + this.onError = new Runner('onError', 1); +}; + +var prototypeAccessors$5 = { valid: { configurable: true },width: { configurable: true },height: { configurable: true } }; + +/** + * Bind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.bind = function bind (baseTexture) +{ + this.onResize.add(baseTexture); + this.onUpdate.add(baseTexture); + this.onError.add(baseTexture); + + // Call a resize immediate if we already + // have the width and height of the resource + if (this._width || this._height) + { + this.onResize.run(this._width, this._height); + } +}; + +/** + * Unbind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.unbind = function unbind (baseTexture) +{ + this.onResize.remove(baseTexture); + this.onUpdate.remove(baseTexture); + this.onError.remove(baseTexture); +}; + +/** + * Trigger a resize event + * @param {number} width X dimension + * @param {number} height Y dimension + */ +Resource.prototype.resize = function resize (width, height) +{ + if (width !== this._width || height !== this._height) + { + this._width = width; + this._height = height; + this.onResize.run(width, height); + } +}; + +/** + * Has been validated + * @readonly + * @member {boolean} + */ +prototypeAccessors$5.valid.get = function () +{ + return !!this._width && !!this._height; +}; + +/** + * Has been updated trigger event + */ +Resource.prototype.update = function update () +{ + if (!this.destroyed) + { + this.onUpdate.run(); + } +}; + +/** + * This can be overridden to start preloading a resource + * or do any other prepare step. + * @protected + * @return {Promise} Handle the validate event + */ +Resource.prototype.load = function load () +{ + return Promise.resolve(); +}; + +/** + * The width of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.width.get = function () +{ + return this._width; +}; + +/** + * The height of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.height.get = function () +{ + return this._height; +}; + +/** + * Uploads the texture or returns false if it cant for some reason. Override this. + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} true is success + */ +Resource.prototype.upload = function upload (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Set the style, optional to override + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} `true` is success + */ +Resource.prototype.style = function style (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Clean up anything, this happens when destroying is ready. + * + * @protected + */ +Resource.prototype.dispose = function dispose () +{ + // override +}; + +/** + * Call when destroying resource, unbind any BaseTexture object + * before calling this method, as reference counts are maintained + * internally. + */ +Resource.prototype.destroy = function destroy () +{ + if (!this.destroyed) + { + this.destroyed = true; + this.dispose(); + this.onError.removeAll(); + this.onError = null; + this.onResize.removeAll(); + this.onResize = null; + this.onUpdate.removeAll(); + this.onUpdate = null; + } +}; + +Object.defineProperties( Resource.prototype, prototypeAccessors$5 ); + +/** + * Base for all the image/canvas resources + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BaseImageResource = /*@__PURE__*/(function (Resource) { + function BaseImageResource(source) + { + var width = source.naturalWidth || source.videoWidth || source.width; + var height = source.naturalHeight || source.videoHeight || source.height; + + Resource.call(this, width, height); + + /** + * The source element + * @member {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} + * @readonly + */ + this.source = source; + + /** + * If set to `true`, will force `texImage2D` over `texSubImage2D` for uploading. + * Certain types of media (e.g. video) using `texImage2D` is more performant. + * @member {boolean} + * @default false + * @private + */ + this.noSubImage = false; + } + + if ( Resource ) BaseImageResource.__proto__ = Resource; + BaseImageResource.prototype = Object.create( Resource && Resource.prototype ); + BaseImageResource.prototype.constructor = BaseImageResource; + + /** + * Set cross origin based detecting the url and the crossorigin + * @protected + * @param {HTMLElement} element - Element to apply crossOrigin + * @param {string} url - URL to check + * @param {boolean|string} [crossorigin=true] - Cross origin value to use + */ + BaseImageResource.crossOrigin = function crossOrigin (element, url, crossorigin) + { + if (crossorigin === undefined && url.indexOf('data:') !== 0) + { + element.crossOrigin = determineCrossOrigin(url); + } + else if (crossorigin !== false) + { + element.crossOrigin = typeof crossorigin === 'string' ? crossorigin : 'anonymous'; + } + }; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture + * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} [source] (optional) + * @returns {boolean} true is success + */ + BaseImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture, source) + { + var gl = renderer.gl; + var width = baseTexture.realWidth; + var height = baseTexture.realHeight; + + source = source || this.source; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (!this.noSubImage + && baseTexture.target === gl.TEXTURE_2D + && glTexture.width === width + && glTexture.height === height) + { + gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, baseTexture.format, baseTexture.type, source); + } + else + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(baseTexture.target, 0, baseTexture.format, baseTexture.format, baseTexture.type, source); + } + + return true; + }; + + /** + * Checks if source width/height was changed, resize can cause extra baseTexture update. + * Triggers one update in any case. + */ + BaseImageResource.prototype.update = function update () + { + if (this.destroyed) + { + return; + } + + var width = this.source.naturalWidth || this.source.videoWidth || this.source.width; + var height = this.source.naturalHeight || this.source.videoHeight || this.source.height; + + this.resize(width, height); + + Resource.prototype.update.call(this); + }; + + /** + * Destroy this BaseImageResource + * @override + * @param {PIXI.BaseTexture} [fromTexture] Optional base texture + * @return {boolean} Destroy was successful + */ + BaseImageResource.prototype.dispose = function dispose () + { + this.source = null; + }; + + return BaseImageResource; +}(Resource)); + +/** + * Resource type for HTMLImageElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + */ +var ImageResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLImageElement)) + { + var imageElement = new Image(); + + BaseImageResource.crossOrigin(imageElement, source, options.crossorigin); + + imageElement.src = source; + source = imageElement; + } + + BaseImageResource.call(this, source); + + // FireFox 68, and possibly other versions, seems like setting the HTMLImageElement#width and #height + // to non-zero values before its loading completes if images are in a cache. + // Because of this, need to set the `_width` and the `_height` to zero to avoid uploading incomplete images. + // Please refer to the issue #5968 (https://github.com/pixijs/pixi.js/issues/5968). + if (!source.complete && !!this._width && !!this._height) + { + this._width = 0; + this._height = 0; + } + + /** + * URL of the image source + * @member {string} + */ + this.url = source.src; + + /** + * When process is completed + * @member {Promise} + * @private + */ + this._process = null; + + /** + * If the image should be disposed after upload + * @member {boolean} + * @default false + */ + this.preserveBitmap = false; + + /** + * If capable, convert the image using createImageBitmap API + * @member {boolean} + * @default PIXI.settings.CREATE_IMAGE_BITMAP + */ + this.createBitmap = (options.createBitmap !== undefined + ? options.createBitmap : settings.CREATE_IMAGE_BITMAP) && !!window.createImageBitmap; + + /** + * Controls texture premultiplyAlpha field + * Copies from options + * @member {boolean|null} + * @readonly + */ + this.premultiplyAlpha = options.premultiplyAlpha !== false; + + /** + * The ImageBitmap element created for HTMLImageElement + * @member {ImageBitmap} + * @default null + */ + this.bitmap = null; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) ImageResource.__proto__ = BaseImageResource; + ImageResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageResource.prototype.constructor = ImageResource; + + /** + * returns a promise when image will be loaded and processed + * + * @param {boolean} [createBitmap=true] whether process image into bitmap + * @returns {Promise} + */ + ImageResource.prototype.load = function load (createBitmap) + { + var this$1 = this; + + if (createBitmap !== undefined) + { + this.createBitmap = createBitmap; + } + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + this$1.url = this$1.source.src; + var ref = this$1; + var source = ref.source; + + var completed = function () { + if (this$1.destroyed) + { + return; + } + source.onload = null; + source.onerror = null; + + this$1.resize(source.width, source.height); + this$1._load = null; + + if (this$1.createBitmap) + { + resolve(this$1.process()); + } + else + { + resolve(this$1); + } + }; + + if (source.complete && source.src) + { + completed(); + } + else + { + source.onload = completed; + source.onerror = function (event) { return this$1.onError.run(event); }; + } + }); + + return this._load; + }; + + /** + * Called when we need to convert image into BitmapImage. + * Can be called multiple times, real promise is cached inside. + * + * @returns {Promise} cached promise to fill that bitmap + */ + ImageResource.prototype.process = function process () + { + var this$1 = this; + + if (this._process !== null) + { + return this._process; + } + if (this.bitmap !== null || !window.createImageBitmap) + { + return Promise.resolve(this); + } + + this._process = window.createImageBitmap(this.source, + 0, 0, this.source.width, this.source.height, + { + premultiplyAlpha: this.premultiplyAlpha ? 'premultiply' : 'none', + }) + .then(function (bitmap) { + if (this$1.destroyed) + { + return Promise.reject(); + } + this$1.bitmap = bitmap; + this$1.update(); + this$1._process = null; + + return Promise.resolve(this$1); + }); + + return this._process; + }; + + /** + * Upload the image resource to GPU. + * + * @param {PIXI.Renderer} renderer - Renderer to upload to + * @param {PIXI.BaseTexture} baseTexture - BaseTexture for this resource + * @param {PIXI.GLTexture} glTexture - GLTexture to use + * @returns {boolean} true is success + */ + ImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + baseTexture.premultiplyAlpha = this.premultiplyAlpha; + + if (!this.createBitmap) + { + return BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture); + } + if (!this.bitmap) + { + // yeah, ignore the output + this.process(); + if (!this.bitmap) + { + return false; + } + } + + BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture, this.bitmap); + + if (!this.preserveBitmap) + { + // checks if there are other renderers that possibly need this bitmap + + var flag = true; + + for (var key in baseTexture._glTextures) + { + var otherTex = baseTexture._glTextures[key]; + + if (otherTex !== glTexture && otherTex.dirtyId !== baseTexture.dirtyId) + { + flag = false; + break; + } + } + + if (flag) + { + if (this.bitmap.close) + { + this.bitmap.close(); + } + + this.bitmap = null; + } + } + + return true; + }; + + /** + * Destroys this texture + * @override + */ + ImageResource.prototype.dispose = function dispose () + { + this.source.onload = null; + this.source.onerror = null; + + BaseImageResource.prototype.dispose.call(this); + + if (this.bitmap) + { + this.bitmap.close(); + this.bitmap = null; + } + this._process = null; + this._load = null; + }; + + return ImageResource; +}(BaseImageResource)); + +/** + * Collection of installed resource types, class must extend {@link PIXI.resources.Resource}. + * @example + * class CustomResource extends PIXI.resources.Resource { + * // MUST have source, options constructor signature + * // for auto-detected resources to be created. + * constructor(source, options) { + * super(); + * } + * upload(renderer, baseTexture, glTexture) { + * // upload with GL + * return true; + * } + * // used to auto-detect resource + * static test(source, extension) { + * return extension === 'xyz'|| source instanceof SomeClass; + * } + * } + * // Install the new resource type + * PIXI.resources.INSTALLED.push(CustomResource); + * + * @name PIXI.resources.INSTALLED + * @type {Array<*>} + * @static + * @readonly + */ +var INSTALLED = []; + +/** + * Create a resource element from a single source element. This + * auto-detects which type of resource to create. All resources that + * are auto-detectable must have a static `test` method and a constructor + * with the arguments `(source, options?)`. Currently, the supported + * resources for auto-detection include: + * - {@link PIXI.resources.ImageResource} + * - {@link PIXI.resources.CanvasResource} + * - {@link PIXI.resources.VideoResource} + * - {@link PIXI.resources.SVGResource} + * - {@link PIXI.resources.BufferResource} + * @static + * @function PIXI.resources.autoDetectResource + * @param {string|*} source - Resource source, this can be the URL to the resource, + * a typed-array (for BufferResource), HTMLVideoElement, SVG data-uri + * or any other resource that can be auto-detected. If not resource is + * detected, it's assumed to be an ImageResource. + * @param {object} [options] - Pass-through options to use for Resource + * @param {number} [options.width] - Width of BufferResource or SVG rasterization + * @param {number} [options.height] - Height of BufferResource or SVG rasterization + * @param {boolean} [options.autoLoad=true] - Image, SVG and Video flag to start loading + * @param {number} [options.scale=1] - SVG source scale. Overridden by width, height + * @param {boolean} [options.createBitmap=PIXI.settings.CREATE_IMAGE_BITMAP] - Image option to create Bitmap object + * @param {boolean} [options.crossorigin=true] - Image and Video option to set crossOrigin + * @param {boolean} [options.autoPlay=true] - Video option to start playing video immediately + * @param {number} [options.updateFPS=0] - Video option to update how many times a second the + * texture should be updated from the video. Leave at 0 to update at every render + * @return {PIXI.resources.Resource} The created resource. + */ +function autoDetectResource(source, options) +{ + if (!source) + { + return null; + } + + var extension = ''; + + if (typeof source === 'string') + { + // search for file extension: period, 3-4 chars, then ?, # or EOL + var result = (/\.(\w{3,4})(?:$|\?|#)/i).exec(source); + + if (result) + { + extension = result[1].toLowerCase(); + } + } + + for (var i = INSTALLED.length - 1; i >= 0; --i) + { + var ResourcePlugin = INSTALLED[i]; + + if (ResourcePlugin.test && ResourcePlugin.test(source, extension)) + { + return new ResourcePlugin(source, options); + } + } + + // When in doubt: probably an image + // might be appropriate to throw an error or return null + return new ImageResource(source, options); +} + +/** + * @interface SharedArrayBuffer + */ + +/** + * Buffer resource with data of typed array. + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BufferResource = /*@__PURE__*/(function (Resource) { + function BufferResource(source, options) + { + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + if (!width || !height) + { + throw new Error('BufferResource width or height invalid'); + } + + Resource.call(this, width, height); + + /** + * Source array + * Cannot be ClampedUint8Array because it cant be uploaded to WebGL + * + * @member {Float32Array|Uint8Array|Uint32Array} + */ + this.data = source; + } + + if ( Resource ) BufferResource.__proto__ = Resource; + BufferResource.prototype = Object.create( Resource && Resource.prototype ); + BufferResource.prototype.constructor = BufferResource; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture glTexture + * @returns {boolean} true is success + */ + BufferResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + glTexture.internalFormat, + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + glTexture.type, + this.data + ); + } + + return true; + }; + + /** + * Destroy and don't use after this + * @override + */ + BufferResource.prototype.dispose = function dispose () + { + this.data = null; + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @return {boolean} `true` if + */ + BufferResource.test = function test (source) + { + return source instanceof Float32Array + || source instanceof Uint8Array + || source instanceof Uint32Array; + }; + + return BufferResource; +}(Resource)); + +var defaultBufferOptions = { + scaleMode: SCALE_MODES.NEAREST, + format: FORMATS.RGBA, + premultiplyAlpha: false, +}; + +/** + * A Texture stores the information that represents an image. + * All textures have a base texture, which contains information about the source. + * Therefore you can have many textures all using a single BaseTexture + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + * @param {PIXI.resources.Resource|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} [resource=null] + * The current resource to use, for things that aren't Resource objects, will be converted + * into a Resource. + * @param {Object} [options] - Collection of options + * @param {PIXI.MIPMAP_MODES} [options.mipmap=PIXI.settings.MIPMAP_TEXTURES] - If mipmapping is enabled for texture + * @param {number} [options.anisotropicLevel=PIXI.settings.ANISOTROPIC_LEVEL] - Anisotropic filtering level of texture + * @param {PIXI.WRAP_MODES} [options.wrapMode=PIXI.settings.WRAP_MODE] - Wrap mode for textures + * @param {PIXI.SCALE_MODES} [options.scaleMode=PIXI.settings.SCALE_MODE] - Default scale mode, linear, nearest + * @param {PIXI.FORMATS} [options.format=PIXI.FORMATS.RGBA] - GL format type + * @param {PIXI.TYPES} [options.type=PIXI.TYPES.UNSIGNED_BYTE] - GL data type + * @param {PIXI.TARGETS} [options.target=PIXI.TARGETS.TEXTURE_2D] - GL texture target + * @param {boolean} [options.premultiplyAlpha=true] - Pre multiply the image alpha + * @param {number} [options.width=0] - Width of the texture + * @param {number} [options.height=0] - Height of the texture + * @param {number} [options.resolution] - Resolution of the base texture + * @param {object} [options.resourceOptions] - Optional resource options, + * see {@link PIXI.resources.autoDetectResource autoDetectResource} + */ +var BaseTexture = /*@__PURE__*/(function (EventEmitter) { + function BaseTexture(resource, options) + { + if ( resource === void 0 ) resource = null; + if ( options === void 0 ) options = null; + + EventEmitter.call(this); + + options = options || {}; + + var premultiplyAlpha = options.premultiplyAlpha; + var mipmap = options.mipmap; + var anisotropicLevel = options.anisotropicLevel; + var scaleMode = options.scaleMode; + var width = options.width; + var height = options.height; + var wrapMode = options.wrapMode; + var format = options.format; + var type = options.type; + var target = options.target; + var resolution = options.resolution; + var resourceOptions = options.resourceOptions; + + // Convert the resource to a Resource object + if (resource && !(resource instanceof Resource)) + { + resource = autoDetectResource(resource, resourceOptions); + resource.internal = true; + } + + /** + * The width of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.width = width || 0; + + /** + * The height of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.height = height || 0; + + /** + * The resolution / device pixel ratio of the texture + * + * @member {number} + * @default PIXI.settings.RESOLUTION + */ + this.resolution = resolution || settings.RESOLUTION; + + /** + * Mipmap mode of the texture, affects downscaled images + * + * @member {PIXI.MIPMAP_MODES} + * @default PIXI.settings.MIPMAP_TEXTURES + */ + this.mipmap = mipmap !== undefined ? mipmap : settings.MIPMAP_TEXTURES; + + /** + * Anisotropic filtering level of texture + * + * @member {number} + * @default PIXI.settings.ANISOTROPIC_LEVEL + */ + this.anisotropicLevel = anisotropicLevel !== undefined ? anisotropicLevel : settings.ANISOTROPIC_LEVEL; + + /** + * How the texture wraps + * @member {number} + */ + this.wrapMode = wrapMode || settings.WRAP_MODE; + + /** + * The scale mode to apply when scaling this texture + * + * @member {PIXI.SCALE_MODES} + * @default PIXI.settings.SCALE_MODE + */ + this.scaleMode = scaleMode !== undefined ? scaleMode : settings.SCALE_MODE; + + /** + * The pixel format of the texture + * + * @member {PIXI.FORMATS} + * @default PIXI.FORMATS.RGBA + */ + this.format = format || FORMATS.RGBA; + + /** + * The type of resource data + * + * @member {PIXI.TYPES} + * @default PIXI.TYPES.UNSIGNED_BYTE + */ + this.type = type || TYPES.UNSIGNED_BYTE; + + /** + * The target type + * + * @member {PIXI.TARGETS} + * @default PIXI.TARGETS.TEXTURE_2D + */ + this.target = target || TARGETS.TEXTURE_2D; + + /** + * Set to true to enable pre-multiplied alpha + * + * @member {boolean} + * @default true + */ + this.premultiplyAlpha = premultiplyAlpha !== false; + + /** + * Global unique identifier for this BaseTexture + * + * @member {string} + * @protected + */ + this.uid = uid(); + + /** + * Used by automatic texture Garbage Collection, stores last GC tick when it was bound + * + * @member {number} + * @protected + */ + this.touched = 0; + + /** + * Whether or not the texture is a power of two, try to use power of two textures as much + * as you can + * + * @readonly + * @member {boolean} + * @default false + */ + this.isPowerOfTwo = false; + this._refreshPOT(); + + /** + * The map of render context textures where this is bound + * + * @member {Object} + * @private + */ + this._glTextures = {}; + + /** + * Used by TextureSystem to only update texture to the GPU when needed. + * Please call `update()` to increment it. + * + * @readonly + * @member {number} + */ + this.dirtyId = 0; + + /** + * Used by TextureSystem to only update texture style when needed. + * + * @protected + * @member {number} + */ + this.dirtyStyleId = 0; + + /** + * Currently default cache ID. + * + * @member {string} + */ + this.cacheId = null; + + /** + * Generally speaking means when resource is loaded. + * @readonly + * @member {boolean} + */ + this.valid = width > 0 && height > 0; + + /** + * The collection of alternative cache ids, since some BaseTextures + * can have more than one ID, short name and longer full URL + * + * @member {Array} + * @readonly + */ + this.textureCacheIds = []; + + /** + * Flag if BaseTexture has been destroyed. + * + * @member {boolean} + * @readonly + */ + this.destroyed = false; + + /** + * The resource used by this BaseTexture, there can only + * be one resource per BaseTexture, but textures can share + * resources. + * + * @member {PIXI.resources.Resource} + * @readonly + */ + this.resource = null; + + /** + * Number of the texture batch, used by multi-texture renderers + * + * @member {number} + */ + this._batchEnabled = 0; + + /** + * Fired when a not-immediately-available source finishes loading. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when a not-immediately-available source fails to load. + * + * @protected + * @event PIXI.BaseTexture#error + * @param {PIXI.BaseTexture} baseTexture - Resource errored. + * @param {ErrorEvent} event - Load error event. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#update + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being updated. + */ + + /** + * Fired when BaseTexture is destroyed. + * + * @protected + * @event PIXI.BaseTexture#dispose + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being destroyed. + */ + + // Set the resource + this.setResource(resource); + } + + if ( EventEmitter ) BaseTexture.__proto__ = EventEmitter; + BaseTexture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + BaseTexture.prototype.constructor = BaseTexture; + + var prototypeAccessors = { realWidth: { configurable: true },realHeight: { configurable: true } }; + + /** + * Pixel width of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realWidth.get = function () + { + return Math.ceil((this.width * this.resolution) - 1e-4); + }; + + /** + * Pixel height of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realHeight.get = function () + { + return Math.ceil((this.height * this.resolution) - 1e-4); + }; + + /** + * Changes style options of BaseTexture + * + * @param {PIXI.SCALE_MODES} [scaleMode] - Pixi scalemode + * @param {PIXI.MIPMAP_MODES} [mipmap] - enable mipmaps + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setStyle = function setStyle (scaleMode, mipmap) + { + var dirty; + + if (scaleMode !== undefined && scaleMode !== this.scaleMode) + { + this.scaleMode = scaleMode; + dirty = true; + } + + if (mipmap !== undefined && mipmap !== this.mipmap) + { + this.mipmap = mipmap; + dirty = true; + } + + if (dirty) + { + this.dirtyStyleId++; + } + + return this; + }; + + /** + * Changes w/h/resolution. Texture becomes valid if width and height are greater than zero. + * + * @param {number} width Visual width + * @param {number} height Visual height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setSize = function setSize (width, height, resolution) + { + this.resolution = resolution || this.resolution; + this.width = width; + this.height = height; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Sets real size of baseTexture, preserves current resolution. + * + * @param {number} realWidth Full rendered width + * @param {number} realHeight Full rendered height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setRealSize = function setRealSize (realWidth, realHeight, resolution) + { + this.resolution = resolution || this.resolution; + this.width = realWidth / this.resolution; + this.height = realHeight / this.resolution; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Refresh check for isPowerOfTwo texture based on size + * + * @private + */ + BaseTexture.prototype._refreshPOT = function _refreshPOT () + { + this.isPowerOfTwo = isPow2(this.realWidth) && isPow2(this.realHeight); + }; + + /** + * Changes resolution + * + * @param {number} [resolution] res + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResolution = function setResolution (resolution) + { + var oldResolution = this.resolution; + + if (oldResolution === resolution) + { + return this; + } + + this.resolution = resolution; + + if (this.valid) + { + this.width = this.width * oldResolution / resolution; + this.height = this.height * oldResolution / resolution; + this.emit('update', this); + } + + this._refreshPOT(); + + return this; + }; + + /** + * Sets the resource if it wasn't set. Throws error if resource already present + * + * @param {PIXI.resources.Resource} resource - that is managing this BaseTexture + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResource = function setResource (resource) + { + if (this.resource === resource) + { + return this; + } + + if (this.resource) + { + throw new Error('Resource can be set only once'); + } + + resource.bind(this); + + this.resource = resource; + + return this; + }; + + /** + * Invalidates the object. Texture becomes valid if width and height are greater than zero. + */ + BaseTexture.prototype.update = function update () + { + if (!this.valid) + { + if (this.width > 0 && this.height > 0) + { + this.valid = true; + this.emit('loaded', this); + this.emit('update', this); + } + } + else + { + this.dirtyId++; + this.dirtyStyleId++; + this.emit('update', this); + } + }; + + /** + * Handle errors with resources. + * @private + * @param {ErrorEvent} event - Error event emitted. + */ + BaseTexture.prototype.onError = function onError (event) + { + this.emit('error', this, event); + }; + + /** + * Destroys this base texture. + * The method stops if resource doesn't want this texture to be destroyed. + * Removes texture from all caches. + */ + BaseTexture.prototype.destroy = function destroy () + { + // remove and destroy the resource + if (this.resource) + { + this.resource.unbind(this); + // only destroy resourced created internally + if (this.resource.internal) + { + this.resource.destroy(); + } + this.resource = null; + } + + if (this.cacheId) + { + delete BaseTextureCache[this.cacheId]; + delete TextureCache[this.cacheId]; + + this.cacheId = null; + } + + // finally let the WebGL renderer know.. + this.dispose(); + + BaseTexture.removeFromCache(this); + this.textureCacheIds = null; + + this.destroyed = true; + }; + + /** + * Frees the texture from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseTexture.prototype.dispose = function dispose () + { + this.emit('dispose', this); + }; + + /** + * Helper function that creates a base texture based on the source you provide. + * The source can be - image url, image element, canvas element. If the + * source is an image url or an image element and not in the base texture + * cache, it will be created and loaded. + * + * @static + * @param {string|HTMLImageElement|HTMLCanvasElement|SVGElement|HTMLVideoElement} source - The + * source to create base texture from. + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @returns {PIXI.BaseTexture} The new base texture. + */ + BaseTexture.from = function from (source, options) + { + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var baseTexture = BaseTextureCache[cacheId]; + + if (!baseTexture) + { + baseTexture = new BaseTexture(source, options); + baseTexture.cacheId = cacheId; + BaseTexture.addToCache(baseTexture, cacheId); + } + + return baseTexture; + }; + + /** + * Create a new BaseTexture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.BaseTexture} The resulting new BaseTexture + */ + BaseTexture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + buffer = buffer || new Float32Array(width * height * 4); + + var resource = new BufferResource(buffer, { width: width, height: height }); + var type = buffer instanceof Float32Array ? TYPES.FLOAT : TYPES.UNSIGNED_BYTE; + + return new BaseTexture(resource, Object.assign(defaultBufferOptions, options || { width: width, height: height, type: type })); + }; + + /** + * Adds a BaseTexture to the global BaseTextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.BaseTexture} baseTexture - The BaseTexture to add to the cache. + * @param {string} id - The id that the BaseTexture will be stored against. + */ + BaseTexture.addToCache = function addToCache (baseTexture, id) + { + if (id) + { + if (baseTexture.textureCacheIds.indexOf(id) === -1) + { + baseTexture.textureCacheIds.push(id); + } + + if (BaseTextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("BaseTexture added to the cache with an id [" + id + "] that already had an entry")); + } + + BaseTextureCache[id] = baseTexture; + } + }; + + /** + * Remove a BaseTexture from the global BaseTextureCache. + * + * @static + * @param {string|PIXI.BaseTexture} baseTexture - id of a BaseTexture to be removed, or a BaseTexture instance itself. + * @return {PIXI.BaseTexture|null} The BaseTexture that was removed. + */ + BaseTexture.removeFromCache = function removeFromCache (baseTexture) + { + if (typeof baseTexture === 'string') + { + var baseTextureFromCache = BaseTextureCache[baseTexture]; + + if (baseTextureFromCache) + { + var index = baseTextureFromCache.textureCacheIds.indexOf(baseTexture); + + if (index > -1) + { + baseTextureFromCache.textureCacheIds.splice(index, 1); + } + + delete BaseTextureCache[baseTexture]; + + return baseTextureFromCache; + } + } + else if (baseTexture && baseTexture.textureCacheIds) + { + for (var i = 0; i < baseTexture.textureCacheIds.length; ++i) + { + delete BaseTextureCache[baseTexture.textureCacheIds[i]]; + } + + baseTexture.textureCacheIds.length = 0; + + return baseTexture; + } + + return null; + }; + + Object.defineProperties( BaseTexture.prototype, prototypeAccessors ); + + return BaseTexture; +}(eventemitter3)); + +/** + * Global number of the texture batch, used by multi-texture renderers + * + * @static + * @member {number} + */ +BaseTexture._globalBatch = 0; + +/** + * A resource that contains a number of sources. + * + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + * @param {number|Array<*>} source - Number of items in array or the collection + * of image URLs to use. Can also be resources, image elements, canvas, etc. + * @param {object} [options] Options to apply to {@link PIXI.resources.autoDetectResource} + * @param {number} [options.width] - Width of the resource + * @param {number} [options.height] - Height of the resource + */ +var ArrayResource = /*@__PURE__*/(function (Resource) { + function ArrayResource(source, options) + { + options = options || {}; + + var urls; + var length = source; + + if (Array.isArray(source)) + { + urls = source; + length = source.length; + } + + Resource.call(this, options.width, options.height); + + /** + * Collection of resources. + * @member {Array} + * @readonly + */ + this.items = []; + + /** + * Dirty IDs for each part + * @member {Array} + * @readonly + */ + this.itemDirtyIds = []; + + for (var i = 0; i < length; i++) + { + var partTexture = new BaseTexture(); + + this.items.push(partTexture); + this.itemDirtyIds.push(-1); + } + + /** + * Number of elements in array + * + * @member {number} + * @readonly + */ + this.length = length; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (urls) + { + for (var i$1 = 0; i$1 < length; i$1++) + { + this.addResourceAt(autoDetectResource(urls[i$1], options), i$1); + } + } + } + + if ( Resource ) ArrayResource.__proto__ = Resource; + ArrayResource.prototype = Object.create( Resource && Resource.prototype ); + ArrayResource.prototype.constructor = ArrayResource; + + /** + * Destroy this BaseImageResource + * @override + */ + ArrayResource.prototype.dispose = function dispose () + { + for (var i = 0, len = this.length; i < len; i++) + { + this.items[i].destroy(); + } + this.items = null; + this.itemDirtyIds = null; + this._load = null; + }; + + /** + * Set a resource by ID + * + * @param {PIXI.resources.Resource} resource + * @param {number} index - Zero-based index of resource to set + * @return {PIXI.resources.ArrayResource} Instance for chaining + */ + ArrayResource.prototype.addResourceAt = function addResourceAt (resource, index) + { + var baseTexture = this.items[index]; + + if (!baseTexture) + { + throw new Error(("Index " + index + " is out of bounds")); + } + + // Inherit the first resource dimensions + if (resource.valid && !this.valid) + { + this.resize(resource.width, resource.height); + } + + this.items[index].setResource(resource); + + return this; + }; + + /** + * Set the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.bind = function bind (baseTexture) + { + Resource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_2D_ARRAY; + + for (var i = 0; i < this.length; i++) + { + this.items[i].on('update', baseTexture.update, baseTexture); + } + }; + + /** + * Unset the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.unbind = function unbind (baseTexture) + { + Resource.prototype.unbind.call(this, baseTexture); + + for (var i = 0; i < this.length; i++) + { + this.items[i].off('update', baseTexture.update, baseTexture); + } + }; + + /** + * Load all the resources simultaneously + * @override + * @return {Promise} When load is resolved + */ + ArrayResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var resources = this.items.map(function (item) { return item.resource; }); + + // TODO: also implement load part-by-part strategy + var promises = resources.map(function (item) { return item.load(); }); + + this._load = Promise.all(promises) + .then(function () { + var ref = resources[0]; + var width = ref.width; + var height = ref.height; + + this$1.resize(width, height); + + return Promise.resolve(this$1); + } + ); + + return this._load; + }; + + /** + * Upload the resources to the GPU. + * @param {PIXI.Renderer} renderer + * @param {PIXI.BaseTexture} texture + * @param {PIXI.GLTexture} glTexture + * @returns {boolean} whether texture was uploaded + */ + ArrayResource.prototype.upload = function upload (renderer, texture, glTexture) + { + var ref = this; + var length = ref.length; + var itemDirtyIds = ref.itemDirtyIds; + var items = ref.items; + var gl = renderer.gl; + + if (glTexture.dirtyId < 0) + { + gl.texImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + texture.format, + this._width, + this._height, + length, + 0, + texture.format, + texture.type, + null + ); + } + + for (var i = 0; i < length; i++) + { + var item = items[i]; + + if (itemDirtyIds[i] < item.dirtyId) + { + itemDirtyIds[i] = item.dirtyId; + if (item.valid) + { + gl.texSubImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + 0, // xoffset + 0, // yoffset + i, // zoffset + item.resource.width, + item.resource.height, + 1, + texture.format, + texture.type, + item.resource.source + ); + } + } + } + + return true; + }; + + return ArrayResource; +}(Resource)); + +/** + * @interface OffscreenCanvas + */ + +/** + * Resource type for HTMLCanvasElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLCanvasElement} source - Canvas element to use + */ +var CanvasResource = /*@__PURE__*/(function (BaseImageResource) { + function CanvasResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) CanvasResource.__proto__ = BaseImageResource; + CanvasResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + CanvasResource.prototype.constructor = CanvasResource; + + CanvasResource.test = function test (source) + { + var OffscreenCanvas = window.OffscreenCanvas; + + // Check for browsers that don't yet support OffscreenCanvas + if (OffscreenCanvas && source instanceof OffscreenCanvas) + { + return true; + } + + return source instanceof HTMLCanvasElement; + }; + + return CanvasResource; +}(BaseImageResource)); + +/** + * Resource for a CubeTexture which contains six resources. + * + * @class + * @extends PIXI.resources.ArrayResource + * @memberof PIXI.resources + * @param {Array} [source] Collection of URLs or resources + * to use as the sides of the cube. + * @param {object} [options] - ImageResource options + * @param {number} [options.width] - Width of resource + * @param {number} [options.height] - Height of resource + */ +var CubeResource = /*@__PURE__*/(function (ArrayResource) { + function CubeResource(source, options) + { + options = options || {}; + + ArrayResource.call(this, source, options); + + if (this.length !== CubeResource.SIDES) + { + throw new Error(("Invalid length. Got " + (this.length) + ", expected 6")); + } + + for (var i = 0; i < CubeResource.SIDES; i++) + { + this.items[i].target = TARGETS.TEXTURE_CUBE_MAP_POSITIVE_X + i; + } + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( ArrayResource ) CubeResource.__proto__ = ArrayResource; + CubeResource.prototype = Object.create( ArrayResource && ArrayResource.prototype ); + CubeResource.prototype.constructor = CubeResource; + + /** + * Add binding + * + * @override + * @param {PIXI.BaseTexture} baseTexture - parent base texture + */ + CubeResource.prototype.bind = function bind (baseTexture) + { + ArrayResource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_CUBE_MAP; + }; + + /** + * Upload the resource + * + * @returns {boolean} true is success + */ + CubeResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var dirty = this.itemDirtyIds; + + for (var i = 0; i < CubeResource.SIDES; i++) + { + var side = this.items[i]; + + if (dirty[i] < side.dirtyId) + { + dirty[i] = side.dirtyId; + if (side.valid) + { + side.resource.upload(renderer, side, glTexture); + } + } + } + + return true; + }; + + return CubeResource; +}(ArrayResource)); + +/** + * Number of texture sides to store for CubeResources + * + * @name PIXI.resources.CubeResource.SIDES + * @static + * @member {number} + * @default 6 + */ +CubeResource.SIDES = 6; + +/** + * Resource type for SVG elements and graphics. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {string} source - Base64 encoded SVG element or URL for SVG file. + * @param {object} [options] - Options to use + * @param {number} [options.scale=1] Scale to apply to SVG. Overridden by... + * @param {number} [options.width] Rasterize SVG this wide. Aspect ratio preserved if height not specified. + * @param {number} [options.height] Rasterize SVG this high. Aspect ratio preserved if width not specified. + * @param {boolean} [options.autoLoad=true] Start loading right away. + */ +var SVGResource = /*@__PURE__*/(function (BaseImageResource) { + function SVGResource(source, options) + { + options = options || {}; + + BaseImageResource.call(this, document.createElement('canvas')); + this._width = 0; + this._height = 0; + + /** + * Base64 encoded SVG element or URL for SVG file + * @readonly + * @member {string} + */ + this.svg = source; + + /** + * The source scale to apply when rasterizing on load + * @readonly + * @member {number} + */ + this.scale = options.scale || 1; + + /** + * A width override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideWidth = options.width; + + /** + * A height override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideHeight = options.height; + + /** + * Call when completely loaded + * @private + * @member {function} + */ + this._resolve = null; + + /** + * Cross origin value to use + * @private + * @member {boolean|string} + */ + this._crossorigin = options.crossorigin; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) SVGResource.__proto__ = BaseImageResource; + SVGResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + SVGResource.prototype.constructor = SVGResource; + + SVGResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + // Save this until after load is finished + this$1._resolve = function () { + this$1.resize(this$1.source.width, this$1.source.height); + resolve(this$1); + }; + + // Convert SVG inline string to data-uri + if ((/^\]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*>/i; // eslint-disable-line max-len + +/** + * Resource type for HTMLVideoElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLVideoElement|object|string|Array} source - Video element to use. + * @param {object} [options] - Options to use + * @param {boolean} [options.autoLoad=true] - Start loading the video immediately + * @param {boolean} [options.autoPlay=true] - Start playing video immediately + * @param {number} [options.updateFPS=0] - How many times a second to update the texture from the video. + * Leave at 0 to update at every render. + * @param {boolean} [options.crossorigin=true] - Load image using cross origin + */ +var VideoResource = /*@__PURE__*/(function (BaseImageResource) { + function VideoResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLVideoElement)) + { + var videoElement = document.createElement('video'); + + // workaround for https://github.com/pixijs/pixi.js/issues/5996 + videoElement.setAttribute('preload', 'auto'); + videoElement.setAttribute('webkit-playsinline', ''); + videoElement.setAttribute('playsinline', ''); + + if (typeof source === 'string') + { + source = [source]; + } + + BaseImageResource.crossOrigin(videoElement, (source[0].src || source[0]), options.crossorigin); + + // array of objects or strings + for (var i = 0; i < source.length; ++i) + { + var sourceElement = document.createElement('source'); + + var ref = source[i]; + var src = ref.src; + var mime = ref.mime; + + src = src || source[i]; + + var baseSrc = src.split('?').shift().toLowerCase(); + var ext = baseSrc.substr(baseSrc.lastIndexOf('.') + 1); + + mime = mime || ("video/" + ext); + + sourceElement.src = src; + sourceElement.type = mime; + + videoElement.appendChild(sourceElement); + } + + // Override the source + source = videoElement; + } + + BaseImageResource.call(this, source); + + this.noSubImage = true; + this._autoUpdate = true; + this._isAutoUpdating = false; + this._updateFPS = options.updateFPS || 0; + this._msToNextUpdate = 0; + + /** + * When set to true will automatically play videos used by this texture once + * they are loaded. If false, it will not modify the playing state. + * + * @member {boolean} + * @default true + */ + this.autoPlay = options.autoPlay !== false; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + /** + * Callback when completed with load. + * @member {function} + * @private + */ + this._resolve = null; + + // Bind for listeners + this._onCanPlay = this._onCanPlay.bind(this); + this._onError = this._onError.bind(this); + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) VideoResource.__proto__ = BaseImageResource; + VideoResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + VideoResource.prototype.constructor = VideoResource; + + var prototypeAccessors = { autoUpdate: { configurable: true },updateFPS: { configurable: true } }; + + /** + * Trigger updating of the texture + * + * @param {number} [deltaTime=0] - time delta since last tick + */ + VideoResource.prototype.update = function update (deltaTime) + { + if ( deltaTime === void 0 ) deltaTime = 0; + + if (!this.destroyed) + { + // account for if video has had its playbackRate changed + var elapsedMS = Ticker.shared.elapsedMS * this.source.playbackRate; + + this._msToNextUpdate = Math.floor(this._msToNextUpdate - elapsedMS); + if (!this._updateFPS || this._msToNextUpdate <= 0) + { + BaseImageResource.prototype.update.call(this, deltaTime); + this._msToNextUpdate = this._updateFPS ? Math.floor(1000 / this._updateFPS) : 0; + } + } + }; + + /** + * Start preloading the video resource. + * + * @protected + * @return {Promise} Handle the validate event + */ + VideoResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var source = this.source; + + if ((source.readyState === source.HAVE_ENOUGH_DATA || source.readyState === source.HAVE_FUTURE_DATA) + && source.width && source.height) + { + source.complete = true; + } + + source.addEventListener('play', this._onPlayStart.bind(this)); + source.addEventListener('pause', this._onPlayStop.bind(this)); + + if (!this._isSourceReady()) + { + source.addEventListener('canplay', this._onCanPlay); + source.addEventListener('canplaythrough', this._onCanPlay); + source.addEventListener('error', this._onError, true); + } + else + { + this._onCanPlay(); + } + + this._load = new Promise(function (resolve) { + if (this$1.valid) + { + resolve(this$1); + } + else + { + this$1._resolve = resolve; + + source.load(); + } + }); + + return this._load; + }; + + /** + * Handle video error events. + * + * @private + */ + VideoResource.prototype._onError = function _onError () + { + this.source.removeEventListener('error', this._onError, true); + this.onError.run(event); + }; + + /** + * Returns true if the underlying source is playing. + * + * @private + * @return {boolean} True if playing. + */ + VideoResource.prototype._isSourcePlaying = function _isSourcePlaying () + { + var source = this.source; + + return (source.currentTime > 0 && source.paused === false && source.ended === false && source.readyState > 2); + }; + + /** + * Returns true if the underlying source is ready for playing. + * + * @private + * @return {boolean} True if ready. + */ + VideoResource.prototype._isSourceReady = function _isSourceReady () + { + return this.source.readyState === 3 || this.source.readyState === 4; + }; + + /** + * Runs the update loop when the video is ready to play + * + * @private + */ + VideoResource.prototype._onPlayStart = function _onPlayStart () + { + // Just in case the video has not received its can play even yet.. + if (!this.valid) + { + this._onCanPlay(); + } + + if (!this._isAutoUpdating && this.autoUpdate) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + }; + + /** + * Fired when a pause event is triggered, stops the update loop + * + * @private + */ + VideoResource.prototype._onPlayStop = function _onPlayStop () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + }; + + /** + * Fired when the video is loaded and ready to play + * + * @private + */ + VideoResource.prototype._onCanPlay = function _onCanPlay () + { + var ref = this; + var source = ref.source; + + source.removeEventListener('canplay', this._onCanPlay); + source.removeEventListener('canplaythrough', this._onCanPlay); + + var valid = this.valid; + + this.resize(source.videoWidth, source.videoHeight); + + // prevent multiple loaded dispatches.. + if (!valid && this._resolve) + { + this._resolve(this); + this._resolve = null; + } + + if (this._isSourcePlaying()) + { + this._onPlayStart(); + } + else if (this.autoPlay) + { + source.play(); + } + }; + + /** + * Destroys this texture + * @override + */ + VideoResource.prototype.dispose = function dispose () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + } + + if (this.source) + { + this.source.removeEventListener('error', this._onError, true); + this.source.pause(); + this.source.src = ''; + this.source.load(); + } + BaseImageResource.prototype.dispose.call(this); + }; + + /** + * Should the base texture automatically update itself, set to true by default + * + * @member {boolean} + */ + prototypeAccessors.autoUpdate.get = function () + { + return this._autoUpdate; + }; + + prototypeAccessors.autoUpdate.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._autoUpdate) + { + this._autoUpdate = value; + + if (!this._autoUpdate && this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + else if (this._autoUpdate && !this._isAutoUpdating) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + } + }; + + /** + * How many times a second to update the texture from the video. Leave at 0 to update at every render. + * A lower fps can help performance, as updating the texture at 60fps on a 30ps video may not be efficient. + * + * @member {number} + */ + prototypeAccessors.updateFPS.get = function () + { + return this._updateFPS; + }; + + prototypeAccessors.updateFPS.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._updateFPS) + { + this._updateFPS = value; + } + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @param {string} extension - The extension of source, if set + * @return {boolean} `true` if video source + */ + VideoResource.test = function test (source, extension) + { + return (source instanceof HTMLVideoElement) + || VideoResource.TYPES.indexOf(extension) > -1; + }; + + Object.defineProperties( VideoResource.prototype, prototypeAccessors ); + + return VideoResource; +}(BaseImageResource)); + +/** + * List of common video file extensions supported by VideoResource. + * @constant + * @member {Array} + * @static + * @readonly + */ +VideoResource.TYPES = ['mp4', 'm4v', 'webm', 'ogg', 'ogv', 'h264', 'avi', 'mov']; + +/** + * Resource type for ImageBitmap. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {ImageBitmap} source - Image element to use + */ +var ImageBitmapResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageBitmapResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) ImageBitmapResource.__proto__ = BaseImageResource; + ImageBitmapResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageBitmapResource.prototype.constructor = ImageBitmapResource; + + ImageBitmapResource.test = function test (source) + { + return !!window.createImageBitmap && source instanceof ImageBitmap; + }; + + return ImageBitmapResource; +}(BaseImageResource)); + +INSTALLED.push( + ImageResource, + ImageBitmapResource, + CanvasResource, + VideoResource, + SVGResource, + BufferResource, + CubeResource, + ArrayResource +); + +/** + * System is a base class used for extending systems used by the {@link PIXI.Renderer} + * + * @see PIXI.Renderer#addSystem + * @class + * @memberof PIXI + */ +var System = function System(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Generic destroy methods to be overridden by the subclass + */ +System.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Resource type for DepthTexture. + * @class + * @extends PIXI.resources.BufferResource + * @memberof PIXI.resources + */ +var DepthResource = /*@__PURE__*/(function (BufferResource) { + function DepthResource () { + BufferResource.apply(this, arguments); + } + + if ( BufferResource ) DepthResource.__proto__ = BufferResource; + DepthResource.prototype = Object.create( BufferResource && BufferResource.prototype ); + DepthResource.prototype.constructor = DepthResource; + + DepthResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + gl.DEPTH_COMPONENT16, // Needed for depth to render properly in webgl2.0 + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + baseTexture.type, + this.data + ); + } + + return true; + }; + + return DepthResource; +}(BufferResource)); + +/** + * Frame buffer used by the BaseRenderTexture + * + * @class + * @memberof PIXI + */ +var Framebuffer = function Framebuffer(width, height) +{ + this.width = Math.ceil(width || 100); + this.height = Math.ceil(height || 100); + + this.stencil = false; + this.depth = false; + + this.dirtyId = 0; + this.dirtyFormat = 0; + this.dirtySize = 0; + + this.depthTexture = null; + this.colorTextures = []; + + this.glFramebuffers = {}; + + this.disposeRunner = new Runner('disposeFramebuffer', 2); +}; + +var prototypeAccessors$1$2 = { colorTexture: { configurable: true } }; + +/** + * Reference to the colorTexture. + * + * @member {PIXI.Texture[]} + * @readonly + */ +prototypeAccessors$1$2.colorTexture.get = function () +{ + return this.colorTextures[0]; +}; + +/** + * Add texture to the colorTexture array + * + * @param {number} [index=0] - Index of the array to add the texture to + * @param {PIXI.Texture} [texture] - Texture to add to the array + */ +Framebuffer.prototype.addColorTexture = function addColorTexture (index, texture) +{ + if ( index === void 0 ) index = 0; + + // TODO add some validation to the texture - same width / height etc? + this.colorTextures[index] = texture || new BaseTexture(null, { scaleMode: 0, + resolution: 1, + mipmap: false, + width: this.width, + height: this.height });// || new Texture(); + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Add a depth texture to the frame buffer + * + * @param {PIXI.Texture} [texture] - Texture to add + */ +Framebuffer.prototype.addDepthTexture = function addDepthTexture (texture) +{ + /* eslint-disable max-len */ + this.depthTexture = texture || new BaseTexture(new DepthResource(null, { width: this.width, height: this.height }), { scaleMode: 0, + resolution: 1, + width: this.width, + height: this.height, + mipmap: false, + format: FORMATS.DEPTH_COMPONENT, + type: TYPES.UNSIGNED_SHORT });// UNSIGNED_SHORT; + /* eslint-disable max-len */ + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable depth on the frame buffer + */ +Framebuffer.prototype.enableDepth = function enableDepth () +{ + this.depth = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable stencil on the frame buffer + */ +Framebuffer.prototype.enableStencil = function enableStencil () +{ + this.stencil = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Resize the frame buffer + * + * @param {number} width - Width of the frame buffer to resize to + * @param {number} height - Height of the frame buffer to resize to + */ +Framebuffer.prototype.resize = function resize (width, height) +{ + width = Math.ceil(width); + height = Math.ceil(height); + + if (width === this.width && height === this.height) { return; } + + this.width = width; + this.height = height; + + this.dirtyId++; + this.dirtySize++; + + for (var i = 0; i < this.colorTextures.length; i++) + { + var texture = this.colorTextures[i]; + var resolution = texture.resolution; + + // take into acount the fact the texture may have a different resolution.. + texture.setSize(width / resolution, height / resolution); + } + + if (this.depthTexture) + { + var resolution$1 = this.depthTexture.resolution; + + this.depthTexture.setSize(width / resolution$1, height / resolution$1); + } +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Framebuffer.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +Object.defineProperties( Framebuffer.prototype, prototypeAccessors$1$2 ); + +/** + * A BaseRenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a BaseRenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * A BaseRenderTexture takes a snapshot of any Display Object given to its render method. The position + * and rotation of the given Display Objects is ignored. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 800, height: 600 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 100, height: 100 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.BaseTexture + * @memberof PIXI + */ +var BaseRenderTexture = /*@__PURE__*/(function (BaseTexture) { + function BaseRenderTexture(options) + { + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + // Backward compatibility of signature + var width$1 = arguments[0]; + var height$1 = arguments[1]; + var scaleMode = arguments[2]; + var resolution = arguments[3]; + + options = { width: width$1, height: height$1, scaleMode: scaleMode, resolution: resolution }; + /* eslint-enable prefer-rest-params */ + } + + BaseTexture.call(this, null, options); + + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + // Set defaults + this.mipmap = false; + this.width = Math.ceil(width) || 100; + this.height = Math.ceil(height) || 100; + this.valid = true; + + /** + * A reference to the canvas render target (we only need one as this can be shared across renderers) + * + * @protected + * @member {object} + */ + this._canvasRenderTarget = null; + + this.clearColor = [0, 0, 0, 0]; + + this.framebuffer = new Framebuffer(this.width * this.resolution, this.height * this.resolution) + .addColorTexture(0, this); + + // TODO - could this be added the systems? + + /** + * The data structure for the stencil masks. + * + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + + /** + * The data structure for the filters. + * + * @member {PIXI.Graphics[]} + */ + this.filterStack = [{}]; + } + + if ( BaseTexture ) BaseRenderTexture.__proto__ = BaseTexture; + BaseRenderTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype ); + BaseRenderTexture.prototype.constructor = BaseRenderTexture; + + /** + * Resizes the BaseRenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + */ + BaseRenderTexture.prototype.resize = function resize (width, height) + { + width = Math.ceil(width); + height = Math.ceil(height); + this.framebuffer.resize(width * this.resolution, height * this.resolution); + }; + + /** + * Frees the texture and framebuffer from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseRenderTexture.prototype.dispose = function dispose () + { + this.framebuffer.dispose(); + + BaseTexture.prototype.dispose.call(this); + }; + + /** + * Destroys this texture. + * + */ + BaseRenderTexture.prototype.destroy = function destroy () + { + BaseTexture.prototype.destroy.call(this, true); + + this.framebuffer = null; + }; + + return BaseRenderTexture; +}(BaseTexture)); + +/** + * Stores a texture's frame in UV coordinates, in + * which everything lies in the rectangle `[(0,0), (1,0), + * (1,1), (0,1)]`. + * + * | Corner | Coordinates | + * |--------------|-------------| + * | Top-Left | `(x0,y0)` | + * | Top-Right | `(x1,y1)` | + * | Bottom-Right | `(x2,y2)` | + * | Bottom-Left | `(x3,y3)` | + * + * @class + * @protected + * @memberof PIXI + */ +var TextureUvs = function TextureUvs() +{ + /** + * X-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.x0 = 0; + + /** + * Y-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.y0 = 0; + + /** + * X-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.x1 = 1; + + /** + * Y-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.y1 = 0; + + /** + * X-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.x2 = 1; + + /** + * Y-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.y2 = 1; + + /** + * X-component of bottom-left corner `(x3,y3)`. + * + * @member {number} + */ + this.x3 = 0; + + /** + * Y-component of bottom-right corner `(x3,y3)`. + * + * @member {number} + */ + this.y3 = 1; + + this.uvsFloat32 = new Float32Array(8); +}; + +/** + * Sets the texture Uvs based on the given frame information. + * + * @protected + * @param {PIXI.Rectangle} frame - The frame of the texture + * @param {PIXI.Rectangle} baseFrame - The base frame of the texture + * @param {number} rotate - Rotation of frame, see {@link PIXI.GroupD8} + */ +TextureUvs.prototype.set = function set (frame, baseFrame, rotate) +{ + var tw = baseFrame.width; + var th = baseFrame.height; + + if (rotate) + { + // width and height div 2 div baseFrame size + var w2 = frame.width / 2 / tw; + var h2 = frame.height / 2 / th; + + // coordinates of center + var cX = (frame.x / tw) + w2; + var cY = (frame.y / th) + h2; + + rotate = GroupD8.add(rotate, GroupD8.NW); // NW is top-left corner + this.x0 = cX + (w2 * GroupD8.uX(rotate)); + this.y0 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); // rotate 90 degrees clockwise + this.x1 = cX + (w2 * GroupD8.uX(rotate)); + this.y1 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x2 = cX + (w2 * GroupD8.uX(rotate)); + this.y2 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x3 = cX + (w2 * GroupD8.uX(rotate)); + this.y3 = cY + (h2 * GroupD8.uY(rotate)); + } + else + { + this.x0 = frame.x / tw; + this.y0 = frame.y / th; + + this.x1 = (frame.x + frame.width) / tw; + this.y1 = frame.y / th; + + this.x2 = (frame.x + frame.width) / tw; + this.y2 = (frame.y + frame.height) / th; + + this.x3 = frame.x / tw; + this.y3 = (frame.y + frame.height) / th; + } + + this.uvsFloat32[0] = this.x0; + this.uvsFloat32[1] = this.y0; + this.uvsFloat32[2] = this.x1; + this.uvsFloat32[3] = this.y1; + this.uvsFloat32[4] = this.x2; + this.uvsFloat32[5] = this.y2; + this.uvsFloat32[6] = this.x3; + this.uvsFloat32[7] = this.y3; +}; + +var DEFAULT_UVS = new TextureUvs(); + +/** + * A texture stores the information that represents an image or part of an image. + * + * It cannot be added to the display list directly; instead use it as the texture for a Sprite. + * If no frame is provided for a texture, then the whole image is used. + * + * You can directly create a texture from an image and then reuse it multiple times like this : + * + * ```js + * let texture = PIXI.Texture.from('assets/image.png'); + * let sprite1 = new PIXI.Sprite(texture); + * let sprite2 = new PIXI.Sprite(texture); + * ``` + * + * If you didnt pass the texture frame to constructor, it enables `noFrame` mode: + * it subscribes on baseTexture events, it automatically resizes at the same time as baseTexture. + * + * Textures made from SVGs, loaded or not, cannot be used before the file finishes processing. + * You can check for this by checking the sprite's _textureID property. + * ```js + * var texture = PIXI.Texture.from('assets/image.svg'); + * var sprite1 = new PIXI.Sprite(texture); + * //sprite1._textureID should not be undefined if the texture has finished processing the SVG file + * ``` + * You can use a ticker or rAF to ensure your sprites load the finished textures after processing. See issue #3068. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var Texture = /*@__PURE__*/(function (EventEmitter) { + function Texture(baseTexture, frame, orig, trim, rotate, anchor) + { + EventEmitter.call(this); + + /** + * Does this Texture have any frame data assigned to it? + * + * This mode is enabled automatically if no frame was passed inside constructor. + * + * In this mode texture is subscribed to baseTexture events, and fires `update` on any change. + * + * Beware, after loading or resize of baseTexture event can fired two times! + * If you want more control, subscribe on baseTexture itself. + * + * ```js + * texture.on('update', () => {}); + * ``` + * + * Any assignment of `frame` switches off `noFrame` mode. + * + * @member {boolean} + */ + this.noFrame = false; + + if (!frame) + { + this.noFrame = true; + frame = new Rectangle(0, 0, 1, 1); + } + + if (baseTexture instanceof Texture) + { + baseTexture = baseTexture.baseTexture; + } + + /** + * The base texture that this texture uses. + * + * @member {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering, + * irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases) + * + * @member {PIXI.Rectangle} + */ + this._frame = frame; + + /** + * This is the trimmed area of original texture, before it was put in atlas + * Please call `updateUvs()` after you change coordinates of `trim` manually. + * + * @member {PIXI.Rectangle} + */ + this.trim = trim; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = false; + + /** + * This will let a renderer know that a texture has been updated (used mainly for WebGL uv updates) + * + * @member {boolean} + */ + this.requiresUpdate = false; + + /** + * The WebGL UV data cache. Can be used as quad UV + * + * @member {PIXI.TextureUvs} + * @protected + */ + this._uvs = DEFAULT_UVS; + + /** + * Default TextureMatrix instance for this texture + * By default that object is not created because its heavy + * + * @member {PIXI.TextureMatrix} + */ + this.uvMatrix = null; + + /** + * This is the area of original texture, before it was put in atlas + * + * @member {PIXI.Rectangle} + */ + this.orig = orig || frame;// new Rectangle(0, 0, 1, 1); + + this._rotate = Number(rotate || 0); + + if (rotate === true) + { + // this is old texturepacker legacy, some games/libraries are passing "true" for rotated textures + this._rotate = 2; + } + else if (this._rotate % 2 !== 0) + { + throw new Error('attempt to use diamond-shaped UVs. If you are sure, set rotation manually'); + } + + /** + * Anchor point that is used as default if sprite is created with this texture. + * Changing the `defaultAnchor` at a later point of time will not update Sprite's anchor point. + * @member {PIXI.Point} + * @default {0,0} + */ + this.defaultAnchor = anchor ? new Point(anchor.x, anchor.y) : new Point(0, 0); + + /** + * Update ID is observed by sprites and TextureMatrix instances. + * Call updateUvs() to increment it. + * + * @member {number} + * @protected + */ + + this._updateID = 0; + + /** + * The ids under which this Texture has been added to the texture cache. This is + * automatically set as long as Texture.addToCache is used, but may not be set if a + * Texture is added directly to the TextureCache array. + * + * @member {string[]} + */ + this.textureCacheIds = []; + + if (!baseTexture.valid) + { + baseTexture.once('loaded', this.onBaseTextureUpdated, this); + } + else if (this.noFrame) + { + // if there is no frame we should monitor for any base texture changes.. + if (baseTexture.valid) + { + this.onBaseTextureUpdated(baseTexture); + } + } + else + { + this.frame = frame; + } + + if (this.noFrame) + { + baseTexture.on('update', this.onBaseTextureUpdated, this); + } + } + + if ( EventEmitter ) Texture.__proto__ = EventEmitter; + Texture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + Texture.prototype.constructor = Texture; + + var prototypeAccessors = { resolution: { configurable: true },frame: { configurable: true },rotate: { configurable: true },width: { configurable: true },height: { configurable: true } }; + + /** + * Updates this texture on the gpu. + * + * Calls the TextureResource update. + * + * If you adjusted `frame` manually, please call `updateUvs()` instead. + * + */ + Texture.prototype.update = function update () + { + if (this.baseTexture.resource) + { + this.baseTexture.resource.update(); + } + }; + + /** + * Called when the base texture is updated + * + * @protected + * @param {PIXI.BaseTexture} baseTexture - The base texture. + */ + Texture.prototype.onBaseTextureUpdated = function onBaseTextureUpdated (baseTexture) + { + if (this.noFrame) + { + if (!this.baseTexture.valid) + { + return; + } + + this._frame.width = baseTexture.width; + this._frame.height = baseTexture.height; + this.valid = true; + this.updateUvs(); + } + else + { + // TODO this code looks confusing.. boo to abusing getters and setters! + // if user gave us frame that has bigger size than resized texture it can be a problem + this.frame = this._frame; + } + + this.emit('update', this); + }; + + /** + * Destroys this texture + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ + Texture.prototype.destroy = function destroy (destroyBase) + { + if (this.baseTexture) + { + if (destroyBase) + { + var ref = this.baseTexture; + var resource = ref.resource; + + // delete the texture if it exists in the texture cache.. + // this only needs to be removed if the base texture is actually destroyed too.. + if (resource && TextureCache[resource.url]) + { + Texture.removeFromCache(resource.url); + } + + this.baseTexture.destroy(); + } + + this.baseTexture.off('update', this.onBaseTextureUpdated, this); + + this.baseTexture = null; + } + + this._frame = null; + this._uvs = null; + this.trim = null; + this.orig = null; + + this.valid = false; + + Texture.removeFromCache(this); + this.textureCacheIds = null; + }; + + /** + * Creates a new texture object that acts the same as this one. + * + * @return {PIXI.Texture} The new texture + */ + Texture.prototype.clone = function clone () + { + return new Texture(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor); + }; + + /** + * Updates the internal WebGL UV cache. Use it after you change `frame` or `trim` of the texture. + * Call it after changing the frame + */ + Texture.prototype.updateUvs = function updateUvs () + { + if (this._uvs === DEFAULT_UVS) + { + this._uvs = new TextureUvs(); + } + + this._uvs.set(this._frame, this.baseTexture, this.rotate); + + this._updateID++; + }; + + /** + * Helper function that creates a new Texture based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|PIXI.BaseTexture} source + * Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The newly created texture + */ + Texture.from = function from (source, options) + { + if ( options === void 0 ) options = {}; + + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var texture = TextureCache[cacheId]; + + if (!texture) + { + if (!options.resolution) + { + options.resolution = getResolutionOfUrl(source); + } + + texture = new Texture(new BaseTexture(source, options)); + texture.baseTexture.cacheId = cacheId; + + BaseTexture.addToCache(texture.baseTexture, cacheId); + Texture.addToCache(texture, cacheId); + } + + // lets assume its a base texture! + return texture; + }; + + /** + * Create a new Texture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The resulting new BaseTexture + */ + Texture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + return new Texture(BaseTexture.fromBuffer(buffer, width, height, options)); + }; + + /** + * Create a texture from a source and add to the cache. + * + * @static + * @param {HTMLImageElement|HTMLCanvasElement} source - The input source. + * @param {String} imageUrl - File name of texture, for cache and resolving resolution. + * @param {String} [name] - Human readable name for the texture cache. If no name is + * specified, only `imageUrl` will be used as the cache ID. + * @return {PIXI.Texture} Output texture + */ + Texture.fromLoader = function fromLoader (source, imageUrl, name) + { + var resource = new ImageResource(source); + + resource.url = imageUrl; + + var baseTexture = new BaseTexture(resource, { + scaleMode: settings.SCALE_MODE, + resolution: getResolutionOfUrl(imageUrl), + }); + + var texture = new Texture(baseTexture); + + // No name, use imageUrl instead + if (!name) + { + name = imageUrl; + } + + // lets also add the frame to pixi's global cache for 'fromLoader' function + BaseTexture.addToCache(texture.baseTexture, name); + Texture.addToCache(texture, name); + + // also add references by url if they are different. + if (name !== imageUrl) + { + BaseTexture.addToCache(texture.baseTexture, imageUrl); + Texture.addToCache(texture, imageUrl); + } + + return texture; + }; + + /** + * Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.Texture} texture - The Texture to add to the cache. + * @param {string} id - The id that the Texture will be stored against. + */ + Texture.addToCache = function addToCache (texture, id) + { + if (id) + { + if (texture.textureCacheIds.indexOf(id) === -1) + { + texture.textureCacheIds.push(id); + } + + if (TextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("Texture added to the cache with an id [" + id + "] that already had an entry")); + } + + TextureCache[id] = texture; + } + }; + + /** + * Remove a Texture from the global TextureCache. + * + * @static + * @param {string|PIXI.Texture} texture - id of a Texture to be removed, or a Texture instance itself + * @return {PIXI.Texture|null} The Texture that was removed + */ + Texture.removeFromCache = function removeFromCache (texture) + { + if (typeof texture === 'string') + { + var textureFromCache = TextureCache[texture]; + + if (textureFromCache) + { + var index = textureFromCache.textureCacheIds.indexOf(texture); + + if (index > -1) + { + textureFromCache.textureCacheIds.splice(index, 1); + } + + delete TextureCache[texture]; + + return textureFromCache; + } + } + else if (texture && texture.textureCacheIds) + { + for (var i = 0; i < texture.textureCacheIds.length; ++i) + { + // Check that texture matches the one being passed in before deleting it from the cache. + if (TextureCache[texture.textureCacheIds[i]] === texture) + { + delete TextureCache[texture.textureCacheIds[i]]; + } + } + + texture.textureCacheIds.length = 0; + + return texture; + } + + return null; + }; + + /** + * Returns resolution of baseTexture + * + * @member {number} + * @readonly + */ + prototypeAccessors.resolution.get = function () + { + return this.baseTexture.resolution; + }; + + /** + * The frame specifies the region of the base texture that this texture uses. + * Please call `updateUvs()` after you change coordinates of `frame` manually. + * + * @member {PIXI.Rectangle} + */ + prototypeAccessors.frame.get = function () + { + return this._frame; + }; + + prototypeAccessors.frame.set = function (frame) // eslint-disable-line require-jsdoc + { + this._frame = frame; + + this.noFrame = false; + + var x = frame.x; + var y = frame.y; + var width = frame.width; + var height = frame.height; + var xNotFit = x + width > this.baseTexture.width; + var yNotFit = y + height > this.baseTexture.height; + + if (xNotFit || yNotFit) + { + var relationship = xNotFit && yNotFit ? 'and' : 'or'; + var errorX = "X: " + x + " + " + width + " = " + (x + width) + " > " + (this.baseTexture.width); + var errorY = "Y: " + y + " + " + height + " = " + (y + height) + " > " + (this.baseTexture.height); + + throw new Error('Texture Error: frame does not fit inside the base Texture dimensions: ' + + errorX + " " + relationship + " " + errorY); + } + + this.valid = width && height && this.baseTexture.valid; + + if (!this.trim && !this.rotate) + { + this.orig = frame; + } + + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * Indicates whether the texture is rotated inside the atlas + * set to 2 to compensate for texture packer rotation + * set to 6 to compensate for spine packer rotation + * can be used to rotate or mirror sprites + * See {@link PIXI.GroupD8} for explanation + * + * @member {number} + */ + prototypeAccessors.rotate.get = function () + { + return this._rotate; + }; + + prototypeAccessors.rotate.set = function (rotate) // eslint-disable-line require-jsdoc + { + this._rotate = rotate; + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * The width of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.orig.width; + }; + + /** + * The height of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.orig.height; + }; + + Object.defineProperties( Texture.prototype, prototypeAccessors ); + + return Texture; +}(eventemitter3)); + +function createWhiteTexture() +{ + var canvas = document.createElement('canvas'); + + canvas.width = 16; + canvas.height = 16; + + var context = canvas.getContext('2d'); + + context.fillStyle = 'white'; + context.fillRect(0, 0, 16, 16); + + return new Texture(new BaseTexture(new CanvasResource(canvas))); +} + +function removeAllHandlers(tex) +{ + tex.destroy = function _emptyDestroy() { /* empty */ }; + tex.on = function _emptyOn() { /* empty */ }; + tex.once = function _emptyOnce() { /* empty */ }; + tex.emit = function _emptyEmit() { /* empty */ }; +} + +/** + * An empty texture, used often to not have to create multiple empty textures. + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.EMPTY = new Texture(new BaseTexture()); +removeAllHandlers(Texture.EMPTY); +removeAllHandlers(Texture.EMPTY.baseTexture); + +/** + * A white texture of 16x16 size, used for graphics and other things + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.WHITE = createWhiteTexture(); +removeAllHandlers(Texture.WHITE); +removeAllHandlers(Texture.WHITE.baseTexture); + +/** + * A RenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a RenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * __Hint-2__: The actual memory allocation will happen on first render. + * You shouldn't create renderTextures each frame just to delete them after, try to reuse them. + * + * A RenderTexture takes a snapshot of any Display Object given to its render method. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let renderTexture = PIXI.RenderTexture.create(800, 600); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let renderTexture = new PIXI.RenderTexture.create(100, 100); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.Texture + * @memberof PIXI + */ +var RenderTexture = /*@__PURE__*/(function (Texture) { + function RenderTexture(baseRenderTexture, frame) + { + // support for legacy.. + var _legacyRenderer = null; + + if (!(baseRenderTexture instanceof BaseRenderTexture)) + { + /* eslint-disable prefer-rest-params, no-console */ + var width = arguments[1]; + var height = arguments[2]; + var scaleMode = arguments[3]; + var resolution = arguments[4]; + + // we have an old render texture.. + console.warn(("Please use RenderTexture.create(" + width + ", " + height + ") instead of the ctor directly.")); + _legacyRenderer = arguments[0]; + /* eslint-enable prefer-rest-params, no-console */ + + frame = null; + baseRenderTexture = new BaseRenderTexture({ + width: width, + height: height, + scaleMode: scaleMode, + resolution: resolution, + }); + } + + /** + * The base texture object that this texture uses + * + * @member {PIXI.BaseTexture} + */ + Texture.call(this, baseRenderTexture, frame); + + this.legacyRenderer = _legacyRenderer; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = true; + + /** + * Stores `sourceFrame` when this texture is inside current filter stack. + * You can read it inside filters. + * + * @readonly + * @member {PIXI.Rectangle} + */ + this.filterFrame = null; + + /** + * The key for pooled texture of FilterSystem + * @protected + * @member {string} + */ + this.filterPoolKey = null; + + this.updateUvs(); + } + + if ( Texture ) RenderTexture.__proto__ = Texture; + RenderTexture.prototype = Object.create( Texture && Texture.prototype ); + RenderTexture.prototype.constructor = RenderTexture; + + /** + * Resizes the RenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + * @param {boolean} [resizeBaseTexture=true] - Should the baseTexture.width and height values be resized as well? + */ + RenderTexture.prototype.resize = function resize (width, height, resizeBaseTexture) + { + if ( resizeBaseTexture === void 0 ) resizeBaseTexture = true; + + width = Math.ceil(width); + height = Math.ceil(height); + + // TODO - could be not required.. + this.valid = (width > 0 && height > 0); + + this._frame.width = this.orig.width = width; + this._frame.height = this.orig.height = height; + + if (resizeBaseTexture) + { + this.baseTexture.resize(width, height); + } + + this.updateUvs(); + }; + + /** + * Changes the resolution of baseTexture, but does not change framebuffer size. + * + * @param {number} resolution - The new resolution to apply to RenderTexture + */ + RenderTexture.prototype.setResolution = function setResolution (resolution) + { + var ref = this; + var baseTexture = ref.baseTexture; + + if (baseTexture.resolution === resolution) + { + return; + } + + baseTexture.setResolution(resolution); + this.resize(baseTexture.width, baseTexture.height, false); + }; + + /** + * A short hand way of creating a render texture. + * + * @param {object} [options] - Options + * @param {number} [options.width=100] - The width of the render texture + * @param {number} [options.height=100] - The height of the render texture + * @param {number} [options.scaleMode=PIXI.settings.SCALE_MODE] - See {@link PIXI.SCALE_MODES} for possible values + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the texture being generated + * @return {PIXI.RenderTexture} The new render texture + */ + RenderTexture.create = function create (options) + { + // fallback, old-style: create(width, height, scaleMode, resolution) + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + options = { + width: options, + height: arguments[1], + scaleMode: arguments[2], + resolution: arguments[3], + }; + /* eslint-enable prefer-rest-params */ + } + + return new RenderTexture(new BaseRenderTexture(options)); + }; + + return RenderTexture; +}(Texture)); + +/** + * Experimental! + * + * Texture pool, used by FilterSystem and plugins + * Stores collection of temporary pow2 or screen-sized renderTextures + * + * If you use custom RenderTexturePool for your filters, you can use methods + * `getFilterTexture` and `returnFilterTexture` same as in + * + * @class + * @memberof PIXI + */ +var RenderTexturePool = function RenderTexturePool(textureOptions) +{ + this.texturePool = {}; + this.textureOptions = textureOptions || {}; + /** + * Allow renderTextures of the same size as screen, not just pow2 + * + * Automatically sets to true after `setScreenSize` + * + * @member {boolean} + * @default false + */ + this.enableFullScreen = false; + + this._pixelsWidth = 0; + this._pixelsHeight = 0; +}; + +/** + * creates of texture with params that were specified in pool constructor + * + * @param {number} realWidth width of texture in pixels + * @param {number} realHeight height of texture in pixels + * @returns {RenderTexture} + */ +RenderTexturePool.prototype.createTexture = function createTexture (realWidth, realHeight) +{ + var baseRenderTexture = new BaseRenderTexture(Object.assign({ + width: realWidth, + height: realHeight, + resolution: 1, + }, this.textureOptions)); + + return new RenderTexture(baseRenderTexture); +}; + +/** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ +RenderTexturePool.prototype.getOptimalTexture = function getOptimalTexture (minWidth, minHeight, resolution) +{ + if ( resolution === void 0 ) resolution = 1; + + var key = RenderTexturePool.SCREEN_KEY; + + minWidth *= resolution; + minHeight *= resolution; + + if (!this.enableFullScreen || minWidth !== this._pixelsWidth || minHeight !== this._pixelsHeight) + { + minWidth = nextPow2(minWidth); + minHeight = nextPow2(minHeight); + key = ((minWidth & 0xFFFF) << 16) | (minHeight & 0xFFFF); + } + + if (!this.texturePool[key]) + { + this.texturePool[key] = []; + } + + var renderTexture = this.texturePool[key].pop(); + + if (!renderTexture) + { + renderTexture = this.createTexture(minWidth, minHeight); + } + + renderTexture.filterPoolKey = key; + renderTexture.setResolution(resolution); + + return renderTexture; +}; + +/** + * Gets extra texture of the same size as input renderTexture + * + * `getFilterTexture(input, 0.5)` or `getFilterTexture(0.5, input)` + * + * @param {PIXI.RenderTexture} input renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * It overrides, it does not multiply + * @returns {PIXI.RenderTexture} + */ +RenderTexturePool.prototype.getFilterTexture = function getFilterTexture (input, resolution) +{ + var filterTexture = this.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; +}; + +/** + * Place a render texture back into the pool. + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnTexture = function returnTexture (renderTexture) +{ + var key = renderTexture.filterPoolKey; + + renderTexture.filterFrame = null; + this.texturePool[key].push(renderTexture); +}; + +/** + * Alias for returnTexture, to be compliant with FilterSystem interface + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) +{ + this.returnTexture(renderTexture); +}; + +/** + * Clears the pool + * + * @param {boolean} [destroyTextures=true] destroy all stored textures + */ +RenderTexturePool.prototype.clear = function clear (destroyTextures) +{ + destroyTextures = destroyTextures !== false; + if (destroyTextures) + { + for (var i in this.texturePool) + { + var textures = this.texturePool[i]; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + } + } + + this.texturePool = {}; +}; + +/** + * If screen size was changed, drops all screen-sized textures, + * sets new screen size, sets `enableFullScreen` to true + * + * Size is measured in pixels, `renderer.view` can be passed here, not `renderer.screen` + * + * @param {PIXI.ISize} size - Initial size of screen + */ +RenderTexturePool.prototype.setScreenSize = function setScreenSize (size) +{ + if (size.width === this._pixelsWidth + && size.height === this._pixelsHeight) + { + return; + } + + var screenKey = RenderTexturePool.SCREEN_KEY; + var textures = this.texturePool[screenKey]; + + this.enableFullScreen = size.width > 0 && size.height > 0; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + this.texturePool[screenKey] = []; + + this._pixelsWidth = size.width; + this._pixelsHeight = size.height; +}; + +/** + * Key that is used to store fullscreen renderTextures in a pool + * + * @static + * @const {string} + */ +RenderTexturePool.SCREEN_KEY = 'screen'; + +/* eslint-disable max-len */ + +/** + * Holds the information for a single attribute structure required to render geometry. + * + * This does not contain the actual data, but instead has a buffer id that maps to a {@link PIXI.Buffer} + * This can include anything from positions, uvs, normals, colors etc. + * + * @class + * @memberof PIXI + */ +var Attribute = function Attribute(buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( type === void 0 ) type = 5126; + + this.buffer = buffer; + this.size = size; + this.normalized = normalized; + this.type = type; + this.stride = stride; + this.start = start; + this.instance = instance; +}; + +/** + * Destroys the Attribute. + */ +Attribute.prototype.destroy = function destroy () +{ + this.buffer = null; +}; + +/** + * Helper function that creates an Attribute based on the information provided + * + * @static + * @param {string} buffer the id of the buffer that this attribute will look for + * @param {Number} [size=2] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 + * @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) + * @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) + * @param {Boolean} [normalized=false] should the data be normalized. + * + * @returns {PIXI.Attribute} A new {@link PIXI.Attribute} based on the information provided + */ +Attribute.from = function from (buffer, size, normalized, type, stride) +{ + return new Attribute(buffer, size, normalized, type, stride); +}; + +var UID = 0; +/* eslint-disable max-len */ + +/** + * A wrapper for data so that it can be used and uploaded by WebGL + * + * @class + * @memberof PIXI + */ +var Buffer$1 = function Buffer(data, _static, index) +{ + if ( _static === void 0 ) _static = true; + if ( index === void 0 ) index = false; + + /** + * The data in the buffer, as a typed array + * + * @member {ArrayBuffer| SharedArrayBuffer|ArrayBufferView} + */ + this.data = data || new Float32Array(1); + + /** + * A map of renderer IDs to webgl buffer + * + * @private + * @member {object} + */ + this._glBuffers = {}; + + this._updateID = 0; + + this.index = index; + + this.static = _static; + + this.id = UID++; + + this.disposeRunner = new Runner('disposeBuffer', 2); +}; + +// TODO could explore flagging only a partial upload? +/** + * flags this buffer as requiring an upload to the GPU + * @param {ArrayBuffer|SharedArrayBuffer|ArrayBufferView} [data] the data to update in the buffer. + */ +Buffer$1.prototype.update = function update (data) +{ + this.data = data || this.data; + this._updateID++; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Buffer$1.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the buffer + */ +Buffer$1.prototype.destroy = function destroy () +{ + this.dispose(); + + this.data = null; +}; + +/** + * Helper function that creates a buffer based on an array or TypedArray + * + * @static + * @param {ArrayBufferView | number[]} data the TypedArray that the buffer will store. If this is a regular Array it will be converted to a Float32Array. + * @return {PIXI.Buffer} A new Buffer based on the data provided. + */ +Buffer$1.from = function from (data) +{ + if (data instanceof Array) + { + data = new Float32Array(data); + } + + return new Buffer$1(data); +}; + +function getBufferType(array) +{ + if (array.BYTES_PER_ELEMENT === 4) + { + if (array instanceof Float32Array) + { + return 'Float32Array'; + } + else if (array instanceof Uint32Array) + { + return 'Uint32Array'; + } + + return 'Int32Array'; + } + else if (array.BYTES_PER_ELEMENT === 2) + { + if (array instanceof Uint16Array) + { + return 'Uint16Array'; + } + } + else if (array.BYTES_PER_ELEMENT === 1) + { + if (array instanceof Uint8Array) + { + return 'Uint8Array'; + } + } + + // TODO map out the rest of the array elements! + return null; +} + +/* eslint-disable object-shorthand */ +var map$2 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, +}; + +function interleaveTypedArrays(arrays, sizes) +{ + var outSize = 0; + var stride = 0; + var views = {}; + + for (var i = 0; i < arrays.length; i++) + { + stride += sizes[i]; + outSize += arrays[i].length; + } + + var buffer = new ArrayBuffer(outSize * 4); + + var out = null; + var littleOffset = 0; + + for (var i$1 = 0; i$1 < arrays.length; i$1++) + { + var size = sizes[i$1]; + var array = arrays[i$1]; + + var type = getBufferType(array); + + if (!views[type]) + { + views[type] = new map$2[type](buffer); + } + + out = views[type]; + + for (var j = 0; j < array.length; j++) + { + var indexStart = ((j / size | 0) * stride) + littleOffset; + var index = j % size; + + out[indexStart + index] = array[j]; + } + + littleOffset += size; + } + + return new Float32Array(buffer); +} + +var byteSizeMap = { 5126: 4, 5123: 2, 5121: 1 }; +var UID$1 = 0; + +/* eslint-disable object-shorthand */ +var map$1$1 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, + Uint16Array: Uint16Array, +}; + +/* eslint-disable max-len */ + +/** + * The Geometry represents a model. It consists of two components: + * - GeometryStyle - The structure of the model such as the attributes layout + * - GeometryData - the data of the model - this consists of buffers. + * This can include anything from positions, uvs, normals, colors etc. + * + * Geometry can be defined without passing in a style or data if required (thats how I prefer!) + * + * ```js + * let geometry = new PIXI.Geometry(); + * + * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2); + * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1],2) + * geometry.addIndex([0,1,2,1,3,2]) + * + * ``` + * @class + * @memberof PIXI + */ +var Geometry = function Geometry(buffers, attributes) +{ + if ( buffers === void 0 ) buffers = []; + if ( attributes === void 0 ) attributes = {}; + + this.buffers = buffers; + + this.indexBuffer = null; + + this.attributes = attributes; + + /** + * A map of renderer IDs to webgl VAOs + * + * @protected + * @type {object} + */ + this.glVertexArrayObjects = {}; + + this.id = UID$1++; + + this.instanced = false; + + /** + * Number of instances in this geometry, pass it to `GeometrySystem.draw()` + * @member {number} + * @default 1 + */ + this.instanceCount = 1; + + this.disposeRunner = new Runner('disposeGeometry', 2); + + /** + * Count of existing (not destroyed) meshes that reference this geometry + * @member {number} + */ + this.refCount = 0; +}; + +/** +* +* Adds an attribute to the geometry +* +* @param {String} id - the name of the attribute (matching up to a shader) +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it. +* @param {Number} [size=0] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 +* @param {Boolean} [normalized=false] should the data be normalized. +* @param {Number} [type=PIXI.TYPES.FLOAT] what type of number is the attribute. Check {PIXI.TYPES} to see the ones available +* @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) +* @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) +* +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addAttribute = function addAttribute (id, buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( instance === void 0 ) instance = false; + + if (!buffer) + { + throw new Error('You must pass a buffer when creating an attribute'); + } + + // check if this is a buffer! + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Float32Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + var ids = id.split('|'); + + if (ids.length > 1) + { + for (var i = 0; i < ids.length; i++) + { + this.addAttribute(ids[i], buffer, size, normalized, type); + } + + return this; + } + + var bufferIndex = this.buffers.indexOf(buffer); + + if (bufferIndex === -1) + { + this.buffers.push(buffer); + bufferIndex = this.buffers.length - 1; + } + + this.attributes[id] = new Attribute(bufferIndex, size, normalized, type, stride, start, instance); + + // assuming that if there is instanced data then this will be drawn with instancing! + this.instanced = this.instanced || instance; + + return this; +}; + +/** + * returns the requested attribute + * + * @param {String} id the name of the attribute required + * @return {PIXI.Attribute} the attribute requested. + */ +Geometry.prototype.getAttribute = function getAttribute (id) +{ + return this.attributes[id]; +}; + +/** + * returns the requested buffer + * + * @param {String} id the name of the buffer required + * @return {PIXI.Buffer} the buffer requested. + */ +Geometry.prototype.getBuffer = function getBuffer (id) +{ + return this.buffers[this.getAttribute(id).buffer]; +}; + +/** +* +* Adds an index buffer to the geometry +* The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer. +* +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it. +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addIndex = function addIndex (buffer) +{ + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Uint16Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + buffer.index = true; + this.indexBuffer = buffer; + + if (this.buffers.indexOf(buffer) === -1) + { + this.buffers.push(buffer); + } + + return this; +}; + +/** + * returns the index buffer + * + * @return {PIXI.Buffer} the index buffer. + */ +Geometry.prototype.getIndex = function getIndex () +{ + return this.indexBuffer; +}; + +/** + * this function modifies the structure so that all current attributes become interleaved into a single buffer + * This can be useful if your model remains static as it offers a little performance boost + * + * @return {PIXI.Geometry} returns self, useful for chaining. + */ +Geometry.prototype.interleave = function interleave () +{ + // a simple check to see if buffers are already interleaved.. + if (this.buffers.length === 1 || (this.buffers.length === 2 && this.indexBuffer)) { return this; } + + // assume already that no buffers are interleaved + var arrays = []; + var sizes = []; + var interleavedBuffer = new Buffer$1(); + var i; + + for (i in this.attributes) + { + var attribute = this.attributes[i]; + + var buffer = this.buffers[attribute.buffer]; + + arrays.push(buffer.data); + + sizes.push((attribute.size * byteSizeMap[attribute.type]) / 4); + + attribute.buffer = 0; + } + + interleavedBuffer.data = interleaveTypedArrays(arrays, sizes); + + for (i = 0; i < this.buffers.length; i++) + { + if (this.buffers[i] !== this.indexBuffer) + { + this.buffers[i].destroy(); + } + } + + this.buffers = [interleavedBuffer]; + + if (this.indexBuffer) + { + this.buffers.push(this.indexBuffer); + } + + return this; +}; + +Geometry.prototype.getSize = function getSize () +{ + for (var i in this.attributes) + { + var attribute = this.attributes[i]; + var buffer = this.buffers[attribute.buffer]; + + return buffer.data.length / ((attribute.stride / 4) || attribute.size); + } + + return 0; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Geometry.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the geometry. + */ +Geometry.prototype.destroy = function destroy () +{ + this.dispose(); + + this.buffers = null; + this.indexBuffer.destroy(); + + this.attributes = null; +}; + +/** + * returns a clone of the geometry + * + * @returns {PIXI.Geometry} a new clone of this geometry + */ +Geometry.prototype.clone = function clone () +{ + var geometry = new Geometry(); + + for (var i = 0; i < this.buffers.length; i++) + { + geometry.buffers[i] = new Buffer$1(this.buffers[i].data.slice()); + } + + for (var i$1 in this.attributes) + { + var attrib = this.attributes[i$1]; + + geometry.attributes[i$1] = new Attribute( + attrib.buffer, + attrib.size, + attrib.normalized, + attrib.type, + attrib.stride, + attrib.start, + attrib.instance + ); + } + + if (this.indexBuffer) + { + geometry.indexBuffer = geometry.buffers[this.buffers.indexOf(this.indexBuffer)]; + geometry.indexBuffer.index = true; + } + + return geometry; +}; + +/** + * merges an array of geometries into a new single one + * geometry attribute styles must match for this operation to work + * + * @param {PIXI.Geometry[]} geometries array of geometries to merge + * @returns {PIXI.Geometry} shiny new geometry! + */ +Geometry.merge = function merge (geometries) +{ + // todo add a geometry check! + // also a size check.. cant be too big!] + + var geometryOut = new Geometry(); + + var arrays = []; + var sizes = []; + var offsets = []; + + var geometry; + + // pass one.. get sizes.. + for (var i = 0; i < geometries.length; i++) + { + geometry = geometries[i]; + + for (var j = 0; j < geometry.buffers.length; j++) + { + sizes[j] = sizes[j] || 0; + sizes[j] += geometry.buffers[j].data.length; + offsets[j] = 0; + } + } + + // build the correct size arrays.. + for (var i$1 = 0; i$1 < geometry.buffers.length; i$1++) + { + // TODO types! + arrays[i$1] = new map$1$1[getBufferType(geometry.buffers[i$1].data)](sizes[i$1]); + geometryOut.buffers[i$1] = new Buffer$1(arrays[i$1]); + } + + // pass to set data.. + for (var i$2 = 0; i$2 < geometries.length; i$2++) + { + geometry = geometries[i$2]; + + for (var j$1 = 0; j$1 < geometry.buffers.length; j$1++) + { + arrays[j$1].set(geometry.buffers[j$1].data, offsets[j$1]); + offsets[j$1] += geometry.buffers[j$1].data.length; + } + } + + geometryOut.attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + geometryOut.indexBuffer = geometryOut.buffers[geometry.buffers.indexOf(geometry.indexBuffer)]; + geometryOut.indexBuffer.index = true; + + var offset = 0; + var stride = 0; + var offset2 = 0; + var bufferIndexToCount = 0; + + // get a buffer + for (var i$3 = 0; i$3 < geometry.buffers.length; i$3++) + { + if (geometry.buffers[i$3] !== geometry.indexBuffer) + { + bufferIndexToCount = i$3; + break; + } + } + + // figure out the stride of one buffer.. + for (var i$4 in geometry.attributes) + { + var attribute = geometry.attributes[i$4]; + + if ((attribute.buffer | 0) === bufferIndexToCount) + { + stride += ((attribute.size * byteSizeMap[attribute.type]) / 4); + } + } + + // time to off set all indexes.. + for (var i$5 = 0; i$5 < geometries.length; i$5++) + { + var indexBufferData = geometries[i$5].indexBuffer.data; + + for (var j$2 = 0; j$2 < indexBufferData.length; j$2++) + { + geometryOut.indexBuffer.data[j$2 + offset2] += offset; + } + + offset += geometry.buffers[bufferIndexToCount].data.length / (stride); + offset2 += indexBufferData.length; + } + } + + return geometryOut; +}; + +/** + * Helper class to create a quad + * + * @class + * @memberof PIXI + */ +var Quad = /*@__PURE__*/(function (Geometry) { + function Quad() + { + Geometry.call(this); + + this.addAttribute('aVertexPosition', [ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]) + .addIndex([0, 1, 3, 2]); + } + + if ( Geometry ) Quad.__proto__ = Geometry; + Quad.prototype = Object.create( Geometry && Geometry.prototype ); + Quad.prototype.constructor = Quad; + + return Quad; +}(Geometry)); + +/** + * Helper class to create a quad with uvs like in v4 + * + * @class + * @memberof PIXI + * @extends PIXI.Geometry + */ +var QuadUv = /*@__PURE__*/(function (Geometry) { + function QuadUv() + { + Geometry.call(this); + + /** + * An array of vertices + * + * @member {Float32Array} + */ + this.vertices = new Float32Array([ + -1, -1, + 1, -1, + 1, 1, + -1, 1 ]); + + /** + * The Uvs of the quad + * + * @member {Float32Array} + */ + this.uvs = new Float32Array([ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]); + + this.vertexBuffer = new Buffer$1(this.vertices); + this.uvBuffer = new Buffer$1(this.uvs); + + this.addAttribute('aVertexPosition', this.vertexBuffer) + .addAttribute('aTextureCoord', this.uvBuffer) + .addIndex([0, 1, 2, 0, 2, 3]); + } + + if ( Geometry ) QuadUv.__proto__ = Geometry; + QuadUv.prototype = Object.create( Geometry && Geometry.prototype ); + QuadUv.prototype.constructor = QuadUv; + + /** + * Maps two Rectangle to the quad. + * + * @param {PIXI.Rectangle} targetTextureFrame - the first rectangle + * @param {PIXI.Rectangle} destinationFrame - the second rectangle + * @return {PIXI.Quad} Returns itself. + */ + QuadUv.prototype.map = function map (targetTextureFrame, destinationFrame) + { + var x = 0; // destinationFrame.x / targetTextureFrame.width; + var y = 0; // destinationFrame.y / targetTextureFrame.height; + + this.uvs[0] = x; + this.uvs[1] = y; + + this.uvs[2] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[3] = y; + + this.uvs[4] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[5] = y + (destinationFrame.height / targetTextureFrame.height); + + this.uvs[6] = x; + this.uvs[7] = y + (destinationFrame.height / targetTextureFrame.height); + + x = destinationFrame.x; + y = destinationFrame.y; + + this.vertices[0] = x; + this.vertices[1] = y; + + this.vertices[2] = x + destinationFrame.width; + this.vertices[3] = y; + + this.vertices[4] = x + destinationFrame.width; + this.vertices[5] = y + destinationFrame.height; + + this.vertices[6] = x; + this.vertices[7] = y + destinationFrame.height; + + this.invalidate(); + + return this; + }; + + /** + * legacy upload method, just marks buffers dirty + * @returns {PIXI.QuadUv} Returns itself. + */ + QuadUv.prototype.invalidate = function invalidate () + { + this.vertexBuffer._updateID++; + this.uvBuffer._updateID++; + + return this; + }; + + return QuadUv; +}(Geometry)); + +var UID$2 = 0; + +/** + * Uniform group holds uniform map and some ID's for work + * + * @class + * @memberof PIXI + */ +var UniformGroup = function UniformGroup(uniforms, _static) +{ + /** + * uniform values + * @member {object} + * @readonly + */ + this.uniforms = uniforms; + + /** + * Its a group and not a single uniforms + * @member {boolean} + * @readonly + * @default true + */ + this.group = true; + + // lets generate this when the shader ? + this.syncUniforms = {}; + + /** + * dirty version + * @protected + * @member {number} + */ + this.dirtyId = 0; + + /** + * unique id + * @protected + * @member {number} + */ + this.id = UID$2++; + + /** + * Uniforms wont be changed after creation + * @member {boolean} + */ + this.static = !!_static; +}; + +UniformGroup.prototype.update = function update () +{ + this.dirtyId++; +}; + +UniformGroup.prototype.add = function add (name, uniforms, _static) +{ + this.uniforms[name] = new UniformGroup(uniforms, _static); +}; + +UniformGroup.from = function from (uniforms, _static) +{ + return new UniformGroup(uniforms, _static); +}; + +/** + * System plugin to the renderer to manage filter states. + * + * @class + * @private + */ +var FilterState = function FilterState() +{ + this.renderTexture = null; + + /** + * Target of the filters + * We store for case when custom filter wants to know the element it was applied on + * @member {PIXI.DisplayObject} + * @private + */ + this.target = null; + + /** + * Compatibility with PixiJS v4 filters + * @member {boolean} + * @default false + * @private + */ + this.legacy = false; + + /** + * Resolution of filters + * @member {number} + * @default 1 + * @private + */ + this.resolution = 1; + + // next three fields are created only for root + // re-assigned for everything else + + /** + * Source frame + * @member {PIXI.Rectangle} + * @private + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @private + */ + this.destinationFrame = new Rectangle(); + + /** + * Collection of filters + * @member {PIXI.Filter[]} + * @private + */ + this.filters = []; +}; + +/** + * clears the state + * @private + */ +FilterState.prototype.clear = function clear () +{ + this.target = null; + this.filters = null; + this.renderTexture = null; +}; + +/** + * System plugin to the renderer to manage the filters. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var FilterSystem = /*@__PURE__*/(function (System) { + function FilterSystem(renderer) + { + System.call(this, renderer); + + /** + * List of filters for the FilterSystem + * @member {Object[]} + * @readonly + */ + this.defaultFilterStack = [{}]; + + /** + * stores a bunch of PO2 textures used for filtering + * @member {Object} + */ + this.texturePool = new RenderTexturePool(); + + this.texturePool.setScreenSize(renderer.view); + + /** + * a pool for storing filter states, save us creating new ones each tick + * @member {Object[]} + */ + this.statePool = []; + + /** + * A very simple geometry used when drawing a filter effect to the screen + * @member {PIXI.Quad} + */ + this.quad = new Quad(); + + /** + * Quad UVs + * @member {PIXI.QuadUv} + */ + this.quadUv = new QuadUv(); + + /** + * Temporary rect for maths + * @type {PIXI.Rectangle} + */ + this.tempRect = new Rectangle(); + + /** + * Active state + * @member {object} + */ + this.activeState = {}; + + /** + * This uniform group is attached to filter uniforms when used + * @member {PIXI.UniformGroup} + * @property {PIXI.Rectangle} outputFrame + * @property {Float32Array} inputSize + * @property {Float32Array} inputPixel + * @property {Float32Array} inputClamp + * @property {Number} resolution + * @property {Float32Array} filterArea + * @property {Fload32Array} filterClamp + */ + this.globalUniforms = new UniformGroup({ + outputFrame: this.tempRect, + inputSize: new Float32Array(4), + inputPixel: new Float32Array(4), + inputClamp: new Float32Array(4), + resolution: 1, + + // legacy variables + filterArea: new Float32Array(4), + filterClamp: new Float32Array(4), + }, true); + + this._pixelsWidth = renderer.view.width; + this._pixelsHeight = renderer.view.height; + } + + if ( System ) FilterSystem.__proto__ = System; + FilterSystem.prototype = Object.create( System && System.prototype ); + FilterSystem.prototype.constructor = FilterSystem; + + /** + * Adds a new filter to the System. + * + * @param {PIXI.DisplayObject} target - The target of the filter to render. + * @param {PIXI.Filter[]} filters - The filters to apply. + */ + FilterSystem.prototype.push = function push (target, filters) + { + var renderer = this.renderer; + var filterStack = this.defaultFilterStack; + var state = this.statePool.pop() || new FilterState(); + + var resolution = filters[0].resolution; + var padding = filters[0].padding; + var autoFit = filters[0].autoFit; + var legacy = filters[0].legacy; + + for (var i = 1; i < filters.length; i++) + { + var filter = filters[i]; + + // lets use the lowest resolution.. + resolution = Math.min(resolution, filter.resolution); + // and the largest amount of padding! + padding = Math.max(padding, filter.padding); + // only auto fit if all filters are autofit + autoFit = autoFit || filter.autoFit; + + legacy = legacy || filter.legacy; + } + + if (filterStack.length === 1) + { + this.defaultFilterStack[0].renderTexture = renderer.renderTexture.current; + } + + filterStack.push(state); + + state.resolution = resolution; + + state.legacy = legacy; + + state.target = target; + + state.sourceFrame.copyFrom(target.filterArea || target.getBounds(true)); + + state.sourceFrame.pad(padding); + if (autoFit) + { + state.sourceFrame.fit(this.renderer.renderTexture.sourceFrame); + } + + // round to whole number based on resolution + state.sourceFrame.ceil(resolution); + + state.renderTexture = this.getOptimalFilterTexture(state.sourceFrame.width, state.sourceFrame.height, resolution); + state.filters = filters; + + state.destinationFrame.width = state.renderTexture.width; + state.destinationFrame.height = state.renderTexture.height; + + state.renderTexture.filterFrame = state.sourceFrame; + + renderer.renderTexture.bind(state.renderTexture, state.sourceFrame);// /, state.destinationFrame); + renderer.renderTexture.clear(); + }; + + /** + * Pops off the filter and applies it. + * + */ + FilterSystem.prototype.pop = function pop () + { + var filterStack = this.defaultFilterStack; + var state = filterStack.pop(); + var filters = state.filters; + + this.activeState = state; + + var globalUniforms = this.globalUniforms.uniforms; + + globalUniforms.outputFrame = state.sourceFrame; + globalUniforms.resolution = state.resolution; + + var inputSize = globalUniforms.inputSize; + var inputPixel = globalUniforms.inputPixel; + var inputClamp = globalUniforms.inputClamp; + + inputSize[0] = state.destinationFrame.width; + inputSize[1] = state.destinationFrame.height; + inputSize[2] = 1.0 / inputSize[0]; + inputSize[3] = 1.0 / inputSize[1]; + + inputPixel[0] = inputSize[0] * state.resolution; + inputPixel[1] = inputSize[1] * state.resolution; + inputPixel[2] = 1.0 / inputPixel[0]; + inputPixel[3] = 1.0 / inputPixel[1]; + + inputClamp[0] = 0.5 * inputPixel[2]; + inputClamp[1] = 0.5 * inputPixel[3]; + inputClamp[2] = (state.sourceFrame.width * inputSize[2]) - (0.5 * inputPixel[2]); + inputClamp[3] = (state.sourceFrame.height * inputSize[3]) - (0.5 * inputPixel[3]); + + // only update the rect if its legacy.. + if (state.legacy) + { + var filterArea = globalUniforms.filterArea; + + filterArea[0] = state.destinationFrame.width; + filterArea[1] = state.destinationFrame.height; + filterArea[2] = state.sourceFrame.x; + filterArea[3] = state.sourceFrame.y; + + globalUniforms.filterClamp = globalUniforms.inputClamp; + } + + this.globalUniforms.update(); + + var lastState = filterStack[filterStack.length - 1]; + + if (filters.length === 1) + { + filters[0].apply(this, state.renderTexture, lastState.renderTexture, false, state); + + this.returnFilterTexture(state.renderTexture); + } + else + { + var flip = state.renderTexture; + var flop = this.getOptimalFilterTexture( + flip.width, + flip.height, + state.resolution + ); + + flop.filterFrame = flip.filterFrame; + + var i = 0; + + for (i = 0; i < filters.length - 1; ++i) + { + filters[i].apply(this, flip, flop, true, state); + + var t = flip; + + flip = flop; + flop = t; + } + + filters[i].apply(this, flip, lastState.renderTexture, false, state); + + this.returnFilterTexture(flip); + this.returnFilterTexture(flop); + } + + state.clear(); + this.statePool.push(state); + }; + + /** + * Draws a filter. + * + * @param {PIXI.Filter} filter - The filter to draw. + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + */ + FilterSystem.prototype.applyFilter = function applyFilter (filter, input, output, clear) + { + var renderer = this.renderer; + + renderer.renderTexture.bind(output, output ? output.filterFrame : null); + + if (clear) + { + // gl.disable(gl.SCISSOR_TEST); + renderer.renderTexture.clear(); + // gl.enable(gl.SCISSOR_TEST); + } + + // set the uniforms.. + filter.uniforms.uSampler = input; + filter.uniforms.filterGlobals = this.globalUniforms; + + // TODO make it so that the order of this does not matter.. + // because it does at the moment cos of global uniforms. + // they need to get resynced + + renderer.state.set(filter.state); + renderer.shader.bind(filter); + + if (filter.legacy) + { + this.quadUv.map(input._frame, input.filterFrame); + + renderer.geometry.bind(this.quadUv); + renderer.geometry.draw(DRAW_MODES.TRIANGLES); + } + else + { + renderer.geometry.bind(this.quad); + renderer.geometry.draw(DRAW_MODES.TRIANGLE_STRIP); + } + }; + + /** + * Multiply _input normalized coordinates_ to this matrix to get _sprite texture normalized coordinates_. + * + * Use `outputMatrix * vTextureCoord` in the shader. + * + * @param {PIXI.Matrix} outputMatrix - The matrix to output to. + * @param {PIXI.Sprite} sprite - The sprite to map to. + * @return {PIXI.Matrix} The mapped matrix. + */ + FilterSystem.prototype.calculateSpriteMatrix = function calculateSpriteMatrix (outputMatrix, sprite) + { + var ref = this.activeState; + var sourceFrame = ref.sourceFrame; + var destinationFrame = ref.destinationFrame; + var ref$1 = sprite._texture; + var orig = ref$1.orig; + var mappedMatrix = outputMatrix.set(destinationFrame.width, 0, 0, + destinationFrame.height, sourceFrame.x, sourceFrame.y); + var worldTransform = sprite.worldTransform.copyTo(Matrix.TEMP_MATRIX); + + worldTransform.invert(); + mappedMatrix.prepend(worldTransform); + mappedMatrix.scale(1.0 / orig.width, 1.0 / orig.height); + mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y); + + return mappedMatrix; + }; + + /** + * Destroys this Filter System. + */ + FilterSystem.prototype.destroy = function destroy () + { + // Those textures has to be destroyed by RenderTextureSystem or FramebufferSystem + this.texturePool.clear(false); + }; + + /** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ + FilterSystem.prototype.getOptimalFilterTexture = function getOptimalFilterTexture (minWidth, minHeight, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + return this.texturePool.getOptimalTexture(minWidth, minHeight, resolution); + }; + + /** + * Gets extra render texture to use inside current filter + * To be compliant with older filters, you can use params in any order + * + * @param {PIXI.RenderTexture} [input] renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * @returns {PIXI.RenderTexture} + */ + FilterSystem.prototype.getFilterTexture = function getFilterTexture (input, resolution) + { + if (typeof input === 'number') + { + var swap = input; + + input = resolution; + resolution = swap; + } + + input = input || this.activeState.renderTexture; + + var filterTexture = this.texturePool.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; + }; + + /** + * Frees a render texture back into the pool. + * + * @param {PIXI.RenderTexture} renderTexture - The renderTarget to free + */ + FilterSystem.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) + { + this.texturePool.returnTexture(renderTexture); + }; + + /** + * Empties the texture pool. + */ + FilterSystem.prototype.emptyPool = function emptyPool () + { + this.texturePool.clear(true); + }; + + /** + * calls `texturePool.resize()`, affects fullScreen renderTextures + */ + FilterSystem.prototype.resize = function resize () + { + this.texturePool.setScreenSize(this.renderer.view); + }; + + return FilterSystem; +}(System)); + +/** + * Base for a common object renderer that can be used as a + * system renderer plugin. + * + * @class + * @extends PIXI.System + * @memberof PIXI + */ +var ObjectRenderer = function ObjectRenderer(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Stub method that should be used to empty the current + * batch by rendering objects now. + */ +ObjectRenderer.prototype.flush = function flush () +{ + // flush! +}; + +/** + * Generic destruction method that frees all resources. This + * should be called by subclasses. + */ +ObjectRenderer.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Stub method that initializes any state required before + * rendering starts. It is different from the `prerender` + * signal, which occurs every frame, in that it is called + * whenever an object requests _this_ renderer specifically. + */ +ObjectRenderer.prototype.start = function start () +{ + // set the shader.. +}; + +/** + * Stops the renderer. It should free up any state and + * become dormant. + */ +ObjectRenderer.prototype.stop = function stop () +{ + this.flush(); +}; + +/** + * Keeps the object to render. It doesn't have to be + * rendered immediately. + * + * @param {PIXI.DisplayObject} object - The object to render. + */ +ObjectRenderer.prototype.render = function render (object) // eslint-disable-line no-unused-vars +{ + // render the object +}; + +/** + * System plugin to the renderer to manage batching. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var BatchSystem = /*@__PURE__*/(function (System) { + function BatchSystem(renderer) + { + System.call(this, renderer); + + /** + * An empty renderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.emptyRenderer = new ObjectRenderer(renderer); + + /** + * The currently active ObjectRenderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.currentRenderer = this.emptyRenderer; + } + + if ( System ) BatchSystem.__proto__ = System; + BatchSystem.prototype = Object.create( System && System.prototype ); + BatchSystem.prototype.constructor = BatchSystem; + + /** + * Changes the current renderer to the one given in parameter + * + * @param {PIXI.ObjectRenderer} objectRenderer - The object renderer to use. + */ + BatchSystem.prototype.setObjectRenderer = function setObjectRenderer (objectRenderer) + { + if (this.currentRenderer === objectRenderer) + { + return; + } + + this.currentRenderer.stop(); + this.currentRenderer = objectRenderer; + + this.currentRenderer.start(); + }; + + /** + * This should be called if you wish to do some custom rendering + * It will basically render anything that may be batched up such as sprites + */ + BatchSystem.prototype.flush = function flush () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + /** + * Reset the system to an empty renderer + */ + BatchSystem.prototype.reset = function reset () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + return BatchSystem; +}(System)); + +/** + * The maximum support for using WebGL. If a device does not + * support WebGL version, for instance WebGL 2, it will still + * attempt to fallback support to WebGL 1. If you want to + * explicitly remove feature support to target a more stable + * baseline, prefer a lower environment. + * + * Due to {@link https://bugs.chromium.org/p/chromium/issues/detail?id=934823|bug in chromium} + * we disable webgl2 by default for all non-apple mobile devices. + * + * @static + * @name PREFER_ENV + * @memberof PIXI.settings + * @type {number} + * @default PIXI.ENV.WEBGL2 + */ +settings.PREFER_ENV = isMobile.any ? ENV.WEBGL : ENV.WEBGL2; + +var CONTEXT_UID = 0; + +/** + * System plugin to the renderer to manage the context. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var ContextSystem = /*@__PURE__*/(function (System) { + function ContextSystem(renderer) + { + System.call(this, renderer); + + /** + * Either 1 or 2 to reflect the WebGL version being used + * @member {number} + * @readonly + */ + this.webGLVersion = 1; + + /** + * Extensions being used + * @member {object} + * @readonly + * @property {WEBGL_draw_buffers} drawBuffers - WebGL v1 extension + * @property {WEBGL_depth_texture} depthTexture - WebGL v1 extension + * @property {OES_texture_float} floatTexture - WebGL v1 extension + * @property {WEBGL_lose_context} loseContext - WebGL v1 extension + * @property {OES_vertex_array_object} vertexArrayObject - WebGL v1 extension + * @property {EXT_texture_filter_anisotropic} anisotropicFiltering - WebGL v1 and v2 extension + */ + this.extensions = {}; + + // Bind functions + this.handleContextLost = this.handleContextLost.bind(this); + this.handleContextRestored = this.handleContextRestored.bind(this); + + renderer.view.addEventListener('webglcontextlost', this.handleContextLost, false); + renderer.view.addEventListener('webglcontextrestored', this.handleContextRestored, false); + } + + if ( System ) ContextSystem.__proto__ = System; + ContextSystem.prototype = Object.create( System && System.prototype ); + ContextSystem.prototype.constructor = ContextSystem; + + var prototypeAccessors = { isLost: { configurable: true } }; + + /** + * `true` if the context is lost + * @member {boolean} + * @readonly + */ + prototypeAccessors.isLost.get = function () + { + return (!this.gl || this.gl.isContextLost()); + }; + + /** + * Handle the context change event + * @param {WebGLRenderingContext} gl new webgl context + */ + ContextSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + + // restore a context if it was previously lost + if (gl.isContextLost() && gl.getExtension('WEBGL_lose_context')) + { + gl.getExtension('WEBGL_lose_context').restoreContext(); + } + }; + + /** + * Initialize the context + * + * @protected + * @param {WebGLRenderingContext} gl - WebGL context + */ + ContextSystem.prototype.initFromContext = function initFromContext (gl) + { + this.gl = gl; + this.validateContext(gl); + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + this.renderer.runners.contextChange.run(gl); + }; + + /** + * Initialize from context options + * + * @protected + * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext + * @param {object} options - context attributes + */ + ContextSystem.prototype.initFromOptions = function initFromOptions (options) + { + var gl = this.createContext(this.renderer.view, options); + + this.initFromContext(gl); + }; + + /** + * Helper class to create a WebGL Context + * + * @param canvas {HTMLCanvasElement} the canvas element that we will get the context from + * @param options {object} An options object that gets passed in to the canvas element containing the context attributes + * @see https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement/getContext + * @return {WebGLRenderingContext} the WebGL context + */ + ContextSystem.prototype.createContext = function createContext (canvas, options) + { + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', options); + } + + if (gl) + { + this.webGLVersion = 2; + } + else + { + this.webGLVersion = 1; + + gl = canvas.getContext('webgl', options) + || canvas.getContext('experimental-webgl', options); + + if (!gl) + { + // fail, not able to get a context + throw new Error('This browser does not support WebGL. Try using the canvas renderer'); + } + } + + this.gl = gl; + + this.getExtensions(); + + return gl; + }; + + /** + * Auto-populate the extensions + * + * @protected + */ + ContextSystem.prototype.getExtensions = function getExtensions () + { + // time to set up default extensions that Pixi uses. + var ref = this; + var gl = ref.gl; + + if (this.webGLVersion === 1) + { + Object.assign(this.extensions, { + drawBuffers: gl.getExtension('WEBGL_draw_buffers'), + depthTexture: gl.getExtension('WEBKIT_WEBGL_depth_texture'), + loseContext: gl.getExtension('WEBGL_lose_context'), + vertexArrayObject: gl.getExtension('OES_vertex_array_object') + || gl.getExtension('MOZ_OES_vertex_array_object') + || gl.getExtension('WEBKIT_OES_vertex_array_object'), + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + uint32ElementIndex: gl.getExtension('OES_element_index_uint'), + // Floats and half-floats + floatTexture: gl.getExtension('OES_texture_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + textureHalfFloat: gl.getExtension('OES_texture_half_float'), + textureHalfFloatLinear: gl.getExtension('OES_texture_half_float_linear'), + }); + } + else if (this.webGLVersion === 2) + { + Object.assign(this.extensions, { + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + // Floats and half-floats + colorBufferFloat: gl.getExtension('EXT_color_buffer_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + }); + } + }; + + /** + * Handles a lost webgl context + * + * @protected + * @param {WebGLContextEvent} event - The context lost event. + */ + ContextSystem.prototype.handleContextLost = function handleContextLost (event) + { + event.preventDefault(); + }; + + /** + * Handles a restored webgl context + * + * @protected + */ + ContextSystem.prototype.handleContextRestored = function handleContextRestored () + { + this.renderer.runners.contextChange.run(this.gl); + }; + + ContextSystem.prototype.destroy = function destroy () + { + var view = this.renderer.view; + + // remove listeners + view.removeEventListener('webglcontextlost', this.handleContextLost); + view.removeEventListener('webglcontextrestored', this.handleContextRestored); + + this.gl.useProgram(null); + + if (this.extensions.loseContext) + { + this.extensions.loseContext.loseContext(); + } + }; + + /** + * Handle the post-render runner event + * + * @protected + */ + ContextSystem.prototype.postrender = function postrender () + { + this.gl.flush(); + }; + + /** + * Validate context + * + * @protected + * @param {WebGLRenderingContext} gl - Render context + */ + ContextSystem.prototype.validateContext = function validateContext (gl) + { + var attributes = gl.getContextAttributes(); + + // this is going to be fairly simple for now.. but at least we have room to grow! + if (!attributes.stencil) + { + /* eslint-disable max-len */ + + /* eslint-disable no-console */ + console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly'); + /* eslint-enable no-console */ + + /* eslint-enable max-len */ + } + }; + + Object.defineProperties( ContextSystem.prototype, prototypeAccessors ); + + return ContextSystem; +}(System)); + +/** + * System plugin to the renderer to manage framebuffers. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var FramebufferSystem = /*@__PURE__*/(function (System) { + function FramebufferSystem(renderer) + { + System.call(this, renderer); + + /** + * A list of managed framebuffers + * @member {PIXI.Framebuffer[]} + * @readonly + */ + this.managedFramebuffers = []; + + /** + * Framebuffer value that shows that we don't know what is bound + * @member {Framebuffer} + * @readonly + */ + this.unknownFramebuffer = new Framebuffer(10, 10); + } + + if ( System ) FramebufferSystem.__proto__ = System; + FramebufferSystem.prototype = Object.create( System && System.prototype ); + FramebufferSystem.prototype.constructor = FramebufferSystem; + + var prototypeAccessors = { size: { configurable: true } }; + + /** + * Sets up the renderer context and necessary buffers. + */ + FramebufferSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + this.hasMRT = true; + this.writeDepthTexture = true; + + this.disposeAll(true); + + // webgl2 + if (this.renderer.context.webGLVersion === 1) + { + // webgl 1! + var nativeDrawBuffersExtension = this.renderer.context.extensions.drawBuffers; + var nativeDepthTextureExtension = this.renderer.context.extensions.depthTexture; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeDrawBuffersExtension = null; + nativeDepthTextureExtension = null; + } + + if (nativeDrawBuffersExtension) + { + gl.drawBuffers = function (activeTextures) { return nativeDrawBuffersExtension.drawBuffersWEBGL(activeTextures); }; + } + else + { + this.hasMRT = false; + gl.drawBuffers = function () { + // empty + }; + } + + if (!nativeDepthTextureExtension) + { + this.writeDepthTexture = false; + } + } + }; + + /** + * Bind a framebuffer + * + * @param {PIXI.Framebuffer} framebuffer + * @param {PIXI.Rectangle} [frame] frame, default is framebuffer size + */ + FramebufferSystem.prototype.bind = function bind (framebuffer, frame) + { + var ref = this; + var gl = ref.gl; + + if (framebuffer) + { + // TODO caching layer! + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID] || this.initFramebuffer(framebuffer); + + if (this.current !== framebuffer) + { + this.current = framebuffer; + gl.bindFramebuffer(gl.FRAMEBUFFER, fbo.framebuffer); + } + // make sure all textures are unbound.. + + // now check for updates... + if (fbo.dirtyId !== framebuffer.dirtyId) + { + fbo.dirtyId = framebuffer.dirtyId; + + if (fbo.dirtyFormat !== framebuffer.dirtyFormat) + { + fbo.dirtyFormat = framebuffer.dirtyFormat; + this.updateFramebuffer(framebuffer); + } + else if (fbo.dirtySize !== framebuffer.dirtySize) + { + fbo.dirtySize = framebuffer.dirtySize; + this.resizeFramebuffer(framebuffer); + } + } + + for (var i = 0; i < framebuffer.colorTextures.length; i++) + { + if (framebuffer.colorTextures[i].texturePart) + { + this.renderer.texture.unbind(framebuffer.colorTextures[i].texture); + } + else + { + this.renderer.texture.unbind(framebuffer.colorTextures[i]); + } + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.unbind(framebuffer.depthTexture); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, framebuffer.width, framebuffer.height); + } + } + else + { + if (this.current) + { + this.current = null; + gl.bindFramebuffer(gl.FRAMEBUFFER, null); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, this.renderer.width, this.renderer.height); + } + } + }; + + /** + * Set the WebGLRenderingContext's viewport. + * + * @param {Number} x - X position of viewport + * @param {Number} y - Y position of viewport + * @param {Number} width - Width of viewport + * @param {Number} height - Height of viewport + */ + FramebufferSystem.prototype.setViewport = function setViewport (x, y, width, height) + { + var v = this.viewport; + + if (v.width !== width || v.height !== height || v.x !== x || v.y !== y) + { + v.x = x; + v.y = y; + v.width = width; + v.height = height; + + this.gl.viewport(x, y, width, height); + } + }; + + /** + * Get the size of the current width and height. Returns object with `width` and `height` values. + * + * @member {object} + * @readonly + */ + prototypeAccessors.size.get = function () + { + if (this.current) + { + // TODO store temp + return { x: 0, y: 0, width: this.current.width, height: this.current.height }; + } + + return { x: 0, y: 0, width: this.renderer.width, height: this.renderer.height }; + }; + + /** + * Clear the color of the context + * + * @param {Number} r - Red value from 0 to 1 + * @param {Number} g - Green value from 0 to 1 + * @param {Number} b - Blue value from 0 to 1 + * @param {Number} a - Alpha value from 0 to 1 + */ + FramebufferSystem.prototype.clear = function clear (r, g, b, a) + { + var ref = this; + var gl = ref.gl; + + // TODO clear color can be set only one right? + gl.clearColor(r, g, b, a); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + }; + + /** + * Initialize framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.initFramebuffer = function initFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + // TODO - make this a class? + var fbo = { + framebuffer: gl.createFramebuffer(), + stencil: null, + dirtyId: 0, + dirtyFormat: 0, + dirtySize: 0, + }; + + framebuffer.glFramebuffers[this.CONTEXT_UID] = fbo; + + this.managedFramebuffers.push(framebuffer); + framebuffer.disposeRunner.add(this); + + return fbo; + }; + + /** + * Resize the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.resizeFramebuffer = function resizeFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (fbo.stencil) + { + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + } + + var colorTextures = framebuffer.colorTextures; + + for (var i = 0; i < colorTextures.length; i++) + { + this.renderer.texture.bind(colorTextures[i], 0); + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.bind(framebuffer.depthTexture, 0); + } + }; + + /** + * Update the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.updateFramebuffer = function updateFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + // bind the color texture + var colorTextures = framebuffer.colorTextures; + + var count = colorTextures.length; + + if (!gl.drawBuffers) + { + count = Math.min(count, 1); + } + + var activeTextures = []; + + for (var i = 0; i < count; i++) + { + var texture = framebuffer.colorTextures[i]; + + if (texture.texturePart) + { + this.renderer.texture.bind(texture.texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_CUBE_MAP_NEGATIVE_X + texture.side, + texture.texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + else + { + this.renderer.texture.bind(texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_2D, + texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + + activeTextures.push(gl.COLOR_ATTACHMENT0 + i); + } + + if (activeTextures.length > 1) + { + gl.drawBuffers(activeTextures); + } + + if (framebuffer.depthTexture) + { + var writeDepthTexture = this.writeDepthTexture; + + if (writeDepthTexture) + { + var depthTexture = framebuffer.depthTexture; + + this.renderer.texture.bind(depthTexture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.DEPTH_ATTACHMENT, + gl.TEXTURE_2D, + depthTexture._glTextures[this.CONTEXT_UID].texture, + 0); + } + } + + if (!fbo.stencil && (framebuffer.stencil || framebuffer.depth)) + { + fbo.stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + // TODO.. this is depth AND stencil? + if (!framebuffer.depthTexture) + { // you can't have both, so one should take priority if enabled + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, fbo.stencil); + } + } + }; + + /** + * Disposes framebuffer + * @param {PIXI.Framebuffer} framebuffer framebuffer that has to be disposed of + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeFramebuffer = function disposeFramebuffer (framebuffer, contextLost) + { + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + var gl = this.gl; + + if (!fbo) + { + return; + } + + delete framebuffer.glFramebuffers[this.CONTEXT_UID]; + + var index = this.managedFramebuffers.indexOf(framebuffer); + + if (index >= 0) + { + this.managedFramebuffers.splice(index, 1); + } + + framebuffer.disposeRunner.remove(this); + + if (!contextLost) + { + gl.deleteFramebuffer(fbo.framebuffer); + if (fbo.stencil) + { + gl.deleteRenderbuffer(fbo.stencil); + } + } + }; + + /** + * Disposes all framebuffers, but not textures bound to them + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeAll = function disposeAll (contextLost) + { + var list = this.managedFramebuffers; + + this.managedFramebuffers = []; + + for (var i = 0; i < list.length; i++) + { + this.disposeFramebuffer(list[i], contextLost); + } + }; + + /** + * Forcing creation of stencil buffer for current framebuffer, if it wasn't done before. + * Used by MaskSystem, when its time to use stencil mask for Graphics element. + * + * Its an alternative for public lazy `framebuffer.enableStencil`, in case we need stencil without rebind. + * + * @private + */ + FramebufferSystem.prototype.forceStencil = function forceStencil () + { + var framebuffer = this.current; + + if (!framebuffer) + { + return; + } + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (!fbo || fbo.stencil) + { + return; + } + framebuffer.enableStencil(); + + var w = framebuffer.width; + var h = framebuffer.height; + var gl = this.gl; + var stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, w, h); + + fbo.stencil = stencil; + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, stencil); + }; + + /** + * resets framebuffer stored state, binds screen framebuffer + * + * should be called before renderTexture reset() + */ + FramebufferSystem.prototype.reset = function reset () + { + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + }; + + Object.defineProperties( FramebufferSystem.prototype, prototypeAccessors ); + + return FramebufferSystem; +}(System)); + +var GLBuffer = function GLBuffer(buffer) +{ + this.buffer = buffer; + this.updateID = -1; + this.byteLength = -1; + this.refCount = 0; +}; + +var byteSizeMap$1 = { 5126: 4, 5123: 2, 5121: 1 }; + +/** + * System plugin to the renderer to manage geometry. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var GeometrySystem = /*@__PURE__*/(function (System) { + function GeometrySystem(renderer) + { + System.call(this, renderer); + + this._activeGeometry = null; + this._activeVao = null; + + /** + * `true` if we has `*_vertex_array_object` extension + * @member {boolean} + * @readonly + */ + this.hasVao = true; + + /** + * `true` if has `ANGLE_instanced_arrays` extension + * @member {boolean} + * @readonly + */ + this.hasInstance = true; + + /** + * `true` if support `gl.UNSIGNED_INT` in `gl.drawElements` or `gl.drawElementsInstanced` + * @member {boolean} + * @readonly + */ + this.canUseUInt32ElementIndex = false; + + /** + * A cache of currently bound buffer, + * contains only two members with keys ARRAY_BUFFER and ELEMENT_ARRAY_BUFFER + * @member {Object.} + * @readonly + */ + this.boundBuffers = {}; + + /** + * Cache for all geometries by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedGeometries = {}; + + /** + * Cache for all buffers by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedBuffers = {}; + } + + if ( System ) GeometrySystem.__proto__ = System; + GeometrySystem.prototype = Object.create( System && System.prototype ); + GeometrySystem.prototype.constructor = GeometrySystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + GeometrySystem.prototype.contextChange = function contextChange () + { + this.disposeAll(true); + + var gl = this.gl = this.renderer.gl; + var context = this.renderer.context; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + // webgl2 + if (!gl.createVertexArray) + { + // webgl 1! + var nativeVaoExtension = this.renderer.context.extensions.vertexArrayObject; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeVaoExtension = null; + } + + if (nativeVaoExtension) + { + gl.createVertexArray = function () { return nativeVaoExtension.createVertexArrayOES(); }; + + gl.bindVertexArray = function (vao) { return nativeVaoExtension.bindVertexArrayOES(vao); }; + + gl.deleteVertexArray = function (vao) { return nativeVaoExtension.deleteVertexArrayOES(vao); }; + } + else + { + this.hasVao = false; + gl.createVertexArray = function () { + // empty + }; + + gl.bindVertexArray = function () { + // empty + }; + + gl.deleteVertexArray = function () { + // empty + }; + } + } + + if (!gl.vertexAttribDivisor) + { + var instanceExt = gl.getExtension('ANGLE_instanced_arrays'); + + if (instanceExt) + { + gl.vertexAttribDivisor = function (a, b) { return instanceExt.vertexAttribDivisorANGLE(a, b); }; + + gl.drawElementsInstanced = function (a, b, c, d, e) { return instanceExt.drawElementsInstancedANGLE(a, b, c, d, e); }; + + gl.drawArraysInstanced = function (a, b, c, d) { return instanceExt.drawArraysInstancedANGLE(a, b, c, d); }; + } + else + { + this.hasInstance = false; + } + } + + this.canUseUInt32ElementIndex = context.webGLVersion === 2 || !!context.extensions.uint32ElementIndex; + }; + + /** + * Binds geometry so that is can be drawn. Creating a Vao if required + * + * @param {PIXI.Geometry} geometry instance of geometry to bind + * @param {PIXI.Shader} [shader] instance of shader to use vao for + */ + GeometrySystem.prototype.bind = function bind (geometry, shader) + { + shader = shader || this.renderer.shader.shader; + + var ref = this; + var gl = ref.gl; + + // not sure the best way to address this.. + // currently different shaders require different VAOs for the same geometry + // Still mulling over the best way to solve this one.. + // will likely need to modify the shader attribute locations at run time! + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + if (!vaos) + { + this.managedGeometries[geometry.id] = geometry; + geometry.disposeRunner.add(this); + geometry.glVertexArrayObjects[this.CONTEXT_UID] = vaos = {}; + } + + var vao = vaos[shader.program.id] || this.initGeometryVao(geometry, shader.program); + + this._activeGeometry = geometry; + + if (this._activeVao !== vao) + { + this._activeVao = vao; + + if (this.hasVao) + { + gl.bindVertexArray(vao); + } + else + { + this.activateVao(geometry, shader.program); + } + } + + // TODO - optimise later! + // don't need to loop through if nothing changed! + // maybe look to add an 'autoupdate' to geometry? + this.updateBuffers(); + }; + + /** + * Reset and unbind any active VAO and geometry + */ + GeometrySystem.prototype.reset = function reset () + { + this.unbind(); + }; + + /** + * Update buffers + * @protected + */ + GeometrySystem.prototype.updateBuffers = function updateBuffers () + { + var geometry = this._activeGeometry; + var ref = this; + var gl = ref.gl; + + for (var i = 0; i < geometry.buffers.length; i++) + { + var buffer = geometry.buffers[i]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + + if (buffer._updateID !== glBuffer.updateID) + { + glBuffer.updateID = buffer._updateID; + + // TODO can cache this on buffer! maybe added a getter / setter? + var type = buffer.index ? gl.ELEMENT_ARRAY_BUFFER : gl.ARRAY_BUFFER; + + // TODO this could change if the VAO changes... + // need to come up with a better way to cache.. + // if (this.boundBuffers[type] !== glBuffer) + // { + // this.boundBuffers[type] = glBuffer; + gl.bindBuffer(type, glBuffer.buffer); + // } + + this._boundBuffer = glBuffer; + + if (glBuffer.byteLength >= buffer.data.byteLength) + { + // offset is always zero for now! + gl.bufferSubData(type, 0, buffer.data); + } + else + { + var drawType = buffer.static ? gl.STATIC_DRAW : gl.DYNAMIC_DRAW; + + glBuffer.byteLength = buffer.data.byteLength; + gl.bufferData(type, buffer.data, drawType); + } + } + } + }; + + /** + * Check compability between a geometry and a program + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Program instance + */ + GeometrySystem.prototype.checkCompatibility = function checkCompatibility (geometry, program) + { + // geometry must have at least all the attributes that the shader requires. + var geometryAttributes = geometry.attributes; + var shaderAttributes = program.attributeData; + + for (var j in shaderAttributes) + { + if (!geometryAttributes[j]) + { + throw new Error(("shader and geometry incompatible, geometry missing the \"" + j + "\" attribute")); + } + } + }; + + /** + * Takes a geometry and program and generates a unique signature for them. + * + * @param {PIXI.Geometry} geometry to get signature from + * @param {PIXI.Program} program to test geometry against + * @returns {String} Unique signature of the geometry and program + * @protected + */ + GeometrySystem.prototype.getSignature = function getSignature (geometry, program) + { + var attribs = geometry.attributes; + var shaderAttributes = program.attributeData; + + var strings = ['g', geometry.id]; + + for (var i in attribs) + { + if (shaderAttributes[i]) + { + strings.push(i); + } + } + + return strings.join('-'); + }; + + /** + * Creates or gets Vao with the same structure as the geometry and stores it on the geometry. + * If vao is created, it is bound automatically. + * + * @protected + * @param {PIXI.Geometry} geometry - Instance of geometry to to generate Vao for + * @param {PIXI.Program} program - Instance of program + */ + GeometrySystem.prototype.initGeometryVao = function initGeometryVao (geometry, program) + { + this.checkCompatibility(geometry, program); + + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + + var signature = this.getSignature(geometry, program); + + var vaoObjectHash = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + var vao = vaoObjectHash[signature]; + + if (vao) + { + // this will give us easy access to the vao + vaoObjectHash[program.id] = vao; + + return vao; + } + + var buffers = geometry.buffers; + var attributes = geometry.attributes; + var tempStride = {}; + var tempStart = {}; + + for (var j in buffers) + { + tempStride[j] = 0; + tempStart[j] = 0; + } + + for (var j$1 in attributes) + { + if (!attributes[j$1].size && program.attributeData[j$1]) + { + attributes[j$1].size = program.attributeData[j$1].size; + } + else if (!attributes[j$1].size) + { + console.warn(("PIXI Geometry attribute '" + j$1 + "' size cannot be determined (likely the bound shader does not have the attribute)")); // eslint-disable-line + } + + tempStride[attributes[j$1].buffer] += attributes[j$1].size * byteSizeMap$1[attributes[j$1].type]; + } + + for (var j$2 in attributes) + { + var attribute = attributes[j$2]; + var attribSize = attribute.size; + + if (attribute.stride === undefined) + { + if (tempStride[attribute.buffer] === attribSize * byteSizeMap$1[attribute.type]) + { + attribute.stride = 0; + } + else + { + attribute.stride = tempStride[attribute.buffer]; + } + } + + if (attribute.start === undefined) + { + attribute.start = tempStart[attribute.buffer]; + + tempStart[attribute.buffer] += attribSize * byteSizeMap$1[attribute.type]; + } + } + + vao = gl.createVertexArray(); + + gl.bindVertexArray(vao); + + // first update - and create the buffers! + // only create a gl buffer if it actually gets + for (var i = 0; i < buffers.length; i++) + { + var buffer = buffers[i]; + + if (!buffer._glBuffers[CONTEXT_UID]) + { + buffer._glBuffers[CONTEXT_UID] = new GLBuffer(gl.createBuffer()); + this.managedBuffers[buffer.id] = buffer; + buffer.disposeRunner.add(this); + } + + buffer._glBuffers[CONTEXT_UID].refCount++; + } + + // TODO - maybe make this a data object? + // lets wait to see if we need to first! + + this.activateVao(geometry, program); + + this._activeVao = vao; + + // add it to the cache! + vaoObjectHash[program.id] = vao; + vaoObjectHash[signature] = vao; + + return vao; + }; + + /** + * Disposes buffer + * @param {PIXI.Buffer} buffer buffer with data + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeBuffer = function disposeBuffer (buffer, contextLost) + { + if (!this.managedBuffers[buffer.id]) + { + return; + } + + delete this.managedBuffers[buffer.id]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + var gl = this.gl; + + buffer.disposeRunner.remove(this); + + if (!glBuffer) + { + return; + } + + if (!contextLost) + { + gl.deleteBuffer(glBuffer.buffer); + } + + delete buffer._glBuffers[this.CONTEXT_UID]; + }; + + /** + * Disposes geometry + * @param {PIXI.Geometry} geometry Geometry with buffers. Only VAO will be disposed + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeGeometry = function disposeGeometry (geometry, contextLost) + { + if (!this.managedGeometries[geometry.id]) + { + return; + } + + delete this.managedGeometries[geometry.id]; + + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + var gl = this.gl; + var buffers = geometry.buffers; + + geometry.disposeRunner.remove(this); + + if (!vaos) + { + return; + } + + for (var i = 0; i < buffers.length; i++) + { + var buf = buffers[i]._glBuffers[this.CONTEXT_UID]; + + buf.refCount--; + if (buf.refCount === 0 && !contextLost) + { + this.disposeBuffer(buffers[i], contextLost); + } + } + + if (!contextLost) + { + for (var vaoId in vaos) + { + // delete only signatures, everything else are copies + if (vaoId[0] === 'g') + { + var vao = vaos[vaoId]; + + if (this._activeVao === vao) + { + this.unbind(); + } + gl.deleteVertexArray(vao); + } + } + } + + delete geometry.glVertexArrayObjects[this.CONTEXT_UID]; + }; + + /** + * dispose all WebGL resources of all managed geometries and buffers + * @param {boolean} [contextLost=false] If context was lost, we suppress `gl.delete` calls + */ + GeometrySystem.prototype.disposeAll = function disposeAll (contextLost) + { + var all = Object.keys(this.managedGeometries); + + for (var i = 0; i < all.length; i++) + { + this.disposeGeometry(this.managedGeometries[all[i]], contextLost); + } + all = Object.keys(this.managedBuffers); + for (var i$1 = 0; i$1 < all.length; i$1++) + { + this.disposeBuffer(this.managedBuffers[all[i$1]], contextLost); + } + }; + + /** + * Activate vertex array object + * + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Shader program instance + */ + GeometrySystem.prototype.activateVao = function activateVao (geometry, program) + { + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + var buffers = geometry.buffers; + var attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + // first update the index buffer if we have one.. + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, geometry.indexBuffer._glBuffers[CONTEXT_UID].buffer); + } + + var lastBuffer = null; + + // add a new one! + for (var j in attributes) + { + var attribute = attributes[j]; + var buffer = buffers[attribute.buffer]; + var glBuffer = buffer._glBuffers[CONTEXT_UID]; + + if (program.attributeData[j]) + { + if (lastBuffer !== glBuffer) + { + gl.bindBuffer(gl.ARRAY_BUFFER, glBuffer.buffer); + + lastBuffer = glBuffer; + } + + var location = program.attributeData[j].location; + + // TODO introduce state again + // we can optimise this for older devices that have no VAOs + gl.enableVertexAttribArray(location); + + gl.vertexAttribPointer(location, + attribute.size, + attribute.type || gl.FLOAT, + attribute.normalized, + attribute.stride, + attribute.start); + + if (attribute.instance) + { + // TODO calculate instance count based of this... + if (this.hasInstance) + { + gl.vertexAttribDivisor(location, 1); + } + else + { + throw new Error('geometry error, GPU Instancing is not supported on this device'); + } + } + } + } + }; + + /** + * Draw the geometry + * + * @param {Number} type - the type primitive to render + * @param {Number} [size] - the number of elements to be rendered + * @param {Number} [start] - Starting index + * @param {Number} [instanceCount] - the number of instances of the set of elements to execute + */ + GeometrySystem.prototype.draw = function draw (type, size, start, instanceCount) + { + var ref = this; + var gl = ref.gl; + var geometry = this._activeGeometry; + + // TODO.. this should not change so maybe cache the function? + + if (geometry.indexBuffer) + { + var byteSize = geometry.indexBuffer.data.BYTES_PER_ELEMENT; + var glType = byteSize === 2 ? gl.UNSIGNED_SHORT : gl.UNSIGNED_INT; + + if (byteSize === 2 || (byteSize === 4 && this.canUseUInt32ElementIndex)) + { + if (geometry.instanced) + { + /* eslint-disable max-len */ + gl.drawElementsInstanced(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize, instanceCount || 1); + /* eslint-enable max-len */ + } + else + { + /* eslint-disable max-len */ + gl.drawElements(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize); + /* eslint-enable max-len */ + } + } + else + { + console.warn('unsupported index buffer type: uint32'); + } + } + else if (geometry.instanced) + { + // TODO need a better way to calculate size.. + gl.drawArraysInstanced(type, start, size || geometry.getSize(), instanceCount || 1); + } + else + { + gl.drawArrays(type, start, size || geometry.getSize()); + } + + return this; + }; + + /** + * Unbind/reset everything + * @protected + */ + GeometrySystem.prototype.unbind = function unbind () + { + this.gl.bindVertexArray(null); + this._activeVao = null; + this._activeGeometry = null; + }; + + return GeometrySystem; +}(System)); + +/** + * @method compileProgram + * @private + * @memberof PIXI.glCore.shader + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @param fragmentSrc {string|string[]} The fragment shader source as an array of strings. + * @param attributeLocations {Object} An attribute location map that lets you manually set the attribute locations + * @return {WebGLProgram} the shader program + */ +function compileProgram(gl, vertexSrc, fragmentSrc, attributeLocations) +{ + var glVertShader = compileShader(gl, gl.VERTEX_SHADER, vertexSrc); + var glFragShader = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc); + + var program = gl.createProgram(); + + gl.attachShader(program, glVertShader); + gl.attachShader(program, glFragShader); + + // optionally, set the attributes manually for the program rather than letting WebGL decide.. + if (attributeLocations) + { + for (var i in attributeLocations) + { + gl.bindAttribLocation(program, attributeLocations[i], i); + } + } + + gl.linkProgram(program); + + // if linking fails, then log and cleanup + if (!gl.getProgramParameter(program, gl.LINK_STATUS)) + { + console.error('Pixi.js Error: Could not initialize shader.'); + console.error('gl.VALIDATE_STATUS', gl.getProgramParameter(program, gl.VALIDATE_STATUS)); + console.error('gl.getError()', gl.getError()); + + // if there is a program info log, log it + if (gl.getProgramInfoLog(program) !== '') + { + console.warn('Pixi.js Warning: gl.getProgramInfoLog()', gl.getProgramInfoLog(program)); + } + + gl.deleteProgram(program); + program = null; + } + + // clean up some shaders + gl.deleteShader(glVertShader); + gl.deleteShader(glFragShader); + + return program; +} + +/** + * @private + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param type {Number} the type, can be either VERTEX_SHADER or FRAGMENT_SHADER + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @return {WebGLShader} the shader + */ +function compileShader(gl, type, src) +{ + var shader = gl.createShader(type); + + gl.shaderSource(shader, src); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + console.warn(src); + console.error(gl.getShaderInfoLog(shader)); + + return null; + } + + return shader; +} + +/** + * @method defaultValue + * @memberof PIXI.glCore.shader + * @param type {String} Type of value + * @param size {Number} + * @private + */ +function defaultValue(type, size) +{ + switch (type) + { + case 'float': + return 0; + + case 'vec2': + return new Float32Array(2 * size); + + case 'vec3': + return new Float32Array(3 * size); + + case 'vec4': + return new Float32Array(4 * size); + + case 'int': + case 'sampler2D': + case 'sampler2DArray': + return 0; + + case 'ivec2': + return new Int32Array(2 * size); + + case 'ivec3': + return new Int32Array(3 * size); + + case 'ivec4': + return new Int32Array(4 * size); + + case 'bool': + return false; + + case 'bvec2': + + return booleanArray(2 * size); + + case 'bvec3': + return booleanArray(3 * size); + + case 'bvec4': + return booleanArray(4 * size); + + case 'mat2': + return new Float32Array([1, 0, + 0, 1]); + + case 'mat3': + return new Float32Array([1, 0, 0, + 0, 1, 0, + 0, 0, 1]); + + case 'mat4': + return new Float32Array([1, 0, 0, 0, + 0, 1, 0, 0, + 0, 0, 1, 0, + 0, 0, 0, 1]); + } + + return null; +} + +function booleanArray(size) +{ + var array = new Array(size); + + for (var i = 0; i < array.length; i++) + { + array[i] = false; + } + + return array; +} + +var unknownContext = {}; +var context = unknownContext; + +/** + * returns a little WebGL context to use for program inspection. + * + * @static + * @private + * @returns {webGL-context} a gl context to test with + */ +function getTestContext() +{ + if (context === unknownContext || context.isContextLost()) + { + var canvas = document.createElement('canvas'); + + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', {}); + } + + if (!gl) + { + gl = canvas.getContext('webgl', {}) + || canvas.getContext('experimental-webgl', {}); + + if (!gl) + { + // fail, not able to get a context + gl = null; + } + else + { + // for shader testing.. + gl.getExtension('WEBGL_draw_buffers'); + } + } + + context = gl; + } + + return context; +} + +var maxFragmentPrecision; + +function getMaxFragmentPrecision() +{ + if (!maxFragmentPrecision) + { + maxFragmentPrecision = PRECISION.MEDIUM; + var gl = getTestContext(); + + if (gl) + { + if (gl.getShaderPrecisionFormat) + { + var shaderFragment = gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT); + + maxFragmentPrecision = shaderFragment.precision ? PRECISION.HIGH : PRECISION.MEDIUM; + } + } + } + + return maxFragmentPrecision; +} + +/** + * Sets the float precision on the shader, ensuring the device supports the request precision. + * If the precision is already present, it just ensures that the device is able to handle it. + * + * @private + * @param {string} src - The shader source + * @param {string} requestedPrecision - The request float precision of the shader. Options are 'lowp', 'mediump' or 'highp'. + * @param {string} maxSupportedPrecision - The maximum precision the shader supports. + * + * @return {string} modified shader source + */ +function setPrecision(src, requestedPrecision, maxSupportedPrecision) +{ + if (src.substring(0, 9) !== 'precision') + { + // no precision supplied, so PixiJS will add the requested level. + var precision = requestedPrecision; + + // If highp is requested but not supported, downgrade precision to a level all devices support. + if (requestedPrecision === PRECISION.HIGH && maxSupportedPrecision !== PRECISION.HIGH) + { + precision = PRECISION.MEDIUM; + } + + return ("precision " + precision + " float;\n" + src); + } + else if (maxSupportedPrecision !== PRECISION.HIGH && src.substring(0, 15) === 'precision highp') + { + // precision was supplied, but at a level this device does not support, so downgrading to mediump. + return src.replace('precision highp', 'precision mediump'); + } + + return src; +} + +var GLSL_TO_SIZE = { + float: 1, + vec2: 2, + vec3: 3, + vec4: 4, + + int: 1, + ivec2: 2, + ivec3: 3, + ivec4: 4, + + bool: 1, + bvec2: 2, + bvec3: 3, + bvec4: 4, + + mat2: 4, + mat3: 9, + mat4: 16, + + sampler2D: 1, +}; + +/** + * @private + * @method mapSize + * @memberof PIXI.glCore.shader + * @param type {String} + * @return {Number} + */ +function mapSize(type) +{ + return GLSL_TO_SIZE[type]; +} + +var GL_TABLE = null; + +var GL_TO_GLSL_TYPES = { + FLOAT: 'float', + FLOAT_VEC2: 'vec2', + FLOAT_VEC3: 'vec3', + FLOAT_VEC4: 'vec4', + + INT: 'int', + INT_VEC2: 'ivec2', + INT_VEC3: 'ivec3', + INT_VEC4: 'ivec4', + + BOOL: 'bool', + BOOL_VEC2: 'bvec2', + BOOL_VEC3: 'bvec3', + BOOL_VEC4: 'bvec4', + + FLOAT_MAT2: 'mat2', + FLOAT_MAT3: 'mat3', + FLOAT_MAT4: 'mat4', + + SAMPLER_2D: 'sampler2D', + SAMPLER_CUBE: 'samplerCube', + SAMPLER_2D_ARRAY: 'sampler2DArray', +}; + +function mapType(gl, type) +{ + if (!GL_TABLE) + { + var typeNames = Object.keys(GL_TO_GLSL_TYPES); + + GL_TABLE = {}; + + for (var i = 0; i < typeNames.length; ++i) + { + var tn = typeNames[i]; + + GL_TABLE[gl[tn]] = GL_TO_GLSL_TYPES[tn]; + } + } + + return GL_TABLE[type]; +} + +// cv = CachedValue +// v = value +// ud = uniformData +// uv = uniformValue +// l = location +var GLSL_TO_SINGLE_SETTERS_CACHED = { + + float: "\n if(cv !== v)\n {\n cv.v = v;\n gl.uniform1f(location, v)\n }", + + vec2: "\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(location, v[0], v[1])\n }", + + vec3: "\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n\n gl.uniform3f(location, v[0], v[1], v[2])\n }", + + vec4: 'gl.uniform4f(location, v[0], v[1], v[2], v[3])', + + int: 'gl.uniform1i(location, v)', + ivec2: 'gl.uniform2i(location, v[0], v[1])', + ivec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + ivec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + bool: 'gl.uniform1i(location, v)', + bvec2: 'gl.uniform2i(location, v[0], v[1])', + bvec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + bvec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + mat2: 'gl.uniformMatrix2fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat4: 'gl.uniformMatrix4fv(location, false, v)', + + sampler2D: 'gl.uniform1i(location, v)', + samplerCube: 'gl.uniform1i(location, v)', + sampler2DArray: 'gl.uniform1i(location, v)', +}; + +var GLSL_TO_ARRAY_SETTERS = { + + float: "gl.uniform1fv(location, v)", + + vec2: "gl.uniform2fv(location, v)", + vec3: "gl.uniform3fv(location, v)", + vec4: 'gl.uniform4fv(location, v)', + + mat4: 'gl.uniformMatrix4fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat2: 'gl.uniformMatrix2fv(location, false, v)', + + int: 'gl.uniform1iv(location, v)', + ivec2: 'gl.uniform2iv(location, v)', + ivec3: 'gl.uniform3iv(location, v)', + ivec4: 'gl.uniform4iv(location, v)', + + bool: 'gl.uniform1iv(location, v)', + bvec2: 'gl.uniform2iv(location, v)', + bvec3: 'gl.uniform3iv(location, v)', + bvec4: 'gl.uniform4iv(location, v)', + + sampler2D: 'gl.uniform1iv(location, v)', + samplerCube: 'gl.uniform1iv(location, v)', + sampler2DArray: 'gl.uniform1iv(location, v)', +}; + +function generateUniformsSync(group, uniformData) +{ + var textureCount = 0; + var func = "var v = null;\n var cv = null\n var gl = renderer.gl"; + + for (var i in group.uniforms) + { + var data = uniformData[i]; + + if (!data) + { + if (group.uniforms[i].group) + { + func += "\n renderer.shader.syncUniformGroup(uv." + i + ");\n "; + } + + continue; + } + + // TODO && uniformData[i].value !== 0 <-- do we still need this? + if (data.type === 'float' && data.size === 1) + { + func += "\n if(uv." + i + " !== ud." + i + ".value)\n {\n ud." + i + ".value = uv." + i + "\n gl.uniform1f(ud." + i + ".location, uv." + i + ")\n }\n"; + } + /* eslint-disable max-len */ + else if ((data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray) + /* eslint-disable max-len */ + { + func += "\n renderer.texture.bind(uv." + i + ", " + textureCount + ");\n\n if(ud." + i + ".value !== " + textureCount + ")\n {\n ud." + i + ".value = " + textureCount + ";\n gl.uniform1i(ud." + i + ".location, " + textureCount + ");\n; // eslint-disable-line max-len\n }\n"; + + textureCount++; + } + else if (data.type === 'mat3' && data.size === 1) + { + if (group.uniforms[i].a !== undefined) + { + // TODO and some smart caching dirty ids here! + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ".toArray(true));\n \n"; + } + else + { + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ");\n \n"; + } + } + else if (data.type === 'vec2' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].x !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n gl.uniform2f(ud." + i + ".location, v.x, v.y);\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(ud." + i + ".location, v[0], v[1]);\n }\n \n"; + } + } + else if (data.type === 'vec4' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].width !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y || cv[2] !== v.width || cv[3] !== v.height)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n cv[2] = v.width;\n cv[3] = v.height;\n gl.uniform4f(ud." + i + ".location, v.x, v.y, v.width, v.height)\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2] || cv[3] !== v[3])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n cv[3] = v[3];\n\n gl.uniform4f(ud." + i + ".location, v[0], v[1], v[2], v[3])\n }\n \n"; + } + } + else + { + var templateType = (data.size === 1) ? GLSL_TO_SINGLE_SETTERS_CACHED : GLSL_TO_ARRAY_SETTERS; + + var template = templateType[data.type].replace('location', ("ud." + i + ".location")); + + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n " + template + ";\n"; + } + } + + return new Function('ud', 'uv', 'renderer', func); // eslint-disable-line no-new-func +} + +var fragTemplate = [ + 'precision mediump float;', + 'void main(void){', + 'float test = 0.1;', + '%forloop%', + 'gl_FragColor = vec4(0.0);', + '}' ].join('\n'); + +function checkMaxIfStatementsInShader(maxIfs, gl) +{ + if (maxIfs === 0) + { + throw new Error('Invalid value of `0` passed to `checkMaxIfStatementsInShader`'); + } + + var shader = gl.createShader(gl.FRAGMENT_SHADER); + + while (true) // eslint-disable-line no-constant-condition + { + var fragmentSrc = fragTemplate.replace(/%forloop%/gi, generateIfTestSrc(maxIfs)); + + gl.shaderSource(shader, fragmentSrc); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + maxIfs = (maxIfs / 2) | 0; + } + else + { + // valid! + break; + } + } + + return maxIfs; +} + +function generateIfTestSrc(maxIfs) +{ + var src = ''; + + for (var i = 0; i < maxIfs; ++i) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxIfs - 1) + { + src += "if(test == " + i + ".0){}"; + } + } + + return src; +} + +// Cache the result to prevent running this over and over +var unsafeEval; + +/** + * Not all platforms allow to generate function code (e.g., `new Function`). + * this provides the platform-level detection. + * + * @private + * @returns {boolean} + */ +function unsafeEvalSupported() +{ + if (typeof unsafeEval === 'boolean') + { + return unsafeEval; + } + + try + { + /* eslint-disable no-new-func */ + var func = new Function('param1', 'param2', 'param3', 'return param1[param2] === param3;'); + /* eslint-enable no-new-func */ + + unsafeEval = func({ a: 'b' }, 'a', 'b') === true; + } + catch (e) + { + unsafeEval = false; + } + + return unsafeEval; +} + +var defaultFragment = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor *= texture2D(uSampler, vTextureCoord);\n}"; + +var defaultVertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n vTextureCoord = aTextureCoord;\n}\n"; + +// import * as from '../systems/shader/shader'; + +var UID$3 = 0; + +var nameCache = {}; + +/** + * Helper class to create a shader program. + * + * @class + * @memberof PIXI + */ +var Program = function Program(vertexSrc, fragmentSrc, name) +{ + if ( name === void 0 ) name = 'pixi-shader'; + + this.id = UID$3++; + + /** + * The vertex shader. + * + * @member {string} + */ + this.vertexSrc = vertexSrc || Program.defaultVertexSrc; + + /** + * The fragment shader. + * + * @member {string} + */ + this.fragmentSrc = fragmentSrc || Program.defaultFragmentSrc; + + this.vertexSrc = this.vertexSrc.trim(); + this.fragmentSrc = this.fragmentSrc.trim(); + + if (this.vertexSrc.substring(0, 8) !== '#version') + { + name = name.replace(/\s+/g, '-'); + + if (nameCache[name]) + { + nameCache[name]++; + name += "-" + (nameCache[name]); + } + else + { + nameCache[name] = 1; + } + + this.vertexSrc = "#define SHADER_NAME " + name + "\n" + (this.vertexSrc); + this.fragmentSrc = "#define SHADER_NAME " + name + "\n" + (this.fragmentSrc); + + this.vertexSrc = setPrecision(this.vertexSrc, settings.PRECISION_VERTEX, PRECISION.HIGH); + this.fragmentSrc = setPrecision(this.fragmentSrc, settings.PRECISION_FRAGMENT, getMaxFragmentPrecision()); + } + + // currently this does not extract structs only default types + this.extractData(this.vertexSrc, this.fragmentSrc); + + // this is where we store shader references.. + this.glPrograms = {}; + + this.syncUniforms = null; +}; + +var staticAccessors$3 = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + +/** + * Extracts the data for a buy creating a small test program + * or reading the src directly. + * @protected + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + */ +Program.prototype.extractData = function extractData (vertexSrc, fragmentSrc) +{ + var gl = getTestContext(); + + if (gl) + { + var program = compileProgram(gl, vertexSrc, fragmentSrc); + + this.attributeData = this.getAttributeData(program, gl); + this.uniformData = this.getUniformData(program, gl); + + gl.deleteProgram(program); + } + else + { + this.uniformData = {}; + this.attributeData = {}; + } +}; + +/** + * returns the attribute data from the program + * @private + * + * @param {WebGLProgram} [program] - the WebGL program + * @param {WebGLRenderingContext} [gl] - the WebGL context + * + * @returns {object} the attribute data for this program + */ +Program.prototype.getAttributeData = function getAttributeData (program, gl) +{ + var attributes = {}; + var attributesArray = []; + + var totalAttributes = gl.getProgramParameter(program, gl.ACTIVE_ATTRIBUTES); + + for (var i = 0; i < totalAttributes; i++) + { + var attribData = gl.getActiveAttrib(program, i); + var type = mapType(gl, attribData.type); + + /*eslint-disable */ + var data = { + type: type, + name: attribData.name, + size: mapSize(type), + location: 0, + }; + /* eslint-enable */ + + attributes[attribData.name] = data; + attributesArray.push(data); + } + + attributesArray.sort(function (a, b) { return (a.name > b.name) ? 1 : -1; }); // eslint-disable-line no-confusing-arrow + + for (var i$1 = 0; i$1 < attributesArray.length; i$1++) + { + attributesArray[i$1].location = i$1; + } + + return attributes; +}; + +/** + * returns the uniform data from the program + * @private + * + * @param {webGL-program} [program] - the webgl program + * @param {context} [gl] - the WebGL context + * + * @returns {object} the uniform data for this program + */ +Program.prototype.getUniformData = function getUniformData (program, gl) +{ + var uniforms = {}; + + var totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS); + + // TODO expose this as a prop? + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + + for (var i = 0; i < totalUniforms; i++) + { + var uniformData = gl.getActiveUniform(program, i); + var name = uniformData.name.replace(/\[.*?\]/, ''); + + var isArray = uniformData.name.match(/\[.*?\]/, ''); + var type = mapType(gl, uniformData.type); + + /*eslint-disable */ + uniforms[name] = { + type: type, + size: uniformData.size, + isArray:isArray, + value: defaultValue(type, uniformData.size), + }; + /* eslint-enable */ + } + + return uniforms; +}; + +/** + * The default vertex shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultVertexSrc.get = function () +{ + return defaultVertex; +}; + +/** + * The default fragment shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultFragmentSrc.get = function () +{ + return defaultFragment; +}; + +/** + * A short hand function to create a program based of a vertex and fragment shader + * this method will also check to see if there is a cached program. + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Program} an shiny new Pixi shader! + */ +Program.from = function from (vertexSrc, fragmentSrc, name) +{ + var key = vertexSrc + fragmentSrc; + + var program = ProgramCache[key]; + + if (!program) + { + ProgramCache[key] = program = new Program(vertexSrc, fragmentSrc, name); + } + + return program; +}; + +Object.defineProperties( Program, staticAccessors$3 ); + +/** + * A helper class for shaders + * + * @class + * @memberof PIXI + */ +var Shader = function Shader(program, uniforms) +{ + /** + * Program that the shader uses + * + * @member {PIXI.Program} + */ + this.program = program; + + // lets see whats been passed in + // uniforms should be converted to a uniform group + if (uniforms) + { + if (uniforms instanceof UniformGroup) + { + this.uniformGroup = uniforms; + } + else + { + this.uniformGroup = new UniformGroup(uniforms); + } + } + else + { + this.uniformGroup = new UniformGroup({}); + } + + // time to build some getters and setters! + // I guess down the line this could sort of generate an instruction list rather than use dirty ids? + // does the trick for now though! + for (var i in program.uniformData) + { + if (this.uniformGroup.uniforms[i] instanceof Array) + { + this.uniformGroup.uniforms[i] = new Float32Array(this.uniformGroup.uniforms[i]); + } + } +}; + +var prototypeAccessors$2$1 = { uniforms: { configurable: true } }; + +// TODO move to shader system.. +Shader.prototype.checkUniformExists = function checkUniformExists (name, group) +{ + if (group.uniforms[name]) + { + return true; + } + + for (var i in group.uniforms) + { + var uniform = group.uniforms[i]; + + if (uniform.group) + { + if (this.checkUniformExists(name, uniform)) + { + return true; + } + } + } + + return false; +}; + +Shader.prototype.destroy = function destroy () +{ + // usage count on programs? + // remove if not used! + this.uniformGroup = null; +}; + +/** + * Shader uniform values, shortcut for `uniformGroup.uniforms` + * @readonly + * @member {object} + */ +prototypeAccessors$2$1.uniforms.get = function () +{ + return this.uniformGroup.uniforms; +}; + +/** + * A short hand function to create a shader based of a vertex and fragment shader + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Shader} an shiny new Pixi shader! + */ +Shader.from = function from (vertexSrc, fragmentSrc, uniforms) +{ + var program = Program.from(vertexSrc, fragmentSrc); + + return new Shader(program, uniforms); +}; + +Object.defineProperties( Shader.prototype, prototypeAccessors$2$1 ); + +/* eslint-disable max-len */ + +var BLEND = 0; +var OFFSET = 1; +var CULLING = 2; +var DEPTH_TEST = 3; +var WINDING = 4; + +/** + * This is a WebGL state, and is is passed The WebGL StateManager. + * + * Each mesh rendered may require WebGL to be in a different state. + * For example you may want different blend mode or to enable polygon offsets + * + * @class + * @memberof PIXI + */ +var State = function State() +{ + this.data = 0; + + this.blendMode = BLEND_MODES.NORMAL; + this.polygonOffset = 0; + + this.blend = true; + // this.depthTest = true; +}; + +var prototypeAccessors$3$1 = { blend: { configurable: true },offsets: { configurable: true },culling: { configurable: true },depthTest: { configurable: true },clockwiseFrontFace: { configurable: true },blendMode: { configurable: true },polygonOffset: { configurable: true } }; + +/** + * Activates blending of the computed fragment color values + * + * @member {boolean} + */ +prototypeAccessors$3$1.blend.get = function () +{ + return !!(this.data & (1 << BLEND)); +}; + +prototypeAccessors$3$1.blend.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << BLEND)) !== value) + { + this.data ^= (1 << BLEND); + } +}; + +/** + * Activates adding an offset to depth values of polygon's fragments + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.offsets.get = function () +{ + return !!(this.data & (1 << OFFSET)); +}; + +prototypeAccessors$3$1.offsets.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << OFFSET)) !== value) + { + this.data ^= (1 << OFFSET); + } +}; + +/** + * Activates culling of polygons. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.culling.get = function () +{ + return !!(this.data & (1 << CULLING)); +}; + +prototypeAccessors$3$1.culling.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << CULLING)) !== value) + { + this.data ^= (1 << CULLING); + } +}; + +/** + * Activates depth comparisons and updates to the depth buffer. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.depthTest.get = function () +{ + return !!(this.data & (1 << DEPTH_TEST)); +}; + +prototypeAccessors$3$1.depthTest.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << DEPTH_TEST)) !== value) + { + this.data ^= (1 << DEPTH_TEST); + } +}; + +/** + * Specifies whether or not front or back-facing polygons can be culled. + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.clockwiseFrontFace.get = function () +{ + return !!(this.data & (1 << WINDING)); +}; + +prototypeAccessors$3$1.clockwiseFrontFace.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << WINDING)) !== value) + { + this.data ^= (1 << WINDING); + } +}; + +/** + * The blend mode to be applied when this state is set. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * Setting this mode to anything other than NO_BLEND will automatically switch blending on. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ +prototypeAccessors$3$1.blendMode.get = function () +{ + return this._blendMode; +}; + +prototypeAccessors$3$1.blendMode.set = function (value) // eslint-disable-line require-jsdoc +{ + this.blend = (value !== BLEND_MODES.NONE); + this._blendMode = value; +}; + +/** + * The polygon offset. Setting this property to anything other than 0 will automatically enable polygon offset fill. + * + * @member {number} + * @default 0 + */ +prototypeAccessors$3$1.polygonOffset.get = function () +{ + return this._polygonOffset; +}; + +prototypeAccessors$3$1.polygonOffset.set = function (value) // eslint-disable-line require-jsdoc +{ + this.offsets = !!value; + this._polygonOffset = value; +}; + +State.for2d = function for2d () +{ + var state = new State(); + + state.depthTest = false; + state.blend = true; + + return state; +}; + +Object.defineProperties( State.prototype, prototypeAccessors$3$1 ); + +var defaultVertex$1 = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +var defaultFragment$1 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor = texture2D(uSampler, vTextureCoord);\n}\n"; + +/** + * Filter is a special type of WebGL shader that is applied to the screen. + * + * {@link http://pixijs.io/examples/#/filters/blur-filter.js Example} of the + * {@link PIXI.filters.BlurFilter BlurFilter}. + * + * ### Usage + * Filters can be applied to any DisplayObject or Container. + * PixiJS' `FilterSystem` renders the container into temporary Framebuffer, + * then filter renders it to the screen. + * Multiple filters can be added to the `filters` array property and stacked on each other. + * + * ``` + * const filter = new PIXI.Filter(myShaderVert, myShaderFrag, { myUniform: 0.5 }); + * const container = new PIXI.Container(); + * container.filters = [filter]; + * ``` + * + * ### Previous Version Differences + * + * In PixiJS **v3**, a filter was always applied to _whole screen_. + * + * In PixiJS **v4**, a filter can be applied _only part of the screen_. + * Developers had to create a set of uniforms to deal with coordinates. + * + * In PixiJS **v5** combines _both approaches_. + * Developers can use normal coordinates of v3 and then allow filter to use partial Framebuffers, + * bringing those extra uniforms into account. + * + * Also be aware that we have changed default vertex shader, please consult + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * ### Built-in Uniforms + * + * PixiJS viewport uses screen (CSS) coordinates, `(0, 0, renderer.screen.width, renderer.screen.height)`, + * and `projectionMatrix` uniform maps it to the gl viewport. + * + * **uSampler** + * + * The most important uniform is the input texture that container was rendered into. + * _Important note: as with all Framebuffers in PixiJS, both input and output are + * premultiplied by alpha._ + * + * By default, input normalized coordinates are passed to fragment shader with `vTextureCoord`. + * Use it to sample the input. + * + * ``` + * const fragment = ` + * varying vec2 vTextureCoord; + * uniform sampler2D uSampler; + * void main(void) + * { + * gl_FragColor = texture2D(uSampler, vTextureCoord); + * } + * `; + * + * const myFilter = new PIXI.Filter(null, fragment); + * ``` + * + * This filter is just one uniform less than {@link PIXI.filters.AlphaFilter AlphaFilter}. + * + * **outputFrame** + * + * The `outputFrame` holds the rectangle where filter is applied in screen (CSS) coordinates. + * It's the same as `renderer.screen` for a fullscreen filter. + * Only a part of `outputFrame.zw` size of temporary Framebuffer is used, + * `(0, 0, outputFrame.width, outputFrame.height)`, + * + * Filters uses this quad to normalized (0-1) space, its passed into `aVertexPosition` attribute. + * To calculate vertex position in screen space using normalized (0-1) space: + * + * ``` + * vec4 filterVertexPosition( void ) + * { + * vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy; + * return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0); + * } + * ``` + * + * **inputSize** + * + * Temporary framebuffer is different, it can be either the size of screen, either power-of-two. + * The `inputSize.xy` are size of temporary framebuffer that holds input. + * The `inputSize.zw` is inverted, it's a shortcut to evade division inside the shader. + * + * Set `inputSize.xy = outputFrame.zw` for a fullscreen filter. + * + * To calculate input normalized coordinate, you have to map it to filter normalized space. + * Multiply by `outputFrame.zw` to get input coordinate. + * Divide by `inputSize.xy` to get input normalized coordinate. + * + * ``` + * vec2 filterTextureCoord( void ) + * { + * return aVertexPosition * (outputFrame.zw * inputSize.zw); // same as /inputSize.xy + * } + * ``` + * **resolution** + * + * The `resolution` is the ratio of screen (CSS) pixels to real pixels. + * + * **inputPixel** + * + * `inputPixel.xy` is the size of framebuffer in real pixels, same as `inputSize.xy * resolution` + * `inputPixel.zw` is inverted `inputPixel.xy`. + * + * It's handy for filters that use neighbour pixels, like {@link PIXI.filters.FXAAFilter FXAAFilter}. + * + * **inputClamp** + * + * If you try to get info from outside of used part of Framebuffer - you'll get undefined behaviour. + * For displacements, coordinates has to be clamped. + * + * The `inputClamp.xy` is left-top pixel center, you may ignore it, because we use left-top part of Framebuffer + * `inputClamp.zw` is bottom-right pixel center. + * + * ``` + * vec4 color = texture2D(uSampler, clamp(modifigedTextureCoord, inputClamp.xy, inputClamp.zw)) + * ``` + * OR + * ``` + * vec4 color = texture2D(uSampler, min(modifigedTextureCoord, inputClamp.zw)) + * ``` + * + * ### Additional Information + * + * Complete documentation on Filter usage is located in the + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * Since PixiJS only had a handful of built-in filters, additional filters can be downloaded + * {@link https://github.com/pixijs/pixi-filters here} from the PixiJS Filters repository. + * + * @class + * @memberof PIXI + * @extends PIXI.Shader + */ +var Filter = /*@__PURE__*/(function (Shader) { + function Filter(vertexSrc, fragmentSrc, uniforms) + { + var program = Program.from(vertexSrc || Filter.defaultVertexSrc, + fragmentSrc || Filter.defaultFragmentSrc); + + Shader.call(this, program, uniforms); + + /** + * The padding of the filter. Some filters require extra space to breath such as a blur. + * Increasing this will add extra width and height to the bounds of the object that the + * filter is applied to. + * + * @member {number} + */ + this.padding = 0; + + /** + * The resolution of the filter. Setting this to be lower will lower the quality but + * increase the performance of the filter. + * + * @member {number} + */ + this.resolution = settings.FILTER_RESOLUTION; + + /** + * If enabled is true the filter is applied, if false it will not. + * + * @member {boolean} + */ + this.enabled = true; + + /** + * If enabled, PixiJS will fit the filter area into boundaries for better performance. + * Switch it off if it does not work for specific shader. + * + * @member {boolean} + */ + this.autoFit = true; + + /** + * Legacy filters use position and uvs from attributes + * @member {boolean} + * @readonly + */ + this.legacy = !!this.program.attributeData.aTextureCoord; + + /** + * The WebGL state the filter requires to render + * @member {PIXI.State} + */ + this.state = new State(); + } + + if ( Shader ) Filter.__proto__ = Shader; + Filter.prototype = Object.create( Shader && Shader.prototype ); + Filter.prototype.constructor = Filter; + + var prototypeAccessors = { blendMode: { configurable: true } }; + var staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + * @param {object} [currentState] - It's current state of filter. + * There are some useful properties in the currentState : + * target, filters, sourceFrame, destinationFrame, renderTarget, resolution + */ + Filter.prototype.apply = function apply (filterManager, input, output, clear, currentState) + { + // do as you please! + + filterManager.applyFilter(this, input, output, clear, currentState); + + // or just do a regular render.. + }; + + /** + * Sets the blendmode of the filter + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + */ + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + prototypeAccessors.blendMode.set = function (value) // eslint-disable-line require-jsdoc + { + this.state.blendMode = value; + }; + + /** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultVertexSrc.get = function () + { + return defaultVertex$1; + }; + + /** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultFragmentSrc.get = function () + { + return defaultFragment$1; + }; + + Object.defineProperties( Filter.prototype, prototypeAccessors ); + Object.defineProperties( Filter, staticAccessors ); + + return Filter; +}(Shader)); + +/** + * Used for caching shader IDs + * + * @static + * @type {object} + * @protected + */ +Filter.SOURCE_KEY_MAP = {}; + +var vertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 otherMatrix;\n\nvarying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\n}\n"; + +var fragment = "varying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform sampler2D mask;\nuniform float alpha;\nuniform float npmAlpha;\nuniform vec4 maskClamp;\n\nvoid main(void)\n{\n float clip = step(3.5,\n step(maskClamp.x, vMaskCoord.x) +\n step(maskClamp.y, vMaskCoord.y) +\n step(vMaskCoord.x, maskClamp.z) +\n step(vMaskCoord.y, maskClamp.w));\n\n vec4 original = texture2D(uSampler, vTextureCoord);\n vec4 masky = texture2D(mask, vMaskCoord);\n float alphaMul = 1.0 - npmAlpha * (1.0 - masky.a);\n\n original *= (alphaMul * masky.r * alpha * clip);\n\n gl_FragColor = original;\n}\n"; + +var tempMat = new Matrix(); + +/** + * Class controls uv mapping from Texture normal space to BaseTexture normal space. + * + * Takes `trim` and `rotate` into account. May contain clamp settings for Meshes and TilingSprite. + * + * Can be used in Texture `uvMatrix` field, or separately, you can use different clamp settings on the same texture. + * If you want to add support for texture region of certain feature or filter, that's what you're looking for. + * + * Takes track of Texture changes through `_lastTextureID` private field. + * Use `update()` method call to track it from outside. + * + * @see PIXI.Texture + * @see PIXI.Mesh + * @see PIXI.TilingSprite + * @class + * @memberof PIXI + */ +var TextureMatrix = function TextureMatrix(texture, clampMargin) +{ + this._texture = texture; + + /** + * Matrix operation that converts texture region coords to texture coords + * @member {PIXI.Matrix} + * @readonly + */ + this.mapCoord = new Matrix(); + + /** + * Clamp region for normalized coords, left-top pixel center in xy , bottom-right in zw. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampFrame = new Float32Array(4); + + /** + * Normalized clamp offset. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampOffset = new Float32Array(2); + + /** + * Tracks Texture frame changes + * @member {number} + * @protected + */ + this._updateID = -1; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to 1.5 if you texture has repeated right and bottom lines, that leads to smoother borders + * + * @default 0 + * @member {number} + */ + this.clampOffset = 0; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas + * + * @default 0.5 + * @member {number} + */ + this.clampMargin = (typeof clampMargin === 'undefined') ? 0.5 : clampMargin; + + /** + * If texture size is the same as baseTexture + * @member {boolean} + * @default false + * @readonly + */ + this.isSimple = false; +}; + +var prototypeAccessors$4$1 = { texture: { configurable: true } }; + +/** + * texture property + * @member {PIXI.Texture} + */ +prototypeAccessors$4$1.texture.get = function () +{ + return this._texture; +}; + +prototypeAccessors$4$1.texture.set = function (value) // eslint-disable-line require-jsdoc +{ + this._texture = value; + this._updateID = -1; +}; + +/** + * Multiplies uvs array to transform + * @param {Float32Array} uvs mesh uvs + * @param {Float32Array} [out=uvs] output + * @returns {Float32Array} output + */ +TextureMatrix.prototype.multiplyUvs = function multiplyUvs (uvs, out) +{ + if (out === undefined) + { + out = uvs; + } + + var mat = this.mapCoord; + + for (var i = 0; i < uvs.length; i += 2) + { + var x = uvs[i]; + var y = uvs[i + 1]; + + out[i] = (x * mat.a) + (y * mat.c) + mat.tx; + out[i + 1] = (x * mat.b) + (y * mat.d) + mat.ty; + } + + return out; +}; + +/** + * updates matrices if texture was changed + * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case + * @returns {boolean} whether or not it was updated + */ +TextureMatrix.prototype.update = function update (forceUpdate) +{ + var tex = this._texture; + + if (!tex || !tex.valid) + { + return false; + } + + if (!forceUpdate + && this._updateID === tex._updateID) + { + return false; + } + + this._updateID = tex._updateID; + + var uvs = tex._uvs; + + this.mapCoord.set(uvs.x1 - uvs.x0, uvs.y1 - uvs.y0, uvs.x3 - uvs.x0, uvs.y3 - uvs.y0, uvs.x0, uvs.y0); + + var orig = tex.orig; + var trim = tex.trim; + + if (trim) + { + tempMat.set(orig.width / trim.width, 0, 0, orig.height / trim.height, + -trim.x / trim.width, -trim.y / trim.height); + this.mapCoord.append(tempMat); + } + + var texBase = tex.baseTexture; + var frame = this.uClampFrame; + var margin = this.clampMargin / texBase.resolution; + var offset = this.clampOffset; + + frame[0] = (tex._frame.x + margin + offset) / texBase.width; + frame[1] = (tex._frame.y + margin + offset) / texBase.height; + frame[2] = (tex._frame.x + tex._frame.width - margin + offset) / texBase.width; + frame[3] = (tex._frame.y + tex._frame.height - margin + offset) / texBase.height; + this.uClampOffset[0] = offset / texBase.realWidth; + this.uClampOffset[1] = offset / texBase.realHeight; + + this.isSimple = tex._frame.width === texBase.width + && tex._frame.height === texBase.height + && tex.rotate === 0; + + return true; +}; + +Object.defineProperties( TextureMatrix.prototype, prototypeAccessors$4$1 ); + +/** + * This handles a Sprite acting as a mask, as opposed to a Graphic. + * + * WebGL only. + * + * @class + * @extends PIXI.Filter + * @memberof PIXI + */ +var SpriteMaskFilter = /*@__PURE__*/(function (Filter) { + function SpriteMaskFilter(sprite) + { + var maskMatrix = new Matrix(); + + Filter.call(this, vertex, fragment); + + sprite.renderable = false; + + /** + * Sprite mask + * @member {PIXI.Sprite} + */ + this.maskSprite = sprite; + + /** + * Mask matrix + * @member {PIXI.Matrix} + */ + this.maskMatrix = maskMatrix; + } + + if ( Filter ) SpriteMaskFilter.__proto__ = Filter; + SpriteMaskFilter.prototype = Object.create( Filter && Filter.prototype ); + SpriteMaskFilter.prototype.constructor = SpriteMaskFilter; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it. + */ + SpriteMaskFilter.prototype.apply = function apply (filterManager, input, output, clear) + { + var maskSprite = this.maskSprite; + var tex = this.maskSprite.texture; + + if (!tex.valid) + { + return; + } + if (!tex.transform) + { + // margin = 0.0, let it bleed a bit, shader code becomes easier + // assuming that atlas textures were made with 1-pixel padding + tex.transform = new TextureMatrix(tex, 0.0); + } + tex.transform.update(); + + this.uniforms.npmAlpha = tex.baseTexture.premultiplyAlpha ? 0.0 : 1.0; + this.uniforms.mask = tex; + // get _normalized sprite texture coords_ and convert them to _normalized atlas texture coords_ with `prepend` + this.uniforms.otherMatrix = filterManager.calculateSpriteMatrix(this.maskMatrix, maskSprite) + .prepend(tex.transform.mapCoord); + this.uniforms.alpha = maskSprite.worldAlpha; + this.uniforms.maskClamp = tex.transform.uClampFrame; + + filterManager.applyFilter(this, input, output, clear); + }; + + return SpriteMaskFilter; +}(Filter)); + +/** + * System plugin to the renderer to manage masks. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var MaskSystem = /*@__PURE__*/(function (System) { + function MaskSystem(renderer) + { + System.call(this, renderer); + + // TODO - we don't need both! + /** + * `true` if current pushed masked is scissor + * @member {boolean} + * @readonly + */ + this.scissor = false; + + /** + * Mask data + * @member {PIXI.Graphics} + * @readonly + */ + this.scissorData = null; + + /** + * Target to mask + * @member {PIXI.DisplayObject} + * @readonly + */ + this.scissorRenderTarget = null; + + /** + * Enable scissor + * @member {boolean} + * @readonly + */ + this.enableScissor = false; + + /** + * Pool of used sprite mask filters + * @member {PIXI.SpriteMaskFilter[]} + * @readonly + */ + this.alphaMaskPool = []; + + /** + * Current index of alpha mask pool + * @member {number} + * @default 0 + * @readonly + */ + this.alphaMaskIndex = 0; + } + + if ( System ) MaskSystem.__proto__ = System; + MaskSystem.prototype = Object.create( System && System.prototype ); + MaskSystem.prototype.constructor = MaskSystem; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.push = function push (target, maskData) + { + // TODO the root check means scissor rect will not + // be used on render textures more info here: + // https://github.com/pixijs/pixi.js/pull/3545 + + if (maskData.isSprite) + { + this.pushSpriteMask(target, maskData); + } + else if (this.enableScissor + && !this.scissor + && this.renderer._activeRenderTarget.root + && !this.renderer.stencil.stencilMaskStack.length + && maskData.isFastRect()) + { + var matrix = maskData.worldTransform; + + var rot = Math.atan2(matrix.b, matrix.a); + + // use the nearest degree! + rot = Math.round(rot * (180 / Math.PI)); + + if (rot % 90) + { + this.pushStencilMask(maskData); + } + else + { + this.pushScissorMask(target, maskData); + } + } + else + { + this.pushStencilMask(maskData); + } + }; + + /** + * Removes the last mask from the mask stack and doesn't return it. + * + * @param {PIXI.DisplayObject} target - Display Object to pop the mask from + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pop = function pop (target, maskData) + { + if (maskData.isSprite) + { + this.popSpriteMask(target, maskData); + } + else if (this.enableScissor && !this.renderer.stencil.stencilMaskStack.length) + { + this.popScissorMask(target, maskData); + } + else + { + this.popStencilMask(target, maskData); + } + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.RenderTexture} target - Display Object to push the sprite mask to + * @param {PIXI.Sprite} maskData - Sprite to be used as the mask + */ + MaskSystem.prototype.pushSpriteMask = function pushSpriteMask (target, maskData) + { + var alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex]; + + if (!alphaMaskFilter) + { + alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex] = [new SpriteMaskFilter(maskData)]; + } + + alphaMaskFilter[0].resolution = this.renderer.resolution; + alphaMaskFilter[0].maskSprite = maskData; + + var stashFilterArea = target.filterArea; + + target.filterArea = maskData.getBounds(true); + this.renderer.filter.push(target, alphaMaskFilter); + target.filterArea = stashFilterArea; + + this.alphaMaskIndex++; + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popSpriteMask = function popSpriteMask () + { + this.renderer.filter.pop(); + this.alphaMaskIndex--; + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushStencilMask = function pushStencilMask (maskData) + { + this.renderer.batch.flush(); + this.renderer.stencil.pushStencil(maskData); + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popStencilMask = function popStencilMask () + { + // this.renderer.currentRenderer.stop(); + this.renderer.stencil.popStencil(); + }; + + /** + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushScissorMask = function pushScissorMask (target, maskData) + { + maskData.renderable = true; + + var renderTarget = this.renderer._activeRenderTarget; + + var bounds = maskData.getBounds(); + + bounds.fit(renderTarget.size); + maskData.renderable = false; + + this.renderer.gl.enable(this.renderer.gl.SCISSOR_TEST); + + var resolution = this.renderer.resolution; + + this.renderer.gl.scissor( + bounds.x * resolution, + (renderTarget.root ? renderTarget.size.height - bounds.y - bounds.height : bounds.y) * resolution, + bounds.width * resolution, + bounds.height * resolution + ); + + this.scissorRenderTarget = renderTarget; + this.scissorData = maskData; + this.scissor = true; + }; + + /** + * Pop scissor mask + * + */ + MaskSystem.prototype.popScissorMask = function popScissorMask () + { + this.scissorRenderTarget = null; + this.scissorData = null; + this.scissor = false; + + // must be scissor! + var ref = this.renderer; + var gl = ref.gl; + + gl.disable(gl.SCISSOR_TEST); + }; + + return MaskSystem; +}(System)); + +/** + * System plugin to the renderer to manage stencils (used for masks). + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StencilSystem = /*@__PURE__*/(function (System) { + function StencilSystem(renderer) + { + System.call(this, renderer); + + /** + * The mask stack + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + } + + if ( System ) StencilSystem.__proto__ = System; + StencilSystem.prototype = Object.create( System && System.prototype ); + StencilSystem.prototype.constructor = StencilSystem; + + /** + * Changes the mask stack that is used by this System. + * + * @param {PIXI.Graphics[]} stencilMaskStack - The mask stack + */ + StencilSystem.prototype.setMaskStack = function setMaskStack (stencilMaskStack) + { + var gl = this.renderer.gl; + var curStackLen = this.stencilMaskStack.length; + + this.stencilMaskStack = stencilMaskStack; + if (stencilMaskStack.length !== curStackLen) + { + if (stencilMaskStack.length === 0) + { + gl.disable(gl.STENCIL_TEST); + } + else + { + gl.enable(gl.STENCIL_TEST); + this._useCurrent(); + } + } + }; + + /** + * Applies the Mask and adds it to the current stencil stack. @alvin + * + * @param {PIXI.Graphics} graphics - The mask + */ + StencilSystem.prototype.pushStencil = function pushStencil (graphics) + { + var gl = this.renderer.gl; + var prevMaskCount = this.stencilMaskStack.length; + + if (prevMaskCount === 0) + { + // force use stencil texture in current framebuffer + this.renderer.framebuffer.forceStencil(); + gl.enable(gl.STENCIL_TEST); + } + + this.stencilMaskStack.push(graphics); + + // Increment the reference stencil value where the new mask overlaps with the old ones. + gl.colorMask(false, false, false, false); + gl.stencilFunc(gl.EQUAL, prevMaskCount, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.INCR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + }; + + /** + * Removes the last mask from the stencil stack. @alvin + */ + StencilSystem.prototype.popStencil = function popStencil () + { + var gl = this.renderer.gl; + var graphics = this.stencilMaskStack.pop(); + + if (this.stencilMaskStack.length === 0) + { + // the stack is empty! + gl.disable(gl.STENCIL_TEST); + gl.clear(gl.STENCIL_BUFFER_BIT); + gl.clearStencil(0); + } + else + { + // Decrement the reference stencil value where the popped mask overlaps with the other ones + gl.colorMask(false, false, false, false); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.DECR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + } + }; + + /** + * Setup renderer to use the current stencil data. + * @private + */ + StencilSystem.prototype._useCurrent = function _useCurrent () + { + var gl = this.renderer.gl; + + gl.colorMask(true, true, true, true); + gl.stencilFunc(gl.EQUAL, this.stencilMaskStack.length, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.KEEP); + }; + + /** + * Fill 1s equal to the number of acitve stencil masks. + * @private + * @return {number} The bitwise mask. + */ + StencilSystem.prototype._getBitwiseMask = function _getBitwiseMask () + { + return (1 << this.stencilMaskStack.length) - 1; + }; + + /** + * Destroys the mask stack. + * + */ + StencilSystem.prototype.destroy = function destroy () + { + System.prototype.destroy.call(this, this); + + this.stencilMaskStack = null; + }; + + return StencilSystem; +}(System)); + +/** + * System plugin to the renderer to manage the projection matrix. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var ProjectionSystem = /*@__PURE__*/(function (System) { + function ProjectionSystem(renderer) + { + System.call(this, renderer); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = null; + + /** + * Default destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.defaultFrame = null; + + /** + * Project matrix + * @member {PIXI.Matrix} + * @readonly + */ + this.projectionMatrix = new Matrix(); + + /** + * A transform that will be appended to the projection matrix + * if null, nothing will be applied + * @member {PIXI.Matrix} + */ + this.transform = null; + } + + if ( System ) ProjectionSystem.__proto__ = System; + ProjectionSystem.prototype = Object.create( System && System.prototype ); + ProjectionSystem.prototype.constructor = ProjectionSystem; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.update = function update (destinationFrame, sourceFrame, resolution, root) + { + this.destinationFrame = destinationFrame || this.destinationFrame || this.defaultFrame; + this.sourceFrame = sourceFrame || this.sourceFrame || destinationFrame; + + this.calculateProjection(this.destinationFrame, this.sourceFrame, resolution, root); + + if (this.transform) + { + this.projectionMatrix.append(this.transform); + } + + var renderer = this.renderer; + + renderer.globalUniforms.uniforms.projectionMatrix = this.projectionMatrix; + renderer.globalUniforms.update(); + + // this will work for now + // but would be sweet to stick and even on the global uniforms.. + if (renderer.shader.shader) + { + renderer.shader.syncUniformGroup(renderer.shader.shader.uniforms.globals); + } + }; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.calculateProjection = function calculateProjection (destinationFrame, sourceFrame, resolution, root) + { + var pm = this.projectionMatrix; + + // I don't think we will need this line.. + // pm.identity(); + + if (!root) + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = -1 - (sourceFrame.y * pm.d); + } + else + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (-1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = 1 - (sourceFrame.y * pm.d); + } + }; + + /** + * Sets the transform of the active render target to the given matrix + * + * @param {PIXI.Matrix} matrix - The transformation matrix + */ + ProjectionSystem.prototype.setTransform = function setTransform ()// matrix) + { + // this._activeRenderTarget.transform = matrix; + }; + + return ProjectionSystem; +}(System)); + +var tempRect = new Rectangle(); + +/** + * System plugin to the renderer to manage render textures. + * + * Should be added after FramebufferSystem + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var RenderTextureSystem = /*@__PURE__*/(function (System) { + function RenderTextureSystem(renderer) + { + System.call(this, renderer); + + /** + * The clear background color as rgba + * @member {number[]} + */ + this.clearColor = renderer._backgroundColorRgba; + + // TODO move this property somewhere else! + /** + * List of masks for the StencilSystem + * @member {PIXI.Graphics[]} + * @readonly + */ + this.defaultMaskStack = []; + + // empty render texture? + /** + * Render texture + * @member {PIXI.RenderTexture} + * @readonly + */ + this.current = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = new Rectangle(); + } + + if ( System ) RenderTextureSystem.__proto__ = System; + RenderTextureSystem.prototype = Object.create( System && System.prototype ); + RenderTextureSystem.prototype.constructor = RenderTextureSystem; + + /** + * Bind the current render texture + * @param {PIXI.RenderTexture} [renderTexture] - RenderTexture to bind, by default its `null`, the screen + * @param {PIXI.Rectangle} [sourceFrame] - part of screen that is mapped to the renderTexture + * @param {PIXI.Rectangle} [destinationFrame] - part of renderTexture, by default it has the same size as sourceFrame + */ + RenderTextureSystem.prototype.bind = function bind (renderTexture, sourceFrame, destinationFrame) + { + if ( renderTexture === void 0 ) renderTexture = null; + + this.current = renderTexture; + + var renderer = this.renderer; + + var resolution; + + if (renderTexture) + { + var baseTexture = renderTexture.baseTexture; + + resolution = baseTexture.resolution; + + if (!destinationFrame) + { + tempRect.width = baseTexture.realWidth; + tempRect.height = baseTexture.realHeight; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + this.renderer.framebuffer.bind(baseTexture.framebuffer, destinationFrame); + + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, false); + this.renderer.stencil.setMaskStack(baseTexture.stencilMaskStack); + } + else + { + resolution = this.renderer.resolution; + + // TODO these validation checks happen deeper down.. + // thing they can be avoided.. + if (!destinationFrame) + { + tempRect.width = renderer.width; + tempRect.height = renderer.height; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + renderer.framebuffer.bind(null, destinationFrame); + + // TODO store this.. + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, true); + this.renderer.stencil.setMaskStack(this.defaultMaskStack); + } + + this.sourceFrame.copyFrom(sourceFrame); + + this.destinationFrame.x = destinationFrame.x / resolution; + this.destinationFrame.y = destinationFrame.y / resolution; + + this.destinationFrame.width = destinationFrame.width / resolution; + this.destinationFrame.height = destinationFrame.height / resolution; + + if (sourceFrame === destinationFrame) + { + this.sourceFrame.copyFrom(this.destinationFrame); + } + }; + + /** + * Erases the render texture and fills the drawing area with a colour + * + * @param {number[]} [clearColor] - The color as rgba, default to use the renderer backgroundColor + * @return {PIXI.Renderer} Returns itself. + */ + RenderTextureSystem.prototype.clear = function clear (clearColor) + { + if (this.current) + { + clearColor = clearColor || this.current.baseTexture.clearColor; + } + else + { + clearColor = clearColor || this.clearColor; + } + + this.renderer.framebuffer.clear(clearColor[0], clearColor[1], clearColor[2], clearColor[3]); + }; + + RenderTextureSystem.prototype.resize = function resize ()// screenWidth, screenHeight) + { + // resize the root only! + this.bind(null); + }; + + /** + * Resets renderTexture state + */ + RenderTextureSystem.prototype.reset = function reset () + { + this.bind(null); + }; + + return RenderTextureSystem; +}(System)); + +/** + * Helper class to create a WebGL Program + * + * @class + * @memberof PIXI + */ +var GLProgram = function GLProgram(program, uniformData) +{ + /** + * The shader program + * + * @member {WebGLProgram} + */ + this.program = program; + + /** + * holds the uniform data which contains uniform locations + * and current uniform values used for caching and preventing unneeded GPU commands + * @member {Object} + */ + this.uniformData = uniformData; + + /** + * uniformGroups holds the various upload functions for the shader. Each uniform group + * and program have a unique upload function generated. + * @member {Object} + */ + this.uniformGroups = {}; +}; + +/** + * Destroys this program + */ +GLProgram.prototype.destroy = function destroy () +{ + this.uniformData = null; + this.uniformGroups = null; + this.program = null; +}; + +var UID$4 = 0; + +/** + * System plugin to the renderer to manage shaders. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var ShaderSystem = /*@__PURE__*/(function (System) { + function ShaderSystem(renderer) + { + System.call(this, renderer); + + // Validation check that this environment support `new Function` + this.systemCheck(); + + /** + * The current WebGL rendering context + * + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.shader = null; + this.program = null; + + /** + * Cache to holds the generated functions. Stored against UniformObjects unique signature + * @type {Object} + * @private + */ + this.cache = {}; + + this.id = UID$4++; + } + + if ( System ) ShaderSystem.__proto__ = System; + ShaderSystem.prototype = Object.create( System && System.prototype ); + ShaderSystem.prototype.constructor = ShaderSystem; + + /** + * Overrideable function by `@pixi/unsafe-eval` to silence + * throwing an error if platform doesn't support unsafe-evals. + * + * @private + */ + ShaderSystem.prototype.systemCheck = function systemCheck () + { + if (!unsafeEvalSupported()) + { + throw new Error('Current environment does not allow unsafe-eval, ' + + 'please use @pixi/unsafe-eval module to enable support.'); + } + }; + + ShaderSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.reset(); + }; + + /** + * Changes the current shader to the one given in parameter + * + * @param {PIXI.Shader} shader - the new shader + * @param {boolean} dontSync - false if the shader should automatically sync its uniforms. + * @returns {PIXI.GLProgram} the glProgram that belongs to the shader. + */ + ShaderSystem.prototype.bind = function bind (shader, dontSync) + { + shader.uniforms.globals = this.renderer.globalUniforms; + + var program = shader.program; + var glProgram = program.glPrograms[this.renderer.CONTEXT_UID] || this.generateShader(shader); + + this.shader = shader; + + // TODO - some current Pixi plugins bypass this.. so it not safe to use yet.. + if (this.program !== program) + { + this.program = program; + this.gl.useProgram(glProgram.program); + } + + if (!dontSync) + { + this.syncUniformGroup(shader.uniformGroup); + } + + return glProgram; + }; + + /** + * Uploads the uniforms values to the currently bound shader. + * + * @param {object} uniforms - the uniforms values that be applied to the current shader + */ + ShaderSystem.prototype.setUniforms = function setUniforms (uniforms) + { + var shader = this.shader.program; + var glProgram = shader.glPrograms[this.renderer.CONTEXT_UID]; + + shader.syncUniforms(glProgram.uniformData, uniforms, this.renderer); + }; + + ShaderSystem.prototype.syncUniformGroup = function syncUniformGroup (group) + { + var glProgram = this.getglProgram(); + + if (!group.static || group.dirtyId !== glProgram.uniformGroups[group.id]) + { + glProgram.uniformGroups[group.id] = group.dirtyId; + + this.syncUniforms(group, glProgram); + } + }; + + /** + * Overrideable by the @pixi/unsafe-eval package to use static + * syncUnforms instead. + * + * @private + */ + ShaderSystem.prototype.syncUniforms = function syncUniforms (group, glProgram) + { + var syncFunc = group.syncUniforms[this.shader.program.id] || this.createSyncGroups(group); + + syncFunc(glProgram.uniformData, group.uniforms, this.renderer); + }; + + ShaderSystem.prototype.createSyncGroups = function createSyncGroups (group) + { + var id = this.getSignature(group, this.shader.program.uniformData); + + if (!this.cache[id]) + { + this.cache[id] = generateUniformsSync(group, this.shader.program.uniformData); + } + + group.syncUniforms[this.shader.program.id] = this.cache[id]; + + return group.syncUniforms[this.shader.program.id]; + }; + + /** + * Takes a uniform group and data and generates a unique signature for them. + * + * @param {PIXI.UniformGroup} group the uniform group to get signature of + * @param {Object} uniformData uniform information generated by the shader + * @returns {String} Unique signature of the uniform group + * @private + */ + ShaderSystem.prototype.getSignature = function getSignature (group, uniformData) + { + var uniforms = group.uniforms; + + var strings = []; + + for (var i in uniforms) + { + strings.push(i); + + if (uniformData[i]) + { + strings.push(uniformData[i].type); + } + } + + return strings.join('-'); + }; + + /** + * Returns the underlying GLShade rof the currently bound shader. + * This can be handy for when you to have a little more control over the setting of your uniforms. + * + * @return {PIXI.GLProgram} the glProgram for the currently bound Shader for this context + */ + ShaderSystem.prototype.getglProgram = function getglProgram () + { + if (this.shader) + { + return this.shader.program.glPrograms[this.renderer.CONTEXT_UID]; + } + + return null; + }; + + /** + * Generates a glProgram version of the Shader provided. + * + * @private + * @param {PIXI.Shader} shader the shader that the glProgram will be based on. + * @return {PIXI.GLProgram} A shiny new glProgram! + */ + ShaderSystem.prototype.generateShader = function generateShader (shader) + { + var gl = this.gl; + + var program = shader.program; + + var attribMap = {}; + + for (var i in program.attributeData) + { + attribMap[i] = program.attributeData[i].location; + } + + var shaderProgram = compileProgram(gl, program.vertexSrc, program.fragmentSrc, attribMap); + var uniformData = {}; + + for (var i$1 in program.uniformData) + { + var data = program.uniformData[i$1]; + + uniformData[i$1] = { + location: gl.getUniformLocation(shaderProgram, i$1), + value: defaultValue(data.type, data.size), + }; + } + + var glProgram = new GLProgram(shaderProgram, uniformData); + + program.glPrograms[this.renderer.CONTEXT_UID] = glProgram; + + return glProgram; + }; + + /** + * Resets ShaderSystem state, does not affect WebGL state + */ + ShaderSystem.prototype.reset = function reset () + { + this.program = null; + this.shader = null; + }; + + /** + * Destroys this System and removes all its textures + */ + ShaderSystem.prototype.destroy = function destroy () + { + // TODO implement destroy method for ShaderSystem + this.destroyed = true; + }; + + return ShaderSystem; +}(System)); + +/** + * Maps gl blend combinations to WebGL. + * + * @memberof PIXI + * @function mapWebGLBlendModesToPixi + * @private + * @param {WebGLRenderingContext} gl - The rendering context. + * @param {number[][]} [array=[]] - The array to output into. + * @return {number[][]} Mapped modes. + */ +function mapWebGLBlendModesToPixi(gl, array) +{ + if ( array === void 0 ) array = []; + + // TODO - premultiply alpha would be different. + // add a boolean for that! + array[BLEND_MODES.NORMAL] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD] = [gl.ONE, gl.ONE]; + array[BLEND_MODES.MULTIPLY] = [gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SCREEN] = [gl.ONE, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.OVERLAY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DARKEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LIGHTEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_DODGE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_BURN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HARD_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SOFT_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DIFFERENCE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.EXCLUSION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HUE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SATURATION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LUMINOSITY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.NONE] = [0, 0]; + + // not-premultiplied blend modes + array[BLEND_MODES.NORMAL_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD_NPM] = [gl.SRC_ALPHA, gl.ONE, gl.ONE, gl.ONE]; + array[BLEND_MODES.SCREEN_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + + // composite operations + array[BLEND_MODES.SRC_IN] = [gl.DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_OUT] = [gl.ONE_MINUS_DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_ATOP] = [gl.DST_ALPHA, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_OVER] = [gl.ONE_MINUS_DST_ALPHA, gl.ONE]; + array[BLEND_MODES.DST_IN] = [gl.ZERO, gl.SRC_ALPHA]; + array[BLEND_MODES.DST_OUT] = [gl.ZERO, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_ATOP] = [gl.ONE_MINUS_DST_ALPHA, gl.SRC_ALPHA]; + + // SUBTRACT from flash + array[BLEND_MODES.SUBTRACT] = [gl.ONE, gl.ONE, gl.ONE, gl.ONE, gl.FUNC_REVERSE_SUBTRACT, gl.FUNC_ADD]; + + return array; +} + +var BLEND$1 = 0; +var OFFSET$1 = 1; +var CULLING$1 = 2; +var DEPTH_TEST$1 = 3; +var WINDING$1 = 4; + +/** + * System plugin to the renderer to manage WebGL state machines. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StateSystem = /*@__PURE__*/(function (System) { + function StateSystem(renderer) + { + System.call(this, renderer); + + /** + * GL context + * @member {WebGLRenderingContext} + * @readonly + */ + this.gl = null; + + /** + * State ID + * @member {number} + * @readonly + */ + this.stateId = 0; + + /** + * Polygon offset + * @member {number} + * @readonly + */ + this.polygonOffset = 0; + + /** + * Blend mode + * @member {number} + * @default PIXI.BLEND_MODES.NONE + * @readonly + */ + this.blendMode = BLEND_MODES.NONE; + + /** + * Whether current blend equation is different + * @member {boolean} + * @protected + */ + this._blendEq = false; + + /** + * Collection of calls + * @member {function[]} + * @readonly + */ + this.map = []; + + // map functions for when we set state.. + this.map[BLEND$1] = this.setBlend; + this.map[OFFSET$1] = this.setOffset; + this.map[CULLING$1] = this.setCullFace; + this.map[DEPTH_TEST$1] = this.setDepthTest; + this.map[WINDING$1] = this.setFrontFace; + + /** + * Collection of check calls + * @member {function[]} + * @readonly + */ + this.checks = []; + + /** + * Default WebGL State + * @member {PIXI.State} + * @readonly + */ + this.defaultState = new State(); + this.defaultState.blend = true; + this.defaultState.depth = true; + } + + if ( System ) StateSystem.__proto__ = System; + StateSystem.prototype = Object.create( System && System.prototype ); + StateSystem.prototype.constructor = StateSystem; + + StateSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + + this.blendModes = mapWebGLBlendModesToPixi(gl); + + this.set(this.defaultState); + + this.reset(); + }; + + /** + * Sets the current state + * + * @param {*} state - The state to set. + */ + StateSystem.prototype.set = function set (state) + { + state = state || this.defaultState; + + // TODO maybe to an object check? ( this.state === state )? + if (this.stateId !== state.data) + { + var diff = this.stateId ^ state.data; + var i = 0; + + // order from least to most common + while (diff) + { + if (diff & 1) + { + // state change! + this.map[i].call(this, !!(state.data & (1 << i))); + } + + diff = diff >> 1; + i++; + } + + this.stateId = state.data; + } + + // based on the above settings we check for specific modes.. + // for example if blend is active we check and set the blend modes + // or of polygon offset is active we check the poly depth. + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + }; + + /** + * Sets the state, when previous state is unknown + * + * @param {*} state - The state to set + */ + StateSystem.prototype.forceState = function forceState (state) + { + state = state || this.defaultState; + for (var i = 0; i < this.map.length; i++) + { + this.map[i].call(this, !!(state.data & (1 << i))); + } + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + + this.stateId = state.data; + }; + + /** + * Enables or disabled blending. + * + * @param {boolean} value - Turn on or off webgl blending. + */ + StateSystem.prototype.setBlend = function setBlend (value) + { + this.updateCheck(StateSystem.checkBlendMode, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.BLEND); + }; + + /** + * Enables or disable polygon offset fill + * + * @param {boolean} value - Turn on or off webgl polygon offset testing. + */ + StateSystem.prototype.setOffset = function setOffset (value) + { + this.updateCheck(StateSystem.checkPolygonOffset, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.POLYGON_OFFSET_FILL); + }; + + /** + * Sets whether to enable or disable depth test. + * + * @param {boolean} value - Turn on or off webgl depth testing. + */ + StateSystem.prototype.setDepthTest = function setDepthTest (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.DEPTH_TEST); + }; + + /** + * Sets whether to enable or disable cull face. + * + * @param {boolean} value - Turn on or off webgl cull face. + */ + StateSystem.prototype.setCullFace = function setCullFace (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.CULL_FACE); + }; + + /** + * Sets the gl front face. + * + * @param {boolean} value - true is clockwise and false is counter-clockwise + */ + StateSystem.prototype.setFrontFace = function setFrontFace (value) + { + this.gl.frontFace(this.gl[value ? 'CW' : 'CCW']); + }; + + /** + * Sets the blend mode. + * + * @param {number} value - The blend mode to set to. + */ + StateSystem.prototype.setBlendMode = function setBlendMode (value) + { + if (value === this.blendMode) + { + return; + } + + this.blendMode = value; + + var mode = this.blendModes[value]; + var gl = this.gl; + + if (mode.length === 2) + { + gl.blendFunc(mode[0], mode[1]); + } + else + { + gl.blendFuncSeparate(mode[0], mode[1], mode[2], mode[3]); + } + if (mode.length === 6) + { + this._blendEq = true; + gl.blendEquationSeparate(mode[4], mode[5]); + } + else if (this._blendEq) + { + this._blendEq = false; + gl.blendEquationSeparate(gl.FUNC_ADD, gl.FUNC_ADD); + } + }; + + /** + * Sets the polygon offset. + * + * @param {number} value - the polygon offset + * @param {number} scale - the polygon offset scale + */ + StateSystem.prototype.setPolygonOffset = function setPolygonOffset (value, scale) + { + this.gl.polygonOffset(value, scale); + }; + + // used + /** + * Resets all the logic and disables the vaos + */ + StateSystem.prototype.reset = function reset () + { + this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false); + + this.forceState(0); + + this._blendEq = true; + this.blendMode = -1; + this.setBlendMode(0); + }; + + /** + * checks to see which updates should be checked based on which settings have been activated. + * For example, if blend is enabled then we should check the blend modes each time the state is changed + * or if polygon fill is activated then we need to check if the polygon offset changes. + * The idea is that we only check what we have too. + * + * @param {Function} func the checking function to add or remove + * @param {boolean} value should the check function be added or removed. + */ + StateSystem.prototype.updateCheck = function updateCheck (func, value) + { + var index = this.checks.indexOf(func); + + if (value && index === -1) + { + this.checks.push(func); + } + else if (!value && index !== -1) + { + this.checks.splice(index, 1); + } + }; + + /** + * A private little wrapper function that we call to check the blend mode. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkBlendMode = function checkBlendMode (system, state) + { + system.setBlendMode(state.blendMode); + }; + + /** + * A private little wrapper function that we call to check the polygon offset. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkPolygonOffset = function checkPolygonOffset (system, state) + { + system.setPolygonOffset(state.polygonOffset, 0); + }; + + return StateSystem; +}(System)); + +/** + * System plugin to the renderer to manage texture garbage collection on the GPU, + * ensuring that it does not get clogged up with textures that are no longer being used. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var TextureGCSystem = /*@__PURE__*/(function (System) { + function TextureGCSystem(renderer) + { + System.call(this, renderer); + + /** + * Count + * @member {number} + * @readonly + */ + this.count = 0; + + /** + * Check count + * @member {number} + * @readonly + */ + this.checkCount = 0; + + /** + * Maximum idle time, in seconds + * @member {number} + * @see PIXI.settings.GC_MAX_IDLE + */ + this.maxIdle = settings.GC_MAX_IDLE; + + /** + * Maximum number of item to check + * @member {number} + * @see PIXI.settings.GC_MAX_CHECK_COUNT + */ + this.checkCountMax = settings.GC_MAX_CHECK_COUNT; + + /** + * Current garabage collection mode + * @member {PIXI.GC_MODES} + * @see PIXI.settings.GC_MODE + */ + this.mode = settings.GC_MODE; + } + + if ( System ) TextureGCSystem.__proto__ = System; + TextureGCSystem.prototype = Object.create( System && System.prototype ); + TextureGCSystem.prototype.constructor = TextureGCSystem; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.postrender = function postrender () + { + this.count++; + + if (this.mode === GC_MODES.MANUAL) + { + return; + } + + this.checkCount++; + + if (this.checkCount > this.checkCountMax) + { + this.checkCount = 0; + + this.run(); + } + }; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.run = function run () + { + var tm = this.renderer.texture; + var managedTextures = tm.managedTextures; + var wasRemoved = false; + + for (var i = 0; i < managedTextures.length; i++) + { + var texture = managedTextures[i]; + + // only supports non generated textures at the moment! + if (!texture.framebuffer && this.count - texture.touched > this.maxIdle) + { + tm.destroyTexture(texture, true); + managedTextures[i] = null; + wasRemoved = true; + } + } + + if (wasRemoved) + { + var j = 0; + + for (var i$1 = 0; i$1 < managedTextures.length; i$1++) + { + if (managedTextures[i$1] !== null) + { + managedTextures[j++] = managedTextures[i$1]; + } + } + + managedTextures.length = j; + } + }; + + /** + * Removes all the textures within the specified displayObject and its children from the GPU + * + * @param {PIXI.DisplayObject} displayObject - the displayObject to remove the textures from. + */ + TextureGCSystem.prototype.unload = function unload (displayObject) + { + var tm = this.renderer.textureSystem; + + // only destroy non generated textures + if (displayObject._texture && displayObject._texture._glRenderTargets) + { + tm.destroyTexture(displayObject._texture); + } + + for (var i = displayObject.children.length - 1; i >= 0; i--) + { + this.unload(displayObject.children[i]); + } + }; + + return TextureGCSystem; +}(System)); + +/** + * Internal texture for WebGL context + * @class + * @memberof PIXI + */ +var GLTexture = function GLTexture(texture) +{ + /** + * The WebGL texture + * @member {WebGLTexture} + */ + this.texture = texture; + + /** + * Width of texture that was used in texImage2D + * @member {number} + */ + this.width = -1; + + /** + * Height of texture that was used in texImage2D + * @member {number} + */ + this.height = -1; + + /** + * Texture contents dirty flag + * @member {number} + */ + this.dirtyId = -1; + + /** + * Texture style dirty flag + * @member {number} + */ + this.dirtyStyleId = -1; + + /** + * Whether mip levels has to be generated + * @member {boolean} + */ + this.mipmap = false; + + /** + * WrapMode copied from baseTexture + * @member {number} + */ + this.wrapMode = 33071; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.type = 6408; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.internalFormat = 5121; +}; + +/** + * System plugin to the renderer to manage textures. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var TextureSystem = /*@__PURE__*/(function (System) { + function TextureSystem(renderer) + { + System.call(this, renderer); + + // TODO set to max textures... + /** + * Bound textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.boundTextures = []; + /** + * Current location + * @member {number} + * @readonly + */ + this.currentLocation = -1; + + /** + * List of managed textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.managedTextures = []; + + /** + * Did someone temper with textures state? We'll overwrite them when we need to unbind something. + * @member {boolean} + * @private + */ + this._unknownBoundTextures = false; + + /** + * BaseTexture value that shows that we don't know what is bound + * @member {PIXI.BaseTexture} + * @readonly + */ + this.unknownTexture = new BaseTexture(); + } + + if ( System ) TextureSystem.__proto__ = System; + TextureSystem.prototype = Object.create( System && System.prototype ); + TextureSystem.prototype.constructor = TextureSystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + TextureSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + this.webGLVersion = this.renderer.context.webGLVersion; + + var maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS); + + this.boundTextures.length = maxTextures; + + for (var i = 0; i < maxTextures; i++) + { + this.boundTextures[i] = null; + } + + // TODO move this.. to a nice make empty textures class.. + this.emptyTextures = {}; + + var emptyTexture2D = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_2D, emptyTexture2D.texture); + gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4)); + + this.emptyTextures[gl.TEXTURE_2D] = emptyTexture2D; + this.emptyTextures[gl.TEXTURE_CUBE_MAP] = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_CUBE_MAP, this.emptyTextures[gl.TEXTURE_CUBE_MAP].texture); + + for (var i$1 = 0; i$1 < 6; i$1++) + { + gl.texImage2D(gl.TEXTURE_CUBE_MAP_POSITIVE_X + i$1, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, null); + } + + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + + for (var i$2 = 0; i$2 < this.boundTextures.length; i$2++) + { + this.bind(null, i$2); + } + }; + + /** + * Bind a texture to a specific location + * + * If you want to unbind something, please use `unbind(texture)` instead of `bind(null, textureLocation)` + * + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + * @param {number} [location=0] - Location to bind at + */ + TextureSystem.prototype.bind = function bind (texture, location) + { + if ( location === void 0 ) location = 0; + + var ref = this; + var gl = ref.gl; + + if (texture) + { + texture = texture.baseTexture || texture; + + if (texture.valid) + { + texture.touched = this.renderer.textureGC.count; + + var glTexture = texture._glTextures[this.CONTEXT_UID] || this.initTexture(texture); + + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + if (this.boundTextures[location] !== texture) + { + gl.bindTexture(texture.target, glTexture.texture); + } + + if (glTexture.dirtyId !== texture.dirtyId) + { + this.updateTexture(texture); + } + + this.boundTextures[location] = texture; + } + } + else + { + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[gl.TEXTURE_2D].texture); + this.boundTextures[location] = null; + } + }; + + /** + * Resets texture location and bound textures + * + * Actual `bind(null, i)` calls will be performed at next `unbind()` call + */ + TextureSystem.prototype.reset = function reset () + { + this._unknownBoundTextures = true; + this.currentLocation = -1; + + for (var i = 0; i < this.boundTextures.length; i++) + { + this.boundTextures[i] = this.unknownTexture; + } + }; + + /** + * Unbind a texture + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + */ + TextureSystem.prototype.unbind = function unbind (texture) + { + var ref = this; + var gl = ref.gl; + var boundTextures = ref.boundTextures; + + if (this._unknownBoundTextures) + { + this._unknownBoundTextures = false; + // someone changed webGL state, + // we have to be sure that our texture does not appear in multi-texture renderer samplers + for (var i = 0; i < boundTextures.length; i++) + { + if (boundTextures[i] === this.unknownTexture) + { + this.bind(null, i); + } + } + } + + for (var i$1 = 0; i$1 < boundTextures.length; i$1++) + { + if (boundTextures[i$1] === texture) + { + if (this.currentLocation !== i$1) + { + gl.activeTexture(gl.TEXTURE0 + i$1); + this.currentLocation = i$1; + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[texture.target].texture); + boundTextures[i$1] = null; + } + } + }; + + /** + * Initialize a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.initTexture = function initTexture (texture) + { + var glTexture = new GLTexture(this.gl.createTexture()); + + // guarantee an update.. + glTexture.dirtyId = -1; + + texture._glTextures[this.CONTEXT_UID] = glTexture; + + this.managedTextures.push(texture); + texture.on('dispose', this.destroyTexture, this); + + return glTexture; + }; + + TextureSystem.prototype.initTextureType = function initTextureType (texture, glTexture) + { + glTexture.internalFormat = texture.format; + glTexture.type = texture.type; + if (this.webGLVersion !== 2) + { + return; + } + var gl = this.renderer.gl; + + if (texture.type === gl.FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA32F; + } + // that's WebGL1 HALF_FLOAT_OES + // we have to convert it to WebGL HALF_FLOAT + if (texture.type === TYPES.HALF_FLOAT) + { + glTexture.type = gl.HALF_FLOAT; + } + if (glTexture.type === gl.HALF_FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA16F; + } + }; + + /** + * Update a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.updateTexture = function updateTexture (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + var renderer = this.renderer; + + this.initTextureType(texture, glTexture); + + if (texture.resource && texture.resource.upload(renderer, texture, glTexture)) + ; + else + { + // default, renderTexture-like logic + var width = texture.realWidth; + var height = texture.realHeight; + var gl = renderer.gl; + + if (glTexture.width !== width + || glTexture.height !== height + || glTexture.dirtyId < 0) + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(texture.target, 0, + glTexture.internalFormat, + width, + height, + 0, + texture.format, + glTexture.type, + null); + } + } + + // lets only update what changes.. + if (texture.dirtyStyleId !== glTexture.dirtyStyleId) + { + this.updateTextureStyle(texture); + } + glTexture.dirtyId = texture.dirtyId; + }; + + /** + * Deletes the texture from WebGL + * + * @private + * @param {PIXI.BaseTexture|PIXI.Texture} texture - the texture to destroy + * @param {boolean} [skipRemove=false] - Whether to skip removing the texture from the TextureManager. + */ + TextureSystem.prototype.destroyTexture = function destroyTexture (texture, skipRemove) + { + var ref = this; + var gl = ref.gl; + + texture = texture.baseTexture || texture; + + if (texture._glTextures[this.CONTEXT_UID]) + { + this.unbind(texture); + + gl.deleteTexture(texture._glTextures[this.CONTEXT_UID].texture); + texture.off('dispose', this.destroyTexture, this); + + delete texture._glTextures[this.CONTEXT_UID]; + + if (!skipRemove) + { + var i = this.managedTextures.indexOf(texture); + + if (i !== -1) + { + removeItems(this.managedTextures, i, 1); + } + } + } + }; + + /** + * Update texture style such as mipmap flag + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + */ + TextureSystem.prototype.updateTextureStyle = function updateTextureStyle (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + if ((texture.mipmap === MIPMAP_MODES.POW2 || this.webGLVersion !== 2) && !texture.isPowerOfTwo) + { + glTexture.mipmap = 0; + glTexture.wrapMode = WRAP_MODES.CLAMP; + } + else + { + glTexture.mipmap = texture.mipmap >= 1; + glTexture.wrapMode = texture.wrapMode; + } + + if (texture.resource && texture.resource.style(this.renderer, texture, glTexture)) + ; + else + { + this.setStyle(texture, glTexture); + } + + glTexture.dirtyStyleId = texture.dirtyStyleId; + }; + + /** + * Set style for texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + * @param {PIXI.GLTexture} glTexture + */ + TextureSystem.prototype.setStyle = function setStyle (texture, glTexture) + { + var gl = this.gl; + + if (glTexture.mipmap) + { + gl.generateMipmap(texture.target); + } + + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_S, glTexture.wrapMode); + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_T, glTexture.wrapMode); + + if (glTexture.mipmap) + { + /* eslint-disable max-len */ + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR_MIPMAP_LINEAR : gl.NEAREST_MIPMAP_NEAREST); + /* eslint-disable max-len */ + + var anisotropicExt = this.renderer.context.extensions.anisotropicFiltering; + + if (anisotropicExt && texture.anisotropicLevel > 0 && texture.scaleMode === SCALE_MODES.LINEAR) + { + var level = Math.min(texture.anisotropicLevel, gl.getParameter(anisotropicExt.MAX_TEXTURE_MAX_ANISOTROPY_EXT)); + + gl.texParameterf(texture.target, anisotropicExt.TEXTURE_MAX_ANISOTROPY_EXT, level); + } + } + else + { + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + } + + gl.texParameteri(texture.target, gl.TEXTURE_MAG_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + }; + + return TextureSystem; +}(System)); + +var tempMatrix = new Matrix(); + +/** + * The AbstractRenderer is the base for a PixiJS Renderer. It is extended by the {@link PIXI.CanvasRenderer} + * and {@link PIXI.Renderer} which can be used for rendering a PixiJS scene. + * + * @abstract + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var AbstractRenderer = /*@__PURE__*/(function (EventEmitter) { + function AbstractRenderer(system, options) + { + EventEmitter.call(this); + + // Add the default render options + options = Object.assign({}, settings.RENDER_OPTIONS, options); + + // Deprecation notice for renderer roundPixels option + if (options.roundPixels) + { + settings.ROUND_PIXELS = options.roundPixels; + deprecation('5.0.0', 'Renderer roundPixels option is deprecated, please use PIXI.settings.ROUND_PIXELS', 2); + } + + /** + * The supplied constructor options. + * + * @member {Object} + * @readOnly + */ + this.options = options; + + /** + * The type of the renderer. + * + * @member {number} + * @default PIXI.RENDERER_TYPE.UNKNOWN + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.UNKNOWN; + + /** + * Measurements of the screen. (0, 0, screenWidth, screenHeight). + * + * Its safe to use as filterArea or hitArea for the whole stage. + * + * @member {PIXI.Rectangle} + */ + this.screen = new Rectangle(0, 0, options.width, options.height); + + /** + * The canvas element that everything is drawn to. + * + * @member {HTMLCanvasElement} + */ + this.view = options.view || document.createElement('canvas'); + + /** + * The resolution / device pixel ratio of the renderer. + * + * @member {number} + * @default 1 + */ + this.resolution = options.resolution || settings.RESOLUTION; + + /** + * Whether the render view is transparent. + * + * @member {boolean} + */ + this.transparent = options.transparent; + + /** + * Whether CSS dimensions of canvas view should be resized to screen dimensions automatically. + * + * @member {boolean} + */ + this.autoDensity = options.autoDensity || options.autoResize || false; + // autoResize is deprecated, provides fallback support + + /** + * The value of the preserveDrawingBuffer flag affects whether or not the contents of + * the stencil buffer is retained after rendering. + * + * @member {boolean} + */ + this.preserveDrawingBuffer = options.preserveDrawingBuffer; + + /** + * This sets if the CanvasRenderer will clear the canvas or not before the new render pass. + * If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every + * frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect + * to clear the canvas every frame. Disable this by setting this to false. For example, if + * your game has a canvas filling background image you often don't need this set. + * + * @member {boolean} + * @default + */ + this.clearBeforeRender = options.clearBeforeRender; + + /** + * The background color as a number. + * + * @member {number} + * @protected + */ + this._backgroundColor = 0x000000; + + /** + * The background color as an [R, G, B] array. + * + * @member {number[]} + * @protected + */ + this._backgroundColorRgba = [0, 0, 0, 0]; + + /** + * The background color as a string. + * + * @member {string} + * @protected + */ + this._backgroundColorString = '#000000'; + + this.backgroundColor = options.backgroundColor || this._backgroundColor; // run bg color setter + + /** + * This temporary display object used as the parent of the currently being rendered item. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._tempDisplayObjectParent = new Container(); + + /** + * The last root object that the renderer tried to render. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._lastObjectRendered = this._tempDisplayObjectParent; + + /** + * Collection of plugins. + * @readonly + * @member {object} + */ + this.plugins = {}; + } + + if ( EventEmitter ) AbstractRenderer.__proto__ = EventEmitter; + AbstractRenderer.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + AbstractRenderer.prototype.constructor = AbstractRenderer; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },backgroundColor: { configurable: true } }; + + /** + * Initialize the plugins. + * + * @protected + * @param {object} staticMap - The dictionary of statically saved plugins. + */ + AbstractRenderer.prototype.initPlugins = function initPlugins (staticMap) + { + for (var o in staticMap) + { + this.plugins[o] = new (staticMap[o])(this); + } + }; + + /** + * Same as view.width, actual number of pixels in the canvas by horizontal. + * + * @member {number} + * @readonly + * @default 800 + */ + prototypeAccessors.width.get = function () + { + return this.view.width; + }; + + /** + * Same as view.height, actual number of pixels in the canvas by vertical. + * + * @member {number} + * @readonly + * @default 600 + */ + prototypeAccessors.height.get = function () + { + return this.view.height; + }; + + /** + * Resizes the screen and canvas to the specified width and height. + * Canvas dimensions are multiplied by resolution. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + AbstractRenderer.prototype.resize = function resize (screenWidth, screenHeight) + { + this.screen.width = screenWidth; + this.screen.height = screenHeight; + + this.view.width = screenWidth * this.resolution; + this.view.height = screenHeight * this.resolution; + + if (this.autoDensity) + { + this.view.style.width = screenWidth + "px"; + this.view.style.height = screenHeight + "px"; + } + }; + + /** + * Useful function that returns a texture of the display object that can then be used to create sprites + * This can be quite useful if your displayObject is complicated and needs to be reused multiple times. + * + * @param {PIXI.DisplayObject} displayObject - The displayObject the object will be generated from. + * @param {number} scaleMode - Should be one of the scaleMode consts. + * @param {number} resolution - The resolution / device pixel ratio of the texture being generated. + * @param {PIXI.Rectangle} [region] - The region of the displayObject, that shall be rendered, + * if no region is specified, defaults to the local bounds of the displayObject. + * @return {PIXI.RenderTexture} A texture of the graphics object. + */ + AbstractRenderer.prototype.generateTexture = function generateTexture (displayObject, scaleMode, resolution, region) + { + region = region || displayObject.getLocalBounds(); + + // minimum texture size is 1x1, 0x0 will throw an error + if (region.width === 0) { region.width = 1; } + if (region.height === 0) { region.height = 1; } + + var renderTexture = RenderTexture.create(region.width | 0, region.height | 0, scaleMode, resolution); + + tempMatrix.tx = -region.x; + tempMatrix.ty = -region.y; + + this.render(displayObject, renderTexture, false, tempMatrix, !!displayObject.parent); + + return renderTexture; + }; + + /** + * Removes everything from the renderer and optionally removes the Canvas DOM element. + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + */ + AbstractRenderer.prototype.destroy = function destroy (removeView) + { + for (var o in this.plugins) + { + this.plugins[o].destroy(); + this.plugins[o] = null; + } + + if (removeView && this.view.parentNode) + { + this.view.parentNode.removeChild(this.view); + } + + this.plugins = null; + + this.type = RENDERER_TYPE.UNKNOWN; + + this.view = null; + + this.screen = null; + + this.resolution = 0; + + this.transparent = false; + + this.autoDensity = false; + + this.blendModes = null; + + this.options = null; + + this.preserveDrawingBuffer = false; + this.clearBeforeRender = false; + + this._backgroundColor = 0; + this._backgroundColorRgba = null; + this._backgroundColorString = null; + + this._tempDisplayObjectParent = null; + this._lastObjectRendered = null; + }; + + /** + * The background color to fill if not transparent + * + * @member {number} + */ + prototypeAccessors.backgroundColor.get = function () + { + return this._backgroundColor; + }; + + prototypeAccessors.backgroundColor.set = function (value) // eslint-disable-line require-jsdoc + { + this._backgroundColor = value; + this._backgroundColorString = hex2string(value); + hex2rgb(value, this._backgroundColorRgba); + }; + + Object.defineProperties( AbstractRenderer.prototype, prototypeAccessors ); + + return AbstractRenderer; +}(eventemitter3)); + +/** + * The Renderer draws the scene and all its content onto a WebGL enabled canvas. + * + * This renderer should be used for browsers that support WebGL. + * + * This renderer works by automatically managing WebGLBatchesm, so no need for Sprite Batches or Sprite Clouds. + * Don't forget to add the view to your DOM or you will not see anything! + * + * @class + * @memberof PIXI + * @extends PIXI.AbstractRenderer + */ +var Renderer = /*@__PURE__*/(function (AbstractRenderer) { + function Renderer(options) + { + if ( options === void 0 ) options = {}; + + AbstractRenderer.call(this, 'WebGL', options); + + // the options will have been modified here in the super constructor with pixi's default settings.. + options = this.options; + + /** + * The type of this renderer as a standardized const + * + * @member {number} + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.WEBGL; + + /** + * WebGL context, set by the contextSystem (this.context) + * + * @readonly + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.CONTEXT_UID = 0; + + // TODO legacy! + + /** + * Internal signal instances of **runner**, these + * are assigned to each system created. + * @see PIXI.Runner + * @name PIXI.Renderer#runners + * @private + * @type {object} + * @readonly + * @property {PIXI.Runner} destroy - Destroy runner + * @property {PIXI.Runner} contextChange - Context change runner + * @property {PIXI.Runner} reset - Reset runner + * @property {PIXI.Runner} update - Update runner + * @property {PIXI.Runner} postrender - Post-render runner + * @property {PIXI.Runner} prerender - Pre-render runner + * @property {PIXI.Runner} resize - Resize runner + */ + this.runners = { + destroy: new Runner('destroy'), + contextChange: new Runner('contextChange', 1), + reset: new Runner('reset'), + update: new Runner('update'), + postrender: new Runner('postrender'), + prerender: new Runner('prerender'), + resize: new Runner('resize', 2), + }; + + /** + * Global uniforms + * @member {PIXI.UniformGroup} + */ + this.globalUniforms = new UniformGroup({ + projectionMatrix: new Matrix(), + }, true); + + /** + * Mask system instance + * @member {PIXI.systems.MaskSystem} mask + * @memberof PIXI.Renderer# + * @readonly + */ + this.addSystem(MaskSystem, 'mask') + /** + * Context system instance + * @member {PIXI.systems.ContextSystem} context + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ContextSystem, 'context') + /** + * State system instance + * @member {PIXI.systems.StateSystem} state + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StateSystem, 'state') + /** + * Shader system instance + * @member {PIXI.systems.ShaderSystem} shader + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ShaderSystem, 'shader') + /** + * Texture system instance + * @member {PIXI.systems.TextureSystem} texture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureSystem, 'texture') + /** + * Geometry system instance + * @member {PIXI.systems.GeometrySystem} geometry + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(GeometrySystem, 'geometry') + /** + * Framebuffer system instance + * @member {PIXI.systems.FramebufferSystem} framebuffer + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FramebufferSystem, 'framebuffer') + /** + * Stencil system instance + * @member {PIXI.systems.StencilSystem} stencil + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StencilSystem, 'stencil') + /** + * Projection system instance + * @member {PIXI.systems.ProjectionSystem} projection + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ProjectionSystem, 'projection') + /** + * Texture garbage collector system instance + * @member {PIXI.systems.TextureGCSystem} textureGC + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureGCSystem, 'textureGC') + /** + * Filter system instance + * @member {PIXI.systems.FilterSystem} filter + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FilterSystem, 'filter') + /** + * RenderTexture system instance + * @member {PIXI.systems.RenderTextureSystem} renderTexture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(RenderTextureSystem, 'renderTexture') + + /** + * Batch system instance + * @member {PIXI.systems.BatchSystem} batch + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(BatchSystem, 'batch'); + + this.initPlugins(Renderer.__plugins); + + /** + * The options passed in to create a new WebGL context. + */ + if (options.context) + { + this.context.initFromContext(options.context); + } + else + { + this.context.initFromOptions({ + alpha: this.transparent, + antialias: options.antialias, + premultipliedAlpha: this.transparent && this.transparent !== 'notMultiplied', + stencil: true, + preserveDrawingBuffer: options.preserveDrawingBuffer, + powerPreference: this.options.powerPreference, + }); + } + + /** + * Flag if we are rendering to the screen vs renderTexture + * @member {boolean} + * @readonly + * @default true + */ + this.renderingToScreen = true; + + sayHello(this.context.webGLVersion === 2 ? 'WebGL 2' : 'WebGL 1'); + + this.resize(this.options.width, this.options.height); + } + + if ( AbstractRenderer ) Renderer.__proto__ = AbstractRenderer; + Renderer.prototype = Object.create( AbstractRenderer && AbstractRenderer.prototype ); + Renderer.prototype.constructor = Renderer; + + /** + * Add a new system to the renderer. + * @param {Function} ClassRef - Class reference + * @param {string} [name] - Property name for system, if not specified + * will use a static `name` property on the class itself. This + * name will be assigned as s property on the Renderer so make + * sure it doesn't collide with properties on Renderer. + * @return {PIXI.Renderer} Return instance of renderer + */ + Renderer.create = function create (options) + { + if (isWebGLSupported()) + { + return new Renderer(options); + } + + throw new Error('WebGL unsupported in this browser, use "pixi.js-legacy" for fallback canvas2d support.'); + }; + + Renderer.prototype.addSystem = function addSystem (ClassRef, name) + { + if (!name) + { + name = ClassRef.name; + } + + var system = new ClassRef(this); + + if (this[name]) + { + throw new Error(("Whoops! The name \"" + name + "\" is already in use")); + } + + this[name] = system; + + for (var i in this.runners) + { + this.runners[i].add(system); + } + + /** + * Fired after rendering finishes. + * + * @event PIXI.Renderer#postrender + */ + + /** + * Fired before rendering starts. + * + * @event PIXI.Renderer#prerender + */ + + /** + * Fired when the WebGL context is set. + * + * @event PIXI.Renderer#context + * @param {WebGLRenderingContext} gl - WebGL context. + */ + + return this; + }; + + /** + * Renders the object to its WebGL view + * + * @param {PIXI.DisplayObject} displayObject - The object to be rendered. + * @param {PIXI.RenderTexture} [renderTexture] - The render texture to render to. + * @param {boolean} [clear=true] - Should the canvas be cleared before the new render. + * @param {PIXI.Matrix} [transform] - A transform to apply to the render texture before rendering. + * @param {boolean} [skipUpdateTransform=false] - Should we skip the update transform pass? + */ + Renderer.prototype.render = function render (displayObject, renderTexture, clear, transform, skipUpdateTransform) + { + // can be handy to know! + this.renderingToScreen = !renderTexture; + + this.runners.prerender.run(); + this.emit('prerender'); + + // apply a transform at a GPU level + this.projection.transform = transform; + + // no point rendering if our context has been blown up! + if (this.context.isLost) + { + return; + } + + if (!renderTexture) + { + this._lastObjectRendered = displayObject; + } + + if (!skipUpdateTransform) + { + // update the scene graph + var cacheParent = displayObject.parent; + + displayObject.parent = this._tempDisplayObjectParent; + displayObject.updateTransform(); + displayObject.parent = cacheParent; + // displayObject.hitArea = //TODO add a temp hit area + } + + this.renderTexture.bind(renderTexture); + this.batch.currentRenderer.start(); + + if (clear !== undefined ? clear : this.clearBeforeRender) + { + this.renderTexture.clear(); + } + + displayObject.render(this); + + // apply transform.. + this.batch.currentRenderer.flush(); + + if (renderTexture) + { + renderTexture.baseTexture.update(); + } + + this.runners.postrender.run(); + + // reset transform after render + this.projection.transform = null; + + this.emit('postrender'); + }; + + /** + * Resizes the WebGL view to the specified width and height. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + Renderer.prototype.resize = function resize (screenWidth, screenHeight) + { + AbstractRenderer.prototype.resize.call(this, screenWidth, screenHeight); + + this.runners.resize.run(screenWidth, screenHeight); + }; + + /** + * Resets the WebGL state so you can render things however you fancy! + * + * @return {PIXI.Renderer} Returns itself. + */ + Renderer.prototype.reset = function reset () + { + this.runners.reset.run(); + + return this; + }; + + /** + * Clear the frame buffer + */ + Renderer.prototype.clear = function clear () + { + this.framebuffer.bind(); + this.framebuffer.clear(); + }; + + /** + * Removes everything from the renderer (event listeners, spritebatch, etc...) + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + * See: https://github.com/pixijs/pixi.js/issues/2233 + */ + Renderer.prototype.destroy = function destroy (removeView) + { + this.runners.destroy.run(); + + for (var r in this.runners) + { + this.runners[r].destroy(); + } + + // call base destroy + AbstractRenderer.prototype.destroy.call(this, removeView); + + // TODO nullify all the managers.. + this.gl = null; + }; + + /** + * Collection of installed plugins. These are included by default in PIXI, but can be excluded + * by creating a custom build. Consult the README for more information about creating custom + * builds and excluding plugins. + * @name PIXI.Renderer#plugins + * @type {object} + * @readonly + * @property {PIXI.accessibility.AccessibilityManager} accessibility Support tabbing interactive elements. + * @property {PIXI.extract.Extract} extract Extract image data from renderer. + * @property {PIXI.interaction.InteractionManager} interaction Handles mouse, touch and pointer events. + * @property {PIXI.prepare.Prepare} prepare Pre-render display objects. + */ + + /** + * Adds a plugin to the renderer. + * + * @method + * @param {string} pluginName - The name of the plugin. + * @param {Function} ctor - The constructor function or class for the plugin. + */ + Renderer.registerPlugin = function registerPlugin (pluginName, ctor) + { + Renderer.__plugins = Renderer.__plugins || {}; + Renderer.__plugins[pluginName] = ctor; + }; + + return Renderer; +}(AbstractRenderer)); + +/** + * This helper function will automatically detect which renderer you should be using. + * WebGL is the preferred renderer as it is a lot faster. If WebGL is not supported by + * the browser then this function will return a canvas renderer + * + * @memberof PIXI + * @function autoDetectRenderer + * @param {object} [options] - The optional renderer parameters + * @param {number} [options.width=800] - the width of the renderers view + * @param {number} [options.height=600] - the height of the renderers view + * @param {HTMLCanvasElement} [options.view] - the canvas to use as a view, optional + * @param {boolean} [options.transparent=false] - If the render view is transparent, default false + * @param {boolean} [options.autoDensity=false] - Resizes renderer view in CSS pixels to allow for + * resolutions other than 1 + * @param {boolean} [options.antialias=false] - sets antialias + * @param {boolean} [options.preserveDrawingBuffer=false] - enables drawing buffer preservation, enable this if you + * need to call toDataUrl on the webgl context + * @param {number} [options.backgroundColor=0x000000] - The background color of the rendered area + * (shown if not transparent). + * @param {boolean} [options.clearBeforeRender=true] - This sets if the renderer will clear the canvas or + * not before the new render pass. + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the renderer, retina would be 2 + * @param {boolean} [options.forceCanvas=false] - prevents selection of WebGL renderer, even if such is present, this + * option only is available when using **pixi.js-legacy** or **@pixi/canvas-renderer** modules, otherwise + * it is ignored. + * @param {boolean} [options.forceFXAA=false] - forces FXAA antialiasing to be used over native. + * FXAA is faster, but may not always look as great **webgl only** + * @param {string} [options.powerPreference] - Parameter passed to webgl context, set to "high-performance" + * for devices with dual graphics card **webgl only** + * @return {PIXI.Renderer|PIXI.CanvasRenderer} Returns WebGL renderer if available, otherwise CanvasRenderer + */ +function autoDetectRenderer(options) +{ + return Renderer.create(options); +} + +var defaultFilter = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +/** + * Used by the batcher to draw batches. + * Each one of these contains all information required to draw a bound geometry. + * + * @class + * @memberof PIXI + */ +var BatchDrawCall = function BatchDrawCall() +{ + this.textures = []; + this.ids = []; + this.blend = 0; + this.textureCount = 0; + this.start = 0; + this.size = 0; + this.type = 4; +}; + +/** + * Flexible wrapper around `ArrayBuffer` that also provides + * typed array views on demand. + * + * @class + * @memberof PIXI + */ +var ViewableBuffer = function ViewableBuffer(size) +{ + /** + * Underlying `ArrayBuffer` that holds all the data + * and is of capacity `size`. + * + * @member {ArrayBuffer} + */ + this.rawBinaryData = new ArrayBuffer(size); + + /** + * View on the raw binary data as a `Uint32Array`. + * + * @member {Uint32Array} + */ + this.uint32View = new Uint32Array(this.rawBinaryData); + + /** + * View on the raw binary data as a `Float32Array`. + * + * @member {Float32Array} + */ + this.float32View = new Float32Array(this.rawBinaryData); +}; + +var prototypeAccessors$5$1 = { int8View: { configurable: true },uint8View: { configurable: true },int16View: { configurable: true },uint16View: { configurable: true },int32View: { configurable: true } }; + +/** + * View on the raw binary data as a `Int8Array`. + * + * @member {Int8Array} + */ +prototypeAccessors$5$1.int8View.get = function () +{ + if (!this._int8View) + { + this._int8View = new Int8Array(this.rawBinaryData); + } + + return this._int8View; +}; + +/** + * View on the raw binary data as a `Uint8Array`. + * + * @member {Uint8Array} + */ +prototypeAccessors$5$1.uint8View.get = function () +{ + if (!this._uint8View) + { + this._uint8View = new Uint8Array(this.rawBinaryData); + } + + return this._uint8View; +}; + +/** + * View on the raw binary data as a `Int16Array`. + * + * @member {Int16Array} + */ +prototypeAccessors$5$1.int16View.get = function () +{ + if (!this._int16View) + { + this._int16View = new Int16Array(this.rawBinaryData); + } + + return this._int16View; +}; + +/** + * View on the raw binary data as a `Uint16Array`. + * + * @member {Uint16Array} + */ +prototypeAccessors$5$1.uint16View.get = function () +{ + if (!this._uint16View) + { + this._uint16View = new Uint16Array(this.rawBinaryData); + } + + return this._uint16View; +}; + +/** + * View on the raw binary data as a `Int32Array`. + * + * @member {Int32Array} + */ +prototypeAccessors$5$1.int32View.get = function () +{ + if (!this._int32View) + { + this._int32View = new Int32Array(this.rawBinaryData); + } + + return this._int32View; +}; + +/** + * Returns the view of the given type. + * + * @param {string} type - One of `int8`, `uint8`, `int16`, + *`uint16`, `int32`, `uint32`, and `float32`. + * @return {object} typed array of given type + */ +ViewableBuffer.prototype.view = function view (type) +{ + return this[(type + "View")]; +}; + +/** + * Destroys all buffer references. Do not use after calling + * this. + */ +ViewableBuffer.prototype.destroy = function destroy () +{ + this.rawBinaryData = null; + this._int8View = null; + this._uint8View = null; + this._int16View = null; + this._uint16View = null; + this._int32View = null; + this.uint32View = null; + this.float32View = null; +}; + +ViewableBuffer.sizeOf = function sizeOf (type) +{ + switch (type) + { + case 'int8': + case 'uint8': + return 1; + case 'int16': + case 'uint16': + return 2; + case 'int32': + case 'uint32': + case 'float32': + return 4; + default: + throw new Error((type + " isn't a valid view type")); + } +}; + +Object.defineProperties( ViewableBuffer.prototype, prototypeAccessors$5$1 ); + +/** + * Renderer dedicated to drawing and batching sprites. + * + * This is the default batch renderer. It buffers objects + * with texture-based geometries and renders them in + * batches. It uploads multiple textures to the GPU to + * reduce to the number of draw calls. + * + * @class + * @protected + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var AbstractBatchRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function AbstractBatchRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + /** + * This is used to generate a shader that can + * color each vertex based on a `aTextureId` + * attribute that points to an texture in `uSampler`. + * + * This enables the objects with different textures + * to be drawn in the same draw call. + * + * You can customize your shader by creating your + * custom shader generator. + * + * @member {PIXI.BatchShaderGenerator} + * @protected + */ + this.shaderGenerator = null; + + /** + * The class that represents the geometry of objects + * that are going to be batched with this. + * + * @member {object} + * @default PIXI.BatchGeometry + * @protected + */ + this.geometryClass = null; + + /** + * Size of data being buffered per vertex in the + * attribute buffers (in floats). By default, the + * batch-renderer plugin uses 6: + * + * | aVertexPosition | 2 | + * |-----------------|---| + * | aTextureCoords | 2 | + * | aColor | 1 | + * | aTextureId | 1 | + * + * @member {number} + * @readonly + */ + this.vertexSize = null; + + /** + * The WebGL state in which this renderer will work. + * + * @member {PIXI.State} + * @readonly + */ + this.state = State.for2d(); + + /** + * The number of bufferable objects before a flush + * occurs automatically. + * + * @member {number} + * @default settings.SPRITE_MAX_TEXTURES + */ + this.size = 2000 * 4;// settings.SPRITE_BATCH_SIZE, 2000 is a nice balance between mobile/desktop + + /** + * Total count of all vertices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._vertexCount = 0; + + /** + * Total count of all indices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._indexCount = 0; + + /** + * Buffer of objects that are yet to be rendered. + * + * @member {PIXI.DisplayObject[]} + * @private + */ + this._bufferedElements = []; + + /** + * Number of elements that are buffered and are + * waiting to be flushed. + * + * @member {number} + * @private + */ + this._bufferSize = 0; + + /** + * This shader is generated by `this.shaderGenerator`. + * + * It is generated specifically to handle the required + * number of textures being batched together. + * + * @member {PIXI.Shader} + * @protected + */ + this._shader = null; + + /** + * Pool of `this.geometryClass` geometry objects + * that store buffers. They are used to pass data + * to the shader on each draw call. + * + * These are never re-allocated again, unless a + * context change occurs; however, the pool may + * be expanded if required. + * + * @member {PIXI.Geometry[]} + * @private + * @see PIXI.AbstractBatchRenderer.contextChange + */ + this._packedGeometries = []; + + /** + * Size of `this._packedGeometries`. It can be expanded + * if more than `this._packedGeometryPoolSize` flushes + * occur in a single frame. + * + * @member {number} + * @private + */ + this._packedGeometryPoolSize = 2; + + /** + * A flush may occur multiple times in a single + * frame. On iOS devices or when + * `settings.CAN_UPLOAD_SAME_BUFFER` is false, the + * batch renderer does not upload data to the same + * `WebGLBuffer` for performance reasons. + * + * This is the index into `packedGeometries` that points to + * geometry holding the most recent buffers. + * + * @member {number} + * @private + */ + this._flushId = 0; + + /** + * Pool of `BatchDrawCall` objects that `flush` used + * to create "batches" of the objects being rendered. + * + * These are never re-allocated again. + * + * @member BatchDrawCall[] + * @private + */ + this._drawCalls = []; + + for (var k = 0; k < this.size / 4; k++) + { // initialize the draw-calls pool to max size. + this._drawCalls[k] = new BatchDrawCall(); + } + + /** + * Pool of `ViewableBuffer` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing attributes. + * + * The first buffer has a size of 8; each subsequent + * buffer has double capacity of its previous. + * + * @member {PIXI.ViewableBuffer} + * @private + * @see PIXI.AbstractBatchRenderer#getAttributeBuffer + */ + this._aBuffers = {}; + + /** + * Pool of `Uint16Array` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing indices. + * + * The first buffer has a size of 12; each subsequent + * buffer has double capacity of its previous. + * + * @member {Uint16Array[]} + * @private + * @see PIXI.AbstractBatchRenderer#getIndexBuffer + */ + this._iBuffers = {}; + + /** + * Maximum number of textures that can be uploaded to + * the GPU under the current context. It is initialized + * properly in `this.contextChange`. + * + * @member {number} + * @see PIXI.AbstractBatchRenderer#contextChange + * @readonly + */ + this.MAX_TEXTURES = 1; + + this.renderer.on('prerender', this.onPrerender, this); + renderer.runners.contextChange.add(this); + } + + if ( ObjectRenderer ) AbstractBatchRenderer.__proto__ = ObjectRenderer; + AbstractBatchRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + AbstractBatchRenderer.prototype.constructor = AbstractBatchRenderer; + + /** + * Handles the `contextChange` signal. + * + * It calculates `this.MAX_TEXTURES` and allocating the + * packed-geometry object pool. + */ + AbstractBatchRenderer.prototype.contextChange = function contextChange () + { + var gl = this.renderer.gl; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + this.MAX_TEXTURES = 1; + } + else + { + // step 1: first check max textures the GPU can handle. + this.MAX_TEXTURES = Math.min( + gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS), + settings.SPRITE_MAX_TEXTURES); + + // step 2: check the maximum number of if statements the shader can have too.. + this.MAX_TEXTURES = checkMaxIfStatementsInShader( + this.MAX_TEXTURES, gl); + } + + this._shader = this.shaderGenerator.generateShader(this.MAX_TEXTURES); + + // we use the second shader as the first one depending on your browser + // may omit aTextureId as it is not used by the shader so is optimized out. + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + /* eslint-disable max-len */ + this._packedGeometries[i] = new (this.geometryClass)(); + } + }; + + /** + * Handles the `prerender` signal. + * + * It ensures that flushes start from the first geometry + * object again. + */ + AbstractBatchRenderer.prototype.onPrerender = function onPrerender () + { + this._flushId = 0; + }; + + /** + * Buffers the "batchable" object. It need not be rendered + * immediately. + * + * @param {PIXI.Sprite} sprite - the sprite to render when + * using this spritebatch + */ + AbstractBatchRenderer.prototype.render = function render (element) + { + if (!element._texture.valid) + { + return; + } + + if (this._vertexCount + (element.vertexData.length / 2) > this.size) + { + this.flush(); + } + + this._vertexCount += element.vertexData.length / 2; + this._indexCount += element.indices.length; + this._bufferedElements[this._bufferSize++] = element; + }; + + /** + * Renders the content _now_ and empties the current batch. + */ + AbstractBatchRenderer.prototype.flush = function flush () + { + if (this._vertexCount === 0) + { + return; + } + + var attributeBuffer = this.getAttributeBuffer(this._vertexCount); + var indexBuffer = this.getIndexBuffer(this._indexCount); + var gl = this.renderer.gl; + + var ref = this; + var elements = ref._bufferedElements; + var drawCalls = ref._drawCalls; + var MAX_TEXTURES = ref.MAX_TEXTURES; + var packedGeometries = ref._packedGeometries; + var vertexSize = ref.vertexSize; + + var touch = this.renderer.textureGC.count; + + var index = 0; + var _indexCount = 0; + + var nextTexture; + var currentTexture; + var textureCount = 0; + + var currentGroup = drawCalls[0]; + var groupCount = 0; + + var blendMode = -1;// blend-mode of previous element/sprite/object! + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.blend = blendMode; + + var TICK = ++BaseTexture._globalBatch; + var i; + + for (i = 0; i < this._bufferSize; ++i) + { + var sprite = elements[i]; + + elements[i] = null; + nextTexture = sprite._texture.baseTexture; + + var spriteBlendMode = premultiplyBlendMode[ + nextTexture.premultiplyAlpha ? 1 : 0][sprite.blendMode]; + + if (blendMode !== spriteBlendMode) + { + blendMode = spriteBlendMode; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + currentGroup.size = _indexCount - currentGroup.start; + + currentGroup = drawCalls[groupCount++]; + currentGroup.textureCount = 0; + currentGroup.blend = blendMode; + currentGroup.start = _indexCount; + } + + nextTexture.touched = touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + this.packInterleavedGeometry(sprite, attributeBuffer, + indexBuffer, index, _indexCount); + + // push a graphics.. + index += (sprite.vertexData.length / 2) * vertexSize; + _indexCount += sprite.indices.length; + } + + BaseTexture._globalBatch = TICK; + currentGroup.size = _indexCount - currentGroup.start; + + if (!settings.CAN_UPLOAD_SAME_BUFFER) + { /* Usually on iOS devices, where the browser doesn't + like uploads to the same buffer in a single frame. */ + if (this._packedGeometryPoolSize <= this._flushId) + { + this._packedGeometryPoolSize++; + packedGeometries[this._flushId] = new (this.geometryClass)(); + } + + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.bind(packedGeometries[this._flushId]); + this.renderer.geometry.updateBuffers(); + this._flushId++; + } + else + { + // lets use the faster option, always use buffer number 0 + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.updateBuffers(); + } + + var textureSystem = this.renderer.texture; + var stateSystem = this.renderer.state; + + // Upload textures and do the draw calls + for (i = 0; i < groupCount; i++) + { + var group = drawCalls[i]; + var groupTextureCount = group.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + textureSystem.bind(group.textures[j], j); + group.textures[j] = null; + } + + stateSystem.setBlendMode(group.blend); + gl.drawElements(group.type, group.size, gl.UNSIGNED_SHORT, group.start * 2); + } + + // reset elements for the next flush + this._bufferSize = 0; + this._vertexCount = 0; + this._indexCount = 0; + }; + + /** + * Starts a new sprite batch. + */ + AbstractBatchRenderer.prototype.start = function start () + { + this.renderer.state.set(this.state); + + this.renderer.shader.bind(this._shader); + + if (settings.CAN_UPLOAD_SAME_BUFFER) + { + // bind buffer #0, we don't need others + this.renderer.geometry.bind(this._packedGeometries[this._flushId]); + } + }; + + /** + * Stops and flushes the current batch. + */ + AbstractBatchRenderer.prototype.stop = function stop () + { + this.flush(); + }; + + /** + * Destroys this `AbstractBatchRenderer`. It cannot be used again. + */ + AbstractBatchRenderer.prototype.destroy = function destroy () + { + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + if (this._packedGeometries[i]) + { + this._packedGeometries[i].destroy(); + } + } + + this.renderer.off('prerender', this.onPrerender, this); + + this._aBuffers = null; + this._iBuffers = null; + this._packedGeometries = null; + this._drawCalls = null; + + if (this._shader) + { + this._shader.destroy(); + this._shader = null; + } + + ObjectRenderer.prototype.destroy.call(this); + }; + + /** + * Fetches an attribute buffer from `this._aBuffers` that + * can hold atleast `size` floats. + * + * @param {number} size - minimum capacity required + * @return {ViewableBuffer} - buffer than can hold atleast `size` floats + * @private + */ + AbstractBatchRenderer.prototype.getAttributeBuffer = function getAttributeBuffer (size) + { + // 8 vertices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 8)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 8; + + if (this._aBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._aBuffers[roundedSize]; + + if (!buffer) + { + this._aBuffers[roundedSize] = buffer = new ViewableBuffer(roundedSize * this.vertexSize * 4); + } + + return buffer; + }; + + /** + * Fetches an index buffer from `this._iBuffers` that can + * has atleast `size` capacity. + * + * @param {number} size - minimum required capacity + * @return {Uint16Array} - buffer that can fit `size` + * indices. + * @private + */ + AbstractBatchRenderer.prototype.getIndexBuffer = function getIndexBuffer (size) + { + // 12 indices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 12)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 12; + + if (this._iBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._iBuffers[roundedSizeIndex]; + + if (!buffer) + { + this._iBuffers[roundedSizeIndex] = buffer = new Uint16Array(roundedSize); + } + + return buffer; + }; + + /** + * Takes the four batching parameters of `element`, interleaves + * and pushes them into the batching attribute/index buffers given. + * + * It uses these properties: `vertexData` `uvs`, `textureId` and + * `indicies`. It also uses the "tint" of the base-texture, if + * present. + * + * @param {PIXI.Sprite} element - element being rendered + * @param {PIXI.ViewableBuffer} attributeBuffer - attribute buffer. + * @param {Uint16Array} indexBuffer - index buffer + * @param {number} aIndex - number of floats already in the attribute buffer + * @param {number} iIndex - number of indices already in `indexBuffer` + */ + AbstractBatchRenderer.prototype.packInterleavedGeometry = function packInterleavedGeometry (element, attributeBuffer, indexBuffer, aIndex, iIndex) + { + var uint32View = attributeBuffer.uint32View; + var float32View = attributeBuffer.float32View; + + var packedVertices = aIndex / this.vertexSize; + var uvs = element.uvs; + var indicies = element.indices; + var vertexData = element.vertexData; + var textureId = element._texture.baseTexture._id; + + var alpha = Math.min(element.worldAlpha, 1.0); + var argb = (alpha < 1.0 + && element._texture.baseTexture.premultiplyAlpha) + ? premultiplyTint(element._tintRGB, alpha) + : element._tintRGB + (alpha * 255 << 24); + + // lets not worry about tint! for now.. + for (var i = 0; i < vertexData.length; i += 2) + { + float32View[aIndex++] = vertexData[i]; + float32View[aIndex++] = vertexData[i + 1]; + float32View[aIndex++] = uvs[i]; + float32View[aIndex++] = uvs[i + 1]; + uint32View[aIndex++] = argb; + float32View[aIndex++] = textureId; + } + + for (var i$1 = 0; i$1 < indicies.length; i$1++) + { + indexBuffer[iIndex++] = packedVertices + indicies[i$1]; + } + }; + + return AbstractBatchRenderer; +}(ObjectRenderer)); + +/** + * Helper that generates batching multi-texture shader. Use it with your new BatchRenderer + * + * @class + * @memberof PIXI + */ +var BatchShaderGenerator = function BatchShaderGenerator(vertexSrc, fragTemplate) +{ + /** + * Reference to the vertex shader source. + * + * @member {string} + */ + this.vertexSrc = vertexSrc; + + /** + * Reference to the fragement shader template. Must contain "%count%" and "%forloop%". + * + * @member {string} + */ + this.fragTemplate = fragTemplate; + + this.programCache = {}; + this.defaultGroupCache = {}; + + if (fragTemplate.indexOf('%count%') < 0) + { + throw new Error('Fragment template must contain "%count%".'); + } + + if (fragTemplate.indexOf('%forloop%') < 0) + { + throw new Error('Fragment template must contain "%forloop%".'); + } +}; + +BatchShaderGenerator.prototype.generateShader = function generateShader (maxTextures) +{ + if (!this.programCache[maxTextures]) + { + var sampleValues = new Int32Array(maxTextures); + + for (var i = 0; i < maxTextures; i++) + { + sampleValues[i] = i; + } + + this.defaultGroupCache[maxTextures] = UniformGroup.from({ uSamplers: sampleValues }, true); + + var fragmentSrc = this.fragTemplate; + + fragmentSrc = fragmentSrc.replace(/%count%/gi, ("" + maxTextures)); + fragmentSrc = fragmentSrc.replace(/%forloop%/gi, this.generateSampleSrc(maxTextures)); + + this.programCache[maxTextures] = new Program(this.vertexSrc, fragmentSrc); + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: this.defaultGroupCache[maxTextures], + }; + + return new Shader(this.programCache[maxTextures], uniforms); +}; + +BatchShaderGenerator.prototype.generateSampleSrc = function generateSampleSrc (maxTextures) +{ + var src = ''; + + src += '\n'; + src += '\n'; + + for (var i = 0; i < maxTextures; i++) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxTextures - 1) + { + src += "if(vTextureId < " + i + ".5)"; + } + + src += '\n{'; + src += "\n\tcolor = texture2D(uSamplers[" + i + "], vTextureCoord);"; + src += '\n}'; + } + + src += '\n'; + src += '\n'; + + return src; +}; + +/** + * Geometry used to batch standard PIXI content (e.g. Mesh, Sprite, Graphics objects). + * + * @class + * @memberof PIXI + */ +var BatchGeometry = /*@__PURE__*/(function (Geometry) { + function BatchGeometry(_static) + { + if ( _static === void 0 ) _static = false; + + Geometry.call(this); + + /** + * Buffer used for position, color, texture IDs + * + * @member {PIXI.Buffer} + * @protected + */ + this._buffer = new Buffer$1(null, _static, false); + + /** + * Index buffer data + * + * @member {PIXI.Buffer} + * @protected + */ + this._indexBuffer = new Buffer$1(null, _static, true); + + this.addAttribute('aVertexPosition', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aTextureCoord', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aColor', this._buffer, 4, true, TYPES.UNSIGNED_BYTE) + .addAttribute('aTextureId', this._buffer, 1, true, TYPES.FLOAT) + .addIndex(this._indexBuffer); + } + + if ( Geometry ) BatchGeometry.__proto__ = Geometry; + BatchGeometry.prototype = Object.create( Geometry && Geometry.prototype ); + BatchGeometry.prototype.constructor = BatchGeometry; + + return BatchGeometry; +}(Geometry)); + +var defaultVertex$2 = "precision highp float;\nattribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\nattribute float aTextureId;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform vec4 tint;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vTextureId = aTextureId;\n vColor = aColor * tint;\n}\n"; + +var defaultFragment$2 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\nuniform sampler2D uSamplers[%count%];\n\nvoid main(void){\n vec4 color;\n %forloop%\n gl_FragColor = color * vColor;\n}\n"; + +/** + * @class + * @memberof PIXI + * @hideconstructor + */ +var BatchPluginFactory = function BatchPluginFactory () {}; + +var staticAccessors$1$1 = { defaultVertexSrc: { configurable: true },defaultFragmentTemplate: { configurable: true } }; + +BatchPluginFactory.create = function create (options) +{ + var ref = Object.assign({ + vertex: defaultVertex$2, + fragment: defaultFragment$2, + geometryClass: BatchGeometry, + vertexSize: 6, + }, options); + var vertex = ref.vertex; + var fragment = ref.fragment; + var vertexSize = ref.vertexSize; + var geometryClass = ref.geometryClass; + + return /*@__PURE__*/(function (AbstractBatchRenderer) { + function BatchPlugin(renderer) + { + AbstractBatchRenderer.call(this, renderer); + + this.shaderGenerator = new BatchShaderGenerator(vertex, fragment); + this.geometryClass = geometryClass; + this.vertexSize = vertexSize; + } + + if ( AbstractBatchRenderer ) BatchPlugin.__proto__ = AbstractBatchRenderer; + BatchPlugin.prototype = Object.create( AbstractBatchRenderer && AbstractBatchRenderer.prototype ); + BatchPlugin.prototype.constructor = BatchPlugin; + + return BatchPlugin; + }(AbstractBatchRenderer)); +}; + +/** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultVertexSrc.get = function () +{ + return defaultVertex$2; +}; + +/** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultFragmentTemplate.get = function () +{ + return defaultFragment$2; +}; + +Object.defineProperties( BatchPluginFactory, staticAccessors$1$1 ); + +// Setup the default BatchRenderer plugin, this is what +// we'll actually export at the root level +var BatchRenderer = BatchPluginFactory.create(); + +/*! + * @pixi/extract - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/extract is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var TEMP_RECT = new Rectangle(); +var BYTES_PER_PIXEL = 4; + +/** + * The extract manager provides functionality to export content from the renderers. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.extract` + * + * @class + * @memberof PIXI.extract + */ +var Extract = function Extract(renderer) +{ + this.renderer = renderer; + /** + * Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture + * + * @member {PIXI.extract.Extract} extract + * @memberof PIXI.Renderer# + * @see PIXI.extract.Extract + */ + renderer.extract = this; +}; + +/** + * Will return a HTML Image of the target + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {HTMLImageElement} HTML Image of the target + */ +Extract.prototype.image = function image (target, format, quality) +{ + var image = new Image(); + + image.src = this.base64(target, format, quality); + + return image; +}; + +/** + * Will return a a base64 encoded string of this target. It works by calling + * `Extract.getCanvas` and then running toDataURL on that. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {string} A base64 encoded string of the texture. + */ +Extract.prototype.base64 = function base64 (target, format, quality) +{ + return this.canvas(target).toDataURL(format, quality); +}; + +/** + * Creates a Canvas element, renders this target to it and then returns it. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {HTMLCanvasElement} A Canvas element with the texture rendered on. + */ +Extract.prototype.canvas = function canvas (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var flipY = false; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + flipY = false; + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = this.renderer.resolution; + + flipY = true; + + frame = TEMP_RECT; + frame.width = this.renderer.width; + frame.height = this.renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = Math.floor(frame.width * resolution); + var height = Math.floor(frame.height * resolution); + + var canvasBuffer = new CanvasRenderTarget(width, height, 1); + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + // add the pixels to the canvas + var canvasData = canvasBuffer.context.getImageData(0, 0, width, height); + + Extract.arrayPostDivide(webglPixels, canvasData.data); + + canvasBuffer.context.putImageData(canvasData, 0, 0); + + // pulling pixels + if (flipY) + { + canvasBuffer.context.scale(1, -1); + canvasBuffer.context.drawImage(canvasBuffer.canvas, 0, -height); + } + + if (generated) + { + renderTexture.destroy(true); + } + + // send the canvas back.. + return canvasBuffer.canvas; +}; + +/** + * Will return a one-dimensional array containing the pixel data of the entire texture in RGBA + * order, with integer values between 0 and 255 (included). + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {Uint8Array} One-dimensional array containing the pixel data of the entire texture + */ +Extract.prototype.pixels = function pixels (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + + // bind the buffer + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = renderer.resolution; + + frame = TEMP_RECT; + frame.width = renderer.width; + frame.height = renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = frame.width * resolution; + var height = frame.height * resolution; + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + if (generated) + { + renderTexture.destroy(true); + } + + Extract.arrayPostDivide(webglPixels, webglPixels); + + return webglPixels; +}; + +/** + * Destroys the extract + * + */ +Extract.prototype.destroy = function destroy () +{ + this.renderer.extract = null; + this.renderer = null; +}; + +/** + * Takes premultiplied pixel data and produces regular pixel data + * + * @private + * @param pixels {number[] | Uint8Array | Uint8ClampedArray} array of pixel data + * @param out {number[] | Uint8Array | Uint8ClampedArray} output array + */ +Extract.arrayPostDivide = function arrayPostDivide (pixels, out) +{ + for (var i = 0; i < pixels.length; i += 4) + { + var alpha = out[i + 3] = pixels[i + 3]; + + if (alpha !== 0) + { + out[i] = Math.round(Math.min(pixels[i] * 255.0 / alpha, 255.0)); + out[i + 1] = Math.round(Math.min(pixels[i + 1] * 255.0 / alpha, 255.0)); + out[i + 2] = Math.round(Math.min(pixels[i + 2] * 255.0 / alpha, 255.0)); + } + else + { + out[i] = pixels[i]; + out[i + 1] = pixels[i + 1]; + out[i + 2] = pixels[i + 2]; + } + } +}; + +/*! + * @pixi/interaction - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/interaction is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Holds all information related to an Interaction event + * + * @class + * @memberof PIXI.interaction + */ +var InteractionData = function InteractionData() +{ + /** + * This point stores the global coords of where the touch/mouse event happened + * + * @member {PIXI.Point} + */ + this.global = new Point(); + + /** + * The target Sprite that was interacted with + * + * @member {PIXI.Sprite} + */ + this.target = null; + + /** + * When passed to an event handler, this will be the original DOM Event that was captured + * + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent + * @member {MouseEvent|TouchEvent|PointerEvent} + */ + this.originalEvent = null; + + /** + * Unique identifier for this interaction + * + * @member {number} + */ + this.identifier = null; + + /** + * Indicates whether or not the pointer device that created the event is the primary pointer. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary + * @type {Boolean} + */ + this.isPrimary = false; + + /** + * Indicates which button was pressed on the mouse or pointer device to trigger the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button + * @type {number} + */ + this.button = 0; + + /** + * Indicates which buttons are pressed on the mouse or pointer device when the event is triggered. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/buttons + * @type {number} + */ + this.buttons = 0; + + /** + * The width of the pointer's contact along the x-axis, measured in CSS pixels. + * radiusX of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width + * @type {number} + */ + this.width = 0; + + /** + * The height of the pointer's contact along the y-axis, measured in CSS pixels. + * radiusY of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height + * @type {number} + */ + this.height = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX + * @type {number} + */ + this.tiltX = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY + * @type {number} + */ + this.tiltY = 0; + + /** + * The type of pointer that triggered the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType + * @type {string} + */ + this.pointerType = null; + + /** + * Pressure applied by the pointing device during the event. A Touch's force property + * will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure + * @type {number} + */ + this.pressure = 0; + + /** + * From TouchEvents (not PointerEvents triggered by touches), the rotationAngle of the Touch. + * @see https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle + * @type {number} + */ + this.rotationAngle = 0; + + /** + * Twist of a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.twist = 0; + + /** + * Barrel pressure on a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.tangentialPressure = 0; +}; + +var prototypeAccessors$6 = { pointerId: { configurable: true } }; + +/** + * The unique identifier of the pointer. It will be the same as `identifier`. + * @readonly + * @member {number} + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId + */ +prototypeAccessors$6.pointerId.get = function () +{ + return this.identifier; +}; + +/** + * This will return the local coordinates of the specified displayObject for this InteractionData + * + * @param {PIXI.DisplayObject} displayObject - The DisplayObject that you would like the local + * coords off + * @param {PIXI.Point} [point] - A Point object in which to store the value, optional (otherwise + * will create a new point) + * @param {PIXI.Point} [globalPos] - A Point object containing your custom global coords, optional + * (otherwise will use the current global coords) + * @return {PIXI.Point} A point containing the coordinates of the InteractionData position relative + * to the DisplayObject + */ +InteractionData.prototype.getLocalPosition = function getLocalPosition (displayObject, point, globalPos) +{ + return displayObject.worldTransform.applyInverse(globalPos || this.global, point); +}; + +/** + * Copies properties from normalized event data. + * + * @param {Touch|MouseEvent|PointerEvent} event The normalized event data + */ +InteractionData.prototype.copyEvent = function copyEvent (event) +{ + // isPrimary should only change on touchstart/pointerdown, so we don't want to overwrite + // it with "false" on later events when our shim for it on touch events might not be + // accurate + if (event.isPrimary) + { + this.isPrimary = true; + } + this.button = event.button; + // event.buttons is not available in all browsers (ie. Safari), but it does have a non-standard + // event.which property instead, which conveys the same information. + this.buttons = Number.isInteger(event.buttons) ? event.buttons : event.which; + this.width = event.width; + this.height = event.height; + this.tiltX = event.tiltX; + this.tiltY = event.tiltY; + this.pointerType = event.pointerType; + this.pressure = event.pressure; + this.rotationAngle = event.rotationAngle; + this.twist = event.twist || 0; + this.tangentialPressure = event.tangentialPressure || 0; +}; + +/** + * Resets the data for pooling. + */ +InteractionData.prototype.reset = function reset () +{ + // isPrimary is the only property that we really need to reset - everything else is + // guaranteed to be overwritten + this.isPrimary = false; +}; + +Object.defineProperties( InteractionData.prototype, prototypeAccessors$6 ); + +/** + * Event class that mimics native DOM events. + * + * @class + * @memberof PIXI.interaction + */ +var InteractionEvent = function InteractionEvent() +{ + /** + * Whether this event will continue propagating in the tree. + * + * Remaining events for the {@link stopsPropagatingAt} object + * will still be dispatched. + * + * @member {boolean} + */ + this.stopped = false; + + /** + * At which object this event stops propagating. + * + * @private + * @member {PIXI.DisplayObject} + */ + this.stopsPropagatingAt = null; + + /** + * Whether we already reached the element we want to + * stop propagating at. This is important for delayed events, + * where we start over deeper in the tree again. + * + * @private + * @member {boolean} + */ + this.stopPropagationHint = false; + + /** + * The object which caused this event to be dispatched. + * For listener callback see {@link PIXI.interaction.InteractionEvent.currentTarget}. + * + * @member {PIXI.DisplayObject} + */ + this.target = null; + + /** + * The object whose event listener’s callback is currently being invoked. + * + * @member {PIXI.DisplayObject} + */ + this.currentTarget = null; + + /** + * Type of the event + * + * @member {string} + */ + this.type = null; + + /** + * InteractionData related to this event + * + * @member {PIXI.interaction.InteractionData} + */ + this.data = null; +}; + +/** + * Prevents event from reaching any objects other than the current object. + * + */ +InteractionEvent.prototype.stopPropagation = function stopPropagation () +{ + this.stopped = true; + this.stopPropagationHint = true; + this.stopsPropagatingAt = this.currentTarget; +}; + +/** + * Resets the event. + */ +InteractionEvent.prototype.reset = function reset () +{ + this.stopped = false; + this.stopsPropagatingAt = null; + this.stopPropagationHint = false; + this.currentTarget = null; + this.target = null; +}; + +/** + * DisplayObjects with the {@link PIXI.interaction.interactiveTarget} mixin use this class to track interactions + * + * @class + * @private + * @memberof PIXI.interaction + */ +var InteractionTrackingData = function InteractionTrackingData(pointerId) +{ + this._pointerId = pointerId; + this._flags = InteractionTrackingData.FLAGS.NONE; +}; + +var prototypeAccessors$1$3 = { pointerId: { configurable: true },flags: { configurable: true },none: { configurable: true },over: { configurable: true },rightDown: { configurable: true },leftDown: { configurable: true } }; + +/** + * + * @private + * @param {number} flag - The interaction flag to set + * @param {boolean} yn - Should the flag be set or unset + */ +InteractionTrackingData.prototype._doSet = function _doSet (flag, yn) +{ + if (yn) + { + this._flags = this._flags | flag; + } + else + { + this._flags = this._flags & (~flag); + } +}; + +/** + * Unique pointer id of the event + * + * @readonly + * @private + * @member {number} + */ +prototypeAccessors$1$3.pointerId.get = function () +{ + return this._pointerId; +}; + +/** + * State of the tracking data, expressed as bit flags + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.flags.get = function () +{ + return this._flags; +}; + +prototypeAccessors$1$3.flags.set = function (flags) // eslint-disable-line require-jsdoc +{ + this._flags = flags; +}; + +/** + * Is the tracked event inactive (not over or down)? + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.none.get = function () +{ + return this._flags === this.constructor.FLAGS.NONE; +}; + +/** + * Is the tracked event over the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.over.get = function () +{ + return (this._flags & this.constructor.FLAGS.OVER) !== 0; +}; + +prototypeAccessors$1$3.over.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.OVER, yn); +}; + +/** + * Did the right mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.rightDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.RIGHT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.rightDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.RIGHT_DOWN, yn); +}; + +/** + * Did the left mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.leftDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.LEFT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.leftDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.LEFT_DOWN, yn); +}; + +Object.defineProperties( InteractionTrackingData.prototype, prototypeAccessors$1$3 ); + +InteractionTrackingData.FLAGS = Object.freeze({ + NONE: 0, + OVER: 1 << 0, + LEFT_DOWN: 1 << 1, + RIGHT_DOWN: 1 << 2, +}); + +/** + * Interface for classes that represent a hit area. + * + * It is implemented by the following classes: + * - {@link PIXI.Circle} + * - {@link PIXI.Ellipse} + * - {@link PIXI.Polygon} + * - {@link PIXI.RoundedRectangle} + * + * @interface IHitArea + * @memberof PIXI + */ + +/** + * Checks whether the x and y coordinates given are contained within this area + * + * @method + * @name contains + * @memberof PIXI.IHitArea# + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this area + */ + +/** + * Default property values of interactive objects + * Used by {@link PIXI.interaction.InteractionManager} to automatically give all DisplayObjects these properties + * + * @private + * @name interactiveTarget + * @type {Object} + * @memberof PIXI.interaction + * @example + * function MyObject() {} + * + * Object.assign( + * DisplayObject.prototype, + * PIXI.interaction.interactiveTarget + * ); + */ +var interactiveTarget = { + + /** + * Enable interaction events for the DisplayObject. Touch, pointer and mouse + * events will not be emitted unless `interactive` is set to `true`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.on('tap', (event) => { + * //handle event + * }); + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + interactive: false, + + /** + * Determines if the children to the displayObject can be clicked/touched + * Setting this to false allows PixiJS to bypass a recursive `hitTest` function + * + * @member {boolean} + * @memberof PIXI.Container# + */ + interactiveChildren: true, + + /** + * Interaction shape. Children will be hit first, then this shape will be checked. + * Setting this will cause this shape to be checked in hit tests rather than the displayObject's bounds. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.hitArea = new PIXI.Rectangle(0, 0, 100, 100); + * @member {PIXI.IHitArea} + * @memberof PIXI.DisplayObject# + */ + hitArea: null, + + /** + * If enabled, the mouse cursor use the pointer behavior when hovered over the displayObject if it is interactive + * Setting this changes the 'cursor' property to `'pointer'`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.buttonMode = true; + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + get buttonMode() + { + return this.cursor === 'pointer'; + }, + set buttonMode(value) + { + if (value) + { + this.cursor = 'pointer'; + } + else if (this.cursor === 'pointer') + { + this.cursor = null; + } + }, + + /** + * This defines what cursor mode is used when the mouse cursor + * is hovered over the displayObject. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.cursor = 'wait'; + * @see https://developer.mozilla.org/en/docs/Web/CSS/cursor + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + cursor: null, + + /** + * Internal set of all active pointers, by identifier + * + * @member {Map} + * @memberof PIXI.DisplayObject# + * @private + */ + get trackedPointers() + { + if (this._trackedPointers === undefined) { this._trackedPointers = {}; } + + return this._trackedPointers; + }, + + /** + * Map of all tracked pointers, by identifier. Use trackedPointers to access. + * + * @private + * @type {Map} + */ + _trackedPointers: undefined, +}; + +// Mix interactiveTarget into DisplayObject.prototype, +// after deprecation has been handled +DisplayObject.mixin(interactiveTarget); + +var MOUSE_POINTER_ID = 1; + +// helpers for hitTest() - only used inside hitTest() +var hitTestEvent = { + target: null, + data: { + global: null, + }, +}; + +/** + * The interaction manager deals with mouse, touch and pointer events. + * + * Any DisplayObject can be interactive if its `interactive` property is set to true. + * + * This manager also supports multitouch. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.interaction` + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI.interaction + */ +var InteractionManager = /*@__PURE__*/(function (EventEmitter) { + function InteractionManager(renderer, options) + { + EventEmitter.call(this); + + options = options || {}; + + /** + * The renderer this interaction manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * Should default browser actions automatically be prevented. + * Does not apply to pointer events for backwards compatibility + * preventDefault on pointer events stops mouse events from firing + * Thus, for every pointer event, there will always be either a mouse of touch event alongside it. + * + * @member {boolean} + * @default true + */ + this.autoPreventDefault = options.autoPreventDefault !== undefined ? options.autoPreventDefault : true; + + /** + * Frequency in milliseconds that the mousemove, mouseover & mouseout interaction events will be checked. + * + * @member {number} + * @default 10 + */ + this.interactionFrequency = options.interactionFrequency || 10; + + /** + * The mouse data + * + * @member {PIXI.interaction.InteractionData} + */ + this.mouse = new InteractionData(); + this.mouse.identifier = MOUSE_POINTER_ID; + + // setting the mouse to start off far off screen will mean that mouse over does + // not get called before we even move the mouse. + this.mouse.global.set(-999999); + + /** + * Actively tracked InteractionData + * + * @private + * @member {Object.} + */ + this.activeInteractionData = {}; + this.activeInteractionData[MOUSE_POINTER_ID] = this.mouse; + + /** + * Pool of unused InteractionData + * + * @private + * @member {PIXI.interaction.InteractionData[]} + */ + this.interactionDataPool = []; + + /** + * An event data object to handle all the event tracking/dispatching + * + * @member {object} + */ + this.eventData = new InteractionEvent(); + + /** + * The DOM element to bind to. + * + * @protected + * @member {HTMLElement} + */ + this.interactionDOMElement = null; + + /** + * This property determines if mousemove and touchmove events are fired only when the cursor + * is over the object. + * Setting to true will make things work more in line with how the DOM version works. + * Setting to false can make things easier for things like dragging + * It is currently set to false as this is how PixiJS used to work. This will be set to true in + * future versions of pixi. + * + * @member {boolean} + * @default false + */ + this.moveWhenInside = false; + + /** + * Have events been attached to the dom element? + * + * @protected + * @member {boolean} + */ + this.eventsAdded = false; + + /** + * Is the mouse hovering over the renderer? + * + * @protected + * @member {boolean} + */ + this.mouseOverRenderer = false; + + /** + * Does the device support touch events + * https://www.w3.org/TR/touch-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsTouchEvents = 'ontouchstart' in window; + + /** + * Does the device support pointer events + * https://www.w3.org/Submission/pointer-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsPointerEvents = !!window.PointerEvent; + + // this will make it so that you don't have to call bind all the time + + /** + * @private + * @member {Function} + */ + this.onPointerUp = this.onPointerUp.bind(this); + this.processPointerUp = this.processPointerUp.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerCancel = this.onPointerCancel.bind(this); + this.processPointerCancel = this.processPointerCancel.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerDown = this.onPointerDown.bind(this); + this.processPointerDown = this.processPointerDown.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerMove = this.onPointerMove.bind(this); + this.processPointerMove = this.processPointerMove.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOut = this.onPointerOut.bind(this); + this.processPointerOverOut = this.processPointerOverOut.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOver = this.onPointerOver.bind(this); + + /** + * Dictionary of how different cursor modes are handled. Strings are handled as CSS cursor + * values, objects are handled as dictionaries of CSS values for interactionDOMElement, + * and functions are called instead of changing the CSS. + * Default CSS cursor values are provided for 'default' and 'pointer' modes. + * @member {Object.} + */ + this.cursorStyles = { + default: 'inherit', + pointer: 'pointer', + }; + + /** + * The mode of the cursor that is being used. + * The value of this is a key from the cursorStyles dictionary. + * + * @member {string} + */ + this.currentCursorMode = null; + + /** + * Internal cached let. + * + * @private + * @member {string} + */ + this.cursor = null; + + /** + * Internal cached let. + * + * @private + * @member {PIXI.Point} + */ + this._tempPoint = new Point(); + + /** + * The current resolution / device pixel ratio. + * + * @member {number} + * @default 1 + */ + this.resolution = 1; + + /** + * Delayed pointer events. Used to guarantee correct ordering of over/out events. + * + * @private + * @member {Array} + */ + this.delayedEvents = []; + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display + * object. + * + * @event PIXI.interaction.InteractionManager#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. + * + * @event PIXI.interaction.InteractionManager#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. + * + * @event PIXI.interaction.InteractionManager#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. + * + * @event PIXI.interaction.InteractionManager#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. + * + * @event PIXI.interaction.InteractionManager#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. + * + * @event PIXI.interaction.InteractionManager#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown}. + * + * @event PIXI.interaction.InteractionManager#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.interaction.InteractionManager#event:rightdown}. + * + * @event PIXI.interaction.InteractionManager#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object + * + * @event PIXI.interaction.InteractionManager#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * + * @event PIXI.interaction.InteractionManager#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * Not always fired when some buttons are held down while others are released. In those cases, + * use [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown} and + * [mouseup]{@link PIXI.interaction.InteractionManager#event:mouseup} instead. + * + * @event PIXI.interaction.InteractionManager#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event + * + * @event PIXI.interaction.InteractionManager#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * + * @event PIXI.interaction.InteractionManager#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.interaction.InteractionManager#event:pointerdown}. + * + * @event PIXI.interaction.InteractionManager#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object + * + * @event PIXI.interaction.InteractionManager#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * + * @event PIXI.interaction.InteractionManager#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * + * @event PIXI.interaction.InteractionManager#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch + * + * @event PIXI.interaction.InteractionManager#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * + * @event PIXI.interaction.InteractionManager#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.interaction.InteractionManager#event:touchstart}. + * + * @event PIXI.interaction.InteractionManager#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * + * @event PIXI.interaction.InteractionManager#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display. + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.DisplayObject#event:mousedown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.DisplayObject#event:rightdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.DisplayObject#event:pointerdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.DisplayObject#event:touchstart}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + this.setTargetElement(this.renderer.view, this.renderer.resolution); + } + + if ( EventEmitter ) InteractionManager.__proto__ = EventEmitter; + InteractionManager.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + InteractionManager.prototype.constructor = InteractionManager; + + /** + * Hit tests a point against the display tree, returning the first interactive object that is hit. + * + * @param {PIXI.Point} globalPoint - A point to hit test with, in global space. + * @param {PIXI.Container} [root] - The root display object to start from. If omitted, defaults + * to the last rendered root of the associated renderer. + * @return {PIXI.DisplayObject} The hit display object, if any. + */ + InteractionManager.prototype.hitTest = function hitTest (globalPoint, root) + { + // clear the target for our hit test + hitTestEvent.target = null; + // assign the global point + hitTestEvent.data.global = globalPoint; + // ensure safety of the root + if (!root) + { + root = this.renderer._lastObjectRendered; + } + // run the hit test + this.processInteractive(hitTestEvent, root, null, true); + // return our found object - it'll be null if we didn't hit anything + + return hitTestEvent.target; + }; + + /** + * Sets the DOM element which will receive mouse/touch events. This is useful for when you have + * other DOM elements on top of the renderers Canvas element. With this you'll be bale to delegate + * another DOM element to receive those events. + * + * @param {HTMLElement} element - the DOM element which will receive mouse and touch events. + * @param {number} [resolution=1] - The resolution / device pixel ratio of the new element (relative to the canvas). + */ + InteractionManager.prototype.setTargetElement = function setTargetElement (element, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + this.removeEvents(); + + this.interactionDOMElement = element; + + this.resolution = resolution; + + this.addEvents(); + }; + + /** + * Registers all the DOM events + * + * @private + */ + InteractionManager.prototype.addEvents = function addEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.add(this.update, this, UPDATE_PRIORITY.INTERACTION); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = 'none'; + this.interactionDOMElement.style['-ms-touch-action'] = 'none'; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = 'none'; + } + + /** + * These events are added first, so that if pointer events are normalized, they are fired + * in the same order as non-normalized events. ie. pointer event 1st, mouse / touch 2nd + */ + if (this.supportsPointerEvents) + { + window.document.addEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('pointerdown', this.onPointerDown, true); + // pointerout is fired in addition to pointerup (for touch events) and pointercancel + // we already handle those, so for the purposes of what we do in onPointerOut, we only + // care about the pointerleave event + this.interactionDOMElement.addEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('pointerover', this.onPointerOver, true); + window.addEventListener('pointercancel', this.onPointerCancel, true); + window.addEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.addEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('mouseover', this.onPointerOver, true); + window.addEventListener('mouseup', this.onPointerUp, true); + } + + // always look directly for touch events so that we can provide original data + // In a future version we should change this to being just a fallback and rely solely on + // PointerEvents whenever available + if (this.supportsTouchEvents) + { + this.interactionDOMElement.addEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.addEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.addEventListener('touchmove', this.onPointerMove, true); + } + + this.eventsAdded = true; + }; + + /** + * Removes all the DOM events that were previously registered + * + * @private + */ + InteractionManager.prototype.removeEvents = function removeEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.remove(this.update, this); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = ''; + this.interactionDOMElement.style['-ms-touch-action'] = ''; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = ''; + } + + if (this.supportsPointerEvents) + { + window.document.removeEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('pointerdown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('pointerover', this.onPointerOver, true); + window.removeEventListener('pointercancel', this.onPointerCancel, true); + window.removeEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.removeEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('mouseover', this.onPointerOver, true); + window.removeEventListener('mouseup', this.onPointerUp, true); + } + + if (this.supportsTouchEvents) + { + this.interactionDOMElement.removeEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.removeEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.removeEventListener('touchmove', this.onPointerMove, true); + } + + this.interactionDOMElement = null; + + this.eventsAdded = false; + }; + + /** + * Updates the state of interactive objects. + * Invoked by a throttled ticker update from {@link PIXI.Ticker.system}. + * + * @param {number} deltaTime - time delta since last tick + */ + InteractionManager.prototype.update = function update (deltaTime) + { + this._deltaTime += deltaTime; + + if (this._deltaTime < this.interactionFrequency) + { + return; + } + + this._deltaTime = 0; + + if (!this.interactionDOMElement) + { + return; + } + + // if the user move the mouse this check has already been done using the mouse move! + if (this.didMove) + { + this.didMove = false; + + return; + } + + this.cursor = null; + + // Resets the flag as set by a stopPropagation call. This flag is usually reset by a user interaction of any kind, + // but there was a scenario of a display object moving under a static mouse cursor. + // In this case, mouseover and mouseevents would not pass the flag test in dispatchEvent function + for (var k in this.activeInteractionData) + { + // eslint-disable-next-line no-prototype-builtins + if (this.activeInteractionData.hasOwnProperty(k)) + { + var interactionData = this.activeInteractionData[k]; + + if (interactionData.originalEvent && interactionData.pointerType !== 'touch') + { + var interactionEvent = this.configureInteractionEventForDOMEvent( + this.eventData, + interactionData.originalEvent, + interactionData + ); + + this.processInteractive( + interactionEvent, + this.renderer._lastObjectRendered, + this.processPointerOverOut, + true + ); + } + } + } + + this.setCursorMode(this.cursor); + }; + + /** + * Sets the current cursor mode, handling any callbacks or CSS style changes. + * + * @param {string} mode - cursor mode, a key from the cursorStyles dictionary + */ + InteractionManager.prototype.setCursorMode = function setCursorMode (mode) + { + mode = mode || 'default'; + // if the mode didn't actually change, bail early + if (this.currentCursorMode === mode) + { + return; + } + this.currentCursorMode = mode; + var style = this.cursorStyles[mode]; + + // only do things if there is a cursor style for it + if (style) + { + switch (typeof style) + { + case 'string': + // string styles are handled as cursor CSS + this.interactionDOMElement.style.cursor = style; + break; + case 'function': + // functions are just called, and passed the cursor mode + style(mode); + break; + case 'object': + // if it is an object, assume that it is a dictionary of CSS styles, + // apply it to the interactionDOMElement + Object.assign(this.interactionDOMElement.style, style); + break; + } + } + else if (typeof mode === 'string' && !Object.prototype.hasOwnProperty.call(this.cursorStyles, mode)) + { + // if it mode is a string (not a Symbol) and cursorStyles doesn't have any entry + // for the mode, then assume that the dev wants it to be CSS for the cursor. + this.interactionDOMElement.style.cursor = mode; + } + }; + + /** + * Dispatches an event on the display object that was interacted with + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.dispatchEvent = function dispatchEvent (displayObject, eventString, eventData) + { + // Even if the event was stopped, at least dispatch any remaining events + // for the same display object. + if (!eventData.stopPropagationHint || displayObject === eventData.stopsPropagatingAt) + { + eventData.currentTarget = displayObject; + eventData.type = eventString; + + displayObject.emit(eventString, eventData); + + if (displayObject[eventString]) + { + displayObject[eventString](eventData); + } + } + }; + + /** + * Puts a event on a queue to be dispatched later. This is used to guarantee correct + * ordering of over/out events. + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.delayDispatchEvent = function delayDispatchEvent (displayObject, eventString, eventData) + { + this.delayedEvents.push({ displayObject: displayObject, eventString: eventString, eventData: eventData }); + }; + + /** + * Maps x and y coords from a DOM object and maps them correctly to the PixiJS view. The + * resulting value is stored in the point. This takes into account the fact that the DOM + * element could be scaled and positioned anywhere on the screen. + * + * @param {PIXI.Point} point - the point that the result will be stored in + * @param {number} x - the x coord of the position to map + * @param {number} y - the y coord of the position to map + */ + InteractionManager.prototype.mapPositionToPoint = function mapPositionToPoint (point, x, y) + { + var rect; + + // IE 11 fix + if (!this.interactionDOMElement.parentElement) + { + rect = { x: 0, y: 0, width: 0, height: 0 }; + } + else + { + rect = this.interactionDOMElement.getBoundingClientRect(); + } + + var resolutionMultiplier = 1.0 / this.resolution; + + point.x = ((x - rect.left) * (this.interactionDOMElement.width / rect.width)) * resolutionMultiplier; + point.y = ((y - rect.top) * (this.interactionDOMElement.height / rect.height)) * resolutionMultiplier; + }; + + /** + * This function is provides a neat way of crawling through the scene graph and running a + * specified function on all interactive objects it finds. It will also take care of hit + * testing the interactive objects and passes the hit across in the function. + * + * @protected + * @param {PIXI.interaction.InteractionEvent} interactionEvent - event containing the point that + * is tested for collision + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the displayObject + * that will be hit test (recursively crawls its children) + * @param {Function} [func] - the function that will be called on each interactive object. The + * interactionEvent, displayObject and hit will be passed to the function + * @param {boolean} [hitTest] - this indicates if the objects inside should be hit test against the point + * @param {boolean} [interactive] - Whether the displayObject is interactive + * @param {boolean} [skipDelayed] - Whether to process delayed events before returning. This is + * used to avoid processing them too early during recursive calls. + * @return {boolean} returns true if the displayObject hit the point + */ + InteractionManager.prototype.processInteractive = function processInteractive (interactionEvent, displayObject, func, hitTest, interactive, skipDelayed) + { + if (!displayObject || !displayObject.visible) + { + return false; + } + + var point = interactionEvent.data.global; + + // Took a little while to rework this function correctly! But now it is done and nice and optimized! ^_^ + // + // This function will now loop through all objects and then only hit test the objects it HAS + // to, not all of them. MUCH faster.. + // An object will be hit test if the following is true: + // + // 1: It is interactive. + // 2: It belongs to a parent that is interactive AND one of the parents children have not already been hit. + // + // As another little optimization once an interactive object has been hit we can carry on + // through the scenegraph, but we know that there will be no more hits! So we can avoid extra hit tests + // A final optimization is that an object is not hit test directly if a child has already been hit. + + interactive = displayObject.interactive || interactive; + + var hit = false; + var interactiveParent = interactive; + + // Flag here can set to false if the event is outside the parents hitArea or mask + var hitTestChildren = true; + + // If there is a hitArea, no need to test against anything else if the pointer is not within the hitArea + // There is also no longer a need to hitTest children. + if (displayObject.hitArea) + { + if (hitTest) + { + displayObject.worldTransform.applyInverse(point, this._tempPoint); + if (!displayObject.hitArea.contains(this._tempPoint.x, this._tempPoint.y)) + { + hitTest = false; + hitTestChildren = false; + } + else + { + hit = true; + } + } + interactiveParent = false; + } + // If there is a mask, no need to hitTest against anything else if the pointer is not within the mask. + // We still want to hitTestChildren, however, to ensure a mouseout can still be generated. + // https://github.com/pixijs/pixi.js/issues/5135 + else if (displayObject._mask) + { + if (hitTest) + { + if (!(displayObject._mask.containsPoint && displayObject._mask.containsPoint(point))) + { + hitTest = false; + } + } + } + + // ** FREE TIP **! If an object is not interactive or has no buttons in it + // (such as a game scene!) set interactiveChildren to false for that displayObject. + // This will allow PixiJS to completely ignore and bypass checking the displayObjects children. + if (hitTestChildren && displayObject.interactiveChildren && displayObject.children) + { + var children = displayObject.children; + + for (var i = children.length - 1; i >= 0; i--) + { + var child = children[i]; + + // time to get recursive.. if this function will return if something is hit.. + var childHit = this.processInteractive(interactionEvent, child, func, hitTest, interactiveParent, true); + + if (childHit) + { + // its a good idea to check if a child has lost its parent. + // this means it has been removed whilst looping so its best + if (!child.parent) + { + continue; + } + + // we no longer need to hit test any more objects in this container as we we + // now know the parent has been hit + interactiveParent = false; + + // If the child is interactive , that means that the object hit was actually + // interactive and not just the child of an interactive object. + // This means we no longer need to hit test anything else. We still need to run + // through all objects, but we don't need to perform any hit tests. + + if (childHit) + { + if (interactionEvent.target) + { + hitTest = false; + } + hit = true; + } + } + } + } + + // no point running this if the item is not interactive or does not have an interactive parent. + if (interactive) + { + // if we are hit testing (as in we have no hit any objects yet) + // We also don't need to worry about hit testing if once of the displayObjects children + // has already been hit - but only if it was interactive, otherwise we need to keep + // looking for an interactive child, just in case we hit one + if (hitTest && !interactionEvent.target) + { + // already tested against hitArea if it is defined + if (!displayObject.hitArea && displayObject.containsPoint) + { + if (displayObject.containsPoint(point)) + { + hit = true; + } + } + } + + if (displayObject.interactive) + { + if (hit && !interactionEvent.target) + { + interactionEvent.target = displayObject; + } + + if (func) + { + func(interactionEvent, displayObject, !!hit); + } + } + } + + var delayedEvents = this.delayedEvents; + + if (delayedEvents.length && !skipDelayed) + { + // Reset the propagation hint, because we start deeper in the tree again. + interactionEvent.stopPropagationHint = false; + + var delayedLen = delayedEvents.length; + + this.delayedEvents = []; + + for (var i$1 = 0; i$1 < delayedLen; i$1++) + { + var ref = delayedEvents[i$1]; + var displayObject$1 = ref.displayObject; + var eventString = ref.eventString; + var eventData = ref.eventData; + + // When we reach the object we wanted to stop propagating at, + // set the propagation hint. + if (eventData.stopsPropagatingAt === displayObject$1) + { + eventData.stopPropagationHint = true; + } + + this.dispatchEvent(displayObject$1, eventString, eventData); + } + } + + return hit; + }; + + /** + * Is called when the pointer button is pressed down on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being pressed down + */ + InteractionManager.prototype.onPointerDown = function onPointerDown (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + /** + * No need to prevent default on natural pointer events, as there are no side effects + * Normalized events, however, may have the double mousedown/touchstart issue on the native android browser, + * so still need to be prevented. + */ + + // Guaranteed that there will be at least one event in events, and all events must have the same pointer type + + if (this.autoPreventDefault && events[0].isNormalized) + { + var cancelable = originalEvent.cancelable || !('cancelable' in originalEvent); + + if (cancelable) + { + originalEvent.preventDefault(); + } + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerDown, true); + + this.emit('pointerdown', interactionEvent); + if (event.pointerType === 'touch') + { + this.emit('touchstart', interactionEvent); + } + // emit a mouse event for "pen" pointers, the way a browser would emit a fallback event + else if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? 'rightdown' : 'mousedown', this.eventData); + } + } + }; + + /** + * Processes the result of the pointer down check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerDown = function processPointerDown (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + var id = interactionEvent.data.identifier; + + if (hit) + { + if (!displayObject.trackedPointers[id]) + { + displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + this.dispatchEvent(displayObject, 'pointerdown', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchstart', interactionEvent); + } + else if (data.pointerType === 'mouse' || data.pointerType === 'pen') + { + var isRightButton = data.button === 2; + + if (isRightButton) + { + displayObject.trackedPointers[id].rightDown = true; + } + else + { + displayObject.trackedPointers[id].leftDown = true; + } + + this.dispatchEvent(displayObject, isRightButton ? 'rightdown' : 'mousedown', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being released + * @param {boolean} cancelled - true if the pointer is cancelled + * @param {Function} func - Function passed to {@link processInteractive} + */ + InteractionManager.prototype.onPointerComplete = function onPointerComplete (originalEvent, cancelled, func) + { + var events = this.normalizeToPointerData(originalEvent); + + var eventLen = events.length; + + // if the event wasn't targeting our canvas, then consider it to be pointerupoutside + // in all cases (unless it was a pointercancel) + var eventAppend = originalEvent.target !== this.interactionDOMElement ? 'outside' : ''; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + // perform hit testing for events targeting our canvas or cancel events + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, func, cancelled || !eventAppend); + + this.emit(cancelled ? 'pointercancel' : ("pointerup" + eventAppend), interactionEvent); + + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? ("rightup" + eventAppend) : ("mouseup" + eventAppend), interactionEvent); + } + else if (event.pointerType === 'touch') + { + this.emit(cancelled ? 'touchcancel' : ("touchend" + eventAppend), interactionEvent); + this.releaseInteractionDataForPointerId(event.pointerId, interactionData); + } + } + }; + + /** + * Is called when the pointer button is cancelled + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerCancel = function onPointerCancel (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, true, this.processPointerCancel); + }; + + /** + * Processes the result of the pointer cancel check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + */ + InteractionManager.prototype.processPointerCancel = function processPointerCancel (interactionEvent, displayObject) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + if (displayObject.trackedPointers[id] !== undefined) + { + delete displayObject.trackedPointers[id]; + this.dispatchEvent(displayObject, 'pointercancel', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchcancel', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerUp = function onPointerUp (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, false, this.processPointerUp); + }; + + /** + * Processes the result of the pointer up check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerUp = function processPointerUp (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var trackingData = displayObject.trackedPointers[id]; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + // need to track mouse down status in the mouse block so that we can emit + // event in a later block + var isMouseTap = false; + + // Mouse only + if (isMouse) + { + var isRightButton = data.button === 2; + + var flags = InteractionTrackingData.FLAGS; + + var test = isRightButton ? flags.RIGHT_DOWN : flags.LEFT_DOWN; + + var isDown = trackingData !== undefined && (trackingData.flags & test); + + if (hit) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightup' : 'mouseup', interactionEvent); + + if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightclick' : 'click', interactionEvent); + // because we can confirm that the mousedown happened on this object, flag for later emit of pointertap + isMouseTap = true; + } + } + else if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightupoutside' : 'mouseupoutside', interactionEvent); + } + // update the down state of the tracking data + if (trackingData) + { + if (isRightButton) + { + trackingData.rightDown = false; + } + else + { + trackingData.leftDown = false; + } + } + } + + // Pointers and Touches, and Mouse + if (hit) + { + this.dispatchEvent(displayObject, 'pointerup', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchend', interactionEvent); } + + if (trackingData) + { + // emit pointertap if not a mouse, or if the mouse block decided it was a tap + if (!isMouse || isMouseTap) + { + this.dispatchEvent(displayObject, 'pointertap', interactionEvent); + } + if (isTouch) + { + this.dispatchEvent(displayObject, 'tap', interactionEvent); + // touches are no longer over (if they ever were) when we get the touchend + // so we should ensure that we don't keep pretending that they are + trackingData.over = false; + } + } + } + else if (trackingData) + { + this.dispatchEvent(displayObject, 'pointerupoutside', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchendoutside', interactionEvent); } + } + // Only remove the tracking data if there is no over/down state still associated with it + if (trackingData && trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + }; + + /** + * Is called when the pointer moves across the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer moving + */ + InteractionManager.prototype.onPointerMove = function onPointerMove (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + if (events[0].pointerType === 'mouse' || events[0].pointerType === 'pen') + { + this.didMove = true; + + this.cursor = null; + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerMove, true); + + this.emit('pointermove', interactionEvent); + if (event.pointerType === 'touch') { this.emit('touchmove', interactionEvent); } + if (event.pointerType === 'mouse' || event.pointerType === 'pen') { this.emit('mousemove', interactionEvent); } + } + + if (events[0].pointerType === 'mouse') + { + this.setCursorMode(this.cursor); + + // TODO BUG for parents interactive object (border order issue) + } + }; + + /** + * Processes the result of the pointer move check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerMove = function processPointerMove (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + if (isMouse) + { + this.processPointerOverOut(interactionEvent, displayObject, hit); + } + + if (!this.moveWhenInside || hit) + { + this.dispatchEvent(displayObject, 'pointermove', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchmove', interactionEvent); } + if (isMouse) { this.dispatchEvent(displayObject, 'mousemove', interactionEvent); } + } + }; + + /** + * Is called when the pointer is moved out of the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer being moved out + */ + InteractionManager.prototype.onPointerOut = function onPointerOut (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOut, so events will always be length 1 + var event = events[0]; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = false; + this.setCursorMode(null); + } + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerOverOut, false); + + this.emit('pointerout', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseout', interactionEvent); + } + else + { + // we can get touchleave events after touchend, so we want to make sure we don't + // introduce memory leaks + this.releaseInteractionDataForPointerId(interactionData.identifier); + } + }; + + /** + * Processes the result of the pointer over/out check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerOverOut = function processPointerOverOut (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + var trackingData = displayObject.trackedPointers[id]; + + // if we just moused over the display object, then we need to track that state + if (hit && !trackingData) + { + trackingData = displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + + if (trackingData === undefined) { return; } + + if (hit && this.mouseOverRenderer) + { + if (!trackingData.over) + { + trackingData.over = true; + this.delayDispatchEvent(displayObject, 'pointerover', interactionEvent); + if (isMouse) + { + this.delayDispatchEvent(displayObject, 'mouseover', interactionEvent); + } + } + + // only change the cursor if it has not already been changed (by something deeper in the + // display tree) + if (isMouse && this.cursor === null) + { + this.cursor = displayObject.cursor; + } + } + else if (trackingData.over) + { + trackingData.over = false; + this.dispatchEvent(displayObject, 'pointerout', this.eventData); + if (isMouse) + { + this.dispatchEvent(displayObject, 'mouseout', interactionEvent); + } + // if there is no mouse down information for the pointer, then it is safe to delete + if (trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + } + }; + + /** + * Is called when the pointer is moved into the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being moved into the renderer view + */ + InteractionManager.prototype.onPointerOver = function onPointerOver (originalEvent) + { + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOver, so events will always be length 1 + var event = events[0]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = true; + } + + this.emit('pointerover', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseover', interactionEvent); + } + }; + + /** + * Get InteractionData for a given pointerId. Store that data as well + * + * @private + * @param {PointerEvent} event - Normalized pointer event, output from normalizeToPointerData + * @return {PIXI.interaction.InteractionData} - Interaction data for the given pointer identifier + */ + InteractionManager.prototype.getInteractionDataForPointerId = function getInteractionDataForPointerId (event) + { + var pointerId = event.pointerId; + + var interactionData; + + if (pointerId === MOUSE_POINTER_ID || event.pointerType === 'mouse') + { + interactionData = this.mouse; + } + else if (this.activeInteractionData[pointerId]) + { + interactionData = this.activeInteractionData[pointerId]; + } + else + { + interactionData = this.interactionDataPool.pop() || new InteractionData(); + interactionData.identifier = pointerId; + this.activeInteractionData[pointerId] = interactionData; + } + // copy properties from the event, so that we can make sure that touch/pointer specific + // data is available + interactionData.copyEvent(event); + + return interactionData; + }; + + /** + * Return unused InteractionData to the pool, for a given pointerId + * + * @private + * @param {number} pointerId - Identifier from a pointer event + */ + InteractionManager.prototype.releaseInteractionDataForPointerId = function releaseInteractionDataForPointerId (pointerId) + { + var interactionData = this.activeInteractionData[pointerId]; + + if (interactionData) + { + delete this.activeInteractionData[pointerId]; + interactionData.reset(); + this.interactionDataPool.push(interactionData); + } + }; + + /** + * Configure an InteractionEvent to wrap a DOM PointerEvent and InteractionData + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The event to be configured + * @param {PointerEvent} pointerEvent - The DOM event that will be paired with the InteractionEvent + * @param {PIXI.interaction.InteractionData} interactionData - The InteractionData that will be paired + * with the InteractionEvent + * @return {PIXI.interaction.InteractionEvent} the interaction event that was passed in + */ + InteractionManager.prototype.configureInteractionEventForDOMEvent = function configureInteractionEventForDOMEvent (interactionEvent, pointerEvent, interactionData) + { + interactionEvent.data = interactionData; + + this.mapPositionToPoint(interactionData.global, pointerEvent.clientX, pointerEvent.clientY); + + // Not really sure why this is happening, but it's how a previous version handled things + if (pointerEvent.pointerType === 'touch') + { + pointerEvent.globalX = interactionData.global.x; + pointerEvent.globalY = interactionData.global.y; + } + + interactionData.originalEvent = pointerEvent; + interactionEvent.reset(); + + return interactionEvent; + }; + + /** + * Ensures that the original event object contains all data that a regular pointer event would have + * + * @private + * @param {TouchEvent|MouseEvent|PointerEvent} event - The original event data from a touch or mouse event + * @return {PointerEvent[]} An array containing a single normalized pointer event, in the case of a pointer + * or mouse event, or a multiple normalized pointer events if there are multiple changed touches + */ + InteractionManager.prototype.normalizeToPointerData = function normalizeToPointerData (event) + { + var normalizedEvents = []; + + if (this.supportsTouchEvents && event instanceof TouchEvent) + { + for (var i = 0, li = event.changedTouches.length; i < li; i++) + { + var touch = event.changedTouches[i]; + + if (typeof touch.button === 'undefined') { touch.button = event.touches.length ? 1 : 0; } + if (typeof touch.buttons === 'undefined') { touch.buttons = event.touches.length ? 1 : 0; } + if (typeof touch.isPrimary === 'undefined') + { + touch.isPrimary = event.touches.length === 1 && event.type === 'touchstart'; + } + if (typeof touch.width === 'undefined') { touch.width = touch.radiusX || 1; } + if (typeof touch.height === 'undefined') { touch.height = touch.radiusY || 1; } + if (typeof touch.tiltX === 'undefined') { touch.tiltX = 0; } + if (typeof touch.tiltY === 'undefined') { touch.tiltY = 0; } + if (typeof touch.pointerType === 'undefined') { touch.pointerType = 'touch'; } + if (typeof touch.pointerId === 'undefined') { touch.pointerId = touch.identifier || 0; } + if (typeof touch.pressure === 'undefined') { touch.pressure = touch.force || 0.5; } + if (typeof touch.twist === 'undefined') { touch.twist = 0; } + if (typeof touch.tangentialPressure === 'undefined') { touch.tangentialPressure = 0; } + // TODO: Remove these, as layerX/Y is not a standard, is deprecated, has uneven + // support, and the fill ins are not quite the same + // offsetX/Y might be okay, but is not the same as clientX/Y when the canvas's top + // left is not 0,0 on the page + if (typeof touch.layerX === 'undefined') { touch.layerX = touch.offsetX = touch.clientX; } + if (typeof touch.layerY === 'undefined') { touch.layerY = touch.offsetY = touch.clientY; } + + // mark the touch as normalized, just so that we know we did it + touch.isNormalized = true; + + normalizedEvents.push(touch); + } + } + // apparently PointerEvent subclasses MouseEvent, so yay + else if (event instanceof MouseEvent && (!this.supportsPointerEvents || !(event instanceof window.PointerEvent))) + { + if (typeof event.isPrimary === 'undefined') { event.isPrimary = true; } + if (typeof event.width === 'undefined') { event.width = 1; } + if (typeof event.height === 'undefined') { event.height = 1; } + if (typeof event.tiltX === 'undefined') { event.tiltX = 0; } + if (typeof event.tiltY === 'undefined') { event.tiltY = 0; } + if (typeof event.pointerType === 'undefined') { event.pointerType = 'mouse'; } + if (typeof event.pointerId === 'undefined') { event.pointerId = MOUSE_POINTER_ID; } + if (typeof event.pressure === 'undefined') { event.pressure = 0.5; } + if (typeof event.twist === 'undefined') { event.twist = 0; } + if (typeof event.tangentialPressure === 'undefined') { event.tangentialPressure = 0; } + + // mark the mouse event as normalized, just so that we know we did it + event.isNormalized = true; + + normalizedEvents.push(event); + } + else + { + normalizedEvents.push(event); + } + + return normalizedEvents; + }; + + /** + * Destroys the interaction manager + * + */ + InteractionManager.prototype.destroy = function destroy () + { + this.removeEvents(); + + this.removeAllListeners(); + + this.renderer = null; + + this.mouse = null; + + this.eventData = null; + + this.interactionDOMElement = null; + + this.onPointerDown = null; + this.processPointerDown = null; + + this.onPointerUp = null; + this.processPointerUp = null; + + this.onPointerCancel = null; + this.processPointerCancel = null; + + this.onPointerMove = null; + this.processPointerMove = null; + + this.onPointerOut = null; + this.processPointerOverOut = null; + + this.onPointerOver = null; + + this._tempPoint = null; + }; + + return InteractionManager; +}(eventemitter3)); + +/*! + * @pixi/graphics - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/graphics is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Graphics curves resolution settings. If `adaptive` flag is set to `true`, + * the resolution is calculated based on the curve's length to ensure better visual quality. + * Adaptive draw works with `bezierCurveTo` and `quadraticCurveTo`. + * + * @static + * @constant + * @memberof PIXI + * @name GRAPHICS_CURVES + * @type {object} + * @property {boolean} adaptive=false - flag indicating if the resolution should be adaptive + * @property {number} maxLength=10 - maximal length of a single segment of the curve (if adaptive = false, ignored) + * @property {number} minSegments=8 - minimal number of segments in the curve (if adaptive = false, ignored) + * @property {number} maxSegments=2048 - maximal number of segments in the curve (if adaptive = false, ignored) + */ +var GRAPHICS_CURVES = { + adaptive: true, + maxLength: 10, + minSegments: 8, + maxSegments: 2048, + _segmentsCount: function _segmentsCount(length, defaultSegments) + { + if ( defaultSegments === void 0 ) defaultSegments = 20; + + if (!this.adaptive) + { + return defaultSegments; + } + + var result = Math.ceil(length / this.maxLength); + + if (result < this.minSegments) + { + result = this.minSegments; + } + else if (result > this.maxSegments) + { + result = this.maxSegments; + } + + return result; + }, +}; + +/** + * Fill style object for Graphics. + * + * @class + * @memberof PIXI + */ +var FillStyle = function FillStyle() +{ + this.reset(); +}; + +/** + * Clones the object + * + * @return {PIXI.FillStyle} + */ +FillStyle.prototype.clone = function clone () +{ + var obj = new FillStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + + return obj; +}; + +/** + * Reset + */ +FillStyle.prototype.reset = function reset () +{ + /** + * The hex color value used when coloring the Graphics object. + * + * @member {number} + * @default 1 + */ + this.color = 0xFFFFFF; + + /** + * The alpha value used when filling the Graphics object. + * + * @member {number} + * @default 1 + */ + this.alpha = 1; + + /** + * The texture to be used for the fill. + * + * @member {string} + * @default 0 + */ + this.texture = Texture.WHITE; + + /** + * The transform aplpied to the texture. + * + * @member {string} + * @default 0 + */ + this.matrix = null; + + /** + * If the current fill is visible. + * + * @member {boolean} + * @default false + */ + this.visible = false; +}; + +/** + * Destroy and don't use after this + */ +FillStyle.prototype.destroy = function destroy () +{ + this.texture = null; + this.matrix = null; +}; + +/** + * A class to contain data useful for Graphics objects + * + * @class + * @memberof PIXI + */ +var GraphicsData = function GraphicsData(shape, fillStyle, lineStyle, matrix) +{ + if ( fillStyle === void 0 ) fillStyle = null; + if ( lineStyle === void 0 ) lineStyle = null; + if ( matrix === void 0 ) matrix = null; + + /** + * The shape object to draw. + * @member {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} + */ + this.shape = shape; + + /** + * The style of the line. + * @member {PIXI.LineStyle} + */ + this.lineStyle = lineStyle; + + /** + * The style of the fill. + * @member {PIXI.FillStyle} + */ + this.fillStyle = fillStyle; + + /** + * The transform matrix. + * @member {PIXI.Matrix} + */ + this.matrix = matrix; + + /** + * The type of the shape, see the Const.Shapes file for all the existing types, + * @member {number} + */ + this.type = shape.type; + + /** + * The collection of points. + * @member {number[]} + */ + this.points = []; + + /** + * The collection of holes. + * @member {PIXI.GraphicsData[]} + */ + this.holes = []; +}; + +/** + * Creates a new GraphicsData object with the same values as this one. + * + * @return {PIXI.GraphicsData} Cloned GraphicsData object + */ +GraphicsData.prototype.clone = function clone () +{ + return new GraphicsData( + this.shape, + this.fillStyle, + this.lineStyle, + this.matrix + ); +}; + +/** + * Destroys the Graphics data. + */ +GraphicsData.prototype.destroy = function destroy () +{ + this.shape = null; + this.holes.length = 0; + this.holes = null; + this.points.length = 0; + this.points = null; + this.lineStyle = null; + this.fillStyle = null; +}; + +/** + * Builds a circle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object to draw + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildCircle = { + + build: function build(graphicsData) + { + // need to convert points to a nice regular data + var circleData = graphicsData.shape; + var points = graphicsData.points; + var x = circleData.x; + var y = circleData.y; + var width; + var height; + + points.length = 0; + + // TODO - bit hacky?? + if (graphicsData.type === SHAPES.CIRC) + { + width = circleData.radius; + height = circleData.radius; + } + else + { + width = circleData.width; + height = circleData.height; + } + + if (width === 0 || height === 0) + { + return; + } + + var totalSegs = Math.floor(30 * Math.sqrt(circleData.radius)) + || Math.floor(15 * Math.sqrt(circleData.width + circleData.height)); + + totalSegs /= 2.3; + + var seg = (Math.PI * 2) / totalSegs; + + for (var i = 0; i < totalSegs; i++) + { + points.push( + x + (Math.sin(-seg * i) * width), + y + (Math.cos(-seg * i) * height) + ); + } + + points.push( + points[0], + points[1] + ); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vertPos = verts.length / 2; + var center = vertPos; + + verts.push(graphicsData.shape.x, graphicsData.shape.y); + + for (var i = 0; i < points.length; i += 2) + { + verts.push(points[i], points[i + 1]); + + // add some uvs + indices.push(vertPos++, center, vertPos); + } + }, +}; + +/** + * Builds a line to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine (graphicsData, graphicsGeometry) +{ + if (graphicsData.lineStyle.native) + { + buildNativeLine(graphicsData, graphicsGeometry); + } + else + { + buildLine$1(graphicsData, graphicsGeometry); + } +} + +/** + * Builds a line to draw using the polygon method. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine$1(graphicsData, graphicsGeometry) +{ + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points.slice(); + var eps = graphicsGeometry.closePointEps; + + if (points.length === 0) + { + return; + } + // if the line width is an odd number add 0.5 to align to a whole pixel + // commenting this out fixes #711 and #1620 + // if (graphicsData.lineWidth%2) + // { + // for (i = 0; i < points.length; i++) + // { + // points[i] += 0.5; + // } + // } + + var style = graphicsData.lineStyle; + + // get first and last point.. figure out the middle! + var firstPoint = new Point(points[0], points[1]); + var lastPoint = new Point(points[points.length - 2], points[points.length - 1]); + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + var closedPath = Math.abs(firstPoint.x - lastPoint.x) < eps + && Math.abs(firstPoint.y - lastPoint.y) < eps; + + // if the first point is the last point - gonna have issues :) + if (closedShape) + { + // need to clone as we are going to slightly modify the shape.. + points = points.slice(); + + if (closedPath) + { + points.pop(); + points.pop(); + lastPoint.set(points[points.length - 2], points[points.length - 1]); + } + + var midPointX = lastPoint.x + ((firstPoint.x - lastPoint.x) * 0.5); + var midPointY = lastPoint.y + ((firstPoint.y - lastPoint.y) * 0.5); + + points.unshift(midPointX, midPointY); + points.push(midPointX, midPointY); + } + + var verts = graphicsGeometry.points; + var length = points.length / 2; + var indexCount = points.length; + var indexStart = verts.length / 2; + + // DRAW the Line + var width = style.width / 2; + + // sort color + var p1x = points[0]; + var p1y = points[1]; + var p2x = points[2]; + var p2y = points[3]; + var p3x = 0; + var p3y = 0; + + var perpx = -(p1y - p2y); + var perpy = p1x - p2x; + var perp2x = 0; + var perp2y = 0; + var perp3x = 0; + var perp3y = 0; + + var dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + var ratio = style.alignment;// 0.5; + var r1 = (1 - ratio) * 2; + var r2 = ratio * 2; + + // start + verts.push( + p1x - (perpx * r1), + p1y - (perpy * r1)); + + verts.push( + p1x + (perpx * r2), + p1y + (perpy * r2)); + + for (var i = 1; i < length - 1; ++i) + { + p1x = points[(i - 1) * 2]; + p1y = points[((i - 1) * 2) + 1]; + + p2x = points[i * 2]; + p2y = points[(i * 2) + 1]; + + p3x = points[(i + 1) * 2]; + p3y = points[((i + 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + perp2x = -(p2y - p3y); + perp2y = p2x - p3x; + + dist = Math.sqrt((perp2x * perp2x) + (perp2y * perp2y)); + perp2x /= dist; + perp2y /= dist; + perp2x *= width; + perp2y *= width; + + var a1 = (-perpy + p1y) - (-perpy + p2y); + var b1 = (-perpx + p2x) - (-perpx + p1x); + var c1 = ((-perpx + p1x) * (-perpy + p2y)) - ((-perpx + p2x) * (-perpy + p1y)); + var a2 = (-perp2y + p3y) - (-perp2y + p2y); + var b2 = (-perp2x + p2x) - (-perp2x + p3x); + var c2 = ((-perp2x + p3x) * (-perp2y + p2y)) - ((-perp2x + p2x) * (-perp2y + p3y)); + + var denom = (a1 * b2) - (a2 * b1); + + if (Math.abs(denom) < 0.1) + { + denom += 10.1; + verts.push( + p2x - (perpx * r1), + p2y - (perpy * r1)); + + verts.push( + p2x + (perpx * r2), + p2y + (perpy * r2)); + + continue; + } + + var px = ((b1 * c2) - (b2 * c1)) / denom; + var py = ((a2 * c1) - (a1 * c2)) / denom; + var pdist = ((px - p2x) * (px - p2x)) + ((py - p2y) * (py - p2y)); + + if (pdist > (196 * width * width)) + { + perp3x = perpx - perp2x; + perp3y = perpy - perp2y; + + dist = Math.sqrt((perp3x * perp3x) + (perp3y * perp3y)); + perp3x /= dist; + perp3y /= dist; + perp3x *= width; + perp3y *= width; + + verts.push(p2x - (perp3x * r1), p2y - (perp3y * r1)); + + verts.push(p2x + (perp3x * r2), p2y + (perp3y * r2)); + + verts.push(p2x - (perp3x * r2 * r1), p2y - (perp3y * r1)); + + indexCount++; + } + else + { + verts.push(p2x + ((px - p2x) * r1), p2y + ((py - p2y) * r1)); + + verts.push(p2x - ((px - p2x) * r2), p2y - ((py - p2y) * r2)); + } + } + + p1x = points[(length - 2) * 2]; + p1y = points[((length - 2) * 2) + 1]; + + p2x = points[(length - 1) * 2]; + p2y = points[((length - 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + verts.push(p2x - (perpx * r1), p2y - (perpy * r1)); + + verts.push(p2x + (perpx * r2), p2y + (perpy * r2)); + + var indices = graphicsGeometry.indices; + + // indices.push(indexStart); + + for (var i$1 = 0; i$1 < indexCount - 2; ++i$1) + { + indices.push(indexStart, indexStart + 1, indexStart + 2); + + indexStart++; + } +} + +/** + * Builds a line to draw using the gl.drawArrays(gl.LINES) method + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildNativeLine(graphicsData, graphicsGeometry) +{ + var i = 0; + + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points; + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + + if (points.length === 0) { return; } + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + var length = points.length / 2; + + var startIndex = verts.length / 2; + var currentIndex = startIndex; + + verts.push(points[0], points[1]); + + for (i = 1; i < length; i++) + { + verts.push(points[i * 2], points[(i * 2) + 1]); + indices.push(currentIndex, currentIndex + 1); + + currentIndex++; + } + + if (closedShape) + { + indices.push(currentIndex, startIndex); + } +} + +/** + * Builds a polygon to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildPoly = { + + build: function build(graphicsData) + { + graphicsData.points = graphicsData.shape.points.slice(); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var holes = graphicsData.holes; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + if (points.length >= 6) + { + var holeArray = []; + // Process holes.. + + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + holeArray.push(points.length / 2); + points = points.concat(hole.points); + } + + // sort color + var triangles = earcut_1(points, holeArray, 2); + + if (!triangles) + { + return; + } + + var vertPos = verts.length / 2; + + for (var i$1 = 0; i$1 < triangles.length; i$1 += 3) + { + indices.push(triangles[i$1] + vertPos); + indices.push(triangles[i$1 + 1] + vertPos); + indices.push(triangles[i$1 + 2] + vertPos); + } + + for (var i$2 = 0; i$2 < points.length; i$2++) + { + verts.push(points[i$2]); + } + } + }, +}; + +/** + * Builds a rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRectangle = { + + build: function build(graphicsData) + { + // --- // + // need to convert points to a nice regular data + // + var rectData = graphicsData.shape; + var x = rectData.x; + var y = rectData.y; + var width = rectData.width; + var height = rectData.height; + + var points = graphicsData.points; + + points.length = 0; + + points.push(x, y, + x + width, y, + x + width, y + height, + x, y + height); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + + var vertPos = verts.length / 2; + + verts.push(points[0], points[1], + points[2], points[3], + points[6], points[7], + points[4], points[5]); + + graphicsGeometry.indices.push(vertPos, vertPos + 1, vertPos + 2, + vertPos + 1, vertPos + 2, vertPos + 3); + }, +}; + +/** + * Builds a rounded rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRoundedRectangle = { + + build: function build(graphicsData) + { + var rrectData = graphicsData.shape; + var points = graphicsData.points; + var x = rrectData.x; + var y = rrectData.y; + var width = rrectData.width; + var height = rrectData.height; + + var radius = rrectData.radius; + + points.length = 0; + + quadraticBezierCurve(x, y + radius, + x, y, + x + radius, y, + points); + quadraticBezierCurve(x + width - radius, + y, x + width, y, + x + width, y + radius, + points); + quadraticBezierCurve(x + width, y + height - radius, + x + width, y + height, + x + width - radius, y + height, + points); + quadraticBezierCurve(x + radius, y + height, + x, y + height, + x, y + height - radius, + points); + + // this tiny number deals with the issue that occurs when points overlap and earcut fails to triangulate the item. + // TODO - fix this properly, this is not very elegant.. but it works for now. + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vecPos = verts.length / 2; + + var triangles = earcut_1(points, null, 2); + + for (var i = 0, j = triangles.length; i < j; i += 3) + { + indices.push(triangles[i] + vecPos); + // indices.push(triangles[i] + vecPos); + indices.push(triangles[i + 1] + vecPos); + // indices.push(triangles[i + 2] + vecPos); + indices.push(triangles[i + 2] + vecPos); + } + + for (var i$1 = 0, j$1 = points.length; i$1 < j$1; i$1++) + { + verts.push(points[i$1], points[++i$1]); + } + }, +}; + +/** + * Calculate a single point for a quadratic bezier curve. + * Utility function used by quadraticBezierCurve. + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} n1 - first number + * @param {number} n2 - second number + * @param {number} perc - percentage + * @return {number} the result + * + */ +function getPt(n1, n2, perc) +{ + var diff = n2 - n1; + + return n1 + (diff * perc); +} + +/** + * Calculate the points for a quadratic bezier curve. (helper function..) + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} fromX - Origin point x + * @param {number} fromY - Origin point x + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} [out=[]] - The output array to add points into. If not passed, a new array is created. + * @return {number[]} an array of points + */ +function quadraticBezierCurve(fromX, fromY, cpX, cpY, toX, toY, out) +{ + if ( out === void 0 ) out = []; + + var n = 20; + var points = out; + + var xa = 0; + var ya = 0; + var xb = 0; + var yb = 0; + var x = 0; + var y = 0; + + for (var i = 0, j = 0; i <= n; ++i) + { + j = i / n; + + // The Green Line + xa = getPt(fromX, cpX, j); + ya = getPt(fromY, cpY, j); + xb = getPt(cpX, toX, j); + yb = getPt(cpY, toY, j); + + // The Black Dot + x = getPt(xa, xb, j); + y = getPt(ya, yb, j); + + points.push(x, y); + } + + return points; +} + +var BATCH_POOL = []; +var DRAW_CALL_POOL = []; +var tmpPoint = new Point(); + +/** + * Map of fill commands for each shape type. + * + * @member {Object} + * @private + */ +var fillCommands = {}; + +fillCommands[SHAPES.POLY] = buildPoly; +fillCommands[SHAPES.CIRC] = buildCircle; +fillCommands[SHAPES.ELIP] = buildCircle; +fillCommands[SHAPES.RECT] = buildRectangle; +fillCommands[SHAPES.RREC] = buildRoundedRectangle; + +/** + * A little internal structure to hold interim batch objects. + * + * @private + */ +var BatchPart = function BatchPart() +{ + this.style = null; + this.size = 0; + this.start = 0; + this.attribStart = 0; + this.attribSize = 0; +}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * GraphicsGeometry is designed to not be continually updating the geometry since it's expensive + * to re-tesselate using **earcut**. Consider using {@link PIXI.Mesh} for this use-case, it's much faster. + * + * @class + * @extends PIXI.BatchGeometry + * @memberof PIXI + */ +var GraphicsGeometry = /*@__PURE__*/(function (BatchGeometry) { + function GraphicsGeometry() + { + BatchGeometry.call(this); + + /** + * An array of points to draw, 2 numbers per point + * + * @member {number[]} + * @protected + */ + this.points = []; + + /** + * The collection of colors + * + * @member {number[]} + * @protected + */ + this.colors = []; + + /** + * The UVs collection + * + * @member {number[]} + * @protected + */ + this.uvs = []; + + /** + * The indices of the vertices + * + * @member {number[]} + * @protected + */ + this.indices = []; + + /** + * Reference to the texture IDs. + * + * @member {number[]} + * @protected + */ + this.textureIds = []; + + /** + * The collection of drawn shapes. + * + * @member {PIXI.GraphicsData[]} + * @protected + */ + this.graphicsData = []; + + /** + * Used to detect if the graphics object has changed. + * + * @member {number} + * @protected + */ + this.dirty = 0; + + /** + * Batches need to regenerated if the geometry is updated. + * + * @member {number} + * @protected + */ + this.batchDirty = -1; + + /** + * Used to check if the cache is dirty. + * + * @member {number} + * @protected + */ + this.cacheDirty = -1; + + /** + * Used to detect if we cleared the graphicsData. + * + * @member {number} + * @default 0 + * @protected + */ + this.clearDirty = 0; + + /** + * List of current draw calls drived from the batches. + * + * @member {object[]} + * @protected + */ + this.drawCalls = []; + + /** + * Intermediate abstract format sent to batch system. + * Can be converted to drawCalls or to batchable objects. + * + * @member {object[]} + * @protected + */ + this.batches = []; + + /** + * Index of the last batched shape in the stack of calls. + * + * @member {number} + * @protected + */ + this.shapeIndex = 0; + + /** + * Cached bounds. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + + /** + * The bounds dirty flag. + * + * @member {number} + * @protected + */ + this.boundsDirty = -1; + + /** + * Padding to add to the bounds. + * + * @member {number} + * @default 0 + */ + this.boundsPadding = 0; + + this.batchable = false; + + this.indicesUint16 = null; + + this.uvsFloat32 = null; + + /** + * Minimal distance between points that are considered different. + * Affects line tesselation. + * + * @member {number} + */ + this.closePointEps = 1e-4; + } + + if ( BatchGeometry ) GraphicsGeometry.__proto__ = BatchGeometry; + GraphicsGeometry.prototype = Object.create( BatchGeometry && BatchGeometry.prototype ); + GraphicsGeometry.prototype.constructor = GraphicsGeometry; + + var prototypeAccessors = { bounds: { configurable: true } }; + + /** + * Get the current bounds of the graphic geometry. + * + * @member {PIXI.Bounds} + * @readonly + */ + prototypeAccessors.bounds.get = function () + { + if (this.boundsDirty !== this.dirty) + { + this.boundsDirty = this.dirty; + this.calculateBounds(); + } + + return this._bounds; + }; + + /** + * Call if you changed graphicsData manually. + * Empties all batch buffers. + */ + GraphicsGeometry.prototype.invalidate = function invalidate () + { + this.boundsDirty = -1; + this.dirty++; + this.batchDirty++; + this.shapeIndex = 0; + + this.points.length = 0; + this.colors.length = 0; + this.uvs.length = 0; + this.indices.length = 0; + this.textureIds.length = 0; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var batch = this.batches[i$1]; + + batch.start = 0; + batch.attribStart = 0; + batch.style = null; + BATCH_POOL.push(batch); + } + + this.batches.length = 0; + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.GraphicsGeometry} This GraphicsGeometry object. Good for chaining method calls + */ + GraphicsGeometry.prototype.clear = function clear () + { + if (this.graphicsData.length > 0) + { + this.invalidate(); + this.clearDirty++; + this.graphicsData.length = 0; + } + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.FillStyle} fillStyle - Defines style of the fill. + * @param {PIXI.LineStyle} lineStyle - Defines style of the lines. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawShape = function drawShape (shape, fillStyle, lineStyle, matrix) + { + var data = new GraphicsData(shape, fillStyle, lineStyle, matrix); + + this.graphicsData.push(data); + this.dirty++; + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawHole = function drawHole (shape, matrix) + { + if (!this.graphicsData.length) + { + return null; + } + + var data = new GraphicsData(shape, null, null, matrix); + + var lastShape = this.graphicsData[this.graphicsData.length - 1]; + + data.lineStyle = lastShape.lineStyle; + + lastShape.holes.push(data); + + this.dirty++; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + GraphicsGeometry.prototype.destroy = function destroy (options) + { + BatchGeometry.prototype.destroy.call(this, options); + + // destroy each of the GraphicsData objects + for (var i = 0; i < this.graphicsData.length; ++i) + { + this.graphicsData[i].destroy(); + } + + this.points.length = 0; + this.points = null; + this.colors.length = 0; + this.colors = null; + this.uvs.length = 0; + this.uvs = null; + this.indices.length = 0; + this.indices = null; + this.indexBuffer.destroy(); + this.indexBuffer = null; + this.graphicsData.length = 0; + this.graphicsData = null; + this.drawCalls.length = 0; + this.drawCalls = null; + this.batches.length = 0; + this.batches = null; + this._bounds = null; + }; + + /** + * Check to see if a point is contained within this geometry. + * + * @param {PIXI.Point} point - Point to check if it's contained. + * @return {Boolean} `true` if the point is contained within geometry. + */ + GraphicsGeometry.prototype.containsPoint = function containsPoint (point) + { + var graphicsData = this.graphicsData; + + for (var i = 0; i < graphicsData.length; ++i) + { + var data = graphicsData[i]; + + if (!data.fillStyle.visible) + { + continue; + } + + // only deal with fills.. + if (data.shape) + { + if (data.matrix) + { + data.matrix.applyInverse(point, tmpPoint); + } + else + { + tmpPoint.copyFrom(point); + } + + if (data.shape.contains(tmpPoint.x, tmpPoint.y)) + { + if (data.holes) + { + for (var i$1 = 0; i$1 < data.holes.length; i$1++) + { + var hole = data.holes[i$1]; + + if (hole.shape.contains(tmpPoint.x, tmpPoint.y)) + { + return false; + } + } + } + + return true; + } + } + } + + return false; + }; + + /** + * Generates intermediate batch data. Either gets converted to drawCalls + * or used to convert to batch objects directly by the Graphics object. + */ + GraphicsGeometry.prototype.updateBatches = function updateBatches () + { + if (this.dirty === this.cacheDirty) { return; } + if (this.graphicsData.length === 0) + { + this.batchable = true; + + return; + } + + if (this.dirty !== this.cacheDirty) + { + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + if (data.fillStyle && !data.fillStyle.texture.baseTexture.valid) { return; } + if (data.lineStyle && !data.lineStyle.texture.baseTexture.valid) { return; } + } + } + + this.cacheDirty = this.dirty; + + var uvs = this.uvs; + + var batchPart = null; + var currentTexture = null; + var currentColor = 0; + var currentNative = false; + + if (this.batches.length > 0) + { + batchPart = this.batches[this.batches.length - 1]; + + var style = batchPart.style; + + currentTexture = style.texture.baseTexture; + currentColor = style.color + style.alpha; + currentNative = !!style.native; + } + + for (var i$1 = this.shapeIndex; i$1 < this.graphicsData.length; i$1++) + { + this.shapeIndex++; + + var data$1 = this.graphicsData[i$1]; + var command = fillCommands[data$1.type]; + + var fillStyle = data$1.fillStyle; + var lineStyle = data$1.lineStyle; + + // build out the shapes points.. + command.build(data$1); + + if (data$1.matrix) + { + this.transformPoints(data$1.points, data$1.matrix); + } + + for (var j = 0; j < 2; j++) + { + var style$1 = (j === 0) ? fillStyle : lineStyle; + + if (!style$1.visible) { continue; } + + var nextTexture = style$1.texture.baseTexture; + + var index$1 = this.indices.length; + var attribIndex = this.points.length / 2; + + // close batch if style is different + if (batchPart + && (currentTexture !== nextTexture + || currentColor !== (style$1.color + style$1.alpha) + || currentNative !== !!style$1.native)) + { + batchPart.size = index$1 - batchPart.start; + batchPart.attribSize = attribIndex - batchPart.attribStart; + + if (batchPart.size > 0) + { + batchPart = null; + } + } + // spawn new batch if its first batch or previous was closed + if (!batchPart) + { + batchPart = BATCH_POOL.pop() || new BatchPart(); + this.batches.push(batchPart); + nextTexture.wrapMode = WRAP_MODES.REPEAT; + currentTexture = nextTexture; + currentColor = style$1.color + style$1.alpha; + currentNative = style$1.native; + + batchPart.style = style$1; + batchPart.start = index$1; + batchPart.attribStart = attribIndex; + } + + var start = this.points.length / 2; + + if (j === 0) + { + if (data$1.holes.length) + { + this.processHoles(data$1.holes); + + buildPoly.triangulate(data$1, this); + } + else + { + command.triangulate(data$1, this); + } + } + else + { + buildLine(data$1, this); + + for (var i$2 = 0; i$2 < data$1.holes.length; i$2++) + { + buildLine(data$1.holes[i$2], this); + } + } + + var size = (this.points.length / 2) - start; + + this.addUvs(this.points, uvs, style$1.texture, start, size, style$1.matrix); + } + } + + var index = this.indices.length; + var attrib = this.points.length / 2; + + if (!batchPart) + { + // there are no visible styles in GraphicsData + // its possible that someone wants Graphics just for the bounds + this.batchable = true; + + return; + } + + batchPart.size = index - batchPart.start; + batchPart.attribSize = attrib - batchPart.attribStart; + this.indicesUint16 = new Uint16Array(this.indices); + + // TODO make this a const.. + this.batchable = this.isBatchable(); + + if (this.batchable) + { + this.batchDirty++; + + this.uvsFloat32 = new Float32Array(this.uvs); + + // offset the indices so that it works with the batcher... + for (var i$3 = 0; i$3 < this.batches.length; i$3++) + { + var batch = this.batches[i$3]; + + for (var j$1 = 0; j$1 < batch.size; j$1++) + { + var index$2 = batch.start + j$1; + + this.indicesUint16[index$2] = this.indicesUint16[index$2] - batch.attribStart; + } + } + } + else + { + this.buildDrawCalls(); + } + }; + + /** + * Checks to see if this graphics geometry can be batched. + * Currently it needs to be small enough and not contain any native lines. + * @protected + */ + GraphicsGeometry.prototype.isBatchable = function isBatchable () + { + var batches = this.batches; + + for (var i = 0; i < batches.length; i++) + { + if (batches[i].style.native) + { + return false; + } + } + + return (this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2); + }; + + /** + * Converts intermediate batches data to drawCalls. + * @protected + */ + GraphicsGeometry.prototype.buildDrawCalls = function buildDrawCalls () + { + var TICK = ++BaseTexture._globalBatch; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + var uvs = this.uvs; + var colors = this.colors; + var textureIds = this.textureIds; + + var currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.size = 0; + currentGroup.type = DRAW_MODES.TRIANGLES; + + var textureCount = 0; + var currentTexture = null; + var textureId = 0; + var native = false; + var drawMode = DRAW_MODES.TRIANGLES; + + var index = 0; + + this.drawCalls.push(currentGroup); + + // TODO - this can be simplified + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var data = this.batches[i$1]; + + // TODO add some full on MAX_TEXTURE CODE.. + var MAX_TEXTURES = 8; + + var style = data.style; + + var nextTexture = style.texture.baseTexture; + + if (native !== !!style.native) + { + native = style.native; + drawMode = native ? DRAW_MODES.LINES : DRAW_MODES.TRIANGLES; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + if (currentGroup.size > 0) + { + currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + this.drawCalls.push(currentGroup); + } + + currentGroup.start = index; + currentGroup.size = 0; + currentGroup.textureCount = 0; + currentGroup.type = drawMode; + } + + // TODO add this to the render part.. + nextTexture.touched = 1;// touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + nextTexture.wrapMode = 10497; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + currentGroup.size += data.size; + index += data.size; + + textureId = nextTexture._id; + + this.addColors(colors, style.color, style.alpha, data.attribSize); + this.addTextureIds(textureIds, textureId, data.attribSize); + } + + BaseTexture._globalBatch = TICK; + + // upload.. + // merge for now! + var verts = this.points; + + // verts are 2 positions.. so we * by 3 as there are 6 properties.. then 4 cos its bytes + var glPoints = new ArrayBuffer(verts.length * 3 * 4); + var f32 = new Float32Array(glPoints); + var u32 = new Uint32Array(glPoints); + + var p = 0; + + for (var i$2 = 0; i$2 < verts.length / 2; i$2++) + { + f32[p++] = verts[i$2 * 2]; + f32[p++] = verts[(i$2 * 2) + 1]; + + f32[p++] = uvs[i$2 * 2]; + f32[p++] = uvs[(i$2 * 2) + 1]; + + u32[p++] = colors[i$2]; + + f32[p++] = textureIds[i$2]; + } + + this._buffer.update(glPoints); + this._indexBuffer.update(this.indicesUint16); + }; + + /** + * Process the holes data. + * + * @param {PIXI.GraphicsData[]} holes - Holes to render + * @protected + */ + GraphicsGeometry.prototype.processHoles = function processHoles (holes) + { + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + var command = fillCommands[hole.type]; + + command.build(hole); + + if (hole.matrix) + { + this.transformPoints(hole.points, hole.matrix); + } + } + }; + + /** + * Update the local bounds of the object. Expensive to use performance-wise. + * @protected + */ + GraphicsGeometry.prototype.calculateBounds = function calculateBounds () + { + var minX = Infinity; + var maxX = -Infinity; + + var minY = Infinity; + var maxY = -Infinity; + + if (this.graphicsData.length) + { + var shape = null; + var x = 0; + var y = 0; + var w = 0; + var h = 0; + + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + var type = data.type; + var lineWidth = data.lineStyle ? data.lineStyle.width : 0; + + shape = data.shape; + + if (type === SHAPES.RECT || type === SHAPES.RREC) + { + x = shape.x - (lineWidth / 2); + y = shape.y - (lineWidth / 2); + w = shape.width + lineWidth; + h = shape.height + lineWidth; + + minX = x < minX ? x : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y < minY ? y : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.CIRC) + { + x = shape.x; + y = shape.y; + w = shape.radius + (lineWidth / 2); + h = shape.radius + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.ELIP) + { + x = shape.x; + y = shape.y; + w = shape.width + (lineWidth / 2); + h = shape.height + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else + { + // POLY + var points = shape.points; + var x2 = 0; + var y2 = 0; + var dx = 0; + var dy = 0; + var rw = 0; + var rh = 0; + var cx = 0; + var cy = 0; + + for (var j = 0; j + 2 < points.length; j += 2) + { + x = points[j]; + y = points[j + 1]; + x2 = points[j + 2]; + y2 = points[j + 3]; + dx = Math.abs(x2 - x); + dy = Math.abs(y2 - y); + h = lineWidth; + w = Math.sqrt((dx * dx) + (dy * dy)); + + if (w < 1e-9) + { + continue; + } + + rw = ((h / w * dy) + dx) / 2; + rh = ((h / w * dx) + dy) / 2; + cx = (x2 + x) / 2; + cy = (y2 + y) / 2; + + minX = cx - rw < minX ? cx - rw : minX; + maxX = cx + rw > maxX ? cx + rw : maxX; + + minY = cy - rh < minY ? cy - rh : minY; + maxY = cy + rh > maxY ? cy + rh : maxY; + } + } + } + } + else + { + minX = 0; + maxX = 0; + minY = 0; + maxY = 0; + } + + var padding = this.boundsPadding; + + this._bounds.minX = minX - padding; + this._bounds.maxX = maxX + padding; + + this._bounds.minY = minY - padding; + this._bounds.maxY = maxY + padding; + }; + + /** + * Transform points using matrix. + * + * @protected + * @param {number[]} points - Points to transform + * @param {PIXI.Matrix} matrix - Transform matrix + */ + GraphicsGeometry.prototype.transformPoints = function transformPoints (points, matrix) + { + for (var i = 0; i < points.length / 2; i++) + { + var x = points[(i * 2)]; + var y = points[(i * 2) + 1]; + + points[(i * 2)] = (matrix.a * x) + (matrix.c * y) + matrix.tx; + points[(i * 2) + 1] = (matrix.b * x) + (matrix.d * y) + matrix.ty; + } + }; + + /** + * Add colors. + * + * @protected + * @param {number[]} colors - List of colors to add to + * @param {number} color - Color to add + * @param {number} alpha - Alpha to use + * @param {number} size - Number of colors to add + */ + GraphicsGeometry.prototype.addColors = function addColors (colors, color, alpha, size) + { + // TODO use the premultiply bits Ivan added + var rgb = (color >> 16) + (color & 0xff00) + ((color & 0xff) << 16); + + var rgba = premultiplyTint(rgb, alpha); + + while (size-- > 0) + { + colors.push(rgba); + } + }; + + /** + * Add texture id that the shader/fragment wants to use. + * + * @protected + * @param {number[]} textureIds + * @param {number} id + * @param {number} size + */ + GraphicsGeometry.prototype.addTextureIds = function addTextureIds (textureIds, id, size) + { + while (size-- > 0) + { + textureIds.push(id); + } + }; + + /** + * Generates the UVs for a shape. + * + * @protected + * @param {number[]} verts - Vertices + * @param {number[]} uvs - UVs + * @param {PIXI.Texture} texture - Reference to Texture + * @param {number} start - Index buffer start index. + * @param {number} size - The size/length for index buffer. + * @param {PIXI.Matrix} [matrix] - Optional transform for all points. + */ + GraphicsGeometry.prototype.addUvs = function addUvs (verts, uvs, texture, start, size, matrix) + { + var index = 0; + var uvsStart = uvs.length; + var frame = texture.frame; + + while (index < size) + { + var x = verts[(start + index) * 2]; + var y = verts[((start + index) * 2) + 1]; + + if (matrix) + { + var nx = (matrix.a * x) + (matrix.c * y) + matrix.tx; + + y = (matrix.b * x) + (matrix.d * y) + matrix.ty; + x = nx; + } + + index++; + + uvs.push(x / frame.width, y / frame.height); + } + + var baseTexture = texture.baseTexture; + + if (frame.width < baseTexture.width + || frame.height < baseTexture.height) + { + this.adjustUvs(uvs, texture, uvsStart, size); + } + }; + + /** + * Modify uvs array according to position of texture region + * Does not work with rotated or trimmed textures + * @param {number[]} uvs array + * @param {PIXI.Texture} texture region + * @param {number} start starting index for uvs + * @param {number} size how many points to adjust + */ + GraphicsGeometry.prototype.adjustUvs = function adjustUvs (uvs, texture, start, size) + { + var baseTexture = texture.baseTexture; + var eps = 1e-6; + var finish = start + (size * 2); + var frame = texture.frame; + var scaleX = frame.width / baseTexture.width; + var scaleY = frame.height / baseTexture.height; + var offsetX = frame.x / frame.width; + var offsetY = frame.y / frame.height; + var minX = Math.floor(uvs[start] + eps); + var minY = Math.floor(uvs[start + 1] + eps); + + for (var i = start + 2; i < finish; i += 2) + { + minX = Math.min(minX, Math.floor(uvs[i] + eps)); + minY = Math.min(minY, Math.floor(uvs[i + 1] + eps)); + } + offsetX -= minX; + offsetY -= minY; + for (var i$1 = start; i$1 < finish; i$1 += 2) + { + uvs[i$1] = (uvs[i$1] + offsetX) * scaleX; + uvs[i$1 + 1] = (uvs[i$1 + 1] + offsetY) * scaleY; + } + }; + + Object.defineProperties( GraphicsGeometry.prototype, prototypeAccessors ); + + return GraphicsGeometry; +}(BatchGeometry)); + +/** + * The maximum number of points to consider an object "batchable", + * able to be batched by the renderer's batch system. + * + * @memberof PIXI.GraphicsGeometry + * @static + * @member {number} BATCHABLE_SIZE + * @default 100 + */ +GraphicsGeometry.BATCHABLE_SIZE = 100; + +/** + * Represents the line style for Graphics. + * @memberof PIXI + * @class + * @extends PIXI.FillStyle + */ +var LineStyle = /*@__PURE__*/(function (FillStyle) { + function LineStyle () { + FillStyle.apply(this, arguments); + } + + if ( FillStyle ) LineStyle.__proto__ = FillStyle; + LineStyle.prototype = Object.create( FillStyle && FillStyle.prototype ); + LineStyle.prototype.constructor = LineStyle; + + LineStyle.prototype.clone = function clone () + { + var obj = new LineStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + obj.width = this.width; + obj.alignment = this.alignment; + obj.native = this.native; + + return obj; + }; + /** + * Reset the line style to default. + */ + LineStyle.prototype.reset = function reset () + { + FillStyle.prototype.reset.call(this); + + // Override default line style color + this.color = 0x0; + + /** + * The width (thickness) of any lines drawn. + * + * @member {number} + * @default 0 + */ + this.width = 0; + + /** + * The alignment of any lines drawn (0.5 = middle, 1 = outter, 0 = inner). + * + * @member {number} + * @default 0 + */ + this.alignment = 0.5; + + /** + * If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * + * @member {boolean} + * @default false + */ + this.native = false; + }; + + return LineStyle; +}(FillStyle)); + +/** + * Utilities for bezier curves + * @class + * @private + */ +var BezierUtils = function BezierUtils () {}; + +BezierUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) +{ + var n = 10; + var result = 0.0; + var t = 0.0; + var t2 = 0.0; + var t3 = 0.0; + var nt = 0.0; + var nt2 = 0.0; + var nt3 = 0.0; + var x = 0.0; + var y = 0.0; + var dx = 0.0; + var dy = 0.0; + var prevX = fromX; + var prevY = fromY; + + for (var i = 1; i <= n; ++i) + { + t = i / n; + t2 = t * t; + t3 = t2 * t; + nt = (1.0 - t); + nt2 = nt * nt; + nt3 = nt2 * nt; + + x = (nt3 * fromX) + (3.0 * nt2 * t * cpX) + (3.0 * nt * t2 * cpX2) + (t3 * toX); + y = (nt3 * fromY) + (3.0 * nt2 * t * cpY) + (3 * nt * t2 * cpY2) + (t3 * toY); + dx = prevX - x; + dy = prevY - y; + prevX = x; + prevY = y; + + result += Math.sqrt((dx * dx) + (dy * dy)); + } + + return result; +}; + +/** + * Calculate the points for a bezier curve and then draws it. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Path array to push points into + */ +BezierUtils.curveTo = function curveTo (cpX, cpY, cpX2, cpY2, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + points.length -= 2; + + var n = GRAPHICS_CURVES._segmentsCount( + BezierUtils.curveLength(fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) + ); + + var dt = 0; + var dt2 = 0; + var dt3 = 0; + var t2 = 0; + var t3 = 0; + + points.push(fromX, fromY); + + for (var i = 1, j = 0; i <= n; ++i) + { + j = i / n; + + dt = (1 - j); + dt2 = dt * dt; + dt3 = dt2 * dt; + + t2 = j * j; + t3 = t2 * j; + + points.push( + (dt3 * fromX) + (3 * dt2 * j * cpX) + (3 * dt * t2 * cpX2) + (t3 * toX), + (dt3 * fromY) + (3 * dt2 * j * cpY) + (3 * dt * t2 * cpY2) + (t3 * toY) + ); + } +}; + +/** + * Utilities for quadratic curves + * @class + * @private + */ +var QuadraticUtils = function QuadraticUtils () {}; + +QuadraticUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, toX, toY) +{ + var ax = fromX - (2.0 * cpX) + toX; + var ay = fromY - (2.0 * cpY) + toY; + var bx = (2.0 * cpX) - (2.0 * fromX); + var by = (2.0 * cpY) - (2.0 * fromY); + var a = 4.0 * ((ax * ax) + (ay * ay)); + var b = 4.0 * ((ax * bx) + (ay * by)); + var c = (bx * bx) + (by * by); + + var s = 2.0 * Math.sqrt(a + b + c); + var a2 = Math.sqrt(a); + var a32 = 2.0 * a * a2; + var c2 = 2.0 * Math.sqrt(c); + var ba = b / a2; + + return ( + (a32 * s) + + (a2 * b * (s - c2)) + + ( + ((4.0 * c * a) - (b * b)) + * Math.log(((2.0 * a2) + ba + s) / (ba + c2)) + ) + ) / (4.0 * a32); +}; + +/** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @private + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Points to add segments to. + */ +QuadraticUtils.curveTo = function curveTo (cpX, cpY, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var n = GRAPHICS_CURVES._segmentsCount( + QuadraticUtils.curveLength(fromX, fromY, cpX, cpY, toX, toY) + ); + + var xa = 0; + var ya = 0; + + for (var i = 1; i <= n; ++i) + { + var j = i / n; + + xa = fromX + ((cpX - fromX) * j); + ya = fromY + ((cpY - fromY) * j); + + points.push(xa + (((cpX + ((toX - cpX) * j)) - xa) * j), + ya + (((cpY + ((toY - cpY) * j)) - ya) * j)); + } +}; + +/** + * Utilities for arc curves + * @class + * @private + */ +var ArcUtils = function ArcUtils () {}; + +ArcUtils.curveTo = function curveTo (x1, y1, x2, y2, radius, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var a1 = fromY - y1; + var b1 = fromX - x1; + var a2 = y2 - y1; + var b2 = x2 - x1; + var mm = Math.abs((a1 * b2) - (b1 * a2)); + + if (mm < 1.0e-8 || radius === 0) + { + if (points[points.length - 2] !== x1 || points[points.length - 1] !== y1) + { + points.push(x1, y1); + } + + return null; + } + + var dd = (a1 * a1) + (b1 * b1); + var cc = (a2 * a2) + (b2 * b2); + var tt = (a1 * a2) + (b1 * b2); + var k1 = radius * Math.sqrt(dd) / mm; + var k2 = radius * Math.sqrt(cc) / mm; + var j1 = k1 * tt / dd; + var j2 = k2 * tt / cc; + var cx = (k1 * b2) + (k2 * b1); + var cy = (k1 * a2) + (k2 * a1); + var px = b1 * (k2 + j1); + var py = a1 * (k2 + j1); + var qx = b2 * (k1 + j2); + var qy = a2 * (k1 + j2); + var startAngle = Math.atan2(py - cy, px - cx); + var endAngle = Math.atan2(qy - cy, qx - cx); + + return { + cx: (cx + x1), + cy: (cy + y1), + radius: radius, + startAngle: startAngle, + endAngle: endAngle, + anticlockwise: (b1 * a2 > b2 * a1), + }; +}; + +/** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @private + * @param {number} startX - Start x location of arc + * @param {number} startY - Start y location of arc + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} anticlockwise - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @param {number} n - Number of segments + * @param {number[]} points - Collection of points to add to + */ +ArcUtils.arc = function arc (startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points) +{ + var sweep = endAngle - startAngle; + var n = GRAPHICS_CURVES._segmentsCount( + Math.abs(sweep) * radius, + Math.ceil(Math.abs(sweep) / PI_2) * 40 + ); + + var theta = (sweep) / (n * 2); + var theta2 = theta * 2; + var cTheta = Math.cos(theta); + var sTheta = Math.sin(theta); + var segMinus = n - 1; + var remainder = (segMinus % 1) / segMinus; + + for (var i = 0; i <= segMinus; ++i) + { + var real = i + (remainder * i); + var angle = ((theta) + startAngle + (theta2 * real)); + var c = Math.cos(angle); + var s = -Math.sin(angle); + + points.push( + (((cTheta * c) + (sTheta * s)) * radius) + cx, + (((cTheta * -s) + (sTheta * c)) * radius) + cy + ); + } +}; + +/** + * Draw a star shape with an arbitrary number of points. + * + * @class + * @extends PIXI.Polygon + * @memberof PIXI + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ +var Star = /*@__PURE__*/(function (Polygon) { + function Star(x, y, points, radius, innerRadius, rotation) + { + innerRadius = innerRadius || radius / 2; + + var startAngle = (-1 * Math.PI / 2) + rotation; + var len = points * 2; + var delta = PI_2 / len; + var polygon = []; + + for (var i = 0; i < len; i++) + { + var r = i % 2 ? innerRadius : radius; + var angle = (i * delta) + startAngle; + + polygon.push( + x + (r * Math.cos(angle)), + y + (r * Math.sin(angle)) + ); + } + + Polygon.call(this, polygon); + } + + if ( Polygon ) Star.__proto__ = Polygon; + Star.prototype = Object.create( Polygon && Polygon.prototype ); + Star.prototype.constructor = Star; + + return Star; +}(Polygon)); + +var temp = new Float32Array(3); + +// a default shaders map used by graphics.. +var DEFAULT_SHADERS = {}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * Note that because Graphics can share a GraphicsGeometry with other instances, + * it is necessary to call `destroy()` to properly dereference the underlying + * GraphicsGeometry and avoid a memory leak. Alternatively, keep using the same + * Graphics instance and call `clear()` between redraws. + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Graphics = /*@__PURE__*/(function (Container) { + function Graphics(geometry) + { + if ( geometry === void 0 ) geometry = null; + + Container.call(this); + /** + * Includes vertex positions, face indices, normals, colors, UVs, and + * custom attributes within buffers, reducing the cost of passing all + * this data to the GPU. Can be shared between multiple Mesh or Graphics objects. + * @member {PIXI.GraphicsGeometry} + * @readonly + */ + this.geometry = geometry || new GraphicsGeometry(); + + this.geometry.refCount++; + + /** + * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU. + * Can be shared between multiple Graphics objects. + * @member {PIXI.Shader} + */ + this.shader = null; + + /** + * Represents the WebGL state the Graphics required to render, excludes shader and geometry. E.g., + * blend mode, culling, depth testing, direction of rendering triangles, backface, etc. + * @member {PIXI.State} + */ + this.state = State.for2d(); + + /** + * Current fill style + * + * @member {PIXI.FillStyle} + * @protected + */ + this._fillStyle = new FillStyle(); + + /** + * Current line style + * + * @member {PIXI.LineStyle} + * @protected + */ + this._lineStyle = new LineStyle(); + + /** + * Current shape transform matrix. + * + * @member {PIXI.Matrix} + * @protected + */ + this._matrix = null; + + /** + * Current hole mode is enabled. + * + * @member {boolean} + * @default false + * @protected + */ + this._holeMode = false; + + /** + * Current path + * + * @member {PIXI.Polygon} + * @protected + */ + this.currentPath = null; + + /** + * When cacheAsBitmap is set to true the graphics object will be rendered as if it was a sprite. + * This is useful if your graphics element does not change often, as it will speed up the rendering + * of the object in exchange for taking up texture memory. It is also useful if you need the graphics + * object to be anti-aliased, because it will be rendered using canvas. This is not recommended if + * you are constantly redrawing the graphics element. + * + * @name cacheAsBitmap + * @member {boolean} + * @memberof PIXI.Graphics# + * @default false + */ + + /** + * A collections of batches! These can be drawn by the renderer batch system. + * + * @protected + * @member {object[]} + */ + this.batches = []; + + /** + * Update dirty for limiting calculating tints for batches. + * + * @protected + * @member {number} + * @default -1 + */ + this.batchTint = -1; + + /** + * Copy of the object vertex data. + * + * @protected + * @member {Float32Array} + */ + this.vertexData = null; + + this._transformID = -1; + this.batchDirty = -1; + + /** + * Renderer plugin for batching + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + // Set default + this.tint = 0xFFFFFF; + this.blendMode = BLEND_MODES.NORMAL; + } + + if ( Container ) Graphics.__proto__ = Container; + Graphics.prototype = Object.create( Container && Container.prototype ); + Graphics.prototype.constructor = Graphics; + + var prototypeAccessors = { blendMode: { configurable: true },tint: { configurable: true },fill: { configurable: true },line: { configurable: true } }; + + /** + * Creates a new Graphics object with the same values as this one. + * Note that the only the properties of the object are cloned, not its transform (position,scale,etc) + * + * @return {PIXI.Graphics} A clone of the graphics object + */ + Graphics.prototype.clone = function clone () + { + this.finishPoly(); + + return new Graphics(this.geometry); + }; + + /** + * The blend mode to be applied to the graphic shape. Apply a value of + * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL; + * @see PIXI.BLEND_MODES + */ + prototypeAccessors.blendMode.set = function (value) + { + this.state.blendMode = value; + }; + + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + /** + * The tint applied to the graphic shape. This is a hex value. A value of + * 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + prototypeAccessors.tint.set = function (value) + { + this._tint = value; + }; + + /** + * The current fill style. + * + * @member {PIXI.FillStyle} + * @readonly + */ + prototypeAccessors.fill.get = function () + { + return this._fillStyle; + }; + + /** + * The current line style. + * + * @member {PIXI.LineStyle} + * @readonly + */ + prototypeAccessors.line.get = function () + { + return this._lineStyle; + }; + + /** + * Specifies the line style used for subsequent calls to Graphics methods such as the lineTo() + * method or the drawCircle() method. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineStyle = function lineStyle (width, color, alpha, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + this.lineTextureStyle(width, Texture.WHITE, color, alpha, null, alignment, native); + + return this; + }; + + /** + * Like line style but support texture for line fill. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to use + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {PIXI.Matrix} [matrix=null] Texture matrix to transform texture + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTextureStyle = function lineTextureStyle (width, texture, color, alpha, + matrix, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = width > 0 && alpha > 0; + + if (!visible) + { + this._lineStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._lineStyle, { + color: color, + width: width, + alpha: alpha, + matrix: matrix, + texture: texture, + alignment: alignment, + native: native, + visible: visible, + }); + } + + return this; + }; + + /** + * Start a polygon object internally + * @protected + */ + Graphics.prototype.startPoly = function startPoly () + { + if (this.currentPath) + { + var points = this.currentPath.points; + var len = this.currentPath.points.length; + + if (len > 2) + { + this.drawShape(this.currentPath); + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + this.currentPath.points.push(points[len - 2], points[len - 1]); + } + } + else + { + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + } + }; + + /** + * Finish the polygon object. + * @protected + */ + Graphics.prototype.finishPoly = function finishPoly () + { + if (this.currentPath) + { + if (this.currentPath.points.length > 2) + { + this.drawShape(this.currentPath); + this.currentPath = null; + } + else + { + this.currentPath.points.length = 0; + } + } + }; + + /** + * Moves the current drawing position to x, y. + * + * @param {number} x - the X coordinate to move to + * @param {number} y - the Y coordinate to move to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.moveTo = function moveTo (x, y) + { + this.startPoly(); + this.currentPath.points[0] = x; + this.currentPath.points[1] = y; + + return this; + }; + + /** + * Draws a line using the current line style from the current drawing position to (x, y); + * The current drawing position is then set to (x, y). + * + * @param {number} x - the X coordinate to draw to + * @param {number} y - the Y coordinate to draw to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTo = function lineTo (x, y) + { + if (!this.currentPath) + { + this.moveTo(0, 0); + } + + // remove duplicates.. + var points = this.currentPath.points; + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + if (fromX !== x || fromY !== y) + { + points.push(x, y); + } + + return this; + }; + + /** + * Initialize the curve + * + * @protected + * @param {number} [x=0] + * @param {number} [y=0] + */ + Graphics.prototype._initCurve = function _initCurve (x, y) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + if (this.currentPath) + { + if (this.currentPath.points.length === 0) + { + this.currentPath.points = [x, y]; + } + } + else + { + this.moveTo(x, y); + } + }; + + /** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.quadraticCurveTo = function quadraticCurveTo (cpX, cpY, toX, toY) + { + this._initCurve(); + + var points = this.currentPath.points; + + if (points.length === 0) + { + this.moveTo(0, 0); + } + + QuadraticUtils.curveTo(cpX, cpY, toX, toY, points); + + return this; + }; + + /** + * Calculate the points for a bezier curve and then draws it. + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.bezierCurveTo = function bezierCurveTo (cpX, cpY, cpX2, cpY2, toX, toY) + { + this._initCurve(); + + BezierUtils.curveTo(cpX, cpY, cpX2, cpY2, toX, toY, this.currentPath.points); + + return this; + }; + + /** + * The arcTo() method creates an arc/curve between two tangents on the canvas. + * + * "borrowed" from https://code.google.com/p/fxcanvas/ - thanks google! + * + * @param {number} x1 - The x-coordinate of the first tangent point of the arc + * @param {number} y1 - The y-coordinate of the first tangent point of the arc + * @param {number} x2 - The x-coordinate of the end of the arc + * @param {number} y2 - The y-coordinate of the end of the arc + * @param {number} radius - The radius of the arc + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arcTo = function arcTo (x1, y1, x2, y2, radius) + { + this._initCurve(x1, y1); + + var points = this.currentPath.points; + + var result = ArcUtils.curveTo(x1, y1, x2, y2, radius, points); + + if (result) + { + var cx = result.cx; + var cy = result.cy; + var radius$1 = result.radius; + var startAngle = result.startAngle; + var endAngle = result.endAngle; + var anticlockwise = result.anticlockwise; + + this.arc(cx, cy, radius$1, startAngle, endAngle, anticlockwise); + } + + return this; + }; + + /** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arc = function arc (cx, cy, radius, startAngle, endAngle, anticlockwise) + { + if ( anticlockwise === void 0 ) anticlockwise = false; + + if (startAngle === endAngle) + { + return this; + } + + if (!anticlockwise && endAngle <= startAngle) + { + endAngle += PI_2; + } + else if (anticlockwise && startAngle <= endAngle) + { + startAngle += PI_2; + } + + var sweep = endAngle - startAngle; + + if (sweep === 0) + { + return this; + } + + var startX = cx + (Math.cos(startAngle) * radius); + var startY = cy + (Math.sin(startAngle) * radius); + var eps = this.geometry.closePointEps; + + // If the currentPath exists, take its points. Otherwise call `moveTo` to start a path. + var points = this.currentPath ? this.currentPath.points : null; + + if (points) + { + // TODO: make a better fix. + + // We check how far our start is from the last existing point + var xDiff = Math.abs(points[points.length - 2] - startX); + var yDiff = Math.abs(points[points.length - 1] - startY); + + if (xDiff < eps && yDiff < eps) + ; + else + { + points.push(startX, startY); + } + } + else + { + this.moveTo(startX, startY); + points = this.currentPath.points; + } + + ArcUtils.arc(startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points); + + return this; + }; + + /** + * Specifies a simple one-color fill that subsequent calls to other Graphics methods + * (such as lineTo() or drawCircle()) use when drawing. + * + * @param {number} [color=0] - the color of the fill + * @param {number} [alpha=1] - the alpha of the fill + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginFill = function beginFill (color, alpha) + { + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + + return this.beginTextureFill(Texture.WHITE, color, alpha); + }; + + /** + * Begin the texture fill + * + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to fill + * @param {number} [color=0xffffff] - Background to fill behind texture + * @param {number} [alpha=1] - Alpha of fill + * @param {PIXI.Matrix} [matrix=null] - Transform matrix + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginTextureFill = function beginTextureFill (texture, color, alpha, matrix) + { + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = alpha > 0; + + if (!visible) + { + this._fillStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._fillStyle, { + color: color, + alpha: alpha, + texture: texture, + matrix: matrix, + visible: visible, + }); + } + + return this; + }; + + /** + * Applies a fill to the lines and shapes that were added since the last call to the beginFill() method. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.endFill = function endFill () + { + this.finishPoly(); + + this._fillStyle.reset(); + + return this; + }; + + /** + * Draws a rectangle shape. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRect = function drawRect (x, y, width, height) + { + return this.drawShape(new Rectangle(x, y, width, height)); + }; + + /** + * Draw a rectangle shape with rounded/beveled corners. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @param {number} radius - Radius of the rectangle corners + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRoundedRect = function drawRoundedRect (x, y, width, height, radius) + { + return this.drawShape(new RoundedRectangle(x, y, width, height, radius)); + }; + + /** + * Draws a circle. + * + * @param {number} x - The X coordinate of the center of the circle + * @param {number} y - The Y coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawCircle = function drawCircle (x, y, radius) + { + return this.drawShape(new Circle(x, y, radius)); + }; + + /** + * Draws an ellipse. + * + * @param {number} x - The X coordinate of the center of the ellipse + * @param {number} y - The Y coordinate of the center of the ellipse + * @param {number} width - The half width of the ellipse + * @param {number} height - The half height of the ellipse + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawEllipse = function drawEllipse (x, y, width, height) + { + return this.drawShape(new Ellipse(x, y, width, height)); + }; + + /** + * Draws a polygon using the given path. + * + * @param {number[]|PIXI.Point[]|PIXI.Polygon} path - The path data used to construct the polygon. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawPolygon = function drawPolygon (path) + { + var arguments$1 = arguments; + + // prevents an argument assignment deopt + // see section 3.1: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + var points = path; + + var closeStroke = true;// !!this._fillStyle; + + // check if data has points.. + if (points.points) + { + closeStroke = points.closeStroke; + points = points.points; + } + + if (!Array.isArray(points)) + { + // prevents an argument leak deopt + // see section 3.2: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + points = new Array(arguments.length); + + for (var i = 0; i < points.length; ++i) + { + points[i] = arguments$1[i]; // eslint-disable-line prefer-rest-params + } + } + + var shape = new Polygon(points); + + shape.closeStroke = closeStroke; + + this.drawShape(shape); + + return this; + }; + + /** + * Draw any shape. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - Shape to draw + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawShape = function drawShape (shape) + { + if (!this._holeMode) + { + this.geometry.drawShape( + shape, + this._fillStyle.clone(), + this._lineStyle.clone(), + this._matrix + ); + } + else + { + this.geometry.drawHole(shape, this._matrix); + } + + return this; + }; + + /** + * Draw a star shape with an arbitrary number of points. + * + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawStar = function drawStar (x, y, points, radius, innerRadius, rotation) + { + if ( rotation === void 0 ) rotation = 0; + + return this.drawPolygon(new Star(x, y, points, radius, innerRadius, rotation)); + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.clear = function clear () + { + this.geometry.clear(); + this._lineStyle.reset(); + this._fillStyle.reset(); + + this._matrix = null; + this._holeMode = false; + this.currentPath = null; + + return this; + }; + + /** + * True if graphics consists of one rectangle, and thus, can be drawn like a Sprite and + * masked with gl.scissor. + * + * @returns {boolean} True if only 1 rect. + */ + Graphics.prototype.isFastRect = function isFastRect () + { + // will fix this! + return false; + // this.graphicsData.length === 1 + // && this.graphicsData[0].shape.type === SHAPES.RECT + // && !this.graphicsData[0].lineWidth; + }; + + /** + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._render = function _render (renderer) + { + this.finishPoly(); + + var geometry = this.geometry; + + // batch part.. + // batch it! + geometry.updateBatches(); + + if (geometry.batchable) + { + if (this.batchDirty !== geometry.batchDirty) + { + this._populateBatches(); + } + + this._renderBatched(renderer); + } + else + { + // no batching... + renderer.batch.flush(); + + this._renderDirect(renderer); + } + }; + + /** + * Populating batches for rendering + * + * @protected + */ + Graphics.prototype._populateBatches = function _populateBatches () + { + var geometry = this.geometry; + var blendMode = this.blendMode; + + this.batches = []; + this.batchTint = -1; + this._transformID = -1; + this.batchDirty = geometry.batchDirty; + + this.vertexData = new Float32Array(geometry.points); + + for (var i = 0, l = geometry.batches.length; i < l; i++) + { + var gI = geometry.batches[i]; + var color = gI.style.color; + var vertexData = new Float32Array(this.vertexData.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var uvs = new Float32Array(geometry.uvsFloat32.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var indices = new Uint16Array(geometry.indicesUint16.buffer, + gI.start * 2, + gI.size); + + var batch = { + vertexData: vertexData, + blendMode: blendMode, + indices: indices, + uvs: uvs, + _batchRGB: hex2rgb(color), + _tintRGB: color, + _texture: gI.style.texture, + alpha: gI.style.alpha, + worldAlpha: 1 }; + + this.batches[i] = batch; + } + }; + + /** + * Renders the batches using the BathedRenderer plugin + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderBatched = function _renderBatched (renderer) + { + if (!this.batches.length) + { + return; + } + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + + this.calculateVertices(); + this.calculateTints(); + + for (var i = 0, l = this.batches.length; i < l; i++) + { + var batch = this.batches[i]; + + batch.worldAlpha = this.worldAlpha * batch.alpha; + + renderer.plugins[this.pluginName].render(batch); + } + }; + + /** + * Renders the graphics direct + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderDirect = function _renderDirect (renderer) + { + var shader = this._resolveDirectShader(renderer); + + var geometry = this.geometry; + var tint = this.tint; + var worldAlpha = this.worldAlpha; + var uniforms = shader.uniforms; + var drawCalls = geometry.drawCalls; + + // lets set the transfomr + uniforms.translationMatrix = this.transform.worldTransform; + + // and then lets set the tint.. + uniforms.tint[0] = (((tint >> 16) & 0xFF) / 255) * worldAlpha; + uniforms.tint[1] = (((tint >> 8) & 0xFF) / 255) * worldAlpha; + uniforms.tint[2] = ((tint & 0xFF) / 255) * worldAlpha; + uniforms.tint[3] = worldAlpha; + + // the first draw call, we can set the uniforms of the shader directly here. + + // this means that we can tack advantage of the sync function of pixi! + // bind and sync uniforms.. + // there is a way to optimise this.. + renderer.shader.bind(shader); + renderer.geometry.bind(geometry, shader); + + // set state.. + renderer.state.set(this.state); + + // then render the rest of them... + for (var i = 0, l = drawCalls.length; i < l; i++) + { + this._renderDrawCallDirect(renderer, geometry.drawCalls[i]); + } + }; + + /** + * Renders specific DrawCall + * + * @param {PIXI.Renderer} renderer + * @param {PIXI.BatchDrawCall} drawCall + */ + Graphics.prototype._renderDrawCallDirect = function _renderDrawCallDirect (renderer, drawCall) + { + var groupTextureCount = drawCall.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + renderer.texture.bind(drawCall.textures[j], j); + } + + renderer.geometry.draw(drawCall.type, drawCall.size, drawCall.start); + }; + + /** + * Resolves shader for direct rendering + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._resolveDirectShader = function _resolveDirectShader (renderer) + { + var shader = this.shader; + + var pluginName = this.pluginName; + + if (!shader) + { + // if there is no shader here, we can use the default shader. + // and that only gets created if we actually need it.. + // but may be more than one plugins for graphics + if (!DEFAULT_SHADERS[pluginName]) + { + var sampleValues = new Int32Array(16); + + for (var i = 0; i < 16; i++) + { + sampleValues[i] = i; + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: UniformGroup.from({ uSamplers: sampleValues }, true), + }; + + var program = renderer.plugins[pluginName]._shader.program; + + DEFAULT_SHADERS[pluginName] = new Shader(program, uniforms); + } + + shader = DEFAULT_SHADERS[pluginName]; + } + + return shader; + }; + + /** + * Retrieves the bounds of the graphic shape as a rectangle object + * + * @protected + */ + Graphics.prototype._calculateBounds = function _calculateBounds () + { + this.finishPoly(); + var lb = this.geometry.bounds; + + this._bounds.addFrame(this.transform, lb.minX, lb.minY, lb.maxX, lb.maxY); + }; + + /** + * Tests if a point is inside this graphics object + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Graphics.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, Graphics._TEMP_POINT); + + return this.geometry.containsPoint(Graphics._TEMP_POINT); + }; + + /** + * Recalcuate the tint by applying tin to batches using Graphics tint. + * @protected + */ + Graphics.prototype.calculateTints = function calculateTints () + { + if (this.batchTint !== this.tint) + { + this.batchTint = this.tint; + + var tintRGB = hex2rgb(this.tint, temp); + + for (var i = 0; i < this.batches.length; i++) + { + var batch = this.batches[i]; + + var batchTint = batch._batchRGB; + + var r = (tintRGB[0] * batchTint[0]) * 255; + var g = (tintRGB[1] * batchTint[1]) * 255; + var b = (tintRGB[2] * batchTint[2]) * 255; + + // TODO Ivan, can this be done in one go? + var color = (r << 16) + (g << 8) + (b | 0); + + batch._tintRGB = (color >> 16) + + (color & 0xff00) + + ((color & 0xff) << 16); + } + } + }; + + /** + * If there's a transform update or a change to the shape of the + * geometry, recaculate the vertices. + * @protected + */ + Graphics.prototype.calculateVertices = function calculateVertices () + { + if (this._transformID === this.transform._worldID) + { + return; + } + + this._transformID = this.transform._worldID; + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var data = this.geometry.points;// batch.vertexDataOriginal; + var vertexData = this.vertexData; + + var count = 0; + + for (var i = 0; i < data.length; i += 2) + { + var x = data[i]; + var y = data[i + 1]; + + vertexData[count++] = (a * x) + (c * y) + tx; + vertexData[count++] = (d * y) + (b * x) + ty; + } + }; + + /** + * Closes the current path. + * + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.closePath = function closePath () + { + var currentPath = this.currentPath; + + if (currentPath) + { + // we don't need to add extra point in the end because buildLine will take care of that + currentPath.closeStroke = true; + } + + return this; + }; + + /** + * Apply a matrix to the positional data. + * + * @param {PIXI.Matrix} matrix - Matrix to use for transform current shape. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.setMatrix = function setMatrix (matrix) + { + this._matrix = matrix; + + return this; + }; + + /** + * Begin adding holes to the last draw shape + * IMPORTANT: holes must be fully inside a shape to work + * Also weirdness ensues if holes overlap! + * Ellipses, Circles, Rectangles and Rounded Rectangles cannot be holes or host for holes in CanvasRenderer, + * please use `moveTo` `lineTo`, `quadraticCurveTo` if you rely on pixi-legacy bundle. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.beginHole = function beginHole () + { + this.finishPoly(); + this._holeMode = true; + + return this; + }; + + /** + * End adding holes to the last draw shape + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.endHole = function endHole () + { + this.finishPoly(); + this._holeMode = false; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Graphics.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this.geometry.refCount--; + if (this.geometry.refCount === 0) + { + this.geometry.dispose(); + } + + this._matrix = null; + this.currentPath = null; + this._lineStyle.destroy(); + this._lineStyle = null; + this._fillStyle.destroy(); + this._fillStyle = null; + this.geometry = null; + this.shader = null; + this.vertexData = null; + this.batches.length = 0; + this.batches = null; + + Container.prototype.destroy.call(this, options); + }; + + Object.defineProperties( Graphics.prototype, prototypeAccessors ); + + return Graphics; +}(Container)); + +/** + * Temporary point to use for containsPoint + * + * @static + * @private + * @member {PIXI.Point} + */ +Graphics._TEMP_POINT = new Point(); + +/*! + * @pixi/sprite - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint = new Point(); +var indices = new Uint16Array([0, 1, 2, 0, 2, 3]); + +/** + * The Sprite object is the base for all textured objects that are rendered to the screen +* + * A sprite can be created directly from an image like this: + * + * ```js + * let sprite = PIXI.Sprite.from('assets/image.png'); + * ``` + * + * The more efficient way to create sprites is using a {@link PIXI.Spritesheet}, + * as swapping base textures when rendering to the screen is inefficient. + * + * ```js + * PIXI.Loader.shared.add("assets/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["assets/spritesheet.json"].spritesheet; + * let sprite = new PIXI.Sprite(sheet.textures["image.png"]); + * ... + * } + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Sprite = /*@__PURE__*/(function (Container) { + function Sprite(texture) + { + Container.call(this); + + /** + * The anchor point defines the normalized coordinates + * in the texture that map to the position of this + * sprite. + * + * By default, this is `(0,0)` (or `texture.defaultAnchor` + * if you have modified that), which means the position + * `(x,y)` of this `Sprite` will be the top-left corner. + * + * Note: Updating `texture.defaultAnchor` after + * constructing a `Sprite` does _not_ update its anchor. + * + * {@link https://docs.cocos2d-x.org/cocos2d-x/en/sprites/manipulation.html} + * + * @default `texture.defaultAnchor` + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint( + this._onAnchorUpdate, + this, + (texture ? texture.defaultAnchor.x : 0), + (texture ? texture.defaultAnchor.y : 0) + ); + + /** + * The texture that the sprite is using + * + * @private + * @member {PIXI.Texture} + */ + this._texture = null; + + /** + * The width of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._width = 0; + + /** + * The height of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._height = 0; + + /** + * The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect. + * + * @private + * @member {number} + * @default 0xFFFFFF + */ + this._tint = null; + this._tintRGB = null; + this.tint = 0xFFFFFF; + + /** + * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ + this.blendMode = BLEND_MODES.NORMAL; + + /** + * The shader that will be used to render the sprite. Set to null to remove a current shader. + * + * @member {PIXI.Filter|PIXI.Shader} + */ + this.shader = null; + + /** + * Cached tint value so we can tell when the tint is changed. + * Value is used for 2d CanvasRenderer. + * + * @protected + * @member {number} + * @default 0xFFFFFF + */ + this._cachedTint = 0xFFFFFF; + + /** + * this is used to store the uvs data of the sprite, assigned at the same time + * as the vertexData in calculateVertices() + * + * @private + * @member {Float32Array} + */ + this.uvs = null; + + // call texture setter + this.texture = texture || Texture.EMPTY; + + /** + * this is used to store the vertex data of the sprite (basically a quad) + * + * @private + * @member {Float32Array} + */ + this.vertexData = new Float32Array(8); + + /** + * This is used to calculate the bounds of the object IF it is a trimmed sprite + * + * @private + * @member {Float32Array} + */ + this.vertexTrimmedData = null; + + this._transformID = -1; + this._textureID = -1; + + this._transformTrimmedID = -1; + this._textureTrimmedID = -1; + + // Batchable stuff.. + // TODO could make this a mixin? + this.indices = indices; + this.size = 4; + this.start = 0; + + /** + * Plugin that is responsible for rendering this element. + * Allows to customize the rendering process without overriding '_render' & '_renderCanvas' methods. + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = true; + + /** + * Internal roundPixels field + * + * @member {boolean} + * @private + */ + this._roundPixels = settings.ROUND_PIXELS; + } + + if ( Container ) Sprite.__proto__ = Container; + Sprite.prototype = Object.create( Container && Container.prototype ); + Sprite.prototype.constructor = Sprite; + + var prototypeAccessors = { roundPixels: { configurable: true },width: { configurable: true },height: { configurable: true },anchor: { configurable: true },tint: { configurable: true },texture: { configurable: true } }; + + /** + * When the texture is updated, this event will fire to update the scale and frame + * + * @private + */ + Sprite.prototype._onTextureUpdate = function _onTextureUpdate () + { + this._textureID = -1; + this._textureTrimmedID = -1; + this._cachedTint = 0xFFFFFF; + + // so if _width is 0 then width was not set.. + if (this._width) + { + this.scale.x = sign$1(this.scale.x) * this._width / this._texture.orig.width; + } + + if (this._height) + { + this.scale.y = sign$1(this.scale.y) * this._height / this._texture.orig.height; + } + }; + + /** + * Called when the anchor position updates. + * + * @private + */ + Sprite.prototype._onAnchorUpdate = function _onAnchorUpdate () + { + this._transformID = -1; + this._transformTrimmedID = -1; + }; + + /** + * calculates worldTransform * vertices, store it in vertexData + */ + Sprite.prototype.calculateVertices = function calculateVertices () + { + var texture = this._texture; + + if (this._transformID === this.transform._worldID && this._textureID === texture._updateID) + { + return; + } + + // update texture UV here, because base texture can be changed without calling `_onTextureUpdate` + if (this._textureID !== texture._updateID) + { + this.uvs = this._texture._uvs.uvsFloat32; + } + + this._transformID = this.transform._worldID; + this._textureID = texture._updateID; + + // set the vertex data + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + var vertexData = this.vertexData; + var trim = texture.trim; + var orig = texture.orig; + var anchor = this._anchor; + + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the extra + // space before transforming the sprite coords. + w1 = trim.x - (anchor._x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (anchor._y * orig.height); + h0 = h1 + trim.height; + } + else + { + w1 = -anchor._x * orig.width; + w0 = w1 + orig.width; + + h1 = -anchor._y * orig.height; + h0 = h1 + orig.height; + } + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + + if (this._roundPixels) + { + for (var i = 0; i < 8; i++) + { + vertexData[i] = Math.round(vertexData[i]); + } + } + }; + + /** + * calculates worldTransform * vertices for a non texture with a trim. store it in vertexTrimmedData + * This is used to ensure that the true width and height of a trimmed texture is respected + */ + Sprite.prototype.calculateTrimmedVertices = function calculateTrimmedVertices () + { + if (!this.vertexTrimmedData) + { + this.vertexTrimmedData = new Float32Array(8); + } + else if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID) + { + return; + } + + this._transformTrimmedID = this.transform._worldID; + this._textureTrimmedID = this._texture._updateID; + + // lets do some special trim code! + var texture = this._texture; + var vertexData = this.vertexTrimmedData; + var orig = texture.orig; + var anchor = this._anchor; + + // lets calculate the new untrimmed bounds.. + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var w1 = -anchor._x * orig.width; + var w0 = w1 + orig.width; + + var h1 = -anchor._y * orig.height; + var h0 = h1 + orig.height; + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + }; + + /** + * + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The webgl renderer to use. + */ + Sprite.prototype._render = function _render (renderer) + { + this.calculateVertices(); + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + renderer.plugins[this.pluginName].render(this); + }; + + /** + * Updates the bounds of the sprite. + * + * @protected + */ + Sprite.prototype._calculateBounds = function _calculateBounds () + { + var trim = this._texture.trim; + var orig = this._texture.orig; + + // First lets check to see if the current texture has a trim.. + if (!trim || (trim.width === orig.width && trim.height === orig.height)) + { + // no trim! lets use the usual calculations.. + this.calculateVertices(); + this._bounds.addQuad(this.vertexData); + } + else + { + // lets calculate a special trimmed bounds... + this.calculateTrimmedVertices(); + this._bounds.addQuad(this.vertexTrimmedData); + } + }; + + /** + * Gets the local bounds of the sprite object. + * + * @param {PIXI.Rectangle} [rect] - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Sprite.prototype.getLocalBounds = function getLocalBounds (rect) + { + // we can do a fast local bounds if the sprite has no children! + if (this.children.length === 0) + { + this._bounds.minX = this._texture.orig.width * -this._anchor._x; + this._bounds.minY = this._texture.orig.height * -this._anchor._y; + this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x); + this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y); + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + return this._bounds.getRectangle(rect); + } + + return Container.prototype.getLocalBounds.call(this, rect); + }; + + /** + * Tests if a point is inside this sprite + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Sprite.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, tempPoint); + + var width = this._texture.orig.width; + var height = this._texture.orig.height; + var x1 = -width * this.anchor.x; + var y1 = 0; + + if (tempPoint.x >= x1 && tempPoint.x < x1 + width) + { + y1 = -height * this.anchor.y; + + if (tempPoint.y >= y1 && tempPoint.y < y1 + height) + { + return true; + } + } + + return false; + }; + + /** + * Destroys this sprite and optionally its texture and children + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well + */ + Sprite.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this._texture.off('update', this._onTextureUpdate, this); + + this._anchor = null; + + var destroyTexture = typeof options === 'boolean' ? options : options && options.texture; + + if (destroyTexture) + { + var destroyBaseTexture = typeof options === 'boolean' ? options : options && options.baseTexture; + + this._texture.destroy(!!destroyBaseTexture); + } + + this._texture = null; + this.shader = null; + }; + + // some helper functions.. + + /** + * Helper function that creates a new sprite based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Sprite} The newly created sprite + */ + Sprite.from = function from (source, options) + { + var texture = (source instanceof Texture) + ? source + : Texture.from(source, options); + + return new Sprite(texture); + }; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + prototypeAccessors.roundPixels.set = function (value) + { + if (this._roundPixels !== value) + { + this._transformID = -1; + } + this._roundPixels = value; + }; + + prototypeAccessors.roundPixels.get = function () + { + return this._roundPixels; + }; + + /** + * The width of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * The anchor sets the origin point of the text. The default value is taken from the {@link PIXI.Texture|Texture} + * and passed to the constructor. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * If you pass only single parameter, it will set both x and y to the same value as shown in the example below. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.anchor.set(0.5); // This will set the origin to center. (0.5) is same as (0.5, 0.5). + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + this._anchor.copyFrom(value); + }; + + /** + * The tint applied to the sprite. This is a hex value. + * A value of 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._tint = value; + this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16); + }; + + /** + * The texture that the sprite is using + * + * @member {PIXI.Texture} + */ + prototypeAccessors.texture.get = function () + { + return this._texture; + }; + + prototypeAccessors.texture.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._texture === value) + { + return; + } + + this._texture = value || Texture.EMPTY; + this._cachedTint = 0xFFFFFF; + + this._textureID = -1; + this._textureTrimmedID = -1; + + if (value) + { + // wait for the texture to load + if (value.baseTexture.valid) + { + this._onTextureUpdate(); + } + else + { + value.once('update', this._onTextureUpdate, this); + } + } + }; + + Object.defineProperties( Sprite.prototype, prototypeAccessors ); + + return Sprite; +}(Container)); + +/*! + * @pixi/text - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Constants that define the type of gradient on text. + * + * @static + * @constant + * @name TEXT_GRADIENT + * @memberof PIXI + * @type {object} + * @property {number} LINEAR_VERTICAL Vertical gradient + * @property {number} LINEAR_HORIZONTAL Linear gradient + */ +var TEXT_GRADIENT = { + LINEAR_VERTICAL: 0, + LINEAR_HORIZONTAL: 1, +}; + +// disabling eslint for now, going to rewrite this in v5 + +var defaultStyle = { + align: 'left', + breakWords: false, + dropShadow: false, + dropShadowAlpha: 1, + dropShadowAngle: Math.PI / 6, + dropShadowBlur: 0, + dropShadowColor: 'black', + dropShadowDistance: 5, + fill: 'black', + fillGradientType: TEXT_GRADIENT.LINEAR_VERTICAL, + fillGradientStops: [], + fontFamily: 'Arial', + fontSize: 26, + fontStyle: 'normal', + fontVariant: 'normal', + fontWeight: 'normal', + letterSpacing: 0, + lineHeight: 0, + lineJoin: 'miter', + miterLimit: 10, + padding: 0, + stroke: 'black', + strokeThickness: 0, + textBaseline: 'alphabetic', + trim: false, + whiteSpace: 'pre', + wordWrap: false, + wordWrapWidth: 100, + leading: 0, +}; + +var genericFontFamilies = [ + 'serif', + 'sans-serif', + 'monospace', + 'cursive', + 'fantasy', + 'system-ui' ]; + +/** + * A TextStyle Object contains information to decorate a Text objects. + * + * An instance can be shared between multiple Text objects; then changing the style will update all text objects using it. + * + * A tool can be used to generate a text style [here](https://pixijs.io/pixi-text-style). + * + * @class + * @memberof PIXI + */ +var TextStyle = function TextStyle(style) +{ + this.styleID = 0; + + this.reset(); + + deepCopyProperties(this, style, style); +}; + +var prototypeAccessors$7 = { align: { configurable: true },breakWords: { configurable: true },dropShadow: { configurable: true },dropShadowAlpha: { configurable: true },dropShadowAngle: { configurable: true },dropShadowBlur: { configurable: true },dropShadowColor: { configurable: true },dropShadowDistance: { configurable: true },fill: { configurable: true },fillGradientType: { configurable: true },fillGradientStops: { configurable: true },fontFamily: { configurable: true },fontSize: { configurable: true },fontStyle: { configurable: true },fontVariant: { configurable: true },fontWeight: { configurable: true },letterSpacing: { configurable: true },lineHeight: { configurable: true },leading: { configurable: true },lineJoin: { configurable: true },miterLimit: { configurable: true },padding: { configurable: true },stroke: { configurable: true },strokeThickness: { configurable: true },textBaseline: { configurable: true },trim: { configurable: true },whiteSpace: { configurable: true },wordWrap: { configurable: true },wordWrapWidth: { configurable: true } }; + +/** + * Creates a new TextStyle object with the same values as this one. + * Note that the only the properties of the object are cloned. + * + * @return {PIXI.TextStyle} New cloned TextStyle object + */ +TextStyle.prototype.clone = function clone () +{ + var clonedProperties = {}; + + deepCopyProperties(clonedProperties, this, defaultStyle); + + return new TextStyle(clonedProperties); +}; + +/** + * Resets all properties to the defaults specified in TextStyle.prototype._default + */ +TextStyle.prototype.reset = function reset () +{ + deepCopyProperties(this, defaultStyle, defaultStyle); +}; + +/** + * Alignment for multiline text ('left', 'center' or 'right'), does not affect single line text + * + * @member {string} + */ +prototypeAccessors$7.align.get = function () +{ + return this._align; +}; +prototypeAccessors$7.align.set = function (align) // eslint-disable-line require-jsdoc +{ + if (this._align !== align) + { + this._align = align; + this.styleID++; + } +}; + +/** + * Indicates if lines can be wrapped within words, it needs wordWrap to be set to true + * + * @member {boolean} + */ +prototypeAccessors$7.breakWords.get = function () +{ + return this._breakWords; +}; +prototypeAccessors$7.breakWords.set = function (breakWords) // eslint-disable-line require-jsdoc +{ + if (this._breakWords !== breakWords) + { + this._breakWords = breakWords; + this.styleID++; + } +}; + +/** + * Set a drop shadow for the text + * + * @member {boolean} + */ +prototypeAccessors$7.dropShadow.get = function () +{ + return this._dropShadow; +}; +prototypeAccessors$7.dropShadow.set = function (dropShadow) // eslint-disable-line require-jsdoc +{ + if (this._dropShadow !== dropShadow) + { + this._dropShadow = dropShadow; + this.styleID++; + } +}; + +/** + * Set alpha for the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAlpha.get = function () +{ + return this._dropShadowAlpha; +}; +prototypeAccessors$7.dropShadowAlpha.set = function (dropShadowAlpha) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAlpha !== dropShadowAlpha) + { + this._dropShadowAlpha = dropShadowAlpha; + this.styleID++; + } +}; + +/** + * Set a angle of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAngle.get = function () +{ + return this._dropShadowAngle; +}; +prototypeAccessors$7.dropShadowAngle.set = function (dropShadowAngle) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAngle !== dropShadowAngle) + { + this._dropShadowAngle = dropShadowAngle; + this.styleID++; + } +}; + +/** + * Set a shadow blur radius + * + * @member {number} + */ +prototypeAccessors$7.dropShadowBlur.get = function () +{ + return this._dropShadowBlur; +}; +prototypeAccessors$7.dropShadowBlur.set = function (dropShadowBlur) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowBlur !== dropShadowBlur) + { + this._dropShadowBlur = dropShadowBlur; + this.styleID++; + } +}; + +/** + * A fill style to be used on the dropshadow e.g 'red', '#00FF00' + * + * @member {string|number} + */ +prototypeAccessors$7.dropShadowColor.get = function () +{ + return this._dropShadowColor; +}; +prototypeAccessors$7.dropShadowColor.set = function (dropShadowColor) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(dropShadowColor); + if (this._dropShadowColor !== outputColor) + { + this._dropShadowColor = outputColor; + this.styleID++; + } +}; + +/** + * Set a distance of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowDistance.get = function () +{ + return this._dropShadowDistance; +}; +prototypeAccessors$7.dropShadowDistance.set = function (dropShadowDistance) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowDistance !== dropShadowDistance) + { + this._dropShadowDistance = dropShadowDistance; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text e.g 'red', '#00FF00'. + * Can be an array to create a gradient eg ['#000000','#FFFFFF'] + * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle|MDN} + * + * @member {string|string[]|number|number[]|CanvasGradient|CanvasPattern} + */ +prototypeAccessors$7.fill.get = function () +{ + return this._fill; +}; +prototypeAccessors$7.fill.set = function (fill) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(fill); + if (this._fill !== outputColor) + { + this._fill = outputColor; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this can change the type/direction of the gradient. + * See {@link PIXI.TEXT_GRADIENT} + * + * @member {number} + */ +prototypeAccessors$7.fillGradientType.get = function () +{ + return this._fillGradientType; +}; +prototypeAccessors$7.fillGradientType.set = function (fillGradientType) // eslint-disable-line require-jsdoc +{ + if (this._fillGradientType !== fillGradientType) + { + this._fillGradientType = fillGradientType; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this array can set the stop points + * (numbers between 0 and 1) for the color, overriding the default behaviour of evenly spacing them. + * + * @member {number[]} + */ +prototypeAccessors$7.fillGradientStops.get = function () +{ + return this._fillGradientStops; +}; +prototypeAccessors$7.fillGradientStops.set = function (fillGradientStops) // eslint-disable-line require-jsdoc +{ + if (!areArraysEqual(this._fillGradientStops,fillGradientStops)) + { + this._fillGradientStops = fillGradientStops; + this.styleID++; + } +}; + +/** + * The font family + * + * @member {string|string[]} + */ +prototypeAccessors$7.fontFamily.get = function () +{ + return this._fontFamily; +}; +prototypeAccessors$7.fontFamily.set = function (fontFamily) // eslint-disable-line require-jsdoc +{ + if (this.fontFamily !== fontFamily) + { + this._fontFamily = fontFamily; + this.styleID++; + } +}; + +/** + * The font size + * (as a number it converts to px, but as a string, equivalents are '26px','20pt','160%' or '1.6em') + * + * @member {number|string} + */ +prototypeAccessors$7.fontSize.get = function () +{ + return this._fontSize; +}; +prototypeAccessors$7.fontSize.set = function (fontSize) // eslint-disable-line require-jsdoc +{ + if (this._fontSize !== fontSize) + { + this._fontSize = fontSize; + this.styleID++; + } +}; + +/** + * The font style + * ('normal', 'italic' or 'oblique') + * + * @member {string} + */ +prototypeAccessors$7.fontStyle.get = function () +{ + return this._fontStyle; +}; +prototypeAccessors$7.fontStyle.set = function (fontStyle) // eslint-disable-line require-jsdoc +{ + if (this._fontStyle !== fontStyle) + { + this._fontStyle = fontStyle; + this.styleID++; + } +}; + +/** + * The font variant + * ('normal' or 'small-caps') + * + * @member {string} + */ +prototypeAccessors$7.fontVariant.get = function () +{ + return this._fontVariant; +}; +prototypeAccessors$7.fontVariant.set = function (fontVariant) // eslint-disable-line require-jsdoc +{ + if (this._fontVariant !== fontVariant) + { + this._fontVariant = fontVariant; + this.styleID++; + } +}; + +/** + * The font weight + * ('normal', 'bold', 'bolder', 'lighter' and '100', '200', '300', '400', '500', '600', '700', 800' or '900') + * + * @member {string} + */ +prototypeAccessors$7.fontWeight.get = function () +{ + return this._fontWeight; +}; +prototypeAccessors$7.fontWeight.set = function (fontWeight) // eslint-disable-line require-jsdoc +{ + if (this._fontWeight !== fontWeight) + { + this._fontWeight = fontWeight; + this.styleID++; + } +}; + +/** + * The amount of spacing between letters, default is 0 + * + * @member {number} + */ +prototypeAccessors$7.letterSpacing.get = function () +{ + return this._letterSpacing; +}; +prototypeAccessors$7.letterSpacing.set = function (letterSpacing) // eslint-disable-line require-jsdoc +{ + if (this._letterSpacing !== letterSpacing) + { + this._letterSpacing = letterSpacing; + this.styleID++; + } +}; + +/** + * The line height, a number that represents the vertical space that a letter uses + * + * @member {number} + */ +prototypeAccessors$7.lineHeight.get = function () +{ + return this._lineHeight; +}; +prototypeAccessors$7.lineHeight.set = function (lineHeight) // eslint-disable-line require-jsdoc +{ + if (this._lineHeight !== lineHeight) + { + this._lineHeight = lineHeight; + this.styleID++; + } +}; + +/** + * The space between lines + * + * @member {number} + */ +prototypeAccessors$7.leading.get = function () +{ + return this._leading; +}; +prototypeAccessors$7.leading.set = function (leading) // eslint-disable-line require-jsdoc +{ + if (this._leading !== leading) + { + this._leading = leading; + this.styleID++; + } +}; + +/** + * The lineJoin property sets the type of corner created, it can resolve spiked text issues. + * Default is 'miter' (creates a sharp corner). + * + * @member {string} + */ +prototypeAccessors$7.lineJoin.get = function () +{ + return this._lineJoin; +}; +prototypeAccessors$7.lineJoin.set = function (lineJoin) // eslint-disable-line require-jsdoc +{ + if (this._lineJoin !== lineJoin) + { + this._lineJoin = lineJoin; + this.styleID++; + } +}; + +/** + * The miter limit to use when using the 'miter' lineJoin mode + * This can reduce or increase the spikiness of rendered text. + * + * @member {number} + */ +prototypeAccessors$7.miterLimit.get = function () +{ + return this._miterLimit; +}; +prototypeAccessors$7.miterLimit.set = function (miterLimit) // eslint-disable-line require-jsdoc +{ + if (this._miterLimit !== miterLimit) + { + this._miterLimit = miterLimit; + this.styleID++; + } +}; + +/** + * Occasionally some fonts are cropped. Adding some padding will prevent this from happening + * by adding padding to all sides of the text. + * + * @member {number} + */ +prototypeAccessors$7.padding.get = function () +{ + return this._padding; +}; +prototypeAccessors$7.padding.set = function (padding) // eslint-disable-line require-jsdoc +{ + if (this._padding !== padding) + { + this._padding = padding; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text stroke + * e.g 'blue', '#FCFF00' + * + * @member {string|number} + */ +prototypeAccessors$7.stroke.get = function () +{ + return this._stroke; +}; +prototypeAccessors$7.stroke.set = function (stroke) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(stroke); + if (this._stroke !== outputColor) + { + this._stroke = outputColor; + this.styleID++; + } +}; + +/** + * A number that represents the thickness of the stroke. + * Default is 0 (no stroke) + * + * @member {number} + */ +prototypeAccessors$7.strokeThickness.get = function () +{ + return this._strokeThickness; +}; +prototypeAccessors$7.strokeThickness.set = function (strokeThickness) // eslint-disable-line require-jsdoc +{ + if (this._strokeThickness !== strokeThickness) + { + this._strokeThickness = strokeThickness; + this.styleID++; + } +}; + +/** + * The baseline of the text that is rendered. + * + * @member {string} + */ +prototypeAccessors$7.textBaseline.get = function () +{ + return this._textBaseline; +}; +prototypeAccessors$7.textBaseline.set = function (textBaseline) // eslint-disable-line require-jsdoc +{ + if (this._textBaseline !== textBaseline) + { + this._textBaseline = textBaseline; + this.styleID++; + } +}; + +/** + * Trim transparent borders + * + * @member {boolean} + */ +prototypeAccessors$7.trim.get = function () +{ + return this._trim; +}; +prototypeAccessors$7.trim.set = function (trim) // eslint-disable-line require-jsdoc +{ + if (this._trim !== trim) + { + this._trim = trim; + this.styleID++; + } +}; + +/** + * How newlines and spaces should be handled. + * Default is 'pre' (preserve, preserve). + * + * value | New lines | Spaces + * --- | --- | --- + * 'normal' | Collapse | Collapse + * 'pre' | Preserve | Preserve + * 'pre-line' | Preserve | Collapse + * + * @member {string} + */ +prototypeAccessors$7.whiteSpace.get = function () +{ + return this._whiteSpace; +}; +prototypeAccessors$7.whiteSpace.set = function (whiteSpace) // eslint-disable-line require-jsdoc +{ + if (this._whiteSpace !== whiteSpace) + { + this._whiteSpace = whiteSpace; + this.styleID++; + } +}; + +/** + * Indicates if word wrap should be used + * + * @member {boolean} + */ +prototypeAccessors$7.wordWrap.get = function () +{ + return this._wordWrap; +}; +prototypeAccessors$7.wordWrap.set = function (wordWrap) // eslint-disable-line require-jsdoc +{ + if (this._wordWrap !== wordWrap) + { + this._wordWrap = wordWrap; + this.styleID++; + } +}; + +/** + * The width at which text will wrap, it needs wordWrap to be set to true + * + * @member {number} + */ +prototypeAccessors$7.wordWrapWidth.get = function () +{ + return this._wordWrapWidth; +}; +prototypeAccessors$7.wordWrapWidth.set = function (wordWrapWidth) // eslint-disable-line require-jsdoc +{ + if (this._wordWrapWidth !== wordWrapWidth) + { + this._wordWrapWidth = wordWrapWidth; + this.styleID++; + } +}; + +/** + * Generates a font style string to use for `TextMetrics.measureFont()`. + * + * @return {string} Font style string, for passing to `TextMetrics.measureFont()` + */ +TextStyle.prototype.toFontString = function toFontString () +{ + // build canvas api font setting from individual components. Convert a numeric this.fontSize to px + var fontSizeString = (typeof this.fontSize === 'number') ? ((this.fontSize) + "px") : this.fontSize; + + // Clean-up fontFamily property by quoting each font name + // this will support font names with spaces + var fontFamilies = this.fontFamily; + + if (!Array.isArray(this.fontFamily)) + { + fontFamilies = this.fontFamily.split(','); + } + + for (var i = fontFamilies.length - 1; i >= 0; i--) + { + // Trim any extra white-space + var fontFamily = fontFamilies[i].trim(); + + // Check if font already contains strings + if (!(/([\"\'])[^\'\"]+\1/).test(fontFamily) && genericFontFamilies.indexOf(fontFamily) < 0) + { + fontFamily = "\"" + fontFamily + "\""; + } + fontFamilies[i] = fontFamily; + } + + return ((this.fontStyle) + " " + (this.fontVariant) + " " + (this.fontWeight) + " " + fontSizeString + " " + (fontFamilies.join(','))); +}; + +Object.defineProperties( TextStyle.prototype, prototypeAccessors$7 ); + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getSingleColor(color) +{ + if (typeof color === 'number') + { + return hex2string(color); + } + else if ( typeof color === 'string' ) + { + if ( color.indexOf('0x') === 0 ) + { + color = color.replace('0x', '#'); + } + } + + return color; +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getColor(color) +{ + if (!Array.isArray(color)) + { + return getSingleColor(color); + } + else + { + for (var i = 0; i < color.length; ++i) + { + color[i] = getSingleColor(color[i]); + } + + return color; + } +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {Array} array1 First array to compare + * @param {Array} array2 Second array to compare + * @return {boolean} Do the arrays contain the same values in the same order + */ +function areArraysEqual(array1, array2) +{ + if (!Array.isArray(array1) || !Array.isArray(array2)) + { + return false; + } + + if (array1.length !== array2.length) + { + return false; + } + + for (var i = 0; i < array1.length; ++i) + { + if (array1[i] !== array2[i]) + { + return false; + } + } + + return true; +} + +/** + * Utility function to ensure that object properties are copied by value, and not by reference + * @private + * @param {Object} target Target object to copy properties into + * @param {Object} source Source object for the properties to copy + * @param {string} propertyObj Object containing properties names we want to loop over + */ +function deepCopyProperties(target, source, propertyObj) { + for (var prop in propertyObj) { + if (Array.isArray(source[prop])) { + target[prop] = source[prop].slice(); + } else { + target[prop] = source[prop]; + } + } +} + +/** + * The TextMetrics object represents the measurement of a block of text with a specified style. + * + * ```js + * let style = new PIXI.TextStyle({fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}) + * let textMetrics = PIXI.TextMetrics.measureText('Your text', style) + * ``` + * + * @class + * @memberof PIXI + */ +var TextMetrics = function TextMetrics(text, style, width, height, lines, lineWidths, lineHeight, maxLineWidth, fontProperties) +{ + /** + * The text that was measured + * + * @member {string} + */ + this.text = text; + + /** + * The style that was measured + * + * @member {PIXI.TextStyle} + */ + this.style = style; + + /** + * The measured width of the text + * + * @member {number} + */ + this.width = width; + + /** + * The measured height of the text + * + * @member {number} + */ + this.height = height; + + /** + * An array of lines of the text broken by new lines and wrapping is specified in style + * + * @member {string[]} + */ + this.lines = lines; + + /** + * An array of the line widths for each line matched to `lines` + * + * @member {number[]} + */ + this.lineWidths = lineWidths; + + /** + * The measured line height for this style + * + * @member {number} + */ + this.lineHeight = lineHeight; + + /** + * The maximum line width for all measured lines + * + * @member {number} + */ + this.maxLineWidth = maxLineWidth; + + /** + * The font properties object from TextMetrics.measureFont + * + * @member {PIXI.IFontMetrics} + */ + this.fontProperties = fontProperties; +}; + +/** + * Measures the supplied string of text and returns a Rectangle. + * + * @param {string} text - the text to measure. + * @param {PIXI.TextStyle} style - the text style to use for measuring + * @param {boolean} [wordWrap] - optional override for if word-wrap should be applied to the text. + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {PIXI.TextMetrics} measured width and height of the text. + */ +TextMetrics.measureText = function measureText (text, style, wordWrap, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + wordWrap = (wordWrap === undefined || wordWrap === null) ? style.wordWrap : wordWrap; + var font = style.toFontString(); + var fontProperties = TextMetrics.measureFont(font); + + // fallback in case UA disallow canvas data extraction + // (toDataURI, getImageData functions) + if (fontProperties.fontSize === 0) + { + fontProperties.fontSize = style.fontSize; + fontProperties.ascent = style.fontSize; + } + + var context = canvas.getContext('2d'); + + context.font = font; + + var outputText = wordWrap ? TextMetrics.wordWrap(text, style, canvas) : text; + var lines = outputText.split(/(?:\r\n|\r|\n)/); + var lineWidths = new Array(lines.length); + var maxLineWidth = 0; + + for (var i = 0; i < lines.length; i++) + { + var lineWidth = context.measureText(lines[i]).width + ((lines[i].length - 1) * style.letterSpacing); + + lineWidths[i] = lineWidth; + maxLineWidth = Math.max(maxLineWidth, lineWidth); + } + var width = maxLineWidth + style.strokeThickness; + + if (style.dropShadow) + { + width += style.dropShadowDistance; + } + + var lineHeight = style.lineHeight || fontProperties.fontSize + style.strokeThickness; + var height = Math.max(lineHeight, fontProperties.fontSize + style.strokeThickness) + + ((lines.length - 1) * (lineHeight + style.leading)); + + if (style.dropShadow) + { + height += style.dropShadowDistance; + } + + return new TextMetrics( + text, + style, + width, + height, + lines, + lineWidths, + lineHeight + style.leading, + maxLineWidth, + fontProperties + ); +}; + +/** + * Applies newlines to a string to have it optimally fit into the horizontal + * bounds set by the Text object's wordWrapWidth property. + * + * @private + * @param {string} text - String to apply word wrapping to + * @param {PIXI.TextStyle} style - the style to use when wrapping + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {string} New string with new lines applied where required + */ +TextMetrics.wordWrap = function wordWrap (text, style, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + var context = canvas.getContext('2d'); + + var width = 0; + var line = ''; + var lines = ''; + + var cache = {}; + var letterSpacing = style.letterSpacing; + var whiteSpace = style.whiteSpace; + + // How to handle whitespaces + var collapseSpaces = TextMetrics.collapseSpaces(whiteSpace); + var collapseNewlines = TextMetrics.collapseNewlines(whiteSpace); + + // whether or not spaces may be added to the beginning of lines + var canPrependSpaces = !collapseSpaces; + + // There is letterSpacing after every char except the last one + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_! + // so for convenience the above needs to be compared to width + 1 extra letterSpace + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!_ + // ________________________________________________ + // And then the final space is simply no appended to each line + var wordWrapWidth = style.wordWrapWidth + letterSpacing; + + // break text into words, spaces and newline chars + var tokens = TextMetrics.tokenize(text); + + for (var i = 0; i < tokens.length; i++) + { + // get the word, space or newlineChar + var token = tokens[i]; + + // if word is a new line + if (TextMetrics.isNewline(token)) + { + // keep the new line + if (!collapseNewlines) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = !collapseSpaces; + line = ''; + width = 0; + continue; + } + + // if we should collapse new lines + // we simply convert it into a space + token = ' '; + } + + // if we should collapse repeated whitespaces + if (collapseSpaces) + { + // check both this and the last tokens for spaces + var currIsBreakingSpace = TextMetrics.isBreakingSpace(token); + var lastIsBreakingSpace = TextMetrics.isBreakingSpace(line[line.length - 1]); + + if (currIsBreakingSpace && lastIsBreakingSpace) + { + continue; + } + } + + // get word width from cache if possible + var tokenWidth = TextMetrics.getFromCache(token, letterSpacing, cache, context); + + // word is longer than desired bounds + if (tokenWidth > wordWrapWidth) + { + // if we are not already at the beginning of a line + if (line !== '') + { + // start newlines for overflow words + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + // break large word over multiple lines + if (TextMetrics.canBreakWords(token, style.breakWords)) + { + // break word into characters + var characters = token.split(''); + + // loop the characters + for (var j = 0; j < characters.length; j++) + { + var char = characters[j]; + + var k = 1; + // we are not at the end of the token + + while (characters[j + k]) + { + var nextChar = characters[j + k]; + var lastChar = char[char.length - 1]; + + // should not split chars + if (!TextMetrics.canBreakChars(lastChar, nextChar, token, j, style.breakWords)) + { + // combine chars & move forward one + char += nextChar; + } + else + { + break; + } + + k++; + } + + j += char.length - 1; + + var characterWidth = TextMetrics.getFromCache(char, letterSpacing, cache, context); + + if (characterWidth + width > wordWrapWidth) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = false; + line = ''; + width = 0; + } + + line += char; + width += characterWidth; + } + } + + // run word out of the bounds + else + { + // if there are words in this line already + // finish that line and start a new one + if (line.length > 0) + { + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + var isLastToken = i === tokens.length - 1; + + // give it its own line if it's not the end + lines += TextMetrics.addLine(token, !isLastToken); + canPrependSpaces = false; + line = ''; + width = 0; + } + } + + // word could fit + else + { + // word won't fit because of existing words + // start a new line + if (tokenWidth + width > wordWrapWidth) + { + // if its a space we don't want it + canPrependSpaces = false; + + // add a new line + lines += TextMetrics.addLine(line); + + // start a new line + line = ''; + width = 0; + } + + // don't add spaces to the beginning of lines + if (line.length > 0 || !TextMetrics.isBreakingSpace(token) || canPrependSpaces) + { + // add the word to the current line + line += token; + + // update width counter + width += tokenWidth; + } + } + } + + lines += TextMetrics.addLine(line, false); + + return lines; +}; + +/** + * Convienience function for logging each line added during the wordWrap + * method + * + * @private + * @param {string} line - The line of text to add + * @param {boolean} newLine - Add new line character to end + * @return {string} A formatted line + */ +TextMetrics.addLine = function addLine (line, newLine) +{ + if ( newLine === void 0 ) newLine = true; + + line = TextMetrics.trimRight(line); + + line = (newLine) ? (line + "\n") : line; + + return line; +}; + +/** + * Gets & sets the widths of calculated characters in a cache object + * + * @private + * @param {string} key The key + * @param {number} letterSpacing The letter spacing + * @param {object} cache The cache + * @param {CanvasRenderingContext2D} context The canvas context + * @return {number} The from cache. + */ +TextMetrics.getFromCache = function getFromCache (key, letterSpacing, cache, context) +{ + var width = cache[key]; + + if (width === undefined) + { + var spacing = ((key.length) * letterSpacing); + + width = context.measureText(key).width + spacing; + cache[key] = width; + } + + return width; +}; + +/** + * Determines whether we should collapse breaking spaces + * + * @private + * @param {string} whiteSpace The TextStyle property whiteSpace + * @return {boolean} should collapse + */ +TextMetrics.collapseSpaces = function collapseSpaces (whiteSpace) +{ + return (whiteSpace === 'normal' || whiteSpace === 'pre-line'); +}; + +/** + * Determines whether we should collapse newLine chars + * + * @private + * @param {string} whiteSpace The white space + * @return {boolean} should collapse + */ +TextMetrics.collapseNewlines = function collapseNewlines (whiteSpace) +{ + return (whiteSpace === 'normal'); +}; + +/** + * trims breaking whitespaces from string + * + * @private + * @param {string} text The text + * @return {string} trimmed string + */ +TextMetrics.trimRight = function trimRight (text) +{ + if (typeof text !== 'string') + { + return ''; + } + + for (var i = text.length - 1; i >= 0; i--) + { + var char = text[i]; + + if (!TextMetrics.isBreakingSpace(char)) + { + break; + } + + text = text.slice(0, -1); + } + + return text; +}; + +/** + * Determines if char is a newline. + * + * @private + * @param {string} char The character + * @return {boolean} True if newline, False otherwise. + */ +TextMetrics.isNewline = function isNewline (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._newlines.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Determines if char is a breaking whitespace. + * + * @private + * @param {string} char The character + * @return {boolean} True if whitespace, False otherwise. + */ +TextMetrics.isBreakingSpace = function isBreakingSpace (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._breakingSpaces.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Splits a string into words, breaking-spaces and newLine characters + * + * @private + * @param {string} text The text + * @return {string[]} A tokenized array + */ +TextMetrics.tokenize = function tokenize (text) +{ + var tokens = []; + var token = ''; + + if (typeof text !== 'string') + { + return tokens; + } + + for (var i = 0; i < text.length; i++) + { + var char = text[i]; + + if (TextMetrics.isBreakingSpace(char) || TextMetrics.isNewline(char)) + { + if (token !== '') + { + tokens.push(token); + token = ''; + } + + tokens.push(char); + + continue; + } + + token += char; + } + + if (token !== '') + { + tokens.push(token); + } + + return tokens; +}; + +/** + * This method exists to be easily overridden + * It allows one to customise which words should break + * Examples are if the token is CJK or numbers. + * It must return a boolean. + * + * @private + * @param {string} token The token + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakWords = function canBreakWords (token, breakWords) +{ + return breakWords; +}; + +/** + * This method exists to be easily overridden + * It allows one to determine whether a pair of characters + * should be broken by newlines + * For example certain characters in CJK langs or numbers. + * It must return a boolean. + * + * @private + * @param {string} char The character + * @param {string} nextChar The next character + * @param {string} token The token/word the characters are from + * @param {number} index The index in the token of the char + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakChars = function canBreakChars (char, nextChar, token, index, breakWords) // eslint-disable-line no-unused-vars +{ + return true; +}; + +/** + * Calculates the ascent, descent and fontSize of a given font-style + * + * @static + * @param {string} font - String representing the style of the font + * @return {PIXI.IFontMetrics} Font properties object + */ +TextMetrics.measureFont = function measureFont (font) +{ + // as this method is used for preparing assets, don't recalculate things if we don't need to + if (TextMetrics._fonts[font]) + { + return TextMetrics._fonts[font]; + } + + var properties = {}; + + var canvas = TextMetrics._canvas; + var context = TextMetrics._context; + + context.font = font; + + var metricsString = TextMetrics.METRICS_STRING + TextMetrics.BASELINE_SYMBOL; + var width = Math.ceil(context.measureText(metricsString).width); + var baseline = Math.ceil(context.measureText(TextMetrics.BASELINE_SYMBOL).width); + var height = 2 * baseline; + + baseline = baseline * TextMetrics.BASELINE_MULTIPLIER | 0; + + canvas.width = width; + canvas.height = height; + + context.fillStyle = '#f00'; + context.fillRect(0, 0, width, height); + + context.font = font; + + context.textBaseline = 'alphabetic'; + context.fillStyle = '#000'; + context.fillText(metricsString, 0, baseline); + + var imagedata = context.getImageData(0, 0, width, height).data; + var pixels = imagedata.length; + var line = width * 4; + + var i = 0; + var idx = 0; + var stop = false; + + // ascent. scan from top to bottom until we find a non red pixel + for (i = 0; i < baseline; ++i) + { + for (var j = 0; j < line; j += 4) + { + if (imagedata[idx + j] !== 255) + { + stop = true; + break; + } + } + if (!stop) + { + idx += line; + } + else + { + break; + } + } + + properties.ascent = baseline - i; + + idx = pixels - line; + stop = false; + + // descent. scan from bottom to top until we find a non red pixel + for (i = height; i > baseline; --i) + { + for (var j$1 = 0; j$1 < line; j$1 += 4) + { + if (imagedata[idx + j$1] !== 255) + { + stop = true; + break; + } + } + + if (!stop) + { + idx -= line; + } + else + { + break; + } + } + + properties.descent = i - baseline; + properties.fontSize = properties.ascent + properties.descent; + + TextMetrics._fonts[font] = properties; + + return properties; +}; + +/** + * Clear font metrics in metrics cache. + * + * @static + * @param {string} [font] - font name. If font name not set then clear cache for all fonts. + */ +TextMetrics.clearMetrics = function clearMetrics (font) +{ + if ( font === void 0 ) font = ''; + + if (font) + { + delete TextMetrics._fonts[font]; + } + else + { + TextMetrics._fonts = {}; + } +}; + +/** + * Internal return object for {@link PIXI.TextMetrics.measureFont `TextMetrics.measureFont`}. + * + * @typedef {object} FontMetrics + * @property {number} ascent - The ascent distance + * @property {number} descent - The descent distance + * @property {number} fontSize - Font size from ascent to descent + * @memberof PIXI.TextMetrics + * @private + */ + +var canvas = (function () { + try + { + // OffscreenCanvas2D measureText can be up to 40% faster. + var c = new OffscreenCanvas(0, 0); + + return c.getContext('2d') ? c : document.createElement('canvas'); + } + catch (ex) + { + return document.createElement('canvas'); + } +})(); + +canvas.width = canvas.height = 10; + +/** + * Cached canvas element for measuring text + * + * @memberof PIXI.TextMetrics + * @type {HTMLCanvasElement} + * @private + */ +TextMetrics._canvas = canvas; + +/** + * Cache for context to use. + * + * @memberof PIXI.TextMetrics + * @type {CanvasRenderingContext2D} + * @private + */ +TextMetrics._context = canvas.getContext('2d'); + +/** + * Cache of {@see PIXI.TextMetrics.FontMetrics} objects. + * + * @memberof PIXI.TextMetrics + * @type {Object} + * @private + */ +TextMetrics._fonts = {}; + +/** + * String used for calculate font metrics. + * These characters are all tall to help calculate the height required for text. + * + * @static + * @memberof PIXI.TextMetrics + * @name METRICS_STRING + * @type {string} + * @default |ÉqÅ + */ +TextMetrics.METRICS_STRING = '|ÉqÅ'; + +/** + * Baseline symbol for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_SYMBOL + * @type {string} + * @default M + */ +TextMetrics.BASELINE_SYMBOL = 'M'; + +/** + * Baseline multiplier for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_MULTIPLIER + * @type {number} + * @default 1.4 + */ +TextMetrics.BASELINE_MULTIPLIER = 1.4; + +/** + * Cache of new line chars. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._newlines = [ + 0x000A, // line feed + 0x000D ]; + +/** + * Cache of breaking spaces. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._breakingSpaces = [ + 0x0009, // character tabulation + 0x0020, // space + 0x2000, // en quad + 0x2001, // em quad + 0x2002, // en space + 0x2003, // em space + 0x2004, // three-per-em space + 0x2005, // four-per-em space + 0x2006, // six-per-em space + 0x2008, // punctuation space + 0x2009, // thin space + 0x200A, // hair space + 0x205F, // medium mathematical space + 0x3000 ]; + +/** + * A number, or a string containing a number. + * + * @memberof PIXI + * @typedef IFontMetrics + * @property {number} ascent - Font ascent + * @property {number} descent - Font descent + * @property {number} fontSize - Font size + */ + +/* eslint max-depth: [2, 8] */ + +var defaultDestroyOptions = { + texture: true, + children: false, + baseTexture: true, +}; + +/** + * A Text Object will create a line or multiple lines of text. + * + * The text is created using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API). + * + * The primary advantage of this class over BitmapText is that you have great control over the style of the next, + * which you can change at runtime. + * + * The primary disadvantages is that each piece of text has it's own texture, which can use more memory. + * When text changes, this texture has to be re-generated and re-uploaded to the GPU, taking up time. + * + * To split a line you can use '\n' in your text string, or, on the `style` object, + * change its `wordWrap` property to true and and give the `wordWrapWidth` property a value. + * + * A Text can be created directly from a string and a style object, + * which can be generated [here](https://pixijs.io/pixi-text-style). + * + * ```js + * let text = new PIXI.Text('This is a PixiJS text',{fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}); + * ``` + * + * @class + * @extends PIXI.Sprite + * @memberof PIXI + */ +var Text = /*@__PURE__*/(function (Sprite) { + function Text(text, style, canvas) + { + canvas = canvas || document.createElement('canvas'); + + canvas.width = 3; + canvas.height = 3; + + var texture = Texture.from(canvas); + + texture.orig = new Rectangle(); + texture.trim = new Rectangle(); + + Sprite.call(this, texture); + + /** + * The canvas element that everything is drawn to + * + * @member {HTMLCanvasElement} + */ + this.canvas = canvas; + + /** + * The canvas 2d context that everything is drawn with + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + this._resolution = settings.RESOLUTION; + this._autoResolution = true; + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = null; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._style = null; + /** + * Private listener to track style changes. + * + * @member {Function} + * @private + */ + this._styleListener = null; + + /** + * Private tracker for the current font. + * + * @member {string} + * @private + */ + this._font = ''; + + this.text = text; + this.style = style; + + this.localStyleID = -1; + } + + if ( Sprite ) Text.__proto__ = Sprite; + Text.prototype = Object.create( Sprite && Sprite.prototype ); + Text.prototype.constructor = Text; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },style: { configurable: true },text: { configurable: true },resolution: { configurable: true } }; + + /** + * Renders text and updates it when needed. + * + * @private + * @param {boolean} respectDirty - Whether to abort updating the text if the Text isn't dirty and the function is called. + */ + Text.prototype.updateText = function updateText (respectDirty) + { + var style = this._style; + + // check if style has changed.. + if (this.localStyleID !== style.styleID) + { + this.dirty = true; + this.localStyleID = style.styleID; + } + + if (!this.dirty && respectDirty) + { + return; + } + + this._font = this._style.toFontString(); + + var context = this.context; + var measured = TextMetrics.measureText(this._text || ' ', this._style, this._style.wordWrap, this.canvas); + var width = measured.width; + var height = measured.height; + var lines = measured.lines; + var lineHeight = measured.lineHeight; + var lineWidths = measured.lineWidths; + var maxLineWidth = measured.maxLineWidth; + var fontProperties = measured.fontProperties; + + this.canvas.width = Math.ceil((Math.max(1, width) + (style.padding * 2)) * this._resolution); + this.canvas.height = Math.ceil((Math.max(1, height) + (style.padding * 2)) * this._resolution); + + context.scale(this._resolution, this._resolution); + + context.clearRect(0, 0, this.canvas.width, this.canvas.height); + + context.font = this._font; + context.lineWidth = style.strokeThickness; + context.textBaseline = style.textBaseline; + context.lineJoin = style.lineJoin; + context.miterLimit = style.miterLimit; + + var linePositionX; + var linePositionY; + + // require 2 passes if a shadow; the first to draw the drop shadow, the second to draw the text + var passesCount = style.dropShadow ? 2 : 1; + + // For v4, we drew text at the colours of the drop shadow underneath the normal text. This gave the correct zIndex, + // but features such as alpha and shadowblur did not look right at all, since we were using actual text as a shadow. + // + // For v5.0.0, we moved over to just use the canvas API for drop shadows, which made them look much nicer and more + // visually please, but now because the stroke is drawn and then the fill, drop shadows would appear on both the fill + // and the stroke; and fill drop shadows would appear over the top of the stroke. + // + // For v5.1.1, the new route is to revert to v4 style of drawing text first to get the drop shadows underneath normal + // text, but instead drawing text in the correct location, we'll draw it off screen (-paddingY), and then adjust the + // drop shadow so only that appears on screen (+paddingY). Now we'll have the correct draw order of the shadow + // beneath the text, whilst also having the proper text shadow styling. + for (var i = 0; i < passesCount; ++i) + { + var isShadowPass = style.dropShadow && i === 0; + var dsOffsetText = isShadowPass ? height * 2 : 0; // we only want the drop shadow, so put text way off-screen + var dsOffsetShadow = dsOffsetText * this.resolution; + + if (isShadowPass) + { + // On Safari, text with gradient and drop shadows together do not position correctly + // if the scale of the canvas is not 1: https://bugs.webkit.org/show_bug.cgi?id=197689 + // Therefore we'll set the styles to be a plain black whilst generating this drop shadow + context.fillStyle = 'black'; + context.strokeStyle = 'black'; + + var dropShadowColor = style.dropShadowColor; + var rgb = hex2rgb(typeof dropShadowColor === 'number' ? dropShadowColor : string2hex(dropShadowColor)); + + context.shadowColor = "rgba(" + (rgb[0] * 255) + "," + (rgb[1] * 255) + "," + (rgb[2] * 255) + "," + (style.dropShadowAlpha) + ")"; + context.shadowBlur = style.dropShadowBlur; + context.shadowOffsetX = Math.cos(style.dropShadowAngle) * style.dropShadowDistance; + context.shadowOffsetY = (Math.sin(style.dropShadowAngle) * style.dropShadowDistance) + dsOffsetShadow; + } + else + { + // set canvas text styles + context.fillStyle = this._generateFillStyle(style, lines); + context.strokeStyle = style.stroke; + + context.shadowColor = 0; + context.shadowBlur = 0; + context.shadowOffsetX = 0; + context.shadowOffsetY = 0; + } + + // draw lines line by line + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + linePositionX = style.strokeThickness / 2; + linePositionY = ((style.strokeThickness / 2) + (i$1 * lineHeight)) + fontProperties.ascent; + + if (style.align === 'right') + { + linePositionX += maxLineWidth - lineWidths[i$1]; + } + else if (style.align === 'center') + { + linePositionX += (maxLineWidth - lineWidths[i$1]) / 2; + } + + if (style.stroke && style.strokeThickness) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText, + true + ); + } + + if (style.fill) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText + ); + } + } + } + + this.updateTexture(); + }; + + /** + * Render the text with letter-spacing. + * @param {string} text - The text to draw + * @param {number} x - Horizontal position to draw the text + * @param {number} y - Vertical position to draw the text + * @param {boolean} [isStroke=false] - Is this drawing for the outside stroke of the + * text? If not, it's for the inside fill + * @private + */ + Text.prototype.drawLetterSpacing = function drawLetterSpacing (text, x, y, isStroke) + { + if ( isStroke === void 0 ) isStroke = false; + + var style = this._style; + + // letterSpacing of 0 means normal + var letterSpacing = style.letterSpacing; + + if (letterSpacing === 0) + { + if (isStroke) + { + this.context.strokeText(text, x, y); + } + else + { + this.context.fillText(text, x, y); + } + + return; + } + + var currentPosition = x; + + // Using Array.from correctly splits characters whilst keeping emoji together. + // This is not supported on IE as it requires ES6, so regular text splitting occurs. + // This also doesn't account for emoji that are multiple emoji put together to make something else. + // Handling all of this would require a big library itself. + // https://medium.com/@giltayar/iterating-over-emoji-characters-the-es6-way-f06e4589516 + // https://github.com/orling/grapheme-splitter + var stringArray = Array.from ? Array.from(text) : text.split(''); + var previousWidth = this.context.measureText(text).width; + var currentWidth = 0; + + for (var i = 0; i < stringArray.length; ++i) + { + var currentChar = stringArray[i]; + + if (isStroke) + { + this.context.strokeText(currentChar, currentPosition, y); + } + else + { + this.context.fillText(currentChar, currentPosition, y); + } + currentWidth = this.context.measureText(text.substring(i + 1)).width; + currentPosition += previousWidth - currentWidth + letterSpacing; + previousWidth = currentWidth; + } + }; + + /** + * Updates texture size based on canvas size + * + * @private + */ + Text.prototype.updateTexture = function updateTexture () + { + var canvas = this.canvas; + + if (this._style.trim) + { + var trimmed = trimCanvas(canvas); + + if (trimmed.data) + { + canvas.width = trimmed.width; + canvas.height = trimmed.height; + this.context.putImageData(trimmed.data, 0, 0); + } + } + + var texture = this._texture; + var style = this._style; + var padding = style.trim ? 0 : style.padding; + var baseTexture = texture.baseTexture; + + texture.trim.width = texture._frame.width = Math.ceil(canvas.width / this._resolution); + texture.trim.height = texture._frame.height = Math.ceil(canvas.height / this._resolution); + texture.trim.x = -padding; + texture.trim.y = -padding; + + texture.orig.width = texture._frame.width - (padding * 2); + texture.orig.height = texture._frame.height - (padding * 2); + + // call sprite onTextureUpdate to update scale if _width or _height were set + this._onTextureUpdate(); + + baseTexture.setRealSize(canvas.width, canvas.height, this._resolution); + + this.dirty = false; + }; + + /** + * Renders the object using the WebGL renderer + * + * @private + * @param {PIXI.Renderer} renderer - The renderer + */ + Text.prototype._render = function _render (renderer) + { + if (this._autoResolution && this._resolution !== renderer.resolution) + { + this._resolution = renderer.resolution; + this.dirty = true; + } + + this.updateText(true); + + Sprite.prototype._render.call(this, renderer); + }; + + /** + * Gets the local bounds of the text object. + * + * @param {PIXI.Rectangle} rect - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Text.prototype.getLocalBounds = function getLocalBounds (rect) + { + this.updateText(true); + + return Sprite.prototype.getLocalBounds.call(this, rect); + }; + + /** + * calculates the bounds of the Text as a rectangle. The bounds calculation takes the worldTransform into account. + * @protected + */ + Text.prototype._calculateBounds = function _calculateBounds () + { + this.updateText(true); + this.calculateVertices(); + // if we have already done this on THIS frame. + this._bounds.addQuad(this.vertexData); + }; + + /** + * Method to be called upon a TextStyle change. + * @private + */ + Text.prototype._onStyleChange = function _onStyleChange () + { + this.dirty = true; + }; + + /** + * Generates the fill style. Can automatically generate a gradient based on the fill style being an array + * + * @private + * @param {object} style - The style. + * @param {string[]} lines - The lines of text. + * @return {string|number|CanvasGradient} The fill style + */ + Text.prototype._generateFillStyle = function _generateFillStyle (style, lines) + { + if (!Array.isArray(style.fill)) + { + return style.fill; + } + else if (style.fill.length === 1) + { + return style.fill[0]; + } + + // the gradient will be evenly spaced out according to how large the array is. + // ['#FF0000', '#00FF00', '#0000FF'] would created stops at 0.25, 0.5 and 0.75 + var gradient; + var totalIterations; + var currentIteration; + var stop; + + var width = Math.ceil(this.canvas.width / this._resolution); + var height = Math.ceil(this.canvas.height / this._resolution); + + // make a copy of the style settings, so we can manipulate them later + var fill = style.fill.slice(); + var fillGradientStops = style.fillGradientStops.slice(); + + // wanting to evenly distribute the fills. So an array of 4 colours should give fills of 0.25, 0.5 and 0.75 + if (!fillGradientStops.length) + { + var lengthPlus1 = fill.length + 1; + + for (var i = 1; i < lengthPlus1; ++i) + { + fillGradientStops.push(i / lengthPlus1); + } + } + + // stop the bleeding of the last gradient on the line above to the top gradient of the this line + // by hard defining the first gradient colour at point 0, and last gradient colour at point 1 + fill.unshift(style.fill[0]); + fillGradientStops.unshift(0); + + fill.push(style.fill[style.fill.length - 1]); + fillGradientStops.push(1); + + if (style.fillGradientType === TEXT_GRADIENT.LINEAR_VERTICAL) + { + // start the gradient at the top center of the canvas, and end at the bottom middle of the canvas + gradient = this.context.createLinearGradient(width / 2, 0, width / 2, height); + + // we need to repeat the gradient so that each individual line of text has the same vertical gradient effect + // ['#FF0000', '#00FF00', '#0000FF'] over 2 lines would create stops at 0.125, 0.25, 0.375, 0.625, 0.75, 0.875 + totalIterations = (fill.length + 1) * lines.length; + currentIteration = 0; + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + currentIteration += 1; + for (var j = 0; j < fill.length; j++) + { + if (typeof fillGradientStops[j] === 'number') + { + stop = (fillGradientStops[j] / lines.length) + (i$1 / lines.length); + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[j]); + currentIteration++; + } + } + } + else + { + // start the gradient at the center left of the canvas, and end at the center right of the canvas + gradient = this.context.createLinearGradient(0, height / 2, width, height / 2); + + // can just evenly space out the gradients in this case, as multiple lines makes no difference + // to an even left to right gradient + totalIterations = fill.length + 1; + currentIteration = 1; + + for (var i$2 = 0; i$2 < fill.length; i$2++) + { + if (typeof fillGradientStops[i$2] === 'number') + { + stop = fillGradientStops[i$2]; + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[i$2]); + currentIteration++; + } + } + + return gradient; + }; + + /** + * Destroys this text object. + * Note* Unlike a Sprite, a Text object will automatically destroy its baseTexture and texture as + * the majority of the time the texture will not be shared with any other Sprites. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their + * destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=true] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=true] - Should it destroy the base texture of the sprite as well + */ + Text.prototype.destroy = function destroy (options) + { + if (typeof options === 'boolean') + { + options = { children: options }; + } + + options = Object.assign({}, defaultDestroyOptions, options); + + Sprite.prototype.destroy.call(this, options); + + // make sure to reset the the context and canvas.. dont want this hanging around in memory! + this.context = null; + this.canvas = null; + + this._style = null; + }; + + /** + * The width of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * Set the style of the text. Set up an event listener to listen for changes on the style + * object and mark the text as dirty. + * + * @member {object|PIXI.TextStyle} + */ + prototypeAccessors.style.get = function () + { + return this._style; + }; + + prototypeAccessors.style.set = function (style) // eslint-disable-line require-jsdoc + { + style = style || {}; + + if (style instanceof TextStyle) + { + this._style = style; + } + else + { + this._style = new TextStyle(style); + } + + this.localStyleID = -1; + this.dirty = true; + }; + + /** + * Set the copy for the text object. To split a line you can use '\n'. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + prototypeAccessors.resolution.get = function () + { + return this._resolution; + }; + + prototypeAccessors.resolution.set = function (value) // eslint-disable-line require-jsdoc + { + this._autoResolution = false; + + if (this._resolution === value) + { + return; + } + + this._resolution = value; + this.dirty = true; + }; + + Object.defineProperties( Text.prototype, prototypeAccessors ); + + return Text; +}(Sprite)); + +/*! + * @pixi/prepare - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/prepare is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default number of uploads per frame using prepare plugin. + * + * @static + * @memberof PIXI.settings + * @name UPLOADS_PER_FRAME + * @type {number} + * @default 4 + */ +settings.UPLOADS_PER_FRAME = 4; + +/** + * CountLimiter limits the number of items handled by a {@link PIXI.prepare.BasePrepare} to a specified + * number of items per frame. + * + * @class + * @memberof PIXI.prepare + */ +var CountLimiter = function CountLimiter(maxItemsPerFrame) +{ + /** + * The maximum number of items that can be prepared each frame. + * @type {number} + * @private + */ + this.maxItemsPerFrame = maxItemsPerFrame; + /** + * The number of items that can be prepared in the current frame. + * @type {number} + * @private + */ + this.itemsLeft = 0; +}; + +/** + * Resets any counting properties to start fresh on a new frame. + */ +CountLimiter.prototype.beginFrame = function beginFrame () +{ + this.itemsLeft = this.maxItemsPerFrame; +}; + +/** + * Checks to see if another item can be uploaded. This should only be called once per item. + * @return {boolean} If the item is allowed to be uploaded. + */ +CountLimiter.prototype.allowedToUpload = function allowedToUpload () +{ + return this.itemsLeft-- > 0; +}; + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * BasePrepare handles basic queuing functionality and is extended by + * {@link PIXI.prepare.Prepare} and {@link PIXI.prepare.CanvasPrepare} + * to provide preparation capabilities specific to their respective renderers. + * + * @example + * // Create a sprite + * const sprite = PIXI.Sprite.from('something.png'); + * + * // Load object into GPU + * app.renderer.plugins.prepare.upload(sprite, () => { + * + * //Texture(s) has been uploaded to GPU + * app.stage.addChild(sprite); + * + * }) + * + * @abstract + * @class + * @memberof PIXI.prepare + */ +var BasePrepare = function BasePrepare(renderer) +{ + var this$1 = this; + + /** + * The limiter to be used to control how quickly items are prepared. + * @type {PIXI.prepare.CountLimiter|PIXI.prepare.TimeLimiter} + */ + this.limiter = new CountLimiter(settings.UPLOADS_PER_FRAME); + + /** + * Reference to the renderer. + * @type {PIXI.AbstractRenderer} + * @protected + */ + this.renderer = renderer; + + /** + * The only real difference between CanvasPrepare and Prepare is what they pass + * to upload hooks. That different parameter is stored here. + * @type {PIXI.prepare.CanvasPrepare|PIXI.Renderer} + * @protected + */ + this.uploadHookHelper = null; + + /** + * Collection of items to uploads at once. + * @type {Array<*>} + * @private + */ + this.queue = []; + + /** + * Collection of additional hooks for finding assets. + * @type {Array} + * @private + */ + this.addHooks = []; + + /** + * Collection of additional hooks for processing assets. + * @type {Array} + * @private + */ + this.uploadHooks = []; + + /** + * Callback to call after completed. + * @type {Array} + * @private + */ + this.completes = []; + + /** + * If prepare is ticking (running). + * @type {boolean} + * @private + */ + this.ticking = false; + + /** + * 'bound' call for prepareItems(). + * @type {Function} + * @private + */ + this.delayedTick = function () { + // unlikely, but in case we were destroyed between tick() and delayedTick() + if (!this$1.queue) + { + return; + } + this$1.prepareItems(); + }; + + // hooks to find the correct texture + this.registerFindHook(findText); + this.registerFindHook(findTextStyle); + this.registerFindHook(findMultipleBaseTextures); + this.registerFindHook(findBaseTexture); + this.registerFindHook(findTexture); + + // upload hooks + this.registerUploadHook(drawText); + this.registerUploadHook(calculateTextStyle); +}; + +/** + * Upload all the textures and graphics to the GPU. + * + * @param {Function|PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text} item - + * Either the container or display object to search for items to upload, the items to upload themselves, + * or the callback function, if items have been added using `prepare.add`. + * @param {Function} [done] - Optional callback when all queued uploads have completed + */ +BasePrepare.prototype.upload = function upload (item, done) +{ + if (typeof item === 'function') + { + done = item; + item = null; + } + + // If a display object, search for items + // that we could upload + if (item) + { + this.add(item); + } + + // Get the items for upload from the display + if (this.queue.length) + { + if (done) + { + this.completes.push(done); + } + + if (!this.ticking) + { + this.ticking = true; + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } + } + else if (done) + { + done(); + } +}; + +/** + * Handle tick update + * + * @private + */ +BasePrepare.prototype.tick = function tick () +{ + setTimeout(this.delayedTick, 0); +}; + +/** + * Actually prepare items. This is handled outside of the tick because it will take a while + * and we do NOT want to block the current animation frame from rendering. + * + * @private + */ +BasePrepare.prototype.prepareItems = function prepareItems () +{ + this.limiter.beginFrame(); + // Upload the graphics + while (this.queue.length && this.limiter.allowedToUpload()) + { + var item = this.queue[0]; + var uploaded = false; + + if (item && !item._destroyed) + { + for (var i = 0, len = this.uploadHooks.length; i < len; i++) + { + if (this.uploadHooks[i](this.uploadHookHelper, item)) + { + this.queue.shift(); + uploaded = true; + break; + } + } + } + + if (!uploaded) + { + this.queue.shift(); + } + } + + // We're finished + if (!this.queue.length) + { + this.ticking = false; + + var completes = this.completes.slice(0); + + this.completes.length = 0; + + for (var i$1 = 0, len$1 = completes.length; i$1 < len$1; i$1++) + { + completes[i$1](); + } + } + else + { + // if we are not finished, on the next rAF do this again + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } +}; + +/** + * Adds hooks for finding items. + * + * @param {Function} addHook - Function call that takes two parameters: `item:*, queue:Array` + * function must return `true` if it was able to add item to the queue. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerFindHook = function registerFindHook (addHook) +{ + if (addHook) + { + this.addHooks.push(addHook); + } + + return this; +}; + +/** + * Adds hooks for uploading items. + * + * @param {Function} uploadHook - Function call that takes two parameters: `prepare:CanvasPrepare, item:*` and + * function must return `true` if it was able to handle upload of item. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerUploadHook = function registerUploadHook (uploadHook) +{ + if (uploadHook) + { + this.uploadHooks.push(uploadHook); + } + + return this; +}; + +/** + * Manually add an item to the uploading queue. + * + * @param {PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text|*} item - Object to + * add to the queue + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.add = function add (item) +{ + // Add additional hooks for finding elements on special + // types of objects that + for (var i = 0, len = this.addHooks.length; i < len; i++) + { + if (this.addHooks[i](item, this.queue)) + { + break; + } + } + + // Get children recursively + if (item instanceof Container) + { + for (var i$1 = item.children.length - 1; i$1 >= 0; i$1--) + { + this.add(item.children[i$1]); + } + } + + return this; +}; + +/** + * Destroys the plugin, don't use after this. + * + */ +BasePrepare.prototype.destroy = function destroy () +{ + if (this.ticking) + { + Ticker.system.remove(this.tick, this); + } + this.ticking = false; + this.addHooks = null; + this.uploadHooks = null; + this.renderer = null; + this.completes = null; + this.queue = null; + this.limiter = null; + this.uploadHookHelper = null; +}; + +/** + * Built-in hook to find multiple textures from objects like AnimatedSprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findMultipleBaseTextures(item, queue) +{ + var result = false; + + // Objects with multiple textures + if (item && item._textures && item._textures.length) + { + for (var i = 0; i < item._textures.length; i++) + { + if (item._textures[i] instanceof Texture) + { + var baseTexture = item._textures[i].baseTexture; + + if (queue.indexOf(baseTexture) === -1) + { + queue.push(baseTexture); + result = true; + } + } + } + } + + return result; +} + +/** + * Built-in hook to find BaseTextures from Sprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findBaseTexture(item, queue) +{ + // Objects with textures, like Sprites/Text + if (item instanceof BaseTexture) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find textures from objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findTexture(item, queue) +{ + if (item._texture && item._texture instanceof Texture) + { + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to draw PIXI.Text to its texture. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function drawText(helper, item) +{ + if (item instanceof Text) + { + // updating text will return early if it is not dirty + item.updateText(true); + + return true; + } + + return false; +} + +/** + * Built-in hook to calculate a text style for a PIXI.Text object. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function calculateTextStyle(helper, item) +{ + if (item instanceof TextStyle) + { + var font = item.toFontString(); + + TextMetrics.measureFont(font); + + return true; + } + + return false; +} + +/** + * Built-in hook to find Text objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Text object was found. + */ +function findText(item, queue) +{ + if (item instanceof Text) + { + // push the text style to prepare it - this can be really expensive + if (queue.indexOf(item.style) === -1) + { + queue.push(item.style); + } + // also push the text object so that we can render it (to canvas/texture) if needed + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + // also push the Text's texture for upload to GPU + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find TextStyle objects. + * + * @private + * @param {PIXI.TextStyle} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.TextStyle object was found. + */ +function findTextStyle(item, queue) +{ + if (item instanceof TextStyle) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.prepare` + * + * @class + * @extends PIXI.prepare.BasePrepare + * @memberof PIXI.prepare + */ +var Prepare = /*@__PURE__*/(function (BasePrepare) { + function Prepare(renderer) + { + BasePrepare.call(this, renderer); + + this.uploadHookHelper = this.renderer; + + // Add textures and graphics to upload + this.registerFindHook(findGraphics); + this.registerUploadHook(uploadBaseTextures); + this.registerUploadHook(uploadGraphics); + } + + if ( BasePrepare ) Prepare.__proto__ = BasePrepare; + Prepare.prototype = Object.create( BasePrepare && BasePrepare.prototype ); + Prepare.prototype.constructor = Prepare; + + return Prepare; +}(BasePrepare)); +/** + * Built-in hook to upload PIXI.Texture objects to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadBaseTextures(renderer, item) +{ + if (item instanceof BaseTexture) + { + // if the texture already has a GL texture, then the texture has been prepared or rendered + // before now. If the texture changed, then the changer should be calling texture.update() which + // reuploads the texture without need for preparing it again + if (!item._glTextures[renderer.CONTEXT_UID]) + { + renderer.texture.bind(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to upload PIXI.Graphics to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadGraphics(renderer, item) +{ + if (item instanceof Graphics) + { + // if the item is not dirty and already has webgl data, then it got prepared or rendered + // before now and we shouldn't waste time updating it again + if (item.dirty || item.clearDirty || !item._webGL[renderer.plugins.graphics.CONTEXT_UID]) + { + renderer.plugins.graphics.updateGraphics(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find graphics. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Graphics object was found. + */ +function findGraphics(item, queue) +{ + if (item instanceof Graphics) + { + queue.push(item); + + return true; + } + + return false; +} + +/*! + * @pixi/app - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/app is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Convenience class to create a new PIXI application. + * + * This class automatically creates the renderer, ticker and root container. + * + * @example + * // Create the application + * const app = new PIXI.Application(); + * + * // Add the view to the DOM + * document.body.appendChild(app.view); + * + * // ex, add display objects + * app.stage.addChild(PIXI.Sprite.from('something.png')); + * + * @class + * @memberof PIXI + */ +var Application = function Application(options) +{ + var this$1 = this; + + // The default options + options = Object.assign({ + forceCanvas: false, + }, options); + + /** + * WebGL renderer if available, otherwise CanvasRenderer. + * @member {PIXI.Renderer|PIXI.CanvasRenderer} + */ + this.renderer = autoDetectRenderer(options); + + /** + * The root display container that's rendered. + * @member {PIXI.Container} + */ + this.stage = new Container(); + + // install plugins here + Application._plugins.forEach(function (plugin) { + plugin.init.call(this$1, options); + }); +}; + +var prototypeAccessors$8 = { view: { configurable: true },screen: { configurable: true } }; + +/** + * Register a middleware plugin for the application + * @static + * @param {PIXI.Application.Plugin} plugin - Plugin being installed + */ +Application.registerPlugin = function registerPlugin (plugin) +{ + Application._plugins.push(plugin); +}; + +/** + * Render the current stage. + */ +Application.prototype.render = function render () +{ + this.renderer.render(this.stage); +}; + +/** + * Reference to the renderer's canvas element. + * @member {HTMLCanvasElement} + * @readonly + */ +prototypeAccessors$8.view.get = function () +{ + return this.renderer.view; +}; + +/** + * Reference to the renderer's screen rectangle. Its safe to use as `filterArea` or `hitArea` for the whole screen. + * @member {PIXI.Rectangle} + * @readonly + */ +prototypeAccessors$8.screen.get = function () +{ + return this.renderer.screen; +}; + +/** + * Destroy and don't use after this. + * @param {Boolean} [removeView=false] Automatically remove canvas from DOM. + * @param {object|boolean} [stageOptions] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [stageOptions.children=false] - if set to true, all the children will have their destroy + * method called as well. 'stageOptions' will be passed on to those calls. + * @param {boolean} [stageOptions.texture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the texture of the child sprite + * @param {boolean} [stageOptions.baseTexture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the base texture of the child sprite + */ +Application.prototype.destroy = function destroy (removeView, stageOptions) +{ + var this$1 = this; + + // Destroy plugins in the opposite order + // which they were constructed + var plugins = Application._plugins.slice(0); + + plugins.reverse(); + plugins.forEach(function (plugin) { + plugin.destroy.call(this$1); + }); + + this.stage.destroy(stageOptions); + this.stage = null; + + this.renderer.destroy(removeView); + this.renderer = null; + + this._options = null; +}; + +Object.defineProperties( Application.prototype, prototypeAccessors$8 ); + +/** + * @memberof PIXI.Application + * @typedef {object} Plugin + * @property {function} init - Called when Application is constructed, scoped to Application instance. + * Passes in `options` as the only argument, which are Application constructor options. + * @property {function} destroy - Called when destroying Application, scoped to Application instance + */ + +/** + * Collection of installed plugins. + * @static + * @private + * @type {PIXI.Application.Plugin[]} + */ +Application._plugins = []; + +/** + * Middleware for for Application's resize functionality + * @private + * @class + */ +var ResizePlugin = function ResizePlugin () {}; + +ResizePlugin.init = function init (options) +{ + var this$1 = this; + + /** + * The element or window to resize the application to. + * @type {Window|HTMLElement} + * @name resizeTo + * @memberof PIXI.Application# + */ + Object.defineProperty(this, 'resizeTo', + { + set: function set(dom) + { + window.removeEventListener('resize', this.resize); + this._resizeTo = dom; + if (dom) + { + window.addEventListener('resize', this.resize); + this.resize(); + } + }, + get: function get() + { + return this._resizeTo; + }, + }); + + /** + * If `resizeTo` is set, calling this function + * will resize to the width and height of that element. + * @method PIXI.Application#resize + */ + this.resize = function () { + if (this$1._resizeTo) + { + // Resize to the window + if (this$1._resizeTo === window) + { + this$1.renderer.resize( + window.innerWidth, + window.innerHeight + ); + } + // Resize to other HTML entities + else + { + this$1.renderer.resize( + this$1._resizeTo.clientWidth, + this$1._resizeTo.clientHeight + ); + } + } + }; + + // On resize + this._resizeTo = null; + this.resizeTo = options.resizeTo || null; +}; + +/** + * Clean up the ticker, scoped to application + * @static + * @private + */ +ResizePlugin.destroy = function destroy () +{ + this.resizeTo = null; + this.resize = null; +}; + +Application.registerPlugin(ResizePlugin); + +var parseUri = function parseURI (str, opts) { + opts = opts || {}; + + var o = { + key: ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'], + q: { + name: 'queryKey', + parser: /(?:^|&)([^&=]*)=?([^&]*)/g + }, + parser: { + strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/, + loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/ + } + }; + + var m = o.parser[opts.strictMode ? 'strict' : 'loose'].exec(str); + var uri = {}; + var i = 14; + + while (i--) uri[o.key[i]] = m[i] || ''; + + uri[o.q.name] = {}; + uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) { + if ($1) uri[o.q.name][$1] = $2; + }); + + return uri +}; + +var miniSignals = createCommonjsModule(function (module, exports) { + +Object.defineProperty(exports, '__esModule', { + value: true +}); + +var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + +var MiniSignalBinding = (function () { + function MiniSignalBinding(fn, once, thisArg) { + if (once === undefined) once = false; + + _classCallCheck(this, MiniSignalBinding); + + this._fn = fn; + this._once = once; + this._thisArg = thisArg; + this._next = this._prev = this._owner = null; + } + + _createClass(MiniSignalBinding, [{ + key: 'detach', + value: function detach() { + if (this._owner === null) return false; + this._owner.detach(this); + return true; + } + }]); + + return MiniSignalBinding; +})(); + +function _addMiniSignalBinding(self, node) { + if (!self._head) { + self._head = node; + self._tail = node; + } else { + self._tail._next = node; + node._prev = self._tail; + self._tail = node; + } + + node._owner = self; + + return node; +} + +var MiniSignal = (function () { + function MiniSignal() { + _classCallCheck(this, MiniSignal); + + this._head = this._tail = undefined; + } + + _createClass(MiniSignal, [{ + key: 'handlers', + value: function handlers() { + var exists = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0]; + + var node = this._head; + + if (exists) return !!node; + + var ee = []; + + while (node) { + ee.push(node); + node = node._next; + } + + return ee; + } + }, { + key: 'has', + value: function has(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#has(): First arg must be a MiniSignalBinding object.'); + } + + return node._owner === this; + } + }, { + key: 'dispatch', + value: function dispatch() { + var node = this._head; + + if (!node) return false; + + while (node) { + if (node._once) this.detach(node); + node._fn.apply(node._thisArg, arguments); + node = node._next; + } + + return true; + } + }, { + key: 'add', + value: function add(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#add(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, false, thisArg)); + } + }, { + key: 'once', + value: function once(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#once(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, true, thisArg)); + } + }, { + key: 'detach', + value: function detach(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#detach(): First arg must be a MiniSignalBinding object.'); + } + if (node._owner !== this) return this; + + if (node._prev) node._prev._next = node._next; + if (node._next) node._next._prev = node._prev; + + if (node === this._head) { + this._head = node._next; + if (node._next === null) { + this._tail = null; + } + } else if (node === this._tail) { + this._tail = node._prev; + this._tail._next = null; + } + + node._owner = null; + return this; + } + }, { + key: 'detachAll', + value: function detachAll() { + var node = this._head; + if (!node) return this; + + this._head = this._tail = null; + + while (node) { + node._owner = null; + node = node._next; + } + return this; + } + }]); + + return MiniSignal; +})(); + +MiniSignal.MiniSignalBinding = MiniSignalBinding; + +exports['default'] = MiniSignal; +module.exports = exports['default']; +}); + +var Signal = unwrapExports(miniSignals); + +/*! + * resource-loader - v3.0.1 + * https://github.com/pixijs/pixi-sound + * Compiled Tue, 02 Jul 2019 14:06:18 UTC + * + * resource-loader is licensed under the MIT license. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Smaller version of the async library constructs. + * + * @namespace async + */ + +/** + * Noop function + * + * @ignore + * @function + * @memberof async + */ +function _noop() {} +/* empty */ + +/** + * Iterates an array in series. + * + * @memberof async + * @function eachSeries + * @param {Array.<*>} array - Array to iterate. + * @param {function} iterator - Function to call for each element. + * @param {function} callback - Function to call when done, or on error. + * @param {boolean} [deferNext=false] - Break synchronous each loop by calling next with a setTimeout of 1. + */ + + +function eachSeries(array, iterator, callback, deferNext) { + var i = 0; + var len = array.length; + + (function next(err) { + if (err || i === len) { + if (callback) { + callback(err); + } + + return; + } + + if (deferNext) { + setTimeout(function () { + iterator(array[i++], next); + }, 1); + } else { + iterator(array[i++], next); + } + })(); +} +/** + * Ensures a function is only called once. + * + * @ignore + * @memberof async + * @param {function} fn - The function to wrap. + * @return {function} The wrapping function. + */ + +function onlyOnce(fn) { + return function onceWrapper() { + if (fn === null) { + throw new Error('Callback was already called.'); + } + + var callFn = fn; + fn = null; + callFn.apply(this, arguments); + }; +} +/** + * Async queue implementation, + * + * @memberof async + * @function queue + * @param {function} worker - The worker function to call for each task. + * @param {number} concurrency - How many workers to run in parrallel. + * @return {*} The async queue object. + */ + + +function queue(worker, concurrency) { + if (concurrency == null) { + // eslint-disable-line no-eq-null,eqeqeq + concurrency = 1; + } else if (concurrency === 0) { + throw new Error('Concurrency must not be zero'); + } + + var workers = 0; + var q = { + _tasks: [], + concurrency: concurrency, + saturated: _noop, + unsaturated: _noop, + buffer: concurrency / 4, + empty: _noop, + drain: _noop, + error: _noop, + started: false, + paused: false, + push: function push(data, callback) { + _insert(data, false, callback); + }, + kill: function kill() { + workers = 0; + q.drain = _noop; + q.started = false; + q._tasks = []; + }, + unshift: function unshift(data, callback) { + _insert(data, true, callback); + }, + process: function process() { + while (!q.paused && workers < q.concurrency && q._tasks.length) { + var task = q._tasks.shift(); + + if (q._tasks.length === 0) { + q.empty(); + } + + workers += 1; + + if (workers === q.concurrency) { + q.saturated(); + } + + worker(task.data, onlyOnce(_next(task))); + } + }, + length: function length() { + return q._tasks.length; + }, + running: function running() { + return workers; + }, + idle: function idle() { + return q._tasks.length + workers === 0; + }, + pause: function pause() { + if (q.paused === true) { + return; + } + + q.paused = true; + }, + resume: function resume() { + if (q.paused === false) { + return; + } + + q.paused = false; // Need to call q.process once per concurrent + // worker to preserve full concurrency after pause + + for (var w = 1; w <= q.concurrency; w++) { + q.process(); + } + } + }; + + function _insert(data, insertAtFront, callback) { + if (callback != null && typeof callback !== 'function') { + // eslint-disable-line no-eq-null,eqeqeq + throw new Error('task callback must be a function'); + } + + q.started = true; + + if (data == null && q.idle()) { + // eslint-disable-line no-eq-null,eqeqeq + // call drain immediately if there are no tasks + setTimeout(function () { + return q.drain(); + }, 1); + return; + } + + var item = { + data: data, + callback: typeof callback === 'function' ? callback : _noop + }; + + if (insertAtFront) { + q._tasks.unshift(item); + } else { + q._tasks.push(item); + } + + setTimeout(function () { + return q.process(); + }, 1); + } + + function _next(task) { + return function next() { + workers -= 1; + task.callback.apply(task, arguments); + + if (arguments[0] != null) { + // eslint-disable-line no-eq-null,eqeqeq + q.error(arguments[0], task.data); + } + + if (workers <= q.concurrency - q.buffer) { + q.unsaturated(); + } + + if (q.idle()) { + q.drain(); + } + + q.process(); + }; + } + + return q; +} + +// a simple in-memory cache for resources +var cache = {}; +/** + * A simple in-memory cache for resource. + * + * @memberof middleware + * @function caching + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.caching); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function caching(resource, next) { + var _this = this; + + // if cached, then set data and complete the resource + if (cache[resource.url]) { + resource.data = cache[resource.url]; + resource.complete(); // marks resource load complete and stops processing before middlewares + } // if not cached, wait for complete and store it in the cache. + else { + resource.onComplete.once(function () { + return cache[_this.url] = _this.data; + }); + } + + next(); +} + +function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } +} + +function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + return Constructor; +} + +var useXdr = !!(window.XDomainRequest && !('withCredentials' in new XMLHttpRequest())); +var tempAnchor$1 = null; // some status constants + +var STATUS_NONE = 0; +var STATUS_OK = 200; +var STATUS_EMPTY = 204; +var STATUS_IE_BUG_EMPTY = 1223; +var STATUS_TYPE_OK = 2; // noop + +function _noop$1() {} +/* empty */ + +/** + * Manages the state and loading of a resource and all child resources. + * + * @class + */ + + +var Resource$1 = +/*#__PURE__*/ +function () { + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.LOAD_TYPE} loadType - The load type to set it to. + */ + Resource.setExtensionLoadType = function setExtensionLoadType(extname, loadType) { + setExtMap(Resource._loadTypeMap, extname, loadType); + } + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.XHR_RESPONSE_TYPE} xhrType - The xhr type to set it to. + */ + ; + + Resource.setExtensionXhrType = function setExtensionXhrType(extname, xhrType) { + setExtMap(Resource._xhrTypeMap, extname, xhrType); + } + /** + * @param {string} name - The name of the resource to load. + * @param {string|string[]} url - The url for this resource, for audio/video loads you can pass + * an array of sources. + * @param {object} [options] - The options for the load. + * @param {string|boolean} [options.crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @param {number} [options.timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @param {Resource.LOAD_TYPE} [options.loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @param {Resource.XHR_RESPONSE_TYPE} [options.xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @param {Resource.IMetadata} [options.metadata] - Extra configuration for middleware and the Resource object. + */ + ; + + function Resource(name, url, options) { + if (typeof name !== 'string' || typeof url !== 'string') { + throw new Error('Both name and url are required for constructing a resource.'); + } + + options = options || {}; + /** + * The state flags of this resource. + * + * @private + * @member {number} + */ + + this._flags = 0; // set data url flag, needs to be set early for some _determineX checks to work. + + this._setFlag(Resource.STATUS_FLAGS.DATA_URL, url.indexOf('data:') === 0); + /** + * The name of this resource. + * + * @readonly + * @member {string} + */ + + + this.name = name; + /** + * The url used to load this resource. + * + * @readonly + * @member {string} + */ + + this.url = url; + /** + * The extension used to load this resource. + * + * @readonly + * @member {string} + */ + + this.extension = this._getExtension(); + /** + * The data that was loaded by the resource. + * + * @member {any} + */ + + this.data = null; + /** + * Is this request cross-origin? If unset, determined automatically. + * + * @member {string} + */ + + this.crossOrigin = options.crossOrigin === true ? 'anonymous' : options.crossOrigin; + /** + * A timeout in milliseconds for the load. If the load takes longer than this time + * it is cancelled and the load is considered a failure. If this value is set to `0` + * then there is no explicit timeout. + * + * @member {number} + */ + + this.timeout = options.timeout || 0; + /** + * The method of loading to use for this resource. + * + * @member {Resource.LOAD_TYPE} + */ + + this.loadType = options.loadType || this._determineLoadType(); + /** + * The type used to load the resource via XHR. If unset, determined automatically. + * + * @member {string} + */ + + this.xhrType = options.xhrType; + /** + * Extra info for middleware, and controlling specifics about how the resource loads. + * + * Note that if you pass in a `loadElement`, the Resource class takes ownership of it. + * Meaning it will modify it as it sees fit. + * + * @member {Resource.IMetadata} + */ + + this.metadata = options.metadata || {}; + /** + * The error that occurred while loading (if any). + * + * @readonly + * @member {Error} + */ + + this.error = null; + /** + * The XHR object that was used to load this resource. This is only set + * when `loadType` is `Resource.LOAD_TYPE.XHR`. + * + * @readonly + * @member {XMLHttpRequest} + */ + + this.xhr = null; + /** + * The child resources this resource owns. + * + * @readonly + * @member {Resource[]} + */ + + this.children = []; + /** + * The resource type. + * + * @readonly + * @member {Resource.TYPE} + */ + + this.type = Resource.TYPE.UNKNOWN; + /** + * The progress chunk owned by this resource. + * + * @readonly + * @member {number} + */ + + this.progressChunk = 0; + /** + * The `dequeue` method that will be used a storage place for the async queue dequeue method + * used privately by the loader. + * + * @private + * @member {function} + */ + + this._dequeue = _noop$1; + /** + * Used a storage place for the on load binding used privately by the loader. + * + * @private + * @member {function} + */ + + this._onLoadBinding = null; + /** + * The timer for element loads to check if they timeout. + * + * @private + * @member {number} + */ + + this._elementTimer = 0; + /** + * The `complete` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundComplete = this.complete.bind(this); + /** + * The `_onError` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnError = this._onError.bind(this); + /** + * The `_onProgress` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnProgress = this._onProgress.bind(this); + /** + * The `_onTimeout` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnTimeout = this._onTimeout.bind(this); // xhr callbacks + + this._boundXhrOnError = this._xhrOnError.bind(this); + this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this); + this._boundXhrOnAbort = this._xhrOnAbort.bind(this); + this._boundXhrOnLoad = this._xhrOnLoad.bind(this); + /** + * Dispatched when the resource beings to load. + * + * The callback looks like {@link Resource.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched each time progress of this resource load updates. + * Not all resources types and loader systems can support this event + * so sometimes it may not be available. If the resource + * is being loaded on a modern browser, using XHR, and the remote server + * properly sets Content-Length headers, then this will be available. + * + * The callback looks like {@link Resource.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once this resource has loaded, if there was an error it will + * be in the `error` property. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); + /** + * Dispatched after this resource has had all the *after* middleware run on it. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onAfterMiddleware = new Signal(); + } + /** + * When the resource starts to load. + * + * @memberof Resource + * @callback OnStartSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * When the resource reports loading progress. + * + * @memberof Resource + * @callback OnProgressSignal + * @param {Resource} resource - The resource that the event happened on. + * @param {number} percentage - The progress of the load in the range [0, 1]. + */ + + /** + * When the resource finishes loading. + * + * @memberof Resource + * @callback OnCompleteSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * @memberof Resource + * @typedef {object} IMetadata + * @property {HTMLImageElement|HTMLAudioElement|HTMLVideoElement} [loadElement=null] - The + * element to use for loading, instead of creating one. + * @property {boolean} [skipSource=false] - Skips adding source(s) to the load element. This + * is useful if you want to pass in a `loadElement` that you already added load sources to. + * @property {string|string[]} [mimeType] - The mime type to use for the source element + * of a video/audio elment. If the urls are an array, you can pass this as an array as well + * where each index is the mime type to use for the corresponding url index. + */ + + /** + * Stores whether or not this url is a data url. + * + * @readonly + * @member {boolean} + */ + + + var _proto = Resource.prototype; + + /** + * Marks the resource as complete. + * + */ + _proto.complete = function complete() { + this._clearEvents(); + + this._finish(); + } + /** + * Aborts the loading of this resource, with an optional message. + * + * @param {string} message - The message to use for the error + */ + ; + + _proto.abort = function abort(message) { + // abort can be called multiple times, ignore subsequent calls. + if (this.error) { + return; + } // store error + + + this.error = new Error(message); // clear events before calling aborts + + this._clearEvents(); // abort the actual loading + + + if (this.xhr) { + this.xhr.abort(); + } else if (this.xdr) { + this.xdr.abort(); + } else if (this.data) { + // single source + if (this.data.src) { + this.data.src = Resource.EMPTY_GIF; + } // multi-source + else { + while (this.data.firstChild) { + this.data.removeChild(this.data.firstChild); + } + } + } // done now. + + + this._finish(); + } + /** + * Kicks off loading of this resource. This method is asynchronous. + * + * @param {Resource.OnCompleteSignal} [cb] - Optional callback to call once the resource is loaded. + */ + ; + + _proto.load = function load(cb) { + var _this = this; + + if (this.isLoading) { + return; + } + + if (this.isComplete) { + if (cb) { + setTimeout(function () { + return cb(_this); + }, 1); + } + + return; + } else if (cb) { + this.onComplete.once(cb); + } + + this._setFlag(Resource.STATUS_FLAGS.LOADING, true); + + this.onStart.dispatch(this); // if unset, determine the value + + if (this.crossOrigin === false || typeof this.crossOrigin !== 'string') { + this.crossOrigin = this._determineCrossOrigin(this.url); + } + + switch (this.loadType) { + case Resource.LOAD_TYPE.IMAGE: + this.type = Resource.TYPE.IMAGE; + + this._loadElement('image'); + + break; + + case Resource.LOAD_TYPE.AUDIO: + this.type = Resource.TYPE.AUDIO; + + this._loadSourceElement('audio'); + + break; + + case Resource.LOAD_TYPE.VIDEO: + this.type = Resource.TYPE.VIDEO; + + this._loadSourceElement('video'); + + break; + + case Resource.LOAD_TYPE.XHR: + /* falls through */ + + default: + if (useXdr && this.crossOrigin) { + this._loadXdr(); + } else { + this._loadXhr(); + } + + break; + } + } + /** + * Checks if the flag is set. + * + * @private + * @param {number} flag - The flag to check. + * @return {boolean} True if the flag is set. + */ + ; + + _proto._hasFlag = function _hasFlag(flag) { + return (this._flags & flag) !== 0; + } + /** + * (Un)Sets the flag. + * + * @private + * @param {number} flag - The flag to (un)set. + * @param {boolean} value - Whether to set or (un)set the flag. + */ + ; + + _proto._setFlag = function _setFlag(flag, value) { + this._flags = value ? this._flags | flag : this._flags & ~flag; + } + /** + * Clears all the events from the underlying loading source. + * + * @private + */ + ; + + _proto._clearEvents = function _clearEvents() { + clearTimeout(this._elementTimer); + + if (this.data && this.data.removeEventListener) { + this.data.removeEventListener('error', this._boundOnError, false); + this.data.removeEventListener('load', this._boundComplete, false); + this.data.removeEventListener('progress', this._boundOnProgress, false); + this.data.removeEventListener('canplaythrough', this._boundComplete, false); + } + + if (this.xhr) { + if (this.xhr.removeEventListener) { + this.xhr.removeEventListener('error', this._boundXhrOnError, false); + this.xhr.removeEventListener('timeout', this._boundXhrOnTimeout, false); + this.xhr.removeEventListener('abort', this._boundXhrOnAbort, false); + this.xhr.removeEventListener('progress', this._boundOnProgress, false); + this.xhr.removeEventListener('load', this._boundXhrOnLoad, false); + } else { + this.xhr.onerror = null; + this.xhr.ontimeout = null; + this.xhr.onprogress = null; + this.xhr.onload = null; + } + } + } + /** + * Finalizes the load. + * + * @private + */ + ; + + _proto._finish = function _finish() { + if (this.isComplete) { + throw new Error('Complete called again for an already completed resource.'); + } + + this._setFlag(Resource.STATUS_FLAGS.COMPLETE, true); + + this._setFlag(Resource.STATUS_FLAGS.LOADING, false); + + this.onComplete.dispatch(this); + } + /** + * Loads this resources using an element that has a single source, + * like an HTMLImageElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadElement = function _loadElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'image' && typeof window.Image !== 'undefined') { + this.data = new Image(); + } else { + this.data = document.createElement(type); + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + this.data.src = this.url; + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an element that has multiple sources, + * like an HTMLAudioElement or HTMLVideoElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadSourceElement = function _loadSourceElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'audio' && typeof window.Audio !== 'undefined') { + this.data = new Audio(); + } else { + this.data = document.createElement(type); + } + + if (this.data === null) { + this.abort("Unsupported element: " + type); + return; + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + // support for CocoonJS Canvas+ runtime, lacks document.createElement('source') + if (navigator.isCocoonJS) { + this.data.src = Array.isArray(this.url) ? this.url[0] : this.url; + } else if (Array.isArray(this.url)) { + var mimeTypes = this.metadata.mimeType; + + for (var i = 0; i < this.url.length; ++i) { + this.data.appendChild(this._createSource(type, this.url[i], Array.isArray(mimeTypes) ? mimeTypes[i] : mimeTypes)); + } + } else { + var _mimeTypes = this.metadata.mimeType; + this.data.appendChild(this._createSource(type, this.url, Array.isArray(_mimeTypes) ? _mimeTypes[0] : _mimeTypes)); + } + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + this.data.addEventListener('canplaythrough', this._boundComplete, false); + this.data.load(); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an XMLHttpRequest. + * + * @private + */ + ; + + _proto._loadXhr = function _loadXhr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xhr = this.xhr = new XMLHttpRequest(); // set the request type and url + + xhr.open('GET', this.url, true); + xhr.timeout = this.timeout; // load json as text and parse it ourselves. We do this because some browsers + // *cough* safari *cough* can't deal with it. + + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON || this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + xhr.responseType = Resource.XHR_RESPONSE_TYPE.TEXT; + } else { + xhr.responseType = this.xhrType; + } + + xhr.addEventListener('error', this._boundXhrOnError, false); + xhr.addEventListener('timeout', this._boundXhrOnTimeout, false); + xhr.addEventListener('abort', this._boundXhrOnAbort, false); + xhr.addEventListener('progress', this._boundOnProgress, false); + xhr.addEventListener('load', this._boundXhrOnLoad, false); + xhr.send(); + } + /** + * Loads this resources using an XDomainRequest. This is here because we need to support IE9 (gross). + * + * @private + */ + ; + + _proto._loadXdr = function _loadXdr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xdr = this.xhr = new XDomainRequest(); // eslint-disable-line no-undef + // XDomainRequest has a few quirks. Occasionally it will abort requests + // A way to avoid this is to make sure ALL callbacks are set even if not used + // More info here: http://stackoverflow.com/questions/15786966/xdomainrequest-aborts-post-on-ie-9 + + xdr.timeout = this.timeout || 5000; // XDR needs a timeout value or it breaks in IE9 + + xdr.onerror = this._boundXhrOnError; + xdr.ontimeout = this._boundXhrOnTimeout; + xdr.onprogress = this._boundOnProgress; + xdr.onload = this._boundXhrOnLoad; + xdr.open('GET', this.url, true); // Note: The xdr.send() call is wrapped in a timeout to prevent an + // issue with the interface where some requests are lost if multiple + // XDomainRequests are being sent at the same time. + // Some info here: https://github.com/photonstorm/phaser/issues/1248 + + setTimeout(function () { + return xdr.send(); + }, 1); + } + /** + * Creates a source used in loading via an element. + * + * @private + * @param {string} type - The element type (video or audio). + * @param {string} url - The source URL to load from. + * @param {string} [mime] - The mime type of the video + * @return {HTMLSourceElement} The source element. + */ + ; + + _proto._createSource = function _createSource(type, url, mime) { + if (!mime) { + mime = type + "/" + this._getExtension(url); + } + + var source = document.createElement('source'); + source.src = url; + source.type = mime; + return source; + } + /** + * Called if a load errors out. + * + * @param {Event} event - The error event from the element that emits it. + * @private + */ + ; + + _proto._onError = function _onError(event) { + this.abort("Failed to load element using: " + event.target.nodeName); + } + /** + * Called if a load progress event fires for an element or xhr/xdr. + * + * @private + * @param {XMLHttpRequestProgressEvent|Event} event - Progress event. + */ + ; + + _proto._onProgress = function _onProgress(event) { + if (event && event.lengthComputable) { + this.onProgress.dispatch(this, event.loaded / event.total); + } + } + /** + * Called if a timeout event fires for an element. + * + * @private + */ + ; + + _proto._onTimeout = function _onTimeout() { + this.abort("Load timed out."); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnError = function _xhrOnError() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request failed. Status: " + xhr.status + ", text: \"" + xhr.statusText + "\""); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnTimeout = function _xhrOnTimeout() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request timed out."); + } + /** + * Called if an abort event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnAbort = function _xhrOnAbort() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request was aborted by the user."); + } + /** + * Called when data successfully loads from an xhr/xdr request. + * + * @private + * @param {XMLHttpRequestLoadEvent|Event} event - Load event + */ + ; + + _proto._xhrOnLoad = function _xhrOnLoad() { + var xhr = this.xhr; + var text = ''; + var status = typeof xhr.status === 'undefined' ? STATUS_OK : xhr.status; // XDR has no `.status`, assume 200. + // responseText is accessible only if responseType is '' or 'text' and on older browsers + + if (xhr.responseType === '' || xhr.responseType === 'text' || typeof xhr.responseType === 'undefined') { + text = xhr.responseText; + } // status can be 0 when using the `file://` protocol so we also check if a response is set. + // If it has a response, we assume 200; otherwise a 0 status code with no contents is an aborted request. + + + if (status === STATUS_NONE && (text.length > 0 || xhr.responseType === Resource.XHR_RESPONSE_TYPE.BUFFER)) { + status = STATUS_OK; + } // handle IE9 bug: http://stackoverflow.com/questions/10046972/msie-returns-status-code-of-1223-for-ajax-request + else if (status === STATUS_IE_BUG_EMPTY) { + status = STATUS_EMPTY; + } + + var statusType = status / 100 | 0; + + if (statusType === STATUS_TYPE_OK) { + // if text, just return it + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.TEXT) { + this.data = text; + this.type = Resource.TYPE.TEXT; + } // if json, parse into json object + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON) { + try { + this.data = JSON.parse(text); + this.type = Resource.TYPE.JSON; + } catch (e) { + this.abort("Error trying to parse loaded json: " + e); + return; + } + } // if xml, parse into an xml document or div element + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + try { + if (window.DOMParser) { + var domparser = new DOMParser(); + this.data = domparser.parseFromString(text, 'text/xml'); + } else { + var div = document.createElement('div'); + div.innerHTML = text; + this.data = div; + } + + this.type = Resource.TYPE.XML; + } catch (e) { + this.abort("Error trying to parse loaded xml: " + e); + return; + } + } // other types just return the response + else { + this.data = xhr.response || text; + } + } else { + this.abort("[" + xhr.status + "] " + xhr.statusText + ": " + xhr.responseURL); + return; + } + + this.complete(); + } + /** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * + * @private + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ + ; + + _proto._determineCrossOrigin = function _determineCrossOrigin(url, loc) { + // data: and javascript: urls are considered same-origin + if (url.indexOf('data:') === 0) { + return ''; + } // A sandboxed iframe without the 'allow-same-origin' attribute will have a special + // origin designed not to match window.location.origin, and will always require + // crossOrigin requests regardless of whether the location matches. + + + if (window.origin !== window.location.origin) { + return 'anonymous'; + } // default is window.location + + + loc = loc || window.location; + + if (!tempAnchor$1) { + tempAnchor$1 = document.createElement('a'); + } // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + + + tempAnchor$1.href = url; + url = parseUri(tempAnchor$1.href, { + strictMode: true + }); + var samePort = !url.port && loc.port === '' || url.port === loc.port; + var protocol = url.protocol ? url.protocol + ":" : ''; // if cross origin + + if (url.host !== loc.hostname || !samePort || protocol !== loc.protocol) { + return 'anonymous'; + } + + return ''; + } + /** + * Determines the responseType of an XHR request based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.XHR_RESPONSE_TYPE} The responseType to use. + */ + ; + + _proto._determineXhrType = function _determineXhrType() { + return Resource._xhrTypeMap[this.extension] || Resource.XHR_RESPONSE_TYPE.TEXT; + } + /** + * Determines the loadType of a resource based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.LOAD_TYPE} The loadType to use. + */ + ; + + _proto._determineLoadType = function _determineLoadType() { + return Resource._loadTypeMap[this.extension] || Resource.LOAD_TYPE.XHR; + } + /** + * Extracts the extension (sans '.') of the file being loaded by the resource. + * + * @private + * @return {string} The extension. + */ + ; + + _proto._getExtension = function _getExtension() { + var url = this.url; + var ext = ''; + + if (this.isDataUrl) { + var slashIndex = url.indexOf('/'); + ext = url.substring(slashIndex + 1, url.indexOf(';', slashIndex)); + } else { + var queryStart = url.indexOf('?'); + var hashStart = url.indexOf('#'); + var index = Math.min(queryStart > -1 ? queryStart : url.length, hashStart > -1 ? hashStart : url.length); + url = url.substring(0, index); + ext = url.substring(url.lastIndexOf('.') + 1); + } + + return ext.toLowerCase(); + } + /** + * Determines the mime type of an XHR request based on the responseType of + * resource being loaded. + * + * @private + * @param {Resource.XHR_RESPONSE_TYPE} type - The type to get a mime type for. + * @return {string} The mime type to use. + */ + ; + + _proto._getMimeFromXhrType = function _getMimeFromXhrType(type) { + switch (type) { + case Resource.XHR_RESPONSE_TYPE.BUFFER: + return 'application/octet-binary'; + + case Resource.XHR_RESPONSE_TYPE.BLOB: + return 'application/blob'; + + case Resource.XHR_RESPONSE_TYPE.DOCUMENT: + return 'application/xml'; + + case Resource.XHR_RESPONSE_TYPE.JSON: + return 'application/json'; + + case Resource.XHR_RESPONSE_TYPE.DEFAULT: + case Resource.XHR_RESPONSE_TYPE.TEXT: + /* falls through */ + + default: + return 'text/plain'; + } + }; + + _createClass(Resource, [{ + key: "isDataUrl", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.DATA_URL); + } + /** + * Describes if this resource has finished loading. Is true when the resource has completely + * loaded. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isComplete", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.COMPLETE); + } + /** + * Describes if this resource is currently loading. Is true when the resource starts loading, + * and is false again when complete. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isLoading", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.LOADING); + } + }]); + + return Resource; +}(); +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + + +Resource$1.STATUS_FLAGS = { + NONE: 0, + DATA_URL: 1 << 0, + COMPLETE: 1 << 1, + LOADING: 1 << 2 +}; +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.TYPE = { + UNKNOWN: 0, + JSON: 1, + XML: 2, + IMAGE: 3, + AUDIO: 4, + VIDEO: 5, + TEXT: 6 +}; +/** + * The types of loading a resource can use. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.LOAD_TYPE = { + /** Uses XMLHttpRequest to load the resource. */ + XHR: 1, + + /** Uses an `Image` object to load the resource. */ + IMAGE: 2, + + /** Uses an `Audio` object to load the resource. */ + AUDIO: 3, + + /** Uses a `Video` object to load the resource. */ + VIDEO: 4 +}; +/** + * The XHR ready states, used internally. + * + * @static + * @readonly + * @enum {string} + */ + +Resource$1.XHR_RESPONSE_TYPE = { + /** string */ + DEFAULT: 'text', + + /** ArrayBuffer */ + BUFFER: 'arraybuffer', + + /** Blob */ + BLOB: 'blob', + + /** Document */ + DOCUMENT: 'document', + + /** Object */ + JSON: 'json', + + /** String */ + TEXT: 'text' +}; +Resource$1._loadTypeMap = { + // images + gif: Resource$1.LOAD_TYPE.IMAGE, + png: Resource$1.LOAD_TYPE.IMAGE, + bmp: Resource$1.LOAD_TYPE.IMAGE, + jpg: Resource$1.LOAD_TYPE.IMAGE, + jpeg: Resource$1.LOAD_TYPE.IMAGE, + tif: Resource$1.LOAD_TYPE.IMAGE, + tiff: Resource$1.LOAD_TYPE.IMAGE, + webp: Resource$1.LOAD_TYPE.IMAGE, + tga: Resource$1.LOAD_TYPE.IMAGE, + svg: Resource$1.LOAD_TYPE.IMAGE, + 'svg+xml': Resource$1.LOAD_TYPE.IMAGE, + // for SVG data urls + // audio + mp3: Resource$1.LOAD_TYPE.AUDIO, + ogg: Resource$1.LOAD_TYPE.AUDIO, + wav: Resource$1.LOAD_TYPE.AUDIO, + // videos + mp4: Resource$1.LOAD_TYPE.VIDEO, + webm: Resource$1.LOAD_TYPE.VIDEO +}; +Resource$1._xhrTypeMap = { + // xml + xhtml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + html: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + htm: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + xml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + tmx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + svg: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // This was added to handle Tiled Tileset XML, but .tsx is also a TypeScript React Component. + // Since it is way less likely for people to be loading TypeScript files instead of Tiled files, + // this should probably be fine. + tsx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // images + gif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + png: Resource$1.XHR_RESPONSE_TYPE.BLOB, + bmp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpeg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tiff: Resource$1.XHR_RESPONSE_TYPE.BLOB, + webp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tga: Resource$1.XHR_RESPONSE_TYPE.BLOB, + // json + json: Resource$1.XHR_RESPONSE_TYPE.JSON, + // text + text: Resource$1.XHR_RESPONSE_TYPE.TEXT, + txt: Resource$1.XHR_RESPONSE_TYPE.TEXT, + // fonts + ttf: Resource$1.XHR_RESPONSE_TYPE.BUFFER, + otf: Resource$1.XHR_RESPONSE_TYPE.BUFFER +}; // We can't set the `src` attribute to empty string, so on abort we set it to this 1px transparent gif + +Resource$1.EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='; +/** + * Quick helper to set a value on one of the extension maps. Ensures there is no + * dot at the start of the extension. + * + * @ignore + * @param {object} map - The map to set on. + * @param {string} extname - The extension (or key) to set. + * @param {number} val - The value to set. + */ + +function setExtMap(map, extname, val) { + if (extname && extname.indexOf('.') === 0) { + extname = extname.substring(1); + } + + if (!extname) { + return; + } + + map[extname] = val; +} +/** + * Quick helper to get string xhr type. + * + * @ignore + * @param {XMLHttpRequest|XDomainRequest} xhr - The request to check. + * @return {string} The type. + */ + + +function reqType(xhr) { + return xhr.toString().replace('object ', ''); +} + +var _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; +/** + * Encodes binary into base64. + * + * @function encodeBinary + * @param {string} input The input data to encode. + * @returns {string} The encoded base64 string + */ + +function encodeBinary(input) { + var output = ''; + var inx = 0; + + while (inx < input.length) { + // Fill byte buffer array + var bytebuffer = [0, 0, 0]; + var encodedCharIndexes = [0, 0, 0, 0]; + + for (var jnx = 0; jnx < bytebuffer.length; ++jnx) { + if (inx < input.length) { + // throw away high-order byte, as documented at: + // https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data + bytebuffer[jnx] = input.charCodeAt(inx++) & 0xff; + } else { + bytebuffer[jnx] = 0; + } + } // Get each encoded character, 6 bits at a time + // index 1: first 6 bits + + + encodedCharIndexes[0] = bytebuffer[0] >> 2; // index 2: second 6 bits (2 least significant bits from input byte 1 + 4 most significant bits from byte 2) + + encodedCharIndexes[1] = (bytebuffer[0] & 0x3) << 4 | bytebuffer[1] >> 4; // index 3: third 6 bits (4 least significant bits from input byte 2 + 2 most significant bits from byte 3) + + encodedCharIndexes[2] = (bytebuffer[1] & 0x0f) << 2 | bytebuffer[2] >> 6; // index 3: forth 6 bits (6 least significant bits from input byte 3) + + encodedCharIndexes[3] = bytebuffer[2] & 0x3f; // Determine whether padding happened, and adjust accordingly + + var paddingBytes = inx - (input.length - 1); + + switch (paddingBytes) { + case 2: + // Set last 2 characters to padding char + encodedCharIndexes[3] = 64; + encodedCharIndexes[2] = 64; + break; + + case 1: + // Set last character to padding char + encodedCharIndexes[3] = 64; + break; + + default: + break; + // No padding - proceed + } // Now we will grab each appropriate character out of our keystring + // based on our index array and append it to the output string + + + for (var _jnx = 0; _jnx < encodedCharIndexes.length; ++_jnx) { + output += _keyStr.charAt(encodedCharIndexes[_jnx]); + } + } + + return output; +} + +var Url$1 = window.URL || window.webkitURL; +/** + * A middleware for transforming XHR loaded Blobs into more useful objects + * + * @memberof middleware + * @function parsing + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.parsing); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function parsing(resource, next) { + if (!resource.data) { + next(); + return; + } // if this was an XHR load of a blob + + + if (resource.xhr && resource.xhrType === Resource$1.XHR_RESPONSE_TYPE.BLOB) { + // if there is no blob support we probably got a binary string back + if (!window.Blob || typeof resource.data === 'string') { + var type = resource.xhr.getResponseHeader('content-type'); // this is an image, convert the binary string into a data url + + if (type && type.indexOf('image') === 0) { + resource.data = new Image(); + resource.data.src = "data:" + type + ";base64," + encodeBinary(resource.xhr.responseText); + resource.type = Resource$1.TYPE.IMAGE; // wait until the image loads and then callback + + resource.data.onload = function () { + resource.data.onload = null; + next(); + }; // next will be called on load + + + return; + } + } // if content type says this is an image, then we should transform the blob into an Image object + else if (resource.data.type.indexOf('image') === 0) { + var src = Url$1.createObjectURL(resource.data); + resource.blob = resource.data; + resource.data = new Image(); + resource.data.src = src; + resource.type = Resource$1.TYPE.IMAGE; // cleanup the no longer used blob after the image loads + // TODO: Is this correct? Will the image be invalid after revoking? + + resource.data.onload = function () { + Url$1.revokeObjectURL(src); + resource.data.onload = null; + next(); + }; // next will be called on load. + + + return; + } + } + + next(); +} + +/** + * @namespace middleware + */ + +var index = ({ + caching: caching, + parsing: parsing +}); + +var MAX_PROGRESS = 100; +var rgxExtractUrlHash = /(#[\w-]+)?$/; +/** + * Manages the state and loading of multiple resources to load. + * + * @class + */ + +var Loader = +/*#__PURE__*/ +function () { + /** + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ + function Loader(baseUrl, concurrency) { + var _this = this; + + if (baseUrl === void 0) { + baseUrl = ''; + } + + if (concurrency === void 0) { + concurrency = 10; + } + + /** + * The base url for all resources loaded by this loader. + * + * @member {string} + */ + this.baseUrl = baseUrl; + /** + * The progress percent of the loader going through the queue. + * + * @member {number} + * @default 0 + */ + + this.progress = 0; + /** + * Loading state of the loader, true if it is currently loading resources. + * + * @member {boolean} + * @default false + */ + + this.loading = false; + /** + * A querystring to append to every URL added to the loader. + * + * This should be a valid query string *without* the question-mark (`?`). The loader will + * also *not* escape values for you. Make sure to escape your parameters with + * [`encodeURIComponent`](https://mdn.io/encodeURIComponent) before assigning this property. + * + * @example + * const loader = new Loader(); + * + * loader.defaultQueryString = 'user=me&password=secret'; + * + * // This will request 'image.png?user=me&password=secret' + * loader.add('image.png').load(); + * + * loader.reset(); + * + * // This will request 'image.png?v=1&user=me&password=secret' + * loader.add('iamge.png?v=1').load(); + * + * @member {string} + * @default '' + */ + + this.defaultQueryString = ''; + /** + * The middleware to run before loading each resource. + * + * @private + * @member {function[]} + */ + + this._beforeMiddleware = []; + /** + * The middleware to run after loading each resource. + * + * @private + * @member {function[]} + */ + + this._afterMiddleware = []; + /** + * The tracks the resources we are currently completing parsing for. + * + * @private + * @member {Resource[]} + */ + + this._resourcesParsing = []; + /** + * The `_loadResource` function bound with this object context. + * + * @private + * @member {function} + * @param {Resource} r - The resource to load + * @param {Function} d - The dequeue function + * @return {undefined} + */ + + this._boundLoadResource = function (r, d) { + return _this._loadResource(r, d); + }; + /** + * The resources waiting to be loaded. + * + * @private + * @member {Resource[]} + */ + + + this._queue = queue(this._boundLoadResource, concurrency); + + this._queue.pause(); + /** + * All the resources for this loader keyed by name. + * + * @member {object} + */ + + + this.resources = {}; + /** + * Dispatched once per loaded or errored resource. + * + * The callback looks like {@link Loader.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once per errored resource. + * + * The callback looks like {@link Loader.OnErrorSignal}. + * + * @member {Signal} + */ + + this.onError = new Signal(); + /** + * Dispatched once per loaded resource. + * + * The callback looks like {@link Loader.OnLoadSignal}. + * + * @member {Signal} + */ + + this.onLoad = new Signal(); + /** + * Dispatched when the loader begins to process the queue. + * + * The callback looks like {@link Loader.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched when the queued resources all load. + * + * The callback looks like {@link Loader.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); // Add default before middleware + + for (var i = 0; i < Loader._defaultBeforeMiddleware.length; ++i) { + this.pre(Loader._defaultBeforeMiddleware[i]); + } // Add default after middleware + + + for (var _i = 0; _i < Loader._defaultAfterMiddleware.length; ++_i) { + this.use(Loader._defaultAfterMiddleware[_i]); + } + } + /** + * When the progress changes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnProgressSignal + * @param {Loader} loader - The loader the progress is advancing on. + * @param {Resource} resource - The resource that has completed or failed to cause the progress to advance. + */ + + /** + * When an error occurrs the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnErrorSignal + * @param {Loader} loader - The loader the error happened in. + * @param {Resource} resource - The resource that caused the error. + */ + + /** + * When a load completes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnLoadSignal + * @param {Loader} loader - The loader that laoded the resource. + * @param {Resource} resource - The resource that has completed loading. + */ + + /** + * When the loader starts loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnStartSignal + * @param {Loader} loader - The loader that has started loading resources. + */ + + /** + * When the loader completes loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnCompleteSignal + * @param {Loader} loader - The loader that has finished loading resources. + */ + + /** + * Options for a call to `.add()`. + * + * @see Loader#add + * + * @typedef {object} IAddOptions + * @property {string} [name] - The name of the resource to load, if not passed the url is used. + * @property {string} [key] - Alias for `name`. + * @property {string} [url] - The url for this resource, relative to the baseUrl of this loader. + * @property {string|boolean} [crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @property {number} [timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @property {Resource.LOAD_TYPE} [loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @property {Resource.XHR_RESPONSE_TYPE} [xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @property {Resource.OnCompleteSignal} [onComplete] - Callback to add an an onComplete signal istener. + * @property {Resource.OnCompleteSignal} [callback] - Alias for `onComplete`. + * @property {Resource.IMetadata} [metadata] - Extra configuration for middleware and the Resource object. + */ + + /* eslint-disable require-jsdoc,valid-jsdoc */ + + /** + * Adds a resource (or multiple resources) to the loader queue. + * + * This function can take a wide variety of different parameters. The only thing that is always + * required the url to load. All the following will work: + * + * ```js + * loader + * // normal param syntax + * .add('key', 'http://...', function () {}) + * .add('http://...', function () {}) + * .add('http://...') + * + * // object syntax + * .add({ + * name: 'key2', + * url: 'http://...' + * }, function () {}) + * .add({ + * url: 'http://...' + * }, function () {}) + * .add({ + * name: 'key3', + * url: 'http://...' + * onComplete: function () {} + * }) + * .add({ + * url: 'https://...', + * onComplete: function () {}, + * crossOrigin: true + * }) + * + * // you can also pass an array of objects or urls or both + * .add([ + * { name: 'key4', url: 'http://...', onComplete: function () {} }, + * { url: 'http://...', onComplete: function () {} }, + * 'http://...' + * ]) + * + * // and you can use both params and options + * .add('key', 'http://...', { crossOrigin: true }, function () {}) + * .add('http://...', { crossOrigin: true }, function () {}); + * ``` + * + * @function + * @variation 1 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 2 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 3 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 4 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 5 + * @param {IAddOptions} options - The options for the load. This object must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 6 + * @param {Array} resources - An array of resources to load, where each is + * either an object with the options or a string url. If you pass an object, it must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + + var _proto = Loader.prototype; + + _proto.add = function add(name, url, options, cb) { + // special case of an array of objects or urls + if (Array.isArray(name)) { + for (var i = 0; i < name.length; ++i) { + this.add(name[i]); + } + + return this; + } // if an object is passed instead of params + + + if (typeof name === 'object') { + cb = url || name.callback || name.onComplete; + options = name; + url = name.url; + name = name.name || name.key || name.url; + } // case where no name is passed shift all args over by one. + + + if (typeof url !== 'string') { + cb = options; + options = url; + url = name; + } // now that we shifted make sure we have a proper url. + + + if (typeof url !== 'string') { + throw new Error('No url passed to add resource to loader.'); + } // options are optional so people might pass a function and no options + + + if (typeof options === 'function') { + cb = options; + options = null; + } // if loading already you can only add resources that have a parent. + + + if (this.loading && (!options || !options.parentResource)) { + throw new Error('Cannot add resources while the loader is running.'); + } // check if resource already exists. + + + if (this.resources[name]) { + throw new Error("Resource named \"" + name + "\" already exists."); + } // add base url if this isn't an absolute url + + + url = this._prepareUrl(url); // create the store the resource + + this.resources[name] = new Resource$1(name, url, options); + + if (typeof cb === 'function') { + this.resources[name].onAfterMiddleware.once(cb); + } // if actively loading, make sure to adjust progress chunks for that parent and its children + + + if (this.loading) { + var parent = options.parentResource; + var incompleteChildren = []; + + for (var _i2 = 0; _i2 < parent.children.length; ++_i2) { + if (!parent.children[_i2].isComplete) { + incompleteChildren.push(parent.children[_i2]); + } + } + + var fullChunk = parent.progressChunk * (incompleteChildren.length + 1); // +1 for parent + + var eachChunk = fullChunk / (incompleteChildren.length + 2); // +2 for parent & new child + + parent.children.push(this.resources[name]); + parent.progressChunk = eachChunk; + + for (var _i3 = 0; _i3 < incompleteChildren.length; ++_i3) { + incompleteChildren[_i3].progressChunk = eachChunk; + } + + this.resources[name].progressChunk = eachChunk; + } // add the resource to the queue + + + this._queue.push(this.resources[name]); + + return this; + } + /* eslint-enable require-jsdoc,valid-jsdoc */ + + /** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.pre = function pre(fn) { + this._beforeMiddleware.push(fn); + + return this; + } + /** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.use = function use(fn) { + this._afterMiddleware.push(fn); + + return this; + } + /** + * Resets the queue of the loader to prepare for a new load. + * + * @return {this} Returns itself. + */ + ; + + _proto.reset = function reset() { + this.progress = 0; + this.loading = false; + + this._queue.kill(); + + this._queue.pause(); // abort all resource loads + + + for (var k in this.resources) { + var res = this.resources[k]; + + if (res._onLoadBinding) { + res._onLoadBinding.detach(); + } + + if (res.isLoading) { + res.abort(); + } + } + + this.resources = {}; + return this; + } + /** + * Starts loading the queued resources. + * + * @param {function} [cb] - Optional callback that will be bound to the `complete` event. + * @return {this} Returns itself. + */ + ; + + _proto.load = function load(cb) { + // register complete callback if they pass one + if (typeof cb === 'function') { + this.onComplete.once(cb); + } // if the queue has already started we are done here + + + if (this.loading) { + return this; + } + + if (this._queue.idle()) { + this._onStart(); + + this._onComplete(); + } else { + // distribute progress chunks + var numTasks = this._queue._tasks.length; + var chunk = MAX_PROGRESS / numTasks; + + for (var i = 0; i < this._queue._tasks.length; ++i) { + this._queue._tasks[i].data.progressChunk = chunk; + } // notify we are starting + + + this._onStart(); // start loading + + + this._queue.resume(); + } + + return this; + } + /** + * The number of resources to load concurrently. + * + * @member {number} + * @default 10 + */ + ; + + /** + * Prepares a url for usage based on the configuration of this object + * + * @private + * @param {string} url - The url to prepare. + * @return {string} The prepared url. + */ + _proto._prepareUrl = function _prepareUrl(url) { + var parsedUrl = parseUri(url, { + strictMode: true + }); + var result; // absolute url, just use it as is. + + if (parsedUrl.protocol || !parsedUrl.path || url.indexOf('//') === 0) { + result = url; + } // if baseUrl doesn't end in slash and url doesn't start with slash, then add a slash inbetween + else if (this.baseUrl.length && this.baseUrl.lastIndexOf('/') !== this.baseUrl.length - 1 && url.charAt(0) !== '/') { + result = this.baseUrl + "/" + url; + } else { + result = this.baseUrl + url; + } // if we need to add a default querystring, there is a bit more work + + + if (this.defaultQueryString) { + var hash = rgxExtractUrlHash.exec(result)[0]; + result = result.substr(0, result.length - hash.length); + + if (result.indexOf('?') !== -1) { + result += "&" + this.defaultQueryString; + } else { + result += "?" + this.defaultQueryString; + } + + result += hash; + } + + return result; + } + /** + * Loads a single resource. + * + * @private + * @param {Resource} resource - The resource to load. + * @param {function} dequeue - The function to call when we need to dequeue this item. + */ + ; + + _proto._loadResource = function _loadResource(resource, dequeue) { + var _this2 = this; + + resource._dequeue = dequeue; // run before middleware + + eachSeries(this._beforeMiddleware, function (fn, next) { + fn.call(_this2, resource, function () { + // if the before middleware marks the resource as complete, + // break and don't process any more before middleware + next(resource.isComplete ? {} : null); + }); + }, function () { + if (resource.isComplete) { + _this2._onLoad(resource); + } else { + resource._onLoadBinding = resource.onComplete.once(_this2._onLoad, _this2); + resource.load(); + } + }, true); + } + /** + * Called once loading has started. + * + * @private + */ + ; + + _proto._onStart = function _onStart() { + this.progress = 0; + this.loading = true; + this.onStart.dispatch(this); + } + /** + * Called once each resource has loaded. + * + * @private + */ + ; + + _proto._onComplete = function _onComplete() { + this.progress = MAX_PROGRESS; + this.loading = false; + this.onComplete.dispatch(this, this.resources); + } + /** + * Called each time a resources is loaded. + * + * @private + * @param {Resource} resource - The resource that was loaded + */ + ; + + _proto._onLoad = function _onLoad(resource) { + var _this3 = this; + + resource._onLoadBinding = null; // remove this resource from the async queue, and add it to our list of resources that are being parsed + + this._resourcesParsing.push(resource); + + resource._dequeue(); // run all the after middleware for this resource + + + eachSeries(this._afterMiddleware, function (fn, next) { + fn.call(_this3, resource, next); + }, function () { + resource.onAfterMiddleware.dispatch(resource); + _this3.progress = Math.min(MAX_PROGRESS, _this3.progress + resource.progressChunk); + + _this3.onProgress.dispatch(_this3, resource); + + if (resource.error) { + _this3.onError.dispatch(resource.error, _this3, resource); + } else { + _this3.onLoad.dispatch(_this3, resource); + } + + _this3._resourcesParsing.splice(_this3._resourcesParsing.indexOf(resource), 1); // do completion check + + + if (_this3._queue.idle() && _this3._resourcesParsing.length === 0) { + _this3._onComplete(); + } + }, true); + }; + + _createClass(Loader, [{ + key: "concurrency", + get: function get() { + return this._queue.concurrency; + } // eslint-disable-next-line require-jsdoc + , + set: function set(concurrency) { + this._queue.concurrency = concurrency; + } + }]); + + return Loader; +}(); +/** + * A default array of middleware to run before loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + + +Loader._defaultBeforeMiddleware = []; +/** + * A default array of middleware to run after loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + +Loader._defaultAfterMiddleware = []; +/** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + +Loader.pre = function LoaderPreStatic(fn) { + Loader._defaultBeforeMiddleware.push(fn); + + return Loader; +}; +/** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + + +Loader.use = function LoaderUseStatic(fn) { + Loader._defaultAfterMiddleware.push(fn); + + return Loader; +}; + +/*! + * @pixi/loaders - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/loaders is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Loader plugin for handling Texture resources. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var TextureLoader = function TextureLoader () {}; + +TextureLoader.use = function use (resource, next) +{ + // create a new texture if the data is an Image object + if (resource.data && resource.type === Resource$1.TYPE.IMAGE) + { + resource.texture = Texture.fromLoader( + resource.data, + resource.url, + resource.name + ); + } + next(); +}; + +/** + * The new loader, extends Resource Loader by Chad Engler: https://github.com/englercj/resource-loader + * + * ```js + * const loader = PIXI.Loader.shared; // PixiJS exposes a premade instance for you to use. + * //or + * const loader = new PIXI.Loader(); // you can also create your own if you want + * + * const sprites = {}; + * + * // Chainable `add` to enqueue a resource + * loader.add('bunny', 'data/bunny.png') + * .add('spaceship', 'assets/spritesheet.json'); + * loader.add('scoreFont', 'assets/score.fnt'); + * + * // Chainable `pre` to add a middleware that runs for each resource, *before* loading that resource. + * // This is useful to implement custom caching modules (using filesystem, indexeddb, memory, etc). + * loader.pre(cachingMiddleware); + * + * // Chainable `use` to add a middleware that runs for each resource, *after* loading that resource. + * // This is useful to implement custom parsing modules (like spritesheet parsers, spine parser, etc). + * loader.use(parsingMiddleware); + * + * // The `load` method loads the queue of resources, and calls the passed in callback called once all + * // resources have loaded. + * loader.load((loader, resources) => { + * // resources is an object where the key is the name of the resource loaded and the value is the resource object. + * // They have a couple default properties: + * // - `url`: The URL that the resource was loaded from + * // - `error`: The error that happened when trying to load (if any) + * // - `data`: The raw data that was loaded + * // also may contain other properties based on the middleware that runs. + * sprites.bunny = new PIXI.TilingSprite(resources.bunny.texture); + * sprites.spaceship = new PIXI.TilingSprite(resources.spaceship.texture); + * sprites.scoreFont = new PIXI.TilingSprite(resources.scoreFont.texture); + * }); + * + * // throughout the process multiple signals can be dispatched. + * loader.onProgress.add(() => {}); // called once per loaded/errored file + * loader.onError.add(() => {}); // called once per errored file + * loader.onLoad.add(() => {}); // called once per loaded file + * loader.onComplete.add(() => {}); // called once when the queued resources all load. + * ``` + * + * @see https://github.com/englercj/resource-loader + * + * @class Loader + * @memberof PIXI + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ +var Loader$1 = /*@__PURE__*/(function (ResourceLoader) { + function Loader(baseUrl, concurrency) + { + var this$1 = this; + + ResourceLoader.call(this, baseUrl, concurrency); + eventemitter3.call(this); + + for (var i = 0; i < Loader._plugins.length; ++i) + { + var plugin = Loader._plugins[i]; + var pre = plugin.pre; + var use = plugin.use; + + if (pre) + { + this.pre(pre); + } + + if (use) + { + this.use(use); + } + } + + // Compat layer, translate the new v2 signals into old v1 events. + this.onStart.add(function (l) { return this$1.emit('start', l); }); + this.onProgress.add(function (l, r) { return this$1.emit('progress', l, r); }); + this.onError.add(function (e, l, r) { return this$1.emit('error', e, l, r); }); + this.onLoad.add(function (l, r) { return this$1.emit('load', l, r); }); + this.onComplete.add(function (l, r) { return this$1.emit('complete', l, r); }); + + /** + * If this loader cannot be destroyed. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + } + + if ( ResourceLoader ) Loader.__proto__ = ResourceLoader; + Loader.prototype = Object.create( ResourceLoader && ResourceLoader.prototype ); + Loader.prototype.constructor = Loader; + + var staticAccessors = { shared: { configurable: true } }; + + /** + * Destroy the loader, removes references. + * @private + */ + Loader.prototype.destroy = function destroy () + { + if (!this._protected) + { + this.removeAllListeners(); + this.reset(); + } + }; + + /** + * A premade instance of the loader that can be used to load resources. + * @name shared + * @type {PIXI.Loader} + * @static + * @memberof PIXI.Loader + */ + staticAccessors.shared.get = function () + { + var shared = Loader._shared; + + if (!shared) + { + shared = new Loader(); + shared._protected = true; + Loader._shared = shared; + } + + return shared; + }; + + Object.defineProperties( Loader, staticAccessors ); + + return Loader; +}(Loader)); + +// Copy EE3 prototype (mixin) +Object.assign(Loader$1.prototype, eventemitter3.prototype); + +/** + * Collection of all installed `use` middleware for Loader. + * + * @static + * @member {Array} _plugins + * @memberof PIXI.Loader + * @private + */ +Loader$1._plugins = []; + +/** + * Adds a Loader plugin for the global shared loader and all + * new Loader instances created. + * + * @static + * @method registerPlugin + * @memberof PIXI.Loader + * @param {PIXI.ILoaderPlugin} plugin - The plugin to add + * @return {PIXI.Loader} Reference to PIXI.Loader for chaining + */ +Loader$1.registerPlugin = function registerPlugin(plugin) +{ + Loader$1._plugins.push(plugin); + + if (plugin.add) + { + plugin.add(); + } + + return Loader$1; +}; + +// parse any blob into more usable objects (e.g. Image) +Loader$1.registerPlugin({ use: index.parsing }); + +// parse any Image objects into textures +Loader$1.registerPlugin(TextureLoader); + +/** + * Plugin to be installed for handling specific Loader resources. + * + * @memberof PIXI + * @typedef ILoaderPlugin + * @property {function} [add] - Function to call immediate after registering plugin. + * @property {PIXI.Loader.loaderMiddleware} [pre] - Middleware function to run before load, the + * arguments for this are `(resource, next)` + * @property {PIXI.Loader.loaderMiddleware} [use] - Middleware function to run after load, the + * arguments for this are `(resource, next)` + */ + +/** + * @memberof PIXI.Loader + * @callback loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onStart + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onProgress + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onError + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onLoad + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onComplete + */ + +/** + * Application plugin for supporting loader option. Installing the LoaderPlugin + * is not necessary if using **pixi.js** or **pixi.js-legacy**. + * @example + * import {AppLoaderPlugin} from '@pixi/loaders'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(AppLoaderPlugin); + * @class + * @memberof PIXI + */ +var AppLoaderPlugin = function AppLoaderPlugin () {}; + +AppLoaderPlugin.init = function init (options) +{ + options = Object.assign({ + sharedLoader: false, + }, options); + + /** + * Loader instance to help with asset loading. + * @name PIXI.Application#loader + * @type {PIXI.Loader} + * @readonly + */ + this.loader = options.sharedLoader ? Loader$1.shared : new Loader$1(); +}; + +/** + * Called when application destroyed + * @private + */ +AppLoaderPlugin.destroy = function destroy () +{ + if (this.loader) + { + this.loader.destroy(); + this.loader = null; + } +}; + +/** + * Reference to **{@link https://github.com/englercj/resource-loader + * resource-loader}**'s Resource class. + * @see http://englercj.github.io/resource-loader/Resource.html + * @class LoaderResource + * @memberof PIXI + */ +var LoaderResource = Resource$1; + +/*! + * @pixi/particles - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/particles is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that + * they now share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleBuffer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleBuffer.java + */ + +/** + * The particle buffer manages the static and dynamic buffers for a particle container. + * + * @class + * @private + * @memberof PIXI + */ +var ParticleBuffer = function ParticleBuffer(properties, dynamicPropertyFlags, size) +{ + this.geometry = new Geometry(); + + this.indexBuffer = null; + + /** + * The number of particles the buffer can hold + * + * @private + * @member {number} + */ + this.size = size; + + /** + * A list of the properties that are dynamic. + * + * @private + * @member {object[]} + */ + this.dynamicProperties = []; + + /** + * A list of the properties that are static. + * + * @private + * @member {object[]} + */ + this.staticProperties = []; + + for (var i = 0; i < properties.length; ++i) + { + var property = properties[i]; + + // Make copy of properties object so that when we edit the offset it doesn't + // change all other instances of the object literal + property = { + attributeName: property.attributeName, + size: property.size, + uploadFunction: property.uploadFunction, + type: property.type || TYPES.FLOAT, + offset: property.offset, + }; + + if (dynamicPropertyFlags[i]) + { + this.dynamicProperties.push(property); + } + else + { + this.staticProperties.push(property); + } + } + + this.staticStride = 0; + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + + this.dynamicStride = 0; + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this._updateID = 0; + + this.initBuffers(); +}; + +/** + * Sets up the renderer context and necessary buffers. + * + * @private + */ +ParticleBuffer.prototype.initBuffers = function initBuffers () +{ + var geometry = this.geometry; + + var dynamicOffset = 0; + + /** + * Holds the indices of the geometry (quads) to draw + * + * @member {Uint16Array} + * @private + */ + this.indexBuffer = new Buffer$1(createIndicesForQuads(this.size), true, true); + geometry.addIndex(this.indexBuffer); + + this.dynamicStride = 0; + + for (var i = 0; i < this.dynamicProperties.length; ++i) + { + var property = this.dynamicProperties[i]; + + property.offset = dynamicOffset; + dynamicOffset += property.size; + this.dynamicStride += property.size; + } + + var dynBuffer = new ArrayBuffer(this.size * this.dynamicStride * 4 * 4); + + this.dynamicData = new Float32Array(dynBuffer); + this.dynamicDataUint32 = new Uint32Array(dynBuffer); + this.dynamicBuffer = new Buffer$1(this.dynamicData, false, false); + + // static // + var staticOffset = 0; + + this.staticStride = 0; + + for (var i$1 = 0; i$1 < this.staticProperties.length; ++i$1) + { + var property$1 = this.staticProperties[i$1]; + + property$1.offset = staticOffset; + staticOffset += property$1.size; + this.staticStride += property$1.size; + } + + var statBuffer = new ArrayBuffer(this.size * this.staticStride * 4 * 4); + + this.staticData = new Float32Array(statBuffer); + this.staticDataUint32 = new Uint32Array(statBuffer); + this.staticBuffer = new Buffer$1(this.staticData, true, false); + + for (var i$2 = 0; i$2 < this.dynamicProperties.length; ++i$2) + { + var property$2 = this.dynamicProperties[i$2]; + + geometry.addAttribute( + property$2.attributeName, + this.dynamicBuffer, + 0, + property$2.type === TYPES.UNSIGNED_BYTE, + property$2.type, + this.dynamicStride * 4, + property$2.offset * 4 + ); + } + + for (var i$3 = 0; i$3 < this.staticProperties.length; ++i$3) + { + var property$3 = this.staticProperties[i$3]; + + geometry.addAttribute( + property$3.attributeName, + this.staticBuffer, + 0, + property$3.type === TYPES.UNSIGNED_BYTE, + property$3.type, + this.staticStride * 4, + property$3.offset * 4 + ); + } +}; + +/** + * Uploads the dynamic properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadDynamic = function uploadDynamic (children, startIndex, amount) +{ + for (var i = 0; i < this.dynamicProperties.length; i++) + { + var property = this.dynamicProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.dynamicDataUint32 : this.dynamicData, + this.dynamicStride, property.offset); + } + + this.dynamicBuffer._updateID++; +}; + +/** + * Uploads the static properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadStatic = function uploadStatic (children, startIndex, amount) +{ + for (var i = 0; i < this.staticProperties.length; i++) + { + var property = this.staticProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.staticDataUint32 : this.staticData, + this.staticStride, property.offset); + } + + this.staticBuffer._updateID++; +}; + +/** + * Destroys the ParticleBuffer. + * + * @private + */ +ParticleBuffer.prototype.destroy = function destroy () +{ + this.indexBuffer = null; + + this.dynamicProperties = null; + // this.dynamicBuffer.destroy(); + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this.staticProperties = null; + // this.staticBuffer.destroy(); + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + // all buffers are destroyed inside geometry + this.geometry.destroy(); +}; + +var vertex$1 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\n\nattribute vec2 aPositionCoord;\nattribute float aRotation;\n\nuniform mat3 translationMatrix;\nuniform vec4 uColor;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nvoid main(void){\n float x = (aVertexPosition.x) * cos(aRotation) - (aVertexPosition.y) * sin(aRotation);\n float y = (aVertexPosition.x) * sin(aRotation) + (aVertexPosition.y) * cos(aRotation);\n\n vec2 v = vec2(x, y);\n v = v + aPositionCoord;\n\n gl_Position = vec4((translationMatrix * vec3(v, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vColor = aColor * uColor;\n}\n"; + +var fragment$1 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n vec4 color = texture2D(uSampler, vTextureCoord) * vColor;\n gl_FragColor = color;\n}"; + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that they now + * share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleRenderer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleRenderer.java + */ + +/** + * Renderer for Particles that is designer for speed over feature set. + * + * @class + * @memberof PIXI + */ +var ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function ParticleRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + // 65535 is max vertex index in the index buffer (see ParticleRenderer) + // so max number of particles is 65536 / 4 = 16384 + // and max number of element in the index buffer is 16384 * 6 = 98304 + // Creating a full index buffer, overhead is 98304 * 2 = 196Ko + // let numIndices = 98304; + + /** + * The default shader that is used if a sprite doesn't have a more specific one. + * + * @member {PIXI.Shader} + */ + this.shader = null; + + this.properties = null; + + this.tempMatrix = new Matrix(); + + this.properties = [ + // verticesData + { + attributeName: 'aVertexPosition', + size: 2, + uploadFunction: this.uploadVertices, + offset: 0, + }, + // positionData + { + attributeName: 'aPositionCoord', + size: 2, + uploadFunction: this.uploadPosition, + offset: 0, + }, + // rotationData + { + attributeName: 'aRotation', + size: 1, + uploadFunction: this.uploadRotation, + offset: 0, + }, + // uvsData + { + attributeName: 'aTextureCoord', + size: 2, + uploadFunction: this.uploadUvs, + offset: 0, + }, + // tintData + { + attributeName: 'aColor', + size: 1, + type: TYPES.UNSIGNED_BYTE, + uploadFunction: this.uploadTint, + offset: 0, + } ]; + + this.shader = Shader.from(vertex$1, fragment$1, {}); + } + + if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer; + ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + ParticleRenderer.prototype.constructor = ParticleRenderer; + + /** + * Renders the particle container object. + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + */ + ParticleRenderer.prototype.render = function render (container) + { + var children = container.children; + var maxSize = container._maxSize; + var batchSize = container._batchSize; + var renderer = this.renderer; + var totalChildren = children.length; + + if (totalChildren === 0) + { + return; + } + else if (totalChildren > maxSize && !container.autoResize) + { + totalChildren = maxSize; + } + + var buffers = container._buffers; + + if (!buffers) + { + buffers = container._buffers = this.generateBuffers(container); + } + + var baseTexture = children[0]._texture.baseTexture; + + // if the uvs have not updated then no point rendering just yet! + this.renderer.state.setBlendMode(correctBlendMode(container.blendMode, baseTexture.premultiplyAlpha)); + + var gl = renderer.gl; + + var m = container.worldTransform.copyTo(this.tempMatrix); + + m.prepend(renderer.globalUniforms.uniforms.projectionMatrix); + + this.shader.uniforms.translationMatrix = m.toArray(true); + + this.shader.uniforms.uColor = premultiplyRgba(container.tintRgb, + container.worldAlpha, this.shader.uniforms.uColor, baseTexture.premultiplyAlpha); + + this.shader.uniforms.uSampler = baseTexture; + + this.renderer.shader.bind(this.shader); + + var updateStatic = false; + + // now lets upload and render the buffers.. + for (var i = 0, j = 0; i < totalChildren; i += batchSize, j += 1) + { + var amount = (totalChildren - i); + + if (amount > batchSize) + { + amount = batchSize; + } + + if (j >= buffers.length) + { + buffers.push(this._generateOneMoreBuffer(container)); + } + + var buffer = buffers[j]; + + // we always upload the dynamic + buffer.uploadDynamic(children, i, amount); + + var bid = container._bufferUpdateIDs[j] || 0; + + updateStatic = updateStatic || (buffer._updateID < bid); + // we only upload the static content when we have to! + if (updateStatic) + { + buffer._updateID = container._updateID; + buffer.uploadStatic(children, i, amount); + } + + // bind the buffer + renderer.geometry.bind(buffer.geometry); + gl.drawElements(gl.TRIANGLES, amount * 6, gl.UNSIGNED_SHORT, 0); + } + }; + + /** + * Creates one particle buffer for each child in the container we want to render and updates internal properties + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer[]} The buffers + * @private + */ + ParticleRenderer.prototype.generateBuffers = function generateBuffers (container) + { + var buffers = []; + var size = container._maxSize; + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + for (var i = 0; i < size; i += batchSize) + { + buffers.push(new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize)); + } + + return buffers; + }; + + /** + * Creates one more particle buffer, because container has autoResize feature + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer} generated buffer + * @private + */ + ParticleRenderer.prototype._generateOneMoreBuffer = function _generateOneMoreBuffer (container) + { + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + return new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize); + }; + + /** + * Uploads the vertices. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their vertices uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadVertices = function uploadVertices (children, startIndex, amount, array, stride, offset) + { + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var texture = sprite._texture; + var sx = sprite.scale.x; + var sy = sprite.scale.y; + var trim = texture.trim; + var orig = texture.orig; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the + // extra space before transforming the sprite coords.. + w1 = trim.x - (sprite.anchor.x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (sprite.anchor.y * orig.height); + h0 = h1 + trim.height; + } + else + { + w0 = (orig.width) * (1 - sprite.anchor.x); + w1 = (orig.width) * -sprite.anchor.x; + + h0 = orig.height * (1 - sprite.anchor.y); + h1 = orig.height * -sprite.anchor.y; + } + + array[offset] = w1 * sx; + array[offset + 1] = h1 * sy; + + array[offset + stride] = w0 * sx; + array[offset + stride + 1] = h1 * sy; + + array[offset + (stride * 2)] = w0 * sx; + array[offset + (stride * 2) + 1] = h0 * sy; + + array[offset + (stride * 3)] = w1 * sx; + array[offset + (stride * 3) + 1] = h0 * sy; + + offset += stride * 4; + } + }; + + /** + * Uploads the position. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their positions uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadPosition = function uploadPosition (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spritePosition = children[startIndex + i].position; + + array[offset] = spritePosition.x; + array[offset + 1] = spritePosition.y; + + array[offset + stride] = spritePosition.x; + array[offset + stride + 1] = spritePosition.y; + + array[offset + (stride * 2)] = spritePosition.x; + array[offset + (stride * 2) + 1] = spritePosition.y; + + array[offset + (stride * 3)] = spritePosition.x; + array[offset + (stride * 3) + 1] = spritePosition.y; + + offset += stride * 4; + } + }; + + /** + * Uploads the rotiation. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadRotation = function uploadRotation (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spriteRotation = children[startIndex + i].rotation; + + array[offset] = spriteRotation; + array[offset + stride] = spriteRotation; + array[offset + (stride * 2)] = spriteRotation; + array[offset + (stride * 3)] = spriteRotation; + + offset += stride * 4; + } + }; + + /** + * Uploads the Uvs + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadUvs = function uploadUvs (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var textureUvs = children[startIndex + i]._texture._uvs; + + if (textureUvs) + { + array[offset] = textureUvs.x0; + array[offset + 1] = textureUvs.y0; + + array[offset + stride] = textureUvs.x1; + array[offset + stride + 1] = textureUvs.y1; + + array[offset + (stride * 2)] = textureUvs.x2; + array[offset + (stride * 2) + 1] = textureUvs.y2; + + array[offset + (stride * 3)] = textureUvs.x3; + array[offset + (stride * 3) + 1] = textureUvs.y3; + + offset += stride * 4; + } + else + { + // TODO you know this can be easier! + array[offset] = 0; + array[offset + 1] = 0; + + array[offset + stride] = 0; + array[offset + stride + 1] = 0; + + array[offset + (stride * 2)] = 0; + array[offset + (stride * 2) + 1] = 0; + + array[offset + (stride * 3)] = 0; + array[offset + (stride * 3) + 1] = 0; + + offset += stride * 4; + } + } + }; + + /** + * Uploads the tint. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadTint = function uploadTint (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var premultiplied = sprite._texture.baseTexture.premultiplyAlpha; + var alpha = sprite.alpha; + // we dont call extra function if alpha is 1.0, that's faster + var argb = alpha < 1.0 && premultiplied ? premultiplyTint(sprite._tintRGB, alpha) + : sprite._tintRGB + (alpha * 255 << 24); + + array[offset] = argb; + array[offset + stride] = argb; + array[offset + (stride * 2)] = argb; + array[offset + (stride * 3)] = argb; + + offset += stride * 4; + } + }; + + /** + * Destroys the ParticleRenderer. + */ + ParticleRenderer.prototype.destroy = function destroy () + { + ObjectRenderer.prototype.destroy.call(this); + + if (this.shader) + { + this.shader.destroy(); + this.shader = null; + } + + this.tempMatrix = null; + }; + + return ParticleRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/spritesheet - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/spritesheet is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Utility class for maintaining reference to a collection + * of Textures on a single Spritesheet. + * + * To access a sprite sheet from your code pass its JSON data file to Pixi's loader: + * + * ```js + * PIXI.Loader.shared.add("images/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["images/spritesheet.json"].spritesheet; + * ... + * } + * ``` + * With the `sheet.textures` you can create Sprite objects,`sheet.animations` can be used to create an AnimatedSprite. + * + * Sprite sheets can be packed using tools like {@link https://codeandweb.com/texturepacker|TexturePacker}, + * {@link https://renderhjs.net/shoebox/|Shoebox} or {@link https://github.com/krzysztof-o/spritesheet.js|Spritesheet.js}. + * Default anchor points (see {@link PIXI.Texture#defaultAnchor}) and grouping of animation sprites are currently only + * supported by TexturePacker. + * + * @class + * @memberof PIXI + */ +var Spritesheet = function Spritesheet(baseTexture, data, resolutionFilename) +{ + if ( resolutionFilename === void 0 ) resolutionFilename = null; + + /** + * Reference to ths source texture + * @type {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * A map containing all textures of the sprite sheet. + * Can be used to create a {@link PIXI.Sprite|Sprite}: + * ```js + * new PIXI.Sprite(sheet.textures["image.png"]); + * ``` + * @member {Object} + */ + this.textures = {}; + + /** + * A map containing the textures for each animation. + * Can be used to create an {@link PIXI.AnimatedSprite|AnimatedSprite}: + * ```js + * new PIXI.AnimatedSprite(sheet.animations["anim_name"]) + * ``` + * @member {Object} + */ + this.animations = {}; + + /** + * Reference to the original JSON data. + * @type {Object} + */ + this.data = data; + + /** + * The resolution of the spritesheet. + * @type {number} + */ + this.resolution = this._updateResolution( + resolutionFilename + || (this.baseTexture.resource ? this.baseTexture.resource.url : null) + ); + + /** + * Map of spritesheet frames. + * @type {Object} + * @private + */ + this._frames = this.data.frames; + + /** + * Collection of frame names. + * @type {string[]} + * @private + */ + this._frameKeys = Object.keys(this._frames); + + /** + * Current batch index being processed. + * @type {number} + * @private + */ + this._batchIndex = 0; + + /** + * Callback when parse is completed. + * @type {Function} + * @private + */ + this._callback = null; +}; + +var staticAccessors$4 = { BATCH_SIZE: { configurable: true } }; + +/** + * Generate the resolution from the filename or fallback + * to the meta.scale field of the JSON data. + * + * @private + * @param {string} resolutionFilename - The filename to use for resolving + * the default resolution. + * @return {number} Resolution to use for spritesheet. + */ +staticAccessors$4.BATCH_SIZE.get = function () +{ + return 1000; +}; + +Spritesheet.prototype._updateResolution = function _updateResolution (resolutionFilename) +{ + var scale = this.data.meta.scale; + + // Use a defaultValue of `null` to check if a url-based resolution is set + var resolution = getResolutionOfUrl(resolutionFilename, null); + + // No resolution found via URL + if (resolution === null) + { + // Use the scale value or default to 1 + resolution = scale !== undefined ? parseFloat(scale) : 1; + } + + // For non-1 resolutions, update baseTexture + if (resolution !== 1) + { + this.baseTexture.setResolution(resolution); + } + + return resolution; +}; + +/** + * Parser spritesheet from loaded data. This is done asynchronously + * to prevent creating too many Texture within a single process. + * + * @param {Function} callback - Callback when complete returns + * a map of the Textures for this spritesheet. + */ +Spritesheet.prototype.parse = function parse (callback) +{ + this._batchIndex = 0; + this._callback = callback; + + if (this._frameKeys.length <= Spritesheet.BATCH_SIZE) + { + this._processFrames(0); + this._processAnimations(); + this._parseComplete(); + } + else + { + this._nextBatch(); + } +}; + +/** + * Process a batch of frames + * + * @private + * @param {number} initialFrameIndex - The index of frame to start. + */ +Spritesheet.prototype._processFrames = function _processFrames (initialFrameIndex) +{ + var frameIndex = initialFrameIndex; + var maxFrames = Spritesheet.BATCH_SIZE; + + while (frameIndex - initialFrameIndex < maxFrames && frameIndex < this._frameKeys.length) + { + var i = this._frameKeys[frameIndex]; + var data = this._frames[i]; + var rect = data.frame; + + if (rect) + { + var frame = null; + var trim = null; + var sourceSize = data.trimmed !== false && data.sourceSize + ? data.sourceSize : data.frame; + + var orig = new Rectangle( + 0, + 0, + Math.floor(sourceSize.w) / this.resolution, + Math.floor(sourceSize.h) / this.resolution + ); + + if (data.rotated) + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.h) / this.resolution, + Math.floor(rect.w) / this.resolution + ); + } + else + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + // Check to see if the sprite is trimmed + if (data.trimmed !== false && data.spriteSourceSize) + { + trim = new Rectangle( + Math.floor(data.spriteSourceSize.x) / this.resolution, + Math.floor(data.spriteSourceSize.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + this.textures[i] = new Texture( + this.baseTexture, + frame, + orig, + trim, + data.rotated ? 2 : 0, + data.anchor + ); + + // lets also add the frame to pixi's global cache for 'from' and 'fromLoader' functions + Texture.addToCache(this.textures[i], i); + } + + frameIndex++; + } +}; + +/** + * Parse animations config + * + * @private + */ +Spritesheet.prototype._processAnimations = function _processAnimations () +{ + var animations = this.data.animations || {}; + + for (var animName in animations) + { + this.animations[animName] = []; + for (var i = 0; i < animations[animName].length; i++) + { + var frameName = animations[animName][i]; + + this.animations[animName].push(this.textures[frameName]); + } + } +}; + +/** + * The parse has completed. + * + * @private + */ +Spritesheet.prototype._parseComplete = function _parseComplete () +{ + var callback = this._callback; + + this._callback = null; + this._batchIndex = 0; + callback.call(this, this.textures); +}; + +/** + * Begin the next batch of textures. + * + * @private + */ +Spritesheet.prototype._nextBatch = function _nextBatch () +{ + var this$1 = this; + + this._processFrames(this._batchIndex * Spritesheet.BATCH_SIZE); + this._batchIndex++; + setTimeout(function () { + if (this$1._batchIndex * Spritesheet.BATCH_SIZE < this$1._frameKeys.length) + { + this$1._nextBatch(); + } + else + { + this$1._processAnimations(); + this$1._parseComplete(); + } + }, 0); +}; + +/** + * Destroy Spritesheet and don't use after this. + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ +Spritesheet.prototype.destroy = function destroy (destroyBase) +{ + if ( destroyBase === void 0 ) destroyBase = false; + + for (var i in this.textures) + { + this.textures[i].destroy(); + } + this._frames = null; + this._frameKeys = null; + this.data = null; + this.textures = null; + if (destroyBase) + { + this.baseTexture.destroy(); + } + this.baseTexture = null; +}; + +Object.defineProperties( Spritesheet, staticAccessors$4 ); + +/** + * {@link PIXI.Loader Loader} middleware for loading texture atlases that have been created with + * TexturePacker or similar JSON-based spritesheet. + * + * This middleware automatically generates Texture resources. + * + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var SpritesheetLoader = function SpritesheetLoader () {}; + +SpritesheetLoader.use = function use (resource, next) +{ + var imageResourceName = (resource.name) + "_image"; + + // skip if no data, its not json, it isn't spritesheet data, or the image resource already exists + if (!resource.data + || resource.type !== LoaderResource.TYPE.JSON + || !resource.data.frames + || this.resources[imageResourceName] + ) + { + next(); + + return; + } + + var loadOptions = { + crossOrigin: resource.crossOrigin, + metadata: resource.metadata.imageMetadata, + parentResource: resource, + }; + + var resourcePath = SpritesheetLoader.getResourcePath(resource, this.baseUrl); + + // load the image for this sheet + this.add(imageResourceName, resourcePath, loadOptions, function onImageLoad(res) + { + if (res.error) + { + next(res.error); + + return; + } + + var spritesheet = new Spritesheet( + res.texture.baseTexture, + resource.data, + resource.url + ); + + spritesheet.parse(function () { + resource.spritesheet = spritesheet; + resource.textures = spritesheet.textures; + next(); + }); + }); +}; + +/** + * Get the spritesheets root path + * @param {PIXI.LoaderResource} resource - Resource to check path + * @param {string} baseUrl - Base root url + */ +SpritesheetLoader.getResourcePath = function getResourcePath (resource, baseUrl) +{ + // Prepend url path unless the resource image is a data url + if (resource.isDataUrl) + { + return resource.data.meta.image; + } + + return url.resolve(resource.url.replace(baseUrl, ''), resource.data.meta.image); +}; + +/*! + * @pixi/sprite-tiling - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite-tiling is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$1 = new Point(); + +var vertex$2 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform mat3 uTransform;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = (uTransform * vec3(aTextureCoord, 1.0)).xy;\n}\n"; + +var fragment$2 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\nuniform mat3 uMapCoord;\nuniform vec4 uClampFrame;\nuniform vec2 uClampOffset;\n\nvoid main(void)\n{\n vec2 coord = mod(vTextureCoord - uClampOffset, vec2(1.0, 1.0)) + uClampOffset;\n coord = (uMapCoord * vec3(coord, 1.0)).xy;\n coord = clamp(coord, uClampFrame.xy, uClampFrame.zw);\n\n vec4 sample = texture2D(uSampler, coord);\n gl_FragColor = sample * uColor;\n}\n"; + +var fragmentSimple = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\n\nvoid main(void)\n{\n vec4 sample = texture2D(uSampler, vTextureCoord);\n gl_FragColor = sample * uColor;\n}\n"; + +var tempMat$1 = new Matrix(); + +/** + * WebGL renderer plugin for tiling sprites + * + * @class + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function TilingSpriteRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + var uniforms = { globals: this.renderer.globalUniforms }; + + this.shader = Shader.from(vertex$2, fragment$2, uniforms); + + this.simpleShader = Shader.from(vertex$2, fragmentSimple, uniforms); + + this.quad = new QuadUv(); + } + + if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer; + TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer; + + /** + * + * @param {PIXI.TilingSprite} ts tilingSprite to be rendered + */ + TilingSpriteRenderer.prototype.render = function render (ts) + { + var renderer = this.renderer; + var quad = this.quad; + + var vertices = quad.vertices; + + vertices[0] = vertices[6] = (ts._width) * -ts.anchor.x; + vertices[1] = vertices[3] = ts._height * -ts.anchor.y; + + vertices[2] = vertices[4] = (ts._width) * (1.0 - ts.anchor.x); + vertices[5] = vertices[7] = ts._height * (1.0 - ts.anchor.y); + + if (ts.uvRespectAnchor) + { + vertices = quad.uvs; + + vertices[0] = vertices[6] = -ts.anchor.x; + vertices[1] = vertices[3] = -ts.anchor.y; + + vertices[2] = vertices[4] = 1.0 - ts.anchor.x; + vertices[5] = vertices[7] = 1.0 - ts.anchor.y; + } + + quad.invalidate(); + + var tex = ts._texture; + var baseTex = tex.baseTexture; + var lt = ts.tileTransform.localTransform; + var uv = ts.uvMatrix; + var isSimple = baseTex.isPowerOfTwo + && tex.frame.width === baseTex.width && tex.frame.height === baseTex.height; + + // auto, force repeat wrapMode for big tiling textures + if (isSimple) + { + if (!baseTex._glTextures[renderer.CONTEXT_UID]) + { + if (baseTex.wrapMode === WRAP_MODES.CLAMP) + { + baseTex.wrapMode = WRAP_MODES.REPEAT; + } + } + else + { + isSimple = baseTex.wrapMode !== WRAP_MODES.CLAMP; + } + } + + var shader = isSimple ? this.simpleShader : this.shader; + + var w = tex.width; + var h = tex.height; + var W = ts._width; + var H = ts._height; + + tempMat$1.set(lt.a * w / W, + lt.b * w / H, + lt.c * h / W, + lt.d * h / H, + lt.tx / W, + lt.ty / H); + + // that part is the same as above: + // tempMat.identity(); + // tempMat.scale(tex.width, tex.height); + // tempMat.prepend(lt); + // tempMat.scale(1.0 / ts._width, 1.0 / ts._height); + + tempMat$1.invert(); + if (isSimple) + { + tempMat$1.prepend(uv.mapCoord); + } + else + { + shader.uniforms.uMapCoord = uv.mapCoord.toArray(true); + shader.uniforms.uClampFrame = uv.uClampFrame; + shader.uniforms.uClampOffset = uv.uClampOffset; + } + + shader.uniforms.uTransform = tempMat$1.toArray(true); + shader.uniforms.uColor = premultiplyTintToRgba(ts.tint, ts.worldAlpha, + shader.uniforms.uColor, baseTex.premultiplyAlpha); + shader.uniforms.translationMatrix = ts.transform.worldTransform.toArray(true); + shader.uniforms.uSampler = tex; + + renderer.shader.bind(shader); + renderer.geometry.bind(quad);// , renderer.shader.getGLShader()); + + renderer.state.setBlendMode(correctBlendMode(ts.blendMode, baseTex.premultiplyAlpha)); + renderer.geometry.draw(this.renderer.gl.TRIANGLES, 6, 0); + }; + + return TilingSpriteRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/text-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * A BitmapText object will create a line or multiple lines of text using bitmap font. + * + * The primary advantage of this class over Text is that all of your textures are pre-generated and loading, + * meaning that rendering is fast, and changing text has no performance implications. + * + * The primary disadvantage is that you need to preload the bitmap font assets, and thus the styling is set in stone. + * Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters. + * + * To split a line you can use '\n', '\r' or '\r\n' in your string. + * + * You can generate the fnt files using + * http://www.angelcode.com/products/bmfont/ for Windows or + * http://www.bmglyph.com/ for Mac. + * + * A BitmapText can only be created when the font is loaded. + * + * ```js + * // in this case the font is in a file called 'desyrel.fnt' + * let bitmapText = new PIXI.BitmapText("text using a fancy font!", {font: "35px Desyrel", align: "right"}); + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var BitmapText = /*@__PURE__*/(function (Container) { + function BitmapText(text, style) + { + var this$1 = this; + if ( style === void 0 ) style = {}; + + Container.call(this); + + /** + * Private tracker for the width of the overall text + * + * @member {number} + * @private + */ + this._textWidth = 0; + + /** + * Private tracker for the height of the overall text + * + * @member {number} + * @private + */ + this._textHeight = 0; + + /** + * Private tracker for the letter sprite pool. + * + * @member {PIXI.Sprite[]} + * @private + */ + this._glyphs = []; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._font = { + tint: style.tint !== undefined ? style.tint : 0xFFFFFF, + align: style.align || 'left', + name: null, + size: 0, + }; + + /** + * Private tracker for the current font. + * + * @member {object} + * @private + */ + this.font = style.font; // run font setter + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = text; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting value to 0 + * + * @member {number} + * @private + */ + this._maxWidth = 0; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * ie: when trying to vertically align. + * + * @member {number} + * @private + */ + this._maxLineHeight = 0; + + /** + * Letter spacing. This is useful for setting the space between characters. + * @member {number} + * @private + */ + this._letterSpacing = 0; + + /** + * Text anchor. read-only + * + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint(function () { this$1.dirty = true; }, this, 0, 0); + + /** + * The dirty state of this object. + * + * @member {boolean} + */ + this.dirty = false; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + this.roundPixels = settings.ROUND_PIXELS; + + this.updateText(); + } + + if ( Container ) BitmapText.__proto__ = Container; + BitmapText.prototype = Object.create( Container && Container.prototype ); + BitmapText.prototype.constructor = BitmapText; + + var prototypeAccessors = { tint: { configurable: true },align: { configurable: true },anchor: { configurable: true },font: { configurable: true },text: { configurable: true },maxWidth: { configurable: true },maxLineHeight: { configurable: true },textWidth: { configurable: true },letterSpacing: { configurable: true },textHeight: { configurable: true } }; + + /** + * Renders text and updates it when needed + * + * @private + */ + BitmapText.prototype.updateText = function updateText () + { + var data = BitmapText.fonts[this._font.name]; + var scale = this._font.size / data.size; + var pos = new Point(); + var chars = []; + var lineWidths = []; + var text = this._text.replace(/(?:\r\n|\r)/g, '\n') || ' '; + var textLength = text.length; + var maxWidth = this._maxWidth * data.size / this._font.size; + + var prevCharCode = null; + var lastLineWidth = 0; + var maxLineWidth = 0; + var line = 0; + var lastBreakPos = -1; + var lastBreakWidth = 0; + var spacesRemoved = 0; + var maxLineHeight = 0; + + for (var i = 0; i < textLength; i++) + { + var charCode = text.charCodeAt(i); + var char = text.charAt(i); + + if ((/(?:\s)/).test(char)) + { + lastBreakPos = i; + lastBreakWidth = lastLineWidth; + } + + if (char === '\r' || char === '\n') + { + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + ++line; + ++spacesRemoved; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + continue; + } + + var charData = data.chars[charCode]; + + if (!charData) + { + continue; + } + + if (prevCharCode && charData.kerning[prevCharCode]) + { + pos.x += charData.kerning[prevCharCode]; + } + + chars.push({ + texture: charData.texture, + line: line, + charCode: charCode, + position: new Point(pos.x + charData.xOffset + (this._letterSpacing / 2), pos.y + charData.yOffset), + }); + pos.x += charData.xAdvance + this._letterSpacing; + lastLineWidth = pos.x; + maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height)); + prevCharCode = charCode; + + if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth) + { + ++spacesRemoved; + removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos); + i = lastBreakPos; + lastBreakPos = -1; + + lineWidths.push(lastBreakWidth); + maxLineWidth = Math.max(maxLineWidth, lastBreakWidth); + line++; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + } + } + + var lastChar = text.charAt(text.length - 1); + + if (lastChar !== '\r' && lastChar !== '\n') + { + if ((/(?:\s)/).test(lastChar)) + { + lastLineWidth = lastBreakWidth; + } + + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + } + + var lineAlignOffsets = []; + + for (var i$1 = 0; i$1 <= line; i$1++) + { + var alignOffset = 0; + + if (this._font.align === 'right') + { + alignOffset = maxLineWidth - lineWidths[i$1]; + } + else if (this._font.align === 'center') + { + alignOffset = (maxLineWidth - lineWidths[i$1]) / 2; + } + + lineAlignOffsets.push(alignOffset); + } + + var lenChars = chars.length; + var tint = this.tint; + + for (var i$2 = 0; i$2 < lenChars; i$2++) + { + var c = this._glyphs[i$2]; // get the next glyph sprite + + if (c) + { + c.texture = chars[i$2].texture; + } + else + { + c = new Sprite(chars[i$2].texture); + c.roundPixels = this.roundPixels; + this._glyphs.push(c); + } + + c.position.x = (chars[i$2].position.x + lineAlignOffsets[chars[i$2].line]) * scale; + c.position.y = chars[i$2].position.y * scale; + c.scale.x = c.scale.y = scale; + c.tint = tint; + + if (!c.parent) + { + this.addChild(c); + } + } + + // remove unnecessary children. + for (var i$3 = lenChars; i$3 < this._glyphs.length; ++i$3) + { + this.removeChild(this._glyphs[i$3]); + } + + this._textWidth = maxLineWidth * scale; + this._textHeight = (pos.y + data.lineHeight) * scale; + + // apply anchor + if (this.anchor.x !== 0 || this.anchor.y !== 0) + { + for (var i$4 = 0; i$4 < lenChars; i$4++) + { + this._glyphs[i$4].x -= this._textWidth * this.anchor.x; + this._glyphs[i$4].y -= this._textHeight * this.anchor.y; + } + } + this._maxLineHeight = maxLineHeight * scale; + }; + + /** + * Updates the transform of this object + * + * @private + */ + BitmapText.prototype.updateTransform = function updateTransform () + { + this.validate(); + this.containerUpdateTransform(); + }; + + /** + * Validates text before calling parent's getLocalBounds + * + * @return {PIXI.Rectangle} The rectangular bounding area + */ + BitmapText.prototype.getLocalBounds = function getLocalBounds () + { + this.validate(); + + return Container.prototype.getLocalBounds.call(this); + }; + + /** + * Updates text when needed + * + * @private + */ + BitmapText.prototype.validate = function validate () + { + if (this.dirty) + { + this.updateText(); + this.dirty = false; + } + }; + + /** + * The tint of the BitmapText object. + * + * @member {number} + */ + prototypeAccessors.tint.get = function () + { + return this._font.tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.tint = (typeof value === 'number' && value >= 0) ? value : 0xFFFFFF; + + this.dirty = true; + }; + + /** + * The alignment of the BitmapText object. + * + * @member {string} + * @default 'left' + */ + prototypeAccessors.align.get = function () + { + return this._font.align; + }; + + prototypeAccessors.align.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.align = value || 'left'; + + this.dirty = true; + }; + + /** + * The anchor sets the origin point of the text. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * @member {PIXI.Point | number} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + if (typeof value === 'number') + { + this._anchor.set(value); + } + else + { + this._anchor.copyFrom(value); + } + }; + + /** + * The font descriptor of the BitmapText object. + * + * @member {object} + */ + prototypeAccessors.font.get = function () + { + return this._font; + }; + + prototypeAccessors.font.set = function (value) // eslint-disable-line require-jsdoc + { + if (!value) + { + return; + } + + if (typeof value === 'string') + { + value = value.split(' '); + + this._font.name = value.length === 1 ? value[0] : value.slice(1).join(' '); + this._font.size = value.length >= 2 ? parseInt(value[0], 10) : BitmapText.fonts[this._font.name].size; + } + else + { + this._font.name = value.name; + this._font.size = typeof value.size === 'number' ? value.size : parseInt(value.size, 10); + } + + this.dirty = true; + }; + + /** + * The text of the BitmapText object. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting the value to 0. + * + * @member {number} + */ + prototypeAccessors.maxWidth.get = function () + { + return this._maxWidth; + }; + + prototypeAccessors.maxWidth.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._maxWidth === value) + { + return; + } + this._maxWidth = value; + this.dirty = true; + }; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * i.e. when trying to vertically align. + * + * @member {number} + * @readonly + */ + prototypeAccessors.maxLineHeight.get = function () + { + this.validate(); + + return this._maxLineHeight; + }; + + /** + * The width of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textWidth.get = function () + { + this.validate(); + + return this._textWidth; + }; + + /** + * Additional space between characters. + * + * @member {number} + */ + prototypeAccessors.letterSpacing.get = function () + { + return this._letterSpacing; + }; + + prototypeAccessors.letterSpacing.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._letterSpacing !== value) + { + this._letterSpacing = value; + this.dirty = true; + } + }; + + /** + * The height of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textHeight.get = function () + { + this.validate(); + + return this._textHeight; + }; + + /** + * Register a bitmap font with data and a texture. + * + * @static + * @param {XMLDocument} xml - The XML document data. + * @param {Object.|PIXI.Texture|PIXI.Texture[]} textures - List of textures for each page. + * If providing an object, the key is the `` element's `file` attribute in the FNT file. + * @return {Object} Result font object with font, size, lineHeight and char fields. + */ + BitmapText.registerFont = function registerFont (xml, textures) + { + var data = {}; + var info = xml.getElementsByTagName('info')[0]; + var common = xml.getElementsByTagName('common')[0]; + var pages = xml.getElementsByTagName('page'); + var res = getResolutionOfUrl(pages[0].getAttribute('file'), settings.RESOLUTION); + var pagesTextures = {}; + + data.font = info.getAttribute('face'); + data.size = parseInt(info.getAttribute('size'), 10); + data.lineHeight = parseInt(common.getAttribute('lineHeight'), 10) / res; + data.chars = {}; + + // Single texture, convert to list + if (textures instanceof Texture) + { + textures = [textures]; + } + + // Convert the input Texture, Textures or object + // into a page Texture lookup by "id" + for (var i = 0; i < pages.length; i++) + { + var id = pages[i].getAttribute('id'); + var file = pages[i].getAttribute('file'); + + pagesTextures[id] = textures instanceof Array ? textures[i] : textures[file]; + } + + // parse letters + var letters = xml.getElementsByTagName('char'); + + for (var i$1 = 0; i$1 < letters.length; i$1++) + { + var letter = letters[i$1]; + var charCode = parseInt(letter.getAttribute('id'), 10); + var page = letter.getAttribute('page') || 0; + var textureRect = new Rectangle( + (parseInt(letter.getAttribute('x'), 10) / res) + (pagesTextures[page].frame.x / res), + (parseInt(letter.getAttribute('y'), 10) / res) + (pagesTextures[page].frame.y / res), + parseInt(letter.getAttribute('width'), 10) / res, + parseInt(letter.getAttribute('height'), 10) / res + ); + + data.chars[charCode] = { + xOffset: parseInt(letter.getAttribute('xoffset'), 10) / res, + yOffset: parseInt(letter.getAttribute('yoffset'), 10) / res, + xAdvance: parseInt(letter.getAttribute('xadvance'), 10) / res, + kerning: {}, + texture: new Texture(pagesTextures[page].baseTexture, textureRect), + page: page, + }; + } + + // parse kernings + var kernings = xml.getElementsByTagName('kerning'); + + for (var i$2 = 0; i$2 < kernings.length; i$2++) + { + var kerning = kernings[i$2]; + var first = parseInt(kerning.getAttribute('first'), 10) / res; + var second = parseInt(kerning.getAttribute('second'), 10) / res; + var amount = parseInt(kerning.getAttribute('amount'), 10) / res; + + if (data.chars[second]) + { + data.chars[second].kerning[first] = amount; + } + } + + // I'm leaving this as a temporary fix so we can test the bitmap fonts in v3 + // but it's very likely to change + BitmapText.fonts[data.font] = data; + + return data; + }; + + Object.defineProperties( BitmapText.prototype, prototypeAccessors ); + + return BitmapText; +}(Container)); + +BitmapText.fonts = {}; + +/** + * {@link PIXI.Loader Loader} middleware for loading + * bitmap-based fonts suitable for using with {@link PIXI.BitmapText}. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var BitmapFontLoader = function BitmapFontLoader () {}; + +BitmapFontLoader.parse = function parse (resource, texture) +{ + resource.bitmapFont = BitmapText.registerFont(resource.data, texture); +}; + +/** + * Called when the plugin is installed. + * + * @see PIXI.Loader.registerPlugin + */ +BitmapFontLoader.add = function add () +{ + LoaderResource.setExtensionXhrType('fnt', LoaderResource.XHR_RESPONSE_TYPE.DOCUMENT); +}; + +/** + * Replacement for NodeJS's path.dirname + * @private + * @param {string} url Path to get directory for + */ +BitmapFontLoader.dirname = function dirname (url) +{ + var dir = url + .replace(/\/$/, '') // replace trailing slash + .replace(/\/[^\/]*$/, ''); // remove everything after the last + + // File request is relative, use current directory + if (dir === url) + { + return '.'; + } + // Started with a slash + else if (dir === '') + { + return '/'; + } + + return dir; +}; + +/** + * Called after a resource is loaded. + * @see PIXI.Loader.loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ +BitmapFontLoader.use = function use (resource, next) +{ + // skip if no data or not xml data + if (!resource.data || resource.type !== LoaderResource.TYPE.XML) + { + next(); + + return; + } + + // skip if not bitmap font data, using some silly duck-typing + if (resource.data.getElementsByTagName('page').length === 0 + || resource.data.getElementsByTagName('info').length === 0 + || resource.data.getElementsByTagName('info')[0].getAttribute('face') === null + ) + { + next(); + + return; + } + + var xmlUrl = !resource.isDataUrl ? BitmapFontLoader.dirname(resource.url) : ''; + + if (resource.isDataUrl) + { + if (xmlUrl === '.') + { + xmlUrl = ''; + } + + if (this.baseUrl && xmlUrl) + { + // if baseurl has a trailing slash then add one to xmlUrl so the replace works below + if (this.baseUrl.charAt(this.baseUrl.length - 1) === '/') + { + xmlUrl += '/'; + } + } + } + + // remove baseUrl from xmlUrl + xmlUrl = xmlUrl.replace(this.baseUrl, ''); + + // if there is an xmlUrl now, it needs a trailing slash. Ensure that it does if the string isn't empty. + if (xmlUrl && xmlUrl.charAt(xmlUrl.length - 1) !== '/') + { + xmlUrl += '/'; + } + + var pages = resource.data.getElementsByTagName('page'); + var textures = {}; + + // Handle completed, when the number of textures + // load is the same number as references in the fnt file + var completed = function (page) { + textures[page.metadata.pageFile] = page.texture; + + if (Object.keys(textures).length === pages.length) + { + BitmapFontLoader.parse(resource, textures); + next(); + } + }; + + for (var i = 0; i < pages.length; ++i) + { + var pageFile = pages[i].getAttribute('file'); + var url = xmlUrl + pageFile; + var exists = false; + + // incase the image is loaded outside + // using the same loader, resource will be available + for (var name in this.resources) + { + var bitmapResource = this.resources[name]; + + if (bitmapResource.url === url) + { + bitmapResource.metadata.pageFile = pageFile; + if (bitmapResource.texture) + { + completed(bitmapResource); + } + else + { + bitmapResource.onAfterMiddleware.add(completed); + } + exists = true; + break; + } + } + + // texture is not loaded, we'll attempt to add + // it to the load and add the texture to the list + if (!exists) + { + // Standard loading options for images + var options = { + crossOrigin: resource.crossOrigin, + loadType: LoaderResource.LOAD_TYPE.IMAGE, + metadata: Object.assign( + { pageFile: pageFile }, + resource.metadata.imageMetadata + ), + parentResource: resource, + }; + + this.add(url, options, completed); + } + } +}; + +/*! + * @pixi/filter-color-matrix - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/filter-color-matrix is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var fragment$3 = "varying vec2 vTextureCoord;\nuniform sampler2D uSampler;\nuniform float m[20];\nuniform float uAlpha;\n\nvoid main(void)\n{\n vec4 c = texture2D(uSampler, vTextureCoord);\n\n if (uAlpha == 0.0) {\n gl_FragColor = c;\n return;\n }\n\n // Un-premultiply alpha before applying the color matrix. See issue #3539.\n if (c.a > 0.0) {\n c.rgb /= c.a;\n }\n\n vec4 result;\n\n result.r = (m[0] * c.r);\n result.r += (m[1] * c.g);\n result.r += (m[2] * c.b);\n result.r += (m[3] * c.a);\n result.r += m[4];\n\n result.g = (m[5] * c.r);\n result.g += (m[6] * c.g);\n result.g += (m[7] * c.b);\n result.g += (m[8] * c.a);\n result.g += m[9];\n\n result.b = (m[10] * c.r);\n result.b += (m[11] * c.g);\n result.b += (m[12] * c.b);\n result.b += (m[13] * c.a);\n result.b += m[14];\n\n result.a = (m[15] * c.r);\n result.a += (m[16] * c.g);\n result.a += (m[17] * c.b);\n result.a += (m[18] * c.a);\n result.a += m[19];\n\n vec3 rgb = mix(c.rgb, result.rgb, uAlpha);\n\n // Premultiply alpha again.\n rgb *= result.a;\n\n gl_FragColor = vec4(rgb, result.a);\n}\n"; + +/** + * The ColorMatrixFilter class lets you apply a 5x4 matrix transformation on the RGBA + * color and alpha values of every pixel on your displayObject to produce a result + * with a new set of RGBA color and alpha values. It's pretty powerful! + * + * ```js + * let colorMatrix = new PIXI.filters.ColorMatrixFilter(); + * container.filters = [colorMatrix]; + * colorMatrix.contrast(2); + * ``` + * @author Clément Chenebault + * @class + * @extends PIXI.Filter + * @memberof PIXI.filters + */ +var ColorMatrixFilter = /*@__PURE__*/(function (Filter) { + function ColorMatrixFilter() + { + var uniforms = { + m: new Float32Array([1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0]), + uAlpha: 1, + }; + + Filter.call(this, defaultFilter, fragment$3, uniforms); + + this.alpha = 1; + } + + if ( Filter ) ColorMatrixFilter.__proto__ = Filter; + ColorMatrixFilter.prototype = Object.create( Filter && Filter.prototype ); + ColorMatrixFilter.prototype.constructor = ColorMatrixFilter; + + var prototypeAccessors = { matrix: { configurable: true },alpha: { configurable: true } }; + + /** + * Transforms current matrix and set the new one + * + * @param {number[]} matrix - 5x4 matrix + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype._loadMatrix = function _loadMatrix (matrix, multiply) + { + if ( multiply === void 0 ) multiply = false; + + var newMatrix = matrix; + + if (multiply) + { + this._multiply(newMatrix, this.uniforms.m, matrix); + newMatrix = this._colorMatrix(newMatrix); + } + + // set the new matrix + this.uniforms.m = newMatrix; + }; + + /** + * Multiplies two mat5's + * + * @private + * @param {number[]} out - 5x4 matrix the receiving matrix + * @param {number[]} a - 5x4 matrix the first operand + * @param {number[]} b - 5x4 matrix the second operand + * @returns {number[]} 5x4 matrix + */ + ColorMatrixFilter.prototype._multiply = function _multiply (out, a, b) + { + // Red Channel + out[0] = (a[0] * b[0]) + (a[1] * b[5]) + (a[2] * b[10]) + (a[3] * b[15]); + out[1] = (a[0] * b[1]) + (a[1] * b[6]) + (a[2] * b[11]) + (a[3] * b[16]); + out[2] = (a[0] * b[2]) + (a[1] * b[7]) + (a[2] * b[12]) + (a[3] * b[17]); + out[3] = (a[0] * b[3]) + (a[1] * b[8]) + (a[2] * b[13]) + (a[3] * b[18]); + out[4] = (a[0] * b[4]) + (a[1] * b[9]) + (a[2] * b[14]) + (a[3] * b[19]) + a[4]; + + // Green Channel + out[5] = (a[5] * b[0]) + (a[6] * b[5]) + (a[7] * b[10]) + (a[8] * b[15]); + out[6] = (a[5] * b[1]) + (a[6] * b[6]) + (a[7] * b[11]) + (a[8] * b[16]); + out[7] = (a[5] * b[2]) + (a[6] * b[7]) + (a[7] * b[12]) + (a[8] * b[17]); + out[8] = (a[5] * b[3]) + (a[6] * b[8]) + (a[7] * b[13]) + (a[8] * b[18]); + out[9] = (a[5] * b[4]) + (a[6] * b[9]) + (a[7] * b[14]) + (a[8] * b[19]) + a[9]; + + // Blue Channel + out[10] = (a[10] * b[0]) + (a[11] * b[5]) + (a[12] * b[10]) + (a[13] * b[15]); + out[11] = (a[10] * b[1]) + (a[11] * b[6]) + (a[12] * b[11]) + (a[13] * b[16]); + out[12] = (a[10] * b[2]) + (a[11] * b[7]) + (a[12] * b[12]) + (a[13] * b[17]); + out[13] = (a[10] * b[3]) + (a[11] * b[8]) + (a[12] * b[13]) + (a[13] * b[18]); + out[14] = (a[10] * b[4]) + (a[11] * b[9]) + (a[12] * b[14]) + (a[13] * b[19]) + a[14]; + + // Alpha Channel + out[15] = (a[15] * b[0]) + (a[16] * b[5]) + (a[17] * b[10]) + (a[18] * b[15]); + out[16] = (a[15] * b[1]) + (a[16] * b[6]) + (a[17] * b[11]) + (a[18] * b[16]); + out[17] = (a[15] * b[2]) + (a[16] * b[7]) + (a[17] * b[12]) + (a[18] * b[17]); + out[18] = (a[15] * b[3]) + (a[16] * b[8]) + (a[17] * b[13]) + (a[18] * b[18]); + out[19] = (a[15] * b[4]) + (a[16] * b[9]) + (a[17] * b[14]) + (a[18] * b[19]) + a[19]; + + return out; + }; + + /** + * Create a Float32 Array and normalize the offset component to 0-1 + * + * @private + * @param {number[]} matrix - 5x4 matrix + * @return {number[]} 5x4 matrix with all values between 0-1 + */ + ColorMatrixFilter.prototype._colorMatrix = function _colorMatrix (matrix) + { + // Create a Float32 Array and normalize the offset component to 0-1 + var m = new Float32Array(matrix); + + m[4] /= 255; + m[9] /= 255; + m[14] /= 255; + m[19] /= 255; + + return m; + }; + + /** + * Adjusts brightness + * + * @param {number} b - value of the brigthness (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.brightness = function brightness (b, multiply) + { + var matrix = [ + b, 0, 0, 0, 0, + 0, b, 0, 0, 0, + 0, 0, b, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the matrices in grey scales + * + * @param {number} scale - value of the grey (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.greyscale = function greyscale (scale, multiply) + { + var matrix = [ + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the black and white matrice. + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.blackAndWhite = function blackAndWhite (multiply) + { + var matrix = [ + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the hue property of the color + * + * @param {number} rotation - in degrees + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.hue = function hue (rotation, multiply) + { + rotation = (rotation || 0) / 180 * Math.PI; + + var cosR = Math.cos(rotation); + var sinR = Math.sin(rotation); + var sqrt = Math.sqrt; + + /* a good approximation for hue rotation + This matrix is far better than the versions with magic luminance constants + formerly used here, but also used in the starling framework (flash) and known from this + old part of the internet: quasimondo.com/archives/000565.php + + This new matrix is based on rgb cube rotation in space. Look here for a more descriptive + implementation as a shader not a general matrix: + https://github.com/evanw/glfx.js/blob/58841c23919bd59787effc0333a4897b43835412/src/filters/adjust/huesaturation.js + + This is the source for the code: + see http://stackoverflow.com/questions/8507885/shift-hue-of-an-rgb-color/8510751#8510751 + */ + + var w = 1 / 3; + var sqrW = sqrt(w); // weight is + + var a00 = cosR + ((1.0 - cosR) * w); + var a01 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a02 = (w * (1.0 - cosR)) + (sqrW * sinR); + + var a10 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a11 = cosR + (w * (1.0 - cosR)); + var a12 = (w * (1.0 - cosR)) - (sqrW * sinR); + + var a20 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a21 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a22 = cosR + (w * (1.0 - cosR)); + + var matrix = [ + a00, a01, a02, 0, 0, + a10, a11, a12, 0, 0, + a20, a21, a22, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the contrast matrix, increase the separation between dark and bright + * Increase contrast : shadows darker and highlights brighter + * Decrease contrast : bring the shadows up and the highlights down + * + * @param {number} amount - value of the contrast (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.contrast = function contrast (amount, multiply) + { + var v = (amount || 0) + 1; + var o = -0.5 * (v - 1); + + var matrix = [ + v, 0, 0, 0, o, + 0, v, 0, 0, o, + 0, 0, v, 0, o, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the saturation matrix, increase the separation between colors + * Increase saturation : increase contrast, brightness, and sharpness + * + * @param {number} amount - The saturation amount (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.saturate = function saturate (amount, multiply) + { + if ( amount === void 0 ) amount = 0; + + var x = (amount * 2 / 3) + 1; + var y = ((x - 1) * -0.5); + + var matrix = [ + x, y, y, 0, 0, + y, x, y, 0, 0, + y, y, x, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Desaturate image (remove color) + * + * Call the saturate function + * + */ + ColorMatrixFilter.prototype.desaturate = function desaturate () // eslint-disable-line no-unused-vars + { + this.saturate(-1); + }; + + /** + * Negative image (inverse of classic rgb matrix) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.negative = function negative (multiply) + { + var matrix = [ + -1, 0, 0, 1, 0, + 0, -1, 0, 1, 0, + 0, 0, -1, 1, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Sepia image + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.sepia = function sepia (multiply) + { + var matrix = [ + 0.393, 0.7689999, 0.18899999, 0, 0, + 0.349, 0.6859999, 0.16799999, 0, 0, + 0.272, 0.5339999, 0.13099999, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color motion picture process invented in 1916 (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.technicolor = function technicolor (multiply) + { + var matrix = [ + 1.9125277891456083, -0.8545344976951645, -0.09155508482755585, 0, 11.793603434377337, + -0.3087833385928097, 1.7658908555458428, -0.10601743074722245, 0, -70.35205161461398, + -0.231103377548616, -0.7501899197440212, 1.847597816108189, 0, 30.950940869491138, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Polaroid filter + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.polaroid = function polaroid (multiply) + { + var matrix = [ + 1.438, -0.062, -0.062, 0, 0, + -0.122, 1.378, -0.122, 0, 0, + -0.016, -0.016, 1.483, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Filter who transforms : Red -> Blue and Blue -> Red + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.toBGR = function toBGR (multiply) + { + var matrix = [ + 0, 0, 1, 0, 0, + 0, 1, 0, 0, 0, + 1, 0, 0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color reversal film introduced by Eastman Kodak in 1935. (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.kodachrome = function kodachrome (multiply) + { + var matrix = [ + 1.1285582396593525, -0.3967382283601348, -0.03992559172921793, 0, 63.72958762196502, + -0.16404339962244616, 1.0835251566291304, -0.05498805115633132, 0, 24.732407896706203, + -0.16786010706155763, -0.5603416277695248, 1.6014850761964943, 0, 35.62982807460946, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Brown delicious browni filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.browni = function browni (multiply) + { + var matrix = [ + 0.5997023498159715, 0.34553243048391263, -0.2708298674538042, 0, 47.43192855600873, + -0.037703249837783157, 0.8609577587992641, 0.15059552388459913, 0, -36.96841498319127, + 0.24113635128153335, -0.07441037908422492, 0.44972182064877153, 0, -7.562075277591283, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Vintage filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.vintage = function vintage (multiply) + { + var matrix = [ + 0.6279345635605994, 0.3202183420819367, -0.03965408211312453, 0, 9.651285835294123, + 0.02578397704808868, 0.6441188644374771, 0.03259127616149294, 0, 7.462829176470591, + 0.0466055556782719, -0.0851232987247891, 0.5241648018700465, 0, 5.159190588235296, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * We don't know exactly what it does, kind of gradient map, but funny to play with! + * + * @param {number} desaturation - Tone values. + * @param {number} toned - Tone values. + * @param {string} lightColor - Tone values, example: `0xFFE580` + * @param {string} darkColor - Tone values, example: `0xFFE580` + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.colorTone = function colorTone (desaturation, toned, lightColor, darkColor, multiply) + { + desaturation = desaturation || 0.2; + toned = toned || 0.15; + lightColor = lightColor || 0xFFE580; + darkColor = darkColor || 0x338000; + + var lR = ((lightColor >> 16) & 0xFF) / 255; + var lG = ((lightColor >> 8) & 0xFF) / 255; + var lB = (lightColor & 0xFF) / 255; + + var dR = ((darkColor >> 16) & 0xFF) / 255; + var dG = ((darkColor >> 8) & 0xFF) / 255; + var dB = (darkColor & 0xFF) / 255; + + var matrix = [ + 0.3, 0.59, 0.11, 0, 0, + lR, lG, lB, desaturation, 0, + dR, dG, dB, toned, 0, + lR - dR, lG - dG, lB - dB, 0, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Night effect + * + * @param {number} intensity - The intensity of the night effect. + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.night = function night (intensity, multiply) + { + intensity = intensity || 0.1; + var matrix = [ + intensity * (-2.0), -intensity, 0, 0, 0, + -intensity, 0, intensity, 0, 0, + 0, intensity, intensity * 2.0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Predator effect + * + * Erase the current matrix by setting a new indepent one + * + * @param {number} amount - how much the predator feels his future victim + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.predator = function predator (amount, multiply) + { + var matrix = [ + // row 1 + 11.224130630493164 * amount, + -4.794486999511719 * amount, + -2.8746118545532227 * amount, + 0 * amount, + 0.40342438220977783 * amount, + // row 2 + -3.6330697536468506 * amount, + 9.193157196044922 * amount, + -2.951810836791992 * amount, + 0 * amount, + -1.316135048866272 * amount, + // row 3 + -3.2184197902679443 * amount, + -4.2375030517578125 * amount, + 7.476448059082031 * amount, + 0 * amount, + 0.8044459223747253 * amount, + // row 4 + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * LSD effect + * + * Multiply the current matrix + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.lsd = function lsd (multiply) + { + var matrix = [ + 2, -0.4, 0.5, 0, 0, + -0.5, 2, -0.4, 0, 0, + -0.4, -0.5, 3, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Erase the current matrix by setting the default one + * + */ + ColorMatrixFilter.prototype.reset = function reset () + { + var matrix = [ + 1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, false); + }; + + /** + * The matrix of the color matrix filter + * + * @member {number[]} + * @default [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0] + */ + prototypeAccessors.matrix.get = function () + { + return this.uniforms.m; + }; + + prototypeAccessors.matrix.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.m = value; + }; + + /** + * The opacity value to use when mixing the original and resultant colors. + * + * When the value is 0, the original color is used without modification. + * When the value is 1, the result color is used. + * When in the range (0, 1) the color is interpolated between the original and result by this amount. + * + * @member {number} + * @default 1 + */ + prototypeAccessors.alpha.get = function () + { + return this.uniforms.uAlpha; + }; + + prototypeAccessors.alpha.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.uAlpha = value; + }; + + Object.defineProperties( ColorMatrixFilter.prototype, prototypeAccessors ); + + return ColorMatrixFilter; +}(Filter)); + +// Americanized alias +ColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale; + +/*! + * @pixi/mixin-cache-as-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mixin-cache-as-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var _tempMatrix = new Matrix(); + +DisplayObject.prototype._cacheAsBitmap = false; +DisplayObject.prototype._cacheData = false; + +// figured theres no point adding ALL the extra variables to prototype. +// this model can hold the information needed. This can also be generated on demand as +// most objects are not cached as bitmaps. +/** + * @class + * @ignore + */ +var CacheData = function CacheData() +{ + this.textureCacheId = null; + + this.originalRender = null; + this.originalRenderCanvas = null; + this.originalCalculateBounds = null; + this.originalGetLocalBounds = null; + + this.originalUpdateTransform = null; + this.originalHitTest = null; + this.originalDestroy = null; + this.originalMask = null; + this.originalFilterArea = null; + this.sprite = null; +}; + +Object.defineProperties(DisplayObject.prototype, { + /** + * Set this to true if you want this display object to be cached as a bitmap. + * This basically takes a snap shot of the display object as it is at that moment. It can + * provide a performance benefit for complex static displayObjects. + * To remove simply set this property to `false` + * + * IMPORTANT GOTCHA - Make sure that all your textures are preloaded BEFORE setting this property to true + * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear. + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + cacheAsBitmap: { + get: function get() + { + return this._cacheAsBitmap; + }, + set: function set(value) + { + if (this._cacheAsBitmap === value) + { + return; + } + + this._cacheAsBitmap = value; + + var data; + + if (value) + { + if (!this._cacheData) + { + this._cacheData = new CacheData(); + } + + data = this._cacheData; + + data.originalRender = this.render; + data.originalRenderCanvas = this.renderCanvas; + + data.originalUpdateTransform = this.updateTransform; + data.originalCalculateBounds = this.calculateBounds; + data.originalGetLocalBounds = this.getLocalBounds; + + data.originalDestroy = this.destroy; + + data.originalContainsPoint = this.containsPoint; + + data.originalMask = this._mask; + data.originalFilterArea = this.filterArea; + + this.render = this._renderCached; + this.renderCanvas = this._renderCachedCanvas; + + this.destroy = this._cacheAsBitmapDestroy; + } + else + { + data = this._cacheData; + + if (data.sprite) + { + this._destroyCachedDisplayObject(); + } + + this.render = data.originalRender; + this.renderCanvas = data.originalRenderCanvas; + this.calculateBounds = data.originalCalculateBounds; + this.getLocalBounds = data.originalGetLocalBounds; + + this.destroy = data.originalDestroy; + + this.updateTransform = data.originalUpdateTransform; + this.containsPoint = data.originalContainsPoint; + + this._mask = data.originalMask; + this.filterArea = data.originalFilterArea; + } + }, + }, +}); + +/** + * Renders a cached version of the sprite with WebGL + * + * @private + * @function _renderCached + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCached = function _renderCached(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObject(renderer); + + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._render(renderer); +}; + +/** + * Prepares the WebGL renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObject + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObject = function _initCachedDisplayObject(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // make sure alpha is set to 1 otherwise it will get rendered as invisible! + var cacheAlpha = this.alpha; + + this.alpha = 1; + + // first we flush anything left in the renderer (otherwise it would get rendered to the cached texture) + renderer.batch.flush(); + // this.filters= []; + + // next we find the dimensions of the untransformed object + // this function also calls updatetransform on all its children as part of the measuring. + // This means we don't need to update the transform again in this function + // TODO pass an object to clone too? saves having to create a new one each time! + var bounds = this.getLocalBounds().clone(); + + // add some padding! + if (this.filters) + { + var padding = this.filters[0].padding; + + bounds.pad(padding); + } + + bounds.ceil(settings.RESOLUTION); + + // for now we cache the current renderTarget that the WebGL renderer is currently using. + // this could be more elegant.. + var cachedRenderTexture = renderer.renderTexture.current; + var cachedSourceFrame = renderer.renderTexture.sourceFrame; + var cachedProjectionTransform = renderer.projection.transform; + + // We also store the filter stack - I will definitely look to change how this works a little later down the line. + // const stack = renderer.filterManager.filterStack; + + // this renderTexture will be used to store the cached DisplayObject + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + m.tx = -bounds.x; + m.ty = -bounds.y; + + // reset + this.transform.worldTransform.identity(); + + // set all properties to there original so we can render to a texture + this.render = this._cacheData.originalRender; + + renderer.render(this, renderTexture, true, m, true); + + // now restore the state be setting the new properties + renderer.projection.transform = cachedProjectionTransform; + renderer.renderTexture.bind(cachedRenderTexture, cachedSourceFrame); + + // renderer.filterManager.filterStack = stack; + + this.render = this._renderCached; + // the rest is the same as for Canvas + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Renders a cached version of the sprite with canvas + * + * @private + * @function _renderCachedCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCachedCanvas = function _renderCachedCanvas(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObjectCanvas(renderer); + + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._renderCanvas(renderer); +}; + +// TODO this can be the same as the WebGL version.. will need to do a little tweaking first though.. +/** + * Prepares the Canvas renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObjectCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObjectCanvas = function _initCachedDisplayObjectCanvas(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // get bounds actually transforms the object for us already! + var bounds = this.getLocalBounds(); + + var cacheAlpha = this.alpha; + + this.alpha = 1; + + var cachedRenderTarget = renderer.context; + + bounds.ceil(settings.RESOLUTION); + + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + this.transform.localTransform.copyTo(m); + m.invert(); + + m.tx -= bounds.x; + m.ty -= bounds.y; + + // m.append(this.transform.worldTransform.) + // set all properties to there original so we can render to a texture + this.renderCanvas = this._cacheData.originalRenderCanvas; + + // renderTexture.render(this, m, true); + renderer.render(this, renderTexture, true, m, false); + + // now restore the state be setting the new properties + renderer.context = cachedRenderTarget; + + this.renderCanvas = this._renderCachedCanvas; + // the rest is the same as for WebGL + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Calculates the bounds of the cached sprite + * + * @private + */ +DisplayObject.prototype._calculateCachedBounds = function _calculateCachedBounds() +{ + this._bounds.clear(); + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite._calculateBounds(); + this._lastBoundsID = this._boundsID; +}; + +/** + * Gets the bounds of the cached sprite. + * + * @private + * @return {Rectangle} The local bounds. + */ +DisplayObject.prototype._getCachedLocalBounds = function _getCachedLocalBounds() +{ + return this._cacheData.sprite.getLocalBounds(); +}; + +/** + * Destroys the cached sprite. + * + * @private + */ +DisplayObject.prototype._destroyCachedDisplayObject = function _destroyCachedDisplayObject() +{ + this._cacheData.sprite._texture.destroy(true); + this._cacheData.sprite = null; + + BaseTexture.removeFromCache(this._cacheData.textureCacheId); + Texture.removeFromCache(this._cacheData.textureCacheId); + + this._cacheData.textureCacheId = null; +}; + +/** + * Destroys the cached object. + * + * @private + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value. + * Used when destroying containers, see the Container.destroy method. + */ +DisplayObject.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy(options) +{ + this.cacheAsBitmap = false; + this.destroy(options); +}; + +/*! + * @pixi/mixin-get-child-by-name - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-child-by-name is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The instance name of the object. + * + * @memberof PIXI.DisplayObject# + * @member {string} name + */ +DisplayObject.prototype.name = null; + +/** + * Returns the display object in the container. + * + * @method getChildByName + * @memberof PIXI.Container# + * @param {string} name - Instance name. + * @return {PIXI.DisplayObject} The child with the specified name. + */ +Container.prototype.getChildByName = function getChildByName(name) +{ + for (var i = 0; i < this.children.length; i++) + { + if (this.children[i].name === name) + { + return this.children[i]; + } + } + + return null; +}; + +/*! + * @pixi/mixin-get-global-position - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-global-position is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Returns the global position of the displayObject. Does not depend on object scale, rotation and pivot. + * + * @method getGlobalPosition + * @memberof PIXI.DisplayObject# + * @param {PIXI.Point} [point=new PIXI.Point()] - The point to write the global value to. + * @param {boolean} [skipUpdate=false] - Setting to true will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @return {PIXI.Point} The updated point. + */ +DisplayObject.prototype.getGlobalPosition = function getGlobalPosition(point, skipUpdate) +{ + if ( point === void 0 ) point = new Point(); + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (this.parent) + { + this.parent.toGlobal(this.position, point, skipUpdate); + } + else + { + point.x = this.position.x; + point.y = this.position.y; + } + + return point; +}; + +/*! + * @pixi/mesh - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mesh is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$2 = new Point(); +var tempPolygon = new Polygon(); + +/*! + * pixi.js - v5.1.4 + * Compiled Sat, 21 Sep 2019 07:35:21 UTC + * + * pixi.js is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Install renderer plugins +Renderer.registerPlugin('accessibility', AccessibilityManager); +Renderer.registerPlugin('extract', Extract); +Renderer.registerPlugin('interaction', InteractionManager); +Renderer.registerPlugin('particle', ParticleRenderer); +Renderer.registerPlugin('prepare', Prepare); +Renderer.registerPlugin('batch', BatchRenderer); +Renderer.registerPlugin('tilingSprite', TilingSpriteRenderer); + +Loader$1.registerPlugin(BitmapFontLoader); +Loader$1.registerPlugin(SpritesheetLoader); + +Application.registerPlugin(TickerPlugin); +Application.registerPlugin(AppLoaderPlugin); + +function fromConstructor(constr) { + return constr; +} + +let clipboard_text = ""; +const contexts = []; +const contextIOs = []; +class ImGuiImplInternalRenderer extends ObjectRenderer { + constructor(r) { + super(r); + } + render(owner) { + if (!(owner instanceof ImGuiWindowLayer)) + return; + const window = owner.window; + const io = window.io; + const draw_data = GetDrawData(); + if (draw_data === null) { + throw new Error(); + } + gl || console.log(draw_data); + // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) + const fb_width = io.DisplaySize.x * io.DisplayFramebufferScale.x; + const fb_height = io.DisplaySize.y * io.DisplayFramebufferScale.y; + if (fb_width === 0 || fb_height === 0) { + return; + } + draw_data.ScaleClipRects(io.DisplayFramebufferScale); + // Backup GL state + const last_program = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null; + const last_active_texture = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null; + gl && gl.activeTexture(gl.TEXTURE0); + const last_texture0 = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null; + const last_vertex_array = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null; + const last_array_buffer = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null; + const last_element_array_buffer = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null; + // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode); + const last_viewport = gl && gl.getParameter(gl.VIEWPORT) || null; + const last_scissor_box = gl && gl.getParameter(gl.SCISSOR_BOX) || null; + const last_blend_src_rgb = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null; + const last_blend_dst_rgb = gl && gl.getParameter(gl.BLEND_DST_RGB) || null; + const last_blend_src_alpha = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null; + const last_blend_dst_alpha = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null; + const last_blend_equation_rgb = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null; + const last_blend_equation_alpha = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null; + const last_enable_blend = gl && gl.getParameter(gl.BLEND) || null; + const last_enable_cull_face = gl && gl.getParameter(gl.CULL_FACE) || null; + const last_enable_depth_test = gl && gl.getParameter(gl.DEPTH_TEST) || null; + const last_enable_scissor_test = gl && gl.getParameter(gl.SCISSOR_TEST) || null; + gl.clearColor(0, 0, 0, 0); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl && gl.bindVertexArray(g_VaoHandle); + // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill + gl && gl.enable(gl.BLEND); + gl && gl.blendEquation(gl.FUNC_ADD); + gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE); + gl && gl.disable(gl.CULL_FACE); + gl && gl.disable(gl.DEPTH_TEST); + gl && gl.enable(gl.SCISSOR_TEST); + // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + // Setup viewport, orthographic projection matrix + // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps. + gl && gl.viewport(0, 0, fb_width, fb_height); + const L = draw_data.DisplayPos.x; + const R = draw_data.DisplayPos.x + draw_data.DisplaySize.x; + const T = draw_data.DisplayPos.y; + const B = draw_data.DisplayPos.y + draw_data.DisplaySize.y; + // we actually flip the bottom and top here to match with PIXI's texture usage + const ortho_projection = new Float32Array([ + 2.0 / (R - L), 0.0, 0.0, 0.0, + 0.0, 2.0 / (B - T), 0.0, 0.0, + 0.0, 0.0, -1.0, 0.0, + (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0, + ]); + gl && gl.useProgram(g_ShaderHandle); + gl && gl.uniform1i(g_AttribLocationTex, 0); + gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection); + // Render command lists + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.enableVertexAttribArray(g_AttribLocationPosition); + gl && gl.enableVertexAttribArray(g_AttribLocationUV); + gl && gl.enableVertexAttribArray(g_AttribLocationColor); + gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertPosOffset); + gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertUVOffset); + gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImDrawVertSize, ImDrawVertColOffset); + // Draw + const pos = draw_data.DisplayPos; + const idx_buffer_type = gl && ( gl.UNSIGNED_SHORT) || 0; + draw_data.IterateDrawLists((draw_list) => { + gl || console.log(draw_list); + gl || console.log("VtxBuffer.length", draw_list.VtxBuffer.length); + gl || console.log("IdxBuffer.length", draw_list.IdxBuffer.length); + let idx_buffer_offset = 0; + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW); + gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle); + gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW); + draw_list.IterateDrawCmds((draw_cmd) => { + gl || console.log(draw_cmd); + gl || console.log("ElemCount", draw_cmd.ElemCount); + gl || console.log("ClipRect", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y); + gl || console.log("TextureId", draw_cmd.TextureId); + if (!gl) { + console.log("i: pos.x pos.y uv.x uv.y col"); + for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) { + const view = new ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImDrawVertSize); + console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${("00000000" + view.col[0].toString(16)).substr(-8)}`); + } + } + if (draw_cmd.UserCallback !== null) { + // User callback (registered via ImDrawList::AddCallback) + draw_cmd.UserCallback(draw_list, draw_cmd); + } + else { + const clip_rect = new ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y); + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) { + // Apply scissor/clipping rectangle + gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y); + // Bind texture, Draw + gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId); + gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset); + } + } + idx_buffer_offset += draw_cmd.ElemCount * ImDrawIdxSize; + }); + }); + // Restore modified GL state + gl && (last_program !== null) && gl.useProgram(last_program); + gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0); + gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture); + gl && gl.disableVertexAttribArray(g_AttribLocationPosition); + gl && gl.disableVertexAttribArray(g_AttribLocationUV); + gl && gl.disableVertexAttribArray(g_AttribLocationColor); + gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array); + gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer); + gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer); + gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]); + gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]); + gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha); + gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); + gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND)); + gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE)); + gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST)); + gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST)); + // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]); + } +} +let gl = null; +let app = null; +class ImGuiWindowLayer extends Sprite { + constructor(window, tex) { + super(); + this.pluginName = "imgui_renderer"; + this.window = window; + } +} +class ImGuiWindow extends Container { + constructor(sizeX, sizeY, update) { + super(); + this.baseTex = new BaseRenderTexture({ scaleMode: SCALE_MODES.LINEAR, resolution: 1, type: TYPES.FLOAT, format: FORMATS.RGBA }); + this.tex = new RenderTexture(this.baseTex); + this.surface = new Sprite(this.tex); + this.imgui = new ImGuiWindowLayer(this, this.tex); + this.ctx = CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts); + SetCurrentContext(this.ctx); + this.io = GetIO(); + contexts.push(this.ctx); + contextIOs.push(this.io); + if (contexts.length == 1) { + CreateFontsTexture(); + } + if (typeof (window) !== "undefined") { + LoadIniSettingsFromMemory(window.localStorage.getItem("imgui.ini") || ""); + } + if (typeof (navigator) !== "undefined") { + this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null; + } + this.io.SetClipboardTextFn = (user_data, text) => { + clipboard_text = text; + // console.log(`set clipboard_text: "${clipboard_text}"`); + if (typeof navigator !== "undefined" && typeof navigator.clipboard !== "undefined") { + // console.log(`clipboard.writeText: "${clipboard_text}"`); + navigator.clipboard.writeText(clipboard_text).then(() => { + // console.log(`clipboard.writeText: "${clipboard_text}" done.`); + }); + } + }; + this.io.GetClipboardTextFn = (user_data) => { + // if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.readText: "${clipboard_text}"`); + // (navigator as any).clipboard.readText().then((text: string): void => { + // clipboard_text = text; + // console.log(`clipboard.readText: "${clipboard_text}" done.`); + // }); + // } + // console.log(`get clipboard_text: "${clipboard_text}"`); + return clipboard_text; + }; + this.io.ClipboardUserData = null; + // Setup back-end capabilities flags + this.io.BackendFlags |= ImGuiBackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional) + // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array. + this.io.KeyMap[ImGuiKey.Tab] = 9; + this.io.KeyMap[ImGuiKey.LeftArrow] = 37; + this.io.KeyMap[ImGuiKey.RightArrow] = 39; + this.io.KeyMap[ImGuiKey.UpArrow] = 38; + this.io.KeyMap[ImGuiKey.DownArrow] = 40; + this.io.KeyMap[ImGuiKey.PageUp] = 33; + this.io.KeyMap[ImGuiKey.PageDown] = 34; + this.io.KeyMap[ImGuiKey.Home] = 36; + this.io.KeyMap[ImGuiKey.End] = 35; + this.io.KeyMap[ImGuiKey.Insert] = 45; + this.io.KeyMap[ImGuiKey.Delete] = 46; + this.io.KeyMap[ImGuiKey.Backspace] = 8; + this.io.KeyMap[ImGuiKey.Space] = 32; + this.io.KeyMap[ImGuiKey.Enter] = 13; + this.io.KeyMap[ImGuiKey.Escape] = 27; + this.io.KeyMap[ImGuiKey.A] = 65; + this.io.KeyMap[ImGuiKey.C] = 67; + this.io.KeyMap[ImGuiKey.V] = 86; + this.io.KeyMap[ImGuiKey.X] = 88; + this.io.KeyMap[ImGuiKey.Y] = 89; + this.io.KeyMap[ImGuiKey.Z] = 90; + this.update = update; + this.resize(sizeX, sizeY); + this.imgui.pluginName = 'imgui_renderer'; + this.addChild(this.surface); + app.renderer.plugins.interaction.addListener("mousedown", this.mouseDown.bind(this)); + app.renderer.plugins.interaction.addListener("mouseup", this.mouseUp.bind(this)); + app.ticker.add(this.updateInternal.bind(this)); + this.interactive = false; + this.interactiveChildren = true; + this.surface.interactive = false; + } + getSizeX() { return this.sizeX; } + getSizeY() { return this.sizeY; } + withContext(cb) { + SetCurrentContext(this.ctx); + cb(); + } + mouseDown(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = true; + } + } + mouseUp(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = false; + } + } + resize(sizeX, sizeY) { + this.sizeX = sizeX; + this.sizeY = sizeY; + this.baseTex.resize(sizeX, sizeY); + this.tex.frame = new Rectangle(0, 0, this.baseTex.width, this.baseTex.height); + } + updateInternal(deltaTime) { + const dt = deltaTime * 1 / (1000 * settings.TARGET_FPMS); + SetCurrentContext(this.ctx); + if (this.io.WantSaveIniSettings) { + this.io.WantSaveIniSettings = false; + if (typeof (window) !== "undefined") { + window.localStorage.setItem("imgui.ini", SaveIniSettingsToMemory()); + } + } + this.io.DisplaySize.x = this.sizeX; + this.io.DisplaySize.y = this.sizeY; + this.io.DisplayFramebufferScale.x = 1; + this.io.DisplayFramebufferScale.y = 1; + this.io.DeltaTime = dt; + let localPos = this.toLocal(app.renderer.plugins.interaction.mouse.global); + if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY) { + localPos = new Point(-Number.MAX_VALUE, -Number.MAX_VALUE); + } + this.io.MousePos.x = localPos.x; + this.io.MousePos.y = localPos.y; + if (this.io.WantSetMousePos) { + console.log("TODO: MousePos", this.io.MousePos.x, this.io.MousePos.y); + } + if (typeof (document) !== "undefined") { + if (this.io.MouseDrawCursor) { + document.body.style.cursor = "none"; + } + else { + switch (GetMouseCursor()) { + case ImGuiMouseCursor.None: + document.body.style.cursor = "none"; + break; + default: + case ImGuiMouseCursor.Arrow: + document.body.style.cursor = "default"; + break; + case ImGuiMouseCursor.TextInput: + document.body.style.cursor = "text"; + break; // When hovering over InputText, etc. + case ImGuiMouseCursor.ResizeAll: + document.body.style.cursor = "move"; + break; // Unused + case ImGuiMouseCursor.ResizeNS: + document.body.style.cursor = "ns-resize"; + break; // When hovering over an horizontal border + case ImGuiMouseCursor.ResizeEW: + document.body.style.cursor = "ew-resize"; + break; // When hovering over a vertical border or a column + case ImGuiMouseCursor.ResizeNESW: + document.body.style.cursor = "nesw-resize"; + break; // When hovering over the bottom-left corner of a window + case ImGuiMouseCursor.ResizeNWSE: + document.body.style.cursor = "nwse-resize"; + break; // When hovering over the bottom-right corner of a window + case ImGuiMouseCursor.Hand: + document.body.style.cursor = "move"; + break; + } + } + } + // Gamepad navigation mapping [BETA] + for (let i = 0; i < this.io.NavInputs.length; ++i) { + this.io.NavInputs[i] = 0.0; + } + if (this.io.ConfigFlags & ImGuiConfigFlags.NavEnableGamepad) { + // Update gamepad inputs + const gamepads = (typeof (navigator) !== "undefined" && typeof (navigator.getGamepads) === "function") ? navigator.getGamepads() : []; + for (let i = 0; i < gamepads.length; ++i) { + const gamepad = gamepads[i]; + if (!gamepad) { + continue; + } + const buttons_count = gamepad.buttons.length; + const axes_count = gamepad.axes.length; + const MAP_BUTTON = function (NAV_NO, BUTTON_NO) { + if (!gamepad) { + return; + } + if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed) + this.io.NavInputs[NAV_NO] = 1.0; + }; + const MAP_ANALOG = function (NAV_NO, AXIS_NO, V0, V1) { + if (!gamepad) { + return; + } + let v = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0; + v = (v - V0) / (V1 - V0); + if (v > 1.0) + v = 1.0; + if (this.io.NavInputs[NAV_NO] < v) + this.io.NavInputs[NAV_NO] = v; + }; + // TODO: map input based on vendor and product id + // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id + const match = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/); + const match_chrome = gamepad.id.match(/^.*\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\).*$/); + const vendor = (match && match[1]) || (match_chrome && match_chrome[1]) || "0000"; + const product = (match && match[2]) || (match_chrome && match_chrome[2]) || "0000"; + switch (vendor + product) { + case "046dc216": // Logitech Logitech Dual Action (Vendor: 046d Product: c216) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 2); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 0); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "046dc21d": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d) + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_ANALOG(ImGuiNavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT + MAP_ANALOG(ImGuiNavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "2dc86001": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001) + case "2dc86101": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 0); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 4); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 6); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 7); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 8); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + default: // standard gamepad: https://w3c.github.io/gamepad/#remapping + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + } + } + } + NewFrame(); + this.update(dt); + EndFrame(); + Render(); + app.renderer.render(this.imgui, this.tex); + this.surface.interactive = this.io.WantCaptureMouse; + } +} +let canvas$1 = null; +//export let gl: WebGL2RenderingContext | null = null; +let g_ShaderHandle = null; +let g_VertHandle = null; +let g_FragHandle = null; +let g_AttribLocationTex = null; +let g_AttribLocationProjMtx = null; +let g_AttribLocationPosition = -1; +let g_AttribLocationUV = -1; +let g_AttribLocationColor = -1; +let g_VaoHandle = null; +let g_VboHandle = null; +let g_ElementsHandle = null; +let g_FontTexture = null; +function document_on_copy(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_cut(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_paste(event) { + if (event.clipboardData) { + clipboard_text = event.clipboardData.getData("text/plain"); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function window_on_gamepadconnected(event /* GamepadEvent */) { + console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.", event.gamepad.index, event.gamepad.id, event.gamepad.buttons.length, event.gamepad.axes.length); +} +function window_on_gamepaddisconnected(event /* GamepadEvent */) { + console.log("Gamepad disconnected at index %d: %s.", event.gamepad.index, event.gamepad.id); +} +function canvas_on_blur(event) { + for (var io of contextIOs) { + io.KeyCtrl = false; + io.KeyShift = false; + io.KeyAlt = false; + io.KeySuper = false; + for (let i = 0; i < io.KeysDown.length; ++i) { + io.KeysDown[i] = false; + } + for (let i = 0; i < io.MouseDown.length; ++i) { + io.MouseDown[i] = false; + } + } +} +function canvas_on_keydown(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = true; + // forward to the keypress event + if ( /*io.WantCaptureKeyboard ||*/event.key === "Tab") { + event.preventDefault(); + } + } +} +function canvas_on_keyup(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = false; + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +function canvas_on_keypress(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.AddInputCharacter(event.charCode); + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +// MouseEvent.button +// A number representing a given button: +// 0: Main button pressed, usually the left button or the un-initialized state +// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present) +// 2: Secondary button pressed, usually the right button +// 3: Fourth button, typically the Browser Back button +// 4: Fifth button, typically the Browser Forward button +const mouse_button_map = [0, 2, 1, 3, 4]; +function canvas_on_contextmenu(event) { + for (var io of contextIOs) { + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function canvas_on_wheel(event) { + for (var io of contextIOs) { + let scale = 1.0; + switch (event.deltaMode) { + case event.DOM_DELTA_PIXEL: + scale = 0.01; + break; + case event.DOM_DELTA_LINE: + scale = 0.2; + break; + case event.DOM_DELTA_PAGE: + scale = 1.0; + break; + } + io.MouseWheelH = event.deltaX * scale; + io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text. + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function PrePIXIInit() { + Renderer.registerPlugin("imgui_renderer", fromConstructor(ImGuiImplInternalRenderer)); +} +function Init(_app) { + // Setup Dear ImGui binding + IMGUI_CHECKVERSION(); + if (typeof (document) !== "undefined") { + document.body.addEventListener("copy", document_on_copy); + document.body.addEventListener("cut", document_on_cut); + document.body.addEventListener("paste", document_on_paste); + } + if (typeof (window) !== "undefined") { + window.addEventListener("gamepadconnected", window_on_gamepadconnected); + window.addEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + app = _app; + gl = app.renderer.gl; + canvas$1 = app.view; + gl.getExtension("EXT_color_buffer_float"); + if (canvas$1 !== null) { + canvas$1.style.touchAction = "none"; // Disable browser handling of all panning and zooming gestures. + canvas$1.addEventListener("blur", canvas_on_blur); + canvas$1.addEventListener("keydown", canvas_on_keydown); + canvas$1.addEventListener("keyup", canvas_on_keyup); + canvas$1.addEventListener("keypress", canvas_on_keypress); + canvas$1.addEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.addEventListener("wheel", canvas_on_wheel); + } + CreateDeviceObjects(); +} +function Shutdown() { + DestroyDeviceObjects(); + if (canvas$1 !== null) { + canvas$1.removeEventListener("blur", canvas_on_blur); + canvas$1.removeEventListener("keydown", canvas_on_keydown); + canvas$1.removeEventListener("keyup", canvas_on_keyup); + canvas$1.removeEventListener("keypress", canvas_on_keypress); + canvas$1.removeEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.removeEventListener("wheel", canvas_on_wheel); + } + app = null; + canvas$1 = null; + if (typeof (window) !== "undefined") { + window.removeEventListener("gamepadconnected", window_on_gamepadconnected); + window.removeEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + if (typeof (document) !== "undefined") { + document.body.removeEventListener("copy", document_on_copy); + document.body.removeEventListener("cut", document_on_cut); + document.body.removeEventListener("paste", document_on_paste); + } +} +function CreateFontsTexture() { + const io = GetIO(); + // Backup GL state + const last_texture = gl && gl.getParameter(gl.TEXTURE_BINDING_2D); + // Build texture atlas + // const width: number = 256; + // const height: number = 256; + // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff); + const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory. + // console.log(`font texture ${width} x ${height} @ ${pixels.length}`); + // Upload texture to graphics system + g_FontTexture = gl && gl.createTexture(); + gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2 + gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels); + // Store our identifier + io.Fonts.TexID = g_FontTexture || { foo: "bar" }; + // console.log("font texture id", g_FontTexture); + // Restore modified GL state + gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture); +} +function DestroyFontsTexture() { + const io = GetIO(); + io.Fonts.TexID = null; + gl && gl.deleteTexture(g_FontTexture); + g_FontTexture = null; +} +function CreateDeviceObjects() { + const vertex_shader = [ + "#version 300 es", + "uniform mat4 ProjMtx;", + "in vec2 Position;", + "in vec2 UV;", + "in vec4 Color;", + "out vec2 Frag_UV;", + "out vec4 Frag_Color;", + "void main() {", + " Frag_UV = UV;", + " Frag_Color = Color;", + " gl_Position = ProjMtx * vec4(Position.xy,0,1);", + "}", + ]; + const fragment_shader = [ + "#version 300 es", + "precision mediump float;", + "uniform sampler2D Texture;", + "in vec2 Frag_UV;", + "in vec4 Frag_Color;", + "out vec4 OutColor;", + "void main() {", + " OutColor = Frag_Color * texture(Texture, Frag_UV);", + "}", + ]; + g_ShaderHandle = gl && gl.createProgram(); + g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER); + g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER); + gl && gl.shaderSource(g_VertHandle, vertex_shader.join("\n")); + gl && gl.shaderSource(g_FragHandle, fragment_shader.join("\n")); + gl && gl.compileShader(g_VertHandle); + gl && gl.compileShader(g_FragHandle); + gl && gl.attachShader(g_ShaderHandle, g_VertHandle); + gl && gl.attachShader(g_ShaderHandle, g_FragHandle); + gl && gl.linkProgram(g_ShaderHandle); + g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle, "Texture"); + g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle, "ProjMtx"); + g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle, "Position") || 0; + g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle, "UV") || 0; + g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle, "Color") || 0; + g_VaoHandle = gl && gl.createVertexArray(); + g_VboHandle = gl && gl.createBuffer(); + g_ElementsHandle = gl && gl.createBuffer(); +} +function DestroyDeviceObjects() { + DestroyFontsTexture(); + gl && gl.deleteVertexArray(g_VaoHandle); + g_VaoHandle = null; + gl && gl.deleteBuffer(g_VboHandle); + g_VboHandle = null; + gl && gl.deleteBuffer(g_ElementsHandle); + g_ElementsHandle = null; + g_AttribLocationTex = null; + g_AttribLocationProjMtx = null; + g_AttribLocationPosition = -1; + g_AttribLocationUV = -1; + g_AttribLocationColor = -1; + gl && gl.deleteProgram(g_ShaderHandle); + g_ShaderHandle = null; + gl && gl.deleteShader(g_VertHandle); + g_VertHandle = null; + gl && gl.deleteShader(g_FragHandle); + g_FragHandle = null; +} + +exports.ImGuiWindow = ImGuiWindow; +exports.Init = Init; +exports.PrePIXIInit = PrePIXIInit; +exports.Shutdown = Shutdown; +//# sourceMappingURL=imgui_impl.js.map diff --git a/imgui_impl.js.map b/imgui_impl.js.map new file mode 100644 index 0000000..30848af --- /dev/null +++ b/imgui_impl.js.map @@ -0,0 +1 @@ +{"version":3,"file":"imgui_impl.js","sources":["node_modules/rollup-plugin-node-builtins/src/es6/empty.js","node_modules/rollup-plugin-node-builtins/src/es6/path.js","node_modules/imgui-js/bind-imgui.js","node_modules/imgui-js/imgui.ts","node_modules/es6-promise-polyfill/promise.js","node_modules/object-assign/index.js","node_modules/@pixi/polyfill/lib/polyfill.es.js","node_modules/ismobilejs/src/isMobile.js","node_modules/@pixi/settings/lib/settings.es.js","node_modules/eventemitter3/index.js","node_modules/earcut/src/earcut.js","node_modules/rollup-plugin-node-builtins/src/es6/punycode.js","node_modules/rollup-plugin-node-builtins/src/es6/util.js","node_modules/rollup-plugin-node-builtins/src/es6/qs.js","node_modules/rollup-plugin-node-builtins/src/es6/url.js","node_modules/@pixi/constants/lib/constants.es.js","node_modules/@pixi/utils/lib/utils.es.js","node_modules/@pixi/math/lib/math.es.js","node_modules/@pixi/display/lib/display.es.js","node_modules/@pixi/accessibility/lib/accessibility.es.js","node_modules/@pixi/runner/lib/runner.es.js","node_modules/@pixi/ticker/lib/ticker.es.js","node_modules/@pixi/core/lib/core.es.js","node_modules/@pixi/extract/lib/extract.es.js","node_modules/@pixi/interaction/lib/interaction.es.js","node_modules/@pixi/graphics/lib/graphics.es.js","node_modules/@pixi/sprite/lib/sprite.es.js","node_modules/@pixi/text/lib/text.es.js","node_modules/@pixi/prepare/lib/prepare.es.js","node_modules/@pixi/app/lib/app.es.js","node_modules/parse-uri/index.js","node_modules/mini-signals/lib/mini-signals.js","node_modules/resource-loader/dist/resource-loader.esm.js","node_modules/@pixi/loaders/lib/loaders.es.js","node_modules/@pixi/particles/lib/particles.es.js","node_modules/@pixi/spritesheet/lib/spritesheet.es.js","node_modules/@pixi/sprite-tiling/lib/sprite-tiling.es.js","node_modules/@pixi/text-bitmap/lib/text-bitmap.es.js","node_modules/@pixi/filter-color-matrix/lib/filter-color-matrix.es.js","node_modules/@pixi/mixin-cache-as-bitmap/lib/mixin-cache-as-bitmap.es.js","node_modules/@pixi/mixin-get-child-by-name/lib/mixin-get-child-by-name.es.js","node_modules/@pixi/mixin-get-global-position/lib/mixin-get-global-position.es.js","node_modules/@pixi/mesh/lib/mesh.es.js","node_modules/pixi.js/lib/pixi.es.js","utils.ts","imgui_impl.ts"],"sourcesContent":["export default {};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// resolves . and .. elements in a path array with directory names there\n// must be no slashes, empty elements, or device names (c:\\) in the array\n// (so also no leading and trailing slashes - it does not distinguish\n// relative and absolute paths)\nfunction normalizeArray(parts, allowAboveRoot) {\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = parts.length - 1; i >= 0; i--) {\n var last = parts[i];\n if (last === '.') {\n parts.splice(i, 1);\n } else if (last === '..') {\n parts.splice(i, 1);\n up++;\n } else if (up) {\n parts.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (allowAboveRoot) {\n for (; up--; up) {\n parts.unshift('..');\n }\n }\n\n return parts;\n}\n\n// Split a filename into [root, dir, basename, ext], unix version\n// 'root' is just a slash, or nothing.\nvar splitPathRe =\n /^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;\nvar splitPath = function(filename) {\n return splitPathRe.exec(filename).slice(1);\n};\n\n// path.resolve([from ...], to)\n// posix version\nexport function resolve() {\n var resolvedPath = '',\n resolvedAbsolute = false;\n\n for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {\n var path = (i >= 0) ? arguments[i] : '/';\n\n // Skip empty and invalid entries\n if (typeof path !== 'string') {\n throw new TypeError('Arguments to path.resolve must be strings');\n } else if (!path) {\n continue;\n }\n\n resolvedPath = path + '/' + resolvedPath;\n resolvedAbsolute = path.charAt(0) === '/';\n }\n\n // At this point the path should be resolved to a full absolute path, but\n // handle relative paths to be safe (might happen when process.cwd() fails)\n\n // Normalize the path\n resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {\n return !!p;\n }), !resolvedAbsolute).join('/');\n\n return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';\n};\n\n// path.normalize(path)\n// posix version\nexport function normalize(path) {\n var isPathAbsolute = isAbsolute(path),\n trailingSlash = substr(path, -1) === '/';\n\n // Normalize the path\n path = normalizeArray(filter(path.split('/'), function(p) {\n return !!p;\n }), !isPathAbsolute).join('/');\n\n if (!path && !isPathAbsolute) {\n path = '.';\n }\n if (path && trailingSlash) {\n path += '/';\n }\n\n return (isPathAbsolute ? '/' : '') + path;\n};\n\n// posix version\nexport function isAbsolute(path) {\n return path.charAt(0) === '/';\n}\n\n// posix version\nexport function join() {\n var paths = Array.prototype.slice.call(arguments, 0);\n return normalize(filter(paths, function(p, index) {\n if (typeof p !== 'string') {\n throw new TypeError('Arguments to path.join must be strings');\n }\n return p;\n }).join('/'));\n}\n\n\n// path.relative(from, to)\n// posix version\nexport function relative(from, to) {\n from = resolve(from).substr(1);\n to = resolve(to).substr(1);\n\n function trim(arr) {\n var start = 0;\n for (; start < arr.length; start++) {\n if (arr[start] !== '') break;\n }\n\n var end = arr.length - 1;\n for (; end >= 0; end--) {\n if (arr[end] !== '') break;\n }\n\n if (start > end) return [];\n return arr.slice(start, end - start + 1);\n }\n\n var fromParts = trim(from.split('/'));\n var toParts = trim(to.split('/'));\n\n var length = Math.min(fromParts.length, toParts.length);\n var samePartsLength = length;\n for (var i = 0; i < length; i++) {\n if (fromParts[i] !== toParts[i]) {\n samePartsLength = i;\n break;\n }\n }\n\n var outputParts = [];\n for (var i = samePartsLength; i < fromParts.length; i++) {\n outputParts.push('..');\n }\n\n outputParts = outputParts.concat(toParts.slice(samePartsLength));\n\n return outputParts.join('/');\n}\n\nexport var sep = '/';\nexport var delimiter = ':';\n\nexport function dirname(path) {\n var result = splitPath(path),\n root = result[0],\n dir = result[1];\n\n if (!root && !dir) {\n // No dirname whatsoever\n return '.';\n }\n\n if (dir) {\n // It has a dirname, strip trailing slash\n dir = dir.substr(0, dir.length - 1);\n }\n\n return root + dir;\n}\n\nexport function basename(path, ext) {\n var f = splitPath(path)[2];\n // TODO: make this comparison case-insensitive on windows?\n if (ext && f.substr(-1 * ext.length) === ext) {\n f = f.substr(0, f.length - ext.length);\n }\n return f;\n}\n\n\nexport function extname(path) {\n return splitPath(path)[3];\n}\nexport default {\n extname: extname,\n basename: basename,\n dirname: dirname,\n sep: sep,\n delimiter: delimiter,\n relative: relative,\n join: join,\n isAbsolute: isAbsolute,\n normalize: normalize,\n resolve: resolve\n};\nfunction filter (xs, f) {\n if (xs.filter) return xs.filter(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n if (f(xs[i], i, xs)) res.push(xs[i]);\n }\n return res;\n}\n\n// String.prototype.substr - negative index don't work in IE8\nvar substr = 'ab'.substr(-1) === 'b' ?\n function (str, start, len) { return str.substr(start, len) } :\n function (str, start, len) {\n if (start < 0) start = str.length + start;\n return str.substr(start, len);\n }\n;\n","\nvar Module = (function() {\n var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;\n return (\nfunction(Module) {\n Module = Module || {};\n\nvar Module=typeof Module!==\"undefined\"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key]}}Module[\"arguments\"]=[];Module[\"thisProgram\"]=\"./this.program\";Module[\"quit\"]=function(status,toThrow){throw toThrow};Module[\"preRun\"]=[];Module[\"postRun\"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window===\"object\";ENVIRONMENT_IS_WORKER=typeof importScripts===\"function\";ENVIRONMENT_HAS_NODE=typeof process===\"object\"&&typeof require===\"function\";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory=\"\";function locateFile(path){if(Module[\"locateFile\"]){return Module[\"locateFile\"](path,scriptDirectory)}else{return scriptDirectory+path}}if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+\"/\";var nodeFS;var nodePath;Module[\"read\"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require(\"fs\");if(!nodePath)nodePath=require(\"path\");filename=nodePath[\"normalize\"](filename);ret=nodeFS[\"readFileSync\"](filename)}return binary?ret:ret.toString()};Module[\"readBinary\"]=function readBinary(filename){var ret=Module[\"read\"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}assert(ret.buffer);return ret};if(process[\"argv\"].length>1){Module[\"thisProgram\"]=process[\"argv\"][1].replace(/\\\\/g,\"/\")}Module[\"arguments\"]=process[\"argv\"].slice(2);process[\"on\"](\"uncaughtException\",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process[\"on\"](\"unhandledRejection\",abort);Module[\"quit\"]=function(status){process[\"exit\"](status)};Module[\"inspect\"]=function(){return\"[Emscripten Module object]\"}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!=\"undefined\"){Module[\"read\"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)}}Module[\"readBinary\"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer===\"function\"){return new Uint8Array(readbuffer(f))}data=read(f,\"binary\");assert(typeof data===\"object\");return data};if(typeof scriptArgs!=\"undefined\"){Module[\"arguments\"]=scriptArgs}else if(typeof arguments!=\"undefined\"){Module[\"arguments\"]=arguments}if(typeof quit===\"function\"){Module[\"quit\"]=function(status){quit(status)}}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf(\"blob:\")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf(\"/\")+1)}else{scriptDirectory=\"\"}Module[\"read\"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module[\"readBinary\"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.responseType=\"arraybuffer\";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}}}Module[\"readAsync\"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,true);xhr.responseType=\"arraybuffer\";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror()};xhr.onerror=onerror;xhr.send(null)};Module[\"setWindowTitle\"]=function(title){document.title=title}}else{}var out=Module[\"print\"]||(typeof console!==\"undefined\"?console.log.bind(console):typeof print!==\"undefined\"?print:null);var err=Module[\"printErr\"]||(typeof printErr!==\"undefined\"?printErr:typeof console!==\"undefined\"&&console.warn.bind(console)||out);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key]}}moduleOverrides=undefined;var asm2wasmImports={\"f64-rem\":function(x,y){return x%y},\"debugger\":function(){debugger}};var functionPointers=new Array(0);var tempRet0=0;var setTempRet0=function(value){tempRet0=value};if(typeof WebAssembly!==\"object\"){err(\"no native wasm support detected\")}var wasmMemory;var wasmTable;var ABORT=false;var EXITSTATUS=0;function assert(condition,text){if(!condition){abort(\"Assertion failed: \"+text)}}var UTF8Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf8\"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str=\"\";while(idx>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):\"\"}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4}return len}var UTF16Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf-16le\"):undefined;var WASM_PAGE_SIZE=65536;var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferViews(){Module[\"HEAP8\"]=HEAP8=new Int8Array(buffer);Module[\"HEAP16\"]=HEAP16=new Int16Array(buffer);Module[\"HEAP32\"]=HEAP32=new Int32Array(buffer);Module[\"HEAPU8\"]=HEAPU8=new Uint8Array(buffer);Module[\"HEAPU16\"]=HEAPU16=new Uint16Array(buffer);Module[\"HEAPU32\"]=HEAPU32=new Uint32Array(buffer);Module[\"HEAPF32\"]=HEAPF32=new Float32Array(buffer);Module[\"HEAPF64\"]=HEAPF64=new Float64Array(buffer)}var DYNAMIC_BASE=5315584,DYNAMICTOP_PTR=72672;var TOTAL_STACK=5242880;var INITIAL_TOTAL_MEMORY=Module[\"TOTAL_MEMORY\"]||16777216;if(INITIAL_TOTAL_MEMORY>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback==\"function\"){callback();continue}var func=callback.func;if(typeof func===\"number\"){if(callback.arg===undefined){Module[\"dynCall_v\"](func)}else{Module[\"dynCall_vi\"](func,callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;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 ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__)}function preMain(){callRuntimeCallbacks(__ATMAIN__)}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 addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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()}}}Module[\"preloadedImages\"]={};Module[\"preloadedAudios\"]={};var dataURIPrefix=\"data:application/octet-stream;base64,\";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile=\"data:application/octet-stream;base64,AGFzbQEAAAAB2AyxAWACf38Bf2ACf38AYAJ8fAF8YAF/AX9gAX8AYAN/f38Bf2AEf39/fwBgA39/fwBgAn9/AX1gBH9/f38Bf2AEf399fwBgAn99AX9gA399fQF/YAZ9fX1/f38AYAR/fX9/AGAFf39/fX8AYAABfGADf31/AGAFf39/f38Bf2AIf39/f39/f38Bf2AHf39/f39/fwF/YAZ/f39/f38Bf2AGf398fH9/AX9gCX9/f39/f39/fwF/YAN9f38AYAl/f39/f39/f38AYAZ/f39/f38AYAJ/fQBgAX8BfWAAAX9gAn19AGABfQBgAAF9YAAAYAN/f30Bf2AGf39/fX9/AGAIf399fX1/f38AYAR/fX99AX9gBn9/fX9/fwBgBX9/f399AGAHf39/f31/fQBgBn9/f399fwBgB39/f39/f38AYAd/f39/f399AGAGf39/f399AGAFf39/f38AYAZ/f31/f30AYAV/f31/fwBgCH9/fX9/f31/AGALf39/f39/f39/f38AYAl/f39/f39/fX8AYAh/f39/f399fwBgBH9/f30AYAZ/f319fX8AYAp/f39/f39/f39/AGADf399AGAGf3x/f39/AX9gA39+fwF+YAF/AXxgA39/fwF9YAR/f319AX9gCH9/fX19f39/AX9gBH9/fX8Bf2AFf399f30Bf2AHf39/fHx/fwF/YAR/f399AX9gBX9/f31/AX9gBn9/f31/fwF/YAp/f39/f39/f39/AX9gA399fQBgB399fX1/f38AYAd/f399fX1/AGAHf39/fX9/fQBgB39/f31/f38AYAl/f399f39/fX8AYAd/f39/f31/AGAIf39/f399f30AYAh/f39/f39/fQBgCH9/f39/f39/AGAKf39/f39/f399fwBgDH9/f39/f39/f39/fwBgDX9/f39/f39/f39/f38AYAN/f3wAYAN/f38BfGABfQF9YAJ9fQF9YAV/fX19fQBgBH9/fX0AYAJ/fQF9YAR9fX19AX9gBX9/f319AGADfX19AX1gAn19AX9gBH19fX0BfWALf319fX19fX19fX8AYAl/f31/f39/fX8AYAp/f31/f39/f31/AGAFf31/f30Bf2AIf399fX9/f38AYAt/f319fX19fX19fQBgCH9/f39/fX1/AGAHf39/fX1/fwBgBX9/fX9/AX9gCH9/f399fX9/AGAHf39/fX19fQBgCn9/fX19fX19fX8AYAx/f319fX19fX19fX8AYAd/fX19fX19AGAEf31/fwF/YAh/f399f39/fQF/YAV/fX9/fwF/YAV/fX5+fwF/YAZ/fX19f30Bf2AGf318fH99AX9gAn98AXxgAn9+AX5gCX9/f399f39/fQF/YAd/f319fX99AX9gCX9/f319fX9/fQF/YAZ/f31/f38Bf2AIf39/fX9/f38Bf2AKf39/f39/f31/fwF/YAl/f39/f399f38Bf2AJf39/fn5/fX9/AX9gCX9/f319f31/fwF/YAl/f398fH99f38Bf2AFfHx8fX0BfWADfHx9AXxgA3x8fAF8YAV9fX19fQF9YAN+fn4BfWADfn5+AX5gBX5+fn19AX1gBX9/f319AX1gB39/f39/f30Bf2AIf39/f39/f30Bf2AGf399fX99AX9gB39/f319f30Bf2AGf399fX9/AX9gB39/f31/fX8AYAl/f39/f399fX8AYAd/f39/fX1/AGAEf319fQF9YAZ/f39/f30Bf2AHf399f39/fQF/YAJ/fgBgAn9/AX5gA35/fwF/YAJ+fwF/YAJ8fwF8YAV/f39/fwF8YAZ/f39/f38BfGACfX8BfWABfAF9YAJ9fwF/YAN/f34AYAF/AX5gAn9/AXxgBH9/f38BfWAHf398f39/fwF/YAV/f399fQF/YAl/f399fX1/f38Bf2AGf39/fX99AX9gCH9/f398fH9/AX9gBX9/f399AX9gBn9/f399fwF/YAd/f39/fX9/AX9gC39/f39/f39/f39/AX9gCX9/f319fX9/fwBgCH9/f399fX1/AGAHf39/f31/fwBgCH9/f399f399AGAIf39/f31/f38AYAp/f39/fX9/f31/AGAJf39/f39/fX99AGAJf39/f39/f399AGALf39/f39/f39/fX8AAvQDNwNlbnYBYgA2A2VudgFjAE4DZW52AWQAGgNlbnYBZQAEA2VudgFmAAADZW52AWcAUQNlbnYBaABTA2VudgFpAAcDZW52AWoAAANlbnYBawAtA2VudgFsACEDZW52AW0ABwNlbnYBbgAAA2VudgFvAAYDZW52AXAAAANlbnYBcQAaA2VudgFyAAQDZW52AXMABANlbnYBdAAEA2VudgF1AAAI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/AYLC0H89gEoAgAhASAAQZypBCgCACABQf8BcUHyBmoRAQALWgEDfyMEIQIjBEEQaiQEIAJBmKkEKAIAIgNBsCtqIABBBHRqIgApAgA3AgAgAiAAKQIINwIIIAIgAioCDCADQZAqaioCACABlJQ4AgwgAhChAyEEIAIkBCAECxYAIAAgASkCADcCACAAIAIpAgA3AggLBgBBNBADCwwAIAAgASAAIAFdGwvGAwEDfyACQYDAAE4EQCAAIAEgAhAjGiAADwsgACEEIAAgAmohAyAAQQNxIAFBA3FGBEADQCAAQQNxBEAgAkUEQCAEDwsgACABLAAAOgAAIABBAWohACABQQFqIQEgAkEBayECDAELCyADQXxxIgJBQGohBQNAIAAgBUwEQCAAIAEoAgA2AgAgACABKAIENgIEIAAgASgCCDYCCCAAIAEoAgw2AgwgACABKAIQNgIQIAAgASgCFDYCFCAAIAEoAhg2AhggACABKAIcNgIcIAAgASgCIDYCICAAIAEoAiQ2AiQgACABKAIoNgIoIAAgASgCLDYCLCAAIAEoAjA2AjAgACABKAI0NgI0IAAgASgCODYCOCAAIAEoAjw2AjwgAEFAayEAIAFBQGshAQwBCwsDQCAAIAJIBEAgACABKAIANgIAIABBBGohACABQQRqIQEMAQsLBSADQQRrIQIDQCAAIAJIBEAgACABLAAAOgAAIAAgASwAAToAASAAIAEsAAI6AAIgACABLAADOgADIABBBGohACABQQRqIQEMAQsLCwNAIAAgA0gEQCAAIAEsAAA6AAAgAEEBaiEAIAFBAWohAQwBCwsgBAsSACAAQbT4ATYCACAAQQRqED4LKgAgACgCEBBbBEBBACEABSAAQQRqIgAsAAtBAEgEQCAAKAIAIQALCyAACxIAIAAgARDpECAAQcD4ATYCAAsQACAALQABIAAtAABBCHRyCyoBAX8jBCEBIwRBEGokBCABIAA2AgBBBBA/IgAgASgCADYCACABJAQgAAslAQF/IAEoAgAhAiAAQgA3AgAgAEEANgIIIAAgAUEEaiACEJMBCwgAQQwQA0EACwcAIABBBGoLJwEBfyAAKAIIIgEEQCAAQQA2AgQgAEEANgIAIAEQQSAAQQA2AggLCw0AIAAoAgggAUECdGoLFgAgACABKgIAIAKUIAEqAgQgApQQMgsp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QCADIAMoApACQQFyNgKQAgtBAQsLBgAgAKiyCw0AIABB1ABqIAEQmgILFAAgASACIAAgACACXhsgACABXRsLEQBBACAAQQRqIAAoAggQWxsLIQAgAEP//39/Q///f38QMiAAQQhqQ///f/9D//9//xAyCxAAIAAoAggiAARAIAAQQQsLFwAgAEEANgIEIABBADYCACAAQQA2AggLIQEBfyMEIQIjBEEQaiQEIAIgATYCACAAIAIQ2gIgAiQEC5gCAQR/IAAgAmohBCABQf8BcSEDIAJBwwBOBEADQCAAQQNxBEAgACADOgAAIABBAWohAAwBCwsgA0EIdCADciADQRB0ciADQRh0ciEBIARBfHEiBUFAaiEGA0AgACAGTARAIAAgATYCACAAIAE2AgQgACABNgIIIAAgATYCDCAAIAE2AhAgACABNgIUIAAgATYCGCAAIAE2AhwgACABNgIgIAAgATYCJCAAIAE2AiggACABNgIsIAAgATYCMCAAIAE2AjQgACABNgI4IAAgATYCPCAAQUBrIQAMAQsLA0AgACAFSARAIAAgATYCACAAQQRqIQAMAQsLCwNAIAAgBEgEQCAAIAM6AAAgAEEBaiEADAELCyAEIAJrC58BAQN/EDwiAiwAf0UEQEGYqQQoAgAhBCABQwAAAABdIQMgAEMAAAAAXARAIAIqArQDQwAAAAAgASADGyACKgIMIAIqAliTIACSkpIhACACKgK4AyEBBSADBEAgBEHUKmoqAgAhAQsgAioC0AEhAAsgAiABIACSOALIASACIAIoAtQBNgLMASACIAIpAvQBNwLoASACIAIoAvwBNgLwAQsLqwECA38BfSMEIQUjBEEQaiQEQZipBCgCACEGIAMEQCABIAIQkAEhAgsgBSEDIAZBsDFqKAIAIQcgBkG0MWoqAgAhCCABIAJGBEAgAEMAAAAAIAgQMgUgAyAHIAhD//9/fyAEIAEgAkEAEJoDIAMqAgAiBEMAAAAAXgRAIAMgBCAIIAcqAgCVkyIEOAIACyADIARDMzNzP5KosjgCACAAIAMpAwA3AgALIAUkBAsnAEGYqQQoAgBBNGogAEECdGooAgAiAEF/SgR/IAAgARD2AgVBAAsLNQECfyMEIQMjBEEQaiQEAn8gACgCACEEIAMgARB3IAQLIAMoAgAgAigCABALIAMQMSADJAQL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KAIIRgRAIAEQ4QELIAEgACABKAIAEPIFIgI2AgAgASACNgIIIAAgARCCAQwFCyABEOEBIAFBADYCCCABQQA2AgAgAUEAOgAPDAQLIAEQ4QEgASAAKAIsIgI2AgggASACNgIAIAFBADoADwwDCyAAKAIsIQQgACABEIIBIAEQ4QEgASwAEARAIAEgBDYCACAEIQIFIAEoAgAiAiAESARAA0ACQAJ/IAAgAhDiAUH//wNxQQpGIQwgASgCACECIAwLDQAgASACQQFqIgI2AgAgAiAESA0BCwsLCyABIAI2AgggAUEAOgAPDAILQQMhAwwBCyAFQYCADEgEQCAFQY2ABGsEQEEDIQMMAgsgASgCBCABKAIIRgRAIAEgACABKAIAEPIFNgIAIAAgARCCAQUgACABELgECwwBCwJAAkACQCAFQYCADGsOAgIAAQsgARDhASABIAEoAghBAWo2AgggACABEIIBIAEgASgCCDYCACABQQA6AA8MAgtBAyEDDAELIAAgARCCASABEOEBIAEoAggiAkEASgRAIAEgAkF/aiICNgIICyABIAI2AgAgAUEAOgAPCyADQQNGBEBBACAFIAVB//8DShsiAkEASgRAAkAgBiACOwEAIAJBCkYEQCABLAAQDQELAkACQCABLAAMRQ0AIAEoAgQgASgCCEcNACABKAIAIgIgACgCLE4NACAAIQUgAUEYaiACQQFBARC5BCIEBEAgBCAFIAIQ4gE7AQALIAAgASgCAEEBENkDIAAgASgCACAGQQEQkgMEQCABIAEoAgBBAWo2AgAgAUEAOgAPCwwBCyAAIAEQkwMgACABKAIAIAZBARCSAwRAIAEgASgCAEEBEPcFIAEgASgCAEEBajYCACABQQA6AA8LCwsLBSADQckARgRAIAEoAgQgASgCCEYEQCABKAIAIgIgACgCLEgEQCAAIAEgAkEBENoDCwUgACABEJMDCyABQQA6AA8FIANBzgBGBEAgASgCBCABKAIIRgRAIAAgARCCASABKAIAIgJBAEoEQCAAIAEgAkF/akEBENoDIAEgASgCAEF/ajYCAAsFIAAgARCTAwsgAUEAOgAPCwsLIAkkBAtIAQF/IAFBGGogAiADQQAQuQQiBEEARyADQQBKcQRAQQAhAQNAIAFBAXQgBGogACABIAJqEOIBOwEAIAFBAWoiASADRw0ACwsLkwEBAn8gAEGAHGpB4wA7AQAgAEGIHGpB5wc2AgAgAEH+G2oiAi4BAEHjAEYEQCAAEPYFCyABQecHSgR/IAJBADsBACAAQYQcakEANgIAQQAFIAEgAEGEHGoiAygCAGpB5wdKBEADQCAAEPYFIAEgAygCAGpB5wdKDQALCyACIAIuAQAiAUEBajsBACABQQR0IABqCwtcACAAIAEQggEgACABEJMDIAAgASgCACACIAMQkgMEQCABIAEoAgAgAxD3BSABIAMgASgCAGo2AgAgAUEAOgAPBSABQZYcaiIALgEAIgEEQCAAIAFBf2o7AQALCwtNAQJ/QQEhAwNAAkAgACECA0ACQCACQQFqIQACQCACLAAADgsDAAAAAAAAAAAAAQALIAAhAgwBCwsgA0EBaiEDDAELCyABIAI2AgAgAwteAQJ/IwQhBCMEQSBqJAQgBCEFIAEsABAEQCAFIABBABD2ASAFKgIMIQMLIAEoAgQgASgCCEYEQCABIAEoAgA2AgQLIAEgACACIAMQ9QUiADYCCCABIAA2AgAgBCQEC1QBAn8jBCEEIwRBIGokBCAEIQUgASwAEARAIAUgAEEAEPYBIAUqAgwhAwsgASAAIAIgAxD1BSIANgIAIAEgADYCBCABIAA2AgggAUEAOgAPIAQkBAs9AQF/IAAQ2AIiAiwAAEElRgR/IAIQ5QgiACwAAAR/IAEgAiAAQQFqIAJrQSAQuAEQ9gQgAQUgAgsFIAALC4ABAgJ/AX4gAEEBaiAAIAAsAABBLUYiAxsiAEEBaiAAIAAsAABBK0YbIgAsAAAiAkFQakEYdEEYdUH/AXFBCkgEQANAIAJBUGqsIARCCn58IQQgAEEBaiIALAAAIgJBUGpBGHRBGHVB/wFxQQpIDQALCyABQgAgBH0gBCADGzcDAAvNBgMKfwF9BHwjBCELIwRBEGokBEGYqQQoAgAhBiACIANiIglBAXMiDCABQwAAAABcciADIAKhIhFEAAAA4P//70djIg1BAXNyRQRAIBEgBkH01wBqKgIAu6K2IQELIAshCAJAAkAgBkHgM2oiCigCACIHQQFHDQACQEEAEJUBBEAgBkHECGoqAgBDAACAP14EQCAGQYAHakEAEFYiECAQQwrXIzyUIAYsAIoCRRsiECAQQwAAIEGUIAYsAIkCRRshEAwCCwsgCigCACEHDAELDAELIAdBAkYEQCAEEOMDIQcgCEEDQQVDzczMPUMAACBBEJIBIAhBABBWIRAgASAHENkCEDkhAQsLIBAgAZQhAQJ/IAZBxDNqLAAAIQ4gCQR/IAFDAAAAAF0gACsDACISIAJlcSABQwAAAABeIBIgA2ZxcgVBAAshCiAOC0EARyEIAn8CQCANIAVDAACAP1wgCXFxIgkEfyABQwAAAABdBEAgBkHw1wBqIgcqAgBDAAAAAF4NAgsgAUMAAAAAXgR/IAZB8NcAaioCAEMAAAAAXQVBAAsFQQALIAggCnJyBEAgBkHw1wBqIQcMAQsgAUMAAAAAXARAIAZB8NcAaiIIIAEgCCoCAJI4AgAgBkHs1wBqIgdBAToAAAVBACAGQezXAGoiBywAAEUNAhoLIAArAwAhEiAJBEAgBCARIBIgAqEgEaNEAAAAAAAA8D8gBbujIhMQ4gMiFCAGQfDXAGoiBCoCALsgEaOgthBaIAUQgwG7oiACoBDBBCESIAdBADoAACASIAKhIBGjIBMQ4gMgFKG2IQUgBCAEKgIAIAWTOAIAIAArAwAhEwUgBCASIAZB8NcAaiIEKgIAu6AQwQQhEiAHQQA6AAAgBCAEKgIAIBIgACsDACITobaTOAIACyATRAAAAAAAAAAAIBIgEkQAAAAAAAAAAGEbIhFhIAxyRQRAIAIgESARIBNkRSABQwAAAABdRXJBAXJFIBEgAmNyGyICIANkBHwgAwUgAiADIAIgE2NFIAFDAAAAAF5FckEBchsLIRELIBMgEWEEf0EABSAAIBE5AwBBAQsMAQsgB0MAAAAAOAIAIAZB7NcAakEAOgAAQQALIQ8gCyQEIA8LpwYCCn8EfSMEIQsjBEEQaiQEQZipBCgCACEGIAIgA1wiCUEBcyIMIAFDAAAAAFxyIAMgApMiEUP//39/XSINQQFzckUEQCARIAZB9NcAaioCAJQhAQsgCyEIAkACQCAGQeAzaiIKKAIAIgdBAUcNAAJAQQAQlQEEQCAGQcQIaioCAEMAAIA/XgRAIAZBgAdqQQAQViIQIBBDCtcjPJQgBiwAigJFGyIQIBBDAAAgQZQgBiwAiQJFGyEQDAILCyAKKAIAIQcMAQsMAQsgB0ECRgRAIAQQ4wMhByAIQQNBBUPNzMw9QwAAIEEQkgEgCEEAEFYhECABIAcQ2QIQOSEBCwsgECABlCEQAn8gBkHEM2osAAAhDiAJBH8gEEMAAAAAXSAAKgIAIgEgAl9xIBBDAAAAAF4gASADYHFyBUEACyEKIA4LQQBHIQgCfwJAIA0gBUMAAIA/XCAJcXEiCQR/IBBDAAAAAF0EQCAGQfDXAGoiByoCAEMAAAAAXg0CCyAQQwAAAABeBH8gBkHw1wBqKgIAQwAAAABdBUEACwVBAAsgCCAKcnIEQCAGQfDXAGohBwwBCyAQQwAAAABcBEAgBkHw1wBqIgggECAIKgIAkjgCACAGQezXAGoiB0EBOgAABUEAIAZB7NcAaiIHLAAARQ0CGgsgACoCACEBIAkEfSAEIBEgASACkyARlUMAAIA/IAWVIhIQgwEiEyAGQfDXAGoiBCoCACARlZIQWiAFEIMBlCACkhDABCEBIAdBADoAACABIAKTIBGVIBIQgwEgE5MFIAQgASAGQfDXAGoiBCoCAJIQwAQhASAHQQA6AAAgASAAKgIAkwshBSAEIAQqAgAgBZM4AgAgACoCACIFQwAAAAAgASABQwAAAABbGyIBWyAMcgRAIAEhAgUCQCACIAEgASAFXkUgEEMAAAAAXUVyQQFyRSABIAJdchsiAiADXkUEQCACIAVdRSAQQwAAAABeRXJBAXINAQsgAyECCwsgBSACWwR/QQAFIAAgAjgCAEEBCwwBCyAHQwAAAAA4AgAgBkHs1wBqQQA6AABBAAshDyALJAQgDwu3BAMIfwJ+AX0jBCEIIwRBEGokBEGYqQQoAgAhBSACIANSIglBAXMiCiABQwAAAABcckUEQCAFQfTXAGoqAgAgAyACfbWUIQELIAghBgJAAkAgBUHgM2oiCygCACIHQQFHDQACQEEAEJUBBEAgBUHECGoqAgBDAACAP14EQCAFQYAHakEAEFYiDyAPQwrXIzyUIAUsAIoCRRsiDyAPQwAAIEGUIAUsAIkCRRshDwwCCwsgCygCACEHDAELDAELIAdBAkYEQCAGQQNBBUPNzMw9QwAAIEEQkgEgBkEAEFYhDyABQQAQ2QIQOSEBCwsgDyABlCEBIAVBxDNqLAAAQQBHIQYCfwJAIAkEfyAAKQMAIg0gAlggAUMAAAAAXXEgDSADWiABQwAAAABecXIFQQALIAZyBEAgBUHw1wBqIQAMAQsgAUMAAAAAXARAIAVB8NcAaiIGIAEgBioCAJI4AgAgBUHs1wBqIgdBAToAAAVBACAFQezXAGoiBywAAEUNAhoLIAQgACkDACAFQfDXAGoiBCoCAK98EOEDIQ0gB0EAOgAAIAQgBCoCACANIAApAwAiDn20kzgCACANIA5RIApyRQRAIAIgDSABQwAAAABdRSANIA5YckUgDSACVHIbIgIgA1gEfiACIAMgAUMAAAAAXkUgAiAOWnIbBSADCyENCyANIA5RBH9BAAUgACANNwMAQQELDAELIABDAAAAADgCACAFQezXAGpBADoAAEEACyEMIAgkBCAMC7cEAwh/An4BfSMEIQgjBEEQaiQEQZipBCgCACEFIAIgA1IiCUEBcyIKIAFDAAAAAFxyRQRAIAVB9NcAaioCACADIAJ9tJQhAQsgCCEGAkACQCAFQeAzaiILKAIAIgdBAUcNAAJAQQAQlQEEQCAFQcQIaioCAEMAAIA/XgRAIAVBgAdqQQAQViIPIA9DCtcjPJQgBSwAigJFGyIPIA9DAAAgQZQgBSwAiQJFGyEPDAILCyALKAIAIQcMAQsMAQsgB0ECRgRAIAZBA0EFQ83MzD1DAAAgQRCSASAGQQAQViEPIAFBABDZAhA5IQELCyAPIAGUIQEgBUHEM2osAABBAEchBgJ/AkAgCQR/IAApAwAiDSACVyABQwAAAABdcSANIANZIAFDAAAAAF5xcgVBAAsgBnIEQCAFQfDXAGohAAwBCyABQwAAAABcBEAgBUHw1wBqIgYgASAGKgIAkjgCACAFQezXAGoiB0EBOgAABUEAIAVB7NcAaiIHLAAARQ0CGgsgBCAAKQMAIAVB8NcAaiIEKgIArnwQ4QMhDSAHQQA6AAAgBCAEKgIAIA0gACkDACIOfbSTOAIAIA0gDlEgCnJFBEAgAiANIAFDAAAAAF1FIA0gDldyRSANIAJTchsiAiADVwR+IAIgAyABQwAAAABeRSACIA5ZchsFIAMLIQ0LIA0gDlEEf0EABSAAIA03AwBBAQsMAQsgAEMAAAAAOAIAIAVB7NcAakEAOgAAQQALIQwgCCQEIAwLtAQCCH8BfSMEIQgjBEEQaiQEQZipBCgCACEGIAIgA0ciCUEBcyIKIAFDAAAAAFxyRQRAIAZB9NcAaioCACADIAJrs5QhAQsgCCEFAkACQCAGQeAzaiILKAIAIgdBAUcNAAJAQQAQlQEEQCAGQcQIaioCAEMAAIA/XgRAIAZBgAdqQQAQViINIA1DCtcjPJQgBiwAigJFGyINIA1DAAAgQZQgBiwAiQJFGyENDAILCyALKAIAIQcMAQsMAQsgB0ECRgRAIAVBA0EFQ83MzD1DAAAgQRCSASAFQQAQViENIAFBABDZAhA5IQELCyANIAGUIQEgBkHEM2osAABBAEchBQJ/AkAgCQR/IAAoAgAiByACTSABQwAAAABdcSAHIANPIAFDAAAAAF5xcgVBAAsgBXIEQCAGQfDXAGohAAwBCyABQwAAAABcBEAgBkHw1wBqIgUgASAFKgIAkjgCACAGQezXAGoiB0EBOgAABUEAIAZB7NcAaiIHLAAARQ0CGgsgBCAAKAIAIAZB8NcAaiIFKgIAqWoQ4AMhBCAHQQA6AAAgBSAFKgIAIAQgACgCACIFa7KTOAIAIAQgBUYgCnJFBEACQCACIAQgAUMAAAAAXUUgBCAFTXJFIAQgAklyGyIEIANNBEAgAUMAAAAAXkUgBCAFT3INAQsgAyEECwsgBCAFRgR/QQAFIAAgBDYCAEEBCwwBCyAAQwAAAAA4AgAgBkHs1wBqQQA6AABBAAshDCAIJAQgDAu0BAIIfwF9IwQhCCMEQRBqJARBmKkEKAIAIQYgAiADRyIJQQFzIgogAUMAAAAAXHJFBEAgBkH01wBqKgIAIAMgAmuylCEBCyAIIQUCQAJAIAZB4DNqIgsoAgAiB0EBRw0AAkBBABCVAQRAIAZBxAhqKgIAQwAAgD9eBEAgBkGAB2pBABBWIg0gDUMK1yM8lCAGLACKAkUbIg0gDUMAACBBlCAGLACJAkUbIQ0MAgsLIAsoAgAhBwwBCwwBCyAHQQJGBEAgBUEDQQVDzczMPUMAACBBEJIBIAVBABBWIQ0gAUEAENkCEDkhAQsLIA0gAZQhASAGQcQzaiwAAEEARyEFAn8CQCAJBH8gACgCACIHIAJMIAFDAAAAAF1xIAcgA04gAUMAAAAAXnFyBUEACyAFcgRAIAZB8NcAaiEADAELIAFDAAAAAFwEQCAGQfDXAGoiBSABIAUqAgCSOAIAIAZB7NcAaiIHQQE6AAAFQQAgBkHs1wBqIgcsAABFDQIaCyAEIAAoAgAgBkHw1wBqIgUqAgCoahDgAyEEIAdBADoAACAFIAUqAgAgBCAAKAIAIgVrspM4AgAgBCAFRiAKckUEQAJAIAIgBCABQwAAAABdRSAEIAVMckUgBCACSHIbIgQgA0wEQCABQwAAAABeRSAEIAVOcg0BCyADIQQLCyAEIAVGBH9BAAUgACAENgIAQQELDAELIABDAAAAADgCACAGQezXAGpBADoAAEEACyEMIAgkBCAMC6MDAQJ/IABBmKkEKAIAIghBtDNqIgkoAgBGBEACQAJAAkAgCEHgM2ooAgBBAWsOAgABAgsgCCwA+AENARByDAELIAAgCEGwNWooAgBGBEAgCEHEM2osAABFBEAQcgsLCwsgACAJKAIARgR/An8CQAJAAkACQAJAAkACQCABDgYAAQIDBAUGCyACIAMgBAR/IAQoAgAFQYCAgIB4CyAFBH8gBSgCAAVB/////wcLIAYQ+AgMBgsgAiADIAQEfyAEKAIABUEACyAFBH8gBSgCAAVBfwsgBhD3CAwFCyACIAMgBAR+IAQpAwAFQoCAgICAgICAgH8LIAUEfiAFKQMABUL///////////8ACyAGEPYIDAQLIAIgAyAEBH4gBCkDAAVCAAsgBQR+IAUpAwAFQn8LIAYQ9QgMAwsgAiADIAQEfSAEKgIABUP//3//CyAFBH0gBSoCAAVD//9/fwsgBiAHEPQIDAILIAIgAyAEBHwgBCsDAAVE////////7/8LIAUEfCAFKwMABUT////////vfwsgBiAHEPMIDAELQQALBUEACwuzAgEGfyMEIQcjBEEgaiQEQZipBCgCACEIIAdBEGoiBUEANgIAIAEoAgAiBEF/SiAEIAJIcQRAQQAgBCAFQekCEQUAGgsgB0EIaiEGIAchBCADQX9HBEAgCEHENGooAgBFBEAgBkMAAAAAQwAAAAAQMiAEQ///f38gAxD7BRAyIAYgBEEAEK8DCwsgACAFKAIAQQAQ/AUEQCACQQBKBEBBACEDQQAhAANAIAMQ0AEgASgCACEFAn9BACADIAZB6QIRBQAEfyAGKAIABSAGQdidAjYCAEHYnQILIQkgBEMAAAAAQwAAAAAQMiAJCyADIAVGIgVBACAEEK8BBEAgASADNgIAQQEhAAsgBQRAEPMECxB5IANBAWoiAyACRw0ACwVBACEACxDIAQVBACEACyAHJAQgAAsFABDIAQvvAQIIfwJ9IwQhAyMEQTBqJAQgAyEFIANBGGohACADQRBqIQIgA0EIaiEEEDwiASwAf0UEQEGYqQQoAgAhBiABKgLMASIIIAEqAuwBkiEJIAIgASoCyAEgCBAyIAQgASoCyAFDAACAP5IgCRAyIAAgAiAEEEMgAiAAEHZDAAAAABAyIAJDAAAAABCpASAAQQBBABBhBEACfyABKAL0BCEHIAIgACoCACAAKgIEEDIgBCAAKgIAIAAqAgwQMiAHCyACIARBG0MAAIA/EEJDAACAPxDFASAGQczYAGosAAAEQEHInQIgBRCmAwsLCyADJAQLfQEFfyMEIQIjBEEQaiQEIAIhABA8IgEsAH9FBEBBmKkEKAIAIQMgASgC4AIhBCABQQE2AuACIAEqAuwBQwAAAABeBEAgAEMAAAAAQwAAAAAQMgUgAEMAAAAAIANBtDFqKgIAEDILIABDAAAAABCpASABIAQ2AuACCyACJAQL6wECCX8BfSMEIQAjBEEwaiQEIABBIGohASAAQRBqIQIgACEDIABBCGohBhA8IgcsAH9FBEBBmKkEKAIAIgRBtDFqIggqAgAhCSAEQcQqaiEFIAMgCSAHKgLsASAJIARByCpqKgIAQwAAAECUkhBFIAkQOSIJEDIgASAHQcgBaiIEIAMQNSACIAQgARBDIAJDAAAAABB8IAJBAEEAEGEEQCADIAUqAgAgCCoCAEMAAAA/lJIgCUMAAAA/lBAyIAYgAiADEDUgASAGKQIANwIAIAEQsgQLQwAAAAAgBSoCAEMAAABAlBBrCyAAJAQLkgQCDH8CfSMEIQMjBEGAAWokBCADQfAAaiEFIAMhBiADQdAAaiEKIANByABqIQggA0E4aiEEIANB6ABqIQkgA0HgAGohCyADQdgAaiEMEDwiDSwAf0UEQEGYqQQoAgAhByAIIA0pAsgBNwMAIAMgASkCADcDMBC+ASEPIAdBtDFqKgIAIAdByCpqIgEqAgBDAAAAQJSSIRAgBSADKQIwNwIAIAkgBSAPIBAQyQMgBiAIIAkQNSAEIAggBhBDIAQgASoCABB8IARBAEEAEGEEQCAAEFohACADIAQpAwA3AyggAyAEQQhqIgEpAwA3AyBBB0MAAIA/EEIhCCAHQcwqaiIOKgIAIQ8gBiADKQIoNwIAIAUgAykCIDcCACAGIAUgCEEBIA8QrAEgBSAHQdAqaioCAIwiDyAPEDIgBCAFENACIAUgBCoCACABKgIAIAAQfyAEKgIMEDIgDSgC9AQgBEEoQwAAgD8QQiAAIA4qAgAQiwkgAkUEQCAKIABDAADIQpRDCtcjPJK7OQMAIAZBIEGgnQIgChBzGiAGIQILIAkgAkEAQQBDAACAvxBsIAkqAgAiAEMAAAAAXgRAIAsgBSoCACAHQdQqaioCAJIgBCoCACABKgIAIACTIAdB3CpqKgIAkxBkIAQqAgQQMiAMQwAAAABDAAAAPxAyIAsgASACQQAgCSAMIAQQrQELCwsgAyQEC9ADAg5/AX0jBCEHIwRB4ABqJAQgB0HIAGohCyAHQUBrIQwgB0EgaiEIIAdBEGohCSAHQTBqIQogB0EoaiENIAdB0ABqIRAgByEREDwiDiwAfwR/QQAFQZipBCgCACESIAAQ0AEgDkGJnQIQXiEPEHkgBEF/SgRAIAggBLIiFSAVEDIFIAggEkHEKmopAgA3AwALIAwgDkHIAWoiBCABEDUgCiAIEOUDIAsgDCAKEDUgCSAEIAsQQyALIAQgCBA1IA0gBCAIEDUgDCANIAEQNSAKIAsgDBBDIAlDAAAAABB8IAkgD0EAEGEEfyAJIA8gDSAQQQAQkQEhE0EVQRYgDSwAAEUiARtBFyAQLAAARSABchtDAACAPxBCIQEgCSAPQQEQlwEgByAJKQMANwMIIBEgCSkDCDcDACAIKgIAIAgqAgQQRUMAAAAAIBJBzCpqKgIAEGQhFSAMIAcpAgg3AgAgCyARKQIANwIAIAwgCyABQQEgFRCsASAFKgIMQwAAAABeBEAgDigC9AQgCiAKQQhqIgEgBRDkAUMAAAAAQQ8QdQUgCkEIaiEBCyAOKAL0BCAAIAogASACIAMgBhDkARD8ASATBUEACwshFCAHJAQgFAu7AgEJfyMEIQgjBEEwaiQEIAhBIGohBiAIQRhqIQcgCEEQaiELIAhBCGohDCAIIQ0QPCIKLAB/RQRAIAcgCkHIAWoiCSABEDUgBiAJIAcQQyAFKgIMQwAAAABeBEAgB0MAAABAQwAAAEAQMiAGIAcqAgAgBioCCJI4AgggBiAHKgIEIAYqAgySOAIMCyAGQwAAAAAQfCAGQQBBABBhBEAgCigC9AQhCSAGQQhqIQEgBSoCDEMAAAAAXgRAIAkgBiABIAUQ5AFDAAAAAEEPQwAAgD8QpAECfyAKKAL0BCEOIAtDAACAP0MAAIA/EDIgByAGIAsQNSANQwAAgD9DAACAPxAyIAwgASANEEAgDgsgACAHIAwgAiADIAQQ5AEQ/AEFIAkgACAGIAEgAiADIAQQ5AEQ/AELCwsgCCQEC9UCAg1/AX0jBCECIwRBQGskBCACIQpBmKkEKAIAIgRBlDNqKAIAIQggAkEYaiIFIARBtDFqIgsqAgAiDyAPEDIgAkEgaiIGIAEgBRA1IAJBEGoiCSAEQcQqaiIMEOUDIAJBOGoiAyAGIAkQNSACQShqIgcgASADEEMgByAAQQAQYRogByAAIAYgBUEAEJEBIQ5BFUEWIAYsAABFIgAbQRcgBSwAAEUgAHIbQwAAgD8QQiEBIAYsAAAgBSwAAHJB/wFxBEACfyAIKAL0BCENIAkgBxDmAyAKQwAAAABDAAAAvxAyIAMgCSAKEDUgDQsgAyALKgIAQwAAAD+UQwAAgD+SIAFBCRCVAgsgAkEIaiIBIAcgDBA1QQFBAyAILAB9GyEAIAMgASkCADcCACADIABDAACAPxDRAhDzAgRAQQBDAACAvxCQBARAIAgQwAcLCyACJAQgDgs+AgN/AX0jBCECIwRBEGokBCACEP4BIgUgBRAyIAJBCGoiAyACKQIANwIAIAAgASADQQAQwwQhBCACJAQgBAuCAwIMfwN9IwQhAiMEQUBrJAQgAkEwaiEDIAJBKGohByACQRhqIQUgAiEEIAJBEGohCiACQQhqIQsQPCIILAB/RQRAQZipBCgCACIGQdzcAGoiDEGBGCAAIAEQvAIgBkHc3ABqaiENIAcgDCANQQBDAACAvxBsQwAAAAAgCCoC8AEQOSEQIAZBxCpqIQkgCCoC7AEgBkG0MWoiASoCACIOIAZByCpqKgIAQwAAAECUkhBFIA4QOSEPIAQgDiAHKgIAIg5DAAAAAF4EfSAOIAkqAgBDAAAAQJSSBUMAAAAAC5IgDyAHKgIEEDkQMiADIAhByAFqIgAgBBA1IAUgACADEEMgBUMAAAAAEHwgBUEAQQAQYQRAIAQgCSoCACABKgIAQwAAAD+UkiAPQwAAAD+UEDIgCiAFIAQQNSADIAopAgA3AgAgAxCyBCAEIAEqAgAgCSoCAEMAAABAlJIgEBAyIAsgBSAEEDUgAyALKQIANwIAIAMgDCANQQAQrgELCyACJAQL/AICC38BfSMEIQIjBEHQAGokBCACQUBrIQMgAkE4aiEEIAJBKGohBSACQRhqIQYgAkEIaiELIAIhCSACQRBqIQwQPCIHLAB/RQRAQZipBCgCACEIEL4BIQ0gBCAAQQBBAUMAAIC/EGwgBiANIAQqAgQgCEHIKmoiCioCAEMAAABAlJIQMiADIAdByAFqIgcgBhA1IAUgByADEEMgCSANIAQqAgBDAAAAAF4EfSAIQdwqaioCAAVDAAAAAAuSIAoqAgBDAAAAQJQQMiALIAcgCRA1IAMgCyAEEDUgBiAHIAMQQyAGIAoqAgAQfCAGQQBBABBhBEAgCEHc3ABqIglBgRhBwswCIAEQvAIgCEHc3ABqaiEBIANDAAAAAEMAAAA/EDIgBSAFQQhqIAkgAUEAIANBABCtASAEKgIAQwAAAABeBEAgDCAFKgIIIAhB3CpqKgIAkiAFKgIEIAoqAgCSEDIgAyAMKQIANwIAIAMgAEEAQQEQrgELCwsgAiQECyEBAX8jBCECIwRBEGokBCACIAE2AgAgACACEIUJIAIkBAs7AEGYqQQoAgBBlDNqKAIAKgLwAkMAAAAAXQRAQwAAAAAQ4AZBwswCIAAQ2gIQ3wYFQcLMAiAAENoCCwsfAQF/IwQhASMEQRBqJAQgASAANgIAIAEQhwkgASQECzgBAX8jBCEBIwRBEGokBCABIAA2AgBBAEGYqQQoAgBBwCtqEIICQcLMAiABENoCQQEQogIgASQEC6UBAgR/BH0jBCEDIwRBEGokBCADQQhqIQQgAyEFIAEgASoCBCAAKAIoKAIIIgYqAgwgBioCSJJDAAAAP5JDAACAv5KospIiBzgCBCABKgIAIQggB0MAAIA/kiEJQQAhAQNAIAQgAbJDAAAAQJQgCJIiCiAHEDIgBSAKQwAAgD+SIAkQMiAAIAQgBSACQwAAAABBDxB1IAFBAWoiAUEDRw0ACyADJAQLjgYCB38EfSMEIQgjBEEwaiQEIAhBIGohBiAIQRBqIQcgCCIFQRhqIglDAAAAADgCACAFQQhqIgogAzgCACADQwAAAABcBEBDAAAAACADXgRAIAkoAgAhCyAJIAooAgA2AgAgCiALNgIAIAkqAgAhDSAKKgIAIQMLIAYgASoCACABKgIIIA0QfyABKgIEEDIgByABKgIAIAEqAgggAxB/IAEqAgwQMiAEQwAAAABbBEAgACAGIAcgAkMAAAAAQQ8QdQVDAACAP0MAAIA/IAEqAgggASoCACIOk0MAAAA/lCABKgIMIAEqAgSTQwAAAD+UEEVDAACAv5JDAAAAACAEEGQiDJUiDSAGKgIAIgMgDpOUkxDoAyEPQwAAgD8gDSAHKgIAIA6TlJMQ6AMhBCADIA4gDJIQOSEDIA8gBFsEQCAFIAMgByoCBBAyIAAgBRBjIAUgAyAGKgIEEDIgACAFEGMFIA9DAAAAAFsgBEPbD8k/W3EEQCAFIAMgByoCBCAMkxAyIAAgBSAMQQNBBhDGASAFIAMgDCAGKgIEkhAyIAAgBSAMQQZBCRDGAQUgBSADIAcqAgQgDJMQMiAAIAUgDEPbD0lAIASTQ9sPSUAgD5NBAxCXAiAFIAMgDCAGKgIEkhAyIAAgBSAMIA9D2w9JQJIgBEPbD0lAkkEDEJcCCwsgByoCACIEIAwgASoCAJJeBEACQEMAAIA/IA0gASoCCCIDIASTlJMQ6AMhDkMAAIA/IA0gAyAGKgIAk5STEOgDIQ0gBCADIAyTEEUhAyAOIA1bBEAgBSADIAYqAgQQMiAAIAUQYyAFIAMgByoCBBAyIAAgBRBjDAELIA5DAAAAAFsgDUPbD8k/W3EEQCAFIAMgDCAGKgIEkhAyIAAgBSAMQQlBDBDGASAFIAMgByoCBCAMkxAyIAAgBSAMQQBBAxDGAQUgBSADIAwgBioCBJIQMiAAIAUgDCANjCAOjEEDEJcCIAUgAyAHKgIEIAyTEDIgACAFIAwgDiANQQMQlwILCwsgACACEIECCwsgCCQEC1kBA38jBCEFIwRBEGokBCAFIQMCQAJAIAAgARCeAyIEIAAQnQNGDQAgBCgCACABRw0AIAQgAjYCBAwBCyADIAE2AgAgAyACNgIEIAAgBCADEMcEGgsgBSQEC/UDAQ9/IwQhBCMEQfAAaiQEIARB6ABqIQcgBEHgAGohCiAEIQggBEHYAGohBSAEQdAAaiEGIARByABqIQsgBEFAayEMIARBOGohDSAEQTBqIQ4gBEEoaiEPIARBIGohECADQX9HBEAgACgCKCgCCCgCRCERIAcQOiAKEDogCEEgaiESIAghCQNAIAkQOiAJQQhqIgkgEkcNAAsgESADIAcgCiAIIAhBEGoiCRCSCQRAIAEgASoCACAHKgIAkzgCACABIAEqAgQgByoCBJM4AgQgACARKAIIIgMQmAIgC0MAAIA/QwAAAAAQMiAGIAsgAhBRIAUgASAGEDUgD0MAAIA/QwAAAAAQMiAOIA8gAhBRIA0gASAOEDUgECAKIAIQUSAMIA0gEBA1IAAgAyAFIAwgCSAIQRhqIgdBgICAgAMQ/AEgC0MAAABAQwAAAAAQMiAGIAsgAhBRIAUgASAGEDUgD0MAAABAQwAAAAAQMiAOIA8gAhBRIA0gASAOEDUgECAKIAIQUSAMIA0gEBA1IAAgAyAFIAwgCSAHQYCAgIADEPwBIAYgCiACEFEgBSABIAYQNSAAIAMgASAFIAkgB0GAgIB4EPwBIAYgCiACEFEgBSABIAYQNSAAIAMgASAFIAggCEEIakF/EPwBIAAQ5QILCyAEJAQLkQICBX8CfSMEIQYjBEEgaiQEIAZBGGohByAGQRBqIQggBkEIaiEJIAYhCgJAAkAgBUEQdEEQdUEJaw4YAQEAAAEAAAAAAAAAAAAAAAAAAAAAAAABAAsgACAFEOECIgUEQCACQwAAAABgBH0gAiAAKgIAlQVDAACAPwshAiADIAAqAgggAyoCAKiykiILOAIAIAMgACoCDCADKgIEqLKSIgw4AgQgAUEGQQQQsAEgByALIAIgBSoCCJSSIAwgAiAFKgIMlJIQMiAIIAsgAiAFKgIQlJIgDCACIAUqAhSUkhAyIAkgBSoCGCAFKgIcEDIgCiAFKgIgIAUqAiQQMiABIAcgCCAJIAogBBDzAwsLIAYkBAsOACAAIAE7ATwgABDQBAs7AEHg4wMuAQBFBEBB4OMDQdCBASkDADcDAEHo4wNB2IEBKQMANwMAQfCoAUGaD0Hw4wMQhAYLQeDjAws7AEGwlQMuAQBFBEBBsJUDQdCBASkDADcDAEG4lQNB2IEBKQMANwMAQeCBAUHEE0HAlQMQhAYLQbCVAwuVAgIHfwF+IwQhCSMEQSBqJAQgCUEYaiEHIAlBCGohCCAJIgZBEGohCiABQQdLBH9BAAUgACgCBEECcQR/QQAFIAggAEFAayAAKAJYEFUiCy8BCLIgCy8BCrIQMiAHIAFBGGxB8P8AaiAIEDUgCCABQRhsQfj/AGopAwAiDTcDACADIA03AgAgAiABQRhsQYCAAWopAwA3AgAgBiAHIABBJGoiABCgAiAEIAYpAwA3AgAgCiAHIAgQNSAGIAogABCgAiAEIAYpAwA3AgggByAHKgIAQwAA2kKSOAIAIAYgByAAEKACIAUgBikDADcCACAKIAcgCBA1IAYgCiAAEKACIAUgBikDADcCCEEBCwshDCAJJAQgDAvsAQEHfyMEIQkjBEEQaiQEIAkhBSAAKAIYIgYEQCAGIQUFIAVBADYCACAAIAVBAEEAQQAQnwYgBSgCACIHBEAgACAAKAIgIAAoAhxBAnRsEFMiBjYCGCAGIQUgACgCHCAAKAIgbCIIQQBKBEADQCAHQQFqIQogBkEEaiELIAYgBy0AAEEYdEH///8HcjYCACAIQX9qIQcgCEEBSgRAIAshBiAHIQggCiEHDAELCwsFIAAoAhghBQsLIAEgBTYCACACBEAgAiAAKAIcNgIACyADBEAgAyAAKAIgNgIACyAEBEAgBEEENgIACyAJJAQLoAQBAn8gACwAACIBQf8BcSECAkAgAUH/AXFBH0oEQCABQQBIBEBBrKkEKAIAIAAtAAFrQX9qIAJBgX9qENsCIABBAmohAAwCCyABQf8BcUE/SgR/QaypBCgCAEH//wAgAC0AASACQQh0cmtqIAAtAAJBAWoQ2wIgAEEDagUgAEEBaiACQWFqEMYEIAAgAC0AAEFiamoLIQAFIAFB/wFxQRdKBEBBrKkEKAIAQf//3wAgAC0AAiACQRB0ciAALQABQQh0cmtqIAAtAANBAWoQ2wIgAEEEaiEADAILIAFB/wFxQQ9KBEBBrKkEKAIAQf//PyAALQACIAJBEHRyIAAtAAFBCHRya2ogAC0ABCAALQADQQh0ckEBahDbAiAAQQVqIQAMAgsgAUH/AXFBB0oEQCAAQQJqIAAtAAEgAkEIdHJBgXBqEMYEIAAgAC0AASAALQAAQQh0ckGDcGpqIQAMAgsCQAJAAkACQCABQQRrDgQCAwEAAwsgAEEDaiAALQACIAAtAAFBCHRyQQFqEMYEIAAgAC0AAiAALQABQQh0ckEEamohAAwEC0GsqQQoAgAgAC0AAyAALQABQRB0ciAALQACQQh0ckF/c2ogAC0ABEEBahDbAiAAQQVqIQAMAwtBrKkEKAIAIAAtAAMgAC0AAUEQdHIgAC0AAkEIdHJBf3NqIAAtAAUgAC0ABEEIdHJBAWoQ2wIgAEEGaiEACwsLIAALTQEDfyAAKAIEIAFIBEAgAUH0AGwQUyECIABBCGoiAygCACIEBEAgAiAEIAAoAgBB9ABsEEYaIAMoAgAQQQsgAyACNgIAIAAgATYCBAsL3gEBAX8gACgCACICIAAoAgRGBEAgACAAIAJBAWoQWBCVCSAAKAIAIQILIAAoAgggAkH0AGxqIgIgASkCADcCACACIAEpAgg3AgggAiABKQIQNwIQIAIgASkCGDcCGCACIAEpAiA3AiAgAiABKQIoNwIoIAIgASkCMDcCMCACIAEpAjg3AjggAkFAayABQUBrKQIANwIAIAIgASkCSDcCSCACIAEpAlA3AlAgAiABKQJYNwJYIAIgASkCYDcCYCACIAEpAmg3AmggAiABKAJwNgJwIAAgACgCAEEBajYCAAu+AQEFfyMEIQMjBEEQaiQEIAMhAiAAQTRqIQUgASwAPARAIAUQfhoFQdgAEFMhBCADIAMsAAQ6AAUgBBCFBiACIAQ2AgAgBSACEHgLIABBzABqIgIgARCWCSACKAIIIAIoAgBBf2pB9ABsaiICKAJwRQRAIAIgBRBwKAIANgJwCyACLAAIRQRAIAIgAigCBBBTIgQ2AgAgAkEBOgAIIAQgASgCACACKAIEEEYaCyAAEO8DIAIoAnAhBiADJAQgBgurAQEBfyABLQADIAEtAABBGHQgAS0AAUEQdHJyIAEtAAJBCHRyQYCA8L0FRgRAIAEtAAcgAS0ABEEYdCABLQAFQRB0cnIgAS0ABkEIdHJFBEAgARCHBiECQaCpBCABNgIAQaSpBCAAIAJqIgI2AgBBqKkEIAA2AgBBrKkEIAA2AgAgAUEQaiEAA0AgABCUCSIBIABGQaypBCgCACACS3JFBEAgASEADAELCwsLC+kBAQV/IwQhBiMEQYABaiQEIAYhBSABEIcGIgcQUyIIIAEQmAkgAwRAIAUgAykCADcCACAFIAMpAgg3AgggBSADKQIQNwIQIAUgAykCGDcCGCAFIAMpAiA3AiAgBSADKQIoNwIoIAUgAykCMDcCMCAFIAMpAjg3AjggBUFAayADQUBrKQIANwIAIAUgAykCSDcCSCAFIAMpAlA3AlAgBSADKQJYNwJYIAUgAykCYDcCYCAFIAMpAmg3AmggBSADKAJwNgJwBSAFEN8CCyAFQQE6AAggACAIIAcgAiAFIAQQhgYhCSAGJAQgCQuKAQECf0GgIiEBQaAiLAAAIgIEQANAIAAgAhCbAyABLAABEJsDIAEsAAIQmwMgASwAAxCbAyABLAAEEJsDQdUAbGpB1QBsakHVAGxqQdUAbGoiAjoAACAAIAJBCHY6AAEgACACQRB2OgACIAAgAkEYdjoAAyAAQQRqIQAgAUEFaiIBLAAAIgINAAsLCy4BAn9BoCIQXEEEakEFbUECdBBTIgQQmgkgACAEIAEgAiADEJkJIQUgBBBBIAULaAECfyMEIQEjBEEQaiQEIABBEGoiAhA6IABBfzYCACAAQQA7AQYgAEEAOwEEIABBfzsBCiAAQX87AQggAEMAAAAAOAIMIAFDAAAAAEMAAAAAEDIgAiABKQMANwIAIABBADYCGCABJAQLTQEDfyAAKAIEIAFIBEAgAUHEAWwQUyECIABBCGoiAygCACIEBEAgAiAEIAAoAgBBxAFsEEYaIAMoAgAQQQsgAyACNgIAIAAgATYCBAsLugIAAn8CQAJAAkACQAJAIAAsAAAOdQMEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQCBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAQQLIAAsAAENAyAALAACDQMgACwAAw0DQQEMBAsCQAJAIAAsAAFB8gBrDggBBAQEBAQEAAQLIAAsAAJB8ABHDQMgACwAA0ExRw0DQQEMBAsgACwAAkH1AEcNAiAALAADQeUARw0CQQEMAwsgACwAAUHUAEcNASAALAACQdQARw0BIAAsAANBzwBHDQFBAQwCCyAALAABQQFHDQAgACwAAg0AIAAsAAMNAEEBDAELQQALC6ABAQF/IAAQngkEfyABQQBHQR90QR91BSAALAAAQfQARgR/IAAsAAFB9ABGBH8gACwAAkHjAEYEfyAALAADQeYARgR/An8gAEEEahDDASICQYCACEgEf0F/IAJBgIAEaw0BBUF/IAJBgIAIaw0BCxogAEEIahDDASABSgR/IABBDGogAUECdGoQwwEFQX8LCwVBfwsFQX8LBUF/CwVBfwsLC8MIARJ/IwQhBiMEQeAAaiQEIAZBQGshCCAGQTRqIQQgBkEoaiEHIAZBJGohCiAGQSBqIQsgBkEQaiEMIAZBDGohDSAGQRRqIQ4gBiEFIAAgATYCBCAAIAI2AgggBkHMAGoiA0EAQQAQ+QEgACADKQIANwI0IAAgAygCCDYCPCABIAJBr5wCEOMBIQkgACABIAJBtJwCEOMBIg82AhAgACABIAJBuZwCEOMBIhA2AhQgACABIAJBvpwCEOMBIhE2AhggACABIAJBw5wCEOMBIhI2AhwgACABIAJByJwCEOMBIhM2AiAgACABIAJBzZwCEOMBNgIkIAAgASACQdKcAhDjATYCKCATRSASRSAJRSAQRXJycgR/QQAFAn8gEQRAQQAgD0UNARoFAkAgCkECNgIAIAtBADYCACAMQQA2AgAgDUEANgIAIAEgAkHXnAIQ4wEiDwRAAkAgA0EAQQAQ+QEgACADKQIANwJkIAAgAygCCDYCbCADQQBBABD5ASAAIAMpAgA3AnAgACADKAIINgJ4IAMgASAPakGAgICAAhD5ASAAIAMpAgA3AjQgACADKAIINgI8IAQgACkCNDcCACAEIAAoAjw2AgggBEECEJICIAQgBBCjAUH/AXEQ+AEgAyAEELoCIA4gBBC6AiADIA4pAgA3AgAgAyAOKAIINgIIIAcgA0EAEOsDIAMgBBC6AiADIAQQugIgACADKQIANwJMIAAgAygCCDYCVCAHQRFBASALEN0CIAdBhgJBASAKEN0CIAdBpAJBASAMEN0CIAdBpQJBASANEN0CIAggBCkCADcCACAIIAQoAgg2AgggAyAHKQIANwIAIAMgBygCCDYCCCAFIAggAxCMBiAAIAUpAgA3AlggACAFKAIINgJgIAsoAgAiB0UgCigCAEECR3JFBEAgDCgCACIIBEAgDSgCACIFRQ0CIAQgCBD4ASADIAQQugIgACADKQIANwJkIAAgAygCCDYCbCADIAQgBSAEKAIIIAVrENwCIAAgAykCADcCcCAAIAMoAgg2AngLIAQgBxD4ASADIAQQugIgAEFAayIFIAMpAgA3AgAgBSADKAIINgIIDAMLCwtBAAwCCwsgACABIAJB3JwCEOMBIgIEfyABIAJqQQRqEEpB//8DcQVB//8DCzYCDCABIAlqQQJqEEoiAkH//wNxIQQgAEEANgIsIAJB//8DcQR/IAlBBGohB0EAIQJBACEFA0ACQAJAAkAgASAHIAVBA3RqaiIDEEpBEHRBEHUOBAECAgACCwJAIANBAmoQSkEQdEEQdUEBaw4KAAICAgICAgICAAILIAAgA0EEahDDASAJaiICNgIsDAELIAAgA0EEahDDASAJaiICNgIsCyAFQQFqIgUgBEcNAAsgAgR/IAAgASAAKAIUakEyahBKQf//A3E2AjBBAQVBAAsFQQALCwshFCAGJAQgFAuhAQECfyMEIQcjBEEwaiQEIAciBkIANwIEIAZCADcCDCAGQgA3AhQgBkIANwIcIAZCADcCJCAGQQA2AiwgBkEBNgIAIAAgASAGEMwEIQAgAgRAIAIgBigCGEEAIAAbNgIACyADBEAgAyAGKAIgQQAgABs2AgALIAQEQCAEIAYoAhxBACAAGzYCAAsgBQRAIAUgBigCJEEAIAAbNgIACyAHJAQLpAEAIAAoAjwEfyAAIAEgAiADIAQgBRChCUEBBSAAIAEQiwYiAUEASAR/QQAFIAIEQCACIAAoAgQgAWpBAmoQSkEQdEEQdTYCAAsgAwRAIAMgACgCBCABakEEahBKQRB0QRB1NgIACyAEBEAgBCAAKAIEIAFqQQZqEEpBEHRBEHU2AgALIAUEQCAFIAAoAgQgAWpBCGoQSkEQdEEQdTYCAAtBAQsLC74BAQJ/IARBf2ohBiAEQQFKBH8DfyAFQQN0IANqIAVBAWoiBUEDdCADajYCBCAFIAZHDQAgBgsFQQALQQN0IANqQQA2AgQgAEEBNgIMIABBADYCECAAIAM2AhwgACAAQSBqNgIYIAAgATYCACAAIAI2AgQgACAENgIUIAAgACgCFCICIAAoAgBBf2pqIAJtNgIIIABBADsBICAAQQA7ASIgACAAQShqNgIkIAAgATsBKCAAQX87ASogAEEANgIsC5cEAQx/IwQhDyMEQRBqJAQgDyEMIAFBGGoiBygCACIKLwEAIgUgASgCCCIEIAJBf2pqIgIgAiAEb2siC2ogASgCAEoEf0EAIQVBgICAgAQhAkGAgICABCEEQQAFQYCAgIAEIQJBgICAgAQhBCAHIQYDQCAKIAUgCyAMEIkGIQUgASgCEARAIAMgBWogASgCBEwEQAJAIAUgBEgEfyAMKAIABSAEIAVGIAwoAgAiCSACSHEEfyAJBQwCCwshAiAGIQggBSEECwsFIAYgCCAFIARIIgYbIQggBSAEIAYbIQQLIApBBGoiBigCACIKLwEAIgUgC2ogASgCAEwNAAsgCAR/IAgiBSgCAC8BAAVBACEFQQALCyEIIAEoAhBBAUYEQCALIAcoAgAiCS8BAEoEfyAJIQYDfyALIAYoAgQiBi8BAEoEfwwBBSAGCwsFIAkLIg4EQCAEIQYgByEKA38gDi8BACALayENA0AgDSAJQQRqIgQoAgAiBy8BAE4EQCAHIQkgBCEKDAELCyADIAkgDSALIAwQiQYiB2ogASgCBE4gByAGSnIEfyAFBQJ/IAcgBkggDCgCACIEIAJIcgRAIAQhAgUgBSACIARGIA0gCEhxRQ0BGgsgDSEIIAchBiAKCwshBCAOKAIEIg4EfyAEIQUMAQUgBCEFIAYLCyEECwsgACAFNgIIIAAgCDYCACAAIAQ2AgQgDyQECxkAQX8gACgCDCIAIAEoAgwiAUogACABSBsLhQIBA38gACABIAIgAxCkCQJAAkAgACgCCCIERQ0AIAMgACgCBGoiAyABKAIESg0AIAEoAhwiBUUNACAFIAAoAgAiADsBACAFIAM7AQIgASAFKAIENgIcIAAgBCgCACIDLwEASgRAIANBBGoiAyEEIAMoAgAhAwsgBCAFNgIAIAAgAmohBiADQQRqIgQoAgAiAARAAkAgAyECIAQhAwNAIAYgAC8BAEgEQCACIQAMAgsgAyABKAIcNgIAIAEgAjYCHCAAQQRqIgMoAgAiBARAIAAhAiAEIQAMAQsLCwUgAyEACyAFIAA2AgQgBiAALwEASgRAIAAgBjsBAAsMAQsgAEEANgIICwtFAQJ/IAAvAQYiAiABLwEGIgNKBH9BfwUgAiADSAR/QQEFQX8gAC8BBCIAIAEvAQQiAUggAEH//wNxIAFB//8DcUobCwsLUwEDfyMEIQMjBEEQaiQEIAMhBAJAAkAgACABEJ4DIgIgABCdA0YNACACKAIAIAFHDQAMAQsgBCABQX8QoQEgACACIAQQxwQhAgsgAyQEIAJBBGoLYAEBfyAAEMgEQf8BcUEeRgRAAkAgAEEBEJICIAAoAgQgACgCCEgEQANAIAAQowFB/wFxIgFBD3FBD0YgAUHwAXFB8AFGcg0CIAAoAgQgACgCCEgNAAsLCwUgABDKBBoLC7ABAQR/IAFBABD4AQJAAkAgASgCBCIDIAEoAghODQADQAJAIAEQyARB/wFxQRtKBH8DQCABEKkJIAEQyARB/wFxQRtKDQALIAEoAgQFIAMLIQUgARCjASIGQf8BcSEEIAZB/wFxQQxGBEAgARCjAUH/AXFBgAJyIQQLIAIgBEYNACABKAIEIgMgASgCCEgNAQwCCwsgACABIAMgBSADaxDcAgwBCyAAIAFBAEEAENwCCwssAQF/IAAgARCeAyICIAAQnQNGBH9BAAUgASACKAIARgR/IAIoAgQFQQALCwt9AQR/IwQhBCMEQRBqJAQgBCEDIAJBgIACQesIAn9B6wAhBiABQQAQ+AEgBgsgAUECEMQBIgVB1wlKGyAFQeuIAkobaiICQX9KIAIgBUhxBEAgAyABKQIANwIAIAMgASgCCDYCCCAAIAMgAhDrAwUgAEEAQQAQ+QELIAQkBAvMAgEKfyMEIQUjBEFAayQEIAVBMGohBCAFQSRqIQggBUEYaiEHIAUhCSAFQQxqIgMgAUHwAGoiBikCADcCACADIAYoAgg2AgggA0EAEPgBAn8CQAJAAkAgAxCjAUEYdEEYdQ4EAAICAQILIAMgAhCSAiADEKMBQf8BcQwCCyADQQIQxAEhCiADQQIQxAEhBiAKQQBMDQADQAJAIAMQowEhDCAGIAJMIANBAhDEASIGIAJKcQ0AIAtBAWoiCyAKSA0BDAILCyAMQf8BcQwBCyAEQQBBABD5AUF/CyECIAcgAUE0aiIGKQIANwIAIAcgBigCCDYCCCAEIAFB5ABqIgEpAgA3AgAgBCABKAIINgIIIAkgBCACEOsDIAggBykCADcCACAIIAcoAgg2AgggBCAJKQIANwIAIAQgCSgCCDYCCCAAIAggBBCMBiAFJAQLwAEBBH8jBCEFIwRB4ABqJAQgBUEwaiIDQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANBADYCLCADQQE2AgAgBSIEQgA3AgAgBEIANwIIIARCADcCECAEQgA3AhggBEIANwIgIARCADcCKAJ/AkAgACABIAMQzARFDQAgAiADKAIsQQ5sEFMiAzYCACAEIAM2AiggACABIAQQzARFDQAgBCgCLAwBCyACQQA2AgBBAAshBiAFJAQgBgu2DgIVfwp9IwQhESMEQRBqJAQgESEPIAAoAgQhAyAAIAEQiwYhASACQQA2AgAgAUEASARAQQAhAQUCQCABIANqIgMQSiIBQRB0QRB1QQBKBEAgA0EKaiIWIAFBEHRBEHVBAXQiEGoiBhBKIQEgBkF+ahBKQf//A3EiEiAQQQFyakEObBBTIghFBEBBACEBDAILIBJBAWohCkEAIQNBACEAIAZBAmogAUH//wNxaiEBA0AgA0H/AXEEQCADQX9qQRh0QRh1IQMFIAFBAWohBiABLAAAIgBBCHEEfyAGLAAAIQMgAUECagVBACEDIAYLIQELIAUgEGpBDmwgCGogADoADCAFQQFqIgUgCkcNAAtBACEFQQAhAwNAIAUgEGoiBkEObCAIai0ADCIEQQJxBEAgAUEBaiEAQQAgAS0AACIBayABIARBEHFFGyADaiEDBSAEQRBxBH8gAQUgAS0AASABLQAAQQh0ckEQdEEQdSADaiEDIAFBAmoLIQALIAZBDmwgCGogAzsBACAFQQFqIgUgCkcEQCAAIQEMAQsLQQAhBUEAIQEDQCAFIBBqIgZBDmwgCGotAAwiBEEEcQRAIABBAWohA0EAIAAtAAAiAGsgACAEQSBxRRsgAWohAQUgBEEgcQR/IAAFIAAtAAEgAC0AAEEIdHJBEHRBEHUgAWohASAAQQJqCyEDCyAGQQ5sIAhqIAE7AQIgBUEBaiIFIApHBEAgAyEADAELC0EAIQBBACEBQQAhA0EAIQoDQCAAIBBqIgRBDmwgCGosAAwhFCAEQQ5sIAhqLgEAIQUgBEEObCAIai4BAiEGIAAgE0YEfyAABEAgCCAHIA0gFSAOIAogASADIAwgCxCKBiEHCyAUQQFxIg8EQCAFIQ4gBiEKBSAEQQFqIgFBDmwgCGouAQAhDiABQQ5sIAhqLAAMQQFxBH8gAEEBaiEAIAYhAyABQQ5sIAhqLgECIQogBQUgBSAOakEBdSEOIAYiAyABQQ5sIAhqLgECakEBdSEKIAULIQELIAdBDmwgCGpBASAOIApBAEEAEPoBIAwhBSALIQYgFiAJQQF0ahBKQf//A3FBAWohEyAHQQFqIQcgD0EBcyEVQQAhDSAJQQFqBQJ/IA1BAEchBCAHQQFqIQ8gB0EObCAIaiENIBRBAXFFBEAgBEUEQEEBIQ0gCQwCCyANQQMgBSAMakEBdSAGIAtqQQF1IAwgCxD6ASAPIQdBASENIAkMAQsgBARAIA1BAyAFIAYgDCALEPoBBSANQQIgBSAGQQBBABD6AQsgCyEGIA8hB0EAIQ0gDCEFIAkLCyEEIABBAWohCSAAIBJIBEAgBSEMIAYhCyAJIQAgBCEJDAELCyAIIAcgDSAVIA4gCiABIAMgBSAGEIoGIQEgCCEDBSABQf//A3FB//8DRgRAAkAgA0EKaiEJQQAhAQNAAkAgD0EANgIAAn8gCRBKIRcgCUECahBKIQMgCUEEaiELIBcLQf//A3EiDEECcQR/IAxBAXEEfyALEEpBEHRBEHWyIR0gCUEGahBKQRB0QRB1siEeIAlBCGoFIAssAACyIR0gCSwABbIhHiAJQQZqCwVDAAAAACEdQwAAAAAhHiALCyEEIAxBCHEEfyAEEEpBEHRBEHWyQwAAgDiUIhghGUMAAAAAIRpDAAAAACEbIARBAmoFAn8gDEHAAHEEQCAEEEpBEHRBEHWyQwAAgDiUIRlDAAAAACEaQwAAAAAhGyAEQQJqEEpBEHRBEHWyQwAAgDiUIRggBEEEagwBCyAMQYABcQR/IAQQSkEQdEEQdbJDAACAOJQhGSAEQQJqEEpBEHRBEHWyQwAAgDiUIRogBEEEahBKQRB0QRB1skMAAIA4lCEbIARBBmoQSkEQdEEQdbJDAACAOJQhGCAEQQhqBUMAAIA/IRlDAAAAACEaQwAAAAAhG0MAAIA/IRggBAsLCyEJIBogGpQgGSAZlJKRISAgGCAYlCAbIBuUkpEhISAAIANB//8DcSAPEJEGIgtBAEoEQCAPKAIAIQdBACEDA0AgA0EObCAHaiIELgEAsiEcIAQgICAdIBkgHJQgGyADQQ5sIAdqIgQuAQKyIh+UkpKUqDsBACAEICEgHiAaIByUIBggH5SSkpSoOwECIANBDmwgB2oiBC4BBLIhHCAEICAgHSAZIByUIBsgA0EObCAHaiIELgEGsiIflJKSlKg7AQQgBCAhIB4gGiAclCAYIB+UkpKUqDsBBiADQQFqIgMgC0cNAAsgASALaiIEQQ5sEFMiA0UNASABQQBKBEAgAyAOIAFBDmwQRhoLIAFBDmwgA2ogByALQQ5sEEYaIAoEQCAGEEELIAcQQSADIQUgAyEGIAMhDiAEIQEFIAohAwsgDEEgcUUNAiADIQoMAQsLIAoEQCAFEEELIAcQQUEAIQEMAwsFQQAhAUEAIQMLCyACIAM2AgALCyARJAQgAQuGAgIIfwF9IwQhBiMEQRBqJAQgBiEEIAFBAUoEQEEBIQMDQCADQRRsIABqKAIAIQkgA0EUbCAAaioCBCEKIAQgA0EUbCAAaiICKQIINwIAIAQgAigCEDYCCCADIQIDQCAKIAJBf2oiBUEUbCAAaioCBF0EQCACQRRsIABqIgcgBUEUbCAAaiIIKQIANwIAIAcgCCkCCDcCCCAHIAgoAhA2AhAgAkEBSgR/IAUhAgwCBSAFCyECCwsgAiADRwRAIAJBFGwgAGogCTYCACACQRRsIABqIAo4AgQgAkEUbCAAaiICIAQpAgA3AgggAiAEKAIINgIQCyADQQFqIgMgAUcNAAsLIAYkBAt3AQJ/IAAoAgQiAQRAIAAgASgCADYCBAUCfyAAKAIIIgEEQCABQX9qIQIgACgCACEBBUEAQcS1AxBTIgFFDQEaIAEgACgCADYCACAAIAE2AgAgAEHQDzYCCEHPDyECCyAAIAI2AgggAUEEaiACQRxsagshAQsgAQsnAQF/IAAoAgAiAARAA0AgACgCACEBIAAQQSABBEAgASEADAELCwsLzAgCCH8LfSAEQwAAgD+SIREgAwRAIAKyIRYgAkEASiEKIAFBfGohCQNAIAMqAgQhDSADKgIIIhRDAAAAAFsEQCANIBZdBEAgDUMAAAAAYARAIAAgDagiBSADIA0gBCANIBEQiwEgCSAFQQFqIAMgDSAEIA0gERCLAQUgCUEAIAMgDSAEIA0gERCLAQsLBQJAIAMqAgwhEiADKgIUIg4gBF4hBSAOIAQgBRshEyADKgIYIg8gEV0hBiAPIBEgBhshFSANIBQgDiAEk5SSIA0gBRsiDkMAAAAAYCANIBQgDyAEk5SSIBQgDZIiECAGGyIPQwAAAABgcQRAIA4gFl0gDyAWXXEEQCAOqCIGIA+oIgdGBEAgBkECdCAAaiIFIAUqAgAgFSATkyINQwAAgD8gDiAGsiIOkyAPIA6TkkMAAAA/lJMgAyoCEJSUkjgCACAGQQJ0IAFqIgUgBSoCACANIAMqAhCUkjgCAAwDCyAOIA9eBEAgByEFIBKMIRIgESAVIASTkyEUIBEgEyAEk5MhFSAQIQ0gDiEQIA8hDgUgBiEFIAchBiATIRQgDyEQCyAFQQJ0IABqIgcgByoCAEMAAIA/IA4gBbKTQwAAgD+SQwAAAD+UkyADKgIQIg8gEiAFQQFqIgeyIA2TlCAEkiITIBSTlCIOlJI4AgAgEiAPlCENIAYgB0oEQCANQwAAAD+UIRcgByEFA0AgBUECdCAAaiIIIBcgDpIgCCoCAJI4AgAgDSAOkiEOIAVBAWoiBSAGRw0ACwsgBkECdCAAaiIFIA9DAACAPyAQIAayk0MAAAAAkkMAAAA/lJOUIBUgEiAGIAdrspQgE5KTlCAOkiAFKgIAkjgCACAGQQJ0IAFqIgUgFSAUkyAPlCAFKgIAkjgCAAwCCwsgCgRAQQAhBQNAIAWyIg4gDZMgFJUgBJIhEiAFQQFqIgayIg8gDZMgFJUgBJIhEyANIA5dIgcgECAPXiIIcQRAIAAgBSADIA0gBCAOIBIQiwEgACAFIAMgDiASIA8gExCLASAAIAUgAyAPIBMgECAREIsBBQJAIBAgDl0iCyANIA9eIgxxBEAgACAFIAMgDSAEIA8gExCLASAAIAUgAyAPIBMgDiASEIsBIAAgBSADIA4gEiAQIBEQiwEMAQsgByAQIA5ecQRAIAAgBSADIA0gBCAOIBIQiwEgACAFIAMgDiASIBAgERCLAQwBCyALIA0gDl5xBEAgACAFIAMgDSAEIA4gEhCLASAAIAUgAyAOIBIgECAREIsBDAELIAggDSAPXXEEQCAAIAUgAyANIAQgDyATEIsBIAAgBSADIA8gEyAQIBEQiwEMAQsgDCAQIA9dcQRAIAAgBSADIA0gBCAPIBMQiwEgACAFIAMgDyATIBAgERCLAQUgACAFIAMgDSAEIBAgERCLAQsLCyACIAZHBEAgBiEFDAELCwsLCyADKAIAIgMNAAsLC5EBAQR9IAAQsQkhACABKgIIIAEqAgAiBpMgASoCDCIHIAEqAgQiBZOVIQQgAARAIAAgBDgCCCAAQwAAgD8gBJVDAAAAACAEQwAAAABcGzgCDCAAIAYgAyAFkyAElJIgArKTOAIEIABDAACAP0MAAIC/IAEoAhAbOAIQIAAgBTgCFCAAIAc4AhggAEEANgIACyAAC+EEAgt/A30jBCEJIwRBoARqJAQgCSEMIAlBiARqIgZCADcCACAGQQA2AgggCUGEBGoiB0EANgIAIAAoAgAiCEHAAEoEQCAIQQN0QQRyEFMhBSAAKAIAIQgFIAwhBQsgCEECdCAFaiEKIAJBFGwgAWogBCAAKAIEIgJqskMAAIA/kjgCBCACQQBKBEAgCkEEaiEPQQAhAiAEIQsDQCALsiERIAVBACAIQQJ0EGoaIApBACAAKAIAQQJ0QQRqEGoaIAIEQCAHIQQDQCACKgIYIBFfBEAgBCACKAIANgIAIAJDAAAAADgCECACIAYoAgQ2AgAgBiACNgIEBSACIQQLIAQoAgAiAg0ACwsgASoCBCIQIBFDAACAP5IiEl8EQAN/IBAgASoCDFwEQCAGIAEgAyARELQJIgIEQCACIAcoAgA2AgAgByACNgIACwsgAUEUaiECIAEqAhgiECASXwR/IAIhAQwBBSACCwshAQsgBygCACICBEAgBSAPIAAoAgAgAiARELMJCyAAKAIAIgJBAEoEQEEAIQJDAAAAACEQA38gACgCDCACIAAoAgggDWxqaiACQQJ0IAVqKgIAIBAgAkECdCAKaioCAJIiEJKLQwAAf0OUQwAAAD+SqCIEQf8BIARB/wFIGzoAACACQQFqIgIgACgCACIESA0AIAQLIQILIAcoAgAiDgRAIA4hBANAIAQgBCoCCCAEKgIEkjgCBCAEKAIAIgQNAAsLIAtBAWohCyANQQFqIg0gACgCBEgEQCACIQggDiECDAELCwsgBhCyCSAFIAxHBEAgBRBBCyAJJAQLkQMCC38CfSAFjCETIANBAEoiCwR/A0AgCEECdCACaigCACAJaiEJIAhBAWoiCCADRw0ACyAJQRRsQRRqBUEUCxBTIgoEQCALBEBBACEIA0AgEEEDdCABaiENIBFBAnQgAmoiEigCACIOQQBKBEAgDkF/aiIPQQN0IA1qKgIEIQUgDiEJQQAhCwNAIAUgC0EDdCANaioCBCIUXARAIAhBFGwgCmogBSAUXiIJNgIQIAhBFGwgCmogDyALIAkbQQN0IA1qIgwqAgAgBJRDAAAAAJI4AgAgCEEUbCAKaiAMKgIEIBOUQwAAAACSOAIEIAhBFGwgCmogCyAPIAkbQQN0IA1qIgwqAgAgBJRDAAAAAJI4AgggCEEUbCAKaiAMKgIEIBOUQwAAAACSOAIMIAhBAWohCCASKAIAIQkLIAtBAWoiDCAJSARAIAshDyAUIQUgDCELDAELCwsgDiAQaiEQIBFBAWoiESADRw0ACwVBACEICyAKIAgQzQQgCiAIELAJIAAgCiAIIAYgBxC1CSAKEEELC4wFAgp/An0jBCENIwRBEGokBCANIgdBADYCACACIAKUIRAgAUEASiIOBEACQANAIAhBDmwgAGosAAxBAUYgBmohBiAIQQFqIgggAUcNAAsgBCAGNgIAIAYEQCADIAZBAnQQUyIGNgIAIAZFBEAgBEEANgIADAILQQAhBgNAAkAgC0EBRgRAIAcoAgBBA3QQUyIJRQ0BCyAHQQA2AgAgDgR/QQAhBUF/IQhDAAAAACECQwAAAAAhDwNAIAVBDmwgAGohCgJAAkACQAJAAkAgBUEObCAAaiwADEEBaw4EAAECAwQLIAhBf0oEQCADKAIAIAhBAnRqIAcoAgAgBms2AgALIAouAQCyIQIgBUEObCAAai4BArIhDyAHIAcoAgAiBkEBajYCACAJIAYgAiAPEOwDIAhBAWohCAwDCyAKLgEAsiECIAVBDmwgAGouAQKyIQ8gByAHKAIAIgpBAWo2AgAgCSAKIAIgDxDsAwwCCyAJIAcgAiAPIAVBDmwgAGouAQSyIAVBDmwgAGouAQayIAouAQCyIAVBDmwgAGoiDC4BArIgEEEAEI8GIAouAQCyIQIgDC4BArIhDwwBCyAJIAcgAiAPIAVBDmwgAGouAQSyIAVBDmwgAGouAQayIAVBDmwgAGouAQiyIAVBDmwgAGouAQqyIAouAQCyIAVBDmwgAGoiDC4BArIgEEEAEI4GIAouAQCyIQIgDC4BArIhDwsgBUEBaiIFIAFHDQALIAcoAgAFQX8hCEEACyEFIAMoAgAgCEECdGogBSAGazYCACALQQFqIgtBAkkNAQwDCwtBABBBIAMoAgAQQSADQQA2AgAgBEEANgIAC0EAIQkLBSAEQQA2AgALIA0kBCAJC2sBA38jBCEHIwRBEGokBCAHQQRqIghBADYCACAHIglBADYCACABIAJDMzOzPiAEIAMgAyAEXhuVIAcgCBC3CSIBBEAgACABIAkoAgAiACAIKAIAIAMgBCAFIAYQtgkgABBBIAEQQQsgByQEC6UFAQl/IwQhDCMEQRBqJAQgDCIGQgA3AwAgAUEASgRAIAIgBGtBAEghCyACQQFqIARrIQcgACEKA0AgBkEAIAQQahoCfwJAAkACQAJAAkAgBEECaw4EAAECAwQLIAsEf0EAIQVBAAVBACEAQQAhBQN/IAAgA2wgCmoiCCwAACIJQf8BcSAAQQdxIAZqLQAAayAFaiEFIABBAmpBB3EgBmogCToAACAIIAVBAXY6AAAgAEEBaiIAIAdHDQAgBwsLDAQLIAsEf0EAIQVBAAVBACEAQQAhBQN/IAAgA2wgCmoiCCwAACIJQf8BcSAAQQdxIAZqLQAAayAFaiEFIABBA2pBB3EgBmogCToAACAIIAVBA246AAAgAEEBaiIAIAdHDQAgBwsLDAMLIAsEf0EAIQVBAAVBACEAQQAhBQN/IAAgA2wgCmoiCCwAACIJQf8BcSAAQQdxIAZqLQAAayAFaiEFIABBBGpBB3EgBmogCToAACAIIAVBAnY6AAAgAEEBaiIAIAdHDQAgBwsLDAILIAsEf0EAIQVBAAVBACEAQQAhBQN/IAAgA2wgCmoiCCwAACIJQf8BcSAAQQdxIAZqLQAAayAFaiEFIABBBWpBB3EgBmogCToAACAIIAVBBW46AAAgAEEBaiIAIAdHDQAgBwsLDAELIAsEf0EAIQVBAAVBACEAQQAhBQN/IAAgA2wgCmoiCCwAACIJQf8BcSAAQQdxIAZqLQAAayAFaiEFIAAgBGpBB3EgBmogCToAACAIIAUgBG46AAAgAEEBaiIAIAdHDQAgBwsLCyIAIAJIBEADQCAAIANsIApqIAUgAEEHcSAGai0AAGsiBSAEbjoAACAAQQFqIgAgAkcNAAsLIApBAWohCiANQQFqIg0gAUcNAAsLIAwkBAuTBQEJfyMEIQwjBEEQaiQEIAwiBkIANwMAIAJBAEoEQCABIARrQQBIIQsgAUEBaiAEayEHIAAhCgNAIAZBACAEEGoaAn8CQAJAAkACQAJAIARBAmsOBAABAgMECyALBH9BACEFQQAFQQAhAEEAIQUDfyAAIApqIggsAAAiCUH/AXEgAEEHcSAGai0AAGsgBWohBSAAQQJqQQdxIAZqIAk6AAAgCCAFQQF2OgAAIABBAWoiACAHRw0AIAcLCwwECyALBH9BACEFQQAFQQAhAEEAIQUDfyAAIApqIggsAAAiCUH/AXEgAEEHcSAGai0AAGsgBWohBSAAQQNqQQdxIAZqIAk6AAAgCCAFQQNuOgAAIABBAWoiACAHRw0AIAcLCwwDCyALBH9BACEFQQAFQQAhAEEAIQUDfyAAIApqIggsAAAiCUH/AXEgAEEHcSAGai0AAGsgBWohBSAAQQRqQQdxIAZqIAk6AAAgCCAFQQJ2OgAAIABBAWoiACAHRw0AIAcLCwwCCyALBH9BACEFQQAFQQAhAEEAIQUDfyAAIApqIggsAAAiCUH/AXEgAEEHcSAGai0AAGsgBWohBSAAQQVqQQdxIAZqIAk6AAAgCCAFQQVuOgAAIABBAWoiACAHRw0AIAcLCwwBCyALBH9BACEFQQAFQQAhAEEAIQUDfyAAIApqIggsAAAiCUH/AXEgAEEHcSAGai0AAGsgBWohBSAAIARqQQdxIAZqIAk6AAAgCCAFIARuOgAAIABBAWoiACAHRw0AIAcLCwsiACABSARAA0AgACAKaiAFIABBB3EgBmotAABrIgUgBG46AAAgAEEBaiIAIAFHDQALCyADIApqIQogDUEBaiINIAJHDQALCyAMJAQLkAEBBH8jBCEIIwRBIGokBCAAIAcgCEEQaiIJEJEGIQogACAHIAUgBiAIQRhqIgcgCEEUaiILQQBBABDRBCAIIgAgATYCDCAIIAI2AgAgCCADNgIEIAggBDYCCCACRSADRXIEQCAJKAIAIQAFIAAgCSgCACIAIAogBSAGIAcoAgAgCygCABC4CQsgABBBIAgkBAu6AQEDfyACQQBHIQYgACgCBCIEIAAoAhxqQSJqEEpB//8DcSIFIAFKBEAgBgRAIAIgBCAAKAIgaiABQQJ0ahBKQRB0QRB1NgIACyADBEAgAyAEIAAoAiBqIAFBAnRqQQJqEEpBEHRBEHU2AgALBSAGBEAgAiAEIAAoAiBqIAVBAnRBfGpqEEpBEHRBEHU2AgALIAMEQCADIAQgACgCIGogBUECdGogASAFa0EBdGoQSkEQdEEQdTYCAAsLC1ABAX8gACgCBCABSARAIAAgACABEFgQ4AQLIAAoAgAiAyABSARAA0AgACgCCCADQQF0aiACLgEAOwEAIANBAWoiAyABRw0ACwsgACABNgIAC1ABAX8gACgCBCABSARAIAAgACABEFgQhQILIAAoAgAiAyABSARAA0AgACgCCCADQQJ0aiACKAIANgIAIANBAWoiAyABRw0ACwsgACABNgIAC0sBA38gACgCBCABSARAIAFBKGwQUyECIABBCGoiAygCACIEBEAgAiAEIAAoAgBBKGwQRhogAygCABBBCyADIAI2AgAgACABNgIECwtNAQN/IwQhAyMEQRBqJAQgAyECIABBKGoiBCgCACABSARAIAJDAACAvzgCACAAQRxqIAEgAhC+CSACQX87AQAgBCABIAIQvQkLIAMkBAtwAQF/IwQhBCMEQRBqJAQgARCTBiAEIAAqAiQgAS8BCLKUIAAqAiggAS8BCrKUEDIgAiAEKQMANwIAIAQgACoCJCABLwEIIAEvAQRqspQgACoCKCABLwEKIAEvAQZqspQQMiADIAQpAwA3AgAgBCQEC8oCAQp/IwQhBSMEQRBqJAQgAEFAayAAKAJYEFUiAxCTBiAAKAIcIQYgACgCBEECcQRAIAAoAhQgBiADLwEIIAYgA0EKaiIBLwEAbGoiAmoiBEEBampBfzoAACAAKAIUIARqQX86AAAgACgCFCACQQFqakF/OgAAIAAoAhQgAmpBfzoAAAUgA0EKaiEIA38gASECQQAhBwNAIAMvAQggB2ogBiAILwEAIARqbGoiCSAAKAIUaiACQbALaiwAACIKQS5GQR90QR91OgAAIAAoAhQgCUHtAGpqIApB2ABGQR90QR91OgAAIAJBAWohAiAHQQFqIgdB7ABHDQALIAFB7ABqIQEgBEEBaiIEQRtHDQAgCAshAQsgBSAAKgIkIAMvAQiyQwAAAD+SlCAAKgIoIAEvAQCyQwAAAD+SlBAyIAAgBSkDADcCLCAFJAQLgQICBn8CfSMEIQUjBEEQaiQEIAVBCGohAyAFIQQgABDCCSAAQUBrIgYoAgBBAEoEQANAIAYgAhBVIgEoAhgEQCABKAIAQYCABE0EQCADEDogBBA6IAAgASADIAQQwQkgASgCGCABKAIAQf//A3EgASoCECIHIAEqAhQiCCAHIAEvAQSykiAIIAEvAQaykiADKgIAIAMqAgQgBCoCACAEKgIEIAEqAgwQlgYLCyACQQFqIgIgBigCAEgNAAsLIABBNGoiAigCAEEASgRAQQAhAANAIAIgABBQKAIALABQBEAgAiAAEFAoAgAQ0AQLIABBAWoiACACKAIASA0ACwsgBSQEC9QBAQJ9IAYgBCoCACADQRxsIABqKgIIkjgCACAGIAUqAgAgA0EcbCAAaioCDJI4AgQgBiAEKgIAIANBHGwgAGoqAhSSOAIQIAYgBSoCACADQRxsIABqKgIYkjgCFCAGQwAAgD8gAbKVIgcgA0EcbCAAai8BALKUOAIIIAZDAACAPyACspUiCCADQRxsIABqLwECspQ4AgwgBiAHIANBHGwgAGovAQSylDgCGCAGIAggA0EcbCAAai8BBrKUOAIcIAQgA0EcbCAAaioCECAEKgIAkjgCAAtGACACLAA8RQRAIAEQ7gMgASACKAIQNgIAIAFBQGsgAjYCACABIAA2AkQgASADOAJIIAEgBDgCTAsgASABLgE+QQFqOwE+C2IAIAEEQCABIAAoAgQgACgCHGpBBGoQSkEQdEEQdTYCAAsgAgRAIAIgACgCBCAAKAIcakEGahBKQRB0QRB1NgIACyADBEAgAyAAKAIEIAAoAhxqQQhqEEpBEHRBEHU2AgALC2wBAX8gBUEASgRAIARBAEohByABIAJqIAMgBmxqIQEDQCAHBEBBACECA0AgASACaiIDIAAgAy0AAGosAAA6AAAgAkEBaiICIARHDQALCyAFQX9qIQIgASAGaiEBIAVBAUoEQCACIQUMAQsLCwsvAQJ/A0AgACACaiACsyABlKkiA0H/ASADQf8BSRs6AAAgAkEBaiICQYACRw0ACwuzBgIUfwV9IwQhCiMEQSBqJAQgACgCGCERIAAoAhwhEiACKgIAIhhDAAAAAF4EfSABIBgQ0gQFIAEgGIwQmAYLIRggCkEUaiEOIApBEGohEyAKQQxqIQ8gCkEIaiEQIApBBGohFCAKIRUgACACLQAUIgQiBTYCGCAAIAItABUiByIGNgIcQwAAgD8gBLKVIRlDAACAPyAHspUhGiAFEJIGIRsgBhCSBiEcIAIoAgwiBUEASgRAQQAhBEEAIQcDQCAHQQR0IANqKAIMBEAgAigCECEFIAEgAigCCCIGBH8gBEECdCAGaigCAAUgAigCBCAEagsQ1AQhCyAHQQR0IANqIgYgACgCFCIIIAYvAQhqOwEIIAdBBHQgA2oiCSAIIAkvAQpqOwEKIAdBBHQgA2oiDCAMLwEEIAhrOwEEIAdBBHQgA2oiDSANLwEGIAhrOwEGIAEgCyAOIBMQvAkgASALIBggACgCGLOUIBggACgCHLOUIA8gECAUIBUQ0QQgASAAKAIgIAYvAQhqIAAoAhAiCCAJLwEKbGogDC8BBEEBIAAoAhgiFmtqIA0vAQZBASAAKAIcIhdraiAIIBggFrOUIBggF7OUIAsQuwkgACgCGCILQQFLBEAgACgCICAGLwEIaiAAKAIQIgggCS8BCmxqIAwvAQQgDS8BBiAIIAsQugkLIAAoAhwiC0EBSwRAIAAoAiAgBi8BCGogACgCECIIIAkvAQpsaiAMLwEEIA0vAQYgCCALELkJCyAEQRxsIAVqIAYuAQgiBjsBACAEQRxsIAVqIAkuAQoiCTsBAiAEQRxsIAVqIAwvAQQiDCAGQf//A3FqOwEEIARBHGwgBWogDS8BBiIGIAlB//8DcWo7AQYgBEEcbCAFaiAYIA4oAgCylDgCECAEQRxsIAVqIBsgGSAPKAIAIgmylJI4AgggBEEcbCAFaiAcIBogECgCACINspSSOAIMIARBHGwgBWogGyAZIAkgDGqylJI4AhQgBEEcbCAFaiAcIBogBiANarKUkjgCGCACKAIMIQULIAdBAWohByAEQQFqIgQgBUgNAAsLIAAgETYCGCAAIBI2AhwgCiQECzIAIABBf2oiACAAQQF1ciIAIABBAnVyIgAgAEEEdXIiACAAQQh1ciIAIABBEHVyQQFqC7sCAQV/IwQhBiMEQRBqJAQgBiICEGggAiAAQUBrIgQoAgAQmgYgAigCCEEAIAIQmQYQahogBCgCAEEASgRAA0AgBCADEFUuAQQhBSACIAMQzwEgBTsBBCAEIAMQVS4BBiEFIAIgAxDPASAFOwEGIANBAWoiAyAEKAIASA0ACwsgASACQQAQzwEgAigCABCXBiACKAIAQQBKBEBBACEBA0AgAiABEM8BKAIMBEAgAiABEM8BLgEIIQMgBCABEFUgAzsBCCACIAEQzwEuAQohAyAEIAEQVSADOwEKIAIgARDPAS4BBCAEIAEQVS4BBEYEQCACIAEQzwEaIAQgARBVGgsgACAAKAIgIAIgARDPAS8BCiACIAEQzwEvAQZqELoBNgIgCyABQQFqIgEgAigCAEgNAAsLIAIQZyAGJAQLkQEBBX9BMBBTIgNFIgYgASACayIFQQN0EFMiBEUiB3IEQCAGRQRAIAMQQQsgB0UEQCAEEEELBSAAQQA2AgAgACABNgIIIABBgIACNgIMIABBADYCICAAIAM2AgQgACAENgIkIAAgAjYCFCAAIAE2AhAgAEEBNgIYIABBATYCHCADIAVBgIACIAJrIAQgBRCjCQsLiwEBB38jBCEDIwRBEGokBCADIQQgACgCCCICIAAoAgggACgCAEECdGoiBUkEQCACIQYgAiEAA0AgACgCACIHBEAgACAGa0EDdCEIQQAhAgNAIAdBASACdHEEQCAEIAIgCGo2AgAgASAEEHgLIAJBAWoiAkEgRw0ACwsgAEEEaiIAIAVJDQALCyADJAQLMQAgACgCWEF/TARAIAAgACgCBEECcQR/IABBAkECEIgGBSAAQdkBQRsQiAYLNgJYCwsHACAAEJ0GC78BAQJ/IwQhASMEQRBqJAQgAEEkahA6IABBLGoQOiAAQTRqEGggAEFAayICQQA2AgQgAkEANgIAIAJBADYCCCAAQQA2AlAgAEEANgJMIABBADYCVCAAQQA6AAAgAEEANgIEIABBADYCCCAAQQA2AgwgAEEBNgIQIABCADcCFCAAQgA3AhwgAUMAAAAAQwAAAAAQMiAAIAEpAwA3AiQgAUMAAAAAQwAAAAAQMiAAIAEpAwA3AiwgAEF/NgJYIAEkBAuPAgIGfwJ9IwQhCSMEQRBqJAQgCSIIQQhqIgcgBCADEEBDAACAPyAHKgIAIg0gDZQgByoCBCINIA2UkpUhDiAAKAIgIgAgAkEUbGohBCABIAJIBEAgBUH/AXEhAiAGQf8BcSEKIAVBCHZB/wFxIQsgBkEIdkH/AXEhDCAFQRB2Qf8BcSEFIAZBEHZB/wFxIQYgAUEUbCAAaiEAA0AgCCAAIAMQQCAAIAIgCiAOIAgqAgAgByoCAJQgCCoCBCAHKgIElJKUQwAAAABDAACAPxBkIg0Q4AIgCyAMIA0Q4AJBCHRyIAUgBiANEOACQRB0ciAAKAIQQYCAgHhxcjYCECAAQRRqIgAgBEkNAAsLIAkkBAu0AQIGfwJ9IwQhBiMEQRBqJAQgBiEEIAAoAggiAkEASgRAA0AgACgCBCAFQQJ0aigCACIHKAIAQQBKBEBBACECA0AgBCAHIAIQpQYiAyoCBCABKgIAIgiUIAMqAgggASoCBCIJlCAIIAMqAgyUIAkgAyoCEJQQNiADIAQpAgA3AgQgAyAEKQIINwIMIAJBAWoiAiAHKAIASA0ACyAAKAIIIQILIAVBAWoiBSACSA0ACwsgBiQEC+kBAQh/IwQhByMEQRBqJAQgByIDEGggAEEANgIMIABBADYCECAAKAIIQQBKBEADQCAAKAIEIARBAnRqKAIAIgFBDGoiAhB+RQRAIAMgAigCABD3AyABQRhqIQUgAigCAEEASgRAQQAhAQNAIAUgAiABEJQCLwEAEPoDIQYgAyABEPoDIgggBikCADcCACAIIAYpAgg3AgggCCAGKAIQNgIQIAFBAWoiASACKAIASA0ACwsgBSADEJAHIAJBABDAASAAIAUoAgAgACgCEGo2AhALIARBAWoiBCAAKAIISA0ACwsgAxBnIAckBAu+AQEBfyAGQYCAgAhPBEACQCAIQQ9xRSAHQwAAAABfcgRAIAAgASACIAMgBCAFIAYQ/AEMAQsgAEHIAGoiCRB+RQRAIAEgCRBwKAIARgRAIAAoAhghASAAIAIgAyAHIAgQoAMgACAGEIECIAAgASAAKAIYIAIgAyAEIAUQpAYMAgsLIAAgARCYAiAAKAIYIQEgACACIAMgByAIEKADIAAgBhCBAiAAIAEgACgCGCACIAMgBCAFEKQGIAAQ5QILCwt7AQF/IApBgICACE8EQAJAIABByABqIgsQfkUEQCABIAsQcCgCAEYEQCAAQQZBBBCwASAAIAIgAyAEIAUgBiAHIAggCSAKENoEDAILCyAAIAEQmAIgAEEGQQQQsAEgACACIAMgBCAFIAYgByAIIAkgChDaBCAAEOUCCwsLggsCDX8OfSMEIRAjBEEQaiQEIAdFBEAgBhBcIAZqIQcLIBAhDyADIAAqAgggAyoCAKiykiIZOAIAIAMgACoCDCADKgIEqLKSIhc4AgQgFyAFKgIMIhheRQRAIAIgACoCACIClSEdIAhDAAAAAF4iESAXIAIgHZQiJJIiAiAFKgIEIhpdRXJBAXMgByAGS3EEQCAHIQwDQCAGQQogDCAGaxDpASIGQQFqIAcgBhsiBiAHSSAkIAKSIhcgGl1xBEAgFyECDAELCwUgFyECCyARIAciCyAGIg1rQZHOAEhyBH8gBwUgBiAHSSACIBhdcQR/IAYhDCACIRcDfyAMQQogCyAMaxDpASIMQQFqIAcgDBsiDCAHSSAkIBeSIhcgGF1xBH8MAQUgDAsLBSAGCwsiDiAGRwRAIAFBDGoiEigCACEUIAEgDiANayIHQQZsIhUgB0ECdBCwASABKAI0IQsgASgCOCEHIAYgDkkEQAJAIAYhDSABKAIwIQwgCyEGIBkhFwNAAkAgDSELIBMhCiAXIRkgAiEYA0ACQCARRQRAIA0hCyAXIRkMAQsgCkUEQCAAIB0gCyAOIAggGSADKgIAk5MQ1wQiCkEBaiAKIAogC0YbIQoLIAsgCkkEQCAKIRMgGCECDAELIAMqAgAhGSALIA5JBEADQCALQQFqIAsgCywAACILEOICIgogC0EKRnIbIQsgCiALIA5JcQ0ACwsgJCAYkiEYIAsgDk8NBEEAIQoMAQsLIA8gCywAACIKIg02AgAgCkF/SgR/IAtBAWoFAn8gDyALIA4QpgIhFiAPKAIAIg1FDQIgFgsgC2oLIgsgDkkCfwJAIA1BIE8NAAJ/AkACQCANQQprDgQBAwMAAwsgGSEXQQYMAQsgAyoCACEXQQdBBiAkIAKSIgIgBSoCDF4bCwwBCyAAIA1B//8DcRDhAiIKBEACQCAdIAoqAgSUIRcCQCANQQlrIg0EQCANQRdHDQELDAELIBkgHSAKKgIQlJIhGyACIB0gCioCDJSSIRggAiAdIAoqAhSUkiEcIBkgHSAKKgIIlJIiGiAFKgIIIiBfBEAgGyAFKgIAIiFgBEAgCioCGCEeIAoqAhwhHyAKKgIgISIgCioCJCEjIAkEQAJAIBogIV0EQCAeQwAAgD8gGyAhkyAbIBqTlZMgIiAek5SSIR4gISEaCyAYIAUqAgQiIV0EQCAfICMgH5NDAACAPyAcICGTIBwgGJOVk5SSIR8gISEYCyAbICBeBEAgHiAgIBqTIBsgGpOVICIgHpOUkiEiICAhGwsgHCAFKgIMIiBeBEAgHyAjIB+TICAgGJMgHCAYk5WUkiEjICAhHAsgGCAcYEUNACAZIBeSIRdBBgwGCwsgByAMQf//A3EiDTsBACAHIAxBAWo7AQIgByAMQQJqQf//A3EiCjsBBCAHIA07AQYgByAKOwEIIAcgDEEDajsBCiAGIBo4AgAgBiAYOAIEIAYgBDYCECAGIB44AgggBiAfOAIMIAYgGzgCFCAGIBg4AhggBiAENgIkIAYgIjgCHCAGIB84AiAgBiAbOAIoIAYgHDgCLCAGIAQ2AjggBiAiOAIwIAYgIzgCNCAGIBo4AjwgBkFAayAcOAIAIAYgBDYCTCAGIB44AkQgBiAjOAJIIAdBDGohByAMQQRqIQwgBkHQAGohBgsLCwVDAAAAACEXCyAZIBeSIRdBAAtBB0dxBEAgCyENDAILCwsLBSALIQYLIAFBGGoiACAGIAEoAiBrQRRtEPcDIBIgByABKAIUa0EBdRDAASASKAIAIQMgASABKAIAQX9qEKUGIgQgBCgCACADIBQgFWprajYCACABIAY2AjQgASAHNgI4IAEgACgCADYCMAsLIBAkBAsrACAFQYCAgAhPBEAgACABEGMgACACIAMgBCAHEKcGIAAgBUEAIAYQjwILCywAIAVBgICACE8EQCAAIAEQYyAAIAIQYyAAIAMQYyAAIAQQYyAAIAUQgQILCzAAIAVBgICACE8EQCAAIAEQYyAAIAIQYyAAIAMQYyAAIAQQYyAAIAVBASAGEI8CCwtVAQF/IAAoAgAiAiAAKAIERgRAIAAgACACQQFqEFgQ3gQgACgCACECCyAAKAIIIAJBBHRqIgIgASkCADcCACACIAEpAgg3AgggACAAKAIAQQFqNgIAC9cBAgR/AX0jBCEDIwRBEGokBCADIQIgABA6IABBFGoQ9wEgAEGEAWohBCAAQSRqIQEDQCABEDogAUEIaiIBIARHDQALIABBADYCCCAAQwAAAAA4AgwgAEMAAAAAOAIQIAJDAAAAxkMAAADGQwAAAEZDAAAARhA2IAAgAikCADcCFCAAIAIpAgg3AhxBACEBA0AgAiABskMAAABAlEPbD0lAlEMAAEBBlSIFEPkCIAUQ+AIQMiAAQSRqIAFBA3RqIAIpAwA3AgAgAUEBaiIBQQxHDQALIAMkBAs2ACAAQYABSQR/QQEFIABBgBBJBH9BAgVBAEEEQQMgAEGAeHEiAEGAsANGGyAAQYC4A0YbCwsLphIBB38jBCEBIwRBEGokBCAARQRAEMcCIQALIAFDAAAAAEMAAAAAQwAAAABDAACAPxA2IABBoAFqIgIgASkCADcCACACIAEpAgg3AgggAUOamRk/Q5qZGT9DmpkZP0MAAIA/EDYgAEGwAWoiAiABKQIANwIAIAIgASkCCDcCCCABQ9ejcD9D16NwP0PXo3A/QwAAgD8QNiAAQcABaiICIAEpAgA3AgAgAiABKQIINwIIIAFDAAAAAEMAAAAAQwAAAABDAAAAABA2IABB0AFqIgIgASkCADcCACACIAEpAgg3AgggAUMAAIA/QwAAgD9DAACAP0NI4Xo/EDYgAEHgAWoiAiABKQIANwIAIAIgASkCCDcCCCABQwAAAABDAAAAAEMAAAAAQ5qZmT4QNiAAQfABaiICIAEpAgA3AgAgAiABKQIINwIIIAFDAAAAAEMAAAAAQwAAAABDAAAAABA2IABBgAJqIgIgASkCADcCACACIAEpAgg3AgggAUMAAIA/QwAAgD9DAACAP0MAAIA/EDYgAEGQAmoiAiABKQIANwIAIAIgASkCCDcCCCABQ7gehT5DPQoXP0NI4Xo/Q83MzD4QNiAAQaACaiICIAEpAgA3AgAgAiABKQIINwIIIAFDuB6FPkM9Chc/Q0jhej9DH4UrPxA2IABBsAJqIgIgASkCADcCACACIAEpAgg3AgggAUOPwnU/Q4/CdT9Dj8J1P0MAAIA/EDYgAEHAAmoiBiABKQIANwIAIAYgASkCCDcCCCABQ4XrUT9DhetRP0OF61E/QwAAgD8QNiAAQdACaiIHIAEpAgA3AgAgByABKQIINwIIIAFDAACAP0MAAIA/QwAAgD9DXI8CPxA2IABB4AJqIgIgASkCADcCACACIAEpAgg3AgggAUP2KFw/Q/YoXD9D9ihcP0MAAIA/EDYgAEHwAmoiAiABKQIANwIAIAIgASkCCDcCCCABQ0jhej9DSOF6P0NI4Xo/QxSuBz8QNiAAQYADaiICIAEpAgA3AgAgAiABKQIINwIIIAFD16MwP0PXozA/Q9ejMD9DzcxMPxA2IABBkANqIgIgASkCADcCACACIAEpAgg3AgggAUNI4fo+Q0jh+j5DSOH6PkPNzEw/EDYgAEGgA2oiAiABKQIANwIAIAIgASkCCDcCCCABQ0jh+j5DSOH6PkNI4fo+QwAAgD8QNiAAQbADaiICIAEpAgA3AgAgAiABKQIINwIIIAFDuB6FPkM9Chc/Q0jhej9DAACAPxA2IABBwANqIgIgASkCADcCACACIAEpAgg3AgggAUO4HoU+Qz0KFz9DSOF6P0MUrkc/EDYgAEHQA2oiAiABKQIANwIAIAIgASkCCDcCCCABQx+F6z5DcT0KP0PNzEw/Q5qZGT8QNiAAQeADaiICIAEpAgA3AgAgAiABKQIINwIIIAFDuB6FPkM9Chc/Q0jhej9DzczMPhA2IABB8ANqIgIgASkCADcCACACIAEpAgg3AgggAUO4HoU+Qz0KFz9DSOF6P0MAAIA/EDYgAEGABGoiAiABKQIANwIAIAIgASkCCDcCCCABQ4/CdT1DFK4HP0NI4Xo/QwAAgD8QNiAAQZAEaiICIAEpAgA3AgAgAiABKQIINwIIIAFDuB6FPkM9Chc/Q0jhej9DUriePhA2IABBoARqIgMgASkCADcCACADIAEpAgg3AgggAUO4HoU+Qz0KFz9DSOF6P0PNzEw/EDYgAEGwBGoiBCABKQIANwIAIAQgASkCCDcCCCABQ7gehT5DPQoXP0NI4Xo/QwAAgD8QNiAAQcAEaiIFIAEpAgA3AgAgBSABKQIINwIIIAFDFK7HPkMUrsc+QxSuxz5DAACAPxA2IABB0ARqIgIgASkCADcCACACIAEpAgg3AgggAUMpXA8+Q65H4T5DzcxMP0MUrkc/EDYgAEHgBGoiAiABKQIANwIAIAIgASkCCDcCCCABQylcDz5DrkfhPkPNzEw/QwAAgD8QNiAAQfAEaiICIAEpAgA3AgAgAiABKQIINwIIIAFDzcxMP0PNzEw/Q83MTD9DKVwPPxA2IABBgAVqIgIgASkCADcCACACIAEpAgg3AgggAUO4HoU+Qz0KFz9DSOF6P0MfhSs/EDYgAEGQBWoiAiABKQIANwIAIAIgASkCCDcCCCABQ7gehT5DPQoXP0NI4Xo/QzMzcz8QNiAAQaAFaiICIAEpAgA3AgAgAiABKQIINwIIIAEgAyAHQ2ZmZj8QxwEgAEGwBWoiAyABKQIANwIAIAMgASkCCDcCCCAAQcAFaiICIAQpAgA3AgAgAiAEKQIINwIIIAEgBSAHQ5qZGT8QxwEgAEHQBWoiBSABKQIANwIAIAUgASkCCDcCCCABIAMgBkPNzEw/EMcBIABB4AVqIgIgASkCADcCACACIAEpAgg3AgggASAFIAZDzczMPhDHASAAQfAFaiICIAEpAgA3AgAgAiABKQIINwIIIAFDFK7HPkMUrsc+QxSuxz5DAACAPxA2IABBgAZqIgIgASkCADcCACACIAEpAgg3AgggAUMAAIA/Q/Yo3D5DMzOzPkMAAIA/EDYgAEGQBmoiAiABKQIANwIAIAIgASkCCDcCCCABQ2ZmZj9DMzMzP0MAAAAAQwAAgD8QNiAAQaAGaiICIAEpAgA3AgAgAiABKQIINwIIIAFDAACAP0NmZuY+QwAAAABDAACAPxA2IABBsAZqIgIgASkCADcCACACIAEpAgg3AgggAUO4HoU+Qz0KFz9DSOF6P0MzM7M+EDYgAEHABmoiAiABKQIANwIAIAIgASkCCDcCCCABQ7gehT5DPQoXP0NI4Xo/QzMzcz8QNiAAQdAGaiICIAEpAgA3AgAgAiABKQIINwIIIABB4AZqIgIgBCkCADcCACACIAQpAgg3AgggAUMzMzM/QzMzMz9DMzMzP0MzMzM/EDYgAEHwBmoiAiABKQIANwIAIAIgASkCCDcCCCABQ83MTD5DzcxMPkPNzEw+Q83MTD4QNiAAQYAHaiICIAEpAgA3AgAgAiABKQIINwIIIAFDzcxMPkPNzEw+Q83MTD5DMzOzPhA2IABBkAdqIgAgASkCADcCACAAIAEpAgg3AgggASQEC6YSAQd/IwQhASMEQRBqJAQgAEUEQBDHAiEACyABQ2ZmZj9DZmZmP0NmZmY/QwAAgD8QNiAAQaABaiICIAEpAgA3AgAgAiABKQIINwIIIAFDmpkZP0OamRk/Q5qZGT9DAACAPxA2IABBsAFqIgIgASkCADcCACACIAEpAgg3AgggAUMAAAAAQwAAAABDAAAAAEMzMzM/EDYgAEHAAWoiAiABKQIANwIAIAIgASkCCDcCCCABQwAAAABDAAAAAEMAAAAAQwAAAAAQNiAAQdABaiICIAEpAgA3AgAgAiABKQIINwIIIAFDrkfhPUOuR+E9QylcDz5DH4VrPxA2IABB4AFqIgIgASkCADcCACACIAEpAgg3AgggAUMAAAA/QwAAAD9DAAAAP0MAAAA/EDYgAEHwAWoiAiABKQIANwIAIAIgASkCCDcCCCABQwAAAABDAAAAAEMAAAAAQwAAAAAQNiAAQYACaiICIAEpAgA3AgAgAiABKQIINwIIIAFD9ijcPkP2KNw+Q/Yo3D5DFK7HPhA2IABBkAJqIgIgASkCADcCACACIAEpAgg3AgggAUPXo/A+Q9ej8D5D16MwP0PNzMw+EDYgAEGgAmoiAiABKQIANwIAIAIgASkCCDcCCCABQz0K1z5DhevRPkMK1yM/Q9ejMD8QNiAAQbACaiICIAEpAgA3AgAgAiABKQIINwIIIAFDcT2KPkNxPYo+Q3E9Cj9D4XpUPxA2IABBwAJqIgYgASkCADcCACAGIAEpAgg3AgggAUMK16M+QwrXoz5DrkchP0NSuF4/EDYgAEHQAmoiByABKQIANwIAIAcgASkCCDcCCCABQ83MzD5DzczMPkPNzEw/Q83MTD4QNiAAQeACaiICIAEpAgA3AgAgAiABKQIINwIIIAFDzczMPkPNzMw+Q83MDD9DzcxMPxA2IABB8AJqIgIgASkCADcCACACIAEpAgg3AgggAUPNzEw+QwAAgD5DmpmZPkOamRk/EDYgAEGAA2oiAiABKQIANwIAIAIgASkCCDcCCCABQ83MzD5DzczMPkPNzEw/Q5qZmT4QNiAAQZADaiICIAEpAgA3AgAgAiABKQIINwIIIAFDzczMPkPNzMw+Q83MTD9DzczMPhA2IABBoANqIgIgASkCADcCACACIAEpAgg3AgggAUOF69E+QxSuxz5DzcxMP0OamRk/EDYgAEGwA2oiAiABKQIANwIAIAIgASkCCDcCCCABQ2ZmZj9DZmZmP0NmZmY/QwAAAD8QNiAAQcADaiICIAEpAgA3AgAgAiABKQIINwIIIAFDAACAP0MAAIA/QwAAgD9DmpmZPhA2IABB0ANqIgIgASkCADcCACACIAEpAgg3AgggAUOF69E+QxSuxz5DzcxMP0OamRk/EDYgAEHgA2oiAiABKQIANwIAIAIgASkCCDcCCCABQzMzsz5DzczMPkP2KBw/Q1K4Hj8QNiAAQfADaiICIAEpAgA3AgAgAiABKQIINwIIIAFDzczMPkOPwvU+Q4/CNT9DcT1KPxA2IABBgARqIgIgASkCADcCACACIAEpAgg3AgggAUMfhes+Q3E9Cj9DzcxMP0MAAIA/EDYgAEGQBGoiAiABKQIANwIAIAIgASkCCDcCCCABQ83MzD5DzczMPkNmZmY/Q2Zm5j4QNiAAQaAEaiIDIAEpAgA3AgAgAyABKQIINwIIIAFDZmbmPkNmZuY+Q2ZmZj9DzcxMPxA2IABBsARqIgQgASkCADcCACAEIAEpAgg3AgggAUMUrgc/QxSuBz9DUrheP0PNzEw/EDYgAEHABGoiBSABKQIANwIAIAUgASkCCDcCCCABQwAAAD9DAAAAP0MAAAA/QwAAgD8QNiAAQdAEaiICIAEpAgA3AgAgAiABKQIINwIIIAFDmpkZP0OamRk/QzMzMz9DAACAPxA2IABB4ARqIgIgASkCADcCACACIAEpAgg3AgggAUMzMzM/QzMzMz9DZmZmP0MAAIA/EDYgAEHwBGoiAiABKQIANwIAIAIgASkCCDcCCCABQwAAgD9DAACAP0MAAIA/QwrXIz4QNiAAQYAFaiICIAEpAgA3AgAgAiABKQIINwIIIAFDFK5HP0OF61E/QwAAgD9DmpkZPxA2IABBkAVqIgIgASkCADcCACACIAEpAgg3AgggAUMUrkc/Q4XrUT9DAACAP0NmZmY/EDYgAEGgBWoiAiABKQIANwIAIAIgASkCCDcCCCABIAMgB0PNzEw/EMcBIABBsAVqIgMgASkCADcCACADIAEpAgg3AgggAEHABWoiAiAEKQIANwIAIAIgBCkCCDcCCCABIAUgB0OamRk/EMcBIABB0AVqIgUgASkCADcCACAFIAEpAgg3AgggASADIAZDzcxMPxDHASAAQeAFaiICIAEpAgA3AgAgAiABKQIINwIIIAEgBSAGQ83MzD4QxwEgAEHwBWoiAiABKQIANwIAIAIgASkCCDcCCCABQwAAgD9DAACAP0MAAIA/QwAAgD8QNiAAQYAGaiICIAEpAgA3AgAgAiABKQIINwIIIAFDZmZmP0MzMzM/QwAAAABDAACAPxA2IABBkAZqIgIgASkCADcCACACIAEpAgg3AgggAUNmZmY/QzMzMz9DAAAAAEMAAIA/EDYgAEGgBmoiAiABKQIANwIAIAIgASkCCDcCCCABQwAAgD9DmpkZP0MAAAAAQwAAgD8QNiAAQbAGaiICIAEpAgA3AgAgAiABKQIINwIIIAFDAAAAAEMAAAAAQwAAgD9DMzOzPhA2IABBwAZqIgIgASkCADcCACACIAEpAgg3AgggAUMAAIA/QwAAgD9DAAAAAENmZmY/EDYgAEHQBmoiAiABKQIANwIAIAIgASkCCDcCCCAAQeAGaiICIAQpAgA3AgAgAiAEKQIINwIIIAFDAACAP0MAAIA/QwAAgD9DMzMzPxA2IABB8AZqIgIgASkCADcCACACIAEpAgg3AgggAUPNzEw/Q83MTD9DzcxMP0PNzEw+EDYgAEGAB2oiAiABKQIANwIAIAIgASkCCDcCCCABQ83MTD5DzcxMPkPNzEw+QzMzsz4QNiAAQZAHaiIAIAEpAgA3AgAgACABKQIINwIIIAEkBAsDAAELSwEDfyAAKAIEIAFIBEAgAUEMbBBTIQIgAEEIaiIDKAIAIgQEQCACIAQgACgCAEEMbBBGGiADKAIAEEELIAMgAjYCACAAIAE2AgQLC0sBA38gACgCBCABSARAIAFBMGwQUyECIABBCGoiAygCACIEBEAgAiAEIAAoAgBBMGwQRhogAygCABBBCyADIAI2AgAgACABNgIECwuYAQECfyABIAAoAghrQRhtIQMgACgCACIBIAAoAgRGBEAgACAAIAFBAWoQWBD5AyAAKAIAIQELIAEgA0oEQCAAKAIIIANBGGxqIgRBGGogBCABIANrQRhsELMBGgsgACgCCCADQRhsaiIBIAIpAgA3AgAgASACKQIINwIIIAEgAikCEDcCECAAIAAoAgBBAWo2AgAgACgCCBoLXwEBfyAAKAIAIgIgACgCBEYEQCAAIAAgAkEBahBYEPkDIAAoAgAhAgsgACgCCCACQRhsaiICIAEpAgA3AgAgAiABKQIINwIIIAIgASkCEDcCECAAIAAoAgBBAWo2AgALxwIBAX8gAEHU2ABqEGcgAEHA2ABqKAIIIgEEQCABEEELIABBtNgAaigCCCIBBEAgARBBCyAAQajYAGoQZyAAQYTYAGoQZyAAQfzWAGoQ1QQgAEGMOmoiAUEcahBnIAFBEGoQZyABQQRqEGcgAEGAOmooAggiAQRAIAEQQQsgAEH0OWooAggiAQRAIAEQQQsgAEHYOWoiARD2CSABQQxqEGcgASgCCCIBBEAgARBBCyAAQcQ5aigCCCIBBEAgARBBCyAAQdw3ahC4BSAAQcA3ahD3CSAAQZw3ahCbBCAAQag0ahBnIABBnDRqEGcgAEGQNGoQZyAAQYQ0aigCCCIBBEAgARBBCyAAQfgzaigCCCIBBEAgARBBCyAAQYQzahBnIABB+DJqEGcgAEHsMmoQZyAAQeAyahBnIABB1DJqEGcgAEEIahC8BgtgAQF9IAAqAgAgASoCACICXgRAIAAgAjgCAAsgACoCBCABKgIEIgJeBEAgACACOAIECyAAKgIIIAEqAgAiAl0EQCAAIAI4AggLIAAqAgwgASoCBCICXQRAIAAgAjgCDAsL8QEBAX8gAkGAAUkEfyAAIAI6AABBAQUCfyACQYAQSQRAQQAgAUECSA0BGiAAIAJBBnZBwAFqOgAAIAAgAkE/cUGAAXI6AAFBAgwBCwJAIAJBgHhxQYCwA2siAwRAIANBgAhHDQFBAAwCC0EAIAFBBEgNARogACACQRJ2QfABajoAACAAIAJBDHZBP3FBgAFyOgABIAAgAkEGdkE/cUGAAXI6AAIgACACQT9xQYABcjoAA0EEDAELQQAgAUEDSA0AGiAAIAJBDHZB4AFqOgAAIAAgAkEGdkE/cUGAAXI6AAEgACACQT9xQYABcjoAAkEDCwsLOgAgAEEANgIMIABCADcCACAAQQA7AQggAEEBNgIQIABCADcCFCAAQgA3AhwgAEIANwIkIABBLGoQTwtLAQN/IAAoAgQgAUgEQCABQThsEFMhAiAAQQhqIgMoAgAiBARAIAIgBCAAKAIAQThsEEYaIAMoAgAQQQsgAyACNgIAIAAgATYCBAsLhwEBAX8gACgCACICIAAoAgRGBEAgACAAIAJBAWoQWBDoCSAAKAIAIQILIAAoAgggAkE4bGoiAiABKQIANwIAIAIgASkCCDcCCCACIAEpAhA3AhAgAiABKQIYNwIYIAIgASkCIDcCICACIAEpAig3AiggAiABKQIwNwIwIAAgACgCAEEBajYCAAs9AQF/IAAoAggiAUGAgIAgcQR/QdeTAgUCfyABQYAIcQRAQd+TAiAAKAIAQd+jAhCHAkUNARoLQe+TAgsLC08BA39BmKkEKAIAQeAyaiIDKAIAIgJBAEoEQAJAA38gACADIAJBf2oiARBQKAIARg0BIAJBAUoEfyABIQIMAQVBfwsLIQELBUF/IQELIAELQgAgACABKgIAIAAqAgCSOAIAIAAgASoCBCAAKgIEkjgCBCAAIAEqAgAgACoCCJI4AgggACABKgIEIAAqAgySOAIMC9sCAgV/AX1BmKkEKAIAIgJBpDZqIgMoAgBBf0YEQCACQaA1aigCACIBBEAgASgCCEGAgBBxRQRAIAJB3DVqKAIARQRAIAJB9DVqKAIARQRAIAIoAkgiBBDoASAAQQRxQQBHcSACKAJMIgUQ6AEgAEEIcUEAR3FzBEACQCABKAK8AkUEQCABLADFAgRAIARBARD2AgRAIAEgASoCXCABQfwDahCNAZMQvQIMAwsgBUEBEPYCRQ0CIAEgASoCXCABQfwDahCNAZIQvQIMAgsLQwAAAAAgAUH8A2oQjQEgARDlAZMgAUGIBmoQjQGSEDkhBiACKAJIQQEQ9gIEQCADQQM2AgAgAkGsNmpBAjYCACACQZw2akEwNgIAIAaMIQYMAQsgAigCTEEBEPYCBEAgA0ECNgIAIAJBrDZqQQM2AgAgAkGcNmpBMDYCAAVDAAAAACEGCwsLCwsLCwsgBgv1CgMKfwF+An0jBCEHIwRBEGokBCAHQQhqIQYgByEFQZipBCgCACEAEP8CBEAgAEHcNWpBADYCAAUgAEHcNWoiBCgCAEUhAQJAAkAgAEHgNWoiAygCAAR/IAEEfyAAQew1aiIBKgIAIAAqAhhDAAAgQZSTQwAAAAAQOSELIAEgCzgCACAAQdg3aioCAEMAAAAAX0UgC0MAAAAAX0VyDQIgA0EANgIADAIFQQALBSABBH8MAgVBAAsLIQEMAQtBA0EBEJkCIQEgBCgCAAR/QQAFIAAsAIgCBH9BAEEBEG0EfyAAKAIIQQFxQQBHBUEACwVBAAsLIQILIAEgAnIEQAJAIABBoDVqKAIAIgFFBEAgAEHgMmooAgBBf2pBgYCAgHhBfxDiBCIBRQ0BCyADIAE2AgAgBCABNgIAIABB7DVqQwAAAAA4AgAgAEHoNWpDAAAAADgCACAAQfA1aiACQQFzQQFxOgAAIABBxDVqQQNBBCACGzYCAAsLIAAqAhggAEHoNWoiAioCAJIhCyACIAs4AgAgBCgCAARAAkAgAEHENWoiAygCACIBQQRGBEACQCAAQew1aiIBKgIAIQwgASAMIAtDzcxMvpJDzcxMPZUQWhA5OAIAQQxBBBCZAkEBcUENQQQQmQJBAXFrIggEQCAIELUGIAFDAACAPzgCAAtBAxCMAQRAIAQoAgBFBEBBACECQQAhAQwECyADKAIAIQEMAQsgAEHwNWoiAi0AACABKgIAQwAAgD9dcSIDIQEgAiABOgAAAn8CQCADRQ0AIABBoDVqKAIABH9BACECQQEFIAFB/wFxRQ0BQQAhAkEACwwBCyAEKAIAIQJBAAshASAEQQA2AgAMAgsLIAFBA0YEfyAAQew1aiIBKgIAIQsgASALIAIqAgBDzcxMvpJDzcxMPZUQWhA5OAIAQQBBARBtBEBBAUF/IAAsAIkCGxC1BgsgACwAiAIEQEEAIQIFIAQoAgAhAgtBAAVBACECQQALIQELBUEAIQJBACEBCwJAAkAgAEG0M2ooAgBFDQAgAEHFM2osAAANAAwBC0EQQQIQmQIEQCABIABB8AFqEJUBIABBiAdqEJUBc0EBc3IhAQsLIAQoAgAiAwRAIAMoAghBBHFFBEAgBhA6AkACQAJ9AkAgAEHENWoiCCgCACIDQQNGBEAgACwAiQINASAFQQFBAEMAAAAAQwAAAAAQkgEgBiAFKQMANwMAIAgoAgAhAwsgA0EERw0AIAVBBEEAQwAAAABDAAAAABCSASAGIAUpAwAiCjcDACAKp74MAQsgBioCAAtDAAAAAFwNACAGKgIEQwAAAABcDQAMAQsgBSAGIAAqAhhDAABIRJQgACoCpAEgACoCqAEQRZQQYhBRIAQoAgAoAvAFQQxqIAUQtgIgAEH/NWpBAToAACAEKAIAEIIDCwsLIAIEQAJAAkAgAEGgNWooAgAiBUUNACACIAUoAvAFRw0ADAELIABB/jVqQQA6AAAgAEH/NWpBAToAACACEIkEIgIQmQUgAhB0IAIoAoAGRQRAIAJBABCLBAsgAigCvAJBAkYEQCAAQfQ1akEBNgIACwsgBEEANgIACyABBEAgAEGgNWoiAygCACICBEACfwJAIAIoArwCQQJxIgUEfyAAQf41akEAOgAAIABB/zVqQQE6AAAMAQUgAiEBA0AgASgCCEGAgICoAXFBgICACEYEQCABKALsBSIBKAK8AkECcUUNAQsLAn8gASACRgR/IAUFIAEQdCABIAI2AvwFIAMoAgAoArwCQQJxCyEJIABB/jVqQQA6AAAgAEH/NWpBAToAACAJCw0BQQALDAELIABB9DVqKAIAQQFzCxC4BgsLCyAHJAQLRQEBfyAABEACQCAAIQEDQCABKAIIQYCAgKgBcUGAgIAIRgRAIAEoAuwFIgFFDQIMAQsLIAAgAUcEQCABIAA2AvwFCwsLC6IEAg1/An0jBCEEIwRBQGskBCAEQTBqIQcgBEEoaiEDIARBIGohBiAEQRBqIQkgBEEIaiEKIAQhCwJAAkBBmKkEKAIAIgBBsDZqIgEoAgBFIgVFDQAgAEH4NmooAgANACAAQaQ1aigCAARAIABB/jVqQQA6AAAgAEH/NWpBAToAAAsMAQsgAEH4NmoiAiABIAUbIQEgAEGcNmooAgBBIHEEQCAAQdQ2aiIFKAIAIggEQCABIAUgCCAAQaQ1aigCAEYbIQELCyABIAJGBEAgAiEBBSACKAIABEAgAEGgNWooAgAgAEH8NmooAgAoAuwFRgRAAkAgAEGAN2oqAgAiDSABKgIIIg5dRQRAIA0gDlwNASAAQYQ3aioCACABKgIMXUUNAQsgAiEBCwsLCyAAQfQ1aiIIKAIABEAgAUEUaiEFIAFBBGohAgUgAyABQRRqIgUgAUEEaiICKAIAQQxqEDUgBiABQRxqIAIoAgBBDGoQNSAHIAMgBhBDIAIoAgAgBxC2BiADIAIoAgBBABDqBiAGIAIoAgBB2ABqIAMQQCAFIAYQ7AkgAigCACIDKAIIQYCAgAhxBEACfyADKALsBSEMIAogByAGEDUgCyAHQQhqIAYQNSAJIAogCxBDIAwLIAkQtgYLCxByIABBoDVqIAIoAgA2AgAgASgCACAIKAIAIAUQqgQgAEG8NWogASgCADYCACAAQZg2akEAOgAACyAEJAQLYwEBfSAAQQJJBH8gASABKgIEIAJBBGoiACoCACACKgIMIgMQZDgCBCAAIQIgAUEMagUgASABKgIAIAIqAgAgAioCCCIDEGQ4AgAgAUEIagsiACAAKgIAIAIqAgAgAxBkOAIACycBAn8jBCECIwRBEGokBCACQQA2AgAgAiAAIAEQpgIhAyACJAQgAwt0AQN/IwQhAiMEQSBqJAQgAiABKQIINwMQIAJBGGoiAyACKQIQNwIAIAJBCGoiBCAAIAEgAxDqAiAAIAQpAwA3AgAgAiABKQIINwMAIAMgAikCADcCACAEIABBCGoiACABIAMQ6gIgACAEKQMANwIAIAIkBAuEAQECfyAAKAIIIQQgACgCACIDIAAoAgRGBEAgACAAIANBAWoQWBCFAiAAKAIAIQMLIAMgASAEa0ECdSIBSgRAIAAoAgggAUECdGoiBEEEaiAEIAMgAWtBAnQQswEaCyAAKAIIIAFBAnRqIAIoAgA2AgAgACAAKAIAQQFqNgIAIAAoAggaC1cBA38gACgCACICKAIIIgNBgICAIHEgASgCACIBKAIIIgRBgICAIHFrIgBFBEAgA0GAgIAQcSAEQYCAgBBxayIARQRAIAIuAYYBIAEuAYYBayEACwsgAAtoAQR/An8gAEEMaiICKAIAQQBKBH8DfyACKAIIIAFBA3RqKAIEIgNBf0cEQCAAIAMQ5gIoAggiAwRAIAMQQQsLIAFBAWoiASACKAIASA0AIAALBSAACyEEIAIQTyAECxBPIABBADYCGAsoAQJ/IABBGGohAQNAIAFBdGoiASgCCCICBEAgAhBBCyAAIAFHDQALCyEAIABBBGoQaCAAQRBqEGggAEEcahBoIABBAEHwHBBqGgsvAQF/IABBGGohAQNAIABBADYCBCAAQQA2AgAgAEEANgIIIABBDGoiACABRw0ACwv3AQIHfwF+IwQhASMEQRBqJAQgAEEcaiIDEDogAEEkaiIEEDogAEEsaiIFEDogAEE0aiIGEDogAEFAayICEGYgAEHcAGoiBxA6IABCADcCACAAQgA3AgggAEIANwIQIABBADYCGCABQwAAAABDAAAAABAyIAUgASkDACIINwIAIAQgCDcCACADIAg3AgAgAUMAAAAAQwAAAAAQMiAGIAEpAwA3AgAgAEEAOgA8IAEQZiACIAEpAgA3AgAgAiABKQIINwIIIABBADYCUCAAQQA2AlQgAEP//39/OAJYIAFDAAAAAEMAAAAAEDIgByABKQMANwIAIAEkBAsGACAAEFQLBwAgABDJAQuXAgEFfyMEIQMjBEGgAmokBCADQZACaiEEIAAoAgAhAkGPnAJBmq4EIAAoAiAQwwdBfmpIGyEFIANBgAJqIgEgAjYCACABIAU2AgQgA0GAAkH8mwIgARBzGiADQYgCaiIBIAM2AgAgAEHCzAIgARDSAgRAIAAoAgBBAEoEQEEAIQEDQCAAIAEQVSICENABQZucAhDEBARAIAAgAkF/ENEDC0MAAAAAQwAAAEAQa0GLowIQxAQEQCAAIAJBARDRAwtDAAAAAEMAAIC/EGtBKkEgIAIoAgAiAiAAKAIQRhshBSAEIAE2AgAgBCAFNgIEIAQgAjYCCEGdnAIgBBBpEHkgAUEBaiIBIAAoAgBIDQALCxC3AQsgAyQEC/YMAxp/AX0BfCMEIQIjBEGgAmokBCACQZACaiEMIAJBgAJqIQogAkH4AWohEyACQfABaiEPIAJB6AFqIRAgAkHgAWohESACQdgBaiEUIAJB0AFqIRIgAkHIAWohFSACQcABaiEWIAJBuAFqIRcgAkGgAWohBSACQYgBaiEJIAJBgAFqIRggAkH4AGohGSACIQ0gAkHoAGohAyACQeAAaiEOIAJB2ABqIQggAkHQAGohCyACQcgAaiEEIAJBOGohASACQShqIQYgAkEgaiEHQZSMAiAAQQAQ6wEEQBDDAyEAIAdBhqQCNgIAQaOMAiAHEGkgBkMAAHpEIAAqAuAGIhuVuzkDACAGIBu7OQMIQbGMAiAGEGkgACgC6AYiBkEDbSEHIAEgACgC5AY2AgAgASAGNgIEIAEgBzYCCEHejAIgARBpIAAoAuwGIQEgBCAAKALwBjYCACAEIAE2AgRBhY0CIAQQaSALIAAoAvQGNgIAQaSNAiALEGlBs40CQaKMAhDkAxpB6I0CQZmuBBDkAxoQuAJBmKkEKAIAIgFB1DJqIgZBho4CEL8GIAggAUHAN2oiBCgCADYCAEGOjgJBl44CIAgQ1AIEQCAEKAIAQQBKBEBBACEAA0BBACAEIAAQUCgCABC+BiAAQQFqIgAgBCgCAEgNAAsLELcBCyAOIAFBnDRqIgQoAgA2AgBBrY4CQbSOAiAOENQCBEAgBCgCAEEASgRAQQAhAANAIAQgABB6KAIEIQggBCAAEHooAgAhGiAIBH9B5Y4CQZquBCAIKAIIIgdBgICACHEbIQtB8o4CQZquBCAHQYCAgIABcRshByAIKAIABUGargQhC0GargQhB0HgjgILIQggAyAaNgIAIAMgCDYCBCADIAs2AgggAyAHNgIMQcCOAiADEKABIABBAWoiACAEKAIASA0ACwsQtwELIA0gAUHYOWoiAygCADYCAEH9jgJBhY8CIA0Q1AIEQCADKAIAQQBKBEBBACEAA0AgAyAAEOYCEP0JIABBAWoiACADKAIASA0ACwsQtwELQZOPAhDUBQRAIBkgAUGYM2ooAgAiAAR/IAAoAgAFQeCOAgs2AgBByI8CIBkQaSAYIAFBnDNqKAIAIgAEfyAAKAIABUHgjgILNgIAQdyPAiAYEGkgAUGoM2ooAgAhACABQawzaioCALshHCABQaQzai0AACEDIAkgAUGgM2ooAgA2AgAgCSAANgIEIAkgHDkDCCAJIAM2AhBB9I8CIAkQaSABQbgzaigCACEAIAFBwDNqKgIAuyEcIAFBxTNqLQAAIQkgAUHgM2ooAgBBAnRBgAlqKAIAIQMgBSABQbQzaigCADYCACAFIAA2AgQgBSAcOQMIIAUgCTYCECAFIAM2AhRBqpACIAUQaSAXIAFB2DNqKAIAIgAEfyAAKAIABUHgjgILNgIAQeuQAiAXEGkgFiABQfQzaigCACIABH8gACgCAAVB4I4CCzYCAEGAkQIgFhBpIBUgAUGgNWooAgAiAAR/IAAoAgAFQeCOAgs2AgBBk5ECIBUQaSABQfQ1aigCACEAIBIgAUGkNWooAgA2AgAgEiAANgIEQaORAiASEGkgFCABQcQ1aigCAEECdEGACWooAgA2AgBBv5ECIBQQaSABLQDmBiEAIBEgAS0A5QY2AgAgESAANgIEQdKRAiAREGkgAUG0NWooAgAhACAQIAFBqDVqKAIANgIAIBAgADYCBEHwkQIgEBBpIAFB/zVqLQAAIQAgDyABQf41ai0AADYCACAPIAA2AgRBmpICIA8QaSATIAFB3DVqKAIAIgAEfyAAKAIABUHgjgILNgIAQcySAiATEGkgAUHsOGooAgAhACABQeg4aigCACEFIAogAUHUOGotAAA2AgAgCiAANgIEIAogAUH4OGo2AgggCiAFNgIMQeWSAiAKEGkQtwELIAEsAIgCRUGZrgQsAABFckUEQCAGKAIAQQBKBEBBACEAA0AgBiAAEFAoAgAiASgCCEGAgIAIcUUEQCABLAB7BEAgDCABLgGIATYCACANQSBB550CIAwQcxoQrgNDAAAAQJQhGxC9BiEFIA4gGyAbEDIgDCABQQxqIgEgDhA1IAUgASAMQcjJkXtDAAAAAEEPEHUgBUEAIBsgAUF/IA1BAEMAAAAAQQAQ/QELCyAAQQFqIgAgBigCAEgNAAsLCwsQ1QEgAiQEC0YBAX8gACgCACICIAAoAgRGBEAgACAAIAJBAWoQWBCXAyAAKAIAIQILIAAoAgggAmogASwAADoAACAAIAAoAgBBAWo2AgALxwECA38BfiABQQBHIgQEQCABQQA2AgALIABBjowCEOoEIgIEQAJAIAJBAhCRB0UEQCACKAJMGiACENoLIgVC/////wdVBH9BiKoEQcsANgIAQX8FIAWnCyIDQX9HBEAgAkEAEJEHRQRAIAMQUyIARQRAIAIQwwIaQQAhAAwECyAAIAMgAhDYCyADRwRAIAIQwwIaIAAQQUEAIQAMBAsgAhDDAhogBEUNAyABIAM2AgAMAwsLCyACEMMCGkEAIQALBUEAIQALIAALaQEDfwJ/QZipBCgCACEDIABBAEEAELsBIQIgAwtBtNgAaiIBKAIAQQBKBH8Cf0EAIQADQCACIAEgABCcASgCBEcEQCAAQQFqIgAgASgCAEgEQAwCBUEADAMLAAsLIAEgABCcAQsFQQALC10CA38BfiMEIQEjBEEQaiQEIABBCGoiAhA6IABBEGoiAxA6IABBADYCACAAQQA2AgQgAUMAAAAAQwAAAAAQMiADIAEpAwAiBDcCACACIAQ3AgAgAEEAOgAYIAEkBAvvAQEHfyMEIQIjBEEQaiQEQZipBCgCACEDQYTAAhC9ASACIgBDAAAAAEMAAAAAEDICf0HgiwIgABCZAyEGQwAAAABDAACAvxBrIABDAAAAAEMAAAAAEDJB64sCIAAQmQMhBUMAAAAAQwAAgL8QayAAQwAAAABDAAAAABAyQfeLAiAAEJkDIQBDAAAAAEMAAIC/EGtDAACgQhDOAUEAEOIGQYiMAiADQeTYAGoiAUEAQQlBABDdBRoQ7gIQigEQeSAGCwRAIAEoAgAQxQYLIAUEQCABKAIAIAMoAiQQxAYLIAAEQCABKAIAEMMGCyACJAQLTwEBfyACQQFzQQFxIQICQAJAEDwoArwDIgNFDQACQCAAIAMoAhBGBEAgAygCBCACRg0BCxDmBgwBCwwBCyAAQQFHBEAgASAAIAIQhwoLCwtpAgF/AX1BmKkEKAIAIgIqAvABIAJB0DNqKgIAk0MAAIBAkiACQZQzaigCACoCDJMgAUF/ahD/ASACQfAqaiICKgIAkhA5IQMgACgCBEEEcQRAIAMgAUEBahD/ASACKgIAkxBFIQMLIAMLoAEBA38jBCEEIwRBQGskBCAEIQICQAJAIABB4ARqIgMoAgBBAEwNAEEAIQADQCADIAAQqwQoAgAgAUcEQCAAQQFqIgAgAygCAE4NAgwBCwsgAyAAEKsEIQAMAQsgAkEANgIwIAJBADYCLCACQQA2AjQgAhDnCSADIAIQ6QkgAhD1ByADKAIIIAMoAgBBf2pBOGxqIgAgATYCAAsgBCQEIAALgAUCCH8EfSMEIQgjBEEgaiQEQZipBCgCACEFEDwhA0HH5oiJASABQcfmiIkBaiAAQQBHIgYbENABIAMgAEG2iwIgBhsQXiEAEHkgAyAAEIYKIgRBADYCDCAEIAE2AhAgBCACNgIEIAMgBDYCvAMgAyoCNCILQwAAAABcBEAgA0EMaiIAKgIAIQwFIANBDGoiACoCACILIQwgAyoChAQgC5MhCwsgBCADKgKwAyINIAVB1CpqKgIAkyIOOAIUIAQgCyADKgJYkyAOQwAAgD+SEDk4AhggBCADKALMASICNgIkIAQgAygC4AE2AiggBCACNgIgIAQgAjYCHCADQwAAAAA4ArgDIAMgDSAMkkMAAAAAkqiyOALIASAIIQUgBCAEQSxqIgYoAgAiAkUgAiABQQFqIgdGcgR/IAIFIAYiAigCBEEASARAIAIgAkEAEFgQpwMLIAJBADYCACAGKAIAC0UiAjoACAJAAkAgAkUNACAGIAcQpwMgAUEATgRAIAGyIQtBACECA0AgBUEMahBmIAVDAAAAADgCBCAFQwAAAAA4AgAgBUEANgIIIAUgArIgC5U4AgAgBiAFEIAEIAJBAWoiAiAHRw0ACwwBCwwBCyABQQBKBEAgA0HMA2ohCUEAIQIDQAJ/IAYgAhBVIQogBSAAKgIAQwAAAD+SIAIQ/wGSQwAAgL+SEGJD//9//yAAKgIAQwAAAD+SIAJBAWoiAhD/AZJDAACAv5IQYkP//39/EF0gCgtBDGoiByAFKQIANwIAIAcgBSkCCDcCCCAHIAkQtQIgASACRw0ACwsLIAMoAvQEIAQoAhAQqgYQ6QJBfxDvBENmZiY/lBDOASAIJAQLKwEBfxBgIQIgAEEASARAIAIoArwDKAIMIQALIABBAWogABD/ASABkhDtBAtXAgJ/AX0gAUEASARAIAAoAgwhAQsgAEEsaiIDIAFBAWoQVSEEIAIEfyAEKgIEIQUgAyABEFVBBGoFIAQqAgAhBSADIAEQVQshASAAIAUgASoCAJMQ7gQLFwEBfxBgKAK8AyIABH8gACgCEAVBAQsLFwEBfxBgKAK8AyIABH8gACgCDAVBAAsLtAIBB38jBCEDIwRBEGokBCADIQQQPCIALAB/RQRAIAAoArwDBEBBmKkEKAIAIQYQigEQ6gEgACgCvAMiASABKgIgIAAqAswBEDk4AiAgASABKAIMQQFqIgI2AgwgAiABKAIQSARAIABBuANqIgUgAhD/ASAAQbADaiICKgIAkyAGQdQqaioCAJI4AgAgACgC9AQgASgCDBD0AyABKAIcIQEFIABBuANqIgVDAAAAADgCACAAKAL0BEEAEPQDIAFBADYCDCABIAEoAiAiATYCHCAAQbADaiECCyAAIAAqAgwgAioCAJIgBSoCAJKosjgCyAEgACABNgLMASAEQwAAAABDAAAAABAyIAAgBCkDADcC6AEgAEMAAAAAOALwARDpAkF/EO8EQ2ZmJj+UEM4BCwsgAyQECzsAQZipBCgCAEGUM2ooAgAgAEGpiwIgABsQXiEAIAEQ9QIEQEEEEPUERQRAIAAQ7QILCyAAQcECEKoDC0gAQZipBCgCAEGUM2ooAgAgAEGaiwIgABsQXiEAIAEQ9QIEQEEIEPUEBEACQCACRQRAEPMGDQELIAAQ7QILCwsgAEHBAhCqAwtFAQF/QZipBCgCAEGUM2ooAgAhAiAABH8gAiAAEF4FIAIoAowCCyEAIAEQ9QIEQEEIEIsCBEAgABDtAgsLIABBwQIQqgMLwQEBBH8gACECAkACQANAAkACQAJAIAIsAAAOIQAEBAQEBAQEBAEEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAQQLIAIhAQwBCyACQQFqIQIMAQsLDAELIAIhAQNAIAFBAWoiASwAAA0ACyABIAJLBEADfyABQX9qIgMsAABBCWsiBARAIARBF0cNAwsgAyACSwR/IAMhAQwBBSADCwshAQsLIAEgAmshASAAIAJHBEAgACACIAEQswEaCyAAIAFqQQA6AAALuwICBX8BfSMEIQUjBEEQaiQEIAUhASAAQZipBCgCACICQaA1aigCAEYEQBCCBARAIAJBoDZqKAIARQRAIAJB9DVqKAIARQRAIAEgACkCiAY3AgAgASAAKQKQBjcCCCACQaQ2aiIEKAIAIgNBAXIEQCADIQIFIAEgACoCHCAAKgIsEDkgACoCWJMiBjgCCCABIAY4AgBBAEEAIgIgARCBBCAEKAIAIQMLIANBAUdBAXJFBEAgASAAKgJYjCIGOAIIIAEgBjgCAEEBIAIgARCBBCAEKAIAIQMLIANBAkYEfyABIAAqAiAgACoCMBA5IAAqAlyTIgY4AgwgASAGOAIEQQIgAiABEIEEIAQoAgAFIAMLQQNGBEAgASAAKgJcjCIGOAIMIAEgBjgCBEEDIAIgARCBBAsLCwsLIAUkBAu+AQEGfyMEIQMjBEEQaiQEIANBCGohBSADIQZBmKkEKAIAIgRBtDRqIQcgBEGUM2ooAgAgABBeEKwDBH8CfyAHKAIARQRAIAUgBEEQakMAAAA/EFEgBkMAAAA/QwAAAD8QMiAFQQggBhCcAgsgACABIAJBoIKA4AByEOsBRQRAEMgBQQAMAQsgAQR/IAEsAAAEf0EBBRDIASAEQag0aigCAEEBEOsCQQALBUEBCwsFIAcQigRBAAshCCADJAQgCAs/AQN/QZipBCgCACIBQZw0aiICKAIAIAFBqDRqKAIAIgNKBH8gAiADEHooAgAgAUGUM2ooAgAgABBeRgVBAAsLMQEEfyMEIQIjBEEQaiQEAn8QYEHMA2ohBCACIAAgARBDIAQLIAIQywIhBSACJAQgBQs/AQR/IwQhASMEQSBqJAQgARBgIgJByAFqIgMgABA1IAFBCGoiACADIAEQQyACQcwDaiAAEMsCIQQgASQEIAQLJAEBfxA8IgEgASgCqAYgAEEBamo2ArgGIAFB/////wc2ArwGCycBAX8QPCIBEL8BIACSIQAgASAAIAEQ0QGSOAJkIAFDAAAAADgCbAsXAQF/EDwiASAAOAJgIAFDAAAAADgCaAsTAEGYqQQoAgBBlDNqKAIAEIAFCxMAQZipBCgCAEGUM2ooAgAqAlwLEwBBmKkEKAIAQZQzaigCACoCWAtJAQJ/IAFBAEciBAR/IAEoAgAFIAAQXEEBagsgAhBcQQFqIgNJBEAgABBBIAMQUyEAIAQEQCABIAM2AgALCyAAIAIgAxBGGiAACy4BAX8QPCIBKgIMIAEqAliTIACSIQAgASAAOALIASABIAEqAuABIAAQOTgC4AELWgEDfyMEIQEjBEEQaiQEIAFBCGoiAxA8IgJBDGogAkHYAGoQQCABIAMgABA1IAJByAFqIgAgASkDADcCACABIAJB4AFqIgIgABCmASACIAEpAwA3AgAgASQECxgBAX8QYCIAKgLIASAAKgIMkyAAKgJYkgswAQJ/IwQhASMEQRBqJAQgARBgIgJByAFqIAJBDGoQQCAAIAEgAkHYAGoQNSABJAQLMgECf0GYqQQoAgAhARA8IgIgADgC7AQgAUHIMWogAhDlASIAOAIAIAFBtDFqIAA4AgALLgEBf0GYqQQoAgAiAEHYKmoqAgAgAEG0MWoqAgAgAEHIKmoqAgBDAAAAQJSSkgsKABBgQYwEahB2CyMCAX8CfSMEIQAjBEEQaiQEIAAQ8AIgACoCACECIAAkBCACCxIAQZipBCgCAEHINGpBATYCAAspAQF/QZipBCgCACICQfA0aiAAQQFxOgAAIAJBwDRqIAFBASABGzYCAAsLABBgLACAAUEARwsKABBgLAB9QQBHCxMAQZipBCgCAEGUM2ooAgAqAhgLEwBBmKkEKAIAQZQzaigCACoCFAuzAQEBf0GYqQQoAgAhASAAQQRxBH8gAUGgNWooAgBBAEcFAn8CQAJAAkACQCAAQQNxQQFrDgMCAQADC0EAIAFBoDVqKAIAIgBFDQMaIAAoAvAFIAFBlDNqKAIAKALwBUYMAwsgAUGgNWooAgAgAUGUM2ooAgAoAvAFRgwCC0EAIAFBoDVqKAIAIgBFDQEaIAAgAUGUM2ooAgAQlwUMAQsgAUGgNWooAgAgAUGUM2ooAgBGCwsL8QMAAn8CQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCAADjAAAQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiMkJSYnKCkqKywtLi8wC0H5swIMMAtBnbQCDC8LQa+GAgwuC0G4hgIMLQtBwIYCDCwLQciGAgwrC0HPhgIMKgtB3IYCDCkLQeSGAgwoC0HzhgIMJwtBgYcCDCYLQYmHAgwlC0GXhwIMJAtBqIcCDCMLQbKHAgwiC0G+hwIMIQtBzIcCDCALQeGHAgwfC0H1hwIMHgtB/4cCDB0LQYqIAgwcC0GEtQIMGwtBm4gCDBoLQamIAgwZC0G2iAIMGAtBvYgCDBcLQcuIAgwWC0GfsAIMFQtB2IgCDBQLQemIAgwTC0H5iAIMEgtBhIkCDBELQZaJAgwQC0GniQIMDwtBq4kCDA4LQbaJAgwNC0HAiQIMDAtBzYkCDAsLQfi1AgwKC0HgiQIMCQtBgrYCDAgLQfGJAgwHC0GGigIMBgtBlYoCDAULQaSKAgwEC0GxigIMAwtBx4oCDAILQdmKAgwBC0HqigILC3gBBH8jBCECIwRBMGokBEGYqQQoAgAhBCACQRBqIgMQ3gYgAyAANgIAIANBBGoiBSAEQbAraiAAQQR0aiIAKQIANwIAIAUgACkCCDcCCCAEQfgzaiADEN0GIAIgARCsBiAAIAIpAgA3AgAgACACKQIINwIIIAIkBAsJAEECIAAQ7wILlQEBAn9BmKkEKAIAQdQyaiICEHAoAgAiASAARwRAIAEoAvAFIABHBEAgAigCACIBQQFKBEACQCABQX5qIQEDQCACIAEQUCgCACAARwRAIAFBAEwNAiABQX9qIQEMAQsLIAIgARBQIAIgAUEBahBQIAIoAgAgAWtBAnRBfGoQswEaIAIgAigCAEF/ahBQIAA2AgALCwsLC4cBAQJ/QZipBCgCAEHgMmoiAhBwKAIAIABHBEAgAigCACIBQQFKBEACQCABQX5qIQEDQCACIAEQUCgCACAARwRAIAFBAEwNAiABQX9qIQEMAQsLIAIgARBQIAIgAUEBahBQIAIoAgAgAWtBAnRBfGoQswEaIAIgAigCAEF/ahBQIAA2AgALCwsLqgECA38DfSMEIQUjBEEgaiQEIAVBEGoiBiABIAIgBBCDBSAFQQhqIgcgAiADIAQQgwUgBSICIAMgASAEEIMFIAVBGGoiASAEIAYQQCABEJ0CIQggASAEIAcQQCABEJ0CIQkgASAEIAUQQCAIIAkgARCdAhBFEEUiCiAIWwRAIAAgBikDADcCAAUgCiAJWwRAIAAgBykDADcCAAUgACACKQMANwIACwsgBSQEC50BAgJ/BX0jBCEHIwRBIGokBCAHQRBqIgggASAAEEAgB0EIaiIBIAIgABBAIAcgAyAAEEAgCCoCACIMIAEqAgQiCpQgASoCACILIAgqAgQiDZSTIQkgBSAKIAcqAgAiCpQgCyAHKgIEIguUkyAJlTgCACAGIAwgC5QgDSAKlJMgCZUiCTgCACAEQwAAgD8gBSoCAJMgCZM4AgAgByQEC5IMAxt/AX4DfSMEIQcjBEHwAGokBCAHQUBrIQYgB0HoAGohESAHQThqIQ8gB0EwaiEJIAdBIGohDSAHQRBqIQogB0EIaiELIAchCCAHQdgAaiETIAdB0ABqIRQgB0HIAGohFSAHQeAAaiEWQZipBCgCACEFIAAoAghBwgBxRQRAIAAoApABQQBMBEAgACgClAFBAEwEQCAALAB7BEAgBSwAvwFFIRIgBUG0MWoqAgAiIUPNzKw/lCAhQ83MTD6UIAAqAkRDAACAP5KSEDmoskMAAEA/lKiyISFDAAAAAEMAAIBAIBIbISIgEUP//39/Q///f38QMiAPQ///f39D//9/fxAyQbuTAhC9ASADQQBKBEAgAEEMaiEXIABBFGohGyANQQhqIRggDUEEaiEZIA1BDGohGiAFQdA4aiEcIAVB8AFqIR0gBUHQM2ohHiAhjCEjA0AgBiAXIBsQNSAJIBcgBiAMQRhsQYAIaiIQEJ4CIAogDEEYbEGICGoiDiAiEFEgBiAJIAoQQCAIIA4gIRBRIAsgCSAIEDUgDSAGIAsQQyANKgIAIBgqAgBeBEAgDSAYEPADCyAZKgIAIBoqAgBeBEAgGSAaEPADCyANIAAgDBCLAyAKIAtBoMAAEJEBGiALLAAAIh8gCiwAAHJB/wFxBEAgHEEGIAxBAXFrNgIACwJAAkAgHwRAIAxFIAUsAOUHQQBHcQRAIAcgASkCADcDGCAGIAcpAhg3AgAgCCAAIAYQ8gIgDyAIKQMANwMAEHIgCywAACEOIAosAAAhEAwCBSAIIB0gHhBAIBQgDiAiEFEgFSAOICMQUSATIBQgFSAQEJ4CIAYgCCATEDUgACAGIBAgESAPELsGCwsgCywAACIOIAosAAAiEHJB/wFxRSAMQQBHcUUNAAwBCyAMQQJ0IARqQSBBH0EeIBBB/wFxGyAOQf8BcRtDAACAPxBCNgIACyAMQQFqIgwgA0cNAAsLQQBBBCASGyEQIBJFBEAgBUGsM2ohEiAFQdA4aiEDIAVB1DNqIQwgBUHQM2ohDkEAIQEDQCANIAAgASAhQwAAgEAQ6QYgDSAAIAFBBGoQiwMgBiAJQSAQkQEaAkACQCAGLAAABEAgCSwAAEUiEyASKgIAQwrXIz1eRXFFBEAgAyABQQFxQQNqNgIAIBNFDQILBSAJLAAABEAgAyABQQFxQQNqNgIADAILCwwBCyACIAE2AgAgCiAAKQIMNwMAIAsQOgJAAkACQAJAAkAgAUH/////B3EOBAABAgMECyAIQwAAAABDAAAAABAyIAsgCCkDADcDACAKIAUqAvQBIAwqAgCTQwAAgECSOAIEDAMLIAhDAACAP0MAAAAAEDIgCyAIKQMANwMAIAogBSoC8AEgDioCAJNDAACAQJI4AgAMAgsgCEMAAAAAQwAAgD8QMiALIAgpAwA3AwAgCiAFKgL0ASAMKgIAk0MAAIBAkjgCBAwBCyAIQwAAAABDAAAAABAyIAsgCCkDADcDACAKIAUqAvABIA4qAgCTQwAAgECSOAIACyAAIAogCyARIA8QuwYLIAFBAWoiASAQSQ0ACwsQeSAFQdw1aigCACIBBEAgACABKALwBUYEQCAJEDoCQAJAAn0CQCAFQcQ1aiICKAIAIgFBA0YEQCAFLACJAkUNASAGQQFBAEMAAAAAQwAAAAAQkgEgCSAGKQMANwMAIAIoAgAhAQsgAUEERw0AIAZBAkEAQwAAAABDAAAAABCSASAJIAYpAwAiIDcDACAgp74MAQsgCSoCAAtDAAAAAFwNACAJKgIEQwAAAABcDQAMAQsgCSAFKgIYQwAAFkSUIAUqAqQBIAUqAqgBEEWUEGIQqAMgBUHwNWpBADoAACAFQf81akEBOgAAIARBIEMAAIA/EEI2AgAgFiAAQRxqIAkQNSAGIBYpAgA3AgAgDSAAIAYQ8gIgDyANKQMANwMACwsLIA8qAgBD//9/f1wEQCAAIA8pAwA3AhwgABCCAwsgESoCAEP//39/XARAIAYgERCZASAAIAYpAwA3AgwgABCCAwsgACAAKQIcNwIUCwsLCyAHJAQL4AMDB38BfgF9IwQhCCMEQRBqJARBmKkEKAIAIQZBwAYQUyEEIAgiAyADLAAMOgAAIAQgBiAAEM0SIANBCGoiBSAENgIAIAQgAjYCCCAGQYQzaiAEKAIEIAQQjAkgA0MAAHBCQwAAcEIQMiAEIAMpAwA3AgwgAkGAAnFFBEAgBCgCBBDoBCIHBEAgBkHA2ABqIAcQ/QMhBCAFKAIAIgAgBDYC8AQgAEEEQQAQ/wQgAyAHQQhqEJkBIAUoAgAiACADKQMANwIMIAAgBywAGDoAfSAHQRBqIgAQnQJDrMUnN14EQCADIAAQmQEgASADKQMANwIACwsLIAMgARCZASAFKAIAIgAgAykDACIKNwIkIAAgCjcCHCAAIAo3AhQgACAAKQIMNwLgASAKQiCIp74hCyAAIAJBwABxBH8gAEECNgKUASAAQQI2ApABQQAFIAqnvkMAAAAAXwRAIABBAjYCkAELIAtDAAAAAF8EQCAAQQI2ApQBCyAAKAKQAUEASgR/QQEFIAAoApQBQQBKCws6AJgBIAZB4DJqIAUQeCAGQdQyaiEBIAJBgMAAcQRAIAUhACABKAIABEAgASABKAIIIAAQ9AkFIAEgABB4CwUgASAFEHgLIAUoAgAhCSAIJAQgCQulAQEBfyAAIAI2AuwFIAAgADYC+AUgACAANgL0BSAAIAA2AvAFIAJBAEciAyABQYCAgBhxQYCAgAhGcQRAIAAgAigC8AU2AvAFCyABQYCAgChxRSADIAFBgICAwABxRXFBAXNyRQRAIAAgAigC9AU2AvQFCyAAKAIIQYCAgARxBEAgACEBA0AgASgC7AUiAiIBKAIIQYCAgARxDQALIAAgAjYC+AULC0ABAn8jBCECIwRBIGokBCACQQhqIgMgARDvBiACIAEgAxDuBiACQRBqIgMgAikCADcCACAAIAEgAxDyAiACJAQLBQAQswMLDgAQYCgCkAJBBHFBAEcLJAEBf0GYqQQoAgAiAEGkNWooAgAEfyAAQf41aiwAAEUFQQALCxMAQZipBCgCAEG0M2ooAgBBAEcLFAAgAEEAELYDBH9BABCLAgVBAAsLQAEBf0GYqQQoAgAhABD0BgR/IABByDNqLAAABH9BAQUgAEG0M2ooAgAEf0EABSAAQcYzaiwAAEEARwsLBUEACwsWAEGYqQQoAgBB0NwAaiAAQQFxNgIACxYAQZipBCgCAEHU3ABqIABBAXE2AgALEgBBmKkEKAIAQdA4aiAANgIACxAAQZipBCgCAEHQOGooAgALIAEBf0GYqQQoAgAiAUGQB2ogAEEDdGogASkC8AE3AgALcgEBf0GYqQQoAgAhAyACQwAAAABdBEAgAyoCMCECCwJAAkAgASADQfgBamosAABFDQAgA0HECGogAUECdGoqAgAgAiAClGBFDQAgACADQfABaiADQZAHaiABQQN0ahBADAELIABDAAAAAEMAAAAAEDILCykBAX4gASACrSADrUIghoQgBCAAQQFxQYQEahE5ACIFQiCIpxAgIAWnCwcAQc8AEAMLBwBBywAQAwsHAEHIABADCwcAQcYAEAMLBwBBxQAQAws7AQF/IABBmKkEKAIAIgBBqDRqKAIAIgFBAEoEfyAAQZw0aiABQX9qEHpBHGoFIABB8AFqCykCADcCAAsHAEHDABADCwcAQcIAEAMLBwBBwQAQAwsGAEE/EAMLBgBBOxADCwYAQToQAwsGAEE5EAMLBgBBOBADCwYAQTYQAwsGAEEzEAMLBgBBMhADCwYAQTEQAwsGAEEwEAMLFgAgAEGYqQQoAgBB5QdqaiwAAEEARwsGAEEuEAMLBgBBLRADCwYAQSkQAwsGAEEoEAMLBgBBJxADCwYAQSQQAwsIAEEfEANCAAsIAEEeEANBAAsIAEEbEANBAAsIAEEXEANBAAsIAEEWEANBAAsIAEEVEANBAAsIAEEUEANBAAsIAEESEANBAAsyAQJ/QZipBCgCACEBA38Cf0EBIAAgAUH4AWpqLAAADQAaIABBAWoiAEEFSQ0BQQALCwsIAEEREANBAAsIAEEQEANBAAsIAEEPEANBAAsIAEEOEANBAAsIAEENEANBAAsIAEELEANBAAsIAEEKEANBAAsIAEEJEANBAAsIAEEIEANBAAs+AQF/IABBAEgEf0EABUGYqQQoAgAiAUHYGGogAEECdGoqAgBDAAAAAGAEfyAAIAFBjAJqaiwAAEUFQQALCwsLAEEDEANDAAAAAAsPAEEBEANEAAAAAAAAAAALDwBBABADRAAAAAAAAAAACyYAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAMIABBAXFBoAtqEVAACyQAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAAQQNxQZwLahExAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBA3FBmAtqETYACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBlAtqERkACyIAIAEgAiADIAQgBSAGIAcgCCAJIAogAEEBcUGSC2oRTwALHgAgASACIAMgBCAFIAYgByAIIABBA3FBjgtqEU4ACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBigtqETIACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQYgLahFNAAscACABIAIgAyAEIAUgBiAHIABBB3FBgAtqESoACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQf4KahEzAAscACABIAIgAyAEIAUgBiAHIABBA3FB+gpqESsACxoAIAEgAiADIAQgBSAGIABBD3FB6gpqERoACw0AIABB+ClqQQAQwAELHgAgASACIAMgBCAFIAYgByAIIABBAXFB6ApqEUwACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHmCmoRSwALGgAgASACIAMgBCAFIAYgAEEDcUHiCmoRLAALGAAgASACIAMgBCAFIABBD3FB0gpqES0ACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHQCmoRKAALGgAgASACIAMgBCAFIAYgAEEDcUHMCmoRKQALGAAgASACIAMgBCAFIABBA3FByApqEScACxYAIAEgAiADIAQgAEEfcUGoCmoRBgALIAAgASACIAMgBCAFIAYgByAIIAkgAEEBcUGmCmoRSgALHAAgASACIAMgBCAFIAYgByAAQQFxQaQKahFJAAscACABIAIgAyAEIAUgBiAHIABBAXFBogpqEUgACxoAIAEgAiADIAQgBSAGIABBA3FBngpqESMACxgAIAEgAiADIAQgBSAAQQNxQZoKahEPAAscACABIAIgAyAEIAUgBiAHIABBAXFBmApqEUcACxYAIAEgAiADIAQgAEEDcUGUCmoRNAALFQAgASACIAMgAEH/AHFBlAlqEQcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQZIJahEwAAsaACABIAIgAyAEIAUgBiAAQQFxQZAJahEmAAsaACABIAIgAyAEIAUgBiAAQQFxQY4JahEuAAsYACABIAIgAyAEIAUgAEEDcUGKCWoRLwALFgAgASACIAMgBCAAQQNxQYYJahEKAAseACABIAIgAyAEIAUgBiAHIAggAEEBcUGECWoRJAALGgAgASACIAMgBCAFIAYgAEEBcUGCCWoRNQALFAAgASACIAMgAEEPcUHyCGoRNwALFgAgASACIAMgBCAAQQNxQe4GahEOAAsUACABIAIgAyAAQQFxQewGahERAAscACABIAIgAyAEIAUgBiAHIABBAXFB6gZqEUYACxQAIAEgAiADIABBAXFB6AZqEUUACxQAIAEgAiADIABBAXFB3gRqERgACxoAIAEgAiADIAQgBSAGIABBA3FB2gRqEQ0ACxUAQZipBCgCAEE0aiAAQQJ0aigCAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBAXFBggRqEUQACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBB3FB+gNqERcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQ9xQeoDahETAAscACABIAIgAyAEIAUgBiAHIABBD3FB2gNqERQACxoAIAEgAiADIAQgBSAGIABBH3FBugNqERUACxgAIAEgAiADIAQgBSAAQQ9xQaoDahESAAsWACABIAIgAyAEIABBH3FBigNqEQkACxoAIAEgAiADIAQgBSAGIABBAXFBiANqEUMACxgAIAEgAiADIAQgBSAAQQFxQYYDahFCAAsWACABIAIgAyAEIABBAXFBhANqEUEACxwAIAEgAiADIAQgBSAGIAcgAEEBcUGCA2oRQAALGAAgASACIAMgBCAFIABBAXFBwAJqET8ACxYAIAEgAiADIAQgAEEBcUG+AmoRPgALHgAgASACIAMgBCAFIAYgByAIIABBAXFBvAJqET0ACxYAIAEgAiADIAQgAEEBcUG6AmoRPAALFAAgASACIAMgAEEDcUG2AmoRIgALGgAgASACIAMgBCAFIAYgAEEBcUG0AmoRFgALFgAgASACIAMgBCAAQQFxQbIBahElAAsUACABIAIgAyAAQQFxQbABahEMAAsaACABIAIgAyAEIAUgBiAAQQFxQawBahE4AAsUACABIAIgAyAAQQNxQcgAahE7AAsRACABIAIgAEEfcUEoahEIAAsPACABIABBA3FBJGoRHAALDQAgAEEfcUEEahEgAAsPACABIABBAXFBAmoROgALCgAgAEEBcREQAAvS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AiADIAQgBUEPcUHSCmoRLQAMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIAFBADoANCABQQA6ADUgACgCCCIAKAIAKAIUIQMgACABIAIgAkEBIAQgA0EPcUHqCmoRGgAgAQJ/AkAgASwANQR/IAEsADQNAUEBBUEACyEAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAA0CQQQMAwsLIAANAEEEDAELQQMLNgIsDAILCyADQQFGBEAgAUEBNgIgCwsLC0QBAX8gACABKAIIEIUBBEAgASACIAMgBBCFBQUgACgCCCIAKAIAKAIUIQYgACABIAIgAyAEIAUgBkEPcUHqCmoRGgALCxgAIAAgASgCCBCFAQRAIAEgAiADEIcFCwuPAQAgACABKAIIEIUBBEAgASACIAMQhgUFIAAgASgCABCFAQRAAkAgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASACNgIUIAEgASgCKEEBajYCKCABKAIkQQFGBEAgASgCGEECRgRAIAFBAToANgsLIAFBBDYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwsLGgAgACABKAIIEIUBBEAgASACIAMgBBCFBQsLyQEBA38jBCEEIwRBQGskBCAEIQMgACABEIUBBH9BAQUgAQR/IAFB4PQBEJQEIgEEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyABNgIAIAMgADYCCCADQX82AgwgA0EBNgIwIAEoAgAoAhwhACABIAMgAigCAEEBIABBH3FBqApqEQYAIAMoAhhBAUYEfyACIAMoAhA2AgBBAQVBAAsFQQALBUEACwshBSAEJAQgBQt4AQN/IwQhASMEQRBqJAQgASEAAn9BAEGMrgQoAgBB37femgFGDQAaQbMEESEAQYyuBEHft96aATYCAEEACwRAQZSKAyAAEMICBQJ/An9BAEGQrgQoAgAiACgCBEHOlZoSRw0AGiAAKAIACyECIAEkBCACCw8LQQALowICB38BfiMEIQIjBEEwaiQEIAJBGGohASACQRBqIQMgAiEEIAJBJGohBRDLCyIABEAgACgCACIABEAgACkDMCIHQoB+g0KA1qyZ9MiT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AgAhBCAAEIoCIAAoAiAQtgcgBAsQigILCyAAQdQyaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAwRAIAMQjRIgAxBBCyABQQFqIgEgAigCAEgNAAsLIAIQTyAAQeAyahBPIABB7DJqEE8gAEGUM2pBADYCACAAQfgyahBPIABBhDNqEE8gAEGgNWpBADYCACAAQZgzakEANgIAIABBnDNqQQA2AgAgAEHcM2pBADYCACAAQdgzakEANgIAIABB9DNqQQA2AgAgAEH4M2oQTyAAQYQ0ahBPIABBkDRqEE8gAEGcNGoQTyAAQag0ahBPIABBwDdqIQJBACEBA0AgAUEMbCACahBPIAFBAWoiAUECRw0ACyAAQdw3ahDdBCAAQYTYAGoQTyAAQZA6ahBPIABBnDpqEE8gAEGoOmoQTyAAQcDYAGoiAigCAEEASgRAQQAhAQNAIAIgARBVKAIAEPYHIAFBAWoiASACKAIASA0ACwsgAhBPIABBtNgAahBPIABB0NgAaiICKAIAIgFBzIECKAIARiABRXJFBEAgARDDAhogAkEANgIACyAAQdTYAGoQTyAAQQA6AAALCwsAIAAQngUgABBUC00BAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACQYz8ATYCACACIAE2AgggAhCvBSAAIAJBBGoQ5AMhAyACEJ4FIAIkBCADCwsAIAAQnwUgABBUC08BAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADQfT7ATYCACADIAE2AgggAxDGByAAIANBBGogAhCABiEEIAMQnwUgAyQEIAQLMwAgAEGYqQQoAgAgABsiABCxD0GYqQQoAgAgAEYEQEEAEIoCCyAABEAgABDkCSAAEEELC1QBAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQygEgACACIAMQTiIAKAIARhC5AiIBBEAgACACNgIACyABIQQgAxC0ASADJAQgBAtWAgJ/An0jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQcSABQQhqIgIgAEE8aiAAQUBrIAEQywcgAhA9IQQgAhAxIAEQMSABJAQgBAsHACABELgPC4kBAgJ/An0jBCEJIwRBMGokBEGwqQQoAgAiCkE8aiABEIgBIApBQGsg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QYAHaiIKEDogAEGwB2ohAyAAQYgHaiEBA0AgARA6IAFBCGoiASADRw0ACyAAQbwIaiEDIABBlAhqIQEDQCABEDogAUEIaiIBIANHDQALIABB+ClqEGggAEEAQYgqEGoaIAJDAACAv0MAAIC/EDIgBSACKQMANwIAIABDiYiIPDgCECAAQwAAoEA4AhQgAEHmhQI2AhggAEHwhQI2AhwgAEOamZk+OAIgIABDAADAQDgCJCAAQSxqIgFCfzcCACABQn83AgggAUJ/NwIQIAFCfzcCGCABQn83AiAgAUJ/NwIoIAFCfzcCMCABQn83AjggAUFAa0J/NwIAIAFCfzcCSCABQX82AlAgAEMAAIA+OAKAASAAQ83MTD04AoQBIABBADYCiAEgAEEANgKMASAAQwAAgD84ApABIABBADYCmAEgAEEAOgCUASACQwAAgD9DAACAPxAyIAYgAikDADcCACACQwAAAABDAAAAABAyIAggAikDACILNwIAIAcgCzcCACAAQQA6ALUBIABBAToAtgEgAEEBOgC3ASAAQQA6ALgBIABCADcCvAEgAEIANwLEASAAQQA2AswBIABBAzYC0AEgAEECNgLUASAAQQA2AtgBIABBAzYC3AEgAEEANgLgASACQ///f/9D//9//xAyIAkgAikDADcCACACQ///f/9D//9//xAyIAogAikDADcCACAAQwAAwEA4AihBACEBA0AgAEGACGogAUECdGpDAACAvzgCACAAQewHaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEFRw0AC0EAIQEDQCAAQdAYaiABQQJ0akMAAIC/OAIAIABB0AhqIAFBAnRqQwAAgL84AgAgAUEBaiIBQYAERw0AC0EAIQEDQCAAQdAoaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEVRw0ACyAEJAQLNAECfyMEIQQjBEEQaiQEIARBCGoiBSABIAIQwgogBCADEG8gACAFIAQQgQEgBBAxIAQkBAtCAQJ/IwQhBCMEQRBqJAQgBCADEDQgBEEEaiIDIAEgAiAEIABBA3FBhglqEQoAIAMQfSEFIAMQMSAEEDEgBCQEIAULKwEBfxDVByIBQZquBCABGyEBIABCADcCACAAQQA2AgggACABIAEQXBCTAQsxAQF/IwQhASMEQRBqJAQgASAAEJ8BIAEoAgAgASABLAALQQBIGxCEAyABED4gASQEC2UBA38jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQsgUgAUEIaiICIABBmAFqIAEgAEGgAWoQ7QcgAUENaiABLAAMOgAAIAIQ8AchAyACEDEgARAxIAEkBCADCzMBAX8jBCEEIwRBIGokBCAEIAIgAxCzBSAAIAEoAgBBAkGM9wEgBEGfAxEJABBfIAQkBAtPAQN/IwQhASMEQRBqJAQgAUEEaiIDIAA2AgBBsKkEKAIAIQAgAUEIaiICIAMQ7gcgASAAQZwBaiACIABBoAFqEO0HIAEQMSACEDEgASQECwcAIAAQmRELBwAgABCXEQtOAQF/QbCpBCgCACIDQZgBaiAAEIgBIANBnAFqIAEQiAEgA0GgAWogAhCIAQJAAkAgABBbDQAgARBbDQBBJkEsEM4HDAELQQBBABDOBwsLTgECfyMEIQQjBEEQaiQEIARBCGoiBSABEDQgBEEEaiIBIAIQNCAEIAMQNCAFIAEgBCAAQf8AcUGUCWoRBwAgBBAxIAEQMSAFEDEgBCQECyMBAX8jBCECIwRBEGokBCACIAEQUzYCACAAIAIQ7gcgAiQECykBAn8jBCEBIwRBEGokBCABQQFqIgIgASwAADoAACAAEPAHEEEgASQECwcAIAAQnxELKgECfwJ/IwQhASMEQRBqJARByckCQQJBhPcBQdrJAkElQSUQAiABCyQECwkAIAAgARCeEQsqAQJ/An8jBCEBIwRBEGokBEGzyQJBBEHgyQFB8ckCQQtBCRACIAELJAQLCwAgACABIAIQnBELJAEBf0EAEMAGIQEgAEIANwIAIABBADYCCCAAIAEgARBcEJMBCxoAIAAsAAtBAEgEfyAAKAIABSAAC0EAEMEGCwcAIAAQlhELBwAgABCVEQsqAQJ/An8jBCEBIwRBEGokBEHwxwJBBEHwyQFB3MoCQQFBARACIAELJAQLDQAgACABIAIgAxCTEQsJACAAIAEQjxELCQAgACABEI4RCwcAIAAQjRELKgECfwJ/IwQhASMEQRBqJARBn8cCQQRBgMoBQYnLAkEUQRoQAiABCyQECwsAIAAgASACEIgRCyoBAn8CfyMEIQEjBEEQaiQEQY/HAkEDQaj3AUGPywJBAUEBEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEGsxgJBBEGQygFBlMsCQQFBARACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB+8UCQQJBwPcBQdrJAkEkQRMQAiABCyQECxEAIAAgASACIAMgBCAFEIYRCxEAIAAgASACIAMgBCAFEIMRCwcAIAAQghELKgECfwJ/IwQhASMEQRBqJARBocUCQQNB4PcBQZrLAkEjQQgQAiABCyQECwsAIAAgASACEP8QCyoBAn8CfyMEIQEjBEEQaiQEQYPFAkEEQcDKAUGJywJBE0EZEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHyxAJBBUHQygFByssCQQFBARACIAELJAQLDQAgACABIAIgAxD8EAsqAQJ/An8jBCEBIwRBEGokBEHlxAJBBUHwygFB58sCQQFBARACIAELJAQLDwAgACABIAIgAyAEEPkQCyoBAn8CfyMEIQEjBEEQaiQEQdPEAkECQYj4AUHayQJBI0EiEAIgAQskBAsiACABEKwKIQEgAEIANwIAIABBADYCCCAAIAEgARBcEJMBCyoBAX8jBCEBIwRBEGokBCABQZipBCgCAEG8MWo2AgAgACABEPcQIAEkBAsqAQF/IwQhASMEQRBqJAQgAUGYqQQoAgBB3DdqNgIAIAAgARDkByABJAQLMAECfyMEIQIjBEEQaiQEIAIgATYCACACQQQgAEHAA2oQcCgCABC7ASEDIAIkBCADCyoBAn8CfyMEIQEjBEEQaiQEQZTEAkEBQaT3AUG4zAJBAUEBEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEGExAJBA0GQ+AFBmssCQSJBGBACIAELJAQLCQAgACABEPQQCwcAIAAQ8hALCQAgACABEPEQCwkAIAAgARDwEAsJACAAIAEQ7xALKgECfwJ/IwQhASMEQRBqJARBn8ECQQRBkMsBQfHJAkEKQQcQAiABCyQECwsAIAAgASACEO0QCwcAIAAQngELHQAgACwAC0EASAR/IAAoAgAFIAALIAEQ6wRBAEcLKgECfwJ/IwQhASMEQRBqJARBq8ACQQVBoMsBQbvMAkEOQQwQAiABCyQECx4AIAAsAAtBAEgEfyAAKAIABSAAC0EAQQAgAxDsBAsHACAAEOwQCwkAIAAgARDrEAsYACAALAALQQBIBH8gACgCAAUgAAsQlggLCwAgACABIAIQ6BALGgAgACwAC0EASAR/IAAoAgAFIAALIAEQqwgLGAAgACwAC0EASAR/IAAoAgAFIAALEJMKCwkAIAAgARDiEAsqAQJ/An8jBCEBIwRBEGokBEHEvgJBBEHAywFBicsCQRJBFxACIAELJAQLCwAgACABIAIQ4BALCQAgACABEN8QCwsAIAAgASACEN4QCxgAIAAsAAtBAEgEfyAAKAIABSAACxCpAwsJACAAIAEQ3BALGAAgACwAC0EASAR/IAAoAgAFIAALEKsDCyoBAn8CfyMEIQEjBEEQaiQEQem9AkEFQdDLAUG7zAJBDUELEAIgAQskBAsNACAAIAEgAiADENsQCyoBAn8CfyMEIQEjBEEQaiQEQd69AkEFQfDLAUG7zAJBDEEKEAIgAQskBAsNACAAIAEgAiADENoQCxoAIAAsAAtBAEgEfyAAKAIABSAACyABEK8ICwcAIAAQ2RALKgECfwJ/IwQhASMEQRBqJARB6bwCQQRBkMwBQd3NAkECQQEQAiABCyQECwsAIAAgASACENcQCyoBAn8CfyMEIQEjBEEQaiQEQeG8AkEDQez4AUHjzQJBEUEdEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHZvAJBA0H4+AFB480CQRBBHBACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB0bwCQQNBhPkBQePNAkEPQRsQAiABCyQECxoAIAAsAAtBAEgEfyAAKAIABSAACyABELUICyoBAn8CfyMEIQEjBEEQaiQEQbO8AkEEQaDMAUGJywJBEUEVEAIgAQskBAscACAALAALQQBIBH8gACgCAAUgAAsgASACEM8FCwkAIAAgARDVEAsRACAAIAEgAiADIAQgBRDUEAsqAQJ/An8jBCEBIwRBEGokBEGPvAJBBkGwzAFB6M0CQRFBBhACIAELJAQLDwAgACABIAIgAyAEEM0QCw0AIAAgASACIAMQyhALKgECfwJ/IwQhASMEQRBqJARB9bsCQQVB0MwBQbvMAkELQQgQAiABCyQECw0AIAAgASACIAMQyBALCwAgACABIAIQxxALNQEBfyAALAALQQBIBEAgACgCACEACxA8IgIsAH8Ef0EABSACIAAQXiABQRpyIABBABDTAgsLBwAgABC9CAsYACAALAALQQBIBH8gACgCAAUgAAsQvggLKgECfwJ/IwQhASMEQRBqJARB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AAtBAEgEfyAAKAIABSAACyABELkCCyoBAn8CfyMEIQEjBEEQaiQEQc61AkEEQfDSAUGJywJBDkEJEAIgAQskBAsLACAAIAEgAhC1DwsJACAAIAEQsw8LKgECfwJ/IwQhASMEQRBqJARBubUCQQhBgNMBQYfRAkEEQQEQAiABCyQECxMAIAAgASACIAMgBCAFIAYQrw8LKgECfwJ/IwQhASMEQRBqJARBs7UCQQdBoNMBQZ/TAkEBQQQQAiABCyQECxEAIAAgASACIAMgBCAFEK0PCwkAIAAgARCsDwsaACAALAALQQBIBH8gACgCAAUgAAsgARCDCQsYACAALAALQQBIBH8gACgCAAUgAAsQxAQLCQAgACABEKkPC6cEAgF/AX4jBCEBIwRBEGokBCAAEDogAEEIahA6IABBEGoQOiAAQRhqEDogAEEgahA6IABBLGoQOiAAQcwAahBmIABB3ABqEGYgAEGAAWoQOiAAQYgBahBoIABBADYCsAEgAEEANgKsASAAQQA2ArQBIABBuAFqEGggAEHEAWoQaCAAQQA2AtQBIABBADYC0AEgAEEANgLYASAAQegBahDnAiAAQewBahDnAiAAQfABahDnAiABQwAAAABDAAAAABAyIAAgASkDACICNwIYIAAgAjcCECAAIAI3AgggACACNwIAIAFDAAAAAEMAAAAAEDIgACABKQMAIgI3AiwgACACNwIgIABDAAAAADgCNCAAQwAAAAA4AiggAEMAAIC/OAI4IABCADcCPCAAQgA3AkQgARBmIAAgASkCADcCXCAAIAEpAgg3AmQgACABKQIANwJMIAAgASkCCDcCVCAAQQA2AnggAEEANgJ0IABBADYCbCAAQQE2AnAgAEEAOgB8IABBADoAfSAAQQA6AH4gAUMAAAAAQwAAAAAQMiAAIAEpAwA3AoABIABBADYClAEgAEEBNgKcASAAQQE2ApgBIABDAAAAADgCpAEgAEEANgKgASAAQwAAgL84AqgBIABCADcC3AEgAEEANgLkASABEOcCIAAgASgCADYC6AEgARDnAiAAIAEoAgA2AuwBIAEQ5wIgACABKAIANgLwASAAQQA2AvQBIAEkBAsaACAALAALQQBIBH8gACgCAAUgAAtBABC5AQsHACAAEKAPC9AHAgV/AX4jBCEFIwRBEGokBCAFIQMgAEEMahA6IABBFGoQOiAAQRxqEDogAEEkahA6IABBLGoQOiAAQTRqEDogAEE8ahA6IABB2ABqEDogAEHgAGoQOiAAQegAahA6IABB8ABqEDogAEG4AWoQOiAAQcABahA6IABByAFqEMoSIABBwANqIgYiBEEANgIEIARBADYCACAEQQA2AgggAEHMA2oQZiAAQdwDahBmIABB7ANqEGYgAEH8A2oQZiAAQYwEahBmIABBpARqEN4DIABB1ARqEGggAEEANgLkBCAAQQA2AuAEIABBADYC6AQgAEH4BGoiByABQbwxahD4ByAAQagGaiEEIABBiAZqIQEDQCABEGYgAUEQaiIBIARHDQALIAAgAhDaBjYCACAAQQRqIgEgAkEAQQAQuwE2AgAgBiABEHggAEEANgIIIANDAAAAAEMAAAAAEDIgACADKQMANwIMIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AhwgACAINwIUIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AjQgACAINwIsIANDAAAAAEMAAAAAEDIgACADKQMANwI8IABDAAAAADgCRCAAQwAAAAA4AkggACACEFxBAWo2AkwgACAAQf6FAhBeNgJQIABBADYCVCADQwAAAABDAAAAABAyIAAgAykDADcCWCADQ///f39D//9/fxAyIAAgAykDADcCYCADQwAAAD9DAAAAPxAyIAAgAykDADcCaCADQwAAAABDAAAAABAyIAAgAykDADcCcCAAQQA7AYQBIABCADcCeCAAQQA7AYABIABBADoAggEgAEF/OwGGASAAQX87AYgBIABBADYCjAEgAEF/NgKUASAAQX82ApABIABBADoAmAEgAEEANgKcASAAQX82AqABIABBADYCqAEgAEEANgKkASAAQQ82ArQBIABBDzYCsAEgAEEPNgKsASADQ///f39D//9/fxAyIAAgAykDACIINwLAASAAIAg3ArgBIABBfzYCnAQgAEMAAAAAOAKgBCAAQwAAgD84AuwEIABBfzYC8AQgACAHNgL0BCAAIAAoAgA2AqQFIABBADYChAYgAEEANgKABiAAQgA3AuwFIABCADcC9AUgAxBmIAAgAykCADcCmAYgACADKQIINwKgBiAAIAMpAgA3AogGIAAgAykCCDcCkAYgAEEANgL8BSAAQX82AqwGIABBfzYCqAYgAEH/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ICAtICAgICAgICAgIFguWCAgICAgICAgICAtWC4uLi4uWCAgICAgICAgICAtICAgICAgICAgIFguLi4uLlgtICAgIFguLlggICAgICAgICAtLS0gICAgICAgICAtWFhYLlhYWC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtWC4uLi5YICAgICAgICAgICAtICAgICAgICAgICBYLi4uLlgtICAgIFguLlggICAgICAgICBYICAgICAgICAgICAtICBYLlggIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtWC4uLlggICAgICAgICAgICAtICAgICAgICAgICAgWC4uLlgtICAgIFguLlggICAgICAgICBYWCAgICAgICAgICAtICBYLlggIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtWC4uWC5YICAgICAgICAgICAtICAgICAgICAgICBYLlguLlgtICAgIFguLlggICAgICAgICBYLlggICAgICAgICAtICBYLlggIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtWC5YIFguWCAgICAgICAgICAtICAgICAgICAgIFguWCBYLlgtICAgIFguLlhYWCAgICAgICBYLi5YICAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWFggICBYLlggICAgICAgICAtICAgICAgICAgWC5YICAgWFgtICAgIFguLlguLlhYWCAgICBYLi4uWCAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgWC5YICAgICAgICAtICAgICAgICBYLlggICAgICAtICAgIFguLlguLlguLlhYICBYLi4uLlggICAgICAtICBYLlggIC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgIFguWCAgICAgICAtICAgICAgIFguWCAgICAgICAtICAgIFguLlguLlguLlguWCBYLi4uLi5YICAgICAtICBYLlggIC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICBYLlggICAgICAtICAgICAgWC5YICAgICAgICAtWFhYIFguLlguLlguLlguLlhYLi4uLi4uWCAgICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgWC5YICAgWFgtWFggICBYLlggICAgICAgICAtWC4uWFguLi4uLi4uLlguLlhYLi4uLi4uLlggICAtICBYLlggIC0gICBYLlggICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgIFguWCBYLlgtWC5YIFguWCAgICAgICAgICAtWC4uLlguLi4uLi4uLi4uLlhYLi4uLi4uLi5YICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgICBYLlguLlgtWC4uWC5YICAgICAgICAgICAtIFguLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uWCAtWFhYLlhYWC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICAgICAgWC4uLlgtWC4uLlggICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uLlgtWC4uLi4uWC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgICAgICBYLi4uLlgtWC4uLi5YICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uWFhYWFgtWFhYWFhYWC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgICAgIFguLi4uLlgtWC4uLi4uWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uLlhYLi4uWC4uWCAgICAtLS0tLS0tLS0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtWFhYWFhYWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uWCBYLi5YIFguLlggICAtICAgICAgIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tICAgIFguLi4uLi4uLi4uWCBYLlggIFguLlggICAtICAgICAgIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAtICAgIFguLi4uLi4uLi4uWCBYWCAgICBYLi5YICAtICAgICAgIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICBYLi5YICAgICAgICAgIC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICAgWFggICAgICAgICAgIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAtICAgICBYWFhYWFhYWFhYICAtLS0tLS0tLS0tLS0gICAgICAgIC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0gICAgICAgICAgICAgICAgICAgIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAQaAiC8xdN10pIyMjIyMjI2hWMHFzJy8jIyNbKSwjIy9sOiQjUTY+IyM1W240Mj5jLVRIYC0+PiMvZT4xMU5OVj1CdigqOi5GP3V1IyhnUlUubzBYR0hgJHZoTEcxaHh0OT9XYCMsNUxzQ3AjLWk+LnIkPCQ2cEQ+TGInOzlDcmM2dGdYbUtWZVUyY0Q0RW8zUi8yKj5dYihNQzskalBmWS47aF5gSVdNOTxMaDJUbFMrZi1zJG82UTxCV0hgWWlVLnhmTHEkTjskMGlSL0dYOlUoamNXMnAvVypxPy1xbW5VQ0k7akhTQWlGV00uUiprVUBDPUdIP2E5d3A4ZiRlLi00XlFnMSlRLUdMKGxmKHIvN0dyUmd3ViVNUz1DI2A4TkQ+UW8jdCdYIyh2I1k5dzAjMUQkQ0lmO1cnI3BXVVBYT3V4WHVVKEg5TSgxPHEtVUUzMSNeLVYnOElSVW83UWYuL0w+PUtlJCQnNUYlKV0wXiMwWEBVLmE8cjpRTHRGc0xjTDYjI2xPaikjLlk1PC1SJktnTHdxSmZMZ04mO1E/Z0leI0RZMnVMaUBeck1sOXQ9Y1dxNiMjd2VnPiRGQmpWUVRTRGdFS25JUzdFTTk+Wlk5dzAjTDs+PiNNeCY0TXZ0Ly9MW01rQSNXQGxLLk4nWzAjN1JMXyYjdytGJUh0RzlNI1hMYE4mLixHTTRQZzstPG5MRU5odng+LVZzTS5NMHJKZkxIMmVUTWAqb0pNSFJDYE5rZmltTTJKLFctalhTOilyMHdLI0BGZ2UkVT5gdydON0cjJCNmQiMkRV4kIzo5OmhrK2VPZS0tNngpRjcqRSU/NzYlXkdNSGVQVy1aNWwnJkdpRiMkOTU2OnJTP2RBI2ZpSzopWXIrYCYjMGpAJ0RiRyYjXiRQRy5MbCtETmE8WENNS0VWKk4pTE4vTipiPSVRNnBpYS1YZzhJJDxNUiYsVmRKZSQ8KDdHO0NrbCcmaEY7OyQ8Xz1YKGIuUlMlJSkjIyNNUEJ1dUUxVjp2JmNYJiMybSMoJmNWXWBrOU9oTE1ibiVzJEcyLEIkQmZEM1gqc3A1I2wsJFIjXXhfWDF4S1glYjVVKltyNWlNZlVvOVVgTjk5aEcpdG0rL1VzOXBHKVhQdWA8MHMtKVdUdChnQ1J4SWcoJTZzZmg9a3RNS24zaik8NjxiNVNrXy8wKF5dQWFOIyhwL0w+JlZaPjFpJWgxUzl1NW9AWWFhVyRlK2I8VFdGbi9aOk9oKEN4MiRsTkVvTl5lKSNDRllAQEk7Qk9RKnNSd1p0WnhSY1U3dVc2Q1hvdzBpKD8kUVtjak9kW1A0ZCldPlJPUE9weFRPN1N0d2kxOjppQjFxKUNfPWRWMjZKOzIsXTdvcCRddVFyQF9WNyRxXiVsUXd0dUhZXT1EWCxuM0wjMFBIRE80Zjk+ZENATz5IQnVLUHBQKkUsTitiM0wjbHBSL01yVEVILklBUWsuYT5EWy5lO21jLnhdSXAuUEheJy9hcVVPLyQxV3hMb1cwW2lMQTxRVDs1SEtEK0BxUSdOUSgzX1BMaEU0OFIucUFQU3dRMC9XSz9aLFt4Py1KO2pRVFdBMFhAS0ooX1k4Ti06L003NDovLVpwS3JVc3M/ZCNkWnFdREFia1UqSnFrTCtud1hAQDQ3YDU+dz00aCg5LmBHQ1JVeEhQZVJgNU1qb2woZFVXeFphKD5TVHJQa3JKaVd4YDVVN0YjLmcqanJvaEdnYGNnOmxTVHZFWS9FVl83SDRROVtaJWNudjtKUVlaNXEubDdaZWFzOkhPSVpPQj9HPE5hbGQkcXNdQF1MPEo3YlIqPmd2Ols3TUkyaykuJzIoJDVGTlAmRVEoLClVXVddK2ZoMTgudnNhaTAwKTtEM0A0a3U1UD9EUDhhSnQrO3FVTV09K2InOEA7bVZpQkt4MERFWy1hdUdsODpQSiZEaitNNk9DXU9eKCgjI11gMGkpZHJUOy03WGA9LUgzW2lnVW5QRy1OWmxvLiNrQGgjPU9yayRtPmE+JC0/VG0kVVYoPyNQNllZIycvIyMjeGU3cS43M3JJMypwUC8kMT5zOSlXLEpyTTdTTl0nLzRDI3YkVWAwI1YuWzA+eFFzSCRmRW1QTWdZMnU3S2goRyVzaUlmTFNvUytNSzJlVE0kPTUsTThwYEEuO19SJSN1W0sjJHg0QUc4LmtLL0hTQj09LSdJZS9RVHRHPy0uKl5OLTRCL1pNXzNZbFFDNyhwN3EpJl0oYDZfYykkLypKTChMLV4oXSR3SU1gZFB0T2RHQSxVMzp3Mk0tMDxxLV1MXz9eKTF2dycuLE1Sc3FWci5MO2FOJiMvRWdKKVBCY1stZj4rV29tWDJ1N2xxTTJpRXVtTVRjc0Y/LWFUPVotOTdVRW5YZ2xFbjFLLWJuRU9gZ3VGdChjJT07QW1fUXNAakxvb0kmTlg7XTAjajQjRjE0O2dsOC1HUXBnd2hycTgnPWxfZi1iNDknVU9xa0x1Ny0jI29EWTJMKHRlK01jaCZnTFl0SixNRXRKZkxoJ3gnTT0kQ1MtWlolUF04Ylo+I1M/WVkjJVEmcSczXkZ3Jj9EKVVETnJvY00zQTc2Ly9vTD8jaDdnbDg1W3FXL05ET2slMTZpajsrOjFhJ2lOSWRiLW91OC5QKncsdjUjRUkkVFdTPlBvdC1SKkgnLVNFcEE6ZylmK08kJSVga0EjRz04Uk1tRzEmT2A+dG84YkNdVCYkLG4uTG9PPjI5c3AzZHQtNTJVJVZNI3E3J0RIcGcrI1o5JUhbSzxMJWEyRS1ncldWTTNAMj0tazIydExdNCQjIzZXZSc4VUpDS0VbZF89JXdJOyc2WC1Hc0xYNGpeU2dKJCMjUip3LHZQM3dLI2lpVyYjKmheRCZSP2pwNysvdSYjKEFQIyNYVThjJGZTWVctSjk1Xy1EcFtnOXdjTyYjTS1oMU9jSmxjLSp2cHcweFVYJiNPUUZLTlhAUUknSW9QcDduYixRVS8vTVEmWkRrS1ApWDxXU1ZMKDY4dVZsJiNjJ1swIyhzMVgmeG0kWSVCNypLOmVEQTMyM2o5OThHWGJBI3B3TXMtamdEJDlRSVNCLUFfKGFONHhvRk1eQEM1OEQwK1ErcTNuMCMzVTFJbkRqRjY4Mi1Tak1YSkspKGgkaHh1YV9LXXVsOTIlJ0JPVSYjQlJSaC1zbGc4S0RscjolTDcxS2E6LkE7JVlVTGpEUG1MPExZczhpI1h3Sk9ZYUtQS2MxaDonOUtlLGcpYiksNzg9STM5Qjt4aVkkYmdHdy0mLlppOUluWER1WWElRypmMkJxN21uOV4jcDF2diUjKFdpLTsvWjVobzsjMjo7JWQmI3g5djY4QzVnP250WDBYKXBUYDslcEIzcTdtZ0dOKTMlKFA4blRkNUw3R2VBLUdMQCslSjN1MjooWWY+ZXRgZTspZiNLbTgmK0RDJEk0Nj4jS3JdXXUtWz05OXR0czEucWIjcTcyZzFXSk84MXErZU4nMDMnZU0+JjFYeFktY2FFbk9qJTJuOCkpLD9JTFI1Xi5JYm48LVgtTXE3W2E4MkxxOkYmI2NlK1M5d3NDSyp4YDU2OUU4ZXcnSGVdaDpzSVsyTE0kW2d1a2EzWlJkNjp0JUlHOjskJVlpSjpOcT0/ZUF3Oy86bm5EcTAoQ1ljTXBHKXFMTjQkIyMmSjxqJFVwSzxRNGExXU11cFdeLXNqXyQlW0hLJSdGIyMjI1FSWko6OlkzRUdsNCdAJUZraUFPZyNwWyMjT2BndWtUZkJIYWdMPExIdyVxJk9WMCMjRj02LzpjaEltMEBlQ1A4WF06a0ZJJWhsOGhnT0BSY0JoUy1AUWIkJSttPWhQRExnKiVLOGxuKHdjZjMvJ0RXLSQubFI/bltuQ0gtZVhPT05USmxoOi5SWUYlMydwNnNxOlVJTUE5NDUmXkhGUzg3QCRFUDJpRzwtbENPJCVjYHVLR0QzckMkeDBCTDhhRm4tLWBrZSUjSE1QJ3ZoMS9SJk9fSjkndW0sLjx0eFtAJXdzSmsmYlVUMmAwdU12N2dnI3FwL2lqLkw1NidobDsuczVDVXJ4ak9NNy0jIy5sK0F1J0EmTzotVDcyTF1QYCY9O2N0cCdYU2NYKnJVLj4tWFR0LCVPVlU0KVMxK1ItI2RnMC9Obj9LdTFeMGYkQipQOlJvd3dtLWAwUEtqWURETSczXWQzOVZaSEVsNCwuaiddUGstTS5oXiY6MEZBQ20kbWFxLSZzZ3cwdDcvNiheeHRrJUx1SDg4RmotZWttPkdBI18+NTY4eDYoT0ZSbC1JWnBgJmIsX1AnJE08Sm5xNzlWc0pXL21XUypQVWlxNzY7XS9OTV8+aExieGZjJG1qYCxPOyYlVzJtYFpoOi8pVWV0dzphSiVdSzloOlRjRl11Xy1TajksVkszTS4qJyYwRFtDYV1KOWdwOCxrQVddJSg/QSVSJGY8LT5adHMnXmtuPS1eQGM0JS1wWTZxSSVKJTFJR3hmTFU5Q1A4Y2JQbFh2KTtDPWIpLDwybU92UDh1cCxVVmYzODM5YWNBV0FXLVc/I2FvL14jJUtZbzhmUlVMTmQyLj4lbV1VSzpuJXIkJ3N3XUo7NXBBb09fIzJtTzNuLCc9SDUoZXRIZypgK1JMZ3Y+PTRVOGd1RCRJJUQ6Vz4tcjVWKiVqKlc6S3Zlai5McCQ8TS1TR1onOitRX2srdXZPU0xpRW8oPGFEL0s8Q0NjYCdMeD4nPzsrK08nPigpakxSLV51NjhQSG04WkZXZStlajhoOjlyNkwqMC8vYyZpSCZSOHBSYkEjS2ptJXVwVjFnOmFfI1VyN0Z1QSModFJoIy5ZNUsrQD8zPC04bTAkUEVuO0o6cmg2P0k2dUc8LWB3TVUnaXJjcDBMYUVfT3RsTWImMSM2VC4jRkRLdSMxTHcldSUrR00rWCdlP1lMZmpNW1ZPME1idUZwNzs+USYjV0lvKTBARiVxN2MjNFhBWE4tVSZWQjxIRkYqcUwoJC9WLDsoa1haZWpXT2A8WzU/P2V3WSgqOT0ld0RjOyx1PCc5dDNXLShIMXRoMytHXXVjUV1rTHM3ZGYoJC8qSkxdQCp0N0J1X0czXzdtcDc8aWFRak9ALmtMZzt4M0IwbHFwN0hmLF5aZTctIyNAL2M1OE1vKDM7a25wMCUpQTc/LVcrZUknbzgpYjxuS253J0hvOEM9WT5wcUI+MGllJmpoWls/aUxSQEBfQXZBLWlRQyg9a3NSWlJWcDdgLj0rTnBCQyVyaCYzXVI6OFhEbUU1XlY4Tyh4PDxhRy8xTiQjRlgkMFY1WTZ4J2FFckkzSSQ3eCVFYHY8LUJZLCklLT9Qc2YqbD8lQzMubU0oPS9NMDpKeEcnPzdXaEglbydhPC04MGcwTkJ4b08oR0g8ZE1dbi4rJXFAakg/Zi5Vc0oyR2dzJjQ8LWU0NyZLbCtmLy85QGBiKz8uVGVOXyZCOFNzP3Y7XlRyaztmI1l2SmtsJnckXT4tK2s/Jyg8Uzo2OHRxKldvRGZadSc7bU0/OFhbbWE4VyUqYC09O0QuKG5jNy87KWc6VDE9XkokJkJSVigtbFRtTkI2eHFCW0AwKm8uZXJNKjxTV0ZddTI9c3QtKig2dj5eXShILmFSRVpTaSwjMTpbSVhhWkZPbTwtdWkjcVVxMiQjI1JpO3U3NU9LIyhSdGFXLUstRmBTK2NGXXVOYC1LTVElclAvWHJpLkxSY0IjIz1ZTDNCZ00vM01EP0BmJjEnQlctKUp1PEwyNWdsOHVoVm0xaEwkIyMqOCMjIydBMy9Ma0tXKyhecldYPzVXXzhnKWEobSZLOFA+I2JtbVdDTWtrJiNUUmBDLDVkPmcpRjt0LDQ6QF9sOEcvNWg0dlVkJSYlOTUwOlZYRCdRZFdvWS1GJEJ0VXdtZmUkWXFMJzgoUFdYKFA/XkBQbzMkIyNgTVNzP0RXQlovUz4rNCU+ZlgsVld2L3cnS0RgTFA1SWJIO3JUVj5uM2NFSzhVI2JYXWwtL1YrXmxqMzt2bE1iJls1WVE4I3Bla1g5SlAzWFVDNzJMLCw/K05pJmNvN0Fwbk8qNU5LLCgoVy1pOiQsa3AnVURBTyhHMFNxN01WakpzYkl1KSdaLCpbPmJyNWZYXjpGUEFXci1tMktnTDxMVU4wOThrVEYmI2x2bzU4PS92akRvOy47KUthKmhMUiMvaz1yS2J4dVZgPlFfbk42Jzh1VEcmIzFUNWcpdUx2Ojg3M1VwVExnSCsjRmdwSCdfbzE3ODBQaDhLbXhRSjgjSDcyTDRANzY4QFRtJlFoNENCLzVPdm1BJixRJlFiVW9pJGFfJTNNMDFIKTR4N0leJktRVmd0Rm5WKztbUGM+W200ay8vLF0xPyNgVllbSnIqMyYmc2xSZkxpVlpKOl0/PUszU3c9WyQ9dVJCPzN4azQ4QGFlZzxaJzwkIzRIKTYsPmUwalQ2J04jKHElLk89PzJTXXUqKG08LVY4SicoMSlHXVs2OGhXJDUncVtHQyY1amBURT9tJ2VzRkdOUk0paixmZlo/LXF4ODstPmc0dCo6Q0lQL1tRYXA3LzknIygxc2FvN3ctLnFOVWRrSil0Q0YmI0JeO3hHdm4ycjlGRVBGRkZjTEAuaUZOa1R2ZSRtJSNRdlFTOFVAKTJaKzNLOkFLTTVpc1o4OCtkS1EpVzY+SiVDTDxLRT5gLmQqKEJgLW44RDlvSzxVcF1jJFgkKCwpTThadDcvW3Jka3FUZ2wtMGN1R012Jz8+LVhWMXFbJy01aydjQVo2OWU7RF8/JFpQUCZzXis3XSkkKiQjQFFZaTksNVAmIzlyKyQlQ0U9Njg+SzhyMD1kU0MlJShAcDcubTdqaWxRMDInMC1WV0FnPGEvJyczdS49NEwkWSk2ay9LOl9bMz0manZMPEwwQy8yJ3Y6XjstRElCVyxCNEU2ODprWjslPzgoUThCSD1rTzY1Qlc/eFNHJiNAdVUsRFMqLD8uKyhvKCMxdkNTOCNDSEY+VGxHVydiKVRxN1ZUOXFeKl4kJC46Jk5AQCQmKVdIdFBtKjVfck8wJmUlSyYjLTMwaihFNCMnWmIuby8oVHBtJD5LJ2ZAW1B2RmwsaGZJTlROVTZ1JzBwYW83JVhVcDldNS4+JWhgOF89VllieHVlbC5OVFNzSmZMYWNGdTNCJ2xRU3UvbTYtT3FlbThUK29FLS0kMGEva111ajlFd3NHPiV2ZVIqaHZeQkZwUWo6SycjU0osc0ItJyNdKGouTGc5MnJUdy0qbiVALzszOXJySkYsbCNxViVPcnRCZUM2Lyw7cUIzZWJOV1s/LEhxajJMLjFOUCZHalVSPTFEOFFhUzNVcCZAKjl3UD8rbG83Yj9AJSdrNGBwMFokMjIlSzMraUNaaj9YSk40Tm0mK1lGXXVALVckVSVWRVEvLCw+PiMpRDxoI2ApaDA6PFE2OTA5dWErJlZVJW4yOmNHM0ZKLSVAQmotRGdMcmBIdyZIQUtqS2pzZUs8L3hLVCopQixOOVgzXWtyYzEydCdwZ1RWKEx2LXRMW3hnXyU9TV9xN2FeeD83VWJkPiMlOGNZI1laPz0sYFdkeHUvYWUmI3c2KVI4OXRJIzZAcycoNkJmN2EmP1M9XlpJX2tTJmFpYCY9dEU3MkxfRCw7XlIpN1skczxFaCNjJilxLk1YSSUjdjlST2E1RlpPJXNGN3E3TndiJiNwdFVKOmFxSmUkU2w2OCUuRCMjI0VDPjw/LWFGJiNSTlF2Pm84bEtOJTUvJCh2ZGZxNytlYkEjdTFwXW92VUtXJlklcV0nPiQxQC1beGZuJDdaVHA3bU0sRyxLbzdhJkd1JUdbUk14SnNbME1NJXdjaS5MRkRLKSg8Y2BROE4pakVJRiorP1AyYThnJSkkcV1vMmFIOEMmPFNpYkMvcSwoZTp2Oy1iIzZbJE50RFo4NEplMktOdkIjJFA1P3RRM250KDBkPWouTFFmLi9MbDMzKyg7cTNMLXc9OGRYJCNXRiZ1SUpALWJmST4lOl9pMkI1Q3NSOCY5WiYjPW1QRW5tMGZgPCZjKVFMNXVKIyV1JWxKaitELXI7Qm9GJiM0RG9TOTdoNWcpRSNvOiZTNHdlREYsOV5Ib2VgaCpMK19hKk5yTFctMXBHXyYyVWRCODZlJUIvOj0+KU40eGVXLip3ZnQtOyQnNTgtRVNxcjxiP1VJKF8lQFtQNDY+I1VgJzZBUV1tJjYvYFo+I1M/WVkjVmM7cjdVMiYzMjZkPXcmSCMjIyM/VFpgKjQ/Ji5NSz9MUDhWeGc+JFtRWGMlUUp2OTIuKERiKkIpZ2IqQk05ZE0qaEpNQW8qYyYjYjB2PVBqZXJdJGdHJkpYRGYtPidTdHZVNzUwNWw5JEFGdmdZUkleJjxeYjY4P2ojcTlRWDRTTSdSTyMmc0wxSU0uckpmTFVBajIyMV1kIyNEVz1tODN1NTsnYll4LCpTbDBoTChXOzskZG9CJk8vVFE6KFpeeEJkTGpMPExuaTsnJ1guYCQjOCsxR0Q6ayRZVVdzYm44b2doNnJ4WjJaOV0lbmQrPlYjKjhVXzcyTGgrMlE4Q2owaTo2aHAmJEMvOnAoSEs+VDhZW2dIUTRgNCknJEFiKE5vZiVWJzhoTCYjPE5FZHRnKG4nPVMxQShRMS9JJjQoWyVkTWAsSXUnMTpfaEw+U2ZEMDcmNkQ8ZnA4ZEhNNy9nK3RsUE45SipyS2FQY3QmPyd1QkNlbV5qbiU5X0spPCxDNUszcz01ZyZHbUpiKltTWXE3SztUUkxHQ3NNLSQkO1MlOllAcjdBSzBwcHJwTDxMcmgscTdlLyVLV0s6NTBJXittJ3ZpYDM/JVpwKzwtZCskTC1TdjpALm8xOW4kczAmMzk7a247UyVCU3EqJDNXb0pTQ0x3ZVZbYVonTVFJak88NztYLVg7JitkTUx2dSNeVXNHRUM5V0VjW1god0k3IzIuKEYwalYqZVpmPC1RdjNKLWMrSjVBbHJCIyRwKEg2OEx2RUEncTNuMCNtLFtgKjhGdClGY1lnRXVkXUNXZm02OCwoYUxBJEBFRlRnTFhvQnEvVVBscDc6ZFsvO3JfaXg9OlRGYFM1SC1iPExJJkhZKEs9aCMpXUxrJEsxNGxWZm06eCRIPDNeUWw8TWAkT2hhcEJua3VwJ0QjTCRQYl9gTipnXTJlO1gvRHRnLGJzaiZLIzJbLTppWXInX3dnSClOVUlSOGExbiNTP1llaidoOF41OFViWmQrXkZLRCpUQDs2QTdhUUNbSzhkLSh2NkdJJHg6VDwmJ0dwNVVmPkBNLipKOjskLXJ2MjknTV04cU12LXRMcCwnODg2aWFDPUhiKllKb0tKLChqJUs9SGBLLnY5SGdncUJJaVp1J1F2QlQuIz0pMHVrcnVWJi4pMz0oXjFgbypQajQ8LTxhTigoXjcoJyNaMHdLIzVHWEA3dV1bYCpTXjQzOTMzQTRybF1bYCpPNENnTEVsXXYkMVEzQWVGMzdkYlhrLC4pdmojeCdkYDtxZ2JRUiVGVywyKD9MTz1zJVNjNjglTlAnIyNBb3RsOHg9QkUjajFVRChbMyRNKF1VSTJMWDNScEtOQDsvI2YnZi8mX210JkYpWGRGPDl0NClRYS4qa1RMd1EnKFRUQjkueEgnPiNNSitnTHE5LSMjQEh1WlBOMF11Omg3LlQuLkc6OyQvVXNqKFQ3YFE4dFQ3MkxuWWw8LXF4ODstSFY3US0mWGR4JTFhLGhDPTB1K0hsc1Y+bnVJUUwtNTxOPylOQlMpUU4qX0ksPyYpMidJTSVMM0kpWCgoZS9kbDImOCc8TTpeI00qUStbVC5YcmkuTFlTM3YlZkZgNjhoO2ItWFsvRW4nQ1IucTdFKXAnL2tsZTJITSx1O14lT0tDLU4rTGwlRjlDRjxOZideI3QyTCw7MjdXOjBPQDYjI1U2Vzc6JHJKZkxXSGokIyl3b3FCZWZJWi5QSzxiKnQ3ZWQ7cCpfbTs0RXhLI2hAJl0+Xz5Aa1hRdE1hY2ZELm0tVkFiODtJUmVNMyR3ZjAnJ2hyYSpzbzU2OCdJcCZ2UnM4NDknTVJZU3AlOnQ6aDVxU2d3cEVyJEI+USw7cyhDIyQpYHN2UXVGJCMjLUQsIyMsZzY4QDJbVDsuWFNkTjlRZSlycHQuX0stIzV3RilzUCcjI3AjQzBjJS1HYiVoZCs8LWonQWkqeCYmSE1rVF1DJ09TbCMjNVJHW0pYYUhOO2QndUEjeC5fVTsuYFBVQChaM2R0NHIxNTJAOnYsJ1IuU2ondyMwPC07a1BJKUZmSiYjQVlKJiMvLyk+LWs9bT0qWG5LJD49KTcyTF0wSSU+Lkc2OTBhOiQjIzwsKTs/OzcyIz94OStkO15WJzk7allAOyliciNxXllRcHg6WCNUZSRaXic9LT1iR2hMZjpENiZiTndaOS1aRCNuXjlIaExNcjVHOyddZCY2J3dZbVRGbUw8TEQpRl4lW3RDJzg7KzlFI0MkZyUjNVk+cTl3ST5QKDltSVs+a0MtZWtMQy9SJkNIK3MnQjtLLU02JEVCJWlzMDA6K0E0Wzd4a3MuTHJOazAmRSl3SUxZRkAyTCcwTmIkK3B2PCgyLjc2OC9GclkmaCReM2kmQCtHJUpUJzwtLHZgMztfKUk5TV5BRV1DTj9DbDJBWmcrJTRpVHBUMzxuLSYlSCViPEZEajJNPGhIPSZFaDwyTGVuJGIqYVRYPS04UXhOKWsxMUlNMWNeaiU5czxMPE5GU28pQj8rPC0oR3hzRixeLUVoQCQ0ZFhoTiQrI3J4SzgnamUnRDdrYGU7KTJwWXdQQSdfcDkmQF4xOG1sMV5bQGc0dCpbSk9hKls9UXA3KHFKX29PTF4oJzdmQiZIcS06c2Ysc05qOHhxXj4kVTRPXUdLeCdtOSliQHA3WXN2SzN3XllSLUNkUSo6SXI8KCR1JikjKCY/TDlSZzNIKTRmaUVwXmlJOU84S25UaixdSD9EKnI3J007UHdaOUswRV5rJi1jcEk7LnAvNl92d29GTVY8LT4jJVhpLkx4Vm5yVSg0JjgvUCs6aExTS2okI1UlXTQ5dCdJOnJnTWknRkxAYTowWS11QVszOScsKHZibWEqaFUlPC1TUkZgVHQ6NTQyUl9WViRwQFtwOERWW0EsPzE4MzlGV2RGPFRkZEY8OUFoLTYmOXRXb0RsaF0mMVNwR01xPlRpMU8qSCYjKEFMOFtfUCUuTT52Xi0pKXFPVCpGNUNxMGBZZSUrJEI2aTo3QDBJWDxOK1QrME1sTUJQUSpWaj5Tc0Q8VTRKSFk4a0QyKTJmVS9NIyRlLilUNCxfPThoTGltWyYpOz9Va0snLXg/Jyg6c2lJZkw8JHBGTWBpPD8lVyhtR0RITSU+aVdQLCMjUGAlL0w8ZVhpOkBaOUMuN289QChwWGRBTy9OTFE4bFBsK0hQT1FhOHdEOD1eR2xQYThUS0kxQ2poc0NUU0xKTScvV2w+LVMocXclc2YvQCUjQjY7L1U3S111WmJpXk9jXjJuPGJoUG1Va013PiV0PCknbUVWRScnbmBXbkpyYSReVEt2WDVCPjtfYVNFSycsKGh3YTA6aTRHPy5CY2kuKFhbP2IqKCQsPS1uPC5RJWAoWD0/K0BBbSpKczAmPTNiaDhLXW1MPExvTnMnNiwnODVgMD90LydfVTU5QF1kZEY8I0xkRjxlV2RGPE91Ti80NXJZPC1MQCYjK2ZtPjY5PUxiLE9jWlYvKTtUVG04Vkk7PyVPdEo8KGI0bXE3TTY6dT9LUmRGPGdSQDJMPUZOVS08YlsoOWMvTUwzbTtaWyRvRjNnKUdBV3FwQVJjPTxST3U3Y0w1bDstW0FdJS8rZnNkO2wjU2FmVC9mKlddMD1PJyQoVGI8WykqQGU3NzVSLTpZb2IlZyo+bCo6eFA/WWIuNSkld19JPzd1azVKQytGUyhtI2knay4nYTBpKTk8N2InZnMnNTlocSQqNVVodiMjcGleOCtoSUVCRmBudm9gOydsMC5eUzE8LXdVSzIvQ29oNThLS2hMak09U08qcmZPYCtxQ2BXLU9uLj1BSjU2Pj5pMkAyTEg2QTomNXFgPzlJM0BAJzA0JnAyL0xWYSpULTQ8LWkzO005VXZaZCtONz5iKmVJd2c6Q0MpYzw+bk8mIzxJR2U7X18udGhqWmw8JXcoV2syeG1wNFFASSNJOSxERl11Ny1QPS4tXzpZSl1hU0BWPzYqQygpZE9wNzpXTCxiJjNSZy8uY21NOSZyXj4kKD4uWi1JJkooUTBIZDVRJTdDby1iYC1jPE4oNnJAaXArQXVySzxtODZRSXRoKiN2Oy1PQnFpK0w3d0RFLUlyOEtbJ20rRERTTHdLJi8uPy1WJVVfJTM6cUtOdSRfYipCLWtwN05hRCdRZFdRUEtZcVtAPlApaEk7Kl9GXXVgUmJbLmo4X1EvPCY+dXUrVnNIJHNNOVRBJT8pKHZtSjgwKSxQN0U+KXRqRCUyTD0tdCNmS1slYHY9UTg8RmZOa2dnXm9JYmFoKiM4L1F0JEYmOksqLShOLycrMXZNQix1KCktYS5WVVUqI1tlJWdBQU8oUz5XbEEyKTtTYT5nWG04WUJgMWRASyNuXTc2LWEkVSxtRjxmWF1pZHFkKTwzLF1KN0ptVzRgNl11a3M9NC03MkwoakVrKzpiSjBNXnEtOERtX1o/MG9sUDFDOVNhJkhbZCZjJG9vUVVqXUV4ZCozWk1ALVdHVzIlcycsQi1fTSU+JVVsOiMvJ3hvRk05UVgtJC5RTic+WyUkWiR1RjZwQTZLaTJPNTo4dyp2UDE8LTFgW0csKS1tIz4wYFAmI2ViIy4zaSlydEI2MShvJyQ/WDNCPC9SOTA7ZVpdJU5jcTstVGxdI0Y+MlFmdF5hZV81dEtMOU1VZTliKnNMRVE5NUMmYD1HP0BNaj13aConM0U+PS08KUd0Kkl3KSdRRzpgQEl3T2Y3Jl0xaSdTMDFCK0V2L05hYyM5Uzs9O1lRcGdfNlVgKmtWWTM5eEssWy82QWo3OicxQm0tXzFFWWZhMStvJm80aHA3S05fUShPbElvQFMlO2pWZG4wJzE8VmM1Mj11YDNeby1uMSdnNHY1OEhqJjZfdDckIyM/TSljPCRiZ1FfJ1NZKCgteGtBI1koLHAnSDlySVZZLWIsJyViQ1BGNy5KPFVwXiwoZFUxVlkqNSNXa1RVPmgxOXcsV1FoTEkpM1MjZiQyKGViLGpyKmI7M1Z3XSo3TkglJGM0VnMsZUQ5PlhXOD9OXW8rKCpwZ0MlLzcyTFYtdTxIcCwzQGVeOVVCMUorYWs5LVROL21oS1BnK0FKWWQkTWx2QUZfakNLKi5PLV4oNjNhZE1ULT5XJWlld1M4VzZtMnJ0Q3BvJ1JTMVI4ND1AcGFUS3QpPj0lJjFbKSp2cCd1K3gsVnJ3TjsmXWt1TzlKRGJnPXBPJEoqLmpWZTt1J20wZHI5bCw8KndNSypPZT1nOGxWX0tFQkZrTydvVV1ePVstNzkyI29rLClpXWxSOHFRMm9BOHdjUkNaXjd3L05qaDs/LnN0WD9RMT5TMXE0Qm4kKUsxPC1yR2RPJyRXci5MYy5DRykkLypKTDR0TlIvLFNWTzMsYVV3J0RKTjopU3M7d0duOUEzMmlqdyVGTCtaMEZuLlU5O3JlU3EpYm1JMzJVPT01QUx1RyYjVmYxMzk4L3BWbzEqYy0oYVkxNjhvPGBKc1Niay0sMU47JD4wOk9VYXMoMzo4Wjk3MkxTZkY4ZWI9Yy07PlNQdzcuNmhuM21gOV5Ya24oci5xU1swO1QlJlFjPStTVFJ4WCdxMUJOazMmKmV1MjsmOHEkJng+USNRN15UZis2PChkJVpWbWoyYkRpJS4zTDJuKzRXJyRQaURERylnLHIlKz8sJEA/dW91NXRTZTJhTl9BUVUqPGhgZS1HSTcpP09LMkEuZDdfYyk/d1E1QVNAREwzciM3ZlNrZ2w2LSsrRDonQSx1cTdTdmxCJHBjcEgncTNuMCNfJWRZI3hDcHItbDxGME5SQC0jI0ZFVjZOVEY2IyMkbDg0TjF3P0FPPidJQU9VUlEjI1ZeRnYtWEZiR003RmwoTjwzRGhMR0YlcS4xckMkIzpUX18mUGk2OCUweGlfJltxRkooNzdqXyZKV29GLlY3MzUmVCxbUio6eEZSKks1Pj4jYGJXLT80TmVfJjZOZV8mNk5lXyZuYGtyLSNHSmNNNlg7dU02WDt1TSguYS4uXjJUa0wlb1IoIzt1LlQlZkFyJTR0SjgmPjwxPUdIWl8rbTkvI0gxRl5SI1NDIypOPUJBOShEP3ZbVWlGWT4+XjhwLEtLRi5XXUwyOXVMa0xsdS8rNFQ8WG9JQiZoeD1UMVBjRGFCJjtISCstQUZyPyhtOUhaVilGS1M4SkN3O1NEPTZbXi9EWlVMYEVVRGZdR0dsRyY+dyQpRi4vXm4zK3JsbytEQjs1c0lZR05rK2kxdC02OUpnLS0wcGFvN1NtI0spcGRIVyY7THVETkhASD4jL1gtVEkoO1A+IyxHYz4jMFN1PiM0YDE/IzhsQz8jPHhVPyNALmk/I0Q6JUAjSEY3QCNMUklAI1BfW0AjVGtuQCNYdypBI10tPUEjYTlPQSNkPEYmIyo7RyMjLkdZIyMyU2wjIzZgKCQjOmw6JCM+eEwkI0IuYCQjRjpyJCNKRi4lI05SQCUjUl9SJSNWa2UlI1p3dyUjXy00JiMzXlJoJVNmbHItaydNUy5vPy41L3NXZWwvd3BFTTAlMycvMSlLXmYxLWQ+RzIxJnYoMzU+VmAzOVY3QTQ9b254NEExT1k1RUkwOzZJYmdyNk0kSFM3UTwpNThDNXcsO1dvQSojWyVUKiNgMWcqI2Q9IysjaEk1KyNsVUcrI3BiWSsjdG5sKyN4JCksIyYxOywjKj1NLCMuSWAsIzJVciwjNmIuLSM7d1tII2lRdEEjbV4wQiNxakJCI3V2VEIjIy1oQiMnOSRDIytFNkMjL1FIQyMzXlpDIzdqbUMjO3YpRCM/LDxEI0M4TkQjR0RhRCNLUHNEI09dL0UjZzFBNSNLQSoxI2dDMTcjTUdkOyM4KDAyI0wtZDMjcldNNCNIZ2ExIyw8dzAjVC5qPCNPIycyI0NZTjEjcWFeOiNfNG0zI29ALz0jZUc4PSN0OEo1I2ArNzgjNHVJLSNtM0IyI1NCWzgjUTBAOCNpWyo5I2lPbjgjMU5tOyNec045I3FoPDkjOj14LSNQO0syIyQlWDkjYkMrLiNSZzs8I21OPS4jTVRGLiNSWk8uIzI/KTQjWSMoLyNbKTEvI2I7TC8jZEFVLyMwU3Y7I2xZJDAjbmAtMCNzZjYwIyhGMjQjd3JIMCMlL2UwI1RtRDwjJUpTTUZvdmU6Q1RCRVhJOjxlaDJnKUIsM2gyXkczaTsjZDNqRD4pNGtNWUQ0bFZ1YDRtYDomNW5pVUE1QChBNUJBMV1QQkI6eGxCQ0M9MkNETFhNQ0VVdGlDZiYwZzIndE4/UEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQLXFla0NgLjlrRWdeK0Yka3dWaUZKVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVvLF48LTI4WkknTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cDs3cS0jbExZSTp4dkQ9IwBB9v8ACwpAQAAAQEEAAJhBAEGKgAELugFQQQAAAAAAAOBAAACAQQAAgD8AAABBAAD4QQAAAAAAALhBAAC4QQAAMEEAADBBAACoQQAAAAAAABBBAAC4QQAAgEAAADBBAABcQgAAkEEAALhBAAAQQQAAMEEAAIBAAACSQgAAAAAAAIhBAACIQQAAAEEAAABBAABcQgAAAAAAAIhBAACIQQAAAEEAAABBAAC2QgAAAAAAAIhBAACwQQAAoEAAAAAAIAD/AAAw/zDwMf8xAP/v/wBOr58AQdCBAQuXJyAA/wAAMP8w8DH/MQD/7/8AAAEAAgAEAAEAAQABAAEAAgABAAMAAgABAAIAAgABAAEAAQABAAEABQACAAEAAgADAAMAAwACAAIABAABAAEAAQACAAEABQACAAMAAQACAAEAAgABAAEAAgABAAEAAgACAAEABAABAAEAAQABAAUACgABAAIAEwACAAEAAgABAAIAAQACAAEAAgABAAUAAQAGAAMAAgABAAIAAgABAAEAAQAEAAgABQABAAEABAABAAEAAwABAAIAAQAFAAEAAgABAAEAAQAKAAEAAQAFAAIABAAGAAEABAACAAIAAgAMAAIAAQABAAYAAQABAAEABAABAAEABAAGAAUAAQAEAAIAAgAEAAoABwABAAEABAACAAQAAgABAAQAAwAGAAoADAAFAAcAAgAOAAIACQABAAEABgAHAAoABAAHAA0AAQAFAAQACAAEAAEAAQACABwABQAGAAEAAQAFAAIABQAUAAIAAgAJAAgACwACAAkAEQABAAgABgAIABsABAAGAAkAFAALABsABgBEAAIAAgABAAEAAQACAAEAAgACAAcABgALAAMAAwABAAEAAwABAAIAAQABAAEAAQABAAMAAQABAAgAAwAEAAEABQAHAAIAAQAEAAQACAAEAAIAAQACAAEAAQAEAAUABgADAAYAAgAMAAMAAQADAAkAAgAEAAMABAABAAUAAwADAAEAAwAHAAEABQABAAEAAQABAAIAAwAEAAUAAgADAAIABgABAAEAAgABAAcAAQAHAAMABAAFAA8AAgACAAEABQADABYAEwACAAEAAQABAAEAAgAFAAEAAQABAAYAAQABAAwACAACAAkAEgAWAAQAAQABAAUAAQAQAAEAAgAHAAoADwABAAEABgACAAQAAQACAAQAAQAGAAEAAQADAAIABAABAAYABAAFAAEAAgABAAEAAgABAAoAAwABAAMAAgABAAkAAwACAAUABwACABMABAADAAYAAQABAAEAAQABAAQAAwACAAEAAQABAAIABQADAAEAAQABAAIAAgABAAEAAgABAAEAAgABAAMAAQABAAEAAwAHAAEABAABAAEAAgABAAEAAgABAAIABAAEAAMACAABAAEAAQACAAEAAwAFAAEAAwABAAMABAAGAAIAAgAOAAQABgAGAAsACQABAA8AAwABABwABQACAAUABQADAAEAAwAEAAUABAAGAA4AAwACAAMABQAVAAIABwAUAAoAAQACABMAAgAEABwAHAACAAMAAgABAA4ABAABABoAHAAqAAwAKAADADQATwAFAA4AEQADAAIAAgALAAMABAAGAAMAAQAIAAIAFwAEAAUACAAKAAQAAgAHAAMABQABAAEABgADAAEAAgACAAIABQAcAAEAAQAHAAcAFAAFAAMAHQADABEAGgABAAgABAAbAAMABgALABcABQADAAQABgANABgAEAAGAAUACgAZACMABwADAAIAAwADAA4AAwAGAAIABgABAAQAAgADAAgAAgABAAEAAwADAAMABAABAAEADQACAAIABAAFAAIAAQAOAA4AAQACAAIAAQAEAAUAAgADAAEADgADAAwAAwARAAIAEAAFAAEAAgABAAgACQADABMABAACAAIABAARABkAFQAUABwASwABAAoAHQBnAAQAAQACAAEAAQAEAAIABAABAAIAAwAYAAIAAgACAAEAAQACAAEAAwAIAAEAAQABAAIAAQABAAMAAQABAAEABgABAAUAAwABAAEAAQADAAQAAQABAAUAAgABAAUABgANAAkAEAABAAEAAQABAAMAAgADAAIABAAFAAIABQACAAIAAwAHAA0ABwACAAIAAQABAAEAAQACAAMAAwACAAEABgAEAAkAAgABAA4AAgAOAAIAAQASAAMABAAOAAQACwApAA8AFwAPABcAsAABAAMABAABAAEAAQABAAUAAwABAAIAAwAHAAMAAQABAAIAAQACAAQABAAGAAIABAABAAkABwABAAoABQAIABAAHQABAAEAAgACAAMAAQADAAUAAgAEAAUABAABAAEAAgACAAMAAwAHAAEABgAKAAEAEQABACwABAAGAAIAAQABAAYABQAEAAIACgABAAYACQACAAgAAQAYAAEAAgANAAcACAAIAAIAAQAEAAEAAwABAAMAAwAFAAIABQAKAAkABAAJAAwAAgABAAYAAQAKAAEAAQAHAAcABAAKAAgAAwABAA0ABAADAAEABgABAAMABQACAAEAAgARABAABQACABAABgABAAQAAgABAAMAAwAGAAgABQALAAsAAQADAAMAAgAEAAYACgAJAAUABwAEAAcABAAHAAEAAQAEAAIAAQADAAYACAAHAAEABgALAAUABQADABgACQAEAAIABwANAAUAAQAIAFIAEAA9AAEAAQABAAQAAgACABAACgADAAgAAQABAAYABAACAAEAAwABAAEAAQAEAAMACAAEAAIAAgABAAEAAQABAAEABgADAAUAAQABAAQABgAJAAIAAQABAAEAAgABAAcAAgABAAYAAQAFAAQABAADAAEACAABAAMAAwABAAMAAgACAAIAAgADAAEABgABAAIAAQACAAEAAwAHAAEACAACAAEAAgABAAUAAgAFAAMABQAKAAEAAgABAAEAAwACAAUACwADAAkAAwAFAAEAAQAFAAkAAQACAAEABQAHAAkACQAIAAEAAwADAAMABgAIAAIAAwACAAEAAQAgAAYAAQACAA8ACQADAAcADQABAAMACgANAAIADgABAA0ACgACAAEAAwAKAAQADwACAA8ADwAKAAEAAwAJAAYACQAgABkAGgAvAAcAAwACAAMAAQAGAAMABAADAAIACAAFAAQAAQAJAAQAAgACABMACgAGAAIAAwAIAAEAAgACAAQAAgABAAkABAAEAAQABgAEAAgACQACAAMAAQABAAEAAQADAAUABQABAAMACAAEAAYAAgABAAQADAABAAUAAwAHAA0AAgAFAAgAAQAGAAEAAgAFAA4ABgABAAUAAgAEAAgADwAFAAEAFwAGAD4AAgAKAAEAAQAIAAEAAgACAAoABAACAAIACQACAAEAAQADAAIAAwABAAUAAwADAAIAAQADAAgAAQABAAEACwADAAEAAQAEAAMABwABAA4AAQACAAMADAAFAAIABQABAAYABwAFAAcADgALAAEAAwABAAgACQAMAAIAAQALAAgABAAEAAIABgAKAAkADQABAAEAAwABAAUAAQADAAIABAAEAAEAEgACAAMADgALAAQAHQAEAAIABwABAAMADQAJAAIAAgAFAAMABQAUAAcAEAAIAAUASAAiAAYABAAWAAwADAAcAC0AJAAJAAcAJwAJAL8AAQABAAEABAALAAgABAAJAAIAAwAWAAEAAQABAAEABAARAAEABwAHAAEACwAfAAoAAgAEAAgAAgADAAIAAQAEAAIAEAAEACAAAgADABMADQAEAAkAAQAFAAIADgAIAAEAAQADAAYAEwAGAAUAAQAQAAYAAgAKAAgABQABAAIAAwABAAUABQABAAsABgAGAAEAAwADAAIABgADAAgAAQABAAQACgAHAAUABwAHAAUACAAJAAIAAQADAAQAAQABAAMAAQADAAMAAgAGABAAAQAEAAYAAwABAAoABgABAAMADwACAAkAAgAKABkADQAJABAABgACAAIACgALAAQAAwAJAAEAAgAGAAYABQAEAB4AKAABAAoABwAMAA4AIQAGAAMABgAHAAMAAQADAAEACwAOAAQACQAFAAwACwAxABIAMwAfAIwAHwACAAIAAQAFAAEACAABAAoAAQAEAAQAAwAYAAEACgABAAMABgAGABAAAwAEAAUAAgABAAQAAgA5AAoABgAWAAIAFgADAAcAFgAGAAoACwAkABIAEAAhACQAAgAFAAUAAQABAAEABAAKAAEABAANAAIABwAFAAIACQADAAQAAQAHACsAAwAHAAMACQAOAAcACQABAAsAAQABAAMABwAEABIADQABAA4AAQADAAYACgBJAAIAAgAeAAYAAQALABIAEwANABYAAwAuACoAJQBZAAcAAwAQACIAAgACAAMACQABAAcAAQABAAEAAgACAAQACgAHAAMACgADAAkABQAcAAkAAgAGAA0ABwADAAEAAwAKAAIABwACAAsAAwAGABUANgBVAAIAAQAEAAIAAgABACcAAwAVAAIAAgAFAAEAAQABAAQAAQABAAMABAAPAAEAAwACAAQABAACAAMACAACABQAAQAIAAcADQAEAAEAGgAGAAIACQAiAAQAFQA0AAoABAAEAAEABQAMAAIACwABAAcAAgAeAAwALAACAB4AAQABAAMABgAQAAkAEQAnAFIAAgACABgABwABAAcAAwAQAAkADgAsAAIAAQACAAEAAgADAAUAAgAEAAEABgAHAAUAAwACAAYAAQALAAUACwACAAEAEgATAAgAAQADABgAHQACAAEAAwAFAAIAAgABAA0ABgAFAAEALgALAAMABQABAAEABQAIAAIACgAGAAwABgADAAcACwACAAQAEAANAAIABQABAAEAAgACAAUAAgAcAAUAAgAXAAoACAAEAAQAFgAnAF8AJgAIAA4ACQAFAAEADQAFAAQAAwANAAwACwABAAkAAQAbACUAAgAFAAQABAA/ANMAXwACAAIAAgABAAMABQACAAEAAQACAAIAAQABAAEAAwACAAQAAQACAAEAAQAFAAIAAgABAAEAAgADAAEAAwABAAEAAQADAAEABAACAAEAAwAGAAEAAQADAAcADwAFAAMAAgAFAAMACQALAAQAAgAWAAEABgADAAgABwABAAQAHAAEABAAAwADABkABAAEABsAGwABAAQAAQACAAIABwABAAMABQACABwACAACAA4AAQAIAAYAEAAZAAMAAwADAA4AAwADAAEAAQACAAEABAAGAAMACAAEAAEAAQABAAIAAwAGAAoABgACAAMAEgADAAIABQAFAAQAAwABAAUAAgAFAAQAFwAHAAYADAAGAAQAEQALAAkABQABAAEACgAFAAwAAQABAAsAGgAhAAcAAwAGAAEAEQAHAAEABQAMAAEACwACAAQAAQAIAA4AEQAXAAEAAgABAAcACAAQAAsACQAGAAUAAgAGAAQAEAACAAgADgABAAsACAAJAAEAAQABAAkAGQAEAAsAEwAHAAIADwACAAwACAA0AAcABQATAAIAEAAEACQACAABABAACAAYABoABAAGAAIACQAFAAQAJAADABwADAAZAA8AJQAbABEADAA7ACYABQAgAH8AAQACAAkAEQAOAAQAAQACAAEAAQAIAAsAMgAEAA4AAgATABAABAARAAUABAAFABoADAAtAAIAFwAtAGgAHgAMAAgAAwAKAAIAAgADAAMAAQAEABQABwACAAkABgAPAAIAFAABAAMAEAAEAAsADwAGAIYAAgAFADsAAQACAAIAAgABAAkAEQADABoAiQAKANMAOwABAAIABAABAAQAAQABAAEAAgAGAAIAAwABAAEAAgADAAIAAwABAAMABAAEAAIAAwADAAEABAADAAEABwACAAIAAwABAAIAAQADAAMAAwACAAIAAwACAAEAAwAOAAYAAQADAAIACQAGAA8AGwAJACIAkQABAAEAAgABAAEAAQABAAIAAQABAAEAAQACAAIAAgADAAEAAgABAAEAAQACAAMABQAIAAMABQACAAQAAQADAAIAAgACAAwABAABAAEAAQAKAAQABQABABQABAAQAAEADwAJAAUADAACAAkAAgAFAAQAAgAaABMABwABABoABAAeAAwADwAqAAEABgAIAKwAAQABAAQAAgABAAEACwACAAIABAACAAEAAgABAAoACAABAAIAAQAEAAUAAQACAAUAAQAIAAQAAQADAAQAAgABAAYAAgABAAMABAABAAIAAQABAAEAAQAMAAUABwACAAQAAwABAAEAAQADAAMABgABAAIAAgADAAMAAwACAAEAAgAMAA4ACwAGAAYABAAMAAIACAABAAcACgABACMABwAEAA0ADwAEAAMAFwAVABwANAAFABoABQAGAAEABwAKAAIABwA1AAMAAgABAAEAAQACAKMAFAIBAAoACwABAAMAAwAEAAgAAgAIAAYAAgACABcAFgAEAAIAAgAEAAIAAQADAAEAAwADAAUACQAIAAIAAQACAAgAAQAKAAIADAAVABQADwBpAAIAAwABAAEAAwACAAMAAQABAAIABQABAAQADwALABMAAQABAAEAAQAFAAQABQABAAEAAgAFAAMABQAMAAEAAgAFAAEACwABAAEADwAJAAEABAAFAAMAGgAIAAIAAQADAAEAAQAPABMAAgAMAAEAAgAFAAIABwACABMAAgAUAAYAGgAHAAUAAgACAAcAIgAVAA0ARgACAIAAAQABAAIAAQABAAIAAQABAAMAAgACAAIADwABAAQAAQADAAQAKgAKAAYAAQAxAFUACAABAAIAAQABAAQABAACAAMABgABAAUABwAEAAMA0wAEAAEAAgABAAIABQABAAIABAACAAIABgAFAAYACgADAAQAMABkAAYAAgAQACgBBQAbAIMBAgACAAMABwAQAAgABQAmAA8AJwAVAAkACgADAAcAOwANABsAFQAvAAUAFQAGAEHyqAELsR4BAAIABAABAAEAAQABAAIAAQAGAAIAAgABAAgABQAHAAsAAQACAAoACgAIAAIABAAUAAIACwAIAAIAAQACAAEABgACAAEABwAFAAMABwABAAEADQAHAAkAAQAEAAYAAQACAAEACgABAAEACQACAAIABAAFAAYADgABAAEACQADABIABQAEAAIAAgAKAAcAAQABAAEAAwACAAQAAwAXAAIACgAMAAIADgACAAQADQABAAYACgADAAEABwANAAYABAANAAUAAgADABEAAgACAAUABwAGAAQAAQAHAA4AEAAGAA0ACQAPAAEAAQAHABAABAAHAAEAEwAJAAIABwAPAAIABgAFAA0AGQAEAA4ADQALABkAAQABAAEAAgABAAIAAgADAAoACwADAAMAAQABAAQABAACAAEABAAJAAEABAADAAUABQACAAcADAALAA8ABwAQAAQABQAQAAIAAQABAAYAAwADAAEAAQACAAcABgAGAAcAAQAEAAcABgABAAEAAgABAAwAAwADAAkABQAIAAEACwABAAIAAwASABQABAABAAMABgABAAcAAwAFAAUABwACAAIADAADAAEABAACAAMAAgADAAsACAAHAAQAEQABAAkAGQABAAEABAACAAIABAABAAIABwABAAEAAQADAAEAAgAGABAAAQACAAEAAQADAAwAFAACAAUAFAAIAAcABgACAAEAAQABAAEABgACAAEAAgAKAAEAAQAGAAEAAwABAAIAAQAEAAEADAAEAAEAAwABAAEAAQABAAEACgAEAAcABQANAAEADwABAAEAHgALAAkAAQAPACYADgABACAAEQAUAAEACQAfAAIAFQAJAAQAMQAWAAIAAQANAAEACwAtACMAKwA3AAwAEwBTAAEAAwACAAMADQACAAEABwADABIAAwANAAgAAQAIABIABQADAAcAGQAYAAkAGAAoAAMAEQAYAAIAAQAGAAIAAwAQAA8ABgAHAAMADAABAAkABwADAAMAAwAPABUABQAQAAQABQAMAAsACwADAAYAAwACAB8AAwACAAEAAQAXAAYABgABAAQAAgAGAAUAAgABAAEAAwADABYAAgAGAAIAAwARAAMAAgAEAAUAAQAJAAUAAQABAAYADwAMAAMAEQACAA4AAgAIAAEAFwAQAAQAAgAXAAgADwAXABQADAAZABMALwALABUAQQAuAAQAAwABAAUABgABAAIABQAaAAIAAQABAAMACwABAAEAAQACAAEAAgADAAEAAQAKAAIAAwABAAEAAQADAAYAAwACAAIABgAGAAkAAgACAAIABgACAAUACgACAAQAAQACAAEAAgACAAMAAQABAAMAAQACAAkAFwAJAAIAAQABAAEAAQAFAAMAAgABAAoACQAGAAEACgACAB8AGQADAAcABQAoAAEADwAGABEABwAbALQAAQADAAIAAgABAAEAAQAGAAMACgAHAAEAAwAGABEACAAGAAIAAgABAAMABQAFAAgAEAAOAA8AAQABAAQAAQACAAEAAQABAAMAAgAHAAUABgACAAUACgABAAQAAgAJAAEAAQALAAYAAQAsAAEAAwAHAAkABQABAAMAAQABAAoABwABAAoABAACAAcAFQAPAAcAAgAFAAEACAADAAQAAQADAAEABgABAAQAAgABAAQACgAIAAEABAAFAAEABQAKAAIABwABAAoAAQABAAMABAALAAoAHQAEAAcAAwAFAAIAAwAhAAUAAgATAAMAAQAEAAIABgAfAAsAAQADAAMAAwABAAgACgAJAAwACwAMAAgAAwAOAAgABgALAAEABAApAAMAAQACAAcADQABAAUABgACAAYADAAMABYABQAJAAQACAAJAAkAIgAGABgAAQABABQACQAJAAMABAABAAcAAgACAAIABgACABwABQADAAYAAQAEAAYABwAEAAIAAQAEAAIADQAGAAQABAADAAEACAAIAAMAAgABAAUAAQACAAIAAwABAAsACwAHAAMABgAKAAgABgAQABAAFgAHAAwABgAVAAUABAAGAAYAAwAGAAEAAwACAAEAAgAIAB0AAQAKAAEABgANAAYABgATAB8AAQANAAQABAAWABEAGgAhAAoABAAPAAwAGQAGAEMACgACAAMAAQAGAAoAAgAGAAIACQABAAkABAAEAAEAAgAQAAIABQAJAAIAAwAIAAEACAADAAkABAAIAAYABAAIAAsAAwACAAEAAQADABoAAQAHAAUAAQALAAEABQADAAUAAgANAAYAJwAFAAEABQACAAsABgAKAAUAAQAPAAUAAwAGABMAFQAWAAIABAABAAYAAQAIAAEABAAIAAIABAACAAIACQACAAEAAQABAAQAAwAGAAMADAAHAAEADgACAAQACgACAA0AAQARAAcAAwACAAEAAwACAA0ABwAOAAwAAwABAB0AAgAIAAkADwAOAAkADgABAAMAAQAGAAUACQALAAMAJgArABQABwAHAAgABQAPAAwAEwAPAFEACAAHAAEABQBJAA0AJQAcAAgACAABAA8AEgAUAKUAHAABAAYACwAIAAQADgAHAA8AAQADAAMABgAEAAEABwAOAAEAAQALAB4AAQAFAAEABAAOAAEABAACAAcANAACAAYAHQADAAEACQABABUAAwAFAAEAGgADAAsADgALAAEAEQAFAAEAAgABAAMAAgAIAAEAAgAJAAwAAQABAAIAAwAIAAMAGAAMAAcABwAFABEAAwADAAMAAQAXAAoABAAEAAYAAwABABAAEQAWAAMACgAVABAAEAAGAAQACgACAAEAAQACAAgACAAGAAUAAwADAAMAJwAZAA8AAQABABAABgAHABkADwAGAAYADAABABYADQABAAQACQAFAAwAAgAJAAEADAAcAAgAAwAFAAoAFgA8AAEAAgAoAAQAPQA/AAQAAQANAAwAAQAEAB8ADAABAA4AWQAFABAABgAdAA4AAgAFADEAEgASAAUAHQAhAC8AAQARAAEAEwAMAAIACQAHACcADAADAAcADAAnAAMAAQAuAAQADAADAAgACQAFAB8ADwASAAMAAgACAEIAEwANABEABQADAC4AfAANADkAIgACAAUABAAFAAgAAQABAAEABAADAAEAEQAFAAMABQADAAEACAAFAAYAAwAbAAMAGgAHAAwABwACABEAAwAHABIATgAQAAQAJAABAAIAAQAGAAIAAQAnABEABwAEAA0ABAAEAAQAAQAKAAQAAgAEAAYAAwAKAAEAEwABABoAAgAEACEAAgBJAC8ABwADAAgAAgAEAA8AEgABAB0AAgApAA4AAQAVABAAKQAHACcAGQANACwAAgACAAoAAQANAAcAAQAHAAMABQAUAAQACAACADEAAQAKAAYAAQAGAAcACgAHAAsAEAADAAwAFAAEAAoAAwABAAIACwACABwACQACAAQABwACAA8AAQAbAAEAHAARAAQABQAKAAcAAwAYAAoACwAGABoAAwACAAcAAgACADEAEAAKABAADwAEAAUAGwA9AB4ADgAmABYAAgAHAAUAAQADAAwAFwAYABEAEQADAAMAAgAEAAEABgACAAcABQABAAEABQABAAEACQAEAAEAAwAGAAEACAACAAgABAAOAAMABQALAAQAAQADACAAAQATAAQAAQANAAsABQACAAEACAAGAAgAAQAGAAUADQADABcACwAFAAMAEAADAAkACgABABgAAwDGADQABAACAAIABQAOAAUABAAWAAUAFAAEAAsABgApAAEABQACAAIACwAFAAIAHAAjAAgAFgADABIAAwAKAAcABQADAAQAAQAFAAMACAAJAAMABgACABAAFgAEAAUABQADAAMAEgAXAAIABgAXAAUAGwAIAAEAIQACAAwAKwAQAAUAAgADAAYAAQAUAAQAAgAJAAcAAQALAAIACgADAA4AHwAJAAMAGQASABQAAgAFAAUAGgAOAAEACwARAAwAKAATAAkABgAfAFMAAgAHAAkAEwBOAAwADgAVAEwADABxAE8AIgAEAAEAAQA9ABIAVQAKAAIAAgANAB8ACwAyAAYAIQCfALMABgAGAAcABAAEAAIABAACAAUACAAHABQAIAAWAAEAAwAKAAYABwAcAAUACgAJAAIATQATAA0AAgAFAAEABAAEAAcABAANAAMACQAfABEAAwAaAAIABgAGAAUABAABAAcACwADAAQAAgABAAYAAgAUAAQAAQAJAAIABgADAAcAAQABAAEAFAACAAMAAQAGAAIAAwAGAAIABAAIAAEABQANAAgABAALABcAAQAKAAYAAgABAAMAFQACAAIABAAYAB8ABAAKAAoAAgAFAMAADwAEABAABwAJADMAAQACAAEAAQAFAAEAAQACAAEAAwAFAAMAAQADAAQAAQADAAEAAwADAAkACAABAAIAAgACAAQABAASAAwAXAACAAoABAADAA4ABQAZABAAKgAEAA4ABAACABUABQB+AB4AHwACAAEABQANAAMAFgAFAAYABgAUAAwAAQAOAAwAVwADABMAAQAIAAIACQAJAAMAAwAXAAIAAwAHAAYAAwABAAIAAwAJAAEAAwABAAYAAwACAAEAAwALAAMAAQAGAAoAAwACAAMAAQACAAEABQABAAEACwADAAYABAABAAcAAgABAAIABQAFACIABAAOABIABAATAAcABQAIAAIABgBPAAEABQACAA4ACAACAAkAAgABACQAHAAQAAQAAQABAAEAAgAMAAYAKgAnABAAFwAHAA8ADwADAAIADAAHABUAQAAGAAkAHAAIAAwAAwADACkAOwAYADMANwA5ACYBCQAJAAIABgACAA8AAQACAA0AJgBaAAkACQAJAAMACwAHAAEAAQABAAUABgADAAIAAQACAAIAAwAIAAEABAAEAAEABQAHAAEABAADABQABAAJAAEAAQABAAUABQARAAEABQACAAYAAgAEAAEABAAFAAcAAwASAAsACwAgAAcABQAEAAcACwB/AAgABAADAAMAAQAKAAEAAQAGABUADgABABAAAQAHAAEAAwAGAAkAQQAzAAQAAwANAAMACgABAAEADAAJABUAbgADABMAGAABAAEACgA+AAQAAQAdACoATgAcABQAEgBSAAYAAwAPAAYAVAA6AP0ADwCbAAgBDwAVAAkADgAHADoAKAAnAEGwxwELECAA/wAABC8F4C3/LUCmn6YAQdLHAQsmgD/NzMw9CtcjPG8SgzoXt9E4rMUnN703hjWVv9Yzd8wrMl9wiTAAQYDIAQtGBAAAAOeOAADnjgAABAAAAPGOAADxjgAACAAAAPSOAAD0jgAACAAAAPmOAAD5jgAABAAAAOqOAADqjgAACAAAAOqOAADtjgBB0MgBC5IC/5AAAAORAAAHkQAAC5EAAMGQAADBkAAAwZAAAMGQAADHkAAAz5AAANeQAADfkAAA55AAAO+QAAD3kAAA35AAAJOQAACTkAAAk5AAAJOQAACXkAAAnZAAAKOQAACpkAAAr5AAALWQAAC7kAAAqZAAAP8AAP///wD/AP8A/wD///8AAP///wD///8AAP8AAAAA6HoAANB0AADQdAAA0HQAANB0AAA4ewAAWHsAANB0AAAIewAA0HQAANB0AAAIewAAOHsAADh7AABYewAAWHsAAOh6AABYewAAWHsAAFh7AADQdAAA0HQAANB0AAAAAAAACHsAAEB7AAAIdQAAOHsAAOh6AAA4ewAAWHsAANB0AADQdABB8MoBCxLQdAAA2HQAAAh7AABYewAA0HQAQZDLAQsi6HoAANB0AADQdAAACHsAAAh7AADYdAAA0HQAAFB7AAA4ewBBwMsBCyIIewAA0HQAADh7AAAIewAACHsAANh0AADQdAAA0HQAAAh7AEHwywELEgh7AADYdAAA0HQAAAh7AAAIewBBkMwBCzboegAA2HQAAFh7AADQdAAACHsAANh0AAA4ewAAOHsAAAh7AADYdAAA0HQAANB0AAA4ewAAOHsAQdDMAQsSCHsAANh0AAAIewAAOHsAANB0AEHwzAELMgh7AAA4ewAAOHsAANh0AAAIewAA2HQAADh7AADYdAAACHsAANh0AADQdAAAOHsAANB0AEGwzQELIgh7AADYdAAA0HQAADh7AADQdAAA0HQAANB0AADQdAAA0HQAQeDNAQs2CHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AAA4ewAAOHsAANB0AEGgzgELEgh7AADYdAAA0HQAANB0AADQdABBwM4BC3YIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAAAAAAAAh7AADYdAAAOHsAANB0AADQdAAA0HQAANB0AAA4ewAACHsAANh0AADQdAAAYHsAAGB7AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AAA4ewAAOHsAADh7AEHAzwELEgh7AADYdAAA0HQAANB0AAA4ewBB4M8BC4IBCHsAANh0AADQdAAA0HQAANB0AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AABQewAA0HQAADh7AADQdAAA0HQAAAh7AADYdAAA0HQAAFB7AAA4ewAA0HQAANB0AAAAAAAACHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AADQdABB8NABCyIIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AEGg0QELRgh7AADYdAAA0HQAANB0AAA4ewAAOHsAANB0AAAAAAAACHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQfDRAQt2CHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AADQdAAA0HQAADh7AAA4ewAAAAAAAOh6AABYewAA0HQAANB0AADoegAA2HQAANB0AADQdAAAOHsAADh7AADQdAAA0HQAANB0AADQdABB8NIBC5IBCHsAANh0AADQdAAAQHsAAAh7AADQdAAA0HQAANB0AADQdAAAOHsAANB0AADQdAAA6HoAANB0AADQdAAA0HQAANB0AADQdAAA0HQAAAAAAADoegAAOHsAANB0AAAIewAA6HoAANh0AAAIewAAOHsAAOh6AADYdAAA0HQAADh7AADoegAA0HQAANB0AADQdAAA0HQAQZDUAQsi6HoAANB0AAA4ewAA0HQAAAh7AADQdAAA0HQAAAh7AAA4ewBBwNQBC4YBCHsAANh0AADQdAAAOHsAAAh7AADYdAAAUHsAAFB7AABQewAAUHsAAFB7AAAAAAAACHsAAFh2AAA4ewAA0HQAAAh7AACYdgAAOHsAAFh7AAAIewAAmHYAADh7AAAIewAACHsAAJh2AAA4ewAAOHsAANB0AADIdgAA0HQAAFh7AADQdAAA0HQAQdDVAQsy6HoAACB2AADQdAAAWHsAANB0AABAewAAMHsAAAAAAAA4ewAAIHYAAFh7AADYdAAAWHsAQZDWAQti0HQAACB2AABYewAAWHsAAFh7AADYdAAA0HQAANB0AADoegAAQHUAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAQYDXAQs26HoAADB1AAA4ewAAOHsAAOh6AABAdQAA0HQAANB0AADoegAAQHUAANB0AADQdAAAWHsAADh7AEHA1wELFuh6AABAdQAA0HQAANB0AADQdAAAOHsAQeDXAQsW6HoAAEB1AADQdAAAWHsAADh7AAA4ewBBgNgBCzLoegAAQHUAANB0AABYewAAWHsAAFh7AAA4ewAAAAAAAOh6AABAdQAAQHsAAAh7AABYewBBwNgBCyLoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHw2AELEuh6AABAdQAA0HQAADh7AABAewBBkNkBC0boegAAQHUAANB0AAA4ewAAQHsAAAh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHg2QELcuh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAA6HoAAEB1AADQdAAAWHsAANB0AABAewAA2HQAAFh7AADQdABB4NoBCxLoegAAQHUAANB0AABAewAA2HQAQYDbAQsW6HoAAEB1AADQdAAAWHsAAEB7AAA4ewBBoNsBCzboegAAQHUAANB0AABYewAAQHsAADh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAAQHsAQeDbAQvWAeh6AABAdQAA0HQAANB0AADQdAAAQHsAAFh7AAAAAAAA6HoAAEB1AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAQHsAAEB7AABAewAA6HoAAEB1AADQdAAA0HQAAEB7AABYewAAOHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAAFh7AAA4ewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAWHsAQcDdAQsS6HoAAEB1AADQdAAA0HQAAAh7AEHg3QELRuh6AADgdwAAOHsAAFh7AADoegAA+HUAADh7AADYdAAA6HoAAOh1AAA4ewAAOHsAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQbDeAQvhA9B0AADQdAAA0HQAANB0AAACAADAAwAAwAQAAMAFAADABgAAwAcAAMAIAADACQAAwAoAAMALAADADAAAwA0AAMAOAADADwAAwBAAAMARAADAEgAAwBMAAMAUAADAFQAAwBYAAMAXAADAGAAAwBkAAMAaAADAGwAAwBwAAMAdAADAHgAAwB8AAMAAAACzAQAAwwIAAMMDAADDBAAAwwUAAMMGAADDBwAAwwgAAMMJAADDCgAAwwsAAMMMAADDDQAA0w4AAMMPAADDAAAMuwEADMMCAAzDAwAMwwQADNMAAAAA/////////////////////////////////////////////////////////////////wABAgMEBQYHCAn/////////CgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiP///////8KCwwNDg8QERITFBUWFxgZGhscHR4fICEiI/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AQaDiAQsYEQAKABEREQAAAAAFAAAAAAAACQAAAAALAEHA4gELIREADwoREREDCgcAARMJCwsAAAkGCwAACwAGEQAAABEREQBB8eIBCwELAEH64gELGBEACgoREREACgAAAgAJCwAAAAkACwAACwBBq+MBCwEMAEG34wELFQwAAAAADAAAAAAJDAAAAAAADAAADABB5eMBCwEOAEHx4wELFQ0AAAAEDQAAAAAJDgAAAAAADgAADgBBn+QBCwEQAEGr5AELHg8AAAAADwAAAAAJEAAAAAAAEAAAEAAAEgAAABISEgBB4uQBCw4SAAAAEhISAAAAAAAACQBBk+UBCwELAEGf5QELFQoAAAAACgAAAAAJCwAAAAAACwAACwBBzeUBCwEMAEHZ5QEL3gIMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYKAAAAZAAAAOgDAAAQJwAAoIYBAEBCDwCAlpgAAOH1BQMAAAAEAAAABAAAAAYAAACD+aIARE5uAPwpFQDRVycA3TT1AGLbwAA8mZUAQZBDAGNR/gC73qsAt2HFADpuJADSTUIASQbgAAnqLgAcktEA6x3+ACmxHADoPqcA9TWCAES7LgCc6YQAtCZwAEF+XwDWkTkAU4M5AJz0OQCLX4QAKPm9APgfOwDe/5cAD5gFABEv7wAKWosAbR9tAM9+NgAJyycARk+3AJ5mPwAt6l8Auid1AOXrxwA9e/EA9zkHAJJSigD7a+oAH7FfAAhdjQAwA1YAe/xGAPCrawAgvM8ANvSaAOOpHQBeYZEACBvmAIWZZQCgFF8AjUBoAIDY/wAnc00ABgYxAMpWFQDJqHMAe+JgAGuMwABBw+gBC21A+yH5PwAAAAAtRHQ+AAAAgJhG+DwAAABgUcx4OwAAAICDG/A5AAAAQCAlejgAAACAIoLjNgAAAAAd82k1OGPtPtoPST9emHs/2g/JP2k3rDFoISIztA8UM2ghojMAAAAAAADwPwAAAAAAAPg/AEG46QELCAbQ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aXZlAFBsb3RMaW5lc0hvdmVyZWQAUGxvdEhpc3RvZ3JhbUhvdmVyZWQAVGV4dFNlbGVjdGVkQmcARHJhZ0Ryb3BUYXJnZXQATmF2SGlnaGxpZ2h0AE5hdldpbmRvd2luZ0hpZ2hsaWdodABOYXZXaW5kb3dpbmdEaW1CZwBNb2RhbFdpbmRvd0RpbUJnAFVua25vd24AIyNUb29sdGlwXyUwMmQAIyNNZW51XyUwMmQAIyNQb3B1cF8lMDh4AHdpbmRvd19jb250ZXh0AHZvaWRfY29udGV4dABjb2x1bW5zACNTb3VyY2VFeHRlcm4ACiUqcyUuKnMAICUuKnMAYWIACgBMb2cgVG8gVFRZAExvZyBUbyBGaWxlAExvZyBUbyBDbGlwYm9hcmQARGVwdGgAcmIAd3QASW1HdWkgTWV0cmljcwABRGVhciBJbUd1aSAlcwBBcHBsaWNhdGlvbiBhdmVyYWdlICUuM2YgbXMvZnJhbWUgKCUuMWYgRlBTKQAlZCB2ZXJ0aWNlcywgJWQgaW5kaWNlcyAoJWQgdHJpYW5nbGVzKQAlZCBhY3RpdmUgd2luZG93cyAoJWQgdmlzaWJsZSkAJWQgYWxsb2NhdGlvbnMAU2hvdyBjbGlwcGluZyByZWN0YW5nbGVzIHdoZW4gaG92ZXJpbmcgZHJhdyBjb21tYW5kcwBDdHJsIHNob3dzIHdpbmRvdyBiZWdpbiBvcmRlcgBXaW5kb3dzAERyYXdMaXN0AEFjdGl2ZSBEcmF3TGlzdHMgKCVkKQBQb3B1cHMAUG9wdXBzICglZCkAUG9wdXBJRDogJTA4eCwgV2luZG93OiAnJXMnJXMlcwBOVUxMACBDaGlsZFdpbmRvdwAgQ2hpbGRNZW51AFRhYkJhcnMAVGFiIEJhcnMgKCVkKQBJbnRlcm5hbCBzdGF0ZQBOb25lAE1vdXNlAE5hdgBOYXZLZXlib2FyZABOYXZHYW1lcGFkAEhvdmVyZWRXaW5kb3c6ICclcycASG92ZXJlZFJvb3RXaW5kb3c6ICclcycASG92ZXJlZElkOiAweCUwOFgvMHglMDhYICglLjJmIHNlYyksIEFsbG93T3ZlcmxhcDogJWQAQWN0aXZlSWQ6IDB4JTA4WC8weCUwOFggKCUuMmYgc2VjKSwgQWxsb3dPdmVybGFwOiAlZCwgU291cmNlOiAlcwBBY3RpdmVJZFdpbmRvdzogJyVzJwBNb3ZpbmdXaW5kb3c6ICclcycATmF2V2luZG93OiAnJXMnAE5hdklkOiAweCUwOFgsIE5hdkxheWVyOiAlZABOYXZJbnB1dFNvdXJjZTogJXMATmF2QWN0aXZlOiAlZCwgTmF2VmlzaWJsZTogJWQATmF2QWN0aXZhdGVJZDogMHglMDhYLCBOYXZJbnB1dElkOiAweCUwOFgATmF2RGlzYWJsZUhpZ2hsaWdodDogJWQsIE5hdkRpc2FibGVNb3VzZUhvdmVyOiAlZABOYXZXaW5kb3dpbmdUYXJnZXQ6ICclcycARHJhZ0Ryb3A6ICVkLCBTb3VyY2VJZCA9IDB4JTA4WCwgUGF5bG9hZCAiJXMiICglZCBieXRlcykAIyNPdmVybGF5ACVzLyVzXyUwOFgAJXMvJTA4WAAjUkVTSVpFACMjI05hdldpbmRvd2luZ0xpc3QAKFBvcHVwKQAoTWFpbiBtZW51IGJhcikAKFVudGl0bGVkKQBQb3M9JWYsJWYAU2l6ZT0lZiwlZgBDb2xsYXBzZWQ9JWQAIyMjAFslc11bJXNdCgBQb3M9JWQsJWQKAFNpemU9JWQsJWQKAENvbGxhcHNlZD0lZAoAJXMgKCVkKQAlcyAnJXMnLCAlZCBAIDB4JXAAUG9zOiAoJS4xZiwlLjFmKSwgU2l6ZTogKCUuMWYsJS4xZiksIFNpemVDb250ZW50cyAoJS4xZiwlLjFmKQBGbGFnczogMHglMDhYICglcyVzJXMlcyVzJXMlcyVzJXMuLikAQ2hpbGQgAFRvb2x0aXAgAFBvcHVwIABNb2RhbCAAQ2hpbGRNZW51IABOb1NhdmVkU2V0dGluZ3MgAE5vTW91c2VJbnB1dHMATm9OYXZJbnB1dHMAQWx3YXlzQXV0b1Jlc2l6ZQBTY3JvbGw6ICglLjJmLyUuMmYsJS4yZi8lLjJmKQBBY3RpdmU6ICVkLyVkLCBXcml0ZUFjY2Vzc2VkOiAlZCwgQmVnaW5PcmRlcldpdGhpbkNvbnRleHQ6ICVkAEFwcGVhcmluZzogJWQsIEhpZGRlbjogJWQgKFJlZyAlZCBSZXNpemUgJWQpLCBTa2lwSXRlbXM6ICVkAE5hdkxhc3RJZHM6IDB4JTA4WCwweCUwOFgs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bnRDb250ZXh0AERlYnVnQ2hlY2tWZXJzaW9uQW5kRGF0YUxheW91dABHZXRJTwBHZXRTdHlsZQBHZXREcmF3RGF0YQBOZXdGcmFtZQBSZW5kZXIARW5kRnJhbWUAU2hvd0RlbW9XaW5kb3cAU2hvd0Fib3V0V2luZG93AFNob3dNZXRyaWNzV2luZG93AFNob3dTdHlsZUVkaXRvcgBTaG93U3R5bGVTZWxlY3RvcgBTaG93Rm9udFNlbGVjdG9yAFNob3dVc2VyR3VpZGUAR2V0VmVyc2lvbgBTdHlsZUNvbG9yc0RhcmsAU3R5bGVDb2xvcnNDbGFzc2ljAFN0eWxlQ29sb3JzTGlnaHQAQmVnaW4ARW5kAEJlZ2luQ2hpbGQARW5kQ2hpbGQAR2V0Q29udGVudFJlZ2lvbk1heABHZXRDb250ZW50UmVnaW9uQXZhaWwAR2V0Q29udGVudFJlZ2lvbkF2YWlsV2lkdGgAR2V0V2luZG93Q29udGVudFJlZ2lvbk1pbgBHZXRXaW5kb3dDb250ZW50UmVnaW9uTWF4AEdldFdpbmRvd0NvbnRlbnRSZWdpb25XaWR0aABHZXRXaW5kb3dEcmF3TGlzdABHZXRXaW5kb3dQb3MAR2V0V2luZG93U2l6ZQBHZXRXaW5kb3dXaWR0aABHZXRXaW5kb3dIZWlnaHQASXNXaW5kb3dDb2xsYXBzZWQASXNXaW5kb3dBcHBlYXJpbmcAU2V0V2luZG93Rm9udFNjYWxlAFNldE5leHRXaW5kb3dQb3MAU2V0TmV4dFdpbmRvd1NpemUAU2V0TmV4dFdpbmRvd1NpemVDb25zdHJhaW50cwBTZXROZXh0V2luZG93Q29udGVudFNpemUAU2V0TmV4dFdpbmRvd0NvbGxhcHNlZABTZXROZXh0V2luZG93Rm9jdXMAU2V0TmV4dFdpbmRvd0JnQWxwaGEAU2V0V2luZG93UG9zAFNldFdpbmRvd1NpemUAU2V0V2luZG93Q29sbGFwc2VkAFNldFdpbmRvd0ZvY3VzAFNldFdpbmRvd05hbWVQb3MAU2V0V2luZG93TmFtZVNpemUAU2V0V2luZG93TmFtZUNvbGxhcHNlZABTZXRXaW5kb3dOYW1lRm9jdXMAR2V0U2Nyb2xsWABHZXRTY3JvbGxZAEdldFNjcm9sbE1heFgAR2V0U2Nyb2xsTWF4WQBTZXRTY3JvbGxYAFNldFNjcm9sbFkAU2V0U2Nyb2xsSGVyZVkAU2V0U2Nyb2xsRnJvbVBvc1kAU2V0U3RhdGVTdG9yYWdlAEdldFN0YXRlU3RvcmFnZQBQdXNoRm9udABQb3BGb250AFB1c2hTdHlsZUNvbG9yAFBvcFN0eWxlQ29sb3IAUHVzaFN0eWxlVmFyAFBvcFN0eWxlVmFyAEdldFN0eWxlQ29sb3JWZWM0AEdldEZvbnQAR2V0Rm9udFNpemUAR2V0Rm9udFRleFV2V2hpdGVQaXhlbABHZXRDb2xvclUzMl9BAEdldENvbG9yVTMyX0IAR2V0Q29sb3JVMzJfQwBQdXNoSXRlbVdpZHRoAFBvcEl0ZW1XaWR0aABDYWxjSXRlbVdpZHRoAFB1c2hUZXh0V3JhcFBvcwBQb3BUZXh0V3JhcFBvcwBQdXNoQWxsb3dLZXlib2FyZEZvY3VzAFBvcEFsbG93S2V5Ym9hcmRGb2N1cwBQdXNoQnV0dG9uUmVwZWF0AFBvcEJ1dHRvblJlcGVhdABTZXBhcmF0b3IAU2FtZUxpbmUATmV3TGluZQBTcGFjaW5nAER1bW15AEluZGVudABVbmluZGVudABCZWdpbkdyb3VwAEVuZEdyb3VwAEdldEN1cnNvclBvcwBHZXRDdXJzb3JQb3NYAEdldEN1cnNvclBvc1kAU2V0Q3Vyc29yUG9zAFNldEN1cnNvclBvc1gAU2V0Q3Vyc29yUG9zWQBHZXRDdXJzb3JTdGFydFBvcwBHZXRDdXJzb3JTY3JlZW5Qb3MAU2V0Q3Vyc29yU2NyZWVuUG9zAEFsaWduVGV4dFRvRnJhbWVQYWRkaW5nAEdldFRleHRMaW5lSGVpZ2h0AEdldFRleHRMaW5lSGVpZ2h0V2l0aFNwYWNpbmcAR2V0RnJhbWVIZWlnaHQAR2V0RnJhbWVIZWlnaHRXaXRoU3BhY2luZwBDb2x1bW5zAE5leHRDb2x1bW4AR2V0Q29sdW1uSW5kZXgAR2V0Q29sdW1uV2lkdGgAU2V0Q29sdW1uV2lkdGgAR2V0Q29sdW1uT2Zmc2V0AFNldENvbHVtbk9mZnNldABHZXRDb2x1bW5zQ291bnQAUHVzaElEAFBvcElEAEdldElEAFRleHRVbmZvcm1hdHRlZABUZXh0AFRleHRWAFRleHRDb2xvcmVkAFRleHRDb2xvcmVkVgBUZXh0RGlzYWJsZWQAVGV4dERpc2FibGVkVgBUZXh0V3JhcHBlZABUZXh0V3JhcHBlZFYATGFiZWxUZXh0AExhYmVsVGV4dFYAQnVsbGV0VGV4dABCdWxsZXRUZXh0VgBCdWxsZXQAQnV0dG9uAFNtYWxsQnV0dG9uAEFycm93QnV0dG9uAEludmlzaWJsZUJ1dHRvbgBJbWFnZQBJbWFnZUJ1dHRvbgBDaGVja2JveABDaGVja2JveEZsYWdzAFJhZGlvQnV0dG9uX0EAUmFkaW9CdXR0b25fQgBQbG90TGluZXMAUGxvdEhpc3RvZ3JhbQBQcm9ncmVzc0JhcgBCZWdpbkNvbWJvAEVuZENvbWJvAENvbWJvAERyYWdGbG9hdABEcmFnRmxvYXQyAERyYWdGbG9hdDMARHJhZ0Zsb2F0NABEcmFnRmxvYXRSYW5nZTIARHJhZ0ludABEcmFnSW50MgBEcmFnSW50MwBEcmFnSW50NABEcmFnSW50UmFuZ2UyAERyYWdTY2FsYXIASW5wdXRUZXh0AElucHV0VGV4dE11bHRpbGluZQBJbnB1dEZsb2F0AElucHV0RmxvYXQyAElucHV0RmxvYXQzAElucHV0RmxvYXQ0AElucHV0SW50AElucHV0SW50MgBJbnB1dEludDMASW5wdXRJbnQ0AElucHV0RG91YmxlAElucHV0U2NhbGFyAFNsaWRlckZsb2F0AFNsaWRlckZsb2F0MgBTbGlkZXJGbG9hdDMAU2xpZGVyRmxvYXQ0AFNsaWRlckFuZ2xlAFNsaWRlckludABTbGlkZXJJbnQyAFNsaWRlckludDMAU2xpZGVySW50NABTbGlkZXJTY2FsYXIAVlNsaWRlckZsb2F0AFZTbGlkZXJJbnQAVlNsaWRlclNjYWxhcgBDb2xvckVkaXQzAENvbG9yRWRpdDQAQ29sb3JQaWNrZXIzAENvbG9yUGlja2VyNABDb2xvckJ1dHRvbgBTZXRDb2xvckVkaXRPcHRpb25zAFRyZWVOb2RlX0EAVHJlZU5vZGVfQgBUcmVlTm9kZV9DAFRyZWVOb2RlRXhfQQBUcmVlTm9kZUV4X0IAVHJlZU5vZGVFeF9DAFRyZWVQdXNoX0EAVHJlZVB1c2hfQgBUcmVlUG9wAFRyZWVBZHZhbmNlVG9MYWJlbFBvcwBHZXRUcmVlTm9kZVRvTGFiZWxTcGFjaW5nAFNldE5leHRUcmVlTm9kZU9wZW4AQ29sbGFwc2luZ0hlYWRlcl9BAENvbGxhcHNpbmdIZWFkZXJfQgBTZWxlY3RhYmxlX0EAU2VsZWN0YWJsZV9CAExpc3RCb3hfQQBMaXN0Qm94X0IATGlzdEJveEhlYWRlcl9BAExpc3RCb3hIZWFkZXJfQgBMaXN0Qm94Rm9vdGVyAFZhbHVlX0EAVmFsdWVfQgBWYWx1ZV9DAFZhbHVlX0QAU2V0VG9vbHRpcABCZWdpblRvb2x0aXAARW5kVG9vbHRpcABCZWdpbk1haW5NZW51QmFyAEVuZE1haW5NZW51QmFyAEJlZ2luTWVudUJhcgBFbmRNZW51QmFyAEJlZ2luTWVudQBFbmRNZW51AE1lbnVJdGVtX0EATWVudUl0ZW1fQgBPcGVuUG9wdXAAT3BlblBvcHVwT25JdGVtQ2xpY2sAQmVnaW5Qb3B1cABCZWdpblBvcHVwTW9kYWwAQmVnaW5Qb3B1cENvbnRleHRJdGVtAEJlZ2luUG9wdXBDb250ZXh0V2luZG93AEJlZ2luUG9wdXBDb250ZXh0Vm9pZABFbmRQb3B1cABJc1BvcHVwT3BlbgBDbG9zZUN1cnJlbnRQb3B1cABCZWdpblRhYkJhcgBFbmRUYWJCYXIAQmVnaW5UYWJJdGVtAEVuZFRhYkl0ZW0AU2V0VGFiSXRlbUNsb3NlZABMb2dUb1RUWQBMb2dUb0ZpbGUATG9nVG9DbGlwYm9hcmQATG9nRmluaXNoAExvZ0J1dHRvbnMATG9nVGV4dABCZWdpbkRyYWdEcm9wU291cmNlAFNldERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFNvdXJjZQBCZWdpbkRyYWdEcm9wVGFyZ2V0AEFjY2VwdERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFRhcmdldABHZXREcmFnRHJvcFBheWxvYWQAUHVzaENsaXBSZWN0AFBvcENsaXBSZWN0AFNldEl0ZW1EZWZhdWx0Rm9jdXMAU2V0S2V5Ym9hcmRGb2N1c0hlcmUASXNJdGVtSG92ZXJlZABJc0l0ZW1BY3RpdmUASXNJdGVtRWRpdGVkAElzSXRlbUZvY3VzZWQASXNJdGVtQ2xpY2tlZABJc0l0ZW1WaXNpYmxlAElzSXRlbURlYWN0aXZhdGVkAElzSXRlbURlYWN0aXZhdGVkQWZ0ZXJFZGl0AElzQW55SXRlbUhvdmVyZWQASXNBbnlJdGVtQWN0aXZlAElzQW55SXRlbUZvY3VzZWQAR2V0SXRlbVJlY3RNaW4AR2V0SXRlbVJlY3RNYXgAR2V0SXRlbVJlY3RTaXplAFNldEl0ZW1BbGxvd092ZXJsYXAASXNXaW5kb3dGb2N1c2VkAElzV2luZG93SG92ZXJlZABJc1JlY3RWaXNpYmxlX0EASXNSZWN0VmlzaWJsZV9CAEdldFRpbWUAR2V0RnJhbWVDb3VudABHZXRPdmVybGF5RHJhd0xpc3QAR2V0RHJhd0xpc3RTaGFyZWREYXRhAEdldFN0eWxlQ29sb3JOYW1lAENhbGNUZXh0U2l6ZQBDYWxjTGlzdENsaXBwaW5nAEJlZ2luQ2hpbGRGcmFtZQBFbmRDaGlsZEZyYW1lAENvbG9yQ29udmVydFUzMlRvRmxvYXQ0AENvbG9yQ29udmVydEZsb2F0NFRvVTMyAENvbG9yQ29udmVydFJHQnRvSFNWAENvbG9yQ29udmVydEhTVnRvUkdCAEdldEtleUluZGV4AElzS2V5RG93bgBJc0tleVByZXNzZWQASXNLZXlSZWxlYXNlZABHZXRLZXlQcmVzc2VkQW1vdW50AElzTW91c2VEb3duAElzQW55TW91c2VEb3duAElzTW91c2VDbGlja2VkAElzTW91c2VEb3VibGVDbGlja2VkAElzTW91c2VSZWxlYXNlZABJc01vdXNlRHJhZ2dpbmcASXNNb3VzZUhvdmVyaW5nUmVjdABJc01vdXNlUG9zVmFsaWQAR2V0TW91c2VQb3MAR2V0TW91c2VQb3NPbk9wZW5pbmdDdXJyZW50UG9wdXAAR2V0TW91c2VEcmFnRGVsdGEAUmVzZXRNb3VzZURyYWdEZWx0YQBHZXRNb3VzZUN1cnNvcgBTZXRNb3VzZUN1cnNvcgBDYXB0dXJlS2V5Ym9hcmRGcm9tQXBwAENhcHR1cmVNb3VzZUZyb21BcHAAR2V0Q2xpcGJvYXJkVGV4dABTZXRDbGlwYm9hcmRUZXh0AExvYWRJbmlTZXR0aW5nc0Zyb21NZW1vcnkAU2F2ZUluaVNldHRpbmdzVG9NZW1vcnkAU2V0QWxsb2NhdG9yRnVuY3Rpb25zAE1lbUFsbG9jAE1lbUZyZWUAaWlpAE4xMGVtc2NyaXB0ZW4zdmFsRQB2aWlpaQBOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TXzExY2hhcl90cmFpdHNJY0VFTlNfOWFsbG9jYXRvckljRUVFRQBOU3QzX18yMjFfX2Jhc2ljX3N0cmluZ19jb21tb25JTGIxRUVFAGlpaWZpAHgAeQAyM2ltcG9ydF9tYXliZV9udWxsX3ZhbHVlSTZJbVZlYzJFAGlpaWlpAGlpaWYAaWlpZmYAaWlpaQAxMmFjY2Vzc192YWx1ZUlmTG0xRUUAdmlmZmZpaWkAegB3ADZJbVZlYzIAdmlpZmlpADEyYWNjZXNzX3ZhbHVlSWlMbTFFRQBpaWlpZmkAUDIwSW1EcmF3TGlzdFNoYXJlZERhdGEAMjBJbURyYXdMaXN0U2hhcmVkRGF0YQBQMTBJbURyYXdMaXN0ADEwSW1EcmF3TGlzdABkaQBpaWlpaWkAJXMAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TMF8xMWNoYXJfdHJhaXRzSWNFRU5TMF85YWxsb2NhdG9ySWNFRUVFRQAyNGltcG9ydF9tYXliZV9udWxsX3N0cmluZwAyM2FjY2Vzc19tYXliZV9udWxsX3ZhbHVlSWJMbTFFRQB2aWlmaQB2aWlpAGlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJZkxtNEVFADIzYWNjZXNzX21heWJlX251bGxfdmFsdWVJZkxtNEVFADEyYWNjZXNzX3ZhbHVlSWZMbTNFRQBpaWlpaWlpaWlpAHNldABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lkRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlkRQBsZW5ndGgAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lmRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlmRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lqRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlqRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lpRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlpRQBpaWlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJaUxtNEVFADEyYWNjZXNzX3ZhbHVlSWlMbTNFRQAxMmFjY2Vzc192YWx1ZUlpTG0yRUUAJS4wZiBkZWcAMTJhY2Nlc3NfdmFsdWVJZkxtMkVFAGlpaWlpaWlpAGlpaWlkZGlpADEyYWNjZXNzX3ZhbHVlSWRMbTFFRQBQMjZJbUd1aUlucHV0VGV4dENhbGxiYWNrRGF0YQAyNkltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAGlpaWlpaWlpaWlpAHZpZmlpAHZpaWlpaWlpaWlpADEyYWNjZXNzX3ZhbHVlSWpMbTFFRQAxMmFjY2Vzc192YWx1ZUliTG0xRUUAdmlpaWlpaWkAbnVtYmVyAHZpaWYAZmlpAGlpAHZpaQBQNkltRm9udAA2SW1Gb250AFBLNkltVmVjNAA2SW1WZWM0AFRPRE86ICVzCgBhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoZW1zY3JpcHRlbjo6dmFsKSBjb25zdAB2aWZmAHZpaWlpaQBQMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAdmlmAGZpAHN0cmluZwBQMTBJbUd1aVN0eWxlADEwSW1HdWlTdHlsZQB2aQBQMTBJbURyYXdEYXRhADEwSW1EcmF3RGF0YQBQN0ltR3VpSU8AN0ltR3VpSU8AUDE2V3JhcEltR3VpQ29udGV4dAAxNldyYXBJbUd1aUNvbnRleHQAUDExSW1Gb250QXRsYXMAMTFJbUZvbnRBdGxhcwBJbUd1aVN0eWxlAEFscGhhAFdpbmRvd1BhZGRpbmcAV2luZG93Um91bmRpbmcAV2luZG93Qm9yZGVyU2l6ZQBXaW5kb3dNaW5TaXplAFdpbmRvd1RpdGxlQWxpZ24AQ2hpbGRSb3VuZGluZwBDaGlsZEJvcmRlclNpemUAUG9wdXBSb3VuZGluZwBQb3B1cEJvcmRlclNpemUARnJhbWVQYWRkaW5nAEZyYW1lUm91bmRpbmcARnJhbWVCb3JkZXJTaXplAEl0ZW1TcGFjaW5nAEl0ZW1Jbm5lclNwYWNpbmcAVG91Y2hFeHRyYVBhZGRpbmcASW5kZW50U3BhY2luZwBDb2x1bW5zTWluU3BhY2luZwBTY3JvbGxiYXJTaXplAFNjcm9sbGJhclJvdW5kaW5nAEdyYWJNaW5TaXplAEdyYWJSb3VuZGluZwBUYWJSb3VuZGluZwBUYWJCb3JkZXJTaXplAEJ1dHRvblRleHRBbGlnbgBEaXNwbGF5V2luZG93UGFkZGluZwBEaXNwbGF5U2FmZUFyZWFQYWRkaW5nAE1vdXNlQ3Vyc29yU2NhbGUAQW50aUFsaWFzZWRMaW5lcwBBbnRpQWxpYXNlZEZpbGwAQ3VydmVUZXNzZWxsYXRpb25Ub2wAX2dldEF0X0NvbG9ycwBfc2V0QXRfQ29sb3JzAFNjYWxlQWxsU2l6ZXMAUDZJbVZlYzQAUEs2SW1WZWMyAHYAUEsxMEltR3VpU3R5bGUASW1HdWlJTwBDb25maWdGbGFncwBCYWNrZW5kRmxhZ3MARGlzcGxheVNpemUARGVsdGFUaW1lAEluaVNhdmluZ1JhdGUASW5pRmlsZW5hbWUATG9nRmlsZW5hbWUATW91c2VEb3VibGVDbGlja1RpbWUATW91c2VEb3VibGVDbGlja01heERpc3QATW91c2VEcmFnVGhyZXNob2xkAF9nZXRBdF9LZXlNYXAAX3NldEF0X0tleU1hcABLZXlSZXBlYXREZWxheQBLZXlSZXBlYXRSYXRlAFVzZXJEYXRhAEZvbnRzAEZvbnRHbG9iYWxTY2FsZQBGb250QWxsb3dVc2VyU2NhbGluZwBGb250RGVmYXVsdABEaXNwbGF5RnJhbWVidWZmZXJTY2FsZQBEaXNwbGF5VmlzaWJsZU1pbgBEaXNwbGF5VmlzaWJsZU1heABNb3VzZURyYXdDdXJzb3IAQ29uZmlnTWFjT1NYQmVoYXZpb3JzAENvbmZpZ0lucHV0VGV4dEN1cnNvckJsaW5rAENvbmZpZ1dpbmRvd3NSZXNpemVGcm9tRWRnZXMAQ29uZmlnV2luZG93c01vdmVGcm9tVGl0bGVCYXJPbmx5AEdldENsaXBib2FyZFRleHRGbgBTZXRDbGlwYm9hcmRUZXh0Rm4AQ2xpcGJvYXJkVXNlckRhdGEATW91c2VQb3MAX2dldEF0X01vdXNlRG93bgBfc2V0QXRfTW91c2VEb3duAE1vdXNlV2hlZWwAS2V5Q3RybABLZXlTaGlmdABLZXlBbHQAS2V5U3VwZXIAX2dldEF0X0tleXNEb3duAF9zZXRBdF9LZXlzRG93bgBfZ2V0QXRfTmF2SW5wdXRzAF9zZXRBdF9OYXZJbnB1dHMAQWRkSW5wdXRDaGFyYWN0ZXIAQWRkSW5wdXRDaGFyYWN0ZXJzVVRGOABDbGVhcklucHV0Q2hhcmFjdGVycwBXYW50Q2FwdHVyZU1vdXNlAFdhbnRDYXB0dXJlS2V5Ym9hcmQAV2FudFRleHRJbnB1dABXYW50U2V0TW91c2VQb3MAV2FudFNhdmVJbmlTZXR0aW5ncwBOYXZBY3RpdmUATmF2VmlzaWJsZQBGcmFtZXJhdGUATWV0cmljc1JlbmRlclZlcnRpY2VzAE1ldHJpY3NSZW5kZXJJbmRpY2VzAE1ldHJpY3NSZW5kZXJXaW5kb3dzAE1ldHJpY3NBY3RpdmVXaW5kb3dzAE1ldHJpY3NBY3RpdmVBbGxvY2F0aW9ucwBNb3VzZURlbHRhAF9nZXRBdF9Nb3VzZUNsaWNrZWRQb3MAX2dldEF0X01vdXNlRG93bkR1cmF0aW9uAF9nZXRBdF9LZXlzRG93bkR1cmF0aW9uAF9nZXRBdF9OYXZJbnB1dHNEb3duRHVyYXRpb24AUEs3SW1HdWlJTwBpaWlpZgBmaWlpAEltRm9udEF0bGFzAEFkZEZvbnREZWZhdWx0AEFkZEZvbnRGcm9tTWVtb3J5VFRGAENsZWFyVGV4RGF0YQBDbGVhcklucHV0RGF0YQBDbGVhckZvbnRzAENsZWFyAEJ1aWxkAElzQnVpbHQAR2V0VGV4RGF0YUFzQWxwaGE4AEdldFRleERhdGFBc1JHQkEzMgBHZXRHbHlwaFJhbmdlc0RlZmF1bHQAR2V0R2x5cGhSYW5nZXNLb3JlYW4AR2V0R2x5cGhSYW5nZXNKYXBhbmVzZQBHZXRHbHlwaFJhbmdlc0NoaW5lc2VGdWxsAEdldEdseXBoUmFuZ2VzQ2hpbmVzZVNpbXBsaWZpZWRDb21tb24AR2V0R2x5cGhSYW5nZXNDeXJpbGxpYwBHZXRHbHlwaFJhbmdlc1RoYWkATG9ja2VkAEZsYWdzAFRleElEAFRleERlc2lyZWRXaWR0aABUZXhHbHlwaFBhZGRpbmcAVGV4V2lkdGgAVGV4SGVpZ2h0AFRleFV2U2NhbGUAVGV4VXZXaGl0ZVBpeGVsAEl0ZXJhdGVGb250cwBwaXhlbHMAd2lkdGgAaGVpZ2h0AGJ5dGVzX3Blcl9waXhlbABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0loRUUAaWlpaWZpaQBGb250RGF0YQBidWZmZXIAYnl0ZU9mZnNldABieXRlTGVuZ3RoAFRPRE86IEZvbnREYXRhICV6dSAlenUKAEZvbnREYXRhT3duZWRCeUF0bGFzAEZvbnRObwBTaXplUGl4ZWxzAE92ZXJzYW1wbGVIAE92ZXJzYW1wbGVWAFBpeGVsU25hcEgAR2x5cGhFeHRyYVNwYWNpbmcAR2x5cGhPZmZzZXQAR2x5cGhSYW5nZXMAR2x5cGhNaW5BZHZhbmNlWABHbHlwaE1heEFkdmFuY2VYAE1lcmdlTW9kZQBSYXN0ZXJpemVyRmxhZ3MAUmFzdGVyaXplck11bHRpcGx5AE5hbWUAUEsxMUltRm9udEF0bGFzAEltRm9udABGb250U2l6ZQBTY2FsZQBEaXNwbGF5T2Zmc2V0AEl0ZXJhdGVHbHlwaHMARmFsbGJhY2tHbHlwaABGYWxsYmFja0FkdmFuY2VYAEZhbGxiYWNrQ2hhcgBDb25maWdEYXRhQ291bnQASXRlcmF0ZUNvbmZpZ0RhdGEAQXNjZW50AERlc2NlbnQATWV0cmljc1RvdGFsU3VyZmFjZQBDbGVhck91dHB1dERhdGEAQnVpbGRMb29rdXBUYWJsZQBGaW5kR2x5cGgARmluZEdseXBoTm9GYWxsYmFjawBTZXRGYWxsYmFja0NoYXIAR2V0Q2hhckFkdmFuY2UASXNMb2FkZWQAR2V0RGVidWdOYW1lAENhbGNUZXh0U2l6ZUEAQ2FsY1dvcmRXcmFwUG9zaXRpb25BAFJlbmRlckNoYXIAdmlpaWZpaWkAaWlpZmlmAGlpaWZmZmlpaQA8dW5rbm93bj4AUEs2SW1Gb250AFBLMTFJbUZvbnRHbHlwaAAxMUltRm9udEdseXBoAFAxMkltRm9udENvbmZpZwAxMkltRm9udENvbmZpZwBQMTFJbUZvbnRHbHlwaABJbUZvbnRDb25maWcARHN0Rm9udABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShJbUZvbnRDb25maWcgJiwgZW1zY3JpcHRlbjo6dmFsKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShjb25zdCBJbUZvbnRDb25maWcgJikgY29uc3QAUEsxMkltRm9udENvbmZpZwBJbUZvbnRHbHlwaABDb2RlcG9pbnQAQWR2YW5jZVgAWDAAWTAAWDEAWTEAVTAAVjAAVTEAVjEASW1EcmF3RGF0YQBJdGVyYXRlRHJhd0xpc3RzAFZhbGlkAENtZExpc3RzQ291bnQAVG90YWxJZHhDb3VudABUb3RhbFZ0eENvdW50AERpc3BsYXlQb3MARGVJbmRleEFsbEJ1ZmZlcnMAU2NhbGVDbGlwUmVjdHMAUEsxMEltRHJhd0RhdGEAUEsxMEltRHJhd0xpc3QASW1EcmF3TGlzdABJdGVyYXRlRHJhd0NtZHMASWR4QnVmZmVyAFZ0eEJ1ZmZlcgBQdXNoQ2xpcFJlY3RGdWxsU2NyZWVuAFB1c2hUZXh0dXJlSUQAUG9wVGV4dHVyZUlEAEdldENsaXBSZWN0TWluAEdldENsaXBSZWN0TWF4AEFkZExpbmUAQWRkUmVjdABBZGRSZWN0RmlsbGVkAEFkZFJlY3RGaWxsZWRNdWx0aUNvbG9yAEFkZFF1YWQAQWRkUXVhZEZpbGxlZABBZGRUcmlhbmdsZQBBZGRUcmlhbmdsZUZpbGxlZABBZGRDaXJjbGUAQWRkQ2lyY2xlRmlsbGVkAEFkZFRleHRfQQBBZGRUZXh0X0IAQWRkSW1hZ2UAQWRkSW1hZ2VRdWFkAEFkZEltYWdlUm91bmRlZABBZGRQb2x5bGluZQBBZGRDb252ZXhQb2x5RmlsbGVkAEFkZEJlemllckN1cnZlAFBhdGhDbGVhcgBQYXRoTGluZVRvAFBhdGhMaW5lVG9NZXJnZUR1cGxpY2F0ZQBQYXRoRmlsbENvbnZleABQYXRoU3Ryb2tlAFBhdGhBcmNUbwBQYXRoQXJjVG9GYXN0AFBhdGhCZXppZXJDdXJ2ZVRvAFBhdGhSZWN0AENoYW5uZWxzU3BsaXQAQ2hhbm5lbHNNZXJnZQBDaGFubmVsc1NldEN1cnJlbnQAQWRkQ2FsbGJhY2sAQWRkRHJhd0NtZABDbGVhckZyZWVNZW1vcnkAUHJpbVJlc2VydmUAUHJpbVJlY3QAUHJpbVJlY3RVVgBQcmltUXVhZFVWAFByaW1Xcml0ZVZ0eABQcmltV3JpdGVJZHgAUHJpbVZ0eABVcGRhdGVDbGlwUmVjdABVcGRhdGVUZXh0dXJlSUQAdmlpaWlpaWlpaWlpAHZpaWlpZmkAdmlpaWZmZmkAdmlpaWlmAHZpaWlpaWlpZmkAdmlpaWlpaWlpZmkAdmlpaWlpaWlpaWlpaQB2aWlpZmlpaWZpADIzaW1wb3J0X21heWJlX251bGxfdmFsdWVJNkltVmVjNEUAdmlpaWZpaQB2aWlpZmlpZgB2aWlpaWlpAHZpaWlpaWlmAHZpaWlpaWlpZgB2aWlpaWlpaWkAdmlpaWlpZmkAdmlpaWlpZmlmAHZpaWlpaWYATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJY0VFAFBLOUltRHJhd0NtZAA5SW1EcmF3Q21kAEltRHJhd0NtZABFbGVtQ291bnQAQ2xpcFJlY3QAVGV4dHVyZUlkAFA5SW1EcmF3Q21kAEltR3VpTGlzdENsaXBwZXIAU3RhcnRQb3NZAEl0ZW1zSGVpZ2h0AEl0ZW1zQ291bnQAU3RlcE5vAERpc3BsYXlTdGFydABEaXNwbGF5RW5kAFN0ZXAAUDE2SW1HdWlMaXN0Q2xpcHBlcgAxNkltR3VpTGlzdENsaXBwZXIAdmlpaWYAUEsxNkltR3VpTGlzdENsaXBwZXIASW1HdWlTaXplQ2FsbGJhY2tEYXRhAFBvcwBDdXJyZW50U2l6ZQBEZXNpcmVkU2l6ZQBQSzIxSW1HdWlTaXplQ2FsbGJhY2tEYXRhAEltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAEV2ZW50RmxhZwBFdmVudENoYXIARXZlbnRLZXkAQnVmAEJ1ZlRleHRMZW4AQnVmU2l6ZQBCdWZEaXJ0eQBDdXJzb3JQb3MAU2VsZWN0aW9uU3RhcnQAU2VsZWN0aW9uRW5kAERlbGV0ZUNoYXJzAEluc2VydENoYXJzAEhhc1NlbGVjdGlvbgBQSzI2SW1HdWlJbnB1dFRleHRDYWxsYmFja0RhdGEASW1WZWM0AFNldABDb3B5AEVxdWFscwBJbVZlYzIAUDZJbVZlYzIAV3JhcEltR3VpQ29udGV4dABQSzE2V3JhcEltR3VpQ29udGV4dABtYWxsaW5mbwBhcmVuYQBvcmRibGtzAHNtYmxrcwBoYmxrcwBoYmxraGQAdXNtYmxrcwBmc21ibGtzAHVvcmRibGtzAGZvcmRibGtzAGtlZXBjb3N0AHZvaWQAYm9vbABzdGQ6OnN0cmluZwBzdGQ6OmJhc2ljX3N0cmluZzx1bnNpZ25lZCBjaGFyPgBzdGQ6OndzdHJpbmcAZW1zY3JpcHRlbjo6dmFsAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgc2hvcnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgaW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludDE2X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQzMl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZyBkb3VibGU+AE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SWVFRQBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxkb3VibGU+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBsb25nPgBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0ltRUUAZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZz4ATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJbEVFAE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SXRFRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lzRUUATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJYUVFAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGNoYXI+AE5TdDNfXzIxMmJhc2ljX3N0cmluZ0l3TlNfMTFjaGFyX3RyYWl0c0l3RUVOU185YWxsb2NhdG9ySXdFRUVFAE5TdDNfXzIxMmJhc2ljX3N0cmluZ0loTlNfMTFjaGFyX3RyYWl0c0loRUVOU185YWxsb2NhdG9ySWhFRUVFAGRvdWJsZQBmbG9hdAB1bnNpZ25lZCBsb25nAGxvbmcAdW5zaWduZWQgaW50AGludAB1bnNpZ25lZCBzaG9ydABzaG9ydAB1bnNpZ25lZCBjaGFyAHNpZ25lZCBjaGFyAGNoYXIAAAECBAcDBgUALSsgICAwWDB4AChudWxsKQAtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBOQU4ALgBpbmZpbml0eQBuYW4AcndhAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXM6ICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXMAdGVybWluYXRpbmcgd2l0aCAlcyBmb3JlaWduIGV4Y2VwdGlvbgB0ZXJtaW5hdGluZwB1bmNhdWdodABTdDlleGNlcHRpb24ATjEwX19jeHhhYml2MTE2X19zaGltX3R5cGVfaW5mb0UAU3Q5dHlwZV9pbmZvAE4xMF9fY3h4YWJpdjEyMF9fc2lfY2xhc3NfdHlwZV9pbmZvRQBOMTBfX2N4eGFiaXYxMTdfX2NsYXNzX3R5cGVfaW5mb0UAcHRocmVhZF9vbmNlIGZhaWx1cmUgaW4gX19jeGFfZ2V0X2dsb2JhbHNfZmFzdCgpAGNhbm5vdCBjcmVhdGUgcHRocmVhZCBrZXkgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAY2Fubm90IHplcm8gb3V0IHRocmVhZCB2YWx1ZSBmb3IgX19jeGFfZ2V0X2dsb2JhbHMoKQB0ZXJtaW5hdGVfaGFuZGxlciB1bmV4cGVjdGVkbHkgcmV0dXJuZWQAU3QxMWxvZ2ljX2Vycm9yAFN0MTJsZW5ndGhfZXJyb3IATjEwX19jeHhhYml2MTE5X19wb2ludGVyX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19wYmFzZV90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjEyM19fZnVuZGFtZW50YWxfdHlwZV9pbmZvRQB2AFB2AERuAGIAYwBoAGEAcwB0AGkAagBsAG0AZgBkAE4xMF9fY3h4YWJpdjEyMV9fdm1pX2NsYXNzX3R5cGVfaW5mb0U=\";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}function getBinary(){try{if(Module[\"wasmBinary\"]){return new Uint8Array(Module[\"wasmBinary\"])}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(Module[\"readBinary\"]){return Module[\"readBinary\"](wasmBinaryFile)}else{throw\"both async and sync fetching of the wasm failed\"}}catch(err){abort(err)}}function getBinaryPromise(){if(!Module[\"wasmBinary\"]&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch===\"function\"){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()})}return new Promise(function(resolve,reject){resolve(getBinary())})}function createWasm(env){var info={\"env\":env,\"global\":{\"NaN\":NaN,Infinity:Infinity},\"global.Math\":Math,\"asm2wasm\":asm2wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module[\"asm\"]=exports;removeRunDependency(\"wasm-instantiate\")}addRunDependency(\"wasm-instantiate\");function receiveInstantiatedSource(output){receiveInstance(output[\"instance\"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err(\"failed to asynchronously prepare wasm: \"+reason);abort(reason)})}function instantiateAsync(){if(!Module[\"wasmBinary\"]&&typeof WebAssembly.instantiateStreaming===\"function\"&&!isDataURI(wasmBinaryFile)&&typeof fetch===\"function\"){return WebAssembly.instantiateStreaming(fetch(wasmBinaryFile,{credentials:\"same-origin\"}),info).then(receiveInstantiatedSource,function(reason){err(\"wasm streaming compile failed: \"+reason);err(\"falling back to ArrayBuffer instantiation\");instantiateArrayBuffer(receiveInstantiatedSource)})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module[\"instantiateWasm\"]){try{return Module[\"instantiateWasm\"](info,receiveInstance)}catch(e){err(\"Module.instantiateWasm callback failed with error: \"+e);return false}}instantiateAsync();return{}}Module[\"asm\"]=function(global,env,providedBuffer){env[\"memory\"]=wasmMemory;env[\"table\"]=wasmTable=new WebAssembly.Table({\"initial\":1442,\"maximum\":1442,\"element\":\"anyfunc\"});env[\"__memory_base\"]=1024;env[\"__table_base\"]=0;var exports=createWasm(env);return exports};__ATINIT__.push({func:function(){globalCtors()}});function ___cxa_allocate_exception(size){return _malloc(size)}function __ZSt18uncaught_exceptionv(){return!!__ZSt18uncaught_exceptionv.uncaught_exception}function ___cxa_free_exception(ptr){try{return _free(ptr)}catch(e){}}var EXCEPTIONS={last:0,caught:[],infos:{},deAdjust:function(adjusted){if(!adjusted||EXCEPTIONS.infos[adjusted])return adjusted;for(var key in EXCEPTIONS.infos){var ptr=+key;var adj=EXCEPTIONS.infos[ptr].adjusted;var len=adj.length;for(var i=0;i0);info.refcount--;if(info.refcount===0&&!info.rethrown){if(info.destructor){Module[\"dynCall_vi\"](info.destructor,ptr)}delete EXCEPTIONS.infos[ptr];___cxa_free_exception(ptr)}},clearRef:function(ptr){if(!ptr)return;var info=EXCEPTIONS.infos[ptr];info.refcount=0}};function ___cxa_throw(ptr,type,destructor){EXCEPTIONS.infos[ptr]={ptr:ptr,adjusted:[ptr],type:type,destructor:destructor,refcount:0,caught:false,rethrown:false};EXCEPTIONS.last=ptr;if(!(\"uncaught_exception\"in __ZSt18uncaught_exceptionv)){__ZSt18uncaught_exceptionv.uncaught_exception=1}else{__ZSt18uncaught_exceptionv.uncaught_exception++}throw ptr}function ___lock(){}var PATH={splitPath:function(filename){var splitPathRe=/^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:function(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:function(path){var isAbsolute=path.charAt(0)===\"/\",trailingSlash=path.substr(-1)===\"/\";path=PATH.normalizeArray(path.split(\"/\").filter(function(p){return!!p}),!isAbsolute).join(\"/\");if(!path&&!isAbsolute){path=\".\"}if(path&&trailingSlash){path+=\"/\"}return(isAbsolute?\"/\":\"\")+path},dirname:function(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:function(path){if(path===\"/\")return\"/\";var lastSlash=path.lastIndexOf(\"/\");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},extname:function(path){return PATH.splitPath(path)[3]},join:function(){var paths=Array.prototype.slice.call(arguments,0);return PATH.normalize(paths.join(\"/\"))},join2:function(l,r){return PATH.normalize(l+\"/\"+r)}};var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0}else{buffer.push(curr)}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get()}};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall145(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();return SYSCALLS.doReadv(stream,iov,iovcnt)}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j>2]=value;return value}function ___syscall221(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___unlock(){}function getShiftFromSize(size){switch(size){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError(\"Unknown type size: \"+size)}}function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<256;++i){codes[i]=String.fromCharCode(i)}embind_charCodes=codes}var embind_charCodes=undefined;function readLatin1String(ptr){var ret=\"\";var c=ptr;while(HEAPU8[c]){ret+=embind_charCodes[HEAPU8[c++]]}return ret}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return\"_unknown\"}name=name.replace(/[^a-zA-Z0-9_]/g,\"$\");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return\"_\"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return new Function(\"body\",\"return function \"+name+\"() {\\n\"+' \"use strict\";'+\" return body.apply(this, arguments);\\n\"+\"};\\n\")(body)}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+\"\\n\"+stack.replace(/^Error(:[^\\n]*)?\\n/,\"\")}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+\": \"+this.message}};return errorClass}var BindingError=undefined;function throwBindingError(message){throw new BindingError(message)}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError(\"Mismatched type converter count\")}for(var i=0;i>shift])},destructorFunction:null})}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return{count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+\" instance already deleted\")}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr)}else{$$.ptrType.registeredClass.rawDestructor($$.ptr)}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$)}}function attachFinalizer(handle){if(\"undefined\"===typeof FinalizationGroup){attachFinalizer=function(handle){return handle};return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn(\"object already deleted: \"+$$.ptr)}else{releaseClassHandle($$)}}});attachFinalizer=function(handle){finalizationGroup.register(handle,handle.$$,handle.$$);return handle};detachFinalizer=function(handle){finalizationGroup.unregister(handle.$$)};return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError(\"Object already scheduled for deletion\")}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined}}function ClassHandle_isDeleted(){return!this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj[\"delete\"]()}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError(\"Object already scheduled for deletion\")}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes)}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype[\"isAliasOf\"]=ClassHandle_isAliasOf;ClassHandle.prototype[\"clone\"]=ClassHandle_clone;ClassHandle.prototype[\"delete\"]=ClassHandle_delete;ClassHandle.prototype[\"isDeleted\"]=ClassHandle_isDeleted;ClassHandle.prototype[\"deleteLater\"]=ClassHandle_deleteLater}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError(\"Function '\"+humanName+\"' called with an invalid number of arguments (\"+arguments.length+\") - expects one of (\"+proto[methodName].overloadTable+\")!\")}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError(\"Cannot register public name '\"+name+\"' twice\")}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError(\"Cannot register multiple overloads of a function with the same number of arguments (\"+numArguments+\")!\")}Module[name].overloadTable[numArguments]=value}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[]}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError(\"Expected null or instance of \"+desiredClass.name+\", got an instance of \"+ptrClass.name)}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr)}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError(\"Cannot convert argument of type \"+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+\" to parameter type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError(\"Passing raw pointer to smart pointer is illegal\")}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{throwBindingError(\"Cannot convert argument of type \"+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+\" to parameter type \"+this.name)}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{var clonedHandle=handle[\"clone\"]();ptr=this.rawShare(ptr,__emval_register(function(){clonedHandle[\"delete\"]()}));if(destructors!==null){destructors.push(this.rawDestructor,ptr)}}break;default:throwBindingError(\"Unsupporting sharing policy\")}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}if(handle.$$.ptrType.isConst){throwBindingError(\"Cannot convert argument of type \"+handle.$$.ptrType.name+\" to parameter type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function simpleReadValueFromPointer(pointer){return this[\"fromWireType\"](HEAPU32[pointer>>2])}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr)}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr)}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle[\"delete\"]()}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k])}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes)}}function init_embind(){Module[\"getInheritedInstanceCount\"]=getInheritedInstanceCount;Module[\"getLiveInheritedInstances\"]=getLiveInheritedInstances;Module[\"flushPendingDeletes\"]=flushPendingDeletes;Module[\"setDelayFunction\"]=setDelayFunction}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError(\"ptr should not be undefined\")}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError(\"makeClassHandle requires ptr and ptrType\")}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError(\"Both smartPtrType and smartPtr must be specified\")}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance[\"clone\"]()}else{var rv=registeredInstance[\"clone\"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType}else{toType=registeredPointerRecord.pointerType}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype[\"argPackAdvance\"]=8;RegisteredPointer.prototype[\"readValueFromPointer\"]=simpleReadValueFromPointer;RegisteredPointer.prototype[\"deleteObject\"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype[\"fromWireType\"]=RegisteredPointer_fromWireType}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this[\"toWireType\"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null}else{this[\"toWireType\"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null}}else{this[\"toWireType\"]=genericPointerToWireType}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError(\"Replacing nonexistant public symbol\")}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value}else{Module[name]=value;Module[name].argCount=numArguments}}function embind__requireFunction(signature,rawFunction){signature=readLatin1String(signature);function makeDynCaller(dynCall){var args=[];for(var i=1;i>2)+i])}return array}function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr)}}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName=\"constructor \"+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[]}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError(\"Cannot register multiple constructors with identical number of parameters (\"+(argCount-1)+\") for class '\"+classType.name+\"'! Overload resolution is currently only performed using the parameter count, not actual type info!\")}classType.registeredClass.constructor_body[argCount-1]=function unboundTypeHandler(){throwUnboundTypeError(\"Cannot construct \"+classType.name+\" due to unbound types\",rawArgTypes)};whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){classType.registeredClass.constructor_body[argCount-1]=function constructor_body(){if(arguments.length!==argCount-1){throwBindingError(humanName+\" called with \"+arguments.length+\" arguments, expected \"+(argCount-1))}var destructors=[];var args=new Array(argCount);args[0]=rawConstructor;for(var i=1;i0?\", \":\"\")+argsListWired}invokerFnBody+=(returns?\"var rv = \":\"\")+\"invoker(fn\"+(argsListWired.length>0?\", \":\"\")+argsListWired+\");\\n\";if(needsDestructorStack){invokerFnBody+=\"runDestructors(destructors);\\n\"}else{for(var i=isClassMethodFunc?1:2;i4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle)}}function count_emval_handles(){var count=0;for(var i=5;i>2])};case 3:return function(pointer){return this[\"fromWireType\"](HEAPF64[pointer>>3])};default:throw new TypeError(\"Unknown float type: \"+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,\"fromWireType\":function(value){return value},\"toWireType\":function(destructors,value){if(typeof value!==\"number\"&&typeof value!==\"boolean\"){throw new TypeError('Cannot convert \"'+_embind_repr(value)+'\" to '+this.name)}return value},\"argPackAdvance\":8,\"readValueFromPointer\":floatReadValueFromPointer(name,shift),destructorFunction:null})}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError(\"Cannot call \"+name+\" due to unbound types\",argTypes)},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return[]})}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError(\"Unknown integer type: \"+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295}var shift=getShiftFromSize(size);var fromWireType=function(value){return value};if(minRange===0){var bitshift=32-8*size;fromWireType=function(value){return value<>>bitshift}}var isUnsignedType=name.indexOf(\"unsigned\")!=-1;registerType(primitiveType,{name:name,\"fromWireType\":fromWireType,\"toWireType\":function(destructors,value){if(typeof value!==\"number\"&&typeof value!==\"boolean\"){throw new TypeError('Cannot convert \"'+_embind_repr(value)+'\" to '+this.name)}if(valuemaxRange){throw new TypeError('Passing a number \"'+_embind_repr(value)+'\" from JS side to C/C++ side to an argument of type \"'+name+'\", which is outside the valid range ['+minRange+\", \"+maxRange+\"]!\")}return isUnsignedType?value>>>0:value|0},\"argPackAdvance\":8,\"readValueFromPointer\":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null})}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(heap[\"buffer\"],data,size)}name=readLatin1String(name);registerType(rawType,{name:name,\"fromWireType\":decodeMemoryView,\"argPackAdvance\":8,\"readValueFromPointer\":decodeMemoryView},{ignoreDuplicateRegistrations:true})}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name===\"std::string\";registerType(rawType,{name:name,\"fromWireType\":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var endChar=HEAPU8[value+4+length];var endCharSwap=0;if(endChar!=0){endCharSwap=endChar;HEAPU8[value+4+length]=0}var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(HEAPU8[currentBytePtr]==0){var stringSegment=UTF8ToString(decodeStartPtr);if(str===undefined)str=stringSegment;else{str+=String.fromCharCode(0);str+=stringSegment}decodeStartPtr=currentBytePtr+1}}if(endCharSwap!=0)HEAPU8[value+4+length]=endCharSwap}else{var a=new Array(length);for(var i=0;i>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1)}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError(\"String has UTF-16 code units that do not fit in 8 bits\")}HEAPU8[ptr+4+i]=charCode}}else{for(var i=0;i>2];var a=new Array(length);var start=value+4>>shift;for(var i=0;i>2]=length;var start=ptr+4>>shift;for(var i=0;i>2]=rd;return returnType[\"toWireType\"](destructors,handle)}function __emval_lookupTypes(argCount,argTypes,argWireTypes){var a=new Array(argCount);for(var i=0;i>2)+i],\"parameter \"+i)}return a}function __emval_call(handle,argCount,argTypes,argv){handle=requireHandle(handle);var types=__emval_lookupTypes(argCount,argTypes);var args=new Array(argCount);for(var i=0;i4){emval_handle_array[handle].refcount+=1}}function __emval_new_array(){return __emval_register([])}function __emval_new_cstring(v){return __emval_register(getStringOrSymbol(v))}function __emval_new_object(){return __emval_register({})}function __emval_run_destructors(handle){var destructors=emval_handle_array[handle].value;runDestructors(destructors);__emval_decref(handle)}function __emval_set_property(handle,key,value){handle=requireHandle(handle);key=requireHandle(key);value=requireHandle(value);handle[key]=value}function __emval_strictly_equals(first,second){first=requireHandle(first);second=requireHandle(second);return first===second}function __emval_take_value(type,argv){type=requireRegisteredType(type,\"_emval_take_value\");var v=type[\"readValueFromPointer\"](argv);return __emval_register(v)}function __emval_typeof(handle){handle=requireHandle(handle);return __emval_register(typeof handle)}function _abort(){Module[\"abort\"]()}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest)}function abortOnCannotGrowMemory(requestedSize){abort(\"OOM\")}function _emscripten_resize_heap(requestedSize){abortOnCannotGrowMemory(requestedSize)}embind_init_charCodes();BindingError=Module[\"BindingError\"]=extendError(Error,\"BindingError\");InternalError=Module[\"InternalError\"]=extendError(Error,\"InternalError\");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module[\"UnboundTypeError\"]=extendError(Error,\"UnboundTypeError\");init_emval();var ASSERTIONS=false;function intArrayToString(array){var ret=[];for(var i=0;i255){if(ASSERTIONS){assert(false,\"Character code \"+chr+\" (\"+String.fromCharCode(chr)+\") at offset \"+i+\" not in 0x00-0xFF.\")}chr&=255}ret.push(String.fromCharCode(chr))}return ret.join(\"\")}var decodeBase64=typeof atob===\"function\"?atob:function(input){var keyStr=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";var output=\"\";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\\+\\/\\=]/g,\"\");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(i0){return}preRun();if(runDependencies>0)return;if(Module[\"calledRun\"])return;function doRun(){if(Module[\"calledRun\"])return;Module[\"calledRun\"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module[\"onRuntimeInitialized\"])Module[\"onRuntimeInitialized\"]();postRun()}if(Module[\"setStatus\"]){Module[\"setStatus\"](\"Running...\");setTimeout(function(){setTimeout(function(){Module[\"setStatus\"](\"\")},1);doRun()},1)}else{doRun()}}Module[\"run\"]=run;function abort(what){if(Module[\"onAbort\"]){Module[\"onAbort\"](what)}if(what!==undefined){out(what);err(what);what=JSON.stringify(what)}else{what=\"\"}ABORT=true;EXITSTATUS=1;throw\"abort(\"+what+\"). Build with -s ASSERTIONS=1 for more info.\"}Module[\"abort\"]=abort;if(Module[\"preInit\"]){if(typeof Module[\"preInit\"]==\"function\")Module[\"preInit\"]=[Module[\"preInit\"]];while(Module[\"preInit\"].length>0){Module[\"preInit\"].pop()()}}Module[\"noExitRuntime\"]=true;run();\n\n\n return Module\n}\n);\n})();\nif (typeof exports === 'object' && typeof module === 'object')\n module.exports = Module;\n else if (typeof define === 'function' && define['amd'])\n define([], function() { return Module; });\n else if (typeof exports === 'object')\n exports[\"Module\"] = Module;\n ","export interface XY { x: number, y: number; }\nexport interface XYZ extends XY { z: number; }\nexport interface XYZW extends XYZ { w: number; }\n\nexport interface RGB { r: number; g: number; b: number; }\nexport interface RGBA extends RGB { a: number; }\n\nimport * as Bind from \"./bind-imgui\";\nexport { Bind };\n\nlet bind: Bind.Module;\nexport default async function(value?: Partial): Promise {\n return new Promise((resolve: () => void) => {\n Bind.default(value).then((value: Bind.Module): void => {\n bind = value;\n resolve();\n });\n });\n}\nexport { bind };\n\nfunction import_Scalar(sca: XY | XYZ | XYZW | Bind.ImAccess | Bind.ImScalar | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImScalar {\n if (Array.isArray(sca)) { return [ sca[0] ]; }\n if (typeof sca === \"function\") { return [ sca() ]; }\n return [ sca.x ];\n}\n\nfunction export_Scalar(tuple: Bind.ImScalar, sca: XY | XYZ | XYZW | Bind.ImAccess | Bind.ImScalar | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(sca)) { sca[0] = tuple[0]; return; }\n if (typeof sca === \"function\") { sca(tuple[0]); return; }\n sca.x = tuple[0];\n}\n\nfunction import_Vector2(vec: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple2 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1] ]; }\n return [ vec.x, vec.y ];\n}\n\nfunction export_Vector2(tuple: Bind.ImTuple2, vec: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; return; }\n vec.x = tuple[0]; vec.y = tuple[1];\n}\n\nfunction import_Vector3(vec: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple3 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1], vec[2] ]; }\n return [ vec.x, vec.y, vec.z ];\n}\n\nfunction export_Vector3(tuple: Bind.ImTuple3, vec: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; vec[2] = tuple[2]; return; }\n vec.x = tuple[0]; vec.y = tuple[1]; vec.z = tuple[2];\n}\n\nfunction import_Vector4(vec: XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple4 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1], vec[2], vec[3] || 0 ]; }\n return [ vec.x, vec.y, vec.z, vec.w ];\n}\n\nfunction export_Vector4(tuple: Bind.ImTuple4, vec: XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; vec[2] = tuple[2]; vec[3] = tuple[3]; return; }\n vec.x = tuple[0]; vec.y = tuple[1]; vec.z = tuple[2]; vec.w = tuple[3];\n}\n\nfunction import_Color3(col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple3 {\n if (Array.isArray(col)) { return [ col[0], col[1], col[2] ]; }\n if (\"r\" in col) { return [ col.r, col.g, col.b ]; }\n return [ col.x, col.y, col.z ];\n}\n\nfunction export_Color3(tuple: Bind.ImTuple3, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(col)) { col[0] = tuple[0]; col[1] = tuple[1]; col[2] = tuple[2]; return; }\n if (\"r\" in col) { col.r = tuple[0]; col.g = tuple[1]; col.b = tuple[2]; return; }\n col.x = tuple[0]; col.y = tuple[1]; col.z = tuple[2];\n}\n\nfunction import_Color4(col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4 | RGBA): Bind.ImTuple4 {\n if (Array.isArray(col)) { return [ col[0], col[1], col[2], col[3] ]; }\n if (\"r\" in col) { return [ col.r, col.g, col.b, col.a ]; }\n return [ col.x, col.y, col.z, col.w ];\n}\n\nfunction export_Color4(tuple: Bind.ImTuple4, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4 | RGBA): void {\n if (Array.isArray(col)) { col[0] = tuple[0]; col[1] = tuple[1]; col[2] = tuple[2]; return; }\n if (\"r\" in col) { col.r = tuple[0]; col.g = tuple[1]; col.b = tuple[2]; return; }\n col.x = tuple[0]; col.y = tuple[1]; col.z = tuple[2];\n}\n\nimport * as config from \"./imconfig\";\n\nexport const IMGUI_VERSION: string = \"1.71\"; // bind.IMGUI_VERSION;\nexport const IMGUI_VERSION_NUM: number = 17100; // bind.IMGUI_VERSION_NUM;\n\n// #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert))\nexport function IMGUI_CHECKVERSION(): boolean { return DebugCheckVersionAndDataLayout(IMGUI_VERSION, bind.ImGuiIOSize, bind.ImGuiStyleSize, bind.ImVec2Size, bind.ImVec4Size, bind.ImDrawVertSize, bind.ImDrawIdxSize); }\n\nexport function IM_ASSERT(_EXPR: boolean | number): void { if (!_EXPR) { throw new Error(); } }\n\nexport function IM_ARRAYSIZE(_ARR: ArrayLike | ImStringBuffer): number {\n if (_ARR instanceof ImStringBuffer) {\n return _ARR.size;\n } else {\n return _ARR.length;\n }\n}\n\nexport class ImStringBuffer {\n constructor(public size: number, public buffer: string = \"\") {}\n}\n\nexport { ImAccess } from \"./bind-imgui\";\nexport { ImScalar } from \"./bind-imgui\";\nexport { ImTuple2 } from \"./bind-imgui\";\nexport { ImTuple3 } from \"./bind-imgui\";\nexport { ImTuple4 } from \"./bind-imgui\";\n\nexport type ImTextureID = WebGLTexture;\n\n// Flags for ImGui::Begin()\nexport { ImGuiWindowFlags as WindowFlags };\nexport enum ImGuiWindowFlags {\n None = 0,\n NoTitleBar = 1 << 0, // Disable title-bar\n NoResize = 1 << 1, // Disable user resizing with the lower-right grip\n NoMove = 1 << 2, // Disable user moving the window\n NoScrollbar = 1 << 3, // Disable scrollbars (window can still scroll with mouse or programatically)\n NoScrollWithMouse = 1 << 4, // Disable user vertically scrolling with mouse wheel. On child window, mouse wheel will be forwarded to the parent unless NoScrollbar is also set.\n NoCollapse = 1 << 5, // Disable user collapsing window by double-clicking on it\n AlwaysAutoResize = 1 << 6, // Resize every window to its content every frame\n NoBackground = 1 << 7, // Disable drawing background color (WindowBg, etc.) and outside border. Similar as using SetNextWindowBgAlpha(0.0f).\n NoSavedSettings = 1 << 8, // Never load/save settings in .ini file\n NoMouseInputs = 1 << 9, // Disable catching mouse or keyboard inputs, hovering test with pass through.\n MenuBar = 1 << 10, // Has a menu-bar\n HorizontalScrollbar = 1 << 11, // Allow horizontal scrollbar to appear (off by default). You may use SetNextWindowContentSize(ImVec2(width,0.0f)); prior to calling Begin() to specify width. Read code in imgui_demo in the \"Horizontal Scrolling\" section.\n NoFocusOnAppearing = 1 << 12, // Disable taking focus when transitioning from hidden to visible state\n NoBringToFrontOnFocus = 1 << 13, // Disable bringing window to front when taking focus (e.g. clicking on it or programatically giving it focus)\n AlwaysVerticalScrollbar= 1 << 14, // Always show vertical scrollbar (even if ContentSize.y < Size.y)\n AlwaysHorizontalScrollbar= 1 << 15, // Always show horizontal scrollbar (even if ContentSize.x < Size.x)\n AlwaysUseWindowPadding = 1 << 16, // Ensure child windows without border uses style.WindowPadding (ignored by default for non-bordered child windows, because more convenient)\n NoNavInputs = 1 << 18, // No gamepad/keyboard navigation within the window\n NoNavFocus = 1 << 19, // No focusing toward this window with gamepad/keyboard navigation (e.g. skipped by CTRL+TAB)\n UnsavedDocument = 1 << 20, // Append '*' to title without affecting the ID, as a convenience to avoid using the ### operator. When used in a tab/docking context, tab is selected on closure and closure is deferred by one frame to allow code to cancel the closure (with a confirmation popup, etc.) without flicker.\n NoNav = NoNavInputs | NoNavFocus,\n NoDecoration = NoTitleBar | NoResize | NoScrollbar | NoCollapse,\n NoInputs = NoMouseInputs | NoNavInputs | NoNavFocus,\n\n // [Internal]\n NavFlattened = 1 << 23, // (WIP) Allow gamepad/keyboard navigation to cross over parent border to this child (only use on child that have no scrolling!)\n ChildWindow = 1 << 24, // Don't use! For internal use by BeginChild()\n Tooltip = 1 << 25, // Don't use! For internal use by BeginTooltip()\n Popup = 1 << 26, // Don't use! For internal use by BeginPopup()\n Modal = 1 << 27, // Don't use! For internal use by BeginPopupModal()\n ChildMenu = 1 << 28, // Don't use! For internal use by BeginMenu()\n}\n\n// Flags for ImGui::InputText()\nexport { ImGuiInputTextFlags as InputTextFlags };\nexport enum ImGuiInputTextFlags {\n None = 0,\n CharsDecimal = 1 << 0, // Allow 0123456789.+-*/\n CharsHexadecimal = 1 << 1, // Allow 0123456789ABCDEFabcdef\n CharsUppercase = 1 << 2, // Turn a..z into A..Z\n CharsNoBlank = 1 << 3, // Filter out spaces, tabs\n AutoSelectAll = 1 << 4, // Select entire text when first taking mouse focus\n EnterReturnsTrue = 1 << 5, // Return 'true' when Enter is pressed (as opposed to when the value was modified)\n CallbackCompletion = 1 << 6, // Call user function on pressing TAB (for completion handling)\n CallbackHistory = 1 << 7, // Call user function on pressing Up/Down arrows (for history handling)\n CallbackAlways = 1 << 8, // Call user function every time. User code may query cursor position, modify text buffer.\n CallbackCharFilter = 1 << 9, // Call user function to filter character. Modify data->EventChar to replace/filter input, or return 1 to discard character.\n AllowTabInput = 1 << 10, // Pressing TAB input a '\\t' character into the text field\n CtrlEnterForNewLine = 1 << 11, // In multi-line mode, unfocus with Enter, add new line with Ctrl+Enter (default is opposite: unfocus with Ctrl+Enter, add line with Enter).\n NoHorizontalScroll = 1 << 12, // Disable following the cursor horizontally\n AlwaysInsertMode = 1 << 13, // Insert mode\n ReadOnly = 1 << 14, // Read-only mode\n Password = 1 << 15, // Password mode, display all characters as '*'\n NoUndoRedo = 1 << 16, // Disable undo/redo. Note that input text owns the text data while active, if you want to provide your own undo/redo stack you need e.g. to call ClearActiveID().\n CharsScientific = 1 << 17, // Allow 0123456789.+-*/eE (Scientific notation input)\n CallbackResize = 1 << 18, // Allow buffer capacity resize + notify when the string wants to be resized (for string types which hold a cache of their Size) (see misc/stl/imgui_stl.h for an example of using this)\n // [Internal]\n Multiline = 1 << 20, // For internal use by InputTextMultiline()\n NoMarkEdited = 1 << 21, // For internal use by functions using InputText() before reformatting data\n}\n\n// Flags for ImGui::TreeNodeEx(), ImGui::CollapsingHeader*()\nexport { ImGuiTreeNodeFlags as TreeNodeFlags };\nexport enum ImGuiTreeNodeFlags {\n None = 0,\n Selected = 1 << 0, // Draw as selected\n Framed = 1 << 1, // Full colored frame (e.g. for CollapsingHeader)\n AllowItemOverlap = 1 << 2, // Hit testing to allow subsequent widgets to overlap this one\n NoTreePushOnOpen = 1 << 3, // Don't do a TreePush() when open (e.g. for CollapsingHeader) = no extra indent nor pushing on ID stack\n NoAutoOpenOnLog = 1 << 4, // Don't automatically and temporarily open node when Logging is active (by default logging will automatically open tree nodes)\n DefaultOpen = 1 << 5, // Default node to be open\n OpenOnDoubleClick = 1 << 6, // Need double-click to open node\n OpenOnArrow = 1 << 7, // Only open when clicking on the arrow part. If OpenOnDoubleClick is also set, single-click arrow or double-click all box to open.\n Leaf = 1 << 8, // No collapsing, no arrow (use as a convenience for leaf nodes).\n Bullet = 1 << 9, // Display a bullet instead of arrow\n FramePadding = 1 << 10, // Use FramePadding (even for an unframed text node) to vertically align text baseline to regular widget height. Equivalent to calling AlignTextToFramePadding().\n //SpanAllAvailWidth = 1 << 11, // FIXME: TODO: Extend hit box horizontally even if not framed\n //NoScrollOnOpen = 1 << 12, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible\n NavLeftJumpsBackHere = 1 << 13, // (WIP) Nav: left direction may move to this TreeNode() from any of its child (items submitted between TreeNode and TreePop)\n CollapsingHeader = Framed | NoTreePushOnOpen | NoAutoOpenOnLog,\n}\n\n// Flags for ImGui::Selectable()\nexport { ImGuiSelectableFlags as SelectableFlags };\nexport enum ImGuiSelectableFlags {\n None = 0,\n DontClosePopups = 1 << 0, // Clicking this don't close parent popup window\n SpanAllColumns = 1 << 1, // Selectable frame can span all columns (text will still fit in current column)\n AllowDoubleClick = 1 << 2, // Generate press events on double clicks too\n Disabled = 1 << 3 // Cannot be selected, display greyed out text\n}\n\n// Flags for ImGui::BeginCombo()\nexport { ImGuiComboFlags as ComboFlags };\nexport enum ImGuiComboFlags {\n None = 0,\n PopupAlignLeft = 1 << 0, // Align the popup toward the left by default\n HeightSmall = 1 << 1, // Max ~4 items visible. Tip: If you want your combo popup to be a specific size you can use SetNextWindowSizeConstraints() prior to calling BeginCombo()\n HeightRegular = 1 << 2, // Max ~8 items visible (default)\n HeightLarge = 1 << 3, // Max ~20 items visible\n HeightLargest = 1 << 4, // As many fitting items as possible\n NoArrowButton = 1 << 5, // Display on the preview box without the square arrow button\n NoPreview = 1 << 6, // Display only a square arrow button\n HeightMask_ = HeightSmall | HeightRegular | HeightLarge | HeightLargest,\n}\n\n// Flags for ImGui::BeginTabBar()\nexport { ImGuiTabBarFlags as TabBarFlags };\nexport enum ImGuiTabBarFlags {\n None = 0,\n Reorderable = 1 << 0, // Allow manually dragging tabs to re-order them + New tabs are appended at the end of list\n AutoSelectNewTabs = 1 << 1, // Automatically select new tabs when they appear\n TabListPopupButton = 1 << 2,\n NoCloseWithMiddleMouseButton = 1 << 3, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.\n NoTabListScrollingButtons = 1 << 4,\n NoTooltip = 1 << 5, // Disable tooltips when hovering a tab\n FittingPolicyResizeDown = 1 << 6, // Resize tabs when they don't fit\n FittingPolicyScroll = 1 << 7, // Add scroll buttons when tabs don't fit\n FittingPolicyMask_ = FittingPolicyResizeDown | FittingPolicyScroll,\n FittingPolicyDefault_ = FittingPolicyResizeDown\n};\n\n// Flags for ImGui::BeginTabItem()\nexport { ImGuiTabItemFlags as TabItemFlags };\nexport enum ImGuiTabItemFlags\n{\n ImGuiTabItemFlags_None = 0,\n ImGuiTabItemFlags_UnsavedDocument = 1 << 0, // Append '*' to title without affecting the ID, as a convenience to avoid using the ### operator. Also: tab is selected on closure and closure is deferred by one frame to allow code to undo it without flicker.\n ImGuiTabItemFlags_SetSelected = 1 << 1, // Trigger flag to programatically make the tab selected when calling BeginTabItem()\n ImGuiTabItemFlags_NoCloseWithMiddleMouseButton = 1 << 2, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.\n ImGuiTabItemFlags_NoPushId = 1 << 3 // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem()\n};\n\n// Flags for ImGui::IsWindowFocused()\nexport { ImGuiFocusedFlags as FocusedFlags };\nexport enum ImGuiFocusedFlags {\n None = 0,\n ChildWindows = 1 << 0, // IsWindowFocused(): Return true if any children of the window is focused\n RootWindow = 1 << 1, // IsWindowFocused(): Test from root window (top most parent of the current hierarchy)\n AnyWindow = 1 << 2, // IsWindowFocused(): Return true if any window is focused\n RootAndChildWindows = RootWindow | ChildWindows,\n}\n\n// Flags for ImGui::IsItemHovered(), ImGui::IsWindowHovered()\nexport { ImGuiHoveredFlags as HoveredFlags };\nexport enum ImGuiHoveredFlags {\n None = 0, // Return true if directly over the item/window, not obstructed by another window, not obstructed by an active popup or modal blocking inputs under them.\n ChildWindows = 1 << 0, // IsWindowHovered() only: Return true if any children of the window is hovered\n RootWindow = 1 << 1, // IsWindowHovered() only: Test from root window (top most parent of the current hierarchy)\n AnyWindow = 1 << 2, // IsWindowHovered() only: Return true if any window is hovered\n AllowWhenBlockedByPopup = 1 << 3, // Return true even if a popup window is normally blocking access to this item/window\n //AllowWhenBlockedByModal = 1 << 4, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet.\n AllowWhenBlockedByActiveItem = 1 << 5, // Return true even if an active item is blocking access to this item/window. Useful for Drag and Drop patterns.\n AllowWhenOverlapped = 1 << 6, // Return true even if the position is overlapped by another window\n AllowWhenDisabled = 1 << 7, // Return true even if the item is disabled\n RectOnly = AllowWhenBlockedByPopup | AllowWhenBlockedByActiveItem | AllowWhenOverlapped,\n RootAndChildWindows = RootWindow | ChildWindows,\n}\n\n// Flags for ImGui::BeginDragDropSource(), ImGui::AcceptDragDropPayload()\nexport { ImGuiDragDropFlags as DragDropFlags };\nexport enum ImGuiDragDropFlags {\n // BeginDragDropSource() flags\n None = 0,\n SourceNoPreviewTooltip = 1 << 0, // By default, a successful call to BeginDragDropSource opens a tooltip so you can display a preview or description of the source contents. This flag disable this behavior.\n SourceNoDisableHover = 1 << 1, // By default, when dragging we clear data so that IsItemHovered() will return true, to avoid subsequent user code submitting tooltips. This flag disable this behavior so you can still call IsItemHovered() on the source item.\n SourceNoHoldToOpenOthers = 1 << 2, // Disable the behavior that allows to open tree nodes and collapsing header by holding over them while dragging a source item.\n SourceAllowNullID = 1 << 3, // Allow items such as Text(), Image() that have no unique identifier to be used as drag source, by manufacturing a temporary identifier based on their window-relative position. This is extremely unusual within the dear imgui ecosystem and so we made it explicit.\n SourceExtern = 1 << 4, // External source (from outside of imgui), won't attempt to read current item/window info. Will always return true. Only one Extern source can be active simultaneously.\n SourceAutoExpirePayload = 1 << 5, // Automatically expire the payload if the source cease to be submitted (otherwise payloads are persisting while being dragged)\n // AcceptDragDropPayload() flags\n AcceptBeforeDelivery = 1 << 10, // AcceptDragDropPayload() will returns true even before the mouse button is released. You can then call IsDelivery() to test if the payload needs to be delivered.\n AcceptNoDrawDefaultRect = 1 << 11, // Do not draw the default highlight rectangle when hovering over target.\n AcceptNoPreviewTooltip = 1 << 12, // Request hiding the BeginDragDropSource tooltip from the BeginDragDropTarget site.\n AcceptPeekOnly = AcceptBeforeDelivery | AcceptNoDrawDefaultRect, // For peeking ahead and inspecting the payload before delivery.\n}\n\n// Standard Drag and Drop payload types. You can define you own payload types using 12-characters long strings. Types starting with '_' are defined by Dear ImGui.\nexport const IMGUI_PAYLOAD_TYPE_COLOR_3F: string = \"_COL3F\"; // float[3] // Standard type for colors, without alpha. User code may use this type.\nexport const IMGUI_PAYLOAD_TYPE_COLOR_4F: string = \"_COL4F\"; // float[4] // Standard type for colors. User code may use this type.\n\n// A primary data type\nexport { ImGuiDataType as DataType };\nexport enum ImGuiDataType {\n S8, // char\n U8, // unsigned char\n S16, // short\n U16, // unsigned short\n S32, // int\n U32, // unsigned int\n S64, // long long, __int64\n U64, // unsigned long long, unsigned __int64\n Float, // float\n Double, // double\n COUNT\n}\n\n// A cardinal direction\nexport { ImGuiDir as Dir };\nexport enum ImGuiDir {\n None = -1,\n Left = 0,\n Right = 1,\n Up = 2,\n Down = 3,\n COUNT\n}\n\n// User fill ImGuiIO.KeyMap[] array with indices into the ImGuiIO.KeysDown[512] array\nexport { ImGuiKey as Key };\nexport enum ImGuiKey {\n Tab,\n LeftArrow,\n RightArrow,\n UpArrow,\n DownArrow,\n PageUp,\n PageDown,\n Home,\n End,\n Insert,\n Delete,\n Backspace,\n Space,\n Enter,\n Escape,\n A, // for text edit CTRL+A: select all\n C, // for text edit CTRL+C: copy\n V, // for text edit CTRL+V: paste\n X, // for text edit CTRL+X: cut\n Y, // for text edit CTRL+Y: redo\n Z, // for text edit CTRL+Z: undo\n COUNT,\n}\n\n// [BETA] Gamepad/Keyboard directional navigation\n// Keyboard: Set io.ConfigFlags |= EnableKeyboard to enable. NewFrame() will automatically fill io.NavInputs[] based on your io.KeyDown[] + io.KeyMap[] arrays.\n// Gamepad: Set io.ConfigFlags |= EnableGamepad to enable. Fill the io.NavInputs[] fields before calling NewFrame(). Note that io.NavInputs[] is cleared by EndFrame().\n// Read instructions in imgui.cpp for more details.\nexport { ImGuiNavInput as NavInput };\nexport enum ImGuiNavInput\n{\n // Gamepad Mapping\n Activate, // activate / open / toggle / tweak value // e.g. Circle (PS4), A (Xbox), B (Switch), Space (Keyboard)\n Cancel, // cancel / close / exit // e.g. Cross (PS4), B (Xbox), A (Switch), Escape (Keyboard)\n Input, // text input / on-screen keyboard // e.g. Triang.(PS4), Y (Xbox), X (Switch), Return (Keyboard)\n Menu, // tap: toggle menu / hold: focus, move, resize // e.g. Square (PS4), X (Xbox), Y (Switch), Alt (Keyboard)\n DpadLeft, // move / tweak / resize window (w/ PadMenu) // e.g. D-pad Left/Right/Up/Down (Gamepads), Arrow keys (Keyboard)\n DpadRight, //\n DpadUp, //\n DpadDown, //\n LStickLeft, // scroll / move window (w/ PadMenu) // e.g. Left Analog Stick Left/Right/Up/Down\n LStickRight, //\n LStickUp, //\n LStickDown, //\n FocusPrev, // next window (w/ PadMenu) // e.g. L1 or L2 (PS4), LB or LT (Xbox), L or ZL (Switch)\n FocusNext, // prev window (w/ PadMenu) // e.g. R1 or R2 (PS4), RB or RT (Xbox), R or ZL (Switch)\n TweakSlow, // slower tweaks // e.g. L1 or L2 (PS4), LB or LT (Xbox), L or ZL (Switch)\n TweakFast, // faster tweaks // e.g. R1 or R2 (PS4), RB or RT (Xbox), R or ZL (Switch)\n\n // [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them.\n // Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) may be directly reading from io.KeyDown[] instead of io.NavInputs[].\n KeyMenu_, // toggle menu // = io.KeyAlt\n KeyTab_, // tab // = Tab key\n KeyLeft_, // move left // = Arrow keys\n KeyRight_, // move right\n KeyUp_, // move up\n KeyDown_, // move down\n COUNT,\n InternalStart_ = KeyMenu_,\n}\n\n// [BETA] Gamepad/Keyboard directional navigation flags, stored in io.ConfigFlags\nexport { ImGuiConfigFlags as ConfigFlags };\nexport enum ImGuiConfigFlags\n{\n None = 0,\n NavEnableKeyboard = 1 << 0, // Master keyboard navigation enable flag. NewFrame() will automatically fill io.NavInputs[] based on io.KeyDown[].\n NavEnableGamepad = 1 << 1, // Master gamepad navigation enable flag. This is mostly to instruct your imgui back-end to fill io.NavInputs[].\n NavEnableSetMousePos = 1 << 2, // Request navigation to allow moving the mouse cursor. May be useful on TV/console systems where moving a virtual mouse is awkward. Will update io.MousePos and set io.WantMoveMouse=true. If enabled you MUST honor io.WantMoveMouse requests in your binding, otherwise ImGui will react as if the mouse is jumping around back and forth.\n NavNoCaptureKeyboard = 1 << 3, // Do not set the io.WantCaptureKeyboard flag with io.NavActive is set.\n NoMouse = 1 << 4, // Instruct imgui to clear mouse position/buttons in NewFrame(). This allows ignoring the mouse information back-end\n NoMouseCursorChange = 1 << 5, // Instruct back-end to not alter mouse cursor shape and visibility.\n\n IsSRGB = 1 << 20, // Application is SRGB-aware.\n IsTouchScreen = 1 << 21 // Application is using a touch screen instead of a mouse.\n}\n\n// Enumeration for PushStyleColor() / PopStyleColor()\nexport { ImGuiCol as Col };\nexport enum ImGuiCol {\n Text,\n TextDisabled,\n WindowBg, // Background of normal windows\n ChildBg, // Background of child windows\n PopupBg, // Background of popups, menus, tooltips windows\n Border,\n BorderShadow,\n FrameBg, // Background of checkbox, radio button, plot, slider, text input\n FrameBgHovered,\n FrameBgActive,\n TitleBg,\n TitleBgActive,\n TitleBgCollapsed,\n MenuBarBg,\n ScrollbarBg,\n ScrollbarGrab,\n ScrollbarGrabHovered,\n ScrollbarGrabActive,\n CheckMark,\n SliderGrab,\n SliderGrabActive,\n Button,\n ButtonHovered,\n ButtonActive,\n Header,\n HeaderHovered,\n HeaderActive,\n Separator,\n SeparatorHovered,\n SeparatorActive,\n ResizeGrip,\n ResizeGripHovered,\n ResizeGripActive,\n Tab,\n TabHovered,\n TabActive,\n TabUnfocused,\n TabUnfocusedActive,\n PlotLines,\n PlotLinesHovered,\n PlotHistogram,\n PlotHistogramHovered,\n TextSelectedBg,\n DragDropTarget,\n NavHighlight, // Gamepad/keyboard: current highlighted item\n NavWindowingHighlight, // Highlight window when using CTRL+TAB\n NavWindowingDimBg, // Darken/colorize entire screen behind the CTRL+TAB window list, when active\n ModalWindowDimBg, // Darken/colorize entire screen behind a modal window, when one is active\n COUNT,\n}\n\n// Enumeration for PushStyleVar() / PopStyleVar() to temporarily modify the ImGuiStyle structure.\n// NB: the enum only refers to fields of ImGuiStyle which makes sense to be pushed/popped inside UI code. During initialization, feel free to just poke into ImGuiStyle directly.\n// NB: if changing this enum, you need to update the associated internal table GStyleVarInfo[] accordingly. This is where we link enum values to members offset/type.\nexport { ImGuiStyleVar as StyleVar };\nexport enum ImGuiStyleVar {\n // Enum name ......................// Member in ImGuiStyle structure (see ImGuiStyle for descriptions)\n Alpha, // float Alpha\n WindowPadding, // ImVec2 WindowPadding\n WindowRounding, // float WindowRounding\n WindowBorderSize, // float WindowBorderSize\n WindowMinSize, // ImVec2 WindowMinSize\n WindowTitleAlign, // ImVec2 WindowTitleAlign\n // WindowMenuButtonPosition, // ImGuiDir WindowMenuButtonPosition\n ChildRounding, // float ChildRounding\n ChildBorderSize, // float ChildBorderSize\n PopupRounding, // float PopupRounding\n PopupBorderSize, // float PopupBorderSize\n FramePadding, // ImVec2 FramePadding\n FrameRounding, // float FrameRounding\n FrameBorderSize, // float FrameBorderSize\n ItemSpacing, // ImVec2 ItemSpacing\n ItemInnerSpacing, // ImVec2 ItemInnerSpacing\n IndentSpacing, // float IndentSpacing\n ScrollbarSize, // float ScrollbarSize\n ScrollbarRounding, // float ScrollbarRounding\n GrabMinSize, // float GrabMinSize\n GrabRounding, // float GrabRounding\n TabRounding, // float TabRounding\n ButtonTextAlign, // ImVec2 ButtonTextAlign\n SelectableTextAlign, // ImVec2 SelectableTextAlign\n Count_, COUNT = Count_,\n}\n\n// Back-end capabilities flags stored in io.BackendFlags. Set by imgui_impl_xxx or custom back-end.\nexport { ImGuiBackendFlags as BackendFlags };\nexport enum ImGuiBackendFlags {\n None = 0,\n HasGamepad = 1 << 0, // Back-end has a connected gamepad.\n HasMouseCursors = 1 << 1, // Back-end can honor GetMouseCursor() values and change the OS cursor shape.\n HasSetMousePos = 1 << 2, // Back-end can honor io.WantSetMousePos and reposition the mouse (only used if ImGuiConfigFlags_NavEnableSetMousePos is set).\n RendererHasVtxOffset = 1 << 3, // Back-end Renderer supports ImDrawCmd::VtxOffset. This enables output of large meshes (64K+ vertices) while still using 16-bits indices.\n}\n\n// Enumeration for ColorEdit3() / ColorEdit4() / ColorPicker3() / ColorPicker4() / ColorButton()\nexport { ImGuiColorEditFlags as ColorEditFlags };\nexport enum ImGuiColorEditFlags {\n None = 0,\n NoAlpha = 1 << 1, // // ColorEdit, ColorPicker, ColorButton: ignore Alpha component (read 3 components from the input pointer).\n NoPicker = 1 << 2, // // ColorEdit: disable picker when clicking on colored square.\n NoOptions = 1 << 3, // // ColorEdit: disable toggling options menu when right-clicking on inputs/small preview.\n NoSmallPreview = 1 << 4, // // ColorEdit, ColorPicker: disable colored square preview next to the inputs. (e.g. to show only the inputs)\n NoInputs = 1 << 5, // // ColorEdit, ColorPicker: disable inputs sliders/text widgets (e.g. to show only the small preview colored square).\n NoTooltip = 1 << 6, // // ColorEdit, ColorPicker, ColorButton: disable tooltip when hovering the preview.\n NoLabel = 1 << 7, // // ColorEdit, ColorPicker: disable display of inline text label (the label is still forwarded to the tooltip and picker).\n NoSidePreview = 1 << 8, // // ColorPicker: disable bigger color preview on right side of the picker, use small colored square preview instead.\n NoDragDrop = 1 << 9, // // ColorEdit: disable drag and drop target. ColorButton: disable drag and drop source.\n // User Options (right-click on widget to change some of them). You can set application defaults using SetColorEditOptions(). The idea is that you probably don't want to override them in most of your calls, let the user choose and/or call SetColorEditOptions() during startup.\n AlphaBar = 1 << 16, // // ColorEdit, ColorPicker: show vertical alpha bar/gradient in picker.\n AlphaPreview = 1 << 17, // // ColorEdit, ColorPicker, ColorButton: display preview as a transparent color over a checkerboard, instead of opaque.\n AlphaPreviewHalf= 1 << 18, // // ColorEdit, ColorPicker, ColorButton: display half opaque / half checkerboard, instead of opaque.\n HDR = 1 << 19, // // (WIP) ColorEdit: Currently only disable 0.0f..1.0f limits in RGBA edition (note: you probably want to use Float flag as well).\n DisplayRGB = 1 << 20, // [Inputs] // ColorEdit: choose one among RGB/HSV/HEX. ColorPicker: choose any combination using RGB/HSV/HEX.\n DisplayHSV = 1 << 21, // [Inputs] // \"\n DisplayHex = 1 << 22, // [Inputs] // \"\n Uint8 = 1 << 23, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0..255.\n Float = 1 << 24, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0.0f..1.0f floats instead of 0..255 integers. No round-trip of value via integers.\n PickerHueBar = 1 << 25, // [PickerMode] // ColorPicker: bar for Hue, rectangle for Sat/Value.\n PickerHueWheel = 1 << 26, // [PickerMode] // ColorPicker: wheel for Hue, triangle for Sat/Value.\n InputRGB = 1 << 27, // [Input] // ColorEdit, ColorPicker: input and output data in RGB format.\n InputHSV = 1 << 28, // [Input] // ColorEdit, ColorPicker: input and output data in HSV format.\n\n // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to\n // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup.\n _OptionsDefault = Uint8|DisplayRGB|InputRGB|PickerHueBar,\n\n // [Internal] Masks\n _DisplayMask = DisplayRGB|DisplayHSV|DisplayHex,\n _DataTypeMask = Uint8|Float,\n _PickerMask = PickerHueWheel|PickerHueBar,\n _InputMask = InputRGB|InputHSV,\n}\n\n// Enumeration for GetMouseCursor()\nexport { ImGuiMouseCursor as MouseCursor };\nexport enum ImGuiMouseCursor {\n None = -1,\n Arrow = 0,\n TextInput, // When hovering over InputText, etc.\n ResizeAll, // (Unused by imgui functions)\n ResizeNS, // When hovering over an horizontal border\n ResizeEW, // When hovering over a vertical border or a column\n ResizeNESW, // When hovering over the bottom-left corner of a window\n ResizeNWSE, // When hovering over the bottom-right corner of a window\n Hand, // (Unused by imgui functions. Use for e.g. hyperlinks)\n Count_, COUNT = Count_,\n}\n\n// Condition for ImGui::SetWindow***(), SetNextWindow***(), SetNextTreeNode***() functions\n// All those functions treat 0 as a shortcut to Always. From the point of view of the user use this as an enum (don't combine multiple values into flags).\nexport { ImGuiCond as Cond };\nexport enum ImGuiCond {\n Always = 1 << 0, // Set the variable\n Once = 1 << 1, // Set the variable once per runtime session (only the first call with succeed)\n FirstUseEver = 1 << 2, // Set the variable if the window has no saved data (if doesn't exist in the .ini file)\n Appearing = 1 << 3, // Set the variable if the window is appearing after being hidden/inactive (or the first time)\n}\n\nexport { ImDrawCornerFlags as wCornerFlags };\nexport enum ImDrawCornerFlags\n{\n TopLeft = 1 << 0, // 0x1\n TopRight = 1 << 1, // 0x2\n BotLeft = 1 << 2, // 0x4\n BotRight = 1 << 3, // 0x8\n Top = TopLeft | TopRight, // 0x3\n Bot = BotLeft | BotRight, // 0xC\n Left = TopLeft | BotLeft, // 0x5\n Right = TopRight | BotRight, // 0xA\n All = 0xF, // In your function calls you may use ~0 (= all bits sets) instead of All, as a convenience\n}\n\nexport { ImDrawListFlags as wListFlags };\nexport enum ImDrawListFlags\n{\n None = 0,\n AntiAliasedLines = 1 << 0,\n AntiAliasedFill = 1 << 1,\n}\n\nexport { ImU32 } from \"./bind-imgui\";\n\nexport { interface_ImVec2 } from \"./bind-imgui\";\nexport { reference_ImVec2 } from \"./bind-imgui\";\n\nexport class ImVec2 implements Bind.interface_ImVec2 {\n public static readonly ZERO: Readonly = new ImVec2(0.0, 0.0);\n public static readonly UNIT: Readonly = new ImVec2(1.0, 1.0);\n public static readonly UNIT_X: Readonly = new ImVec2(1.0, 0.0);\n public static readonly UNIT_Y: Readonly = new ImVec2(0.0, 1.0);\n\n constructor(public x: number = 0.0, public y: number = 0.0) {}\n\n public Set(x: number, y: number): this {\n this.x = x;\n this.y = y;\n return this;\n }\n\n public Copy(other: Readonly): this {\n this.x = other.x;\n this.y = other.y;\n return this;\n }\n\n public Equals(other: Readonly): boolean {\n if (this.x !== other.x) { return false; }\n if (this.y !== other.y) { return false; }\n return true;\n }\n}\n\nexport { interface_ImVec4 } from \"./bind-imgui\";\nexport { reference_ImVec4 } from \"./bind-imgui\";\n\nexport class ImVec4 implements Bind.interface_ImVec4 {\n public static readonly ZERO: Readonly = new ImVec4(0.0, 0.0, 0.0, 0.0);\n public static readonly UNIT: Readonly = new ImVec4(1.0, 1.0, 1.0, 1.0);\n public static readonly UNIT_X: Readonly = new ImVec4(1.0, 0.0, 0.0, 0.0);\n public static readonly UNIT_Y: Readonly = new ImVec4(0.0, 1.0, 0.0, 0.0);\n public static readonly UNIT_Z: Readonly = new ImVec4(0.0, 0.0, 1.0, 0.0);\n public static readonly UNIT_W: Readonly = new ImVec4(0.0, 0.0, 0.0, 1.0);\n public static readonly BLACK: Readonly = new ImVec4(0.0, 0.0, 0.0, 1.0);\n public static readonly WHITE: Readonly = new ImVec4(1.0, 1.0, 1.0, 1.0);\n\n constructor(public x: number = 0.0, public y: number = 0.0, public z: number = 0.0, public w: number = 1.0) {}\n\n public Set(x: number, y: number, z: number, w: number): this {\n this.x = x;\n this.y = y;\n this.z = z;\n this.w = w;\n return this;\n }\n\n public Copy(other: Readonly): this {\n this.x = other.x;\n this.y = other.y;\n this.z = other.z;\n this.w = other.w;\n return this;\n }\n\n public Equals(other: Readonly): boolean {\n if (this.x !== other.x) { return false; }\n if (this.y !== other.y) { return false; }\n if (this.z !== other.z) { return false; }\n if (this.w !== other.w) { return false; }\n return true;\n }\n}\n\n//-----------------------------------------------------------------------------\n// Helpers\n//-----------------------------------------------------------------------------\n\n// Lightweight std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug).\n// Our implementation does NOT call C++ constructors/destructors. This is intentional and we do not require it. Do not use this class as a straight std::vector replacement in your code!\nexport class ImVector extends Array\n{\n public get Size(): number { return this.length; }\n public Data: T[] = this;\n public empty(): boolean { return this.length === 0; }\n public clear(): void { this.length = 0; }\n public pop_back(): T | undefined { return this.pop(); }\n public push_back(value: T): void { this.push(value); }\n // public:\n // int Size;\n // int Capacity;\n // T* Data;\n\n // typedef T value_type;\n // typedef value_type* iterator;\n // typedef const value_type* const_iterator;\n\n // inline ImVector() { Size = Capacity = 0; Data = NULL; }\n // inline ~ImVector() { if (Data) ImGui::MemFree(Data); }\n\n // inline bool empty() const { return Size == 0; }\n // inline int size() const { return Size; }\n // inline int capacity() const { return Capacity; }\n\n // inline value_type& operator[](int i) { IM_ASSERT(i < Size); return Data[i]; }\n // inline const value_type& operator[](int i) const { IM_ASSERT(i < Size); return Data[i]; }\n\n // inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } }\n // inline iterator begin() { return Data; }\n // inline const_iterator begin() const { return Data; }\n // inline iterator end() { return Data + Size; }\n // inline const_iterator end() const { return Data + Size; }\n // inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; }\n // inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; }\n // inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; }\n // inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; }\n // inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; }\n\n // inline int _grow_capacity(int size) const { int new_capacity = Capacity ? (Capacity + Capacity/2) : 8; return new_capacity > size ? new_capacity : size; }\n\n // inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; }\n // inline void resize(int new_size, const T& v){ if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) Data[n] = v; Size = new_size; }\n // inline void reserve(int new_capacity)\n // {\n // if (new_capacity <= Capacity)\n // return;\n // T* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T));\n // if (Data)\n // memcpy(new_data, Data, (size_t)Size * sizeof(T));\n // ImGui::MemFree(Data);\n // Data = new_data;\n // Capacity = new_capacity;\n // }\n\n // inline void push_back(const value_type& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); Data[Size++] = v; }\n // inline void pop_back() { IM_ASSERT(Size > 0); Size--; }\n // inline void push_front(const value_type& v) { if (Size == 0) push_back(v); else insert(Data, v); }\n\n // inline iterator erase(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; }\n // inline iterator erase(const_iterator it, const_iterator it_last){ IM_ASSERT(it >= Data && it < Data+Size && it_last > it && it_last <= Data+Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - count) * sizeof(value_type)); Size -= (int)count; return Data + off; }\n // inline iterator erase_unsorted(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; if (it < Data+Size-1) memcpy(Data + off, Data + Size - 1, sizeof(value_type)); Size--; return Data + off; }\n // inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= Data && it <= Data+Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; }\n // inline bool contains(const value_type& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; }\n}\n\n// Helper: Parse and apply text filters. In format \"aaaaa[,bbbb][,ccccc]\"\nexport class ImGuiTextFilter\n{\n // IMGUI_API ImGuiTextFilter(const char* default_filter = \"\");\n constructor(default_filter: string = \"\") {\n if (default_filter)\n {\n // ImStrncpy(InputBuf, default_filter, IM_ARRAYSIZE(InputBuf));\n this.InputBuf.buffer = default_filter;\n this.Build();\n }\n else\n {\n // InputBuf[0] = 0;\n this.InputBuf.buffer = \"\";\n this.CountGrep = 0;\n }\n }\n // IMGUI_API bool Draw(const char* label = \"Filter (inc,-exc)\", float width = 0.0f); // Helper calling InputText+Build\n public Draw(label: string = \"Filter (inc,-exc)\", width: number = 0.0): boolean {\n if (width !== 0.0)\n bind.PushItemWidth(width);\n const value_changed: boolean = InputText(label, this.InputBuf, IM_ARRAYSIZE(this.InputBuf));\n if (width !== 0.0)\n bind.PopItemWidth();\n if (value_changed)\n this.Build();\n return value_changed;\n }\n // IMGUI_API bool PassFilter(const char* text, const char* text_end = NULL) const;\n public PassFilter(text: string, text_end: number | null = null): boolean {\n // if (Filters.empty())\n // return true;\n\n // if (text == NULL)\n // text = \"\";\n\n // for (int i = 0; i != Filters.Size; i++)\n // {\n // const TextRange& f = Filters[i];\n // if (f.empty())\n // continue;\n // if (f.front() == '-')\n // {\n // // Subtract\n // if (ImStristr(text, text_end, f.begin()+1, f.end()) != NULL)\n // return false;\n // }\n // else\n // {\n // // Grep\n // if (ImStristr(text, text_end, f.begin(), f.end()) != NULL)\n // return true;\n // }\n // }\n\n // Implicit * grep\n if (this.CountGrep === 0)\n return true;\n\n return false;\n }\n // IMGUI_API void Build();\n public Build(): void {\n // Filters.resize(0);\n // TextRange input_range(InputBuf, InputBuf+strlen(InputBuf));\n // input_range.split(',', Filters);\n\n this.CountGrep = 0;\n // for (int i = 0; i != Filters.Size; i++)\n // {\n // Filters[i].trim_blanks();\n // if (Filters[i].empty())\n // continue;\n // if (Filters[i].front() != '-')\n // CountGrep += 1;\n // }\n }\n // void Clear() { InputBuf[0] = 0; Build(); }\n public Clear(): void { this.InputBuf.buffer = \"\"; this.Build(); }\n // bool IsActive() const { return !Filters.empty(); }\n public IsActive(): boolean { return false; }\n\n // [Internal]\n // struct TextRange\n // {\n // const char* b;\n // const char* e;\n\n // TextRange() { b = e = NULL; }\n // TextRange(const char* _b, const char* _e) { b = _b; e = _e; }\n // const char* begin() const { return b; }\n // const char* end() const { return e; }\n // bool empty() const { return b == e; }\n // char front() const { return *b; }\n // static bool is_blank(char c) { return c == ' ' || c == '\\t'; }\n // void trim_blanks() { while (b < e && is_blank(*b)) b++; while (e > b && is_blank(*(e-1))) e--; }\n // IMGUI_API void split(char separator, ImVector& out);\n // };\n\n // char InputBuf[256];\n public InputBuf: ImStringBuffer = new ImStringBuffer(256);\n // ImVector Filters;\n // int CountGrep;\n public CountGrep: number = 0;\n}\n\n// Helper: Text buffer for logging/accumulating text\nexport class ImGuiTextBuffer\n{\n // ImVector Buf;\n public Buf: string = \"\";\n public begin(): string { return this.Buf; }\n public size(): number { return this.Buf.length; }\n public clear(): void { this.Buf = \"\"; }\n public append(text: string): void { this.Buf += text; }\n\n // ImGuiTextBuffer() { Buf.push_back(0); }\n // inline char operator[](int i) { return Buf.Data[i]; }\n // const char* begin() const { return &Buf.front(); }\n // const char* end() const { return &Buf.back(); } // Buf is zero-terminated, so end() will point on the zero-terminator\n // int size() const { return Buf.Size - 1; }\n // bool empty() { return Buf.Size <= 1; }\n // void clear() { Buf.clear(); Buf.push_back(0); }\n // void reserve(int capacity) { Buf.reserve(capacity); }\n // const char* c_str() const { return Buf.Data; }\n // IMGUI_API void appendf(const char* fmt, ...) IM_FMTARGS(2);\n // IMGUI_API void appendfv(const char* fmt, va_list args) IM_FMTLIST(2);\n}\n\n// Helper: Simple Key->value storage\n// Typically you don't have to worry about this since a storage is held within each Window.\n// We use it to e.g. store collapse state for a tree (Int 0/1), store color edit options.\n// This is optimized for efficient reading (dichotomy into a contiguous buffer), rare writing (typically tied to user interactions)\n// You can use it as custom user storage for temporary values. Declare your own storage if, for example:\n// - You want to manipulate the open/close state of a particular sub-tree in your interface (tree node uses Int 0/1 to store their state).\n// - You want to store custom debug data easily without adding or editing structures in your code (probably not efficient, but convenient)\n// Types are NOT stored, so it is up to you to make sure your Key don't collide with different types.\nexport class ImGuiStorage\n{\n // struct Pair\n // {\n // ImGuiID key;\n // union { int val_i; float val_f; void* val_p; };\n // Pair(ImGuiID _key, int _val_i) { key = _key; val_i = _val_i; }\n // Pair(ImGuiID _key, float _val_f) { key = _key; val_f = _val_f; }\n // Pair(ImGuiID _key, void* _val_p) { key = _key; val_p = _val_p; }\n // };\n // ImVector Data;\n\n // - Get***() functions find pair, never add/allocate. Pairs are sorted so a query is O(log N)\n // - Set***() functions find pair, insertion on demand if missing.\n // - Sorted insertion is costly, paid once. A typical frame shouldn't need to insert any new pair.\n // void Clear() { Data.clear(); }\n // IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const;\n // IMGUI_API void SetInt(ImGuiID key, int val);\n // IMGUI_API bool GetBool(ImGuiID key, bool default_val = false) const;\n // IMGUI_API void SetBool(ImGuiID key, bool val);\n // IMGUI_API float GetFloat(ImGuiID key, float default_val = 0.0f) const;\n // IMGUI_API void SetFloat(ImGuiID key, float val);\n // IMGUI_API void* GetVoidPtr(ImGuiID key) const; // default_val is NULL\n // IMGUI_API void SetVoidPtr(ImGuiID key, void* val);\n\n // - Get***Ref() functions finds pair, insert on demand if missing, return pointer. Useful if you intend to do Get+Set.\n // - References are only valid until a new value is added to the storage. Calling a Set***() function or a Get***Ref() function invalidates the pointer.\n // - A typical use case where this is convenient for quick hacking (e.g. add storage during a live Edit&Continue session if you can't modify existing struct)\n // float* pvar = ImGui::GetFloatRef(key); ImGui::SliderFloat(\"var\", pvar, 0, 100.0f); some_var += *pvar;\n // IMGUI_API int* GetIntRef(ImGuiID key, int default_val = 0);\n // IMGUI_API bool* GetBoolRef(ImGuiID key, bool default_val = false);\n // IMGUI_API float* GetFloatRef(ImGuiID key, float default_val = 0.0f);\n // IMGUI_API void** GetVoidPtrRef(ImGuiID key, void* default_val = NULL);\n\n // Use on your own storage if you know only integer are being stored (open/close all tree nodes)\n // IMGUI_API void SetAllInt(int val);\n\n // For quicker full rebuild of a storage (instead of an incremental one), you may add all your contents and then sort once.\n // IMGUI_API void BuildSortByKey();\n}\n\n// Data payload for Drag and Drop operations\nexport interface ImGuiPayload\n{\n // Members\n // void* Data; // Data (copied and owned by dear imgui)\n Data: T;\n // int DataSize; // Data size\n\n // [Internal]\n // ImGuiID SourceId; // Source item id\n // ImGuiID SourceParentId; // Source parent id (if available)\n // int DataFrameCount; // Data timestamp\n // char DataType[12 + 1]; // Data type tag (short user-supplied string, 12 characters max)\n // bool Preview; // Set when AcceptDragDropPayload() was called and mouse has been hovering the target item (nb: handle overlapping drag targets)\n // bool Delivery; // Set when AcceptDragDropPayload() was called and mouse button is released over the target item.\n\n // ImGuiPayload() { Clear(); }\n // void Clear() { SourceId = SourceParentId = 0; Data = NULL; DataSize = 0; memset(DataType, 0, sizeof(DataType)); DataFrameCount = -1; Preview = Delivery = false; }\n // bool IsDataType(const char* type) const { return DataFrameCount != -1 && strcmp(type, DataType) == 0; }\n // bool IsPreview() const { return Preview; }\n // bool IsDelivery() const { return Delivery; }\n}\n\n// Helpers macros to generate 32-bits encoded colors\nexport const IM_COL32_R_SHIFT: number = config.IMGUI_USE_BGRA_PACKED_COLOR ? 16 : 0;\nexport const IM_COL32_G_SHIFT: number = 8;\nexport const IM_COL32_B_SHIFT: number = config.IMGUI_USE_BGRA_PACKED_COLOR ? 0 : 16;\nexport const IM_COL32_A_SHIFT: number = 24;\nexport const IM_COL32_A_MASK: number = 0xFF000000;\nexport function IM_COL32(R: number, G: number, B: number, A: number = 255): number {\n return ((A << IM_COL32_A_SHIFT) | (B << IM_COL32_B_SHIFT) | (G << IM_COL32_G_SHIFT) | (R << IM_COL32_R_SHIFT)) >>> 0;\n}\nexport const IM_COL32_WHITE: number = IM_COL32(255, 255, 255, 255); // Opaque white = 0xFFFFFFFF\nexport const IM_COL32_BLACK: number = IM_COL32(0, 0, 0, 255); // Opaque black\nexport const IM_COL32_BLACK_TRANS: number = IM_COL32(0, 0, 0, 0); // Transparent black = 0x00000000\n\n// ImColor() helper to implicity converts colors to either ImU32 (packed 4x1 byte) or ImVec4 (4x1 float)\n// Prefer using IM_COL32() macros if you want a guaranteed compile-time ImU32 for usage with ImDrawList API.\n// **Avoid storing ImColor! Store either u32 of ImVec4. This is not a full-featured color class. MAY OBSOLETE.\n// **None of the ImGui API are using ImColor directly but you can use it as a convenience to pass colors in either ImU32 or ImVec4 formats. Explicitly cast to ImU32 or ImVec4 if needed.\nexport class ImColor\n{\n // ImVec4 Value;\n public Value: ImVec4 = new ImVec4();\n\n // ImColor() { Value.x = Value.y = Value.z = Value.w = 0.0f; }\n // ImColor(int r, int g, int b, int a = 255) { float sc = 1.0f/255.0f; Value.x = (float)r * sc; Value.y = (float)g * sc; Value.z = (float)b * sc; Value.w = (float)a * sc; }\n // ImColor(ImU32 rgba) { float sc = 1.0f/255.0f; Value.x = (float)((rgba>>IM_COL32_R_SHIFT)&0xFF) * sc; Value.y = (float)((rgba>>IM_COL32_G_SHIFT)&0xFF) * sc; Value.z = (float)((rgba>>IM_COL32_B_SHIFT)&0xFF) * sc; Value.w = (float)((rgba>>IM_COL32_A_SHIFT)&0xFF) * sc; }\n // ImColor(float r, float g, float b, float a = 1.0f) { Value.x = r; Value.y = g; Value.z = b; Value.w = a; }\n // ImColor(const ImVec4& col) { Value = col; }\n constructor();\n constructor(r: number, g: number, b: number);\n constructor(r: number, g: number, b: number, a: number);\n constructor(rgba: Bind.ImU32);\n constructor(col: Readonly);\n constructor(r: number | Bind.ImU32 | Readonly = 0.0, g: number = 0.0, b: number = 0.0, a: number = 1.0) {\n if (typeof(r) === \"number\") {\n if (r > 255 && g === 0.0 && b === 0.0 && a === 1.0) {\n this.Value.x = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_R_SHIFT) & 0xFF) / 255));\n this.Value.y = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_G_SHIFT) & 0xFF) / 255));\n this.Value.z = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_B_SHIFT) & 0xFF) / 255));\n this.Value.w = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_A_SHIFT) & 0xFF) / 255));\n } else if (r <= 1.0 && g <= 1.0 && b <= 1.0 && a <= 1.0) {\n this.Value.x = Math.max(0.0, r);\n this.Value.y = Math.max(0.0, g);\n this.Value.z = Math.max(0.0, b);\n this.Value.w = Math.max(0.0, a);\n } else {\n this.Value.x = Math.max(0.0, Math.min(1.0, r / 255));\n this.Value.y = Math.max(0.0, Math.min(1.0, g / 255));\n this.Value.z = Math.max(0.0, Math.min(1.0, b / 255));\n if (a <= 1.0) {\n this.Value.w = Math.max(0.0, a);\n } else {\n this.Value.w = Math.max(0.0, Math.min(1.0, a / 255));\n }\n }\n } else {\n this.Value.Copy(r);\n }\n }\n // inline operator ImU32() const { return ImGui::ColorConvertFloat4ToU32(Value); }\n public toImU32(): Bind.ImU32 { return ColorConvertFloat4ToU32(this.Value); }\n // inline operator ImVec4() const { return Value; }\n public toImVec4(): ImVec4 { return this.Value; }\n\n // FIXME-OBSOLETE: May need to obsolete/cleanup those helpers.\n // inline void SetHSV(float h, float s, float v, float a = 1.0f){ ImGui::ColorConvertHSVtoRGB(h, s, v, Value.x, Value.y, Value.z); Value.w = a; }\n public SetHSV(h: number, s: number, v: number, a: number = 1.0): void {\n const ref_r: Bind.ImScalar = [ this.Value.x ];\n const ref_g: Bind.ImScalar = [ this.Value.y ];\n const ref_b: Bind.ImScalar = [ this.Value.z ];\n ColorConvertHSVtoRGB(h, s, v, ref_r, ref_g, ref_b);\n this.Value.x = ref_r[0];\n this.Value.y = ref_g[0];\n this.Value.z = ref_b[0];\n this.Value.w = a;\n }\n // static ImColor HSV(float h, float s, float v, float a = 1.0f) { float r,g,b; ImGui::ColorConvertHSVtoRGB(h, s, v, r, g, b); return ImColor(r,g,b,a); }\n public static HSV(h: number, s: number, v: number, a: number = 1.0): ImColor {\n const color = new ImColor();\n color.SetHSV(h, s, v, a);\n return color;\n }\n}\n\nexport const ImGuiInputTextDefaultSize: number = 128;\n\nexport type ImGuiInputTextCallback = (data: ImGuiInputTextCallbackData) => number;\n\n// Shared state of InputText(), passed to callback when a ImGuiInputTextFlags_Callback* flag is used and the corresponding callback is triggered.\nexport class ImGuiInputTextCallbackData {\n constructor(public readonly native: Bind.reference_ImGuiInputTextCallbackData, public readonly UserData: any) {}\n\n // ImGuiInputTextFlags EventFlag; // One of ImGuiInputTextFlags_Callback* // Read-only\n public get EventFlag(): ImGuiInputTextFlags { return this.native.EventFlag; }\n // ImGuiInputTextFlags Flags; // What user passed to InputText() // Read-only\n public get Flags(): ImGuiInputTextFlags { return this.native.Flags; }\n // void* UserData; // What user passed to InputText() // Read-only\n // public get UserData(): any { return this.native.UserData; }\n\n // CharFilter event:\n // ImWchar EventChar; // Character input // Read-write (replace character or set to zero)\n public get EventChar(): Bind.ImWchar { return this.native.EventChar; }\n public set EventChar(value: Bind.ImWchar) { this.native.EventChar = value; }\n\n // Completion,History,Always events:\n // If you modify the buffer contents make sure you update 'BufTextLen' and set 'BufDirty' to true.\n // ImGuiKey EventKey; // Key pressed (Up/Down/TAB) // Read-only\n public get EventKey(): ImGuiKey { return this.native.EventKey; }\n // char* Buf; // Current text buffer // Read-write (pointed data only, can't replace the actual pointer)\n public get Buf(): string { return this.native.Buf; }\n public set Buf(value: string) { this.native.Buf = value; }\n // int BufTextLen; // Current text length in bytes // Read-write\n public get BufTextLen(): number { return this.native.BufTextLen; }\n public set BufTextLen(value: number) { this.native.BufTextLen = value; }\n // int BufSize; // Maximum text length in bytes // Read-only\n public get BufSize(): number { return this.native.BufSize; }\n // bool BufDirty; // Set if you modify Buf/BufTextLen!! // Write\n public set BufDirty(value: boolean) { this.native.BufDirty = value; }\n // int CursorPos; // // Read-write\n public get CursorPos(): number { return this.native.CursorPos; }\n public set CursorPos(value: number) { this.native.CursorPos = value; }\n // int SelectionStart; // // Read-write (== to SelectionEnd when no selection)\n public get SelectionStart(): number { return this.native.SelectionStart; }\n public set SelectionStart(value: number) { this.native.SelectionStart = value; }\n // int SelectionEnd; // // Read-write\n public get SelectionEnd(): number { return this.native.SelectionEnd; }\n public set SelectionEnd(value: number) { this.native.SelectionEnd = value; }\n\n // NB: Helper functions for text manipulation. Calling those function loses selection.\n // IMGUI_API void DeleteChars(int pos, int bytes_count);\n public DeleteChars(pos: number, bytes_count: number): void { return this.native.DeleteChars(pos, bytes_count); }\n // IMGUI_API void InsertChars(int pos, const char* text, const char* text_end = NULL);\n public InsertChars(pos: number, text: string, text_end: number | null = null): void { return this.native.InsertChars(pos, text_end !== null ? text.substring(0, text_end) : text); }\n // bool HasSelection() const { return SelectionStart != SelectionEnd; }\n public HasSelection(): boolean { return this.native.HasSelection(); }\n}\n\nexport type ImGuiSizeConstraintCallback = (data: ImGuiSizeCallbackData) => void;\n\n// Resizing callback data to apply custom constraint. As enabled by SetNextWindowSizeConstraints(). Callback is called during the next Begin().\n// NB: For basic min/max size constraint on each axis you don't need to use the callback! The SetNextWindowSizeConstraints() parameters are enough.\nexport class ImGuiSizeCallbackData {\n constructor(public readonly native: Bind.reference_ImGuiSizeCallbackData, public readonly UserData: any) {}\n\n get Pos(): Readonly { return this.native.Pos; }\n get CurrentSize(): Readonly { return this.native.CurrentSize; }\n get DesiredSize(): Bind.interface_ImVec2 { return this.native.DesiredSize; }\n}\n\nexport class ImGuiListClipper\n{\n private native: Bind.ImGuiListClipper;\n\n public get StartPosY(): number { return this.native.StartPosY; }\n public get ItemsHeight(): number { return this.native.ItemsHeight; }\n public get ItemsCount(): number { return this.native.ItemsCount; }\n public get StepNo(): number { return this.native.StepNo; }\n public get DisplayStart(): number { return this.native.DisplayStart; }\n public get DisplayEnd(): number { return this.native.DisplayEnd; }\n\n // items_count: Use -1 to ignore (you can call Begin later). Use INT_MAX if you don't know how many items you have (in which case the cursor won't be advanced in the final step).\n // items_height: Use -1.0f to be calculated automatically on first step. Otherwise pass in the distance between your items, typically GetTextLineHeightWithSpacing() or GetFrameHeightWithSpacing().\n // If you don't specify an items_height, you NEED to call Step(). If you specify items_height you may call the old Begin()/End() api directly, but prefer calling Step().\n // ImGuiListClipper(int items_count = -1, float items_height = -1.0f) { Begin(items_count, items_height); } // NB: Begin() initialize every fields (as we allow user to call Begin/End multiple times on a same instance if they want).\n constructor(items_count: number = -1, items_height: number = -1.0) {\n this.native = new bind.ImGuiListClipper(items_count, items_height);\n }\n // ~ImGuiListClipper() { IM_ASSERT(ItemsCount == -1); } // Assert if user forgot to call End() or Step() until false.\n public delete(): void {\n if (this.native) {\n this.native.delete();\n delete this.native;\n }\n }\n\n // IMGUI_API bool Step(); // Call until it returns false. The DisplayStart/DisplayEnd fields will be set and you can process/draw those items.\n public Step(): boolean {\n if (!this.native) { throw new Error(); }\n const busy: boolean = this.native.Step();\n if (!busy) {\n this.delete();\n }\n return busy;\n }\n // IMGUI_API void Begin(int items_count, float items_height = -1.0f); // Automatically called by constructor if you passed 'items_count' or by Step() in Step 1.\n public Begin(items_count: number, items_height: number = -1.0): void {\n if (!this.native) {\n this.native = new Bind.ImGuiListClipper(items_count, items_height);\n }\n this.native.Begin(items_count, items_height);\n }\n // IMGUI_API void End(); // Automatically called on the last call of Step() that returns false.\n public End(): void {\n if (!this.native) { throw new Error(); }\n this.native.End();\n this.delete();\n }\n}\n\n//-----------------------------------------------------------------------------\n// Draw List\n// Hold a series of drawing commands. The user provides a renderer for ImDrawData which essentially contains an array of ImDrawList.\n//-----------------------------------------------------------------------------\n\n// Draw callbacks for advanced uses.\n// NB- You most likely do NOT need to use draw callbacks just to create your own widget or customized UI rendering (you can poke into the draw list for that)\n// Draw callback may be useful for example, A) Change your GPU render state, B) render a complex 3D scene inside a UI element (without an intermediate texture/render target), etc.\n// The expected behavior from your rendering function is 'if (cmd.UserCallback != NULL) cmd.UserCallback(parent_list, cmd); else RenderTriangles()'\n// typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd);\nexport type ImDrawCallback = (parent_list: Readonly, cmd: Readonly) => void;\n\n// Special Draw callback value to request renderer back-end to reset the graphics/render state.\n// The renderer back-end needs to handle this special value, otherwise it will crash trying to call a function at this address.\n// This is useful for example if you submitted callbacks which you know have altered the render state and you want it to be restored.\n// It is not done by default because they are many perfectly useful way of altering render state for imgui contents (e.g. changing shader/blending settings before an Image call).\nexport const ImDrawCallback_ResetRenderState = -1;\n\n// Typically, 1 command = 1 GPU draw call (unless command is a callback)\n// Pre 1.71 back-ends will typically ignore the VtxOffset/IdxOffset fields. When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset'\n// is enabled, those fields allow us to render meshes larger than 64K vertices while keeping 16-bits indices.\nexport class ImDrawCmd\n{\n constructor(public readonly native: Bind.reference_ImDrawCmd) {}\n\n // unsigned int ElemCount; // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[].\n get ElemCount(): number { return this.native.ElemCount; }\n // ImVec4 ClipRect; // Clipping rectangle (x1, y1, x2, y2)\n get ClipRect(): Readonly { return this.native.ClipRect; }\n // ImTextureID TextureId; // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas.\n get TextureId(): ImTextureID | null {\n return ImGuiContext.getTexture(this.native.TextureId);\n }\n // unsigned int VtxOffset; // Start offset in vertex buffer. Pre-1.71 or without ImGuiBackendFlags_RendererHasVtxOffset: always 0. With ImGuiBackendFlags_RendererHasVtxOffset: may be >0 to support meshes larger than 64K vertices with 16-bits indices.\n get VtxOffset(): number { return this.native.VtxOffset; }\n // unsigned int IdxOffset; // Start offset in index buffer. Always equal to sum of ElemCount drawn so far.\n get IdxOffset(): number { return this.native.IdxOffset; }\n // ImDrawCallback UserCallback; // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally.\n public readonly UserCallback: ImDrawCallback | null = null; // TODO\n // void* UserCallbackData; // The draw callback code can access this.\n public readonly UserCallbackData: any = null; // TODO\n\n // ImDrawCmd() { ElemCount = 0; ClipRect.x = ClipRect.y = ClipRect.z = ClipRect.w = 0.0f; TextureId = NULL; UserCallback = NULL; UserCallbackData = NULL; }\n}\n\n// Vertex index \n// (to allow large meshes with 16-bits indices: set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset in the renderer back-end)\n// (to use 32-bits indices: override with '#define ImDrawIdx unsigned int' in imconfig.h)\n// #ifndef ImDrawIdx\n// typedef unsigned short ImDrawIdx;\n// #endif\nexport const ImDrawIdxSize: number = 2; // bind.ImDrawIdxSize;\nexport type ImDrawIdx = number;\n\n// Vertex layout\n// #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT\nexport const ImDrawVertSize: number = 20; // bind.ImDrawVertSize;\nexport const ImDrawVertPosOffset: number = 0; // bind.ImDrawVertPosOffset;\nexport const ImDrawVertUVOffset: number = 8; // bind.ImDrawVertUVOffset;\nexport const ImDrawVertColOffset: number = 16; // bind.ImDrawVertColOffset;\nexport class ImDrawVert\n{\n // ImVec2 pos;\n public pos: Float32Array;\n // ImVec2 uv;\n public uv: Float32Array;\n // ImU32 col;\n public col: Uint32Array;\n\n constructor(buffer: ArrayBuffer, byteOffset: number = 0) {\n this.pos = new Float32Array(buffer, byteOffset + bind.ImDrawVertPosOffset, 2);\n this.uv = new Float32Array(buffer, byteOffset + bind.ImDrawVertUVOffset, 2);\n this.col = new Uint32Array(buffer, byteOffset + bind.ImDrawVertColOffset, 1);\n }\n}\n// #else\n// You can override the vertex format layout by defining IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT in imconfig.h\n// The code expect ImVec2 pos (8 bytes), ImVec2 uv (8 bytes), ImU32 col (4 bytes), but you can re-order them or add other fields as needed to simplify integration in your engine.\n// The type has to be described within the macro (you can either declare the struct or use a typedef)\n// NOTE: IMGUI DOESN'T CLEAR THE STRUCTURE AND DOESN'T CALL A CONSTRUCTOR SO ANY CUSTOM FIELD WILL BE UNINITIALIZED. IF YOU ADD EXTRA FIELDS (SUCH AS A 'Z' COORDINATES) YOU WILL NEED TO CLEAR THEM DURING RENDER OR TO IGNORE THEM.\n// IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT;\n// #endif\n\n// Draw channels are used by the Columns API to \"split\" the render list into different channels while building, so items of each column can be batched together.\n// You can also use them to simulate drawing layers and submit primitives in a different order than how they will be rendered.\nexport class ImDrawChannel\n{\n // ImVector CmdBuffer;\n // ImVector IdxBuffer;\n}\n\nexport class ImDrawListSharedData\n{\n constructor(public readonly native: Bind.reference_ImDrawListSharedData) {}\n}\n\n// Draw command list\n// This is the low-level list of polygons that ImGui functions are filling. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering.\n// Each ImGui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to access the current window draw list and draw custom primitives.\n// You can interleave normal ImGui:: calls and adding primitives to the current draw list.\n// All positions are generally in pixel coordinates (top-left at (0,0), bottom-right at io.DisplaySize), however you are totally free to apply whatever transformation matrix to want to the data (if you apply such transformation you'll want to apply it to ClipRect as well)\n// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects.\nexport class ImDrawList\n{\n constructor(public readonly native: Bind.reference_ImDrawList) {}\n\n public IterateDrawCmds(callback: (draw_cmd: ImDrawCmd, ElemStart: number) => void): void {\n this.native.IterateDrawCmds((draw_cmd: Bind.reference_ImDrawCmd, ElemStart: number): void => {\n callback(new ImDrawCmd(draw_cmd), ElemStart);\n });\n }\n\n // This is what you have to render\n // ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback.\n // ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those\n get IdxBuffer(): Uint8Array { return this.native.IdxBuffer; }\n // ImVector VtxBuffer; // Vertex buffer.\n get VtxBuffer(): Uint8Array { return this.native.VtxBuffer; }\n // ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive.\n get Flags(): ImDrawListFlags { return this.native.Flags; }\n set Flags(value: ImDrawListFlags) { this.native.Flags = value; }\n\n // [Internal, used while building lists]\n // const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context)\n // const char* _OwnerName; // Pointer to owner window's name for debugging\n // unsigned int _VtxCurrentIdx; // [Internal] == VtxBuffer.Size\n // ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)\n // ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)\n // ImVector _ClipRectStack; // [Internal]\n // ImVector _TextureIdStack; // [Internal]\n // ImVector _Path; // [Internal] current path building\n // int _ChannelsCurrent; // [Internal] current channel number (0)\n // int _ChannelsCount; // [Internal] number of active channels (1+)\n // ImVector _Channels; // [Internal] draw channels for columns API (not resized down so _ChannelsCount may be smaller than _Channels.Size)\n\n // ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clear(); }\n // ~ImDrawList() { ClearFreeMemory(); }\n // IMGUI_API void PushClipRect(ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling)\n public PushClipRect(clip_rect_min: Readonly, clip_rect_max: Readonly, intersect_with_current_clip_rect: boolean = false): void {\n this.native.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect);\n }\n // IMGUI_API void PushClipRectFullScreen();\n public PushClipRectFullScreen(): void { this.native.PushClipRectFullScreen(); }\n // IMGUI_API void PopClipRect();\n public PopClipRect(): void { this.native.PopClipRect(); }\n // IMGUI_API void PushTextureID(ImTextureID texture_id);\n public PushTextureID(texture_id: ImTextureID): void {\n this.native.PushTextureID(ImGuiContext.setTexture(texture_id));\n }\n // IMGUI_API void PopTextureID();\n public PopTextureID(): void { this.native.PopTextureID(); }\n // inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); }\n public GetClipRectMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return this.native.GetClipRectMin(out);\n }\n // inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); }\n public GetClipRectMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return this.native.GetClipRectMax(out);\n }\n\n // Primitives\n // IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness = 1.0f);\n public AddLine(a: Readonly, b: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddLine(a, b, col, thickness);\n }\n // IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All, float thickness = 1.0f); // a: upper-left, b: lower-right, rounding_corners_flags: 4-bits corresponding to which corner to round\n public AddRect(a: Readonly, b: Readonly, col: Bind.ImU32, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All, thickness: number = 1.0): void {\n this.native.AddRect(a, b, col, rounding, rounding_corners_flags, thickness);\n }\n // IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); // a: upper-left, b: lower-right\n public AddRectFilled(a: Readonly, b: Readonly, col: Bind.ImU32, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All): void {\n this.native.AddRectFilled(a, b, col, rounding, rounding_corners_flags);\n }\n // IMGUI_API void AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left);\n public AddRectFilledMultiColor(a: Readonly, b: Readonly, col_upr_left: Bind.ImU32, col_upr_right: Bind.ImU32, col_bot_right: Bind.ImU32, col_bot_left: Bind.ImU32): void {\n this.native.AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left);\n }\n // IMGUI_API void AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness = 1.0f);\n public AddQuad(a: Readonly, b: Readonly, c: Readonly, d: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddQuad(a, b, c, d, col, thickness);\n }\n // IMGUI_API void AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col);\n public AddQuadFilled(a: Readonly, b: Readonly, c: Readonly, d: Readonly, col: Bind.ImU32): void {\n this.native.AddQuadFilled(a, b, c, d, col);\n }\n // IMGUI_API void AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness = 1.0f);\n public AddTriangle(a: Readonly, b: Readonly, c: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddTriangle(a, b, c, col, thickness);\n }\n // IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col);\n public AddTriangleFilled(a: Readonly, b: Readonly, c: Readonly, col: Bind.ImU32): void {\n this.native.AddTriangleFilled(a, b, c, col);\n }\n // IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f);\n public AddCircle(centre: Readonly, radius: number, col: Bind.ImU32, num_segments: number = 12, thickness: number = 1.0): void {\n this.native.AddCircle(centre, radius, col, num_segments, thickness);\n }\n // IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12);\n public AddCircleFilled(centre: Readonly, radius: number, col: Bind.ImU32, num_segments: number = 12): void {\n this.native.AddCircleFilled(centre, radius, col, num_segments);\n }\n // IMGUI_API void AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL);\n // IMGUI_API void AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL, float wrap_width = 0.0f, const ImVec4* cpu_fine_clip_rect = NULL);\n public AddText(pos: Readonly, col: Bind.ImU32, text_begin: string, text_end?: number | null): void;\n public AddText(font: ImFont, font_size: number, pos: Readonly, col: Bind.ImU32, text_begin: string, text_end?: number | null, wrap_width?: number, cpu_fine_clip_rect?: Readonly | null): void;\n public AddText(...args: any[]): void {\n if (args[0] instanceof ImFont) {\n const font: ImFont = args[0];\n const font_size: number = args[1];\n const pos: Readonly = args[2];\n const col: Bind.ImU32 = args[3];\n const text_begin: string = args[4];\n const text_end: number | null = args[5] || null;\n const wrap_width: number = args[6] = 0.0;\n const cpu_fine_clip_rect: Readonly | null = args[7] || null;\n this.native.AddText_B(font.native, font_size, pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin, wrap_width, cpu_fine_clip_rect);\n } else {\n const pos: Readonly = args[0];\n const col: Bind.ImU32 = args[1];\n const text_begin: string = args[2];\n const text_end: number | null = args[3] || null;\n this.native.AddText_A(pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin);\n }\n }\n // IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,1), ImU32 col = 0xFFFFFFFF);\n public AddImage(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, uv_a: Readonly = ImVec2.ZERO, uv_b: Readonly = ImVec2.UNIT, col: Bind.ImU32 = 0xFFFFFFFF): void {\n this.native.AddImage(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col);\n }\n // IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,0), const ImVec2& uv_c = ImVec2(1,1), const ImVec2& uv_d = ImVec2(0,1), ImU32 col = 0xFFFFFFFF);\n public AddImageQuad(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, c: Readonly, d: Readonly, uv_a: Readonly = ImVec2.ZERO, uv_b: Readonly = ImVec2.UNIT_X, uv_c: Readonly = ImVec2.UNIT, uv_d: Readonly = ImVec2.UNIT_Y, col: Bind.ImU32 = 0xFFFFFFFF): void {\n this.native.AddImageQuad(ImGuiContext.setTexture(user_texture_id), a, b, c, d, uv_a, uv_b, uv_c, uv_d, col);\n }\n // IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col, float rounding, int rounding_corners = ImDrawCornerFlags_All);\n public AddImageRounded(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, uv_a: Readonly, uv_b: Readonly, col: Bind.ImU32, rounding: number, rounding_corners: ImDrawCornerFlags = ImDrawCornerFlags.All): void {\n this.native.AddImageRounded(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col, rounding, rounding_corners);\n }\n // IMGUI_API void AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness);\n public AddPolyline(points: Array>, num_points: number, col: Bind.ImU32, closed: boolean, thickness: number): void {\n this.native.AddPolyline(points, num_points, col, closed, thickness);\n }\n // IMGUI_API void AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col);\n public AddConvexPolyFilled(points: Array>, num_points: number, col: Bind.ImU32): void {\n this.native.AddConvexPolyFilled(points, num_points, col);\n }\n // IMGUI_API void AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments = 0);\n public AddBezierCurve(pos0: Readonly, cp0: Readonly, cp1: Readonly, pos1: Readonly, col: Bind.ImU32, thickness: number = 1.0, num_segments: number = 0): void {\n this.native.AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments);\n }\n\n // Stateful path API, add points then finish with PathFill() or PathStroke()\n // inline void PathClear() { _Path.resize(0); }\n public PathClear(): void { this.native.PathClear(); }\n // inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); }\n public PathLineTo(pos: Readonly): void { this.native.PathLineTo(pos); }\n // inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path[_Path.Size-1], &pos, 8) != 0) _Path.push_back(pos); }\n public PathLineToMergeDuplicate(pos: Readonly): void { this.native.PathLineToMergeDuplicate(pos); }\n // inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); PathClear(); }\n public PathFillConvex(col: Bind.ImU32): void { this.native.PathFillConvex(col); }\n // inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness); PathClear(); }\n public PathStroke(col: Bind.ImU32, closed: boolean, thickness: number = 1.0): void { this.native.PathStroke(col, closed, thickness); }\n // IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_segments = 10);\n public PathArcTo(centre: Readonly, radius: number, a_min: number, a_max: number, num_segments: number = 10): void { this.native.PathArcTo(centre, radius, a_min, a_max, num_segments); }\n // IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle\n public PathArcToFast(centre: Readonly, radius: number, a_min_of_12: number, a_max_of_12: number): void { this.native.PathArcToFast(centre, radius, a_min_of_12, a_max_of_12); }\n // IMGUI_API void PathBezierCurveTo(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, int num_segments = 0);\n public PathBezierCurveTo(p1: Readonly, p2: Readonly, p3: Readonly, num_segments: number = 0): void { this.native.PathBezierCurveTo(p1, p2, p3, num_segments); }\n // IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All);\n public PathRect(rect_min: Readonly, rect_max: Readonly, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All): void { this.native.PathRect(rect_min, rect_max, rounding, rounding_corners_flags); }\n\n // Channels\n // - Use to simulate layers. By switching channels to can render out-of-order (e.g. submit foreground primitives before background primitives)\n // - Use to minimize draw calls (e.g. if going back-and-forth between multiple non-overlapping clipping rectangles, prefer to append into separate channels then merge at the end)\n // IMGUI_API void ChannelsSplit(int channels_count);\n public ChannelsSplit(channels_count: number): void { this.native.ChannelsSplit(channels_count); }\n // IMGUI_API void ChannelsMerge();\n public ChannelsMerge(): void { this.native.ChannelsMerge(); }\n // IMGUI_API void ChannelsSetCurrent(int channel_index);\n public ChannelsSetCurrent(channel_index: number): void { this.native.ChannelsSetCurrent(channel_index); }\n\n // Advanced\n // IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles.\n public AddCallback(callback: ImDrawCallback, callback_data: any): void {\n const _callback: Bind.ImDrawCallback = (parent_list: Readonly, draw_cmd: Readonly): void => {\n callback(new ImDrawList(parent_list), new ImDrawCmd(draw_cmd));\n };\n this.native.AddCallback(_callback, callback_data);\n }\n // IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible\n public AddDrawCmd(): void { this.native.AddDrawCmd(); }\n\n // Internal helpers\n // NB: all primitives needs to be reserved via PrimReserve() beforehand!\n // IMGUI_API void Clear();\n public Clear(): void { this.native.Clear(); }\n // IMGUI_API void ClearFreeMemory();\n public ClearFreeMemory(): void { this.native.ClearFreeMemory(); }\n // IMGUI_API void PrimReserve(int idx_count, int vtx_count);\n public PrimReserve(idx_count: number, vtx_count: number): void { this.native.PrimReserve(idx_count, vtx_count); }\n // IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles)\n public PrimRect(a: Readonly, b: Readonly, col: Bind.ImU32): void { this.native.PrimRect(a, b, col); }\n // IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col);\n public PrimRectUV(a: Readonly, b: Readonly, uv_a: Readonly, uv_b: Readonly, col: Bind.ImU32): void { this.native.PrimRectUV(a, b, uv_a, uv_b, col); }\n // IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col);\n public PrimQuadUV(a: Readonly, b: Readonly, c: Readonly, d: Readonly, uv_a: Readonly, uv_b: Readonly, uv_c: Readonly, uv_d: Readonly, col: Bind.ImU32): void { this.native.PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); }\n // inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; }\n public PrimWriteVtx(pos: Readonly, uv: Readonly, col: Bind.ImU32): void { this.native.PrimWriteVtx(pos, uv, col); }\n // inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; }\n public PrimWriteIdx(idx: ImDrawIdx): void { this.native.PrimWriteIdx(idx); }\n // inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); }\n public PrimVtx(pos: Readonly, uv: Readonly, col: Bind.ImU32): void { this.native.PrimVtx(pos, uv, col); }\n // IMGUI_API void UpdateClipRect();\n public UpdateClipRect(): void { this.native.UpdateClipRect(); }\n // IMGUI_API void UpdateTextureID();\n public UpdateTextureID(): void { this.native.UpdateTextureID(); }\n}\n\n// All draw data to render an ImGui frame\nexport class ImDrawData\n{\n constructor(public readonly native: Bind.reference_ImDrawData) {}\n\n public IterateDrawLists(callback: (draw_list: ImDrawList) => void): void {\n this.native.IterateDrawLists((draw_list: Bind.reference_ImDrawList): void => {\n callback(new ImDrawList(draw_list));\n });\n }\n\n // bool Valid; // Only valid after Render() is called and before the next NewFrame() is called.\n get Valid(): boolean { return this.native.Valid; }\n // ImDrawList** CmdLists;\n // int CmdListsCount;\n get CmdListsCount(): number { return this.native.CmdListsCount; }\n // int TotalIdxCount; // For convenience, sum of all cmd_lists idx_buffer.Size\n get TotalIdxCount(): number { return this.native.TotalIdxCount; }\n // int TotalVtxCount; // For convenience, sum of all cmd_lists vtx_buffer.Size\n get TotalVtxCount(): number { return this.native.TotalVtxCount; }\n // ImVec2 DisplayPos; // Upper-left position of the viewport to render (== upper-left of the orthogonal projection matrix to use)\n get DisplayPos(): Readonly { return this.native.DisplayPos; }\n // ImVec2 DisplaySize; // Size of the viewport to render (== io.DisplaySize for the main viewport) (DisplayPos + DisplaySize == lower-right of the orthogonal projection matrix to use)\n get DisplaySize(): Readonly { return this.native.DisplaySize; }\n // ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display.\n get FramebufferScale(): Readonly { return this.native.FramebufferScale; }\n\n // Functions\n // ImDrawData() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCount = 0; }\n // IMGUI_API void DeIndexAllBuffers(); // For backward compatibility or convenience: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering!\n public DeIndexAllBuffers(): void { this.native.DeIndexAllBuffers(); }\n // IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than ImGui expects, or if there is a difference between your window resolution and framebuffer resolution.\n public ScaleClipRects(fb_scale: Readonly): void {\n this.native.ScaleClipRects(fb_scale);\n }\n}\n\nexport class script_ImFontConfig implements Bind.interface_ImFontConfig\n{\n // void* FontData; // // TTF/OTF data\n // int FontDataSize; // // TTF/OTF data size\n FontData: DataView | null = null;\n // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself).\n FontDataOwnedByAtlas: boolean = true;\n // int FontNo; // 0 // Index of font within TTF/OTF file\n FontNo: number = 0;\n // float SizePixels; // // Size in pixels for rasterizer.\n SizePixels: number = 0;\n // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis.\n OversampleH: number = 3;\n OversampleV: number = 1;\n // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1.\n PixelSnapH: boolean = false;\n // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now.\n GlyphExtraSpacing: ImVec2 = new ImVec2(0, 0);\n // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input.\n GlyphOffset: ImVec2 = new ImVec2(0, 0);\n // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE.\n GlyphRanges: number | null = null;\n // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font\n GlyphMinAdvanceX: number = 0;\n // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs\n GlyphMaxAdvanceX: number = Number.MAX_VALUE;\n // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights.\n MergeMode: boolean = false;\n // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one.\n RasterizerFlags: number = 0;\n // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable.\n RasterizerMultiply: number = 1.0;\n\n // [Internal]\n // char Name[32]; // Name (strictly to ease debugging)\n Name: string = \"\";\n // ImFont* DstFont;\n DstFont: Bind.reference_ImFont | null = null;\n\n // IMGUI_API ImFontConfig();\n}\n\nexport class ImFontConfig {\n constructor(public readonly internal: Bind.interface_ImFontConfig = new script_ImFontConfig()) {}\n\n // void* FontData; // // TTF/OTF data\n // int FontDataSize; // // TTF/OTF data size\n get FontData(): DataView | null { return this.internal.FontData; }\n // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself).\n get FontDataOwnedByAtlas(): boolean { return this.internal.FontDataOwnedByAtlas; }\n // int FontNo; // 0 // Index of font within TTF/OTF file\n get FontNo(): number { return this.internal.FontNo; }\n // float SizePixels; // // Size in pixels for rasterizer.\n get SizePixels(): number { return this.internal.SizePixels; }\n // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis.\n get OversampleH(): number { return this.internal.OversampleH; }\n get OversampleV(): number { return this.internal.OversampleV; }\n // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1.\n get PixelSnapH(): boolean { return this.internal.PixelSnapH; }\n // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now.\n get GlyphExtraSpacing(): ImVec2 { return this.internal.GlyphExtraSpacing; }\n // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input.\n get GlyphOffset(): ImVec2 { return this.internal.GlyphOffset; }\n // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE.\n get GlyphRanges(): number | null { return this.internal.GlyphRanges; }\n // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font\n get GlyphMinAdvanceX(): number { return this.internal.GlyphMinAdvanceX; }\n // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs\n get GlyphMaxAdvanceX(): number { return this.internal.GlyphMaxAdvanceX; }\n // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights.\n get MergeMode(): boolean { return this.internal.MergeMode; }\n // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one.\n get RasterizerFlags(): number { return this.internal.RasterizerFlags; }\n // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable.\n get RasterizerMultiply(): number { return this.internal.RasterizerMultiply; }\n\n // [Internal]\n // char Name[32]; // Name (strictly to ease debugging)\n get Name(): string { return this.internal.Name; }\n set Name(value: string) { this.internal.Name = value; }\n // ImFont* DstFont;\n get DstFont(): ImFont | null {\n const font = this.internal.DstFont;\n return font && new ImFont(font);\n }\n\n // IMGUI_API ImFontConfig();\n}\n\n// struct ImFontGlyph\nexport class script_ImFontGlyph implements Bind.interface_ImFontGlyph\n{\n // ImWchar Codepoint; // 0x0000..0xFFFF\n Codepoint: number = 0;\n // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in)\n AdvanceX: number = 0.0;\n // float X0, Y0, X1, Y1; // Glyph corners\n X0: number = 0.0;\n Y0: number = 0.0;\n X1: number = 1.0;\n Y1: number = 1.0;\n // float U0, V0, U1, V1; // Texture coordinates\n U0: number = 0.0;\n V0: number = 0.0;\n U1: number = 1.0;\n V1: number = 1.0;\n}\n\nexport class ImFontGlyph implements Bind.interface_ImFontGlyph {\n constructor(public readonly internal: Bind.interface_ImFontGlyph = new script_ImFontGlyph()) {}\n // ImWchar Codepoint; // 0x0000..0xFFFF\n get Codepoint(): number { return this.internal.Codepoint; }\n // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in)\n get AdvanceX(): number { return this.internal.AdvanceX; };\n // float X0, Y0, X1, Y1; // Glyph corners\n get X0(): number { return this.internal.X0; };\n get Y0(): number { return this.internal.Y0; };\n get X1(): number { return this.internal.X1; };\n get Y1(): number { return this.internal.Y1; };\n // float U0, V0, U1, V1; // Texture coordinates\n get U0(): number { return this.internal.U0; };\n get V0(): number { return this.internal.V0; };\n get U1(): number { return this.internal.U1; };\n get V1(): number { return this.internal.V1; };\n}\n\nexport enum ImFontAtlasFlags\n{\n None = 0,\n NoPowerOfTwoHeight = 1 << 0, // Don't round the height to next power of two\n NoMouseCursors = 1 << 1, // Don't build software mouse cursors into the atlas\n}\n\n// Load and rasterize multiple TTF/OTF fonts into a same texture.\n// Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering.\n// We also add custom graphic data into the texture that serves for ImGui.\n// 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you.\n// 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data.\n// 3. Upload the pixels data into a texture within your graphics system.\n// 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture.\n// IMPORTANT: If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the ImFont is build (when calling GetTextData*** or Build()). We only copy the pointer, not the data.\nexport class ImFontAtlas\n{\n constructor(public readonly native: Bind.reference_ImFontAtlas) {}\n\n // IMGUI_API ImFontAtlas();\n // IMGUI_API ~ImFontAtlas();\n // IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg);\n // IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL);\n public AddFontDefault(font_cfg: Bind.interface_ImFontConfig | null = null): ImFont {\n return new ImFont(this.native.AddFontDefault(font_cfg));\n }\n // IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL);\n // IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after Build(). Set font_cfg->FontDataOwnedByAtlas to false to keep ownership.\n public AddFontFromMemoryTTF(data: ArrayBuffer, size_pixels: number, font_cfg: ImFontConfig | null = null, glyph_ranges: number | null = null): ImFont {\n return new ImFont(this.native.AddFontFromMemoryTTF(new Uint8Array(data), size_pixels, font_cfg && font_cfg.internal, glyph_ranges));\n }\n // IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp.\n // IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter.\n // IMGUI_API void ClearTexData(); // Clear the CPU-side texture data. Saves RAM once the texture has been copied to graphics memory.\n public ClearTexData(): void { this.native.ClearTexData(); }\n // IMGUI_API void ClearInputData(); // Clear the input TTF data (inc sizes, glyph ranges)\n public ClearInputData(): void { this.native.ClearInputData(); }\n // IMGUI_API void ClearFonts(); // Clear the ImGui-side font data (glyphs storage, UV coordinates)\n public ClearFonts(): void { this.native.ClearFonts(); }\n // IMGUI_API void Clear(); // Clear all\n public Clear(): void { this.native.Clear(); }\n\n // Build atlas, retrieve pixel data.\n // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID().\n // RGBA32 format is provided for convenience and compatibility, but note that unless you use CustomRect to draw color data, the RGB pixels emitted from Fonts will all be white (~75% of waste).\n // Pitch = Width * BytesPerPixels\n // IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions.\n public Build(): boolean { return this.native.Build(); }\n // IMGUI_API bool IsBuilt() { return Fonts.Size > 0 && (TexPixelsAlpha8 != NULL || TexPixelsRGBA32 != NULL); }\n public IsBuilt(): boolean { return this.native.IsBuilt(); }\n // IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel\n public GetTexDataAsAlpha8(): { pixels: Uint8ClampedArray, width: number, height: number, bytes_per_pixel: number } {\n return this.native.GetTexDataAsAlpha8();\n }\n // IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel\n public GetTexDataAsRGBA32(): { pixels: Uint8ClampedArray, width: number, height: number, bytes_per_pixel: number } {\n return this.native.GetTexDataAsRGBA32();\n }\n // void SetTexID(ImTextureID id) { TexID = id; }\n public SetTexID(id: ImTextureID | null): void { this.TexID = id; }\n\n //-------------------------------------------\n // Glyph Ranges\n //-------------------------------------------\n\n // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list)\n // NB: Make sure that your string are UTF-8 and NOT in your local code page. In C++11, you can create UTF-8 string literal using the u8\"Hello world\" syntax. See FAQ for details.\n // IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin\n GetGlyphRangesDefault(): number { return this.native.GetGlyphRangesDefault(); }\n // IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters\n GetGlyphRangesKorean(): number { return this.native.GetGlyphRangesKorean(); }\n // IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs\n GetGlyphRangesJapanese(): number { return this.native.GetGlyphRangesJapanese(); }\n // IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs\n GetGlyphRangesChineseFull(): number { return this.native.GetGlyphRangesChineseFull(); }\n // IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese\n GetGlyphRangesChineseSimplifiedCommon(): number { return this.native.GetGlyphRangesChineseSimplifiedCommon(); }\n // IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters\n GetGlyphRangesCyrillic(): number { return this.native.GetGlyphRangesCyrillic(); }\n // IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters\n GetGlyphRangesThai(): number { return this.native.GetGlyphRangesThai(); }\n // IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters\n GetGlyphRangesVietnamese(): number { return this.native.GetGlyphRangesVietnamese(); }\n\n // Helpers to build glyph ranges from text data. Feed your application strings/characters to it then call BuildRanges().\n // struct GlyphRangesBuilder\n // {\n // ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used)\n // GlyphRangesBuilder() { UsedChars.resize(0x10000 / 8); memset(UsedChars.Data, 0, 0x10000 / 8); }\n // bool GetBit(int n) const { return (UsedChars[n >> 3] & (1 << (n & 7))) != 0; }\n // void SetBit(int n) { UsedChars[n >> 3] |= 1 << (n & 7); } // Set bit 'c' in the array\n // void AddChar(ImWchar c) { SetBit(c); } // Add character\n // IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added)\n // IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault) to force add all of ASCII/Latin+Ext\n // IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges\n // };\n\n //-------------------------------------------\n // Custom Rectangles/Glyphs API\n //-------------------------------------------\n\n // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. After calling Build(), you can query the rectangle position and render your pixels.\n // You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs.\n // struct CustomRect\n // {\n // unsigned int ID; // Input // User ID. Use <0x10000 to map into a font glyph, >=0x10000 for other/internal/custom texture data.\n // unsigned short Width, Height; // Input // Desired rectangle dimension\n // unsigned short X, Y; // Output // Packed position in Atlas\n // float GlyphAdvanceX; // Input // For custom font glyphs only (ID<0x10000): glyph xadvance\n // ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph display offset\n // ImFont* Font; // Input // For custom font glyphs only (ID<0x10000): target font\n // CustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); Font = NULL; }\n // bool IsPacked() const { return X != 0xFFFF; }\n // };\n\n // IMGUI_API int AddCustomRectRegular(unsigned int id, int width, int height); // Id needs to be >= 0x10000. Id >= 0x80000000 are reserved for ImGui and ImDrawList\n // IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0,0)); // Id needs to be < 0x10000 to register a rectangle to map into a specific font.\n // IMGUI_API void CalcCustomRectUV(const CustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max);\n // const CustomRect* GetCustomRectByIndex(int index) const { if (index < 0) return NULL; return &CustomRects[index]; }\n\n //-------------------------------------------\n // Members\n //-------------------------------------------\n\n // bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert.\n get Locked(): boolean { return this.native.Locked; }\n set Locked(value: boolean) { this.native.Locked = value; }\n // ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_)\n get Flags(): ImFontAtlasFlags { return this.native.Flags; }\n set Flags(value: ImFontAtlasFlags) { this.native.Flags = value; }\n // ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure.\n get TexID(): ImTextureID | null {\n return ImGuiContext.getTexture(this.native.TexID);\n }\n set TexID(value: ImTextureID | null) {\n this.native.TexID = ImGuiContext.setTexture(value);\n }\n // int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height.\n get TexDesiredWidth(): number { return this.native.TexDesiredWidth; }\n set TexDesiredWidth(value: number) { this.native.TexDesiredWidth = value; }\n // int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1.\n get TexGlyphPadding(): number { return this.native.TexGlyphPadding; }\n set TexGlyphPadding(value: number) { this.native.TexGlyphPadding = value; }\n\n // [Internal]\n // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you.\n // unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight\n // unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4\n // int TexWidth; // Texture width calculated during Build().\n get TexWidth(): number { return this.native.TexWidth; }\n // int TexHeight; // Texture height calculated during Build().\n get TexHeight(): number { return this.native.TexHeight; }\n // ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight)\n get TexUvScale(): Readonly { return this.native.TexUvScale; }\n // ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel\n get TexUvWhitePixel(): Readonly { return this.native.TexUvWhitePixel; }\n // ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font.\n get Fonts(): ImVector {\n const fonts: ImVector = new ImVector();\n this.native.IterateFonts((font: Bind.reference_ImFont) => {\n fonts.push(new ImFont(font));\n });\n return fonts;\n }\n // ImVector CustomRects; // Rectangles for packing custom texture data into the atlas.\n // ImVector ConfigData; // Internal data\n // int CustomRectIds[1]; // Identifiers of custom texture rectangle used by ImFontAtlas/ImDrawList\n}\n\n// Font runtime data and rendering\n// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32().\nexport class ImFont\n{\n constructor(public readonly native: Bind.reference_ImFont) {}\n\n // Members: Hot ~62/78 bytes\n // float FontSize; // // Height of characters, set during loading (don't change after loading)\n get FontSize(): number { return this.native.FontSize; }\n // float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale()\n get Scale(): number { return this.native.Scale; }\n set Scale(value: number) { this.native.Scale = value; }\n // ImVec2 DisplayOffset; // = (0.f,1.f) // Offset font rendering by xx pixels\n get DisplayOffset(): Bind.interface_ImVec2 { return this.native.DisplayOffset; }\n // ImVector Glyphs; // // All glyphs.\n get Glyphs(): ImVector {\n const glyphs = new ImVector();\n this.native.IterateGlyphs((glyph: Bind.reference_ImFontGlyph): void => {\n glyphs.push(new ImFontGlyph(glyph)); // TODO: wrap native\n });\n return glyphs;\n }\n // ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI).\n // get IndexAdvanceX(): any { return this.native.IndexAdvanceX; }\n // ImVector IndexLookup; // // Sparse. Index glyphs by Unicode code-point.\n // get IndexLookup(): any { return this.native.IndexLookup; }\n // const ImFontGlyph* FallbackGlyph; // == FindGlyph(FontFallbackChar)\n get FallbackGlyph(): ImFontGlyph | null {\n const glyph = this.native.FallbackGlyph;\n return glyph && new ImFontGlyph(glyph);\n }\n set FallbackGlyph(value: ImFontGlyph | null) {\n this.native.FallbackGlyph = value && value.internal as Bind.reference_ImFontGlyph;\n }\n // float FallbackAdvanceX; // == FallbackGlyph->AdvanceX\n get FallbackAdvanceX(): number { return this.native.FallbackAdvanceX; }\n // ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found. Only set via SetFallbackChar()\n get FallbackChar(): number { return this.native.FallbackChar; }\n\n // Members: Cold ~18/26 bytes\n // short ConfigDataCount; // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont.\n get ConfigDataCount(): number { return this.ConfigData.length; }\n // ImFontConfig* ConfigData; // // Pointer within ContainerAtlas->ConfigData\n get ConfigData(): ImFontConfig[] {\n const cfg_data: ImFontConfig[] = [];\n this.native.IterateConfigData((cfg: Bind.interface_ImFontConfig): void => {\n cfg_data.push(new ImFontConfig(cfg));\n });\n return cfg_data;\n }\n // ImFontAtlas* ContainerAtlas; // // What we has been loaded into\n get ContainerAtlas(): ImFontAtlas | null { return null; }\n // float Ascent, Descent; // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize]\n get Ascent(): number { return this.native.Ascent; }\n get Descent(): number { return this.native.Descent; }\n // int MetricsTotalSurface;// // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs)\n get MetricsTotalSurface(): number { return this.native.MetricsTotalSurface; }\n\n // Methods\n // IMGUI_API ImFont();\n // IMGUI_API ~ImFont();\n // IMGUI_API void ClearOutputData();\n public ClearOutputData(): void { return this.native.ClearOutputData(); }\n // IMGUI_API void BuildLookupTable();\n public BuildLookupTable(): void { return this.native.BuildLookupTable(); }\n // IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const;\n public FindGlyph(c: number): Readonly | null {\n const glyph: Readonly | null = this.native.FindGlyph(c);\n return glyph && new ImFontGlyph(glyph);\n }\n // IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const;\n public FindGlyphNoFallback(c: number): ImFontGlyph | null {\n const glyph: Readonly | null = this.native.FindGlyphNoFallback(c);\n return glyph && new ImFontGlyph(glyph);\n }\n // IMGUI_API void SetFallbackChar(ImWchar c);\n public SetFallbackChar(c: number): void { return this.native.SetFallbackChar(c); }\n // float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; }\n public GetCharAdvance(c: number): number { return this.native.GetCharAdvance(c); }\n // bool IsLoaded() const { return ContainerAtlas != NULL; }\n public IsLoaded(): boolean { return this.native.IsLoaded(); }\n // const char* GetDebugName() const { return ConfigData ? ConfigData->Name : \"\"; }\n public GetDebugName(): string { return this.native.GetDebugName(); }\n\n // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable.\n // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable.\n // IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8\n public CalcTextSizeA(size: number, max_width: number, wrap_width: number, text_begin: string, text_end: number | null = null, remaining: Bind.ImScalar | null = null): Bind.interface_ImVec2 {\n return this.native.CalcTextSizeA(size, max_width, wrap_width, text_end !== null ? text_begin.substring(0, text_end) : text_begin, remaining, new ImVec2());\n }\n // IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const;\n public CalcWordWrapPositionA(scale: number, text: string, text_end: number | null = null, wrap_width: number): number {\n return this.native.CalcWordWrapPositionA(scale, text_end !== null ? text.substring(0, text_end) : text, wrap_width);\n }\n // IMGUI_API void RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, unsigned short c) const;\n public RenderChar(draw_list: ImDrawList, size: number, pos: Readonly, col: Bind.ImU32, c: Bind.ImWchar): void {\n this.native.RenderChar(draw_list.native, size, pos, col, c);\n }\n // IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const;\n public RenderText(draw_list: ImDrawList, size: number, pos: Readonly, col: Bind.ImU32, clip_rect: Readonly, text_begin: string, text_end: number | null = null, wrap_width: number = 0.0, cpu_fine_clip: boolean = false): void {}\n\n // [Internal]\n // IMGUI_API void GrowIndex(int new_size);\n // IMGUI_API void AddGlyph(ImWchar c, float x0, float y0, float x1, float y1, float u0, float v0, float u1, float v1, float advance_x);\n // IMGUI_API void AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst = true); // Makes 'dst' character/glyph points to 'src' character/glyph. Currently needs to be called AFTER fonts have been built.\n\n // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS\n // typedef ImFontGlyph Glyph; // OBSOLETE 1.52+\n // #endif\n}\n\n// a script version of BindImGui.ImGuiStyle with matching interface\nclass script_ImGuiStyle implements Bind.interface_ImGuiStyle {\n public Alpha: number = 1.0;\n public WindowPadding: ImVec2 = new ImVec2(8, 8);\n public WindowRounding: number = 7.0;\n public WindowBorderSize: number = 0.0;\n public WindowMinSize: ImVec2 = new ImVec2(32, 32);\n public WindowTitleAlign: ImVec2 = new ImVec2(0.0, 0.5);\n public WindowMenuButtonPosition: ImGuiDir = ImGuiDir.Left;\n public ChildRounding: number = 0.0;\n public ChildBorderSize: number = 1.0;\n public PopupRounding: number = 0.0;\n public PopupBorderSize: number = 1.0;\n public FramePadding: ImVec2 = new ImVec2(4, 3);\n public FrameRounding: number = 0.0;\n public FrameBorderSize: number = 0.0;\n public ItemSpacing: ImVec2 = new ImVec2(8, 4);\n public ItemInnerSpacing: ImVec2 = new ImVec2(4, 4);\n public TouchExtraPadding: ImVec2 = new ImVec2(0, 0);\n public IndentSpacing: number = 21.0;\n public ColumnsMinSpacing: number = 6.0;\n public ScrollbarSize: number = 16.0;\n public ScrollbarRounding: number = 9.0;\n public GrabMinSize: number = 10.0;\n public GrabRounding: number = 0.0;\n public TabRounding: number = 0.0;\n public TabBorderSize: number = 0.0;\n public ButtonTextAlign: ImVec2 = new ImVec2(0.5, 0.5);\n public SelectableTextAlign: ImVec2 = new ImVec2(0.0, 0.0);\n public DisplayWindowPadding: ImVec2 = new ImVec2(22, 22);\n public DisplaySafeAreaPadding: ImVec2 = new ImVec2(4, 4);\n public MouseCursorScale: number = 1;\n public AntiAliasedLines: boolean = true;\n public AntiAliasedFill: boolean = true;\n public CurveTessellationTol: number = 1.25;\n private Colors: ImVec4[] = [];\n public _getAt_Colors(index: number): Bind.interface_ImVec4 { return this.Colors[index]; }\n public _setAt_Colors(index: number, color: Readonly): boolean { this.Colors[index].Copy(color); return true; }\n\n constructor() {\n for (let i = 0; i < ImGuiCol.COUNT; ++i) {\n this.Colors[i] = new ImVec4();\n }\n const _this = new ImGuiStyle(this);\n const native = new bind.ImGuiStyle();\n const _that = new ImGuiStyle(native);\n _that.Copy(_this);\n bind.StyleColorsClassic(native);\n _this.Copy(_that);\n native.delete();\n }\n\n public ScaleAllSizes(scale_factor: number): void {\n const _this = new ImGuiStyle(this);\n const native = new bind.ImGuiStyle();\n const _that = new ImGuiStyle(native);\n _that.Copy(_this);\n native.ScaleAllSizes(scale_factor);\n _this.Copy(_that);\n native.delete();\n }\n}\n\nexport class ImGuiStyle\n{\n constructor(public readonly internal: Bind.interface_ImGuiStyle = new script_ImGuiStyle()) {}\n\n get Alpha(): number { return this.internal.Alpha; } set Alpha(value: number) { this.internal.Alpha = value; }\n get WindowPadding(): Bind.interface_ImVec2 { return this.internal.WindowPadding; }\n get WindowRounding(): number { return this.internal.WindowRounding; } set WindowRounding(value: number) { this.internal.WindowRounding = value; }\n get WindowBorderSize(): number { return this.internal.WindowBorderSize; } set WindowBorderSize(value: number) { this.internal.WindowBorderSize = value; }\n get WindowMinSize(): Bind.interface_ImVec2 { return this.internal.WindowMinSize; }\n get WindowTitleAlign(): Bind.interface_ImVec2 { return this.internal.WindowTitleAlign; }\n get WindowMenuButtonPosition(): ImGuiDir { return this.internal.WindowMenuButtonPosition; } set WindowMenuButtonPosition(value: ImGuiDir) { this.internal.WindowMenuButtonPosition = value; }\n get ChildRounding(): number { return this.internal.ChildRounding; } set ChildRounding(value: number) { this.internal.ChildRounding = value; }\n get ChildBorderSize(): number { return this.internal.ChildBorderSize; } set ChildBorderSize(value: number) { this.internal.ChildBorderSize = value; }\n get PopupRounding(): number { return this.internal.PopupRounding; } set PopupRounding(value: number) { this.internal.PopupRounding = value; }\n get PopupBorderSize(): number { return this.internal.PopupBorderSize; } set PopupBorderSize(value: number) { this.internal.PopupBorderSize = value; }\n get FramePadding(): Bind.interface_ImVec2 { return this.internal.FramePadding; }\n get FrameRounding(): number { return this.internal.FrameRounding; } set FrameRounding(value: number) { this.internal.FrameRounding = value; }\n get FrameBorderSize(): number { return this.internal.FrameBorderSize; } set FrameBorderSize(value: number) { this.internal.FrameBorderSize = value; }\n get ItemSpacing(): Bind.interface_ImVec2 { return this.internal.ItemSpacing; }\n get ItemInnerSpacing(): Bind.interface_ImVec2 { return this.internal.ItemInnerSpacing; }\n get TouchExtraPadding(): Bind.interface_ImVec2 { return this.internal.TouchExtraPadding; }\n get IndentSpacing(): number { return this.internal.IndentSpacing; } set IndentSpacing(value: number) { this.internal.IndentSpacing = value; }\n get ColumnsMinSpacing(): number { return this.internal.ColumnsMinSpacing; } set ColumnsMinSpacing(value: number) { this.internal.ColumnsMinSpacing = value; }\n get ScrollbarSize(): number { return this.internal.ScrollbarSize; } set ScrollbarSize(value: number) { this.internal.ScrollbarSize = value; }\n get ScrollbarRounding(): number { return this.internal.ScrollbarRounding; } set ScrollbarRounding(value: number) { this.internal.ScrollbarRounding = value; }\n get GrabMinSize(): number { return this.internal.GrabMinSize; } set GrabMinSize(value: number) { this.internal.GrabMinSize = value; }\n get GrabRounding(): number { return this.internal.GrabRounding; } set GrabRounding(value: number) { this.internal.GrabRounding = value; }\n get TabRounding(): number { return this.internal.TabRounding; } set TabRounding(value: number) { this.internal.TabRounding = value; }\n get TabBorderSize(): number { return this.internal.TabBorderSize; } set TabBorderSize(value: number) { this.internal.TabBorderSize = value; }\n get ButtonTextAlign(): Bind.interface_ImVec2 { return this.internal.ButtonTextAlign; }\n get SelectableTextAlign(): Bind.interface_ImVec2 { return this.internal.SelectableTextAlign; }\n get DisplayWindowPadding(): Bind.interface_ImVec2 { return this.internal.DisplayWindowPadding; }\n get DisplaySafeAreaPadding(): Bind.interface_ImVec2 { return this.internal.DisplaySafeAreaPadding; }\n get MouseCursorScale(): number { return this.internal.MouseCursorScale; } set MouseCursorScale(value: number) { this.internal.MouseCursorScale = value; }\n get AntiAliasedLines(): boolean { return this.internal.AntiAliasedLines; } set AntiAliasedLines(value: boolean) { this.internal.AntiAliasedLines = value; }\n get AntiAliasedFill(): boolean { return this.internal.AntiAliasedFill; } set AntiAliasedFill(value: boolean) { this.internal.AntiAliasedFill = value; }\n get CurveTessellationTol(): number { return this.internal.CurveTessellationTol; } set CurveTessellationTol(value: number) { this.internal.CurveTessellationTol = value; }\n public Colors: Bind.interface_ImVec4[] = new Proxy([], {\n get: (target: Bind.interface_ImVec4[], key: PropertyKey): number | Bind.interface_ImVec4 => {\n if (key === \"length\") { return ImGuiCol.COUNT; }\n return this.internal._getAt_Colors(Number(key));\n },\n set: (target: Bind.interface_ImVec4[], key: PropertyKey, value: Readonly): boolean => {\n return this.internal._setAt_Colors(Number(key), value);\n },\n });\n\n public Copy(other: Readonly): this {\n this.Alpha = other.Alpha;\n this.WindowPadding.Copy(other.WindowPadding);\n this.WindowRounding = other.WindowRounding;\n this.WindowBorderSize = other.WindowBorderSize;\n this.WindowMinSize.Copy(other.WindowMinSize);\n this.WindowTitleAlign.Copy(other.WindowTitleAlign);\n this.WindowMenuButtonPosition = other.WindowMenuButtonPosition;\n this.ChildRounding = other.ChildRounding;\n this.ChildBorderSize = other.ChildBorderSize;\n this.PopupRounding = other.PopupRounding;\n this.PopupBorderSize = other.PopupBorderSize;\n this.FramePadding.Copy(other.FramePadding);\n this.FrameRounding = other.FrameRounding;\n this.FrameBorderSize = other.FrameBorderSize;\n this.ItemSpacing.Copy(other.ItemSpacing);\n this.ItemInnerSpacing.Copy(other.ItemInnerSpacing);\n this.TouchExtraPadding.Copy(other.TouchExtraPadding);\n this.IndentSpacing = other.IndentSpacing;\n this.ColumnsMinSpacing = other.ColumnsMinSpacing;\n this.ScrollbarSize = other.ScrollbarSize;\n this.ScrollbarRounding = other.ScrollbarRounding;\n this.GrabMinSize = other.GrabMinSize;\n this.GrabRounding = other.GrabRounding;\n this.TabRounding = other.TabRounding;\n this.TabBorderSize = other.TabBorderSize;\n this.ButtonTextAlign.Copy(other.ButtonTextAlign);\n this.DisplayWindowPadding.Copy(other.DisplayWindowPadding);\n this.DisplaySafeAreaPadding.Copy(other.DisplaySafeAreaPadding);\n this.MouseCursorScale = other.MouseCursorScale;\n this.AntiAliasedLines = other.AntiAliasedLines;\n this.AntiAliasedFill = other.AntiAliasedFill;\n this.CurveTessellationTol = other.CurveTessellationTol;\n for (let i = 0; i < ImGuiCol.COUNT; ++i) {\n this.Colors[i].Copy(other.Colors[i]);\n }\n return this;\n }\n\n public ScaleAllSizes(scale_factor: number): void { this.internal.ScaleAllSizes(scale_factor); }\n}\n\n// This is where your app communicate with Dear ImGui. Access via ImGui::GetIO().\n// Read 'Programmer guide' section in .cpp file for general usage.\nexport class ImGuiIO\n{\n constructor(public readonly native: Bind.reference_ImGuiIO) {}\n\n //------------------------------------------------------------------\n // Settings (fill once) // Default value:\n //------------------------------------------------------------------\n\n // ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc.\n get ConfigFlags(): ImGuiConfigFlags { return this.native.ConfigFlags; }\n set ConfigFlags(value: ImGuiConfigFlags) { this.native.ConfigFlags = value; }\n // ImGuiBackendFlags BackendFlags; // = 0 // Set ImGuiBackendFlags_ enum. Set by imgui_impl_xxx files or custom back-end to communicate features supported by the back-end.\n get BackendFlags(): ImGuiBackendFlags { return this.native.BackendFlags; }\n set BackendFlags(value: ImGuiBackendFlags) { this.native.BackendFlags = value; }\n // ImVec2 DisplaySize; // // Display size, in pixels. For clamping windows positions.\n get DisplaySize(): Bind.reference_ImVec2 { return this.native.DisplaySize; }\n // float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds.\n get DeltaTime(): number { return this.native.DeltaTime; }\n set DeltaTime(value: number) { this.native.DeltaTime = value; }\n // float IniSavingRate; // = 5.0f // Maximum time between saving positions/sizes to .ini file, in seconds.\n get IniSavingRate(): number { return this.native.IniSavingRate; }\n set IniSavingRate(value: number) { this.native.IniSavingRate = value; }\n // const char* IniFilename; // = \"imgui.ini\" // Path to .ini file. NULL to disable .ini saving.\n get IniFilename(): string { return this.native.IniFilename; }\n set IniFilename(value: string) { this.native.IniFilename = value; }\n // const char* LogFilename; // = \"imgui_log.txt\" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified).\n get LogFilename(): string { return this.native.LogFilename; }\n set LogFilename(value: string) { this.native.LogFilename = value; }\n // float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds.\n get MouseDoubleClickTime(): number { return this.native.MouseDoubleClickTime; }\n set MouseDoubleClickTime(value: number) { this.native.MouseDoubleClickTime = value; }\n // float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels.\n get MouseDoubleClickMaxDist(): number { return this.native.MouseDoubleClickMaxDist; }\n set MouseDoubleClickMaxDist(value: number) { this.native.MouseDoubleClickMaxDist = value; }\n // float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging\n get MouseDragThreshold(): number { return this.native.MouseDragThreshold; }\n set MouseDragThreshold(value: number) { this.native.MouseDragThreshold = value; }\n // int KeyMap[ImGuiKey_COUNT]; // // Map of indices into the KeysDown[512] entries array\n public KeyMap: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiKey.COUNT; }\n return this.native._getAt_KeyMap(Number(key));\n },\n set: (target: number[], key: PropertyKey, value: number): boolean => {\n return this.native._setAt_KeyMap(Number(key), value);\n },\n });\n // float KeyRepeatDelay; // = 0.250f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.).\n get KeyRepeatDelay(): number { return this.native.KeyRepeatDelay; }\n set KeyRepeatDelay(value: number) { this.native.KeyRepeatDelay = value; }\n // float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds.\n get KeyRepeatRate(): number { return this.native.KeyRepeatRate; }\n set KeyRepeatRate(value: number) { this.native.KeyRepeatRate = value; }\n // void* UserData; // = NULL // Store your own data for retrieval by callbacks.\n get UserData(): any { return this.native.UserData; }\n set UserData(value: any) { this.native.UserData = value; }\n\n // ImFontAtlas* Fonts; // // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array.\n get Fonts(): ImFontAtlas { return new ImFontAtlas(this.native.Fonts); }\n // float FontGlobalScale; // = 1.0f // Global scale all fonts\n get FontGlobalScale(): number { return this.native.FontGlobalScale; }\n set FontGlobalScale(value: number) { this.native.FontGlobalScale = value; }\n // bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel.\n get FontAllowUserScaling(): boolean { return this.native.FontAllowUserScaling; }\n set FontAllowUserScaling(value: boolean) { this.native.FontAllowUserScaling = value; }\n // ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0].\n get FontDefault(): ImFont | null {\n const font: Bind.reference_ImFont | null = this.native.FontDefault;\n return (font === null) ? null : new ImFont(font);\n }\n set FontDefault(value: ImFont | null) {\n this.native.FontDefault = value && value.native;\n }\n // ImVec2 DisplayFramebufferScale; // = (1.0f,1.0f) // For retina display or other situations where window coordinates are different from framebuffer coordinates. User storage only, presently not used by ImGui.\n get DisplayFramebufferScale(): Bind.reference_ImVec2 { return this.native.DisplayFramebufferScale; }\n\n // Miscellaneous configuration options\n // bool OptMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl\n get ConfigMacOSXBehaviors(): boolean { return this.native.ConfigMacOSXBehaviors; }\n set ConfigMacOSXBehaviors(value: boolean) { this.native.ConfigMacOSXBehaviors = value; }\n // bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor, for users who consider it annoying.\n get ConfigInputTextCursorBlink(): boolean { return this.native.ConfigInputTextCursorBlink; }\n set ConfigInputTextCursorBlink(value: boolean) { this.native.ConfigInputTextCursorBlink = value; }\n // bool ConfigWindowsResizeFromEdges; // = false // [BETA] Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be the ImGuiWindowFlags_ResizeFromAnySide flag)\n get ConfigWindowsResizeFromEdges(): boolean { return this.native.ConfigWindowsResizeFromEdges; }\n set ConfigWindowsResizeFromEdges(value: boolean) { this.native.ConfigWindowsResizeFromEdges = value; }\n // bool ConfigWindowsMoveFromTitleBarOnly;// = false // [BETA] Set to true to only allow moving windows when clicked+dragged from the title bar. Windows without a title bar are not affected.\n get ConfigWindowsMoveFromTitleBarOnly(): boolean { return this.native.ConfigWindowsMoveFromTitleBarOnly; }\n set ConfigWindowsMoveFromTitleBarOnly(value: boolean) { this.native.ConfigWindowsMoveFromTitleBarOnly = value; }\n\n //------------------------------------------------------------------\n // Settings (User Functions)\n //------------------------------------------------------------------\n\n // Optional: Platform/Renderer back-end name (informational only! will be displayed in About Window) + User data for back-end/wrappers to store their own stuff.\n // const char* BackendPlatformName; // = NULL\n get BackendPlatformName(): string | null { return this.native.BackendPlatformName; }\n set BackendPlatformName(value: string | null) { this.native.BackendPlatformName = value; }\n // const char* BackendRendererName; // = NULL\n get BackendRendererName(): string | null { return this.native.BackendRendererName; }\n set BackendRendererName(value: string | null) { this.native.BackendRendererName = value; }\n // void* BackendPlatformUserData; // = NULL\n get BackendPlatformUserData(): string | null { return this.native.BackendPlatformUserData; }\n set BackendPlatformUserData(value: string | null) { this.native.BackendPlatformUserData = value; }\n // void* BackendRendererUserData; // = NULL\n get BackendRendererUserData(): string | null { return this.native.BackendRendererUserData; }\n set BackendRendererUserData(value: string | null) { this.native.BackendRendererUserData = value; }\n // void* BackendLanguageUserData; // = NULL\n get BackendLanguageUserData(): string | null { return this.native.BackendLanguageUserData; }\n set BackendLanguageUserData(value: string | null) { this.native.BackendLanguageUserData = value; }\n\n // Optional: access OS clipboard\n // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures)\n // const char* (*GetClipboardTextFn)(void* user_data);\n get GetClipboardTextFn(): ((user_data: any) => string) | null { return this.native.GetClipboardTextFn; }\n set GetClipboardTextFn(value: ((user_data: any) => string) | null) { this.native.GetClipboardTextFn = value; }\n // void (*SetClipboardTextFn)(void* user_data, const char* text);\n get SetClipboardTextFn(): ((user_data: any, text: string) => void) | null { return this.native.SetClipboardTextFn; }\n set SetClipboardTextFn(value: ((user_data: any, text: string) => void) | null) { this.native.SetClipboardTextFn = value; }\n // void* ClipboardUserData;\n get ClipboardUserData(): any { return this.native.ClipboardUserData; }\n set ClipboardUserData(value: any) { this.native.ClipboardUserData = value; }\n\n // Optional: override memory allocations. MemFreeFn() may be called with a NULL pointer.\n // (default to posix malloc/free)\n // void* (*MemAllocFn)(size_t sz);\n // void (*MemFreeFn)(void* ptr);\n\n // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME in Windows)\n // (default to use native imm32 api on Windows)\n // void (*ImeSetInputScreenPosFn)(int x, int y);\n // void* ImeWindowHandle; // (Windows) Set this to your HWND to get automatic IME cursor positioning.\n\n //------------------------------------------------------------------\n // Input - Fill before calling NewFrame()\n //------------------------------------------------------------------\n\n // ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX,-FLT_MAX) if mouse is unavailable (on another screen, etc.)\n get MousePos(): Bind.reference_ImVec2 { return this.native.MousePos; }\n // bool MouseDown[5]; // Mouse buttons: left, right, middle + extras. ImGui itself mostly only uses left button (BeginPopupContext** are using right button). Others buttons allows us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API.\n public MouseDown: boolean[] = new Proxy([], {\n get: (target: boolean[], key: PropertyKey): number | boolean => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseDown(Number(key));\n },\n set: (target: boolean[], key: PropertyKey, value: boolean): boolean => {\n return this.native._setAt_MouseDown(Number(key), value);\n },\n });\n // float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text.\n public get MouseWheel(): number { return this.native.MouseWheel; }\n public set MouseWheel(value: number) { this.native.MouseWheel = value; }\n // float MouseWheelH; // Mouse wheel (Horizontal). Most users don't have a mouse with an horizontal wheel, may not be filled by all back-ends.\n public get MouseWheelH(): number { return this.native.MouseWheelH; }\n public set MouseWheelH(value: number) { this.native.MouseWheelH = value; }\n // bool MouseDrawCursor; // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor).\n get MouseDrawCursor(): boolean { return this.native.MouseDrawCursor; } set MouseDrawCursor(value: boolean) { this.native.MouseDrawCursor = value; }\n // bool KeyCtrl; // Keyboard modifier pressed: Control\n get KeyCtrl(): boolean { return this.native.KeyCtrl; } set KeyCtrl(value: boolean) { this.native.KeyCtrl = value; }\n // bool KeyShift; // Keyboard modifier pressed: Shift\n get KeyShift(): boolean { return this.native.KeyShift; } set KeyShift(value: boolean) { this.native.KeyShift = value; }\n // bool KeyAlt; // Keyboard modifier pressed: Alt\n get KeyAlt(): boolean { return this.native.KeyAlt; } set KeyAlt(value: boolean) { this.native.KeyAlt = value; }\n // bool KeySuper; // Keyboard modifier pressed: Cmd/Super/Windows\n get KeySuper(): boolean { return this.native.KeySuper; } set KeySuper(value: boolean) { this.native.KeySuper = value; }\n // bool KeysDown[512]; // Keyboard keys that are pressed (in whatever storage order you naturally have access to keyboard data)\n public KeysDown: boolean[] = new Proxy([], {\n get: (target: boolean[], key: PropertyKey): number | boolean => {\n if (key === \"length\") { return 512; }\n return this.native._getAt_KeysDown(Number(key));\n },\n set: (target: boolean[], key: PropertyKey, value: boolean): boolean => {\n return this.native._setAt_KeysDown(Number(key), value);\n },\n });\n // float NavInputs[ImGuiNavInput_COUNT]; // Gamepad inputs (keyboard keys will be auto-mapped and be written here by ImGui::NewFrame)\n public NavInputs: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiNavInput.COUNT; }\n return this.native._getAt_NavInputs(Number(key));\n },\n set: (target: number[], key: PropertyKey, value: number): boolean => {\n return this.native._setAt_NavInputs(Number(key), value);\n },\n });\n\n // Functions\n // IMGUI_API void AddInputCharacter(ImWchar c); // Add new character into InputCharacters[]\n public AddInputCharacter(c: number): void { this.native.AddInputCharacter(c); }\n // IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Add new characters into InputCharacters[] from an UTF-8 string\n public AddInputCharactersUTF8(utf8_chars: string): void { this.native.AddInputCharactersUTF8(utf8_chars); }\n // inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Clear the text input buffer manually\n public ClearInputCharacters(): void { this.native.ClearInputCharacters(); }\n\n //------------------------------------------------------------------\n // Output - Retrieve after calling NewFrame()\n //------------------------------------------------------------------\n\n // bool WantCaptureMouse; // When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. This is set by ImGui when it wants to use your mouse (e.g. unclicked mouse is hovering a window, or a widget is active).\n get WantCaptureMouse(): boolean { return this.native.WantCaptureMouse; } set WantCaptureMouse(value: boolean) { this.native.WantCaptureMouse = value; }\n // bool WantCaptureKeyboard; // When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. This is set by ImGui when it wants to use your keyboard inputs.\n get WantCaptureKeyboard(): boolean { return this.native.WantCaptureKeyboard; } set WantCaptureKeyboard(value: boolean) { this.native.WantCaptureKeyboard = value; }\n // bool WantTextInput; // Mobile/console: when io.WantTextInput is true, you may display an on-screen keyboard. This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active).\n get WantTextInput(): boolean { return this.native.WantTextInput; } set WantTextInput(value: boolean) { this.native.WantTextInput = value; }\n // bool WantSetMousePos; // [BETA-NAV] MousePos has been altered, back-end should reposition mouse on next frame. Set only when 'NavMovesMouse=true'.\n get WantSetMousePos(): boolean { return this.native.WantSetMousePos; } set WantSetMousePos(value: boolean) { this.native.WantSetMousePos = value; }\n // bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. IMPORTANT: You need to clear io.WantSaveIniSettings yourself.\n get WantSaveIniSettings(): boolean { return this.native.WantSaveIniSettings; } set WantSaveIniSettings(value: boolean) { this.native.WantSaveIniSettings = value; }\n // bool NavActive; // Directional navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag.\n get NavActive(): boolean { return this.native.NavActive; } set NavActive(value: boolean) { this.native.NavActive = value; }\n // bool NavVisible; // Directional navigation is visible and allowed (will handle ImGuiKey_NavXXX events).\n get NavVisible(): boolean { return this.native.NavVisible; } set NavVisible(value: boolean) { this.native.NavVisible = value; }\n // float Framerate; // Application framerate estimation, in frame per second. Solely for convenience. Rolling average estimation based on IO.DeltaTime over 120 frames\n get Framerate(): number { return this.native.Framerate; }\n // int MetricsRenderVertices; // Vertices output during last call to Render()\n get MetricsRenderVertices(): number { return this.native.MetricsRenderVertices; }\n // int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3\n get MetricsRenderIndices(): number { return this.native.MetricsRenderIndices; }\n // int MetricsRenderWindows; // Number of visible windows\n get MetricsRenderWindows(): number { return this.native.MetricsRenderWindows; }\n // int MetricsActiveWindows; // Number of visible root windows (exclude child windows)\n get MetricsActiveWindows(): number { return this.native.MetricsActiveWindows; }\n // int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts.\n get MetricsActiveAllocations(): number { return this.native.MetricsActiveAllocations; }\n // ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta.\n get MouseDelta(): Readonly { return this.native.MouseDelta; }\n\n //------------------------------------------------------------------\n // [Internal] ImGui will maintain those fields. Forward compatibility not guaranteed!\n //------------------------------------------------------------------\n\n // ImVec2 MousePosPrev; // Previous mouse position temporary storage (nb: not for public use, set to MousePos in NewFrame())\n // ImVec2 MouseClickedPos[5]; // Position at time of clicking\n public MouseClickedPos: Array> = new Proxy([], {\n get: (target: Array>, key: PropertyKey): number | Readonly => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseClickedPos(Number(key));\n },\n });\n // float MouseClickedTime[5]; // Time of last click (used to figure out double-click)\n // bool MouseClicked[5]; // Mouse button went from !Down to Down\n // bool MouseDoubleClicked[5]; // Has mouse button been double-clicked?\n // bool MouseReleased[5]; // Mouse button went from Down to !Down\n // bool MouseDownOwned[5]; // Track if button was clicked inside a window. We don't request mouse capture from the application if click started outside ImGui bounds.\n // float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked)\n public MouseDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseDownDuration(Number(key));\n },\n });\n // float MouseDownDurationPrev[5]; // Previous time the mouse button has been down\n // ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point\n // float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point\n // float KeysDownDuration[512]; // Duration the keyboard key has been down (0.0f == just pressed)\n public KeysDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return 512; }\n return this.native._getAt_KeysDownDuration(Number(key));\n },\n });\n // float KeysDownDurationPrev[512]; // Previous duration the key has been down\n // float NavInputsDownDuration[ImGuiNavInput_COUNT];\n public NavInputsDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiNavInput.COUNT; }\n return this.native._getAt_NavInputsDownDuration(Number(key));\n },\n });\n // float NavInputsDownDurationPrev[ImGuiNavInput_COUNT];\n\n // IMGUI_API ImGuiIO();\n}\n\nconst _texturesById: Array = [];\n\n// Context creation and access, if you want to use multiple context, share context between modules (e.g. DLL).\n// All contexts share a same ImFontAtlas by default. If you want different font atlas, you can new() them and overwrite the GetIO().Fonts variable of an ImGui context.\n// All those functions are not reliant on the current context.\nexport class ImGuiContext {\n public static current_ctx: ImGuiContext | null = null;\n public static getTexture(index: number): ImTextureID | null {\n return _texturesById[index] || null;\n }\n public static setTexture(texture: ImTextureID | null): number {\n let index = _texturesById.indexOf(texture);\n if (index === -1) {\n for (let i = 0; i < _texturesById.length; ++i) {\n if (_texturesById[i] === null) {\n _texturesById[i] = texture;\n return i;\n }\n }\n index = _texturesById.length;\n _texturesById.push(texture);\n }\n return index;\n }\n\n constructor(public readonly native: Bind.WrapImGuiContext) {}\n}\n// IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL);\nexport function CreateContext(shared_font_atlas: ImFontAtlas | null = null): ImGuiContext | null {\n const ctx: ImGuiContext = new ImGuiContext(bind.CreateContext(shared_font_atlas ? shared_font_atlas.native : null));\n if (ImGuiContext.current_ctx === null) {\n ImGuiContext.current_ctx = ctx;\n }\n return ctx;\n}\n// IMGUI_API void DestroyContext(ImGuiContext* ctx = NULL); // NULL = Destroy current context\nexport function DestroyContext(ctx: ImGuiContext | null = null): void {\n if (ctx === null) {\n ctx = ImGuiContext.current_ctx;\n ImGuiContext.current_ctx = null;\n }\n bind.DestroyContext((ctx === null) ? null : ctx.native);\n}\n// IMGUI_API ImGuiContext* GetCurrentContext();\nexport function GetCurrentContext(): ImGuiContext | null {\n // const ctx_native: BindImGui.ImGuiContext | null = bind.GetCurrentContext();\n return ImGuiContext.current_ctx;\n}\n// IMGUI_API void SetCurrentContext(ImGuiContext* ctx);\nexport function SetCurrentContext(ctx: ImGuiContext | null): void {\n bind.SetCurrentContext((ctx === null) ? null : ctx.native);\n ImGuiContext.current_ctx = ctx;\n}\n\n// IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert);\nexport function DebugCheckVersionAndDataLayout(version_str: string, sz_io: number, sz_style: number, sz_vec2: number, sz_vec4: number, sz_draw_vert: number, sz_draw_idx: number): boolean {\n return bind.DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx);\n}\n\n// Main\n// IMGUI_API ImGuiIO& GetIO();\nexport function GetIO(): ImGuiIO { return new ImGuiIO(bind.GetIO()); }\n// IMGUI_API ImGuiStyle& GetStyle();\nexport function GetStyle(): ImGuiStyle { return new ImGuiStyle(bind.GetStyle()); }\n// IMGUI_API void NewFrame(); // start a new ImGui frame, you can submit any command from this point until Render()/EndFrame().\nexport function NewFrame(): void { bind.NewFrame(); }\n// IMGUI_API void EndFrame(); // ends the ImGui frame. automatically called by Render(), so most likely don't need to ever call that yourself directly. If you don't need to render you may call EndFrame() but you'll have wasted CPU already. If you don't need to render, better to not create any imgui windows instead!\nexport function EndFrame(): void { bind.EndFrame(); }\n// IMGUI_API void Render(); // ends the ImGui frame, finalize the draw data, then call your io.RenderDrawListsFn() function if set.\nexport function Render(): void { bind.Render(); }\n// IMGUI_API ImDrawData* GetDrawData(); // same value as passed to your io.RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame()\nexport function GetDrawData(): ImDrawData | null {\n const draw_data: Bind.reference_ImDrawData | null = bind.GetDrawData();\n return (draw_data === null) ? null : new ImDrawData(draw_data);\n}\n\n// Demo, Debug, Informations\n// IMGUI_API void ShowDemoWindow(bool* p_open = NULL); // create demo/test window (previously called ShowTestWindow). demonstrate most ImGui features. call this to learn about the library! try to make it always available in your application!\nexport function ShowDemoWindow(p_open: Bind.ImScalar | null = null): void { bind.ShowDemoWindow(p_open); }\n// IMGUI_API void ShowAboutWindow(bool* p_open = NULL); // create about window. display Dear ImGui version, credits and build/system information.\nexport function ShowAboutWindow(p_open: Bind.ImScalar | Bind.ImAccess | null = null): void {\n if (p_open === null) {\n bind.ShowAboutWindow(null);\n } else if (Array.isArray(p_open)) {\n bind.ShowAboutWindow(p_open);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n bind.ShowAboutWindow(ref_open);\n p_open(ref_open[0]);\n }\n}\n// IMGUI_API void ShowMetricsWindow(bool* p_open = NULL); // create metrics window. display ImGui internals: draw commands (with individual draw calls and vertices), window list, basic internal state, etc.\nexport function ShowMetricsWindow(p_open: Bind.ImScalar | Bind.ImAccess | null = null): void {\n if (p_open === null) {\n bind.ShowMetricsWindow(null);\n } else if (Array.isArray(p_open)) {\n bind.ShowMetricsWindow(p_open);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n bind.ShowMetricsWindow(ref_open);\n p_open(ref_open[0]);\n }\n}\n// IMGUI_API void ShowStyleEditor(ImGuiStyle* ref = NULL); // add style editor block (not a window). you can pass in a reference ImGuiStyle structure to compare to, revert to and save to (else it uses the default style)\nexport function ShowStyleEditor(ref: ImGuiStyle | null = null): void {\n if (ref === null) {\n bind.ShowStyleEditor(null);\n } else if (ref.internal instanceof bind.ImGuiStyle) {\n bind.ShowStyleEditor(ref.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(ref);\n bind.ShowStyleEditor(native);\n ref.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API bool ShowStyleSelector(const char* label);\nexport function ShowStyleSelector(label: string): boolean { return bind.ShowStyleSelector(label); }\n// IMGUI_API void ShowFontSelector(const char* label);\nexport function ShowFontSelector(label: string): void { bind.ShowFontSelector(label); }\n// IMGUI_API void ShowUserGuide(); // add basic help/info block (not a window): how to manipulate ImGui as a end-user (mouse/keyboard controls).\nexport function ShowUserGuide(): void { bind.ShowUserGuide(); }\n// IMGUI_API const char* GetVersion();\nexport function GetVersion(): string { return bind.GetVersion(); }\n\n// Styles\n// IMGUI_API void StyleColorsClassic(ImGuiStyle* dst = NULL);\nexport function StyleColorsClassic(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsClassic(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsClassic(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsClassic(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API void StyleColorsDark(ImGuiStyle* dst = NULL);\nexport function StyleColorsDark(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsDark(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsDark(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsDark(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API void StyleColorsLight(ImGuiStyle* dst = NULL);\nexport function StyleColorsLight(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsLight(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsLight(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsLight(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n\n// Window\n// IMGUI_API bool Begin(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); // push window to the stack and start appending to it. see .cpp for details. return false when window is collapsed, so you can early out in your code. 'bool* p_open' creates a widget on the upper-right to close the window (which sets your bool to false).\nexport function Begin(name: string, open: Bind.ImScalar | Bind.ImAccess | null = null, flags: ImGuiWindowFlags = 0): boolean {\n if (open === null) {\n return bind.Begin(name, null, flags);\n } else if (Array.isArray(open)) {\n return bind.Begin(name, open, flags);\n } else {\n const ref_open: Bind.ImScalar = [ open() ];\n const opened: boolean = bind.Begin(name, ref_open, flags);\n open(ref_open[0]);\n return opened;\n }\n}\n// IMGUI_API void End(); // finish appending to current window, pop it off the window stack.\nexport function End(): void { bind.End(); }\n// IMGUI_API bool BeginChild(const char* str_id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags extra_flags = 0); // begin a scrolling region. size==0.0f: use remaining window size, size<0.0f: use remaining window size minus abs(size). size>0.0f: fixed size. each axis can use a different mode, e.g. ImVec2(0,400).\n// IMGUI_API bool BeginChild(ImGuiID id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags extra_flags = 0); // \"\nexport function BeginChild(id: string | Bind.ImGuiID, size: Readonly = ImVec2.ZERO, border: boolean = false, extra_flags: ImGuiWindowFlags = 0): boolean {\n return bind.BeginChild(id, size, border, extra_flags);\n}\n// IMGUI_API void EndChild();\nexport function EndChild(): void { bind.EndChild(); }\n// IMGUI_API ImVec2 GetContentRegionMax(); // current content boundaries (typically window boundaries including scrolling, or current column boundaries), in windows coordinates\nexport function GetContentRegionMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetContentRegionMax(out);\n}\n// IMGUI_API ImVec2 GetContentRegionAvail(); // == GetContentRegionMax() - GetCursorPos()\nexport function GetContentRegionAvail(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetContentRegionAvail(out);\n}\n// IMGUI_API ImVec2 GetWindowContentRegionMin(); // content boundaries min (roughly (0,0)-Scroll), in window coordinates\nexport function GetWindowContentRegionMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowContentRegionMin(out);\n}\n// IMGUI_API ImVec2 GetWindowContentRegionMax(); // content boundaries max (roughly (0,0)+Size-Scroll) where Size can be override with SetNextWindowContentSize(), in window coordinates\nexport function GetWindowContentRegionMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowContentRegionMax(out);\n}\n// IMGUI_API float GetWindowContentRegionWidth(); //\nexport function GetWindowContentRegionWidth(): number { return bind.GetWindowContentRegionWidth(); }\n// IMGUI_API ImDrawList* GetWindowDrawList(); // get rendering command-list if you want to append your own draw primitives\nexport function GetWindowDrawList(): ImDrawList {\n return new ImDrawList(bind.GetWindowDrawList());\n}\n// IMGUI_API ImVec2 GetWindowPos(); // get current window position in screen space (useful if you want to do your own drawing via the DrawList api)\nexport function GetWindowPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowPos(out);\n}\n// IMGUI_API ImVec2 GetWindowSize(); // get current window size\nexport function GetWindowSize(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowSize(out);\n}\n// IMGUI_API float GetWindowWidth();\nexport function GetWindowWidth(): number { return bind.GetWindowWidth(); }\n// IMGUI_API float GetWindowHeight();\nexport function GetWindowHeight(): number { return bind.GetWindowHeight(); }\n// IMGUI_API bool IsWindowCollapsed();\nexport function IsWindowCollapsed(): boolean { return bind.IsWindowCollapsed(); }\n// IMGUI_API bool IsWindowAppearing();\nexport function IsWindowAppearing(): boolean { return bind.IsWindowAppearing(); }\n// IMGUI_API void SetWindowFontScale(float scale); // per-window font scale. Adjust IO.FontGlobalScale if you want to scale all windows\nexport function SetWindowFontScale(scale: number): void { bind.SetWindowFontScale(scale); }\n\n// IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivot = ImVec2(0,0)); // set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc.\nexport function SetNextWindowPos(pos: Readonly, cond: ImGuiCond = 0, pivot: Readonly = ImVec2.ZERO): void {\n bind.SetNextWindowPos(pos, cond, pivot);\n}\n// IMGUI_API void SetNextWindowSize(const ImVec2& size, ImGuiCond cond = 0); // set next window size. set axis to 0.0f to force an auto-fit on this axis. call before Begin()\nexport function SetNextWindowSize(pos: Readonly, cond: ImGuiCond = 0): void {\n bind.SetNextWindowSize(pos, cond);\n}\n// IMGUI_API void SetNextWindowSizeConstraints(const ImVec2& size_min, const ImVec2& size_max, ImGuiSizeConstraintCallback custom_callback = NULL, void* custom_callback_data = NULL); // set next window size limits. use -1,-1 on either X/Y axis to preserve the current size. Use callback to apply non-trivial programmatic constraints.\nexport function SetNextWindowSizeConstraints(size_min: Readonly, size_max: Readonly, custom_callback: ImGuiSizeConstraintCallback | null = null, custom_callback_data: any = null): void {\n if (custom_callback) {\n bind.SetNextWindowSizeConstraints(size_min, size_max, (data: Bind.reference_ImGuiSizeCallbackData): void => {\n custom_callback(new ImGuiSizeCallbackData(data, custom_callback_data));\n }, null);\n } else {\n bind.SetNextWindowSizeConstraints(size_min, size_max, null, null);\n }\n}\n// IMGUI_API void SetNextWindowContentSize(const ImVec2& size); // set next window content size (~ enforce the range of scrollbars). not including window decorations (title bar, menu bar, etc.). set an axis to 0.0f to leave it automatic. call before Begin()\nexport function SetNextWindowContentSize(size: Readonly): void {\n bind.SetNextWindowContentSize(size);\n}\n// IMGUI_API void SetNextWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // set next window collapsed state. call before Begin()\nexport function SetNextWindowCollapsed(collapsed: boolean, cond: ImGuiCond = 0): void {\n bind.SetNextWindowCollapsed(collapsed, cond);\n}\n// IMGUI_API void SetNextWindowFocus(); // set next window to be focused / front-most. call before Begin()\nexport function SetNextWindowFocus(): void { bind.SetNextWindowFocus(); }\n// IMGUI_API void SetNextWindowBgAlpha(float alpha); // set next window background color alpha. helper to easily modify ImGuiCol_WindowBg/ChildBg/PopupBg.\nexport function SetNextWindowBgAlpha(alpha: number): void { bind.SetNextWindowBgAlpha(alpha); }\n// IMGUI_API void SetWindowPos(const ImVec2& pos, ImGuiCond cond = 0); // (not recommended) set current window position - call within Begin()/End(). prefer using SetNextWindowPos(), as this may incur tearing and side-effects.\n// IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); // (not recommended) set current window size - call within Begin()/End(). set to ImVec2(0,0) to force an auto-fit. prefer using SetNextWindowSize(), as this may incur tearing and minor side-effects.\n// IMGUI_API void SetWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // (not recommended) set current window collapsed state. prefer using SetNextWindowCollapsed().\n// IMGUI_API void SetWindowFocus(); // (not recommended) set current window to be focused / front-most. prefer using SetNextWindowFocus().\n// IMGUI_API void SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond = 0); // set named window position.\n// IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); // set named window size. set axis to 0.0f to force an auto-fit on this axis.\n// IMGUI_API void SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond = 0); // set named window collapsed state\n// IMGUI_API void SetWindowFocus(const char* name); // set named window to be focused / front-most. use NULL to remove focus.\nexport function SetWindowPos(name_or_pos: string | Readonly, pos_or_cond: Readonly | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_pos) === \"string\") {\n bind.SetWindowNamePos(name_or_pos, pos_or_cond as Readonly, cond);\n return;\n } else {\n bind.SetWindowPos(name_or_pos, pos_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowSize(name_or_size: string | Readonly, size_or_cond: Readonly | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_size) === \"string\") {\n bind.SetWindowNamePos(name_or_size, size_or_cond as Readonly, cond);\n } else {\n bind.SetWindowSize(name_or_size, size_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowCollapsed(name_or_collapsed: string | boolean, collapsed_or_cond: boolean | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_collapsed) === \"string\") {\n bind.SetWindowNameCollapsed(name_or_collapsed, collapsed_or_cond as boolean, cond);\n } else {\n bind.SetWindowCollapsed(name_or_collapsed, collapsed_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowFocus(name?: string): void {\n if (typeof(name) === \"string\") {\n bind.SetWindowNameFocus(name);\n } else {\n bind.SetWindowFocus();\n }\n}\n\n// IMGUI_API float GetScrollX(); // get scrolling amount [0..GetScrollMaxX()]\nexport function GetScrollX(): number { return bind.GetScrollX(); }\n// IMGUI_API float GetScrollY(); // get scrolling amount [0..GetScrollMaxY()]\nexport function GetScrollY(): number { return bind.GetScrollY(); }\n// IMGUI_API float GetScrollMaxX(); // get maximum scrolling amount ~~ ContentSize.X - WindowSize.X\nexport function GetScrollMaxX(): number { return bind.GetScrollMaxX(); }\n// IMGUI_API float GetScrollMaxY(); // get maximum scrolling amount ~~ ContentSize.Y - WindowSize.Y\nexport function GetScrollMaxY(): number { return bind.GetScrollMaxY(); }\n// IMGUI_API void SetScrollX(float scroll_x); // set scrolling amount [0..GetScrollMaxX()]\nexport function SetScrollX(scroll_x: number): void { bind.SetScrollX(scroll_x); }\n// IMGUI_API void SetScrollY(float scroll_y); // set scrolling amount [0..GetScrollMaxY()]\nexport function SetScrollY(scroll_y: number): void { bind.SetScrollY(scroll_y); }\n// IMGUI_API void SetScrollHereY(float center_y_ratio = 0.5f); // adjust scrolling amount to make current cursor position visible. center_y_ratio=0.0: top, 0.5: center, 1.0: bottom. When using to make a \"default/current item\" visible, consider using SetItemDefaultFocus() instead.\nexport function SetScrollHereY(center_y_ratio: number = 0.5): void {\n bind.SetScrollHereY(center_y_ratio);\n}\n// IMGUI_API void SetScrollFromPosY(float pos_y, float center_y_ratio = 0.5f); // adjust scrolling amount to make given position valid. use GetCursorPos() or GetCursorStartPos()+offset to get valid positions.\nexport function SetScrollFromPosY(pos_y: number, center_y_ratio: number = 0.5): void {\n bind.SetScrollFromPosY(pos_y, center_y_ratio);\n}\n// IMGUI_API void SetStateStorage(ImGuiStorage* tree); // replace tree state storage with our own (if you want to manipulate it yourself, typically clear subsection of it)\n// IMGUI_API ImGuiStorage* GetStateStorage();\n\n// Parameters stacks (shared)\n// IMGUI_API void PushFont(ImFont* font); // use NULL as a shortcut to push default font\nexport function PushFont(font: ImFont | null): void { bind.PushFont(font ? font.native : null); }\n// IMGUI_API void PopFont();\nexport function PopFont(): void { bind.PopFont(); }\n// IMGUI_API void PushStyleColor(ImGuiCol idx, ImU32 col);\n// IMGUI_API void PushStyleColor(ImGuiCol idx, const ImVec4& col);\nexport function PushStyleColor(idx: ImGuiCol, col: Bind.ImU32 | Readonly | Readonly): void {\n if (col instanceof ImColor) {\n bind.PushStyleColor(idx, col.Value);\n } else {\n bind.PushStyleColor(idx, col as (Bind.ImU32 | Readonly));\n }\n}\n// IMGUI_API void PopStyleColor(int count = 1);\nexport function PopStyleColor(count: number = 1): void {\n bind.PopStyleColor(count);\n}\n// IMGUI_API void PushStyleVar(ImGuiStyleVar idx, float val);\n// IMGUI_API void PushStyleVar(ImGuiStyleVar idx, const ImVec2& val);\nexport function PushStyleVar(idx: ImGuiStyleVar, val: number | Readonly): void {\n bind.PushStyleVar(idx, val);\n}\n// IMGUI_API void PopStyleVar(int count = 1);\nexport function PopStyleVar(count: number = 1): void {\n bind.PopStyleVar(count);\n}\n// IMGUI_API const ImVec4& GetStyleColorVec4(ImGuiCol idx); // retrieve style color as stored in ImGuiStyle structure. use to feed back into PushStyleColor(), otherwhise use GetColorU32() to get style color + style alpha.\nexport function GetStyleColorVec4(idx: ImGuiCol): Readonly {\n return bind.GetStyleColorVec4(idx);\n}\n// IMGUI_API ImFont* GetFont(); // get current font\nexport function GetFont(): ImFont {\n return new ImFont(bind.GetFont());\n}\n// IMGUI_API float GetFontSize(); // get current font size (= height in pixels) of current font with current scale applied\nexport function GetFontSize(): number { return bind.GetFontSize(); }\n// IMGUI_API ImVec2 GetFontTexUvWhitePixel(); // get UV coordinate for a while pixel, useful to draw custom shapes via the ImDrawList API\nexport function GetFontTexUvWhitePixel(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetFontTexUvWhitePixel(out);\n}\n// IMGUI_API ImU32 GetColorU32(ImGuiCol idx, float alpha_mul = 1.0f); // retrieve given style color with style alpha applied and optional extra alpha multiplier\n// IMGUI_API ImU32 GetColorU32(const ImVec4& col); // retrieve given color with style alpha applied\n// IMGUI_API ImU32 GetColorU32(ImU32 col); // retrieve given color with style alpha applied\nexport function GetColorU32(idx: ImGuiCol, alpha_mul?: number): Bind.ImU32;\nexport function GetColorU32(col: Readonly): Bind.ImU32;\nexport function GetColorU32(col: Bind.ImU32): Bind.ImU32;\nexport function GetColorU32(...args: any[]): Bind.ImU32 {\n if (args.length === 1) {\n if (typeof(args[0]) === \"number\") {\n // TODO: ImGuiCol or ImU32\n const idx: ImGuiCol = args[0];\n return bind.GetColorU32_A(idx, 1.0);\n } else {\n const col: Readonly = args[0];\n return bind.GetColorU32_B(col);\n }\n } else {\n const idx: ImGuiCol = args[0];\n const alpha_mul: number = args[1];\n return bind.GetColorU32_A(idx, alpha_mul);\n }\n}\n\n// Parameters stacks (current window)\n// IMGUI_API void PushItemWidth(float item_width); // width of items for the common item+label case, pixels. 0.0f = default to ~2/3 of windows width, >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)\nexport function PushItemWidth(item_width: number): void { bind.PushItemWidth(item_width); }\n// IMGUI_API void PopItemWidth();\nexport function PopItemWidth(): void { bind.PopItemWidth(); }\n// IMGUI_API float CalcItemWidth(); // width of item given pushed settings and current cursor position\nexport function SetNextItemWidth(item_width: number): void { bind.SetNextItemWidth(item_width); } // set width of the _next_ common large \"item+label\" widget. >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)\nexport function CalcItemWidth(): number { return bind.CalcItemWidth(); }\n// IMGUI_API void PushTextWrapPos(float wrap_pos_x = 0.0f); // word-wrapping for Text*() commands. < 0.0f: no wrapping; 0.0f: wrap to end of window (or column); > 0.0f: wrap at 'wrap_pos_x' position in window local space\nexport function PushTextWrapPos(wrap_pos_x: number = 0.0): void {\n bind.PushTextWrapPos(wrap_pos_x);\n}\n// IMGUI_API void PopTextWrapPos();\nexport function PopTextWrapPos(): void { bind.PopTextWrapPos(); }\n// IMGUI_API void PushAllowKeyboardFocus(bool allow_keyboard_focus); // allow focusing using TAB/Shift-TAB, enabled by default but you can disable it for certain widgets\nexport function PushAllowKeyboardFocus(allow_keyboard_focus: boolean): void { bind.PushAllowKeyboardFocus(allow_keyboard_focus); }\n// IMGUI_API void PopAllowKeyboardFocus();\nexport function PopAllowKeyboardFocus(): void { bind.PopAllowKeyboardFocus(); }\n// IMGUI_API void PushButtonRepeat(bool repeat); // in 'repeat' mode, Button*() functions return repeated true in a typematic manner (using io.KeyRepeatDelay/io.KeyRepeatRate setting). Note that you can call IsItemActive() after any Button() to tell if the button is held in the current frame.\nexport function PushButtonRepeat(repeat: boolean): void { bind.PushButtonRepeat(repeat); }\n// IMGUI_API void PopButtonRepeat();\nexport function PopButtonRepeat(): void { bind.PopButtonRepeat(); }\n\n// Cursor / Layout\n// IMGUI_API void Separator(); // separator, generally horizontal. inside a menu bar or in horizontal layout mode, this becomes a vertical separator.\nexport function Separator(): void { bind.Separator(); }\n// IMGUI_API void SameLine(float pos_x = 0.0f, float spacing_w = -1.0f); // call between widgets or groups to layout them horizontally\nexport function SameLine(pos_x: number = 0.0, spacing_w: number = -1.0): void {\n bind.SameLine(pos_x, spacing_w);\n}\n// IMGUI_API void NewLine(); // undo a SameLine()\nexport function NewLine(): void { bind.NewLine(); }\n// IMGUI_API void Spacing(); // add vertical spacing\nexport function Spacing(): void { bind.Spacing(); }\n// IMGUI_API void Dummy(const ImVec2& size); // add a dummy item of given size\nexport function Dummy(size: Readonly): void { bind.Dummy(size); }\n// IMGUI_API void Indent(float indent_w = 0.0f); // move content position toward the right, by style.IndentSpacing or indent_w if != 0\nexport function Indent(indent_w: number = 0.0) { bind.Indent(indent_w); }\n// IMGUI_API void Unindent(float indent_w = 0.0f); // move content position back to the left, by style.IndentSpacing or indent_w if != 0\nexport function Unindent(indent_w: number = 0.0) { bind.Unindent(indent_w); }\n// IMGUI_API void BeginGroup(); // lock horizontal starting position + capture group bounding box into one \"item\" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.)\nexport function BeginGroup(): void { bind.BeginGroup(); }\n// IMGUI_API void EndGroup();\nexport function EndGroup(): void { bind.EndGroup(); }\n// IMGUI_API ImVec2 GetCursorPos(); // cursor position is relative to window position\nexport function GetCursorPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorPos(out); }\n// IMGUI_API float GetCursorPosX(); // \"\nexport function GetCursorPosX(): number { return bind.GetCursorPosX(); }\n// IMGUI_API float GetCursorPosY(); // \"\nexport function GetCursorPosY(): number { return bind.GetCursorPosY(); }\n// IMGUI_API void SetCursorPos(const ImVec2& local_pos); // \"\nexport function SetCursorPos(local_pos: Readonly): void { bind.SetCursorPos(local_pos); }\n// IMGUI_API void SetCursorPosX(float x); // \"\nexport function SetCursorPosX(x: number): void { bind.SetCursorPosX(x); }\n// IMGUI_API void SetCursorPosY(float y); // \"\nexport function SetCursorPosY(y: number): void { bind.SetCursorPosY(y); }\n// IMGUI_API ImVec2 GetCursorStartPos(); // initial cursor position\nexport function GetCursorStartPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorStartPos(out); }\n// IMGUI_API ImVec2 GetCursorScreenPos(); // cursor position in absolute screen coordinates [0..io.DisplaySize] (useful to work with ImDrawList API)\nexport function GetCursorScreenPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorScreenPos(out); }\n// IMGUI_API void SetCursorScreenPos(const ImVec2& pos); // cursor position in absolute screen coordinates [0..io.DisplaySize]\nexport function SetCursorScreenPos(pos: Readonly): void { bind.SetCursorScreenPos(pos); }\n// IMGUI_API void AlignTextToFramePadding(); // vertically align/lower upcoming text to FramePadding.y so that it will aligns to upcoming widgets (call if you have text on a line before regular widgets)\nexport function AlignTextToFramePadding(): void { bind.AlignTextToFramePadding(); }\n// IMGUI_API float GetTextLineHeight(); // ~ FontSize\nexport function GetTextLineHeight(): number { return bind.GetTextLineHeight(); }\n// IMGUI_API float GetTextLineHeightWithSpacing(); // ~ FontSize + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of text)\nexport function GetTextLineHeightWithSpacing(): number { return bind.GetTextLineHeightWithSpacing(); }\n// IMGUI_API float GetFrameHeight(); // ~ FontSize + style.FramePadding.y * 2\nexport function GetFrameHeight(): number { return bind.GetFrameHeight(); }\n// IMGUI_API float GetFrameHeightWithSpacing(); // ~ FontSize + style.FramePadding.y * 2 + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of framed widgets)\nexport function GetFrameHeightWithSpacing(): number { return bind.GetFrameHeightWithSpacing(); }\n\n// Columns\n// You can also use SameLine(pos_x) for simplified columns. The columns API is still work-in-progress and rather lacking.\n// IMGUI_API void Columns(int count = 1, const char* id = NULL, bool border = true);\nexport function Columns(count: number = 1, id: string | null = null, border: boolean = true): void {\n id = id || \"\";\n bind.Columns(count, id, border);\n}\n// IMGUI_API void NextColumn(); // next column, defaults to current row or next row if the current row is finished\nexport function NextColumn(): void { bind.NextColumn(); }\n// IMGUI_API int GetColumnIndex(); // get current column index\nexport function GetColumnIndex(): number { return bind.GetColumnIndex(); }\n// IMGUI_API float GetColumnWidth(int column_index = -1); // get column width (in pixels). pass -1 to use current column\nexport function GetColumnWidth(column_index: number = -1): number {\n return bind.GetColumnWidth(column_index);\n}\n// IMGUI_API void SetColumnWidth(int column_index, float width); // set column width (in pixels). pass -1 to use current column\nexport function SetColumnWidth(column_index: number, width: number): void { bind.SetColumnWidth(column_index, width); }\n// IMGUI_API float GetColumnOffset(int column_index = -1); // get position of column line (in pixels, from the left side of the contents region). pass -1 to use current column, otherwise 0..GetColumnsCount() inclusive. column 0 is typically 0.0f\nexport function GetColumnOffset(column_index: number = -1): number {\n return bind.GetColumnOffset(column_index);\n}\n// IMGUI_API void SetColumnOffset(int column_index, float offset_x); // set position of column line (in pixels, from the left side of the contents region). pass -1 to use current column\nexport function SetColumnOffset(column_index: number, offset_x: number): void { bind.SetColumnOffset(column_index, offset_x); }\n// IMGUI_API int GetColumnsCount();\nexport function GetColumnsCount(): number { return bind.GetColumnsCount(); }\n\n// ID scopes\n// If you are creating widgets in a loop you most likely want to push a unique identifier (e.g. object pointer, loop index) so ImGui can differentiate them.\n// You can also use the \"##foobar\" syntax within widget label to distinguish them from each others. Read \"A primer on the use of labels/IDs\" in the FAQ for more details.\n// IMGUI_API void PushID(const char* str_id); // push identifier into the ID stack. IDs are hash of the entire stack!\n// IMGUI_API void PushID(const char* str_id_begin, const char* str_id_end);\n// IMGUI_API void PushID(const void* ptr_id);\n// IMGUI_API void PushID(int int_id);\nexport function PushID(id: string | number): void { bind.PushID(id); }\n// IMGUI_API void PopID();\nexport function PopID(): void { bind.PopID(); }\n// IMGUI_API ImGuiID GetID(const char* str_id); // calculate unique ID (hash of whole ID stack + given parameter). e.g. if you want to query into ImGuiStorage yourself\n// IMGUI_API ImGuiID GetID(const char* str_id_begin, const char* str_id_end);\n// IMGUI_API ImGuiID GetID(const void* ptr_id);\nexport function GetID(id: string | number): Bind.ImGuiID { return bind.GetID(id); }\n\n// Widgets: Text\n// IMGUI_API void TextUnformatted(const char* text, const char* text_end = NULL); // raw text without formatting. Roughly equivalent to Text(\"%s\", text) but: A) doesn't require null terminated string if 'text_end' is specified, B) it's faster, no memory copy is done, no buffer size limits, recommended for long chunks of text.\nexport function TextUnformatted(text: string, text_end: number | null = null): void { bind.TextUnformatted(text_end !== null ? text.substring(0, text_end) : text); }\n// IMGUI_API void Text(const char* fmt, ...) IM_FMTARGS(1); // simple formatted text\n// IMGUI_API void TextV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function Text(fmt: string/*, ...args: any[]*/): void { bind.Text(fmt/*, ...args*/); }\n// IMGUI_API void TextColored(const ImVec4& col, const char* fmt, ...) IM_FMTARGS(2); // shortcut for PushStyleColor(ImGuiCol_Text, col); Text(fmt, ...); PopStyleColor();\n// IMGUI_API void TextColoredV(const ImVec4& col, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function TextColored(col: Readonly | Readonly, fmt: string/*, ...args: any[]*/): void {\n bind.TextColored((col instanceof ImColor) ? col.Value : col as Readonly, fmt/*, ...args*/);\n}\n// IMGUI_API void TextDisabled(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushStyleColor(ImGuiCol_Text, style.Colors[ImGuiCol_TextDisabled]); Text(fmt, ...); PopStyleColor();\n// IMGUI_API void TextDisabledV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function TextDisabled(fmt: string/*, ...args: any[]*/): void { bind.TextDisabled(fmt/*, ...args*/); }\n// IMGUI_API void TextWrapped(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize().\n// IMGUI_API void TextWrappedV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function TextWrapped(fmt: string/*, ...args: any[]*/): void { bind.TextWrapped(fmt/*, ...args*/); }\n// IMGUI_API void LabelText(const char* label, const char* fmt, ...) IM_FMTARGS(2); // display text+label aligned the same way as value+label widgets\n// IMGUI_API void LabelTextV(const char* label, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function LabelText(label: string, fmt: string/*, ...args: any[]*/): void { bind.LabelText(label, fmt/*, ...args*/); }\n// IMGUI_API void BulletText(const char* fmt, ...) IM_FMTARGS(1); // shortcut for Bullet()+Text()\n// IMGUI_API void BulletTextV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function BulletText(fmt: string/*, ...args: any[]*/): void { bind.BulletText(fmt/*, ...args*/); }\n// IMGUI_API void Bullet(); // draw a small circle and keep the cursor on the same line. advance cursor x position by GetTreeNodeToLabelSpacing(), same distance that TreeNode() uses\nexport function Bullet(): void { bind.Bullet(); }\n\n// Widgets: Main\n// IMGUI_API bool Button(const char* label, const ImVec2& size = ImVec2(0,0)); // button\nexport function Button(label: string, size: Readonly = ImVec2.ZERO): boolean {\n return bind.Button(label, size);\n}\n// IMGUI_API bool SmallButton(const char* label); // button with FramePadding=(0,0) to easily embed within text\nexport function SmallButton(label: string): boolean { return bind.SmallButton(label); }\n// IMGUI_API bool ArrowButton(const char* str_id, ImGuiDir dir); // square button with an arrow shape\nexport function ArrowButton(str_id: string, dir: ImGuiDir): boolean { return bind.ArrowButton(str_id, dir); }\n// IMGUI_API bool InvisibleButton(const char* str_id, const ImVec2& size); // button behavior without the visuals, useful to build custom behaviors using the public api (along with IsItemActive, IsItemHovered, etc.)\nexport function InvisibleButton(str_id: string, size: Readonly): boolean {\n return bind.InvisibleButton(str_id, size);\n}\n// IMGUI_API void Image(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0,0), const ImVec2& uv1 = ImVec2(1,1), const ImVec4& tint_col = ImVec4(1,1,1,1), const ImVec4& border_col = ImVec4(0,0,0,0));\nexport function Image(user_texture_id: ImTextureID | null, size: Readonly, uv0: Readonly = ImVec2.ZERO, uv1: Readonly = ImVec2.UNIT, tint_col: Readonly = ImVec4.WHITE, border_col: Readonly = ImVec4.ZERO): void {\n bind.Image(ImGuiContext.setTexture(user_texture_id), size, uv0, uv1, tint_col, border_col);\n}\n// IMGUI_API bool ImageButton(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0,0), const ImVec2& uv1 = ImVec2(1,1), int frame_padding = -1, const ImVec4& bg_col = ImVec4(0,0,0,0), const ImVec4& tint_col = ImVec4(1,1,1,1)); // <0 frame_padding uses default frame padding settings. 0 for no padding\nexport function ImageButton(user_texture_id: ImTextureID | null, size: Readonly, uv0: Readonly = ImVec2.ZERO, uv1: Readonly = ImVec2.UNIT, frame_padding: number = -1, bg_col: Readonly = ImVec4.ZERO, tint_col: Readonly = ImVec4.WHITE): boolean {\n return bind.ImageButton(ImGuiContext.setTexture(user_texture_id), size, uv0, uv1, frame_padding, bg_col, tint_col);\n}\n// IMGUI_API bool Checkbox(const char* label, bool* v);\nexport function Checkbox(label: string, v: Bind.ImScalar | Bind.ImAccess): boolean {\n if (Array.isArray(v)) {\n return bind.Checkbox(label, v);\n } else {\n const ref_v: Bind.ImScalar = [ v() ];\n const ret = bind.Checkbox(label, ref_v);\n v(ref_v[0]);\n return ret;\n }\n}\n// IMGUI_API bool CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value);\nexport function CheckboxFlags(label: string, flags: Bind.ImAccess | Bind.ImScalar, flags_value: number): boolean {\n if (Array.isArray(flags)) {\n return bind.CheckboxFlags(label, flags, flags_value);\n } else {\n const ref_flags: Bind.ImScalar = [ flags() ];\n const ret = bind.CheckboxFlags(label, ref_flags, flags_value);\n flags(ref_flags[0]);\n return ret;\n }\n}\n// IMGUI_API bool RadioButton(const char* label, bool active);\n// IMGUI_API bool RadioButton(const char* label, int* v, int v_button);\nexport function RadioButton(label: string, active: boolean): boolean;\nexport function RadioButton(label: string, v: Bind.ImAccess | Bind.ImScalar, v_button: number): boolean;\nexport function RadioButton(label: string, ...args: any[]): boolean {\n if (typeof(args[0]) === \"boolean\") {\n const active: boolean = args[0];\n return bind.RadioButton_A(label, active);\n } else {\n const v: Bind.ImAccess | Bind.ImScalar = args[0];\n const v_button: number = args[1];\n const _v: Bind.ImScalar = Array.isArray(v) ? v : [ v() ];\n const ret = bind.RadioButton_B(label, _v, v_button);\n if (!Array.isArray(v)) { v(_v[0]); }\n return ret;\n }\n}\n// IMGUI_API void PlotLines(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), int stride = sizeof(float));\n// IMGUI_API void PlotLines(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));\nexport type PlotLinesValueGetter = (data: any, idx: number) => number;\nexport function PlotLines(label: string, values: ArrayLike, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly, stride?: number): void;\nexport function PlotLines(label: string, values_getter: PlotLinesValueGetter, data: any, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly): void;\nexport function PlotLines(label: string, ...args: any[]): void {\n if (Array.isArray(args[0])) {\n const values: ArrayLike = args[0];\n const values_getter: PlotLinesValueGetter = (data: any, idx: number): number => values[idx * stride];\n const values_count: number = typeof(args[1]) === \"number\" ? args[1] : values.length;\n const values_offset: number = typeof(args[2]) === \"number\" ? args[2] : 0;\n const overlay_text: string | null = typeof(args[3]) === \"string\" ? args[3] : null;\n const scale_min: number = typeof(args[4]) === \"number\" ? args[4] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const graph_size: Readonly = args[6] || ImVec2.ZERO;\n const stride: number = typeof(args[7]) === \"number\" ? args[7] : 1;\n bind.PlotLines(label, values_getter, null, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n } else {\n const values_getter: PlotLinesValueGetter = args[0];\n const data: any = args[1];\n const values_count: number = args[2];\n const values_offset: number = typeof(args[3]) === \"number\" ? args[3] : 0;\n const overlay_text: string | null = typeof(args[4]) === \"string\" ? args[4] : null;\n const scale_min: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[6]) === \"number\" ? args[6] : Number.MAX_VALUE;\n const graph_size: Readonly = args[7] || ImVec2.ZERO;\n bind.PlotLines(label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n }\n}\n// IMGUI_API void PlotHistogram(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), int stride = sizeof(float));\n// IMGUI_API void PlotHistogram(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));\nexport type PlotHistogramValueGetter = (data: any, idx: number) => number;\nexport function PlotHistogram(label: string, values: ArrayLike, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly, stride?: number): void;\nexport function PlotHistogram(label: string, values_getter: PlotHistogramValueGetter, data: any, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly): void;\nexport function PlotHistogram(label: string, ...args: any[]): void {\n if (Array.isArray(args[0])) {\n const values: ArrayLike = args[0];\n const values_getter: PlotHistogramValueGetter = (data: any, idx: number): number => values[idx * stride];\n const values_count: number = typeof(args[1]) === \"number\" ? args[1] : values.length;\n const values_offset: number = typeof(args[2]) === \"number\" ? args[2] : 0;\n const overlay_text: string | null = typeof(args[3]) === \"string\" ? args[3] : null;\n const scale_min: number = typeof(args[4]) === \"number\" ? args[4] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const graph_size: Readonly = args[6] || ImVec2.ZERO;\n const stride: number = typeof(args[7]) === \"number\" ? args[7] : 1;\n bind.PlotHistogram(label, values_getter, null, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n } else {\n const values_getter: PlotHistogramValueGetter = args[0];\n const data: any = args[1];\n const values_count: number = args[2];\n const values_offset: number = typeof(args[3]) === \"number\" ? args[3] : 0;\n const overlay_text: string | null = typeof(args[4]) === \"string\" ? args[4] : null;\n const scale_min: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[6]) === \"number\" ? args[6] : Number.MAX_VALUE;\n const graph_size: Readonly = args[7] || ImVec2.ZERO;\n bind.PlotHistogram(label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n }\n}\n// IMGUI_API void ProgressBar(float fraction, const ImVec2& size_arg = ImVec2(-1,0), const char* overlay = NULL);\nexport function ProgressBar(fraction: number, size_arg: Readonly = new ImVec2(-1, 0), overlay: string | null = null): void {\n bind.ProgressBar(fraction, size_arg, overlay);\n}\n\n// Widgets: Combo Box\n// The new BeginCombo()/EndCombo() api allows you to manage your contents and selection state however you want it.\n// The old Combo() api are helpers over BeginCombo()/EndCombo() which are kept available for convenience purpose.\n// IMGUI_API bool BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags = 0);\nexport function BeginCombo(label: string, preview_value: string | null = null, flags: ImGuiComboFlags = 0): boolean {\n return bind.BeginCombo(label, preview_value, flags);\n}\n// IMGUI_API void EndCombo();\nexport function EndCombo(): void { bind.EndCombo(); }\n// IMGUI_API bool Combo(const char* label, int* current_item, const char* const items[], int items_count, int popup_max_height_in_items = -1);\n// IMGUI_API bool Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int popup_max_height_in_items = -1); // Separate items with \\0 within a string, end item-list with \\0\\0. e.g. \"One\\0Two\\0Three\\0\"\n// IMGUI_API bool Combo(const char* label, int* current_item, bool(*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int popup_max_height_in_items = -1);\nexport type ComboValueGetter = (data: any, idx: number, out_text: [string]) => boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items: string[], items_count?: number, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_separated_by_zeros: string, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_getter: ComboValueGetter, data: any, items_count: number, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, ...args: any[]): boolean {\n let ret = false;\n const _current_item: Bind.ImScalar = Array.isArray(current_item) ? current_item : [ current_item() ];\n if (Array.isArray(args[0])) {\n const items: string[] = args[0];\n const items_count = typeof(args[1]) === \"number\" ? args[1] : items.length;\n const popup_max_height_in_items: number = typeof(args[2]) === \"number\" ? args[2] : -1;\n const items_getter = (data: any, idx: number, out_text: [string]): boolean => { out_text[0] = items[idx]; return true; };\n ret = bind.Combo(label, _current_item, items_getter, null, items_count, popup_max_height_in_items);\n } else if (typeof(args[0]) === \"string\") {\n const items_separated_by_zeros: string = args[0]\n const popup_max_height_in_items: number = typeof(args[1]) === \"number\" ? args[1] : -1;\n const items: string[] = items_separated_by_zeros.replace(/^\\0+|\\0+$/g, \"\").split(\"\\0\");\n const items_count: number = items.length;\n const items_getter = (data: any, idx: number, out_text: [string]): boolean => { out_text[0] = items[idx]; return true; };\n ret = bind.Combo(label, _current_item, items_getter, null, items_count, popup_max_height_in_items);\n } else {\n const items_getter: (data: any, idx: number, out_text: [string]) => boolean = args[0];\n const data: any = args[1];\n const items_count = args[2];\n const popup_max_height_in_items: number = typeof(args[3]) === \"number\" ? args[3] : -1;\n ret = bind.Combo(label, _current_item, items_getter, data, items_count, popup_max_height_in_items);\n }\n if (!Array.isArray(current_item)) { current_item(_current_item[0]); }\n return ret;\n}\n\n// Widgets: Drags (tip: ctrl+click on a drag box to input with keyboard. manually input values aren't clamped, can go off-bounds)\n// For all the Float2/Float3/Float4/Int2/Int3/Int4 versions of every functions, note that a 'float v[X]' function argument is the same as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. You can pass address of your first element out of a contiguous set, e.g. &myvector.x\n// IMGUI_API bool DragFloat(const char* label, float* v, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f); // If v_min >= v_max we have no bound\nexport function DragFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string | null = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.DragFloat(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat2(const char* label, float v[2], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | ImVec2, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.DragFloat2(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.DragFloat3(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat4(const char* label, float v[4], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat4(label: string, v: XYZW | Bind.ImTuple4 | ImVec4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.DragFloat4(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", const char* display_format_max = NULL, float power = 1.0f);\nexport function DragFloatRange2(label: string, v_current_min: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_current_max: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", display_format_max: string | null = null, power: number = 1.0): boolean {\n const _v_current_min = import_Scalar(v_current_min);\n const _v_current_max = import_Scalar(v_current_max);\n const ret = bind.DragFloatRange2(label, _v_current_min, _v_current_max, v_speed, v_min, v_max, display_format, display_format_max, power);\n export_Scalar(_v_current_min, v_current_min);\n export_Scalar(_v_current_max, v_current_max);\n return ret;\n}\n// IMGUI_API bool DragInt(const char* label, int* v, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = \"%d\"); // If v_min >= v_max we have no bound\nexport function DragInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.DragInt(label, _v, v_speed, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt2(const char* label, int v[2], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector2(v);\n const ret = bind.DragInt2(label, _v, v_speed, v_min, v_max, format);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt3(const char* label, int v[3], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector3(v);\n const ret = bind.DragInt3(label, _v, v_speed, v_min, v_max, format);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt4(const char* label, int v[4], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt4(label: string, v: XYZW | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector4(v);\n const ret = bind.DragInt4(label, _v, v_speed, v_min, v_max, format);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = \"%.0f\", const char* display_format_max = NULL);\nexport function DragIntRange2(label: string, v_current_min: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_current_max: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\", format_max: string | null = null): boolean {\n const _v_current_min = import_Scalar(v_current_min);\n const _v_current_max = import_Scalar(v_current_max);\n const ret = bind.DragIntRange2(label, _v_current_min, _v_current_max, v_speed, v_min, v_max, format, format_max);\n export_Scalar(_v_current_min, v_current_min);\n export_Scalar(_v_current_max, v_current_max);\n return ret;\n}\n// IMGUI_API bool DragScalar(const char* label, ImGuiDataType data_type, void* v, float v_speed, const void* v_min = NULL, const void* v_max = NULL, const char* format = NULL, float power = 1.0f);\n// IMGUI_API bool DragScalarN(const char* label, ImGuiDataType data_type, void* v, int components, float v_speed, const void* v_min = NULL, const void* v_max = NULL, const char* format = NULL, float power = 1.0f);\nexport function DragScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, v_speed: number, v_min: number | null = null, v_max: number | null = null, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.DragScalar(label, ImGuiDataType.S8, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.DragScalar(label, ImGuiDataType.U8, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.DragScalar(label, ImGuiDataType.S16, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.DragScalar(label, ImGuiDataType.U16, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.DragScalar(label, ImGuiDataType.S32, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.DragScalar(label, ImGuiDataType.U32, v, v_speed, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.DragScalar(label, ImGuiDataType.S64, v, v_speed, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.DragScalar(label, ImGuiDataType.U64, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.DragScalar(label, ImGuiDataType.Float, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.DragScalar(label, ImGuiDataType.Double, v, v_speed, v_min, v_max, format, power); }\n throw new Error();\n}\n\n// Widgets: Input with Keyboard\n// IMGUI_API bool InputText(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputText(label: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputText(label, buf, buf_size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputText(label, ref_buf, _buf_size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputText(label, ref_buf, buf_size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputTextWithHint(const char* label, const char* hint, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputTextWithHint(label: string, hint: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputTextWithHint(label, hint, buf, buf_size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputTextWithHint(label, hint, ref_buf, _buf_size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputTextWithHint(label, hint, ref_buf, buf_size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputTextMultiline(const char* label, char* buf, size_t buf_size, const ImVec2& size = ImVec2(0,0), ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputTextMultiline(label: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, size: Readonly = ImVec2.ZERO, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputTextMultiline(label, buf, buf_size, size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputTextMultiline(label, ref_buf, _buf_size, size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputTextMultiline(label, ref_buf, buf_size, size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputFloat(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 0.0, step_fast: number = 0.0, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputFloat(label, _v, step, step_fast, format, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat2(const char* label, float v[2], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.InputFloat2(label, _v, format, extra_flags);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat3(const char* label, float v[3], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.InputFloat3(label, _v, format, extra_flags);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat4(const char* label, float v[4], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat4(label: string, v: XYZW | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.InputFloat4(label, _v, format, extra_flags);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt(const char* label, int* v, int step = 1, int step_fast = 100, ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 1, step_fast: number = 100, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputInt(label, _v, step, step_fast, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt2(const char* label, int v[2], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.InputInt2(label, _v, extra_flags);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt3(const char* label, int v[3], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.InputInt3(label, _v, extra_flags);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt4(const char* label, int v[4], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt4(label: string, v: XYZW | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.InputInt4(label, _v, extra_flags);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool InputDouble(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = \"%.6f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputDouble(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 0.0, step_fast: number = 0.0, format: string = \"%.6f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputDouble(label, _v, step, step_fast, format, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputScalar(const char* label, ImGuiDataType data_type, void* v, const void* step = NULL, const void* step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags extra_flags = 0);\n// IMGUI_API bool InputScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* step = NULL, const void* step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags extra_flags = 0);\nexport function InputScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, step: number | null = null, step_fast: number | null = null, format: string | null = null, extra_flags: ImGuiInputTextFlags = 0): boolean {\n if (v instanceof Int8Array) { return bind.InputScalar(label, ImGuiDataType.S8, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint8Array) { return bind.InputScalar(label, ImGuiDataType.U8, v, step, step_fast, format, extra_flags); }\n if (v instanceof Int16Array) { return bind.InputScalar(label, ImGuiDataType.S16, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint16Array) { return bind.InputScalar(label, ImGuiDataType.U16, v, step, step_fast, format, extra_flags); }\n if (v instanceof Int32Array) { return bind.InputScalar(label, ImGuiDataType.S32, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint32Array) { return bind.InputScalar(label, ImGuiDataType.U32, v, step, step_fast, format, extra_flags); }\n // if (v instanceof Int64Array) { return bind.InputScalar(label, ImGuiDataType.S64, v, step, step_fast, format, extra_flags); }\n // if (v instanceof Uint64Array) { return bind.InputScalar(label, ImGuiDataType.U64, v, step, step_fast, format, extra_flags); }\n if (v instanceof Float32Array) { return bind.InputScalar(label, ImGuiDataType.Float, v, step, step_fast, format, extra_flags); }\n if (v instanceof Float64Array) { return bind.InputScalar(label, ImGuiDataType.Double, v, step, step_fast, format, extra_flags); }\n throw new Error();\n}\n\n// Widgets: Sliders (tip: ctrl+click on a slider to input with keyboard. manually input values aren't clamped, can go off-bounds)\n// IMGUI_API bool SliderFloat(const char* label, float* v, float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f); // adjust format to decorate the value with a prefix or a suffix for in-slider labels or unit display. Use power!=1.0 for logarithmic sliders\nexport function SliderFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.SliderFloat(label, _v, v_min, v_max, format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec2, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.SliderFloat2(label, _v, v_min, v_max, format, power);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.SliderFloat3(label, _v, v_min, v_max, format, power);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat4(label: string, v: XYZW | Bind.ImTuple4 | XYZW, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.SliderFloat4(label, _v, v_min, v_max, format, power);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderAngle(const char* label, float* v_rad, float v_degrees_min = -360.0f, float v_degrees_max = +360.0f);\nexport function SliderAngle(label: string, v_rad: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_degrees_min: number = -360.0, v_degrees_max: number = +360.0): boolean {\n const _v_rad = import_Scalar(v_rad);\n const ret = bind.SliderAngle(label, _v_rad, v_degrees_min, v_degrees_max);\n export_Scalar(_v_rad, v_rad);\n return ret;\n}\nexport function SliderAngle3(label: string, v_rad: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_degrees_min: number = -360.0, v_degrees_max: number = +360.0): boolean {\n const _v_rad = import_Vector3(v_rad);\n _v_rad[0] = Math.floor(_v_rad[0] * 180 / Math.PI);\n _v_rad[1] = Math.floor(_v_rad[1] * 180 / Math.PI);\n _v_rad[2] = Math.floor(_v_rad[2] * 180 / Math.PI);\n const ret = bind.SliderInt3(label, _v_rad, v_degrees_min, v_degrees_max, \"%d deg\");\n _v_rad[0] = _v_rad[0] * Math.PI / 180;\n _v_rad[1] = _v_rad[1] * Math.PI / 180;\n _v_rad[2] = _v_rad[2] * Math.PI / 180;\n export_Vector3(_v_rad, v_rad);\n return ret;\n}\n// IMGUI_API bool SliderInt(const char* label, int* v, int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.SliderInt(label, _v, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector2(v);\n const ret = bind.SliderInt2(label, _v, v_min, v_max, format);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt3(const char* label, int v[3], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector3(v);\n const ret = bind.SliderInt3(label, _v, v_min, v_max, format);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt4(const char* label, int v[4], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt4(label: string, v: XYZW | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector4(v);\n const ret = bind.SliderInt4(label, _v, v_min, v_max, format);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderScalar(const char* label, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\n// IMGUI_API bool SliderScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\nexport function SliderScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, v_min: number, v_max: number, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.SliderScalar(label, ImGuiDataType.S8, v, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.SliderScalar(label, ImGuiDataType.U8, v, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.SliderScalar(label, ImGuiDataType.S16, v, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.SliderScalar(label, ImGuiDataType.U16, v, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.SliderScalar(label, ImGuiDataType.S32, v, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.SliderScalar(label, ImGuiDataType.U32, v, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.SliderScalar(label, ImGuiDataType.S64, v, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.SliderScalar(label, ImGuiDataType.U64, v, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.SliderScalar(label, ImGuiDataType.Float, v, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.SliderScalar(label, ImGuiDataType.Double, v, v_min, v_max, format, power); }\n throw new Error();\n}\n// IMGUI_API bool VSliderFloat(const char* label, const ImVec2& size, float* v, float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function VSliderFloat(label: string, size: Readonly, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.VSliderFloat(label, size, _v, v_min, v_max, format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, const char* format = \"%d\");\nexport function VSliderInt(label: string, size: Readonly, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.VSliderInt(label, size, _v, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool VSliderScalar(const char* label, const ImVec2& size, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\nexport function VSliderScalar(label: string, size: Readonly, data_type: ImGuiDataType, v: Bind.ImAccess | Bind.ImScalar, v_min: number, v_max: number, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S8, v, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U8, v, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S16, v, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U16, v, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S32, v, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U32, v, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S64, v, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U64, v, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.Float, v, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.Double, v, v_min, v_max, format, power); }\n throw new Error();\n}\n\n// Widgets: Color Editor/Picker (tip: the ColorEdit* functions have a little colored preview square that can be left-clicked to open a picker, and right-clicked to open an option menu.)\n// Note that a 'float v[X]' function argument is the same as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. You can the pass the address of a first float element out of a contiguous structure, e.g. &myvector.x\n// IMGUI_API bool ColorEdit3(const char* label, float col[3], ImGuiColorEditFlags flags = 0);\nexport function ColorEdit3(label: string, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color3(col);\n const ret = bind.ColorEdit3(label, _col, flags);\n export_Color3(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags = 0);\nexport function ColorEdit4(label: string, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color4(col);\n const ret = bind.ColorEdit4(label, _col, flags);\n export_Color4(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorPicker3(const char* label, float col[3], ImGuiColorEditFlags flags = 0);\nexport function ColorPicker3(label: string, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color3(col);\n const ret = bind.ColorPicker3(label, _col, flags);\n export_Color3(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags flags = 0, const float* ref_col = NULL);\nexport function ColorPicker4(label: string, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0, ref_col: Bind.ImTuple4 | Bind.interface_ImVec4 | null = null): boolean {\n const _col = import_Color4(col);\n const _ref_col = ref_col ? import_Color4(ref_col) : null;\n const ret = bind.ColorPicker4(label, _col, flags, _ref_col);\n export_Color4(_col, col);\n if (_ref_col && ref_col) { export_Color4(_ref_col, ref_col); }\n return ret;\n}\n// IMGUI_API bool ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFlags flags = 0, ImVec2 size = ImVec2(0,0)); // display a colored square/button, hover for details, return true when pressed.\nexport function ColorButton(desc_id: string, col: Readonly, flags: ImGuiColorEditFlags = 0, size: Readonly = ImVec2.ZERO): boolean {\n return bind.ColorButton(desc_id, col, flags, size);\n}\n// IMGUI_API void SetColorEditOptions(ImGuiColorEditFlags flags); // initialize current options (generally on application startup) if you want to select a default format, picker type, etc. User will be able to change many settings, unless you pass the _NoOptions flag to your calls.\nexport function SetColorEditOptions(flags: ImGuiColorEditFlags): void {\n bind.SetColorEditOptions(flags);\n}\n\n// Widgets: Trees\n// IMGUI_API bool TreeNode(const char* label); // if returning 'true' the node is open and the tree id is pushed into the id stack. user is responsible for calling TreePop().\n// IMGUI_API bool TreeNode(const char* str_id, const char* fmt, ...) IM_FMTARGS(2); // read the FAQ about why and how to use ID. to align arbitrary text at the same level as a TreeNode() you can use Bullet().\n// IMGUI_API bool TreeNode(const void* ptr_id, const char* fmt, ...) IM_FMTARGS(2); // \"\n// IMGUI_API bool TreeNodeV(const char* str_id, const char* fmt, va_list args) IM_FMTLIST(2);\n// IMGUI_API bool TreeNodeV(const void* ptr_id, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function TreeNode(label: string): boolean;\nexport function TreeNode(label: string, fmt: string): boolean;\nexport function TreeNode(label: number, fmt: string): boolean;\nexport function TreeNode(...args: any[]): boolean {\n if (typeof(args[0]) === \"string\") {\n if (args.length === 1) {\n const label: string = args[0];\n return bind.TreeNode_A(label);\n } else {\n const str_id: string = args[0];\n const fmt: string = args[1];\n return bind.TreeNode_B(str_id, fmt);\n }\n } else {\n const ptr_id: number = args[0];\n const fmt: string = args[1];\n return bind.TreeNode_C(ptr_id, fmt);\n }\n}\n// IMGUI_API bool TreeNodeEx(const char* label, ImGuiTreeNodeFlags flags = 0);\n// IMGUI_API bool TreeNodeEx(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3);\n// IMGUI_API bool TreeNodeEx(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3);\n// IMGUI_API bool TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3);\n// IMGUI_API bool TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3);\nexport function TreeNodeEx(label: string, flags?: ImGuiTreeNodeFlags): boolean;\nexport function TreeNodeEx(str_id: string, flags: ImGuiTreeNodeFlags, fmt: string): boolean;\nexport function TreeNodeEx(ptr_id: number, flags: ImGuiTreeNodeFlags, fmt: string): boolean;\nexport function TreeNodeEx(...args: any[]): boolean {\n if (typeof(args[0]) === \"string\") {\n if (args.length < 3) {\n const label: string = args[0];\n const flags: ImGuiTreeNodeFlags = args[1] || 0;\n return bind.TreeNodeEx_A(label, flags);\n } else {\n const str_id: string = args[0];\n const flags: ImGuiTreeNodeFlags = args[1];\n const fmt: string = args[2];\n return bind.TreeNodeEx_B(str_id, flags, fmt);\n }\n } else {\n const ptr_id: number = args[0];\n const flags: ImGuiTreeNodeFlags = args[1];\n const fmt: string = args[2];\n return bind.TreeNodeEx_C(ptr_id, flags, fmt);\n }\n}\n// IMGUI_API void TreePush(const char* str_id); // ~ Indent()+PushId(). Already called by TreeNode() when returning true, but you can call Push/Pop yourself for layout purpose\n// IMGUI_API void TreePush(const void* ptr_id = NULL); // \"\nexport function TreePush(str_id: string): void;\nexport function TreePush(ptr_id: number): void;\nexport function TreePush(...args: any[]): void {\n if (typeof(args[0]) === \"string\") {\n const str_id: string = args[0];\n bind.TreePush_A(str_id);\n } else {\n const ptr_id: number = args[0];\n bind.TreePush_B(ptr_id);\n }\n}\n// IMGUI_API void TreePop(); // ~ Unindent()+PopId()\nexport function TreePop(): void { bind.TreePop(); }\n// IMGUI_API void TreeAdvanceToLabelPos(); // advance cursor x position by GetTreeNodeToLabelSpacing()\nexport function TreeAdvanceToLabelPos(): void { bind.TreeAdvanceToLabelPos(); }\n// IMGUI_API float GetTreeNodeToLabelSpacing(); // horizontal distance preceding label when using TreeNode*() or Bullet() == (g.FontSize + style.FramePadding.x*2) for a regular unframed TreeNode\nexport function GetTreeNodeToLabelSpacing(): number { return bind.GetTreeNodeToLabelSpacing(); }\n// IMGUI_API bool CollapsingHeader(const char* label, ImGuiTreeNodeFlags flags = 0); // if returning 'true' the header is open. doesn't indent nor push on ID stack. user doesn't have to call TreePop().\n// IMGUI_API bool CollapsingHeader(const char* label, bool* p_open, ImGuiTreeNodeFlags flags = 0); // when 'p_open' isn't NULL, display an additional small close button on upper right of the header\nexport function CollapsingHeader(label: string, flags?: ImGuiTreeNodeFlags): boolean;\nexport function CollapsingHeader(label: string, p_open: Bind.ImScalar | Bind.ImAccess, flags?: ImGuiTreeNodeFlags): boolean;\nexport function CollapsingHeader(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.CollapsingHeader_A(label, 0);\n } else {\n if (typeof(args[0]) === \"number\") {\n const flags: ImGuiTreeNodeFlags = args[0];\n return bind.CollapsingHeader_A(label, flags);\n } else {\n const p_open: Bind.ImScalar | Bind.ImAccess = args[0];\n const flags: ImGuiTreeNodeFlags = args[1] || 0;\n const ref_open: Bind.ImScalar = Array.isArray(p_open) ? p_open : [ p_open() ];\n const ret = bind.CollapsingHeader_B(label, ref_open, flags);\n if (!Array.isArray(p_open)) { p_open(ref_open[0]); }\n return ret;\n }\n }\n}\n// IMGUI_API void SetNextItemOpen(bool is_open, ImGuiCond cond = 0); // set next TreeNode/CollapsingHeader open state.\nexport function SetNextItemOpen(is_open: boolean, cond: ImGuiCond = 0): void {\n bind.SetNextItemOpen(is_open, cond);\n}\n\n// Widgets: Selectable / Lists\n// IMGUI_API bool Selectable(const char* label, bool selected = false, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0,0)); // size.x==0.0: use remaining width, size.x>0.0: specify width. size.y==0.0: use label height, size.y>0.0: specify height\n// IMGUI_API bool Selectable(const char* label, bool* p_selected, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0,0));\nexport function Selectable(label: string, selected?: boolean, flags?: ImGuiSelectableFlags, size?: Readonly): boolean;\nexport function Selectable(label: string, p_selected: Bind.ImScalar | Bind.ImAccess, flags?: ImGuiSelectableFlags, size?: Readonly): boolean;\nexport function Selectable(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.Selectable_A(label, false, 0, ImVec2.ZERO);\n } else {\n if (typeof(args[0]) === \"boolean\") {\n const selected: boolean = args[0];\n const flags: ImGuiSelectableFlags = args[1] || 0;\n const size: Readonly = args[2] || ImVec2.ZERO;\n return bind.Selectable_A(label, selected, flags, size);\n } else {\n const p_selected: Bind.ImScalar | Bind.ImAccess = args[0];\n const flags: ImGuiSelectableFlags = args[1] || 0;\n const size: Readonly = args[2] || ImVec2.ZERO;\n const ref_selected: Bind.ImScalar = Array.isArray(p_selected) ? p_selected : [ p_selected() ];\n const ret = bind.Selectable_B(label, ref_selected, flags, size);\n if (!Array.isArray(p_selected)) { p_selected(ref_selected[0]); }\n return ret;\n }\n }\n}\n// IMGUI_API bool ListBox(const char* label, int* current_item, const char* const* items, int items_count, int height_in_items = -1);\n// IMGUI_API bool ListBox(const char* label, int* current_item, bool (*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int height_in_items = -1);\nexport type ListBoxItemGetter = (data: any, idx: number, out_text: [string]) => boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items: string[], items_count?: number, height_in_items?: number): boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_getter: ListBoxItemGetter, data: any, items_count: number, height_in_items?: number): boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, ...args: any[]): boolean {\n let ret: boolean = false;\n const _current_item: Bind.ImScalar = Array.isArray(current_item) ? current_item : [ current_item() ];\n if (Array.isArray(args[0])) {\n const items: string[] = args[0];\n const items_count: number = typeof(args[1]) === \"number\" ? args[1] : items.length;\n const height_in_items: number = typeof(args[2]) === \"number\" ? args[2] : -1;\n ret = bind.ListBox_A(label, _current_item, items, items_count, height_in_items);\n } else {\n const items_getter: ListBoxItemGetter = args[0];\n const data: any = args[1];\n const items_count: number = args[2];\n const height_in_items: number = typeof(args[3]) === \"number\" ? args[3] : -1;\n ret = bind.ListBox_B(label, _current_item, items_getter, data, items_count, height_in_items);\n }\n if (!Array.isArray(current_item)) { current_item(_current_item[0]); }\n return ret;\n}\n// IMGUI_API bool ListBoxHeader(const char* label, const ImVec2& size = ImVec2(0,0)); // use if you want to reimplement ListBox() will custom data or interactions. make sure to call ListBoxFooter() afterwards.\n// IMGUI_API bool ListBoxHeader(const char* label, int items_count, int height_in_items = -1); // \"\nexport function ListBoxHeader(label: string, size: Readonly): boolean;\nexport function ListBoxHeader(label: string, items_count: number, height_in_items?: number): boolean;\nexport function ListBoxHeader(label: string, ...args: any[]): boolean {\n if (typeof(args[0]) === \"object\") {\n const size: Readonly = args[0];\n return bind.ListBoxHeader_A(label, size);\n } else {\n const items_count: number = args[0];\n const height_in_items: number = typeof(args[1]) === \"number\" ? args[1] : -1;\n return bind.ListBoxHeader_B(label, items_count, height_in_items);\n }\n}\n// IMGUI_API void ListBoxFooter(); // terminate the scrolling region\nexport function ListBoxFooter(): void {\n bind.ListBoxFooter();\n}\n\n// Widgets: Value() Helpers. Output single value in \"name: value\" format (tip: freely declare more in your code to handle your types. you can add functions to the ImGui namespace)\n// IMGUI_API void Value(const char* prefix, bool b);\n// IMGUI_API void Value(const char* prefix, int v);\n// IMGUI_API void Value(const char* prefix, unsigned int v);\n// IMGUI_API void Value(const char* prefix, float v, const char* float_format = NULL);\nexport function Value(prefix: string, b: boolean): void;\nexport function Value(prefix: string, v: number): void;\nexport function Value(prefix: string, v: number, float_format?: string | null): void;\nexport function Value(prefix: string, v: any): void;\nexport function Value(prefix: string, ...args: any[]): void {\n if (typeof(args[0]) === \"boolean\") {\n bind.Value_A(prefix, args[0]);\n } else if (typeof(args[0]) === \"number\") {\n if (Number.isInteger(args[0])) {\n bind.Value_B(prefix, args[0]);\n } else {\n bind.Value_D(prefix, args[0], typeof(args[1]) === \"string\" ? args[1] : null);\n }\n } else {\n bind.Text(prefix + String(args[0]));\n }\n}\n\n// Tooltips\n// IMGUI_API void BeginTooltip(); // begin/append a tooltip window. to create full-featured tooltip (with any kind of contents).\nexport function BeginTooltip(): void { bind.BeginTooltip(); }\n// IMGUI_API void EndTooltip();\nexport function EndTooltip(): void { bind.EndTooltip(); }\n// IMGUI_API void SetTooltip(const char* fmt, ...) IM_FMTARGS(1); // set text tooltip under mouse-cursor, typically use with ImGui::IsItemHovered(). overidde any previous call to SetTooltip().\n// IMGUI_API void SetTooltipV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function SetTooltip(fmt: string): void {\n bind.SetTooltip(fmt);\n}\n\n// Menus\n// IMGUI_API bool BeginMainMenuBar(); // create and append to a full screen menu-bar. only call EndMainMenuBar() if this returns true!\nexport function BeginMainMenuBar(): boolean { return bind.BeginMainMenuBar(); }\n// IMGUI_API void EndMainMenuBar();\nexport function EndMainMenuBar(): void { bind.EndMainMenuBar(); }\n// IMGUI_API bool BeginMenuBar(); // append to menu-bar of current window (requires ImGuiWindowFlags_MenuBar flag set on parent window). only call EndMenuBar() if this returns true!\nexport function BeginMenuBar(): boolean { return bind.BeginMenuBar(); }\n// IMGUI_API void EndMenuBar();\nexport function EndMenuBar(): void { bind.EndMenuBar(); }\n// IMGUI_API bool BeginMenu(const char* label, bool enabled = true); // create a sub-menu entry. only call EndMenu() if this returns true!\nexport function BeginMenu(label: string, enabled: boolean = true): boolean { return bind.BeginMenu(label, enabled); }\n// IMGUI_API void EndMenu();\nexport function EndMenu(): void { bind.EndMenu(); }\n// IMGUI_API bool MenuItem(const char* label, const char* shortcut = NULL, bool selected = false, bool enabled = true); // return true when activated. shortcuts are displayed for convenience but not processed by ImGui at the moment\n// IMGUI_API bool MenuItem(const char* label, const char* shortcut, bool* p_selected, bool enabled = true); // return true when activated + toggle (*p_selected) if p_selected != NULL\nexport function MenuItem(label: string, shortcut?: string | null, selected?: boolean, enabled?: boolean): boolean;\nexport function MenuItem(label: string, shortcut: string | null, p_selected: Bind.ImScalar | Bind.ImAccess | null, enabled?: boolean): boolean;\nexport function MenuItem(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.MenuItem_A(label, null, false, true);\n } else if (args.length === 1) {\n const shortcut: string | null = args[0];\n return bind.MenuItem_A(label, shortcut, false, true);\n } else {\n const shortcut: string | null = args[0];\n if (typeof(args[1]) === \"boolean\") {\n const selected: boolean = args[1];\n const enabled: boolean = typeof(args[2]) === \"boolean\" ? args[2] : true;\n return bind.MenuItem_A(label, shortcut, selected, enabled);\n } else {\n const p_selected: Bind.ImScalar | Bind.ImAccess = args[1];\n const enabled: boolean = typeof(args[2]) === \"boolean\" ? args[2] : true;\n const ref_selected: Bind.ImScalar = Array.isArray(p_selected) ? p_selected : [ p_selected() ];\n const ret = bind.MenuItem_B(label, shortcut, ref_selected, enabled);\n if (!Array.isArray(p_selected)) { p_selected(ref_selected[0]); }\n return ret;\n }\n }\n}\n\n// Popups\n// IMGUI_API void OpenPopup(const char* str_id); // call to mark popup as open (don't call every frame!). popups are closed when user click outside, or if CloseCurrentPopup() is called within a BeginPopup()/EndPopup() block. By default, Selectable()/MenuItem() are calling CloseCurrentPopup(). Popup identifiers are relative to the current ID-stack (so OpenPopup and BeginPopup needs to be at the same level).\nexport function OpenPopup(str_id: string): void { bind.OpenPopup(str_id); }\n// IMGUI_API bool OpenPopupOnItemClick(const char* str_id = NULL, int mouse_button = 1); // helper to open popup when clicked on last item. return true when just opened.\nexport function OpenPopupOnItemClick(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.OpenPopupOnItemClick(str_id, mouse_button);\n}\n// IMGUI_API bool BeginPopup(const char* str_id); // return true if the popup is open, and you can start outputting to it. only call EndPopup() if BeginPopup() returned true!\nexport function BeginPopup(str_id: string): boolean { return bind.BeginPopup(str_id); }\n// IMGUI_API bool BeginPopupModal(const char* name, bool* p_open = NULL, ImGuiWindowFlags extra_flags = 0); // modal dialog (block interactions behind the modal window, can't close the modal window by clicking outside)\nexport function BeginPopupModal(str_id: string = \"\", p_open: Bind.ImScalar | Bind.ImAccess | null = null, extra_flags: ImGuiWindowFlags = 0): boolean {\n if (Array.isArray(p_open)) {\n return bind.BeginPopupModal(str_id, p_open, extra_flags);\n } else if (typeof(p_open) === \"function\") {\n const _p_open: Bind.ImScalar = [ p_open() ];\n const ret = bind.BeginPopupModal(str_id, _p_open, extra_flags);\n p_open(_p_open[0]);\n return ret;\n } else {\n return bind.BeginPopupModal(str_id, null, extra_flags);\n }\n}\n// IMGUI_API bool BeginPopupContextItem(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked on last item. if you can pass a NULL str_id only if the previous item had an id. If you want to use that on a non-interactive item such as Text() you need to pass in an explicit ID here. read comments in .cpp!\nexport function BeginPopupContextItem(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.BeginPopupContextItem(str_id, mouse_button);\n}\n// IMGUI_API bool BeginPopupContextWindow(const char* str_id = NULL, int mouse_button = 1, bool also_over_items = true); // helper to open and begin popup when clicked on current window.\nexport function BeginPopupContextWindow(str_id: string | null = null, mouse_button: number = 1, also_over_items: boolean = true): boolean {\n return bind.BeginPopupContextWindow(str_id, mouse_button, also_over_items);\n}\n// IMGUI_API bool BeginPopupContextVoid(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked in void (where there are no imgui windows).\nexport function BeginPopupContextVoid(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.BeginPopupContextVoid(str_id, mouse_button);\n}\n// IMGUI_API void EndPopup();\nexport function EndPopup(): void { bind.EndPopup(); }\n// IMGUI_API bool IsPopupOpen(const char* str_id); // return true if the popup is open\nexport function IsPopupOpen(str_id: string): boolean { return bind.IsPopupOpen(str_id); }\n// IMGUI_API void CloseCurrentPopup(); // close the popup we have begin-ed into. clicking on a MenuItem or Selectable automatically close the current popup.\nexport function CloseCurrentPopup(): void { bind.CloseCurrentPopup(); }\n\n// Tab Bars, Tabs\n// [BETA API] API may evolve!\n// IMGUI_API bool BeginTabBar(const char* str_id, ImGuiTabBarFlags flags = 0); // create and append into a TabBar\nexport function BeginTabBar(str_id: string, flags: ImGuiTabBarFlags = 0): boolean { return bind.BeginTabBar(str_id, flags); }\n// IMGUI_API void EndTabBar(); // only call EndTabBar() if BeginTabBar() returns true!\nexport function EndTabBar(): void { bind.EndTabBar(); }\n// IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags flags = 0);// create a Tab. Returns true if the Tab is selected.\nexport function BeginTabItem(label: string, p_open: Bind.ImScalar | Bind.ImAccess | null = null, flags: ImGuiTabItemFlags = 0): boolean {\n // return bind.BeginTabItem(label, p_open, flags);\n if (p_open === null) {\n return bind.BeginTabItem(label, null, flags);\n } else if (Array.isArray(p_open)) {\n return bind.BeginTabItem(label, p_open, flags);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n const ret = bind.BeginTabItem(label, ref_open, flags);\n p_open(ref_open[0]);\n return ret;\n }\n}\n// IMGUI_API void EndTabItem(); // only call EndTabItem() if BeginTabItem() returns true!\nexport function EndTabItem(): void { bind.EndTabItem(); }\n// IMGUI_API void SetTabItemClosed(const char* tab_or_docked_window_label); // notify TabBar or Docking system of a closed tab/window ahead (useful to reduce visual flicker on reorderable tab bars). For tab-bar: call after BeginTabBar() and before Tab submissions. Otherwise call with a window name.\nexport function SetTabItemClosed(tab_or_docked_window_label: string): void { bind.SetTabItemClosed(tab_or_docked_window_label); }\n\n// Logging/Capture: all text output from interface is captured to tty/file/clipboard. By default, tree nodes are automatically opened during logging.\n// IMGUI_API void LogToTTY(int max_depth = -1); // start logging to tty\nexport function LogToTTY(max_depth: number = -1): void {\n bind.LogToTTY(max_depth);\n}\n// IMGUI_API void LogToFile(int max_depth = -1, const char* filename = NULL); // start logging to file\nexport function LogToFile(max_depth: number = -1, filename: string | null = null): void {\n bind.LogToFile(max_depth, filename);\n}\n// IMGUI_API void LogToClipboard(int max_depth = -1); // start logging to OS clipboard\nexport function LogToClipboard(max_depth: number = -1): void {\n bind.LogToClipboard(max_depth);\n}\n// IMGUI_API void LogFinish(); // stop logging (close file, etc.)\nexport function LogFinish(): void { bind.LogFinish(); }\n// IMGUI_API void LogButtons(); // helper to display buttons for logging to tty/file/clipboard\nexport function LogButtons(): void { bind.LogButtons(); }\n// IMGUI_API void LogText(const char* fmt, ...) IM_FMTARGS(1); // pass text data straight to log (without being displayed)\nexport function LogText(fmt: string): void {\n bind.LogText(fmt);\n}\n\nconst _ImGui_DragDropPayload_data: {[key: string]: any} = {};\n// Drag and Drop\n// [BETA API] Missing Demo code. API may evolve.\n// IMGUI_API bool BeginDragDropSource(ImGuiDragDropFlags flags = 0); // call when the current item is active. If this return true, you can call SetDragDropPayload() + EndDragDropSource()\nexport function BeginDragDropSource(flags: ImGuiDragDropFlags = 0): boolean {\n return bind.BeginDragDropSource(flags);\n}\n// IMGUI_API bool SetDragDropPayload(const char* type, const void* data, size_t size, ImGuiCond cond = 0);// type is a user defined string of maximum 8 characters. Strings starting with '_' are reserved for dear imgui internal types. Data is copied and held by imgui.\nexport function SetDragDropPayload(type: string, data: T, cond: ImGuiCond = 0): boolean {\n _ImGui_DragDropPayload_data[type] = data;\n return bind.SetDragDropPayload(type, data, 0, cond);\n}\n// IMGUI_API void EndDragDropSource();\nexport function EndDragDropSource(): void {\n bind.EndDragDropSource();\n}\n// IMGUI_API bool BeginDragDropTarget(); // call after submitting an item that may receive an item. If this returns true, you can call AcceptDragDropPayload() + EndDragDropTarget()\nexport function BeginDragDropTarget(): boolean {\n return bind.BeginDragDropTarget();\n}\n// IMGUI_API const ImGuiPayload* AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags = 0); // accept contents of a given type. If ImGuiDragDropFlags_AcceptBeforeDelivery is set you can peek into the payload before the mouse button is released.\nexport function AcceptDragDropPayload(type: string, flags: ImGuiDragDropFlags = 0): ImGuiPayload | null {\n const data: T = _ImGui_DragDropPayload_data[type];\n return bind.AcceptDragDropPayload(type, flags) ? { Data: data } : null;\n}\n// IMGUI_API void EndDragDropTarget();\nexport function EndDragDropTarget(): void {\n bind.EndDragDropTarget();\n}\n\n// Clipping\n// IMGUI_API void PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect);\nexport function PushClipRect(clip_rect_min: Readonly, clip_rect_max: Readonly, intersect_with_current_clip_rect: boolean): void {\n bind.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect);\n}\n// IMGUI_API void PopClipRect();\nexport function PopClipRect(): void {\n bind.PopClipRect();\n}\n\n// Focus\n// (FIXME: Those functions will be reworked after we merge the navigation branch + have a pass at focusing/tabbing features.)\n// (Prefer using \"SetItemDefaultFocus()\" over \"if (IsWindowAppearing()) SetScrollHere()\" when applicable, to make your code more forward compatible when navigation branch is merged)\n// IMGUI_API void SetItemDefaultFocus(); // make last item the default focused item of a window (WIP navigation branch only). Pleaase use instead of SetScrollHere().\nexport function SetItemDefaultFocus(): void { bind.SetItemDefaultFocus(); }\n// IMGUI_API void SetKeyboardFocusHere(int offset = 0); // focus keyboard on the next widget. Use positive 'offset' to access sub components of a multiple component widget. Use -1 to access previous widget.\nexport function SetKeyboardFocusHere(offset: number = 0): void {\n bind.SetKeyboardFocusHere(offset);\n}\n\n// Utilities\n// IMGUI_API bool IsItemHovered(ImGuiHoveredFlags flags = 0); // is the last item hovered? (and usable, aka not blocked by a popup, etc.). See ImGuiHoveredFlags for more options.\nexport function IsItemHovered(flags: ImGuiHoveredFlags = 0): boolean {\n return bind.IsItemHovered(flags);\n}\n// IMGUI_API bool IsItemActive(); // is the last item active? (e.g. button being held, text field being edited- items that don't interact will always return false)\nexport function IsItemActive(): boolean { return bind.IsItemActive(); }\n// IMGUI_API bool IsItemEdited(); // is the last item active? (e.g. button being held, text field being edited- items that don't interact will always return false)\nexport function IsItemEdited(): boolean { return bind.IsItemEdited(); }\n// IMGUI_API bool IsItemFocused(); // is the last item focused for keyboard/gamepad navigation?\nexport function IsItemFocused(): boolean { return bind.IsItemFocused(); }\n// IMGUI_API bool IsItemClicked(int mouse_button = 0); // is the last item clicked? (e.g. button/node just clicked on)\nexport function IsItemClicked(mouse_button: number = 0): boolean {\n return bind.IsItemClicked(mouse_button);\n}\n// IMGUI_API bool IsItemVisible(); // is the last item visible? (aka not out of sight due to clipping/scrolling.)\nexport function IsItemVisible(): boolean { return bind.IsItemVisible(); }\n// IMGUI_API bool IsItemActivated(); // was the last item just made active (item was previously inactive).\nexport function IsItemActivated(): boolean { return bind.IsItemActivated(); }\n// IMGUI_API bool IsItemDeactivated(); // was the last item just made inactive (item was previously active). Useful for Undo/Redo patterns with widgets that requires continuous editing.\nexport function IsItemDeactivated(): boolean { return bind.IsItemDeactivated(); }\n// IMGUI_API bool IsItemDeactivatedAfterEdit(); // was the last item just made inactive and made a value change when it was active? (e.g. Slider/Drag moved). Useful for Undo/Redo patterns with widgets that requires continuous editing. Note that you may get false positives (some widgets such as Combo()/ListBox()/Selectable() will return true even when clicking an already selected item).\nexport function IsItemDeactivatedAfterEdit(): boolean { return bind.IsItemDeactivatedAfterEdit(); }\n// IMGUI_API bool IsAnyItemHovered();\nexport function IsAnyItemHovered(): boolean { return bind.IsAnyItemHovered(); }\n// IMGUI_API bool IsAnyItemActive();\nexport function IsAnyItemActive(): boolean { return bind.IsAnyItemActive(); }\n// IMGUI_API bool IsAnyItemFocused();\nexport function IsAnyItemFocused(): boolean { return bind.IsAnyItemFocused(); }\n// IMGUI_API ImVec2 GetItemRectMin(); // get bounding rectangle of last item, in screen space\nexport function GetItemRectMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectMin(out);\n}\n// IMGUI_API ImVec2 GetItemRectMax(); // \"\nexport function GetItemRectMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectMax(out);\n}\n// IMGUI_API ImVec2 GetItemRectSize(); // get size of last item, in screen space\nexport function GetItemRectSize(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectSize(out);\n}\n// IMGUI_API void SetItemAllowOverlap(); // allow last item to be overlapped by a subsequent item. sometimes useful with invisible buttons, selectables, etc. to catch unused area.\nexport function SetItemAllowOverlap(): void { bind.SetItemAllowOverlap(); }\n// IMGUI_API bool IsWindowFocused(ImGuiFocusedFlags flags = 0); // is current window focused? or its root/child, depending on flags. see flags for options.\nexport function IsWindowFocused(flags: ImGuiFocusedFlags = 0): boolean {\n return bind.IsWindowFocused(flags);\n}\n// IMGUI_API bool IsWindowHovered(ImGuiHoveredFlags flags = 0); // is current window hovered (and typically: not blocked by a popup/modal)? see flags for options.\nexport function IsWindowHovered(flags: ImGuiHoveredFlags = 0): boolean {\n return bind.IsWindowHovered(flags);\n}\n// IMGUI_API bool IsRectVisible(const ImVec2& size); // test if rectangle (of given size, starting from cursor position) is visible / not clipped.\n// IMGUI_API bool IsRectVisible(const ImVec2& rect_min, const ImVec2& rect_max); // test if rectangle (in screen space) is visible / not clipped. to perform coarse clipping on user's side.\nexport function IsRectVisible(size: Readonly): boolean;\nexport function IsRectVisible(rect_min: Readonly, rect_max: Readonly): boolean;\nexport function IsRectVisible(...args: any[]): boolean {\n if (args.length === 1) {\n const size: Readonly = args[0];\n return bind.IsRectVisible_A(size);\n } else {\n const rect_min: Readonly = args[0];\n const rect_max: Readonly = args[1];\n return bind.IsRectVisible_B(rect_min, rect_max);\n }\n}\n// IMGUI_API float GetTime();\nexport function GetTime(): number { return bind.GetTime(); }\n// IMGUI_API int GetFrameCount();\nexport function GetFrameCount(): number { return bind.GetFrameCount(); }\nexport function GetBackgroundDrawList(): ImDrawList {\n return new ImDrawList(bind.GetBackgroundDrawList());\n}\nexport function GetForegroundDrawList(): ImDrawList {\n return new ImDrawList(bind.GetForegroundDrawList());\n}\n// IMGUI_API ImDrawListSharedData* GetDrawListSharedData();\nexport function GetDrawListSharedData(): ImDrawListSharedData {\n return new ImDrawListSharedData(bind.GetDrawListSharedData());\n}\n// IMGUI_API const char* GetStyleColorName(ImGuiCol idx);\nexport function GetStyleColorName(idx: ImGuiCol): string { return bind.GetStyleColorName(idx); }\n// IMGUI_API ImVec2 CalcTextSize(const char* text, const char* text_end = NULL, bool hide_text_after_double_hash = false, float wrap_width = -1.0f);\nexport function CalcTextSize(text: string, text_end: number | null = null, hide_text_after_double_hash: boolean = false, wrap_width: number = -1, out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.CalcTextSize(text_end !== null ? text.substring(0, text_end) : text, hide_text_after_double_hash, wrap_width, out);\n}\n// IMGUI_API void CalcListClipping(int items_count, float items_height, int* out_items_display_start, int* out_items_display_end); // calculate coarse clipping for large list of evenly sized items. Prefer using the ImGuiListClipper higher-level helper if you can.\nexport function CalcListClipping(items_count: number, items_height: number, out_items_display_start: Bind.ImScalar, out_items_display_end: Bind.ImScalar): void {\n return bind.CalcListClipping(items_count, items_height, out_items_display_start, out_items_display_end);\n}\n\n// IMGUI_API bool BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags extra_flags = 0); // helper to create a child window / scrolling region that looks like a normal widget frame\nexport function BeginChildFrame(id: Bind.ImGuiID, size: Readonly, extra_flags: ImGuiWindowFlags = 0): boolean {\n return bind.BeginChildFrame(id, size, extra_flags);\n}\n// IMGUI_API void EndChildFrame();\nexport function EndChildFrame(): void { bind.EndChildFrame(); }\n\n// IMGUI_API ImVec4 ColorConvertU32ToFloat4(ImU32 in);\nexport function ColorConvertU32ToFloat4(in_: Bind.ImU32, out: Bind.interface_ImVec4 = new ImVec4()): typeof out {\n return bind.ColorConvertU32ToFloat4(in_, out);\n}\n// IMGUI_API ImU32 ColorConvertFloat4ToU32(const ImVec4& in);\nexport function ColorConvertFloat4ToU32(in_: Readonly): Bind.ImU32 {\n return bind.ColorConvertFloat4ToU32(in_);\n}\n// IMGUI_API void ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v);\nexport function ColorConvertRGBtoHSV(r: number, g: number, b: number, out_h: Bind.ImScalar, out_s: Bind.ImScalar, out_v: Bind.ImScalar): void { bind.ColorConvertRGBtoHSV(r, g, b, out_h, out_s, out_v); }\n// IMGUI_API void ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g, float& out_b);\nexport function ColorConvertHSVtoRGB(h: number, s: number, v: number, out_r: Bind.ImScalar, out_g: Bind.ImScalar, out_b: Bind.ImScalar): void { bind.ColorConvertHSVtoRGB(h, s, v, out_r, out_g, out_b); }\n\n// Inputs\n// IMGUI_API int GetKeyIndex(ImGuiKey imgui_key); // map ImGuiKey_* values into user's key index. == io.KeyMap[key]\nexport function GetKeyIndex(imgui_key: ImGuiKey): number {\n return bind.GetKeyIndex(imgui_key);\n}\n// IMGUI_API bool IsKeyDown(int user_key_index); // is key being held. == io.KeysDown[user_key_index]. note that imgui doesn't know the semantic of each entry of io.KeyDown[]. Use your own indices/enums according to how your backend/engine stored them into KeyDown[]!\nexport function IsKeyDown(user_key_index: number): boolean {\n return bind.IsKeyDown(user_key_index);\n}\n// IMGUI_API bool IsKeyPressed(int user_key_index, bool repeat = true); // was key pressed (went from !Down to Down). if repeat=true, uses io.KeyRepeatDelay / KeyRepeatRate\nexport function IsKeyPressed(user_key_index: number, repeat: boolean = true): boolean {\n return bind.IsKeyPressed(user_key_index, repeat);\n}\n// IMGUI_API bool IsKeyReleased(int user_key_index); // was key released (went from Down to !Down)..\nexport function IsKeyReleased(user_key_index: number): boolean {\n return bind.IsKeyReleased(user_key_index);\n}\n// IMGUI_API int GetKeyPressedAmount(int key_index, float repeat_delay, float rate); // uses provided repeat rate/delay. return a count, most often 0 or 1 but might be >1 if RepeatRate is small enough that DeltaTime > RepeatRate\nexport function GetKeyPressedAmount(user_key_index: number, repeat_delay: number, rate: number): number {\n return bind.GetKeyPressedAmount(user_key_index, repeat_delay, rate);\n}\n// IMGUI_API bool IsMouseDown(int button); // is mouse button held\nexport function IsMouseDown(button: number): boolean {\n return bind.IsMouseDown(button);\n}\n// IMGUI_API bool IsMouseClicked(int button, bool repeat = false); // did mouse button clicked (went from !Down to Down)\nexport function IsMouseClicked(button: number, repeat: boolean = false): boolean {\n return bind.IsMouseClicked(button, repeat);\n}\n// IMGUI_API bool IsMouseDoubleClicked(int button); // did mouse button double-clicked. a double-click returns false in IsMouseClicked(). uses io.MouseDoubleClickTime.\nexport function IsMouseDoubleClicked(button: number): boolean {\n return bind.IsMouseDoubleClicked(button);\n}\n// IMGUI_API bool IsMouseReleased(int button); // did mouse button released (went from Down to !Down)\nexport function IsMouseReleased(button: number): boolean {\n return bind.IsMouseReleased(button);\n}\n// IMGUI_API bool IsMouseDragging(int button = 0, float lock_threshold = -1.0f); // is mouse dragging. if lock_threshold < -1.0f uses io.MouseDraggingThreshold\nexport function IsMouseDragging(button: number = 0, lock_threshold: number = -1.0): boolean {\n return bind.IsMouseDragging(button, lock_threshold);\n}\n// IMGUI_API bool IsMouseHoveringRect(const ImVec2& r_min, const ImVec2& r_max, bool clip = true); // is mouse hovering given bounding rect (in screen space). clipped by current clipping settings. disregarding of consideration of focus/window ordering/blocked by a popup.\nexport function IsMouseHoveringRect(r_min: Readonly, r_max: Readonly, clip: boolean = true): boolean {\n return bind.IsMouseHoveringRect(r_min, r_max, clip);\n}\n// IMGUI_API bool IsMousePosValid(const ImVec2* mouse_pos = NULL); //\nexport function IsMousePosValid(mouse_pos: Readonly | null = null): boolean {\n return bind.IsMousePosValid(mouse_pos);\n}\n// IMGUI_API ImVec2 GetMousePos(); // shortcut to ImGui::GetIO().MousePos provided by user, to be consistent with other calls\nexport function GetMousePos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMousePos(out);\n}\n// IMGUI_API ImVec2 GetMousePosOnOpeningCurrentPopup(); // retrieve backup of mouse positioning at the time of opening popup we have BeginPopup() into\nexport function GetMousePosOnOpeningCurrentPopup(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMousePosOnOpeningCurrentPopup(out);\n}\n// IMGUI_API ImVec2 GetMouseDragDelta(int button = 0, float lock_threshold = -1.0f); // dragging amount since clicking. if lock_threshold < -1.0f uses io.MouseDraggingThreshold\nexport function GetMouseDragDelta(button: number = 0, lock_threshold: number = -1.0, out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMouseDragDelta(button, lock_threshold, out);\n}\n// IMGUI_API void ResetMouseDragDelta(int button = 0); //\nexport function ResetMouseDragDelta(button: number = 0): void {\n bind.ResetMouseDragDelta(button);\n}\n// IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you\nexport function GetMouseCursor(): ImGuiMouseCursor { return bind.GetMouseCursor(); }\n// IMGUI_API void SetMouseCursor(ImGuiMouseCursor type); // set desired cursor type\nexport function SetMouseCursor(type: ImGuiMouseCursor): void { bind.SetMouseCursor(type); }\n// IMGUI_API void CaptureKeyboardFromApp(bool capture = true); // manually override io.WantCaptureKeyboard flag next frame (said flag is entirely left for your application handle). e.g. force capture keyboard when your widget is being hovered.\nexport function CaptureKeyboardFromApp(capture: boolean = true) {\n return bind.CaptureKeyboardFromApp(capture);\n}\n// IMGUI_API void CaptureMouseFromApp(bool capture = true); // manually override io.WantCaptureMouse flag next frame (said flag is entirely left for your application handle).\nexport function CaptureMouseFromApp(capture: boolean = true): void {\n bind.CaptureMouseFromApp(capture);\n}\n\n// Clipboard Utilities (also see the LogToClipboard() function to capture or output text data to the clipboard)\n// IMGUI_API const char* GetClipboardText();\nexport function GetClipboardText(): string { return bind.GetClipboardText(); }\n// IMGUI_API void SetClipboardText(const char* text);\nexport function SetClipboardText(text: string): void { bind.SetClipboardText(text); }\n\n// Settings/.Ini Utilities\n// The disk functions are automatically called if io.IniFilename != NULL (default is \"imgui.ini\").\n// Set io.IniFilename to NULL to load/save manually. Read io.WantSaveIniSettings description about handling .ini saving manually.\n// IMGUI_API void LoadIniSettingsFromDisk(const char* ini_filename); // call after CreateContext() and before the first call to NewFrame(). NewFrame() automatically calls LoadIniSettingsFromDisk(io.IniFilename).\nexport function LoadIniSettingsFromDisk(ini_filename: string): void { throw new Error(); } // TODO\n// IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source.\nexport function LoadIniSettingsFromMemory(ini_data: string, ini_size: number = 0): void { bind.LoadIniSettingsFromMemory(ini_data); }\n// IMGUI_API void SaveIniSettingsToDisk(const char* ini_filename);\nexport function SaveIniSettingsToDisk(ini_filename: string): void { throw new Error(); } // TODO\n// IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings.\nexport function SaveIniSettingsToMemory(out_ini_size: Bind.ImScalar | null = null): string { return bind.SaveIniSettingsToMemory(); }\n\n// Memory Utilities\n// All those functions are not reliant on the current context.\n// If you reload the contents of imgui.cpp at runtime, you may need to call SetCurrentContext() + SetAllocatorFunctions() again.\n// IMGUI_API void SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void(*free_func)(void* ptr, void* user_data), void* user_data = NULL);\nexport function SetAllocatorFunctions(alloc_func: (sz: number, user_data: any) => number, free_func: (ptr: number, user_data: any) => void, user_data: any = null): void {\n bind.SetAllocatorFunctions(alloc_func, free_func, user_data);\n}\n// IMGUI_API void* MemAlloc(size_t sz);\nexport function MemAlloc(sz: number): void { bind.MemAlloc(sz); }\n// IMGUI_API void MemFree(void* ptr);\nexport function MemFree(ptr: any): void { bind.MemFree(ptr); }\n","(function(global){\n\n//\n// Check for native Promise and it has correct interface\n//\n\nvar NativePromise = global['Promise'];\nvar nativePromiseSupported =\n NativePromise &&\n // Some of these methods are missing from\n // Firefox/Chrome experimental implementations\n 'resolve' in NativePromise &&\n 'reject' in NativePromise &&\n 'all' in NativePromise &&\n 'race' in NativePromise &&\n // Older version of the spec had a resolver object\n // as the arg rather than a function\n (function(){\n var resolve;\n new NativePromise(function(r){ resolve = r; });\n return typeof resolve === 'function';\n })();\n\n\n//\n// export if necessary\n//\n\nif (typeof exports !== 'undefined' && exports)\n{\n // node.js\n exports.Promise = nativePromiseSupported ? NativePromise : Promise;\n exports.Polyfill = Promise;\n}\nelse\n{\n // AMD\n if (typeof define == 'function' && define.amd)\n {\n define(function(){\n return nativePromiseSupported ? NativePromise : Promise;\n });\n }\n else\n {\n // in browser add to global\n if (!nativePromiseSupported)\n global['Promise'] = Promise;\n }\n}\n\n\n//\n// Polyfill\n//\n\nvar PENDING = 'pending';\nvar SEALED = 'sealed';\nvar FULFILLED = 'fulfilled';\nvar REJECTED = 'rejected';\nvar NOOP = function(){};\n\nfunction isArray(value) {\n return Object.prototype.toString.call(value) === '[object Array]';\n}\n\n// async calls\nvar asyncSetTimer = typeof setImmediate !== 'undefined' ? setImmediate : setTimeout;\nvar asyncQueue = [];\nvar asyncTimer;\n\nfunction asyncFlush(){\n // run promise callbacks\n for (var i = 0; i < asyncQueue.length; i++)\n asyncQueue[i][0](asyncQueue[i][1]);\n\n // reset async asyncQueue\n asyncQueue = [];\n asyncTimer = false;\n}\n\nfunction asyncCall(callback, arg){\n asyncQueue.push([callback, arg]);\n\n if (!asyncTimer)\n {\n asyncTimer = true;\n asyncSetTimer(asyncFlush, 0);\n }\n}\n\n\nfunction invokeResolver(resolver, promise) {\n function resolvePromise(value) {\n resolve(promise, value);\n }\n\n function rejectPromise(reason) {\n reject(promise, reason);\n }\n\n try {\n resolver(resolvePromise, rejectPromise);\n } catch(e) {\n rejectPromise(e);\n }\n}\n\nfunction invokeCallback(subscriber){\n var owner = subscriber.owner;\n var settled = owner.state_;\n var value = owner.data_; \n var callback = subscriber[settled];\n var promise = subscriber.then;\n\n if (typeof callback === 'function')\n {\n settled = FULFILLED;\n try {\n value = callback(value);\n } catch(e) {\n reject(promise, e);\n }\n }\n\n if (!handleThenable(promise, value))\n {\n if (settled === FULFILLED)\n resolve(promise, value);\n\n if (settled === REJECTED)\n reject(promise, value);\n }\n}\n\nfunction handleThenable(promise, value) {\n var resolved;\n\n try {\n if (promise === value)\n throw new TypeError('A promises callback cannot return that same promise.');\n\n if (value && (typeof value === 'function' || typeof value === 'object'))\n {\n var then = value.then; // then should be retrived only once\n\n if (typeof then === 'function')\n {\n then.call(value, function(val){\n if (!resolved)\n {\n resolved = true;\n\n if (value !== val)\n resolve(promise, val);\n else\n fulfill(promise, val);\n }\n }, function(reason){\n if (!resolved)\n {\n resolved = true;\n\n reject(promise, reason);\n }\n });\n\n return true;\n }\n }\n } catch (e) {\n if (!resolved)\n reject(promise, e);\n\n return true;\n }\n\n return false;\n}\n\nfunction resolve(promise, value){\n if (promise === value || !handleThenable(promise, value))\n fulfill(promise, value);\n}\n\nfunction fulfill(promise, value){\n if (promise.state_ === PENDING)\n {\n promise.state_ = SEALED;\n promise.data_ = value;\n\n asyncCall(publishFulfillment, promise);\n }\n}\n\nfunction reject(promise, reason){\n if (promise.state_ === PENDING)\n {\n promise.state_ = SEALED;\n promise.data_ = reason;\n\n asyncCall(publishRejection, promise);\n }\n}\n\nfunction publish(promise) {\n var callbacks = promise.then_;\n promise.then_ = undefined;\n\n for (var i = 0; i < callbacks.length; i++) {\n invokeCallback(callbacks[i]);\n }\n}\n\nfunction publishFulfillment(promise){\n promise.state_ = FULFILLED;\n publish(promise);\n}\n\nfunction publishRejection(promise){\n promise.state_ = REJECTED;\n publish(promise);\n}\n\n/**\n* @class\n*/\nfunction Promise(resolver){\n if (typeof resolver !== 'function')\n throw new TypeError('Promise constructor takes a function argument');\n\n if (this instanceof Promise === false)\n throw new TypeError('Failed to construct \\'Promise\\': Please use the \\'new\\' operator, this object constructor cannot be called as a function.');\n\n this.then_ = [];\n\n invokeResolver(resolver, this);\n}\n\nPromise.prototype = {\n constructor: Promise,\n\n state_: PENDING,\n then_: null,\n data_: undefined,\n\n then: function(onFulfillment, onRejection){\n var subscriber = {\n owner: this,\n then: new this.constructor(NOOP),\n fulfilled: onFulfillment,\n rejected: onRejection\n };\n\n if (this.state_ === FULFILLED || this.state_ === REJECTED)\n {\n // already resolved, call callback async\n asyncCall(invokeCallback, subscriber);\n }\n else\n {\n // subscribe\n this.then_.push(subscriber);\n }\n\n return subscriber.then;\n },\n\n 'catch': function(onRejection) {\n return this.then(null, onRejection);\n }\n};\n\nPromise.all = function(promises){\n var Class = this;\n\n if (!isArray(promises))\n throw new TypeError('You must pass an array to Promise.all().');\n\n return new Class(function(resolve, reject){\n var results = [];\n var remaining = 0;\n\n function resolver(index){\n remaining++;\n return function(value){\n results[index] = value;\n if (!--remaining)\n resolve(results);\n };\n }\n\n for (var i = 0, promise; i < promises.length; i++)\n {\n promise = promises[i];\n\n if (promise && typeof promise.then === 'function')\n promise.then(resolver(i), reject);\n else\n results[i] = promise;\n }\n\n if (!remaining)\n resolve(results);\n });\n};\n\nPromise.race = function(promises){\n var Class = this;\n\n if (!isArray(promises))\n throw new TypeError('You must pass an array to Promise.race().');\n\n return new Class(function(resolve, reject) {\n for (var i = 0, promise; i < promises.length; i++)\n {\n promise = promises[i];\n\n if (promise && typeof promise.then === 'function')\n promise.then(resolve, reject);\n else\n resolve(promise);\n }\n });\n};\n\nPromise.resolve = function(value){\n var Class = this;\n\n if (value && typeof value === 'object' && value.constructor === Class)\n return value;\n\n return new Class(function(resolve){\n resolve(value);\n });\n};\n\nPromise.reject = function(reason){\n var Class = this;\n\n return new Class(function(resolve, reject){\n reject(reason);\n });\n};\n\n})(typeof window != 'undefined' ? window : typeof global != 'undefined' ? global : typeof self != 'undefined' ? self : this);\n","/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\n\n'use strict';\n/* eslint-disable no-unused-vars */\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\n\nfunction toObject(val) {\n\tif (val === null || val === undefined) {\n\t\tthrow new TypeError('Object.assign cannot be called with null or undefined');\n\t}\n\n\treturn Object(val);\n}\n\nfunction shouldUseNative() {\n\ttry {\n\t\tif (!Object.assign) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Detect buggy property enumeration order in older V8 versions.\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=4118\n\t\tvar test1 = new String('abc'); // eslint-disable-line no-new-wrappers\n\t\ttest1[5] = 'de';\n\t\tif (Object.getOwnPropertyNames(test1)[0] === '5') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test2 = {};\n\t\tfor (var i = 0; i < 10; i++) {\n\t\t\ttest2['_' + String.fromCharCode(i)] = i;\n\t\t}\n\t\tvar order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n\t\t\treturn test2[n];\n\t\t});\n\t\tif (order2.join('') !== '0123456789') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test3 = {};\n\t\t'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n\t\t\ttest3[letter] = letter;\n\t\t});\n\t\tif (Object.keys(Object.assign({}, test3)).join('') !==\n\t\t\t\t'abcdefghijklmnopqrst') {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t} catch (err) {\n\t\t// We don't expect any of the above to throw, but better to be safe.\n\t\treturn false;\n\t}\n}\n\nmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n\tvar from;\n\tvar to = toObject(target);\n\tvar symbols;\n\n\tfor (var s = 1; s < arguments.length; s++) {\n\t\tfrom = Object(arguments[s]);\n\n\t\tfor (var key in from) {\n\t\t\tif (hasOwnProperty.call(from, key)) {\n\t\t\t\tto[key] = from[key];\n\t\t\t}\n\t\t}\n\n\t\tif (getOwnPropertySymbols) {\n\t\t\tsymbols = getOwnPropertySymbols(from);\n\t\t\tfor (var i = 0; i < symbols.length; i++) {\n\t\t\t\tif (propIsEnumerable.call(from, symbols[i])) {\n\t\t\t\t\tto[symbols[i]] = from[symbols[i]];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn to;\n};\n","/*!\n * @pixi/polyfill - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/polyfill is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Polyfill } from 'es6-promise-polyfill';\nimport objectAssign from 'object-assign';\n\n// Support for IE 9 - 11 which does not include Promises\nif (!window.Promise)\n{\n window.Promise = Polyfill;\n}\n\n// References:\n\nif (!Object.assign)\n{\n Object.assign = objectAssign;\n}\n\nvar commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\n// References:\n// http://paulirish.com/2011/requestanimationframe-for-smart-animating/\n// https://gist.github.com/1579671\n// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision\n// https://gist.github.com/timhall/4078614\n// https://github.com/Financial-Times/polyfill-service/tree/master/polyfills/requestAnimationFrame\n\n// Expected to be used with Browserfiy\n// Browserify automatically detects the use of `global` and passes the\n// correct reference of `global`, `self`, and finally `window`\n\nvar ONE_FRAME_TIME = 16;\n\n// Date.now\nif (!(Date.now && Date.prototype.getTime))\n{\n Date.now = function now()\n {\n return new Date().getTime();\n };\n}\n\n// performance.now\nif (!(commonjsGlobal.performance && commonjsGlobal.performance.now))\n{\n var startTime = Date.now();\n\n if (!commonjsGlobal.performance)\n {\n commonjsGlobal.performance = {};\n }\n\n commonjsGlobal.performance.now = function () { return Date.now() - startTime; };\n}\n\n// requestAnimationFrame\nvar lastTime = Date.now();\nvar vendors = ['ms', 'moz', 'webkit', 'o'];\n\nfor (var x = 0; x < vendors.length && !commonjsGlobal.requestAnimationFrame; ++x)\n{\n var p = vendors[x];\n\n commonjsGlobal.requestAnimationFrame = commonjsGlobal[(p + \"RequestAnimationFrame\")];\n commonjsGlobal.cancelAnimationFrame = commonjsGlobal[(p + \"CancelAnimationFrame\")] || commonjsGlobal[(p + \"CancelRequestAnimationFrame\")];\n}\n\nif (!commonjsGlobal.requestAnimationFrame)\n{\n commonjsGlobal.requestAnimationFrame = function (callback) {\n if (typeof callback !== 'function')\n {\n throw new TypeError((callback + \"is not a function\"));\n }\n\n var currentTime = Date.now();\n var delay = ONE_FRAME_TIME + lastTime - currentTime;\n\n if (delay < 0)\n {\n delay = 0;\n }\n\n lastTime = currentTime;\n\n return setTimeout(function () {\n lastTime = Date.now();\n callback(performance.now());\n }, delay);\n };\n}\n\nif (!commonjsGlobal.cancelAnimationFrame)\n{\n commonjsGlobal.cancelAnimationFrame = function (id) { return clearTimeout(id); };\n}\n\n// References:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign\n\nif (!Math.sign)\n{\n Math.sign = function mathSign(x)\n {\n x = Number(x);\n\n if (x === 0 || isNaN(x))\n {\n return x;\n }\n\n return x > 0 ? 1 : -1;\n };\n}\n\n// References:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger\n\nif (!Number.isInteger)\n{\n Number.isInteger = function numberIsInteger(value)\n {\n return typeof value === 'number' && isFinite(value) && Math.floor(value) === value;\n };\n}\n\nif (!window.ArrayBuffer)\n{\n window.ArrayBuffer = Array;\n}\n\nif (!window.Float32Array)\n{\n window.Float32Array = Array;\n}\n\nif (!window.Uint32Array)\n{\n window.Uint32Array = Array;\n}\n\nif (!window.Uint16Array)\n{\n window.Uint16Array = Array;\n}\n\nif (!window.Uint8Array)\n{\n window.Uint8Array = Array;\n}\n\nif (!window.Int32Array)\n{\n window.Int32Array = Array;\n}\n//# sourceMappingURL=polyfill.es.js.map\n","(function(global) {\n var apple_phone = /iPhone/i,\n apple_ipod = /iPod/i,\n apple_tablet = /iPad/i,\n android_phone = /\\bAndroid(?:.+)Mobile\\b/i, // Match 'Android' AND 'Mobile'\n android_tablet = /Android/i,\n amazon_phone = /\\bAndroid(?:.+)SD4930UR\\b/i,\n amazon_tablet = /\\bAndroid(?:.+)(?:KF[A-Z]{2,4})\\b/i,\n windows_phone = /Windows Phone/i,\n windows_tablet = /\\bWindows(?:.+)ARM\\b/i, // Match 'Windows' AND 'ARM'\n other_blackberry = /BlackBerry/i,\n other_blackberry_10 = /BB10/i,\n other_opera = /Opera Mini/i,\n other_chrome = /\\b(CriOS|Chrome)(?:.+)Mobile/i,\n other_firefox = /Mobile(?:.+)Firefox\\b/i; // Match 'Mobile' AND 'Firefox'\n\n function match(regex, userAgent) {\n return regex.test(userAgent);\n }\n\n function isMobile(userAgent) {\n var ua =\n userAgent ||\n (typeof navigator !== 'undefined' ? navigator.userAgent : '');\n\n // Facebook mobile app's integrated browser adds a bunch of strings that\n // match everything. Strip it out if it exists.\n var tmp = ua.split('[FBAN');\n if (typeof tmp[1] !== 'undefined') {\n ua = tmp[0];\n }\n\n // Twitter mobile app's integrated browser on iPad adds a \"Twitter for\n // iPhone\" string. Same probably happens on other tablet platforms.\n // This will confuse detection so strip it out if it exists.\n tmp = ua.split('Twitter');\n if (typeof tmp[1] !== 'undefined') {\n ua = tmp[0];\n }\n\n var result = {\n apple: {\n phone: match(apple_phone, ua) && !match(windows_phone, ua),\n ipod: match(apple_ipod, ua),\n tablet:\n !match(apple_phone, ua) &&\n match(apple_tablet, ua) &&\n !match(windows_phone, ua),\n device:\n (match(apple_phone, ua) ||\n match(apple_ipod, ua) ||\n match(apple_tablet, ua)) &&\n !match(windows_phone, ua)\n },\n amazon: {\n phone: match(amazon_phone, ua),\n tablet: !match(amazon_phone, ua) && match(amazon_tablet, ua),\n device: match(amazon_phone, ua) || match(amazon_tablet, ua)\n },\n android: {\n phone:\n (!match(windows_phone, ua) && match(amazon_phone, ua)) ||\n (!match(windows_phone, ua) && match(android_phone, ua)),\n tablet:\n !match(windows_phone, ua) &&\n !match(amazon_phone, ua) &&\n !match(android_phone, ua) &&\n (match(amazon_tablet, ua) || match(android_tablet, ua)),\n device:\n (!match(windows_phone, ua) &&\n (match(amazon_phone, ua) ||\n match(amazon_tablet, ua) ||\n match(android_phone, ua) ||\n match(android_tablet, ua))) ||\n match(/\\bokhttp\\b/i, ua)\n },\n windows: {\n phone: match(windows_phone, ua),\n tablet: match(windows_tablet, ua),\n device: match(windows_phone, ua) || match(windows_tablet, ua)\n },\n other: {\n blackberry: match(other_blackberry, ua),\n blackberry10: match(other_blackberry_10, ua),\n opera: match(other_opera, ua),\n firefox: match(other_firefox, ua),\n chrome: match(other_chrome, ua),\n device:\n match(other_blackberry, ua) ||\n match(other_blackberry_10, ua) ||\n match(other_opera, ua) ||\n match(other_firefox, ua) ||\n match(other_chrome, ua)\n }\n };\n (result.any =\n result.apple.device ||\n result.android.device ||\n result.windows.device ||\n result.other.device),\n // excludes 'other' devices and ipods, targeting touchscreen phones\n (result.phone =\n result.apple.phone || result.android.phone || result.windows.phone),\n (result.tablet =\n result.apple.tablet || result.android.tablet || result.windows.tablet);\n\n return result;\n }\n\n if (\n typeof module !== 'undefined' &&\n module.exports &&\n typeof window === 'undefined'\n ) {\n // Node.js\n module.exports = isMobile;\n } else if (\n typeof module !== 'undefined' &&\n module.exports &&\n typeof window !== 'undefined'\n ) {\n // Browserify\n module.exports = isMobile();\n module.exports.isMobile = isMobile;\n } else if (typeof define === 'function' && define.amd) {\n // AMD\n define([], (global.isMobile = isMobile()));\n } else {\n global.isMobile = isMobile();\n }\n})(this);\n","/*!\n * @pixi/settings - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/settings is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport isMobile from 'ismobilejs';\nexport { default as isMobile } from 'ismobilejs';\n\n/**\n * The maximum recommended texture units to use.\n * In theory the bigger the better, and for desktop we'll use as many as we can.\n * But some mobile devices slow down if there is to many branches in the shader.\n * So in practice there seems to be a sweet spot size that varies depending on the device.\n *\n * In v4, all mobile devices were limited to 4 texture units because for this.\n * In v5, we allow all texture units to be used on modern Apple or Android devices.\n *\n * @private\n * @param {number} max\n * @returns {number}\n */\nfunction maxRecommendedTextures(max)\n{\n var allowMax = true;\n\n if (isMobile.tablet || isMobile.phone)\n {\n allowMax = false;\n\n if (isMobile.apple.device)\n {\n var match = (navigator.userAgent).match(/OS (\\d+)_(\\d+)?/);\n\n if (match)\n {\n var majorVersion = parseInt(match[1], 10);\n\n // All texture units can be used on devices that support ios 11 or above\n if (majorVersion >= 11)\n {\n allowMax = true;\n }\n }\n }\n if (isMobile.android.device)\n {\n var match$1 = (navigator.userAgent).match(/Android\\s([0-9.]*)/);\n\n if (match$1)\n {\n var majorVersion$1 = parseInt(match$1[1], 10);\n\n // All texture units can be used on devices that support Android 7 (Nougat) or above\n if (majorVersion$1 >= 7)\n {\n allowMax = true;\n }\n }\n }\n }\n\n return allowMax ? max : 4;\n}\n\n/**\n * Uploading the same buffer multiple times in a single frame can cause performance issues.\n * Apparent on iOS so only check for that at the moment\n * This check may become more complex if this issue pops up elsewhere.\n *\n * @private\n * @returns {boolean}\n */\nfunction canUploadSameBuffer()\n{\n return !isMobile.apple.device;\n}\n\n/**\n * User's customizable globals for overriding the default PIXI settings, such\n * as a renderer's default resolution, framerate, float precision, etc.\n * @example\n * // Use the native window resolution as the default resolution\n * // will support high-density displays when rendering\n * PIXI.settings.RESOLUTION = window.devicePixelRatio;\n *\n * // Disable interpolation when scaling, will make texture be pixelated\n * PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST;\n * @namespace PIXI.settings\n */\nvar settings = {\n\n /**\n * If set to true WebGL will attempt make textures mimpaped by default.\n * Mipmapping will only succeed if the base texture uploaded has power of two dimensions.\n *\n * @static\n * @name MIPMAP_TEXTURES\n * @memberof PIXI.settings\n * @type {PIXI.MIPMAP_MODES}\n * @default PIXI.MIPMAP_MODES.POW2\n */\n MIPMAP_TEXTURES: 1,\n\n /**\n * Default anisotropic filtering level of textures.\n * Usually from 0 to 16\n *\n * @static\n * @name ANISOTROPIC_LEVEL\n * @memberof PIXI.settings\n * @type {number}\n * @default 0\n */\n ANISOTROPIC_LEVEL: 0,\n\n /**\n * Default resolution / device pixel ratio of the renderer.\n *\n * @static\n * @name RESOLUTION\n * @memberof PIXI.settings\n * @type {number}\n * @default 1\n */\n RESOLUTION: 1,\n\n /**\n * Default filter resolution.\n *\n * @static\n * @name FILTER_RESOLUTION\n * @memberof PIXI.settings\n * @type {number}\n * @default 1\n */\n FILTER_RESOLUTION: 1,\n\n /**\n * The maximum textures that this device supports.\n *\n * @static\n * @name SPRITE_MAX_TEXTURES\n * @memberof PIXI.settings\n * @type {number}\n * @default 32\n */\n SPRITE_MAX_TEXTURES: maxRecommendedTextures(32),\n\n // TODO: maybe change to SPRITE.BATCH_SIZE: 2000\n // TODO: maybe add PARTICLE.BATCH_SIZE: 15000\n\n /**\n * The default sprite batch size.\n *\n * The default aims to balance desktop and mobile devices.\n *\n * @static\n * @name SPRITE_BATCH_SIZE\n * @memberof PIXI.settings\n * @type {number}\n * @default 4096\n */\n SPRITE_BATCH_SIZE: 4096,\n\n /**\n * The default render options if none are supplied to {@link PIXI.Renderer}\n * or {@link PIXI.CanvasRenderer}.\n *\n * @static\n * @name RENDER_OPTIONS\n * @memberof PIXI.settings\n * @type {object}\n * @property {HTMLCanvasElement} view=null\n * @property {number} resolution=1\n * @property {boolean} antialias=false\n * @property {boolean} forceFXAA=false\n * @property {boolean} autoDensity=false\n * @property {boolean} transparent=false\n * @property {number} backgroundColor=0x000000\n * @property {boolean} clearBeforeRender=true\n * @property {boolean} preserveDrawingBuffer=false\n * @property {number} width=800\n * @property {number} height=600\n * @property {boolean} legacy=false\n */\n RENDER_OPTIONS: {\n view: null,\n antialias: false,\n forceFXAA: false,\n autoDensity: false,\n transparent: false,\n backgroundColor: 0x000000,\n clearBeforeRender: true,\n preserveDrawingBuffer: false,\n width: 800,\n height: 600,\n legacy: false,\n },\n\n /**\n * Default Garbage Collection mode.\n *\n * @static\n * @name GC_MODE\n * @memberof PIXI.settings\n * @type {PIXI.GC_MODES}\n * @default PIXI.GC_MODES.AUTO\n */\n GC_MODE: 0,\n\n /**\n * Default Garbage Collection max idle.\n *\n * @static\n * @name GC_MAX_IDLE\n * @memberof PIXI.settings\n * @type {number}\n * @default 3600\n */\n GC_MAX_IDLE: 60 * 60,\n\n /**\n * Default Garbage Collection maximum check count.\n *\n * @static\n * @name GC_MAX_CHECK_COUNT\n * @memberof PIXI.settings\n * @type {number}\n * @default 600\n */\n GC_MAX_CHECK_COUNT: 60 * 10,\n\n /**\n * Default wrap modes that are supported by pixi.\n *\n * @static\n * @name WRAP_MODE\n * @memberof PIXI.settings\n * @type {PIXI.WRAP_MODES}\n * @default PIXI.WRAP_MODES.CLAMP\n */\n WRAP_MODE: 33071,\n\n /**\n * Default scale mode for textures.\n *\n * @static\n * @name SCALE_MODE\n * @memberof PIXI.settings\n * @type {PIXI.SCALE_MODES}\n * @default PIXI.SCALE_MODES.LINEAR\n */\n SCALE_MODE: 1,\n\n /**\n * Default specify float precision in vertex shader.\n *\n * @static\n * @name PRECISION_VERTEX\n * @memberof PIXI.settings\n * @type {PIXI.PRECISION}\n * @default PIXI.PRECISION.HIGH\n */\n PRECISION_VERTEX: 'highp',\n\n /**\n * Default specify float precision in fragment shader.\n * iOS is best set at highp due to https://github.com/pixijs/pixi.js/issues/3742\n *\n * @static\n * @name PRECISION_FRAGMENT\n * @memberof PIXI.settings\n * @type {PIXI.PRECISION}\n * @default PIXI.PRECISION.MEDIUM\n */\n PRECISION_FRAGMENT: isMobile.apple.device ? 'highp' : 'mediump',\n\n /**\n * Can we upload the same buffer in a single frame?\n *\n * @static\n * @name CAN_UPLOAD_SAME_BUFFER\n * @memberof PIXI.settings\n * @type {boolean}\n */\n CAN_UPLOAD_SAME_BUFFER: canUploadSameBuffer(),\n\n /**\n * Enables bitmap creation before image load. This feature is experimental.\n *\n * @static\n * @name CREATE_IMAGE_BITMAP\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\n CREATE_IMAGE_BITMAP: false,\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n *\n * @static\n * @constant\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\n ROUND_PIXELS: false,\n};\n\nexport { settings };\n//# sourceMappingURL=settings.es.js.map\n","'use strict';\n\nvar has = Object.prototype.hasOwnProperty\n , prefix = '~';\n\n/**\n * Constructor to create a storage for our `EE` objects.\n * An `Events` instance is a plain object whose properties are event names.\n *\n * @constructor\n * @private\n */\nfunction Events() {}\n\n//\n// We try to not inherit from `Object.prototype`. In some engines creating an\n// instance in this way is faster than calling `Object.create(null)` directly.\n// If `Object.create(null)` is not supported we prefix the event names with a\n// character to make sure that the built-in object properties are not\n// overridden or used as an attack vector.\n//\nif (Object.create) {\n Events.prototype = Object.create(null);\n\n //\n // This hack is needed because the `__proto__` property is still inherited in\n // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5.\n //\n if (!new Events().__proto__) prefix = false;\n}\n\n/**\n * Representation of a single event listener.\n *\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} [once=false] Specify if the listener is a one-time listener.\n * @constructor\n * @private\n */\nfunction EE(fn, context, once) {\n this.fn = fn;\n this.context = context;\n this.once = once || false;\n}\n\n/**\n * Add a listener for a given event.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} once Specify if the listener is a one-time listener.\n * @returns {EventEmitter}\n * @private\n */\nfunction addListener(emitter, event, fn, context, once) {\n if (typeof fn !== 'function') {\n throw new TypeError('The listener must be a function');\n }\n\n var listener = new EE(fn, context || emitter, once)\n , evt = prefix ? prefix + event : event;\n\n if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;\n else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);\n else emitter._events[evt] = [emitter._events[evt], listener];\n\n return emitter;\n}\n\n/**\n * Clear event by name.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} evt The Event name.\n * @private\n */\nfunction clearEvent(emitter, evt) {\n if (--emitter._eventsCount === 0) emitter._events = new Events();\n else delete emitter._events[evt];\n}\n\n/**\n * Minimal `EventEmitter` interface that is molded against the Node.js\n * `EventEmitter` interface.\n *\n * @constructor\n * @public\n */\nfunction EventEmitter() {\n this._events = new Events();\n this._eventsCount = 0;\n}\n\n/**\n * Return an array listing the events for which the emitter has registered\n * listeners.\n *\n * @returns {Array}\n * @public\n */\nEventEmitter.prototype.eventNames = function eventNames() {\n var names = []\n , events\n , name;\n\n if (this._eventsCount === 0) return names;\n\n for (name in (events = this._events)) {\n if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);\n }\n\n if (Object.getOwnPropertySymbols) {\n return names.concat(Object.getOwnPropertySymbols(events));\n }\n\n return names;\n};\n\n/**\n * Return the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Array} The registered listeners.\n * @public\n */\nEventEmitter.prototype.listeners = function listeners(event) {\n var evt = prefix ? prefix + event : event\n , handlers = this._events[evt];\n\n if (!handlers) return [];\n if (handlers.fn) return [handlers.fn];\n\n for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) {\n ee[i] = handlers[i].fn;\n }\n\n return ee;\n};\n\n/**\n * Return the number of listeners listening to a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Number} The number of listeners.\n * @public\n */\nEventEmitter.prototype.listenerCount = function listenerCount(event) {\n var evt = prefix ? prefix + event : event\n , listeners = this._events[evt];\n\n if (!listeners) return 0;\n if (listeners.fn) return 1;\n return listeners.length;\n};\n\n/**\n * Calls each of the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Boolean} `true` if the event had listeners, else `false`.\n * @public\n */\nEventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return false;\n\n var listeners = this._events[evt]\n , len = arguments.length\n , args\n , i;\n\n if (listeners.fn) {\n if (listeners.once) this.removeListener(event, listeners.fn, undefined, true);\n\n switch (len) {\n case 1: return listeners.fn.call(listeners.context), true;\n case 2: return listeners.fn.call(listeners.context, a1), true;\n case 3: return listeners.fn.call(listeners.context, a1, a2), true;\n case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true;\n case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;\n case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;\n }\n\n for (i = 1, args = new Array(len -1); i < len; i++) {\n args[i - 1] = arguments[i];\n }\n\n listeners.fn.apply(listeners.context, args);\n } else {\n var length = listeners.length\n , j;\n\n for (i = 0; i < length; i++) {\n if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true);\n\n switch (len) {\n case 1: listeners[i].fn.call(listeners[i].context); break;\n case 2: listeners[i].fn.call(listeners[i].context, a1); break;\n case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break;\n case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break;\n default:\n if (!args) for (j = 1, args = new Array(len -1); j < len; j++) {\n args[j - 1] = arguments[j];\n }\n\n listeners[i].fn.apply(listeners[i].context, args);\n }\n }\n }\n\n return true;\n};\n\n/**\n * Add a listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.on = function on(event, fn, context) {\n return addListener(this, event, fn, context, false);\n};\n\n/**\n * Add a one-time listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.once = function once(event, fn, context) {\n return addListener(this, event, fn, context, true);\n};\n\n/**\n * Remove the listeners of a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn Only remove the listeners that match this function.\n * @param {*} context Only remove the listeners that have this context.\n * @param {Boolean} once Only remove one-time listeners.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return this;\n if (!fn) {\n clearEvent(this, evt);\n return this;\n }\n\n var listeners = this._events[evt];\n\n if (listeners.fn) {\n if (\n listeners.fn === fn &&\n (!once || listeners.once) &&\n (!context || listeners.context === context)\n ) {\n clearEvent(this, evt);\n }\n } else {\n for (var i = 0, events = [], length = listeners.length; i < length; i++) {\n if (\n listeners[i].fn !== fn ||\n (once && !listeners[i].once) ||\n (context && listeners[i].context !== context)\n ) {\n events.push(listeners[i]);\n }\n }\n\n //\n // Reset the array, or remove it completely if we have no more listeners.\n //\n if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;\n else clearEvent(this, evt);\n }\n\n return this;\n};\n\n/**\n * Remove all listeners, or those of the specified event.\n *\n * @param {(String|Symbol)} [event] The event name.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {\n var evt;\n\n if (event) {\n evt = prefix ? prefix + event : event;\n if (this._events[evt]) clearEvent(this, evt);\n } else {\n this._events = new Events();\n this._eventsCount = 0;\n }\n\n return this;\n};\n\n//\n// Alias methods names because people roll like that.\n//\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\nEventEmitter.prototype.addListener = EventEmitter.prototype.on;\n\n//\n// Expose the prefix.\n//\nEventEmitter.prefixed = prefix;\n\n//\n// Allow `EventEmitter` to be imported as module namespace.\n//\nEventEmitter.EventEmitter = EventEmitter;\n\n//\n// Expose the module.\n//\nif ('undefined' !== typeof module) {\n module.exports = EventEmitter;\n}\n","'use strict';\n\nmodule.exports = earcut;\nmodule.exports.default = earcut;\n\nfunction earcut(data, holeIndices, dim) {\n\n dim = dim || 2;\n\n var hasHoles = holeIndices && holeIndices.length,\n outerLen = hasHoles ? holeIndices[0] * dim : data.length,\n outerNode = linkedList(data, 0, outerLen, dim, true),\n triangles = [];\n\n if (!outerNode || outerNode.next === outerNode.prev) return triangles;\n\n var minX, minY, maxX, maxY, x, y, invSize;\n\n if (hasHoles) outerNode = eliminateHoles(data, holeIndices, outerNode, dim);\n\n // if the shape is not too simple, we'll use z-order curve hash later; calculate polygon bbox\n if (data.length > 80 * dim) {\n minX = maxX = data[0];\n minY = maxY = data[1];\n\n for (var i = dim; i < outerLen; i += dim) {\n x = data[i];\n y = data[i + 1];\n if (x < minX) minX = x;\n if (y < minY) minY = y;\n if (x > maxX) maxX = x;\n if (y > maxY) maxY = y;\n }\n\n // minX, minY and invSize are later used to transform coords into integers for z-order calculation\n invSize = Math.max(maxX - minX, maxY - minY);\n invSize = invSize !== 0 ? 1 / invSize : 0;\n }\n\n earcutLinked(outerNode, triangles, dim, minX, minY, invSize);\n\n return triangles;\n}\n\n// create a circular doubly linked list from polygon points in the specified winding order\nfunction linkedList(data, start, end, dim, clockwise) {\n var i, last;\n\n if (clockwise === (signedArea(data, start, end, dim) > 0)) {\n for (i = start; i < end; i += dim) last = insertNode(i, data[i], data[i + 1], last);\n } else {\n for (i = end - dim; i >= start; i -= dim) last = insertNode(i, data[i], data[i + 1], last);\n }\n\n if (last && equals(last, last.next)) {\n removeNode(last);\n last = last.next;\n }\n\n return last;\n}\n\n// eliminate colinear or duplicate points\nfunction filterPoints(start, end) {\n if (!start) return start;\n if (!end) end = start;\n\n var p = start,\n again;\n do {\n again = false;\n\n if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) {\n removeNode(p);\n p = end = p.prev;\n if (p === p.next) break;\n again = true;\n\n } else {\n p = p.next;\n }\n } while (again || p !== end);\n\n return end;\n}\n\n// main ear slicing loop which triangulates a polygon (given as a linked list)\nfunction earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) {\n if (!ear) return;\n\n // interlink polygon nodes in z-order\n if (!pass && invSize) indexCurve(ear, minX, minY, invSize);\n\n var stop = ear,\n prev, next;\n\n // iterate through ears, slicing them one by one\n while (ear.prev !== ear.next) {\n prev = ear.prev;\n next = ear.next;\n\n if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) {\n // cut off the triangle\n triangles.push(prev.i / dim);\n triangles.push(ear.i / dim);\n triangles.push(next.i / dim);\n\n removeNode(ear);\n\n // skipping the next vertex leads to less sliver triangles\n ear = next.next;\n stop = next.next;\n\n continue;\n }\n\n ear = next;\n\n // if we looped through the whole remaining polygon and can't find any more ears\n if (ear === stop) {\n // try filtering points and slicing again\n if (!pass) {\n earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1);\n\n // if this didn't work, try curing all small self-intersections locally\n } else if (pass === 1) {\n ear = cureLocalIntersections(filterPoints(ear), triangles, dim);\n earcutLinked(ear, triangles, dim, minX, minY, invSize, 2);\n\n // as a last resort, try splitting the remaining polygon into two\n } else if (pass === 2) {\n splitEarcut(ear, triangles, dim, minX, minY, invSize);\n }\n\n break;\n }\n }\n}\n\n// check whether a polygon node forms a valid ear with adjacent nodes\nfunction isEar(ear) {\n var a = ear.prev,\n b = ear,\n c = ear.next;\n\n if (area(a, b, c) >= 0) return false; // reflex, can't be an ear\n\n // now make sure we don't have other points inside the potential ear\n var p = ear.next.next;\n\n while (p !== ear.prev) {\n if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.next;\n }\n\n return true;\n}\n\nfunction isEarHashed(ear, minX, minY, invSize) {\n var a = ear.prev,\n b = ear,\n c = ear.next;\n\n if (area(a, b, c) >= 0) return false; // reflex, can't be an ear\n\n // triangle bbox; min & max are calculated like this for speed\n var minTX = a.x < b.x ? (a.x < c.x ? a.x : c.x) : (b.x < c.x ? b.x : c.x),\n minTY = a.y < b.y ? (a.y < c.y ? a.y : c.y) : (b.y < c.y ? b.y : c.y),\n maxTX = a.x > b.x ? (a.x > c.x ? a.x : c.x) : (b.x > c.x ? b.x : c.x),\n maxTY = a.y > b.y ? (a.y > c.y ? a.y : c.y) : (b.y > c.y ? b.y : c.y);\n\n // z-order range for the current triangle bbox;\n var minZ = zOrder(minTX, minTY, minX, minY, invSize),\n maxZ = zOrder(maxTX, maxTY, minX, minY, invSize);\n\n var p = ear.prevZ,\n n = ear.nextZ;\n\n // look for points inside the triangle in both directions\n while (p && p.z >= minZ && n && n.z <= maxZ) {\n if (p !== ear.prev && p !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.prevZ;\n\n if (n !== ear.prev && n !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) &&\n area(n.prev, n, n.next) >= 0) return false;\n n = n.nextZ;\n }\n\n // look for remaining points in decreasing z-order\n while (p && p.z >= minZ) {\n if (p !== ear.prev && p !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.prevZ;\n }\n\n // look for remaining points in increasing z-order\n while (n && n.z <= maxZ) {\n if (n !== ear.prev && n !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) &&\n area(n.prev, n, n.next) >= 0) return false;\n n = n.nextZ;\n }\n\n return true;\n}\n\n// go through all polygon nodes and cure small local self-intersections\nfunction cureLocalIntersections(start, triangles, dim) {\n var p = start;\n do {\n var a = p.prev,\n b = p.next.next;\n\n if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) {\n\n triangles.push(a.i / dim);\n triangles.push(p.i / dim);\n triangles.push(b.i / dim);\n\n // remove two nodes involved\n removeNode(p);\n removeNode(p.next);\n\n p = start = b;\n }\n p = p.next;\n } while (p !== start);\n\n return filterPoints(p);\n}\n\n// try splitting polygon into two and triangulate them independently\nfunction splitEarcut(start, triangles, dim, minX, minY, invSize) {\n // look for a valid diagonal that divides the polygon into two\n var a = start;\n do {\n var b = a.next.next;\n while (b !== a.prev) {\n if (a.i !== b.i && isValidDiagonal(a, b)) {\n // split the polygon in two by the diagonal\n var c = splitPolygon(a, b);\n\n // filter colinear points around the cuts\n a = filterPoints(a, a.next);\n c = filterPoints(c, c.next);\n\n // run earcut on each half\n earcutLinked(a, triangles, dim, minX, minY, invSize);\n earcutLinked(c, triangles, dim, minX, minY, invSize);\n return;\n }\n b = b.next;\n }\n a = a.next;\n } while (a !== start);\n}\n\n// link every hole into the outer loop, producing a single-ring polygon without holes\nfunction eliminateHoles(data, holeIndices, outerNode, dim) {\n var queue = [],\n i, len, start, end, list;\n\n for (i = 0, len = holeIndices.length; i < len; i++) {\n start = holeIndices[i] * dim;\n end = i < len - 1 ? holeIndices[i + 1] * dim : data.length;\n list = linkedList(data, start, end, dim, false);\n if (list === list.next) list.steiner = true;\n queue.push(getLeftmost(list));\n }\n\n queue.sort(compareX);\n\n // process holes from left to right\n for (i = 0; i < queue.length; i++) {\n eliminateHole(queue[i], outerNode);\n outerNode = filterPoints(outerNode, outerNode.next);\n }\n\n return outerNode;\n}\n\nfunction compareX(a, b) {\n return a.x - b.x;\n}\n\n// find a bridge between vertices that connects hole with an outer ring and and link it\nfunction eliminateHole(hole, outerNode) {\n outerNode = findHoleBridge(hole, outerNode);\n if (outerNode) {\n var b = splitPolygon(outerNode, hole);\n filterPoints(b, b.next);\n }\n}\n\n// David Eberly's algorithm for finding a bridge between hole and outer polygon\nfunction findHoleBridge(hole, outerNode) {\n var p = outerNode,\n hx = hole.x,\n hy = hole.y,\n qx = -Infinity,\n m;\n\n // find a segment intersected by a ray from the hole's leftmost point to the left;\n // segment's endpoint with lesser x will be potential connection point\n do {\n if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) {\n var x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y);\n if (x <= hx && x > qx) {\n qx = x;\n if (x === hx) {\n if (hy === p.y) return p;\n if (hy === p.next.y) return p.next;\n }\n m = p.x < p.next.x ? p : p.next;\n }\n }\n p = p.next;\n } while (p !== outerNode);\n\n if (!m) return null;\n\n if (hx === qx) return m; // hole touches outer segment; pick leftmost endpoint\n\n // look for points inside the triangle of hole point, segment intersection and endpoint;\n // if there are no points found, we have a valid connection;\n // otherwise choose the point of the minimum angle with the ray as connection point\n\n var stop = m,\n mx = m.x,\n my = m.y,\n tanMin = Infinity,\n tan;\n\n p = m;\n\n do {\n if (hx >= p.x && p.x >= mx && hx !== p.x &&\n pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) {\n\n tan = Math.abs(hy - p.y) / (hx - p.x); // tangential\n\n if (locallyInside(p, hole) &&\n (tan < tanMin || (tan === tanMin && (p.x > m.x || (p.x === m.x && sectorContainsSector(m, p)))))) {\n m = p;\n tanMin = tan;\n }\n }\n\n p = p.next;\n } while (p !== stop);\n\n return m;\n}\n\n// whether sector in vertex m contains sector in vertex p in the same coordinates\nfunction sectorContainsSector(m, p) {\n return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0;\n}\n\n// interlink polygon nodes in z-order\nfunction indexCurve(start, minX, minY, invSize) {\n var p = start;\n do {\n if (p.z === null) p.z = zOrder(p.x, p.y, minX, minY, invSize);\n p.prevZ = p.prev;\n p.nextZ = p.next;\n p = p.next;\n } while (p !== start);\n\n p.prevZ.nextZ = null;\n p.prevZ = null;\n\n sortLinked(p);\n}\n\n// Simon Tatham's linked list merge sort algorithm\n// http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html\nfunction sortLinked(list) {\n var i, p, q, e, tail, numMerges, pSize, qSize,\n inSize = 1;\n\n do {\n p = list;\n list = null;\n tail = null;\n numMerges = 0;\n\n while (p) {\n numMerges++;\n q = p;\n pSize = 0;\n for (i = 0; i < inSize; i++) {\n pSize++;\n q = q.nextZ;\n if (!q) break;\n }\n qSize = inSize;\n\n while (pSize > 0 || (qSize > 0 && q)) {\n\n if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) {\n e = p;\n p = p.nextZ;\n pSize--;\n } else {\n e = q;\n q = q.nextZ;\n qSize--;\n }\n\n if (tail) tail.nextZ = e;\n else list = e;\n\n e.prevZ = tail;\n tail = e;\n }\n\n p = q;\n }\n\n tail.nextZ = null;\n inSize *= 2;\n\n } while (numMerges > 1);\n\n return list;\n}\n\n// z-order of a point given coords and inverse of the longer side of data bbox\nfunction zOrder(x, y, minX, minY, invSize) {\n // coords are transformed into non-negative 15-bit integer range\n x = 32767 * (x - minX) * invSize;\n y = 32767 * (y - minY) * invSize;\n\n x = (x | (x << 8)) & 0x00FF00FF;\n x = (x | (x << 4)) & 0x0F0F0F0F;\n x = (x | (x << 2)) & 0x33333333;\n x = (x | (x << 1)) & 0x55555555;\n\n y = (y | (y << 8)) & 0x00FF00FF;\n y = (y | (y << 4)) & 0x0F0F0F0F;\n y = (y | (y << 2)) & 0x33333333;\n y = (y | (y << 1)) & 0x55555555;\n\n return x | (y << 1);\n}\n\n// find the leftmost node of a polygon ring\nfunction getLeftmost(start) {\n var p = start,\n leftmost = start;\n do {\n if (p.x < leftmost.x || (p.x === leftmost.x && p.y < leftmost.y)) leftmost = p;\n p = p.next;\n } while (p !== start);\n\n return leftmost;\n}\n\n// check if a point lies within a convex triangle\nfunction pointInTriangle(ax, ay, bx, by, cx, cy, px, py) {\n return (cx - px) * (ay - py) - (ax - px) * (cy - py) >= 0 &&\n (ax - px) * (by - py) - (bx - px) * (ay - py) >= 0 &&\n (bx - px) * (cy - py) - (cx - px) * (by - py) >= 0;\n}\n\n// check if a diagonal between two polygon nodes is valid (lies in polygon interior)\nfunction isValidDiagonal(a, b) {\n return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && // dones't intersect other edges\n (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && // locally visible\n (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors\n equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case\n}\n\n// signed area of a triangle\nfunction area(p, q, r) {\n return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y);\n}\n\n// check if two points are equal\nfunction equals(p1, p2) {\n return p1.x === p2.x && p1.y === p2.y;\n}\n\n// check if two segments intersect\nfunction intersects(p1, q1, p2, q2) {\n var o1 = sign(area(p1, q1, p2));\n var o2 = sign(area(p1, q1, q2));\n var o3 = sign(area(p2, q2, p1));\n var o4 = sign(area(p2, q2, q1));\n\n if (o1 !== o2 && o3 !== o4) return true; // general case\n\n if (o1 === 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p1q1\n if (o2 === 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p1q1\n if (o3 === 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p2q2\n if (o4 === 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p2q2\n\n return false;\n}\n\n// for collinear points p, q, r, check if point q lies on segment pr\nfunction onSegment(p, q, r) {\n return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y);\n}\n\nfunction sign(num) {\n return num > 0 ? 1 : num < 0 ? -1 : 0;\n}\n\n// check if a polygon diagonal intersects any polygon segments\nfunction intersectsPolygon(a, b) {\n var p = a;\n do {\n if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i &&\n intersects(p, p.next, a, b)) return true;\n p = p.next;\n } while (p !== a);\n\n return false;\n}\n\n// check if a polygon diagonal is locally inside the polygon\nfunction locallyInside(a, b) {\n return area(a.prev, a, a.next) < 0 ?\n area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 :\n area(a, b, a.prev) < 0 || area(a, a.next, b) < 0;\n}\n\n// check if the middle point of a polygon diagonal is inside the polygon\nfunction middleInside(a, b) {\n var p = a,\n inside = false,\n px = (a.x + b.x) / 2,\n py = (a.y + b.y) / 2;\n do {\n if (((p.y > py) !== (p.next.y > py)) && p.next.y !== p.y &&\n (px < (p.next.x - p.x) * (py - p.y) / (p.next.y - p.y) + p.x))\n inside = !inside;\n p = p.next;\n } while (p !== a);\n\n return inside;\n}\n\n// link two polygon vertices with a bridge; if the vertices belong to the same ring, it splits polygon into two;\n// if one belongs to the outer ring and another to a hole, it merges it into a single ring\nfunction splitPolygon(a, b) {\n var a2 = new Node(a.i, a.x, a.y),\n b2 = new Node(b.i, b.x, b.y),\n an = a.next,\n bp = b.prev;\n\n a.next = b;\n b.prev = a;\n\n a2.next = an;\n an.prev = a2;\n\n b2.next = a2;\n a2.prev = b2;\n\n bp.next = b2;\n b2.prev = bp;\n\n return b2;\n}\n\n// create a node and optionally link it with previous one (in a circular doubly linked list)\nfunction insertNode(i, x, y, last) {\n var p = new Node(i, x, y);\n\n if (!last) {\n p.prev = p;\n p.next = p;\n\n } else {\n p.next = last.next;\n p.prev = last;\n last.next.prev = p;\n last.next = p;\n }\n return p;\n}\n\nfunction removeNode(p) {\n p.next.prev = p.prev;\n p.prev.next = p.next;\n\n if (p.prevZ) p.prevZ.nextZ = p.nextZ;\n if (p.nextZ) p.nextZ.prevZ = p.prevZ;\n}\n\nfunction Node(i, x, y) {\n // vertex index in coordinates array\n this.i = i;\n\n // vertex coordinates\n this.x = x;\n this.y = y;\n\n // previous and next vertex nodes in a polygon ring\n this.prev = null;\n this.next = null;\n\n // z-order curve value\n this.z = null;\n\n // previous and next nodes in z-order\n this.prevZ = null;\n this.nextZ = null;\n\n // indicates whether this is a steiner point\n this.steiner = false;\n}\n\n// return a percentage difference between the polygon area and its triangulation area;\n// used to verify correctness of triangulation\nearcut.deviation = function (data, holeIndices, dim, triangles) {\n var hasHoles = holeIndices && holeIndices.length;\n var outerLen = hasHoles ? holeIndices[0] * dim : data.length;\n\n var polygonArea = Math.abs(signedArea(data, 0, outerLen, dim));\n if (hasHoles) {\n for (var i = 0, len = holeIndices.length; i < len; i++) {\n var start = holeIndices[i] * dim;\n var end = i < len - 1 ? holeIndices[i + 1] * dim : data.length;\n polygonArea -= Math.abs(signedArea(data, start, end, dim));\n }\n }\n\n var trianglesArea = 0;\n for (i = 0; i < triangles.length; i += 3) {\n var a = triangles[i] * dim;\n var b = triangles[i + 1] * dim;\n var c = triangles[i + 2] * dim;\n trianglesArea += Math.abs(\n (data[a] - data[c]) * (data[b + 1] - data[a + 1]) -\n (data[a] - data[b]) * (data[c + 1] - data[a + 1]));\n }\n\n return polygonArea === 0 && trianglesArea === 0 ? 0 :\n Math.abs((trianglesArea - polygonArea) / polygonArea);\n};\n\nfunction signedArea(data, start, end, dim) {\n var sum = 0;\n for (var i = start, j = end - dim; i < end; i += dim) {\n sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]);\n j = i;\n }\n return sum;\n}\n\n// turn a polygon in a multi-dimensional array form (e.g. as in GeoJSON) into a form Earcut accepts\nearcut.flatten = function (data) {\n var dim = data[0][0].length,\n result = {vertices: [], holes: [], dimensions: dim},\n holeIndex = 0;\n\n for (var i = 0; i < data.length; i++) {\n for (var j = 0; j < data[i].length; j++) {\n for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]);\n }\n if (i > 0) {\n holeIndex += data[i - 1].length;\n result.holes.push(holeIndex);\n }\n }\n return result;\n};\n","/*! https://mths.be/punycode v1.4.1 by @mathias */\n\n\n/** Highest positive signed 32-bit float value */\nvar maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1\n\n/** Bootstring parameters */\nvar base = 36;\nvar tMin = 1;\nvar tMax = 26;\nvar skew = 38;\nvar damp = 700;\nvar initialBias = 72;\nvar initialN = 128; // 0x80\nvar delimiter = '-'; // '\\x2D'\n\n/** Regular expressions */\nvar regexPunycode = /^xn--/;\nvar regexNonASCII = /[^\\x20-\\x7E]/; // unprintable ASCII chars + non-ASCII chars\nvar regexSeparators = /[\\x2E\\u3002\\uFF0E\\uFF61]/g; // RFC 3490 separators\n\n/** Error messages */\nvar errors = {\n 'overflow': 'Overflow: input needs wider integers to process',\n 'not-basic': 'Illegal input >= 0x80 (not a basic code point)',\n 'invalid-input': 'Invalid input'\n};\n\n/** Convenience shortcuts */\nvar baseMinusTMin = base - tMin;\nvar floor = Math.floor;\nvar stringFromCharCode = String.fromCharCode;\n\n/*--------------------------------------------------------------------------*/\n\n/**\n * A generic error utility function.\n * @private\n * @param {String} type The error type.\n * @returns {Error} Throws a `RangeError` with the applicable error message.\n */\nfunction error(type) {\n throw new RangeError(errors[type]);\n}\n\n/**\n * A generic `Array#map` utility function.\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} callback The function that gets called for every array\n * item.\n * @returns {Array} A new array of values returned by the callback function.\n */\nfunction map(array, fn) {\n var length = array.length;\n var result = [];\n while (length--) {\n result[length] = fn(array[length]);\n }\n return result;\n}\n\n/**\n * A simple `Array#map`-like wrapper to work with domain name strings or email\n * addresses.\n * @private\n * @param {String} domain The domain name or email address.\n * @param {Function} callback The function that gets called for every\n * character.\n * @returns {Array} A new string of characters returned by the callback\n * function.\n */\nfunction mapDomain(string, fn) {\n var parts = string.split('@');\n var result = '';\n if (parts.length > 1) {\n // In email addresses, only the domain name should be punycoded. Leave\n // the local part (i.e. everything up to `@`) intact.\n result = parts[0] + '@';\n string = parts[1];\n }\n // Avoid `split(regex)` for IE8 compatibility. See #17.\n string = string.replace(regexSeparators, '\\x2E');\n var labels = string.split('.');\n var encoded = map(labels, fn).join('.');\n return result + encoded;\n}\n\n/**\n * Creates an array containing the numeric code points of each Unicode\n * character in the string. While JavaScript uses UCS-2 internally,\n * this function will convert a pair of surrogate halves (each of which\n * UCS-2 exposes as separate characters) into a single code point,\n * matching UTF-16.\n * @see `punycode.ucs2.encode`\n * @see \n * @memberOf punycode.ucs2\n * @name decode\n * @param {String} string The Unicode input string (UCS-2).\n * @returns {Array} The new array of code points.\n */\nfunction ucs2decode(string) {\n var output = [],\n counter = 0,\n length = string.length,\n value,\n extra;\n while (counter < length) {\n value = string.charCodeAt(counter++);\n if (value >= 0xD800 && value <= 0xDBFF && counter < length) {\n // high surrogate, and there is a next character\n extra = string.charCodeAt(counter++);\n if ((extra & 0xFC00) == 0xDC00) { // low surrogate\n output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000);\n } else {\n // unmatched surrogate; only append this code unit, in case the next\n // code unit is the high surrogate of a surrogate pair\n output.push(value);\n counter--;\n }\n } else {\n output.push(value);\n }\n }\n return output;\n}\n\n/**\n * Creates a string based on an array of numeric code points.\n * @see `punycode.ucs2.decode`\n * @memberOf punycode.ucs2\n * @name encode\n * @param {Array} codePoints The array of numeric code points.\n * @returns {String} The new Unicode string (UCS-2).\n */\nfunction ucs2encode(array) {\n return map(array, function(value) {\n var output = '';\n if (value > 0xFFFF) {\n value -= 0x10000;\n output += stringFromCharCode(value >>> 10 & 0x3FF | 0xD800);\n value = 0xDC00 | value & 0x3FF;\n }\n output += stringFromCharCode(value);\n return output;\n }).join('');\n}\n\n/**\n * Converts a basic code point into a digit/integer.\n * @see `digitToBasic()`\n * @private\n * @param {Number} codePoint The basic numeric code point value.\n * @returns {Number} The numeric value of a basic code point (for use in\n * representing integers) in the range `0` to `base - 1`, or `base` if\n * the code point does not represent a value.\n */\nfunction basicToDigit(codePoint) {\n if (codePoint - 48 < 10) {\n return codePoint - 22;\n }\n if (codePoint - 65 < 26) {\n return codePoint - 65;\n }\n if (codePoint - 97 < 26) {\n return codePoint - 97;\n }\n return base;\n}\n\n/**\n * Converts a digit/integer into a basic code point.\n * @see `basicToDigit()`\n * @private\n * @param {Number} digit The numeric value of a basic code point.\n * @returns {Number} The basic code point whose value (when used for\n * representing integers) is `digit`, which needs to be in the range\n * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is\n * used; else, the lowercase form is used. The behavior is undefined\n * if `flag` is non-zero and `digit` has no uppercase form.\n */\nfunction digitToBasic(digit, flag) {\n // 0..25 map to ASCII a..z or A..Z\n // 26..35 map to ASCII 0..9\n return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5);\n}\n\n/**\n * Bias adaptation function as per section 3.4 of RFC 3492.\n * https://tools.ietf.org/html/rfc3492#section-3.4\n * @private\n */\nfunction adapt(delta, numPoints, firstTime) {\n var k = 0;\n delta = firstTime ? floor(delta / damp) : delta >> 1;\n delta += floor(delta / numPoints);\n for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) {\n delta = floor(delta / baseMinusTMin);\n }\n return floor(k + (baseMinusTMin + 1) * delta / (delta + skew));\n}\n\n/**\n * Converts a Punycode string of ASCII-only symbols to a string of Unicode\n * symbols.\n * @memberOf punycode\n * @param {String} input The Punycode string of ASCII-only symbols.\n * @returns {String} The resulting string of Unicode symbols.\n */\nexport function decode(input) {\n // Don't use UCS-2\n var output = [],\n inputLength = input.length,\n out,\n i = 0,\n n = initialN,\n bias = initialBias,\n basic,\n j,\n index,\n oldi,\n w,\n k,\n digit,\n t,\n /** Cached calculation results */\n baseMinusT;\n\n // Handle the basic code points: let `basic` be the number of input code\n // points before the last delimiter, or `0` if there is none, then copy\n // the first basic code points to the output.\n\n basic = input.lastIndexOf(delimiter);\n if (basic < 0) {\n basic = 0;\n }\n\n for (j = 0; j < basic; ++j) {\n // if it's not a basic code point\n if (input.charCodeAt(j) >= 0x80) {\n error('not-basic');\n }\n output.push(input.charCodeAt(j));\n }\n\n // Main decoding loop: start just after the last delimiter if any basic code\n // points were copied; start at the beginning otherwise.\n\n for (index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */ ) {\n\n // `index` is the index of the next character to be consumed.\n // Decode a generalized variable-length integer into `delta`,\n // which gets added to `i`. The overflow checking is easier\n // if we increase `i` as we go, then subtract off its starting\n // value at the end to obtain `delta`.\n for (oldi = i, w = 1, k = base; /* no condition */ ; k += base) {\n\n if (index >= inputLength) {\n error('invalid-input');\n }\n\n digit = basicToDigit(input.charCodeAt(index++));\n\n if (digit >= base || digit > floor((maxInt - i) / w)) {\n error('overflow');\n }\n\n i += digit * w;\n t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n\n if (digit < t) {\n break;\n }\n\n baseMinusT = base - t;\n if (w > floor(maxInt / baseMinusT)) {\n error('overflow');\n }\n\n w *= baseMinusT;\n\n }\n\n out = output.length + 1;\n bias = adapt(i - oldi, out, oldi == 0);\n\n // `i` was supposed to wrap around from `out` to `0`,\n // incrementing `n` each time, so we'll fix that now:\n if (floor(i / out) > maxInt - n) {\n error('overflow');\n }\n\n n += floor(i / out);\n i %= out;\n\n // Insert `n` at position `i` of the output\n output.splice(i++, 0, n);\n\n }\n\n return ucs2encode(output);\n}\n\n/**\n * Converts a string of Unicode symbols (e.g. a domain name label) to a\n * Punycode string of ASCII-only symbols.\n * @memberOf punycode\n * @param {String} input The string of Unicode symbols.\n * @returns {String} The resulting Punycode string of ASCII-only symbols.\n */\nexport function encode(input) {\n var n,\n delta,\n handledCPCount,\n basicLength,\n bias,\n j,\n m,\n q,\n k,\n t,\n currentValue,\n output = [],\n /** `inputLength` will hold the number of code points in `input`. */\n inputLength,\n /** Cached calculation results */\n handledCPCountPlusOne,\n baseMinusT,\n qMinusT;\n\n // Convert the input in UCS-2 to Unicode\n input = ucs2decode(input);\n\n // Cache the length\n inputLength = input.length;\n\n // Initialize the state\n n = initialN;\n delta = 0;\n bias = initialBias;\n\n // Handle the basic code points\n for (j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n if (currentValue < 0x80) {\n output.push(stringFromCharCode(currentValue));\n }\n }\n\n handledCPCount = basicLength = output.length;\n\n // `handledCPCount` is the number of code points that have been handled;\n // `basicLength` is the number of basic code points.\n\n // Finish the basic string - if it is not empty - with a delimiter\n if (basicLength) {\n output.push(delimiter);\n }\n\n // Main encoding loop:\n while (handledCPCount < inputLength) {\n\n // All non-basic code points < n have been handled already. Find the next\n // larger one:\n for (m = maxInt, j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n if (currentValue >= n && currentValue < m) {\n m = currentValue;\n }\n }\n\n // Increase `delta` enough to advance the decoder's state to ,\n // but guard against overflow\n handledCPCountPlusOne = handledCPCount + 1;\n if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) {\n error('overflow');\n }\n\n delta += (m - n) * handledCPCountPlusOne;\n n = m;\n\n for (j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n\n if (currentValue < n && ++delta > maxInt) {\n error('overflow');\n }\n\n if (currentValue == n) {\n // Represent delta as a generalized variable-length integer\n for (q = delta, k = base; /* no condition */ ; k += base) {\n t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n if (q < t) {\n break;\n }\n qMinusT = q - t;\n baseMinusT = base - t;\n output.push(\n stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0))\n );\n q = floor(qMinusT / baseMinusT);\n }\n\n output.push(stringFromCharCode(digitToBasic(q, 0)));\n bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength);\n delta = 0;\n ++handledCPCount;\n }\n }\n\n ++delta;\n ++n;\n\n }\n return output.join('');\n}\n\n/**\n * Converts a Punycode string representing a domain name or an email address\n * to Unicode. Only the Punycoded parts of the input will be converted, i.e.\n * it doesn't matter if you call it on a string that has already been\n * converted to Unicode.\n * @memberOf punycode\n * @param {String} input The Punycoded domain name or email address to\n * convert to Unicode.\n * @returns {String} The Unicode representation of the given Punycode\n * string.\n */\nexport function toUnicode(input) {\n return mapDomain(input, function(string) {\n return regexPunycode.test(string) ?\n decode(string.slice(4).toLowerCase()) :\n string;\n });\n}\n\n/**\n * Converts a Unicode string representing a domain name or an email address to\n * Punycode. Only the non-ASCII parts of the domain name will be converted,\n * i.e. it doesn't matter if you call it with a domain that's already in\n * ASCII.\n * @memberOf punycode\n * @param {String} input The domain name or email address to convert, as a\n * Unicode string.\n * @returns {String} The Punycode representation of the given domain name or\n * email address.\n */\nexport function toASCII(input) {\n return mapDomain(input, function(string) {\n return regexNonASCII.test(string) ?\n 'xn--' + encode(string) :\n string;\n });\n}\nexport var version = '1.4.1';\n/**\n * An object of methods to convert from JavaScript's internal character\n * representation (UCS-2) to Unicode code points, and back.\n * @see \n * @memberOf punycode\n * @type Object\n */\n\nexport var ucs2 = {\n decode: ucs2decode,\n encode: ucs2encode\n};\nexport default {\n version: version,\n ucs2: ucs2,\n toASCII: toASCII,\n toUnicode: toUnicode,\n encode: encode,\n decode: decode\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\nimport process from 'process';\nvar formatRegExp = /%[sdj%]/g;\nexport function format(f) {\n if (!isString(f)) {\n var objects = [];\n for (var i = 0; i < arguments.length; i++) {\n objects.push(inspect(arguments[i]));\n }\n return objects.join(' ');\n }\n\n var i = 1;\n var args = arguments;\n var len = args.length;\n var str = String(f).replace(formatRegExp, function(x) {\n if (x === '%%') return '%';\n if (i >= len) return x;\n switch (x) {\n case '%s': return String(args[i++]);\n case '%d': return Number(args[i++]);\n case '%j':\n try {\n return JSON.stringify(args[i++]);\n } catch (_) {\n return '[Circular]';\n }\n default:\n return x;\n }\n });\n for (var x = args[i]; i < len; x = args[++i]) {\n if (isNull(x) || !isObject(x)) {\n str += ' ' + x;\n } else {\n str += ' ' + inspect(x);\n }\n }\n return str;\n};\n\n\n// Mark that a method should not be used.\n// Returns a modified function which warns once by default.\n// If --no-deprecation is set, then it is a no-op.\nexport function deprecate(fn, msg) {\n // Allow for deprecating things in the process of starting up.\n if (isUndefined(global.process)) {\n return function() {\n return deprecate(fn, msg).apply(this, arguments);\n };\n }\n\n if (process.noDeprecation === true) {\n return fn;\n }\n\n var warned = false;\n function deprecated() {\n if (!warned) {\n if (process.throwDeprecation) {\n throw new Error(msg);\n } else if (process.traceDeprecation) {\n console.trace(msg);\n } else {\n console.error(msg);\n }\n warned = true;\n }\n return fn.apply(this, arguments);\n }\n\n return deprecated;\n};\n\n\nvar debugs = {};\nvar debugEnviron;\nexport function debuglog(set) {\n if (isUndefined(debugEnviron))\n debugEnviron = process.env.NODE_DEBUG || '';\n set = set.toUpperCase();\n if (!debugs[set]) {\n if (new RegExp('\\\\b' + set + '\\\\b', 'i').test(debugEnviron)) {\n var pid = 0;\n debugs[set] = function() {\n var msg = format.apply(null, arguments);\n console.error('%s %d: %s', set, pid, msg);\n };\n } else {\n debugs[set] = function() {};\n }\n }\n return debugs[set];\n};\n\n\n/**\n * Echos the value of a value. Trys to print the value out\n * in the best way possible given the different types.\n *\n * @param {Object} obj The object to print out.\n * @param {Object} opts Optional options object that alters the output.\n */\n/* legacy: obj, showHidden, depth, colors*/\nexport function inspect(obj, opts) {\n // default options\n var ctx = {\n seen: [],\n stylize: stylizeNoColor\n };\n // legacy...\n if (arguments.length >= 3) ctx.depth = arguments[2];\n if (arguments.length >= 4) ctx.colors = arguments[3];\n if (isBoolean(opts)) {\n // legacy...\n ctx.showHidden = opts;\n } else if (opts) {\n // got an \"options\" object\n _extend(ctx, opts);\n }\n // set default options\n if (isUndefined(ctx.showHidden)) ctx.showHidden = false;\n if (isUndefined(ctx.depth)) ctx.depth = 2;\n if (isUndefined(ctx.colors)) ctx.colors = false;\n if (isUndefined(ctx.customInspect)) ctx.customInspect = true;\n if (ctx.colors) ctx.stylize = stylizeWithColor;\n return formatValue(ctx, obj, ctx.depth);\n}\n\n// http://en.wikipedia.org/wiki/ANSI_escape_code#graphics\ninspect.colors = {\n 'bold' : [1, 22],\n 'italic' : [3, 23],\n 'underline' : [4, 24],\n 'inverse' : [7, 27],\n 'white' : [37, 39],\n 'grey' : [90, 39],\n 'black' : [30, 39],\n 'blue' : [34, 39],\n 'cyan' : [36, 39],\n 'green' : [32, 39],\n 'magenta' : [35, 39],\n 'red' : [31, 39],\n 'yellow' : [33, 39]\n};\n\n// Don't use 'blue' not visible on cmd.exe\ninspect.styles = {\n 'special': 'cyan',\n 'number': 'yellow',\n 'boolean': 'yellow',\n 'undefined': 'grey',\n 'null': 'bold',\n 'string': 'green',\n 'date': 'magenta',\n // \"name\": intentionally not styling\n 'regexp': 'red'\n};\n\n\nfunction stylizeWithColor(str, styleType) {\n var style = inspect.styles[styleType];\n\n if (style) {\n return '\\u001b[' + inspect.colors[style][0] + 'm' + str +\n '\\u001b[' + inspect.colors[style][1] + 'm';\n } else {\n return str;\n }\n}\n\n\nfunction stylizeNoColor(str, styleType) {\n return str;\n}\n\n\nfunction arrayToHash(array) {\n var hash = {};\n\n array.forEach(function(val, idx) {\n hash[val] = true;\n });\n\n return hash;\n}\n\n\nfunction formatValue(ctx, value, recurseTimes) {\n // Provide a hook for user-specified inspect functions.\n // Check that value is an object with an inspect function on it\n if (ctx.customInspect &&\n value &&\n isFunction(value.inspect) &&\n // Filter out the util module, it's inspect function is special\n value.inspect !== inspect &&\n // Also filter out any prototype objects using the circular check.\n !(value.constructor && value.constructor.prototype === value)) {\n var ret = value.inspect(recurseTimes, ctx);\n if (!isString(ret)) {\n ret = formatValue(ctx, ret, recurseTimes);\n }\n return ret;\n }\n\n // Primitive types cannot have properties\n var primitive = formatPrimitive(ctx, value);\n if (primitive) {\n return primitive;\n }\n\n // Look up the keys of the object.\n var keys = Object.keys(value);\n var visibleKeys = arrayToHash(keys);\n\n if (ctx.showHidden) {\n keys = Object.getOwnPropertyNames(value);\n }\n\n // IE doesn't make error fields non-enumerable\n // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx\n if (isError(value)\n && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) {\n return formatError(value);\n }\n\n // Some type of object without properties can be shortcutted.\n if (keys.length === 0) {\n if (isFunction(value)) {\n var name = value.name ? ': ' + value.name : '';\n return ctx.stylize('[Function' + name + ']', 'special');\n }\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n }\n if (isDate(value)) {\n return ctx.stylize(Date.prototype.toString.call(value), 'date');\n }\n if (isError(value)) {\n return formatError(value);\n }\n }\n\n var base = '', array = false, braces = ['{', '}'];\n\n // Make Array say that they are Array\n if (isArray(value)) {\n array = true;\n braces = ['[', ']'];\n }\n\n // Make functions say that they are functions\n if (isFunction(value)) {\n var n = value.name ? ': ' + value.name : '';\n base = ' [Function' + n + ']';\n }\n\n // Make RegExps say that they are RegExps\n if (isRegExp(value)) {\n base = ' ' + RegExp.prototype.toString.call(value);\n }\n\n // Make dates with properties first say the date\n if (isDate(value)) {\n base = ' ' + Date.prototype.toUTCString.call(value);\n }\n\n // Make error with message first say the error\n if (isError(value)) {\n base = ' ' + formatError(value);\n }\n\n if (keys.length === 0 && (!array || value.length == 0)) {\n return braces[0] + base + braces[1];\n }\n\n if (recurseTimes < 0) {\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n } else {\n return ctx.stylize('[Object]', 'special');\n }\n }\n\n ctx.seen.push(value);\n\n var output;\n if (array) {\n output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);\n } else {\n output = keys.map(function(key) {\n return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array);\n });\n }\n\n ctx.seen.pop();\n\n return reduceToSingleString(output, base, braces);\n}\n\n\nfunction formatPrimitive(ctx, value) {\n if (isUndefined(value))\n return ctx.stylize('undefined', 'undefined');\n if (isString(value)) {\n var simple = '\\'' + JSON.stringify(value).replace(/^\"|\"$/g, '')\n .replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"') + '\\'';\n return ctx.stylize(simple, 'string');\n }\n if (isNumber(value))\n return ctx.stylize('' + value, 'number');\n if (isBoolean(value))\n return ctx.stylize('' + value, 'boolean');\n // For some reason typeof null is \"object\", so special case here.\n if (isNull(value))\n return ctx.stylize('null', 'null');\n}\n\n\nfunction formatError(value) {\n return '[' + Error.prototype.toString.call(value) + ']';\n}\n\n\nfunction formatArray(ctx, value, recurseTimes, visibleKeys, keys) {\n var output = [];\n for (var i = 0, l = value.length; i < l; ++i) {\n if (hasOwnProperty(value, String(i))) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n String(i), true));\n } else {\n output.push('');\n }\n }\n keys.forEach(function(key) {\n if (!key.match(/^\\d+$/)) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n key, true));\n }\n });\n return output;\n}\n\n\nfunction formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {\n var name, str, desc;\n desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] };\n if (desc.get) {\n if (desc.set) {\n str = ctx.stylize('[Getter/Setter]', 'special');\n } else {\n str = ctx.stylize('[Getter]', 'special');\n }\n } else {\n if (desc.set) {\n str = ctx.stylize('[Setter]', 'special');\n }\n }\n if (!hasOwnProperty(visibleKeys, key)) {\n name = '[' + key + ']';\n }\n if (!str) {\n if (ctx.seen.indexOf(desc.value) < 0) {\n if (isNull(recurseTimes)) {\n str = formatValue(ctx, desc.value, null);\n } else {\n str = formatValue(ctx, desc.value, recurseTimes - 1);\n }\n if (str.indexOf('\\n') > -1) {\n if (array) {\n str = str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n').substr(2);\n } else {\n str = '\\n' + str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n');\n }\n }\n } else {\n str = ctx.stylize('[Circular]', 'special');\n }\n }\n if (isUndefined(name)) {\n if (array && key.match(/^\\d+$/)) {\n return str;\n }\n name = JSON.stringify('' + key);\n if (name.match(/^\"([a-zA-Z_][a-zA-Z_0-9]*)\"$/)) {\n name = name.substr(1, name.length - 2);\n name = ctx.stylize(name, 'name');\n } else {\n name = name.replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"')\n .replace(/(^\"|\"$)/g, \"'\");\n name = ctx.stylize(name, 'string');\n }\n }\n\n return name + ': ' + str;\n}\n\n\nfunction reduceToSingleString(output, base, braces) {\n var numLinesEst = 0;\n var length = output.reduce(function(prev, cur) {\n numLinesEst++;\n if (cur.indexOf('\\n') >= 0) numLinesEst++;\n return prev + cur.replace(/\\u001b\\[\\d\\d?m/g, '').length + 1;\n }, 0);\n\n if (length > 60) {\n return braces[0] +\n (base === '' ? '' : base + '\\n ') +\n ' ' +\n output.join(',\\n ') +\n ' ' +\n braces[1];\n }\n\n return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];\n}\n\n\n// NOTE: These type checking functions intentionally don't use `instanceof`\n// because it is fragile and can be easily faked with `Object.create()`.\nexport function isArray(ar) {\n return Array.isArray(ar);\n}\n\nexport function isBoolean(arg) {\n return typeof arg === 'boolean';\n}\n\nexport function isNull(arg) {\n return arg === null;\n}\n\nexport function isNullOrUndefined(arg) {\n return arg == null;\n}\n\nexport function isNumber(arg) {\n return typeof arg === 'number';\n}\n\nexport function isString(arg) {\n return typeof arg === 'string';\n}\n\nexport function isSymbol(arg) {\n return typeof arg === 'symbol';\n}\n\nexport function isUndefined(arg) {\n return arg === void 0;\n}\n\nexport function isRegExp(re) {\n return isObject(re) && objectToString(re) === '[object RegExp]';\n}\n\nexport function isObject(arg) {\n return typeof arg === 'object' && arg !== null;\n}\n\nexport function isDate(d) {\n return isObject(d) && objectToString(d) === '[object Date]';\n}\n\nexport function isError(e) {\n return isObject(e) &&\n (objectToString(e) === '[object Error]' || e instanceof Error);\n}\n\nexport function isFunction(arg) {\n return typeof arg === 'function';\n}\n\nexport function isPrimitive(arg) {\n return arg === null ||\n typeof arg === 'boolean' ||\n typeof arg === 'number' ||\n typeof arg === 'string' ||\n typeof arg === 'symbol' || // ES6 symbol\n typeof arg === 'undefined';\n}\n\nexport function isBuffer(maybeBuf) {\n return Buffer.isBuffer(maybeBuf);\n}\n\nfunction objectToString(o) {\n return Object.prototype.toString.call(o);\n}\n\n\nfunction pad(n) {\n return n < 10 ? '0' + n.toString(10) : n.toString(10);\n}\n\n\nvar months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep',\n 'Oct', 'Nov', 'Dec'];\n\n// 26 Feb 16:19:34\nfunction timestamp() {\n var d = new Date();\n var time = [pad(d.getHours()),\n pad(d.getMinutes()),\n pad(d.getSeconds())].join(':');\n return [d.getDate(), months[d.getMonth()], time].join(' ');\n}\n\n\n// log is just a thin wrapper to console.log that prepends a timestamp\nexport function log() {\n console.log('%s - %s', timestamp(), format.apply(null, arguments));\n}\n\n\n/**\n * Inherit the prototype methods from one constructor into another.\n *\n * The Function.prototype.inherits from lang.js rewritten as a standalone\n * function (not on Function.prototype). NOTE: If this file is to be loaded\n * during bootstrapping this function needs to be rewritten using some native\n * functions as prototype setup using normal JavaScript does not work as\n * expected during bootstrapping (see mirror.js in r114903).\n *\n * @param {function} ctor Constructor function which needs to inherit the\n * prototype.\n * @param {function} superCtor Constructor function to inherit prototype from.\n */\nimport inherits from './inherits';\nexport {inherits}\n\nexport function _extend(origin, add) {\n // Don't do anything if add isn't an object\n if (!add || !isObject(add)) return origin;\n\n var keys = Object.keys(add);\n var i = keys.length;\n while (i--) {\n origin[keys[i]] = add[keys[i]];\n }\n return origin;\n};\n\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\n\nexport default {\n inherits: inherits,\n _extend: _extend,\n log: log,\n isBuffer: isBuffer,\n isPrimitive: isPrimitive,\n isFunction: isFunction,\n isError: isError,\n isDate: isDate,\n isObject: isObject,\n isRegExp: isRegExp,\n isUndefined: isUndefined,\n isSymbol: isSymbol,\n isString: isString,\n isNumber: isNumber,\n isNullOrUndefined: isNullOrUndefined,\n isNull: isNull,\n isBoolean: isBoolean,\n isArray: isArray,\n inspect: inspect,\n deprecate: deprecate,\n format: format,\n debuglog: debuglog\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n// If obj.hasOwnProperty has been overridden, then calling\n// obj.hasOwnProperty(prop) will break.\n// See: https://github.com/joyent/node/issues/1707\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\nvar isArray = Array.isArray || function (xs) {\n return Object.prototype.toString.call(xs) === '[object Array]';\n};\nfunction stringifyPrimitive(v) {\n switch (typeof v) {\n case 'string':\n return v;\n\n case 'boolean':\n return v ? 'true' : 'false';\n\n case 'number':\n return isFinite(v) ? v : '';\n\n default:\n return '';\n }\n}\n\nexport function stringify (obj, sep, eq, name) {\n sep = sep || '&';\n eq = eq || '=';\n if (obj === null) {\n obj = undefined;\n }\n\n if (typeof obj === 'object') {\n return map(objectKeys(obj), function(k) {\n var ks = encodeURIComponent(stringifyPrimitive(k)) + eq;\n if (isArray(obj[k])) {\n return map(obj[k], function(v) {\n return ks + encodeURIComponent(stringifyPrimitive(v));\n }).join(sep);\n } else {\n return ks + encodeURIComponent(stringifyPrimitive(obj[k]));\n }\n }).join(sep);\n\n }\n\n if (!name) return '';\n return encodeURIComponent(stringifyPrimitive(name)) + eq +\n encodeURIComponent(stringifyPrimitive(obj));\n};\n\nfunction map (xs, f) {\n if (xs.map) return xs.map(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n res.push(f(xs[i], i));\n }\n return res;\n}\n\nvar objectKeys = Object.keys || function (obj) {\n var res = [];\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key);\n }\n return res;\n};\n\nexport function parse(qs, sep, eq, options) {\n sep = sep || '&';\n eq = eq || '=';\n var obj = {};\n\n if (typeof qs !== 'string' || qs.length === 0) {\n return obj;\n }\n\n var regexp = /\\+/g;\n qs = qs.split(sep);\n\n var maxKeys = 1000;\n if (options && typeof options.maxKeys === 'number') {\n maxKeys = options.maxKeys;\n }\n\n var len = qs.length;\n // maxKeys <= 0 means that we should not limit keys count\n if (maxKeys > 0 && len > maxKeys) {\n len = maxKeys;\n }\n\n for (var i = 0; i < len; ++i) {\n var x = qs[i].replace(regexp, '%20'),\n idx = x.indexOf(eq),\n kstr, vstr, k, v;\n\n if (idx >= 0) {\n kstr = x.substr(0, idx);\n vstr = x.substr(idx + 1);\n } else {\n kstr = x;\n vstr = '';\n }\n\n k = decodeURIComponent(kstr);\n v = decodeURIComponent(vstr);\n\n if (!hasOwnProperty(obj, k)) {\n obj[k] = v;\n } else if (isArray(obj[k])) {\n obj[k].push(v);\n } else {\n obj[k] = [obj[k], v];\n }\n }\n\n return obj;\n};\nexport default {\n encode: stringify,\n stringify: stringify,\n decode: parse,\n parse: parse\n}\nexport {stringify as encode, parse as decode};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nimport {toASCII} from 'punycode';\nimport {isObject,isString,isNullOrUndefined,isNull} from 'util';\nimport {parse as qsParse,stringify as qsStringify} from 'querystring';\nexport {\n urlParse as parse,\n urlResolve as resolve,\n urlResolveObject as resolveObject,\n urlFormat as format\n};\nexport default {\n parse: urlParse,\n resolve: urlResolve,\n resolveObject: urlResolveObject,\n format: urlFormat,\n Url: Url\n}\nexport function Url() {\n this.protocol = null;\n this.slashes = null;\n this.auth = null;\n this.host = null;\n this.port = null;\n this.hostname = null;\n this.hash = null;\n this.search = null;\n this.query = null;\n this.pathname = null;\n this.path = null;\n this.href = null;\n}\n\n// Reference: RFC 3986, RFC 1808, RFC 2396\n\n// define these here so at least they only have to be\n// compiled once on the first module load.\nvar protocolPattern = /^([a-z0-9.+-]+:)/i,\n portPattern = /:[0-9]*$/,\n\n // Special case for a simple path URL\n simplePathPattern = /^(\\/\\/?(?!\\/)[^\\?\\s]*)(\\?[^\\s]*)?$/,\n\n // RFC 2396: characters reserved for delimiting URLs.\n // We actually just auto-escape these.\n delims = ['<', '>', '\"', '`', ' ', '\\r', '\\n', '\\t'],\n\n // RFC 2396: characters not allowed for various reasons.\n unwise = ['{', '}', '|', '\\\\', '^', '`'].concat(delims),\n\n // Allowed by RFCs, but cause of XSS attacks. Always escape these.\n autoEscape = ['\\''].concat(unwise),\n // Characters that are never ever allowed in a hostname.\n // Note that any invalid chars are also handled, but these\n // are the ones that are *expected* to be seen, so we fast-path\n // them.\n nonHostChars = ['%', '/', '?', ';', '#'].concat(autoEscape),\n hostEndingChars = ['/', '?', '#'],\n hostnameMaxLen = 255,\n hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/,\n hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/,\n // protocols that can allow \"unsafe\" and \"unwise\" chars.\n unsafeProtocol = {\n 'javascript': true,\n 'javascript:': true\n },\n // protocols that never have a hostname.\n hostlessProtocol = {\n 'javascript': true,\n 'javascript:': true\n },\n // protocols that always contain a // bit.\n slashedProtocol = {\n 'http': true,\n 'https': true,\n 'ftp': true,\n 'gopher': true,\n 'file': true,\n 'http:': true,\n 'https:': true,\n 'ftp:': true,\n 'gopher:': true,\n 'file:': true\n };\n\nfunction urlParse(url, parseQueryString, slashesDenoteHost) {\n if (url && isObject(url) && url instanceof Url) return url;\n\n var u = new Url;\n u.parse(url, parseQueryString, slashesDenoteHost);\n return u;\n}\nUrl.prototype.parse = function(url, parseQueryString, slashesDenoteHost) {\n return parse(this, url, parseQueryString, slashesDenoteHost);\n}\n\nfunction parse(self, url, parseQueryString, slashesDenoteHost) {\n if (!isString(url)) {\n throw new TypeError('Parameter \\'url\\' must be a string, not ' + typeof url);\n }\n\n // Copy chrome, IE, opera backslash-handling behavior.\n // Back slashes before the query string get converted to forward slashes\n // See: https://code.google.com/p/chromium/issues/detail?id=25916\n var queryIndex = url.indexOf('?'),\n splitter =\n (queryIndex !== -1 && queryIndex < url.indexOf('#')) ? '?' : '#',\n uSplit = url.split(splitter),\n slashRegex = /\\\\/g;\n uSplit[0] = uSplit[0].replace(slashRegex, '/');\n url = uSplit.join(splitter);\n\n var rest = url;\n\n // trim before proceeding.\n // This is to support parse stuff like \" http://foo.com \\n\"\n rest = rest.trim();\n\n if (!slashesDenoteHost && url.split('#').length === 1) {\n // Try fast path regexp\n var simplePath = simplePathPattern.exec(rest);\n if (simplePath) {\n self.path = rest;\n self.href = rest;\n self.pathname = simplePath[1];\n if (simplePath[2]) {\n self.search = simplePath[2];\n if (parseQueryString) {\n self.query = qsParse(self.search.substr(1));\n } else {\n self.query = self.search.substr(1);\n }\n } else if (parseQueryString) {\n self.search = '';\n self.query = {};\n }\n return self;\n }\n }\n\n var proto = protocolPattern.exec(rest);\n if (proto) {\n proto = proto[0];\n var lowerProto = proto.toLowerCase();\n self.protocol = lowerProto;\n rest = rest.substr(proto.length);\n }\n\n // figure out if it's got a host\n // user@server is *always* interpreted as a hostname, and url\n // resolution will treat //foo/bar as host=foo,path=bar because that's\n // how the browser resolves relative URLs.\n if (slashesDenoteHost || proto || rest.match(/^\\/\\/[^@\\/]+@[^@\\/]+/)) {\n var slashes = rest.substr(0, 2) === '//';\n if (slashes && !(proto && hostlessProtocol[proto])) {\n rest = rest.substr(2);\n self.slashes = true;\n }\n }\n var i, hec, l, p;\n if (!hostlessProtocol[proto] &&\n (slashes || (proto && !slashedProtocol[proto]))) {\n\n // there's a hostname.\n // the first instance of /, ?, ;, or # ends the host.\n //\n // If there is an @ in the hostname, then non-host chars *are* allowed\n // to the left of the last @ sign, unless some host-ending character\n // comes *before* the @-sign.\n // URLs are obnoxious.\n //\n // ex:\n // http://a@b@c/ => user:a@b host:c\n // http://a@b?@c => user:a host:c path:/?@c\n\n // v0.12 TODO(isaacs): This is not quite how Chrome does things.\n // Review our test case against browsers more comprehensively.\n\n // find the first instance of any hostEndingChars\n var hostEnd = -1;\n for (i = 0; i < hostEndingChars.length; i++) {\n hec = rest.indexOf(hostEndingChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd))\n hostEnd = hec;\n }\n\n // at this point, either we have an explicit point where the\n // auth portion cannot go past, or the last @ char is the decider.\n var auth, atSign;\n if (hostEnd === -1) {\n // atSign can be anywhere.\n atSign = rest.lastIndexOf('@');\n } else {\n // atSign must be in auth portion.\n // http://a@b/c@d => host:b auth:a path:/c@d\n atSign = rest.lastIndexOf('@', hostEnd);\n }\n\n // Now we have a portion which is definitely the auth.\n // Pull that off.\n if (atSign !== -1) {\n auth = rest.slice(0, atSign);\n rest = rest.slice(atSign + 1);\n self.auth = decodeURIComponent(auth);\n }\n\n // the host is the remaining to the left of the first non-host char\n hostEnd = -1;\n for (i = 0; i < nonHostChars.length; i++) {\n hec = rest.indexOf(nonHostChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd))\n hostEnd = hec;\n }\n // if we still have not hit it, then the entire thing is a host.\n if (hostEnd === -1)\n hostEnd = rest.length;\n\n self.host = rest.slice(0, hostEnd);\n rest = rest.slice(hostEnd);\n\n // pull out port.\n parseHost(self);\n\n // we've indicated that there is a hostname,\n // so even if it's empty, it has to be present.\n self.hostname = self.hostname || '';\n\n // if hostname begins with [ and ends with ]\n // assume that it's an IPv6 address.\n var ipv6Hostname = self.hostname[0] === '[' &&\n self.hostname[self.hostname.length - 1] === ']';\n\n // validate a little.\n if (!ipv6Hostname) {\n var hostparts = self.hostname.split(/\\./);\n for (i = 0, l = hostparts.length; i < l; i++) {\n var part = hostparts[i];\n if (!part) continue;\n if (!part.match(hostnamePartPattern)) {\n var newpart = '';\n for (var j = 0, k = part.length; j < k; j++) {\n if (part.charCodeAt(j) > 127) {\n // we replace non-ASCII char with a temporary placeholder\n // we need this to make sure size of hostname is not\n // broken by replacing non-ASCII by nothing\n newpart += 'x';\n } else {\n newpart += part[j];\n }\n }\n // we test again with ASCII char only\n if (!newpart.match(hostnamePartPattern)) {\n var validParts = hostparts.slice(0, i);\n var notHost = hostparts.slice(i + 1);\n var bit = part.match(hostnamePartStart);\n if (bit) {\n validParts.push(bit[1]);\n notHost.unshift(bit[2]);\n }\n if (notHost.length) {\n rest = '/' + notHost.join('.') + rest;\n }\n self.hostname = validParts.join('.');\n break;\n }\n }\n }\n }\n\n if (self.hostname.length > hostnameMaxLen) {\n self.hostname = '';\n } else {\n // hostnames are always lower case.\n self.hostname = self.hostname.toLowerCase();\n }\n\n if (!ipv6Hostname) {\n // IDNA Support: Returns a punycoded representation of \"domain\".\n // It only converts parts of the domain name that\n // have non-ASCII characters, i.e. it doesn't matter if\n // you call it with a domain that already is ASCII-only.\n self.hostname = toASCII(self.hostname);\n }\n\n p = self.port ? ':' + self.port : '';\n var h = self.hostname || '';\n self.host = h + p;\n self.href += self.host;\n\n // strip [ and ] from the hostname\n // the host field still retains them, though\n if (ipv6Hostname) {\n self.hostname = self.hostname.substr(1, self.hostname.length - 2);\n if (rest[0] !== '/') {\n rest = '/' + rest;\n }\n }\n }\n\n // now rest is set to the post-host stuff.\n // chop off any delim chars.\n if (!unsafeProtocol[lowerProto]) {\n\n // First, make 100% sure that any \"autoEscape\" chars get\n // escaped, even if encodeURIComponent doesn't think they\n // need to be.\n for (i = 0, l = autoEscape.length; i < l; i++) {\n var ae = autoEscape[i];\n if (rest.indexOf(ae) === -1)\n continue;\n var esc = encodeURIComponent(ae);\n if (esc === ae) {\n esc = escape(ae);\n }\n rest = rest.split(ae).join(esc);\n }\n }\n\n\n // chop off from the tail first.\n var hash = rest.indexOf('#');\n if (hash !== -1) {\n // got a fragment string.\n self.hash = rest.substr(hash);\n rest = rest.slice(0, hash);\n }\n var qm = rest.indexOf('?');\n if (qm !== -1) {\n self.search = rest.substr(qm);\n self.query = rest.substr(qm + 1);\n if (parseQueryString) {\n self.query = qsParse(self.query);\n }\n rest = rest.slice(0, qm);\n } else if (parseQueryString) {\n // no query string, but parseQueryString still requested\n self.search = '';\n self.query = {};\n }\n if (rest) self.pathname = rest;\n if (slashedProtocol[lowerProto] &&\n self.hostname && !self.pathname) {\n self.pathname = '/';\n }\n\n //to support http.request\n if (self.pathname || self.search) {\n p = self.pathname || '';\n var s = self.search || '';\n self.path = p + s;\n }\n\n // finally, reconstruct the href based on what has been validated.\n self.href = format(self);\n return self;\n}\n\n// format a parsed object into a url string\nfunction urlFormat(obj) {\n // ensure it's an object, and not a string url.\n // If it's an obj, this is a no-op.\n // this way, you can call url_format() on strings\n // to clean up potentially wonky urls.\n if (isString(obj)) obj = parse({}, obj);\n return format(obj);\n}\n\nfunction format(self) {\n var auth = self.auth || '';\n if (auth) {\n auth = encodeURIComponent(auth);\n auth = auth.replace(/%3A/i, ':');\n auth += '@';\n }\n\n var protocol = self.protocol || '',\n pathname = self.pathname || '',\n hash = self.hash || '',\n host = false,\n query = '';\n\n if (self.host) {\n host = auth + self.host;\n } else if (self.hostname) {\n host = auth + (self.hostname.indexOf(':') === -1 ?\n self.hostname :\n '[' + this.hostname + ']');\n if (self.port) {\n host += ':' + self.port;\n }\n }\n\n if (self.query &&\n isObject(self.query) &&\n Object.keys(self.query).length) {\n query = qsStringify(self.query);\n }\n\n var search = self.search || (query && ('?' + query)) || '';\n\n if (protocol && protocol.substr(-1) !== ':') protocol += ':';\n\n // only the slashedProtocols get the //. Not mailto:, xmpp:, etc.\n // unless they had them to begin with.\n if (self.slashes ||\n (!protocol || slashedProtocol[protocol]) && host !== false) {\n host = '//' + (host || '');\n if (pathname && pathname.charAt(0) !== '/') pathname = '/' + pathname;\n } else if (!host) {\n host = '';\n }\n\n if (hash && hash.charAt(0) !== '#') hash = '#' + hash;\n if (search && search.charAt(0) !== '?') search = '?' + search;\n\n pathname = pathname.replace(/[?#]/g, function(match) {\n return encodeURIComponent(match);\n });\n search = search.replace('#', '%23');\n\n return protocol + host + pathname + search + hash;\n}\n\nUrl.prototype.format = function() {\n return format(this);\n}\n\nfunction urlResolve(source, relative) {\n return urlParse(source, false, true).resolve(relative);\n}\n\nUrl.prototype.resolve = function(relative) {\n return this.resolveObject(urlParse(relative, false, true)).format();\n};\n\nfunction urlResolveObject(source, relative) {\n if (!source) return relative;\n return urlParse(source, false, true).resolveObject(relative);\n}\n\nUrl.prototype.resolveObject = function(relative) {\n if (isString(relative)) {\n var rel = new Url();\n rel.parse(relative, false, true);\n relative = rel;\n }\n\n var result = new Url();\n var tkeys = Object.keys(this);\n for (var tk = 0; tk < tkeys.length; tk++) {\n var tkey = tkeys[tk];\n result[tkey] = this[tkey];\n }\n\n // hash is always overridden, no matter what.\n // even href=\"\" will remove it.\n result.hash = relative.hash;\n\n // if the relative url is empty, then there's nothing left to do here.\n if (relative.href === '') {\n result.href = result.format();\n return result;\n }\n\n // hrefs like //foo/bar always cut to the protocol.\n if (relative.slashes && !relative.protocol) {\n // take everything except the protocol from relative\n var rkeys = Object.keys(relative);\n for (var rk = 0; rk < rkeys.length; rk++) {\n var rkey = rkeys[rk];\n if (rkey !== 'protocol')\n result[rkey] = relative[rkey];\n }\n\n //urlParse appends trailing / to urls like http://www.example.com\n if (slashedProtocol[result.protocol] &&\n result.hostname && !result.pathname) {\n result.path = result.pathname = '/';\n }\n\n result.href = result.format();\n return result;\n }\n var relPath;\n if (relative.protocol && relative.protocol !== result.protocol) {\n // if it's a known url protocol, then changing\n // the protocol does weird things\n // first, if it's not file:, then we MUST have a host,\n // and if there was a path\n // to begin with, then we MUST have a path.\n // if it is file:, then the host is dropped,\n // because that's known to be hostless.\n // anything else is assumed to be absolute.\n if (!slashedProtocol[relative.protocol]) {\n var keys = Object.keys(relative);\n for (var v = 0; v < keys.length; v++) {\n var k = keys[v];\n result[k] = relative[k];\n }\n result.href = result.format();\n return result;\n }\n\n result.protocol = relative.protocol;\n if (!relative.host && !hostlessProtocol[relative.protocol]) {\n relPath = (relative.pathname || '').split('/');\n while (relPath.length && !(relative.host = relPath.shift()));\n if (!relative.host) relative.host = '';\n if (!relative.hostname) relative.hostname = '';\n if (relPath[0] !== '') relPath.unshift('');\n if (relPath.length < 2) relPath.unshift('');\n result.pathname = relPath.join('/');\n } else {\n result.pathname = relative.pathname;\n }\n result.search = relative.search;\n result.query = relative.query;\n result.host = relative.host || '';\n result.auth = relative.auth;\n result.hostname = relative.hostname || relative.host;\n result.port = relative.port;\n // to support http.request\n if (result.pathname || result.search) {\n var p = result.pathname || '';\n var s = result.search || '';\n result.path = p + s;\n }\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n }\n\n var isSourceAbs = (result.pathname && result.pathname.charAt(0) === '/'),\n isRelAbs = (\n relative.host ||\n relative.pathname && relative.pathname.charAt(0) === '/'\n ),\n mustEndAbs = (isRelAbs || isSourceAbs ||\n (result.host && relative.pathname)),\n removeAllDots = mustEndAbs,\n srcPath = result.pathname && result.pathname.split('/') || [],\n psychotic = result.protocol && !slashedProtocol[result.protocol];\n relPath = relative.pathname && relative.pathname.split('/') || [];\n // if the url is a non-slashed url, then relative\n // links like ../.. should be able\n // to crawl up to the hostname, as well. This is strange.\n // result.protocol has already been set by now.\n // Later on, put the first path part into the host field.\n if (psychotic) {\n result.hostname = '';\n result.port = null;\n if (result.host) {\n if (srcPath[0] === '') srcPath[0] = result.host;\n else srcPath.unshift(result.host);\n }\n result.host = '';\n if (relative.protocol) {\n relative.hostname = null;\n relative.port = null;\n if (relative.host) {\n if (relPath[0] === '') relPath[0] = relative.host;\n else relPath.unshift(relative.host);\n }\n relative.host = null;\n }\n mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === '');\n }\n var authInHost;\n if (isRelAbs) {\n // it's absolute.\n result.host = (relative.host || relative.host === '') ?\n relative.host : result.host;\n result.hostname = (relative.hostname || relative.hostname === '') ?\n relative.hostname : result.hostname;\n result.search = relative.search;\n result.query = relative.query;\n srcPath = relPath;\n // fall through to the dot-handling below.\n } else if (relPath.length) {\n // it's relative\n // throw away the existing file, and take the new path instead.\n if (!srcPath) srcPath = [];\n srcPath.pop();\n srcPath = srcPath.concat(relPath);\n result.search = relative.search;\n result.query = relative.query;\n } else if (!isNullOrUndefined(relative.search)) {\n // just pull out the search.\n // like href='?foo'.\n // Put this after the other two cases because it simplifies the booleans\n if (psychotic) {\n result.hostname = result.host = srcPath.shift();\n //occationaly the auth can get stuck only in host\n //this especially happens in cases like\n //url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n authInHost = result.host && result.host.indexOf('@') > 0 ?\n result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.host = result.hostname = authInHost.shift();\n }\n }\n result.search = relative.search;\n result.query = relative.query;\n //to support http.request\n if (!isNull(result.pathname) || !isNull(result.search)) {\n result.path = (result.pathname ? result.pathname : '') +\n (result.search ? result.search : '');\n }\n result.href = result.format();\n return result;\n }\n\n if (!srcPath.length) {\n // no path at all. easy.\n // we've already handled the other stuff above.\n result.pathname = null;\n //to support http.request\n if (result.search) {\n result.path = '/' + result.search;\n } else {\n result.path = null;\n }\n result.href = result.format();\n return result;\n }\n\n // if a url ENDs in . or .., then it must get a trailing slash.\n // however, if it ends in anything else non-slashy,\n // then it must NOT get a trailing slash.\n var last = srcPath.slice(-1)[0];\n var hasTrailingSlash = (\n (result.host || relative.host || srcPath.length > 1) &&\n (last === '.' || last === '..') || last === '');\n\n // strip single dots, resolve double dots to parent dir\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = srcPath.length; i >= 0; i--) {\n last = srcPath[i];\n if (last === '.') {\n srcPath.splice(i, 1);\n } else if (last === '..') {\n srcPath.splice(i, 1);\n up++;\n } else if (up) {\n srcPath.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (!mustEndAbs && !removeAllDots) {\n for (; up--; up) {\n srcPath.unshift('..');\n }\n }\n\n if (mustEndAbs && srcPath[0] !== '' &&\n (!srcPath[0] || srcPath[0].charAt(0) !== '/')) {\n srcPath.unshift('');\n }\n\n if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) {\n srcPath.push('');\n }\n\n var isAbsolute = srcPath[0] === '' ||\n (srcPath[0] && srcPath[0].charAt(0) === '/');\n\n // put the host back\n if (psychotic) {\n result.hostname = result.host = isAbsolute ? '' :\n srcPath.length ? srcPath.shift() : '';\n //occationaly the auth can get stuck only in host\n //this especially happens in cases like\n //url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n authInHost = result.host && result.host.indexOf('@') > 0 ?\n result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.host = result.hostname = authInHost.shift();\n }\n }\n\n mustEndAbs = mustEndAbs || (result.host && srcPath.length);\n\n if (mustEndAbs && !isAbsolute) {\n srcPath.unshift('');\n }\n\n if (!srcPath.length) {\n result.pathname = null;\n result.path = null;\n } else {\n result.pathname = srcPath.join('/');\n }\n\n //to support request.http\n if (!isNull(result.pathname) || !isNull(result.search)) {\n result.path = (result.pathname ? result.pathname : '') +\n (result.search ? result.search : '');\n }\n result.auth = relative.auth || result.auth;\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n};\n\nUrl.prototype.parseHost = function() {\n return parseHost(this);\n};\n\nfunction parseHost(self) {\n var host = self.host;\n var port = portPattern.exec(host);\n if (port) {\n port = port[0];\n if (port !== ':') {\n self.port = port.substr(1);\n }\n host = host.substr(0, host.length - port.length);\n }\n if (host) self.hostname = host;\n}\n","/*!\n * @pixi/constants - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/constants is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * Different types of environments for WebGL.\n *\n * @static\n * @memberof PIXI\n * @name ENV\n * @enum {number}\n * @property {number} WEBGL_LEGACY - Used for older v1 WebGL devices. PixiJS will aim to ensure compatibility\n * with older / less advanced devices. If you experience unexplained flickering prefer this environment.\n * @property {number} WEBGL - Version 1 of WebGL\n * @property {number} WEBGL2 - Version 2 of WebGL\n */\nvar ENV = {\n WEBGL_LEGACY: 0,\n WEBGL: 1,\n WEBGL2: 2,\n};\n\n/**\n * Constant to identify the Renderer Type.\n *\n * @static\n * @memberof PIXI\n * @name RENDERER_TYPE\n * @enum {number}\n * @property {number} UNKNOWN - Unknown render type.\n * @property {number} WEBGL - WebGL render type.\n * @property {number} CANVAS - Canvas render type.\n */\nvar RENDERER_TYPE = {\n UNKNOWN: 0,\n WEBGL: 1,\n CANVAS: 2,\n};\n\n/**\n * Various blend modes supported by PIXI.\n *\n * IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes.\n * Anything else will silently act like NORMAL.\n *\n * @memberof PIXI\n * @name BLEND_MODES\n * @enum {number}\n * @property {number} NORMAL\n * @property {number} ADD\n * @property {number} MULTIPLY\n * @property {number} SCREEN\n * @property {number} OVERLAY\n * @property {number} DARKEN\n * @property {number} LIGHTEN\n * @property {number} COLOR_DODGE\n * @property {number} COLOR_BURN\n * @property {number} HARD_LIGHT\n * @property {number} SOFT_LIGHT\n * @property {number} DIFFERENCE\n * @property {number} EXCLUSION\n * @property {number} HUE\n * @property {number} SATURATION\n * @property {number} COLOR\n * @property {number} LUMINOSITY\n * @property {number} NORMAL_NPM\n * @property {number} ADD_NPM\n * @property {number} SCREEN_NPM\n * @property {number} NONE\n * @property {number} SRC_IN\n * @property {number} SRC_OUT\n * @property {number} SRC_ATOP\n * @property {number} DST_OVER\n * @property {number} DST_IN\n * @property {number} DST_OUT\n * @property {number} DST_ATOP\n * @property {number} SUBTRACT\n * @property {number} SRC_OVER\n * @property {number} ERASE\n */\nvar BLEND_MODES = {\n NORMAL: 0,\n ADD: 1,\n MULTIPLY: 2,\n SCREEN: 3,\n OVERLAY: 4,\n DARKEN: 5,\n LIGHTEN: 6,\n COLOR_DODGE: 7,\n COLOR_BURN: 8,\n HARD_LIGHT: 9,\n SOFT_LIGHT: 10,\n DIFFERENCE: 11,\n EXCLUSION: 12,\n HUE: 13,\n SATURATION: 14,\n COLOR: 15,\n LUMINOSITY: 16,\n NORMAL_NPM: 17,\n ADD_NPM: 18,\n SCREEN_NPM: 19,\n NONE: 20,\n\n SRC_OVER: 0,\n SRC_IN: 21,\n SRC_OUT: 22,\n SRC_ATOP: 23,\n DST_OVER: 24,\n DST_IN: 25,\n DST_OUT: 26,\n DST_ATOP: 27,\n ERASE: 26,\n SUBTRACT: 28,\n};\n\n/**\n * Various webgl draw modes. These can be used to specify which GL drawMode to use\n * under certain situations and renderers.\n *\n * @memberof PIXI\n * @static\n * @name DRAW_MODES\n * @enum {number}\n * @property {number} POINTS\n * @property {number} LINES\n * @property {number} LINE_LOOP\n * @property {number} LINE_STRIP\n * @property {number} TRIANGLES\n * @property {number} TRIANGLE_STRIP\n * @property {number} TRIANGLE_FAN\n */\nvar DRAW_MODES = {\n POINTS: 0,\n LINES: 1,\n LINE_LOOP: 2,\n LINE_STRIP: 3,\n TRIANGLES: 4,\n TRIANGLE_STRIP: 5,\n TRIANGLE_FAN: 6,\n};\n\n/**\n * Various GL texture/resources formats.\n *\n * @memberof PIXI\n * @static\n * @name FORMATS\n * @enum {number}\n * @property {number} RGBA=6408\n * @property {number} RGB=6407\n * @property {number} ALPHA=6406\n * @property {number} LUMINANCE=6409\n * @property {number} LUMINANCE_ALPHA=6410\n * @property {number} DEPTH_COMPONENT=6402\n * @property {number} DEPTH_STENCIL=34041\n */\nvar FORMATS = {\n RGBA: 6408,\n RGB: 6407,\n ALPHA: 6406,\n LUMINANCE: 6409,\n LUMINANCE_ALPHA: 6410,\n DEPTH_COMPONENT: 6402,\n DEPTH_STENCIL: 34041,\n};\n\n/**\n * Various GL target types.\n *\n * @memberof PIXI\n * @static\n * @name TARGETS\n * @enum {number}\n * @property {number} TEXTURE_2D=3553\n * @property {number} TEXTURE_CUBE_MAP=34067\n * @property {number} TEXTURE_2D_ARRAY=35866\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_X=34069\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_X=34070\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Y=34071\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Y=34072\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Z=34073\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Z=34074\n */\nvar TARGETS = {\n TEXTURE_2D: 3553,\n TEXTURE_CUBE_MAP: 34067,\n TEXTURE_2D_ARRAY: 35866,\n TEXTURE_CUBE_MAP_POSITIVE_X: 34069,\n TEXTURE_CUBE_MAP_NEGATIVE_X: 34070,\n TEXTURE_CUBE_MAP_POSITIVE_Y: 34071,\n TEXTURE_CUBE_MAP_NEGATIVE_Y: 34072,\n TEXTURE_CUBE_MAP_POSITIVE_Z: 34073,\n TEXTURE_CUBE_MAP_NEGATIVE_Z: 34074,\n};\n\n/**\n * Various GL data format types.\n *\n * @memberof PIXI\n * @static\n * @name TYPES\n * @enum {number}\n * @property {number} UNSIGNED_BYTE=5121\n * @property {number} UNSIGNED_SHORT=5123\n * @property {number} UNSIGNED_SHORT_5_6_5=33635\n * @property {number} UNSIGNED_SHORT_4_4_4_4=32819\n * @property {number} UNSIGNED_SHORT_5_5_5_1=32820\n * @property {number} FLOAT=5126\n * @property {number} HALF_FLOAT=36193\n */\nvar TYPES = {\n UNSIGNED_BYTE: 5121,\n UNSIGNED_SHORT: 5123,\n UNSIGNED_SHORT_5_6_5: 33635,\n UNSIGNED_SHORT_4_4_4_4: 32819,\n UNSIGNED_SHORT_5_5_5_1: 32820,\n FLOAT: 5126,\n HALF_FLOAT: 36193,\n};\n\n/**\n * The scale modes that are supported by pixi.\n *\n * The {@link PIXI.settings.SCALE_MODE} scale mode affects the default scaling mode of future operations.\n * It can be re-assigned to either LINEAR or NEAREST, depending upon suitability.\n *\n * @memberof PIXI\n * @static\n * @name SCALE_MODES\n * @enum {number}\n * @property {number} LINEAR Smooth scaling\n * @property {number} NEAREST Pixelating scaling\n */\nvar SCALE_MODES = {\n LINEAR: 1,\n NEAREST: 0,\n};\n\n/**\n * The wrap modes that are supported by pixi.\n *\n * The {@link PIXI.settings.WRAP_MODE} wrap mode affects the default wrapping mode of future operations.\n * It can be re-assigned to either CLAMP or REPEAT, depending upon suitability.\n * If the texture is non power of two then clamp will be used regardless as WebGL can\n * only use REPEAT if the texture is po2.\n *\n * This property only affects WebGL.\n *\n * @name WRAP_MODES\n * @memberof PIXI\n * @static\n * @enum {number}\n * @property {number} CLAMP - The textures uvs are clamped\n * @property {number} REPEAT - The texture uvs tile and repeat\n * @property {number} MIRRORED_REPEAT - The texture uvs tile and repeat with mirroring\n */\nvar WRAP_MODES = {\n CLAMP: 33071,\n REPEAT: 10497,\n MIRRORED_REPEAT: 33648,\n};\n\n/**\n * Mipmap filtering modes that are supported by pixi.\n *\n * The {@link PIXI.settings.MIPMAP_TEXTURES} affects default texture filtering.\n * Mipmaps are generated for a baseTexture if its `mipmap` field is `ON`,\n * or its `POW2` and texture dimensions are powers of 2.\n * Due to platform restriction, `ON` option will work like `POW2` for webgl-1.\n *\n * This property only affects WebGL.\n *\n * @name MIPMAP_MODES\n * @memberof PIXI\n * @static\n * @enum {number}\n * @property {number} OFF - No mipmaps\n * @property {number} POW2 - Generate mipmaps if texture dimensions are pow2\n * @property {number} ON - Always generate mipmaps\n */\nvar MIPMAP_MODES = {\n OFF: 0,\n POW2: 1,\n ON: 2,\n};\n\n/**\n * The gc modes that are supported by pixi.\n *\n * The {@link PIXI.settings.GC_MODE} Garbage Collection mode for PixiJS textures is AUTO\n * If set to GC_MODE, the renderer will occasionally check textures usage. If they are not\n * used for a specified period of time they will be removed from the GPU. They will of course\n * be uploaded again when they are required. This is a silent behind the scenes process that\n * should ensure that the GPU does not get filled up.\n *\n * Handy for mobile devices!\n * This property only affects WebGL.\n *\n * @name GC_MODES\n * @enum {number}\n * @static\n * @memberof PIXI\n * @property {number} AUTO - Garbage collection will happen periodically automatically\n * @property {number} MANUAL - Garbage collection will need to be called manually\n */\nvar GC_MODES = {\n AUTO: 0,\n MANUAL: 1,\n};\n\n/**\n * Constants that specify float precision in shaders.\n *\n * @name PRECISION\n * @memberof PIXI\n * @static\n * @enum {string}\n * @constant\n * @property {string} LOW='lowp'\n * @property {string} MEDIUM='mediump'\n * @property {string} HIGH='highp'\n */\nvar PRECISION = {\n LOW: 'lowp',\n MEDIUM: 'mediump',\n HIGH: 'highp',\n};\n\nexport { BLEND_MODES, DRAW_MODES, ENV, FORMATS, GC_MODES, MIPMAP_MODES, PRECISION, RENDERER_TYPE, SCALE_MODES, TARGETS, TYPES, WRAP_MODES };\n//# sourceMappingURL=constants.es.js.map\n","/*!\n * @pixi/utils - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/utils is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nexport { isMobile } from '@pixi/settings';\nexport { default as EventEmitter } from 'eventemitter3';\nexport { default as earcut } from 'earcut';\nimport _url from 'url';\nexport { default as url } from 'url';\nimport { BLEND_MODES } from '@pixi/constants';\n\n/**\n * The prefix that denotes a URL is for a retina asset.\n *\n * @static\n * @name RETINA_PREFIX\n * @memberof PIXI.settings\n * @type {RegExp}\n * @default /@([0-9\\.]+)x/\n * @example `@2x`\n */\nsettings.RETINA_PREFIX = /@([0-9\\.]+)x/;\n\n/**\n * Should the `failIfMajorPerformanceCaveat` flag be enabled as a context option used in the `isWebGLSupported` function.\n * For most scenarios this should be left as true, as otherwise the user may have a poor experience.\n * However, it can be useful to disable under certain scenarios, such as headless unit tests.\n *\n * @static\n * @name FAIL_IF_MAJOR_PERFORMANCE_CAVEAT\n * @memberof PIXI.settings\n * @type {boolean}\n * @default true\n */\nsettings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = true;\n\nvar saidHello = false;\nvar VERSION = '5.1.3';\n\n/**\n * Skips the hello message of renderers that are created after this is run.\n *\n * @function skipHello\n * @memberof PIXI.utils\n */\nfunction skipHello()\n{\n saidHello = true;\n}\n\n/**\n * Logs out the version and renderer information for this running instance of PIXI.\n * If you don't want to see this message you can run `PIXI.utils.skipHello()` before\n * creating your renderer. Keep in mind that doing that will forever make you a jerk face.\n *\n * @static\n * @function sayHello\n * @memberof PIXI.utils\n * @param {string} type - The string renderer type to log.\n */\nfunction sayHello(type)\n{\n if (saidHello)\n {\n return;\n }\n\n if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)\n {\n var args = [\n (\"\\n %c %c %c PixiJS \" + VERSION + \" - ✰ \" + type + \" ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \\n\\n\"),\n 'background: #ff66a5; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'color: #ff66a5; background: #030307; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'background: #ffc3dc; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;' ];\n\n window.console.log.apply(console, args);\n }\n else if (window.console)\n {\n window.console.log((\"PixiJS \" + VERSION + \" - \" + type + \" - http://www.pixijs.com/\"));\n }\n\n saidHello = true;\n}\n\nvar supported;\n\n/**\n * Helper for checking for WebGL support.\n *\n * @memberof PIXI.utils\n * @function isWebGLSupported\n * @return {boolean} Is WebGL supported.\n */\nfunction isWebGLSupported()\n{\n if (typeof supported === 'undefined')\n {\n supported = (function supported()\n {\n var contextOptions = {\n stencil: true,\n failIfMajorPerformanceCaveat: settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT,\n };\n\n try\n {\n if (!window.WebGLRenderingContext)\n {\n return false;\n }\n\n var canvas = document.createElement('canvas');\n var gl = canvas.getContext('webgl', contextOptions)\n || canvas.getContext('experimental-webgl', contextOptions);\n\n var success = !!(gl && gl.getContextAttributes().stencil);\n\n if (gl)\n {\n var loseContext = gl.getExtension('WEBGL_lose_context');\n\n if (loseContext)\n {\n loseContext.loseContext();\n }\n }\n\n gl = null;\n\n return success;\n }\n catch (e)\n {\n return false;\n }\n })();\n }\n\n return supported;\n}\n\n/**\n * Converts a hexadecimal color number to an [R, G, B] array of normalized floats (numbers from 0.0 to 1.0).\n *\n * @example\n * PIXI.utils.hex2rgb(0xffffff); // returns [1, 1, 1]\n * @memberof PIXI.utils\n * @function hex2rgb\n * @param {number} hex - The hexadecimal number to convert\n * @param {number[]} [out=[]] If supplied, this array will be used rather than returning a new one\n * @return {number[]} An array representing the [R, G, B] of the color where all values are floats.\n */\nfunction hex2rgb(hex, out)\n{\n out = out || [];\n\n out[0] = ((hex >> 16) & 0xFF) / 255;\n out[1] = ((hex >> 8) & 0xFF) / 255;\n out[2] = (hex & 0xFF) / 255;\n\n return out;\n}\n\n/**\n * Converts a hexadecimal color number to a string.\n *\n * @example\n * PIXI.utils.hex2string(0xffffff); // returns \"#ffffff\"\n * @memberof PIXI.utils\n * @function hex2string\n * @param {number} hex - Number in hex (e.g., `0xffffff`)\n * @return {string} The string color (e.g., `\"#ffffff\"`).\n */\nfunction hex2string(hex)\n{\n hex = hex.toString(16);\n hex = '000000'.substr(0, 6 - hex.length) + hex;\n\n return (\"#\" + hex);\n}\n\n/**\n * Converts a hexadecimal string to a hexadecimal color number.\n *\n * @example\n * PIXI.utils.string2hex(\"#ffffff\"); // returns 0xffffff\n * @memberof PIXI.utils\n * @function string2hex\n * @param {string} The string color (e.g., `\"#ffffff\"`)\n * @return {number} Number in hexadecimal.\n */\nfunction string2hex(string)\n{\n if (typeof string === 'string' && string[0] === '#')\n {\n string = string.substr(1);\n }\n\n return parseInt(string, 16);\n}\n\n/**\n * Converts a color as an [R, G, B] array of normalized floats to a hexadecimal number.\n *\n * @example\n * PIXI.utils.rgb2hex([1, 1, 1]); // returns 0xffffff\n * @memberof PIXI.utils\n * @function rgb2hex\n * @param {number[]} rgb - Array of numbers where all values are normalized floats from 0.0 to 1.0.\n * @return {number} Number in hexadecimal.\n */\nfunction rgb2hex(rgb)\n{\n return (((rgb[0] * 255) << 16) + ((rgb[1] * 255) << 8) + (rgb[2] * 255 | 0));\n}\n\n/**\n * Corrects PixiJS blend, takes premultiplied alpha into account\n *\n * @memberof PIXI.utils\n * @function mapPremultipliedBlendModes\n * @private\n * @param {Array} [array] - The array to output into.\n * @return {Array} Mapped modes.\n */\nfunction mapPremultipliedBlendModes()\n{\n var pm = [];\n var npm = [];\n\n for (var i = 0; i < 32; i++)\n {\n pm[i] = i;\n npm[i] = i;\n }\n\n pm[BLEND_MODES.NORMAL_NPM] = BLEND_MODES.NORMAL;\n pm[BLEND_MODES.ADD_NPM] = BLEND_MODES.ADD;\n pm[BLEND_MODES.SCREEN_NPM] = BLEND_MODES.SCREEN;\n\n npm[BLEND_MODES.NORMAL] = BLEND_MODES.NORMAL_NPM;\n npm[BLEND_MODES.ADD] = BLEND_MODES.ADD_NPM;\n npm[BLEND_MODES.SCREEN] = BLEND_MODES.SCREEN_NPM;\n\n var array = [];\n\n array.push(npm);\n array.push(pm);\n\n return array;\n}\n\n/**\n * maps premultiply flag and blendMode to adjusted blendMode\n * @memberof PIXI.utils\n * @const premultiplyBlendMode\n * @type {Array}\n */\nvar premultiplyBlendMode = mapPremultipliedBlendModes();\n\n/**\n * changes blendMode according to texture format\n *\n * @memberof PIXI.utils\n * @function correctBlendMode\n * @param {number} blendMode supposed blend mode\n * @param {boolean} premultiplied whether source is premultiplied\n * @returns {number} true blend mode for this texture\n */\nfunction correctBlendMode(blendMode, premultiplied)\n{\n return premultiplyBlendMode[premultiplied ? 1 : 0][blendMode];\n}\n\n/**\n * combines rgb and alpha to out array\n *\n * @memberof PIXI.utils\n * @function premultiplyRgba\n * @param {Float32Array|number[]} rgb input rgb\n * @param {number} alpha alpha param\n * @param {Float32Array} [out] output\n * @param {boolean} [premultiply=true] do premultiply it\n * @returns {Float32Array} vec4 rgba\n */\nfunction premultiplyRgba(rgb, alpha, out, premultiply)\n{\n out = out || new Float32Array(4);\n if (premultiply || premultiply === undefined)\n {\n out[0] = rgb[0] * alpha;\n out[1] = rgb[1] * alpha;\n out[2] = rgb[2] * alpha;\n }\n else\n {\n out[0] = rgb[0];\n out[1] = rgb[1];\n out[2] = rgb[2];\n }\n out[3] = alpha;\n\n return out;\n}\n\n/**\n * premultiplies tint\n *\n * @memberof PIXI.utils\n * @function premultiplyTint\n * @param {number} tint integer RGB\n * @param {number} alpha floating point alpha (0.0-1.0)\n * @returns {number} tint multiplied by alpha\n */\nfunction premultiplyTint(tint, alpha)\n{\n if (alpha === 1.0)\n {\n return (alpha * 255 << 24) + tint;\n }\n if (alpha === 0.0)\n {\n return 0;\n }\n var R = ((tint >> 16) & 0xFF);\n var G = ((tint >> 8) & 0xFF);\n var B = (tint & 0xFF);\n\n R = ((R * alpha) + 0.5) | 0;\n G = ((G * alpha) + 0.5) | 0;\n B = ((B * alpha) + 0.5) | 0;\n\n return (alpha * 255 << 24) + (R << 16) + (G << 8) + B;\n}\n\n/**\n * converts integer tint and float alpha to vec4 form, premultiplies by default\n *\n * @memberof PIXI.utils\n * @function premultiplyTintToRgba\n * @param {number} tint input tint\n * @param {number} alpha alpha param\n * @param {Float32Array} [out] output\n * @param {boolean} [premultiply=true] do premultiply it\n * @returns {Float32Array} vec4 rgba\n */\nfunction premultiplyTintToRgba(tint, alpha, out, premultiply)\n{\n out = out || new Float32Array(4);\n out[0] = ((tint >> 16) & 0xFF) / 255.0;\n out[1] = ((tint >> 8) & 0xFF) / 255.0;\n out[2] = (tint & 0xFF) / 255.0;\n if (premultiply || premultiply === undefined)\n {\n out[0] *= alpha;\n out[1] *= alpha;\n out[2] *= alpha;\n }\n out[3] = alpha;\n\n return out;\n}\n\n/**\n * Generic Mask Stack data structure\n *\n * @memberof PIXI.utils\n * @function createIndicesForQuads\n * @param {number} size - Number of quads\n * @param {Uint16Array|Uint32Array} [outBuffer] - Buffer for output, length has to be `6 * size`\n * @return {Uint16Array|Uint32Array} - Resulting index buffer\n */\nfunction createIndicesForQuads(size, outBuffer)\n{\n if ( outBuffer === void 0 ) outBuffer = null;\n\n // the total number of indices in our array, there are 6 points per quad.\n var totalIndices = size * 6;\n\n outBuffer = outBuffer || new Uint16Array(totalIndices);\n\n if (outBuffer.length !== totalIndices)\n {\n throw new Error((\"Out buffer length is incorrect, got \" + (outBuffer.length) + \" and expected \" + totalIndices));\n }\n\n // fill the indices with the quads to draw\n for (var i = 0, j = 0; i < totalIndices; i += 6, j += 4)\n {\n outBuffer[i + 0] = j + 0;\n outBuffer[i + 1] = j + 1;\n outBuffer[i + 2] = j + 2;\n outBuffer[i + 3] = j + 0;\n outBuffer[i + 4] = j + 2;\n outBuffer[i + 5] = j + 3;\n }\n\n return outBuffer;\n}\n\n/**\n * Remove items from a javascript array without generating garbage\n *\n * @function removeItems\n * @memberof PIXI.utils\n * @param {Array} arr Array to remove elements from\n * @param {number} startIdx starting index\n * @param {number} removeCount how many to remove\n */\nfunction removeItems(arr, startIdx, removeCount)\n{\n var length = arr.length;\n var i;\n\n if (startIdx >= length || removeCount === 0)\n {\n return;\n }\n\n removeCount = (startIdx + removeCount > length ? length - startIdx : removeCount);\n\n var len = length - removeCount;\n\n for (i = startIdx; i < len; ++i)\n {\n arr[i] = arr[i + removeCount];\n }\n\n arr.length = len;\n}\n\nvar nextUid = 0;\n\n/**\n * Gets the next unique identifier\n *\n * @memberof PIXI.utils\n * @function uid\n * @return {number} The next unique identifier to use.\n */\nfunction uid()\n{\n return ++nextUid;\n}\n\n/**\n * Returns sign of number\n *\n * @memberof PIXI.utils\n * @function sign\n * @param {number} n - the number to check the sign of\n * @returns {number} 0 if `n` is 0, -1 if `n` is negative, 1 if `n` is positive\n */\nfunction sign(n)\n{\n if (n === 0) { return 0; }\n\n return n < 0 ? -1 : 1;\n}\n\n// Taken from the bit-twiddle package\n\n/**\n * Rounds to next power of two.\n *\n * @function nextPow2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {number}\n */\nfunction nextPow2(v)\n{\n v += v === 0;\n --v;\n v |= v >>> 1;\n v |= v >>> 2;\n v |= v >>> 4;\n v |= v >>> 8;\n v |= v >>> 16;\n\n return v + 1;\n}\n\n/**\n * Checks if a number is a power of two.\n *\n * @function isPow2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {boolean} `true` if value is power of two\n */\nfunction isPow2(v)\n{\n return !(v & (v - 1)) && (!!v);\n}\n\n/**\n * Computes ceil of log base 2\n *\n * @function log2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {number} logarithm base 2\n */\nfunction log2(v)\n{\n var r = (v > 0xFFFF) << 4;\n\n v >>>= r;\n\n var shift = (v > 0xFF) << 3;\n\n v >>>= shift; r |= shift;\n shift = (v > 0xF) << 2;\n v >>>= shift; r |= shift;\n shift = (v > 0x3) << 1;\n v >>>= shift; r |= shift;\n\n return r | (v >> 1);\n}\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name ProgramCache\n * @memberof PIXI.utils\n * @type {Object}\n */\nvar ProgramCache = {};\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name TextureCache\n * @memberof PIXI.utils\n * @type {Object}\n */\nvar TextureCache = Object.create(null);\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name BaseTextureCache\n * @memberof PIXI.utils\n * @type {Object}\n */\n\nvar BaseTextureCache = Object.create(null);\n/**\n * Destroys all texture in the cache\n *\n * @memberof PIXI.utils\n * @function destroyTextureCache\n */\nfunction destroyTextureCache()\n{\n var key;\n\n for (key in TextureCache)\n {\n TextureCache[key].destroy();\n }\n for (key in BaseTextureCache)\n {\n BaseTextureCache[key].destroy();\n }\n}\n\n/**\n * Removes all textures from cache, but does not destroy them\n *\n * @memberof PIXI.utils\n * @function clearTextureCache\n */\nfunction clearTextureCache()\n{\n var key;\n\n for (key in TextureCache)\n {\n delete TextureCache[key];\n }\n for (key in BaseTextureCache)\n {\n delete BaseTextureCache[key];\n }\n}\n\n/**\n * Trim transparent borders from a canvas\n *\n * @memberof PIXI.utils\n * @function trimCanvas\n * @param {HTMLCanvasElement} canvas - the canvas to trim\n * @returns {object} Trim data\n */\nfunction trimCanvas(canvas)\n{\n // https://gist.github.com/remy/784508\n\n var width = canvas.width;\n var height = canvas.height;\n\n var context = canvas.getContext('2d');\n var imageData = context.getImageData(0, 0, width, height);\n var pixels = imageData.data;\n var len = pixels.length;\n\n var bound = {\n top: null,\n left: null,\n right: null,\n bottom: null,\n };\n var data = null;\n var i;\n var x;\n var y;\n\n for (i = 0; i < len; i += 4)\n {\n if (pixels[i + 3] !== 0)\n {\n x = (i / 4) % width;\n y = ~~((i / 4) / width);\n\n if (bound.top === null)\n {\n bound.top = y;\n }\n\n if (bound.left === null)\n {\n bound.left = x;\n }\n else if (x < bound.left)\n {\n bound.left = x;\n }\n\n if (bound.right === null)\n {\n bound.right = x + 1;\n }\n else if (bound.right < x)\n {\n bound.right = x + 1;\n }\n\n if (bound.bottom === null)\n {\n bound.bottom = y;\n }\n else if (bound.bottom < y)\n {\n bound.bottom = y;\n }\n }\n }\n\n if (bound.top !== null)\n {\n width = bound.right - bound.left;\n height = bound.bottom - bound.top + 1;\n data = context.getImageData(bound.left, bound.top, width, height);\n }\n\n return {\n height: height,\n width: width,\n data: data,\n };\n}\n\n/**\n * Creates a Canvas element of the given size to be used as a target for rendering to.\n *\n * @class\n * @memberof PIXI.utils\n */\nvar CanvasRenderTarget = function CanvasRenderTarget(width, height, resolution)\n{\n /**\n * The Canvas object that belongs to this CanvasRenderTarget.\n *\n * @member {HTMLCanvasElement}\n */\n this.canvas = document.createElement('canvas');\n\n /**\n * A CanvasRenderingContext2D object representing a two-dimensional rendering context.\n *\n * @member {CanvasRenderingContext2D}\n */\n this.context = this.canvas.getContext('2d');\n\n this.resolution = resolution || settings.RESOLUTION;\n\n this.resize(width, height);\n};\n\nvar prototypeAccessors = { width: { configurable: true },height: { configurable: true } };\n\n/**\n * Clears the canvas that was created by the CanvasRenderTarget class.\n *\n * @private\n */\nCanvasRenderTarget.prototype.clear = function clear ()\n{\n this.context.setTransform(1, 0, 0, 1, 0, 0);\n this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);\n};\n\n/**\n * Resizes the canvas to the specified width and height.\n *\n * @param {number} width - the new width of the canvas\n * @param {number} height - the new height of the canvas\n */\nCanvasRenderTarget.prototype.resize = function resize (width, height)\n{\n this.canvas.width = width * this.resolution;\n this.canvas.height = height * this.resolution;\n};\n\n/**\n * Destroys this canvas.\n *\n */\nCanvasRenderTarget.prototype.destroy = function destroy ()\n{\n this.context = null;\n this.canvas = null;\n};\n\n/**\n * The width of the canvas buffer in pixels.\n *\n * @member {number}\n */\nprototypeAccessors.width.get = function ()\n{\n return this.canvas.width;\n};\n\nprototypeAccessors.width.set = function (val) // eslint-disable-line require-jsdoc\n{\n this.canvas.width = val;\n};\n\n/**\n * The height of the canvas buffer in pixels.\n *\n * @member {number}\n */\nprototypeAccessors.height.get = function ()\n{\n return this.canvas.height;\n};\n\nprototypeAccessors.height.set = function (val) // eslint-disable-line require-jsdoc\n{\n this.canvas.height = val;\n};\n\nObject.defineProperties( CanvasRenderTarget.prototype, prototypeAccessors );\n\n/**\n * Regexp for data URI.\n * Based on: {@link https://github.com/ragingwind/data-uri-regex}\n *\n * @static\n * @constant {RegExp|string} DATA_URI\n * @memberof PIXI\n * @example data:image/png;base64\n */\nvar DATA_URI = /^\\s*data:(?:([\\w-]+)\\/([\\w+.-]+))?(?:;charset=([\\w-]+))?(?:;(base64))?,(.*)/i;\n\n/**\n * Typedef for decomposeDataUri return object.\n *\n * @memberof PIXI.utils\n * @typedef {object} DecomposedDataUri\n * @property {string} mediaType Media type, eg. `image`\n * @property {string} subType Sub type, eg. `png`\n * @property {string} encoding Data encoding, eg. `base64`\n * @property {string} data The actual data\n */\n\n/**\n * Split a data URI into components. Returns undefined if\n * parameter `dataUri` is not a valid data URI.\n *\n * @memberof PIXI.utils\n * @function decomposeDataUri\n * @param {string} dataUri - the data URI to check\n * @return {PIXI.utils.DecomposedDataUri|undefined} The decomposed data uri or undefined\n */\nfunction decomposeDataUri(dataUri)\n{\n var dataUriMatch = DATA_URI.exec(dataUri);\n\n if (dataUriMatch)\n {\n return {\n mediaType: dataUriMatch[1] ? dataUriMatch[1].toLowerCase() : undefined,\n subType: dataUriMatch[2] ? dataUriMatch[2].toLowerCase() : undefined,\n charset: dataUriMatch[3] ? dataUriMatch[3].toLowerCase() : undefined,\n encoding: dataUriMatch[4] ? dataUriMatch[4].toLowerCase() : undefined,\n data: dataUriMatch[5],\n };\n }\n\n return undefined;\n}\n\nvar tempAnchor;\n\n/**\n * Sets the `crossOrigin` property for this resource based on if the url\n * for this resource is cross-origin. If crossOrigin was manually set, this\n * function does nothing.\n * Nipped from the resource loader!\n *\n * @ignore\n * @param {string} url - The url to test.\n * @param {object} [loc=window.location] - The location object to test against.\n * @return {string} The crossOrigin value to use (or empty string for none).\n */\nfunction determineCrossOrigin(url, loc)\n{\n if ( loc === void 0 ) loc = window.location;\n\n // data: and javascript: urls are considered same-origin\n if (url.indexOf('data:') === 0)\n {\n return '';\n }\n\n // default is window.location\n loc = loc || window.location;\n\n if (!tempAnchor)\n {\n tempAnchor = document.createElement('a');\n }\n\n // let the browser determine the full href for the url of this resource and then\n // parse with the node url lib, we can't use the properties of the anchor element\n // because they don't work in IE9 :(\n tempAnchor.href = url;\n url = _url.parse(tempAnchor.href);\n\n var samePort = (!url.port && loc.port === '') || (url.port === loc.port);\n\n // if cross origin\n if (url.hostname !== loc.hostname || !samePort || url.protocol !== loc.protocol)\n {\n return 'anonymous';\n }\n\n return '';\n}\n\n/**\n * get the resolution / device pixel ratio of an asset by looking for the prefix\n * used by spritesheets and image urls\n *\n * @memberof PIXI.utils\n * @function getResolutionOfUrl\n * @param {string} url - the image path\n * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set.\n * @return {number} resolution / device pixel ratio of an asset\n */\nfunction getResolutionOfUrl(url, defaultValue)\n{\n var resolution = settings.RETINA_PREFIX.exec(url);\n\n if (resolution)\n {\n return parseFloat(resolution[1]);\n }\n\n return defaultValue !== undefined ? defaultValue : 1;\n}\n\n// A map of warning messages already fired\nvar warnings = {};\n\n/**\n * Helper for warning developers about deprecated features & settings.\n * A stack track for warnings is given; useful for tracking-down where\n * deprecated methods/properties/classes are being used within the code.\n *\n * @memberof PIXI.utils\n * @function deprecation\n * @param {string} version - The version where the feature became deprecated\n * @param {string} message - Message should include what is deprecated, where, and the new solution\n * @param {number} [ignoreDepth=3] - The number of steps to ignore at the top of the error stack\n * this is mostly to ignore internal deprecation calls.\n */\nfunction deprecation(version, message, ignoreDepth)\n{\n if ( ignoreDepth === void 0 ) ignoreDepth = 3;\n\n // Ignore duplicat\n if (warnings[message])\n {\n return;\n }\n\n /* eslint-disable no-console */\n var stack = new Error().stack;\n\n // Handle IE < 10 and Safari < 6\n if (typeof stack === 'undefined')\n {\n console.warn('PixiJS Deprecation Warning: ', (message + \"\\nDeprecated since v\" + version));\n }\n else\n {\n // chop off the stack trace which includes PixiJS internal calls\n stack = stack.split('\\n').splice(ignoreDepth).join('\\n');\n\n if (console.groupCollapsed)\n {\n console.groupCollapsed(\n '%cPixiJS Deprecation Warning: %c%s',\n 'color:#614108;background:#fffbe6',\n 'font-weight:normal;color:#614108;background:#fffbe6',\n (message + \"\\nDeprecated since v\" + version)\n );\n console.warn(stack);\n console.groupEnd();\n }\n else\n {\n console.warn('PixiJS Deprecation Warning: ', (message + \"\\nDeprecated since v\" + version));\n console.warn(stack);\n }\n }\n /* eslint-enable no-console */\n\n warnings[message] = true;\n}\n\n/**\n * Generalized convenience utilities for PIXI.\n * @example\n * // Extend PIXI's internal Event Emitter.\n * class MyEmitter extends PIXI.utils.EventEmitter {\n * constructor() {\n * super();\n * console.log(\"Emitter created!\");\n * }\n * }\n *\n * // Get info on current device\n * console.log(PIXI.utils.isMobile);\n *\n * // Convert hex color to string\n * console.log(PIXI.utils.hex2string(0xff00ff)); // returns: \"#ff00ff\"\n * @namespace PIXI.utils\n */\n\nexport { BaseTextureCache, CanvasRenderTarget, DATA_URI, ProgramCache, TextureCache, clearTextureCache, correctBlendMode, createIndicesForQuads, decomposeDataUri, deprecation, destroyTextureCache, determineCrossOrigin, getResolutionOfUrl, hex2rgb, hex2string, isPow2, isWebGLSupported, log2, nextPow2, premultiplyBlendMode, premultiplyRgba, premultiplyTint, premultiplyTintToRgba, removeItems, rgb2hex, sayHello, sign, skipHello, string2hex, trimCanvas, uid };\n//# sourceMappingURL=utils.es.js.map\n","/*!\n * @pixi/math - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/math is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * The Point object represents a location in a two-dimensional coordinate system, where x represents\n * the horizontal axis and y represents the vertical axis.\n *\n * @class\n * @memberof PIXI\n */\nvar Point = function Point(x, y)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n};\n\n/**\n * Creates a clone of this point\n *\n * @return {PIXI.Point} a copy of the point\n */\nPoint.prototype.clone = function clone ()\n{\n return new Point(this.x, this.y);\n};\n\n/**\n * Copies x and y from the given point\n *\n * @param {PIXI.IPoint} p - The point to copy from\n * @returns {PIXI.IPoint} Returns itself.\n */\nPoint.prototype.copyFrom = function copyFrom (p)\n{\n this.set(p.x, p.y);\n\n return this;\n};\n\n/**\n * Copies x and y into the given point\n *\n * @param {PIXI.IPoint} p - The point to copy.\n * @returns {PIXI.IPoint} Given point with values updated\n */\nPoint.prototype.copyTo = function copyTo (p)\n{\n p.set(this.x, this.y);\n\n return p;\n};\n\n/**\n * Returns true if the given point is equal to this point\n *\n * @param {PIXI.IPoint} p - The point to check\n * @returns {boolean} Whether the given point equal to this point\n */\nPoint.prototype.equals = function equals (p)\n{\n return (p.x === this.x) && (p.y === this.y);\n};\n\n/**\n * Sets the point to a new x and y position.\n * If y is omitted, both x and y will be set to x.\n *\n * @param {number} [x=0] - position of the point on the x axis\n * @param {number} [y=0] - position of the point on the y axis\n */\nPoint.prototype.set = function set (x, y)\n{\n this.x = x || 0;\n this.y = y || ((y !== 0) ? this.x : 0);\n};\n\n/**\n * The Point object represents a location in a two-dimensional coordinate system, where x represents\n * the horizontal axis and y represents the vertical axis.\n *\n * An ObservablePoint is a point that triggers a callback when the point's position is changed.\n *\n * @class\n * @memberof PIXI\n */\nvar ObservablePoint = function ObservablePoint(cb, scope, x, y)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n this._x = x;\n this._y = y;\n\n this.cb = cb;\n this.scope = scope;\n};\n\nvar prototypeAccessors = { x: { configurable: true },y: { configurable: true } };\n\n/**\n * Creates a clone of this point.\n * The callback and scope params can be overidden otherwise they will default\n * to the clone object's values.\n *\n * @override\n * @param {Function} [cb=null] - callback when changed\n * @param {object} [scope=null] - owner of callback\n * @return {PIXI.ObservablePoint} a copy of the point\n */\nObservablePoint.prototype.clone = function clone (cb, scope)\n{\n if ( cb === void 0 ) cb = null;\n if ( scope === void 0 ) scope = null;\n\n var _cb = cb || this.cb;\n var _scope = scope || this.scope;\n\n return new ObservablePoint(_cb, _scope, this._x, this._y);\n};\n\n/**\n * Sets the point to a new x and y position.\n * If y is omitted, both x and y will be set to x.\n *\n * @param {number} [x=0] - position of the point on the x axis\n * @param {number} [y=0] - position of the point on the y axis\n */\nObservablePoint.prototype.set = function set (x, y)\n{\n var _x = x || 0;\n var _y = y || ((y !== 0) ? _x : 0);\n\n if (this._x !== _x || this._y !== _y)\n {\n this._x = _x;\n this._y = _y;\n this.cb.call(this.scope);\n }\n};\n\n/**\n * Copies x and y from the given point\n *\n * @param {PIXI.IPoint} p - The point to copy from.\n * @returns {PIXI.IPoint} Returns itself.\n */\nObservablePoint.prototype.copyFrom = function copyFrom (p)\n{\n if (this._x !== p.x || this._y !== p.y)\n {\n this._x = p.x;\n this._y = p.y;\n this.cb.call(this.scope);\n }\n\n return this;\n};\n\n/**\n * Copies x and y into the given point\n *\n * @param {PIXI.IPoint} p - The point to copy.\n * @returns {PIXI.IPoint} Given point with values updated\n */\nObservablePoint.prototype.copyTo = function copyTo (p)\n{\n p.set(this._x, this._y);\n\n return p;\n};\n\n/**\n * Returns true if the given point is equal to this point\n *\n * @param {PIXI.IPoint} p - The point to check\n * @returns {boolean} Whether the given point equal to this point\n */\nObservablePoint.prototype.equals = function equals (p)\n{\n return (p.x === this._x) && (p.y === this._y);\n};\n\n/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n *\n * @member {number}\n */\nprototypeAccessors.x.get = function ()\n{\n return this._x;\n};\n\nprototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._x !== value)\n {\n this._x = value;\n this.cb.call(this.scope);\n }\n};\n\n/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n *\n * @member {number}\n */\nprototypeAccessors.y.get = function ()\n{\n return this._y;\n};\n\nprototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._y !== value)\n {\n this._y = value;\n this.cb.call(this.scope);\n }\n};\n\nObject.defineProperties( ObservablePoint.prototype, prototypeAccessors );\n\n/**\n * A number, or a string containing a number.\n * @memberof PIXI\n * @typedef {(PIXI.Point|PIXI.ObservablePoint)} IPoint\n */\n\n/**\n * Two Pi.\n *\n * @static\n * @constant {number} PI_2\n * @memberof PIXI\n */\nvar PI_2 = Math.PI * 2;\n\n/**\n * Conversion factor for converting radians to degrees.\n *\n * @static\n * @constant {number} RAD_TO_DEG\n * @memberof PIXI\n */\nvar RAD_TO_DEG = 180 / Math.PI;\n\n/**\n * Conversion factor for converting degrees to radians.\n *\n * @static\n * @constant {number} DEG_TO_RAD\n * @memberof PIXI\n */\nvar DEG_TO_RAD = Math.PI / 180;\n\n/**\n * Constants that identify shapes, mainly to prevent `instanceof` calls.\n *\n * @static\n * @constant\n * @name SHAPES\n * @memberof PIXI\n * @type {object}\n * @property {number} POLY Polygon\n * @property {number} RECT Rectangle\n * @property {number} CIRC Circle\n * @property {number} ELIP Ellipse\n * @property {number} RREC Rounded Rectangle\n */\nvar SHAPES = {\n POLY: 0,\n RECT: 1,\n CIRC: 2,\n ELIP: 3,\n RREC: 4,\n};\n\n/**\n * The PixiJS Matrix as a class makes it a lot faster.\n *\n * Here is a representation of it:\n * ```js\n * | a | c | tx|\n * | b | d | ty|\n * | 0 | 0 | 1 |\n * ```\n * @class\n * @memberof PIXI\n */\nvar Matrix = function Matrix(a, b, c, d, tx, ty)\n{\n if ( a === void 0 ) a = 1;\n if ( b === void 0 ) b = 0;\n if ( c === void 0 ) c = 0;\n if ( d === void 0 ) d = 1;\n if ( tx === void 0 ) tx = 0;\n if ( ty === void 0 ) ty = 0;\n\n /**\n * @member {number}\n * @default 1\n */\n this.a = a;\n\n /**\n * @member {number}\n * @default 0\n */\n this.b = b;\n\n /**\n * @member {number}\n * @default 0\n */\n this.c = c;\n\n /**\n * @member {number}\n * @default 1\n */\n this.d = d;\n\n /**\n * @member {number}\n * @default 0\n */\n this.tx = tx;\n\n /**\n * @member {number}\n * @default 0\n */\n this.ty = ty;\n\n this.array = null;\n};\n\nvar staticAccessors = { IDENTITY: { configurable: true },TEMP_MATRIX: { configurable: true } };\n\n/**\n * Creates a Matrix object based on the given array. The Element to Matrix mapping order is as follows:\n *\n * a = array[0]\n * b = array[1]\n * c = array[3]\n * d = array[4]\n * tx = array[2]\n * ty = array[5]\n *\n * @param {number[]} array - The array that the matrix will be populated from.\n */\nMatrix.prototype.fromArray = function fromArray (array)\n{\n this.a = array[0];\n this.b = array[1];\n this.c = array[3];\n this.d = array[4];\n this.tx = array[2];\n this.ty = array[5];\n};\n\n/**\n * sets the matrix properties\n *\n * @param {number} a - Matrix component\n * @param {number} b - Matrix component\n * @param {number} c - Matrix component\n * @param {number} d - Matrix component\n * @param {number} tx - Matrix component\n * @param {number} ty - Matrix component\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.set = function set (a, b, c, d, tx, ty)\n{\n this.a = a;\n this.b = b;\n this.c = c;\n this.d = d;\n this.tx = tx;\n this.ty = ty;\n\n return this;\n};\n\n/**\n * Creates an array from the current Matrix object.\n *\n * @param {boolean} transpose - Whether we need to transpose the matrix or not\n * @param {Float32Array} [out=new Float32Array(9)] - If provided the array will be assigned to out\n * @return {number[]} the newly created array which contains the matrix\n */\nMatrix.prototype.toArray = function toArray (transpose, out)\n{\n if (!this.array)\n {\n this.array = new Float32Array(9);\n }\n\n var array = out || this.array;\n\n if (transpose)\n {\n array[0] = this.a;\n array[1] = this.b;\n array[2] = 0;\n array[3] = this.c;\n array[4] = this.d;\n array[5] = 0;\n array[6] = this.tx;\n array[7] = this.ty;\n array[8] = 1;\n }\n else\n {\n array[0] = this.a;\n array[1] = this.c;\n array[2] = this.tx;\n array[3] = this.b;\n array[4] = this.d;\n array[5] = this.ty;\n array[6] = 0;\n array[7] = 0;\n array[8] = 1;\n }\n\n return array;\n};\n\n/**\n * Get a new position with the current transformation applied.\n * Can be used to go from a child's coordinate space to the world coordinate space. (e.g. rendering)\n *\n * @param {PIXI.Point} pos - The origin\n * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input)\n * @return {PIXI.Point} The new point, transformed through this matrix\n */\nMatrix.prototype.apply = function apply (pos, newPos)\n{\n newPos = newPos || new Point();\n\n var x = pos.x;\n var y = pos.y;\n\n newPos.x = (this.a * x) + (this.c * y) + this.tx;\n newPos.y = (this.b * x) + (this.d * y) + this.ty;\n\n return newPos;\n};\n\n/**\n * Get a new position with the inverse of the current transformation applied.\n * Can be used to go from the world coordinate space to a child's coordinate space. (e.g. input)\n *\n * @param {PIXI.Point} pos - The origin\n * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input)\n * @return {PIXI.Point} The new point, inverse-transformed through this matrix\n */\nMatrix.prototype.applyInverse = function applyInverse (pos, newPos)\n{\n newPos = newPos || new Point();\n\n var id = 1 / ((this.a * this.d) + (this.c * -this.b));\n\n var x = pos.x;\n var y = pos.y;\n\n newPos.x = (this.d * id * x) + (-this.c * id * y) + (((this.ty * this.c) - (this.tx * this.d)) * id);\n newPos.y = (this.a * id * y) + (-this.b * id * x) + (((-this.ty * this.a) + (this.tx * this.b)) * id);\n\n return newPos;\n};\n\n/**\n * Translates the matrix on the x and y.\n *\n * @param {number} x How much to translate x by\n * @param {number} y How much to translate y by\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.translate = function translate (x, y)\n{\n this.tx += x;\n this.ty += y;\n\n return this;\n};\n\n/**\n * Applies a scale transformation to the matrix.\n *\n * @param {number} x The amount to scale horizontally\n * @param {number} y The amount to scale vertically\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.scale = function scale (x, y)\n{\n this.a *= x;\n this.d *= y;\n this.c *= x;\n this.b *= y;\n this.tx *= x;\n this.ty *= y;\n\n return this;\n};\n\n/**\n * Applies a rotation transformation to the matrix.\n *\n * @param {number} angle - The angle in radians.\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.rotate = function rotate (angle)\n{\n var cos = Math.cos(angle);\n var sin = Math.sin(angle);\n\n var a1 = this.a;\n var c1 = this.c;\n var tx1 = this.tx;\n\n this.a = (a1 * cos) - (this.b * sin);\n this.b = (a1 * sin) + (this.b * cos);\n this.c = (c1 * cos) - (this.d * sin);\n this.d = (c1 * sin) + (this.d * cos);\n this.tx = (tx1 * cos) - (this.ty * sin);\n this.ty = (tx1 * sin) + (this.ty * cos);\n\n return this;\n};\n\n/**\n * Appends the given Matrix to this Matrix.\n *\n * @param {PIXI.Matrix} matrix - The matrix to append.\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.append = function append (matrix)\n{\n var a1 = this.a;\n var b1 = this.b;\n var c1 = this.c;\n var d1 = this.d;\n\n this.a = (matrix.a * a1) + (matrix.b * c1);\n this.b = (matrix.a * b1) + (matrix.b * d1);\n this.c = (matrix.c * a1) + (matrix.d * c1);\n this.d = (matrix.c * b1) + (matrix.d * d1);\n\n this.tx = (matrix.tx * a1) + (matrix.ty * c1) + this.tx;\n this.ty = (matrix.tx * b1) + (matrix.ty * d1) + this.ty;\n\n return this;\n};\n\n/**\n * Sets the matrix based on all the available properties\n *\n * @param {number} x - Position on the x axis\n * @param {number} y - Position on the y axis\n * @param {number} pivotX - Pivot on the x axis\n * @param {number} pivotY - Pivot on the y axis\n * @param {number} scaleX - Scale on the x axis\n * @param {number} scaleY - Scale on the y axis\n * @param {number} rotation - Rotation in radians\n * @param {number} skewX - Skew on the x axis\n * @param {number} skewY - Skew on the y axis\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.setTransform = function setTransform (x, y, pivotX, pivotY, scaleX, scaleY, rotation, skewX, skewY)\n{\n this.a = Math.cos(rotation + skewY) * scaleX;\n this.b = Math.sin(rotation + skewY) * scaleX;\n this.c = -Math.sin(rotation - skewX) * scaleY;\n this.d = Math.cos(rotation - skewX) * scaleY;\n\n this.tx = x - ((pivotX * this.a) + (pivotY * this.c));\n this.ty = y - ((pivotX * this.b) + (pivotY * this.d));\n\n return this;\n};\n\n/**\n * Prepends the given Matrix to this Matrix.\n *\n * @param {PIXI.Matrix} matrix - The matrix to prepend\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.prepend = function prepend (matrix)\n{\n var tx1 = this.tx;\n\n if (matrix.a !== 1 || matrix.b !== 0 || matrix.c !== 0 || matrix.d !== 1)\n {\n var a1 = this.a;\n var c1 = this.c;\n\n this.a = (a1 * matrix.a) + (this.b * matrix.c);\n this.b = (a1 * matrix.b) + (this.b * matrix.d);\n this.c = (c1 * matrix.a) + (this.d * matrix.c);\n this.d = (c1 * matrix.b) + (this.d * matrix.d);\n }\n\n this.tx = (tx1 * matrix.a) + (this.ty * matrix.c) + matrix.tx;\n this.ty = (tx1 * matrix.b) + (this.ty * matrix.d) + matrix.ty;\n\n return this;\n};\n\n/**\n * Decomposes the matrix (x, y, scaleX, scaleY, and rotation) and sets the properties on to a transform.\n *\n * @param {PIXI.Transform} transform - The transform to apply the properties to.\n * @return {PIXI.Transform} The transform with the newly applied properties\n */\nMatrix.prototype.decompose = function decompose (transform)\n{\n // sort out rotation / skew..\n var a = this.a;\n var b = this.b;\n var c = this.c;\n var d = this.d;\n\n var skewX = -Math.atan2(-c, d);\n var skewY = Math.atan2(b, a);\n\n var delta = Math.abs(skewX + skewY);\n\n if (delta < 0.00001 || Math.abs(PI_2 - delta) < 0.00001)\n {\n transform.rotation = skewY;\n transform.skew.x = transform.skew.y = 0;\n }\n else\n {\n transform.rotation = 0;\n transform.skew.x = skewX;\n transform.skew.y = skewY;\n }\n\n // next set scale\n transform.scale.x = Math.sqrt((a * a) + (b * b));\n transform.scale.y = Math.sqrt((c * c) + (d * d));\n\n // next set position\n transform.position.x = this.tx;\n transform.position.y = this.ty;\n\n return transform;\n};\n\n/**\n * Inverts this matrix\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.invert = function invert ()\n{\n var a1 = this.a;\n var b1 = this.b;\n var c1 = this.c;\n var d1 = this.d;\n var tx1 = this.tx;\n var n = (a1 * d1) - (b1 * c1);\n\n this.a = d1 / n;\n this.b = -b1 / n;\n this.c = -c1 / n;\n this.d = a1 / n;\n this.tx = ((c1 * this.ty) - (d1 * tx1)) / n;\n this.ty = -((a1 * this.ty) - (b1 * tx1)) / n;\n\n return this;\n};\n\n/**\n * Resets this Matrix to an identity (default) matrix.\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.identity = function identity ()\n{\n this.a = 1;\n this.b = 0;\n this.c = 0;\n this.d = 1;\n this.tx = 0;\n this.ty = 0;\n\n return this;\n};\n\n/**\n * Creates a new Matrix object with the same values as this one.\n *\n * @return {PIXI.Matrix} A copy of this matrix. Good for chaining method calls.\n */\nMatrix.prototype.clone = function clone ()\n{\n var matrix = new Matrix();\n\n matrix.a = this.a;\n matrix.b = this.b;\n matrix.c = this.c;\n matrix.d = this.d;\n matrix.tx = this.tx;\n matrix.ty = this.ty;\n\n return matrix;\n};\n\n/**\n * Changes the values of the given matrix to be the same as the ones in this matrix\n *\n * @param {PIXI.Matrix} matrix - The matrix to copy to.\n * @return {PIXI.Matrix} The matrix given in parameter with its values updated.\n */\nMatrix.prototype.copyTo = function copyTo (matrix)\n{\n matrix.a = this.a;\n matrix.b = this.b;\n matrix.c = this.c;\n matrix.d = this.d;\n matrix.tx = this.tx;\n matrix.ty = this.ty;\n\n return matrix;\n};\n\n/**\n * Changes the values of the matrix to be the same as the ones in given matrix\n *\n * @param {PIXI.Matrix} matrix - The matrix to copy from.\n * @return {PIXI.Matrix} this\n */\nMatrix.prototype.copyFrom = function copyFrom (matrix)\n{\n this.a = matrix.a;\n this.b = matrix.b;\n this.c = matrix.c;\n this.d = matrix.d;\n this.tx = matrix.tx;\n this.ty = matrix.ty;\n\n return this;\n};\n\n/**\n * A default (identity) matrix\n *\n * @static\n * @const\n * @member {PIXI.Matrix}\n */\nstaticAccessors.IDENTITY.get = function ()\n{\n return new Matrix();\n};\n\n/**\n * A temp matrix\n *\n * @static\n * @const\n * @member {PIXI.Matrix}\n */\nstaticAccessors.TEMP_MATRIX.get = function ()\n{\n return new Matrix();\n};\n\nObject.defineProperties( Matrix, staticAccessors );\n\n// Your friendly neighbour https://en.wikipedia.org/wiki/Dihedral_group\n\n/*\n * Transform matrix for operation n is:\n * | ux | vx |\n * | uy | vy |\n */\n\nvar ux = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1];\nvar uy = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1];\nvar vx = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1];\nvar vy = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1];\n\n/**\n * [Cayley Table]{@link https://en.wikipedia.org/wiki/Cayley_table}\n * for the composition of each rotation in the dihederal group D8.\n *\n * @type number[][]\n * @private\n */\nvar rotationCayley = [];\n\n/**\n * Matrices for each `GD8Symmetry` rotation.\n *\n * @type Matrix[]\n * @private\n */\nvar rotationMatrices = [];\n\n/*\n * Alias for {@code Math.sign}.\n */\nvar signum = Math.sign;\n\n/*\n * Initializes `rotationCayley` and `rotationMatrices`. It is called\n * only once below.\n */\nfunction init()\n{\n for (var i = 0; i < 16; i++)\n {\n var row = [];\n\n rotationCayley.push(row);\n\n for (var j = 0; j < 16; j++)\n {\n /* Multiplies rotation matrices i and j. */\n var _ux = signum((ux[i] * ux[j]) + (vx[i] * uy[j]));\n var _uy = signum((uy[i] * ux[j]) + (vy[i] * uy[j]));\n var _vx = signum((ux[i] * vx[j]) + (vx[i] * vy[j]));\n var _vy = signum((uy[i] * vx[j]) + (vy[i] * vy[j]));\n\n /* Finds rotation matrix matching the product and pushes it. */\n for (var k = 0; k < 16; k++)\n {\n if (ux[k] === _ux && uy[k] === _uy\n && vx[k] === _vx && vy[k] === _vy)\n {\n row.push(k);\n break;\n }\n }\n }\n }\n\n for (var i$1 = 0; i$1 < 16; i$1++)\n {\n var mat = new Matrix();\n\n mat.set(ux[i$1], uy[i$1], vx[i$1], vy[i$1], 0, 0);\n rotationMatrices.push(mat);\n }\n}\n\ninit();\n\n/**\n * @memberof PIXI\n * @typedef {number} GD8Symmetry\n * @see PIXI.GroupD8\n */\n\n/**\n * Implements the dihedral group D8, which is similar to\n * [group D4]{@link http://mathworld.wolfram.com/DihedralGroupD4.html};\n * D8 is the same but with diagonals, and it is used for texture\n * rotations.\n *\n * The directions the U- and V- axes after rotation\n * of an angle of `a: GD8Constant` are the vectors `(uX(a), uY(a))`\n * and `(vX(a), vY(a))`. These aren't necessarily unit vectors.\n *\n * **Origin:**
\n * This is the small part of gameofbombs.com portal system. It works.\n *\n * @see PIXI.GroupD8.E\n * @see PIXI.GroupD8.SE\n * @see PIXI.GroupD8.S\n * @see PIXI.GroupD8.SW\n * @see PIXI.GroupD8.W\n * @see PIXI.GroupD8.NW\n * @see PIXI.GroupD8.N\n * @see PIXI.GroupD8.NE\n * @author Ivan @ivanpopelyshev\n * @class\n * @memberof PIXI\n */\nvar GroupD8 = {\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 0° | East |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n E: 0,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 45°↻ | Southeast |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n SE: 1,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 90°↻ | South |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n S: 2,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 135°↻ | Southwest |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n SW: 3,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 180° | West |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n W: 4,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -135°/225°↻ | Northwest |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n NW: 5,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -90°/270°↻ | North |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n N: 6,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -45°/315°↻ | Northeast |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n NE: 7,\n\n /**\n * Reflection about Y-axis.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MIRROR_VERTICAL: 8,\n\n /**\n * Reflection about the main diagonal.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MAIN_DIAGONAL: 10,\n\n /**\n * Reflection about X-axis.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MIRROR_HORIZONTAL: 12,\n\n /**\n * Reflection about reverse diagonal.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n REVERSE_DIAGONAL: 14,\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The X-component of the U-axis\n * after rotating the axes.\n */\n uX: function (ind) { return ux[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The Y-component of the U-axis\n * after rotating the axes.\n */\n uY: function (ind) { return uy[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The X-component of the V-axis\n * after rotating the axes.\n */\n vX: function (ind) { return vx[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The Y-component of the V-axis\n * after rotating the axes.\n */\n vY: function (ind) { return vy[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotation - symmetry whose opposite\n * is needed. Only rotations have opposite symmetries while\n * reflections don't.\n * @return {PIXI.GD8Symmetry} The opposite symmetry of `rotation`\n */\n inv: function (rotation) {\n if (rotation & 8)// true only if between 8 & 15 (reflections)\n {\n return rotation & 15;// or rotation % 16\n }\n\n return (-rotation) & 7;// or (8 - rotation) % 8\n },\n\n /**\n * Composes the two D8 operations.\n *\n * Taking `^` as reflection:\n *\n * | | E=0 | S=2 | W=4 | N=6 | E^=8 | S^=10 | W^=12 | N^=14 |\n * |-------|-----|-----|-----|-----|------|-------|-------|-------|\n * | E=0 | E | S | W | N | E^ | S^ | W^ | N^ |\n * | S=2 | S | W | N | E | S^ | W^ | N^ | E^ |\n * | W=4 | W | N | E | S | W^ | N^ | E^ | S^ |\n * | N=6 | N | E | S | W | N^ | E^ | S^ | W^ |\n * | E^=8 | E^ | N^ | W^ | S^ | E | N | W | S |\n * | S^=10 | S^ | E^ | N^ | W^ | S | E | N | W |\n * | W^=12 | W^ | S^ | E^ | N^ | W | S | E | N |\n * | N^=14 | N^ | W^ | S^ | E^ | N | W | S | E |\n *\n * [This is a Cayley table]{@link https://en.wikipedia.org/wiki/Cayley_table}\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotationSecond - Second operation, which\n * is the row in the above cayley table.\n * @param {PIXI.GD8Symmetry} rotationFirst - First operation, which\n * is the column in the above cayley table.\n * @return {PIXI.GD8Symmetry} Composed operation\n */\n add: function (rotationSecond, rotationFirst) { return (\n rotationCayley[rotationSecond][rotationFirst]\n ); },\n\n /**\n * Reverse of `add`.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotationSecond - Second operation\n * @param {PIXI.GD8Symmetry} rotationFirst - First operation\n * @return {PIXI.GD8Symmetry} Result\n */\n sub: function (rotationSecond, rotationFirst) { return (\n rotationCayley[rotationSecond][GroupD8.inv(rotationFirst)]\n ); },\n\n /**\n * Adds 180 degrees to rotation, which is a commutative\n * operation.\n *\n * @memberof PIXI.GroupD8\n * @param {number} rotation - The number to rotate.\n * @returns {number} Rotated number\n */\n rotate180: function (rotation) { return rotation ^ 4; },\n\n /**\n * Checks if the rotation angle is vertical, i.e. south\n * or north. It doesn't work for reflections.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotation - The number to check.\n * @returns {boolean} Whether or not the direction is vertical\n */\n isVertical: function (rotation) { return (rotation & 3) === 2; }, // rotation % 4 === 2\n\n /**\n * Approximates the vector `V(dx,dy)` into one of the\n * eight directions provided by `GroupD8`.\n *\n * @memberof PIXI.GroupD8\n * @param {number} dx - X-component of the vector\n * @param {number} dy - Y-component of the vector\n * @return {PIXI.GD8Symmetry} Approximation of the vector into\n * one of the eight symmetries.\n */\n byDirection: function (dx, dy) {\n if (Math.abs(dx) * 2 <= Math.abs(dy))\n {\n if (dy >= 0)\n {\n return GroupD8.S;\n }\n\n return GroupD8.N;\n }\n else if (Math.abs(dy) * 2 <= Math.abs(dx))\n {\n if (dx > 0)\n {\n return GroupD8.E;\n }\n\n return GroupD8.W;\n }\n else if (dy > 0)\n {\n if (dx > 0)\n {\n return GroupD8.SE;\n }\n\n return GroupD8.SW;\n }\n else if (dx > 0)\n {\n return GroupD8.NE;\n }\n\n return GroupD8.NW;\n },\n\n /**\n * Helps sprite to compensate texture packer rotation.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.Matrix} matrix - sprite world matrix\n * @param {PIXI.GD8Symmetry} rotation - The rotation factor to use.\n * @param {number} tx - sprite anchoring\n * @param {number} ty - sprite anchoring\n */\n matrixAppendRotationInv: function (matrix, rotation, tx, ty) {\n if ( tx === void 0 ) tx = 0;\n if ( ty === void 0 ) ty = 0;\n\n // Packer used \"rotation\", we use \"inv(rotation)\"\n var mat = rotationMatrices[GroupD8.inv(rotation)];\n\n mat.tx = tx;\n mat.ty = ty;\n matrix.append(mat);\n },\n};\n\n/**\n * Transform that takes care about its versions\n *\n * @class\n * @memberof PIXI\n */\nvar Transform = function Transform()\n{\n /**\n * The world transformation matrix.\n *\n * @member {PIXI.Matrix}\n */\n this.worldTransform = new Matrix();\n\n /**\n * The local transformation matrix.\n *\n * @member {PIXI.Matrix}\n */\n this.localTransform = new Matrix();\n\n /**\n * The coordinate of the object relative to the local coordinates of the parent.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.position = new ObservablePoint(this.onChange, this, 0, 0);\n\n /**\n * The scale factor of the object.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.scale = new ObservablePoint(this.onChange, this, 1, 1);\n\n /**\n * The pivot point of the displayObject that it rotates around.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.pivot = new ObservablePoint(this.onChange, this, 0, 0);\n\n /**\n * The skew amount, on the x and y axis.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.skew = new ObservablePoint(this.updateSkew, this, 0, 0);\n\n /**\n * The rotation amount.\n *\n * @protected\n * @member {number}\n */\n this._rotation = 0;\n\n /**\n * The X-coordinate value of the normalized local X axis,\n * the first column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._cx = 1;\n\n /**\n * The Y-coordinate value of the normalized local X axis,\n * the first column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._sx = 0;\n\n /**\n * The X-coordinate value of the normalized local Y axis,\n * the second column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._cy = 0;\n\n /**\n * The Y-coordinate value of the normalized local Y axis,\n * the second column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._sy = 1;\n\n /**\n * The locally unique ID of the local transform.\n *\n * @protected\n * @member {number}\n */\n this._localID = 0;\n\n /**\n * The locally unique ID of the local transform\n * used to calculate the current local transformation matrix.\n *\n * @protected\n * @member {number}\n */\n this._currentLocalID = 0;\n\n /**\n * The locally unique ID of the world transform.\n *\n * @protected\n * @member {number}\n */\n this._worldID = 0;\n\n /**\n * The locally unique ID of the parent's world transform\n * used to calculate the current world transformation matrix.\n *\n * @protected\n * @member {number}\n */\n this._parentID = 0;\n};\n\nvar prototypeAccessors$1 = { rotation: { configurable: true } };\n\n/**\n * Called when a value changes.\n *\n * @protected\n */\nTransform.prototype.onChange = function onChange ()\n{\n this._localID++;\n};\n\n/**\n * Called when the skew or the rotation changes.\n *\n * @protected\n */\nTransform.prototype.updateSkew = function updateSkew ()\n{\n this._cx = Math.cos(this._rotation + this.skew._y);\n this._sx = Math.sin(this._rotation + this.skew._y);\n this._cy = -Math.sin(this._rotation - this.skew._x); // cos, added PI/2\n this._sy = Math.cos(this._rotation - this.skew._x); // sin, added PI/2\n\n this._localID++;\n};\n\n/**\n * Updates the local transformation matrix.\n */\nTransform.prototype.updateLocalTransform = function updateLocalTransform ()\n{\n var lt = this.localTransform;\n\n if (this._localID !== this._currentLocalID)\n {\n // get the matrix values of the displayobject based on its transform properties..\n lt.a = this._cx * this.scale._x;\n lt.b = this._sx * this.scale._x;\n lt.c = this._cy * this.scale._y;\n lt.d = this._sy * this.scale._y;\n\n lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c));\n lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d));\n this._currentLocalID = this._localID;\n\n // force an update..\n this._parentID = -1;\n }\n};\n\n/**\n * Updates the local and the world transformation matrices.\n *\n * @param {PIXI.Transform} parentTransform - The parent transform\n */\nTransform.prototype.updateTransform = function updateTransform (parentTransform)\n{\n var lt = this.localTransform;\n\n if (this._localID !== this._currentLocalID)\n {\n // get the matrix values of the displayobject based on its transform properties..\n lt.a = this._cx * this.scale._x;\n lt.b = this._sx * this.scale._x;\n lt.c = this._cy * this.scale._y;\n lt.d = this._sy * this.scale._y;\n\n lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c));\n lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d));\n this._currentLocalID = this._localID;\n\n // force an update..\n this._parentID = -1;\n }\n\n if (this._parentID !== parentTransform._worldID)\n {\n // concat the parent matrix with the objects transform.\n var pt = parentTransform.worldTransform;\n var wt = this.worldTransform;\n\n wt.a = (lt.a * pt.a) + (lt.b * pt.c);\n wt.b = (lt.a * pt.b) + (lt.b * pt.d);\n wt.c = (lt.c * pt.a) + (lt.d * pt.c);\n wt.d = (lt.c * pt.b) + (lt.d * pt.d);\n wt.tx = (lt.tx * pt.a) + (lt.ty * pt.c) + pt.tx;\n wt.ty = (lt.tx * pt.b) + (lt.ty * pt.d) + pt.ty;\n\n this._parentID = parentTransform._worldID;\n\n // update the id of the transform..\n this._worldID++;\n }\n};\n\n/**\n * Decomposes a matrix and sets the transforms properties based on it.\n *\n * @param {PIXI.Matrix} matrix - The matrix to decompose\n */\nTransform.prototype.setFromMatrix = function setFromMatrix (matrix)\n{\n matrix.decompose(this);\n this._localID++;\n};\n\n/**\n * The rotation of the object in radians.\n *\n * @member {number}\n */\nprototypeAccessors$1.rotation.get = function ()\n{\n return this._rotation;\n};\n\nprototypeAccessors$1.rotation.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._rotation !== value)\n {\n this._rotation = value;\n this.updateSkew();\n }\n};\n\nObject.defineProperties( Transform.prototype, prototypeAccessors$1 );\n\n/**\n * A default (identity) transform\n *\n * @static\n * @constant\n * @member {PIXI.Transform}\n */\nTransform.IDENTITY = new Transform();\n\n/**\n * Size object, contains width and height\n *\n * @memberof PIXI\n * @typedef {object} ISize\n * @property {number} width - Width component\n * @property {number} height - Height component\n */\n\n/**\n * Rectangle object is an area defined by its position, as indicated by its top-left corner\n * point (x, y) and by its width and its height.\n *\n * @class\n * @memberof PIXI\n */\nvar Rectangle = function Rectangle(x, y, width, height)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = Number(x);\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = Number(y);\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = Number(width);\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = Number(height);\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.RECT\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.RECT;\n};\n\nvar prototypeAccessors$2 = { left: { configurable: true },right: { configurable: true },top: { configurable: true },bottom: { configurable: true } };\nvar staticAccessors$1 = { EMPTY: { configurable: true } };\n\n/**\n * returns the left edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.left.get = function ()\n{\n return this.x;\n};\n\n/**\n * returns the right edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.right.get = function ()\n{\n return this.x + this.width;\n};\n\n/**\n * returns the top edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.top.get = function ()\n{\n return this.y;\n};\n\n/**\n * returns the bottom edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.bottom.get = function ()\n{\n return this.y + this.height;\n};\n\n/**\n * A constant empty rectangle.\n *\n * @static\n * @constant\n * @member {PIXI.Rectangle}\n */\nstaticAccessors$1.EMPTY.get = function ()\n{\n return new Rectangle(0, 0, 0, 0);\n};\n\n/**\n * Creates a clone of this Rectangle\n *\n * @return {PIXI.Rectangle} a copy of the rectangle\n */\nRectangle.prototype.clone = function clone ()\n{\n return new Rectangle(this.x, this.y, this.width, this.height);\n};\n\n/**\n * Copies another rectangle to this one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to copy from.\n * @return {PIXI.Rectangle} Returns itself.\n */\nRectangle.prototype.copyFrom = function copyFrom (rectangle)\n{\n this.x = rectangle.x;\n this.y = rectangle.y;\n this.width = rectangle.width;\n this.height = rectangle.height;\n\n return this;\n};\n\n/**\n * Copies this rectangle to another one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to copy to.\n * @return {PIXI.Rectangle} Returns given parameter.\n */\nRectangle.prototype.copyTo = function copyTo (rectangle)\n{\n rectangle.x = this.x;\n rectangle.y = this.y;\n rectangle.width = this.width;\n rectangle.height = this.height;\n\n return rectangle;\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this Rectangle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Rectangle\n */\nRectangle.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n\n if (x >= this.x && x < this.x + this.width)\n {\n if (y >= this.y && y < this.y + this.height)\n {\n return true;\n }\n }\n\n return false;\n};\n\n/**\n * Pads the rectangle making it grow in all directions.\n *\n * @param {number} paddingX - The horizontal padding amount.\n * @param {number} paddingY - The vertical padding amount.\n */\nRectangle.prototype.pad = function pad (paddingX, paddingY)\n{\n paddingX = paddingX || 0;\n paddingY = paddingY || ((paddingY !== 0) ? paddingX : 0);\n\n this.x -= paddingX;\n this.y -= paddingY;\n\n this.width += paddingX * 2;\n this.height += paddingY * 2;\n};\n\n/**\n * Fits this rectangle around the passed one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to fit.\n */\nRectangle.prototype.fit = function fit (rectangle)\n{\n var x1 = Math.max(this.x, rectangle.x);\n var x2 = Math.min(this.x + this.width, rectangle.x + rectangle.width);\n var y1 = Math.max(this.y, rectangle.y);\n var y2 = Math.min(this.y + this.height, rectangle.y + rectangle.height);\n\n this.x = x1;\n this.width = Math.max(x2 - x1, 0);\n this.y = y1;\n this.height = Math.max(y2 - y1, 0);\n};\n\n/**\n * Enlarges rectangle that way its corners lie on grid\n *\n * @param {number} [resolution=1] resolution\n * @param {number} [eps=0.001] precision\n */\nRectangle.prototype.ceil = function ceil (resolution, eps)\n{\n if ( resolution === void 0 ) resolution = 1;\n if ( eps === void 0 ) eps = 0.001;\n\n var x2 = Math.ceil((this.x + this.width - eps) * resolution) / resolution;\n var y2 = Math.ceil((this.y + this.height - eps) * resolution) / resolution;\n\n this.x = Math.floor((this.x + eps) * resolution) / resolution;\n this.y = Math.floor((this.y + eps) * resolution) / resolution;\n\n this.width = x2 - this.x;\n this.height = y2 - this.y;\n};\n\n/**\n * Enlarges this rectangle to include the passed rectangle.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to include.\n */\nRectangle.prototype.enlarge = function enlarge (rectangle)\n{\n var x1 = Math.min(this.x, rectangle.x);\n var x2 = Math.max(this.x + this.width, rectangle.x + rectangle.width);\n var y1 = Math.min(this.y, rectangle.y);\n var y2 = Math.max(this.y + this.height, rectangle.y + rectangle.height);\n\n this.x = x1;\n this.width = x2 - x1;\n this.y = y1;\n this.height = y2 - y1;\n};\n\nObject.defineProperties( Rectangle.prototype, prototypeAccessors$2 );\nObject.defineProperties( Rectangle, staticAccessors$1 );\n\n/**\n * The Circle object is used to help draw graphics and can also be used to specify a hit area for displayObjects.\n *\n * @class\n * @memberof PIXI\n */\nvar Circle = function Circle(x, y, radius)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( radius === void 0 ) radius = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.radius = radius;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.CIRC\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.CIRC;\n};\n\n/**\n * Creates a clone of this Circle instance\n *\n * @return {PIXI.Circle} a copy of the Circle\n */\nCircle.prototype.clone = function clone ()\n{\n return new Circle(this.x, this.y, this.radius);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this circle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Circle\n */\nCircle.prototype.contains = function contains (x, y)\n{\n if (this.radius <= 0)\n {\n return false;\n }\n\n var r2 = this.radius * this.radius;\n var dx = (this.x - x);\n var dy = (this.y - y);\n\n dx *= dx;\n dy *= dy;\n\n return (dx + dy <= r2);\n};\n\n/**\n* Returns the framing rectangle of the circle as a Rectangle object\n*\n* @return {PIXI.Rectangle} the framing rectangle\n*/\nCircle.prototype.getBounds = function getBounds ()\n{\n return new Rectangle(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2);\n};\n\n/**\n * The Ellipse object is used to help draw graphics and can also be used to specify a hit area for displayObjects.\n *\n * @class\n * @memberof PIXI\n */\nvar Ellipse = function Ellipse(x, y, halfWidth, halfHeight)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( halfWidth === void 0 ) halfWidth = 0;\n if ( halfHeight === void 0 ) halfHeight = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = halfWidth;\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = halfHeight;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.ELIP\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.ELIP;\n};\n\n/**\n * Creates a clone of this Ellipse instance\n *\n * @return {PIXI.Ellipse} a copy of the ellipse\n */\nEllipse.prototype.clone = function clone ()\n{\n return new Ellipse(this.x, this.y, this.width, this.height);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this ellipse\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coords are within this ellipse\n */\nEllipse.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n\n // normalize the coords to an ellipse with center 0,0\n var normx = ((x - this.x) / this.width);\n var normy = ((y - this.y) / this.height);\n\n normx *= normx;\n normy *= normy;\n\n return (normx + normy <= 1);\n};\n\n/**\n * Returns the framing rectangle of the ellipse as a Rectangle object\n *\n * @return {PIXI.Rectangle} the framing rectangle\n */\nEllipse.prototype.getBounds = function getBounds ()\n{\n return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height);\n};\n\n/**\n * A class to define a shape via user defined co-orinates.\n *\n * @class\n * @memberof PIXI\n */\nvar Polygon = function Polygon()\n{\n var points = [], len = arguments.length;\n while ( len-- ) points[ len ] = arguments[ len ];\n\n if (Array.isArray(points[0]))\n {\n points = points[0];\n }\n\n // if this is an array of points, convert it to a flat array of numbers\n if (points[0] instanceof Point)\n {\n var p = [];\n\n for (var i = 0, il = points.length; i < il; i++)\n {\n p.push(points[i].x, points[i].y);\n }\n\n points = p;\n }\n\n /**\n * An array of the points of this polygon\n *\n * @member {number[]}\n */\n this.points = points;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.POLY\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.POLY;\n\n /**\n * `false` after moveTo, `true` after `closePath`. In all other cases it is `true`.\n * @member {boolean}\n * @default true\n */\n this.closeStroke = true;\n};\n\n/**\n * Creates a clone of this polygon\n *\n * @return {PIXI.Polygon} a copy of the polygon\n */\nPolygon.prototype.clone = function clone ()\n{\n var polygon = new Polygon(this.points.slice());\n\n polygon.closeStroke = this.closeStroke;\n\n return polygon;\n};\n\n/**\n * Checks whether the x and y coordinates passed to this function are contained within this polygon\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this polygon\n */\nPolygon.prototype.contains = function contains (x, y)\n{\n var inside = false;\n\n // use some raycasting to test hits\n // https://github.com/substack/point-in-polygon/blob/master/index.js\n var length = this.points.length / 2;\n\n for (var i = 0, j = length - 1; i < length; j = i++)\n {\n var xi = this.points[i * 2];\n var yi = this.points[(i * 2) + 1];\n var xj = this.points[j * 2];\n var yj = this.points[(j * 2) + 1];\n var intersect = ((yi > y) !== (yj > y)) && (x < ((xj - xi) * ((y - yi) / (yj - yi))) + xi);\n\n if (intersect)\n {\n inside = !inside;\n }\n }\n\n return inside;\n};\n\n/**\n * The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its\n * top-left corner point (x, y) and by its width and its height and its radius.\n *\n * @class\n * @memberof PIXI\n */\nvar RoundedRectangle = function RoundedRectangle(x, y, width, height, radius)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n if ( radius === void 0 ) radius = 20;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = width;\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = height;\n\n /**\n * @member {number}\n * @default 20\n */\n this.radius = radius;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readonly\n * @default PIXI.SHAPES.RREC\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.RREC;\n};\n\n/**\n * Creates a clone of this Rounded Rectangle\n *\n * @return {PIXI.RoundedRectangle} a copy of the rounded rectangle\n */\nRoundedRectangle.prototype.clone = function clone ()\n{\n return new RoundedRectangle(this.x, this.y, this.width, this.height, this.radius);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this Rounded Rectangle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Rounded Rectangle\n */\nRoundedRectangle.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n if (x >= this.x && x <= this.x + this.width)\n {\n if (y >= this.y && y <= this.y + this.height)\n {\n if ((y >= this.y + this.radius && y <= this.y + this.height - this.radius)\n || (x >= this.x + this.radius && x <= this.x + this.width - this.radius))\n {\n return true;\n }\n var dx = x - (this.x + this.radius);\n var dy = y - (this.y + this.radius);\n var radius2 = this.radius * this.radius;\n\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dx = x - (this.x + this.width - this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dy = y - (this.y + this.height - this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dx = x - (this.x + this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n }\n }\n\n return false;\n};\n\n/**\n * Math classes and utilities mixed into PIXI namespace.\n *\n * @lends PIXI\n */\n\nexport { Circle, DEG_TO_RAD, Ellipse, GroupD8, Matrix, ObservablePoint, PI_2, Point, Polygon, RAD_TO_DEG, Rectangle, RoundedRectangle, SHAPES, Transform };\n//# sourceMappingURL=math.es.js.map\n","/*!\n * @pixi/display - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/display is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nimport { Rectangle, RAD_TO_DEG, DEG_TO_RAD, Transform } from '@pixi/math';\nimport { EventEmitter, removeItems } from '@pixi/utils';\n\n/**\n * Sets the default value for the container property 'sortableChildren'.\n * If set to true, the container will sort its children by zIndex value\n * when updateTransform() is called, or manually if sortChildren() is called.\n *\n * This actually changes the order of elements in the array, so should be treated\n * as a basic solution that is not performant compared to other solutions,\n * such as @link https://github.com/pixijs/pixi-display\n *\n * Also be aware of that this may not work nicely with the addChildAt() function,\n * as the zIndex sorting may cause the child to automatically sorted to another position.\n *\n * @static\n * @constant\n * @name SORTABLE_CHILDREN\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\nsettings.SORTABLE_CHILDREN = false;\n\n/**\n * 'Builder' pattern for bounds rectangles.\n *\n * This could be called an Axis-Aligned Bounding Box.\n * It is not an actual shape. It is a mutable thing; no 'EMPTY' or those kind of problems.\n *\n * @class\n * @memberof PIXI\n */\nvar Bounds = function Bounds()\n{\n /**\n * @member {number}\n * @default 0\n */\n this.minX = Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.minY = Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.maxX = -Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.maxY = -Infinity;\n\n this.rect = null;\n};\n\n/**\n * Checks if bounds are empty.\n *\n * @return {boolean} True if empty.\n */\nBounds.prototype.isEmpty = function isEmpty ()\n{\n return this.minX > this.maxX || this.minY > this.maxY;\n};\n\n/**\n * Clears the bounds and resets.\n *\n */\nBounds.prototype.clear = function clear ()\n{\n this.updateID++;\n\n this.minX = Infinity;\n this.minY = Infinity;\n this.maxX = -Infinity;\n this.maxY = -Infinity;\n};\n\n/**\n * Can return Rectangle.EMPTY constant, either construct new rectangle, either use your rectangle\n * It is not guaranteed that it will return tempRect\n *\n * @param {PIXI.Rectangle} rect - temporary object will be used if AABB is not empty\n * @returns {PIXI.Rectangle} A rectangle of the bounds\n */\nBounds.prototype.getRectangle = function getRectangle (rect)\n{\n if (this.minX > this.maxX || this.minY > this.maxY)\n {\n return Rectangle.EMPTY;\n }\n\n rect = rect || new Rectangle(0, 0, 1, 1);\n\n rect.x = this.minX;\n rect.y = this.minY;\n rect.width = this.maxX - this.minX;\n rect.height = this.maxY - this.minY;\n\n return rect;\n};\n\n/**\n * This function should be inlined when its possible.\n *\n * @param {PIXI.Point} point - The point to add.\n */\nBounds.prototype.addPoint = function addPoint (point)\n{\n this.minX = Math.min(this.minX, point.x);\n this.maxX = Math.max(this.maxX, point.x);\n this.minY = Math.min(this.minY, point.y);\n this.maxY = Math.max(this.maxY, point.y);\n};\n\n/**\n * Adds a quad, not transformed\n *\n * @param {Float32Array} vertices - The verts to add.\n */\nBounds.prototype.addQuad = function addQuad (vertices)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n var x = vertices[0];\n var y = vertices[1];\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[2];\n y = vertices[3];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[4];\n y = vertices[5];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[6];\n y = vertices[7];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds sprite frame, transformed.\n *\n * @param {PIXI.Transform} transform - TODO\n * @param {number} x0 - TODO\n * @param {number} y0 - TODO\n * @param {number} x1 - TODO\n * @param {number} y1 - TODO\n */\nBounds.prototype.addFrame = function addFrame (transform, x0, y0, x1, y1)\n{\n var matrix = transform.worldTransform;\n var a = matrix.a;\n var b = matrix.b;\n var c = matrix.c;\n var d = matrix.d;\n var tx = matrix.tx;\n var ty = matrix.ty;\n\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n var x = (a * x0) + (c * y0) + tx;\n var y = (b * x0) + (d * y0) + ty;\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x1) + (c * y0) + tx;\n y = (b * x1) + (d * y0) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x0) + (c * y1) + tx;\n y = (b * x0) + (d * y1) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x1) + (c * y1) + tx;\n y = (b * x1) + (d * y1) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds screen vertices from array\n *\n * @param {Float32Array} vertexData - calculated vertices\n * @param {number} beginOffset - begin offset\n * @param {number} endOffset - end offset, excluded\n */\nBounds.prototype.addVertexData = function addVertexData (vertexData, beginOffset, endOffset)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n for (var i = beginOffset; i < endOffset; i += 2)\n {\n var x = vertexData[i];\n var y = vertexData[i + 1];\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n }\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Add an array of mesh vertices\n *\n * @param {PIXI.Transform} transform - mesh transform\n * @param {Float32Array} vertices - mesh coordinates in array\n * @param {number} beginOffset - begin offset\n * @param {number} endOffset - end offset, excluded\n */\nBounds.prototype.addVertices = function addVertices (transform, vertices, beginOffset, endOffset)\n{\n var matrix = transform.worldTransform;\n var a = matrix.a;\n var b = matrix.b;\n var c = matrix.c;\n var d = matrix.d;\n var tx = matrix.tx;\n var ty = matrix.ty;\n\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n for (var i = beginOffset; i < endOffset; i += 2)\n {\n var rawX = vertices[i];\n var rawY = vertices[i + 1];\n var x = (a * rawX) + (c * rawY) + tx;\n var y = (d * rawY) + (b * rawX) + ty;\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n }\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds other Bounds\n *\n * @param {PIXI.Bounds} bounds - TODO\n */\nBounds.prototype.addBounds = function addBounds (bounds)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = bounds.minX < minX ? bounds.minX : minX;\n this.minY = bounds.minY < minY ? bounds.minY : minY;\n this.maxX = bounds.maxX > maxX ? bounds.maxX : maxX;\n this.maxY = bounds.maxY > maxY ? bounds.maxY : maxY;\n};\n\n/**\n * Adds other Bounds, masked with Bounds\n *\n * @param {PIXI.Bounds} bounds - TODO\n * @param {PIXI.Bounds} mask - TODO\n */\nBounds.prototype.addBoundsMask = function addBoundsMask (bounds, mask)\n{\n var _minX = bounds.minX > mask.minX ? bounds.minX : mask.minX;\n var _minY = bounds.minY > mask.minY ? bounds.minY : mask.minY;\n var _maxX = bounds.maxX < mask.maxX ? bounds.maxX : mask.maxX;\n var _maxY = bounds.maxY < mask.maxY ? bounds.maxY : mask.maxY;\n\n if (_minX <= _maxX && _minY <= _maxY)\n {\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = _minX < minX ? _minX : minX;\n this.minY = _minY < minY ? _minY : minY;\n this.maxX = _maxX > maxX ? _maxX : maxX;\n this.maxY = _maxY > maxY ? _maxY : maxY;\n }\n};\n\n/**\n * Adds other Bounds, masked with Rectangle\n *\n * @param {PIXI.Bounds} bounds - TODO\n * @param {PIXI.Rectangle} area - TODO\n */\nBounds.prototype.addBoundsArea = function addBoundsArea (bounds, area)\n{\n var _minX = bounds.minX > area.x ? bounds.minX : area.x;\n var _minY = bounds.minY > area.y ? bounds.minY : area.y;\n var _maxX = bounds.maxX < area.x + area.width ? bounds.maxX : (area.x + area.width);\n var _maxY = bounds.maxY < area.y + area.height ? bounds.maxY : (area.y + area.height);\n\n if (_minX <= _maxX && _minY <= _maxY)\n {\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = _minX < minX ? _minX : minX;\n this.minY = _minY < minY ? _minY : minY;\n this.maxX = _maxX > maxX ? _maxX : maxX;\n this.maxY = _maxY > maxY ? _maxY : maxY;\n }\n};\n\n// _tempDisplayObjectParent = new DisplayObject();\n\n/**\n * The base class for all objects that are rendered on the screen.\n *\n * This is an abstract class and should not be used on its own; rather it should be extended.\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar DisplayObject = /*@__PURE__*/(function (EventEmitter) {\n function DisplayObject()\n {\n EventEmitter.call(this);\n\n this.tempDisplayObjectParent = null;\n\n // TODO: need to create Transform from factory\n /**\n * World transform and local transform of this object.\n * This will become read-only later, please do not assign anything there unless you know what are you doing.\n *\n * @member {PIXI.Transform}\n */\n this.transform = new Transform();\n\n /**\n * The opacity of the object.\n *\n * @member {number}\n */\n this.alpha = 1;\n\n /**\n * The visibility of the object. If false the object will not be drawn, and\n * the updateTransform function will not be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually.\n *\n * @member {boolean}\n */\n this.visible = true;\n\n /**\n * Can this object be rendered, if false the object will not be drawn but the updateTransform\n * methods will still be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds manually.\n *\n * @member {boolean}\n */\n this.renderable = true;\n\n /**\n * The display object container that contains this display object.\n *\n * @member {PIXI.Container}\n * @readonly\n */\n this.parent = null;\n\n /**\n * The multiplied alpha of the displayObject.\n *\n * @member {number}\n * @readonly\n */\n this.worldAlpha = 1;\n\n /**\n * Which index in the children array the display component was before the previous zIndex sort.\n * Used by containers to help sort objects with the same zIndex, by using previous array index as the decider.\n *\n * @member {number}\n * @protected\n */\n this._lastSortedIndex = 0;\n\n /**\n * The zIndex of the displayObject.\n * A higher value will mean it will be rendered on top of other displayObjects within the same container.\n *\n * @member {number}\n * @protected\n */\n this._zIndex = 0;\n\n /**\n * The area the filter is applied to. This is used as more of an optimization\n * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle.\n *\n * Also works as an interaction mask.\n *\n * @member {?PIXI.Rectangle}\n */\n this.filterArea = null;\n\n /**\n * Sets the filters for the displayObject.\n * * IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer.\n * To remove filters simply set this property to `'null'`.\n *\n * @member {?PIXI.Filter[]}\n */\n this.filters = null;\n this._enabledFilters = null;\n\n /**\n * The bounds object, this is used to calculate and store the bounds of the displayObject.\n *\n * @member {PIXI.Bounds}\n * @protected\n */\n this._bounds = new Bounds();\n this._boundsID = 0;\n this._lastBoundsID = -1;\n this._boundsRect = null;\n this._localBoundsRect = null;\n\n /**\n * The original, cached mask of the object.\n *\n * @member {PIXI.Graphics|PIXI.Sprite|null}\n * @protected\n */\n this._mask = null;\n\n /**\n * Fired when this DisplayObject is added to a Container.\n *\n * @event PIXI.DisplayObject#added\n * @param {PIXI.Container} container - The container added to.\n */\n\n /**\n * Fired when this DisplayObject is removed from a Container.\n *\n * @event PIXI.DisplayObject#removed\n * @param {PIXI.Container} container - The container removed from.\n */\n\n /**\n * If the object has been destroyed via destroy(). If true, it should not be used.\n *\n * @member {boolean}\n * @protected\n */\n this._destroyed = false;\n\n /**\n * used to fast check if a sprite is.. a sprite!\n * @member {boolean}\n */\n this.isSprite = false;\n }\n\n if ( EventEmitter ) DisplayObject.__proto__ = EventEmitter;\n DisplayObject.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n DisplayObject.prototype.constructor = DisplayObject;\n\n var prototypeAccessors = { _tempDisplayObjectParent: { configurable: true },x: { configurable: true },y: { configurable: true },worldTransform: { configurable: true },localTransform: { configurable: true },position: { configurable: true },scale: { configurable: true },pivot: { configurable: true },skew: { configurable: true },rotation: { configurable: true },angle: { configurable: true },zIndex: { configurable: true },worldVisible: { configurable: true },mask: { configurable: true } };\n\n /**\n * @protected\n * @member {PIXI.DisplayObject}\n */\n DisplayObject.mixin = function mixin (source)\n {\n // in ES8/ES2017, this would be really easy:\n // Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n\n // get all the enumerable property keys\n var keys = Object.keys(source);\n\n // loop through properties\n for (var i = 0; i < keys.length; ++i)\n {\n var propertyName = keys[i];\n\n // Set the property using the property descriptor - this works for accessors and normal value properties\n Object.defineProperty(\n DisplayObject.prototype,\n propertyName,\n Object.getOwnPropertyDescriptor(source, propertyName)\n );\n }\n };\n\n prototypeAccessors._tempDisplayObjectParent.get = function ()\n {\n if (this.tempDisplayObjectParent === null)\n {\n this.tempDisplayObjectParent = new DisplayObject();\n }\n\n return this.tempDisplayObjectParent;\n };\n\n /**\n * Updates the object transform for rendering.\n *\n * TODO - Optimization pass!\n */\n DisplayObject.prototype.updateTransform = function updateTransform ()\n {\n this.transform.updateTransform(this.parent.transform);\n // multiply the alphas..\n this.worldAlpha = this.alpha * this.parent.worldAlpha;\n\n this._bounds.updateID++;\n };\n\n /**\n * Recursively updates transform of all objects from the root to this one\n * internal function for toLocal()\n */\n DisplayObject.prototype._recursivePostUpdateTransform = function _recursivePostUpdateTransform ()\n {\n if (this.parent)\n {\n this.parent._recursivePostUpdateTransform();\n this.transform.updateTransform(this.parent.transform);\n }\n else\n {\n this.transform.updateTransform(this._tempDisplayObjectParent.transform);\n }\n };\n\n /**\n * Retrieves the bounds of the displayObject as a rectangle object.\n *\n * @param {boolean} [skipUpdate] - Setting to `true` will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost.\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation.\n * @return {PIXI.Rectangle} The rectangular bounding area.\n */\n DisplayObject.prototype.getBounds = function getBounds (skipUpdate, rect)\n {\n if (!skipUpdate)\n {\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this._recursivePostUpdateTransform();\n this.updateTransform();\n }\n }\n\n if (this._boundsID !== this._lastBoundsID)\n {\n this.calculateBounds();\n this._lastBoundsID = this._boundsID;\n }\n\n if (!rect)\n {\n if (!this._boundsRect)\n {\n this._boundsRect = new Rectangle();\n }\n\n rect = this._boundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n };\n\n /**\n * Retrieves the local bounds of the displayObject as a rectangle object.\n *\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation.\n * @return {PIXI.Rectangle} The rectangular bounding area.\n */\n DisplayObject.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n var transformRef = this.transform;\n var parentRef = this.parent;\n\n this.parent = null;\n this.transform = this._tempDisplayObjectParent.transform;\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n var bounds = this.getBounds(false, rect);\n\n this.parent = parentRef;\n this.transform = transformRef;\n\n return bounds;\n };\n\n /**\n * Calculates the global position of the display object.\n *\n * @param {PIXI.IPoint} position - The world origin to calculate from.\n * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point).\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform.\n * @return {PIXI.IPoint} A point object representing the position of this object.\n */\n DisplayObject.prototype.toGlobal = function toGlobal (position, point, skipUpdate)\n {\n if ( skipUpdate === void 0 ) skipUpdate = false;\n\n if (!skipUpdate)\n {\n this._recursivePostUpdateTransform();\n\n // this parent check is for just in case the item is a root object.\n // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly\n // this is mainly to avoid a parent check in the main loop. Every little helps for performance :)\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.displayObjectUpdateTransform();\n this.parent = null;\n }\n else\n {\n this.displayObjectUpdateTransform();\n }\n }\n\n // don't need to update the lot\n return this.worldTransform.apply(position, point);\n };\n\n /**\n * Calculates the local position of the display object relative to another point.\n *\n * @param {PIXI.IPoint} position - The world origin to calculate from.\n * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from.\n * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point).\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform\n * @return {PIXI.IPoint} A point object representing the position of this object\n */\n DisplayObject.prototype.toLocal = function toLocal (position, from, point, skipUpdate)\n {\n if (from)\n {\n position = from.toGlobal(position, point, skipUpdate);\n }\n\n if (!skipUpdate)\n {\n this._recursivePostUpdateTransform();\n\n // this parent check is for just in case the item is a root object.\n // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly\n // this is mainly to avoid a parent check in the main loop. Every little helps for performance :)\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.displayObjectUpdateTransform();\n this.parent = null;\n }\n else\n {\n this.displayObjectUpdateTransform();\n }\n }\n\n // simply apply the matrix..\n return this.worldTransform.applyInverse(position, point);\n };\n\n /**\n * Renders the object using the WebGL renderer.\n *\n * @param {PIXI.Renderer} renderer - The renderer.\n */\n DisplayObject.prototype.render = function render (renderer) // eslint-disable-line no-unused-vars\n {\n // OVERWRITE;\n };\n\n /**\n * Set the parent Container of this DisplayObject.\n *\n * @param {PIXI.Container} container - The Container to add this DisplayObject to.\n * @return {PIXI.Container} The Container that this DisplayObject was added to.\n */\n DisplayObject.prototype.setParent = function setParent (container)\n {\n if (!container || !container.addChild)\n {\n throw new Error('setParent: Argument must be a Container');\n }\n\n container.addChild(this);\n\n return container;\n };\n\n /**\n * Convenience function to set the position, scale, skew and pivot at once.\n *\n * @param {number} [x=0] - The X position\n * @param {number} [y=0] - The Y position\n * @param {number} [scaleX=1] - The X scale value\n * @param {number} [scaleY=1] - The Y scale value\n * @param {number} [rotation=0] - The rotation\n * @param {number} [skewX=0] - The X skew value\n * @param {number} [skewY=0] - The Y skew value\n * @param {number} [pivotX=0] - The X pivot value\n * @param {number} [pivotY=0] - The Y pivot value\n * @return {PIXI.DisplayObject} The DisplayObject instance\n */\n DisplayObject.prototype.setTransform = function setTransform (x, y, scaleX, scaleY, rotation, skewX, skewY, pivotX, pivotY)\n {\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( scaleX === void 0 ) scaleX = 1;\n if ( scaleY === void 0 ) scaleY = 1;\n if ( rotation === void 0 ) rotation = 0;\n if ( skewX === void 0 ) skewX = 0;\n if ( skewY === void 0 ) skewY = 0;\n if ( pivotX === void 0 ) pivotX = 0;\n if ( pivotY === void 0 ) pivotY = 0;\n\n this.position.x = x;\n this.position.y = y;\n this.scale.x = !scaleX ? 1 : scaleX;\n this.scale.y = !scaleY ? 1 : scaleY;\n this.rotation = rotation;\n this.skew.x = skewX;\n this.skew.y = skewY;\n this.pivot.x = pivotX;\n this.pivot.y = pivotY;\n\n return this;\n };\n\n /**\n * Base destroy method for generic display objects. This will automatically\n * remove the display object from its parent Container as well as remove\n * all current event listeners and internal references. Do not use a DisplayObject\n * after calling `destroy()`.\n *\n */\n DisplayObject.prototype.destroy = function destroy ()\n {\n this.removeAllListeners();\n if (this.parent)\n {\n this.parent.removeChild(this);\n }\n this.transform = null;\n\n this.parent = null;\n\n this._bounds = null;\n this._currentBounds = null;\n this._mask = null;\n\n this.filterArea = null;\n\n this.interactive = false;\n this.interactiveChildren = false;\n\n this._destroyed = true;\n };\n\n /**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n * An alias to position.x\n *\n * @member {number}\n */\n prototypeAccessors.x.get = function ()\n {\n return this.position.x;\n };\n\n prototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.x = value;\n };\n\n /**\n * The position of the displayObject on the y axis relative to the local coordinates of the parent.\n * An alias to position.y\n *\n * @member {number}\n */\n prototypeAccessors.y.get = function ()\n {\n return this.position.y;\n };\n\n prototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.y = value;\n };\n\n /**\n * Current transform of the object based on world (parent) factors.\n *\n * @member {PIXI.Matrix}\n * @readonly\n */\n prototypeAccessors.worldTransform.get = function ()\n {\n return this.transform.worldTransform;\n };\n\n /**\n * Current transform of the object based on local factors: position, scale, other stuff.\n *\n * @member {PIXI.Matrix}\n * @readonly\n */\n prototypeAccessors.localTransform.get = function ()\n {\n return this.transform.localTransform;\n };\n\n /**\n * The coordinate of the object relative to the local coordinates of the parent.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.position.get = function ()\n {\n return this.transform.position;\n };\n\n prototypeAccessors.position.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.copyFrom(value);\n };\n\n /**\n * The scale factor of the object.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.scale.get = function ()\n {\n return this.transform.scale;\n };\n\n prototypeAccessors.scale.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.scale.copyFrom(value);\n };\n\n /**\n * The pivot point of the displayObject that it rotates around.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.pivot.get = function ()\n {\n return this.transform.pivot;\n };\n\n prototypeAccessors.pivot.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.pivot.copyFrom(value);\n };\n\n /**\n * The skew factor for the object in radians.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.skew.get = function ()\n {\n return this.transform.skew;\n };\n\n prototypeAccessors.skew.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.skew.copyFrom(value);\n };\n\n /**\n * The rotation of the object in radians.\n * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees.\n *\n * @member {number}\n */\n prototypeAccessors.rotation.get = function ()\n {\n return this.transform.rotation;\n };\n\n prototypeAccessors.rotation.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.rotation = value;\n };\n\n /**\n * The angle of the object in degrees.\n * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees.\n *\n * @member {number}\n */\n prototypeAccessors.angle.get = function ()\n {\n return this.transform.rotation * RAD_TO_DEG;\n };\n\n prototypeAccessors.angle.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.rotation = value * DEG_TO_RAD;\n };\n\n /**\n * The zIndex of the displayObject.\n * If a container has the sortableChildren property set to true, children will be automatically\n * sorted by zIndex value; a higher value will mean it will be moved towards the end of the array,\n * and thus rendered on top of other displayObjects within the same container.\n *\n * @member {number}\n */\n prototypeAccessors.zIndex.get = function ()\n {\n return this._zIndex;\n };\n\n prototypeAccessors.zIndex.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._zIndex = value;\n if (this.parent)\n {\n this.parent.sortDirty = true;\n }\n };\n\n /**\n * Indicates if the object is globally visible.\n *\n * @member {boolean}\n * @readonly\n */\n prototypeAccessors.worldVisible.get = function ()\n {\n var item = this;\n\n do\n {\n if (!item.visible)\n {\n return false;\n }\n\n item = item.parent;\n } while (item);\n\n return true;\n };\n\n /**\n * Sets a mask for the displayObject. A mask is an object that limits the visibility of an\n * object to the shape of the mask applied to it. In PixiJS a regular mask must be a\n * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it\n * utilities shape clipping. To remove a mask, set this property to `null`.\n *\n * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask.\n * @example\n * const graphics = new PIXI.Graphics();\n * graphics.beginFill(0xFF3300);\n * graphics.drawRect(50, 250, 100, 100);\n * graphics.endFill();\n *\n * const sprite = new PIXI.Sprite(texture);\n * sprite.mask = graphics;\n * @todo At the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask.\n *\n * @member {PIXI.Graphics|PIXI.Sprite|null}\n */\n prototypeAccessors.mask.get = function ()\n {\n return this._mask;\n };\n\n prototypeAccessors.mask.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._mask)\n {\n this._mask.renderable = true;\n this._mask.isMask = false;\n }\n\n this._mask = value;\n\n if (this._mask)\n {\n this._mask.renderable = false;\n this._mask.isMask = true;\n }\n };\n\n Object.defineProperties( DisplayObject.prototype, prototypeAccessors );\n\n return DisplayObject;\n}(EventEmitter));\n\n/**\n * DisplayObject default updateTransform, does not update children of container.\n * Will crash if there's no parent element.\n *\n * @memberof PIXI.DisplayObject#\n * @function displayObjectUpdateTransform\n */\nDisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform;\n\nfunction sortChildren(a, b)\n{\n if (a.zIndex === b.zIndex)\n {\n return a._lastSortedIndex - b._lastSortedIndex;\n }\n\n return a.zIndex - b.zIndex;\n}\n\n/**\n * A Container represents a collection of display objects.\n *\n * It is the base class of all display objects that act as a container for other objects (like Sprites).\n *\n *```js\n * let container = new PIXI.Container();\n * container.addChild(sprite);\n * ```\n *\n * @class\n * @extends PIXI.DisplayObject\n * @memberof PIXI\n */\nvar Container = /*@__PURE__*/(function (DisplayObject) {\n function Container()\n {\n DisplayObject.call(this);\n\n /**\n * The array of children of this container.\n *\n * @member {PIXI.DisplayObject[]}\n * @readonly\n */\n this.children = [];\n\n /**\n * If set to true, the container will sort its children by zIndex value\n * when updateTransform() is called, or manually if sortChildren() is called.\n *\n * This actually changes the order of elements in the array, so should be treated\n * as a basic solution that is not performant compared to other solutions,\n * such as @link https://github.com/pixijs/pixi-display\n *\n * Also be aware of that this may not work nicely with the addChildAt() function,\n * as the zIndex sorting may cause the child to automatically sorted to another position.\n *\n * @see PIXI.settings.SORTABLE_CHILDREN\n *\n * @member {boolean}\n */\n this.sortableChildren = settings.SORTABLE_CHILDREN;\n\n /**\n * Should children be sorted by zIndex at the next updateTransform call.\n * Will get automatically set to true if a new child is added, or if a child's zIndex changes.\n *\n * @member {boolean}\n */\n this.sortDirty = false;\n\n /**\n * Fired when a DisplayObject is added to this Container.\n *\n * @event PIXI.Container#childAdded\n * @param {PIXI.DisplayObject} child - The child added to the Container.\n * @param {PIXI.Container} container - The container that added the child.\n * @param {number} index - The children's index of the added child.\n */\n\n /**\n * Fired when a DisplayObject is removed from this Container.\n *\n * @event PIXI.DisplayObject#removedFrom\n * @param {PIXI.DisplayObject} child - The child removed from the Container.\n * @param {PIXI.Container} container - The container that removed removed the child.\n * @param {number} index - The former children's index of the removed child\n */\n }\n\n if ( DisplayObject ) Container.__proto__ = DisplayObject;\n Container.prototype = Object.create( DisplayObject && DisplayObject.prototype );\n Container.prototype.constructor = Container;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true } };\n\n /**\n * Overridable method that can be used by Container subclasses whenever the children array is modified\n *\n * @protected\n */\n Container.prototype.onChildrenChange = function onChildrenChange ()\n {\n /* empty */\n };\n\n /**\n * Adds one or more children to the container.\n *\n * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)`\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container\n * @return {PIXI.DisplayObject} The first child that was added.\n */\n Container.prototype.addChild = function addChild (child)\n {\n var arguments$1 = arguments;\n\n var argumentsLength = arguments.length;\n\n // if there is only one argument we can bypass looping through the them\n if (argumentsLength > 1)\n {\n // loop through the arguments property and add all children\n // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes\n for (var i = 0; i < argumentsLength; i++)\n {\n this.addChild(arguments$1[i]);\n }\n }\n else\n {\n // if the child has a parent then lets remove it as PixiJS objects can only exist in one place\n if (child.parent)\n {\n child.parent.removeChild(child);\n }\n\n child.parent = this;\n this.sortDirty = true;\n\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n\n this.children.push(child);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(this.children.length - 1);\n this.emit('childAdded', child, this, this.children.length - 1);\n child.emit('added', this);\n }\n\n return child;\n };\n\n /**\n * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown\n *\n * @param {PIXI.DisplayObject} child - The child to add\n * @param {number} index - The index to place the child in\n * @return {PIXI.DisplayObject} The child that was added.\n */\n Container.prototype.addChildAt = function addChildAt (child, index)\n {\n if (index < 0 || index > this.children.length)\n {\n throw new Error((child + \"addChildAt: The index \" + index + \" supplied is out of bounds \" + (this.children.length)));\n }\n\n if (child.parent)\n {\n child.parent.removeChild(child);\n }\n\n child.parent = this;\n this.sortDirty = true;\n\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n\n this.children.splice(index, 0, child);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('added', this);\n this.emit('childAdded', child, this, index);\n\n return child;\n };\n\n /**\n * Swaps the position of 2 Display Objects within this container.\n *\n * @param {PIXI.DisplayObject} child - First display object to swap\n * @param {PIXI.DisplayObject} child2 - Second display object to swap\n */\n Container.prototype.swapChildren = function swapChildren (child, child2)\n {\n if (child === child2)\n {\n return;\n }\n\n var index1 = this.getChildIndex(child);\n var index2 = this.getChildIndex(child2);\n\n this.children[index1] = child2;\n this.children[index2] = child;\n this.onChildrenChange(index1 < index2 ? index1 : index2);\n };\n\n /**\n * Returns the index position of a child DisplayObject instance\n *\n * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify\n * @return {number} The index position of the child display object to identify\n */\n Container.prototype.getChildIndex = function getChildIndex (child)\n {\n var index = this.children.indexOf(child);\n\n if (index === -1)\n {\n throw new Error('The supplied DisplayObject must be a child of the caller');\n }\n\n return index;\n };\n\n /**\n * Changes the position of an existing child in the display object container\n *\n * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number\n * @param {number} index - The resulting index number for the child display object\n */\n Container.prototype.setChildIndex = function setChildIndex (child, index)\n {\n if (index < 0 || index >= this.children.length)\n {\n throw new Error((\"The index \" + index + \" supplied is out of bounds \" + (this.children.length)));\n }\n\n var currentIndex = this.getChildIndex(child);\n\n removeItems(this.children, currentIndex, 1); // remove from old position\n this.children.splice(index, 0, child); // add at new position\n\n this.onChildrenChange(index);\n };\n\n /**\n * Returns the child at the specified index\n *\n * @param {number} index - The index to get the child at\n * @return {PIXI.DisplayObject} The child at the given index, if any.\n */\n Container.prototype.getChildAt = function getChildAt (index)\n {\n if (index < 0 || index >= this.children.length)\n {\n throw new Error((\"getChildAt: Index (\" + index + \") does not exist.\"));\n }\n\n return this.children[index];\n };\n\n /**\n * Removes one or more children from the container.\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove\n * @return {PIXI.DisplayObject} The first child that was removed.\n */\n Container.prototype.removeChild = function removeChild (child)\n {\n var arguments$1 = arguments;\n\n var argumentsLength = arguments.length;\n\n // if there is only one argument we can bypass looping through the them\n if (argumentsLength > 1)\n {\n // loop through the arguments property and add all children\n // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes\n for (var i = 0; i < argumentsLength; i++)\n {\n this.removeChild(arguments$1[i]);\n }\n }\n else\n {\n var index = this.children.indexOf(child);\n\n if (index === -1) { return null; }\n\n child.parent = null;\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n removeItems(this.children, index, 1);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('removed', this);\n this.emit('childRemoved', child, this, index);\n }\n\n return child;\n };\n\n /**\n * Removes a child from the specified index position.\n *\n * @param {number} index - The index to get the child from\n * @return {PIXI.DisplayObject} The child that was removed.\n */\n Container.prototype.removeChildAt = function removeChildAt (index)\n {\n var child = this.getChildAt(index);\n\n // ensure child transform will be recalculated..\n child.parent = null;\n child.transform._parentID = -1;\n removeItems(this.children, index, 1);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('removed', this);\n this.emit('childRemoved', child, this, index);\n\n return child;\n };\n\n /**\n * Removes all children from this container that are within the begin and end indexes.\n *\n * @param {number} [beginIndex=0] - The beginning position.\n * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container.\n * @returns {PIXI.DisplayObject[]} List of removed children\n */\n Container.prototype.removeChildren = function removeChildren (beginIndex, endIndex)\n {\n if ( beginIndex === void 0 ) beginIndex = 0;\n\n var begin = beginIndex;\n var end = typeof endIndex === 'number' ? endIndex : this.children.length;\n var range = end - begin;\n var removed;\n\n if (range > 0 && range <= end)\n {\n removed = this.children.splice(begin, range);\n\n for (var i = 0; i < removed.length; ++i)\n {\n removed[i].parent = null;\n if (removed[i].transform)\n {\n removed[i].transform._parentID = -1;\n }\n }\n\n this._boundsID++;\n\n this.onChildrenChange(beginIndex);\n\n for (var i$1 = 0; i$1 < removed.length; ++i$1)\n {\n removed[i$1].emit('removed', this);\n this.emit('childRemoved', removed[i$1], this, i$1);\n }\n\n return removed;\n }\n else if (range === 0 && this.children.length === 0)\n {\n return [];\n }\n\n throw new RangeError('removeChildren: numeric values are outside the acceptable range.');\n };\n\n /**\n * Sorts children by zIndex. Previous order is mantained for 2 children with the same zIndex.\n */\n Container.prototype.sortChildren = function sortChildren$1 ()\n {\n var sortRequired = false;\n\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n var child = this.children[i];\n\n child._lastSortedIndex = i;\n\n if (!sortRequired && child.zIndex !== 0)\n {\n sortRequired = true;\n }\n }\n\n if (sortRequired && this.children.length > 1)\n {\n this.children.sort(sortChildren);\n }\n\n this.sortDirty = false;\n };\n\n /**\n * Updates the transform on all children of this container for rendering\n */\n Container.prototype.updateTransform = function updateTransform ()\n {\n if (this.sortableChildren && this.sortDirty)\n {\n this.sortChildren();\n }\n\n this._boundsID++;\n\n this.transform.updateTransform(this.parent.transform);\n\n // TODO: check render flags, how to process stuff here\n this.worldAlpha = this.alpha * this.parent.worldAlpha;\n\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n var child = this.children[i];\n\n if (child.visible)\n {\n child.updateTransform();\n }\n }\n };\n\n /**\n * Recalculates the bounds of the container.\n *\n */\n Container.prototype.calculateBounds = function calculateBounds ()\n {\n this._bounds.clear();\n\n this._calculateBounds();\n\n for (var i = 0; i < this.children.length; i++)\n {\n var child = this.children[i];\n\n if (!child.visible || !child.renderable)\n {\n continue;\n }\n\n child.calculateBounds();\n\n // TODO: filter+mask, need to mask both somehow\n if (child._mask)\n {\n child._mask.calculateBounds();\n this._bounds.addBoundsMask(child._bounds, child._mask._bounds);\n }\n else if (child.filterArea)\n {\n this._bounds.addBoundsArea(child._bounds, child.filterArea);\n }\n else\n {\n this._bounds.addBounds(child._bounds);\n }\n }\n\n this._lastBoundsID = this._boundsID;\n };\n\n /**\n * Recalculates the bounds of the object. Override this to\n * calculate the bounds of the specific object (not including children).\n *\n * @protected\n */\n Container.prototype._calculateBounds = function _calculateBounds ()\n {\n // FILL IN//\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype.render = function render (renderer)\n {\n // if the object is not visible or the alpha is 0 then no need to render this element\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n // do a quick check to see if this element has a mask or a filter.\n if (this._mask || (this.filters && this.filters.length))\n {\n this.renderAdvanced(renderer);\n }\n else\n {\n this._render(renderer);\n\n // simple render children!\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n this.children[i].render(renderer);\n }\n }\n };\n\n /**\n * Render the object using the WebGL renderer and advanced features.\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype.renderAdvanced = function renderAdvanced (renderer)\n {\n renderer.batch.flush();\n\n var filters = this.filters;\n var mask = this._mask;\n\n // push filter first as we need to ensure the stencil buffer is correct for any masking\n if (filters)\n {\n if (!this._enabledFilters)\n {\n this._enabledFilters = [];\n }\n\n this._enabledFilters.length = 0;\n\n for (var i = 0; i < filters.length; i++)\n {\n if (filters[i].enabled)\n {\n this._enabledFilters.push(filters[i]);\n }\n }\n\n if (this._enabledFilters.length)\n {\n renderer.filter.push(this, this._enabledFilters);\n }\n }\n\n if (mask)\n {\n renderer.mask.push(this, this._mask);\n }\n\n // add this object to the batch, only rendered if it has a texture.\n this._render(renderer);\n\n // now loop through the children and make sure they get rendered\n for (var i$1 = 0, j = this.children.length; i$1 < j; i$1++)\n {\n this.children[i$1].render(renderer);\n }\n\n renderer.batch.flush();\n\n if (mask)\n {\n renderer.mask.pop(this, this._mask);\n }\n\n if (filters && this._enabledFilters && this._enabledFilters.length)\n {\n renderer.filter.pop();\n }\n };\n\n /**\n * To be overridden by the subclasses.\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype._render = function _render (renderer) // eslint-disable-line no-unused-vars\n {\n // this is where content itself gets rendered...\n };\n\n /**\n * Removes all internal references and listeners as well as removes children from the display list.\n * Do not use a Container after calling `destroy`.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n Container.prototype.destroy = function destroy (options)\n {\n DisplayObject.prototype.destroy.call(this);\n\n this.sortDirty = false;\n\n var destroyChildren = typeof options === 'boolean' ? options : options && options.children;\n\n var oldChildren = this.removeChildren(0, this.children.length);\n\n if (destroyChildren)\n {\n for (var i = 0; i < oldChildren.length; ++i)\n {\n oldChildren[i].destroy(options);\n }\n }\n };\n\n /**\n * The width of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this.scale.x * this.getLocalBounds().width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n var width = this.getLocalBounds().width;\n\n if (width !== 0)\n {\n this.scale.x = value / width;\n }\n else\n {\n this.scale.x = 1;\n }\n\n this._width = value;\n };\n\n /**\n * The height of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this.scale.y * this.getLocalBounds().height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n var height = this.getLocalBounds().height;\n\n if (height !== 0)\n {\n this.scale.y = value / height;\n }\n else\n {\n this.scale.y = 1;\n }\n\n this._height = value;\n };\n\n Object.defineProperties( Container.prototype, prototypeAccessors );\n\n return Container;\n}(DisplayObject));\n\n// performance increase to avoid using call.. (10x faster)\nContainer.prototype.containerUpdateTransform = Container.prototype.updateTransform;\n\nexport { Bounds, Container, DisplayObject };\n//# sourceMappingURL=display.es.js.map\n","/*!\n * @pixi/accessibility - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/accessibility is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { isMobile, removeItems } from '@pixi/utils';\nimport { DisplayObject } from '@pixi/display';\n\n/**\n * Default property values of accessible objects\n * used by {@link PIXI.accessibility.AccessibilityManager}.\n *\n * @private\n * @function accessibleTarget\n * @memberof PIXI.accessibility\n * @type {Object}\n * @example\n * function MyObject() {}\n *\n * Object.assign(\n * MyObject.prototype,\n * PIXI.accessibility.accessibleTarget\n * );\n */\nvar accessibleTarget = {\n /**\n * Flag for if the object is accessible. If true AccessibilityManager will overlay a\n * shadow div with attributes set\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n accessible: false,\n\n /**\n * Sets the title attribute of the shadow div\n * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]'\n *\n * @member {?string}\n * @memberof PIXI.DisplayObject#\n */\n accessibleTitle: null,\n\n /**\n * Sets the aria-label attribute of the shadow div\n *\n * @member {string}\n * @memberof PIXI.DisplayObject#\n */\n accessibleHint: null,\n\n /**\n * @member {number}\n * @memberof PIXI.DisplayObject#\n * @private\n * @todo Needs docs.\n */\n tabIndex: 0,\n\n /**\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n * @todo Needs docs.\n */\n _accessibleActive: false,\n\n /**\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n * @todo Needs docs.\n */\n _accessibleDiv: false,\n};\n\n// add some extra variables to the container..\nDisplayObject.mixin(accessibleTarget);\n\nvar KEY_CODE_TAB = 9;\n\nvar DIV_TOUCH_SIZE = 100;\nvar DIV_TOUCH_POS_X = 0;\nvar DIV_TOUCH_POS_Y = 0;\nvar DIV_TOUCH_ZINDEX = 2;\n\nvar DIV_HOOK_SIZE = 1;\nvar DIV_HOOK_POS_X = -1000;\nvar DIV_HOOK_POS_Y = -1000;\nvar DIV_HOOK_ZINDEX = 2;\n\n/**\n * The Accessibility manager recreates the ability to tab and have content read by screen readers.\n * This is very important as it can possibly help people with disabilities access PixiJS content.\n *\n * A DisplayObject can be made accessible just like it can be made interactive. This manager will map the\n * events as if the mouse was being used, minimizing the effort required to implement.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.accessibility`\n *\n * @class\n * @memberof PIXI.accessibility\n */\nvar AccessibilityManager = function AccessibilityManager(renderer)\n{\n /**\n * @type {?HTMLElement}\n * @private\n */\n this._hookDiv = null;\n if (isMobile.tablet || isMobile.phone)\n {\n this.createTouchHook();\n }\n\n // first we create a div that will sit over the PixiJS element. This is where the div overlays will go.\n var div = document.createElement('div');\n\n div.style.width = DIV_TOUCH_SIZE + \"px\";\n div.style.height = DIV_TOUCH_SIZE + \"px\";\n div.style.position = 'absolute';\n div.style.top = DIV_TOUCH_POS_X + \"px\";\n div.style.left = DIV_TOUCH_POS_Y + \"px\";\n div.style.zIndex = DIV_TOUCH_ZINDEX;\n\n /**\n * This is the dom element that will sit over the PixiJS element. This is where the div overlays will go.\n *\n * @type {HTMLElement}\n * @private\n */\n this.div = div;\n\n /**\n * A simple pool for storing divs.\n *\n * @type {*}\n * @private\n */\n this.pool = [];\n\n /**\n * This is a tick used to check if an object is no longer being rendered.\n *\n * @type {Number}\n * @private\n */\n this.renderId = 0;\n\n /**\n * Setting this to true will visually show the divs.\n *\n * @type {boolean}\n */\n this.debug = false;\n\n /**\n * The renderer this accessibility manager works for.\n *\n * @member {PIXI.AbstractRenderer}\n */\n this.renderer = renderer;\n\n /**\n * The array of currently active accessible items.\n *\n * @member {Array<*>}\n * @private\n */\n this.children = [];\n\n /**\n * pre-bind the functions\n *\n * @type {Function}\n * @private\n */\n this._onKeyDown = this._onKeyDown.bind(this);\n\n /**\n * pre-bind the functions\n *\n * @type {Function}\n * @private\n */\n this._onMouseMove = this._onMouseMove.bind(this);\n\n /**\n * A flag\n * @type {boolean}\n * @readonly\n */\n this.isActive = false;\n\n /**\n * A flag\n * @type {boolean}\n * @readonly\n */\n this.isMobileAccessibility = false;\n\n // let listen for tab.. once pressed we can fire up and show the accessibility layer\n window.addEventListener('keydown', this._onKeyDown, false);\n};\n\n/**\n * Creates the touch hooks.\n *\n * @private\n */\nAccessibilityManager.prototype.createTouchHook = function createTouchHook ()\n{\n var this$1 = this;\n\n var hookDiv = document.createElement('button');\n\n hookDiv.style.width = DIV_HOOK_SIZE + \"px\";\n hookDiv.style.height = DIV_HOOK_SIZE + \"px\";\n hookDiv.style.position = 'absolute';\n hookDiv.style.top = DIV_HOOK_POS_X + \"px\";\n hookDiv.style.left = DIV_HOOK_POS_Y + \"px\";\n hookDiv.style.zIndex = DIV_HOOK_ZINDEX;\n hookDiv.style.backgroundColor = '#FF0000';\n hookDiv.title = 'HOOK DIV';\n\n hookDiv.addEventListener('focus', function () {\n this$1.isMobileAccessibility = true;\n this$1.activate();\n this$1.destroyTouchHook();\n });\n\n document.body.appendChild(hookDiv);\n this._hookDiv = hookDiv;\n};\n\n/**\n * Destroys the touch hooks.\n *\n * @private\n */\nAccessibilityManager.prototype.destroyTouchHook = function destroyTouchHook ()\n{\n if (!this._hookDiv)\n {\n return;\n }\n document.body.removeChild(this._hookDiv);\n this._hookDiv = null;\n};\n\n/**\n * Activating will cause the Accessibility layer to be shown.\n * This is called when a user presses the tab key.\n *\n * @private\n */\nAccessibilityManager.prototype.activate = function activate ()\n{\n if (this.isActive)\n {\n return;\n }\n\n this.isActive = true;\n\n window.document.addEventListener('mousemove', this._onMouseMove, true);\n window.removeEventListener('keydown', this._onKeyDown, false);\n\n this.renderer.on('postrender', this.update, this);\n\n if (this.renderer.view.parentNode)\n {\n this.renderer.view.parentNode.appendChild(this.div);\n }\n};\n\n/**\n * Deactivating will cause the Accessibility layer to be hidden.\n * This is called when a user moves the mouse.\n *\n * @private\n */\nAccessibilityManager.prototype.deactivate = function deactivate ()\n{\n if (!this.isActive || this.isMobileAccessibility)\n {\n return;\n }\n\n this.isActive = false;\n\n window.document.removeEventListener('mousemove', this._onMouseMove, true);\n window.addEventListener('keydown', this._onKeyDown, false);\n\n this.renderer.off('postrender', this.update);\n\n if (this.div.parentNode)\n {\n this.div.parentNode.removeChild(this.div);\n }\n};\n\n/**\n * This recursive function will run through the scene graph and add any new accessible objects to the DOM layer.\n *\n * @private\n * @param {PIXI.Container} displayObject - The DisplayObject to check.\n */\nAccessibilityManager.prototype.updateAccessibleObjects = function updateAccessibleObjects (displayObject)\n{\n if (!displayObject.visible)\n {\n return;\n }\n\n if (displayObject.accessible && displayObject.interactive)\n {\n if (!displayObject._accessibleActive)\n {\n this.addChild(displayObject);\n }\n\n displayObject.renderId = this.renderId;\n }\n\n var children = displayObject.children;\n\n for (var i = 0; i < children.length; i++)\n {\n this.updateAccessibleObjects(children[i]);\n }\n};\n\n/**\n * Before each render this function will ensure that all divs are mapped correctly to their DisplayObjects.\n *\n * @private\n */\nAccessibilityManager.prototype.update = function update ()\n{\n if (!this.renderer.renderingToScreen)\n {\n return;\n }\n\n // update children...\n this.updateAccessibleObjects(this.renderer._lastObjectRendered);\n\n var rect = this.renderer.view.getBoundingClientRect();\n var sx = rect.width / this.renderer.width;\n var sy = rect.height / this.renderer.height;\n\n var div = this.div;\n\n div.style.left = (rect.left) + \"px\";\n div.style.top = (rect.top) + \"px\";\n div.style.width = (this.renderer.width) + \"px\";\n div.style.height = (this.renderer.height) + \"px\";\n\n for (var i = 0; i < this.children.length; i++)\n {\n var child = this.children[i];\n\n if (child.renderId !== this.renderId)\n {\n child._accessibleActive = false;\n\n removeItems(this.children, i, 1);\n this.div.removeChild(child._accessibleDiv);\n this.pool.push(child._accessibleDiv);\n child._accessibleDiv = null;\n\n i--;\n\n if (this.children.length === 0)\n {\n this.deactivate();\n }\n }\n else\n {\n // map div to display..\n div = child._accessibleDiv;\n var hitArea = child.hitArea;\n var wt = child.worldTransform;\n\n if (child.hitArea)\n {\n div.style.left = ((wt.tx + (hitArea.x * wt.a)) * sx) + \"px\";\n div.style.top = ((wt.ty + (hitArea.y * wt.d)) * sy) + \"px\";\n\n div.style.width = (hitArea.width * wt.a * sx) + \"px\";\n div.style.height = (hitArea.height * wt.d * sy) + \"px\";\n }\n else\n {\n hitArea = child.getBounds();\n\n this.capHitArea(hitArea);\n\n div.style.left = (hitArea.x * sx) + \"px\";\n div.style.top = (hitArea.y * sy) + \"px\";\n\n div.style.width = (hitArea.width * sx) + \"px\";\n div.style.height = (hitArea.height * sy) + \"px\";\n\n // update button titles and hints if they exist and they've changed\n if (div.title !== child.accessibleTitle && child.accessibleTitle !== null)\n {\n div.title = child.accessibleTitle;\n }\n if (div.getAttribute('aria-label') !== child.accessibleHint\n && child.accessibleHint !== null)\n {\n div.setAttribute('aria-label', child.accessibleHint);\n }\n }\n }\n }\n\n // increment the render id..\n this.renderId++;\n};\n\n/**\n * Adjust the hit area based on the bounds of a display object\n *\n * @param {PIXI.Rectangle} hitArea - Bounds of the child\n */\nAccessibilityManager.prototype.capHitArea = function capHitArea (hitArea)\n{\n if (hitArea.x < 0)\n {\n hitArea.width += hitArea.x;\n hitArea.x = 0;\n }\n\n if (hitArea.y < 0)\n {\n hitArea.height += hitArea.y;\n hitArea.y = 0;\n }\n\n if (hitArea.x + hitArea.width > this.renderer.width)\n {\n hitArea.width = this.renderer.width - hitArea.x;\n }\n\n if (hitArea.y + hitArea.height > this.renderer.height)\n {\n hitArea.height = this.renderer.height - hitArea.y;\n }\n};\n\n/**\n * Adds a DisplayObject to the accessibility manager\n *\n * @private\n * @param {PIXI.DisplayObject} displayObject - The child to make accessible.\n */\nAccessibilityManager.prototype.addChild = function addChild (displayObject)\n{\n //this.activate();\n\n var div = this.pool.pop();\n\n if (!div)\n {\n div = document.createElement('button');\n\n div.style.width = DIV_TOUCH_SIZE + \"px\";\n div.style.height = DIV_TOUCH_SIZE + \"px\";\n div.style.backgroundColor = this.debug ? 'rgba(255,0,0,0.5)' : 'transparent';\n div.style.position = 'absolute';\n div.style.zIndex = DIV_TOUCH_ZINDEX;\n div.style.borderStyle = 'none';\n\n // ARIA attributes ensure that button title and hint updates are announced properly\n if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)\n {\n // Chrome doesn't need aria-live to work as intended; in fact it just gets more confused.\n div.setAttribute('aria-live', 'off');\n }\n else\n {\n div.setAttribute('aria-live', 'polite');\n }\n\n if (navigator.userAgent.match(/rv:.*Gecko\\//))\n {\n // FireFox needs this to announce only the new button name\n div.setAttribute('aria-relevant', 'additions');\n }\n else\n {\n // required by IE, other browsers don't much care\n div.setAttribute('aria-relevant', 'text');\n }\n\n div.addEventListener('click', this._onClick.bind(this));\n div.addEventListener('focus', this._onFocus.bind(this));\n div.addEventListener('focusout', this._onFocusOut.bind(this));\n }\n\n if (displayObject.accessibleTitle && displayObject.accessibleTitle !== null)\n {\n div.title = displayObject.accessibleTitle;\n }\n else if (!displayObject.accessibleHint\n || displayObject.accessibleHint === null)\n {\n div.title = \"displayObject \" + (displayObject.tabIndex);\n }\n\n if (displayObject.accessibleHint\n && displayObject.accessibleHint !== null)\n {\n div.setAttribute('aria-label', displayObject.accessibleHint);\n }\n\n //\n\n displayObject._accessibleActive = true;\n displayObject._accessibleDiv = div;\n div.displayObject = displayObject;\n\n this.children.push(displayObject);\n this.div.appendChild(displayObject._accessibleDiv);\n displayObject._accessibleDiv.tabIndex = displayObject.tabIndex;\n};\n\n/**\n * Maps the div button press to pixi's InteractionManager (click)\n *\n * @private\n * @param {MouseEvent} e - The click event.\n */\nAccessibilityManager.prototype._onClick = function _onClick (e)\n{\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'click', interactionManager.eventData);\n interactionManager.dispatchEvent(e.target.displayObject, 'pointertap', interactionManager.eventData);\n interactionManager.dispatchEvent(e.target.displayObject, 'tap', interactionManager.eventData);\n};\n\n/**\n * Maps the div focus events to pixi's InteractionManager (mouseover)\n *\n * @private\n * @param {FocusEvent} e - The focus event.\n */\nAccessibilityManager.prototype._onFocus = function _onFocus (e)\n{\n if (!e.target.getAttribute('aria-live', 'off'))\n {\n e.target.setAttribute('aria-live', 'assertive');\n }\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'mouseover', interactionManager.eventData);\n};\n\n/**\n * Maps the div focus events to pixi's InteractionManager (mouseout)\n *\n * @private\n * @param {FocusEvent} e - The focusout event.\n */\nAccessibilityManager.prototype._onFocusOut = function _onFocusOut (e)\n{\n if (!e.target.getAttribute('aria-live', 'off'))\n {\n e.target.setAttribute('aria-live', 'polite');\n }\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'mouseout', interactionManager.eventData);\n};\n\n/**\n * Is called when a key is pressed\n *\n * @private\n * @param {KeyboardEvent} e - The keydown event.\n */\nAccessibilityManager.prototype._onKeyDown = function _onKeyDown (e)\n{\n if (e.keyCode !== KEY_CODE_TAB)\n {\n return;\n }\n\n this.activate();\n};\n\n/**\n * Is called when the mouse moves across the renderer element\n *\n * @private\n * @param {MouseEvent} e - The mouse event.\n */\nAccessibilityManager.prototype._onMouseMove = function _onMouseMove (e)\n{\n if (e.movementX === 0 && e.movementY === 0)\n {\n return;\n }\n\n this.deactivate();\n};\n\n/**\n * Destroys the accessibility manager\n *\n */\nAccessibilityManager.prototype.destroy = function destroy ()\n{\n this.destroyTouchHook();\n this.div = null;\n\n for (var i = 0; i < this.children.length; i++)\n {\n this.children[i].div = null;\n }\n\n window.document.removeEventListener('mousemove', this._onMouseMove, true);\n window.removeEventListener('keydown', this._onKeyDown);\n\n this.pool = null;\n this.children = null;\n this.renderer = null;\n};\n\n/**\n * This namespace contains an accessibility plugin for allowing interaction via the keyboard.\n *\n * Do not instantiate this plugin directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @namespace PIXI.accessibility\n */\n\nexport { AccessibilityManager, accessibleTarget };\n//# sourceMappingURL=accessibility.es.js.map\n","/*!\n * @pixi/runner - v5.1.1\n * Compiled Fri, 02 Aug 2019 23:20:23 UTC\n *\n * @pixi/runner is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * A Runner is a highly performant and simple alternative to signals. Best used in situations\n * where events are dispatched to many objects at high frequency (say every frame!)\n *\n *\n * like a signal..\n * ```\n * const myObject = {\n * loaded: new PIXI.Runner('loaded')\n * }\n *\n * const listener = {\n * loaded: function(){\n * // thin\n * }\n * }\n *\n * myObject.update.add(listener);\n *\n * myObject.loaded.emit();\n * ```\n *\n * Or for handling calling the same function on many items\n * ```\n * const myGame = {\n * update: new PIXI.Runner('update')\n * }\n *\n * const gameObject = {\n * update: function(time){\n * // update my gamey state\n * }\n * }\n *\n * myGame.update.add(gameObject1);\n *\n * myGame.update.emit(time);\n * ```\n * @class\n * @memberof PIXI\n */\nvar Runner = function Runner(name)\n{\n this.items = [];\n this._name = name;\n this._aliasCount = 0;\n};\n\nvar prototypeAccessors = { empty: { configurable: true },name: { configurable: true } };\n\n/**\n * Dispatch/Broadcast Runner to all listeners added to the queue.\n * @param {...any} params - optional parameters to pass to each listener\n */\nRunner.prototype.emit = function emit (a0, a1, a2, a3, a4, a5, a6, a7)\n{\n if (arguments.length > 8)\n {\n throw new Error('max arguments reached');\n }\n\n var ref = this;\n var name = ref.name;\n var items = ref.items;\n\n this._aliasCount++;\n\n for (var i = 0, len = items.length; i < len; i++)\n {\n items[i][name](a0, a1, a2, a3, a4, a5, a6, a7);\n }\n\n if (items === this.items)\n {\n this._aliasCount--;\n }\n\n return this;\n};\n\nRunner.prototype.ensureNonAliasedItems = function ensureNonAliasedItems ()\n{\n if (this._aliasCount > 0 && this.items.length > 1)\n {\n this._aliasCount = 0;\n this.items = this.items.slice(0);\n }\n};\n\n/**\n * Add a listener to the Runner\n *\n * Runners do not need to have scope or functions passed to them.\n * All that is required is to pass the listening object and ensure that it has contains a function that has the same name\n * as the name provided to the Runner when it was created.\n *\n * Eg A listener passed to this Runner will require a 'complete' function.\n *\n * ```\n * const complete = new PIXI.Runner('complete');\n * ```\n *\n * The scope used will be the object itself.\n *\n * @param {any} item - The object that will be listening.\n */\nRunner.prototype.add = function add (item)\n{\n if (item[this._name])\n {\n this.ensureNonAliasedItems();\n this.remove(item);\n this.items.push(item);\n }\n\n return this;\n};\n\n/**\n * Remove a single listener from the dispatch queue.\n * @param {any} item - The listenr that you would like to remove.\n */\nRunner.prototype.remove = function remove (item)\n{\n var index = this.items.indexOf(item);\n\n if (index !== -1)\n {\n this.ensureNonAliasedItems();\n this.items.splice(index, 1);\n }\n\n return this;\n};\n\n/**\n * Check to see if the listener is already in the Runner\n * @param {any} item - The listener that you would like to check.\n */\nRunner.prototype.contains = function contains (item)\n{\n return this.items.indexOf(item) !== -1;\n};\n\n/**\n * Remove all listeners from the Runner\n */\nRunner.prototype.removeAll = function removeAll ()\n{\n this.ensureNonAliasedItems();\n this.items.length = 0;\n\n return this;\n};\n\n/**\n * Remove all references, don't use after this.\n */\nRunner.prototype.destroy = function destroy ()\n{\n this.removeAll();\n this.items = null;\n this._name = null;\n};\n\n/**\n * `true` if there are no this Runner contains no listeners\n *\n * @member {boolean}\n * @readonly\n */\nprototypeAccessors.empty.get = function ()\n{\n return this.items.length === 0;\n};\n\n/**\n * The name of the runner.\n *\n * @member {string}\n * @readonly\n */\nprototypeAccessors.name.get = function ()\n{\n return this._name;\n};\n\nObject.defineProperties( Runner.prototype, prototypeAccessors );\n\n/**\n * Alias for `emit`\n * @memberof PIXI.Runner#\n * @method dispatch\n * @see PIXI.Runner#emit\n */\nRunner.prototype.dispatch = Runner.prototype.emit;\n\n/**\n * Alias for `emit`\n * @memberof PIXI.Runner#\n * @method run\n * @see PIXI.Runner#emit\n */\nRunner.prototype.run = Runner.prototype.emit;\n\nexport { Runner };\n//# sourceMappingURL=runner.es.js.map\n","/*!\n * @pixi/ticker - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/ticker is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\n\n/**\n * Target frames per millisecond.\n *\n * @static\n * @name TARGET_FPMS\n * @memberof PIXI.settings\n * @type {number}\n * @default 0.06\n */\nsettings.TARGET_FPMS = 0.06;\n\n/**\n * Represents the update priorities used by internal PIXI classes when registered with\n * the {@link PIXI.Ticker} object. Higher priority items are updated first and lower\n * priority items, such as render, should go later.\n *\n * @static\n * @constant\n * @name UPDATE_PRIORITY\n * @memberof PIXI\n * @type {object}\n * @property {number} INTERACTION=50 Highest priority, used for {@link PIXI.interaction.InteractionManager}\n * @property {number} HIGH=25 High priority updating, {@link PIXI.VideoBaseTexture} and {@link PIXI.AnimatedSprite}\n * @property {number} NORMAL=0 Default priority for ticker events, see {@link PIXI.Ticker#add}.\n * @property {number} LOW=-25 Low priority used for {@link PIXI.Application} rendering.\n * @property {number} UTILITY=-50 Lowest priority used for {@link PIXI.prepare.BasePrepare} utility.\n */\nvar UPDATE_PRIORITY = {\n INTERACTION: 50,\n HIGH: 25,\n NORMAL: 0,\n LOW: -25,\n UTILITY: -50,\n};\n\n/**\n * Internal class for handling the priority sorting of ticker handlers.\n *\n * @private\n * @class\n * @memberof PIXI\n */\nvar TickerListener = function TickerListener(fn, context, priority, once)\n{\n if ( context === void 0 ) context = null;\n if ( priority === void 0 ) priority = 0;\n if ( once === void 0 ) once = false;\n\n /**\n * The handler function to execute.\n * @private\n * @member {Function}\n */\n this.fn = fn;\n\n /**\n * The calling to execute.\n * @private\n * @member {*}\n */\n this.context = context;\n\n /**\n * The current priority.\n * @private\n * @member {number}\n */\n this.priority = priority;\n\n /**\n * If this should only execute once.\n * @private\n * @member {boolean}\n */\n this.once = once;\n\n /**\n * The next item in chain.\n * @private\n * @member {TickerListener}\n */\n this.next = null;\n\n /**\n * The previous item in chain.\n * @private\n * @member {TickerListener}\n */\n this.previous = null;\n\n /**\n * `true` if this listener has been destroyed already.\n * @member {boolean}\n * @private\n */\n this._destroyed = false;\n};\n\n/**\n * Simple compare function to figure out if a function and context match.\n * @private\n * @param {Function} fn - The listener function to be added for one update\n * @param {Function} context - The listener context\n * @return {boolean} `true` if the listener match the arguments\n */\nTickerListener.prototype.match = function match (fn, context)\n{\n context = context || null;\n\n return this.fn === fn && this.context === context;\n};\n\n/**\n * Emit by calling the current function.\n * @private\n * @param {number} deltaTime - time since the last emit.\n * @return {TickerListener} Next ticker\n */\nTickerListener.prototype.emit = function emit (deltaTime)\n{\n if (this.fn)\n {\n if (this.context)\n {\n this.fn.call(this.context, deltaTime);\n }\n else\n {\n this.fn(deltaTime);\n }\n }\n\n var redirect = this.next;\n\n if (this.once)\n {\n this.destroy(true);\n }\n\n // Soft-destroying should remove\n // the next reference\n if (this._destroyed)\n {\n this.next = null;\n }\n\n return redirect;\n};\n\n/**\n * Connect to the list.\n * @private\n * @param {TickerListener} previous - Input node, previous listener\n */\nTickerListener.prototype.connect = function connect (previous)\n{\n this.previous = previous;\n if (previous.next)\n {\n previous.next.previous = this;\n }\n this.next = previous.next;\n previous.next = this;\n};\n\n/**\n * Destroy and don't use after this.\n * @private\n * @param {boolean} [hard = false] `true` to remove the `next` reference, this\n * is considered a hard destroy. Soft destroy maintains the next reference.\n * @return {TickerListener} The listener to redirect while emitting or removing.\n */\nTickerListener.prototype.destroy = function destroy (hard)\n{\n if ( hard === void 0 ) hard = false;\n\n this._destroyed = true;\n this.fn = null;\n this.context = null;\n\n // Disconnect, hook up next and previous\n if (this.previous)\n {\n this.previous.next = this.next;\n }\n\n if (this.next)\n {\n this.next.previous = this.previous;\n }\n\n // Redirect to the next item\n var redirect = this.next;\n\n // Remove references\n this.next = hard ? null : redirect;\n this.previous = null;\n\n return redirect;\n};\n\n/**\n * A Ticker class that runs an update loop that other objects listen to.\n *\n * This class is composed around listeners meant for execution on the next requested animation frame.\n * Animation frames are requested only when necessary, e.g. When the ticker is started and the emitter has listeners.\n *\n * @class\n * @memberof PIXI\n */\nvar Ticker = function Ticker()\n{\n var this$1 = this;\n\n /**\n * The first listener. All new listeners added are chained on this.\n * @private\n * @type {TickerListener}\n */\n this._head = new TickerListener(null, null, Infinity);\n\n /**\n * Internal current frame request ID\n * @type {?number}\n * @private\n */\n this._requestId = null;\n\n /**\n * Internal value managed by minFPS property setter and getter.\n * This is the maximum allowed milliseconds between updates.\n * @type {number}\n * @private\n */\n this._maxElapsedMS = 100;\n\n /**\n * Internal value managed by maxFPS property setter and getter.\n * This is the minimum allowed milliseconds between updates.\n * @private\n */\n this._minElapsedMS = 0;\n\n /**\n * Whether or not this ticker should invoke the method\n * {@link PIXI.Ticker#start} automatically\n * when a listener is added.\n *\n * @member {boolean}\n * @default false\n */\n this.autoStart = false;\n\n /**\n * Scalar time value from last frame to this frame.\n * This value is capped by setting {@link PIXI.Ticker#minFPS}\n * and is scaled with {@link PIXI.Ticker#speed}.\n * **Note:** The cap may be exceeded by scaling.\n *\n * @member {number}\n * @default 1\n */\n this.deltaTime = 1;\n\n /**\n * Scaler time elapsed in milliseconds from last frame to this frame.\n * This value is capped by setting {@link PIXI.Ticker#minFPS}\n * and is scaled with {@link PIXI.Ticker#speed}.\n * **Note:** The cap may be exceeded by scaling.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n * Defaults to target frame time\n *\n * @member {number}\n * @default 16.66\n */\n this.deltaMS = 1 / settings.TARGET_FPMS;\n\n /**\n * Time elapsed in milliseconds from last frame to this frame.\n * Opposed to what the scalar {@link PIXI.Ticker#deltaTime}\n * is based, this value is neither capped nor scaled.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n * Defaults to target frame time\n *\n * @member {number}\n * @default 16.66\n */\n this.elapsedMS = 1 / settings.TARGET_FPMS;\n\n /**\n * The last time {@link PIXI.Ticker#update} was invoked.\n * This value is also reset internally outside of invoking\n * update, but only when a new animation frame is requested.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n *\n * @member {number}\n * @default -1\n */\n this.lastTime = -1;\n\n /**\n * Factor of current {@link PIXI.Ticker#deltaTime}.\n * @example\n * // Scales ticker.deltaTime to what would be\n * // the equivalent of approximately 120 FPS\n * ticker.speed = 2;\n *\n * @member {number}\n * @default 1\n */\n this.speed = 1;\n\n /**\n * Whether or not this ticker has been started.\n * `true` if {@link PIXI.Ticker#start} has been called.\n * `false` if {@link PIXI.Ticker#stop} has been called.\n * While `false`, this value may change to `true` in the\n * event of {@link PIXI.Ticker#autoStart} being `true`\n * and a listener is added.\n *\n * @member {boolean}\n * @default false\n */\n this.started = false;\n\n /**\n * If enabled, deleting is disabled.\n * @member {boolean}\n * @default false\n * @private\n */\n this._protected = false;\n\n /**\n * The last time keyframe was executed.\n * Maintains a relatively fixed interval with the previous value.\n * @member {number}\n * @default -1\n * @private\n */\n this._lastFrame = -1;\n\n /**\n * Internal tick method bound to ticker instance.\n * This is because in early 2015, Function.bind\n * is still 60% slower in high performance scenarios.\n * Also separating frame requests from update method\n * so listeners may be called at any time and with\n * any animation API, just invoke ticker.update(time).\n *\n * @private\n * @param {number} time - Time since last tick.\n */\n this._tick = function (time) {\n this$1._requestId = null;\n\n if (this$1.started)\n {\n // Invoke listeners now\n this$1.update(time);\n // Listener side effects may have modified ticker state.\n if (this$1.started && this$1._requestId === null && this$1._head.next)\n {\n this$1._requestId = requestAnimationFrame(this$1._tick);\n }\n }\n };\n};\n\nvar prototypeAccessors = { FPS: { configurable: true },minFPS: { configurable: true },maxFPS: { configurable: true } };\nvar staticAccessors = { shared: { configurable: true },system: { configurable: true } };\n\n/**\n * Conditionally requests a new animation frame.\n * If a frame has not already been requested, and if the internal\n * emitter has listeners, a new frame is requested.\n *\n * @private\n */\nTicker.prototype._requestIfNeeded = function _requestIfNeeded ()\n{\n if (this._requestId === null && this._head.next)\n {\n // ensure callbacks get correct delta\n this.lastTime = performance.now();\n this._lastFrame = this.lastTime;\n this._requestId = requestAnimationFrame(this._tick);\n }\n};\n\n/**\n * Conditionally cancels a pending animation frame.\n *\n * @private\n */\nTicker.prototype._cancelIfNeeded = function _cancelIfNeeded ()\n{\n if (this._requestId !== null)\n {\n cancelAnimationFrame(this._requestId);\n this._requestId = null;\n }\n};\n\n/**\n * Conditionally requests a new animation frame.\n * If the ticker has been started it checks if a frame has not already\n * been requested, and if the internal emitter has listeners. If these\n * conditions are met, a new frame is requested. If the ticker has not\n * been started, but autoStart is `true`, then the ticker starts now,\n * and continues with the previous conditions to request a new frame.\n *\n * @private\n */\nTicker.prototype._startIfPossible = function _startIfPossible ()\n{\n if (this.started)\n {\n this._requestIfNeeded();\n }\n else if (this.autoStart)\n {\n this.start();\n }\n};\n\n/**\n * Register a handler for tick events. Calls continuously unless\n * it is removed or the ticker is stopped.\n *\n * @param {Function} fn - The listener function to be added for updates\n * @param {*} [context] - The listener context\n * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.add = function add (fn, context, priority)\n{\n if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL;\n\n return this._addListener(new TickerListener(fn, context, priority));\n};\n\n/**\n * Add a handler for the tick event which is only execute once.\n *\n * @param {Function} fn - The listener function to be added for one update\n * @param {*} [context] - The listener context\n * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.addOnce = function addOnce (fn, context, priority)\n{\n if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL;\n\n return this._addListener(new TickerListener(fn, context, priority, true));\n};\n\n/**\n * Internally adds the event handler so that it can be sorted by priority.\n * Priority allows certain handler (user, AnimatedSprite, Interaction) to be run\n * before the rendering.\n *\n * @private\n * @param {TickerListener} listener - Current listener being added.\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype._addListener = function _addListener (listener)\n{\n // For attaching to head\n var current = this._head.next;\n var previous = this._head;\n\n // Add the first item\n if (!current)\n {\n listener.connect(previous);\n }\n else\n {\n // Go from highest to lowest priority\n while (current)\n {\n if (listener.priority > current.priority)\n {\n listener.connect(previous);\n break;\n }\n previous = current;\n current = current.next;\n }\n\n // Not yet connected\n if (!listener.previous)\n {\n listener.connect(previous);\n }\n }\n\n this._startIfPossible();\n\n return this;\n};\n\n/**\n * Removes any handlers matching the function and context parameters.\n * If no handlers are left after removing, then it cancels the animation frame.\n *\n * @param {Function} fn - The listener function to be removed\n * @param {*} [context] - The listener context to be removed\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.remove = function remove (fn, context)\n{\n var listener = this._head.next;\n\n while (listener)\n {\n // We found a match, lets remove it\n // no break to delete all possible matches\n // incase a listener was added 2+ times\n if (listener.match(fn, context))\n {\n listener = listener.destroy();\n }\n else\n {\n listener = listener.next;\n }\n }\n\n if (!this._head.next)\n {\n this._cancelIfNeeded();\n }\n\n return this;\n};\n\n/**\n * Starts the ticker. If the ticker has listeners\n * a new animation frame is requested at this point.\n */\nTicker.prototype.start = function start ()\n{\n if (!this.started)\n {\n this.started = true;\n this._requestIfNeeded();\n }\n};\n\n/**\n * Stops the ticker. If the ticker has requested\n * an animation frame it is canceled at this point.\n */\nTicker.prototype.stop = function stop ()\n{\n if (this.started)\n {\n this.started = false;\n this._cancelIfNeeded();\n }\n};\n\n/**\n * Destroy the ticker and don't use after this. Calling\n * this method removes all references to internal events.\n */\nTicker.prototype.destroy = function destroy ()\n{\n if (!this._protected)\n {\n this.stop();\n\n var listener = this._head.next;\n\n while (listener)\n {\n listener = listener.destroy(true);\n }\n\n this._head.destroy();\n this._head = null;\n }\n};\n\n/**\n * Triggers an update. An update entails setting the\n * current {@link PIXI.Ticker#elapsedMS},\n * the current {@link PIXI.Ticker#deltaTime},\n * invoking all listeners with current deltaTime,\n * and then finally setting {@link PIXI.Ticker#lastTime}\n * with the value of currentTime that was provided.\n * This method will be called automatically by animation\n * frame callbacks if the ticker instance has been started\n * and listeners are added.\n *\n * @param {number} [currentTime=performance.now()] - the current time of execution\n */\nTicker.prototype.update = function update (currentTime)\n{\n if ( currentTime === void 0 ) currentTime = performance.now();\n\n var elapsedMS;\n\n // If the difference in time is zero or negative, we ignore most of the work done here.\n // If there is no valid difference, then should be no reason to let anyone know about it.\n // A zero delta, is exactly that, nothing should update.\n //\n // The difference in time can be negative, and no this does not mean time traveling.\n // This can be the result of a race condition between when an animation frame is requested\n // on the current JavaScript engine event loop, and when the ticker's start method is invoked\n // (which invokes the internal _requestIfNeeded method). If a frame is requested before\n // _requestIfNeeded is invoked, then the callback for the animation frame the ticker requests,\n // can receive a time argument that can be less than the lastTime value that was set within\n // _requestIfNeeded. This difference is in microseconds, but this is enough to cause problems.\n //\n // This check covers this browser engine timing issue, as well as if consumers pass an invalid\n // currentTime value. This may happen if consumers opt-out of the autoStart, and update themselves.\n\n if (currentTime > this.lastTime)\n {\n // Save uncapped elapsedMS for measurement\n elapsedMS = this.elapsedMS = currentTime - this.lastTime;\n\n // cap the milliseconds elapsed used for deltaTime\n if (elapsedMS > this._maxElapsedMS)\n {\n elapsedMS = this._maxElapsedMS;\n }\n\n elapsedMS *= this.speed;\n\n // If not enough time has passed, exit the function.\n // Get ready for next frame by setting _lastFrame, but based on _minElapsedMS\n // adjustment to ensure a relatively stable interval.\n if (this._minElapsedMS)\n {\n var delta = currentTime - this._lastFrame | 0;\n\n if (delta < this._minElapsedMS)\n {\n return;\n }\n\n this._lastFrame = currentTime - (delta % this._minElapsedMS);\n }\n\n this.deltaMS = elapsedMS;\n this.deltaTime = this.deltaMS * settings.TARGET_FPMS;\n\n // Cache a local reference, in-case ticker is destroyed\n // during the emit, we can still check for head.next\n var head = this._head;\n\n // Invoke listeners added to internal emitter\n var listener = head.next;\n\n while (listener)\n {\n listener = listener.emit(this.deltaTime);\n }\n\n if (!head.next)\n {\n this._cancelIfNeeded();\n }\n }\n else\n {\n this.deltaTime = this.deltaMS = this.elapsedMS = 0;\n }\n\n this.lastTime = currentTime;\n};\n\n/**\n * The frames per second at which this ticker is running.\n * The default is approximately 60 in most modern browsers.\n * **Note:** This does not factor in the value of\n * {@link PIXI.Ticker#speed}, which is specific\n * to scaling {@link PIXI.Ticker#deltaTime}.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.FPS.get = function ()\n{\n return 1000 / this.elapsedMS;\n};\n\n/**\n * Manages the maximum amount of milliseconds allowed to\n * elapse between invoking {@link PIXI.Ticker#update}.\n * This value is used to cap {@link PIXI.Ticker#deltaTime},\n * but does not effect the measured value of {@link PIXI.Ticker#FPS}.\n * When setting this property it is clamped to a value between\n * `0` and `PIXI.settings.TARGET_FPMS * 1000`.\n *\n * @member {number}\n * @default 10\n */\nprototypeAccessors.minFPS.get = function ()\n{\n return 1000 / this._maxElapsedMS;\n};\n\nprototypeAccessors.minFPS.set = function (fps) // eslint-disable-line require-jsdoc\n{\n // Minimum must be below the maxFPS\n var minFPS = Math.min(this.maxFPS, fps);\n\n // Must be at least 0, but below 1 / settings.TARGET_FPMS\n var minFPMS = Math.min(Math.max(0, minFPS) / 1000, settings.TARGET_FPMS);\n\n this._maxElapsedMS = 1 / minFPMS;\n};\n\n/**\n * Manages the minimum amount of milliseconds required to\n * elapse between invoking {@link PIXI.Ticker#update}.\n * This will effect the measured value of {@link PIXI.Ticker#FPS}.\n * If it is set to `0`, then there is no limit; PixiJS will render as many frames as it can.\n * Otherwise it will be at least `minFPS`\n *\n * @member {number}\n * @default 0\n */\nprototypeAccessors.maxFPS.get = function ()\n{\n if (this._minElapsedMS)\n {\n return Math.round(1000 / this._minElapsedMS);\n }\n\n return 0;\n};\n\nprototypeAccessors.maxFPS.set = function (fps)\n{\n if (fps === 0)\n {\n this._minElapsedMS = 0;\n }\n else\n {\n // Max must be at least the minFPS\n var maxFPS = Math.max(this.minFPS, fps);\n\n this._minElapsedMS = 1 / (maxFPS / 1000);\n }\n};\n\n/**\n * The shared ticker instance used by {@link PIXI.AnimatedSprite} and by\n * {@link PIXI.VideoResource} to update animation frames / video textures.\n *\n * It may also be used by {@link PIXI.Application} if created with the `sharedTicker` option property set to true.\n *\n * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance.\n * Please follow the examples for usage, including how to opt-out of auto-starting the shared ticker.\n *\n * @example\n * let ticker = PIXI.Ticker.shared;\n * // Set this to prevent starting this ticker when listeners are added.\n * // By default this is true only for the PIXI.Ticker.shared instance.\n * ticker.autoStart = false;\n * // FYI, call this to ensure the ticker is stopped. It should be stopped\n * // if you have not attempted to render anything yet.\n * ticker.stop();\n * // Call this when you are ready for a running shared ticker.\n * ticker.start();\n *\n * @example\n * // You may use the shared ticker to render...\n * let renderer = PIXI.autoDetectRenderer();\n * let stage = new PIXI.Container();\n * document.body.appendChild(renderer.view);\n * ticker.add(function (time) {\n * renderer.render(stage);\n * });\n *\n * @example\n * // Or you can just update it manually.\n * ticker.autoStart = false;\n * ticker.stop();\n * function animate(time) {\n * ticker.update(time);\n * renderer.render(stage);\n * requestAnimationFrame(animate);\n * }\n * animate(performance.now());\n *\n * @member {PIXI.Ticker}\n * @static\n */\nstaticAccessors.shared.get = function ()\n{\n if (!Ticker._shared)\n {\n var shared = Ticker._shared = new Ticker();\n\n shared.autoStart = true;\n shared._protected = true;\n }\n\n return Ticker._shared;\n};\n\n/**\n * The system ticker instance used by {@link PIXI.interaction.InteractionManager} and by\n * {@link PIXI.BasePrepare} for core timing functionality that shouldn't usually need to be paused,\n * unlike the `shared` ticker which drives visual animations and rendering which may want to be paused.\n *\n * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance.\n *\n * @member {PIXI.Ticker}\n * @static\n */\nstaticAccessors.system.get = function ()\n{\n if (!Ticker._system)\n {\n var system = Ticker._system = new Ticker();\n\n system.autoStart = true;\n system._protected = true;\n }\n\n return Ticker._system;\n};\n\nObject.defineProperties( Ticker.prototype, prototypeAccessors );\nObject.defineProperties( Ticker, staticAccessors );\n\n/**\n * Middleware for for Application Ticker.\n *\n * @example\n * import {TickerPlugin} from '@pixi/ticker';\n * import {Application} from '@pixi/app';\n * Application.registerPlugin(TickerPlugin);\n *\n * @class\n * @memberof PIXI\n */\nvar TickerPlugin = function TickerPlugin () {};\n\nTickerPlugin.init = function init (options)\n{\n var this$1 = this;\n\n // Set default\n options = Object.assign({\n autoStart: true,\n sharedTicker: false,\n }, options);\n\n // Create ticker setter\n Object.defineProperty(this, 'ticker',\n {\n set: function set(ticker)\n {\n if (this._ticker)\n {\n this._ticker.remove(this.render, this);\n }\n this._ticker = ticker;\n if (ticker)\n {\n ticker.add(this.render, this, UPDATE_PRIORITY.LOW);\n }\n },\n get: function get()\n {\n return this._ticker;\n },\n });\n\n /**\n * Convenience method for stopping the render.\n *\n * @method PIXI.Application#stop\n */\n this.stop = function () {\n this$1._ticker.stop();\n };\n\n /**\n * Convenience method for starting the render.\n *\n * @method PIXI.Application#start\n */\n this.start = function () {\n this$1._ticker.start();\n };\n\n /**\n * Internal reference to the ticker.\n *\n * @type {PIXI.Ticker}\n * @name _ticker\n * @memberof PIXI.Application#\n * @private\n */\n this._ticker = null;\n\n /**\n * Ticker for doing render updates.\n *\n * @type {PIXI.Ticker}\n * @name ticker\n * @memberof PIXI.Application#\n * @default PIXI.Ticker.shared\n */\n this.ticker = options.sharedTicker ? Ticker.shared : new Ticker();\n\n // Start the rendering\n if (options.autoStart)\n {\n this.start();\n }\n};\n\n/**\n * Clean up the ticker, scoped to application.\n *\n * @static\n * @private\n */\nTickerPlugin.destroy = function destroy ()\n{\n if (this._ticker)\n {\n var oldTicker = this._ticker;\n\n this.ticker = null;\n oldTicker.destroy();\n }\n};\n\nexport { Ticker, TickerPlugin, UPDATE_PRIORITY };\n//# sourceMappingURL=ticker.es.js.map\n","/*!\n * @pixi/core - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/core is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Runner } from '@pixi/runner';\nimport { determineCrossOrigin, isPow2, BaseTextureCache, TextureCache, uid, EventEmitter, getResolutionOfUrl, nextPow2, isMobile, ProgramCache, removeItems, hex2string, hex2rgb, deprecation, isWebGLSupported, sayHello, premultiplyBlendMode, log2, premultiplyTint } from '@pixi/utils';\nimport { settings } from '@pixi/settings';\nimport { SCALE_MODES, FORMATS, TYPES, TARGETS, DRAW_MODES, ENV, PRECISION, BLEND_MODES, GC_MODES, MIPMAP_MODES, WRAP_MODES, RENDERER_TYPE } from '@pixi/constants';\nimport { Ticker } from '@pixi/ticker';\nimport { GroupD8, Rectangle, Point, Matrix } from '@pixi/math';\nimport { Container } from '@pixi/display';\n\n/**\n * Base resource class for textures that manages validation and uploading, depending on its type.\n *\n * Uploading of a base texture to the GPU is required.\n *\n * @class\n * @memberof PIXI.resources\n */\nvar Resource = function Resource(width, height)\n{\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n\n /**\n * Internal width of the resource\n * @member {number}\n * @protected\n */\n this._width = width;\n\n /**\n * Internal height of the resource\n * @member {number}\n * @protected\n */\n this._height = height;\n\n /**\n * If resource has been destroyed\n * @member {boolean}\n * @readonly\n * @default false\n */\n this.destroyed = false;\n\n /**\n * `true` if resource is created by BaseTexture\n * useful for doing cleanup with BaseTexture destroy\n * and not cleaning up resources that were created\n * externally.\n * @member {boolean}\n * @protected\n */\n this.internal = false;\n\n /**\n * Mini-runner for handling resize events\n *\n * @member {Runner}\n * @private\n */\n this.onResize = new Runner('setRealSize', 2);\n\n /**\n * Mini-runner for handling update events\n *\n * @member {Runner}\n * @private\n */\n this.onUpdate = new Runner('update');\n\n /**\n * Handle internal errors, such as loading errors\n *\n * @member {Runner}\n * @private\n */\n this.onError = new Runner('onError', 1);\n};\n\nvar prototypeAccessors = { valid: { configurable: true },width: { configurable: true },height: { configurable: true } };\n\n/**\n * Bind to a parent BaseTexture\n *\n * @param {PIXI.BaseTexture} baseTexture - Parent texture\n */\nResource.prototype.bind = function bind (baseTexture)\n{\n this.onResize.add(baseTexture);\n this.onUpdate.add(baseTexture);\n this.onError.add(baseTexture);\n\n // Call a resize immediate if we already\n // have the width and height of the resource\n if (this._width || this._height)\n {\n this.onResize.run(this._width, this._height);\n }\n};\n\n/**\n * Unbind to a parent BaseTexture\n *\n * @param {PIXI.BaseTexture} baseTexture - Parent texture\n */\nResource.prototype.unbind = function unbind (baseTexture)\n{\n this.onResize.remove(baseTexture);\n this.onUpdate.remove(baseTexture);\n this.onError.remove(baseTexture);\n};\n\n/**\n * Trigger a resize event\n * @param {number} width X dimension\n * @param {number} height Y dimension\n */\nResource.prototype.resize = function resize (width, height)\n{\n if (width !== this._width || height !== this._height)\n {\n this._width = width;\n this._height = height;\n this.onResize.run(width, height);\n }\n};\n\n/**\n * Has been validated\n * @readonly\n * @member {boolean}\n */\nprototypeAccessors.valid.get = function ()\n{\n return !!this._width && !!this._height;\n};\n\n/**\n * Has been updated trigger event\n */\nResource.prototype.update = function update ()\n{\n if (!this.destroyed)\n {\n this.onUpdate.run();\n }\n};\n\n/**\n * This can be overridden to start preloading a resource\n * or do any other prepare step.\n * @protected\n * @return {Promise} Handle the validate event\n */\nResource.prototype.load = function load ()\n{\n return Promise.resolve();\n};\n\n/**\n * The width of the resource.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.width.get = function ()\n{\n return this._width;\n};\n\n/**\n * The height of the resource.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.height.get = function ()\n{\n return this._height;\n};\n\n/**\n * Uploads the texture or returns false if it cant for some reason. Override this.\n *\n * @param {PIXI.Renderer} renderer - yeah, renderer!\n * @param {PIXI.BaseTexture} baseTexture - the texture\n * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context\n * @returns {boolean} true is success\n */\nResource.prototype.upload = function upload (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars\n{\n return false;\n};\n\n/**\n * Set the style, optional to override\n *\n * @param {PIXI.Renderer} renderer - yeah, renderer!\n * @param {PIXI.BaseTexture} baseTexture - the texture\n * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context\n * @returns {boolean} `true` is success\n */\nResource.prototype.style = function style (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars\n{\n return false;\n};\n\n/**\n * Clean up anything, this happens when destroying is ready.\n *\n * @protected\n */\nResource.prototype.dispose = function dispose ()\n{\n // override\n};\n\n/**\n * Call when destroying resource, unbind any BaseTexture object\n * before calling this method, as reference counts are maintained\n * internally.\n */\nResource.prototype.destroy = function destroy ()\n{\n if (!this.destroyed)\n {\n this.destroyed = true;\n this.dispose();\n this.onError.removeAll();\n this.onError = null;\n this.onResize.removeAll();\n this.onResize = null;\n this.onUpdate.removeAll();\n this.onUpdate = null;\n }\n};\n\nObject.defineProperties( Resource.prototype, prototypeAccessors );\n\n/**\n * Base for all the image/canvas resources\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n */\nvar BaseImageResource = /*@__PURE__*/(function (Resource) {\n function BaseImageResource(source)\n {\n var width = source.naturalWidth || source.videoWidth || source.width;\n var height = source.naturalHeight || source.videoHeight || source.height;\n\n Resource.call(this, width, height);\n\n /**\n * The source element\n * @member {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement}\n * @readonly\n */\n this.source = source;\n\n /**\n * If set to `true`, will force `texImage2D` over `texSubImage2D` for uploading.\n * Certain types of media (e.g. video) using `texImage2D` is more performant.\n * @member {boolean}\n * @default false\n * @private\n */\n this.noSubImage = false;\n }\n\n if ( Resource ) BaseImageResource.__proto__ = Resource;\n BaseImageResource.prototype = Object.create( Resource && Resource.prototype );\n BaseImageResource.prototype.constructor = BaseImageResource;\n\n /**\n * Set cross origin based detecting the url and the crossorigin\n * @protected\n * @param {HTMLElement} element - Element to apply crossOrigin\n * @param {string} url - URL to check\n * @param {boolean|string} [crossorigin=true] - Cross origin value to use\n */\n BaseImageResource.crossOrigin = function crossOrigin (element, url, crossorigin)\n {\n if (crossorigin === undefined && url.indexOf('data:') !== 0)\n {\n element.crossOrigin = determineCrossOrigin(url);\n }\n else if (crossorigin !== false)\n {\n element.crossOrigin = typeof crossorigin === 'string' ? crossorigin : 'anonymous';\n }\n };\n\n /**\n * Upload the texture to the GPU.\n * @param {PIXI.Renderer} renderer Upload to the renderer\n * @param {PIXI.BaseTexture} baseTexture Reference to parent texture\n * @param {PIXI.GLTexture} glTexture\n * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} [source] (optional)\n * @returns {boolean} true is success\n */\n BaseImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture, source)\n {\n var gl = renderer.gl;\n var width = baseTexture.realWidth;\n var height = baseTexture.realHeight;\n\n source = source || this.source;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (!this.noSubImage\n && baseTexture.target === gl.TEXTURE_2D\n && glTexture.width === width\n && glTexture.height === height)\n {\n gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, baseTexture.format, baseTexture.type, source);\n }\n else\n {\n glTexture.width = width;\n glTexture.height = height;\n\n gl.texImage2D(baseTexture.target, 0, baseTexture.format, baseTexture.format, baseTexture.type, source);\n }\n\n return true;\n };\n\n /**\n * Checks if source width/height was changed, resize can cause extra baseTexture update.\n * Triggers one update in any case.\n */\n BaseImageResource.prototype.update = function update ()\n {\n if (this.destroyed)\n {\n return;\n }\n\n var width = this.source.naturalWidth || this.source.videoWidth || this.source.width;\n var height = this.source.naturalHeight || this.source.videoHeight || this.source.height;\n\n this.resize(width, height);\n\n Resource.prototype.update.call(this);\n };\n\n /**\n * Destroy this BaseImageResource\n * @override\n * @param {PIXI.BaseTexture} [fromTexture] Optional base texture\n * @return {boolean} Destroy was successful\n */\n BaseImageResource.prototype.dispose = function dispose ()\n {\n this.source = null;\n };\n\n return BaseImageResource;\n}(Resource));\n\n/**\n * Resource type for HTMLImageElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n */\nvar ImageResource = /*@__PURE__*/(function (BaseImageResource) {\n function ImageResource(source, options)\n {\n options = options || {};\n\n if (!(source instanceof HTMLImageElement))\n {\n var imageElement = new Image();\n\n BaseImageResource.crossOrigin(imageElement, source, options.crossorigin);\n\n imageElement.src = source;\n source = imageElement;\n }\n\n BaseImageResource.call(this, source);\n\n // FireFox 68, and possibly other versions, seems like setting the HTMLImageElement#width and #height\n // to non-zero values before its loading completes if images are in a cache.\n // Because of this, need to set the `_width` and the `_height` to zero to avoid uploading incomplete images.\n // Please refer to the issue #5968 (https://github.com/pixijs/pixi.js/issues/5968).\n if (!source.complete && !!this._width && !!this._height)\n {\n this._width = 0;\n this._height = 0;\n }\n\n /**\n * URL of the image source\n * @member {string}\n */\n this.url = source.src;\n\n /**\n * When process is completed\n * @member {Promise}\n * @private\n */\n this._process = null;\n\n /**\n * If the image should be disposed after upload\n * @member {boolean}\n * @default false\n */\n this.preserveBitmap = false;\n\n /**\n * If capable, convert the image using createImageBitmap API\n * @member {boolean}\n * @default PIXI.settings.CREATE_IMAGE_BITMAP\n */\n this.createBitmap = (options.createBitmap !== undefined\n ? options.createBitmap : settings.CREATE_IMAGE_BITMAP) && !!window.createImageBitmap;\n\n /**\n * Controls texture premultiplyAlpha field\n * Copies from options\n * @member {boolean|null}\n * @readonly\n */\n this.premultiplyAlpha = options.premultiplyAlpha !== false;\n\n /**\n * The ImageBitmap element created for HTMLImageElement\n * @member {ImageBitmap}\n * @default null\n */\n this.bitmap = null;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) ImageResource.__proto__ = BaseImageResource;\n ImageResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n ImageResource.prototype.constructor = ImageResource;\n\n /**\n * returns a promise when image will be loaded and processed\n *\n * @param {boolean} [createBitmap=true] whether process image into bitmap\n * @returns {Promise}\n */\n ImageResource.prototype.load = function load (createBitmap)\n {\n var this$1 = this;\n\n if (createBitmap !== undefined)\n {\n this.createBitmap = createBitmap;\n }\n\n if (this._load)\n {\n return this._load;\n }\n\n this._load = new Promise(function (resolve) {\n this$1.url = this$1.source.src;\n var ref = this$1;\n var source = ref.source;\n\n var completed = function () {\n if (this$1.destroyed)\n {\n return;\n }\n source.onload = null;\n source.onerror = null;\n\n this$1.resize(source.width, source.height);\n this$1._load = null;\n\n if (this$1.createBitmap)\n {\n resolve(this$1.process());\n }\n else\n {\n resolve(this$1);\n }\n };\n\n if (source.complete && source.src)\n {\n completed();\n }\n else\n {\n source.onload = completed;\n source.onerror = function (event) { return this$1.onError.run(event); };\n }\n });\n\n return this._load;\n };\n\n /**\n * Called when we need to convert image into BitmapImage.\n * Can be called multiple times, real promise is cached inside.\n *\n * @returns {Promise} cached promise to fill that bitmap\n */\n ImageResource.prototype.process = function process ()\n {\n var this$1 = this;\n\n if (this._process !== null)\n {\n return this._process;\n }\n if (this.bitmap !== null || !window.createImageBitmap)\n {\n return Promise.resolve(this);\n }\n\n this._process = window.createImageBitmap(this.source,\n 0, 0, this.source.width, this.source.height,\n {\n premultiplyAlpha: this.premultiplyAlpha ? 'premultiply' : 'none',\n })\n .then(function (bitmap) {\n if (this$1.destroyed)\n {\n return Promise.reject();\n }\n this$1.bitmap = bitmap;\n this$1.update();\n this$1._process = null;\n\n return Promise.resolve(this$1);\n });\n\n return this._process;\n };\n\n /**\n * Upload the image resource to GPU.\n *\n * @param {PIXI.Renderer} renderer - Renderer to upload to\n * @param {PIXI.BaseTexture} baseTexture - BaseTexture for this resource\n * @param {PIXI.GLTexture} glTexture - GLTexture to use\n * @returns {boolean} true is success\n */\n ImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n baseTexture.premultiplyAlpha = this.premultiplyAlpha;\n\n if (!this.createBitmap)\n {\n return BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture);\n }\n if (!this.bitmap)\n {\n // yeah, ignore the output\n this.process();\n if (!this.bitmap)\n {\n return false;\n }\n }\n\n BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture, this.bitmap);\n\n if (!this.preserveBitmap)\n {\n // checks if there are other renderers that possibly need this bitmap\n\n var flag = true;\n\n for (var key in baseTexture._glTextures)\n {\n var otherTex = baseTexture._glTextures[key];\n\n if (otherTex !== glTexture && otherTex.dirtyId !== baseTexture.dirtyId)\n {\n flag = false;\n break;\n }\n }\n\n if (flag)\n {\n if (this.bitmap.close)\n {\n this.bitmap.close();\n }\n\n this.bitmap = null;\n }\n }\n\n return true;\n };\n\n /**\n * Destroys this texture\n * @override\n */\n ImageResource.prototype.dispose = function dispose ()\n {\n this.source.onload = null;\n this.source.onerror = null;\n\n BaseImageResource.prototype.dispose.call(this);\n\n if (this.bitmap)\n {\n this.bitmap.close();\n this.bitmap = null;\n }\n this._process = null;\n this._load = null;\n };\n\n return ImageResource;\n}(BaseImageResource));\n\n/**\n * Collection of installed resource types, class must extend {@link PIXI.resources.Resource}.\n * @example\n * class CustomResource extends PIXI.resources.Resource {\n * // MUST have source, options constructor signature\n * // for auto-detected resources to be created.\n * constructor(source, options) {\n * super();\n * }\n * upload(renderer, baseTexture, glTexture) {\n * // upload with GL\n * return true;\n * }\n * // used to auto-detect resource\n * static test(source, extension) {\n * return extension === 'xyz'|| source instanceof SomeClass;\n * }\n * }\n * // Install the new resource type\n * PIXI.resources.INSTALLED.push(CustomResource);\n *\n * @name PIXI.resources.INSTALLED\n * @type {Array<*>}\n * @static\n * @readonly\n */\nvar INSTALLED = [];\n\n/**\n * Create a resource element from a single source element. This\n * auto-detects which type of resource to create. All resources that\n * are auto-detectable must have a static `test` method and a constructor\n * with the arguments `(source, options?)`. Currently, the supported\n * resources for auto-detection include:\n * - {@link PIXI.resources.ImageResource}\n * - {@link PIXI.resources.CanvasResource}\n * - {@link PIXI.resources.VideoResource}\n * - {@link PIXI.resources.SVGResource}\n * - {@link PIXI.resources.BufferResource}\n * @static\n * @function PIXI.resources.autoDetectResource\n * @param {string|*} source - Resource source, this can be the URL to the resource,\n * a typed-array (for BufferResource), HTMLVideoElement, SVG data-uri\n * or any other resource that can be auto-detected. If not resource is\n * detected, it's assumed to be an ImageResource.\n * @param {object} [options] - Pass-through options to use for Resource\n * @param {number} [options.width] - Width of BufferResource or SVG rasterization\n * @param {number} [options.height] - Height of BufferResource or SVG rasterization\n * @param {boolean} [options.autoLoad=true] - Image, SVG and Video flag to start loading\n * @param {number} [options.scale=1] - SVG source scale. Overridden by width, height\n * @param {boolean} [options.createBitmap=PIXI.settings.CREATE_IMAGE_BITMAP] - Image option to create Bitmap object\n * @param {boolean} [options.crossorigin=true] - Image and Video option to set crossOrigin\n * @param {boolean} [options.autoPlay=true] - Video option to start playing video immediately\n * @param {number} [options.updateFPS=0] - Video option to update how many times a second the\n * texture should be updated from the video. Leave at 0 to update at every render\n * @return {PIXI.resources.Resource} The created resource.\n */\nfunction autoDetectResource(source, options)\n{\n if (!source)\n {\n return null;\n }\n\n var extension = '';\n\n if (typeof source === 'string')\n {\n // search for file extension: period, 3-4 chars, then ?, # or EOL\n var result = (/\\.(\\w{3,4})(?:$|\\?|#)/i).exec(source);\n\n if (result)\n {\n extension = result[1].toLowerCase();\n }\n }\n\n for (var i = INSTALLED.length - 1; i >= 0; --i)\n {\n var ResourcePlugin = INSTALLED[i];\n\n if (ResourcePlugin.test && ResourcePlugin.test(source, extension))\n {\n return new ResourcePlugin(source, options);\n }\n }\n\n // When in doubt: probably an image\n // might be appropriate to throw an error or return null\n return new ImageResource(source, options);\n}\n\n/**\n * @interface SharedArrayBuffer\n */\n\n/**\n * Buffer resource with data of typed array.\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n */\nvar BufferResource = /*@__PURE__*/(function (Resource) {\n function BufferResource(source, options)\n {\n var ref = options || {};\n var width = ref.width;\n var height = ref.height;\n\n if (!width || !height)\n {\n throw new Error('BufferResource width or height invalid');\n }\n\n Resource.call(this, width, height);\n\n /**\n * Source array\n * Cannot be ClampedUint8Array because it cant be uploaded to WebGL\n *\n * @member {Float32Array|Uint8Array|Uint32Array}\n */\n this.data = source;\n }\n\n if ( Resource ) BufferResource.__proto__ = Resource;\n BufferResource.prototype = Object.create( Resource && Resource.prototype );\n BufferResource.prototype.constructor = BufferResource;\n\n /**\n * Upload the texture to the GPU.\n * @param {PIXI.Renderer} renderer Upload to the renderer\n * @param {PIXI.BaseTexture} baseTexture Reference to parent texture\n * @param {PIXI.GLTexture} glTexture glTexture\n * @returns {boolean} true is success\n */\n BufferResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var gl = renderer.gl;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height)\n {\n gl.texSubImage2D(\n baseTexture.target,\n 0,\n 0,\n 0,\n baseTexture.width,\n baseTexture.height,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n else\n {\n glTexture.width = baseTexture.width;\n glTexture.height = baseTexture.height;\n\n gl.texImage2D(\n baseTexture.target,\n 0,\n glTexture.internalFormat,\n baseTexture.width,\n baseTexture.height,\n 0,\n baseTexture.format,\n glTexture.type,\n this.data\n );\n }\n\n return true;\n };\n\n /**\n * Destroy and don't use after this\n * @override\n */\n BufferResource.prototype.dispose = function dispose ()\n {\n this.data = null;\n };\n\n /**\n * Used to auto-detect the type of resource.\n *\n * @static\n * @param {*} source - The source object\n * @return {boolean} `true` if \n */\n BufferResource.test = function test (source)\n {\n return source instanceof Float32Array\n || source instanceof Uint8Array\n || source instanceof Uint32Array;\n };\n\n return BufferResource;\n}(Resource));\n\nvar defaultBufferOptions = {\n scaleMode: SCALE_MODES.NEAREST,\n format: FORMATS.RGBA,\n premultiplyAlpha: false,\n};\n\n/**\n * A Texture stores the information that represents an image.\n * All textures have a base texture, which contains information about the source.\n * Therefore you can have many textures all using a single BaseTexture\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n * @param {PIXI.resources.Resource|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} [resource=null]\n * The current resource to use, for things that aren't Resource objects, will be converted\n * into a Resource.\n * @param {Object} [options] - Collection of options\n * @param {PIXI.MIPMAP_MODES} [options.mipmap=PIXI.settings.MIPMAP_TEXTURES] - If mipmapping is enabled for texture\n * @param {number} [options.anisotropicLevel=PIXI.settings.ANISOTROPIC_LEVEL] - Anisotropic filtering level of texture\n * @param {PIXI.WRAP_MODES} [options.wrapMode=PIXI.settings.WRAP_MODE] - Wrap mode for textures\n * @param {PIXI.SCALE_MODES} [options.scaleMode=PIXI.settings.SCALE_MODE] - Default scale mode, linear, nearest\n * @param {PIXI.FORMATS} [options.format=PIXI.FORMATS.RGBA] - GL format type\n * @param {PIXI.TYPES} [options.type=PIXI.TYPES.UNSIGNED_BYTE] - GL data type\n * @param {PIXI.TARGETS} [options.target=PIXI.TARGETS.TEXTURE_2D] - GL texture target\n * @param {boolean} [options.premultiplyAlpha=true] - Pre multiply the image alpha\n * @param {number} [options.width=0] - Width of the texture\n * @param {number} [options.height=0] - Height of the texture\n * @param {number} [options.resolution] - Resolution of the base texture\n * @param {object} [options.resourceOptions] - Optional resource options,\n * see {@link PIXI.resources.autoDetectResource autoDetectResource}\n */\nvar BaseTexture = /*@__PURE__*/(function (EventEmitter) {\n function BaseTexture(resource, options)\n {\n if ( resource === void 0 ) resource = null;\n if ( options === void 0 ) options = null;\n\n EventEmitter.call(this);\n\n options = options || {};\n\n var premultiplyAlpha = options.premultiplyAlpha;\n var mipmap = options.mipmap;\n var anisotropicLevel = options.anisotropicLevel;\n var scaleMode = options.scaleMode;\n var width = options.width;\n var height = options.height;\n var wrapMode = options.wrapMode;\n var format = options.format;\n var type = options.type;\n var target = options.target;\n var resolution = options.resolution;\n var resourceOptions = options.resourceOptions;\n\n // Convert the resource to a Resource object\n if (resource && !(resource instanceof Resource))\n {\n resource = autoDetectResource(resource, resourceOptions);\n resource.internal = true;\n }\n\n /**\n * The width of the base texture set when the image has loaded\n *\n * @readonly\n * @member {number}\n */\n this.width = width || 0;\n\n /**\n * The height of the base texture set when the image has loaded\n *\n * @readonly\n * @member {number}\n */\n this.height = height || 0;\n\n /**\n * The resolution / device pixel ratio of the texture\n *\n * @member {number}\n * @default PIXI.settings.RESOLUTION\n */\n this.resolution = resolution || settings.RESOLUTION;\n\n /**\n * Mipmap mode of the texture, affects downscaled images\n *\n * @member {PIXI.MIPMAP_MODES}\n * @default PIXI.settings.MIPMAP_TEXTURES\n */\n this.mipmap = mipmap !== undefined ? mipmap : settings.MIPMAP_TEXTURES;\n\n /**\n * Anisotropic filtering level of texture\n *\n * @member {number}\n * @default PIXI.settings.ANISOTROPIC_LEVEL\n */\n this.anisotropicLevel = anisotropicLevel !== undefined ? anisotropicLevel : settings.ANISOTROPIC_LEVEL;\n\n /**\n * How the texture wraps\n * @member {number}\n */\n this.wrapMode = wrapMode || settings.WRAP_MODE;\n\n /**\n * The scale mode to apply when scaling this texture\n *\n * @member {PIXI.SCALE_MODES}\n * @default PIXI.settings.SCALE_MODE\n */\n this.scaleMode = scaleMode !== undefined ? scaleMode : settings.SCALE_MODE;\n\n /**\n * The pixel format of the texture\n *\n * @member {PIXI.FORMATS}\n * @default PIXI.FORMATS.RGBA\n */\n this.format = format || FORMATS.RGBA;\n\n /**\n * The type of resource data\n *\n * @member {PIXI.TYPES}\n * @default PIXI.TYPES.UNSIGNED_BYTE\n */\n this.type = type || TYPES.UNSIGNED_BYTE;\n\n /**\n * The target type\n *\n * @member {PIXI.TARGETS}\n * @default PIXI.TARGETS.TEXTURE_2D\n */\n this.target = target || TARGETS.TEXTURE_2D;\n\n /**\n * Set to true to enable pre-multiplied alpha\n *\n * @member {boolean}\n * @default true\n */\n this.premultiplyAlpha = premultiplyAlpha !== false;\n\n /**\n * Global unique identifier for this BaseTexture\n *\n * @member {string}\n * @protected\n */\n this.uid = uid();\n\n /**\n * Used by automatic texture Garbage Collection, stores last GC tick when it was bound\n *\n * @member {number}\n * @protected\n */\n this.touched = 0;\n\n /**\n * Whether or not the texture is a power of two, try to use power of two textures as much\n * as you can\n *\n * @readonly\n * @member {boolean}\n * @default false\n */\n this.isPowerOfTwo = false;\n this._refreshPOT();\n\n /**\n * The map of render context textures where this is bound\n *\n * @member {Object}\n * @private\n */\n this._glTextures = {};\n\n /**\n * Used by TextureSystem to only update texture to the GPU when needed.\n * Please call `update()` to increment it.\n *\n * @readonly\n * @member {number}\n */\n this.dirtyId = 0;\n\n /**\n * Used by TextureSystem to only update texture style when needed.\n *\n * @protected\n * @member {number}\n */\n this.dirtyStyleId = 0;\n\n /**\n * Currently default cache ID.\n *\n * @member {string}\n */\n this.cacheId = null;\n\n /**\n * Generally speaking means when resource is loaded.\n * @readonly\n * @member {boolean}\n */\n this.valid = width > 0 && height > 0;\n\n /**\n * The collection of alternative cache ids, since some BaseTextures\n * can have more than one ID, short name and longer full URL\n *\n * @member {Array}\n * @readonly\n */\n this.textureCacheIds = [];\n\n /**\n * Flag if BaseTexture has been destroyed.\n *\n * @member {boolean}\n * @readonly\n */\n this.destroyed = false;\n\n /**\n * The resource used by this BaseTexture, there can only\n * be one resource per BaseTexture, but textures can share\n * resources.\n *\n * @member {PIXI.resources.Resource}\n * @readonly\n */\n this.resource = null;\n\n /**\n * Number of the texture batch, used by multi-texture renderers\n *\n * @member {number}\n */\n this._batchEnabled = 0;\n\n /**\n * Fired when a not-immediately-available source finishes loading.\n *\n * @protected\n * @event PIXI.BaseTexture#loaded\n * @param {PIXI.BaseTexture} baseTexture - Resource loaded.\n */\n\n /**\n * Fired when a not-immediately-available source fails to load.\n *\n * @protected\n * @event PIXI.BaseTexture#error\n * @param {PIXI.BaseTexture} baseTexture - Resource errored.\n * @param {ErrorEvent} event - Load error event.\n */\n\n /**\n * Fired when BaseTexture is updated.\n *\n * @protected\n * @event PIXI.BaseTexture#loaded\n * @param {PIXI.BaseTexture} baseTexture - Resource loaded.\n */\n\n /**\n * Fired when BaseTexture is updated.\n *\n * @protected\n * @event PIXI.BaseTexture#update\n * @param {PIXI.BaseTexture} baseTexture - Instance of texture being updated.\n */\n\n /**\n * Fired when BaseTexture is destroyed.\n *\n * @protected\n * @event PIXI.BaseTexture#dispose\n * @param {PIXI.BaseTexture} baseTexture - Instance of texture being destroyed.\n */\n\n // Set the resource\n this.setResource(resource);\n }\n\n if ( EventEmitter ) BaseTexture.__proto__ = EventEmitter;\n BaseTexture.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n BaseTexture.prototype.constructor = BaseTexture;\n\n var prototypeAccessors = { realWidth: { configurable: true },realHeight: { configurable: true } };\n\n /**\n * Pixel width of the source of this texture\n *\n * @readonly\n * @member {number}\n */\n prototypeAccessors.realWidth.get = function ()\n {\n return Math.ceil((this.width * this.resolution) - 1e-4);\n };\n\n /**\n * Pixel height of the source of this texture\n *\n * @readonly\n * @member {number}\n */\n prototypeAccessors.realHeight.get = function ()\n {\n return Math.ceil((this.height * this.resolution) - 1e-4);\n };\n\n /**\n * Changes style options of BaseTexture\n *\n * @param {PIXI.SCALE_MODES} [scaleMode] - Pixi scalemode\n * @param {PIXI.MIPMAP_MODES} [mipmap] - enable mipmaps\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setStyle = function setStyle (scaleMode, mipmap)\n {\n var dirty;\n\n if (scaleMode !== undefined && scaleMode !== this.scaleMode)\n {\n this.scaleMode = scaleMode;\n dirty = true;\n }\n\n if (mipmap !== undefined && mipmap !== this.mipmap)\n {\n this.mipmap = mipmap;\n dirty = true;\n }\n\n if (dirty)\n {\n this.dirtyStyleId++;\n }\n\n return this;\n };\n\n /**\n * Changes w/h/resolution. Texture becomes valid if width and height are greater than zero.\n *\n * @param {number} width Visual width\n * @param {number} height Visual height\n * @param {number} [resolution] Optionally set resolution\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setSize = function setSize (width, height, resolution)\n {\n this.resolution = resolution || this.resolution;\n this.width = width;\n this.height = height;\n this._refreshPOT();\n this.update();\n\n return this;\n };\n\n /**\n * Sets real size of baseTexture, preserves current resolution.\n *\n * @param {number} realWidth Full rendered width\n * @param {number} realHeight Full rendered height\n * @param {number} [resolution] Optionally set resolution\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setRealSize = function setRealSize (realWidth, realHeight, resolution)\n {\n this.resolution = resolution || this.resolution;\n this.width = realWidth / this.resolution;\n this.height = realHeight / this.resolution;\n this._refreshPOT();\n this.update();\n\n return this;\n };\n\n /**\n * Refresh check for isPowerOfTwo texture based on size\n *\n * @private\n */\n BaseTexture.prototype._refreshPOT = function _refreshPOT ()\n {\n this.isPowerOfTwo = isPow2(this.realWidth) && isPow2(this.realHeight);\n };\n\n /**\n * Changes resolution\n *\n * @param {number} [resolution] res\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setResolution = function setResolution (resolution)\n {\n var oldResolution = this.resolution;\n\n if (oldResolution === resolution)\n {\n return this;\n }\n\n this.resolution = resolution;\n\n if (this.valid)\n {\n this.width = this.width * oldResolution / resolution;\n this.height = this.height * oldResolution / resolution;\n this.emit('update', this);\n }\n\n this._refreshPOT();\n\n return this;\n };\n\n /**\n * Sets the resource if it wasn't set. Throws error if resource already present\n *\n * @param {PIXI.resources.Resource} resource - that is managing this BaseTexture\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setResource = function setResource (resource)\n {\n if (this.resource === resource)\n {\n return this;\n }\n\n if (this.resource)\n {\n throw new Error('Resource can be set only once');\n }\n\n resource.bind(this);\n\n this.resource = resource;\n\n return this;\n };\n\n /**\n * Invalidates the object. Texture becomes valid if width and height are greater than zero.\n */\n BaseTexture.prototype.update = function update ()\n {\n if (!this.valid)\n {\n if (this.width > 0 && this.height > 0)\n {\n this.valid = true;\n this.emit('loaded', this);\n this.emit('update', this);\n }\n }\n else\n {\n this.dirtyId++;\n this.dirtyStyleId++;\n this.emit('update', this);\n }\n };\n\n /**\n * Handle errors with resources.\n * @private\n * @param {ErrorEvent} event - Error event emitted.\n */\n BaseTexture.prototype.onError = function onError (event)\n {\n this.emit('error', this, event);\n };\n\n /**\n * Destroys this base texture.\n * The method stops if resource doesn't want this texture to be destroyed.\n * Removes texture from all caches.\n */\n BaseTexture.prototype.destroy = function destroy ()\n {\n // remove and destroy the resource\n if (this.resource)\n {\n this.resource.unbind(this);\n // only destroy resourced created internally\n if (this.resource.internal)\n {\n this.resource.destroy();\n }\n this.resource = null;\n }\n\n if (this.cacheId)\n {\n delete BaseTextureCache[this.cacheId];\n delete TextureCache[this.cacheId];\n\n this.cacheId = null;\n }\n\n // finally let the WebGL renderer know..\n this.dispose();\n\n BaseTexture.removeFromCache(this);\n this.textureCacheIds = null;\n\n this.destroyed = true;\n };\n\n /**\n * Frees the texture from WebGL memory without destroying this texture object.\n * This means you can still use the texture later which will upload it to GPU\n * memory again.\n *\n * @fires PIXI.BaseTexture#dispose\n */\n BaseTexture.prototype.dispose = function dispose ()\n {\n this.emit('dispose', this);\n };\n\n /**\n * Helper function that creates a base texture based on the source you provide.\n * The source can be - image url, image element, canvas element. If the\n * source is an image url or an image element and not in the base texture\n * cache, it will be created and loaded.\n *\n * @static\n * @param {string|HTMLImageElement|HTMLCanvasElement|SVGElement|HTMLVideoElement} source - The\n * source to create base texture from.\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @returns {PIXI.BaseTexture} The new base texture.\n */\n BaseTexture.from = function from (source, options)\n {\n var cacheId = null;\n\n if (typeof source === 'string')\n {\n cacheId = source;\n }\n else\n {\n if (!source._pixiId)\n {\n source._pixiId = \"pixiid_\" + (uid());\n }\n\n cacheId = source._pixiId;\n }\n\n var baseTexture = BaseTextureCache[cacheId];\n\n if (!baseTexture)\n {\n baseTexture = new BaseTexture(source, options);\n baseTexture.cacheId = cacheId;\n BaseTexture.addToCache(baseTexture, cacheId);\n }\n\n return baseTexture;\n };\n\n /**\n * Create a new BaseTexture with a BufferResource from a Float32Array.\n * RGBA values are floats from 0 to 1.\n * @static\n * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data\n * is provided, a new Float32Array is created.\n * @param {number} width - Width of the resource\n * @param {number} height - Height of the resource\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.BaseTexture} The resulting new BaseTexture\n */\n BaseTexture.fromBuffer = function fromBuffer (buffer, width, height, options)\n {\n buffer = buffer || new Float32Array(width * height * 4);\n\n var resource = new BufferResource(buffer, { width: width, height: height });\n var type = buffer instanceof Float32Array ? TYPES.FLOAT : TYPES.UNSIGNED_BYTE;\n\n return new BaseTexture(resource, Object.assign(defaultBufferOptions, options || { width: width, height: height, type: type }));\n };\n\n /**\n * Adds a BaseTexture to the global BaseTextureCache. This cache is shared across the whole PIXI object.\n *\n * @static\n * @param {PIXI.BaseTexture} baseTexture - The BaseTexture to add to the cache.\n * @param {string} id - The id that the BaseTexture will be stored against.\n */\n BaseTexture.addToCache = function addToCache (baseTexture, id)\n {\n if (id)\n {\n if (baseTexture.textureCacheIds.indexOf(id) === -1)\n {\n baseTexture.textureCacheIds.push(id);\n }\n\n if (BaseTextureCache[id])\n {\n // eslint-disable-next-line no-console\n console.warn((\"BaseTexture added to the cache with an id [\" + id + \"] that already had an entry\"));\n }\n\n BaseTextureCache[id] = baseTexture;\n }\n };\n\n /**\n * Remove a BaseTexture from the global BaseTextureCache.\n *\n * @static\n * @param {string|PIXI.BaseTexture} baseTexture - id of a BaseTexture to be removed, or a BaseTexture instance itself.\n * @return {PIXI.BaseTexture|null} The BaseTexture that was removed.\n */\n BaseTexture.removeFromCache = function removeFromCache (baseTexture)\n {\n if (typeof baseTexture === 'string')\n {\n var baseTextureFromCache = BaseTextureCache[baseTexture];\n\n if (baseTextureFromCache)\n {\n var index = baseTextureFromCache.textureCacheIds.indexOf(baseTexture);\n\n if (index > -1)\n {\n baseTextureFromCache.textureCacheIds.splice(index, 1);\n }\n\n delete BaseTextureCache[baseTexture];\n\n return baseTextureFromCache;\n }\n }\n else if (baseTexture && baseTexture.textureCacheIds)\n {\n for (var i = 0; i < baseTexture.textureCacheIds.length; ++i)\n {\n delete BaseTextureCache[baseTexture.textureCacheIds[i]];\n }\n\n baseTexture.textureCacheIds.length = 0;\n\n return baseTexture;\n }\n\n return null;\n };\n\n Object.defineProperties( BaseTexture.prototype, prototypeAccessors );\n\n return BaseTexture;\n}(EventEmitter));\n\n/**\n * Global number of the texture batch, used by multi-texture renderers\n *\n * @static\n * @member {number}\n */\nBaseTexture._globalBatch = 0;\n\n/**\n * A resource that contains a number of sources.\n *\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n * @param {number|Array<*>} source - Number of items in array or the collection\n * of image URLs to use. Can also be resources, image elements, canvas, etc.\n * @param {object} [options] Options to apply to {@link PIXI.resources.autoDetectResource}\n * @param {number} [options.width] - Width of the resource\n * @param {number} [options.height] - Height of the resource\n */\nvar ArrayResource = /*@__PURE__*/(function (Resource) {\n function ArrayResource(source, options)\n {\n options = options || {};\n\n var urls;\n var length = source;\n\n if (Array.isArray(source))\n {\n urls = source;\n length = source.length;\n }\n\n Resource.call(this, options.width, options.height);\n\n /**\n * Collection of resources.\n * @member {Array}\n * @readonly\n */\n this.items = [];\n\n /**\n * Dirty IDs for each part\n * @member {Array}\n * @readonly\n */\n this.itemDirtyIds = [];\n\n for (var i = 0; i < length; i++)\n {\n var partTexture = new BaseTexture();\n\n this.items.push(partTexture);\n this.itemDirtyIds.push(-1);\n }\n\n /**\n * Number of elements in array\n *\n * @member {number}\n * @readonly\n */\n this.length = length;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (urls)\n {\n for (var i$1 = 0; i$1 < length; i$1++)\n {\n this.addResourceAt(autoDetectResource(urls[i$1], options), i$1);\n }\n }\n }\n\n if ( Resource ) ArrayResource.__proto__ = Resource;\n ArrayResource.prototype = Object.create( Resource && Resource.prototype );\n ArrayResource.prototype.constructor = ArrayResource;\n\n /**\n * Destroy this BaseImageResource\n * @override\n */\n ArrayResource.prototype.dispose = function dispose ()\n {\n for (var i = 0, len = this.length; i < len; i++)\n {\n this.items[i].destroy();\n }\n this.items = null;\n this.itemDirtyIds = null;\n this._load = null;\n };\n\n /**\n * Set a resource by ID\n *\n * @param {PIXI.resources.Resource} resource\n * @param {number} index - Zero-based index of resource to set\n * @return {PIXI.resources.ArrayResource} Instance for chaining\n */\n ArrayResource.prototype.addResourceAt = function addResourceAt (resource, index)\n {\n var baseTexture = this.items[index];\n\n if (!baseTexture)\n {\n throw new Error((\"Index \" + index + \" is out of bounds\"));\n }\n\n // Inherit the first resource dimensions\n if (resource.valid && !this.valid)\n {\n this.resize(resource.width, resource.height);\n }\n\n this.items[index].setResource(resource);\n\n return this;\n };\n\n /**\n * Set the parent base texture\n * @member {PIXI.BaseTexture}\n * @override\n */\n ArrayResource.prototype.bind = function bind (baseTexture)\n {\n Resource.prototype.bind.call(this, baseTexture);\n\n baseTexture.target = TARGETS.TEXTURE_2D_ARRAY;\n\n for (var i = 0; i < this.length; i++)\n {\n this.items[i].on('update', baseTexture.update, baseTexture);\n }\n };\n\n /**\n * Unset the parent base texture\n * @member {PIXI.BaseTexture}\n * @override\n */\n ArrayResource.prototype.unbind = function unbind (baseTexture)\n {\n Resource.prototype.unbind.call(this, baseTexture);\n\n for (var i = 0; i < this.length; i++)\n {\n this.items[i].off('update', baseTexture.update, baseTexture);\n }\n };\n\n /**\n * Load all the resources simultaneously\n * @override\n * @return {Promise} When load is resolved\n */\n ArrayResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n var resources = this.items.map(function (item) { return item.resource; });\n\n // TODO: also implement load part-by-part strategy\n var promises = resources.map(function (item) { return item.load(); });\n\n this._load = Promise.all(promises)\n .then(function () {\n var ref = resources[0];\n var width = ref.width;\n var height = ref.height;\n\n this$1.resize(width, height);\n\n return Promise.resolve(this$1);\n }\n );\n\n return this._load;\n };\n\n /**\n * Upload the resources to the GPU.\n * @param {PIXI.Renderer} renderer\n * @param {PIXI.BaseTexture} texture\n * @param {PIXI.GLTexture} glTexture\n * @returns {boolean} whether texture was uploaded\n */\n ArrayResource.prototype.upload = function upload (renderer, texture, glTexture)\n {\n var ref = this;\n var length = ref.length;\n var itemDirtyIds = ref.itemDirtyIds;\n var items = ref.items;\n var gl = renderer.gl;\n\n if (glTexture.dirtyId < 0)\n {\n gl.texImage3D(\n gl.TEXTURE_2D_ARRAY,\n 0,\n texture.format,\n this._width,\n this._height,\n length,\n 0,\n texture.format,\n texture.type,\n null\n );\n }\n\n for (var i = 0; i < length; i++)\n {\n var item = items[i];\n\n if (itemDirtyIds[i] < item.dirtyId)\n {\n itemDirtyIds[i] = item.dirtyId;\n if (item.valid)\n {\n gl.texSubImage3D(\n gl.TEXTURE_2D_ARRAY,\n 0,\n 0, // xoffset\n 0, // yoffset\n i, // zoffset\n item.resource.width,\n item.resource.height,\n 1,\n texture.format,\n texture.type,\n item.resource.source\n );\n }\n }\n }\n\n return true;\n };\n\n return ArrayResource;\n}(Resource));\n\n/**\n * @interface OffscreenCanvas\n */\n\n/**\n * Resource type for HTMLCanvasElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {HTMLCanvasElement} source - Canvas element to use\n */\nvar CanvasResource = /*@__PURE__*/(function (BaseImageResource) {\n function CanvasResource () {\n BaseImageResource.apply(this, arguments);\n }\n\n if ( BaseImageResource ) CanvasResource.__proto__ = BaseImageResource;\n CanvasResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n CanvasResource.prototype.constructor = CanvasResource;\n\n CanvasResource.test = function test (source)\n {\n var OffscreenCanvas = window.OffscreenCanvas;\n\n // Check for browsers that don't yet support OffscreenCanvas\n if (OffscreenCanvas && source instanceof OffscreenCanvas)\n {\n return true;\n }\n\n return source instanceof HTMLCanvasElement;\n };\n\n return CanvasResource;\n}(BaseImageResource));\n\n/**\n * Resource for a CubeTexture which contains six resources.\n *\n * @class\n * @extends PIXI.resources.ArrayResource\n * @memberof PIXI.resources\n * @param {Array} [source] Collection of URLs or resources\n * to use as the sides of the cube.\n * @param {object} [options] - ImageResource options\n * @param {number} [options.width] - Width of resource\n * @param {number} [options.height] - Height of resource\n */\nvar CubeResource = /*@__PURE__*/(function (ArrayResource) {\n function CubeResource(source, options)\n {\n options = options || {};\n\n ArrayResource.call(this, source, options);\n\n if (this.length !== CubeResource.SIDES)\n {\n throw new Error((\"Invalid length. Got \" + (this.length) + \", expected 6\"));\n }\n\n for (var i = 0; i < CubeResource.SIDES; i++)\n {\n this.items[i].target = TARGETS.TEXTURE_CUBE_MAP_POSITIVE_X + i;\n }\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( ArrayResource ) CubeResource.__proto__ = ArrayResource;\n CubeResource.prototype = Object.create( ArrayResource && ArrayResource.prototype );\n CubeResource.prototype.constructor = CubeResource;\n\n /**\n * Add binding\n *\n * @override\n * @param {PIXI.BaseTexture} baseTexture - parent base texture\n */\n CubeResource.prototype.bind = function bind (baseTexture)\n {\n ArrayResource.prototype.bind.call(this, baseTexture);\n\n baseTexture.target = TARGETS.TEXTURE_CUBE_MAP;\n };\n\n /**\n * Upload the resource\n *\n * @returns {boolean} true is success\n */\n CubeResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var dirty = this.itemDirtyIds;\n\n for (var i = 0; i < CubeResource.SIDES; i++)\n {\n var side = this.items[i];\n\n if (dirty[i] < side.dirtyId)\n {\n dirty[i] = side.dirtyId;\n if (side.valid)\n {\n side.resource.upload(renderer, side, glTexture);\n }\n }\n }\n\n return true;\n };\n\n return CubeResource;\n}(ArrayResource));\n\n/**\n * Number of texture sides to store for CubeResources\n *\n * @name PIXI.resources.CubeResource.SIDES\n * @static\n * @member {number}\n * @default 6\n */\nCubeResource.SIDES = 6;\n\n/**\n * Resource type for SVG elements and graphics.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {string} source - Base64 encoded SVG element or URL for SVG file.\n * @param {object} [options] - Options to use\n * @param {number} [options.scale=1] Scale to apply to SVG. Overridden by...\n * @param {number} [options.width] Rasterize SVG this wide. Aspect ratio preserved if height not specified.\n * @param {number} [options.height] Rasterize SVG this high. Aspect ratio preserved if width not specified.\n * @param {boolean} [options.autoLoad=true] Start loading right away.\n */\nvar SVGResource = /*@__PURE__*/(function (BaseImageResource) {\n function SVGResource(source, options)\n {\n options = options || {};\n\n BaseImageResource.call(this, document.createElement('canvas'));\n this._width = 0;\n this._height = 0;\n\n /**\n * Base64 encoded SVG element or URL for SVG file\n * @readonly\n * @member {string}\n */\n this.svg = source;\n\n /**\n * The source scale to apply when rasterizing on load\n * @readonly\n * @member {number}\n */\n this.scale = options.scale || 1;\n\n /**\n * A width override for rasterization on load\n * @readonly\n * @member {number}\n */\n this._overrideWidth = options.width;\n\n /**\n * A height override for rasterization on load\n * @readonly\n * @member {number}\n */\n this._overrideHeight = options.height;\n\n /**\n * Call when completely loaded\n * @private\n * @member {function}\n */\n this._resolve = null;\n\n /**\n * Cross origin value to use\n * @private\n * @member {boolean|string}\n */\n this._crossorigin = options.crossorigin;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) SVGResource.__proto__ = BaseImageResource;\n SVGResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n SVGResource.prototype.constructor = SVGResource;\n\n SVGResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n this._load = new Promise(function (resolve) {\n // Save this until after load is finished\n this$1._resolve = function () {\n this$1.resize(this$1.source.width, this$1.source.height);\n resolve(this$1);\n };\n\n // Convert SVG inline string to data-uri\n if ((/^\\]*(?:\\s(width|height)=('|\")(\\d*(?:\\.\\d+)?)(?:px)?('|\"))[^>]*(?:\\s(width|height)=('|\")(\\d*(?:\\.\\d+)?)(?:px)?('|\"))[^>]*>/i; // eslint-disable-line max-len\n\n/**\n * Resource type for HTMLVideoElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {HTMLVideoElement|object|string|Array} source - Video element to use.\n * @param {object} [options] - Options to use\n * @param {boolean} [options.autoLoad=true] - Start loading the video immediately\n * @param {boolean} [options.autoPlay=true] - Start playing video immediately\n * @param {number} [options.updateFPS=0] - How many times a second to update the texture from the video.\n * Leave at 0 to update at every render.\n * @param {boolean} [options.crossorigin=true] - Load image using cross origin\n */\nvar VideoResource = /*@__PURE__*/(function (BaseImageResource) {\n function VideoResource(source, options)\n {\n options = options || {};\n\n if (!(source instanceof HTMLVideoElement))\n {\n var videoElement = document.createElement('video');\n\n // workaround for https://github.com/pixijs/pixi.js/issues/5996\n videoElement.setAttribute('preload', 'auto');\n videoElement.setAttribute('webkit-playsinline', '');\n videoElement.setAttribute('playsinline', '');\n\n if (typeof source === 'string')\n {\n source = [source];\n }\n\n BaseImageResource.crossOrigin(videoElement, (source[0].src || source[0]), options.crossorigin);\n\n // array of objects or strings\n for (var i = 0; i < source.length; ++i)\n {\n var sourceElement = document.createElement('source');\n\n var ref = source[i];\n var src = ref.src;\n var mime = ref.mime;\n\n src = src || source[i];\n\n var baseSrc = src.split('?').shift().toLowerCase();\n var ext = baseSrc.substr(baseSrc.lastIndexOf('.') + 1);\n\n mime = mime || (\"video/\" + ext);\n\n sourceElement.src = src;\n sourceElement.type = mime;\n\n videoElement.appendChild(sourceElement);\n }\n\n // Override the source\n source = videoElement;\n }\n\n BaseImageResource.call(this, source);\n\n this.noSubImage = true;\n this._autoUpdate = true;\n this._isAutoUpdating = false;\n this._updateFPS = options.updateFPS || 0;\n this._msToNextUpdate = 0;\n\n /**\n * When set to true will automatically play videos used by this texture once\n * they are loaded. If false, it will not modify the playing state.\n *\n * @member {boolean}\n * @default true\n */\n this.autoPlay = options.autoPlay !== false;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n /**\n * Callback when completed with load.\n * @member {function}\n * @private\n */\n this._resolve = null;\n\n // Bind for listeners\n this._onCanPlay = this._onCanPlay.bind(this);\n this._onError = this._onError.bind(this);\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) VideoResource.__proto__ = BaseImageResource;\n VideoResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n VideoResource.prototype.constructor = VideoResource;\n\n var prototypeAccessors = { autoUpdate: { configurable: true },updateFPS: { configurable: true } };\n\n /**\n * Trigger updating of the texture\n *\n * @param {number} [deltaTime=0] - time delta since last tick\n */\n VideoResource.prototype.update = function update (deltaTime)\n {\n if ( deltaTime === void 0 ) deltaTime = 0;\n\n if (!this.destroyed)\n {\n // account for if video has had its playbackRate changed\n var elapsedMS = Ticker.shared.elapsedMS * this.source.playbackRate;\n\n this._msToNextUpdate = Math.floor(this._msToNextUpdate - elapsedMS);\n if (!this._updateFPS || this._msToNextUpdate <= 0)\n {\n BaseImageResource.prototype.update.call(this, deltaTime);\n this._msToNextUpdate = this._updateFPS ? Math.floor(1000 / this._updateFPS) : 0;\n }\n }\n };\n\n /**\n * Start preloading the video resource.\n *\n * @protected\n * @return {Promise} Handle the validate event\n */\n VideoResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n var source = this.source;\n\n if ((source.readyState === source.HAVE_ENOUGH_DATA || source.readyState === source.HAVE_FUTURE_DATA)\n && source.width && source.height)\n {\n source.complete = true;\n }\n\n source.addEventListener('play', this._onPlayStart.bind(this));\n source.addEventListener('pause', this._onPlayStop.bind(this));\n\n if (!this._isSourceReady())\n {\n source.addEventListener('canplay', this._onCanPlay);\n source.addEventListener('canplaythrough', this._onCanPlay);\n source.addEventListener('error', this._onError, true);\n }\n else\n {\n this._onCanPlay();\n }\n\n this._load = new Promise(function (resolve) {\n if (this$1.valid)\n {\n resolve(this$1);\n }\n else\n {\n this$1._resolve = resolve;\n\n source.load();\n }\n });\n\n return this._load;\n };\n\n /**\n * Handle video error events.\n *\n * @private\n */\n VideoResource.prototype._onError = function _onError ()\n {\n this.source.removeEventListener('error', this._onError, true);\n this.onError.run(event);\n };\n\n /**\n * Returns true if the underlying source is playing.\n *\n * @private\n * @return {boolean} True if playing.\n */\n VideoResource.prototype._isSourcePlaying = function _isSourcePlaying ()\n {\n var source = this.source;\n\n return (source.currentTime > 0 && source.paused === false && source.ended === false && source.readyState > 2);\n };\n\n /**\n * Returns true if the underlying source is ready for playing.\n *\n * @private\n * @return {boolean} True if ready.\n */\n VideoResource.prototype._isSourceReady = function _isSourceReady ()\n {\n return this.source.readyState === 3 || this.source.readyState === 4;\n };\n\n /**\n * Runs the update loop when the video is ready to play\n *\n * @private\n */\n VideoResource.prototype._onPlayStart = function _onPlayStart ()\n {\n // Just in case the video has not received its can play even yet..\n if (!this.valid)\n {\n this._onCanPlay();\n }\n\n if (!this._isAutoUpdating && this.autoUpdate)\n {\n Ticker.shared.add(this.update, this);\n this._isAutoUpdating = true;\n }\n };\n\n /**\n * Fired when a pause event is triggered, stops the update loop\n *\n * @private\n */\n VideoResource.prototype._onPlayStop = function _onPlayStop ()\n {\n if (this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n this._isAutoUpdating = false;\n }\n };\n\n /**\n * Fired when the video is loaded and ready to play\n *\n * @private\n */\n VideoResource.prototype._onCanPlay = function _onCanPlay ()\n {\n var ref = this;\n var source = ref.source;\n\n source.removeEventListener('canplay', this._onCanPlay);\n source.removeEventListener('canplaythrough', this._onCanPlay);\n\n var valid = this.valid;\n\n this.resize(source.videoWidth, source.videoHeight);\n\n // prevent multiple loaded dispatches..\n if (!valid && this._resolve)\n {\n this._resolve(this);\n this._resolve = null;\n }\n\n if (this._isSourcePlaying())\n {\n this._onPlayStart();\n }\n else if (this.autoPlay)\n {\n source.play();\n }\n };\n\n /**\n * Destroys this texture\n * @override\n */\n VideoResource.prototype.dispose = function dispose ()\n {\n if (this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n }\n\n if (this.source)\n {\n this.source.removeEventListener('error', this._onError, true);\n this.source.pause();\n this.source.src = '';\n this.source.load();\n }\n BaseImageResource.prototype.dispose.call(this);\n };\n\n /**\n * Should the base texture automatically update itself, set to true by default\n *\n * @member {boolean}\n */\n prototypeAccessors.autoUpdate.get = function ()\n {\n return this._autoUpdate;\n };\n\n prototypeAccessors.autoUpdate.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (value !== this._autoUpdate)\n {\n this._autoUpdate = value;\n\n if (!this._autoUpdate && this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n this._isAutoUpdating = false;\n }\n else if (this._autoUpdate && !this._isAutoUpdating)\n {\n Ticker.shared.add(this.update, this);\n this._isAutoUpdating = true;\n }\n }\n };\n\n /**\n * How many times a second to update the texture from the video. Leave at 0 to update at every render.\n * A lower fps can help performance, as updating the texture at 60fps on a 30ps video may not be efficient.\n *\n * @member {number}\n */\n prototypeAccessors.updateFPS.get = function ()\n {\n return this._updateFPS;\n };\n\n prototypeAccessors.updateFPS.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (value !== this._updateFPS)\n {\n this._updateFPS = value;\n }\n };\n\n /**\n * Used to auto-detect the type of resource.\n *\n * @static\n * @param {*} source - The source object\n * @param {string} extension - The extension of source, if set\n * @return {boolean} `true` if video source\n */\n VideoResource.test = function test (source, extension)\n {\n return (source instanceof HTMLVideoElement)\n || VideoResource.TYPES.indexOf(extension) > -1;\n };\n\n Object.defineProperties( VideoResource.prototype, prototypeAccessors );\n\n return VideoResource;\n}(BaseImageResource));\n\n/**\n * List of common video file extensions supported by VideoResource.\n * @constant\n * @member {Array}\n * @static\n * @readonly\n */\nVideoResource.TYPES = ['mp4', 'm4v', 'webm', 'ogg', 'ogv', 'h264', 'avi', 'mov'];\n\n/**\n * Resource type for ImageBitmap.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {ImageBitmap} source - Image element to use\n */\nvar ImageBitmapResource = /*@__PURE__*/(function (BaseImageResource) {\n function ImageBitmapResource () {\n BaseImageResource.apply(this, arguments);\n }\n\n if ( BaseImageResource ) ImageBitmapResource.__proto__ = BaseImageResource;\n ImageBitmapResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n ImageBitmapResource.prototype.constructor = ImageBitmapResource;\n\n ImageBitmapResource.test = function test (source)\n {\n return !!window.createImageBitmap && source instanceof ImageBitmap;\n };\n\n return ImageBitmapResource;\n}(BaseImageResource));\n\nINSTALLED.push(\n ImageResource,\n ImageBitmapResource,\n CanvasResource,\n VideoResource,\n SVGResource,\n BufferResource,\n CubeResource,\n ArrayResource\n);\n\nvar index = ({\n INSTALLED: INSTALLED,\n autoDetectResource: autoDetectResource,\n ArrayResource: ArrayResource,\n BufferResource: BufferResource,\n CanvasResource: CanvasResource,\n CubeResource: CubeResource,\n ImageResource: ImageResource,\n ImageBitmapResource: ImageBitmapResource,\n SVGResource: SVGResource,\n VideoResource: VideoResource,\n Resource: Resource,\n BaseImageResource: BaseImageResource\n});\n\n/**\n * System is a base class used for extending systems used by the {@link PIXI.Renderer}\n *\n * @see PIXI.Renderer#addSystem\n * @class\n * @memberof PIXI\n */\nvar System = function System(renderer)\n{\n /**\n * The renderer this manager works for.\n *\n * @member {PIXI.Renderer}\n */\n this.renderer = renderer;\n};\n\n/**\n * Generic destroy methods to be overridden by the subclass\n */\nSystem.prototype.destroy = function destroy ()\n{\n this.renderer = null;\n};\n\n/**\n * Resource type for DepthTexture.\n * @class\n * @extends PIXI.resources.BufferResource\n * @memberof PIXI.resources\n */\nvar DepthResource = /*@__PURE__*/(function (BufferResource) {\n function DepthResource () {\n BufferResource.apply(this, arguments);\n }\n\n if ( BufferResource ) DepthResource.__proto__ = BufferResource;\n DepthResource.prototype = Object.create( BufferResource && BufferResource.prototype );\n DepthResource.prototype.constructor = DepthResource;\n\n DepthResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var gl = renderer.gl;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height)\n {\n gl.texSubImage2D(\n baseTexture.target,\n 0,\n 0,\n 0,\n baseTexture.width,\n baseTexture.height,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n else\n {\n glTexture.width = baseTexture.width;\n glTexture.height = baseTexture.height;\n\n gl.texImage2D(\n baseTexture.target,\n 0,\n gl.DEPTH_COMPONENT16, // Needed for depth to render properly in webgl2.0\n baseTexture.width,\n baseTexture.height,\n 0,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n\n return true;\n };\n\n return DepthResource;\n}(BufferResource));\n\n/**\n * Frame buffer used by the BaseRenderTexture\n *\n * @class\n * @memberof PIXI\n */\nvar Framebuffer = function Framebuffer(width, height)\n{\n this.width = Math.ceil(width || 100);\n this.height = Math.ceil(height || 100);\n\n this.stencil = false;\n this.depth = false;\n\n this.dirtyId = 0;\n this.dirtyFormat = 0;\n this.dirtySize = 0;\n\n this.depthTexture = null;\n this.colorTextures = [];\n\n this.glFramebuffers = {};\n\n this.disposeRunner = new Runner('disposeFramebuffer', 2);\n};\n\nvar prototypeAccessors$1 = { colorTexture: { configurable: true } };\n\n/**\n * Reference to the colorTexture.\n *\n * @member {PIXI.Texture[]}\n * @readonly\n */\nprototypeAccessors$1.colorTexture.get = function ()\n{\n return this.colorTextures[0];\n};\n\n/**\n * Add texture to the colorTexture array\n *\n * @param {number} [index=0] - Index of the array to add the texture to\n * @param {PIXI.Texture} [texture] - Texture to add to the array\n */\nFramebuffer.prototype.addColorTexture = function addColorTexture (index, texture)\n{\n if ( index === void 0 ) index = 0;\n\n // TODO add some validation to the texture - same width / height etc?\n this.colorTextures[index] = texture || new BaseTexture(null, { scaleMode: 0,\n resolution: 1,\n mipmap: false,\n width: this.width,\n height: this.height });// || new Texture();\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Add a depth texture to the frame buffer\n *\n * @param {PIXI.Texture} [texture] - Texture to add\n */\nFramebuffer.prototype.addDepthTexture = function addDepthTexture (texture)\n{\n /* eslint-disable max-len */\n this.depthTexture = texture || new BaseTexture(new DepthResource(null, { width: this.width, height: this.height }), { scaleMode: 0,\n resolution: 1,\n width: this.width,\n height: this.height,\n mipmap: false,\n format: FORMATS.DEPTH_COMPONENT,\n type: TYPES.UNSIGNED_SHORT });// UNSIGNED_SHORT;\n /* eslint-disable max-len */\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Enable depth on the frame buffer\n */\nFramebuffer.prototype.enableDepth = function enableDepth ()\n{\n this.depth = true;\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Enable stencil on the frame buffer\n */\nFramebuffer.prototype.enableStencil = function enableStencil ()\n{\n this.stencil = true;\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Resize the frame buffer\n *\n * @param {number} width - Width of the frame buffer to resize to\n * @param {number} height - Height of the frame buffer to resize to\n */\nFramebuffer.prototype.resize = function resize (width, height)\n{\n width = Math.ceil(width);\n height = Math.ceil(height);\n\n if (width === this.width && height === this.height) { return; }\n\n this.width = width;\n this.height = height;\n\n this.dirtyId++;\n this.dirtySize++;\n\n for (var i = 0; i < this.colorTextures.length; i++)\n {\n var texture = this.colorTextures[i];\n var resolution = texture.resolution;\n\n // take into acount the fact the texture may have a different resolution..\n texture.setSize(width / resolution, height / resolution);\n }\n\n if (this.depthTexture)\n {\n var resolution$1 = this.depthTexture.resolution;\n\n this.depthTexture.setSize(width / resolution$1, height / resolution$1);\n }\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nFramebuffer.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\nObject.defineProperties( Framebuffer.prototype, prototypeAccessors$1 );\n\n/**\n * A BaseRenderTexture is a special texture that allows any PixiJS display object to be rendered to it.\n *\n * __Hint__: All DisplayObjects (i.e. Sprites) that render to a BaseRenderTexture should be preloaded\n * otherwise black rectangles will be drawn instead.\n *\n * A BaseRenderTexture takes a snapshot of any Display Object given to its render method. The position\n * and rotation of the given Display Objects is ignored. For example:\n *\n * ```js\n * let renderer = PIXI.autoDetectRenderer();\n * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 800, height: 600 });\n * let renderTexture = new PIXI.RenderTexture(baseRenderTexture);\n * let sprite = PIXI.Sprite.from(\"spinObj_01.png\");\n *\n * sprite.position.x = 800/2;\n * sprite.position.y = 600/2;\n * sprite.anchor.x = 0.5;\n * sprite.anchor.y = 0.5;\n *\n * renderer.render(sprite, renderTexture);\n * ```\n *\n * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0\n * you can clear the transform\n *\n * ```js\n *\n * sprite.setTransform()\n *\n * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 100, height: 100 });\n * let renderTexture = new PIXI.RenderTexture(baseRenderTexture);\n *\n * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture\n * ```\n *\n * @class\n * @extends PIXI.BaseTexture\n * @memberof PIXI\n */\nvar BaseRenderTexture = /*@__PURE__*/(function (BaseTexture) {\n function BaseRenderTexture(options)\n {\n if (typeof options === 'number')\n {\n /* eslint-disable prefer-rest-params */\n // Backward compatibility of signature\n var width$1 = arguments[0];\n var height$1 = arguments[1];\n var scaleMode = arguments[2];\n var resolution = arguments[3];\n\n options = { width: width$1, height: height$1, scaleMode: scaleMode, resolution: resolution };\n /* eslint-enable prefer-rest-params */\n }\n\n BaseTexture.call(this, null, options);\n\n var ref = options || {};\n var width = ref.width;\n var height = ref.height;\n\n // Set defaults\n this.mipmap = false;\n this.width = Math.ceil(width) || 100;\n this.height = Math.ceil(height) || 100;\n this.valid = true;\n\n /**\n * A reference to the canvas render target (we only need one as this can be shared across renderers)\n *\n * @protected\n * @member {object}\n */\n this._canvasRenderTarget = null;\n\n this.clearColor = [0, 0, 0, 0];\n\n this.framebuffer = new Framebuffer(this.width * this.resolution, this.height * this.resolution)\n .addColorTexture(0, this);\n\n // TODO - could this be added the systems?\n\n /**\n * The data structure for the stencil masks.\n *\n * @member {PIXI.Graphics[]}\n */\n this.stencilMaskStack = [];\n\n /**\n * The data structure for the filters.\n *\n * @member {PIXI.Graphics[]}\n */\n this.filterStack = [{}];\n }\n\n if ( BaseTexture ) BaseRenderTexture.__proto__ = BaseTexture;\n BaseRenderTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype );\n BaseRenderTexture.prototype.constructor = BaseRenderTexture;\n\n /**\n * Resizes the BaseRenderTexture.\n *\n * @param {number} width - The width to resize to.\n * @param {number} height - The height to resize to.\n */\n BaseRenderTexture.prototype.resize = function resize (width, height)\n {\n width = Math.ceil(width);\n height = Math.ceil(height);\n this.framebuffer.resize(width * this.resolution, height * this.resolution);\n };\n\n /**\n * Frees the texture and framebuffer from WebGL memory without destroying this texture object.\n * This means you can still use the texture later which will upload it to GPU\n * memory again.\n *\n * @fires PIXI.BaseTexture#dispose\n */\n BaseRenderTexture.prototype.dispose = function dispose ()\n {\n this.framebuffer.dispose();\n\n BaseTexture.prototype.dispose.call(this);\n };\n\n /**\n * Destroys this texture.\n *\n */\n BaseRenderTexture.prototype.destroy = function destroy ()\n {\n BaseTexture.prototype.destroy.call(this, true);\n\n this.framebuffer = null;\n };\n\n return BaseRenderTexture;\n}(BaseTexture));\n\n/**\n * Stores a texture's frame in UV coordinates, in\n * which everything lies in the rectangle `[(0,0), (1,0),\n * (1,1), (0,1)]`.\n *\n * | Corner | Coordinates |\n * |--------------|-------------|\n * | Top-Left | `(x0,y0)` |\n * | Top-Right | `(x1,y1)` |\n * | Bottom-Right | `(x2,y2)` |\n * | Bottom-Left | `(x3,y3)` |\n *\n * @class\n * @protected\n * @memberof PIXI\n */\nvar TextureUvs = function TextureUvs()\n{\n /**\n * X-component of top-left corner `(x0,y0)`.\n *\n * @member {number}\n */\n this.x0 = 0;\n\n /**\n * Y-component of top-left corner `(x0,y0)`.\n *\n * @member {number}\n */\n this.y0 = 0;\n\n /**\n * X-component of top-right corner `(x1,y1)`.\n *\n * @member {number}\n */\n this.x1 = 1;\n\n /**\n * Y-component of top-right corner `(x1,y1)`.\n *\n * @member {number}\n */\n this.y1 = 0;\n\n /**\n * X-component of bottom-right corner `(x2,y2)`.\n *\n * @member {number}\n */\n this.x2 = 1;\n\n /**\n * Y-component of bottom-right corner `(x2,y2)`.\n *\n * @member {number}\n */\n this.y2 = 1;\n\n /**\n * X-component of bottom-left corner `(x3,y3)`.\n *\n * @member {number}\n */\n this.x3 = 0;\n\n /**\n * Y-component of bottom-right corner `(x3,y3)`.\n *\n * @member {number}\n */\n this.y3 = 1;\n\n this.uvsFloat32 = new Float32Array(8);\n};\n\n/**\n * Sets the texture Uvs based on the given frame information.\n *\n * @protected\n * @param {PIXI.Rectangle} frame - The frame of the texture\n * @param {PIXI.Rectangle} baseFrame - The base frame of the texture\n * @param {number} rotate - Rotation of frame, see {@link PIXI.GroupD8}\n */\nTextureUvs.prototype.set = function set (frame, baseFrame, rotate)\n{\n var tw = baseFrame.width;\n var th = baseFrame.height;\n\n if (rotate)\n {\n // width and height div 2 div baseFrame size\n var w2 = frame.width / 2 / tw;\n var h2 = frame.height / 2 / th;\n\n // coordinates of center\n var cX = (frame.x / tw) + w2;\n var cY = (frame.y / th) + h2;\n\n rotate = GroupD8.add(rotate, GroupD8.NW); // NW is top-left corner\n this.x0 = cX + (w2 * GroupD8.uX(rotate));\n this.y0 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2); // rotate 90 degrees clockwise\n this.x1 = cX + (w2 * GroupD8.uX(rotate));\n this.y1 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2);\n this.x2 = cX + (w2 * GroupD8.uX(rotate));\n this.y2 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2);\n this.x3 = cX + (w2 * GroupD8.uX(rotate));\n this.y3 = cY + (h2 * GroupD8.uY(rotate));\n }\n else\n {\n this.x0 = frame.x / tw;\n this.y0 = frame.y / th;\n\n this.x1 = (frame.x + frame.width) / tw;\n this.y1 = frame.y / th;\n\n this.x2 = (frame.x + frame.width) / tw;\n this.y2 = (frame.y + frame.height) / th;\n\n this.x3 = frame.x / tw;\n this.y3 = (frame.y + frame.height) / th;\n }\n\n this.uvsFloat32[0] = this.x0;\n this.uvsFloat32[1] = this.y0;\n this.uvsFloat32[2] = this.x1;\n this.uvsFloat32[3] = this.y1;\n this.uvsFloat32[4] = this.x2;\n this.uvsFloat32[5] = this.y2;\n this.uvsFloat32[6] = this.x3;\n this.uvsFloat32[7] = this.y3;\n};\n\nvar DEFAULT_UVS = new TextureUvs();\n\n/**\n * A texture stores the information that represents an image or part of an image.\n *\n * It cannot be added to the display list directly; instead use it as the texture for a Sprite.\n * If no frame is provided for a texture, then the whole image is used.\n *\n * You can directly create a texture from an image and then reuse it multiple times like this :\n *\n * ```js\n * let texture = PIXI.Texture.from('assets/image.png');\n * let sprite1 = new PIXI.Sprite(texture);\n * let sprite2 = new PIXI.Sprite(texture);\n * ```\n *\n * If you didnt pass the texture frame to constructor, it enables `noFrame` mode:\n * it subscribes on baseTexture events, it automatically resizes at the same time as baseTexture.\n *\n * Textures made from SVGs, loaded or not, cannot be used before the file finishes processing.\n * You can check for this by checking the sprite's _textureID property.\n * ```js\n * var texture = PIXI.Texture.from('assets/image.svg');\n * var sprite1 = new PIXI.Sprite(texture);\n * //sprite1._textureID should not be undefined if the texture has finished processing the SVG file\n * ```\n * You can use a ticker or rAF to ensure your sprites load the finished textures after processing. See issue #3068.\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar Texture = /*@__PURE__*/(function (EventEmitter) {\n function Texture(baseTexture, frame, orig, trim, rotate, anchor)\n {\n EventEmitter.call(this);\n\n /**\n * Does this Texture have any frame data assigned to it?\n *\n * This mode is enabled automatically if no frame was passed inside constructor.\n *\n * In this mode texture is subscribed to baseTexture events, and fires `update` on any change.\n *\n * Beware, after loading or resize of baseTexture event can fired two times!\n * If you want more control, subscribe on baseTexture itself.\n *\n * ```js\n * texture.on('update', () => {});\n * ```\n *\n * Any assignment of `frame` switches off `noFrame` mode.\n *\n * @member {boolean}\n */\n this.noFrame = false;\n\n if (!frame)\n {\n this.noFrame = true;\n frame = new Rectangle(0, 0, 1, 1);\n }\n\n if (baseTexture instanceof Texture)\n {\n baseTexture = baseTexture.baseTexture;\n }\n\n /**\n * The base texture that this texture uses.\n *\n * @member {PIXI.BaseTexture}\n */\n this.baseTexture = baseTexture;\n\n /**\n * This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering,\n * irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases)\n *\n * @member {PIXI.Rectangle}\n */\n this._frame = frame;\n\n /**\n * This is the trimmed area of original texture, before it was put in atlas\n * Please call `updateUvs()` after you change coordinates of `trim` manually.\n *\n * @member {PIXI.Rectangle}\n */\n this.trim = trim;\n\n /**\n * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered.\n *\n * @member {boolean}\n */\n this.valid = false;\n\n /**\n * This will let a renderer know that a texture has been updated (used mainly for WebGL uv updates)\n *\n * @member {boolean}\n */\n this.requiresUpdate = false;\n\n /**\n * The WebGL UV data cache. Can be used as quad UV\n *\n * @member {PIXI.TextureUvs}\n * @protected\n */\n this._uvs = DEFAULT_UVS;\n\n /**\n * Default TextureMatrix instance for this texture\n * By default that object is not created because its heavy\n *\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = null;\n\n /**\n * This is the area of original texture, before it was put in atlas\n *\n * @member {PIXI.Rectangle}\n */\n this.orig = orig || frame;// new Rectangle(0, 0, 1, 1);\n\n this._rotate = Number(rotate || 0);\n\n if (rotate === true)\n {\n // this is old texturepacker legacy, some games/libraries are passing \"true\" for rotated textures\n this._rotate = 2;\n }\n else if (this._rotate % 2 !== 0)\n {\n throw new Error('attempt to use diamond-shaped UVs. If you are sure, set rotation manually');\n }\n\n /**\n * Anchor point that is used as default if sprite is created with this texture.\n * Changing the `defaultAnchor` at a later point of time will not update Sprite's anchor point.\n * @member {PIXI.Point}\n * @default {0,0}\n */\n this.defaultAnchor = anchor ? new Point(anchor.x, anchor.y) : new Point(0, 0);\n\n /**\n * Update ID is observed by sprites and TextureMatrix instances.\n * Call updateUvs() to increment it.\n *\n * @member {number}\n * @protected\n */\n\n this._updateID = 0;\n\n /**\n * The ids under which this Texture has been added to the texture cache. This is\n * automatically set as long as Texture.addToCache is used, but may not be set if a\n * Texture is added directly to the TextureCache array.\n *\n * @member {string[]}\n */\n this.textureCacheIds = [];\n\n if (!baseTexture.valid)\n {\n baseTexture.once('loaded', this.onBaseTextureUpdated, this);\n }\n else if (this.noFrame)\n {\n // if there is no frame we should monitor for any base texture changes..\n if (baseTexture.valid)\n {\n this.onBaseTextureUpdated(baseTexture);\n }\n }\n else\n {\n this.frame = frame;\n }\n\n if (this.noFrame)\n {\n baseTexture.on('update', this.onBaseTextureUpdated, this);\n }\n }\n\n if ( EventEmitter ) Texture.__proto__ = EventEmitter;\n Texture.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n Texture.prototype.constructor = Texture;\n\n var prototypeAccessors = { resolution: { configurable: true },frame: { configurable: true },rotate: { configurable: true },width: { configurable: true },height: { configurable: true } };\n\n /**\n * Updates this texture on the gpu.\n *\n * Calls the TextureResource update.\n *\n * If you adjusted `frame` manually, please call `updateUvs()` instead.\n *\n */\n Texture.prototype.update = function update ()\n {\n if (this.baseTexture.resource)\n {\n this.baseTexture.resource.update();\n }\n };\n\n /**\n * Called when the base texture is updated\n *\n * @protected\n * @param {PIXI.BaseTexture} baseTexture - The base texture.\n */\n Texture.prototype.onBaseTextureUpdated = function onBaseTextureUpdated (baseTexture)\n {\n if (this.noFrame)\n {\n if (!this.baseTexture.valid)\n {\n return;\n }\n\n this._frame.width = baseTexture.width;\n this._frame.height = baseTexture.height;\n this.valid = true;\n this.updateUvs();\n }\n else\n {\n // TODO this code looks confusing.. boo to abusing getters and setters!\n // if user gave us frame that has bigger size than resized texture it can be a problem\n this.frame = this._frame;\n }\n\n this.emit('update', this);\n };\n\n /**\n * Destroys this texture\n *\n * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well\n */\n Texture.prototype.destroy = function destroy (destroyBase)\n {\n if (this.baseTexture)\n {\n if (destroyBase)\n {\n var ref = this.baseTexture;\n var resource = ref.resource;\n\n // delete the texture if it exists in the texture cache..\n // this only needs to be removed if the base texture is actually destroyed too..\n if (resource && TextureCache[resource.url])\n {\n Texture.removeFromCache(resource.url);\n }\n\n this.baseTexture.destroy();\n }\n\n this.baseTexture.off('update', this.onBaseTextureUpdated, this);\n\n this.baseTexture = null;\n }\n\n this._frame = null;\n this._uvs = null;\n this.trim = null;\n this.orig = null;\n\n this.valid = false;\n\n Texture.removeFromCache(this);\n this.textureCacheIds = null;\n };\n\n /**\n * Creates a new texture object that acts the same as this one.\n *\n * @return {PIXI.Texture} The new texture\n */\n Texture.prototype.clone = function clone ()\n {\n return new Texture(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor);\n };\n\n /**\n * Updates the internal WebGL UV cache. Use it after you change `frame` or `trim` of the texture.\n * Call it after changing the frame\n */\n Texture.prototype.updateUvs = function updateUvs ()\n {\n if (this._uvs === DEFAULT_UVS)\n {\n this._uvs = new TextureUvs();\n }\n\n this._uvs.set(this._frame, this.baseTexture, this.rotate);\n\n this._updateID++;\n };\n\n /**\n * Helper function that creates a new Texture based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|PIXI.BaseTexture} source\n * Source to create texture from\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Texture} The newly created texture\n */\n Texture.from = function from (source, options)\n {\n if ( options === void 0 ) options = {};\n\n var cacheId = null;\n\n if (typeof source === 'string')\n {\n cacheId = source;\n }\n else\n {\n if (!source._pixiId)\n {\n source._pixiId = \"pixiid_\" + (uid());\n }\n\n cacheId = source._pixiId;\n }\n\n var texture = TextureCache[cacheId];\n\n if (!texture)\n {\n if (!options.resolution)\n {\n options.resolution = getResolutionOfUrl(source);\n }\n\n texture = new Texture(new BaseTexture(source, options));\n texture.baseTexture.cacheId = cacheId;\n\n BaseTexture.addToCache(texture.baseTexture, cacheId);\n Texture.addToCache(texture, cacheId);\n }\n\n // lets assume its a base texture!\n return texture;\n };\n\n /**\n * Create a new Texture with a BufferResource from a Float32Array.\n * RGBA values are floats from 0 to 1.\n * @static\n * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data\n * is provided, a new Float32Array is created.\n * @param {number} width - Width of the resource\n * @param {number} height - Height of the resource\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Texture} The resulting new BaseTexture\n */\n Texture.fromBuffer = function fromBuffer (buffer, width, height, options)\n {\n return new Texture(BaseTexture.fromBuffer(buffer, width, height, options));\n };\n\n /**\n * Create a texture from a source and add to the cache.\n *\n * @static\n * @param {HTMLImageElement|HTMLCanvasElement} source - The input source.\n * @param {String} imageUrl - File name of texture, for cache and resolving resolution.\n * @param {String} [name] - Human readable name for the texture cache. If no name is\n * specified, only `imageUrl` will be used as the cache ID.\n * @return {PIXI.Texture} Output texture\n */\n Texture.fromLoader = function fromLoader (source, imageUrl, name)\n {\n var resource = new ImageResource(source);\n\n resource.url = imageUrl;\n\n var baseTexture = new BaseTexture(resource, {\n scaleMode: settings.SCALE_MODE,\n resolution: getResolutionOfUrl(imageUrl),\n });\n\n var texture = new Texture(baseTexture);\n\n // No name, use imageUrl instead\n if (!name)\n {\n name = imageUrl;\n }\n\n // lets also add the frame to pixi's global cache for 'fromLoader' function\n BaseTexture.addToCache(texture.baseTexture, name);\n Texture.addToCache(texture, name);\n\n // also add references by url if they are different.\n if (name !== imageUrl)\n {\n BaseTexture.addToCache(texture.baseTexture, imageUrl);\n Texture.addToCache(texture, imageUrl);\n }\n\n return texture;\n };\n\n /**\n * Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object.\n *\n * @static\n * @param {PIXI.Texture} texture - The Texture to add to the cache.\n * @param {string} id - The id that the Texture will be stored against.\n */\n Texture.addToCache = function addToCache (texture, id)\n {\n if (id)\n {\n if (texture.textureCacheIds.indexOf(id) === -1)\n {\n texture.textureCacheIds.push(id);\n }\n\n if (TextureCache[id])\n {\n // eslint-disable-next-line no-console\n console.warn((\"Texture added to the cache with an id [\" + id + \"] that already had an entry\"));\n }\n\n TextureCache[id] = texture;\n }\n };\n\n /**\n * Remove a Texture from the global TextureCache.\n *\n * @static\n * @param {string|PIXI.Texture} texture - id of a Texture to be removed, or a Texture instance itself\n * @return {PIXI.Texture|null} The Texture that was removed\n */\n Texture.removeFromCache = function removeFromCache (texture)\n {\n if (typeof texture === 'string')\n {\n var textureFromCache = TextureCache[texture];\n\n if (textureFromCache)\n {\n var index = textureFromCache.textureCacheIds.indexOf(texture);\n\n if (index > -1)\n {\n textureFromCache.textureCacheIds.splice(index, 1);\n }\n\n delete TextureCache[texture];\n\n return textureFromCache;\n }\n }\n else if (texture && texture.textureCacheIds)\n {\n for (var i = 0; i < texture.textureCacheIds.length; ++i)\n {\n // Check that texture matches the one being passed in before deleting it from the cache.\n if (TextureCache[texture.textureCacheIds[i]] === texture)\n {\n delete TextureCache[texture.textureCacheIds[i]];\n }\n }\n\n texture.textureCacheIds.length = 0;\n\n return texture;\n }\n\n return null;\n };\n\n /**\n * Returns resolution of baseTexture\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.resolution.get = function ()\n {\n return this.baseTexture.resolution;\n };\n\n /**\n * The frame specifies the region of the base texture that this texture uses.\n * Please call `updateUvs()` after you change coordinates of `frame` manually.\n *\n * @member {PIXI.Rectangle}\n */\n prototypeAccessors.frame.get = function ()\n {\n return this._frame;\n };\n\n prototypeAccessors.frame.set = function (frame) // eslint-disable-line require-jsdoc\n {\n this._frame = frame;\n\n this.noFrame = false;\n\n var x = frame.x;\n var y = frame.y;\n var width = frame.width;\n var height = frame.height;\n var xNotFit = x + width > this.baseTexture.width;\n var yNotFit = y + height > this.baseTexture.height;\n\n if (xNotFit || yNotFit)\n {\n var relationship = xNotFit && yNotFit ? 'and' : 'or';\n var errorX = \"X: \" + x + \" + \" + width + \" = \" + (x + width) + \" > \" + (this.baseTexture.width);\n var errorY = \"Y: \" + y + \" + \" + height + \" = \" + (y + height) + \" > \" + (this.baseTexture.height);\n\n throw new Error('Texture Error: frame does not fit inside the base Texture dimensions: '\n + errorX + \" \" + relationship + \" \" + errorY);\n }\n\n this.valid = width && height && this.baseTexture.valid;\n\n if (!this.trim && !this.rotate)\n {\n this.orig = frame;\n }\n\n if (this.valid)\n {\n this.updateUvs();\n }\n };\n\n /**\n * Indicates whether the texture is rotated inside the atlas\n * set to 2 to compensate for texture packer rotation\n * set to 6 to compensate for spine packer rotation\n * can be used to rotate or mirror sprites\n * See {@link PIXI.GroupD8} for explanation\n *\n * @member {number}\n */\n prototypeAccessors.rotate.get = function ()\n {\n return this._rotate;\n };\n\n prototypeAccessors.rotate.set = function (rotate) // eslint-disable-line require-jsdoc\n {\n this._rotate = rotate;\n if (this.valid)\n {\n this.updateUvs();\n }\n };\n\n /**\n * The width of the Texture in pixels.\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this.orig.width;\n };\n\n /**\n * The height of the Texture in pixels.\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this.orig.height;\n };\n\n Object.defineProperties( Texture.prototype, prototypeAccessors );\n\n return Texture;\n}(EventEmitter));\n\nfunction createWhiteTexture()\n{\n var canvas = document.createElement('canvas');\n\n canvas.width = 16;\n canvas.height = 16;\n\n var context = canvas.getContext('2d');\n\n context.fillStyle = 'white';\n context.fillRect(0, 0, 16, 16);\n\n return new Texture(new BaseTexture(new CanvasResource(canvas)));\n}\n\nfunction removeAllHandlers(tex)\n{\n tex.destroy = function _emptyDestroy() { /* empty */ };\n tex.on = function _emptyOn() { /* empty */ };\n tex.once = function _emptyOnce() { /* empty */ };\n tex.emit = function _emptyEmit() { /* empty */ };\n}\n\n/**\n * An empty texture, used often to not have to create multiple empty textures.\n * Can not be destroyed.\n *\n * @static\n * @constant\n * @member {PIXI.Texture}\n */\nTexture.EMPTY = new Texture(new BaseTexture());\nremoveAllHandlers(Texture.EMPTY);\nremoveAllHandlers(Texture.EMPTY.baseTexture);\n\n/**\n * A white texture of 16x16 size, used for graphics and other things\n * Can not be destroyed.\n *\n * @static\n * @constant\n * @member {PIXI.Texture}\n */\nTexture.WHITE = createWhiteTexture();\nremoveAllHandlers(Texture.WHITE);\nremoveAllHandlers(Texture.WHITE.baseTexture);\n\n/**\n * A RenderTexture is a special texture that allows any PixiJS display object to be rendered to it.\n *\n * __Hint__: All DisplayObjects (i.e. Sprites) that render to a RenderTexture should be preloaded\n * otherwise black rectangles will be drawn instead.\n *\n * __Hint-2__: The actual memory allocation will happen on first render.\n * You shouldn't create renderTextures each frame just to delete them after, try to reuse them.\n *\n * A RenderTexture takes a snapshot of any Display Object given to its render method. For example:\n *\n * ```js\n * let renderer = PIXI.autoDetectRenderer();\n * let renderTexture = PIXI.RenderTexture.create(800, 600);\n * let sprite = PIXI.Sprite.from(\"spinObj_01.png\");\n *\n * sprite.position.x = 800/2;\n * sprite.position.y = 600/2;\n * sprite.anchor.x = 0.5;\n * sprite.anchor.y = 0.5;\n *\n * renderer.render(sprite, renderTexture);\n * ```\n *\n * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0\n * you can clear the transform\n *\n * ```js\n *\n * sprite.setTransform()\n *\n * let renderTexture = new PIXI.RenderTexture.create(100, 100);\n *\n * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture\n * ```\n *\n * @class\n * @extends PIXI.Texture\n * @memberof PIXI\n */\nvar RenderTexture = /*@__PURE__*/(function (Texture) {\n function RenderTexture(baseRenderTexture, frame)\n {\n // support for legacy..\n var _legacyRenderer = null;\n\n if (!(baseRenderTexture instanceof BaseRenderTexture))\n {\n /* eslint-disable prefer-rest-params, no-console */\n var width = arguments[1];\n var height = arguments[2];\n var scaleMode = arguments[3];\n var resolution = arguments[4];\n\n // we have an old render texture..\n console.warn((\"Please use RenderTexture.create(\" + width + \", \" + height + \") instead of the ctor directly.\"));\n _legacyRenderer = arguments[0];\n /* eslint-enable prefer-rest-params, no-console */\n\n frame = null;\n baseRenderTexture = new BaseRenderTexture({\n width: width,\n height: height,\n scaleMode: scaleMode,\n resolution: resolution,\n });\n }\n\n /**\n * The base texture object that this texture uses\n *\n * @member {PIXI.BaseTexture}\n */\n Texture.call(this, baseRenderTexture, frame);\n\n this.legacyRenderer = _legacyRenderer;\n\n /**\n * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered.\n *\n * @member {boolean}\n */\n this.valid = true;\n\n /**\n * Stores `sourceFrame` when this texture is inside current filter stack.\n * You can read it inside filters.\n *\n * @readonly\n * @member {PIXI.Rectangle}\n */\n this.filterFrame = null;\n\n /**\n * The key for pooled texture of FilterSystem\n * @protected\n * @member {string}\n */\n this.filterPoolKey = null;\n\n this.updateUvs();\n }\n\n if ( Texture ) RenderTexture.__proto__ = Texture;\n RenderTexture.prototype = Object.create( Texture && Texture.prototype );\n RenderTexture.prototype.constructor = RenderTexture;\n\n /**\n * Resizes the RenderTexture.\n *\n * @param {number} width - The width to resize to.\n * @param {number} height - The height to resize to.\n * @param {boolean} [resizeBaseTexture=true] - Should the baseTexture.width and height values be resized as well?\n */\n RenderTexture.prototype.resize = function resize (width, height, resizeBaseTexture)\n {\n if ( resizeBaseTexture === void 0 ) resizeBaseTexture = true;\n\n width = Math.ceil(width);\n height = Math.ceil(height);\n\n // TODO - could be not required..\n this.valid = (width > 0 && height > 0);\n\n this._frame.width = this.orig.width = width;\n this._frame.height = this.orig.height = height;\n\n if (resizeBaseTexture)\n {\n this.baseTexture.resize(width, height);\n }\n\n this.updateUvs();\n };\n\n /**\n * Changes the resolution of baseTexture, but does not change framebuffer size.\n *\n * @param {number} resolution - The new resolution to apply to RenderTexture\n */\n RenderTexture.prototype.setResolution = function setResolution (resolution)\n {\n var ref = this;\n var baseTexture = ref.baseTexture;\n\n if (baseTexture.resolution === resolution)\n {\n return;\n }\n\n baseTexture.setResolution(resolution);\n this.resize(baseTexture.width, baseTexture.height, false);\n };\n\n /**\n * A short hand way of creating a render texture.\n *\n * @param {object} [options] - Options\n * @param {number} [options.width=100] - The width of the render texture\n * @param {number} [options.height=100] - The height of the render texture\n * @param {number} [options.scaleMode=PIXI.settings.SCALE_MODE] - See {@link PIXI.SCALE_MODES} for possible values\n * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the texture being generated\n * @return {PIXI.RenderTexture} The new render texture\n */\n RenderTexture.create = function create (options)\n {\n // fallback, old-style: create(width, height, scaleMode, resolution)\n if (typeof options === 'number')\n {\n /* eslint-disable prefer-rest-params */\n options = {\n width: options,\n height: arguments[1],\n scaleMode: arguments[2],\n resolution: arguments[3],\n };\n /* eslint-enable prefer-rest-params */\n }\n\n return new RenderTexture(new BaseRenderTexture(options));\n };\n\n return RenderTexture;\n}(Texture));\n\n/**\n * Experimental!\n *\n * Texture pool, used by FilterSystem and plugins\n * Stores collection of temporary pow2 or screen-sized renderTextures\n *\n * If you use custom RenderTexturePool for your filters, you can use methods\n * `getFilterTexture` and `returnFilterTexture` same as in\n *\n * @class\n * @memberof PIXI\n */\nvar RenderTexturePool = function RenderTexturePool(textureOptions)\n{\n this.texturePool = {};\n this.textureOptions = textureOptions || {};\n /**\n * Allow renderTextures of the same size as screen, not just pow2\n *\n * Automatically sets to true after `setScreenSize`\n *\n * @member {boolean}\n * @default false\n */\n this.enableFullScreen = false;\n\n this._pixelsWidth = 0;\n this._pixelsHeight = 0;\n};\n\n/**\n * creates of texture with params that were specified in pool constructor\n *\n * @param {number} realWidth width of texture in pixels\n * @param {number} realHeight height of texture in pixels\n * @returns {RenderTexture}\n */\nRenderTexturePool.prototype.createTexture = function createTexture (realWidth, realHeight)\n{\n var baseRenderTexture = new BaseRenderTexture(Object.assign({\n width: realWidth,\n height: realHeight,\n resolution: 1,\n }, this.textureOptions));\n\n return new RenderTexture(baseRenderTexture);\n};\n\n/**\n * Gets a Power-of-Two render texture or fullScreen texture\n *\n * @protected\n * @param {number} minWidth - The minimum width of the render texture in real pixels.\n * @param {number} minHeight - The minimum height of the render texture in real pixels.\n * @param {number} [resolution=1] - The resolution of the render texture.\n * @return {PIXI.RenderTexture} The new render texture.\n */\nRenderTexturePool.prototype.getOptimalTexture = function getOptimalTexture (minWidth, minHeight, resolution)\n{\n if ( resolution === void 0 ) resolution = 1;\n\n var key = RenderTexturePool.SCREEN_KEY;\n\n minWidth *= resolution;\n minHeight *= resolution;\n\n if (!this.enableFullScreen || minWidth !== this._pixelsWidth || minHeight !== this._pixelsHeight)\n {\n minWidth = nextPow2(minWidth);\n minHeight = nextPow2(minHeight);\n key = ((minWidth & 0xFFFF) << 16) | (minHeight & 0xFFFF);\n }\n\n if (!this.texturePool[key])\n {\n this.texturePool[key] = [];\n }\n\n var renderTexture = this.texturePool[key].pop();\n\n if (!renderTexture)\n {\n renderTexture = this.createTexture(minWidth, minHeight);\n }\n\n renderTexture.filterPoolKey = key;\n renderTexture.setResolution(resolution);\n\n return renderTexture;\n};\n\n/**\n * Gets extra texture of the same size as input renderTexture\n *\n * `getFilterTexture(input, 0.5)` or `getFilterTexture(0.5, input)`\n *\n * @param {PIXI.RenderTexture} input renderTexture from which size and resolution will be copied\n * @param {number} [resolution] override resolution of the renderTexture\n * It overrides, it does not multiply\n * @returns {PIXI.RenderTexture}\n */\nRenderTexturePool.prototype.getFilterTexture = function getFilterTexture (input, resolution)\n{\n var filterTexture = this.getOptimalTexture(input.width, input.height, resolution || input.resolution);\n\n filterTexture.filterFrame = input.filterFrame;\n\n return filterTexture;\n};\n\n/**\n * Place a render texture back into the pool.\n * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free\n */\nRenderTexturePool.prototype.returnTexture = function returnTexture (renderTexture)\n{\n var key = renderTexture.filterPoolKey;\n\n renderTexture.filterFrame = null;\n this.texturePool[key].push(renderTexture);\n};\n\n/**\n * Alias for returnTexture, to be compliant with FilterSystem interface\n * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free\n */\nRenderTexturePool.prototype.returnFilterTexture = function returnFilterTexture (renderTexture)\n{\n this.returnTexture(renderTexture);\n};\n\n/**\n * Clears the pool\n *\n * @param {boolean} [destroyTextures=true] destroy all stored textures\n */\nRenderTexturePool.prototype.clear = function clear (destroyTextures)\n{\n destroyTextures = destroyTextures !== false;\n if (destroyTextures)\n {\n for (var i in this.texturePool)\n {\n var textures = this.texturePool[i];\n\n if (textures)\n {\n for (var j = 0; j < textures.length; j++)\n {\n textures[j].destroy(true);\n }\n }\n }\n }\n\n this.texturePool = {};\n};\n\n/**\n * If screen size was changed, drops all screen-sized textures,\n * sets new screen size, sets `enableFullScreen` to true\n *\n * Size is measured in pixels, `renderer.view` can be passed here, not `renderer.screen`\n *\n * @param {PIXI.ISize} size - Initial size of screen\n */\nRenderTexturePool.prototype.setScreenSize = function setScreenSize (size)\n{\n if (size.width === this._pixelsWidth\n && size.height === this._pixelsHeight)\n {\n return;\n }\n\n var screenKey = RenderTexturePool.SCREEN_KEY;\n var textures = this.texturePool[screenKey];\n\n this.enableFullScreen = size.width > 0 && size.height > 0;\n\n if (textures)\n {\n for (var j = 0; j < textures.length; j++)\n {\n textures[j].destroy(true);\n }\n }\n this.texturePool[screenKey] = [];\n\n this._pixelsWidth = size.width;\n this._pixelsHeight = size.height;\n};\n\n/**\n * Key that is used to store fullscreen renderTextures in a pool\n *\n * @static\n * @const {string}\n */\nRenderTexturePool.SCREEN_KEY = 'screen';\n\n/* eslint-disable max-len */\n\n/**\n * Holds the information for a single attribute structure required to render geometry.\n *\n * This does not contain the actual data, but instead has a buffer id that maps to a {@link PIXI.Buffer}\n * This can include anything from positions, uvs, normals, colors etc.\n *\n * @class\n * @memberof PIXI\n */\nvar Attribute = function Attribute(buffer, size, normalized, type, stride, start, instance)\n{\n if ( normalized === void 0 ) normalized = false;\n if ( type === void 0 ) type = 5126;\n\n this.buffer = buffer;\n this.size = size;\n this.normalized = normalized;\n this.type = type;\n this.stride = stride;\n this.start = start;\n this.instance = instance;\n};\n\n/**\n * Destroys the Attribute.\n */\nAttribute.prototype.destroy = function destroy ()\n{\n this.buffer = null;\n};\n\n/**\n * Helper function that creates an Attribute based on the information provided\n *\n * @static\n * @param {string} buffer the id of the buffer that this attribute will look for\n * @param {Number} [size=2] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2\n * @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data)\n * @param {Number} [start=0] How far into the array to start reading values (used for interleaving data)\n * @param {Boolean} [normalized=false] should the data be normalized.\n *\n * @returns {PIXI.Attribute} A new {@link PIXI.Attribute} based on the information provided\n */\nAttribute.from = function from (buffer, size, normalized, type, stride)\n{\n return new Attribute(buffer, size, normalized, type, stride);\n};\n\nvar UID = 0;\n/* eslint-disable max-len */\n\n/**\n * A wrapper for data so that it can be used and uploaded by WebGL\n *\n * @class\n * @memberof PIXI\n */\nvar Buffer = function Buffer(data, _static, index)\n{\n if ( _static === void 0 ) _static = true;\n if ( index === void 0 ) index = false;\n\n /**\n * The data in the buffer, as a typed array\n *\n * @member {ArrayBuffer| SharedArrayBuffer|ArrayBufferView}\n */\n this.data = data || new Float32Array(1);\n\n /**\n * A map of renderer IDs to webgl buffer\n *\n * @private\n * @member {object}\n */\n this._glBuffers = {};\n\n this._updateID = 0;\n\n this.index = index;\n\n this.static = _static;\n\n this.id = UID++;\n\n this.disposeRunner = new Runner('disposeBuffer', 2);\n};\n\n// TODO could explore flagging only a partial upload?\n/**\n * flags this buffer as requiring an upload to the GPU\n * @param {ArrayBuffer|SharedArrayBuffer|ArrayBufferView} [data] the data to update in the buffer.\n */\nBuffer.prototype.update = function update (data)\n{\n this.data = data || this.data;\n this._updateID++;\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nBuffer.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\n/**\n * Destroys the buffer\n */\nBuffer.prototype.destroy = function destroy ()\n{\n this.dispose();\n\n this.data = null;\n};\n\n/**\n * Helper function that creates a buffer based on an array or TypedArray\n *\n * @static\n * @param {ArrayBufferView | number[]} data the TypedArray that the buffer will store. If this is a regular Array it will be converted to a Float32Array.\n * @return {PIXI.Buffer} A new Buffer based on the data provided.\n */\nBuffer.from = function from (data)\n{\n if (data instanceof Array)\n {\n data = new Float32Array(data);\n }\n\n return new Buffer(data);\n};\n\nfunction getBufferType(array)\n{\n if (array.BYTES_PER_ELEMENT === 4)\n {\n if (array instanceof Float32Array)\n {\n return 'Float32Array';\n }\n else if (array instanceof Uint32Array)\n {\n return 'Uint32Array';\n }\n\n return 'Int32Array';\n }\n else if (array.BYTES_PER_ELEMENT === 2)\n {\n if (array instanceof Uint16Array)\n {\n return 'Uint16Array';\n }\n }\n else if (array.BYTES_PER_ELEMENT === 1)\n {\n if (array instanceof Uint8Array)\n {\n return 'Uint8Array';\n }\n }\n\n // TODO map out the rest of the array elements!\n return null;\n}\n\n/* eslint-disable object-shorthand */\nvar map = {\n Float32Array: Float32Array,\n Uint32Array: Uint32Array,\n Int32Array: Int32Array,\n Uint8Array: Uint8Array,\n};\n\nfunction interleaveTypedArrays(arrays, sizes)\n{\n var outSize = 0;\n var stride = 0;\n var views = {};\n\n for (var i = 0; i < arrays.length; i++)\n {\n stride += sizes[i];\n outSize += arrays[i].length;\n }\n\n var buffer = new ArrayBuffer(outSize * 4);\n\n var out = null;\n var littleOffset = 0;\n\n for (var i$1 = 0; i$1 < arrays.length; i$1++)\n {\n var size = sizes[i$1];\n var array = arrays[i$1];\n\n var type = getBufferType(array);\n\n if (!views[type])\n {\n views[type] = new map[type](buffer);\n }\n\n out = views[type];\n\n for (var j = 0; j < array.length; j++)\n {\n var indexStart = ((j / size | 0) * stride) + littleOffset;\n var index = j % size;\n\n out[indexStart + index] = array[j];\n }\n\n littleOffset += size;\n }\n\n return new Float32Array(buffer);\n}\n\nvar byteSizeMap = { 5126: 4, 5123: 2, 5121: 1 };\nvar UID$1 = 0;\n\n/* eslint-disable object-shorthand */\nvar map$1 = {\n Float32Array: Float32Array,\n Uint32Array: Uint32Array,\n Int32Array: Int32Array,\n Uint8Array: Uint8Array,\n Uint16Array: Uint16Array,\n};\n\n/* eslint-disable max-len */\n\n/**\n * The Geometry represents a model. It consists of two components:\n * - GeometryStyle - The structure of the model such as the attributes layout\n * - GeometryData - the data of the model - this consists of buffers.\n * This can include anything from positions, uvs, normals, colors etc.\n *\n * Geometry can be defined without passing in a style or data if required (thats how I prefer!)\n *\n * ```js\n * let geometry = new PIXI.Geometry();\n *\n * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2);\n * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1],2)\n * geometry.addIndex([0,1,2,1,3,2])\n *\n * ```\n * @class\n * @memberof PIXI\n */\nvar Geometry = function Geometry(buffers, attributes)\n{\n if ( buffers === void 0 ) buffers = [];\n if ( attributes === void 0 ) attributes = {};\n\n this.buffers = buffers;\n\n this.indexBuffer = null;\n\n this.attributes = attributes;\n\n /**\n * A map of renderer IDs to webgl VAOs\n *\n * @protected\n * @type {object}\n */\n this.glVertexArrayObjects = {};\n\n this.id = UID$1++;\n\n this.instanced = false;\n\n /**\n * Number of instances in this geometry, pass it to `GeometrySystem.draw()`\n * @member {number}\n * @default 1\n */\n this.instanceCount = 1;\n\n this.disposeRunner = new Runner('disposeGeometry', 2);\n\n /**\n * Count of existing (not destroyed) meshes that reference this geometry\n * @member {number}\n */\n this.refCount = 0;\n};\n\n/**\n*\n* Adds an attribute to the geometry\n*\n* @param {String} id - the name of the attribute (matching up to a shader)\n* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it.\n* @param {Number} [size=0] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2\n* @param {Boolean} [normalized=false] should the data be normalized.\n* @param {Number} [type=PIXI.TYPES.FLOAT] what type of number is the attribute. Check {PIXI.TYPES} to see the ones available\n* @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data)\n* @param {Number} [start=0] How far into the array to start reading values (used for interleaving data)\n*\n* @return {PIXI.Geometry} returns self, useful for chaining.\n*/\nGeometry.prototype.addAttribute = function addAttribute (id, buffer, size, normalized, type, stride, start, instance)\n{\n if ( normalized === void 0 ) normalized = false;\n if ( instance === void 0 ) instance = false;\n\n if (!buffer)\n {\n throw new Error('You must pass a buffer when creating an attribute');\n }\n\n // check if this is a buffer!\n if (!buffer.data)\n {\n // its an array!\n if (buffer instanceof Array)\n {\n buffer = new Float32Array(buffer);\n }\n\n buffer = new Buffer(buffer);\n }\n\n var ids = id.split('|');\n\n if (ids.length > 1)\n {\n for (var i = 0; i < ids.length; i++)\n {\n this.addAttribute(ids[i], buffer, size, normalized, type);\n }\n\n return this;\n }\n\n var bufferIndex = this.buffers.indexOf(buffer);\n\n if (bufferIndex === -1)\n {\n this.buffers.push(buffer);\n bufferIndex = this.buffers.length - 1;\n }\n\n this.attributes[id] = new Attribute(bufferIndex, size, normalized, type, stride, start, instance);\n\n // assuming that if there is instanced data then this will be drawn with instancing!\n this.instanced = this.instanced || instance;\n\n return this;\n};\n\n/**\n * returns the requested attribute\n *\n * @param {String} id the name of the attribute required\n * @return {PIXI.Attribute} the attribute requested.\n */\nGeometry.prototype.getAttribute = function getAttribute (id)\n{\n return this.attributes[id];\n};\n\n/**\n * returns the requested buffer\n *\n * @param {String} id the name of the buffer required\n * @return {PIXI.Buffer} the buffer requested.\n */\nGeometry.prototype.getBuffer = function getBuffer (id)\n{\n return this.buffers[this.getAttribute(id).buffer];\n};\n\n/**\n*\n* Adds an index buffer to the geometry\n* The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer.\n*\n* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it.\n* @return {PIXI.Geometry} returns self, useful for chaining.\n*/\nGeometry.prototype.addIndex = function addIndex (buffer)\n{\n if (!buffer.data)\n {\n // its an array!\n if (buffer instanceof Array)\n {\n buffer = new Uint16Array(buffer);\n }\n\n buffer = new Buffer(buffer);\n }\n\n buffer.index = true;\n this.indexBuffer = buffer;\n\n if (this.buffers.indexOf(buffer) === -1)\n {\n this.buffers.push(buffer);\n }\n\n return this;\n};\n\n/**\n * returns the index buffer\n *\n * @return {PIXI.Buffer} the index buffer.\n */\nGeometry.prototype.getIndex = function getIndex ()\n{\n return this.indexBuffer;\n};\n\n/**\n * this function modifies the structure so that all current attributes become interleaved into a single buffer\n * This can be useful if your model remains static as it offers a little performance boost\n *\n * @return {PIXI.Geometry} returns self, useful for chaining.\n */\nGeometry.prototype.interleave = function interleave ()\n{\n // a simple check to see if buffers are already interleaved..\n if (this.buffers.length === 1 || (this.buffers.length === 2 && this.indexBuffer)) { return this; }\n\n // assume already that no buffers are interleaved\n var arrays = [];\n var sizes = [];\n var interleavedBuffer = new Buffer();\n var i;\n\n for (i in this.attributes)\n {\n var attribute = this.attributes[i];\n\n var buffer = this.buffers[attribute.buffer];\n\n arrays.push(buffer.data);\n\n sizes.push((attribute.size * byteSizeMap[attribute.type]) / 4);\n\n attribute.buffer = 0;\n }\n\n interleavedBuffer.data = interleaveTypedArrays(arrays, sizes);\n\n for (i = 0; i < this.buffers.length; i++)\n {\n if (this.buffers[i] !== this.indexBuffer)\n {\n this.buffers[i].destroy();\n }\n }\n\n this.buffers = [interleavedBuffer];\n\n if (this.indexBuffer)\n {\n this.buffers.push(this.indexBuffer);\n }\n\n return this;\n};\n\nGeometry.prototype.getSize = function getSize ()\n{\n for (var i in this.attributes)\n {\n var attribute = this.attributes[i];\n var buffer = this.buffers[attribute.buffer];\n\n return buffer.data.length / ((attribute.stride / 4) || attribute.size);\n }\n\n return 0;\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nGeometry.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\n/**\n * Destroys the geometry.\n */\nGeometry.prototype.destroy = function destroy ()\n{\n this.dispose();\n\n this.buffers = null;\n this.indexBuffer.destroy();\n\n this.attributes = null;\n};\n\n/**\n * returns a clone of the geometry\n *\n * @returns {PIXI.Geometry} a new clone of this geometry\n */\nGeometry.prototype.clone = function clone ()\n{\n var geometry = new Geometry();\n\n for (var i = 0; i < this.buffers.length; i++)\n {\n geometry.buffers[i] = new Buffer(this.buffers[i].data.slice());\n }\n\n for (var i$1 in this.attributes)\n {\n var attrib = this.attributes[i$1];\n\n geometry.attributes[i$1] = new Attribute(\n attrib.buffer,\n attrib.size,\n attrib.normalized,\n attrib.type,\n attrib.stride,\n attrib.start,\n attrib.instance\n );\n }\n\n if (this.indexBuffer)\n {\n geometry.indexBuffer = geometry.buffers[this.buffers.indexOf(this.indexBuffer)];\n geometry.indexBuffer.index = true;\n }\n\n return geometry;\n};\n\n/**\n * merges an array of geometries into a new single one\n * geometry attribute styles must match for this operation to work\n *\n * @param {PIXI.Geometry[]} geometries array of geometries to merge\n * @returns {PIXI.Geometry} shiny new geometry!\n */\nGeometry.merge = function merge (geometries)\n{\n // todo add a geometry check!\n // also a size check.. cant be too big!]\n\n var geometryOut = new Geometry();\n\n var arrays = [];\n var sizes = [];\n var offsets = [];\n\n var geometry;\n\n // pass one.. get sizes..\n for (var i = 0; i < geometries.length; i++)\n {\n geometry = geometries[i];\n\n for (var j = 0; j < geometry.buffers.length; j++)\n {\n sizes[j] = sizes[j] || 0;\n sizes[j] += geometry.buffers[j].data.length;\n offsets[j] = 0;\n }\n }\n\n // build the correct size arrays..\n for (var i$1 = 0; i$1 < geometry.buffers.length; i$1++)\n {\n // TODO types!\n arrays[i$1] = new map$1[getBufferType(geometry.buffers[i$1].data)](sizes[i$1]);\n geometryOut.buffers[i$1] = new Buffer(arrays[i$1]);\n }\n\n // pass to set data..\n for (var i$2 = 0; i$2 < geometries.length; i$2++)\n {\n geometry = geometries[i$2];\n\n for (var j$1 = 0; j$1 < geometry.buffers.length; j$1++)\n {\n arrays[j$1].set(geometry.buffers[j$1].data, offsets[j$1]);\n offsets[j$1] += geometry.buffers[j$1].data.length;\n }\n }\n\n geometryOut.attributes = geometry.attributes;\n\n if (geometry.indexBuffer)\n {\n geometryOut.indexBuffer = geometryOut.buffers[geometry.buffers.indexOf(geometry.indexBuffer)];\n geometryOut.indexBuffer.index = true;\n\n var offset = 0;\n var stride = 0;\n var offset2 = 0;\n var bufferIndexToCount = 0;\n\n // get a buffer\n for (var i$3 = 0; i$3 < geometry.buffers.length; i$3++)\n {\n if (geometry.buffers[i$3] !== geometry.indexBuffer)\n {\n bufferIndexToCount = i$3;\n break;\n }\n }\n\n // figure out the stride of one buffer..\n for (var i$4 in geometry.attributes)\n {\n var attribute = geometry.attributes[i$4];\n\n if ((attribute.buffer | 0) === bufferIndexToCount)\n {\n stride += ((attribute.size * byteSizeMap[attribute.type]) / 4);\n }\n }\n\n // time to off set all indexes..\n for (var i$5 = 0; i$5 < geometries.length; i$5++)\n {\n var indexBufferData = geometries[i$5].indexBuffer.data;\n\n for (var j$2 = 0; j$2 < indexBufferData.length; j$2++)\n {\n geometryOut.indexBuffer.data[j$2 + offset2] += offset;\n }\n\n offset += geometry.buffers[bufferIndexToCount].data.length / (stride);\n offset2 += indexBufferData.length;\n }\n }\n\n return geometryOut;\n};\n\n/**\n * Helper class to create a quad\n *\n * @class\n * @memberof PIXI\n */\nvar Quad = /*@__PURE__*/(function (Geometry) {\n function Quad()\n {\n Geometry.call(this);\n\n this.addAttribute('aVertexPosition', [\n 0, 0,\n 1, 0,\n 1, 1,\n 0, 1 ])\n .addIndex([0, 1, 3, 2]);\n }\n\n if ( Geometry ) Quad.__proto__ = Geometry;\n Quad.prototype = Object.create( Geometry && Geometry.prototype );\n Quad.prototype.constructor = Quad;\n\n return Quad;\n}(Geometry));\n\n/**\n * Helper class to create a quad with uvs like in v4\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.Geometry\n */\nvar QuadUv = /*@__PURE__*/(function (Geometry) {\n function QuadUv()\n {\n Geometry.call(this);\n\n /**\n * An array of vertices\n *\n * @member {Float32Array}\n */\n this.vertices = new Float32Array([\n -1, -1,\n 1, -1,\n 1, 1,\n -1, 1 ]);\n\n /**\n * The Uvs of the quad\n *\n * @member {Float32Array}\n */\n this.uvs = new Float32Array([\n 0, 0,\n 1, 0,\n 1, 1,\n 0, 1 ]);\n\n this.vertexBuffer = new Buffer(this.vertices);\n this.uvBuffer = new Buffer(this.uvs);\n\n this.addAttribute('aVertexPosition', this.vertexBuffer)\n .addAttribute('aTextureCoord', this.uvBuffer)\n .addIndex([0, 1, 2, 0, 2, 3]);\n }\n\n if ( Geometry ) QuadUv.__proto__ = Geometry;\n QuadUv.prototype = Object.create( Geometry && Geometry.prototype );\n QuadUv.prototype.constructor = QuadUv;\n\n /**\n * Maps two Rectangle to the quad.\n *\n * @param {PIXI.Rectangle} targetTextureFrame - the first rectangle\n * @param {PIXI.Rectangle} destinationFrame - the second rectangle\n * @return {PIXI.Quad} Returns itself.\n */\n QuadUv.prototype.map = function map (targetTextureFrame, destinationFrame)\n {\n var x = 0; // destinationFrame.x / targetTextureFrame.width;\n var y = 0; // destinationFrame.y / targetTextureFrame.height;\n\n this.uvs[0] = x;\n this.uvs[1] = y;\n\n this.uvs[2] = x + (destinationFrame.width / targetTextureFrame.width);\n this.uvs[3] = y;\n\n this.uvs[4] = x + (destinationFrame.width / targetTextureFrame.width);\n this.uvs[5] = y + (destinationFrame.height / targetTextureFrame.height);\n\n this.uvs[6] = x;\n this.uvs[7] = y + (destinationFrame.height / targetTextureFrame.height);\n\n x = destinationFrame.x;\n y = destinationFrame.y;\n\n this.vertices[0] = x;\n this.vertices[1] = y;\n\n this.vertices[2] = x + destinationFrame.width;\n this.vertices[3] = y;\n\n this.vertices[4] = x + destinationFrame.width;\n this.vertices[5] = y + destinationFrame.height;\n\n this.vertices[6] = x;\n this.vertices[7] = y + destinationFrame.height;\n\n this.invalidate();\n\n return this;\n };\n\n /**\n * legacy upload method, just marks buffers dirty\n * @returns {PIXI.QuadUv} Returns itself.\n */\n QuadUv.prototype.invalidate = function invalidate ()\n {\n this.vertexBuffer._updateID++;\n this.uvBuffer._updateID++;\n\n return this;\n };\n\n return QuadUv;\n}(Geometry));\n\nvar UID$2 = 0;\n\n/**\n * Uniform group holds uniform map and some ID's for work\n *\n * @class\n * @memberof PIXI\n */\nvar UniformGroup = function UniformGroup(uniforms, _static)\n{\n /**\n * uniform values\n * @member {object}\n * @readonly\n */\n this.uniforms = uniforms;\n\n /**\n * Its a group and not a single uniforms\n * @member {boolean}\n * @readonly\n * @default true\n */\n this.group = true;\n\n // lets generate this when the shader ?\n this.syncUniforms = {};\n\n /**\n * dirty version\n * @protected\n * @member {number}\n */\n this.dirtyId = 0;\n\n /**\n * unique id\n * @protected\n * @member {number}\n */\n this.id = UID$2++;\n\n /**\n * Uniforms wont be changed after creation\n * @member {boolean}\n */\n this.static = !!_static;\n};\n\nUniformGroup.prototype.update = function update ()\n{\n this.dirtyId++;\n};\n\nUniformGroup.prototype.add = function add (name, uniforms, _static)\n{\n this.uniforms[name] = new UniformGroup(uniforms, _static);\n};\n\nUniformGroup.from = function from (uniforms, _static)\n{\n return new UniformGroup(uniforms, _static);\n};\n\n/**\n * System plugin to the renderer to manage filter states.\n *\n * @class\n * @private\n */\nvar FilterState = function FilterState()\n{\n this.renderTexture = null;\n\n /**\n * Target of the filters\n * We store for case when custom filter wants to know the element it was applied on\n * @member {PIXI.DisplayObject}\n * @private\n */\n this.target = null;\n\n /**\n * Compatibility with PixiJS v4 filters\n * @member {boolean}\n * @default false\n * @private\n */\n this.legacy = false;\n\n /**\n * Resolution of filters\n * @member {number}\n * @default 1\n * @private\n */\n this.resolution = 1;\n\n // next three fields are created only for root\n // re-assigned for everything else\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @private\n */\n this.sourceFrame = new Rectangle();\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @private\n */\n this.destinationFrame = new Rectangle();\n\n /**\n * Collection of filters\n * @member {PIXI.Filter[]}\n * @private\n */\n this.filters = [];\n};\n\n/**\n * clears the state\n * @private\n */\nFilterState.prototype.clear = function clear ()\n{\n this.target = null;\n this.filters = null;\n this.renderTexture = null;\n};\n\n/**\n * System plugin to the renderer to manage the filters.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar FilterSystem = /*@__PURE__*/(function (System) {\n function FilterSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * List of filters for the FilterSystem\n * @member {Object[]}\n * @readonly\n */\n this.defaultFilterStack = [{}];\n\n /**\n * stores a bunch of PO2 textures used for filtering\n * @member {Object}\n */\n this.texturePool = new RenderTexturePool();\n\n this.texturePool.setScreenSize(renderer.view);\n\n /**\n * a pool for storing filter states, save us creating new ones each tick\n * @member {Object[]}\n */\n this.statePool = [];\n\n /**\n * A very simple geometry used when drawing a filter effect to the screen\n * @member {PIXI.Quad}\n */\n this.quad = new Quad();\n\n /**\n * Quad UVs\n * @member {PIXI.QuadUv}\n */\n this.quadUv = new QuadUv();\n\n /**\n * Temporary rect for maths\n * @type {PIXI.Rectangle}\n */\n this.tempRect = new Rectangle();\n\n /**\n * Active state\n * @member {object}\n */\n this.activeState = {};\n\n /**\n * This uniform group is attached to filter uniforms when used\n * @member {PIXI.UniformGroup}\n * @property {PIXI.Rectangle} outputFrame\n * @property {Float32Array} inputSize\n * @property {Float32Array} inputPixel\n * @property {Float32Array} inputClamp\n * @property {Number} resolution\n * @property {Float32Array} filterArea\n * @property {Fload32Array} filterClamp\n */\n this.globalUniforms = new UniformGroup({\n outputFrame: this.tempRect,\n inputSize: new Float32Array(4),\n inputPixel: new Float32Array(4),\n inputClamp: new Float32Array(4),\n resolution: 1,\n\n // legacy variables\n filterArea: new Float32Array(4),\n filterClamp: new Float32Array(4),\n }, true);\n\n this._pixelsWidth = renderer.view.width;\n this._pixelsHeight = renderer.view.height;\n }\n\n if ( System ) FilterSystem.__proto__ = System;\n FilterSystem.prototype = Object.create( System && System.prototype );\n FilterSystem.prototype.constructor = FilterSystem;\n\n /**\n * Adds a new filter to the System.\n *\n * @param {PIXI.DisplayObject} target - The target of the filter to render.\n * @param {PIXI.Filter[]} filters - The filters to apply.\n */\n FilterSystem.prototype.push = function push (target, filters)\n {\n var renderer = this.renderer;\n var filterStack = this.defaultFilterStack;\n var state = this.statePool.pop() || new FilterState();\n\n var resolution = filters[0].resolution;\n var padding = filters[0].padding;\n var autoFit = filters[0].autoFit;\n var legacy = filters[0].legacy;\n\n for (var i = 1; i < filters.length; i++)\n {\n var filter = filters[i];\n\n // lets use the lowest resolution..\n resolution = Math.min(resolution, filter.resolution);\n // and the largest amount of padding!\n padding = Math.max(padding, filter.padding);\n // only auto fit if all filters are autofit\n autoFit = autoFit || filter.autoFit;\n\n legacy = legacy || filter.legacy;\n }\n\n if (filterStack.length === 1)\n {\n this.defaultFilterStack[0].renderTexture = renderer.renderTexture.current;\n }\n\n filterStack.push(state);\n\n state.resolution = resolution;\n\n state.legacy = legacy;\n\n state.target = target;\n\n state.sourceFrame.copyFrom(target.filterArea || target.getBounds(true));\n\n state.sourceFrame.pad(padding);\n if (autoFit)\n {\n state.sourceFrame.fit(this.renderer.renderTexture.sourceFrame);\n }\n\n // round to whole number based on resolution\n state.sourceFrame.ceil(resolution);\n\n state.renderTexture = this.getOptimalFilterTexture(state.sourceFrame.width, state.sourceFrame.height, resolution);\n state.filters = filters;\n\n state.destinationFrame.width = state.renderTexture.width;\n state.destinationFrame.height = state.renderTexture.height;\n\n state.renderTexture.filterFrame = state.sourceFrame;\n\n renderer.renderTexture.bind(state.renderTexture, state.sourceFrame);// /, state.destinationFrame);\n renderer.renderTexture.clear();\n };\n\n /**\n * Pops off the filter and applies it.\n *\n */\n FilterSystem.prototype.pop = function pop ()\n {\n var filterStack = this.defaultFilterStack;\n var state = filterStack.pop();\n var filters = state.filters;\n\n this.activeState = state;\n\n var globalUniforms = this.globalUniforms.uniforms;\n\n globalUniforms.outputFrame = state.sourceFrame;\n globalUniforms.resolution = state.resolution;\n\n var inputSize = globalUniforms.inputSize;\n var inputPixel = globalUniforms.inputPixel;\n var inputClamp = globalUniforms.inputClamp;\n\n inputSize[0] = state.destinationFrame.width;\n inputSize[1] = state.destinationFrame.height;\n inputSize[2] = 1.0 / inputSize[0];\n inputSize[3] = 1.0 / inputSize[1];\n\n inputPixel[0] = inputSize[0] * state.resolution;\n inputPixel[1] = inputSize[1] * state.resolution;\n inputPixel[2] = 1.0 / inputPixel[0];\n inputPixel[3] = 1.0 / inputPixel[1];\n\n inputClamp[0] = 0.5 * inputPixel[2];\n inputClamp[1] = 0.5 * inputPixel[3];\n inputClamp[2] = (state.sourceFrame.width * inputSize[2]) - (0.5 * inputPixel[2]);\n inputClamp[3] = (state.sourceFrame.height * inputSize[3]) - (0.5 * inputPixel[3]);\n\n // only update the rect if its legacy..\n if (state.legacy)\n {\n var filterArea = globalUniforms.filterArea;\n\n filterArea[0] = state.destinationFrame.width;\n filterArea[1] = state.destinationFrame.height;\n filterArea[2] = state.sourceFrame.x;\n filterArea[3] = state.sourceFrame.y;\n\n globalUniforms.filterClamp = globalUniforms.inputClamp;\n }\n\n this.globalUniforms.update();\n\n var lastState = filterStack[filterStack.length - 1];\n\n if (filters.length === 1)\n {\n filters[0].apply(this, state.renderTexture, lastState.renderTexture, false, state);\n\n this.returnFilterTexture(state.renderTexture);\n }\n else\n {\n var flip = state.renderTexture;\n var flop = this.getOptimalFilterTexture(\n flip.width,\n flip.height,\n state.resolution\n );\n\n flop.filterFrame = flip.filterFrame;\n\n var i = 0;\n\n for (i = 0; i < filters.length - 1; ++i)\n {\n filters[i].apply(this, flip, flop, true, state);\n\n var t = flip;\n\n flip = flop;\n flop = t;\n }\n\n filters[i].apply(this, flip, lastState.renderTexture, false, state);\n\n this.returnFilterTexture(flip);\n this.returnFilterTexture(flop);\n }\n\n state.clear();\n this.statePool.push(state);\n };\n\n /**\n * Draws a filter.\n *\n * @param {PIXI.Filter} filter - The filter to draw.\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it\n */\n FilterSystem.prototype.applyFilter = function applyFilter (filter, input, output, clear)\n {\n var renderer = this.renderer;\n\n renderer.renderTexture.bind(output, output ? output.filterFrame : null);\n\n if (clear)\n {\n // gl.disable(gl.SCISSOR_TEST);\n renderer.renderTexture.clear();\n // gl.enable(gl.SCISSOR_TEST);\n }\n\n // set the uniforms..\n filter.uniforms.uSampler = input;\n filter.uniforms.filterGlobals = this.globalUniforms;\n\n // TODO make it so that the order of this does not matter..\n // because it does at the moment cos of global uniforms.\n // they need to get resynced\n\n renderer.state.set(filter.state);\n renderer.shader.bind(filter);\n\n if (filter.legacy)\n {\n this.quadUv.map(input._frame, input.filterFrame);\n\n renderer.geometry.bind(this.quadUv);\n renderer.geometry.draw(DRAW_MODES.TRIANGLES);\n }\n else\n {\n renderer.geometry.bind(this.quad);\n renderer.geometry.draw(DRAW_MODES.TRIANGLE_STRIP);\n }\n };\n\n /**\n * Multiply _input normalized coordinates_ to this matrix to get _sprite texture normalized coordinates_.\n *\n * Use `outputMatrix * vTextureCoord` in the shader.\n *\n * @param {PIXI.Matrix} outputMatrix - The matrix to output to.\n * @param {PIXI.Sprite} sprite - The sprite to map to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n FilterSystem.prototype.calculateSpriteMatrix = function calculateSpriteMatrix (outputMatrix, sprite)\n {\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n var ref$1 = sprite._texture;\n var orig = ref$1.orig;\n var mappedMatrix = outputMatrix.set(destinationFrame.width, 0, 0,\n destinationFrame.height, sourceFrame.x, sourceFrame.y);\n var worldTransform = sprite.worldTransform.copyTo(Matrix.TEMP_MATRIX);\n\n worldTransform.invert();\n mappedMatrix.prepend(worldTransform);\n mappedMatrix.scale(1.0 / orig.width, 1.0 / orig.height);\n mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y);\n\n return mappedMatrix;\n };\n\n /**\n * Destroys this Filter System.\n */\n FilterSystem.prototype.destroy = function destroy ()\n {\n // Those textures has to be destroyed by RenderTextureSystem or FramebufferSystem\n this.texturePool.clear(false);\n };\n\n /**\n * Gets a Power-of-Two render texture or fullScreen texture\n *\n * @protected\n * @param {number} minWidth - The minimum width of the render texture in real pixels.\n * @param {number} minHeight - The minimum height of the render texture in real pixels.\n * @param {number} [resolution=1] - The resolution of the render texture.\n * @return {PIXI.RenderTexture} The new render texture.\n */\n FilterSystem.prototype.getOptimalFilterTexture = function getOptimalFilterTexture (minWidth, minHeight, resolution)\n {\n if ( resolution === void 0 ) resolution = 1;\n\n return this.texturePool.getOptimalTexture(minWidth, minHeight, resolution);\n };\n\n /**\n * Gets extra render texture to use inside current filter\n * To be compliant with older filters, you can use params in any order\n *\n * @param {PIXI.RenderTexture} [input] renderTexture from which size and resolution will be copied\n * @param {number} [resolution] override resolution of the renderTexture\n * @returns {PIXI.RenderTexture}\n */\n FilterSystem.prototype.getFilterTexture = function getFilterTexture (input, resolution)\n {\n if (typeof input === 'number')\n {\n var swap = input;\n\n input = resolution;\n resolution = swap;\n }\n\n input = input || this.activeState.renderTexture;\n\n var filterTexture = this.texturePool.getOptimalTexture(input.width, input.height, resolution || input.resolution);\n\n filterTexture.filterFrame = input.filterFrame;\n\n return filterTexture;\n };\n\n /**\n * Frees a render texture back into the pool.\n *\n * @param {PIXI.RenderTexture} renderTexture - The renderTarget to free\n */\n FilterSystem.prototype.returnFilterTexture = function returnFilterTexture (renderTexture)\n {\n this.texturePool.returnTexture(renderTexture);\n };\n\n /**\n * Empties the texture pool.\n */\n FilterSystem.prototype.emptyPool = function emptyPool ()\n {\n this.texturePool.clear(true);\n };\n\n /**\n * calls `texturePool.resize()`, affects fullScreen renderTextures\n */\n FilterSystem.prototype.resize = function resize ()\n {\n this.texturePool.setScreenSize(this.renderer.view);\n };\n\n return FilterSystem;\n}(System));\n\n/**\n * Base for a common object renderer that can be used as a\n * system renderer plugin.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI\n */\nvar ObjectRenderer = function ObjectRenderer(renderer)\n{\n /**\n * The renderer this manager works for.\n *\n * @member {PIXI.Renderer}\n */\n this.renderer = renderer;\n};\n\n/**\n * Stub method that should be used to empty the current\n * batch by rendering objects now.\n */\nObjectRenderer.prototype.flush = function flush ()\n{\n // flush!\n};\n\n/**\n * Generic destruction method that frees all resources. This\n * should be called by subclasses.\n */\nObjectRenderer.prototype.destroy = function destroy ()\n{\n this.renderer = null;\n};\n\n/**\n * Stub method that initializes any state required before\n * rendering starts. It is different from the `prerender`\n * signal, which occurs every frame, in that it is called\n * whenever an object requests _this_ renderer specifically.\n */\nObjectRenderer.prototype.start = function start ()\n{\n // set the shader..\n};\n\n/**\n * Stops the renderer. It should free up any state and\n * become dormant.\n */\nObjectRenderer.prototype.stop = function stop ()\n{\n this.flush();\n};\n\n/**\n * Keeps the object to render. It doesn't have to be\n * rendered immediately.\n *\n * @param {PIXI.DisplayObject} object - The object to render.\n */\nObjectRenderer.prototype.render = function render (object) // eslint-disable-line no-unused-vars\n{\n // render the object\n};\n\n/**\n * System plugin to the renderer to manage batching.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar BatchSystem = /*@__PURE__*/(function (System) {\n function BatchSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * An empty renderer.\n *\n * @member {PIXI.ObjectRenderer}\n */\n this.emptyRenderer = new ObjectRenderer(renderer);\n\n /**\n * The currently active ObjectRenderer.\n *\n * @member {PIXI.ObjectRenderer}\n */\n this.currentRenderer = this.emptyRenderer;\n }\n\n if ( System ) BatchSystem.__proto__ = System;\n BatchSystem.prototype = Object.create( System && System.prototype );\n BatchSystem.prototype.constructor = BatchSystem;\n\n /**\n * Changes the current renderer to the one given in parameter\n *\n * @param {PIXI.ObjectRenderer} objectRenderer - The object renderer to use.\n */\n BatchSystem.prototype.setObjectRenderer = function setObjectRenderer (objectRenderer)\n {\n if (this.currentRenderer === objectRenderer)\n {\n return;\n }\n\n this.currentRenderer.stop();\n this.currentRenderer = objectRenderer;\n\n this.currentRenderer.start();\n };\n\n /**\n * This should be called if you wish to do some custom rendering\n * It will basically render anything that may be batched up such as sprites\n */\n BatchSystem.prototype.flush = function flush ()\n {\n this.setObjectRenderer(this.emptyRenderer);\n };\n\n /**\n * Reset the system to an empty renderer\n */\n BatchSystem.prototype.reset = function reset ()\n {\n this.setObjectRenderer(this.emptyRenderer);\n };\n\n return BatchSystem;\n}(System));\n\n/**\n * The maximum support for using WebGL. If a device does not\n * support WebGL version, for instance WebGL 2, it will still\n * attempt to fallback support to WebGL 1. If you want to\n * explicitly remove feature support to target a more stable\n * baseline, prefer a lower environment.\n *\n * Due to {@link https://bugs.chromium.org/p/chromium/issues/detail?id=934823|bug in chromium}\n * we disable webgl2 by default for all non-apple mobile devices.\n *\n * @static\n * @name PREFER_ENV\n * @memberof PIXI.settings\n * @type {number}\n * @default PIXI.ENV.WEBGL2\n */\nsettings.PREFER_ENV = isMobile.any ? ENV.WEBGL : ENV.WEBGL2;\n\nvar CONTEXT_UID = 0;\n\n/**\n * System plugin to the renderer to manage the context.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar ContextSystem = /*@__PURE__*/(function (System) {\n function ContextSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Either 1 or 2 to reflect the WebGL version being used\n * @member {number}\n * @readonly\n */\n this.webGLVersion = 1;\n\n /**\n * Extensions being used\n * @member {object}\n * @readonly\n * @property {WEBGL_draw_buffers} drawBuffers - WebGL v1 extension\n * @property {WEBGL_depth_texture} depthTexture - WebGL v1 extension\n * @property {OES_texture_float} floatTexture - WebGL v1 extension\n * @property {WEBGL_lose_context} loseContext - WebGL v1 extension\n * @property {OES_vertex_array_object} vertexArrayObject - WebGL v1 extension\n * @property {EXT_texture_filter_anisotropic} anisotropicFiltering - WebGL v1 and v2 extension\n */\n this.extensions = {};\n\n // Bind functions\n this.handleContextLost = this.handleContextLost.bind(this);\n this.handleContextRestored = this.handleContextRestored.bind(this);\n\n renderer.view.addEventListener('webglcontextlost', this.handleContextLost, false);\n renderer.view.addEventListener('webglcontextrestored', this.handleContextRestored, false);\n }\n\n if ( System ) ContextSystem.__proto__ = System;\n ContextSystem.prototype = Object.create( System && System.prototype );\n ContextSystem.prototype.constructor = ContextSystem;\n\n var prototypeAccessors = { isLost: { configurable: true } };\n\n /**\n * `true` if the context is lost\n * @member {boolean}\n * @readonly\n */\n prototypeAccessors.isLost.get = function ()\n {\n return (!this.gl || this.gl.isContextLost());\n };\n\n /**\n * Handle the context change event\n * @param {WebGLRenderingContext} gl new webgl context\n */\n ContextSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n this.renderer.gl = gl;\n this.renderer.CONTEXT_UID = CONTEXT_UID++;\n\n // restore a context if it was previously lost\n if (gl.isContextLost() && gl.getExtension('WEBGL_lose_context'))\n {\n gl.getExtension('WEBGL_lose_context').restoreContext();\n }\n };\n\n /**\n * Initialize the context\n *\n * @protected\n * @param {WebGLRenderingContext} gl - WebGL context\n */\n ContextSystem.prototype.initFromContext = function initFromContext (gl)\n {\n this.gl = gl;\n this.validateContext(gl);\n this.renderer.gl = gl;\n this.renderer.CONTEXT_UID = CONTEXT_UID++;\n this.renderer.runners.contextChange.run(gl);\n };\n\n /**\n * Initialize from context options\n *\n * @protected\n * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext\n * @param {object} options - context attributes\n */\n ContextSystem.prototype.initFromOptions = function initFromOptions (options)\n {\n var gl = this.createContext(this.renderer.view, options);\n\n this.initFromContext(gl);\n };\n\n /**\n * Helper class to create a WebGL Context\n *\n * @param canvas {HTMLCanvasElement} the canvas element that we will get the context from\n * @param options {object} An options object that gets passed in to the canvas element containing the context attributes\n * @see https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement/getContext\n * @return {WebGLRenderingContext} the WebGL context\n */\n ContextSystem.prototype.createContext = function createContext (canvas, options)\n {\n var gl;\n\n if (settings.PREFER_ENV >= ENV.WEBGL2)\n {\n gl = canvas.getContext('webgl2', options);\n }\n\n if (gl)\n {\n this.webGLVersion = 2;\n }\n else\n {\n this.webGLVersion = 1;\n\n gl = canvas.getContext('webgl', options)\n || canvas.getContext('experimental-webgl', options);\n\n if (!gl)\n {\n // fail, not able to get a context\n throw new Error('This browser does not support WebGL. Try using the canvas renderer');\n }\n }\n\n this.gl = gl;\n\n this.getExtensions();\n\n return gl;\n };\n\n /**\n * Auto-populate the extensions\n *\n * @protected\n */\n ContextSystem.prototype.getExtensions = function getExtensions ()\n {\n // time to set up default extensions that Pixi uses.\n var ref = this;\n var gl = ref.gl;\n\n if (this.webGLVersion === 1)\n {\n Object.assign(this.extensions, {\n drawBuffers: gl.getExtension('WEBGL_draw_buffers'),\n depthTexture: gl.getExtension('WEBKIT_WEBGL_depth_texture'),\n loseContext: gl.getExtension('WEBGL_lose_context'),\n vertexArrayObject: gl.getExtension('OES_vertex_array_object')\n || gl.getExtension('MOZ_OES_vertex_array_object')\n || gl.getExtension('WEBKIT_OES_vertex_array_object'),\n anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'),\n uint32ElementIndex: gl.getExtension('OES_element_index_uint'),\n // Floats and half-floats\n floatTexture: gl.getExtension('OES_texture_float'),\n floatTextureLinear: gl.getExtension('OES_texture_float_linear'),\n textureHalfFloat: gl.getExtension('OES_texture_half_float'),\n textureHalfFloatLinear: gl.getExtension('OES_texture_half_float_linear'),\n });\n }\n else if (this.webGLVersion === 2)\n {\n Object.assign(this.extensions, {\n anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'),\n // Floats and half-floats\n colorBufferFloat: gl.getExtension('EXT_color_buffer_float'),\n floatTextureLinear: gl.getExtension('OES_texture_float_linear'),\n });\n }\n };\n\n /**\n * Handles a lost webgl context\n *\n * @protected\n * @param {WebGLContextEvent} event - The context lost event.\n */\n ContextSystem.prototype.handleContextLost = function handleContextLost (event)\n {\n event.preventDefault();\n };\n\n /**\n * Handles a restored webgl context\n *\n * @protected\n */\n ContextSystem.prototype.handleContextRestored = function handleContextRestored ()\n {\n this.renderer.runners.contextChange.run(this.gl);\n };\n\n ContextSystem.prototype.destroy = function destroy ()\n {\n var view = this.renderer.view;\n\n // remove listeners\n view.removeEventListener('webglcontextlost', this.handleContextLost);\n view.removeEventListener('webglcontextrestored', this.handleContextRestored);\n\n this.gl.useProgram(null);\n\n if (this.extensions.loseContext)\n {\n this.extensions.loseContext.loseContext();\n }\n };\n\n /**\n * Handle the post-render runner event\n *\n * @protected\n */\n ContextSystem.prototype.postrender = function postrender ()\n {\n this.gl.flush();\n };\n\n /**\n * Validate context\n *\n * @protected\n * @param {WebGLRenderingContext} gl - Render context\n */\n ContextSystem.prototype.validateContext = function validateContext (gl)\n {\n var attributes = gl.getContextAttributes();\n\n // this is going to be fairly simple for now.. but at least we have room to grow!\n if (!attributes.stencil)\n {\n /* eslint-disable max-len */\n\n /* eslint-disable no-console */\n console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly');\n /* eslint-enable no-console */\n\n /* eslint-enable max-len */\n }\n };\n\n Object.defineProperties( ContextSystem.prototype, prototypeAccessors );\n\n return ContextSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage framebuffers.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar FramebufferSystem = /*@__PURE__*/(function (System) {\n function FramebufferSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * A list of managed framebuffers\n * @member {PIXI.Framebuffer[]}\n * @readonly\n */\n this.managedFramebuffers = [];\n\n /**\n * Framebuffer value that shows that we don't know what is bound\n * @member {Framebuffer}\n * @readonly\n */\n this.unknownFramebuffer = new Framebuffer(10, 10);\n }\n\n if ( System ) FramebufferSystem.__proto__ = System;\n FramebufferSystem.prototype = Object.create( System && System.prototype );\n FramebufferSystem.prototype.constructor = FramebufferSystem;\n\n var prototypeAccessors = { size: { configurable: true } };\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n FramebufferSystem.prototype.contextChange = function contextChange ()\n {\n var gl = this.gl = this.renderer.gl;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n this.current = this.unknownFramebuffer;\n this.viewport = new Rectangle();\n this.hasMRT = true;\n this.writeDepthTexture = true;\n\n this.disposeAll(true);\n\n // webgl2\n if (this.renderer.context.webGLVersion === 1)\n {\n // webgl 1!\n var nativeDrawBuffersExtension = this.renderer.context.extensions.drawBuffers;\n var nativeDepthTextureExtension = this.renderer.context.extensions.depthTexture;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n nativeDrawBuffersExtension = null;\n nativeDepthTextureExtension = null;\n }\n\n if (nativeDrawBuffersExtension)\n {\n gl.drawBuffers = function (activeTextures) { return nativeDrawBuffersExtension.drawBuffersWEBGL(activeTextures); };\n }\n else\n {\n this.hasMRT = false;\n gl.drawBuffers = function () {\n // empty\n };\n }\n\n if (!nativeDepthTextureExtension)\n {\n this.writeDepthTexture = false;\n }\n }\n };\n\n /**\n * Bind a framebuffer\n *\n * @param {PIXI.Framebuffer} framebuffer\n * @param {PIXI.Rectangle} [frame] frame, default is framebuffer size\n */\n FramebufferSystem.prototype.bind = function bind (framebuffer, frame)\n {\n var ref = this;\n var gl = ref.gl;\n\n if (framebuffer)\n {\n // TODO caching layer!\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID] || this.initFramebuffer(framebuffer);\n\n if (this.current !== framebuffer)\n {\n this.current = framebuffer;\n gl.bindFramebuffer(gl.FRAMEBUFFER, fbo.framebuffer);\n }\n // make sure all textures are unbound..\n\n // now check for updates...\n if (fbo.dirtyId !== framebuffer.dirtyId)\n {\n fbo.dirtyId = framebuffer.dirtyId;\n\n if (fbo.dirtyFormat !== framebuffer.dirtyFormat)\n {\n fbo.dirtyFormat = framebuffer.dirtyFormat;\n this.updateFramebuffer(framebuffer);\n }\n else if (fbo.dirtySize !== framebuffer.dirtySize)\n {\n fbo.dirtySize = framebuffer.dirtySize;\n this.resizeFramebuffer(framebuffer);\n }\n }\n\n for (var i = 0; i < framebuffer.colorTextures.length; i++)\n {\n if (framebuffer.colorTextures[i].texturePart)\n {\n this.renderer.texture.unbind(framebuffer.colorTextures[i].texture);\n }\n else\n {\n this.renderer.texture.unbind(framebuffer.colorTextures[i]);\n }\n }\n\n if (framebuffer.depthTexture)\n {\n this.renderer.texture.unbind(framebuffer.depthTexture);\n }\n\n if (frame)\n {\n this.setViewport(frame.x, frame.y, frame.width, frame.height);\n }\n else\n {\n this.setViewport(0, 0, framebuffer.width, framebuffer.height);\n }\n }\n else\n {\n if (this.current)\n {\n this.current = null;\n gl.bindFramebuffer(gl.FRAMEBUFFER, null);\n }\n\n if (frame)\n {\n this.setViewport(frame.x, frame.y, frame.width, frame.height);\n }\n else\n {\n this.setViewport(0, 0, this.renderer.width, this.renderer.height);\n }\n }\n };\n\n /**\n * Set the WebGLRenderingContext's viewport.\n *\n * @param {Number} x - X position of viewport\n * @param {Number} y - Y position of viewport\n * @param {Number} width - Width of viewport\n * @param {Number} height - Height of viewport\n */\n FramebufferSystem.prototype.setViewport = function setViewport (x, y, width, height)\n {\n var v = this.viewport;\n\n if (v.width !== width || v.height !== height || v.x !== x || v.y !== y)\n {\n v.x = x;\n v.y = y;\n v.width = width;\n v.height = height;\n\n this.gl.viewport(x, y, width, height);\n }\n };\n\n /**\n * Get the size of the current width and height. Returns object with `width` and `height` values.\n *\n * @member {object}\n * @readonly\n */\n prototypeAccessors.size.get = function ()\n {\n if (this.current)\n {\n // TODO store temp\n return { x: 0, y: 0, width: this.current.width, height: this.current.height };\n }\n\n return { x: 0, y: 0, width: this.renderer.width, height: this.renderer.height };\n };\n\n /**\n * Clear the color of the context\n *\n * @param {Number} r - Red value from 0 to 1\n * @param {Number} g - Green value from 0 to 1\n * @param {Number} b - Blue value from 0 to 1\n * @param {Number} a - Alpha value from 0 to 1\n */\n FramebufferSystem.prototype.clear = function clear (r, g, b, a)\n {\n var ref = this;\n var gl = ref.gl;\n\n // TODO clear color can be set only one right?\n gl.clearColor(r, g, b, a);\n gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);\n };\n\n /**\n * Initialize framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.initFramebuffer = function initFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n // TODO - make this a class?\n var fbo = {\n framebuffer: gl.createFramebuffer(),\n stencil: null,\n dirtyId: 0,\n dirtyFormat: 0,\n dirtySize: 0,\n };\n\n framebuffer.glFramebuffers[this.CONTEXT_UID] = fbo;\n\n this.managedFramebuffers.push(framebuffer);\n framebuffer.disposeRunner.add(this);\n\n return fbo;\n };\n\n /**\n * Resize the framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.resizeFramebuffer = function resizeFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n if (fbo.stencil)\n {\n gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil);\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height);\n }\n\n var colorTextures = framebuffer.colorTextures;\n\n for (var i = 0; i < colorTextures.length; i++)\n {\n this.renderer.texture.bind(colorTextures[i], 0);\n }\n\n if (framebuffer.depthTexture)\n {\n this.renderer.texture.bind(framebuffer.depthTexture, 0);\n }\n };\n\n /**\n * Update the framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.updateFramebuffer = function updateFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n // bind the color texture\n var colorTextures = framebuffer.colorTextures;\n\n var count = colorTextures.length;\n\n if (!gl.drawBuffers)\n {\n count = Math.min(count, 1);\n }\n\n var activeTextures = [];\n\n for (var i = 0; i < count; i++)\n {\n var texture = framebuffer.colorTextures[i];\n\n if (texture.texturePart)\n {\n this.renderer.texture.bind(texture.texture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.COLOR_ATTACHMENT0 + i,\n gl.TEXTURE_CUBE_MAP_NEGATIVE_X + texture.side,\n texture.texture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n else\n {\n this.renderer.texture.bind(texture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.COLOR_ATTACHMENT0 + i,\n gl.TEXTURE_2D,\n texture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n\n activeTextures.push(gl.COLOR_ATTACHMENT0 + i);\n }\n\n if (activeTextures.length > 1)\n {\n gl.drawBuffers(activeTextures);\n }\n\n if (framebuffer.depthTexture)\n {\n var writeDepthTexture = this.writeDepthTexture;\n\n if (writeDepthTexture)\n {\n var depthTexture = framebuffer.depthTexture;\n\n this.renderer.texture.bind(depthTexture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.DEPTH_ATTACHMENT,\n gl.TEXTURE_2D,\n depthTexture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n }\n\n if (!fbo.stencil && (framebuffer.stencil || framebuffer.depth))\n {\n fbo.stencil = gl.createRenderbuffer();\n\n gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil);\n\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height);\n // TODO.. this is depth AND stencil?\n if (!framebuffer.depthTexture)\n { // you can't have both, so one should take priority if enabled\n gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, fbo.stencil);\n }\n }\n };\n\n /**\n * Disposes framebuffer\n * @param {PIXI.Framebuffer} framebuffer framebuffer that has to be disposed of\n * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls\n */\n FramebufferSystem.prototype.disposeFramebuffer = function disposeFramebuffer (framebuffer, contextLost)\n {\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n var gl = this.gl;\n\n if (!fbo)\n {\n return;\n }\n\n delete framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n var index = this.managedFramebuffers.indexOf(framebuffer);\n\n if (index >= 0)\n {\n this.managedFramebuffers.splice(index, 1);\n }\n\n framebuffer.disposeRunner.remove(this);\n\n if (!contextLost)\n {\n gl.deleteFramebuffer(fbo.framebuffer);\n if (fbo.stencil)\n {\n gl.deleteRenderbuffer(fbo.stencil);\n }\n }\n };\n\n /**\n * Disposes all framebuffers, but not textures bound to them\n * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls\n */\n FramebufferSystem.prototype.disposeAll = function disposeAll (contextLost)\n {\n var list = this.managedFramebuffers;\n\n this.managedFramebuffers = [];\n\n for (var i = 0; i < list.length; i++)\n {\n this.disposeFramebuffer(list[i], contextLost);\n }\n };\n\n /**\n * Forcing creation of stencil buffer for current framebuffer, if it wasn't done before.\n * Used by MaskSystem, when its time to use stencil mask for Graphics element.\n *\n * Its an alternative for public lazy `framebuffer.enableStencil`, in case we need stencil without rebind.\n *\n * @private\n */\n FramebufferSystem.prototype.forceStencil = function forceStencil ()\n {\n var framebuffer = this.current;\n\n if (!framebuffer)\n {\n return;\n }\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n if (!fbo || fbo.stencil)\n {\n return;\n }\n framebuffer.enableStencil();\n\n var w = framebuffer.width;\n var h = framebuffer.height;\n var gl = this.gl;\n var stencil = gl.createRenderbuffer();\n\n gl.bindRenderbuffer(gl.RENDERBUFFER, stencil);\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, w, h);\n\n fbo.stencil = stencil;\n gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, stencil);\n };\n\n /**\n * resets framebuffer stored state, binds screen framebuffer\n *\n * should be called before renderTexture reset()\n */\n FramebufferSystem.prototype.reset = function reset ()\n {\n this.current = this.unknownFramebuffer;\n this.viewport = new Rectangle();\n };\n\n Object.defineProperties( FramebufferSystem.prototype, prototypeAccessors );\n\n return FramebufferSystem;\n}(System));\n\nvar GLBuffer = function GLBuffer(buffer)\n{\n this.buffer = buffer;\n this.updateID = -1;\n this.byteLength = -1;\n this.refCount = 0;\n};\n\nvar byteSizeMap$1 = { 5126: 4, 5123: 2, 5121: 1 };\n\n/**\n * System plugin to the renderer to manage geometry.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar GeometrySystem = /*@__PURE__*/(function (System) {\n function GeometrySystem(renderer)\n {\n System.call(this, renderer);\n\n this._activeGeometry = null;\n this._activeVao = null;\n\n /**\n * `true` if we has `*_vertex_array_object` extension\n * @member {boolean}\n * @readonly\n */\n this.hasVao = true;\n\n /**\n * `true` if has `ANGLE_instanced_arrays` extension\n * @member {boolean}\n * @readonly\n */\n this.hasInstance = true;\n\n /**\n * `true` if support `gl.UNSIGNED_INT` in `gl.drawElements` or `gl.drawElementsInstanced`\n * @member {boolean}\n * @readonly\n */\n this.canUseUInt32ElementIndex = false;\n\n /**\n * A cache of currently bound buffer,\n * contains only two members with keys ARRAY_BUFFER and ELEMENT_ARRAY_BUFFER\n * @member {Object.}\n * @readonly\n */\n this.boundBuffers = {};\n\n /**\n * Cache for all geometries by id, used in case renderer gets destroyed or for profiling\n * @member {object}\n * @readonly\n */\n this.managedGeometries = {};\n\n /**\n * Cache for all buffers by id, used in case renderer gets destroyed or for profiling\n * @member {object}\n * @readonly\n */\n this.managedBuffers = {};\n }\n\n if ( System ) GeometrySystem.__proto__ = System;\n GeometrySystem.prototype = Object.create( System && System.prototype );\n GeometrySystem.prototype.constructor = GeometrySystem;\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n GeometrySystem.prototype.contextChange = function contextChange ()\n {\n this.disposeAll(true);\n\n var gl = this.gl = this.renderer.gl;\n var context = this.renderer.context;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n\n // webgl2\n if (!gl.createVertexArray)\n {\n // webgl 1!\n var nativeVaoExtension = this.renderer.context.extensions.vertexArrayObject;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n nativeVaoExtension = null;\n }\n\n if (nativeVaoExtension)\n {\n gl.createVertexArray = function () { return nativeVaoExtension.createVertexArrayOES(); };\n\n gl.bindVertexArray = function (vao) { return nativeVaoExtension.bindVertexArrayOES(vao); };\n\n gl.deleteVertexArray = function (vao) { return nativeVaoExtension.deleteVertexArrayOES(vao); };\n }\n else\n {\n this.hasVao = false;\n gl.createVertexArray = function () {\n // empty\n };\n\n gl.bindVertexArray = function () {\n // empty\n };\n\n gl.deleteVertexArray = function () {\n // empty\n };\n }\n }\n\n if (!gl.vertexAttribDivisor)\n {\n var instanceExt = gl.getExtension('ANGLE_instanced_arrays');\n\n if (instanceExt)\n {\n gl.vertexAttribDivisor = function (a, b) { return instanceExt.vertexAttribDivisorANGLE(a, b); };\n\n gl.drawElementsInstanced = function (a, b, c, d, e) { return instanceExt.drawElementsInstancedANGLE(a, b, c, d, e); };\n\n gl.drawArraysInstanced = function (a, b, c, d) { return instanceExt.drawArraysInstancedANGLE(a, b, c, d); };\n }\n else\n {\n this.hasInstance = false;\n }\n }\n\n this.canUseUInt32ElementIndex = context.webGLVersion === 2 || !!context.extensions.uint32ElementIndex;\n };\n\n /**\n * Binds geometry so that is can be drawn. Creating a Vao if required\n *\n * @param {PIXI.Geometry} geometry instance of geometry to bind\n * @param {PIXI.Shader} [shader] instance of shader to use vao for\n */\n GeometrySystem.prototype.bind = function bind (geometry, shader)\n {\n shader = shader || this.renderer.shader.shader;\n\n var ref = this;\n var gl = ref.gl;\n\n // not sure the best way to address this..\n // currently different shaders require different VAOs for the same geometry\n // Still mulling over the best way to solve this one..\n // will likely need to modify the shader attribute locations at run time!\n var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n\n if (!vaos)\n {\n this.managedGeometries[geometry.id] = geometry;\n geometry.disposeRunner.add(this);\n geometry.glVertexArrayObjects[this.CONTEXT_UID] = vaos = {};\n }\n\n var vao = vaos[shader.program.id] || this.initGeometryVao(geometry, shader.program);\n\n this._activeGeometry = geometry;\n\n if (this._activeVao !== vao)\n {\n this._activeVao = vao;\n\n if (this.hasVao)\n {\n gl.bindVertexArray(vao);\n }\n else\n {\n this.activateVao(geometry, shader.program);\n }\n }\n\n // TODO - optimise later!\n // don't need to loop through if nothing changed!\n // maybe look to add an 'autoupdate' to geometry?\n this.updateBuffers();\n };\n\n /**\n * Reset and unbind any active VAO and geometry\n */\n GeometrySystem.prototype.reset = function reset ()\n {\n this.unbind();\n };\n\n /**\n * Update buffers\n * @protected\n */\n GeometrySystem.prototype.updateBuffers = function updateBuffers ()\n {\n var geometry = this._activeGeometry;\n var ref = this;\n var gl = ref.gl;\n\n for (var i = 0; i < geometry.buffers.length; i++)\n {\n var buffer = geometry.buffers[i];\n\n var glBuffer = buffer._glBuffers[this.CONTEXT_UID];\n\n if (buffer._updateID !== glBuffer.updateID)\n {\n glBuffer.updateID = buffer._updateID;\n\n // TODO can cache this on buffer! maybe added a getter / setter?\n var type = buffer.index ? gl.ELEMENT_ARRAY_BUFFER : gl.ARRAY_BUFFER;\n\n // TODO this could change if the VAO changes...\n // need to come up with a better way to cache..\n // if (this.boundBuffers[type] !== glBuffer)\n // {\n // this.boundBuffers[type] = glBuffer;\n gl.bindBuffer(type, glBuffer.buffer);\n // }\n\n this._boundBuffer = glBuffer;\n\n if (glBuffer.byteLength >= buffer.data.byteLength)\n {\n // offset is always zero for now!\n gl.bufferSubData(type, 0, buffer.data);\n }\n else\n {\n var drawType = buffer.static ? gl.STATIC_DRAW : gl.DYNAMIC_DRAW;\n\n glBuffer.byteLength = buffer.data.byteLength;\n gl.bufferData(type, buffer.data, drawType);\n }\n }\n }\n };\n\n /**\n * Check compability between a geometry and a program\n * @protected\n * @param {PIXI.Geometry} geometry - Geometry instance\n * @param {PIXI.Program} program - Program instance\n */\n GeometrySystem.prototype.checkCompatibility = function checkCompatibility (geometry, program)\n {\n // geometry must have at least all the attributes that the shader requires.\n var geometryAttributes = geometry.attributes;\n var shaderAttributes = program.attributeData;\n\n for (var j in shaderAttributes)\n {\n if (!geometryAttributes[j])\n {\n throw new Error((\"shader and geometry incompatible, geometry missing the \\\"\" + j + \"\\\" attribute\"));\n }\n }\n };\n\n /**\n * Takes a geometry and program and generates a unique signature for them.\n *\n * @param {PIXI.Geometry} geometry to get signature from\n * @param {PIXI.Program} program to test geometry against\n * @returns {String} Unique signature of the geometry and program\n * @protected\n */\n GeometrySystem.prototype.getSignature = function getSignature (geometry, program)\n {\n var attribs = geometry.attributes;\n var shaderAttributes = program.attributeData;\n\n var strings = ['g', geometry.id];\n\n for (var i in attribs)\n {\n if (shaderAttributes[i])\n {\n strings.push(i);\n }\n }\n\n return strings.join('-');\n };\n\n /**\n * Creates or gets Vao with the same structure as the geometry and stores it on the geometry.\n * If vao is created, it is bound automatically.\n *\n * @protected\n * @param {PIXI.Geometry} geometry - Instance of geometry to to generate Vao for\n * @param {PIXI.Program} program - Instance of program\n */\n GeometrySystem.prototype.initGeometryVao = function initGeometryVao (geometry, program)\n {\n this.checkCompatibility(geometry, program);\n\n var gl = this.gl;\n var CONTEXT_UID = this.CONTEXT_UID;\n\n var signature = this.getSignature(geometry, program);\n\n var vaoObjectHash = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n\n var vao = vaoObjectHash[signature];\n\n if (vao)\n {\n // this will give us easy access to the vao\n vaoObjectHash[program.id] = vao;\n\n return vao;\n }\n\n var buffers = geometry.buffers;\n var attributes = geometry.attributes;\n var tempStride = {};\n var tempStart = {};\n\n for (var j in buffers)\n {\n tempStride[j] = 0;\n tempStart[j] = 0;\n }\n\n for (var j$1 in attributes)\n {\n if (!attributes[j$1].size && program.attributeData[j$1])\n {\n attributes[j$1].size = program.attributeData[j$1].size;\n }\n else if (!attributes[j$1].size)\n {\n console.warn((\"PIXI Geometry attribute '\" + j$1 + \"' size cannot be determined (likely the bound shader does not have the attribute)\")); // eslint-disable-line\n }\n\n tempStride[attributes[j$1].buffer] += attributes[j$1].size * byteSizeMap$1[attributes[j$1].type];\n }\n\n for (var j$2 in attributes)\n {\n var attribute = attributes[j$2];\n var attribSize = attribute.size;\n\n if (attribute.stride === undefined)\n {\n if (tempStride[attribute.buffer] === attribSize * byteSizeMap$1[attribute.type])\n {\n attribute.stride = 0;\n }\n else\n {\n attribute.stride = tempStride[attribute.buffer];\n }\n }\n\n if (attribute.start === undefined)\n {\n attribute.start = tempStart[attribute.buffer];\n\n tempStart[attribute.buffer] += attribSize * byteSizeMap$1[attribute.type];\n }\n }\n\n vao = gl.createVertexArray();\n\n gl.bindVertexArray(vao);\n\n // first update - and create the buffers!\n // only create a gl buffer if it actually gets\n for (var i = 0; i < buffers.length; i++)\n {\n var buffer = buffers[i];\n\n if (!buffer._glBuffers[CONTEXT_UID])\n {\n buffer._glBuffers[CONTEXT_UID] = new GLBuffer(gl.createBuffer());\n this.managedBuffers[buffer.id] = buffer;\n buffer.disposeRunner.add(this);\n }\n\n buffer._glBuffers[CONTEXT_UID].refCount++;\n }\n\n // TODO - maybe make this a data object?\n // lets wait to see if we need to first!\n\n this.activateVao(geometry, program);\n\n this._activeVao = vao;\n\n // add it to the cache!\n vaoObjectHash[program.id] = vao;\n vaoObjectHash[signature] = vao;\n\n return vao;\n };\n\n /**\n * Disposes buffer\n * @param {PIXI.Buffer} buffer buffer with data\n * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray\n */\n GeometrySystem.prototype.disposeBuffer = function disposeBuffer (buffer, contextLost)\n {\n if (!this.managedBuffers[buffer.id])\n {\n return;\n }\n\n delete this.managedBuffers[buffer.id];\n\n var glBuffer = buffer._glBuffers[this.CONTEXT_UID];\n var gl = this.gl;\n\n buffer.disposeRunner.remove(this);\n\n if (!glBuffer)\n {\n return;\n }\n\n if (!contextLost)\n {\n gl.deleteBuffer(glBuffer.buffer);\n }\n\n delete buffer._glBuffers[this.CONTEXT_UID];\n };\n\n /**\n * Disposes geometry\n * @param {PIXI.Geometry} geometry Geometry with buffers. Only VAO will be disposed\n * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray\n */\n GeometrySystem.prototype.disposeGeometry = function disposeGeometry (geometry, contextLost)\n {\n if (!this.managedGeometries[geometry.id])\n {\n return;\n }\n\n delete this.managedGeometries[geometry.id];\n\n var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n var gl = this.gl;\n var buffers = geometry.buffers;\n\n geometry.disposeRunner.remove(this);\n\n if (!vaos)\n {\n return;\n }\n\n for (var i = 0; i < buffers.length; i++)\n {\n var buf = buffers[i]._glBuffers[this.CONTEXT_UID];\n\n buf.refCount--;\n if (buf.refCount === 0 && !contextLost)\n {\n this.disposeBuffer(buffers[i], contextLost);\n }\n }\n\n if (!contextLost)\n {\n for (var vaoId in vaos)\n {\n // delete only signatures, everything else are copies\n if (vaoId[0] === 'g')\n {\n var vao = vaos[vaoId];\n\n if (this._activeVao === vao)\n {\n this.unbind();\n }\n gl.deleteVertexArray(vao);\n }\n }\n }\n\n delete geometry.glVertexArrayObjects[this.CONTEXT_UID];\n };\n\n /**\n * dispose all WebGL resources of all managed geometries and buffers\n * @param {boolean} [contextLost=false] If context was lost, we suppress `gl.delete` calls\n */\n GeometrySystem.prototype.disposeAll = function disposeAll (contextLost)\n {\n var all = Object.keys(this.managedGeometries);\n\n for (var i = 0; i < all.length; i++)\n {\n this.disposeGeometry(this.managedGeometries[all[i]], contextLost);\n }\n all = Object.keys(this.managedBuffers);\n for (var i$1 = 0; i$1 < all.length; i$1++)\n {\n this.disposeBuffer(this.managedBuffers[all[i$1]], contextLost);\n }\n };\n\n /**\n * Activate vertex array object\n *\n * @protected\n * @param {PIXI.Geometry} geometry - Geometry instance\n * @param {PIXI.Program} program - Shader program instance\n */\n GeometrySystem.prototype.activateVao = function activateVao (geometry, program)\n {\n var gl = this.gl;\n var CONTEXT_UID = this.CONTEXT_UID;\n var buffers = geometry.buffers;\n var attributes = geometry.attributes;\n\n if (geometry.indexBuffer)\n {\n // first update the index buffer if we have one..\n gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, geometry.indexBuffer._glBuffers[CONTEXT_UID].buffer);\n }\n\n var lastBuffer = null;\n\n // add a new one!\n for (var j in attributes)\n {\n var attribute = attributes[j];\n var buffer = buffers[attribute.buffer];\n var glBuffer = buffer._glBuffers[CONTEXT_UID];\n\n if (program.attributeData[j])\n {\n if (lastBuffer !== glBuffer)\n {\n gl.bindBuffer(gl.ARRAY_BUFFER, glBuffer.buffer);\n\n lastBuffer = glBuffer;\n }\n\n var location = program.attributeData[j].location;\n\n // TODO introduce state again\n // we can optimise this for older devices that have no VAOs\n gl.enableVertexAttribArray(location);\n\n gl.vertexAttribPointer(location,\n attribute.size,\n attribute.type || gl.FLOAT,\n attribute.normalized,\n attribute.stride,\n attribute.start);\n\n if (attribute.instance)\n {\n // TODO calculate instance count based of this...\n if (this.hasInstance)\n {\n gl.vertexAttribDivisor(location, 1);\n }\n else\n {\n throw new Error('geometry error, GPU Instancing is not supported on this device');\n }\n }\n }\n }\n };\n\n /**\n * Draw the geometry\n *\n * @param {Number} type - the type primitive to render\n * @param {Number} [size] - the number of elements to be rendered\n * @param {Number} [start] - Starting index\n * @param {Number} [instanceCount] - the number of instances of the set of elements to execute\n */\n GeometrySystem.prototype.draw = function draw (type, size, start, instanceCount)\n {\n var ref = this;\n var gl = ref.gl;\n var geometry = this._activeGeometry;\n\n // TODO.. this should not change so maybe cache the function?\n\n if (geometry.indexBuffer)\n {\n var byteSize = geometry.indexBuffer.data.BYTES_PER_ELEMENT;\n var glType = byteSize === 2 ? gl.UNSIGNED_SHORT : gl.UNSIGNED_INT;\n\n if (byteSize === 2 || (byteSize === 4 && this.canUseUInt32ElementIndex))\n {\n if (geometry.instanced)\n {\n /* eslint-disable max-len */\n gl.drawElementsInstanced(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize, instanceCount || 1);\n /* eslint-enable max-len */\n }\n else\n {\n /* eslint-disable max-len */\n gl.drawElements(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize);\n /* eslint-enable max-len */\n }\n }\n else\n {\n console.warn('unsupported index buffer type: uint32');\n }\n }\n else if (geometry.instanced)\n {\n // TODO need a better way to calculate size..\n gl.drawArraysInstanced(type, start, size || geometry.getSize(), instanceCount || 1);\n }\n else\n {\n gl.drawArrays(type, start, size || geometry.getSize());\n }\n\n return this;\n };\n\n /**\n * Unbind/reset everything\n * @protected\n */\n GeometrySystem.prototype.unbind = function unbind ()\n {\n this.gl.bindVertexArray(null);\n this._activeVao = null;\n this._activeGeometry = null;\n };\n\n return GeometrySystem;\n}(System));\n\n/**\n * @method compileProgram\n * @private\n * @memberof PIXI.glCore.shader\n * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram}\n * @param vertexSrc {string|string[]} The vertex shader source as an array of strings.\n * @param fragmentSrc {string|string[]} The fragment shader source as an array of strings.\n * @param attributeLocations {Object} An attribute location map that lets you manually set the attribute locations\n * @return {WebGLProgram} the shader program\n */\nfunction compileProgram(gl, vertexSrc, fragmentSrc, attributeLocations)\n{\n var glVertShader = compileShader(gl, gl.VERTEX_SHADER, vertexSrc);\n var glFragShader = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc);\n\n var program = gl.createProgram();\n\n gl.attachShader(program, glVertShader);\n gl.attachShader(program, glFragShader);\n\n // optionally, set the attributes manually for the program rather than letting WebGL decide..\n if (attributeLocations)\n {\n for (var i in attributeLocations)\n {\n gl.bindAttribLocation(program, attributeLocations[i], i);\n }\n }\n\n gl.linkProgram(program);\n\n // if linking fails, then log and cleanup\n if (!gl.getProgramParameter(program, gl.LINK_STATUS))\n {\n console.error('Pixi.js Error: Could not initialize shader.');\n console.error('gl.VALIDATE_STATUS', gl.getProgramParameter(program, gl.VALIDATE_STATUS));\n console.error('gl.getError()', gl.getError());\n\n // if there is a program info log, log it\n if (gl.getProgramInfoLog(program) !== '')\n {\n console.warn('Pixi.js Warning: gl.getProgramInfoLog()', gl.getProgramInfoLog(program));\n }\n\n gl.deleteProgram(program);\n program = null;\n }\n\n // clean up some shaders\n gl.deleteShader(glVertShader);\n gl.deleteShader(glFragShader);\n\n return program;\n}\n\n/**\n * @private\n * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram}\n * @param type {Number} the type, can be either VERTEX_SHADER or FRAGMENT_SHADER\n * @param vertexSrc {string|string[]} The vertex shader source as an array of strings.\n * @return {WebGLShader} the shader\n */\nfunction compileShader(gl, type, src)\n{\n var shader = gl.createShader(type);\n\n gl.shaderSource(shader, src);\n gl.compileShader(shader);\n\n if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS))\n {\n console.warn(src);\n console.error(gl.getShaderInfoLog(shader));\n\n return null;\n }\n\n return shader;\n}\n\n/**\n * @method defaultValue\n * @memberof PIXI.glCore.shader\n * @param type {String} Type of value\n * @param size {Number}\n * @private\n */\nfunction defaultValue(type, size)\n{\n switch (type)\n {\n case 'float':\n return 0;\n\n case 'vec2':\n return new Float32Array(2 * size);\n\n case 'vec3':\n return new Float32Array(3 * size);\n\n case 'vec4':\n return new Float32Array(4 * size);\n\n case 'int':\n case 'sampler2D':\n case 'sampler2DArray':\n return 0;\n\n case 'ivec2':\n return new Int32Array(2 * size);\n\n case 'ivec3':\n return new Int32Array(3 * size);\n\n case 'ivec4':\n return new Int32Array(4 * size);\n\n case 'bool':\n return false;\n\n case 'bvec2':\n\n return booleanArray(2 * size);\n\n case 'bvec3':\n return booleanArray(3 * size);\n\n case 'bvec4':\n return booleanArray(4 * size);\n\n case 'mat2':\n return new Float32Array([1, 0,\n 0, 1]);\n\n case 'mat3':\n return new Float32Array([1, 0, 0,\n 0, 1, 0,\n 0, 0, 1]);\n\n case 'mat4':\n return new Float32Array([1, 0, 0, 0,\n 0, 1, 0, 0,\n 0, 0, 1, 0,\n 0, 0, 0, 1]);\n }\n\n return null;\n}\n\nfunction booleanArray(size)\n{\n var array = new Array(size);\n\n for (var i = 0; i < array.length; i++)\n {\n array[i] = false;\n }\n\n return array;\n}\n\nvar unknownContext = {};\nvar context = unknownContext;\n\n/**\n * returns a little WebGL context to use for program inspection.\n *\n * @static\n * @private\n * @returns {webGL-context} a gl context to test with\n */\nfunction getTestContext()\n{\n if (context === unknownContext || context.isContextLost())\n {\n var canvas = document.createElement('canvas');\n\n var gl;\n\n if (settings.PREFER_ENV >= ENV.WEBGL2)\n {\n gl = canvas.getContext('webgl2', {});\n }\n\n if (!gl)\n {\n gl = canvas.getContext('webgl', {})\n || canvas.getContext('experimental-webgl', {});\n\n if (!gl)\n {\n // fail, not able to get a context\n gl = null;\n }\n else\n {\n // for shader testing..\n gl.getExtension('WEBGL_draw_buffers');\n }\n }\n\n context = gl;\n }\n\n return context;\n}\n\nvar maxFragmentPrecision;\n\nfunction getMaxFragmentPrecision()\n{\n if (!maxFragmentPrecision)\n {\n maxFragmentPrecision = PRECISION.MEDIUM;\n var gl = getTestContext();\n\n if (gl)\n {\n if (gl.getShaderPrecisionFormat)\n {\n var shaderFragment = gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT);\n\n maxFragmentPrecision = shaderFragment.precision ? PRECISION.HIGH : PRECISION.MEDIUM;\n }\n }\n }\n\n return maxFragmentPrecision;\n}\n\n/**\n * Sets the float precision on the shader, ensuring the device supports the request precision.\n * If the precision is already present, it just ensures that the device is able to handle it.\n *\n * @private\n * @param {string} src - The shader source\n * @param {string} requestedPrecision - The request float precision of the shader. Options are 'lowp', 'mediump' or 'highp'.\n * @param {string} maxSupportedPrecision - The maximum precision the shader supports.\n *\n * @return {string} modified shader source\n */\nfunction setPrecision(src, requestedPrecision, maxSupportedPrecision)\n{\n if (src.substring(0, 9) !== 'precision')\n {\n // no precision supplied, so PixiJS will add the requested level.\n var precision = requestedPrecision;\n\n // If highp is requested but not supported, downgrade precision to a level all devices support.\n if (requestedPrecision === PRECISION.HIGH && maxSupportedPrecision !== PRECISION.HIGH)\n {\n precision = PRECISION.MEDIUM;\n }\n\n return (\"precision \" + precision + \" float;\\n\" + src);\n }\n else if (maxSupportedPrecision !== PRECISION.HIGH && src.substring(0, 15) === 'precision highp')\n {\n // precision was supplied, but at a level this device does not support, so downgrading to mediump.\n return src.replace('precision highp', 'precision mediump');\n }\n\n return src;\n}\n\nvar GLSL_TO_SIZE = {\n float: 1,\n vec2: 2,\n vec3: 3,\n vec4: 4,\n\n int: 1,\n ivec2: 2,\n ivec3: 3,\n ivec4: 4,\n\n bool: 1,\n bvec2: 2,\n bvec3: 3,\n bvec4: 4,\n\n mat2: 4,\n mat3: 9,\n mat4: 16,\n\n sampler2D: 1,\n};\n\n/**\n * @private\n * @method mapSize\n * @memberof PIXI.glCore.shader\n * @param type {String}\n * @return {Number}\n */\nfunction mapSize(type)\n{\n return GLSL_TO_SIZE[type];\n}\n\nvar GL_TABLE = null;\n\nvar GL_TO_GLSL_TYPES = {\n FLOAT: 'float',\n FLOAT_VEC2: 'vec2',\n FLOAT_VEC3: 'vec3',\n FLOAT_VEC4: 'vec4',\n\n INT: 'int',\n INT_VEC2: 'ivec2',\n INT_VEC3: 'ivec3',\n INT_VEC4: 'ivec4',\n\n BOOL: 'bool',\n BOOL_VEC2: 'bvec2',\n BOOL_VEC3: 'bvec3',\n BOOL_VEC4: 'bvec4',\n\n FLOAT_MAT2: 'mat2',\n FLOAT_MAT3: 'mat3',\n FLOAT_MAT4: 'mat4',\n\n SAMPLER_2D: 'sampler2D',\n SAMPLER_CUBE: 'samplerCube',\n SAMPLER_2D_ARRAY: 'sampler2DArray',\n};\n\nfunction mapType(gl, type)\n{\n if (!GL_TABLE)\n {\n var typeNames = Object.keys(GL_TO_GLSL_TYPES);\n\n GL_TABLE = {};\n\n for (var i = 0; i < typeNames.length; ++i)\n {\n var tn = typeNames[i];\n\n GL_TABLE[gl[tn]] = GL_TO_GLSL_TYPES[tn];\n }\n }\n\n return GL_TABLE[type];\n}\n\n// cv = CachedValue\n// v = value\n// ud = uniformData\n// uv = uniformValue\n// l = location\nvar GLSL_TO_SINGLE_SETTERS_CACHED = {\n\n float: \"\\n if(cv !== v)\\n {\\n cv.v = v;\\n gl.uniform1f(location, v)\\n }\",\n\n vec2: \"\\n if(cv[0] !== v[0] || cv[1] !== v[1])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n gl.uniform2f(location, v[0], v[1])\\n }\",\n\n vec3: \"\\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n cv[2] = v[2];\\n\\n gl.uniform3f(location, v[0], v[1], v[2])\\n }\",\n\n vec4: 'gl.uniform4f(location, v[0], v[1], v[2], v[3])',\n\n int: 'gl.uniform1i(location, v)',\n ivec2: 'gl.uniform2i(location, v[0], v[1])',\n ivec3: 'gl.uniform3i(location, v[0], v[1], v[2])',\n ivec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])',\n\n bool: 'gl.uniform1i(location, v)',\n bvec2: 'gl.uniform2i(location, v[0], v[1])',\n bvec3: 'gl.uniform3i(location, v[0], v[1], v[2])',\n bvec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])',\n\n mat2: 'gl.uniformMatrix2fv(location, false, v)',\n mat3: 'gl.uniformMatrix3fv(location, false, v)',\n mat4: 'gl.uniformMatrix4fv(location, false, v)',\n\n sampler2D: 'gl.uniform1i(location, v)',\n samplerCube: 'gl.uniform1i(location, v)',\n sampler2DArray: 'gl.uniform1i(location, v)',\n};\n\nvar GLSL_TO_ARRAY_SETTERS = {\n\n float: \"gl.uniform1fv(location, v)\",\n\n vec2: \"gl.uniform2fv(location, v)\",\n vec3: \"gl.uniform3fv(location, v)\",\n vec4: 'gl.uniform4fv(location, v)',\n\n mat4: 'gl.uniformMatrix4fv(location, false, v)',\n mat3: 'gl.uniformMatrix3fv(location, false, v)',\n mat2: 'gl.uniformMatrix2fv(location, false, v)',\n\n int: 'gl.uniform1iv(location, v)',\n ivec2: 'gl.uniform2iv(location, v)',\n ivec3: 'gl.uniform3iv(location, v)',\n ivec4: 'gl.uniform4iv(location, v)',\n\n bool: 'gl.uniform1iv(location, v)',\n bvec2: 'gl.uniform2iv(location, v)',\n bvec3: 'gl.uniform3iv(location, v)',\n bvec4: 'gl.uniform4iv(location, v)',\n\n sampler2D: 'gl.uniform1iv(location, v)',\n samplerCube: 'gl.uniform1iv(location, v)',\n sampler2DArray: 'gl.uniform1iv(location, v)',\n};\n\nfunction generateUniformsSync(group, uniformData)\n{\n var textureCount = 0;\n var func = \"var v = null;\\n var cv = null\\n var gl = renderer.gl\";\n\n for (var i in group.uniforms)\n {\n var data = uniformData[i];\n\n if (!data)\n {\n if (group.uniforms[i].group)\n {\n func += \"\\n renderer.shader.syncUniformGroup(uv.\" + i + \");\\n \";\n }\n\n continue;\n }\n\n // TODO && uniformData[i].value !== 0 <-- do we still need this?\n if (data.type === 'float' && data.size === 1)\n {\n func += \"\\n if(uv.\" + i + \" !== ud.\" + i + \".value)\\n {\\n ud.\" + i + \".value = uv.\" + i + \"\\n gl.uniform1f(ud.\" + i + \".location, uv.\" + i + \")\\n }\\n\";\n }\n /* eslint-disable max-len */\n else if ((data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray)\n /* eslint-disable max-len */\n {\n func += \"\\n renderer.texture.bind(uv.\" + i + \", \" + textureCount + \");\\n\\n if(ud.\" + i + \".value !== \" + textureCount + \")\\n {\\n ud.\" + i + \".value = \" + textureCount + \";\\n gl.uniform1i(ud.\" + i + \".location, \" + textureCount + \");\\n; // eslint-disable-line max-len\\n }\\n\";\n\n textureCount++;\n }\n else if (data.type === 'mat3' && data.size === 1)\n {\n if (group.uniforms[i].a !== undefined)\n {\n // TODO and some smart caching dirty ids here!\n func += \"\\n gl.uniformMatrix3fv(ud.\" + i + \".location, false, uv.\" + i + \".toArray(true));\\n \\n\";\n }\n else\n {\n func += \"\\n gl.uniformMatrix3fv(ud.\" + i + \".location, false, uv.\" + i + \");\\n \\n\";\n }\n }\n else if (data.type === 'vec2' && data.size === 1)\n {\n // TODO - do we need both here?\n // maybe we can get away with only using points?\n if (group.uniforms[i].x !== undefined)\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v.x || cv[1] !== v.y)\\n {\\n cv[0] = v.x;\\n cv[1] = v.y;\\n gl.uniform2f(ud.\" + i + \".location, v.x, v.y);\\n }\\n\";\n }\n else\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v[0] || cv[1] !== v[1])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n gl.uniform2f(ud.\" + i + \".location, v[0], v[1]);\\n }\\n \\n\";\n }\n }\n else if (data.type === 'vec4' && data.size === 1)\n {\n // TODO - do we need both here?\n // maybe we can get away with only using points?\n if (group.uniforms[i].width !== undefined)\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v.x || cv[1] !== v.y || cv[2] !== v.width || cv[3] !== v.height)\\n {\\n cv[0] = v.x;\\n cv[1] = v.y;\\n cv[2] = v.width;\\n cv[3] = v.height;\\n gl.uniform4f(ud.\" + i + \".location, v.x, v.y, v.width, v.height)\\n }\\n\";\n }\n else\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2] || cv[3] !== v[3])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n cv[2] = v[2];\\n cv[3] = v[3];\\n\\n gl.uniform4f(ud.\" + i + \".location, v[0], v[1], v[2], v[3])\\n }\\n \\n\";\n }\n }\n else\n {\n var templateType = (data.size === 1) ? GLSL_TO_SINGLE_SETTERS_CACHED : GLSL_TO_ARRAY_SETTERS;\n\n var template = templateType[data.type].replace('location', (\"ud.\" + i + \".location\"));\n\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n \" + template + \";\\n\";\n }\n }\n\n return new Function('ud', 'uv', 'renderer', func); // eslint-disable-line no-new-func\n}\n\nvar fragTemplate = [\n 'precision mediump float;',\n 'void main(void){',\n 'float test = 0.1;',\n '%forloop%',\n 'gl_FragColor = vec4(0.0);',\n '}' ].join('\\n');\n\nfunction checkMaxIfStatementsInShader(maxIfs, gl)\n{\n if (maxIfs === 0)\n {\n throw new Error('Invalid value of `0` passed to `checkMaxIfStatementsInShader`');\n }\n\n var shader = gl.createShader(gl.FRAGMENT_SHADER);\n\n while (true) // eslint-disable-line no-constant-condition\n {\n var fragmentSrc = fragTemplate.replace(/%forloop%/gi, generateIfTestSrc(maxIfs));\n\n gl.shaderSource(shader, fragmentSrc);\n gl.compileShader(shader);\n\n if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS))\n {\n maxIfs = (maxIfs / 2) | 0;\n }\n else\n {\n // valid!\n break;\n }\n }\n\n return maxIfs;\n}\n\nfunction generateIfTestSrc(maxIfs)\n{\n var src = '';\n\n for (var i = 0; i < maxIfs; ++i)\n {\n if (i > 0)\n {\n src += '\\nelse ';\n }\n\n if (i < maxIfs - 1)\n {\n src += \"if(test == \" + i + \".0){}\";\n }\n }\n\n return src;\n}\n\n// Cache the result to prevent running this over and over\nvar unsafeEval;\n\n/**\n * Not all platforms allow to generate function code (e.g., `new Function`).\n * this provides the platform-level detection.\n *\n * @private\n * @returns {boolean}\n */\nfunction unsafeEvalSupported()\n{\n if (typeof unsafeEval === 'boolean')\n {\n return unsafeEval;\n }\n\n try\n {\n /* eslint-disable no-new-func */\n var func = new Function('param1', 'param2', 'param3', 'return param1[param2] === param3;');\n /* eslint-enable no-new-func */\n\n unsafeEval = func({ a: 'b' }, 'a', 'b') === true;\n }\n catch (e)\n {\n unsafeEval = false;\n }\n\n return unsafeEval;\n}\n\nvar defaultFragment = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n gl_FragColor *= texture2D(uSampler, vTextureCoord);\\n}\";\n\nvar defaultVertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void){\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n vTextureCoord = aTextureCoord;\\n}\\n\";\n\n// import * as from '../systems/shader/shader';\n\nvar UID$3 = 0;\n\nvar nameCache = {};\n\n/**\n * Helper class to create a shader program.\n *\n * @class\n * @memberof PIXI\n */\nvar Program = function Program(vertexSrc, fragmentSrc, name)\n{\n if ( name === void 0 ) name = 'pixi-shader';\n\n this.id = UID$3++;\n\n /**\n * The vertex shader.\n *\n * @member {string}\n */\n this.vertexSrc = vertexSrc || Program.defaultVertexSrc;\n\n /**\n * The fragment shader.\n *\n * @member {string}\n */\n this.fragmentSrc = fragmentSrc || Program.defaultFragmentSrc;\n\n this.vertexSrc = this.vertexSrc.trim();\n this.fragmentSrc = this.fragmentSrc.trim();\n\n if (this.vertexSrc.substring(0, 8) !== '#version')\n {\n name = name.replace(/\\s+/g, '-');\n\n if (nameCache[name])\n {\n nameCache[name]++;\n name += \"-\" + (nameCache[name]);\n }\n else\n {\n nameCache[name] = 1;\n }\n\n this.vertexSrc = \"#define SHADER_NAME \" + name + \"\\n\" + (this.vertexSrc);\n this.fragmentSrc = \"#define SHADER_NAME \" + name + \"\\n\" + (this.fragmentSrc);\n\n this.vertexSrc = setPrecision(this.vertexSrc, settings.PRECISION_VERTEX, PRECISION.HIGH);\n this.fragmentSrc = setPrecision(this.fragmentSrc, settings.PRECISION_FRAGMENT, getMaxFragmentPrecision());\n }\n\n // currently this does not extract structs only default types\n this.extractData(this.vertexSrc, this.fragmentSrc);\n\n // this is where we store shader references..\n this.glPrograms = {};\n\n this.syncUniforms = null;\n};\n\nvar staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } };\n\n/**\n * Extracts the data for a buy creating a small test program\n * or reading the src directly.\n * @protected\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n */\nProgram.prototype.extractData = function extractData (vertexSrc, fragmentSrc)\n{\n var gl = getTestContext();\n\n if (gl)\n {\n var program = compileProgram(gl, vertexSrc, fragmentSrc);\n\n this.attributeData = this.getAttributeData(program, gl);\n this.uniformData = this.getUniformData(program, gl);\n\n gl.deleteProgram(program);\n }\n else\n {\n this.uniformData = {};\n this.attributeData = {};\n }\n};\n\n/**\n * returns the attribute data from the program\n * @private\n *\n * @param {WebGLProgram} [program] - the WebGL program\n * @param {WebGLRenderingContext} [gl] - the WebGL context\n *\n * @returns {object} the attribute data for this program\n */\nProgram.prototype.getAttributeData = function getAttributeData (program, gl)\n{\n var attributes = {};\n var attributesArray = [];\n\n var totalAttributes = gl.getProgramParameter(program, gl.ACTIVE_ATTRIBUTES);\n\n for (var i = 0; i < totalAttributes; i++)\n {\n var attribData = gl.getActiveAttrib(program, i);\n var type = mapType(gl, attribData.type);\n\n /*eslint-disable */\n var data = {\n type: type,\n name: attribData.name,\n size: mapSize(type),\n location: 0,\n };\n /* eslint-enable */\n\n attributes[attribData.name] = data;\n attributesArray.push(data);\n }\n\n attributesArray.sort(function (a, b) { return (a.name > b.name) ? 1 : -1; }); // eslint-disable-line no-confusing-arrow\n\n for (var i$1 = 0; i$1 < attributesArray.length; i$1++)\n {\n attributesArray[i$1].location = i$1;\n }\n\n return attributes;\n};\n\n/**\n * returns the uniform data from the program\n * @private\n *\n * @param {webGL-program} [program] - the webgl program\n * @param {context} [gl] - the WebGL context\n *\n * @returns {object} the uniform data for this program\n */\nProgram.prototype.getUniformData = function getUniformData (program, gl)\n{\n var uniforms = {};\n\n var totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS);\n\n // TODO expose this as a prop?\n // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$');\n // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$');\n\n for (var i = 0; i < totalUniforms; i++)\n {\n var uniformData = gl.getActiveUniform(program, i);\n var name = uniformData.name.replace(/\\[.*?\\]/, '');\n\n var isArray = uniformData.name.match(/\\[.*?\\]/, '');\n var type = mapType(gl, uniformData.type);\n\n /*eslint-disable */\n uniforms[name] = {\n type: type,\n size: uniformData.size,\n isArray:isArray,\n value: defaultValue(type, uniformData.size),\n };\n /* eslint-enable */\n }\n\n return uniforms;\n};\n\n/**\n * The default vertex shader source\n *\n * @static\n * @constant\n * @member {string}\n */\nstaticAccessors.defaultVertexSrc.get = function ()\n{\n return defaultVertex;\n};\n\n/**\n * The default fragment shader source\n *\n * @static\n * @constant\n * @member {string}\n */\nstaticAccessors.defaultFragmentSrc.get = function ()\n{\n return defaultFragment;\n};\n\n/**\n * A short hand function to create a program based of a vertex and fragment shader\n * this method will also check to see if there is a cached program.\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones.\n *\n * @returns {PIXI.Program} an shiny new Pixi shader!\n */\nProgram.from = function from (vertexSrc, fragmentSrc, name)\n{\n var key = vertexSrc + fragmentSrc;\n\n var program = ProgramCache[key];\n\n if (!program)\n {\n ProgramCache[key] = program = new Program(vertexSrc, fragmentSrc, name);\n }\n\n return program;\n};\n\nObject.defineProperties( Program, staticAccessors );\n\n/**\n * A helper class for shaders\n *\n * @class\n * @memberof PIXI\n */\nvar Shader = function Shader(program, uniforms)\n{\n /**\n * Program that the shader uses\n *\n * @member {PIXI.Program}\n */\n this.program = program;\n\n // lets see whats been passed in\n // uniforms should be converted to a uniform group\n if (uniforms)\n {\n if (uniforms instanceof UniformGroup)\n {\n this.uniformGroup = uniforms;\n }\n else\n {\n this.uniformGroup = new UniformGroup(uniforms);\n }\n }\n else\n {\n this.uniformGroup = new UniformGroup({});\n }\n\n // time to build some getters and setters!\n // I guess down the line this could sort of generate an instruction list rather than use dirty ids?\n // does the trick for now though!\n for (var i in program.uniformData)\n {\n if (this.uniformGroup.uniforms[i] instanceof Array)\n {\n this.uniformGroup.uniforms[i] = new Float32Array(this.uniformGroup.uniforms[i]);\n }\n }\n};\n\nvar prototypeAccessors$2 = { uniforms: { configurable: true } };\n\n// TODO move to shader system..\nShader.prototype.checkUniformExists = function checkUniformExists (name, group)\n{\n if (group.uniforms[name])\n {\n return true;\n }\n\n for (var i in group.uniforms)\n {\n var uniform = group.uniforms[i];\n\n if (uniform.group)\n {\n if (this.checkUniformExists(name, uniform))\n {\n return true;\n }\n }\n }\n\n return false;\n};\n\nShader.prototype.destroy = function destroy ()\n{\n // usage count on programs?\n // remove if not used!\n this.uniformGroup = null;\n};\n\n/**\n * Shader uniform values, shortcut for `uniformGroup.uniforms`\n * @readonly\n * @member {object}\n */\nprototypeAccessors$2.uniforms.get = function ()\n{\n return this.uniformGroup.uniforms;\n};\n\n/**\n * A short hand function to create a shader based of a vertex and fragment shader\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones.\n *\n * @returns {PIXI.Shader} an shiny new Pixi shader!\n */\nShader.from = function from (vertexSrc, fragmentSrc, uniforms)\n{\n var program = Program.from(vertexSrc, fragmentSrc);\n\n return new Shader(program, uniforms);\n};\n\nObject.defineProperties( Shader.prototype, prototypeAccessors$2 );\n\n/* eslint-disable max-len */\n\nvar BLEND = 0;\nvar OFFSET = 1;\nvar CULLING = 2;\nvar DEPTH_TEST = 3;\nvar WINDING = 4;\n\n/**\n * This is a WebGL state, and is is passed The WebGL StateManager.\n *\n * Each mesh rendered may require WebGL to be in a different state.\n * For example you may want different blend mode or to enable polygon offsets\n *\n * @class\n * @memberof PIXI\n */\nvar State = function State()\n{\n this.data = 0;\n\n this.blendMode = BLEND_MODES.NORMAL;\n this.polygonOffset = 0;\n\n this.blend = true;\n // this.depthTest = true;\n};\n\nvar prototypeAccessors$3 = { blend: { configurable: true },offsets: { configurable: true },culling: { configurable: true },depthTest: { configurable: true },clockwiseFrontFace: { configurable: true },blendMode: { configurable: true },polygonOffset: { configurable: true } };\n\n/**\n * Activates blending of the computed fragment color values\n *\n * @member {boolean}\n */\nprototypeAccessors$3.blend.get = function ()\n{\n return !!(this.data & (1 << BLEND));\n};\n\nprototypeAccessors$3.blend.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << BLEND)) !== value)\n {\n this.data ^= (1 << BLEND);\n }\n};\n\n/**\n * Activates adding an offset to depth values of polygon's fragments\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.offsets.get = function ()\n{\n return !!(this.data & (1 << OFFSET));\n};\n\nprototypeAccessors$3.offsets.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << OFFSET)) !== value)\n {\n this.data ^= (1 << OFFSET);\n }\n};\n\n/**\n * Activates culling of polygons.\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.culling.get = function ()\n{\n return !!(this.data & (1 << CULLING));\n};\n\nprototypeAccessors$3.culling.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << CULLING)) !== value)\n {\n this.data ^= (1 << CULLING);\n }\n};\n\n/**\n * Activates depth comparisons and updates to the depth buffer.\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.depthTest.get = function ()\n{\n return !!(this.data & (1 << DEPTH_TEST));\n};\n\nprototypeAccessors$3.depthTest.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << DEPTH_TEST)) !== value)\n {\n this.data ^= (1 << DEPTH_TEST);\n }\n};\n\n/**\n * Specifies whether or not front or back-facing polygons can be culled.\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.clockwiseFrontFace.get = function ()\n{\n return !!(this.data & (1 << WINDING));\n};\n\nprototypeAccessors$3.clockwiseFrontFace.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << WINDING)) !== value)\n {\n this.data ^= (1 << WINDING);\n }\n};\n\n/**\n * The blend mode to be applied when this state is set. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n * Setting this mode to anything other than NO_BLEND will automatically switch blending on.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\nprototypeAccessors$3.blendMode.get = function ()\n{\n return this._blendMode;\n};\n\nprototypeAccessors$3.blendMode.set = function (value) // eslint-disable-line require-jsdoc\n{\n this.blend = (value !== BLEND_MODES.NONE);\n this._blendMode = value;\n};\n\n/**\n * The polygon offset. Setting this property to anything other than 0 will automatically enable polygon offset fill.\n *\n * @member {number}\n * @default 0\n */\nprototypeAccessors$3.polygonOffset.get = function ()\n{\n return this._polygonOffset;\n};\n\nprototypeAccessors$3.polygonOffset.set = function (value) // eslint-disable-line require-jsdoc\n{\n this.offsets = !!value;\n this._polygonOffset = value;\n};\n\nState.for2d = function for2d ()\n{\n var state = new State();\n\n state.depthTest = false;\n state.blend = true;\n\n return state;\n};\n\nObject.defineProperties( State.prototype, prototypeAccessors$3 );\n\nvar defaultVertex$1 = \"attribute vec2 aVertexPosition;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nuniform vec4 inputSize;\\nuniform vec4 outputFrame;\\n\\nvec4 filterVertexPosition( void )\\n{\\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\\n\\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\\n}\\n\\nvec2 filterTextureCoord( void )\\n{\\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\\n}\\n\\nvoid main(void)\\n{\\n gl_Position = filterVertexPosition();\\n vTextureCoord = filterTextureCoord();\\n}\\n\";\n\nvar defaultFragment$1 = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n gl_FragColor = texture2D(uSampler, vTextureCoord);\\n}\\n\";\n\n/**\n * Filter is a special type of WebGL shader that is applied to the screen.\n *\n * {@link http://pixijs.io/examples/#/filters/blur-filter.js Example} of the\n * {@link PIXI.filters.BlurFilter BlurFilter}.\n *\n * ### Usage\n * Filters can be applied to any DisplayObject or Container.\n * PixiJS' `FilterSystem` renders the container into temporary Framebuffer,\n * then filter renders it to the screen.\n * Multiple filters can be added to the `filters` array property and stacked on each other.\n *\n * ```\n * const filter = new PIXI.Filter(myShaderVert, myShaderFrag, { myUniform: 0.5 });\n * const container = new PIXI.Container();\n * container.filters = [filter];\n * ```\n *\n * ### Previous Version Differences\n *\n * In PixiJS **v3**, a filter was always applied to _whole screen_.\n *\n * In PixiJS **v4**, a filter can be applied _only part of the screen_.\n * Developers had to create a set of uniforms to deal with coordinates.\n *\n * In PixiJS **v5** combines _both approaches_.\n * Developers can use normal coordinates of v3 and then allow filter to use partial Framebuffers,\n * bringing those extra uniforms into account.\n *\n * Also be aware that we have changed default vertex shader, please consult\n * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}.\n *\n * ### Built-in Uniforms\n *\n * PixiJS viewport uses screen (CSS) coordinates, `(0, 0, renderer.screen.width, renderer.screen.height)`,\n * and `projectionMatrix` uniform maps it to the gl viewport.\n *\n * **uSampler**\n *\n * The most important uniform is the input texture that container was rendered into.\n * _Important note: as with all Framebuffers in PixiJS, both input and output are\n * premultiplied by alpha._\n *\n * By default, input normalized coordinates are passed to fragment shader with `vTextureCoord`.\n * Use it to sample the input.\n *\n * ```\n * const fragment = `\n * varying vec2 vTextureCoord;\n * uniform sampler2D uSampler;\n * void main(void)\n * {\n * gl_FragColor = texture2D(uSampler, vTextureCoord);\n * }\n * `;\n *\n * const myFilter = new PIXI.Filter(null, fragment);\n * ```\n *\n * This filter is just one uniform less than {@link PIXI.filters.AlphaFilter AlphaFilter}.\n *\n * **outputFrame**\n *\n * The `outputFrame` holds the rectangle where filter is applied in screen (CSS) coordinates.\n * It's the same as `renderer.screen` for a fullscreen filter.\n * Only a part of `outputFrame.zw` size of temporary Framebuffer is used,\n * `(0, 0, outputFrame.width, outputFrame.height)`,\n *\n * Filters uses this quad to normalized (0-1) space, its passed into `aVertexPosition` attribute.\n * To calculate vertex position in screen space using normalized (0-1) space:\n *\n * ```\n * vec4 filterVertexPosition( void )\n * {\n * vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n * return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n * }\n * ```\n *\n * **inputSize**\n *\n * Temporary framebuffer is different, it can be either the size of screen, either power-of-two.\n * The `inputSize.xy` are size of temporary framebuffer that holds input.\n * The `inputSize.zw` is inverted, it's a shortcut to evade division inside the shader.\n *\n * Set `inputSize.xy = outputFrame.zw` for a fullscreen filter.\n *\n * To calculate input normalized coordinate, you have to map it to filter normalized space.\n * Multiply by `outputFrame.zw` to get input coordinate.\n * Divide by `inputSize.xy` to get input normalized coordinate.\n *\n * ```\n * vec2 filterTextureCoord( void )\n * {\n * return aVertexPosition * (outputFrame.zw * inputSize.zw); // same as /inputSize.xy\n * }\n * ```\n * **resolution**\n *\n * The `resolution` is the ratio of screen (CSS) pixels to real pixels.\n *\n * **inputPixel**\n *\n * `inputPixel.xy` is the size of framebuffer in real pixels, same as `inputSize.xy * resolution`\n * `inputPixel.zw` is inverted `inputPixel.xy`.\n *\n * It's handy for filters that use neighbour pixels, like {@link PIXI.filters.FXAAFilter FXAAFilter}.\n *\n * **inputClamp**\n *\n * If you try to get info from outside of used part of Framebuffer - you'll get undefined behaviour.\n * For displacements, coordinates has to be clamped.\n *\n * The `inputClamp.xy` is left-top pixel center, you may ignore it, because we use left-top part of Framebuffer\n * `inputClamp.zw` is bottom-right pixel center.\n *\n * ```\n * vec4 color = texture2D(uSampler, clamp(modifigedTextureCoord, inputClamp.xy, inputClamp.zw))\n * ```\n * OR\n * ```\n * vec4 color = texture2D(uSampler, min(modifigedTextureCoord, inputClamp.zw))\n * ```\n *\n * ### Additional Information\n *\n * Complete documentation on Filter usage is located in the\n * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}.\n *\n * Since PixiJS only had a handful of built-in filters, additional filters can be downloaded\n * {@link https://github.com/pixijs/pixi-filters here} from the PixiJS Filters repository.\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.Shader\n */\nvar Filter = /*@__PURE__*/(function (Shader) {\n function Filter(vertexSrc, fragmentSrc, uniforms)\n {\n var program = Program.from(vertexSrc || Filter.defaultVertexSrc,\n fragmentSrc || Filter.defaultFragmentSrc);\n\n Shader.call(this, program, uniforms);\n\n /**\n * The padding of the filter. Some filters require extra space to breath such as a blur.\n * Increasing this will add extra width and height to the bounds of the object that the\n * filter is applied to.\n *\n * @member {number}\n */\n this.padding = 0;\n\n /**\n * The resolution of the filter. Setting this to be lower will lower the quality but\n * increase the performance of the filter.\n *\n * @member {number}\n */\n this.resolution = settings.FILTER_RESOLUTION;\n\n /**\n * If enabled is true the filter is applied, if false it will not.\n *\n * @member {boolean}\n */\n this.enabled = true;\n\n /**\n * If enabled, PixiJS will fit the filter area into boundaries for better performance.\n * Switch it off if it does not work for specific shader.\n *\n * @member {boolean}\n */\n this.autoFit = true;\n\n /**\n * Legacy filters use position and uvs from attributes\n * @member {boolean}\n * @readonly\n */\n this.legacy = !!this.program.attributeData.aTextureCoord;\n\n /**\n * The WebGL state the filter requires to render\n * @member {PIXI.State}\n */\n this.state = new State();\n }\n\n if ( Shader ) Filter.__proto__ = Shader;\n Filter.prototype = Object.create( Shader && Shader.prototype );\n Filter.prototype.constructor = Filter;\n\n var prototypeAccessors = { blendMode: { configurable: true } };\n var staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } };\n\n /**\n * Applies the filter\n *\n * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it\n * @param {object} [currentState] - It's current state of filter.\n * There are some useful properties in the currentState :\n * target, filters, sourceFrame, destinationFrame, renderTarget, resolution\n */\n Filter.prototype.apply = function apply (filterManager, input, output, clear, currentState)\n {\n // do as you please!\n\n filterManager.applyFilter(this, input, output, clear, currentState);\n\n // or just do a regular render..\n };\n\n /**\n * Sets the blendmode of the filter\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n */\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n prototypeAccessors.blendMode.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.state.blendMode = value;\n };\n\n /**\n * The default vertex shader source\n *\n * @static\n * @type {string}\n * @constant\n */\n staticAccessors.defaultVertexSrc.get = function ()\n {\n return defaultVertex$1;\n };\n\n /**\n * The default fragment shader source\n *\n * @static\n * @type {string}\n * @constant\n */\n staticAccessors.defaultFragmentSrc.get = function ()\n {\n return defaultFragment$1;\n };\n\n Object.defineProperties( Filter.prototype, prototypeAccessors );\n Object.defineProperties( Filter, staticAccessors );\n\n return Filter;\n}(Shader));\n\n/**\n * Used for caching shader IDs\n *\n * @static\n * @type {object}\n * @protected\n */\nFilter.SOURCE_KEY_MAP = {};\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 otherMatrix;\\n\\nvarying vec2 vMaskCoord;\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vMaskCoord;\\nvarying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform sampler2D mask;\\nuniform float alpha;\\nuniform float npmAlpha;\\nuniform vec4 maskClamp;\\n\\nvoid main(void)\\n{\\n float clip = step(3.5,\\n step(maskClamp.x, vMaskCoord.x) +\\n step(maskClamp.y, vMaskCoord.y) +\\n step(vMaskCoord.x, maskClamp.z) +\\n step(vMaskCoord.y, maskClamp.w));\\n\\n vec4 original = texture2D(uSampler, vTextureCoord);\\n vec4 masky = texture2D(mask, vMaskCoord);\\n float alphaMul = 1.0 - npmAlpha * (1.0 - masky.a);\\n\\n original *= (alphaMul * masky.r * alpha * clip);\\n\\n gl_FragColor = original;\\n}\\n\";\n\nvar tempMat = new Matrix();\n\n/**\n * Class controls uv mapping from Texture normal space to BaseTexture normal space.\n *\n * Takes `trim` and `rotate` into account. May contain clamp settings for Meshes and TilingSprite.\n *\n * Can be used in Texture `uvMatrix` field, or separately, you can use different clamp settings on the same texture.\n * If you want to add support for texture region of certain feature or filter, that's what you're looking for.\n *\n * Takes track of Texture changes through `_lastTextureID` private field.\n * Use `update()` method call to track it from outside.\n *\n * @see PIXI.Texture\n * @see PIXI.Mesh\n * @see PIXI.TilingSprite\n * @class\n * @memberof PIXI\n */\nvar TextureMatrix = function TextureMatrix(texture, clampMargin)\n{\n this._texture = texture;\n\n /**\n * Matrix operation that converts texture region coords to texture coords\n * @member {PIXI.Matrix}\n * @readonly\n */\n this.mapCoord = new Matrix();\n\n /**\n * Clamp region for normalized coords, left-top pixel center in xy , bottom-right in zw.\n * Calculated based on clampOffset.\n * @member {Float32Array}\n * @readonly\n */\n this.uClampFrame = new Float32Array(4);\n\n /**\n * Normalized clamp offset.\n * Calculated based on clampOffset.\n * @member {Float32Array}\n * @readonly\n */\n this.uClampOffset = new Float32Array(2);\n\n /**\n * Tracks Texture frame changes\n * @member {number}\n * @protected\n */\n this._updateID = -1;\n\n /**\n * Changes frame clamping\n * Works with TilingSprite and Mesh\n * Change to 1.5 if you texture has repeated right and bottom lines, that leads to smoother borders\n *\n * @default 0\n * @member {number}\n */\n this.clampOffset = 0;\n\n /**\n * Changes frame clamping\n * Works with TilingSprite and Mesh\n * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas\n *\n * @default 0.5\n * @member {number}\n */\n this.clampMargin = (typeof clampMargin === 'undefined') ? 0.5 : clampMargin;\n\n /**\n * If texture size is the same as baseTexture\n * @member {boolean}\n * @default false\n * @readonly\n */\n this.isSimple = false;\n};\n\nvar prototypeAccessors$4 = { texture: { configurable: true } };\n\n/**\n * texture property\n * @member {PIXI.Texture}\n */\nprototypeAccessors$4.texture.get = function ()\n{\n return this._texture;\n};\n\nprototypeAccessors$4.texture.set = function (value) // eslint-disable-line require-jsdoc\n{\n this._texture = value;\n this._updateID = -1;\n};\n\n/**\n * Multiplies uvs array to transform\n * @param {Float32Array} uvs mesh uvs\n * @param {Float32Array} [out=uvs] output\n * @returns {Float32Array} output\n */\nTextureMatrix.prototype.multiplyUvs = function multiplyUvs (uvs, out)\n{\n if (out === undefined)\n {\n out = uvs;\n }\n\n var mat = this.mapCoord;\n\n for (var i = 0; i < uvs.length; i += 2)\n {\n var x = uvs[i];\n var y = uvs[i + 1];\n\n out[i] = (x * mat.a) + (y * mat.c) + mat.tx;\n out[i + 1] = (x * mat.b) + (y * mat.d) + mat.ty;\n }\n\n return out;\n};\n\n/**\n * updates matrices if texture was changed\n * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case\n * @returns {boolean} whether or not it was updated\n */\nTextureMatrix.prototype.update = function update (forceUpdate)\n{\n var tex = this._texture;\n\n if (!tex || !tex.valid)\n {\n return false;\n }\n\n if (!forceUpdate\n && this._updateID === tex._updateID)\n {\n return false;\n }\n\n this._updateID = tex._updateID;\n\n var uvs = tex._uvs;\n\n this.mapCoord.set(uvs.x1 - uvs.x0, uvs.y1 - uvs.y0, uvs.x3 - uvs.x0, uvs.y3 - uvs.y0, uvs.x0, uvs.y0);\n\n var orig = tex.orig;\n var trim = tex.trim;\n\n if (trim)\n {\n tempMat.set(orig.width / trim.width, 0, 0, orig.height / trim.height,\n -trim.x / trim.width, -trim.y / trim.height);\n this.mapCoord.append(tempMat);\n }\n\n var texBase = tex.baseTexture;\n var frame = this.uClampFrame;\n var margin = this.clampMargin / texBase.resolution;\n var offset = this.clampOffset;\n\n frame[0] = (tex._frame.x + margin + offset) / texBase.width;\n frame[1] = (tex._frame.y + margin + offset) / texBase.height;\n frame[2] = (tex._frame.x + tex._frame.width - margin + offset) / texBase.width;\n frame[3] = (tex._frame.y + tex._frame.height - margin + offset) / texBase.height;\n this.uClampOffset[0] = offset / texBase.realWidth;\n this.uClampOffset[1] = offset / texBase.realHeight;\n\n this.isSimple = tex._frame.width === texBase.width\n && tex._frame.height === texBase.height\n && tex.rotate === 0;\n\n return true;\n};\n\nObject.defineProperties( TextureMatrix.prototype, prototypeAccessors$4 );\n\n/**\n * This handles a Sprite acting as a mask, as opposed to a Graphic.\n *\n * WebGL only.\n *\n * @class\n * @extends PIXI.Filter\n * @memberof PIXI\n */\nvar SpriteMaskFilter = /*@__PURE__*/(function (Filter) {\n function SpriteMaskFilter(sprite)\n {\n var maskMatrix = new Matrix();\n\n Filter.call(this, vertex, fragment);\n\n sprite.renderable = false;\n\n /**\n * Sprite mask\n * @member {PIXI.Sprite}\n */\n this.maskSprite = sprite;\n\n /**\n * Mask matrix\n * @member {PIXI.Matrix}\n */\n this.maskMatrix = maskMatrix;\n }\n\n if ( Filter ) SpriteMaskFilter.__proto__ = Filter;\n SpriteMaskFilter.prototype = Object.create( Filter && Filter.prototype );\n SpriteMaskFilter.prototype.constructor = SpriteMaskFilter;\n\n /**\n * Applies the filter\n *\n * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it.\n */\n SpriteMaskFilter.prototype.apply = function apply (filterManager, input, output, clear)\n {\n var maskSprite = this.maskSprite;\n var tex = this.maskSprite.texture;\n\n if (!tex.valid)\n {\n return;\n }\n if (!tex.transform)\n {\n // margin = 0.0, let it bleed a bit, shader code becomes easier\n // assuming that atlas textures were made with 1-pixel padding\n tex.transform = new TextureMatrix(tex, 0.0);\n }\n tex.transform.update();\n\n this.uniforms.npmAlpha = tex.baseTexture.premultiplyAlpha ? 0.0 : 1.0;\n this.uniforms.mask = tex;\n // get _normalized sprite texture coords_ and convert them to _normalized atlas texture coords_ with `prepend`\n this.uniforms.otherMatrix = filterManager.calculateSpriteMatrix(this.maskMatrix, maskSprite)\n .prepend(tex.transform.mapCoord);\n this.uniforms.alpha = maskSprite.worldAlpha;\n this.uniforms.maskClamp = tex.transform.uClampFrame;\n\n filterManager.applyFilter(this, input, output, clear);\n };\n\n return SpriteMaskFilter;\n}(Filter));\n\n/**\n * System plugin to the renderer to manage masks.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar MaskSystem = /*@__PURE__*/(function (System) {\n function MaskSystem(renderer)\n {\n System.call(this, renderer);\n\n // TODO - we don't need both!\n /**\n * `true` if current pushed masked is scissor\n * @member {boolean}\n * @readonly\n */\n this.scissor = false;\n\n /**\n * Mask data\n * @member {PIXI.Graphics}\n * @readonly\n */\n this.scissorData = null;\n\n /**\n * Target to mask\n * @member {PIXI.DisplayObject}\n * @readonly\n */\n this.scissorRenderTarget = null;\n\n /**\n * Enable scissor\n * @member {boolean}\n * @readonly\n */\n this.enableScissor = false;\n\n /**\n * Pool of used sprite mask filters\n * @member {PIXI.SpriteMaskFilter[]}\n * @readonly\n */\n this.alphaMaskPool = [];\n\n /**\n * Current index of alpha mask pool\n * @member {number}\n * @default 0\n * @readonly\n */\n this.alphaMaskIndex = 0;\n }\n\n if ( System ) MaskSystem.__proto__ = System;\n MaskSystem.prototype = Object.create( System && System.prototype );\n MaskSystem.prototype.constructor = MaskSystem;\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.DisplayObject} target - Display Object to push the mask to\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.push = function push (target, maskData)\n {\n // TODO the root check means scissor rect will not\n // be used on render textures more info here:\n // https://github.com/pixijs/pixi.js/pull/3545\n\n if (maskData.isSprite)\n {\n this.pushSpriteMask(target, maskData);\n }\n else if (this.enableScissor\n && !this.scissor\n && this.renderer._activeRenderTarget.root\n && !this.renderer.stencil.stencilMaskStack.length\n && maskData.isFastRect())\n {\n var matrix = maskData.worldTransform;\n\n var rot = Math.atan2(matrix.b, matrix.a);\n\n // use the nearest degree!\n rot = Math.round(rot * (180 / Math.PI));\n\n if (rot % 90)\n {\n this.pushStencilMask(maskData);\n }\n else\n {\n this.pushScissorMask(target, maskData);\n }\n }\n else\n {\n this.pushStencilMask(maskData);\n }\n };\n\n /**\n * Removes the last mask from the mask stack and doesn't return it.\n *\n * @param {PIXI.DisplayObject} target - Display Object to pop the mask from\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pop = function pop (target, maskData)\n {\n if (maskData.isSprite)\n {\n this.popSpriteMask(target, maskData);\n }\n else if (this.enableScissor && !this.renderer.stencil.stencilMaskStack.length)\n {\n this.popScissorMask(target, maskData);\n }\n else\n {\n this.popStencilMask(target, maskData);\n }\n };\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.RenderTexture} target - Display Object to push the sprite mask to\n * @param {PIXI.Sprite} maskData - Sprite to be used as the mask\n */\n MaskSystem.prototype.pushSpriteMask = function pushSpriteMask (target, maskData)\n {\n var alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex];\n\n if (!alphaMaskFilter)\n {\n alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex] = [new SpriteMaskFilter(maskData)];\n }\n\n alphaMaskFilter[0].resolution = this.renderer.resolution;\n alphaMaskFilter[0].maskSprite = maskData;\n\n var stashFilterArea = target.filterArea;\n\n target.filterArea = maskData.getBounds(true);\n this.renderer.filter.push(target, alphaMaskFilter);\n target.filterArea = stashFilterArea;\n\n this.alphaMaskIndex++;\n };\n\n /**\n * Removes the last filter from the filter stack and doesn't return it.\n *\n */\n MaskSystem.prototype.popSpriteMask = function popSpriteMask ()\n {\n this.renderer.filter.pop();\n this.alphaMaskIndex--;\n };\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pushStencilMask = function pushStencilMask (maskData)\n {\n this.renderer.batch.flush();\n this.renderer.stencil.pushStencil(maskData);\n };\n\n /**\n * Removes the last filter from the filter stack and doesn't return it.\n *\n */\n MaskSystem.prototype.popStencilMask = function popStencilMask ()\n {\n // this.renderer.currentRenderer.stop();\n this.renderer.stencil.popStencil();\n };\n\n /**\n *\n * @param {PIXI.DisplayObject} target - Display Object to push the mask to\n * @param {PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pushScissorMask = function pushScissorMask (target, maskData)\n {\n maskData.renderable = true;\n\n var renderTarget = this.renderer._activeRenderTarget;\n\n var bounds = maskData.getBounds();\n\n bounds.fit(renderTarget.size);\n maskData.renderable = false;\n\n this.renderer.gl.enable(this.renderer.gl.SCISSOR_TEST);\n\n var resolution = this.renderer.resolution;\n\n this.renderer.gl.scissor(\n bounds.x * resolution,\n (renderTarget.root ? renderTarget.size.height - bounds.y - bounds.height : bounds.y) * resolution,\n bounds.width * resolution,\n bounds.height * resolution\n );\n\n this.scissorRenderTarget = renderTarget;\n this.scissorData = maskData;\n this.scissor = true;\n };\n\n /**\n * Pop scissor mask\n *\n */\n MaskSystem.prototype.popScissorMask = function popScissorMask ()\n {\n this.scissorRenderTarget = null;\n this.scissorData = null;\n this.scissor = false;\n\n // must be scissor!\n var ref = this.renderer;\n var gl = ref.gl;\n\n gl.disable(gl.SCISSOR_TEST);\n };\n\n return MaskSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage stencils (used for masks).\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar StencilSystem = /*@__PURE__*/(function (System) {\n function StencilSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * The mask stack\n * @member {PIXI.Graphics[]}\n */\n this.stencilMaskStack = [];\n }\n\n if ( System ) StencilSystem.__proto__ = System;\n StencilSystem.prototype = Object.create( System && System.prototype );\n StencilSystem.prototype.constructor = StencilSystem;\n\n /**\n * Changes the mask stack that is used by this System.\n *\n * @param {PIXI.Graphics[]} stencilMaskStack - The mask stack\n */\n StencilSystem.prototype.setMaskStack = function setMaskStack (stencilMaskStack)\n {\n var gl = this.renderer.gl;\n var curStackLen = this.stencilMaskStack.length;\n\n this.stencilMaskStack = stencilMaskStack;\n if (stencilMaskStack.length !== curStackLen)\n {\n if (stencilMaskStack.length === 0)\n {\n gl.disable(gl.STENCIL_TEST);\n }\n else\n {\n gl.enable(gl.STENCIL_TEST);\n this._useCurrent();\n }\n }\n };\n\n /**\n * Applies the Mask and adds it to the current stencil stack. @alvin\n *\n * @param {PIXI.Graphics} graphics - The mask\n */\n StencilSystem.prototype.pushStencil = function pushStencil (graphics)\n {\n var gl = this.renderer.gl;\n var prevMaskCount = this.stencilMaskStack.length;\n\n if (prevMaskCount === 0)\n {\n // force use stencil texture in current framebuffer\n this.renderer.framebuffer.forceStencil();\n gl.enable(gl.STENCIL_TEST);\n }\n\n this.stencilMaskStack.push(graphics);\n\n // Increment the reference stencil value where the new mask overlaps with the old ones.\n gl.colorMask(false, false, false, false);\n gl.stencilFunc(gl.EQUAL, prevMaskCount, this._getBitwiseMask());\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.INCR);\n\n graphics.renderable = true;\n graphics.render(this.renderer);\n this.renderer.batch.flush();\n graphics.renderable = false;\n\n this._useCurrent();\n };\n\n /**\n * Removes the last mask from the stencil stack. @alvin\n */\n StencilSystem.prototype.popStencil = function popStencil ()\n {\n var gl = this.renderer.gl;\n var graphics = this.stencilMaskStack.pop();\n\n if (this.stencilMaskStack.length === 0)\n {\n // the stack is empty!\n gl.disable(gl.STENCIL_TEST);\n gl.clear(gl.STENCIL_BUFFER_BIT);\n gl.clearStencil(0);\n }\n else\n {\n // Decrement the reference stencil value where the popped mask overlaps with the other ones\n gl.colorMask(false, false, false, false);\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.DECR);\n\n graphics.renderable = true;\n graphics.render(this.renderer);\n this.renderer.batch.flush();\n graphics.renderable = false;\n\n this._useCurrent();\n }\n };\n\n /**\n * Setup renderer to use the current stencil data.\n * @private\n */\n StencilSystem.prototype._useCurrent = function _useCurrent ()\n {\n var gl = this.renderer.gl;\n\n gl.colorMask(true, true, true, true);\n gl.stencilFunc(gl.EQUAL, this.stencilMaskStack.length, this._getBitwiseMask());\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.KEEP);\n };\n\n /**\n * Fill 1s equal to the number of acitve stencil masks.\n * @private\n * @return {number} The bitwise mask.\n */\n StencilSystem.prototype._getBitwiseMask = function _getBitwiseMask ()\n {\n return (1 << this.stencilMaskStack.length) - 1;\n };\n\n /**\n * Destroys the mask stack.\n *\n */\n StencilSystem.prototype.destroy = function destroy ()\n {\n System.prototype.destroy.call(this, this);\n\n this.stencilMaskStack = null;\n };\n\n return StencilSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage the projection matrix.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\n\nvar ProjectionSystem = /*@__PURE__*/(function (System) {\n function ProjectionSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.destinationFrame = null;\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.sourceFrame = null;\n\n /**\n * Default destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.defaultFrame = null;\n\n /**\n * Project matrix\n * @member {PIXI.Matrix}\n * @readonly\n */\n this.projectionMatrix = new Matrix();\n\n /**\n * A transform that will be appended to the projection matrix\n * if null, nothing will be applied\n * @member {PIXI.Matrix}\n */\n this.transform = null;\n }\n\n if ( System ) ProjectionSystem.__proto__ = System;\n ProjectionSystem.prototype = Object.create( System && System.prototype );\n ProjectionSystem.prototype.constructor = ProjectionSystem;\n\n /**\n * Updates the projection matrix based on a projection frame (which is a rectangle)\n *\n * @param {PIXI.Rectangle} destinationFrame - The destination frame.\n * @param {PIXI.Rectangle} sourceFrame - The source frame.\n * @param {Number} resolution - Resolution\n * @param {boolean} root - If is root\n */\n ProjectionSystem.prototype.update = function update (destinationFrame, sourceFrame, resolution, root)\n {\n this.destinationFrame = destinationFrame || this.destinationFrame || this.defaultFrame;\n this.sourceFrame = sourceFrame || this.sourceFrame || destinationFrame;\n\n this.calculateProjection(this.destinationFrame, this.sourceFrame, resolution, root);\n\n if (this.transform)\n {\n this.projectionMatrix.append(this.transform);\n }\n\n var renderer = this.renderer;\n\n renderer.globalUniforms.uniforms.projectionMatrix = this.projectionMatrix;\n renderer.globalUniforms.update();\n\n // this will work for now\n // but would be sweet to stick and even on the global uniforms..\n if (renderer.shader.shader)\n {\n renderer.shader.syncUniformGroup(renderer.shader.shader.uniforms.globals);\n }\n };\n\n /**\n * Updates the projection matrix based on a projection frame (which is a rectangle)\n *\n * @param {PIXI.Rectangle} destinationFrame - The destination frame.\n * @param {PIXI.Rectangle} sourceFrame - The source frame.\n * @param {Number} resolution - Resolution\n * @param {boolean} root - If is root\n */\n ProjectionSystem.prototype.calculateProjection = function calculateProjection (destinationFrame, sourceFrame, resolution, root)\n {\n var pm = this.projectionMatrix;\n\n // I don't think we will need this line..\n // pm.identity();\n\n if (!root)\n {\n pm.a = (1 / destinationFrame.width * 2) * resolution;\n pm.d = (1 / destinationFrame.height * 2) * resolution;\n\n pm.tx = -1 - (sourceFrame.x * pm.a);\n pm.ty = -1 - (sourceFrame.y * pm.d);\n }\n else\n {\n pm.a = (1 / destinationFrame.width * 2) * resolution;\n pm.d = (-1 / destinationFrame.height * 2) * resolution;\n\n pm.tx = -1 - (sourceFrame.x * pm.a);\n pm.ty = 1 - (sourceFrame.y * pm.d);\n }\n };\n\n /**\n * Sets the transform of the active render target to the given matrix\n *\n * @param {PIXI.Matrix} matrix - The transformation matrix\n */\n ProjectionSystem.prototype.setTransform = function setTransform ()// matrix)\n {\n // this._activeRenderTarget.transform = matrix;\n };\n\n return ProjectionSystem;\n}(System));\n\nvar tempRect = new Rectangle();\n\n/**\n * System plugin to the renderer to manage render textures.\n *\n * Should be added after FramebufferSystem\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\n\nvar RenderTextureSystem = /*@__PURE__*/(function (System) {\n function RenderTextureSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * The clear background color as rgba\n * @member {number[]}\n */\n this.clearColor = renderer._backgroundColorRgba;\n\n // TODO move this property somewhere else!\n /**\n * List of masks for the StencilSystem\n * @member {PIXI.Graphics[]}\n * @readonly\n */\n this.defaultMaskStack = [];\n\n // empty render texture?\n /**\n * Render texture\n * @member {PIXI.RenderTexture}\n * @readonly\n */\n this.current = null;\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.sourceFrame = new Rectangle();\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.destinationFrame = new Rectangle();\n }\n\n if ( System ) RenderTextureSystem.__proto__ = System;\n RenderTextureSystem.prototype = Object.create( System && System.prototype );\n RenderTextureSystem.prototype.constructor = RenderTextureSystem;\n\n /**\n * Bind the current render texture\n * @param {PIXI.RenderTexture} [renderTexture] - RenderTexture to bind, by default its `null`, the screen\n * @param {PIXI.Rectangle} [sourceFrame] - part of screen that is mapped to the renderTexture\n * @param {PIXI.Rectangle} [destinationFrame] - part of renderTexture, by default it has the same size as sourceFrame\n */\n RenderTextureSystem.prototype.bind = function bind (renderTexture, sourceFrame, destinationFrame)\n {\n if ( renderTexture === void 0 ) renderTexture = null;\n\n this.current = renderTexture;\n\n var renderer = this.renderer;\n\n var resolution;\n\n if (renderTexture)\n {\n var baseTexture = renderTexture.baseTexture;\n\n resolution = baseTexture.resolution;\n\n if (!destinationFrame)\n {\n tempRect.width = baseTexture.realWidth;\n tempRect.height = baseTexture.realHeight;\n\n destinationFrame = tempRect;\n }\n\n if (!sourceFrame)\n {\n sourceFrame = destinationFrame;\n }\n\n this.renderer.framebuffer.bind(baseTexture.framebuffer, destinationFrame);\n\n this.renderer.projection.update(destinationFrame, sourceFrame, resolution, false);\n this.renderer.stencil.setMaskStack(baseTexture.stencilMaskStack);\n }\n else\n {\n resolution = this.renderer.resolution;\n\n // TODO these validation checks happen deeper down..\n // thing they can be avoided..\n if (!destinationFrame)\n {\n tempRect.width = renderer.width;\n tempRect.height = renderer.height;\n\n destinationFrame = tempRect;\n }\n\n if (!sourceFrame)\n {\n sourceFrame = destinationFrame;\n }\n\n renderer.framebuffer.bind(null, destinationFrame);\n\n // TODO store this..\n this.renderer.projection.update(destinationFrame, sourceFrame, resolution, true);\n this.renderer.stencil.setMaskStack(this.defaultMaskStack);\n }\n\n this.sourceFrame.copyFrom(sourceFrame);\n\n this.destinationFrame.x = destinationFrame.x / resolution;\n this.destinationFrame.y = destinationFrame.y / resolution;\n\n this.destinationFrame.width = destinationFrame.width / resolution;\n this.destinationFrame.height = destinationFrame.height / resolution;\n\n if (sourceFrame === destinationFrame)\n {\n this.sourceFrame.copyFrom(this.destinationFrame);\n }\n };\n\n /**\n * Erases the render texture and fills the drawing area with a colour\n *\n * @param {number[]} [clearColor] - The color as rgba, default to use the renderer backgroundColor\n * @return {PIXI.Renderer} Returns itself.\n */\n RenderTextureSystem.prototype.clear = function clear (clearColor)\n {\n if (this.current)\n {\n clearColor = clearColor || this.current.baseTexture.clearColor;\n }\n else\n {\n clearColor = clearColor || this.clearColor;\n }\n\n this.renderer.framebuffer.clear(clearColor[0], clearColor[1], clearColor[2], clearColor[3]);\n };\n\n RenderTextureSystem.prototype.resize = function resize ()// screenWidth, screenHeight)\n {\n // resize the root only!\n this.bind(null);\n };\n\n /**\n * Resets renderTexture state\n */\n RenderTextureSystem.prototype.reset = function reset ()\n {\n this.bind(null);\n };\n\n return RenderTextureSystem;\n}(System));\n\n/**\n * Helper class to create a WebGL Program\n *\n * @class\n * @memberof PIXI\n */\nvar GLProgram = function GLProgram(program, uniformData)\n{\n /**\n * The shader program\n *\n * @member {WebGLProgram}\n */\n this.program = program;\n\n /**\n * holds the uniform data which contains uniform locations\n * and current uniform values used for caching and preventing unneeded GPU commands\n * @member {Object}\n */\n this.uniformData = uniformData;\n\n /**\n * uniformGroups holds the various upload functions for the shader. Each uniform group\n * and program have a unique upload function generated.\n * @member {Object}\n */\n this.uniformGroups = {};\n};\n\n/**\n * Destroys this program\n */\nGLProgram.prototype.destroy = function destroy ()\n{\n this.uniformData = null;\n this.uniformGroups = null;\n this.program = null;\n};\n\nvar UID$4 = 0;\n\n/**\n * System plugin to the renderer to manage shaders.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar ShaderSystem = /*@__PURE__*/(function (System) {\n function ShaderSystem(renderer)\n {\n System.call(this, renderer);\n\n // Validation check that this environment support `new Function`\n this.systemCheck();\n\n /**\n * The current WebGL rendering context\n *\n * @member {WebGLRenderingContext}\n */\n this.gl = null;\n\n this.shader = null;\n this.program = null;\n\n /**\n * Cache to holds the generated functions. Stored against UniformObjects unique signature\n * @type {Object}\n * @private\n */\n this.cache = {};\n\n this.id = UID$4++;\n }\n\n if ( System ) ShaderSystem.__proto__ = System;\n ShaderSystem.prototype = Object.create( System && System.prototype );\n ShaderSystem.prototype.constructor = ShaderSystem;\n\n /**\n * Overrideable function by `@pixi/unsafe-eval` to silence\n * throwing an error if platform doesn't support unsafe-evals.\n *\n * @private\n */\n ShaderSystem.prototype.systemCheck = function systemCheck ()\n {\n if (!unsafeEvalSupported())\n {\n throw new Error('Current environment does not allow unsafe-eval, '\n + 'please use @pixi/unsafe-eval module to enable support.');\n }\n };\n\n ShaderSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n this.reset();\n };\n\n /**\n * Changes the current shader to the one given in parameter\n *\n * @param {PIXI.Shader} shader - the new shader\n * @param {boolean} dontSync - false if the shader should automatically sync its uniforms.\n * @returns {PIXI.GLProgram} the glProgram that belongs to the shader.\n */\n ShaderSystem.prototype.bind = function bind (shader, dontSync)\n {\n shader.uniforms.globals = this.renderer.globalUniforms;\n\n var program = shader.program;\n var glProgram = program.glPrograms[this.renderer.CONTEXT_UID] || this.generateShader(shader);\n\n this.shader = shader;\n\n // TODO - some current Pixi plugins bypass this.. so it not safe to use yet..\n if (this.program !== program)\n {\n this.program = program;\n this.gl.useProgram(glProgram.program);\n }\n\n if (!dontSync)\n {\n this.syncUniformGroup(shader.uniformGroup);\n }\n\n return glProgram;\n };\n\n /**\n * Uploads the uniforms values to the currently bound shader.\n *\n * @param {object} uniforms - the uniforms values that be applied to the current shader\n */\n ShaderSystem.prototype.setUniforms = function setUniforms (uniforms)\n {\n var shader = this.shader.program;\n var glProgram = shader.glPrograms[this.renderer.CONTEXT_UID];\n\n shader.syncUniforms(glProgram.uniformData, uniforms, this.renderer);\n };\n\n ShaderSystem.prototype.syncUniformGroup = function syncUniformGroup (group)\n {\n var glProgram = this.getglProgram();\n\n if (!group.static || group.dirtyId !== glProgram.uniformGroups[group.id])\n {\n glProgram.uniformGroups[group.id] = group.dirtyId;\n\n this.syncUniforms(group, glProgram);\n }\n };\n\n /**\n * Overrideable by the @pixi/unsafe-eval package to use static\n * syncUnforms instead.\n *\n * @private\n */\n ShaderSystem.prototype.syncUniforms = function syncUniforms (group, glProgram)\n {\n var syncFunc = group.syncUniforms[this.shader.program.id] || this.createSyncGroups(group);\n\n syncFunc(glProgram.uniformData, group.uniforms, this.renderer);\n };\n\n ShaderSystem.prototype.createSyncGroups = function createSyncGroups (group)\n {\n var id = this.getSignature(group, this.shader.program.uniformData);\n\n if (!this.cache[id])\n {\n this.cache[id] = generateUniformsSync(group, this.shader.program.uniformData);\n }\n\n group.syncUniforms[this.shader.program.id] = this.cache[id];\n\n return group.syncUniforms[this.shader.program.id];\n };\n\n /**\n * Takes a uniform group and data and generates a unique signature for them.\n *\n * @param {PIXI.UniformGroup} group the uniform group to get signature of\n * @param {Object} uniformData uniform information generated by the shader\n * @returns {String} Unique signature of the uniform group\n * @private\n */\n ShaderSystem.prototype.getSignature = function getSignature (group, uniformData)\n {\n var uniforms = group.uniforms;\n\n var strings = [];\n\n for (var i in uniforms)\n {\n strings.push(i);\n\n if (uniformData[i])\n {\n strings.push(uniformData[i].type);\n }\n }\n\n return strings.join('-');\n };\n\n /**\n * Returns the underlying GLShade rof the currently bound shader.\n * This can be handy for when you to have a little more control over the setting of your uniforms.\n *\n * @return {PIXI.GLProgram} the glProgram for the currently bound Shader for this context\n */\n ShaderSystem.prototype.getglProgram = function getglProgram ()\n {\n if (this.shader)\n {\n return this.shader.program.glPrograms[this.renderer.CONTEXT_UID];\n }\n\n return null;\n };\n\n /**\n * Generates a glProgram version of the Shader provided.\n *\n * @private\n * @param {PIXI.Shader} shader the shader that the glProgram will be based on.\n * @return {PIXI.GLProgram} A shiny new glProgram!\n */\n ShaderSystem.prototype.generateShader = function generateShader (shader)\n {\n var gl = this.gl;\n\n var program = shader.program;\n\n var attribMap = {};\n\n for (var i in program.attributeData)\n {\n attribMap[i] = program.attributeData[i].location;\n }\n\n var shaderProgram = compileProgram(gl, program.vertexSrc, program.fragmentSrc, attribMap);\n var uniformData = {};\n\n for (var i$1 in program.uniformData)\n {\n var data = program.uniformData[i$1];\n\n uniformData[i$1] = {\n location: gl.getUniformLocation(shaderProgram, i$1),\n value: defaultValue(data.type, data.size),\n };\n }\n\n var glProgram = new GLProgram(shaderProgram, uniformData);\n\n program.glPrograms[this.renderer.CONTEXT_UID] = glProgram;\n\n return glProgram;\n };\n\n /**\n * Resets ShaderSystem state, does not affect WebGL state\n */\n ShaderSystem.prototype.reset = function reset ()\n {\n this.program = null;\n this.shader = null;\n };\n\n /**\n * Destroys this System and removes all its textures\n */\n ShaderSystem.prototype.destroy = function destroy ()\n {\n // TODO implement destroy method for ShaderSystem\n this.destroyed = true;\n };\n\n return ShaderSystem;\n}(System));\n\n/**\n * Maps gl blend combinations to WebGL.\n *\n * @memberof PIXI\n * @function mapWebGLBlendModesToPixi\n * @private\n * @param {WebGLRenderingContext} gl - The rendering context.\n * @param {number[][]} [array=[]] - The array to output into.\n * @return {number[][]} Mapped modes.\n */\nfunction mapWebGLBlendModesToPixi(gl, array)\n{\n if ( array === void 0 ) array = [];\n\n // TODO - premultiply alpha would be different.\n // add a boolean for that!\n array[BLEND_MODES.NORMAL] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.ADD] = [gl.ONE, gl.ONE];\n array[BLEND_MODES.MULTIPLY] = [gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SCREEN] = [gl.ONE, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.OVERLAY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DARKEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.LIGHTEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR_DODGE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR_BURN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.HARD_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SOFT_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DIFFERENCE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.EXCLUSION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.HUE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SATURATION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.LUMINOSITY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.NONE] = [0, 0];\n\n // not-premultiplied blend modes\n array[BLEND_MODES.NORMAL_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.ADD_NPM] = [gl.SRC_ALPHA, gl.ONE, gl.ONE, gl.ONE];\n array[BLEND_MODES.SCREEN_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n\n // composite operations\n array[BLEND_MODES.SRC_IN] = [gl.DST_ALPHA, gl.ZERO];\n array[BLEND_MODES.SRC_OUT] = [gl.ONE_MINUS_DST_ALPHA, gl.ZERO];\n array[BLEND_MODES.SRC_ATOP] = [gl.DST_ALPHA, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DST_OVER] = [gl.ONE_MINUS_DST_ALPHA, gl.ONE];\n array[BLEND_MODES.DST_IN] = [gl.ZERO, gl.SRC_ALPHA];\n array[BLEND_MODES.DST_OUT] = [gl.ZERO, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DST_ATOP] = [gl.ONE_MINUS_DST_ALPHA, gl.SRC_ALPHA];\n\n // SUBTRACT from flash\n array[BLEND_MODES.SUBTRACT] = [gl.ONE, gl.ONE, gl.ONE, gl.ONE, gl.FUNC_REVERSE_SUBTRACT, gl.FUNC_ADD];\n\n return array;\n}\n\nvar BLEND$1 = 0;\nvar OFFSET$1 = 1;\nvar CULLING$1 = 2;\nvar DEPTH_TEST$1 = 3;\nvar WINDING$1 = 4;\n\n/**\n * System plugin to the renderer to manage WebGL state machines.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar StateSystem = /*@__PURE__*/(function (System) {\n function StateSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * GL context\n * @member {WebGLRenderingContext}\n * @readonly\n */\n this.gl = null;\n\n /**\n * State ID\n * @member {number}\n * @readonly\n */\n this.stateId = 0;\n\n /**\n * Polygon offset\n * @member {number}\n * @readonly\n */\n this.polygonOffset = 0;\n\n /**\n * Blend mode\n * @member {number}\n * @default PIXI.BLEND_MODES.NONE\n * @readonly\n */\n this.blendMode = BLEND_MODES.NONE;\n\n /**\n * Whether current blend equation is different\n * @member {boolean}\n * @protected\n */\n this._blendEq = false;\n\n /**\n * Collection of calls\n * @member {function[]}\n * @readonly\n */\n this.map = [];\n\n // map functions for when we set state..\n this.map[BLEND$1] = this.setBlend;\n this.map[OFFSET$1] = this.setOffset;\n this.map[CULLING$1] = this.setCullFace;\n this.map[DEPTH_TEST$1] = this.setDepthTest;\n this.map[WINDING$1] = this.setFrontFace;\n\n /**\n * Collection of check calls\n * @member {function[]}\n * @readonly\n */\n this.checks = [];\n\n /**\n * Default WebGL State\n * @member {PIXI.State}\n * @readonly\n */\n this.defaultState = new State();\n this.defaultState.blend = true;\n this.defaultState.depth = true;\n }\n\n if ( System ) StateSystem.__proto__ = System;\n StateSystem.prototype = Object.create( System && System.prototype );\n StateSystem.prototype.constructor = StateSystem;\n\n StateSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n\n this.blendModes = mapWebGLBlendModesToPixi(gl);\n\n this.set(this.defaultState);\n\n this.reset();\n };\n\n /**\n * Sets the current state\n *\n * @param {*} state - The state to set.\n */\n StateSystem.prototype.set = function set (state)\n {\n state = state || this.defaultState;\n\n // TODO maybe to an object check? ( this.state === state )?\n if (this.stateId !== state.data)\n {\n var diff = this.stateId ^ state.data;\n var i = 0;\n\n // order from least to most common\n while (diff)\n {\n if (diff & 1)\n {\n // state change!\n this.map[i].call(this, !!(state.data & (1 << i)));\n }\n\n diff = diff >> 1;\n i++;\n }\n\n this.stateId = state.data;\n }\n\n // based on the above settings we check for specific modes..\n // for example if blend is active we check and set the blend modes\n // or of polygon offset is active we check the poly depth.\n for (var i$1 = 0; i$1 < this.checks.length; i$1++)\n {\n this.checks[i$1](this, state);\n }\n };\n\n /**\n * Sets the state, when previous state is unknown\n *\n * @param {*} state - The state to set\n */\n StateSystem.prototype.forceState = function forceState (state)\n {\n state = state || this.defaultState;\n for (var i = 0; i < this.map.length; i++)\n {\n this.map[i].call(this, !!(state.data & (1 << i)));\n }\n for (var i$1 = 0; i$1 < this.checks.length; i$1++)\n {\n this.checks[i$1](this, state);\n }\n\n this.stateId = state.data;\n };\n\n /**\n * Enables or disabled blending.\n *\n * @param {boolean} value - Turn on or off webgl blending.\n */\n StateSystem.prototype.setBlend = function setBlend (value)\n {\n this.updateCheck(StateSystem.checkBlendMode, value);\n\n this.gl[value ? 'enable' : 'disable'](this.gl.BLEND);\n };\n\n /**\n * Enables or disable polygon offset fill\n *\n * @param {boolean} value - Turn on or off webgl polygon offset testing.\n */\n StateSystem.prototype.setOffset = function setOffset (value)\n {\n this.updateCheck(StateSystem.checkPolygonOffset, value);\n\n this.gl[value ? 'enable' : 'disable'](this.gl.POLYGON_OFFSET_FILL);\n };\n\n /**\n * Sets whether to enable or disable depth test.\n *\n * @param {boolean} value - Turn on or off webgl depth testing.\n */\n StateSystem.prototype.setDepthTest = function setDepthTest (value)\n {\n this.gl[value ? 'enable' : 'disable'](this.gl.DEPTH_TEST);\n };\n\n /**\n * Sets whether to enable or disable cull face.\n *\n * @param {boolean} value - Turn on or off webgl cull face.\n */\n StateSystem.prototype.setCullFace = function setCullFace (value)\n {\n this.gl[value ? 'enable' : 'disable'](this.gl.CULL_FACE);\n };\n\n /**\n * Sets the gl front face.\n *\n * @param {boolean} value - true is clockwise and false is counter-clockwise\n */\n StateSystem.prototype.setFrontFace = function setFrontFace (value)\n {\n this.gl.frontFace(this.gl[value ? 'CW' : 'CCW']);\n };\n\n /**\n * Sets the blend mode.\n *\n * @param {number} value - The blend mode to set to.\n */\n StateSystem.prototype.setBlendMode = function setBlendMode (value)\n {\n if (value === this.blendMode)\n {\n return;\n }\n\n this.blendMode = value;\n\n var mode = this.blendModes[value];\n var gl = this.gl;\n\n if (mode.length === 2)\n {\n gl.blendFunc(mode[0], mode[1]);\n }\n else\n {\n gl.blendFuncSeparate(mode[0], mode[1], mode[2], mode[3]);\n }\n if (mode.length === 6)\n {\n this._blendEq = true;\n gl.blendEquationSeparate(mode[4], mode[5]);\n }\n else if (this._blendEq)\n {\n this._blendEq = false;\n gl.blendEquationSeparate(gl.FUNC_ADD, gl.FUNC_ADD);\n }\n };\n\n /**\n * Sets the polygon offset.\n *\n * @param {number} value - the polygon offset\n * @param {number} scale - the polygon offset scale\n */\n StateSystem.prototype.setPolygonOffset = function setPolygonOffset (value, scale)\n {\n this.gl.polygonOffset(value, scale);\n };\n\n // used\n /**\n * Resets all the logic and disables the vaos\n */\n StateSystem.prototype.reset = function reset ()\n {\n this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false);\n\n this.forceState(0);\n\n this._blendEq = true;\n this.blendMode = -1;\n this.setBlendMode(0);\n };\n\n /**\n * checks to see which updates should be checked based on which settings have been activated.\n * For example, if blend is enabled then we should check the blend modes each time the state is changed\n * or if polygon fill is activated then we need to check if the polygon offset changes.\n * The idea is that we only check what we have too.\n *\n * @param {Function} func the checking function to add or remove\n * @param {boolean} value should the check function be added or removed.\n */\n StateSystem.prototype.updateCheck = function updateCheck (func, value)\n {\n var index = this.checks.indexOf(func);\n\n if (value && index === -1)\n {\n this.checks.push(func);\n }\n else if (!value && index !== -1)\n {\n this.checks.splice(index, 1);\n }\n };\n\n /**\n * A private little wrapper function that we call to check the blend mode.\n *\n * @static\n * @private\n * @param {PIXI.StateSystem} System the System to perform the state check on\n * @param {PIXI.State} state the state that the blendMode will pulled from\n */\n StateSystem.checkBlendMode = function checkBlendMode (system, state)\n {\n system.setBlendMode(state.blendMode);\n };\n\n /**\n * A private little wrapper function that we call to check the polygon offset.\n *\n * @static\n * @private\n * @param {PIXI.StateSystem} System the System to perform the state check on\n * @param {PIXI.State} state the state that the blendMode will pulled from\n */\n StateSystem.checkPolygonOffset = function checkPolygonOffset (system, state)\n {\n system.setPolygonOffset(state.polygonOffset, 0);\n };\n\n return StateSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage texture garbage collection on the GPU,\n * ensuring that it does not get clogged up with textures that are no longer being used.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar TextureGCSystem = /*@__PURE__*/(function (System) {\n function TextureGCSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Count\n * @member {number}\n * @readonly\n */\n this.count = 0;\n\n /**\n * Check count\n * @member {number}\n * @readonly\n */\n this.checkCount = 0;\n\n /**\n * Maximum idle time, in seconds\n * @member {number}\n * @see PIXI.settings.GC_MAX_IDLE\n */\n this.maxIdle = settings.GC_MAX_IDLE;\n\n /**\n * Maximum number of item to check\n * @member {number}\n * @see PIXI.settings.GC_MAX_CHECK_COUNT\n */\n this.checkCountMax = settings.GC_MAX_CHECK_COUNT;\n\n /**\n * Current garabage collection mode\n * @member {PIXI.GC_MODES}\n * @see PIXI.settings.GC_MODE\n */\n this.mode = settings.GC_MODE;\n }\n\n if ( System ) TextureGCSystem.__proto__ = System;\n TextureGCSystem.prototype = Object.create( System && System.prototype );\n TextureGCSystem.prototype.constructor = TextureGCSystem;\n\n /**\n * Checks to see when the last time a texture was used\n * if the texture has not been used for a specified amount of time it will be removed from the GPU\n */\n TextureGCSystem.prototype.postrender = function postrender ()\n {\n this.count++;\n\n if (this.mode === GC_MODES.MANUAL)\n {\n return;\n }\n\n this.checkCount++;\n\n if (this.checkCount > this.checkCountMax)\n {\n this.checkCount = 0;\n\n this.run();\n }\n };\n\n /**\n * Checks to see when the last time a texture was used\n * if the texture has not been used for a specified amount of time it will be removed from the GPU\n */\n TextureGCSystem.prototype.run = function run ()\n {\n var tm = this.renderer.texture;\n var managedTextures = tm.managedTextures;\n var wasRemoved = false;\n\n for (var i = 0; i < managedTextures.length; i++)\n {\n var texture = managedTextures[i];\n\n // only supports non generated textures at the moment!\n if (!texture.framebuffer && this.count - texture.touched > this.maxIdle)\n {\n tm.destroyTexture(texture, true);\n managedTextures[i] = null;\n wasRemoved = true;\n }\n }\n\n if (wasRemoved)\n {\n var j = 0;\n\n for (var i$1 = 0; i$1 < managedTextures.length; i$1++)\n {\n if (managedTextures[i$1] !== null)\n {\n managedTextures[j++] = managedTextures[i$1];\n }\n }\n\n managedTextures.length = j;\n }\n };\n\n /**\n * Removes all the textures within the specified displayObject and its children from the GPU\n *\n * @param {PIXI.DisplayObject} displayObject - the displayObject to remove the textures from.\n */\n TextureGCSystem.prototype.unload = function unload (displayObject)\n {\n var tm = this.renderer.textureSystem;\n\n // only destroy non generated textures\n if (displayObject._texture && displayObject._texture._glRenderTargets)\n {\n tm.destroyTexture(displayObject._texture);\n }\n\n for (var i = displayObject.children.length - 1; i >= 0; i--)\n {\n this.unload(displayObject.children[i]);\n }\n };\n\n return TextureGCSystem;\n}(System));\n\n/**\n * Internal texture for WebGL context\n * @class\n * @memberof PIXI\n */\nvar GLTexture = function GLTexture(texture)\n{\n /**\n * The WebGL texture\n * @member {WebGLTexture}\n */\n this.texture = texture;\n\n /**\n * Width of texture that was used in texImage2D\n * @member {number}\n */\n this.width = -1;\n\n /**\n * Height of texture that was used in texImage2D\n * @member {number}\n */\n this.height = -1;\n\n /**\n * Texture contents dirty flag\n * @member {number}\n */\n this.dirtyId = -1;\n\n /**\n * Texture style dirty flag\n * @member {number}\n */\n this.dirtyStyleId = -1;\n\n /**\n * Whether mip levels has to be generated\n * @member {boolean}\n */\n this.mipmap = false;\n\n /**\n * WrapMode copied from baseTexture\n * @member {number}\n */\n this.wrapMode = 33071;\n\n /**\n * Type copied from baseTexture\n * @member {number}\n */\n this.type = 6408;\n\n /**\n * Type copied from baseTexture\n * @member {number}\n */\n this.internalFormat = 5121;\n};\n\n/**\n * System plugin to the renderer to manage textures.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar TextureSystem = /*@__PURE__*/(function (System) {\n function TextureSystem(renderer)\n {\n System.call(this, renderer);\n\n // TODO set to max textures...\n /**\n * Bound textures\n * @member {PIXI.BaseTexture[]}\n * @readonly\n */\n this.boundTextures = [];\n /**\n * Current location\n * @member {number}\n * @readonly\n */\n this.currentLocation = -1;\n\n /**\n * List of managed textures\n * @member {PIXI.BaseTexture[]}\n * @readonly\n */\n this.managedTextures = [];\n\n /**\n * Did someone temper with textures state? We'll overwrite them when we need to unbind something.\n * @member {boolean}\n * @private\n */\n this._unknownBoundTextures = false;\n\n /**\n * BaseTexture value that shows that we don't know what is bound\n * @member {PIXI.BaseTexture}\n * @readonly\n */\n this.unknownTexture = new BaseTexture();\n }\n\n if ( System ) TextureSystem.__proto__ = System;\n TextureSystem.prototype = Object.create( System && System.prototype );\n TextureSystem.prototype.constructor = TextureSystem;\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n TextureSystem.prototype.contextChange = function contextChange ()\n {\n var gl = this.gl = this.renderer.gl;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n\n this.webGLVersion = this.renderer.context.webGLVersion;\n\n var maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS);\n\n this.boundTextures.length = maxTextures;\n\n for (var i = 0; i < maxTextures; i++)\n {\n this.boundTextures[i] = null;\n }\n\n // TODO move this.. to a nice make empty textures class..\n this.emptyTextures = {};\n\n var emptyTexture2D = new GLTexture(gl.createTexture());\n\n gl.bindTexture(gl.TEXTURE_2D, emptyTexture2D.texture);\n gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4));\n\n this.emptyTextures[gl.TEXTURE_2D] = emptyTexture2D;\n this.emptyTextures[gl.TEXTURE_CUBE_MAP] = new GLTexture(gl.createTexture());\n\n gl.bindTexture(gl.TEXTURE_CUBE_MAP, this.emptyTextures[gl.TEXTURE_CUBE_MAP].texture);\n\n for (var i$1 = 0; i$1 < 6; i$1++)\n {\n gl.texImage2D(gl.TEXTURE_CUBE_MAP_POSITIVE_X + i$1, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, null);\n }\n\n gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR);\n gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR);\n\n for (var i$2 = 0; i$2 < this.boundTextures.length; i$2++)\n {\n this.bind(null, i$2);\n }\n };\n\n /**\n * Bind a texture to a specific location\n *\n * If you want to unbind something, please use `unbind(texture)` instead of `bind(null, textureLocation)`\n *\n * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind\n * @param {number} [location=0] - Location to bind at\n */\n TextureSystem.prototype.bind = function bind (texture, location)\n {\n if ( location === void 0 ) location = 0;\n\n var ref = this;\n var gl = ref.gl;\n\n if (texture)\n {\n texture = texture.baseTexture || texture;\n\n if (texture.valid)\n {\n texture.touched = this.renderer.textureGC.count;\n\n var glTexture = texture._glTextures[this.CONTEXT_UID] || this.initTexture(texture);\n\n if (this.currentLocation !== location)\n {\n this.currentLocation = location;\n gl.activeTexture(gl.TEXTURE0 + location);\n }\n\n if (this.boundTextures[location] !== texture)\n {\n gl.bindTexture(texture.target, glTexture.texture);\n }\n\n if (glTexture.dirtyId !== texture.dirtyId)\n {\n this.updateTexture(texture);\n }\n\n this.boundTextures[location] = texture;\n }\n }\n else\n {\n if (this.currentLocation !== location)\n {\n this.currentLocation = location;\n gl.activeTexture(gl.TEXTURE0 + location);\n }\n\n gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[gl.TEXTURE_2D].texture);\n this.boundTextures[location] = null;\n }\n };\n\n /**\n * Resets texture location and bound textures\n *\n * Actual `bind(null, i)` calls will be performed at next `unbind()` call\n */\n TextureSystem.prototype.reset = function reset ()\n {\n this._unknownBoundTextures = true;\n this.currentLocation = -1;\n\n for (var i = 0; i < this.boundTextures.length; i++)\n {\n this.boundTextures[i] = this.unknownTexture;\n }\n };\n\n /**\n * Unbind a texture\n * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind\n */\n TextureSystem.prototype.unbind = function unbind (texture)\n {\n var ref = this;\n var gl = ref.gl;\n var boundTextures = ref.boundTextures;\n\n if (this._unknownBoundTextures)\n {\n this._unknownBoundTextures = false;\n // someone changed webGL state,\n // we have to be sure that our texture does not appear in multi-texture renderer samplers\n for (var i = 0; i < boundTextures.length; i++)\n {\n if (boundTextures[i] === this.unknownTexture)\n {\n this.bind(null, i);\n }\n }\n }\n\n for (var i$1 = 0; i$1 < boundTextures.length; i$1++)\n {\n if (boundTextures[i$1] === texture)\n {\n if (this.currentLocation !== i$1)\n {\n gl.activeTexture(gl.TEXTURE0 + i$1);\n this.currentLocation = i$1;\n }\n\n gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[texture.target].texture);\n boundTextures[i$1] = null;\n }\n }\n };\n\n /**\n * Initialize a texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to initialize\n */\n TextureSystem.prototype.initTexture = function initTexture (texture)\n {\n var glTexture = new GLTexture(this.gl.createTexture());\n\n // guarantee an update..\n glTexture.dirtyId = -1;\n\n texture._glTextures[this.CONTEXT_UID] = glTexture;\n\n this.managedTextures.push(texture);\n texture.on('dispose', this.destroyTexture, this);\n\n return glTexture;\n };\n\n TextureSystem.prototype.initTextureType = function initTextureType (texture, glTexture)\n {\n glTexture.internalFormat = texture.format;\n glTexture.type = texture.type;\n if (this.webGLVersion !== 2)\n {\n return;\n }\n var gl = this.renderer.gl;\n\n if (texture.type === gl.FLOAT\n && texture.format === gl.RGBA)\n {\n glTexture.internalFormat = gl.RGBA32F;\n }\n // that's WebGL1 HALF_FLOAT_OES\n // we have to convert it to WebGL HALF_FLOAT\n if (texture.type === TYPES.HALF_FLOAT)\n {\n glTexture.type = gl.HALF_FLOAT;\n }\n if (glTexture.type === gl.HALF_FLOAT\n && texture.format === gl.RGBA)\n {\n glTexture.internalFormat = gl.RGBA16F;\n }\n };\n\n /**\n * Update a texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to initialize\n */\n TextureSystem.prototype.updateTexture = function updateTexture (texture)\n {\n var glTexture = texture._glTextures[this.CONTEXT_UID];\n\n if (!glTexture)\n {\n return;\n }\n\n var renderer = this.renderer;\n\n this.initTextureType(texture, glTexture);\n\n if (texture.resource && texture.resource.upload(renderer, texture, glTexture))\n ;\n else\n {\n // default, renderTexture-like logic\n var width = texture.realWidth;\n var height = texture.realHeight;\n var gl = renderer.gl;\n\n if (glTexture.width !== width\n || glTexture.height !== height\n || glTexture.dirtyId < 0)\n {\n glTexture.width = width;\n glTexture.height = height;\n\n gl.texImage2D(texture.target, 0,\n glTexture.internalFormat,\n width,\n height,\n 0,\n texture.format,\n glTexture.type,\n null);\n }\n }\n\n // lets only update what changes..\n if (texture.dirtyStyleId !== glTexture.dirtyStyleId)\n {\n this.updateTextureStyle(texture);\n }\n glTexture.dirtyId = texture.dirtyId;\n };\n\n /**\n * Deletes the texture from WebGL\n *\n * @private\n * @param {PIXI.BaseTexture|PIXI.Texture} texture - the texture to destroy\n * @param {boolean} [skipRemove=false] - Whether to skip removing the texture from the TextureManager.\n */\n TextureSystem.prototype.destroyTexture = function destroyTexture (texture, skipRemove)\n {\n var ref = this;\n var gl = ref.gl;\n\n texture = texture.baseTexture || texture;\n\n if (texture._glTextures[this.CONTEXT_UID])\n {\n this.unbind(texture);\n\n gl.deleteTexture(texture._glTextures[this.CONTEXT_UID].texture);\n texture.off('dispose', this.destroyTexture, this);\n\n delete texture._glTextures[this.CONTEXT_UID];\n\n if (!skipRemove)\n {\n var i = this.managedTextures.indexOf(texture);\n\n if (i !== -1)\n {\n removeItems(this.managedTextures, i, 1);\n }\n }\n }\n };\n\n /**\n * Update texture style such as mipmap flag\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to update\n */\n TextureSystem.prototype.updateTextureStyle = function updateTextureStyle (texture)\n {\n var glTexture = texture._glTextures[this.CONTEXT_UID];\n\n if (!glTexture)\n {\n return;\n }\n\n if ((texture.mipmap === MIPMAP_MODES.POW2 || this.webGLVersion !== 2) && !texture.isPowerOfTwo)\n {\n glTexture.mipmap = 0;\n glTexture.wrapMode = WRAP_MODES.CLAMP;\n }\n else\n {\n glTexture.mipmap = texture.mipmap >= 1;\n glTexture.wrapMode = texture.wrapMode;\n }\n\n if (texture.resource && texture.resource.style(this.renderer, texture, glTexture))\n ;\n else\n {\n this.setStyle(texture, glTexture);\n }\n\n glTexture.dirtyStyleId = texture.dirtyStyleId;\n };\n\n /**\n * Set style for texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to update\n * @param {PIXI.GLTexture} glTexture\n */\n TextureSystem.prototype.setStyle = function setStyle (texture, glTexture)\n {\n var gl = this.gl;\n\n if (glTexture.mipmap)\n {\n gl.generateMipmap(texture.target);\n }\n\n gl.texParameteri(texture.target, gl.TEXTURE_WRAP_S, glTexture.wrapMode);\n gl.texParameteri(texture.target, gl.TEXTURE_WRAP_T, glTexture.wrapMode);\n\n if (glTexture.mipmap)\n {\n /* eslint-disable max-len */\n gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR_MIPMAP_LINEAR : gl.NEAREST_MIPMAP_NEAREST);\n /* eslint-disable max-len */\n\n var anisotropicExt = this.renderer.context.extensions.anisotropicFiltering;\n\n if (anisotropicExt && texture.anisotropicLevel > 0 && texture.scaleMode === SCALE_MODES.LINEAR)\n {\n var level = Math.min(texture.anisotropicLevel, gl.getParameter(anisotropicExt.MAX_TEXTURE_MAX_ANISOTROPY_EXT));\n\n gl.texParameterf(texture.target, anisotropicExt.TEXTURE_MAX_ANISOTROPY_EXT, level);\n }\n }\n else\n {\n gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST);\n }\n\n gl.texParameteri(texture.target, gl.TEXTURE_MAG_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST);\n };\n\n return TextureSystem;\n}(System));\n\n/**\n * Systems are individual components to the Renderer pipeline.\n * @namespace PIXI.systems\n */\n\nvar systems = ({\n FilterSystem: FilterSystem,\n BatchSystem: BatchSystem,\n ContextSystem: ContextSystem,\n FramebufferSystem: FramebufferSystem,\n GeometrySystem: GeometrySystem,\n MaskSystem: MaskSystem,\n StencilSystem: StencilSystem,\n ProjectionSystem: ProjectionSystem,\n RenderTextureSystem: RenderTextureSystem,\n ShaderSystem: ShaderSystem,\n StateSystem: StateSystem,\n TextureGCSystem: TextureGCSystem,\n TextureSystem: TextureSystem\n});\n\nvar tempMatrix = new Matrix();\n\n/**\n * The AbstractRenderer is the base for a PixiJS Renderer. It is extended by the {@link PIXI.CanvasRenderer}\n * and {@link PIXI.Renderer} which can be used for rendering a PixiJS scene.\n *\n * @abstract\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar AbstractRenderer = /*@__PURE__*/(function (EventEmitter) {\n function AbstractRenderer(system, options)\n {\n EventEmitter.call(this);\n\n // Add the default render options\n options = Object.assign({}, settings.RENDER_OPTIONS, options);\n\n // Deprecation notice for renderer roundPixels option\n if (options.roundPixels)\n {\n settings.ROUND_PIXELS = options.roundPixels;\n deprecation('5.0.0', 'Renderer roundPixels option is deprecated, please use PIXI.settings.ROUND_PIXELS', 2);\n }\n\n /**\n * The supplied constructor options.\n *\n * @member {Object}\n * @readOnly\n */\n this.options = options;\n\n /**\n * The type of the renderer.\n *\n * @member {number}\n * @default PIXI.RENDERER_TYPE.UNKNOWN\n * @see PIXI.RENDERER_TYPE\n */\n this.type = RENDERER_TYPE.UNKNOWN;\n\n /**\n * Measurements of the screen. (0, 0, screenWidth, screenHeight).\n *\n * Its safe to use as filterArea or hitArea for the whole stage.\n *\n * @member {PIXI.Rectangle}\n */\n this.screen = new Rectangle(0, 0, options.width, options.height);\n\n /**\n * The canvas element that everything is drawn to.\n *\n * @member {HTMLCanvasElement}\n */\n this.view = options.view || document.createElement('canvas');\n\n /**\n * The resolution / device pixel ratio of the renderer.\n *\n * @member {number}\n * @default 1\n */\n this.resolution = options.resolution || settings.RESOLUTION;\n\n /**\n * Whether the render view is transparent.\n *\n * @member {boolean}\n */\n this.transparent = options.transparent;\n\n /**\n * Whether CSS dimensions of canvas view should be resized to screen dimensions automatically.\n *\n * @member {boolean}\n */\n this.autoDensity = options.autoDensity || options.autoResize || false;\n // autoResize is deprecated, provides fallback support\n\n /**\n * The value of the preserveDrawingBuffer flag affects whether or not the contents of\n * the stencil buffer is retained after rendering.\n *\n * @member {boolean}\n */\n this.preserveDrawingBuffer = options.preserveDrawingBuffer;\n\n /**\n * This sets if the CanvasRenderer will clear the canvas or not before the new render pass.\n * If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every\n * frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect\n * to clear the canvas every frame. Disable this by setting this to false. For example, if\n * your game has a canvas filling background image you often don't need this set.\n *\n * @member {boolean}\n * @default\n */\n this.clearBeforeRender = options.clearBeforeRender;\n\n /**\n * The background color as a number.\n *\n * @member {number}\n * @protected\n */\n this._backgroundColor = 0x000000;\n\n /**\n * The background color as an [R, G, B] array.\n *\n * @member {number[]}\n * @protected\n */\n this._backgroundColorRgba = [0, 0, 0, 0];\n\n /**\n * The background color as a string.\n *\n * @member {string}\n * @protected\n */\n this._backgroundColorString = '#000000';\n\n this.backgroundColor = options.backgroundColor || this._backgroundColor; // run bg color setter\n\n /**\n * This temporary display object used as the parent of the currently being rendered item.\n *\n * @member {PIXI.DisplayObject}\n * @protected\n */\n this._tempDisplayObjectParent = new Container();\n\n /**\n * The last root object that the renderer tried to render.\n *\n * @member {PIXI.DisplayObject}\n * @protected\n */\n this._lastObjectRendered = this._tempDisplayObjectParent;\n\n /**\n * Collection of plugins.\n * @readonly\n * @member {object}\n */\n this.plugins = {};\n }\n\n if ( EventEmitter ) AbstractRenderer.__proto__ = EventEmitter;\n AbstractRenderer.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n AbstractRenderer.prototype.constructor = AbstractRenderer;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true },backgroundColor: { configurable: true } };\n\n /**\n * Initialize the plugins.\n *\n * @protected\n * @param {object} staticMap - The dictionary of statically saved plugins.\n */\n AbstractRenderer.prototype.initPlugins = function initPlugins (staticMap)\n {\n for (var o in staticMap)\n {\n this.plugins[o] = new (staticMap[o])(this);\n }\n };\n\n /**\n * Same as view.width, actual number of pixels in the canvas by horizontal.\n *\n * @member {number}\n * @readonly\n * @default 800\n */\n prototypeAccessors.width.get = function ()\n {\n return this.view.width;\n };\n\n /**\n * Same as view.height, actual number of pixels in the canvas by vertical.\n *\n * @member {number}\n * @readonly\n * @default 600\n */\n prototypeAccessors.height.get = function ()\n {\n return this.view.height;\n };\n\n /**\n * Resizes the screen and canvas to the specified width and height.\n * Canvas dimensions are multiplied by resolution.\n *\n * @param {number} screenWidth - The new width of the screen.\n * @param {number} screenHeight - The new height of the screen.\n */\n AbstractRenderer.prototype.resize = function resize (screenWidth, screenHeight)\n {\n this.screen.width = screenWidth;\n this.screen.height = screenHeight;\n\n this.view.width = screenWidth * this.resolution;\n this.view.height = screenHeight * this.resolution;\n\n if (this.autoDensity)\n {\n this.view.style.width = screenWidth + \"px\";\n this.view.style.height = screenHeight + \"px\";\n }\n };\n\n /**\n * Useful function that returns a texture of the display object that can then be used to create sprites\n * This can be quite useful if your displayObject is complicated and needs to be reused multiple times.\n *\n * @param {PIXI.DisplayObject} displayObject - The displayObject the object will be generated from.\n * @param {number} scaleMode - Should be one of the scaleMode consts.\n * @param {number} resolution - The resolution / device pixel ratio of the texture being generated.\n * @param {PIXI.Rectangle} [region] - The region of the displayObject, that shall be rendered,\n * if no region is specified, defaults to the local bounds of the displayObject.\n * @return {PIXI.RenderTexture} A texture of the graphics object.\n */\n AbstractRenderer.prototype.generateTexture = function generateTexture (displayObject, scaleMode, resolution, region)\n {\n region = region || displayObject.getLocalBounds();\n\n // minimum texture size is 1x1, 0x0 will throw an error\n if (region.width === 0) { region.width = 1; }\n if (region.height === 0) { region.height = 1; }\n\n var renderTexture = RenderTexture.create(region.width | 0, region.height | 0, scaleMode, resolution);\n\n tempMatrix.tx = -region.x;\n tempMatrix.ty = -region.y;\n\n this.render(displayObject, renderTexture, false, tempMatrix, !!displayObject.parent);\n\n return renderTexture;\n };\n\n /**\n * Removes everything from the renderer and optionally removes the Canvas DOM element.\n *\n * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM.\n */\n AbstractRenderer.prototype.destroy = function destroy (removeView)\n {\n for (var o in this.plugins)\n {\n this.plugins[o].destroy();\n this.plugins[o] = null;\n }\n\n if (removeView && this.view.parentNode)\n {\n this.view.parentNode.removeChild(this.view);\n }\n\n this.plugins = null;\n\n this.type = RENDERER_TYPE.UNKNOWN;\n\n this.view = null;\n\n this.screen = null;\n\n this.resolution = 0;\n\n this.transparent = false;\n\n this.autoDensity = false;\n\n this.blendModes = null;\n\n this.options = null;\n\n this.preserveDrawingBuffer = false;\n this.clearBeforeRender = false;\n\n this._backgroundColor = 0;\n this._backgroundColorRgba = null;\n this._backgroundColorString = null;\n\n this._tempDisplayObjectParent = null;\n this._lastObjectRendered = null;\n };\n\n /**\n * The background color to fill if not transparent\n *\n * @member {number}\n */\n prototypeAccessors.backgroundColor.get = function ()\n {\n return this._backgroundColor;\n };\n\n prototypeAccessors.backgroundColor.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._backgroundColor = value;\n this._backgroundColorString = hex2string(value);\n hex2rgb(value, this._backgroundColorRgba);\n };\n\n Object.defineProperties( AbstractRenderer.prototype, prototypeAccessors );\n\n return AbstractRenderer;\n}(EventEmitter));\n\n/**\n * The Renderer draws the scene and all its content onto a WebGL enabled canvas.\n *\n * This renderer should be used for browsers that support WebGL.\n *\n * This renderer works by automatically managing WebGLBatchesm, so no need for Sprite Batches or Sprite Clouds.\n * Don't forget to add the view to your DOM or you will not see anything!\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.AbstractRenderer\n */\nvar Renderer = /*@__PURE__*/(function (AbstractRenderer) {\n function Renderer(options)\n {\n if ( options === void 0 ) options = {};\n\n AbstractRenderer.call(this, 'WebGL', options);\n\n // the options will have been modified here in the super constructor with pixi's default settings..\n options = this.options;\n\n /**\n * The type of this renderer as a standardized const\n *\n * @member {number}\n * @see PIXI.RENDERER_TYPE\n */\n this.type = RENDERER_TYPE.WEBGL;\n\n /**\n * WebGL context, set by the contextSystem (this.context)\n *\n * @readonly\n * @member {WebGLRenderingContext}\n */\n this.gl = null;\n\n this.CONTEXT_UID = 0;\n\n // TODO legacy!\n\n /**\n * Internal signal instances of **runner**, these\n * are assigned to each system created.\n * @see PIXI.Runner\n * @name PIXI.Renderer#runners\n * @private\n * @type {object}\n * @readonly\n * @property {PIXI.Runner} destroy - Destroy runner\n * @property {PIXI.Runner} contextChange - Context change runner\n * @property {PIXI.Runner} reset - Reset runner\n * @property {PIXI.Runner} update - Update runner\n * @property {PIXI.Runner} postrender - Post-render runner\n * @property {PIXI.Runner} prerender - Pre-render runner\n * @property {PIXI.Runner} resize - Resize runner\n */\n this.runners = {\n destroy: new Runner('destroy'),\n contextChange: new Runner('contextChange', 1),\n reset: new Runner('reset'),\n update: new Runner('update'),\n postrender: new Runner('postrender'),\n prerender: new Runner('prerender'),\n resize: new Runner('resize', 2),\n };\n\n /**\n * Global uniforms\n * @member {PIXI.UniformGroup}\n */\n this.globalUniforms = new UniformGroup({\n projectionMatrix: new Matrix(),\n }, true);\n\n /**\n * Mask system instance\n * @member {PIXI.systems.MaskSystem} mask\n * @memberof PIXI.Renderer#\n * @readonly\n */\n this.addSystem(MaskSystem, 'mask')\n /**\n * Context system instance\n * @member {PIXI.systems.ContextSystem} context\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ContextSystem, 'context')\n /**\n * State system instance\n * @member {PIXI.systems.StateSystem} state\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(StateSystem, 'state')\n /**\n * Shader system instance\n * @member {PIXI.systems.ShaderSystem} shader\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ShaderSystem, 'shader')\n /**\n * Texture system instance\n * @member {PIXI.systems.TextureSystem} texture\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(TextureSystem, 'texture')\n /**\n * Geometry system instance\n * @member {PIXI.systems.GeometrySystem} geometry\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(GeometrySystem, 'geometry')\n /**\n * Framebuffer system instance\n * @member {PIXI.systems.FramebufferSystem} framebuffer\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(FramebufferSystem, 'framebuffer')\n /**\n * Stencil system instance\n * @member {PIXI.systems.StencilSystem} stencil\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(StencilSystem, 'stencil')\n /**\n * Projection system instance\n * @member {PIXI.systems.ProjectionSystem} projection\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ProjectionSystem, 'projection')\n /**\n * Texture garbage collector system instance\n * @member {PIXI.systems.TextureGCSystem} textureGC\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(TextureGCSystem, 'textureGC')\n /**\n * Filter system instance\n * @member {PIXI.systems.FilterSystem} filter\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(FilterSystem, 'filter')\n /**\n * RenderTexture system instance\n * @member {PIXI.systems.RenderTextureSystem} renderTexture\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(RenderTextureSystem, 'renderTexture')\n\n /**\n * Batch system instance\n * @member {PIXI.systems.BatchSystem} batch\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(BatchSystem, 'batch');\n\n this.initPlugins(Renderer.__plugins);\n\n /**\n * The options passed in to create a new WebGL context.\n */\n if (options.context)\n {\n this.context.initFromContext(options.context);\n }\n else\n {\n this.context.initFromOptions({\n alpha: this.transparent,\n antialias: options.antialias,\n premultipliedAlpha: this.transparent && this.transparent !== 'notMultiplied',\n stencil: true,\n preserveDrawingBuffer: options.preserveDrawingBuffer,\n powerPreference: this.options.powerPreference,\n });\n }\n\n /**\n * Flag if we are rendering to the screen vs renderTexture\n * @member {boolean}\n * @readonly\n * @default true\n */\n this.renderingToScreen = true;\n\n sayHello(this.context.webGLVersion === 2 ? 'WebGL 2' : 'WebGL 1');\n\n this.resize(this.options.width, this.options.height);\n }\n\n if ( AbstractRenderer ) Renderer.__proto__ = AbstractRenderer;\n Renderer.prototype = Object.create( AbstractRenderer && AbstractRenderer.prototype );\n Renderer.prototype.constructor = Renderer;\n\n /**\n * Add a new system to the renderer.\n * @param {Function} ClassRef - Class reference\n * @param {string} [name] - Property name for system, if not specified\n * will use a static `name` property on the class itself. This\n * name will be assigned as s property on the Renderer so make\n * sure it doesn't collide with properties on Renderer.\n * @return {PIXI.Renderer} Return instance of renderer\n */\n Renderer.create = function create (options)\n {\n if (isWebGLSupported())\n {\n return new Renderer(options);\n }\n\n throw new Error('WebGL unsupported in this browser, use \"pixi.js-legacy\" for fallback canvas2d support.');\n };\n\n Renderer.prototype.addSystem = function addSystem (ClassRef, name)\n {\n if (!name)\n {\n name = ClassRef.name;\n }\n\n var system = new ClassRef(this);\n\n if (this[name])\n {\n throw new Error((\"Whoops! The name \\\"\" + name + \"\\\" is already in use\"));\n }\n\n this[name] = system;\n\n for (var i in this.runners)\n {\n this.runners[i].add(system);\n }\n\n /**\n * Fired after rendering finishes.\n *\n * @event PIXI.Renderer#postrender\n */\n\n /**\n * Fired before rendering starts.\n *\n * @event PIXI.Renderer#prerender\n */\n\n /**\n * Fired when the WebGL context is set.\n *\n * @event PIXI.Renderer#context\n * @param {WebGLRenderingContext} gl - WebGL context.\n */\n\n return this;\n };\n\n /**\n * Renders the object to its WebGL view\n *\n * @param {PIXI.DisplayObject} displayObject - The object to be rendered.\n * @param {PIXI.RenderTexture} [renderTexture] - The render texture to render to.\n * @param {boolean} [clear=true] - Should the canvas be cleared before the new render.\n * @param {PIXI.Matrix} [transform] - A transform to apply to the render texture before rendering.\n * @param {boolean} [skipUpdateTransform=false] - Should we skip the update transform pass?\n */\n Renderer.prototype.render = function render (displayObject, renderTexture, clear, transform, skipUpdateTransform)\n {\n // can be handy to know!\n this.renderingToScreen = !renderTexture;\n\n this.runners.prerender.run();\n this.emit('prerender');\n\n // apply a transform at a GPU level\n this.projection.transform = transform;\n\n // no point rendering if our context has been blown up!\n if (this.context.isLost)\n {\n return;\n }\n\n if (!renderTexture)\n {\n this._lastObjectRendered = displayObject;\n }\n\n if (!skipUpdateTransform)\n {\n // update the scene graph\n var cacheParent = displayObject.parent;\n\n displayObject.parent = this._tempDisplayObjectParent;\n displayObject.updateTransform();\n displayObject.parent = cacheParent;\n // displayObject.hitArea = //TODO add a temp hit area\n }\n\n this.renderTexture.bind(renderTexture);\n this.batch.currentRenderer.start();\n\n if (clear !== undefined ? clear : this.clearBeforeRender)\n {\n this.renderTexture.clear();\n }\n\n displayObject.render(this);\n\n // apply transform..\n this.batch.currentRenderer.flush();\n\n if (renderTexture)\n {\n renderTexture.baseTexture.update();\n }\n\n this.runners.postrender.run();\n\n // reset transform after render\n this.projection.transform = null;\n\n this.emit('postrender');\n };\n\n /**\n * Resizes the WebGL view to the specified width and height.\n *\n * @param {number} screenWidth - The new width of the screen.\n * @param {number} screenHeight - The new height of the screen.\n */\n Renderer.prototype.resize = function resize (screenWidth, screenHeight)\n {\n AbstractRenderer.prototype.resize.call(this, screenWidth, screenHeight);\n\n this.runners.resize.run(screenWidth, screenHeight);\n };\n\n /**\n * Resets the WebGL state so you can render things however you fancy!\n *\n * @return {PIXI.Renderer} Returns itself.\n */\n Renderer.prototype.reset = function reset ()\n {\n this.runners.reset.run();\n\n return this;\n };\n\n /**\n * Clear the frame buffer\n */\n Renderer.prototype.clear = function clear ()\n {\n this.framebuffer.bind();\n this.framebuffer.clear();\n };\n\n /**\n * Removes everything from the renderer (event listeners, spritebatch, etc...)\n *\n * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM.\n * See: https://github.com/pixijs/pixi.js/issues/2233\n */\n Renderer.prototype.destroy = function destroy (removeView)\n {\n this.runners.destroy.run();\n\n for (var r in this.runners)\n {\n this.runners[r].destroy();\n }\n\n // call base destroy\n AbstractRenderer.prototype.destroy.call(this, removeView);\n\n // TODO nullify all the managers..\n this.gl = null;\n };\n\n /**\n * Collection of installed plugins. These are included by default in PIXI, but can be excluded\n * by creating a custom build. Consult the README for more information about creating custom\n * builds and excluding plugins.\n * @name PIXI.Renderer#plugins\n * @type {object}\n * @readonly\n * @property {PIXI.accessibility.AccessibilityManager} accessibility Support tabbing interactive elements.\n * @property {PIXI.extract.Extract} extract Extract image data from renderer.\n * @property {PIXI.interaction.InteractionManager} interaction Handles mouse, touch and pointer events.\n * @property {PIXI.prepare.Prepare} prepare Pre-render display objects.\n */\n\n /**\n * Adds a plugin to the renderer.\n *\n * @method\n * @param {string} pluginName - The name of the plugin.\n * @param {Function} ctor - The constructor function or class for the plugin.\n */\n Renderer.registerPlugin = function registerPlugin (pluginName, ctor)\n {\n Renderer.__plugins = Renderer.__plugins || {};\n Renderer.__plugins[pluginName] = ctor;\n };\n\n return Renderer;\n}(AbstractRenderer));\n\n/**\n * This helper function will automatically detect which renderer you should be using.\n * WebGL is the preferred renderer as it is a lot faster. If WebGL is not supported by\n * the browser then this function will return a canvas renderer\n *\n * @memberof PIXI\n * @function autoDetectRenderer\n * @param {object} [options] - The optional renderer parameters\n * @param {number} [options.width=800] - the width of the renderers view\n * @param {number} [options.height=600] - the height of the renderers view\n * @param {HTMLCanvasElement} [options.view] - the canvas to use as a view, optional\n * @param {boolean} [options.transparent=false] - If the render view is transparent, default false\n * @param {boolean} [options.autoDensity=false] - Resizes renderer view in CSS pixels to allow for\n * resolutions other than 1\n * @param {boolean} [options.antialias=false] - sets antialias\n * @param {boolean} [options.preserveDrawingBuffer=false] - enables drawing buffer preservation, enable this if you\n * need to call toDataUrl on the webgl context\n * @param {number} [options.backgroundColor=0x000000] - The background color of the rendered area\n * (shown if not transparent).\n * @param {boolean} [options.clearBeforeRender=true] - This sets if the renderer will clear the canvas or\n * not before the new render pass.\n * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the renderer, retina would be 2\n * @param {boolean} [options.forceCanvas=false] - prevents selection of WebGL renderer, even if such is present, this\n * option only is available when using **pixi.js-legacy** or **@pixi/canvas-renderer** modules, otherwise\n * it is ignored.\n * @param {boolean} [options.forceFXAA=false] - forces FXAA antialiasing to be used over native.\n * FXAA is faster, but may not always look as great **webgl only**\n * @param {string} [options.powerPreference] - Parameter passed to webgl context, set to \"high-performance\"\n * for devices with dual graphics card **webgl only**\n * @return {PIXI.Renderer|PIXI.CanvasRenderer} Returns WebGL renderer if available, otherwise CanvasRenderer\n */\nfunction autoDetectRenderer(options)\n{\n return Renderer.create(options);\n}\n\nvar _default = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n vTextureCoord = aTextureCoord;\\n}\";\n\nvar defaultFilter = \"attribute vec2 aVertexPosition;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nuniform vec4 inputSize;\\nuniform vec4 outputFrame;\\n\\nvec4 filterVertexPosition( void )\\n{\\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\\n\\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\\n}\\n\\nvec2 filterTextureCoord( void )\\n{\\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\\n}\\n\\nvoid main(void)\\n{\\n gl_Position = filterVertexPosition();\\n vTextureCoord = filterTextureCoord();\\n}\\n\";\n\n/**\n * A Texture that depends on six other resources.\n *\n * @class\n * @extends PIXI.BaseTexture\n * @memberof PIXI\n */\nvar CubeTexture = /*@__PURE__*/(function (BaseTexture) {\n function CubeTexture () {\n BaseTexture.apply(this, arguments);\n }\n\n if ( BaseTexture ) CubeTexture.__proto__ = BaseTexture;\n CubeTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype );\n CubeTexture.prototype.constructor = CubeTexture;\n\n CubeTexture.from = function from (resources, options)\n {\n return new CubeTexture(new CubeResource(resources, options));\n };\n\n return CubeTexture;\n}(BaseTexture));\n\n/**\n * Used by the batcher to draw batches.\n * Each one of these contains all information required to draw a bound geometry.\n *\n * @class\n * @memberof PIXI\n */\nvar BatchDrawCall = function BatchDrawCall()\n{\n this.textures = [];\n this.ids = [];\n this.blend = 0;\n this.textureCount = 0;\n this.start = 0;\n this.size = 0;\n this.type = 4;\n};\n\n/**\n * Flexible wrapper around `ArrayBuffer` that also provides\n * typed array views on demand.\n *\n * @class\n * @memberof PIXI\n */\nvar ViewableBuffer = function ViewableBuffer(size)\n{\n /**\n * Underlying `ArrayBuffer` that holds all the data\n * and is of capacity `size`.\n *\n * @member {ArrayBuffer}\n */\n this.rawBinaryData = new ArrayBuffer(size);\n\n /**\n * View on the raw binary data as a `Uint32Array`.\n *\n * @member {Uint32Array}\n */\n this.uint32View = new Uint32Array(this.rawBinaryData);\n\n /**\n * View on the raw binary data as a `Float32Array`.\n *\n * @member {Float32Array}\n */\n this.float32View = new Float32Array(this.rawBinaryData);\n};\n\nvar prototypeAccessors$5 = { int8View: { configurable: true },uint8View: { configurable: true },int16View: { configurable: true },uint16View: { configurable: true },int32View: { configurable: true } };\n\n/**\n * View on the raw binary data as a `Int8Array`.\n *\n * @member {Int8Array}\n */\nprototypeAccessors$5.int8View.get = function ()\n{\n if (!this._int8View)\n {\n this._int8View = new Int8Array(this.rawBinaryData);\n }\n\n return this._int8View;\n};\n\n/**\n * View on the raw binary data as a `Uint8Array`.\n *\n * @member {Uint8Array}\n */\nprototypeAccessors$5.uint8View.get = function ()\n{\n if (!this._uint8View)\n {\n this._uint8View = new Uint8Array(this.rawBinaryData);\n }\n\n return this._uint8View;\n};\n\n/**\n * View on the raw binary data as a `Int16Array`.\n *\n * @member {Int16Array}\n */\nprototypeAccessors$5.int16View.get = function ()\n{\n if (!this._int16View)\n {\n this._int16View = new Int16Array(this.rawBinaryData);\n }\n\n return this._int16View;\n};\n\n/**\n * View on the raw binary data as a `Uint16Array`.\n *\n * @member {Uint16Array}\n */\nprototypeAccessors$5.uint16View.get = function ()\n{\n if (!this._uint16View)\n {\n this._uint16View = new Uint16Array(this.rawBinaryData);\n }\n\n return this._uint16View;\n};\n\n/**\n * View on the raw binary data as a `Int32Array`.\n *\n * @member {Int32Array}\n */\nprototypeAccessors$5.int32View.get = function ()\n{\n if (!this._int32View)\n {\n this._int32View = new Int32Array(this.rawBinaryData);\n }\n\n return this._int32View;\n};\n\n/**\n * Returns the view of the given type.\n *\n * @param {string} type - One of `int8`, `uint8`, `int16`,\n *`uint16`, `int32`, `uint32`, and `float32`.\n * @return {object} typed array of given type\n */\nViewableBuffer.prototype.view = function view (type)\n{\n return this[(type + \"View\")];\n};\n\n/**\n * Destroys all buffer references. Do not use after calling\n * this.\n */\nViewableBuffer.prototype.destroy = function destroy ()\n{\n this.rawBinaryData = null;\n this._int8View = null;\n this._uint8View = null;\n this._int16View = null;\n this._uint16View = null;\n this._int32View = null;\n this.uint32View = null;\n this.float32View = null;\n};\n\nViewableBuffer.sizeOf = function sizeOf (type)\n{\n switch (type)\n {\n case 'int8':\n case 'uint8':\n return 1;\n case 'int16':\n case 'uint16':\n return 2;\n case 'int32':\n case 'uint32':\n case 'float32':\n return 4;\n default:\n throw new Error((type + \" isn't a valid view type\"));\n }\n};\n\nObject.defineProperties( ViewableBuffer.prototype, prototypeAccessors$5 );\n\n/**\n * Renderer dedicated to drawing and batching sprites.\n *\n * This is the default batch renderer. It buffers objects\n * with texture-based geometries and renders them in\n * batches. It uploads multiple textures to the GPU to\n * reduce to the number of draw calls.\n *\n * @class\n * @protected\n * @memberof PIXI\n * @extends PIXI.ObjectRenderer\n */\nvar AbstractBatchRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function AbstractBatchRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n /**\n * This is used to generate a shader that can\n * color each vertex based on a `aTextureId`\n * attribute that points to an texture in `uSampler`.\n *\n * This enables the objects with different textures\n * to be drawn in the same draw call.\n *\n * You can customize your shader by creating your\n * custom shader generator.\n *\n * @member {PIXI.BatchShaderGenerator}\n * @protected\n */\n this.shaderGenerator = null;\n\n /**\n * The class that represents the geometry of objects\n * that are going to be batched with this.\n *\n * @member {object}\n * @default PIXI.BatchGeometry\n * @protected\n */\n this.geometryClass = null;\n\n /**\n * Size of data being buffered per vertex in the\n * attribute buffers (in floats). By default, the\n * batch-renderer plugin uses 6:\n *\n * | aVertexPosition | 2 |\n * |-----------------|---|\n * | aTextureCoords | 2 |\n * | aColor | 1 |\n * | aTextureId | 1 |\n *\n * @member {number}\n * @readonly\n */\n this.vertexSize = null;\n\n /**\n * The WebGL state in which this renderer will work.\n *\n * @member {PIXI.State}\n * @readonly\n */\n this.state = State.for2d();\n\n /**\n * The number of bufferable objects before a flush\n * occurs automatically.\n *\n * @member {number}\n * @default settings.SPRITE_MAX_TEXTURES\n */\n this.size = 2000 * 4;// settings.SPRITE_BATCH_SIZE, 2000 is a nice balance between mobile/desktop\n\n /**\n * Total count of all vertices used by the currently\n * buffered objects.\n *\n * @member {number}\n * @private\n */\n this._vertexCount = 0;\n\n /**\n * Total count of all indices used by the currently\n * buffered objects.\n *\n * @member {number}\n * @private\n */\n this._indexCount = 0;\n\n /**\n * Buffer of objects that are yet to be rendered.\n *\n * @member {PIXI.DisplayObject[]}\n * @private\n */\n this._bufferedElements = [];\n\n /**\n * Number of elements that are buffered and are\n * waiting to be flushed.\n *\n * @member {number}\n * @private\n */\n this._bufferSize = 0;\n\n /**\n * This shader is generated by `this.shaderGenerator`.\n *\n * It is generated specifically to handle the required\n * number of textures being batched together.\n *\n * @member {PIXI.Shader}\n * @protected\n */\n this._shader = null;\n\n /**\n * Pool of `this.geometryClass` geometry objects\n * that store buffers. They are used to pass data\n * to the shader on each draw call.\n *\n * These are never re-allocated again, unless a\n * context change occurs; however, the pool may\n * be expanded if required.\n *\n * @member {PIXI.Geometry[]}\n * @private\n * @see PIXI.AbstractBatchRenderer.contextChange\n */\n this._packedGeometries = [];\n\n /**\n * Size of `this._packedGeometries`. It can be expanded\n * if more than `this._packedGeometryPoolSize` flushes\n * occur in a single frame.\n *\n * @member {number}\n * @private\n */\n this._packedGeometryPoolSize = 2;\n\n /**\n * A flush may occur multiple times in a single\n * frame. On iOS devices or when\n * `settings.CAN_UPLOAD_SAME_BUFFER` is false, the\n * batch renderer does not upload data to the same\n * `WebGLBuffer` for performance reasons.\n *\n * This is the index into `packedGeometries` that points to\n * geometry holding the most recent buffers.\n *\n * @member {number}\n * @private\n */\n this._flushId = 0;\n\n /**\n * Pool of `BatchDrawCall` objects that `flush` used\n * to create \"batches\" of the objects being rendered.\n *\n * These are never re-allocated again.\n *\n * @member BatchDrawCall[]\n * @private\n */\n this._drawCalls = [];\n\n for (var k = 0; k < this.size / 4; k++)\n { // initialize the draw-calls pool to max size.\n this._drawCalls[k] = new BatchDrawCall();\n }\n\n /**\n * Pool of `ViewableBuffer` objects that are sorted in\n * order of increasing size. The flush method uses\n * the buffer with the least size above the amount\n * it requires. These are used for passing attributes.\n *\n * The first buffer has a size of 8; each subsequent\n * buffer has double capacity of its previous.\n *\n * @member {PIXI.ViewableBuffer}\n * @private\n * @see PIXI.AbstractBatchRenderer#getAttributeBuffer\n */\n this._aBuffers = {};\n\n /**\n * Pool of `Uint16Array` objects that are sorted in\n * order of increasing size. The flush method uses\n * the buffer with the least size above the amount\n * it requires. These are used for passing indices.\n *\n * The first buffer has a size of 12; each subsequent\n * buffer has double capacity of its previous.\n *\n * @member {Uint16Array[]}\n * @private\n * @see PIXI.AbstractBatchRenderer#getIndexBuffer\n */\n this._iBuffers = {};\n\n /**\n * Maximum number of textures that can be uploaded to\n * the GPU under the current context. It is initialized\n * properly in `this.contextChange`.\n *\n * @member {number}\n * @see PIXI.AbstractBatchRenderer#contextChange\n * @readonly\n */\n this.MAX_TEXTURES = 1;\n\n this.renderer.on('prerender', this.onPrerender, this);\n renderer.runners.contextChange.add(this);\n }\n\n if ( ObjectRenderer ) AbstractBatchRenderer.__proto__ = ObjectRenderer;\n AbstractBatchRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n AbstractBatchRenderer.prototype.constructor = AbstractBatchRenderer;\n\n /**\n * Handles the `contextChange` signal.\n *\n * It calculates `this.MAX_TEXTURES` and allocating the\n * packed-geometry object pool.\n */\n AbstractBatchRenderer.prototype.contextChange = function contextChange ()\n {\n var gl = this.renderer.gl;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n this.MAX_TEXTURES = 1;\n }\n else\n {\n // step 1: first check max textures the GPU can handle.\n this.MAX_TEXTURES = Math.min(\n gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS),\n settings.SPRITE_MAX_TEXTURES);\n\n // step 2: check the maximum number of if statements the shader can have too..\n this.MAX_TEXTURES = checkMaxIfStatementsInShader(\n this.MAX_TEXTURES, gl);\n }\n\n this._shader = this.shaderGenerator.generateShader(this.MAX_TEXTURES);\n\n // we use the second shader as the first one depending on your browser\n // may omit aTextureId as it is not used by the shader so is optimized out.\n for (var i = 0; i < this._packedGeometryPoolSize; i++)\n {\n /* eslint-disable max-len */\n this._packedGeometries[i] = new (this.geometryClass)();\n }\n };\n\n /**\n * Handles the `prerender` signal.\n *\n * It ensures that flushes start from the first geometry\n * object again.\n */\n AbstractBatchRenderer.prototype.onPrerender = function onPrerender ()\n {\n this._flushId = 0;\n };\n\n /**\n * Buffers the \"batchable\" object. It need not be rendered\n * immediately.\n *\n * @param {PIXI.Sprite} sprite - the sprite to render when\n * using this spritebatch\n */\n AbstractBatchRenderer.prototype.render = function render (element)\n {\n if (!element._texture.valid)\n {\n return;\n }\n\n if (this._vertexCount + (element.vertexData.length / 2) > this.size)\n {\n this.flush();\n }\n\n this._vertexCount += element.vertexData.length / 2;\n this._indexCount += element.indices.length;\n this._bufferedElements[this._bufferSize++] = element;\n };\n\n /**\n * Renders the content _now_ and empties the current batch.\n */\n AbstractBatchRenderer.prototype.flush = function flush ()\n {\n if (this._vertexCount === 0)\n {\n return;\n }\n\n var attributeBuffer = this.getAttributeBuffer(this._vertexCount);\n var indexBuffer = this.getIndexBuffer(this._indexCount);\n var gl = this.renderer.gl;\n\n var ref = this;\n var elements = ref._bufferedElements;\n var drawCalls = ref._drawCalls;\n var MAX_TEXTURES = ref.MAX_TEXTURES;\n var packedGeometries = ref._packedGeometries;\n var vertexSize = ref.vertexSize;\n\n var touch = this.renderer.textureGC.count;\n\n var index = 0;\n var _indexCount = 0;\n\n var nextTexture;\n var currentTexture;\n var textureCount = 0;\n\n var currentGroup = drawCalls[0];\n var groupCount = 0;\n\n var blendMode = -1;// blend-mode of previous element/sprite/object!\n\n currentGroup.textureCount = 0;\n currentGroup.start = 0;\n currentGroup.blend = blendMode;\n\n var TICK = ++BaseTexture._globalBatch;\n var i;\n\n for (i = 0; i < this._bufferSize; ++i)\n {\n var sprite = elements[i];\n\n elements[i] = null;\n nextTexture = sprite._texture.baseTexture;\n\n var spriteBlendMode = premultiplyBlendMode[\n nextTexture.premultiplyAlpha ? 1 : 0][sprite.blendMode];\n\n if (blendMode !== spriteBlendMode)\n {\n blendMode = spriteBlendMode;\n\n // force the batch to break!\n currentTexture = null;\n textureCount = MAX_TEXTURES;\n TICK++;\n }\n\n if (currentTexture !== nextTexture)\n {\n currentTexture = nextTexture;\n\n if (nextTexture._batchEnabled !== TICK)\n {\n if (textureCount === MAX_TEXTURES)\n {\n TICK++;\n\n textureCount = 0;\n\n currentGroup.size = _indexCount - currentGroup.start;\n\n currentGroup = drawCalls[groupCount++];\n currentGroup.textureCount = 0;\n currentGroup.blend = blendMode;\n currentGroup.start = _indexCount;\n }\n\n nextTexture.touched = touch;\n nextTexture._batchEnabled = TICK;\n nextTexture._id = textureCount;\n\n currentGroup.textures[currentGroup.textureCount++] = nextTexture;\n textureCount++;\n }\n }\n\n this.packInterleavedGeometry(sprite, attributeBuffer,\n indexBuffer, index, _indexCount);\n\n // push a graphics..\n index += (sprite.vertexData.length / 2) * vertexSize;\n _indexCount += sprite.indices.length;\n }\n\n BaseTexture._globalBatch = TICK;\n currentGroup.size = _indexCount - currentGroup.start;\n\n if (!settings.CAN_UPLOAD_SAME_BUFFER)\n { /* Usually on iOS devices, where the browser doesn't\n like uploads to the same buffer in a single frame. */\n if (this._packedGeometryPoolSize <= this._flushId)\n {\n this._packedGeometryPoolSize++;\n packedGeometries[this._flushId] = new (this.geometryClass)();\n }\n\n packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0);\n packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0);\n\n this.renderer.geometry.bind(packedGeometries[this._flushId]);\n this.renderer.geometry.updateBuffers();\n this._flushId++;\n }\n else\n {\n // lets use the faster option, always use buffer number 0\n packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0);\n packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0);\n\n this.renderer.geometry.updateBuffers();\n }\n\n var textureSystem = this.renderer.texture;\n var stateSystem = this.renderer.state;\n\n // Upload textures and do the draw calls\n for (i = 0; i < groupCount; i++)\n {\n var group = drawCalls[i];\n var groupTextureCount = group.textureCount;\n\n for (var j = 0; j < groupTextureCount; j++)\n {\n textureSystem.bind(group.textures[j], j);\n group.textures[j] = null;\n }\n\n stateSystem.setBlendMode(group.blend);\n gl.drawElements(group.type, group.size, gl.UNSIGNED_SHORT, group.start * 2);\n }\n\n // reset elements for the next flush\n this._bufferSize = 0;\n this._vertexCount = 0;\n this._indexCount = 0;\n };\n\n /**\n * Starts a new sprite batch.\n */\n AbstractBatchRenderer.prototype.start = function start ()\n {\n this.renderer.state.set(this.state);\n\n this.renderer.shader.bind(this._shader);\n\n if (settings.CAN_UPLOAD_SAME_BUFFER)\n {\n // bind buffer #0, we don't need others\n this.renderer.geometry.bind(this._packedGeometries[this._flushId]);\n }\n };\n\n /**\n * Stops and flushes the current batch.\n */\n AbstractBatchRenderer.prototype.stop = function stop ()\n {\n this.flush();\n };\n\n /**\n * Destroys this `AbstractBatchRenderer`. It cannot be used again.\n */\n AbstractBatchRenderer.prototype.destroy = function destroy ()\n {\n for (var i = 0; i < this._packedGeometryPoolSize; i++)\n {\n if (this._packedGeometries[i])\n {\n this._packedGeometries[i].destroy();\n }\n }\n\n this.renderer.off('prerender', this.onPrerender, this);\n\n this._aBuffers = null;\n this._iBuffers = null;\n this._packedGeometries = null;\n this._drawCalls = null;\n\n if (this._shader)\n {\n this._shader.destroy();\n this._shader = null;\n }\n\n ObjectRenderer.prototype.destroy.call(this);\n };\n\n /**\n * Fetches an attribute buffer from `this._aBuffers` that\n * can hold atleast `size` floats.\n *\n * @param {number} size - minimum capacity required\n * @return {ViewableBuffer} - buffer than can hold atleast `size` floats\n * @private\n */\n AbstractBatchRenderer.prototype.getAttributeBuffer = function getAttributeBuffer (size)\n {\n // 8 vertices is enough for 2 quads\n var roundedP2 = nextPow2(Math.ceil(size / 8));\n var roundedSizeIndex = log2(roundedP2);\n var roundedSize = roundedP2 * 8;\n\n if (this._aBuffers.length <= roundedSizeIndex)\n {\n this._iBuffers.length = roundedSizeIndex + 1;\n }\n\n var buffer = this._aBuffers[roundedSize];\n\n if (!buffer)\n {\n this._aBuffers[roundedSize] = buffer = new ViewableBuffer(roundedSize * this.vertexSize * 4);\n }\n\n return buffer;\n };\n\n /**\n * Fetches an index buffer from `this._iBuffers` that can\n * has atleast `size` capacity.\n *\n * @param {number} size - minimum required capacity\n * @return {Uint16Array} - buffer that can fit `size`\n * indices.\n * @private\n */\n AbstractBatchRenderer.prototype.getIndexBuffer = function getIndexBuffer (size)\n {\n // 12 indices is enough for 2 quads\n var roundedP2 = nextPow2(Math.ceil(size / 12));\n var roundedSizeIndex = log2(roundedP2);\n var roundedSize = roundedP2 * 12;\n\n if (this._iBuffers.length <= roundedSizeIndex)\n {\n this._iBuffers.length = roundedSizeIndex + 1;\n }\n\n var buffer = this._iBuffers[roundedSizeIndex];\n\n if (!buffer)\n {\n this._iBuffers[roundedSizeIndex] = buffer = new Uint16Array(roundedSize);\n }\n\n return buffer;\n };\n\n /**\n * Takes the four batching parameters of `element`, interleaves\n * and pushes them into the batching attribute/index buffers given.\n *\n * It uses these properties: `vertexData` `uvs`, `textureId` and\n * `indicies`. It also uses the \"tint\" of the base-texture, if\n * present.\n *\n * @param {PIXI.Sprite} element - element being rendered\n * @param {PIXI.ViewableBuffer} attributeBuffer - attribute buffer.\n * @param {Uint16Array} indexBuffer - index buffer\n * @param {number} aIndex - number of floats already in the attribute buffer\n * @param {number} iIndex - number of indices already in `indexBuffer`\n */\n AbstractBatchRenderer.prototype.packInterleavedGeometry = function packInterleavedGeometry (element, attributeBuffer, indexBuffer, aIndex, iIndex)\n {\n var uint32View = attributeBuffer.uint32View;\n var float32View = attributeBuffer.float32View;\n\n var packedVertices = aIndex / this.vertexSize;\n var uvs = element.uvs;\n var indicies = element.indices;\n var vertexData = element.vertexData;\n var textureId = element._texture.baseTexture._id;\n\n var alpha = Math.min(element.worldAlpha, 1.0);\n var argb = (alpha < 1.0\n && element._texture.baseTexture.premultiplyAlpha)\n ? premultiplyTint(element._tintRGB, alpha)\n : element._tintRGB + (alpha * 255 << 24);\n\n // lets not worry about tint! for now..\n for (var i = 0; i < vertexData.length; i += 2)\n {\n float32View[aIndex++] = vertexData[i];\n float32View[aIndex++] = vertexData[i + 1];\n float32View[aIndex++] = uvs[i];\n float32View[aIndex++] = uvs[i + 1];\n uint32View[aIndex++] = argb;\n float32View[aIndex++] = textureId;\n }\n\n for (var i$1 = 0; i$1 < indicies.length; i$1++)\n {\n indexBuffer[iIndex++] = packedVertices + indicies[i$1];\n }\n };\n\n return AbstractBatchRenderer;\n}(ObjectRenderer));\n\n/**\n * Helper that generates batching multi-texture shader. Use it with your new BatchRenderer\n *\n * @class\n * @memberof PIXI\n */\nvar BatchShaderGenerator = function BatchShaderGenerator(vertexSrc, fragTemplate)\n{\n /**\n * Reference to the vertex shader source.\n *\n * @member {string}\n */\n this.vertexSrc = vertexSrc;\n\n /**\n * Reference to the fragement shader template. Must contain \"%count%\" and \"%forloop%\".\n *\n * @member {string}\n */\n this.fragTemplate = fragTemplate;\n\n this.programCache = {};\n this.defaultGroupCache = {};\n\n if (fragTemplate.indexOf('%count%') < 0)\n {\n throw new Error('Fragment template must contain \"%count%\".');\n }\n\n if (fragTemplate.indexOf('%forloop%') < 0)\n {\n throw new Error('Fragment template must contain \"%forloop%\".');\n }\n};\n\nBatchShaderGenerator.prototype.generateShader = function generateShader (maxTextures)\n{\n if (!this.programCache[maxTextures])\n {\n var sampleValues = new Int32Array(maxTextures);\n\n for (var i = 0; i < maxTextures; i++)\n {\n sampleValues[i] = i;\n }\n\n this.defaultGroupCache[maxTextures] = UniformGroup.from({ uSamplers: sampleValues }, true);\n\n var fragmentSrc = this.fragTemplate;\n\n fragmentSrc = fragmentSrc.replace(/%count%/gi, (\"\" + maxTextures));\n fragmentSrc = fragmentSrc.replace(/%forloop%/gi, this.generateSampleSrc(maxTextures));\n\n this.programCache[maxTextures] = new Program(this.vertexSrc, fragmentSrc);\n }\n\n var uniforms = {\n tint: new Float32Array([1, 1, 1, 1]),\n translationMatrix: new Matrix(),\n default: this.defaultGroupCache[maxTextures],\n };\n\n return new Shader(this.programCache[maxTextures], uniforms);\n};\n\nBatchShaderGenerator.prototype.generateSampleSrc = function generateSampleSrc (maxTextures)\n{\n var src = '';\n\n src += '\\n';\n src += '\\n';\n\n for (var i = 0; i < maxTextures; i++)\n {\n if (i > 0)\n {\n src += '\\nelse ';\n }\n\n if (i < maxTextures - 1)\n {\n src += \"if(vTextureId < \" + i + \".5)\";\n }\n\n src += '\\n{';\n src += \"\\n\\tcolor = texture2D(uSamplers[\" + i + \"], vTextureCoord);\";\n src += '\\n}';\n }\n\n src += '\\n';\n src += '\\n';\n\n return src;\n};\n\n/**\n * Geometry used to batch standard PIXI content (e.g. Mesh, Sprite, Graphics objects).\n *\n * @class\n * @memberof PIXI\n */\nvar BatchGeometry = /*@__PURE__*/(function (Geometry) {\n function BatchGeometry(_static)\n {\n if ( _static === void 0 ) _static = false;\n\n Geometry.call(this);\n\n /**\n * Buffer used for position, color, texture IDs\n *\n * @member {PIXI.Buffer}\n * @protected\n */\n this._buffer = new Buffer(null, _static, false);\n\n /**\n * Index buffer data\n *\n * @member {PIXI.Buffer}\n * @protected\n */\n this._indexBuffer = new Buffer(null, _static, true);\n\n this.addAttribute('aVertexPosition', this._buffer, 2, false, TYPES.FLOAT)\n .addAttribute('aTextureCoord', this._buffer, 2, false, TYPES.FLOAT)\n .addAttribute('aColor', this._buffer, 4, true, TYPES.UNSIGNED_BYTE)\n .addAttribute('aTextureId', this._buffer, 1, true, TYPES.FLOAT)\n .addIndex(this._indexBuffer);\n }\n\n if ( Geometry ) BatchGeometry.__proto__ = Geometry;\n BatchGeometry.prototype = Object.create( Geometry && Geometry.prototype );\n BatchGeometry.prototype.constructor = BatchGeometry;\n\n return BatchGeometry;\n}(Geometry));\n\nvar defaultVertex$2 = \"precision highp float;\\nattribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\nattribute vec4 aColor;\\nattribute float aTextureId;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform vec4 tint;\\n\\nvarying vec2 vTextureCoord;\\nvarying vec4 vColor;\\nvarying float vTextureId;\\n\\nvoid main(void){\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vTextureId = aTextureId;\\n vColor = aColor * tint;\\n}\\n\";\n\nvar defaultFragment$2 = \"varying vec2 vTextureCoord;\\nvarying vec4 vColor;\\nvarying float vTextureId;\\nuniform sampler2D uSamplers[%count%];\\n\\nvoid main(void){\\n vec4 color;\\n %forloop%\\n gl_FragColor = color * vColor;\\n}\\n\";\n\n/**\n * @class\n * @memberof PIXI\n * @hideconstructor\n */\nvar BatchPluginFactory = function BatchPluginFactory () {};\n\nvar staticAccessors$1 = { defaultVertexSrc: { configurable: true },defaultFragmentTemplate: { configurable: true } };\n\nBatchPluginFactory.create = function create (options)\n{\n var ref = Object.assign({\n vertex: defaultVertex$2,\n fragment: defaultFragment$2,\n geometryClass: BatchGeometry,\n vertexSize: 6,\n }, options);\n var vertex = ref.vertex;\n var fragment = ref.fragment;\n var vertexSize = ref.vertexSize;\n var geometryClass = ref.geometryClass;\n\n return /*@__PURE__*/(function (AbstractBatchRenderer) {\n function BatchPlugin(renderer)\n {\n AbstractBatchRenderer.call(this, renderer);\n\n this.shaderGenerator = new BatchShaderGenerator(vertex, fragment);\n this.geometryClass = geometryClass;\n this.vertexSize = vertexSize;\n }\n\n if ( AbstractBatchRenderer ) BatchPlugin.__proto__ = AbstractBatchRenderer;\n BatchPlugin.prototype = Object.create( AbstractBatchRenderer && AbstractBatchRenderer.prototype );\n BatchPlugin.prototype.constructor = BatchPlugin;\n\n return BatchPlugin;\n }(AbstractBatchRenderer));\n};\n\n/**\n * The default vertex shader source\n *\n * @static\n * @type {string}\n * @constant\n */\nstaticAccessors$1.defaultVertexSrc.get = function ()\n{\n return defaultVertex$2;\n};\n\n/**\n * The default fragment shader source\n *\n * @static\n * @type {string}\n * @constant\n */\nstaticAccessors$1.defaultFragmentTemplate.get = function ()\n{\n return defaultFragment$2;\n};\n\nObject.defineProperties( BatchPluginFactory, staticAccessors$1 );\n\n// Setup the default BatchRenderer plugin, this is what\n// we'll actually export at the root level\nvar BatchRenderer = BatchPluginFactory.create();\n\nexport { AbstractBatchRenderer, AbstractRenderer, Attribute, BaseRenderTexture, BaseTexture, BatchDrawCall, BatchGeometry, BatchPluginFactory, BatchRenderer, BatchShaderGenerator, Buffer, CubeTexture, Filter, Framebuffer, GLProgram, BaseTexture as GLTexture, Geometry, ObjectRenderer, Program, Quad, QuadUv, RenderTexture, RenderTexturePool, Renderer, Shader, SpriteMaskFilter, State, System, Texture, TextureMatrix, TextureUvs, UniformGroup, ViewableBuffer, autoDetectRenderer, checkMaxIfStatementsInShader, defaultFilter as defaultFilterVertex, _default as defaultVertex, index as resources, systems };\n//# sourceMappingURL=core.es.js.map\n","/*!\n * @pixi/extract - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/extract is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { RenderTexture } from '@pixi/core';\nimport { CanvasRenderTarget } from '@pixi/utils';\nimport { Rectangle } from '@pixi/math';\n\nvar TEMP_RECT = new Rectangle();\nvar BYTES_PER_PIXEL = 4;\n\n/**\n * The extract manager provides functionality to export content from the renderers.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.extract`\n *\n * @class\n * @memberof PIXI.extract\n */\nvar Extract = function Extract(renderer)\n{\n this.renderer = renderer;\n /**\n * Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture\n *\n * @member {PIXI.extract.Extract} extract\n * @memberof PIXI.Renderer#\n * @see PIXI.extract.Extract\n */\n renderer.extract = this;\n};\n\n/**\n * Will return a HTML Image of the target\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @param {string} [format] - Image format, e.g. \"image/jpeg\" or \"image/webp\".\n * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92.\n * @return {HTMLImageElement} HTML Image of the target\n */\nExtract.prototype.image = function image (target, format, quality)\n{\n var image = new Image();\n\n image.src = this.base64(target, format, quality);\n\n return image;\n};\n\n/**\n * Will return a a base64 encoded string of this target. It works by calling\n * `Extract.getCanvas` and then running toDataURL on that.\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @param {string} [format] - Image format, e.g. \"image/jpeg\" or \"image/webp\".\n * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92.\n * @return {string} A base64 encoded string of the texture.\n */\nExtract.prototype.base64 = function base64 (target, format, quality)\n{\n return this.canvas(target).toDataURL(format, quality);\n};\n\n/**\n * Creates a Canvas element, renders this target to it and then returns it.\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @return {HTMLCanvasElement} A Canvas element with the texture rendered on.\n */\nExtract.prototype.canvas = function canvas (target)\n{\n var renderer = this.renderer;\n var resolution;\n var frame;\n var flipY = false;\n var renderTexture;\n var generated = false;\n\n if (target)\n {\n if (target instanceof RenderTexture)\n {\n renderTexture = target;\n }\n else\n {\n renderTexture = this.renderer.generateTexture(target);\n generated = true;\n }\n }\n\n if (renderTexture)\n {\n resolution = renderTexture.baseTexture.resolution;\n frame = renderTexture.frame;\n flipY = false;\n renderer.renderTexture.bind(renderTexture);\n }\n else\n {\n resolution = this.renderer.resolution;\n\n flipY = true;\n\n frame = TEMP_RECT;\n frame.width = this.renderer.width;\n frame.height = this.renderer.height;\n\n renderer.renderTexture.bind(null);\n }\n\n var width = Math.floor(frame.width * resolution);\n var height = Math.floor(frame.height * resolution);\n\n var canvasBuffer = new CanvasRenderTarget(width, height, 1);\n\n var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height);\n\n // read pixels to the array\n var gl = renderer.gl;\n\n gl.readPixels(\n frame.x * resolution,\n frame.y * resolution,\n width,\n height,\n gl.RGBA,\n gl.UNSIGNED_BYTE,\n webglPixels\n );\n\n // add the pixels to the canvas\n var canvasData = canvasBuffer.context.getImageData(0, 0, width, height);\n\n Extract.arrayPostDivide(webglPixels, canvasData.data);\n\n canvasBuffer.context.putImageData(canvasData, 0, 0);\n\n // pulling pixels\n if (flipY)\n {\n canvasBuffer.context.scale(1, -1);\n canvasBuffer.context.drawImage(canvasBuffer.canvas, 0, -height);\n }\n\n if (generated)\n {\n renderTexture.destroy(true);\n }\n\n // send the canvas back..\n return canvasBuffer.canvas;\n};\n\n/**\n * Will return a one-dimensional array containing the pixel data of the entire texture in RGBA\n * order, with integer values between 0 and 255 (included).\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @return {Uint8Array} One-dimensional array containing the pixel data of the entire texture\n */\nExtract.prototype.pixels = function pixels (target)\n{\n var renderer = this.renderer;\n var resolution;\n var frame;\n var renderTexture;\n var generated = false;\n\n if (target)\n {\n if (target instanceof RenderTexture)\n {\n renderTexture = target;\n }\n else\n {\n renderTexture = this.renderer.generateTexture(target);\n generated = true;\n }\n }\n\n if (renderTexture)\n {\n resolution = renderTexture.baseTexture.resolution;\n frame = renderTexture.frame;\n\n // bind the buffer\n renderer.renderTexture.bind(renderTexture);\n }\n else\n {\n resolution = renderer.resolution;\n\n frame = TEMP_RECT;\n frame.width = renderer.width;\n frame.height = renderer.height;\n\n renderer.renderTexture.bind(null);\n }\n\n var width = frame.width * resolution;\n var height = frame.height * resolution;\n\n var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height);\n\n // read pixels to the array\n var gl = renderer.gl;\n\n gl.readPixels(\n frame.x * resolution,\n frame.y * resolution,\n width,\n height,\n gl.RGBA,\n gl.UNSIGNED_BYTE,\n webglPixels\n );\n\n if (generated)\n {\n renderTexture.destroy(true);\n }\n\n Extract.arrayPostDivide(webglPixels, webglPixels);\n\n return webglPixels;\n};\n\n/**\n * Destroys the extract\n *\n */\nExtract.prototype.destroy = function destroy ()\n{\n this.renderer.extract = null;\n this.renderer = null;\n};\n\n/**\n * Takes premultiplied pixel data and produces regular pixel data\n *\n * @private\n * @param pixels {number[] | Uint8Array | Uint8ClampedArray} array of pixel data\n * @param out {number[] | Uint8Array | Uint8ClampedArray} output array\n */\nExtract.arrayPostDivide = function arrayPostDivide (pixels, out)\n{\n for (var i = 0; i < pixels.length; i += 4)\n {\n var alpha = out[i + 3] = pixels[i + 3];\n\n if (alpha !== 0)\n {\n out[i] = Math.round(Math.min(pixels[i] * 255.0 / alpha, 255.0));\n out[i + 1] = Math.round(Math.min(pixels[i + 1] * 255.0 / alpha, 255.0));\n out[i + 2] = Math.round(Math.min(pixels[i + 2] * 255.0 / alpha, 255.0));\n }\n else\n {\n out[i] = pixels[i];\n out[i + 1] = pixels[i + 1];\n out[i + 2] = pixels[i + 2];\n }\n }\n};\n\n/**\n * This namespace provides renderer-specific plugins for exporting content from a renderer.\n * For instance, these plugins can be used for saving an Image, Canvas element or for exporting the raw image data (pixels).\n *\n * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @example\n * // Create a new app (will auto-add extract plugin to renderer)\n * const app = new PIXI.Application();\n *\n * // Draw a red circle\n * const graphics = new PIXI.Graphics()\n * .beginFill(0xFF0000)\n * .drawCircle(0, 0, 50);\n *\n * // Render the graphics as an HTMLImageElement\n * const image = app.renderer.plugins.extract.image(graphics);\n * document.body.appendChild(image);\n * @namespace PIXI.extract\n */\n\nexport { Extract };\n//# sourceMappingURL=extract.es.js.map\n","/*!\n * @pixi/interaction - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/interaction is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Point } from '@pixi/math';\nimport { Ticker, UPDATE_PRIORITY } from '@pixi/ticker';\nimport { DisplayObject } from '@pixi/display';\nimport { EventEmitter } from '@pixi/utils';\n\n/**\n * Holds all information related to an Interaction event\n *\n * @class\n * @memberof PIXI.interaction\n */\nvar InteractionData = function InteractionData()\n{\n /**\n * This point stores the global coords of where the touch/mouse event happened\n *\n * @member {PIXI.Point}\n */\n this.global = new Point();\n\n /**\n * The target Sprite that was interacted with\n *\n * @member {PIXI.Sprite}\n */\n this.target = null;\n\n /**\n * When passed to an event handler, this will be the original DOM Event that was captured\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent\n * @see https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent\n * @member {MouseEvent|TouchEvent|PointerEvent}\n */\n this.originalEvent = null;\n\n /**\n * Unique identifier for this interaction\n *\n * @member {number}\n */\n this.identifier = null;\n\n /**\n * Indicates whether or not the pointer device that created the event is the primary pointer.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary\n * @type {Boolean}\n */\n this.isPrimary = false;\n\n /**\n * Indicates which button was pressed on the mouse or pointer device to trigger the event.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button\n * @type {number}\n */\n this.button = 0;\n\n /**\n * Indicates which buttons are pressed on the mouse or pointer device when the event is triggered.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/buttons\n * @type {number}\n */\n this.buttons = 0;\n\n /**\n * The width of the pointer's contact along the x-axis, measured in CSS pixels.\n * radiusX of TouchEvents will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width\n * @type {number}\n */\n this.width = 0;\n\n /**\n * The height of the pointer's contact along the y-axis, measured in CSS pixels.\n * radiusY of TouchEvents will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height\n * @type {number}\n */\n this.height = 0;\n\n /**\n * The angle, in degrees, between the pointer device and the screen.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX\n * @type {number}\n */\n this.tiltX = 0;\n\n /**\n * The angle, in degrees, between the pointer device and the screen.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY\n * @type {number}\n */\n this.tiltY = 0;\n\n /**\n * The type of pointer that triggered the event.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType\n * @type {string}\n */\n this.pointerType = null;\n\n /**\n * Pressure applied by the pointing device during the event. A Touch's force property\n * will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure\n * @type {number}\n */\n this.pressure = 0;\n\n /**\n * From TouchEvents (not PointerEvents triggered by touches), the rotationAngle of the Touch.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle\n * @type {number}\n */\n this.rotationAngle = 0;\n\n /**\n * Twist of a stylus pointer.\n * @see https://w3c.github.io/pointerevents/#pointerevent-interface\n * @type {number}\n */\n this.twist = 0;\n\n /**\n * Barrel pressure on a stylus pointer.\n * @see https://w3c.github.io/pointerevents/#pointerevent-interface\n * @type {number}\n */\n this.tangentialPressure = 0;\n};\n\nvar prototypeAccessors = { pointerId: { configurable: true } };\n\n/**\n * The unique identifier of the pointer. It will be the same as `identifier`.\n * @readonly\n * @member {number}\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId\n */\nprototypeAccessors.pointerId.get = function ()\n{\n return this.identifier;\n};\n\n/**\n * This will return the local coordinates of the specified displayObject for this InteractionData\n *\n * @param {PIXI.DisplayObject} displayObject - The DisplayObject that you would like the local\n * coords off\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional (otherwise\n * will create a new point)\n * @param {PIXI.Point} [globalPos] - A Point object containing your custom global coords, optional\n * (otherwise will use the current global coords)\n * @return {PIXI.Point} A point containing the coordinates of the InteractionData position relative\n * to the DisplayObject\n */\nInteractionData.prototype.getLocalPosition = function getLocalPosition (displayObject, point, globalPos)\n{\n return displayObject.worldTransform.applyInverse(globalPos || this.global, point);\n};\n\n/**\n * Copies properties from normalized event data.\n *\n * @param {Touch|MouseEvent|PointerEvent} event The normalized event data\n */\nInteractionData.prototype.copyEvent = function copyEvent (event)\n{\n // isPrimary should only change on touchstart/pointerdown, so we don't want to overwrite\n // it with \"false\" on later events when our shim for it on touch events might not be\n // accurate\n if (event.isPrimary)\n {\n this.isPrimary = true;\n }\n this.button = event.button;\n // event.buttons is not available in all browsers (ie. Safari), but it does have a non-standard\n // event.which property instead, which conveys the same information.\n this.buttons = Number.isInteger(event.buttons) ? event.buttons : event.which;\n this.width = event.width;\n this.height = event.height;\n this.tiltX = event.tiltX;\n this.tiltY = event.tiltY;\n this.pointerType = event.pointerType;\n this.pressure = event.pressure;\n this.rotationAngle = event.rotationAngle;\n this.twist = event.twist || 0;\n this.tangentialPressure = event.tangentialPressure || 0;\n};\n\n/**\n * Resets the data for pooling.\n */\nInteractionData.prototype.reset = function reset ()\n{\n // isPrimary is the only property that we really need to reset - everything else is\n // guaranteed to be overwritten\n this.isPrimary = false;\n};\n\nObject.defineProperties( InteractionData.prototype, prototypeAccessors );\n\n/**\n * Event class that mimics native DOM events.\n *\n * @class\n * @memberof PIXI.interaction\n */\nvar InteractionEvent = function InteractionEvent()\n{\n /**\n * Whether this event will continue propagating in the tree.\n *\n * Remaining events for the {@link stopsPropagatingAt} object\n * will still be dispatched.\n *\n * @member {boolean}\n */\n this.stopped = false;\n\n /**\n * At which object this event stops propagating.\n *\n * @private\n * @member {PIXI.DisplayObject}\n */\n this.stopsPropagatingAt = null;\n\n /**\n * Whether we already reached the element we want to\n * stop propagating at. This is important for delayed events,\n * where we start over deeper in the tree again.\n *\n * @private\n * @member {boolean}\n */\n this.stopPropagationHint = false;\n\n /**\n * The object which caused this event to be dispatched.\n * For listener callback see {@link PIXI.interaction.InteractionEvent.currentTarget}.\n *\n * @member {PIXI.DisplayObject}\n */\n this.target = null;\n\n /**\n * The object whose event listener’s callback is currently being invoked.\n *\n * @member {PIXI.DisplayObject}\n */\n this.currentTarget = null;\n\n /**\n * Type of the event\n *\n * @member {string}\n */\n this.type = null;\n\n /**\n * InteractionData related to this event\n *\n * @member {PIXI.interaction.InteractionData}\n */\n this.data = null;\n};\n\n/**\n * Prevents event from reaching any objects other than the current object.\n *\n */\nInteractionEvent.prototype.stopPropagation = function stopPropagation ()\n{\n this.stopped = true;\n this.stopPropagationHint = true;\n this.stopsPropagatingAt = this.currentTarget;\n};\n\n/**\n * Resets the event.\n */\nInteractionEvent.prototype.reset = function reset ()\n{\n this.stopped = false;\n this.stopsPropagatingAt = null;\n this.stopPropagationHint = false;\n this.currentTarget = null;\n this.target = null;\n};\n\n/**\n * DisplayObjects with the {@link PIXI.interaction.interactiveTarget} mixin use this class to track interactions\n *\n * @class\n * @private\n * @memberof PIXI.interaction\n */\nvar InteractionTrackingData = function InteractionTrackingData(pointerId)\n{\n this._pointerId = pointerId;\n this._flags = InteractionTrackingData.FLAGS.NONE;\n};\n\nvar prototypeAccessors$1 = { pointerId: { configurable: true },flags: { configurable: true },none: { configurable: true },over: { configurable: true },rightDown: { configurable: true },leftDown: { configurable: true } };\n\n/**\n *\n * @private\n * @param {number} flag - The interaction flag to set\n * @param {boolean} yn - Should the flag be set or unset\n */\nInteractionTrackingData.prototype._doSet = function _doSet (flag, yn)\n{\n if (yn)\n {\n this._flags = this._flags | flag;\n }\n else\n {\n this._flags = this._flags & (~flag);\n }\n};\n\n/**\n * Unique pointer id of the event\n *\n * @readonly\n * @private\n * @member {number}\n */\nprototypeAccessors$1.pointerId.get = function ()\n{\n return this._pointerId;\n};\n\n/**\n * State of the tracking data, expressed as bit flags\n *\n * @private\n * @member {number}\n */\nprototypeAccessors$1.flags.get = function ()\n{\n return this._flags;\n};\n\nprototypeAccessors$1.flags.set = function (flags) // eslint-disable-line require-jsdoc\n{\n this._flags = flags;\n};\n\n/**\n * Is the tracked event inactive (not over or down)?\n *\n * @private\n * @member {number}\n */\nprototypeAccessors$1.none.get = function ()\n{\n return this._flags === this.constructor.FLAGS.NONE;\n};\n\n/**\n * Is the tracked event over the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.over.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.OVER) !== 0;\n};\n\nprototypeAccessors$1.over.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.OVER, yn);\n};\n\n/**\n * Did the right mouse button come down in the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.rightDown.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.RIGHT_DOWN) !== 0;\n};\n\nprototypeAccessors$1.rightDown.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.RIGHT_DOWN, yn);\n};\n\n/**\n * Did the left mouse button come down in the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.leftDown.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.LEFT_DOWN) !== 0;\n};\n\nprototypeAccessors$1.leftDown.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.LEFT_DOWN, yn);\n};\n\nObject.defineProperties( InteractionTrackingData.prototype, prototypeAccessors$1 );\n\nInteractionTrackingData.FLAGS = Object.freeze({\n NONE: 0,\n OVER: 1 << 0,\n LEFT_DOWN: 1 << 1,\n RIGHT_DOWN: 1 << 2,\n});\n\n/**\n * Interface for classes that represent a hit area.\n *\n * It is implemented by the following classes:\n * - {@link PIXI.Circle}\n * - {@link PIXI.Ellipse}\n * - {@link PIXI.Polygon}\n * - {@link PIXI.RoundedRectangle}\n *\n * @interface IHitArea\n * @memberof PIXI\n */\n\n/**\n * Checks whether the x and y coordinates given are contained within this area\n *\n * @method\n * @name contains\n * @memberof PIXI.IHitArea#\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this area\n */\n\n/**\n * Default property values of interactive objects\n * Used by {@link PIXI.interaction.InteractionManager} to automatically give all DisplayObjects these properties\n *\n * @private\n * @name interactiveTarget\n * @type {Object}\n * @memberof PIXI.interaction\n * @example\n * function MyObject() {}\n *\n * Object.assign(\n * DisplayObject.prototype,\n * PIXI.interaction.interactiveTarget\n * );\n */\nvar interactiveTarget = {\n\n /**\n * Enable interaction events for the DisplayObject. Touch, pointer and mouse\n * events will not be emitted unless `interactive` is set to `true`.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.on('tap', (event) => {\n * //handle event\n * });\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n interactive: false,\n\n /**\n * Determines if the children to the displayObject can be clicked/touched\n * Setting this to false allows PixiJS to bypass a recursive `hitTest` function\n *\n * @member {boolean}\n * @memberof PIXI.Container#\n */\n interactiveChildren: true,\n\n /**\n * Interaction shape. Children will be hit first, then this shape will be checked.\n * Setting this will cause this shape to be checked in hit tests rather than the displayObject's bounds.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.hitArea = new PIXI.Rectangle(0, 0, 100, 100);\n * @member {PIXI.IHitArea}\n * @memberof PIXI.DisplayObject#\n */\n hitArea: null,\n\n /**\n * If enabled, the mouse cursor use the pointer behavior when hovered over the displayObject if it is interactive\n * Setting this changes the 'cursor' property to `'pointer'`.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.buttonMode = true;\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n get buttonMode()\n {\n return this.cursor === 'pointer';\n },\n set buttonMode(value)\n {\n if (value)\n {\n this.cursor = 'pointer';\n }\n else if (this.cursor === 'pointer')\n {\n this.cursor = null;\n }\n },\n\n /**\n * This defines what cursor mode is used when the mouse cursor\n * is hovered over the displayObject.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.cursor = 'wait';\n * @see https://developer.mozilla.org/en/docs/Web/CSS/cursor\n *\n * @member {string}\n * @memberof PIXI.DisplayObject#\n */\n cursor: null,\n\n /**\n * Internal set of all active pointers, by identifier\n *\n * @member {Map}\n * @memberof PIXI.DisplayObject#\n * @private\n */\n get trackedPointers()\n {\n if (this._trackedPointers === undefined) { this._trackedPointers = {}; }\n\n return this._trackedPointers;\n },\n\n /**\n * Map of all tracked pointers, by identifier. Use trackedPointers to access.\n *\n * @private\n * @type {Map}\n */\n _trackedPointers: undefined,\n};\n\n// Mix interactiveTarget into DisplayObject.prototype,\n// after deprecation has been handled\nDisplayObject.mixin(interactiveTarget);\n\nvar MOUSE_POINTER_ID = 1;\n\n// helpers for hitTest() - only used inside hitTest()\nvar hitTestEvent = {\n target: null,\n data: {\n global: null,\n },\n};\n\n/**\n * The interaction manager deals with mouse, touch and pointer events.\n *\n * Any DisplayObject can be interactive if its `interactive` property is set to true.\n *\n * This manager also supports multitouch.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.interaction`\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI.interaction\n */\nvar InteractionManager = /*@__PURE__*/(function (EventEmitter) {\n function InteractionManager(renderer, options)\n {\n EventEmitter.call(this);\n\n options = options || {};\n\n /**\n * The renderer this interaction manager works for.\n *\n * @member {PIXI.AbstractRenderer}\n */\n this.renderer = renderer;\n\n /**\n * Should default browser actions automatically be prevented.\n * Does not apply to pointer events for backwards compatibility\n * preventDefault on pointer events stops mouse events from firing\n * Thus, for every pointer event, there will always be either a mouse of touch event alongside it.\n *\n * @member {boolean}\n * @default true\n */\n this.autoPreventDefault = options.autoPreventDefault !== undefined ? options.autoPreventDefault : true;\n\n /**\n * Frequency in milliseconds that the mousemove, mouseover & mouseout interaction events will be checked.\n *\n * @member {number}\n * @default 10\n */\n this.interactionFrequency = options.interactionFrequency || 10;\n\n /**\n * The mouse data\n *\n * @member {PIXI.interaction.InteractionData}\n */\n this.mouse = new InteractionData();\n this.mouse.identifier = MOUSE_POINTER_ID;\n\n // setting the mouse to start off far off screen will mean that mouse over does\n // not get called before we even move the mouse.\n this.mouse.global.set(-999999);\n\n /**\n * Actively tracked InteractionData\n *\n * @private\n * @member {Object.}\n */\n this.activeInteractionData = {};\n this.activeInteractionData[MOUSE_POINTER_ID] = this.mouse;\n\n /**\n * Pool of unused InteractionData\n *\n * @private\n * @member {PIXI.interaction.InteractionData[]}\n */\n this.interactionDataPool = [];\n\n /**\n * An event data object to handle all the event tracking/dispatching\n *\n * @member {object}\n */\n this.eventData = new InteractionEvent();\n\n /**\n * The DOM element to bind to.\n *\n * @protected\n * @member {HTMLElement}\n */\n this.interactionDOMElement = null;\n\n /**\n * This property determines if mousemove and touchmove events are fired only when the cursor\n * is over the object.\n * Setting to true will make things work more in line with how the DOM version works.\n * Setting to false can make things easier for things like dragging\n * It is currently set to false as this is how PixiJS used to work. This will be set to true in\n * future versions of pixi.\n *\n * @member {boolean}\n * @default false\n */\n this.moveWhenInside = false;\n\n /**\n * Have events been attached to the dom element?\n *\n * @protected\n * @member {boolean}\n */\n this.eventsAdded = false;\n\n /**\n * Is the mouse hovering over the renderer?\n *\n * @protected\n * @member {boolean}\n */\n this.mouseOverRenderer = false;\n\n /**\n * Does the device support touch events\n * https://www.w3.org/TR/touch-events/\n *\n * @readonly\n * @member {boolean}\n */\n this.supportsTouchEvents = 'ontouchstart' in window;\n\n /**\n * Does the device support pointer events\n * https://www.w3.org/Submission/pointer-events/\n *\n * @readonly\n * @member {boolean}\n */\n this.supportsPointerEvents = !!window.PointerEvent;\n\n // this will make it so that you don't have to call bind all the time\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerUp = this.onPointerUp.bind(this);\n this.processPointerUp = this.processPointerUp.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerCancel = this.onPointerCancel.bind(this);\n this.processPointerCancel = this.processPointerCancel.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerDown = this.onPointerDown.bind(this);\n this.processPointerDown = this.processPointerDown.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerMove = this.onPointerMove.bind(this);\n this.processPointerMove = this.processPointerMove.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerOut = this.onPointerOut.bind(this);\n this.processPointerOverOut = this.processPointerOverOut.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerOver = this.onPointerOver.bind(this);\n\n /**\n * Dictionary of how different cursor modes are handled. Strings are handled as CSS cursor\n * values, objects are handled as dictionaries of CSS values for interactionDOMElement,\n * and functions are called instead of changing the CSS.\n * Default CSS cursor values are provided for 'default' and 'pointer' modes.\n * @member {Object.}\n */\n this.cursorStyles = {\n default: 'inherit',\n pointer: 'pointer',\n };\n\n /**\n * The mode of the cursor that is being used.\n * The value of this is a key from the cursorStyles dictionary.\n *\n * @member {string}\n */\n this.currentCursorMode = null;\n\n /**\n * Internal cached let.\n *\n * @private\n * @member {string}\n */\n this.cursor = null;\n\n /**\n * Internal cached let.\n *\n * @private\n * @member {PIXI.Point}\n */\n this._tempPoint = new Point();\n\n /**\n * The current resolution / device pixel ratio.\n *\n * @member {number}\n * @default 1\n */\n this.resolution = 1;\n\n /**\n * Delayed pointer events. Used to guarantee correct ordering of over/out events.\n *\n * @private\n * @member {Array}\n */\n this.delayedEvents = [];\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed on the display\n * object.\n *\n * @event PIXI.interaction.InteractionManager#mousedown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * on the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released over the display\n * object.\n *\n * @event PIXI.interaction.InteractionManager#mouseup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * over the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed and released on\n * the display object.\n *\n * @event PIXI.interaction.InteractionManager#click\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * and released on the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightclick\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released outside the\n * display object that initially registered a\n * [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown}.\n *\n * @event PIXI.interaction.InteractionManager#mouseupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * outside the display object that initially registered a\n * [rightdown]{@link PIXI.interaction.InteractionManager#event:rightdown}.\n *\n * @event PIXI.interaction.InteractionManager#rightupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved while over the display object\n *\n * @event PIXI.interaction.InteractionManager#mousemove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved onto the display object\n *\n * @event PIXI.interaction.InteractionManager#mouseover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved off the display object\n *\n * @event PIXI.interaction.InteractionManager#mouseout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed on the display object.\n *\n * @event PIXI.interaction.InteractionManager#pointerdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released over the display object.\n * Not always fired when some buttons are held down while others are released. In those cases,\n * use [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown} and\n * [mouseup]{@link PIXI.interaction.InteractionManager#event:mouseup} instead.\n *\n * @event PIXI.interaction.InteractionManager#pointerup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a pointer event\n *\n * @event PIXI.interaction.InteractionManager#pointercancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed and released on the display object.\n *\n * @event PIXI.interaction.InteractionManager#pointertap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released outside the display object that initially\n * registered a [pointerdown]{@link PIXI.interaction.InteractionManager#event:pointerdown}.\n *\n * @event PIXI.interaction.InteractionManager#pointerupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved while over the display object\n *\n * @event PIXI.interaction.InteractionManager#pointermove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved onto the display object\n *\n * @event PIXI.interaction.InteractionManager#pointerover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved off the display object\n *\n * @event PIXI.interaction.InteractionManager#pointerout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed on the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchstart\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed from the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchend\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a touch\n *\n * @event PIXI.interaction.InteractionManager#touchcancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed and removed from the display object.\n *\n * @event PIXI.interaction.InteractionManager#tap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed outside of the display object that initially\n * registered a [touchstart]{@link PIXI.interaction.InteractionManager#event:touchstart}.\n *\n * @event PIXI.interaction.InteractionManager#touchendoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is moved along the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchmove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed on the display.\n * object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mousedown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * on the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released over the display\n * object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * over the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed and released on\n * the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#click\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * and released on the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightclick\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released outside the\n * display object that initially registered a\n * [mousedown]{@link PIXI.DisplayObject#event:mousedown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * outside the display object that initially registered a\n * [rightdown]{@link PIXI.DisplayObject#event:rightdown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved while over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mousemove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved onto the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved off the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a pointer event.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointercancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed and released on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointertap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released outside the display object that initially\n * registered a [pointerdown]{@link PIXI.DisplayObject#event:pointerdown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved while over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointermove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved onto the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved off the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchstart\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed from the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchend\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a touch.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchcancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed and removed from the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#tap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed outside of the display object that initially\n * registered a [touchstart]{@link PIXI.DisplayObject#event:touchstart}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchendoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is moved along the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchmove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n this.setTargetElement(this.renderer.view, this.renderer.resolution);\n }\n\n if ( EventEmitter ) InteractionManager.__proto__ = EventEmitter;\n InteractionManager.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n InteractionManager.prototype.constructor = InteractionManager;\n\n /**\n * Hit tests a point against the display tree, returning the first interactive object that is hit.\n *\n * @param {PIXI.Point} globalPoint - A point to hit test with, in global space.\n * @param {PIXI.Container} [root] - The root display object to start from. If omitted, defaults\n * to the last rendered root of the associated renderer.\n * @return {PIXI.DisplayObject} The hit display object, if any.\n */\n InteractionManager.prototype.hitTest = function hitTest (globalPoint, root)\n {\n // clear the target for our hit test\n hitTestEvent.target = null;\n // assign the global point\n hitTestEvent.data.global = globalPoint;\n // ensure safety of the root\n if (!root)\n {\n root = this.renderer._lastObjectRendered;\n }\n // run the hit test\n this.processInteractive(hitTestEvent, root, null, true);\n // return our found object - it'll be null if we didn't hit anything\n\n return hitTestEvent.target;\n };\n\n /**\n * Sets the DOM element which will receive mouse/touch events. This is useful for when you have\n * other DOM elements on top of the renderers Canvas element. With this you'll be bale to delegate\n * another DOM element to receive those events.\n *\n * @param {HTMLElement} element - the DOM element which will receive mouse and touch events.\n * @param {number} [resolution=1] - The resolution / device pixel ratio of the new element (relative to the canvas).\n */\n InteractionManager.prototype.setTargetElement = function setTargetElement (element, resolution)\n {\n if ( resolution === void 0 ) resolution = 1;\n\n this.removeEvents();\n\n this.interactionDOMElement = element;\n\n this.resolution = resolution;\n\n this.addEvents();\n };\n\n /**\n * Registers all the DOM events\n *\n * @private\n */\n InteractionManager.prototype.addEvents = function addEvents ()\n {\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n Ticker.system.add(this.update, this, UPDATE_PRIORITY.INTERACTION);\n\n if (window.navigator.msPointerEnabled)\n {\n this.interactionDOMElement.style['-ms-content-zooming'] = 'none';\n this.interactionDOMElement.style['-ms-touch-action'] = 'none';\n }\n else if (this.supportsPointerEvents)\n {\n this.interactionDOMElement.style['touch-action'] = 'none';\n }\n\n /**\n * These events are added first, so that if pointer events are normalized, they are fired\n * in the same order as non-normalized events. ie. pointer event 1st, mouse / touch 2nd\n */\n if (this.supportsPointerEvents)\n {\n window.document.addEventListener('pointermove', this.onPointerMove, true);\n this.interactionDOMElement.addEventListener('pointerdown', this.onPointerDown, true);\n // pointerout is fired in addition to pointerup (for touch events) and pointercancel\n // we already handle those, so for the purposes of what we do in onPointerOut, we only\n // care about the pointerleave event\n this.interactionDOMElement.addEventListener('pointerleave', this.onPointerOut, true);\n this.interactionDOMElement.addEventListener('pointerover', this.onPointerOver, true);\n window.addEventListener('pointercancel', this.onPointerCancel, true);\n window.addEventListener('pointerup', this.onPointerUp, true);\n }\n else\n {\n window.document.addEventListener('mousemove', this.onPointerMove, true);\n this.interactionDOMElement.addEventListener('mousedown', this.onPointerDown, true);\n this.interactionDOMElement.addEventListener('mouseout', this.onPointerOut, true);\n this.interactionDOMElement.addEventListener('mouseover', this.onPointerOver, true);\n window.addEventListener('mouseup', this.onPointerUp, true);\n }\n\n // always look directly for touch events so that we can provide original data\n // In a future version we should change this to being just a fallback and rely solely on\n // PointerEvents whenever available\n if (this.supportsTouchEvents)\n {\n this.interactionDOMElement.addEventListener('touchstart', this.onPointerDown, true);\n this.interactionDOMElement.addEventListener('touchcancel', this.onPointerCancel, true);\n this.interactionDOMElement.addEventListener('touchend', this.onPointerUp, true);\n this.interactionDOMElement.addEventListener('touchmove', this.onPointerMove, true);\n }\n\n this.eventsAdded = true;\n };\n\n /**\n * Removes all the DOM events that were previously registered\n *\n * @private\n */\n InteractionManager.prototype.removeEvents = function removeEvents ()\n {\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n Ticker.system.remove(this.update, this);\n\n if (window.navigator.msPointerEnabled)\n {\n this.interactionDOMElement.style['-ms-content-zooming'] = '';\n this.interactionDOMElement.style['-ms-touch-action'] = '';\n }\n else if (this.supportsPointerEvents)\n {\n this.interactionDOMElement.style['touch-action'] = '';\n }\n\n if (this.supportsPointerEvents)\n {\n window.document.removeEventListener('pointermove', this.onPointerMove, true);\n this.interactionDOMElement.removeEventListener('pointerdown', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('pointerleave', this.onPointerOut, true);\n this.interactionDOMElement.removeEventListener('pointerover', this.onPointerOver, true);\n window.removeEventListener('pointercancel', this.onPointerCancel, true);\n window.removeEventListener('pointerup', this.onPointerUp, true);\n }\n else\n {\n window.document.removeEventListener('mousemove', this.onPointerMove, true);\n this.interactionDOMElement.removeEventListener('mousedown', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('mouseout', this.onPointerOut, true);\n this.interactionDOMElement.removeEventListener('mouseover', this.onPointerOver, true);\n window.removeEventListener('mouseup', this.onPointerUp, true);\n }\n\n if (this.supportsTouchEvents)\n {\n this.interactionDOMElement.removeEventListener('touchstart', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('touchcancel', this.onPointerCancel, true);\n this.interactionDOMElement.removeEventListener('touchend', this.onPointerUp, true);\n this.interactionDOMElement.removeEventListener('touchmove', this.onPointerMove, true);\n }\n\n this.interactionDOMElement = null;\n\n this.eventsAdded = false;\n };\n\n /**\n * Updates the state of interactive objects.\n * Invoked by a throttled ticker update from {@link PIXI.Ticker.system}.\n *\n * @param {number} deltaTime - time delta since last tick\n */\n InteractionManager.prototype.update = function update (deltaTime)\n {\n this._deltaTime += deltaTime;\n\n if (this._deltaTime < this.interactionFrequency)\n {\n return;\n }\n\n this._deltaTime = 0;\n\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n // if the user move the mouse this check has already been done using the mouse move!\n if (this.didMove)\n {\n this.didMove = false;\n\n return;\n }\n\n this.cursor = null;\n\n // Resets the flag as set by a stopPropagation call. This flag is usually reset by a user interaction of any kind,\n // but there was a scenario of a display object moving under a static mouse cursor.\n // In this case, mouseover and mouseevents would not pass the flag test in dispatchEvent function\n for (var k in this.activeInteractionData)\n {\n // eslint-disable-next-line no-prototype-builtins\n if (this.activeInteractionData.hasOwnProperty(k))\n {\n var interactionData = this.activeInteractionData[k];\n\n if (interactionData.originalEvent && interactionData.pointerType !== 'touch')\n {\n var interactionEvent = this.configureInteractionEventForDOMEvent(\n this.eventData,\n interactionData.originalEvent,\n interactionData\n );\n\n this.processInteractive(\n interactionEvent,\n this.renderer._lastObjectRendered,\n this.processPointerOverOut,\n true\n );\n }\n }\n }\n\n this.setCursorMode(this.cursor);\n };\n\n /**\n * Sets the current cursor mode, handling any callbacks or CSS style changes.\n *\n * @param {string} mode - cursor mode, a key from the cursorStyles dictionary\n */\n InteractionManager.prototype.setCursorMode = function setCursorMode (mode)\n {\n mode = mode || 'default';\n // if the mode didn't actually change, bail early\n if (this.currentCursorMode === mode)\n {\n return;\n }\n this.currentCursorMode = mode;\n var style = this.cursorStyles[mode];\n\n // only do things if there is a cursor style for it\n if (style)\n {\n switch (typeof style)\n {\n case 'string':\n // string styles are handled as cursor CSS\n this.interactionDOMElement.style.cursor = style;\n break;\n case 'function':\n // functions are just called, and passed the cursor mode\n style(mode);\n break;\n case 'object':\n // if it is an object, assume that it is a dictionary of CSS styles,\n // apply it to the interactionDOMElement\n Object.assign(this.interactionDOMElement.style, style);\n break;\n }\n }\n else if (typeof mode === 'string' && !Object.prototype.hasOwnProperty.call(this.cursorStyles, mode))\n {\n // if it mode is a string (not a Symbol) and cursorStyles doesn't have any entry\n // for the mode, then assume that the dev wants it to be CSS for the cursor.\n this.interactionDOMElement.style.cursor = mode;\n }\n };\n\n /**\n * Dispatches an event on the display object that was interacted with\n *\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question\n * @param {string} eventString - the name of the event (e.g, mousedown)\n * @param {object} eventData - the event data object\n * @private\n */\n InteractionManager.prototype.dispatchEvent = function dispatchEvent (displayObject, eventString, eventData)\n {\n // Even if the event was stopped, at least dispatch any remaining events\n // for the same display object.\n if (!eventData.stopPropagationHint || displayObject === eventData.stopsPropagatingAt)\n {\n eventData.currentTarget = displayObject;\n eventData.type = eventString;\n\n displayObject.emit(eventString, eventData);\n\n if (displayObject[eventString])\n {\n displayObject[eventString](eventData);\n }\n }\n };\n\n /**\n * Puts a event on a queue to be dispatched later. This is used to guarantee correct\n * ordering of over/out events.\n *\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question\n * @param {string} eventString - the name of the event (e.g, mousedown)\n * @param {object} eventData - the event data object\n * @private\n */\n InteractionManager.prototype.delayDispatchEvent = function delayDispatchEvent (displayObject, eventString, eventData)\n {\n this.delayedEvents.push({ displayObject: displayObject, eventString: eventString, eventData: eventData });\n };\n\n /**\n * Maps x and y coords from a DOM object and maps them correctly to the PixiJS view. The\n * resulting value is stored in the point. This takes into account the fact that the DOM\n * element could be scaled and positioned anywhere on the screen.\n *\n * @param {PIXI.Point} point - the point that the result will be stored in\n * @param {number} x - the x coord of the position to map\n * @param {number} y - the y coord of the position to map\n */\n InteractionManager.prototype.mapPositionToPoint = function mapPositionToPoint (point, x, y)\n {\n var rect;\n\n // IE 11 fix\n if (!this.interactionDOMElement.parentElement)\n {\n rect = { x: 0, y: 0, width: 0, height: 0 };\n }\n else\n {\n rect = this.interactionDOMElement.getBoundingClientRect();\n }\n\n var resolutionMultiplier = 1.0 / this.resolution;\n\n point.x = ((x - rect.left) * (this.interactionDOMElement.width / rect.width)) * resolutionMultiplier;\n point.y = ((y - rect.top) * (this.interactionDOMElement.height / rect.height)) * resolutionMultiplier;\n };\n\n /**\n * This function is provides a neat way of crawling through the scene graph and running a\n * specified function on all interactive objects it finds. It will also take care of hit\n * testing the interactive objects and passes the hit across in the function.\n *\n * @protected\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - event containing the point that\n * is tested for collision\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the displayObject\n * that will be hit test (recursively crawls its children)\n * @param {Function} [func] - the function that will be called on each interactive object. The\n * interactionEvent, displayObject and hit will be passed to the function\n * @param {boolean} [hitTest] - this indicates if the objects inside should be hit test against the point\n * @param {boolean} [interactive] - Whether the displayObject is interactive\n * @param {boolean} [skipDelayed] - Whether to process delayed events before returning. This is\n * used to avoid processing them too early during recursive calls.\n * @return {boolean} returns true if the displayObject hit the point\n */\n InteractionManager.prototype.processInteractive = function processInteractive (interactionEvent, displayObject, func, hitTest, interactive, skipDelayed)\n {\n if (!displayObject || !displayObject.visible)\n {\n return false;\n }\n\n var point = interactionEvent.data.global;\n\n // Took a little while to rework this function correctly! But now it is done and nice and optimized! ^_^\n //\n // This function will now loop through all objects and then only hit test the objects it HAS\n // to, not all of them. MUCH faster..\n // An object will be hit test if the following is true:\n //\n // 1: It is interactive.\n // 2: It belongs to a parent that is interactive AND one of the parents children have not already been hit.\n //\n // As another little optimization once an interactive object has been hit we can carry on\n // through the scenegraph, but we know that there will be no more hits! So we can avoid extra hit tests\n // A final optimization is that an object is not hit test directly if a child has already been hit.\n\n interactive = displayObject.interactive || interactive;\n\n var hit = false;\n var interactiveParent = interactive;\n\n // Flag here can set to false if the event is outside the parents hitArea or mask\n var hitTestChildren = true;\n\n // If there is a hitArea, no need to test against anything else if the pointer is not within the hitArea\n // There is also no longer a need to hitTest children.\n if (displayObject.hitArea)\n {\n if (hitTest)\n {\n displayObject.worldTransform.applyInverse(point, this._tempPoint);\n if (!displayObject.hitArea.contains(this._tempPoint.x, this._tempPoint.y))\n {\n hitTest = false;\n hitTestChildren = false;\n }\n else\n {\n hit = true;\n }\n }\n interactiveParent = false;\n }\n // If there is a mask, no need to hitTest against anything else if the pointer is not within the mask.\n // We still want to hitTestChildren, however, to ensure a mouseout can still be generated.\n // https://github.com/pixijs/pixi.js/issues/5135\n else if (displayObject._mask)\n {\n if (hitTest)\n {\n if (!(displayObject._mask.containsPoint && displayObject._mask.containsPoint(point)))\n {\n hitTest = false;\n }\n }\n }\n\n // ** FREE TIP **! If an object is not interactive or has no buttons in it\n // (such as a game scene!) set interactiveChildren to false for that displayObject.\n // This will allow PixiJS to completely ignore and bypass checking the displayObjects children.\n if (hitTestChildren && displayObject.interactiveChildren && displayObject.children)\n {\n var children = displayObject.children;\n\n for (var i = children.length - 1; i >= 0; i--)\n {\n var child = children[i];\n\n // time to get recursive.. if this function will return if something is hit..\n var childHit = this.processInteractive(interactionEvent, child, func, hitTest, interactiveParent, true);\n\n if (childHit)\n {\n // its a good idea to check if a child has lost its parent.\n // this means it has been removed whilst looping so its best\n if (!child.parent)\n {\n continue;\n }\n\n // we no longer need to hit test any more objects in this container as we we\n // now know the parent has been hit\n interactiveParent = false;\n\n // If the child is interactive , that means that the object hit was actually\n // interactive and not just the child of an interactive object.\n // This means we no longer need to hit test anything else. We still need to run\n // through all objects, but we don't need to perform any hit tests.\n\n if (childHit)\n {\n if (interactionEvent.target)\n {\n hitTest = false;\n }\n hit = true;\n }\n }\n }\n }\n\n // no point running this if the item is not interactive or does not have an interactive parent.\n if (interactive)\n {\n // if we are hit testing (as in we have no hit any objects yet)\n // We also don't need to worry about hit testing if once of the displayObjects children\n // has already been hit - but only if it was interactive, otherwise we need to keep\n // looking for an interactive child, just in case we hit one\n if (hitTest && !interactionEvent.target)\n {\n // already tested against hitArea if it is defined\n if (!displayObject.hitArea && displayObject.containsPoint)\n {\n if (displayObject.containsPoint(point))\n {\n hit = true;\n }\n }\n }\n\n if (displayObject.interactive)\n {\n if (hit && !interactionEvent.target)\n {\n interactionEvent.target = displayObject;\n }\n\n if (func)\n {\n func(interactionEvent, displayObject, !!hit);\n }\n }\n }\n\n var delayedEvents = this.delayedEvents;\n\n if (delayedEvents.length && !skipDelayed)\n {\n // Reset the propagation hint, because we start deeper in the tree again.\n interactionEvent.stopPropagationHint = false;\n\n var delayedLen = delayedEvents.length;\n\n this.delayedEvents = [];\n\n for (var i$1 = 0; i$1 < delayedLen; i$1++)\n {\n var ref = delayedEvents[i$1];\n var displayObject$1 = ref.displayObject;\n var eventString = ref.eventString;\n var eventData = ref.eventData;\n\n // When we reach the object we wanted to stop propagating at,\n // set the propagation hint.\n if (eventData.stopsPropagatingAt === displayObject$1)\n {\n eventData.stopPropagationHint = true;\n }\n\n this.dispatchEvent(displayObject$1, eventString, eventData);\n }\n }\n\n return hit;\n };\n\n /**\n * Is called when the pointer button is pressed down on the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being pressed down\n */\n InteractionManager.prototype.onPointerDown = function onPointerDown (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n /**\n * No need to prevent default on natural pointer events, as there are no side effects\n * Normalized events, however, may have the double mousedown/touchstart issue on the native android browser,\n * so still need to be prevented.\n */\n\n // Guaranteed that there will be at least one event in events, and all events must have the same pointer type\n\n if (this.autoPreventDefault && events[0].isNormalized)\n {\n var cancelable = originalEvent.cancelable || !('cancelable' in originalEvent);\n\n if (cancelable)\n {\n originalEvent.preventDefault();\n }\n }\n\n var eventLen = events.length;\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerDown, true);\n\n this.emit('pointerdown', interactionEvent);\n if (event.pointerType === 'touch')\n {\n this.emit('touchstart', interactionEvent);\n }\n // emit a mouse event for \"pen\" pointers, the way a browser would emit a fallback event\n else if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n var isRightButton = event.button === 2;\n\n this.emit(isRightButton ? 'rightdown' : 'mousedown', this.eventData);\n }\n }\n };\n\n /**\n * Processes the result of the pointer down check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerDown = function processPointerDown (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n var id = interactionEvent.data.identifier;\n\n if (hit)\n {\n if (!displayObject.trackedPointers[id])\n {\n displayObject.trackedPointers[id] = new InteractionTrackingData(id);\n }\n this.dispatchEvent(displayObject, 'pointerdown', interactionEvent);\n\n if (data.pointerType === 'touch')\n {\n this.dispatchEvent(displayObject, 'touchstart', interactionEvent);\n }\n else if (data.pointerType === 'mouse' || data.pointerType === 'pen')\n {\n var isRightButton = data.button === 2;\n\n if (isRightButton)\n {\n displayObject.trackedPointers[id].rightDown = true;\n }\n else\n {\n displayObject.trackedPointers[id].leftDown = true;\n }\n\n this.dispatchEvent(displayObject, isRightButton ? 'rightdown' : 'mousedown', interactionEvent);\n }\n }\n };\n\n /**\n * Is called when the pointer button is released on the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being released\n * @param {boolean} cancelled - true if the pointer is cancelled\n * @param {Function} func - Function passed to {@link processInteractive}\n */\n InteractionManager.prototype.onPointerComplete = function onPointerComplete (originalEvent, cancelled, func)\n {\n var events = this.normalizeToPointerData(originalEvent);\n\n var eventLen = events.length;\n\n // if the event wasn't targeting our canvas, then consider it to be pointerupoutside\n // in all cases (unless it was a pointercancel)\n var eventAppend = originalEvent.target !== this.interactionDOMElement ? 'outside' : '';\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n // perform hit testing for events targeting our canvas or cancel events\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, func, cancelled || !eventAppend);\n\n this.emit(cancelled ? 'pointercancel' : (\"pointerup\" + eventAppend), interactionEvent);\n\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n var isRightButton = event.button === 2;\n\n this.emit(isRightButton ? (\"rightup\" + eventAppend) : (\"mouseup\" + eventAppend), interactionEvent);\n }\n else if (event.pointerType === 'touch')\n {\n this.emit(cancelled ? 'touchcancel' : (\"touchend\" + eventAppend), interactionEvent);\n this.releaseInteractionDataForPointerId(event.pointerId, interactionData);\n }\n }\n };\n\n /**\n * Is called when the pointer button is cancelled\n *\n * @private\n * @param {PointerEvent} event - The DOM event of a pointer button being released\n */\n InteractionManager.prototype.onPointerCancel = function onPointerCancel (event)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && event.pointerType === 'touch') { return; }\n\n this.onPointerComplete(event, true, this.processPointerCancel);\n };\n\n /**\n * Processes the result of the pointer cancel check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n */\n InteractionManager.prototype.processPointerCancel = function processPointerCancel (interactionEvent, displayObject)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n if (displayObject.trackedPointers[id] !== undefined)\n {\n delete displayObject.trackedPointers[id];\n this.dispatchEvent(displayObject, 'pointercancel', interactionEvent);\n\n if (data.pointerType === 'touch')\n {\n this.dispatchEvent(displayObject, 'touchcancel', interactionEvent);\n }\n }\n };\n\n /**\n * Is called when the pointer button is released on the renderer element\n *\n * @private\n * @param {PointerEvent} event - The DOM event of a pointer button being released\n */\n InteractionManager.prototype.onPointerUp = function onPointerUp (event)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && event.pointerType === 'touch') { return; }\n\n this.onPointerComplete(event, false, this.processPointerUp);\n };\n\n /**\n * Processes the result of the pointer up check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerUp = function processPointerUp (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n var trackingData = displayObject.trackedPointers[id];\n\n var isTouch = data.pointerType === 'touch';\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n // need to track mouse down status in the mouse block so that we can emit\n // event in a later block\n var isMouseTap = false;\n\n // Mouse only\n if (isMouse)\n {\n var isRightButton = data.button === 2;\n\n var flags = InteractionTrackingData.FLAGS;\n\n var test = isRightButton ? flags.RIGHT_DOWN : flags.LEFT_DOWN;\n\n var isDown = trackingData !== undefined && (trackingData.flags & test);\n\n if (hit)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightup' : 'mouseup', interactionEvent);\n\n if (isDown)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightclick' : 'click', interactionEvent);\n // because we can confirm that the mousedown happened on this object, flag for later emit of pointertap\n isMouseTap = true;\n }\n }\n else if (isDown)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightupoutside' : 'mouseupoutside', interactionEvent);\n }\n // update the down state of the tracking data\n if (trackingData)\n {\n if (isRightButton)\n {\n trackingData.rightDown = false;\n }\n else\n {\n trackingData.leftDown = false;\n }\n }\n }\n\n // Pointers and Touches, and Mouse\n if (hit)\n {\n this.dispatchEvent(displayObject, 'pointerup', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchend', interactionEvent); }\n\n if (trackingData)\n {\n // emit pointertap if not a mouse, or if the mouse block decided it was a tap\n if (!isMouse || isMouseTap)\n {\n this.dispatchEvent(displayObject, 'pointertap', interactionEvent);\n }\n if (isTouch)\n {\n this.dispatchEvent(displayObject, 'tap', interactionEvent);\n // touches are no longer over (if they ever were) when we get the touchend\n // so we should ensure that we don't keep pretending that they are\n trackingData.over = false;\n }\n }\n }\n else if (trackingData)\n {\n this.dispatchEvent(displayObject, 'pointerupoutside', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchendoutside', interactionEvent); }\n }\n // Only remove the tracking data if there is no over/down state still associated with it\n if (trackingData && trackingData.none)\n {\n delete displayObject.trackedPointers[id];\n }\n };\n\n /**\n * Is called when the pointer moves across the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer moving\n */\n InteractionManager.prototype.onPointerMove = function onPointerMove (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n if (events[0].pointerType === 'mouse' || events[0].pointerType === 'pen')\n {\n this.didMove = true;\n\n this.cursor = null;\n }\n\n var eventLen = events.length;\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerMove, true);\n\n this.emit('pointermove', interactionEvent);\n if (event.pointerType === 'touch') { this.emit('touchmove', interactionEvent); }\n if (event.pointerType === 'mouse' || event.pointerType === 'pen') { this.emit('mousemove', interactionEvent); }\n }\n\n if (events[0].pointerType === 'mouse')\n {\n this.setCursorMode(this.cursor);\n\n // TODO BUG for parents interactive object (border order issue)\n }\n };\n\n /**\n * Processes the result of the pointer move check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerMove = function processPointerMove (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var isTouch = data.pointerType === 'touch';\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n\n if (isMouse)\n {\n this.processPointerOverOut(interactionEvent, displayObject, hit);\n }\n\n if (!this.moveWhenInside || hit)\n {\n this.dispatchEvent(displayObject, 'pointermove', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchmove', interactionEvent); }\n if (isMouse) { this.dispatchEvent(displayObject, 'mousemove', interactionEvent); }\n }\n };\n\n /**\n * Is called when the pointer is moved out of the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer being moved out\n */\n InteractionManager.prototype.onPointerOut = function onPointerOut (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n // Only mouse and pointer can call onPointerOut, so events will always be length 1\n var event = events[0];\n\n if (event.pointerType === 'mouse')\n {\n this.mouseOverRenderer = false;\n this.setCursorMode(null);\n }\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = event;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerOverOut, false);\n\n this.emit('pointerout', interactionEvent);\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n this.emit('mouseout', interactionEvent);\n }\n else\n {\n // we can get touchleave events after touchend, so we want to make sure we don't\n // introduce memory leaks\n this.releaseInteractionDataForPointerId(interactionData.identifier);\n }\n };\n\n /**\n * Processes the result of the pointer over/out check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerOverOut = function processPointerOverOut (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n\n var trackingData = displayObject.trackedPointers[id];\n\n // if we just moused over the display object, then we need to track that state\n if (hit && !trackingData)\n {\n trackingData = displayObject.trackedPointers[id] = new InteractionTrackingData(id);\n }\n\n if (trackingData === undefined) { return; }\n\n if (hit && this.mouseOverRenderer)\n {\n if (!trackingData.over)\n {\n trackingData.over = true;\n this.delayDispatchEvent(displayObject, 'pointerover', interactionEvent);\n if (isMouse)\n {\n this.delayDispatchEvent(displayObject, 'mouseover', interactionEvent);\n }\n }\n\n // only change the cursor if it has not already been changed (by something deeper in the\n // display tree)\n if (isMouse && this.cursor === null)\n {\n this.cursor = displayObject.cursor;\n }\n }\n else if (trackingData.over)\n {\n trackingData.over = false;\n this.dispatchEvent(displayObject, 'pointerout', this.eventData);\n if (isMouse)\n {\n this.dispatchEvent(displayObject, 'mouseout', interactionEvent);\n }\n // if there is no mouse down information for the pointer, then it is safe to delete\n if (trackingData.none)\n {\n delete displayObject.trackedPointers[id];\n }\n }\n };\n\n /**\n * Is called when the pointer is moved into the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being moved into the renderer view\n */\n InteractionManager.prototype.onPointerOver = function onPointerOver (originalEvent)\n {\n var events = this.normalizeToPointerData(originalEvent);\n\n // Only mouse and pointer can call onPointerOver, so events will always be length 1\n var event = events[0];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = event;\n\n if (event.pointerType === 'mouse')\n {\n this.mouseOverRenderer = true;\n }\n\n this.emit('pointerover', interactionEvent);\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n this.emit('mouseover', interactionEvent);\n }\n };\n\n /**\n * Get InteractionData for a given pointerId. Store that data as well\n *\n * @private\n * @param {PointerEvent} event - Normalized pointer event, output from normalizeToPointerData\n * @return {PIXI.interaction.InteractionData} - Interaction data for the given pointer identifier\n */\n InteractionManager.prototype.getInteractionDataForPointerId = function getInteractionDataForPointerId (event)\n {\n var pointerId = event.pointerId;\n\n var interactionData;\n\n if (pointerId === MOUSE_POINTER_ID || event.pointerType === 'mouse')\n {\n interactionData = this.mouse;\n }\n else if (this.activeInteractionData[pointerId])\n {\n interactionData = this.activeInteractionData[pointerId];\n }\n else\n {\n interactionData = this.interactionDataPool.pop() || new InteractionData();\n interactionData.identifier = pointerId;\n this.activeInteractionData[pointerId] = interactionData;\n }\n // copy properties from the event, so that we can make sure that touch/pointer specific\n // data is available\n interactionData.copyEvent(event);\n\n return interactionData;\n };\n\n /**\n * Return unused InteractionData to the pool, for a given pointerId\n *\n * @private\n * @param {number} pointerId - Identifier from a pointer event\n */\n InteractionManager.prototype.releaseInteractionDataForPointerId = function releaseInteractionDataForPointerId (pointerId)\n {\n var interactionData = this.activeInteractionData[pointerId];\n\n if (interactionData)\n {\n delete this.activeInteractionData[pointerId];\n interactionData.reset();\n this.interactionDataPool.push(interactionData);\n }\n };\n\n /**\n * Configure an InteractionEvent to wrap a DOM PointerEvent and InteractionData\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The event to be configured\n * @param {PointerEvent} pointerEvent - The DOM event that will be paired with the InteractionEvent\n * @param {PIXI.interaction.InteractionData} interactionData - The InteractionData that will be paired\n * with the InteractionEvent\n * @return {PIXI.interaction.InteractionEvent} the interaction event that was passed in\n */\n InteractionManager.prototype.configureInteractionEventForDOMEvent = function configureInteractionEventForDOMEvent (interactionEvent, pointerEvent, interactionData)\n {\n interactionEvent.data = interactionData;\n\n this.mapPositionToPoint(interactionData.global, pointerEvent.clientX, pointerEvent.clientY);\n\n // Not really sure why this is happening, but it's how a previous version handled things\n if (pointerEvent.pointerType === 'touch')\n {\n pointerEvent.globalX = interactionData.global.x;\n pointerEvent.globalY = interactionData.global.y;\n }\n\n interactionData.originalEvent = pointerEvent;\n interactionEvent.reset();\n\n return interactionEvent;\n };\n\n /**\n * Ensures that the original event object contains all data that a regular pointer event would have\n *\n * @private\n * @param {TouchEvent|MouseEvent|PointerEvent} event - The original event data from a touch or mouse event\n * @return {PointerEvent[]} An array containing a single normalized pointer event, in the case of a pointer\n * or mouse event, or a multiple normalized pointer events if there are multiple changed touches\n */\n InteractionManager.prototype.normalizeToPointerData = function normalizeToPointerData (event)\n {\n var normalizedEvents = [];\n\n if (this.supportsTouchEvents && event instanceof TouchEvent)\n {\n for (var i = 0, li = event.changedTouches.length; i < li; i++)\n {\n var touch = event.changedTouches[i];\n\n if (typeof touch.button === 'undefined') { touch.button = event.touches.length ? 1 : 0; }\n if (typeof touch.buttons === 'undefined') { touch.buttons = event.touches.length ? 1 : 0; }\n if (typeof touch.isPrimary === 'undefined')\n {\n touch.isPrimary = event.touches.length === 1 && event.type === 'touchstart';\n }\n if (typeof touch.width === 'undefined') { touch.width = touch.radiusX || 1; }\n if (typeof touch.height === 'undefined') { touch.height = touch.radiusY || 1; }\n if (typeof touch.tiltX === 'undefined') { touch.tiltX = 0; }\n if (typeof touch.tiltY === 'undefined') { touch.tiltY = 0; }\n if (typeof touch.pointerType === 'undefined') { touch.pointerType = 'touch'; }\n if (typeof touch.pointerId === 'undefined') { touch.pointerId = touch.identifier || 0; }\n if (typeof touch.pressure === 'undefined') { touch.pressure = touch.force || 0.5; }\n if (typeof touch.twist === 'undefined') { touch.twist = 0; }\n if (typeof touch.tangentialPressure === 'undefined') { touch.tangentialPressure = 0; }\n // TODO: Remove these, as layerX/Y is not a standard, is deprecated, has uneven\n // support, and the fill ins are not quite the same\n // offsetX/Y might be okay, but is not the same as clientX/Y when the canvas's top\n // left is not 0,0 on the page\n if (typeof touch.layerX === 'undefined') { touch.layerX = touch.offsetX = touch.clientX; }\n if (typeof touch.layerY === 'undefined') { touch.layerY = touch.offsetY = touch.clientY; }\n\n // mark the touch as normalized, just so that we know we did it\n touch.isNormalized = true;\n\n normalizedEvents.push(touch);\n }\n }\n // apparently PointerEvent subclasses MouseEvent, so yay\n else if (event instanceof MouseEvent && (!this.supportsPointerEvents || !(event instanceof window.PointerEvent)))\n {\n if (typeof event.isPrimary === 'undefined') { event.isPrimary = true; }\n if (typeof event.width === 'undefined') { event.width = 1; }\n if (typeof event.height === 'undefined') { event.height = 1; }\n if (typeof event.tiltX === 'undefined') { event.tiltX = 0; }\n if (typeof event.tiltY === 'undefined') { event.tiltY = 0; }\n if (typeof event.pointerType === 'undefined') { event.pointerType = 'mouse'; }\n if (typeof event.pointerId === 'undefined') { event.pointerId = MOUSE_POINTER_ID; }\n if (typeof event.pressure === 'undefined') { event.pressure = 0.5; }\n if (typeof event.twist === 'undefined') { event.twist = 0; }\n if (typeof event.tangentialPressure === 'undefined') { event.tangentialPressure = 0; }\n\n // mark the mouse event as normalized, just so that we know we did it\n event.isNormalized = true;\n\n normalizedEvents.push(event);\n }\n else\n {\n normalizedEvents.push(event);\n }\n\n return normalizedEvents;\n };\n\n /**\n * Destroys the interaction manager\n *\n */\n InteractionManager.prototype.destroy = function destroy ()\n {\n this.removeEvents();\n\n this.removeAllListeners();\n\n this.renderer = null;\n\n this.mouse = null;\n\n this.eventData = null;\n\n this.interactionDOMElement = null;\n\n this.onPointerDown = null;\n this.processPointerDown = null;\n\n this.onPointerUp = null;\n this.processPointerUp = null;\n\n this.onPointerCancel = null;\n this.processPointerCancel = null;\n\n this.onPointerMove = null;\n this.processPointerMove = null;\n\n this.onPointerOut = null;\n this.processPointerOverOut = null;\n\n this.onPointerOver = null;\n\n this._tempPoint = null;\n };\n\n return InteractionManager;\n}(EventEmitter));\n\n/**\n * This namespace contains a renderer plugin for handling mouse, pointer, and touch events.\n *\n * Do not instantiate this plugin directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @namespace PIXI.interaction\n */\n\nexport { InteractionData, InteractionEvent, InteractionManager, InteractionTrackingData, interactiveTarget };\n//# sourceMappingURL=interaction.es.js.map\n","/*!\n * @pixi/graphics - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/graphics is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture, BaseTexture, BatchDrawCall, BatchGeometry, UniformGroup, Shader, State } from '@pixi/core';\nimport { SHAPES, Point, PI_2, Polygon, Rectangle, RoundedRectangle, Circle, Ellipse, Matrix } from '@pixi/math';\nimport { earcut, premultiplyTint, hex2rgb } from '@pixi/utils';\nimport { Bounds, Container } from '@pixi/display';\nimport { WRAP_MODES, DRAW_MODES, BLEND_MODES } from '@pixi/constants';\n\n/**\n * Graphics curves resolution settings. If `adaptive` flag is set to `true`,\n * the resolution is calculated based on the curve's length to ensure better visual quality.\n * Adaptive draw works with `bezierCurveTo` and `quadraticCurveTo`.\n *\n * @static\n * @constant\n * @memberof PIXI\n * @name GRAPHICS_CURVES\n * @type {object}\n * @property {boolean} adaptive=false - flag indicating if the resolution should be adaptive\n * @property {number} maxLength=10 - maximal length of a single segment of the curve (if adaptive = false, ignored)\n * @property {number} minSegments=8 - minimal number of segments in the curve (if adaptive = false, ignored)\n * @property {number} maxSegments=2048 - maximal number of segments in the curve (if adaptive = false, ignored)\n */\nvar GRAPHICS_CURVES = {\n adaptive: true,\n maxLength: 10,\n minSegments: 8,\n maxSegments: 2048,\n _segmentsCount: function _segmentsCount(length, defaultSegments)\n {\n if ( defaultSegments === void 0 ) defaultSegments = 20;\n\n if (!this.adaptive)\n {\n return defaultSegments;\n }\n\n var result = Math.ceil(length / this.maxLength);\n\n if (result < this.minSegments)\n {\n result = this.minSegments;\n }\n else if (result > this.maxSegments)\n {\n result = this.maxSegments;\n }\n\n return result;\n },\n};\n\n/**\n * Fill style object for Graphics.\n *\n * @class\n * @memberof PIXI\n */\nvar FillStyle = function FillStyle()\n{\n this.reset();\n};\n\n/**\n * Clones the object\n *\n * @return {PIXI.FillStyle}\n */\nFillStyle.prototype.clone = function clone ()\n{\n var obj = new FillStyle();\n\n obj.color = this.color;\n obj.alpha = this.alpha;\n obj.texture = this.texture;\n obj.matrix = this.matrix;\n obj.visible = this.visible;\n\n return obj;\n};\n\n/**\n * Reset\n */\nFillStyle.prototype.reset = function reset ()\n{\n /**\n * The hex color value used when coloring the Graphics object.\n *\n * @member {number}\n * @default 1\n */\n this.color = 0xFFFFFF;\n\n /**\n * The alpha value used when filling the Graphics object.\n *\n * @member {number}\n * @default 1\n */\n this.alpha = 1;\n\n /**\n * The texture to be used for the fill.\n *\n * @member {string}\n * @default 0\n */\n this.texture = Texture.WHITE;\n\n /**\n * The transform aplpied to the texture.\n *\n * @member {string}\n * @default 0\n */\n this.matrix = null;\n\n /**\n * If the current fill is visible.\n *\n * @member {boolean}\n * @default false\n */\n this.visible = false;\n};\n\n/**\n * Destroy and don't use after this\n */\nFillStyle.prototype.destroy = function destroy ()\n{\n this.texture = null;\n this.matrix = null;\n};\n\n/**\n * A class to contain data useful for Graphics objects\n *\n * @class\n * @memberof PIXI\n */\nvar GraphicsData = function GraphicsData(shape, fillStyle, lineStyle, matrix)\n{\n if ( fillStyle === void 0 ) fillStyle = null;\n if ( lineStyle === void 0 ) lineStyle = null;\n if ( matrix === void 0 ) matrix = null;\n\n /**\n * The shape object to draw.\n * @member {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle}\n */\n this.shape = shape;\n\n /**\n * The style of the line.\n * @member {PIXI.LineStyle}\n */\n this.lineStyle = lineStyle;\n\n /**\n * The style of the fill.\n * @member {PIXI.FillStyle}\n */\n this.fillStyle = fillStyle;\n\n /**\n * The transform matrix.\n * @member {PIXI.Matrix}\n */\n this.matrix = matrix;\n\n /**\n * The type of the shape, see the Const.Shapes file for all the existing types,\n * @member {number}\n */\n this.type = shape.type;\n\n /**\n * The collection of points.\n * @member {number[]}\n */\n this.points = [];\n\n /**\n * The collection of holes.\n * @member {PIXI.GraphicsData[]}\n */\n this.holes = [];\n};\n\n/**\n * Creates a new GraphicsData object with the same values as this one.\n *\n * @return {PIXI.GraphicsData} Cloned GraphicsData object\n */\nGraphicsData.prototype.clone = function clone ()\n{\n return new GraphicsData(\n this.shape,\n this.fillStyle,\n this.lineStyle,\n this.matrix\n );\n};\n\n/**\n * Destroys the Graphics data.\n */\nGraphicsData.prototype.destroy = function destroy ()\n{\n this.shape = null;\n this.holes.length = 0;\n this.holes = null;\n this.points.length = 0;\n this.points = null;\n this.lineStyle = null;\n this.fillStyle = null;\n};\n\n/**\n * Builds a circle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object to draw\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildCircle = {\n\n build: function build(graphicsData)\n {\n // need to convert points to a nice regular data\n var circleData = graphicsData.shape;\n var points = graphicsData.points;\n var x = circleData.x;\n var y = circleData.y;\n var width;\n var height;\n\n points.length = 0;\n\n // TODO - bit hacky??\n if (graphicsData.type === SHAPES.CIRC)\n {\n width = circleData.radius;\n height = circleData.radius;\n }\n else\n {\n width = circleData.width;\n height = circleData.height;\n }\n\n if (width === 0 || height === 0)\n {\n return;\n }\n\n var totalSegs = Math.floor(30 * Math.sqrt(circleData.radius))\n || Math.floor(15 * Math.sqrt(circleData.width + circleData.height));\n\n totalSegs /= 2.3;\n\n var seg = (Math.PI * 2) / totalSegs;\n\n for (var i = 0; i < totalSegs; i++)\n {\n points.push(\n x + (Math.sin(-seg * i) * width),\n y + (Math.cos(-seg * i) * height)\n );\n }\n\n points.push(\n points[0],\n points[1]\n );\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n var vertPos = verts.length / 2;\n var center = vertPos;\n\n verts.push(graphicsData.shape.x, graphicsData.shape.y);\n\n for (var i = 0; i < points.length; i += 2)\n {\n verts.push(points[i], points[i + 1]);\n\n // add some uvs\n indices.push(vertPos++, center, vertPos);\n }\n },\n};\n\n/**\n * Builds a line to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildLine (graphicsData, graphicsGeometry)\n{\n if (graphicsData.lineStyle.native)\n {\n buildNativeLine(graphicsData, graphicsGeometry);\n }\n else\n {\n buildLine$1(graphicsData, graphicsGeometry);\n }\n}\n\n/**\n * Builds a line to draw using the polygon method.\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildLine$1(graphicsData, graphicsGeometry)\n{\n var shape = graphicsData.shape;\n var points = graphicsData.points || shape.points.slice();\n var eps = graphicsGeometry.closePointEps;\n\n if (points.length === 0)\n {\n return;\n }\n // if the line width is an odd number add 0.5 to align to a whole pixel\n // commenting this out fixes #711 and #1620\n // if (graphicsData.lineWidth%2)\n // {\n // for (i = 0; i < points.length; i++)\n // {\n // points[i] += 0.5;\n // }\n // }\n\n var style = graphicsData.lineStyle;\n\n // get first and last point.. figure out the middle!\n var firstPoint = new Point(points[0], points[1]);\n var lastPoint = new Point(points[points.length - 2], points[points.length - 1]);\n var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke;\n var closedPath = Math.abs(firstPoint.x - lastPoint.x) < eps\n && Math.abs(firstPoint.y - lastPoint.y) < eps;\n\n // if the first point is the last point - gonna have issues :)\n if (closedShape)\n {\n // need to clone as we are going to slightly modify the shape..\n points = points.slice();\n\n if (closedPath)\n {\n points.pop();\n points.pop();\n lastPoint.set(points[points.length - 2], points[points.length - 1]);\n }\n\n var midPointX = lastPoint.x + ((firstPoint.x - lastPoint.x) * 0.5);\n var midPointY = lastPoint.y + ((firstPoint.y - lastPoint.y) * 0.5);\n\n points.unshift(midPointX, midPointY);\n points.push(midPointX, midPointY);\n }\n\n var verts = graphicsGeometry.points;\n var length = points.length / 2;\n var indexCount = points.length;\n var indexStart = verts.length / 2;\n\n // DRAW the Line\n var width = style.width / 2;\n\n // sort color\n var p1x = points[0];\n var p1y = points[1];\n var p2x = points[2];\n var p2y = points[3];\n var p3x = 0;\n var p3y = 0;\n\n var perpx = -(p1y - p2y);\n var perpy = p1x - p2x;\n var perp2x = 0;\n var perp2y = 0;\n var perp3x = 0;\n var perp3y = 0;\n\n var dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n var ratio = style.alignment;// 0.5;\n var r1 = (1 - ratio) * 2;\n var r2 = ratio * 2;\n\n // start\n verts.push(\n p1x - (perpx * r1),\n p1y - (perpy * r1));\n\n verts.push(\n p1x + (perpx * r2),\n p1y + (perpy * r2));\n\n for (var i = 1; i < length - 1; ++i)\n {\n p1x = points[(i - 1) * 2];\n p1y = points[((i - 1) * 2) + 1];\n\n p2x = points[i * 2];\n p2y = points[(i * 2) + 1];\n\n p3x = points[(i + 1) * 2];\n p3y = points[((i + 1) * 2) + 1];\n\n perpx = -(p1y - p2y);\n perpy = p1x - p2x;\n\n dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n perp2x = -(p2y - p3y);\n perp2y = p2x - p3x;\n\n dist = Math.sqrt((perp2x * perp2x) + (perp2y * perp2y));\n perp2x /= dist;\n perp2y /= dist;\n perp2x *= width;\n perp2y *= width;\n\n var a1 = (-perpy + p1y) - (-perpy + p2y);\n var b1 = (-perpx + p2x) - (-perpx + p1x);\n var c1 = ((-perpx + p1x) * (-perpy + p2y)) - ((-perpx + p2x) * (-perpy + p1y));\n var a2 = (-perp2y + p3y) - (-perp2y + p2y);\n var b2 = (-perp2x + p2x) - (-perp2x + p3x);\n var c2 = ((-perp2x + p3x) * (-perp2y + p2y)) - ((-perp2x + p2x) * (-perp2y + p3y));\n\n var denom = (a1 * b2) - (a2 * b1);\n\n if (Math.abs(denom) < 0.1)\n {\n denom += 10.1;\n verts.push(\n p2x - (perpx * r1),\n p2y - (perpy * r1));\n\n verts.push(\n p2x + (perpx * r2),\n p2y + (perpy * r2));\n\n continue;\n }\n\n var px = ((b1 * c2) - (b2 * c1)) / denom;\n var py = ((a2 * c1) - (a1 * c2)) / denom;\n var pdist = ((px - p2x) * (px - p2x)) + ((py - p2y) * (py - p2y));\n\n if (pdist > (196 * width * width))\n {\n perp3x = perpx - perp2x;\n perp3y = perpy - perp2y;\n\n dist = Math.sqrt((perp3x * perp3x) + (perp3y * perp3y));\n perp3x /= dist;\n perp3y /= dist;\n perp3x *= width;\n perp3y *= width;\n\n verts.push(p2x - (perp3x * r1), p2y - (perp3y * r1));\n\n verts.push(p2x + (perp3x * r2), p2y + (perp3y * r2));\n\n verts.push(p2x - (perp3x * r2 * r1), p2y - (perp3y * r1));\n\n indexCount++;\n }\n else\n {\n verts.push(p2x + ((px - p2x) * r1), p2y + ((py - p2y) * r1));\n\n verts.push(p2x - ((px - p2x) * r2), p2y - ((py - p2y) * r2));\n }\n }\n\n p1x = points[(length - 2) * 2];\n p1y = points[((length - 2) * 2) + 1];\n\n p2x = points[(length - 1) * 2];\n p2y = points[((length - 1) * 2) + 1];\n\n perpx = -(p1y - p2y);\n perpy = p1x - p2x;\n\n dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n verts.push(p2x - (perpx * r1), p2y - (perpy * r1));\n\n verts.push(p2x + (perpx * r2), p2y + (perpy * r2));\n\n var indices = graphicsGeometry.indices;\n\n // indices.push(indexStart);\n\n for (var i$1 = 0; i$1 < indexCount - 2; ++i$1)\n {\n indices.push(indexStart, indexStart + 1, indexStart + 2);\n\n indexStart++;\n }\n}\n\n/**\n * Builds a line to draw using the gl.drawArrays(gl.LINES) method\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildNativeLine(graphicsData, graphicsGeometry)\n{\n var i = 0;\n\n var shape = graphicsData.shape;\n var points = graphicsData.points || shape.points;\n var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke;\n\n if (points.length === 0) { return; }\n\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n var length = points.length / 2;\n\n var startIndex = verts.length / 2;\n var currentIndex = startIndex;\n\n verts.push(points[0], points[1]);\n\n for (i = 1; i < length; i++)\n {\n verts.push(points[i * 2], points[(i * 2) + 1]);\n indices.push(currentIndex, currentIndex + 1);\n\n currentIndex++;\n }\n\n if (closedShape)\n {\n indices.push(currentIndex, startIndex);\n }\n}\n\n/**\n * Builds a polygon to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildPoly = {\n\n build: function build(graphicsData)\n {\n graphicsData.points = graphicsData.shape.points.slice();\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var holes = graphicsData.holes;\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n if (points.length >= 6)\n {\n var holeArray = [];\n // Process holes..\n\n for (var i = 0; i < holes.length; i++)\n {\n var hole = holes[i];\n\n holeArray.push(points.length / 2);\n points = points.concat(hole.points);\n }\n\n // sort color\n var triangles = earcut(points, holeArray, 2);\n\n if (!triangles)\n {\n return;\n }\n\n var vertPos = verts.length / 2;\n\n for (var i$1 = 0; i$1 < triangles.length; i$1 += 3)\n {\n indices.push(triangles[i$1] + vertPos);\n indices.push(triangles[i$1 + 1] + vertPos);\n indices.push(triangles[i$1 + 2] + vertPos);\n }\n\n for (var i$2 = 0; i$2 < points.length; i$2++)\n {\n verts.push(points[i$2]);\n }\n }\n },\n};\n\n/**\n * Builds a rectangle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildRectangle = {\n\n build: function build(graphicsData)\n {\n // --- //\n // need to convert points to a nice regular data\n //\n var rectData = graphicsData.shape;\n var x = rectData.x;\n var y = rectData.y;\n var width = rectData.width;\n var height = rectData.height;\n\n var points = graphicsData.points;\n\n points.length = 0;\n\n points.push(x, y,\n x + width, y,\n x + width, y + height,\n x, y + height);\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var verts = graphicsGeometry.points;\n\n var vertPos = verts.length / 2;\n\n verts.push(points[0], points[1],\n points[2], points[3],\n points[6], points[7],\n points[4], points[5]);\n\n graphicsGeometry.indices.push(vertPos, vertPos + 1, vertPos + 2,\n vertPos + 1, vertPos + 2, vertPos + 3);\n },\n};\n\n/**\n * Builds a rounded rectangle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildRoundedRectangle = {\n\n build: function build(graphicsData)\n {\n var rrectData = graphicsData.shape;\n var points = graphicsData.points;\n var x = rrectData.x;\n var y = rrectData.y;\n var width = rrectData.width;\n var height = rrectData.height;\n\n var radius = rrectData.radius;\n\n points.length = 0;\n\n quadraticBezierCurve(x, y + radius,\n x, y,\n x + radius, y,\n points);\n quadraticBezierCurve(x + width - radius,\n y, x + width, y,\n x + width, y + radius,\n points);\n quadraticBezierCurve(x + width, y + height - radius,\n x + width, y + height,\n x + width - radius, y + height,\n points);\n quadraticBezierCurve(x + radius, y + height,\n x, y + height,\n x, y + height - radius,\n points);\n\n // this tiny number deals with the issue that occurs when points overlap and earcut fails to triangulate the item.\n // TODO - fix this properly, this is not very elegant.. but it works for now.\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n var vecPos = verts.length / 2;\n\n var triangles = earcut(points, null, 2);\n\n for (var i = 0, j = triangles.length; i < j; i += 3)\n {\n indices.push(triangles[i] + vecPos);\n // indices.push(triangles[i] + vecPos);\n indices.push(triangles[i + 1] + vecPos);\n // indices.push(triangles[i + 2] + vecPos);\n indices.push(triangles[i + 2] + vecPos);\n }\n\n for (var i$1 = 0, j$1 = points.length; i$1 < j$1; i$1++)\n {\n verts.push(points[i$1], points[++i$1]);\n }\n },\n};\n\n/**\n * Calculate a single point for a quadratic bezier curve.\n * Utility function used by quadraticBezierCurve.\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {number} n1 - first number\n * @param {number} n2 - second number\n * @param {number} perc - percentage\n * @return {number} the result\n *\n */\nfunction getPt(n1, n2, perc)\n{\n var diff = n2 - n1;\n\n return n1 + (diff * perc);\n}\n\n/**\n * Calculate the points for a quadratic bezier curve. (helper function..)\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {number} fromX - Origin point x\n * @param {number} fromY - Origin point x\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} [out=[]] - The output array to add points into. If not passed, a new array is created.\n * @return {number[]} an array of points\n */\nfunction quadraticBezierCurve(fromX, fromY, cpX, cpY, toX, toY, out)\n{\n if ( out === void 0 ) out = [];\n\n var n = 20;\n var points = out;\n\n var xa = 0;\n var ya = 0;\n var xb = 0;\n var yb = 0;\n var x = 0;\n var y = 0;\n\n for (var i = 0, j = 0; i <= n; ++i)\n {\n j = i / n;\n\n // The Green Line\n xa = getPt(fromX, cpX, j);\n ya = getPt(fromY, cpY, j);\n xb = getPt(cpX, toX, j);\n yb = getPt(cpY, toY, j);\n\n // The Black Dot\n x = getPt(xa, xb, j);\n y = getPt(ya, yb, j);\n\n points.push(x, y);\n }\n\n return points;\n}\n\nvar BATCH_POOL = [];\nvar DRAW_CALL_POOL = [];\nvar tmpPoint = new Point();\n\n/**\n * Map of fill commands for each shape type.\n *\n * @member {Object}\n * @private\n */\nvar fillCommands = {};\n\nfillCommands[SHAPES.POLY] = buildPoly;\nfillCommands[SHAPES.CIRC] = buildCircle;\nfillCommands[SHAPES.ELIP] = buildCircle;\nfillCommands[SHAPES.RECT] = buildRectangle;\nfillCommands[SHAPES.RREC] = buildRoundedRectangle;\n\n/**\n * A little internal structure to hold interim batch objects.\n *\n * @private\n */\nvar BatchPart = function BatchPart()\n{\n this.style = null;\n this.size = 0;\n this.start = 0;\n this.attribStart = 0;\n this.attribSize = 0;\n};\n\n/**\n * The Graphics class contains methods used to draw primitive shapes such as lines, circles and\n * rectangles to the display, and to color and fill them.\n *\n * GraphicsGeometry is designed to not be continually updating the geometry since it's expensive\n * to re-tesselate using **earcut**. Consider using {@link PIXI.Mesh} for this use-case, it's much faster.\n *\n * @class\n * @extends PIXI.BatchGeometry\n * @memberof PIXI\n */\nvar GraphicsGeometry = /*@__PURE__*/(function (BatchGeometry) {\n function GraphicsGeometry()\n {\n BatchGeometry.call(this);\n\n /**\n * An array of points to draw, 2 numbers per point\n *\n * @member {number[]}\n * @protected\n */\n this.points = [];\n\n /**\n * The collection of colors\n *\n * @member {number[]}\n * @protected\n */\n this.colors = [];\n\n /**\n * The UVs collection\n *\n * @member {number[]}\n * @protected\n */\n this.uvs = [];\n\n /**\n * The indices of the vertices\n *\n * @member {number[]}\n * @protected\n */\n this.indices = [];\n\n /**\n * Reference to the texture IDs.\n *\n * @member {number[]}\n * @protected\n */\n this.textureIds = [];\n\n /**\n * The collection of drawn shapes.\n *\n * @member {PIXI.GraphicsData[]}\n * @protected\n */\n this.graphicsData = [];\n\n /**\n * Used to detect if the graphics object has changed.\n *\n * @member {number}\n * @protected\n */\n this.dirty = 0;\n\n /**\n * Batches need to regenerated if the geometry is updated.\n *\n * @member {number}\n * @protected\n */\n this.batchDirty = -1;\n\n /**\n * Used to check if the cache is dirty.\n *\n * @member {number}\n * @protected\n */\n this.cacheDirty = -1;\n\n /**\n * Used to detect if we cleared the graphicsData.\n *\n * @member {number}\n * @default 0\n * @protected\n */\n this.clearDirty = 0;\n\n /**\n * List of current draw calls drived from the batches.\n *\n * @member {object[]}\n * @protected\n */\n this.drawCalls = [];\n\n /**\n * Intermediate abstract format sent to batch system.\n * Can be converted to drawCalls or to batchable objects.\n *\n * @member {object[]}\n * @protected\n */\n this.batches = [];\n\n /**\n * Index of the last batched shape in the stack of calls.\n *\n * @member {number}\n * @protected\n */\n this.shapeIndex = 0;\n\n /**\n * Cached bounds.\n *\n * @member {PIXI.Bounds}\n * @protected\n */\n this._bounds = new Bounds();\n\n /**\n * The bounds dirty flag.\n *\n * @member {number}\n * @protected\n */\n this.boundsDirty = -1;\n\n /**\n * Padding to add to the bounds.\n *\n * @member {number}\n * @default 0\n */\n this.boundsPadding = 0;\n\n this.batchable = false;\n\n this.indicesUint16 = null;\n\n this.uvsFloat32 = null;\n\n /**\n * Minimal distance between points that are considered different.\n * Affects line tesselation.\n *\n * @member {number}\n */\n this.closePointEps = 1e-4;\n }\n\n if ( BatchGeometry ) GraphicsGeometry.__proto__ = BatchGeometry;\n GraphicsGeometry.prototype = Object.create( BatchGeometry && BatchGeometry.prototype );\n GraphicsGeometry.prototype.constructor = GraphicsGeometry;\n\n var prototypeAccessors = { bounds: { configurable: true } };\n\n /**\n * Get the current bounds of the graphic geometry.\n *\n * @member {PIXI.Bounds}\n * @readonly\n */\n prototypeAccessors.bounds.get = function ()\n {\n if (this.boundsDirty !== this.dirty)\n {\n this.boundsDirty = this.dirty;\n this.calculateBounds();\n }\n\n return this._bounds;\n };\n\n /**\n * Call if you changed graphicsData manually.\n * Empties all batch buffers.\n */\n GraphicsGeometry.prototype.invalidate = function invalidate ()\n {\n this.boundsDirty = -1;\n this.dirty++;\n this.batchDirty++;\n this.shapeIndex = 0;\n\n this.points.length = 0;\n this.colors.length = 0;\n this.uvs.length = 0;\n this.indices.length = 0;\n this.textureIds.length = 0;\n\n for (var i = 0; i < this.drawCalls.length; i++)\n {\n this.drawCalls[i].textures.length = 0;\n DRAW_CALL_POOL.push(this.drawCalls[i]);\n }\n\n this.drawCalls.length = 0;\n\n for (var i$1 = 0; i$1 < this.batches.length; i$1++)\n {\n var batch = this.batches[i$1];\n\n batch.start = 0;\n batch.attribStart = 0;\n batch.style = null;\n BATCH_POOL.push(batch);\n }\n\n this.batches.length = 0;\n };\n\n /**\n * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings.\n *\n * @return {PIXI.GraphicsGeometry} This GraphicsGeometry object. Good for chaining method calls\n */\n GraphicsGeometry.prototype.clear = function clear ()\n {\n if (this.graphicsData.length > 0)\n {\n this.invalidate();\n this.clearDirty++;\n this.graphicsData.length = 0;\n }\n\n return this;\n };\n\n /**\n * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw.\n * @param {PIXI.FillStyle} fillStyle - Defines style of the fill.\n * @param {PIXI.LineStyle} lineStyle - Defines style of the lines.\n * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape.\n * @return {PIXI.GraphicsGeometry} Returns geometry for chaining.\n */\n GraphicsGeometry.prototype.drawShape = function drawShape (shape, fillStyle, lineStyle, matrix)\n {\n var data = new GraphicsData(shape, fillStyle, lineStyle, matrix);\n\n this.graphicsData.push(data);\n this.dirty++;\n\n return this;\n };\n\n /**\n * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw.\n * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape.\n * @return {PIXI.GraphicsGeometry} Returns geometry for chaining.\n */\n GraphicsGeometry.prototype.drawHole = function drawHole (shape, matrix)\n {\n if (!this.graphicsData.length)\n {\n return null;\n }\n\n var data = new GraphicsData(shape, null, null, matrix);\n\n var lastShape = this.graphicsData[this.graphicsData.length - 1];\n\n data.lineStyle = lastShape.lineStyle;\n\n lastShape.holes.push(data);\n\n this.dirty++;\n\n return this;\n };\n\n /**\n * Destroys the Graphics object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n GraphicsGeometry.prototype.destroy = function destroy (options)\n {\n BatchGeometry.prototype.destroy.call(this, options);\n\n // destroy each of the GraphicsData objects\n for (var i = 0; i < this.graphicsData.length; ++i)\n {\n this.graphicsData[i].destroy();\n }\n\n this.points.length = 0;\n this.points = null;\n this.colors.length = 0;\n this.colors = null;\n this.uvs.length = 0;\n this.uvs = null;\n this.indices.length = 0;\n this.indices = null;\n this.indexBuffer.destroy();\n this.indexBuffer = null;\n this.graphicsData.length = 0;\n this.graphicsData = null;\n this.drawCalls.length = 0;\n this.drawCalls = null;\n this.batches.length = 0;\n this.batches = null;\n this._bounds = null;\n };\n\n /**\n * Check to see if a point is contained within this geometry.\n *\n * @param {PIXI.Point} point - Point to check if it's contained.\n * @return {Boolean} `true` if the point is contained within geometry.\n */\n GraphicsGeometry.prototype.containsPoint = function containsPoint (point)\n {\n var graphicsData = this.graphicsData;\n\n for (var i = 0; i < graphicsData.length; ++i)\n {\n var data = graphicsData[i];\n\n if (!data.fillStyle.visible)\n {\n continue;\n }\n\n // only deal with fills..\n if (data.shape)\n {\n if (data.matrix)\n {\n data.matrix.applyInverse(point, tmpPoint);\n }\n else\n {\n tmpPoint.copyFrom(point);\n }\n\n if (data.shape.contains(tmpPoint.x, tmpPoint.y))\n {\n if (data.holes)\n {\n for (var i$1 = 0; i$1 < data.holes.length; i$1++)\n {\n var hole = data.holes[i$1];\n\n if (hole.shape.contains(tmpPoint.x, tmpPoint.y))\n {\n return false;\n }\n }\n }\n\n return true;\n }\n }\n }\n\n return false;\n };\n\n /**\n * Generates intermediate batch data. Either gets converted to drawCalls\n * or used to convert to batch objects directly by the Graphics object.\n */\n GraphicsGeometry.prototype.updateBatches = function updateBatches ()\n {\n if (this.dirty === this.cacheDirty) { return; }\n if (this.graphicsData.length === 0)\n {\n this.batchable = true;\n\n return;\n }\n\n if (this.dirty !== this.cacheDirty)\n {\n for (var i = 0; i < this.graphicsData.length; i++)\n {\n var data = this.graphicsData[i];\n\n if (data.fillStyle && !data.fillStyle.texture.baseTexture.valid) { return; }\n if (data.lineStyle && !data.lineStyle.texture.baseTexture.valid) { return; }\n }\n }\n\n this.cacheDirty = this.dirty;\n\n var uvs = this.uvs;\n\n var batchPart = null;\n var currentTexture = null;\n var currentColor = 0;\n var currentNative = false;\n\n if (this.batches.length > 0)\n {\n batchPart = this.batches[this.batches.length - 1];\n\n var style = batchPart.style;\n\n currentTexture = style.texture.baseTexture;\n currentColor = style.color + style.alpha;\n currentNative = !!style.native;\n }\n\n for (var i$1 = this.shapeIndex; i$1 < this.graphicsData.length; i$1++)\n {\n this.shapeIndex++;\n\n var data$1 = this.graphicsData[i$1];\n var command = fillCommands[data$1.type];\n\n var fillStyle = data$1.fillStyle;\n var lineStyle = data$1.lineStyle;\n\n // build out the shapes points..\n command.build(data$1);\n\n if (data$1.matrix)\n {\n this.transformPoints(data$1.points, data$1.matrix);\n }\n\n for (var j = 0; j < 2; j++)\n {\n var style$1 = (j === 0) ? fillStyle : lineStyle;\n\n if (!style$1.visible) { continue; }\n\n var nextTexture = style$1.texture.baseTexture;\n\n var index$1 = this.indices.length;\n var attribIndex = this.points.length / 2;\n\n // close batch if style is different\n if (batchPart\n && (currentTexture !== nextTexture\n || currentColor !== (style$1.color + style$1.alpha)\n || currentNative !== !!style$1.native))\n {\n batchPart.size = index$1 - batchPart.start;\n batchPart.attribSize = attribIndex - batchPart.attribStart;\n\n if (batchPart.size > 0)\n {\n batchPart = null;\n }\n }\n // spawn new batch if its first batch or previous was closed\n if (!batchPart)\n {\n batchPart = BATCH_POOL.pop() || new BatchPart();\n this.batches.push(batchPart);\n nextTexture.wrapMode = WRAP_MODES.REPEAT;\n currentTexture = nextTexture;\n currentColor = style$1.color + style$1.alpha;\n currentNative = style$1.native;\n\n batchPart.style = style$1;\n batchPart.start = index$1;\n batchPart.attribStart = attribIndex;\n }\n\n var start = this.points.length / 2;\n\n if (j === 0)\n {\n if (data$1.holes.length)\n {\n this.processHoles(data$1.holes);\n\n buildPoly.triangulate(data$1, this);\n }\n else\n {\n command.triangulate(data$1, this);\n }\n }\n else\n {\n buildLine(data$1, this);\n\n for (var i$2 = 0; i$2 < data$1.holes.length; i$2++)\n {\n buildLine(data$1.holes[i$2], this);\n }\n }\n\n var size = (this.points.length / 2) - start;\n\n this.addUvs(this.points, uvs, style$1.texture, start, size, style$1.matrix);\n }\n }\n\n var index = this.indices.length;\n var attrib = this.points.length / 2;\n\n if (!batchPart)\n {\n // there are no visible styles in GraphicsData\n // its possible that someone wants Graphics just for the bounds\n this.batchable = true;\n\n return;\n }\n\n batchPart.size = index - batchPart.start;\n batchPart.attribSize = attrib - batchPart.attribStart;\n this.indicesUint16 = new Uint16Array(this.indices);\n\n // TODO make this a const..\n this.batchable = this.isBatchable();\n\n if (this.batchable)\n {\n this.batchDirty++;\n\n this.uvsFloat32 = new Float32Array(this.uvs);\n\n // offset the indices so that it works with the batcher...\n for (var i$3 = 0; i$3 < this.batches.length; i$3++)\n {\n var batch = this.batches[i$3];\n\n for (var j$1 = 0; j$1 < batch.size; j$1++)\n {\n var index$2 = batch.start + j$1;\n\n this.indicesUint16[index$2] = this.indicesUint16[index$2] - batch.attribStart;\n }\n }\n }\n else\n {\n this.buildDrawCalls();\n }\n };\n\n /**\n * Checks to see if this graphics geometry can be batched.\n * Currently it needs to be small enough and not contain any native lines.\n * @protected\n */\n GraphicsGeometry.prototype.isBatchable = function isBatchable ()\n {\n var batches = this.batches;\n\n for (var i = 0; i < batches.length; i++)\n {\n if (batches[i].style.native)\n {\n return false;\n }\n }\n\n return (this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2);\n };\n\n /**\n * Converts intermediate batches data to drawCalls.\n * @protected\n */\n GraphicsGeometry.prototype.buildDrawCalls = function buildDrawCalls ()\n {\n var TICK = ++BaseTexture._globalBatch;\n\n for (var i = 0; i < this.drawCalls.length; i++)\n {\n this.drawCalls[i].textures.length = 0;\n DRAW_CALL_POOL.push(this.drawCalls[i]);\n }\n\n this.drawCalls.length = 0;\n\n var uvs = this.uvs;\n var colors = this.colors;\n var textureIds = this.textureIds;\n\n var currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall();\n\n currentGroup.textureCount = 0;\n currentGroup.start = 0;\n currentGroup.size = 0;\n currentGroup.type = DRAW_MODES.TRIANGLES;\n\n var textureCount = 0;\n var currentTexture = null;\n var textureId = 0;\n var native = false;\n var drawMode = DRAW_MODES.TRIANGLES;\n\n var index = 0;\n\n this.drawCalls.push(currentGroup);\n\n // TODO - this can be simplified\n for (var i$1 = 0; i$1 < this.batches.length; i$1++)\n {\n var data = this.batches[i$1];\n\n // TODO add some full on MAX_TEXTURE CODE..\n var MAX_TEXTURES = 8;\n\n var style = data.style;\n\n var nextTexture = style.texture.baseTexture;\n\n if (native !== !!style.native)\n {\n native = style.native;\n drawMode = native ? DRAW_MODES.LINES : DRAW_MODES.TRIANGLES;\n\n // force the batch to break!\n currentTexture = null;\n textureCount = MAX_TEXTURES;\n TICK++;\n }\n\n if (currentTexture !== nextTexture)\n {\n currentTexture = nextTexture;\n\n if (nextTexture._batchEnabled !== TICK)\n {\n if (textureCount === MAX_TEXTURES)\n {\n TICK++;\n\n textureCount = 0;\n\n if (currentGroup.size > 0)\n {\n currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall();\n this.drawCalls.push(currentGroup);\n }\n\n currentGroup.start = index;\n currentGroup.size = 0;\n currentGroup.textureCount = 0;\n currentGroup.type = drawMode;\n }\n\n // TODO add this to the render part..\n nextTexture.touched = 1;// touch;\n nextTexture._batchEnabled = TICK;\n nextTexture._id = textureCount;\n nextTexture.wrapMode = 10497;\n\n currentGroup.textures[currentGroup.textureCount++] = nextTexture;\n textureCount++;\n }\n }\n\n currentGroup.size += data.size;\n index += data.size;\n\n textureId = nextTexture._id;\n\n this.addColors(colors, style.color, style.alpha, data.attribSize);\n this.addTextureIds(textureIds, textureId, data.attribSize);\n }\n\n BaseTexture._globalBatch = TICK;\n\n // upload..\n // merge for now!\n var verts = this.points;\n\n // verts are 2 positions.. so we * by 3 as there are 6 properties.. then 4 cos its bytes\n var glPoints = new ArrayBuffer(verts.length * 3 * 4);\n var f32 = new Float32Array(glPoints);\n var u32 = new Uint32Array(glPoints);\n\n var p = 0;\n\n for (var i$2 = 0; i$2 < verts.length / 2; i$2++)\n {\n f32[p++] = verts[i$2 * 2];\n f32[p++] = verts[(i$2 * 2) + 1];\n\n f32[p++] = uvs[i$2 * 2];\n f32[p++] = uvs[(i$2 * 2) + 1];\n\n u32[p++] = colors[i$2];\n\n f32[p++] = textureIds[i$2];\n }\n\n this._buffer.update(glPoints);\n this._indexBuffer.update(this.indicesUint16);\n };\n\n /**\n * Process the holes data.\n *\n * @param {PIXI.GraphicsData[]} holes - Holes to render\n * @protected\n */\n GraphicsGeometry.prototype.processHoles = function processHoles (holes)\n {\n for (var i = 0; i < holes.length; i++)\n {\n var hole = holes[i];\n\n var command = fillCommands[hole.type];\n\n command.build(hole);\n\n if (hole.matrix)\n {\n this.transformPoints(hole.points, hole.matrix);\n }\n }\n };\n\n /**\n * Update the local bounds of the object. Expensive to use performance-wise.\n * @protected\n */\n GraphicsGeometry.prototype.calculateBounds = function calculateBounds ()\n {\n var minX = Infinity;\n var maxX = -Infinity;\n\n var minY = Infinity;\n var maxY = -Infinity;\n\n if (this.graphicsData.length)\n {\n var shape = null;\n var x = 0;\n var y = 0;\n var w = 0;\n var h = 0;\n\n for (var i = 0; i < this.graphicsData.length; i++)\n {\n var data = this.graphicsData[i];\n\n var type = data.type;\n var lineWidth = data.lineStyle ? data.lineStyle.width : 0;\n\n shape = data.shape;\n\n if (type === SHAPES.RECT || type === SHAPES.RREC)\n {\n x = shape.x - (lineWidth / 2);\n y = shape.y - (lineWidth / 2);\n w = shape.width + lineWidth;\n h = shape.height + lineWidth;\n\n minX = x < minX ? x : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y < minY ? y : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else if (type === SHAPES.CIRC)\n {\n x = shape.x;\n y = shape.y;\n w = shape.radius + (lineWidth / 2);\n h = shape.radius + (lineWidth / 2);\n\n minX = x - w < minX ? x - w : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y - h < minY ? y - h : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else if (type === SHAPES.ELIP)\n {\n x = shape.x;\n y = shape.y;\n w = shape.width + (lineWidth / 2);\n h = shape.height + (lineWidth / 2);\n\n minX = x - w < minX ? x - w : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y - h < minY ? y - h : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else\n {\n // POLY\n var points = shape.points;\n var x2 = 0;\n var y2 = 0;\n var dx = 0;\n var dy = 0;\n var rw = 0;\n var rh = 0;\n var cx = 0;\n var cy = 0;\n\n for (var j = 0; j + 2 < points.length; j += 2)\n {\n x = points[j];\n y = points[j + 1];\n x2 = points[j + 2];\n y2 = points[j + 3];\n dx = Math.abs(x2 - x);\n dy = Math.abs(y2 - y);\n h = lineWidth;\n w = Math.sqrt((dx * dx) + (dy * dy));\n\n if (w < 1e-9)\n {\n continue;\n }\n\n rw = ((h / w * dy) + dx) / 2;\n rh = ((h / w * dx) + dy) / 2;\n cx = (x2 + x) / 2;\n cy = (y2 + y) / 2;\n\n minX = cx - rw < minX ? cx - rw : minX;\n maxX = cx + rw > maxX ? cx + rw : maxX;\n\n minY = cy - rh < minY ? cy - rh : minY;\n maxY = cy + rh > maxY ? cy + rh : maxY;\n }\n }\n }\n }\n else\n {\n minX = 0;\n maxX = 0;\n minY = 0;\n maxY = 0;\n }\n\n var padding = this.boundsPadding;\n\n this._bounds.minX = minX - padding;\n this._bounds.maxX = maxX + padding;\n\n this._bounds.minY = minY - padding;\n this._bounds.maxY = maxY + padding;\n };\n\n /**\n * Transform points using matrix.\n *\n * @protected\n * @param {number[]} points - Points to transform\n * @param {PIXI.Matrix} matrix - Transform matrix\n */\n GraphicsGeometry.prototype.transformPoints = function transformPoints (points, matrix)\n {\n for (var i = 0; i < points.length / 2; i++)\n {\n var x = points[(i * 2)];\n var y = points[(i * 2) + 1];\n\n points[(i * 2)] = (matrix.a * x) + (matrix.c * y) + matrix.tx;\n points[(i * 2) + 1] = (matrix.b * x) + (matrix.d * y) + matrix.ty;\n }\n };\n\n /**\n * Add colors.\n *\n * @protected\n * @param {number[]} colors - List of colors to add to\n * @param {number} color - Color to add\n * @param {number} alpha - Alpha to use\n * @param {number} size - Number of colors to add\n */\n GraphicsGeometry.prototype.addColors = function addColors (colors, color, alpha, size)\n {\n // TODO use the premultiply bits Ivan added\n var rgb = (color >> 16) + (color & 0xff00) + ((color & 0xff) << 16);\n\n var rgba = premultiplyTint(rgb, alpha);\n\n while (size-- > 0)\n {\n colors.push(rgba);\n }\n };\n\n /**\n * Add texture id that the shader/fragment wants to use.\n *\n * @protected\n * @param {number[]} textureIds\n * @param {number} id\n * @param {number} size\n */\n GraphicsGeometry.prototype.addTextureIds = function addTextureIds (textureIds, id, size)\n {\n while (size-- > 0)\n {\n textureIds.push(id);\n }\n };\n\n /**\n * Generates the UVs for a shape.\n *\n * @protected\n * @param {number[]} verts - Vertices\n * @param {number[]} uvs - UVs\n * @param {PIXI.Texture} texture - Reference to Texture\n * @param {number} start - Index buffer start index.\n * @param {number} size - The size/length for index buffer.\n * @param {PIXI.Matrix} [matrix] - Optional transform for all points.\n */\n GraphicsGeometry.prototype.addUvs = function addUvs (verts, uvs, texture, start, size, matrix)\n {\n var index = 0;\n var uvsStart = uvs.length;\n var frame = texture.frame;\n\n while (index < size)\n {\n var x = verts[(start + index) * 2];\n var y = verts[((start + index) * 2) + 1];\n\n if (matrix)\n {\n var nx = (matrix.a * x) + (matrix.c * y) + matrix.tx;\n\n y = (matrix.b * x) + (matrix.d * y) + matrix.ty;\n x = nx;\n }\n\n index++;\n\n uvs.push(x / frame.width, y / frame.height);\n }\n\n var baseTexture = texture.baseTexture;\n\n if (frame.width < baseTexture.width\n || frame.height < baseTexture.height)\n {\n this.adjustUvs(uvs, texture, uvsStart, size);\n }\n };\n\n /**\n * Modify uvs array according to position of texture region\n * Does not work with rotated or trimmed textures\n * @param {number[]} uvs array\n * @param {PIXI.Texture} texture region\n * @param {number} start starting index for uvs\n * @param {number} size how many points to adjust\n */\n GraphicsGeometry.prototype.adjustUvs = function adjustUvs (uvs, texture, start, size)\n {\n var baseTexture = texture.baseTexture;\n var eps = 1e-6;\n var finish = start + (size * 2);\n var frame = texture.frame;\n var scaleX = frame.width / baseTexture.width;\n var scaleY = frame.height / baseTexture.height;\n var offsetX = frame.x / frame.width;\n var offsetY = frame.y / frame.height;\n var minX = Math.floor(uvs[start] + eps);\n var minY = Math.floor(uvs[start + 1] + eps);\n\n for (var i = start + 2; i < finish; i += 2)\n {\n minX = Math.min(minX, Math.floor(uvs[i] + eps));\n minY = Math.min(minY, Math.floor(uvs[i + 1] + eps));\n }\n offsetX -= minX;\n offsetY -= minY;\n for (var i$1 = start; i$1 < finish; i$1 += 2)\n {\n uvs[i$1] = (uvs[i$1] + offsetX) * scaleX;\n uvs[i$1 + 1] = (uvs[i$1 + 1] + offsetY) * scaleY;\n }\n };\n\n Object.defineProperties( GraphicsGeometry.prototype, prototypeAccessors );\n\n return GraphicsGeometry;\n}(BatchGeometry));\n\n/**\n * The maximum number of points to consider an object \"batchable\",\n * able to be batched by the renderer's batch system.\n *\n * @memberof PIXI.GraphicsGeometry\n * @static\n * @member {number} BATCHABLE_SIZE\n * @default 100\n */\nGraphicsGeometry.BATCHABLE_SIZE = 100;\n\n/**\n * Represents the line style for Graphics.\n * @memberof PIXI\n * @class\n * @extends PIXI.FillStyle\n */\nvar LineStyle = /*@__PURE__*/(function (FillStyle) {\n function LineStyle () {\n FillStyle.apply(this, arguments);\n }\n\n if ( FillStyle ) LineStyle.__proto__ = FillStyle;\n LineStyle.prototype = Object.create( FillStyle && FillStyle.prototype );\n LineStyle.prototype.constructor = LineStyle;\n\n LineStyle.prototype.clone = function clone ()\n {\n var obj = new LineStyle();\n\n obj.color = this.color;\n obj.alpha = this.alpha;\n obj.texture = this.texture;\n obj.matrix = this.matrix;\n obj.visible = this.visible;\n obj.width = this.width;\n obj.alignment = this.alignment;\n obj.native = this.native;\n\n return obj;\n };\n /**\n * Reset the line style to default.\n */\n LineStyle.prototype.reset = function reset ()\n {\n FillStyle.prototype.reset.call(this);\n\n // Override default line style color\n this.color = 0x0;\n\n /**\n * The width (thickness) of any lines drawn.\n *\n * @member {number}\n * @default 0\n */\n this.width = 0;\n\n /**\n * The alignment of any lines drawn (0.5 = middle, 1 = outter, 0 = inner).\n *\n * @member {number}\n * @default 0\n */\n this.alignment = 0.5;\n\n /**\n * If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n *\n * @member {boolean}\n * @default false\n */\n this.native = false;\n };\n\n return LineStyle;\n}(FillStyle));\n\n/**\n * Utilities for bezier curves\n * @class\n * @private\n */\nvar BezierUtils = function BezierUtils () {};\n\nBezierUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY)\n{\n var n = 10;\n var result = 0.0;\n var t = 0.0;\n var t2 = 0.0;\n var t3 = 0.0;\n var nt = 0.0;\n var nt2 = 0.0;\n var nt3 = 0.0;\n var x = 0.0;\n var y = 0.0;\n var dx = 0.0;\n var dy = 0.0;\n var prevX = fromX;\n var prevY = fromY;\n\n for (var i = 1; i <= n; ++i)\n {\n t = i / n;\n t2 = t * t;\n t3 = t2 * t;\n nt = (1.0 - t);\n nt2 = nt * nt;\n nt3 = nt2 * nt;\n\n x = (nt3 * fromX) + (3.0 * nt2 * t * cpX) + (3.0 * nt * t2 * cpX2) + (t3 * toX);\n y = (nt3 * fromY) + (3.0 * nt2 * t * cpY) + (3 * nt * t2 * cpY2) + (t3 * toY);\n dx = prevX - x;\n dy = prevY - y;\n prevX = x;\n prevY = y;\n\n result += Math.sqrt((dx * dx) + (dy * dy));\n }\n\n return result;\n};\n\n/**\n * Calculate the points for a bezier curve and then draws it.\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} cpX2 - Second Control point x\n * @param {number} cpY2 - Second Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} points - Path array to push points into\n */\nBezierUtils.curveTo = function curveTo (cpX, cpY, cpX2, cpY2, toX, toY, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n points.length -= 2;\n\n var n = GRAPHICS_CURVES._segmentsCount(\n BezierUtils.curveLength(fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY)\n );\n\n var dt = 0;\n var dt2 = 0;\n var dt3 = 0;\n var t2 = 0;\n var t3 = 0;\n\n points.push(fromX, fromY);\n\n for (var i = 1, j = 0; i <= n; ++i)\n {\n j = i / n;\n\n dt = (1 - j);\n dt2 = dt * dt;\n dt3 = dt2 * dt;\n\n t2 = j * j;\n t3 = t2 * j;\n\n points.push(\n (dt3 * fromX) + (3 * dt2 * j * cpX) + (3 * dt * t2 * cpX2) + (t3 * toX),\n (dt3 * fromY) + (3 * dt2 * j * cpY) + (3 * dt * t2 * cpY2) + (t3 * toY)\n );\n }\n};\n\n/**\n * Utilities for quadratic curves\n * @class\n * @private\n */\nvar QuadraticUtils = function QuadraticUtils () {};\n\nQuadraticUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, toX, toY)\n{\n var ax = fromX - (2.0 * cpX) + toX;\n var ay = fromY - (2.0 * cpY) + toY;\n var bx = (2.0 * cpX) - (2.0 * fromX);\n var by = (2.0 * cpY) - (2.0 * fromY);\n var a = 4.0 * ((ax * ax) + (ay * ay));\n var b = 4.0 * ((ax * bx) + (ay * by));\n var c = (bx * bx) + (by * by);\n\n var s = 2.0 * Math.sqrt(a + b + c);\n var a2 = Math.sqrt(a);\n var a32 = 2.0 * a * a2;\n var c2 = 2.0 * Math.sqrt(c);\n var ba = b / a2;\n\n return (\n (a32 * s)\n + (a2 * b * (s - c2))\n + (\n ((4.0 * c * a) - (b * b))\n * Math.log(((2.0 * a2) + ba + s) / (ba + c2))\n )\n ) / (4.0 * a32);\n};\n\n/**\n * Calculate the points for a quadratic bezier curve and then draws it.\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * @private\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} points - Points to add segments to.\n */\nQuadraticUtils.curveTo = function curveTo (cpX, cpY, toX, toY, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n var n = GRAPHICS_CURVES._segmentsCount(\n QuadraticUtils.curveLength(fromX, fromY, cpX, cpY, toX, toY)\n );\n\n var xa = 0;\n var ya = 0;\n\n for (var i = 1; i <= n; ++i)\n {\n var j = i / n;\n\n xa = fromX + ((cpX - fromX) * j);\n ya = fromY + ((cpY - fromY) * j);\n\n points.push(xa + (((cpX + ((toX - cpX) * j)) - xa) * j),\n ya + (((cpY + ((toY - cpY) * j)) - ya) * j));\n }\n};\n\n/**\n * Utilities for arc curves\n * @class\n * @private\n */\nvar ArcUtils = function ArcUtils () {};\n\nArcUtils.curveTo = function curveTo (x1, y1, x2, y2, radius, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n var a1 = fromY - y1;\n var b1 = fromX - x1;\n var a2 = y2 - y1;\n var b2 = x2 - x1;\n var mm = Math.abs((a1 * b2) - (b1 * a2));\n\n if (mm < 1.0e-8 || radius === 0)\n {\n if (points[points.length - 2] !== x1 || points[points.length - 1] !== y1)\n {\n points.push(x1, y1);\n }\n\n return null;\n }\n\n var dd = (a1 * a1) + (b1 * b1);\n var cc = (a2 * a2) + (b2 * b2);\n var tt = (a1 * a2) + (b1 * b2);\n var k1 = radius * Math.sqrt(dd) / mm;\n var k2 = radius * Math.sqrt(cc) / mm;\n var j1 = k1 * tt / dd;\n var j2 = k2 * tt / cc;\n var cx = (k1 * b2) + (k2 * b1);\n var cy = (k1 * a2) + (k2 * a1);\n var px = b1 * (k2 + j1);\n var py = a1 * (k2 + j1);\n var qx = b2 * (k1 + j2);\n var qy = a2 * (k1 + j2);\n var startAngle = Math.atan2(py - cy, px - cx);\n var endAngle = Math.atan2(qy - cy, qx - cx);\n\n return {\n cx: (cx + x1),\n cy: (cy + y1),\n radius: radius,\n startAngle: startAngle,\n endAngle: endAngle,\n anticlockwise: (b1 * a2 > b2 * a1),\n };\n};\n\n/**\n * The arc method creates an arc/curve (used to create circles, or parts of circles).\n *\n * @private\n * @param {number} startX - Start x location of arc\n * @param {number} startY - Start y location of arc\n * @param {number} cx - The x-coordinate of the center of the circle\n * @param {number} cy - The y-coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position\n * of the arc's circle)\n * @param {number} endAngle - The ending angle, in radians\n * @param {boolean} anticlockwise - Specifies whether the drawing should be\n * counter-clockwise or clockwise. False is default, and indicates clockwise, while true\n * indicates counter-clockwise.\n * @param {number} n - Number of segments\n * @param {number[]} points - Collection of points to add to\n */\nArcUtils.arc = function arc (startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points)\n{\n var sweep = endAngle - startAngle;\n var n = GRAPHICS_CURVES._segmentsCount(\n Math.abs(sweep) * radius,\n Math.ceil(Math.abs(sweep) / PI_2) * 40\n );\n\n var theta = (sweep) / (n * 2);\n var theta2 = theta * 2;\n var cTheta = Math.cos(theta);\n var sTheta = Math.sin(theta);\n var segMinus = n - 1;\n var remainder = (segMinus % 1) / segMinus;\n\n for (var i = 0; i <= segMinus; ++i)\n {\n var real = i + (remainder * i);\n var angle = ((theta) + startAngle + (theta2 * real));\n var c = Math.cos(angle);\n var s = -Math.sin(angle);\n\n points.push(\n (((cTheta * c) + (sTheta * s)) * radius) + cx,\n (((cTheta * -s) + (sTheta * c)) * radius) + cy\n );\n }\n};\n\n/**\n * Draw a star shape with an arbitrary number of points.\n *\n * @class\n * @extends PIXI.Polygon\n * @memberof PIXI\n * @param {number} x - Center X position of the star\n * @param {number} y - Center Y position of the star\n * @param {number} points - The number of points of the star, must be > 1\n * @param {number} radius - The outer radius of the star\n * @param {number} [innerRadius] - The inner radius between points, default half `radius`\n * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\nvar Star = /*@__PURE__*/(function (Polygon) {\n function Star(x, y, points, radius, innerRadius, rotation)\n {\n innerRadius = innerRadius || radius / 2;\n\n var startAngle = (-1 * Math.PI / 2) + rotation;\n var len = points * 2;\n var delta = PI_2 / len;\n var polygon = [];\n\n for (var i = 0; i < len; i++)\n {\n var r = i % 2 ? innerRadius : radius;\n var angle = (i * delta) + startAngle;\n\n polygon.push(\n x + (r * Math.cos(angle)),\n y + (r * Math.sin(angle))\n );\n }\n\n Polygon.call(this, polygon);\n }\n\n if ( Polygon ) Star.__proto__ = Polygon;\n Star.prototype = Object.create( Polygon && Polygon.prototype );\n Star.prototype.constructor = Star;\n\n return Star;\n}(Polygon));\n\nvar temp = new Float32Array(3);\n\n// a default shaders map used by graphics..\nvar DEFAULT_SHADERS = {};\n\n/**\n * The Graphics class contains methods used to draw primitive shapes such as lines, circles and\n * rectangles to the display, and to color and fill them.\n *\n * Note that because Graphics can share a GraphicsGeometry with other instances,\n * it is necessary to call `destroy()` to properly dereference the underlying\n * GraphicsGeometry and avoid a memory leak. Alternatively, keep using the same\n * Graphics instance and call `clear()` between redraws.\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Graphics = /*@__PURE__*/(function (Container) {\n function Graphics(geometry)\n {\n if ( geometry === void 0 ) geometry = null;\n\n Container.call(this);\n /**\n * Includes vertex positions, face indices, normals, colors, UVs, and\n * custom attributes within buffers, reducing the cost of passing all\n * this data to the GPU. Can be shared between multiple Mesh or Graphics objects.\n * @member {PIXI.GraphicsGeometry}\n * @readonly\n */\n this.geometry = geometry || new GraphicsGeometry();\n\n this.geometry.refCount++;\n\n /**\n * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU.\n * Can be shared between multiple Graphics objects.\n * @member {PIXI.Shader}\n */\n this.shader = null;\n\n /**\n * Represents the WebGL state the Graphics required to render, excludes shader and geometry. E.g.,\n * blend mode, culling, depth testing, direction of rendering triangles, backface, etc.\n * @member {PIXI.State}\n */\n this.state = State.for2d();\n\n /**\n * Current fill style\n *\n * @member {PIXI.FillStyle}\n * @protected\n */\n this._fillStyle = new FillStyle();\n\n /**\n * Current line style\n *\n * @member {PIXI.LineStyle}\n * @protected\n */\n this._lineStyle = new LineStyle();\n\n /**\n * Current shape transform matrix.\n *\n * @member {PIXI.Matrix}\n * @protected\n */\n this._matrix = null;\n\n /**\n * Current hole mode is enabled.\n *\n * @member {boolean}\n * @default false\n * @protected\n */\n this._holeMode = false;\n\n /**\n * Current path\n *\n * @member {PIXI.Polygon}\n * @protected\n */\n this.currentPath = null;\n\n /**\n * When cacheAsBitmap is set to true the graphics object will be rendered as if it was a sprite.\n * This is useful if your graphics element does not change often, as it will speed up the rendering\n * of the object in exchange for taking up texture memory. It is also useful if you need the graphics\n * object to be anti-aliased, because it will be rendered using canvas. This is not recommended if\n * you are constantly redrawing the graphics element.\n *\n * @name cacheAsBitmap\n * @member {boolean}\n * @memberof PIXI.Graphics#\n * @default false\n */\n\n /**\n * A collections of batches! These can be drawn by the renderer batch system.\n *\n * @protected\n * @member {object[]}\n */\n this.batches = [];\n\n /**\n * Update dirty for limiting calculating tints for batches.\n *\n * @protected\n * @member {number}\n * @default -1\n */\n this.batchTint = -1;\n\n /**\n * Copy of the object vertex data.\n *\n * @protected\n * @member {Float32Array}\n */\n this.vertexData = null;\n\n this._transformID = -1;\n this.batchDirty = -1;\n\n /**\n * Renderer plugin for batching\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = 'batch';\n\n // Set default\n this.tint = 0xFFFFFF;\n this.blendMode = BLEND_MODES.NORMAL;\n }\n\n if ( Container ) Graphics.__proto__ = Container;\n Graphics.prototype = Object.create( Container && Container.prototype );\n Graphics.prototype.constructor = Graphics;\n\n var prototypeAccessors = { blendMode: { configurable: true },tint: { configurable: true },fill: { configurable: true },line: { configurable: true } };\n\n /**\n * Creates a new Graphics object with the same values as this one.\n * Note that the only the properties of the object are cloned, not its transform (position,scale,etc)\n *\n * @return {PIXI.Graphics} A clone of the graphics object\n */\n Graphics.prototype.clone = function clone ()\n {\n this.finishPoly();\n\n return new Graphics(this.geometry);\n };\n\n /**\n * The blend mode to be applied to the graphic shape. Apply a value of\n * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL;\n * @see PIXI.BLEND_MODES\n */\n prototypeAccessors.blendMode.set = function (value)\n {\n this.state.blendMode = value;\n };\n\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n /**\n * The tint applied to the graphic shape. This is a hex value. A value of\n * 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n prototypeAccessors.tint.set = function (value)\n {\n this._tint = value;\n };\n\n /**\n * The current fill style.\n *\n * @member {PIXI.FillStyle}\n * @readonly\n */\n prototypeAccessors.fill.get = function ()\n {\n return this._fillStyle;\n };\n\n /**\n * The current line style.\n *\n * @member {PIXI.LineStyle}\n * @readonly\n */\n prototypeAccessors.line.get = function ()\n {\n return this._lineStyle;\n };\n\n /**\n * Specifies the line style used for subsequent calls to Graphics methods such as the lineTo()\n * method or the drawCircle() method.\n *\n * @param {number} [width=0] - width of the line to draw, will update the objects stored style\n * @param {number} [color=0] - color of the line to draw, will update the objects stored style\n * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style\n * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter)\n * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineStyle = function lineStyle (width, color, alpha, alignment, native)\n {\n if ( width === void 0 ) width = 0;\n if ( color === void 0 ) color = 0;\n if ( alpha === void 0 ) alpha = 1;\n if ( alignment === void 0 ) alignment = 0.5;\n if ( native === void 0 ) native = false;\n\n this.lineTextureStyle(width, Texture.WHITE, color, alpha, null, alignment, native);\n\n return this;\n };\n\n /**\n * Like line style but support texture for line fill.\n *\n * @param {number} [width=0] - width of the line to draw, will update the objects stored style\n * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to use\n * @param {number} [color=0] - color of the line to draw, will update the objects stored style\n * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style\n * @param {PIXI.Matrix} [matrix=null] Texture matrix to transform texture\n * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter)\n * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineTextureStyle = function lineTextureStyle (width, texture, color, alpha,\n matrix, alignment, native)\n {\n if ( width === void 0 ) width = 0;\n if ( texture === void 0 ) texture = Texture.WHITE;\n if ( color === void 0 ) color = 0xFFFFFF;\n if ( alpha === void 0 ) alpha = 1;\n if ( matrix === void 0 ) matrix = null;\n if ( alignment === void 0 ) alignment = 0.5;\n if ( native === void 0 ) native = false;\n\n if (this.currentPath)\n {\n this.startPoly();\n }\n\n var visible = width > 0 && alpha > 0;\n\n if (!visible)\n {\n this._lineStyle.reset();\n }\n else\n {\n if (matrix)\n {\n matrix = matrix.clone();\n matrix.invert();\n }\n\n Object.assign(this._lineStyle, {\n color: color,\n width: width,\n alpha: alpha,\n matrix: matrix,\n texture: texture,\n alignment: alignment,\n native: native,\n visible: visible,\n });\n }\n\n return this;\n };\n\n /**\n * Start a polygon object internally\n * @protected\n */\n Graphics.prototype.startPoly = function startPoly ()\n {\n if (this.currentPath)\n {\n var points = this.currentPath.points;\n var len = this.currentPath.points.length;\n\n if (len > 2)\n {\n this.drawShape(this.currentPath);\n this.currentPath = new Polygon();\n this.currentPath.closeStroke = false;\n this.currentPath.points.push(points[len - 2], points[len - 1]);\n }\n }\n else\n {\n this.currentPath = new Polygon();\n this.currentPath.closeStroke = false;\n }\n };\n\n /**\n * Finish the polygon object.\n * @protected\n */\n Graphics.prototype.finishPoly = function finishPoly ()\n {\n if (this.currentPath)\n {\n if (this.currentPath.points.length > 2)\n {\n this.drawShape(this.currentPath);\n this.currentPath = null;\n }\n else\n {\n this.currentPath.points.length = 0;\n }\n }\n };\n\n /**\n * Moves the current drawing position to x, y.\n *\n * @param {number} x - the X coordinate to move to\n * @param {number} y - the Y coordinate to move to\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.moveTo = function moveTo (x, y)\n {\n this.startPoly();\n this.currentPath.points[0] = x;\n this.currentPath.points[1] = y;\n\n return this;\n };\n\n /**\n * Draws a line using the current line style from the current drawing position to (x, y);\n * The current drawing position is then set to (x, y).\n *\n * @param {number} x - the X coordinate to draw to\n * @param {number} y - the Y coordinate to draw to\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineTo = function lineTo (x, y)\n {\n if (!this.currentPath)\n {\n this.moveTo(0, 0);\n }\n\n // remove duplicates..\n var points = this.currentPath.points;\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n if (fromX !== x || fromY !== y)\n {\n points.push(x, y);\n }\n\n return this;\n };\n\n /**\n * Initialize the curve\n *\n * @protected\n * @param {number} [x=0]\n * @param {number} [y=0]\n */\n Graphics.prototype._initCurve = function _initCurve (x, y)\n {\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n if (this.currentPath)\n {\n if (this.currentPath.points.length === 0)\n {\n this.currentPath.points = [x, y];\n }\n }\n else\n {\n this.moveTo(x, y);\n }\n };\n\n /**\n * Calculate the points for a quadratic bezier curve and then draws it.\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.quadraticCurveTo = function quadraticCurveTo (cpX, cpY, toX, toY)\n {\n this._initCurve();\n\n var points = this.currentPath.points;\n\n if (points.length === 0)\n {\n this.moveTo(0, 0);\n }\n\n QuadraticUtils.curveTo(cpX, cpY, toX, toY, points);\n\n return this;\n };\n\n /**\n * Calculate the points for a bezier curve and then draws it.\n *\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} cpX2 - Second Control point x\n * @param {number} cpY2 - Second Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.bezierCurveTo = function bezierCurveTo (cpX, cpY, cpX2, cpY2, toX, toY)\n {\n this._initCurve();\n\n BezierUtils.curveTo(cpX, cpY, cpX2, cpY2, toX, toY, this.currentPath.points);\n\n return this;\n };\n\n /**\n * The arcTo() method creates an arc/curve between two tangents on the canvas.\n *\n * \"borrowed\" from https://code.google.com/p/fxcanvas/ - thanks google!\n *\n * @param {number} x1 - The x-coordinate of the first tangent point of the arc\n * @param {number} y1 - The y-coordinate of the first tangent point of the arc\n * @param {number} x2 - The x-coordinate of the end of the arc\n * @param {number} y2 - The y-coordinate of the end of the arc\n * @param {number} radius - The radius of the arc\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.arcTo = function arcTo (x1, y1, x2, y2, radius)\n {\n this._initCurve(x1, y1);\n\n var points = this.currentPath.points;\n\n var result = ArcUtils.curveTo(x1, y1, x2, y2, radius, points);\n\n if (result)\n {\n var cx = result.cx;\n var cy = result.cy;\n var radius$1 = result.radius;\n var startAngle = result.startAngle;\n var endAngle = result.endAngle;\n var anticlockwise = result.anticlockwise;\n\n this.arc(cx, cy, radius$1, startAngle, endAngle, anticlockwise);\n }\n\n return this;\n };\n\n /**\n * The arc method creates an arc/curve (used to create circles, or parts of circles).\n *\n * @param {number} cx - The x-coordinate of the center of the circle\n * @param {number} cy - The y-coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position\n * of the arc's circle)\n * @param {number} endAngle - The ending angle, in radians\n * @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be\n * counter-clockwise or clockwise. False is default, and indicates clockwise, while true\n * indicates counter-clockwise.\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.arc = function arc (cx, cy, radius, startAngle, endAngle, anticlockwise)\n {\n if ( anticlockwise === void 0 ) anticlockwise = false;\n\n if (startAngle === endAngle)\n {\n return this;\n }\n\n if (!anticlockwise && endAngle <= startAngle)\n {\n endAngle += PI_2;\n }\n else if (anticlockwise && startAngle <= endAngle)\n {\n startAngle += PI_2;\n }\n\n var sweep = endAngle - startAngle;\n\n if (sweep === 0)\n {\n return this;\n }\n\n var startX = cx + (Math.cos(startAngle) * radius);\n var startY = cy + (Math.sin(startAngle) * radius);\n var eps = this.geometry.closePointEps;\n\n // If the currentPath exists, take its points. Otherwise call `moveTo` to start a path.\n var points = this.currentPath ? this.currentPath.points : null;\n\n if (points)\n {\n // TODO: make a better fix.\n\n // We check how far our start is from the last existing point\n var xDiff = Math.abs(points[points.length - 2] - startX);\n var yDiff = Math.abs(points[points.length - 1] - startY);\n\n if (xDiff < eps && yDiff < eps)\n ;\n else\n {\n points.push(startX, startY);\n }\n }\n else\n {\n this.moveTo(startX, startY);\n points = this.currentPath.points;\n }\n\n ArcUtils.arc(startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points);\n\n return this;\n };\n\n /**\n * Specifies a simple one-color fill that subsequent calls to other Graphics methods\n * (such as lineTo() or drawCircle()) use when drawing.\n *\n * @param {number} [color=0] - the color of the fill\n * @param {number} [alpha=1] - the alpha of the fill\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.beginFill = function beginFill (color, alpha)\n {\n if ( color === void 0 ) color = 0;\n if ( alpha === void 0 ) alpha = 1;\n\n return this.beginTextureFill(Texture.WHITE, color, alpha);\n };\n\n /**\n * Begin the texture fill\n *\n * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to fill\n * @param {number} [color=0xffffff] - Background to fill behind texture\n * @param {number} [alpha=1] - Alpha of fill\n * @param {PIXI.Matrix} [matrix=null] - Transform matrix\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.beginTextureFill = function beginTextureFill (texture, color, alpha, matrix)\n {\n if ( texture === void 0 ) texture = Texture.WHITE;\n if ( color === void 0 ) color = 0xFFFFFF;\n if ( alpha === void 0 ) alpha = 1;\n if ( matrix === void 0 ) matrix = null;\n\n if (this.currentPath)\n {\n this.startPoly();\n }\n\n var visible = alpha > 0;\n\n if (!visible)\n {\n this._fillStyle.reset();\n }\n else\n {\n if (matrix)\n {\n matrix = matrix.clone();\n matrix.invert();\n }\n\n Object.assign(this._fillStyle, {\n color: color,\n alpha: alpha,\n texture: texture,\n matrix: matrix,\n visible: visible,\n });\n }\n\n return this;\n };\n\n /**\n * Applies a fill to the lines and shapes that were added since the last call to the beginFill() method.\n *\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.endFill = function endFill ()\n {\n this.finishPoly();\n\n this._fillStyle.reset();\n\n return this;\n };\n\n /**\n * Draws a rectangle shape.\n *\n * @param {number} x - The X coord of the top-left of the rectangle\n * @param {number} y - The Y coord of the top-left of the rectangle\n * @param {number} width - The width of the rectangle\n * @param {number} height - The height of the rectangle\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawRect = function drawRect (x, y, width, height)\n {\n return this.drawShape(new Rectangle(x, y, width, height));\n };\n\n /**\n * Draw a rectangle shape with rounded/beveled corners.\n *\n * @param {number} x - The X coord of the top-left of the rectangle\n * @param {number} y - The Y coord of the top-left of the rectangle\n * @param {number} width - The width of the rectangle\n * @param {number} height - The height of the rectangle\n * @param {number} radius - Radius of the rectangle corners\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawRoundedRect = function drawRoundedRect (x, y, width, height, radius)\n {\n return this.drawShape(new RoundedRectangle(x, y, width, height, radius));\n };\n\n /**\n * Draws a circle.\n *\n * @param {number} x - The X coordinate of the center of the circle\n * @param {number} y - The Y coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawCircle = function drawCircle (x, y, radius)\n {\n return this.drawShape(new Circle(x, y, radius));\n };\n\n /**\n * Draws an ellipse.\n *\n * @param {number} x - The X coordinate of the center of the ellipse\n * @param {number} y - The Y coordinate of the center of the ellipse\n * @param {number} width - The half width of the ellipse\n * @param {number} height - The half height of the ellipse\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawEllipse = function drawEllipse (x, y, width, height)\n {\n return this.drawShape(new Ellipse(x, y, width, height));\n };\n\n /**\n * Draws a polygon using the given path.\n *\n * @param {number[]|PIXI.Point[]|PIXI.Polygon} path - The path data used to construct the polygon.\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawPolygon = function drawPolygon (path)\n {\n var arguments$1 = arguments;\n\n // prevents an argument assignment deopt\n // see section 3.1: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments\n var points = path;\n\n var closeStroke = true;// !!this._fillStyle;\n\n // check if data has points..\n if (points.points)\n {\n closeStroke = points.closeStroke;\n points = points.points;\n }\n\n if (!Array.isArray(points))\n {\n // prevents an argument leak deopt\n // see section 3.2: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments\n points = new Array(arguments.length);\n\n for (var i = 0; i < points.length; ++i)\n {\n points[i] = arguments$1[i]; // eslint-disable-line prefer-rest-params\n }\n }\n\n var shape = new Polygon(points);\n\n shape.closeStroke = closeStroke;\n\n this.drawShape(shape);\n\n return this;\n };\n\n /**\n * Draw any shape.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - Shape to draw\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawShape = function drawShape (shape)\n {\n if (!this._holeMode)\n {\n this.geometry.drawShape(\n shape,\n this._fillStyle.clone(),\n this._lineStyle.clone(),\n this._matrix\n );\n }\n else\n {\n this.geometry.drawHole(shape, this._matrix);\n }\n\n return this;\n };\n\n /**\n * Draw a star shape with an arbitrary number of points.\n *\n * @param {number} x - Center X position of the star\n * @param {number} y - Center Y position of the star\n * @param {number} points - The number of points of the star, must be > 1\n * @param {number} radius - The outer radius of the star\n * @param {number} [innerRadius] - The inner radius between points, default half `radius`\n * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawStar = function drawStar (x, y, points, radius, innerRadius, rotation)\n {\n if ( rotation === void 0 ) rotation = 0;\n\n return this.drawPolygon(new Star(x, y, points, radius, innerRadius, rotation));\n };\n\n /**\n * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings.\n *\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.clear = function clear ()\n {\n this.geometry.clear();\n this._lineStyle.reset();\n this._fillStyle.reset();\n\n this._matrix = null;\n this._holeMode = false;\n this.currentPath = null;\n\n return this;\n };\n\n /**\n * True if graphics consists of one rectangle, and thus, can be drawn like a Sprite and\n * masked with gl.scissor.\n *\n * @returns {boolean} True if only 1 rect.\n */\n Graphics.prototype.isFastRect = function isFastRect ()\n {\n // will fix this!\n return false;\n // this.graphicsData.length === 1\n // && this.graphicsData[0].shape.type === SHAPES.RECT\n // && !this.graphicsData[0].lineWidth;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._render = function _render (renderer)\n {\n this.finishPoly();\n\n var geometry = this.geometry;\n\n // batch part..\n // batch it!\n geometry.updateBatches();\n\n if (geometry.batchable)\n {\n if (this.batchDirty !== geometry.batchDirty)\n {\n this._populateBatches();\n }\n\n this._renderBatched(renderer);\n }\n else\n {\n // no batching...\n renderer.batch.flush();\n\n this._renderDirect(renderer);\n }\n };\n\n /**\n * Populating batches for rendering\n *\n * @protected\n */\n Graphics.prototype._populateBatches = function _populateBatches ()\n {\n var geometry = this.geometry;\n var blendMode = this.blendMode;\n\n this.batches = [];\n this.batchTint = -1;\n this._transformID = -1;\n this.batchDirty = geometry.batchDirty;\n\n this.vertexData = new Float32Array(geometry.points);\n\n for (var i = 0, l = geometry.batches.length; i < l; i++)\n {\n var gI = geometry.batches[i];\n var color = gI.style.color;\n var vertexData = new Float32Array(this.vertexData.buffer,\n gI.attribStart * 4 * 2,\n gI.attribSize * 2);\n\n var uvs = new Float32Array(geometry.uvsFloat32.buffer,\n gI.attribStart * 4 * 2,\n gI.attribSize * 2);\n\n var indices = new Uint16Array(geometry.indicesUint16.buffer,\n gI.start * 2,\n gI.size);\n\n var batch = {\n vertexData: vertexData,\n blendMode: blendMode,\n indices: indices,\n uvs: uvs,\n _batchRGB: hex2rgb(color),\n _tintRGB: color,\n _texture: gI.style.texture,\n alpha: gI.style.alpha,\n worldAlpha: 1 };\n\n this.batches[i] = batch;\n }\n };\n\n /**\n * Renders the batches using the BathedRenderer plugin\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._renderBatched = function _renderBatched (renderer)\n {\n if (!this.batches.length)\n {\n return;\n }\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n\n this.calculateVertices();\n this.calculateTints();\n\n for (var i = 0, l = this.batches.length; i < l; i++)\n {\n var batch = this.batches[i];\n\n batch.worldAlpha = this.worldAlpha * batch.alpha;\n\n renderer.plugins[this.pluginName].render(batch);\n }\n };\n\n /**\n * Renders the graphics direct\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._renderDirect = function _renderDirect (renderer)\n {\n var shader = this._resolveDirectShader(renderer);\n\n var geometry = this.geometry;\n var tint = this.tint;\n var worldAlpha = this.worldAlpha;\n var uniforms = shader.uniforms;\n var drawCalls = geometry.drawCalls;\n\n // lets set the transfomr\n uniforms.translationMatrix = this.transform.worldTransform;\n\n // and then lets set the tint..\n uniforms.tint[0] = (((tint >> 16) & 0xFF) / 255) * worldAlpha;\n uniforms.tint[1] = (((tint >> 8) & 0xFF) / 255) * worldAlpha;\n uniforms.tint[2] = ((tint & 0xFF) / 255) * worldAlpha;\n uniforms.tint[3] = worldAlpha;\n\n // the first draw call, we can set the uniforms of the shader directly here.\n\n // this means that we can tack advantage of the sync function of pixi!\n // bind and sync uniforms..\n // there is a way to optimise this..\n renderer.shader.bind(shader);\n renderer.geometry.bind(geometry, shader);\n\n // set state..\n renderer.state.set(this.state);\n\n // then render the rest of them...\n for (var i = 0, l = drawCalls.length; i < l; i++)\n {\n this._renderDrawCallDirect(renderer, geometry.drawCalls[i]);\n }\n };\n\n /**\n * Renders specific DrawCall\n *\n * @param {PIXI.Renderer} renderer\n * @param {PIXI.BatchDrawCall} drawCall\n */\n Graphics.prototype._renderDrawCallDirect = function _renderDrawCallDirect (renderer, drawCall)\n {\n var groupTextureCount = drawCall.textureCount;\n\n for (var j = 0; j < groupTextureCount; j++)\n {\n renderer.texture.bind(drawCall.textures[j], j);\n }\n\n renderer.geometry.draw(drawCall.type, drawCall.size, drawCall.start);\n };\n\n /**\n * Resolves shader for direct rendering\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._resolveDirectShader = function _resolveDirectShader (renderer)\n {\n var shader = this.shader;\n\n var pluginName = this.pluginName;\n\n if (!shader)\n {\n // if there is no shader here, we can use the default shader.\n // and that only gets created if we actually need it..\n // but may be more than one plugins for graphics\n if (!DEFAULT_SHADERS[pluginName])\n {\n var sampleValues = new Int32Array(16);\n\n for (var i = 0; i < 16; i++)\n {\n sampleValues[i] = i;\n }\n\n var uniforms = {\n tint: new Float32Array([1, 1, 1, 1]),\n translationMatrix: new Matrix(),\n default: UniformGroup.from({ uSamplers: sampleValues }, true),\n };\n\n var program = renderer.plugins[pluginName]._shader.program;\n\n DEFAULT_SHADERS[pluginName] = new Shader(program, uniforms);\n }\n\n shader = DEFAULT_SHADERS[pluginName];\n }\n\n return shader;\n };\n\n /**\n * Retrieves the bounds of the graphic shape as a rectangle object\n *\n * @protected\n */\n Graphics.prototype._calculateBounds = function _calculateBounds ()\n {\n this.finishPoly();\n var lb = this.geometry.bounds;\n\n this._bounds.addFrame(this.transform, lb.minX, lb.minY, lb.maxX, lb.maxY);\n };\n\n /**\n * Tests if a point is inside this graphics object\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */\n Graphics.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, Graphics._TEMP_POINT);\n\n return this.geometry.containsPoint(Graphics._TEMP_POINT);\n };\n\n /**\n * Recalcuate the tint by applying tin to batches using Graphics tint.\n * @protected\n */\n Graphics.prototype.calculateTints = function calculateTints ()\n {\n if (this.batchTint !== this.tint)\n {\n this.batchTint = this.tint;\n\n var tintRGB = hex2rgb(this.tint, temp);\n\n for (var i = 0; i < this.batches.length; i++)\n {\n var batch = this.batches[i];\n\n var batchTint = batch._batchRGB;\n\n var r = (tintRGB[0] * batchTint[0]) * 255;\n var g = (tintRGB[1] * batchTint[1]) * 255;\n var b = (tintRGB[2] * batchTint[2]) * 255;\n\n // TODO Ivan, can this be done in one go?\n var color = (r << 16) + (g << 8) + (b | 0);\n\n batch._tintRGB = (color >> 16)\n + (color & 0xff00)\n + ((color & 0xff) << 16);\n }\n }\n };\n\n /**\n * If there's a transform update or a change to the shape of the\n * geometry, recaculate the vertices.\n * @protected\n */\n Graphics.prototype.calculateVertices = function calculateVertices ()\n {\n if (this._transformID === this.transform._worldID)\n {\n return;\n }\n\n this._transformID = this.transform._worldID;\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var data = this.geometry.points;// batch.vertexDataOriginal;\n var vertexData = this.vertexData;\n\n var count = 0;\n\n for (var i = 0; i < data.length; i += 2)\n {\n var x = data[i];\n var y = data[i + 1];\n\n vertexData[count++] = (a * x) + (c * y) + tx;\n vertexData[count++] = (d * y) + (b * x) + ty;\n }\n };\n\n /**\n * Closes the current path.\n *\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.closePath = function closePath ()\n {\n var currentPath = this.currentPath;\n\n if (currentPath)\n {\n // we don't need to add extra point in the end because buildLine will take care of that\n currentPath.closeStroke = true;\n }\n\n return this;\n };\n\n /**\n * Apply a matrix to the positional data.\n *\n * @param {PIXI.Matrix} matrix - Matrix to use for transform current shape.\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.setMatrix = function setMatrix (matrix)\n {\n this._matrix = matrix;\n\n return this;\n };\n\n /**\n * Begin adding holes to the last draw shape\n * IMPORTANT: holes must be fully inside a shape to work\n * Also weirdness ensues if holes overlap!\n * Ellipses, Circles, Rectangles and Rounded Rectangles cannot be holes or host for holes in CanvasRenderer,\n * please use `moveTo` `lineTo`, `quadraticCurveTo` if you rely on pixi-legacy bundle.\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.beginHole = function beginHole ()\n {\n this.finishPoly();\n this._holeMode = true;\n\n return this;\n };\n\n /**\n * End adding holes to the last draw shape\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.endHole = function endHole ()\n {\n this.finishPoly();\n this._holeMode = false;\n\n return this;\n };\n\n /**\n * Destroys the Graphics object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n Graphics.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.geometry.refCount--;\n if (this.geometry.refCount === 0)\n {\n this.geometry.dispose();\n }\n\n this._matrix = null;\n this.currentPath = null;\n this._lineStyle.destroy();\n this._lineStyle = null;\n this._fillStyle.destroy();\n this._fillStyle = null;\n this.geometry = null;\n this.shader = null;\n this.vertexData = null;\n this.batches.length = 0;\n this.batches = null;\n\n Container.prototype.destroy.call(this, options);\n };\n\n Object.defineProperties( Graphics.prototype, prototypeAccessors );\n\n return Graphics;\n}(Container));\n\n/**\n * Temporary point to use for containsPoint\n *\n * @static\n * @private\n * @member {PIXI.Point}\n */\nGraphics._TEMP_POINT = new Point();\n\nexport { FillStyle, GRAPHICS_CURVES, Graphics, GraphicsData, GraphicsGeometry, LineStyle };\n//# sourceMappingURL=graphics.es.js.map\n","/*!\n * @pixi/sprite - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/sprite is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Point, Rectangle, ObservablePoint } from '@pixi/math';\nimport { sign } from '@pixi/utils';\nimport { Texture } from '@pixi/core';\nimport { BLEND_MODES } from '@pixi/constants';\nimport { Container } from '@pixi/display';\nimport { settings } from '@pixi/settings';\n\nvar tempPoint = new Point();\nvar indices = new Uint16Array([0, 1, 2, 0, 2, 3]);\n\n/**\n * The Sprite object is the base for all textured objects that are rendered to the screen\n*\n * A sprite can be created directly from an image like this:\n *\n * ```js\n * let sprite = PIXI.Sprite.from('assets/image.png');\n * ```\n *\n * The more efficient way to create sprites is using a {@link PIXI.Spritesheet},\n * as swapping base textures when rendering to the screen is inefficient.\n *\n * ```js\n * PIXI.Loader.shared.add(\"assets/spritesheet.json\").load(setup);\n *\n * function setup() {\n * let sheet = PIXI.Loader.shared.resources[\"assets/spritesheet.json\"].spritesheet;\n * let sprite = new PIXI.Sprite(sheet.textures[\"image.png\"]);\n * ...\n * }\n * ```\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Sprite = /*@__PURE__*/(function (Container) {\n function Sprite(texture)\n {\n Container.call(this);\n\n /**\n * The anchor point defines the normalized coordinates\n * in the texture that map to the position of this\n * sprite.\n *\n * By default, this is `(0,0)` (or `texture.defaultAnchor`\n * if you have modified that), which means the position\n * `(x,y)` of this `Sprite` will be the top-left corner.\n *\n * Note: Updating `texture.defaultAnchor` after\n * constructing a `Sprite` does _not_ update its anchor.\n *\n * {@link https://docs.cocos2d-x.org/cocos2d-x/en/sprites/manipulation.html}\n *\n * @default `texture.defaultAnchor`\n * @member {PIXI.ObservablePoint}\n * @private\n */\n this._anchor = new ObservablePoint(\n this._onAnchorUpdate,\n this,\n (texture ? texture.defaultAnchor.x : 0),\n (texture ? texture.defaultAnchor.y : 0)\n );\n\n /**\n * The texture that the sprite is using\n *\n * @private\n * @member {PIXI.Texture}\n */\n this._texture = null;\n\n /**\n * The width of the sprite (this is initially set by the texture)\n *\n * @private\n * @member {number}\n */\n this._width = 0;\n\n /**\n * The height of the sprite (this is initially set by the texture)\n *\n * @private\n * @member {number}\n */\n this._height = 0;\n\n /**\n * The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @private\n * @member {number}\n * @default 0xFFFFFF\n */\n this._tint = null;\n this._tintRGB = null;\n this.tint = 0xFFFFFF;\n\n /**\n * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * The shader that will be used to render the sprite. Set to null to remove a current shader.\n *\n * @member {PIXI.Filter|PIXI.Shader}\n */\n this.shader = null;\n\n /**\n * Cached tint value so we can tell when the tint is changed.\n * Value is used for 2d CanvasRenderer.\n *\n * @protected\n * @member {number}\n * @default 0xFFFFFF\n */\n this._cachedTint = 0xFFFFFF;\n\n /**\n * this is used to store the uvs data of the sprite, assigned at the same time\n * as the vertexData in calculateVertices()\n *\n * @private\n * @member {Float32Array}\n */\n this.uvs = null;\n\n // call texture setter\n this.texture = texture || Texture.EMPTY;\n\n /**\n * this is used to store the vertex data of the sprite (basically a quad)\n *\n * @private\n * @member {Float32Array}\n */\n this.vertexData = new Float32Array(8);\n\n /**\n * This is used to calculate the bounds of the object IF it is a trimmed sprite\n *\n * @private\n * @member {Float32Array}\n */\n this.vertexTrimmedData = null;\n\n this._transformID = -1;\n this._textureID = -1;\n\n this._transformTrimmedID = -1;\n this._textureTrimmedID = -1;\n\n // Batchable stuff..\n // TODO could make this a mixin?\n this.indices = indices;\n this.size = 4;\n this.start = 0;\n\n /**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_render' & '_renderCanvas' methods.\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = 'batch';\n\n /**\n * used to fast check if a sprite is.. a sprite!\n * @member {boolean}\n */\n this.isSprite = true;\n\n /**\n * Internal roundPixels field\n *\n * @member {boolean}\n * @private\n */\n this._roundPixels = settings.ROUND_PIXELS;\n }\n\n if ( Container ) Sprite.__proto__ = Container;\n Sprite.prototype = Object.create( Container && Container.prototype );\n Sprite.prototype.constructor = Sprite;\n\n var prototypeAccessors = { roundPixels: { configurable: true },width: { configurable: true },height: { configurable: true },anchor: { configurable: true },tint: { configurable: true },texture: { configurable: true } };\n\n /**\n * When the texture is updated, this event will fire to update the scale and frame\n *\n * @private\n */\n Sprite.prototype._onTextureUpdate = function _onTextureUpdate ()\n {\n this._textureID = -1;\n this._textureTrimmedID = -1;\n this._cachedTint = 0xFFFFFF;\n\n // so if _width is 0 then width was not set..\n if (this._width)\n {\n this.scale.x = sign(this.scale.x) * this._width / this._texture.orig.width;\n }\n\n if (this._height)\n {\n this.scale.y = sign(this.scale.y) * this._height / this._texture.orig.height;\n }\n };\n\n /**\n * Called when the anchor position updates.\n *\n * @private\n */\n Sprite.prototype._onAnchorUpdate = function _onAnchorUpdate ()\n {\n this._transformID = -1;\n this._transformTrimmedID = -1;\n };\n\n /**\n * calculates worldTransform * vertices, store it in vertexData\n */\n Sprite.prototype.calculateVertices = function calculateVertices ()\n {\n var texture = this._texture;\n\n if (this._transformID === this.transform._worldID && this._textureID === texture._updateID)\n {\n return;\n }\n\n // update texture UV here, because base texture can be changed without calling `_onTextureUpdate`\n if (this._textureID !== texture._updateID)\n {\n this.uvs = this._texture._uvs.uvsFloat32;\n }\n\n this._transformID = this.transform._worldID;\n this._textureID = texture._updateID;\n\n // set the vertex data\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n var vertexData = this.vertexData;\n var trim = texture.trim;\n var orig = texture.orig;\n var anchor = this._anchor;\n\n var w0 = 0;\n var w1 = 0;\n var h0 = 0;\n var h1 = 0;\n\n if (trim)\n {\n // if the sprite is trimmed and is not a tilingsprite then we need to add the extra\n // space before transforming the sprite coords.\n w1 = trim.x - (anchor._x * orig.width);\n w0 = w1 + trim.width;\n\n h1 = trim.y - (anchor._y * orig.height);\n h0 = h1 + trim.height;\n }\n else\n {\n w1 = -anchor._x * orig.width;\n w0 = w1 + orig.width;\n\n h1 = -anchor._y * orig.height;\n h0 = h1 + orig.height;\n }\n\n // xy\n vertexData[0] = (a * w1) + (c * h1) + tx;\n vertexData[1] = (d * h1) + (b * w1) + ty;\n\n // xy\n vertexData[2] = (a * w0) + (c * h1) + tx;\n vertexData[3] = (d * h1) + (b * w0) + ty;\n\n // xy\n vertexData[4] = (a * w0) + (c * h0) + tx;\n vertexData[5] = (d * h0) + (b * w0) + ty;\n\n // xy\n vertexData[6] = (a * w1) + (c * h0) + tx;\n vertexData[7] = (d * h0) + (b * w1) + ty;\n\n if (this._roundPixels)\n {\n for (var i = 0; i < 8; i++)\n {\n vertexData[i] = Math.round(vertexData[i]);\n }\n }\n };\n\n /**\n * calculates worldTransform * vertices for a non texture with a trim. store it in vertexTrimmedData\n * This is used to ensure that the true width and height of a trimmed texture is respected\n */\n Sprite.prototype.calculateTrimmedVertices = function calculateTrimmedVertices ()\n {\n if (!this.vertexTrimmedData)\n {\n this.vertexTrimmedData = new Float32Array(8);\n }\n else if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID)\n {\n return;\n }\n\n this._transformTrimmedID = this.transform._worldID;\n this._textureTrimmedID = this._texture._updateID;\n\n // lets do some special trim code!\n var texture = this._texture;\n var vertexData = this.vertexTrimmedData;\n var orig = texture.orig;\n var anchor = this._anchor;\n\n // lets calculate the new untrimmed bounds..\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var w1 = -anchor._x * orig.width;\n var w0 = w1 + orig.width;\n\n var h1 = -anchor._y * orig.height;\n var h0 = h1 + orig.height;\n\n // xy\n vertexData[0] = (a * w1) + (c * h1) + tx;\n vertexData[1] = (d * h1) + (b * w1) + ty;\n\n // xy\n vertexData[2] = (a * w0) + (c * h1) + tx;\n vertexData[3] = (d * h1) + (b * w0) + ty;\n\n // xy\n vertexData[4] = (a * w0) + (c * h0) + tx;\n vertexData[5] = (d * h0) + (b * w0) + ty;\n\n // xy\n vertexData[6] = (a * w1) + (c * h0) + tx;\n vertexData[7] = (d * h0) + (b * w1) + ty;\n };\n\n /**\n *\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The webgl renderer to use.\n */\n Sprite.prototype._render = function _render (renderer)\n {\n this.calculateVertices();\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n renderer.plugins[this.pluginName].render(this);\n };\n\n /**\n * Updates the bounds of the sprite.\n *\n * @protected\n */\n Sprite.prototype._calculateBounds = function _calculateBounds ()\n {\n var trim = this._texture.trim;\n var orig = this._texture.orig;\n\n // First lets check to see if the current texture has a trim..\n if (!trim || (trim.width === orig.width && trim.height === orig.height))\n {\n // no trim! lets use the usual calculations..\n this.calculateVertices();\n this._bounds.addQuad(this.vertexData);\n }\n else\n {\n // lets calculate a special trimmed bounds...\n this.calculateTrimmedVertices();\n this._bounds.addQuad(this.vertexTrimmedData);\n }\n };\n\n /**\n * Gets the local bounds of the sprite object.\n *\n * @param {PIXI.Rectangle} [rect] - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n Sprite.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n // we can do a fast local bounds if the sprite has no children!\n if (this.children.length === 0)\n {\n this._bounds.minX = this._texture.orig.width * -this._anchor._x;\n this._bounds.minY = this._texture.orig.height * -this._anchor._y;\n this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x);\n this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y);\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n }\n\n return Container.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * Tests if a point is inside this sprite\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */\n Sprite.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, tempPoint);\n\n var width = this._texture.orig.width;\n var height = this._texture.orig.height;\n var x1 = -width * this.anchor.x;\n var y1 = 0;\n\n if (tempPoint.x >= x1 && tempPoint.x < x1 + width)\n {\n y1 = -height * this.anchor.y;\n\n if (tempPoint.y >= y1 && tempPoint.y < y1 + height)\n {\n return true;\n }\n }\n\n return false;\n };\n\n /**\n * Destroys this sprite and optionally its texture and children\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well\n */\n Sprite.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this._texture.off('update', this._onTextureUpdate, this);\n\n this._anchor = null;\n\n var destroyTexture = typeof options === 'boolean' ? options : options && options.texture;\n\n if (destroyTexture)\n {\n var destroyBaseTexture = typeof options === 'boolean' ? options : options && options.baseTexture;\n\n this._texture.destroy(!!destroyBaseTexture);\n }\n\n this._texture = null;\n this.shader = null;\n };\n\n // some helper functions..\n\n /**\n * Helper function that creates a new sprite based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source Source to create texture from\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Sprite} The newly created sprite\n */\n Sprite.from = function from (source, options)\n {\n var texture = (source instanceof Texture)\n ? source\n : Texture.from(source, options);\n\n return new Sprite(texture);\n };\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n prototypeAccessors.roundPixels.set = function (value)\n {\n if (this._roundPixels !== value)\n {\n this._transformID = -1;\n }\n this._roundPixels = value;\n };\n\n prototypeAccessors.roundPixels.get = function ()\n {\n return this._roundPixels;\n };\n\n /**\n * The width of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return Math.abs(this.scale.x) * this._texture.orig.width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n var s = sign(this.scale.x) || 1;\n\n this.scale.x = s * value / this._texture.orig.width;\n this._width = value;\n };\n\n /**\n * The height of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return Math.abs(this.scale.y) * this._texture.orig.height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n var s = sign(this.scale.y) || 1;\n\n this.scale.y = s * value / this._texture.orig.height;\n this._height = value;\n };\n\n /**\n * The anchor sets the origin point of the text. The default value is taken from the {@link PIXI.Texture|Texture}\n * and passed to the constructor.\n *\n * The default is `(0,0)`, this means the text's origin is the top left.\n *\n * Setting the anchor to `(0.5,0.5)` means the text's origin is centered.\n *\n * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner.\n *\n * If you pass only single parameter, it will set both x and y to the same value as shown in the example below.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.anchor.set(0.5); // This will set the origin to center. (0.5) is same as (0.5, 0.5).\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.anchor.get = function ()\n {\n return this._anchor;\n };\n\n prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._anchor.copyFrom(value);\n };\n\n /**\n * The tint applied to the sprite. This is a hex value.\n * A value of 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._tint = value;\n this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16);\n };\n\n /**\n * The texture that the sprite is using\n *\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this._texture;\n };\n\n prototypeAccessors.texture.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._texture === value)\n {\n return;\n }\n\n this._texture = value || Texture.EMPTY;\n this._cachedTint = 0xFFFFFF;\n\n this._textureID = -1;\n this._textureTrimmedID = -1;\n\n if (value)\n {\n // wait for the texture to load\n if (value.baseTexture.valid)\n {\n this._onTextureUpdate();\n }\n else\n {\n value.once('update', this._onTextureUpdate, this);\n }\n }\n };\n\n Object.defineProperties( Sprite.prototype, prototypeAccessors );\n\n return Sprite;\n}(Container));\n\nexport { Sprite };\n//# sourceMappingURL=sprite.es.js.map\n","/*!\n * @pixi/text - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/text is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Sprite } from '@pixi/sprite';\nimport { Texture } from '@pixi/core';\nimport { settings } from '@pixi/settings';\nimport { Rectangle } from '@pixi/math';\nimport { hex2string, hex2rgb, string2hex, trimCanvas, sign } from '@pixi/utils';\n\n/**\n * Constants that define the type of gradient on text.\n *\n * @static\n * @constant\n * @name TEXT_GRADIENT\n * @memberof PIXI\n * @type {object}\n * @property {number} LINEAR_VERTICAL Vertical gradient\n * @property {number} LINEAR_HORIZONTAL Linear gradient\n */\nvar TEXT_GRADIENT = {\n LINEAR_VERTICAL: 0,\n LINEAR_HORIZONTAL: 1,\n};\n\n// disabling eslint for now, going to rewrite this in v5\n\nvar defaultStyle = {\n align: 'left',\n breakWords: false,\n dropShadow: false,\n dropShadowAlpha: 1,\n dropShadowAngle: Math.PI / 6,\n dropShadowBlur: 0,\n dropShadowColor: 'black',\n dropShadowDistance: 5,\n fill: 'black',\n fillGradientType: TEXT_GRADIENT.LINEAR_VERTICAL,\n fillGradientStops: [],\n fontFamily: 'Arial',\n fontSize: 26,\n fontStyle: 'normal',\n fontVariant: 'normal',\n fontWeight: 'normal',\n letterSpacing: 0,\n lineHeight: 0,\n lineJoin: 'miter',\n miterLimit: 10,\n padding: 0,\n stroke: 'black',\n strokeThickness: 0,\n textBaseline: 'alphabetic',\n trim: false,\n whiteSpace: 'pre',\n wordWrap: false,\n wordWrapWidth: 100,\n leading: 0,\n};\n\nvar genericFontFamilies = [\n 'serif',\n 'sans-serif',\n 'monospace',\n 'cursive',\n 'fantasy',\n 'system-ui' ];\n\n/**\n * A TextStyle Object contains information to decorate a Text objects.\n *\n * An instance can be shared between multiple Text objects; then changing the style will update all text objects using it.\n *\n * A tool can be used to generate a text style [here](https://pixijs.io/pixi-text-style).\n *\n * @class\n * @memberof PIXI\n */\nvar TextStyle = function TextStyle(style)\n{\n this.styleID = 0;\n\n this.reset();\n\n deepCopyProperties(this, style, style);\n};\n\nvar prototypeAccessors = { align: { configurable: true },breakWords: { configurable: true },dropShadow: { configurable: true },dropShadowAlpha: { configurable: true },dropShadowAngle: { configurable: true },dropShadowBlur: { configurable: true },dropShadowColor: { configurable: true },dropShadowDistance: { configurable: true },fill: { configurable: true },fillGradientType: { configurable: true },fillGradientStops: { configurable: true },fontFamily: { configurable: true },fontSize: { configurable: true },fontStyle: { configurable: true },fontVariant: { configurable: true },fontWeight: { configurable: true },letterSpacing: { configurable: true },lineHeight: { configurable: true },leading: { configurable: true },lineJoin: { configurable: true },miterLimit: { configurable: true },padding: { configurable: true },stroke: { configurable: true },strokeThickness: { configurable: true },textBaseline: { configurable: true },trim: { configurable: true },whiteSpace: { configurable: true },wordWrap: { configurable: true },wordWrapWidth: { configurable: true } };\n\n/**\n * Creates a new TextStyle object with the same values as this one.\n * Note that the only the properties of the object are cloned.\n *\n * @return {PIXI.TextStyle} New cloned TextStyle object\n */\nTextStyle.prototype.clone = function clone ()\n{\n var clonedProperties = {};\n\n deepCopyProperties(clonedProperties, this, defaultStyle);\n\n return new TextStyle(clonedProperties);\n};\n\n/**\n * Resets all properties to the defaults specified in TextStyle.prototype._default\n */\nTextStyle.prototype.reset = function reset ()\n{\n deepCopyProperties(this, defaultStyle, defaultStyle);\n};\n\n/**\n * Alignment for multiline text ('left', 'center' or 'right'), does not affect single line text\n *\n * @member {string}\n */\nprototypeAccessors.align.get = function ()\n{\n return this._align;\n};\nprototypeAccessors.align.set = function (align) // eslint-disable-line require-jsdoc\n{\n if (this._align !== align)\n {\n this._align = align;\n this.styleID++;\n }\n};\n\n/**\n * Indicates if lines can be wrapped within words, it needs wordWrap to be set to true\n *\n * @member {boolean}\n */\nprototypeAccessors.breakWords.get = function ()\n{\n return this._breakWords;\n};\nprototypeAccessors.breakWords.set = function (breakWords) // eslint-disable-line require-jsdoc\n{\n if (this._breakWords !== breakWords)\n {\n this._breakWords = breakWords;\n this.styleID++;\n }\n};\n\n/**\n * Set a drop shadow for the text\n *\n * @member {boolean}\n */\nprototypeAccessors.dropShadow.get = function ()\n{\n return this._dropShadow;\n};\nprototypeAccessors.dropShadow.set = function (dropShadow) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadow !== dropShadow)\n {\n this._dropShadow = dropShadow;\n this.styleID++;\n }\n};\n\n/**\n * Set alpha for the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowAlpha.get = function ()\n{\n return this._dropShadowAlpha;\n};\nprototypeAccessors.dropShadowAlpha.set = function (dropShadowAlpha) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowAlpha !== dropShadowAlpha)\n {\n this._dropShadowAlpha = dropShadowAlpha;\n this.styleID++;\n }\n};\n\n/**\n * Set a angle of the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowAngle.get = function ()\n{\n return this._dropShadowAngle;\n};\nprototypeAccessors.dropShadowAngle.set = function (dropShadowAngle) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowAngle !== dropShadowAngle)\n {\n this._dropShadowAngle = dropShadowAngle;\n this.styleID++;\n }\n};\n\n/**\n * Set a shadow blur radius\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowBlur.get = function ()\n{\n return this._dropShadowBlur;\n};\nprototypeAccessors.dropShadowBlur.set = function (dropShadowBlur) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowBlur !== dropShadowBlur)\n {\n this._dropShadowBlur = dropShadowBlur;\n this.styleID++;\n }\n};\n\n/**\n * A fill style to be used on the dropshadow e.g 'red', '#00FF00'\n *\n * @member {string|number}\n */\nprototypeAccessors.dropShadowColor.get = function ()\n{\n return this._dropShadowColor;\n};\nprototypeAccessors.dropShadowColor.set = function (dropShadowColor) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(dropShadowColor);\n if (this._dropShadowColor !== outputColor)\n {\n this._dropShadowColor = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * Set a distance of the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowDistance.get = function ()\n{\n return this._dropShadowDistance;\n};\nprototypeAccessors.dropShadowDistance.set = function (dropShadowDistance) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowDistance !== dropShadowDistance)\n {\n this._dropShadowDistance = dropShadowDistance;\n this.styleID++;\n }\n};\n\n/**\n * A canvas fillstyle that will be used on the text e.g 'red', '#00FF00'.\n * Can be an array to create a gradient eg ['#000000','#FFFFFF']\n * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle|MDN}\n *\n * @member {string|string[]|number|number[]|CanvasGradient|CanvasPattern}\n */\nprototypeAccessors.fill.get = function ()\n{\n return this._fill;\n};\nprototypeAccessors.fill.set = function (fill) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(fill);\n if (this._fill !== outputColor)\n {\n this._fill = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * If fill is an array of colours to create a gradient, this can change the type/direction of the gradient.\n * See {@link PIXI.TEXT_GRADIENT}\n *\n * @member {number}\n */\nprototypeAccessors.fillGradientType.get = function ()\n{\n return this._fillGradientType;\n};\nprototypeAccessors.fillGradientType.set = function (fillGradientType) // eslint-disable-line require-jsdoc\n{\n if (this._fillGradientType !== fillGradientType)\n {\n this._fillGradientType = fillGradientType;\n this.styleID++;\n }\n};\n\n/**\n * If fill is an array of colours to create a gradient, this array can set the stop points\n * (numbers between 0 and 1) for the color, overriding the default behaviour of evenly spacing them.\n *\n * @member {number[]}\n */\nprototypeAccessors.fillGradientStops.get = function ()\n{\n return this._fillGradientStops;\n};\nprototypeAccessors.fillGradientStops.set = function (fillGradientStops) // eslint-disable-line require-jsdoc\n{\n if (!areArraysEqual(this._fillGradientStops,fillGradientStops))\n {\n this._fillGradientStops = fillGradientStops;\n this.styleID++;\n }\n};\n\n/**\n * The font family\n *\n * @member {string|string[]}\n */\nprototypeAccessors.fontFamily.get = function ()\n{\n return this._fontFamily;\n};\nprototypeAccessors.fontFamily.set = function (fontFamily) // eslint-disable-line require-jsdoc\n{\n if (this.fontFamily !== fontFamily)\n {\n this._fontFamily = fontFamily;\n this.styleID++;\n }\n};\n\n/**\n * The font size\n * (as a number it converts to px, but as a string, equivalents are '26px','20pt','160%' or '1.6em')\n *\n * @member {number|string}\n */\nprototypeAccessors.fontSize.get = function ()\n{\n return this._fontSize;\n};\nprototypeAccessors.fontSize.set = function (fontSize) // eslint-disable-line require-jsdoc\n{\n if (this._fontSize !== fontSize)\n {\n this._fontSize = fontSize;\n this.styleID++;\n }\n};\n\n/**\n * The font style\n * ('normal', 'italic' or 'oblique')\n *\n * @member {string}\n */\nprototypeAccessors.fontStyle.get = function ()\n{\n return this._fontStyle;\n};\nprototypeAccessors.fontStyle.set = function (fontStyle) // eslint-disable-line require-jsdoc\n{\n if (this._fontStyle !== fontStyle)\n {\n this._fontStyle = fontStyle;\n this.styleID++;\n }\n};\n\n/**\n * The font variant\n * ('normal' or 'small-caps')\n *\n * @member {string}\n */\nprototypeAccessors.fontVariant.get = function ()\n{\n return this._fontVariant;\n};\nprototypeAccessors.fontVariant.set = function (fontVariant) // eslint-disable-line require-jsdoc\n{\n if (this._fontVariant !== fontVariant)\n {\n this._fontVariant = fontVariant;\n this.styleID++;\n }\n};\n\n/**\n * The font weight\n * ('normal', 'bold', 'bolder', 'lighter' and '100', '200', '300', '400', '500', '600', '700', 800' or '900')\n *\n * @member {string}\n */\nprototypeAccessors.fontWeight.get = function ()\n{\n return this._fontWeight;\n};\nprototypeAccessors.fontWeight.set = function (fontWeight) // eslint-disable-line require-jsdoc\n{\n if (this._fontWeight !== fontWeight)\n {\n this._fontWeight = fontWeight;\n this.styleID++;\n }\n};\n\n/**\n * The amount of spacing between letters, default is 0\n *\n * @member {number}\n */\nprototypeAccessors.letterSpacing.get = function ()\n{\n return this._letterSpacing;\n};\nprototypeAccessors.letterSpacing.set = function (letterSpacing) // eslint-disable-line require-jsdoc\n{\n if (this._letterSpacing !== letterSpacing)\n {\n this._letterSpacing = letterSpacing;\n this.styleID++;\n }\n};\n\n/**\n * The line height, a number that represents the vertical space that a letter uses\n *\n * @member {number}\n */\nprototypeAccessors.lineHeight.get = function ()\n{\n return this._lineHeight;\n};\nprototypeAccessors.lineHeight.set = function (lineHeight) // eslint-disable-line require-jsdoc\n{\n if (this._lineHeight !== lineHeight)\n {\n this._lineHeight = lineHeight;\n this.styleID++;\n }\n};\n\n/**\n * The space between lines\n *\n * @member {number}\n */\nprototypeAccessors.leading.get = function ()\n{\n return this._leading;\n};\nprototypeAccessors.leading.set = function (leading) // eslint-disable-line require-jsdoc\n{\n if (this._leading !== leading)\n {\n this._leading = leading;\n this.styleID++;\n }\n};\n\n/**\n * The lineJoin property sets the type of corner created, it can resolve spiked text issues.\n * Default is 'miter' (creates a sharp corner).\n *\n * @member {string}\n */\nprototypeAccessors.lineJoin.get = function ()\n{\n return this._lineJoin;\n};\nprototypeAccessors.lineJoin.set = function (lineJoin) // eslint-disable-line require-jsdoc\n{\n if (this._lineJoin !== lineJoin)\n {\n this._lineJoin = lineJoin;\n this.styleID++;\n }\n};\n\n/**\n * The miter limit to use when using the 'miter' lineJoin mode\n * This can reduce or increase the spikiness of rendered text.\n *\n * @member {number}\n */\nprototypeAccessors.miterLimit.get = function ()\n{\n return this._miterLimit;\n};\nprototypeAccessors.miterLimit.set = function (miterLimit) // eslint-disable-line require-jsdoc\n{\n if (this._miterLimit !== miterLimit)\n {\n this._miterLimit = miterLimit;\n this.styleID++;\n }\n};\n\n/**\n * Occasionally some fonts are cropped. Adding some padding will prevent this from happening\n * by adding padding to all sides of the text.\n *\n * @member {number}\n */\nprototypeAccessors.padding.get = function ()\n{\n return this._padding;\n};\nprototypeAccessors.padding.set = function (padding) // eslint-disable-line require-jsdoc\n{\n if (this._padding !== padding)\n {\n this._padding = padding;\n this.styleID++;\n }\n};\n\n/**\n * A canvas fillstyle that will be used on the text stroke\n * e.g 'blue', '#FCFF00'\n *\n * @member {string|number}\n */\nprototypeAccessors.stroke.get = function ()\n{\n return this._stroke;\n};\nprototypeAccessors.stroke.set = function (stroke) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(stroke);\n if (this._stroke !== outputColor)\n {\n this._stroke = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * A number that represents the thickness of the stroke.\n * Default is 0 (no stroke)\n *\n * @member {number}\n */\nprototypeAccessors.strokeThickness.get = function ()\n{\n return this._strokeThickness;\n};\nprototypeAccessors.strokeThickness.set = function (strokeThickness) // eslint-disable-line require-jsdoc\n{\n if (this._strokeThickness !== strokeThickness)\n {\n this._strokeThickness = strokeThickness;\n this.styleID++;\n }\n};\n\n/**\n * The baseline of the text that is rendered.\n *\n * @member {string}\n */\nprototypeAccessors.textBaseline.get = function ()\n{\n return this._textBaseline;\n};\nprototypeAccessors.textBaseline.set = function (textBaseline) // eslint-disable-line require-jsdoc\n{\n if (this._textBaseline !== textBaseline)\n {\n this._textBaseline = textBaseline;\n this.styleID++;\n }\n};\n\n/**\n * Trim transparent borders\n *\n * @member {boolean}\n */\nprototypeAccessors.trim.get = function ()\n{\n return this._trim;\n};\nprototypeAccessors.trim.set = function (trim) // eslint-disable-line require-jsdoc\n{\n if (this._trim !== trim)\n {\n this._trim = trim;\n this.styleID++;\n }\n};\n\n/**\n * How newlines and spaces should be handled.\n * Default is 'pre' (preserve, preserve).\n *\n * value | New lines | Spaces\n * --- | --- | ---\n * 'normal' | Collapse | Collapse\n * 'pre' | Preserve | Preserve\n * 'pre-line' | Preserve | Collapse\n *\n * @member {string}\n */\nprototypeAccessors.whiteSpace.get = function ()\n{\n return this._whiteSpace;\n};\nprototypeAccessors.whiteSpace.set = function (whiteSpace) // eslint-disable-line require-jsdoc\n{\n if (this._whiteSpace !== whiteSpace)\n {\n this._whiteSpace = whiteSpace;\n this.styleID++;\n }\n};\n\n/**\n * Indicates if word wrap should be used\n *\n * @member {boolean}\n */\nprototypeAccessors.wordWrap.get = function ()\n{\n return this._wordWrap;\n};\nprototypeAccessors.wordWrap.set = function (wordWrap) // eslint-disable-line require-jsdoc\n{\n if (this._wordWrap !== wordWrap)\n {\n this._wordWrap = wordWrap;\n this.styleID++;\n }\n};\n\n/**\n * The width at which text will wrap, it needs wordWrap to be set to true\n *\n * @member {number}\n */\nprototypeAccessors.wordWrapWidth.get = function ()\n{\n return this._wordWrapWidth;\n};\nprototypeAccessors.wordWrapWidth.set = function (wordWrapWidth) // eslint-disable-line require-jsdoc\n{\n if (this._wordWrapWidth !== wordWrapWidth)\n {\n this._wordWrapWidth = wordWrapWidth;\n this.styleID++;\n }\n};\n\n/**\n * Generates a font style string to use for `TextMetrics.measureFont()`.\n *\n * @return {string} Font style string, for passing to `TextMetrics.measureFont()`\n */\nTextStyle.prototype.toFontString = function toFontString ()\n{\n // build canvas api font setting from individual components. Convert a numeric this.fontSize to px\n var fontSizeString = (typeof this.fontSize === 'number') ? ((this.fontSize) + \"px\") : this.fontSize;\n\n // Clean-up fontFamily property by quoting each font name\n // this will support font names with spaces\n var fontFamilies = this.fontFamily;\n\n if (!Array.isArray(this.fontFamily))\n {\n fontFamilies = this.fontFamily.split(',');\n }\n\n for (var i = fontFamilies.length - 1; i >= 0; i--)\n {\n // Trim any extra white-space\n var fontFamily = fontFamilies[i].trim();\n\n // Check if font already contains strings\n if (!(/([\\\"\\'])[^\\'\\\"]+\\1/).test(fontFamily) && genericFontFamilies.indexOf(fontFamily) < 0)\n {\n fontFamily = \"\\\"\" + fontFamily + \"\\\"\";\n }\n fontFamilies[i] = fontFamily;\n }\n\n return ((this.fontStyle) + \" \" + (this.fontVariant) + \" \" + (this.fontWeight) + \" \" + fontSizeString + \" \" + (fontFamilies.join(',')));\n};\n\nObject.defineProperties( TextStyle.prototype, prototypeAccessors );\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * @private\n * @param {number|number[]} color\n * @return {string} The color as a string.\n */\nfunction getSingleColor(color)\n{\n if (typeof color === 'number')\n {\n return hex2string(color);\n }\n else if ( typeof color === 'string' )\n {\n if ( color.indexOf('0x') === 0 )\n {\n color = color.replace('0x', '#');\n }\n }\n\n return color;\n}\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * This version can also convert array of colors\n * @private\n * @param {number|number[]} color\n * @return {string} The color as a string.\n */\nfunction getColor(color)\n{\n if (!Array.isArray(color))\n {\n return getSingleColor(color);\n }\n else\n {\n for (var i = 0; i < color.length; ++i)\n {\n color[i] = getSingleColor(color[i]);\n }\n\n return color;\n }\n}\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * This version can also convert array of colors\n * @private\n * @param {Array} array1 First array to compare\n * @param {Array} array2 Second array to compare\n * @return {boolean} Do the arrays contain the same values in the same order\n */\nfunction areArraysEqual(array1, array2)\n{\n if (!Array.isArray(array1) || !Array.isArray(array2))\n {\n return false;\n }\n\n if (array1.length !== array2.length)\n {\n return false;\n }\n\n for (var i = 0; i < array1.length; ++i)\n {\n if (array1[i] !== array2[i])\n {\n return false;\n }\n }\n\n return true;\n}\n\n/**\n * Utility function to ensure that object properties are copied by value, and not by reference\n * @private\n * @param {Object} target Target object to copy properties into\n * @param {Object} source Source object for the properties to copy\n * @param {string} propertyObj Object containing properties names we want to loop over\n */\nfunction deepCopyProperties(target, source, propertyObj) {\n for (var prop in propertyObj) {\n if (Array.isArray(source[prop])) {\n target[prop] = source[prop].slice();\n } else {\n target[prop] = source[prop];\n }\n }\n}\n\n/**\n * The TextMetrics object represents the measurement of a block of text with a specified style.\n *\n * ```js\n * let style = new PIXI.TextStyle({fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'})\n * let textMetrics = PIXI.TextMetrics.measureText('Your text', style)\n * ```\n *\n * @class\n * @memberof PIXI\n */\nvar TextMetrics = function TextMetrics(text, style, width, height, lines, lineWidths, lineHeight, maxLineWidth, fontProperties)\n{\n /**\n * The text that was measured\n *\n * @member {string}\n */\n this.text = text;\n\n /**\n * The style that was measured\n *\n * @member {PIXI.TextStyle}\n */\n this.style = style;\n\n /**\n * The measured width of the text\n *\n * @member {number}\n */\n this.width = width;\n\n /**\n * The measured height of the text\n *\n * @member {number}\n */\n this.height = height;\n\n /**\n * An array of lines of the text broken by new lines and wrapping is specified in style\n *\n * @member {string[]}\n */\n this.lines = lines;\n\n /**\n * An array of the line widths for each line matched to `lines`\n *\n * @member {number[]}\n */\n this.lineWidths = lineWidths;\n\n /**\n * The measured line height for this style\n *\n * @member {number}\n */\n this.lineHeight = lineHeight;\n\n /**\n * The maximum line width for all measured lines\n *\n * @member {number}\n */\n this.maxLineWidth = maxLineWidth;\n\n /**\n * The font properties object from TextMetrics.measureFont\n *\n * @member {PIXI.IFontMetrics}\n */\n this.fontProperties = fontProperties;\n};\n\n/**\n * Measures the supplied string of text and returns a Rectangle.\n *\n * @param {string} text - the text to measure.\n * @param {PIXI.TextStyle} style - the text style to use for measuring\n * @param {boolean} [wordWrap] - optional override for if word-wrap should be applied to the text.\n * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring.\n * @return {PIXI.TextMetrics} measured width and height of the text.\n */\nTextMetrics.measureText = function measureText (text, style, wordWrap, canvas)\n{\n if ( canvas === void 0 ) canvas = TextMetrics._canvas;\n\n wordWrap = (wordWrap === undefined || wordWrap === null) ? style.wordWrap : wordWrap;\n var font = style.toFontString();\n var fontProperties = TextMetrics.measureFont(font);\n\n // fallback in case UA disallow canvas data extraction\n // (toDataURI, getImageData functions)\n if (fontProperties.fontSize === 0)\n {\n fontProperties.fontSize = style.fontSize;\n fontProperties.ascent = style.fontSize;\n }\n\n var context = canvas.getContext('2d');\n\n context.font = font;\n\n var outputText = wordWrap ? TextMetrics.wordWrap(text, style, canvas) : text;\n var lines = outputText.split(/(?:\\r\\n|\\r|\\n)/);\n var lineWidths = new Array(lines.length);\n var maxLineWidth = 0;\n\n for (var i = 0; i < lines.length; i++)\n {\n var lineWidth = context.measureText(lines[i]).width + ((lines[i].length - 1) * style.letterSpacing);\n\n lineWidths[i] = lineWidth;\n maxLineWidth = Math.max(maxLineWidth, lineWidth);\n }\n var width = maxLineWidth + style.strokeThickness;\n\n if (style.dropShadow)\n {\n width += style.dropShadowDistance;\n }\n\n var lineHeight = style.lineHeight || fontProperties.fontSize + style.strokeThickness;\n var height = Math.max(lineHeight, fontProperties.fontSize + style.strokeThickness)\n + ((lines.length - 1) * (lineHeight + style.leading));\n\n if (style.dropShadow)\n {\n height += style.dropShadowDistance;\n }\n\n return new TextMetrics(\n text,\n style,\n width,\n height,\n lines,\n lineWidths,\n lineHeight + style.leading,\n maxLineWidth,\n fontProperties\n );\n};\n\n/**\n * Applies newlines to a string to have it optimally fit into the horizontal\n * bounds set by the Text object's wordWrapWidth property.\n *\n * @private\n * @param {string} text - String to apply word wrapping to\n * @param {PIXI.TextStyle} style - the style to use when wrapping\n * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring.\n * @return {string} New string with new lines applied where required\n */\nTextMetrics.wordWrap = function wordWrap (text, style, canvas)\n{\n if ( canvas === void 0 ) canvas = TextMetrics._canvas;\n\n var context = canvas.getContext('2d');\n\n var width = 0;\n var line = '';\n var lines = '';\n\n var cache = {};\n var letterSpacing = style.letterSpacing;\n var whiteSpace = style.whiteSpace;\n\n // How to handle whitespaces\n var collapseSpaces = TextMetrics.collapseSpaces(whiteSpace);\n var collapseNewlines = TextMetrics.collapseNewlines(whiteSpace);\n\n // whether or not spaces may be added to the beginning of lines\n var canPrependSpaces = !collapseSpaces;\n\n // There is letterSpacing after every char except the last one\n // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!\n // so for convenience the above needs to be compared to width + 1 extra letterSpace\n // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!_\n // ________________________________________________\n // And then the final space is simply no appended to each line\n var wordWrapWidth = style.wordWrapWidth + letterSpacing;\n\n // break text into words, spaces and newline chars\n var tokens = TextMetrics.tokenize(text);\n\n for (var i = 0; i < tokens.length; i++)\n {\n // get the word, space or newlineChar\n var token = tokens[i];\n\n // if word is a new line\n if (TextMetrics.isNewline(token))\n {\n // keep the new line\n if (!collapseNewlines)\n {\n lines += TextMetrics.addLine(line);\n canPrependSpaces = !collapseSpaces;\n line = '';\n width = 0;\n continue;\n }\n\n // if we should collapse new lines\n // we simply convert it into a space\n token = ' ';\n }\n\n // if we should collapse repeated whitespaces\n if (collapseSpaces)\n {\n // check both this and the last tokens for spaces\n var currIsBreakingSpace = TextMetrics.isBreakingSpace(token);\n var lastIsBreakingSpace = TextMetrics.isBreakingSpace(line[line.length - 1]);\n\n if (currIsBreakingSpace && lastIsBreakingSpace)\n {\n continue;\n }\n }\n\n // get word width from cache if possible\n var tokenWidth = TextMetrics.getFromCache(token, letterSpacing, cache, context);\n\n // word is longer than desired bounds\n if (tokenWidth > wordWrapWidth)\n {\n // if we are not already at the beginning of a line\n if (line !== '')\n {\n // start newlines for overflow words\n lines += TextMetrics.addLine(line);\n line = '';\n width = 0;\n }\n\n // break large word over multiple lines\n if (TextMetrics.canBreakWords(token, style.breakWords))\n {\n // break word into characters\n var characters = token.split('');\n\n // loop the characters\n for (var j = 0; j < characters.length; j++)\n {\n var char = characters[j];\n\n var k = 1;\n // we are not at the end of the token\n\n while (characters[j + k])\n {\n var nextChar = characters[j + k];\n var lastChar = char[char.length - 1];\n\n // should not split chars\n if (!TextMetrics.canBreakChars(lastChar, nextChar, token, j, style.breakWords))\n {\n // combine chars & move forward one\n char += nextChar;\n }\n else\n {\n break;\n }\n\n k++;\n }\n\n j += char.length - 1;\n\n var characterWidth = TextMetrics.getFromCache(char, letterSpacing, cache, context);\n\n if (characterWidth + width > wordWrapWidth)\n {\n lines += TextMetrics.addLine(line);\n canPrependSpaces = false;\n line = '';\n width = 0;\n }\n\n line += char;\n width += characterWidth;\n }\n }\n\n // run word out of the bounds\n else\n {\n // if there are words in this line already\n // finish that line and start a new one\n if (line.length > 0)\n {\n lines += TextMetrics.addLine(line);\n line = '';\n width = 0;\n }\n\n var isLastToken = i === tokens.length - 1;\n\n // give it its own line if it's not the end\n lines += TextMetrics.addLine(token, !isLastToken);\n canPrependSpaces = false;\n line = '';\n width = 0;\n }\n }\n\n // word could fit\n else\n {\n // word won't fit because of existing words\n // start a new line\n if (tokenWidth + width > wordWrapWidth)\n {\n // if its a space we don't want it\n canPrependSpaces = false;\n\n // add a new line\n lines += TextMetrics.addLine(line);\n\n // start a new line\n line = '';\n width = 0;\n }\n\n // don't add spaces to the beginning of lines\n if (line.length > 0 || !TextMetrics.isBreakingSpace(token) || canPrependSpaces)\n {\n // add the word to the current line\n line += token;\n\n // update width counter\n width += tokenWidth;\n }\n }\n }\n\n lines += TextMetrics.addLine(line, false);\n\n return lines;\n};\n\n/**\n * Convienience function for logging each line added during the wordWrap\n * method\n *\n * @private\n * @param {string} line - The line of text to add\n * @param {boolean} newLine - Add new line character to end\n * @return {string} A formatted line\n */\nTextMetrics.addLine = function addLine (line, newLine)\n{\n if ( newLine === void 0 ) newLine = true;\n\n line = TextMetrics.trimRight(line);\n\n line = (newLine) ? (line + \"\\n\") : line;\n\n return line;\n};\n\n/**\n * Gets & sets the widths of calculated characters in a cache object\n *\n * @private\n * @param {string} key The key\n * @param {number} letterSpacing The letter spacing\n * @param {object} cache The cache\n * @param {CanvasRenderingContext2D} context The canvas context\n * @return {number} The from cache.\n */\nTextMetrics.getFromCache = function getFromCache (key, letterSpacing, cache, context)\n{\n var width = cache[key];\n\n if (width === undefined)\n {\n var spacing = ((key.length) * letterSpacing);\n\n width = context.measureText(key).width + spacing;\n cache[key] = width;\n }\n\n return width;\n};\n\n/**\n * Determines whether we should collapse breaking spaces\n *\n * @private\n * @param {string} whiteSpace The TextStyle property whiteSpace\n * @return {boolean} should collapse\n */\nTextMetrics.collapseSpaces = function collapseSpaces (whiteSpace)\n{\n return (whiteSpace === 'normal' || whiteSpace === 'pre-line');\n};\n\n/**\n * Determines whether we should collapse newLine chars\n *\n * @private\n * @param {string} whiteSpace The white space\n * @return {boolean} should collapse\n */\nTextMetrics.collapseNewlines = function collapseNewlines (whiteSpace)\n{\n return (whiteSpace === 'normal');\n};\n\n/**\n * trims breaking whitespaces from string\n *\n * @private\n * @param {string} text The text\n * @return {string} trimmed string\n */\nTextMetrics.trimRight = function trimRight (text)\n{\n if (typeof text !== 'string')\n {\n return '';\n }\n\n for (var i = text.length - 1; i >= 0; i--)\n {\n var char = text[i];\n\n if (!TextMetrics.isBreakingSpace(char))\n {\n break;\n }\n\n text = text.slice(0, -1);\n }\n\n return text;\n};\n\n/**\n * Determines if char is a newline.\n *\n * @private\n * @param {string} char The character\n * @return {boolean} True if newline, False otherwise.\n */\nTextMetrics.isNewline = function isNewline (char)\n{\n if (typeof char !== 'string')\n {\n return false;\n }\n\n return (TextMetrics._newlines.indexOf(char.charCodeAt(0)) >= 0);\n};\n\n/**\n * Determines if char is a breaking whitespace.\n *\n * @private\n * @param {string} char The character\n * @return {boolean} True if whitespace, False otherwise.\n */\nTextMetrics.isBreakingSpace = function isBreakingSpace (char)\n{\n if (typeof char !== 'string')\n {\n return false;\n }\n\n return (TextMetrics._breakingSpaces.indexOf(char.charCodeAt(0)) >= 0);\n};\n\n/**\n * Splits a string into words, breaking-spaces and newLine characters\n *\n * @private\n * @param {string} text The text\n * @return {string[]} A tokenized array\n */\nTextMetrics.tokenize = function tokenize (text)\n{\n var tokens = [];\n var token = '';\n\n if (typeof text !== 'string')\n {\n return tokens;\n }\n\n for (var i = 0; i < text.length; i++)\n {\n var char = text[i];\n\n if (TextMetrics.isBreakingSpace(char) || TextMetrics.isNewline(char))\n {\n if (token !== '')\n {\n tokens.push(token);\n token = '';\n }\n\n tokens.push(char);\n\n continue;\n }\n\n token += char;\n }\n\n if (token !== '')\n {\n tokens.push(token);\n }\n\n return tokens;\n};\n\n/**\n * This method exists to be easily overridden\n * It allows one to customise which words should break\n * Examples are if the token is CJK or numbers.\n * It must return a boolean.\n *\n * @private\n * @param {string} token The token\n * @param {boolean} breakWords The style attr break words\n * @return {boolean} whether to break word or not\n */\nTextMetrics.canBreakWords = function canBreakWords (token, breakWords)\n{\n return breakWords;\n};\n\n/**\n * This method exists to be easily overridden\n * It allows one to determine whether a pair of characters\n * should be broken by newlines\n * For example certain characters in CJK langs or numbers.\n * It must return a boolean.\n *\n * @private\n * @param {string} char The character\n * @param {string} nextChar The next character\n * @param {string} token The token/word the characters are from\n * @param {number} index The index in the token of the char\n * @param {boolean} breakWords The style attr break words\n * @return {boolean} whether to break word or not\n */\nTextMetrics.canBreakChars = function canBreakChars (char, nextChar, token, index, breakWords) // eslint-disable-line no-unused-vars\n{\n return true;\n};\n\n/**\n * Calculates the ascent, descent and fontSize of a given font-style\n *\n * @static\n * @param {string} font - String representing the style of the font\n * @return {PIXI.IFontMetrics} Font properties object\n */\nTextMetrics.measureFont = function measureFont (font)\n{\n // as this method is used for preparing assets, don't recalculate things if we don't need to\n if (TextMetrics._fonts[font])\n {\n return TextMetrics._fonts[font];\n }\n\n var properties = {};\n\n var canvas = TextMetrics._canvas;\n var context = TextMetrics._context;\n\n context.font = font;\n\n var metricsString = TextMetrics.METRICS_STRING + TextMetrics.BASELINE_SYMBOL;\n var width = Math.ceil(context.measureText(metricsString).width);\n var baseline = Math.ceil(context.measureText(TextMetrics.BASELINE_SYMBOL).width);\n var height = 2 * baseline;\n\n baseline = baseline * TextMetrics.BASELINE_MULTIPLIER | 0;\n\n canvas.width = width;\n canvas.height = height;\n\n context.fillStyle = '#f00';\n context.fillRect(0, 0, width, height);\n\n context.font = font;\n\n context.textBaseline = 'alphabetic';\n context.fillStyle = '#000';\n context.fillText(metricsString, 0, baseline);\n\n var imagedata = context.getImageData(0, 0, width, height).data;\n var pixels = imagedata.length;\n var line = width * 4;\n\n var i = 0;\n var idx = 0;\n var stop = false;\n\n // ascent. scan from top to bottom until we find a non red pixel\n for (i = 0; i < baseline; ++i)\n {\n for (var j = 0; j < line; j += 4)\n {\n if (imagedata[idx + j] !== 255)\n {\n stop = true;\n break;\n }\n }\n if (!stop)\n {\n idx += line;\n }\n else\n {\n break;\n }\n }\n\n properties.ascent = baseline - i;\n\n idx = pixels - line;\n stop = false;\n\n // descent. scan from bottom to top until we find a non red pixel\n for (i = height; i > baseline; --i)\n {\n for (var j$1 = 0; j$1 < line; j$1 += 4)\n {\n if (imagedata[idx + j$1] !== 255)\n {\n stop = true;\n break;\n }\n }\n\n if (!stop)\n {\n idx -= line;\n }\n else\n {\n break;\n }\n }\n\n properties.descent = i - baseline;\n properties.fontSize = properties.ascent + properties.descent;\n\n TextMetrics._fonts[font] = properties;\n\n return properties;\n};\n\n/**\n * Clear font metrics in metrics cache.\n *\n * @static\n * @param {string} [font] - font name. If font name not set then clear cache for all fonts.\n */\nTextMetrics.clearMetrics = function clearMetrics (font)\n{\n if ( font === void 0 ) font = '';\n\n if (font)\n {\n delete TextMetrics._fonts[font];\n }\n else\n {\n TextMetrics._fonts = {};\n }\n};\n\n/**\n * Internal return object for {@link PIXI.TextMetrics.measureFont `TextMetrics.measureFont`}.\n *\n * @typedef {object} FontMetrics\n * @property {number} ascent - The ascent distance\n * @property {number} descent - The descent distance\n * @property {number} fontSize - Font size from ascent to descent\n * @memberof PIXI.TextMetrics\n * @private\n */\n\nvar canvas = (function () {\n try\n {\n // OffscreenCanvas2D measureText can be up to 40% faster.\n var c = new OffscreenCanvas(0, 0);\n\n return c.getContext('2d') ? c : document.createElement('canvas');\n }\n catch (ex)\n {\n return document.createElement('canvas');\n }\n})();\n\ncanvas.width = canvas.height = 10;\n\n/**\n * Cached canvas element for measuring text\n *\n * @memberof PIXI.TextMetrics\n * @type {HTMLCanvasElement}\n * @private\n */\nTextMetrics._canvas = canvas;\n\n/**\n * Cache for context to use.\n *\n * @memberof PIXI.TextMetrics\n * @type {CanvasRenderingContext2D}\n * @private\n */\nTextMetrics._context = canvas.getContext('2d');\n\n/**\n * Cache of {@see PIXI.TextMetrics.FontMetrics} objects.\n *\n * @memberof PIXI.TextMetrics\n * @type {Object}\n * @private\n */\nTextMetrics._fonts = {};\n\n/**\n * String used for calculate font metrics.\n * These characters are all tall to help calculate the height required for text.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name METRICS_STRING\n * @type {string}\n * @default |ÉqÅ\n */\nTextMetrics.METRICS_STRING = '|ÉqÅ';\n\n/**\n * Baseline symbol for calculate font metrics.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name BASELINE_SYMBOL\n * @type {string}\n * @default M\n */\nTextMetrics.BASELINE_SYMBOL = 'M';\n\n/**\n * Baseline multiplier for calculate font metrics.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name BASELINE_MULTIPLIER\n * @type {number}\n * @default 1.4\n */\nTextMetrics.BASELINE_MULTIPLIER = 1.4;\n\n/**\n * Cache of new line chars.\n *\n * @memberof PIXI.TextMetrics\n * @type {number[]}\n * @private\n */\nTextMetrics._newlines = [\n 0x000A, // line feed\n 0x000D ];\n\n/**\n * Cache of breaking spaces.\n *\n * @memberof PIXI.TextMetrics\n * @type {number[]}\n * @private\n */\nTextMetrics._breakingSpaces = [\n 0x0009, // character tabulation\n 0x0020, // space\n 0x2000, // en quad\n 0x2001, // em quad\n 0x2002, // en space\n 0x2003, // em space\n 0x2004, // three-per-em space\n 0x2005, // four-per-em space\n 0x2006, // six-per-em space\n 0x2008, // punctuation space\n 0x2009, // thin space\n 0x200A, // hair space\n 0x205F, // medium mathematical space\n 0x3000 ];\n\n/**\n * A number, or a string containing a number.\n *\n * @memberof PIXI\n * @typedef IFontMetrics\n * @property {number} ascent - Font ascent\n * @property {number} descent - Font descent\n * @property {number} fontSize - Font size\n */\n\n/* eslint max-depth: [2, 8] */\n\nvar defaultDestroyOptions = {\n texture: true,\n children: false,\n baseTexture: true,\n};\n\n/**\n * A Text Object will create a line or multiple lines of text.\n *\n * The text is created using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API).\n *\n * The primary advantage of this class over BitmapText is that you have great control over the style of the next,\n * which you can change at runtime.\n *\n * The primary disadvantages is that each piece of text has it's own texture, which can use more memory.\n * When text changes, this texture has to be re-generated and re-uploaded to the GPU, taking up time.\n *\n * To split a line you can use '\\n' in your text string, or, on the `style` object,\n * change its `wordWrap` property to true and and give the `wordWrapWidth` property a value.\n *\n * A Text can be created directly from a string and a style object,\n * which can be generated [here](https://pixijs.io/pixi-text-style).\n *\n * ```js\n * let text = new PIXI.Text('This is a PixiJS text',{fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'});\n * ```\n *\n * @class\n * @extends PIXI.Sprite\n * @memberof PIXI\n */\nvar Text = /*@__PURE__*/(function (Sprite) {\n function Text(text, style, canvas)\n {\n canvas = canvas || document.createElement('canvas');\n\n canvas.width = 3;\n canvas.height = 3;\n\n var texture = Texture.from(canvas);\n\n texture.orig = new Rectangle();\n texture.trim = new Rectangle();\n\n Sprite.call(this, texture);\n\n /**\n * The canvas element that everything is drawn to\n *\n * @member {HTMLCanvasElement}\n */\n this.canvas = canvas;\n\n /**\n * The canvas 2d context that everything is drawn with\n * @member {CanvasRenderingContext2D}\n */\n this.context = this.canvas.getContext('2d');\n\n /**\n * The resolution / device pixel ratio of the canvas.\n * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually.\n * @member {number}\n * @default 1\n */\n this._resolution = settings.RESOLUTION;\n this._autoResolution = true;\n\n /**\n * Private tracker for the current text.\n *\n * @member {string}\n * @private\n */\n this._text = null;\n\n /**\n * Private tracker for the current style.\n *\n * @member {object}\n * @private\n */\n this._style = null;\n /**\n * Private listener to track style changes.\n *\n * @member {Function}\n * @private\n */\n this._styleListener = null;\n\n /**\n * Private tracker for the current font.\n *\n * @member {string}\n * @private\n */\n this._font = '';\n\n this.text = text;\n this.style = style;\n\n this.localStyleID = -1;\n }\n\n if ( Sprite ) Text.__proto__ = Sprite;\n Text.prototype = Object.create( Sprite && Sprite.prototype );\n Text.prototype.constructor = Text;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true },style: { configurable: true },text: { configurable: true },resolution: { configurable: true } };\n\n /**\n * Renders text and updates it when needed.\n *\n * @private\n * @param {boolean} respectDirty - Whether to abort updating the text if the Text isn't dirty and the function is called.\n */\n Text.prototype.updateText = function updateText (respectDirty)\n {\n var style = this._style;\n\n // check if style has changed..\n if (this.localStyleID !== style.styleID)\n {\n this.dirty = true;\n this.localStyleID = style.styleID;\n }\n\n if (!this.dirty && respectDirty)\n {\n return;\n }\n\n this._font = this._style.toFontString();\n\n var context = this.context;\n var measured = TextMetrics.measureText(this._text || ' ', this._style, this._style.wordWrap, this.canvas);\n var width = measured.width;\n var height = measured.height;\n var lines = measured.lines;\n var lineHeight = measured.lineHeight;\n var lineWidths = measured.lineWidths;\n var maxLineWidth = measured.maxLineWidth;\n var fontProperties = measured.fontProperties;\n\n this.canvas.width = Math.ceil((Math.max(1, width) + (style.padding * 2)) * this._resolution);\n this.canvas.height = Math.ceil((Math.max(1, height) + (style.padding * 2)) * this._resolution);\n\n context.scale(this._resolution, this._resolution);\n\n context.clearRect(0, 0, this.canvas.width, this.canvas.height);\n\n context.font = this._font;\n context.lineWidth = style.strokeThickness;\n context.textBaseline = style.textBaseline;\n context.lineJoin = style.lineJoin;\n context.miterLimit = style.miterLimit;\n\n var linePositionX;\n var linePositionY;\n\n // require 2 passes if a shadow; the first to draw the drop shadow, the second to draw the text\n var passesCount = style.dropShadow ? 2 : 1;\n\n // For v4, we drew text at the colours of the drop shadow underneath the normal text. This gave the correct zIndex,\n // but features such as alpha and shadowblur did not look right at all, since we were using actual text as a shadow.\n //\n // For v5.0.0, we moved over to just use the canvas API for drop shadows, which made them look much nicer and more\n // visually please, but now because the stroke is drawn and then the fill, drop shadows would appear on both the fill\n // and the stroke; and fill drop shadows would appear over the top of the stroke.\n //\n // For v5.1.1, the new route is to revert to v4 style of drawing text first to get the drop shadows underneath normal\n // text, but instead drawing text in the correct location, we'll draw it off screen (-paddingY), and then adjust the\n // drop shadow so only that appears on screen (+paddingY). Now we'll have the correct draw order of the shadow\n // beneath the text, whilst also having the proper text shadow styling.\n for (var i = 0; i < passesCount; ++i)\n {\n var isShadowPass = style.dropShadow && i === 0;\n var dsOffsetText = isShadowPass ? height * 2 : 0; // we only want the drop shadow, so put text way off-screen\n var dsOffsetShadow = dsOffsetText * this.resolution;\n\n if (isShadowPass)\n {\n // On Safari, text with gradient and drop shadows together do not position correctly\n // if the scale of the canvas is not 1: https://bugs.webkit.org/show_bug.cgi?id=197689\n // Therefore we'll set the styles to be a plain black whilst generating this drop shadow\n context.fillStyle = 'black';\n context.strokeStyle = 'black';\n\n var dropShadowColor = style.dropShadowColor;\n var rgb = hex2rgb(typeof dropShadowColor === 'number' ? dropShadowColor : string2hex(dropShadowColor));\n\n context.shadowColor = \"rgba(\" + (rgb[0] * 255) + \",\" + (rgb[1] * 255) + \",\" + (rgb[2] * 255) + \",\" + (style.dropShadowAlpha) + \")\";\n context.shadowBlur = style.dropShadowBlur;\n context.shadowOffsetX = Math.cos(style.dropShadowAngle) * style.dropShadowDistance;\n context.shadowOffsetY = (Math.sin(style.dropShadowAngle) * style.dropShadowDistance) + dsOffsetShadow;\n }\n else\n {\n // set canvas text styles\n context.fillStyle = this._generateFillStyle(style, lines);\n context.strokeStyle = style.stroke;\n\n context.shadowColor = 0;\n context.shadowBlur = 0;\n context.shadowOffsetX = 0;\n context.shadowOffsetY = 0;\n }\n\n // draw lines line by line\n for (var i$1 = 0; i$1 < lines.length; i$1++)\n {\n linePositionX = style.strokeThickness / 2;\n linePositionY = ((style.strokeThickness / 2) + (i$1 * lineHeight)) + fontProperties.ascent;\n\n if (style.align === 'right')\n {\n linePositionX += maxLineWidth - lineWidths[i$1];\n }\n else if (style.align === 'center')\n {\n linePositionX += (maxLineWidth - lineWidths[i$1]) / 2;\n }\n\n if (style.stroke && style.strokeThickness)\n {\n this.drawLetterSpacing(\n lines[i$1],\n linePositionX + style.padding,\n linePositionY + style.padding - dsOffsetText,\n true\n );\n }\n\n if (style.fill)\n {\n this.drawLetterSpacing(\n lines[i$1],\n linePositionX + style.padding,\n linePositionY + style.padding - dsOffsetText\n );\n }\n }\n }\n\n this.updateTexture();\n };\n\n /**\n * Render the text with letter-spacing.\n * @param {string} text - The text to draw\n * @param {number} x - Horizontal position to draw the text\n * @param {number} y - Vertical position to draw the text\n * @param {boolean} [isStroke=false] - Is this drawing for the outside stroke of the\n * text? If not, it's for the inside fill\n * @private\n */\n Text.prototype.drawLetterSpacing = function drawLetterSpacing (text, x, y, isStroke)\n {\n if ( isStroke === void 0 ) isStroke = false;\n\n var style = this._style;\n\n // letterSpacing of 0 means normal\n var letterSpacing = style.letterSpacing;\n\n if (letterSpacing === 0)\n {\n if (isStroke)\n {\n this.context.strokeText(text, x, y);\n }\n else\n {\n this.context.fillText(text, x, y);\n }\n\n return;\n }\n\n var currentPosition = x;\n\n // Using Array.from correctly splits characters whilst keeping emoji together.\n // This is not supported on IE as it requires ES6, so regular text splitting occurs.\n // This also doesn't account for emoji that are multiple emoji put together to make something else.\n // Handling all of this would require a big library itself.\n // https://medium.com/@giltayar/iterating-over-emoji-characters-the-es6-way-f06e4589516\n // https://github.com/orling/grapheme-splitter\n var stringArray = Array.from ? Array.from(text) : text.split('');\n var previousWidth = this.context.measureText(text).width;\n var currentWidth = 0;\n\n for (var i = 0; i < stringArray.length; ++i)\n {\n var currentChar = stringArray[i];\n\n if (isStroke)\n {\n this.context.strokeText(currentChar, currentPosition, y);\n }\n else\n {\n this.context.fillText(currentChar, currentPosition, y);\n }\n currentWidth = this.context.measureText(text.substring(i + 1)).width;\n currentPosition += previousWidth - currentWidth + letterSpacing;\n previousWidth = currentWidth;\n }\n };\n\n /**\n * Updates texture size based on canvas size\n *\n * @private\n */\n Text.prototype.updateTexture = function updateTexture ()\n {\n var canvas = this.canvas;\n\n if (this._style.trim)\n {\n var trimmed = trimCanvas(canvas);\n\n if (trimmed.data)\n {\n canvas.width = trimmed.width;\n canvas.height = trimmed.height;\n this.context.putImageData(trimmed.data, 0, 0);\n }\n }\n\n var texture = this._texture;\n var style = this._style;\n var padding = style.trim ? 0 : style.padding;\n var baseTexture = texture.baseTexture;\n\n texture.trim.width = texture._frame.width = Math.ceil(canvas.width / this._resolution);\n texture.trim.height = texture._frame.height = Math.ceil(canvas.height / this._resolution);\n texture.trim.x = -padding;\n texture.trim.y = -padding;\n\n texture.orig.width = texture._frame.width - (padding * 2);\n texture.orig.height = texture._frame.height - (padding * 2);\n\n // call sprite onTextureUpdate to update scale if _width or _height were set\n this._onTextureUpdate();\n\n baseTexture.setRealSize(canvas.width, canvas.height, this._resolution);\n\n this.dirty = false;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @private\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Text.prototype._render = function _render (renderer)\n {\n if (this._autoResolution && this._resolution !== renderer.resolution)\n {\n this._resolution = renderer.resolution;\n this.dirty = true;\n }\n\n this.updateText(true);\n\n Sprite.prototype._render.call(this, renderer);\n };\n\n /**\n * Gets the local bounds of the text object.\n *\n * @param {PIXI.Rectangle} rect - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n Text.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n this.updateText(true);\n\n return Sprite.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * calculates the bounds of the Text as a rectangle. The bounds calculation takes the worldTransform into account.\n * @protected\n */\n Text.prototype._calculateBounds = function _calculateBounds ()\n {\n this.updateText(true);\n this.calculateVertices();\n // if we have already done this on THIS frame.\n this._bounds.addQuad(this.vertexData);\n };\n\n /**\n * Method to be called upon a TextStyle change.\n * @private\n */\n Text.prototype._onStyleChange = function _onStyleChange ()\n {\n this.dirty = true;\n };\n\n /**\n * Generates the fill style. Can automatically generate a gradient based on the fill style being an array\n *\n * @private\n * @param {object} style - The style.\n * @param {string[]} lines - The lines of text.\n * @return {string|number|CanvasGradient} The fill style\n */\n Text.prototype._generateFillStyle = function _generateFillStyle (style, lines)\n {\n if (!Array.isArray(style.fill))\n {\n return style.fill;\n }\n else if (style.fill.length === 1)\n {\n return style.fill[0];\n }\n\n // the gradient will be evenly spaced out according to how large the array is.\n // ['#FF0000', '#00FF00', '#0000FF'] would created stops at 0.25, 0.5 and 0.75\n var gradient;\n var totalIterations;\n var currentIteration;\n var stop;\n\n var width = Math.ceil(this.canvas.width / this._resolution);\n var height = Math.ceil(this.canvas.height / this._resolution);\n\n // make a copy of the style settings, so we can manipulate them later\n var fill = style.fill.slice();\n var fillGradientStops = style.fillGradientStops.slice();\n\n // wanting to evenly distribute the fills. So an array of 4 colours should give fills of 0.25, 0.5 and 0.75\n if (!fillGradientStops.length)\n {\n var lengthPlus1 = fill.length + 1;\n\n for (var i = 1; i < lengthPlus1; ++i)\n {\n fillGradientStops.push(i / lengthPlus1);\n }\n }\n\n // stop the bleeding of the last gradient on the line above to the top gradient of the this line\n // by hard defining the first gradient colour at point 0, and last gradient colour at point 1\n fill.unshift(style.fill[0]);\n fillGradientStops.unshift(0);\n\n fill.push(style.fill[style.fill.length - 1]);\n fillGradientStops.push(1);\n\n if (style.fillGradientType === TEXT_GRADIENT.LINEAR_VERTICAL)\n {\n // start the gradient at the top center of the canvas, and end at the bottom middle of the canvas\n gradient = this.context.createLinearGradient(width / 2, 0, width / 2, height);\n\n // we need to repeat the gradient so that each individual line of text has the same vertical gradient effect\n // ['#FF0000', '#00FF00', '#0000FF'] over 2 lines would create stops at 0.125, 0.25, 0.375, 0.625, 0.75, 0.875\n totalIterations = (fill.length + 1) * lines.length;\n currentIteration = 0;\n for (var i$1 = 0; i$1 < lines.length; i$1++)\n {\n currentIteration += 1;\n for (var j = 0; j < fill.length; j++)\n {\n if (typeof fillGradientStops[j] === 'number')\n {\n stop = (fillGradientStops[j] / lines.length) + (i$1 / lines.length);\n }\n else\n {\n stop = currentIteration / totalIterations;\n }\n gradient.addColorStop(stop, fill[j]);\n currentIteration++;\n }\n }\n }\n else\n {\n // start the gradient at the center left of the canvas, and end at the center right of the canvas\n gradient = this.context.createLinearGradient(0, height / 2, width, height / 2);\n\n // can just evenly space out the gradients in this case, as multiple lines makes no difference\n // to an even left to right gradient\n totalIterations = fill.length + 1;\n currentIteration = 1;\n\n for (var i$2 = 0; i$2 < fill.length; i$2++)\n {\n if (typeof fillGradientStops[i$2] === 'number')\n {\n stop = fillGradientStops[i$2];\n }\n else\n {\n stop = currentIteration / totalIterations;\n }\n gradient.addColorStop(stop, fill[i$2]);\n currentIteration++;\n }\n }\n\n return gradient;\n };\n\n /**\n * Destroys this text object.\n * Note* Unlike a Sprite, a Text object will automatically destroy its baseTexture and texture as\n * the majority of the time the texture will not be shared with any other Sprites.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their\n * destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=true] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=true] - Should it destroy the base texture of the sprite as well\n */\n Text.prototype.destroy = function destroy (options)\n {\n if (typeof options === 'boolean')\n {\n options = { children: options };\n }\n\n options = Object.assign({}, defaultDestroyOptions, options);\n\n Sprite.prototype.destroy.call(this, options);\n\n // make sure to reset the the context and canvas.. dont want this hanging around in memory!\n this.context = null;\n this.canvas = null;\n\n this._style = null;\n };\n\n /**\n * The width of the Text, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n this.updateText(true);\n\n return Math.abs(this.scale.x) * this._texture.orig.width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.updateText(true);\n\n var s = sign(this.scale.x) || 1;\n\n this.scale.x = s * value / this._texture.orig.width;\n this._width = value;\n };\n\n /**\n * The height of the Text, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n this.updateText(true);\n\n return Math.abs(this.scale.y) * this._texture.orig.height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.updateText(true);\n\n var s = sign(this.scale.y) || 1;\n\n this.scale.y = s * value / this._texture.orig.height;\n this._height = value;\n };\n\n /**\n * Set the style of the text. Set up an event listener to listen for changes on the style\n * object and mark the text as dirty.\n *\n * @member {object|PIXI.TextStyle}\n */\n prototypeAccessors.style.get = function ()\n {\n return this._style;\n };\n\n prototypeAccessors.style.set = function (style) // eslint-disable-line require-jsdoc\n {\n style = style || {};\n\n if (style instanceof TextStyle)\n {\n this._style = style;\n }\n else\n {\n this._style = new TextStyle(style);\n }\n\n this.localStyleID = -1;\n this.dirty = true;\n };\n\n /**\n * Set the copy for the text object. To split a line you can use '\\n'.\n *\n * @member {string}\n */\n prototypeAccessors.text.get = function ()\n {\n return this._text;\n };\n\n prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc\n {\n text = String(text === null || text === undefined ? '' : text);\n\n if (this._text === text)\n {\n return;\n }\n this._text = text;\n this.dirty = true;\n };\n\n /**\n * The resolution / device pixel ratio of the canvas.\n * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually.\n * @member {number}\n * @default 1\n */\n prototypeAccessors.resolution.get = function ()\n {\n return this._resolution;\n };\n\n prototypeAccessors.resolution.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._autoResolution = false;\n\n if (this._resolution === value)\n {\n return;\n }\n\n this._resolution = value;\n this.dirty = true;\n };\n\n Object.defineProperties( Text.prototype, prototypeAccessors );\n\n return Text;\n}(Sprite));\n\nexport { TEXT_GRADIENT, Text, TextMetrics, TextStyle };\n//# sourceMappingURL=text.es.js.map\n","/*!\n * @pixi/prepare - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/prepare is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nimport { Texture, BaseTexture } from '@pixi/core';\nimport { Graphics } from '@pixi/graphics';\nimport { Ticker, UPDATE_PRIORITY } from '@pixi/ticker';\nimport { Container } from '@pixi/display';\nimport { Text, TextStyle, TextMetrics } from '@pixi/text';\n\n/**\n * Default number of uploads per frame using prepare plugin.\n *\n * @static\n * @memberof PIXI.settings\n * @name UPLOADS_PER_FRAME\n * @type {number}\n * @default 4\n */\nsettings.UPLOADS_PER_FRAME = 4;\n\n/**\n * CountLimiter limits the number of items handled by a {@link PIXI.prepare.BasePrepare} to a specified\n * number of items per frame.\n *\n * @class\n * @memberof PIXI.prepare\n */\nvar CountLimiter = function CountLimiter(maxItemsPerFrame)\n{\n /**\n * The maximum number of items that can be prepared each frame.\n * @type {number}\n * @private\n */\n this.maxItemsPerFrame = maxItemsPerFrame;\n /**\n * The number of items that can be prepared in the current frame.\n * @type {number}\n * @private\n */\n this.itemsLeft = 0;\n};\n\n/**\n * Resets any counting properties to start fresh on a new frame.\n */\nCountLimiter.prototype.beginFrame = function beginFrame ()\n{\n this.itemsLeft = this.maxItemsPerFrame;\n};\n\n/**\n * Checks to see if another item can be uploaded. This should only be called once per item.\n * @return {boolean} If the item is allowed to be uploaded.\n */\nCountLimiter.prototype.allowedToUpload = function allowedToUpload ()\n{\n return this.itemsLeft-- > 0;\n};\n\n/**\n * The prepare manager provides functionality to upload content to the GPU.\n *\n * BasePrepare handles basic queuing functionality and is extended by\n * {@link PIXI.prepare.Prepare} and {@link PIXI.prepare.CanvasPrepare}\n * to provide preparation capabilities specific to their respective renderers.\n *\n * @example\n * // Create a sprite\n * const sprite = PIXI.Sprite.from('something.png');\n *\n * // Load object into GPU\n * app.renderer.plugins.prepare.upload(sprite, () => {\n *\n * //Texture(s) has been uploaded to GPU\n * app.stage.addChild(sprite);\n *\n * })\n *\n * @abstract\n * @class\n * @memberof PIXI.prepare\n */\nvar BasePrepare = function BasePrepare(renderer)\n{\n var this$1 = this;\n\n /**\n * The limiter to be used to control how quickly items are prepared.\n * @type {PIXI.prepare.CountLimiter|PIXI.prepare.TimeLimiter}\n */\n this.limiter = new CountLimiter(settings.UPLOADS_PER_FRAME);\n\n /**\n * Reference to the renderer.\n * @type {PIXI.AbstractRenderer}\n * @protected\n */\n this.renderer = renderer;\n\n /**\n * The only real difference between CanvasPrepare and Prepare is what they pass\n * to upload hooks. That different parameter is stored here.\n * @type {PIXI.prepare.CanvasPrepare|PIXI.Renderer}\n * @protected\n */\n this.uploadHookHelper = null;\n\n /**\n * Collection of items to uploads at once.\n * @type {Array<*>}\n * @private\n */\n this.queue = [];\n\n /**\n * Collection of additional hooks for finding assets.\n * @type {Array}\n * @private\n */\n this.addHooks = [];\n\n /**\n * Collection of additional hooks for processing assets.\n * @type {Array}\n * @private\n */\n this.uploadHooks = [];\n\n /**\n * Callback to call after completed.\n * @type {Array}\n * @private\n */\n this.completes = [];\n\n /**\n * If prepare is ticking (running).\n * @type {boolean}\n * @private\n */\n this.ticking = false;\n\n /**\n * 'bound' call for prepareItems().\n * @type {Function}\n * @private\n */\n this.delayedTick = function () {\n // unlikely, but in case we were destroyed between tick() and delayedTick()\n if (!this$1.queue)\n {\n return;\n }\n this$1.prepareItems();\n };\n\n // hooks to find the correct texture\n this.registerFindHook(findText);\n this.registerFindHook(findTextStyle);\n this.registerFindHook(findMultipleBaseTextures);\n this.registerFindHook(findBaseTexture);\n this.registerFindHook(findTexture);\n\n // upload hooks\n this.registerUploadHook(drawText);\n this.registerUploadHook(calculateTextStyle);\n};\n\n/**\n * Upload all the textures and graphics to the GPU.\n *\n * @param {Function|PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text} item -\n * Either the container or display object to search for items to upload, the items to upload themselves,\n * or the callback function, if items have been added using `prepare.add`.\n * @param {Function} [done] - Optional callback when all queued uploads have completed\n */\nBasePrepare.prototype.upload = function upload (item, done)\n{\n if (typeof item === 'function')\n {\n done = item;\n item = null;\n }\n\n // If a display object, search for items\n // that we could upload\n if (item)\n {\n this.add(item);\n }\n\n // Get the items for upload from the display\n if (this.queue.length)\n {\n if (done)\n {\n this.completes.push(done);\n }\n\n if (!this.ticking)\n {\n this.ticking = true;\n Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY);\n }\n }\n else if (done)\n {\n done();\n }\n};\n\n/**\n * Handle tick update\n *\n * @private\n */\nBasePrepare.prototype.tick = function tick ()\n{\n setTimeout(this.delayedTick, 0);\n};\n\n/**\n * Actually prepare items. This is handled outside of the tick because it will take a while\n * and we do NOT want to block the current animation frame from rendering.\n *\n * @private\n */\nBasePrepare.prototype.prepareItems = function prepareItems ()\n{\n this.limiter.beginFrame();\n // Upload the graphics\n while (this.queue.length && this.limiter.allowedToUpload())\n {\n var item = this.queue[0];\n var uploaded = false;\n\n if (item && !item._destroyed)\n {\n for (var i = 0, len = this.uploadHooks.length; i < len; i++)\n {\n if (this.uploadHooks[i](this.uploadHookHelper, item))\n {\n this.queue.shift();\n uploaded = true;\n break;\n }\n }\n }\n\n if (!uploaded)\n {\n this.queue.shift();\n }\n }\n\n // We're finished\n if (!this.queue.length)\n {\n this.ticking = false;\n\n var completes = this.completes.slice(0);\n\n this.completes.length = 0;\n\n for (var i$1 = 0, len$1 = completes.length; i$1 < len$1; i$1++)\n {\n completes[i$1]();\n }\n }\n else\n {\n // if we are not finished, on the next rAF do this again\n Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY);\n }\n};\n\n/**\n * Adds hooks for finding items.\n *\n * @param {Function} addHook - Function call that takes two parameters: `item:*, queue:Array`\n * function must return `true` if it was able to add item to the queue.\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.registerFindHook = function registerFindHook (addHook)\n{\n if (addHook)\n {\n this.addHooks.push(addHook);\n }\n\n return this;\n};\n\n/**\n * Adds hooks for uploading items.\n *\n * @param {Function} uploadHook - Function call that takes two parameters: `prepare:CanvasPrepare, item:*` and\n * function must return `true` if it was able to handle upload of item.\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.registerUploadHook = function registerUploadHook (uploadHook)\n{\n if (uploadHook)\n {\n this.uploadHooks.push(uploadHook);\n }\n\n return this;\n};\n\n/**\n * Manually add an item to the uploading queue.\n *\n * @param {PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text|*} item - Object to\n * add to the queue\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.add = function add (item)\n{\n // Add additional hooks for finding elements on special\n // types of objects that\n for (var i = 0, len = this.addHooks.length; i < len; i++)\n {\n if (this.addHooks[i](item, this.queue))\n {\n break;\n }\n }\n\n // Get children recursively\n if (item instanceof Container)\n {\n for (var i$1 = item.children.length - 1; i$1 >= 0; i$1--)\n {\n this.add(item.children[i$1]);\n }\n }\n\n return this;\n};\n\n/**\n * Destroys the plugin, don't use after this.\n *\n */\nBasePrepare.prototype.destroy = function destroy ()\n{\n if (this.ticking)\n {\n Ticker.system.remove(this.tick, this);\n }\n this.ticking = false;\n this.addHooks = null;\n this.uploadHooks = null;\n this.renderer = null;\n this.completes = null;\n this.queue = null;\n this.limiter = null;\n this.uploadHookHelper = null;\n};\n\n/**\n * Built-in hook to find multiple textures from objects like AnimatedSprites.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findMultipleBaseTextures(item, queue)\n{\n var result = false;\n\n // Objects with multiple textures\n if (item && item._textures && item._textures.length)\n {\n for (var i = 0; i < item._textures.length; i++)\n {\n if (item._textures[i] instanceof Texture)\n {\n var baseTexture = item._textures[i].baseTexture;\n\n if (queue.indexOf(baseTexture) === -1)\n {\n queue.push(baseTexture);\n result = true;\n }\n }\n }\n }\n\n return result;\n}\n\n/**\n * Built-in hook to find BaseTextures from Sprites.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findBaseTexture(item, queue)\n{\n // Objects with textures, like Sprites/Text\n if (item instanceof BaseTexture)\n {\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find textures from objects.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findTexture(item, queue)\n{\n if (item._texture && item._texture instanceof Texture)\n {\n var texture = item._texture.baseTexture;\n\n if (queue.indexOf(texture) === -1)\n {\n queue.push(texture);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to draw PIXI.Text to its texture.\n *\n * @private\n * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction drawText(helper, item)\n{\n if (item instanceof Text)\n {\n // updating text will return early if it is not dirty\n item.updateText(true);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to calculate a text style for a PIXI.Text object.\n *\n * @private\n * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction calculateTextStyle(helper, item)\n{\n if (item instanceof TextStyle)\n {\n var font = item.toFontString();\n\n TextMetrics.measureFont(font);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find Text objects.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Text object was found.\n */\nfunction findText(item, queue)\n{\n if (item instanceof Text)\n {\n // push the text style to prepare it - this can be really expensive\n if (queue.indexOf(item.style) === -1)\n {\n queue.push(item.style);\n }\n // also push the text object so that we can render it (to canvas/texture) if needed\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n // also push the Text's texture for upload to GPU\n var texture = item._texture.baseTexture;\n\n if (queue.indexOf(texture) === -1)\n {\n queue.push(texture);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find TextStyle objects.\n *\n * @private\n * @param {PIXI.TextStyle} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.TextStyle object was found.\n */\nfunction findTextStyle(item, queue)\n{\n if (item instanceof TextStyle)\n {\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * The prepare manager provides functionality to upload content to the GPU.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.prepare`\n *\n * @class\n * @extends PIXI.prepare.BasePrepare\n * @memberof PIXI.prepare\n */\nvar Prepare = /*@__PURE__*/(function (BasePrepare) {\n function Prepare(renderer)\n {\n BasePrepare.call(this, renderer);\n\n this.uploadHookHelper = this.renderer;\n\n // Add textures and graphics to upload\n this.registerFindHook(findGraphics);\n this.registerUploadHook(uploadBaseTextures);\n this.registerUploadHook(uploadGraphics);\n }\n\n if ( BasePrepare ) Prepare.__proto__ = BasePrepare;\n Prepare.prototype = Object.create( BasePrepare && BasePrepare.prototype );\n Prepare.prototype.constructor = Prepare;\n\n return Prepare;\n}(BasePrepare));\n/**\n * Built-in hook to upload PIXI.Texture objects to the GPU.\n *\n * @private\n * @param {PIXI.Renderer} renderer - instance of the webgl renderer\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction uploadBaseTextures(renderer, item)\n{\n if (item instanceof BaseTexture)\n {\n // if the texture already has a GL texture, then the texture has been prepared or rendered\n // before now. If the texture changed, then the changer should be calling texture.update() which\n // reuploads the texture without need for preparing it again\n if (!item._glTextures[renderer.CONTEXT_UID])\n {\n renderer.texture.bind(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to upload PIXI.Graphics to the GPU.\n *\n * @private\n * @param {PIXI.Renderer} renderer - instance of the webgl renderer\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction uploadGraphics(renderer, item)\n{\n if (item instanceof Graphics)\n {\n // if the item is not dirty and already has webgl data, then it got prepared or rendered\n // before now and we shouldn't waste time updating it again\n if (item.dirty || item.clearDirty || !item._webGL[renderer.plugins.graphics.CONTEXT_UID])\n {\n renderer.plugins.graphics.updateGraphics(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find graphics.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Graphics object was found.\n */\nfunction findGraphics(item, queue)\n{\n if (item instanceof Graphics)\n {\n queue.push(item);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * TimeLimiter limits the number of items handled by a {@link PIXI.BasePrepare} to a specified\n * number of milliseconds per frame.\n *\n * @class\n * @memberof PIXI.prepare\n */\nvar TimeLimiter = function TimeLimiter(maxMilliseconds)\n{\n /**\n * The maximum milliseconds that can be spent preparing items each frame.\n * @type {number}\n * @private\n */\n this.maxMilliseconds = maxMilliseconds;\n /**\n * The start time of the current frame.\n * @type {number}\n * @private\n */\n this.frameStart = 0;\n};\n\n/**\n * Resets any counting properties to start fresh on a new frame.\n */\nTimeLimiter.prototype.beginFrame = function beginFrame ()\n{\n this.frameStart = Date.now();\n};\n\n/**\n * Checks to see if another item can be uploaded. This should only be called once per item.\n * @return {boolean} If the item is allowed to be uploaded.\n */\nTimeLimiter.prototype.allowedToUpload = function allowedToUpload ()\n{\n return Date.now() - this.frameStart < this.maxMilliseconds;\n};\n\n/**\n * The prepare namespace provides renderer-specific plugins for pre-rendering DisplayObjects. These plugins are useful for\n * asynchronously preparing and uploading to the GPU assets, textures, graphics waiting to be displayed.\n *\n * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @example\n * // Create a new application\n * const app = new PIXI.Application();\n * document.body.appendChild(app.view);\n *\n * // Don't start rendering right away\n * app.stop();\n *\n * // create a display object\n * const rect = new PIXI.Graphics()\n * .beginFill(0x00ff00)\n * .drawRect(40, 40, 200, 200);\n *\n * // Add to the stage\n * app.stage.addChild(rect);\n *\n * // Don't start rendering until the graphic is uploaded to the GPU\n * app.renderer.plugins.prepare.upload(app.stage, () => {\n * app.start();\n * });\n * @namespace PIXI.prepare\n */\n\nexport { BasePrepare, CountLimiter, Prepare, TimeLimiter };\n//# sourceMappingURL=prepare.es.js.map\n","/*!\n * @pixi/app - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/app is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Container } from '@pixi/display';\nimport { autoDetectRenderer } from '@pixi/core';\n\n/**\n * Convenience class to create a new PIXI application.\n *\n * This class automatically creates the renderer, ticker and root container.\n *\n * @example\n * // Create the application\n * const app = new PIXI.Application();\n *\n * // Add the view to the DOM\n * document.body.appendChild(app.view);\n *\n * // ex, add display objects\n * app.stage.addChild(PIXI.Sprite.from('something.png'));\n *\n * @class\n * @memberof PIXI\n */\nvar Application = function Application(options)\n{\n var this$1 = this;\n\n // The default options\n options = Object.assign({\n forceCanvas: false,\n }, options);\n\n /**\n * WebGL renderer if available, otherwise CanvasRenderer.\n * @member {PIXI.Renderer|PIXI.CanvasRenderer}\n */\n this.renderer = autoDetectRenderer(options);\n\n /**\n * The root display container that's rendered.\n * @member {PIXI.Container}\n */\n this.stage = new Container();\n\n // install plugins here\n Application._plugins.forEach(function (plugin) {\n plugin.init.call(this$1, options);\n });\n};\n\nvar prototypeAccessors = { view: { configurable: true },screen: { configurable: true } };\n\n/**\n * Register a middleware plugin for the application\n * @static\n * @param {PIXI.Application.Plugin} plugin - Plugin being installed\n */\nApplication.registerPlugin = function registerPlugin (plugin)\n{\n Application._plugins.push(plugin);\n};\n\n/**\n * Render the current stage.\n */\nApplication.prototype.render = function render ()\n{\n this.renderer.render(this.stage);\n};\n\n/**\n * Reference to the renderer's canvas element.\n * @member {HTMLCanvasElement}\n * @readonly\n */\nprototypeAccessors.view.get = function ()\n{\n return this.renderer.view;\n};\n\n/**\n * Reference to the renderer's screen rectangle. Its safe to use as `filterArea` or `hitArea` for the whole screen.\n * @member {PIXI.Rectangle}\n * @readonly\n */\nprototypeAccessors.screen.get = function ()\n{\n return this.renderer.screen;\n};\n\n/**\n * Destroy and don't use after this.\n * @param {Boolean} [removeView=false] Automatically remove canvas from DOM.\n * @param {object|boolean} [stageOptions] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [stageOptions.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'stageOptions' will be passed on to those calls.\n * @param {boolean} [stageOptions.texture=false] - Only used for child Sprites if stageOptions.children is set\n * to true. Should it destroy the texture of the child sprite\n * @param {boolean} [stageOptions.baseTexture=false] - Only used for child Sprites if stageOptions.children is set\n * to true. Should it destroy the base texture of the child sprite\n */\nApplication.prototype.destroy = function destroy (removeView, stageOptions)\n{\n var this$1 = this;\n\n // Destroy plugins in the opposite order\n // which they were constructed\n var plugins = Application._plugins.slice(0);\n\n plugins.reverse();\n plugins.forEach(function (plugin) {\n plugin.destroy.call(this$1);\n });\n\n this.stage.destroy(stageOptions);\n this.stage = null;\n\n this.renderer.destroy(removeView);\n this.renderer = null;\n\n this._options = null;\n};\n\nObject.defineProperties( Application.prototype, prototypeAccessors );\n\n/**\n * @memberof PIXI.Application\n * @typedef {object} Plugin\n * @property {function} init - Called when Application is constructed, scoped to Application instance.\n * Passes in `options` as the only argument, which are Application constructor options.\n * @property {function} destroy - Called when destroying Application, scoped to Application instance\n */\n\n/**\n * Collection of installed plugins.\n * @static\n * @private\n * @type {PIXI.Application.Plugin[]}\n */\nApplication._plugins = [];\n\n/**\n * Middleware for for Application's resize functionality\n * @private\n * @class\n */\nvar ResizePlugin = function ResizePlugin () {};\n\nResizePlugin.init = function init (options)\n{\n var this$1 = this;\n\n /**\n * The element or window to resize the application to.\n * @type {Window|HTMLElement}\n * @name resizeTo\n * @memberof PIXI.Application#\n */\n Object.defineProperty(this, 'resizeTo',\n {\n set: function set(dom)\n {\n window.removeEventListener('resize', this.resize);\n this._resizeTo = dom;\n if (dom)\n {\n window.addEventListener('resize', this.resize);\n this.resize();\n }\n },\n get: function get()\n {\n return this._resizeTo;\n },\n });\n\n /**\n * If `resizeTo` is set, calling this function\n * will resize to the width and height of that element.\n * @method PIXI.Application#resize\n */\n this.resize = function () {\n if (this$1._resizeTo)\n {\n // Resize to the window\n if (this$1._resizeTo === window)\n {\n this$1.renderer.resize(\n window.innerWidth,\n window.innerHeight\n );\n }\n // Resize to other HTML entities\n else\n {\n this$1.renderer.resize(\n this$1._resizeTo.clientWidth,\n this$1._resizeTo.clientHeight\n );\n }\n }\n };\n\n // On resize\n this._resizeTo = null;\n this.resizeTo = options.resizeTo || null;\n};\n\n/**\n * Clean up the ticker, scoped to application\n * @static\n * @private\n */\nResizePlugin.destroy = function destroy ()\n{\n this.resizeTo = null;\n this.resize = null;\n};\n\nApplication.registerPlugin(ResizePlugin);\n\nexport { Application };\n//# sourceMappingURL=app.es.js.map\n","'use strict'\n\nmodule.exports = function parseURI (str, opts) {\n opts = opts || {}\n\n var o = {\n key: ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'],\n q: {\n name: 'queryKey',\n parser: /(?:^|&)([^&=]*)=?([^&]*)/g\n },\n parser: {\n strict: /^(?:([^:\\/?#]+):)?(?:\\/\\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\\/?#]*)(?::(\\d*))?))?((((?:[^?#\\/]*\\/)*)([^?#]*))(?:\\?([^#]*))?(?:#(.*))?)/,\n loose: /^(?:(?![^:@]+:[^:@\\/]*@)([^:\\/?#.]+):)?(?:\\/\\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\\/?#]*)(?::(\\d*))?)(((\\/(?:[^?#](?![^?#\\/]*\\.[^?#\\/.]+(?:[?#]|$)))*\\/?)?([^?#\\/]*))(?:\\?([^#]*))?(?:#(.*))?)/\n }\n }\n\n var m = o.parser[opts.strictMode ? 'strict' : 'loose'].exec(str)\n var uri = {}\n var i = 14\n\n while (i--) uri[o.key[i]] = m[i] || ''\n\n uri[o.q.name] = {}\n uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) {\n if ($1) uri[o.q.name][$1] = $2\n })\n\n return uri\n}\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\n\nvar _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }\n\nvar MiniSignalBinding = (function () {\n function MiniSignalBinding(fn, once, thisArg) {\n if (once === undefined) once = false;\n\n _classCallCheck(this, MiniSignalBinding);\n\n this._fn = fn;\n this._once = once;\n this._thisArg = thisArg;\n this._next = this._prev = this._owner = null;\n }\n\n _createClass(MiniSignalBinding, [{\n key: 'detach',\n value: function detach() {\n if (this._owner === null) return false;\n this._owner.detach(this);\n return true;\n }\n }]);\n\n return MiniSignalBinding;\n})();\n\nfunction _addMiniSignalBinding(self, node) {\n if (!self._head) {\n self._head = node;\n self._tail = node;\n } else {\n self._tail._next = node;\n node._prev = self._tail;\n self._tail = node;\n }\n\n node._owner = self;\n\n return node;\n}\n\nvar MiniSignal = (function () {\n function MiniSignal() {\n _classCallCheck(this, MiniSignal);\n\n this._head = this._tail = undefined;\n }\n\n _createClass(MiniSignal, [{\n key: 'handlers',\n value: function handlers() {\n var exists = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0];\n\n var node = this._head;\n\n if (exists) return !!node;\n\n var ee = [];\n\n while (node) {\n ee.push(node);\n node = node._next;\n }\n\n return ee;\n }\n }, {\n key: 'has',\n value: function has(node) {\n if (!(node instanceof MiniSignalBinding)) {\n throw new Error('MiniSignal#has(): First arg must be a MiniSignalBinding object.');\n }\n\n return node._owner === this;\n }\n }, {\n key: 'dispatch',\n value: function dispatch() {\n var node = this._head;\n\n if (!node) return false;\n\n while (node) {\n if (node._once) this.detach(node);\n node._fn.apply(node._thisArg, arguments);\n node = node._next;\n }\n\n return true;\n }\n }, {\n key: 'add',\n value: function add(fn) {\n var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];\n\n if (typeof fn !== 'function') {\n throw new Error('MiniSignal#add(): First arg must be a Function.');\n }\n return _addMiniSignalBinding(this, new MiniSignalBinding(fn, false, thisArg));\n }\n }, {\n key: 'once',\n value: function once(fn) {\n var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];\n\n if (typeof fn !== 'function') {\n throw new Error('MiniSignal#once(): First arg must be a Function.');\n }\n return _addMiniSignalBinding(this, new MiniSignalBinding(fn, true, thisArg));\n }\n }, {\n key: 'detach',\n value: function detach(node) {\n if (!(node instanceof MiniSignalBinding)) {\n throw new Error('MiniSignal#detach(): First arg must be a MiniSignalBinding object.');\n }\n if (node._owner !== this) return this;\n\n if (node._prev) node._prev._next = node._next;\n if (node._next) node._next._prev = node._prev;\n\n if (node === this._head) {\n this._head = node._next;\n if (node._next === null) {\n this._tail = null;\n }\n } else if (node === this._tail) {\n this._tail = node._prev;\n this._tail._next = null;\n }\n\n node._owner = null;\n return this;\n }\n }, {\n key: 'detachAll',\n value: function detachAll() {\n var node = this._head;\n if (!node) return this;\n\n this._head = this._tail = null;\n\n while (node) {\n node._owner = null;\n node = node._next;\n }\n return this;\n }\n }]);\n\n return MiniSignal;\n})();\n\nMiniSignal.MiniSignalBinding = MiniSignalBinding;\n\nexports['default'] = MiniSignal;\nmodule.exports = exports['default'];\n","/*!\n * resource-loader - v3.0.1\n * https://github.com/pixijs/pixi-sound\n * Compiled Tue, 02 Jul 2019 14:06:18 UTC\n *\n * resource-loader is licensed under the MIT license.\n * http://www.opensource.org/licenses/mit-license\n */\nimport parseUri from 'parse-uri';\nimport Signal from 'mini-signals';\n\n/**\n * Smaller version of the async library constructs.\n *\n * @namespace async\n */\n\n/**\n * Noop function\n *\n * @ignore\n * @function\n * @memberof async\n */\nfunction _noop() {}\n/* empty */\n\n/**\n * Iterates an array in series.\n *\n * @memberof async\n * @function eachSeries\n * @param {Array.<*>} array - Array to iterate.\n * @param {function} iterator - Function to call for each element.\n * @param {function} callback - Function to call when done, or on error.\n * @param {boolean} [deferNext=false] - Break synchronous each loop by calling next with a setTimeout of 1.\n */\n\n\nfunction eachSeries(array, iterator, callback, deferNext) {\n var i = 0;\n var len = array.length;\n\n (function next(err) {\n if (err || i === len) {\n if (callback) {\n callback(err);\n }\n\n return;\n }\n\n if (deferNext) {\n setTimeout(function () {\n iterator(array[i++], next);\n }, 1);\n } else {\n iterator(array[i++], next);\n }\n })();\n}\n/**\n * Ensures a function is only called once.\n *\n * @ignore\n * @memberof async\n * @param {function} fn - The function to wrap.\n * @return {function} The wrapping function.\n */\n\nfunction onlyOnce(fn) {\n return function onceWrapper() {\n if (fn === null) {\n throw new Error('Callback was already called.');\n }\n\n var callFn = fn;\n fn = null;\n callFn.apply(this, arguments);\n };\n}\n/**\n * Async queue implementation,\n *\n * @memberof async\n * @function queue\n * @param {function} worker - The worker function to call for each task.\n * @param {number} concurrency - How many workers to run in parrallel.\n * @return {*} The async queue object.\n */\n\n\nfunction queue(worker, concurrency) {\n if (concurrency == null) {\n // eslint-disable-line no-eq-null,eqeqeq\n concurrency = 1;\n } else if (concurrency === 0) {\n throw new Error('Concurrency must not be zero');\n }\n\n var workers = 0;\n var q = {\n _tasks: [],\n concurrency: concurrency,\n saturated: _noop,\n unsaturated: _noop,\n buffer: concurrency / 4,\n empty: _noop,\n drain: _noop,\n error: _noop,\n started: false,\n paused: false,\n push: function push(data, callback) {\n _insert(data, false, callback);\n },\n kill: function kill() {\n workers = 0;\n q.drain = _noop;\n q.started = false;\n q._tasks = [];\n },\n unshift: function unshift(data, callback) {\n _insert(data, true, callback);\n },\n process: function process() {\n while (!q.paused && workers < q.concurrency && q._tasks.length) {\n var task = q._tasks.shift();\n\n if (q._tasks.length === 0) {\n q.empty();\n }\n\n workers += 1;\n\n if (workers === q.concurrency) {\n q.saturated();\n }\n\n worker(task.data, onlyOnce(_next(task)));\n }\n },\n length: function length() {\n return q._tasks.length;\n },\n running: function running() {\n return workers;\n },\n idle: function idle() {\n return q._tasks.length + workers === 0;\n },\n pause: function pause() {\n if (q.paused === true) {\n return;\n }\n\n q.paused = true;\n },\n resume: function resume() {\n if (q.paused === false) {\n return;\n }\n\n q.paused = false; // Need to call q.process once per concurrent\n // worker to preserve full concurrency after pause\n\n for (var w = 1; w <= q.concurrency; w++) {\n q.process();\n }\n }\n };\n\n function _insert(data, insertAtFront, callback) {\n if (callback != null && typeof callback !== 'function') {\n // eslint-disable-line no-eq-null,eqeqeq\n throw new Error('task callback must be a function');\n }\n\n q.started = true;\n\n if (data == null && q.idle()) {\n // eslint-disable-line no-eq-null,eqeqeq\n // call drain immediately if there are no tasks\n setTimeout(function () {\n return q.drain();\n }, 1);\n return;\n }\n\n var item = {\n data: data,\n callback: typeof callback === 'function' ? callback : _noop\n };\n\n if (insertAtFront) {\n q._tasks.unshift(item);\n } else {\n q._tasks.push(item);\n }\n\n setTimeout(function () {\n return q.process();\n }, 1);\n }\n\n function _next(task) {\n return function next() {\n workers -= 1;\n task.callback.apply(task, arguments);\n\n if (arguments[0] != null) {\n // eslint-disable-line no-eq-null,eqeqeq\n q.error(arguments[0], task.data);\n }\n\n if (workers <= q.concurrency - q.buffer) {\n q.unsaturated();\n }\n\n if (q.idle()) {\n q.drain();\n }\n\n q.process();\n };\n }\n\n return q;\n}\n\nvar async = ({\n eachSeries: eachSeries,\n queue: queue\n});\n\n// a simple in-memory cache for resources\nvar cache = {};\n/**\n * A simple in-memory cache for resource.\n *\n * @memberof middleware\n * @function caching\n * @example\n * import { Loader, middleware } from 'resource-loader';\n * const loader = new Loader();\n * loader.use(middleware.caching);\n * @param {Resource} resource - Current Resource\n * @param {function} next - Callback when complete\n */\n\nfunction caching(resource, next) {\n var _this = this;\n\n // if cached, then set data and complete the resource\n if (cache[resource.url]) {\n resource.data = cache[resource.url];\n resource.complete(); // marks resource load complete and stops processing before middlewares\n } // if not cached, wait for complete and store it in the cache.\n else {\n resource.onComplete.once(function () {\n return cache[_this.url] = _this.data;\n });\n }\n\n next();\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nvar useXdr = !!(window.XDomainRequest && !('withCredentials' in new XMLHttpRequest()));\nvar tempAnchor = null; // some status constants\n\nvar STATUS_NONE = 0;\nvar STATUS_OK = 200;\nvar STATUS_EMPTY = 204;\nvar STATUS_IE_BUG_EMPTY = 1223;\nvar STATUS_TYPE_OK = 2; // noop\n\nfunction _noop$1() {}\n/* empty */\n\n/**\n * Manages the state and loading of a resource and all child resources.\n *\n * @class\n */\n\n\nvar Resource =\n/*#__PURE__*/\nfunction () {\n /**\n * Sets the load type to be used for a specific extension.\n *\n * @static\n * @param {string} extname - The extension to set the type for, e.g. \"png\" or \"fnt\"\n * @param {Resource.LOAD_TYPE} loadType - The load type to set it to.\n */\n Resource.setExtensionLoadType = function setExtensionLoadType(extname, loadType) {\n setExtMap(Resource._loadTypeMap, extname, loadType);\n }\n /**\n * Sets the load type to be used for a specific extension.\n *\n * @static\n * @param {string} extname - The extension to set the type for, e.g. \"png\" or \"fnt\"\n * @param {Resource.XHR_RESPONSE_TYPE} xhrType - The xhr type to set it to.\n */\n ;\n\n Resource.setExtensionXhrType = function setExtensionXhrType(extname, xhrType) {\n setExtMap(Resource._xhrTypeMap, extname, xhrType);\n }\n /**\n * @param {string} name - The name of the resource to load.\n * @param {string|string[]} url - The url for this resource, for audio/video loads you can pass\n * an array of sources.\n * @param {object} [options] - The options for the load.\n * @param {string|boolean} [options.crossOrigin] - Is this request cross-origin? Default is to\n * determine automatically.\n * @param {number} [options.timeout=0] - A timeout in milliseconds for the load. If the load takes\n * longer than this time it is cancelled and the load is considered a failure. If this value is\n * set to `0` then there is no explicit timeout.\n * @param {Resource.LOAD_TYPE} [options.loadType=Resource.LOAD_TYPE.XHR] - How should this resource\n * be loaded?\n * @param {Resource.XHR_RESPONSE_TYPE} [options.xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How\n * should the data being loaded be interpreted when using XHR?\n * @param {Resource.IMetadata} [options.metadata] - Extra configuration for middleware and the Resource object.\n */\n ;\n\n function Resource(name, url, options) {\n if (typeof name !== 'string' || typeof url !== 'string') {\n throw new Error('Both name and url are required for constructing a resource.');\n }\n\n options = options || {};\n /**\n * The state flags of this resource.\n *\n * @private\n * @member {number}\n */\n\n this._flags = 0; // set data url flag, needs to be set early for some _determineX checks to work.\n\n this._setFlag(Resource.STATUS_FLAGS.DATA_URL, url.indexOf('data:') === 0);\n /**\n * The name of this resource.\n *\n * @readonly\n * @member {string}\n */\n\n\n this.name = name;\n /**\n * The url used to load this resource.\n *\n * @readonly\n * @member {string}\n */\n\n this.url = url;\n /**\n * The extension used to load this resource.\n *\n * @readonly\n * @member {string}\n */\n\n this.extension = this._getExtension();\n /**\n * The data that was loaded by the resource.\n *\n * @member {any}\n */\n\n this.data = null;\n /**\n * Is this request cross-origin? If unset, determined automatically.\n *\n * @member {string}\n */\n\n this.crossOrigin = options.crossOrigin === true ? 'anonymous' : options.crossOrigin;\n /**\n * A timeout in milliseconds for the load. If the load takes longer than this time\n * it is cancelled and the load is considered a failure. If this value is set to `0`\n * then there is no explicit timeout.\n *\n * @member {number}\n */\n\n this.timeout = options.timeout || 0;\n /**\n * The method of loading to use for this resource.\n *\n * @member {Resource.LOAD_TYPE}\n */\n\n this.loadType = options.loadType || this._determineLoadType();\n /**\n * The type used to load the resource via XHR. If unset, determined automatically.\n *\n * @member {string}\n */\n\n this.xhrType = options.xhrType;\n /**\n * Extra info for middleware, and controlling specifics about how the resource loads.\n *\n * Note that if you pass in a `loadElement`, the Resource class takes ownership of it.\n * Meaning it will modify it as it sees fit.\n *\n * @member {Resource.IMetadata}\n */\n\n this.metadata = options.metadata || {};\n /**\n * The error that occurred while loading (if any).\n *\n * @readonly\n * @member {Error}\n */\n\n this.error = null;\n /**\n * The XHR object that was used to load this resource. This is only set\n * when `loadType` is `Resource.LOAD_TYPE.XHR`.\n *\n * @readonly\n * @member {XMLHttpRequest}\n */\n\n this.xhr = null;\n /**\n * The child resources this resource owns.\n *\n * @readonly\n * @member {Resource[]}\n */\n\n this.children = [];\n /**\n * The resource type.\n *\n * @readonly\n * @member {Resource.TYPE}\n */\n\n this.type = Resource.TYPE.UNKNOWN;\n /**\n * The progress chunk owned by this resource.\n *\n * @readonly\n * @member {number}\n */\n\n this.progressChunk = 0;\n /**\n * The `dequeue` method that will be used a storage place for the async queue dequeue method\n * used privately by the loader.\n *\n * @private\n * @member {function}\n */\n\n this._dequeue = _noop$1;\n /**\n * Used a storage place for the on load binding used privately by the loader.\n *\n * @private\n * @member {function}\n */\n\n this._onLoadBinding = null;\n /**\n * The timer for element loads to check if they timeout.\n *\n * @private\n * @member {number}\n */\n\n this._elementTimer = 0;\n /**\n * The `complete` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundComplete = this.complete.bind(this);\n /**\n * The `_onError` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnError = this._onError.bind(this);\n /**\n * The `_onProgress` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnProgress = this._onProgress.bind(this);\n /**\n * The `_onTimeout` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnTimeout = this._onTimeout.bind(this); // xhr callbacks\n\n this._boundXhrOnError = this._xhrOnError.bind(this);\n this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this);\n this._boundXhrOnAbort = this._xhrOnAbort.bind(this);\n this._boundXhrOnLoad = this._xhrOnLoad.bind(this);\n /**\n * Dispatched when the resource beings to load.\n *\n * The callback looks like {@link Resource.OnStartSignal}.\n *\n * @member {Signal}\n */\n\n this.onStart = new Signal();\n /**\n * Dispatched each time progress of this resource load updates.\n * Not all resources types and loader systems can support this event\n * so sometimes it may not be available. If the resource\n * is being loaded on a modern browser, using XHR, and the remote server\n * properly sets Content-Length headers, then this will be available.\n *\n * The callback looks like {@link Resource.OnProgressSignal}.\n *\n * @member {Signal}\n */\n\n this.onProgress = new Signal();\n /**\n * Dispatched once this resource has loaded, if there was an error it will\n * be in the `error` property.\n *\n * The callback looks like {@link Resource.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onComplete = new Signal();\n /**\n * Dispatched after this resource has had all the *after* middleware run on it.\n *\n * The callback looks like {@link Resource.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onAfterMiddleware = new Signal();\n }\n /**\n * When the resource starts to load.\n *\n * @memberof Resource\n * @callback OnStartSignal\n * @param {Resource} resource - The resource that the event happened on.\n */\n\n /**\n * When the resource reports loading progress.\n *\n * @memberof Resource\n * @callback OnProgressSignal\n * @param {Resource} resource - The resource that the event happened on.\n * @param {number} percentage - The progress of the load in the range [0, 1].\n */\n\n /**\n * When the resource finishes loading.\n *\n * @memberof Resource\n * @callback OnCompleteSignal\n * @param {Resource} resource - The resource that the event happened on.\n */\n\n /**\n * @memberof Resource\n * @typedef {object} IMetadata\n * @property {HTMLImageElement|HTMLAudioElement|HTMLVideoElement} [loadElement=null] - The\n * element to use for loading, instead of creating one.\n * @property {boolean} [skipSource=false] - Skips adding source(s) to the load element. This\n * is useful if you want to pass in a `loadElement` that you already added load sources to.\n * @property {string|string[]} [mimeType] - The mime type to use for the source element\n * of a video/audio elment. If the urls are an array, you can pass this as an array as well\n * where each index is the mime type to use for the corresponding url index.\n */\n\n /**\n * Stores whether or not this url is a data url.\n *\n * @readonly\n * @member {boolean}\n */\n\n\n var _proto = Resource.prototype;\n\n /**\n * Marks the resource as complete.\n *\n */\n _proto.complete = function complete() {\n this._clearEvents();\n\n this._finish();\n }\n /**\n * Aborts the loading of this resource, with an optional message.\n *\n * @param {string} message - The message to use for the error\n */\n ;\n\n _proto.abort = function abort(message) {\n // abort can be called multiple times, ignore subsequent calls.\n if (this.error) {\n return;\n } // store error\n\n\n this.error = new Error(message); // clear events before calling aborts\n\n this._clearEvents(); // abort the actual loading\n\n\n if (this.xhr) {\n this.xhr.abort();\n } else if (this.xdr) {\n this.xdr.abort();\n } else if (this.data) {\n // single source\n if (this.data.src) {\n this.data.src = Resource.EMPTY_GIF;\n } // multi-source\n else {\n while (this.data.firstChild) {\n this.data.removeChild(this.data.firstChild);\n }\n }\n } // done now.\n\n\n this._finish();\n }\n /**\n * Kicks off loading of this resource. This method is asynchronous.\n *\n * @param {Resource.OnCompleteSignal} [cb] - Optional callback to call once the resource is loaded.\n */\n ;\n\n _proto.load = function load(cb) {\n var _this = this;\n\n if (this.isLoading) {\n return;\n }\n\n if (this.isComplete) {\n if (cb) {\n setTimeout(function () {\n return cb(_this);\n }, 1);\n }\n\n return;\n } else if (cb) {\n this.onComplete.once(cb);\n }\n\n this._setFlag(Resource.STATUS_FLAGS.LOADING, true);\n\n this.onStart.dispatch(this); // if unset, determine the value\n\n if (this.crossOrigin === false || typeof this.crossOrigin !== 'string') {\n this.crossOrigin = this._determineCrossOrigin(this.url);\n }\n\n switch (this.loadType) {\n case Resource.LOAD_TYPE.IMAGE:\n this.type = Resource.TYPE.IMAGE;\n\n this._loadElement('image');\n\n break;\n\n case Resource.LOAD_TYPE.AUDIO:\n this.type = Resource.TYPE.AUDIO;\n\n this._loadSourceElement('audio');\n\n break;\n\n case Resource.LOAD_TYPE.VIDEO:\n this.type = Resource.TYPE.VIDEO;\n\n this._loadSourceElement('video');\n\n break;\n\n case Resource.LOAD_TYPE.XHR:\n /* falls through */\n\n default:\n if (useXdr && this.crossOrigin) {\n this._loadXdr();\n } else {\n this._loadXhr();\n }\n\n break;\n }\n }\n /**\n * Checks if the flag is set.\n *\n * @private\n * @param {number} flag - The flag to check.\n * @return {boolean} True if the flag is set.\n */\n ;\n\n _proto._hasFlag = function _hasFlag(flag) {\n return (this._flags & flag) !== 0;\n }\n /**\n * (Un)Sets the flag.\n *\n * @private\n * @param {number} flag - The flag to (un)set.\n * @param {boolean} value - Whether to set or (un)set the flag.\n */\n ;\n\n _proto._setFlag = function _setFlag(flag, value) {\n this._flags = value ? this._flags | flag : this._flags & ~flag;\n }\n /**\n * Clears all the events from the underlying loading source.\n *\n * @private\n */\n ;\n\n _proto._clearEvents = function _clearEvents() {\n clearTimeout(this._elementTimer);\n\n if (this.data && this.data.removeEventListener) {\n this.data.removeEventListener('error', this._boundOnError, false);\n this.data.removeEventListener('load', this._boundComplete, false);\n this.data.removeEventListener('progress', this._boundOnProgress, false);\n this.data.removeEventListener('canplaythrough', this._boundComplete, false);\n }\n\n if (this.xhr) {\n if (this.xhr.removeEventListener) {\n this.xhr.removeEventListener('error', this._boundXhrOnError, false);\n this.xhr.removeEventListener('timeout', this._boundXhrOnTimeout, false);\n this.xhr.removeEventListener('abort', this._boundXhrOnAbort, false);\n this.xhr.removeEventListener('progress', this._boundOnProgress, false);\n this.xhr.removeEventListener('load', this._boundXhrOnLoad, false);\n } else {\n this.xhr.onerror = null;\n this.xhr.ontimeout = null;\n this.xhr.onprogress = null;\n this.xhr.onload = null;\n }\n }\n }\n /**\n * Finalizes the load.\n *\n * @private\n */\n ;\n\n _proto._finish = function _finish() {\n if (this.isComplete) {\n throw new Error('Complete called again for an already completed resource.');\n }\n\n this._setFlag(Resource.STATUS_FLAGS.COMPLETE, true);\n\n this._setFlag(Resource.STATUS_FLAGS.LOADING, false);\n\n this.onComplete.dispatch(this);\n }\n /**\n * Loads this resources using an element that has a single source,\n * like an HTMLImageElement.\n *\n * @private\n * @param {string} type - The type of element to use.\n */\n ;\n\n _proto._loadElement = function _loadElement(type) {\n if (this.metadata.loadElement) {\n this.data = this.metadata.loadElement;\n } else if (type === 'image' && typeof window.Image !== 'undefined') {\n this.data = new Image();\n } else {\n this.data = document.createElement(type);\n }\n\n if (this.crossOrigin) {\n this.data.crossOrigin = this.crossOrigin;\n }\n\n if (!this.metadata.skipSource) {\n this.data.src = this.url;\n }\n\n this.data.addEventListener('error', this._boundOnError, false);\n this.data.addEventListener('load', this._boundComplete, false);\n this.data.addEventListener('progress', this._boundOnProgress, false);\n\n if (this.timeout) {\n this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout);\n }\n }\n /**\n * Loads this resources using an element that has multiple sources,\n * like an HTMLAudioElement or HTMLVideoElement.\n *\n * @private\n * @param {string} type - The type of element to use.\n */\n ;\n\n _proto._loadSourceElement = function _loadSourceElement(type) {\n if (this.metadata.loadElement) {\n this.data = this.metadata.loadElement;\n } else if (type === 'audio' && typeof window.Audio !== 'undefined') {\n this.data = new Audio();\n } else {\n this.data = document.createElement(type);\n }\n\n if (this.data === null) {\n this.abort(\"Unsupported element: \" + type);\n return;\n }\n\n if (this.crossOrigin) {\n this.data.crossOrigin = this.crossOrigin;\n }\n\n if (!this.metadata.skipSource) {\n // support for CocoonJS Canvas+ runtime, lacks document.createElement('source')\n if (navigator.isCocoonJS) {\n this.data.src = Array.isArray(this.url) ? this.url[0] : this.url;\n } else if (Array.isArray(this.url)) {\n var mimeTypes = this.metadata.mimeType;\n\n for (var i = 0; i < this.url.length; ++i) {\n this.data.appendChild(this._createSource(type, this.url[i], Array.isArray(mimeTypes) ? mimeTypes[i] : mimeTypes));\n }\n } else {\n var _mimeTypes = this.metadata.mimeType;\n this.data.appendChild(this._createSource(type, this.url, Array.isArray(_mimeTypes) ? _mimeTypes[0] : _mimeTypes));\n }\n }\n\n this.data.addEventListener('error', this._boundOnError, false);\n this.data.addEventListener('load', this._boundComplete, false);\n this.data.addEventListener('progress', this._boundOnProgress, false);\n this.data.addEventListener('canplaythrough', this._boundComplete, false);\n this.data.load();\n\n if (this.timeout) {\n this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout);\n }\n }\n /**\n * Loads this resources using an XMLHttpRequest.\n *\n * @private\n */\n ;\n\n _proto._loadXhr = function _loadXhr() {\n // if unset, determine the value\n if (typeof this.xhrType !== 'string') {\n this.xhrType = this._determineXhrType();\n }\n\n var xhr = this.xhr = new XMLHttpRequest(); // set the request type and url\n\n xhr.open('GET', this.url, true);\n xhr.timeout = this.timeout; // load json as text and parse it ourselves. We do this because some browsers\n // *cough* safari *cough* can't deal with it.\n\n if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON || this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) {\n xhr.responseType = Resource.XHR_RESPONSE_TYPE.TEXT;\n } else {\n xhr.responseType = this.xhrType;\n }\n\n xhr.addEventListener('error', this._boundXhrOnError, false);\n xhr.addEventListener('timeout', this._boundXhrOnTimeout, false);\n xhr.addEventListener('abort', this._boundXhrOnAbort, false);\n xhr.addEventListener('progress', this._boundOnProgress, false);\n xhr.addEventListener('load', this._boundXhrOnLoad, false);\n xhr.send();\n }\n /**\n * Loads this resources using an XDomainRequest. This is here because we need to support IE9 (gross).\n *\n * @private\n */\n ;\n\n _proto._loadXdr = function _loadXdr() {\n // if unset, determine the value\n if (typeof this.xhrType !== 'string') {\n this.xhrType = this._determineXhrType();\n }\n\n var xdr = this.xhr = new XDomainRequest(); // eslint-disable-line no-undef\n // XDomainRequest has a few quirks. Occasionally it will abort requests\n // A way to avoid this is to make sure ALL callbacks are set even if not used\n // More info here: http://stackoverflow.com/questions/15786966/xdomainrequest-aborts-post-on-ie-9\n\n xdr.timeout = this.timeout || 5000; // XDR needs a timeout value or it breaks in IE9\n\n xdr.onerror = this._boundXhrOnError;\n xdr.ontimeout = this._boundXhrOnTimeout;\n xdr.onprogress = this._boundOnProgress;\n xdr.onload = this._boundXhrOnLoad;\n xdr.open('GET', this.url, true); // Note: The xdr.send() call is wrapped in a timeout to prevent an\n // issue with the interface where some requests are lost if multiple\n // XDomainRequests are being sent at the same time.\n // Some info here: https://github.com/photonstorm/phaser/issues/1248\n\n setTimeout(function () {\n return xdr.send();\n }, 1);\n }\n /**\n * Creates a source used in loading via an element.\n *\n * @private\n * @param {string} type - The element type (video or audio).\n * @param {string} url - The source URL to load from.\n * @param {string} [mime] - The mime type of the video\n * @return {HTMLSourceElement} The source element.\n */\n ;\n\n _proto._createSource = function _createSource(type, url, mime) {\n if (!mime) {\n mime = type + \"/\" + this._getExtension(url);\n }\n\n var source = document.createElement('source');\n source.src = url;\n source.type = mime;\n return source;\n }\n /**\n * Called if a load errors out.\n *\n * @param {Event} event - The error event from the element that emits it.\n * @private\n */\n ;\n\n _proto._onError = function _onError(event) {\n this.abort(\"Failed to load element using: \" + event.target.nodeName);\n }\n /**\n * Called if a load progress event fires for an element or xhr/xdr.\n *\n * @private\n * @param {XMLHttpRequestProgressEvent|Event} event - Progress event.\n */\n ;\n\n _proto._onProgress = function _onProgress(event) {\n if (event && event.lengthComputable) {\n this.onProgress.dispatch(this, event.loaded / event.total);\n }\n }\n /**\n * Called if a timeout event fires for an element.\n *\n * @private\n */\n ;\n\n _proto._onTimeout = function _onTimeout() {\n this.abort(\"Load timed out.\");\n }\n /**\n * Called if an error event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnError = function _xhrOnError() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request failed. Status: \" + xhr.status + \", text: \\\"\" + xhr.statusText + \"\\\"\");\n }\n /**\n * Called if an error event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnTimeout = function _xhrOnTimeout() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request timed out.\");\n }\n /**\n * Called if an abort event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnAbort = function _xhrOnAbort() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request was aborted by the user.\");\n }\n /**\n * Called when data successfully loads from an xhr/xdr request.\n *\n * @private\n * @param {XMLHttpRequestLoadEvent|Event} event - Load event\n */\n ;\n\n _proto._xhrOnLoad = function _xhrOnLoad() {\n var xhr = this.xhr;\n var text = '';\n var status = typeof xhr.status === 'undefined' ? STATUS_OK : xhr.status; // XDR has no `.status`, assume 200.\n // responseText is accessible only if responseType is '' or 'text' and on older browsers\n\n if (xhr.responseType === '' || xhr.responseType === 'text' || typeof xhr.responseType === 'undefined') {\n text = xhr.responseText;\n } // status can be 0 when using the `file://` protocol so we also check if a response is set.\n // If it has a response, we assume 200; otherwise a 0 status code with no contents is an aborted request.\n\n\n if (status === STATUS_NONE && (text.length > 0 || xhr.responseType === Resource.XHR_RESPONSE_TYPE.BUFFER)) {\n status = STATUS_OK;\n } // handle IE9 bug: http://stackoverflow.com/questions/10046972/msie-returns-status-code-of-1223-for-ajax-request\n else if (status === STATUS_IE_BUG_EMPTY) {\n status = STATUS_EMPTY;\n }\n\n var statusType = status / 100 | 0;\n\n if (statusType === STATUS_TYPE_OK) {\n // if text, just return it\n if (this.xhrType === Resource.XHR_RESPONSE_TYPE.TEXT) {\n this.data = text;\n this.type = Resource.TYPE.TEXT;\n } // if json, parse into json object\n else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON) {\n try {\n this.data = JSON.parse(text);\n this.type = Resource.TYPE.JSON;\n } catch (e) {\n this.abort(\"Error trying to parse loaded json: \" + e);\n return;\n }\n } // if xml, parse into an xml document or div element\n else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) {\n try {\n if (window.DOMParser) {\n var domparser = new DOMParser();\n this.data = domparser.parseFromString(text, 'text/xml');\n } else {\n var div = document.createElement('div');\n div.innerHTML = text;\n this.data = div;\n }\n\n this.type = Resource.TYPE.XML;\n } catch (e) {\n this.abort(\"Error trying to parse loaded xml: \" + e);\n return;\n }\n } // other types just return the response\n else {\n this.data = xhr.response || text;\n }\n } else {\n this.abort(\"[\" + xhr.status + \"] \" + xhr.statusText + \": \" + xhr.responseURL);\n return;\n }\n\n this.complete();\n }\n /**\n * Sets the `crossOrigin` property for this resource based on if the url\n * for this resource is cross-origin. If crossOrigin was manually set, this\n * function does nothing.\n *\n * @private\n * @param {string} url - The url to test.\n * @param {object} [loc=window.location] - The location object to test against.\n * @return {string} The crossOrigin value to use (or empty string for none).\n */\n ;\n\n _proto._determineCrossOrigin = function _determineCrossOrigin(url, loc) {\n // data: and javascript: urls are considered same-origin\n if (url.indexOf('data:') === 0) {\n return '';\n } // A sandboxed iframe without the 'allow-same-origin' attribute will have a special\n // origin designed not to match window.location.origin, and will always require\n // crossOrigin requests regardless of whether the location matches.\n\n\n if (window.origin !== window.location.origin) {\n return 'anonymous';\n } // default is window.location\n\n\n loc = loc || window.location;\n\n if (!tempAnchor) {\n tempAnchor = document.createElement('a');\n } // let the browser determine the full href for the url of this resource and then\n // parse with the node url lib, we can't use the properties of the anchor element\n // because they don't work in IE9 :(\n\n\n tempAnchor.href = url;\n url = parseUri(tempAnchor.href, {\n strictMode: true\n });\n var samePort = !url.port && loc.port === '' || url.port === loc.port;\n var protocol = url.protocol ? url.protocol + \":\" : ''; // if cross origin\n\n if (url.host !== loc.hostname || !samePort || protocol !== loc.protocol) {\n return 'anonymous';\n }\n\n return '';\n }\n /**\n * Determines the responseType of an XHR request based on the extension of the\n * resource being loaded.\n *\n * @private\n * @return {Resource.XHR_RESPONSE_TYPE} The responseType to use.\n */\n ;\n\n _proto._determineXhrType = function _determineXhrType() {\n return Resource._xhrTypeMap[this.extension] || Resource.XHR_RESPONSE_TYPE.TEXT;\n }\n /**\n * Determines the loadType of a resource based on the extension of the\n * resource being loaded.\n *\n * @private\n * @return {Resource.LOAD_TYPE} The loadType to use.\n */\n ;\n\n _proto._determineLoadType = function _determineLoadType() {\n return Resource._loadTypeMap[this.extension] || Resource.LOAD_TYPE.XHR;\n }\n /**\n * Extracts the extension (sans '.') of the file being loaded by the resource.\n *\n * @private\n * @return {string} The extension.\n */\n ;\n\n _proto._getExtension = function _getExtension() {\n var url = this.url;\n var ext = '';\n\n if (this.isDataUrl) {\n var slashIndex = url.indexOf('/');\n ext = url.substring(slashIndex + 1, url.indexOf(';', slashIndex));\n } else {\n var queryStart = url.indexOf('?');\n var hashStart = url.indexOf('#');\n var index = Math.min(queryStart > -1 ? queryStart : url.length, hashStart > -1 ? hashStart : url.length);\n url = url.substring(0, index);\n ext = url.substring(url.lastIndexOf('.') + 1);\n }\n\n return ext.toLowerCase();\n }\n /**\n * Determines the mime type of an XHR request based on the responseType of\n * resource being loaded.\n *\n * @private\n * @param {Resource.XHR_RESPONSE_TYPE} type - The type to get a mime type for.\n * @return {string} The mime type to use.\n */\n ;\n\n _proto._getMimeFromXhrType = function _getMimeFromXhrType(type) {\n switch (type) {\n case Resource.XHR_RESPONSE_TYPE.BUFFER:\n return 'application/octet-binary';\n\n case Resource.XHR_RESPONSE_TYPE.BLOB:\n return 'application/blob';\n\n case Resource.XHR_RESPONSE_TYPE.DOCUMENT:\n return 'application/xml';\n\n case Resource.XHR_RESPONSE_TYPE.JSON:\n return 'application/json';\n\n case Resource.XHR_RESPONSE_TYPE.DEFAULT:\n case Resource.XHR_RESPONSE_TYPE.TEXT:\n /* falls through */\n\n default:\n return 'text/plain';\n }\n };\n\n _createClass(Resource, [{\n key: \"isDataUrl\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.DATA_URL);\n }\n /**\n * Describes if this resource has finished loading. Is true when the resource has completely\n * loaded.\n *\n * @readonly\n * @member {boolean}\n */\n\n }, {\n key: \"isComplete\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.COMPLETE);\n }\n /**\n * Describes if this resource is currently loading. Is true when the resource starts loading,\n * and is false again when complete.\n *\n * @readonly\n * @member {boolean}\n */\n\n }, {\n key: \"isLoading\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.LOADING);\n }\n }]);\n\n return Resource;\n}();\n/**\n * The types of resources a resource could represent.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\n\nResource.STATUS_FLAGS = {\n NONE: 0,\n DATA_URL: 1 << 0,\n COMPLETE: 1 << 1,\n LOADING: 1 << 2\n};\n/**\n * The types of resources a resource could represent.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\nResource.TYPE = {\n UNKNOWN: 0,\n JSON: 1,\n XML: 2,\n IMAGE: 3,\n AUDIO: 4,\n VIDEO: 5,\n TEXT: 6\n};\n/**\n * The types of loading a resource can use.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\nResource.LOAD_TYPE = {\n /** Uses XMLHttpRequest to load the resource. */\n XHR: 1,\n\n /** Uses an `Image` object to load the resource. */\n IMAGE: 2,\n\n /** Uses an `Audio` object to load the resource. */\n AUDIO: 3,\n\n /** Uses a `Video` object to load the resource. */\n VIDEO: 4\n};\n/**\n * The XHR ready states, used internally.\n *\n * @static\n * @readonly\n * @enum {string}\n */\n\nResource.XHR_RESPONSE_TYPE = {\n /** string */\n DEFAULT: 'text',\n\n /** ArrayBuffer */\n BUFFER: 'arraybuffer',\n\n /** Blob */\n BLOB: 'blob',\n\n /** Document */\n DOCUMENT: 'document',\n\n /** Object */\n JSON: 'json',\n\n /** String */\n TEXT: 'text'\n};\nResource._loadTypeMap = {\n // images\n gif: Resource.LOAD_TYPE.IMAGE,\n png: Resource.LOAD_TYPE.IMAGE,\n bmp: Resource.LOAD_TYPE.IMAGE,\n jpg: Resource.LOAD_TYPE.IMAGE,\n jpeg: Resource.LOAD_TYPE.IMAGE,\n tif: Resource.LOAD_TYPE.IMAGE,\n tiff: Resource.LOAD_TYPE.IMAGE,\n webp: Resource.LOAD_TYPE.IMAGE,\n tga: Resource.LOAD_TYPE.IMAGE,\n svg: Resource.LOAD_TYPE.IMAGE,\n 'svg+xml': Resource.LOAD_TYPE.IMAGE,\n // for SVG data urls\n // audio\n mp3: Resource.LOAD_TYPE.AUDIO,\n ogg: Resource.LOAD_TYPE.AUDIO,\n wav: Resource.LOAD_TYPE.AUDIO,\n // videos\n mp4: Resource.LOAD_TYPE.VIDEO,\n webm: Resource.LOAD_TYPE.VIDEO\n};\nResource._xhrTypeMap = {\n // xml\n xhtml: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n html: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n htm: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n xml: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n tmx: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n svg: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n // This was added to handle Tiled Tileset XML, but .tsx is also a TypeScript React Component.\n // Since it is way less likely for people to be loading TypeScript files instead of Tiled files,\n // this should probably be fine.\n tsx: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n // images\n gif: Resource.XHR_RESPONSE_TYPE.BLOB,\n png: Resource.XHR_RESPONSE_TYPE.BLOB,\n bmp: Resource.XHR_RESPONSE_TYPE.BLOB,\n jpg: Resource.XHR_RESPONSE_TYPE.BLOB,\n jpeg: Resource.XHR_RESPONSE_TYPE.BLOB,\n tif: Resource.XHR_RESPONSE_TYPE.BLOB,\n tiff: Resource.XHR_RESPONSE_TYPE.BLOB,\n webp: Resource.XHR_RESPONSE_TYPE.BLOB,\n tga: Resource.XHR_RESPONSE_TYPE.BLOB,\n // json\n json: Resource.XHR_RESPONSE_TYPE.JSON,\n // text\n text: Resource.XHR_RESPONSE_TYPE.TEXT,\n txt: Resource.XHR_RESPONSE_TYPE.TEXT,\n // fonts\n ttf: Resource.XHR_RESPONSE_TYPE.BUFFER,\n otf: Resource.XHR_RESPONSE_TYPE.BUFFER\n}; // We can't set the `src` attribute to empty string, so on abort we set it to this 1px transparent gif\n\nResource.EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==';\n/**\n * Quick helper to set a value on one of the extension maps. Ensures there is no\n * dot at the start of the extension.\n *\n * @ignore\n * @param {object} map - The map to set on.\n * @param {string} extname - The extension (or key) to set.\n * @param {number} val - The value to set.\n */\n\nfunction setExtMap(map, extname, val) {\n if (extname && extname.indexOf('.') === 0) {\n extname = extname.substring(1);\n }\n\n if (!extname) {\n return;\n }\n\n map[extname] = val;\n}\n/**\n * Quick helper to get string xhr type.\n *\n * @ignore\n * @param {XMLHttpRequest|XDomainRequest} xhr - The request to check.\n * @return {string} The type.\n */\n\n\nfunction reqType(xhr) {\n return xhr.toString().replace('object ', '');\n}\n\nvar _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\n/**\n * Encodes binary into base64.\n *\n * @function encodeBinary\n * @param {string} input The input data to encode.\n * @returns {string} The encoded base64 string\n */\n\nfunction encodeBinary(input) {\n var output = '';\n var inx = 0;\n\n while (inx < input.length) {\n // Fill byte buffer array\n var bytebuffer = [0, 0, 0];\n var encodedCharIndexes = [0, 0, 0, 0];\n\n for (var jnx = 0; jnx < bytebuffer.length; ++jnx) {\n if (inx < input.length) {\n // throw away high-order byte, as documented at:\n // https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data\n bytebuffer[jnx] = input.charCodeAt(inx++) & 0xff;\n } else {\n bytebuffer[jnx] = 0;\n }\n } // Get each encoded character, 6 bits at a time\n // index 1: first 6 bits\n\n\n encodedCharIndexes[0] = bytebuffer[0] >> 2; // index 2: second 6 bits (2 least significant bits from input byte 1 + 4 most significant bits from byte 2)\n\n encodedCharIndexes[1] = (bytebuffer[0] & 0x3) << 4 | bytebuffer[1] >> 4; // index 3: third 6 bits (4 least significant bits from input byte 2 + 2 most significant bits from byte 3)\n\n encodedCharIndexes[2] = (bytebuffer[1] & 0x0f) << 2 | bytebuffer[2] >> 6; // index 3: forth 6 bits (6 least significant bits from input byte 3)\n\n encodedCharIndexes[3] = bytebuffer[2] & 0x3f; // Determine whether padding happened, and adjust accordingly\n\n var paddingBytes = inx - (input.length - 1);\n\n switch (paddingBytes) {\n case 2:\n // Set last 2 characters to padding char\n encodedCharIndexes[3] = 64;\n encodedCharIndexes[2] = 64;\n break;\n\n case 1:\n // Set last character to padding char\n encodedCharIndexes[3] = 64;\n break;\n\n default:\n break;\n // No padding - proceed\n } // Now we will grab each appropriate character out of our keystring\n // based on our index array and append it to the output string\n\n\n for (var _jnx = 0; _jnx < encodedCharIndexes.length; ++_jnx) {\n output += _keyStr.charAt(encodedCharIndexes[_jnx]);\n }\n }\n\n return output;\n}\n\nvar Url = window.URL || window.webkitURL;\n/**\n * A middleware for transforming XHR loaded Blobs into more useful objects\n *\n * @memberof middleware\n * @function parsing\n * @example\n * import { Loader, middleware } from 'resource-loader';\n * const loader = new Loader();\n * loader.use(middleware.parsing);\n * @param {Resource} resource - Current Resource\n * @param {function} next - Callback when complete\n */\n\nfunction parsing(resource, next) {\n if (!resource.data) {\n next();\n return;\n } // if this was an XHR load of a blob\n\n\n if (resource.xhr && resource.xhrType === Resource.XHR_RESPONSE_TYPE.BLOB) {\n // if there is no blob support we probably got a binary string back\n if (!window.Blob || typeof resource.data === 'string') {\n var type = resource.xhr.getResponseHeader('content-type'); // this is an image, convert the binary string into a data url\n\n if (type && type.indexOf('image') === 0) {\n resource.data = new Image();\n resource.data.src = \"data:\" + type + \";base64,\" + encodeBinary(resource.xhr.responseText);\n resource.type = Resource.TYPE.IMAGE; // wait until the image loads and then callback\n\n resource.data.onload = function () {\n resource.data.onload = null;\n next();\n }; // next will be called on load\n\n\n return;\n }\n } // if content type says this is an image, then we should transform the blob into an Image object\n else if (resource.data.type.indexOf('image') === 0) {\n var src = Url.createObjectURL(resource.data);\n resource.blob = resource.data;\n resource.data = new Image();\n resource.data.src = src;\n resource.type = Resource.TYPE.IMAGE; // cleanup the no longer used blob after the image loads\n // TODO: Is this correct? Will the image be invalid after revoking?\n\n resource.data.onload = function () {\n Url.revokeObjectURL(src);\n resource.data.onload = null;\n next();\n }; // next will be called on load.\n\n\n return;\n }\n }\n\n next();\n}\n\n/**\n * @namespace middleware\n */\n\nvar index = ({\n caching: caching,\n parsing: parsing\n});\n\nvar MAX_PROGRESS = 100;\nvar rgxExtractUrlHash = /(#[\\w-]+)?$/;\n/**\n * Manages the state and loading of multiple resources to load.\n *\n * @class\n */\n\nvar Loader =\n/*#__PURE__*/\nfunction () {\n /**\n * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader.\n * @param {number} [concurrency=10] - The number of resources to load concurrently.\n */\n function Loader(baseUrl, concurrency) {\n var _this = this;\n\n if (baseUrl === void 0) {\n baseUrl = '';\n }\n\n if (concurrency === void 0) {\n concurrency = 10;\n }\n\n /**\n * The base url for all resources loaded by this loader.\n *\n * @member {string}\n */\n this.baseUrl = baseUrl;\n /**\n * The progress percent of the loader going through the queue.\n *\n * @member {number}\n * @default 0\n */\n\n this.progress = 0;\n /**\n * Loading state of the loader, true if it is currently loading resources.\n *\n * @member {boolean}\n * @default false\n */\n\n this.loading = false;\n /**\n * A querystring to append to every URL added to the loader.\n *\n * This should be a valid query string *without* the question-mark (`?`). The loader will\n * also *not* escape values for you. Make sure to escape your parameters with\n * [`encodeURIComponent`](https://mdn.io/encodeURIComponent) before assigning this property.\n *\n * @example\n * const loader = new Loader();\n *\n * loader.defaultQueryString = 'user=me&password=secret';\n *\n * // This will request 'image.png?user=me&password=secret'\n * loader.add('image.png').load();\n *\n * loader.reset();\n *\n * // This will request 'image.png?v=1&user=me&password=secret'\n * loader.add('iamge.png?v=1').load();\n *\n * @member {string}\n * @default ''\n */\n\n this.defaultQueryString = '';\n /**\n * The middleware to run before loading each resource.\n *\n * @private\n * @member {function[]}\n */\n\n this._beforeMiddleware = [];\n /**\n * The middleware to run after loading each resource.\n *\n * @private\n * @member {function[]}\n */\n\n this._afterMiddleware = [];\n /**\n * The tracks the resources we are currently completing parsing for.\n *\n * @private\n * @member {Resource[]}\n */\n\n this._resourcesParsing = [];\n /**\n * The `_loadResource` function bound with this object context.\n *\n * @private\n * @member {function}\n * @param {Resource} r - The resource to load\n * @param {Function} d - The dequeue function\n * @return {undefined}\n */\n\n this._boundLoadResource = function (r, d) {\n return _this._loadResource(r, d);\n };\n /**\n * The resources waiting to be loaded.\n *\n * @private\n * @member {Resource[]}\n */\n\n\n this._queue = queue(this._boundLoadResource, concurrency);\n\n this._queue.pause();\n /**\n * All the resources for this loader keyed by name.\n *\n * @member {object}\n */\n\n\n this.resources = {};\n /**\n * Dispatched once per loaded or errored resource.\n *\n * The callback looks like {@link Loader.OnProgressSignal}.\n *\n * @member {Signal}\n */\n\n this.onProgress = new Signal();\n /**\n * Dispatched once per errored resource.\n *\n * The callback looks like {@link Loader.OnErrorSignal}.\n *\n * @member {Signal}\n */\n\n this.onError = new Signal();\n /**\n * Dispatched once per loaded resource.\n *\n * The callback looks like {@link Loader.OnLoadSignal}.\n *\n * @member {Signal}\n */\n\n this.onLoad = new Signal();\n /**\n * Dispatched when the loader begins to process the queue.\n *\n * The callback looks like {@link Loader.OnStartSignal}.\n *\n * @member {Signal}\n */\n\n this.onStart = new Signal();\n /**\n * Dispatched when the queued resources all load.\n *\n * The callback looks like {@link Loader.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onComplete = new Signal(); // Add default before middleware\n\n for (var i = 0; i < Loader._defaultBeforeMiddleware.length; ++i) {\n this.pre(Loader._defaultBeforeMiddleware[i]);\n } // Add default after middleware\n\n\n for (var _i = 0; _i < Loader._defaultAfterMiddleware.length; ++_i) {\n this.use(Loader._defaultAfterMiddleware[_i]);\n }\n }\n /**\n * When the progress changes the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnProgressSignal\n * @param {Loader} loader - The loader the progress is advancing on.\n * @param {Resource} resource - The resource that has completed or failed to cause the progress to advance.\n */\n\n /**\n * When an error occurrs the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnErrorSignal\n * @param {Loader} loader - The loader the error happened in.\n * @param {Resource} resource - The resource that caused the error.\n */\n\n /**\n * When a load completes the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnLoadSignal\n * @param {Loader} loader - The loader that laoded the resource.\n * @param {Resource} resource - The resource that has completed loading.\n */\n\n /**\n * When the loader starts loading resources it dispatches this callback.\n *\n * @memberof Loader\n * @callback OnStartSignal\n * @param {Loader} loader - The loader that has started loading resources.\n */\n\n /**\n * When the loader completes loading resources it dispatches this callback.\n *\n * @memberof Loader\n * @callback OnCompleteSignal\n * @param {Loader} loader - The loader that has finished loading resources.\n */\n\n /**\n * Options for a call to `.add()`.\n *\n * @see Loader#add\n *\n * @typedef {object} IAddOptions\n * @property {string} [name] - The name of the resource to load, if not passed the url is used.\n * @property {string} [key] - Alias for `name`.\n * @property {string} [url] - The url for this resource, relative to the baseUrl of this loader.\n * @property {string|boolean} [crossOrigin] - Is this request cross-origin? Default is to\n * determine automatically.\n * @property {number} [timeout=0] - A timeout in milliseconds for the load. If the load takes\n * longer than this time it is cancelled and the load is considered a failure. If this value is\n * set to `0` then there is no explicit timeout.\n * @property {Resource.LOAD_TYPE} [loadType=Resource.LOAD_TYPE.XHR] - How should this resource\n * be loaded?\n * @property {Resource.XHR_RESPONSE_TYPE} [xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How\n * should the data being loaded be interpreted when using XHR?\n * @property {Resource.OnCompleteSignal} [onComplete] - Callback to add an an onComplete signal istener.\n * @property {Resource.OnCompleteSignal} [callback] - Alias for `onComplete`.\n * @property {Resource.IMetadata} [metadata] - Extra configuration for middleware and the Resource object.\n */\n\n /* eslint-disable require-jsdoc,valid-jsdoc */\n\n /**\n * Adds a resource (or multiple resources) to the loader queue.\n *\n * This function can take a wide variety of different parameters. The only thing that is always\n * required the url to load. All the following will work:\n *\n * ```js\n * loader\n * // normal param syntax\n * .add('key', 'http://...', function () {})\n * .add('http://...', function () {})\n * .add('http://...')\n *\n * // object syntax\n * .add({\n * name: 'key2',\n * url: 'http://...'\n * }, function () {})\n * .add({\n * url: 'http://...'\n * }, function () {})\n * .add({\n * name: 'key3',\n * url: 'http://...'\n * onComplete: function () {}\n * })\n * .add({\n * url: 'https://...',\n * onComplete: function () {},\n * crossOrigin: true\n * })\n *\n * // you can also pass an array of objects or urls or both\n * .add([\n * { name: 'key4', url: 'http://...', onComplete: function () {} },\n * { url: 'http://...', onComplete: function () {} },\n * 'http://...'\n * ])\n *\n * // and you can use both params and options\n * .add('key', 'http://...', { crossOrigin: true }, function () {})\n * .add('http://...', { crossOrigin: true }, function () {});\n * ```\n *\n * @function\n * @variation 1\n * @param {string} name - The name of the resource to load.\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 2\n * @param {string} name - The name of the resource to load.\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {IAddOptions} [options] - The options for the load.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 3\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 4\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {IAddOptions} [options] - The options for the load.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 5\n * @param {IAddOptions} options - The options for the load. This object must contain a `url` property.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 6\n * @param {Array} resources - An array of resources to load, where each is\n * either an object with the options or a string url. If you pass an object, it must contain a `url` property.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n\n var _proto = Loader.prototype;\n\n _proto.add = function add(name, url, options, cb) {\n // special case of an array of objects or urls\n if (Array.isArray(name)) {\n for (var i = 0; i < name.length; ++i) {\n this.add(name[i]);\n }\n\n return this;\n } // if an object is passed instead of params\n\n\n if (typeof name === 'object') {\n cb = url || name.callback || name.onComplete;\n options = name;\n url = name.url;\n name = name.name || name.key || name.url;\n } // case where no name is passed shift all args over by one.\n\n\n if (typeof url !== 'string') {\n cb = options;\n options = url;\n url = name;\n } // now that we shifted make sure we have a proper url.\n\n\n if (typeof url !== 'string') {\n throw new Error('No url passed to add resource to loader.');\n } // options are optional so people might pass a function and no options\n\n\n if (typeof options === 'function') {\n cb = options;\n options = null;\n } // if loading already you can only add resources that have a parent.\n\n\n if (this.loading && (!options || !options.parentResource)) {\n throw new Error('Cannot add resources while the loader is running.');\n } // check if resource already exists.\n\n\n if (this.resources[name]) {\n throw new Error(\"Resource named \\\"\" + name + \"\\\" already exists.\");\n } // add base url if this isn't an absolute url\n\n\n url = this._prepareUrl(url); // create the store the resource\n\n this.resources[name] = new Resource(name, url, options);\n\n if (typeof cb === 'function') {\n this.resources[name].onAfterMiddleware.once(cb);\n } // if actively loading, make sure to adjust progress chunks for that parent and its children\n\n\n if (this.loading) {\n var parent = options.parentResource;\n var incompleteChildren = [];\n\n for (var _i2 = 0; _i2 < parent.children.length; ++_i2) {\n if (!parent.children[_i2].isComplete) {\n incompleteChildren.push(parent.children[_i2]);\n }\n }\n\n var fullChunk = parent.progressChunk * (incompleteChildren.length + 1); // +1 for parent\n\n var eachChunk = fullChunk / (incompleteChildren.length + 2); // +2 for parent & new child\n\n parent.children.push(this.resources[name]);\n parent.progressChunk = eachChunk;\n\n for (var _i3 = 0; _i3 < incompleteChildren.length; ++_i3) {\n incompleteChildren[_i3].progressChunk = eachChunk;\n }\n\n this.resources[name].progressChunk = eachChunk;\n } // add the resource to the queue\n\n\n this._queue.push(this.resources[name]);\n\n return this;\n }\n /* eslint-enable require-jsdoc,valid-jsdoc */\n\n /**\n * Sets up a middleware function that will run *before* the\n * resource is loaded.\n *\n * @param {function} fn - The middleware function to register.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.pre = function pre(fn) {\n this._beforeMiddleware.push(fn);\n\n return this;\n }\n /**\n * Sets up a middleware function that will run *after* the\n * resource is loaded.\n *\n * @param {function} fn - The middleware function to register.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.use = function use(fn) {\n this._afterMiddleware.push(fn);\n\n return this;\n }\n /**\n * Resets the queue of the loader to prepare for a new load.\n *\n * @return {this} Returns itself.\n */\n ;\n\n _proto.reset = function reset() {\n this.progress = 0;\n this.loading = false;\n\n this._queue.kill();\n\n this._queue.pause(); // abort all resource loads\n\n\n for (var k in this.resources) {\n var res = this.resources[k];\n\n if (res._onLoadBinding) {\n res._onLoadBinding.detach();\n }\n\n if (res.isLoading) {\n res.abort();\n }\n }\n\n this.resources = {};\n return this;\n }\n /**\n * Starts loading the queued resources.\n *\n * @param {function} [cb] - Optional callback that will be bound to the `complete` event.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.load = function load(cb) {\n // register complete callback if they pass one\n if (typeof cb === 'function') {\n this.onComplete.once(cb);\n } // if the queue has already started we are done here\n\n\n if (this.loading) {\n return this;\n }\n\n if (this._queue.idle()) {\n this._onStart();\n\n this._onComplete();\n } else {\n // distribute progress chunks\n var numTasks = this._queue._tasks.length;\n var chunk = MAX_PROGRESS / numTasks;\n\n for (var i = 0; i < this._queue._tasks.length; ++i) {\n this._queue._tasks[i].data.progressChunk = chunk;\n } // notify we are starting\n\n\n this._onStart(); // start loading\n\n\n this._queue.resume();\n }\n\n return this;\n }\n /**\n * The number of resources to load concurrently.\n *\n * @member {number}\n * @default 10\n */\n ;\n\n /**\n * Prepares a url for usage based on the configuration of this object\n *\n * @private\n * @param {string} url - The url to prepare.\n * @return {string} The prepared url.\n */\n _proto._prepareUrl = function _prepareUrl(url) {\n var parsedUrl = parseUri(url, {\n strictMode: true\n });\n var result; // absolute url, just use it as is.\n\n if (parsedUrl.protocol || !parsedUrl.path || url.indexOf('//') === 0) {\n result = url;\n } // if baseUrl doesn't end in slash and url doesn't start with slash, then add a slash inbetween\n else if (this.baseUrl.length && this.baseUrl.lastIndexOf('/') !== this.baseUrl.length - 1 && url.charAt(0) !== '/') {\n result = this.baseUrl + \"/\" + url;\n } else {\n result = this.baseUrl + url;\n } // if we need to add a default querystring, there is a bit more work\n\n\n if (this.defaultQueryString) {\n var hash = rgxExtractUrlHash.exec(result)[0];\n result = result.substr(0, result.length - hash.length);\n\n if (result.indexOf('?') !== -1) {\n result += \"&\" + this.defaultQueryString;\n } else {\n result += \"?\" + this.defaultQueryString;\n }\n\n result += hash;\n }\n\n return result;\n }\n /**\n * Loads a single resource.\n *\n * @private\n * @param {Resource} resource - The resource to load.\n * @param {function} dequeue - The function to call when we need to dequeue this item.\n */\n ;\n\n _proto._loadResource = function _loadResource(resource, dequeue) {\n var _this2 = this;\n\n resource._dequeue = dequeue; // run before middleware\n\n eachSeries(this._beforeMiddleware, function (fn, next) {\n fn.call(_this2, resource, function () {\n // if the before middleware marks the resource as complete,\n // break and don't process any more before middleware\n next(resource.isComplete ? {} : null);\n });\n }, function () {\n if (resource.isComplete) {\n _this2._onLoad(resource);\n } else {\n resource._onLoadBinding = resource.onComplete.once(_this2._onLoad, _this2);\n resource.load();\n }\n }, true);\n }\n /**\n * Called once loading has started.\n *\n * @private\n */\n ;\n\n _proto._onStart = function _onStart() {\n this.progress = 0;\n this.loading = true;\n this.onStart.dispatch(this);\n }\n /**\n * Called once each resource has loaded.\n *\n * @private\n */\n ;\n\n _proto._onComplete = function _onComplete() {\n this.progress = MAX_PROGRESS;\n this.loading = false;\n this.onComplete.dispatch(this, this.resources);\n }\n /**\n * Called each time a resources is loaded.\n *\n * @private\n * @param {Resource} resource - The resource that was loaded\n */\n ;\n\n _proto._onLoad = function _onLoad(resource) {\n var _this3 = this;\n\n resource._onLoadBinding = null; // remove this resource from the async queue, and add it to our list of resources that are being parsed\n\n this._resourcesParsing.push(resource);\n\n resource._dequeue(); // run all the after middleware for this resource\n\n\n eachSeries(this._afterMiddleware, function (fn, next) {\n fn.call(_this3, resource, next);\n }, function () {\n resource.onAfterMiddleware.dispatch(resource);\n _this3.progress = Math.min(MAX_PROGRESS, _this3.progress + resource.progressChunk);\n\n _this3.onProgress.dispatch(_this3, resource);\n\n if (resource.error) {\n _this3.onError.dispatch(resource.error, _this3, resource);\n } else {\n _this3.onLoad.dispatch(_this3, resource);\n }\n\n _this3._resourcesParsing.splice(_this3._resourcesParsing.indexOf(resource), 1); // do completion check\n\n\n if (_this3._queue.idle() && _this3._resourcesParsing.length === 0) {\n _this3._onComplete();\n }\n }, true);\n };\n\n _createClass(Loader, [{\n key: \"concurrency\",\n get: function get() {\n return this._queue.concurrency;\n } // eslint-disable-next-line require-jsdoc\n ,\n set: function set(concurrency) {\n this._queue.concurrency = concurrency;\n }\n }]);\n\n return Loader;\n}();\n/**\n * A default array of middleware to run before loading each resource.\n * Each of these middlewares are added to any new Loader instances when they are created.\n *\n * @private\n * @member {function[]}\n */\n\n\nLoader._defaultBeforeMiddleware = [];\n/**\n * A default array of middleware to run after loading each resource.\n * Each of these middlewares are added to any new Loader instances when they are created.\n *\n * @private\n * @member {function[]}\n */\n\nLoader._defaultAfterMiddleware = [];\n/**\n * Sets up a middleware function that will run *before* the\n * resource is loaded.\n *\n * @static\n * @param {function} fn - The middleware function to register.\n * @return {Loader} Returns itself.\n */\n\nLoader.pre = function LoaderPreStatic(fn) {\n Loader._defaultBeforeMiddleware.push(fn);\n\n return Loader;\n};\n/**\n * Sets up a middleware function that will run *after* the\n * resource is loaded.\n *\n * @static\n * @param {function} fn - The middleware function to register.\n * @return {Loader} Returns itself.\n */\n\n\nLoader.use = function LoaderUseStatic(fn) {\n Loader._defaultAfterMiddleware.push(fn);\n\n return Loader;\n};\n\nexport { Loader, Resource, async, encodeBinary, index as middleware };\n//# sourceMappingURL=resource-loader.esm.js.map\n","/*!\n * @pixi/loaders - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/loaders is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Resource, Loader as Loader$1, middleware } from 'resource-loader';\nimport { EventEmitter } from '@pixi/utils';\nimport { Texture } from '@pixi/core';\n\n/**\n * Loader plugin for handling Texture resources.\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar TextureLoader = function TextureLoader () {};\n\nTextureLoader.use = function use (resource, next)\n{\n // create a new texture if the data is an Image object\n if (resource.data && resource.type === Resource.TYPE.IMAGE)\n {\n resource.texture = Texture.fromLoader(\n resource.data,\n resource.url,\n resource.name\n );\n }\n next();\n};\n\n/**\n * The new loader, extends Resource Loader by Chad Engler: https://github.com/englercj/resource-loader\n *\n * ```js\n * const loader = PIXI.Loader.shared; // PixiJS exposes a premade instance for you to use.\n * //or\n * const loader = new PIXI.Loader(); // you can also create your own if you want\n *\n * const sprites = {};\n *\n * // Chainable `add` to enqueue a resource\n * loader.add('bunny', 'data/bunny.png')\n * .add('spaceship', 'assets/spritesheet.json');\n * loader.add('scoreFont', 'assets/score.fnt');\n *\n * // Chainable `pre` to add a middleware that runs for each resource, *before* loading that resource.\n * // This is useful to implement custom caching modules (using filesystem, indexeddb, memory, etc).\n * loader.pre(cachingMiddleware);\n *\n * // Chainable `use` to add a middleware that runs for each resource, *after* loading that resource.\n * // This is useful to implement custom parsing modules (like spritesheet parsers, spine parser, etc).\n * loader.use(parsingMiddleware);\n *\n * // The `load` method loads the queue of resources, and calls the passed in callback called once all\n * // resources have loaded.\n * loader.load((loader, resources) => {\n * // resources is an object where the key is the name of the resource loaded and the value is the resource object.\n * // They have a couple default properties:\n * // - `url`: The URL that the resource was loaded from\n * // - `error`: The error that happened when trying to load (if any)\n * // - `data`: The raw data that was loaded\n * // also may contain other properties based on the middleware that runs.\n * sprites.bunny = new PIXI.TilingSprite(resources.bunny.texture);\n * sprites.spaceship = new PIXI.TilingSprite(resources.spaceship.texture);\n * sprites.scoreFont = new PIXI.TilingSprite(resources.scoreFont.texture);\n * });\n *\n * // throughout the process multiple signals can be dispatched.\n * loader.onProgress.add(() => {}); // called once per loaded/errored file\n * loader.onError.add(() => {}); // called once per errored file\n * loader.onLoad.add(() => {}); // called once per loaded file\n * loader.onComplete.add(() => {}); // called once when the queued resources all load.\n * ```\n *\n * @see https://github.com/englercj/resource-loader\n *\n * @class Loader\n * @memberof PIXI\n * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader.\n * @param {number} [concurrency=10] - The number of resources to load concurrently.\n */\nvar Loader = /*@__PURE__*/(function (ResourceLoader) {\n function Loader(baseUrl, concurrency)\n {\n var this$1 = this;\n\n ResourceLoader.call(this, baseUrl, concurrency);\n EventEmitter.call(this);\n\n for (var i = 0; i < Loader._plugins.length; ++i)\n {\n var plugin = Loader._plugins[i];\n var pre = plugin.pre;\n var use = plugin.use;\n\n if (pre)\n {\n this.pre(pre);\n }\n\n if (use)\n {\n this.use(use);\n }\n }\n\n // Compat layer, translate the new v2 signals into old v1 events.\n this.onStart.add(function (l) { return this$1.emit('start', l); });\n this.onProgress.add(function (l, r) { return this$1.emit('progress', l, r); });\n this.onError.add(function (e, l, r) { return this$1.emit('error', e, l, r); });\n this.onLoad.add(function (l, r) { return this$1.emit('load', l, r); });\n this.onComplete.add(function (l, r) { return this$1.emit('complete', l, r); });\n\n /**\n * If this loader cannot be destroyed.\n * @member {boolean}\n * @default false\n * @private\n */\n this._protected = false;\n }\n\n if ( ResourceLoader ) Loader.__proto__ = ResourceLoader;\n Loader.prototype = Object.create( ResourceLoader && ResourceLoader.prototype );\n Loader.prototype.constructor = Loader;\n\n var staticAccessors = { shared: { configurable: true } };\n\n /**\n * Destroy the loader, removes references.\n * @private\n */\n Loader.prototype.destroy = function destroy ()\n {\n if (!this._protected)\n {\n this.removeAllListeners();\n this.reset();\n }\n };\n\n /**\n * A premade instance of the loader that can be used to load resources.\n * @name shared\n * @type {PIXI.Loader}\n * @static\n * @memberof PIXI.Loader\n */\n staticAccessors.shared.get = function ()\n {\n var shared = Loader._shared;\n\n if (!shared)\n {\n shared = new Loader();\n shared._protected = true;\n Loader._shared = shared;\n }\n\n return shared;\n };\n\n Object.defineProperties( Loader, staticAccessors );\n\n return Loader;\n}(Loader$1));\n\n// Copy EE3 prototype (mixin)\nObject.assign(Loader.prototype, EventEmitter.prototype);\n\n/**\n * Collection of all installed `use` middleware for Loader.\n *\n * @static\n * @member {Array} _plugins\n * @memberof PIXI.Loader\n * @private\n */\nLoader._plugins = [];\n\n/**\n * Adds a Loader plugin for the global shared loader and all\n * new Loader instances created.\n *\n * @static\n * @method registerPlugin\n * @memberof PIXI.Loader\n * @param {PIXI.ILoaderPlugin} plugin - The plugin to add\n * @return {PIXI.Loader} Reference to PIXI.Loader for chaining\n */\nLoader.registerPlugin = function registerPlugin(plugin)\n{\n Loader._plugins.push(plugin);\n\n if (plugin.add)\n {\n plugin.add();\n }\n\n return Loader;\n};\n\n// parse any blob into more usable objects (e.g. Image)\nLoader.registerPlugin({ use: middleware.parsing });\n\n// parse any Image objects into textures\nLoader.registerPlugin(TextureLoader);\n\n/**\n * Plugin to be installed for handling specific Loader resources.\n *\n * @memberof PIXI\n * @typedef ILoaderPlugin\n * @property {function} [add] - Function to call immediate after registering plugin.\n * @property {PIXI.Loader.loaderMiddleware} [pre] - Middleware function to run before load, the\n * arguments for this are `(resource, next)`\n * @property {PIXI.Loader.loaderMiddleware} [use] - Middleware function to run after load, the\n * arguments for this are `(resource, next)`\n */\n\n/**\n * @memberof PIXI.Loader\n * @callback loaderMiddleware\n * @param {PIXI.LoaderResource} resource\n * @param {function} next\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onStart\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onProgress\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onError\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onLoad\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onComplete\n */\n\n/**\n * Application plugin for supporting loader option. Installing the LoaderPlugin\n * is not necessary if using **pixi.js** or **pixi.js-legacy**.\n * @example\n * import {AppLoaderPlugin} from '@pixi/loaders';\n * import {Application} from '@pixi/app';\n * Application.registerPlugin(AppLoaderPlugin);\n * @class\n * @memberof PIXI\n */\nvar AppLoaderPlugin = function AppLoaderPlugin () {};\n\nAppLoaderPlugin.init = function init (options)\n{\n options = Object.assign({\n sharedLoader: false,\n }, options);\n\n /**\n * Loader instance to help with asset loading.\n * @name PIXI.Application#loader\n * @type {PIXI.Loader}\n * @readonly\n */\n this.loader = options.sharedLoader ? Loader.shared : new Loader();\n};\n\n/**\n * Called when application destroyed\n * @private\n */\nAppLoaderPlugin.destroy = function destroy ()\n{\n if (this.loader)\n {\n this.loader.destroy();\n this.loader = null;\n }\n};\n\n/**\n * Reference to **{@link https://github.com/englercj/resource-loader\n * resource-loader}**'s Resource class.\n * @see http://englercj.github.io/resource-loader/Resource.html\n * @class LoaderResource\n * @memberof PIXI\n */\nvar LoaderResource = Resource;\n\nexport { AppLoaderPlugin, Loader, LoaderResource, TextureLoader };\n//# sourceMappingURL=loaders.es.js.map\n","/*!\n * @pixi/particles - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/particles is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { BLEND_MODES, TYPES } from '@pixi/constants';\nimport { hex2rgb, createIndicesForQuads, correctBlendMode, premultiplyRgba, premultiplyTint } from '@pixi/utils';\nimport { Container } from '@pixi/display';\nimport { Geometry, Buffer, ObjectRenderer, Shader } from '@pixi/core';\nimport { Matrix } from '@pixi/math';\n\n/**\n * The ParticleContainer class is a really fast version of the Container built solely for speed,\n * so use when you need a lot of sprites or particles.\n *\n * The tradeoff of the ParticleContainer is that most advanced functionality will not work.\n * ParticleContainer implements the basic object transform (position, scale, rotation)\n * and some advanced functionality like tint (as of v4.5.6).\n *\n * Other more advanced functionality like masking, children, filters, etc will not work on sprites in this batch.\n *\n * It's extremely easy to use:\n * ```js\n * let container = new ParticleContainer();\n *\n * for (let i = 0; i < 100; ++i)\n * {\n * let sprite = PIXI.Sprite.from(\"myImage.png\");\n * container.addChild(sprite);\n * }\n * ```\n *\n * And here you have a hundred sprites that will be rendered at the speed of light.\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar ParticleContainer = /*@__PURE__*/(function (Container) {\n function ParticleContainer(maxSize, properties, batchSize, autoResize)\n {\n if ( maxSize === void 0 ) maxSize = 1500;\n if ( batchSize === void 0 ) batchSize = 16384;\n if ( autoResize === void 0 ) autoResize = false;\n\n Container.call(this);\n\n // Making sure the batch size is valid\n // 65535 is max vertex index in the index buffer (see ParticleRenderer)\n // so max number of particles is 65536 / 4 = 16384\n var maxBatchSize = 16384;\n\n if (batchSize > maxBatchSize)\n {\n batchSize = maxBatchSize;\n }\n\n /**\n * Set properties to be dynamic (true) / static (false)\n *\n * @member {boolean[]}\n * @private\n */\n this._properties = [false, true, false, false, false];\n\n /**\n * @member {number}\n * @private\n */\n this._maxSize = maxSize;\n\n /**\n * @member {number}\n * @private\n */\n this._batchSize = batchSize;\n\n /**\n * @member {Array}\n * @private\n */\n this._buffers = null;\n\n /**\n * for every batch stores _updateID corresponding to the last change in that batch\n * @member {number[]}\n * @private\n */\n this._bufferUpdateIDs = [];\n\n /**\n * when child inserted, removed or changes position this number goes up\n * @member {number[]}\n * @private\n */\n this._updateID = 0;\n\n /**\n * @member {boolean}\n *\n */\n this.interactiveChildren = false;\n\n /**\n * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL`\n * to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * If true, container allocates more batches in case there are more than `maxSize` particles.\n * @member {boolean}\n * @default false\n */\n this.autoResize = autoResize;\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * Default to true here as performance is usually the priority for particles.\n *\n * @member {boolean}\n * @default true\n */\n this.roundPixels = true;\n\n /**\n * The texture used to render the children.\n *\n * @readonly\n * @member {PIXI.BaseTexture}\n */\n this.baseTexture = null;\n\n this.setProperties(properties);\n\n /**\n * The tint applied to the container.\n * This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @private\n * @member {number}\n * @default 0xFFFFFF\n */\n this._tint = 0;\n this.tintRgb = new Float32Array(4);\n this.tint = 0xFFFFFF;\n }\n\n if ( Container ) ParticleContainer.__proto__ = Container;\n ParticleContainer.prototype = Object.create( Container && Container.prototype );\n ParticleContainer.prototype.constructor = ParticleContainer;\n\n var prototypeAccessors = { tint: { configurable: true } };\n\n /**\n * Sets the private properties array to dynamic / static based on the passed properties object\n *\n * @param {object} properties - The properties to be uploaded\n */\n ParticleContainer.prototype.setProperties = function setProperties (properties)\n {\n if (properties)\n {\n this._properties[0] = 'vertices' in properties || 'scale' in properties\n ? !!properties.vertices || !!properties.scale : this._properties[0];\n this._properties[1] = 'position' in properties ? !!properties.position : this._properties[1];\n this._properties[2] = 'rotation' in properties ? !!properties.rotation : this._properties[2];\n this._properties[3] = 'uvs' in properties ? !!properties.uvs : this._properties[3];\n this._properties[4] = 'tint' in properties || 'alpha' in properties\n ? !!properties.tint || !!properties.alpha : this._properties[4];\n }\n };\n\n /**\n * Updates the object transform for rendering\n *\n * @private\n */\n ParticleContainer.prototype.updateTransform = function updateTransform ()\n {\n // TODO don't need to!\n this.displayObjectUpdateTransform();\n // PIXI.Container.prototype.updateTransform.call( this );\n };\n\n /**\n * The tint applied to the container. This is a hex value.\n * A value of 0xFFFFFF will remove any tint effect.\n ** IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer.\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._tint = value;\n hex2rgb(value, this.tintRgb);\n };\n\n /**\n * Renders the container using the WebGL renderer\n *\n * @private\n * @param {PIXI.Renderer} renderer - The webgl renderer\n */\n ParticleContainer.prototype.render = function render (renderer)\n {\n var this$1 = this;\n\n if (!this.visible || this.worldAlpha <= 0 || !this.children.length || !this.renderable)\n {\n return;\n }\n\n if (!this.baseTexture)\n {\n this.baseTexture = this.children[0]._texture.baseTexture;\n if (!this.baseTexture.valid)\n {\n this.baseTexture.once('update', function () { return this$1.onChildrenChange(0); });\n }\n }\n\n renderer.batch.setObjectRenderer(renderer.plugins.particle);\n renderer.plugins.particle.render(this);\n };\n\n /**\n * Set the flag that static data should be updated to true\n *\n * @private\n * @param {number} smallestChildIndex - The smallest child index\n */\n ParticleContainer.prototype.onChildrenChange = function onChildrenChange (smallestChildIndex)\n {\n var bufferIndex = Math.floor(smallestChildIndex / this._batchSize);\n\n while (this._bufferUpdateIDs.length < bufferIndex)\n {\n this._bufferUpdateIDs.push(0);\n }\n this._bufferUpdateIDs[bufferIndex] = ++this._updateID;\n };\n\n ParticleContainer.prototype.dispose = function dispose ()\n {\n if (this._buffers)\n {\n for (var i = 0; i < this._buffers.length; ++i)\n {\n this._buffers[i].destroy();\n }\n\n this._buffers = null;\n }\n };\n\n /**\n * Destroys the container\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their\n * destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n ParticleContainer.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.dispose();\n\n this._properties = null;\n this._buffers = null;\n this._bufferUpdateIDs = null;\n };\n\n Object.defineProperties( ParticleContainer.prototype, prototypeAccessors );\n\n return ParticleContainer;\n}(Container));\n\n/**\n * @author Mat Groves\n *\n * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/\n * for creating the original PixiJS version!\n * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that\n * they now share 4 bytes on the vertex buffer\n *\n * Heavily inspired by LibGDX's ParticleBuffer:\n * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleBuffer.java\n */\n\n/**\n * The particle buffer manages the static and dynamic buffers for a particle container.\n *\n * @class\n * @private\n * @memberof PIXI\n */\nvar ParticleBuffer = function ParticleBuffer(properties, dynamicPropertyFlags, size)\n{\n this.geometry = new Geometry();\n\n this.indexBuffer = null;\n\n /**\n * The number of particles the buffer can hold\n *\n * @private\n * @member {number}\n */\n this.size = size;\n\n /**\n * A list of the properties that are dynamic.\n *\n * @private\n * @member {object[]}\n */\n this.dynamicProperties = [];\n\n /**\n * A list of the properties that are static.\n *\n * @private\n * @member {object[]}\n */\n this.staticProperties = [];\n\n for (var i = 0; i < properties.length; ++i)\n {\n var property = properties[i];\n\n // Make copy of properties object so that when we edit the offset it doesn't\n // change all other instances of the object literal\n property = {\n attributeName: property.attributeName,\n size: property.size,\n uploadFunction: property.uploadFunction,\n type: property.type || TYPES.FLOAT,\n offset: property.offset,\n };\n\n if (dynamicPropertyFlags[i])\n {\n this.dynamicProperties.push(property);\n }\n else\n {\n this.staticProperties.push(property);\n }\n }\n\n this.staticStride = 0;\n this.staticBuffer = null;\n this.staticData = null;\n this.staticDataUint32 = null;\n\n this.dynamicStride = 0;\n this.dynamicBuffer = null;\n this.dynamicData = null;\n this.dynamicDataUint32 = null;\n\n this._updateID = 0;\n\n this.initBuffers();\n};\n\n/**\n * Sets up the renderer context and necessary buffers.\n *\n * @private\n */\nParticleBuffer.prototype.initBuffers = function initBuffers ()\n{\n var geometry = this.geometry;\n\n var dynamicOffset = 0;\n\n /**\n * Holds the indices of the geometry (quads) to draw\n *\n * @member {Uint16Array}\n * @private\n */\n this.indexBuffer = new Buffer(createIndicesForQuads(this.size), true, true);\n geometry.addIndex(this.indexBuffer);\n\n this.dynamicStride = 0;\n\n for (var i = 0; i < this.dynamicProperties.length; ++i)\n {\n var property = this.dynamicProperties[i];\n\n property.offset = dynamicOffset;\n dynamicOffset += property.size;\n this.dynamicStride += property.size;\n }\n\n var dynBuffer = new ArrayBuffer(this.size * this.dynamicStride * 4 * 4);\n\n this.dynamicData = new Float32Array(dynBuffer);\n this.dynamicDataUint32 = new Uint32Array(dynBuffer);\n this.dynamicBuffer = new Buffer(this.dynamicData, false, false);\n\n // static //\n var staticOffset = 0;\n\n this.staticStride = 0;\n\n for (var i$1 = 0; i$1 < this.staticProperties.length; ++i$1)\n {\n var property$1 = this.staticProperties[i$1];\n\n property$1.offset = staticOffset;\n staticOffset += property$1.size;\n this.staticStride += property$1.size;\n }\n\n var statBuffer = new ArrayBuffer(this.size * this.staticStride * 4 * 4);\n\n this.staticData = new Float32Array(statBuffer);\n this.staticDataUint32 = new Uint32Array(statBuffer);\n this.staticBuffer = new Buffer(this.staticData, true, false);\n\n for (var i$2 = 0; i$2 < this.dynamicProperties.length; ++i$2)\n {\n var property$2 = this.dynamicProperties[i$2];\n\n geometry.addAttribute(\n property$2.attributeName,\n this.dynamicBuffer,\n 0,\n property$2.type === TYPES.UNSIGNED_BYTE,\n property$2.type,\n this.dynamicStride * 4,\n property$2.offset * 4\n );\n }\n\n for (var i$3 = 0; i$3 < this.staticProperties.length; ++i$3)\n {\n var property$3 = this.staticProperties[i$3];\n\n geometry.addAttribute(\n property$3.attributeName,\n this.staticBuffer,\n 0,\n property$3.type === TYPES.UNSIGNED_BYTE,\n property$3.type,\n this.staticStride * 4,\n property$3.offset * 4\n );\n }\n};\n\n/**\n * Uploads the dynamic properties.\n *\n * @private\n * @param {PIXI.DisplayObject[]} children - The children to upload.\n * @param {number} startIndex - The index to start at.\n * @param {number} amount - The number to upload.\n */\nParticleBuffer.prototype.uploadDynamic = function uploadDynamic (children, startIndex, amount)\n{\n for (var i = 0; i < this.dynamicProperties.length; i++)\n {\n var property = this.dynamicProperties[i];\n\n property.uploadFunction(children, startIndex, amount,\n property.type === TYPES.UNSIGNED_BYTE ? this.dynamicDataUint32 : this.dynamicData,\n this.dynamicStride, property.offset);\n }\n\n this.dynamicBuffer._updateID++;\n};\n\n/**\n * Uploads the static properties.\n *\n * @private\n * @param {PIXI.DisplayObject[]} children - The children to upload.\n * @param {number} startIndex - The index to start at.\n * @param {number} amount - The number to upload.\n */\nParticleBuffer.prototype.uploadStatic = function uploadStatic (children, startIndex, amount)\n{\n for (var i = 0; i < this.staticProperties.length; i++)\n {\n var property = this.staticProperties[i];\n\n property.uploadFunction(children, startIndex, amount,\n property.type === TYPES.UNSIGNED_BYTE ? this.staticDataUint32 : this.staticData,\n this.staticStride, property.offset);\n }\n\n this.staticBuffer._updateID++;\n};\n\n/**\n * Destroys the ParticleBuffer.\n *\n * @private\n */\nParticleBuffer.prototype.destroy = function destroy ()\n{\n this.indexBuffer = null;\n\n this.dynamicProperties = null;\n // this.dynamicBuffer.destroy();\n this.dynamicBuffer = null;\n this.dynamicData = null;\n this.dynamicDataUint32 = null;\n\n this.staticProperties = null;\n // this.staticBuffer.destroy();\n this.staticBuffer = null;\n this.staticData = null;\n this.staticDataUint32 = null;\n // all buffers are destroyed inside geometry\n this.geometry.destroy();\n};\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\nattribute vec4 aColor;\\n\\nattribute vec2 aPositionCoord;\\nattribute float aRotation;\\n\\nuniform mat3 translationMatrix;\\nuniform vec4 uColor;\\n\\nvarying vec2 vTextureCoord;\\nvarying vec4 vColor;\\n\\nvoid main(void){\\n float x = (aVertexPosition.x) * cos(aRotation) - (aVertexPosition.y) * sin(aRotation);\\n float y = (aVertexPosition.x) * sin(aRotation) + (aVertexPosition.y) * cos(aRotation);\\n\\n vec2 v = vec2(x, y);\\n v = v + aPositionCoord;\\n\\n gl_Position = vec4((translationMatrix * vec3(v, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vColor = aColor * uColor;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\nvarying vec4 vColor;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n vec4 color = texture2D(uSampler, vTextureCoord) * vColor;\\n gl_FragColor = color;\\n}\";\n\n/**\n * @author Mat Groves\n *\n * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/\n * for creating the original PixiJS version!\n * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that they now\n * share 4 bytes on the vertex buffer\n *\n * Heavily inspired by LibGDX's ParticleRenderer:\n * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleRenderer.java\n */\n\n/**\n * Renderer for Particles that is designer for speed over feature set.\n *\n * @class\n * @memberof PIXI\n */\nvar ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function ParticleRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n // 65535 is max vertex index in the index buffer (see ParticleRenderer)\n // so max number of particles is 65536 / 4 = 16384\n // and max number of element in the index buffer is 16384 * 6 = 98304\n // Creating a full index buffer, overhead is 98304 * 2 = 196Ko\n // let numIndices = 98304;\n\n /**\n * The default shader that is used if a sprite doesn't have a more specific one.\n *\n * @member {PIXI.Shader}\n */\n this.shader = null;\n\n this.properties = null;\n\n this.tempMatrix = new Matrix();\n\n this.properties = [\n // verticesData\n {\n attributeName: 'aVertexPosition',\n size: 2,\n uploadFunction: this.uploadVertices,\n offset: 0,\n },\n // positionData\n {\n attributeName: 'aPositionCoord',\n size: 2,\n uploadFunction: this.uploadPosition,\n offset: 0,\n },\n // rotationData\n {\n attributeName: 'aRotation',\n size: 1,\n uploadFunction: this.uploadRotation,\n offset: 0,\n },\n // uvsData\n {\n attributeName: 'aTextureCoord',\n size: 2,\n uploadFunction: this.uploadUvs,\n offset: 0,\n },\n // tintData\n {\n attributeName: 'aColor',\n size: 1,\n type: TYPES.UNSIGNED_BYTE,\n uploadFunction: this.uploadTint,\n offset: 0,\n } ];\n\n this.shader = Shader.from(vertex, fragment, {});\n }\n\n if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer;\n ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n ParticleRenderer.prototype.constructor = ParticleRenderer;\n\n /**\n * Renders the particle container object.\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n */\n ParticleRenderer.prototype.render = function render (container)\n {\n var children = container.children;\n var maxSize = container._maxSize;\n var batchSize = container._batchSize;\n var renderer = this.renderer;\n var totalChildren = children.length;\n\n if (totalChildren === 0)\n {\n return;\n }\n else if (totalChildren > maxSize && !container.autoResize)\n {\n totalChildren = maxSize;\n }\n\n var buffers = container._buffers;\n\n if (!buffers)\n {\n buffers = container._buffers = this.generateBuffers(container);\n }\n\n var baseTexture = children[0]._texture.baseTexture;\n\n // if the uvs have not updated then no point rendering just yet!\n this.renderer.state.setBlendMode(correctBlendMode(container.blendMode, baseTexture.premultiplyAlpha));\n\n var gl = renderer.gl;\n\n var m = container.worldTransform.copyTo(this.tempMatrix);\n\n m.prepend(renderer.globalUniforms.uniforms.projectionMatrix);\n\n this.shader.uniforms.translationMatrix = m.toArray(true);\n\n this.shader.uniforms.uColor = premultiplyRgba(container.tintRgb,\n container.worldAlpha, this.shader.uniforms.uColor, baseTexture.premultiplyAlpha);\n\n this.shader.uniforms.uSampler = baseTexture;\n\n this.renderer.shader.bind(this.shader);\n\n var updateStatic = false;\n\n // now lets upload and render the buffers..\n for (var i = 0, j = 0; i < totalChildren; i += batchSize, j += 1)\n {\n var amount = (totalChildren - i);\n\n if (amount > batchSize)\n {\n amount = batchSize;\n }\n\n if (j >= buffers.length)\n {\n buffers.push(this._generateOneMoreBuffer(container));\n }\n\n var buffer = buffers[j];\n\n // we always upload the dynamic\n buffer.uploadDynamic(children, i, amount);\n\n var bid = container._bufferUpdateIDs[j] || 0;\n\n updateStatic = updateStatic || (buffer._updateID < bid);\n // we only upload the static content when we have to!\n if (updateStatic)\n {\n buffer._updateID = container._updateID;\n buffer.uploadStatic(children, i, amount);\n }\n\n // bind the buffer\n renderer.geometry.bind(buffer.geometry);\n gl.drawElements(gl.TRIANGLES, amount * 6, gl.UNSIGNED_SHORT, 0);\n }\n };\n\n /**\n * Creates one particle buffer for each child in the container we want to render and updates internal properties\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n * @return {PIXI.ParticleBuffer[]} The buffers\n * @private\n */\n ParticleRenderer.prototype.generateBuffers = function generateBuffers (container)\n {\n var buffers = [];\n var size = container._maxSize;\n var batchSize = container._batchSize;\n var dynamicPropertyFlags = container._properties;\n\n for (var i = 0; i < size; i += batchSize)\n {\n buffers.push(new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize));\n }\n\n return buffers;\n };\n\n /**\n * Creates one more particle buffer, because container has autoResize feature\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n * @return {PIXI.ParticleBuffer} generated buffer\n * @private\n */\n ParticleRenderer.prototype._generateOneMoreBuffer = function _generateOneMoreBuffer (container)\n {\n var batchSize = container._batchSize;\n var dynamicPropertyFlags = container._properties;\n\n return new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize);\n };\n\n /**\n * Uploads the vertices.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their vertices uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadVertices = function uploadVertices (children, startIndex, amount, array, stride, offset)\n {\n var w0 = 0;\n var w1 = 0;\n var h0 = 0;\n var h1 = 0;\n\n for (var i = 0; i < amount; ++i)\n {\n var sprite = children[startIndex + i];\n var texture = sprite._texture;\n var sx = sprite.scale.x;\n var sy = sprite.scale.y;\n var trim = texture.trim;\n var orig = texture.orig;\n\n if (trim)\n {\n // if the sprite is trimmed and is not a tilingsprite then we need to add the\n // extra space before transforming the sprite coords..\n w1 = trim.x - (sprite.anchor.x * orig.width);\n w0 = w1 + trim.width;\n\n h1 = trim.y - (sprite.anchor.y * orig.height);\n h0 = h1 + trim.height;\n }\n else\n {\n w0 = (orig.width) * (1 - sprite.anchor.x);\n w1 = (orig.width) * -sprite.anchor.x;\n\n h0 = orig.height * (1 - sprite.anchor.y);\n h1 = orig.height * -sprite.anchor.y;\n }\n\n array[offset] = w1 * sx;\n array[offset + 1] = h1 * sy;\n\n array[offset + stride] = w0 * sx;\n array[offset + stride + 1] = h1 * sy;\n\n array[offset + (stride * 2)] = w0 * sx;\n array[offset + (stride * 2) + 1] = h0 * sy;\n\n array[offset + (stride * 3)] = w1 * sx;\n array[offset + (stride * 3) + 1] = h0 * sy;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the position.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their positions uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadPosition = function uploadPosition (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; i++)\n {\n var spritePosition = children[startIndex + i].position;\n\n array[offset] = spritePosition.x;\n array[offset + 1] = spritePosition.y;\n\n array[offset + stride] = spritePosition.x;\n array[offset + stride + 1] = spritePosition.y;\n\n array[offset + (stride * 2)] = spritePosition.x;\n array[offset + (stride * 2) + 1] = spritePosition.y;\n\n array[offset + (stride * 3)] = spritePosition.x;\n array[offset + (stride * 3) + 1] = spritePosition.y;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the rotiation.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadRotation = function uploadRotation (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; i++)\n {\n var spriteRotation = children[startIndex + i].rotation;\n\n array[offset] = spriteRotation;\n array[offset + stride] = spriteRotation;\n array[offset + (stride * 2)] = spriteRotation;\n array[offset + (stride * 3)] = spriteRotation;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the Uvs\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadUvs = function uploadUvs (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; ++i)\n {\n var textureUvs = children[startIndex + i]._texture._uvs;\n\n if (textureUvs)\n {\n array[offset] = textureUvs.x0;\n array[offset + 1] = textureUvs.y0;\n\n array[offset + stride] = textureUvs.x1;\n array[offset + stride + 1] = textureUvs.y1;\n\n array[offset + (stride * 2)] = textureUvs.x2;\n array[offset + (stride * 2) + 1] = textureUvs.y2;\n\n array[offset + (stride * 3)] = textureUvs.x3;\n array[offset + (stride * 3) + 1] = textureUvs.y3;\n\n offset += stride * 4;\n }\n else\n {\n // TODO you know this can be easier!\n array[offset] = 0;\n array[offset + 1] = 0;\n\n array[offset + stride] = 0;\n array[offset + stride + 1] = 0;\n\n array[offset + (stride * 2)] = 0;\n array[offset + (stride * 2) + 1] = 0;\n\n array[offset + (stride * 3)] = 0;\n array[offset + (stride * 3) + 1] = 0;\n\n offset += stride * 4;\n }\n }\n };\n\n /**\n * Uploads the tint.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadTint = function uploadTint (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; ++i)\n {\n var sprite = children[startIndex + i];\n var premultiplied = sprite._texture.baseTexture.premultiplyAlpha;\n var alpha = sprite.alpha;\n // we dont call extra function if alpha is 1.0, that's faster\n var argb = alpha < 1.0 && premultiplied ? premultiplyTint(sprite._tintRGB, alpha)\n : sprite._tintRGB + (alpha * 255 << 24);\n\n array[offset] = argb;\n array[offset + stride] = argb;\n array[offset + (stride * 2)] = argb;\n array[offset + (stride * 3)] = argb;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Destroys the ParticleRenderer.\n */\n ParticleRenderer.prototype.destroy = function destroy ()\n {\n ObjectRenderer.prototype.destroy.call(this);\n\n if (this.shader)\n {\n this.shader.destroy();\n this.shader = null;\n }\n\n this.tempMatrix = null;\n };\n\n return ParticleRenderer;\n}(ObjectRenderer));\n\nexport { ParticleContainer, ParticleRenderer };\n//# sourceMappingURL=particles.es.js.map\n","/*!\n * @pixi/spritesheet - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/spritesheet is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Rectangle } from '@pixi/math';\nimport { Texture } from '@pixi/core';\nimport { getResolutionOfUrl, url } from '@pixi/utils';\nimport { LoaderResource } from '@pixi/loaders';\n\n/**\n * Utility class for maintaining reference to a collection\n * of Textures on a single Spritesheet.\n *\n * To access a sprite sheet from your code pass its JSON data file to Pixi's loader:\n *\n * ```js\n * PIXI.Loader.shared.add(\"images/spritesheet.json\").load(setup);\n *\n * function setup() {\n * let sheet = PIXI.Loader.shared.resources[\"images/spritesheet.json\"].spritesheet;\n * ...\n * }\n * ```\n * With the `sheet.textures` you can create Sprite objects,`sheet.animations` can be used to create an AnimatedSprite.\n *\n * Sprite sheets can be packed using tools like {@link https://codeandweb.com/texturepacker|TexturePacker},\n * {@link https://renderhjs.net/shoebox/|Shoebox} or {@link https://github.com/krzysztof-o/spritesheet.js|Spritesheet.js}.\n * Default anchor points (see {@link PIXI.Texture#defaultAnchor}) and grouping of animation sprites are currently only\n * supported by TexturePacker.\n *\n * @class\n * @memberof PIXI\n */\nvar Spritesheet = function Spritesheet(baseTexture, data, resolutionFilename)\n{\n if ( resolutionFilename === void 0 ) resolutionFilename = null;\n\n /**\n * Reference to ths source texture\n * @type {PIXI.BaseTexture}\n */\n this.baseTexture = baseTexture;\n\n /**\n * A map containing all textures of the sprite sheet.\n * Can be used to create a {@link PIXI.Sprite|Sprite}:\n * ```js\n * new PIXI.Sprite(sheet.textures[\"image.png\"]);\n * ```\n * @member {Object}\n */\n this.textures = {};\n\n /**\n * A map containing the textures for each animation.\n * Can be used to create an {@link PIXI.AnimatedSprite|AnimatedSprite}:\n * ```js\n * new PIXI.AnimatedSprite(sheet.animations[\"anim_name\"])\n * ```\n * @member {Object}\n */\n this.animations = {};\n\n /**\n * Reference to the original JSON data.\n * @type {Object}\n */\n this.data = data;\n\n /**\n * The resolution of the spritesheet.\n * @type {number}\n */\n this.resolution = this._updateResolution(\n resolutionFilename\n || (this.baseTexture.resource ? this.baseTexture.resource.url : null)\n );\n\n /**\n * Map of spritesheet frames.\n * @type {Object}\n * @private\n */\n this._frames = this.data.frames;\n\n /**\n * Collection of frame names.\n * @type {string[]}\n * @private\n */\n this._frameKeys = Object.keys(this._frames);\n\n /**\n * Current batch index being processed.\n * @type {number}\n * @private\n */\n this._batchIndex = 0;\n\n /**\n * Callback when parse is completed.\n * @type {Function}\n * @private\n */\n this._callback = null;\n};\n\nvar staticAccessors = { BATCH_SIZE: { configurable: true } };\n\n/**\n * Generate the resolution from the filename or fallback\n * to the meta.scale field of the JSON data.\n *\n * @private\n * @param {string} resolutionFilename - The filename to use for resolving\n * the default resolution.\n * @return {number} Resolution to use for spritesheet.\n */\nstaticAccessors.BATCH_SIZE.get = function ()\n{\n return 1000;\n};\n\nSpritesheet.prototype._updateResolution = function _updateResolution (resolutionFilename)\n{\n var scale = this.data.meta.scale;\n\n // Use a defaultValue of `null` to check if a url-based resolution is set\n var resolution = getResolutionOfUrl(resolutionFilename, null);\n\n // No resolution found via URL\n if (resolution === null)\n {\n // Use the scale value or default to 1\n resolution = scale !== undefined ? parseFloat(scale) : 1;\n }\n\n // For non-1 resolutions, update baseTexture\n if (resolution !== 1)\n {\n this.baseTexture.setResolution(resolution);\n }\n\n return resolution;\n};\n\n/**\n * Parser spritesheet from loaded data. This is done asynchronously\n * to prevent creating too many Texture within a single process.\n *\n * @param {Function} callback - Callback when complete returns\n * a map of the Textures for this spritesheet.\n */\nSpritesheet.prototype.parse = function parse (callback)\n{\n this._batchIndex = 0;\n this._callback = callback;\n\n if (this._frameKeys.length <= Spritesheet.BATCH_SIZE)\n {\n this._processFrames(0);\n this._processAnimations();\n this._parseComplete();\n }\n else\n {\n this._nextBatch();\n }\n};\n\n/**\n * Process a batch of frames\n *\n * @private\n * @param {number} initialFrameIndex - The index of frame to start.\n */\nSpritesheet.prototype._processFrames = function _processFrames (initialFrameIndex)\n{\n var frameIndex = initialFrameIndex;\n var maxFrames = Spritesheet.BATCH_SIZE;\n\n while (frameIndex - initialFrameIndex < maxFrames && frameIndex < this._frameKeys.length)\n {\n var i = this._frameKeys[frameIndex];\n var data = this._frames[i];\n var rect = data.frame;\n\n if (rect)\n {\n var frame = null;\n var trim = null;\n var sourceSize = data.trimmed !== false && data.sourceSize\n ? data.sourceSize : data.frame;\n\n var orig = new Rectangle(\n 0,\n 0,\n Math.floor(sourceSize.w) / this.resolution,\n Math.floor(sourceSize.h) / this.resolution\n );\n\n if (data.rotated)\n {\n frame = new Rectangle(\n Math.floor(rect.x) / this.resolution,\n Math.floor(rect.y) / this.resolution,\n Math.floor(rect.h) / this.resolution,\n Math.floor(rect.w) / this.resolution\n );\n }\n else\n {\n frame = new Rectangle(\n Math.floor(rect.x) / this.resolution,\n Math.floor(rect.y) / this.resolution,\n Math.floor(rect.w) / this.resolution,\n Math.floor(rect.h) / this.resolution\n );\n }\n\n // Check to see if the sprite is trimmed\n if (data.trimmed !== false && data.spriteSourceSize)\n {\n trim = new Rectangle(\n Math.floor(data.spriteSourceSize.x) / this.resolution,\n Math.floor(data.spriteSourceSize.y) / this.resolution,\n Math.floor(rect.w) / this.resolution,\n Math.floor(rect.h) / this.resolution\n );\n }\n\n this.textures[i] = new Texture(\n this.baseTexture,\n frame,\n orig,\n trim,\n data.rotated ? 2 : 0,\n data.anchor\n );\n\n // lets also add the frame to pixi's global cache for 'from' and 'fromLoader' functions\n Texture.addToCache(this.textures[i], i);\n }\n\n frameIndex++;\n }\n};\n\n/**\n * Parse animations config\n *\n * @private\n */\nSpritesheet.prototype._processAnimations = function _processAnimations ()\n{\n var animations = this.data.animations || {};\n\n for (var animName in animations)\n {\n this.animations[animName] = [];\n for (var i = 0; i < animations[animName].length; i++)\n {\n var frameName = animations[animName][i];\n\n this.animations[animName].push(this.textures[frameName]);\n }\n }\n};\n\n/**\n * The parse has completed.\n *\n * @private\n */\nSpritesheet.prototype._parseComplete = function _parseComplete ()\n{\n var callback = this._callback;\n\n this._callback = null;\n this._batchIndex = 0;\n callback.call(this, this.textures);\n};\n\n/**\n * Begin the next batch of textures.\n *\n * @private\n */\nSpritesheet.prototype._nextBatch = function _nextBatch ()\n{\n var this$1 = this;\n\n this._processFrames(this._batchIndex * Spritesheet.BATCH_SIZE);\n this._batchIndex++;\n setTimeout(function () {\n if (this$1._batchIndex * Spritesheet.BATCH_SIZE < this$1._frameKeys.length)\n {\n this$1._nextBatch();\n }\n else\n {\n this$1._processAnimations();\n this$1._parseComplete();\n }\n }, 0);\n};\n\n/**\n * Destroy Spritesheet and don't use after this.\n *\n * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well\n */\nSpritesheet.prototype.destroy = function destroy (destroyBase)\n{\n if ( destroyBase === void 0 ) destroyBase = false;\n\n for (var i in this.textures)\n {\n this.textures[i].destroy();\n }\n this._frames = null;\n this._frameKeys = null;\n this.data = null;\n this.textures = null;\n if (destroyBase)\n {\n this.baseTexture.destroy();\n }\n this.baseTexture = null;\n};\n\nObject.defineProperties( Spritesheet, staticAccessors );\n\n/**\n * {@link PIXI.Loader Loader} middleware for loading texture atlases that have been created with\n * TexturePacker or similar JSON-based spritesheet.\n *\n * This middleware automatically generates Texture resources.\n *\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar SpritesheetLoader = function SpritesheetLoader () {};\n\nSpritesheetLoader.use = function use (resource, next)\n{\n var imageResourceName = (resource.name) + \"_image\";\n\n // skip if no data, its not json, it isn't spritesheet data, or the image resource already exists\n if (!resource.data\n || resource.type !== LoaderResource.TYPE.JSON\n || !resource.data.frames\n || this.resources[imageResourceName]\n )\n {\n next();\n\n return;\n }\n\n var loadOptions = {\n crossOrigin: resource.crossOrigin,\n metadata: resource.metadata.imageMetadata,\n parentResource: resource,\n };\n\n var resourcePath = SpritesheetLoader.getResourcePath(resource, this.baseUrl);\n\n // load the image for this sheet\n this.add(imageResourceName, resourcePath, loadOptions, function onImageLoad(res)\n {\n if (res.error)\n {\n next(res.error);\n\n return;\n }\n\n var spritesheet = new Spritesheet(\n res.texture.baseTexture,\n resource.data,\n resource.url\n );\n\n spritesheet.parse(function () {\n resource.spritesheet = spritesheet;\n resource.textures = spritesheet.textures;\n next();\n });\n });\n};\n\n/**\n * Get the spritesheets root path\n * @param {PIXI.LoaderResource} resource - Resource to check path\n * @param {string} baseUrl - Base root url\n */\nSpritesheetLoader.getResourcePath = function getResourcePath (resource, baseUrl)\n{\n // Prepend url path unless the resource image is a data url\n if (resource.isDataUrl)\n {\n return resource.data.meta.image;\n }\n\n return url.resolve(resource.url.replace(baseUrl, ''), resource.data.meta.image);\n};\n\nexport { Spritesheet, SpritesheetLoader };\n//# sourceMappingURL=spritesheet.es.js.map\n","/*!\n * @pixi/sprite-tiling - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/sprite-tiling is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture, TextureMatrix, ObjectRenderer, Shader, QuadUv } from '@pixi/core';\nimport { Point, Rectangle, Transform, Matrix } from '@pixi/math';\nimport { TextureCache, premultiplyTintToRgba, correctBlendMode } from '@pixi/utils';\nimport { Sprite } from '@pixi/sprite';\nimport { WRAP_MODES } from '@pixi/constants';\n\nvar tempPoint = new Point();\n\n/**\n * A tiling sprite is a fast way of rendering a tiling image\n *\n * @class\n * @extends PIXI.Sprite\n * @memberof PIXI\n */\nvar TilingSprite = /*@__PURE__*/(function (Sprite) {\n function TilingSprite(texture, width, height)\n {\n if ( width === void 0 ) width = 100;\n if ( height === void 0 ) height = 100;\n\n Sprite.call(this, texture);\n\n /**\n * Tile transform\n *\n * @member {PIXI.Transform}\n */\n this.tileTransform = new Transform();\n\n // /// private\n\n /**\n * The with of the tiling sprite\n *\n * @member {number}\n * @private\n */\n this._width = width;\n\n /**\n * The height of the tiling sprite\n *\n * @member {number}\n * @private\n */\n this._height = height;\n\n /**\n * Canvas pattern\n *\n * @type {CanvasPattern}\n * @private\n */\n this._canvasPattern = null;\n\n /**\n * matrix that is applied to UV to get the coords in Texture normalized space to coords in BaseTexture space\n *\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = texture.uvMatrix || new TextureMatrix(texture);\n\n /**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_render' method.\n *\n * @member {string}\n * @default 'tilingSprite'\n */\n this.pluginName = 'tilingSprite';\n\n /**\n * Whether or not anchor affects uvs\n *\n * @member {boolean}\n * @default false\n */\n this.uvRespectAnchor = false;\n }\n\n if ( Sprite ) TilingSprite.__proto__ = Sprite;\n TilingSprite.prototype = Object.create( Sprite && Sprite.prototype );\n TilingSprite.prototype.constructor = TilingSprite;\n\n var prototypeAccessors = { clampMargin: { configurable: true },tileScale: { configurable: true },tilePosition: { configurable: true },width: { configurable: true },height: { configurable: true } };\n /**\n * Changes frame clamping in corresponding textureTransform, shortcut\n * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas\n *\n * @default 0.5\n * @member {number}\n */\n prototypeAccessors.clampMargin.get = function ()\n {\n return this.uvMatrix.clampMargin;\n };\n\n prototypeAccessors.clampMargin.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uvMatrix.clampMargin = value;\n this.uvMatrix.update(true);\n };\n\n /**\n * The scaling of the image that is being tiled\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.tileScale.get = function ()\n {\n return this.tileTransform.scale;\n };\n\n prototypeAccessors.tileScale.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.tileTransform.scale.copyFrom(value);\n };\n\n /**\n * The offset of the image that is being tiled\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.tilePosition.get = function ()\n {\n return this.tileTransform.position;\n };\n\n prototypeAccessors.tilePosition.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.tileTransform.position.copyFrom(value);\n };\n\n /**\n * @private\n */\n TilingSprite.prototype._onTextureUpdate = function _onTextureUpdate ()\n {\n if (this.uvMatrix)\n {\n this.uvMatrix.texture = this._texture;\n }\n this._cachedTint = 0xFFFFFF;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n TilingSprite.prototype._render = function _render (renderer)\n {\n // tweak our texture temporarily..\n var texture = this._texture;\n\n if (!texture || !texture.valid)\n {\n return;\n }\n\n this.tileTransform.updateLocalTransform();\n this.uvMatrix.update();\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n renderer.plugins[this.pluginName].render(this);\n };\n\n /**\n * Updates the bounds of the tiling sprite.\n *\n * @protected\n */\n TilingSprite.prototype._calculateBounds = function _calculateBounds ()\n {\n var minX = this._width * -this._anchor._x;\n var minY = this._height * -this._anchor._y;\n var maxX = this._width * (1 - this._anchor._x);\n var maxY = this._height * (1 - this._anchor._y);\n\n this._bounds.addFrame(this.transform, minX, minY, maxX, maxY);\n };\n\n /**\n * Gets the local bounds of the sprite object.\n *\n * @param {PIXI.Rectangle} rect - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n TilingSprite.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n // we can do a fast local bounds if the sprite has no children!\n if (this.children.length === 0)\n {\n this._bounds.minX = this._width * -this._anchor._x;\n this._bounds.minY = this._height * -this._anchor._y;\n this._bounds.maxX = this._width * (1 - this._anchor._x);\n this._bounds.maxY = this._height * (1 - this._anchor._y);\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n }\n\n return Sprite.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * Checks if a point is inside this tiling sprite.\n *\n * @param {PIXI.Point} point - the point to check\n * @return {boolean} Whether or not the sprite contains the point.\n */\n TilingSprite.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, tempPoint);\n\n var width = this._width;\n var height = this._height;\n var x1 = -width * this.anchor._x;\n\n if (tempPoint.x >= x1 && tempPoint.x < x1 + width)\n {\n var y1 = -height * this.anchor._y;\n\n if (tempPoint.y >= y1 && tempPoint.y < y1 + height)\n {\n return true;\n }\n }\n\n return false;\n };\n\n /**\n * Destroys this sprite and optionally its texture and children\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well\n */\n TilingSprite.prototype.destroy = function destroy (options)\n {\n Sprite.prototype.destroy.call(this, options);\n\n this.tileTransform = null;\n this.uvMatrix = null;\n };\n\n /**\n * Helper function that creates a new tiling sprite based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source - Source to create texture from\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @return {PIXI.TilingSprite} The newly created texture\n */\n TilingSprite.from = function from (source, width, height)\n {\n return new TilingSprite(Texture.from(source), width, height);\n };\n\n /**\n * Helper function that creates a tiling sprite that will use a texture from the TextureCache based on the frameId\n * The frame ids are created when a Texture packer file has been loaded\n *\n * @static\n * @param {string} frameId - The frame Id of the texture in the cache\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @return {PIXI.TilingSprite} A new TilingSprite using a texture from the texture cache matching the frameId\n */\n TilingSprite.fromFrame = function fromFrame (frameId, width, height)\n {\n var texture = TextureCache[frameId];\n\n if (!texture)\n {\n throw new Error((\"The frameId \\\"\" + frameId + \"\\\" does not exist in the texture cache \" + (this)));\n }\n\n return new TilingSprite(texture, width, height);\n };\n\n /**\n * Helper function that creates a sprite that will contain a texture based on an image url\n * If the image is not in the texture cache it will be loaded\n *\n * @static\n * @param {string} imageId - The image url of the texture\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @param {Object} [options] - See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.TilingSprite} A new TilingSprite using a texture from the texture cache matching the image id\n */\n TilingSprite.fromImage = function fromImage (imageId, width, height, options)\n {\n // Fallback support for crossorigin, scaleMode parameters\n if (options && typeof options !== 'object')\n {\n options = {\n scaleMode: arguments[4],\n resourceOptions: {\n crossorigin: arguments[3],\n },\n };\n }\n\n return new TilingSprite(Texture.from(imageId, options), width, height);\n };\n\n /**\n * The width of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this._width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._width = value;\n };\n\n /**\n * The height of the TilingSprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this._height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._height = value;\n };\n\n Object.defineProperties( TilingSprite.prototype, prototypeAccessors );\n\n return TilingSprite;\n}(Sprite));\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform mat3 uTransform;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = (uTransform * vec3(aTextureCoord, 1.0)).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform vec4 uColor;\\nuniform mat3 uMapCoord;\\nuniform vec4 uClampFrame;\\nuniform vec2 uClampOffset;\\n\\nvoid main(void)\\n{\\n vec2 coord = mod(vTextureCoord - uClampOffset, vec2(1.0, 1.0)) + uClampOffset;\\n coord = (uMapCoord * vec3(coord, 1.0)).xy;\\n coord = clamp(coord, uClampFrame.xy, uClampFrame.zw);\\n\\n vec4 sample = texture2D(uSampler, coord);\\n gl_FragColor = sample * uColor;\\n}\\n\";\n\nvar fragmentSimple = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform vec4 uColor;\\n\\nvoid main(void)\\n{\\n vec4 sample = texture2D(uSampler, vTextureCoord);\\n gl_FragColor = sample * uColor;\\n}\\n\";\n\nvar tempMat = new Matrix();\n\n/**\n * WebGL renderer plugin for tiling sprites\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.ObjectRenderer\n */\nvar TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function TilingSpriteRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n var uniforms = { globals: this.renderer.globalUniforms };\n\n this.shader = Shader.from(vertex, fragment, uniforms);\n\n this.simpleShader = Shader.from(vertex, fragmentSimple, uniforms);\n\n this.quad = new QuadUv();\n }\n\n if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer;\n TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer;\n\n /**\n *\n * @param {PIXI.TilingSprite} ts tilingSprite to be rendered\n */\n TilingSpriteRenderer.prototype.render = function render (ts)\n {\n var renderer = this.renderer;\n var quad = this.quad;\n\n var vertices = quad.vertices;\n\n vertices[0] = vertices[6] = (ts._width) * -ts.anchor.x;\n vertices[1] = vertices[3] = ts._height * -ts.anchor.y;\n\n vertices[2] = vertices[4] = (ts._width) * (1.0 - ts.anchor.x);\n vertices[5] = vertices[7] = ts._height * (1.0 - ts.anchor.y);\n\n if (ts.uvRespectAnchor)\n {\n vertices = quad.uvs;\n\n vertices[0] = vertices[6] = -ts.anchor.x;\n vertices[1] = vertices[3] = -ts.anchor.y;\n\n vertices[2] = vertices[4] = 1.0 - ts.anchor.x;\n vertices[5] = vertices[7] = 1.0 - ts.anchor.y;\n }\n\n quad.invalidate();\n\n var tex = ts._texture;\n var baseTex = tex.baseTexture;\n var lt = ts.tileTransform.localTransform;\n var uv = ts.uvMatrix;\n var isSimple = baseTex.isPowerOfTwo\n && tex.frame.width === baseTex.width && tex.frame.height === baseTex.height;\n\n // auto, force repeat wrapMode for big tiling textures\n if (isSimple)\n {\n if (!baseTex._glTextures[renderer.CONTEXT_UID])\n {\n if (baseTex.wrapMode === WRAP_MODES.CLAMP)\n {\n baseTex.wrapMode = WRAP_MODES.REPEAT;\n }\n }\n else\n {\n isSimple = baseTex.wrapMode !== WRAP_MODES.CLAMP;\n }\n }\n\n var shader = isSimple ? this.simpleShader : this.shader;\n\n var w = tex.width;\n var h = tex.height;\n var W = ts._width;\n var H = ts._height;\n\n tempMat.set(lt.a * w / W,\n lt.b * w / H,\n lt.c * h / W,\n lt.d * h / H,\n lt.tx / W,\n lt.ty / H);\n\n // that part is the same as above:\n // tempMat.identity();\n // tempMat.scale(tex.width, tex.height);\n // tempMat.prepend(lt);\n // tempMat.scale(1.0 / ts._width, 1.0 / ts._height);\n\n tempMat.invert();\n if (isSimple)\n {\n tempMat.prepend(uv.mapCoord);\n }\n else\n {\n shader.uniforms.uMapCoord = uv.mapCoord.toArray(true);\n shader.uniforms.uClampFrame = uv.uClampFrame;\n shader.uniforms.uClampOffset = uv.uClampOffset;\n }\n\n shader.uniforms.uTransform = tempMat.toArray(true);\n shader.uniforms.uColor = premultiplyTintToRgba(ts.tint, ts.worldAlpha,\n shader.uniforms.uColor, baseTex.premultiplyAlpha);\n shader.uniforms.translationMatrix = ts.transform.worldTransform.toArray(true);\n shader.uniforms.uSampler = tex;\n\n renderer.shader.bind(shader);\n renderer.geometry.bind(quad);// , renderer.shader.getGLShader());\n\n renderer.state.setBlendMode(correctBlendMode(ts.blendMode, baseTex.premultiplyAlpha));\n renderer.geometry.draw(this.renderer.gl.TRIANGLES, 6, 0);\n };\n\n return TilingSpriteRenderer;\n}(ObjectRenderer));\n\nexport { TilingSprite, TilingSpriteRenderer };\n//# sourceMappingURL=sprite-tiling.es.js.map\n","/*!\n * @pixi/text-bitmap - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/text-bitmap is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture } from '@pixi/core';\nimport { Container } from '@pixi/display';\nimport { Point, Rectangle, ObservablePoint } from '@pixi/math';\nimport { settings } from '@pixi/settings';\nimport { Sprite } from '@pixi/sprite';\nimport { removeItems, getResolutionOfUrl } from '@pixi/utils';\nimport { LoaderResource } from '@pixi/loaders';\n\n/**\n * A BitmapText object will create a line or multiple lines of text using bitmap font.\n *\n * The primary advantage of this class over Text is that all of your textures are pre-generated and loading,\n * meaning that rendering is fast, and changing text has no performance implications.\n *\n * The primary disadvantage is that you need to preload the bitmap font assets, and thus the styling is set in stone.\n * Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters.\n *\n * To split a line you can use '\\n', '\\r' or '\\r\\n' in your string.\n *\n * You can generate the fnt files using\n * http://www.angelcode.com/products/bmfont/ for Windows or\n * http://www.bmglyph.com/ for Mac.\n *\n * A BitmapText can only be created when the font is loaded.\n *\n * ```js\n * // in this case the font is in a file called 'desyrel.fnt'\n * let bitmapText = new PIXI.BitmapText(\"text using a fancy font!\", {font: \"35px Desyrel\", align: \"right\"});\n * ```\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar BitmapText = /*@__PURE__*/(function (Container) {\n function BitmapText(text, style)\n {\n var this$1 = this;\n if ( style === void 0 ) style = {};\n\n Container.call(this);\n\n /**\n * Private tracker for the width of the overall text\n *\n * @member {number}\n * @private\n */\n this._textWidth = 0;\n\n /**\n * Private tracker for the height of the overall text\n *\n * @member {number}\n * @private\n */\n this._textHeight = 0;\n\n /**\n * Private tracker for the letter sprite pool.\n *\n * @member {PIXI.Sprite[]}\n * @private\n */\n this._glyphs = [];\n\n /**\n * Private tracker for the current style.\n *\n * @member {object}\n * @private\n */\n this._font = {\n tint: style.tint !== undefined ? style.tint : 0xFFFFFF,\n align: style.align || 'left',\n name: null,\n size: 0,\n };\n\n /**\n * Private tracker for the current font.\n *\n * @member {object}\n * @private\n */\n this.font = style.font; // run font setter\n\n /**\n * Private tracker for the current text.\n *\n * @member {string}\n * @private\n */\n this._text = text;\n\n /**\n * The max width of this bitmap text in pixels. If the text provided is longer than the\n * value provided, line breaks will be automatically inserted in the last whitespace.\n * Disable by setting value to 0\n *\n * @member {number}\n * @private\n */\n this._maxWidth = 0;\n\n /**\n * The max line height. This is useful when trying to use the total height of the Text,\n * ie: when trying to vertically align.\n *\n * @member {number}\n * @private\n */\n this._maxLineHeight = 0;\n\n /**\n * Letter spacing. This is useful for setting the space between characters.\n * @member {number}\n * @private\n */\n this._letterSpacing = 0;\n\n /**\n * Text anchor. read-only\n *\n * @member {PIXI.ObservablePoint}\n * @private\n */\n this._anchor = new ObservablePoint(function () { this$1.dirty = true; }, this, 0, 0);\n\n /**\n * The dirty state of this object.\n *\n * @member {boolean}\n */\n this.dirty = false;\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n this.roundPixels = settings.ROUND_PIXELS;\n\n this.updateText();\n }\n\n if ( Container ) BitmapText.__proto__ = Container;\n BitmapText.prototype = Object.create( Container && Container.prototype );\n BitmapText.prototype.constructor = BitmapText;\n\n var prototypeAccessors = { tint: { configurable: true },align: { configurable: true },anchor: { configurable: true },font: { configurable: true },text: { configurable: true },maxWidth: { configurable: true },maxLineHeight: { configurable: true },textWidth: { configurable: true },letterSpacing: { configurable: true },textHeight: { configurable: true } };\n\n /**\n * Renders text and updates it when needed\n *\n * @private\n */\n BitmapText.prototype.updateText = function updateText ()\n {\n var data = BitmapText.fonts[this._font.name];\n var scale = this._font.size / data.size;\n var pos = new Point();\n var chars = [];\n var lineWidths = [];\n var text = this._text.replace(/(?:\\r\\n|\\r)/g, '\\n') || ' ';\n var textLength = text.length;\n var maxWidth = this._maxWidth * data.size / this._font.size;\n\n var prevCharCode = null;\n var lastLineWidth = 0;\n var maxLineWidth = 0;\n var line = 0;\n var lastBreakPos = -1;\n var lastBreakWidth = 0;\n var spacesRemoved = 0;\n var maxLineHeight = 0;\n\n for (var i = 0; i < textLength; i++)\n {\n var charCode = text.charCodeAt(i);\n var char = text.charAt(i);\n\n if ((/(?:\\s)/).test(char))\n {\n lastBreakPos = i;\n lastBreakWidth = lastLineWidth;\n }\n\n if (char === '\\r' || char === '\\n')\n {\n lineWidths.push(lastLineWidth);\n maxLineWidth = Math.max(maxLineWidth, lastLineWidth);\n ++line;\n ++spacesRemoved;\n\n pos.x = 0;\n pos.y += data.lineHeight;\n prevCharCode = null;\n continue;\n }\n\n var charData = data.chars[charCode];\n\n if (!charData)\n {\n continue;\n }\n\n if (prevCharCode && charData.kerning[prevCharCode])\n {\n pos.x += charData.kerning[prevCharCode];\n }\n\n chars.push({\n texture: charData.texture,\n line: line,\n charCode: charCode,\n position: new Point(pos.x + charData.xOffset + (this._letterSpacing / 2), pos.y + charData.yOffset),\n });\n pos.x += charData.xAdvance + this._letterSpacing;\n lastLineWidth = pos.x;\n maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height));\n prevCharCode = charCode;\n\n if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth)\n {\n ++spacesRemoved;\n removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos);\n i = lastBreakPos;\n lastBreakPos = -1;\n\n lineWidths.push(lastBreakWidth);\n maxLineWidth = Math.max(maxLineWidth, lastBreakWidth);\n line++;\n\n pos.x = 0;\n pos.y += data.lineHeight;\n prevCharCode = null;\n }\n }\n\n var lastChar = text.charAt(text.length - 1);\n\n if (lastChar !== '\\r' && lastChar !== '\\n')\n {\n if ((/(?:\\s)/).test(lastChar))\n {\n lastLineWidth = lastBreakWidth;\n }\n\n lineWidths.push(lastLineWidth);\n maxLineWidth = Math.max(maxLineWidth, lastLineWidth);\n }\n\n var lineAlignOffsets = [];\n\n for (var i$1 = 0; i$1 <= line; i$1++)\n {\n var alignOffset = 0;\n\n if (this._font.align === 'right')\n {\n alignOffset = maxLineWidth - lineWidths[i$1];\n }\n else if (this._font.align === 'center')\n {\n alignOffset = (maxLineWidth - lineWidths[i$1]) / 2;\n }\n\n lineAlignOffsets.push(alignOffset);\n }\n\n var lenChars = chars.length;\n var tint = this.tint;\n\n for (var i$2 = 0; i$2 < lenChars; i$2++)\n {\n var c = this._glyphs[i$2]; // get the next glyph sprite\n\n if (c)\n {\n c.texture = chars[i$2].texture;\n }\n else\n {\n c = new Sprite(chars[i$2].texture);\n c.roundPixels = this.roundPixels;\n this._glyphs.push(c);\n }\n\n c.position.x = (chars[i$2].position.x + lineAlignOffsets[chars[i$2].line]) * scale;\n c.position.y = chars[i$2].position.y * scale;\n c.scale.x = c.scale.y = scale;\n c.tint = tint;\n\n if (!c.parent)\n {\n this.addChild(c);\n }\n }\n\n // remove unnecessary children.\n for (var i$3 = lenChars; i$3 < this._glyphs.length; ++i$3)\n {\n this.removeChild(this._glyphs[i$3]);\n }\n\n this._textWidth = maxLineWidth * scale;\n this._textHeight = (pos.y + data.lineHeight) * scale;\n\n // apply anchor\n if (this.anchor.x !== 0 || this.anchor.y !== 0)\n {\n for (var i$4 = 0; i$4 < lenChars; i$4++)\n {\n this._glyphs[i$4].x -= this._textWidth * this.anchor.x;\n this._glyphs[i$4].y -= this._textHeight * this.anchor.y;\n }\n }\n this._maxLineHeight = maxLineHeight * scale;\n };\n\n /**\n * Updates the transform of this object\n *\n * @private\n */\n BitmapText.prototype.updateTransform = function updateTransform ()\n {\n this.validate();\n this.containerUpdateTransform();\n };\n\n /**\n * Validates text before calling parent's getLocalBounds\n *\n * @return {PIXI.Rectangle} The rectangular bounding area\n */\n BitmapText.prototype.getLocalBounds = function getLocalBounds ()\n {\n this.validate();\n\n return Container.prototype.getLocalBounds.call(this);\n };\n\n /**\n * Updates text when needed\n *\n * @private\n */\n BitmapText.prototype.validate = function validate ()\n {\n if (this.dirty)\n {\n this.updateText();\n this.dirty = false;\n }\n };\n\n /**\n * The tint of the BitmapText object.\n *\n * @member {number}\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._font.tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._font.tint = (typeof value === 'number' && value >= 0) ? value : 0xFFFFFF;\n\n this.dirty = true;\n };\n\n /**\n * The alignment of the BitmapText object.\n *\n * @member {string}\n * @default 'left'\n */\n prototypeAccessors.align.get = function ()\n {\n return this._font.align;\n };\n\n prototypeAccessors.align.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._font.align = value || 'left';\n\n this.dirty = true;\n };\n\n /**\n * The anchor sets the origin point of the text.\n *\n * The default is `(0,0)`, this means the text's origin is the top left.\n *\n * Setting the anchor to `(0.5,0.5)` means the text's origin is centered.\n *\n * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner.\n *\n * @member {PIXI.Point | number}\n */\n prototypeAccessors.anchor.get = function ()\n {\n return this._anchor;\n };\n\n prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (typeof value === 'number')\n {\n this._anchor.set(value);\n }\n else\n {\n this._anchor.copyFrom(value);\n }\n };\n\n /**\n * The font descriptor of the BitmapText object.\n *\n * @member {object}\n */\n prototypeAccessors.font.get = function ()\n {\n return this._font;\n };\n\n prototypeAccessors.font.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (!value)\n {\n return;\n }\n\n if (typeof value === 'string')\n {\n value = value.split(' ');\n\n this._font.name = value.length === 1 ? value[0] : value.slice(1).join(' ');\n this._font.size = value.length >= 2 ? parseInt(value[0], 10) : BitmapText.fonts[this._font.name].size;\n }\n else\n {\n this._font.name = value.name;\n this._font.size = typeof value.size === 'number' ? value.size : parseInt(value.size, 10);\n }\n\n this.dirty = true;\n };\n\n /**\n * The text of the BitmapText object.\n *\n * @member {string}\n */\n prototypeAccessors.text.get = function ()\n {\n return this._text;\n };\n\n prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc\n {\n text = String(text === null || text === undefined ? '' : text);\n\n if (this._text === text)\n {\n return;\n }\n this._text = text;\n this.dirty = true;\n };\n\n /**\n * The max width of this bitmap text in pixels. If the text provided is longer than the\n * value provided, line breaks will be automatically inserted in the last whitespace.\n * Disable by setting the value to 0.\n *\n * @member {number}\n */\n prototypeAccessors.maxWidth.get = function ()\n {\n return this._maxWidth;\n };\n\n prototypeAccessors.maxWidth.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._maxWidth === value)\n {\n return;\n }\n this._maxWidth = value;\n this.dirty = true;\n };\n\n /**\n * The max line height. This is useful when trying to use the total height of the Text,\n * i.e. when trying to vertically align.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.maxLineHeight.get = function ()\n {\n this.validate();\n\n return this._maxLineHeight;\n };\n\n /**\n * The width of the overall text, different from fontSize,\n * which is defined in the style object.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.textWidth.get = function ()\n {\n this.validate();\n\n return this._textWidth;\n };\n\n /**\n * Additional space between characters.\n *\n * @member {number}\n */\n prototypeAccessors.letterSpacing.get = function ()\n {\n return this._letterSpacing;\n };\n\n prototypeAccessors.letterSpacing.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._letterSpacing !== value)\n {\n this._letterSpacing = value;\n this.dirty = true;\n }\n };\n\n /**\n * The height of the overall text, different from fontSize,\n * which is defined in the style object.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.textHeight.get = function ()\n {\n this.validate();\n\n return this._textHeight;\n };\n\n /**\n * Register a bitmap font with data and a texture.\n *\n * @static\n * @param {XMLDocument} xml - The XML document data.\n * @param {Object.|PIXI.Texture|PIXI.Texture[]} textures - List of textures for each page.\n * If providing an object, the key is the `` element's `file` attribute in the FNT file.\n * @return {Object} Result font object with font, size, lineHeight and char fields.\n */\n BitmapText.registerFont = function registerFont (xml, textures)\n {\n var data = {};\n var info = xml.getElementsByTagName('info')[0];\n var common = xml.getElementsByTagName('common')[0];\n var pages = xml.getElementsByTagName('page');\n var res = getResolutionOfUrl(pages[0].getAttribute('file'), settings.RESOLUTION);\n var pagesTextures = {};\n\n data.font = info.getAttribute('face');\n data.size = parseInt(info.getAttribute('size'), 10);\n data.lineHeight = parseInt(common.getAttribute('lineHeight'), 10) / res;\n data.chars = {};\n\n // Single texture, convert to list\n if (textures instanceof Texture)\n {\n textures = [textures];\n }\n\n // Convert the input Texture, Textures or object\n // into a page Texture lookup by \"id\"\n for (var i = 0; i < pages.length; i++)\n {\n var id = pages[i].getAttribute('id');\n var file = pages[i].getAttribute('file');\n\n pagesTextures[id] = textures instanceof Array ? textures[i] : textures[file];\n }\n\n // parse letters\n var letters = xml.getElementsByTagName('char');\n\n for (var i$1 = 0; i$1 < letters.length; i$1++)\n {\n var letter = letters[i$1];\n var charCode = parseInt(letter.getAttribute('id'), 10);\n var page = letter.getAttribute('page') || 0;\n var textureRect = new Rectangle(\n (parseInt(letter.getAttribute('x'), 10) / res) + (pagesTextures[page].frame.x / res),\n (parseInt(letter.getAttribute('y'), 10) / res) + (pagesTextures[page].frame.y / res),\n parseInt(letter.getAttribute('width'), 10) / res,\n parseInt(letter.getAttribute('height'), 10) / res\n );\n\n data.chars[charCode] = {\n xOffset: parseInt(letter.getAttribute('xoffset'), 10) / res,\n yOffset: parseInt(letter.getAttribute('yoffset'), 10) / res,\n xAdvance: parseInt(letter.getAttribute('xadvance'), 10) / res,\n kerning: {},\n texture: new Texture(pagesTextures[page].baseTexture, textureRect),\n page: page,\n };\n }\n\n // parse kernings\n var kernings = xml.getElementsByTagName('kerning');\n\n for (var i$2 = 0; i$2 < kernings.length; i$2++)\n {\n var kerning = kernings[i$2];\n var first = parseInt(kerning.getAttribute('first'), 10) / res;\n var second = parseInt(kerning.getAttribute('second'), 10) / res;\n var amount = parseInt(kerning.getAttribute('amount'), 10) / res;\n\n if (data.chars[second])\n {\n data.chars[second].kerning[first] = amount;\n }\n }\n\n // I'm leaving this as a temporary fix so we can test the bitmap fonts in v3\n // but it's very likely to change\n BitmapText.fonts[data.font] = data;\n\n return data;\n };\n\n Object.defineProperties( BitmapText.prototype, prototypeAccessors );\n\n return BitmapText;\n}(Container));\n\nBitmapText.fonts = {};\n\n/**\n * {@link PIXI.Loader Loader} middleware for loading\n * bitmap-based fonts suitable for using with {@link PIXI.BitmapText}.\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar BitmapFontLoader = function BitmapFontLoader () {};\n\nBitmapFontLoader.parse = function parse (resource, texture)\n{\n resource.bitmapFont = BitmapText.registerFont(resource.data, texture);\n};\n\n/**\n * Called when the plugin is installed.\n *\n * @see PIXI.Loader.registerPlugin\n */\nBitmapFontLoader.add = function add ()\n{\n LoaderResource.setExtensionXhrType('fnt', LoaderResource.XHR_RESPONSE_TYPE.DOCUMENT);\n};\n\n/**\n * Replacement for NodeJS's path.dirname\n * @private\n * @param {string} url Path to get directory for\n */\nBitmapFontLoader.dirname = function dirname (url)\n{\n var dir = url\n .replace(/\\/$/, '') // replace trailing slash\n .replace(/\\/[^\\/]*$/, ''); // remove everything after the last\n\n // File request is relative, use current directory\n if (dir === url)\n {\n return '.';\n }\n // Started with a slash\n else if (dir === '')\n {\n return '/';\n }\n\n return dir;\n};\n\n/**\n * Called after a resource is loaded.\n * @see PIXI.Loader.loaderMiddleware\n * @param {PIXI.LoaderResource} resource\n * @param {function} next\n */\nBitmapFontLoader.use = function use (resource, next)\n{\n // skip if no data or not xml data\n if (!resource.data || resource.type !== LoaderResource.TYPE.XML)\n {\n next();\n\n return;\n }\n\n // skip if not bitmap font data, using some silly duck-typing\n if (resource.data.getElementsByTagName('page').length === 0\n || resource.data.getElementsByTagName('info').length === 0\n || resource.data.getElementsByTagName('info')[0].getAttribute('face') === null\n )\n {\n next();\n\n return;\n }\n\n var xmlUrl = !resource.isDataUrl ? BitmapFontLoader.dirname(resource.url) : '';\n\n if (resource.isDataUrl)\n {\n if (xmlUrl === '.')\n {\n xmlUrl = '';\n }\n\n if (this.baseUrl && xmlUrl)\n {\n // if baseurl has a trailing slash then add one to xmlUrl so the replace works below\n if (this.baseUrl.charAt(this.baseUrl.length - 1) === '/')\n {\n xmlUrl += '/';\n }\n }\n }\n\n // remove baseUrl from xmlUrl\n xmlUrl = xmlUrl.replace(this.baseUrl, '');\n\n // if there is an xmlUrl now, it needs a trailing slash. Ensure that it does if the string isn't empty.\n if (xmlUrl && xmlUrl.charAt(xmlUrl.length - 1) !== '/')\n {\n xmlUrl += '/';\n }\n\n var pages = resource.data.getElementsByTagName('page');\n var textures = {};\n\n // Handle completed, when the number of textures\n // load is the same number as references in the fnt file\n var completed = function (page) {\n textures[page.metadata.pageFile] = page.texture;\n\n if (Object.keys(textures).length === pages.length)\n {\n BitmapFontLoader.parse(resource, textures);\n next();\n }\n };\n\n for (var i = 0; i < pages.length; ++i)\n {\n var pageFile = pages[i].getAttribute('file');\n var url = xmlUrl + pageFile;\n var exists = false;\n\n // incase the image is loaded outside\n // using the same loader, resource will be available\n for (var name in this.resources)\n {\n var bitmapResource = this.resources[name];\n\n if (bitmapResource.url === url)\n {\n bitmapResource.metadata.pageFile = pageFile;\n if (bitmapResource.texture)\n {\n completed(bitmapResource);\n }\n else\n {\n bitmapResource.onAfterMiddleware.add(completed);\n }\n exists = true;\n break;\n }\n }\n\n // texture is not loaded, we'll attempt to add\n // it to the load and add the texture to the list\n if (!exists)\n {\n // Standard loading options for images\n var options = {\n crossOrigin: resource.crossOrigin,\n loadType: LoaderResource.LOAD_TYPE.IMAGE,\n metadata: Object.assign(\n { pageFile: pageFile },\n resource.metadata.imageMetadata\n ),\n parentResource: resource,\n };\n\n this.add(url, options, completed);\n }\n }\n};\n\nexport { BitmapFontLoader, BitmapText };\n//# sourceMappingURL=text-bitmap.es.js.map\n","/*!\n * @pixi/filter-color-matrix - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/filter-color-matrix is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Filter, defaultFilterVertex } from '@pixi/core';\n\nvar fragment = \"varying vec2 vTextureCoord;\\nuniform sampler2D uSampler;\\nuniform float m[20];\\nuniform float uAlpha;\\n\\nvoid main(void)\\n{\\n vec4 c = texture2D(uSampler, vTextureCoord);\\n\\n if (uAlpha == 0.0) {\\n gl_FragColor = c;\\n return;\\n }\\n\\n // Un-premultiply alpha before applying the color matrix. See issue #3539.\\n if (c.a > 0.0) {\\n c.rgb /= c.a;\\n }\\n\\n vec4 result;\\n\\n result.r = (m[0] * c.r);\\n result.r += (m[1] * c.g);\\n result.r += (m[2] * c.b);\\n result.r += (m[3] * c.a);\\n result.r += m[4];\\n\\n result.g = (m[5] * c.r);\\n result.g += (m[6] * c.g);\\n result.g += (m[7] * c.b);\\n result.g += (m[8] * c.a);\\n result.g += m[9];\\n\\n result.b = (m[10] * c.r);\\n result.b += (m[11] * c.g);\\n result.b += (m[12] * c.b);\\n result.b += (m[13] * c.a);\\n result.b += m[14];\\n\\n result.a = (m[15] * c.r);\\n result.a += (m[16] * c.g);\\n result.a += (m[17] * c.b);\\n result.a += (m[18] * c.a);\\n result.a += m[19];\\n\\n vec3 rgb = mix(c.rgb, result.rgb, uAlpha);\\n\\n // Premultiply alpha again.\\n rgb *= result.a;\\n\\n gl_FragColor = vec4(rgb, result.a);\\n}\\n\";\n\n/**\n * The ColorMatrixFilter class lets you apply a 5x4 matrix transformation on the RGBA\n * color and alpha values of every pixel on your displayObject to produce a result\n * with a new set of RGBA color and alpha values. It's pretty powerful!\n *\n * ```js\n * let colorMatrix = new PIXI.filters.ColorMatrixFilter();\n * container.filters = [colorMatrix];\n * colorMatrix.contrast(2);\n * ```\n * @author Clément Chenebault \n * @class\n * @extends PIXI.Filter\n * @memberof PIXI.filters\n */\nvar ColorMatrixFilter = /*@__PURE__*/(function (Filter) {\n function ColorMatrixFilter()\n {\n var uniforms = {\n m: new Float32Array([1, 0, 0, 0, 0,\n 0, 1, 0, 0, 0,\n 0, 0, 1, 0, 0,\n 0, 0, 0, 1, 0]),\n uAlpha: 1,\n };\n\n Filter.call(this, defaultFilterVertex, fragment, uniforms);\n\n this.alpha = 1;\n }\n\n if ( Filter ) ColorMatrixFilter.__proto__ = Filter;\n ColorMatrixFilter.prototype = Object.create( Filter && Filter.prototype );\n ColorMatrixFilter.prototype.constructor = ColorMatrixFilter;\n\n var prototypeAccessors = { matrix: { configurable: true },alpha: { configurable: true } };\n\n /**\n * Transforms current matrix and set the new one\n *\n * @param {number[]} matrix - 5x4 matrix\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype._loadMatrix = function _loadMatrix (matrix, multiply)\n {\n if ( multiply === void 0 ) multiply = false;\n\n var newMatrix = matrix;\n\n if (multiply)\n {\n this._multiply(newMatrix, this.uniforms.m, matrix);\n newMatrix = this._colorMatrix(newMatrix);\n }\n\n // set the new matrix\n this.uniforms.m = newMatrix;\n };\n\n /**\n * Multiplies two mat5's\n *\n * @private\n * @param {number[]} out - 5x4 matrix the receiving matrix\n * @param {number[]} a - 5x4 matrix the first operand\n * @param {number[]} b - 5x4 matrix the second operand\n * @returns {number[]} 5x4 matrix\n */\n ColorMatrixFilter.prototype._multiply = function _multiply (out, a, b)\n {\n // Red Channel\n out[0] = (a[0] * b[0]) + (a[1] * b[5]) + (a[2] * b[10]) + (a[3] * b[15]);\n out[1] = (a[0] * b[1]) + (a[1] * b[6]) + (a[2] * b[11]) + (a[3] * b[16]);\n out[2] = (a[0] * b[2]) + (a[1] * b[7]) + (a[2] * b[12]) + (a[3] * b[17]);\n out[3] = (a[0] * b[3]) + (a[1] * b[8]) + (a[2] * b[13]) + (a[3] * b[18]);\n out[4] = (a[0] * b[4]) + (a[1] * b[9]) + (a[2] * b[14]) + (a[3] * b[19]) + a[4];\n\n // Green Channel\n out[5] = (a[5] * b[0]) + (a[6] * b[5]) + (a[7] * b[10]) + (a[8] * b[15]);\n out[6] = (a[5] * b[1]) + (a[6] * b[6]) + (a[7] * b[11]) + (a[8] * b[16]);\n out[7] = (a[5] * b[2]) + (a[6] * b[7]) + (a[7] * b[12]) + (a[8] * b[17]);\n out[8] = (a[5] * b[3]) + (a[6] * b[8]) + (a[7] * b[13]) + (a[8] * b[18]);\n out[9] = (a[5] * b[4]) + (a[6] * b[9]) + (a[7] * b[14]) + (a[8] * b[19]) + a[9];\n\n // Blue Channel\n out[10] = (a[10] * b[0]) + (a[11] * b[5]) + (a[12] * b[10]) + (a[13] * b[15]);\n out[11] = (a[10] * b[1]) + (a[11] * b[6]) + (a[12] * b[11]) + (a[13] * b[16]);\n out[12] = (a[10] * b[2]) + (a[11] * b[7]) + (a[12] * b[12]) + (a[13] * b[17]);\n out[13] = (a[10] * b[3]) + (a[11] * b[8]) + (a[12] * b[13]) + (a[13] * b[18]);\n out[14] = (a[10] * b[4]) + (a[11] * b[9]) + (a[12] * b[14]) + (a[13] * b[19]) + a[14];\n\n // Alpha Channel\n out[15] = (a[15] * b[0]) + (a[16] * b[5]) + (a[17] * b[10]) + (a[18] * b[15]);\n out[16] = (a[15] * b[1]) + (a[16] * b[6]) + (a[17] * b[11]) + (a[18] * b[16]);\n out[17] = (a[15] * b[2]) + (a[16] * b[7]) + (a[17] * b[12]) + (a[18] * b[17]);\n out[18] = (a[15] * b[3]) + (a[16] * b[8]) + (a[17] * b[13]) + (a[18] * b[18]);\n out[19] = (a[15] * b[4]) + (a[16] * b[9]) + (a[17] * b[14]) + (a[18] * b[19]) + a[19];\n\n return out;\n };\n\n /**\n * Create a Float32 Array and normalize the offset component to 0-1\n *\n * @private\n * @param {number[]} matrix - 5x4 matrix\n * @return {number[]} 5x4 matrix with all values between 0-1\n */\n ColorMatrixFilter.prototype._colorMatrix = function _colorMatrix (matrix)\n {\n // Create a Float32 Array and normalize the offset component to 0-1\n var m = new Float32Array(matrix);\n\n m[4] /= 255;\n m[9] /= 255;\n m[14] /= 255;\n m[19] /= 255;\n\n return m;\n };\n\n /**\n * Adjusts brightness\n *\n * @param {number} b - value of the brigthness (0-1, where 0 is black)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.brightness = function brightness (b, multiply)\n {\n var matrix = [\n b, 0, 0, 0, 0,\n 0, b, 0, 0, 0,\n 0, 0, b, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the matrices in grey scales\n *\n * @param {number} scale - value of the grey (0-1, where 0 is black)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.greyscale = function greyscale (scale, multiply)\n {\n var matrix = [\n scale, scale, scale, 0, 0,\n scale, scale, scale, 0, 0,\n scale, scale, scale, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the black and white matrice.\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.blackAndWhite = function blackAndWhite (multiply)\n {\n var matrix = [\n 0.3, 0.6, 0.1, 0, 0,\n 0.3, 0.6, 0.1, 0, 0,\n 0.3, 0.6, 0.1, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the hue property of the color\n *\n * @param {number} rotation - in degrees\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.hue = function hue (rotation, multiply)\n {\n rotation = (rotation || 0) / 180 * Math.PI;\n\n var cosR = Math.cos(rotation);\n var sinR = Math.sin(rotation);\n var sqrt = Math.sqrt;\n\n /* a good approximation for hue rotation\n This matrix is far better than the versions with magic luminance constants\n formerly used here, but also used in the starling framework (flash) and known from this\n old part of the internet: quasimondo.com/archives/000565.php\n\n This new matrix is based on rgb cube rotation in space. Look here for a more descriptive\n implementation as a shader not a general matrix:\n https://github.com/evanw/glfx.js/blob/58841c23919bd59787effc0333a4897b43835412/src/filters/adjust/huesaturation.js\n\n This is the source for the code:\n see http://stackoverflow.com/questions/8507885/shift-hue-of-an-rgb-color/8510751#8510751\n */\n\n var w = 1 / 3;\n var sqrW = sqrt(w); // weight is\n\n var a00 = cosR + ((1.0 - cosR) * w);\n var a01 = (w * (1.0 - cosR)) - (sqrW * sinR);\n var a02 = (w * (1.0 - cosR)) + (sqrW * sinR);\n\n var a10 = (w * (1.0 - cosR)) + (sqrW * sinR);\n var a11 = cosR + (w * (1.0 - cosR));\n var a12 = (w * (1.0 - cosR)) - (sqrW * sinR);\n\n var a20 = (w * (1.0 - cosR)) - (sqrW * sinR);\n var a21 = (w * (1.0 - cosR)) + (sqrW * sinR);\n var a22 = cosR + (w * (1.0 - cosR));\n\n var matrix = [\n a00, a01, a02, 0, 0,\n a10, a11, a12, 0, 0,\n a20, a21, a22, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the contrast matrix, increase the separation between dark and bright\n * Increase contrast : shadows darker and highlights brighter\n * Decrease contrast : bring the shadows up and the highlights down\n *\n * @param {number} amount - value of the contrast (0-1)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.contrast = function contrast (amount, multiply)\n {\n var v = (amount || 0) + 1;\n var o = -0.5 * (v - 1);\n\n var matrix = [\n v, 0, 0, 0, o,\n 0, v, 0, 0, o,\n 0, 0, v, 0, o,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the saturation matrix, increase the separation between colors\n * Increase saturation : increase contrast, brightness, and sharpness\n *\n * @param {number} amount - The saturation amount (0-1)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.saturate = function saturate (amount, multiply)\n {\n if ( amount === void 0 ) amount = 0;\n\n var x = (amount * 2 / 3) + 1;\n var y = ((x - 1) * -0.5);\n\n var matrix = [\n x, y, y, 0, 0,\n y, x, y, 0, 0,\n y, y, x, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Desaturate image (remove color)\n *\n * Call the saturate function\n *\n */\n ColorMatrixFilter.prototype.desaturate = function desaturate () // eslint-disable-line no-unused-vars\n {\n this.saturate(-1);\n };\n\n /**\n * Negative image (inverse of classic rgb matrix)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.negative = function negative (multiply)\n {\n var matrix = [\n -1, 0, 0, 1, 0,\n 0, -1, 0, 1, 0,\n 0, 0, -1, 1, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Sepia image\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.sepia = function sepia (multiply)\n {\n var matrix = [\n 0.393, 0.7689999, 0.18899999, 0, 0,\n 0.349, 0.6859999, 0.16799999, 0, 0,\n 0.272, 0.5339999, 0.13099999, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Color motion picture process invented in 1916 (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.technicolor = function technicolor (multiply)\n {\n var matrix = [\n 1.9125277891456083, -0.8545344976951645, -0.09155508482755585, 0, 11.793603434377337,\n -0.3087833385928097, 1.7658908555458428, -0.10601743074722245, 0, -70.35205161461398,\n -0.231103377548616, -0.7501899197440212, 1.847597816108189, 0, 30.950940869491138,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Polaroid filter\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.polaroid = function polaroid (multiply)\n {\n var matrix = [\n 1.438, -0.062, -0.062, 0, 0,\n -0.122, 1.378, -0.122, 0, 0,\n -0.016, -0.016, 1.483, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Filter who transforms : Red -> Blue and Blue -> Red\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.toBGR = function toBGR (multiply)\n {\n var matrix = [\n 0, 0, 1, 0, 0,\n 0, 1, 0, 0, 0,\n 1, 0, 0, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Color reversal film introduced by Eastman Kodak in 1935. (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.kodachrome = function kodachrome (multiply)\n {\n var matrix = [\n 1.1285582396593525, -0.3967382283601348, -0.03992559172921793, 0, 63.72958762196502,\n -0.16404339962244616, 1.0835251566291304, -0.05498805115633132, 0, 24.732407896706203,\n -0.16786010706155763, -0.5603416277695248, 1.6014850761964943, 0, 35.62982807460946,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Brown delicious browni filter (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.browni = function browni (multiply)\n {\n var matrix = [\n 0.5997023498159715, 0.34553243048391263, -0.2708298674538042, 0, 47.43192855600873,\n -0.037703249837783157, 0.8609577587992641, 0.15059552388459913, 0, -36.96841498319127,\n 0.24113635128153335, -0.07441037908422492, 0.44972182064877153, 0, -7.562075277591283,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Vintage filter (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.vintage = function vintage (multiply)\n {\n var matrix = [\n 0.6279345635605994, 0.3202183420819367, -0.03965408211312453, 0, 9.651285835294123,\n 0.02578397704808868, 0.6441188644374771, 0.03259127616149294, 0, 7.462829176470591,\n 0.0466055556782719, -0.0851232987247891, 0.5241648018700465, 0, 5.159190588235296,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * We don't know exactly what it does, kind of gradient map, but funny to play with!\n *\n * @param {number} desaturation - Tone values.\n * @param {number} toned - Tone values.\n * @param {string} lightColor - Tone values, example: `0xFFE580`\n * @param {string} darkColor - Tone values, example: `0xFFE580`\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.colorTone = function colorTone (desaturation, toned, lightColor, darkColor, multiply)\n {\n desaturation = desaturation || 0.2;\n toned = toned || 0.15;\n lightColor = lightColor || 0xFFE580;\n darkColor = darkColor || 0x338000;\n\n var lR = ((lightColor >> 16) & 0xFF) / 255;\n var lG = ((lightColor >> 8) & 0xFF) / 255;\n var lB = (lightColor & 0xFF) / 255;\n\n var dR = ((darkColor >> 16) & 0xFF) / 255;\n var dG = ((darkColor >> 8) & 0xFF) / 255;\n var dB = (darkColor & 0xFF) / 255;\n\n var matrix = [\n 0.3, 0.59, 0.11, 0, 0,\n lR, lG, lB, desaturation, 0,\n dR, dG, dB, toned, 0,\n lR - dR, lG - dG, lB - dB, 0, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Night effect\n *\n * @param {number} intensity - The intensity of the night effect.\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.night = function night (intensity, multiply)\n {\n intensity = intensity || 0.1;\n var matrix = [\n intensity * (-2.0), -intensity, 0, 0, 0,\n -intensity, 0, intensity, 0, 0,\n 0, intensity, intensity * 2.0, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Predator effect\n *\n * Erase the current matrix by setting a new indepent one\n *\n * @param {number} amount - how much the predator feels his future victim\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.predator = function predator (amount, multiply)\n {\n var matrix = [\n // row 1\n 11.224130630493164 * amount,\n -4.794486999511719 * amount,\n -2.8746118545532227 * amount,\n 0 * amount,\n 0.40342438220977783 * amount,\n // row 2\n -3.6330697536468506 * amount,\n 9.193157196044922 * amount,\n -2.951810836791992 * amount,\n 0 * amount,\n -1.316135048866272 * amount,\n // row 3\n -3.2184197902679443 * amount,\n -4.2375030517578125 * amount,\n 7.476448059082031 * amount,\n 0 * amount,\n 0.8044459223747253 * amount,\n // row 4\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * LSD effect\n *\n * Multiply the current matrix\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.lsd = function lsd (multiply)\n {\n var matrix = [\n 2, -0.4, 0.5, 0, 0,\n -0.5, 2, -0.4, 0, 0,\n -0.4, -0.5, 3, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Erase the current matrix by setting the default one\n *\n */\n ColorMatrixFilter.prototype.reset = function reset ()\n {\n var matrix = [\n 1, 0, 0, 0, 0,\n 0, 1, 0, 0, 0,\n 0, 0, 1, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, false);\n };\n\n /**\n * The matrix of the color matrix filter\n *\n * @member {number[]}\n * @default [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]\n */\n prototypeAccessors.matrix.get = function ()\n {\n return this.uniforms.m;\n };\n\n prototypeAccessors.matrix.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uniforms.m = value;\n };\n\n /**\n * The opacity value to use when mixing the original and resultant colors.\n *\n * When the value is 0, the original color is used without modification.\n * When the value is 1, the result color is used.\n * When in the range (0, 1) the color is interpolated between the original and result by this amount.\n *\n * @member {number}\n * @default 1\n */\n prototypeAccessors.alpha.get = function ()\n {\n return this.uniforms.uAlpha;\n };\n\n prototypeAccessors.alpha.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uniforms.uAlpha = value;\n };\n\n Object.defineProperties( ColorMatrixFilter.prototype, prototypeAccessors );\n\n return ColorMatrixFilter;\n}(Filter));\n\n// Americanized alias\nColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale;\n\nexport { ColorMatrixFilter };\n//# sourceMappingURL=filter-color-matrix.es.js.map\n","/*!\n * @pixi/mixin-cache-as-bitmap - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/mixin-cache-as-bitmap is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { RenderTexture, BaseTexture, Texture } from '@pixi/core';\nimport { Sprite } from '@pixi/sprite';\nimport { DisplayObject } from '@pixi/display';\nimport { Matrix } from '@pixi/math';\nimport { uid } from '@pixi/utils';\nimport { settings } from '@pixi/settings';\n\nvar _tempMatrix = new Matrix();\n\nDisplayObject.prototype._cacheAsBitmap = false;\nDisplayObject.prototype._cacheData = false;\n\n// figured theres no point adding ALL the extra variables to prototype.\n// this model can hold the information needed. This can also be generated on demand as\n// most objects are not cached as bitmaps.\n/**\n * @class\n * @ignore\n */\nvar CacheData = function CacheData()\n{\n this.textureCacheId = null;\n\n this.originalRender = null;\n this.originalRenderCanvas = null;\n this.originalCalculateBounds = null;\n this.originalGetLocalBounds = null;\n\n this.originalUpdateTransform = null;\n this.originalHitTest = null;\n this.originalDestroy = null;\n this.originalMask = null;\n this.originalFilterArea = null;\n this.sprite = null;\n};\n\nObject.defineProperties(DisplayObject.prototype, {\n /**\n * Set this to true if you want this display object to be cached as a bitmap.\n * This basically takes a snap shot of the display object as it is at that moment. It can\n * provide a performance benefit for complex static displayObjects.\n * To remove simply set this property to `false`\n *\n * IMPORTANT GOTCHA - Make sure that all your textures are preloaded BEFORE setting this property to true\n * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n cacheAsBitmap: {\n get: function get()\n {\n return this._cacheAsBitmap;\n },\n set: function set(value)\n {\n if (this._cacheAsBitmap === value)\n {\n return;\n }\n\n this._cacheAsBitmap = value;\n\n var data;\n\n if (value)\n {\n if (!this._cacheData)\n {\n this._cacheData = new CacheData();\n }\n\n data = this._cacheData;\n\n data.originalRender = this.render;\n data.originalRenderCanvas = this.renderCanvas;\n\n data.originalUpdateTransform = this.updateTransform;\n data.originalCalculateBounds = this.calculateBounds;\n data.originalGetLocalBounds = this.getLocalBounds;\n\n data.originalDestroy = this.destroy;\n\n data.originalContainsPoint = this.containsPoint;\n\n data.originalMask = this._mask;\n data.originalFilterArea = this.filterArea;\n\n this.render = this._renderCached;\n this.renderCanvas = this._renderCachedCanvas;\n\n this.destroy = this._cacheAsBitmapDestroy;\n }\n else\n {\n data = this._cacheData;\n\n if (data.sprite)\n {\n this._destroyCachedDisplayObject();\n }\n\n this.render = data.originalRender;\n this.renderCanvas = data.originalRenderCanvas;\n this.calculateBounds = data.originalCalculateBounds;\n this.getLocalBounds = data.originalGetLocalBounds;\n\n this.destroy = data.originalDestroy;\n\n this.updateTransform = data.originalUpdateTransform;\n this.containsPoint = data.originalContainsPoint;\n\n this._mask = data.originalMask;\n this.filterArea = data.originalFilterArea;\n }\n },\n },\n});\n\n/**\n * Renders a cached version of the sprite with WebGL\n *\n * @private\n * @function _renderCached\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._renderCached = function _renderCached(renderer)\n{\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n this._initCachedDisplayObject(renderer);\n\n this._cacheData.sprite.transform._worldID = this.transform._worldID;\n this._cacheData.sprite.worldAlpha = this.worldAlpha;\n this._cacheData.sprite._render(renderer);\n};\n\n/**\n * Prepares the WebGL renderer to cache the sprite\n *\n * @private\n * @function _initCachedDisplayObject\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._initCachedDisplayObject = function _initCachedDisplayObject(renderer)\n{\n if (this._cacheData && this._cacheData.sprite)\n {\n return;\n }\n\n // make sure alpha is set to 1 otherwise it will get rendered as invisible!\n var cacheAlpha = this.alpha;\n\n this.alpha = 1;\n\n // first we flush anything left in the renderer (otherwise it would get rendered to the cached texture)\n renderer.batch.flush();\n // this.filters= [];\n\n // next we find the dimensions of the untransformed object\n // this function also calls updatetransform on all its children as part of the measuring.\n // This means we don't need to update the transform again in this function\n // TODO pass an object to clone too? saves having to create a new one each time!\n var bounds = this.getLocalBounds().clone();\n\n // add some padding!\n if (this.filters)\n {\n var padding = this.filters[0].padding;\n\n bounds.pad(padding);\n }\n\n bounds.ceil(settings.RESOLUTION);\n\n // for now we cache the current renderTarget that the WebGL renderer is currently using.\n // this could be more elegant..\n var cachedRenderTexture = renderer.renderTexture.current;\n var cachedSourceFrame = renderer.renderTexture.sourceFrame;\n var cachedProjectionTransform = renderer.projection.transform;\n\n // We also store the filter stack - I will definitely look to change how this works a little later down the line.\n // const stack = renderer.filterManager.filterStack;\n\n // this renderTexture will be used to store the cached DisplayObject\n var renderTexture = RenderTexture.create(bounds.width, bounds.height);\n\n var textureCacheId = \"cacheAsBitmap_\" + (uid());\n\n this._cacheData.textureCacheId = textureCacheId;\n\n BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId);\n Texture.addToCache(renderTexture, textureCacheId);\n\n // need to set //\n var m = _tempMatrix;\n\n m.tx = -bounds.x;\n m.ty = -bounds.y;\n\n // reset\n this.transform.worldTransform.identity();\n\n // set all properties to there original so we can render to a texture\n this.render = this._cacheData.originalRender;\n\n renderer.render(this, renderTexture, true, m, true);\n\n // now restore the state be setting the new properties\n renderer.projection.transform = cachedProjectionTransform;\n renderer.renderTexture.bind(cachedRenderTexture, cachedSourceFrame);\n\n // renderer.filterManager.filterStack = stack;\n\n this.render = this._renderCached;\n // the rest is the same as for Canvas\n this.updateTransform = this.displayObjectUpdateTransform;\n this.calculateBounds = this._calculateCachedBounds;\n this.getLocalBounds = this._getCachedLocalBounds;\n\n this._mask = null;\n this.filterArea = null;\n\n // create our cached sprite\n var cachedSprite = new Sprite(renderTexture);\n\n cachedSprite.transform.worldTransform = this.transform.worldTransform;\n cachedSprite.anchor.x = -(bounds.x / bounds.width);\n cachedSprite.anchor.y = -(bounds.y / bounds.height);\n cachedSprite.alpha = cacheAlpha;\n cachedSprite._bounds = this._bounds;\n\n this._cacheData.sprite = cachedSprite;\n\n this.transform._parentID = -1;\n // restore the transform of the cached sprite to avoid the nasty flicker..\n if (!this.parent)\n {\n this.parent = renderer._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this.updateTransform();\n }\n\n // map the hit test..\n this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite);\n};\n\n/**\n * Renders a cached version of the sprite with canvas\n *\n * @private\n * @function _renderCachedCanvas\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._renderCachedCanvas = function _renderCachedCanvas(renderer)\n{\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n this._initCachedDisplayObjectCanvas(renderer);\n\n this._cacheData.sprite.worldAlpha = this.worldAlpha;\n this._cacheData.sprite._renderCanvas(renderer);\n};\n\n// TODO this can be the same as the WebGL version.. will need to do a little tweaking first though..\n/**\n * Prepares the Canvas renderer to cache the sprite\n *\n * @private\n * @function _initCachedDisplayObjectCanvas\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._initCachedDisplayObjectCanvas = function _initCachedDisplayObjectCanvas(renderer)\n{\n if (this._cacheData && this._cacheData.sprite)\n {\n return;\n }\n\n // get bounds actually transforms the object for us already!\n var bounds = this.getLocalBounds();\n\n var cacheAlpha = this.alpha;\n\n this.alpha = 1;\n\n var cachedRenderTarget = renderer.context;\n\n bounds.ceil(settings.RESOLUTION);\n\n var renderTexture = RenderTexture.create(bounds.width, bounds.height);\n\n var textureCacheId = \"cacheAsBitmap_\" + (uid());\n\n this._cacheData.textureCacheId = textureCacheId;\n\n BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId);\n Texture.addToCache(renderTexture, textureCacheId);\n\n // need to set //\n var m = _tempMatrix;\n\n this.transform.localTransform.copyTo(m);\n m.invert();\n\n m.tx -= bounds.x;\n m.ty -= bounds.y;\n\n // m.append(this.transform.worldTransform.)\n // set all properties to there original so we can render to a texture\n this.renderCanvas = this._cacheData.originalRenderCanvas;\n\n // renderTexture.render(this, m, true);\n renderer.render(this, renderTexture, true, m, false);\n\n // now restore the state be setting the new properties\n renderer.context = cachedRenderTarget;\n\n this.renderCanvas = this._renderCachedCanvas;\n // the rest is the same as for WebGL\n this.updateTransform = this.displayObjectUpdateTransform;\n this.calculateBounds = this._calculateCachedBounds;\n this.getLocalBounds = this._getCachedLocalBounds;\n\n this._mask = null;\n this.filterArea = null;\n\n // create our cached sprite\n var cachedSprite = new Sprite(renderTexture);\n\n cachedSprite.transform.worldTransform = this.transform.worldTransform;\n cachedSprite.anchor.x = -(bounds.x / bounds.width);\n cachedSprite.anchor.y = -(bounds.y / bounds.height);\n cachedSprite.alpha = cacheAlpha;\n cachedSprite._bounds = this._bounds;\n\n this._cacheData.sprite = cachedSprite;\n\n this.transform._parentID = -1;\n // restore the transform of the cached sprite to avoid the nasty flicker..\n if (!this.parent)\n {\n this.parent = renderer._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this.updateTransform();\n }\n\n // map the hit test..\n this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite);\n};\n\n/**\n * Calculates the bounds of the cached sprite\n *\n * @private\n */\nDisplayObject.prototype._calculateCachedBounds = function _calculateCachedBounds()\n{\n this._bounds.clear();\n this._cacheData.sprite.transform._worldID = this.transform._worldID;\n this._cacheData.sprite._calculateBounds();\n this._lastBoundsID = this._boundsID;\n};\n\n/**\n * Gets the bounds of the cached sprite.\n *\n * @private\n * @return {Rectangle} The local bounds.\n */\nDisplayObject.prototype._getCachedLocalBounds = function _getCachedLocalBounds()\n{\n return this._cacheData.sprite.getLocalBounds();\n};\n\n/**\n * Destroys the cached sprite.\n *\n * @private\n */\nDisplayObject.prototype._destroyCachedDisplayObject = function _destroyCachedDisplayObject()\n{\n this._cacheData.sprite._texture.destroy(true);\n this._cacheData.sprite = null;\n\n BaseTexture.removeFromCache(this._cacheData.textureCacheId);\n Texture.removeFromCache(this._cacheData.textureCacheId);\n\n this._cacheData.textureCacheId = null;\n};\n\n/**\n * Destroys the cached object.\n *\n * @private\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value.\n * Used when destroying containers, see the Container.destroy method.\n */\nDisplayObject.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy(options)\n{\n this.cacheAsBitmap = false;\n this.destroy(options);\n};\n//# sourceMappingURL=mixin-cache-as-bitmap.es.js.map\n","/*!\n * @pixi/mixin-get-child-by-name - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/mixin-get-child-by-name is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { DisplayObject, Container } from '@pixi/display';\n\n/**\n * The instance name of the object.\n *\n * @memberof PIXI.DisplayObject#\n * @member {string} name\n */\nDisplayObject.prototype.name = null;\n\n/**\n * Returns the display object in the container.\n *\n * @method getChildByName\n * @memberof PIXI.Container#\n * @param {string} name - Instance name.\n * @return {PIXI.DisplayObject} The child with the specified name.\n */\nContainer.prototype.getChildByName = function getChildByName(name)\n{\n for (var i = 0; i < this.children.length; i++)\n {\n if (this.children[i].name === name)\n {\n return this.children[i];\n }\n }\n\n return null;\n};\n//# sourceMappingURL=mixin-get-child-by-name.es.js.map\n","/*!\n * @pixi/mixin-get-global-position - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/mixin-get-global-position is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { DisplayObject } from '@pixi/display';\nimport { Point } from '@pixi/math';\n\n/**\n * Returns the global position of the displayObject. Does not depend on object scale, rotation and pivot.\n *\n * @method getGlobalPosition\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Point} [point=new PIXI.Point()] - The point to write the global value to.\n * @param {boolean} [skipUpdate=false] - Setting to true will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost.\n * @return {PIXI.Point} The updated point.\n */\nDisplayObject.prototype.getGlobalPosition = function getGlobalPosition(point, skipUpdate)\n{\n if ( point === void 0 ) point = new Point();\n if ( skipUpdate === void 0 ) skipUpdate = false;\n\n if (this.parent)\n {\n this.parent.toGlobal(this.position, point, skipUpdate);\n }\n else\n {\n point.x = this.position.x;\n point.y = this.position.y;\n }\n\n return point;\n};\n//# sourceMappingURL=mixin-get-global-position.es.js.map\n","/*!\n * @pixi/mesh - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/mesh is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { State, Shader, Program, TextureMatrix, Geometry, Buffer } from '@pixi/core';\nimport { Point, Polygon, Matrix } from '@pixi/math';\nimport { DRAW_MODES, BLEND_MODES, TYPES } from '@pixi/constants';\nimport { Container } from '@pixi/display';\nimport { settings } from '@pixi/settings';\nimport { premultiplyTintToRgba } from '@pixi/utils';\n\n/**\n * Class controls cache for UV mapping from Texture normal space to BaseTexture normal space.\n *\n * @class\n * @memberof PIXI\n */\nvar MeshBatchUvs = function MeshBatchUvs(uvBuffer, uvMatrix)\n{\n /**\n * Buffer with normalized UV's\n * @member {PIXI.Buffer}\n */\n this.uvBuffer = uvBuffer;\n\n /**\n * Material UV matrix\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = uvMatrix;\n\n /**\n * UV Buffer data\n * @member {Float32Array}\n * @readonly\n */\n this.data = null;\n\n this._bufferUpdateId = -1;\n\n this._textureUpdateId = -1;\n\n this._updateID = 0;\n};\n\n/**\n * updates\n *\n * @param {boolean} forceUpdate - force the update\n */\nMeshBatchUvs.prototype.update = function update (forceUpdate)\n{\n if (!forceUpdate\n && this._bufferUpdateId === this.uvBuffer._updateID\n && this._textureUpdateId === this.uvMatrix._updateID)\n {\n return;\n }\n\n this._bufferUpdateId = this.uvBuffer._updateID;\n this._textureUpdateId = this.uvMatrix._updateID;\n\n var data = this.uvBuffer.data;\n\n if (!this.data || this.data.length !== data.length)\n {\n this.data = new Float32Array(data.length);\n }\n\n this.uvMatrix.multiplyUvs(data, this.data);\n\n this._updateID++;\n};\n\nvar tempPoint = new Point();\nvar tempPolygon = new Polygon();\n\n/**\n * Base mesh class.\n *\n * This class empowers you to have maximum flexibility to render any kind of WebGL visuals you can think of.\n * This class assumes a certain level of WebGL knowledge.\n * If you know a bit this should abstract enough away to make you life easier!\n *\n * Pretty much ALL WebGL can be broken down into the following:\n * - Geometry - The structure and data for the mesh. This can include anything from positions, uvs, normals, colors etc..\n * - Shader - This is the shader that PixiJS will render the geometry with (attributes in the shader must match the geometry)\n * - State - This is the state of WebGL required to render the mesh.\n *\n * Through a combination of the above elements you can render anything you want, 2D or 3D!\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Mesh = /*@__PURE__*/(function (Container) {\n function Mesh(geometry, shader, state, drawMode)// vertices, uvs, indices, drawMode)\n {\n if ( drawMode === void 0 ) drawMode = DRAW_MODES.TRIANGLES;\n\n Container.call(this);\n\n /**\n * Includes vertex positions, face indices, normals, colors, UVs, and\n * custom attributes within buffers, reducing the cost of passing all\n * this data to the GPU. Can be shared between multiple Mesh objects.\n * @member {PIXI.Geometry}\n * @readonly\n */\n this.geometry = geometry;\n\n geometry.refCount++;\n\n /**\n * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU.\n * Can be shared between multiple Mesh objects.\n * @member {PIXI.Shader|PIXI.MeshMaterial}\n */\n this.shader = shader;\n\n /**\n * Represents the WebGL state the Mesh required to render, excludes shader and geometry. E.g.,\n * blend mode, culling, depth testing, direction of rendering triangles, backface, etc.\n * @member {PIXI.State}\n */\n this.state = state || State.for2d();\n\n /**\n * The way the Mesh should be drawn, can be any of the {@link PIXI.DRAW_MODES} constants.\n *\n * @member {number}\n * @see PIXI.DRAW_MODES\n */\n this.drawMode = drawMode;\n\n /**\n * Typically the index of the IndexBuffer where to start drawing.\n * @member {number}\n * @default 0\n */\n this.start = 0;\n\n /**\n * How much of the geometry to draw, by default `0` renders everything.\n * @member {number}\n * @default 0\n */\n this.size = 0;\n\n /**\n * thease are used as easy access for batching\n * @member {Float32Array}\n * @private\n */\n this.uvs = null;\n\n /**\n * thease are used as easy access for batching\n * @member {Uint16Array}\n * @private\n */\n this.indices = null;\n\n /**\n * this is the caching layer used by the batcher\n * @member {Float32Array}\n * @private\n */\n this.vertexData = new Float32Array(1);\n\n /**\n * If geometry is changed used to decide to re-transform\n * the vertexData.\n * @member {number}\n * @private\n */\n this.vertexDirty = 0;\n\n this._transformID = -1;\n\n // Inherited from DisplayMode, set defaults\n this.tint = 0xFFFFFF;\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * Internal roundPixels field\n *\n * @member {boolean}\n * @private\n */\n this._roundPixels = settings.ROUND_PIXELS;\n\n /**\n * Batched UV's are cached for atlas textures\n * @member {PIXI.MeshBatchUvs}\n * @private\n */\n this.batchUvs = null;\n }\n\n if ( Container ) Mesh.__proto__ = Container;\n Mesh.prototype = Object.create( Container && Container.prototype );\n Mesh.prototype.constructor = Mesh;\n\n var prototypeAccessors = { uvBuffer: { configurable: true },verticesBuffer: { configurable: true },material: { configurable: true },blendMode: { configurable: true },roundPixels: { configurable: true },tint: { configurable: true },texture: { configurable: true } };\n\n /**\n * To change mesh uv's, change its uvBuffer data and increment its _updateID.\n * @member {PIXI.Buffer}\n * @readonly\n */\n prototypeAccessors.uvBuffer.get = function ()\n {\n return this.geometry.buffers[1];\n };\n\n /**\n * To change mesh vertices, change its uvBuffer data and increment its _updateID.\n * Incrementing _updateID is optional because most of Mesh objects do it anyway.\n * @member {PIXI.Buffer}\n * @readonly\n */\n prototypeAccessors.verticesBuffer.get = function ()\n {\n return this.geometry.buffers[0];\n };\n\n /**\n * Alias for {@link PIXI.Mesh#shader}.\n * @member {PIXI.Shader|PIXI.MeshMaterial}\n */\n prototypeAccessors.material.set = function (value)\n {\n this.shader = value;\n };\n\n prototypeAccessors.material.get = function ()\n {\n return this.shader;\n };\n\n /**\n * The blend mode to be applied to the Mesh. Apply a value of\n * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL;\n * @see PIXI.BLEND_MODES\n */\n prototypeAccessors.blendMode.set = function (value)\n {\n this.state.blendMode = value;\n };\n\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n prototypeAccessors.roundPixels.set = function (value)\n {\n if (this._roundPixels !== value)\n {\n this._transformID = -1;\n }\n this._roundPixels = value;\n };\n\n prototypeAccessors.roundPixels.get = function ()\n {\n return this._roundPixels;\n };\n\n /**\n * The multiply tint applied to the Mesh. This is a hex value. A value of\n * `0xFFFFFF` will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this.shader.tint;\n };\n\n prototypeAccessors.tint.set = function (value)\n {\n this.shader.tint = value;\n };\n\n /**\n * The texture that the Mesh uses.\n *\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this.shader.texture;\n };\n\n prototypeAccessors.texture.set = function (value)\n {\n this.shader.texture = value;\n };\n\n /**\n * Standard renderer draw.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._render = function _render (renderer)\n {\n // set properties for batching..\n // TODO could use a different way to grab verts?\n var vertices = this.geometry.buffers[0].data;\n\n // TODO benchmark check for attribute size..\n if (this.shader.batchable && this.drawMode === DRAW_MODES.TRIANGLES && vertices.length < Mesh.BATCHABLE_SIZE * 2)\n {\n this._renderToBatch(renderer);\n }\n else\n {\n this._renderDefault(renderer);\n }\n };\n\n /**\n * Standard non-batching way of rendering.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._renderDefault = function _renderDefault (renderer)\n {\n var shader = this.shader;\n\n shader.alpha = this.worldAlpha;\n if (shader.update)\n {\n shader.update();\n }\n\n renderer.batch.flush();\n\n if (shader.program.uniformData.translationMatrix)\n {\n shader.uniforms.translationMatrix = this.transform.worldTransform.toArray(true);\n }\n\n // bind and sync uniforms..\n renderer.shader.bind(shader);\n\n // set state..\n renderer.state.set(this.state);\n\n // bind the geometry...\n renderer.geometry.bind(this.geometry, shader);\n\n // then render it\n renderer.geometry.draw(this.drawMode, this.size, this.start, this.geometry.instanceCount);\n };\n\n /**\n * Rendering by using the Batch system.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._renderToBatch = function _renderToBatch (renderer)\n {\n var geometry = this.geometry;\n\n if (this.shader.uvMatrix)\n {\n this.shader.uvMatrix.update();\n this.calculateUvs();\n }\n\n // set properties for batching..\n this.calculateVertices();\n this.indices = geometry.indexBuffer.data;\n this._tintRGB = this.shader._tintRGB;\n this._texture = this.shader.texture;\n\n var pluginName = this.material.pluginName;\n\n renderer.batch.setObjectRenderer(renderer.plugins[pluginName]);\n renderer.plugins[pluginName].render(this);\n };\n\n /**\n * Updates vertexData field based on transform and vertices\n */\n Mesh.prototype.calculateVertices = function calculateVertices ()\n {\n var geometry = this.geometry;\n var vertices = geometry.buffers[0].data;\n\n if (geometry.vertexDirtyId === this.vertexDirty && this._transformID === this.transform._worldID)\n {\n return;\n }\n\n this._transformID = this.transform._worldID;\n\n if (this.vertexData.length !== vertices.length)\n {\n this.vertexData = new Float32Array(vertices.length);\n }\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var vertexData = this.vertexData;\n\n for (var i = 0; i < vertexData.length / 2; i++)\n {\n var x = vertices[(i * 2)];\n var y = vertices[(i * 2) + 1];\n\n vertexData[(i * 2)] = (a * x) + (c * y) + tx;\n vertexData[(i * 2) + 1] = (b * x) + (d * y) + ty;\n }\n\n if (this._roundPixels)\n {\n for (var i$1 = 0; i$1 < vertexData.length; i$1++)\n {\n vertexData[i$1] = Math.round(vertexData[i$1]);\n }\n }\n\n this.vertexDirty = geometry.vertexDirtyId;\n };\n\n /**\n * Updates uv field based on from geometry uv's or batchUvs\n */\n Mesh.prototype.calculateUvs = function calculateUvs ()\n {\n var geomUvs = this.geometry.buffers[1];\n\n if (!this.shader.uvMatrix.isSimple)\n {\n if (!this.batchUvs)\n {\n this.batchUvs = new MeshBatchUvs(geomUvs, this.shader.uvMatrix);\n }\n this.batchUvs.update();\n this.uvs = this.batchUvs.data;\n }\n else\n {\n this.uvs = geomUvs.data;\n }\n };\n\n /**\n * Updates the bounds of the mesh as a rectangle. The bounds calculation takes the worldTransform into account.\n * there must be a aVertexPosition attribute present in the geometry for bounds to be calculated correctly.\n *\n * @protected\n */\n Mesh.prototype._calculateBounds = function _calculateBounds ()\n {\n this.calculateVertices();\n\n this._bounds.addVertexData(this.vertexData, 0, this.vertexData.length);\n };\n\n /**\n * Tests if a point is inside this mesh. Works only for PIXI.DRAW_MODES.TRIANGLES.\n *\n * @param {PIXI.Point} point the point to test\n * @return {boolean} the result of the test\n */\n Mesh.prototype.containsPoint = function containsPoint (point)\n {\n if (!this.getBounds().contains(point.x, point.y))\n {\n return false;\n }\n\n this.worldTransform.applyInverse(point, tempPoint);\n\n var vertices = this.geometry.getBuffer('aVertexPosition').data;\n\n var points = tempPolygon.points;\n var indices = this.geometry.getIndex().data;\n var len = indices.length;\n var step = this.drawMode === 4 ? 3 : 1;\n\n for (var i = 0; i + 2 < len; i += step)\n {\n var ind0 = indices[i] * 2;\n var ind1 = indices[i + 1] * 2;\n var ind2 = indices[i + 2] * 2;\n\n points[0] = vertices[ind0];\n points[1] = vertices[ind0 + 1];\n points[2] = vertices[ind1];\n points[3] = vertices[ind1 + 1];\n points[4] = vertices[ind2];\n points[5] = vertices[ind2 + 1];\n\n if (tempPolygon.contains(tempPoint.x, tempPoint.y))\n {\n return true;\n }\n }\n\n return false;\n };\n /**\n * Destroys the Mesh object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n */\n Mesh.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.geometry.refCount--;\n if (this.geometry.refCount === 0)\n {\n this.geometry.dispose();\n }\n\n this.geometry = null;\n this.shader = null;\n this.state = null;\n this.uvs = null;\n this.indices = null;\n this.vertexData = null;\n };\n\n Object.defineProperties( Mesh.prototype, prototypeAccessors );\n\n return Mesh;\n}(Container));\n\n/**\n * The maximum number of vertices to consider batchable. Generally, the complexity\n * of the geometry.\n * @memberof PIXI.Mesh\n * @static\n * @member {number} BATCHABLE_SIZE\n */\nMesh.BATCHABLE_SIZE = 100;\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform mat3 uTextureMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = (uTextureMatrix * vec3(aTextureCoord, 1.0)).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\nuniform vec4 uColor;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void)\\n{\\n gl_FragColor = texture2D(uSampler, vTextureCoord) * uColor;\\n}\\n\";\n\n/**\n * Slightly opinionated default shader for PixiJS 2D objects.\n * @class\n * @memberof PIXI\n * @extends PIXI.Shader\n */\nvar MeshMaterial = /*@__PURE__*/(function (Shader) {\n function MeshMaterial(uSampler, options)\n {\n var uniforms = {\n uSampler: uSampler,\n alpha: 1,\n uTextureMatrix: Matrix.IDENTITY,\n uColor: new Float32Array([1, 1, 1, 1]),\n };\n\n // Set defaults\n options = Object.assign({\n tint: 0xFFFFFF,\n alpha: 1,\n pluginName: 'batch',\n }, options);\n\n if (options.uniforms)\n {\n Object.assign(uniforms, options.uniforms);\n }\n\n Shader.call(this, options.program || Program.from(vertex, fragment), uniforms);\n\n /**\n * Only do update if tint or alpha changes.\n * @member {boolean}\n * @private\n * @default false\n */\n this._colorDirty = false;\n\n /**\n * TextureMatrix instance for this Mesh, used to track Texture changes\n *\n * @member {PIXI.TextureMatrix}\n * @readonly\n */\n this.uvMatrix = new TextureMatrix(uSampler);\n\n /**\n * `true` if shader can be batch with the renderer's batch system.\n * @member {boolean}\n * @default true\n */\n this.batchable = options.program === undefined;\n\n /**\n * Renderer plugin for batching\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = options.pluginName;\n\n this.tint = options.tint;\n this.alpha = options.alpha;\n }\n\n if ( Shader ) MeshMaterial.__proto__ = Shader;\n MeshMaterial.prototype = Object.create( Shader && Shader.prototype );\n MeshMaterial.prototype.constructor = MeshMaterial;\n\n var prototypeAccessors = { texture: { configurable: true },alpha: { configurable: true },tint: { configurable: true } };\n\n /**\n * Reference to the texture being rendered.\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this.uniforms.uSampler;\n };\n prototypeAccessors.texture.set = function (value)\n {\n if (this.uniforms.uSampler !== value)\n {\n this.uniforms.uSampler = value;\n this.uvMatrix.texture = value;\n }\n };\n\n /**\n * This gets automatically set by the object using this.\n *\n * @default 1\n * @member {number}\n */\n prototypeAccessors.alpha.set = function (value)\n {\n if (value === this._alpha) { return; }\n\n this._alpha = value;\n this._colorDirty = true;\n };\n prototypeAccessors.alpha.get = function ()\n {\n return this._alpha;\n };\n\n /**\n * Multiply tint for the material.\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.set = function (value)\n {\n if (value === this._tint) { return; }\n\n this._tint = value;\n this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16);\n this._colorDirty = true;\n };\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n /**\n * Gets called automatically by the Mesh. Intended to be overridden for custom\n * MeshMaterial objects.\n */\n MeshMaterial.prototype.update = function update ()\n {\n if (this._colorDirty)\n {\n this._colorDirty = false;\n var baseTexture = this.texture.baseTexture;\n\n premultiplyTintToRgba(this._tint, this._alpha, this.uniforms.uColor, baseTexture.premultiplyAlpha);\n }\n if (this.uvMatrix.update())\n {\n this.uniforms.uTextureMatrix = this.uvMatrix.mapCoord;\n }\n };\n\n Object.defineProperties( MeshMaterial.prototype, prototypeAccessors );\n\n return MeshMaterial;\n}(Shader));\n\n/**\n * Standard 2D geometry used in PixiJS.\n *\n * Geometry can be defined without passing in a style or data if required.\n *\n * ```js\n * const geometry = new PIXI.Geometry();\n *\n * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2);\n * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1], 2);\n * geometry.addIndex([0,1,2,1,3,2]);\n *\n * ```\n * @class\n * @memberof PIXI\n * @extends PIXI.Geometry\n */\nvar MeshGeometry = /*@__PURE__*/(function (Geometry) {\n function MeshGeometry(vertices, uvs, index)\n {\n Geometry.call(this);\n\n var verticesBuffer = new Buffer(vertices);\n var uvsBuffer = new Buffer(uvs, true);\n var indexBuffer = new Buffer(index, true, true);\n\n this.addAttribute('aVertexPosition', verticesBuffer, 2, false, TYPES.FLOAT)\n .addAttribute('aTextureCoord', uvsBuffer, 2, false, TYPES.FLOAT)\n .addIndex(indexBuffer);\n\n /**\n * Dirty flag to limit update calls on Mesh. For example,\n * limiting updates on a single Mesh instance with a shared Geometry\n * within the render loop.\n * @private\n * @member {number}\n * @default -1\n */\n this._updateId = -1;\n }\n\n if ( Geometry ) MeshGeometry.__proto__ = Geometry;\n MeshGeometry.prototype = Object.create( Geometry && Geometry.prototype );\n MeshGeometry.prototype.constructor = MeshGeometry;\n\n var prototypeAccessors = { vertexDirtyId: { configurable: true } };\n\n /**\n * If the vertex position is updated.\n * @member {number}\n * @readonly\n * @private\n */\n prototypeAccessors.vertexDirtyId.get = function ()\n {\n return this.buffers[0]._updateID;\n };\n\n Object.defineProperties( MeshGeometry.prototype, prototypeAccessors );\n\n return MeshGeometry;\n}(Geometry));\n\nexport { Mesh, MeshBatchUvs, MeshGeometry, MeshMaterial };\n//# sourceMappingURL=mesh.es.js.map\n","/*!\n * pixi.js - v5.1.4\n * Compiled Sat, 21 Sep 2019 07:35:21 UTC\n *\n * pixi.js is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport '@pixi/polyfill';\nimport { AccessibilityManager } from '@pixi/accessibility';\nimport * as accessibility from '@pixi/accessibility';\nexport { accessibility };\nimport { Extract } from '@pixi/extract';\nimport * as extract from '@pixi/extract';\nexport { extract };\nimport { InteractionManager } from '@pixi/interaction';\nimport * as interaction from '@pixi/interaction';\nexport { interaction };\nimport { Prepare } from '@pixi/prepare';\nimport * as prepare from '@pixi/prepare';\nexport { prepare };\nimport { deprecation } from '@pixi/utils';\nimport * as utils from '@pixi/utils';\nexport { utils };\nimport { Application } from '@pixi/app';\nexport * from '@pixi/app';\nimport { Renderer, BatchRenderer } from '@pixi/core';\nexport * from '@pixi/core';\nimport { Loader, AppLoaderPlugin } from '@pixi/loaders';\nexport * from '@pixi/loaders';\nimport { ParticleRenderer } from '@pixi/particles';\nexport * from '@pixi/particles';\nimport { SpritesheetLoader } from '@pixi/spritesheet';\nexport * from '@pixi/spritesheet';\nimport { TilingSpriteRenderer } from '@pixi/sprite-tiling';\nexport * from '@pixi/sprite-tiling';\nimport { BitmapFontLoader } from '@pixi/text-bitmap';\nexport * from '@pixi/text-bitmap';\nimport { TickerPlugin } from '@pixi/ticker';\nexport * from '@pixi/ticker';\nimport { AlphaFilter } from '@pixi/filter-alpha';\nimport { BlurFilter, BlurFilterPass } from '@pixi/filter-blur';\nimport { ColorMatrixFilter } from '@pixi/filter-color-matrix';\nimport { DisplacementFilter } from '@pixi/filter-displacement';\nimport { FXAAFilter } from '@pixi/filter-fxaa';\nimport { NoiseFilter } from '@pixi/filter-noise';\nimport '@pixi/mixin-cache-as-bitmap';\nimport '@pixi/mixin-get-child-by-name';\nimport '@pixi/mixin-get-global-position';\nexport * from '@pixi/constants';\nexport * from '@pixi/display';\nexport * from '@pixi/graphics';\nexport * from '@pixi/math';\nexport * from '@pixi/mesh';\nexport * from '@pixi/mesh-extras';\nexport * from '@pixi/runner';\nexport * from '@pixi/sprite';\nexport * from '@pixi/sprite-animated';\nexport * from '@pixi/text';\nexport * from '@pixi/settings';\n\nvar v5 = '5.0.0';\n\n/**\n * Deprecations (backward compatibilities) are automatically applied for browser bundles\n * in the UMD module format. If using Webpack or Rollup, you'll need to apply these\n * deprecations manually by doing something like this:\n * @example\n * import * as PIXI from 'pixi.js';\n * PIXI.useDeprecated(); // MUST be bound to namespace\n * @memberof PIXI\n * @function useDeprecated\n */\nfunction useDeprecated()\n{\n var PIXI = this;\n\n Object.defineProperties(PIXI, {\n /**\n * @constant {RegExp|string} SVG_SIZE\n * @memberof PIXI\n * @see PIXI.resources.SVGResource.SVG_SIZE\n * @deprecated since 5.0.0\n */\n SVG_SIZE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.utils.SVG_SIZE property has moved to PIXI.resources.SVGResource.SVG_SIZE');\n\n return PIXI.SVGResource.SVG_SIZE;\n },\n },\n\n /**\n * @class PIXI.TransformStatic\n * @deprecated since 5.0.0\n * @see PIXI.Transform\n */\n TransformStatic: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TransformStatic class has been removed, use PIXI.Transform');\n\n return PIXI.Transform;\n },\n },\n\n /**\n * @class PIXI.TransformBase\n * @deprecated since 5.0.0\n * @see PIXI.Transform\n */\n TransformBase: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TransformBase class has been removed, use PIXI.Transform');\n\n return PIXI.Transform;\n },\n },\n\n /**\n * Constants that specify the transform type.\n *\n * @static\n * @constant\n * @name TRANSFORM_MODE\n * @memberof PIXI\n * @enum {number}\n * @deprecated since 5.0.0\n * @property {number} STATIC\n * @property {number} DYNAMIC\n */\n TRANSFORM_MODE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TRANSFORM_MODE property has been removed');\n\n return { STATIC: 0, DYNAMIC: 1 };\n },\n },\n\n /**\n * @class PIXI.WebGLRenderer\n * @see PIXI.Renderer\n * @deprecated since 5.0.0\n */\n WebGLRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.WebGLRenderer class has moved to PIXI.Renderer');\n\n return PIXI.Renderer;\n },\n },\n\n /**\n * @class PIXI.CanvasRenderTarget\n * @see PIXI.utils.CanvasRenderTarget\n * @deprecated since 5.0.0\n */\n CanvasRenderTarget: {\n get: function get()\n {\n deprecation(v5, 'PIXI.CanvasRenderTarget class has moved to PIXI.utils.CanvasRenderTarget');\n\n return PIXI.utils.CanvasRenderTarget;\n },\n },\n\n /**\n * @memberof PIXI\n * @name loader\n * @type {PIXI.Loader}\n * @see PIXI.Loader.shared\n * @deprecated since 5.0.0\n */\n loader: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loader instance has moved to PIXI.Loader.shared');\n\n return PIXI.Loader.shared;\n },\n },\n\n /**\n * @class PIXI.FilterManager\n * @see PIXI.systems.FilterSystem\n * @deprecated since 5.0.0\n */\n FilterManager: {\n get: function get()\n {\n deprecation(v5, 'PIXI.FilterManager class has moved to PIXI.systems.FilterSystem');\n\n return PIXI.systems.FilterSystem;\n },\n },\n\n /**\n * @namespace PIXI.CanvasTinter\n * @see PIXI.canvasUtils\n * @deprecated since 5.2.0\n */\n CanvasTinter: {\n get: function get()\n {\n deprecation('5.2.0', 'PIXI.CanvasTinter namespace has moved to PIXI.canvasUtils');\n\n return PIXI.canvasUtils;\n },\n },\n\n /**\n * @namespace PIXI.GroupD8\n * @see PIXI.groupD8\n * @deprecated since 5.2.0\n */\n GroupD8: {\n get: function get()\n {\n deprecation('5.2.0', 'PIXI.GroupD8 namespace has moved to PIXI.groupD8');\n\n return PIXI.groupD8;\n },\n },\n });\n\n /**\n * This namespace has been removed. All classes previous nested\n * under this namespace have been moved to the top-level `PIXI` object.\n * @namespace PIXI.extras\n * @deprecated since 5.0.0\n */\n PIXI.extras = {};\n\n Object.defineProperties(PIXI.extras, {\n /**\n * @class PIXI.extras.TilingSprite\n * @see PIXI.TilingSprite\n * @deprecated since 5.0.0\n */\n TilingSprite: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.TilingSprite class has moved to PIXI.TilingSprite');\n\n return PIXI.TilingSprite;\n },\n },\n /**\n * @class PIXI.extras.TilingSpriteRenderer\n * @see PIXI.TilingSpriteRenderer\n * @deprecated since 5.0.0\n */\n TilingSpriteRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.TilingSpriteRenderer class has moved to PIXI.TilingSpriteRenderer');\n\n return PIXI.TilingSpriteRenderer;\n },\n },\n /**\n * @class PIXI.extras.AnimatedSprite\n * @see PIXI.AnimatedSprite\n * @deprecated since 5.0.0\n */\n AnimatedSprite: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.AnimatedSprite class has moved to PIXI.AnimatedSprite');\n\n return PIXI.AnimatedSprite;\n },\n },\n /**\n * @class PIXI.extras.BitmapText\n * @see PIXI.BitmapText\n * @deprecated since 5.0.0\n */\n BitmapText: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.BitmapText class has moved to PIXI.BitmapText');\n\n return PIXI.BitmapText;\n },\n },\n });\n\n Object.defineProperties(PIXI.utils, {\n /**\n * @function PIXI.utils.getSvgSize\n * @see PIXI.resources.SVGResource.getSize\n * @deprecated since 5.0.0\n */\n getSvgSize: {\n get: function get()\n {\n deprecation(v5, 'PIXI.utils.getSvgSize function has moved to PIXI.resources.SVGResource.getSize');\n\n return PIXI.SVGResource.getSize;\n },\n },\n });\n\n /**\n * All classes on this namespace have moved to the high-level `PIXI` object.\n * @namespace PIXI.mesh\n * @deprecated since 5.0.0\n */\n PIXI.mesh = {};\n\n Object.defineProperties(PIXI.mesh, {\n /**\n * @class PIXI.mesh.Mesh\n * @see PIXI.SimpleMesh\n * @deprecated since 5.0.0\n */\n Mesh: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Mesh class has moved to PIXI.SimpleMesh');\n\n return PIXI.SimpleMesh;\n },\n },\n /**\n * @class PIXI.mesh.NineSlicePlane\n * @see PIXI.NineSlicePlane\n * @deprecated since 5.0.0\n */\n NineSlicePlane: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.NineSlicePlane class has moved to PIXI.NineSlicePlane');\n\n return PIXI.NineSlicePlane;\n },\n },\n /**\n * @class PIXI.mesh.Plane\n * @see PIXI.SimplePlane\n * @deprecated since 5.0.0\n */\n Plane: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Plane class has moved to PIXI.SimplePlane');\n\n return PIXI.SimplePlane;\n },\n },\n /**\n * @class PIXI.mesh.Rope\n * @see PIXI.SimpleRope\n * @deprecated since 5.0.0\n */\n Rope: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Rope class has moved to PIXI.SimpleRope');\n\n return PIXI.SimpleRope;\n },\n },\n /**\n * @class PIXI.mesh.RawMesh\n * @see PIXI.Mesh\n * @deprecated since 5.0.0\n */\n RawMesh: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.RawMesh class has moved to PIXI.Mesh');\n\n return PIXI.Mesh;\n },\n },\n /**\n * @class PIXI.mesh.CanvasMeshRenderer\n * @see PIXI.CanvasMeshRenderer\n * @deprecated since 5.0.0\n */\n CanvasMeshRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.CanvasMeshRenderer class has moved to PIXI.CanvasMeshRenderer');\n\n return PIXI.CanvasMeshRenderer;\n },\n },\n /**\n * @class PIXI.mesh.MeshRenderer\n * @see PIXI.MeshRenderer\n * @deprecated since 5.0.0\n */\n MeshRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.MeshRenderer class has moved to PIXI.MeshRenderer');\n\n return PIXI.MeshRenderer;\n },\n },\n });\n\n /**\n * This namespace has been removed and items have been moved to\n * the top-level `PIXI` object.\n * @namespace PIXI.particles\n * @deprecated since 5.0.0\n */\n PIXI.particles = {};\n\n Object.defineProperties(PIXI.particles, {\n /**\n * @class PIXI.particles.ParticleContainer\n * @deprecated since 5.0.0\n * @see PIXI.ParticleContainer\n */\n ParticleContainer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.particles.ParticleContainer class has moved to PIXI.ParticleContainer');\n\n return PIXI.ParticleContainer;\n },\n },\n /**\n * @class PIXI.particles.ParticleRenderer\n * @deprecated since 5.0.0\n * @see PIXI.ParticleRenderer\n */\n ParticleRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.particles.ParticleRenderer class has moved to PIXI.ParticleRenderer');\n\n return PIXI.ParticleRenderer;\n },\n },\n });\n\n /**\n * This namespace has been removed and items have been moved to\n * the top-level `PIXI` object.\n * @namespace PIXI.ticker\n * @deprecated since 5.0.0\n */\n PIXI.ticker = {};\n\n Object.defineProperties(PIXI.ticker, {\n /**\n * @class PIXI.ticker.Ticker\n * @deprecated since 5.0.0\n * @see PIXI.Ticker\n */\n Ticker: {\n get: function get()\n {\n deprecation(v5, 'PIXI.ticker.Ticker class has moved to PIXI.Ticker');\n\n return PIXI.Ticker;\n },\n },\n /**\n * @name PIXI.ticker.shared\n * @type {PIXI.Ticker}\n * @deprecated since 5.0.0\n * @see PIXI.Ticker.shared\n */\n shared: {\n get: function get()\n {\n deprecation(v5, 'PIXI.ticker.shared instance has moved to PIXI.Ticker.shared');\n\n return PIXI.Ticker.shared;\n },\n },\n });\n\n /**\n * All classes on this namespace have moved to the high-level `PIXI` object.\n * @namespace PIXI.loaders\n * @deprecated since 5.0.0\n */\n PIXI.loaders = {};\n\n Object.defineProperties(PIXI.loaders, {\n /**\n * @class PIXI.loaders.Loader\n * @see PIXI.Loader\n * @deprecated since 5.0.0\n */\n Loader: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.Loader class has moved to PIXI.Loader');\n\n return PIXI.Loader;\n },\n },\n /**\n * @class PIXI.loaders.Resource\n * @see PIXI.LoaderResource\n * @deprecated since 5.0.0\n */\n Resource: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.Resource class has moved to PIXI.LoaderResource');\n\n return PIXI.LoaderResource;\n },\n },\n /**\n * @function PIXI.loaders.bitmapFontParser\n * @see PIXI.BitmapFontLoader.use\n * @deprecated since 5.0.0\n */\n bitmapFontParser: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.bitmapFontParser function has moved to PIXI.BitmapFontLoader.use');\n\n return PIXI.BitmapFontLoader.use;\n },\n },\n /**\n * @function PIXI.loaders.parseBitmapFontData\n * @see PIXI.BitmapFontLoader.parse\n * @deprecated since 5.0.0\n */\n parseBitmapFontData: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.parseBitmapFontData function has moved to PIXI.BitmapFontLoader.parse');\n\n return PIXI.BitmapFontLoader.parse;\n },\n },\n /**\n * @function PIXI.loaders.spritesheetParser\n * @see PIXI.SpritesheetLoader.use\n * @deprecated since 5.0.0\n */\n spritesheetParser: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.spritesheetParser function has moved to PIXI.SpritesheetLoader.use');\n\n return PIXI.SpritesheetLoader.use;\n },\n },\n /**\n * @function PIXI.loaders.getResourcePath\n * @see PIXI.SpritesheetLoader.getResourcePath\n * @deprecated since 5.0.0\n */\n getResourcePath: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.getResourcePath property has moved to PIXI.SpritesheetLoader.getResourcePath');\n\n return PIXI.SpritesheetLoader.getResourcePath;\n },\n },\n });\n\n /**\n * @function PIXI.loaders.Loader.addPixiMiddleware\n * @see PIXI.Loader.registerPlugin\n * @deprecated since 5.0.0\n * @param {function} middleware\n */\n PIXI.Loader.addPixiMiddleware = function addPixiMiddleware(middleware)\n {\n deprecation(v5,\n 'PIXI.loaders.Loader.addPixiMiddleware function is deprecated, use PIXI.loaders.Loader.registerPlugin'\n );\n\n return PIXI.loaders.Loader.registerPlugin({ use: middleware() });\n };\n\n /**\n * @class PIXI.extract.WebGLExtract\n * @deprecated since 5.0.0\n * @see PIXI.extract.Extract\n */\n Object.defineProperty(PIXI.extract, 'WebGLExtract', {\n get: function get()\n {\n deprecation(v5, 'PIXI.extract.WebGLExtract method has moved to PIXI.extract.Extract');\n\n return PIXI.extract.Extract;\n },\n });\n\n /**\n * @class PIXI.prepare.WebGLPrepare\n * @deprecated since 5.0.0\n * @see PIXI.prepare.Prepare\n */\n Object.defineProperty(PIXI.prepare, 'WebGLPrepare', {\n get: function get()\n {\n deprecation(v5, 'PIXI.prepare.WebGLPrepare class has moved to PIXI.prepare.Prepare');\n\n return PIXI.prepare.Prepare;\n },\n });\n\n /**\n * @method PIXI.Container#_renderWebGL\n * @private\n * @deprecated since 5.0.0\n * @see PIXI.Container#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype._renderWebGL = function _renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container._renderWebGL method has moved to PIXI.Container._render');\n\n this._render(renderer);\n };\n\n /**\n * @method PIXI.Container#renderWebGL\n * @deprecated since 5.0.0\n * @see PIXI.Container#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype.renderWebGL = function renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container.renderWebGL method has moved to PIXI.Container.render');\n\n this.render(renderer);\n };\n\n /**\n * @method PIXI.DisplayObject#renderWebGL\n * @deprecated since 5.0.0\n * @see PIXI.DisplayObject#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.DisplayObject.prototype.renderWebGL = function renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.DisplayObject.renderWebGL method has moved to PIXI.DisplayObject.render');\n\n this.render(renderer);\n };\n\n /**\n * @method PIXI.Container#renderAdvancedWebGL\n * @deprecated since 5.0.0\n * @see PIXI.Container#renderAdvanced\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype.renderAdvancedWebGL = function renderAdvancedWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container.renderAdvancedWebGL method has moved to PIXI.Container.renderAdvanced');\n\n this.renderAdvanced(renderer);\n };\n\n Object.defineProperties(PIXI.settings, {\n /**\n * Default transform type.\n *\n * @static\n * @deprecated since 5.0.0\n * @memberof PIXI.settings\n * @type {PIXI.TRANSFORM_MODE}\n * @default PIXI.TRANSFORM_MODE.STATIC\n */\n TRANSFORM_MODE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.settings.TRANSFORM_MODE property has been removed');\n\n return 0;\n },\n set: function set()\n {\n deprecation(v5, 'PIXI.settings.TRANSFORM_MODE property has been removed');\n },\n },\n });\n\n var BaseTexture = PIXI.BaseTexture;\n\n /**\n * @method loadSource\n * @memberof PIXI.BaseTexture#\n * @deprecated since 5.0.0\n */\n BaseTexture.prototype.loadSource = function loadSource(image)\n {\n deprecation(v5, 'PIXI.BaseTexture.loadSource method has been deprecated');\n\n var resource = PIXI.resources.autoDetectResource(image);\n\n resource.internal = true;\n\n this.setResource(resource);\n this.update();\n };\n\n Object.defineProperties(BaseTexture.prototype, {\n /**\n * @name PIXI.BaseTexture#hasLoaded\n * @type {boolean}\n * @deprecated since 5.0.0\n * @readonly\n * @see PIXI.BaseTexture#valid\n */\n hasLoaded: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.hasLoaded property has been removed, use PIXI.BaseTexture.valid');\n\n return this.valid;\n },\n },\n /**\n * @name PIXI.BaseTexture#imageUrl\n * @type {string}\n * @deprecated since 5.0.0\n * @see PIXI.resource.ImageResource#url\n */\n imageUrl: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.imageUrl property has been removed, use PIXI.BaseTexture.resource.url');\n\n return this.resource && this.resource.url;\n },\n\n set: function set(imageUrl)\n {\n deprecation(v5, 'PIXI.BaseTexture.imageUrl property has been removed, use PIXI.BaseTexture.resource.url');\n\n if (this.resource)\n {\n this.resource.url = imageUrl;\n }\n },\n },\n /**\n * @name PIXI.BaseTexture#source\n * @type {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement}\n * @deprecated since 5.0.0\n * @readonly\n * @see PIXI.resources.BaseImageResource#source\n */\n source: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.source property has been moved, use `PIXI.BaseTexture.resource.source`');\n\n return this.resource && this.resource.source;\n },\n set: function set(source)\n {\n deprecation(v5, 'PIXI.BaseTexture.source property has been moved, use `PIXI.BaseTexture.resource.source` '\n + 'if you want to set HTMLCanvasElement. Otherwise, create new BaseTexture.');\n\n if (this.resource)\n {\n this.resource.source = source;\n }\n },\n },\n });\n\n /**\n * @method fromImage\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromImage = function fromImage(canvas, crossorigin, scaleMode, scale)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromImage method has been replaced with PIXI.BaseTexture.from');\n\n var resourceOptions = { scale: scale, crossorigin: crossorigin };\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode, resourceOptions: resourceOptions });\n };\n\n /**\n * @method fromCanvas\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromCanvas = function fromCanvas(canvas, scaleMode)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromCanvas method has been replaced with PIXI.BaseTexture.from');\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode });\n };\n\n /**\n * @method fromSVG\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromSVG = function fromSVG(canvas, crossorigin, scaleMode, scale)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromSVG method has been replaced with PIXI.BaseTexture.from');\n\n var resourceOptions = { scale: scale, crossorigin: crossorigin };\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode, resourceOptions: resourceOptions });\n };\n\n /**\n * @method PIXI.Point#copy\n * @deprecated since 5.0.0\n * @see PIXI.Point#copyFrom\n */\n PIXI.Point.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Point.copy method has been replaced with PIXI.Point.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.ObservablePoint#copy\n * @deprecated since 5.0.0\n * @see PIXI.ObservablePoint#copyFrom\n */\n PIXI.ObservablePoint.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.ObservablePoint.copy method has been replaced with PIXI.ObservablePoint.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.Rectangle#copy\n * @deprecated since 5.0.0\n * @see PIXI.Rectangle#copyFrom\n */\n PIXI.Rectangle.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Rectangle.copy method has been replaced with PIXI.Rectangle.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.Matrix#copy\n * @deprecated since 5.0.0\n * @see PIXI.Matrix#copyTo\n */\n PIXI.Matrix.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Matrix.copy method has been replaced with PIXI.Matrix.copyTo');\n\n return this.copyTo(p);\n };\n\n /**\n * @method PIXI.systems.StateSystem#setState\n * @deprecated since 5.1.0\n * @see PIXI.systems.StateSystem#set\n */\n PIXI.systems.StateSystem.prototype.setState = function setState(s)\n {\n deprecation('v5.1.0', 'StateSystem.setState has been renamed to StateSystem.set');\n\n return this.set(s);\n };\n\n Object.assign(PIXI.systems.FilterSystem.prototype, {\n /**\n * @method PIXI.FilterManager#getRenderTarget\n * @deprecated since 5.0.0\n * @see PIXI.systems.FilterSystem#getFilterTexture\n */\n getRenderTarget: function getRenderTarget(clear, resolution)\n {\n deprecation(v5,\n 'PIXI.FilterManager.getRenderTarget method has been replaced with PIXI.systems.FilterSystem#getFilterTexture'\n );\n\n return this.getFilterTexture(resolution);\n },\n\n /**\n * @method PIXI.FilterManager#returnRenderTarget\n * @deprecated since 5.0.0\n * @see PIXI.systems.FilterSystem#returnFilterTexture\n */\n returnRenderTarget: function returnRenderTarget(renderTexture)\n {\n deprecation(v5,\n 'PIXI.FilterManager.returnRenderTarget method has been replaced with '\n + 'PIXI.systems.FilterSystem.returnFilterTexture'\n );\n\n this.returnFilterTexture(renderTexture);\n },\n\n /**\n * @method PIXI.systems.FilterSystem#calculateScreenSpaceMatrix\n * @deprecated since 5.0.0\n * @param {PIXI.Matrix} outputMatrix - the matrix to output to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n calculateScreenSpaceMatrix: function calculateScreenSpaceMatrix(outputMatrix)\n {\n deprecation(v5, 'PIXI.systems.FilterSystem.calculateScreenSpaceMatrix method is removed, '\n + 'use `(vTextureCoord * inputSize.xy) + outputFrame.xy` instead');\n\n var mappedMatrix = outputMatrix.identity();\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n\n mappedMatrix.translate(sourceFrame.x / destinationFrame.width, sourceFrame.y / destinationFrame.height);\n mappedMatrix.scale(destinationFrame.width, destinationFrame.height);\n\n return mappedMatrix;\n },\n\n /**\n * @method PIXI.systems.FilterSystem#calculateNormalizedScreenSpaceMatrix\n * @deprecated since 5.0.0\n * @param {PIXI.Matrix} outputMatrix - The matrix to output to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n calculateNormalizedScreenSpaceMatrix: function calculateNormalizedScreenSpaceMatrix(outputMatrix)\n {\n deprecation(v5, 'PIXI.systems.FilterManager.calculateNormalizedScreenSpaceMatrix method is removed, '\n + 'use `((vTextureCoord * inputSize.xy) + outputFrame.xy) / outputFrame.zw` instead.');\n\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n var mappedMatrix = outputMatrix.identity();\n\n mappedMatrix.translate(sourceFrame.x / destinationFrame.width, sourceFrame.y / destinationFrame.height);\n\n var translateScaleX = (destinationFrame.width / sourceFrame.width);\n var translateScaleY = (destinationFrame.height / sourceFrame.height);\n\n mappedMatrix.scale(translateScaleX, translateScaleY);\n\n return mappedMatrix;\n },\n });\n\n Object.defineProperties(PIXI.RenderTexture.prototype, {\n /**\n * @name PIXI.RenderTexture#sourceFrame\n * @type {PIXI.Rectangle}\n * @deprecated since 5.0.0\n * @readonly\n */\n sourceFrame: {\n get: function get()\n {\n deprecation(v5, 'PIXI.RenderTexture.sourceFrame property has been removed');\n\n return this.filterFrame;\n },\n },\n /**\n * @name PIXI.RenderTexture#size\n * @type {PIXI.Rectangle}\n * @deprecated since 5.0.0\n * @readonly\n */\n size: {\n get: function get()\n {\n deprecation(v5, 'PIXI.RenderTexture.size property has been removed');\n\n return this._frame;\n },\n },\n });\n\n /**\n * @class BlurXFilter\n * @memberof PIXI.filters\n * @deprecated since 5.0.0\n * @see PIXI.filters.BlurFilterPass\n */\n var BlurXFilter = /*@__PURE__*/(function (superclass) {\n function BlurXFilter(strength, quality, resolution, kernelSize)\n {\n deprecation(v5, 'PIXI.filters.BlurXFilter class is deprecated, use PIXI.filters.BlurFilterPass');\n\n superclass.call(this, true, strength, quality, resolution, kernelSize);\n }\n\n if ( superclass ) BlurXFilter.__proto__ = superclass;\n BlurXFilter.prototype = Object.create( superclass && superclass.prototype );\n BlurXFilter.prototype.constructor = BlurXFilter;\n\n return BlurXFilter;\n }(PIXI.filters.BlurFilterPass));\n\n /**\n * @class BlurYFilter\n * @memberof PIXI.filters\n * @deprecated since 5.0.0\n * @see PIXI.filters.BlurFilterPass\n */\n var BlurYFilter = /*@__PURE__*/(function (superclass) {\n function BlurYFilter(strength, quality, resolution, kernelSize)\n {\n deprecation(v5, 'PIXI.filters.BlurYFilter class is deprecated, use PIXI.filters.BlurFilterPass');\n\n superclass.call(this, false, strength, quality, resolution, kernelSize);\n }\n\n if ( superclass ) BlurYFilter.__proto__ = superclass;\n BlurYFilter.prototype = Object.create( superclass && superclass.prototype );\n BlurYFilter.prototype.constructor = BlurYFilter;\n\n return BlurYFilter;\n }(PIXI.filters.BlurFilterPass));\n\n Object.assign(PIXI.filters, {\n BlurXFilter: BlurXFilter,\n BlurYFilter: BlurYFilter,\n });\n\n var Sprite = PIXI.Sprite;\n var Texture = PIXI.Texture;\n var Graphics = PIXI.Graphics;\n\n // Support for pixi.js-legacy bifurcation\n // give users a friendly assist to use legacy\n if (!Graphics.prototype.generateCanvasTexture)\n {\n Graphics.prototype.generateCanvasTexture = function generateCanvasTexture()\n {\n deprecation(v5, 'PIXI.Graphics.generateCanvasTexture method is only available in \"pixi.js-legacy\"');\n };\n }\n\n /**\n * @deprecated since 5.0.0\n * @member {PIXI.Graphics} PIXI.Graphics#graphicsData\n * @see PIXI.Graphics#geometry\n * @readonly\n */\n Object.defineProperty(PIXI.Graphics.prototype, 'graphicsData', {\n get: function get()\n {\n deprecation(v5, 'PIXI.Graphics.graphicsData property is deprecated, use PIXI.Graphics.geometry.graphicsData');\n\n return this.geometry.graphicsData;\n },\n });\n\n // Use these to deprecate all the Sprite from* methods\n function spriteFrom(name, source, crossorigin, scaleMode)\n {\n deprecation(v5, (\"PIXI.Sprite.\" + name + \" method is deprecated, use PIXI.Sprite.from\"));\n\n return Sprite.from(source, {\n resourceOptions: {\n scale: scaleMode,\n crossorigin: crossorigin,\n },\n });\n }\n\n /**\n * @deprecated since 5.0.0\n * @see PIXI.Sprite.from\n * @method PIXI.Sprite.fromImage\n * @return {PIXI.Sprite}\n */\n Sprite.fromImage = spriteFrom.bind(null, 'fromImage');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromSVG\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromSVG = spriteFrom.bind(null, 'fromSVG');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromCanvas\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromCanvas = spriteFrom.bind(null, 'fromCanvas');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromVideo\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromVideo = spriteFrom.bind(null, 'fromVideo');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromFrame\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromFrame = spriteFrom.bind(null, 'fromFrame');\n\n // Use these to deprecate all the Texture from* methods\n function textureFrom(name, source, crossorigin, scaleMode)\n {\n deprecation(v5, (\"PIXI.Texture.\" + name + \" method is deprecated, use PIXI.Texture.from\"));\n\n return Texture.from(source, {\n resourceOptions: {\n scale: scaleMode,\n crossorigin: crossorigin,\n },\n });\n }\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromImage\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromImage = textureFrom.bind(null, 'fromImage');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromSVG\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromSVG = textureFrom.bind(null, 'fromSVG');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromCanvas\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromCanvas = textureFrom.bind(null, 'fromCanvas');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromVideo\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromVideo = textureFrom.bind(null, 'fromVideo');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromFrame\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromFrame = textureFrom.bind(null, 'fromFrame');\n\n /**\n * @deprecated since 5.0.0\n * @member {boolean} PIXI.AbstractRenderer#autoResize\n * @see PIXI.AbstractRenderer#autoDensity\n */\n Object.defineProperty(PIXI.AbstractRenderer.prototype, 'autoResize', {\n get: function get()\n {\n deprecation(v5, 'PIXI.AbstractRenderer.autoResize property is deprecated, '\n + 'use PIXI.AbstractRenderer.autoDensity');\n\n return this.autoDensity;\n },\n set: function set(value)\n {\n deprecation(v5, 'PIXI.AbstractRenderer.autoResize property is deprecated, '\n + 'use PIXI.AbstractRenderer.autoDensity');\n\n this.autoDensity = value;\n },\n });\n\n /**\n * @deprecated since 5.0.0\n * @member {PIXI.systems.TextureSystem} PIXI.Renderer#textureManager\n * @see PIXI.Renderer#texture\n */\n Object.defineProperty(PIXI.Renderer.prototype, 'textureManager', {\n get: function get()\n {\n deprecation(v5, 'PIXI.Renderer.textureManager property is deprecated, use PIXI.Renderer.texture');\n\n return this.texture;\n },\n });\n\n /**\n * @namespace PIXI.utils.mixins\n * @deprecated since 5.0.0\n */\n PIXI.utils.mixins = {\n /**\n * @memberof PIXI.utils.mixins\n * @function mixin\n * @deprecated since 5.0.0\n */\n mixin: function mixin()\n {\n deprecation(v5, 'PIXI.utils.mixins.mixin function is no longer available');\n },\n /**\n * @memberof PIXI.utils.mixins\n * @function delayMixin\n * @deprecated since 5.0.0\n */\n delayMixin: function delayMixin()\n {\n deprecation(v5, 'PIXI.utils.mixins.delayMixin function is no longer available');\n },\n /**\n * @memberof PIXI.utils.mixins\n * @function performMixins\n * @deprecated since 5.0.0\n */\n performMixins: function performMixins()\n {\n deprecation(v5, 'PIXI.utils.mixins.performMixins function is no longer available');\n },\n };\n}\n\n// Install renderer plugins\nRenderer.registerPlugin('accessibility', AccessibilityManager);\nRenderer.registerPlugin('extract', Extract);\nRenderer.registerPlugin('interaction', InteractionManager);\nRenderer.registerPlugin('particle', ParticleRenderer);\nRenderer.registerPlugin('prepare', Prepare);\nRenderer.registerPlugin('batch', BatchRenderer);\nRenderer.registerPlugin('tilingSprite', TilingSpriteRenderer);\n\nLoader.registerPlugin(BitmapFontLoader);\nLoader.registerPlugin(SpritesheetLoader);\n\nApplication.registerPlugin(TickerPlugin);\nApplication.registerPlugin(AppLoaderPlugin);\n\n/**\n * String of the current PIXI version.\n *\n * @static\n * @constant\n * @memberof PIXI\n * @name VERSION\n * @type {string}\n */\nvar VERSION = '5.1.4';\n\n/**\n * @namespace PIXI\n */\n\n/**\n * This namespace contains WebGL-only display filters that can be applied\n * to DisplayObjects using the {@link PIXI.DisplayObject#filters filters} property.\n *\n * Since PixiJS only had a handful of built-in filters, additional filters\n * can be downloaded {@link https://github.com/pixijs/pixi-filters here} from the\n * PixiJS Filters repository.\n *\n * All filters must extend {@link PIXI.Filter}.\n *\n * @example\n * // Create a new application\n * const app = new PIXI.Application();\n *\n * // Draw a green rectangle\n * const rect = new PIXI.Graphics()\n * .beginFill(0x00ff00)\n * .drawRect(40, 40, 200, 200);\n *\n * // Add a blur filter\n * rect.filters = [new PIXI.filters.BlurFilter()];\n *\n * // Display rectangle\n * app.stage.addChild(rect);\n * document.body.appendChild(app.view);\n * @namespace PIXI.filters\n */\nvar filters = {\n AlphaFilter: AlphaFilter,\n BlurFilter: BlurFilter,\n BlurFilterPass: BlurFilterPass,\n ColorMatrixFilter: ColorMatrixFilter,\n DisplacementFilter: DisplacementFilter,\n FXAAFilter: FXAAFilter,\n NoiseFilter: NoiseFilter,\n};\n\nexport { VERSION, filters, useDeprecated };\n//# sourceMappingURL=pixi.es.js.map\n","import { ImVec4 } from \"imgui-js\";\n\nexport function fromConstructor(constr: any):((params: any[]) => any)\n{\n return constr as unknown as ((params: any[]) => any)\n}\n\nexport function vec2col(v: ImVec4): number\n{\n return (((v.x * 255) & 0xFF) << 16) +\n (((v.y * 255) & 0xFF) << 8) +\n (((v.z * 255) & 0xFF) << 0);\n}\n","import * as ImGui from \"imgui-js\";\nimport { ImVec2 } from \"imgui-js\";\nimport * as PIXI from \"pixi.js\";\nimport * as U from \"./utils\";\n\nlet clipboard_text: string = \"\";\n\nconst contexts: ImGui.ImGuiContext[] = [];\nconst contextIOs: ImGui.ImGuiIO[] = [];\nlet isFirstWindow: boolean = true;\n\nclass ImGuiImplInternalRenderer extends PIXI.ObjectRenderer\n{\n constructor(r: PIXI.Renderer)\n {\n super(r);\n }\n render(owner: PIXI.DisplayObject): void\n {\n if (!(owner instanceof ImGuiWindowLayer)) return;\n\n const window: ImGuiWindow = (owner as ImGuiWindowLayer).window;\n\n const io: ImGui.ImGuiIO = window.io;\n const draw_data: ImGui.ImDrawData = ImGui.GetDrawData();\n if (draw_data === null) { throw new Error(); }\n\n gl || console.log(draw_data);\n\n // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates)\n const fb_width: number = io.DisplaySize.x * io.DisplayFramebufferScale.x;\n const fb_height: number = io.DisplaySize.y * io.DisplayFramebufferScale.y;\n if (fb_width === 0 || fb_height === 0) {\n return;\n }\n draw_data.ScaleClipRects(io.DisplayFramebufferScale);\n\n // Backup GL state\n const last_program: WebGLProgram | null = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null;\n const last_active_texture: GLenum | null = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null;\n gl && gl.activeTexture(gl.TEXTURE0);\n const last_texture0: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null;\n const last_vertex_array: WebGLVertexArrayObject | null = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null;\n const last_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null;\n const last_element_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null;\n // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode);\n const last_viewport: Int32Array | null = gl && gl.getParameter(gl.VIEWPORT) || null;\n const last_scissor_box: Int32Array | null = gl && gl.getParameter(gl.SCISSOR_BOX) || null;\n const last_blend_src_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null;\n const last_blend_dst_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_RGB) || null;\n const last_blend_src_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null;\n const last_blend_dst_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null;\n const last_blend_equation_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null;\n const last_blend_equation_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null;\n const last_enable_blend: GLboolean | null = gl && gl.getParameter(gl.BLEND) || null;\n const last_enable_cull_face: GLboolean | null = gl && gl.getParameter(gl.CULL_FACE) || null;\n const last_enable_depth_test: GLboolean | null = gl && gl.getParameter(gl.DEPTH_TEST) || null;\n const last_enable_scissor_test: GLboolean | null = gl && gl.getParameter(gl.SCISSOR_TEST) || null;\n\n gl.clearColor(0, 0, 0, 0);\n gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);\n \n gl && gl.bindVertexArray(g_VaoHandle);\n\n // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill\n gl && gl.enable(gl.BLEND);\n gl && gl.blendEquation(gl.FUNC_ADD);\n gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE);\n gl && gl.disable(gl.CULL_FACE);\n gl && gl.disable(gl.DEPTH_TEST);\n gl && gl.enable(gl.SCISSOR_TEST);\n // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);\n\n // Setup viewport, orthographic projection matrix\n // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps.\n gl && gl.viewport(0, 0, fb_width, fb_height);\n const L: number = draw_data.DisplayPos.x;\n const R: number = draw_data.DisplayPos.x + draw_data.DisplaySize.x;\n const T: number = draw_data.DisplayPos.y;\n const B: number = draw_data.DisplayPos.y + draw_data.DisplaySize.y;\n // we actually flip the bottom and top here to match with PIXI's texture usage\n const ortho_projection: Float32Array = new Float32Array([\n 2.0 / (R - L), 0.0, 0.0, 0.0,\n 0.0, 2.0 / (B - T), 0.0, 0.0,\n 0.0, 0.0, -1.0, 0.0,\n (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0,\n ]);\n gl && gl.useProgram(g_ShaderHandle);\n gl && gl.uniform1i(g_AttribLocationTex, 0);\n gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection);\n\n // Render command lists\n gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle);\n gl && gl.enableVertexAttribArray(g_AttribLocationPosition);\n gl && gl.enableVertexAttribArray(g_AttribLocationUV);\n gl && gl.enableVertexAttribArray(g_AttribLocationColor);\n\n gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertPosOffset);\n gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertUVOffset);\n gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImGui.ImDrawVertSize, ImGui.ImDrawVertColOffset);\n\n // Draw\n const pos = draw_data.DisplayPos;\n const idx_buffer_type: GLenum = gl && ((ImGui.ImDrawIdxSize === 4) ? gl.UNSIGNED_INT : gl.UNSIGNED_SHORT) || 0;\n draw_data.IterateDrawLists((draw_list: ImGui.ImDrawList): void => {\n gl || console.log(draw_list);\n gl || console.log(\"VtxBuffer.length\", draw_list.VtxBuffer.length);\n gl || console.log(\"IdxBuffer.length\", draw_list.IdxBuffer.length);\n \n let idx_buffer_offset: number = 0;\n\n gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle);\n gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW);\n gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle);\n gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW);\n\n draw_list.IterateDrawCmds((draw_cmd: ImGui.ImDrawCmd): void => {\n gl || console.log(draw_cmd);\n gl || console.log(\"ElemCount\", draw_cmd.ElemCount);\n gl || console.log(\"ClipRect\", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y);\n gl || console.log(\"TextureId\", draw_cmd.TextureId);\n if (!gl) {\n console.log(\"i: pos.x pos.y uv.x uv.y col\");\n for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) {\n const view: ImGui.ImDrawVert = new ImGui.ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImGui.ImDrawVertSize);\n console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${(\"00000000\" + view.col[0].toString(16)).substr(-8)}`);\n }\n }\n\n if (draw_cmd.UserCallback !== null) {\n // User callback (registered via ImDrawList::AddCallback)\n draw_cmd.UserCallback(draw_list, draw_cmd);\n } else {\n const clip_rect = new ImGui.ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y);\n if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) {\n // Apply scissor/clipping rectangle\n gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y);\n\n // Bind texture, Draw\n gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId);\n gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset);\n }\n }\n\n idx_buffer_offset += draw_cmd.ElemCount * ImGui.ImDrawIdxSize;\n });\n });\n\n // Restore modified GL state\n \n gl && (last_program !== null) && gl.useProgram(last_program);\n gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0);\n gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture);\n gl && gl.disableVertexAttribArray(g_AttribLocationPosition);\n gl && gl.disableVertexAttribArray(g_AttribLocationUV);\n gl && gl.disableVertexAttribArray(g_AttribLocationColor);\n gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array);\n gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer);\n gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer);\n gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]);\n gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]);\n gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha);\n gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha);\n gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND));\n gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE));\n gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST));\n gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST));\n // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]);\n }\n}\n\nlet gl: WebGL2RenderingContext = null;\nlet app: PIXI.Application = null;\n\nclass ImGuiWindowLayer extends PIXI.Sprite\n{\n public readonly window: ImGuiWindow;\n constructor(window: ImGuiWindow, tex:PIXI.RenderTexture)\n {\n super();\n this.pluginName = \"imgui_renderer\";\n this.window = window;\n }\n}\n\nexport class ImGuiWindow extends PIXI.Container\n{\n public readonly ctx: ImGui.ImGuiContext;\n public readonly io: ImGui.ImGuiIO;\n private sizeX: number;\n private sizeY: number;\n public getSizeX(): number { return this.sizeX; }\n public getSizeY(): number { return this.sizeY; }\n\n private baseTex: PIXI.BaseRenderTexture = new PIXI.BaseRenderTexture({scaleMode: PIXI.SCALE_MODES.LINEAR, resolution: 1, type: PIXI.TYPES.FLOAT, format: PIXI.FORMATS.RGBA});\n private tex: PIXI.RenderTexture = new PIXI.RenderTexture(this.baseTex);\n \n private surface: PIXI.Sprite = new PIXI.Sprite(this.tex);\n private imgui: ImGuiWindowLayer = new ImGuiWindowLayer(this, this.tex);\n \n private update: (dt: number) => void;\n constructor(sizeX: number, sizeY: number, update: (dt: number) => void)\n {\n super();\n\n this.ctx = ImGui.CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts);\n ImGui.SetCurrentContext(this.ctx);\n this.io = ImGui.GetIO();\n\n contexts.push(this.ctx);\n contextIOs.push(this.io);\n\n if (contexts.length == 1)\n {\n CreateFontsTexture();\n }\n\n if (typeof(window) !== \"undefined\") {\n ImGui.LoadIniSettingsFromMemory(window.localStorage.getItem(\"imgui.ini\") || \"\");\n }\n\n if (typeof(navigator) !== \"undefined\") {\n this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null;\n }\n\n this.io.SetClipboardTextFn = (user_data: any, text: string): void => {\n clipboard_text = text;\n // console.log(`set clipboard_text: \"${clipboard_text}\"`);\n if (typeof navigator !== \"undefined\" && typeof (navigator as any).clipboard !== \"undefined\") {\n // console.log(`clipboard.writeText: \"${clipboard_text}\"`);\n (navigator as any).clipboard.writeText(clipboard_text).then((): void => {\n // console.log(`clipboard.writeText: \"${clipboard_text}\" done.`);\n });\n }\n };\n this.io.GetClipboardTextFn = (user_data: any): string => {\n // if (typeof navigator !== \"undefined\" && typeof (navigator as any).clipboard !== \"undefined\") {\n // console.log(`clipboard.readText: \"${clipboard_text}\"`);\n // (navigator as any).clipboard.readText().then((text: string): void => {\n // clipboard_text = text;\n // console.log(`clipboard.readText: \"${clipboard_text}\" done.`);\n // });\n // }\n // console.log(`get clipboard_text: \"${clipboard_text}\"`);\n return clipboard_text;\n };\n this.io.ClipboardUserData = null;\n\n // Setup back-end capabilities flags\n this.io.BackendFlags |= ImGui.BackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional)\n\n // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array.\n this.io.KeyMap[ImGui.Key.Tab] = 9;\n this.io.KeyMap[ImGui.Key.LeftArrow] = 37;\n this.io.KeyMap[ImGui.Key.RightArrow] = 39;\n this.io.KeyMap[ImGui.Key.UpArrow] = 38;\n this.io.KeyMap[ImGui.Key.DownArrow] = 40;\n this.io.KeyMap[ImGui.Key.PageUp] = 33;\n this.io.KeyMap[ImGui.Key.PageDown] = 34;\n this.io.KeyMap[ImGui.Key.Home] = 36;\n this.io.KeyMap[ImGui.Key.End] = 35;\n this.io.KeyMap[ImGui.Key.Insert] = 45;\n this.io.KeyMap[ImGui.Key.Delete] = 46;\n this.io.KeyMap[ImGui.Key.Backspace] = 8;\n this.io.KeyMap[ImGui.Key.Space] = 32;\n this.io.KeyMap[ImGui.Key.Enter] = 13;\n this.io.KeyMap[ImGui.Key.Escape] = 27;\n this.io.KeyMap[ImGui.Key.A] = 65;\n this.io.KeyMap[ImGui.Key.C] = 67;\n this.io.KeyMap[ImGui.Key.V] = 86;\n this.io.KeyMap[ImGui.Key.X] = 88;\n this.io.KeyMap[ImGui.Key.Y] = 89;\n this.io.KeyMap[ImGui.Key.Z] = 90;\n\n this.update = update;\n this.resize(sizeX, sizeY);\n this.imgui.pluginName = 'imgui_renderer';\n this.addChild(this.surface);\n app.renderer.plugins.interaction.addListener(\"mousedown\", this.mouseDown.bind(this));\n app.renderer.plugins.interaction.addListener(\"mouseup\", this.mouseUp.bind(this));\n app.ticker.add(this.updateInternal.bind(this));\n\n this.interactive = false;\n this.interactiveChildren = true;\n\n this.surface.interactive = false;\n }\n withContext(cb: () => void)\n {\n ImGui.SetCurrentContext(this.ctx);\n cb();\n }\n mouseDown(e: PIXI.interaction.InteractionEvent): void\n {\n if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface)\n {\n this.io.MouseDown[mouse_button_map[0]] = true;\n }\n }\n mouseUp(e: PIXI.interaction.InteractionEvent): void\n {\n if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface)\n {\n this.io.MouseDown[mouse_button_map[0]] = false;\n }\n }\n resize(sizeX: number, sizeY: number)\n {\n this.sizeX = sizeX;\n this.sizeY = sizeY;\n this.baseTex.resize(sizeX, sizeY);\n this.tex.frame = new PIXI.Rectangle(0, 0, this.baseTex.width, this.baseTex.height);\n }\n updateInternal(deltaTime: number)\n {\n const dt: number = deltaTime * 1 / (1000 * PIXI.settings.TARGET_FPMS);\n\n ImGui.SetCurrentContext(this.ctx);\n\n if (this.io.WantSaveIniSettings) {\n this.io.WantSaveIniSettings = false;\n if (typeof(window) !== \"undefined\") {\n window.localStorage.setItem(\"imgui.ini\", ImGui.SaveIniSettingsToMemory());\n }\n }\n\n this.io.DisplaySize.x = this.sizeX;\n this.io.DisplaySize.y = this.sizeY;\n this.io.DisplayFramebufferScale.x = 1;\n this.io.DisplayFramebufferScale.y = 1;\n\n this.io.DeltaTime = dt;\n\n let localPos: PIXI.Point = this.toLocal(app.renderer.plugins.interaction.mouse.global);\n if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY)\n {\n localPos = new PIXI.Point(-Number.MAX_VALUE, -Number.MAX_VALUE);\n }\n this.io.MousePos.x = localPos.x;\n this.io.MousePos.y = localPos.y;\n\n if (this.io.WantSetMousePos) {\n console.log(\"TODO: MousePos\", this.io.MousePos.x, this.io.MousePos.y);\n }\n\n if (typeof(document) !== \"undefined\") {\n if (this.io.MouseDrawCursor) {\n document.body.style.cursor = \"none\";\n } else {\n switch (ImGui.GetMouseCursor()) {\n case ImGui.MouseCursor.None: document.body.style.cursor = \"none\"; break;\n default: case ImGui.MouseCursor.Arrow: document.body.style.cursor = \"default\"; break;\n case ImGui.MouseCursor.TextInput: document.body.style.cursor = \"text\"; break; // When hovering over InputText, etc.\n case ImGui.MouseCursor.ResizeAll: document.body.style.cursor = \"move\"; break; // Unused\n case ImGui.MouseCursor.ResizeNS: document.body.style.cursor = \"ns-resize\"; break; // When hovering over an horizontal border\n case ImGui.MouseCursor.ResizeEW: document.body.style.cursor = \"ew-resize\"; break; // When hovering over a vertical border or a column\n case ImGui.MouseCursor.ResizeNESW: document.body.style.cursor = \"nesw-resize\"; break; // When hovering over the bottom-left corner of a window\n case ImGui.MouseCursor.ResizeNWSE: document.body.style.cursor = \"nwse-resize\"; break; // When hovering over the bottom-right corner of a window\n case ImGui.MouseCursor.Hand: document.body.style.cursor = \"move\"; break;\n }\n }\n }\n\n // Gamepad navigation mapping [BETA]\n for (let i = 0; i < this.io.NavInputs.length; ++i) {\n this.io.NavInputs[i] = 0.0;\n }\n if (this.io.ConfigFlags & ImGui.ConfigFlags.NavEnableGamepad) {\n // Update gamepad inputs\n const gamepads: (Gamepad | null)[] = (typeof(navigator) !== \"undefined\" && typeof(navigator.getGamepads) === \"function\") ? navigator.getGamepads() : [];\n for (let i = 0; i < gamepads.length; ++i) {\n const gamepad: Gamepad | null = gamepads[i];\n if (!gamepad) { continue; }\n const buttons_count: number = gamepad.buttons.length;\n const axes_count: number = gamepad.axes.length;\n const MAP_BUTTON = function(NAV_NO: number, BUTTON_NO: number): void {\n if (!gamepad) { return; }\n if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed)\n this.io.NavInputs[NAV_NO] = 1.0;\n }\n const MAP_ANALOG = function(NAV_NO: number, AXIS_NO: number, V0: number, V1: number): void {\n if (!gamepad) { return; }\n let v: number = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0;\n v = (v - V0) / (V1 - V0);\n if (v > 1.0) v = 1.0;\n if (this.io.NavInputs[NAV_NO] < v) this.io.NavInputs[NAV_NO] = v;\n }\n // TODO: map input based on vendor and product id\n // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id\n const match: RegExpMatchArray | null = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/);\n const match_chrome: RegExpMatchArray | null = gamepad.id.match(/^.*\\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\\).*$/);\n const vendor: string = (match && match[1]) || (match_chrome && match_chrome[1]) || \"0000\";\n const product: string = (match && match[2]) || (match_chrome && match_chrome[2]) || \"0000\";\n switch (vendor + product) {\n case \"046dc216\": // Logitech Logitech Dual Action (Vendor: 046d Product: c216)\n MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 2); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 0); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_ANALOG(ImGui.NavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left\n MAP_ANALOG(ImGui.NavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right\n MAP_ANALOG(ImGui.NavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up\n MAP_ANALOG(ImGui.NavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n case \"046dc21d\": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d)\n MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left\n MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right\n MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up\n MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_ANALOG(ImGui.NavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT\n MAP_ANALOG(ImGui.NavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n case \"2dc86001\": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001)\n case \"2dc86101\": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101)\n MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 0); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 4); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_ANALOG(ImGui.NavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left\n MAP_ANALOG(ImGui.NavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right\n MAP_ANALOG(ImGui.NavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up\n MAP_ANALOG(ImGui.NavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 6); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 7); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 8); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 9); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n default: // standard gamepad: https://w3c.github.io/gamepad/#remapping\n MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left\n MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right\n MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up\n MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n }\n }\n }\n\n ImGui.NewFrame();\n\n this.update(dt);\n\n ImGui.EndFrame();\n ImGui.Render();\n\n app.renderer.render(this.imgui, this.tex);\n\n this.surface.interactive = this.io.WantCaptureMouse;\n }\n}\n\nlet canvas: HTMLCanvasElement | null = null;\n\n//export let gl: WebGL2RenderingContext | null = null;\nlet g_ShaderHandle: WebGLProgram | null = null;\nlet g_VertHandle: WebGLShader | null = null;\nlet g_FragHandle: WebGLShader | null = null;\nlet g_AttribLocationTex: WebGLUniformLocation | null = null;\nlet g_AttribLocationProjMtx: WebGLUniformLocation | null = null;\nlet g_AttribLocationPosition: GLint = -1;\nlet g_AttribLocationUV: GLint = -1;\nlet g_AttribLocationColor: GLint = -1;\nlet g_VaoHandle: WebGLVertexArrayObject = null;\nlet g_VboHandle: WebGLBuffer | null = null;\nlet g_ElementsHandle: WebGLBuffer | null = null;\nlet g_FontTexture: WebGLTexture | null = null;\n\nfunction document_on_copy(event: ClipboardEvent): void {\n if (event.clipboardData) {\n event.clipboardData.setData(\"text/plain\", clipboard_text);\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction document_on_cut(event: ClipboardEvent): void {\n if (event.clipboardData) {\n event.clipboardData.setData(\"text/plain\", clipboard_text);\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction document_on_paste(event: ClipboardEvent): void {\n if (event.clipboardData) {\n clipboard_text = event.clipboardData.getData(\"text/plain\");\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction window_on_gamepadconnected(event: any /* GamepadEvent */): void {\n console.log(\"Gamepad connected at index %d: %s. %d buttons, %d axes.\",\n event.gamepad.index, event.gamepad.id,\n event.gamepad.buttons.length, event.gamepad.axes.length);\n}\n\nfunction window_on_gamepaddisconnected(event: any /* GamepadEvent */): void {\n console.log(\"Gamepad disconnected at index %d: %s.\",\n event.gamepad.index, event.gamepad.id);\n}\n\nfunction canvas_on_blur(event: FocusEvent): void {\n for (var io of contextIOs)\n {\n io.KeyCtrl = false;\n io.KeyShift = false;\n io.KeyAlt = false;\n io.KeySuper = false;\n for (let i = 0; i < io.KeysDown.length; ++i) {\n io.KeysDown[i] = false;\n }\n for (let i = 0; i < io.MouseDown.length; ++i) {\n io.MouseDown[i] = false;\n }\n }\n}\n\nfunction canvas_on_keydown(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.KeyCtrl = event.ctrlKey;\n io.KeyShift = event.shiftKey;\n io.KeyAlt = event.altKey;\n io.KeySuper = event.metaKey;\n ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown));\n io.KeysDown[event.keyCode] = true;\n // forward to the keypress event\n if (/*io.WantCaptureKeyboard ||*/ event.key === \"Tab\") {\n event.preventDefault();\n }\n }\n}\n\nfunction canvas_on_keyup(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.KeyCtrl = event.ctrlKey;\n io.KeyShift = event.shiftKey;\n io.KeyAlt = event.altKey;\n io.KeySuper = event.metaKey;\n ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown));\n io.KeysDown[event.keyCode] = false;\n if (io.WantCaptureKeyboard) {\n event.preventDefault();\n }\n }\n}\n\nfunction canvas_on_keypress(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.AddInputCharacter(event.charCode);\n if (io.WantCaptureKeyboard) {\n event.preventDefault();\n }\n }\n}\n\n// MouseEvent.button\n// A number representing a given button:\n// 0: Main button pressed, usually the left button or the un-initialized state\n// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present)\n// 2: Secondary button pressed, usually the right button\n// 3: Fourth button, typically the Browser Back button\n// 4: Fifth button, typically the Browser Forward button\nconst mouse_button_map: number[] = [ 0, 2, 1, 3, 4 ];\n\nfunction canvas_on_contextmenu(event: Event): void {\n for (var io of contextIOs)\n {\n if (io.WantCaptureMouse) { event.preventDefault(); }\n }\n}\n\nfunction canvas_on_wheel(event: WheelEvent): void {\n for (var io of contextIOs)\n {\n let scale: number = 1.0;\n switch (event.deltaMode) {\n case event.DOM_DELTA_PIXEL: scale = 0.01; break;\n case event.DOM_DELTA_LINE: scale = 0.2; break;\n case event.DOM_DELTA_PAGE: scale = 1.0; break;\n }\n io.MouseWheelH = event.deltaX * scale;\n io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text.\n if (io.WantCaptureMouse) {\n event.preventDefault();\n }\n }\n}\n\nexport function PrePIXIInit(): void\n{\n PIXI.Renderer.registerPlugin(\"imgui_renderer\", U.fromConstructor(ImGuiImplInternalRenderer));\n}\n\nexport function Init(_app: PIXI.Application): void {\n // Setup Dear ImGui binding\n ImGui.IMGUI_CHECKVERSION();\n\n if (typeof(document) !== \"undefined\") {\n document.body.addEventListener(\"copy\", document_on_copy);\n document.body.addEventListener(\"cut\", document_on_cut);\n document.body.addEventListener(\"paste\", document_on_paste);\n }\n\n if (typeof(window) !== \"undefined\") {\n window.addEventListener(\"gamepadconnected\", window_on_gamepadconnected);\n window.addEventListener(\"gamepaddisconnected\", window_on_gamepaddisconnected);\n }\n\n app = _app;\n gl = (app.renderer as any).gl;\n canvas = app.view;\n\n gl.getExtension(\"EXT_color_buffer_float\");\n\n if (canvas !== null) {\n canvas.style.touchAction = \"none\"; // Disable browser handling of all panning and zooming gestures.\n canvas.addEventListener(\"blur\", canvas_on_blur);\n canvas.addEventListener(\"keydown\", canvas_on_keydown);\n canvas.addEventListener(\"keyup\", canvas_on_keyup);\n canvas.addEventListener(\"keypress\", canvas_on_keypress);\n canvas.addEventListener(\"contextmenu\", canvas_on_contextmenu);\n canvas.addEventListener(\"wheel\", canvas_on_wheel);\n }\n\n CreateDeviceObjects();\n}\n\nexport function Shutdown(): void {\n DestroyDeviceObjects();\n\n if (canvas !== null) {\n canvas.removeEventListener(\"blur\", canvas_on_blur);\n canvas.removeEventListener(\"keydown\", canvas_on_keydown);\n canvas.removeEventListener(\"keyup\", canvas_on_keyup);\n canvas.removeEventListener(\"keypress\", canvas_on_keypress);\n canvas.removeEventListener(\"contextmenu\", canvas_on_contextmenu);\n canvas.removeEventListener(\"wheel\", canvas_on_wheel);\n }\n\n app = null;\n canvas = null;\n\n if (typeof(window) !== \"undefined\") {\n window.removeEventListener(\"gamepadconnected\", window_on_gamepadconnected);\n window.removeEventListener(\"gamepaddisconnected\", window_on_gamepaddisconnected);\n }\n\n if (typeof(document) !== \"undefined\") {\n document.body.removeEventListener(\"copy\", document_on_copy);\n document.body.removeEventListener(\"cut\", document_on_cut);\n document.body.removeEventListener(\"paste\", document_on_paste);\n }\n}\n\nfunction CreateFontsTexture(): void {\n const io = ImGui.GetIO();\n\n // Backup GL state\n const last_texture: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D);\n\n // Build texture atlas\n // const width: number = 256;\n // const height: number = 256;\n // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff);\n const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory.\n // console.log(`font texture ${width} x ${height} @ ${pixels.length}`);\n\n // Upload texture to graphics system\n g_FontTexture = gl && gl.createTexture();\n gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture);\n gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);\n gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR);\n // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2\n gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels);\n\n // Store our identifier\n io.Fonts.TexID = g_FontTexture || { foo: \"bar\" };\n // console.log(\"font texture id\", g_FontTexture);\n\n // Restore modified GL state\n gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture);\n}\n\nfunction DestroyFontsTexture(): void {\n const io = ImGui.GetIO();\n io.Fonts.TexID = null;\n gl && gl.deleteTexture(g_FontTexture); g_FontTexture = null;\n}\n\nfunction CreateDeviceObjects(): void {\n const vertex_shader: string[] = [\n \"#version 300 es\",\n \"uniform mat4 ProjMtx;\",\n \"in vec2 Position;\",\n \"in vec2 UV;\",\n \"in vec4 Color;\",\n \"out vec2 Frag_UV;\",\n \"out vec4 Frag_Color;\",\n \"void main() {\",\n \"\tFrag_UV = UV;\",\n \"\tFrag_Color = Color;\",\n \"\tgl_Position = ProjMtx * vec4(Position.xy,0,1);\",\n \"}\",\n ];\n\n const fragment_shader: string[] = [\n \"#version 300 es\",\n \"precision mediump float;\", // WebGL requires precision specifiers\n \"uniform sampler2D Texture;\",\n \"in vec2 Frag_UV;\",\n \"in vec4 Frag_Color;\",\n \"out vec4 OutColor;\",\n \"void main() {\",\n \"\tOutColor = Frag_Color * texture(Texture, Frag_UV);\",\n \"}\",\n ];\n\n g_ShaderHandle = gl && gl.createProgram();\n g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER);\n g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER);\n gl && gl.shaderSource(g_VertHandle as WebGLShader, vertex_shader.join(\"\\n\"));\n gl && gl.shaderSource(g_FragHandle as WebGLShader, fragment_shader.join(\"\\n\"));\n gl && gl.compileShader(g_VertHandle as WebGLShader);\n gl && gl.compileShader(g_FragHandle as WebGLShader);\n gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_VertHandle as WebGLShader);\n gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_FragHandle as WebGLShader);\n gl && gl.linkProgram(g_ShaderHandle as WebGLProgram);\n\n g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, \"Texture\");\n g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, \"ProjMtx\");\n g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"Position\") || 0;\n g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"UV\") || 0;\n g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"Color\") || 0;\n\n g_VaoHandle = gl && gl.createVertexArray();\n g_VboHandle = gl && gl.createBuffer();\n g_ElementsHandle = gl && gl.createBuffer();\n\n}\n\nfunction DestroyDeviceObjects(): void {\n DestroyFontsTexture();\n\n gl && gl.deleteVertexArray(g_VaoHandle); g_VaoHandle = null;\n gl && gl.deleteBuffer(g_VboHandle); g_VboHandle = null;\n gl && gl.deleteBuffer(g_ElementsHandle); g_ElementsHandle = null;\n\n g_AttribLocationTex = null;\n g_AttribLocationProjMtx = null;\n g_AttribLocationPosition = -1;\n g_AttribLocationUV = -1;\n g_AttribLocationColor = -1;\n\n gl && gl.deleteProgram(g_ShaderHandle); g_ShaderHandle = null;\n gl && gl.deleteShader(g_VertHandle); g_VertHandle = null;\n gl && gl.deleteShader(g_FragHandle); g_FragHandle = null;\n}\n"],"names":["require","global","this","Polyfill","commonjsGlobal","delimiter","hasOwnProperty","map","parse","qsParse","qsStringify","sign","url","_url","prototypeAccessors","prototypeAccessors$1","EventEmitter","staticAccessors","Buffer","map$1","prototypeAccessors$2","prototypeAccessors$3","prototypeAccessors$4","prototypeAccessors$5","staticAccessors$1","earcut","tempAnchor","Resource","Url","Loader","Loader$1","middleware","vertex","fragment","tempPoint","tempMat","defaultFilterVertex","PIXI.ObjectRenderer","ImGui.GetDrawData","ImGui.ImDrawVertSize","ImGui.ImDrawVertPosOffset","ImGui.ImDrawVertUVOffset","ImGui.ImDrawVertColOffset","ImGui.ImDrawVert","ImGui.ImVec4","ImGui.ImDrawIdxSize","PIXI.Sprite","PIXI.Container","PIXI.BaseRenderTexture","PIXI.SCALE_MODES","PIXI.TYPES","PIXI.FORMATS","PIXI.RenderTexture","ImGui.CreateContext","ImGui.SetCurrentContext","ImGui.GetIO","ImGui.LoadIniSettingsFromMemory","ImGui.BackendFlags","ImGui.Key","PIXI.Rectangle","PIXI.settings","ImGui.SaveIniSettingsToMemory","PIXI.Point","ImGui.GetMouseCursor","ImGui.MouseCursor","ImGui.ConfigFlags","ImGui.NavInput","ImGui.NewFrame","ImGui.EndFrame","ImGui.Render","canvas","ImGui.IM_ASSERT","ImGui.IM_ARRAYSIZE","PIXI.Renderer","U.fromConstructor","ImGui.IMGUI_CHECKVERSION"],"mappings":"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C,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGhF,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGhF,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;;;QAGtF,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAA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"} \ No newline at end of file diff --git a/imgui_impl.ts b/imgui_impl.ts new file mode 100644 index 0000000..a5dad20 --- /dev/null +++ b/imgui_impl.ts @@ -0,0 +1,797 @@ +import * as ImGui from "imgui-js"; +import { ImVec2 } from "imgui-js"; +import * as PIXI from "pixi.js"; +import * as U from "./utils"; + +let clipboard_text: string = ""; + +const contexts: ImGui.ImGuiContext[] = []; +const contextIOs: ImGui.ImGuiIO[] = []; +let isFirstWindow: boolean = true; + +class ImGuiImplInternalRenderer extends PIXI.ObjectRenderer +{ + constructor(r: PIXI.Renderer) + { + super(r); + } + render(owner: PIXI.DisplayObject): void + { + if (!(owner instanceof ImGuiWindowLayer)) return; + + const window: ImGuiWindow = (owner as ImGuiWindowLayer).window; + + const io: ImGui.ImGuiIO = window.io; + const draw_data: ImGui.ImDrawData = ImGui.GetDrawData(); + if (draw_data === null) { throw new Error(); } + + gl || console.log(draw_data); + + // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) + const fb_width: number = io.DisplaySize.x * io.DisplayFramebufferScale.x; + const fb_height: number = io.DisplaySize.y * io.DisplayFramebufferScale.y; + if (fb_width === 0 || fb_height === 0) { + return; + } + draw_data.ScaleClipRects(io.DisplayFramebufferScale); + + // Backup GL state + const last_program: WebGLProgram | null = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null; + const last_active_texture: GLenum | null = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null; + gl && gl.activeTexture(gl.TEXTURE0); + const last_texture0: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null; + const last_vertex_array: WebGLVertexArrayObject | null = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null; + const last_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null; + const last_element_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null; + // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode); + const last_viewport: Int32Array | null = gl && gl.getParameter(gl.VIEWPORT) || null; + const last_scissor_box: Int32Array | null = gl && gl.getParameter(gl.SCISSOR_BOX) || null; + const last_blend_src_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null; + const last_blend_dst_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_RGB) || null; + const last_blend_src_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null; + const last_blend_dst_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null; + const last_blend_equation_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null; + const last_blend_equation_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null; + const last_enable_blend: GLboolean | null = gl && gl.getParameter(gl.BLEND) || null; + const last_enable_cull_face: GLboolean | null = gl && gl.getParameter(gl.CULL_FACE) || null; + const last_enable_depth_test: GLboolean | null = gl && gl.getParameter(gl.DEPTH_TEST) || null; + const last_enable_scissor_test: GLboolean | null = gl && gl.getParameter(gl.SCISSOR_TEST) || null; + + gl.clearColor(0, 0, 0, 0); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + + gl && gl.bindVertexArray(g_VaoHandle); + + // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill + gl && gl.enable(gl.BLEND); + gl && gl.blendEquation(gl.FUNC_ADD); + gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE); + gl && gl.disable(gl.CULL_FACE); + gl && gl.disable(gl.DEPTH_TEST); + gl && gl.enable(gl.SCISSOR_TEST); + // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + + // Setup viewport, orthographic projection matrix + // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps. + gl && gl.viewport(0, 0, fb_width, fb_height); + const L: number = draw_data.DisplayPos.x; + const R: number = draw_data.DisplayPos.x + draw_data.DisplaySize.x; + const T: number = draw_data.DisplayPos.y; + const B: number = draw_data.DisplayPos.y + draw_data.DisplaySize.y; + // we actually flip the bottom and top here to match with PIXI's texture usage + const ortho_projection: Float32Array = new Float32Array([ + 2.0 / (R - L), 0.0, 0.0, 0.0, + 0.0, 2.0 / (B - T), 0.0, 0.0, + 0.0, 0.0, -1.0, 0.0, + (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0, + ]); + gl && gl.useProgram(g_ShaderHandle); + gl && gl.uniform1i(g_AttribLocationTex, 0); + gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection); + + // Render command lists + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.enableVertexAttribArray(g_AttribLocationPosition); + gl && gl.enableVertexAttribArray(g_AttribLocationUV); + gl && gl.enableVertexAttribArray(g_AttribLocationColor); + + gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertPosOffset); + gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertUVOffset); + gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImGui.ImDrawVertSize, ImGui.ImDrawVertColOffset); + + // Draw + const pos = draw_data.DisplayPos; + const idx_buffer_type: GLenum = gl && ((ImGui.ImDrawIdxSize === 4) ? gl.UNSIGNED_INT : gl.UNSIGNED_SHORT) || 0; + draw_data.IterateDrawLists((draw_list: ImGui.ImDrawList): void => { + gl || console.log(draw_list); + gl || console.log("VtxBuffer.length", draw_list.VtxBuffer.length); + gl || console.log("IdxBuffer.length", draw_list.IdxBuffer.length); + + let idx_buffer_offset: number = 0; + + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW); + gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle); + gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW); + + draw_list.IterateDrawCmds((draw_cmd: ImGui.ImDrawCmd): void => { + gl || console.log(draw_cmd); + gl || console.log("ElemCount", draw_cmd.ElemCount); + gl || console.log("ClipRect", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y); + gl || console.log("TextureId", draw_cmd.TextureId); + if (!gl) { + console.log("i: pos.x pos.y uv.x uv.y col"); + for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) { + const view: ImGui.ImDrawVert = new ImGui.ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImGui.ImDrawVertSize); + console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${("00000000" + view.col[0].toString(16)).substr(-8)}`); + } + } + + if (draw_cmd.UserCallback !== null) { + // User callback (registered via ImDrawList::AddCallback) + draw_cmd.UserCallback(draw_list, draw_cmd); + } else { + const clip_rect = new ImGui.ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y); + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) { + // Apply scissor/clipping rectangle + gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y); + + // Bind texture, Draw + gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId); + gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset); + } + } + + idx_buffer_offset += draw_cmd.ElemCount * ImGui.ImDrawIdxSize; + }); + }); + + // Restore modified GL state + + gl && (last_program !== null) && gl.useProgram(last_program); + gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0); + gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture); + gl && gl.disableVertexAttribArray(g_AttribLocationPosition); + gl && gl.disableVertexAttribArray(g_AttribLocationUV); + gl && gl.disableVertexAttribArray(g_AttribLocationColor); + gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array); + gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer); + gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer); + gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]); + gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]); + gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha); + gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); + gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND)); + gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE)); + gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST)); + gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST)); + // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]); + } +} + +let gl: WebGL2RenderingContext = null; +let app: PIXI.Application = null; + +class ImGuiWindowLayer extends PIXI.Sprite +{ + public readonly window: ImGuiWindow; + constructor(window: ImGuiWindow, tex:PIXI.RenderTexture) + { + super(); + this.pluginName = "imgui_renderer"; + this.window = window; + } +} + +export class ImGuiWindow extends PIXI.Container +{ + public readonly ctx: ImGui.ImGuiContext; + public readonly io: ImGui.ImGuiIO; + private sizeX: number; + private sizeY: number; + public getSizeX(): number { return this.sizeX; } + public getSizeY(): number { return this.sizeY; } + + private baseTex: PIXI.BaseRenderTexture = new PIXI.BaseRenderTexture({scaleMode: PIXI.SCALE_MODES.LINEAR, resolution: 1, type: PIXI.TYPES.FLOAT, format: PIXI.FORMATS.RGBA}); + private tex: PIXI.RenderTexture = new PIXI.RenderTexture(this.baseTex); + + private surface: PIXI.Sprite = new PIXI.Sprite(this.tex); + private imgui: ImGuiWindowLayer = new ImGuiWindowLayer(this, this.tex); + + private update: (dt: number) => void; + constructor(sizeX: number, sizeY: number, update: (dt: number) => void) + { + super(); + + this.ctx = ImGui.CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts); + ImGui.SetCurrentContext(this.ctx); + this.io = ImGui.GetIO(); + + contexts.push(this.ctx); + contextIOs.push(this.io); + + if (contexts.length == 1) + { + CreateFontsTexture(); + } + + if (typeof(window) !== "undefined") { + ImGui.LoadIniSettingsFromMemory(window.localStorage.getItem("imgui.ini") || ""); + } + + if (typeof(navigator) !== "undefined") { + this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null; + } + + this.io.SetClipboardTextFn = (user_data: any, text: string): void => { + clipboard_text = text; + // console.log(`set clipboard_text: "${clipboard_text}"`); + if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.writeText: "${clipboard_text}"`); + (navigator as any).clipboard.writeText(clipboard_text).then((): void => { + // console.log(`clipboard.writeText: "${clipboard_text}" done.`); + }); + } + }; + this.io.GetClipboardTextFn = (user_data: any): string => { + // if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.readText: "${clipboard_text}"`); + // (navigator as any).clipboard.readText().then((text: string): void => { + // clipboard_text = text; + // console.log(`clipboard.readText: "${clipboard_text}" done.`); + // }); + // } + // console.log(`get clipboard_text: "${clipboard_text}"`); + return clipboard_text; + }; + this.io.ClipboardUserData = null; + + // Setup back-end capabilities flags + this.io.BackendFlags |= ImGui.BackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional) + + // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array. + this.io.KeyMap[ImGui.Key.Tab] = 9; + this.io.KeyMap[ImGui.Key.LeftArrow] = 37; + this.io.KeyMap[ImGui.Key.RightArrow] = 39; + this.io.KeyMap[ImGui.Key.UpArrow] = 38; + this.io.KeyMap[ImGui.Key.DownArrow] = 40; + this.io.KeyMap[ImGui.Key.PageUp] = 33; + this.io.KeyMap[ImGui.Key.PageDown] = 34; + this.io.KeyMap[ImGui.Key.Home] = 36; + this.io.KeyMap[ImGui.Key.End] = 35; + this.io.KeyMap[ImGui.Key.Insert] = 45; + this.io.KeyMap[ImGui.Key.Delete] = 46; + this.io.KeyMap[ImGui.Key.Backspace] = 8; + this.io.KeyMap[ImGui.Key.Space] = 32; + this.io.KeyMap[ImGui.Key.Enter] = 13; + this.io.KeyMap[ImGui.Key.Escape] = 27; + this.io.KeyMap[ImGui.Key.A] = 65; + this.io.KeyMap[ImGui.Key.C] = 67; + this.io.KeyMap[ImGui.Key.V] = 86; + this.io.KeyMap[ImGui.Key.X] = 88; + this.io.KeyMap[ImGui.Key.Y] = 89; + this.io.KeyMap[ImGui.Key.Z] = 90; + + this.update = update; + this.resize(sizeX, sizeY); + this.imgui.pluginName = 'imgui_renderer'; + this.addChild(this.surface); + app.renderer.plugins.interaction.addListener("mousedown", this.mouseDown.bind(this)); + app.renderer.plugins.interaction.addListener("mouseup", this.mouseUp.bind(this)); + app.ticker.add(this.updateInternal.bind(this)); + + this.interactive = false; + this.interactiveChildren = true; + + this.surface.interactive = false; + } + withContext(cb: () => void) + { + ImGui.SetCurrentContext(this.ctx); + cb(); + } + mouseDown(e: PIXI.interaction.InteractionEvent): void + { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) + { + this.io.MouseDown[mouse_button_map[0]] = true; + } + } + mouseUp(e: PIXI.interaction.InteractionEvent): void + { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) + { + this.io.MouseDown[mouse_button_map[0]] = false; + } + } + resize(sizeX: number, sizeY: number) + { + this.sizeX = sizeX; + this.sizeY = sizeY; + this.baseTex.resize(sizeX, sizeY); + this.tex.frame = new PIXI.Rectangle(0, 0, this.baseTex.width, this.baseTex.height); + } + updateInternal(deltaTime: number) + { + const dt: number = deltaTime * 1 / (1000 * PIXI.settings.TARGET_FPMS); + + ImGui.SetCurrentContext(this.ctx); + + if (this.io.WantSaveIniSettings) { + this.io.WantSaveIniSettings = false; + if (typeof(window) !== "undefined") { + window.localStorage.setItem("imgui.ini", ImGui.SaveIniSettingsToMemory()); + } + } + + this.io.DisplaySize.x = this.sizeX; + this.io.DisplaySize.y = this.sizeY; + this.io.DisplayFramebufferScale.x = 1; + this.io.DisplayFramebufferScale.y = 1; + + this.io.DeltaTime = dt; + + let localPos: PIXI.Point = this.toLocal(app.renderer.plugins.interaction.mouse.global); + if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY) + { + localPos = new PIXI.Point(-Number.MAX_VALUE, -Number.MAX_VALUE); + } + this.io.MousePos.x = localPos.x; + this.io.MousePos.y = localPos.y; + + if (this.io.WantSetMousePos) { + console.log("TODO: MousePos", this.io.MousePos.x, this.io.MousePos.y); + } + + if (typeof(document) !== "undefined") { + if (this.io.MouseDrawCursor) { + document.body.style.cursor = "none"; + } else { + switch (ImGui.GetMouseCursor()) { + case ImGui.MouseCursor.None: document.body.style.cursor = "none"; break; + default: case ImGui.MouseCursor.Arrow: document.body.style.cursor = "default"; break; + case ImGui.MouseCursor.TextInput: document.body.style.cursor = "text"; break; // When hovering over InputText, etc. + case ImGui.MouseCursor.ResizeAll: document.body.style.cursor = "move"; break; // Unused + case ImGui.MouseCursor.ResizeNS: document.body.style.cursor = "ns-resize"; break; // When hovering over an horizontal border + case ImGui.MouseCursor.ResizeEW: document.body.style.cursor = "ew-resize"; break; // When hovering over a vertical border or a column + case ImGui.MouseCursor.ResizeNESW: document.body.style.cursor = "nesw-resize"; break; // When hovering over the bottom-left corner of a window + case ImGui.MouseCursor.ResizeNWSE: document.body.style.cursor = "nwse-resize"; break; // When hovering over the bottom-right corner of a window + case ImGui.MouseCursor.Hand: document.body.style.cursor = "move"; break; + } + } + } + + // Gamepad navigation mapping [BETA] + for (let i = 0; i < this.io.NavInputs.length; ++i) { + this.io.NavInputs[i] = 0.0; + } + if (this.io.ConfigFlags & ImGui.ConfigFlags.NavEnableGamepad) { + // Update gamepad inputs + const gamepads: (Gamepad | null)[] = (typeof(navigator) !== "undefined" && typeof(navigator.getGamepads) === "function") ? navigator.getGamepads() : []; + for (let i = 0; i < gamepads.length; ++i) { + const gamepad: Gamepad | null = gamepads[i]; + if (!gamepad) { continue; } + const buttons_count: number = gamepad.buttons.length; + const axes_count: number = gamepad.axes.length; + const MAP_BUTTON = function(NAV_NO: number, BUTTON_NO: number): void { + if (!gamepad) { return; } + if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed) + this.io.NavInputs[NAV_NO] = 1.0; + } + const MAP_ANALOG = function(NAV_NO: number, AXIS_NO: number, V0: number, V1: number): void { + if (!gamepad) { return; } + let v: number = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0; + v = (v - V0) / (V1 - V0); + if (v > 1.0) v = 1.0; + if (this.io.NavInputs[NAV_NO] < v) this.io.NavInputs[NAV_NO] = v; + } + // TODO: map input based on vendor and product id + // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id + const match: RegExpMatchArray | null = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/); + const match_chrome: RegExpMatchArray | null = gamepad.id.match(/^.*\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\).*$/); + const vendor: string = (match && match[1]) || (match_chrome && match_chrome[1]) || "0000"; + const product: string = (match && match[2]) || (match_chrome && match_chrome[2]) || "0000"; + switch (vendor + product) { + case "046dc216": // Logitech Logitech Dual Action (Vendor: 046d Product: c216) + MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 2); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 0); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGui.NavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGui.NavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGui.NavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGui.NavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + case "046dc21d": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d) + MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_ANALOG(ImGui.NavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT + MAP_ANALOG(ImGui.NavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + case "2dc86001": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001) + case "2dc86101": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101) + MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 0); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 4); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGui.NavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGui.NavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGui.NavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGui.NavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 6); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 7); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 8); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 9); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + default: // standard gamepad: https://w3c.github.io/gamepad/#remapping + MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + } + } + } + + ImGui.NewFrame(); + + this.update(dt); + + ImGui.EndFrame(); + ImGui.Render(); + + app.renderer.render(this.imgui, this.tex); + + this.surface.interactive = this.io.WantCaptureMouse; + } +} + +let canvas: HTMLCanvasElement | null = null; + +//export let gl: WebGL2RenderingContext | null = null; +let g_ShaderHandle: WebGLProgram | null = null; +let g_VertHandle: WebGLShader | null = null; +let g_FragHandle: WebGLShader | null = null; +let g_AttribLocationTex: WebGLUniformLocation | null = null; +let g_AttribLocationProjMtx: WebGLUniformLocation | null = null; +let g_AttribLocationPosition: GLint = -1; +let g_AttribLocationUV: GLint = -1; +let g_AttribLocationColor: GLint = -1; +let g_VaoHandle: WebGLVertexArrayObject = null; +let g_VboHandle: WebGLBuffer | null = null; +let g_ElementsHandle: WebGLBuffer | null = null; +let g_FontTexture: WebGLTexture | null = null; + +function document_on_copy(event: ClipboardEvent): void { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function document_on_cut(event: ClipboardEvent): void { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function document_on_paste(event: ClipboardEvent): void { + if (event.clipboardData) { + clipboard_text = event.clipboardData.getData("text/plain"); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function window_on_gamepadconnected(event: any /* GamepadEvent */): void { + console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.", + event.gamepad.index, event.gamepad.id, + event.gamepad.buttons.length, event.gamepad.axes.length); +} + +function window_on_gamepaddisconnected(event: any /* GamepadEvent */): void { + console.log("Gamepad disconnected at index %d: %s.", + event.gamepad.index, event.gamepad.id); +} + +function canvas_on_blur(event: FocusEvent): void { + for (var io of contextIOs) + { + io.KeyCtrl = false; + io.KeyShift = false; + io.KeyAlt = false; + io.KeySuper = false; + for (let i = 0; i < io.KeysDown.length; ++i) { + io.KeysDown[i] = false; + } + for (let i = 0; i < io.MouseDown.length; ++i) { + io.MouseDown[i] = false; + } + } +} + +function canvas_on_keydown(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = true; + // forward to the keypress event + if (/*io.WantCaptureKeyboard ||*/ event.key === "Tab") { + event.preventDefault(); + } + } +} + +function canvas_on_keyup(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = false; + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} + +function canvas_on_keypress(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.AddInputCharacter(event.charCode); + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} + +// MouseEvent.button +// A number representing a given button: +// 0: Main button pressed, usually the left button or the un-initialized state +// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present) +// 2: Secondary button pressed, usually the right button +// 3: Fourth button, typically the Browser Back button +// 4: Fifth button, typically the Browser Forward button +const mouse_button_map: number[] = [ 0, 2, 1, 3, 4 ]; + +function canvas_on_contextmenu(event: Event): void { + for (var io of contextIOs) + { + if (io.WantCaptureMouse) { event.preventDefault(); } + } +} + +function canvas_on_wheel(event: WheelEvent): void { + for (var io of contextIOs) + { + let scale: number = 1.0; + switch (event.deltaMode) { + case event.DOM_DELTA_PIXEL: scale = 0.01; break; + case event.DOM_DELTA_LINE: scale = 0.2; break; + case event.DOM_DELTA_PAGE: scale = 1.0; break; + } + io.MouseWheelH = event.deltaX * scale; + io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text. + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} + +export function PrePIXIInit(): void +{ + PIXI.Renderer.registerPlugin("imgui_renderer", U.fromConstructor(ImGuiImplInternalRenderer)); +} + +export function Init(_app: PIXI.Application): void { + // Setup Dear ImGui binding + ImGui.IMGUI_CHECKVERSION(); + + if (typeof(document) !== "undefined") { + document.body.addEventListener("copy", document_on_copy); + document.body.addEventListener("cut", document_on_cut); + document.body.addEventListener("paste", document_on_paste); + } + + if (typeof(window) !== "undefined") { + window.addEventListener("gamepadconnected", window_on_gamepadconnected); + window.addEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + + app = _app; + gl = (app.renderer as any).gl; + canvas = app.view; + + gl.getExtension("EXT_color_buffer_float"); + + if (canvas !== null) { + canvas.style.touchAction = "none"; // Disable browser handling of all panning and zooming gestures. + canvas.addEventListener("blur", canvas_on_blur); + canvas.addEventListener("keydown", canvas_on_keydown); + canvas.addEventListener("keyup", canvas_on_keyup); + canvas.addEventListener("keypress", canvas_on_keypress); + canvas.addEventListener("contextmenu", canvas_on_contextmenu); + canvas.addEventListener("wheel", canvas_on_wheel); + } + + CreateDeviceObjects(); +} + +export function Shutdown(): void { + DestroyDeviceObjects(); + + if (canvas !== null) { + canvas.removeEventListener("blur", canvas_on_blur); + canvas.removeEventListener("keydown", canvas_on_keydown); + canvas.removeEventListener("keyup", canvas_on_keyup); + canvas.removeEventListener("keypress", canvas_on_keypress); + canvas.removeEventListener("contextmenu", canvas_on_contextmenu); + canvas.removeEventListener("wheel", canvas_on_wheel); + } + + app = null; + canvas = null; + + if (typeof(window) !== "undefined") { + window.removeEventListener("gamepadconnected", window_on_gamepadconnected); + window.removeEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + + if (typeof(document) !== "undefined") { + document.body.removeEventListener("copy", document_on_copy); + document.body.removeEventListener("cut", document_on_cut); + document.body.removeEventListener("paste", document_on_paste); + } +} + +function CreateFontsTexture(): void { + const io = ImGui.GetIO(); + + // Backup GL state + const last_texture: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D); + + // Build texture atlas + // const width: number = 256; + // const height: number = 256; + // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff); + const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory. + // console.log(`font texture ${width} x ${height} @ ${pixels.length}`); + + // Upload texture to graphics system + g_FontTexture = gl && gl.createTexture(); + gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2 + gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels); + + // Store our identifier + io.Fonts.TexID = g_FontTexture || { foo: "bar" }; + // console.log("font texture id", g_FontTexture); + + // Restore modified GL state + gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture); +} + +function DestroyFontsTexture(): void { + const io = ImGui.GetIO(); + io.Fonts.TexID = null; + gl && gl.deleteTexture(g_FontTexture); g_FontTexture = null; +} + +function CreateDeviceObjects(): void { + const vertex_shader: string[] = [ + "#version 300 es", + "uniform mat4 ProjMtx;", + "in vec2 Position;", + "in vec2 UV;", + "in vec4 Color;", + "out vec2 Frag_UV;", + "out vec4 Frag_Color;", + "void main() {", + " Frag_UV = UV;", + " Frag_Color = Color;", + " gl_Position = ProjMtx * vec4(Position.xy,0,1);", + "}", + ]; + + const fragment_shader: string[] = [ + "#version 300 es", + "precision mediump float;", // WebGL requires precision specifiers + "uniform sampler2D Texture;", + "in vec2 Frag_UV;", + "in vec4 Frag_Color;", + "out vec4 OutColor;", + "void main() {", + " OutColor = Frag_Color * texture(Texture, Frag_UV);", + "}", + ]; + + g_ShaderHandle = gl && gl.createProgram(); + g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER); + g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER); + gl && gl.shaderSource(g_VertHandle as WebGLShader, vertex_shader.join("\n")); + gl && gl.shaderSource(g_FragHandle as WebGLShader, fragment_shader.join("\n")); + gl && gl.compileShader(g_VertHandle as WebGLShader); + gl && gl.compileShader(g_FragHandle as WebGLShader); + gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_VertHandle as WebGLShader); + gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_FragHandle as WebGLShader); + gl && gl.linkProgram(g_ShaderHandle as WebGLProgram); + + g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, "Texture"); + g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, "ProjMtx"); + g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "Position") || 0; + g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "UV") || 0; + g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "Color") || 0; + + g_VaoHandle = gl && gl.createVertexArray(); + g_VboHandle = gl && gl.createBuffer(); + g_ElementsHandle = gl && gl.createBuffer(); + +} + +function DestroyDeviceObjects(): void { + DestroyFontsTexture(); + + gl && gl.deleteVertexArray(g_VaoHandle); g_VaoHandle = null; + gl && gl.deleteBuffer(g_VboHandle); g_VboHandle = null; + gl && gl.deleteBuffer(g_ElementsHandle); g_ElementsHandle = null; + + g_AttribLocationTex = null; + g_AttribLocationProjMtx = null; + g_AttribLocationPosition = -1; + g_AttribLocationUV = -1; + g_AttribLocationColor = -1; + + gl && gl.deleteProgram(g_ShaderHandle); g_ShaderHandle = null; + gl && gl.deleteShader(g_VertHandle); g_VertHandle = null; + gl && gl.deleteShader(g_FragHandle); g_FragHandle = null; +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..583e8ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +tsconfig.tsbuildinfo +*.swp +node_modules +nohup.out +.rpt2_cache diff --git a/imgui_impl.js b/imgui_impl.js new file mode 100644 index 0000000..0f4a8ec --- /dev/null +++ b/imgui_impl.js @@ -0,0 +1,41080 @@ +'use strict'; + +Object.defineProperty(exports, '__esModule', { value: true }); + +var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +function commonjsRequire () { + throw new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs'); +} + +function unwrapExports (x) { + return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x; +} + +function createCommonjsModule(fn, module) { + return module = { exports: {} }, fn(module, module.exports), module.exports; +} + +var require$$0 = {}; + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +// resolves . and .. elements in a path array with directory names there +// must be no slashes, empty elements, or device names (c:\) in the array +// (so also no leading and trailing slashes - it does not distinguish +// relative and absolute paths) +function normalizeArray(parts, allowAboveRoot) { + // if the path tries to go above the root, `up` ends up > 0 + 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 the path is allowed to go above the root, restore leading ..s + if (allowAboveRoot) { + for (; up--; up) { + parts.unshift('..'); + } + } + + return parts; +} + +// Split a filename into [root, dir, basename, ext], unix version +// 'root' is just a slash, or nothing. +var splitPathRe = + /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; +var splitPath = function(filename) { + return splitPathRe.exec(filename).slice(1); +}; + +// path.resolve([from ...], to) +// posix version +function resolve() { + var resolvedPath = '', + resolvedAbsolute = false; + + for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { + var path = (i >= 0) ? arguments[i] : '/'; + + // Skip empty and invalid entries + if (typeof path !== 'string') { + throw new TypeError('Arguments to path.resolve must be strings'); + } else if (!path) { + continue; + } + + resolvedPath = path + '/' + resolvedPath; + resolvedAbsolute = path.charAt(0) === '/'; + } + + // At this point the path should be resolved to a full absolute path, but + // handle relative paths to be safe (might happen when process.cwd() fails) + + // Normalize the path + resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) { + return !!p; + }), !resolvedAbsolute).join('/'); + + return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; +} +// path.normalize(path) +// posix version +function normalize(path) { + var isPathAbsolute = isAbsolute(path), + trailingSlash = substr(path, -1) === '/'; + + // Normalize the path + path = normalizeArray(filter(path.split('/'), function(p) { + return !!p; + }), !isPathAbsolute).join('/'); + + if (!path && !isPathAbsolute) { + path = '.'; + } + if (path && trailingSlash) { + path += '/'; + } + + return (isPathAbsolute ? '/' : '') + path; +} +// posix version +function isAbsolute(path) { + return path.charAt(0) === '/'; +} + +// posix version +function join() { + var paths = Array.prototype.slice.call(arguments, 0); + return normalize(filter(paths, function(p, index) { + if (typeof p !== 'string') { + throw new TypeError('Arguments to path.join must be strings'); + } + return p; + }).join('/')); +} + + +// path.relative(from, to) +// posix version +function relative(from, to) { + from = resolve(from).substr(1); + to = 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('/'); +} + +var sep = '/'; +var delimiter = ':'; + +function dirname(path) { + var result = splitPath(path), + root = result[0], + dir = result[1]; + + if (!root && !dir) { + // No dirname whatsoever + return '.'; + } + + if (dir) { + // It has a dirname, strip trailing slash + dir = dir.substr(0, dir.length - 1); + } + + return root + dir; +} + +function basename(path, ext) { + var f = splitPath(path)[2]; + // TODO: make this comparison case-insensitive on windows? + if (ext && f.substr(-1 * ext.length) === ext) { + f = f.substr(0, f.length - ext.length); + } + return f; +} + + +function extname(path) { + return splitPath(path)[3]; +} +var require$$1 = { + extname: extname, + basename: basename, + dirname: dirname, + sep: sep, + delimiter: delimiter, + relative: relative, + join: join, + isAbsolute: isAbsolute, + normalize: normalize, + resolve: resolve +}; +function filter (xs, f) { + if (xs.filter) return xs.filter(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + if (f(xs[i], i, xs)) res.push(xs[i]); + } + return res; +} + +// String.prototype.substr - negative index don't work in IE8 +var substr = 'ab'.substr(-1) === 'b' ? + function (str, start, len) { return str.substr(start, len) } : + function (str, start, len) { + if (start < 0) start = str.length + start; + return str.substr(start, len); + } +; + +var bindImgui = createCommonjsModule(function (module, exports) { +var Module = (function() { + var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; + return ( +function(Module) { + Module = Module || {}; + +var Module=typeof Module!=="undefined"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key];}}Module["arguments"]=[];Module["thisProgram"]="./this.program";Module["quit"]=function(status,toThrow){throw toThrow};Module["preRun"]=[];Module["postRun"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window==="object";ENVIRONMENT_IS_WORKER=typeof importScripts==="function";ENVIRONMENT_HAS_NODE=typeof process==="object"&&typeof commonjsRequire==="function";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}else{return scriptDirectory+path}}if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+"/";var nodeFS;var nodePath;Module["read"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require$$0;if(!nodePath)nodePath=require$$1;filename=nodePath["normalize"](filename);ret=nodeFS["readFileSync"](filename);}return binary?ret:ret.toString()};Module["readBinary"]=function readBinary(filename){var ret=Module["read"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret);}assert(ret.buffer);return ret};if(process["argv"].length>1){Module["thisProgram"]=process["argv"][1].replace(/\\/g,"/");}Module["arguments"]=process["argv"].slice(2);process["on"]("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process["on"]("unhandledRejection",abort);Module["quit"]=function(status){process["exit"](status);};Module["inspect"]=function(){return "[Emscripten Module object]"};}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){Module["read"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)};}Module["readBinary"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer==="function"){return new Uint8Array(readbuffer(f))}data=read(f,"binary");assert(typeof data==="object");return data};if(typeof scriptArgs!="undefined"){Module["arguments"]=scriptArgs;}else if(typeof arguments!="undefined"){Module["arguments"]=arguments;}if(typeof quit==="function"){Module["quit"]=function(status){quit(status);};}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href;}else if(document.currentScript){scriptDirectory=document.currentScript.src;}if(_scriptDir){scriptDirectory=_scriptDir;}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf("/")+1);}else{scriptDirectory="";}Module["read"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module["readBinary"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}};}Module["readAsync"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror();};xhr.onerror=onerror;xhr.send(null);};Module["setWindowTitle"]=function(title){document.title=title;};}var out=Module["print"]||(typeof console!=="undefined"?console.log.bind(console):typeof print!=="undefined"?print:null);var err=Module["printErr"]||(typeof printErr!=="undefined"?printErr:typeof console!=="undefined"&&console.warn.bind(console)||out);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key];}}moduleOverrides=undefined;var asm2wasmImports={"f64-rem":function(x,y){return x%y},"debugger":function(){debugger}};var functionPointers=new Array(0);var setTempRet0=function(value){};if(typeof WebAssembly!=="object"){err("no native wasm support detected");}var wasmMemory;var wasmTable;var ABORT=false;function assert(condition,text){if(!condition){abort("Assertion failed: "+text);}}var UTF8Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf8"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str="";while(idx>10,56320|ch&1023);}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023;}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u;}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63;}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4;}return len}var UTF16Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf-16le"):undefined;var WASM_PAGE_SIZE=65536;var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferViews(){Module["HEAP8"]=HEAP8=new Int8Array(buffer);Module["HEAP16"]=HEAP16=new Int16Array(buffer);Module["HEAP32"]=HEAP32=new Int32Array(buffer);Module["HEAPU8"]=HEAPU8=new Uint8Array(buffer);Module["HEAPU16"]=HEAPU16=new Uint16Array(buffer);Module["HEAPU32"]=HEAPU32=new Uint32Array(buffer);Module["HEAPF32"]=HEAPF32=new Float32Array(buffer);Module["HEAPF64"]=HEAPF64=new Float64Array(buffer);}var DYNAMIC_BASE=5315584,DYNAMICTOP_PTR=72672;var TOTAL_STACK=5242880;var INITIAL_TOTAL_MEMORY=Module["TOTAL_MEMORY"]||16777216;if(INITIAL_TOTAL_MEMORY>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback();continue}var func=callback.func;if(typeof func==="number"){if(callback.arg===undefined){Module["dynCall_v"](func);}else{Module["dynCall_vi"](func,callback.arg);}}else{func(callback.arg===undefined?null:callback.arg);}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;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 ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__);}function preMain(){callRuntimeCallbacks(__ATMAIN__);}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 addOnPostRun(cb){__ATPOSTRUN__.unshift(cb);}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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();}}}Module["preloadedImages"]={};Module["preloadedAudios"]={};var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile="data:application/octet-stream;base64,AGFzbQEAAAAB2AyxAWACf38Bf2ACf38AYAJ8fAF8YAF/AX9gAX8AYAN/f38Bf2AEf39/fwBgA39/fwBgAn9/AX1gBH9/f38Bf2AEf399fwBgAn99AX9gA399fQF/YAZ9fX1/f38AYAR/fX9/AGAFf39/fX8AYAABfGADf31/AGAFf39/f38Bf2AIf39/f39/f38Bf2AHf39/f39/fwF/YAZ/f39/f38Bf2AGf398fH9/AX9gCX9/f39/f39/fwF/YAN9f38AYAl/f39/f39/f38AYAZ/f39/f38AYAJ/fQBgAX8BfWAAAX9gAn19AGABfQBgAAF9YAAAYAN/f30Bf2AGf39/fX9/AGAIf399fX1/f38AYAR/fX99AX9gBn9/fX9/fwBgBX9/f399AGAHf39/f31/fQBgBn9/f399fwBgB39/f39/f38AYAd/f39/f399AGAGf39/f399AGAFf39/f38AYAZ/f31/f30AYAV/f31/fwBgCH9/fX9/f31/AGALf39/f39/f39/f38AYAl/f39/f39/fX8AYAh/f39/f399fwBgBH9/f30AYAZ/f319fX8AYAp/f39/f39/f39/AGADf399AGAGf3x/f39/AX9gA39+fwF+YAF/AXxgA39/fwF9YAR/f319AX9gCH9/fX19f39/AX9gBH9/fX8Bf2AFf399f30Bf2AHf39/fHx/fwF/YAR/f399AX9gBX9/f31/AX9gBn9/f31/fwF/YAp/f39/f39/f39/AX9gA399fQBgB399fX1/f38AYAd/f399fX1/AGAHf39/fX9/fQBgB39/f31/f38AYAl/f399f39/fX8AYAd/f39/f31/AGAIf39/f399f30AYAh/f39/f39/fQBgCH9/f39/f39/AGAKf39/f39/f399fwBgDH9/f39/f39/f39/fwBgDX9/f39/f39/f39/f38AYAN/f3wAYAN/f38BfGABfQF9YAJ9fQF9YAV/fX19fQBgBH9/fX0AYAJ/fQF9YAR9fX19AX9gBX9/f319AGADfX19AX1gAn19AX9gBH19fX0BfWALf319fX19fX19fX8AYAl/f31/f39/fX8AYAp/f31/f39/f31/AGAFf31/f30Bf2AIf399fX9/f38AYAt/f319fX19fX19fQBgCH9/f39/fX1/AGAHf39/fX1/fwBgBX9/fX9/AX9gCH9/f399fX9/AGAHf39/fX19fQBgCn9/fX19fX19fX8AYAx/f319fX19fX19fX8AYAd/fX19fX19AGAEf31/fwF/YAh/f399f39/fQF/YAV/fX9/fwF/YAV/fX5+fwF/YAZ/fX19f30Bf2AGf318fH99AX9gAn98AXxgAn9+AX5gCX9/f399f39/fQF/YAd/f319fX99AX9gCX9/f319fX9/fQF/YAZ/f31/f38Bf2AIf39/fX9/f38Bf2AKf39/f39/f31/fwF/YAl/f39/f399f38Bf2AJf39/fn5/fX9/AX9gCX9/f319f31/fwF/YAl/f398fH99f38Bf2AFfHx8fX0BfWADfHx9AXxgA3x8fAF8YAV9fX19fQF9YAN+fn4BfWADfn5+AX5gBX5+fn19AX1gBX9/f319AX1gB39/f39/f30Bf2AIf39/f39/f30Bf2AGf399fX99AX9gB39/f319f30Bf2AGf399fX9/AX9gB39/f31/fX8AYAl/f39/f399fX8AYAd/f39/fX1/AGAEf319fQF9YAZ/f39/f30Bf2AHf399f39/fQF/YAJ/fgBgAn9/AX5gA35/fwF/YAJ+fwF/YAJ8fwF8YAV/f39/fwF8YAZ/f39/f38BfGACfX8BfWABfAF9YAJ9fwF/YAN/f34AYAF/AX5gAn9/AXxgBH9/f38BfWAHf398f39/fwF/YAV/f399fQF/YAl/f399fX1/f38Bf2AGf39/fX99AX9gCH9/f398fH9/AX9gBX9/f399AX9gBn9/f399fwF/YAd/f39/fX9/AX9gC39/f39/f39/f39/AX9gCX9/f319fX9/fwBgCH9/f399fX1/AGAHf39/f31/fwBgCH9/f399f399AGAIf39/f31/f38AYAp/f39/fX9/f31/AGAJf39/f39/fX99AGAJf39/f39/f399AGALf39/f39/f39/fX8AAvQDNwNlbnYBYgA2A2VudgFjAE4DZW52AWQAGgNlbnYBZQAEA2VudgFmAAADZW52AWcAUQNlbnYBaABTA2VudgFpAAcDZW52AWoAAANlbnYBawAtA2VudgFsACEDZW52AW0ABwNlbnYBbgAAA2VudgFvAAYDZW52AXAAAANlbnYBcQAaA2VudgFyAAQDZW52AXMABANlbnYBdAAEA2VudgF1AAAI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/AYLC0H89gEoAgAhASAAQZypBCgCACABQf8BcUHyBmoRAQALWgEDfyMEIQIjBEEQaiQEIAJBmKkEKAIAIgNBsCtqIABBBHRqIgApAgA3AgAgAiAAKQIINwIIIAIgAioCDCADQZAqaioCACABlJQ4AgwgAhChAyEEIAIkBCAECxYAIAAgASkCADcCACAAIAIpAgA3AggLBgBBNBADCwwAIAAgASAAIAFdGwvGAwEDfyACQYDAAE4EQCAAIAEgAhAjGiAADwsgACEEIAAgAmohAyAAQQNxIAFBA3FGBEADQCAAQQNxBEAgAkUEQCAEDwsgACABLAAAOgAAIABBAWohACABQQFqIQEgAkEBayECDAELCyADQXxxIgJBQGohBQNAIAAgBUwEQCAAIAEoAgA2AgAgACABKAIENgIEIAAgASgCCDYCCCAAIAEoAgw2AgwgACABKAIQNgIQIAAgASgCFDYCFCAAIAEoAhg2AhggACABKAIcNgIcIAAgASgCIDYCICAAIAEoAiQ2AiQgACABKAIoNgIoIAAgASgCLDYCLCAAIAEoAjA2AjAgACABKAI0NgI0IAAgASgCODYCOCAAIAEoAjw2AjwgAEFAayEAIAFBQGshAQwBCwsDQCAAIAJIBEAgACABKAIANgIAIABBBGohACABQQRqIQEMAQsLBSADQQRrIQIDQCAAIAJIBEAgACABLAAAOgAAIAAgASwAAToAASAAIAEsAAI6AAIgACABLAADOgADIABBBGohACABQQRqIQEMAQsLCwNAIAAgA0gEQCAAIAEsAAA6AAAgAEEBaiEAIAFBAWohAQwBCwsgBAsSACAAQbT4ATYCACAAQQRqED4LKgAgACgCEBBbBEBBACEABSAAQQRqIgAsAAtBAEgEQCAAKAIAIQALCyAACxIAIAAgARDpECAAQcD4ATYCAAsQACAALQABIAAtAABBCHRyCyoBAX8jBCEBIwRBEGokBCABIAA2AgBBBBA/IgAgASgCADYCACABJAQgAAslAQF/IAEoAgAhAiAAQgA3AgAgAEEANgIIIAAgAUEEaiACEJMBCwgAQQwQA0EACwcAIABBBGoLJwEBfyAAKAIIIgEEQCAAQQA2AgQgAEEANgIAIAEQQSAAQQA2AggLCw0AIAAoAgggAUECdGoLFgAgACABKgIAIAKUIAEqAgQgApQQMgsp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QCADIAMoApACQQFyNgKQAgtBAQsLBgAgAKiyCw0AIABB1ABqIAEQmgILFAAgASACIAAgACACXhsgACABXRsLEQBBACAAQQRqIAAoAggQWxsLIQAgAEP//39/Q///f38QMiAAQQhqQ///f/9D//9//xAyCxAAIAAoAggiAARAIAAQQQsLFwAgAEEANgIEIABBADYCACAAQQA2AggLIQEBfyMEIQIjBEEQaiQEIAIgATYCACAAIAIQ2gIgAiQEC5gCAQR/IAAgAmohBCABQf8BcSEDIAJBwwBOBEADQCAAQQNxBEAgACADOgAAIABBAWohAAwBCwsgA0EIdCADciADQRB0ciADQRh0ciEBIARBfHEiBUFAaiEGA0AgACAGTARAIAAgATYCACAAIAE2AgQgACABNgIIIAAgATYCDCAAIAE2AhAgACABNgIUIAAgATYCGCAAIAE2AhwgACABNgIgIAAgATYCJCAAIAE2AiggACABNgIsIAAgATYCMCAAIAE2AjQgACABNgI4IAAgATYCPCAAQUBrIQAMAQsLA0AgACAFSARAIAAgATYCACAAQQRqIQAMAQsLCwNAIAAgBEgEQCAAIAM6AAAgAEEBaiEADAELCyAEIAJrC58BAQN/EDwiAiwAf0UEQEGYqQQoAgAhBCABQwAAAABdIQMgAEMAAAAAXARAIAIqArQDQwAAAAAgASADGyACKgIMIAIqAliTIACSkpIhACACKgK4AyEBBSADBEAgBEHUKmoqAgAhAQsgAioC0AEhAAsgAiABIACSOALIASACIAIoAtQBNgLMASACIAIpAvQBNwLoASACIAIoAvwBNgLwAQsLqwECA38BfSMEIQUjBEEQaiQEQZipBCgCACEGIAMEQCABIAIQkAEhAgsgBSEDIAZBsDFqKAIAIQcgBkG0MWoqAgAhCCABIAJGBEAgAEMAAAAAIAgQMgUgAyAHIAhD//9/fyAEIAEgAkEAEJoDIAMqAgAiBEMAAAAAXgRAIAMgBCAIIAcqAgCVkyIEOAIACyADIARDMzNzP5KosjgCACAAIAMpAwA3AgALIAUkBAsnAEGYqQQoAgBBNGogAEECdGooAgAiAEF/SgR/IAAgARD2AgVBAAsLNQECfyMEIQMjBEEQaiQEAn8gACgCACEEIAMgARB3IAQLIAMoAgAgAigCABALIAMQMSADJAQL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KAIIRgRAIAEQ4QELIAEgACABKAIAEPIFIgI2AgAgASACNgIIIAAgARCCAQwFCyABEOEBIAFBADYCCCABQQA2AgAgAUEAOgAPDAQLIAEQ4QEgASAAKAIsIgI2AgggASACNgIAIAFBADoADwwDCyAAKAIsIQQgACABEIIBIAEQ4QEgASwAEARAIAEgBDYCACAEIQIFIAEoAgAiAiAESARAA0ACQAJ/IAAgAhDiAUH//wNxQQpGIQwgASgCACECIAwLDQAgASACQQFqIgI2AgAgAiAESA0BCwsLCyABIAI2AgggAUEAOgAPDAILQQMhAwwBCyAFQYCADEgEQCAFQY2ABGsEQEEDIQMMAgsgASgCBCABKAIIRgRAIAEgACABKAIAEPIFNgIAIAAgARCCAQUgACABELgECwwBCwJAAkACQCAFQYCADGsOAgIAAQsgARDhASABIAEoAghBAWo2AgggACABEIIBIAEgASgCCDYCACABQQA6AA8MAgtBAyEDDAELIAAgARCCASABEOEBIAEoAggiAkEASgRAIAEgAkF/aiICNgIICyABIAI2AgAgAUEAOgAPCyADQQNGBEBBACAFIAVB//8DShsiAkEASgRAAkAgBiACOwEAIAJBCkYEQCABLAAQDQELAkACQCABLAAMRQ0AIAEoAgQgASgCCEcNACABKAIAIgIgACgCLE4NACAAIQUgAUEYaiACQQFBARC5BCIEBEAgBCAFIAIQ4gE7AQALIAAgASgCAEEBENkDIAAgASgCACAGQQEQkgMEQCABIAEoAgBBAWo2AgAgAUEAOgAPCwwBCyAAIAEQkwMgACABKAIAIAZBARCSAwRAIAEgASgCAEEBEPcFIAEgASgCAEEBajYCACABQQA6AA8LCwsLBSADQckARgRAIAEoAgQgASgCCEYEQCABKAIAIgIgACgCLEgEQCAAIAEgAkEBENoDCwUgACABEJMDCyABQQA6AA8FIANBzgBGBEAgASgCBCABKAIIRgRAIAAgARCCASABKAIAIgJBAEoEQCAAIAEgAkF/akEBENoDIAEgASgCAEF/ajYCAAsFIAAgARCTAwsgAUEAOgAPCwsLIAkkBAtIAQF/IAFBGGogAiADQQAQuQQiBEEARyADQQBKcQRAQQAhAQNAIAFBAXQgBGogACABIAJqEOIBOwEAIAFBAWoiASADRw0A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CyQAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAAQQNxQZwLahExAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBA3FBmAtqETYACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBlAtqERkACyIAIAEgAiADIAQgBSAGIAcgCCAJIAogAEEBcUGSC2oRTwALHgAgASACIAMgBCAFIAYgByAIIABBA3FBjgtqEU4ACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBigtqETIACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQYgLahFNAAscACABIAIgAyAEIAUgBiAHIABBB3FBgAtqESoACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQf4KahEzAAscACABIAIgAyAEIAUgBiAHIABBA3FB+gpqESsACxoAIAEgAiADIAQgBSAGIABBD3FB6gpqERoACw0AIABB+ClqQQAQwAELHgAgASACIAMgBCAFIAYgByAIIABBAXFB6ApqEUwACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHmCmoRSwALGgAgASACIAMgBCAFIAYgAEEDcUHiCmoRLAALGAAgASACIAMgBCAFIABBD3FB0gpqES0ACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHQCmoRKAALGgAgASACIAMgBCAFIAYgAEEDcUHMCmoRKQALGAAgASACIAMgBCAFIABBA3FByApqEScACxYAIAEgAiADIAQgAEEfcUGoCmoRBgALIAAgASACIAMgBCAFIAYgByAIIAkgAEEBcUGmCmoRSgALHAAgASACIAMgBCAFIAYgByAAQQFxQaQKahFJAAscACABIAIgAyAEIAUgBiAHIABBAXFBogpqEUgACxoAIAEgAiADIAQgBSAGIABBA3FBngpqESMACxgAIAEgAiADIAQgBSAAQQNxQZoKahEPAAscACABIAIgAyAEIAUgBiAHIABBAXFBmApqEUcACxYAIAEgAiADIAQgAEEDcUGUCmoRNAALFQAgASACIAMgAEH/AHFBlAlqEQcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQZIJahEwAAsaACABIAIgAyAEIAUgBiAAQQFxQZAJahEmAAsaACABIAIgAyAEIAUgBiAAQQFxQY4JahEuAAsYACABIAIgAyAEIAUgAEEDcUGKCWoRLwALFgAgASACIAMgBCAAQQNxQYYJahEKAAseACABIAIgAyAEIAUgBiAHIAggAEEBcUGECWoRJAALGgAgASACIAMgBCAFIAYgAEEBcUGCCWoRNQALFAAgASACIAMgAEEPcUHyCGoRNwALFgAgASACIAMgBCAAQQNxQe4GahEOAAsUACABIAIgAyAAQQFxQewGahERAAscACABIAIgAyAEIAUgBiAHIABBAXFB6gZqEUYACxQAIAEgAiADIABBAXFB6AZqEUUACxQAIAEgAiADIABBAXFB3gRqERgACxoAIAEgAiADIAQgBSAGIABBA3FB2gRqEQ0ACxUAQZipBCgCAEE0aiAAQQJ0aigCAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBAXFBggRqEUQACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBB3FB+gNqERcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQ9xQeoDahETAAscACABIAIgAyAEIAUgBiAHIABBD3FB2gNqERQACxoAIAEgAiADIAQgBSAGIABBH3FBugNqERUACxgAIAEgAiADIAQgBSAAQQ9xQaoDahESAAsWACABIAIgAyAEIABBH3FBigNqEQkACxoAIAEgAiADIAQgBSAGIABBAXFBiANqEUMACxgAIAEgAiADIAQgBSAAQQFxQYYDahFCAAsWACABIAIgAyAEIABBAXFBhANqEUEACxwAIAEgAiADIAQgBSAGIAcgAEEBcUGCA2oRQAALGAAgASACIAMgBCAFIABBAXFBwAJqET8ACxYAIAEgAiADIAQgAEEBcUG+AmoRPgALHgAgASACIAMgBCAFIAYgByAIIABBAXFBvAJqET0ACxYAIAEgAiADIAQgAEEBcUG6AmoRPAALFAAgASACIAMgAEEDcUG2AmoRIgALGgAgASACIAMgBCAFIAYgAEEBcUG0AmoRFgALFgAgASACIAMgBCAAQQFxQbIBahElAAsUACABIAIgAyAAQQFxQbABahEMAAsaACABIAIgAyAEIAUgBiAAQQFxQawBahE4AAsUACABIAIgAyAAQQNxQcgAahE7AAsRACABIAIgAEEfcUEoahEIAAsPACABIABBA3FBJGoRHAALDQAgAEEfcUEEahEgAAsPACABIABBAXFBAmoROgALCgAgAEEBcREQAAvS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AiADIAQgBUEPcUHSCmoRLQAMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIAFBADoANCABQQA6ADUgACgCCCIAKAIAKAIUIQMgACABIAIgAkEBIAQgA0EPcUHqCmoRGgAgAQJ/AkAgASwANQR/IAEsADQNAUEBBUEACyEAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAA0CQQQMAwsLIAANAEEEDAELQQMLNgIsDAILCyADQQFGBEAgAUEBNgIgCwsLC0QBAX8gACABKAIIEIUBBEAgASACIAMgBBCFBQUgACgCCCIAKAIAKAIUIQYgACABIAIgAyAEIAUgBkEPcUHqCmoRGgALCxgAIAAgASgCCBCFAQRAIAEgAiADEIcFCwuPAQAgACABKAIIEIUBBEAgASACIAMQhgUFIAAgASgCABCFAQRAAkAgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASACNgIUIAEgASgCKEEBajYCKCABKAIkQQFGBEAgASgCGEECRgRAIAFBAToANgsLIAFBBDYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwsLGgAgACABKAIIEIUBBEAgASACIAMgBBCFBQsLyQEBA38jBCEEIwRBQGskBCAEIQMgACABEIUBBH9BAQUgAQR/IAFB4PQBEJQEIgEEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyABNgIAIAMgADYCCCADQX82AgwgA0EBNgIwIAEoAgAoAhwhACABIAMgAigCAEEBIABBH3FBqApqEQYAIAMoAhhBAUYEfyACIAMoAhA2AgBBAQVBAAsFQQALBUEACwshBSAEJAQgBQt4AQN/IwQhASMEQRBqJAQgASEAAn9BAEGMrgQoAgBB37femgFGDQAaQbMEESEAQYyuBEHft96aATYCAEEACwRAQZSKAyAAEMICBQJ/An9BAEGQrgQoAgAiACgCBEHOlZoSRw0AGiAAKAIACyECIAEkBCACCw8LQQALowICB38BfiMEIQIjBEEwaiQEIAJBGGohASACQRBqIQMgAiEEIAJBJGohBRDLCyIABEAgACgCACIABEAgACkDMCIHQoB+g0KA1qyZ9MiT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AgAhBCAAEIoCIAAoAiAQtgcgBAsQigILCyAAQdQyaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAwRAIAMQjRIgAxBBCyABQQFqIgEgAigCAEgNAAsLIAIQTyAAQeAyahBPIABB7DJqEE8gAEGUM2pBADYCACAAQfgyahBPIABBhDNqEE8gAEGgNWpBADYCACAAQZgzakEANgIAIABBnDNqQQA2AgAgAEHcM2pBADYCACAAQdgzakEANgIAIABB9DNqQQA2AgAgAEH4M2oQTyAAQYQ0ahBPIABBkDRqEE8gAEGcNGoQTyAAQag0ahBPIABBwDdqIQJBACEBA0AgAUEMbCACahBPIAFBAWoiAUECRw0ACyAAQdw3ahDdBCAAQYTYAGoQTyAAQZA6ahBPIABBnDpqEE8gAEGoOmoQTyAAQcDYAGoiAigCAEEASgRAQQAhAQNAIAIgARBVKAIAEPYHIAFBAWoiASACKAIASA0ACwsgAhBPIABBtNgAahBPIABB0NgAaiICKAIAIgFBzIECKAIARiABRXJFBEAgARDDAhogAkEANgIACyAAQdTYAGoQTyAAQQA6AAALCwsAIAAQngUgABBUC00BAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACQYz8ATYCACACIAE2AgggAhCvBSAAIAJBBGoQ5AMhAyACEJ4FIAIkBCADCwsAIAAQnwUgABBUC08BAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADQfT7ATYCACADIAE2AgggAxDGByAAIANBBGogAhCABiEEIAMQnwUgAyQEIAQLMwAgAEGYqQQoAgAgABsiABCxD0GYqQQoAgAgAEYEQEEAEIoCCyAABEAgABDkCSAAEEELC1QBAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQygEgACACIAMQTiIAKAIARhC5AiIBBEAgACACNgIACyABIQQgAxC0ASADJAQgBAtWAgJ/An0jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQcSABQQhqIgIgAEE8aiAAQUBrIAEQywcgAhA9IQQgAhAxIAEQMSABJAQgBAsHACABELgPC4kBAgJ/An0jBCEJIwRBMGokBEGwqQQoAgAiCkE8aiABEIgBIApBQGsg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QYAHaiIKEDogAEGwB2ohAyAAQYgHaiEBA0AgARA6IAFBCGoiASADRw0ACyAAQbwIaiEDIABBlAhqIQEDQCABEDogAUEIaiIBIANHDQALIABB+ClqEGggAEEAQYgqEGoaIAJDAACAv0MAAIC/EDIgBSACKQMANwIAIABDiYiIPDgCECAAQwAAoEA4AhQgAEHmhQI2AhggAEHwhQI2AhwgAEOamZk+OAIgIABDAADAQDgCJCAAQSxqIgFCfzcCACABQn83AgggAUJ/NwIQIAFCfzcCGCABQn83AiAgAUJ/NwIoIAFCfzcCMCABQn83AjggAUFAa0J/NwIAIAFCfzcCSCABQX82AlAgAEMAAIA+OAKAASAAQ83MTD04AoQBIABBADYCiAEgAEEANgKMASAAQwAAgD84ApABIABBADYCmAEgAEEAOgCUASACQwAAgD9DAACAPxAyIAYgAikDADcCACACQwAAAABDAAAAABAyIAggAikDACILNwIAIAcgCzcCACAAQQA6ALUBIABBAToAtgEgAEEBOgC3ASAAQQA6ALgBIABCADcCvAEgAEIANwLEASAAQQA2AswBIABBAzYC0AEgAEECNgLUASAAQQA2AtgBIABBAzYC3AEgAEEANgLgASACQ///f/9D//9//xAyIAkgAikDADcCACACQ///f/9D//9//xAyIAogAikDADcCACAAQwAAwEA4AihBACEBA0AgAEGACGogAUECdGpDAACAvzgCACAAQewHaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEFRw0AC0EAIQEDQCAAQdAYaiABQQJ0akMAAIC/OAIAIABB0AhqIAFBAnRqQwAAgL84AgAgAUEBaiIBQYAERw0AC0EAIQEDQCAAQdAoaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEVRw0ACyAEJAQLNAECfyMEIQQjBEEQaiQEIARBCGoiBSABIAIQwgogBCADEG8gACAFIAQQgQEgBBAxIAQkBAtCAQJ/IwQhBCMEQRBqJAQgBCADEDQgBEEEaiIDIAEgAiAEIABBA3FBhglqEQoAIAMQfSEFIAMQMSAEEDEgBCQEIAULKwEBfxDVByIBQZquBCABGyEBIABCADcCACAAQQA2AgggACABIAEQXBCTAQsxAQF/IwQhASMEQRBqJAQgASAAEJ8BIAEoAgAgASABLAAL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C0EASAR/IAAoAgAFIAALIAEQqwgLGAAgACwAC0EASAR/IAAoAgAFIAALEJMKCwkAIAAgARDiEAsqAQJ/An8jBCEBIwRBEGokBEHEvgJBBEHAywFBicsCQRJBFxACIAELJAQLCwAgACABIAIQ4BALCQAgACABEN8QCwsAIAAgASACEN4QCxgAIAAsAAtBAEgEfyAAKAIABSAACxCpAwsJACAAIAEQ3BALGAAgACwAC0EASAR/IAAoAgAFIAALEKsDCyoBAn8CfyMEIQEjBEEQaiQEQem9AkEFQdDLAUG7zAJBDUELEAIgAQskBAsNACAAIAEgAiADENsQCyoBAn8CfyMEIQEjBEEQaiQEQd69AkEFQfDLAUG7zAJBDEEKEAIgAQskBAsNACAAIAEgAiADENoQCxoAIAAsAAtBAEgEfyAAKAIABSAACyABEK8ICwcAIAAQ2RALKgECfwJ/IwQhASMEQRBqJARB6bwCQQRBkMwBQd3NAkECQQEQAiABCyQECwsAIAAgASACENcQCyoBAn8CfyMEIQEjBEEQaiQEQeG8AkEDQez4AUHjzQJBEUEdEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHZvAJBA0H4+AFB480CQRBBHBACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB0bwCQQNBhPkBQePNAkEPQRsQAiABCyQECxoAIAAsAAtBAEgEfyAAKAIABSAACyABELUICyoBAn8CfyMEIQEjBEEQaiQEQbO8AkEEQaDMAUGJywJBEUEVEAIgAQskBAscACAALAALQQBIBH8gACgCAAUgAAsgASACEM8FCwkAIAAgARDVEAsRACAAIAEgAiADIAQgBRDUEAsqAQJ/An8jBCEBIwRBEGokBEGPvAJBBkGwzAFB6M0CQRFBBhACIAELJAQLDwAgACABIAIgAyAEEM0QCw0AIAAgASACIAMQyhALKgECfwJ/IwQhASMEQRBqJARB9bsCQQVB0MwBQbvMAkELQQgQAiABCyQECw0AIAAgASACIAMQyBALCwAgACABIAIQxxALNQEBfyAALAALQQBIBEAgACgCACEACxA8IgIsAH8Ef0EABSACIAAQXiABQRpyIABBABDTAgsLBwAgABC9CAsYACAALAALQQBIBH8gACgCAAUgAAsQvggLKgECfwJ/IwQhASMEQRBqJARB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AAtBAEgEfyAAKAIABSAACyABELkCCyoBAn8CfyMEIQEjBEEQaiQEQc61AkEEQfDSAUGJywJBDkEJEAIgAQskBAsLACAAIAEgAhC1DwsJACAAIAEQsw8LKgECfwJ/IwQhASMEQRBqJARBubUCQQhBgNMBQYfRAkEEQQEQAiABCyQECxMAIAAgASACIAMgBCAFIAYQrw8LKgECfwJ/IwQhASMEQRBqJARBs7UCQQdBoNMBQZ/TAkEBQQQQAiABCyQECxEAIAAgASACIAMgBCAFEK0PCwkAIAAgARCsDwsaACAALAALQQBIBH8gACgCAAUgAAsgARCDCQsYACAALAALQQBIBH8gACgCAAUgAAsQxAQLCQAgACABEKkPC6cEAgF/AX4jBCEBIwRBEGokBCAAEDogAEEIahA6IABBEGoQOiAAQRhqEDogAEEgahA6IABBLGoQOiAAQcwAahBmIABB3ABqEGYgAEGAAWoQOiAAQYgBahBoIABBADYCsAEgAEEANgKsASAAQQA2ArQBIABBuAFqEGggAEHEAWoQaCAAQQA2AtQBIABBADYC0AEgAEEANgLYASAAQegBahDnAiAAQewBahDnAiAAQfABahDnAiABQwAAAABDAAAAABAyIAAgASkDACICNwIYIAAgAjcCECAAIAI3AgggACACNwIAIAFDAAAAAEMAAAAAEDIgACABKQMAIgI3AiwgACACNwIgIABDAAAAADgCNCAAQwAAAAA4AiggAEMAAIC/OAI4IABCADcCPCAAQgA3AkQgARBmIAAgASkCADcCXCAAIAEpAgg3AmQgACABKQIANwJMIAAgASkCCDcCVCAAQQA2AnggAEEANgJ0IABBADYCbCAAQQE2AnAgAEEAOgB8IABBADoAfSAAQQA6AH4gAUMAAAAAQwAAAAAQMiAAIAEpAwA3AoABIABBADYClAEgAEEBNgKcASAAQQE2ApgBIABDAAAAADgCpAEgAEEANgKgASAAQwAAgL84AqgBIABCADcC3AEgAEEANgLkASABEOcCIAAgASgCADYC6AEgARDnAiAAIAEoAgA2AuwBIAEQ5wIgACABKAIANgLwASAAQQA2AvQBIAEkBAsaACAALAALQQBIBH8gACgCAAUgAAtBABC5AQsHACAAEKAPC9AHAgV/AX4jBCEFIwRBEGokBCAFIQMgAEEMahA6IABBFGoQOiAAQRxqEDogAEEkahA6IABBLGoQOiAAQTRqEDogAEE8ahA6IABB2ABqEDogAEHgAGoQOiAAQegAahA6IABB8ABqEDogAEG4AWoQOiAAQcABahA6IABByAFqEMoSIABBwANqIgYiBEEANgIEIARBADYCACAEQQA2AgggAEHMA2oQZiAAQdwDahBmIABB7ANqEGYgAEH8A2oQZiAAQYwEahBmIABBpARqEN4DIABB1ARqEGggAEEANgLkBCAAQQA2AuAEIABBADYC6AQgAEH4BGoiByABQbwxahD4ByAAQagGaiEEIABBiAZqIQEDQCABEGYgAUEQaiIBIARHDQALIAAgAhDaBjYCACAAQQRqIgEgAkEAQQAQuwE2AgAgBiABEHggAEEANgIIIANDAAAAAEMAAAAAEDIgACADKQMANwIMIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AhwgACAINwIUIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AjQgACAINwIsIANDAAAAAEMAAAAAEDIgACADKQMANwI8IABDAAAAADgCRCAAQwAAAAA4AkggACACEFxBAWo2AkwgACAAQf6FAhBeNgJQIABBADYCVCADQwAAAABDAAAAABAyIAAgAykDADcCWCADQ///f39D//9/fxAyIAAgAykDADcCYCADQwAAAD9DAAAAPxAyIAAgAykDADcCaCADQwAAAABDAAAAABAyIAAgAykDADcCcCAAQQA7AYQBIABCADcCeCAAQQA7AYABIABBADoAggEgAEF/OwGGASAAQX87AYgBIABBADYCjAEgAEF/NgKUASAAQX82ApABIABBADoAmAEgAEEANgKcASAAQX82AqABIABBADYCqAEgAEEANgKkASAAQQ82ArQBIABBDzYCsAEgAEEPNgKsASADQ///f39D//9/fxAyIAAgAykDACIINwLAASAAIAg3ArgBIABBfzYCnAQgAEMAAAAAOAKgBCAAQwAAgD84AuwEIABBfzYC8AQgACAHNgL0BCAAIAAoAgA2AqQFIABBADYChAYgAEEANgKABiAAQgA3AuwFIABCADcC9AUgAxBmIAAgAykCADcCmAYgACADKQIINwKgBiAAIAMpAgA3AogGIAAgAykCCDcCkAYgAEEANgL8BSAAQX82AqwGIABBfzYCqAYgAEH/////BzYCtAYgAEH/////BzYCsAYgAEH/////BzYCvAYgAEH/////BzYCuAYgBSQECwcAIAAQnw8LKgECfwJ/IwQhASMEQRBqJARB5rICQQRBwNMBQfHJAkEJQQYQAiABCyQECwsAIAAgASACEJsPCx4BAX8jBCEBIwRBEGokBCABIAAQNyABEIcEIAEkBAsJACAAIAEQmg8LCQAgACABEJkPCx4BAX8jBCEBIwRBEGokBCABIAAQNyABEJ4KIAEkBAsJACAAIAEQmA8LHgEBfyMEIQEjBEEQaiQEIAEgABA3IAEQ/gUgASQECyoBAn8CfyMEIQEjBEEQaiQEQfuuAkECQfD8AUHayQJBH0EGEAIgAQskBAsHACAAEM4ECwcAIAAQlQ8LKgECfwJ/IwQhASMEQRBqJARB364CQQNBgP0BQZrLAkEbQQcQAiABCyQECwoAIAAgARA9EEILCQAgACABEJMPCy0BAX8jBCEBIwRBEGokBCABQZipBCgCAEGwMWooAgA2AgAgACABEIMDIAEkBAsqAQJ/An8jBCEBIwRBEGokBEGirgJBAkGM/QFB2skCQR1BERACIAELJAQLCQAgACABEJIPCwkAIAAgARCRDwsJACAAIAEQjw8LBQAQ4wYLBwAgABCODwsHACAAEIwPCyMAIwQhACMEQRBqJAQgAEHh1AI2AgBB4tMCIAAQugMgACQECywAIAAsAAtBAEgEQCAAKAIAIQALIAAEQCAAEKECIgAEQCAAEHQLBUEAEHQLCyoBAn8CfyMEIQEjBEEQaiQEQaisAkEEQdDTAUHxyQJBCEEFEAIgAQskBAsmACAALAALQQBIBH8gACgCAAUgAAsQoQIiAARAIAAgASACEPsECwsLACAAIAEgAhCKDwsLACAAIAEgAhCIDwsSAEGYqQQoAgBBlDNqKAIAEHQLFwBBmKkEKAIAQZQzaigCACAAIAEQ+wQLLgEBfyMEIQIjBEEQaiQEIAIgABA3QZipBCgCAEGUM2ooAgAgAiABEP0EIAIkBAsiAQF/IwQhAiMEQRBqJAQgAiAAEDcQYCACIAEQvwMgAiQECzkBAX8jBCEBIwRBEGokBCABIAAQN0GYqQQoAgAiAEHoNGogASkCADcCACAAQbw0akEBNgIAIAEkBAsqAQJ/An8jBCEBIwRBEGokBEHTqgJBBUHw0wFB6tUCQQRBBRACIAELJAQLCwAgACABIAIQhg8LIAEBfyMEIQIjBEEQaiQEIAIgABA3IAIgARCaBCACJAQLKgECfwJ/IwQhASMEQRBqJARBsKoCQQRBkNQBQfHJAkEGQQIQAiABCyQECwsAIAAgASACEIAPCwkAIAAgARD/DgsJACAAIAEQ/g4LJQEBfyMEIQEjBEEQaiQEIAEQPCgC9AQ2AgAgACABEOQHIAEkBAsJACAAIAEQ/Q4LCQAgACABEPwOCwkAIAAgARD6DgsJACAAIAEQ+A4LKgECfwJ/IwQhASMEQRBqJARBhKgCQQVBoNQBQbvMAkEHQQEQAiABCyQECw0AIAAgASACIAMQ9g4LCwAgACABIAIQ9Q4LBwAgABDdCQsHACAAEN4JCwcAIAAQsAYLHwAgAEIANwIAIABBADYCCCAAQYakAkGGpAIQXBCTAQsIABCVCBCDDAsLgP4CUgBBgggLE4A/AACAPwAAgL8AAIC/AAAAAAMAQZ4ICw+APwAAgD8AAIC/AwAAAAYAQboIC1iAPwAAgD8GAAAACQAAAAAAgD8AAAAAAACAvwAAgD8JAAAADAAAAAMAAAABAAAAAAAAAAIAAAABAAAAAwAAAAIAAAAAAAAAoocAAKeHAACthwAAsYcAAL2HAEGgCQuFAgQAAAABAAAAAAAAAAQAAAACAAAABAAAAAQAAAABAAAADAAAAAQAAAABAAAAEAAAAAQAAAACAAAAFAAAAAQAAAACAAAAHAAAAAQAAAABAAAAJAAAAAQAAAABAAAAKAAAAAQAAAABAAAALAAAAAQAAAABAAAAMAAAAAQAAAACAAAANAAAAAQAAAABAAAAPAAAAAQAAAABAAAAQAAAAAQAAAACAAAARAAAAAQAAAACAAAATAAAAAQAAAABAAAAXAAAAAQAAAABAAAAZAAAAAQAAAABAAAAaAAAAAQAAAABAAAAbAAAAAQAAAABAAAAcAAAAAQAAAABAAAAdAAAAAQAAAACAAAAfABBsAsL5BYuLi0gICAgICAgICAtWFhYWFhYWC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWFhYWFhYWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtICAgICBYWCAgICAgICAgICAuLi0gICAgICAgICAtWC4uLi4uWC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWC4uLi4uWCAgICAgICAgICAtICAgICAgICAgIFguLi4uLlgtICAgIFguLlggICAgICAgICAtLS0gICAgICAgICAtWFhYLlhYWC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtWC4uLi5YICAgICAgICAgICAtICAgICAgICAgICBYLi4uLlgtICAgIFguLlggICAgICAgICBYICAgICAgICAgICAtICBYLlggIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtWC4uLlggICAgICAgICAgICAtICAgICAgICAgICAgWC4uLlgtICAgIFguLlggICAgICAgICBYWCAgICAgICAgICAtICBYLlggIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtWC4uWC5YICAgICAgICAgICAtICAgICAgICAgICBYLlguLlgtICAgIFguLlggICAgICAgICBYLlggICAgICAgICAtICBYLlggIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtWC5YIFguWCAgICAgICAgICAtICAgICAgICAgIFguWCBYLlgtICAgIFguLlhYWCAgICAgICBYLi5YICAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWFggICBYLlggICAgICAgICAtICAgICAgICAgWC5YICAgWFgtICAgIFguLlguLlhYWCAgICBYLi4uWCAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgWC5YICAgICAgICAtICAgICAgICBYLlggICAgICAtICAgIFguLlguLlguLlhYICBYLi4uLlggICAgICAtICBYLlggIC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgIFguWCAgICAgICAtICAgICAgIFguWCAgICAgICAtICAgIFguLlguLlguLlguWCBYLi4uLi5YICAgICAtICBYLlggIC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICBYLlggICAgICAtICAgICAgWC5YICAgICAgICAtWFhYIFguLlguLlguLlguLlhYLi4uLi4uWCAgICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgWC5YICAgWFgtWFggICBYLlggICAgICAgICAtWC4uWFguLi4uLi4uLlguLlhYLi4uLi4uLlggICAtICBYLlggIC0gICBYLlggICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgIFguWCBYLlgtWC5YIFguWCAgICAgICAgICAtWC4uLlguLi4uLi4uLi4uLlhYLi4uLi4uLi5YICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgICBYLlguLlgtWC4uWC5YICAgICAgICAgICAtIFguLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uWCAtWFhYLlhYWC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICAgICAgWC4uLlgtWC4uLlggICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uLlgtWC4uLi4uWC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgICAgICBYLi4uLlgtWC4uLi5YICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uWFhYWFgtWFhYWFhYWC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgICAgIFguLi4uLlgtWC4uLi4uWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uLlhYLi4uWC4uWCAgICAtLS0tLS0tLS0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtWFhYWFhYWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uWCBYLi5YIFguLlggICAtICAgICAgIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tICAgIFguLi4uLi4uLi4uWCBYLlggIFguLlggICAtICAgICAgIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAtICAgIFguLi4uLi4uLi4uWCBYWCAgICBYLi5YICAtICAgICAgIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICBYLi5YICAgICAgICAgIC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICAgWFggICAgICAgICAgIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAtICAgICBYWFhYWFhYWFhYICAtLS0tLS0tLS0tLS0gICAgICAgIC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0gICAgICAgICAgICAgICAgICAgIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAQaAiC8xdN10pIyMjIyMjI2hWMHFzJy8jIyNbKSwjIy9sOiQjUTY+IyM1W240Mj5jLVRIYC0+PiMvZT4xMU5OVj1CdigqOi5GP3V1IyhnUlUubzBYR0hgJHZoTEcxaHh0OT9XYCMsNUxzQ3AjLWk+LnIkPCQ2cEQ+TGInOzlDcmM2dGdYbUtWZVUyY0Q0RW8zUi8yKj5dYihNQzskalBmWS47aF5gSVdNOTxMaDJUbFMrZi1zJG82UTxCV0hgWWlVLnhmTHEkTjskMGlSL0dYOlUoamNXMnAvVypxPy1xbW5VQ0k7akhTQWlGV00uUiprVUBDPUdIP2E5d3A4ZiRlLi00XlFnMSlRLUdMKGxmKHIvN0dyUmd3ViVNUz1DI2A4TkQ+UW8jdCdYIyh2I1k5dzAjMUQkQ0lmO1cnI3BXVVBYT3V4WHVVKEg5TSgxPHEtVUUzMSNeLVYnOElSVW83UWYuL0w+PUtlJCQnNUYlKV0wXiMwWEBVLmE8cjpRTHRGc0xjTDYjI2xPaikjLlk1PC1SJktnTHdxSmZMZ04mO1E/Z0leI0RZMnVMaUBeck1sOXQ9Y1dxNiMjd2VnPiRGQmpWUVRTRGdFS25JUzdFTTk+Wlk5dzAjTDs+PiNNeCY0TXZ0Ly9MW01rQSNXQGxLLk4nWzAjN1JMXyYjdytGJUh0RzlNI1hMYE4mLixHTTRQZzstPG5MRU5odng+LVZzTS5NMHJKZkxIMmVUTWAqb0pNSFJDYE5rZmltTTJKLFctalhTOilyMHdLI0BGZ2UkVT5gdydON0cjJCNmQiMkRV4kIzo5OmhrK2VPZS0tNngpRjcqRSU/NzYlXkdNSGVQVy1aNWwnJkdpRiMkOTU2OnJTP2RBI2ZpSzopWXIrYCYjMGpAJ0RiRyYjXiRQRy5MbCtETmE8WENNS0VWKk4pTE4vTipiPSVRNnBpYS1YZzhJJDxNUiYsVmRKZSQ8KDdHO0NrbCcmaEY7OyQ8Xz1YKGIuUlMlJSkjIyNNUEJ1dUUxVjp2JmNYJiMybSMoJmNWXWBrOU9oTE1ibiVzJEcyLEIkQmZEM1gqc3A1I2wsJFIjXXhfWDF4S1glYjVVKltyNWlNZlVvOVVgTjk5aEcpdG0rL1VzOXBHKVhQdWA8MHMtKVdUdChnQ1J4SWcoJTZzZmg9a3RNS24zaik8NjxiNVNrXy8wKF5dQWFOIyhwL0w+JlZaPjFpJWgxUzl1NW9AWWFhVyRlK2I8VFdGbi9aOk9oKEN4MiRsTkVvTl5lKSNDRllAQEk7Qk9RKnNSd1p0WnhSY1U3dVc2Q1hvdzBpKD8kUVtjak9kW1A0ZCldPlJPUE9weFRPN1N0d2kxOjppQjFxKUNfPWRWMjZKOzIsXTdvcCRddVFyQF9WNyRxXiVsUXd0dUhZXT1EWCxuM0wjMFBIRE80Zjk+ZENATz5IQnVLUHBQKkUsTitiM0wjbHBSL01yVEVILklBUWsuYT5EWy5lO21jLnhdSXAuUEheJy9hcVVPLyQxV3hMb1cwW2lMQTxRVDs1SEtEK0BxUSdOUSgzX1BMaEU0OFIucUFQU3dRMC9XSz9aLFt4Py1KO2pRVFdBMFhAS0ooX1k4Ti06L003NDovLVpwS3JVc3M/ZCNkWnFdREFia1UqSnFrTCtud1hAQDQ3YDU+dz00aCg5LmBHQ1JVeEhQZVJgNU1qb2woZFVXeFphKD5TVHJQa3JKaVd4YDVVN0YjLmcqanJvaEdnYGNnOmxTVHZFWS9FVl83SDRROVtaJWNudjtKUVlaNXEubDdaZWFzOkhPSVpPQj9HPE5hbGQkcXNdQF1MPEo3YlIqPmd2Ols3TUkyaykuJzIoJDVGTlAmRVEoLClVXVddK2ZoMTgudnNhaTAwKTtEM0A0a3U1UD9EUDhhSnQrO3FVTV09K2InOEA7bVZpQkt4MERFWy1hdUdsODpQSiZEaitNNk9DXU9eKCgjI11gMGkpZHJUOy03WGA9LUgzW2lnVW5QRy1OWmxvLiNrQGgjPU9yayRtPmE+JC0/VG0kVVYoPyNQNllZIycvIyMjeGU3cS43M3JJMypwUC8kMT5zOSlXLEpyTTdTTl0nLzRDI3YkVWAwI1YuWzA+eFFzSCRmRW1QTWdZMnU3S2goRyVzaUlmTFNvUytNSzJlVE0kPTUsTThwYEEuO19SJSN1W0sjJHg0QUc4LmtLL0hTQj09LSdJZS9RVHRHPy0uKl5OLTRCL1pNXzNZbFFDNyhwN3EpJl0oYDZfYykkLypKTChMLV4oXSR3SU1gZFB0T2RHQSxVMzp3Mk0tMDxxLV1MXz9eKTF2dycuLE1Sc3FWci5MO2FOJiMvRWdKKVBCY1stZj4rV29tWDJ1N2xxTTJpRXVtTVRjc0Y/LWFUPVotOTdVRW5YZ2xFbjFLLWJuRU9gZ3VGdChjJT07QW1fUXNAakxvb0kmTlg7XTAjajQjRjE0O2dsOC1HUXBnd2hycTgnPWxfZi1iNDknVU9xa0x1Ny0jI29EWTJMKHRlK01jaCZnTFl0SixNRXRKZkxoJ3gnTT0kQ1MtWlolUF04Ylo+I1M/WVkjJVEmcSczXkZ3Jj9EKVVETnJvY00zQTc2Ly9vTD8jaDdnbDg1W3FXL05ET2slMTZpajsrOjFhJ2lOSWRiLW91OC5QKncsdjUjRUkkVFdTPlBvdC1SKkgnLVNFcEE6ZylmK08kJSVga0EjRz04Uk1tRzEmT2A+dG84YkNdVCYkLG4uTG9PPjI5c3AzZHQtNTJVJVZNI3E3J0RIcGcrI1o5JUhbSzxMJWEyRS1ncldWTTNAMj0tazIydExdNCQjIzZXZSc4VUpDS0VbZF89JXdJOyc2WC1Hc0xYNGpeU2dKJCMjUip3LHZQM3dLI2lpVyYjKmheRCZSP2pwNysvdSYjKEFQIyNYVThjJGZTWVctSjk1Xy1EcFtnOXdjTyYjTS1oMU9jSmxjLSp2cHcweFVYJiNPUUZLTlhAUUknSW9QcDduYixRVS8vTVEmWkRrS1ApWDxXU1ZMKDY4dVZsJiNjJ1swIyhzMVgmeG0kWSVCNypLOmVEQTMyM2o5OThHWGJBI3B3TXMtamdEJDlRSVNCLUFfKGFONHhvRk1eQEM1OEQwK1ErcTNuMCMzVTFJbkRqRjY4Mi1Tak1YSkspKGgkaHh1YV9LXXVsOTIlJ0JPVSYjQlJSaC1zbGc4S0RscjolTDcxS2E6LkE7JVlVTGpEUG1MPExZczhpI1h3Sk9ZYUtQS2MxaDonOUtlLGcpYiksNzg9STM5Qjt4aVkkYmdHdy0mLlppOUluWER1WWElRypmMkJxN21uOV4jcDF2diUjKFdpLTsvWjVobzsjMjo7JWQmI3g5djY4QzVnP250WDBYKXBUYDslcEIzcTdtZ0dOKTMlKFA4blRkNUw3R2VBLUdMQCslSjN1MjooWWY+ZXRgZTspZiNLbTgmK0RDJEk0Nj4jS3JdXXUtWz05OXR0czEucWIjcTcyZzFXSk84MXErZU4nMDMnZU0+JjFYeFktY2FFbk9qJTJuOCkpLD9JTFI1Xi5JYm48LVgtTXE3W2E4MkxxOkYmI2NlK1M5d3NDSyp4YDU2OUU4ZXcnSGVdaDpzSVsyTE0kW2d1a2EzWlJkNjp0JUlHOjskJVlpSjpOcT0/ZUF3Oy86bm5EcTAoQ1ljTXBHKXFMTjQkIyMmSjxqJFVwSzxRNGExXU11cFdeLXNqXyQlW0hLJSdGIyMjI1FSWko6OlkzRUdsNCdAJUZraUFPZyNwWyMjT2BndWtUZkJIYWdMPExIdyVxJk9WMCMjRj02LzpjaEltMEBlQ1A4WF06a0ZJJWhsOGhnT0BSY0JoUy1AUWIkJSttPWhQRExnKiVLOGxuKHdjZjMvJ0RXLSQubFI/bltuQ0gtZVhPT05USmxoOi5SWUYlMydwNnNxOlVJTUE5NDUmXkhGUzg3QCRFUDJpRzwtbENPJCVjYHVLR0QzckMkeDBCTDhhRm4tLWBrZSUjSE1QJ3ZoMS9SJk9fSjkndW0sLjx0eFtAJXdzSmsmYlVUMmAwdU12N2dnI3FwL2lqLkw1NidobDsuczVDVXJ4ak9NNy0jIy5sK0F1J0EmTzotVDcyTF1QYCY9O2N0cCdYU2NYKnJVLj4tWFR0LCVPVlU0KVMxK1ItI2RnMC9Obj9LdTFeMGYkQipQOlJvd3dtLWAwUEtqWURETSczXWQzOVZaSEVsNCwuaiddUGstTS5oXiY6MEZBQ20kbWFxLSZzZ3cwdDcvNiheeHRrJUx1SDg4RmotZWttPkdBI18+NTY4eDYoT0ZSbC1JWnBgJmIsX1AnJE08Sm5xNzlWc0pXL21XUypQVWlxNzY7XS9OTV8+aExieGZjJG1qYCxPOyYlVzJtYFpoOi8pVWV0dzphSiVdSzloOlRjRl11Xy1TajksVkszTS4qJyYwRFtDYV1KOWdwOCxrQVddJSg/QSVSJGY8LT5adHMnXmtuPS1eQGM0JS1wWTZxSSVKJTFJR3hmTFU5Q1A4Y2JQbFh2KTtDPWIpLDwybU92UDh1cCxVVmYzODM5YWNBV0FXLVc/I2FvL14jJUtZbzhmUlVMTmQyLj4lbV1VSzpuJXIkJ3N3XUo7NXBBb09fIzJtTzNuLCc9SDUoZXRIZypgK1JMZ3Y+PTRVOGd1RCRJJUQ6Vz4tcjVWKiVqKlc6S3Zlai5McCQ8TS1TR1onOitRX2srdXZPU0xpRW8oPGFEL0s8Q0NjYCdMeD4nPzsrK08nPigpakxSLV51NjhQSG04WkZXZStlajhoOjlyNkwqMC8vYyZpSCZSOHBSYkEjS2ptJXVwVjFnOmFfI1VyN0Z1QSModFJoIy5ZNUsrQD8zPC04bTAkUEVuO0o6cmg2P0k2dUc8LWB3TVUnaXJjcDBMYUVfT3RsTWImMSM2VC4jRkRLdSMxTHcldSUrR00rWCdlP1lMZmpNW1ZPME1idUZwNzs+USYjV0lvKTBARiVxN2MjNFhBWE4tVSZWQjxIRkYqcUwoJC9WLDsoa1haZWpXT2A8WzU/P2V3WSgqOT0ld0RjOyx1PCc5dDNXLShIMXRoMytHXXVjUV1rTHM3ZGYoJC8qSkxdQCp0N0J1X0czXzdtcDc8aWFRak9ALmtMZzt4M0IwbHFwN0hmLF5aZTctIyNAL2M1OE1vKDM7a25wMCUpQTc/LVcrZUknbzgpYjxuS253J0hvOEM9WT5wcUI+MGllJmpoWls/aUxSQEBfQXZBLWlRQyg9a3NSWlJWcDdgLj0rTnBCQyVyaCYzXVI6OFhEbUU1XlY4Tyh4PDxhRy8xTiQjRlgkMFY1WTZ4J2FFckkzSSQ3eCVFYHY8LUJZLCklLT9Qc2YqbD8lQzMubU0oPS9NMDpKeEcnPzdXaEglbydhPC04MGcwTkJ4b08oR0g8ZE1dbi4rJXFAakg/Zi5Vc0oyR2dzJjQ8LWU0NyZLbCtmLy85QGBiKz8uVGVOXyZCOFNzP3Y7XlRyaztmI1l2SmtsJnckXT4tK2s/Jyg8Uzo2OHRxKldvRGZadSc7bU0/OFhbbWE4VyUqYC09O0QuKG5jNy87KWc6VDE9XkokJkJSVigtbFRtTkI2eHFCW0AwKm8uZXJNKjxTV0ZddTI9c3QtKig2dj5eXShILmFSRVpTaSwjMTpbSVhhWkZPbTwtdWkjcVVxMiQjI1JpO3U3NU9LIyhSdGFXLUstRmBTK2NGXXVOYC1LTVElclAvWHJpLkxSY0IjIz1ZTDNCZ00vM01EP0BmJjEnQlctKUp1PEwyNWdsOHVoVm0xaEwkIyMqOCMjIydBMy9Ma0tXKyhecldYPzVXXzhnKWEobSZLOFA+I2JtbVdDTWtrJiNUUmBDLDVkPmcpRjt0LDQ6QF9sOEcvNWg0dlVkJSYlOTUwOlZYRCdRZFdvWS1GJEJ0VXdtZmUkWXFMJzgoUFdYKFA/XkBQbzMkIyNgTVNzP0RXQlovUz4rNCU+ZlgsVld2L3cnS0RgTFA1SWJIO3JUVj5uM2NFSzhVI2JYXWwtL1YrXmxqMzt2bE1iJls1WVE4I3Bla1g5SlAzWFVDNzJMLCw/K05pJmNvN0Fwbk8qNU5LLCgoVy1pOiQsa3AnVURBTyhHMFNxN01WakpzYkl1KSdaLCpbPmJyNWZYXjpGUEFXci1tMktnTDxMVU4wOThrVEYmI2x2bzU4PS92akRvOy47KUthKmhMUiMvaz1yS2J4dVZgPlFfbk42Jzh1VEcmIzFUNWcpdUx2Ojg3M1VwVExnSCsjRmdwSCdfbzE3ODBQaDhLbXhRSjgjSDcyTDRANzY4QFRtJlFoNENCLzVPdm1BJixRJlFiVW9pJGFfJTNNMDFIKTR4N0leJktRVmd0Rm5WKztbUGM+W200ay8vLF0xPyNgVllbSnIqMyYmc2xSZkxpVlpKOl0/PUszU3c9WyQ9dVJCPzN4azQ4QGFlZzxaJzwkIzRIKTYsPmUwalQ2J04jKHElLk89PzJTXXUqKG08LVY4SicoMSlHXVs2OGhXJDUncVtHQyY1amBURT9tJ2VzRkdOUk0paixmZlo/LXF4ODstPmc0dCo6Q0lQL1tRYXA3LzknIygxc2FvN3ctLnFOVWRrSil0Q0YmI0JeO3hHdm4ycjlGRVBGRkZjTEAuaUZOa1R2ZSRtJSNRdlFTOFVAKTJaKzNLOkFLTTVpc1o4OCtkS1EpVzY+SiVDTDxLRT5gLmQqKEJgLW44RDlvSzxVcF1jJFgkKCwpTThadDcvW3Jka3FUZ2wtMGN1R012Jz8+LVhWMXFbJy01aydjQVo2OWU7RF8/JFpQUCZzXis3XSkkKiQjQFFZaTksNVAmIzlyKyQlQ0U9Njg+SzhyMD1kU0MlJShAcDcubTdqaWxRMDInMC1WV0FnPGEvJyczdS49NEwkWSk2ay9LOl9bMz0manZMPEwwQy8yJ3Y6XjstRElCVyxCNEU2ODprWjslPzgoUThCSD1rTzY1Qlc/eFNHJiNAdVUsRFMqLD8uKyhvKCMxdkNTOCNDSEY+VGxHVydiKVRxN1ZUOXFeKl4kJC46Jk5AQCQmKVdIdFBtKjVfck8wJmUlSyYjLTMwaihFNCMnWmIuby8oVHBtJD5LJ2ZAW1B2RmwsaGZJTlROVTZ1JzBwYW83JVhVcDldNS4+JWhgOF89VllieHVlbC5OVFNzSmZMYWNGdTNCJ2xRU3UvbTYtT3FlbThUK29FLS0kMGEva111ajlFd3NHPiV2ZVIqaHZeQkZwUWo6SycjU0osc0ItJyNdKGouTGc5MnJUdy0qbiVALzszOXJySkYsbCNxViVPcnRCZUM2Lyw7cUIzZWJOV1s/LEhxajJMLjFOUCZHalVSPTFEOFFhUzNVcCZAKjl3UD8rbG83Yj9AJSdrNGBwMFokMjIlSzMraUNaaj9YSk40Tm0mK1lGXXVALVckVSVWRVEvLCw+PiMpRDxoI2ApaDA6PFE2OTA5dWErJlZVJW4yOmNHM0ZKLSVAQmotRGdMcmBIdyZIQUtqS2pzZUs8L3hLVCopQixOOVgzXWtyYzEydCdwZ1RWKEx2LXRMW3hnXyU9TV9xN2FeeD83VWJkPiMlOGNZI1laPz0sYFdkeHUvYWUmI3c2KVI4OXRJIzZAcycoNkJmN2EmP1M9XlpJX2tTJmFpYCY9dEU3MkxfRCw7XlIpN1skczxFaCNjJilxLk1YSSUjdjlST2E1RlpPJXNGN3E3TndiJiNwdFVKOmFxSmUkU2w2OCUuRCMjI0VDPjw/LWFGJiNSTlF2Pm84bEtOJTUvJCh2ZGZxNytlYkEjdTFwXW92VUtXJlklcV0nPiQxQC1beGZuJDdaVHA3bU0sRyxLbzdhJkd1JUdbUk14SnNbME1NJXdjaS5MRkRLKSg8Y2BROE4pakVJRiorP1AyYThnJSkkcV1vMmFIOEMmPFNpYkMvcSwoZTp2Oy1iIzZbJE50RFo4NEplMktOdkIjJFA1P3RRM250KDBkPWouTFFmLi9MbDMzKyg7cTNMLXc9OGRYJCNXRiZ1SUpALWJmST4lOl9pMkI1Q3NSOCY5WiYjPW1QRW5tMGZgPCZjKVFMNXVKIyV1JWxKaitELXI7Qm9GJiM0RG9TOTdoNWcpRSNvOiZTNHdlREYsOV5Ib2VgaCpMK19hKk5yTFctMXBHXyYyVWRCODZlJUIvOj0+KU40eGVXLip3ZnQtOyQnNTgtRVNxcjxiP1VJKF8lQFtQNDY+I1VgJzZBUV1tJjYvYFo+I1M/WVkjVmM7cjdVMiYzMjZkPXcmSCMjIyM/VFpgKjQ/Ji5NSz9MUDhWeGc+JFtRWGMlUUp2OTIuKERiKkIpZ2IqQk05ZE0qaEpNQW8qYyYjYjB2PVBqZXJdJGdHJkpYRGYtPidTdHZVNzUwNWw5JEFGdmdZUkleJjxeYjY4P2ojcTlRWDRTTSdSTyMmc0wxSU0uckpmTFVBajIyMV1kIyNEVz1tODN1NTsnYll4LCpTbDBoTChXOzskZG9CJk8vVFE6KFpeeEJkTGpMPExuaTsnJ1guYCQjOCsxR0Q6ayRZVVdzYm44b2doNnJ4WjJaOV0lbmQrPlYjKjhVXzcyTGgrMlE4Q2owaTo2aHAmJEMvOnAoSEs+VDhZW2dIUTRgNCknJEFiKE5vZiVWJzhoTCYjPE5FZHRnKG4nPVMxQShRMS9JJjQoWyVkTWAsSXUnMTpfaEw+U2ZEMDcmNkQ8ZnA4ZEhNNy9nK3RsUE45SipyS2FQY3QmPyd1QkNlbV5qbiU5X0spPCxDNUszcz01ZyZHbUpiKltTWXE3SztUUkxHQ3NNLSQkO1MlOllAcjdBSzBwcHJwTDxMcmgscTdlLyVLV0s6NTBJXittJ3ZpYDM/JVpwKzwtZCskTC1TdjpALm8xOW4kczAmMzk7a247UyVCU3EqJDNXb0pTQ0x3ZVZbYVonTVFJak88NztYLVg7JitkTUx2dSNeVXNHRUM5V0VjW1god0k3IzIuKEYwalYqZVpmPC1RdjNKLWMrSjVBbHJCIyRwKEg2OEx2RUEncTNuMCNtLFtgKjhGdClGY1lnRXVkXUNXZm02OCwoYUxBJEBFRlRnTFhvQnEvVVBscDc6ZFsvO3JfaXg9OlRGYFM1SC1iPExJJkhZKEs9aCMpXUxrJEsxNGxWZm06eCRIPDNeUWw8TWAkT2hhcEJua3VwJ0QjTCRQYl9gTipnXTJlO1gvRHRnLGJzaiZLIzJbLTppWXInX3dnSClOVUlSOGExbiNTP1llaidoOF41OFViWmQrXkZLRCpUQDs2QTdhUUNbSzhkLSh2NkdJJHg6VDwmJ0dwNVVmPkBNLipKOjskLXJ2MjknTV04cU12LXRMcCwnODg2aWFDPUhiKllKb0tKLChqJUs9SGBLLnY5SGdncUJJaVp1J1F2QlQuIz0pMHVrcnVWJi4pMz0oXjFgbypQajQ8LTxhTigoXjcoJyNaMHdLIzVHWEA3dV1bYCpTXjQzOTMzQTRybF1bYCpPNENnTEVsXXYkMVEzQWVGMzdkYlhrLC4pdmojeCdkYDtxZ2JRUiVGVywyKD9MTz1zJVNjNjglTlAnIyNBb3RsOHg9QkUjajFVRChbMyRNKF1VSTJMWDNScEtOQDsvI2YnZi8mX210JkYpWGRGPDl0NClRYS4qa1RMd1EnKFRUQjkueEgnPiNNSitnTHE5LSMjQEh1WlBOMF11Omg3LlQuLkc6OyQvVXNqKFQ3YFE4dFQ3MkxuWWw8LXF4ODstSFY3US0mWGR4JTFhLGhDPTB1K0hsc1Y+bnVJUUwtNTxOPylOQlMpUU4qX0ksPyYpMidJTSVMM0kpWCgoZS9kbDImOCc8TTpeI00qUStbVC5YcmkuTFlTM3YlZkZgNjhoO2ItWFsvRW4nQ1IucTdFKXAnL2tsZTJITSx1O14lT0tDLU4rTGwlRjlDRjxOZideI3QyTCw7MjdXOjBPQDYjI1U2Vzc6JHJKZkxXSGokIyl3b3FCZWZJWi5QSzxiKnQ3ZWQ7cCpfbTs0RXhLI2hAJl0+Xz5Aa1hRdE1hY2ZELm0tVkFiODtJUmVNMyR3ZjAnJ2hyYSpzbzU2OCdJcCZ2UnM4NDknTVJZU3AlOnQ6aDVxU2d3cEVyJEI+USw7cyhDIyQpYHN2UXVGJCMjLUQsIyMsZzY4QDJbVDsuWFNkTjlRZSlycHQuX0stIzV3RilzUCcjI3AjQzBjJS1HYiVoZCs8LWonQWkqeCYmSE1rVF1DJ09TbCMjNVJHW0pYYUhOO2QndUEjeC5fVTsuYFBVQChaM2R0NHIxNTJAOnYsJ1IuU2ondyMwPC07a1BJKUZmSiYjQVlKJiMvLyk+LWs9bT0qWG5LJD49KTcyTF0wSSU+Lkc2OTBhOiQjIzwsKTs/OzcyIz94OStkO15WJzk7allAOyliciNxXllRcHg6WCNUZSRaXic9LT1iR2hMZjpENiZiTndaOS1aRCNuXjlIaExNcjVHOyddZCY2J3dZbVRGbUw8TEQpRl4lW3RDJzg7KzlFI0MkZyUjNVk+cTl3ST5QKDltSVs+a0MtZWtMQy9SJkNIK3MnQjtLLU02JEVCJWlzMDA6K0E0Wzd4a3MuTHJOazAmRSl3SUxZRkAyTCcwTmIkK3B2PCgyLjc2OC9GclkmaCReM2kmQCtHJUpUJzwtLHZgMztfKUk5TV5BRV1DTj9DbDJBWmcrJTRpVHBUMzxuLSYlSCViPEZEajJNPGhIPSZFaDwyTGVuJGIqYVRYPS04UXhOKWsxMUlNMWNeaiU5czxMPE5GU28pQj8rPC0oR3hzRixeLUVoQCQ0ZFhoTiQrI3J4SzgnamUnRDdrYGU7KTJwWXdQQSdfcDkmQF4xOG1sMV5bQGc0dCpbSk9hKls9UXA3KHFKX29PTF4oJzdmQiZIcS06c2Ysc05qOHhxXj4kVTRPXUdLeCdtOSliQHA3WXN2SzN3XllSLUNkUSo6SXI8KCR1JikjKCY/TDlSZzNIKTRmaUVwXmlJOU84S25UaixdSD9EKnI3J007UHdaOUswRV5rJi1jcEk7LnAvNl92d29GTVY8LT4jJVhpLkx4Vm5yVSg0JjgvUCs6aExTS2okI1UlXTQ5dCdJOnJnTWknRkxAYTowWS11QVszOScsKHZibWEqaFUlPC1TUkZgVHQ6NTQyUl9WViRwQFtwOERWW0EsPzE4MzlGV2RGPFRkZEY8OUFoLTYmOXRXb0RsaF0mMVNwR01xPlRpMU8qSCYjKEFMOFtfUCUuTT52Xi0pKXFPVCpGNUNxMGBZZSUrJEI2aTo3QDBJWDxOK1QrME1sTUJQUSpWaj5Tc0Q8VTRKSFk4a0QyKTJmVS9NIyRlLilUNCxfPThoTGltWyYpOz9Va0snLXg/Jyg6c2lJZkw8JHBGTWBpPD8lVyhtR0RITSU+aVdQLCMjUGAlL0w8ZVhpOkBaOUMuN289QChwWGRBTy9OTFE4bFBsK0hQT1FhOHdEOD1eR2xQYThUS0kxQ2poc0NUU0xKTScvV2w+LVMocXclc2YvQCUjQjY7L1U3S111WmJpXk9jXjJuPGJoUG1Va013PiV0PCknbUVWRScnbmBXbkpyYSReVEt2WDVCPjtfYVNFSycsKGh3YTA6aTRHPy5CY2kuKFhbP2IqKCQsPS1uPC5RJWAoWD0/K0BBbSpKczAmPTNiaDhLXW1MPExvTnMnNiwnODVgMD90LydfVTU5QF1kZEY8I0xkRjxlV2RGPE91Ti80NXJZPC1MQCYjK2ZtPjY5PUxiLE9jWlYvKTtUVG04Vkk7PyVPdEo8KGI0bXE3TTY6dT9LUmRGPGdSQDJMPUZOVS08YlsoOWMvTUwzbTtaWyRvRjNnKUdBV3FwQVJjPTxST3U3Y0w1bDstW0FdJS8rZnNkO2wjU2FmVC9mKlddMD1PJyQoVGI8WykqQGU3NzVSLTpZb2IlZyo+bCo6eFA/WWIuNSkld19JPzd1azVKQytGUyhtI2knay4nYTBpKTk8N2InZnMnNTlocSQqNVVodiMjcGleOCtoSUVCRmBudm9gOydsMC5eUzE8LXdVSzIvQ29oNThLS2hMak09U08qcmZPYCtxQ2BXLU9uLj1BSjU2Pj5pMkAyTEg2QTomNXFgPzlJM0BAJzA0JnAyL0xWYSpULTQ8LWkzO005VXZaZCtONz5iKmVJd2c6Q0MpYzw+bk8mIzxJR2U7X18udGhqWmw8JXcoV2syeG1wNFFASSNJOSxERl11Ny1QPS4tXzpZSl1hU0BWPzYqQygpZE9wNzpXTCxiJjNSZy8uY21NOSZyXj4kKD4uWi1JJkooUTBIZDVRJTdDby1iYC1jPE4oNnJAaXArQXVySzxtODZRSXRoKiN2Oy1PQnFpK0w3d0RFLUlyOEtbJ20rRERTTHdLJi8uPy1WJVVfJTM6cUtOdSRfYipCLWtwN05hRCdRZFdRUEtZcVtAPlApaEk7Kl9GXXVgUmJbLmo4X1EvPCY+dXUrVnNIJHNNOVRBJT8pKHZtSjgwKSxQN0U+KXRqRCUyTD0tdCNmS1slYHY9UTg8RmZOa2dnXm9JYmFoKiM4L1F0JEYmOksqLShOLycrMXZNQix1KCktYS5WVVUqI1tlJWdBQU8oUz5XbEEyKTtTYT5nWG04WUJgMWRASyNuXTc2LWEkVSxtRjxmWF1pZHFkKTwzLF1KN0ptVzRgNl11a3M9NC03MkwoakVrKzpiSjBNXnEtOERtX1o/MG9sUDFDOVNhJkhbZCZjJG9vUVVqXUV4ZCozWk1ALVdHVzIlcycsQi1fTSU+JVVsOiMvJ3hvRk05UVgtJC5RTic+WyUkWiR1RjZwQTZLaTJPNTo4dyp2UDE8LTFgW0csKS1tIz4wYFAmI2ViIy4zaSlydEI2MShvJyQ/WDNCPC9SOTA7ZVpdJU5jcTstVGxdI0Y+MlFmdF5hZV81dEtMOU1VZTliKnNMRVE5NUMmYD1HP0BNaj13aConM0U+PS08KUd0Kkl3KSdRRzpgQEl3T2Y3Jl0xaSdTMDFCK0V2L05hYyM5Uzs9O1lRcGdfNlVgKmtWWTM5eEssWy82QWo3OicxQm0tXzFFWWZhMStvJm80aHA3S05fUShPbElvQFMlO2pWZG4wJzE8VmM1Mj11YDNeby1uMSdnNHY1OEhqJjZfdDckIyM/TSljPCRiZ1FfJ1NZKCgteGtBI1koLHAnSDlySVZZLWIsJyViQ1BGNy5KPFVwXiwoZFUxVlkqNSNXa1RVPmgxOXcsV1FoTEkpM1MjZiQyKGViLGpyKmI7M1Z3XSo3TkglJGM0VnMsZUQ5PlhXOD9OXW8rKCpwZ0MlLzcyTFYtdTxIcCwzQGVeOVVCMUorYWs5LVROL21oS1BnK0FKWWQkTWx2QUZfakNLKi5PLV4oNjNhZE1ULT5XJWlld1M4VzZtMnJ0Q3BvJ1JTMVI4ND1AcGFUS3QpPj0lJjFbKSp2cCd1K3gsVnJ3TjsmXWt1TzlKRGJnPXBPJEoqLmpWZTt1J20wZHI5bCw8KndNSypPZT1nOGxWX0tFQkZrTydvVV1ePVstNzkyI29rLClpXWxSOHFRMm9BOHdjUkNaXjd3L05qaDs/LnN0WD9RMT5TMXE0Qm4kKUsxPC1yR2RPJyRXci5MYy5DRykkLypKTDR0TlIvLFNWTzMsYVV3J0RKTjopU3M7d0duOUEzMmlqdyVGTCtaMEZuLlU5O3JlU3EpYm1JMzJVPT01QUx1RyYjVmYxMzk4L3BWbzEqYy0oYVkxNjhvPGBKc1Niay0sMU47JD4wOk9VYXMoMzo4Wjk3MkxTZkY4ZWI9Yy07PlNQdzcuNmhuM21gOV5Ya24oci5xU1swO1QlJlFjPStTVFJ4WCdxMUJOazMmKmV1MjsmOHEkJng+USNRN15UZis2PChkJVpWbWoyYkRpJS4zTDJuKzRXJyRQaURERylnLHIlKz8sJEA/dW91NXRTZTJhTl9BUVUqPGhgZS1HSTcpP09LMkEuZDdfYyk/d1E1QVNAREwzciM3ZlNrZ2w2LSsrRDonQSx1cTdTdmxCJHBjcEgncTNuMCNfJWRZI3hDcHItbDxGME5SQC0jI0ZFVjZOVEY2IyMkbDg0TjF3P0FPPidJQU9VUlEjI1ZeRnYtWEZiR003RmwoTjwzRGhMR0YlcS4xckMkIzpUX18mUGk2OCUweGlfJltxRkooNzdqXyZKV29GLlY3MzUmVCxbUio6eEZSKks1Pj4jYGJXLT80TmVfJjZOZV8mNk5lXyZuYGtyLSNHSmNNNlg7dU02WDt1TSguYS4uXjJUa0wlb1IoIzt1LlQlZkFyJTR0SjgmPjwxPUdIWl8rbTkvI0gxRl5SI1NDIypOPUJBOShEP3ZbVWlGWT4+XjhwLEtLRi5XXUwyOXVMa0xsdS8rNFQ8WG9JQiZoeD1UMVBjRGFCJjtISCstQUZyPyhtOUhaVilGS1M4SkN3O1NEPTZbXi9EWlVMYEVVRGZdR0dsRyY+dyQpRi4vXm4zK3JsbytEQjs1c0lZR05rK2kxdC02OUpnLS0wcGFvN1NtI0spcGRIVyY7THVETkhASD4jL1gtVEkoO1A+IyxHYz4jMFN1PiM0YDE/IzhsQz8jPHhVPyNALmk/I0Q6JUAjSEY3QCNMUklAI1BfW0AjVGtuQCNYdypBI10tPUEjYTlPQSNkPEYmIyo7RyMjLkdZIyMyU2wjIzZgKCQjOmw6JCM+eEwkI0IuYCQjRjpyJCNKRi4lI05SQCUjUl9SJSNWa2UlI1p3dyUjXy00JiMzXlJoJVNmbHItaydNUy5vPy41L3NXZWwvd3BFTTAlMycvMSlLXmYxLWQ+RzIxJnYoMzU+VmAzOVY3QTQ9b254NEExT1k1RUkwOzZJYmdyNk0kSFM3UTwpNThDNXcsO1dvQSojWyVUKiNgMWcqI2Q9IysjaEk1KyNsVUcrI3BiWSsjdG5sKyN4JCksIyYxOywjKj1NLCMuSWAsIzJVciwjNmIuLSM7d1tII2lRdEEjbV4wQiNxakJCI3V2VEIjIy1oQiMnOSRDIytFNkMjL1FIQyMzXlpDIzdqbUMjO3YpRCM/LDxEI0M4TkQjR0RhRCNLUHNEI09dL0UjZzFBNSNLQSoxI2dDMTcjTUdkOyM4KDAyI0wtZDMjcldNNCNIZ2ExIyw8dzAjVC5qPCNPIycyI0NZTjEjcWFeOiNfNG0zI29ALz0jZUc4PSN0OEo1I2ArNzgjNHVJLSNtM0IyI1NCWzgjUTBAOCNpWyo5I2lPbjgjMU5tOyNec045I3FoPDkjOj14LSNQO0syIyQlWDkjYkMrLiNSZzs8I21OPS4jTVRGLiNSWk8uIzI/KTQjWSMoLyNbKTEvI2I7TC8jZEFVLyMwU3Y7I2xZJDAjbmAtMCNzZjYwIyhGMjQjd3JIMCMlL2UwI1RtRDwjJUpTTUZvdmU6Q1RCRVhJOjxlaDJnKUIsM2gyXkczaTsjZDNqRD4pNGtNWUQ0bFZ1YDRtYDomNW5pVUE1QChBNUJBMV1QQkI6eGxCQ0M9MkNETFhNQ0VVdGlDZiYwZzIndE4/UEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQLXFla0NgLjlrRWdeK0Yka3dWaUZKVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVvLF48LTI4WkknTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cDs3cS0jbExZSTp4dkQ9IwBB9v8ACwpAQAAAQEEAAJhBAEGKgAELugFQQQAAAAAAAOBAAACAQQAAgD8AAABBAAD4QQAAAAAAALhBAAC4QQAAMEEAADBBAACoQQAAAAAAABBBAAC4QQAAgEAAADBBAABcQgAAkEEAALhBAAAQQQAAMEEAAIBAAACSQgAAAAAAAIhBAACIQQAAAEEAAABBAABcQgAAAAAAAIhBAACIQQAAAEEAAABBAAC2QgAAAAAAAIhBAACwQQAAoEAAAAAAIAD/AAAw/zDwMf8xAP/v/wBOr58AQdCBAQuXJyAA/wAAMP8w8DH/MQD/7/8AAAEAAgAEAAEAAQABAAEAAgABAAMAAgABAAIAAgABAAEAAQABAAEABQACAAEAAgADAAMAAwACAAIABAABAAEAAQACAAEABQACAAMAAQACAAEAAgABAAEAAgABAAEAAgACAAEABAABAAEAAQABAAUACgABAAIAEwACAAEAAgABAAIAAQACAAEAAgABAAUAAQAGAAMAAgABAAIAAgABAAEAAQAEAAgABQABAAEABAABAAEAAwABAAIAAQAFAAEAAgABAAEAAQAKAAEAAQAFAAIABAAGAAEABAACAAIAAgAMAAIAAQABAAYAAQABAAEABAABAAEABAAGAAUAAQAEAAIAAgAEAAoABwABAAEABAACAAQAAgABAAQAAwAGAAoADAAFAAcAAgAOAAIACQABAAEABgAHAAoABAAHAA0AAQAFAAQACAAEAAEAAQACABwABQAGAAEAAQAFAAIABQAUAAIAAgAJAAgACwACAAkAEQABAAgABgAIABsABAAGAAkAFAALABsABgBEAAIAAgABAAEAAQACAAEAAgACAAcABgALAAMAAwABAAEAAwABAAIAAQABAAEAAQABAAMAAQABAAgAAwAEAAEABQAHAAIAAQAEAAQACAAEAAIAAQACAAEAAQAEAAUABgADAAYAAgAMAAMAAQADAAkAAgAEAAMABAABAAUAAwADAAEAAwAHAAEABQABAAEAAQABAAIAAwAEAAUAAgADAAIABgABAAEAAgABAAcAAQAHAAMABAAFAA8AAgACAAEABQADABYAEwACAAEAAQABAAEAAgAFAAEAAQABAAYAAQABAAwACAACAAkAEgAWAAQAAQABAAUAAQAQAAEAAgAHAAoADwABAAEABgACAAQAAQACAAQAAQAGAAEAAQADAAIABAABAAYABAAFAAEAAgABAAEAAgABAAoAAwABAAMAAgABAAkAAwACAAUABwACABMABAADAAYAAQABAAEAAQABAAQAAwACAAEAAQABAAIABQADAAEAAQABAAIAAgABAAEAAgABAAEAAgABAAMAAQABAAEAAwAHAAEABAABAAEAAgABAAEAAgABAAIABAAEAAMACAABAAEAAQACAAEAAwAFAAEAAwABAAMABAAGAAIAAgAOAAQABgAGAAsACQABAA8AAwABABwABQACAAUABQADAAEAAwAEAAUABAAGAA4AAwACAAMABQAVAAIABwAUAAoAAQACABMAAgAEABwAHAACAAMAAgABAA4ABAABABoAHAAqAAwAKAADADQATwAFAA4AEQADAAIAAgALAAMABAAGAAMAAQAIAAIAFwAEAAUACAAKAAQAAgAHAAMABQABAAEABgADAAEAAgACAAIABQAcAAEAAQAHAAcAFAAFAAMAHQADABEAGgABAAgABAAbAAMABgALABcABQADAAQABgANABgAEAAGAAUACgAZACMABwADAAIAAwADAA4AAwAGAAIABgABAAQAAgADAAgAAgABAAEAAwADAAMABAABAAEADQACAAIABAAFAAIAAQAOAA4AAQACAAIAAQAEAAUAAgADAAEADgADAAwAAwARAAIAEAAFAAEAAgABAAgACQADABMABAACAAIABAARABkAFQAUABwASwABAAoAHQBnAAQAAQACAAEAAQAEAAIABAABAAIAAwAYAAIAAgACAAEAAQACAAEAAwAIAAEAAQABAAIAAQABAAMAAQABAAEABgABAAUAAwABAAEAAQADAAQAAQABAAUAAgABAAUABgANAAkAEAABAAEAAQABAAMAAgADAAIABAAFAAIABQACAAIAAwAHAA0ABwACAAIAAQABAAEAAQACAAMAAwACAAEABgAEAAkAAgABAA4AAgAOAAIAAQASAAMABAAOAAQACwApAA8AFwAPABcAsAABAAMABAABAAEAAQABAAUAAwABAAIAAwAHAAMAAQABAAIAAQACAAQABAAGAAIABAABAAkABwABAAoABQAIABAAHQABAAEAAgACAAMAAQADAAUAAgAEAAUABAABAAEAAgACAAMAAwAHAAEABgAKAAEAEQABACwABAAGAAIAAQABAAYABQAEAAIACgABAAYACQACAAgAAQAYAAEAAgANAAcACAAIAAIAAQAEAAEAAwABAAMAAwAFAAIABQAKAAkABAAJAAwAAgABAAYAAQAKAAEAAQAHAAcABAAKAAgAAwABAA0ABAADAAEABgABAAMABQACAAEAAgARABAABQACABAABgABAAQAAgABAAMAAwAGAAgABQALAAsAAQADAAMAAgAEAAYACgAJAAUABwAEAAcABAAHAAEAAQAEAAIAAQADAAYACAAHAAEABgALAAUABQADABgACQAEAAIABwANAAUAAQAIAFIAEAA9AAEAAQABAAQAAgACABAACgADAAgAAQABAAYABAACAAEAAwABAAEAAQAEAAMACAAEAAIAAgABAAEAAQABAAEABgADAAUAAQABAAQABgAJAAIAAQABAAEAAgABAAcAAgABAAYAAQAFAAQABAADAAEACAABAAMAAwABAAMAAgACAAIAAgADAAEABgABAAIAAQACAAEAAwAHAAEACAACAAEAAgABAAUAAgAFAAMABQAKAAEAAgABAAEAAwACAAUACwADAAkAAwAFAAEAAQAFAAkAAQACAAEABQAHAAkACQAIAAEAAwADAAMABgAIAAIAAwACAAEAAQAgAAYAAQACAA8ACQADAAcADQABAAMACgANAAIADgABAA0ACgACAAEAAwAKAAQADwACAA8ADwAKAAEAAwAJAAYACQAgABkAGgAvAAcAAwACAAMAAQAGAAMABAADAAIACAAFAAQAAQAJAAQAAgACABMACgAGAAIAAwAIAAEAAgACAAQAAgABAAkABAAEAAQABgAEAAgACQACAAMAAQABAAEAAQADAAUABQABAAMACAAEAAYAAgABAAQADAABAAUAAwAHAA0AAgAFAAgAAQAGAAEAAgAFAA4ABgABAAUAAgAEAAgADwAFAAEAFwAGAD4AAgAKAAEAAQAIAAEAAgACAAoABAACAAIACQACAAEAAQADAAIAAwABAAUAAwADAAIAAQADAAgAAQABAAEACwADAAEAAQAEAAMABwABAA4AAQACAAMADAAFAAIABQABAAYABwAFAAcADgALAAEAAwABAAgACQAMAAIAAQALAAgABAAEAAIABgAKAAkADQABAAEAAwABAAUAAQADAAIABAAEAAEAEgACAAMADgALAAQAHQAEAAIABwABAAMADQAJAAIAAgAFAAMABQAUAAcAEAAIAAUASAAiAAYABAAWAAwADAAcAC0AJAAJAAcAJwAJAL8AAQABAAEABAALAAgABAAJAAIAAwAWAAEAAQABAAEABAARAAEABwAHAAEACwAfAAoAAgAEAAgAAgADAAIAAQAEAAIAEAAEACAAAgADABMADQAEAAkAAQAFAAIADgAIAAEAAQADAAYAEwAGAAUAAQAQAAYAAgAKAAgABQABAAIAAwABAAUABQABAAsABgAGAAEAAwADAAIABgADAAgAAQABAAQACgAHAAUABwAHAAUACAAJAAIAAQADAAQAAQABAAMAAQADAAMAAgAGABAAAQAEAAYAAwABAAoABgABAAMADwACAAkAAgAKABkADQAJABAABgACAAIACgALAAQAAwAJAAEAAgAGAAYABQAEAB4AKAABAAoABwAMAA4AIQAGAAMABgAHAAMAAQADAAEACwAOAAQACQAFAAwACwAxABIAMwAfAIwAHwACAAIAAQAFAAEACAABAAoAAQAEAAQAAwAYAAEACgABAAMABgAGABAAAwAEAAUAAgABAAQAAgA5AAoABgAWAAIAFgADAAcAFgAGAAoACwAkABIAEAAhACQAAgAFAAUAAQABAAEABAAKAAEABAANAAIABwAFAAIACQADAAQAAQAHACsAAwAHAAMACQAOAAcACQABAAsAAQABAAMABwAEABIADQABAA4AAQADAAYACgBJAAIAAgAeAAYAAQALABIAEwANABYAAwAuACoAJQBZAAcAAwAQACIAAgACAAMACQABAAcAAQABAAEAAgACAAQACgAHAAMACgADAAkABQAcAAkAAgAGAA0ABwADAAEAAwAKAAIABwACAAsAAwAGABUANgBVAAIAAQAEAAIAAgABACcAAwAVAAIAAgAFAAEAAQABAAQAAQABAAMABAAPAAEAAwACAAQABAACAAMACAACABQAAQAIAAcADQAEAAEAGgAGAAIACQAiAAQAFQA0AAoABAAEAAEABQAMAAIACwABAAcAAgAeAAwALAACAB4AAQABAAMABgAQAAkAEQAnAFIAAgACABgABwABAAcAAwAQAAkADgAsAAIAAQACAAEAAgADAAUAAgAEAAEABgAHAAUAAwACAAYAAQALAAUACwACAAEAEgATAAgAAQADABgAHQACAAEAAwAFAAIAAgABAA0ABgAFAAEALgALAAMABQABAAEABQAIAAIACgAGAAwABgADAAcACwACAAQAEAANAAIABQABAAEAAgACAAUAAgAcAAUAAgAXAAoACAAEAAQAFgAnAF8AJgAIAA4ACQAFAAEADQAFAAQAAwANAAwACwABAAkAAQAbACUAAgAFAAQABAA/ANMAXwACAAIAAgABAAMABQACAAEAAQACAAIAAQABAAEAAwACAAQAAQACAAEAAQAFAAIAAgABAAEAAgADAAEAAwABAAEAAQADAAEABAACAAEAAwAGAAEAAQADAAcADwAFAAMAAgAFAAMACQALAAQAAgAWAAEABgADAAgABwABAAQAHAAEABAAAwADABkABAAEABsAGwABAAQAAQACAAIABwABAAMABQACABwACAACAA4AAQAIAAYAEAAZAAMAAwADAA4AAwADAAEAAQACAAEABAAGAAMACAAEAAEAAQABAAIAAwAGAAoABgACAAMAEgADAAIABQAFAAQAAwABAAUAAgAFAAQAFwAHAAYADAAGAAQAEQALAAkABQABAAEACgAFAAwAAQABAAsAGgAhAAcAAwAGAAEAEQAHAAEABQAMAAEACwACAAQAAQAIAA4AEQAXAAEAAgABAAcACAAQAAsACQAGAAUAAgAGAAQAEAACAAgADgABAAsACAAJAAEAAQABAAkAGQAEAAsAEwAHAAIADwACAAwACAA0AAcABQATAAIAEAAEACQACAABABAACAAYABoABAAGAAIACQAFAAQAJAADABwADAAZAA8AJQAbABEADAA7ACYABQAgAH8AAQACAAkAEQAOAAQAAQACAAEAAQAIAAsAMgAEAA4AAgATABAABAARAAUABAAFABoADAAtAAIAFwAtAGgAHgAMAAgAAwAKAAIAAgADAAMAAQAEABQABwACAAkABgAPAAIAFAABAAMAEAAEAAsADwAGAIYAAgAFADsAAQACAAIAAgABAAkAEQADABoAiQAKANMAOwABAAIABAABAAQAAQABAAEAAgAGAAIAAwABAAEAAgADAAIAAwABAAMABAAEAAIAAwADAAEABAADAAEABwACAAIAAwABAAIAAQADAAMAAwACAAIAAwACAAEAAwAOAAYAAQADAAIACQAGAA8AGwAJACIAkQABAAEAAgABAAEAAQABAAIAAQABAAEAAQACAAIAAgADAAEAAgABAAEAAQACAAMABQAIAAMABQACAAQAAQADAAIAAgACAAwABAABAAEAAQAKAAQABQABABQABAAQAAEADwAJAAUADAACAAkAAgAFAAQAAgAaABMABwABABoABAAeAAwADwAqAAEABgAIAKwAAQABAAQAAgABAAEACwACAAIABAACAAEAAgABAAoACAABAAIAAQAEAAUAAQACAAUAAQAIAAQAAQADAAQAAgABAAYAAgABAAMABAABAAIAAQABAAEAAQAMAAUABwACAAQAAwABAAEAAQADAAMABgABAAIAAgADAAMAAwACAAEAAgAMAA4ACwAGAAYABAAMAAIACAABAAcACgABACMABwAEAA0ADwAEAAMAFwAVABwANAAFABoABQAGAAEABwAKAAIABwA1AAMAAgABAAEAAQACAKMAFAIBAAoACwABAAMAAwAEAAgAAgAIAAYAAgACABcAFgAEAAIAAgAEAAIAAQADAAEAAwADAAUACQAIAAIAAQACAAgAAQAKAAIADAAVABQADwBpAAIAAwABAAEAAwACAAMAAQABAAIABQABAAQADwALABMAAQABAAEAAQAFAAQABQABAAEAAgAFAAMABQAMAAEAAgAFAAEACwABAAEADwAJAAEABAAFAAMAGgAIAAIAAQADAAEAAQAPABMAAgAMAAEAAgAFAAIABwACABMAAgAUAAYAGgAHAAUAAgACAAcAIgAVAA0ARgACAIAAAQABAAIAAQABAAIAAQABAAMAAgACAAIADwABAAQAAQADAAQAKgAKAAYAAQAxAFUACAABAAIAAQABAAQABAACAAMABgABAAUABwAEAAMA0wAEAAEAAgABAAIABQABAAIABAACAAIABgAFAAYACgADAAQAMABkAAYAAgAQACgBBQAbAIMBAgACAAMABwAQAAgABQAmAA8AJwAVAAkACgADAAcAOwANABsAFQAvAAUAFQAGAEHyqAELsR4BAAIABAABAAEAAQABAAIAAQAGAAIAAgABAAgABQAHAAsAAQACAAoACgAIAAIABAAUAAIACwAIAAIAAQACAAEABgACAAEABwAFAAMABwABAAEADQAHAAkAAQAEAAYAAQACAAEACgABAAEACQACAAIABAAFAAYADgABAAEACQADABIABQAEAAIAAgAKAAcAAQABAAEAAwACAAQAAwAXAAIACgAMAAIADgACAAQADQABAAYACgADAAEABwANAAYABAANAAUAAgADABEAAgACAAUABwAGAAQAAQAHAA4AEAAGAA0ACQAPAAEAAQAHABAABAAHAAEAEwAJAAIABwAPAAIABgAFAA0AGQAEAA4ADQALABkAAQABAAEAAgABAAIAAgADAAoACwADAAMAAQABAAQABAACAAEABAAJAAEABAADAAUABQACAAcADAALAA8ABwAQAAQABQAQAAIAAQABAAYAAwADAAEAAQACAAcABgAGAAcAAQAEAAcABgABAAEAAgABAAwAAwADAAkABQAIAAEACwABAAIAAwASABQABAABAAMABgABAAcAAwAFAAUABwACAAIADAADAAEABAACAAMAAgADAAsACAAHAAQAEQABAAkAGQABAAEABAACAAIABAABAAIABwABAAEAAQADAAEAAgAGABAAAQACAAEAAQADAAwAFAACAAUAFAAIAAcABgACAAEAAQABAAEABgACAAEAAgAKAAEAAQAGAAEAAwABAAIAAQAEAAEADAAEAAEAAwABAAEAAQABAAEACgAEAAcABQANAAEADwABAAEAHgALAAkAAQAPACYADgABACAAEQAUAAEACQAfAAIAFQAJAAQAMQAWAAIAAQANAAEACwAtACMAKwA3AAwAEwBTAAEAAwACAAMADQACAAEABwADABIAAwANAAgAAQAIABIABQADAAcAGQAYAAkAGAAoAAMAEQAYAAIAAQAGAAIAAwAQAA8ABgAHAAMADAABAAkABwADAAMAAwAPABUABQAQAAQABQAMAAsACwADAAYAAwACAB8AAwACAAEAAQAXAAYABgABAAQAAgAGAAUAAgABAAEAAwADABYAAgAGAAIAAwARAAMAAgAEAAUAAQAJAAUAAQABAAYADwAMAAMAEQACAA4AAgAIAAEAFwAQAAQAAgAXAAgADwAXABQADAAZABMALwALABUAQQAuAAQAAwABAAUABgABAAIABQAaAAIAAQABAAMACwABAAEAAQACAAEAAgADAAEAAQAKAAIAAwABAAEAAQADAAYAAwACAAIABgAGAAkAAgACAAIABgACAAUACgACAAQAAQACAAEAAgACAAMAAQABAAMAAQACAAkAFwAJAAIAAQABAAEAAQAFAAMAAgABAAoACQAGAAEACgACAB8AGQADAAcABQAoAAEADwAGABEABwAbALQAAQADAAIAAgABAAEAAQAGAAMACgAHAAEAAwAGABEACAAGAAIAAgABAAMABQAFAAgAEAAOAA8AAQABAAQAAQACAAEAAQABAAMAAgAHAAUABgACAAUACgABAAQAAgAJAAEAAQALAAYAAQAsAAEAAwAHAAkABQABAAMAAQABAAoABwABAAoABAACAAcAFQAPAAcAAgAFAAEACAADAAQAAQADAAEABgABAAQAAgABAAQACgAIAAEABAAFAAEABQAKAAIABwABAAoAAQABAAMABAALAAoAHQAEAAcAAwAFAAIAAwAhAAUAAgATAAMAAQAEAAIABgAfAAsAAQADAAMAAwABAAgACgAJAAwACwAMAAgAAwAOAAgABgALAAEABAApAAMAAQACAAcADQABAAUABgACAAYADAAMABYABQAJAAQACAAJAAkAIgAGABgAAQABABQACQAJAAMABAABAAcAAgACAAIABgACABwABQADAAYAAQAEAAYABwAEAAIAAQAEAAIADQAGAAQABAADAAEACAAIAAMAAgABAAUAAQACAAIAAwABAAsACwAHAAMABgAKAAgABgAQABAAFgAHAAwABgAVAAUABAAGAAYAAwAGAAEAAwACAAEAAgAIAB0AAQAKAAEABgANAAYABgATAB8AAQANAAQABAAWABEAGgAhAAoABAAPAAwAGQAGAEMACgACAAMAAQAGAAoAAgAGAAIACQABAAkABAAEAAEAAgAQAAIABQAJAAIAAwAIAAEACAADAAkABAAIAAYABAAIAAsAAwACAAEAAQADABoAAQAHAAUAAQALAAEABQADAAUAAgANAAYAJwAFAAEABQACAAsABgAKAAUAAQAPAAUAAwAGABMAFQAWAAIABAABAAYAAQAIAAEABAAIAAIABAACAAIACQACAAEAAQABAAQAAwAGAAMADAAHAAEADgACAAQACgACAA0AAQARAAcAAwACAAEAAwACAA0ABwAOAAwAAwABAB0AAgAIAAkADwAOAAkADgABAAMAAQAGAAUACQALAAMAJgArABQABwAHAAgABQAPAAwAEwAPAFEACAAHAAEABQBJAA0AJQAcAAgACAABAA8AEgAUAKUAHAABAAYACwAIAAQADgAHAA8AAQADAAMABgAEAAEABwAOAAEAAQALAB4AAQAFAAEABAAOAAEABAACAAcANAACAAYAHQADAAEACQABABUAAwAFAAEAGgADAAsADgALAAEAEQAFAAEAAgABAAMAAgAIAAEAAgAJAAwAAQABAAIAAwAIAAMAGAAMAAcABwAFABEAAwADAAMAAQAXAAoABAAEAAYAAwABABAAEQAWAAMACgAVABAAEAAGAAQACgACAAEAAQACAAgACAAGAAUAAwADAAMAJwAZAA8AAQABABAABgAHABkADwAGAAYADAABABYADQABAAQACQAFAAwAAgAJAAEADAAcAAgAAwAFAAoAFgA8AAEAAgAoAAQAPQA/AAQAAQANAAwAAQAEAB8ADAABAA4AWQAFABAABgAdAA4AAgAFADEAEgASAAUAHQAhAC8AAQARAAEAEwAMAAIACQAHACcADAADAAcADAAnAAMAAQAuAAQADAADAAgACQAFAB8ADwASAAMAAgACAEIAEwANABEABQADAC4AfAANADkAIgACAAUABAAFAAgAAQABAAEABAADAAEAEQAFAAMABQADAAEACAAFAAYAAwAbAAMAGgAHAAwABwACABEAAwAHABIATgAQAAQAJAABAAIAAQAGAAIAAQAnABEABwAEAA0ABAAEAAQAAQAKAAQAAgAEAAYAAwAKAAEAEwABABoAAgAEACEAAgBJAC8ABwADAAgAAgAEAA8AEgABAB0AAgApAA4AAQAVABAAKQAHACcAGQANACwAAgACAAoAAQANAAcAAQAHAAMABQAUAAQACAACADEAAQAKAAYAAQAGAAcACgAHAAsAEAADAAwAFAAEAAoAAwABAAIACwACABwACQACAAQABwACAA8AAQAbAAEAHAARAAQABQAKAAcAAwAYAAoACwAGABoAAwACAAcAAgACADEAEAAKABAADwAEAAUAGwA9AB4ADgAmABYAAgAHAAUAAQADAAwAFwAYABEAEQADAAMAAgAEAAEABgACAAcABQABAAEABQABAAEACQAEAAEAAwAGAAEACAACAAgABAAOAAMABQALAAQAAQADACAAAQATAAQAAQANAAsABQACAAEACAAGAAgAAQAGAAUADQADABcACwAFAAMAEAADAAkACgABABgAAwDGADQABAACAAIABQAOAAUABAAWAAUAFAAEAAsABgApAAEABQACAAIACwAFAAIAHAAjAAgAFgADABIAAwAKAAcABQADAAQAAQAFAAMACAAJAAMABgACABAAFgAEAAUABQADAAMAEgAXAAIABgAXAAUAGwAIAAEAIQACAAwAKwAQAAUAAgADAAYAAQAUAAQAAgAJAAcAAQALAAIACgADAA4AHwAJAAMAGQASABQAAgAFAAUAGgAOAAEACwARAAwAKAATAAkABgAfAFMAAgAHAAkAEwBOAAwADgAVAEwADABxAE8AIgAEAAEAAQA9ABIAVQAKAAIAAgANAB8ACwAyAAYAIQCfALMABgAGAAcABAAEAAIABAACAAUACAAHABQAIAAWAAEAAwAKAAYABwAcAAUACgAJAAIATQATAA0AAgAFAAEABAAEAAcABAANAAMACQAfABEAAwAaAAIABgAGAAUABAABAAcACwADAAQAAgABAAYAAgAUAAQAAQAJAAIABgADAAcAAQABAAEAFAACAAMAAQAGAAIAAwAGAAIABAAIAAEABQANAAgABAALABcAAQAKAAYAAgABAAMAFQACAAIABAAYAB8ABAAKAAoAAgAFAMAADwAEABAABwAJADMAAQACAAEAAQAFAAEAAQACAAEAAwAFAAMAAQADAAQAAQADAAEAAwADAAkACAABAAIAAgACAAQABAASAAwAXAACAAoABAADAA4ABQAZABAAKgAEAA4ABAACABUABQB+AB4AHwACAAEABQANAAMAFgAFAAYABgAUAAwAAQAOAAwAVwADABMAAQAIAAIACQAJAAMAAwAXAAIAAwAHAAYAAwABAAIAAwAJAAEAAwABAAYAAwACAAEAAwALAAMAAQAGAAoAAwACAAMAAQACAAEABQABAAEACwADAAYABAABAAcAAgABAAIABQAFACIABAAOABIABAATAAcABQAIAAIABgBPAAEABQACAA4ACAACAAkAAgABACQAHAAQAAQAAQABAAEAAgAMAAYAKgAnABAAFwAHAA8ADwADAAIADAAHABUAQAAGAAkAHAAIAAwAAwADACkAOwAYADMANwA5ACYBCQAJAAIABgACAA8AAQACAA0AJgBaAAkACQAJAAMACwAHAAEAAQABAAUABgADAAIAAQACAAIAAwAIAAEABAAEAAEABQAHAAEABAADABQABAAJAAEAAQABAAUABQARAAEABQACAAYAAgAEAAEABAAFAAcAAwASAAsACwAgAAcABQAEAAcACwB/AAgABAADAAMAAQAKAAEAAQAGABUADgABABAAAQAHAAEAAwAGAAkAQQAzAAQAAwANAAMACgABAAEADAAJABUAbgADABMAGAABAAEACgA+AAQAAQAdACoATgAcABQAEgBSAAYAAwAPAAYAVAA6AP0ADwCbAAgBDwAVAAkADgAHADoAKAAnAEGwxwELECAA/wAABC8F4C3/LUCmn6YAQdLHAQsmgD/NzMw9CtcjPG8SgzoXt9E4rMUnN703hjWVv9Yzd8wrMl9wiTAAQYDIAQtGBAAAAOeOAADnjgAABAAAAPGOAADxjgAACAAAAPSOAAD0jgAACAAAAPmOAAD5jgAABAAAAOqOAADqjgAACAAAAOqOAADtjgBB0MgBC5IC/5AAAAORAAAHkQAAC5EAAMGQAADBkAAAwZAAAMGQAADHkAAAz5AAANeQAADfkAAA55AAAO+QAAD3kAAA35AAAJOQAACTkAAAk5AAAJOQAACXkAAAnZAAAKOQAACpkAAAr5AAALWQAAC7kAAAqZAAAP8AAP///wD/AP8A/wD///8AAP///wD///8AAP8AAAAA6HoAANB0AADQdAAA0HQAANB0AAA4ewAAWHsAANB0AAAIewAA0HQAANB0AAAIewAAOHsAADh7AABYewAAWHsAAOh6AABYewAAWHsAAFh7AADQdAAA0HQAANB0AAAAAAAACHsAAEB7AAAIdQAAOHsAAOh6AAA4ewAAWHsAANB0AADQdABB8MoBCxLQdAAA2HQAAAh7AABYewAA0HQAQZDLAQsi6HoAANB0AADQdAAACHsAAAh7AADYdAAA0HQAAFB7AAA4ewBBwMsBCyIIewAA0HQAADh7AAAIewAACHsAANh0AADQdAAA0HQAAAh7AEHwywELEgh7AADYdAAA0HQAAAh7AAAIewBBkMwBCzboegAA2HQAAFh7AADQdAAACHsAANh0AAA4ewAAOHsAAAh7AADYdAAA0HQAANB0AAA4ewAAOHsAQdDMAQsSCHsAANh0AAAIewAAOHsAANB0AEHwzAELMgh7AAA4ewAAOHsAANh0AAAIewAA2HQAADh7AADYdAAACHsAANh0AADQdAAAOHsAANB0AEGwzQELIgh7AADYdAAA0HQAADh7AADQdAAA0HQAANB0AADQdAAA0HQAQeDNAQs2CHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AAA4ewAAOHsAANB0AEGgzgELEgh7AADYdAAA0HQAANB0AADQdABBwM4BC3YIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAAAAAAAAh7AADYdAAAOHsAANB0AADQdAAA0HQAANB0AAA4ewAACHsAANh0AADQdAAAYHsAAGB7AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AAA4ewAAOHsAADh7AEHAzwELEgh7AADYdAAA0HQAANB0AAA4ewBB4M8BC4IBCHsAANh0AADQdAAA0HQAANB0AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AABQewAA0HQAADh7AADQdAAA0HQAAAh7AADYdAAA0HQAAFB7AAA4ewAA0HQAANB0AAAAAAAACHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AADQdABB8NABCyIIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AEGg0QELRgh7AADYdAAA0HQAANB0AAA4ewAAOHsAANB0AAAAAAAACHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQfDRAQt2CHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AADQdAAA0HQAADh7AAA4ewAAAAAAAOh6AABYewAA0HQAANB0AADoegAA2HQAANB0AADQdAAAOHsAADh7AADQdAAA0HQAANB0AADQdABB8NIBC5IBCHsAANh0AADQdAAAQHsAAAh7AADQdAAA0HQAANB0AADQdAAAOHsAANB0AADQdAAA6HoAANB0AADQdAAA0HQAANB0AADQdAAA0HQAAAAAAADoegAAOHsAANB0AAAIewAA6HoAANh0AAAIewAAOHsAAOh6AADYdAAA0HQAADh7AADoegAA0HQAANB0AADQdAAA0HQAQZDUAQsi6HoAANB0AAA4ewAA0HQAAAh7AADQdAAA0HQAAAh7AAA4ewBBwNQBC4YBCHsAANh0AADQdAAAOHsAAAh7AADYdAAAUHsAAFB7AABQewAAUHsAAFB7AAAAAAAACHsAAFh2AAA4ewAA0HQAAAh7AACYdgAAOHsAAFh7AAAIewAAmHYAADh7AAAIewAACHsAAJh2AAA4ewAAOHsAANB0AADIdgAA0HQAAFh7AADQdAAA0HQAQdDVAQsy6HoAACB2AADQdAAAWHsAANB0AABAewAAMHsAAAAAAAA4ewAAIHYAAFh7AADYdAAAWHsAQZDWAQti0HQAACB2AABYewAAWHsAAFh7AADYdAAA0HQAANB0AADoegAAQHUAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAQYDXAQs26HoAADB1AAA4ewAAOHsAAOh6AABAdQAA0HQAANB0AADoegAAQHUAANB0AADQdAAAWHsAADh7AEHA1wELFuh6AABAdQAA0HQAANB0AADQdAAAOHsAQeDXAQsW6HoAAEB1AADQdAAAWHsAADh7AAA4ewBBgNgBCzLoegAAQHUAANB0AABYewAAWHsAAFh7AAA4ewAAAAAAAOh6AABAdQAAQHsAAAh7AABYewBBwNgBCyLoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHw2AELEuh6AABAdQAA0HQAADh7AABAewBBkNkBC0boegAAQHUAANB0AAA4ewAAQHsAAAh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHg2QELcuh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAA6HoAAEB1AADQdAAAWHsAANB0AABAewAA2HQAAFh7AADQdABB4NoBCxLoegAAQHUAANB0AABAewAA2HQAQYDbAQsW6HoAAEB1AADQdAAAWHsAAEB7AAA4ewBBoNsBCzboegAAQHUAANB0AABYewAAQHsAADh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAAQHsAQeDbAQvWAeh6AABAdQAA0HQAANB0AADQdAAAQHsAAFh7AAAAAAAA6HoAAEB1AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAQHsAAEB7AABAewAA6HoAAEB1AADQdAAA0HQAAEB7AABYewAAOHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAAFh7AAA4ewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAWHsAQcDdAQsS6HoAAEB1AADQdAAA0HQAAAh7AEHg3QELRuh6AADgdwAAOHsAAFh7AADoegAA+HUAADh7AADYdAAA6HoAAOh1AAA4ewAAOHsAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQbDeAQvhA9B0AADQdAAA0HQAANB0AAACAADAAwAAwAQAAMAFAADABgAAwAcAAMAIAADACQAAwAoAAMALAADADAAAwA0AAMAOAADADwAAwBAAAMARAADAEgAAwBMAAMAUAADAFQAAwBYAAMAXAADAGAAAwBkAAMAaAADAGwAAwBwAAMAdAADAHgAAwB8AAMAAAACzAQAAwwIAAMMDAADDBAAAwwUAAMMGAADDBwAAwwgAAMMJAADDCgAAwwsAAMMMAADDDQAA0w4AAMMPAADDAAAMuwEADMMCAAzDAwAMwwQADNMAAAAA/////////////////////////////////////////////////////////////////wABAgMEBQYHCAn/////////CgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiP///////8KCwwNDg8QERITFBUWFxgZGhscHR4fICEiI/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AQaDiAQsYEQAKABEREQAAAAAFAAAAAAAACQAAAAALAEHA4gELIREADwoREREDCgcAARMJCwsAAAkGCwAACwAGEQAAABEREQBB8eIBCwELAEH64gELGBEACgoREREACgAAAgAJCwAAAAkACwAACwBBq+MBCwEMAEG34wELFQwAAAAADAAAAAAJDAAAAAAADAAADABB5eMBCwEOAEHx4wELFQ0AAAAEDQAAAAAJDgAAAAAADgAADgBBn+QBCwEQAEGr5AELHg8AAAAADwAAAAAJEAAAAAAAEAAAEAAAEgAAABISEgBB4uQBCw4SAAAAEhISAAAAAAAACQBBk+UBCwELAEGf5QELFQoAAAAACgAAAAAJCwAAAAAACwAACwBBzeUBCwEMAEHZ5QEL3gIMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYKAAAAZAAAAOgDAAAQJwAAoIYBAEBCDwCAlpgAAOH1BQMAAAAEAAAABAAAAAYAAACD+aIARE5uAPwpFQDRVycA3TT1AGLbwAA8mZUAQZBDAGNR/gC73qsAt2HFADpuJADSTUIASQbgAAnqLgAcktEA6x3+ACmxHADoPqcA9TWCAES7LgCc6YQAtCZwAEF+XwDWkTkAU4M5AJz0OQCLX4QAKPm9APgfOwDe/5cAD5gFABEv7wAKWosAbR9tAM9+NgAJyycARk+3AJ5mPwAt6l8Auid1AOXrxwA9e/EA9zkHAJJSigD7a+oAH7FfAAhdjQAwA1YAe/xGAPCrawAgvM8ANvSaAOOpHQBeYZEACBvmAIWZZQCgFF8AjUBoAIDY/wAnc00ABgYxAMpWFQDJqHMAe+JgAGuMwABBw+gBC21A+yH5PwAAAAAtRHQ+AAAAgJhG+DwAAABgUcx4OwAAAICDG/A5AAAAQCAlejgAAACAIoLjNgAAAAAd82k1OGPtPtoPST9emHs/2g/JP2k3rDFoISIztA8UM2ghojMAAAAAAADwPwAAAAAAAPg/AEG46QELCAbQ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aXZlAFBsb3RMaW5lc0hvdmVyZWQAUGxvdEhpc3RvZ3JhbUhvdmVyZWQAVGV4dFNlbGVjdGVkQmcARHJhZ0Ryb3BUYXJnZXQATmF2SGlnaGxpZ2h0AE5hdldpbmRvd2luZ0hpZ2hsaWdodABOYXZXaW5kb3dpbmdEaW1CZwBNb2RhbFdpbmRvd0RpbUJnAFVua25vd24AIyNUb29sdGlwXyUwMmQAIyNNZW51XyUwMmQAIyNQb3B1cF8lMDh4AHdpbmRvd19jb250ZXh0AHZvaWRfY29udGV4dABjb2x1bW5zACNTb3VyY2VFeHRlcm4ACiUqcyUuKnMAICUuKnMAYWIACgBMb2cgVG8gVFRZAExvZyBUbyBGaWxlAExvZyBUbyBDbGlwYm9hcmQARGVwdGgAcmIAd3QASW1HdWkgTWV0cmljcwABRGVhciBJbUd1aSAlcwBBcHBsaWNhdGlvbiBhdmVyYWdlICUuM2YgbXMvZnJhbWUgKCUuMWYgRlBTKQAlZCB2ZXJ0aWNlcywgJWQgaW5kaWNlcyAoJWQgdHJpYW5nbGVzKQAlZCBhY3RpdmUgd2luZG93cyAoJWQgdmlzaWJsZSkAJWQgYWxsb2NhdGlvbnMAU2hvdyBjbGlwcGluZyByZWN0YW5nbGVzIHdoZW4gaG92ZXJpbmcgZHJhdyBjb21tYW5kcwBDdHJsIHNob3dzIHdpbmRvdyBiZWdpbiBvcmRlcgBXaW5kb3dzAERyYXdMaXN0AEFjdGl2ZSBEcmF3TGlzdHMgKCVkKQBQb3B1cHMAUG9wdXBzICglZCkAUG9wdXBJRDogJTA4eCwgV2luZG93OiAnJXMnJXMlcwBOVUxMACBDaGlsZFdpbmRvdwAgQ2hpbGRNZW51AFRhYkJhcnMAVGFiIEJhcnMgKCVkKQBJbnRlcm5hbCBzdGF0ZQBOb25lAE1vdXNlAE5hdgBOYXZLZXlib2FyZABOYXZHYW1lcGFkAEhvdmVyZWRXaW5kb3c6ICclcycASG92ZXJlZFJvb3RXaW5kb3c6ICclcycASG92ZXJlZElkOiAweCUwOFgvMHglMDhYICglLjJmIHNlYyksIEFsbG93T3ZlcmxhcDogJWQAQWN0aXZlSWQ6IDB4JTA4WC8weCUwOFggKCUuMmYgc2VjKSwgQWxsb3dPdmVybGFwOiAlZCwgU291cmNlOiAlcwBBY3RpdmVJZFdpbmRvdzogJyVzJwBNb3ZpbmdXaW5kb3c6ICclcycATmF2V2luZG93OiAnJXMnAE5hdklkOiAweCUwOFgsIE5hdkxheWVyOiAlZABOYXZJbnB1dFNvdXJjZTogJXMATmF2QWN0aXZlOiAlZCwgTmF2VmlzaWJsZTogJWQATmF2QWN0aXZhdGVJZDogMHglMDhYLCBOYXZJbnB1dElkOiAweCUwOFgATmF2RGlzYWJsZUhpZ2hsaWdodDogJWQsIE5hdkRpc2FibGVNb3VzZUhvdmVyOiAlZABOYXZXaW5kb3dpbmdUYXJnZXQ6ICclcycARHJhZ0Ryb3A6ICVkLCBTb3VyY2VJZCA9IDB4JTA4WCwgUGF5bG9hZCAiJXMiICglZCBieXRlcykAIyNPdmVybGF5ACVzLyVzXyUwOFgAJXMvJTA4WAAjUkVTSVpFACMjI05hdldpbmRvd2luZ0xpc3QAKFBvcHVwKQAoTWFpbiBtZW51IGJhcikAKFVudGl0bGVkKQBQb3M9JWYsJWYAU2l6ZT0lZiwlZgBDb2xsYXBzZWQ9JWQAIyMjAFslc11bJXNdCgBQb3M9JWQsJWQKAFNpemU9JWQsJWQKAENvbGxhcHNlZD0lZAoAJXMgKCVkKQAlcyAnJXMnLCAlZCBAIDB4JXAAUG9zOiAoJS4xZiwlLjFmKSwgU2l6ZTogKCUuMWYsJS4xZiksIFNpemVDb250ZW50cyAoJS4xZiwlLjFmKQBGbGFnczogMHglMDhYICglcyVzJXMlcyVzJXMlcyVzJXMuLikAQ2hpbGQgAFRvb2x0aXAgAFBvcHVwIABNb2RhbCAAQ2hpbGRNZW51IABOb1NhdmVkU2V0dGluZ3MgAE5vTW91c2VJbnB1dHMATm9OYXZJbnB1dHMAQWx3YXlzQXV0b1Jlc2l6ZQBTY3JvbGw6ICglLjJmLyUuMmYsJS4yZi8lLjJmKQBBY3RpdmU6ICVkLyVkLCBXcml0ZUFjY2Vzc2VkOiAlZCwgQmVnaW5PcmRlcldpdGhpbkNvbnRleHQ6ICVkAEFwcGVhcmluZzogJWQsIEhpZGRlbjogJWQgKFJlZyAlZCBSZXNpemUgJWQpLCBTa2lwSXRlbXM6ICVkAE5hdkxhc3RJZHM6IDB4JTA4WCwweCUwOFgsIE5hdkxheWVyQWN0aXZlTWFzazogJVgATmF2TGFzdENoaWxkTmF2V2luZG93OiAlcwBOYXZSZWN0UmVsWzBdOiAoJS4xZiwlLjFmKSglLjFmLCUuMWYpAE5hdlJlY3RSZWxbMF06IDxOb25lPgBSb290V2luZG93AFBhcmVudFdpbmRvdwBDaGlsZFdpbmRvd3MAQ29sdW1ucyBzZXRzICglZCkAQ29sdW1ucyBJZDogMHglMDhYLCBDb3VudDogJWQsIEZsYWdzOiAweCUwNFgAV2lkdGg6ICUuMWYgKE1pblg6ICUuMWYsIE1heFg6ICUuMWYpAENvbHVtbiAlMDJkOiBPZmZzZXROb3JtICUuM2YgKD0gJS4xZiBweCkAU3RvcmFnZTogJWQgYnl0ZXMAJXM6ICclcycgJWQgdnR4LCAlZCBpbmRpY2VzLCAlZCBjbWRzAENVUlJFTlRMWSBBUFBFTkRJTkcAQ2FsbGJhY2sgJXAsIHVzZXJfZGF0YSAlcABEcmF3ICU0ZCAlcyB2dHgsIHRleCAweCVwLCBjbGlwX3JlY3QgKCU0LjBmLCU0LjBmKS0oJTQuMGYsJTQuMGYpAGluZGV4ZWQAbm9uLWluZGV4ZWQAJXMgJTA0ZDogcG9zICglOC4yZiwlOC4yZiksIHV2ICglLjZmLCUuNmYpLCBjb2wgJTA4WAoAdnR4ACAgIABUYWJCYXIgKCVkIHRhYnMpJXMAICpJbmFjdGl2ZSoAPAAlMDJkJWMgVGFiIDB4JTA4WABjbWFwAGxvY2EAaGVhZABnbHlmAGhoZWEAaG10eABrZXJuAEdQT1MAQ0ZGIABtYXhwAFByb2dneUNsZWFuLnR0ZiwgMTNweAAjU0NST0xMWAAjU0NST0xMWQAjaW1hZ2UAWyBdAFt4XQAoeCkAKCApACUuMGYlJQAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQAgfAAjI0NvbWJvXyUwMmQAKlVua25vd24gaXRlbSoAJWQAJWYAJWxmACV1ACVsbGQAJWxsdQAjI3YAIyNtaW4AIyNtYXgALQArACUwOFgATTowLjAwMABNOjAwMABjb250ZXh0ACMlMDJYJTAyWCUwMlglMDJYACMlMDJYJTAyWCUwMlgAIyNUZXh0ACUwMlglMDJYJTAyWCUwMlgAJTAyWCUwMlglMDJYACMjQ29sb3JCdXR0b24AcGlja2VyACMjcGlja2VyAF9DT0wzRgBfQ09MNEYAaHN2AHN2AGh1ZQBhbHBoYQBDdXJyZW50ACMjY3VycmVudABPcmlnaW5hbAAjI29yaWdpbmFsACMjcmdiACMjaHN2ACMjaGV4ACMjc2VsZWN0YWJsZQAjI2R1bW15cGlja2VyAEFscGhhIEJhcgBDb2xvcgAjI3ByZXZpZXcAIyUwMlglMDJYJTAyWApSOiAlZCwgRzogJWQsIEI6ICVkCiglLjNmLCAlLjNmLCAlLjNmKQAjJTAyWCUwMlglMDJYJTAyWApSOiVkLCBHOiVkLCBCOiVkLCBBOiVkCiglLjNmLCAlLjNmLCAlLjNmLCAlLjNmKQAlM2QAUjolM2QARzolM2QAQjolM2QAQTolM2QASDolM2QAUzolM2QAVjolM2QAJTAuM2YAUjolMC4zZgBHOiUwLjNmAEI6JTAuM2YAQTolMC4zZgBIOiUwLjNmAFM6JTAuM2YAVjolMC4zZgAjI1gAIyNZACMjWgAjI1cAUkdCAEhTVgBIRVgAMC4uMjU1ADAuMDAuLjEuMDAAQ29weSBhcy4uACglLjNmZiwgJS4zZmYsICUuM2ZmLCAlLjNmZikAKCVkLCVkLCVkLCVkKQAweCUwMlglMDJYJTAyWAAweCUwMlglMDJYJTAyWCUwMlgACiMjACMjAD4AI1RyZWVQdXNoACVkOiAlOC40ZwolZDogJTguNGcAJWQ6ICU4LjRnAHRydWUAZmFsc2UAJXM6ICVzACVzOiAlZAAlJXM6ICVzACVzOiAlLjNmACMjTWFpbk1lbnVCYXIAIyNtZW51YmFyACMjPAAjIz4AJS4qcwAqADEuNjcASU1HVUlfVkVSU0lPTgBJTUdVSV9DSEVDS1ZFUlNJT04ASW1HdWlJT1NpemUASW1HdWlTdHlsZVNpemUASW1WZWMyU2l6ZQBJbVZlYzRTaXplAEltRHJhd1ZlcnRTaXplAEltRHJhd0lkeFNpemUASW1EcmF3VmVydFBvc09mZnNldABJbURyYXdWZXJ0VVZPZmZzZXQASW1EcmF3VmVydENvbE9mZnNldABDcmVhdGVDb250ZXh0AERlc3Ryb3lDb250ZXh0AEdldEN1cnJlbnRDb250ZXh0AFNldEN1cnJlbnRDb250ZXh0AERlYnVnQ2hlY2tWZXJzaW9uQW5kRGF0YUxheW91dABHZXRJTwBHZXRTdHlsZQBHZXREcmF3RGF0YQBOZXdGcmFtZQBSZW5kZXIARW5kRnJhbWUAU2hvd0RlbW9XaW5kb3cAU2hvd0Fib3V0V2luZG93AFNob3dNZXRyaWNzV2luZG93AFNob3dTdHlsZUVkaXRvcgBTaG93U3R5bGVTZWxlY3RvcgBTaG93Rm9udFNlbGVjdG9yAFNob3dVc2VyR3VpZGUAR2V0VmVyc2lvbgBTdHlsZUNvbG9yc0RhcmsAU3R5bGVDb2xvcnNDbGFzc2ljAFN0eWxlQ29sb3JzTGlnaHQAQmVnaW4ARW5kAEJlZ2luQ2hpbGQARW5kQ2hpbGQAR2V0Q29udGVudFJlZ2lvbk1heABHZXRDb250ZW50UmVnaW9uQXZhaWwAR2V0Q29udGVudFJlZ2lvbkF2YWlsV2lkdGgAR2V0V2luZG93Q29udGVudFJlZ2lvbk1pbgBHZXRXaW5kb3dDb250ZW50UmVnaW9uTWF4AEdldFdpbmRvd0NvbnRlbnRSZWdpb25XaWR0aABHZXRXaW5kb3dEcmF3TGlzdABHZXRXaW5kb3dQb3MAR2V0V2luZG93U2l6ZQBHZXRXaW5kb3dXaWR0aABHZXRXaW5kb3dIZWlnaHQASXNXaW5kb3dDb2xsYXBzZWQASXNXaW5kb3dBcHBlYXJpbmcAU2V0V2luZG93Rm9udFNjYWxlAFNldE5leHRXaW5kb3dQb3MAU2V0TmV4dFdpbmRvd1NpemUAU2V0TmV4dFdpbmRvd1NpemVDb25zdHJhaW50cwBTZXROZXh0V2luZG93Q29udGVudFNpemUAU2V0TmV4dFdpbmRvd0NvbGxhcHNlZABTZXROZXh0V2luZG93Rm9jdXMAU2V0TmV4dFdpbmRvd0JnQWxwaGEAU2V0V2luZG93UG9zAFNldFdpbmRvd1NpemUAU2V0V2luZG93Q29sbGFwc2VkAFNldFdpbmRvd0ZvY3VzAFNldFdpbmRvd05hbWVQb3MAU2V0V2luZG93TmFtZVNpemUAU2V0V2luZG93TmFtZUNvbGxhcHNlZABTZXRXaW5kb3dOYW1lRm9jdXMAR2V0U2Nyb2xsWABHZXRTY3JvbGxZAEdldFNjcm9sbE1heFgAR2V0U2Nyb2xsTWF4WQBTZXRTY3JvbGxYAFNldFNjcm9sbFkAU2V0U2Nyb2xsSGVyZVkAU2V0U2Nyb2xsRnJvbVBvc1kAU2V0U3RhdGVTdG9yYWdlAEdldFN0YXRlU3RvcmFnZQBQdXNoRm9udABQb3BGb250AFB1c2hTdHlsZUNvbG9yAFBvcFN0eWxlQ29sb3IAUHVzaFN0eWxlVmFyAFBvcFN0eWxlVmFyAEdldFN0eWxlQ29sb3JWZWM0AEdldEZvbnQAR2V0Rm9udFNpemUAR2V0Rm9udFRleFV2V2hpdGVQaXhlbABHZXRDb2xvclUzMl9BAEdldENvbG9yVTMyX0IAR2V0Q29sb3JVMzJfQwBQdXNoSXRlbVdpZHRoAFBvcEl0ZW1XaWR0aABDYWxjSXRlbVdpZHRoAFB1c2hUZXh0V3JhcFBvcwBQb3BUZXh0V3JhcFBvcwBQdXNoQWxsb3dLZXlib2FyZEZvY3VzAFBvcEFsbG93S2V5Ym9hcmRGb2N1cwBQdXNoQnV0dG9uUmVwZWF0AFBvcEJ1dHRvblJlcGVhdABTZXBhcmF0b3IAU2FtZUxpbmUATmV3TGluZQBTcGFjaW5nAER1bW15AEluZGVudABVbmluZGVudABCZWdpbkdyb3VwAEVuZEdyb3VwAEdldEN1cnNvclBvcwBHZXRDdXJzb3JQb3NYAEdldEN1cnNvclBvc1kAU2V0Q3Vyc29yUG9zAFNldEN1cnNvclBvc1gAU2V0Q3Vyc29yUG9zWQBHZXRDdXJzb3JTdGFydFBvcwBHZXRDdXJzb3JTY3JlZW5Qb3MAU2V0Q3Vyc29yU2NyZWVuUG9zAEFsaWduVGV4dFRvRnJhbWVQYWRkaW5nAEdldFRleHRMaW5lSGVpZ2h0AEdldFRleHRMaW5lSGVpZ2h0V2l0aFNwYWNpbmcAR2V0RnJhbWVIZWlnaHQAR2V0RnJhbWVIZWlnaHRXaXRoU3BhY2luZwBDb2x1bW5zAE5leHRDb2x1bW4AR2V0Q29sdW1uSW5kZXgAR2V0Q29sdW1uV2lkdGgAU2V0Q29sdW1uV2lkdGgAR2V0Q29sdW1uT2Zmc2V0AFNldENvbHVtbk9mZnNldABHZXRDb2x1bW5zQ291bnQAUHVzaElEAFBvcElEAEdldElEAFRleHRVbmZvcm1hdHRlZABUZXh0AFRleHRWAFRleHRDb2xvcmVkAFRleHRDb2xvcmVkVgBUZXh0RGlzYWJsZWQAVGV4dERpc2FibGVkVgBUZXh0V3JhcHBlZABUZXh0V3JhcHBlZFYATGFiZWxUZXh0AExhYmVsVGV4dFYAQnVsbGV0VGV4dABCdWxsZXRUZXh0VgBCdWxsZXQAQnV0dG9uAFNtYWxsQnV0dG9uAEFycm93QnV0dG9uAEludmlzaWJsZUJ1dHRvbgBJbWFnZQBJbWFnZUJ1dHRvbgBDaGVja2JveABDaGVja2JveEZsYWdzAFJhZGlvQnV0dG9uX0EAUmFkaW9CdXR0b25fQgBQbG90TGluZXMAUGxvdEhpc3RvZ3JhbQBQcm9ncmVzc0JhcgBCZWdpbkNvbWJvAEVuZENvbWJvAENvbWJvAERyYWdGbG9hdABEcmFnRmxvYXQyAERyYWdGbG9hdDMARHJhZ0Zsb2F0NABEcmFnRmxvYXRSYW5nZTIARHJhZ0ludABEcmFnSW50MgBEcmFnSW50MwBEcmFnSW50NABEcmFnSW50UmFuZ2UyAERyYWdTY2FsYXIASW5wdXRUZXh0AElucHV0VGV4dE11bHRpbGluZQBJbnB1dEZsb2F0AElucHV0RmxvYXQyAElucHV0RmxvYXQzAElucHV0RmxvYXQ0AElucHV0SW50AElucHV0SW50MgBJbnB1dEludDMASW5wdXRJbnQ0AElucHV0RG91YmxlAElucHV0U2NhbGFyAFNsaWRlckZsb2F0AFNsaWRlckZsb2F0MgBTbGlkZXJGbG9hdDMAU2xpZGVyRmxvYXQ0AFNsaWRlckFuZ2xlAFNsaWRlckludABTbGlkZXJJbnQyAFNsaWRlckludDMAU2xpZGVySW50NABTbGlkZXJTY2FsYXIAVlNsaWRlckZsb2F0AFZTbGlkZXJJbnQAVlNsaWRlclNjYWxhcgBDb2xvckVkaXQzAENvbG9yRWRpdDQAQ29sb3JQaWNrZXIzAENvbG9yUGlja2VyNABDb2xvckJ1dHRvbgBTZXRDb2xvckVkaXRPcHRpb25zAFRyZWVOb2RlX0EAVHJlZU5vZGVfQgBUcmVlTm9kZV9DAFRyZWVOb2RlRXhfQQBUcmVlTm9kZUV4X0IAVHJlZU5vZGVFeF9DAFRyZWVQdXNoX0EAVHJlZVB1c2hfQgBUcmVlUG9wAFRyZWVBZHZhbmNlVG9MYWJlbFBvcwBHZXRUcmVlTm9kZVRvTGFiZWxTcGFjaW5nAFNldE5leHRUcmVlTm9kZU9wZW4AQ29sbGFwc2luZ0hlYWRlcl9BAENvbGxhcHNpbmdIZWFkZXJfQgBTZWxlY3RhYmxlX0EAU2VsZWN0YWJsZV9CAExpc3RCb3hfQQBMaXN0Qm94X0IATGlzdEJveEhlYWRlcl9BAExpc3RCb3hIZWFkZXJfQgBMaXN0Qm94Rm9vdGVyAFZhbHVlX0EAVmFsdWVfQgBWYWx1ZV9DAFZhbHVlX0QAU2V0VG9vbHRpcABCZWdpblRvb2x0aXAARW5kVG9vbHRpcABCZWdpbk1haW5NZW51QmFyAEVuZE1haW5NZW51QmFyAEJlZ2luTWVudUJhcgBFbmRNZW51QmFyAEJlZ2luTWVudQBFbmRNZW51AE1lbnVJdGVtX0EATWVudUl0ZW1fQgBPcGVuUG9wdXAAT3BlblBvcHVwT25JdGVtQ2xpY2sAQmVnaW5Qb3B1cABCZWdpblBvcHVwTW9kYWwAQmVnaW5Qb3B1cENvbnRleHRJdGVtAEJlZ2luUG9wdXBDb250ZXh0V2luZG93AEJlZ2luUG9wdXBDb250ZXh0Vm9pZABFbmRQb3B1cABJc1BvcHVwT3BlbgBDbG9zZUN1cnJlbnRQb3B1cABCZWdpblRhYkJhcgBFbmRUYWJCYXIAQmVnaW5UYWJJdGVtAEVuZFRhYkl0ZW0AU2V0VGFiSXRlbUNsb3NlZABMb2dUb1RUWQBMb2dUb0ZpbGUATG9nVG9DbGlwYm9hcmQATG9nRmluaXNoAExvZ0J1dHRvbnMATG9nVGV4dABCZWdpbkRyYWdEcm9wU291cmNlAFNldERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFNvdXJjZQBCZWdpbkRyYWdEcm9wVGFyZ2V0AEFjY2VwdERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFRhcmdldABHZXREcmFnRHJvcFBheWxvYWQAUHVzaENsaXBSZWN0AFBvcENsaXBSZWN0AFNldEl0ZW1EZWZhdWx0Rm9jdXMAU2V0S2V5Ym9hcmRGb2N1c0hlcmUASXNJdGVtSG92ZXJlZABJc0l0ZW1BY3RpdmUASXNJdGVtRWRpdGVkAElzSXRlbUZvY3VzZWQASXNJdGVtQ2xpY2tlZABJc0l0ZW1WaXNpYmxlAElzSXRlbURlYWN0aXZhdGVkAElzSXRlbURlYWN0aXZhdGVkQWZ0ZXJFZGl0AElzQW55SXRlbUhvdmVyZWQASXNBbnlJdGVtQWN0aXZlAElzQW55SXRlbUZvY3VzZWQAR2V0SXRlbVJlY3RNaW4AR2V0SXRlbVJlY3RNYXgAR2V0SXRlbVJlY3RTaXplAFNldEl0ZW1BbGxvd092ZXJsYXAASXNXaW5kb3dGb2N1c2VkAElzV2luZG93SG92ZXJlZABJc1JlY3RWaXNpYmxlX0EASXNSZWN0VmlzaWJsZV9CAEdldFRpbWUAR2V0RnJhbWVDb3VudABHZXRPdmVybGF5RHJhd0xpc3QAR2V0RHJhd0xpc3RTaGFyZWREYXRhAEdldFN0eWxlQ29sb3JOYW1lAENhbGNUZXh0U2l6ZQBDYWxjTGlzdENsaXBwaW5nAEJlZ2luQ2hpbGRGcmFtZQBFbmRDaGlsZEZyYW1lAENvbG9yQ29udmVydFUzMlRvRmxvYXQ0AENvbG9yQ29udmVydEZsb2F0NFRvVTMyAENvbG9yQ29udmVydFJHQnRvSFNWAENvbG9yQ29udmVydEhTVnRvUkdCAEdldEtleUluZGV4AElzS2V5RG93bgBJc0tleVByZXNzZWQASXNLZXlSZWxlYXNlZABHZXRLZXlQcmVzc2VkQW1vdW50AElzTW91c2VEb3duAElzQW55TW91c2VEb3duAElzTW91c2VDbGlja2VkAElzTW91c2VEb3VibGVDbGlja2VkAElzTW91c2VSZWxlYXNlZABJc01vdXNlRHJhZ2dpbmcASXNNb3VzZUhvdmVyaW5nUmVjdABJc01vdXNlUG9zVmFsaWQAR2V0TW91c2VQb3MAR2V0TW91c2VQb3NPbk9wZW5pbmdDdXJyZW50UG9wdXAAR2V0TW91c2VEcmFnRGVsdGEAUmVzZXRNb3VzZURyYWdEZWx0YQBHZXRNb3VzZUN1cnNvcgBTZXRNb3VzZUN1cnNvcgBDYXB0dXJlS2V5Ym9hcmRGcm9tQXBwAENhcHR1cmVNb3VzZUZyb21BcHAAR2V0Q2xpcGJvYXJkVGV4dABTZXRDbGlwYm9hcmRUZXh0AExvYWRJbmlTZXR0aW5nc0Zyb21NZW1vcnkAU2F2ZUluaVNldHRpbmdzVG9NZW1vcnkAU2V0QWxsb2NhdG9yRnVuY3Rpb25zAE1lbUFsbG9jAE1lbUZyZWUAaWlpAE4xMGVtc2NyaXB0ZW4zdmFsRQB2aWlpaQBOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TXzExY2hhcl90cmFpdHNJY0VFTlNfOWFsbG9jYXRvckljRUVFRQBOU3QzX18yMjFfX2Jhc2ljX3N0cmluZ19jb21tb25JTGIxRUVFAGlpaWZpAHgAeQAyM2ltcG9ydF9tYXliZV9udWxsX3ZhbHVlSTZJbVZlYzJFAGlpaWlpAGlpaWYAaWlpZmYAaWlpaQAxMmFjY2Vzc192YWx1ZUlmTG0xRUUAdmlmZmZpaWkAegB3ADZJbVZlYzIAdmlpZmlpADEyYWNjZXNzX3ZhbHVlSWlMbTFFRQBpaWlpZmkAUDIwSW1EcmF3TGlzdFNoYXJlZERhdGEAMjBJbURyYXdMaXN0U2hhcmVkRGF0YQBQMTBJbURyYXdMaXN0ADEwSW1EcmF3TGlzdABkaQBpaWlpaWkAJXMAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TMF8xMWNoYXJfdHJhaXRzSWNFRU5TMF85YWxsb2NhdG9ySWNFRUVFRQAyNGltcG9ydF9tYXliZV9udWxsX3N0cmluZwAyM2FjY2Vzc19tYXliZV9udWxsX3ZhbHVlSWJMbTFFRQB2aWlmaQB2aWlpAGlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJZkxtNEVFADIzYWNjZXNzX21heWJlX251bGxfdmFsdWVJZkxtNEVFADEyYWNjZXNzX3ZhbHVlSWZMbTNFRQBpaWlpaWlpaWlpAHNldABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lkRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlkRQBsZW5ndGgAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lmRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlmRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lqRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlqRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lpRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlpRQBpaWlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJaUxtNEVFADEyYWNjZXNzX3ZhbHVlSWlMbTNFRQAxMmFjY2Vzc192YWx1ZUlpTG0yRUUAJS4wZiBkZWcAMTJhY2Nlc3NfdmFsdWVJZkxtMkVFAGlpaWlpaWlpAGlpaWlkZGlpADEyYWNjZXNzX3ZhbHVlSWRMbTFFRQBQMjZJbUd1aUlucHV0VGV4dENhbGxiYWNrRGF0YQAyNkltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAGlpaWlpaWlpaWlpAHZpZmlpAHZpaWlpaWlpaWlpADEyYWNjZXNzX3ZhbHVlSWpMbTFFRQAxMmFjY2Vzc192YWx1ZUliTG0xRUUAdmlpaWlpaWkAbnVtYmVyAHZpaWYAZmlpAGlpAHZpaQBQNkltRm9udAA2SW1Gb250AFBLNkltVmVjNAA2SW1WZWM0AFRPRE86ICVzCgBhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoZW1zY3JpcHRlbjo6dmFsKSBjb25zdAB2aWZmAHZpaWlpaQBQMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAdmlmAGZpAHN0cmluZwBQMTBJbUd1aVN0eWxlADEwSW1HdWlTdHlsZQB2aQBQMTBJbURyYXdEYXRhADEwSW1EcmF3RGF0YQBQN0ltR3VpSU8AN0ltR3VpSU8AUDE2V3JhcEltR3VpQ29udGV4dAAxNldyYXBJbUd1aUNvbnRleHQAUDExSW1Gb250QXRsYXMAMTFJbUZvbnRBdGxhcwBJbUd1aVN0eWxlAEFscGhhAFdpbmRvd1BhZGRpbmcAV2luZG93Um91bmRpbmcAV2luZG93Qm9yZGVyU2l6ZQBXaW5kb3dNaW5TaXplAFdpbmRvd1RpdGxlQWxpZ24AQ2hpbGRSb3VuZGluZwBDaGlsZEJvcmRlclNpemUAUG9wdXBSb3VuZGluZwBQb3B1cEJvcmRlclNpemUARnJhbWVQYWRkaW5nAEZyYW1lUm91bmRpbmcARnJhbWVCb3JkZXJTaXplAEl0ZW1TcGFjaW5nAEl0ZW1Jbm5lclNwYWNpbmcAVG91Y2hFeHRyYVBhZGRpbmcASW5kZW50U3BhY2luZwBDb2x1bW5zTWluU3BhY2luZwBTY3JvbGxiYXJTaXplAFNjcm9sbGJhclJvdW5kaW5nAEdyYWJNaW5TaXplAEdyYWJSb3VuZGluZwBUYWJSb3VuZGluZwBUYWJCb3JkZXJTaXplAEJ1dHRvblRleHRBbGlnbgBEaXNwbGF5V2luZG93UGFkZGluZwBEaXNwbGF5U2FmZUFyZWFQYWRkaW5nAE1vdXNlQ3Vyc29yU2NhbGUAQW50aUFsaWFzZWRMaW5lcwBBbnRpQWxpYXNlZEZpbGwAQ3VydmVUZXNzZWxsYXRpb25Ub2wAX2dldEF0X0NvbG9ycwBfc2V0QXRfQ29sb3JzAFNjYWxlQWxsU2l6ZXMAUDZJbVZlYzQAUEs2SW1WZWMyAHYAUEsxMEltR3VpU3R5bGUASW1HdWlJTwBDb25maWdGbGFncwBCYWNrZW5kRmxhZ3MARGlzcGxheVNpemUARGVsdGFUaW1lAEluaVNhdmluZ1JhdGUASW5pRmlsZW5hbWUATG9nRmlsZW5hbWUATW91c2VEb3VibGVDbGlja1RpbWUATW91c2VEb3VibGVDbGlja01heERpc3QATW91c2VEcmFnVGhyZXNob2xkAF9nZXRBdF9LZXlNYXAAX3NldEF0X0tleU1hcABLZXlSZXBlYXREZWxheQBLZXlSZXBlYXRSYXRlAFVzZXJEYXRhAEZvbnRzAEZvbnRHbG9iYWxTY2FsZQBGb250QWxsb3dVc2VyU2NhbGluZwBGb250RGVmYXVsdABEaXNwbGF5RnJhbWVidWZmZXJTY2FsZQBEaXNwbGF5VmlzaWJsZU1pbgBEaXNwbGF5VmlzaWJsZU1heABNb3VzZURyYXdDdXJzb3IAQ29uZmlnTWFjT1NYQmVoYXZpb3JzAENvbmZpZ0lucHV0VGV4dEN1cnNvckJsaW5rAENvbmZpZ1dpbmRvd3NSZXNpemVGcm9tRWRnZXMAQ29uZmlnV2luZG93c01vdmVGcm9tVGl0bGVCYXJPbmx5AEdldENsaXBib2FyZFRleHRGbgBTZXRDbGlwYm9hcmRUZXh0Rm4AQ2xpcGJvYXJkVXNlckRhdGEATW91c2VQb3MAX2dldEF0X01vdXNlRG93bgBfc2V0QXRfTW91c2VEb3duAE1vdXNlV2hlZWwAS2V5Q3RybABLZXlTaGlmdABLZXlBbHQAS2V5U3VwZXIAX2dldEF0X0tleXNEb3duAF9zZXRBdF9LZXlzRG93bgBfZ2V0QXRfTmF2SW5wdXRzAF9zZXRBdF9OYXZJbnB1dHMAQWRkSW5wdXRDaGFyYWN0ZXIAQWRkSW5wdXRDaGFyYWN0ZXJzVVRGOABDbGVhcklucHV0Q2hhcmFjdGVycwBXYW50Q2FwdHVyZU1vdXNlAFdhbnRDYXB0dXJlS2V5Ym9hcmQAV2FudFRleHRJbnB1dABXYW50U2V0TW91c2VQb3MAV2FudFNhdmVJbmlTZXR0aW5ncwBOYXZBY3RpdmUATmF2VmlzaWJsZQBGcmFtZXJhdGUATWV0cmljc1JlbmRlclZlcnRpY2VzAE1ldHJpY3NSZW5kZXJJbmRpY2VzAE1ldHJpY3NSZW5kZXJXaW5kb3dzAE1ldHJpY3NBY3RpdmVXaW5kb3dzAE1ldHJpY3NBY3RpdmVBbGxvY2F0aW9ucwBNb3VzZURlbHRhAF9nZXRBdF9Nb3VzZUNsaWNrZWRQb3MAX2dldEF0X01vdXNlRG93bkR1cmF0aW9uAF9nZXRBdF9LZXlzRG93bkR1cmF0aW9uAF9nZXRBdF9OYXZJbnB1dHNEb3duRHVyYXRpb24AUEs3SW1HdWlJTwBpaWlpZgBmaWlpAEltRm9udEF0bGFzAEFkZEZvbnREZWZhdWx0AEFkZEZvbnRGcm9tTWVtb3J5VFRGAENsZWFyVGV4RGF0YQBDbGVhcklucHV0RGF0YQBDbGVhckZvbnRzAENsZWFyAEJ1aWxkAElzQnVpbHQAR2V0VGV4RGF0YUFzQWxwaGE4AEdldFRleERhdGFBc1JHQkEzMgBHZXRHbHlwaFJhbmdlc0RlZmF1bHQAR2V0R2x5cGhSYW5nZXNLb3JlYW4AR2V0R2x5cGhSYW5nZXNKYXBhbmVzZQBHZXRHbHlwaFJhbmdlc0NoaW5lc2VGdWxsAEdldEdseXBoUmFuZ2VzQ2hpbmVzZVNpbXBsaWZpZWRDb21tb24AR2V0R2x5cGhSYW5nZXNDeXJpbGxpYwBHZXRHbHlwaFJhbmdlc1RoYWkATG9ja2VkAEZsYWdzAFRleElEAFRleERlc2lyZWRXaWR0aABUZXhHbHlwaFBhZGRpbmcAVGV4V2lkdGgAVGV4SGVpZ2h0AFRleFV2U2NhbGUAVGV4VXZXaGl0ZVBpeGVsAEl0ZXJhdGVGb250cwBwaXhlbHMAd2lkdGgAaGVpZ2h0AGJ5dGVzX3Blcl9waXhlbABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0loRUUAaWlpaWZpaQBGb250RGF0YQBidWZmZXIAYnl0ZU9mZnNldABieXRlTGVuZ3RoAFRPRE86IEZvbnREYXRhICV6dSAlenUKAEZvbnREYXRhT3duZWRCeUF0bGFzAEZvbnRObwBTaXplUGl4ZWxzAE92ZXJzYW1wbGVIAE92ZXJzYW1wbGVWAFBpeGVsU25hcEgAR2x5cGhFeHRyYVNwYWNpbmcAR2x5cGhPZmZzZXQAR2x5cGhSYW5nZXMAR2x5cGhNaW5BZHZhbmNlWABHbHlwaE1heEFkdmFuY2VYAE1lcmdlTW9kZQBSYXN0ZXJpemVyRmxhZ3MAUmFzdGVyaXplck11bHRpcGx5AE5hbWUAUEsxMUltRm9udEF0bGFzAEltRm9udABGb250U2l6ZQBTY2FsZQBEaXNwbGF5T2Zmc2V0AEl0ZXJhdGVHbHlwaHMARmFsbGJhY2tHbHlwaABGYWxsYmFja0FkdmFuY2VYAEZhbGxiYWNrQ2hhcgBDb25maWdEYXRhQ291bnQASXRlcmF0ZUNvbmZpZ0RhdGEAQXNjZW50AERlc2NlbnQATWV0cmljc1RvdGFsU3VyZmFjZQBDbGVhck91dHB1dERhdGEAQnVpbGRMb29rdXBUYWJsZQBGaW5kR2x5cGgARmluZEdseXBoTm9GYWxsYmFjawBTZXRGYWxsYmFja0NoYXIAR2V0Q2hhckFkdmFuY2UASXNMb2FkZWQAR2V0RGVidWdOYW1lAENhbGNUZXh0U2l6ZUEAQ2FsY1dvcmRXcmFwUG9zaXRpb25BAFJlbmRlckNoYXIAdmlpaWZpaWkAaWlpZmlmAGlpaWZmZmlpaQA8dW5rbm93bj4AUEs2SW1Gb250AFBLMTFJbUZvbnRHbHlwaAAxMUltRm9udEdseXBoAFAxMkltRm9udENvbmZpZwAxMkltRm9udENvbmZpZwBQMTFJbUZvbnRHbHlwaABJbUZvbnRDb25maWcARHN0Rm9udABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShJbUZvbnRDb25maWcgJiwgZW1zY3JpcHRlbjo6dmFsKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShjb25zdCBJbUZvbnRDb25maWcgJikgY29uc3QAUEsxMkltRm9udENvbmZpZwBJbUZvbnRHbHlwaABDb2RlcG9pbnQAQWR2YW5jZVgAWDAAWTAAWDEAWTEAVTAAVjAAVTEAVjEASW1EcmF3RGF0YQBJdGVyYXRlRHJhd0xpc3RzAFZhbGlkAENtZExpc3RzQ291bnQAVG90YWxJZHhDb3VudABUb3RhbFZ0eENvdW50AERpc3BsYXlQb3MARGVJbmRleEFsbEJ1ZmZlcnMAU2NhbGVDbGlwUmVjdHMAUEsxMEltRHJhd0RhdGEAUEsxMEltRHJhd0xpc3QASW1EcmF3TGlzdABJdGVyYXRlRHJhd0NtZHMASWR4QnVmZmVyAFZ0eEJ1ZmZlcgBQdXNoQ2xpcFJlY3RGdWxsU2NyZWVuAFB1c2hUZXh0dXJlSUQAUG9wVGV4dHVyZUlEAEdldENsaXBSZWN0TWluAEdldENsaXBSZWN0TWF4AEFkZExpbmUAQWRkUmVjdABBZGRSZWN0RmlsbGVkAEFkZFJlY3RGaWxsZWRNdWx0aUNvbG9yAEFkZFF1YWQAQWRkUXVhZEZpbGxlZABBZGRUcmlhbmdsZQBBZGRUcmlhbmdsZUZpbGxlZABBZGRDaXJjbGUAQWRkQ2lyY2xlRmlsbGVkAEFkZFRleHRfQQBBZGRUZXh0X0IAQWRkSW1hZ2UAQWRkSW1hZ2VRdWFkAEFkZEltYWdlUm91bmRlZABBZGRQb2x5bGluZQBBZGRDb252ZXhQb2x5RmlsbGVkAEFkZEJlemllckN1cnZlAFBhdGhDbGVhcgBQYXRoTGluZVRvAFBhdGhMaW5lVG9NZXJnZUR1cGxpY2F0ZQBQYXRoRmlsbENvbnZleABQYXRoU3Ryb2tlAFBhdGhBcmNUbwBQYXRoQXJjVG9GYXN0AFBhdGhCZXppZXJDdXJ2ZVRvAFBhdGhSZWN0AENoYW5uZWxzU3BsaXQAQ2hhbm5lbHNNZXJnZQBDaGFubmVsc1NldEN1cnJlbnQAQWRkQ2FsbGJhY2sAQWRkRHJhd0NtZABDbGVhckZyZWVNZW1vcnkAUHJpbVJlc2VydmUAUHJpbVJlY3QAUHJpbVJlY3RVVgBQcmltUXVhZFVWAFByaW1Xcml0ZVZ0eABQcmltV3JpdGVJZHgAUHJpbVZ0eABVcGRhdGVDbGlwUmVjdABVcGRhdGVUZXh0dXJlSUQAdmlpaWlpaWlpaWlpAHZpaWlpZmkAdmlpaWZmZmkAdmlpaWlmAHZpaWlpaWlpZmkAdmlpaWlpaWlpZmkAdmlpaWlpaWlpaWlpaQB2aWlpZmlpaWZpADIzaW1wb3J0X21heWJlX251bGxfdmFsdWVJNkltVmVjNEUAdmlpaWZpaQB2aWlpZmlpZgB2aWlpaWlpAHZpaWlpaWlmAHZpaWlpaWlpZgB2aWlpaWlpaWkAdmlpaWlpZmkAdmlpaWlpZmlmAHZpaWlpaWYATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJY0VFAFBLOUltRHJhd0NtZAA5SW1EcmF3Q21kAEltRHJhd0NtZABFbGVtQ291bnQAQ2xpcFJlY3QAVGV4dHVyZUlkAFA5SW1EcmF3Q21kAEltR3VpTGlzdENsaXBwZXIAU3RhcnRQb3NZAEl0ZW1zSGVpZ2h0AEl0ZW1zQ291bnQAU3RlcE5vAERpc3BsYXlTdGFydABEaXNwbGF5RW5kAFN0ZXAAUDE2SW1HdWlMaXN0Q2xpcHBlcgAxNkltR3VpTGlzdENsaXBwZXIAdmlpaWYAUEsxNkltR3VpTGlzdENsaXBwZXIASW1HdWlTaXplQ2FsbGJhY2tEYXRhAFBvcwBDdXJyZW50U2l6ZQBEZXNpcmVkU2l6ZQBQSzIxSW1HdWlTaXplQ2FsbGJhY2tEYXRhAEltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAEV2ZW50RmxhZwBFdmVudENoYXIARXZlbnRLZXkAQnVmAEJ1ZlRleHRMZW4AQnVmU2l6ZQBCdWZEaXJ0eQBDdXJzb3JQb3MAU2VsZWN0aW9uU3RhcnQAU2VsZWN0aW9uRW5kAERlbGV0ZUNoYXJzAEluc2VydENoYXJzAEhhc1NlbGVjdGlvbgBQSzI2SW1HdWlJbnB1dFRleHRDYWxsYmFja0RhdGEASW1WZWM0AFNldABDb3B5AEVxdWFscwBJbVZlYzIAUDZJbVZlYzIAV3JhcEltR3VpQ29udGV4dABQSzE2V3JhcEltR3VpQ29udGV4dABtYWxsaW5mbwBhcmVuYQBvcmRibGtzAHNtYmxrcwBoYmxrcwBoYmxraGQAdXNtYmxrcwBmc21ibGtzAHVvcmRibGtzAGZvcmRibGtzAGtlZXBjb3N0AHZvaWQAYm9vbABzdGQ6OnN0cmluZwBzdGQ6OmJhc2ljX3N0cmluZzx1bnNpZ25lZCBjaGFyPgBzdGQ6OndzdHJpbmcAZW1zY3JpcHRlbjo6dmFsAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgc2hvcnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgaW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludDE2X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQzMl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZyBkb3VibGU+AE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SWVFRQBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxkb3VibGU+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBsb25nPgBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0ltRUUAZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZz4ATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJbEVFAE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SXRFRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lzRUUATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJYUVFAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGNoYXI+AE5TdDNfXzIxMmJhc2ljX3N0cmluZ0l3TlNfMTFjaGFyX3RyYWl0c0l3RUVOU185YWxsb2NhdG9ySXdFRUVFAE5TdDNfXzIxMmJhc2ljX3N0cmluZ0loTlNfMTFjaGFyX3RyYWl0c0loRUVOU185YWxsb2NhdG9ySWhFRUVFAGRvdWJsZQBmbG9hdAB1bnNpZ25lZCBsb25nAGxvbmcAdW5zaWduZWQgaW50AGludAB1bnNpZ25lZCBzaG9ydABzaG9ydAB1bnNpZ25lZCBjaGFyAHNpZ25lZCBjaGFyAGNoYXIAAAECBAcDBgUALSsgICAwWDB4AChudWxsKQAtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBOQU4ALgBpbmZpbml0eQBuYW4AcndhAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXM6ICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXMAdGVybWluYXRpbmcgd2l0aCAlcyBmb3JlaWduIGV4Y2VwdGlvbgB0ZXJtaW5hdGluZwB1bmNhdWdodABTdDlleGNlcHRpb24ATjEwX19jeHhhYml2MTE2X19zaGltX3R5cGVfaW5mb0UAU3Q5dHlwZV9pbmZvAE4xMF9fY3h4YWJpdjEyMF9fc2lfY2xhc3NfdHlwZV9pbmZvRQBOMTBfX2N4eGFiaXYxMTdfX2NsYXNzX3R5cGVfaW5mb0UAcHRocmVhZF9vbmNlIGZhaWx1cmUgaW4gX19jeGFfZ2V0X2dsb2JhbHNfZmFzdCgpAGNhbm5vdCBjcmVhdGUgcHRocmVhZCBrZXkgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAY2Fubm90IHplcm8gb3V0IHRocmVhZCB2YWx1ZSBmb3IgX19jeGFfZ2V0X2dsb2JhbHMoKQB0ZXJtaW5hdGVfaGFuZGxlciB1bmV4cGVjdGVkbHkgcmV0dXJuZWQAU3QxMWxvZ2ljX2Vycm9yAFN0MTJsZW5ndGhfZXJyb3IATjEwX19jeHhhYml2MTE5X19wb2ludGVyX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19wYmFzZV90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjEyM19fZnVuZGFtZW50YWxfdHlwZV9pbmZvRQB2AFB2AERuAGIAYwBoAGEAcwB0AGkAagBsAG0AZgBkAE4xMF9fY3h4YWJpdjEyMV9fdm1pX2NsYXNzX3R5cGVfaW5mb0U=";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile);}function getBinary(){try{if(Module["wasmBinary"]){return new Uint8Array(Module["wasmBinary"])}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(Module["readBinary"]){return Module["readBinary"](wasmBinaryFile)}else{throw"both async and sync fetching of the wasm failed"}}catch(err){abort(err);}}function getBinaryPromise(){if(!Module["wasmBinary"]&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch==="function"){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()})}return new Promise(function(resolve,reject){resolve(getBinary());})}function createWasm(env){var info={"env":env,"global":{"NaN":NaN,Infinity:Infinity},"global.Math":Math,"asm2wasm":asm2wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;removeRunDependency();}addRunDependency();function receiveInstantiatedSource(output){receiveInstance(output["instance"]);}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason);})}function instantiateAsync(){if(!Module["wasmBinary"]&&typeof WebAssembly.instantiateStreaming==="function"&&!isDataURI(wasmBinaryFile)&&typeof fetch==="function"){return WebAssembly.instantiateStreaming(fetch(wasmBinaryFile,{credentials:"same-origin"}),info).then(receiveInstantiatedSource,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");instantiateArrayBuffer(receiveInstantiatedSource);})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module["instantiateWasm"]){try{return Module["instantiateWasm"](info,receiveInstance)}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}}instantiateAsync();return {}}Module["asm"]=function(global,env,providedBuffer){env["memory"]=wasmMemory;env["table"]=wasmTable=new WebAssembly.Table({"initial":1442,"maximum":1442,"element":"anyfunc"});env["__memory_base"]=1024;env["__table_base"]=0;var exports=createWasm(env);return exports};__ATINIT__.push({func:function(){globalCtors();}});function ___cxa_allocate_exception(size){return _malloc(size)}function ___cxa_throw(ptr,type,destructor){throw ptr}function ___lock(){}var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0;}else{buffer.push(curr);}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get();}};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall145(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();return SYSCALLS.doReadv(stream,iov,iovcnt)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j>2]=value;return value}function ___syscall221(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___unlock(){}function getShiftFromSize(size){switch(size){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError("Unknown type size: "+size)}}function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<256;++i){codes[i]=String.fromCharCode(i);}embind_charCodes=codes;}var embind_charCodes=undefined;function readLatin1String(ptr){var ret="";var c=ptr;while(HEAPU8[c]){ret+=embind_charCodes[HEAPU8[c++]];}return ret}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return "_unknown"}name=name.replace(/[^a-zA-Z0-9_]/g,"$");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return "_"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return new Function("body","return function "+name+"() {\n"+' "use strict";'+" return body.apply(this, arguments);\n"+"};\n")(body)}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+"\n"+stack.replace(/^Error(:[^\n]*)?\n/,"");}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+": "+this.message}};return errorClass}var BindingError=undefined;function throwBindingError(message){throw new BindingError(message)}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes;});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError("Mismatched type converter count");}for(var i=0;i>shift])},destructorFunction:null});}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass;}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass;}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return {count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+" instance already deleted");}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr);}else{$$.ptrType.registeredClass.rawDestructor($$.ptr);}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$);}}function attachFinalizer(handle){if("undefined"===typeof FinalizationGroup){attachFinalizer=function(handle){return handle};return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn("object already deleted: "+$$.ptr);}else{releaseClassHandle($$);}}});attachFinalizer=function(handle){finalizationGroup.register(handle,handle.$$,handle.$$);return handle};detachFinalizer=function(handle){finalizationGroup.unregister(handle.$$);};return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined;}}function ClassHandle_isDeleted(){return !this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj["delete"]();}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes);}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype["isAliasOf"]=ClassHandle_isAliasOf;ClassHandle.prototype["clone"]=ClassHandle_clone;ClassHandle.prototype["delete"]=ClassHandle_delete;ClassHandle.prototype["isDeleted"]=ClassHandle_isDeleted;ClassHandle.prototype["deleteLater"]=ClassHandle_deleteLater;}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError("Function '"+humanName+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+proto[methodName].overloadTable+")!");}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc;}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError("Cannot register public name '"+name+"' twice");}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError("Cannot register multiple overloads of a function with the same number of arguments ("+numArguments+")!");}Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments;}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[];}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError("Expected null or instance of "+desiredClass.name+", got an instance of "+ptrClass.name);}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass;}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr);}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError("Passing raw pointer to smart pointer is illegal");}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{var clonedHandle=handle["clone"]();ptr=this.rawShare(ptr,__emval_register(function(){clonedHandle["delete"]();}));if(destructors!==null){destructors.push(this.rawDestructor,ptr);}}break;default:throwBindingError("Unsupporting sharing policy");}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+handle.$$.ptrType.name+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function simpleReadValueFromPointer(pointer){return this["fromWireType"](HEAPU32[pointer>>2])}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr);}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr);}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle["delete"]();}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k]);}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes);}}function init_embind(){Module["getInheritedInstanceCount"]=getInheritedInstanceCount;Module["getLiveInheritedInstances"]=getLiveInheritedInstances;Module["flushPendingDeletes"]=flushPendingDeletes;Module["setDelayFunction"]=setDelayFunction;}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError("ptr should not be undefined");}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass;}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError("makeClassHandle requires ptr and ptrType");}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError("Both smartPtrType and smartPtr must be specified");}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance["clone"]()}else{var rv=registeredInstance["clone"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType;}else{toType=registeredPointerRecord.pointerType;}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype["argPackAdvance"]=8;RegisteredPointer.prototype["readValueFromPointer"]=simpleReadValueFromPointer;RegisteredPointer.prototype["deleteObject"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype["fromWireType"]=RegisteredPointer_fromWireType;}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this["toWireType"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}else{this["toWireType"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}}else{this["toWireType"]=genericPointerToWireType;}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError("Replacing nonexistant public symbol");}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;Module[name].argCount=numArguments;}}function embind__requireFunction(signature,rawFunction){signature=readLatin1String(signature);function makeDynCaller(dynCall){var args=[];for(var i=1;i>2)+i]);}return array}function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr);}}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName="constructor "+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[];}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError("Cannot register multiple constructors with identical number of parameters ("+(argCount-1)+") for class '"+classType.name+"'! Overload resolution is currently only performed using the parameter count, not actual type info!")}classType.registeredClass.constructor_body[argCount-1]=function unboundTypeHandler(){throwUnboundTypeError("Cannot construct "+classType.name+" due to unbound types",rawArgTypes);};whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){classType.registeredClass.constructor_body[argCount-1]=function constructor_body(){if(arguments.length!==argCount-1){throwBindingError(humanName+" called with "+arguments.length+" arguments, expected "+(argCount-1));}var destructors=[];var args=new Array(argCount);args[0]=rawConstructor;for(var i=1;i0?", ":"")+argsListWired;}invokerFnBody+=(returns?"var rv = ":"")+"invoker(fn"+(argsListWired.length>0?", ":"")+argsListWired+");\n";if(needsDestructorStack){invokerFnBody+="runDestructors(destructors);\n";}else{for(var i=isClassMethodFunc?1:2;i4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle);}}function count_emval_handles(){var count=0;for(var i=5;i>2])};case 3:return function(pointer){return this["fromWireType"](HEAPF64[pointer>>3])};default:throw new TypeError("Unknown float type: "+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":function(value){return value},"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}return value},"argPackAdvance":8,"readValueFromPointer":floatReadValueFromPointer(name,shift),destructorFunction:null});}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError("Cannot call "+name+" due to unbound types",argTypes);},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return []});}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError("Unknown integer type: "+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295;}var shift=getShiftFromSize(size);var fromWireType=function(value){return value};if(minRange===0){var bitshift=32-8*size;fromWireType=function(value){return value<>>bitshift};}var isUnsignedType=name.indexOf("unsigned")!=-1;registerType(primitiveType,{name:name,"fromWireType":fromWireType,"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}if(valuemaxRange){throw new TypeError('Passing a number "'+_embind_repr(value)+'" from JS side to C/C++ side to an argument of type "'+name+'", which is outside the valid range ['+minRange+", "+maxRange+"]!")}return isUnsignedType?value>>>0:value|0},"argPackAdvance":8,"readValueFromPointer":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null});}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(heap["buffer"],data,size)}name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":decodeMemoryView,"argPackAdvance":8,"readValueFromPointer":decodeMemoryView},{ignoreDuplicateRegistrations:true});}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name==="std::string";registerType(rawType,{name:name,"fromWireType":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var endChar=HEAPU8[value+4+length];var endCharSwap=0;if(endChar!=0){endCharSwap=endChar;HEAPU8[value+4+length]=0;}var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(HEAPU8[currentBytePtr]==0){var stringSegment=UTF8ToString(decodeStartPtr);if(str===undefined)str=stringSegment;else{str+=String.fromCharCode(0);str+=stringSegment;}decodeStartPtr=currentBytePtr+1;}}if(endCharSwap!=0)HEAPU8[value+4+length]=endCharSwap;}else{var a=new Array(length);for(var i=0;i>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1);}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError("String has UTF-16 code units that do not fit in 8 bits");}HEAPU8[ptr+4+i]=charCode;}}else{for(var i=0;i>2];var a=new Array(length);var start=value+4>>shift;for(var i=0;i>2]=length;var start=ptr+4>>shift;for(var i=0;i>2]=rd;return returnType["toWireType"](destructors,handle)}function __emval_lookupTypes(argCount,argTypes,argWireTypes){var a=new Array(argCount);for(var i=0;i>2)+i],"parameter "+i);}return a}function __emval_call(handle,argCount,argTypes,argv){handle=requireHandle(handle);var types=__emval_lookupTypes(argCount,argTypes);var args=new Array(argCount);for(var i=0;i4){emval_handle_array[handle].refcount+=1;}}function __emval_new_array(){return __emval_register([])}function __emval_new_cstring(v){return __emval_register(getStringOrSymbol(v))}function __emval_new_object(){return __emval_register({})}function __emval_run_destructors(handle){var destructors=emval_handle_array[handle].value;runDestructors(destructors);__emval_decref(handle);}function __emval_set_property(handle,key,value){handle=requireHandle(handle);key=requireHandle(key);value=requireHandle(value);handle[key]=value;}function __emval_strictly_equals(first,second){first=requireHandle(first);second=requireHandle(second);return first===second}function __emval_take_value(type,argv){type=requireRegisteredType(type,"_emval_take_value");var v=type["readValueFromPointer"](argv);return __emval_register(v)}function __emval_typeof(handle){handle=requireHandle(handle);return __emval_register(typeof handle)}function _abort(){Module["abort"]();}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest);}function abortOnCannotGrowMemory(requestedSize){abort("OOM");}function _emscripten_resize_heap(requestedSize){abortOnCannotGrowMemory();}embind_init_charCodes();BindingError=Module["BindingError"]=extendError(Error,"BindingError");InternalError=Module["InternalError"]=extendError(Error,"InternalError");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module["UnboundTypeError"]=extendError(Error,"UnboundTypeError");init_emval();function intArrayToString(array){var ret=[];for(var i=0;i255){chr&=255;}ret.push(String.fromCharCode(chr));}return ret.join("")}var decodeBase64=typeof atob==="function"?atob:function(input){var keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2);}if(enc4!==64){output=output+String.fromCharCode(chr3);}}while(i0){return}preRun();if(runDependencies>0)return;if(Module["calledRun"])return;function doRun(){if(Module["calledRun"])return;Module["calledRun"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun();}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("");},1);doRun();},1);}else{doRun();}}Module["run"]=run;function abort(what){if(Module["onAbort"]){Module["onAbort"](what);}if(what!==undefined){out(what);err(what);what=JSON.stringify(what);}else{what="";}ABORT=true;throw"abort("+what+"). Build with -s ASSERTIONS=1 for more info."}Module["abort"]=abort;if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()();}}Module["noExitRuntime"]=true;run(); + + + return Module +} +); +})(); +module.exports = Module; +}); + +let bind; +const IMGUI_VERSION = "1.71"; // bind.IMGUI_VERSION; +// #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert)) +function IMGUI_CHECKVERSION() { return DebugCheckVersionAndDataLayout(IMGUI_VERSION, bind.ImGuiIOSize, bind.ImGuiStyleSize, bind.ImVec2Size, bind.ImVec4Size, bind.ImDrawVertSize, bind.ImDrawIdxSize); } +function IM_ASSERT(_EXPR) { if (!_EXPR) { + throw new Error(); +} } +function IM_ARRAYSIZE(_ARR) { + if (_ARR instanceof ImStringBuffer) { + return _ARR.size; + } + else { + return _ARR.length; + } +} +class ImStringBuffer { + constructor(size, buffer = "") { + this.size = size; + this.buffer = buffer; + } +} +var ImGuiWindowFlags; +(function (ImGuiWindowFlags) { + ImGuiWindowFlags[ImGuiWindowFlags["None"] = 0] = "None"; + ImGuiWindowFlags[ImGuiWindowFlags["NoTitleBar"] = 1] = "NoTitleBar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoResize"] = 2] = "NoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMove"] = 4] = "NoMove"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollbar"] = 8] = "NoScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollWithMouse"] = 16] = "NoScrollWithMouse"; + ImGuiWindowFlags[ImGuiWindowFlags["NoCollapse"] = 32] = "NoCollapse"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysAutoResize"] = 64] = "AlwaysAutoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBackground"] = 128] = "NoBackground"; + ImGuiWindowFlags[ImGuiWindowFlags["NoSavedSettings"] = 256] = "NoSavedSettings"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMouseInputs"] = 512] = "NoMouseInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["MenuBar"] = 1024] = "MenuBar"; + ImGuiWindowFlags[ImGuiWindowFlags["HorizontalScrollbar"] = 2048] = "HorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoFocusOnAppearing"] = 4096] = "NoFocusOnAppearing"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBringToFrontOnFocus"] = 8192] = "NoBringToFrontOnFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysVerticalScrollbar"] = 16384] = "AlwaysVerticalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysHorizontalScrollbar"] = 32768] = "AlwaysHorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysUseWindowPadding"] = 65536] = "AlwaysUseWindowPadding"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavInputs"] = 262144] = "NoNavInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavFocus"] = 524288] = "NoNavFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["UnsavedDocument"] = 1048576] = "UnsavedDocument"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNav"] = 786432] = "NoNav"; + ImGuiWindowFlags[ImGuiWindowFlags["NoDecoration"] = 43] = "NoDecoration"; + ImGuiWindowFlags[ImGuiWindowFlags["NoInputs"] = 786944] = "NoInputs"; + // [Internal] + ImGuiWindowFlags[ImGuiWindowFlags["NavFlattened"] = 8388608] = "NavFlattened"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildWindow"] = 16777216] = "ChildWindow"; + ImGuiWindowFlags[ImGuiWindowFlags["Tooltip"] = 33554432] = "Tooltip"; + ImGuiWindowFlags[ImGuiWindowFlags["Popup"] = 67108864] = "Popup"; + ImGuiWindowFlags[ImGuiWindowFlags["Modal"] = 134217728] = "Modal"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildMenu"] = 268435456] = "ChildMenu"; +})(ImGuiWindowFlags || (ImGuiWindowFlags = {})); +var ImGuiInputTextFlags; +(function (ImGuiInputTextFlags) { + ImGuiInputTextFlags[ImGuiInputTextFlags["None"] = 0] = "None"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsDecimal"] = 1] = "CharsDecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsHexadecimal"] = 2] = "CharsHexadecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsUppercase"] = 4] = "CharsUppercase"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsNoBlank"] = 8] = "CharsNoBlank"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AutoSelectAll"] = 16] = "AutoSelectAll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["EnterReturnsTrue"] = 32] = "EnterReturnsTrue"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCompletion"] = 64] = "CallbackCompletion"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackHistory"] = 128] = "CallbackHistory"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackAlways"] = 256] = "CallbackAlways"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCharFilter"] = 512] = "CallbackCharFilter"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AllowTabInput"] = 1024] = "AllowTabInput"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CtrlEnterForNewLine"] = 2048] = "CtrlEnterForNewLine"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoHorizontalScroll"] = 4096] = "NoHorizontalScroll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AlwaysInsertMode"] = 8192] = "AlwaysInsertMode"; + ImGuiInputTextFlags[ImGuiInputTextFlags["ReadOnly"] = 16384] = "ReadOnly"; + ImGuiInputTextFlags[ImGuiInputTextFlags["Password"] = 32768] = "Password"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoUndoRedo"] = 65536] = "NoUndoRedo"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsScientific"] = 131072] = "CharsScientific"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackResize"] = 262144] = "CallbackResize"; + // [Internal] + ImGuiInputTextFlags[ImGuiInputTextFlags["Multiline"] = 1048576] = "Multiline"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoMarkEdited"] = 2097152] = "NoMarkEdited"; +})(ImGuiInputTextFlags || (ImGuiInputTextFlags = {})); +var ImGuiTreeNodeFlags; +(function (ImGuiTreeNodeFlags) { + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["None"] = 0] = "None"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Selected"] = 1] = "Selected"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Framed"] = 2] = "Framed"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["AllowItemOverlap"] = 4] = "AllowItemOverlap"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoTreePushOnOpen"] = 8] = "NoTreePushOnOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoAutoOpenOnLog"] = 16] = "NoAutoOpenOnLog"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["DefaultOpen"] = 32] = "DefaultOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnDoubleClick"] = 64] = "OpenOnDoubleClick"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnArrow"] = 128] = "OpenOnArrow"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Leaf"] = 256] = "Leaf"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Bullet"] = 512] = "Bullet"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["FramePadding"] = 1024] = "FramePadding"; + //SpanAllAvailWidth = 1 << 11, // FIXME: TODO: Extend hit box horizontally even if not framed + //NoScrollOnOpen = 1 << 12, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NavLeftJumpsBackHere"] = 8192] = "NavLeftJumpsBackHere"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["CollapsingHeader"] = 26] = "CollapsingHeader"; +})(ImGuiTreeNodeFlags || (ImGuiTreeNodeFlags = {})); +var ImGuiSelectableFlags; +(function (ImGuiSelectableFlags) { + ImGuiSelectableFlags[ImGuiSelectableFlags["None"] = 0] = "None"; + ImGuiSelectableFlags[ImGuiSelectableFlags["DontClosePopups"] = 1] = "DontClosePopups"; + ImGuiSelectableFlags[ImGuiSelectableFlags["SpanAllColumns"] = 2] = "SpanAllColumns"; + ImGuiSelectableFlags[ImGuiSelectableFlags["AllowDoubleClick"] = 4] = "AllowDoubleClick"; + ImGuiSelectableFlags[ImGuiSelectableFlags["Disabled"] = 8] = "Disabled"; // Cannot be selected, display greyed out text +})(ImGuiSelectableFlags || (ImGuiSelectableFlags = {})); +var ImGuiComboFlags; +(function (ImGuiComboFlags) { + ImGuiComboFlags[ImGuiComboFlags["None"] = 0] = "None"; + ImGuiComboFlags[ImGuiComboFlags["PopupAlignLeft"] = 1] = "PopupAlignLeft"; + ImGuiComboFlags[ImGuiComboFlags["HeightSmall"] = 2] = "HeightSmall"; + ImGuiComboFlags[ImGuiComboFlags["HeightRegular"] = 4] = "HeightRegular"; + ImGuiComboFlags[ImGuiComboFlags["HeightLarge"] = 8] = "HeightLarge"; + ImGuiComboFlags[ImGuiComboFlags["HeightLargest"] = 16] = "HeightLargest"; + ImGuiComboFlags[ImGuiComboFlags["NoArrowButton"] = 32] = "NoArrowButton"; + ImGuiComboFlags[ImGuiComboFlags["NoPreview"] = 64] = "NoPreview"; + ImGuiComboFlags[ImGuiComboFlags["HeightMask_"] = 30] = "HeightMask_"; +})(ImGuiComboFlags || (ImGuiComboFlags = {})); +var ImGuiTabBarFlags; +(function (ImGuiTabBarFlags) { + ImGuiTabBarFlags[ImGuiTabBarFlags["None"] = 0] = "None"; + ImGuiTabBarFlags[ImGuiTabBarFlags["Reorderable"] = 1] = "Reorderable"; + ImGuiTabBarFlags[ImGuiTabBarFlags["AutoSelectNewTabs"] = 2] = "AutoSelectNewTabs"; + ImGuiTabBarFlags[ImGuiTabBarFlags["TabListPopupButton"] = 4] = "TabListPopupButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoCloseWithMiddleMouseButton"] = 8] = "NoCloseWithMiddleMouseButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTabListScrollingButtons"] = 16] = "NoTabListScrollingButtons"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTooltip"] = 32] = "NoTooltip"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyResizeDown"] = 64] = "FittingPolicyResizeDown"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyScroll"] = 128] = "FittingPolicyScroll"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyMask_"] = 192] = "FittingPolicyMask_"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyDefault_"] = 64] = "FittingPolicyDefault_"; +})(ImGuiTabBarFlags || (ImGuiTabBarFlags = {})); +var ImGuiTabItemFlags; +(function (ImGuiTabItemFlags) { + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_None"] = 0] = "ImGuiTabItemFlags_None"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_UnsavedDocument"] = 1] = "ImGuiTabItemFlags_UnsavedDocument"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_SetSelected"] = 2] = "ImGuiTabItemFlags_SetSelected"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"] = 4] = "ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoPushId"] = 8] = "ImGuiTabItemFlags_NoPushId"; // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem() +})(ImGuiTabItemFlags || (ImGuiTabItemFlags = {})); +var ImGuiFocusedFlags; +(function (ImGuiFocusedFlags) { + ImGuiFocusedFlags[ImGuiFocusedFlags["None"] = 0] = "None"; + ImGuiFocusedFlags[ImGuiFocusedFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiFocusedFlags || (ImGuiFocusedFlags = {})); +var ImGuiHoveredFlags; +(function (ImGuiHoveredFlags) { + ImGuiHoveredFlags[ImGuiHoveredFlags["None"] = 0] = "None"; + ImGuiHoveredFlags[ImGuiHoveredFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByPopup"] = 8] = "AllowWhenBlockedByPopup"; + //AllowWhenBlockedByModal = 1 << 4, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet. + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByActiveItem"] = 32] = "AllowWhenBlockedByActiveItem"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenOverlapped"] = 64] = "AllowWhenOverlapped"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenDisabled"] = 128] = "AllowWhenDisabled"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RectOnly"] = 104] = "RectOnly"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiHoveredFlags || (ImGuiHoveredFlags = {})); +var ImGuiDragDropFlags; +(function (ImGuiDragDropFlags) { + // BeginDragDropSource() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["None"] = 0] = "None"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoPreviewTooltip"] = 1] = "SourceNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoDisableHover"] = 2] = "SourceNoDisableHover"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoHoldToOpenOthers"] = 4] = "SourceNoHoldToOpenOthers"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAllowNullID"] = 8] = "SourceAllowNullID"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceExtern"] = 16] = "SourceExtern"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAutoExpirePayload"] = 32] = "SourceAutoExpirePayload"; + // AcceptDragDropPayload() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptBeforeDelivery"] = 1024] = "AcceptBeforeDelivery"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoDrawDefaultRect"] = 2048] = "AcceptNoDrawDefaultRect"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoPreviewTooltip"] = 4096] = "AcceptNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptPeekOnly"] = 3072] = "AcceptPeekOnly"; +})(ImGuiDragDropFlags || (ImGuiDragDropFlags = {})); +var ImGuiDataType; +(function (ImGuiDataType) { + ImGuiDataType[ImGuiDataType["S8"] = 0] = "S8"; + ImGuiDataType[ImGuiDataType["U8"] = 1] = "U8"; + ImGuiDataType[ImGuiDataType["S16"] = 2] = "S16"; + ImGuiDataType[ImGuiDataType["U16"] = 3] = "U16"; + ImGuiDataType[ImGuiDataType["S32"] = 4] = "S32"; + ImGuiDataType[ImGuiDataType["U32"] = 5] = "U32"; + ImGuiDataType[ImGuiDataType["S64"] = 6] = "S64"; + ImGuiDataType[ImGuiDataType["U64"] = 7] = "U64"; + ImGuiDataType[ImGuiDataType["Float"] = 8] = "Float"; + ImGuiDataType[ImGuiDataType["Double"] = 9] = "Double"; + ImGuiDataType[ImGuiDataType["COUNT"] = 10] = "COUNT"; +})(ImGuiDataType || (ImGuiDataType = {})); +var ImGuiDir; +(function (ImGuiDir) { + ImGuiDir[ImGuiDir["None"] = -1] = "None"; + ImGuiDir[ImGuiDir["Left"] = 0] = "Left"; + ImGuiDir[ImGuiDir["Right"] = 1] = "Right"; + ImGuiDir[ImGuiDir["Up"] = 2] = "Up"; + ImGuiDir[ImGuiDir["Down"] = 3] = "Down"; + ImGuiDir[ImGuiDir["COUNT"] = 4] = "COUNT"; +})(ImGuiDir || (ImGuiDir = {})); +var ImGuiKey; +(function (ImGuiKey) { + ImGuiKey[ImGuiKey["Tab"] = 0] = "Tab"; + ImGuiKey[ImGuiKey["LeftArrow"] = 1] = "LeftArrow"; + ImGuiKey[ImGuiKey["RightArrow"] = 2] = "RightArrow"; + ImGuiKey[ImGuiKey["UpArrow"] = 3] = "UpArrow"; + ImGuiKey[ImGuiKey["DownArrow"] = 4] = "DownArrow"; + ImGuiKey[ImGuiKey["PageUp"] = 5] = "PageUp"; + ImGuiKey[ImGuiKey["PageDown"] = 6] = "PageDown"; + ImGuiKey[ImGuiKey["Home"] = 7] = "Home"; + ImGuiKey[ImGuiKey["End"] = 8] = "End"; + ImGuiKey[ImGuiKey["Insert"] = 9] = "Insert"; + ImGuiKey[ImGuiKey["Delete"] = 10] = "Delete"; + ImGuiKey[ImGuiKey["Backspace"] = 11] = "Backspace"; + ImGuiKey[ImGuiKey["Space"] = 12] = "Space"; + ImGuiKey[ImGuiKey["Enter"] = 13] = "Enter"; + ImGuiKey[ImGuiKey["Escape"] = 14] = "Escape"; + ImGuiKey[ImGuiKey["A"] = 15] = "A"; + ImGuiKey[ImGuiKey["C"] = 16] = "C"; + ImGuiKey[ImGuiKey["V"] = 17] = "V"; + ImGuiKey[ImGuiKey["X"] = 18] = "X"; + ImGuiKey[ImGuiKey["Y"] = 19] = "Y"; + ImGuiKey[ImGuiKey["Z"] = 20] = "Z"; + ImGuiKey[ImGuiKey["COUNT"] = 21] = "COUNT"; +})(ImGuiKey || (ImGuiKey = {})); +var ImGuiNavInput; +(function (ImGuiNavInput) { + // Gamepad Mapping + ImGuiNavInput[ImGuiNavInput["Activate"] = 0] = "Activate"; + ImGuiNavInput[ImGuiNavInput["Cancel"] = 1] = "Cancel"; + ImGuiNavInput[ImGuiNavInput["Input"] = 2] = "Input"; + ImGuiNavInput[ImGuiNavInput["Menu"] = 3] = "Menu"; + ImGuiNavInput[ImGuiNavInput["DpadLeft"] = 4] = "DpadLeft"; + ImGuiNavInput[ImGuiNavInput["DpadRight"] = 5] = "DpadRight"; + ImGuiNavInput[ImGuiNavInput["DpadUp"] = 6] = "DpadUp"; + ImGuiNavInput[ImGuiNavInput["DpadDown"] = 7] = "DpadDown"; + ImGuiNavInput[ImGuiNavInput["LStickLeft"] = 8] = "LStickLeft"; + ImGuiNavInput[ImGuiNavInput["LStickRight"] = 9] = "LStickRight"; + ImGuiNavInput[ImGuiNavInput["LStickUp"] = 10] = "LStickUp"; + ImGuiNavInput[ImGuiNavInput["LStickDown"] = 11] = "LStickDown"; + ImGuiNavInput[ImGuiNavInput["FocusPrev"] = 12] = "FocusPrev"; + ImGuiNavInput[ImGuiNavInput["FocusNext"] = 13] = "FocusNext"; + ImGuiNavInput[ImGuiNavInput["TweakSlow"] = 14] = "TweakSlow"; + ImGuiNavInput[ImGuiNavInput["TweakFast"] = 15] = "TweakFast"; + // [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them. + // Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) may be directly reading from io.KeyDown[] instead of io.NavInputs[]. + ImGuiNavInput[ImGuiNavInput["KeyMenu_"] = 16] = "KeyMenu_"; + ImGuiNavInput[ImGuiNavInput["KeyTab_"] = 17] = "KeyTab_"; + ImGuiNavInput[ImGuiNavInput["KeyLeft_"] = 18] = "KeyLeft_"; + ImGuiNavInput[ImGuiNavInput["KeyRight_"] = 19] = "KeyRight_"; + ImGuiNavInput[ImGuiNavInput["KeyUp_"] = 20] = "KeyUp_"; + ImGuiNavInput[ImGuiNavInput["KeyDown_"] = 21] = "KeyDown_"; + ImGuiNavInput[ImGuiNavInput["COUNT"] = 22] = "COUNT"; + ImGuiNavInput[ImGuiNavInput["InternalStart_"] = 16] = "InternalStart_"; +})(ImGuiNavInput || (ImGuiNavInput = {})); +var ImGuiConfigFlags; +(function (ImGuiConfigFlags) { + ImGuiConfigFlags[ImGuiConfigFlags["None"] = 0] = "None"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableKeyboard"] = 1] = "NavEnableKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableGamepad"] = 2] = "NavEnableGamepad"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableSetMousePos"] = 4] = "NavEnableSetMousePos"; + ImGuiConfigFlags[ImGuiConfigFlags["NavNoCaptureKeyboard"] = 8] = "NavNoCaptureKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouse"] = 16] = "NoMouse"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouseCursorChange"] = 32] = "NoMouseCursorChange"; + ImGuiConfigFlags[ImGuiConfigFlags["IsSRGB"] = 1048576] = "IsSRGB"; + ImGuiConfigFlags[ImGuiConfigFlags["IsTouchScreen"] = 2097152] = "IsTouchScreen"; // Application is using a touch screen instead of a mouse. +})(ImGuiConfigFlags || (ImGuiConfigFlags = {})); +var ImGuiCol; +(function (ImGuiCol) { + ImGuiCol[ImGuiCol["Text"] = 0] = "Text"; + ImGuiCol[ImGuiCol["TextDisabled"] = 1] = "TextDisabled"; + ImGuiCol[ImGuiCol["WindowBg"] = 2] = "WindowBg"; + ImGuiCol[ImGuiCol["ChildBg"] = 3] = "ChildBg"; + ImGuiCol[ImGuiCol["PopupBg"] = 4] = "PopupBg"; + ImGuiCol[ImGuiCol["Border"] = 5] = "Border"; + ImGuiCol[ImGuiCol["BorderShadow"] = 6] = "BorderShadow"; + ImGuiCol[ImGuiCol["FrameBg"] = 7] = "FrameBg"; + ImGuiCol[ImGuiCol["FrameBgHovered"] = 8] = "FrameBgHovered"; + ImGuiCol[ImGuiCol["FrameBgActive"] = 9] = "FrameBgActive"; + ImGuiCol[ImGuiCol["TitleBg"] = 10] = "TitleBg"; + ImGuiCol[ImGuiCol["TitleBgActive"] = 11] = "TitleBgActive"; + ImGuiCol[ImGuiCol["TitleBgCollapsed"] = 12] = "TitleBgCollapsed"; + ImGuiCol[ImGuiCol["MenuBarBg"] = 13] = "MenuBarBg"; + ImGuiCol[ImGuiCol["ScrollbarBg"] = 14] = "ScrollbarBg"; + ImGuiCol[ImGuiCol["ScrollbarGrab"] = 15] = "ScrollbarGrab"; + ImGuiCol[ImGuiCol["ScrollbarGrabHovered"] = 16] = "ScrollbarGrabHovered"; + ImGuiCol[ImGuiCol["ScrollbarGrabActive"] = 17] = "ScrollbarGrabActive"; + ImGuiCol[ImGuiCol["CheckMark"] = 18] = "CheckMark"; + ImGuiCol[ImGuiCol["SliderGrab"] = 19] = "SliderGrab"; + ImGuiCol[ImGuiCol["SliderGrabActive"] = 20] = "SliderGrabActive"; + ImGuiCol[ImGuiCol["Button"] = 21] = "Button"; + ImGuiCol[ImGuiCol["ButtonHovered"] = 22] = "ButtonHovered"; + ImGuiCol[ImGuiCol["ButtonActive"] = 23] = "ButtonActive"; + ImGuiCol[ImGuiCol["Header"] = 24] = "Header"; + ImGuiCol[ImGuiCol["HeaderHovered"] = 25] = "HeaderHovered"; + ImGuiCol[ImGuiCol["HeaderActive"] = 26] = "HeaderActive"; + ImGuiCol[ImGuiCol["Separator"] = 27] = "Separator"; + ImGuiCol[ImGuiCol["SeparatorHovered"] = 28] = "SeparatorHovered"; + ImGuiCol[ImGuiCol["SeparatorActive"] = 29] = "SeparatorActive"; + ImGuiCol[ImGuiCol["ResizeGrip"] = 30] = "ResizeGrip"; + ImGuiCol[ImGuiCol["ResizeGripHovered"] = 31] = "ResizeGripHovered"; + ImGuiCol[ImGuiCol["ResizeGripActive"] = 32] = "ResizeGripActive"; + ImGuiCol[ImGuiCol["Tab"] = 33] = "Tab"; + ImGuiCol[ImGuiCol["TabHovered"] = 34] = "TabHovered"; + ImGuiCol[ImGuiCol["TabActive"] = 35] = "TabActive"; + ImGuiCol[ImGuiCol["TabUnfocused"] = 36] = "TabUnfocused"; + ImGuiCol[ImGuiCol["TabUnfocusedActive"] = 37] = "TabUnfocusedActive"; + ImGuiCol[ImGuiCol["PlotLines"] = 38] = "PlotLines"; + ImGuiCol[ImGuiCol["PlotLinesHovered"] = 39] = "PlotLinesHovered"; + ImGuiCol[ImGuiCol["PlotHistogram"] = 40] = "PlotHistogram"; + ImGuiCol[ImGuiCol["PlotHistogramHovered"] = 41] = "PlotHistogramHovered"; + ImGuiCol[ImGuiCol["TextSelectedBg"] = 42] = "TextSelectedBg"; + ImGuiCol[ImGuiCol["DragDropTarget"] = 43] = "DragDropTarget"; + ImGuiCol[ImGuiCol["NavHighlight"] = 44] = "NavHighlight"; + ImGuiCol[ImGuiCol["NavWindowingHighlight"] = 45] = "NavWindowingHighlight"; + ImGuiCol[ImGuiCol["NavWindowingDimBg"] = 46] = "NavWindowingDimBg"; + ImGuiCol[ImGuiCol["ModalWindowDimBg"] = 47] = "ModalWindowDimBg"; + ImGuiCol[ImGuiCol["COUNT"] = 48] = "COUNT"; +})(ImGuiCol || (ImGuiCol = {})); +var ImGuiStyleVar; +(function (ImGuiStyleVar) { + // Enum name ......................// Member in ImGuiStyle structure (see ImGuiStyle for descriptions) + ImGuiStyleVar[ImGuiStyleVar["Alpha"] = 0] = "Alpha"; + ImGuiStyleVar[ImGuiStyleVar["WindowPadding"] = 1] = "WindowPadding"; + ImGuiStyleVar[ImGuiStyleVar["WindowRounding"] = 2] = "WindowRounding"; + ImGuiStyleVar[ImGuiStyleVar["WindowBorderSize"] = 3] = "WindowBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowMinSize"] = 4] = "WindowMinSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowTitleAlign"] = 5] = "WindowTitleAlign"; + // WindowMenuButtonPosition, // ImGuiDir WindowMenuButtonPosition + ImGuiStyleVar[ImGuiStyleVar["ChildRounding"] = 6] = "ChildRounding"; + ImGuiStyleVar[ImGuiStyleVar["ChildBorderSize"] = 7] = "ChildBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["PopupRounding"] = 8] = "PopupRounding"; + ImGuiStyleVar[ImGuiStyleVar["PopupBorderSize"] = 9] = "PopupBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["FramePadding"] = 10] = "FramePadding"; + ImGuiStyleVar[ImGuiStyleVar["FrameRounding"] = 11] = "FrameRounding"; + ImGuiStyleVar[ImGuiStyleVar["FrameBorderSize"] = 12] = "FrameBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["ItemSpacing"] = 13] = "ItemSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ItemInnerSpacing"] = 14] = "ItemInnerSpacing"; + ImGuiStyleVar[ImGuiStyleVar["IndentSpacing"] = 15] = "IndentSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarSize"] = 16] = "ScrollbarSize"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarRounding"] = 17] = "ScrollbarRounding"; + ImGuiStyleVar[ImGuiStyleVar["GrabMinSize"] = 18] = "GrabMinSize"; + ImGuiStyleVar[ImGuiStyleVar["GrabRounding"] = 19] = "GrabRounding"; + ImGuiStyleVar[ImGuiStyleVar["TabRounding"] = 20] = "TabRounding"; + ImGuiStyleVar[ImGuiStyleVar["ButtonTextAlign"] = 21] = "ButtonTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["SelectableTextAlign"] = 22] = "SelectableTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["Count_"] = 23] = "Count_"; + ImGuiStyleVar[ImGuiStyleVar["COUNT"] = 23] = "COUNT"; +})(ImGuiStyleVar || (ImGuiStyleVar = {})); +var ImGuiBackendFlags; +(function (ImGuiBackendFlags) { + ImGuiBackendFlags[ImGuiBackendFlags["None"] = 0] = "None"; + ImGuiBackendFlags[ImGuiBackendFlags["HasGamepad"] = 1] = "HasGamepad"; + ImGuiBackendFlags[ImGuiBackendFlags["HasMouseCursors"] = 2] = "HasMouseCursors"; + ImGuiBackendFlags[ImGuiBackendFlags["HasSetMousePos"] = 4] = "HasSetMousePos"; + ImGuiBackendFlags[ImGuiBackendFlags["RendererHasVtxOffset"] = 8] = "RendererHasVtxOffset"; +})(ImGuiBackendFlags || (ImGuiBackendFlags = {})); +var ImGuiColorEditFlags; +(function (ImGuiColorEditFlags) { + ImGuiColorEditFlags[ImGuiColorEditFlags["None"] = 0] = "None"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoAlpha"] = 2] = "NoAlpha"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoPicker"] = 4] = "NoPicker"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoOptions"] = 8] = "NoOptions"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSmallPreview"] = 16] = "NoSmallPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoInputs"] = 32] = "NoInputs"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoTooltip"] = 64] = "NoTooltip"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoLabel"] = 128] = "NoLabel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSidePreview"] = 256] = "NoSidePreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoDragDrop"] = 512] = "NoDragDrop"; + // User Options (right-click on widget to change some of them). You can set application defaults using SetColorEditOptions(). The idea is that you probably don't want to override them in most of your calls, let the user choose and/or call SetColorEditOptions() during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaBar"] = 65536] = "AlphaBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreview"] = 131072] = "AlphaPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreviewHalf"] = 262144] = "AlphaPreviewHalf"; + ImGuiColorEditFlags[ImGuiColorEditFlags["HDR"] = 524288] = "HDR"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayRGB"] = 1048576] = "DisplayRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHSV"] = 2097152] = "DisplayHSV"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHex"] = 4194304] = "DisplayHex"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Uint8"] = 8388608] = "Uint8"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Float"] = 16777216] = "Float"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueBar"] = 33554432] = "PickerHueBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueWheel"] = 67108864] = "PickerHueWheel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputRGB"] = 134217728] = "InputRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputHSV"] = 268435456] = "InputHSV"; + // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to + // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["_OptionsDefault"] = 177209344] = "_OptionsDefault"; + // [Internal] Masks + ImGuiColorEditFlags[ImGuiColorEditFlags["_DisplayMask"] = 7340032] = "_DisplayMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_DataTypeMask"] = 25165824] = "_DataTypeMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_PickerMask"] = 100663296] = "_PickerMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_InputMask"] = 402653184] = "_InputMask"; +})(ImGuiColorEditFlags || (ImGuiColorEditFlags = {})); +var ImGuiMouseCursor; +(function (ImGuiMouseCursor) { + ImGuiMouseCursor[ImGuiMouseCursor["None"] = -1] = "None"; + ImGuiMouseCursor[ImGuiMouseCursor["Arrow"] = 0] = "Arrow"; + ImGuiMouseCursor[ImGuiMouseCursor["TextInput"] = 1] = "TextInput"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeAll"] = 2] = "ResizeAll"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNS"] = 3] = "ResizeNS"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeEW"] = 4] = "ResizeEW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNESW"] = 5] = "ResizeNESW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNWSE"] = 6] = "ResizeNWSE"; + ImGuiMouseCursor[ImGuiMouseCursor["Hand"] = 7] = "Hand"; + ImGuiMouseCursor[ImGuiMouseCursor["Count_"] = 8] = "Count_"; + ImGuiMouseCursor[ImGuiMouseCursor["COUNT"] = 8] = "COUNT"; +})(ImGuiMouseCursor || (ImGuiMouseCursor = {})); +var ImGuiCond; +(function (ImGuiCond) { + ImGuiCond[ImGuiCond["Always"] = 1] = "Always"; + ImGuiCond[ImGuiCond["Once"] = 2] = "Once"; + ImGuiCond[ImGuiCond["FirstUseEver"] = 4] = "FirstUseEver"; + ImGuiCond[ImGuiCond["Appearing"] = 8] = "Appearing"; +})(ImGuiCond || (ImGuiCond = {})); +var ImDrawCornerFlags; +(function (ImDrawCornerFlags) { + ImDrawCornerFlags[ImDrawCornerFlags["TopLeft"] = 1] = "TopLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["TopRight"] = 2] = "TopRight"; + ImDrawCornerFlags[ImDrawCornerFlags["BotLeft"] = 4] = "BotLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["BotRight"] = 8] = "BotRight"; + ImDrawCornerFlags[ImDrawCornerFlags["Top"] = 3] = "Top"; + ImDrawCornerFlags[ImDrawCornerFlags["Bot"] = 12] = "Bot"; + ImDrawCornerFlags[ImDrawCornerFlags["Left"] = 5] = "Left"; + ImDrawCornerFlags[ImDrawCornerFlags["Right"] = 10] = "Right"; + ImDrawCornerFlags[ImDrawCornerFlags["All"] = 15] = "All"; +})(ImDrawCornerFlags || (ImDrawCornerFlags = {})); +var ImDrawListFlags; +(function (ImDrawListFlags) { + ImDrawListFlags[ImDrawListFlags["None"] = 0] = "None"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedLines"] = 1] = "AntiAliasedLines"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedFill"] = 2] = "AntiAliasedFill"; +})(ImDrawListFlags || (ImDrawListFlags = {})); +class ImVec2 { + constructor(x = 0.0, y = 0.0) { + this.x = x; + this.y = y; + } + Set(x, y) { + this.x = x; + this.y = y; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + return true; + } +} +ImVec2.ZERO = new ImVec2(0.0, 0.0); +ImVec2.UNIT = new ImVec2(1.0, 1.0); +ImVec2.UNIT_X = new ImVec2(1.0, 0.0); +ImVec2.UNIT_Y = new ImVec2(0.0, 1.0); +class ImVec4 { + constructor(x = 0.0, y = 0.0, z = 0.0, w = 1.0) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + } + Set(x, y, z, w) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + this.z = other.z; + this.w = other.w; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + if (this.z !== other.z) { + return false; + } + if (this.w !== other.w) { + return false; + } + return true; + } +} +ImVec4.ZERO = new ImVec4(0.0, 0.0, 0.0, 0.0); +ImVec4.UNIT = new ImVec4(1.0, 1.0, 1.0, 1.0); +ImVec4.UNIT_X = new ImVec4(1.0, 0.0, 0.0, 0.0); +ImVec4.UNIT_Y = new ImVec4(0.0, 1.0, 0.0, 0.0); +ImVec4.UNIT_Z = new ImVec4(0.0, 0.0, 1.0, 0.0); +ImVec4.UNIT_W = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.BLACK = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.WHITE = new ImVec4(1.0, 1.0, 1.0, 1.0); +//----------------------------------------------------------------------------- +// Helpers +//----------------------------------------------------------------------------- +// Lightweight std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug). +// Our implementation does NOT call C++ constructors/destructors. This is intentional and we do not require it. Do not use this class as a straight std::vector replacement in your code! +class ImVector extends Array { + constructor() { + super(...arguments); + this.Data = this; + // public: + // int Size; + // int Capacity; + // T* Data; + // typedef T value_type; + // typedef value_type* iterator; + // typedef const value_type* const_iterator; + // inline ImVector() { Size = Capacity = 0; Data = NULL; } + // inline ~ImVector() { if (Data) ImGui::MemFree(Data); } + // inline bool empty() const { return Size == 0; } + // inline int size() const { return Size; } + // inline int capacity() const { return Capacity; } + // inline value_type& operator[](int i) { IM_ASSERT(i < Size); return Data[i]; } + // inline const value_type& operator[](int i) const { IM_ASSERT(i < Size); return Data[i]; } + // inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } } + // inline iterator begin() { return Data; } + // inline const_iterator begin() const { return Data; } + // inline iterator end() { return Data + Size; } + // inline const_iterator end() const { return Data + Size; } + // inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; } + // inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; } + // inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; } + // inline int _grow_capacity(int size) const { int new_capacity = Capacity ? (Capacity + Capacity/2) : 8; return new_capacity > size ? new_capacity : size; } + // inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; } + // inline void resize(int new_size, const T& v){ if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) Data[n] = v; Size = new_size; } + // inline void reserve(int new_capacity) + // { + // if (new_capacity <= Capacity) + // return; + // T* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T)); + // if (Data) + // memcpy(new_data, Data, (size_t)Size * sizeof(T)); + // ImGui::MemFree(Data); + // Data = new_data; + // Capacity = new_capacity; + // } + // inline void push_back(const value_type& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); Data[Size++] = v; } + // inline void pop_back() { IM_ASSERT(Size > 0); Size--; } + // inline void push_front(const value_type& v) { if (Size == 0) push_back(v); else insert(Data, v); } + // inline iterator erase(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; } + // inline iterator erase(const_iterator it, const_iterator it_last){ IM_ASSERT(it >= Data && it < Data+Size && it_last > it && it_last <= Data+Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - count) * sizeof(value_type)); Size -= (int)count; return Data + off; } + // inline iterator erase_unsorted(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; if (it < Data+Size-1) memcpy(Data + off, Data + Size - 1, sizeof(value_type)); Size--; return Data + off; } + // inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= Data && it <= Data+Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; } + // inline bool contains(const value_type& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; } + } + get Size() { return this.length; } + empty() { return this.length === 0; } + clear() { this.length = 0; } + pop_back() { return this.pop(); } + push_back(value) { this.push(value); } +} +// Typically, 1 command = 1 GPU draw call (unless command is a callback) +// Pre 1.71 back-ends will typically ignore the VtxOffset/IdxOffset fields. When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset' +// is enabled, those fields allow us to render meshes larger than 64K vertices while keeping 16-bits indices. +class ImDrawCmd { + constructor(native) { + this.native = native; + // ImDrawCallback UserCallback; // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally. + this.UserCallback = null; // TODO + // void* UserCallbackData; // The draw callback code can access this. + this.UserCallbackData = null; // TODO + } + // unsigned int ElemCount; // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[]. + get ElemCount() { return this.native.ElemCount; } + // ImVec4 ClipRect; // Clipping rectangle (x1, y1, x2, y2) + get ClipRect() { return this.native.ClipRect; } + // ImTextureID TextureId; // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas. + get TextureId() { + return ImGuiContext.getTexture(this.native.TextureId); + } + // unsigned int VtxOffset; // Start offset in vertex buffer. Pre-1.71 or without ImGuiBackendFlags_RendererHasVtxOffset: always 0. With ImGuiBackendFlags_RendererHasVtxOffset: may be >0 to support meshes larger than 64K vertices with 16-bits indices. + get VtxOffset() { return this.native.VtxOffset; } + // unsigned int IdxOffset; // Start offset in index buffer. Always equal to sum of ElemCount drawn so far. + get IdxOffset() { return this.native.IdxOffset; } +} +// Vertex index +// (to allow large meshes with 16-bits indices: set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset in the renderer back-end) +// (to use 32-bits indices: override with '#define ImDrawIdx unsigned int' in imconfig.h) +// #ifndef ImDrawIdx +// typedef unsigned short ImDrawIdx; +// #endif +const ImDrawIdxSize = 2; // bind.ImDrawIdxSize; +// Vertex layout +// #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT +const ImDrawVertSize = 20; // bind.ImDrawVertSize; +const ImDrawVertPosOffset = 0; // bind.ImDrawVertPosOffset; +const ImDrawVertUVOffset = 8; // bind.ImDrawVertUVOffset; +const ImDrawVertColOffset = 16; // bind.ImDrawVertColOffset; +class ImDrawVert { + constructor(buffer, byteOffset = 0) { + this.pos = new Float32Array(buffer, byteOffset + bind.ImDrawVertPosOffset, 2); + this.uv = new Float32Array(buffer, byteOffset + bind.ImDrawVertUVOffset, 2); + this.col = new Uint32Array(buffer, byteOffset + bind.ImDrawVertColOffset, 1); + } +} +// Draw command list +// This is the low-level list of polygons that ImGui functions are filling. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering. +// Each ImGui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to access the current window draw list and draw custom primitives. +// You can interleave normal ImGui:: calls and adding primitives to the current draw list. +// All positions are generally in pixel coordinates (top-left at (0,0), bottom-right at io.DisplaySize), however you are totally free to apply whatever transformation matrix to want to the data (if you apply such transformation you'll want to apply it to ClipRect as well) +// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects. +class ImDrawList { + constructor(native) { + this.native = native; + } + IterateDrawCmds(callback) { + this.native.IterateDrawCmds((draw_cmd, ElemStart) => { + callback(new ImDrawCmd(draw_cmd), ElemStart); + }); + } + // This is what you have to render + // ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback. + // ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those + get IdxBuffer() { return this.native.IdxBuffer; } + // ImVector VtxBuffer; // Vertex buffer. + get VtxBuffer() { return this.native.VtxBuffer; } + // ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive. + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // [Internal, used while building lists] + // const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context) + // const char* _OwnerName; // Pointer to owner window's name for debugging + // unsigned int _VtxCurrentIdx; // [Internal] == VtxBuffer.Size + // ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImVector _ClipRectStack; // [Internal] + // ImVector _TextureIdStack; // [Internal] + // ImVector _Path; // [Internal] current path building + // int _ChannelsCurrent; // [Internal] current channel number (0) + // int _ChannelsCount; // [Internal] number of active channels (1+) + // ImVector _Channels; // [Internal] draw channels for columns API (not resized down so _ChannelsCount may be smaller than _Channels.Size) + // ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clear(); } + // ~ImDrawList() { ClearFreeMemory(); } + // IMGUI_API void PushClipRect(ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling) + PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect = false) { + this.native.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect); + } + // IMGUI_API void PushClipRectFullScreen(); + PushClipRectFullScreen() { this.native.PushClipRectFullScreen(); } + // IMGUI_API void PopClipRect(); + PopClipRect() { this.native.PopClipRect(); } + // IMGUI_API void PushTextureID(ImTextureID texture_id); + PushTextureID(texture_id) { + this.native.PushTextureID(ImGuiContext.setTexture(texture_id)); + } + // IMGUI_API void PopTextureID(); + PopTextureID() { this.native.PopTextureID(); } + // inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); } + GetClipRectMin(out = new ImVec2()) { + return this.native.GetClipRectMin(out); + } + // inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); } + GetClipRectMax(out = new ImVec2()) { + return this.native.GetClipRectMax(out); + } + // Primitives + // IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness = 1.0f); + AddLine(a, b, col, thickness = 1.0) { + this.native.AddLine(a, b, col, thickness); + } + // IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All, float thickness = 1.0f); // a: upper-left, b: lower-right, rounding_corners_flags: 4-bits corresponding to which corner to round + AddRect(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All, thickness = 1.0) { + this.native.AddRect(a, b, col, rounding, rounding_corners_flags, thickness); + } + // IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); // a: upper-left, b: lower-right + AddRectFilled(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { + this.native.AddRectFilled(a, b, col, rounding, rounding_corners_flags); + } + // IMGUI_API void AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left); + AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left) { + this.native.AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left); + } + // IMGUI_API void AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness = 1.0f); + AddQuad(a, b, c, d, col, thickness = 1.0) { + this.native.AddQuad(a, b, c, d, col, thickness); + } + // IMGUI_API void AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col); + AddQuadFilled(a, b, c, d, col) { + this.native.AddQuadFilled(a, b, c, d, col); + } + // IMGUI_API void AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness = 1.0f); + AddTriangle(a, b, c, col, thickness = 1.0) { + this.native.AddTriangle(a, b, c, col, thickness); + } + // IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col); + AddTriangleFilled(a, b, c, col) { + this.native.AddTriangleFilled(a, b, c, col); + } + // IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f); + AddCircle(centre, radius, col, num_segments = 12, thickness = 1.0) { + this.native.AddCircle(centre, radius, col, num_segments, thickness); + } + // IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12); + AddCircleFilled(centre, radius, col, num_segments = 12) { + this.native.AddCircleFilled(centre, radius, col, num_segments); + } + AddText(...args) { + if (args[0] instanceof ImFont) { + const font = args[0]; + const font_size = args[1]; + const pos = args[2]; + const col = args[3]; + const text_begin = args[4]; + const text_end = args[5] || null; + const wrap_width = args[6] = 0.0; + const cpu_fine_clip_rect = args[7] || null; + this.native.AddText_B(font.native, font_size, pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin, wrap_width, cpu_fine_clip_rect); + } + else { + const pos = args[0]; + const col = args[1]; + const text_begin = args[2]; + const text_end = args[3] || null; + this.native.AddText_A(pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin); + } + } + // IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,1), ImU32 col = 0xFFFFFFFF); + AddImage(user_texture_id, a, b, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT, col = 0xFFFFFFFF) { + this.native.AddImage(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col); + } + // IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,0), const ImVec2& uv_c = ImVec2(1,1), const ImVec2& uv_d = ImVec2(0,1), ImU32 col = 0xFFFFFFFF); + AddImageQuad(user_texture_id, a, b, c, d, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT_X, uv_c = ImVec2.UNIT, uv_d = ImVec2.UNIT_Y, col = 0xFFFFFFFF) { + this.native.AddImageQuad(ImGuiContext.setTexture(user_texture_id), a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); + } + // IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col, float rounding, int rounding_corners = ImDrawCornerFlags_All); + AddImageRounded(user_texture_id, a, b, uv_a, uv_b, col, rounding, rounding_corners = ImDrawCornerFlags.All) { + this.native.AddImageRounded(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col, rounding, rounding_corners); + } + // IMGUI_API void AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness); + AddPolyline(points, num_points, col, closed, thickness) { + this.native.AddPolyline(points, num_points, col, closed, thickness); + } + // IMGUI_API void AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col); + AddConvexPolyFilled(points, num_points, col) { + this.native.AddConvexPolyFilled(points, num_points, col); + } + // IMGUI_API void AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments = 0); + AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness = 1.0, num_segments = 0) { + this.native.AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments); + } + // Stateful path API, add points then finish with PathFill() or PathStroke() + // inline void PathClear() { _Path.resize(0); } + PathClear() { this.native.PathClear(); } + // inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); } + PathLineTo(pos) { this.native.PathLineTo(pos); } + // inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path[_Path.Size-1], &pos, 8) != 0) _Path.push_back(pos); } + PathLineToMergeDuplicate(pos) { this.native.PathLineToMergeDuplicate(pos); } + // inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); PathClear(); } + PathFillConvex(col) { this.native.PathFillConvex(col); } + // inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness); PathClear(); } + PathStroke(col, closed, thickness = 1.0) { this.native.PathStroke(col, closed, thickness); } + // IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_segments = 10); + PathArcTo(centre, radius, a_min, a_max, num_segments = 10) { this.native.PathArcTo(centre, radius, a_min, a_max, num_segments); } + // IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle + PathArcToFast(centre, radius, a_min_of_12, a_max_of_12) { this.native.PathArcToFast(centre, radius, a_min_of_12, a_max_of_12); } + // IMGUI_API void PathBezierCurveTo(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, int num_segments = 0); + PathBezierCurveTo(p1, p2, p3, num_segments = 0) { this.native.PathBezierCurveTo(p1, p2, p3, num_segments); } + // IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); + PathRect(rect_min, rect_max, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { this.native.PathRect(rect_min, rect_max, rounding, rounding_corners_flags); } + // Channels + // - Use to simulate layers. By switching channels to can render out-of-order (e.g. submit foreground primitives before background primitives) + // - Use to minimize draw calls (e.g. if going back-and-forth between multiple non-overlapping clipping rectangles, prefer to append into separate channels then merge at the end) + // IMGUI_API void ChannelsSplit(int channels_count); + ChannelsSplit(channels_count) { this.native.ChannelsSplit(channels_count); } + // IMGUI_API void ChannelsMerge(); + ChannelsMerge() { this.native.ChannelsMerge(); } + // IMGUI_API void ChannelsSetCurrent(int channel_index); + ChannelsSetCurrent(channel_index) { this.native.ChannelsSetCurrent(channel_index); } + // Advanced + // IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles. + AddCallback(callback, callback_data) { + const _callback = (parent_list, draw_cmd) => { + callback(new ImDrawList(parent_list), new ImDrawCmd(draw_cmd)); + }; + this.native.AddCallback(_callback, callback_data); + } + // IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible + AddDrawCmd() { this.native.AddDrawCmd(); } + // Internal helpers + // NB: all primitives needs to be reserved via PrimReserve() beforehand! + // IMGUI_API void Clear(); + Clear() { this.native.Clear(); } + // IMGUI_API void ClearFreeMemory(); + ClearFreeMemory() { this.native.ClearFreeMemory(); } + // IMGUI_API void PrimReserve(int idx_count, int vtx_count); + PrimReserve(idx_count, vtx_count) { this.native.PrimReserve(idx_count, vtx_count); } + // IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles) + PrimRect(a, b, col) { this.native.PrimRect(a, b, col); } + // IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col); + PrimRectUV(a, b, uv_a, uv_b, col) { this.native.PrimRectUV(a, b, uv_a, uv_b, col); } + // IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col); + PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col) { this.native.PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); } + // inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; } + PrimWriteVtx(pos, uv, col) { this.native.PrimWriteVtx(pos, uv, col); } + // inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; } + PrimWriteIdx(idx) { this.native.PrimWriteIdx(idx); } + // inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); } + PrimVtx(pos, uv, col) { this.native.PrimVtx(pos, uv, col); } + // IMGUI_API void UpdateClipRect(); + UpdateClipRect() { this.native.UpdateClipRect(); } + // IMGUI_API void UpdateTextureID(); + UpdateTextureID() { this.native.UpdateTextureID(); } +} +// All draw data to render an ImGui frame +class ImDrawData { + constructor(native) { + this.native = native; + } + IterateDrawLists(callback) { + this.native.IterateDrawLists((draw_list) => { + callback(new ImDrawList(draw_list)); + }); + } + // bool Valid; // Only valid after Render() is called and before the next NewFrame() is called. + get Valid() { return this.native.Valid; } + // ImDrawList** CmdLists; + // int CmdListsCount; + get CmdListsCount() { return this.native.CmdListsCount; } + // int TotalIdxCount; // For convenience, sum of all cmd_lists idx_buffer.Size + get TotalIdxCount() { return this.native.TotalIdxCount; } + // int TotalVtxCount; // For convenience, sum of all cmd_lists vtx_buffer.Size + get TotalVtxCount() { return this.native.TotalVtxCount; } + // ImVec2 DisplayPos; // Upper-left position of the viewport to render (== upper-left of the orthogonal projection matrix to use) + get DisplayPos() { return this.native.DisplayPos; } + // ImVec2 DisplaySize; // Size of the viewport to render (== io.DisplaySize for the main viewport) (DisplayPos + DisplaySize == lower-right of the orthogonal projection matrix to use) + get DisplaySize() { return this.native.DisplaySize; } + // ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display. + get FramebufferScale() { return this.native.FramebufferScale; } + // Functions + // ImDrawData() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCount = 0; } + // IMGUI_API void DeIndexAllBuffers(); // For backward compatibility or convenience: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering! + DeIndexAllBuffers() { this.native.DeIndexAllBuffers(); } + // IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than ImGui expects, or if there is a difference between your window resolution and framebuffer resolution. + ScaleClipRects(fb_scale) { + this.native.ScaleClipRects(fb_scale); + } +} +class script_ImFontConfig { + constructor() { + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + this.FontData = null; + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + this.FontDataOwnedByAtlas = true; + // int FontNo; // 0 // Index of font within TTF/OTF file + this.FontNo = 0; + // float SizePixels; // // Size in pixels for rasterizer. + this.SizePixels = 0; + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + this.OversampleH = 3; + this.OversampleV = 1; + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + this.PixelSnapH = false; + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + this.GlyphExtraSpacing = new ImVec2(0, 0); + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + this.GlyphOffset = new ImVec2(0, 0); + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + this.GlyphRanges = null; + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + this.GlyphMinAdvanceX = 0; + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + this.GlyphMaxAdvanceX = Number.MAX_VALUE; + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + this.MergeMode = false; + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + this.RasterizerFlags = 0; + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + this.RasterizerMultiply = 1.0; + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + this.Name = ""; + // ImFont* DstFont; + this.DstFont = null; + // IMGUI_API ImFontConfig(); + } +} +class ImFontConfig { + constructor(internal = new script_ImFontConfig()) { + this.internal = internal; + } + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + get FontData() { return this.internal.FontData; } + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + get FontDataOwnedByAtlas() { return this.internal.FontDataOwnedByAtlas; } + // int FontNo; // 0 // Index of font within TTF/OTF file + get FontNo() { return this.internal.FontNo; } + // float SizePixels; // // Size in pixels for rasterizer. + get SizePixels() { return this.internal.SizePixels; } + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + get OversampleH() { return this.internal.OversampleH; } + get OversampleV() { return this.internal.OversampleV; } + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + get PixelSnapH() { return this.internal.PixelSnapH; } + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + get GlyphExtraSpacing() { return this.internal.GlyphExtraSpacing; } + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + get GlyphOffset() { return this.internal.GlyphOffset; } + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + get GlyphRanges() { return this.internal.GlyphRanges; } + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + get GlyphMinAdvanceX() { return this.internal.GlyphMinAdvanceX; } + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + get GlyphMaxAdvanceX() { return this.internal.GlyphMaxAdvanceX; } + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + get MergeMode() { return this.internal.MergeMode; } + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + get RasterizerFlags() { return this.internal.RasterizerFlags; } + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + get RasterizerMultiply() { return this.internal.RasterizerMultiply; } + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + get Name() { return this.internal.Name; } + set Name(value) { this.internal.Name = value; } + // ImFont* DstFont; + get DstFont() { + const font = this.internal.DstFont; + return font && new ImFont(font); + } +} +// struct ImFontGlyph +class script_ImFontGlyph { + constructor() { + // ImWchar Codepoint; // 0x0000..0xFFFF + this.Codepoint = 0; + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + this.AdvanceX = 0.0; + // float X0, Y0, X1, Y1; // Glyph corners + this.X0 = 0.0; + this.Y0 = 0.0; + this.X1 = 1.0; + this.Y1 = 1.0; + // float U0, V0, U1, V1; // Texture coordinates + this.U0 = 0.0; + this.V0 = 0.0; + this.U1 = 1.0; + this.V1 = 1.0; + } +} +class ImFontGlyph { + constructor(internal = new script_ImFontGlyph()) { + this.internal = internal; + } + // ImWchar Codepoint; // 0x0000..0xFFFF + get Codepoint() { return this.internal.Codepoint; } + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + get AdvanceX() { return this.internal.AdvanceX; } + ; + // float X0, Y0, X1, Y1; // Glyph corners + get X0() { return this.internal.X0; } + ; + get Y0() { return this.internal.Y0; } + ; + get X1() { return this.internal.X1; } + ; + get Y1() { return this.internal.Y1; } + ; + // float U0, V0, U1, V1; // Texture coordinates + get U0() { return this.internal.U0; } + ; + get V0() { return this.internal.V0; } + ; + get U1() { return this.internal.U1; } + ; + get V1() { return this.internal.V1; } + ; +} +var ImFontAtlasFlags; +(function (ImFontAtlasFlags) { + ImFontAtlasFlags[ImFontAtlasFlags["None"] = 0] = "None"; + ImFontAtlasFlags[ImFontAtlasFlags["NoPowerOfTwoHeight"] = 1] = "NoPowerOfTwoHeight"; + ImFontAtlasFlags[ImFontAtlasFlags["NoMouseCursors"] = 2] = "NoMouseCursors"; +})(ImFontAtlasFlags || (ImFontAtlasFlags = {})); +// Load and rasterize multiple TTF/OTF fonts into a same texture. +// Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering. +// We also add custom graphic data into the texture that serves for ImGui. +// 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you. +// 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data. +// 3. Upload the pixels data into a texture within your graphics system. +// 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture. +// IMPORTANT: If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the ImFont is build (when calling GetTextData*** or Build()). We only copy the pointer, not the data. +class ImFontAtlas { + constructor(native) { + this.native = native; + } + // IMGUI_API ImFontAtlas(); + // IMGUI_API ~ImFontAtlas(); + // IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg); + // IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL); + AddFontDefault(font_cfg = null) { + return new ImFont(this.native.AddFontDefault(font_cfg)); + } + // IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); + // IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after Build(). Set font_cfg->FontDataOwnedByAtlas to false to keep ownership. + AddFontFromMemoryTTF(data, size_pixels, font_cfg = null, glyph_ranges = null) { + return new ImFont(this.native.AddFontFromMemoryTTF(new Uint8Array(data), size_pixels, font_cfg && font_cfg.internal, glyph_ranges)); + } + // IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp. + // IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter. + // IMGUI_API void ClearTexData(); // Clear the CPU-side texture data. Saves RAM once the texture has been copied to graphics memory. + ClearTexData() { this.native.ClearTexData(); } + // IMGUI_API void ClearInputData(); // Clear the input TTF data (inc sizes, glyph ranges) + ClearInputData() { this.native.ClearInputData(); } + // IMGUI_API void ClearFonts(); // Clear the ImGui-side font data (glyphs storage, UV coordinates) + ClearFonts() { this.native.ClearFonts(); } + // IMGUI_API void Clear(); // Clear all + Clear() { this.native.Clear(); } + // Build atlas, retrieve pixel data. + // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID(). + // RGBA32 format is provided for convenience and compatibility, but note that unless you use CustomRect to draw color data, the RGB pixels emitted from Fonts will all be white (~75% of waste). + // Pitch = Width * BytesPerPixels + // IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions. + Build() { return this.native.Build(); } + // IMGUI_API bool IsBuilt() { return Fonts.Size > 0 && (TexPixelsAlpha8 != NULL || TexPixelsRGBA32 != NULL); } + IsBuilt() { return this.native.IsBuilt(); } + // IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel + GetTexDataAsAlpha8() { + return this.native.GetTexDataAsAlpha8(); + } + // IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel + GetTexDataAsRGBA32() { + return this.native.GetTexDataAsRGBA32(); + } + // void SetTexID(ImTextureID id) { TexID = id; } + SetTexID(id) { this.TexID = id; } + //------------------------------------------- + // Glyph Ranges + //------------------------------------------- + // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list) + // NB: Make sure that your string are UTF-8 and NOT in your local code page. In C++11, you can create UTF-8 string literal using the u8"Hello world" syntax. See FAQ for details. + // IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin + GetGlyphRangesDefault() { return this.native.GetGlyphRangesDefault(); } + // IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters + GetGlyphRangesKorean() { return this.native.GetGlyphRangesKorean(); } + // IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs + GetGlyphRangesJapanese() { return this.native.GetGlyphRangesJapanese(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs + GetGlyphRangesChineseFull() { return this.native.GetGlyphRangesChineseFull(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese + GetGlyphRangesChineseSimplifiedCommon() { return this.native.GetGlyphRangesChineseSimplifiedCommon(); } + // IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters + GetGlyphRangesCyrillic() { return this.native.GetGlyphRangesCyrillic(); } + // IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters + GetGlyphRangesThai() { return this.native.GetGlyphRangesThai(); } + // IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters + GetGlyphRangesVietnamese() { return this.native.GetGlyphRangesVietnamese(); } + // Helpers to build glyph ranges from text data. Feed your application strings/characters to it then call BuildRanges(). + // struct GlyphRangesBuilder + // { + // ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used) + // GlyphRangesBuilder() { UsedChars.resize(0x10000 / 8); memset(UsedChars.Data, 0, 0x10000 / 8); } + // bool GetBit(int n) const { return (UsedChars[n >> 3] & (1 << (n & 7))) != 0; } + // void SetBit(int n) { UsedChars[n >> 3] |= 1 << (n & 7); } // Set bit 'c' in the array + // void AddChar(ImWchar c) { SetBit(c); } // Add character + // IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added) + // IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault) to force add all of ASCII/Latin+Ext + // IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges + // }; + //------------------------------------------- + // Custom Rectangles/Glyphs API + //------------------------------------------- + // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. After calling Build(), you can query the rectangle position and render your pixels. + // You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs. + // struct CustomRect + // { + // unsigned int ID; // Input // User ID. Use <0x10000 to map into a font glyph, >=0x10000 for other/internal/custom texture data. + // unsigned short Width, Height; // Input // Desired rectangle dimension + // unsigned short X, Y; // Output // Packed position in Atlas + // float GlyphAdvanceX; // Input // For custom font glyphs only (ID<0x10000): glyph xadvance + // ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph display offset + // ImFont* Font; // Input // For custom font glyphs only (ID<0x10000): target font + // CustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); Font = NULL; } + // bool IsPacked() const { return X != 0xFFFF; } + // }; + // IMGUI_API int AddCustomRectRegular(unsigned int id, int width, int height); // Id needs to be >= 0x10000. Id >= 0x80000000 are reserved for ImGui and ImDrawList + // IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0,0)); // Id needs to be < 0x10000 to register a rectangle to map into a specific font. + // IMGUI_API void CalcCustomRectUV(const CustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max); + // const CustomRect* GetCustomRectByIndex(int index) const { if (index < 0) return NULL; return &CustomRects[index]; } + //------------------------------------------- + // Members + //------------------------------------------- + // bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert. + get Locked() { return this.native.Locked; } + set Locked(value) { this.native.Locked = value; } + // ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_) + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure. + get TexID() { + return ImGuiContext.getTexture(this.native.TexID); + } + set TexID(value) { + this.native.TexID = ImGuiContext.setTexture(value); + } + // int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height. + get TexDesiredWidth() { return this.native.TexDesiredWidth; } + set TexDesiredWidth(value) { this.native.TexDesiredWidth = value; } + // int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1. + get TexGlyphPadding() { return this.native.TexGlyphPadding; } + set TexGlyphPadding(value) { this.native.TexGlyphPadding = value; } + // [Internal] + // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you. + // unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight + // unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4 + // int TexWidth; // Texture width calculated during Build(). + get TexWidth() { return this.native.TexWidth; } + // int TexHeight; // Texture height calculated during Build(). + get TexHeight() { return this.native.TexHeight; } + // ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight) + get TexUvScale() { return this.native.TexUvScale; } + // ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel + get TexUvWhitePixel() { return this.native.TexUvWhitePixel; } + // ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font. + get Fonts() { + const fonts = new ImVector(); + this.native.IterateFonts((font) => { + fonts.push(new ImFont(font)); + }); + return fonts; + } +} +// Font runtime data and rendering +// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32(). +class ImFont { + constructor(native) { + this.native = native; + } + // Members: Hot ~62/78 bytes + // float FontSize; // // Height of characters, set during loading (don't change after loading) + get FontSize() { return this.native.FontSize; } + // float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale() + get Scale() { return this.native.Scale; } + set Scale(value) { this.native.Scale = value; } + // ImVec2 DisplayOffset; // = (0.f,1.f) // Offset font rendering by xx pixels + get DisplayOffset() { return this.native.DisplayOffset; } + // ImVector Glyphs; // // All glyphs. + get Glyphs() { + const glyphs = new ImVector(); + this.native.IterateGlyphs((glyph) => { + glyphs.push(new ImFontGlyph(glyph)); // TODO: wrap native + }); + return glyphs; + } + // ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI). + // get IndexAdvanceX(): any { return this.native.IndexAdvanceX; } + // ImVector IndexLookup; // // Sparse. Index glyphs by Unicode code-point. + // get IndexLookup(): any { return this.native.IndexLookup; } + // const ImFontGlyph* FallbackGlyph; // == FindGlyph(FontFallbackChar) + get FallbackGlyph() { + const glyph = this.native.FallbackGlyph; + return glyph && new ImFontGlyph(glyph); + } + set FallbackGlyph(value) { + this.native.FallbackGlyph = value && value.internal; + } + // float FallbackAdvanceX; // == FallbackGlyph->AdvanceX + get FallbackAdvanceX() { return this.native.FallbackAdvanceX; } + // ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found. Only set via SetFallbackChar() + get FallbackChar() { return this.native.FallbackChar; } + // Members: Cold ~18/26 bytes + // short ConfigDataCount; // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont. + get ConfigDataCount() { return this.ConfigData.length; } + // ImFontConfig* ConfigData; // // Pointer within ContainerAtlas->ConfigData + get ConfigData() { + const cfg_data = []; + this.native.IterateConfigData((cfg) => { + cfg_data.push(new ImFontConfig(cfg)); + }); + return cfg_data; + } + // ImFontAtlas* ContainerAtlas; // // What we has been loaded into + get ContainerAtlas() { return null; } + // float Ascent, Descent; // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize] + get Ascent() { return this.native.Ascent; } + get Descent() { return this.native.Descent; } + // int MetricsTotalSurface;// // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs) + get MetricsTotalSurface() { return this.native.MetricsTotalSurface; } + // Methods + // IMGUI_API ImFont(); + // IMGUI_API ~ImFont(); + // IMGUI_API void ClearOutputData(); + ClearOutputData() { return this.native.ClearOutputData(); } + // IMGUI_API void BuildLookupTable(); + BuildLookupTable() { return this.native.BuildLookupTable(); } + // IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const; + FindGlyph(c) { + const glyph = this.native.FindGlyph(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const; + FindGlyphNoFallback(c) { + const glyph = this.native.FindGlyphNoFallback(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API void SetFallbackChar(ImWchar c); + SetFallbackChar(c) { return this.native.SetFallbackChar(c); } + // float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; } + GetCharAdvance(c) { return this.native.GetCharAdvance(c); } + // bool IsLoaded() const { return ContainerAtlas != NULL; } + IsLoaded() { return this.native.IsLoaded(); } + // const char* GetDebugName() const { return ConfigData ? ConfigData->Name : ""; } + GetDebugName() { return this.native.GetDebugName(); } + // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable. + // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable. + // IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8 + CalcTextSizeA(size, max_width, wrap_width, text_begin, text_end = null, remaining = null) { + return this.native.CalcTextSizeA(size, max_width, wrap_width, text_end !== null ? text_begin.substring(0, text_end) : text_begin, remaining, new ImVec2()); + } + // IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const; + CalcWordWrapPositionA(scale, text, text_end = null, wrap_width) { + return this.native.CalcWordWrapPositionA(scale, text_end !== null ? text.substring(0, text_end) : text, wrap_width); + } + // IMGUI_API void RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, unsigned short c) const; + RenderChar(draw_list, size, pos, col, c) { + this.native.RenderChar(draw_list.native, size, pos, col, c); + } + // IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const; + RenderText(draw_list, size, pos, col, clip_rect, text_begin, text_end = null, wrap_width = 0.0, cpu_fine_clip = false) { } +} +// This is where your app communicate with Dear ImGui. Access via ImGui::GetIO(). +// Read 'Programmer guide' section in .cpp file for general usage. +class ImGuiIO { + constructor(native) { + this.native = native; + // int KeyMap[ImGuiKey_COUNT]; // // Map of indices into the KeysDown[512] entries array + this.KeyMap = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiKey.COUNT; + } + return this.native._getAt_KeyMap(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeyMap(Number(key), value); + }, + }); + // bool MouseDown[5]; // Mouse buttons: left, right, middle + extras. ImGui itself mostly only uses left button (BeginPopupContext** are using right button). Others buttons allows us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API. + this.MouseDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_MouseDown(Number(key), value); + }, + }); + // bool KeysDown[512]; // Keyboard keys that are pressed (in whatever storage order you naturally have access to keyboard data) + this.KeysDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeysDown(Number(key), value); + }, + }); + // float NavInputs[ImGuiNavInput_COUNT]; // Gamepad inputs (keyboard keys will be auto-mapped and be written here by ImGui::NewFrame) + this.NavInputs = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputs(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_NavInputs(Number(key), value); + }, + }); + //------------------------------------------------------------------ + // [Internal] ImGui will maintain those fields. Forward compatibility not guaranteed! + //------------------------------------------------------------------ + // ImVec2 MousePosPrev; // Previous mouse position temporary storage (nb: not for public use, set to MousePos in NewFrame()) + // ImVec2 MouseClickedPos[5]; // Position at time of clicking + this.MouseClickedPos = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseClickedPos(Number(key)); + }, + }); + // float MouseClickedTime[5]; // Time of last click (used to figure out double-click) + // bool MouseClicked[5]; // Mouse button went from !Down to Down + // bool MouseDoubleClicked[5]; // Has mouse button been double-clicked? + // bool MouseReleased[5]; // Mouse button went from Down to !Down + // bool MouseDownOwned[5]; // Track if button was clicked inside a window. We don't request mouse capture from the application if click started outside ImGui bounds. + // float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked) + this.MouseDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDownDuration(Number(key)); + }, + }); + // float MouseDownDurationPrev[5]; // Previous time the mouse button has been down + // ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point + // float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point + // float KeysDownDuration[512]; // Duration the keyboard key has been down (0.0f == just pressed) + this.KeysDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDownDuration(Number(key)); + }, + }); + // float KeysDownDurationPrev[512]; // Previous duration the key has been down + // float NavInputsDownDuration[ImGuiNavInput_COUNT]; + this.NavInputsDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputsDownDuration(Number(key)); + }, + }); + } + //------------------------------------------------------------------ + // Settings (fill once) // Default value: + //------------------------------------------------------------------ + // ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc. + get ConfigFlags() { return this.native.ConfigFlags; } + set ConfigFlags(value) { this.native.ConfigFlags = value; } + // ImGuiBackendFlags BackendFlags; // = 0 // Set ImGuiBackendFlags_ enum. Set by imgui_impl_xxx files or custom back-end to communicate features supported by the back-end. + get BackendFlags() { return this.native.BackendFlags; } + set BackendFlags(value) { this.native.BackendFlags = value; } + // ImVec2 DisplaySize; // // Display size, in pixels. For clamping windows positions. + get DisplaySize() { return this.native.DisplaySize; } + // float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds. + get DeltaTime() { return this.native.DeltaTime; } + set DeltaTime(value) { this.native.DeltaTime = value; } + // float IniSavingRate; // = 5.0f // Maximum time between saving positions/sizes to .ini file, in seconds. + get IniSavingRate() { return this.native.IniSavingRate; } + set IniSavingRate(value) { this.native.IniSavingRate = value; } + // const char* IniFilename; // = "imgui.ini" // Path to .ini file. NULL to disable .ini saving. + get IniFilename() { return this.native.IniFilename; } + set IniFilename(value) { this.native.IniFilename = value; } + // const char* LogFilename; // = "imgui_log.txt" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified). + get LogFilename() { return this.native.LogFilename; } + set LogFilename(value) { this.native.LogFilename = value; } + // float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds. + get MouseDoubleClickTime() { return this.native.MouseDoubleClickTime; } + set MouseDoubleClickTime(value) { this.native.MouseDoubleClickTime = value; } + // float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels. + get MouseDoubleClickMaxDist() { return this.native.MouseDoubleClickMaxDist; } + set MouseDoubleClickMaxDist(value) { this.native.MouseDoubleClickMaxDist = value; } + // float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging + get MouseDragThreshold() { return this.native.MouseDragThreshold; } + set MouseDragThreshold(value) { this.native.MouseDragThreshold = value; } + // float KeyRepeatDelay; // = 0.250f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.). + get KeyRepeatDelay() { return this.native.KeyRepeatDelay; } + set KeyRepeatDelay(value) { this.native.KeyRepeatDelay = value; } + // float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds. + get KeyRepeatRate() { return this.native.KeyRepeatRate; } + set KeyRepeatRate(value) { this.native.KeyRepeatRate = value; } + // void* UserData; // = NULL // Store your own data for retrieval by callbacks. + get UserData() { return this.native.UserData; } + set UserData(value) { this.native.UserData = value; } + // ImFontAtlas* Fonts; // // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array. + get Fonts() { return new ImFontAtlas(this.native.Fonts); } + // float FontGlobalScale; // = 1.0f // Global scale all fonts + get FontGlobalScale() { return this.native.FontGlobalScale; } + set FontGlobalScale(value) { this.native.FontGlobalScale = value; } + // bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel. + get FontAllowUserScaling() { return this.native.FontAllowUserScaling; } + set FontAllowUserScaling(value) { this.native.FontAllowUserScaling = value; } + // ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0]. + get FontDefault() { + const font = this.native.FontDefault; + return (font === null) ? null : new ImFont(font); + } + set FontDefault(value) { + this.native.FontDefault = value && value.native; + } + // ImVec2 DisplayFramebufferScale; // = (1.0f,1.0f) // For retina display or other situations where window coordinates are different from framebuffer coordinates. User storage only, presently not used by ImGui. + get DisplayFramebufferScale() { return this.native.DisplayFramebufferScale; } + // Miscellaneous configuration options + // bool OptMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl + get ConfigMacOSXBehaviors() { return this.native.ConfigMacOSXBehaviors; } + set ConfigMacOSXBehaviors(value) { this.native.ConfigMacOSXBehaviors = value; } + // bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor, for users who consider it annoying. + get ConfigInputTextCursorBlink() { return this.native.ConfigInputTextCursorBlink; } + set ConfigInputTextCursorBlink(value) { this.native.ConfigInputTextCursorBlink = value; } + // bool ConfigWindowsResizeFromEdges; // = false // [BETA] Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be the ImGuiWindowFlags_ResizeFromAnySide flag) + get ConfigWindowsResizeFromEdges() { return this.native.ConfigWindowsResizeFromEdges; } + set ConfigWindowsResizeFromEdges(value) { this.native.ConfigWindowsResizeFromEdges = value; } + // bool ConfigWindowsMoveFromTitleBarOnly;// = false // [BETA] Set to true to only allow moving windows when clicked+dragged from the title bar. Windows without a title bar are not affected. + get ConfigWindowsMoveFromTitleBarOnly() { return this.native.ConfigWindowsMoveFromTitleBarOnly; } + set ConfigWindowsMoveFromTitleBarOnly(value) { this.native.ConfigWindowsMoveFromTitleBarOnly = value; } + //------------------------------------------------------------------ + // Settings (User Functions) + //------------------------------------------------------------------ + // Optional: Platform/Renderer back-end name (informational only! will be displayed in About Window) + User data for back-end/wrappers to store their own stuff. + // const char* BackendPlatformName; // = NULL + get BackendPlatformName() { return this.native.BackendPlatformName; } + set BackendPlatformName(value) { this.native.BackendPlatformName = value; } + // const char* BackendRendererName; // = NULL + get BackendRendererName() { return this.native.BackendRendererName; } + set BackendRendererName(value) { this.native.BackendRendererName = value; } + // void* BackendPlatformUserData; // = NULL + get BackendPlatformUserData() { return this.native.BackendPlatformUserData; } + set BackendPlatformUserData(value) { this.native.BackendPlatformUserData = value; } + // void* BackendRendererUserData; // = NULL + get BackendRendererUserData() { return this.native.BackendRendererUserData; } + set BackendRendererUserData(value) { this.native.BackendRendererUserData = value; } + // void* BackendLanguageUserData; // = NULL + get BackendLanguageUserData() { return this.native.BackendLanguageUserData; } + set BackendLanguageUserData(value) { this.native.BackendLanguageUserData = value; } + // Optional: access OS clipboard + // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures) + // const char* (*GetClipboardTextFn)(void* user_data); + get GetClipboardTextFn() { return this.native.GetClipboardTextFn; } + set GetClipboardTextFn(value) { this.native.GetClipboardTextFn = value; } + // void (*SetClipboardTextFn)(void* user_data, const char* text); + get SetClipboardTextFn() { return this.native.SetClipboardTextFn; } + set SetClipboardTextFn(value) { this.native.SetClipboardTextFn = value; } + // void* ClipboardUserData; + get ClipboardUserData() { return this.native.ClipboardUserData; } + set ClipboardUserData(value) { this.native.ClipboardUserData = value; } + // Optional: override memory allocations. MemFreeFn() may be called with a NULL pointer. + // (default to posix malloc/free) + // void* (*MemAllocFn)(size_t sz); + // void (*MemFreeFn)(void* ptr); + // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME in Windows) + // (default to use native imm32 api on Windows) + // void (*ImeSetInputScreenPosFn)(int x, int y); + // void* ImeWindowHandle; // (Windows) Set this to your HWND to get automatic IME cursor positioning. + //------------------------------------------------------------------ + // Input - Fill before calling NewFrame() + //------------------------------------------------------------------ + // ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX,-FLT_MAX) if mouse is unavailable (on another screen, etc.) + get MousePos() { return this.native.MousePos; } + // float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text. + get MouseWheel() { return this.native.MouseWheel; } + set MouseWheel(value) { this.native.MouseWheel = value; } + // float MouseWheelH; // Mouse wheel (Horizontal). Most users don't have a mouse with an horizontal wheel, may not be filled by all back-ends. + get MouseWheelH() { return this.native.MouseWheelH; } + set MouseWheelH(value) { this.native.MouseWheelH = value; } + // bool MouseDrawCursor; // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor). + get MouseDrawCursor() { return this.native.MouseDrawCursor; } + set MouseDrawCursor(value) { this.native.MouseDrawCursor = value; } + // bool KeyCtrl; // Keyboard modifier pressed: Control + get KeyCtrl() { return this.native.KeyCtrl; } + set KeyCtrl(value) { this.native.KeyCtrl = value; } + // bool KeyShift; // Keyboard modifier pressed: Shift + get KeyShift() { return this.native.KeyShift; } + set KeyShift(value) { this.native.KeyShift = value; } + // bool KeyAlt; // Keyboard modifier pressed: Alt + get KeyAlt() { return this.native.KeyAlt; } + set KeyAlt(value) { this.native.KeyAlt = value; } + // bool KeySuper; // Keyboard modifier pressed: Cmd/Super/Windows + get KeySuper() { return this.native.KeySuper; } + set KeySuper(value) { this.native.KeySuper = value; } + // Functions + // IMGUI_API void AddInputCharacter(ImWchar c); // Add new character into InputCharacters[] + AddInputCharacter(c) { this.native.AddInputCharacter(c); } + // IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Add new characters into InputCharacters[] from an UTF-8 string + AddInputCharactersUTF8(utf8_chars) { this.native.AddInputCharactersUTF8(utf8_chars); } + // inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Clear the text input buffer manually + ClearInputCharacters() { this.native.ClearInputCharacters(); } + //------------------------------------------------------------------ + // Output - Retrieve after calling NewFrame() + //------------------------------------------------------------------ + // bool WantCaptureMouse; // When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. This is set by ImGui when it wants to use your mouse (e.g. unclicked mouse is hovering a window, or a widget is active). + get WantCaptureMouse() { return this.native.WantCaptureMouse; } + set WantCaptureMouse(value) { this.native.WantCaptureMouse = value; } + // bool WantCaptureKeyboard; // When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. This is set by ImGui when it wants to use your keyboard inputs. + get WantCaptureKeyboard() { return this.native.WantCaptureKeyboard; } + set WantCaptureKeyboard(value) { this.native.WantCaptureKeyboard = value; } + // bool WantTextInput; // Mobile/console: when io.WantTextInput is true, you may display an on-screen keyboard. This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active). + get WantTextInput() { return this.native.WantTextInput; } + set WantTextInput(value) { this.native.WantTextInput = value; } + // bool WantSetMousePos; // [BETA-NAV] MousePos has been altered, back-end should reposition mouse on next frame. Set only when 'NavMovesMouse=true'. + get WantSetMousePos() { return this.native.WantSetMousePos; } + set WantSetMousePos(value) { this.native.WantSetMousePos = value; } + // bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. IMPORTANT: You need to clear io.WantSaveIniSettings yourself. + get WantSaveIniSettings() { return this.native.WantSaveIniSettings; } + set WantSaveIniSettings(value) { this.native.WantSaveIniSettings = value; } + // bool NavActive; // Directional navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag. + get NavActive() { return this.native.NavActive; } + set NavActive(value) { this.native.NavActive = value; } + // bool NavVisible; // Directional navigation is visible and allowed (will handle ImGuiKey_NavXXX events). + get NavVisible() { return this.native.NavVisible; } + set NavVisible(value) { this.native.NavVisible = value; } + // float Framerate; // Application framerate estimation, in frame per second. Solely for convenience. Rolling average estimation based on IO.DeltaTime over 120 frames + get Framerate() { return this.native.Framerate; } + // int MetricsRenderVertices; // Vertices output during last call to Render() + get MetricsRenderVertices() { return this.native.MetricsRenderVertices; } + // int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3 + get MetricsRenderIndices() { return this.native.MetricsRenderIndices; } + // int MetricsRenderWindows; // Number of visible windows + get MetricsRenderWindows() { return this.native.MetricsRenderWindows; } + // int MetricsActiveWindows; // Number of visible root windows (exclude child windows) + get MetricsActiveWindows() { return this.native.MetricsActiveWindows; } + // int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts. + get MetricsActiveAllocations() { return this.native.MetricsActiveAllocations; } + // ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta. + get MouseDelta() { return this.native.MouseDelta; } +} +const _texturesById = []; +// Context creation and access, if you want to use multiple context, share context between modules (e.g. DLL). +// All contexts share a same ImFontAtlas by default. If you want different font atlas, you can new() them and overwrite the GetIO().Fonts variable of an ImGui context. +// All those functions are not reliant on the current context. +class ImGuiContext { + constructor(native) { + this.native = native; + } + static getTexture(index) { + return _texturesById[index] || null; + } + static setTexture(texture) { + let index = _texturesById.indexOf(texture); + if (index === -1) { + for (let i = 0; i < _texturesById.length; ++i) { + if (_texturesById[i] === null) { + _texturesById[i] = texture; + return i; + } + } + index = _texturesById.length; + _texturesById.push(texture); + } + return index; + } +} +ImGuiContext.current_ctx = null; +// IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL); +function CreateContext(shared_font_atlas = null) { + const ctx = new ImGuiContext(bind.CreateContext(shared_font_atlas ? shared_font_atlas.native : null)); + if (ImGuiContext.current_ctx === null) { + ImGuiContext.current_ctx = ctx; + } + return ctx; +} +// IMGUI_API void SetCurrentContext(ImGuiContext* ctx); +function SetCurrentContext(ctx) { + bind.SetCurrentContext((ctx === null) ? null : ctx.native); + ImGuiContext.current_ctx = ctx; +} +// IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert); +function DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx) { + return bind.DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx); +} +// Main +// IMGUI_API ImGuiIO& GetIO(); +function GetIO() { return new ImGuiIO(bind.GetIO()); } +// IMGUI_API void NewFrame(); // start a new ImGui frame, you can submit any command from this point until Render()/EndFrame(). +function NewFrame() { bind.NewFrame(); } +// IMGUI_API void EndFrame(); // ends the ImGui frame. automatically called by Render(), so most likely don't need to ever call that yourself directly. If you don't need to render you may call EndFrame() but you'll have wasted CPU already. If you don't need to render, better to not create any imgui windows instead! +function EndFrame() { bind.EndFrame(); } +// IMGUI_API void Render(); // ends the ImGui frame, finalize the draw data, then call your io.RenderDrawListsFn() function if set. +function Render() { bind.Render(); } +// IMGUI_API ImDrawData* GetDrawData(); // same value as passed to your io.RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame() +function GetDrawData() { + const draw_data = bind.GetDrawData(); + return (draw_data === null) ? null : new ImDrawData(draw_data); +} +// IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you +function GetMouseCursor() { return bind.GetMouseCursor(); } +// IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source. +function LoadIniSettingsFromMemory(ini_data, ini_size = 0) { bind.LoadIniSettingsFromMemory(ini_data); } +// IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings. +function SaveIniSettingsToMemory(out_ini_size = null) { return bind.SaveIniSettingsToMemory(); } + +var promise = createCommonjsModule(function (module, exports) { +(function(global){ + +// +// Check for native Promise and it has correct interface +// + +var NativePromise = global['Promise']; +var nativePromiseSupported = + NativePromise && + // Some of these methods are missing from + // Firefox/Chrome experimental implementations + 'resolve' in NativePromise && + 'reject' in NativePromise && + 'all' in NativePromise && + 'race' in NativePromise && + // Older version of the spec had a resolver object + // as the arg rather than a function + (function(){ + var resolve; + new NativePromise(function(r){ resolve = r; }); + return typeof resolve === 'function'; + })(); + + +// +// export if necessary +// + +if ( exports) +{ + // node.js + exports.Promise = nativePromiseSupported ? NativePromise : Promise; + exports.Polyfill = Promise; +} +else +{ + // AMD + { + // in browser add to global + if (!nativePromiseSupported) + global['Promise'] = Promise; + } +} + + +// +// Polyfill +// + +var PENDING = 'pending'; +var SEALED = 'sealed'; +var FULFILLED = 'fulfilled'; +var REJECTED = 'rejected'; +var NOOP = function(){}; + +function isArray(value) { + return Object.prototype.toString.call(value) === '[object Array]'; +} + +// async calls +var asyncSetTimer = typeof setImmediate !== 'undefined' ? setImmediate : setTimeout; +var asyncQueue = []; +var asyncTimer; + +function asyncFlush(){ + // run promise callbacks + for (var i = 0; i < asyncQueue.length; i++) + asyncQueue[i][0](asyncQueue[i][1]); + + // reset async asyncQueue + asyncQueue = []; + asyncTimer = false; +} + +function asyncCall(callback, arg){ + asyncQueue.push([callback, arg]); + + if (!asyncTimer) + { + asyncTimer = true; + asyncSetTimer(asyncFlush, 0); + } +} + + +function invokeResolver(resolver, promise) { + function resolvePromise(value) { + resolve(promise, value); + } + + function rejectPromise(reason) { + reject(promise, reason); + } + + try { + resolver(resolvePromise, rejectPromise); + } catch(e) { + rejectPromise(e); + } +} + +function invokeCallback(subscriber){ + var owner = subscriber.owner; + var settled = owner.state_; + var value = owner.data_; + var callback = subscriber[settled]; + var promise = subscriber.then; + + if (typeof callback === 'function') + { + settled = FULFILLED; + try { + value = callback(value); + } catch(e) { + reject(promise, e); + } + } + + if (!handleThenable(promise, value)) + { + if (settled === FULFILLED) + resolve(promise, value); + + if (settled === REJECTED) + reject(promise, value); + } +} + +function handleThenable(promise, value) { + var resolved; + + try { + if (promise === value) + throw new TypeError('A promises callback cannot return that same promise.'); + + if (value && (typeof value === 'function' || typeof value === 'object')) + { + var then = value.then; // then should be retrived only once + + if (typeof then === 'function') + { + then.call(value, function(val){ + if (!resolved) + { + resolved = true; + + if (value !== val) + resolve(promise, val); + else + fulfill(promise, val); + } + }, function(reason){ + if (!resolved) + { + resolved = true; + + reject(promise, reason); + } + }); + + return true; + } + } + } catch (e) { + if (!resolved) + reject(promise, e); + + return true; + } + + return false; +} + +function resolve(promise, value){ + if (promise === value || !handleThenable(promise, value)) + fulfill(promise, value); +} + +function fulfill(promise, value){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = value; + + asyncCall(publishFulfillment, promise); + } +} + +function reject(promise, reason){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = reason; + + asyncCall(publishRejection, promise); + } +} + +function publish(promise) { + var callbacks = promise.then_; + promise.then_ = undefined; + + for (var i = 0; i < callbacks.length; i++) { + invokeCallback(callbacks[i]); + } +} + +function publishFulfillment(promise){ + promise.state_ = FULFILLED; + publish(promise); +} + +function publishRejection(promise){ + promise.state_ = REJECTED; + publish(promise); +} + +/** +* @class +*/ +function Promise(resolver){ + if (typeof resolver !== 'function') + throw new TypeError('Promise constructor takes a function argument'); + + if (this instanceof Promise === false) + throw new TypeError('Failed to construct \'Promise\': Please use the \'new\' operator, this object constructor cannot be called as a function.'); + + this.then_ = []; + + invokeResolver(resolver, this); +} + +Promise.prototype = { + constructor: Promise, + + state_: PENDING, + then_: null, + data_: undefined, + + then: function(onFulfillment, onRejection){ + var subscriber = { + owner: this, + then: new this.constructor(NOOP), + fulfilled: onFulfillment, + rejected: onRejection + }; + + if (this.state_ === FULFILLED || this.state_ === REJECTED) + { + // already resolved, call callback async + asyncCall(invokeCallback, subscriber); + } + else + { + // subscribe + this.then_.push(subscriber); + } + + return subscriber.then; + }, + + 'catch': function(onRejection) { + return this.then(null, onRejection); + } +}; + +Promise.all = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.all().'); + + return new Class(function(resolve, reject){ + var results = []; + var remaining = 0; + + function resolver(index){ + remaining++; + return function(value){ + results[index] = value; + if (!--remaining) + resolve(results); + }; + } + + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolver(i), reject); + else + results[i] = promise; + } + + if (!remaining) + resolve(results); + }); +}; + +Promise.race = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.race().'); + + return new Class(function(resolve, reject) { + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolve, reject); + else + resolve(promise); + } + }); +}; + +Promise.resolve = function(value){ + var Class = this; + + if (value && typeof value === 'object' && value.constructor === Class) + return value; + + return new Class(function(resolve){ + resolve(value); + }); +}; + +Promise.reject = function(reason){ + var Class = this; + + return new Class(function(resolve, reject){ + reject(reason); + }); +}; + +})(typeof window != 'undefined' ? window : typeof commonjsGlobal != 'undefined' ? commonjsGlobal : typeof self != 'undefined' ? self : commonjsGlobal); +}); +var promise_1 = promise.Promise; +var promise_2 = promise.Polyfill; + +/* +object-assign +(c) Sindre Sorhus +@license MIT +*/ +/* eslint-disable no-unused-vars */ +var getOwnPropertySymbols = Object.getOwnPropertySymbols; +var hasOwnProperty = Object.prototype.hasOwnProperty; +var propIsEnumerable = Object.prototype.propertyIsEnumerable; + +function toObject(val) { + if (val === null || val === undefined) { + throw new TypeError('Object.assign cannot be called with null or undefined'); + } + + return Object(val); +} + +function shouldUseNative() { + try { + if (!Object.assign) { + return false; + } + + // Detect buggy property enumeration order in older V8 versions. + + // https://bugs.chromium.org/p/v8/issues/detail?id=4118 + var test1 = new String('abc'); // eslint-disable-line no-new-wrappers + test1[5] = 'de'; + if (Object.getOwnPropertyNames(test1)[0] === '5') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test2 = {}; + for (var i = 0; i < 10; i++) { + test2['_' + String.fromCharCode(i)] = i; + } + var order2 = Object.getOwnPropertyNames(test2).map(function (n) { + return test2[n]; + }); + if (order2.join('') !== '0123456789') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test3 = {}; + 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { + test3[letter] = letter; + }); + if (Object.keys(Object.assign({}, test3)).join('') !== + 'abcdefghijklmnopqrst') { + return false; + } + + return true; + } catch (err) { + // We don't expect any of the above to throw, but better to be safe. + return false; + } +} + +var objectAssign = shouldUseNative() ? Object.assign : function (target, source) { + var from; + var to = toObject(target); + var symbols; + + for (var s = 1; s < arguments.length; s++) { + from = Object(arguments[s]); + + for (var key in from) { + if (hasOwnProperty.call(from, key)) { + to[key] = from[key]; + } + } + + if (getOwnPropertySymbols) { + symbols = getOwnPropertySymbols(from); + for (var i = 0; i < symbols.length; i++) { + if (propIsEnumerable.call(from, symbols[i])) { + to[symbols[i]] = from[symbols[i]]; + } + } + } + } + + return to; +}; + +/*! + * @pixi/polyfill - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/polyfill is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Support for IE 9 - 11 which does not include Promises +if (!window.Promise) +{ + window.Promise = promise_2; +} + +// References: + +if (!Object.assign) +{ + Object.assign = objectAssign; +} + +var commonjsGlobal$1 = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +// References: +// http://paulirish.com/2011/requestanimationframe-for-smart-animating/ +// https://gist.github.com/1579671 +// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision +// https://gist.github.com/timhall/4078614 +// https://github.com/Financial-Times/polyfill-service/tree/master/polyfills/requestAnimationFrame + +// Expected to be used with Browserfiy +// Browserify automatically detects the use of `global` and passes the +// correct reference of `global`, `self`, and finally `window` + +var ONE_FRAME_TIME = 16; + +// Date.now +if (!(Date.now && Date.prototype.getTime)) +{ + Date.now = function now() + { + return new Date().getTime(); + }; +} + +// performance.now +if (!(commonjsGlobal$1.performance && commonjsGlobal$1.performance.now)) +{ + var startTime = Date.now(); + + if (!commonjsGlobal$1.performance) + { + commonjsGlobal$1.performance = {}; + } + + commonjsGlobal$1.performance.now = function () { return Date.now() - startTime; }; +} + +// requestAnimationFrame +var lastTime = Date.now(); +var vendors = ['ms', 'moz', 'webkit', 'o']; + +for (var x = 0; x < vendors.length && !commonjsGlobal$1.requestAnimationFrame; ++x) +{ + var p = vendors[x]; + + commonjsGlobal$1.requestAnimationFrame = commonjsGlobal$1[(p + "RequestAnimationFrame")]; + commonjsGlobal$1.cancelAnimationFrame = commonjsGlobal$1[(p + "CancelAnimationFrame")] || commonjsGlobal$1[(p + "CancelRequestAnimationFrame")]; +} + +if (!commonjsGlobal$1.requestAnimationFrame) +{ + commonjsGlobal$1.requestAnimationFrame = function (callback) { + if (typeof callback !== 'function') + { + throw new TypeError((callback + "is not a function")); + } + + var currentTime = Date.now(); + var delay = ONE_FRAME_TIME + lastTime - currentTime; + + if (delay < 0) + { + delay = 0; + } + + lastTime = currentTime; + + return setTimeout(function () { + lastTime = Date.now(); + callback(performance.now()); + }, delay); + }; +} + +if (!commonjsGlobal$1.cancelAnimationFrame) +{ + commonjsGlobal$1.cancelAnimationFrame = function (id) { return clearTimeout(id); }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign + +if (!Math.sign) +{ + Math.sign = function mathSign(x) + { + x = Number(x); + + if (x === 0 || isNaN(x)) + { + return x; + } + + return x > 0 ? 1 : -1; + }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger + +if (!Number.isInteger) +{ + Number.isInteger = function numberIsInteger(value) + { + return typeof value === 'number' && isFinite(value) && Math.floor(value) === value; + }; +} + +if (!window.ArrayBuffer) +{ + window.ArrayBuffer = Array; +} + +if (!window.Float32Array) +{ + window.Float32Array = Array; +} + +if (!window.Uint32Array) +{ + window.Uint32Array = Array; +} + +if (!window.Uint16Array) +{ + window.Uint16Array = Array; +} + +if (!window.Uint8Array) +{ + window.Uint8Array = Array; +} + +if (!window.Int32Array) +{ + window.Int32Array = Array; +} + +var isMobile = createCommonjsModule(function (module) { +(function(global) { + var apple_phone = /iPhone/i, + apple_ipod = /iPod/i, + apple_tablet = /iPad/i, + android_phone = /\bAndroid(?:.+)Mobile\b/i, // Match 'Android' AND 'Mobile' + android_tablet = /Android/i, + amazon_phone = /\bAndroid(?:.+)SD4930UR\b/i, + amazon_tablet = /\bAndroid(?:.+)(?:KF[A-Z]{2,4})\b/i, + windows_phone = /Windows Phone/i, + windows_tablet = /\bWindows(?:.+)ARM\b/i, // Match 'Windows' AND 'ARM' + other_blackberry = /BlackBerry/i, + other_blackberry_10 = /BB10/i, + other_opera = /Opera Mini/i, + other_chrome = /\b(CriOS|Chrome)(?:.+)Mobile/i, + other_firefox = /Mobile(?:.+)Firefox\b/i; // Match 'Mobile' AND 'Firefox' + + function match(regex, userAgent) { + return regex.test(userAgent); + } + + function isMobile(userAgent) { + var ua = + userAgent || + (typeof navigator !== 'undefined' ? navigator.userAgent : ''); + + // Facebook mobile app's integrated browser adds a bunch of strings that + // match everything. Strip it out if it exists. + var tmp = ua.split('[FBAN'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + // Twitter mobile app's integrated browser on iPad adds a "Twitter for + // iPhone" string. Same probably happens on other tablet platforms. + // This will confuse detection so strip it out if it exists. + tmp = ua.split('Twitter'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + var result = { + apple: { + phone: match(apple_phone, ua) && !match(windows_phone, ua), + ipod: match(apple_ipod, ua), + tablet: + !match(apple_phone, ua) && + match(apple_tablet, ua) && + !match(windows_phone, ua), + device: + (match(apple_phone, ua) || + match(apple_ipod, ua) || + match(apple_tablet, ua)) && + !match(windows_phone, ua) + }, + amazon: { + phone: match(amazon_phone, ua), + tablet: !match(amazon_phone, ua) && match(amazon_tablet, ua), + device: match(amazon_phone, ua) || match(amazon_tablet, ua) + }, + android: { + phone: + (!match(windows_phone, ua) && match(amazon_phone, ua)) || + (!match(windows_phone, ua) && match(android_phone, ua)), + tablet: + !match(windows_phone, ua) && + !match(amazon_phone, ua) && + !match(android_phone, ua) && + (match(amazon_tablet, ua) || match(android_tablet, ua)), + device: + (!match(windows_phone, ua) && + (match(amazon_phone, ua) || + match(amazon_tablet, ua) || + match(android_phone, ua) || + match(android_tablet, ua))) || + match(/\bokhttp\b/i, ua) + }, + windows: { + phone: match(windows_phone, ua), + tablet: match(windows_tablet, ua), + device: match(windows_phone, ua) || match(windows_tablet, ua) + }, + other: { + blackberry: match(other_blackberry, ua), + blackberry10: match(other_blackberry_10, ua), + opera: match(other_opera, ua), + firefox: match(other_firefox, ua), + chrome: match(other_chrome, ua), + device: + match(other_blackberry, ua) || + match(other_blackberry_10, ua) || + match(other_opera, ua) || + match(other_firefox, ua) || + match(other_chrome, ua) + } + }; + (result.any = + result.apple.device || + result.android.device || + result.windows.device || + result.other.device), + // excludes 'other' devices and ipods, targeting touchscreen phones + (result.phone = + result.apple.phone || result.android.phone || result.windows.phone), + (result.tablet = + result.apple.tablet || result.android.tablet || result.windows.tablet); + + return result; + } + + if ( + + module.exports && + typeof window === 'undefined' + ) { + // Node.js + module.exports = isMobile; + } else if ( + + module.exports && + typeof window !== 'undefined' + ) { + // Browserify + module.exports = isMobile(); + module.exports.isMobile = isMobile; + } else { + global.isMobile = isMobile(); + } +})(commonjsGlobal); +}); +var isMobile_1 = isMobile.isMobile; + +/*! + * @pixi/settings - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/settings is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The maximum recommended texture units to use. + * In theory the bigger the better, and for desktop we'll use as many as we can. + * But some mobile devices slow down if there is to many branches in the shader. + * So in practice there seems to be a sweet spot size that varies depending on the device. + * + * In v4, all mobile devices were limited to 4 texture units because for this. + * In v5, we allow all texture units to be used on modern Apple or Android devices. + * + * @private + * @param {number} max + * @returns {number} + */ +function maxRecommendedTextures(max) +{ + var allowMax = true; + + if (isMobile.tablet || isMobile.phone) + { + allowMax = false; + + if (isMobile.apple.device) + { + var match = (navigator.userAgent).match(/OS (\d+)_(\d+)?/); + + if (match) + { + var majorVersion = parseInt(match[1], 10); + + // All texture units can be used on devices that support ios 11 or above + if (majorVersion >= 11) + { + allowMax = true; + } + } + } + if (isMobile.android.device) + { + var match$1 = (navigator.userAgent).match(/Android\s([0-9.]*)/); + + if (match$1) + { + var majorVersion$1 = parseInt(match$1[1], 10); + + // All texture units can be used on devices that support Android 7 (Nougat) or above + if (majorVersion$1 >= 7) + { + allowMax = true; + } + } + } + } + + return allowMax ? max : 4; +} + +/** + * Uploading the same buffer multiple times in a single frame can cause performance issues. + * Apparent on iOS so only check for that at the moment + * This check may become more complex if this issue pops up elsewhere. + * + * @private + * @returns {boolean} + */ +function canUploadSameBuffer() +{ + return !isMobile.apple.device; +} + +/** + * User's customizable globals for overriding the default PIXI settings, such + * as a renderer's default resolution, framerate, float precision, etc. + * @example + * // Use the native window resolution as the default resolution + * // will support high-density displays when rendering + * PIXI.settings.RESOLUTION = window.devicePixelRatio; + * + * // Disable interpolation when scaling, will make texture be pixelated + * PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST; + * @namespace PIXI.settings + */ +var settings = { + + /** + * If set to true WebGL will attempt make textures mimpaped by default. + * Mipmapping will only succeed if the base texture uploaded has power of two dimensions. + * + * @static + * @name MIPMAP_TEXTURES + * @memberof PIXI.settings + * @type {PIXI.MIPMAP_MODES} + * @default PIXI.MIPMAP_MODES.POW2 + */ + MIPMAP_TEXTURES: 1, + + /** + * Default anisotropic filtering level of textures. + * Usually from 0 to 16 + * + * @static + * @name ANISOTROPIC_LEVEL + * @memberof PIXI.settings + * @type {number} + * @default 0 + */ + ANISOTROPIC_LEVEL: 0, + + /** + * Default resolution / device pixel ratio of the renderer. + * + * @static + * @name RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + RESOLUTION: 1, + + /** + * Default filter resolution. + * + * @static + * @name FILTER_RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + FILTER_RESOLUTION: 1, + + /** + * The maximum textures that this device supports. + * + * @static + * @name SPRITE_MAX_TEXTURES + * @memberof PIXI.settings + * @type {number} + * @default 32 + */ + SPRITE_MAX_TEXTURES: maxRecommendedTextures(32), + + // TODO: maybe change to SPRITE.BATCH_SIZE: 2000 + // TODO: maybe add PARTICLE.BATCH_SIZE: 15000 + + /** + * The default sprite batch size. + * + * The default aims to balance desktop and mobile devices. + * + * @static + * @name SPRITE_BATCH_SIZE + * @memberof PIXI.settings + * @type {number} + * @default 4096 + */ + SPRITE_BATCH_SIZE: 4096, + + /** + * The default render options if none are supplied to {@link PIXI.Renderer} + * or {@link PIXI.CanvasRenderer}. + * + * @static + * @name RENDER_OPTIONS + * @memberof PIXI.settings + * @type {object} + * @property {HTMLCanvasElement} view=null + * @property {number} resolution=1 + * @property {boolean} antialias=false + * @property {boolean} forceFXAA=false + * @property {boolean} autoDensity=false + * @property {boolean} transparent=false + * @property {number} backgroundColor=0x000000 + * @property {boolean} clearBeforeRender=true + * @property {boolean} preserveDrawingBuffer=false + * @property {number} width=800 + * @property {number} height=600 + * @property {boolean} legacy=false + */ + RENDER_OPTIONS: { + view: null, + antialias: false, + forceFXAA: false, + autoDensity: false, + transparent: false, + backgroundColor: 0x000000, + clearBeforeRender: true, + preserveDrawingBuffer: false, + width: 800, + height: 600, + legacy: false, + }, + + /** + * Default Garbage Collection mode. + * + * @static + * @name GC_MODE + * @memberof PIXI.settings + * @type {PIXI.GC_MODES} + * @default PIXI.GC_MODES.AUTO + */ + GC_MODE: 0, + + /** + * Default Garbage Collection max idle. + * + * @static + * @name GC_MAX_IDLE + * @memberof PIXI.settings + * @type {number} + * @default 3600 + */ + GC_MAX_IDLE: 60 * 60, + + /** + * Default Garbage Collection maximum check count. + * + * @static + * @name GC_MAX_CHECK_COUNT + * @memberof PIXI.settings + * @type {number} + * @default 600 + */ + GC_MAX_CHECK_COUNT: 60 * 10, + + /** + * Default wrap modes that are supported by pixi. + * + * @static + * @name WRAP_MODE + * @memberof PIXI.settings + * @type {PIXI.WRAP_MODES} + * @default PIXI.WRAP_MODES.CLAMP + */ + WRAP_MODE: 33071, + + /** + * Default scale mode for textures. + * + * @static + * @name SCALE_MODE + * @memberof PIXI.settings + * @type {PIXI.SCALE_MODES} + * @default PIXI.SCALE_MODES.LINEAR + */ + SCALE_MODE: 1, + + /** + * Default specify float precision in vertex shader. + * + * @static + * @name PRECISION_VERTEX + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.HIGH + */ + PRECISION_VERTEX: 'highp', + + /** + * Default specify float precision in fragment shader. + * iOS is best set at highp due to https://github.com/pixijs/pixi.js/issues/3742 + * + * @static + * @name PRECISION_FRAGMENT + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.MEDIUM + */ + PRECISION_FRAGMENT: isMobile.apple.device ? 'highp' : 'mediump', + + /** + * Can we upload the same buffer in a single frame? + * + * @static + * @name CAN_UPLOAD_SAME_BUFFER + * @memberof PIXI.settings + * @type {boolean} + */ + CAN_UPLOAD_SAME_BUFFER: canUploadSameBuffer(), + + /** + * Enables bitmap creation before image load. This feature is experimental. + * + * @static + * @name CREATE_IMAGE_BITMAP + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + CREATE_IMAGE_BITMAP: false, + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * + * @static + * @constant + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + ROUND_PIXELS: false, +}; + +var eventemitter3 = createCommonjsModule(function (module) { + +var has = Object.prototype.hasOwnProperty + , prefix = '~'; + +/** + * Constructor to create a storage for our `EE` objects. + * An `Events` instance is a plain object whose properties are event names. + * + * @constructor + * @private + */ +function Events() {} + +// +// We try to not inherit from `Object.prototype`. In some engines creating an +// instance in this way is faster than calling `Object.create(null)` directly. +// If `Object.create(null)` is not supported we prefix the event names with a +// character to make sure that the built-in object properties are not +// overridden or used as an attack vector. +// +if (Object.create) { + Events.prototype = Object.create(null); + + // + // This hack is needed because the `__proto__` property is still inherited in + // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5. + // + if (!new Events().__proto__) prefix = false; +} + +/** + * Representation of a single event listener. + * + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} [once=false] Specify if the listener is a one-time listener. + * @constructor + * @private + */ +function EE(fn, context, once) { + this.fn = fn; + this.context = context; + this.once = once || false; +} + +/** + * Add a listener for a given event. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} once Specify if the listener is a one-time listener. + * @returns {EventEmitter} + * @private + */ +function addListener(emitter, event, fn, context, once) { + if (typeof fn !== 'function') { + throw new TypeError('The listener must be a function'); + } + + var listener = new EE(fn, context || emitter, once) + , evt = prefix ? prefix + event : event; + + if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++; + else if (!emitter._events[evt].fn) emitter._events[evt].push(listener); + else emitter._events[evt] = [emitter._events[evt], listener]; + + return emitter; +} + +/** + * Clear event by name. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} evt The Event name. + * @private + */ +function clearEvent(emitter, evt) { + if (--emitter._eventsCount === 0) emitter._events = new Events(); + else delete emitter._events[evt]; +} + +/** + * Minimal `EventEmitter` interface that is molded against the Node.js + * `EventEmitter` interface. + * + * @constructor + * @public + */ +function EventEmitter() { + this._events = new Events(); + this._eventsCount = 0; +} + +/** + * Return an array listing the events for which the emitter has registered + * listeners. + * + * @returns {Array} + * @public + */ +EventEmitter.prototype.eventNames = function eventNames() { + var names = [] + , events + , name; + + if (this._eventsCount === 0) return names; + + for (name in (events = this._events)) { + if (has.call(events, name)) names.push(prefix ? name.slice(1) : name); + } + + if (Object.getOwnPropertySymbols) { + return names.concat(Object.getOwnPropertySymbols(events)); + } + + return names; +}; + +/** + * Return the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Array} The registered listeners. + * @public + */ +EventEmitter.prototype.listeners = function listeners(event) { + var evt = prefix ? prefix + event : event + , handlers = this._events[evt]; + + if (!handlers) return []; + if (handlers.fn) return [handlers.fn]; + + for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) { + ee[i] = handlers[i].fn; + } + + return ee; +}; + +/** + * Return the number of listeners listening to a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Number} The number of listeners. + * @public + */ +EventEmitter.prototype.listenerCount = function listenerCount(event) { + var evt = prefix ? prefix + event : event + , listeners = this._events[evt]; + + if (!listeners) return 0; + if (listeners.fn) return 1; + return listeners.length; +}; + +/** + * Calls each of the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Boolean} `true` if the event had listeners, else `false`. + * @public + */ +EventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return false; + + var listeners = this._events[evt] + , len = arguments.length + , args + , i; + + if (listeners.fn) { + if (listeners.once) this.removeListener(event, listeners.fn, undefined, true); + + switch (len) { + case 1: return listeners.fn.call(listeners.context), true; + case 2: return listeners.fn.call(listeners.context, a1), true; + case 3: return listeners.fn.call(listeners.context, a1, a2), true; + case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true; + case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true; + case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true; + } + + for (i = 1, args = new Array(len -1); i < len; i++) { + args[i - 1] = arguments[i]; + } + + listeners.fn.apply(listeners.context, args); + } else { + var length = listeners.length + , j; + + for (i = 0; i < length; i++) { + if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true); + + switch (len) { + case 1: listeners[i].fn.call(listeners[i].context); break; + case 2: listeners[i].fn.call(listeners[i].context, a1); break; + case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break; + case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break; + default: + if (!args) for (j = 1, args = new Array(len -1); j < len; j++) { + args[j - 1] = arguments[j]; + } + + listeners[i].fn.apply(listeners[i].context, args); + } + } + } + + return true; +}; + +/** + * Add a listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.on = function on(event, fn, context) { + return addListener(this, event, fn, context, false); +}; + +/** + * Add a one-time listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.once = function once(event, fn, context) { + return addListener(this, event, fn, context, true); +}; + +/** + * Remove the listeners of a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn Only remove the listeners that match this function. + * @param {*} context Only remove the listeners that have this context. + * @param {Boolean} once Only remove one-time listeners. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return this; + if (!fn) { + clearEvent(this, evt); + return this; + } + + var listeners = this._events[evt]; + + if (listeners.fn) { + if ( + listeners.fn === fn && + (!once || listeners.once) && + (!context || listeners.context === context) + ) { + clearEvent(this, evt); + } + } else { + for (var i = 0, events = [], length = listeners.length; i < length; i++) { + if ( + listeners[i].fn !== fn || + (once && !listeners[i].once) || + (context && listeners[i].context !== context) + ) { + events.push(listeners[i]); + } + } + + // + // Reset the array, or remove it completely if we have no more listeners. + // + if (events.length) this._events[evt] = events.length === 1 ? events[0] : events; + else clearEvent(this, evt); + } + + return this; +}; + +/** + * Remove all listeners, or those of the specified event. + * + * @param {(String|Symbol)} [event] The event name. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeAllListeners = function removeAllListeners(event) { + var evt; + + if (event) { + evt = prefix ? prefix + event : event; + if (this._events[evt]) clearEvent(this, evt); + } else { + this._events = new Events(); + this._eventsCount = 0; + } + + return this; +}; + +// +// Alias methods names because people roll like that. +// +EventEmitter.prototype.off = EventEmitter.prototype.removeListener; +EventEmitter.prototype.addListener = EventEmitter.prototype.on; + +// +// Expose the prefix. +// +EventEmitter.prefixed = prefix; + +// +// Allow `EventEmitter` to be imported as module namespace. +// +EventEmitter.EventEmitter = EventEmitter; + +// +// Expose the module. +// +{ + module.exports = EventEmitter; +} +}); + +var earcut_1 = earcut; +var default_1 = earcut; + +function earcut(data, holeIndices, dim) { + + dim = dim || 2; + + var hasHoles = holeIndices && holeIndices.length, + outerLen = hasHoles ? holeIndices[0] * dim : data.length, + outerNode = linkedList(data, 0, outerLen, dim, true), + triangles = []; + + if (!outerNode || outerNode.next === outerNode.prev) return triangles; + + var minX, minY, maxX, maxY, x, y, invSize; + + if (hasHoles) outerNode = eliminateHoles(data, holeIndices, outerNode, dim); + + // if the shape is not too simple, we'll use z-order curve hash later; calculate polygon bbox + if (data.length > 80 * dim) { + minX = maxX = data[0]; + minY = maxY = data[1]; + + for (var i = dim; i < outerLen; i += dim) { + x = data[i]; + y = data[i + 1]; + if (x < minX) minX = x; + if (y < minY) minY = y; + if (x > maxX) maxX = x; + if (y > maxY) maxY = y; + } + + // minX, minY and invSize are later used to transform coords into integers for z-order calculation + invSize = Math.max(maxX - minX, maxY - minY); + invSize = invSize !== 0 ? 1 / invSize : 0; + } + + earcutLinked(outerNode, triangles, dim, minX, minY, invSize); + + return triangles; +} + +// create a circular doubly linked list from polygon points in the specified winding order +function linkedList(data, start, end, dim, clockwise) { + var i, last; + + if (clockwise === (signedArea(data, start, end, dim) > 0)) { + for (i = start; i < end; i += dim) last = insertNode(i, data[i], data[i + 1], last); + } else { + for (i = end - dim; i >= start; i -= dim) last = insertNode(i, data[i], data[i + 1], last); + } + + if (last && equals(last, last.next)) { + removeNode(last); + last = last.next; + } + + return last; +} + +// eliminate colinear or duplicate points +function filterPoints(start, end) { + if (!start) return start; + if (!end) end = start; + + var p = start, + again; + do { + again = false; + + if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) { + removeNode(p); + p = end = p.prev; + if (p === p.next) break; + again = true; + + } else { + p = p.next; + } + } while (again || p !== end); + + return end; +} + +// main ear slicing loop which triangulates a polygon (given as a linked list) +function earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) { + if (!ear) return; + + // interlink polygon nodes in z-order + if (!pass && invSize) indexCurve(ear, minX, minY, invSize); + + var stop = ear, + prev, next; + + // iterate through ears, slicing them one by one + while (ear.prev !== ear.next) { + prev = ear.prev; + next = ear.next; + + if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) { + // cut off the triangle + triangles.push(prev.i / dim); + triangles.push(ear.i / dim); + triangles.push(next.i / dim); + + removeNode(ear); + + // skipping the next vertex leads to less sliver triangles + ear = next.next; + stop = next.next; + + continue; + } + + ear = next; + + // if we looped through the whole remaining polygon and can't find any more ears + if (ear === stop) { + // try filtering points and slicing again + if (!pass) { + earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1); + + // if this didn't work, try curing all small self-intersections locally + } else if (pass === 1) { + ear = cureLocalIntersections(filterPoints(ear), triangles, dim); + earcutLinked(ear, triangles, dim, minX, minY, invSize, 2); + + // as a last resort, try splitting the remaining polygon into two + } else if (pass === 2) { + splitEarcut(ear, triangles, dim, minX, minY, invSize); + } + + break; + } + } +} + +// check whether a polygon node forms a valid ear with adjacent nodes +function isEar(ear) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // now make sure we don't have other points inside the potential ear + var p = ear.next.next; + + while (p !== ear.prev) { + if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.next; + } + + return true; +} + +function isEarHashed(ear, minX, minY, invSize) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // triangle bbox; min & max are calculated like this for speed + var minTX = a.x < b.x ? (a.x < c.x ? a.x : c.x) : (b.x < c.x ? b.x : c.x), + minTY = a.y < b.y ? (a.y < c.y ? a.y : c.y) : (b.y < c.y ? b.y : c.y), + maxTX = a.x > b.x ? (a.x > c.x ? a.x : c.x) : (b.x > c.x ? b.x : c.x), + maxTY = a.y > b.y ? (a.y > c.y ? a.y : c.y) : (b.y > c.y ? b.y : c.y); + + // z-order range for the current triangle bbox; + var minZ = zOrder(minTX, minTY, minX, minY, invSize), + maxZ = zOrder(maxTX, maxTY, minX, minY, invSize); + + var p = ear.prevZ, + n = ear.nextZ; + + // look for points inside the triangle in both directions + while (p && p.z >= minZ && n && n.z <= maxZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + // look for remaining points in decreasing z-order + while (p && p.z >= minZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + } + + // look for remaining points in increasing z-order + while (n && n.z <= maxZ) { + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + return true; +} + +// go through all polygon nodes and cure small local self-intersections +function cureLocalIntersections(start, triangles, dim) { + var p = start; + do { + var a = p.prev, + b = p.next.next; + + if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) { + + triangles.push(a.i / dim); + triangles.push(p.i / dim); + triangles.push(b.i / dim); + + // remove two nodes involved + removeNode(p); + removeNode(p.next); + + p = start = b; + } + p = p.next; + } while (p !== start); + + return filterPoints(p); +} + +// try splitting polygon into two and triangulate them independently +function splitEarcut(start, triangles, dim, minX, minY, invSize) { + // look for a valid diagonal that divides the polygon into two + var a = start; + do { + var b = a.next.next; + while (b !== a.prev) { + if (a.i !== b.i && isValidDiagonal(a, b)) { + // split the polygon in two by the diagonal + var c = splitPolygon(a, b); + + // filter colinear points around the cuts + a = filterPoints(a, a.next); + c = filterPoints(c, c.next); + + // run earcut on each half + earcutLinked(a, triangles, dim, minX, minY, invSize); + earcutLinked(c, triangles, dim, minX, minY, invSize); + return; + } + b = b.next; + } + a = a.next; + } while (a !== start); +} + +// link every hole into the outer loop, producing a single-ring polygon without holes +function eliminateHoles(data, holeIndices, outerNode, dim) { + var queue = [], + i, len, start, end, list; + + for (i = 0, len = holeIndices.length; i < len; i++) { + start = holeIndices[i] * dim; + end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + list = linkedList(data, start, end, dim, false); + if (list === list.next) list.steiner = true; + queue.push(getLeftmost(list)); + } + + queue.sort(compareX); + + // process holes from left to right + for (i = 0; i < queue.length; i++) { + eliminateHole(queue[i], outerNode); + outerNode = filterPoints(outerNode, outerNode.next); + } + + return outerNode; +} + +function compareX(a, b) { + return a.x - b.x; +} + +// find a bridge between vertices that connects hole with an outer ring and and link it +function eliminateHole(hole, outerNode) { + outerNode = findHoleBridge(hole, outerNode); + if (outerNode) { + var b = splitPolygon(outerNode, hole); + filterPoints(b, b.next); + } +} + +// David Eberly's algorithm for finding a bridge between hole and outer polygon +function findHoleBridge(hole, outerNode) { + var p = outerNode, + hx = hole.x, + hy = hole.y, + qx = -Infinity, + m; + + // find a segment intersected by a ray from the hole's leftmost point to the left; + // segment's endpoint with lesser x will be potential connection point + do { + if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) { + var x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y); + if (x <= hx && x > qx) { + qx = x; + if (x === hx) { + if (hy === p.y) return p; + if (hy === p.next.y) return p.next; + } + m = p.x < p.next.x ? p : p.next; + } + } + p = p.next; + } while (p !== outerNode); + + if (!m) return null; + + if (hx === qx) return m; // hole touches outer segment; pick leftmost endpoint + + // look for points inside the triangle of hole point, segment intersection and endpoint; + // if there are no points found, we have a valid connection; + // otherwise choose the point of the minimum angle with the ray as connection point + + var stop = m, + mx = m.x, + my = m.y, + tanMin = Infinity, + tan; + + p = m; + + do { + if (hx >= p.x && p.x >= mx && hx !== p.x && + pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) { + + tan = Math.abs(hy - p.y) / (hx - p.x); // tangential + + if (locallyInside(p, hole) && + (tan < tanMin || (tan === tanMin && (p.x > m.x || (p.x === m.x && sectorContainsSector(m, p)))))) { + m = p; + tanMin = tan; + } + } + + p = p.next; + } while (p !== stop); + + return m; +} + +// whether sector in vertex m contains sector in vertex p in the same coordinates +function sectorContainsSector(m, p) { + return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0; +} + +// interlink polygon nodes in z-order +function indexCurve(start, minX, minY, invSize) { + var p = start; + do { + if (p.z === null) p.z = zOrder(p.x, p.y, minX, minY, invSize); + p.prevZ = p.prev; + p.nextZ = p.next; + p = p.next; + } while (p !== start); + + p.prevZ.nextZ = null; + p.prevZ = null; + + sortLinked(p); +} + +// Simon Tatham's linked list merge sort algorithm +// http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html +function sortLinked(list) { + var i, p, q, e, tail, numMerges, pSize, qSize, + inSize = 1; + + do { + p = list; + list = null; + tail = null; + numMerges = 0; + + while (p) { + numMerges++; + q = p; + pSize = 0; + for (i = 0; i < inSize; i++) { + pSize++; + q = q.nextZ; + if (!q) break; + } + qSize = inSize; + + while (pSize > 0 || (qSize > 0 && q)) { + + if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) { + e = p; + p = p.nextZ; + pSize--; + } else { + e = q; + q = q.nextZ; + qSize--; + } + + if (tail) tail.nextZ = e; + else list = e; + + e.prevZ = tail; + tail = e; + } + + p = q; + } + + tail.nextZ = null; + inSize *= 2; + + } while (numMerges > 1); + + return list; +} + +// z-order of a point given coords and inverse of the longer side of data bbox +function zOrder(x, y, minX, minY, invSize) { + // coords are transformed into non-negative 15-bit integer range + x = 32767 * (x - minX) * invSize; + y = 32767 * (y - minY) * invSize; + + x = (x | (x << 8)) & 0x00FF00FF; + x = (x | (x << 4)) & 0x0F0F0F0F; + x = (x | (x << 2)) & 0x33333333; + x = (x | (x << 1)) & 0x55555555; + + y = (y | (y << 8)) & 0x00FF00FF; + y = (y | (y << 4)) & 0x0F0F0F0F; + y = (y | (y << 2)) & 0x33333333; + y = (y | (y << 1)) & 0x55555555; + + return x | (y << 1); +} + +// find the leftmost node of a polygon ring +function getLeftmost(start) { + var p = start, + leftmost = start; + do { + if (p.x < leftmost.x || (p.x === leftmost.x && p.y < leftmost.y)) leftmost = p; + p = p.next; + } while (p !== start); + + return leftmost; +} + +// check if a point lies within a convex triangle +function pointInTriangle(ax, ay, bx, by, cx, cy, px, py) { + return (cx - px) * (ay - py) - (ax - px) * (cy - py) >= 0 && + (ax - px) * (by - py) - (bx - px) * (ay - py) >= 0 && + (bx - px) * (cy - py) - (cx - px) * (by - py) >= 0; +} + +// check if a diagonal between two polygon nodes is valid (lies in polygon interior) +function isValidDiagonal(a, b) { + return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && // dones't intersect other edges + (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && // locally visible + (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors + equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case +} + +// signed area of a triangle +function area(p, q, r) { + return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y); +} + +// check if two points are equal +function equals(p1, p2) { + return p1.x === p2.x && p1.y === p2.y; +} + +// check if two segments intersect +function intersects(p1, q1, p2, q2) { + var o1 = sign(area(p1, q1, p2)); + var o2 = sign(area(p1, q1, q2)); + var o3 = sign(area(p2, q2, p1)); + var o4 = sign(area(p2, q2, q1)); + + if (o1 !== o2 && o3 !== o4) return true; // general case + + if (o1 === 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p1q1 + if (o2 === 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p1q1 + if (o3 === 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p2q2 + if (o4 === 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p2q2 + + return false; +} + +// for collinear points p, q, r, check if point q lies on segment pr +function onSegment(p, q, r) { + return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y); +} + +function sign(num) { + return num > 0 ? 1 : num < 0 ? -1 : 0; +} + +// check if a polygon diagonal intersects any polygon segments +function intersectsPolygon(a, b) { + var p = a; + do { + if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i && + intersects(p, p.next, a, b)) return true; + p = p.next; + } while (p !== a); + + return false; +} + +// check if a polygon diagonal is locally inside the polygon +function locallyInside(a, b) { + return area(a.prev, a, a.next) < 0 ? + area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 : + area(a, b, a.prev) < 0 || area(a, a.next, b) < 0; +} + +// check if the middle point of a polygon diagonal is inside the polygon +function middleInside(a, b) { + var p = a, + inside = false, + px = (a.x + b.x) / 2, + py = (a.y + b.y) / 2; + do { + if (((p.y > py) !== (p.next.y > py)) && p.next.y !== p.y && + (px < (p.next.x - p.x) * (py - p.y) / (p.next.y - p.y) + p.x)) + inside = !inside; + p = p.next; + } while (p !== a); + + return inside; +} + +// link two polygon vertices with a bridge; if the vertices belong to the same ring, it splits polygon into two; +// if one belongs to the outer ring and another to a hole, it merges it into a single ring +function splitPolygon(a, b) { + var a2 = new Node(a.i, a.x, a.y), + b2 = new Node(b.i, b.x, b.y), + an = a.next, + bp = b.prev; + + a.next = b; + b.prev = a; + + a2.next = an; + an.prev = a2; + + b2.next = a2; + a2.prev = b2; + + bp.next = b2; + b2.prev = bp; + + return b2; +} + +// create a node and optionally link it with previous one (in a circular doubly linked list) +function insertNode(i, x, y, last) { + var p = new Node(i, x, y); + + if (!last) { + p.prev = p; + p.next = p; + + } else { + p.next = last.next; + p.prev = last; + last.next.prev = p; + last.next = p; + } + return p; +} + +function removeNode(p) { + p.next.prev = p.prev; + p.prev.next = p.next; + + if (p.prevZ) p.prevZ.nextZ = p.nextZ; + if (p.nextZ) p.nextZ.prevZ = p.prevZ; +} + +function Node(i, x, y) { + // vertex index in coordinates array + this.i = i; + + // vertex coordinates + this.x = x; + this.y = y; + + // previous and next vertex nodes in a polygon ring + this.prev = null; + this.next = null; + + // z-order curve value + this.z = null; + + // previous and next nodes in z-order + this.prevZ = null; + this.nextZ = null; + + // indicates whether this is a steiner point + this.steiner = false; +} + +// return a percentage difference between the polygon area and its triangulation area; +// used to verify correctness of triangulation +earcut.deviation = function (data, holeIndices, dim, triangles) { + var hasHoles = holeIndices && holeIndices.length; + var outerLen = hasHoles ? holeIndices[0] * dim : data.length; + + var polygonArea = Math.abs(signedArea(data, 0, outerLen, dim)); + if (hasHoles) { + for (var i = 0, len = holeIndices.length; i < len; i++) { + var start = holeIndices[i] * dim; + var end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + polygonArea -= Math.abs(signedArea(data, start, end, dim)); + } + } + + var trianglesArea = 0; + for (i = 0; i < triangles.length; i += 3) { + var a = triangles[i] * dim; + var b = triangles[i + 1] * dim; + var c = triangles[i + 2] * dim; + trianglesArea += Math.abs( + (data[a] - data[c]) * (data[b + 1] - data[a + 1]) - + (data[a] - data[b]) * (data[c + 1] - data[a + 1])); + } + + return polygonArea === 0 && trianglesArea === 0 ? 0 : + Math.abs((trianglesArea - polygonArea) / polygonArea); +}; + +function signedArea(data, start, end, dim) { + var sum = 0; + for (var i = start, j = end - dim; i < end; i += dim) { + sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]); + j = i; + } + return sum; +} + +// turn a polygon in a multi-dimensional array form (e.g. as in GeoJSON) into a form Earcut accepts +earcut.flatten = function (data) { + var dim = data[0][0].length, + result = {vertices: [], holes: [], dimensions: dim}, + holeIndex = 0; + + for (var i = 0; i < data.length; i++) { + for (var j = 0; j < data[i].length; j++) { + for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]); + } + if (i > 0) { + holeIndex += data[i - 1].length; + result.holes.push(holeIndex); + } + } + return result; +}; +earcut_1.default = default_1; + +/*! https://mths.be/punycode v1.4.1 by @mathias */ + + +/** Highest positive signed 32-bit float value */ +var maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1 + +/** Bootstring parameters */ +var base = 36; +var tMin = 1; +var tMax = 26; +var skew = 38; +var damp = 700; +var initialBias = 72; +var initialN = 128; // 0x80 +var delimiter$1 = '-'; // '\x2D' +var regexNonASCII = /[^\x20-\x7E]/; // unprintable ASCII chars + non-ASCII chars +var regexSeparators = /[\x2E\u3002\uFF0E\uFF61]/g; // RFC 3490 separators + +/** Error messages */ +var errors = { + 'overflow': 'Overflow: input needs wider integers to process', + 'not-basic': 'Illegal input >= 0x80 (not a basic code point)', + 'invalid-input': 'Invalid input' +}; + +/** Convenience shortcuts */ +var baseMinusTMin = base - tMin; +var floor = Math.floor; +var stringFromCharCode = String.fromCharCode; + +/*--------------------------------------------------------------------------*/ + +/** + * A generic error utility function. + * @private + * @param {String} type The error type. + * @returns {Error} Throws a `RangeError` with the applicable error message. + */ +function error(type) { + throw new RangeError(errors[type]); +} + +/** + * A generic `Array#map` utility function. + * @private + * @param {Array} array The array to iterate over. + * @param {Function} callback The function that gets called for every array + * item. + * @returns {Array} A new array of values returned by the callback function. + */ +function map(array, fn) { + var length = array.length; + var result = []; + while (length--) { + result[length] = fn(array[length]); + } + return result; +} + +/** + * A simple `Array#map`-like wrapper to work with domain name strings or email + * addresses. + * @private + * @param {String} domain The domain name or email address. + * @param {Function} callback The function that gets called for every + * character. + * @returns {Array} A new string of characters returned by the callback + * function. + */ +function mapDomain(string, fn) { + var parts = string.split('@'); + var result = ''; + if (parts.length > 1) { + // In email addresses, only the domain name should be punycoded. Leave + // the local part (i.e. everything up to `@`) intact. + result = parts[0] + '@'; + string = parts[1]; + } + // Avoid `split(regex)` for IE8 compatibility. See #17. + string = string.replace(regexSeparators, '\x2E'); + var labels = string.split('.'); + var encoded = map(labels, fn).join('.'); + return result + encoded; +} + +/** + * Creates an array containing the numeric code points of each Unicode + * character in the string. While JavaScript uses UCS-2 internally, + * this function will convert a pair of surrogate halves (each of which + * UCS-2 exposes as separate characters) into a single code point, + * matching UTF-16. + * @see `punycode.ucs2.encode` + * @see + * @memberOf punycode.ucs2 + * @name decode + * @param {String} string The Unicode input string (UCS-2). + * @returns {Array} The new array of code points. + */ +function ucs2decode(string) { + var output = [], + counter = 0, + length = string.length, + value, + extra; + while (counter < length) { + value = string.charCodeAt(counter++); + if (value >= 0xD800 && value <= 0xDBFF && counter < length) { + // high surrogate, and there is a next character + extra = string.charCodeAt(counter++); + if ((extra & 0xFC00) == 0xDC00) { // low surrogate + output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000); + } else { + // unmatched surrogate; only append this code unit, in case the next + // code unit is the high surrogate of a surrogate pair + output.push(value); + counter--; + } + } else { + output.push(value); + } + } + return output; +} + +/** + * Converts a digit/integer into a basic code point. + * @see `basicToDigit()` + * @private + * @param {Number} digit The numeric value of a basic code point. + * @returns {Number} The basic code point whose value (when used for + * representing integers) is `digit`, which needs to be in the range + * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is + * used; else, the lowercase form is used. The behavior is undefined + * if `flag` is non-zero and `digit` has no uppercase form. + */ +function digitToBasic(digit, flag) { + // 0..25 map to ASCII a..z or A..Z + // 26..35 map to ASCII 0..9 + return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5); +} + +/** + * Bias adaptation function as per section 3.4 of RFC 3492. + * https://tools.ietf.org/html/rfc3492#section-3.4 + * @private + */ +function adapt(delta, numPoints, firstTime) { + var k = 0; + delta = firstTime ? floor(delta / damp) : delta >> 1; + delta += floor(delta / numPoints); + for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) { + delta = floor(delta / baseMinusTMin); + } + return floor(k + (baseMinusTMin + 1) * delta / (delta + skew)); +} + +/** + * Converts a string of Unicode symbols (e.g. a domain name label) to a + * Punycode string of ASCII-only symbols. + * @memberOf punycode + * @param {String} input The string of Unicode symbols. + * @returns {String} The resulting Punycode string of ASCII-only symbols. + */ +function encode(input) { + var n, + delta, + handledCPCount, + basicLength, + bias, + j, + m, + q, + k, + t, + currentValue, + output = [], + /** `inputLength` will hold the number of code points in `input`. */ + inputLength, + /** Cached calculation results */ + handledCPCountPlusOne, + baseMinusT, + qMinusT; + + // Convert the input in UCS-2 to Unicode + input = ucs2decode(input); + + // Cache the length + inputLength = input.length; + + // Initialize the state + n = initialN; + delta = 0; + bias = initialBias; + + // Handle the basic code points + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue < 0x80) { + output.push(stringFromCharCode(currentValue)); + } + } + + handledCPCount = basicLength = output.length; + + // `handledCPCount` is the number of code points that have been handled; + // `basicLength` is the number of basic code points. + + // Finish the basic string - if it is not empty - with a delimiter + if (basicLength) { + output.push(delimiter$1); + } + + // Main encoding loop: + while (handledCPCount < inputLength) { + + // All non-basic code points < n have been handled already. Find the next + // larger one: + for (m = maxInt, j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue >= n && currentValue < m) { + m = currentValue; + } + } + + // Increase `delta` enough to advance the decoder's state to , + // but guard against overflow + handledCPCountPlusOne = handledCPCount + 1; + if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) { + error('overflow'); + } + + delta += (m - n) * handledCPCountPlusOne; + n = m; + + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + + if (currentValue < n && ++delta > maxInt) { + error('overflow'); + } + + if (currentValue == n) { + // Represent delta as a generalized variable-length integer + for (q = delta, k = base; /* no condition */ ; k += base) { + t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias); + if (q < t) { + break; + } + qMinusT = q - t; + baseMinusT = base - t; + output.push( + stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0)) + ); + q = floor(qMinusT / baseMinusT); + } + + output.push(stringFromCharCode(digitToBasic(q, 0))); + bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength); + delta = 0; + ++handledCPCount; + } + } + + ++delta; + ++n; + + } + return output.join(''); +} + +/** + * Converts a Unicode string representing a domain name or an email address to + * Punycode. Only the non-ASCII parts of the domain name will be converted, + * i.e. it doesn't matter if you call it with a domain that's already in + * ASCII. + * @memberOf punycode + * @param {String} input The domain name or email address to convert, as a + * Unicode string. + * @returns {String} The Punycode representation of the given domain name or + * email address. + */ +function toASCII(input) { + return mapDomain(input, function(string) { + return regexNonASCII.test(string) ? + 'xn--' + encode(string) : + string; + }); +} + +// Copyright Joyent, Inc. and other Node contributors. + +function isNull(arg) { + return arg === null; +} + +function isNullOrUndefined(arg) { + return arg == null; +} + +function isString(arg) { + return typeof arg === 'string'; +} + +function isObject(arg) { + return typeof arg === 'object' && arg !== null; +} + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + + +// If obj.hasOwnProperty has been overridden, then calling +// obj.hasOwnProperty(prop) will break. +// See: https://github.com/joyent/node/issues/1707 +function hasOwnProperty$1(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop); +} +var isArray = Array.isArray || function (xs) { + return Object.prototype.toString.call(xs) === '[object Array]'; +}; +function stringifyPrimitive(v) { + switch (typeof v) { + case 'string': + return v; + + case 'boolean': + return v ? 'true' : 'false'; + + case 'number': + return isFinite(v) ? v : ''; + + default: + return ''; + } +} + +function stringify (obj, sep, eq, name) { + sep = sep || '&'; + eq = eq || '='; + if (obj === null) { + obj = undefined; + } + + if (typeof obj === 'object') { + return map$1(objectKeys(obj), function(k) { + var ks = encodeURIComponent(stringifyPrimitive(k)) + eq; + if (isArray(obj[k])) { + return map$1(obj[k], function(v) { + return ks + encodeURIComponent(stringifyPrimitive(v)); + }).join(sep); + } else { + return ks + encodeURIComponent(stringifyPrimitive(obj[k])); + } + }).join(sep); + + } + + if (!name) return ''; + return encodeURIComponent(stringifyPrimitive(name)) + eq + + encodeURIComponent(stringifyPrimitive(obj)); +} +function map$1 (xs, f) { + if (xs.map) return xs.map(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + res.push(f(xs[i], i)); + } + return res; +} + +var objectKeys = Object.keys || function (obj) { + var res = []; + for (var key in obj) { + if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key); + } + return res; +}; + +function parse(qs, sep, eq, options) { + sep = sep || '&'; + eq = eq || '='; + var obj = {}; + + if (typeof qs !== 'string' || qs.length === 0) { + return obj; + } + + var regexp = /\+/g; + qs = qs.split(sep); + + var maxKeys = 1000; + if (options && typeof options.maxKeys === 'number') { + maxKeys = options.maxKeys; + } + + var len = qs.length; + // maxKeys <= 0 means that we should not limit keys count + if (maxKeys > 0 && len > maxKeys) { + len = maxKeys; + } + + for (var i = 0; i < len; ++i) { + var x = qs[i].replace(regexp, '%20'), + idx = x.indexOf(eq), + kstr, vstr, k, v; + + if (idx >= 0) { + kstr = x.substr(0, idx); + vstr = x.substr(idx + 1); + } else { + kstr = x; + vstr = ''; + } + + k = decodeURIComponent(kstr); + v = decodeURIComponent(vstr); + + if (!hasOwnProperty$1(obj, k)) { + obj[k] = v; + } else if (isArray(obj[k])) { + obj[k].push(v); + } else { + obj[k] = [obj[k], v]; + } + } + + return obj; +} + +// Copyright Joyent, Inc. and other Node contributors. +var url = { + parse: urlParse, + resolve: urlResolve, + resolveObject: urlResolveObject, + format: urlFormat, + Url: Url +}; +function Url() { + this.protocol = null; + this.slashes = null; + this.auth = null; + this.host = null; + this.port = null; + this.hostname = null; + this.hash = null; + this.search = null; + this.query = null; + this.pathname = null; + this.path = null; + this.href = null; +} + +// Reference: RFC 3986, RFC 1808, RFC 2396 + +// define these here so at least they only have to be +// compiled once on the first module load. +var protocolPattern = /^([a-z0-9.+-]+:)/i, + portPattern = /:[0-9]*$/, + + // Special case for a simple path URL + simplePathPattern = /^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/, + + // RFC 2396: characters reserved for delimiting URLs. + // We actually just auto-escape these. + delims = ['<', '>', '"', '`', ' ', '\r', '\n', '\t'], + + // RFC 2396: characters not allowed for various reasons. + unwise = ['{', '}', '|', '\\', '^', '`'].concat(delims), + + // Allowed by RFCs, but cause of XSS attacks. Always escape these. + autoEscape = ['\''].concat(unwise), + // Characters that are never ever allowed in a hostname. + // Note that any invalid chars are also handled, but these + // are the ones that are *expected* to be seen, so we fast-path + // them. + nonHostChars = ['%', '/', '?', ';', '#'].concat(autoEscape), + hostEndingChars = ['/', '?', '#'], + hostnameMaxLen = 255, + hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/, + hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/, + // protocols that can allow "unsafe" and "unwise" chars. + unsafeProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that never have a hostname. + hostlessProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that always contain a // bit. + slashedProtocol = { + 'http': true, + 'https': true, + 'ftp': true, + 'gopher': true, + 'file': true, + 'http:': true, + 'https:': true, + 'ftp:': true, + 'gopher:': true, + 'file:': true + }; + +function urlParse(url, parseQueryString, slashesDenoteHost) { + if (url && isObject(url) && url instanceof Url) return url; + + var u = new Url; + u.parse(url, parseQueryString, slashesDenoteHost); + return u; +} +Url.prototype.parse = function(url, parseQueryString, slashesDenoteHost) { + return parse$1(this, url, parseQueryString, slashesDenoteHost); +}; + +function parse$1(self, url, parseQueryString, slashesDenoteHost) { + if (!isString(url)) { + throw new TypeError('Parameter \'url\' must be a string, not ' + typeof url); + } + + // Copy chrome, IE, opera backslash-handling behavior. + // Back slashes before the query string get converted to forward slashes + // See: https://code.google.com/p/chromium/issues/detail?id=25916 + var queryIndex = url.indexOf('?'), + splitter = + (queryIndex !== -1 && queryIndex < url.indexOf('#')) ? '?' : '#', + uSplit = url.split(splitter), + slashRegex = /\\/g; + uSplit[0] = uSplit[0].replace(slashRegex, '/'); + url = uSplit.join(splitter); + + var rest = url; + + // trim before proceeding. + // This is to support parse stuff like " http://foo.com \n" + rest = rest.trim(); + + if (!slashesDenoteHost && url.split('#').length === 1) { + // Try fast path regexp + var simplePath = simplePathPattern.exec(rest); + if (simplePath) { + self.path = rest; + self.href = rest; + self.pathname = simplePath[1]; + if (simplePath[2]) { + self.search = simplePath[2]; + if (parseQueryString) { + self.query = parse(self.search.substr(1)); + } else { + self.query = self.search.substr(1); + } + } else if (parseQueryString) { + self.search = ''; + self.query = {}; + } + return self; + } + } + + var proto = protocolPattern.exec(rest); + if (proto) { + proto = proto[0]; + var lowerProto = proto.toLowerCase(); + self.protocol = lowerProto; + rest = rest.substr(proto.length); + } + + // figure out if it's got a host + // user@server is *always* interpreted as a hostname, and url + // resolution will treat //foo/bar as host=foo,path=bar because that's + // how the browser resolves relative URLs. + if (slashesDenoteHost || proto || rest.match(/^\/\/[^@\/]+@[^@\/]+/)) { + var slashes = rest.substr(0, 2) === '//'; + if (slashes && !(proto && hostlessProtocol[proto])) { + rest = rest.substr(2); + self.slashes = true; + } + } + var i, hec, l, p; + if (!hostlessProtocol[proto] && + (slashes || (proto && !slashedProtocol[proto]))) { + + // there's a hostname. + // the first instance of /, ?, ;, or # ends the host. + // + // If there is an @ in the hostname, then non-host chars *are* allowed + // to the left of the last @ sign, unless some host-ending character + // comes *before* the @-sign. + // URLs are obnoxious. + // + // ex: + // http://a@b@c/ => user:a@b host:c + // http://a@b?@c => user:a host:c path:/?@c + + // v0.12 TODO(isaacs): This is not quite how Chrome does things. + // Review our test case against browsers more comprehensively. + + // find the first instance of any hostEndingChars + var hostEnd = -1; + for (i = 0; i < hostEndingChars.length; i++) { + hec = rest.indexOf(hostEndingChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + + // at this point, either we have an explicit point where the + // auth portion cannot go past, or the last @ char is the decider. + var auth, atSign; + if (hostEnd === -1) { + // atSign can be anywhere. + atSign = rest.lastIndexOf('@'); + } else { + // atSign must be in auth portion. + // http://a@b/c@d => host:b auth:a path:/c@d + atSign = rest.lastIndexOf('@', hostEnd); + } + + // Now we have a portion which is definitely the auth. + // Pull that off. + if (atSign !== -1) { + auth = rest.slice(0, atSign); + rest = rest.slice(atSign + 1); + self.auth = decodeURIComponent(auth); + } + + // the host is the remaining to the left of the first non-host char + hostEnd = -1; + for (i = 0; i < nonHostChars.length; i++) { + hec = rest.indexOf(nonHostChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + // if we still have not hit it, then the entire thing is a host. + if (hostEnd === -1) + hostEnd = rest.length; + + self.host = rest.slice(0, hostEnd); + rest = rest.slice(hostEnd); + + // pull out port. + parseHost(self); + + // we've indicated that there is a hostname, + // so even if it's empty, it has to be present. + self.hostname = self.hostname || ''; + + // if hostname begins with [ and ends with ] + // assume that it's an IPv6 address. + var ipv6Hostname = self.hostname[0] === '[' && + self.hostname[self.hostname.length - 1] === ']'; + + // validate a little. + if (!ipv6Hostname) { + var hostparts = self.hostname.split(/\./); + for (i = 0, l = hostparts.length; i < l; i++) { + var part = hostparts[i]; + if (!part) continue; + if (!part.match(hostnamePartPattern)) { + var newpart = ''; + for (var j = 0, k = part.length; j < k; j++) { + if (part.charCodeAt(j) > 127) { + // we replace non-ASCII char with a temporary placeholder + // we need this to make sure size of hostname is not + // broken by replacing non-ASCII by nothing + newpart += 'x'; + } else { + newpart += part[j]; + } + } + // we test again with ASCII char only + if (!newpart.match(hostnamePartPattern)) { + var validParts = hostparts.slice(0, i); + var notHost = hostparts.slice(i + 1); + var bit = part.match(hostnamePartStart); + if (bit) { + validParts.push(bit[1]); + notHost.unshift(bit[2]); + } + if (notHost.length) { + rest = '/' + notHost.join('.') + rest; + } + self.hostname = validParts.join('.'); + break; + } + } + } + } + + if (self.hostname.length > hostnameMaxLen) { + self.hostname = ''; + } else { + // hostnames are always lower case. + self.hostname = self.hostname.toLowerCase(); + } + + if (!ipv6Hostname) { + // IDNA Support: Returns a punycoded representation of "domain". + // It only converts parts of the domain name that + // have non-ASCII characters, i.e. it doesn't matter if + // you call it with a domain that already is ASCII-only. + self.hostname = toASCII(self.hostname); + } + + p = self.port ? ':' + self.port : ''; + var h = self.hostname || ''; + self.host = h + p; + self.href += self.host; + + // strip [ and ] from the hostname + // the host field still retains them, though + if (ipv6Hostname) { + self.hostname = self.hostname.substr(1, self.hostname.length - 2); + if (rest[0] !== '/') { + rest = '/' + rest; + } + } + } + + // now rest is set to the post-host stuff. + // chop off any delim chars. + if (!unsafeProtocol[lowerProto]) { + + // First, make 100% sure that any "autoEscape" chars get + // escaped, even if encodeURIComponent doesn't think they + // need to be. + for (i = 0, l = autoEscape.length; i < l; i++) { + var ae = autoEscape[i]; + if (rest.indexOf(ae) === -1) + continue; + var esc = encodeURIComponent(ae); + if (esc === ae) { + esc = escape(ae); + } + rest = rest.split(ae).join(esc); + } + } + + + // chop off from the tail first. + var hash = rest.indexOf('#'); + if (hash !== -1) { + // got a fragment string. + self.hash = rest.substr(hash); + rest = rest.slice(0, hash); + } + var qm = rest.indexOf('?'); + if (qm !== -1) { + self.search = rest.substr(qm); + self.query = rest.substr(qm + 1); + if (parseQueryString) { + self.query = parse(self.query); + } + rest = rest.slice(0, qm); + } else if (parseQueryString) { + // no query string, but parseQueryString still requested + self.search = ''; + self.query = {}; + } + if (rest) self.pathname = rest; + if (slashedProtocol[lowerProto] && + self.hostname && !self.pathname) { + self.pathname = '/'; + } + + //to support http.request + if (self.pathname || self.search) { + p = self.pathname || ''; + var s = self.search || ''; + self.path = p + s; + } + + // finally, reconstruct the href based on what has been validated. + self.href = format(self); + return self; +} + +// format a parsed object into a url string +function urlFormat(obj) { + // ensure it's an object, and not a string url. + // If it's an obj, this is a no-op. + // this way, you can call url_format() on strings + // to clean up potentially wonky urls. + if (isString(obj)) obj = parse$1({}, obj); + return format(obj); +} + +function format(self) { + var auth = self.auth || ''; + if (auth) { + auth = encodeURIComponent(auth); + auth = auth.replace(/%3A/i, ':'); + auth += '@'; + } + + var protocol = self.protocol || '', + pathname = self.pathname || '', + hash = self.hash || '', + host = false, + query = ''; + + if (self.host) { + host = auth + self.host; + } else if (self.hostname) { + host = auth + (self.hostname.indexOf(':') === -1 ? + self.hostname : + '[' + this.hostname + ']'); + if (self.port) { + host += ':' + self.port; + } + } + + if (self.query && + isObject(self.query) && + Object.keys(self.query).length) { + query = stringify(self.query); + } + + var search = self.search || (query && ('?' + query)) || ''; + + if (protocol && protocol.substr(-1) !== ':') protocol += ':'; + + // only the slashedProtocols get the //. Not mailto:, xmpp:, etc. + // unless they had them to begin with. + if (self.slashes || + (!protocol || slashedProtocol[protocol]) && host !== false) { + host = '//' + (host || ''); + if (pathname && pathname.charAt(0) !== '/') pathname = '/' + pathname; + } else if (!host) { + host = ''; + } + + if (hash && hash.charAt(0) !== '#') hash = '#' + hash; + if (search && search.charAt(0) !== '?') search = '?' + search; + + pathname = pathname.replace(/[?#]/g, function(match) { + return encodeURIComponent(match); + }); + search = search.replace('#', '%23'); + + return protocol + host + pathname + search + hash; +} + +Url.prototype.format = function() { + return format(this); +}; + +function urlResolve(source, relative) { + return urlParse(source, false, true).resolve(relative); +} + +Url.prototype.resolve = function(relative) { + return this.resolveObject(urlParse(relative, false, true)).format(); +}; + +function urlResolveObject(source, relative) { + if (!source) return relative; + return urlParse(source, false, true).resolveObject(relative); +} + +Url.prototype.resolveObject = function(relative) { + if (isString(relative)) { + var rel = new Url(); + rel.parse(relative, false, true); + relative = rel; + } + + var result = new Url(); + var tkeys = Object.keys(this); + for (var tk = 0; tk < tkeys.length; tk++) { + var tkey = tkeys[tk]; + result[tkey] = this[tkey]; + } + + // hash is always overridden, no matter what. + // even href="" will remove it. + result.hash = relative.hash; + + // if the relative url is empty, then there's nothing left to do here. + if (relative.href === '') { + result.href = result.format(); + return result; + } + + // hrefs like //foo/bar always cut to the protocol. + if (relative.slashes && !relative.protocol) { + // take everything except the protocol from relative + var rkeys = Object.keys(relative); + for (var rk = 0; rk < rkeys.length; rk++) { + var rkey = rkeys[rk]; + if (rkey !== 'protocol') + result[rkey] = relative[rkey]; + } + + //urlParse appends trailing / to urls like http://www.example.com + if (slashedProtocol[result.protocol] && + result.hostname && !result.pathname) { + result.path = result.pathname = '/'; + } + + result.href = result.format(); + return result; + } + var relPath; + if (relative.protocol && relative.protocol !== result.protocol) { + // if it's a known url protocol, then changing + // the protocol does weird things + // first, if it's not file:, then we MUST have a host, + // and if there was a path + // to begin with, then we MUST have a path. + // if it is file:, then the host is dropped, + // because that's known to be hostless. + // anything else is assumed to be absolute. + if (!slashedProtocol[relative.protocol]) { + var keys = Object.keys(relative); + for (var v = 0; v < keys.length; v++) { + var k = keys[v]; + result[k] = relative[k]; + } + result.href = result.format(); + return result; + } + + result.protocol = relative.protocol; + if (!relative.host && !hostlessProtocol[relative.protocol]) { + relPath = (relative.pathname || '').split('/'); + while (relPath.length && !(relative.host = relPath.shift())); + if (!relative.host) relative.host = ''; + if (!relative.hostname) relative.hostname = ''; + if (relPath[0] !== '') relPath.unshift(''); + if (relPath.length < 2) relPath.unshift(''); + result.pathname = relPath.join('/'); + } else { + result.pathname = relative.pathname; + } + result.search = relative.search; + result.query = relative.query; + result.host = relative.host || ''; + result.auth = relative.auth; + result.hostname = relative.hostname || relative.host; + result.port = relative.port; + // to support http.request + if (result.pathname || result.search) { + var p = result.pathname || ''; + var s = result.search || ''; + result.path = p + s; + } + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; + } + + var isSourceAbs = (result.pathname && result.pathname.charAt(0) === '/'), + isRelAbs = ( + relative.host || + relative.pathname && relative.pathname.charAt(0) === '/' + ), + mustEndAbs = (isRelAbs || isSourceAbs || + (result.host && relative.pathname)), + removeAllDots = mustEndAbs, + srcPath = result.pathname && result.pathname.split('/') || [], + psychotic = result.protocol && !slashedProtocol[result.protocol]; + relPath = relative.pathname && relative.pathname.split('/') || []; + // if the url is a non-slashed url, then relative + // links like ../.. should be able + // to crawl up to the hostname, as well. This is strange. + // result.protocol has already been set by now. + // Later on, put the first path part into the host field. + if (psychotic) { + result.hostname = ''; + result.port = null; + if (result.host) { + if (srcPath[0] === '') srcPath[0] = result.host; + else srcPath.unshift(result.host); + } + result.host = ''; + if (relative.protocol) { + relative.hostname = null; + relative.port = null; + if (relative.host) { + if (relPath[0] === '') relPath[0] = relative.host; + else relPath.unshift(relative.host); + } + relative.host = null; + } + mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === ''); + } + var authInHost; + if (isRelAbs) { + // it's absolute. + result.host = (relative.host || relative.host === '') ? + relative.host : result.host; + result.hostname = (relative.hostname || relative.hostname === '') ? + relative.hostname : result.hostname; + result.search = relative.search; + result.query = relative.query; + srcPath = relPath; + // fall through to the dot-handling below. + } else if (relPath.length) { + // it's relative + // throw away the existing file, and take the new path instead. + if (!srcPath) srcPath = []; + srcPath.pop(); + srcPath = srcPath.concat(relPath); + result.search = relative.search; + result.query = relative.query; + } else if (!isNullOrUndefined(relative.search)) { + // just pull out the search. + // like href='?foo'. + // Put this after the other two cases because it simplifies the booleans + if (psychotic) { + result.hostname = result.host = srcPath.shift(); + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + result.search = relative.search; + result.query = relative.query; + //to support http.request + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.href = result.format(); + return result; + } + + if (!srcPath.length) { + // no path at all. easy. + // we've already handled the other stuff above. + result.pathname = null; + //to support http.request + if (result.search) { + result.path = '/' + result.search; + } else { + result.path = null; + } + result.href = result.format(); + return result; + } + + // if a url ENDs in . or .., then it must get a trailing slash. + // however, if it ends in anything else non-slashy, + // then it must NOT get a trailing slash. + var last = srcPath.slice(-1)[0]; + var hasTrailingSlash = ( + (result.host || relative.host || srcPath.length > 1) && + (last === '.' || last === '..') || last === ''); + + // strip single dots, resolve double dots to parent dir + // if the path tries to go above the root, `up` ends up > 0 + var up = 0; + for (var i = srcPath.length; i >= 0; i--) { + last = srcPath[i]; + if (last === '.') { + srcPath.splice(i, 1); + } else if (last === '..') { + srcPath.splice(i, 1); + up++; + } else if (up) { + srcPath.splice(i, 1); + up--; + } + } + + // if the path is allowed to go above the root, restore leading ..s + if (!mustEndAbs && !removeAllDots) { + for (; up--; up) { + srcPath.unshift('..'); + } + } + + if (mustEndAbs && srcPath[0] !== '' && + (!srcPath[0] || srcPath[0].charAt(0) !== '/')) { + srcPath.unshift(''); + } + + if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) { + srcPath.push(''); + } + + var isAbsolute = srcPath[0] === '' || + (srcPath[0] && srcPath[0].charAt(0) === '/'); + + // put the host back + if (psychotic) { + result.hostname = result.host = isAbsolute ? '' : + srcPath.length ? srcPath.shift() : ''; + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + + mustEndAbs = mustEndAbs || (result.host && srcPath.length); + + if (mustEndAbs && !isAbsolute) { + srcPath.unshift(''); + } + + if (!srcPath.length) { + result.pathname = null; + result.path = null; + } else { + result.pathname = srcPath.join('/'); + } + + //to support request.http + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.auth = relative.auth || result.auth; + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; +}; + +Url.prototype.parseHost = function() { + return parseHost(this); +}; + +function parseHost(self) { + var host = self.host; + var port = portPattern.exec(host); + if (port) { + port = port[0]; + if (port !== ':') { + self.port = port.substr(1); + } + host = host.substr(0, host.length - port.length); + } + if (host) self.hostname = host; +} + +/*! + * @pixi/constants - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/constants is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * Different types of environments for WebGL. + * + * @static + * @memberof PIXI + * @name ENV + * @enum {number} + * @property {number} WEBGL_LEGACY - Used for older v1 WebGL devices. PixiJS will aim to ensure compatibility + * with older / less advanced devices. If you experience unexplained flickering prefer this environment. + * @property {number} WEBGL - Version 1 of WebGL + * @property {number} WEBGL2 - Version 2 of WebGL + */ +var ENV = { + WEBGL_LEGACY: 0, + WEBGL: 1, + WEBGL2: 2, +}; + +/** + * Constant to identify the Renderer Type. + * + * @static + * @memberof PIXI + * @name RENDERER_TYPE + * @enum {number} + * @property {number} UNKNOWN - Unknown render type. + * @property {number} WEBGL - WebGL render type. + * @property {number} CANVAS - Canvas render type. + */ +var RENDERER_TYPE = { + UNKNOWN: 0, + WEBGL: 1, + CANVAS: 2, +}; + +/** + * Various blend modes supported by PIXI. + * + * IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes. + * Anything else will silently act like NORMAL. + * + * @memberof PIXI + * @name BLEND_MODES + * @enum {number} + * @property {number} NORMAL + * @property {number} ADD + * @property {number} MULTIPLY + * @property {number} SCREEN + * @property {number} OVERLAY + * @property {number} DARKEN + * @property {number} LIGHTEN + * @property {number} COLOR_DODGE + * @property {number} COLOR_BURN + * @property {number} HARD_LIGHT + * @property {number} SOFT_LIGHT + * @property {number} DIFFERENCE + * @property {number} EXCLUSION + * @property {number} HUE + * @property {number} SATURATION + * @property {number} COLOR + * @property {number} LUMINOSITY + * @property {number} NORMAL_NPM + * @property {number} ADD_NPM + * @property {number} SCREEN_NPM + * @property {number} NONE + * @property {number} SRC_IN + * @property {number} SRC_OUT + * @property {number} SRC_ATOP + * @property {number} DST_OVER + * @property {number} DST_IN + * @property {number} DST_OUT + * @property {number} DST_ATOP + * @property {number} SUBTRACT + * @property {number} SRC_OVER + * @property {number} ERASE + */ +var BLEND_MODES = { + NORMAL: 0, + ADD: 1, + MULTIPLY: 2, + SCREEN: 3, + OVERLAY: 4, + DARKEN: 5, + LIGHTEN: 6, + COLOR_DODGE: 7, + COLOR_BURN: 8, + HARD_LIGHT: 9, + SOFT_LIGHT: 10, + DIFFERENCE: 11, + EXCLUSION: 12, + HUE: 13, + SATURATION: 14, + COLOR: 15, + LUMINOSITY: 16, + NORMAL_NPM: 17, + ADD_NPM: 18, + SCREEN_NPM: 19, + NONE: 20, + + SRC_OVER: 0, + SRC_IN: 21, + SRC_OUT: 22, + SRC_ATOP: 23, + DST_OVER: 24, + DST_IN: 25, + DST_OUT: 26, + DST_ATOP: 27, + ERASE: 26, + SUBTRACT: 28, +}; + +/** + * Various webgl draw modes. These can be used to specify which GL drawMode to use + * under certain situations and renderers. + * + * @memberof PIXI + * @static + * @name DRAW_MODES + * @enum {number} + * @property {number} POINTS + * @property {number} LINES + * @property {number} LINE_LOOP + * @property {number} LINE_STRIP + * @property {number} TRIANGLES + * @property {number} TRIANGLE_STRIP + * @property {number} TRIANGLE_FAN + */ +var DRAW_MODES = { + POINTS: 0, + LINES: 1, + LINE_LOOP: 2, + LINE_STRIP: 3, + TRIANGLES: 4, + TRIANGLE_STRIP: 5, + TRIANGLE_FAN: 6, +}; + +/** + * Various GL texture/resources formats. + * + * @memberof PIXI + * @static + * @name FORMATS + * @enum {number} + * @property {number} RGBA=6408 + * @property {number} RGB=6407 + * @property {number} ALPHA=6406 + * @property {number} LUMINANCE=6409 + * @property {number} LUMINANCE_ALPHA=6410 + * @property {number} DEPTH_COMPONENT=6402 + * @property {number} DEPTH_STENCIL=34041 + */ +var FORMATS = { + RGBA: 6408, + RGB: 6407, + ALPHA: 6406, + LUMINANCE: 6409, + LUMINANCE_ALPHA: 6410, + DEPTH_COMPONENT: 6402, + DEPTH_STENCIL: 34041, +}; + +/** + * Various GL target types. + * + * @memberof PIXI + * @static + * @name TARGETS + * @enum {number} + * @property {number} TEXTURE_2D=3553 + * @property {number} TEXTURE_CUBE_MAP=34067 + * @property {number} TEXTURE_2D_ARRAY=35866 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_X=34069 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_X=34070 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Y=34071 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Y=34072 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Z=34073 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Z=34074 + */ +var TARGETS = { + TEXTURE_2D: 3553, + TEXTURE_CUBE_MAP: 34067, + TEXTURE_2D_ARRAY: 35866, + TEXTURE_CUBE_MAP_POSITIVE_X: 34069, + TEXTURE_CUBE_MAP_NEGATIVE_X: 34070, + TEXTURE_CUBE_MAP_POSITIVE_Y: 34071, + TEXTURE_CUBE_MAP_NEGATIVE_Y: 34072, + TEXTURE_CUBE_MAP_POSITIVE_Z: 34073, + TEXTURE_CUBE_MAP_NEGATIVE_Z: 34074, +}; + +/** + * Various GL data format types. + * + * @memberof PIXI + * @static + * @name TYPES + * @enum {number} + * @property {number} UNSIGNED_BYTE=5121 + * @property {number} UNSIGNED_SHORT=5123 + * @property {number} UNSIGNED_SHORT_5_6_5=33635 + * @property {number} UNSIGNED_SHORT_4_4_4_4=32819 + * @property {number} UNSIGNED_SHORT_5_5_5_1=32820 + * @property {number} FLOAT=5126 + * @property {number} HALF_FLOAT=36193 + */ +var TYPES = { + UNSIGNED_BYTE: 5121, + UNSIGNED_SHORT: 5123, + UNSIGNED_SHORT_5_6_5: 33635, + UNSIGNED_SHORT_4_4_4_4: 32819, + UNSIGNED_SHORT_5_5_5_1: 32820, + FLOAT: 5126, + HALF_FLOAT: 36193, +}; + +/** + * The scale modes that are supported by pixi. + * + * The {@link PIXI.settings.SCALE_MODE} scale mode affects the default scaling mode of future operations. + * It can be re-assigned to either LINEAR or NEAREST, depending upon suitability. + * + * @memberof PIXI + * @static + * @name SCALE_MODES + * @enum {number} + * @property {number} LINEAR Smooth scaling + * @property {number} NEAREST Pixelating scaling + */ +var SCALE_MODES = { + LINEAR: 1, + NEAREST: 0, +}; + +/** + * The wrap modes that are supported by pixi. + * + * The {@link PIXI.settings.WRAP_MODE} wrap mode affects the default wrapping mode of future operations. + * It can be re-assigned to either CLAMP or REPEAT, depending upon suitability. + * If the texture is non power of two then clamp will be used regardless as WebGL can + * only use REPEAT if the texture is po2. + * + * This property only affects WebGL. + * + * @name WRAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} CLAMP - The textures uvs are clamped + * @property {number} REPEAT - The texture uvs tile and repeat + * @property {number} MIRRORED_REPEAT - The texture uvs tile and repeat with mirroring + */ +var WRAP_MODES = { + CLAMP: 33071, + REPEAT: 10497, + MIRRORED_REPEAT: 33648, +}; + +/** + * Mipmap filtering modes that are supported by pixi. + * + * The {@link PIXI.settings.MIPMAP_TEXTURES} affects default texture filtering. + * Mipmaps are generated for a baseTexture if its `mipmap` field is `ON`, + * or its `POW2` and texture dimensions are powers of 2. + * Due to platform restriction, `ON` option will work like `POW2` for webgl-1. + * + * This property only affects WebGL. + * + * @name MIPMAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} OFF - No mipmaps + * @property {number} POW2 - Generate mipmaps if texture dimensions are pow2 + * @property {number} ON - Always generate mipmaps + */ +var MIPMAP_MODES = { + OFF: 0, + POW2: 1, + ON: 2, +}; + +/** + * The gc modes that are supported by pixi. + * + * The {@link PIXI.settings.GC_MODE} Garbage Collection mode for PixiJS textures is AUTO + * If set to GC_MODE, the renderer will occasionally check textures usage. If they are not + * used for a specified period of time they will be removed from the GPU. They will of course + * be uploaded again when they are required. This is a silent behind the scenes process that + * should ensure that the GPU does not get filled up. + * + * Handy for mobile devices! + * This property only affects WebGL. + * + * @name GC_MODES + * @enum {number} + * @static + * @memberof PIXI + * @property {number} AUTO - Garbage collection will happen periodically automatically + * @property {number} MANUAL - Garbage collection will need to be called manually + */ +var GC_MODES = { + AUTO: 0, + MANUAL: 1, +}; + +/** + * Constants that specify float precision in shaders. + * + * @name PRECISION + * @memberof PIXI + * @static + * @enum {string} + * @constant + * @property {string} LOW='lowp' + * @property {string} MEDIUM='mediump' + * @property {string} HIGH='highp' + */ +var PRECISION = { + LOW: 'lowp', + MEDIUM: 'mediump', + HIGH: 'highp', +}; + +/*! + * @pixi/utils - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/utils is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The prefix that denotes a URL is for a retina asset. + * + * @static + * @name RETINA_PREFIX + * @memberof PIXI.settings + * @type {RegExp} + * @default /@([0-9\.]+)x/ + * @example `@2x` + */ +settings.RETINA_PREFIX = /@([0-9\.]+)x/; + +/** + * Should the `failIfMajorPerformanceCaveat` flag be enabled as a context option used in the `isWebGLSupported` function. + * For most scenarios this should be left as true, as otherwise the user may have a poor experience. + * However, it can be useful to disable under certain scenarios, such as headless unit tests. + * + * @static + * @name FAIL_IF_MAJOR_PERFORMANCE_CAVEAT + * @memberof PIXI.settings + * @type {boolean} + * @default true + */ +settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = true; + +var saidHello = false; +var VERSION = '5.1.3'; + +/** + * Logs out the version and renderer information for this running instance of PIXI. + * If you don't want to see this message you can run `PIXI.utils.skipHello()` before + * creating your renderer. Keep in mind that doing that will forever make you a jerk face. + * + * @static + * @function sayHello + * @memberof PIXI.utils + * @param {string} type - The string renderer type to log. + */ +function sayHello(type) +{ + if (saidHello) + { + return; + } + + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + var args = [ + ("\n %c %c %c PixiJS " + VERSION + " - ✰ " + type + " ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \n\n"), + 'background: #ff66a5; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff66a5; background: #030307; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'background: #ffc3dc; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;' ]; + + window.console.log.apply(console, args); + } + else if (window.console) + { + window.console.log(("PixiJS " + VERSION + " - " + type + " - http://www.pixijs.com/")); + } + + saidHello = true; +} + +var supported; + +/** + * Helper for checking for WebGL support. + * + * @memberof PIXI.utils + * @function isWebGLSupported + * @return {boolean} Is WebGL supported. + */ +function isWebGLSupported() +{ + if (typeof supported === 'undefined') + { + supported = (function supported() + { + var contextOptions = { + stencil: true, + failIfMajorPerformanceCaveat: settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT, + }; + + try + { + if (!window.WebGLRenderingContext) + { + return false; + } + + var canvas = document.createElement('canvas'); + var gl = canvas.getContext('webgl', contextOptions) + || canvas.getContext('experimental-webgl', contextOptions); + + var success = !!(gl && gl.getContextAttributes().stencil); + + if (gl) + { + var loseContext = gl.getExtension('WEBGL_lose_context'); + + if (loseContext) + { + loseContext.loseContext(); + } + } + + gl = null; + + return success; + } + catch (e) + { + return false; + } + })(); + } + + return supported; +} + +/** + * Converts a hexadecimal color number to an [R, G, B] array of normalized floats (numbers from 0.0 to 1.0). + * + * @example + * PIXI.utils.hex2rgb(0xffffff); // returns [1, 1, 1] + * @memberof PIXI.utils + * @function hex2rgb + * @param {number} hex - The hexadecimal number to convert + * @param {number[]} [out=[]] If supplied, this array will be used rather than returning a new one + * @return {number[]} An array representing the [R, G, B] of the color where all values are floats. + */ +function hex2rgb(hex, out) +{ + out = out || []; + + out[0] = ((hex >> 16) & 0xFF) / 255; + out[1] = ((hex >> 8) & 0xFF) / 255; + out[2] = (hex & 0xFF) / 255; + + return out; +} + +/** + * Converts a hexadecimal color number to a string. + * + * @example + * PIXI.utils.hex2string(0xffffff); // returns "#ffffff" + * @memberof PIXI.utils + * @function hex2string + * @param {number} hex - Number in hex (e.g., `0xffffff`) + * @return {string} The string color (e.g., `"#ffffff"`). + */ +function hex2string(hex) +{ + hex = hex.toString(16); + hex = '000000'.substr(0, 6 - hex.length) + hex; + + return ("#" + hex); +} + +/** + * Converts a hexadecimal string to a hexadecimal color number. + * + * @example + * PIXI.utils.string2hex("#ffffff"); // returns 0xffffff + * @memberof PIXI.utils + * @function string2hex + * @param {string} The string color (e.g., `"#ffffff"`) + * @return {number} Number in hexadecimal. + */ +function string2hex(string) +{ + if (typeof string === 'string' && string[0] === '#') + { + string = string.substr(1); + } + + return parseInt(string, 16); +} + +/** + * Corrects PixiJS blend, takes premultiplied alpha into account + * + * @memberof PIXI.utils + * @function mapPremultipliedBlendModes + * @private + * @param {Array} [array] - The array to output into. + * @return {Array} Mapped modes. + */ +function mapPremultipliedBlendModes() +{ + var pm = []; + var npm = []; + + for (var i = 0; i < 32; i++) + { + pm[i] = i; + npm[i] = i; + } + + pm[BLEND_MODES.NORMAL_NPM] = BLEND_MODES.NORMAL; + pm[BLEND_MODES.ADD_NPM] = BLEND_MODES.ADD; + pm[BLEND_MODES.SCREEN_NPM] = BLEND_MODES.SCREEN; + + npm[BLEND_MODES.NORMAL] = BLEND_MODES.NORMAL_NPM; + npm[BLEND_MODES.ADD] = BLEND_MODES.ADD_NPM; + npm[BLEND_MODES.SCREEN] = BLEND_MODES.SCREEN_NPM; + + var array = []; + + array.push(npm); + array.push(pm); + + return array; +} + +/** + * maps premultiply flag and blendMode to adjusted blendMode + * @memberof PIXI.utils + * @const premultiplyBlendMode + * @type {Array} + */ +var premultiplyBlendMode = mapPremultipliedBlendModes(); + +/** + * changes blendMode according to texture format + * + * @memberof PIXI.utils + * @function correctBlendMode + * @param {number} blendMode supposed blend mode + * @param {boolean} premultiplied whether source is premultiplied + * @returns {number} true blend mode for this texture + */ +function correctBlendMode(blendMode, premultiplied) +{ + return premultiplyBlendMode[premultiplied ? 1 : 0][blendMode]; +} + +/** + * combines rgb and alpha to out array + * + * @memberof PIXI.utils + * @function premultiplyRgba + * @param {Float32Array|number[]} rgb input rgb + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyRgba(rgb, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + if (premultiply || premultiply === undefined) + { + out[0] = rgb[0] * alpha; + out[1] = rgb[1] * alpha; + out[2] = rgb[2] * alpha; + } + else + { + out[0] = rgb[0]; + out[1] = rgb[1]; + out[2] = rgb[2]; + } + out[3] = alpha; + + return out; +} + +/** + * premultiplies tint + * + * @memberof PIXI.utils + * @function premultiplyTint + * @param {number} tint integer RGB + * @param {number} alpha floating point alpha (0.0-1.0) + * @returns {number} tint multiplied by alpha + */ +function premultiplyTint(tint, alpha) +{ + if (alpha === 1.0) + { + return (alpha * 255 << 24) + tint; + } + if (alpha === 0.0) + { + return 0; + } + var R = ((tint >> 16) & 0xFF); + var G = ((tint >> 8) & 0xFF); + var B = (tint & 0xFF); + + R = ((R * alpha) + 0.5) | 0; + G = ((G * alpha) + 0.5) | 0; + B = ((B * alpha) + 0.5) | 0; + + return (alpha * 255 << 24) + (R << 16) + (G << 8) + B; +} + +/** + * converts integer tint and float alpha to vec4 form, premultiplies by default + * + * @memberof PIXI.utils + * @function premultiplyTintToRgba + * @param {number} tint input tint + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyTintToRgba(tint, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + out[0] = ((tint >> 16) & 0xFF) / 255.0; + out[1] = ((tint >> 8) & 0xFF) / 255.0; + out[2] = (tint & 0xFF) / 255.0; + if (premultiply || premultiply === undefined) + { + out[0] *= alpha; + out[1] *= alpha; + out[2] *= alpha; + } + out[3] = alpha; + + return out; +} + +/** + * Generic Mask Stack data structure + * + * @memberof PIXI.utils + * @function createIndicesForQuads + * @param {number} size - Number of quads + * @param {Uint16Array|Uint32Array} [outBuffer] - Buffer for output, length has to be `6 * size` + * @return {Uint16Array|Uint32Array} - Resulting index buffer + */ +function createIndicesForQuads(size, outBuffer) +{ + if ( outBuffer === void 0 ) outBuffer = null; + + // the total number of indices in our array, there are 6 points per quad. + var totalIndices = size * 6; + + outBuffer = outBuffer || new Uint16Array(totalIndices); + + if (outBuffer.length !== totalIndices) + { + throw new Error(("Out buffer length is incorrect, got " + (outBuffer.length) + " and expected " + totalIndices)); + } + + // fill the indices with the quads to draw + for (var i = 0, j = 0; i < totalIndices; i += 6, j += 4) + { + outBuffer[i + 0] = j + 0; + outBuffer[i + 1] = j + 1; + outBuffer[i + 2] = j + 2; + outBuffer[i + 3] = j + 0; + outBuffer[i + 4] = j + 2; + outBuffer[i + 5] = j + 3; + } + + return outBuffer; +} + +/** + * Remove items from a javascript array without generating garbage + * + * @function removeItems + * @memberof PIXI.utils + * @param {Array} arr Array to remove elements from + * @param {number} startIdx starting index + * @param {number} removeCount how many to remove + */ +function removeItems(arr, startIdx, removeCount) +{ + var length = arr.length; + var i; + + if (startIdx >= length || removeCount === 0) + { + return; + } + + removeCount = (startIdx + removeCount > length ? length - startIdx : removeCount); + + var len = length - removeCount; + + for (i = startIdx; i < len; ++i) + { + arr[i] = arr[i + removeCount]; + } + + arr.length = len; +} + +var nextUid = 0; + +/** + * Gets the next unique identifier + * + * @memberof PIXI.utils + * @function uid + * @return {number} The next unique identifier to use. + */ +function uid() +{ + return ++nextUid; +} + +/** + * Returns sign of number + * + * @memberof PIXI.utils + * @function sign + * @param {number} n - the number to check the sign of + * @returns {number} 0 if `n` is 0, -1 if `n` is negative, 1 if `n` is positive + */ +function sign$1(n) +{ + if (n === 0) { return 0; } + + return n < 0 ? -1 : 1; +} + +// Taken from the bit-twiddle package + +/** + * Rounds to next power of two. + * + * @function nextPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} + */ +function nextPow2(v) +{ + v += v === 0; + --v; + v |= v >>> 1; + v |= v >>> 2; + v |= v >>> 4; + v |= v >>> 8; + v |= v >>> 16; + + return v + 1; +} + +/** + * Checks if a number is a power of two. + * + * @function isPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {boolean} `true` if value is power of two + */ +function isPow2(v) +{ + return !(v & (v - 1)) && (!!v); +} + +/** + * Computes ceil of log base 2 + * + * @function log2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} logarithm base 2 + */ +function log2(v) +{ + var r = (v > 0xFFFF) << 4; + + v >>>= r; + + var shift = (v > 0xFF) << 3; + + v >>>= shift; r |= shift; + shift = (v > 0xF) << 2; + v >>>= shift; r |= shift; + shift = (v > 0x3) << 1; + v >>>= shift; r |= shift; + + return r | (v >> 1); +} + +/** + * @todo Describe property usage + * + * @static + * @name ProgramCache + * @memberof PIXI.utils + * @type {Object} + */ +var ProgramCache = {}; + +/** + * @todo Describe property usage + * + * @static + * @name TextureCache + * @memberof PIXI.utils + * @type {Object} + */ +var TextureCache = Object.create(null); + +/** + * @todo Describe property usage + * + * @static + * @name BaseTextureCache + * @memberof PIXI.utils + * @type {Object} + */ + +var BaseTextureCache = Object.create(null); + +/** + * Trim transparent borders from a canvas + * + * @memberof PIXI.utils + * @function trimCanvas + * @param {HTMLCanvasElement} canvas - the canvas to trim + * @returns {object} Trim data + */ +function trimCanvas(canvas) +{ + // https://gist.github.com/remy/784508 + + var width = canvas.width; + var height = canvas.height; + + var context = canvas.getContext('2d'); + var imageData = context.getImageData(0, 0, width, height); + var pixels = imageData.data; + var len = pixels.length; + + var bound = { + top: null, + left: null, + right: null, + bottom: null, + }; + var data = null; + var i; + var x; + var y; + + for (i = 0; i < len; i += 4) + { + if (pixels[i + 3] !== 0) + { + x = (i / 4) % width; + y = ~~((i / 4) / width); + + if (bound.top === null) + { + bound.top = y; + } + + if (bound.left === null) + { + bound.left = x; + } + else if (x < bound.left) + { + bound.left = x; + } + + if (bound.right === null) + { + bound.right = x + 1; + } + else if (bound.right < x) + { + bound.right = x + 1; + } + + if (bound.bottom === null) + { + bound.bottom = y; + } + else if (bound.bottom < y) + { + bound.bottom = y; + } + } + } + + if (bound.top !== null) + { + width = bound.right - bound.left; + height = bound.bottom - bound.top + 1; + data = context.getImageData(bound.left, bound.top, width, height); + } + + return { + height: height, + width: width, + data: data, + }; +} + +/** + * Creates a Canvas element of the given size to be used as a target for rendering to. + * + * @class + * @memberof PIXI.utils + */ +var CanvasRenderTarget = function CanvasRenderTarget(width, height, resolution) +{ + /** + * The Canvas object that belongs to this CanvasRenderTarget. + * + * @member {HTMLCanvasElement} + */ + this.canvas = document.createElement('canvas'); + + /** + * A CanvasRenderingContext2D object representing a two-dimensional rendering context. + * + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + this.resolution = resolution || settings.RESOLUTION; + + this.resize(width, height); +}; + +var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + +/** + * Clears the canvas that was created by the CanvasRenderTarget class. + * + * @private + */ +CanvasRenderTarget.prototype.clear = function clear () +{ + this.context.setTransform(1, 0, 0, 1, 0, 0); + this.context.clearRect(0, 0, this.canvas.width, this.canvas.height); +}; + +/** + * Resizes the canvas to the specified width and height. + * + * @param {number} width - the new width of the canvas + * @param {number} height - the new height of the canvas + */ +CanvasRenderTarget.prototype.resize = function resize (width, height) +{ + this.canvas.width = width * this.resolution; + this.canvas.height = height * this.resolution; +}; + +/** + * Destroys this canvas. + * + */ +CanvasRenderTarget.prototype.destroy = function destroy () +{ + this.context = null; + this.canvas = null; +}; + +/** + * The width of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.width.get = function () +{ + return this.canvas.width; +}; + +prototypeAccessors.width.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.width = val; +}; + +/** + * The height of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.height.get = function () +{ + return this.canvas.height; +}; + +prototypeAccessors.height.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.height = val; +}; + +Object.defineProperties( CanvasRenderTarget.prototype, prototypeAccessors ); + +var tempAnchor; + +/** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * Nipped from the resource loader! + * + * @ignore + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ +function determineCrossOrigin(url$1, loc) +{ + if ( loc === void 0 ) loc = window.location; + + // data: and javascript: urls are considered same-origin + if (url$1.indexOf('data:') === 0) + { + return ''; + } + + // default is window.location + loc = loc || window.location; + + if (!tempAnchor) + { + tempAnchor = document.createElement('a'); + } + + // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + tempAnchor.href = url$1; + url$1 = url.parse(tempAnchor.href); + + var samePort = (!url$1.port && loc.port === '') || (url$1.port === loc.port); + + // if cross origin + if (url$1.hostname !== loc.hostname || !samePort || url$1.protocol !== loc.protocol) + { + return 'anonymous'; + } + + return ''; +} + +/** + * get the resolution / device pixel ratio of an asset by looking for the prefix + * used by spritesheets and image urls + * + * @memberof PIXI.utils + * @function getResolutionOfUrl + * @param {string} url - the image path + * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set. + * @return {number} resolution / device pixel ratio of an asset + */ +function getResolutionOfUrl(url, defaultValue) +{ + var resolution = settings.RETINA_PREFIX.exec(url); + + if (resolution) + { + return parseFloat(resolution[1]); + } + + return defaultValue !== undefined ? defaultValue : 1; +} + +// A map of warning messages already fired +var warnings = {}; + +/** + * Helper for warning developers about deprecated features & settings. + * A stack track for warnings is given; useful for tracking-down where + * deprecated methods/properties/classes are being used within the code. + * + * @memberof PIXI.utils + * @function deprecation + * @param {string} version - The version where the feature became deprecated + * @param {string} message - Message should include what is deprecated, where, and the new solution + * @param {number} [ignoreDepth=3] - The number of steps to ignore at the top of the error stack + * this is mostly to ignore internal deprecation calls. + */ +function deprecation(version, message, ignoreDepth) +{ + if ( ignoreDepth === void 0 ) ignoreDepth = 3; + + // Ignore duplicat + if (warnings[message]) + { + return; + } + + /* eslint-disable no-console */ + var stack = new Error().stack; + + // Handle IE < 10 and Safari < 6 + if (typeof stack === 'undefined') + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + } + else + { + // chop off the stack trace which includes PixiJS internal calls + stack = stack.split('\n').splice(ignoreDepth).join('\n'); + + if (console.groupCollapsed) + { + console.groupCollapsed( + '%cPixiJS Deprecation Warning: %c%s', + 'color:#614108;background:#fffbe6', + 'font-weight:normal;color:#614108;background:#fffbe6', + (message + "\nDeprecated since v" + version) + ); + console.warn(stack); + console.groupEnd(); + } + else + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + console.warn(stack); + } + } + /* eslint-enable no-console */ + + warnings[message] = true; +} + +/*! + * @pixi/math - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/math is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * @class + * @memberof PIXI + */ +var Point = function Point(x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; +}; + +/** + * Creates a clone of this point + * + * @return {PIXI.Point} a copy of the point + */ +Point.prototype.clone = function clone () +{ + return new Point(this.x, this.y); +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from + * @returns {PIXI.IPoint} Returns itself. + */ +Point.prototype.copyFrom = function copyFrom (p) +{ + this.set(p.x, p.y); + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +Point.prototype.copyTo = function copyTo (p) +{ + p.set(this.x, this.y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +Point.prototype.equals = function equals (p) +{ + return (p.x === this.x) && (p.y === this.y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +Point.prototype.set = function set (x, y) +{ + this.x = x || 0; + this.y = y || ((y !== 0) ? this.x : 0); +}; + +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * An ObservablePoint is a point that triggers a callback when the point's position is changed. + * + * @class + * @memberof PIXI + */ +var ObservablePoint = function ObservablePoint(cb, scope, x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + this._x = x; + this._y = y; + + this.cb = cb; + this.scope = scope; +}; + +var prototypeAccessors$1 = { x: { configurable: true },y: { configurable: true } }; + +/** + * Creates a clone of this point. + * The callback and scope params can be overidden otherwise they will default + * to the clone object's values. + * + * @override + * @param {Function} [cb=null] - callback when changed + * @param {object} [scope=null] - owner of callback + * @return {PIXI.ObservablePoint} a copy of the point + */ +ObservablePoint.prototype.clone = function clone (cb, scope) +{ + if ( cb === void 0 ) cb = null; + if ( scope === void 0 ) scope = null; + + var _cb = cb || this.cb; + var _scope = scope || this.scope; + + return new ObservablePoint(_cb, _scope, this._x, this._y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +ObservablePoint.prototype.set = function set (x, y) +{ + var _x = x || 0; + var _y = y || ((y !== 0) ? _x : 0); + + if (this._x !== _x || this._y !== _y) + { + this._x = _x; + this._y = _y; + this.cb.call(this.scope); + } +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from. + * @returns {PIXI.IPoint} Returns itself. + */ +ObservablePoint.prototype.copyFrom = function copyFrom (p) +{ + if (this._x !== p.x || this._y !== p.y) + { + this._x = p.x; + this._y = p.y; + this.cb.call(this.scope); + } + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +ObservablePoint.prototype.copyTo = function copyTo (p) +{ + p.set(this._x, this._y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +ObservablePoint.prototype.equals = function equals (p) +{ + return (p.x === this._x) && (p.y === this._y); +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.x.get = function () +{ + return this._x; +}; + +prototypeAccessors$1.x.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._x !== value) + { + this._x = value; + this.cb.call(this.scope); + } +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.y.get = function () +{ + return this._y; +}; + +prototypeAccessors$1.y.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._y !== value) + { + this._y = value; + this.cb.call(this.scope); + } +}; + +Object.defineProperties( ObservablePoint.prototype, prototypeAccessors$1 ); + +/** + * A number, or a string containing a number. + * @memberof PIXI + * @typedef {(PIXI.Point|PIXI.ObservablePoint)} IPoint + */ + +/** + * Two Pi. + * + * @static + * @constant {number} PI_2 + * @memberof PIXI + */ +var PI_2 = Math.PI * 2; + +/** + * Conversion factor for converting radians to degrees. + * + * @static + * @constant {number} RAD_TO_DEG + * @memberof PIXI + */ +var RAD_TO_DEG = 180 / Math.PI; + +/** + * Conversion factor for converting degrees to radians. + * + * @static + * @constant {number} DEG_TO_RAD + * @memberof PIXI + */ +var DEG_TO_RAD = Math.PI / 180; + +/** + * Constants that identify shapes, mainly to prevent `instanceof` calls. + * + * @static + * @constant + * @name SHAPES + * @memberof PIXI + * @type {object} + * @property {number} POLY Polygon + * @property {number} RECT Rectangle + * @property {number} CIRC Circle + * @property {number} ELIP Ellipse + * @property {number} RREC Rounded Rectangle + */ +var SHAPES = { + POLY: 0, + RECT: 1, + CIRC: 2, + ELIP: 3, + RREC: 4, +}; + +/** + * The PixiJS Matrix as a class makes it a lot faster. + * + * Here is a representation of it: + * ```js + * | a | c | tx| + * | b | d | ty| + * | 0 | 0 | 1 | + * ``` + * @class + * @memberof PIXI + */ +var Matrix = function Matrix(a, b, c, d, tx, ty) +{ + if ( a === void 0 ) a = 1; + if ( b === void 0 ) b = 0; + if ( c === void 0 ) c = 0; + if ( d === void 0 ) d = 1; + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + /** + * @member {number} + * @default 1 + */ + this.a = a; + + /** + * @member {number} + * @default 0 + */ + this.b = b; + + /** + * @member {number} + * @default 0 + */ + this.c = c; + + /** + * @member {number} + * @default 1 + */ + this.d = d; + + /** + * @member {number} + * @default 0 + */ + this.tx = tx; + + /** + * @member {number} + * @default 0 + */ + this.ty = ty; + + this.array = null; +}; + +var staticAccessors = { IDENTITY: { configurable: true },TEMP_MATRIX: { configurable: true } }; + +/** + * Creates a Matrix object based on the given array. The Element to Matrix mapping order is as follows: + * + * a = array[0] + * b = array[1] + * c = array[3] + * d = array[4] + * tx = array[2] + * ty = array[5] + * + * @param {number[]} array - The array that the matrix will be populated from. + */ +Matrix.prototype.fromArray = function fromArray (array) +{ + this.a = array[0]; + this.b = array[1]; + this.c = array[3]; + this.d = array[4]; + this.tx = array[2]; + this.ty = array[5]; +}; + +/** + * sets the matrix properties + * + * @param {number} a - Matrix component + * @param {number} b - Matrix component + * @param {number} c - Matrix component + * @param {number} d - Matrix component + * @param {number} tx - Matrix component + * @param {number} ty - Matrix component + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.set = function set (a, b, c, d, tx, ty) +{ + this.a = a; + this.b = b; + this.c = c; + this.d = d; + this.tx = tx; + this.ty = ty; + + return this; +}; + +/** + * Creates an array from the current Matrix object. + * + * @param {boolean} transpose - Whether we need to transpose the matrix or not + * @param {Float32Array} [out=new Float32Array(9)] - If provided the array will be assigned to out + * @return {number[]} the newly created array which contains the matrix + */ +Matrix.prototype.toArray = function toArray (transpose, out) +{ + if (!this.array) + { + this.array = new Float32Array(9); + } + + var array = out || this.array; + + if (transpose) + { + array[0] = this.a; + array[1] = this.b; + array[2] = 0; + array[3] = this.c; + array[4] = this.d; + array[5] = 0; + array[6] = this.tx; + array[7] = this.ty; + array[8] = 1; + } + else + { + array[0] = this.a; + array[1] = this.c; + array[2] = this.tx; + array[3] = this.b; + array[4] = this.d; + array[5] = this.ty; + array[6] = 0; + array[7] = 0; + array[8] = 1; + } + + return array; +}; + +/** + * Get a new position with the current transformation applied. + * Can be used to go from a child's coordinate space to the world coordinate space. (e.g. rendering) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, transformed through this matrix + */ +Matrix.prototype.apply = function apply (pos, newPos) +{ + newPos = newPos || new Point(); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.a * x) + (this.c * y) + this.tx; + newPos.y = (this.b * x) + (this.d * y) + this.ty; + + return newPos; +}; + +/** + * Get a new position with the inverse of the current transformation applied. + * Can be used to go from the world coordinate space to a child's coordinate space. (e.g. input) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, inverse-transformed through this matrix + */ +Matrix.prototype.applyInverse = function applyInverse (pos, newPos) +{ + newPos = newPos || new Point(); + + var id = 1 / ((this.a * this.d) + (this.c * -this.b)); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.d * id * x) + (-this.c * id * y) + (((this.ty * this.c) - (this.tx * this.d)) * id); + newPos.y = (this.a * id * y) + (-this.b * id * x) + (((-this.ty * this.a) + (this.tx * this.b)) * id); + + return newPos; +}; + +/** + * Translates the matrix on the x and y. + * + * @param {number} x How much to translate x by + * @param {number} y How much to translate y by + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.translate = function translate (x, y) +{ + this.tx += x; + this.ty += y; + + return this; +}; + +/** + * Applies a scale transformation to the matrix. + * + * @param {number} x The amount to scale horizontally + * @param {number} y The amount to scale vertically + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.scale = function scale (x, y) +{ + this.a *= x; + this.d *= y; + this.c *= x; + this.b *= y; + this.tx *= x; + this.ty *= y; + + return this; +}; + +/** + * Applies a rotation transformation to the matrix. + * + * @param {number} angle - The angle in radians. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.rotate = function rotate (angle) +{ + var cos = Math.cos(angle); + var sin = Math.sin(angle); + + var a1 = this.a; + var c1 = this.c; + var tx1 = this.tx; + + this.a = (a1 * cos) - (this.b * sin); + this.b = (a1 * sin) + (this.b * cos); + this.c = (c1 * cos) - (this.d * sin); + this.d = (c1 * sin) + (this.d * cos); + this.tx = (tx1 * cos) - (this.ty * sin); + this.ty = (tx1 * sin) + (this.ty * cos); + + return this; +}; + +/** + * Appends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to append. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.append = function append (matrix) +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + + this.a = (matrix.a * a1) + (matrix.b * c1); + this.b = (matrix.a * b1) + (matrix.b * d1); + this.c = (matrix.c * a1) + (matrix.d * c1); + this.d = (matrix.c * b1) + (matrix.d * d1); + + this.tx = (matrix.tx * a1) + (matrix.ty * c1) + this.tx; + this.ty = (matrix.tx * b1) + (matrix.ty * d1) + this.ty; + + return this; +}; + +/** + * Sets the matrix based on all the available properties + * + * @param {number} x - Position on the x axis + * @param {number} y - Position on the y axis + * @param {number} pivotX - Pivot on the x axis + * @param {number} pivotY - Pivot on the y axis + * @param {number} scaleX - Scale on the x axis + * @param {number} scaleY - Scale on the y axis + * @param {number} rotation - Rotation in radians + * @param {number} skewX - Skew on the x axis + * @param {number} skewY - Skew on the y axis + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.setTransform = function setTransform (x, y, pivotX, pivotY, scaleX, scaleY, rotation, skewX, skewY) +{ + this.a = Math.cos(rotation + skewY) * scaleX; + this.b = Math.sin(rotation + skewY) * scaleX; + this.c = -Math.sin(rotation - skewX) * scaleY; + this.d = Math.cos(rotation - skewX) * scaleY; + + this.tx = x - ((pivotX * this.a) + (pivotY * this.c)); + this.ty = y - ((pivotX * this.b) + (pivotY * this.d)); + + return this; +}; + +/** + * Prepends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to prepend + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.prepend = function prepend (matrix) +{ + var tx1 = this.tx; + + if (matrix.a !== 1 || matrix.b !== 0 || matrix.c !== 0 || matrix.d !== 1) + { + var a1 = this.a; + var c1 = this.c; + + this.a = (a1 * matrix.a) + (this.b * matrix.c); + this.b = (a1 * matrix.b) + (this.b * matrix.d); + this.c = (c1 * matrix.a) + (this.d * matrix.c); + this.d = (c1 * matrix.b) + (this.d * matrix.d); + } + + this.tx = (tx1 * matrix.a) + (this.ty * matrix.c) + matrix.tx; + this.ty = (tx1 * matrix.b) + (this.ty * matrix.d) + matrix.ty; + + return this; +}; + +/** + * Decomposes the matrix (x, y, scaleX, scaleY, and rotation) and sets the properties on to a transform. + * + * @param {PIXI.Transform} transform - The transform to apply the properties to. + * @return {PIXI.Transform} The transform with the newly applied properties + */ +Matrix.prototype.decompose = function decompose (transform) +{ + // sort out rotation / skew.. + var a = this.a; + var b = this.b; + var c = this.c; + var d = this.d; + + var skewX = -Math.atan2(-c, d); + var skewY = Math.atan2(b, a); + + var delta = Math.abs(skewX + skewY); + + if (delta < 0.00001 || Math.abs(PI_2 - delta) < 0.00001) + { + transform.rotation = skewY; + transform.skew.x = transform.skew.y = 0; + } + else + { + transform.rotation = 0; + transform.skew.x = skewX; + transform.skew.y = skewY; + } + + // next set scale + transform.scale.x = Math.sqrt((a * a) + (b * b)); + transform.scale.y = Math.sqrt((c * c) + (d * d)); + + // next set position + transform.position.x = this.tx; + transform.position.y = this.ty; + + return transform; +}; + +/** + * Inverts this matrix + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.invert = function invert () +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + var tx1 = this.tx; + var n = (a1 * d1) - (b1 * c1); + + this.a = d1 / n; + this.b = -b1 / n; + this.c = -c1 / n; + this.d = a1 / n; + this.tx = ((c1 * this.ty) - (d1 * tx1)) / n; + this.ty = -((a1 * this.ty) - (b1 * tx1)) / n; + + return this; +}; + +/** + * Resets this Matrix to an identity (default) matrix. + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.identity = function identity () +{ + this.a = 1; + this.b = 0; + this.c = 0; + this.d = 1; + this.tx = 0; + this.ty = 0; + + return this; +}; + +/** + * Creates a new Matrix object with the same values as this one. + * + * @return {PIXI.Matrix} A copy of this matrix. Good for chaining method calls. + */ +Matrix.prototype.clone = function clone () +{ + var matrix = new Matrix(); + + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the given matrix to be the same as the ones in this matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy to. + * @return {PIXI.Matrix} The matrix given in parameter with its values updated. + */ +Matrix.prototype.copyTo = function copyTo (matrix) +{ + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the matrix to be the same as the ones in given matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy from. + * @return {PIXI.Matrix} this + */ +Matrix.prototype.copyFrom = function copyFrom (matrix) +{ + this.a = matrix.a; + this.b = matrix.b; + this.c = matrix.c; + this.d = matrix.d; + this.tx = matrix.tx; + this.ty = matrix.ty; + + return this; +}; + +/** + * A default (identity) matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.IDENTITY.get = function () +{ + return new Matrix(); +}; + +/** + * A temp matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.TEMP_MATRIX.get = function () +{ + return new Matrix(); +}; + +Object.defineProperties( Matrix, staticAccessors ); + +// Your friendly neighbour https://en.wikipedia.org/wiki/Dihedral_group + +/* + * Transform matrix for operation n is: + * | ux | vx | + * | uy | vy | + */ + +var ux = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1]; +var uy = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vx = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vy = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1]; + +/** + * [Cayley Table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * for the composition of each rotation in the dihederal group D8. + * + * @type number[][] + * @private + */ +var rotationCayley = []; + +/** + * Matrices for each `GD8Symmetry` rotation. + * + * @type Matrix[] + * @private + */ +var rotationMatrices = []; + +/* + * Alias for {@code Math.sign}. + */ +var signum = Math.sign; + +/* + * Initializes `rotationCayley` and `rotationMatrices`. It is called + * only once below. + */ +function init() +{ + for (var i = 0; i < 16; i++) + { + var row = []; + + rotationCayley.push(row); + + for (var j = 0; j < 16; j++) + { + /* Multiplies rotation matrices i and j. */ + var _ux = signum((ux[i] * ux[j]) + (vx[i] * uy[j])); + var _uy = signum((uy[i] * ux[j]) + (vy[i] * uy[j])); + var _vx = signum((ux[i] * vx[j]) + (vx[i] * vy[j])); + var _vy = signum((uy[i] * vx[j]) + (vy[i] * vy[j])); + + /* Finds rotation matrix matching the product and pushes it. */ + for (var k = 0; k < 16; k++) + { + if (ux[k] === _ux && uy[k] === _uy + && vx[k] === _vx && vy[k] === _vy) + { + row.push(k); + break; + } + } + } + } + + for (var i$1 = 0; i$1 < 16; i$1++) + { + var mat = new Matrix(); + + mat.set(ux[i$1], uy[i$1], vx[i$1], vy[i$1], 0, 0); + rotationMatrices.push(mat); + } +} + +init(); + +/** + * @memberof PIXI + * @typedef {number} GD8Symmetry + * @see PIXI.GroupD8 + */ + +/** + * Implements the dihedral group D8, which is similar to + * [group D4]{@link http://mathworld.wolfram.com/DihedralGroupD4.html}; + * D8 is the same but with diagonals, and it is used for texture + * rotations. + * + * The directions the U- and V- axes after rotation + * of an angle of `a: GD8Constant` are the vectors `(uX(a), uY(a))` + * and `(vX(a), vY(a))`. These aren't necessarily unit vectors. + * + * **Origin:**
+ * This is the small part of gameofbombs.com portal system. It works. + * + * @see PIXI.GroupD8.E + * @see PIXI.GroupD8.SE + * @see PIXI.GroupD8.S + * @see PIXI.GroupD8.SW + * @see PIXI.GroupD8.W + * @see PIXI.GroupD8.NW + * @see PIXI.GroupD8.N + * @see PIXI.GroupD8.NE + * @author Ivan @ivanpopelyshev + * @class + * @memberof PIXI + */ +var GroupD8 = { + /** + * | Rotation | Direction | + * |----------|-----------| + * | 0° | East | + * + * @constant {PIXI.GD8Symmetry} + */ + E: 0, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 45°↻ | Southeast | + * + * @constant {PIXI.GD8Symmetry} + */ + SE: 1, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 90°↻ | South | + * + * @constant {PIXI.GD8Symmetry} + */ + S: 2, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 135°↻ | Southwest | + * + * @constant {PIXI.GD8Symmetry} + */ + SW: 3, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 180° | West | + * + * @constant {PIXI.GD8Symmetry} + */ + W: 4, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -135°/225°↻ | Northwest | + * + * @constant {PIXI.GD8Symmetry} + */ + NW: 5, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -90°/270°↻ | North | + * + * @constant {PIXI.GD8Symmetry} + */ + N: 6, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -45°/315°↻ | Northeast | + * + * @constant {PIXI.GD8Symmetry} + */ + NE: 7, + + /** + * Reflection about Y-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_VERTICAL: 8, + + /** + * Reflection about the main diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + MAIN_DIAGONAL: 10, + + /** + * Reflection about X-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_HORIZONTAL: 12, + + /** + * Reflection about reverse diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + REVERSE_DIAGONAL: 14, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the U-axis + * after rotating the axes. + */ + uX: function (ind) { return ux[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the U-axis + * after rotating the axes. + */ + uY: function (ind) { return uy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the V-axis + * after rotating the axes. + */ + vX: function (ind) { return vx[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the V-axis + * after rotating the axes. + */ + vY: function (ind) { return vy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - symmetry whose opposite + * is needed. Only rotations have opposite symmetries while + * reflections don't. + * @return {PIXI.GD8Symmetry} The opposite symmetry of `rotation` + */ + inv: function (rotation) { + if (rotation & 8)// true only if between 8 & 15 (reflections) + { + return rotation & 15;// or rotation % 16 + } + + return (-rotation) & 7;// or (8 - rotation) % 8 + }, + + /** + * Composes the two D8 operations. + * + * Taking `^` as reflection: + * + * | | E=0 | S=2 | W=4 | N=6 | E^=8 | S^=10 | W^=12 | N^=14 | + * |-------|-----|-----|-----|-----|------|-------|-------|-------| + * | E=0 | E | S | W | N | E^ | S^ | W^ | N^ | + * | S=2 | S | W | N | E | S^ | W^ | N^ | E^ | + * | W=4 | W | N | E | S | W^ | N^ | E^ | S^ | + * | N=6 | N | E | S | W | N^ | E^ | S^ | W^ | + * | E^=8 | E^ | N^ | W^ | S^ | E | N | W | S | + * | S^=10 | S^ | E^ | N^ | W^ | S | E | N | W | + * | W^=12 | W^ | S^ | E^ | N^ | W | S | E | N | + * | N^=14 | N^ | W^ | S^ | E^ | N | W | S | E | + * + * [This is a Cayley table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation, which + * is the row in the above cayley table. + * @param {PIXI.GD8Symmetry} rotationFirst - First operation, which + * is the column in the above cayley table. + * @return {PIXI.GD8Symmetry} Composed operation + */ + add: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][rotationFirst] + ); }, + + /** + * Reverse of `add`. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation + * @param {PIXI.GD8Symmetry} rotationFirst - First operation + * @return {PIXI.GD8Symmetry} Result + */ + sub: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][GroupD8.inv(rotationFirst)] + ); }, + + /** + * Adds 180 degrees to rotation, which is a commutative + * operation. + * + * @memberof PIXI.GroupD8 + * @param {number} rotation - The number to rotate. + * @returns {number} Rotated number + */ + rotate180: function (rotation) { return rotation ^ 4; }, + + /** + * Checks if the rotation angle is vertical, i.e. south + * or north. It doesn't work for reflections. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - The number to check. + * @returns {boolean} Whether or not the direction is vertical + */ + isVertical: function (rotation) { return (rotation & 3) === 2; }, // rotation % 4 === 2 + + /** + * Approximates the vector `V(dx,dy)` into one of the + * eight directions provided by `GroupD8`. + * + * @memberof PIXI.GroupD8 + * @param {number} dx - X-component of the vector + * @param {number} dy - Y-component of the vector + * @return {PIXI.GD8Symmetry} Approximation of the vector into + * one of the eight symmetries. + */ + byDirection: function (dx, dy) { + if (Math.abs(dx) * 2 <= Math.abs(dy)) + { + if (dy >= 0) + { + return GroupD8.S; + } + + return GroupD8.N; + } + else if (Math.abs(dy) * 2 <= Math.abs(dx)) + { + if (dx > 0) + { + return GroupD8.E; + } + + return GroupD8.W; + } + else if (dy > 0) + { + if (dx > 0) + { + return GroupD8.SE; + } + + return GroupD8.SW; + } + else if (dx > 0) + { + return GroupD8.NE; + } + + return GroupD8.NW; + }, + + /** + * Helps sprite to compensate texture packer rotation. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.Matrix} matrix - sprite world matrix + * @param {PIXI.GD8Symmetry} rotation - The rotation factor to use. + * @param {number} tx - sprite anchoring + * @param {number} ty - sprite anchoring + */ + matrixAppendRotationInv: function (matrix, rotation, tx, ty) { + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + // Packer used "rotation", we use "inv(rotation)" + var mat = rotationMatrices[GroupD8.inv(rotation)]; + + mat.tx = tx; + mat.ty = ty; + matrix.append(mat); + }, +}; + +/** + * Transform that takes care about its versions + * + * @class + * @memberof PIXI + */ +var Transform = function Transform() +{ + /** + * The world transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.worldTransform = new Matrix(); + + /** + * The local transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.localTransform = new Matrix(); + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * + * @member {PIXI.ObservablePoint} + */ + this.position = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The scale factor of the object. + * + * @member {PIXI.ObservablePoint} + */ + this.scale = new ObservablePoint(this.onChange, this, 1, 1); + + /** + * The pivot point of the displayObject that it rotates around. + * + * @member {PIXI.ObservablePoint} + */ + this.pivot = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The skew amount, on the x and y axis. + * + * @member {PIXI.ObservablePoint} + */ + this.skew = new ObservablePoint(this.updateSkew, this, 0, 0); + + /** + * The rotation amount. + * + * @protected + * @member {number} + */ + this._rotation = 0; + + /** + * The X-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cx = 1; + + /** + * The Y-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sx = 0; + + /** + * The X-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cy = 0; + + /** + * The Y-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sy = 1; + + /** + * The locally unique ID of the local transform. + * + * @protected + * @member {number} + */ + this._localID = 0; + + /** + * The locally unique ID of the local transform + * used to calculate the current local transformation matrix. + * + * @protected + * @member {number} + */ + this._currentLocalID = 0; + + /** + * The locally unique ID of the world transform. + * + * @protected + * @member {number} + */ + this._worldID = 0; + + /** + * The locally unique ID of the parent's world transform + * used to calculate the current world transformation matrix. + * + * @protected + * @member {number} + */ + this._parentID = 0; +}; + +var prototypeAccessors$1$1 = { rotation: { configurable: true } }; + +/** + * Called when a value changes. + * + * @protected + */ +Transform.prototype.onChange = function onChange () +{ + this._localID++; +}; + +/** + * Called when the skew or the rotation changes. + * + * @protected + */ +Transform.prototype.updateSkew = function updateSkew () +{ + this._cx = Math.cos(this._rotation + this.skew._y); + this._sx = Math.sin(this._rotation + this.skew._y); + this._cy = -Math.sin(this._rotation - this.skew._x); // cos, added PI/2 + this._sy = Math.cos(this._rotation - this.skew._x); // sin, added PI/2 + + this._localID++; +}; + +/** + * Updates the local transformation matrix. + */ +Transform.prototype.updateLocalTransform = function updateLocalTransform () +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } +}; + +/** + * Updates the local and the world transformation matrices. + * + * @param {PIXI.Transform} parentTransform - The parent transform + */ +Transform.prototype.updateTransform = function updateTransform (parentTransform) +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } + + if (this._parentID !== parentTransform._worldID) + { + // concat the parent matrix with the objects transform. + var pt = parentTransform.worldTransform; + var wt = this.worldTransform; + + wt.a = (lt.a * pt.a) + (lt.b * pt.c); + wt.b = (lt.a * pt.b) + (lt.b * pt.d); + wt.c = (lt.c * pt.a) + (lt.d * pt.c); + wt.d = (lt.c * pt.b) + (lt.d * pt.d); + wt.tx = (lt.tx * pt.a) + (lt.ty * pt.c) + pt.tx; + wt.ty = (lt.tx * pt.b) + (lt.ty * pt.d) + pt.ty; + + this._parentID = parentTransform._worldID; + + // update the id of the transform.. + this._worldID++; + } +}; + +/** + * Decomposes a matrix and sets the transforms properties based on it. + * + * @param {PIXI.Matrix} matrix - The matrix to decompose + */ +Transform.prototype.setFromMatrix = function setFromMatrix (matrix) +{ + matrix.decompose(this); + this._localID++; +}; + +/** + * The rotation of the object in radians. + * + * @member {number} + */ +prototypeAccessors$1$1.rotation.get = function () +{ + return this._rotation; +}; + +prototypeAccessors$1$1.rotation.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._rotation !== value) + { + this._rotation = value; + this.updateSkew(); + } +}; + +Object.defineProperties( Transform.prototype, prototypeAccessors$1$1 ); + +/** + * A default (identity) transform + * + * @static + * @constant + * @member {PIXI.Transform} + */ +Transform.IDENTITY = new Transform(); + +/** + * Size object, contains width and height + * + * @memberof PIXI + * @typedef {object} ISize + * @property {number} width - Width component + * @property {number} height - Height component + */ + +/** + * Rectangle object is an area defined by its position, as indicated by its top-left corner + * point (x, y) and by its width and its height. + * + * @class + * @memberof PIXI + */ +var Rectangle = function Rectangle(x, y, width, height) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = Number(x); + + /** + * @member {number} + * @default 0 + */ + this.y = Number(y); + + /** + * @member {number} + * @default 0 + */ + this.width = Number(width); + + /** + * @member {number} + * @default 0 + */ + this.height = Number(height); + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.RECT + * @see PIXI.SHAPES + */ + this.type = SHAPES.RECT; +}; + +var prototypeAccessors$2 = { left: { configurable: true },right: { configurable: true },top: { configurable: true },bottom: { configurable: true } }; +var staticAccessors$1 = { EMPTY: { configurable: true } }; + +/** + * returns the left edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.left.get = function () +{ + return this.x; +}; + +/** + * returns the right edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.right.get = function () +{ + return this.x + this.width; +}; + +/** + * returns the top edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.top.get = function () +{ + return this.y; +}; + +/** + * returns the bottom edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.bottom.get = function () +{ + return this.y + this.height; +}; + +/** + * A constant empty rectangle. + * + * @static + * @constant + * @member {PIXI.Rectangle} + */ +staticAccessors$1.EMPTY.get = function () +{ + return new Rectangle(0, 0, 0, 0); +}; + +/** + * Creates a clone of this Rectangle + * + * @return {PIXI.Rectangle} a copy of the rectangle + */ +Rectangle.prototype.clone = function clone () +{ + return new Rectangle(this.x, this.y, this.width, this.height); +}; + +/** + * Copies another rectangle to this one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy from. + * @return {PIXI.Rectangle} Returns itself. + */ +Rectangle.prototype.copyFrom = function copyFrom (rectangle) +{ + this.x = rectangle.x; + this.y = rectangle.y; + this.width = rectangle.width; + this.height = rectangle.height; + + return this; +}; + +/** + * Copies this rectangle to another one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy to. + * @return {PIXI.Rectangle} Returns given parameter. + */ +Rectangle.prototype.copyTo = function copyTo (rectangle) +{ + rectangle.x = this.x; + rectangle.y = this.y; + rectangle.width = this.width; + rectangle.height = this.height; + + return rectangle; +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rectangle + */ +Rectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + if (x >= this.x && x < this.x + this.width) + { + if (y >= this.y && y < this.y + this.height) + { + return true; + } + } + + return false; +}; + +/** + * Pads the rectangle making it grow in all directions. + * + * @param {number} paddingX - The horizontal padding amount. + * @param {number} paddingY - The vertical padding amount. + */ +Rectangle.prototype.pad = function pad (paddingX, paddingY) +{ + paddingX = paddingX || 0; + paddingY = paddingY || ((paddingY !== 0) ? paddingX : 0); + + this.x -= paddingX; + this.y -= paddingY; + + this.width += paddingX * 2; + this.height += paddingY * 2; +}; + +/** + * Fits this rectangle around the passed one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to fit. + */ +Rectangle.prototype.fit = function fit (rectangle) +{ + var x1 = Math.max(this.x, rectangle.x); + var x2 = Math.min(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.max(this.y, rectangle.y); + var y2 = Math.min(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = Math.max(x2 - x1, 0); + this.y = y1; + this.height = Math.max(y2 - y1, 0); +}; + +/** + * Enlarges rectangle that way its corners lie on grid + * + * @param {number} [resolution=1] resolution + * @param {number} [eps=0.001] precision + */ +Rectangle.prototype.ceil = function ceil (resolution, eps) +{ + if ( resolution === void 0 ) resolution = 1; + if ( eps === void 0 ) eps = 0.001; + + var x2 = Math.ceil((this.x + this.width - eps) * resolution) / resolution; + var y2 = Math.ceil((this.y + this.height - eps) * resolution) / resolution; + + this.x = Math.floor((this.x + eps) * resolution) / resolution; + this.y = Math.floor((this.y + eps) * resolution) / resolution; + + this.width = x2 - this.x; + this.height = y2 - this.y; +}; + +/** + * Enlarges this rectangle to include the passed rectangle. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to include. + */ +Rectangle.prototype.enlarge = function enlarge (rectangle) +{ + var x1 = Math.min(this.x, rectangle.x); + var x2 = Math.max(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.min(this.y, rectangle.y); + var y2 = Math.max(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = x2 - x1; + this.y = y1; + this.height = y2 - y1; +}; + +Object.defineProperties( Rectangle.prototype, prototypeAccessors$2 ); +Object.defineProperties( Rectangle, staticAccessors$1 ); + +/** + * The Circle object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Circle = function Circle(x, y, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( radius === void 0 ) radius = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.CIRC + * @see PIXI.SHAPES + */ + this.type = SHAPES.CIRC; +}; + +/** + * Creates a clone of this Circle instance + * + * @return {PIXI.Circle} a copy of the Circle + */ +Circle.prototype.clone = function clone () +{ + return new Circle(this.x, this.y, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this circle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Circle + */ +Circle.prototype.contains = function contains (x, y) +{ + if (this.radius <= 0) + { + return false; + } + + var r2 = this.radius * this.radius; + var dx = (this.x - x); + var dy = (this.y - y); + + dx *= dx; + dy *= dy; + + return (dx + dy <= r2); +}; + +/** +* Returns the framing rectangle of the circle as a Rectangle object +* +* @return {PIXI.Rectangle} the framing rectangle +*/ +Circle.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2); +}; + +/** + * The Ellipse object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Ellipse = function Ellipse(x, y, halfWidth, halfHeight) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( halfWidth === void 0 ) halfWidth = 0; + if ( halfHeight === void 0 ) halfHeight = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = halfWidth; + + /** + * @member {number} + * @default 0 + */ + this.height = halfHeight; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.ELIP + * @see PIXI.SHAPES + */ + this.type = SHAPES.ELIP; +}; + +/** + * Creates a clone of this Ellipse instance + * + * @return {PIXI.Ellipse} a copy of the ellipse + */ +Ellipse.prototype.clone = function clone () +{ + return new Ellipse(this.x, this.y, this.width, this.height); +}; + +/** + * Checks whether the x and y coordinates given are contained within this ellipse + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coords are within this ellipse + */ +Ellipse.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + // normalize the coords to an ellipse with center 0,0 + var normx = ((x - this.x) / this.width); + var normy = ((y - this.y) / this.height); + + normx *= normx; + normy *= normy; + + return (normx + normy <= 1); +}; + +/** + * Returns the framing rectangle of the ellipse as a Rectangle object + * + * @return {PIXI.Rectangle} the framing rectangle + */ +Ellipse.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height); +}; + +/** + * A class to define a shape via user defined co-orinates. + * + * @class + * @memberof PIXI + */ +var Polygon = function Polygon() +{ + var points = [], len = arguments.length; + while ( len-- ) points[ len ] = arguments[ len ]; + + if (Array.isArray(points[0])) + { + points = points[0]; + } + + // if this is an array of points, convert it to a flat array of numbers + if (points[0] instanceof Point) + { + var p = []; + + for (var i = 0, il = points.length; i < il; i++) + { + p.push(points[i].x, points[i].y); + } + + points = p; + } + + /** + * An array of the points of this polygon + * + * @member {number[]} + */ + this.points = points; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.POLY + * @see PIXI.SHAPES + */ + this.type = SHAPES.POLY; + + /** + * `false` after moveTo, `true` after `closePath`. In all other cases it is `true`. + * @member {boolean} + * @default true + */ + this.closeStroke = true; +}; + +/** + * Creates a clone of this polygon + * + * @return {PIXI.Polygon} a copy of the polygon + */ +Polygon.prototype.clone = function clone () +{ + var polygon = new Polygon(this.points.slice()); + + polygon.closeStroke = this.closeStroke; + + return polygon; +}; + +/** + * Checks whether the x and y coordinates passed to this function are contained within this polygon + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this polygon + */ +Polygon.prototype.contains = function contains (x, y) +{ + var inside = false; + + // use some raycasting to test hits + // https://github.com/substack/point-in-polygon/blob/master/index.js + var length = this.points.length / 2; + + for (var i = 0, j = length - 1; i < length; j = i++) + { + var xi = this.points[i * 2]; + var yi = this.points[(i * 2) + 1]; + var xj = this.points[j * 2]; + var yj = this.points[(j * 2) + 1]; + var intersect = ((yi > y) !== (yj > y)) && (x < ((xj - xi) * ((y - yi) / (yj - yi))) + xi); + + if (intersect) + { + inside = !inside; + } + } + + return inside; +}; + +/** + * The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its + * top-left corner point (x, y) and by its width and its height and its radius. + * + * @class + * @memberof PIXI + */ +var RoundedRectangle = function RoundedRectangle(x, y, width, height, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + if ( radius === void 0 ) radius = 20; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = width; + + /** + * @member {number} + * @default 0 + */ + this.height = height; + + /** + * @member {number} + * @default 20 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readonly + * @default PIXI.SHAPES.RREC + * @see PIXI.SHAPES + */ + this.type = SHAPES.RREC; +}; + +/** + * Creates a clone of this Rounded Rectangle + * + * @return {PIXI.RoundedRectangle} a copy of the rounded rectangle + */ +RoundedRectangle.prototype.clone = function clone () +{ + return new RoundedRectangle(this.x, this.y, this.width, this.height, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rounded Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rounded Rectangle + */ +RoundedRectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + if (x >= this.x && x <= this.x + this.width) + { + if (y >= this.y && y <= this.y + this.height) + { + if ((y >= this.y + this.radius && y <= this.y + this.height - this.radius) + || (x >= this.x + this.radius && x <= this.x + this.width - this.radius)) + { + return true; + } + var dx = x - (this.x + this.radius); + var dy = y - (this.y + this.radius); + var radius2 = this.radius * this.radius; + + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.width - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dy = y - (this.y + this.height - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + } + } + + return false; +}; + +/*! + * @pixi/display - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/display is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Sets the default value for the container property 'sortableChildren'. + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @static + * @constant + * @name SORTABLE_CHILDREN + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ +settings.SORTABLE_CHILDREN = false; + +/** + * 'Builder' pattern for bounds rectangles. + * + * This could be called an Axis-Aligned Bounding Box. + * It is not an actual shape. It is a mutable thing; no 'EMPTY' or those kind of problems. + * + * @class + * @memberof PIXI + */ +var Bounds = function Bounds() +{ + /** + * @member {number} + * @default 0 + */ + this.minX = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.minY = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxX = -Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxY = -Infinity; + + this.rect = null; +}; + +/** + * Checks if bounds are empty. + * + * @return {boolean} True if empty. + */ +Bounds.prototype.isEmpty = function isEmpty () +{ + return this.minX > this.maxX || this.minY > this.maxY; +}; + +/** + * Clears the bounds and resets. + * + */ +Bounds.prototype.clear = function clear () +{ + this.updateID++; + + this.minX = Infinity; + this.minY = Infinity; + this.maxX = -Infinity; + this.maxY = -Infinity; +}; + +/** + * Can return Rectangle.EMPTY constant, either construct new rectangle, either use your rectangle + * It is not guaranteed that it will return tempRect + * + * @param {PIXI.Rectangle} rect - temporary object will be used if AABB is not empty + * @returns {PIXI.Rectangle} A rectangle of the bounds + */ +Bounds.prototype.getRectangle = function getRectangle (rect) +{ + if (this.minX > this.maxX || this.minY > this.maxY) + { + return Rectangle.EMPTY; + } + + rect = rect || new Rectangle(0, 0, 1, 1); + + rect.x = this.minX; + rect.y = this.minY; + rect.width = this.maxX - this.minX; + rect.height = this.maxY - this.minY; + + return rect; +}; + +/** + * This function should be inlined when its possible. + * + * @param {PIXI.Point} point - The point to add. + */ +Bounds.prototype.addPoint = function addPoint (point) +{ + this.minX = Math.min(this.minX, point.x); + this.maxX = Math.max(this.maxX, point.x); + this.minY = Math.min(this.minY, point.y); + this.maxY = Math.max(this.maxY, point.y); +}; + +/** + * Adds a quad, not transformed + * + * @param {Float32Array} vertices - The verts to add. + */ +Bounds.prototype.addQuad = function addQuad (vertices) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = vertices[0]; + var y = vertices[1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[2]; + y = vertices[3]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[4]; + y = vertices[5]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[6]; + y = vertices[7]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds sprite frame, transformed. + * + * @param {PIXI.Transform} transform - TODO + * @param {number} x0 - TODO + * @param {number} y0 - TODO + * @param {number} x1 - TODO + * @param {number} y1 - TODO + */ +Bounds.prototype.addFrame = function addFrame (transform, x0, y0, x1, y1) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = (a * x0) + (c * y0) + tx; + var y = (b * x0) + (d * y0) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y0) + tx; + y = (b * x1) + (d * y0) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x0) + (c * y1) + tx; + y = (b * x0) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y1) + tx; + y = (b * x1) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds screen vertices from array + * + * @param {Float32Array} vertexData - calculated vertices + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertexData = function addVertexData (vertexData, beginOffset, endOffset) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var x = vertexData[i]; + var y = vertexData[i + 1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Add an array of mesh vertices + * + * @param {PIXI.Transform} transform - mesh transform + * @param {Float32Array} vertices - mesh coordinates in array + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertices = function addVertices (transform, vertices, beginOffset, endOffset) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var rawX = vertices[i]; + var rawY = vertices[i + 1]; + var x = (a * rawX) + (c * rawY) + tx; + var y = (d * rawY) + (b * rawX) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds other Bounds + * + * @param {PIXI.Bounds} bounds - TODO + */ +Bounds.prototype.addBounds = function addBounds (bounds) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = bounds.minX < minX ? bounds.minX : minX; + this.minY = bounds.minY < minY ? bounds.minY : minY; + this.maxX = bounds.maxX > maxX ? bounds.maxX : maxX; + this.maxY = bounds.maxY > maxY ? bounds.maxY : maxY; +}; + +/** + * Adds other Bounds, masked with Bounds + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Bounds} mask - TODO + */ +Bounds.prototype.addBoundsMask = function addBoundsMask (bounds, mask) +{ + var _minX = bounds.minX > mask.minX ? bounds.minX : mask.minX; + var _minY = bounds.minY > mask.minY ? bounds.minY : mask.minY; + var _maxX = bounds.maxX < mask.maxX ? bounds.maxX : mask.maxX; + var _maxY = bounds.maxY < mask.maxY ? bounds.maxY : mask.maxY; + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +/** + * Adds other Bounds, masked with Rectangle + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Rectangle} area - TODO + */ +Bounds.prototype.addBoundsArea = function addBoundsArea (bounds, area) +{ + var _minX = bounds.minX > area.x ? bounds.minX : area.x; + var _minY = bounds.minY > area.y ? bounds.minY : area.y; + var _maxX = bounds.maxX < area.x + area.width ? bounds.maxX : (area.x + area.width); + var _maxY = bounds.maxY < area.y + area.height ? bounds.maxY : (area.y + area.height); + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +// _tempDisplayObjectParent = new DisplayObject(); + +/** + * The base class for all objects that are rendered on the screen. + * + * This is an abstract class and should not be used on its own; rather it should be extended. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var DisplayObject = /*@__PURE__*/(function (EventEmitter) { + function DisplayObject() + { + EventEmitter.call(this); + + this.tempDisplayObjectParent = null; + + // TODO: need to create Transform from factory + /** + * World transform and local transform of this object. + * This will become read-only later, please do not assign anything there unless you know what are you doing. + * + * @member {PIXI.Transform} + */ + this.transform = new Transform(); + + /** + * The opacity of the object. + * + * @member {number} + */ + this.alpha = 1; + + /** + * The visibility of the object. If false the object will not be drawn, and + * the updateTransform function will not be called. + * + * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually. + * + * @member {boolean} + */ + this.visible = true; + + /** + * Can this object be rendered, if false the object will not be drawn but the updateTransform + * methods will still be called. + * + * Only affects recursive calls from parent. You can ask for bounds manually. + * + * @member {boolean} + */ + this.renderable = true; + + /** + * The display object container that contains this display object. + * + * @member {PIXI.Container} + * @readonly + */ + this.parent = null; + + /** + * The multiplied alpha of the displayObject. + * + * @member {number} + * @readonly + */ + this.worldAlpha = 1; + + /** + * Which index in the children array the display component was before the previous zIndex sort. + * Used by containers to help sort objects with the same zIndex, by using previous array index as the decider. + * + * @member {number} + * @protected + */ + this._lastSortedIndex = 0; + + /** + * The zIndex of the displayObject. + * A higher value will mean it will be rendered on top of other displayObjects within the same container. + * + * @member {number} + * @protected + */ + this._zIndex = 0; + + /** + * The area the filter is applied to. This is used as more of an optimization + * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle. + * + * Also works as an interaction mask. + * + * @member {?PIXI.Rectangle} + */ + this.filterArea = null; + + /** + * Sets the filters for the displayObject. + * * IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer. + * To remove filters simply set this property to `'null'`. + * + * @member {?PIXI.Filter[]} + */ + this.filters = null; + this._enabledFilters = null; + + /** + * The bounds object, this is used to calculate and store the bounds of the displayObject. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + this._boundsID = 0; + this._lastBoundsID = -1; + this._boundsRect = null; + this._localBoundsRect = null; + + /** + * The original, cached mask of the object. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + * @protected + */ + this._mask = null; + + /** + * Fired when this DisplayObject is added to a Container. + * + * @event PIXI.DisplayObject#added + * @param {PIXI.Container} container - The container added to. + */ + + /** + * Fired when this DisplayObject is removed from a Container. + * + * @event PIXI.DisplayObject#removed + * @param {PIXI.Container} container - The container removed from. + */ + + /** + * If the object has been destroyed via destroy(). If true, it should not be used. + * + * @member {boolean} + * @protected + */ + this._destroyed = false; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = false; + } + + if ( EventEmitter ) DisplayObject.__proto__ = EventEmitter; + DisplayObject.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + DisplayObject.prototype.constructor = DisplayObject; + + var prototypeAccessors = { _tempDisplayObjectParent: { configurable: true },x: { configurable: true },y: { configurable: true },worldTransform: { configurable: true },localTransform: { configurable: true },position: { configurable: true },scale: { configurable: true },pivot: { configurable: true },skew: { configurable: true },rotation: { configurable: true },angle: { configurable: true },zIndex: { configurable: true },worldVisible: { configurable: true },mask: { configurable: true } }; + + /** + * @protected + * @member {PIXI.DisplayObject} + */ + DisplayObject.mixin = function mixin (source) + { + // in ES8/ES2017, this would be really easy: + // Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); + + // get all the enumerable property keys + var keys = Object.keys(source); + + // loop through properties + for (var i = 0; i < keys.length; ++i) + { + var propertyName = keys[i]; + + // Set the property using the property descriptor - this works for accessors and normal value properties + Object.defineProperty( + DisplayObject.prototype, + propertyName, + Object.getOwnPropertyDescriptor(source, propertyName) + ); + } + }; + + prototypeAccessors._tempDisplayObjectParent.get = function () + { + if (this.tempDisplayObjectParent === null) + { + this.tempDisplayObjectParent = new DisplayObject(); + } + + return this.tempDisplayObjectParent; + }; + + /** + * Updates the object transform for rendering. + * + * TODO - Optimization pass! + */ + DisplayObject.prototype.updateTransform = function updateTransform () + { + this.transform.updateTransform(this.parent.transform); + // multiply the alphas.. + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + this._bounds.updateID++; + }; + + /** + * Recursively updates transform of all objects from the root to this one + * internal function for toLocal() + */ + DisplayObject.prototype._recursivePostUpdateTransform = function _recursivePostUpdateTransform () + { + if (this.parent) + { + this.parent._recursivePostUpdateTransform(); + this.transform.updateTransform(this.parent.transform); + } + else + { + this.transform.updateTransform(this._tempDisplayObjectParent.transform); + } + }; + + /** + * Retrieves the bounds of the displayObject as a rectangle object. + * + * @param {boolean} [skipUpdate] - Setting to `true` will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getBounds = function getBounds (skipUpdate, rect) + { + if (!skipUpdate) + { + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this._recursivePostUpdateTransform(); + this.updateTransform(); + } + } + + if (this._boundsID !== this._lastBoundsID) + { + this.calculateBounds(); + this._lastBoundsID = this._boundsID; + } + + if (!rect) + { + if (!this._boundsRect) + { + this._boundsRect = new Rectangle(); + } + + rect = this._boundsRect; + } + + return this._bounds.getRectangle(rect); + }; + + /** + * Retrieves the local bounds of the displayObject as a rectangle object. + * + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getLocalBounds = function getLocalBounds (rect) + { + var transformRef = this.transform; + var parentRef = this.parent; + + this.parent = null; + this.transform = this._tempDisplayObjectParent.transform; + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + var bounds = this.getBounds(false, rect); + + this.parent = parentRef; + this.transform = transformRef; + + return bounds; + }; + + /** + * Calculates the global position of the display object. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform. + * @return {PIXI.IPoint} A point object representing the position of this object. + */ + DisplayObject.prototype.toGlobal = function toGlobal (position, point, skipUpdate) + { + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // don't need to update the lot + return this.worldTransform.apply(position, point); + }; + + /** + * Calculates the local position of the display object relative to another point. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform + * @return {PIXI.IPoint} A point object representing the position of this object + */ + DisplayObject.prototype.toLocal = function toLocal (position, from, point, skipUpdate) + { + if (from) + { + position = from.toGlobal(position, point, skipUpdate); + } + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // simply apply the matrix.. + return this.worldTransform.applyInverse(position, point); + }; + + /** + * Renders the object using the WebGL renderer. + * + * @param {PIXI.Renderer} renderer - The renderer. + */ + DisplayObject.prototype.render = function render (renderer) // eslint-disable-line no-unused-vars + { + // OVERWRITE; + }; + + /** + * Set the parent Container of this DisplayObject. + * + * @param {PIXI.Container} container - The Container to add this DisplayObject to. + * @return {PIXI.Container} The Container that this DisplayObject was added to. + */ + DisplayObject.prototype.setParent = function setParent (container) + { + if (!container || !container.addChild) + { + throw new Error('setParent: Argument must be a Container'); + } + + container.addChild(this); + + return container; + }; + + /** + * Convenience function to set the position, scale, skew and pivot at once. + * + * @param {number} [x=0] - The X position + * @param {number} [y=0] - The Y position + * @param {number} [scaleX=1] - The X scale value + * @param {number} [scaleY=1] - The Y scale value + * @param {number} [rotation=0] - The rotation + * @param {number} [skewX=0] - The X skew value + * @param {number} [skewY=0] - The Y skew value + * @param {number} [pivotX=0] - The X pivot value + * @param {number} [pivotY=0] - The Y pivot value + * @return {PIXI.DisplayObject} The DisplayObject instance + */ + DisplayObject.prototype.setTransform = function setTransform (x, y, scaleX, scaleY, rotation, skewX, skewY, pivotX, pivotY) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( scaleX === void 0 ) scaleX = 1; + if ( scaleY === void 0 ) scaleY = 1; + if ( rotation === void 0 ) rotation = 0; + if ( skewX === void 0 ) skewX = 0; + if ( skewY === void 0 ) skewY = 0; + if ( pivotX === void 0 ) pivotX = 0; + if ( pivotY === void 0 ) pivotY = 0; + + this.position.x = x; + this.position.y = y; + this.scale.x = !scaleX ? 1 : scaleX; + this.scale.y = !scaleY ? 1 : scaleY; + this.rotation = rotation; + this.skew.x = skewX; + this.skew.y = skewY; + this.pivot.x = pivotX; + this.pivot.y = pivotY; + + return this; + }; + + /** + * Base destroy method for generic display objects. This will automatically + * remove the display object from its parent Container as well as remove + * all current event listeners and internal references. Do not use a DisplayObject + * after calling `destroy()`. + * + */ + DisplayObject.prototype.destroy = function destroy () + { + this.removeAllListeners(); + if (this.parent) + { + this.parent.removeChild(this); + } + this.transform = null; + + this.parent = null; + + this._bounds = null; + this._currentBounds = null; + this._mask = null; + + this.filterArea = null; + + this.interactive = false; + this.interactiveChildren = false; + + this._destroyed = true; + }; + + /** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * An alias to position.x + * + * @member {number} + */ + prototypeAccessors.x.get = function () + { + return this.position.x; + }; + + prototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.x = value; + }; + + /** + * The position of the displayObject on the y axis relative to the local coordinates of the parent. + * An alias to position.y + * + * @member {number} + */ + prototypeAccessors.y.get = function () + { + return this.position.y; + }; + + prototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.y = value; + }; + + /** + * Current transform of the object based on world (parent) factors. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.worldTransform.get = function () + { + return this.transform.worldTransform; + }; + + /** + * Current transform of the object based on local factors: position, scale, other stuff. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.localTransform.get = function () + { + return this.transform.localTransform; + }; + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.position.get = function () + { + return this.transform.position; + }; + + prototypeAccessors.position.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.copyFrom(value); + }; + + /** + * The scale factor of the object. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.scale.get = function () + { + return this.transform.scale; + }; + + prototypeAccessors.scale.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.scale.copyFrom(value); + }; + + /** + * The pivot point of the displayObject that it rotates around. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.pivot.get = function () + { + return this.transform.pivot; + }; + + prototypeAccessors.pivot.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.pivot.copyFrom(value); + }; + + /** + * The skew factor for the object in radians. + * Assignment by value since pixi-v4. + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.skew.get = function () + { + return this.transform.skew; + }; + + prototypeAccessors.skew.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.skew.copyFrom(value); + }; + + /** + * The rotation of the object in radians. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.rotation.get = function () + { + return this.transform.rotation; + }; + + prototypeAccessors.rotation.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value; + }; + + /** + * The angle of the object in degrees. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.angle.get = function () + { + return this.transform.rotation * RAD_TO_DEG; + }; + + prototypeAccessors.angle.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value * DEG_TO_RAD; + }; + + /** + * The zIndex of the displayObject. + * If a container has the sortableChildren property set to true, children will be automatically + * sorted by zIndex value; a higher value will mean it will be moved towards the end of the array, + * and thus rendered on top of other displayObjects within the same container. + * + * @member {number} + */ + prototypeAccessors.zIndex.get = function () + { + return this._zIndex; + }; + + prototypeAccessors.zIndex.set = function (value) // eslint-disable-line require-jsdoc + { + this._zIndex = value; + if (this.parent) + { + this.parent.sortDirty = true; + } + }; + + /** + * Indicates if the object is globally visible. + * + * @member {boolean} + * @readonly + */ + prototypeAccessors.worldVisible.get = function () + { + var item = this; + + do + { + if (!item.visible) + { + return false; + } + + item = item.parent; + } while (item); + + return true; + }; + + /** + * Sets a mask for the displayObject. A mask is an object that limits the visibility of an + * object to the shape of the mask applied to it. In PixiJS a regular mask must be a + * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it + * utilities shape clipping. To remove a mask, set this property to `null`. + * + * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask. + * @example + * const graphics = new PIXI.Graphics(); + * graphics.beginFill(0xFF3300); + * graphics.drawRect(50, 250, 100, 100); + * graphics.endFill(); + * + * const sprite = new PIXI.Sprite(texture); + * sprite.mask = graphics; + * @todo At the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + */ + prototypeAccessors.mask.get = function () + { + return this._mask; + }; + + prototypeAccessors.mask.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._mask) + { + this._mask.renderable = true; + this._mask.isMask = false; + } + + this._mask = value; + + if (this._mask) + { + this._mask.renderable = false; + this._mask.isMask = true; + } + }; + + Object.defineProperties( DisplayObject.prototype, prototypeAccessors ); + + return DisplayObject; +}(eventemitter3)); + +/** + * DisplayObject default updateTransform, does not update children of container. + * Will crash if there's no parent element. + * + * @memberof PIXI.DisplayObject# + * @function displayObjectUpdateTransform + */ +DisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform; + +function sortChildren(a, b) +{ + if (a.zIndex === b.zIndex) + { + return a._lastSortedIndex - b._lastSortedIndex; + } + + return a.zIndex - b.zIndex; +} + +/** + * A Container represents a collection of display objects. + * + * It is the base class of all display objects that act as a container for other objects (like Sprites). + * + *```js + * let container = new PIXI.Container(); + * container.addChild(sprite); + * ``` + * + * @class + * @extends PIXI.DisplayObject + * @memberof PIXI + */ +var Container = /*@__PURE__*/(function (DisplayObject) { + function Container() + { + DisplayObject.call(this); + + /** + * The array of children of this container. + * + * @member {PIXI.DisplayObject[]} + * @readonly + */ + this.children = []; + + /** + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @see PIXI.settings.SORTABLE_CHILDREN + * + * @member {boolean} + */ + this.sortableChildren = settings.SORTABLE_CHILDREN; + + /** + * Should children be sorted by zIndex at the next updateTransform call. + * Will get automatically set to true if a new child is added, or if a child's zIndex changes. + * + * @member {boolean} + */ + this.sortDirty = false; + + /** + * Fired when a DisplayObject is added to this Container. + * + * @event PIXI.Container#childAdded + * @param {PIXI.DisplayObject} child - The child added to the Container. + * @param {PIXI.Container} container - The container that added the child. + * @param {number} index - The children's index of the added child. + */ + + /** + * Fired when a DisplayObject is removed from this Container. + * + * @event PIXI.DisplayObject#removedFrom + * @param {PIXI.DisplayObject} child - The child removed from the Container. + * @param {PIXI.Container} container - The container that removed removed the child. + * @param {number} index - The former children's index of the removed child + */ + } + + if ( DisplayObject ) Container.__proto__ = DisplayObject; + Container.prototype = Object.create( DisplayObject && DisplayObject.prototype ); + Container.prototype.constructor = Container; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + + /** + * Overridable method that can be used by Container subclasses whenever the children array is modified + * + * @protected + */ + Container.prototype.onChildrenChange = function onChildrenChange () + { + /* empty */ + }; + + /** + * Adds one or more children to the container. + * + * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)` + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container + * @return {PIXI.DisplayObject} The first child that was added. + */ + Container.prototype.addChild = function addChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.addChild(arguments$1[i]); + } + } + else + { + // if the child has a parent then lets remove it as PixiJS objects can only exist in one place + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.push(child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(this.children.length - 1); + this.emit('childAdded', child, this, this.children.length - 1); + child.emit('added', this); + } + + return child; + }; + + /** + * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown + * + * @param {PIXI.DisplayObject} child - The child to add + * @param {number} index - The index to place the child in + * @return {PIXI.DisplayObject} The child that was added. + */ + Container.prototype.addChildAt = function addChildAt (child, index) + { + if (index < 0 || index > this.children.length) + { + throw new Error((child + "addChildAt: The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.splice(index, 0, child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('added', this); + this.emit('childAdded', child, this, index); + + return child; + }; + + /** + * Swaps the position of 2 Display Objects within this container. + * + * @param {PIXI.DisplayObject} child - First display object to swap + * @param {PIXI.DisplayObject} child2 - Second display object to swap + */ + Container.prototype.swapChildren = function swapChildren (child, child2) + { + if (child === child2) + { + return; + } + + var index1 = this.getChildIndex(child); + var index2 = this.getChildIndex(child2); + + this.children[index1] = child2; + this.children[index2] = child; + this.onChildrenChange(index1 < index2 ? index1 : index2); + }; + + /** + * Returns the index position of a child DisplayObject instance + * + * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify + * @return {number} The index position of the child display object to identify + */ + Container.prototype.getChildIndex = function getChildIndex (child) + { + var index = this.children.indexOf(child); + + if (index === -1) + { + throw new Error('The supplied DisplayObject must be a child of the caller'); + } + + return index; + }; + + /** + * Changes the position of an existing child in the display object container + * + * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number + * @param {number} index - The resulting index number for the child display object + */ + Container.prototype.setChildIndex = function setChildIndex (child, index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + var currentIndex = this.getChildIndex(child); + + removeItems(this.children, currentIndex, 1); // remove from old position + this.children.splice(index, 0, child); // add at new position + + this.onChildrenChange(index); + }; + + /** + * Returns the child at the specified index + * + * @param {number} index - The index to get the child at + * @return {PIXI.DisplayObject} The child at the given index, if any. + */ + Container.prototype.getChildAt = function getChildAt (index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("getChildAt: Index (" + index + ") does not exist.")); + } + + return this.children[index]; + }; + + /** + * Removes one or more children from the container. + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove + * @return {PIXI.DisplayObject} The first child that was removed. + */ + Container.prototype.removeChild = function removeChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.removeChild(arguments$1[i]); + } + } + else + { + var index = this.children.indexOf(child); + + if (index === -1) { return null; } + + child.parent = null; + // ensure child transform will be recalculated + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + } + + return child; + }; + + /** + * Removes a child from the specified index position. + * + * @param {number} index - The index to get the child from + * @return {PIXI.DisplayObject} The child that was removed. + */ + Container.prototype.removeChildAt = function removeChildAt (index) + { + var child = this.getChildAt(index); + + // ensure child transform will be recalculated.. + child.parent = null; + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + + return child; + }; + + /** + * Removes all children from this container that are within the begin and end indexes. + * + * @param {number} [beginIndex=0] - The beginning position. + * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container. + * @returns {PIXI.DisplayObject[]} List of removed children + */ + Container.prototype.removeChildren = function removeChildren (beginIndex, endIndex) + { + if ( beginIndex === void 0 ) beginIndex = 0; + + var begin = beginIndex; + var end = typeof endIndex === 'number' ? endIndex : this.children.length; + var range = end - begin; + var removed; + + if (range > 0 && range <= end) + { + removed = this.children.splice(begin, range); + + for (var i = 0; i < removed.length; ++i) + { + removed[i].parent = null; + if (removed[i].transform) + { + removed[i].transform._parentID = -1; + } + } + + this._boundsID++; + + this.onChildrenChange(beginIndex); + + for (var i$1 = 0; i$1 < removed.length; ++i$1) + { + removed[i$1].emit('removed', this); + this.emit('childRemoved', removed[i$1], this, i$1); + } + + return removed; + } + else if (range === 0 && this.children.length === 0) + { + return []; + } + + throw new RangeError('removeChildren: numeric values are outside the acceptable range.'); + }; + + /** + * Sorts children by zIndex. Previous order is mantained for 2 children with the same zIndex. + */ + Container.prototype.sortChildren = function sortChildren$1 () + { + var sortRequired = false; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + child._lastSortedIndex = i; + + if (!sortRequired && child.zIndex !== 0) + { + sortRequired = true; + } + } + + if (sortRequired && this.children.length > 1) + { + this.children.sort(sortChildren); + } + + this.sortDirty = false; + }; + + /** + * Updates the transform on all children of this container for rendering + */ + Container.prototype.updateTransform = function updateTransform () + { + if (this.sortableChildren && this.sortDirty) + { + this.sortChildren(); + } + + this._boundsID++; + + this.transform.updateTransform(this.parent.transform); + + // TODO: check render flags, how to process stuff here + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + if (child.visible) + { + child.updateTransform(); + } + } + }; + + /** + * Recalculates the bounds of the container. + * + */ + Container.prototype.calculateBounds = function calculateBounds () + { + this._bounds.clear(); + + this._calculateBounds(); + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (!child.visible || !child.renderable) + { + continue; + } + + child.calculateBounds(); + + // TODO: filter+mask, need to mask both somehow + if (child._mask) + { + child._mask.calculateBounds(); + this._bounds.addBoundsMask(child._bounds, child._mask._bounds); + } + else if (child.filterArea) + { + this._bounds.addBoundsArea(child._bounds, child.filterArea); + } + else + { + this._bounds.addBounds(child._bounds); + } + } + + this._lastBoundsID = this._boundsID; + }; + + /** + * Recalculates the bounds of the object. Override this to + * calculate the bounds of the specific object (not including children). + * + * @protected + */ + Container.prototype._calculateBounds = function _calculateBounds () + { + // FILL IN// + }; + + /** + * Renders the object using the WebGL renderer + * + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.render = function render (renderer) + { + // if the object is not visible or the alpha is 0 then no need to render this element + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + // do a quick check to see if this element has a mask or a filter. + if (this._mask || (this.filters && this.filters.length)) + { + this.renderAdvanced(renderer); + } + else + { + this._render(renderer); + + // simple render children! + for (var i = 0, j = this.children.length; i < j; ++i) + { + this.children[i].render(renderer); + } + } + }; + + /** + * Render the object using the WebGL renderer and advanced features. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.renderAdvanced = function renderAdvanced (renderer) + { + renderer.batch.flush(); + + var filters = this.filters; + var mask = this._mask; + + // push filter first as we need to ensure the stencil buffer is correct for any masking + if (filters) + { + if (!this._enabledFilters) + { + this._enabledFilters = []; + } + + this._enabledFilters.length = 0; + + for (var i = 0; i < filters.length; i++) + { + if (filters[i].enabled) + { + this._enabledFilters.push(filters[i]); + } + } + + if (this._enabledFilters.length) + { + renderer.filter.push(this, this._enabledFilters); + } + } + + if (mask) + { + renderer.mask.push(this, this._mask); + } + + // add this object to the batch, only rendered if it has a texture. + this._render(renderer); + + // now loop through the children and make sure they get rendered + for (var i$1 = 0, j = this.children.length; i$1 < j; i$1++) + { + this.children[i$1].render(renderer); + } + + renderer.batch.flush(); + + if (mask) + { + renderer.mask.pop(this, this._mask); + } + + if (filters && this._enabledFilters && this._enabledFilters.length) + { + renderer.filter.pop(); + } + }; + + /** + * To be overridden by the subclasses. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype._render = function _render (renderer) // eslint-disable-line no-unused-vars + { + // this is where content itself gets rendered... + }; + + /** + * Removes all internal references and listeners as well as removes children from the display list. + * Do not use a Container after calling `destroy`. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Container.prototype.destroy = function destroy (options) + { + DisplayObject.prototype.destroy.call(this); + + this.sortDirty = false; + + var destroyChildren = typeof options === 'boolean' ? options : options && options.children; + + var oldChildren = this.removeChildren(0, this.children.length); + + if (destroyChildren) + { + for (var i = 0; i < oldChildren.length; ++i) + { + oldChildren[i].destroy(options); + } + } + }; + + /** + * The width of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.scale.x * this.getLocalBounds().width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var width = this.getLocalBounds().width; + + if (width !== 0) + { + this.scale.x = value / width; + } + else + { + this.scale.x = 1; + } + + this._width = value; + }; + + /** + * The height of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.scale.y * this.getLocalBounds().height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var height = this.getLocalBounds().height; + + if (height !== 0) + { + this.scale.y = value / height; + } + else + { + this.scale.y = 1; + } + + this._height = value; + }; + + Object.defineProperties( Container.prototype, prototypeAccessors ); + + return Container; +}(DisplayObject)); + +// performance increase to avoid using call.. (10x faster) +Container.prototype.containerUpdateTransform = Container.prototype.updateTransform; + +/*! + * @pixi/accessibility - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/accessibility is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default property values of accessible objects + * used by {@link PIXI.accessibility.AccessibilityManager}. + * + * @private + * @function accessibleTarget + * @memberof PIXI.accessibility + * @type {Object} + * @example + * function MyObject() {} + * + * Object.assign( + * MyObject.prototype, + * PIXI.accessibility.accessibleTarget + * ); + */ +var accessibleTarget = { + /** + * Flag for if the object is accessible. If true AccessibilityManager will overlay a + * shadow div with attributes set + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + accessible: false, + + /** + * Sets the title attribute of the shadow div + * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]' + * + * @member {?string} + * @memberof PIXI.DisplayObject# + */ + accessibleTitle: null, + + /** + * Sets the aria-label attribute of the shadow div + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + accessibleHint: null, + + /** + * @member {number} + * @memberof PIXI.DisplayObject# + * @private + * @todo Needs docs. + */ + tabIndex: 0, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleActive: false, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleDiv: false, +}; + +// add some extra variables to the container.. +DisplayObject.mixin(accessibleTarget); + +var KEY_CODE_TAB = 9; + +var DIV_TOUCH_SIZE = 100; +var DIV_TOUCH_POS_X = 0; +var DIV_TOUCH_POS_Y = 0; +var DIV_TOUCH_ZINDEX = 2; + +var DIV_HOOK_SIZE = 1; +var DIV_HOOK_POS_X = -1000; +var DIV_HOOK_POS_Y = -1000; +var DIV_HOOK_ZINDEX = 2; + +/** + * The Accessibility manager recreates the ability to tab and have content read by screen readers. + * This is very important as it can possibly help people with disabilities access PixiJS content. + * + * A DisplayObject can be made accessible just like it can be made interactive. This manager will map the + * events as if the mouse was being used, minimizing the effort required to implement. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.accessibility` + * + * @class + * @memberof PIXI.accessibility + */ +var AccessibilityManager = function AccessibilityManager(renderer) +{ + /** + * @type {?HTMLElement} + * @private + */ + this._hookDiv = null; + if (isMobile.tablet || isMobile.phone) + { + this.createTouchHook(); + } + + // first we create a div that will sit over the PixiJS element. This is where the div overlays will go. + var div = document.createElement('div'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.position = 'absolute'; + div.style.top = DIV_TOUCH_POS_X + "px"; + div.style.left = DIV_TOUCH_POS_Y + "px"; + div.style.zIndex = DIV_TOUCH_ZINDEX; + + /** + * This is the dom element that will sit over the PixiJS element. This is where the div overlays will go. + * + * @type {HTMLElement} + * @private + */ + this.div = div; + + /** + * A simple pool for storing divs. + * + * @type {*} + * @private + */ + this.pool = []; + + /** + * This is a tick used to check if an object is no longer being rendered. + * + * @type {Number} + * @private + */ + this.renderId = 0; + + /** + * Setting this to true will visually show the divs. + * + * @type {boolean} + */ + this.debug = false; + + /** + * The renderer this accessibility manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * The array of currently active accessible items. + * + * @member {Array<*>} + * @private + */ + this.children = []; + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onKeyDown = this._onKeyDown.bind(this); + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onMouseMove = this._onMouseMove.bind(this); + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isActive = false; + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isMobileAccessibility = false; + + // let listen for tab.. once pressed we can fire up and show the accessibility layer + window.addEventListener('keydown', this._onKeyDown, false); +}; + +/** + * Creates the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.createTouchHook = function createTouchHook () +{ + var this$1 = this; + + var hookDiv = document.createElement('button'); + + hookDiv.style.width = DIV_HOOK_SIZE + "px"; + hookDiv.style.height = DIV_HOOK_SIZE + "px"; + hookDiv.style.position = 'absolute'; + hookDiv.style.top = DIV_HOOK_POS_X + "px"; + hookDiv.style.left = DIV_HOOK_POS_Y + "px"; + hookDiv.style.zIndex = DIV_HOOK_ZINDEX; + hookDiv.style.backgroundColor = '#FF0000'; + hookDiv.title = 'HOOK DIV'; + + hookDiv.addEventListener('focus', function () { + this$1.isMobileAccessibility = true; + this$1.activate(); + this$1.destroyTouchHook(); + }); + + document.body.appendChild(hookDiv); + this._hookDiv = hookDiv; +}; + +/** + * Destroys the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.destroyTouchHook = function destroyTouchHook () +{ + if (!this._hookDiv) + { + return; + } + document.body.removeChild(this._hookDiv); + this._hookDiv = null; +}; + +/** + * Activating will cause the Accessibility layer to be shown. + * This is called when a user presses the tab key. + * + * @private + */ +AccessibilityManager.prototype.activate = function activate () +{ + if (this.isActive) + { + return; + } + + this.isActive = true; + + window.document.addEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown, false); + + this.renderer.on('postrender', this.update, this); + + if (this.renderer.view.parentNode) + { + this.renderer.view.parentNode.appendChild(this.div); + } +}; + +/** + * Deactivating will cause the Accessibility layer to be hidden. + * This is called when a user moves the mouse. + * + * @private + */ +AccessibilityManager.prototype.deactivate = function deactivate () +{ + if (!this.isActive || this.isMobileAccessibility) + { + return; + } + + this.isActive = false; + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.addEventListener('keydown', this._onKeyDown, false); + + this.renderer.off('postrender', this.update); + + if (this.div.parentNode) + { + this.div.parentNode.removeChild(this.div); + } +}; + +/** + * This recursive function will run through the scene graph and add any new accessible objects to the DOM layer. + * + * @private + * @param {PIXI.Container} displayObject - The DisplayObject to check. + */ +AccessibilityManager.prototype.updateAccessibleObjects = function updateAccessibleObjects (displayObject) +{ + if (!displayObject.visible) + { + return; + } + + if (displayObject.accessible && displayObject.interactive) + { + if (!displayObject._accessibleActive) + { + this.addChild(displayObject); + } + + displayObject.renderId = this.renderId; + } + + var children = displayObject.children; + + for (var i = 0; i < children.length; i++) + { + this.updateAccessibleObjects(children[i]); + } +}; + +/** + * Before each render this function will ensure that all divs are mapped correctly to their DisplayObjects. + * + * @private + */ +AccessibilityManager.prototype.update = function update () +{ + if (!this.renderer.renderingToScreen) + { + return; + } + + // update children... + this.updateAccessibleObjects(this.renderer._lastObjectRendered); + + var rect = this.renderer.view.getBoundingClientRect(); + var sx = rect.width / this.renderer.width; + var sy = rect.height / this.renderer.height; + + var div = this.div; + + div.style.left = (rect.left) + "px"; + div.style.top = (rect.top) + "px"; + div.style.width = (this.renderer.width) + "px"; + div.style.height = (this.renderer.height) + "px"; + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (child.renderId !== this.renderId) + { + child._accessibleActive = false; + + removeItems(this.children, i, 1); + this.div.removeChild(child._accessibleDiv); + this.pool.push(child._accessibleDiv); + child._accessibleDiv = null; + + i--; + + if (this.children.length === 0) + { + this.deactivate(); + } + } + else + { + // map div to display.. + div = child._accessibleDiv; + var hitArea = child.hitArea; + var wt = child.worldTransform; + + if (child.hitArea) + { + div.style.left = ((wt.tx + (hitArea.x * wt.a)) * sx) + "px"; + div.style.top = ((wt.ty + (hitArea.y * wt.d)) * sy) + "px"; + + div.style.width = (hitArea.width * wt.a * sx) + "px"; + div.style.height = (hitArea.height * wt.d * sy) + "px"; + } + else + { + hitArea = child.getBounds(); + + this.capHitArea(hitArea); + + div.style.left = (hitArea.x * sx) + "px"; + div.style.top = (hitArea.y * sy) + "px"; + + div.style.width = (hitArea.width * sx) + "px"; + div.style.height = (hitArea.height * sy) + "px"; + + // update button titles and hints if they exist and they've changed + if (div.title !== child.accessibleTitle && child.accessibleTitle !== null) + { + div.title = child.accessibleTitle; + } + if (div.getAttribute('aria-label') !== child.accessibleHint + && child.accessibleHint !== null) + { + div.setAttribute('aria-label', child.accessibleHint); + } + } + } + } + + // increment the render id.. + this.renderId++; +}; + +/** + * Adjust the hit area based on the bounds of a display object + * + * @param {PIXI.Rectangle} hitArea - Bounds of the child + */ +AccessibilityManager.prototype.capHitArea = function capHitArea (hitArea) +{ + if (hitArea.x < 0) + { + hitArea.width += hitArea.x; + hitArea.x = 0; + } + + if (hitArea.y < 0) + { + hitArea.height += hitArea.y; + hitArea.y = 0; + } + + if (hitArea.x + hitArea.width > this.renderer.width) + { + hitArea.width = this.renderer.width - hitArea.x; + } + + if (hitArea.y + hitArea.height > this.renderer.height) + { + hitArea.height = this.renderer.height - hitArea.y; + } +}; + +/** + * Adds a DisplayObject to the accessibility manager + * + * @private + * @param {PIXI.DisplayObject} displayObject - The child to make accessible. + */ +AccessibilityManager.prototype.addChild = function addChild (displayObject) +{ + //this.activate(); + + var div = this.pool.pop(); + + if (!div) + { + div = document.createElement('button'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.backgroundColor = this.debug ? 'rgba(255,0,0,0.5)' : 'transparent'; + div.style.position = 'absolute'; + div.style.zIndex = DIV_TOUCH_ZINDEX; + div.style.borderStyle = 'none'; + + // ARIA attributes ensure that button title and hint updates are announced properly + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + // Chrome doesn't need aria-live to work as intended; in fact it just gets more confused. + div.setAttribute('aria-live', 'off'); + } + else + { + div.setAttribute('aria-live', 'polite'); + } + + if (navigator.userAgent.match(/rv:.*Gecko\//)) + { + // FireFox needs this to announce only the new button name + div.setAttribute('aria-relevant', 'additions'); + } + else + { + // required by IE, other browsers don't much care + div.setAttribute('aria-relevant', 'text'); + } + + div.addEventListener('click', this._onClick.bind(this)); + div.addEventListener('focus', this._onFocus.bind(this)); + div.addEventListener('focusout', this._onFocusOut.bind(this)); + } + + if (displayObject.accessibleTitle && displayObject.accessibleTitle !== null) + { + div.title = displayObject.accessibleTitle; + } + else if (!displayObject.accessibleHint + || displayObject.accessibleHint === null) + { + div.title = "displayObject " + (displayObject.tabIndex); + } + + if (displayObject.accessibleHint + && displayObject.accessibleHint !== null) + { + div.setAttribute('aria-label', displayObject.accessibleHint); + } + + // + + displayObject._accessibleActive = true; + displayObject._accessibleDiv = div; + div.displayObject = displayObject; + + this.children.push(displayObject); + this.div.appendChild(displayObject._accessibleDiv); + displayObject._accessibleDiv.tabIndex = displayObject.tabIndex; +}; + +/** + * Maps the div button press to pixi's InteractionManager (click) + * + * @private + * @param {MouseEvent} e - The click event. + */ +AccessibilityManager.prototype._onClick = function _onClick (e) +{ + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'click', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'pointertap', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'tap', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseover) + * + * @private + * @param {FocusEvent} e - The focus event. + */ +AccessibilityManager.prototype._onFocus = function _onFocus (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'assertive'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseover', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseout) + * + * @private + * @param {FocusEvent} e - The focusout event. + */ +AccessibilityManager.prototype._onFocusOut = function _onFocusOut (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'polite'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseout', interactionManager.eventData); +}; + +/** + * Is called when a key is pressed + * + * @private + * @param {KeyboardEvent} e - The keydown event. + */ +AccessibilityManager.prototype._onKeyDown = function _onKeyDown (e) +{ + if (e.keyCode !== KEY_CODE_TAB) + { + return; + } + + this.activate(); +}; + +/** + * Is called when the mouse moves across the renderer element + * + * @private + * @param {MouseEvent} e - The mouse event. + */ +AccessibilityManager.prototype._onMouseMove = function _onMouseMove (e) +{ + if (e.movementX === 0 && e.movementY === 0) + { + return; + } + + this.deactivate(); +}; + +/** + * Destroys the accessibility manager + * + */ +AccessibilityManager.prototype.destroy = function destroy () +{ + this.destroyTouchHook(); + this.div = null; + + for (var i = 0; i < this.children.length; i++) + { + this.children[i].div = null; + } + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown); + + this.pool = null; + this.children = null; + this.renderer = null; +}; + +/*! + * @pixi/runner - v5.1.1 + * Compiled Fri, 02 Aug 2019 23:20:23 UTC + * + * @pixi/runner is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * A Runner is a highly performant and simple alternative to signals. Best used in situations + * where events are dispatched to many objects at high frequency (say every frame!) + * + * + * like a signal.. + * ``` + * const myObject = { + * loaded: new PIXI.Runner('loaded') + * } + * + * const listener = { + * loaded: function(){ + * // thin + * } + * } + * + * myObject.update.add(listener); + * + * myObject.loaded.emit(); + * ``` + * + * Or for handling calling the same function on many items + * ``` + * const myGame = { + * update: new PIXI.Runner('update') + * } + * + * const gameObject = { + * update: function(time){ + * // update my gamey state + * } + * } + * + * myGame.update.add(gameObject1); + * + * myGame.update.emit(time); + * ``` + * @class + * @memberof PIXI + */ +var Runner = function Runner(name) +{ + this.items = []; + this._name = name; + this._aliasCount = 0; +}; + +var prototypeAccessors$3 = { empty: { configurable: true },name: { configurable: true } }; + +/** + * Dispatch/Broadcast Runner to all listeners added to the queue. + * @param {...any} params - optional parameters to pass to each listener + */ +Runner.prototype.emit = function emit (a0, a1, a2, a3, a4, a5, a6, a7) +{ + if (arguments.length > 8) + { + throw new Error('max arguments reached'); + } + + var ref = this; + var name = ref.name; + var items = ref.items; + + this._aliasCount++; + + for (var i = 0, len = items.length; i < len; i++) + { + items[i][name](a0, a1, a2, a3, a4, a5, a6, a7); + } + + if (items === this.items) + { + this._aliasCount--; + } + + return this; +}; + +Runner.prototype.ensureNonAliasedItems = function ensureNonAliasedItems () +{ + if (this._aliasCount > 0 && this.items.length > 1) + { + this._aliasCount = 0; + this.items = this.items.slice(0); + } +}; + +/** + * Add a listener to the Runner + * + * Runners do not need to have scope or functions passed to them. + * All that is required is to pass the listening object and ensure that it has contains a function that has the same name + * as the name provided to the Runner when it was created. + * + * Eg A listener passed to this Runner will require a 'complete' function. + * + * ``` + * const complete = new PIXI.Runner('complete'); + * ``` + * + * The scope used will be the object itself. + * + * @param {any} item - The object that will be listening. + */ +Runner.prototype.add = function add (item) +{ + if (item[this._name]) + { + this.ensureNonAliasedItems(); + this.remove(item); + this.items.push(item); + } + + return this; +}; + +/** + * Remove a single listener from the dispatch queue. + * @param {any} item - The listenr that you would like to remove. + */ +Runner.prototype.remove = function remove (item) +{ + var index = this.items.indexOf(item); + + if (index !== -1) + { + this.ensureNonAliasedItems(); + this.items.splice(index, 1); + } + + return this; +}; + +/** + * Check to see if the listener is already in the Runner + * @param {any} item - The listener that you would like to check. + */ +Runner.prototype.contains = function contains (item) +{ + return this.items.indexOf(item) !== -1; +}; + +/** + * Remove all listeners from the Runner + */ +Runner.prototype.removeAll = function removeAll () +{ + this.ensureNonAliasedItems(); + this.items.length = 0; + + return this; +}; + +/** + * Remove all references, don't use after this. + */ +Runner.prototype.destroy = function destroy () +{ + this.removeAll(); + this.items = null; + this._name = null; +}; + +/** + * `true` if there are no this Runner contains no listeners + * + * @member {boolean} + * @readonly + */ +prototypeAccessors$3.empty.get = function () +{ + return this.items.length === 0; +}; + +/** + * The name of the runner. + * + * @member {string} + * @readonly + */ +prototypeAccessors$3.name.get = function () +{ + return this._name; +}; + +Object.defineProperties( Runner.prototype, prototypeAccessors$3 ); + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method dispatch + * @see PIXI.Runner#emit + */ +Runner.prototype.dispatch = Runner.prototype.emit; + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method run + * @see PIXI.Runner#emit + */ +Runner.prototype.run = Runner.prototype.emit; + +/*! + * @pixi/ticker - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/ticker is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Target frames per millisecond. + * + * @static + * @name TARGET_FPMS + * @memberof PIXI.settings + * @type {number} + * @default 0.06 + */ +settings.TARGET_FPMS = 0.06; + +/** + * Represents the update priorities used by internal PIXI classes when registered with + * the {@link PIXI.Ticker} object. Higher priority items are updated first and lower + * priority items, such as render, should go later. + * + * @static + * @constant + * @name UPDATE_PRIORITY + * @memberof PIXI + * @type {object} + * @property {number} INTERACTION=50 Highest priority, used for {@link PIXI.interaction.InteractionManager} + * @property {number} HIGH=25 High priority updating, {@link PIXI.VideoBaseTexture} and {@link PIXI.AnimatedSprite} + * @property {number} NORMAL=0 Default priority for ticker events, see {@link PIXI.Ticker#add}. + * @property {number} LOW=-25 Low priority used for {@link PIXI.Application} rendering. + * @property {number} UTILITY=-50 Lowest priority used for {@link PIXI.prepare.BasePrepare} utility. + */ +var UPDATE_PRIORITY = { + INTERACTION: 50, + HIGH: 25, + NORMAL: 0, + LOW: -25, + UTILITY: -50, +}; + +/** + * Internal class for handling the priority sorting of ticker handlers. + * + * @private + * @class + * @memberof PIXI + */ +var TickerListener = function TickerListener(fn, context, priority, once) +{ + if ( context === void 0 ) context = null; + if ( priority === void 0 ) priority = 0; + if ( once === void 0 ) once = false; + + /** + * The handler function to execute. + * @private + * @member {Function} + */ + this.fn = fn; + + /** + * The calling to execute. + * @private + * @member {*} + */ + this.context = context; + + /** + * The current priority. + * @private + * @member {number} + */ + this.priority = priority; + + /** + * If this should only execute once. + * @private + * @member {boolean} + */ + this.once = once; + + /** + * The next item in chain. + * @private + * @member {TickerListener} + */ + this.next = null; + + /** + * The previous item in chain. + * @private + * @member {TickerListener} + */ + this.previous = null; + + /** + * `true` if this listener has been destroyed already. + * @member {boolean} + * @private + */ + this._destroyed = false; +}; + +/** + * Simple compare function to figure out if a function and context match. + * @private + * @param {Function} fn - The listener function to be added for one update + * @param {Function} context - The listener context + * @return {boolean} `true` if the listener match the arguments + */ +TickerListener.prototype.match = function match (fn, context) +{ + context = context || null; + + return this.fn === fn && this.context === context; +}; + +/** + * Emit by calling the current function. + * @private + * @param {number} deltaTime - time since the last emit. + * @return {TickerListener} Next ticker + */ +TickerListener.prototype.emit = function emit (deltaTime) +{ + if (this.fn) + { + if (this.context) + { + this.fn.call(this.context, deltaTime); + } + else + { + this.fn(deltaTime); + } + } + + var redirect = this.next; + + if (this.once) + { + this.destroy(true); + } + + // Soft-destroying should remove + // the next reference + if (this._destroyed) + { + this.next = null; + } + + return redirect; +}; + +/** + * Connect to the list. + * @private + * @param {TickerListener} previous - Input node, previous listener + */ +TickerListener.prototype.connect = function connect (previous) +{ + this.previous = previous; + if (previous.next) + { + previous.next.previous = this; + } + this.next = previous.next; + previous.next = this; +}; + +/** + * Destroy and don't use after this. + * @private + * @param {boolean} [hard = false] `true` to remove the `next` reference, this + * is considered a hard destroy. Soft destroy maintains the next reference. + * @return {TickerListener} The listener to redirect while emitting or removing. + */ +TickerListener.prototype.destroy = function destroy (hard) +{ + if ( hard === void 0 ) hard = false; + + this._destroyed = true; + this.fn = null; + this.context = null; + + // Disconnect, hook up next and previous + if (this.previous) + { + this.previous.next = this.next; + } + + if (this.next) + { + this.next.previous = this.previous; + } + + // Redirect to the next item + var redirect = this.next; + + // Remove references + this.next = hard ? null : redirect; + this.previous = null; + + return redirect; +}; + +/** + * A Ticker class that runs an update loop that other objects listen to. + * + * This class is composed around listeners meant for execution on the next requested animation frame. + * Animation frames are requested only when necessary, e.g. When the ticker is started and the emitter has listeners. + * + * @class + * @memberof PIXI + */ +var Ticker = function Ticker() +{ + var this$1 = this; + + /** + * The first listener. All new listeners added are chained on this. + * @private + * @type {TickerListener} + */ + this._head = new TickerListener(null, null, Infinity); + + /** + * Internal current frame request ID + * @type {?number} + * @private + */ + this._requestId = null; + + /** + * Internal value managed by minFPS property setter and getter. + * This is the maximum allowed milliseconds between updates. + * @type {number} + * @private + */ + this._maxElapsedMS = 100; + + /** + * Internal value managed by maxFPS property setter and getter. + * This is the minimum allowed milliseconds between updates. + * @private + */ + this._minElapsedMS = 0; + + /** + * Whether or not this ticker should invoke the method + * {@link PIXI.Ticker#start} automatically + * when a listener is added. + * + * @member {boolean} + * @default false + */ + this.autoStart = false; + + /** + * Scalar time value from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * + * @member {number} + * @default 1 + */ + this.deltaTime = 1; + + /** + * Scaler time elapsed in milliseconds from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.deltaMS = 1 / settings.TARGET_FPMS; + + /** + * Time elapsed in milliseconds from last frame to this frame. + * Opposed to what the scalar {@link PIXI.Ticker#deltaTime} + * is based, this value is neither capped nor scaled. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.elapsedMS = 1 / settings.TARGET_FPMS; + + /** + * The last time {@link PIXI.Ticker#update} was invoked. + * This value is also reset internally outside of invoking + * update, but only when a new animation frame is requested. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * + * @member {number} + * @default -1 + */ + this.lastTime = -1; + + /** + * Factor of current {@link PIXI.Ticker#deltaTime}. + * @example + * // Scales ticker.deltaTime to what would be + * // the equivalent of approximately 120 FPS + * ticker.speed = 2; + * + * @member {number} + * @default 1 + */ + this.speed = 1; + + /** + * Whether or not this ticker has been started. + * `true` if {@link PIXI.Ticker#start} has been called. + * `false` if {@link PIXI.Ticker#stop} has been called. + * While `false`, this value may change to `true` in the + * event of {@link PIXI.Ticker#autoStart} being `true` + * and a listener is added. + * + * @member {boolean} + * @default false + */ + this.started = false; + + /** + * If enabled, deleting is disabled. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + + /** + * The last time keyframe was executed. + * Maintains a relatively fixed interval with the previous value. + * @member {number} + * @default -1 + * @private + */ + this._lastFrame = -1; + + /** + * Internal tick method bound to ticker instance. + * This is because in early 2015, Function.bind + * is still 60% slower in high performance scenarios. + * Also separating frame requests from update method + * so listeners may be called at any time and with + * any animation API, just invoke ticker.update(time). + * + * @private + * @param {number} time - Time since last tick. + */ + this._tick = function (time) { + this$1._requestId = null; + + if (this$1.started) + { + // Invoke listeners now + this$1.update(time); + // Listener side effects may have modified ticker state. + if (this$1.started && this$1._requestId === null && this$1._head.next) + { + this$1._requestId = requestAnimationFrame(this$1._tick); + } + } + }; +}; + +var prototypeAccessors$4 = { FPS: { configurable: true },minFPS: { configurable: true },maxFPS: { configurable: true } }; +var staticAccessors$2 = { shared: { configurable: true },system: { configurable: true } }; + +/** + * Conditionally requests a new animation frame. + * If a frame has not already been requested, and if the internal + * emitter has listeners, a new frame is requested. + * + * @private + */ +Ticker.prototype._requestIfNeeded = function _requestIfNeeded () +{ + if (this._requestId === null && this._head.next) + { + // ensure callbacks get correct delta + this.lastTime = performance.now(); + this._lastFrame = this.lastTime; + this._requestId = requestAnimationFrame(this._tick); + } +}; + +/** + * Conditionally cancels a pending animation frame. + * + * @private + */ +Ticker.prototype._cancelIfNeeded = function _cancelIfNeeded () +{ + if (this._requestId !== null) + { + cancelAnimationFrame(this._requestId); + this._requestId = null; + } +}; + +/** + * Conditionally requests a new animation frame. + * If the ticker has been started it checks if a frame has not already + * been requested, and if the internal emitter has listeners. If these + * conditions are met, a new frame is requested. If the ticker has not + * been started, but autoStart is `true`, then the ticker starts now, + * and continues with the previous conditions to request a new frame. + * + * @private + */ +Ticker.prototype._startIfPossible = function _startIfPossible () +{ + if (this.started) + { + this._requestIfNeeded(); + } + else if (this.autoStart) + { + this.start(); + } +}; + +/** + * Register a handler for tick events. Calls continuously unless + * it is removed or the ticker is stopped. + * + * @param {Function} fn - The listener function to be added for updates + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.add = function add (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority)); +}; + +/** + * Add a handler for the tick event which is only execute once. + * + * @param {Function} fn - The listener function to be added for one update + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.addOnce = function addOnce (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority, true)); +}; + +/** + * Internally adds the event handler so that it can be sorted by priority. + * Priority allows certain handler (user, AnimatedSprite, Interaction) to be run + * before the rendering. + * + * @private + * @param {TickerListener} listener - Current listener being added. + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype._addListener = function _addListener (listener) +{ + // For attaching to head + var current = this._head.next; + var previous = this._head; + + // Add the first item + if (!current) + { + listener.connect(previous); + } + else + { + // Go from highest to lowest priority + while (current) + { + if (listener.priority > current.priority) + { + listener.connect(previous); + break; + } + previous = current; + current = current.next; + } + + // Not yet connected + if (!listener.previous) + { + listener.connect(previous); + } + } + + this._startIfPossible(); + + return this; +}; + +/** + * Removes any handlers matching the function and context parameters. + * If no handlers are left after removing, then it cancels the animation frame. + * + * @param {Function} fn - The listener function to be removed + * @param {*} [context] - The listener context to be removed + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.remove = function remove (fn, context) +{ + var listener = this._head.next; + + while (listener) + { + // We found a match, lets remove it + // no break to delete all possible matches + // incase a listener was added 2+ times + if (listener.match(fn, context)) + { + listener = listener.destroy(); + } + else + { + listener = listener.next; + } + } + + if (!this._head.next) + { + this._cancelIfNeeded(); + } + + return this; +}; + +/** + * Starts the ticker. If the ticker has listeners + * a new animation frame is requested at this point. + */ +Ticker.prototype.start = function start () +{ + if (!this.started) + { + this.started = true; + this._requestIfNeeded(); + } +}; + +/** + * Stops the ticker. If the ticker has requested + * an animation frame it is canceled at this point. + */ +Ticker.prototype.stop = function stop () +{ + if (this.started) + { + this.started = false; + this._cancelIfNeeded(); + } +}; + +/** + * Destroy the ticker and don't use after this. Calling + * this method removes all references to internal events. + */ +Ticker.prototype.destroy = function destroy () +{ + if (!this._protected) + { + this.stop(); + + var listener = this._head.next; + + while (listener) + { + listener = listener.destroy(true); + } + + this._head.destroy(); + this._head = null; + } +}; + +/** + * Triggers an update. An update entails setting the + * current {@link PIXI.Ticker#elapsedMS}, + * the current {@link PIXI.Ticker#deltaTime}, + * invoking all listeners with current deltaTime, + * and then finally setting {@link PIXI.Ticker#lastTime} + * with the value of currentTime that was provided. + * This method will be called automatically by animation + * frame callbacks if the ticker instance has been started + * and listeners are added. + * + * @param {number} [currentTime=performance.now()] - the current time of execution + */ +Ticker.prototype.update = function update (currentTime) +{ + if ( currentTime === void 0 ) currentTime = performance.now(); + + var elapsedMS; + + // If the difference in time is zero or negative, we ignore most of the work done here. + // If there is no valid difference, then should be no reason to let anyone know about it. + // A zero delta, is exactly that, nothing should update. + // + // The difference in time can be negative, and no this does not mean time traveling. + // This can be the result of a race condition between when an animation frame is requested + // on the current JavaScript engine event loop, and when the ticker's start method is invoked + // (which invokes the internal _requestIfNeeded method). If a frame is requested before + // _requestIfNeeded is invoked, then the callback for the animation frame the ticker requests, + // can receive a time argument that can be less than the lastTime value that was set within + // _requestIfNeeded. This difference is in microseconds, but this is enough to cause problems. + // + // This check covers this browser engine timing issue, as well as if consumers pass an invalid + // currentTime value. This may happen if consumers opt-out of the autoStart, and update themselves. + + if (currentTime > this.lastTime) + { + // Save uncapped elapsedMS for measurement + elapsedMS = this.elapsedMS = currentTime - this.lastTime; + + // cap the milliseconds elapsed used for deltaTime + if (elapsedMS > this._maxElapsedMS) + { + elapsedMS = this._maxElapsedMS; + } + + elapsedMS *= this.speed; + + // If not enough time has passed, exit the function. + // Get ready for next frame by setting _lastFrame, but based on _minElapsedMS + // adjustment to ensure a relatively stable interval. + if (this._minElapsedMS) + { + var delta = currentTime - this._lastFrame | 0; + + if (delta < this._minElapsedMS) + { + return; + } + + this._lastFrame = currentTime - (delta % this._minElapsedMS); + } + + this.deltaMS = elapsedMS; + this.deltaTime = this.deltaMS * settings.TARGET_FPMS; + + // Cache a local reference, in-case ticker is destroyed + // during the emit, we can still check for head.next + var head = this._head; + + // Invoke listeners added to internal emitter + var listener = head.next; + + while (listener) + { + listener = listener.emit(this.deltaTime); + } + + if (!head.next) + { + this._cancelIfNeeded(); + } + } + else + { + this.deltaTime = this.deltaMS = this.elapsedMS = 0; + } + + this.lastTime = currentTime; +}; + +/** + * The frames per second at which this ticker is running. + * The default is approximately 60 in most modern browsers. + * **Note:** This does not factor in the value of + * {@link PIXI.Ticker#speed}, which is specific + * to scaling {@link PIXI.Ticker#deltaTime}. + * + * @member {number} + * @readonly + */ +prototypeAccessors$4.FPS.get = function () +{ + return 1000 / this.elapsedMS; +}; + +/** + * Manages the maximum amount of milliseconds allowed to + * elapse between invoking {@link PIXI.Ticker#update}. + * This value is used to cap {@link PIXI.Ticker#deltaTime}, + * but does not effect the measured value of {@link PIXI.Ticker#FPS}. + * When setting this property it is clamped to a value between + * `0` and `PIXI.settings.TARGET_FPMS * 1000`. + * + * @member {number} + * @default 10 + */ +prototypeAccessors$4.minFPS.get = function () +{ + return 1000 / this._maxElapsedMS; +}; + +prototypeAccessors$4.minFPS.set = function (fps) // eslint-disable-line require-jsdoc +{ + // Minimum must be below the maxFPS + var minFPS = Math.min(this.maxFPS, fps); + + // Must be at least 0, but below 1 / settings.TARGET_FPMS + var minFPMS = Math.min(Math.max(0, minFPS) / 1000, settings.TARGET_FPMS); + + this._maxElapsedMS = 1 / minFPMS; +}; + +/** + * Manages the minimum amount of milliseconds required to + * elapse between invoking {@link PIXI.Ticker#update}. + * This will effect the measured value of {@link PIXI.Ticker#FPS}. + * If it is set to `0`, then there is no limit; PixiJS will render as many frames as it can. + * Otherwise it will be at least `minFPS` + * + * @member {number} + * @default 0 + */ +prototypeAccessors$4.maxFPS.get = function () +{ + if (this._minElapsedMS) + { + return Math.round(1000 / this._minElapsedMS); + } + + return 0; +}; + +prototypeAccessors$4.maxFPS.set = function (fps) +{ + if (fps === 0) + { + this._minElapsedMS = 0; + } + else + { + // Max must be at least the minFPS + var maxFPS = Math.max(this.minFPS, fps); + + this._minElapsedMS = 1 / (maxFPS / 1000); + } +}; + +/** + * The shared ticker instance used by {@link PIXI.AnimatedSprite} and by + * {@link PIXI.VideoResource} to update animation frames / video textures. + * + * It may also be used by {@link PIXI.Application} if created with the `sharedTicker` option property set to true. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * Please follow the examples for usage, including how to opt-out of auto-starting the shared ticker. + * + * @example + * let ticker = PIXI.Ticker.shared; + * // Set this to prevent starting this ticker when listeners are added. + * // By default this is true only for the PIXI.Ticker.shared instance. + * ticker.autoStart = false; + * // FYI, call this to ensure the ticker is stopped. It should be stopped + * // if you have not attempted to render anything yet. + * ticker.stop(); + * // Call this when you are ready for a running shared ticker. + * ticker.start(); + * + * @example + * // You may use the shared ticker to render... + * let renderer = PIXI.autoDetectRenderer(); + * let stage = new PIXI.Container(); + * document.body.appendChild(renderer.view); + * ticker.add(function (time) { + * renderer.render(stage); + * }); + * + * @example + * // Or you can just update it manually. + * ticker.autoStart = false; + * ticker.stop(); + * function animate(time) { + * ticker.update(time); + * renderer.render(stage); + * requestAnimationFrame(animate); + * } + * animate(performance.now()); + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.shared.get = function () +{ + if (!Ticker._shared) + { + var shared = Ticker._shared = new Ticker(); + + shared.autoStart = true; + shared._protected = true; + } + + return Ticker._shared; +}; + +/** + * The system ticker instance used by {@link PIXI.interaction.InteractionManager} and by + * {@link PIXI.BasePrepare} for core timing functionality that shouldn't usually need to be paused, + * unlike the `shared` ticker which drives visual animations and rendering which may want to be paused. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.system.get = function () +{ + if (!Ticker._system) + { + var system = Ticker._system = new Ticker(); + + system.autoStart = true; + system._protected = true; + } + + return Ticker._system; +}; + +Object.defineProperties( Ticker.prototype, prototypeAccessors$4 ); +Object.defineProperties( Ticker, staticAccessors$2 ); + +/** + * Middleware for for Application Ticker. + * + * @example + * import {TickerPlugin} from '@pixi/ticker'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(TickerPlugin); + * + * @class + * @memberof PIXI + */ +var TickerPlugin = function TickerPlugin () {}; + +TickerPlugin.init = function init (options) +{ + var this$1 = this; + + // Set default + options = Object.assign({ + autoStart: true, + sharedTicker: false, + }, options); + + // Create ticker setter + Object.defineProperty(this, 'ticker', + { + set: function set(ticker) + { + if (this._ticker) + { + this._ticker.remove(this.render, this); + } + this._ticker = ticker; + if (ticker) + { + ticker.add(this.render, this, UPDATE_PRIORITY.LOW); + } + }, + get: function get() + { + return this._ticker; + }, + }); + + /** + * Convenience method for stopping the render. + * + * @method PIXI.Application#stop + */ + this.stop = function () { + this$1._ticker.stop(); + }; + + /** + * Convenience method for starting the render. + * + * @method PIXI.Application#start + */ + this.start = function () { + this$1._ticker.start(); + }; + + /** + * Internal reference to the ticker. + * + * @type {PIXI.Ticker} + * @name _ticker + * @memberof PIXI.Application# + * @private + */ + this._ticker = null; + + /** + * Ticker for doing render updates. + * + * @type {PIXI.Ticker} + * @name ticker + * @memberof PIXI.Application# + * @default PIXI.Ticker.shared + */ + this.ticker = options.sharedTicker ? Ticker.shared : new Ticker(); + + // Start the rendering + if (options.autoStart) + { + this.start(); + } +}; + +/** + * Clean up the ticker, scoped to application. + * + * @static + * @private + */ +TickerPlugin.destroy = function destroy () +{ + if (this._ticker) + { + var oldTicker = this._ticker; + + this.ticker = null; + oldTicker.destroy(); + } +}; + +/*! + * @pixi/core - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/core is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Base resource class for textures that manages validation and uploading, depending on its type. + * + * Uploading of a base texture to the GPU is required. + * + * @class + * @memberof PIXI.resources + */ +var Resource = function Resource(width, height) +{ + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * Internal width of the resource + * @member {number} + * @protected + */ + this._width = width; + + /** + * Internal height of the resource + * @member {number} + * @protected + */ + this._height = height; + + /** + * If resource has been destroyed + * @member {boolean} + * @readonly + * @default false + */ + this.destroyed = false; + + /** + * `true` if resource is created by BaseTexture + * useful for doing cleanup with BaseTexture destroy + * and not cleaning up resources that were created + * externally. + * @member {boolean} + * @protected + */ + this.internal = false; + + /** + * Mini-runner for handling resize events + * + * @member {Runner} + * @private + */ + this.onResize = new Runner('setRealSize', 2); + + /** + * Mini-runner for handling update events + * + * @member {Runner} + * @private + */ + this.onUpdate = new Runner('update'); + + /** + * Handle internal errors, such as loading errors + * + * @member {Runner} + * @private + */ + this.onError = new Runner('onError', 1); +}; + +var prototypeAccessors$5 = { valid: { configurable: true },width: { configurable: true },height: { configurable: true } }; + +/** + * Bind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.bind = function bind (baseTexture) +{ + this.onResize.add(baseTexture); + this.onUpdate.add(baseTexture); + this.onError.add(baseTexture); + + // Call a resize immediate if we already + // have the width and height of the resource + if (this._width || this._height) + { + this.onResize.run(this._width, this._height); + } +}; + +/** + * Unbind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.unbind = function unbind (baseTexture) +{ + this.onResize.remove(baseTexture); + this.onUpdate.remove(baseTexture); + this.onError.remove(baseTexture); +}; + +/** + * Trigger a resize event + * @param {number} width X dimension + * @param {number} height Y dimension + */ +Resource.prototype.resize = function resize (width, height) +{ + if (width !== this._width || height !== this._height) + { + this._width = width; + this._height = height; + this.onResize.run(width, height); + } +}; + +/** + * Has been validated + * @readonly + * @member {boolean} + */ +prototypeAccessors$5.valid.get = function () +{ + return !!this._width && !!this._height; +}; + +/** + * Has been updated trigger event + */ +Resource.prototype.update = function update () +{ + if (!this.destroyed) + { + this.onUpdate.run(); + } +}; + +/** + * This can be overridden to start preloading a resource + * or do any other prepare step. + * @protected + * @return {Promise} Handle the validate event + */ +Resource.prototype.load = function load () +{ + return Promise.resolve(); +}; + +/** + * The width of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.width.get = function () +{ + return this._width; +}; + +/** + * The height of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.height.get = function () +{ + return this._height; +}; + +/** + * Uploads the texture or returns false if it cant for some reason. Override this. + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} true is success + */ +Resource.prototype.upload = function upload (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Set the style, optional to override + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} `true` is success + */ +Resource.prototype.style = function style (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Clean up anything, this happens when destroying is ready. + * + * @protected + */ +Resource.prototype.dispose = function dispose () +{ + // override +}; + +/** + * Call when destroying resource, unbind any BaseTexture object + * before calling this method, as reference counts are maintained + * internally. + */ +Resource.prototype.destroy = function destroy () +{ + if (!this.destroyed) + { + this.destroyed = true; + this.dispose(); + this.onError.removeAll(); + this.onError = null; + this.onResize.removeAll(); + this.onResize = null; + this.onUpdate.removeAll(); + this.onUpdate = null; + } +}; + +Object.defineProperties( Resource.prototype, prototypeAccessors$5 ); + +/** + * Base for all the image/canvas resources + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BaseImageResource = /*@__PURE__*/(function (Resource) { + function BaseImageResource(source) + { + var width = source.naturalWidth || source.videoWidth || source.width; + var height = source.naturalHeight || source.videoHeight || source.height; + + Resource.call(this, width, height); + + /** + * The source element + * @member {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} + * @readonly + */ + this.source = source; + + /** + * If set to `true`, will force `texImage2D` over `texSubImage2D` for uploading. + * Certain types of media (e.g. video) using `texImage2D` is more performant. + * @member {boolean} + * @default false + * @private + */ + this.noSubImage = false; + } + + if ( Resource ) BaseImageResource.__proto__ = Resource; + BaseImageResource.prototype = Object.create( Resource && Resource.prototype ); + BaseImageResource.prototype.constructor = BaseImageResource; + + /** + * Set cross origin based detecting the url and the crossorigin + * @protected + * @param {HTMLElement} element - Element to apply crossOrigin + * @param {string} url - URL to check + * @param {boolean|string} [crossorigin=true] - Cross origin value to use + */ + BaseImageResource.crossOrigin = function crossOrigin (element, url, crossorigin) + { + if (crossorigin === undefined && url.indexOf('data:') !== 0) + { + element.crossOrigin = determineCrossOrigin(url); + } + else if (crossorigin !== false) + { + element.crossOrigin = typeof crossorigin === 'string' ? crossorigin : 'anonymous'; + } + }; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture + * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} [source] (optional) + * @returns {boolean} true is success + */ + BaseImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture, source) + { + var gl = renderer.gl; + var width = baseTexture.realWidth; + var height = baseTexture.realHeight; + + source = source || this.source; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (!this.noSubImage + && baseTexture.target === gl.TEXTURE_2D + && glTexture.width === width + && glTexture.height === height) + { + gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, baseTexture.format, baseTexture.type, source); + } + else + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(baseTexture.target, 0, baseTexture.format, baseTexture.format, baseTexture.type, source); + } + + return true; + }; + + /** + * Checks if source width/height was changed, resize can cause extra baseTexture update. + * Triggers one update in any case. + */ + BaseImageResource.prototype.update = function update () + { + if (this.destroyed) + { + return; + } + + var width = this.source.naturalWidth || this.source.videoWidth || this.source.width; + var height = this.source.naturalHeight || this.source.videoHeight || this.source.height; + + this.resize(width, height); + + Resource.prototype.update.call(this); + }; + + /** + * Destroy this BaseImageResource + * @override + * @param {PIXI.BaseTexture} [fromTexture] Optional base texture + * @return {boolean} Destroy was successful + */ + BaseImageResource.prototype.dispose = function dispose () + { + this.source = null; + }; + + return BaseImageResource; +}(Resource)); + +/** + * Resource type for HTMLImageElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + */ +var ImageResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLImageElement)) + { + var imageElement = new Image(); + + BaseImageResource.crossOrigin(imageElement, source, options.crossorigin); + + imageElement.src = source; + source = imageElement; + } + + BaseImageResource.call(this, source); + + // FireFox 68, and possibly other versions, seems like setting the HTMLImageElement#width and #height + // to non-zero values before its loading completes if images are in a cache. + // Because of this, need to set the `_width` and the `_height` to zero to avoid uploading incomplete images. + // Please refer to the issue #5968 (https://github.com/pixijs/pixi.js/issues/5968). + if (!source.complete && !!this._width && !!this._height) + { + this._width = 0; + this._height = 0; + } + + /** + * URL of the image source + * @member {string} + */ + this.url = source.src; + + /** + * When process is completed + * @member {Promise} + * @private + */ + this._process = null; + + /** + * If the image should be disposed after upload + * @member {boolean} + * @default false + */ + this.preserveBitmap = false; + + /** + * If capable, convert the image using createImageBitmap API + * @member {boolean} + * @default PIXI.settings.CREATE_IMAGE_BITMAP + */ + this.createBitmap = (options.createBitmap !== undefined + ? options.createBitmap : settings.CREATE_IMAGE_BITMAP) && !!window.createImageBitmap; + + /** + * Controls texture premultiplyAlpha field + * Copies from options + * @member {boolean|null} + * @readonly + */ + this.premultiplyAlpha = options.premultiplyAlpha !== false; + + /** + * The ImageBitmap element created for HTMLImageElement + * @member {ImageBitmap} + * @default null + */ + this.bitmap = null; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) ImageResource.__proto__ = BaseImageResource; + ImageResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageResource.prototype.constructor = ImageResource; + + /** + * returns a promise when image will be loaded and processed + * + * @param {boolean} [createBitmap=true] whether process image into bitmap + * @returns {Promise} + */ + ImageResource.prototype.load = function load (createBitmap) + { + var this$1 = this; + + if (createBitmap !== undefined) + { + this.createBitmap = createBitmap; + } + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + this$1.url = this$1.source.src; + var ref = this$1; + var source = ref.source; + + var completed = function () { + if (this$1.destroyed) + { + return; + } + source.onload = null; + source.onerror = null; + + this$1.resize(source.width, source.height); + this$1._load = null; + + if (this$1.createBitmap) + { + resolve(this$1.process()); + } + else + { + resolve(this$1); + } + }; + + if (source.complete && source.src) + { + completed(); + } + else + { + source.onload = completed; + source.onerror = function (event) { return this$1.onError.run(event); }; + } + }); + + return this._load; + }; + + /** + * Called when we need to convert image into BitmapImage. + * Can be called multiple times, real promise is cached inside. + * + * @returns {Promise} cached promise to fill that bitmap + */ + ImageResource.prototype.process = function process () + { + var this$1 = this; + + if (this._process !== null) + { + return this._process; + } + if (this.bitmap !== null || !window.createImageBitmap) + { + return Promise.resolve(this); + } + + this._process = window.createImageBitmap(this.source, + 0, 0, this.source.width, this.source.height, + { + premultiplyAlpha: this.premultiplyAlpha ? 'premultiply' : 'none', + }) + .then(function (bitmap) { + if (this$1.destroyed) + { + return Promise.reject(); + } + this$1.bitmap = bitmap; + this$1.update(); + this$1._process = null; + + return Promise.resolve(this$1); + }); + + return this._process; + }; + + /** + * Upload the image resource to GPU. + * + * @param {PIXI.Renderer} renderer - Renderer to upload to + * @param {PIXI.BaseTexture} baseTexture - BaseTexture for this resource + * @param {PIXI.GLTexture} glTexture - GLTexture to use + * @returns {boolean} true is success + */ + ImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + baseTexture.premultiplyAlpha = this.premultiplyAlpha; + + if (!this.createBitmap) + { + return BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture); + } + if (!this.bitmap) + { + // yeah, ignore the output + this.process(); + if (!this.bitmap) + { + return false; + } + } + + BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture, this.bitmap); + + if (!this.preserveBitmap) + { + // checks if there are other renderers that possibly need this bitmap + + var flag = true; + + for (var key in baseTexture._glTextures) + { + var otherTex = baseTexture._glTextures[key]; + + if (otherTex !== glTexture && otherTex.dirtyId !== baseTexture.dirtyId) + { + flag = false; + break; + } + } + + if (flag) + { + if (this.bitmap.close) + { + this.bitmap.close(); + } + + this.bitmap = null; + } + } + + return true; + }; + + /** + * Destroys this texture + * @override + */ + ImageResource.prototype.dispose = function dispose () + { + this.source.onload = null; + this.source.onerror = null; + + BaseImageResource.prototype.dispose.call(this); + + if (this.bitmap) + { + this.bitmap.close(); + this.bitmap = null; + } + this._process = null; + this._load = null; + }; + + return ImageResource; +}(BaseImageResource)); + +/** + * Collection of installed resource types, class must extend {@link PIXI.resources.Resource}. + * @example + * class CustomResource extends PIXI.resources.Resource { + * // MUST have source, options constructor signature + * // for auto-detected resources to be created. + * constructor(source, options) { + * super(); + * } + * upload(renderer, baseTexture, glTexture) { + * // upload with GL + * return true; + * } + * // used to auto-detect resource + * static test(source, extension) { + * return extension === 'xyz'|| source instanceof SomeClass; + * } + * } + * // Install the new resource type + * PIXI.resources.INSTALLED.push(CustomResource); + * + * @name PIXI.resources.INSTALLED + * @type {Array<*>} + * @static + * @readonly + */ +var INSTALLED = []; + +/** + * Create a resource element from a single source element. This + * auto-detects which type of resource to create. All resources that + * are auto-detectable must have a static `test` method and a constructor + * with the arguments `(source, options?)`. Currently, the supported + * resources for auto-detection include: + * - {@link PIXI.resources.ImageResource} + * - {@link PIXI.resources.CanvasResource} + * - {@link PIXI.resources.VideoResource} + * - {@link PIXI.resources.SVGResource} + * - {@link PIXI.resources.BufferResource} + * @static + * @function PIXI.resources.autoDetectResource + * @param {string|*} source - Resource source, this can be the URL to the resource, + * a typed-array (for BufferResource), HTMLVideoElement, SVG data-uri + * or any other resource that can be auto-detected. If not resource is + * detected, it's assumed to be an ImageResource. + * @param {object} [options] - Pass-through options to use for Resource + * @param {number} [options.width] - Width of BufferResource or SVG rasterization + * @param {number} [options.height] - Height of BufferResource or SVG rasterization + * @param {boolean} [options.autoLoad=true] - Image, SVG and Video flag to start loading + * @param {number} [options.scale=1] - SVG source scale. Overridden by width, height + * @param {boolean} [options.createBitmap=PIXI.settings.CREATE_IMAGE_BITMAP] - Image option to create Bitmap object + * @param {boolean} [options.crossorigin=true] - Image and Video option to set crossOrigin + * @param {boolean} [options.autoPlay=true] - Video option to start playing video immediately + * @param {number} [options.updateFPS=0] - Video option to update how many times a second the + * texture should be updated from the video. Leave at 0 to update at every render + * @return {PIXI.resources.Resource} The created resource. + */ +function autoDetectResource(source, options) +{ + if (!source) + { + return null; + } + + var extension = ''; + + if (typeof source === 'string') + { + // search for file extension: period, 3-4 chars, then ?, # or EOL + var result = (/\.(\w{3,4})(?:$|\?|#)/i).exec(source); + + if (result) + { + extension = result[1].toLowerCase(); + } + } + + for (var i = INSTALLED.length - 1; i >= 0; --i) + { + var ResourcePlugin = INSTALLED[i]; + + if (ResourcePlugin.test && ResourcePlugin.test(source, extension)) + { + return new ResourcePlugin(source, options); + } + } + + // When in doubt: probably an image + // might be appropriate to throw an error or return null + return new ImageResource(source, options); +} + +/** + * @interface SharedArrayBuffer + */ + +/** + * Buffer resource with data of typed array. + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BufferResource = /*@__PURE__*/(function (Resource) { + function BufferResource(source, options) + { + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + if (!width || !height) + { + throw new Error('BufferResource width or height invalid'); + } + + Resource.call(this, width, height); + + /** + * Source array + * Cannot be ClampedUint8Array because it cant be uploaded to WebGL + * + * @member {Float32Array|Uint8Array|Uint32Array} + */ + this.data = source; + } + + if ( Resource ) BufferResource.__proto__ = Resource; + BufferResource.prototype = Object.create( Resource && Resource.prototype ); + BufferResource.prototype.constructor = BufferResource; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture glTexture + * @returns {boolean} true is success + */ + BufferResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + glTexture.internalFormat, + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + glTexture.type, + this.data + ); + } + + return true; + }; + + /** + * Destroy and don't use after this + * @override + */ + BufferResource.prototype.dispose = function dispose () + { + this.data = null; + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @return {boolean} `true` if + */ + BufferResource.test = function test (source) + { + return source instanceof Float32Array + || source instanceof Uint8Array + || source instanceof Uint32Array; + }; + + return BufferResource; +}(Resource)); + +var defaultBufferOptions = { + scaleMode: SCALE_MODES.NEAREST, + format: FORMATS.RGBA, + premultiplyAlpha: false, +}; + +/** + * A Texture stores the information that represents an image. + * All textures have a base texture, which contains information about the source. + * Therefore you can have many textures all using a single BaseTexture + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + * @param {PIXI.resources.Resource|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} [resource=null] + * The current resource to use, for things that aren't Resource objects, will be converted + * into a Resource. + * @param {Object} [options] - Collection of options + * @param {PIXI.MIPMAP_MODES} [options.mipmap=PIXI.settings.MIPMAP_TEXTURES] - If mipmapping is enabled for texture + * @param {number} [options.anisotropicLevel=PIXI.settings.ANISOTROPIC_LEVEL] - Anisotropic filtering level of texture + * @param {PIXI.WRAP_MODES} [options.wrapMode=PIXI.settings.WRAP_MODE] - Wrap mode for textures + * @param {PIXI.SCALE_MODES} [options.scaleMode=PIXI.settings.SCALE_MODE] - Default scale mode, linear, nearest + * @param {PIXI.FORMATS} [options.format=PIXI.FORMATS.RGBA] - GL format type + * @param {PIXI.TYPES} [options.type=PIXI.TYPES.UNSIGNED_BYTE] - GL data type + * @param {PIXI.TARGETS} [options.target=PIXI.TARGETS.TEXTURE_2D] - GL texture target + * @param {boolean} [options.premultiplyAlpha=true] - Pre multiply the image alpha + * @param {number} [options.width=0] - Width of the texture + * @param {number} [options.height=0] - Height of the texture + * @param {number} [options.resolution] - Resolution of the base texture + * @param {object} [options.resourceOptions] - Optional resource options, + * see {@link PIXI.resources.autoDetectResource autoDetectResource} + */ +var BaseTexture = /*@__PURE__*/(function (EventEmitter) { + function BaseTexture(resource, options) + { + if ( resource === void 0 ) resource = null; + if ( options === void 0 ) options = null; + + EventEmitter.call(this); + + options = options || {}; + + var premultiplyAlpha = options.premultiplyAlpha; + var mipmap = options.mipmap; + var anisotropicLevel = options.anisotropicLevel; + var scaleMode = options.scaleMode; + var width = options.width; + var height = options.height; + var wrapMode = options.wrapMode; + var format = options.format; + var type = options.type; + var target = options.target; + var resolution = options.resolution; + var resourceOptions = options.resourceOptions; + + // Convert the resource to a Resource object + if (resource && !(resource instanceof Resource)) + { + resource = autoDetectResource(resource, resourceOptions); + resource.internal = true; + } + + /** + * The width of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.width = width || 0; + + /** + * The height of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.height = height || 0; + + /** + * The resolution / device pixel ratio of the texture + * + * @member {number} + * @default PIXI.settings.RESOLUTION + */ + this.resolution = resolution || settings.RESOLUTION; + + /** + * Mipmap mode of the texture, affects downscaled images + * + * @member {PIXI.MIPMAP_MODES} + * @default PIXI.settings.MIPMAP_TEXTURES + */ + this.mipmap = mipmap !== undefined ? mipmap : settings.MIPMAP_TEXTURES; + + /** + * Anisotropic filtering level of texture + * + * @member {number} + * @default PIXI.settings.ANISOTROPIC_LEVEL + */ + this.anisotropicLevel = anisotropicLevel !== undefined ? anisotropicLevel : settings.ANISOTROPIC_LEVEL; + + /** + * How the texture wraps + * @member {number} + */ + this.wrapMode = wrapMode || settings.WRAP_MODE; + + /** + * The scale mode to apply when scaling this texture + * + * @member {PIXI.SCALE_MODES} + * @default PIXI.settings.SCALE_MODE + */ + this.scaleMode = scaleMode !== undefined ? scaleMode : settings.SCALE_MODE; + + /** + * The pixel format of the texture + * + * @member {PIXI.FORMATS} + * @default PIXI.FORMATS.RGBA + */ + this.format = format || FORMATS.RGBA; + + /** + * The type of resource data + * + * @member {PIXI.TYPES} + * @default PIXI.TYPES.UNSIGNED_BYTE + */ + this.type = type || TYPES.UNSIGNED_BYTE; + + /** + * The target type + * + * @member {PIXI.TARGETS} + * @default PIXI.TARGETS.TEXTURE_2D + */ + this.target = target || TARGETS.TEXTURE_2D; + + /** + * Set to true to enable pre-multiplied alpha + * + * @member {boolean} + * @default true + */ + this.premultiplyAlpha = premultiplyAlpha !== false; + + /** + * Global unique identifier for this BaseTexture + * + * @member {string} + * @protected + */ + this.uid = uid(); + + /** + * Used by automatic texture Garbage Collection, stores last GC tick when it was bound + * + * @member {number} + * @protected + */ + this.touched = 0; + + /** + * Whether or not the texture is a power of two, try to use power of two textures as much + * as you can + * + * @readonly + * @member {boolean} + * @default false + */ + this.isPowerOfTwo = false; + this._refreshPOT(); + + /** + * The map of render context textures where this is bound + * + * @member {Object} + * @private + */ + this._glTextures = {}; + + /** + * Used by TextureSystem to only update texture to the GPU when needed. + * Please call `update()` to increment it. + * + * @readonly + * @member {number} + */ + this.dirtyId = 0; + + /** + * Used by TextureSystem to only update texture style when needed. + * + * @protected + * @member {number} + */ + this.dirtyStyleId = 0; + + /** + * Currently default cache ID. + * + * @member {string} + */ + this.cacheId = null; + + /** + * Generally speaking means when resource is loaded. + * @readonly + * @member {boolean} + */ + this.valid = width > 0 && height > 0; + + /** + * The collection of alternative cache ids, since some BaseTextures + * can have more than one ID, short name and longer full URL + * + * @member {Array} + * @readonly + */ + this.textureCacheIds = []; + + /** + * Flag if BaseTexture has been destroyed. + * + * @member {boolean} + * @readonly + */ + this.destroyed = false; + + /** + * The resource used by this BaseTexture, there can only + * be one resource per BaseTexture, but textures can share + * resources. + * + * @member {PIXI.resources.Resource} + * @readonly + */ + this.resource = null; + + /** + * Number of the texture batch, used by multi-texture renderers + * + * @member {number} + */ + this._batchEnabled = 0; + + /** + * Fired when a not-immediately-available source finishes loading. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when a not-immediately-available source fails to load. + * + * @protected + * @event PIXI.BaseTexture#error + * @param {PIXI.BaseTexture} baseTexture - Resource errored. + * @param {ErrorEvent} event - Load error event. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#update + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being updated. + */ + + /** + * Fired when BaseTexture is destroyed. + * + * @protected + * @event PIXI.BaseTexture#dispose + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being destroyed. + */ + + // Set the resource + this.setResource(resource); + } + + if ( EventEmitter ) BaseTexture.__proto__ = EventEmitter; + BaseTexture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + BaseTexture.prototype.constructor = BaseTexture; + + var prototypeAccessors = { realWidth: { configurable: true },realHeight: { configurable: true } }; + + /** + * Pixel width of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realWidth.get = function () + { + return Math.ceil((this.width * this.resolution) - 1e-4); + }; + + /** + * Pixel height of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realHeight.get = function () + { + return Math.ceil((this.height * this.resolution) - 1e-4); + }; + + /** + * Changes style options of BaseTexture + * + * @param {PIXI.SCALE_MODES} [scaleMode] - Pixi scalemode + * @param {PIXI.MIPMAP_MODES} [mipmap] - enable mipmaps + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setStyle = function setStyle (scaleMode, mipmap) + { + var dirty; + + if (scaleMode !== undefined && scaleMode !== this.scaleMode) + { + this.scaleMode = scaleMode; + dirty = true; + } + + if (mipmap !== undefined && mipmap !== this.mipmap) + { + this.mipmap = mipmap; + dirty = true; + } + + if (dirty) + { + this.dirtyStyleId++; + } + + return this; + }; + + /** + * Changes w/h/resolution. Texture becomes valid if width and height are greater than zero. + * + * @param {number} width Visual width + * @param {number} height Visual height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setSize = function setSize (width, height, resolution) + { + this.resolution = resolution || this.resolution; + this.width = width; + this.height = height; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Sets real size of baseTexture, preserves current resolution. + * + * @param {number} realWidth Full rendered width + * @param {number} realHeight Full rendered height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setRealSize = function setRealSize (realWidth, realHeight, resolution) + { + this.resolution = resolution || this.resolution; + this.width = realWidth / this.resolution; + this.height = realHeight / this.resolution; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Refresh check for isPowerOfTwo texture based on size + * + * @private + */ + BaseTexture.prototype._refreshPOT = function _refreshPOT () + { + this.isPowerOfTwo = isPow2(this.realWidth) && isPow2(this.realHeight); + }; + + /** + * Changes resolution + * + * @param {number} [resolution] res + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResolution = function setResolution (resolution) + { + var oldResolution = this.resolution; + + if (oldResolution === resolution) + { + return this; + } + + this.resolution = resolution; + + if (this.valid) + { + this.width = this.width * oldResolution / resolution; + this.height = this.height * oldResolution / resolution; + this.emit('update', this); + } + + this._refreshPOT(); + + return this; + }; + + /** + * Sets the resource if it wasn't set. Throws error if resource already present + * + * @param {PIXI.resources.Resource} resource - that is managing this BaseTexture + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResource = function setResource (resource) + { + if (this.resource === resource) + { + return this; + } + + if (this.resource) + { + throw new Error('Resource can be set only once'); + } + + resource.bind(this); + + this.resource = resource; + + return this; + }; + + /** + * Invalidates the object. Texture becomes valid if width and height are greater than zero. + */ + BaseTexture.prototype.update = function update () + { + if (!this.valid) + { + if (this.width > 0 && this.height > 0) + { + this.valid = true; + this.emit('loaded', this); + this.emit('update', this); + } + } + else + { + this.dirtyId++; + this.dirtyStyleId++; + this.emit('update', this); + } + }; + + /** + * Handle errors with resources. + * @private + * @param {ErrorEvent} event - Error event emitted. + */ + BaseTexture.prototype.onError = function onError (event) + { + this.emit('error', this, event); + }; + + /** + * Destroys this base texture. + * The method stops if resource doesn't want this texture to be destroyed. + * Removes texture from all caches. + */ + BaseTexture.prototype.destroy = function destroy () + { + // remove and destroy the resource + if (this.resource) + { + this.resource.unbind(this); + // only destroy resourced created internally + if (this.resource.internal) + { + this.resource.destroy(); + } + this.resource = null; + } + + if (this.cacheId) + { + delete BaseTextureCache[this.cacheId]; + delete TextureCache[this.cacheId]; + + this.cacheId = null; + } + + // finally let the WebGL renderer know.. + this.dispose(); + + BaseTexture.removeFromCache(this); + this.textureCacheIds = null; + + this.destroyed = true; + }; + + /** + * Frees the texture from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseTexture.prototype.dispose = function dispose () + { + this.emit('dispose', this); + }; + + /** + * Helper function that creates a base texture based on the source you provide. + * The source can be - image url, image element, canvas element. If the + * source is an image url or an image element and not in the base texture + * cache, it will be created and loaded. + * + * @static + * @param {string|HTMLImageElement|HTMLCanvasElement|SVGElement|HTMLVideoElement} source - The + * source to create base texture from. + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @returns {PIXI.BaseTexture} The new base texture. + */ + BaseTexture.from = function from (source, options) + { + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var baseTexture = BaseTextureCache[cacheId]; + + if (!baseTexture) + { + baseTexture = new BaseTexture(source, options); + baseTexture.cacheId = cacheId; + BaseTexture.addToCache(baseTexture, cacheId); + } + + return baseTexture; + }; + + /** + * Create a new BaseTexture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.BaseTexture} The resulting new BaseTexture + */ + BaseTexture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + buffer = buffer || new Float32Array(width * height * 4); + + var resource = new BufferResource(buffer, { width: width, height: height }); + var type = buffer instanceof Float32Array ? TYPES.FLOAT : TYPES.UNSIGNED_BYTE; + + return new BaseTexture(resource, Object.assign(defaultBufferOptions, options || { width: width, height: height, type: type })); + }; + + /** + * Adds a BaseTexture to the global BaseTextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.BaseTexture} baseTexture - The BaseTexture to add to the cache. + * @param {string} id - The id that the BaseTexture will be stored against. + */ + BaseTexture.addToCache = function addToCache (baseTexture, id) + { + if (id) + { + if (baseTexture.textureCacheIds.indexOf(id) === -1) + { + baseTexture.textureCacheIds.push(id); + } + + if (BaseTextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("BaseTexture added to the cache with an id [" + id + "] that already had an entry")); + } + + BaseTextureCache[id] = baseTexture; + } + }; + + /** + * Remove a BaseTexture from the global BaseTextureCache. + * + * @static + * @param {string|PIXI.BaseTexture} baseTexture - id of a BaseTexture to be removed, or a BaseTexture instance itself. + * @return {PIXI.BaseTexture|null} The BaseTexture that was removed. + */ + BaseTexture.removeFromCache = function removeFromCache (baseTexture) + { + if (typeof baseTexture === 'string') + { + var baseTextureFromCache = BaseTextureCache[baseTexture]; + + if (baseTextureFromCache) + { + var index = baseTextureFromCache.textureCacheIds.indexOf(baseTexture); + + if (index > -1) + { + baseTextureFromCache.textureCacheIds.splice(index, 1); + } + + delete BaseTextureCache[baseTexture]; + + return baseTextureFromCache; + } + } + else if (baseTexture && baseTexture.textureCacheIds) + { + for (var i = 0; i < baseTexture.textureCacheIds.length; ++i) + { + delete BaseTextureCache[baseTexture.textureCacheIds[i]]; + } + + baseTexture.textureCacheIds.length = 0; + + return baseTexture; + } + + return null; + }; + + Object.defineProperties( BaseTexture.prototype, prototypeAccessors ); + + return BaseTexture; +}(eventemitter3)); + +/** + * Global number of the texture batch, used by multi-texture renderers + * + * @static + * @member {number} + */ +BaseTexture._globalBatch = 0; + +/** + * A resource that contains a number of sources. + * + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + * @param {number|Array<*>} source - Number of items in array or the collection + * of image URLs to use. Can also be resources, image elements, canvas, etc. + * @param {object} [options] Options to apply to {@link PIXI.resources.autoDetectResource} + * @param {number} [options.width] - Width of the resource + * @param {number} [options.height] - Height of the resource + */ +var ArrayResource = /*@__PURE__*/(function (Resource) { + function ArrayResource(source, options) + { + options = options || {}; + + var urls; + var length = source; + + if (Array.isArray(source)) + { + urls = source; + length = source.length; + } + + Resource.call(this, options.width, options.height); + + /** + * Collection of resources. + * @member {Array} + * @readonly + */ + this.items = []; + + /** + * Dirty IDs for each part + * @member {Array} + * @readonly + */ + this.itemDirtyIds = []; + + for (var i = 0; i < length; i++) + { + var partTexture = new BaseTexture(); + + this.items.push(partTexture); + this.itemDirtyIds.push(-1); + } + + /** + * Number of elements in array + * + * @member {number} + * @readonly + */ + this.length = length; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (urls) + { + for (var i$1 = 0; i$1 < length; i$1++) + { + this.addResourceAt(autoDetectResource(urls[i$1], options), i$1); + } + } + } + + if ( Resource ) ArrayResource.__proto__ = Resource; + ArrayResource.prototype = Object.create( Resource && Resource.prototype ); + ArrayResource.prototype.constructor = ArrayResource; + + /** + * Destroy this BaseImageResource + * @override + */ + ArrayResource.prototype.dispose = function dispose () + { + for (var i = 0, len = this.length; i < len; i++) + { + this.items[i].destroy(); + } + this.items = null; + this.itemDirtyIds = null; + this._load = null; + }; + + /** + * Set a resource by ID + * + * @param {PIXI.resources.Resource} resource + * @param {number} index - Zero-based index of resource to set + * @return {PIXI.resources.ArrayResource} Instance for chaining + */ + ArrayResource.prototype.addResourceAt = function addResourceAt (resource, index) + { + var baseTexture = this.items[index]; + + if (!baseTexture) + { + throw new Error(("Index " + index + " is out of bounds")); + } + + // Inherit the first resource dimensions + if (resource.valid && !this.valid) + { + this.resize(resource.width, resource.height); + } + + this.items[index].setResource(resource); + + return this; + }; + + /** + * Set the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.bind = function bind (baseTexture) + { + Resource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_2D_ARRAY; + + for (var i = 0; i < this.length; i++) + { + this.items[i].on('update', baseTexture.update, baseTexture); + } + }; + + /** + * Unset the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.unbind = function unbind (baseTexture) + { + Resource.prototype.unbind.call(this, baseTexture); + + for (var i = 0; i < this.length; i++) + { + this.items[i].off('update', baseTexture.update, baseTexture); + } + }; + + /** + * Load all the resources simultaneously + * @override + * @return {Promise} When load is resolved + */ + ArrayResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var resources = this.items.map(function (item) { return item.resource; }); + + // TODO: also implement load part-by-part strategy + var promises = resources.map(function (item) { return item.load(); }); + + this._load = Promise.all(promises) + .then(function () { + var ref = resources[0]; + var width = ref.width; + var height = ref.height; + + this$1.resize(width, height); + + return Promise.resolve(this$1); + } + ); + + return this._load; + }; + + /** + * Upload the resources to the GPU. + * @param {PIXI.Renderer} renderer + * @param {PIXI.BaseTexture} texture + * @param {PIXI.GLTexture} glTexture + * @returns {boolean} whether texture was uploaded + */ + ArrayResource.prototype.upload = function upload (renderer, texture, glTexture) + { + var ref = this; + var length = ref.length; + var itemDirtyIds = ref.itemDirtyIds; + var items = ref.items; + var gl = renderer.gl; + + if (glTexture.dirtyId < 0) + { + gl.texImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + texture.format, + this._width, + this._height, + length, + 0, + texture.format, + texture.type, + null + ); + } + + for (var i = 0; i < length; i++) + { + var item = items[i]; + + if (itemDirtyIds[i] < item.dirtyId) + { + itemDirtyIds[i] = item.dirtyId; + if (item.valid) + { + gl.texSubImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + 0, // xoffset + 0, // yoffset + i, // zoffset + item.resource.width, + item.resource.height, + 1, + texture.format, + texture.type, + item.resource.source + ); + } + } + } + + return true; + }; + + return ArrayResource; +}(Resource)); + +/** + * @interface OffscreenCanvas + */ + +/** + * Resource type for HTMLCanvasElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLCanvasElement} source - Canvas element to use + */ +var CanvasResource = /*@__PURE__*/(function (BaseImageResource) { + function CanvasResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) CanvasResource.__proto__ = BaseImageResource; + CanvasResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + CanvasResource.prototype.constructor = CanvasResource; + + CanvasResource.test = function test (source) + { + var OffscreenCanvas = window.OffscreenCanvas; + + // Check for browsers that don't yet support OffscreenCanvas + if (OffscreenCanvas && source instanceof OffscreenCanvas) + { + return true; + } + + return source instanceof HTMLCanvasElement; + }; + + return CanvasResource; +}(BaseImageResource)); + +/** + * Resource for a CubeTexture which contains six resources. + * + * @class + * @extends PIXI.resources.ArrayResource + * @memberof PIXI.resources + * @param {Array} [source] Collection of URLs or resources + * to use as the sides of the cube. + * @param {object} [options] - ImageResource options + * @param {number} [options.width] - Width of resource + * @param {number} [options.height] - Height of resource + */ +var CubeResource = /*@__PURE__*/(function (ArrayResource) { + function CubeResource(source, options) + { + options = options || {}; + + ArrayResource.call(this, source, options); + + if (this.length !== CubeResource.SIDES) + { + throw new Error(("Invalid length. Got " + (this.length) + ", expected 6")); + } + + for (var i = 0; i < CubeResource.SIDES; i++) + { + this.items[i].target = TARGETS.TEXTURE_CUBE_MAP_POSITIVE_X + i; + } + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( ArrayResource ) CubeResource.__proto__ = ArrayResource; + CubeResource.prototype = Object.create( ArrayResource && ArrayResource.prototype ); + CubeResource.prototype.constructor = CubeResource; + + /** + * Add binding + * + * @override + * @param {PIXI.BaseTexture} baseTexture - parent base texture + */ + CubeResource.prototype.bind = function bind (baseTexture) + { + ArrayResource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_CUBE_MAP; + }; + + /** + * Upload the resource + * + * @returns {boolean} true is success + */ + CubeResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var dirty = this.itemDirtyIds; + + for (var i = 0; i < CubeResource.SIDES; i++) + { + var side = this.items[i]; + + if (dirty[i] < side.dirtyId) + { + dirty[i] = side.dirtyId; + if (side.valid) + { + side.resource.upload(renderer, side, glTexture); + } + } + } + + return true; + }; + + return CubeResource; +}(ArrayResource)); + +/** + * Number of texture sides to store for CubeResources + * + * @name PIXI.resources.CubeResource.SIDES + * @static + * @member {number} + * @default 6 + */ +CubeResource.SIDES = 6; + +/** + * Resource type for SVG elements and graphics. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {string} source - Base64 encoded SVG element or URL for SVG file. + * @param {object} [options] - Options to use + * @param {number} [options.scale=1] Scale to apply to SVG. Overridden by... + * @param {number} [options.width] Rasterize SVG this wide. Aspect ratio preserved if height not specified. + * @param {number} [options.height] Rasterize SVG this high. Aspect ratio preserved if width not specified. + * @param {boolean} [options.autoLoad=true] Start loading right away. + */ +var SVGResource = /*@__PURE__*/(function (BaseImageResource) { + function SVGResource(source, options) + { + options = options || {}; + + BaseImageResource.call(this, document.createElement('canvas')); + this._width = 0; + this._height = 0; + + /** + * Base64 encoded SVG element or URL for SVG file + * @readonly + * @member {string} + */ + this.svg = source; + + /** + * The source scale to apply when rasterizing on load + * @readonly + * @member {number} + */ + this.scale = options.scale || 1; + + /** + * A width override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideWidth = options.width; + + /** + * A height override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideHeight = options.height; + + /** + * Call when completely loaded + * @private + * @member {function} + */ + this._resolve = null; + + /** + * Cross origin value to use + * @private + * @member {boolean|string} + */ + this._crossorigin = options.crossorigin; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) SVGResource.__proto__ = BaseImageResource; + SVGResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + SVGResource.prototype.constructor = SVGResource; + + SVGResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + // Save this until after load is finished + this$1._resolve = function () { + this$1.resize(this$1.source.width, this$1.source.height); + resolve(this$1); + }; + + // Convert SVG inline string to data-uri + if ((/^\]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*>/i; // eslint-disable-line max-len + +/** + * Resource type for HTMLVideoElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLVideoElement|object|string|Array} source - Video element to use. + * @param {object} [options] - Options to use + * @param {boolean} [options.autoLoad=true] - Start loading the video immediately + * @param {boolean} [options.autoPlay=true] - Start playing video immediately + * @param {number} [options.updateFPS=0] - How many times a second to update the texture from the video. + * Leave at 0 to update at every render. + * @param {boolean} [options.crossorigin=true] - Load image using cross origin + */ +var VideoResource = /*@__PURE__*/(function (BaseImageResource) { + function VideoResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLVideoElement)) + { + var videoElement = document.createElement('video'); + + // workaround for https://github.com/pixijs/pixi.js/issues/5996 + videoElement.setAttribute('preload', 'auto'); + videoElement.setAttribute('webkit-playsinline', ''); + videoElement.setAttribute('playsinline', ''); + + if (typeof source === 'string') + { + source = [source]; + } + + BaseImageResource.crossOrigin(videoElement, (source[0].src || source[0]), options.crossorigin); + + // array of objects or strings + for (var i = 0; i < source.length; ++i) + { + var sourceElement = document.createElement('source'); + + var ref = source[i]; + var src = ref.src; + var mime = ref.mime; + + src = src || source[i]; + + var baseSrc = src.split('?').shift().toLowerCase(); + var ext = baseSrc.substr(baseSrc.lastIndexOf('.') + 1); + + mime = mime || ("video/" + ext); + + sourceElement.src = src; + sourceElement.type = mime; + + videoElement.appendChild(sourceElement); + } + + // Override the source + source = videoElement; + } + + BaseImageResource.call(this, source); + + this.noSubImage = true; + this._autoUpdate = true; + this._isAutoUpdating = false; + this._updateFPS = options.updateFPS || 0; + this._msToNextUpdate = 0; + + /** + * When set to true will automatically play videos used by this texture once + * they are loaded. If false, it will not modify the playing state. + * + * @member {boolean} + * @default true + */ + this.autoPlay = options.autoPlay !== false; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + /** + * Callback when completed with load. + * @member {function} + * @private + */ + this._resolve = null; + + // Bind for listeners + this._onCanPlay = this._onCanPlay.bind(this); + this._onError = this._onError.bind(this); + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) VideoResource.__proto__ = BaseImageResource; + VideoResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + VideoResource.prototype.constructor = VideoResource; + + var prototypeAccessors = { autoUpdate: { configurable: true },updateFPS: { configurable: true } }; + + /** + * Trigger updating of the texture + * + * @param {number} [deltaTime=0] - time delta since last tick + */ + VideoResource.prototype.update = function update (deltaTime) + { + if ( deltaTime === void 0 ) deltaTime = 0; + + if (!this.destroyed) + { + // account for if video has had its playbackRate changed + var elapsedMS = Ticker.shared.elapsedMS * this.source.playbackRate; + + this._msToNextUpdate = Math.floor(this._msToNextUpdate - elapsedMS); + if (!this._updateFPS || this._msToNextUpdate <= 0) + { + BaseImageResource.prototype.update.call(this, deltaTime); + this._msToNextUpdate = this._updateFPS ? Math.floor(1000 / this._updateFPS) : 0; + } + } + }; + + /** + * Start preloading the video resource. + * + * @protected + * @return {Promise} Handle the validate event + */ + VideoResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var source = this.source; + + if ((source.readyState === source.HAVE_ENOUGH_DATA || source.readyState === source.HAVE_FUTURE_DATA) + && source.width && source.height) + { + source.complete = true; + } + + source.addEventListener('play', this._onPlayStart.bind(this)); + source.addEventListener('pause', this._onPlayStop.bind(this)); + + if (!this._isSourceReady()) + { + source.addEventListener('canplay', this._onCanPlay); + source.addEventListener('canplaythrough', this._onCanPlay); + source.addEventListener('error', this._onError, true); + } + else + { + this._onCanPlay(); + } + + this._load = new Promise(function (resolve) { + if (this$1.valid) + { + resolve(this$1); + } + else + { + this$1._resolve = resolve; + + source.load(); + } + }); + + return this._load; + }; + + /** + * Handle video error events. + * + * @private + */ + VideoResource.prototype._onError = function _onError () + { + this.source.removeEventListener('error', this._onError, true); + this.onError.run(event); + }; + + /** + * Returns true if the underlying source is playing. + * + * @private + * @return {boolean} True if playing. + */ + VideoResource.prototype._isSourcePlaying = function _isSourcePlaying () + { + var source = this.source; + + return (source.currentTime > 0 && source.paused === false && source.ended === false && source.readyState > 2); + }; + + /** + * Returns true if the underlying source is ready for playing. + * + * @private + * @return {boolean} True if ready. + */ + VideoResource.prototype._isSourceReady = function _isSourceReady () + { + return this.source.readyState === 3 || this.source.readyState === 4; + }; + + /** + * Runs the update loop when the video is ready to play + * + * @private + */ + VideoResource.prototype._onPlayStart = function _onPlayStart () + { + // Just in case the video has not received its can play even yet.. + if (!this.valid) + { + this._onCanPlay(); + } + + if (!this._isAutoUpdating && this.autoUpdate) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + }; + + /** + * Fired when a pause event is triggered, stops the update loop + * + * @private + */ + VideoResource.prototype._onPlayStop = function _onPlayStop () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + }; + + /** + * Fired when the video is loaded and ready to play + * + * @private + */ + VideoResource.prototype._onCanPlay = function _onCanPlay () + { + var ref = this; + var source = ref.source; + + source.removeEventListener('canplay', this._onCanPlay); + source.removeEventListener('canplaythrough', this._onCanPlay); + + var valid = this.valid; + + this.resize(source.videoWidth, source.videoHeight); + + // prevent multiple loaded dispatches.. + if (!valid && this._resolve) + { + this._resolve(this); + this._resolve = null; + } + + if (this._isSourcePlaying()) + { + this._onPlayStart(); + } + else if (this.autoPlay) + { + source.play(); + } + }; + + /** + * Destroys this texture + * @override + */ + VideoResource.prototype.dispose = function dispose () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + } + + if (this.source) + { + this.source.removeEventListener('error', this._onError, true); + this.source.pause(); + this.source.src = ''; + this.source.load(); + } + BaseImageResource.prototype.dispose.call(this); + }; + + /** + * Should the base texture automatically update itself, set to true by default + * + * @member {boolean} + */ + prototypeAccessors.autoUpdate.get = function () + { + return this._autoUpdate; + }; + + prototypeAccessors.autoUpdate.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._autoUpdate) + { + this._autoUpdate = value; + + if (!this._autoUpdate && this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + else if (this._autoUpdate && !this._isAutoUpdating) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + } + }; + + /** + * How many times a second to update the texture from the video. Leave at 0 to update at every render. + * A lower fps can help performance, as updating the texture at 60fps on a 30ps video may not be efficient. + * + * @member {number} + */ + prototypeAccessors.updateFPS.get = function () + { + return this._updateFPS; + }; + + prototypeAccessors.updateFPS.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._updateFPS) + { + this._updateFPS = value; + } + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @param {string} extension - The extension of source, if set + * @return {boolean} `true` if video source + */ + VideoResource.test = function test (source, extension) + { + return (source instanceof HTMLVideoElement) + || VideoResource.TYPES.indexOf(extension) > -1; + }; + + Object.defineProperties( VideoResource.prototype, prototypeAccessors ); + + return VideoResource; +}(BaseImageResource)); + +/** + * List of common video file extensions supported by VideoResource. + * @constant + * @member {Array} + * @static + * @readonly + */ +VideoResource.TYPES = ['mp4', 'm4v', 'webm', 'ogg', 'ogv', 'h264', 'avi', 'mov']; + +/** + * Resource type for ImageBitmap. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {ImageBitmap} source - Image element to use + */ +var ImageBitmapResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageBitmapResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) ImageBitmapResource.__proto__ = BaseImageResource; + ImageBitmapResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageBitmapResource.prototype.constructor = ImageBitmapResource; + + ImageBitmapResource.test = function test (source) + { + return !!window.createImageBitmap && source instanceof ImageBitmap; + }; + + return ImageBitmapResource; +}(BaseImageResource)); + +INSTALLED.push( + ImageResource, + ImageBitmapResource, + CanvasResource, + VideoResource, + SVGResource, + BufferResource, + CubeResource, + ArrayResource +); + +/** + * System is a base class used for extending systems used by the {@link PIXI.Renderer} + * + * @see PIXI.Renderer#addSystem + * @class + * @memberof PIXI + */ +var System = function System(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Generic destroy methods to be overridden by the subclass + */ +System.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Resource type for DepthTexture. + * @class + * @extends PIXI.resources.BufferResource + * @memberof PIXI.resources + */ +var DepthResource = /*@__PURE__*/(function (BufferResource) { + function DepthResource () { + BufferResource.apply(this, arguments); + } + + if ( BufferResource ) DepthResource.__proto__ = BufferResource; + DepthResource.prototype = Object.create( BufferResource && BufferResource.prototype ); + DepthResource.prototype.constructor = DepthResource; + + DepthResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + gl.DEPTH_COMPONENT16, // Needed for depth to render properly in webgl2.0 + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + baseTexture.type, + this.data + ); + } + + return true; + }; + + return DepthResource; +}(BufferResource)); + +/** + * Frame buffer used by the BaseRenderTexture + * + * @class + * @memberof PIXI + */ +var Framebuffer = function Framebuffer(width, height) +{ + this.width = Math.ceil(width || 100); + this.height = Math.ceil(height || 100); + + this.stencil = false; + this.depth = false; + + this.dirtyId = 0; + this.dirtyFormat = 0; + this.dirtySize = 0; + + this.depthTexture = null; + this.colorTextures = []; + + this.glFramebuffers = {}; + + this.disposeRunner = new Runner('disposeFramebuffer', 2); +}; + +var prototypeAccessors$1$2 = { colorTexture: { configurable: true } }; + +/** + * Reference to the colorTexture. + * + * @member {PIXI.Texture[]} + * @readonly + */ +prototypeAccessors$1$2.colorTexture.get = function () +{ + return this.colorTextures[0]; +}; + +/** + * Add texture to the colorTexture array + * + * @param {number} [index=0] - Index of the array to add the texture to + * @param {PIXI.Texture} [texture] - Texture to add to the array + */ +Framebuffer.prototype.addColorTexture = function addColorTexture (index, texture) +{ + if ( index === void 0 ) index = 0; + + // TODO add some validation to the texture - same width / height etc? + this.colorTextures[index] = texture || new BaseTexture(null, { scaleMode: 0, + resolution: 1, + mipmap: false, + width: this.width, + height: this.height });// || new Texture(); + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Add a depth texture to the frame buffer + * + * @param {PIXI.Texture} [texture] - Texture to add + */ +Framebuffer.prototype.addDepthTexture = function addDepthTexture (texture) +{ + /* eslint-disable max-len */ + this.depthTexture = texture || new BaseTexture(new DepthResource(null, { width: this.width, height: this.height }), { scaleMode: 0, + resolution: 1, + width: this.width, + height: this.height, + mipmap: false, + format: FORMATS.DEPTH_COMPONENT, + type: TYPES.UNSIGNED_SHORT });// UNSIGNED_SHORT; + /* eslint-disable max-len */ + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable depth on the frame buffer + */ +Framebuffer.prototype.enableDepth = function enableDepth () +{ + this.depth = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable stencil on the frame buffer + */ +Framebuffer.prototype.enableStencil = function enableStencil () +{ + this.stencil = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Resize the frame buffer + * + * @param {number} width - Width of the frame buffer to resize to + * @param {number} height - Height of the frame buffer to resize to + */ +Framebuffer.prototype.resize = function resize (width, height) +{ + width = Math.ceil(width); + height = Math.ceil(height); + + if (width === this.width && height === this.height) { return; } + + this.width = width; + this.height = height; + + this.dirtyId++; + this.dirtySize++; + + for (var i = 0; i < this.colorTextures.length; i++) + { + var texture = this.colorTextures[i]; + var resolution = texture.resolution; + + // take into acount the fact the texture may have a different resolution.. + texture.setSize(width / resolution, height / resolution); + } + + if (this.depthTexture) + { + var resolution$1 = this.depthTexture.resolution; + + this.depthTexture.setSize(width / resolution$1, height / resolution$1); + } +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Framebuffer.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +Object.defineProperties( Framebuffer.prototype, prototypeAccessors$1$2 ); + +/** + * A BaseRenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a BaseRenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * A BaseRenderTexture takes a snapshot of any Display Object given to its render method. The position + * and rotation of the given Display Objects is ignored. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 800, height: 600 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 100, height: 100 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.BaseTexture + * @memberof PIXI + */ +var BaseRenderTexture = /*@__PURE__*/(function (BaseTexture) { + function BaseRenderTexture(options) + { + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + // Backward compatibility of signature + var width$1 = arguments[0]; + var height$1 = arguments[1]; + var scaleMode = arguments[2]; + var resolution = arguments[3]; + + options = { width: width$1, height: height$1, scaleMode: scaleMode, resolution: resolution }; + /* eslint-enable prefer-rest-params */ + } + + BaseTexture.call(this, null, options); + + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + // Set defaults + this.mipmap = false; + this.width = Math.ceil(width) || 100; + this.height = Math.ceil(height) || 100; + this.valid = true; + + /** + * A reference to the canvas render target (we only need one as this can be shared across renderers) + * + * @protected + * @member {object} + */ + this._canvasRenderTarget = null; + + this.clearColor = [0, 0, 0, 0]; + + this.framebuffer = new Framebuffer(this.width * this.resolution, this.height * this.resolution) + .addColorTexture(0, this); + + // TODO - could this be added the systems? + + /** + * The data structure for the stencil masks. + * + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + + /** + * The data structure for the filters. + * + * @member {PIXI.Graphics[]} + */ + this.filterStack = [{}]; + } + + if ( BaseTexture ) BaseRenderTexture.__proto__ = BaseTexture; + BaseRenderTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype ); + BaseRenderTexture.prototype.constructor = BaseRenderTexture; + + /** + * Resizes the BaseRenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + */ + BaseRenderTexture.prototype.resize = function resize (width, height) + { + width = Math.ceil(width); + height = Math.ceil(height); + this.framebuffer.resize(width * this.resolution, height * this.resolution); + }; + + /** + * Frees the texture and framebuffer from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseRenderTexture.prototype.dispose = function dispose () + { + this.framebuffer.dispose(); + + BaseTexture.prototype.dispose.call(this); + }; + + /** + * Destroys this texture. + * + */ + BaseRenderTexture.prototype.destroy = function destroy () + { + BaseTexture.prototype.destroy.call(this, true); + + this.framebuffer = null; + }; + + return BaseRenderTexture; +}(BaseTexture)); + +/** + * Stores a texture's frame in UV coordinates, in + * which everything lies in the rectangle `[(0,0), (1,0), + * (1,1), (0,1)]`. + * + * | Corner | Coordinates | + * |--------------|-------------| + * | Top-Left | `(x0,y0)` | + * | Top-Right | `(x1,y1)` | + * | Bottom-Right | `(x2,y2)` | + * | Bottom-Left | `(x3,y3)` | + * + * @class + * @protected + * @memberof PIXI + */ +var TextureUvs = function TextureUvs() +{ + /** + * X-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.x0 = 0; + + /** + * Y-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.y0 = 0; + + /** + * X-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.x1 = 1; + + /** + * Y-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.y1 = 0; + + /** + * X-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.x2 = 1; + + /** + * Y-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.y2 = 1; + + /** + * X-component of bottom-left corner `(x3,y3)`. + * + * @member {number} + */ + this.x3 = 0; + + /** + * Y-component of bottom-right corner `(x3,y3)`. + * + * @member {number} + */ + this.y3 = 1; + + this.uvsFloat32 = new Float32Array(8); +}; + +/** + * Sets the texture Uvs based on the given frame information. + * + * @protected + * @param {PIXI.Rectangle} frame - The frame of the texture + * @param {PIXI.Rectangle} baseFrame - The base frame of the texture + * @param {number} rotate - Rotation of frame, see {@link PIXI.GroupD8} + */ +TextureUvs.prototype.set = function set (frame, baseFrame, rotate) +{ + var tw = baseFrame.width; + var th = baseFrame.height; + + if (rotate) + { + // width and height div 2 div baseFrame size + var w2 = frame.width / 2 / tw; + var h2 = frame.height / 2 / th; + + // coordinates of center + var cX = (frame.x / tw) + w2; + var cY = (frame.y / th) + h2; + + rotate = GroupD8.add(rotate, GroupD8.NW); // NW is top-left corner + this.x0 = cX + (w2 * GroupD8.uX(rotate)); + this.y0 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); // rotate 90 degrees clockwise + this.x1 = cX + (w2 * GroupD8.uX(rotate)); + this.y1 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x2 = cX + (w2 * GroupD8.uX(rotate)); + this.y2 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x3 = cX + (w2 * GroupD8.uX(rotate)); + this.y3 = cY + (h2 * GroupD8.uY(rotate)); + } + else + { + this.x0 = frame.x / tw; + this.y0 = frame.y / th; + + this.x1 = (frame.x + frame.width) / tw; + this.y1 = frame.y / th; + + this.x2 = (frame.x + frame.width) / tw; + this.y2 = (frame.y + frame.height) / th; + + this.x3 = frame.x / tw; + this.y3 = (frame.y + frame.height) / th; + } + + this.uvsFloat32[0] = this.x0; + this.uvsFloat32[1] = this.y0; + this.uvsFloat32[2] = this.x1; + this.uvsFloat32[3] = this.y1; + this.uvsFloat32[4] = this.x2; + this.uvsFloat32[5] = this.y2; + this.uvsFloat32[6] = this.x3; + this.uvsFloat32[7] = this.y3; +}; + +var DEFAULT_UVS = new TextureUvs(); + +/** + * A texture stores the information that represents an image or part of an image. + * + * It cannot be added to the display list directly; instead use it as the texture for a Sprite. + * If no frame is provided for a texture, then the whole image is used. + * + * You can directly create a texture from an image and then reuse it multiple times like this : + * + * ```js + * let texture = PIXI.Texture.from('assets/image.png'); + * let sprite1 = new PIXI.Sprite(texture); + * let sprite2 = new PIXI.Sprite(texture); + * ``` + * + * If you didnt pass the texture frame to constructor, it enables `noFrame` mode: + * it subscribes on baseTexture events, it automatically resizes at the same time as baseTexture. + * + * Textures made from SVGs, loaded or not, cannot be used before the file finishes processing. + * You can check for this by checking the sprite's _textureID property. + * ```js + * var texture = PIXI.Texture.from('assets/image.svg'); + * var sprite1 = new PIXI.Sprite(texture); + * //sprite1._textureID should not be undefined if the texture has finished processing the SVG file + * ``` + * You can use a ticker or rAF to ensure your sprites load the finished textures after processing. See issue #3068. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var Texture = /*@__PURE__*/(function (EventEmitter) { + function Texture(baseTexture, frame, orig, trim, rotate, anchor) + { + EventEmitter.call(this); + + /** + * Does this Texture have any frame data assigned to it? + * + * This mode is enabled automatically if no frame was passed inside constructor. + * + * In this mode texture is subscribed to baseTexture events, and fires `update` on any change. + * + * Beware, after loading or resize of baseTexture event can fired two times! + * If you want more control, subscribe on baseTexture itself. + * + * ```js + * texture.on('update', () => {}); + * ``` + * + * Any assignment of `frame` switches off `noFrame` mode. + * + * @member {boolean} + */ + this.noFrame = false; + + if (!frame) + { + this.noFrame = true; + frame = new Rectangle(0, 0, 1, 1); + } + + if (baseTexture instanceof Texture) + { + baseTexture = baseTexture.baseTexture; + } + + /** + * The base texture that this texture uses. + * + * @member {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering, + * irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases) + * + * @member {PIXI.Rectangle} + */ + this._frame = frame; + + /** + * This is the trimmed area of original texture, before it was put in atlas + * Please call `updateUvs()` after you change coordinates of `trim` manually. + * + * @member {PIXI.Rectangle} + */ + this.trim = trim; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = false; + + /** + * This will let a renderer know that a texture has been updated (used mainly for WebGL uv updates) + * + * @member {boolean} + */ + this.requiresUpdate = false; + + /** + * The WebGL UV data cache. Can be used as quad UV + * + * @member {PIXI.TextureUvs} + * @protected + */ + this._uvs = DEFAULT_UVS; + + /** + * Default TextureMatrix instance for this texture + * By default that object is not created because its heavy + * + * @member {PIXI.TextureMatrix} + */ + this.uvMatrix = null; + + /** + * This is the area of original texture, before it was put in atlas + * + * @member {PIXI.Rectangle} + */ + this.orig = orig || frame;// new Rectangle(0, 0, 1, 1); + + this._rotate = Number(rotate || 0); + + if (rotate === true) + { + // this is old texturepacker legacy, some games/libraries are passing "true" for rotated textures + this._rotate = 2; + } + else if (this._rotate % 2 !== 0) + { + throw new Error('attempt to use diamond-shaped UVs. If you are sure, set rotation manually'); + } + + /** + * Anchor point that is used as default if sprite is created with this texture. + * Changing the `defaultAnchor` at a later point of time will not update Sprite's anchor point. + * @member {PIXI.Point} + * @default {0,0} + */ + this.defaultAnchor = anchor ? new Point(anchor.x, anchor.y) : new Point(0, 0); + + /** + * Update ID is observed by sprites and TextureMatrix instances. + * Call updateUvs() to increment it. + * + * @member {number} + * @protected + */ + + this._updateID = 0; + + /** + * The ids under which this Texture has been added to the texture cache. This is + * automatically set as long as Texture.addToCache is used, but may not be set if a + * Texture is added directly to the TextureCache array. + * + * @member {string[]} + */ + this.textureCacheIds = []; + + if (!baseTexture.valid) + { + baseTexture.once('loaded', this.onBaseTextureUpdated, this); + } + else if (this.noFrame) + { + // if there is no frame we should monitor for any base texture changes.. + if (baseTexture.valid) + { + this.onBaseTextureUpdated(baseTexture); + } + } + else + { + this.frame = frame; + } + + if (this.noFrame) + { + baseTexture.on('update', this.onBaseTextureUpdated, this); + } + } + + if ( EventEmitter ) Texture.__proto__ = EventEmitter; + Texture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + Texture.prototype.constructor = Texture; + + var prototypeAccessors = { resolution: { configurable: true },frame: { configurable: true },rotate: { configurable: true },width: { configurable: true },height: { configurable: true } }; + + /** + * Updates this texture on the gpu. + * + * Calls the TextureResource update. + * + * If you adjusted `frame` manually, please call `updateUvs()` instead. + * + */ + Texture.prototype.update = function update () + { + if (this.baseTexture.resource) + { + this.baseTexture.resource.update(); + } + }; + + /** + * Called when the base texture is updated + * + * @protected + * @param {PIXI.BaseTexture} baseTexture - The base texture. + */ + Texture.prototype.onBaseTextureUpdated = function onBaseTextureUpdated (baseTexture) + { + if (this.noFrame) + { + if (!this.baseTexture.valid) + { + return; + } + + this._frame.width = baseTexture.width; + this._frame.height = baseTexture.height; + this.valid = true; + this.updateUvs(); + } + else + { + // TODO this code looks confusing.. boo to abusing getters and setters! + // if user gave us frame that has bigger size than resized texture it can be a problem + this.frame = this._frame; + } + + this.emit('update', this); + }; + + /** + * Destroys this texture + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ + Texture.prototype.destroy = function destroy (destroyBase) + { + if (this.baseTexture) + { + if (destroyBase) + { + var ref = this.baseTexture; + var resource = ref.resource; + + // delete the texture if it exists in the texture cache.. + // this only needs to be removed if the base texture is actually destroyed too.. + if (resource && TextureCache[resource.url]) + { + Texture.removeFromCache(resource.url); + } + + this.baseTexture.destroy(); + } + + this.baseTexture.off('update', this.onBaseTextureUpdated, this); + + this.baseTexture = null; + } + + this._frame = null; + this._uvs = null; + this.trim = null; + this.orig = null; + + this.valid = false; + + Texture.removeFromCache(this); + this.textureCacheIds = null; + }; + + /** + * Creates a new texture object that acts the same as this one. + * + * @return {PIXI.Texture} The new texture + */ + Texture.prototype.clone = function clone () + { + return new Texture(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor); + }; + + /** + * Updates the internal WebGL UV cache. Use it after you change `frame` or `trim` of the texture. + * Call it after changing the frame + */ + Texture.prototype.updateUvs = function updateUvs () + { + if (this._uvs === DEFAULT_UVS) + { + this._uvs = new TextureUvs(); + } + + this._uvs.set(this._frame, this.baseTexture, this.rotate); + + this._updateID++; + }; + + /** + * Helper function that creates a new Texture based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|PIXI.BaseTexture} source + * Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The newly created texture + */ + Texture.from = function from (source, options) + { + if ( options === void 0 ) options = {}; + + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var texture = TextureCache[cacheId]; + + if (!texture) + { + if (!options.resolution) + { + options.resolution = getResolutionOfUrl(source); + } + + texture = new Texture(new BaseTexture(source, options)); + texture.baseTexture.cacheId = cacheId; + + BaseTexture.addToCache(texture.baseTexture, cacheId); + Texture.addToCache(texture, cacheId); + } + + // lets assume its a base texture! + return texture; + }; + + /** + * Create a new Texture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The resulting new BaseTexture + */ + Texture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + return new Texture(BaseTexture.fromBuffer(buffer, width, height, options)); + }; + + /** + * Create a texture from a source and add to the cache. + * + * @static + * @param {HTMLImageElement|HTMLCanvasElement} source - The input source. + * @param {String} imageUrl - File name of texture, for cache and resolving resolution. + * @param {String} [name] - Human readable name for the texture cache. If no name is + * specified, only `imageUrl` will be used as the cache ID. + * @return {PIXI.Texture} Output texture + */ + Texture.fromLoader = function fromLoader (source, imageUrl, name) + { + var resource = new ImageResource(source); + + resource.url = imageUrl; + + var baseTexture = new BaseTexture(resource, { + scaleMode: settings.SCALE_MODE, + resolution: getResolutionOfUrl(imageUrl), + }); + + var texture = new Texture(baseTexture); + + // No name, use imageUrl instead + if (!name) + { + name = imageUrl; + } + + // lets also add the frame to pixi's global cache for 'fromLoader' function + BaseTexture.addToCache(texture.baseTexture, name); + Texture.addToCache(texture, name); + + // also add references by url if they are different. + if (name !== imageUrl) + { + BaseTexture.addToCache(texture.baseTexture, imageUrl); + Texture.addToCache(texture, imageUrl); + } + + return texture; + }; + + /** + * Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.Texture} texture - The Texture to add to the cache. + * @param {string} id - The id that the Texture will be stored against. + */ + Texture.addToCache = function addToCache (texture, id) + { + if (id) + { + if (texture.textureCacheIds.indexOf(id) === -1) + { + texture.textureCacheIds.push(id); + } + + if (TextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("Texture added to the cache with an id [" + id + "] that already had an entry")); + } + + TextureCache[id] = texture; + } + }; + + /** + * Remove a Texture from the global TextureCache. + * + * @static + * @param {string|PIXI.Texture} texture - id of a Texture to be removed, or a Texture instance itself + * @return {PIXI.Texture|null} The Texture that was removed + */ + Texture.removeFromCache = function removeFromCache (texture) + { + if (typeof texture === 'string') + { + var textureFromCache = TextureCache[texture]; + + if (textureFromCache) + { + var index = textureFromCache.textureCacheIds.indexOf(texture); + + if (index > -1) + { + textureFromCache.textureCacheIds.splice(index, 1); + } + + delete TextureCache[texture]; + + return textureFromCache; + } + } + else if (texture && texture.textureCacheIds) + { + for (var i = 0; i < texture.textureCacheIds.length; ++i) + { + // Check that texture matches the one being passed in before deleting it from the cache. + if (TextureCache[texture.textureCacheIds[i]] === texture) + { + delete TextureCache[texture.textureCacheIds[i]]; + } + } + + texture.textureCacheIds.length = 0; + + return texture; + } + + return null; + }; + + /** + * Returns resolution of baseTexture + * + * @member {number} + * @readonly + */ + prototypeAccessors.resolution.get = function () + { + return this.baseTexture.resolution; + }; + + /** + * The frame specifies the region of the base texture that this texture uses. + * Please call `updateUvs()` after you change coordinates of `frame` manually. + * + * @member {PIXI.Rectangle} + */ + prototypeAccessors.frame.get = function () + { + return this._frame; + }; + + prototypeAccessors.frame.set = function (frame) // eslint-disable-line require-jsdoc + { + this._frame = frame; + + this.noFrame = false; + + var x = frame.x; + var y = frame.y; + var width = frame.width; + var height = frame.height; + var xNotFit = x + width > this.baseTexture.width; + var yNotFit = y + height > this.baseTexture.height; + + if (xNotFit || yNotFit) + { + var relationship = xNotFit && yNotFit ? 'and' : 'or'; + var errorX = "X: " + x + " + " + width + " = " + (x + width) + " > " + (this.baseTexture.width); + var errorY = "Y: " + y + " + " + height + " = " + (y + height) + " > " + (this.baseTexture.height); + + throw new Error('Texture Error: frame does not fit inside the base Texture dimensions: ' + + errorX + " " + relationship + " " + errorY); + } + + this.valid = width && height && this.baseTexture.valid; + + if (!this.trim && !this.rotate) + { + this.orig = frame; + } + + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * Indicates whether the texture is rotated inside the atlas + * set to 2 to compensate for texture packer rotation + * set to 6 to compensate for spine packer rotation + * can be used to rotate or mirror sprites + * See {@link PIXI.GroupD8} for explanation + * + * @member {number} + */ + prototypeAccessors.rotate.get = function () + { + return this._rotate; + }; + + prototypeAccessors.rotate.set = function (rotate) // eslint-disable-line require-jsdoc + { + this._rotate = rotate; + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * The width of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.orig.width; + }; + + /** + * The height of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.orig.height; + }; + + Object.defineProperties( Texture.prototype, prototypeAccessors ); + + return Texture; +}(eventemitter3)); + +function createWhiteTexture() +{ + var canvas = document.createElement('canvas'); + + canvas.width = 16; + canvas.height = 16; + + var context = canvas.getContext('2d'); + + context.fillStyle = 'white'; + context.fillRect(0, 0, 16, 16); + + return new Texture(new BaseTexture(new CanvasResource(canvas))); +} + +function removeAllHandlers(tex) +{ + tex.destroy = function _emptyDestroy() { /* empty */ }; + tex.on = function _emptyOn() { /* empty */ }; + tex.once = function _emptyOnce() { /* empty */ }; + tex.emit = function _emptyEmit() { /* empty */ }; +} + +/** + * An empty texture, used often to not have to create multiple empty textures. + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.EMPTY = new Texture(new BaseTexture()); +removeAllHandlers(Texture.EMPTY); +removeAllHandlers(Texture.EMPTY.baseTexture); + +/** + * A white texture of 16x16 size, used for graphics and other things + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.WHITE = createWhiteTexture(); +removeAllHandlers(Texture.WHITE); +removeAllHandlers(Texture.WHITE.baseTexture); + +/** + * A RenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a RenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * __Hint-2__: The actual memory allocation will happen on first render. + * You shouldn't create renderTextures each frame just to delete them after, try to reuse them. + * + * A RenderTexture takes a snapshot of any Display Object given to its render method. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let renderTexture = PIXI.RenderTexture.create(800, 600); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let renderTexture = new PIXI.RenderTexture.create(100, 100); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.Texture + * @memberof PIXI + */ +var RenderTexture = /*@__PURE__*/(function (Texture) { + function RenderTexture(baseRenderTexture, frame) + { + // support for legacy.. + var _legacyRenderer = null; + + if (!(baseRenderTexture instanceof BaseRenderTexture)) + { + /* eslint-disable prefer-rest-params, no-console */ + var width = arguments[1]; + var height = arguments[2]; + var scaleMode = arguments[3]; + var resolution = arguments[4]; + + // we have an old render texture.. + console.warn(("Please use RenderTexture.create(" + width + ", " + height + ") instead of the ctor directly.")); + _legacyRenderer = arguments[0]; + /* eslint-enable prefer-rest-params, no-console */ + + frame = null; + baseRenderTexture = new BaseRenderTexture({ + width: width, + height: height, + scaleMode: scaleMode, + resolution: resolution, + }); + } + + /** + * The base texture object that this texture uses + * + * @member {PIXI.BaseTexture} + */ + Texture.call(this, baseRenderTexture, frame); + + this.legacyRenderer = _legacyRenderer; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = true; + + /** + * Stores `sourceFrame` when this texture is inside current filter stack. + * You can read it inside filters. + * + * @readonly + * @member {PIXI.Rectangle} + */ + this.filterFrame = null; + + /** + * The key for pooled texture of FilterSystem + * @protected + * @member {string} + */ + this.filterPoolKey = null; + + this.updateUvs(); + } + + if ( Texture ) RenderTexture.__proto__ = Texture; + RenderTexture.prototype = Object.create( Texture && Texture.prototype ); + RenderTexture.prototype.constructor = RenderTexture; + + /** + * Resizes the RenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + * @param {boolean} [resizeBaseTexture=true] - Should the baseTexture.width and height values be resized as well? + */ + RenderTexture.prototype.resize = function resize (width, height, resizeBaseTexture) + { + if ( resizeBaseTexture === void 0 ) resizeBaseTexture = true; + + width = Math.ceil(width); + height = Math.ceil(height); + + // TODO - could be not required.. + this.valid = (width > 0 && height > 0); + + this._frame.width = this.orig.width = width; + this._frame.height = this.orig.height = height; + + if (resizeBaseTexture) + { + this.baseTexture.resize(width, height); + } + + this.updateUvs(); + }; + + /** + * Changes the resolution of baseTexture, but does not change framebuffer size. + * + * @param {number} resolution - The new resolution to apply to RenderTexture + */ + RenderTexture.prototype.setResolution = function setResolution (resolution) + { + var ref = this; + var baseTexture = ref.baseTexture; + + if (baseTexture.resolution === resolution) + { + return; + } + + baseTexture.setResolution(resolution); + this.resize(baseTexture.width, baseTexture.height, false); + }; + + /** + * A short hand way of creating a render texture. + * + * @param {object} [options] - Options + * @param {number} [options.width=100] - The width of the render texture + * @param {number} [options.height=100] - The height of the render texture + * @param {number} [options.scaleMode=PIXI.settings.SCALE_MODE] - See {@link PIXI.SCALE_MODES} for possible values + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the texture being generated + * @return {PIXI.RenderTexture} The new render texture + */ + RenderTexture.create = function create (options) + { + // fallback, old-style: create(width, height, scaleMode, resolution) + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + options = { + width: options, + height: arguments[1], + scaleMode: arguments[2], + resolution: arguments[3], + }; + /* eslint-enable prefer-rest-params */ + } + + return new RenderTexture(new BaseRenderTexture(options)); + }; + + return RenderTexture; +}(Texture)); + +/** + * Experimental! + * + * Texture pool, used by FilterSystem and plugins + * Stores collection of temporary pow2 or screen-sized renderTextures + * + * If you use custom RenderTexturePool for your filters, you can use methods + * `getFilterTexture` and `returnFilterTexture` same as in + * + * @class + * @memberof PIXI + */ +var RenderTexturePool = function RenderTexturePool(textureOptions) +{ + this.texturePool = {}; + this.textureOptions = textureOptions || {}; + /** + * Allow renderTextures of the same size as screen, not just pow2 + * + * Automatically sets to true after `setScreenSize` + * + * @member {boolean} + * @default false + */ + this.enableFullScreen = false; + + this._pixelsWidth = 0; + this._pixelsHeight = 0; +}; + +/** + * creates of texture with params that were specified in pool constructor + * + * @param {number} realWidth width of texture in pixels + * @param {number} realHeight height of texture in pixels + * @returns {RenderTexture} + */ +RenderTexturePool.prototype.createTexture = function createTexture (realWidth, realHeight) +{ + var baseRenderTexture = new BaseRenderTexture(Object.assign({ + width: realWidth, + height: realHeight, + resolution: 1, + }, this.textureOptions)); + + return new RenderTexture(baseRenderTexture); +}; + +/** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ +RenderTexturePool.prototype.getOptimalTexture = function getOptimalTexture (minWidth, minHeight, resolution) +{ + if ( resolution === void 0 ) resolution = 1; + + var key = RenderTexturePool.SCREEN_KEY; + + minWidth *= resolution; + minHeight *= resolution; + + if (!this.enableFullScreen || minWidth !== this._pixelsWidth || minHeight !== this._pixelsHeight) + { + minWidth = nextPow2(minWidth); + minHeight = nextPow2(minHeight); + key = ((minWidth & 0xFFFF) << 16) | (minHeight & 0xFFFF); + } + + if (!this.texturePool[key]) + { + this.texturePool[key] = []; + } + + var renderTexture = this.texturePool[key].pop(); + + if (!renderTexture) + { + renderTexture = this.createTexture(minWidth, minHeight); + } + + renderTexture.filterPoolKey = key; + renderTexture.setResolution(resolution); + + return renderTexture; +}; + +/** + * Gets extra texture of the same size as input renderTexture + * + * `getFilterTexture(input, 0.5)` or `getFilterTexture(0.5, input)` + * + * @param {PIXI.RenderTexture} input renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * It overrides, it does not multiply + * @returns {PIXI.RenderTexture} + */ +RenderTexturePool.prototype.getFilterTexture = function getFilterTexture (input, resolution) +{ + var filterTexture = this.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; +}; + +/** + * Place a render texture back into the pool. + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnTexture = function returnTexture (renderTexture) +{ + var key = renderTexture.filterPoolKey; + + renderTexture.filterFrame = null; + this.texturePool[key].push(renderTexture); +}; + +/** + * Alias for returnTexture, to be compliant with FilterSystem interface + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) +{ + this.returnTexture(renderTexture); +}; + +/** + * Clears the pool + * + * @param {boolean} [destroyTextures=true] destroy all stored textures + */ +RenderTexturePool.prototype.clear = function clear (destroyTextures) +{ + destroyTextures = destroyTextures !== false; + if (destroyTextures) + { + for (var i in this.texturePool) + { + var textures = this.texturePool[i]; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + } + } + + this.texturePool = {}; +}; + +/** + * If screen size was changed, drops all screen-sized textures, + * sets new screen size, sets `enableFullScreen` to true + * + * Size is measured in pixels, `renderer.view` can be passed here, not `renderer.screen` + * + * @param {PIXI.ISize} size - Initial size of screen + */ +RenderTexturePool.prototype.setScreenSize = function setScreenSize (size) +{ + if (size.width === this._pixelsWidth + && size.height === this._pixelsHeight) + { + return; + } + + var screenKey = RenderTexturePool.SCREEN_KEY; + var textures = this.texturePool[screenKey]; + + this.enableFullScreen = size.width > 0 && size.height > 0; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + this.texturePool[screenKey] = []; + + this._pixelsWidth = size.width; + this._pixelsHeight = size.height; +}; + +/** + * Key that is used to store fullscreen renderTextures in a pool + * + * @static + * @const {string} + */ +RenderTexturePool.SCREEN_KEY = 'screen'; + +/* eslint-disable max-len */ + +/** + * Holds the information for a single attribute structure required to render geometry. + * + * This does not contain the actual data, but instead has a buffer id that maps to a {@link PIXI.Buffer} + * This can include anything from positions, uvs, normals, colors etc. + * + * @class + * @memberof PIXI + */ +var Attribute = function Attribute(buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( type === void 0 ) type = 5126; + + this.buffer = buffer; + this.size = size; + this.normalized = normalized; + this.type = type; + this.stride = stride; + this.start = start; + this.instance = instance; +}; + +/** + * Destroys the Attribute. + */ +Attribute.prototype.destroy = function destroy () +{ + this.buffer = null; +}; + +/** + * Helper function that creates an Attribute based on the information provided + * + * @static + * @param {string} buffer the id of the buffer that this attribute will look for + * @param {Number} [size=2] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 + * @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) + * @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) + * @param {Boolean} [normalized=false] should the data be normalized. + * + * @returns {PIXI.Attribute} A new {@link PIXI.Attribute} based on the information provided + */ +Attribute.from = function from (buffer, size, normalized, type, stride) +{ + return new Attribute(buffer, size, normalized, type, stride); +}; + +var UID = 0; +/* eslint-disable max-len */ + +/** + * A wrapper for data so that it can be used and uploaded by WebGL + * + * @class + * @memberof PIXI + */ +var Buffer$1 = function Buffer(data, _static, index) +{ + if ( _static === void 0 ) _static = true; + if ( index === void 0 ) index = false; + + /** + * The data in the buffer, as a typed array + * + * @member {ArrayBuffer| SharedArrayBuffer|ArrayBufferView} + */ + this.data = data || new Float32Array(1); + + /** + * A map of renderer IDs to webgl buffer + * + * @private + * @member {object} + */ + this._glBuffers = {}; + + this._updateID = 0; + + this.index = index; + + this.static = _static; + + this.id = UID++; + + this.disposeRunner = new Runner('disposeBuffer', 2); +}; + +// TODO could explore flagging only a partial upload? +/** + * flags this buffer as requiring an upload to the GPU + * @param {ArrayBuffer|SharedArrayBuffer|ArrayBufferView} [data] the data to update in the buffer. + */ +Buffer$1.prototype.update = function update (data) +{ + this.data = data || this.data; + this._updateID++; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Buffer$1.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the buffer + */ +Buffer$1.prototype.destroy = function destroy () +{ + this.dispose(); + + this.data = null; +}; + +/** + * Helper function that creates a buffer based on an array or TypedArray + * + * @static + * @param {ArrayBufferView | number[]} data the TypedArray that the buffer will store. If this is a regular Array it will be converted to a Float32Array. + * @return {PIXI.Buffer} A new Buffer based on the data provided. + */ +Buffer$1.from = function from (data) +{ + if (data instanceof Array) + { + data = new Float32Array(data); + } + + return new Buffer$1(data); +}; + +function getBufferType(array) +{ + if (array.BYTES_PER_ELEMENT === 4) + { + if (array instanceof Float32Array) + { + return 'Float32Array'; + } + else if (array instanceof Uint32Array) + { + return 'Uint32Array'; + } + + return 'Int32Array'; + } + else if (array.BYTES_PER_ELEMENT === 2) + { + if (array instanceof Uint16Array) + { + return 'Uint16Array'; + } + } + else if (array.BYTES_PER_ELEMENT === 1) + { + if (array instanceof Uint8Array) + { + return 'Uint8Array'; + } + } + + // TODO map out the rest of the array elements! + return null; +} + +/* eslint-disable object-shorthand */ +var map$2 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, +}; + +function interleaveTypedArrays(arrays, sizes) +{ + var outSize = 0; + var stride = 0; + var views = {}; + + for (var i = 0; i < arrays.length; i++) + { + stride += sizes[i]; + outSize += arrays[i].length; + } + + var buffer = new ArrayBuffer(outSize * 4); + + var out = null; + var littleOffset = 0; + + for (var i$1 = 0; i$1 < arrays.length; i$1++) + { + var size = sizes[i$1]; + var array = arrays[i$1]; + + var type = getBufferType(array); + + if (!views[type]) + { + views[type] = new map$2[type](buffer); + } + + out = views[type]; + + for (var j = 0; j < array.length; j++) + { + var indexStart = ((j / size | 0) * stride) + littleOffset; + var index = j % size; + + out[indexStart + index] = array[j]; + } + + littleOffset += size; + } + + return new Float32Array(buffer); +} + +var byteSizeMap = { 5126: 4, 5123: 2, 5121: 1 }; +var UID$1 = 0; + +/* eslint-disable object-shorthand */ +var map$1$1 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, + Uint16Array: Uint16Array, +}; + +/* eslint-disable max-len */ + +/** + * The Geometry represents a model. It consists of two components: + * - GeometryStyle - The structure of the model such as the attributes layout + * - GeometryData - the data of the model - this consists of buffers. + * This can include anything from positions, uvs, normals, colors etc. + * + * Geometry can be defined without passing in a style or data if required (thats how I prefer!) + * + * ```js + * let geometry = new PIXI.Geometry(); + * + * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2); + * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1],2) + * geometry.addIndex([0,1,2,1,3,2]) + * + * ``` + * @class + * @memberof PIXI + */ +var Geometry = function Geometry(buffers, attributes) +{ + if ( buffers === void 0 ) buffers = []; + if ( attributes === void 0 ) attributes = {}; + + this.buffers = buffers; + + this.indexBuffer = null; + + this.attributes = attributes; + + /** + * A map of renderer IDs to webgl VAOs + * + * @protected + * @type {object} + */ + this.glVertexArrayObjects = {}; + + this.id = UID$1++; + + this.instanced = false; + + /** + * Number of instances in this geometry, pass it to `GeometrySystem.draw()` + * @member {number} + * @default 1 + */ + this.instanceCount = 1; + + this.disposeRunner = new Runner('disposeGeometry', 2); + + /** + * Count of existing (not destroyed) meshes that reference this geometry + * @member {number} + */ + this.refCount = 0; +}; + +/** +* +* Adds an attribute to the geometry +* +* @param {String} id - the name of the attribute (matching up to a shader) +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it. +* @param {Number} [size=0] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 +* @param {Boolean} [normalized=false] should the data be normalized. +* @param {Number} [type=PIXI.TYPES.FLOAT] what type of number is the attribute. Check {PIXI.TYPES} to see the ones available +* @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) +* @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) +* +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addAttribute = function addAttribute (id, buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( instance === void 0 ) instance = false; + + if (!buffer) + { + throw new Error('You must pass a buffer when creating an attribute'); + } + + // check if this is a buffer! + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Float32Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + var ids = id.split('|'); + + if (ids.length > 1) + { + for (var i = 0; i < ids.length; i++) + { + this.addAttribute(ids[i], buffer, size, normalized, type); + } + + return this; + } + + var bufferIndex = this.buffers.indexOf(buffer); + + if (bufferIndex === -1) + { + this.buffers.push(buffer); + bufferIndex = this.buffers.length - 1; + } + + this.attributes[id] = new Attribute(bufferIndex, size, normalized, type, stride, start, instance); + + // assuming that if there is instanced data then this will be drawn with instancing! + this.instanced = this.instanced || instance; + + return this; +}; + +/** + * returns the requested attribute + * + * @param {String} id the name of the attribute required + * @return {PIXI.Attribute} the attribute requested. + */ +Geometry.prototype.getAttribute = function getAttribute (id) +{ + return this.attributes[id]; +}; + +/** + * returns the requested buffer + * + * @param {String} id the name of the buffer required + * @return {PIXI.Buffer} the buffer requested. + */ +Geometry.prototype.getBuffer = function getBuffer (id) +{ + return this.buffers[this.getAttribute(id).buffer]; +}; + +/** +* +* Adds an index buffer to the geometry +* The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer. +* +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it. +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addIndex = function addIndex (buffer) +{ + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Uint16Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + buffer.index = true; + this.indexBuffer = buffer; + + if (this.buffers.indexOf(buffer) === -1) + { + this.buffers.push(buffer); + } + + return this; +}; + +/** + * returns the index buffer + * + * @return {PIXI.Buffer} the index buffer. + */ +Geometry.prototype.getIndex = function getIndex () +{ + return this.indexBuffer; +}; + +/** + * this function modifies the structure so that all current attributes become interleaved into a single buffer + * This can be useful if your model remains static as it offers a little performance boost + * + * @return {PIXI.Geometry} returns self, useful for chaining. + */ +Geometry.prototype.interleave = function interleave () +{ + // a simple check to see if buffers are already interleaved.. + if (this.buffers.length === 1 || (this.buffers.length === 2 && this.indexBuffer)) { return this; } + + // assume already that no buffers are interleaved + var arrays = []; + var sizes = []; + var interleavedBuffer = new Buffer$1(); + var i; + + for (i in this.attributes) + { + var attribute = this.attributes[i]; + + var buffer = this.buffers[attribute.buffer]; + + arrays.push(buffer.data); + + sizes.push((attribute.size * byteSizeMap[attribute.type]) / 4); + + attribute.buffer = 0; + } + + interleavedBuffer.data = interleaveTypedArrays(arrays, sizes); + + for (i = 0; i < this.buffers.length; i++) + { + if (this.buffers[i] !== this.indexBuffer) + { + this.buffers[i].destroy(); + } + } + + this.buffers = [interleavedBuffer]; + + if (this.indexBuffer) + { + this.buffers.push(this.indexBuffer); + } + + return this; +}; + +Geometry.prototype.getSize = function getSize () +{ + for (var i in this.attributes) + { + var attribute = this.attributes[i]; + var buffer = this.buffers[attribute.buffer]; + + return buffer.data.length / ((attribute.stride / 4) || attribute.size); + } + + return 0; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Geometry.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the geometry. + */ +Geometry.prototype.destroy = function destroy () +{ + this.dispose(); + + this.buffers = null; + this.indexBuffer.destroy(); + + this.attributes = null; +}; + +/** + * returns a clone of the geometry + * + * @returns {PIXI.Geometry} a new clone of this geometry + */ +Geometry.prototype.clone = function clone () +{ + var geometry = new Geometry(); + + for (var i = 0; i < this.buffers.length; i++) + { + geometry.buffers[i] = new Buffer$1(this.buffers[i].data.slice()); + } + + for (var i$1 in this.attributes) + { + var attrib = this.attributes[i$1]; + + geometry.attributes[i$1] = new Attribute( + attrib.buffer, + attrib.size, + attrib.normalized, + attrib.type, + attrib.stride, + attrib.start, + attrib.instance + ); + } + + if (this.indexBuffer) + { + geometry.indexBuffer = geometry.buffers[this.buffers.indexOf(this.indexBuffer)]; + geometry.indexBuffer.index = true; + } + + return geometry; +}; + +/** + * merges an array of geometries into a new single one + * geometry attribute styles must match for this operation to work + * + * @param {PIXI.Geometry[]} geometries array of geometries to merge + * @returns {PIXI.Geometry} shiny new geometry! + */ +Geometry.merge = function merge (geometries) +{ + // todo add a geometry check! + // also a size check.. cant be too big!] + + var geometryOut = new Geometry(); + + var arrays = []; + var sizes = []; + var offsets = []; + + var geometry; + + // pass one.. get sizes.. + for (var i = 0; i < geometries.length; i++) + { + geometry = geometries[i]; + + for (var j = 0; j < geometry.buffers.length; j++) + { + sizes[j] = sizes[j] || 0; + sizes[j] += geometry.buffers[j].data.length; + offsets[j] = 0; + } + } + + // build the correct size arrays.. + for (var i$1 = 0; i$1 < geometry.buffers.length; i$1++) + { + // TODO types! + arrays[i$1] = new map$1$1[getBufferType(geometry.buffers[i$1].data)](sizes[i$1]); + geometryOut.buffers[i$1] = new Buffer$1(arrays[i$1]); + } + + // pass to set data.. + for (var i$2 = 0; i$2 < geometries.length; i$2++) + { + geometry = geometries[i$2]; + + for (var j$1 = 0; j$1 < geometry.buffers.length; j$1++) + { + arrays[j$1].set(geometry.buffers[j$1].data, offsets[j$1]); + offsets[j$1] += geometry.buffers[j$1].data.length; + } + } + + geometryOut.attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + geometryOut.indexBuffer = geometryOut.buffers[geometry.buffers.indexOf(geometry.indexBuffer)]; + geometryOut.indexBuffer.index = true; + + var offset = 0; + var stride = 0; + var offset2 = 0; + var bufferIndexToCount = 0; + + // get a buffer + for (var i$3 = 0; i$3 < geometry.buffers.length; i$3++) + { + if (geometry.buffers[i$3] !== geometry.indexBuffer) + { + bufferIndexToCount = i$3; + break; + } + } + + // figure out the stride of one buffer.. + for (var i$4 in geometry.attributes) + { + var attribute = geometry.attributes[i$4]; + + if ((attribute.buffer | 0) === bufferIndexToCount) + { + stride += ((attribute.size * byteSizeMap[attribute.type]) / 4); + } + } + + // time to off set all indexes.. + for (var i$5 = 0; i$5 < geometries.length; i$5++) + { + var indexBufferData = geometries[i$5].indexBuffer.data; + + for (var j$2 = 0; j$2 < indexBufferData.length; j$2++) + { + geometryOut.indexBuffer.data[j$2 + offset2] += offset; + } + + offset += geometry.buffers[bufferIndexToCount].data.length / (stride); + offset2 += indexBufferData.length; + } + } + + return geometryOut; +}; + +/** + * Helper class to create a quad + * + * @class + * @memberof PIXI + */ +var Quad = /*@__PURE__*/(function (Geometry) { + function Quad() + { + Geometry.call(this); + + this.addAttribute('aVertexPosition', [ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]) + .addIndex([0, 1, 3, 2]); + } + + if ( Geometry ) Quad.__proto__ = Geometry; + Quad.prototype = Object.create( Geometry && Geometry.prototype ); + Quad.prototype.constructor = Quad; + + return Quad; +}(Geometry)); + +/** + * Helper class to create a quad with uvs like in v4 + * + * @class + * @memberof PIXI + * @extends PIXI.Geometry + */ +var QuadUv = /*@__PURE__*/(function (Geometry) { + function QuadUv() + { + Geometry.call(this); + + /** + * An array of vertices + * + * @member {Float32Array} + */ + this.vertices = new Float32Array([ + -1, -1, + 1, -1, + 1, 1, + -1, 1 ]); + + /** + * The Uvs of the quad + * + * @member {Float32Array} + */ + this.uvs = new Float32Array([ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]); + + this.vertexBuffer = new Buffer$1(this.vertices); + this.uvBuffer = new Buffer$1(this.uvs); + + this.addAttribute('aVertexPosition', this.vertexBuffer) + .addAttribute('aTextureCoord', this.uvBuffer) + .addIndex([0, 1, 2, 0, 2, 3]); + } + + if ( Geometry ) QuadUv.__proto__ = Geometry; + QuadUv.prototype = Object.create( Geometry && Geometry.prototype ); + QuadUv.prototype.constructor = QuadUv; + + /** + * Maps two Rectangle to the quad. + * + * @param {PIXI.Rectangle} targetTextureFrame - the first rectangle + * @param {PIXI.Rectangle} destinationFrame - the second rectangle + * @return {PIXI.Quad} Returns itself. + */ + QuadUv.prototype.map = function map (targetTextureFrame, destinationFrame) + { + var x = 0; // destinationFrame.x / targetTextureFrame.width; + var y = 0; // destinationFrame.y / targetTextureFrame.height; + + this.uvs[0] = x; + this.uvs[1] = y; + + this.uvs[2] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[3] = y; + + this.uvs[4] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[5] = y + (destinationFrame.height / targetTextureFrame.height); + + this.uvs[6] = x; + this.uvs[7] = y + (destinationFrame.height / targetTextureFrame.height); + + x = destinationFrame.x; + y = destinationFrame.y; + + this.vertices[0] = x; + this.vertices[1] = y; + + this.vertices[2] = x + destinationFrame.width; + this.vertices[3] = y; + + this.vertices[4] = x + destinationFrame.width; + this.vertices[5] = y + destinationFrame.height; + + this.vertices[6] = x; + this.vertices[7] = y + destinationFrame.height; + + this.invalidate(); + + return this; + }; + + /** + * legacy upload method, just marks buffers dirty + * @returns {PIXI.QuadUv} Returns itself. + */ + QuadUv.prototype.invalidate = function invalidate () + { + this.vertexBuffer._updateID++; + this.uvBuffer._updateID++; + + return this; + }; + + return QuadUv; +}(Geometry)); + +var UID$2 = 0; + +/** + * Uniform group holds uniform map and some ID's for work + * + * @class + * @memberof PIXI + */ +var UniformGroup = function UniformGroup(uniforms, _static) +{ + /** + * uniform values + * @member {object} + * @readonly + */ + this.uniforms = uniforms; + + /** + * Its a group and not a single uniforms + * @member {boolean} + * @readonly + * @default true + */ + this.group = true; + + // lets generate this when the shader ? + this.syncUniforms = {}; + + /** + * dirty version + * @protected + * @member {number} + */ + this.dirtyId = 0; + + /** + * unique id + * @protected + * @member {number} + */ + this.id = UID$2++; + + /** + * Uniforms wont be changed after creation + * @member {boolean} + */ + this.static = !!_static; +}; + +UniformGroup.prototype.update = function update () +{ + this.dirtyId++; +}; + +UniformGroup.prototype.add = function add (name, uniforms, _static) +{ + this.uniforms[name] = new UniformGroup(uniforms, _static); +}; + +UniformGroup.from = function from (uniforms, _static) +{ + return new UniformGroup(uniforms, _static); +}; + +/** + * System plugin to the renderer to manage filter states. + * + * @class + * @private + */ +var FilterState = function FilterState() +{ + this.renderTexture = null; + + /** + * Target of the filters + * We store for case when custom filter wants to know the element it was applied on + * @member {PIXI.DisplayObject} + * @private + */ + this.target = null; + + /** + * Compatibility with PixiJS v4 filters + * @member {boolean} + * @default false + * @private + */ + this.legacy = false; + + /** + * Resolution of filters + * @member {number} + * @default 1 + * @private + */ + this.resolution = 1; + + // next three fields are created only for root + // re-assigned for everything else + + /** + * Source frame + * @member {PIXI.Rectangle} + * @private + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @private + */ + this.destinationFrame = new Rectangle(); + + /** + * Collection of filters + * @member {PIXI.Filter[]} + * @private + */ + this.filters = []; +}; + +/** + * clears the state + * @private + */ +FilterState.prototype.clear = function clear () +{ + this.target = null; + this.filters = null; + this.renderTexture = null; +}; + +/** + * System plugin to the renderer to manage the filters. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var FilterSystem = /*@__PURE__*/(function (System) { + function FilterSystem(renderer) + { + System.call(this, renderer); + + /** + * List of filters for the FilterSystem + * @member {Object[]} + * @readonly + */ + this.defaultFilterStack = [{}]; + + /** + * stores a bunch of PO2 textures used for filtering + * @member {Object} + */ + this.texturePool = new RenderTexturePool(); + + this.texturePool.setScreenSize(renderer.view); + + /** + * a pool for storing filter states, save us creating new ones each tick + * @member {Object[]} + */ + this.statePool = []; + + /** + * A very simple geometry used when drawing a filter effect to the screen + * @member {PIXI.Quad} + */ + this.quad = new Quad(); + + /** + * Quad UVs + * @member {PIXI.QuadUv} + */ + this.quadUv = new QuadUv(); + + /** + * Temporary rect for maths + * @type {PIXI.Rectangle} + */ + this.tempRect = new Rectangle(); + + /** + * Active state + * @member {object} + */ + this.activeState = {}; + + /** + * This uniform group is attached to filter uniforms when used + * @member {PIXI.UniformGroup} + * @property {PIXI.Rectangle} outputFrame + * @property {Float32Array} inputSize + * @property {Float32Array} inputPixel + * @property {Float32Array} inputClamp + * @property {Number} resolution + * @property {Float32Array} filterArea + * @property {Fload32Array} filterClamp + */ + this.globalUniforms = new UniformGroup({ + outputFrame: this.tempRect, + inputSize: new Float32Array(4), + inputPixel: new Float32Array(4), + inputClamp: new Float32Array(4), + resolution: 1, + + // legacy variables + filterArea: new Float32Array(4), + filterClamp: new Float32Array(4), + }, true); + + this._pixelsWidth = renderer.view.width; + this._pixelsHeight = renderer.view.height; + } + + if ( System ) FilterSystem.__proto__ = System; + FilterSystem.prototype = Object.create( System && System.prototype ); + FilterSystem.prototype.constructor = FilterSystem; + + /** + * Adds a new filter to the System. + * + * @param {PIXI.DisplayObject} target - The target of the filter to render. + * @param {PIXI.Filter[]} filters - The filters to apply. + */ + FilterSystem.prototype.push = function push (target, filters) + { + var renderer = this.renderer; + var filterStack = this.defaultFilterStack; + var state = this.statePool.pop() || new FilterState(); + + var resolution = filters[0].resolution; + var padding = filters[0].padding; + var autoFit = filters[0].autoFit; + var legacy = filters[0].legacy; + + for (var i = 1; i < filters.length; i++) + { + var filter = filters[i]; + + // lets use the lowest resolution.. + resolution = Math.min(resolution, filter.resolution); + // and the largest amount of padding! + padding = Math.max(padding, filter.padding); + // only auto fit if all filters are autofit + autoFit = autoFit || filter.autoFit; + + legacy = legacy || filter.legacy; + } + + if (filterStack.length === 1) + { + this.defaultFilterStack[0].renderTexture = renderer.renderTexture.current; + } + + filterStack.push(state); + + state.resolution = resolution; + + state.legacy = legacy; + + state.target = target; + + state.sourceFrame.copyFrom(target.filterArea || target.getBounds(true)); + + state.sourceFrame.pad(padding); + if (autoFit) + { + state.sourceFrame.fit(this.renderer.renderTexture.sourceFrame); + } + + // round to whole number based on resolution + state.sourceFrame.ceil(resolution); + + state.renderTexture = this.getOptimalFilterTexture(state.sourceFrame.width, state.sourceFrame.height, resolution); + state.filters = filters; + + state.destinationFrame.width = state.renderTexture.width; + state.destinationFrame.height = state.renderTexture.height; + + state.renderTexture.filterFrame = state.sourceFrame; + + renderer.renderTexture.bind(state.renderTexture, state.sourceFrame);// /, state.destinationFrame); + renderer.renderTexture.clear(); + }; + + /** + * Pops off the filter and applies it. + * + */ + FilterSystem.prototype.pop = function pop () + { + var filterStack = this.defaultFilterStack; + var state = filterStack.pop(); + var filters = state.filters; + + this.activeState = state; + + var globalUniforms = this.globalUniforms.uniforms; + + globalUniforms.outputFrame = state.sourceFrame; + globalUniforms.resolution = state.resolution; + + var inputSize = globalUniforms.inputSize; + var inputPixel = globalUniforms.inputPixel; + var inputClamp = globalUniforms.inputClamp; + + inputSize[0] = state.destinationFrame.width; + inputSize[1] = state.destinationFrame.height; + inputSize[2] = 1.0 / inputSize[0]; + inputSize[3] = 1.0 / inputSize[1]; + + inputPixel[0] = inputSize[0] * state.resolution; + inputPixel[1] = inputSize[1] * state.resolution; + inputPixel[2] = 1.0 / inputPixel[0]; + inputPixel[3] = 1.0 / inputPixel[1]; + + inputClamp[0] = 0.5 * inputPixel[2]; + inputClamp[1] = 0.5 * inputPixel[3]; + inputClamp[2] = (state.sourceFrame.width * inputSize[2]) - (0.5 * inputPixel[2]); + inputClamp[3] = (state.sourceFrame.height * inputSize[3]) - (0.5 * inputPixel[3]); + + // only update the rect if its legacy.. + if (state.legacy) + { + var filterArea = globalUniforms.filterArea; + + filterArea[0] = state.destinationFrame.width; + filterArea[1] = state.destinationFrame.height; + filterArea[2] = state.sourceFrame.x; + filterArea[3] = state.sourceFrame.y; + + globalUniforms.filterClamp = globalUniforms.inputClamp; + } + + this.globalUniforms.update(); + + var lastState = filterStack[filterStack.length - 1]; + + if (filters.length === 1) + { + filters[0].apply(this, state.renderTexture, lastState.renderTexture, false, state); + + this.returnFilterTexture(state.renderTexture); + } + else + { + var flip = state.renderTexture; + var flop = this.getOptimalFilterTexture( + flip.width, + flip.height, + state.resolution + ); + + flop.filterFrame = flip.filterFrame; + + var i = 0; + + for (i = 0; i < filters.length - 1; ++i) + { + filters[i].apply(this, flip, flop, true, state); + + var t = flip; + + flip = flop; + flop = t; + } + + filters[i].apply(this, flip, lastState.renderTexture, false, state); + + this.returnFilterTexture(flip); + this.returnFilterTexture(flop); + } + + state.clear(); + this.statePool.push(state); + }; + + /** + * Draws a filter. + * + * @param {PIXI.Filter} filter - The filter to draw. + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + */ + FilterSystem.prototype.applyFilter = function applyFilter (filter, input, output, clear) + { + var renderer = this.renderer; + + renderer.renderTexture.bind(output, output ? output.filterFrame : null); + + if (clear) + { + // gl.disable(gl.SCISSOR_TEST); + renderer.renderTexture.clear(); + // gl.enable(gl.SCISSOR_TEST); + } + + // set the uniforms.. + filter.uniforms.uSampler = input; + filter.uniforms.filterGlobals = this.globalUniforms; + + // TODO make it so that the order of this does not matter.. + // because it does at the moment cos of global uniforms. + // they need to get resynced + + renderer.state.set(filter.state); + renderer.shader.bind(filter); + + if (filter.legacy) + { + this.quadUv.map(input._frame, input.filterFrame); + + renderer.geometry.bind(this.quadUv); + renderer.geometry.draw(DRAW_MODES.TRIANGLES); + } + else + { + renderer.geometry.bind(this.quad); + renderer.geometry.draw(DRAW_MODES.TRIANGLE_STRIP); + } + }; + + /** + * Multiply _input normalized coordinates_ to this matrix to get _sprite texture normalized coordinates_. + * + * Use `outputMatrix * vTextureCoord` in the shader. + * + * @param {PIXI.Matrix} outputMatrix - The matrix to output to. + * @param {PIXI.Sprite} sprite - The sprite to map to. + * @return {PIXI.Matrix} The mapped matrix. + */ + FilterSystem.prototype.calculateSpriteMatrix = function calculateSpriteMatrix (outputMatrix, sprite) + { + var ref = this.activeState; + var sourceFrame = ref.sourceFrame; + var destinationFrame = ref.destinationFrame; + var ref$1 = sprite._texture; + var orig = ref$1.orig; + var mappedMatrix = outputMatrix.set(destinationFrame.width, 0, 0, + destinationFrame.height, sourceFrame.x, sourceFrame.y); + var worldTransform = sprite.worldTransform.copyTo(Matrix.TEMP_MATRIX); + + worldTransform.invert(); + mappedMatrix.prepend(worldTransform); + mappedMatrix.scale(1.0 / orig.width, 1.0 / orig.height); + mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y); + + return mappedMatrix; + }; + + /** + * Destroys this Filter System. + */ + FilterSystem.prototype.destroy = function destroy () + { + // Those textures has to be destroyed by RenderTextureSystem or FramebufferSystem + this.texturePool.clear(false); + }; + + /** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ + FilterSystem.prototype.getOptimalFilterTexture = function getOptimalFilterTexture (minWidth, minHeight, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + return this.texturePool.getOptimalTexture(minWidth, minHeight, resolution); + }; + + /** + * Gets extra render texture to use inside current filter + * To be compliant with older filters, you can use params in any order + * + * @param {PIXI.RenderTexture} [input] renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * @returns {PIXI.RenderTexture} + */ + FilterSystem.prototype.getFilterTexture = function getFilterTexture (input, resolution) + { + if (typeof input === 'number') + { + var swap = input; + + input = resolution; + resolution = swap; + } + + input = input || this.activeState.renderTexture; + + var filterTexture = this.texturePool.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; + }; + + /** + * Frees a render texture back into the pool. + * + * @param {PIXI.RenderTexture} renderTexture - The renderTarget to free + */ + FilterSystem.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) + { + this.texturePool.returnTexture(renderTexture); + }; + + /** + * Empties the texture pool. + */ + FilterSystem.prototype.emptyPool = function emptyPool () + { + this.texturePool.clear(true); + }; + + /** + * calls `texturePool.resize()`, affects fullScreen renderTextures + */ + FilterSystem.prototype.resize = function resize () + { + this.texturePool.setScreenSize(this.renderer.view); + }; + + return FilterSystem; +}(System)); + +/** + * Base for a common object renderer that can be used as a + * system renderer plugin. + * + * @class + * @extends PIXI.System + * @memberof PIXI + */ +var ObjectRenderer = function ObjectRenderer(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Stub method that should be used to empty the current + * batch by rendering objects now. + */ +ObjectRenderer.prototype.flush = function flush () +{ + // flush! +}; + +/** + * Generic destruction method that frees all resources. This + * should be called by subclasses. + */ +ObjectRenderer.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Stub method that initializes any state required before + * rendering starts. It is different from the `prerender` + * signal, which occurs every frame, in that it is called + * whenever an object requests _this_ renderer specifically. + */ +ObjectRenderer.prototype.start = function start () +{ + // set the shader.. +}; + +/** + * Stops the renderer. It should free up any state and + * become dormant. + */ +ObjectRenderer.prototype.stop = function stop () +{ + this.flush(); +}; + +/** + * Keeps the object to render. It doesn't have to be + * rendered immediately. + * + * @param {PIXI.DisplayObject} object - The object to render. + */ +ObjectRenderer.prototype.render = function render (object) // eslint-disable-line no-unused-vars +{ + // render the object +}; + +/** + * System plugin to the renderer to manage batching. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var BatchSystem = /*@__PURE__*/(function (System) { + function BatchSystem(renderer) + { + System.call(this, renderer); + + /** + * An empty renderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.emptyRenderer = new ObjectRenderer(renderer); + + /** + * The currently active ObjectRenderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.currentRenderer = this.emptyRenderer; + } + + if ( System ) BatchSystem.__proto__ = System; + BatchSystem.prototype = Object.create( System && System.prototype ); + BatchSystem.prototype.constructor = BatchSystem; + + /** + * Changes the current renderer to the one given in parameter + * + * @param {PIXI.ObjectRenderer} objectRenderer - The object renderer to use. + */ + BatchSystem.prototype.setObjectRenderer = function setObjectRenderer (objectRenderer) + { + if (this.currentRenderer === objectRenderer) + { + return; + } + + this.currentRenderer.stop(); + this.currentRenderer = objectRenderer; + + this.currentRenderer.start(); + }; + + /** + * This should be called if you wish to do some custom rendering + * It will basically render anything that may be batched up such as sprites + */ + BatchSystem.prototype.flush = function flush () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + /** + * Reset the system to an empty renderer + */ + BatchSystem.prototype.reset = function reset () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + return BatchSystem; +}(System)); + +/** + * The maximum support for using WebGL. If a device does not + * support WebGL version, for instance WebGL 2, it will still + * attempt to fallback support to WebGL 1. If you want to + * explicitly remove feature support to target a more stable + * baseline, prefer a lower environment. + * + * Due to {@link https://bugs.chromium.org/p/chromium/issues/detail?id=934823|bug in chromium} + * we disable webgl2 by default for all non-apple mobile devices. + * + * @static + * @name PREFER_ENV + * @memberof PIXI.settings + * @type {number} + * @default PIXI.ENV.WEBGL2 + */ +settings.PREFER_ENV = isMobile.any ? ENV.WEBGL : ENV.WEBGL2; + +var CONTEXT_UID = 0; + +/** + * System plugin to the renderer to manage the context. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var ContextSystem = /*@__PURE__*/(function (System) { + function ContextSystem(renderer) + { + System.call(this, renderer); + + /** + * Either 1 or 2 to reflect the WebGL version being used + * @member {number} + * @readonly + */ + this.webGLVersion = 1; + + /** + * Extensions being used + * @member {object} + * @readonly + * @property {WEBGL_draw_buffers} drawBuffers - WebGL v1 extension + * @property {WEBGL_depth_texture} depthTexture - WebGL v1 extension + * @property {OES_texture_float} floatTexture - WebGL v1 extension + * @property {WEBGL_lose_context} loseContext - WebGL v1 extension + * @property {OES_vertex_array_object} vertexArrayObject - WebGL v1 extension + * @property {EXT_texture_filter_anisotropic} anisotropicFiltering - WebGL v1 and v2 extension + */ + this.extensions = {}; + + // Bind functions + this.handleContextLost = this.handleContextLost.bind(this); + this.handleContextRestored = this.handleContextRestored.bind(this); + + renderer.view.addEventListener('webglcontextlost', this.handleContextLost, false); + renderer.view.addEventListener('webglcontextrestored', this.handleContextRestored, false); + } + + if ( System ) ContextSystem.__proto__ = System; + ContextSystem.prototype = Object.create( System && System.prototype ); + ContextSystem.prototype.constructor = ContextSystem; + + var prototypeAccessors = { isLost: { configurable: true } }; + + /** + * `true` if the context is lost + * @member {boolean} + * @readonly + */ + prototypeAccessors.isLost.get = function () + { + return (!this.gl || this.gl.isContextLost()); + }; + + /** + * Handle the context change event + * @param {WebGLRenderingContext} gl new webgl context + */ + ContextSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + + // restore a context if it was previously lost + if (gl.isContextLost() && gl.getExtension('WEBGL_lose_context')) + { + gl.getExtension('WEBGL_lose_context').restoreContext(); + } + }; + + /** + * Initialize the context + * + * @protected + * @param {WebGLRenderingContext} gl - WebGL context + */ + ContextSystem.prototype.initFromContext = function initFromContext (gl) + { + this.gl = gl; + this.validateContext(gl); + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + this.renderer.runners.contextChange.run(gl); + }; + + /** + * Initialize from context options + * + * @protected + * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext + * @param {object} options - context attributes + */ + ContextSystem.prototype.initFromOptions = function initFromOptions (options) + { + var gl = this.createContext(this.renderer.view, options); + + this.initFromContext(gl); + }; + + /** + * Helper class to create a WebGL Context + * + * @param canvas {HTMLCanvasElement} the canvas element that we will get the context from + * @param options {object} An options object that gets passed in to the canvas element containing the context attributes + * @see https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement/getContext + * @return {WebGLRenderingContext} the WebGL context + */ + ContextSystem.prototype.createContext = function createContext (canvas, options) + { + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', options); + } + + if (gl) + { + this.webGLVersion = 2; + } + else + { + this.webGLVersion = 1; + + gl = canvas.getContext('webgl', options) + || canvas.getContext('experimental-webgl', options); + + if (!gl) + { + // fail, not able to get a context + throw new Error('This browser does not support WebGL. Try using the canvas renderer'); + } + } + + this.gl = gl; + + this.getExtensions(); + + return gl; + }; + + /** + * Auto-populate the extensions + * + * @protected + */ + ContextSystem.prototype.getExtensions = function getExtensions () + { + // time to set up default extensions that Pixi uses. + var ref = this; + var gl = ref.gl; + + if (this.webGLVersion === 1) + { + Object.assign(this.extensions, { + drawBuffers: gl.getExtension('WEBGL_draw_buffers'), + depthTexture: gl.getExtension('WEBKIT_WEBGL_depth_texture'), + loseContext: gl.getExtension('WEBGL_lose_context'), + vertexArrayObject: gl.getExtension('OES_vertex_array_object') + || gl.getExtension('MOZ_OES_vertex_array_object') + || gl.getExtension('WEBKIT_OES_vertex_array_object'), + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + uint32ElementIndex: gl.getExtension('OES_element_index_uint'), + // Floats and half-floats + floatTexture: gl.getExtension('OES_texture_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + textureHalfFloat: gl.getExtension('OES_texture_half_float'), + textureHalfFloatLinear: gl.getExtension('OES_texture_half_float_linear'), + }); + } + else if (this.webGLVersion === 2) + { + Object.assign(this.extensions, { + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + // Floats and half-floats + colorBufferFloat: gl.getExtension('EXT_color_buffer_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + }); + } + }; + + /** + * Handles a lost webgl context + * + * @protected + * @param {WebGLContextEvent} event - The context lost event. + */ + ContextSystem.prototype.handleContextLost = function handleContextLost (event) + { + event.preventDefault(); + }; + + /** + * Handles a restored webgl context + * + * @protected + */ + ContextSystem.prototype.handleContextRestored = function handleContextRestored () + { + this.renderer.runners.contextChange.run(this.gl); + }; + + ContextSystem.prototype.destroy = function destroy () + { + var view = this.renderer.view; + + // remove listeners + view.removeEventListener('webglcontextlost', this.handleContextLost); + view.removeEventListener('webglcontextrestored', this.handleContextRestored); + + this.gl.useProgram(null); + + if (this.extensions.loseContext) + { + this.extensions.loseContext.loseContext(); + } + }; + + /** + * Handle the post-render runner event + * + * @protected + */ + ContextSystem.prototype.postrender = function postrender () + { + this.gl.flush(); + }; + + /** + * Validate context + * + * @protected + * @param {WebGLRenderingContext} gl - Render context + */ + ContextSystem.prototype.validateContext = function validateContext (gl) + { + var attributes = gl.getContextAttributes(); + + // this is going to be fairly simple for now.. but at least we have room to grow! + if (!attributes.stencil) + { + /* eslint-disable max-len */ + + /* eslint-disable no-console */ + console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly'); + /* eslint-enable no-console */ + + /* eslint-enable max-len */ + } + }; + + Object.defineProperties( ContextSystem.prototype, prototypeAccessors ); + + return ContextSystem; +}(System)); + +/** + * System plugin to the renderer to manage framebuffers. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var FramebufferSystem = /*@__PURE__*/(function (System) { + function FramebufferSystem(renderer) + { + System.call(this, renderer); + + /** + * A list of managed framebuffers + * @member {PIXI.Framebuffer[]} + * @readonly + */ + this.managedFramebuffers = []; + + /** + * Framebuffer value that shows that we don't know what is bound + * @member {Framebuffer} + * @readonly + */ + this.unknownFramebuffer = new Framebuffer(10, 10); + } + + if ( System ) FramebufferSystem.__proto__ = System; + FramebufferSystem.prototype = Object.create( System && System.prototype ); + FramebufferSystem.prototype.constructor = FramebufferSystem; + + var prototypeAccessors = { size: { configurable: true } }; + + /** + * Sets up the renderer context and necessary buffers. + */ + FramebufferSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + this.hasMRT = true; + this.writeDepthTexture = true; + + this.disposeAll(true); + + // webgl2 + if (this.renderer.context.webGLVersion === 1) + { + // webgl 1! + var nativeDrawBuffersExtension = this.renderer.context.extensions.drawBuffers; + var nativeDepthTextureExtension = this.renderer.context.extensions.depthTexture; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeDrawBuffersExtension = null; + nativeDepthTextureExtension = null; + } + + if (nativeDrawBuffersExtension) + { + gl.drawBuffers = function (activeTextures) { return nativeDrawBuffersExtension.drawBuffersWEBGL(activeTextures); }; + } + else + { + this.hasMRT = false; + gl.drawBuffers = function () { + // empty + }; + } + + if (!nativeDepthTextureExtension) + { + this.writeDepthTexture = false; + } + } + }; + + /** + * Bind a framebuffer + * + * @param {PIXI.Framebuffer} framebuffer + * @param {PIXI.Rectangle} [frame] frame, default is framebuffer size + */ + FramebufferSystem.prototype.bind = function bind (framebuffer, frame) + { + var ref = this; + var gl = ref.gl; + + if (framebuffer) + { + // TODO caching layer! + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID] || this.initFramebuffer(framebuffer); + + if (this.current !== framebuffer) + { + this.current = framebuffer; + gl.bindFramebuffer(gl.FRAMEBUFFER, fbo.framebuffer); + } + // make sure all textures are unbound.. + + // now check for updates... + if (fbo.dirtyId !== framebuffer.dirtyId) + { + fbo.dirtyId = framebuffer.dirtyId; + + if (fbo.dirtyFormat !== framebuffer.dirtyFormat) + { + fbo.dirtyFormat = framebuffer.dirtyFormat; + this.updateFramebuffer(framebuffer); + } + else if (fbo.dirtySize !== framebuffer.dirtySize) + { + fbo.dirtySize = framebuffer.dirtySize; + this.resizeFramebuffer(framebuffer); + } + } + + for (var i = 0; i < framebuffer.colorTextures.length; i++) + { + if (framebuffer.colorTextures[i].texturePart) + { + this.renderer.texture.unbind(framebuffer.colorTextures[i].texture); + } + else + { + this.renderer.texture.unbind(framebuffer.colorTextures[i]); + } + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.unbind(framebuffer.depthTexture); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, framebuffer.width, framebuffer.height); + } + } + else + { + if (this.current) + { + this.current = null; + gl.bindFramebuffer(gl.FRAMEBUFFER, null); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, this.renderer.width, this.renderer.height); + } + } + }; + + /** + * Set the WebGLRenderingContext's viewport. + * + * @param {Number} x - X position of viewport + * @param {Number} y - Y position of viewport + * @param {Number} width - Width of viewport + * @param {Number} height - Height of viewport + */ + FramebufferSystem.prototype.setViewport = function setViewport (x, y, width, height) + { + var v = this.viewport; + + if (v.width !== width || v.height !== height || v.x !== x || v.y !== y) + { + v.x = x; + v.y = y; + v.width = width; + v.height = height; + + this.gl.viewport(x, y, width, height); + } + }; + + /** + * Get the size of the current width and height. Returns object with `width` and `height` values. + * + * @member {object} + * @readonly + */ + prototypeAccessors.size.get = function () + { + if (this.current) + { + // TODO store temp + return { x: 0, y: 0, width: this.current.width, height: this.current.height }; + } + + return { x: 0, y: 0, width: this.renderer.width, height: this.renderer.height }; + }; + + /** + * Clear the color of the context + * + * @param {Number} r - Red value from 0 to 1 + * @param {Number} g - Green value from 0 to 1 + * @param {Number} b - Blue value from 0 to 1 + * @param {Number} a - Alpha value from 0 to 1 + */ + FramebufferSystem.prototype.clear = function clear (r, g, b, a) + { + var ref = this; + var gl = ref.gl; + + // TODO clear color can be set only one right? + gl.clearColor(r, g, b, a); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + }; + + /** + * Initialize framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.initFramebuffer = function initFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + // TODO - make this a class? + var fbo = { + framebuffer: gl.createFramebuffer(), + stencil: null, + dirtyId: 0, + dirtyFormat: 0, + dirtySize: 0, + }; + + framebuffer.glFramebuffers[this.CONTEXT_UID] = fbo; + + this.managedFramebuffers.push(framebuffer); + framebuffer.disposeRunner.add(this); + + return fbo; + }; + + /** + * Resize the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.resizeFramebuffer = function resizeFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (fbo.stencil) + { + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + } + + var colorTextures = framebuffer.colorTextures; + + for (var i = 0; i < colorTextures.length; i++) + { + this.renderer.texture.bind(colorTextures[i], 0); + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.bind(framebuffer.depthTexture, 0); + } + }; + + /** + * Update the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.updateFramebuffer = function updateFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + // bind the color texture + var colorTextures = framebuffer.colorTextures; + + var count = colorTextures.length; + + if (!gl.drawBuffers) + { + count = Math.min(count, 1); + } + + var activeTextures = []; + + for (var i = 0; i < count; i++) + { + var texture = framebuffer.colorTextures[i]; + + if (texture.texturePart) + { + this.renderer.texture.bind(texture.texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_CUBE_MAP_NEGATIVE_X + texture.side, + texture.texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + else + { + this.renderer.texture.bind(texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_2D, + texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + + activeTextures.push(gl.COLOR_ATTACHMENT0 + i); + } + + if (activeTextures.length > 1) + { + gl.drawBuffers(activeTextures); + } + + if (framebuffer.depthTexture) + { + var writeDepthTexture = this.writeDepthTexture; + + if (writeDepthTexture) + { + var depthTexture = framebuffer.depthTexture; + + this.renderer.texture.bind(depthTexture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.DEPTH_ATTACHMENT, + gl.TEXTURE_2D, + depthTexture._glTextures[this.CONTEXT_UID].texture, + 0); + } + } + + if (!fbo.stencil && (framebuffer.stencil || framebuffer.depth)) + { + fbo.stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + // TODO.. this is depth AND stencil? + if (!framebuffer.depthTexture) + { // you can't have both, so one should take priority if enabled + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, fbo.stencil); + } + } + }; + + /** + * Disposes framebuffer + * @param {PIXI.Framebuffer} framebuffer framebuffer that has to be disposed of + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeFramebuffer = function disposeFramebuffer (framebuffer, contextLost) + { + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + var gl = this.gl; + + if (!fbo) + { + return; + } + + delete framebuffer.glFramebuffers[this.CONTEXT_UID]; + + var index = this.managedFramebuffers.indexOf(framebuffer); + + if (index >= 0) + { + this.managedFramebuffers.splice(index, 1); + } + + framebuffer.disposeRunner.remove(this); + + if (!contextLost) + { + gl.deleteFramebuffer(fbo.framebuffer); + if (fbo.stencil) + { + gl.deleteRenderbuffer(fbo.stencil); + } + } + }; + + /** + * Disposes all framebuffers, but not textures bound to them + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeAll = function disposeAll (contextLost) + { + var list = this.managedFramebuffers; + + this.managedFramebuffers = []; + + for (var i = 0; i < list.length; i++) + { + this.disposeFramebuffer(list[i], contextLost); + } + }; + + /** + * Forcing creation of stencil buffer for current framebuffer, if it wasn't done before. + * Used by MaskSystem, when its time to use stencil mask for Graphics element. + * + * Its an alternative for public lazy `framebuffer.enableStencil`, in case we need stencil without rebind. + * + * @private + */ + FramebufferSystem.prototype.forceStencil = function forceStencil () + { + var framebuffer = this.current; + + if (!framebuffer) + { + return; + } + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (!fbo || fbo.stencil) + { + return; + } + framebuffer.enableStencil(); + + var w = framebuffer.width; + var h = framebuffer.height; + var gl = this.gl; + var stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, w, h); + + fbo.stencil = stencil; + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, stencil); + }; + + /** + * resets framebuffer stored state, binds screen framebuffer + * + * should be called before renderTexture reset() + */ + FramebufferSystem.prototype.reset = function reset () + { + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + }; + + Object.defineProperties( FramebufferSystem.prototype, prototypeAccessors ); + + return FramebufferSystem; +}(System)); + +var GLBuffer = function GLBuffer(buffer) +{ + this.buffer = buffer; + this.updateID = -1; + this.byteLength = -1; + this.refCount = 0; +}; + +var byteSizeMap$1 = { 5126: 4, 5123: 2, 5121: 1 }; + +/** + * System plugin to the renderer to manage geometry. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var GeometrySystem = /*@__PURE__*/(function (System) { + function GeometrySystem(renderer) + { + System.call(this, renderer); + + this._activeGeometry = null; + this._activeVao = null; + + /** + * `true` if we has `*_vertex_array_object` extension + * @member {boolean} + * @readonly + */ + this.hasVao = true; + + /** + * `true` if has `ANGLE_instanced_arrays` extension + * @member {boolean} + * @readonly + */ + this.hasInstance = true; + + /** + * `true` if support `gl.UNSIGNED_INT` in `gl.drawElements` or `gl.drawElementsInstanced` + * @member {boolean} + * @readonly + */ + this.canUseUInt32ElementIndex = false; + + /** + * A cache of currently bound buffer, + * contains only two members with keys ARRAY_BUFFER and ELEMENT_ARRAY_BUFFER + * @member {Object.} + * @readonly + */ + this.boundBuffers = {}; + + /** + * Cache for all geometries by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedGeometries = {}; + + /** + * Cache for all buffers by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedBuffers = {}; + } + + if ( System ) GeometrySystem.__proto__ = System; + GeometrySystem.prototype = Object.create( System && System.prototype ); + GeometrySystem.prototype.constructor = GeometrySystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + GeometrySystem.prototype.contextChange = function contextChange () + { + this.disposeAll(true); + + var gl = this.gl = this.renderer.gl; + var context = this.renderer.context; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + // webgl2 + if (!gl.createVertexArray) + { + // webgl 1! + var nativeVaoExtension = this.renderer.context.extensions.vertexArrayObject; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeVaoExtension = null; + } + + if (nativeVaoExtension) + { + gl.createVertexArray = function () { return nativeVaoExtension.createVertexArrayOES(); }; + + gl.bindVertexArray = function (vao) { return nativeVaoExtension.bindVertexArrayOES(vao); }; + + gl.deleteVertexArray = function (vao) { return nativeVaoExtension.deleteVertexArrayOES(vao); }; + } + else + { + this.hasVao = false; + gl.createVertexArray = function () { + // empty + }; + + gl.bindVertexArray = function () { + // empty + }; + + gl.deleteVertexArray = function () { + // empty + }; + } + } + + if (!gl.vertexAttribDivisor) + { + var instanceExt = gl.getExtension('ANGLE_instanced_arrays'); + + if (instanceExt) + { + gl.vertexAttribDivisor = function (a, b) { return instanceExt.vertexAttribDivisorANGLE(a, b); }; + + gl.drawElementsInstanced = function (a, b, c, d, e) { return instanceExt.drawElementsInstancedANGLE(a, b, c, d, e); }; + + gl.drawArraysInstanced = function (a, b, c, d) { return instanceExt.drawArraysInstancedANGLE(a, b, c, d); }; + } + else + { + this.hasInstance = false; + } + } + + this.canUseUInt32ElementIndex = context.webGLVersion === 2 || !!context.extensions.uint32ElementIndex; + }; + + /** + * Binds geometry so that is can be drawn. Creating a Vao if required + * + * @param {PIXI.Geometry} geometry instance of geometry to bind + * @param {PIXI.Shader} [shader] instance of shader to use vao for + */ + GeometrySystem.prototype.bind = function bind (geometry, shader) + { + shader = shader || this.renderer.shader.shader; + + var ref = this; + var gl = ref.gl; + + // not sure the best way to address this.. + // currently different shaders require different VAOs for the same geometry + // Still mulling over the best way to solve this one.. + // will likely need to modify the shader attribute locations at run time! + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + if (!vaos) + { + this.managedGeometries[geometry.id] = geometry; + geometry.disposeRunner.add(this); + geometry.glVertexArrayObjects[this.CONTEXT_UID] = vaos = {}; + } + + var vao = vaos[shader.program.id] || this.initGeometryVao(geometry, shader.program); + + this._activeGeometry = geometry; + + if (this._activeVao !== vao) + { + this._activeVao = vao; + + if (this.hasVao) + { + gl.bindVertexArray(vao); + } + else + { + this.activateVao(geometry, shader.program); + } + } + + // TODO - optimise later! + // don't need to loop through if nothing changed! + // maybe look to add an 'autoupdate' to geometry? + this.updateBuffers(); + }; + + /** + * Reset and unbind any active VAO and geometry + */ + GeometrySystem.prototype.reset = function reset () + { + this.unbind(); + }; + + /** + * Update buffers + * @protected + */ + GeometrySystem.prototype.updateBuffers = function updateBuffers () + { + var geometry = this._activeGeometry; + var ref = this; + var gl = ref.gl; + + for (var i = 0; i < geometry.buffers.length; i++) + { + var buffer = geometry.buffers[i]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + + if (buffer._updateID !== glBuffer.updateID) + { + glBuffer.updateID = buffer._updateID; + + // TODO can cache this on buffer! maybe added a getter / setter? + var type = buffer.index ? gl.ELEMENT_ARRAY_BUFFER : gl.ARRAY_BUFFER; + + // TODO this could change if the VAO changes... + // need to come up with a better way to cache.. + // if (this.boundBuffers[type] !== glBuffer) + // { + // this.boundBuffers[type] = glBuffer; + gl.bindBuffer(type, glBuffer.buffer); + // } + + this._boundBuffer = glBuffer; + + if (glBuffer.byteLength >= buffer.data.byteLength) + { + // offset is always zero for now! + gl.bufferSubData(type, 0, buffer.data); + } + else + { + var drawType = buffer.static ? gl.STATIC_DRAW : gl.DYNAMIC_DRAW; + + glBuffer.byteLength = buffer.data.byteLength; + gl.bufferData(type, buffer.data, drawType); + } + } + } + }; + + /** + * Check compability between a geometry and a program + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Program instance + */ + GeometrySystem.prototype.checkCompatibility = function checkCompatibility (geometry, program) + { + // geometry must have at least all the attributes that the shader requires. + var geometryAttributes = geometry.attributes; + var shaderAttributes = program.attributeData; + + for (var j in shaderAttributes) + { + if (!geometryAttributes[j]) + { + throw new Error(("shader and geometry incompatible, geometry missing the \"" + j + "\" attribute")); + } + } + }; + + /** + * Takes a geometry and program and generates a unique signature for them. + * + * @param {PIXI.Geometry} geometry to get signature from + * @param {PIXI.Program} program to test geometry against + * @returns {String} Unique signature of the geometry and program + * @protected + */ + GeometrySystem.prototype.getSignature = function getSignature (geometry, program) + { + var attribs = geometry.attributes; + var shaderAttributes = program.attributeData; + + var strings = ['g', geometry.id]; + + for (var i in attribs) + { + if (shaderAttributes[i]) + { + strings.push(i); + } + } + + return strings.join('-'); + }; + + /** + * Creates or gets Vao with the same structure as the geometry and stores it on the geometry. + * If vao is created, it is bound automatically. + * + * @protected + * @param {PIXI.Geometry} geometry - Instance of geometry to to generate Vao for + * @param {PIXI.Program} program - Instance of program + */ + GeometrySystem.prototype.initGeometryVao = function initGeometryVao (geometry, program) + { + this.checkCompatibility(geometry, program); + + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + + var signature = this.getSignature(geometry, program); + + var vaoObjectHash = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + var vao = vaoObjectHash[signature]; + + if (vao) + { + // this will give us easy access to the vao + vaoObjectHash[program.id] = vao; + + return vao; + } + + var buffers = geometry.buffers; + var attributes = geometry.attributes; + var tempStride = {}; + var tempStart = {}; + + for (var j in buffers) + { + tempStride[j] = 0; + tempStart[j] = 0; + } + + for (var j$1 in attributes) + { + if (!attributes[j$1].size && program.attributeData[j$1]) + { + attributes[j$1].size = program.attributeData[j$1].size; + } + else if (!attributes[j$1].size) + { + console.warn(("PIXI Geometry attribute '" + j$1 + "' size cannot be determined (likely the bound shader does not have the attribute)")); // eslint-disable-line + } + + tempStride[attributes[j$1].buffer] += attributes[j$1].size * byteSizeMap$1[attributes[j$1].type]; + } + + for (var j$2 in attributes) + { + var attribute = attributes[j$2]; + var attribSize = attribute.size; + + if (attribute.stride === undefined) + { + if (tempStride[attribute.buffer] === attribSize * byteSizeMap$1[attribute.type]) + { + attribute.stride = 0; + } + else + { + attribute.stride = tempStride[attribute.buffer]; + } + } + + if (attribute.start === undefined) + { + attribute.start = tempStart[attribute.buffer]; + + tempStart[attribute.buffer] += attribSize * byteSizeMap$1[attribute.type]; + } + } + + vao = gl.createVertexArray(); + + gl.bindVertexArray(vao); + + // first update - and create the buffers! + // only create a gl buffer if it actually gets + for (var i = 0; i < buffers.length; i++) + { + var buffer = buffers[i]; + + if (!buffer._glBuffers[CONTEXT_UID]) + { + buffer._glBuffers[CONTEXT_UID] = new GLBuffer(gl.createBuffer()); + this.managedBuffers[buffer.id] = buffer; + buffer.disposeRunner.add(this); + } + + buffer._glBuffers[CONTEXT_UID].refCount++; + } + + // TODO - maybe make this a data object? + // lets wait to see if we need to first! + + this.activateVao(geometry, program); + + this._activeVao = vao; + + // add it to the cache! + vaoObjectHash[program.id] = vao; + vaoObjectHash[signature] = vao; + + return vao; + }; + + /** + * Disposes buffer + * @param {PIXI.Buffer} buffer buffer with data + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeBuffer = function disposeBuffer (buffer, contextLost) + { + if (!this.managedBuffers[buffer.id]) + { + return; + } + + delete this.managedBuffers[buffer.id]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + var gl = this.gl; + + buffer.disposeRunner.remove(this); + + if (!glBuffer) + { + return; + } + + if (!contextLost) + { + gl.deleteBuffer(glBuffer.buffer); + } + + delete buffer._glBuffers[this.CONTEXT_UID]; + }; + + /** + * Disposes geometry + * @param {PIXI.Geometry} geometry Geometry with buffers. Only VAO will be disposed + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeGeometry = function disposeGeometry (geometry, contextLost) + { + if (!this.managedGeometries[geometry.id]) + { + return; + } + + delete this.managedGeometries[geometry.id]; + + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + var gl = this.gl; + var buffers = geometry.buffers; + + geometry.disposeRunner.remove(this); + + if (!vaos) + { + return; + } + + for (var i = 0; i < buffers.length; i++) + { + var buf = buffers[i]._glBuffers[this.CONTEXT_UID]; + + buf.refCount--; + if (buf.refCount === 0 && !contextLost) + { + this.disposeBuffer(buffers[i], contextLost); + } + } + + if (!contextLost) + { + for (var vaoId in vaos) + { + // delete only signatures, everything else are copies + if (vaoId[0] === 'g') + { + var vao = vaos[vaoId]; + + if (this._activeVao === vao) + { + this.unbind(); + } + gl.deleteVertexArray(vao); + } + } + } + + delete geometry.glVertexArrayObjects[this.CONTEXT_UID]; + }; + + /** + * dispose all WebGL resources of all managed geometries and buffers + * @param {boolean} [contextLost=false] If context was lost, we suppress `gl.delete` calls + */ + GeometrySystem.prototype.disposeAll = function disposeAll (contextLost) + { + var all = Object.keys(this.managedGeometries); + + for (var i = 0; i < all.length; i++) + { + this.disposeGeometry(this.managedGeometries[all[i]], contextLost); + } + all = Object.keys(this.managedBuffers); + for (var i$1 = 0; i$1 < all.length; i$1++) + { + this.disposeBuffer(this.managedBuffers[all[i$1]], contextLost); + } + }; + + /** + * Activate vertex array object + * + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Shader program instance + */ + GeometrySystem.prototype.activateVao = function activateVao (geometry, program) + { + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + var buffers = geometry.buffers; + var attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + // first update the index buffer if we have one.. + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, geometry.indexBuffer._glBuffers[CONTEXT_UID].buffer); + } + + var lastBuffer = null; + + // add a new one! + for (var j in attributes) + { + var attribute = attributes[j]; + var buffer = buffers[attribute.buffer]; + var glBuffer = buffer._glBuffers[CONTEXT_UID]; + + if (program.attributeData[j]) + { + if (lastBuffer !== glBuffer) + { + gl.bindBuffer(gl.ARRAY_BUFFER, glBuffer.buffer); + + lastBuffer = glBuffer; + } + + var location = program.attributeData[j].location; + + // TODO introduce state again + // we can optimise this for older devices that have no VAOs + gl.enableVertexAttribArray(location); + + gl.vertexAttribPointer(location, + attribute.size, + attribute.type || gl.FLOAT, + attribute.normalized, + attribute.stride, + attribute.start); + + if (attribute.instance) + { + // TODO calculate instance count based of this... + if (this.hasInstance) + { + gl.vertexAttribDivisor(location, 1); + } + else + { + throw new Error('geometry error, GPU Instancing is not supported on this device'); + } + } + } + } + }; + + /** + * Draw the geometry + * + * @param {Number} type - the type primitive to render + * @param {Number} [size] - the number of elements to be rendered + * @param {Number} [start] - Starting index + * @param {Number} [instanceCount] - the number of instances of the set of elements to execute + */ + GeometrySystem.prototype.draw = function draw (type, size, start, instanceCount) + { + var ref = this; + var gl = ref.gl; + var geometry = this._activeGeometry; + + // TODO.. this should not change so maybe cache the function? + + if (geometry.indexBuffer) + { + var byteSize = geometry.indexBuffer.data.BYTES_PER_ELEMENT; + var glType = byteSize === 2 ? gl.UNSIGNED_SHORT : gl.UNSIGNED_INT; + + if (byteSize === 2 || (byteSize === 4 && this.canUseUInt32ElementIndex)) + { + if (geometry.instanced) + { + /* eslint-disable max-len */ + gl.drawElementsInstanced(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize, instanceCount || 1); + /* eslint-enable max-len */ + } + else + { + /* eslint-disable max-len */ + gl.drawElements(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize); + /* eslint-enable max-len */ + } + } + else + { + console.warn('unsupported index buffer type: uint32'); + } + } + else if (geometry.instanced) + { + // TODO need a better way to calculate size.. + gl.drawArraysInstanced(type, start, size || geometry.getSize(), instanceCount || 1); + } + else + { + gl.drawArrays(type, start, size || geometry.getSize()); + } + + return this; + }; + + /** + * Unbind/reset everything + * @protected + */ + GeometrySystem.prototype.unbind = function unbind () + { + this.gl.bindVertexArray(null); + this._activeVao = null; + this._activeGeometry = null; + }; + + return GeometrySystem; +}(System)); + +/** + * @method compileProgram + * @private + * @memberof PIXI.glCore.shader + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @param fragmentSrc {string|string[]} The fragment shader source as an array of strings. + * @param attributeLocations {Object} An attribute location map that lets you manually set the attribute locations + * @return {WebGLProgram} the shader program + */ +function compileProgram(gl, vertexSrc, fragmentSrc, attributeLocations) +{ + var glVertShader = compileShader(gl, gl.VERTEX_SHADER, vertexSrc); + var glFragShader = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc); + + var program = gl.createProgram(); + + gl.attachShader(program, glVertShader); + gl.attachShader(program, glFragShader); + + // optionally, set the attributes manually for the program rather than letting WebGL decide.. + if (attributeLocations) + { + for (var i in attributeLocations) + { + gl.bindAttribLocation(program, attributeLocations[i], i); + } + } + + gl.linkProgram(program); + + // if linking fails, then log and cleanup + if (!gl.getProgramParameter(program, gl.LINK_STATUS)) + { + console.error('Pixi.js Error: Could not initialize shader.'); + console.error('gl.VALIDATE_STATUS', gl.getProgramParameter(program, gl.VALIDATE_STATUS)); + console.error('gl.getError()', gl.getError()); + + // if there is a program info log, log it + if (gl.getProgramInfoLog(program) !== '') + { + console.warn('Pixi.js Warning: gl.getProgramInfoLog()', gl.getProgramInfoLog(program)); + } + + gl.deleteProgram(program); + program = null; + } + + // clean up some shaders + gl.deleteShader(glVertShader); + gl.deleteShader(glFragShader); + + return program; +} + +/** + * @private + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param type {Number} the type, can be either VERTEX_SHADER or FRAGMENT_SHADER + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @return {WebGLShader} the shader + */ +function compileShader(gl, type, src) +{ + var shader = gl.createShader(type); + + gl.shaderSource(shader, src); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + console.warn(src); + console.error(gl.getShaderInfoLog(shader)); + + return null; + } + + return shader; +} + +/** + * @method defaultValue + * @memberof PIXI.glCore.shader + * @param type {String} Type of value + * @param size {Number} + * @private + */ +function defaultValue(type, size) +{ + switch (type) + { + case 'float': + return 0; + + case 'vec2': + return new Float32Array(2 * size); + + case 'vec3': + return new Float32Array(3 * size); + + case 'vec4': + return new Float32Array(4 * size); + + case 'int': + case 'sampler2D': + case 'sampler2DArray': + return 0; + + case 'ivec2': + return new Int32Array(2 * size); + + case 'ivec3': + return new Int32Array(3 * size); + + case 'ivec4': + return new Int32Array(4 * size); + + case 'bool': + return false; + + case 'bvec2': + + return booleanArray(2 * size); + + case 'bvec3': + return booleanArray(3 * size); + + case 'bvec4': + return booleanArray(4 * size); + + case 'mat2': + return new Float32Array([1, 0, + 0, 1]); + + case 'mat3': + return new Float32Array([1, 0, 0, + 0, 1, 0, + 0, 0, 1]); + + case 'mat4': + return new Float32Array([1, 0, 0, 0, + 0, 1, 0, 0, + 0, 0, 1, 0, + 0, 0, 0, 1]); + } + + return null; +} + +function booleanArray(size) +{ + var array = new Array(size); + + for (var i = 0; i < array.length; i++) + { + array[i] = false; + } + + return array; +} + +var unknownContext = {}; +var context = unknownContext; + +/** + * returns a little WebGL context to use for program inspection. + * + * @static + * @private + * @returns {webGL-context} a gl context to test with + */ +function getTestContext() +{ + if (context === unknownContext || context.isContextLost()) + { + var canvas = document.createElement('canvas'); + + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', {}); + } + + if (!gl) + { + gl = canvas.getContext('webgl', {}) + || canvas.getContext('experimental-webgl', {}); + + if (!gl) + { + // fail, not able to get a context + gl = null; + } + else + { + // for shader testing.. + gl.getExtension('WEBGL_draw_buffers'); + } + } + + context = gl; + } + + return context; +} + +var maxFragmentPrecision; + +function getMaxFragmentPrecision() +{ + if (!maxFragmentPrecision) + { + maxFragmentPrecision = PRECISION.MEDIUM; + var gl = getTestContext(); + + if (gl) + { + if (gl.getShaderPrecisionFormat) + { + var shaderFragment = gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT); + + maxFragmentPrecision = shaderFragment.precision ? PRECISION.HIGH : PRECISION.MEDIUM; + } + } + } + + return maxFragmentPrecision; +} + +/** + * Sets the float precision on the shader, ensuring the device supports the request precision. + * If the precision is already present, it just ensures that the device is able to handle it. + * + * @private + * @param {string} src - The shader source + * @param {string} requestedPrecision - The request float precision of the shader. Options are 'lowp', 'mediump' or 'highp'. + * @param {string} maxSupportedPrecision - The maximum precision the shader supports. + * + * @return {string} modified shader source + */ +function setPrecision(src, requestedPrecision, maxSupportedPrecision) +{ + if (src.substring(0, 9) !== 'precision') + { + // no precision supplied, so PixiJS will add the requested level. + var precision = requestedPrecision; + + // If highp is requested but not supported, downgrade precision to a level all devices support. + if (requestedPrecision === PRECISION.HIGH && maxSupportedPrecision !== PRECISION.HIGH) + { + precision = PRECISION.MEDIUM; + } + + return ("precision " + precision + " float;\n" + src); + } + else if (maxSupportedPrecision !== PRECISION.HIGH && src.substring(0, 15) === 'precision highp') + { + // precision was supplied, but at a level this device does not support, so downgrading to mediump. + return src.replace('precision highp', 'precision mediump'); + } + + return src; +} + +var GLSL_TO_SIZE = { + float: 1, + vec2: 2, + vec3: 3, + vec4: 4, + + int: 1, + ivec2: 2, + ivec3: 3, + ivec4: 4, + + bool: 1, + bvec2: 2, + bvec3: 3, + bvec4: 4, + + mat2: 4, + mat3: 9, + mat4: 16, + + sampler2D: 1, +}; + +/** + * @private + * @method mapSize + * @memberof PIXI.glCore.shader + * @param type {String} + * @return {Number} + */ +function mapSize(type) +{ + return GLSL_TO_SIZE[type]; +} + +var GL_TABLE = null; + +var GL_TO_GLSL_TYPES = { + FLOAT: 'float', + FLOAT_VEC2: 'vec2', + FLOAT_VEC3: 'vec3', + FLOAT_VEC4: 'vec4', + + INT: 'int', + INT_VEC2: 'ivec2', + INT_VEC3: 'ivec3', + INT_VEC4: 'ivec4', + + BOOL: 'bool', + BOOL_VEC2: 'bvec2', + BOOL_VEC3: 'bvec3', + BOOL_VEC4: 'bvec4', + + FLOAT_MAT2: 'mat2', + FLOAT_MAT3: 'mat3', + FLOAT_MAT4: 'mat4', + + SAMPLER_2D: 'sampler2D', + SAMPLER_CUBE: 'samplerCube', + SAMPLER_2D_ARRAY: 'sampler2DArray', +}; + +function mapType(gl, type) +{ + if (!GL_TABLE) + { + var typeNames = Object.keys(GL_TO_GLSL_TYPES); + + GL_TABLE = {}; + + for (var i = 0; i < typeNames.length; ++i) + { + var tn = typeNames[i]; + + GL_TABLE[gl[tn]] = GL_TO_GLSL_TYPES[tn]; + } + } + + return GL_TABLE[type]; +} + +// cv = CachedValue +// v = value +// ud = uniformData +// uv = uniformValue +// l = location +var GLSL_TO_SINGLE_SETTERS_CACHED = { + + float: "\n if(cv !== v)\n {\n cv.v = v;\n gl.uniform1f(location, v)\n }", + + vec2: "\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(location, v[0], v[1])\n }", + + vec3: "\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n\n gl.uniform3f(location, v[0], v[1], v[2])\n }", + + vec4: 'gl.uniform4f(location, v[0], v[1], v[2], v[3])', + + int: 'gl.uniform1i(location, v)', + ivec2: 'gl.uniform2i(location, v[0], v[1])', + ivec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + ivec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + bool: 'gl.uniform1i(location, v)', + bvec2: 'gl.uniform2i(location, v[0], v[1])', + bvec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + bvec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + mat2: 'gl.uniformMatrix2fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat4: 'gl.uniformMatrix4fv(location, false, v)', + + sampler2D: 'gl.uniform1i(location, v)', + samplerCube: 'gl.uniform1i(location, v)', + sampler2DArray: 'gl.uniform1i(location, v)', +}; + +var GLSL_TO_ARRAY_SETTERS = { + + float: "gl.uniform1fv(location, v)", + + vec2: "gl.uniform2fv(location, v)", + vec3: "gl.uniform3fv(location, v)", + vec4: 'gl.uniform4fv(location, v)', + + mat4: 'gl.uniformMatrix4fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat2: 'gl.uniformMatrix2fv(location, false, v)', + + int: 'gl.uniform1iv(location, v)', + ivec2: 'gl.uniform2iv(location, v)', + ivec3: 'gl.uniform3iv(location, v)', + ivec4: 'gl.uniform4iv(location, v)', + + bool: 'gl.uniform1iv(location, v)', + bvec2: 'gl.uniform2iv(location, v)', + bvec3: 'gl.uniform3iv(location, v)', + bvec4: 'gl.uniform4iv(location, v)', + + sampler2D: 'gl.uniform1iv(location, v)', + samplerCube: 'gl.uniform1iv(location, v)', + sampler2DArray: 'gl.uniform1iv(location, v)', +}; + +function generateUniformsSync(group, uniformData) +{ + var textureCount = 0; + var func = "var v = null;\n var cv = null\n var gl = renderer.gl"; + + for (var i in group.uniforms) + { + var data = uniformData[i]; + + if (!data) + { + if (group.uniforms[i].group) + { + func += "\n renderer.shader.syncUniformGroup(uv." + i + ");\n "; + } + + continue; + } + + // TODO && uniformData[i].value !== 0 <-- do we still need this? + if (data.type === 'float' && data.size === 1) + { + func += "\n if(uv." + i + " !== ud." + i + ".value)\n {\n ud." + i + ".value = uv." + i + "\n gl.uniform1f(ud." + i + ".location, uv." + i + ")\n }\n"; + } + /* eslint-disable max-len */ + else if ((data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray) + /* eslint-disable max-len */ + { + func += "\n renderer.texture.bind(uv." + i + ", " + textureCount + ");\n\n if(ud." + i + ".value !== " + textureCount + ")\n {\n ud." + i + ".value = " + textureCount + ";\n gl.uniform1i(ud." + i + ".location, " + textureCount + ");\n; // eslint-disable-line max-len\n }\n"; + + textureCount++; + } + else if (data.type === 'mat3' && data.size === 1) + { + if (group.uniforms[i].a !== undefined) + { + // TODO and some smart caching dirty ids here! + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ".toArray(true));\n \n"; + } + else + { + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ");\n \n"; + } + } + else if (data.type === 'vec2' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].x !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n gl.uniform2f(ud." + i + ".location, v.x, v.y);\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(ud." + i + ".location, v[0], v[1]);\n }\n \n"; + } + } + else if (data.type === 'vec4' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].width !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y || cv[2] !== v.width || cv[3] !== v.height)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n cv[2] = v.width;\n cv[3] = v.height;\n gl.uniform4f(ud." + i + ".location, v.x, v.y, v.width, v.height)\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2] || cv[3] !== v[3])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n cv[3] = v[3];\n\n gl.uniform4f(ud." + i + ".location, v[0], v[1], v[2], v[3])\n }\n \n"; + } + } + else + { + var templateType = (data.size === 1) ? GLSL_TO_SINGLE_SETTERS_CACHED : GLSL_TO_ARRAY_SETTERS; + + var template = templateType[data.type].replace('location', ("ud." + i + ".location")); + + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n " + template + ";\n"; + } + } + + return new Function('ud', 'uv', 'renderer', func); // eslint-disable-line no-new-func +} + +var fragTemplate = [ + 'precision mediump float;', + 'void main(void){', + 'float test = 0.1;', + '%forloop%', + 'gl_FragColor = vec4(0.0);', + '}' ].join('\n'); + +function checkMaxIfStatementsInShader(maxIfs, gl) +{ + if (maxIfs === 0) + { + throw new Error('Invalid value of `0` passed to `checkMaxIfStatementsInShader`'); + } + + var shader = gl.createShader(gl.FRAGMENT_SHADER); + + while (true) // eslint-disable-line no-constant-condition + { + var fragmentSrc = fragTemplate.replace(/%forloop%/gi, generateIfTestSrc(maxIfs)); + + gl.shaderSource(shader, fragmentSrc); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + maxIfs = (maxIfs / 2) | 0; + } + else + { + // valid! + break; + } + } + + return maxIfs; +} + +function generateIfTestSrc(maxIfs) +{ + var src = ''; + + for (var i = 0; i < maxIfs; ++i) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxIfs - 1) + { + src += "if(test == " + i + ".0){}"; + } + } + + return src; +} + +// Cache the result to prevent running this over and over +var unsafeEval; + +/** + * Not all platforms allow to generate function code (e.g., `new Function`). + * this provides the platform-level detection. + * + * @private + * @returns {boolean} + */ +function unsafeEvalSupported() +{ + if (typeof unsafeEval === 'boolean') + { + return unsafeEval; + } + + try + { + /* eslint-disable no-new-func */ + var func = new Function('param1', 'param2', 'param3', 'return param1[param2] === param3;'); + /* eslint-enable no-new-func */ + + unsafeEval = func({ a: 'b' }, 'a', 'b') === true; + } + catch (e) + { + unsafeEval = false; + } + + return unsafeEval; +} + +var defaultFragment = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor *= texture2D(uSampler, vTextureCoord);\n}"; + +var defaultVertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n vTextureCoord = aTextureCoord;\n}\n"; + +// import * as from '../systems/shader/shader'; + +var UID$3 = 0; + +var nameCache = {}; + +/** + * Helper class to create a shader program. + * + * @class + * @memberof PIXI + */ +var Program = function Program(vertexSrc, fragmentSrc, name) +{ + if ( name === void 0 ) name = 'pixi-shader'; + + this.id = UID$3++; + + /** + * The vertex shader. + * + * @member {string} + */ + this.vertexSrc = vertexSrc || Program.defaultVertexSrc; + + /** + * The fragment shader. + * + * @member {string} + */ + this.fragmentSrc = fragmentSrc || Program.defaultFragmentSrc; + + this.vertexSrc = this.vertexSrc.trim(); + this.fragmentSrc = this.fragmentSrc.trim(); + + if (this.vertexSrc.substring(0, 8) !== '#version') + { + name = name.replace(/\s+/g, '-'); + + if (nameCache[name]) + { + nameCache[name]++; + name += "-" + (nameCache[name]); + } + else + { + nameCache[name] = 1; + } + + this.vertexSrc = "#define SHADER_NAME " + name + "\n" + (this.vertexSrc); + this.fragmentSrc = "#define SHADER_NAME " + name + "\n" + (this.fragmentSrc); + + this.vertexSrc = setPrecision(this.vertexSrc, settings.PRECISION_VERTEX, PRECISION.HIGH); + this.fragmentSrc = setPrecision(this.fragmentSrc, settings.PRECISION_FRAGMENT, getMaxFragmentPrecision()); + } + + // currently this does not extract structs only default types + this.extractData(this.vertexSrc, this.fragmentSrc); + + // this is where we store shader references.. + this.glPrograms = {}; + + this.syncUniforms = null; +}; + +var staticAccessors$3 = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + +/** + * Extracts the data for a buy creating a small test program + * or reading the src directly. + * @protected + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + */ +Program.prototype.extractData = function extractData (vertexSrc, fragmentSrc) +{ + var gl = getTestContext(); + + if (gl) + { + var program = compileProgram(gl, vertexSrc, fragmentSrc); + + this.attributeData = this.getAttributeData(program, gl); + this.uniformData = this.getUniformData(program, gl); + + gl.deleteProgram(program); + } + else + { + this.uniformData = {}; + this.attributeData = {}; + } +}; + +/** + * returns the attribute data from the program + * @private + * + * @param {WebGLProgram} [program] - the WebGL program + * @param {WebGLRenderingContext} [gl] - the WebGL context + * + * @returns {object} the attribute data for this program + */ +Program.prototype.getAttributeData = function getAttributeData (program, gl) +{ + var attributes = {}; + var attributesArray = []; + + var totalAttributes = gl.getProgramParameter(program, gl.ACTIVE_ATTRIBUTES); + + for (var i = 0; i < totalAttributes; i++) + { + var attribData = gl.getActiveAttrib(program, i); + var type = mapType(gl, attribData.type); + + /*eslint-disable */ + var data = { + type: type, + name: attribData.name, + size: mapSize(type), + location: 0, + }; + /* eslint-enable */ + + attributes[attribData.name] = data; + attributesArray.push(data); + } + + attributesArray.sort(function (a, b) { return (a.name > b.name) ? 1 : -1; }); // eslint-disable-line no-confusing-arrow + + for (var i$1 = 0; i$1 < attributesArray.length; i$1++) + { + attributesArray[i$1].location = i$1; + } + + return attributes; +}; + +/** + * returns the uniform data from the program + * @private + * + * @param {webGL-program} [program] - the webgl program + * @param {context} [gl] - the WebGL context + * + * @returns {object} the uniform data for this program + */ +Program.prototype.getUniformData = function getUniformData (program, gl) +{ + var uniforms = {}; + + var totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS); + + // TODO expose this as a prop? + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + + for (var i = 0; i < totalUniforms; i++) + { + var uniformData = gl.getActiveUniform(program, i); + var name = uniformData.name.replace(/\[.*?\]/, ''); + + var isArray = uniformData.name.match(/\[.*?\]/, ''); + var type = mapType(gl, uniformData.type); + + /*eslint-disable */ + uniforms[name] = { + type: type, + size: uniformData.size, + isArray:isArray, + value: defaultValue(type, uniformData.size), + }; + /* eslint-enable */ + } + + return uniforms; +}; + +/** + * The default vertex shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultVertexSrc.get = function () +{ + return defaultVertex; +}; + +/** + * The default fragment shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultFragmentSrc.get = function () +{ + return defaultFragment; +}; + +/** + * A short hand function to create a program based of a vertex and fragment shader + * this method will also check to see if there is a cached program. + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Program} an shiny new Pixi shader! + */ +Program.from = function from (vertexSrc, fragmentSrc, name) +{ + var key = vertexSrc + fragmentSrc; + + var program = ProgramCache[key]; + + if (!program) + { + ProgramCache[key] = program = new Program(vertexSrc, fragmentSrc, name); + } + + return program; +}; + +Object.defineProperties( Program, staticAccessors$3 ); + +/** + * A helper class for shaders + * + * @class + * @memberof PIXI + */ +var Shader = function Shader(program, uniforms) +{ + /** + * Program that the shader uses + * + * @member {PIXI.Program} + */ + this.program = program; + + // lets see whats been passed in + // uniforms should be converted to a uniform group + if (uniforms) + { + if (uniforms instanceof UniformGroup) + { + this.uniformGroup = uniforms; + } + else + { + this.uniformGroup = new UniformGroup(uniforms); + } + } + else + { + this.uniformGroup = new UniformGroup({}); + } + + // time to build some getters and setters! + // I guess down the line this could sort of generate an instruction list rather than use dirty ids? + // does the trick for now though! + for (var i in program.uniformData) + { + if (this.uniformGroup.uniforms[i] instanceof Array) + { + this.uniformGroup.uniforms[i] = new Float32Array(this.uniformGroup.uniforms[i]); + } + } +}; + +var prototypeAccessors$2$1 = { uniforms: { configurable: true } }; + +// TODO move to shader system.. +Shader.prototype.checkUniformExists = function checkUniformExists (name, group) +{ + if (group.uniforms[name]) + { + return true; + } + + for (var i in group.uniforms) + { + var uniform = group.uniforms[i]; + + if (uniform.group) + { + if (this.checkUniformExists(name, uniform)) + { + return true; + } + } + } + + return false; +}; + +Shader.prototype.destroy = function destroy () +{ + // usage count on programs? + // remove if not used! + this.uniformGroup = null; +}; + +/** + * Shader uniform values, shortcut for `uniformGroup.uniforms` + * @readonly + * @member {object} + */ +prototypeAccessors$2$1.uniforms.get = function () +{ + return this.uniformGroup.uniforms; +}; + +/** + * A short hand function to create a shader based of a vertex and fragment shader + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Shader} an shiny new Pixi shader! + */ +Shader.from = function from (vertexSrc, fragmentSrc, uniforms) +{ + var program = Program.from(vertexSrc, fragmentSrc); + + return new Shader(program, uniforms); +}; + +Object.defineProperties( Shader.prototype, prototypeAccessors$2$1 ); + +/* eslint-disable max-len */ + +var BLEND = 0; +var OFFSET = 1; +var CULLING = 2; +var DEPTH_TEST = 3; +var WINDING = 4; + +/** + * This is a WebGL state, and is is passed The WebGL StateManager. + * + * Each mesh rendered may require WebGL to be in a different state. + * For example you may want different blend mode or to enable polygon offsets + * + * @class + * @memberof PIXI + */ +var State = function State() +{ + this.data = 0; + + this.blendMode = BLEND_MODES.NORMAL; + this.polygonOffset = 0; + + this.blend = true; + // this.depthTest = true; +}; + +var prototypeAccessors$3$1 = { blend: { configurable: true },offsets: { configurable: true },culling: { configurable: true },depthTest: { configurable: true },clockwiseFrontFace: { configurable: true },blendMode: { configurable: true },polygonOffset: { configurable: true } }; + +/** + * Activates blending of the computed fragment color values + * + * @member {boolean} + */ +prototypeAccessors$3$1.blend.get = function () +{ + return !!(this.data & (1 << BLEND)); +}; + +prototypeAccessors$3$1.blend.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << BLEND)) !== value) + { + this.data ^= (1 << BLEND); + } +}; + +/** + * Activates adding an offset to depth values of polygon's fragments + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.offsets.get = function () +{ + return !!(this.data & (1 << OFFSET)); +}; + +prototypeAccessors$3$1.offsets.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << OFFSET)) !== value) + { + this.data ^= (1 << OFFSET); + } +}; + +/** + * Activates culling of polygons. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.culling.get = function () +{ + return !!(this.data & (1 << CULLING)); +}; + +prototypeAccessors$3$1.culling.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << CULLING)) !== value) + { + this.data ^= (1 << CULLING); + } +}; + +/** + * Activates depth comparisons and updates to the depth buffer. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.depthTest.get = function () +{ + return !!(this.data & (1 << DEPTH_TEST)); +}; + +prototypeAccessors$3$1.depthTest.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << DEPTH_TEST)) !== value) + { + this.data ^= (1 << DEPTH_TEST); + } +}; + +/** + * Specifies whether or not front or back-facing polygons can be culled. + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.clockwiseFrontFace.get = function () +{ + return !!(this.data & (1 << WINDING)); +}; + +prototypeAccessors$3$1.clockwiseFrontFace.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << WINDING)) !== value) + { + this.data ^= (1 << WINDING); + } +}; + +/** + * The blend mode to be applied when this state is set. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * Setting this mode to anything other than NO_BLEND will automatically switch blending on. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ +prototypeAccessors$3$1.blendMode.get = function () +{ + return this._blendMode; +}; + +prototypeAccessors$3$1.blendMode.set = function (value) // eslint-disable-line require-jsdoc +{ + this.blend = (value !== BLEND_MODES.NONE); + this._blendMode = value; +}; + +/** + * The polygon offset. Setting this property to anything other than 0 will automatically enable polygon offset fill. + * + * @member {number} + * @default 0 + */ +prototypeAccessors$3$1.polygonOffset.get = function () +{ + return this._polygonOffset; +}; + +prototypeAccessors$3$1.polygonOffset.set = function (value) // eslint-disable-line require-jsdoc +{ + this.offsets = !!value; + this._polygonOffset = value; +}; + +State.for2d = function for2d () +{ + var state = new State(); + + state.depthTest = false; + state.blend = true; + + return state; +}; + +Object.defineProperties( State.prototype, prototypeAccessors$3$1 ); + +var defaultVertex$1 = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +var defaultFragment$1 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor = texture2D(uSampler, vTextureCoord);\n}\n"; + +/** + * Filter is a special type of WebGL shader that is applied to the screen. + * + * {@link http://pixijs.io/examples/#/filters/blur-filter.js Example} of the + * {@link PIXI.filters.BlurFilter BlurFilter}. + * + * ### Usage + * Filters can be applied to any DisplayObject or Container. + * PixiJS' `FilterSystem` renders the container into temporary Framebuffer, + * then filter renders it to the screen. + * Multiple filters can be added to the `filters` array property and stacked on each other. + * + * ``` + * const filter = new PIXI.Filter(myShaderVert, myShaderFrag, { myUniform: 0.5 }); + * const container = new PIXI.Container(); + * container.filters = [filter]; + * ``` + * + * ### Previous Version Differences + * + * In PixiJS **v3**, a filter was always applied to _whole screen_. + * + * In PixiJS **v4**, a filter can be applied _only part of the screen_. + * Developers had to create a set of uniforms to deal with coordinates. + * + * In PixiJS **v5** combines _both approaches_. + * Developers can use normal coordinates of v3 and then allow filter to use partial Framebuffers, + * bringing those extra uniforms into account. + * + * Also be aware that we have changed default vertex shader, please consult + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * ### Built-in Uniforms + * + * PixiJS viewport uses screen (CSS) coordinates, `(0, 0, renderer.screen.width, renderer.screen.height)`, + * and `projectionMatrix` uniform maps it to the gl viewport. + * + * **uSampler** + * + * The most important uniform is the input texture that container was rendered into. + * _Important note: as with all Framebuffers in PixiJS, both input and output are + * premultiplied by alpha._ + * + * By default, input normalized coordinates are passed to fragment shader with `vTextureCoord`. + * Use it to sample the input. + * + * ``` + * const fragment = ` + * varying vec2 vTextureCoord; + * uniform sampler2D uSampler; + * void main(void) + * { + * gl_FragColor = texture2D(uSampler, vTextureCoord); + * } + * `; + * + * const myFilter = new PIXI.Filter(null, fragment); + * ``` + * + * This filter is just one uniform less than {@link PIXI.filters.AlphaFilter AlphaFilter}. + * + * **outputFrame** + * + * The `outputFrame` holds the rectangle where filter is applied in screen (CSS) coordinates. + * It's the same as `renderer.screen` for a fullscreen filter. + * Only a part of `outputFrame.zw` size of temporary Framebuffer is used, + * `(0, 0, outputFrame.width, outputFrame.height)`, + * + * Filters uses this quad to normalized (0-1) space, its passed into `aVertexPosition` attribute. + * To calculate vertex position in screen space using normalized (0-1) space: + * + * ``` + * vec4 filterVertexPosition( void ) + * { + * vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy; + * return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0); + * } + * ``` + * + * **inputSize** + * + * Temporary framebuffer is different, it can be either the size of screen, either power-of-two. + * The `inputSize.xy` are size of temporary framebuffer that holds input. + * The `inputSize.zw` is inverted, it's a shortcut to evade division inside the shader. + * + * Set `inputSize.xy = outputFrame.zw` for a fullscreen filter. + * + * To calculate input normalized coordinate, you have to map it to filter normalized space. + * Multiply by `outputFrame.zw` to get input coordinate. + * Divide by `inputSize.xy` to get input normalized coordinate. + * + * ``` + * vec2 filterTextureCoord( void ) + * { + * return aVertexPosition * (outputFrame.zw * inputSize.zw); // same as /inputSize.xy + * } + * ``` + * **resolution** + * + * The `resolution` is the ratio of screen (CSS) pixels to real pixels. + * + * **inputPixel** + * + * `inputPixel.xy` is the size of framebuffer in real pixels, same as `inputSize.xy * resolution` + * `inputPixel.zw` is inverted `inputPixel.xy`. + * + * It's handy for filters that use neighbour pixels, like {@link PIXI.filters.FXAAFilter FXAAFilter}. + * + * **inputClamp** + * + * If you try to get info from outside of used part of Framebuffer - you'll get undefined behaviour. + * For displacements, coordinates has to be clamped. + * + * The `inputClamp.xy` is left-top pixel center, you may ignore it, because we use left-top part of Framebuffer + * `inputClamp.zw` is bottom-right pixel center. + * + * ``` + * vec4 color = texture2D(uSampler, clamp(modifigedTextureCoord, inputClamp.xy, inputClamp.zw)) + * ``` + * OR + * ``` + * vec4 color = texture2D(uSampler, min(modifigedTextureCoord, inputClamp.zw)) + * ``` + * + * ### Additional Information + * + * Complete documentation on Filter usage is located in the + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * Since PixiJS only had a handful of built-in filters, additional filters can be downloaded + * {@link https://github.com/pixijs/pixi-filters here} from the PixiJS Filters repository. + * + * @class + * @memberof PIXI + * @extends PIXI.Shader + */ +var Filter = /*@__PURE__*/(function (Shader) { + function Filter(vertexSrc, fragmentSrc, uniforms) + { + var program = Program.from(vertexSrc || Filter.defaultVertexSrc, + fragmentSrc || Filter.defaultFragmentSrc); + + Shader.call(this, program, uniforms); + + /** + * The padding of the filter. Some filters require extra space to breath such as a blur. + * Increasing this will add extra width and height to the bounds of the object that the + * filter is applied to. + * + * @member {number} + */ + this.padding = 0; + + /** + * The resolution of the filter. Setting this to be lower will lower the quality but + * increase the performance of the filter. + * + * @member {number} + */ + this.resolution = settings.FILTER_RESOLUTION; + + /** + * If enabled is true the filter is applied, if false it will not. + * + * @member {boolean} + */ + this.enabled = true; + + /** + * If enabled, PixiJS will fit the filter area into boundaries for better performance. + * Switch it off if it does not work for specific shader. + * + * @member {boolean} + */ + this.autoFit = true; + + /** + * Legacy filters use position and uvs from attributes + * @member {boolean} + * @readonly + */ + this.legacy = !!this.program.attributeData.aTextureCoord; + + /** + * The WebGL state the filter requires to render + * @member {PIXI.State} + */ + this.state = new State(); + } + + if ( Shader ) Filter.__proto__ = Shader; + Filter.prototype = Object.create( Shader && Shader.prototype ); + Filter.prototype.constructor = Filter; + + var prototypeAccessors = { blendMode: { configurable: true } }; + var staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + * @param {object} [currentState] - It's current state of filter. + * There are some useful properties in the currentState : + * target, filters, sourceFrame, destinationFrame, renderTarget, resolution + */ + Filter.prototype.apply = function apply (filterManager, input, output, clear, currentState) + { + // do as you please! + + filterManager.applyFilter(this, input, output, clear, currentState); + + // or just do a regular render.. + }; + + /** + * Sets the blendmode of the filter + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + */ + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + prototypeAccessors.blendMode.set = function (value) // eslint-disable-line require-jsdoc + { + this.state.blendMode = value; + }; + + /** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultVertexSrc.get = function () + { + return defaultVertex$1; + }; + + /** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultFragmentSrc.get = function () + { + return defaultFragment$1; + }; + + Object.defineProperties( Filter.prototype, prototypeAccessors ); + Object.defineProperties( Filter, staticAccessors ); + + return Filter; +}(Shader)); + +/** + * Used for caching shader IDs + * + * @static + * @type {object} + * @protected + */ +Filter.SOURCE_KEY_MAP = {}; + +var vertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 otherMatrix;\n\nvarying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\n}\n"; + +var fragment = "varying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform sampler2D mask;\nuniform float alpha;\nuniform float npmAlpha;\nuniform vec4 maskClamp;\n\nvoid main(void)\n{\n float clip = step(3.5,\n step(maskClamp.x, vMaskCoord.x) +\n step(maskClamp.y, vMaskCoord.y) +\n step(vMaskCoord.x, maskClamp.z) +\n step(vMaskCoord.y, maskClamp.w));\n\n vec4 original = texture2D(uSampler, vTextureCoord);\n vec4 masky = texture2D(mask, vMaskCoord);\n float alphaMul = 1.0 - npmAlpha * (1.0 - masky.a);\n\n original *= (alphaMul * masky.r * alpha * clip);\n\n gl_FragColor = original;\n}\n"; + +var tempMat = new Matrix(); + +/** + * Class controls uv mapping from Texture normal space to BaseTexture normal space. + * + * Takes `trim` and `rotate` into account. May contain clamp settings for Meshes and TilingSprite. + * + * Can be used in Texture `uvMatrix` field, or separately, you can use different clamp settings on the same texture. + * If you want to add support for texture region of certain feature or filter, that's what you're looking for. + * + * Takes track of Texture changes through `_lastTextureID` private field. + * Use `update()` method call to track it from outside. + * + * @see PIXI.Texture + * @see PIXI.Mesh + * @see PIXI.TilingSprite + * @class + * @memberof PIXI + */ +var TextureMatrix = function TextureMatrix(texture, clampMargin) +{ + this._texture = texture; + + /** + * Matrix operation that converts texture region coords to texture coords + * @member {PIXI.Matrix} + * @readonly + */ + this.mapCoord = new Matrix(); + + /** + * Clamp region for normalized coords, left-top pixel center in xy , bottom-right in zw. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampFrame = new Float32Array(4); + + /** + * Normalized clamp offset. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampOffset = new Float32Array(2); + + /** + * Tracks Texture frame changes + * @member {number} + * @protected + */ + this._updateID = -1; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to 1.5 if you texture has repeated right and bottom lines, that leads to smoother borders + * + * @default 0 + * @member {number} + */ + this.clampOffset = 0; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas + * + * @default 0.5 + * @member {number} + */ + this.clampMargin = (typeof clampMargin === 'undefined') ? 0.5 : clampMargin; + + /** + * If texture size is the same as baseTexture + * @member {boolean} + * @default false + * @readonly + */ + this.isSimple = false; +}; + +var prototypeAccessors$4$1 = { texture: { configurable: true } }; + +/** + * texture property + * @member {PIXI.Texture} + */ +prototypeAccessors$4$1.texture.get = function () +{ + return this._texture; +}; + +prototypeAccessors$4$1.texture.set = function (value) // eslint-disable-line require-jsdoc +{ + this._texture = value; + this._updateID = -1; +}; + +/** + * Multiplies uvs array to transform + * @param {Float32Array} uvs mesh uvs + * @param {Float32Array} [out=uvs] output + * @returns {Float32Array} output + */ +TextureMatrix.prototype.multiplyUvs = function multiplyUvs (uvs, out) +{ + if (out === undefined) + { + out = uvs; + } + + var mat = this.mapCoord; + + for (var i = 0; i < uvs.length; i += 2) + { + var x = uvs[i]; + var y = uvs[i + 1]; + + out[i] = (x * mat.a) + (y * mat.c) + mat.tx; + out[i + 1] = (x * mat.b) + (y * mat.d) + mat.ty; + } + + return out; +}; + +/** + * updates matrices if texture was changed + * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case + * @returns {boolean} whether or not it was updated + */ +TextureMatrix.prototype.update = function update (forceUpdate) +{ + var tex = this._texture; + + if (!tex || !tex.valid) + { + return false; + } + + if (!forceUpdate + && this._updateID === tex._updateID) + { + return false; + } + + this._updateID = tex._updateID; + + var uvs = tex._uvs; + + this.mapCoord.set(uvs.x1 - uvs.x0, uvs.y1 - uvs.y0, uvs.x3 - uvs.x0, uvs.y3 - uvs.y0, uvs.x0, uvs.y0); + + var orig = tex.orig; + var trim = tex.trim; + + if (trim) + { + tempMat.set(orig.width / trim.width, 0, 0, orig.height / trim.height, + -trim.x / trim.width, -trim.y / trim.height); + this.mapCoord.append(tempMat); + } + + var texBase = tex.baseTexture; + var frame = this.uClampFrame; + var margin = this.clampMargin / texBase.resolution; + var offset = this.clampOffset; + + frame[0] = (tex._frame.x + margin + offset) / texBase.width; + frame[1] = (tex._frame.y + margin + offset) / texBase.height; + frame[2] = (tex._frame.x + tex._frame.width - margin + offset) / texBase.width; + frame[3] = (tex._frame.y + tex._frame.height - margin + offset) / texBase.height; + this.uClampOffset[0] = offset / texBase.realWidth; + this.uClampOffset[1] = offset / texBase.realHeight; + + this.isSimple = tex._frame.width === texBase.width + && tex._frame.height === texBase.height + && tex.rotate === 0; + + return true; +}; + +Object.defineProperties( TextureMatrix.prototype, prototypeAccessors$4$1 ); + +/** + * This handles a Sprite acting as a mask, as opposed to a Graphic. + * + * WebGL only. + * + * @class + * @extends PIXI.Filter + * @memberof PIXI + */ +var SpriteMaskFilter = /*@__PURE__*/(function (Filter) { + function SpriteMaskFilter(sprite) + { + var maskMatrix = new Matrix(); + + Filter.call(this, vertex, fragment); + + sprite.renderable = false; + + /** + * Sprite mask + * @member {PIXI.Sprite} + */ + this.maskSprite = sprite; + + /** + * Mask matrix + * @member {PIXI.Matrix} + */ + this.maskMatrix = maskMatrix; + } + + if ( Filter ) SpriteMaskFilter.__proto__ = Filter; + SpriteMaskFilter.prototype = Object.create( Filter && Filter.prototype ); + SpriteMaskFilter.prototype.constructor = SpriteMaskFilter; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it. + */ + SpriteMaskFilter.prototype.apply = function apply (filterManager, input, output, clear) + { + var maskSprite = this.maskSprite; + var tex = this.maskSprite.texture; + + if (!tex.valid) + { + return; + } + if (!tex.transform) + { + // margin = 0.0, let it bleed a bit, shader code becomes easier + // assuming that atlas textures were made with 1-pixel padding + tex.transform = new TextureMatrix(tex, 0.0); + } + tex.transform.update(); + + this.uniforms.npmAlpha = tex.baseTexture.premultiplyAlpha ? 0.0 : 1.0; + this.uniforms.mask = tex; + // get _normalized sprite texture coords_ and convert them to _normalized atlas texture coords_ with `prepend` + this.uniforms.otherMatrix = filterManager.calculateSpriteMatrix(this.maskMatrix, maskSprite) + .prepend(tex.transform.mapCoord); + this.uniforms.alpha = maskSprite.worldAlpha; + this.uniforms.maskClamp = tex.transform.uClampFrame; + + filterManager.applyFilter(this, input, output, clear); + }; + + return SpriteMaskFilter; +}(Filter)); + +/** + * System plugin to the renderer to manage masks. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var MaskSystem = /*@__PURE__*/(function (System) { + function MaskSystem(renderer) + { + System.call(this, renderer); + + // TODO - we don't need both! + /** + * `true` if current pushed masked is scissor + * @member {boolean} + * @readonly + */ + this.scissor = false; + + /** + * Mask data + * @member {PIXI.Graphics} + * @readonly + */ + this.scissorData = null; + + /** + * Target to mask + * @member {PIXI.DisplayObject} + * @readonly + */ + this.scissorRenderTarget = null; + + /** + * Enable scissor + * @member {boolean} + * @readonly + */ + this.enableScissor = false; + + /** + * Pool of used sprite mask filters + * @member {PIXI.SpriteMaskFilter[]} + * @readonly + */ + this.alphaMaskPool = []; + + /** + * Current index of alpha mask pool + * @member {number} + * @default 0 + * @readonly + */ + this.alphaMaskIndex = 0; + } + + if ( System ) MaskSystem.__proto__ = System; + MaskSystem.prototype = Object.create( System && System.prototype ); + MaskSystem.prototype.constructor = MaskSystem; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.push = function push (target, maskData) + { + // TODO the root check means scissor rect will not + // be used on render textures more info here: + // https://github.com/pixijs/pixi.js/pull/3545 + + if (maskData.isSprite) + { + this.pushSpriteMask(target, maskData); + } + else if (this.enableScissor + && !this.scissor + && this.renderer._activeRenderTarget.root + && !this.renderer.stencil.stencilMaskStack.length + && maskData.isFastRect()) + { + var matrix = maskData.worldTransform; + + var rot = Math.atan2(matrix.b, matrix.a); + + // use the nearest degree! + rot = Math.round(rot * (180 / Math.PI)); + + if (rot % 90) + { + this.pushStencilMask(maskData); + } + else + { + this.pushScissorMask(target, maskData); + } + } + else + { + this.pushStencilMask(maskData); + } + }; + + /** + * Removes the last mask from the mask stack and doesn't return it. + * + * @param {PIXI.DisplayObject} target - Display Object to pop the mask from + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pop = function pop (target, maskData) + { + if (maskData.isSprite) + { + this.popSpriteMask(target, maskData); + } + else if (this.enableScissor && !this.renderer.stencil.stencilMaskStack.length) + { + this.popScissorMask(target, maskData); + } + else + { + this.popStencilMask(target, maskData); + } + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.RenderTexture} target - Display Object to push the sprite mask to + * @param {PIXI.Sprite} maskData - Sprite to be used as the mask + */ + MaskSystem.prototype.pushSpriteMask = function pushSpriteMask (target, maskData) + { + var alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex]; + + if (!alphaMaskFilter) + { + alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex] = [new SpriteMaskFilter(maskData)]; + } + + alphaMaskFilter[0].resolution = this.renderer.resolution; + alphaMaskFilter[0].maskSprite = maskData; + + var stashFilterArea = target.filterArea; + + target.filterArea = maskData.getBounds(true); + this.renderer.filter.push(target, alphaMaskFilter); + target.filterArea = stashFilterArea; + + this.alphaMaskIndex++; + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popSpriteMask = function popSpriteMask () + { + this.renderer.filter.pop(); + this.alphaMaskIndex--; + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushStencilMask = function pushStencilMask (maskData) + { + this.renderer.batch.flush(); + this.renderer.stencil.pushStencil(maskData); + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popStencilMask = function popStencilMask () + { + // this.renderer.currentRenderer.stop(); + this.renderer.stencil.popStencil(); + }; + + /** + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushScissorMask = function pushScissorMask (target, maskData) + { + maskData.renderable = true; + + var renderTarget = this.renderer._activeRenderTarget; + + var bounds = maskData.getBounds(); + + bounds.fit(renderTarget.size); + maskData.renderable = false; + + this.renderer.gl.enable(this.renderer.gl.SCISSOR_TEST); + + var resolution = this.renderer.resolution; + + this.renderer.gl.scissor( + bounds.x * resolution, + (renderTarget.root ? renderTarget.size.height - bounds.y - bounds.height : bounds.y) * resolution, + bounds.width * resolution, + bounds.height * resolution + ); + + this.scissorRenderTarget = renderTarget; + this.scissorData = maskData; + this.scissor = true; + }; + + /** + * Pop scissor mask + * + */ + MaskSystem.prototype.popScissorMask = function popScissorMask () + { + this.scissorRenderTarget = null; + this.scissorData = null; + this.scissor = false; + + // must be scissor! + var ref = this.renderer; + var gl = ref.gl; + + gl.disable(gl.SCISSOR_TEST); + }; + + return MaskSystem; +}(System)); + +/** + * System plugin to the renderer to manage stencils (used for masks). + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StencilSystem = /*@__PURE__*/(function (System) { + function StencilSystem(renderer) + { + System.call(this, renderer); + + /** + * The mask stack + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + } + + if ( System ) StencilSystem.__proto__ = System; + StencilSystem.prototype = Object.create( System && System.prototype ); + StencilSystem.prototype.constructor = StencilSystem; + + /** + * Changes the mask stack that is used by this System. + * + * @param {PIXI.Graphics[]} stencilMaskStack - The mask stack + */ + StencilSystem.prototype.setMaskStack = function setMaskStack (stencilMaskStack) + { + var gl = this.renderer.gl; + var curStackLen = this.stencilMaskStack.length; + + this.stencilMaskStack = stencilMaskStack; + if (stencilMaskStack.length !== curStackLen) + { + if (stencilMaskStack.length === 0) + { + gl.disable(gl.STENCIL_TEST); + } + else + { + gl.enable(gl.STENCIL_TEST); + this._useCurrent(); + } + } + }; + + /** + * Applies the Mask and adds it to the current stencil stack. @alvin + * + * @param {PIXI.Graphics} graphics - The mask + */ + StencilSystem.prototype.pushStencil = function pushStencil (graphics) + { + var gl = this.renderer.gl; + var prevMaskCount = this.stencilMaskStack.length; + + if (prevMaskCount === 0) + { + // force use stencil texture in current framebuffer + this.renderer.framebuffer.forceStencil(); + gl.enable(gl.STENCIL_TEST); + } + + this.stencilMaskStack.push(graphics); + + // Increment the reference stencil value where the new mask overlaps with the old ones. + gl.colorMask(false, false, false, false); + gl.stencilFunc(gl.EQUAL, prevMaskCount, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.INCR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + }; + + /** + * Removes the last mask from the stencil stack. @alvin + */ + StencilSystem.prototype.popStencil = function popStencil () + { + var gl = this.renderer.gl; + var graphics = this.stencilMaskStack.pop(); + + if (this.stencilMaskStack.length === 0) + { + // the stack is empty! + gl.disable(gl.STENCIL_TEST); + gl.clear(gl.STENCIL_BUFFER_BIT); + gl.clearStencil(0); + } + else + { + // Decrement the reference stencil value where the popped mask overlaps with the other ones + gl.colorMask(false, false, false, false); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.DECR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + } + }; + + /** + * Setup renderer to use the current stencil data. + * @private + */ + StencilSystem.prototype._useCurrent = function _useCurrent () + { + var gl = this.renderer.gl; + + gl.colorMask(true, true, true, true); + gl.stencilFunc(gl.EQUAL, this.stencilMaskStack.length, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.KEEP); + }; + + /** + * Fill 1s equal to the number of acitve stencil masks. + * @private + * @return {number} The bitwise mask. + */ + StencilSystem.prototype._getBitwiseMask = function _getBitwiseMask () + { + return (1 << this.stencilMaskStack.length) - 1; + }; + + /** + * Destroys the mask stack. + * + */ + StencilSystem.prototype.destroy = function destroy () + { + System.prototype.destroy.call(this, this); + + this.stencilMaskStack = null; + }; + + return StencilSystem; +}(System)); + +/** + * System plugin to the renderer to manage the projection matrix. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var ProjectionSystem = /*@__PURE__*/(function (System) { + function ProjectionSystem(renderer) + { + System.call(this, renderer); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = null; + + /** + * Default destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.defaultFrame = null; + + /** + * Project matrix + * @member {PIXI.Matrix} + * @readonly + */ + this.projectionMatrix = new Matrix(); + + /** + * A transform that will be appended to the projection matrix + * if null, nothing will be applied + * @member {PIXI.Matrix} + */ + this.transform = null; + } + + if ( System ) ProjectionSystem.__proto__ = System; + ProjectionSystem.prototype = Object.create( System && System.prototype ); + ProjectionSystem.prototype.constructor = ProjectionSystem; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.update = function update (destinationFrame, sourceFrame, resolution, root) + { + this.destinationFrame = destinationFrame || this.destinationFrame || this.defaultFrame; + this.sourceFrame = sourceFrame || this.sourceFrame || destinationFrame; + + this.calculateProjection(this.destinationFrame, this.sourceFrame, resolution, root); + + if (this.transform) + { + this.projectionMatrix.append(this.transform); + } + + var renderer = this.renderer; + + renderer.globalUniforms.uniforms.projectionMatrix = this.projectionMatrix; + renderer.globalUniforms.update(); + + // this will work for now + // but would be sweet to stick and even on the global uniforms.. + if (renderer.shader.shader) + { + renderer.shader.syncUniformGroup(renderer.shader.shader.uniforms.globals); + } + }; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.calculateProjection = function calculateProjection (destinationFrame, sourceFrame, resolution, root) + { + var pm = this.projectionMatrix; + + // I don't think we will need this line.. + // pm.identity(); + + if (!root) + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = -1 - (sourceFrame.y * pm.d); + } + else + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (-1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = 1 - (sourceFrame.y * pm.d); + } + }; + + /** + * Sets the transform of the active render target to the given matrix + * + * @param {PIXI.Matrix} matrix - The transformation matrix + */ + ProjectionSystem.prototype.setTransform = function setTransform ()// matrix) + { + // this._activeRenderTarget.transform = matrix; + }; + + return ProjectionSystem; +}(System)); + +var tempRect = new Rectangle(); + +/** + * System plugin to the renderer to manage render textures. + * + * Should be added after FramebufferSystem + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var RenderTextureSystem = /*@__PURE__*/(function (System) { + function RenderTextureSystem(renderer) + { + System.call(this, renderer); + + /** + * The clear background color as rgba + * @member {number[]} + */ + this.clearColor = renderer._backgroundColorRgba; + + // TODO move this property somewhere else! + /** + * List of masks for the StencilSystem + * @member {PIXI.Graphics[]} + * @readonly + */ + this.defaultMaskStack = []; + + // empty render texture? + /** + * Render texture + * @member {PIXI.RenderTexture} + * @readonly + */ + this.current = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = new Rectangle(); + } + + if ( System ) RenderTextureSystem.__proto__ = System; + RenderTextureSystem.prototype = Object.create( System && System.prototype ); + RenderTextureSystem.prototype.constructor = RenderTextureSystem; + + /** + * Bind the current render texture + * @param {PIXI.RenderTexture} [renderTexture] - RenderTexture to bind, by default its `null`, the screen + * @param {PIXI.Rectangle} [sourceFrame] - part of screen that is mapped to the renderTexture + * @param {PIXI.Rectangle} [destinationFrame] - part of renderTexture, by default it has the same size as sourceFrame + */ + RenderTextureSystem.prototype.bind = function bind (renderTexture, sourceFrame, destinationFrame) + { + if ( renderTexture === void 0 ) renderTexture = null; + + this.current = renderTexture; + + var renderer = this.renderer; + + var resolution; + + if (renderTexture) + { + var baseTexture = renderTexture.baseTexture; + + resolution = baseTexture.resolution; + + if (!destinationFrame) + { + tempRect.width = baseTexture.realWidth; + tempRect.height = baseTexture.realHeight; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + this.renderer.framebuffer.bind(baseTexture.framebuffer, destinationFrame); + + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, false); + this.renderer.stencil.setMaskStack(baseTexture.stencilMaskStack); + } + else + { + resolution = this.renderer.resolution; + + // TODO these validation checks happen deeper down.. + // thing they can be avoided.. + if (!destinationFrame) + { + tempRect.width = renderer.width; + tempRect.height = renderer.height; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + renderer.framebuffer.bind(null, destinationFrame); + + // TODO store this.. + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, true); + this.renderer.stencil.setMaskStack(this.defaultMaskStack); + } + + this.sourceFrame.copyFrom(sourceFrame); + + this.destinationFrame.x = destinationFrame.x / resolution; + this.destinationFrame.y = destinationFrame.y / resolution; + + this.destinationFrame.width = destinationFrame.width / resolution; + this.destinationFrame.height = destinationFrame.height / resolution; + + if (sourceFrame === destinationFrame) + { + this.sourceFrame.copyFrom(this.destinationFrame); + } + }; + + /** + * Erases the render texture and fills the drawing area with a colour + * + * @param {number[]} [clearColor] - The color as rgba, default to use the renderer backgroundColor + * @return {PIXI.Renderer} Returns itself. + */ + RenderTextureSystem.prototype.clear = function clear (clearColor) + { + if (this.current) + { + clearColor = clearColor || this.current.baseTexture.clearColor; + } + else + { + clearColor = clearColor || this.clearColor; + } + + this.renderer.framebuffer.clear(clearColor[0], clearColor[1], clearColor[2], clearColor[3]); + }; + + RenderTextureSystem.prototype.resize = function resize ()// screenWidth, screenHeight) + { + // resize the root only! + this.bind(null); + }; + + /** + * Resets renderTexture state + */ + RenderTextureSystem.prototype.reset = function reset () + { + this.bind(null); + }; + + return RenderTextureSystem; +}(System)); + +/** + * Helper class to create a WebGL Program + * + * @class + * @memberof PIXI + */ +var GLProgram = function GLProgram(program, uniformData) +{ + /** + * The shader program + * + * @member {WebGLProgram} + */ + this.program = program; + + /** + * holds the uniform data which contains uniform locations + * and current uniform values used for caching and preventing unneeded GPU commands + * @member {Object} + */ + this.uniformData = uniformData; + + /** + * uniformGroups holds the various upload functions for the shader. Each uniform group + * and program have a unique upload function generated. + * @member {Object} + */ + this.uniformGroups = {}; +}; + +/** + * Destroys this program + */ +GLProgram.prototype.destroy = function destroy () +{ + this.uniformData = null; + this.uniformGroups = null; + this.program = null; +}; + +var UID$4 = 0; + +/** + * System plugin to the renderer to manage shaders. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var ShaderSystem = /*@__PURE__*/(function (System) { + function ShaderSystem(renderer) + { + System.call(this, renderer); + + // Validation check that this environment support `new Function` + this.systemCheck(); + + /** + * The current WebGL rendering context + * + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.shader = null; + this.program = null; + + /** + * Cache to holds the generated functions. Stored against UniformObjects unique signature + * @type {Object} + * @private + */ + this.cache = {}; + + this.id = UID$4++; + } + + if ( System ) ShaderSystem.__proto__ = System; + ShaderSystem.prototype = Object.create( System && System.prototype ); + ShaderSystem.prototype.constructor = ShaderSystem; + + /** + * Overrideable function by `@pixi/unsafe-eval` to silence + * throwing an error if platform doesn't support unsafe-evals. + * + * @private + */ + ShaderSystem.prototype.systemCheck = function systemCheck () + { + if (!unsafeEvalSupported()) + { + throw new Error('Current environment does not allow unsafe-eval, ' + + 'please use @pixi/unsafe-eval module to enable support.'); + } + }; + + ShaderSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.reset(); + }; + + /** + * Changes the current shader to the one given in parameter + * + * @param {PIXI.Shader} shader - the new shader + * @param {boolean} dontSync - false if the shader should automatically sync its uniforms. + * @returns {PIXI.GLProgram} the glProgram that belongs to the shader. + */ + ShaderSystem.prototype.bind = function bind (shader, dontSync) + { + shader.uniforms.globals = this.renderer.globalUniforms; + + var program = shader.program; + var glProgram = program.glPrograms[this.renderer.CONTEXT_UID] || this.generateShader(shader); + + this.shader = shader; + + // TODO - some current Pixi plugins bypass this.. so it not safe to use yet.. + if (this.program !== program) + { + this.program = program; + this.gl.useProgram(glProgram.program); + } + + if (!dontSync) + { + this.syncUniformGroup(shader.uniformGroup); + } + + return glProgram; + }; + + /** + * Uploads the uniforms values to the currently bound shader. + * + * @param {object} uniforms - the uniforms values that be applied to the current shader + */ + ShaderSystem.prototype.setUniforms = function setUniforms (uniforms) + { + var shader = this.shader.program; + var glProgram = shader.glPrograms[this.renderer.CONTEXT_UID]; + + shader.syncUniforms(glProgram.uniformData, uniforms, this.renderer); + }; + + ShaderSystem.prototype.syncUniformGroup = function syncUniformGroup (group) + { + var glProgram = this.getglProgram(); + + if (!group.static || group.dirtyId !== glProgram.uniformGroups[group.id]) + { + glProgram.uniformGroups[group.id] = group.dirtyId; + + this.syncUniforms(group, glProgram); + } + }; + + /** + * Overrideable by the @pixi/unsafe-eval package to use static + * syncUnforms instead. + * + * @private + */ + ShaderSystem.prototype.syncUniforms = function syncUniforms (group, glProgram) + { + var syncFunc = group.syncUniforms[this.shader.program.id] || this.createSyncGroups(group); + + syncFunc(glProgram.uniformData, group.uniforms, this.renderer); + }; + + ShaderSystem.prototype.createSyncGroups = function createSyncGroups (group) + { + var id = this.getSignature(group, this.shader.program.uniformData); + + if (!this.cache[id]) + { + this.cache[id] = generateUniformsSync(group, this.shader.program.uniformData); + } + + group.syncUniforms[this.shader.program.id] = this.cache[id]; + + return group.syncUniforms[this.shader.program.id]; + }; + + /** + * Takes a uniform group and data and generates a unique signature for them. + * + * @param {PIXI.UniformGroup} group the uniform group to get signature of + * @param {Object} uniformData uniform information generated by the shader + * @returns {String} Unique signature of the uniform group + * @private + */ + ShaderSystem.prototype.getSignature = function getSignature (group, uniformData) + { + var uniforms = group.uniforms; + + var strings = []; + + for (var i in uniforms) + { + strings.push(i); + + if (uniformData[i]) + { + strings.push(uniformData[i].type); + } + } + + return strings.join('-'); + }; + + /** + * Returns the underlying GLShade rof the currently bound shader. + * This can be handy for when you to have a little more control over the setting of your uniforms. + * + * @return {PIXI.GLProgram} the glProgram for the currently bound Shader for this context + */ + ShaderSystem.prototype.getglProgram = function getglProgram () + { + if (this.shader) + { + return this.shader.program.glPrograms[this.renderer.CONTEXT_UID]; + } + + return null; + }; + + /** + * Generates a glProgram version of the Shader provided. + * + * @private + * @param {PIXI.Shader} shader the shader that the glProgram will be based on. + * @return {PIXI.GLProgram} A shiny new glProgram! + */ + ShaderSystem.prototype.generateShader = function generateShader (shader) + { + var gl = this.gl; + + var program = shader.program; + + var attribMap = {}; + + for (var i in program.attributeData) + { + attribMap[i] = program.attributeData[i].location; + } + + var shaderProgram = compileProgram(gl, program.vertexSrc, program.fragmentSrc, attribMap); + var uniformData = {}; + + for (var i$1 in program.uniformData) + { + var data = program.uniformData[i$1]; + + uniformData[i$1] = { + location: gl.getUniformLocation(shaderProgram, i$1), + value: defaultValue(data.type, data.size), + }; + } + + var glProgram = new GLProgram(shaderProgram, uniformData); + + program.glPrograms[this.renderer.CONTEXT_UID] = glProgram; + + return glProgram; + }; + + /** + * Resets ShaderSystem state, does not affect WebGL state + */ + ShaderSystem.prototype.reset = function reset () + { + this.program = null; + this.shader = null; + }; + + /** + * Destroys this System and removes all its textures + */ + ShaderSystem.prototype.destroy = function destroy () + { + // TODO implement destroy method for ShaderSystem + this.destroyed = true; + }; + + return ShaderSystem; +}(System)); + +/** + * Maps gl blend combinations to WebGL. + * + * @memberof PIXI + * @function mapWebGLBlendModesToPixi + * @private + * @param {WebGLRenderingContext} gl - The rendering context. + * @param {number[][]} [array=[]] - The array to output into. + * @return {number[][]} Mapped modes. + */ +function mapWebGLBlendModesToPixi(gl, array) +{ + if ( array === void 0 ) array = []; + + // TODO - premultiply alpha would be different. + // add a boolean for that! + array[BLEND_MODES.NORMAL] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD] = [gl.ONE, gl.ONE]; + array[BLEND_MODES.MULTIPLY] = [gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SCREEN] = [gl.ONE, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.OVERLAY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DARKEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LIGHTEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_DODGE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_BURN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HARD_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SOFT_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DIFFERENCE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.EXCLUSION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HUE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SATURATION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LUMINOSITY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.NONE] = [0, 0]; + + // not-premultiplied blend modes + array[BLEND_MODES.NORMAL_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD_NPM] = [gl.SRC_ALPHA, gl.ONE, gl.ONE, gl.ONE]; + array[BLEND_MODES.SCREEN_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + + // composite operations + array[BLEND_MODES.SRC_IN] = [gl.DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_OUT] = [gl.ONE_MINUS_DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_ATOP] = [gl.DST_ALPHA, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_OVER] = [gl.ONE_MINUS_DST_ALPHA, gl.ONE]; + array[BLEND_MODES.DST_IN] = [gl.ZERO, gl.SRC_ALPHA]; + array[BLEND_MODES.DST_OUT] = [gl.ZERO, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_ATOP] = [gl.ONE_MINUS_DST_ALPHA, gl.SRC_ALPHA]; + + // SUBTRACT from flash + array[BLEND_MODES.SUBTRACT] = [gl.ONE, gl.ONE, gl.ONE, gl.ONE, gl.FUNC_REVERSE_SUBTRACT, gl.FUNC_ADD]; + + return array; +} + +var BLEND$1 = 0; +var OFFSET$1 = 1; +var CULLING$1 = 2; +var DEPTH_TEST$1 = 3; +var WINDING$1 = 4; + +/** + * System plugin to the renderer to manage WebGL state machines. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StateSystem = /*@__PURE__*/(function (System) { + function StateSystem(renderer) + { + System.call(this, renderer); + + /** + * GL context + * @member {WebGLRenderingContext} + * @readonly + */ + this.gl = null; + + /** + * State ID + * @member {number} + * @readonly + */ + this.stateId = 0; + + /** + * Polygon offset + * @member {number} + * @readonly + */ + this.polygonOffset = 0; + + /** + * Blend mode + * @member {number} + * @default PIXI.BLEND_MODES.NONE + * @readonly + */ + this.blendMode = BLEND_MODES.NONE; + + /** + * Whether current blend equation is different + * @member {boolean} + * @protected + */ + this._blendEq = false; + + /** + * Collection of calls + * @member {function[]} + * @readonly + */ + this.map = []; + + // map functions for when we set state.. + this.map[BLEND$1] = this.setBlend; + this.map[OFFSET$1] = this.setOffset; + this.map[CULLING$1] = this.setCullFace; + this.map[DEPTH_TEST$1] = this.setDepthTest; + this.map[WINDING$1] = this.setFrontFace; + + /** + * Collection of check calls + * @member {function[]} + * @readonly + */ + this.checks = []; + + /** + * Default WebGL State + * @member {PIXI.State} + * @readonly + */ + this.defaultState = new State(); + this.defaultState.blend = true; + this.defaultState.depth = true; + } + + if ( System ) StateSystem.__proto__ = System; + StateSystem.prototype = Object.create( System && System.prototype ); + StateSystem.prototype.constructor = StateSystem; + + StateSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + + this.blendModes = mapWebGLBlendModesToPixi(gl); + + this.set(this.defaultState); + + this.reset(); + }; + + /** + * Sets the current state + * + * @param {*} state - The state to set. + */ + StateSystem.prototype.set = function set (state) + { + state = state || this.defaultState; + + // TODO maybe to an object check? ( this.state === state )? + if (this.stateId !== state.data) + { + var diff = this.stateId ^ state.data; + var i = 0; + + // order from least to most common + while (diff) + { + if (diff & 1) + { + // state change! + this.map[i].call(this, !!(state.data & (1 << i))); + } + + diff = diff >> 1; + i++; + } + + this.stateId = state.data; + } + + // based on the above settings we check for specific modes.. + // for example if blend is active we check and set the blend modes + // or of polygon offset is active we check the poly depth. + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + }; + + /** + * Sets the state, when previous state is unknown + * + * @param {*} state - The state to set + */ + StateSystem.prototype.forceState = function forceState (state) + { + state = state || this.defaultState; + for (var i = 0; i < this.map.length; i++) + { + this.map[i].call(this, !!(state.data & (1 << i))); + } + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + + this.stateId = state.data; + }; + + /** + * Enables or disabled blending. + * + * @param {boolean} value - Turn on or off webgl blending. + */ + StateSystem.prototype.setBlend = function setBlend (value) + { + this.updateCheck(StateSystem.checkBlendMode, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.BLEND); + }; + + /** + * Enables or disable polygon offset fill + * + * @param {boolean} value - Turn on or off webgl polygon offset testing. + */ + StateSystem.prototype.setOffset = function setOffset (value) + { + this.updateCheck(StateSystem.checkPolygonOffset, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.POLYGON_OFFSET_FILL); + }; + + /** + * Sets whether to enable or disable depth test. + * + * @param {boolean} value - Turn on or off webgl depth testing. + */ + StateSystem.prototype.setDepthTest = function setDepthTest (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.DEPTH_TEST); + }; + + /** + * Sets whether to enable or disable cull face. + * + * @param {boolean} value - Turn on or off webgl cull face. + */ + StateSystem.prototype.setCullFace = function setCullFace (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.CULL_FACE); + }; + + /** + * Sets the gl front face. + * + * @param {boolean} value - true is clockwise and false is counter-clockwise + */ + StateSystem.prototype.setFrontFace = function setFrontFace (value) + { + this.gl.frontFace(this.gl[value ? 'CW' : 'CCW']); + }; + + /** + * Sets the blend mode. + * + * @param {number} value - The blend mode to set to. + */ + StateSystem.prototype.setBlendMode = function setBlendMode (value) + { + if (value === this.blendMode) + { + return; + } + + this.blendMode = value; + + var mode = this.blendModes[value]; + var gl = this.gl; + + if (mode.length === 2) + { + gl.blendFunc(mode[0], mode[1]); + } + else + { + gl.blendFuncSeparate(mode[0], mode[1], mode[2], mode[3]); + } + if (mode.length === 6) + { + this._blendEq = true; + gl.blendEquationSeparate(mode[4], mode[5]); + } + else if (this._blendEq) + { + this._blendEq = false; + gl.blendEquationSeparate(gl.FUNC_ADD, gl.FUNC_ADD); + } + }; + + /** + * Sets the polygon offset. + * + * @param {number} value - the polygon offset + * @param {number} scale - the polygon offset scale + */ + StateSystem.prototype.setPolygonOffset = function setPolygonOffset (value, scale) + { + this.gl.polygonOffset(value, scale); + }; + + // used + /** + * Resets all the logic and disables the vaos + */ + StateSystem.prototype.reset = function reset () + { + this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false); + + this.forceState(0); + + this._blendEq = true; + this.blendMode = -1; + this.setBlendMode(0); + }; + + /** + * checks to see which updates should be checked based on which settings have been activated. + * For example, if blend is enabled then we should check the blend modes each time the state is changed + * or if polygon fill is activated then we need to check if the polygon offset changes. + * The idea is that we only check what we have too. + * + * @param {Function} func the checking function to add or remove + * @param {boolean} value should the check function be added or removed. + */ + StateSystem.prototype.updateCheck = function updateCheck (func, value) + { + var index = this.checks.indexOf(func); + + if (value && index === -1) + { + this.checks.push(func); + } + else if (!value && index !== -1) + { + this.checks.splice(index, 1); + } + }; + + /** + * A private little wrapper function that we call to check the blend mode. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkBlendMode = function checkBlendMode (system, state) + { + system.setBlendMode(state.blendMode); + }; + + /** + * A private little wrapper function that we call to check the polygon offset. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkPolygonOffset = function checkPolygonOffset (system, state) + { + system.setPolygonOffset(state.polygonOffset, 0); + }; + + return StateSystem; +}(System)); + +/** + * System plugin to the renderer to manage texture garbage collection on the GPU, + * ensuring that it does not get clogged up with textures that are no longer being used. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var TextureGCSystem = /*@__PURE__*/(function (System) { + function TextureGCSystem(renderer) + { + System.call(this, renderer); + + /** + * Count + * @member {number} + * @readonly + */ + this.count = 0; + + /** + * Check count + * @member {number} + * @readonly + */ + this.checkCount = 0; + + /** + * Maximum idle time, in seconds + * @member {number} + * @see PIXI.settings.GC_MAX_IDLE + */ + this.maxIdle = settings.GC_MAX_IDLE; + + /** + * Maximum number of item to check + * @member {number} + * @see PIXI.settings.GC_MAX_CHECK_COUNT + */ + this.checkCountMax = settings.GC_MAX_CHECK_COUNT; + + /** + * Current garabage collection mode + * @member {PIXI.GC_MODES} + * @see PIXI.settings.GC_MODE + */ + this.mode = settings.GC_MODE; + } + + if ( System ) TextureGCSystem.__proto__ = System; + TextureGCSystem.prototype = Object.create( System && System.prototype ); + TextureGCSystem.prototype.constructor = TextureGCSystem; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.postrender = function postrender () + { + this.count++; + + if (this.mode === GC_MODES.MANUAL) + { + return; + } + + this.checkCount++; + + if (this.checkCount > this.checkCountMax) + { + this.checkCount = 0; + + this.run(); + } + }; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.run = function run () + { + var tm = this.renderer.texture; + var managedTextures = tm.managedTextures; + var wasRemoved = false; + + for (var i = 0; i < managedTextures.length; i++) + { + var texture = managedTextures[i]; + + // only supports non generated textures at the moment! + if (!texture.framebuffer && this.count - texture.touched > this.maxIdle) + { + tm.destroyTexture(texture, true); + managedTextures[i] = null; + wasRemoved = true; + } + } + + if (wasRemoved) + { + var j = 0; + + for (var i$1 = 0; i$1 < managedTextures.length; i$1++) + { + if (managedTextures[i$1] !== null) + { + managedTextures[j++] = managedTextures[i$1]; + } + } + + managedTextures.length = j; + } + }; + + /** + * Removes all the textures within the specified displayObject and its children from the GPU + * + * @param {PIXI.DisplayObject} displayObject - the displayObject to remove the textures from. + */ + TextureGCSystem.prototype.unload = function unload (displayObject) + { + var tm = this.renderer.textureSystem; + + // only destroy non generated textures + if (displayObject._texture && displayObject._texture._glRenderTargets) + { + tm.destroyTexture(displayObject._texture); + } + + for (var i = displayObject.children.length - 1; i >= 0; i--) + { + this.unload(displayObject.children[i]); + } + }; + + return TextureGCSystem; +}(System)); + +/** + * Internal texture for WebGL context + * @class + * @memberof PIXI + */ +var GLTexture = function GLTexture(texture) +{ + /** + * The WebGL texture + * @member {WebGLTexture} + */ + this.texture = texture; + + /** + * Width of texture that was used in texImage2D + * @member {number} + */ + this.width = -1; + + /** + * Height of texture that was used in texImage2D + * @member {number} + */ + this.height = -1; + + /** + * Texture contents dirty flag + * @member {number} + */ + this.dirtyId = -1; + + /** + * Texture style dirty flag + * @member {number} + */ + this.dirtyStyleId = -1; + + /** + * Whether mip levels has to be generated + * @member {boolean} + */ + this.mipmap = false; + + /** + * WrapMode copied from baseTexture + * @member {number} + */ + this.wrapMode = 33071; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.type = 6408; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.internalFormat = 5121; +}; + +/** + * System plugin to the renderer to manage textures. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var TextureSystem = /*@__PURE__*/(function (System) { + function TextureSystem(renderer) + { + System.call(this, renderer); + + // TODO set to max textures... + /** + * Bound textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.boundTextures = []; + /** + * Current location + * @member {number} + * @readonly + */ + this.currentLocation = -1; + + /** + * List of managed textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.managedTextures = []; + + /** + * Did someone temper with textures state? We'll overwrite them when we need to unbind something. + * @member {boolean} + * @private + */ + this._unknownBoundTextures = false; + + /** + * BaseTexture value that shows that we don't know what is bound + * @member {PIXI.BaseTexture} + * @readonly + */ + this.unknownTexture = new BaseTexture(); + } + + if ( System ) TextureSystem.__proto__ = System; + TextureSystem.prototype = Object.create( System && System.prototype ); + TextureSystem.prototype.constructor = TextureSystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + TextureSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + this.webGLVersion = this.renderer.context.webGLVersion; + + var maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS); + + this.boundTextures.length = maxTextures; + + for (var i = 0; i < maxTextures; i++) + { + this.boundTextures[i] = null; + } + + // TODO move this.. to a nice make empty textures class.. + this.emptyTextures = {}; + + var emptyTexture2D = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_2D, emptyTexture2D.texture); + gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4)); + + this.emptyTextures[gl.TEXTURE_2D] = emptyTexture2D; + this.emptyTextures[gl.TEXTURE_CUBE_MAP] = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_CUBE_MAP, this.emptyTextures[gl.TEXTURE_CUBE_MAP].texture); + + for (var i$1 = 0; i$1 < 6; i$1++) + { + gl.texImage2D(gl.TEXTURE_CUBE_MAP_POSITIVE_X + i$1, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, null); + } + + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + + for (var i$2 = 0; i$2 < this.boundTextures.length; i$2++) + { + this.bind(null, i$2); + } + }; + + /** + * Bind a texture to a specific location + * + * If you want to unbind something, please use `unbind(texture)` instead of `bind(null, textureLocation)` + * + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + * @param {number} [location=0] - Location to bind at + */ + TextureSystem.prototype.bind = function bind (texture, location) + { + if ( location === void 0 ) location = 0; + + var ref = this; + var gl = ref.gl; + + if (texture) + { + texture = texture.baseTexture || texture; + + if (texture.valid) + { + texture.touched = this.renderer.textureGC.count; + + var glTexture = texture._glTextures[this.CONTEXT_UID] || this.initTexture(texture); + + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + if (this.boundTextures[location] !== texture) + { + gl.bindTexture(texture.target, glTexture.texture); + } + + if (glTexture.dirtyId !== texture.dirtyId) + { + this.updateTexture(texture); + } + + this.boundTextures[location] = texture; + } + } + else + { + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[gl.TEXTURE_2D].texture); + this.boundTextures[location] = null; + } + }; + + /** + * Resets texture location and bound textures + * + * Actual `bind(null, i)` calls will be performed at next `unbind()` call + */ + TextureSystem.prototype.reset = function reset () + { + this._unknownBoundTextures = true; + this.currentLocation = -1; + + for (var i = 0; i < this.boundTextures.length; i++) + { + this.boundTextures[i] = this.unknownTexture; + } + }; + + /** + * Unbind a texture + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + */ + TextureSystem.prototype.unbind = function unbind (texture) + { + var ref = this; + var gl = ref.gl; + var boundTextures = ref.boundTextures; + + if (this._unknownBoundTextures) + { + this._unknownBoundTextures = false; + // someone changed webGL state, + // we have to be sure that our texture does not appear in multi-texture renderer samplers + for (var i = 0; i < boundTextures.length; i++) + { + if (boundTextures[i] === this.unknownTexture) + { + this.bind(null, i); + } + } + } + + for (var i$1 = 0; i$1 < boundTextures.length; i$1++) + { + if (boundTextures[i$1] === texture) + { + if (this.currentLocation !== i$1) + { + gl.activeTexture(gl.TEXTURE0 + i$1); + this.currentLocation = i$1; + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[texture.target].texture); + boundTextures[i$1] = null; + } + } + }; + + /** + * Initialize a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.initTexture = function initTexture (texture) + { + var glTexture = new GLTexture(this.gl.createTexture()); + + // guarantee an update.. + glTexture.dirtyId = -1; + + texture._glTextures[this.CONTEXT_UID] = glTexture; + + this.managedTextures.push(texture); + texture.on('dispose', this.destroyTexture, this); + + return glTexture; + }; + + TextureSystem.prototype.initTextureType = function initTextureType (texture, glTexture) + { + glTexture.internalFormat = texture.format; + glTexture.type = texture.type; + if (this.webGLVersion !== 2) + { + return; + } + var gl = this.renderer.gl; + + if (texture.type === gl.FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA32F; + } + // that's WebGL1 HALF_FLOAT_OES + // we have to convert it to WebGL HALF_FLOAT + if (texture.type === TYPES.HALF_FLOAT) + { + glTexture.type = gl.HALF_FLOAT; + } + if (glTexture.type === gl.HALF_FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA16F; + } + }; + + /** + * Update a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.updateTexture = function updateTexture (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + var renderer = this.renderer; + + this.initTextureType(texture, glTexture); + + if (texture.resource && texture.resource.upload(renderer, texture, glTexture)) + ; + else + { + // default, renderTexture-like logic + var width = texture.realWidth; + var height = texture.realHeight; + var gl = renderer.gl; + + if (glTexture.width !== width + || glTexture.height !== height + || glTexture.dirtyId < 0) + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(texture.target, 0, + glTexture.internalFormat, + width, + height, + 0, + texture.format, + glTexture.type, + null); + } + } + + // lets only update what changes.. + if (texture.dirtyStyleId !== glTexture.dirtyStyleId) + { + this.updateTextureStyle(texture); + } + glTexture.dirtyId = texture.dirtyId; + }; + + /** + * Deletes the texture from WebGL + * + * @private + * @param {PIXI.BaseTexture|PIXI.Texture} texture - the texture to destroy + * @param {boolean} [skipRemove=false] - Whether to skip removing the texture from the TextureManager. + */ + TextureSystem.prototype.destroyTexture = function destroyTexture (texture, skipRemove) + { + var ref = this; + var gl = ref.gl; + + texture = texture.baseTexture || texture; + + if (texture._glTextures[this.CONTEXT_UID]) + { + this.unbind(texture); + + gl.deleteTexture(texture._glTextures[this.CONTEXT_UID].texture); + texture.off('dispose', this.destroyTexture, this); + + delete texture._glTextures[this.CONTEXT_UID]; + + if (!skipRemove) + { + var i = this.managedTextures.indexOf(texture); + + if (i !== -1) + { + removeItems(this.managedTextures, i, 1); + } + } + } + }; + + /** + * Update texture style such as mipmap flag + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + */ + TextureSystem.prototype.updateTextureStyle = function updateTextureStyle (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + if ((texture.mipmap === MIPMAP_MODES.POW2 || this.webGLVersion !== 2) && !texture.isPowerOfTwo) + { + glTexture.mipmap = 0; + glTexture.wrapMode = WRAP_MODES.CLAMP; + } + else + { + glTexture.mipmap = texture.mipmap >= 1; + glTexture.wrapMode = texture.wrapMode; + } + + if (texture.resource && texture.resource.style(this.renderer, texture, glTexture)) + ; + else + { + this.setStyle(texture, glTexture); + } + + glTexture.dirtyStyleId = texture.dirtyStyleId; + }; + + /** + * Set style for texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + * @param {PIXI.GLTexture} glTexture + */ + TextureSystem.prototype.setStyle = function setStyle (texture, glTexture) + { + var gl = this.gl; + + if (glTexture.mipmap) + { + gl.generateMipmap(texture.target); + } + + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_S, glTexture.wrapMode); + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_T, glTexture.wrapMode); + + if (glTexture.mipmap) + { + /* eslint-disable max-len */ + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR_MIPMAP_LINEAR : gl.NEAREST_MIPMAP_NEAREST); + /* eslint-disable max-len */ + + var anisotropicExt = this.renderer.context.extensions.anisotropicFiltering; + + if (anisotropicExt && texture.anisotropicLevel > 0 && texture.scaleMode === SCALE_MODES.LINEAR) + { + var level = Math.min(texture.anisotropicLevel, gl.getParameter(anisotropicExt.MAX_TEXTURE_MAX_ANISOTROPY_EXT)); + + gl.texParameterf(texture.target, anisotropicExt.TEXTURE_MAX_ANISOTROPY_EXT, level); + } + } + else + { + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + } + + gl.texParameteri(texture.target, gl.TEXTURE_MAG_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + }; + + return TextureSystem; +}(System)); + +var tempMatrix = new Matrix(); + +/** + * The AbstractRenderer is the base for a PixiJS Renderer. It is extended by the {@link PIXI.CanvasRenderer} + * and {@link PIXI.Renderer} which can be used for rendering a PixiJS scene. + * + * @abstract + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var AbstractRenderer = /*@__PURE__*/(function (EventEmitter) { + function AbstractRenderer(system, options) + { + EventEmitter.call(this); + + // Add the default render options + options = Object.assign({}, settings.RENDER_OPTIONS, options); + + // Deprecation notice for renderer roundPixels option + if (options.roundPixels) + { + settings.ROUND_PIXELS = options.roundPixels; + deprecation('5.0.0', 'Renderer roundPixels option is deprecated, please use PIXI.settings.ROUND_PIXELS', 2); + } + + /** + * The supplied constructor options. + * + * @member {Object} + * @readOnly + */ + this.options = options; + + /** + * The type of the renderer. + * + * @member {number} + * @default PIXI.RENDERER_TYPE.UNKNOWN + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.UNKNOWN; + + /** + * Measurements of the screen. (0, 0, screenWidth, screenHeight). + * + * Its safe to use as filterArea or hitArea for the whole stage. + * + * @member {PIXI.Rectangle} + */ + this.screen = new Rectangle(0, 0, options.width, options.height); + + /** + * The canvas element that everything is drawn to. + * + * @member {HTMLCanvasElement} + */ + this.view = options.view || document.createElement('canvas'); + + /** + * The resolution / device pixel ratio of the renderer. + * + * @member {number} + * @default 1 + */ + this.resolution = options.resolution || settings.RESOLUTION; + + /** + * Whether the render view is transparent. + * + * @member {boolean} + */ + this.transparent = options.transparent; + + /** + * Whether CSS dimensions of canvas view should be resized to screen dimensions automatically. + * + * @member {boolean} + */ + this.autoDensity = options.autoDensity || options.autoResize || false; + // autoResize is deprecated, provides fallback support + + /** + * The value of the preserveDrawingBuffer flag affects whether or not the contents of + * the stencil buffer is retained after rendering. + * + * @member {boolean} + */ + this.preserveDrawingBuffer = options.preserveDrawingBuffer; + + /** + * This sets if the CanvasRenderer will clear the canvas or not before the new render pass. + * If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every + * frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect + * to clear the canvas every frame. Disable this by setting this to false. For example, if + * your game has a canvas filling background image you often don't need this set. + * + * @member {boolean} + * @default + */ + this.clearBeforeRender = options.clearBeforeRender; + + /** + * The background color as a number. + * + * @member {number} + * @protected + */ + this._backgroundColor = 0x000000; + + /** + * The background color as an [R, G, B] array. + * + * @member {number[]} + * @protected + */ + this._backgroundColorRgba = [0, 0, 0, 0]; + + /** + * The background color as a string. + * + * @member {string} + * @protected + */ + this._backgroundColorString = '#000000'; + + this.backgroundColor = options.backgroundColor || this._backgroundColor; // run bg color setter + + /** + * This temporary display object used as the parent of the currently being rendered item. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._tempDisplayObjectParent = new Container(); + + /** + * The last root object that the renderer tried to render. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._lastObjectRendered = this._tempDisplayObjectParent; + + /** + * Collection of plugins. + * @readonly + * @member {object} + */ + this.plugins = {}; + } + + if ( EventEmitter ) AbstractRenderer.__proto__ = EventEmitter; + AbstractRenderer.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + AbstractRenderer.prototype.constructor = AbstractRenderer; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },backgroundColor: { configurable: true } }; + + /** + * Initialize the plugins. + * + * @protected + * @param {object} staticMap - The dictionary of statically saved plugins. + */ + AbstractRenderer.prototype.initPlugins = function initPlugins (staticMap) + { + for (var o in staticMap) + { + this.plugins[o] = new (staticMap[o])(this); + } + }; + + /** + * Same as view.width, actual number of pixels in the canvas by horizontal. + * + * @member {number} + * @readonly + * @default 800 + */ + prototypeAccessors.width.get = function () + { + return this.view.width; + }; + + /** + * Same as view.height, actual number of pixels in the canvas by vertical. + * + * @member {number} + * @readonly + * @default 600 + */ + prototypeAccessors.height.get = function () + { + return this.view.height; + }; + + /** + * Resizes the screen and canvas to the specified width and height. + * Canvas dimensions are multiplied by resolution. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + AbstractRenderer.prototype.resize = function resize (screenWidth, screenHeight) + { + this.screen.width = screenWidth; + this.screen.height = screenHeight; + + this.view.width = screenWidth * this.resolution; + this.view.height = screenHeight * this.resolution; + + if (this.autoDensity) + { + this.view.style.width = screenWidth + "px"; + this.view.style.height = screenHeight + "px"; + } + }; + + /** + * Useful function that returns a texture of the display object that can then be used to create sprites + * This can be quite useful if your displayObject is complicated and needs to be reused multiple times. + * + * @param {PIXI.DisplayObject} displayObject - The displayObject the object will be generated from. + * @param {number} scaleMode - Should be one of the scaleMode consts. + * @param {number} resolution - The resolution / device pixel ratio of the texture being generated. + * @param {PIXI.Rectangle} [region] - The region of the displayObject, that shall be rendered, + * if no region is specified, defaults to the local bounds of the displayObject. + * @return {PIXI.RenderTexture} A texture of the graphics object. + */ + AbstractRenderer.prototype.generateTexture = function generateTexture (displayObject, scaleMode, resolution, region) + { + region = region || displayObject.getLocalBounds(); + + // minimum texture size is 1x1, 0x0 will throw an error + if (region.width === 0) { region.width = 1; } + if (region.height === 0) { region.height = 1; } + + var renderTexture = RenderTexture.create(region.width | 0, region.height | 0, scaleMode, resolution); + + tempMatrix.tx = -region.x; + tempMatrix.ty = -region.y; + + this.render(displayObject, renderTexture, false, tempMatrix, !!displayObject.parent); + + return renderTexture; + }; + + /** + * Removes everything from the renderer and optionally removes the Canvas DOM element. + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + */ + AbstractRenderer.prototype.destroy = function destroy (removeView) + { + for (var o in this.plugins) + { + this.plugins[o].destroy(); + this.plugins[o] = null; + } + + if (removeView && this.view.parentNode) + { + this.view.parentNode.removeChild(this.view); + } + + this.plugins = null; + + this.type = RENDERER_TYPE.UNKNOWN; + + this.view = null; + + this.screen = null; + + this.resolution = 0; + + this.transparent = false; + + this.autoDensity = false; + + this.blendModes = null; + + this.options = null; + + this.preserveDrawingBuffer = false; + this.clearBeforeRender = false; + + this._backgroundColor = 0; + this._backgroundColorRgba = null; + this._backgroundColorString = null; + + this._tempDisplayObjectParent = null; + this._lastObjectRendered = null; + }; + + /** + * The background color to fill if not transparent + * + * @member {number} + */ + prototypeAccessors.backgroundColor.get = function () + { + return this._backgroundColor; + }; + + prototypeAccessors.backgroundColor.set = function (value) // eslint-disable-line require-jsdoc + { + this._backgroundColor = value; + this._backgroundColorString = hex2string(value); + hex2rgb(value, this._backgroundColorRgba); + }; + + Object.defineProperties( AbstractRenderer.prototype, prototypeAccessors ); + + return AbstractRenderer; +}(eventemitter3)); + +/** + * The Renderer draws the scene and all its content onto a WebGL enabled canvas. + * + * This renderer should be used for browsers that support WebGL. + * + * This renderer works by automatically managing WebGLBatchesm, so no need for Sprite Batches or Sprite Clouds. + * Don't forget to add the view to your DOM or you will not see anything! + * + * @class + * @memberof PIXI + * @extends PIXI.AbstractRenderer + */ +var Renderer = /*@__PURE__*/(function (AbstractRenderer) { + function Renderer(options) + { + if ( options === void 0 ) options = {}; + + AbstractRenderer.call(this, 'WebGL', options); + + // the options will have been modified here in the super constructor with pixi's default settings.. + options = this.options; + + /** + * The type of this renderer as a standardized const + * + * @member {number} + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.WEBGL; + + /** + * WebGL context, set by the contextSystem (this.context) + * + * @readonly + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.CONTEXT_UID = 0; + + // TODO legacy! + + /** + * Internal signal instances of **runner**, these + * are assigned to each system created. + * @see PIXI.Runner + * @name PIXI.Renderer#runners + * @private + * @type {object} + * @readonly + * @property {PIXI.Runner} destroy - Destroy runner + * @property {PIXI.Runner} contextChange - Context change runner + * @property {PIXI.Runner} reset - Reset runner + * @property {PIXI.Runner} update - Update runner + * @property {PIXI.Runner} postrender - Post-render runner + * @property {PIXI.Runner} prerender - Pre-render runner + * @property {PIXI.Runner} resize - Resize runner + */ + this.runners = { + destroy: new Runner('destroy'), + contextChange: new Runner('contextChange', 1), + reset: new Runner('reset'), + update: new Runner('update'), + postrender: new Runner('postrender'), + prerender: new Runner('prerender'), + resize: new Runner('resize', 2), + }; + + /** + * Global uniforms + * @member {PIXI.UniformGroup} + */ + this.globalUniforms = new UniformGroup({ + projectionMatrix: new Matrix(), + }, true); + + /** + * Mask system instance + * @member {PIXI.systems.MaskSystem} mask + * @memberof PIXI.Renderer# + * @readonly + */ + this.addSystem(MaskSystem, 'mask') + /** + * Context system instance + * @member {PIXI.systems.ContextSystem} context + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ContextSystem, 'context') + /** + * State system instance + * @member {PIXI.systems.StateSystem} state + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StateSystem, 'state') + /** + * Shader system instance + * @member {PIXI.systems.ShaderSystem} shader + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ShaderSystem, 'shader') + /** + * Texture system instance + * @member {PIXI.systems.TextureSystem} texture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureSystem, 'texture') + /** + * Geometry system instance + * @member {PIXI.systems.GeometrySystem} geometry + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(GeometrySystem, 'geometry') + /** + * Framebuffer system instance + * @member {PIXI.systems.FramebufferSystem} framebuffer + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FramebufferSystem, 'framebuffer') + /** + * Stencil system instance + * @member {PIXI.systems.StencilSystem} stencil + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StencilSystem, 'stencil') + /** + * Projection system instance + * @member {PIXI.systems.ProjectionSystem} projection + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ProjectionSystem, 'projection') + /** + * Texture garbage collector system instance + * @member {PIXI.systems.TextureGCSystem} textureGC + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureGCSystem, 'textureGC') + /** + * Filter system instance + * @member {PIXI.systems.FilterSystem} filter + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FilterSystem, 'filter') + /** + * RenderTexture system instance + * @member {PIXI.systems.RenderTextureSystem} renderTexture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(RenderTextureSystem, 'renderTexture') + + /** + * Batch system instance + * @member {PIXI.systems.BatchSystem} batch + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(BatchSystem, 'batch'); + + this.initPlugins(Renderer.__plugins); + + /** + * The options passed in to create a new WebGL context. + */ + if (options.context) + { + this.context.initFromContext(options.context); + } + else + { + this.context.initFromOptions({ + alpha: this.transparent, + antialias: options.antialias, + premultipliedAlpha: this.transparent && this.transparent !== 'notMultiplied', + stencil: true, + preserveDrawingBuffer: options.preserveDrawingBuffer, + powerPreference: this.options.powerPreference, + }); + } + + /** + * Flag if we are rendering to the screen vs renderTexture + * @member {boolean} + * @readonly + * @default true + */ + this.renderingToScreen = true; + + sayHello(this.context.webGLVersion === 2 ? 'WebGL 2' : 'WebGL 1'); + + this.resize(this.options.width, this.options.height); + } + + if ( AbstractRenderer ) Renderer.__proto__ = AbstractRenderer; + Renderer.prototype = Object.create( AbstractRenderer && AbstractRenderer.prototype ); + Renderer.prototype.constructor = Renderer; + + /** + * Add a new system to the renderer. + * @param {Function} ClassRef - Class reference + * @param {string} [name] - Property name for system, if not specified + * will use a static `name` property on the class itself. This + * name will be assigned as s property on the Renderer so make + * sure it doesn't collide with properties on Renderer. + * @return {PIXI.Renderer} Return instance of renderer + */ + Renderer.create = function create (options) + { + if (isWebGLSupported()) + { + return new Renderer(options); + } + + throw new Error('WebGL unsupported in this browser, use "pixi.js-legacy" for fallback canvas2d support.'); + }; + + Renderer.prototype.addSystem = function addSystem (ClassRef, name) + { + if (!name) + { + name = ClassRef.name; + } + + var system = new ClassRef(this); + + if (this[name]) + { + throw new Error(("Whoops! The name \"" + name + "\" is already in use")); + } + + this[name] = system; + + for (var i in this.runners) + { + this.runners[i].add(system); + } + + /** + * Fired after rendering finishes. + * + * @event PIXI.Renderer#postrender + */ + + /** + * Fired before rendering starts. + * + * @event PIXI.Renderer#prerender + */ + + /** + * Fired when the WebGL context is set. + * + * @event PIXI.Renderer#context + * @param {WebGLRenderingContext} gl - WebGL context. + */ + + return this; + }; + + /** + * Renders the object to its WebGL view + * + * @param {PIXI.DisplayObject} displayObject - The object to be rendered. + * @param {PIXI.RenderTexture} [renderTexture] - The render texture to render to. + * @param {boolean} [clear=true] - Should the canvas be cleared before the new render. + * @param {PIXI.Matrix} [transform] - A transform to apply to the render texture before rendering. + * @param {boolean} [skipUpdateTransform=false] - Should we skip the update transform pass? + */ + Renderer.prototype.render = function render (displayObject, renderTexture, clear, transform, skipUpdateTransform) + { + // can be handy to know! + this.renderingToScreen = !renderTexture; + + this.runners.prerender.run(); + this.emit('prerender'); + + // apply a transform at a GPU level + this.projection.transform = transform; + + // no point rendering if our context has been blown up! + if (this.context.isLost) + { + return; + } + + if (!renderTexture) + { + this._lastObjectRendered = displayObject; + } + + if (!skipUpdateTransform) + { + // update the scene graph + var cacheParent = displayObject.parent; + + displayObject.parent = this._tempDisplayObjectParent; + displayObject.updateTransform(); + displayObject.parent = cacheParent; + // displayObject.hitArea = //TODO add a temp hit area + } + + this.renderTexture.bind(renderTexture); + this.batch.currentRenderer.start(); + + if (clear !== undefined ? clear : this.clearBeforeRender) + { + this.renderTexture.clear(); + } + + displayObject.render(this); + + // apply transform.. + this.batch.currentRenderer.flush(); + + if (renderTexture) + { + renderTexture.baseTexture.update(); + } + + this.runners.postrender.run(); + + // reset transform after render + this.projection.transform = null; + + this.emit('postrender'); + }; + + /** + * Resizes the WebGL view to the specified width and height. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + Renderer.prototype.resize = function resize (screenWidth, screenHeight) + { + AbstractRenderer.prototype.resize.call(this, screenWidth, screenHeight); + + this.runners.resize.run(screenWidth, screenHeight); + }; + + /** + * Resets the WebGL state so you can render things however you fancy! + * + * @return {PIXI.Renderer} Returns itself. + */ + Renderer.prototype.reset = function reset () + { + this.runners.reset.run(); + + return this; + }; + + /** + * Clear the frame buffer + */ + Renderer.prototype.clear = function clear () + { + this.framebuffer.bind(); + this.framebuffer.clear(); + }; + + /** + * Removes everything from the renderer (event listeners, spritebatch, etc...) + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + * See: https://github.com/pixijs/pixi.js/issues/2233 + */ + Renderer.prototype.destroy = function destroy (removeView) + { + this.runners.destroy.run(); + + for (var r in this.runners) + { + this.runners[r].destroy(); + } + + // call base destroy + AbstractRenderer.prototype.destroy.call(this, removeView); + + // TODO nullify all the managers.. + this.gl = null; + }; + + /** + * Collection of installed plugins. These are included by default in PIXI, but can be excluded + * by creating a custom build. Consult the README for more information about creating custom + * builds and excluding plugins. + * @name PIXI.Renderer#plugins + * @type {object} + * @readonly + * @property {PIXI.accessibility.AccessibilityManager} accessibility Support tabbing interactive elements. + * @property {PIXI.extract.Extract} extract Extract image data from renderer. + * @property {PIXI.interaction.InteractionManager} interaction Handles mouse, touch and pointer events. + * @property {PIXI.prepare.Prepare} prepare Pre-render display objects. + */ + + /** + * Adds a plugin to the renderer. + * + * @method + * @param {string} pluginName - The name of the plugin. + * @param {Function} ctor - The constructor function or class for the plugin. + */ + Renderer.registerPlugin = function registerPlugin (pluginName, ctor) + { + Renderer.__plugins = Renderer.__plugins || {}; + Renderer.__plugins[pluginName] = ctor; + }; + + return Renderer; +}(AbstractRenderer)); + +/** + * This helper function will automatically detect which renderer you should be using. + * WebGL is the preferred renderer as it is a lot faster. If WebGL is not supported by + * the browser then this function will return a canvas renderer + * + * @memberof PIXI + * @function autoDetectRenderer + * @param {object} [options] - The optional renderer parameters + * @param {number} [options.width=800] - the width of the renderers view + * @param {number} [options.height=600] - the height of the renderers view + * @param {HTMLCanvasElement} [options.view] - the canvas to use as a view, optional + * @param {boolean} [options.transparent=false] - If the render view is transparent, default false + * @param {boolean} [options.autoDensity=false] - Resizes renderer view in CSS pixels to allow for + * resolutions other than 1 + * @param {boolean} [options.antialias=false] - sets antialias + * @param {boolean} [options.preserveDrawingBuffer=false] - enables drawing buffer preservation, enable this if you + * need to call toDataUrl on the webgl context + * @param {number} [options.backgroundColor=0x000000] - The background color of the rendered area + * (shown if not transparent). + * @param {boolean} [options.clearBeforeRender=true] - This sets if the renderer will clear the canvas or + * not before the new render pass. + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the renderer, retina would be 2 + * @param {boolean} [options.forceCanvas=false] - prevents selection of WebGL renderer, even if such is present, this + * option only is available when using **pixi.js-legacy** or **@pixi/canvas-renderer** modules, otherwise + * it is ignored. + * @param {boolean} [options.forceFXAA=false] - forces FXAA antialiasing to be used over native. + * FXAA is faster, but may not always look as great **webgl only** + * @param {string} [options.powerPreference] - Parameter passed to webgl context, set to "high-performance" + * for devices with dual graphics card **webgl only** + * @return {PIXI.Renderer|PIXI.CanvasRenderer} Returns WebGL renderer if available, otherwise CanvasRenderer + */ +function autoDetectRenderer(options) +{ + return Renderer.create(options); +} + +var defaultFilter = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +/** + * Used by the batcher to draw batches. + * Each one of these contains all information required to draw a bound geometry. + * + * @class + * @memberof PIXI + */ +var BatchDrawCall = function BatchDrawCall() +{ + this.textures = []; + this.ids = []; + this.blend = 0; + this.textureCount = 0; + this.start = 0; + this.size = 0; + this.type = 4; +}; + +/** + * Flexible wrapper around `ArrayBuffer` that also provides + * typed array views on demand. + * + * @class + * @memberof PIXI + */ +var ViewableBuffer = function ViewableBuffer(size) +{ + /** + * Underlying `ArrayBuffer` that holds all the data + * and is of capacity `size`. + * + * @member {ArrayBuffer} + */ + this.rawBinaryData = new ArrayBuffer(size); + + /** + * View on the raw binary data as a `Uint32Array`. + * + * @member {Uint32Array} + */ + this.uint32View = new Uint32Array(this.rawBinaryData); + + /** + * View on the raw binary data as a `Float32Array`. + * + * @member {Float32Array} + */ + this.float32View = new Float32Array(this.rawBinaryData); +}; + +var prototypeAccessors$5$1 = { int8View: { configurable: true },uint8View: { configurable: true },int16View: { configurable: true },uint16View: { configurable: true },int32View: { configurable: true } }; + +/** + * View on the raw binary data as a `Int8Array`. + * + * @member {Int8Array} + */ +prototypeAccessors$5$1.int8View.get = function () +{ + if (!this._int8View) + { + this._int8View = new Int8Array(this.rawBinaryData); + } + + return this._int8View; +}; + +/** + * View on the raw binary data as a `Uint8Array`. + * + * @member {Uint8Array} + */ +prototypeAccessors$5$1.uint8View.get = function () +{ + if (!this._uint8View) + { + this._uint8View = new Uint8Array(this.rawBinaryData); + } + + return this._uint8View; +}; + +/** + * View on the raw binary data as a `Int16Array`. + * + * @member {Int16Array} + */ +prototypeAccessors$5$1.int16View.get = function () +{ + if (!this._int16View) + { + this._int16View = new Int16Array(this.rawBinaryData); + } + + return this._int16View; +}; + +/** + * View on the raw binary data as a `Uint16Array`. + * + * @member {Uint16Array} + */ +prototypeAccessors$5$1.uint16View.get = function () +{ + if (!this._uint16View) + { + this._uint16View = new Uint16Array(this.rawBinaryData); + } + + return this._uint16View; +}; + +/** + * View on the raw binary data as a `Int32Array`. + * + * @member {Int32Array} + */ +prototypeAccessors$5$1.int32View.get = function () +{ + if (!this._int32View) + { + this._int32View = new Int32Array(this.rawBinaryData); + } + + return this._int32View; +}; + +/** + * Returns the view of the given type. + * + * @param {string} type - One of `int8`, `uint8`, `int16`, + *`uint16`, `int32`, `uint32`, and `float32`. + * @return {object} typed array of given type + */ +ViewableBuffer.prototype.view = function view (type) +{ + return this[(type + "View")]; +}; + +/** + * Destroys all buffer references. Do not use after calling + * this. + */ +ViewableBuffer.prototype.destroy = function destroy () +{ + this.rawBinaryData = null; + this._int8View = null; + this._uint8View = null; + this._int16View = null; + this._uint16View = null; + this._int32View = null; + this.uint32View = null; + this.float32View = null; +}; + +ViewableBuffer.sizeOf = function sizeOf (type) +{ + switch (type) + { + case 'int8': + case 'uint8': + return 1; + case 'int16': + case 'uint16': + return 2; + case 'int32': + case 'uint32': + case 'float32': + return 4; + default: + throw new Error((type + " isn't a valid view type")); + } +}; + +Object.defineProperties( ViewableBuffer.prototype, prototypeAccessors$5$1 ); + +/** + * Renderer dedicated to drawing and batching sprites. + * + * This is the default batch renderer. It buffers objects + * with texture-based geometries and renders them in + * batches. It uploads multiple textures to the GPU to + * reduce to the number of draw calls. + * + * @class + * @protected + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var AbstractBatchRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function AbstractBatchRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + /** + * This is used to generate a shader that can + * color each vertex based on a `aTextureId` + * attribute that points to an texture in `uSampler`. + * + * This enables the objects with different textures + * to be drawn in the same draw call. + * + * You can customize your shader by creating your + * custom shader generator. + * + * @member {PIXI.BatchShaderGenerator} + * @protected + */ + this.shaderGenerator = null; + + /** + * The class that represents the geometry of objects + * that are going to be batched with this. + * + * @member {object} + * @default PIXI.BatchGeometry + * @protected + */ + this.geometryClass = null; + + /** + * Size of data being buffered per vertex in the + * attribute buffers (in floats). By default, the + * batch-renderer plugin uses 6: + * + * | aVertexPosition | 2 | + * |-----------------|---| + * | aTextureCoords | 2 | + * | aColor | 1 | + * | aTextureId | 1 | + * + * @member {number} + * @readonly + */ + this.vertexSize = null; + + /** + * The WebGL state in which this renderer will work. + * + * @member {PIXI.State} + * @readonly + */ + this.state = State.for2d(); + + /** + * The number of bufferable objects before a flush + * occurs automatically. + * + * @member {number} + * @default settings.SPRITE_MAX_TEXTURES + */ + this.size = 2000 * 4;// settings.SPRITE_BATCH_SIZE, 2000 is a nice balance between mobile/desktop + + /** + * Total count of all vertices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._vertexCount = 0; + + /** + * Total count of all indices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._indexCount = 0; + + /** + * Buffer of objects that are yet to be rendered. + * + * @member {PIXI.DisplayObject[]} + * @private + */ + this._bufferedElements = []; + + /** + * Number of elements that are buffered and are + * waiting to be flushed. + * + * @member {number} + * @private + */ + this._bufferSize = 0; + + /** + * This shader is generated by `this.shaderGenerator`. + * + * It is generated specifically to handle the required + * number of textures being batched together. + * + * @member {PIXI.Shader} + * @protected + */ + this._shader = null; + + /** + * Pool of `this.geometryClass` geometry objects + * that store buffers. They are used to pass data + * to the shader on each draw call. + * + * These are never re-allocated again, unless a + * context change occurs; however, the pool may + * be expanded if required. + * + * @member {PIXI.Geometry[]} + * @private + * @see PIXI.AbstractBatchRenderer.contextChange + */ + this._packedGeometries = []; + + /** + * Size of `this._packedGeometries`. It can be expanded + * if more than `this._packedGeometryPoolSize` flushes + * occur in a single frame. + * + * @member {number} + * @private + */ + this._packedGeometryPoolSize = 2; + + /** + * A flush may occur multiple times in a single + * frame. On iOS devices or when + * `settings.CAN_UPLOAD_SAME_BUFFER` is false, the + * batch renderer does not upload data to the same + * `WebGLBuffer` for performance reasons. + * + * This is the index into `packedGeometries` that points to + * geometry holding the most recent buffers. + * + * @member {number} + * @private + */ + this._flushId = 0; + + /** + * Pool of `BatchDrawCall` objects that `flush` used + * to create "batches" of the objects being rendered. + * + * These are never re-allocated again. + * + * @member BatchDrawCall[] + * @private + */ + this._drawCalls = []; + + for (var k = 0; k < this.size / 4; k++) + { // initialize the draw-calls pool to max size. + this._drawCalls[k] = new BatchDrawCall(); + } + + /** + * Pool of `ViewableBuffer` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing attributes. + * + * The first buffer has a size of 8; each subsequent + * buffer has double capacity of its previous. + * + * @member {PIXI.ViewableBuffer} + * @private + * @see PIXI.AbstractBatchRenderer#getAttributeBuffer + */ + this._aBuffers = {}; + + /** + * Pool of `Uint16Array` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing indices. + * + * The first buffer has a size of 12; each subsequent + * buffer has double capacity of its previous. + * + * @member {Uint16Array[]} + * @private + * @see PIXI.AbstractBatchRenderer#getIndexBuffer + */ + this._iBuffers = {}; + + /** + * Maximum number of textures that can be uploaded to + * the GPU under the current context. It is initialized + * properly in `this.contextChange`. + * + * @member {number} + * @see PIXI.AbstractBatchRenderer#contextChange + * @readonly + */ + this.MAX_TEXTURES = 1; + + this.renderer.on('prerender', this.onPrerender, this); + renderer.runners.contextChange.add(this); + } + + if ( ObjectRenderer ) AbstractBatchRenderer.__proto__ = ObjectRenderer; + AbstractBatchRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + AbstractBatchRenderer.prototype.constructor = AbstractBatchRenderer; + + /** + * Handles the `contextChange` signal. + * + * It calculates `this.MAX_TEXTURES` and allocating the + * packed-geometry object pool. + */ + AbstractBatchRenderer.prototype.contextChange = function contextChange () + { + var gl = this.renderer.gl; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + this.MAX_TEXTURES = 1; + } + else + { + // step 1: first check max textures the GPU can handle. + this.MAX_TEXTURES = Math.min( + gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS), + settings.SPRITE_MAX_TEXTURES); + + // step 2: check the maximum number of if statements the shader can have too.. + this.MAX_TEXTURES = checkMaxIfStatementsInShader( + this.MAX_TEXTURES, gl); + } + + this._shader = this.shaderGenerator.generateShader(this.MAX_TEXTURES); + + // we use the second shader as the first one depending on your browser + // may omit aTextureId as it is not used by the shader so is optimized out. + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + /* eslint-disable max-len */ + this._packedGeometries[i] = new (this.geometryClass)(); + } + }; + + /** + * Handles the `prerender` signal. + * + * It ensures that flushes start from the first geometry + * object again. + */ + AbstractBatchRenderer.prototype.onPrerender = function onPrerender () + { + this._flushId = 0; + }; + + /** + * Buffers the "batchable" object. It need not be rendered + * immediately. + * + * @param {PIXI.Sprite} sprite - the sprite to render when + * using this spritebatch + */ + AbstractBatchRenderer.prototype.render = function render (element) + { + if (!element._texture.valid) + { + return; + } + + if (this._vertexCount + (element.vertexData.length / 2) > this.size) + { + this.flush(); + } + + this._vertexCount += element.vertexData.length / 2; + this._indexCount += element.indices.length; + this._bufferedElements[this._bufferSize++] = element; + }; + + /** + * Renders the content _now_ and empties the current batch. + */ + AbstractBatchRenderer.prototype.flush = function flush () + { + if (this._vertexCount === 0) + { + return; + } + + var attributeBuffer = this.getAttributeBuffer(this._vertexCount); + var indexBuffer = this.getIndexBuffer(this._indexCount); + var gl = this.renderer.gl; + + var ref = this; + var elements = ref._bufferedElements; + var drawCalls = ref._drawCalls; + var MAX_TEXTURES = ref.MAX_TEXTURES; + var packedGeometries = ref._packedGeometries; + var vertexSize = ref.vertexSize; + + var touch = this.renderer.textureGC.count; + + var index = 0; + var _indexCount = 0; + + var nextTexture; + var currentTexture; + var textureCount = 0; + + var currentGroup = drawCalls[0]; + var groupCount = 0; + + var blendMode = -1;// blend-mode of previous element/sprite/object! + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.blend = blendMode; + + var TICK = ++BaseTexture._globalBatch; + var i; + + for (i = 0; i < this._bufferSize; ++i) + { + var sprite = elements[i]; + + elements[i] = null; + nextTexture = sprite._texture.baseTexture; + + var spriteBlendMode = premultiplyBlendMode[ + nextTexture.premultiplyAlpha ? 1 : 0][sprite.blendMode]; + + if (blendMode !== spriteBlendMode) + { + blendMode = spriteBlendMode; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + currentGroup.size = _indexCount - currentGroup.start; + + currentGroup = drawCalls[groupCount++]; + currentGroup.textureCount = 0; + currentGroup.blend = blendMode; + currentGroup.start = _indexCount; + } + + nextTexture.touched = touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + this.packInterleavedGeometry(sprite, attributeBuffer, + indexBuffer, index, _indexCount); + + // push a graphics.. + index += (sprite.vertexData.length / 2) * vertexSize; + _indexCount += sprite.indices.length; + } + + BaseTexture._globalBatch = TICK; + currentGroup.size = _indexCount - currentGroup.start; + + if (!settings.CAN_UPLOAD_SAME_BUFFER) + { /* Usually on iOS devices, where the browser doesn't + like uploads to the same buffer in a single frame. */ + if (this._packedGeometryPoolSize <= this._flushId) + { + this._packedGeometryPoolSize++; + packedGeometries[this._flushId] = new (this.geometryClass)(); + } + + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.bind(packedGeometries[this._flushId]); + this.renderer.geometry.updateBuffers(); + this._flushId++; + } + else + { + // lets use the faster option, always use buffer number 0 + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.updateBuffers(); + } + + var textureSystem = this.renderer.texture; + var stateSystem = this.renderer.state; + + // Upload textures and do the draw calls + for (i = 0; i < groupCount; i++) + { + var group = drawCalls[i]; + var groupTextureCount = group.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + textureSystem.bind(group.textures[j], j); + group.textures[j] = null; + } + + stateSystem.setBlendMode(group.blend); + gl.drawElements(group.type, group.size, gl.UNSIGNED_SHORT, group.start * 2); + } + + // reset elements for the next flush + this._bufferSize = 0; + this._vertexCount = 0; + this._indexCount = 0; + }; + + /** + * Starts a new sprite batch. + */ + AbstractBatchRenderer.prototype.start = function start () + { + this.renderer.state.set(this.state); + + this.renderer.shader.bind(this._shader); + + if (settings.CAN_UPLOAD_SAME_BUFFER) + { + // bind buffer #0, we don't need others + this.renderer.geometry.bind(this._packedGeometries[this._flushId]); + } + }; + + /** + * Stops and flushes the current batch. + */ + AbstractBatchRenderer.prototype.stop = function stop () + { + this.flush(); + }; + + /** + * Destroys this `AbstractBatchRenderer`. It cannot be used again. + */ + AbstractBatchRenderer.prototype.destroy = function destroy () + { + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + if (this._packedGeometries[i]) + { + this._packedGeometries[i].destroy(); + } + } + + this.renderer.off('prerender', this.onPrerender, this); + + this._aBuffers = null; + this._iBuffers = null; + this._packedGeometries = null; + this._drawCalls = null; + + if (this._shader) + { + this._shader.destroy(); + this._shader = null; + } + + ObjectRenderer.prototype.destroy.call(this); + }; + + /** + * Fetches an attribute buffer from `this._aBuffers` that + * can hold atleast `size` floats. + * + * @param {number} size - minimum capacity required + * @return {ViewableBuffer} - buffer than can hold atleast `size` floats + * @private + */ + AbstractBatchRenderer.prototype.getAttributeBuffer = function getAttributeBuffer (size) + { + // 8 vertices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 8)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 8; + + if (this._aBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._aBuffers[roundedSize]; + + if (!buffer) + { + this._aBuffers[roundedSize] = buffer = new ViewableBuffer(roundedSize * this.vertexSize * 4); + } + + return buffer; + }; + + /** + * Fetches an index buffer from `this._iBuffers` that can + * has atleast `size` capacity. + * + * @param {number} size - minimum required capacity + * @return {Uint16Array} - buffer that can fit `size` + * indices. + * @private + */ + AbstractBatchRenderer.prototype.getIndexBuffer = function getIndexBuffer (size) + { + // 12 indices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 12)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 12; + + if (this._iBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._iBuffers[roundedSizeIndex]; + + if (!buffer) + { + this._iBuffers[roundedSizeIndex] = buffer = new Uint16Array(roundedSize); + } + + return buffer; + }; + + /** + * Takes the four batching parameters of `element`, interleaves + * and pushes them into the batching attribute/index buffers given. + * + * It uses these properties: `vertexData` `uvs`, `textureId` and + * `indicies`. It also uses the "tint" of the base-texture, if + * present. + * + * @param {PIXI.Sprite} element - element being rendered + * @param {PIXI.ViewableBuffer} attributeBuffer - attribute buffer. + * @param {Uint16Array} indexBuffer - index buffer + * @param {number} aIndex - number of floats already in the attribute buffer + * @param {number} iIndex - number of indices already in `indexBuffer` + */ + AbstractBatchRenderer.prototype.packInterleavedGeometry = function packInterleavedGeometry (element, attributeBuffer, indexBuffer, aIndex, iIndex) + { + var uint32View = attributeBuffer.uint32View; + var float32View = attributeBuffer.float32View; + + var packedVertices = aIndex / this.vertexSize; + var uvs = element.uvs; + var indicies = element.indices; + var vertexData = element.vertexData; + var textureId = element._texture.baseTexture._id; + + var alpha = Math.min(element.worldAlpha, 1.0); + var argb = (alpha < 1.0 + && element._texture.baseTexture.premultiplyAlpha) + ? premultiplyTint(element._tintRGB, alpha) + : element._tintRGB + (alpha * 255 << 24); + + // lets not worry about tint! for now.. + for (var i = 0; i < vertexData.length; i += 2) + { + float32View[aIndex++] = vertexData[i]; + float32View[aIndex++] = vertexData[i + 1]; + float32View[aIndex++] = uvs[i]; + float32View[aIndex++] = uvs[i + 1]; + uint32View[aIndex++] = argb; + float32View[aIndex++] = textureId; + } + + for (var i$1 = 0; i$1 < indicies.length; i$1++) + { + indexBuffer[iIndex++] = packedVertices + indicies[i$1]; + } + }; + + return AbstractBatchRenderer; +}(ObjectRenderer)); + +/** + * Helper that generates batching multi-texture shader. Use it with your new BatchRenderer + * + * @class + * @memberof PIXI + */ +var BatchShaderGenerator = function BatchShaderGenerator(vertexSrc, fragTemplate) +{ + /** + * Reference to the vertex shader source. + * + * @member {string} + */ + this.vertexSrc = vertexSrc; + + /** + * Reference to the fragement shader template. Must contain "%count%" and "%forloop%". + * + * @member {string} + */ + this.fragTemplate = fragTemplate; + + this.programCache = {}; + this.defaultGroupCache = {}; + + if (fragTemplate.indexOf('%count%') < 0) + { + throw new Error('Fragment template must contain "%count%".'); + } + + if (fragTemplate.indexOf('%forloop%') < 0) + { + throw new Error('Fragment template must contain "%forloop%".'); + } +}; + +BatchShaderGenerator.prototype.generateShader = function generateShader (maxTextures) +{ + if (!this.programCache[maxTextures]) + { + var sampleValues = new Int32Array(maxTextures); + + for (var i = 0; i < maxTextures; i++) + { + sampleValues[i] = i; + } + + this.defaultGroupCache[maxTextures] = UniformGroup.from({ uSamplers: sampleValues }, true); + + var fragmentSrc = this.fragTemplate; + + fragmentSrc = fragmentSrc.replace(/%count%/gi, ("" + maxTextures)); + fragmentSrc = fragmentSrc.replace(/%forloop%/gi, this.generateSampleSrc(maxTextures)); + + this.programCache[maxTextures] = new Program(this.vertexSrc, fragmentSrc); + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: this.defaultGroupCache[maxTextures], + }; + + return new Shader(this.programCache[maxTextures], uniforms); +}; + +BatchShaderGenerator.prototype.generateSampleSrc = function generateSampleSrc (maxTextures) +{ + var src = ''; + + src += '\n'; + src += '\n'; + + for (var i = 0; i < maxTextures; i++) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxTextures - 1) + { + src += "if(vTextureId < " + i + ".5)"; + } + + src += '\n{'; + src += "\n\tcolor = texture2D(uSamplers[" + i + "], vTextureCoord);"; + src += '\n}'; + } + + src += '\n'; + src += '\n'; + + return src; +}; + +/** + * Geometry used to batch standard PIXI content (e.g. Mesh, Sprite, Graphics objects). + * + * @class + * @memberof PIXI + */ +var BatchGeometry = /*@__PURE__*/(function (Geometry) { + function BatchGeometry(_static) + { + if ( _static === void 0 ) _static = false; + + Geometry.call(this); + + /** + * Buffer used for position, color, texture IDs + * + * @member {PIXI.Buffer} + * @protected + */ + this._buffer = new Buffer$1(null, _static, false); + + /** + * Index buffer data + * + * @member {PIXI.Buffer} + * @protected + */ + this._indexBuffer = new Buffer$1(null, _static, true); + + this.addAttribute('aVertexPosition', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aTextureCoord', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aColor', this._buffer, 4, true, TYPES.UNSIGNED_BYTE) + .addAttribute('aTextureId', this._buffer, 1, true, TYPES.FLOAT) + .addIndex(this._indexBuffer); + } + + if ( Geometry ) BatchGeometry.__proto__ = Geometry; + BatchGeometry.prototype = Object.create( Geometry && Geometry.prototype ); + BatchGeometry.prototype.constructor = BatchGeometry; + + return BatchGeometry; +}(Geometry)); + +var defaultVertex$2 = "precision highp float;\nattribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\nattribute float aTextureId;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform vec4 tint;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vTextureId = aTextureId;\n vColor = aColor * tint;\n}\n"; + +var defaultFragment$2 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\nuniform sampler2D uSamplers[%count%];\n\nvoid main(void){\n vec4 color;\n %forloop%\n gl_FragColor = color * vColor;\n}\n"; + +/** + * @class + * @memberof PIXI + * @hideconstructor + */ +var BatchPluginFactory = function BatchPluginFactory () {}; + +var staticAccessors$1$1 = { defaultVertexSrc: { configurable: true },defaultFragmentTemplate: { configurable: true } }; + +BatchPluginFactory.create = function create (options) +{ + var ref = Object.assign({ + vertex: defaultVertex$2, + fragment: defaultFragment$2, + geometryClass: BatchGeometry, + vertexSize: 6, + }, options); + var vertex = ref.vertex; + var fragment = ref.fragment; + var vertexSize = ref.vertexSize; + var geometryClass = ref.geometryClass; + + return /*@__PURE__*/(function (AbstractBatchRenderer) { + function BatchPlugin(renderer) + { + AbstractBatchRenderer.call(this, renderer); + + this.shaderGenerator = new BatchShaderGenerator(vertex, fragment); + this.geometryClass = geometryClass; + this.vertexSize = vertexSize; + } + + if ( AbstractBatchRenderer ) BatchPlugin.__proto__ = AbstractBatchRenderer; + BatchPlugin.prototype = Object.create( AbstractBatchRenderer && AbstractBatchRenderer.prototype ); + BatchPlugin.prototype.constructor = BatchPlugin; + + return BatchPlugin; + }(AbstractBatchRenderer)); +}; + +/** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultVertexSrc.get = function () +{ + return defaultVertex$2; +}; + +/** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultFragmentTemplate.get = function () +{ + return defaultFragment$2; +}; + +Object.defineProperties( BatchPluginFactory, staticAccessors$1$1 ); + +// Setup the default BatchRenderer plugin, this is what +// we'll actually export at the root level +var BatchRenderer = BatchPluginFactory.create(); + +/*! + * @pixi/extract - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/extract is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var TEMP_RECT = new Rectangle(); +var BYTES_PER_PIXEL = 4; + +/** + * The extract manager provides functionality to export content from the renderers. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.extract` + * + * @class + * @memberof PIXI.extract + */ +var Extract = function Extract(renderer) +{ + this.renderer = renderer; + /** + * Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture + * + * @member {PIXI.extract.Extract} extract + * @memberof PIXI.Renderer# + * @see PIXI.extract.Extract + */ + renderer.extract = this; +}; + +/** + * Will return a HTML Image of the target + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {HTMLImageElement} HTML Image of the target + */ +Extract.prototype.image = function image (target, format, quality) +{ + var image = new Image(); + + image.src = this.base64(target, format, quality); + + return image; +}; + +/** + * Will return a a base64 encoded string of this target. It works by calling + * `Extract.getCanvas` and then running toDataURL on that. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {string} A base64 encoded string of the texture. + */ +Extract.prototype.base64 = function base64 (target, format, quality) +{ + return this.canvas(target).toDataURL(format, quality); +}; + +/** + * Creates a Canvas element, renders this target to it and then returns it. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {HTMLCanvasElement} A Canvas element with the texture rendered on. + */ +Extract.prototype.canvas = function canvas (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var flipY = false; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + flipY = false; + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = this.renderer.resolution; + + flipY = true; + + frame = TEMP_RECT; + frame.width = this.renderer.width; + frame.height = this.renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = Math.floor(frame.width * resolution); + var height = Math.floor(frame.height * resolution); + + var canvasBuffer = new CanvasRenderTarget(width, height, 1); + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + // add the pixels to the canvas + var canvasData = canvasBuffer.context.getImageData(0, 0, width, height); + + Extract.arrayPostDivide(webglPixels, canvasData.data); + + canvasBuffer.context.putImageData(canvasData, 0, 0); + + // pulling pixels + if (flipY) + { + canvasBuffer.context.scale(1, -1); + canvasBuffer.context.drawImage(canvasBuffer.canvas, 0, -height); + } + + if (generated) + { + renderTexture.destroy(true); + } + + // send the canvas back.. + return canvasBuffer.canvas; +}; + +/** + * Will return a one-dimensional array containing the pixel data of the entire texture in RGBA + * order, with integer values between 0 and 255 (included). + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {Uint8Array} One-dimensional array containing the pixel data of the entire texture + */ +Extract.prototype.pixels = function pixels (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + + // bind the buffer + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = renderer.resolution; + + frame = TEMP_RECT; + frame.width = renderer.width; + frame.height = renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = frame.width * resolution; + var height = frame.height * resolution; + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + if (generated) + { + renderTexture.destroy(true); + } + + Extract.arrayPostDivide(webglPixels, webglPixels); + + return webglPixels; +}; + +/** + * Destroys the extract + * + */ +Extract.prototype.destroy = function destroy () +{ + this.renderer.extract = null; + this.renderer = null; +}; + +/** + * Takes premultiplied pixel data and produces regular pixel data + * + * @private + * @param pixels {number[] | Uint8Array | Uint8ClampedArray} array of pixel data + * @param out {number[] | Uint8Array | Uint8ClampedArray} output array + */ +Extract.arrayPostDivide = function arrayPostDivide (pixels, out) +{ + for (var i = 0; i < pixels.length; i += 4) + { + var alpha = out[i + 3] = pixels[i + 3]; + + if (alpha !== 0) + { + out[i] = Math.round(Math.min(pixels[i] * 255.0 / alpha, 255.0)); + out[i + 1] = Math.round(Math.min(pixels[i + 1] * 255.0 / alpha, 255.0)); + out[i + 2] = Math.round(Math.min(pixels[i + 2] * 255.0 / alpha, 255.0)); + } + else + { + out[i] = pixels[i]; + out[i + 1] = pixels[i + 1]; + out[i + 2] = pixels[i + 2]; + } + } +}; + +/*! + * @pixi/interaction - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/interaction is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Holds all information related to an Interaction event + * + * @class + * @memberof PIXI.interaction + */ +var InteractionData = function InteractionData() +{ + /** + * This point stores the global coords of where the touch/mouse event happened + * + * @member {PIXI.Point} + */ + this.global = new Point(); + + /** + * The target Sprite that was interacted with + * + * @member {PIXI.Sprite} + */ + this.target = null; + + /** + * When passed to an event handler, this will be the original DOM Event that was captured + * + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent + * @member {MouseEvent|TouchEvent|PointerEvent} + */ + this.originalEvent = null; + + /** + * Unique identifier for this interaction + * + * @member {number} + */ + this.identifier = null; + + /** + * Indicates whether or not the pointer device that created the event is the primary pointer. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary + * @type {Boolean} + */ + this.isPrimary = false; + + /** + * Indicates which button was pressed on the mouse or pointer device to trigger the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button + * @type {number} + */ + this.button = 0; + + /** + * Indicates which buttons are pressed on the mouse or pointer device when the event is triggered. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/buttons + * @type {number} + */ + this.buttons = 0; + + /** + * The width of the pointer's contact along the x-axis, measured in CSS pixels. + * radiusX of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width + * @type {number} + */ + this.width = 0; + + /** + * The height of the pointer's contact along the y-axis, measured in CSS pixels. + * radiusY of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height + * @type {number} + */ + this.height = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX + * @type {number} + */ + this.tiltX = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY + * @type {number} + */ + this.tiltY = 0; + + /** + * The type of pointer that triggered the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType + * @type {string} + */ + this.pointerType = null; + + /** + * Pressure applied by the pointing device during the event. A Touch's force property + * will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure + * @type {number} + */ + this.pressure = 0; + + /** + * From TouchEvents (not PointerEvents triggered by touches), the rotationAngle of the Touch. + * @see https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle + * @type {number} + */ + this.rotationAngle = 0; + + /** + * Twist of a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.twist = 0; + + /** + * Barrel pressure on a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.tangentialPressure = 0; +}; + +var prototypeAccessors$6 = { pointerId: { configurable: true } }; + +/** + * The unique identifier of the pointer. It will be the same as `identifier`. + * @readonly + * @member {number} + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId + */ +prototypeAccessors$6.pointerId.get = function () +{ + return this.identifier; +}; + +/** + * This will return the local coordinates of the specified displayObject for this InteractionData + * + * @param {PIXI.DisplayObject} displayObject - The DisplayObject that you would like the local + * coords off + * @param {PIXI.Point} [point] - A Point object in which to store the value, optional (otherwise + * will create a new point) + * @param {PIXI.Point} [globalPos] - A Point object containing your custom global coords, optional + * (otherwise will use the current global coords) + * @return {PIXI.Point} A point containing the coordinates of the InteractionData position relative + * to the DisplayObject + */ +InteractionData.prototype.getLocalPosition = function getLocalPosition (displayObject, point, globalPos) +{ + return displayObject.worldTransform.applyInverse(globalPos || this.global, point); +}; + +/** + * Copies properties from normalized event data. + * + * @param {Touch|MouseEvent|PointerEvent} event The normalized event data + */ +InteractionData.prototype.copyEvent = function copyEvent (event) +{ + // isPrimary should only change on touchstart/pointerdown, so we don't want to overwrite + // it with "false" on later events when our shim for it on touch events might not be + // accurate + if (event.isPrimary) + { + this.isPrimary = true; + } + this.button = event.button; + // event.buttons is not available in all browsers (ie. Safari), but it does have a non-standard + // event.which property instead, which conveys the same information. + this.buttons = Number.isInteger(event.buttons) ? event.buttons : event.which; + this.width = event.width; + this.height = event.height; + this.tiltX = event.tiltX; + this.tiltY = event.tiltY; + this.pointerType = event.pointerType; + this.pressure = event.pressure; + this.rotationAngle = event.rotationAngle; + this.twist = event.twist || 0; + this.tangentialPressure = event.tangentialPressure || 0; +}; + +/** + * Resets the data for pooling. + */ +InteractionData.prototype.reset = function reset () +{ + // isPrimary is the only property that we really need to reset - everything else is + // guaranteed to be overwritten + this.isPrimary = false; +}; + +Object.defineProperties( InteractionData.prototype, prototypeAccessors$6 ); + +/** + * Event class that mimics native DOM events. + * + * @class + * @memberof PIXI.interaction + */ +var InteractionEvent = function InteractionEvent() +{ + /** + * Whether this event will continue propagating in the tree. + * + * Remaining events for the {@link stopsPropagatingAt} object + * will still be dispatched. + * + * @member {boolean} + */ + this.stopped = false; + + /** + * At which object this event stops propagating. + * + * @private + * @member {PIXI.DisplayObject} + */ + this.stopsPropagatingAt = null; + + /** + * Whether we already reached the element we want to + * stop propagating at. This is important for delayed events, + * where we start over deeper in the tree again. + * + * @private + * @member {boolean} + */ + this.stopPropagationHint = false; + + /** + * The object which caused this event to be dispatched. + * For listener callback see {@link PIXI.interaction.InteractionEvent.currentTarget}. + * + * @member {PIXI.DisplayObject} + */ + this.target = null; + + /** + * The object whose event listener’s callback is currently being invoked. + * + * @member {PIXI.DisplayObject} + */ + this.currentTarget = null; + + /** + * Type of the event + * + * @member {string} + */ + this.type = null; + + /** + * InteractionData related to this event + * + * @member {PIXI.interaction.InteractionData} + */ + this.data = null; +}; + +/** + * Prevents event from reaching any objects other than the current object. + * + */ +InteractionEvent.prototype.stopPropagation = function stopPropagation () +{ + this.stopped = true; + this.stopPropagationHint = true; + this.stopsPropagatingAt = this.currentTarget; +}; + +/** + * Resets the event. + */ +InteractionEvent.prototype.reset = function reset () +{ + this.stopped = false; + this.stopsPropagatingAt = null; + this.stopPropagationHint = false; + this.currentTarget = null; + this.target = null; +}; + +/** + * DisplayObjects with the {@link PIXI.interaction.interactiveTarget} mixin use this class to track interactions + * + * @class + * @private + * @memberof PIXI.interaction + */ +var InteractionTrackingData = function InteractionTrackingData(pointerId) +{ + this._pointerId = pointerId; + this._flags = InteractionTrackingData.FLAGS.NONE; +}; + +var prototypeAccessors$1$3 = { pointerId: { configurable: true },flags: { configurable: true },none: { configurable: true },over: { configurable: true },rightDown: { configurable: true },leftDown: { configurable: true } }; + +/** + * + * @private + * @param {number} flag - The interaction flag to set + * @param {boolean} yn - Should the flag be set or unset + */ +InteractionTrackingData.prototype._doSet = function _doSet (flag, yn) +{ + if (yn) + { + this._flags = this._flags | flag; + } + else + { + this._flags = this._flags & (~flag); + } +}; + +/** + * Unique pointer id of the event + * + * @readonly + * @private + * @member {number} + */ +prototypeAccessors$1$3.pointerId.get = function () +{ + return this._pointerId; +}; + +/** + * State of the tracking data, expressed as bit flags + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.flags.get = function () +{ + return this._flags; +}; + +prototypeAccessors$1$3.flags.set = function (flags) // eslint-disable-line require-jsdoc +{ + this._flags = flags; +}; + +/** + * Is the tracked event inactive (not over or down)? + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.none.get = function () +{ + return this._flags === this.constructor.FLAGS.NONE; +}; + +/** + * Is the tracked event over the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.over.get = function () +{ + return (this._flags & this.constructor.FLAGS.OVER) !== 0; +}; + +prototypeAccessors$1$3.over.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.OVER, yn); +}; + +/** + * Did the right mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.rightDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.RIGHT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.rightDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.RIGHT_DOWN, yn); +}; + +/** + * Did the left mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.leftDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.LEFT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.leftDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.LEFT_DOWN, yn); +}; + +Object.defineProperties( InteractionTrackingData.prototype, prototypeAccessors$1$3 ); + +InteractionTrackingData.FLAGS = Object.freeze({ + NONE: 0, + OVER: 1 << 0, + LEFT_DOWN: 1 << 1, + RIGHT_DOWN: 1 << 2, +}); + +/** + * Interface for classes that represent a hit area. + * + * It is implemented by the following classes: + * - {@link PIXI.Circle} + * - {@link PIXI.Ellipse} + * - {@link PIXI.Polygon} + * - {@link PIXI.RoundedRectangle} + * + * @interface IHitArea + * @memberof PIXI + */ + +/** + * Checks whether the x and y coordinates given are contained within this area + * + * @method + * @name contains + * @memberof PIXI.IHitArea# + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this area + */ + +/** + * Default property values of interactive objects + * Used by {@link PIXI.interaction.InteractionManager} to automatically give all DisplayObjects these properties + * + * @private + * @name interactiveTarget + * @type {Object} + * @memberof PIXI.interaction + * @example + * function MyObject() {} + * + * Object.assign( + * DisplayObject.prototype, + * PIXI.interaction.interactiveTarget + * ); + */ +var interactiveTarget = { + + /** + * Enable interaction events for the DisplayObject. Touch, pointer and mouse + * events will not be emitted unless `interactive` is set to `true`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.on('tap', (event) => { + * //handle event + * }); + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + interactive: false, + + /** + * Determines if the children to the displayObject can be clicked/touched + * Setting this to false allows PixiJS to bypass a recursive `hitTest` function + * + * @member {boolean} + * @memberof PIXI.Container# + */ + interactiveChildren: true, + + /** + * Interaction shape. Children will be hit first, then this shape will be checked. + * Setting this will cause this shape to be checked in hit tests rather than the displayObject's bounds. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.hitArea = new PIXI.Rectangle(0, 0, 100, 100); + * @member {PIXI.IHitArea} + * @memberof PIXI.DisplayObject# + */ + hitArea: null, + + /** + * If enabled, the mouse cursor use the pointer behavior when hovered over the displayObject if it is interactive + * Setting this changes the 'cursor' property to `'pointer'`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.buttonMode = true; + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + get buttonMode() + { + return this.cursor === 'pointer'; + }, + set buttonMode(value) + { + if (value) + { + this.cursor = 'pointer'; + } + else if (this.cursor === 'pointer') + { + this.cursor = null; + } + }, + + /** + * This defines what cursor mode is used when the mouse cursor + * is hovered over the displayObject. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.cursor = 'wait'; + * @see https://developer.mozilla.org/en/docs/Web/CSS/cursor + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + cursor: null, + + /** + * Internal set of all active pointers, by identifier + * + * @member {Map} + * @memberof PIXI.DisplayObject# + * @private + */ + get trackedPointers() + { + if (this._trackedPointers === undefined) { this._trackedPointers = {}; } + + return this._trackedPointers; + }, + + /** + * Map of all tracked pointers, by identifier. Use trackedPointers to access. + * + * @private + * @type {Map} + */ + _trackedPointers: undefined, +}; + +// Mix interactiveTarget into DisplayObject.prototype, +// after deprecation has been handled +DisplayObject.mixin(interactiveTarget); + +var MOUSE_POINTER_ID = 1; + +// helpers for hitTest() - only used inside hitTest() +var hitTestEvent = { + target: null, + data: { + global: null, + }, +}; + +/** + * The interaction manager deals with mouse, touch and pointer events. + * + * Any DisplayObject can be interactive if its `interactive` property is set to true. + * + * This manager also supports multitouch. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.interaction` + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI.interaction + */ +var InteractionManager = /*@__PURE__*/(function (EventEmitter) { + function InteractionManager(renderer, options) + { + EventEmitter.call(this); + + options = options || {}; + + /** + * The renderer this interaction manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * Should default browser actions automatically be prevented. + * Does not apply to pointer events for backwards compatibility + * preventDefault on pointer events stops mouse events from firing + * Thus, for every pointer event, there will always be either a mouse of touch event alongside it. + * + * @member {boolean} + * @default true + */ + this.autoPreventDefault = options.autoPreventDefault !== undefined ? options.autoPreventDefault : true; + + /** + * Frequency in milliseconds that the mousemove, mouseover & mouseout interaction events will be checked. + * + * @member {number} + * @default 10 + */ + this.interactionFrequency = options.interactionFrequency || 10; + + /** + * The mouse data + * + * @member {PIXI.interaction.InteractionData} + */ + this.mouse = new InteractionData(); + this.mouse.identifier = MOUSE_POINTER_ID; + + // setting the mouse to start off far off screen will mean that mouse over does + // not get called before we even move the mouse. + this.mouse.global.set(-999999); + + /** + * Actively tracked InteractionData + * + * @private + * @member {Object.} + */ + this.activeInteractionData = {}; + this.activeInteractionData[MOUSE_POINTER_ID] = this.mouse; + + /** + * Pool of unused InteractionData + * + * @private + * @member {PIXI.interaction.InteractionData[]} + */ + this.interactionDataPool = []; + + /** + * An event data object to handle all the event tracking/dispatching + * + * @member {object} + */ + this.eventData = new InteractionEvent(); + + /** + * The DOM element to bind to. + * + * @protected + * @member {HTMLElement} + */ + this.interactionDOMElement = null; + + /** + * This property determines if mousemove and touchmove events are fired only when the cursor + * is over the object. + * Setting to true will make things work more in line with how the DOM version works. + * Setting to false can make things easier for things like dragging + * It is currently set to false as this is how PixiJS used to work. This will be set to true in + * future versions of pixi. + * + * @member {boolean} + * @default false + */ + this.moveWhenInside = false; + + /** + * Have events been attached to the dom element? + * + * @protected + * @member {boolean} + */ + this.eventsAdded = false; + + /** + * Is the mouse hovering over the renderer? + * + * @protected + * @member {boolean} + */ + this.mouseOverRenderer = false; + + /** + * Does the device support touch events + * https://www.w3.org/TR/touch-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsTouchEvents = 'ontouchstart' in window; + + /** + * Does the device support pointer events + * https://www.w3.org/Submission/pointer-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsPointerEvents = !!window.PointerEvent; + + // this will make it so that you don't have to call bind all the time + + /** + * @private + * @member {Function} + */ + this.onPointerUp = this.onPointerUp.bind(this); + this.processPointerUp = this.processPointerUp.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerCancel = this.onPointerCancel.bind(this); + this.processPointerCancel = this.processPointerCancel.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerDown = this.onPointerDown.bind(this); + this.processPointerDown = this.processPointerDown.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerMove = this.onPointerMove.bind(this); + this.processPointerMove = this.processPointerMove.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOut = this.onPointerOut.bind(this); + this.processPointerOverOut = this.processPointerOverOut.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOver = this.onPointerOver.bind(this); + + /** + * Dictionary of how different cursor modes are handled. Strings are handled as CSS cursor + * values, objects are handled as dictionaries of CSS values for interactionDOMElement, + * and functions are called instead of changing the CSS. + * Default CSS cursor values are provided for 'default' and 'pointer' modes. + * @member {Object.} + */ + this.cursorStyles = { + default: 'inherit', + pointer: 'pointer', + }; + + /** + * The mode of the cursor that is being used. + * The value of this is a key from the cursorStyles dictionary. + * + * @member {string} + */ + this.currentCursorMode = null; + + /** + * Internal cached let. + * + * @private + * @member {string} + */ + this.cursor = null; + + /** + * Internal cached let. + * + * @private + * @member {PIXI.Point} + */ + this._tempPoint = new Point(); + + /** + * The current resolution / device pixel ratio. + * + * @member {number} + * @default 1 + */ + this.resolution = 1; + + /** + * Delayed pointer events. Used to guarantee correct ordering of over/out events. + * + * @private + * @member {Array} + */ + this.delayedEvents = []; + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display + * object. + * + * @event PIXI.interaction.InteractionManager#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. + * + * @event PIXI.interaction.InteractionManager#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. + * + * @event PIXI.interaction.InteractionManager#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. + * + * @event PIXI.interaction.InteractionManager#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. + * + * @event PIXI.interaction.InteractionManager#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. + * + * @event PIXI.interaction.InteractionManager#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown}. + * + * @event PIXI.interaction.InteractionManager#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.interaction.InteractionManager#event:rightdown}. + * + * @event PIXI.interaction.InteractionManager#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object + * + * @event PIXI.interaction.InteractionManager#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * + * @event PIXI.interaction.InteractionManager#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * Not always fired when some buttons are held down while others are released. In those cases, + * use [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown} and + * [mouseup]{@link PIXI.interaction.InteractionManager#event:mouseup} instead. + * + * @event PIXI.interaction.InteractionManager#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event + * + * @event PIXI.interaction.InteractionManager#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * + * @event PIXI.interaction.InteractionManager#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.interaction.InteractionManager#event:pointerdown}. + * + * @event PIXI.interaction.InteractionManager#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object + * + * @event PIXI.interaction.InteractionManager#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * + * @event PIXI.interaction.InteractionManager#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * + * @event PIXI.interaction.InteractionManager#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch + * + * @event PIXI.interaction.InteractionManager#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * + * @event PIXI.interaction.InteractionManager#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.interaction.InteractionManager#event:touchstart}. + * + * @event PIXI.interaction.InteractionManager#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * + * @event PIXI.interaction.InteractionManager#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display. + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.DisplayObject#event:mousedown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.DisplayObject#event:rightdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.DisplayObject#event:pointerdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.DisplayObject#event:touchstart}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + this.setTargetElement(this.renderer.view, this.renderer.resolution); + } + + if ( EventEmitter ) InteractionManager.__proto__ = EventEmitter; + InteractionManager.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + InteractionManager.prototype.constructor = InteractionManager; + + /** + * Hit tests a point against the display tree, returning the first interactive object that is hit. + * + * @param {PIXI.Point} globalPoint - A point to hit test with, in global space. + * @param {PIXI.Container} [root] - The root display object to start from. If omitted, defaults + * to the last rendered root of the associated renderer. + * @return {PIXI.DisplayObject} The hit display object, if any. + */ + InteractionManager.prototype.hitTest = function hitTest (globalPoint, root) + { + // clear the target for our hit test + hitTestEvent.target = null; + // assign the global point + hitTestEvent.data.global = globalPoint; + // ensure safety of the root + if (!root) + { + root = this.renderer._lastObjectRendered; + } + // run the hit test + this.processInteractive(hitTestEvent, root, null, true); + // return our found object - it'll be null if we didn't hit anything + + return hitTestEvent.target; + }; + + /** + * Sets the DOM element which will receive mouse/touch events. This is useful for when you have + * other DOM elements on top of the renderers Canvas element. With this you'll be bale to delegate + * another DOM element to receive those events. + * + * @param {HTMLElement} element - the DOM element which will receive mouse and touch events. + * @param {number} [resolution=1] - The resolution / device pixel ratio of the new element (relative to the canvas). + */ + InteractionManager.prototype.setTargetElement = function setTargetElement (element, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + this.removeEvents(); + + this.interactionDOMElement = element; + + this.resolution = resolution; + + this.addEvents(); + }; + + /** + * Registers all the DOM events + * + * @private + */ + InteractionManager.prototype.addEvents = function addEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.add(this.update, this, UPDATE_PRIORITY.INTERACTION); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = 'none'; + this.interactionDOMElement.style['-ms-touch-action'] = 'none'; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = 'none'; + } + + /** + * These events are added first, so that if pointer events are normalized, they are fired + * in the same order as non-normalized events. ie. pointer event 1st, mouse / touch 2nd + */ + if (this.supportsPointerEvents) + { + window.document.addEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('pointerdown', this.onPointerDown, true); + // pointerout is fired in addition to pointerup (for touch events) and pointercancel + // we already handle those, so for the purposes of what we do in onPointerOut, we only + // care about the pointerleave event + this.interactionDOMElement.addEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('pointerover', this.onPointerOver, true); + window.addEventListener('pointercancel', this.onPointerCancel, true); + window.addEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.addEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('mouseover', this.onPointerOver, true); + window.addEventListener('mouseup', this.onPointerUp, true); + } + + // always look directly for touch events so that we can provide original data + // In a future version we should change this to being just a fallback and rely solely on + // PointerEvents whenever available + if (this.supportsTouchEvents) + { + this.interactionDOMElement.addEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.addEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.addEventListener('touchmove', this.onPointerMove, true); + } + + this.eventsAdded = true; + }; + + /** + * Removes all the DOM events that were previously registered + * + * @private + */ + InteractionManager.prototype.removeEvents = function removeEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.remove(this.update, this); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = ''; + this.interactionDOMElement.style['-ms-touch-action'] = ''; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = ''; + } + + if (this.supportsPointerEvents) + { + window.document.removeEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('pointerdown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('pointerover', this.onPointerOver, true); + window.removeEventListener('pointercancel', this.onPointerCancel, true); + window.removeEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.removeEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('mouseover', this.onPointerOver, true); + window.removeEventListener('mouseup', this.onPointerUp, true); + } + + if (this.supportsTouchEvents) + { + this.interactionDOMElement.removeEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.removeEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.removeEventListener('touchmove', this.onPointerMove, true); + } + + this.interactionDOMElement = null; + + this.eventsAdded = false; + }; + + /** + * Updates the state of interactive objects. + * Invoked by a throttled ticker update from {@link PIXI.Ticker.system}. + * + * @param {number} deltaTime - time delta since last tick + */ + InteractionManager.prototype.update = function update (deltaTime) + { + this._deltaTime += deltaTime; + + if (this._deltaTime < this.interactionFrequency) + { + return; + } + + this._deltaTime = 0; + + if (!this.interactionDOMElement) + { + return; + } + + // if the user move the mouse this check has already been done using the mouse move! + if (this.didMove) + { + this.didMove = false; + + return; + } + + this.cursor = null; + + // Resets the flag as set by a stopPropagation call. This flag is usually reset by a user interaction of any kind, + // but there was a scenario of a display object moving under a static mouse cursor. + // In this case, mouseover and mouseevents would not pass the flag test in dispatchEvent function + for (var k in this.activeInteractionData) + { + // eslint-disable-next-line no-prototype-builtins + if (this.activeInteractionData.hasOwnProperty(k)) + { + var interactionData = this.activeInteractionData[k]; + + if (interactionData.originalEvent && interactionData.pointerType !== 'touch') + { + var interactionEvent = this.configureInteractionEventForDOMEvent( + this.eventData, + interactionData.originalEvent, + interactionData + ); + + this.processInteractive( + interactionEvent, + this.renderer._lastObjectRendered, + this.processPointerOverOut, + true + ); + } + } + } + + this.setCursorMode(this.cursor); + }; + + /** + * Sets the current cursor mode, handling any callbacks or CSS style changes. + * + * @param {string} mode - cursor mode, a key from the cursorStyles dictionary + */ + InteractionManager.prototype.setCursorMode = function setCursorMode (mode) + { + mode = mode || 'default'; + // if the mode didn't actually change, bail early + if (this.currentCursorMode === mode) + { + return; + } + this.currentCursorMode = mode; + var style = this.cursorStyles[mode]; + + // only do things if there is a cursor style for it + if (style) + { + switch (typeof style) + { + case 'string': + // string styles are handled as cursor CSS + this.interactionDOMElement.style.cursor = style; + break; + case 'function': + // functions are just called, and passed the cursor mode + style(mode); + break; + case 'object': + // if it is an object, assume that it is a dictionary of CSS styles, + // apply it to the interactionDOMElement + Object.assign(this.interactionDOMElement.style, style); + break; + } + } + else if (typeof mode === 'string' && !Object.prototype.hasOwnProperty.call(this.cursorStyles, mode)) + { + // if it mode is a string (not a Symbol) and cursorStyles doesn't have any entry + // for the mode, then assume that the dev wants it to be CSS for the cursor. + this.interactionDOMElement.style.cursor = mode; + } + }; + + /** + * Dispatches an event on the display object that was interacted with + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.dispatchEvent = function dispatchEvent (displayObject, eventString, eventData) + { + // Even if the event was stopped, at least dispatch any remaining events + // for the same display object. + if (!eventData.stopPropagationHint || displayObject === eventData.stopsPropagatingAt) + { + eventData.currentTarget = displayObject; + eventData.type = eventString; + + displayObject.emit(eventString, eventData); + + if (displayObject[eventString]) + { + displayObject[eventString](eventData); + } + } + }; + + /** + * Puts a event on a queue to be dispatched later. This is used to guarantee correct + * ordering of over/out events. + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.delayDispatchEvent = function delayDispatchEvent (displayObject, eventString, eventData) + { + this.delayedEvents.push({ displayObject: displayObject, eventString: eventString, eventData: eventData }); + }; + + /** + * Maps x and y coords from a DOM object and maps them correctly to the PixiJS view. The + * resulting value is stored in the point. This takes into account the fact that the DOM + * element could be scaled and positioned anywhere on the screen. + * + * @param {PIXI.Point} point - the point that the result will be stored in + * @param {number} x - the x coord of the position to map + * @param {number} y - the y coord of the position to map + */ + InteractionManager.prototype.mapPositionToPoint = function mapPositionToPoint (point, x, y) + { + var rect; + + // IE 11 fix + if (!this.interactionDOMElement.parentElement) + { + rect = { x: 0, y: 0, width: 0, height: 0 }; + } + else + { + rect = this.interactionDOMElement.getBoundingClientRect(); + } + + var resolutionMultiplier = 1.0 / this.resolution; + + point.x = ((x - rect.left) * (this.interactionDOMElement.width / rect.width)) * resolutionMultiplier; + point.y = ((y - rect.top) * (this.interactionDOMElement.height / rect.height)) * resolutionMultiplier; + }; + + /** + * This function is provides a neat way of crawling through the scene graph and running a + * specified function on all interactive objects it finds. It will also take care of hit + * testing the interactive objects and passes the hit across in the function. + * + * @protected + * @param {PIXI.interaction.InteractionEvent} interactionEvent - event containing the point that + * is tested for collision + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the displayObject + * that will be hit test (recursively crawls its children) + * @param {Function} [func] - the function that will be called on each interactive object. The + * interactionEvent, displayObject and hit will be passed to the function + * @param {boolean} [hitTest] - this indicates if the objects inside should be hit test against the point + * @param {boolean} [interactive] - Whether the displayObject is interactive + * @param {boolean} [skipDelayed] - Whether to process delayed events before returning. This is + * used to avoid processing them too early during recursive calls. + * @return {boolean} returns true if the displayObject hit the point + */ + InteractionManager.prototype.processInteractive = function processInteractive (interactionEvent, displayObject, func, hitTest, interactive, skipDelayed) + { + if (!displayObject || !displayObject.visible) + { + return false; + } + + var point = interactionEvent.data.global; + + // Took a little while to rework this function correctly! But now it is done and nice and optimized! ^_^ + // + // This function will now loop through all objects and then only hit test the objects it HAS + // to, not all of them. MUCH faster.. + // An object will be hit test if the following is true: + // + // 1: It is interactive. + // 2: It belongs to a parent that is interactive AND one of the parents children have not already been hit. + // + // As another little optimization once an interactive object has been hit we can carry on + // through the scenegraph, but we know that there will be no more hits! So we can avoid extra hit tests + // A final optimization is that an object is not hit test directly if a child has already been hit. + + interactive = displayObject.interactive || interactive; + + var hit = false; + var interactiveParent = interactive; + + // Flag here can set to false if the event is outside the parents hitArea or mask + var hitTestChildren = true; + + // If there is a hitArea, no need to test against anything else if the pointer is not within the hitArea + // There is also no longer a need to hitTest children. + if (displayObject.hitArea) + { + if (hitTest) + { + displayObject.worldTransform.applyInverse(point, this._tempPoint); + if (!displayObject.hitArea.contains(this._tempPoint.x, this._tempPoint.y)) + { + hitTest = false; + hitTestChildren = false; + } + else + { + hit = true; + } + } + interactiveParent = false; + } + // If there is a mask, no need to hitTest against anything else if the pointer is not within the mask. + // We still want to hitTestChildren, however, to ensure a mouseout can still be generated. + // https://github.com/pixijs/pixi.js/issues/5135 + else if (displayObject._mask) + { + if (hitTest) + { + if (!(displayObject._mask.containsPoint && displayObject._mask.containsPoint(point))) + { + hitTest = false; + } + } + } + + // ** FREE TIP **! If an object is not interactive or has no buttons in it + // (such as a game scene!) set interactiveChildren to false for that displayObject. + // This will allow PixiJS to completely ignore and bypass checking the displayObjects children. + if (hitTestChildren && displayObject.interactiveChildren && displayObject.children) + { + var children = displayObject.children; + + for (var i = children.length - 1; i >= 0; i--) + { + var child = children[i]; + + // time to get recursive.. if this function will return if something is hit.. + var childHit = this.processInteractive(interactionEvent, child, func, hitTest, interactiveParent, true); + + if (childHit) + { + // its a good idea to check if a child has lost its parent. + // this means it has been removed whilst looping so its best + if (!child.parent) + { + continue; + } + + // we no longer need to hit test any more objects in this container as we we + // now know the parent has been hit + interactiveParent = false; + + // If the child is interactive , that means that the object hit was actually + // interactive and not just the child of an interactive object. + // This means we no longer need to hit test anything else. We still need to run + // through all objects, but we don't need to perform any hit tests. + + if (childHit) + { + if (interactionEvent.target) + { + hitTest = false; + } + hit = true; + } + } + } + } + + // no point running this if the item is not interactive or does not have an interactive parent. + if (interactive) + { + // if we are hit testing (as in we have no hit any objects yet) + // We also don't need to worry about hit testing if once of the displayObjects children + // has already been hit - but only if it was interactive, otherwise we need to keep + // looking for an interactive child, just in case we hit one + if (hitTest && !interactionEvent.target) + { + // already tested against hitArea if it is defined + if (!displayObject.hitArea && displayObject.containsPoint) + { + if (displayObject.containsPoint(point)) + { + hit = true; + } + } + } + + if (displayObject.interactive) + { + if (hit && !interactionEvent.target) + { + interactionEvent.target = displayObject; + } + + if (func) + { + func(interactionEvent, displayObject, !!hit); + } + } + } + + var delayedEvents = this.delayedEvents; + + if (delayedEvents.length && !skipDelayed) + { + // Reset the propagation hint, because we start deeper in the tree again. + interactionEvent.stopPropagationHint = false; + + var delayedLen = delayedEvents.length; + + this.delayedEvents = []; + + for (var i$1 = 0; i$1 < delayedLen; i$1++) + { + var ref = delayedEvents[i$1]; + var displayObject$1 = ref.displayObject; + var eventString = ref.eventString; + var eventData = ref.eventData; + + // When we reach the object we wanted to stop propagating at, + // set the propagation hint. + if (eventData.stopsPropagatingAt === displayObject$1) + { + eventData.stopPropagationHint = true; + } + + this.dispatchEvent(displayObject$1, eventString, eventData); + } + } + + return hit; + }; + + /** + * Is called when the pointer button is pressed down on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being pressed down + */ + InteractionManager.prototype.onPointerDown = function onPointerDown (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + /** + * No need to prevent default on natural pointer events, as there are no side effects + * Normalized events, however, may have the double mousedown/touchstart issue on the native android browser, + * so still need to be prevented. + */ + + // Guaranteed that there will be at least one event in events, and all events must have the same pointer type + + if (this.autoPreventDefault && events[0].isNormalized) + { + var cancelable = originalEvent.cancelable || !('cancelable' in originalEvent); + + if (cancelable) + { + originalEvent.preventDefault(); + } + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerDown, true); + + this.emit('pointerdown', interactionEvent); + if (event.pointerType === 'touch') + { + this.emit('touchstart', interactionEvent); + } + // emit a mouse event for "pen" pointers, the way a browser would emit a fallback event + else if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? 'rightdown' : 'mousedown', this.eventData); + } + } + }; + + /** + * Processes the result of the pointer down check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerDown = function processPointerDown (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + var id = interactionEvent.data.identifier; + + if (hit) + { + if (!displayObject.trackedPointers[id]) + { + displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + this.dispatchEvent(displayObject, 'pointerdown', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchstart', interactionEvent); + } + else if (data.pointerType === 'mouse' || data.pointerType === 'pen') + { + var isRightButton = data.button === 2; + + if (isRightButton) + { + displayObject.trackedPointers[id].rightDown = true; + } + else + { + displayObject.trackedPointers[id].leftDown = true; + } + + this.dispatchEvent(displayObject, isRightButton ? 'rightdown' : 'mousedown', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being released + * @param {boolean} cancelled - true if the pointer is cancelled + * @param {Function} func - Function passed to {@link processInteractive} + */ + InteractionManager.prototype.onPointerComplete = function onPointerComplete (originalEvent, cancelled, func) + { + var events = this.normalizeToPointerData(originalEvent); + + var eventLen = events.length; + + // if the event wasn't targeting our canvas, then consider it to be pointerupoutside + // in all cases (unless it was a pointercancel) + var eventAppend = originalEvent.target !== this.interactionDOMElement ? 'outside' : ''; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + // perform hit testing for events targeting our canvas or cancel events + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, func, cancelled || !eventAppend); + + this.emit(cancelled ? 'pointercancel' : ("pointerup" + eventAppend), interactionEvent); + + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? ("rightup" + eventAppend) : ("mouseup" + eventAppend), interactionEvent); + } + else if (event.pointerType === 'touch') + { + this.emit(cancelled ? 'touchcancel' : ("touchend" + eventAppend), interactionEvent); + this.releaseInteractionDataForPointerId(event.pointerId, interactionData); + } + } + }; + + /** + * Is called when the pointer button is cancelled + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerCancel = function onPointerCancel (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, true, this.processPointerCancel); + }; + + /** + * Processes the result of the pointer cancel check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + */ + InteractionManager.prototype.processPointerCancel = function processPointerCancel (interactionEvent, displayObject) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + if (displayObject.trackedPointers[id] !== undefined) + { + delete displayObject.trackedPointers[id]; + this.dispatchEvent(displayObject, 'pointercancel', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchcancel', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerUp = function onPointerUp (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, false, this.processPointerUp); + }; + + /** + * Processes the result of the pointer up check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerUp = function processPointerUp (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var trackingData = displayObject.trackedPointers[id]; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + // need to track mouse down status in the mouse block so that we can emit + // event in a later block + var isMouseTap = false; + + // Mouse only + if (isMouse) + { + var isRightButton = data.button === 2; + + var flags = InteractionTrackingData.FLAGS; + + var test = isRightButton ? flags.RIGHT_DOWN : flags.LEFT_DOWN; + + var isDown = trackingData !== undefined && (trackingData.flags & test); + + if (hit) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightup' : 'mouseup', interactionEvent); + + if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightclick' : 'click', interactionEvent); + // because we can confirm that the mousedown happened on this object, flag for later emit of pointertap + isMouseTap = true; + } + } + else if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightupoutside' : 'mouseupoutside', interactionEvent); + } + // update the down state of the tracking data + if (trackingData) + { + if (isRightButton) + { + trackingData.rightDown = false; + } + else + { + trackingData.leftDown = false; + } + } + } + + // Pointers and Touches, and Mouse + if (hit) + { + this.dispatchEvent(displayObject, 'pointerup', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchend', interactionEvent); } + + if (trackingData) + { + // emit pointertap if not a mouse, or if the mouse block decided it was a tap + if (!isMouse || isMouseTap) + { + this.dispatchEvent(displayObject, 'pointertap', interactionEvent); + } + if (isTouch) + { + this.dispatchEvent(displayObject, 'tap', interactionEvent); + // touches are no longer over (if they ever were) when we get the touchend + // so we should ensure that we don't keep pretending that they are + trackingData.over = false; + } + } + } + else if (trackingData) + { + this.dispatchEvent(displayObject, 'pointerupoutside', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchendoutside', interactionEvent); } + } + // Only remove the tracking data if there is no over/down state still associated with it + if (trackingData && trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + }; + + /** + * Is called when the pointer moves across the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer moving + */ + InteractionManager.prototype.onPointerMove = function onPointerMove (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + if (events[0].pointerType === 'mouse' || events[0].pointerType === 'pen') + { + this.didMove = true; + + this.cursor = null; + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerMove, true); + + this.emit('pointermove', interactionEvent); + if (event.pointerType === 'touch') { this.emit('touchmove', interactionEvent); } + if (event.pointerType === 'mouse' || event.pointerType === 'pen') { this.emit('mousemove', interactionEvent); } + } + + if (events[0].pointerType === 'mouse') + { + this.setCursorMode(this.cursor); + + // TODO BUG for parents interactive object (border order issue) + } + }; + + /** + * Processes the result of the pointer move check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerMove = function processPointerMove (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + if (isMouse) + { + this.processPointerOverOut(interactionEvent, displayObject, hit); + } + + if (!this.moveWhenInside || hit) + { + this.dispatchEvent(displayObject, 'pointermove', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchmove', interactionEvent); } + if (isMouse) { this.dispatchEvent(displayObject, 'mousemove', interactionEvent); } + } + }; + + /** + * Is called when the pointer is moved out of the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer being moved out + */ + InteractionManager.prototype.onPointerOut = function onPointerOut (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOut, so events will always be length 1 + var event = events[0]; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = false; + this.setCursorMode(null); + } + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerOverOut, false); + + this.emit('pointerout', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseout', interactionEvent); + } + else + { + // we can get touchleave events after touchend, so we want to make sure we don't + // introduce memory leaks + this.releaseInteractionDataForPointerId(interactionData.identifier); + } + }; + + /** + * Processes the result of the pointer over/out check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerOverOut = function processPointerOverOut (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + var trackingData = displayObject.trackedPointers[id]; + + // if we just moused over the display object, then we need to track that state + if (hit && !trackingData) + { + trackingData = displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + + if (trackingData === undefined) { return; } + + if (hit && this.mouseOverRenderer) + { + if (!trackingData.over) + { + trackingData.over = true; + this.delayDispatchEvent(displayObject, 'pointerover', interactionEvent); + if (isMouse) + { + this.delayDispatchEvent(displayObject, 'mouseover', interactionEvent); + } + } + + // only change the cursor if it has not already been changed (by something deeper in the + // display tree) + if (isMouse && this.cursor === null) + { + this.cursor = displayObject.cursor; + } + } + else if (trackingData.over) + { + trackingData.over = false; + this.dispatchEvent(displayObject, 'pointerout', this.eventData); + if (isMouse) + { + this.dispatchEvent(displayObject, 'mouseout', interactionEvent); + } + // if there is no mouse down information for the pointer, then it is safe to delete + if (trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + } + }; + + /** + * Is called when the pointer is moved into the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being moved into the renderer view + */ + InteractionManager.prototype.onPointerOver = function onPointerOver (originalEvent) + { + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOver, so events will always be length 1 + var event = events[0]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = true; + } + + this.emit('pointerover', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseover', interactionEvent); + } + }; + + /** + * Get InteractionData for a given pointerId. Store that data as well + * + * @private + * @param {PointerEvent} event - Normalized pointer event, output from normalizeToPointerData + * @return {PIXI.interaction.InteractionData} - Interaction data for the given pointer identifier + */ + InteractionManager.prototype.getInteractionDataForPointerId = function getInteractionDataForPointerId (event) + { + var pointerId = event.pointerId; + + var interactionData; + + if (pointerId === MOUSE_POINTER_ID || event.pointerType === 'mouse') + { + interactionData = this.mouse; + } + else if (this.activeInteractionData[pointerId]) + { + interactionData = this.activeInteractionData[pointerId]; + } + else + { + interactionData = this.interactionDataPool.pop() || new InteractionData(); + interactionData.identifier = pointerId; + this.activeInteractionData[pointerId] = interactionData; + } + // copy properties from the event, so that we can make sure that touch/pointer specific + // data is available + interactionData.copyEvent(event); + + return interactionData; + }; + + /** + * Return unused InteractionData to the pool, for a given pointerId + * + * @private + * @param {number} pointerId - Identifier from a pointer event + */ + InteractionManager.prototype.releaseInteractionDataForPointerId = function releaseInteractionDataForPointerId (pointerId) + { + var interactionData = this.activeInteractionData[pointerId]; + + if (interactionData) + { + delete this.activeInteractionData[pointerId]; + interactionData.reset(); + this.interactionDataPool.push(interactionData); + } + }; + + /** + * Configure an InteractionEvent to wrap a DOM PointerEvent and InteractionData + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The event to be configured + * @param {PointerEvent} pointerEvent - The DOM event that will be paired with the InteractionEvent + * @param {PIXI.interaction.InteractionData} interactionData - The InteractionData that will be paired + * with the InteractionEvent + * @return {PIXI.interaction.InteractionEvent} the interaction event that was passed in + */ + InteractionManager.prototype.configureInteractionEventForDOMEvent = function configureInteractionEventForDOMEvent (interactionEvent, pointerEvent, interactionData) + { + interactionEvent.data = interactionData; + + this.mapPositionToPoint(interactionData.global, pointerEvent.clientX, pointerEvent.clientY); + + // Not really sure why this is happening, but it's how a previous version handled things + if (pointerEvent.pointerType === 'touch') + { + pointerEvent.globalX = interactionData.global.x; + pointerEvent.globalY = interactionData.global.y; + } + + interactionData.originalEvent = pointerEvent; + interactionEvent.reset(); + + return interactionEvent; + }; + + /** + * Ensures that the original event object contains all data that a regular pointer event would have + * + * @private + * @param {TouchEvent|MouseEvent|PointerEvent} event - The original event data from a touch or mouse event + * @return {PointerEvent[]} An array containing a single normalized pointer event, in the case of a pointer + * or mouse event, or a multiple normalized pointer events if there are multiple changed touches + */ + InteractionManager.prototype.normalizeToPointerData = function normalizeToPointerData (event) + { + var normalizedEvents = []; + + if (this.supportsTouchEvents && event instanceof TouchEvent) + { + for (var i = 0, li = event.changedTouches.length; i < li; i++) + { + var touch = event.changedTouches[i]; + + if (typeof touch.button === 'undefined') { touch.button = event.touches.length ? 1 : 0; } + if (typeof touch.buttons === 'undefined') { touch.buttons = event.touches.length ? 1 : 0; } + if (typeof touch.isPrimary === 'undefined') + { + touch.isPrimary = event.touches.length === 1 && event.type === 'touchstart'; + } + if (typeof touch.width === 'undefined') { touch.width = touch.radiusX || 1; } + if (typeof touch.height === 'undefined') { touch.height = touch.radiusY || 1; } + if (typeof touch.tiltX === 'undefined') { touch.tiltX = 0; } + if (typeof touch.tiltY === 'undefined') { touch.tiltY = 0; } + if (typeof touch.pointerType === 'undefined') { touch.pointerType = 'touch'; } + if (typeof touch.pointerId === 'undefined') { touch.pointerId = touch.identifier || 0; } + if (typeof touch.pressure === 'undefined') { touch.pressure = touch.force || 0.5; } + if (typeof touch.twist === 'undefined') { touch.twist = 0; } + if (typeof touch.tangentialPressure === 'undefined') { touch.tangentialPressure = 0; } + // TODO: Remove these, as layerX/Y is not a standard, is deprecated, has uneven + // support, and the fill ins are not quite the same + // offsetX/Y might be okay, but is not the same as clientX/Y when the canvas's top + // left is not 0,0 on the page + if (typeof touch.layerX === 'undefined') { touch.layerX = touch.offsetX = touch.clientX; } + if (typeof touch.layerY === 'undefined') { touch.layerY = touch.offsetY = touch.clientY; } + + // mark the touch as normalized, just so that we know we did it + touch.isNormalized = true; + + normalizedEvents.push(touch); + } + } + // apparently PointerEvent subclasses MouseEvent, so yay + else if (event instanceof MouseEvent && (!this.supportsPointerEvents || !(event instanceof window.PointerEvent))) + { + if (typeof event.isPrimary === 'undefined') { event.isPrimary = true; } + if (typeof event.width === 'undefined') { event.width = 1; } + if (typeof event.height === 'undefined') { event.height = 1; } + if (typeof event.tiltX === 'undefined') { event.tiltX = 0; } + if (typeof event.tiltY === 'undefined') { event.tiltY = 0; } + if (typeof event.pointerType === 'undefined') { event.pointerType = 'mouse'; } + if (typeof event.pointerId === 'undefined') { event.pointerId = MOUSE_POINTER_ID; } + if (typeof event.pressure === 'undefined') { event.pressure = 0.5; } + if (typeof event.twist === 'undefined') { event.twist = 0; } + if (typeof event.tangentialPressure === 'undefined') { event.tangentialPressure = 0; } + + // mark the mouse event as normalized, just so that we know we did it + event.isNormalized = true; + + normalizedEvents.push(event); + } + else + { + normalizedEvents.push(event); + } + + return normalizedEvents; + }; + + /** + * Destroys the interaction manager + * + */ + InteractionManager.prototype.destroy = function destroy () + { + this.removeEvents(); + + this.removeAllListeners(); + + this.renderer = null; + + this.mouse = null; + + this.eventData = null; + + this.interactionDOMElement = null; + + this.onPointerDown = null; + this.processPointerDown = null; + + this.onPointerUp = null; + this.processPointerUp = null; + + this.onPointerCancel = null; + this.processPointerCancel = null; + + this.onPointerMove = null; + this.processPointerMove = null; + + this.onPointerOut = null; + this.processPointerOverOut = null; + + this.onPointerOver = null; + + this._tempPoint = null; + }; + + return InteractionManager; +}(eventemitter3)); + +/*! + * @pixi/graphics - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/graphics is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Graphics curves resolution settings. If `adaptive` flag is set to `true`, + * the resolution is calculated based on the curve's length to ensure better visual quality. + * Adaptive draw works with `bezierCurveTo` and `quadraticCurveTo`. + * + * @static + * @constant + * @memberof PIXI + * @name GRAPHICS_CURVES + * @type {object} + * @property {boolean} adaptive=false - flag indicating if the resolution should be adaptive + * @property {number} maxLength=10 - maximal length of a single segment of the curve (if adaptive = false, ignored) + * @property {number} minSegments=8 - minimal number of segments in the curve (if adaptive = false, ignored) + * @property {number} maxSegments=2048 - maximal number of segments in the curve (if adaptive = false, ignored) + */ +var GRAPHICS_CURVES = { + adaptive: true, + maxLength: 10, + minSegments: 8, + maxSegments: 2048, + _segmentsCount: function _segmentsCount(length, defaultSegments) + { + if ( defaultSegments === void 0 ) defaultSegments = 20; + + if (!this.adaptive) + { + return defaultSegments; + } + + var result = Math.ceil(length / this.maxLength); + + if (result < this.minSegments) + { + result = this.minSegments; + } + else if (result > this.maxSegments) + { + result = this.maxSegments; + } + + return result; + }, +}; + +/** + * Fill style object for Graphics. + * + * @class + * @memberof PIXI + */ +var FillStyle = function FillStyle() +{ + this.reset(); +}; + +/** + * Clones the object + * + * @return {PIXI.FillStyle} + */ +FillStyle.prototype.clone = function clone () +{ + var obj = new FillStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + + return obj; +}; + +/** + * Reset + */ +FillStyle.prototype.reset = function reset () +{ + /** + * The hex color value used when coloring the Graphics object. + * + * @member {number} + * @default 1 + */ + this.color = 0xFFFFFF; + + /** + * The alpha value used when filling the Graphics object. + * + * @member {number} + * @default 1 + */ + this.alpha = 1; + + /** + * The texture to be used for the fill. + * + * @member {string} + * @default 0 + */ + this.texture = Texture.WHITE; + + /** + * The transform aplpied to the texture. + * + * @member {string} + * @default 0 + */ + this.matrix = null; + + /** + * If the current fill is visible. + * + * @member {boolean} + * @default false + */ + this.visible = false; +}; + +/** + * Destroy and don't use after this + */ +FillStyle.prototype.destroy = function destroy () +{ + this.texture = null; + this.matrix = null; +}; + +/** + * A class to contain data useful for Graphics objects + * + * @class + * @memberof PIXI + */ +var GraphicsData = function GraphicsData(shape, fillStyle, lineStyle, matrix) +{ + if ( fillStyle === void 0 ) fillStyle = null; + if ( lineStyle === void 0 ) lineStyle = null; + if ( matrix === void 0 ) matrix = null; + + /** + * The shape object to draw. + * @member {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} + */ + this.shape = shape; + + /** + * The style of the line. + * @member {PIXI.LineStyle} + */ + this.lineStyle = lineStyle; + + /** + * The style of the fill. + * @member {PIXI.FillStyle} + */ + this.fillStyle = fillStyle; + + /** + * The transform matrix. + * @member {PIXI.Matrix} + */ + this.matrix = matrix; + + /** + * The type of the shape, see the Const.Shapes file for all the existing types, + * @member {number} + */ + this.type = shape.type; + + /** + * The collection of points. + * @member {number[]} + */ + this.points = []; + + /** + * The collection of holes. + * @member {PIXI.GraphicsData[]} + */ + this.holes = []; +}; + +/** + * Creates a new GraphicsData object with the same values as this one. + * + * @return {PIXI.GraphicsData} Cloned GraphicsData object + */ +GraphicsData.prototype.clone = function clone () +{ + return new GraphicsData( + this.shape, + this.fillStyle, + this.lineStyle, + this.matrix + ); +}; + +/** + * Destroys the Graphics data. + */ +GraphicsData.prototype.destroy = function destroy () +{ + this.shape = null; + this.holes.length = 0; + this.holes = null; + this.points.length = 0; + this.points = null; + this.lineStyle = null; + this.fillStyle = null; +}; + +/** + * Builds a circle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object to draw + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildCircle = { + + build: function build(graphicsData) + { + // need to convert points to a nice regular data + var circleData = graphicsData.shape; + var points = graphicsData.points; + var x = circleData.x; + var y = circleData.y; + var width; + var height; + + points.length = 0; + + // TODO - bit hacky?? + if (graphicsData.type === SHAPES.CIRC) + { + width = circleData.radius; + height = circleData.radius; + } + else + { + width = circleData.width; + height = circleData.height; + } + + if (width === 0 || height === 0) + { + return; + } + + var totalSegs = Math.floor(30 * Math.sqrt(circleData.radius)) + || Math.floor(15 * Math.sqrt(circleData.width + circleData.height)); + + totalSegs /= 2.3; + + var seg = (Math.PI * 2) / totalSegs; + + for (var i = 0; i < totalSegs; i++) + { + points.push( + x + (Math.sin(-seg * i) * width), + y + (Math.cos(-seg * i) * height) + ); + } + + points.push( + points[0], + points[1] + ); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vertPos = verts.length / 2; + var center = vertPos; + + verts.push(graphicsData.shape.x, graphicsData.shape.y); + + for (var i = 0; i < points.length; i += 2) + { + verts.push(points[i], points[i + 1]); + + // add some uvs + indices.push(vertPos++, center, vertPos); + } + }, +}; + +/** + * Builds a line to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine (graphicsData, graphicsGeometry) +{ + if (graphicsData.lineStyle.native) + { + buildNativeLine(graphicsData, graphicsGeometry); + } + else + { + buildLine$1(graphicsData, graphicsGeometry); + } +} + +/** + * Builds a line to draw using the polygon method. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine$1(graphicsData, graphicsGeometry) +{ + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points.slice(); + var eps = graphicsGeometry.closePointEps; + + if (points.length === 0) + { + return; + } + // if the line width is an odd number add 0.5 to align to a whole pixel + // commenting this out fixes #711 and #1620 + // if (graphicsData.lineWidth%2) + // { + // for (i = 0; i < points.length; i++) + // { + // points[i] += 0.5; + // } + // } + + var style = graphicsData.lineStyle; + + // get first and last point.. figure out the middle! + var firstPoint = new Point(points[0], points[1]); + var lastPoint = new Point(points[points.length - 2], points[points.length - 1]); + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + var closedPath = Math.abs(firstPoint.x - lastPoint.x) < eps + && Math.abs(firstPoint.y - lastPoint.y) < eps; + + // if the first point is the last point - gonna have issues :) + if (closedShape) + { + // need to clone as we are going to slightly modify the shape.. + points = points.slice(); + + if (closedPath) + { + points.pop(); + points.pop(); + lastPoint.set(points[points.length - 2], points[points.length - 1]); + } + + var midPointX = lastPoint.x + ((firstPoint.x - lastPoint.x) * 0.5); + var midPointY = lastPoint.y + ((firstPoint.y - lastPoint.y) * 0.5); + + points.unshift(midPointX, midPointY); + points.push(midPointX, midPointY); + } + + var verts = graphicsGeometry.points; + var length = points.length / 2; + var indexCount = points.length; + var indexStart = verts.length / 2; + + // DRAW the Line + var width = style.width / 2; + + // sort color + var p1x = points[0]; + var p1y = points[1]; + var p2x = points[2]; + var p2y = points[3]; + var p3x = 0; + var p3y = 0; + + var perpx = -(p1y - p2y); + var perpy = p1x - p2x; + var perp2x = 0; + var perp2y = 0; + var perp3x = 0; + var perp3y = 0; + + var dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + var ratio = style.alignment;// 0.5; + var r1 = (1 - ratio) * 2; + var r2 = ratio * 2; + + // start + verts.push( + p1x - (perpx * r1), + p1y - (perpy * r1)); + + verts.push( + p1x + (perpx * r2), + p1y + (perpy * r2)); + + for (var i = 1; i < length - 1; ++i) + { + p1x = points[(i - 1) * 2]; + p1y = points[((i - 1) * 2) + 1]; + + p2x = points[i * 2]; + p2y = points[(i * 2) + 1]; + + p3x = points[(i + 1) * 2]; + p3y = points[((i + 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + perp2x = -(p2y - p3y); + perp2y = p2x - p3x; + + dist = Math.sqrt((perp2x * perp2x) + (perp2y * perp2y)); + perp2x /= dist; + perp2y /= dist; + perp2x *= width; + perp2y *= width; + + var a1 = (-perpy + p1y) - (-perpy + p2y); + var b1 = (-perpx + p2x) - (-perpx + p1x); + var c1 = ((-perpx + p1x) * (-perpy + p2y)) - ((-perpx + p2x) * (-perpy + p1y)); + var a2 = (-perp2y + p3y) - (-perp2y + p2y); + var b2 = (-perp2x + p2x) - (-perp2x + p3x); + var c2 = ((-perp2x + p3x) * (-perp2y + p2y)) - ((-perp2x + p2x) * (-perp2y + p3y)); + + var denom = (a1 * b2) - (a2 * b1); + + if (Math.abs(denom) < 0.1) + { + denom += 10.1; + verts.push( + p2x - (perpx * r1), + p2y - (perpy * r1)); + + verts.push( + p2x + (perpx * r2), + p2y + (perpy * r2)); + + continue; + } + + var px = ((b1 * c2) - (b2 * c1)) / denom; + var py = ((a2 * c1) - (a1 * c2)) / denom; + var pdist = ((px - p2x) * (px - p2x)) + ((py - p2y) * (py - p2y)); + + if (pdist > (196 * width * width)) + { + perp3x = perpx - perp2x; + perp3y = perpy - perp2y; + + dist = Math.sqrt((perp3x * perp3x) + (perp3y * perp3y)); + perp3x /= dist; + perp3y /= dist; + perp3x *= width; + perp3y *= width; + + verts.push(p2x - (perp3x * r1), p2y - (perp3y * r1)); + + verts.push(p2x + (perp3x * r2), p2y + (perp3y * r2)); + + verts.push(p2x - (perp3x * r2 * r1), p2y - (perp3y * r1)); + + indexCount++; + } + else + { + verts.push(p2x + ((px - p2x) * r1), p2y + ((py - p2y) * r1)); + + verts.push(p2x - ((px - p2x) * r2), p2y - ((py - p2y) * r2)); + } + } + + p1x = points[(length - 2) * 2]; + p1y = points[((length - 2) * 2) + 1]; + + p2x = points[(length - 1) * 2]; + p2y = points[((length - 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + verts.push(p2x - (perpx * r1), p2y - (perpy * r1)); + + verts.push(p2x + (perpx * r2), p2y + (perpy * r2)); + + var indices = graphicsGeometry.indices; + + // indices.push(indexStart); + + for (var i$1 = 0; i$1 < indexCount - 2; ++i$1) + { + indices.push(indexStart, indexStart + 1, indexStart + 2); + + indexStart++; + } +} + +/** + * Builds a line to draw using the gl.drawArrays(gl.LINES) method + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildNativeLine(graphicsData, graphicsGeometry) +{ + var i = 0; + + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points; + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + + if (points.length === 0) { return; } + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + var length = points.length / 2; + + var startIndex = verts.length / 2; + var currentIndex = startIndex; + + verts.push(points[0], points[1]); + + for (i = 1; i < length; i++) + { + verts.push(points[i * 2], points[(i * 2) + 1]); + indices.push(currentIndex, currentIndex + 1); + + currentIndex++; + } + + if (closedShape) + { + indices.push(currentIndex, startIndex); + } +} + +/** + * Builds a polygon to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildPoly = { + + build: function build(graphicsData) + { + graphicsData.points = graphicsData.shape.points.slice(); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var holes = graphicsData.holes; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + if (points.length >= 6) + { + var holeArray = []; + // Process holes.. + + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + holeArray.push(points.length / 2); + points = points.concat(hole.points); + } + + // sort color + var triangles = earcut_1(points, holeArray, 2); + + if (!triangles) + { + return; + } + + var vertPos = verts.length / 2; + + for (var i$1 = 0; i$1 < triangles.length; i$1 += 3) + { + indices.push(triangles[i$1] + vertPos); + indices.push(triangles[i$1 + 1] + vertPos); + indices.push(triangles[i$1 + 2] + vertPos); + } + + for (var i$2 = 0; i$2 < points.length; i$2++) + { + verts.push(points[i$2]); + } + } + }, +}; + +/** + * Builds a rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRectangle = { + + build: function build(graphicsData) + { + // --- // + // need to convert points to a nice regular data + // + var rectData = graphicsData.shape; + var x = rectData.x; + var y = rectData.y; + var width = rectData.width; + var height = rectData.height; + + var points = graphicsData.points; + + points.length = 0; + + points.push(x, y, + x + width, y, + x + width, y + height, + x, y + height); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + + var vertPos = verts.length / 2; + + verts.push(points[0], points[1], + points[2], points[3], + points[6], points[7], + points[4], points[5]); + + graphicsGeometry.indices.push(vertPos, vertPos + 1, vertPos + 2, + vertPos + 1, vertPos + 2, vertPos + 3); + }, +}; + +/** + * Builds a rounded rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRoundedRectangle = { + + build: function build(graphicsData) + { + var rrectData = graphicsData.shape; + var points = graphicsData.points; + var x = rrectData.x; + var y = rrectData.y; + var width = rrectData.width; + var height = rrectData.height; + + var radius = rrectData.radius; + + points.length = 0; + + quadraticBezierCurve(x, y + radius, + x, y, + x + radius, y, + points); + quadraticBezierCurve(x + width - radius, + y, x + width, y, + x + width, y + radius, + points); + quadraticBezierCurve(x + width, y + height - radius, + x + width, y + height, + x + width - radius, y + height, + points); + quadraticBezierCurve(x + radius, y + height, + x, y + height, + x, y + height - radius, + points); + + // this tiny number deals with the issue that occurs when points overlap and earcut fails to triangulate the item. + // TODO - fix this properly, this is not very elegant.. but it works for now. + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vecPos = verts.length / 2; + + var triangles = earcut_1(points, null, 2); + + for (var i = 0, j = triangles.length; i < j; i += 3) + { + indices.push(triangles[i] + vecPos); + // indices.push(triangles[i] + vecPos); + indices.push(triangles[i + 1] + vecPos); + // indices.push(triangles[i + 2] + vecPos); + indices.push(triangles[i + 2] + vecPos); + } + + for (var i$1 = 0, j$1 = points.length; i$1 < j$1; i$1++) + { + verts.push(points[i$1], points[++i$1]); + } + }, +}; + +/** + * Calculate a single point for a quadratic bezier curve. + * Utility function used by quadraticBezierCurve. + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} n1 - first number + * @param {number} n2 - second number + * @param {number} perc - percentage + * @return {number} the result + * + */ +function getPt(n1, n2, perc) +{ + var diff = n2 - n1; + + return n1 + (diff * perc); +} + +/** + * Calculate the points for a quadratic bezier curve. (helper function..) + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} fromX - Origin point x + * @param {number} fromY - Origin point x + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} [out=[]] - The output array to add points into. If not passed, a new array is created. + * @return {number[]} an array of points + */ +function quadraticBezierCurve(fromX, fromY, cpX, cpY, toX, toY, out) +{ + if ( out === void 0 ) out = []; + + var n = 20; + var points = out; + + var xa = 0; + var ya = 0; + var xb = 0; + var yb = 0; + var x = 0; + var y = 0; + + for (var i = 0, j = 0; i <= n; ++i) + { + j = i / n; + + // The Green Line + xa = getPt(fromX, cpX, j); + ya = getPt(fromY, cpY, j); + xb = getPt(cpX, toX, j); + yb = getPt(cpY, toY, j); + + // The Black Dot + x = getPt(xa, xb, j); + y = getPt(ya, yb, j); + + points.push(x, y); + } + + return points; +} + +var BATCH_POOL = []; +var DRAW_CALL_POOL = []; +var tmpPoint = new Point(); + +/** + * Map of fill commands for each shape type. + * + * @member {Object} + * @private + */ +var fillCommands = {}; + +fillCommands[SHAPES.POLY] = buildPoly; +fillCommands[SHAPES.CIRC] = buildCircle; +fillCommands[SHAPES.ELIP] = buildCircle; +fillCommands[SHAPES.RECT] = buildRectangle; +fillCommands[SHAPES.RREC] = buildRoundedRectangle; + +/** + * A little internal structure to hold interim batch objects. + * + * @private + */ +var BatchPart = function BatchPart() +{ + this.style = null; + this.size = 0; + this.start = 0; + this.attribStart = 0; + this.attribSize = 0; +}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * GraphicsGeometry is designed to not be continually updating the geometry since it's expensive + * to re-tesselate using **earcut**. Consider using {@link PIXI.Mesh} for this use-case, it's much faster. + * + * @class + * @extends PIXI.BatchGeometry + * @memberof PIXI + */ +var GraphicsGeometry = /*@__PURE__*/(function (BatchGeometry) { + function GraphicsGeometry() + { + BatchGeometry.call(this); + + /** + * An array of points to draw, 2 numbers per point + * + * @member {number[]} + * @protected + */ + this.points = []; + + /** + * The collection of colors + * + * @member {number[]} + * @protected + */ + this.colors = []; + + /** + * The UVs collection + * + * @member {number[]} + * @protected + */ + this.uvs = []; + + /** + * The indices of the vertices + * + * @member {number[]} + * @protected + */ + this.indices = []; + + /** + * Reference to the texture IDs. + * + * @member {number[]} + * @protected + */ + this.textureIds = []; + + /** + * The collection of drawn shapes. + * + * @member {PIXI.GraphicsData[]} + * @protected + */ + this.graphicsData = []; + + /** + * Used to detect if the graphics object has changed. + * + * @member {number} + * @protected + */ + this.dirty = 0; + + /** + * Batches need to regenerated if the geometry is updated. + * + * @member {number} + * @protected + */ + this.batchDirty = -1; + + /** + * Used to check if the cache is dirty. + * + * @member {number} + * @protected + */ + this.cacheDirty = -1; + + /** + * Used to detect if we cleared the graphicsData. + * + * @member {number} + * @default 0 + * @protected + */ + this.clearDirty = 0; + + /** + * List of current draw calls drived from the batches. + * + * @member {object[]} + * @protected + */ + this.drawCalls = []; + + /** + * Intermediate abstract format sent to batch system. + * Can be converted to drawCalls or to batchable objects. + * + * @member {object[]} + * @protected + */ + this.batches = []; + + /** + * Index of the last batched shape in the stack of calls. + * + * @member {number} + * @protected + */ + this.shapeIndex = 0; + + /** + * Cached bounds. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + + /** + * The bounds dirty flag. + * + * @member {number} + * @protected + */ + this.boundsDirty = -1; + + /** + * Padding to add to the bounds. + * + * @member {number} + * @default 0 + */ + this.boundsPadding = 0; + + this.batchable = false; + + this.indicesUint16 = null; + + this.uvsFloat32 = null; + + /** + * Minimal distance between points that are considered different. + * Affects line tesselation. + * + * @member {number} + */ + this.closePointEps = 1e-4; + } + + if ( BatchGeometry ) GraphicsGeometry.__proto__ = BatchGeometry; + GraphicsGeometry.prototype = Object.create( BatchGeometry && BatchGeometry.prototype ); + GraphicsGeometry.prototype.constructor = GraphicsGeometry; + + var prototypeAccessors = { bounds: { configurable: true } }; + + /** + * Get the current bounds of the graphic geometry. + * + * @member {PIXI.Bounds} + * @readonly + */ + prototypeAccessors.bounds.get = function () + { + if (this.boundsDirty !== this.dirty) + { + this.boundsDirty = this.dirty; + this.calculateBounds(); + } + + return this._bounds; + }; + + /** + * Call if you changed graphicsData manually. + * Empties all batch buffers. + */ + GraphicsGeometry.prototype.invalidate = function invalidate () + { + this.boundsDirty = -1; + this.dirty++; + this.batchDirty++; + this.shapeIndex = 0; + + this.points.length = 0; + this.colors.length = 0; + this.uvs.length = 0; + this.indices.length = 0; + this.textureIds.length = 0; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var batch = this.batches[i$1]; + + batch.start = 0; + batch.attribStart = 0; + batch.style = null; + BATCH_POOL.push(batch); + } + + this.batches.length = 0; + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.GraphicsGeometry} This GraphicsGeometry object. Good for chaining method calls + */ + GraphicsGeometry.prototype.clear = function clear () + { + if (this.graphicsData.length > 0) + { + this.invalidate(); + this.clearDirty++; + this.graphicsData.length = 0; + } + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.FillStyle} fillStyle - Defines style of the fill. + * @param {PIXI.LineStyle} lineStyle - Defines style of the lines. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawShape = function drawShape (shape, fillStyle, lineStyle, matrix) + { + var data = new GraphicsData(shape, fillStyle, lineStyle, matrix); + + this.graphicsData.push(data); + this.dirty++; + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawHole = function drawHole (shape, matrix) + { + if (!this.graphicsData.length) + { + return null; + } + + var data = new GraphicsData(shape, null, null, matrix); + + var lastShape = this.graphicsData[this.graphicsData.length - 1]; + + data.lineStyle = lastShape.lineStyle; + + lastShape.holes.push(data); + + this.dirty++; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + GraphicsGeometry.prototype.destroy = function destroy (options) + { + BatchGeometry.prototype.destroy.call(this, options); + + // destroy each of the GraphicsData objects + for (var i = 0; i < this.graphicsData.length; ++i) + { + this.graphicsData[i].destroy(); + } + + this.points.length = 0; + this.points = null; + this.colors.length = 0; + this.colors = null; + this.uvs.length = 0; + this.uvs = null; + this.indices.length = 0; + this.indices = null; + this.indexBuffer.destroy(); + this.indexBuffer = null; + this.graphicsData.length = 0; + this.graphicsData = null; + this.drawCalls.length = 0; + this.drawCalls = null; + this.batches.length = 0; + this.batches = null; + this._bounds = null; + }; + + /** + * Check to see if a point is contained within this geometry. + * + * @param {PIXI.Point} point - Point to check if it's contained. + * @return {Boolean} `true` if the point is contained within geometry. + */ + GraphicsGeometry.prototype.containsPoint = function containsPoint (point) + { + var graphicsData = this.graphicsData; + + for (var i = 0; i < graphicsData.length; ++i) + { + var data = graphicsData[i]; + + if (!data.fillStyle.visible) + { + continue; + } + + // only deal with fills.. + if (data.shape) + { + if (data.matrix) + { + data.matrix.applyInverse(point, tmpPoint); + } + else + { + tmpPoint.copyFrom(point); + } + + if (data.shape.contains(tmpPoint.x, tmpPoint.y)) + { + if (data.holes) + { + for (var i$1 = 0; i$1 < data.holes.length; i$1++) + { + var hole = data.holes[i$1]; + + if (hole.shape.contains(tmpPoint.x, tmpPoint.y)) + { + return false; + } + } + } + + return true; + } + } + } + + return false; + }; + + /** + * Generates intermediate batch data. Either gets converted to drawCalls + * or used to convert to batch objects directly by the Graphics object. + */ + GraphicsGeometry.prototype.updateBatches = function updateBatches () + { + if (this.dirty === this.cacheDirty) { return; } + if (this.graphicsData.length === 0) + { + this.batchable = true; + + return; + } + + if (this.dirty !== this.cacheDirty) + { + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + if (data.fillStyle && !data.fillStyle.texture.baseTexture.valid) { return; } + if (data.lineStyle && !data.lineStyle.texture.baseTexture.valid) { return; } + } + } + + this.cacheDirty = this.dirty; + + var uvs = this.uvs; + + var batchPart = null; + var currentTexture = null; + var currentColor = 0; + var currentNative = false; + + if (this.batches.length > 0) + { + batchPart = this.batches[this.batches.length - 1]; + + var style = batchPart.style; + + currentTexture = style.texture.baseTexture; + currentColor = style.color + style.alpha; + currentNative = !!style.native; + } + + for (var i$1 = this.shapeIndex; i$1 < this.graphicsData.length; i$1++) + { + this.shapeIndex++; + + var data$1 = this.graphicsData[i$1]; + var command = fillCommands[data$1.type]; + + var fillStyle = data$1.fillStyle; + var lineStyle = data$1.lineStyle; + + // build out the shapes points.. + command.build(data$1); + + if (data$1.matrix) + { + this.transformPoints(data$1.points, data$1.matrix); + } + + for (var j = 0; j < 2; j++) + { + var style$1 = (j === 0) ? fillStyle : lineStyle; + + if (!style$1.visible) { continue; } + + var nextTexture = style$1.texture.baseTexture; + + var index$1 = this.indices.length; + var attribIndex = this.points.length / 2; + + // close batch if style is different + if (batchPart + && (currentTexture !== nextTexture + || currentColor !== (style$1.color + style$1.alpha) + || currentNative !== !!style$1.native)) + { + batchPart.size = index$1 - batchPart.start; + batchPart.attribSize = attribIndex - batchPart.attribStart; + + if (batchPart.size > 0) + { + batchPart = null; + } + } + // spawn new batch if its first batch or previous was closed + if (!batchPart) + { + batchPart = BATCH_POOL.pop() || new BatchPart(); + this.batches.push(batchPart); + nextTexture.wrapMode = WRAP_MODES.REPEAT; + currentTexture = nextTexture; + currentColor = style$1.color + style$1.alpha; + currentNative = style$1.native; + + batchPart.style = style$1; + batchPart.start = index$1; + batchPart.attribStart = attribIndex; + } + + var start = this.points.length / 2; + + if (j === 0) + { + if (data$1.holes.length) + { + this.processHoles(data$1.holes); + + buildPoly.triangulate(data$1, this); + } + else + { + command.triangulate(data$1, this); + } + } + else + { + buildLine(data$1, this); + + for (var i$2 = 0; i$2 < data$1.holes.length; i$2++) + { + buildLine(data$1.holes[i$2], this); + } + } + + var size = (this.points.length / 2) - start; + + this.addUvs(this.points, uvs, style$1.texture, start, size, style$1.matrix); + } + } + + var index = this.indices.length; + var attrib = this.points.length / 2; + + if (!batchPart) + { + // there are no visible styles in GraphicsData + // its possible that someone wants Graphics just for the bounds + this.batchable = true; + + return; + } + + batchPart.size = index - batchPart.start; + batchPart.attribSize = attrib - batchPart.attribStart; + this.indicesUint16 = new Uint16Array(this.indices); + + // TODO make this a const.. + this.batchable = this.isBatchable(); + + if (this.batchable) + { + this.batchDirty++; + + this.uvsFloat32 = new Float32Array(this.uvs); + + // offset the indices so that it works with the batcher... + for (var i$3 = 0; i$3 < this.batches.length; i$3++) + { + var batch = this.batches[i$3]; + + for (var j$1 = 0; j$1 < batch.size; j$1++) + { + var index$2 = batch.start + j$1; + + this.indicesUint16[index$2] = this.indicesUint16[index$2] - batch.attribStart; + } + } + } + else + { + this.buildDrawCalls(); + } + }; + + /** + * Checks to see if this graphics geometry can be batched. + * Currently it needs to be small enough and not contain any native lines. + * @protected + */ + GraphicsGeometry.prototype.isBatchable = function isBatchable () + { + var batches = this.batches; + + for (var i = 0; i < batches.length; i++) + { + if (batches[i].style.native) + { + return false; + } + } + + return (this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2); + }; + + /** + * Converts intermediate batches data to drawCalls. + * @protected + */ + GraphicsGeometry.prototype.buildDrawCalls = function buildDrawCalls () + { + var TICK = ++BaseTexture._globalBatch; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + var uvs = this.uvs; + var colors = this.colors; + var textureIds = this.textureIds; + + var currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.size = 0; + currentGroup.type = DRAW_MODES.TRIANGLES; + + var textureCount = 0; + var currentTexture = null; + var textureId = 0; + var native = false; + var drawMode = DRAW_MODES.TRIANGLES; + + var index = 0; + + this.drawCalls.push(currentGroup); + + // TODO - this can be simplified + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var data = this.batches[i$1]; + + // TODO add some full on MAX_TEXTURE CODE.. + var MAX_TEXTURES = 8; + + var style = data.style; + + var nextTexture = style.texture.baseTexture; + + if (native !== !!style.native) + { + native = style.native; + drawMode = native ? DRAW_MODES.LINES : DRAW_MODES.TRIANGLES; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + if (currentGroup.size > 0) + { + currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + this.drawCalls.push(currentGroup); + } + + currentGroup.start = index; + currentGroup.size = 0; + currentGroup.textureCount = 0; + currentGroup.type = drawMode; + } + + // TODO add this to the render part.. + nextTexture.touched = 1;// touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + nextTexture.wrapMode = 10497; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + currentGroup.size += data.size; + index += data.size; + + textureId = nextTexture._id; + + this.addColors(colors, style.color, style.alpha, data.attribSize); + this.addTextureIds(textureIds, textureId, data.attribSize); + } + + BaseTexture._globalBatch = TICK; + + // upload.. + // merge for now! + var verts = this.points; + + // verts are 2 positions.. so we * by 3 as there are 6 properties.. then 4 cos its bytes + var glPoints = new ArrayBuffer(verts.length * 3 * 4); + var f32 = new Float32Array(glPoints); + var u32 = new Uint32Array(glPoints); + + var p = 0; + + for (var i$2 = 0; i$2 < verts.length / 2; i$2++) + { + f32[p++] = verts[i$2 * 2]; + f32[p++] = verts[(i$2 * 2) + 1]; + + f32[p++] = uvs[i$2 * 2]; + f32[p++] = uvs[(i$2 * 2) + 1]; + + u32[p++] = colors[i$2]; + + f32[p++] = textureIds[i$2]; + } + + this._buffer.update(glPoints); + this._indexBuffer.update(this.indicesUint16); + }; + + /** + * Process the holes data. + * + * @param {PIXI.GraphicsData[]} holes - Holes to render + * @protected + */ + GraphicsGeometry.prototype.processHoles = function processHoles (holes) + { + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + var command = fillCommands[hole.type]; + + command.build(hole); + + if (hole.matrix) + { + this.transformPoints(hole.points, hole.matrix); + } + } + }; + + /** + * Update the local bounds of the object. Expensive to use performance-wise. + * @protected + */ + GraphicsGeometry.prototype.calculateBounds = function calculateBounds () + { + var minX = Infinity; + var maxX = -Infinity; + + var minY = Infinity; + var maxY = -Infinity; + + if (this.graphicsData.length) + { + var shape = null; + var x = 0; + var y = 0; + var w = 0; + var h = 0; + + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + var type = data.type; + var lineWidth = data.lineStyle ? data.lineStyle.width : 0; + + shape = data.shape; + + if (type === SHAPES.RECT || type === SHAPES.RREC) + { + x = shape.x - (lineWidth / 2); + y = shape.y - (lineWidth / 2); + w = shape.width + lineWidth; + h = shape.height + lineWidth; + + minX = x < minX ? x : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y < minY ? y : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.CIRC) + { + x = shape.x; + y = shape.y; + w = shape.radius + (lineWidth / 2); + h = shape.radius + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.ELIP) + { + x = shape.x; + y = shape.y; + w = shape.width + (lineWidth / 2); + h = shape.height + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else + { + // POLY + var points = shape.points; + var x2 = 0; + var y2 = 0; + var dx = 0; + var dy = 0; + var rw = 0; + var rh = 0; + var cx = 0; + var cy = 0; + + for (var j = 0; j + 2 < points.length; j += 2) + { + x = points[j]; + y = points[j + 1]; + x2 = points[j + 2]; + y2 = points[j + 3]; + dx = Math.abs(x2 - x); + dy = Math.abs(y2 - y); + h = lineWidth; + w = Math.sqrt((dx * dx) + (dy * dy)); + + if (w < 1e-9) + { + continue; + } + + rw = ((h / w * dy) + dx) / 2; + rh = ((h / w * dx) + dy) / 2; + cx = (x2 + x) / 2; + cy = (y2 + y) / 2; + + minX = cx - rw < minX ? cx - rw : minX; + maxX = cx + rw > maxX ? cx + rw : maxX; + + minY = cy - rh < minY ? cy - rh : minY; + maxY = cy + rh > maxY ? cy + rh : maxY; + } + } + } + } + else + { + minX = 0; + maxX = 0; + minY = 0; + maxY = 0; + } + + var padding = this.boundsPadding; + + this._bounds.minX = minX - padding; + this._bounds.maxX = maxX + padding; + + this._bounds.minY = minY - padding; + this._bounds.maxY = maxY + padding; + }; + + /** + * Transform points using matrix. + * + * @protected + * @param {number[]} points - Points to transform + * @param {PIXI.Matrix} matrix - Transform matrix + */ + GraphicsGeometry.prototype.transformPoints = function transformPoints (points, matrix) + { + for (var i = 0; i < points.length / 2; i++) + { + var x = points[(i * 2)]; + var y = points[(i * 2) + 1]; + + points[(i * 2)] = (matrix.a * x) + (matrix.c * y) + matrix.tx; + points[(i * 2) + 1] = (matrix.b * x) + (matrix.d * y) + matrix.ty; + } + }; + + /** + * Add colors. + * + * @protected + * @param {number[]} colors - List of colors to add to + * @param {number} color - Color to add + * @param {number} alpha - Alpha to use + * @param {number} size - Number of colors to add + */ + GraphicsGeometry.prototype.addColors = function addColors (colors, color, alpha, size) + { + // TODO use the premultiply bits Ivan added + var rgb = (color >> 16) + (color & 0xff00) + ((color & 0xff) << 16); + + var rgba = premultiplyTint(rgb, alpha); + + while (size-- > 0) + { + colors.push(rgba); + } + }; + + /** + * Add texture id that the shader/fragment wants to use. + * + * @protected + * @param {number[]} textureIds + * @param {number} id + * @param {number} size + */ + GraphicsGeometry.prototype.addTextureIds = function addTextureIds (textureIds, id, size) + { + while (size-- > 0) + { + textureIds.push(id); + } + }; + + /** + * Generates the UVs for a shape. + * + * @protected + * @param {number[]} verts - Vertices + * @param {number[]} uvs - UVs + * @param {PIXI.Texture} texture - Reference to Texture + * @param {number} start - Index buffer start index. + * @param {number} size - The size/length for index buffer. + * @param {PIXI.Matrix} [matrix] - Optional transform for all points. + */ + GraphicsGeometry.prototype.addUvs = function addUvs (verts, uvs, texture, start, size, matrix) + { + var index = 0; + var uvsStart = uvs.length; + var frame = texture.frame; + + while (index < size) + { + var x = verts[(start + index) * 2]; + var y = verts[((start + index) * 2) + 1]; + + if (matrix) + { + var nx = (matrix.a * x) + (matrix.c * y) + matrix.tx; + + y = (matrix.b * x) + (matrix.d * y) + matrix.ty; + x = nx; + } + + index++; + + uvs.push(x / frame.width, y / frame.height); + } + + var baseTexture = texture.baseTexture; + + if (frame.width < baseTexture.width + || frame.height < baseTexture.height) + { + this.adjustUvs(uvs, texture, uvsStart, size); + } + }; + + /** + * Modify uvs array according to position of texture region + * Does not work with rotated or trimmed textures + * @param {number[]} uvs array + * @param {PIXI.Texture} texture region + * @param {number} start starting index for uvs + * @param {number} size how many points to adjust + */ + GraphicsGeometry.prototype.adjustUvs = function adjustUvs (uvs, texture, start, size) + { + var baseTexture = texture.baseTexture; + var eps = 1e-6; + var finish = start + (size * 2); + var frame = texture.frame; + var scaleX = frame.width / baseTexture.width; + var scaleY = frame.height / baseTexture.height; + var offsetX = frame.x / frame.width; + var offsetY = frame.y / frame.height; + var minX = Math.floor(uvs[start] + eps); + var minY = Math.floor(uvs[start + 1] + eps); + + for (var i = start + 2; i < finish; i += 2) + { + minX = Math.min(minX, Math.floor(uvs[i] + eps)); + minY = Math.min(minY, Math.floor(uvs[i + 1] + eps)); + } + offsetX -= minX; + offsetY -= minY; + for (var i$1 = start; i$1 < finish; i$1 += 2) + { + uvs[i$1] = (uvs[i$1] + offsetX) * scaleX; + uvs[i$1 + 1] = (uvs[i$1 + 1] + offsetY) * scaleY; + } + }; + + Object.defineProperties( GraphicsGeometry.prototype, prototypeAccessors ); + + return GraphicsGeometry; +}(BatchGeometry)); + +/** + * The maximum number of points to consider an object "batchable", + * able to be batched by the renderer's batch system. + * + * @memberof PIXI.GraphicsGeometry + * @static + * @member {number} BATCHABLE_SIZE + * @default 100 + */ +GraphicsGeometry.BATCHABLE_SIZE = 100; + +/** + * Represents the line style for Graphics. + * @memberof PIXI + * @class + * @extends PIXI.FillStyle + */ +var LineStyle = /*@__PURE__*/(function (FillStyle) { + function LineStyle () { + FillStyle.apply(this, arguments); + } + + if ( FillStyle ) LineStyle.__proto__ = FillStyle; + LineStyle.prototype = Object.create( FillStyle && FillStyle.prototype ); + LineStyle.prototype.constructor = LineStyle; + + LineStyle.prototype.clone = function clone () + { + var obj = new LineStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + obj.width = this.width; + obj.alignment = this.alignment; + obj.native = this.native; + + return obj; + }; + /** + * Reset the line style to default. + */ + LineStyle.prototype.reset = function reset () + { + FillStyle.prototype.reset.call(this); + + // Override default line style color + this.color = 0x0; + + /** + * The width (thickness) of any lines drawn. + * + * @member {number} + * @default 0 + */ + this.width = 0; + + /** + * The alignment of any lines drawn (0.5 = middle, 1 = outter, 0 = inner). + * + * @member {number} + * @default 0 + */ + this.alignment = 0.5; + + /** + * If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * + * @member {boolean} + * @default false + */ + this.native = false; + }; + + return LineStyle; +}(FillStyle)); + +/** + * Utilities for bezier curves + * @class + * @private + */ +var BezierUtils = function BezierUtils () {}; + +BezierUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) +{ + var n = 10; + var result = 0.0; + var t = 0.0; + var t2 = 0.0; + var t3 = 0.0; + var nt = 0.0; + var nt2 = 0.0; + var nt3 = 0.0; + var x = 0.0; + var y = 0.0; + var dx = 0.0; + var dy = 0.0; + var prevX = fromX; + var prevY = fromY; + + for (var i = 1; i <= n; ++i) + { + t = i / n; + t2 = t * t; + t3 = t2 * t; + nt = (1.0 - t); + nt2 = nt * nt; + nt3 = nt2 * nt; + + x = (nt3 * fromX) + (3.0 * nt2 * t * cpX) + (3.0 * nt * t2 * cpX2) + (t3 * toX); + y = (nt3 * fromY) + (3.0 * nt2 * t * cpY) + (3 * nt * t2 * cpY2) + (t3 * toY); + dx = prevX - x; + dy = prevY - y; + prevX = x; + prevY = y; + + result += Math.sqrt((dx * dx) + (dy * dy)); + } + + return result; +}; + +/** + * Calculate the points for a bezier curve and then draws it. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Path array to push points into + */ +BezierUtils.curveTo = function curveTo (cpX, cpY, cpX2, cpY2, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + points.length -= 2; + + var n = GRAPHICS_CURVES._segmentsCount( + BezierUtils.curveLength(fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) + ); + + var dt = 0; + var dt2 = 0; + var dt3 = 0; + var t2 = 0; + var t3 = 0; + + points.push(fromX, fromY); + + for (var i = 1, j = 0; i <= n; ++i) + { + j = i / n; + + dt = (1 - j); + dt2 = dt * dt; + dt3 = dt2 * dt; + + t2 = j * j; + t3 = t2 * j; + + points.push( + (dt3 * fromX) + (3 * dt2 * j * cpX) + (3 * dt * t2 * cpX2) + (t3 * toX), + (dt3 * fromY) + (3 * dt2 * j * cpY) + (3 * dt * t2 * cpY2) + (t3 * toY) + ); + } +}; + +/** + * Utilities for quadratic curves + * @class + * @private + */ +var QuadraticUtils = function QuadraticUtils () {}; + +QuadraticUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, toX, toY) +{ + var ax = fromX - (2.0 * cpX) + toX; + var ay = fromY - (2.0 * cpY) + toY; + var bx = (2.0 * cpX) - (2.0 * fromX); + var by = (2.0 * cpY) - (2.0 * fromY); + var a = 4.0 * ((ax * ax) + (ay * ay)); + var b = 4.0 * ((ax * bx) + (ay * by)); + var c = (bx * bx) + (by * by); + + var s = 2.0 * Math.sqrt(a + b + c); + var a2 = Math.sqrt(a); + var a32 = 2.0 * a * a2; + var c2 = 2.0 * Math.sqrt(c); + var ba = b / a2; + + return ( + (a32 * s) + + (a2 * b * (s - c2)) + + ( + ((4.0 * c * a) - (b * b)) + * Math.log(((2.0 * a2) + ba + s) / (ba + c2)) + ) + ) / (4.0 * a32); +}; + +/** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @private + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Points to add segments to. + */ +QuadraticUtils.curveTo = function curveTo (cpX, cpY, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var n = GRAPHICS_CURVES._segmentsCount( + QuadraticUtils.curveLength(fromX, fromY, cpX, cpY, toX, toY) + ); + + var xa = 0; + var ya = 0; + + for (var i = 1; i <= n; ++i) + { + var j = i / n; + + xa = fromX + ((cpX - fromX) * j); + ya = fromY + ((cpY - fromY) * j); + + points.push(xa + (((cpX + ((toX - cpX) * j)) - xa) * j), + ya + (((cpY + ((toY - cpY) * j)) - ya) * j)); + } +}; + +/** + * Utilities for arc curves + * @class + * @private + */ +var ArcUtils = function ArcUtils () {}; + +ArcUtils.curveTo = function curveTo (x1, y1, x2, y2, radius, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var a1 = fromY - y1; + var b1 = fromX - x1; + var a2 = y2 - y1; + var b2 = x2 - x1; + var mm = Math.abs((a1 * b2) - (b1 * a2)); + + if (mm < 1.0e-8 || radius === 0) + { + if (points[points.length - 2] !== x1 || points[points.length - 1] !== y1) + { + points.push(x1, y1); + } + + return null; + } + + var dd = (a1 * a1) + (b1 * b1); + var cc = (a2 * a2) + (b2 * b2); + var tt = (a1 * a2) + (b1 * b2); + var k1 = radius * Math.sqrt(dd) / mm; + var k2 = radius * Math.sqrt(cc) / mm; + var j1 = k1 * tt / dd; + var j2 = k2 * tt / cc; + var cx = (k1 * b2) + (k2 * b1); + var cy = (k1 * a2) + (k2 * a1); + var px = b1 * (k2 + j1); + var py = a1 * (k2 + j1); + var qx = b2 * (k1 + j2); + var qy = a2 * (k1 + j2); + var startAngle = Math.atan2(py - cy, px - cx); + var endAngle = Math.atan2(qy - cy, qx - cx); + + return { + cx: (cx + x1), + cy: (cy + y1), + radius: radius, + startAngle: startAngle, + endAngle: endAngle, + anticlockwise: (b1 * a2 > b2 * a1), + }; +}; + +/** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @private + * @param {number} startX - Start x location of arc + * @param {number} startY - Start y location of arc + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} anticlockwise - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @param {number} n - Number of segments + * @param {number[]} points - Collection of points to add to + */ +ArcUtils.arc = function arc (startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points) +{ + var sweep = endAngle - startAngle; + var n = GRAPHICS_CURVES._segmentsCount( + Math.abs(sweep) * radius, + Math.ceil(Math.abs(sweep) / PI_2) * 40 + ); + + var theta = (sweep) / (n * 2); + var theta2 = theta * 2; + var cTheta = Math.cos(theta); + var sTheta = Math.sin(theta); + var segMinus = n - 1; + var remainder = (segMinus % 1) / segMinus; + + for (var i = 0; i <= segMinus; ++i) + { + var real = i + (remainder * i); + var angle = ((theta) + startAngle + (theta2 * real)); + var c = Math.cos(angle); + var s = -Math.sin(angle); + + points.push( + (((cTheta * c) + (sTheta * s)) * radius) + cx, + (((cTheta * -s) + (sTheta * c)) * radius) + cy + ); + } +}; + +/** + * Draw a star shape with an arbitrary number of points. + * + * @class + * @extends PIXI.Polygon + * @memberof PIXI + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ +var Star = /*@__PURE__*/(function (Polygon) { + function Star(x, y, points, radius, innerRadius, rotation) + { + innerRadius = innerRadius || radius / 2; + + var startAngle = (-1 * Math.PI / 2) + rotation; + var len = points * 2; + var delta = PI_2 / len; + var polygon = []; + + for (var i = 0; i < len; i++) + { + var r = i % 2 ? innerRadius : radius; + var angle = (i * delta) + startAngle; + + polygon.push( + x + (r * Math.cos(angle)), + y + (r * Math.sin(angle)) + ); + } + + Polygon.call(this, polygon); + } + + if ( Polygon ) Star.__proto__ = Polygon; + Star.prototype = Object.create( Polygon && Polygon.prototype ); + Star.prototype.constructor = Star; + + return Star; +}(Polygon)); + +var temp = new Float32Array(3); + +// a default shaders map used by graphics.. +var DEFAULT_SHADERS = {}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * Note that because Graphics can share a GraphicsGeometry with other instances, + * it is necessary to call `destroy()` to properly dereference the underlying + * GraphicsGeometry and avoid a memory leak. Alternatively, keep using the same + * Graphics instance and call `clear()` between redraws. + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Graphics = /*@__PURE__*/(function (Container) { + function Graphics(geometry) + { + if ( geometry === void 0 ) geometry = null; + + Container.call(this); + /** + * Includes vertex positions, face indices, normals, colors, UVs, and + * custom attributes within buffers, reducing the cost of passing all + * this data to the GPU. Can be shared between multiple Mesh or Graphics objects. + * @member {PIXI.GraphicsGeometry} + * @readonly + */ + this.geometry = geometry || new GraphicsGeometry(); + + this.geometry.refCount++; + + /** + * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU. + * Can be shared between multiple Graphics objects. + * @member {PIXI.Shader} + */ + this.shader = null; + + /** + * Represents the WebGL state the Graphics required to render, excludes shader and geometry. E.g., + * blend mode, culling, depth testing, direction of rendering triangles, backface, etc. + * @member {PIXI.State} + */ + this.state = State.for2d(); + + /** + * Current fill style + * + * @member {PIXI.FillStyle} + * @protected + */ + this._fillStyle = new FillStyle(); + + /** + * Current line style + * + * @member {PIXI.LineStyle} + * @protected + */ + this._lineStyle = new LineStyle(); + + /** + * Current shape transform matrix. + * + * @member {PIXI.Matrix} + * @protected + */ + this._matrix = null; + + /** + * Current hole mode is enabled. + * + * @member {boolean} + * @default false + * @protected + */ + this._holeMode = false; + + /** + * Current path + * + * @member {PIXI.Polygon} + * @protected + */ + this.currentPath = null; + + /** + * When cacheAsBitmap is set to true the graphics object will be rendered as if it was a sprite. + * This is useful if your graphics element does not change often, as it will speed up the rendering + * of the object in exchange for taking up texture memory. It is also useful if you need the graphics + * object to be anti-aliased, because it will be rendered using canvas. This is not recommended if + * you are constantly redrawing the graphics element. + * + * @name cacheAsBitmap + * @member {boolean} + * @memberof PIXI.Graphics# + * @default false + */ + + /** + * A collections of batches! These can be drawn by the renderer batch system. + * + * @protected + * @member {object[]} + */ + this.batches = []; + + /** + * Update dirty for limiting calculating tints for batches. + * + * @protected + * @member {number} + * @default -1 + */ + this.batchTint = -1; + + /** + * Copy of the object vertex data. + * + * @protected + * @member {Float32Array} + */ + this.vertexData = null; + + this._transformID = -1; + this.batchDirty = -1; + + /** + * Renderer plugin for batching + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + // Set default + this.tint = 0xFFFFFF; + this.blendMode = BLEND_MODES.NORMAL; + } + + if ( Container ) Graphics.__proto__ = Container; + Graphics.prototype = Object.create( Container && Container.prototype ); + Graphics.prototype.constructor = Graphics; + + var prototypeAccessors = { blendMode: { configurable: true },tint: { configurable: true },fill: { configurable: true },line: { configurable: true } }; + + /** + * Creates a new Graphics object with the same values as this one. + * Note that the only the properties of the object are cloned, not its transform (position,scale,etc) + * + * @return {PIXI.Graphics} A clone of the graphics object + */ + Graphics.prototype.clone = function clone () + { + this.finishPoly(); + + return new Graphics(this.geometry); + }; + + /** + * The blend mode to be applied to the graphic shape. Apply a value of + * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL; + * @see PIXI.BLEND_MODES + */ + prototypeAccessors.blendMode.set = function (value) + { + this.state.blendMode = value; + }; + + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + /** + * The tint applied to the graphic shape. This is a hex value. A value of + * 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + prototypeAccessors.tint.set = function (value) + { + this._tint = value; + }; + + /** + * The current fill style. + * + * @member {PIXI.FillStyle} + * @readonly + */ + prototypeAccessors.fill.get = function () + { + return this._fillStyle; + }; + + /** + * The current line style. + * + * @member {PIXI.LineStyle} + * @readonly + */ + prototypeAccessors.line.get = function () + { + return this._lineStyle; + }; + + /** + * Specifies the line style used for subsequent calls to Graphics methods such as the lineTo() + * method or the drawCircle() method. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineStyle = function lineStyle (width, color, alpha, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + this.lineTextureStyle(width, Texture.WHITE, color, alpha, null, alignment, native); + + return this; + }; + + /** + * Like line style but support texture for line fill. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to use + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {PIXI.Matrix} [matrix=null] Texture matrix to transform texture + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTextureStyle = function lineTextureStyle (width, texture, color, alpha, + matrix, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = width > 0 && alpha > 0; + + if (!visible) + { + this._lineStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._lineStyle, { + color: color, + width: width, + alpha: alpha, + matrix: matrix, + texture: texture, + alignment: alignment, + native: native, + visible: visible, + }); + } + + return this; + }; + + /** + * Start a polygon object internally + * @protected + */ + Graphics.prototype.startPoly = function startPoly () + { + if (this.currentPath) + { + var points = this.currentPath.points; + var len = this.currentPath.points.length; + + if (len > 2) + { + this.drawShape(this.currentPath); + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + this.currentPath.points.push(points[len - 2], points[len - 1]); + } + } + else + { + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + } + }; + + /** + * Finish the polygon object. + * @protected + */ + Graphics.prototype.finishPoly = function finishPoly () + { + if (this.currentPath) + { + if (this.currentPath.points.length > 2) + { + this.drawShape(this.currentPath); + this.currentPath = null; + } + else + { + this.currentPath.points.length = 0; + } + } + }; + + /** + * Moves the current drawing position to x, y. + * + * @param {number} x - the X coordinate to move to + * @param {number} y - the Y coordinate to move to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.moveTo = function moveTo (x, y) + { + this.startPoly(); + this.currentPath.points[0] = x; + this.currentPath.points[1] = y; + + return this; + }; + + /** + * Draws a line using the current line style from the current drawing position to (x, y); + * The current drawing position is then set to (x, y). + * + * @param {number} x - the X coordinate to draw to + * @param {number} y - the Y coordinate to draw to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTo = function lineTo (x, y) + { + if (!this.currentPath) + { + this.moveTo(0, 0); + } + + // remove duplicates.. + var points = this.currentPath.points; + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + if (fromX !== x || fromY !== y) + { + points.push(x, y); + } + + return this; + }; + + /** + * Initialize the curve + * + * @protected + * @param {number} [x=0] + * @param {number} [y=0] + */ + Graphics.prototype._initCurve = function _initCurve (x, y) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + if (this.currentPath) + { + if (this.currentPath.points.length === 0) + { + this.currentPath.points = [x, y]; + } + } + else + { + this.moveTo(x, y); + } + }; + + /** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.quadraticCurveTo = function quadraticCurveTo (cpX, cpY, toX, toY) + { + this._initCurve(); + + var points = this.currentPath.points; + + if (points.length === 0) + { + this.moveTo(0, 0); + } + + QuadraticUtils.curveTo(cpX, cpY, toX, toY, points); + + return this; + }; + + /** + * Calculate the points for a bezier curve and then draws it. + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.bezierCurveTo = function bezierCurveTo (cpX, cpY, cpX2, cpY2, toX, toY) + { + this._initCurve(); + + BezierUtils.curveTo(cpX, cpY, cpX2, cpY2, toX, toY, this.currentPath.points); + + return this; + }; + + /** + * The arcTo() method creates an arc/curve between two tangents on the canvas. + * + * "borrowed" from https://code.google.com/p/fxcanvas/ - thanks google! + * + * @param {number} x1 - The x-coordinate of the first tangent point of the arc + * @param {number} y1 - The y-coordinate of the first tangent point of the arc + * @param {number} x2 - The x-coordinate of the end of the arc + * @param {number} y2 - The y-coordinate of the end of the arc + * @param {number} radius - The radius of the arc + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arcTo = function arcTo (x1, y1, x2, y2, radius) + { + this._initCurve(x1, y1); + + var points = this.currentPath.points; + + var result = ArcUtils.curveTo(x1, y1, x2, y2, radius, points); + + if (result) + { + var cx = result.cx; + var cy = result.cy; + var radius$1 = result.radius; + var startAngle = result.startAngle; + var endAngle = result.endAngle; + var anticlockwise = result.anticlockwise; + + this.arc(cx, cy, radius$1, startAngle, endAngle, anticlockwise); + } + + return this; + }; + + /** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arc = function arc (cx, cy, radius, startAngle, endAngle, anticlockwise) + { + if ( anticlockwise === void 0 ) anticlockwise = false; + + if (startAngle === endAngle) + { + return this; + } + + if (!anticlockwise && endAngle <= startAngle) + { + endAngle += PI_2; + } + else if (anticlockwise && startAngle <= endAngle) + { + startAngle += PI_2; + } + + var sweep = endAngle - startAngle; + + if (sweep === 0) + { + return this; + } + + var startX = cx + (Math.cos(startAngle) * radius); + var startY = cy + (Math.sin(startAngle) * radius); + var eps = this.geometry.closePointEps; + + // If the currentPath exists, take its points. Otherwise call `moveTo` to start a path. + var points = this.currentPath ? this.currentPath.points : null; + + if (points) + { + // TODO: make a better fix. + + // We check how far our start is from the last existing point + var xDiff = Math.abs(points[points.length - 2] - startX); + var yDiff = Math.abs(points[points.length - 1] - startY); + + if (xDiff < eps && yDiff < eps) + ; + else + { + points.push(startX, startY); + } + } + else + { + this.moveTo(startX, startY); + points = this.currentPath.points; + } + + ArcUtils.arc(startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points); + + return this; + }; + + /** + * Specifies a simple one-color fill that subsequent calls to other Graphics methods + * (such as lineTo() or drawCircle()) use when drawing. + * + * @param {number} [color=0] - the color of the fill + * @param {number} [alpha=1] - the alpha of the fill + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginFill = function beginFill (color, alpha) + { + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + + return this.beginTextureFill(Texture.WHITE, color, alpha); + }; + + /** + * Begin the texture fill + * + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to fill + * @param {number} [color=0xffffff] - Background to fill behind texture + * @param {number} [alpha=1] - Alpha of fill + * @param {PIXI.Matrix} [matrix=null] - Transform matrix + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginTextureFill = function beginTextureFill (texture, color, alpha, matrix) + { + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = alpha > 0; + + if (!visible) + { + this._fillStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._fillStyle, { + color: color, + alpha: alpha, + texture: texture, + matrix: matrix, + visible: visible, + }); + } + + return this; + }; + + /** + * Applies a fill to the lines and shapes that were added since the last call to the beginFill() method. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.endFill = function endFill () + { + this.finishPoly(); + + this._fillStyle.reset(); + + return this; + }; + + /** + * Draws a rectangle shape. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRect = function drawRect (x, y, width, height) + { + return this.drawShape(new Rectangle(x, y, width, height)); + }; + + /** + * Draw a rectangle shape with rounded/beveled corners. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @param {number} radius - Radius of the rectangle corners + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRoundedRect = function drawRoundedRect (x, y, width, height, radius) + { + return this.drawShape(new RoundedRectangle(x, y, width, height, radius)); + }; + + /** + * Draws a circle. + * + * @param {number} x - The X coordinate of the center of the circle + * @param {number} y - The Y coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawCircle = function drawCircle (x, y, radius) + { + return this.drawShape(new Circle(x, y, radius)); + }; + + /** + * Draws an ellipse. + * + * @param {number} x - The X coordinate of the center of the ellipse + * @param {number} y - The Y coordinate of the center of the ellipse + * @param {number} width - The half width of the ellipse + * @param {number} height - The half height of the ellipse + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawEllipse = function drawEllipse (x, y, width, height) + { + return this.drawShape(new Ellipse(x, y, width, height)); + }; + + /** + * Draws a polygon using the given path. + * + * @param {number[]|PIXI.Point[]|PIXI.Polygon} path - The path data used to construct the polygon. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawPolygon = function drawPolygon (path) + { + var arguments$1 = arguments; + + // prevents an argument assignment deopt + // see section 3.1: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + var points = path; + + var closeStroke = true;// !!this._fillStyle; + + // check if data has points.. + if (points.points) + { + closeStroke = points.closeStroke; + points = points.points; + } + + if (!Array.isArray(points)) + { + // prevents an argument leak deopt + // see section 3.2: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + points = new Array(arguments.length); + + for (var i = 0; i < points.length; ++i) + { + points[i] = arguments$1[i]; // eslint-disable-line prefer-rest-params + } + } + + var shape = new Polygon(points); + + shape.closeStroke = closeStroke; + + this.drawShape(shape); + + return this; + }; + + /** + * Draw any shape. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - Shape to draw + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawShape = function drawShape (shape) + { + if (!this._holeMode) + { + this.geometry.drawShape( + shape, + this._fillStyle.clone(), + this._lineStyle.clone(), + this._matrix + ); + } + else + { + this.geometry.drawHole(shape, this._matrix); + } + + return this; + }; + + /** + * Draw a star shape with an arbitrary number of points. + * + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawStar = function drawStar (x, y, points, radius, innerRadius, rotation) + { + if ( rotation === void 0 ) rotation = 0; + + return this.drawPolygon(new Star(x, y, points, radius, innerRadius, rotation)); + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.clear = function clear () + { + this.geometry.clear(); + this._lineStyle.reset(); + this._fillStyle.reset(); + + this._matrix = null; + this._holeMode = false; + this.currentPath = null; + + return this; + }; + + /** + * True if graphics consists of one rectangle, and thus, can be drawn like a Sprite and + * masked with gl.scissor. + * + * @returns {boolean} True if only 1 rect. + */ + Graphics.prototype.isFastRect = function isFastRect () + { + // will fix this! + return false; + // this.graphicsData.length === 1 + // && this.graphicsData[0].shape.type === SHAPES.RECT + // && !this.graphicsData[0].lineWidth; + }; + + /** + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._render = function _render (renderer) + { + this.finishPoly(); + + var geometry = this.geometry; + + // batch part.. + // batch it! + geometry.updateBatches(); + + if (geometry.batchable) + { + if (this.batchDirty !== geometry.batchDirty) + { + this._populateBatches(); + } + + this._renderBatched(renderer); + } + else + { + // no batching... + renderer.batch.flush(); + + this._renderDirect(renderer); + } + }; + + /** + * Populating batches for rendering + * + * @protected + */ + Graphics.prototype._populateBatches = function _populateBatches () + { + var geometry = this.geometry; + var blendMode = this.blendMode; + + this.batches = []; + this.batchTint = -1; + this._transformID = -1; + this.batchDirty = geometry.batchDirty; + + this.vertexData = new Float32Array(geometry.points); + + for (var i = 0, l = geometry.batches.length; i < l; i++) + { + var gI = geometry.batches[i]; + var color = gI.style.color; + var vertexData = new Float32Array(this.vertexData.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var uvs = new Float32Array(geometry.uvsFloat32.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var indices = new Uint16Array(geometry.indicesUint16.buffer, + gI.start * 2, + gI.size); + + var batch = { + vertexData: vertexData, + blendMode: blendMode, + indices: indices, + uvs: uvs, + _batchRGB: hex2rgb(color), + _tintRGB: color, + _texture: gI.style.texture, + alpha: gI.style.alpha, + worldAlpha: 1 }; + + this.batches[i] = batch; + } + }; + + /** + * Renders the batches using the BathedRenderer plugin + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderBatched = function _renderBatched (renderer) + { + if (!this.batches.length) + { + return; + } + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + + this.calculateVertices(); + this.calculateTints(); + + for (var i = 0, l = this.batches.length; i < l; i++) + { + var batch = this.batches[i]; + + batch.worldAlpha = this.worldAlpha * batch.alpha; + + renderer.plugins[this.pluginName].render(batch); + } + }; + + /** + * Renders the graphics direct + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderDirect = function _renderDirect (renderer) + { + var shader = this._resolveDirectShader(renderer); + + var geometry = this.geometry; + var tint = this.tint; + var worldAlpha = this.worldAlpha; + var uniforms = shader.uniforms; + var drawCalls = geometry.drawCalls; + + // lets set the transfomr + uniforms.translationMatrix = this.transform.worldTransform; + + // and then lets set the tint.. + uniforms.tint[0] = (((tint >> 16) & 0xFF) / 255) * worldAlpha; + uniforms.tint[1] = (((tint >> 8) & 0xFF) / 255) * worldAlpha; + uniforms.tint[2] = ((tint & 0xFF) / 255) * worldAlpha; + uniforms.tint[3] = worldAlpha; + + // the first draw call, we can set the uniforms of the shader directly here. + + // this means that we can tack advantage of the sync function of pixi! + // bind and sync uniforms.. + // there is a way to optimise this.. + renderer.shader.bind(shader); + renderer.geometry.bind(geometry, shader); + + // set state.. + renderer.state.set(this.state); + + // then render the rest of them... + for (var i = 0, l = drawCalls.length; i < l; i++) + { + this._renderDrawCallDirect(renderer, geometry.drawCalls[i]); + } + }; + + /** + * Renders specific DrawCall + * + * @param {PIXI.Renderer} renderer + * @param {PIXI.BatchDrawCall} drawCall + */ + Graphics.prototype._renderDrawCallDirect = function _renderDrawCallDirect (renderer, drawCall) + { + var groupTextureCount = drawCall.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + renderer.texture.bind(drawCall.textures[j], j); + } + + renderer.geometry.draw(drawCall.type, drawCall.size, drawCall.start); + }; + + /** + * Resolves shader for direct rendering + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._resolveDirectShader = function _resolveDirectShader (renderer) + { + var shader = this.shader; + + var pluginName = this.pluginName; + + if (!shader) + { + // if there is no shader here, we can use the default shader. + // and that only gets created if we actually need it.. + // but may be more than one plugins for graphics + if (!DEFAULT_SHADERS[pluginName]) + { + var sampleValues = new Int32Array(16); + + for (var i = 0; i < 16; i++) + { + sampleValues[i] = i; + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: UniformGroup.from({ uSamplers: sampleValues }, true), + }; + + var program = renderer.plugins[pluginName]._shader.program; + + DEFAULT_SHADERS[pluginName] = new Shader(program, uniforms); + } + + shader = DEFAULT_SHADERS[pluginName]; + } + + return shader; + }; + + /** + * Retrieves the bounds of the graphic shape as a rectangle object + * + * @protected + */ + Graphics.prototype._calculateBounds = function _calculateBounds () + { + this.finishPoly(); + var lb = this.geometry.bounds; + + this._bounds.addFrame(this.transform, lb.minX, lb.minY, lb.maxX, lb.maxY); + }; + + /** + * Tests if a point is inside this graphics object + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Graphics.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, Graphics._TEMP_POINT); + + return this.geometry.containsPoint(Graphics._TEMP_POINT); + }; + + /** + * Recalcuate the tint by applying tin to batches using Graphics tint. + * @protected + */ + Graphics.prototype.calculateTints = function calculateTints () + { + if (this.batchTint !== this.tint) + { + this.batchTint = this.tint; + + var tintRGB = hex2rgb(this.tint, temp); + + for (var i = 0; i < this.batches.length; i++) + { + var batch = this.batches[i]; + + var batchTint = batch._batchRGB; + + var r = (tintRGB[0] * batchTint[0]) * 255; + var g = (tintRGB[1] * batchTint[1]) * 255; + var b = (tintRGB[2] * batchTint[2]) * 255; + + // TODO Ivan, can this be done in one go? + var color = (r << 16) + (g << 8) + (b | 0); + + batch._tintRGB = (color >> 16) + + (color & 0xff00) + + ((color & 0xff) << 16); + } + } + }; + + /** + * If there's a transform update or a change to the shape of the + * geometry, recaculate the vertices. + * @protected + */ + Graphics.prototype.calculateVertices = function calculateVertices () + { + if (this._transformID === this.transform._worldID) + { + return; + } + + this._transformID = this.transform._worldID; + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var data = this.geometry.points;// batch.vertexDataOriginal; + var vertexData = this.vertexData; + + var count = 0; + + for (var i = 0; i < data.length; i += 2) + { + var x = data[i]; + var y = data[i + 1]; + + vertexData[count++] = (a * x) + (c * y) + tx; + vertexData[count++] = (d * y) + (b * x) + ty; + } + }; + + /** + * Closes the current path. + * + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.closePath = function closePath () + { + var currentPath = this.currentPath; + + if (currentPath) + { + // we don't need to add extra point in the end because buildLine will take care of that + currentPath.closeStroke = true; + } + + return this; + }; + + /** + * Apply a matrix to the positional data. + * + * @param {PIXI.Matrix} matrix - Matrix to use for transform current shape. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.setMatrix = function setMatrix (matrix) + { + this._matrix = matrix; + + return this; + }; + + /** + * Begin adding holes to the last draw shape + * IMPORTANT: holes must be fully inside a shape to work + * Also weirdness ensues if holes overlap! + * Ellipses, Circles, Rectangles and Rounded Rectangles cannot be holes or host for holes in CanvasRenderer, + * please use `moveTo` `lineTo`, `quadraticCurveTo` if you rely on pixi-legacy bundle. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.beginHole = function beginHole () + { + this.finishPoly(); + this._holeMode = true; + + return this; + }; + + /** + * End adding holes to the last draw shape + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.endHole = function endHole () + { + this.finishPoly(); + this._holeMode = false; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Graphics.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this.geometry.refCount--; + if (this.geometry.refCount === 0) + { + this.geometry.dispose(); + } + + this._matrix = null; + this.currentPath = null; + this._lineStyle.destroy(); + this._lineStyle = null; + this._fillStyle.destroy(); + this._fillStyle = null; + this.geometry = null; + this.shader = null; + this.vertexData = null; + this.batches.length = 0; + this.batches = null; + + Container.prototype.destroy.call(this, options); + }; + + Object.defineProperties( Graphics.prototype, prototypeAccessors ); + + return Graphics; +}(Container)); + +/** + * Temporary point to use for containsPoint + * + * @static + * @private + * @member {PIXI.Point} + */ +Graphics._TEMP_POINT = new Point(); + +/*! + * @pixi/sprite - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint = new Point(); +var indices = new Uint16Array([0, 1, 2, 0, 2, 3]); + +/** + * The Sprite object is the base for all textured objects that are rendered to the screen +* + * A sprite can be created directly from an image like this: + * + * ```js + * let sprite = PIXI.Sprite.from('assets/image.png'); + * ``` + * + * The more efficient way to create sprites is using a {@link PIXI.Spritesheet}, + * as swapping base textures when rendering to the screen is inefficient. + * + * ```js + * PIXI.Loader.shared.add("assets/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["assets/spritesheet.json"].spritesheet; + * let sprite = new PIXI.Sprite(sheet.textures["image.png"]); + * ... + * } + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Sprite = /*@__PURE__*/(function (Container) { + function Sprite(texture) + { + Container.call(this); + + /** + * The anchor point defines the normalized coordinates + * in the texture that map to the position of this + * sprite. + * + * By default, this is `(0,0)` (or `texture.defaultAnchor` + * if you have modified that), which means the position + * `(x,y)` of this `Sprite` will be the top-left corner. + * + * Note: Updating `texture.defaultAnchor` after + * constructing a `Sprite` does _not_ update its anchor. + * + * {@link https://docs.cocos2d-x.org/cocos2d-x/en/sprites/manipulation.html} + * + * @default `texture.defaultAnchor` + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint( + this._onAnchorUpdate, + this, + (texture ? texture.defaultAnchor.x : 0), + (texture ? texture.defaultAnchor.y : 0) + ); + + /** + * The texture that the sprite is using + * + * @private + * @member {PIXI.Texture} + */ + this._texture = null; + + /** + * The width of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._width = 0; + + /** + * The height of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._height = 0; + + /** + * The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect. + * + * @private + * @member {number} + * @default 0xFFFFFF + */ + this._tint = null; + this._tintRGB = null; + this.tint = 0xFFFFFF; + + /** + * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ + this.blendMode = BLEND_MODES.NORMAL; + + /** + * The shader that will be used to render the sprite. Set to null to remove a current shader. + * + * @member {PIXI.Filter|PIXI.Shader} + */ + this.shader = null; + + /** + * Cached tint value so we can tell when the tint is changed. + * Value is used for 2d CanvasRenderer. + * + * @protected + * @member {number} + * @default 0xFFFFFF + */ + this._cachedTint = 0xFFFFFF; + + /** + * this is used to store the uvs data of the sprite, assigned at the same time + * as the vertexData in calculateVertices() + * + * @private + * @member {Float32Array} + */ + this.uvs = null; + + // call texture setter + this.texture = texture || Texture.EMPTY; + + /** + * this is used to store the vertex data of the sprite (basically a quad) + * + * @private + * @member {Float32Array} + */ + this.vertexData = new Float32Array(8); + + /** + * This is used to calculate the bounds of the object IF it is a trimmed sprite + * + * @private + * @member {Float32Array} + */ + this.vertexTrimmedData = null; + + this._transformID = -1; + this._textureID = -1; + + this._transformTrimmedID = -1; + this._textureTrimmedID = -1; + + // Batchable stuff.. + // TODO could make this a mixin? + this.indices = indices; + this.size = 4; + this.start = 0; + + /** + * Plugin that is responsible for rendering this element. + * Allows to customize the rendering process without overriding '_render' & '_renderCanvas' methods. + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = true; + + /** + * Internal roundPixels field + * + * @member {boolean} + * @private + */ + this._roundPixels = settings.ROUND_PIXELS; + } + + if ( Container ) Sprite.__proto__ = Container; + Sprite.prototype = Object.create( Container && Container.prototype ); + Sprite.prototype.constructor = Sprite; + + var prototypeAccessors = { roundPixels: { configurable: true },width: { configurable: true },height: { configurable: true },anchor: { configurable: true },tint: { configurable: true },texture: { configurable: true } }; + + /** + * When the texture is updated, this event will fire to update the scale and frame + * + * @private + */ + Sprite.prototype._onTextureUpdate = function _onTextureUpdate () + { + this._textureID = -1; + this._textureTrimmedID = -1; + this._cachedTint = 0xFFFFFF; + + // so if _width is 0 then width was not set.. + if (this._width) + { + this.scale.x = sign$1(this.scale.x) * this._width / this._texture.orig.width; + } + + if (this._height) + { + this.scale.y = sign$1(this.scale.y) * this._height / this._texture.orig.height; + } + }; + + /** + * Called when the anchor position updates. + * + * @private + */ + Sprite.prototype._onAnchorUpdate = function _onAnchorUpdate () + { + this._transformID = -1; + this._transformTrimmedID = -1; + }; + + /** + * calculates worldTransform * vertices, store it in vertexData + */ + Sprite.prototype.calculateVertices = function calculateVertices () + { + var texture = this._texture; + + if (this._transformID === this.transform._worldID && this._textureID === texture._updateID) + { + return; + } + + // update texture UV here, because base texture can be changed without calling `_onTextureUpdate` + if (this._textureID !== texture._updateID) + { + this.uvs = this._texture._uvs.uvsFloat32; + } + + this._transformID = this.transform._worldID; + this._textureID = texture._updateID; + + // set the vertex data + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + var vertexData = this.vertexData; + var trim = texture.trim; + var orig = texture.orig; + var anchor = this._anchor; + + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the extra + // space before transforming the sprite coords. + w1 = trim.x - (anchor._x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (anchor._y * orig.height); + h0 = h1 + trim.height; + } + else + { + w1 = -anchor._x * orig.width; + w0 = w1 + orig.width; + + h1 = -anchor._y * orig.height; + h0 = h1 + orig.height; + } + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + + if (this._roundPixels) + { + for (var i = 0; i < 8; i++) + { + vertexData[i] = Math.round(vertexData[i]); + } + } + }; + + /** + * calculates worldTransform * vertices for a non texture with a trim. store it in vertexTrimmedData + * This is used to ensure that the true width and height of a trimmed texture is respected + */ + Sprite.prototype.calculateTrimmedVertices = function calculateTrimmedVertices () + { + if (!this.vertexTrimmedData) + { + this.vertexTrimmedData = new Float32Array(8); + } + else if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID) + { + return; + } + + this._transformTrimmedID = this.transform._worldID; + this._textureTrimmedID = this._texture._updateID; + + // lets do some special trim code! + var texture = this._texture; + var vertexData = this.vertexTrimmedData; + var orig = texture.orig; + var anchor = this._anchor; + + // lets calculate the new untrimmed bounds.. + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var w1 = -anchor._x * orig.width; + var w0 = w1 + orig.width; + + var h1 = -anchor._y * orig.height; + var h0 = h1 + orig.height; + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + }; + + /** + * + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The webgl renderer to use. + */ + Sprite.prototype._render = function _render (renderer) + { + this.calculateVertices(); + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + renderer.plugins[this.pluginName].render(this); + }; + + /** + * Updates the bounds of the sprite. + * + * @protected + */ + Sprite.prototype._calculateBounds = function _calculateBounds () + { + var trim = this._texture.trim; + var orig = this._texture.orig; + + // First lets check to see if the current texture has a trim.. + if (!trim || (trim.width === orig.width && trim.height === orig.height)) + { + // no trim! lets use the usual calculations.. + this.calculateVertices(); + this._bounds.addQuad(this.vertexData); + } + else + { + // lets calculate a special trimmed bounds... + this.calculateTrimmedVertices(); + this._bounds.addQuad(this.vertexTrimmedData); + } + }; + + /** + * Gets the local bounds of the sprite object. + * + * @param {PIXI.Rectangle} [rect] - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Sprite.prototype.getLocalBounds = function getLocalBounds (rect) + { + // we can do a fast local bounds if the sprite has no children! + if (this.children.length === 0) + { + this._bounds.minX = this._texture.orig.width * -this._anchor._x; + this._bounds.minY = this._texture.orig.height * -this._anchor._y; + this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x); + this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y); + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + return this._bounds.getRectangle(rect); + } + + return Container.prototype.getLocalBounds.call(this, rect); + }; + + /** + * Tests if a point is inside this sprite + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Sprite.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, tempPoint); + + var width = this._texture.orig.width; + var height = this._texture.orig.height; + var x1 = -width * this.anchor.x; + var y1 = 0; + + if (tempPoint.x >= x1 && tempPoint.x < x1 + width) + { + y1 = -height * this.anchor.y; + + if (tempPoint.y >= y1 && tempPoint.y < y1 + height) + { + return true; + } + } + + return false; + }; + + /** + * Destroys this sprite and optionally its texture and children + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well + */ + Sprite.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this._texture.off('update', this._onTextureUpdate, this); + + this._anchor = null; + + var destroyTexture = typeof options === 'boolean' ? options : options && options.texture; + + if (destroyTexture) + { + var destroyBaseTexture = typeof options === 'boolean' ? options : options && options.baseTexture; + + this._texture.destroy(!!destroyBaseTexture); + } + + this._texture = null; + this.shader = null; + }; + + // some helper functions.. + + /** + * Helper function that creates a new sprite based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Sprite} The newly created sprite + */ + Sprite.from = function from (source, options) + { + var texture = (source instanceof Texture) + ? source + : Texture.from(source, options); + + return new Sprite(texture); + }; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + prototypeAccessors.roundPixels.set = function (value) + { + if (this._roundPixels !== value) + { + this._transformID = -1; + } + this._roundPixels = value; + }; + + prototypeAccessors.roundPixels.get = function () + { + return this._roundPixels; + }; + + /** + * The width of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * The anchor sets the origin point of the text. The default value is taken from the {@link PIXI.Texture|Texture} + * and passed to the constructor. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * If you pass only single parameter, it will set both x and y to the same value as shown in the example below. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.anchor.set(0.5); // This will set the origin to center. (0.5) is same as (0.5, 0.5). + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + this._anchor.copyFrom(value); + }; + + /** + * The tint applied to the sprite. This is a hex value. + * A value of 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._tint = value; + this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16); + }; + + /** + * The texture that the sprite is using + * + * @member {PIXI.Texture} + */ + prototypeAccessors.texture.get = function () + { + return this._texture; + }; + + prototypeAccessors.texture.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._texture === value) + { + return; + } + + this._texture = value || Texture.EMPTY; + this._cachedTint = 0xFFFFFF; + + this._textureID = -1; + this._textureTrimmedID = -1; + + if (value) + { + // wait for the texture to load + if (value.baseTexture.valid) + { + this._onTextureUpdate(); + } + else + { + value.once('update', this._onTextureUpdate, this); + } + } + }; + + Object.defineProperties( Sprite.prototype, prototypeAccessors ); + + return Sprite; +}(Container)); + +/*! + * @pixi/text - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Constants that define the type of gradient on text. + * + * @static + * @constant + * @name TEXT_GRADIENT + * @memberof PIXI + * @type {object} + * @property {number} LINEAR_VERTICAL Vertical gradient + * @property {number} LINEAR_HORIZONTAL Linear gradient + */ +var TEXT_GRADIENT = { + LINEAR_VERTICAL: 0, + LINEAR_HORIZONTAL: 1, +}; + +// disabling eslint for now, going to rewrite this in v5 + +var defaultStyle = { + align: 'left', + breakWords: false, + dropShadow: false, + dropShadowAlpha: 1, + dropShadowAngle: Math.PI / 6, + dropShadowBlur: 0, + dropShadowColor: 'black', + dropShadowDistance: 5, + fill: 'black', + fillGradientType: TEXT_GRADIENT.LINEAR_VERTICAL, + fillGradientStops: [], + fontFamily: 'Arial', + fontSize: 26, + fontStyle: 'normal', + fontVariant: 'normal', + fontWeight: 'normal', + letterSpacing: 0, + lineHeight: 0, + lineJoin: 'miter', + miterLimit: 10, + padding: 0, + stroke: 'black', + strokeThickness: 0, + textBaseline: 'alphabetic', + trim: false, + whiteSpace: 'pre', + wordWrap: false, + wordWrapWidth: 100, + leading: 0, +}; + +var genericFontFamilies = [ + 'serif', + 'sans-serif', + 'monospace', + 'cursive', + 'fantasy', + 'system-ui' ]; + +/** + * A TextStyle Object contains information to decorate a Text objects. + * + * An instance can be shared between multiple Text objects; then changing the style will update all text objects using it. + * + * A tool can be used to generate a text style [here](https://pixijs.io/pixi-text-style). + * + * @class + * @memberof PIXI + */ +var TextStyle = function TextStyle(style) +{ + this.styleID = 0; + + this.reset(); + + deepCopyProperties(this, style, style); +}; + +var prototypeAccessors$7 = { align: { configurable: true },breakWords: { configurable: true },dropShadow: { configurable: true },dropShadowAlpha: { configurable: true },dropShadowAngle: { configurable: true },dropShadowBlur: { configurable: true },dropShadowColor: { configurable: true },dropShadowDistance: { configurable: true },fill: { configurable: true },fillGradientType: { configurable: true },fillGradientStops: { configurable: true },fontFamily: { configurable: true },fontSize: { configurable: true },fontStyle: { configurable: true },fontVariant: { configurable: true },fontWeight: { configurable: true },letterSpacing: { configurable: true },lineHeight: { configurable: true },leading: { configurable: true },lineJoin: { configurable: true },miterLimit: { configurable: true },padding: { configurable: true },stroke: { configurable: true },strokeThickness: { configurable: true },textBaseline: { configurable: true },trim: { configurable: true },whiteSpace: { configurable: true },wordWrap: { configurable: true },wordWrapWidth: { configurable: true } }; + +/** + * Creates a new TextStyle object with the same values as this one. + * Note that the only the properties of the object are cloned. + * + * @return {PIXI.TextStyle} New cloned TextStyle object + */ +TextStyle.prototype.clone = function clone () +{ + var clonedProperties = {}; + + deepCopyProperties(clonedProperties, this, defaultStyle); + + return new TextStyle(clonedProperties); +}; + +/** + * Resets all properties to the defaults specified in TextStyle.prototype._default + */ +TextStyle.prototype.reset = function reset () +{ + deepCopyProperties(this, defaultStyle, defaultStyle); +}; + +/** + * Alignment for multiline text ('left', 'center' or 'right'), does not affect single line text + * + * @member {string} + */ +prototypeAccessors$7.align.get = function () +{ + return this._align; +}; +prototypeAccessors$7.align.set = function (align) // eslint-disable-line require-jsdoc +{ + if (this._align !== align) + { + this._align = align; + this.styleID++; + } +}; + +/** + * Indicates if lines can be wrapped within words, it needs wordWrap to be set to true + * + * @member {boolean} + */ +prototypeAccessors$7.breakWords.get = function () +{ + return this._breakWords; +}; +prototypeAccessors$7.breakWords.set = function (breakWords) // eslint-disable-line require-jsdoc +{ + if (this._breakWords !== breakWords) + { + this._breakWords = breakWords; + this.styleID++; + } +}; + +/** + * Set a drop shadow for the text + * + * @member {boolean} + */ +prototypeAccessors$7.dropShadow.get = function () +{ + return this._dropShadow; +}; +prototypeAccessors$7.dropShadow.set = function (dropShadow) // eslint-disable-line require-jsdoc +{ + if (this._dropShadow !== dropShadow) + { + this._dropShadow = dropShadow; + this.styleID++; + } +}; + +/** + * Set alpha for the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAlpha.get = function () +{ + return this._dropShadowAlpha; +}; +prototypeAccessors$7.dropShadowAlpha.set = function (dropShadowAlpha) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAlpha !== dropShadowAlpha) + { + this._dropShadowAlpha = dropShadowAlpha; + this.styleID++; + } +}; + +/** + * Set a angle of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAngle.get = function () +{ + return this._dropShadowAngle; +}; +prototypeAccessors$7.dropShadowAngle.set = function (dropShadowAngle) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAngle !== dropShadowAngle) + { + this._dropShadowAngle = dropShadowAngle; + this.styleID++; + } +}; + +/** + * Set a shadow blur radius + * + * @member {number} + */ +prototypeAccessors$7.dropShadowBlur.get = function () +{ + return this._dropShadowBlur; +}; +prototypeAccessors$7.dropShadowBlur.set = function (dropShadowBlur) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowBlur !== dropShadowBlur) + { + this._dropShadowBlur = dropShadowBlur; + this.styleID++; + } +}; + +/** + * A fill style to be used on the dropshadow e.g 'red', '#00FF00' + * + * @member {string|number} + */ +prototypeAccessors$7.dropShadowColor.get = function () +{ + return this._dropShadowColor; +}; +prototypeAccessors$7.dropShadowColor.set = function (dropShadowColor) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(dropShadowColor); + if (this._dropShadowColor !== outputColor) + { + this._dropShadowColor = outputColor; + this.styleID++; + } +}; + +/** + * Set a distance of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowDistance.get = function () +{ + return this._dropShadowDistance; +}; +prototypeAccessors$7.dropShadowDistance.set = function (dropShadowDistance) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowDistance !== dropShadowDistance) + { + this._dropShadowDistance = dropShadowDistance; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text e.g 'red', '#00FF00'. + * Can be an array to create a gradient eg ['#000000','#FFFFFF'] + * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle|MDN} + * + * @member {string|string[]|number|number[]|CanvasGradient|CanvasPattern} + */ +prototypeAccessors$7.fill.get = function () +{ + return this._fill; +}; +prototypeAccessors$7.fill.set = function (fill) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(fill); + if (this._fill !== outputColor) + { + this._fill = outputColor; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this can change the type/direction of the gradient. + * See {@link PIXI.TEXT_GRADIENT} + * + * @member {number} + */ +prototypeAccessors$7.fillGradientType.get = function () +{ + return this._fillGradientType; +}; +prototypeAccessors$7.fillGradientType.set = function (fillGradientType) // eslint-disable-line require-jsdoc +{ + if (this._fillGradientType !== fillGradientType) + { + this._fillGradientType = fillGradientType; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this array can set the stop points + * (numbers between 0 and 1) for the color, overriding the default behaviour of evenly spacing them. + * + * @member {number[]} + */ +prototypeAccessors$7.fillGradientStops.get = function () +{ + return this._fillGradientStops; +}; +prototypeAccessors$7.fillGradientStops.set = function (fillGradientStops) // eslint-disable-line require-jsdoc +{ + if (!areArraysEqual(this._fillGradientStops,fillGradientStops)) + { + this._fillGradientStops = fillGradientStops; + this.styleID++; + } +}; + +/** + * The font family + * + * @member {string|string[]} + */ +prototypeAccessors$7.fontFamily.get = function () +{ + return this._fontFamily; +}; +prototypeAccessors$7.fontFamily.set = function (fontFamily) // eslint-disable-line require-jsdoc +{ + if (this.fontFamily !== fontFamily) + { + this._fontFamily = fontFamily; + this.styleID++; + } +}; + +/** + * The font size + * (as a number it converts to px, but as a string, equivalents are '26px','20pt','160%' or '1.6em') + * + * @member {number|string} + */ +prototypeAccessors$7.fontSize.get = function () +{ + return this._fontSize; +}; +prototypeAccessors$7.fontSize.set = function (fontSize) // eslint-disable-line require-jsdoc +{ + if (this._fontSize !== fontSize) + { + this._fontSize = fontSize; + this.styleID++; + } +}; + +/** + * The font style + * ('normal', 'italic' or 'oblique') + * + * @member {string} + */ +prototypeAccessors$7.fontStyle.get = function () +{ + return this._fontStyle; +}; +prototypeAccessors$7.fontStyle.set = function (fontStyle) // eslint-disable-line require-jsdoc +{ + if (this._fontStyle !== fontStyle) + { + this._fontStyle = fontStyle; + this.styleID++; + } +}; + +/** + * The font variant + * ('normal' or 'small-caps') + * + * @member {string} + */ +prototypeAccessors$7.fontVariant.get = function () +{ + return this._fontVariant; +}; +prototypeAccessors$7.fontVariant.set = function (fontVariant) // eslint-disable-line require-jsdoc +{ + if (this._fontVariant !== fontVariant) + { + this._fontVariant = fontVariant; + this.styleID++; + } +}; + +/** + * The font weight + * ('normal', 'bold', 'bolder', 'lighter' and '100', '200', '300', '400', '500', '600', '700', 800' or '900') + * + * @member {string} + */ +prototypeAccessors$7.fontWeight.get = function () +{ + return this._fontWeight; +}; +prototypeAccessors$7.fontWeight.set = function (fontWeight) // eslint-disable-line require-jsdoc +{ + if (this._fontWeight !== fontWeight) + { + this._fontWeight = fontWeight; + this.styleID++; + } +}; + +/** + * The amount of spacing between letters, default is 0 + * + * @member {number} + */ +prototypeAccessors$7.letterSpacing.get = function () +{ + return this._letterSpacing; +}; +prototypeAccessors$7.letterSpacing.set = function (letterSpacing) // eslint-disable-line require-jsdoc +{ + if (this._letterSpacing !== letterSpacing) + { + this._letterSpacing = letterSpacing; + this.styleID++; + } +}; + +/** + * The line height, a number that represents the vertical space that a letter uses + * + * @member {number} + */ +prototypeAccessors$7.lineHeight.get = function () +{ + return this._lineHeight; +}; +prototypeAccessors$7.lineHeight.set = function (lineHeight) // eslint-disable-line require-jsdoc +{ + if (this._lineHeight !== lineHeight) + { + this._lineHeight = lineHeight; + this.styleID++; + } +}; + +/** + * The space between lines + * + * @member {number} + */ +prototypeAccessors$7.leading.get = function () +{ + return this._leading; +}; +prototypeAccessors$7.leading.set = function (leading) // eslint-disable-line require-jsdoc +{ + if (this._leading !== leading) + { + this._leading = leading; + this.styleID++; + } +}; + +/** + * The lineJoin property sets the type of corner created, it can resolve spiked text issues. + * Default is 'miter' (creates a sharp corner). + * + * @member {string} + */ +prototypeAccessors$7.lineJoin.get = function () +{ + return this._lineJoin; +}; +prototypeAccessors$7.lineJoin.set = function (lineJoin) // eslint-disable-line require-jsdoc +{ + if (this._lineJoin !== lineJoin) + { + this._lineJoin = lineJoin; + this.styleID++; + } +}; + +/** + * The miter limit to use when using the 'miter' lineJoin mode + * This can reduce or increase the spikiness of rendered text. + * + * @member {number} + */ +prototypeAccessors$7.miterLimit.get = function () +{ + return this._miterLimit; +}; +prototypeAccessors$7.miterLimit.set = function (miterLimit) // eslint-disable-line require-jsdoc +{ + if (this._miterLimit !== miterLimit) + { + this._miterLimit = miterLimit; + this.styleID++; + } +}; + +/** + * Occasionally some fonts are cropped. Adding some padding will prevent this from happening + * by adding padding to all sides of the text. + * + * @member {number} + */ +prototypeAccessors$7.padding.get = function () +{ + return this._padding; +}; +prototypeAccessors$7.padding.set = function (padding) // eslint-disable-line require-jsdoc +{ + if (this._padding !== padding) + { + this._padding = padding; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text stroke + * e.g 'blue', '#FCFF00' + * + * @member {string|number} + */ +prototypeAccessors$7.stroke.get = function () +{ + return this._stroke; +}; +prototypeAccessors$7.stroke.set = function (stroke) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(stroke); + if (this._stroke !== outputColor) + { + this._stroke = outputColor; + this.styleID++; + } +}; + +/** + * A number that represents the thickness of the stroke. + * Default is 0 (no stroke) + * + * @member {number} + */ +prototypeAccessors$7.strokeThickness.get = function () +{ + return this._strokeThickness; +}; +prototypeAccessors$7.strokeThickness.set = function (strokeThickness) // eslint-disable-line require-jsdoc +{ + if (this._strokeThickness !== strokeThickness) + { + this._strokeThickness = strokeThickness; + this.styleID++; + } +}; + +/** + * The baseline of the text that is rendered. + * + * @member {string} + */ +prototypeAccessors$7.textBaseline.get = function () +{ + return this._textBaseline; +}; +prototypeAccessors$7.textBaseline.set = function (textBaseline) // eslint-disable-line require-jsdoc +{ + if (this._textBaseline !== textBaseline) + { + this._textBaseline = textBaseline; + this.styleID++; + } +}; + +/** + * Trim transparent borders + * + * @member {boolean} + */ +prototypeAccessors$7.trim.get = function () +{ + return this._trim; +}; +prototypeAccessors$7.trim.set = function (trim) // eslint-disable-line require-jsdoc +{ + if (this._trim !== trim) + { + this._trim = trim; + this.styleID++; + } +}; + +/** + * How newlines and spaces should be handled. + * Default is 'pre' (preserve, preserve). + * + * value | New lines | Spaces + * --- | --- | --- + * 'normal' | Collapse | Collapse + * 'pre' | Preserve | Preserve + * 'pre-line' | Preserve | Collapse + * + * @member {string} + */ +prototypeAccessors$7.whiteSpace.get = function () +{ + return this._whiteSpace; +}; +prototypeAccessors$7.whiteSpace.set = function (whiteSpace) // eslint-disable-line require-jsdoc +{ + if (this._whiteSpace !== whiteSpace) + { + this._whiteSpace = whiteSpace; + this.styleID++; + } +}; + +/** + * Indicates if word wrap should be used + * + * @member {boolean} + */ +prototypeAccessors$7.wordWrap.get = function () +{ + return this._wordWrap; +}; +prototypeAccessors$7.wordWrap.set = function (wordWrap) // eslint-disable-line require-jsdoc +{ + if (this._wordWrap !== wordWrap) + { + this._wordWrap = wordWrap; + this.styleID++; + } +}; + +/** + * The width at which text will wrap, it needs wordWrap to be set to true + * + * @member {number} + */ +prototypeAccessors$7.wordWrapWidth.get = function () +{ + return this._wordWrapWidth; +}; +prototypeAccessors$7.wordWrapWidth.set = function (wordWrapWidth) // eslint-disable-line require-jsdoc +{ + if (this._wordWrapWidth !== wordWrapWidth) + { + this._wordWrapWidth = wordWrapWidth; + this.styleID++; + } +}; + +/** + * Generates a font style string to use for `TextMetrics.measureFont()`. + * + * @return {string} Font style string, for passing to `TextMetrics.measureFont()` + */ +TextStyle.prototype.toFontString = function toFontString () +{ + // build canvas api font setting from individual components. Convert a numeric this.fontSize to px + var fontSizeString = (typeof this.fontSize === 'number') ? ((this.fontSize) + "px") : this.fontSize; + + // Clean-up fontFamily property by quoting each font name + // this will support font names with spaces + var fontFamilies = this.fontFamily; + + if (!Array.isArray(this.fontFamily)) + { + fontFamilies = this.fontFamily.split(','); + } + + for (var i = fontFamilies.length - 1; i >= 0; i--) + { + // Trim any extra white-space + var fontFamily = fontFamilies[i].trim(); + + // Check if font already contains strings + if (!(/([\"\'])[^\'\"]+\1/).test(fontFamily) && genericFontFamilies.indexOf(fontFamily) < 0) + { + fontFamily = "\"" + fontFamily + "\""; + } + fontFamilies[i] = fontFamily; + } + + return ((this.fontStyle) + " " + (this.fontVariant) + " " + (this.fontWeight) + " " + fontSizeString + " " + (fontFamilies.join(','))); +}; + +Object.defineProperties( TextStyle.prototype, prototypeAccessors$7 ); + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getSingleColor(color) +{ + if (typeof color === 'number') + { + return hex2string(color); + } + else if ( typeof color === 'string' ) + { + if ( color.indexOf('0x') === 0 ) + { + color = color.replace('0x', '#'); + } + } + + return color; +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getColor(color) +{ + if (!Array.isArray(color)) + { + return getSingleColor(color); + } + else + { + for (var i = 0; i < color.length; ++i) + { + color[i] = getSingleColor(color[i]); + } + + return color; + } +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {Array} array1 First array to compare + * @param {Array} array2 Second array to compare + * @return {boolean} Do the arrays contain the same values in the same order + */ +function areArraysEqual(array1, array2) +{ + if (!Array.isArray(array1) || !Array.isArray(array2)) + { + return false; + } + + if (array1.length !== array2.length) + { + return false; + } + + for (var i = 0; i < array1.length; ++i) + { + if (array1[i] !== array2[i]) + { + return false; + } + } + + return true; +} + +/** + * Utility function to ensure that object properties are copied by value, and not by reference + * @private + * @param {Object} target Target object to copy properties into + * @param {Object} source Source object for the properties to copy + * @param {string} propertyObj Object containing properties names we want to loop over + */ +function deepCopyProperties(target, source, propertyObj) { + for (var prop in propertyObj) { + if (Array.isArray(source[prop])) { + target[prop] = source[prop].slice(); + } else { + target[prop] = source[prop]; + } + } +} + +/** + * The TextMetrics object represents the measurement of a block of text with a specified style. + * + * ```js + * let style = new PIXI.TextStyle({fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}) + * let textMetrics = PIXI.TextMetrics.measureText('Your text', style) + * ``` + * + * @class + * @memberof PIXI + */ +var TextMetrics = function TextMetrics(text, style, width, height, lines, lineWidths, lineHeight, maxLineWidth, fontProperties) +{ + /** + * The text that was measured + * + * @member {string} + */ + this.text = text; + + /** + * The style that was measured + * + * @member {PIXI.TextStyle} + */ + this.style = style; + + /** + * The measured width of the text + * + * @member {number} + */ + this.width = width; + + /** + * The measured height of the text + * + * @member {number} + */ + this.height = height; + + /** + * An array of lines of the text broken by new lines and wrapping is specified in style + * + * @member {string[]} + */ + this.lines = lines; + + /** + * An array of the line widths for each line matched to `lines` + * + * @member {number[]} + */ + this.lineWidths = lineWidths; + + /** + * The measured line height for this style + * + * @member {number} + */ + this.lineHeight = lineHeight; + + /** + * The maximum line width for all measured lines + * + * @member {number} + */ + this.maxLineWidth = maxLineWidth; + + /** + * The font properties object from TextMetrics.measureFont + * + * @member {PIXI.IFontMetrics} + */ + this.fontProperties = fontProperties; +}; + +/** + * Measures the supplied string of text and returns a Rectangle. + * + * @param {string} text - the text to measure. + * @param {PIXI.TextStyle} style - the text style to use for measuring + * @param {boolean} [wordWrap] - optional override for if word-wrap should be applied to the text. + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {PIXI.TextMetrics} measured width and height of the text. + */ +TextMetrics.measureText = function measureText (text, style, wordWrap, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + wordWrap = (wordWrap === undefined || wordWrap === null) ? style.wordWrap : wordWrap; + var font = style.toFontString(); + var fontProperties = TextMetrics.measureFont(font); + + // fallback in case UA disallow canvas data extraction + // (toDataURI, getImageData functions) + if (fontProperties.fontSize === 0) + { + fontProperties.fontSize = style.fontSize; + fontProperties.ascent = style.fontSize; + } + + var context = canvas.getContext('2d'); + + context.font = font; + + var outputText = wordWrap ? TextMetrics.wordWrap(text, style, canvas) : text; + var lines = outputText.split(/(?:\r\n|\r|\n)/); + var lineWidths = new Array(lines.length); + var maxLineWidth = 0; + + for (var i = 0; i < lines.length; i++) + { + var lineWidth = context.measureText(lines[i]).width + ((lines[i].length - 1) * style.letterSpacing); + + lineWidths[i] = lineWidth; + maxLineWidth = Math.max(maxLineWidth, lineWidth); + } + var width = maxLineWidth + style.strokeThickness; + + if (style.dropShadow) + { + width += style.dropShadowDistance; + } + + var lineHeight = style.lineHeight || fontProperties.fontSize + style.strokeThickness; + var height = Math.max(lineHeight, fontProperties.fontSize + style.strokeThickness) + + ((lines.length - 1) * (lineHeight + style.leading)); + + if (style.dropShadow) + { + height += style.dropShadowDistance; + } + + return new TextMetrics( + text, + style, + width, + height, + lines, + lineWidths, + lineHeight + style.leading, + maxLineWidth, + fontProperties + ); +}; + +/** + * Applies newlines to a string to have it optimally fit into the horizontal + * bounds set by the Text object's wordWrapWidth property. + * + * @private + * @param {string} text - String to apply word wrapping to + * @param {PIXI.TextStyle} style - the style to use when wrapping + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {string} New string with new lines applied where required + */ +TextMetrics.wordWrap = function wordWrap (text, style, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + var context = canvas.getContext('2d'); + + var width = 0; + var line = ''; + var lines = ''; + + var cache = {}; + var letterSpacing = style.letterSpacing; + var whiteSpace = style.whiteSpace; + + // How to handle whitespaces + var collapseSpaces = TextMetrics.collapseSpaces(whiteSpace); + var collapseNewlines = TextMetrics.collapseNewlines(whiteSpace); + + // whether or not spaces may be added to the beginning of lines + var canPrependSpaces = !collapseSpaces; + + // There is letterSpacing after every char except the last one + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_! + // so for convenience the above needs to be compared to width + 1 extra letterSpace + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!_ + // ________________________________________________ + // And then the final space is simply no appended to each line + var wordWrapWidth = style.wordWrapWidth + letterSpacing; + + // break text into words, spaces and newline chars + var tokens = TextMetrics.tokenize(text); + + for (var i = 0; i < tokens.length; i++) + { + // get the word, space or newlineChar + var token = tokens[i]; + + // if word is a new line + if (TextMetrics.isNewline(token)) + { + // keep the new line + if (!collapseNewlines) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = !collapseSpaces; + line = ''; + width = 0; + continue; + } + + // if we should collapse new lines + // we simply convert it into a space + token = ' '; + } + + // if we should collapse repeated whitespaces + if (collapseSpaces) + { + // check both this and the last tokens for spaces + var currIsBreakingSpace = TextMetrics.isBreakingSpace(token); + var lastIsBreakingSpace = TextMetrics.isBreakingSpace(line[line.length - 1]); + + if (currIsBreakingSpace && lastIsBreakingSpace) + { + continue; + } + } + + // get word width from cache if possible + var tokenWidth = TextMetrics.getFromCache(token, letterSpacing, cache, context); + + // word is longer than desired bounds + if (tokenWidth > wordWrapWidth) + { + // if we are not already at the beginning of a line + if (line !== '') + { + // start newlines for overflow words + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + // break large word over multiple lines + if (TextMetrics.canBreakWords(token, style.breakWords)) + { + // break word into characters + var characters = token.split(''); + + // loop the characters + for (var j = 0; j < characters.length; j++) + { + var char = characters[j]; + + var k = 1; + // we are not at the end of the token + + while (characters[j + k]) + { + var nextChar = characters[j + k]; + var lastChar = char[char.length - 1]; + + // should not split chars + if (!TextMetrics.canBreakChars(lastChar, nextChar, token, j, style.breakWords)) + { + // combine chars & move forward one + char += nextChar; + } + else + { + break; + } + + k++; + } + + j += char.length - 1; + + var characterWidth = TextMetrics.getFromCache(char, letterSpacing, cache, context); + + if (characterWidth + width > wordWrapWidth) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = false; + line = ''; + width = 0; + } + + line += char; + width += characterWidth; + } + } + + // run word out of the bounds + else + { + // if there are words in this line already + // finish that line and start a new one + if (line.length > 0) + { + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + var isLastToken = i === tokens.length - 1; + + // give it its own line if it's not the end + lines += TextMetrics.addLine(token, !isLastToken); + canPrependSpaces = false; + line = ''; + width = 0; + } + } + + // word could fit + else + { + // word won't fit because of existing words + // start a new line + if (tokenWidth + width > wordWrapWidth) + { + // if its a space we don't want it + canPrependSpaces = false; + + // add a new line + lines += TextMetrics.addLine(line); + + // start a new line + line = ''; + width = 0; + } + + // don't add spaces to the beginning of lines + if (line.length > 0 || !TextMetrics.isBreakingSpace(token) || canPrependSpaces) + { + // add the word to the current line + line += token; + + // update width counter + width += tokenWidth; + } + } + } + + lines += TextMetrics.addLine(line, false); + + return lines; +}; + +/** + * Convienience function for logging each line added during the wordWrap + * method + * + * @private + * @param {string} line - The line of text to add + * @param {boolean} newLine - Add new line character to end + * @return {string} A formatted line + */ +TextMetrics.addLine = function addLine (line, newLine) +{ + if ( newLine === void 0 ) newLine = true; + + line = TextMetrics.trimRight(line); + + line = (newLine) ? (line + "\n") : line; + + return line; +}; + +/** + * Gets & sets the widths of calculated characters in a cache object + * + * @private + * @param {string} key The key + * @param {number} letterSpacing The letter spacing + * @param {object} cache The cache + * @param {CanvasRenderingContext2D} context The canvas context + * @return {number} The from cache. + */ +TextMetrics.getFromCache = function getFromCache (key, letterSpacing, cache, context) +{ + var width = cache[key]; + + if (width === undefined) + { + var spacing = ((key.length) * letterSpacing); + + width = context.measureText(key).width + spacing; + cache[key] = width; + } + + return width; +}; + +/** + * Determines whether we should collapse breaking spaces + * + * @private + * @param {string} whiteSpace The TextStyle property whiteSpace + * @return {boolean} should collapse + */ +TextMetrics.collapseSpaces = function collapseSpaces (whiteSpace) +{ + return (whiteSpace === 'normal' || whiteSpace === 'pre-line'); +}; + +/** + * Determines whether we should collapse newLine chars + * + * @private + * @param {string} whiteSpace The white space + * @return {boolean} should collapse + */ +TextMetrics.collapseNewlines = function collapseNewlines (whiteSpace) +{ + return (whiteSpace === 'normal'); +}; + +/** + * trims breaking whitespaces from string + * + * @private + * @param {string} text The text + * @return {string} trimmed string + */ +TextMetrics.trimRight = function trimRight (text) +{ + if (typeof text !== 'string') + { + return ''; + } + + for (var i = text.length - 1; i >= 0; i--) + { + var char = text[i]; + + if (!TextMetrics.isBreakingSpace(char)) + { + break; + } + + text = text.slice(0, -1); + } + + return text; +}; + +/** + * Determines if char is a newline. + * + * @private + * @param {string} char The character + * @return {boolean} True if newline, False otherwise. + */ +TextMetrics.isNewline = function isNewline (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._newlines.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Determines if char is a breaking whitespace. + * + * @private + * @param {string} char The character + * @return {boolean} True if whitespace, False otherwise. + */ +TextMetrics.isBreakingSpace = function isBreakingSpace (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._breakingSpaces.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Splits a string into words, breaking-spaces and newLine characters + * + * @private + * @param {string} text The text + * @return {string[]} A tokenized array + */ +TextMetrics.tokenize = function tokenize (text) +{ + var tokens = []; + var token = ''; + + if (typeof text !== 'string') + { + return tokens; + } + + for (var i = 0; i < text.length; i++) + { + var char = text[i]; + + if (TextMetrics.isBreakingSpace(char) || TextMetrics.isNewline(char)) + { + if (token !== '') + { + tokens.push(token); + token = ''; + } + + tokens.push(char); + + continue; + } + + token += char; + } + + if (token !== '') + { + tokens.push(token); + } + + return tokens; +}; + +/** + * This method exists to be easily overridden + * It allows one to customise which words should break + * Examples are if the token is CJK or numbers. + * It must return a boolean. + * + * @private + * @param {string} token The token + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakWords = function canBreakWords (token, breakWords) +{ + return breakWords; +}; + +/** + * This method exists to be easily overridden + * It allows one to determine whether a pair of characters + * should be broken by newlines + * For example certain characters in CJK langs or numbers. + * It must return a boolean. + * + * @private + * @param {string} char The character + * @param {string} nextChar The next character + * @param {string} token The token/word the characters are from + * @param {number} index The index in the token of the char + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakChars = function canBreakChars (char, nextChar, token, index, breakWords) // eslint-disable-line no-unused-vars +{ + return true; +}; + +/** + * Calculates the ascent, descent and fontSize of a given font-style + * + * @static + * @param {string} font - String representing the style of the font + * @return {PIXI.IFontMetrics} Font properties object + */ +TextMetrics.measureFont = function measureFont (font) +{ + // as this method is used for preparing assets, don't recalculate things if we don't need to + if (TextMetrics._fonts[font]) + { + return TextMetrics._fonts[font]; + } + + var properties = {}; + + var canvas = TextMetrics._canvas; + var context = TextMetrics._context; + + context.font = font; + + var metricsString = TextMetrics.METRICS_STRING + TextMetrics.BASELINE_SYMBOL; + var width = Math.ceil(context.measureText(metricsString).width); + var baseline = Math.ceil(context.measureText(TextMetrics.BASELINE_SYMBOL).width); + var height = 2 * baseline; + + baseline = baseline * TextMetrics.BASELINE_MULTIPLIER | 0; + + canvas.width = width; + canvas.height = height; + + context.fillStyle = '#f00'; + context.fillRect(0, 0, width, height); + + context.font = font; + + context.textBaseline = 'alphabetic'; + context.fillStyle = '#000'; + context.fillText(metricsString, 0, baseline); + + var imagedata = context.getImageData(0, 0, width, height).data; + var pixels = imagedata.length; + var line = width * 4; + + var i = 0; + var idx = 0; + var stop = false; + + // ascent. scan from top to bottom until we find a non red pixel + for (i = 0; i < baseline; ++i) + { + for (var j = 0; j < line; j += 4) + { + if (imagedata[idx + j] !== 255) + { + stop = true; + break; + } + } + if (!stop) + { + idx += line; + } + else + { + break; + } + } + + properties.ascent = baseline - i; + + idx = pixels - line; + stop = false; + + // descent. scan from bottom to top until we find a non red pixel + for (i = height; i > baseline; --i) + { + for (var j$1 = 0; j$1 < line; j$1 += 4) + { + if (imagedata[idx + j$1] !== 255) + { + stop = true; + break; + } + } + + if (!stop) + { + idx -= line; + } + else + { + break; + } + } + + properties.descent = i - baseline; + properties.fontSize = properties.ascent + properties.descent; + + TextMetrics._fonts[font] = properties; + + return properties; +}; + +/** + * Clear font metrics in metrics cache. + * + * @static + * @param {string} [font] - font name. If font name not set then clear cache for all fonts. + */ +TextMetrics.clearMetrics = function clearMetrics (font) +{ + if ( font === void 0 ) font = ''; + + if (font) + { + delete TextMetrics._fonts[font]; + } + else + { + TextMetrics._fonts = {}; + } +}; + +/** + * Internal return object for {@link PIXI.TextMetrics.measureFont `TextMetrics.measureFont`}. + * + * @typedef {object} FontMetrics + * @property {number} ascent - The ascent distance + * @property {number} descent - The descent distance + * @property {number} fontSize - Font size from ascent to descent + * @memberof PIXI.TextMetrics + * @private + */ + +var canvas = (function () { + try + { + // OffscreenCanvas2D measureText can be up to 40% faster. + var c = new OffscreenCanvas(0, 0); + + return c.getContext('2d') ? c : document.createElement('canvas'); + } + catch (ex) + { + return document.createElement('canvas'); + } +})(); + +canvas.width = canvas.height = 10; + +/** + * Cached canvas element for measuring text + * + * @memberof PIXI.TextMetrics + * @type {HTMLCanvasElement} + * @private + */ +TextMetrics._canvas = canvas; + +/** + * Cache for context to use. + * + * @memberof PIXI.TextMetrics + * @type {CanvasRenderingContext2D} + * @private + */ +TextMetrics._context = canvas.getContext('2d'); + +/** + * Cache of {@see PIXI.TextMetrics.FontMetrics} objects. + * + * @memberof PIXI.TextMetrics + * @type {Object} + * @private + */ +TextMetrics._fonts = {}; + +/** + * String used for calculate font metrics. + * These characters are all tall to help calculate the height required for text. + * + * @static + * @memberof PIXI.TextMetrics + * @name METRICS_STRING + * @type {string} + * @default |ÉqÅ + */ +TextMetrics.METRICS_STRING = '|ÉqÅ'; + +/** + * Baseline symbol for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_SYMBOL + * @type {string} + * @default M + */ +TextMetrics.BASELINE_SYMBOL = 'M'; + +/** + * Baseline multiplier for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_MULTIPLIER + * @type {number} + * @default 1.4 + */ +TextMetrics.BASELINE_MULTIPLIER = 1.4; + +/** + * Cache of new line chars. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._newlines = [ + 0x000A, // line feed + 0x000D ]; + +/** + * Cache of breaking spaces. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._breakingSpaces = [ + 0x0009, // character tabulation + 0x0020, // space + 0x2000, // en quad + 0x2001, // em quad + 0x2002, // en space + 0x2003, // em space + 0x2004, // three-per-em space + 0x2005, // four-per-em space + 0x2006, // six-per-em space + 0x2008, // punctuation space + 0x2009, // thin space + 0x200A, // hair space + 0x205F, // medium mathematical space + 0x3000 ]; + +/** + * A number, or a string containing a number. + * + * @memberof PIXI + * @typedef IFontMetrics + * @property {number} ascent - Font ascent + * @property {number} descent - Font descent + * @property {number} fontSize - Font size + */ + +/* eslint max-depth: [2, 8] */ + +var defaultDestroyOptions = { + texture: true, + children: false, + baseTexture: true, +}; + +/** + * A Text Object will create a line or multiple lines of text. + * + * The text is created using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API). + * + * The primary advantage of this class over BitmapText is that you have great control over the style of the next, + * which you can change at runtime. + * + * The primary disadvantages is that each piece of text has it's own texture, which can use more memory. + * When text changes, this texture has to be re-generated and re-uploaded to the GPU, taking up time. + * + * To split a line you can use '\n' in your text string, or, on the `style` object, + * change its `wordWrap` property to true and and give the `wordWrapWidth` property a value. + * + * A Text can be created directly from a string and a style object, + * which can be generated [here](https://pixijs.io/pixi-text-style). + * + * ```js + * let text = new PIXI.Text('This is a PixiJS text',{fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}); + * ``` + * + * @class + * @extends PIXI.Sprite + * @memberof PIXI + */ +var Text = /*@__PURE__*/(function (Sprite) { + function Text(text, style, canvas) + { + canvas = canvas || document.createElement('canvas'); + + canvas.width = 3; + canvas.height = 3; + + var texture = Texture.from(canvas); + + texture.orig = new Rectangle(); + texture.trim = new Rectangle(); + + Sprite.call(this, texture); + + /** + * The canvas element that everything is drawn to + * + * @member {HTMLCanvasElement} + */ + this.canvas = canvas; + + /** + * The canvas 2d context that everything is drawn with + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + this._resolution = settings.RESOLUTION; + this._autoResolution = true; + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = null; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._style = null; + /** + * Private listener to track style changes. + * + * @member {Function} + * @private + */ + this._styleListener = null; + + /** + * Private tracker for the current font. + * + * @member {string} + * @private + */ + this._font = ''; + + this.text = text; + this.style = style; + + this.localStyleID = -1; + } + + if ( Sprite ) Text.__proto__ = Sprite; + Text.prototype = Object.create( Sprite && Sprite.prototype ); + Text.prototype.constructor = Text; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },style: { configurable: true },text: { configurable: true },resolution: { configurable: true } }; + + /** + * Renders text and updates it when needed. + * + * @private + * @param {boolean} respectDirty - Whether to abort updating the text if the Text isn't dirty and the function is called. + */ + Text.prototype.updateText = function updateText (respectDirty) + { + var style = this._style; + + // check if style has changed.. + if (this.localStyleID !== style.styleID) + { + this.dirty = true; + this.localStyleID = style.styleID; + } + + if (!this.dirty && respectDirty) + { + return; + } + + this._font = this._style.toFontString(); + + var context = this.context; + var measured = TextMetrics.measureText(this._text || ' ', this._style, this._style.wordWrap, this.canvas); + var width = measured.width; + var height = measured.height; + var lines = measured.lines; + var lineHeight = measured.lineHeight; + var lineWidths = measured.lineWidths; + var maxLineWidth = measured.maxLineWidth; + var fontProperties = measured.fontProperties; + + this.canvas.width = Math.ceil((Math.max(1, width) + (style.padding * 2)) * this._resolution); + this.canvas.height = Math.ceil((Math.max(1, height) + (style.padding * 2)) * this._resolution); + + context.scale(this._resolution, this._resolution); + + context.clearRect(0, 0, this.canvas.width, this.canvas.height); + + context.font = this._font; + context.lineWidth = style.strokeThickness; + context.textBaseline = style.textBaseline; + context.lineJoin = style.lineJoin; + context.miterLimit = style.miterLimit; + + var linePositionX; + var linePositionY; + + // require 2 passes if a shadow; the first to draw the drop shadow, the second to draw the text + var passesCount = style.dropShadow ? 2 : 1; + + // For v4, we drew text at the colours of the drop shadow underneath the normal text. This gave the correct zIndex, + // but features such as alpha and shadowblur did not look right at all, since we were using actual text as a shadow. + // + // For v5.0.0, we moved over to just use the canvas API for drop shadows, which made them look much nicer and more + // visually please, but now because the stroke is drawn and then the fill, drop shadows would appear on both the fill + // and the stroke; and fill drop shadows would appear over the top of the stroke. + // + // For v5.1.1, the new route is to revert to v4 style of drawing text first to get the drop shadows underneath normal + // text, but instead drawing text in the correct location, we'll draw it off screen (-paddingY), and then adjust the + // drop shadow so only that appears on screen (+paddingY). Now we'll have the correct draw order of the shadow + // beneath the text, whilst also having the proper text shadow styling. + for (var i = 0; i < passesCount; ++i) + { + var isShadowPass = style.dropShadow && i === 0; + var dsOffsetText = isShadowPass ? height * 2 : 0; // we only want the drop shadow, so put text way off-screen + var dsOffsetShadow = dsOffsetText * this.resolution; + + if (isShadowPass) + { + // On Safari, text with gradient and drop shadows together do not position correctly + // if the scale of the canvas is not 1: https://bugs.webkit.org/show_bug.cgi?id=197689 + // Therefore we'll set the styles to be a plain black whilst generating this drop shadow + context.fillStyle = 'black'; + context.strokeStyle = 'black'; + + var dropShadowColor = style.dropShadowColor; + var rgb = hex2rgb(typeof dropShadowColor === 'number' ? dropShadowColor : string2hex(dropShadowColor)); + + context.shadowColor = "rgba(" + (rgb[0] * 255) + "," + (rgb[1] * 255) + "," + (rgb[2] * 255) + "," + (style.dropShadowAlpha) + ")"; + context.shadowBlur = style.dropShadowBlur; + context.shadowOffsetX = Math.cos(style.dropShadowAngle) * style.dropShadowDistance; + context.shadowOffsetY = (Math.sin(style.dropShadowAngle) * style.dropShadowDistance) + dsOffsetShadow; + } + else + { + // set canvas text styles + context.fillStyle = this._generateFillStyle(style, lines); + context.strokeStyle = style.stroke; + + context.shadowColor = 0; + context.shadowBlur = 0; + context.shadowOffsetX = 0; + context.shadowOffsetY = 0; + } + + // draw lines line by line + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + linePositionX = style.strokeThickness / 2; + linePositionY = ((style.strokeThickness / 2) + (i$1 * lineHeight)) + fontProperties.ascent; + + if (style.align === 'right') + { + linePositionX += maxLineWidth - lineWidths[i$1]; + } + else if (style.align === 'center') + { + linePositionX += (maxLineWidth - lineWidths[i$1]) / 2; + } + + if (style.stroke && style.strokeThickness) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText, + true + ); + } + + if (style.fill) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText + ); + } + } + } + + this.updateTexture(); + }; + + /** + * Render the text with letter-spacing. + * @param {string} text - The text to draw + * @param {number} x - Horizontal position to draw the text + * @param {number} y - Vertical position to draw the text + * @param {boolean} [isStroke=false] - Is this drawing for the outside stroke of the + * text? If not, it's for the inside fill + * @private + */ + Text.prototype.drawLetterSpacing = function drawLetterSpacing (text, x, y, isStroke) + { + if ( isStroke === void 0 ) isStroke = false; + + var style = this._style; + + // letterSpacing of 0 means normal + var letterSpacing = style.letterSpacing; + + if (letterSpacing === 0) + { + if (isStroke) + { + this.context.strokeText(text, x, y); + } + else + { + this.context.fillText(text, x, y); + } + + return; + } + + var currentPosition = x; + + // Using Array.from correctly splits characters whilst keeping emoji together. + // This is not supported on IE as it requires ES6, so regular text splitting occurs. + // This also doesn't account for emoji that are multiple emoji put together to make something else. + // Handling all of this would require a big library itself. + // https://medium.com/@giltayar/iterating-over-emoji-characters-the-es6-way-f06e4589516 + // https://github.com/orling/grapheme-splitter + var stringArray = Array.from ? Array.from(text) : text.split(''); + var previousWidth = this.context.measureText(text).width; + var currentWidth = 0; + + for (var i = 0; i < stringArray.length; ++i) + { + var currentChar = stringArray[i]; + + if (isStroke) + { + this.context.strokeText(currentChar, currentPosition, y); + } + else + { + this.context.fillText(currentChar, currentPosition, y); + } + currentWidth = this.context.measureText(text.substring(i + 1)).width; + currentPosition += previousWidth - currentWidth + letterSpacing; + previousWidth = currentWidth; + } + }; + + /** + * Updates texture size based on canvas size + * + * @private + */ + Text.prototype.updateTexture = function updateTexture () + { + var canvas = this.canvas; + + if (this._style.trim) + { + var trimmed = trimCanvas(canvas); + + if (trimmed.data) + { + canvas.width = trimmed.width; + canvas.height = trimmed.height; + this.context.putImageData(trimmed.data, 0, 0); + } + } + + var texture = this._texture; + var style = this._style; + var padding = style.trim ? 0 : style.padding; + var baseTexture = texture.baseTexture; + + texture.trim.width = texture._frame.width = Math.ceil(canvas.width / this._resolution); + texture.trim.height = texture._frame.height = Math.ceil(canvas.height / this._resolution); + texture.trim.x = -padding; + texture.trim.y = -padding; + + texture.orig.width = texture._frame.width - (padding * 2); + texture.orig.height = texture._frame.height - (padding * 2); + + // call sprite onTextureUpdate to update scale if _width or _height were set + this._onTextureUpdate(); + + baseTexture.setRealSize(canvas.width, canvas.height, this._resolution); + + this.dirty = false; + }; + + /** + * Renders the object using the WebGL renderer + * + * @private + * @param {PIXI.Renderer} renderer - The renderer + */ + Text.prototype._render = function _render (renderer) + { + if (this._autoResolution && this._resolution !== renderer.resolution) + { + this._resolution = renderer.resolution; + this.dirty = true; + } + + this.updateText(true); + + Sprite.prototype._render.call(this, renderer); + }; + + /** + * Gets the local bounds of the text object. + * + * @param {PIXI.Rectangle} rect - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Text.prototype.getLocalBounds = function getLocalBounds (rect) + { + this.updateText(true); + + return Sprite.prototype.getLocalBounds.call(this, rect); + }; + + /** + * calculates the bounds of the Text as a rectangle. The bounds calculation takes the worldTransform into account. + * @protected + */ + Text.prototype._calculateBounds = function _calculateBounds () + { + this.updateText(true); + this.calculateVertices(); + // if we have already done this on THIS frame. + this._bounds.addQuad(this.vertexData); + }; + + /** + * Method to be called upon a TextStyle change. + * @private + */ + Text.prototype._onStyleChange = function _onStyleChange () + { + this.dirty = true; + }; + + /** + * Generates the fill style. Can automatically generate a gradient based on the fill style being an array + * + * @private + * @param {object} style - The style. + * @param {string[]} lines - The lines of text. + * @return {string|number|CanvasGradient} The fill style + */ + Text.prototype._generateFillStyle = function _generateFillStyle (style, lines) + { + if (!Array.isArray(style.fill)) + { + return style.fill; + } + else if (style.fill.length === 1) + { + return style.fill[0]; + } + + // the gradient will be evenly spaced out according to how large the array is. + // ['#FF0000', '#00FF00', '#0000FF'] would created stops at 0.25, 0.5 and 0.75 + var gradient; + var totalIterations; + var currentIteration; + var stop; + + var width = Math.ceil(this.canvas.width / this._resolution); + var height = Math.ceil(this.canvas.height / this._resolution); + + // make a copy of the style settings, so we can manipulate them later + var fill = style.fill.slice(); + var fillGradientStops = style.fillGradientStops.slice(); + + // wanting to evenly distribute the fills. So an array of 4 colours should give fills of 0.25, 0.5 and 0.75 + if (!fillGradientStops.length) + { + var lengthPlus1 = fill.length + 1; + + for (var i = 1; i < lengthPlus1; ++i) + { + fillGradientStops.push(i / lengthPlus1); + } + } + + // stop the bleeding of the last gradient on the line above to the top gradient of the this line + // by hard defining the first gradient colour at point 0, and last gradient colour at point 1 + fill.unshift(style.fill[0]); + fillGradientStops.unshift(0); + + fill.push(style.fill[style.fill.length - 1]); + fillGradientStops.push(1); + + if (style.fillGradientType === TEXT_GRADIENT.LINEAR_VERTICAL) + { + // start the gradient at the top center of the canvas, and end at the bottom middle of the canvas + gradient = this.context.createLinearGradient(width / 2, 0, width / 2, height); + + // we need to repeat the gradient so that each individual line of text has the same vertical gradient effect + // ['#FF0000', '#00FF00', '#0000FF'] over 2 lines would create stops at 0.125, 0.25, 0.375, 0.625, 0.75, 0.875 + totalIterations = (fill.length + 1) * lines.length; + currentIteration = 0; + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + currentIteration += 1; + for (var j = 0; j < fill.length; j++) + { + if (typeof fillGradientStops[j] === 'number') + { + stop = (fillGradientStops[j] / lines.length) + (i$1 / lines.length); + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[j]); + currentIteration++; + } + } + } + else + { + // start the gradient at the center left of the canvas, and end at the center right of the canvas + gradient = this.context.createLinearGradient(0, height / 2, width, height / 2); + + // can just evenly space out the gradients in this case, as multiple lines makes no difference + // to an even left to right gradient + totalIterations = fill.length + 1; + currentIteration = 1; + + for (var i$2 = 0; i$2 < fill.length; i$2++) + { + if (typeof fillGradientStops[i$2] === 'number') + { + stop = fillGradientStops[i$2]; + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[i$2]); + currentIteration++; + } + } + + return gradient; + }; + + /** + * Destroys this text object. + * Note* Unlike a Sprite, a Text object will automatically destroy its baseTexture and texture as + * the majority of the time the texture will not be shared with any other Sprites. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their + * destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=true] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=true] - Should it destroy the base texture of the sprite as well + */ + Text.prototype.destroy = function destroy (options) + { + if (typeof options === 'boolean') + { + options = { children: options }; + } + + options = Object.assign({}, defaultDestroyOptions, options); + + Sprite.prototype.destroy.call(this, options); + + // make sure to reset the the context and canvas.. dont want this hanging around in memory! + this.context = null; + this.canvas = null; + + this._style = null; + }; + + /** + * The width of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * Set the style of the text. Set up an event listener to listen for changes on the style + * object and mark the text as dirty. + * + * @member {object|PIXI.TextStyle} + */ + prototypeAccessors.style.get = function () + { + return this._style; + }; + + prototypeAccessors.style.set = function (style) // eslint-disable-line require-jsdoc + { + style = style || {}; + + if (style instanceof TextStyle) + { + this._style = style; + } + else + { + this._style = new TextStyle(style); + } + + this.localStyleID = -1; + this.dirty = true; + }; + + /** + * Set the copy for the text object. To split a line you can use '\n'. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + prototypeAccessors.resolution.get = function () + { + return this._resolution; + }; + + prototypeAccessors.resolution.set = function (value) // eslint-disable-line require-jsdoc + { + this._autoResolution = false; + + if (this._resolution === value) + { + return; + } + + this._resolution = value; + this.dirty = true; + }; + + Object.defineProperties( Text.prototype, prototypeAccessors ); + + return Text; +}(Sprite)); + +/*! + * @pixi/prepare - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/prepare is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default number of uploads per frame using prepare plugin. + * + * @static + * @memberof PIXI.settings + * @name UPLOADS_PER_FRAME + * @type {number} + * @default 4 + */ +settings.UPLOADS_PER_FRAME = 4; + +/** + * CountLimiter limits the number of items handled by a {@link PIXI.prepare.BasePrepare} to a specified + * number of items per frame. + * + * @class + * @memberof PIXI.prepare + */ +var CountLimiter = function CountLimiter(maxItemsPerFrame) +{ + /** + * The maximum number of items that can be prepared each frame. + * @type {number} + * @private + */ + this.maxItemsPerFrame = maxItemsPerFrame; + /** + * The number of items that can be prepared in the current frame. + * @type {number} + * @private + */ + this.itemsLeft = 0; +}; + +/** + * Resets any counting properties to start fresh on a new frame. + */ +CountLimiter.prototype.beginFrame = function beginFrame () +{ + this.itemsLeft = this.maxItemsPerFrame; +}; + +/** + * Checks to see if another item can be uploaded. This should only be called once per item. + * @return {boolean} If the item is allowed to be uploaded. + */ +CountLimiter.prototype.allowedToUpload = function allowedToUpload () +{ + return this.itemsLeft-- > 0; +}; + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * BasePrepare handles basic queuing functionality and is extended by + * {@link PIXI.prepare.Prepare} and {@link PIXI.prepare.CanvasPrepare} + * to provide preparation capabilities specific to their respective renderers. + * + * @example + * // Create a sprite + * const sprite = PIXI.Sprite.from('something.png'); + * + * // Load object into GPU + * app.renderer.plugins.prepare.upload(sprite, () => { + * + * //Texture(s) has been uploaded to GPU + * app.stage.addChild(sprite); + * + * }) + * + * @abstract + * @class + * @memberof PIXI.prepare + */ +var BasePrepare = function BasePrepare(renderer) +{ + var this$1 = this; + + /** + * The limiter to be used to control how quickly items are prepared. + * @type {PIXI.prepare.CountLimiter|PIXI.prepare.TimeLimiter} + */ + this.limiter = new CountLimiter(settings.UPLOADS_PER_FRAME); + + /** + * Reference to the renderer. + * @type {PIXI.AbstractRenderer} + * @protected + */ + this.renderer = renderer; + + /** + * The only real difference between CanvasPrepare and Prepare is what they pass + * to upload hooks. That different parameter is stored here. + * @type {PIXI.prepare.CanvasPrepare|PIXI.Renderer} + * @protected + */ + this.uploadHookHelper = null; + + /** + * Collection of items to uploads at once. + * @type {Array<*>} + * @private + */ + this.queue = []; + + /** + * Collection of additional hooks for finding assets. + * @type {Array} + * @private + */ + this.addHooks = []; + + /** + * Collection of additional hooks for processing assets. + * @type {Array} + * @private + */ + this.uploadHooks = []; + + /** + * Callback to call after completed. + * @type {Array} + * @private + */ + this.completes = []; + + /** + * If prepare is ticking (running). + * @type {boolean} + * @private + */ + this.ticking = false; + + /** + * 'bound' call for prepareItems(). + * @type {Function} + * @private + */ + this.delayedTick = function () { + // unlikely, but in case we were destroyed between tick() and delayedTick() + if (!this$1.queue) + { + return; + } + this$1.prepareItems(); + }; + + // hooks to find the correct texture + this.registerFindHook(findText); + this.registerFindHook(findTextStyle); + this.registerFindHook(findMultipleBaseTextures); + this.registerFindHook(findBaseTexture); + this.registerFindHook(findTexture); + + // upload hooks + this.registerUploadHook(drawText); + this.registerUploadHook(calculateTextStyle); +}; + +/** + * Upload all the textures and graphics to the GPU. + * + * @param {Function|PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text} item - + * Either the container or display object to search for items to upload, the items to upload themselves, + * or the callback function, if items have been added using `prepare.add`. + * @param {Function} [done] - Optional callback when all queued uploads have completed + */ +BasePrepare.prototype.upload = function upload (item, done) +{ + if (typeof item === 'function') + { + done = item; + item = null; + } + + // If a display object, search for items + // that we could upload + if (item) + { + this.add(item); + } + + // Get the items for upload from the display + if (this.queue.length) + { + if (done) + { + this.completes.push(done); + } + + if (!this.ticking) + { + this.ticking = true; + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } + } + else if (done) + { + done(); + } +}; + +/** + * Handle tick update + * + * @private + */ +BasePrepare.prototype.tick = function tick () +{ + setTimeout(this.delayedTick, 0); +}; + +/** + * Actually prepare items. This is handled outside of the tick because it will take a while + * and we do NOT want to block the current animation frame from rendering. + * + * @private + */ +BasePrepare.prototype.prepareItems = function prepareItems () +{ + this.limiter.beginFrame(); + // Upload the graphics + while (this.queue.length && this.limiter.allowedToUpload()) + { + var item = this.queue[0]; + var uploaded = false; + + if (item && !item._destroyed) + { + for (var i = 0, len = this.uploadHooks.length; i < len; i++) + { + if (this.uploadHooks[i](this.uploadHookHelper, item)) + { + this.queue.shift(); + uploaded = true; + break; + } + } + } + + if (!uploaded) + { + this.queue.shift(); + } + } + + // We're finished + if (!this.queue.length) + { + this.ticking = false; + + var completes = this.completes.slice(0); + + this.completes.length = 0; + + for (var i$1 = 0, len$1 = completes.length; i$1 < len$1; i$1++) + { + completes[i$1](); + } + } + else + { + // if we are not finished, on the next rAF do this again + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } +}; + +/** + * Adds hooks for finding items. + * + * @param {Function} addHook - Function call that takes two parameters: `item:*, queue:Array` + * function must return `true` if it was able to add item to the queue. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerFindHook = function registerFindHook (addHook) +{ + if (addHook) + { + this.addHooks.push(addHook); + } + + return this; +}; + +/** + * Adds hooks for uploading items. + * + * @param {Function} uploadHook - Function call that takes two parameters: `prepare:CanvasPrepare, item:*` and + * function must return `true` if it was able to handle upload of item. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerUploadHook = function registerUploadHook (uploadHook) +{ + if (uploadHook) + { + this.uploadHooks.push(uploadHook); + } + + return this; +}; + +/** + * Manually add an item to the uploading queue. + * + * @param {PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text|*} item - Object to + * add to the queue + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.add = function add (item) +{ + // Add additional hooks for finding elements on special + // types of objects that + for (var i = 0, len = this.addHooks.length; i < len; i++) + { + if (this.addHooks[i](item, this.queue)) + { + break; + } + } + + // Get children recursively + if (item instanceof Container) + { + for (var i$1 = item.children.length - 1; i$1 >= 0; i$1--) + { + this.add(item.children[i$1]); + } + } + + return this; +}; + +/** + * Destroys the plugin, don't use after this. + * + */ +BasePrepare.prototype.destroy = function destroy () +{ + if (this.ticking) + { + Ticker.system.remove(this.tick, this); + } + this.ticking = false; + this.addHooks = null; + this.uploadHooks = null; + this.renderer = null; + this.completes = null; + this.queue = null; + this.limiter = null; + this.uploadHookHelper = null; +}; + +/** + * Built-in hook to find multiple textures from objects like AnimatedSprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findMultipleBaseTextures(item, queue) +{ + var result = false; + + // Objects with multiple textures + if (item && item._textures && item._textures.length) + { + for (var i = 0; i < item._textures.length; i++) + { + if (item._textures[i] instanceof Texture) + { + var baseTexture = item._textures[i].baseTexture; + + if (queue.indexOf(baseTexture) === -1) + { + queue.push(baseTexture); + result = true; + } + } + } + } + + return result; +} + +/** + * Built-in hook to find BaseTextures from Sprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findBaseTexture(item, queue) +{ + // Objects with textures, like Sprites/Text + if (item instanceof BaseTexture) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find textures from objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findTexture(item, queue) +{ + if (item._texture && item._texture instanceof Texture) + { + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to draw PIXI.Text to its texture. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function drawText(helper, item) +{ + if (item instanceof Text) + { + // updating text will return early if it is not dirty + item.updateText(true); + + return true; + } + + return false; +} + +/** + * Built-in hook to calculate a text style for a PIXI.Text object. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function calculateTextStyle(helper, item) +{ + if (item instanceof TextStyle) + { + var font = item.toFontString(); + + TextMetrics.measureFont(font); + + return true; + } + + return false; +} + +/** + * Built-in hook to find Text objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Text object was found. + */ +function findText(item, queue) +{ + if (item instanceof Text) + { + // push the text style to prepare it - this can be really expensive + if (queue.indexOf(item.style) === -1) + { + queue.push(item.style); + } + // also push the text object so that we can render it (to canvas/texture) if needed + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + // also push the Text's texture for upload to GPU + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find TextStyle objects. + * + * @private + * @param {PIXI.TextStyle} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.TextStyle object was found. + */ +function findTextStyle(item, queue) +{ + if (item instanceof TextStyle) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.prepare` + * + * @class + * @extends PIXI.prepare.BasePrepare + * @memberof PIXI.prepare + */ +var Prepare = /*@__PURE__*/(function (BasePrepare) { + function Prepare(renderer) + { + BasePrepare.call(this, renderer); + + this.uploadHookHelper = this.renderer; + + // Add textures and graphics to upload + this.registerFindHook(findGraphics); + this.registerUploadHook(uploadBaseTextures); + this.registerUploadHook(uploadGraphics); + } + + if ( BasePrepare ) Prepare.__proto__ = BasePrepare; + Prepare.prototype = Object.create( BasePrepare && BasePrepare.prototype ); + Prepare.prototype.constructor = Prepare; + + return Prepare; +}(BasePrepare)); +/** + * Built-in hook to upload PIXI.Texture objects to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadBaseTextures(renderer, item) +{ + if (item instanceof BaseTexture) + { + // if the texture already has a GL texture, then the texture has been prepared or rendered + // before now. If the texture changed, then the changer should be calling texture.update() which + // reuploads the texture without need for preparing it again + if (!item._glTextures[renderer.CONTEXT_UID]) + { + renderer.texture.bind(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to upload PIXI.Graphics to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadGraphics(renderer, item) +{ + if (item instanceof Graphics) + { + // if the item is not dirty and already has webgl data, then it got prepared or rendered + // before now and we shouldn't waste time updating it again + if (item.dirty || item.clearDirty || !item._webGL[renderer.plugins.graphics.CONTEXT_UID]) + { + renderer.plugins.graphics.updateGraphics(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find graphics. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Graphics object was found. + */ +function findGraphics(item, queue) +{ + if (item instanceof Graphics) + { + queue.push(item); + + return true; + } + + return false; +} + +/*! + * @pixi/app - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/app is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Convenience class to create a new PIXI application. + * + * This class automatically creates the renderer, ticker and root container. + * + * @example + * // Create the application + * const app = new PIXI.Application(); + * + * // Add the view to the DOM + * document.body.appendChild(app.view); + * + * // ex, add display objects + * app.stage.addChild(PIXI.Sprite.from('something.png')); + * + * @class + * @memberof PIXI + */ +var Application = function Application(options) +{ + var this$1 = this; + + // The default options + options = Object.assign({ + forceCanvas: false, + }, options); + + /** + * WebGL renderer if available, otherwise CanvasRenderer. + * @member {PIXI.Renderer|PIXI.CanvasRenderer} + */ + this.renderer = autoDetectRenderer(options); + + /** + * The root display container that's rendered. + * @member {PIXI.Container} + */ + this.stage = new Container(); + + // install plugins here + Application._plugins.forEach(function (plugin) { + plugin.init.call(this$1, options); + }); +}; + +var prototypeAccessors$8 = { view: { configurable: true },screen: { configurable: true } }; + +/** + * Register a middleware plugin for the application + * @static + * @param {PIXI.Application.Plugin} plugin - Plugin being installed + */ +Application.registerPlugin = function registerPlugin (plugin) +{ + Application._plugins.push(plugin); +}; + +/** + * Render the current stage. + */ +Application.prototype.render = function render () +{ + this.renderer.render(this.stage); +}; + +/** + * Reference to the renderer's canvas element. + * @member {HTMLCanvasElement} + * @readonly + */ +prototypeAccessors$8.view.get = function () +{ + return this.renderer.view; +}; + +/** + * Reference to the renderer's screen rectangle. Its safe to use as `filterArea` or `hitArea` for the whole screen. + * @member {PIXI.Rectangle} + * @readonly + */ +prototypeAccessors$8.screen.get = function () +{ + return this.renderer.screen; +}; + +/** + * Destroy and don't use after this. + * @param {Boolean} [removeView=false] Automatically remove canvas from DOM. + * @param {object|boolean} [stageOptions] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [stageOptions.children=false] - if set to true, all the children will have their destroy + * method called as well. 'stageOptions' will be passed on to those calls. + * @param {boolean} [stageOptions.texture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the texture of the child sprite + * @param {boolean} [stageOptions.baseTexture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the base texture of the child sprite + */ +Application.prototype.destroy = function destroy (removeView, stageOptions) +{ + var this$1 = this; + + // Destroy plugins in the opposite order + // which they were constructed + var plugins = Application._plugins.slice(0); + + plugins.reverse(); + plugins.forEach(function (plugin) { + plugin.destroy.call(this$1); + }); + + this.stage.destroy(stageOptions); + this.stage = null; + + this.renderer.destroy(removeView); + this.renderer = null; + + this._options = null; +}; + +Object.defineProperties( Application.prototype, prototypeAccessors$8 ); + +/** + * @memberof PIXI.Application + * @typedef {object} Plugin + * @property {function} init - Called when Application is constructed, scoped to Application instance. + * Passes in `options` as the only argument, which are Application constructor options. + * @property {function} destroy - Called when destroying Application, scoped to Application instance + */ + +/** + * Collection of installed plugins. + * @static + * @private + * @type {PIXI.Application.Plugin[]} + */ +Application._plugins = []; + +/** + * Middleware for for Application's resize functionality + * @private + * @class + */ +var ResizePlugin = function ResizePlugin () {}; + +ResizePlugin.init = function init (options) +{ + var this$1 = this; + + /** + * The element or window to resize the application to. + * @type {Window|HTMLElement} + * @name resizeTo + * @memberof PIXI.Application# + */ + Object.defineProperty(this, 'resizeTo', + { + set: function set(dom) + { + window.removeEventListener('resize', this.resize); + this._resizeTo = dom; + if (dom) + { + window.addEventListener('resize', this.resize); + this.resize(); + } + }, + get: function get() + { + return this._resizeTo; + }, + }); + + /** + * If `resizeTo` is set, calling this function + * will resize to the width and height of that element. + * @method PIXI.Application#resize + */ + this.resize = function () { + if (this$1._resizeTo) + { + // Resize to the window + if (this$1._resizeTo === window) + { + this$1.renderer.resize( + window.innerWidth, + window.innerHeight + ); + } + // Resize to other HTML entities + else + { + this$1.renderer.resize( + this$1._resizeTo.clientWidth, + this$1._resizeTo.clientHeight + ); + } + } + }; + + // On resize + this._resizeTo = null; + this.resizeTo = options.resizeTo || null; +}; + +/** + * Clean up the ticker, scoped to application + * @static + * @private + */ +ResizePlugin.destroy = function destroy () +{ + this.resizeTo = null; + this.resize = null; +}; + +Application.registerPlugin(ResizePlugin); + +var parseUri = function parseURI (str, opts) { + opts = opts || {}; + + var o = { + key: ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'], + q: { + name: 'queryKey', + parser: /(?:^|&)([^&=]*)=?([^&]*)/g + }, + parser: { + strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/, + loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/ + } + }; + + var m = o.parser[opts.strictMode ? 'strict' : 'loose'].exec(str); + var uri = {}; + var i = 14; + + while (i--) uri[o.key[i]] = m[i] || ''; + + uri[o.q.name] = {}; + uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) { + if ($1) uri[o.q.name][$1] = $2; + }); + + return uri +}; + +var miniSignals = createCommonjsModule(function (module, exports) { + +Object.defineProperty(exports, '__esModule', { + value: true +}); + +var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + +var MiniSignalBinding = (function () { + function MiniSignalBinding(fn, once, thisArg) { + if (once === undefined) once = false; + + _classCallCheck(this, MiniSignalBinding); + + this._fn = fn; + this._once = once; + this._thisArg = thisArg; + this._next = this._prev = this._owner = null; + } + + _createClass(MiniSignalBinding, [{ + key: 'detach', + value: function detach() { + if (this._owner === null) return false; + this._owner.detach(this); + return true; + } + }]); + + return MiniSignalBinding; +})(); + +function _addMiniSignalBinding(self, node) { + if (!self._head) { + self._head = node; + self._tail = node; + } else { + self._tail._next = node; + node._prev = self._tail; + self._tail = node; + } + + node._owner = self; + + return node; +} + +var MiniSignal = (function () { + function MiniSignal() { + _classCallCheck(this, MiniSignal); + + this._head = this._tail = undefined; + } + + _createClass(MiniSignal, [{ + key: 'handlers', + value: function handlers() { + var exists = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0]; + + var node = this._head; + + if (exists) return !!node; + + var ee = []; + + while (node) { + ee.push(node); + node = node._next; + } + + return ee; + } + }, { + key: 'has', + value: function has(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#has(): First arg must be a MiniSignalBinding object.'); + } + + return node._owner === this; + } + }, { + key: 'dispatch', + value: function dispatch() { + var node = this._head; + + if (!node) return false; + + while (node) { + if (node._once) this.detach(node); + node._fn.apply(node._thisArg, arguments); + node = node._next; + } + + return true; + } + }, { + key: 'add', + value: function add(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#add(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, false, thisArg)); + } + }, { + key: 'once', + value: function once(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#once(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, true, thisArg)); + } + }, { + key: 'detach', + value: function detach(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#detach(): First arg must be a MiniSignalBinding object.'); + } + if (node._owner !== this) return this; + + if (node._prev) node._prev._next = node._next; + if (node._next) node._next._prev = node._prev; + + if (node === this._head) { + this._head = node._next; + if (node._next === null) { + this._tail = null; + } + } else if (node === this._tail) { + this._tail = node._prev; + this._tail._next = null; + } + + node._owner = null; + return this; + } + }, { + key: 'detachAll', + value: function detachAll() { + var node = this._head; + if (!node) return this; + + this._head = this._tail = null; + + while (node) { + node._owner = null; + node = node._next; + } + return this; + } + }]); + + return MiniSignal; +})(); + +MiniSignal.MiniSignalBinding = MiniSignalBinding; + +exports['default'] = MiniSignal; +module.exports = exports['default']; +}); + +var Signal = unwrapExports(miniSignals); + +/*! + * resource-loader - v3.0.1 + * https://github.com/pixijs/pixi-sound + * Compiled Tue, 02 Jul 2019 14:06:18 UTC + * + * resource-loader is licensed under the MIT license. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Smaller version of the async library constructs. + * + * @namespace async + */ + +/** + * Noop function + * + * @ignore + * @function + * @memberof async + */ +function _noop() {} +/* empty */ + +/** + * Iterates an array in series. + * + * @memberof async + * @function eachSeries + * @param {Array.<*>} array - Array to iterate. + * @param {function} iterator - Function to call for each element. + * @param {function} callback - Function to call when done, or on error. + * @param {boolean} [deferNext=false] - Break synchronous each loop by calling next with a setTimeout of 1. + */ + + +function eachSeries(array, iterator, callback, deferNext) { + var i = 0; + var len = array.length; + + (function next(err) { + if (err || i === len) { + if (callback) { + callback(err); + } + + return; + } + + if (deferNext) { + setTimeout(function () { + iterator(array[i++], next); + }, 1); + } else { + iterator(array[i++], next); + } + })(); +} +/** + * Ensures a function is only called once. + * + * @ignore + * @memberof async + * @param {function} fn - The function to wrap. + * @return {function} The wrapping function. + */ + +function onlyOnce(fn) { + return function onceWrapper() { + if (fn === null) { + throw new Error('Callback was already called.'); + } + + var callFn = fn; + fn = null; + callFn.apply(this, arguments); + }; +} +/** + * Async queue implementation, + * + * @memberof async + * @function queue + * @param {function} worker - The worker function to call for each task. + * @param {number} concurrency - How many workers to run in parrallel. + * @return {*} The async queue object. + */ + + +function queue(worker, concurrency) { + if (concurrency == null) { + // eslint-disable-line no-eq-null,eqeqeq + concurrency = 1; + } else if (concurrency === 0) { + throw new Error('Concurrency must not be zero'); + } + + var workers = 0; + var q = { + _tasks: [], + concurrency: concurrency, + saturated: _noop, + unsaturated: _noop, + buffer: concurrency / 4, + empty: _noop, + drain: _noop, + error: _noop, + started: false, + paused: false, + push: function push(data, callback) { + _insert(data, false, callback); + }, + kill: function kill() { + workers = 0; + q.drain = _noop; + q.started = false; + q._tasks = []; + }, + unshift: function unshift(data, callback) { + _insert(data, true, callback); + }, + process: function process() { + while (!q.paused && workers < q.concurrency && q._tasks.length) { + var task = q._tasks.shift(); + + if (q._tasks.length === 0) { + q.empty(); + } + + workers += 1; + + if (workers === q.concurrency) { + q.saturated(); + } + + worker(task.data, onlyOnce(_next(task))); + } + }, + length: function length() { + return q._tasks.length; + }, + running: function running() { + return workers; + }, + idle: function idle() { + return q._tasks.length + workers === 0; + }, + pause: function pause() { + if (q.paused === true) { + return; + } + + q.paused = true; + }, + resume: function resume() { + if (q.paused === false) { + return; + } + + q.paused = false; // Need to call q.process once per concurrent + // worker to preserve full concurrency after pause + + for (var w = 1; w <= q.concurrency; w++) { + q.process(); + } + } + }; + + function _insert(data, insertAtFront, callback) { + if (callback != null && typeof callback !== 'function') { + // eslint-disable-line no-eq-null,eqeqeq + throw new Error('task callback must be a function'); + } + + q.started = true; + + if (data == null && q.idle()) { + // eslint-disable-line no-eq-null,eqeqeq + // call drain immediately if there are no tasks + setTimeout(function () { + return q.drain(); + }, 1); + return; + } + + var item = { + data: data, + callback: typeof callback === 'function' ? callback : _noop + }; + + if (insertAtFront) { + q._tasks.unshift(item); + } else { + q._tasks.push(item); + } + + setTimeout(function () { + return q.process(); + }, 1); + } + + function _next(task) { + return function next() { + workers -= 1; + task.callback.apply(task, arguments); + + if (arguments[0] != null) { + // eslint-disable-line no-eq-null,eqeqeq + q.error(arguments[0], task.data); + } + + if (workers <= q.concurrency - q.buffer) { + q.unsaturated(); + } + + if (q.idle()) { + q.drain(); + } + + q.process(); + }; + } + + return q; +} + +// a simple in-memory cache for resources +var cache = {}; +/** + * A simple in-memory cache for resource. + * + * @memberof middleware + * @function caching + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.caching); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function caching(resource, next) { + var _this = this; + + // if cached, then set data and complete the resource + if (cache[resource.url]) { + resource.data = cache[resource.url]; + resource.complete(); // marks resource load complete and stops processing before middlewares + } // if not cached, wait for complete and store it in the cache. + else { + resource.onComplete.once(function () { + return cache[_this.url] = _this.data; + }); + } + + next(); +} + +function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } +} + +function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + return Constructor; +} + +var useXdr = !!(window.XDomainRequest && !('withCredentials' in new XMLHttpRequest())); +var tempAnchor$1 = null; // some status constants + +var STATUS_NONE = 0; +var STATUS_OK = 200; +var STATUS_EMPTY = 204; +var STATUS_IE_BUG_EMPTY = 1223; +var STATUS_TYPE_OK = 2; // noop + +function _noop$1() {} +/* empty */ + +/** + * Manages the state and loading of a resource and all child resources. + * + * @class + */ + + +var Resource$1 = +/*#__PURE__*/ +function () { + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.LOAD_TYPE} loadType - The load type to set it to. + */ + Resource.setExtensionLoadType = function setExtensionLoadType(extname, loadType) { + setExtMap(Resource._loadTypeMap, extname, loadType); + } + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.XHR_RESPONSE_TYPE} xhrType - The xhr type to set it to. + */ + ; + + Resource.setExtensionXhrType = function setExtensionXhrType(extname, xhrType) { + setExtMap(Resource._xhrTypeMap, extname, xhrType); + } + /** + * @param {string} name - The name of the resource to load. + * @param {string|string[]} url - The url for this resource, for audio/video loads you can pass + * an array of sources. + * @param {object} [options] - The options for the load. + * @param {string|boolean} [options.crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @param {number} [options.timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @param {Resource.LOAD_TYPE} [options.loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @param {Resource.XHR_RESPONSE_TYPE} [options.xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @param {Resource.IMetadata} [options.metadata] - Extra configuration for middleware and the Resource object. + */ + ; + + function Resource(name, url, options) { + if (typeof name !== 'string' || typeof url !== 'string') { + throw new Error('Both name and url are required for constructing a resource.'); + } + + options = options || {}; + /** + * The state flags of this resource. + * + * @private + * @member {number} + */ + + this._flags = 0; // set data url flag, needs to be set early for some _determineX checks to work. + + this._setFlag(Resource.STATUS_FLAGS.DATA_URL, url.indexOf('data:') === 0); + /** + * The name of this resource. + * + * @readonly + * @member {string} + */ + + + this.name = name; + /** + * The url used to load this resource. + * + * @readonly + * @member {string} + */ + + this.url = url; + /** + * The extension used to load this resource. + * + * @readonly + * @member {string} + */ + + this.extension = this._getExtension(); + /** + * The data that was loaded by the resource. + * + * @member {any} + */ + + this.data = null; + /** + * Is this request cross-origin? If unset, determined automatically. + * + * @member {string} + */ + + this.crossOrigin = options.crossOrigin === true ? 'anonymous' : options.crossOrigin; + /** + * A timeout in milliseconds for the load. If the load takes longer than this time + * it is cancelled and the load is considered a failure. If this value is set to `0` + * then there is no explicit timeout. + * + * @member {number} + */ + + this.timeout = options.timeout || 0; + /** + * The method of loading to use for this resource. + * + * @member {Resource.LOAD_TYPE} + */ + + this.loadType = options.loadType || this._determineLoadType(); + /** + * The type used to load the resource via XHR. If unset, determined automatically. + * + * @member {string} + */ + + this.xhrType = options.xhrType; + /** + * Extra info for middleware, and controlling specifics about how the resource loads. + * + * Note that if you pass in a `loadElement`, the Resource class takes ownership of it. + * Meaning it will modify it as it sees fit. + * + * @member {Resource.IMetadata} + */ + + this.metadata = options.metadata || {}; + /** + * The error that occurred while loading (if any). + * + * @readonly + * @member {Error} + */ + + this.error = null; + /** + * The XHR object that was used to load this resource. This is only set + * when `loadType` is `Resource.LOAD_TYPE.XHR`. + * + * @readonly + * @member {XMLHttpRequest} + */ + + this.xhr = null; + /** + * The child resources this resource owns. + * + * @readonly + * @member {Resource[]} + */ + + this.children = []; + /** + * The resource type. + * + * @readonly + * @member {Resource.TYPE} + */ + + this.type = Resource.TYPE.UNKNOWN; + /** + * The progress chunk owned by this resource. + * + * @readonly + * @member {number} + */ + + this.progressChunk = 0; + /** + * The `dequeue` method that will be used a storage place for the async queue dequeue method + * used privately by the loader. + * + * @private + * @member {function} + */ + + this._dequeue = _noop$1; + /** + * Used a storage place for the on load binding used privately by the loader. + * + * @private + * @member {function} + */ + + this._onLoadBinding = null; + /** + * The timer for element loads to check if they timeout. + * + * @private + * @member {number} + */ + + this._elementTimer = 0; + /** + * The `complete` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundComplete = this.complete.bind(this); + /** + * The `_onError` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnError = this._onError.bind(this); + /** + * The `_onProgress` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnProgress = this._onProgress.bind(this); + /** + * The `_onTimeout` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnTimeout = this._onTimeout.bind(this); // xhr callbacks + + this._boundXhrOnError = this._xhrOnError.bind(this); + this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this); + this._boundXhrOnAbort = this._xhrOnAbort.bind(this); + this._boundXhrOnLoad = this._xhrOnLoad.bind(this); + /** + * Dispatched when the resource beings to load. + * + * The callback looks like {@link Resource.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched each time progress of this resource load updates. + * Not all resources types and loader systems can support this event + * so sometimes it may not be available. If the resource + * is being loaded on a modern browser, using XHR, and the remote server + * properly sets Content-Length headers, then this will be available. + * + * The callback looks like {@link Resource.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once this resource has loaded, if there was an error it will + * be in the `error` property. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); + /** + * Dispatched after this resource has had all the *after* middleware run on it. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onAfterMiddleware = new Signal(); + } + /** + * When the resource starts to load. + * + * @memberof Resource + * @callback OnStartSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * When the resource reports loading progress. + * + * @memberof Resource + * @callback OnProgressSignal + * @param {Resource} resource - The resource that the event happened on. + * @param {number} percentage - The progress of the load in the range [0, 1]. + */ + + /** + * When the resource finishes loading. + * + * @memberof Resource + * @callback OnCompleteSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * @memberof Resource + * @typedef {object} IMetadata + * @property {HTMLImageElement|HTMLAudioElement|HTMLVideoElement} [loadElement=null] - The + * element to use for loading, instead of creating one. + * @property {boolean} [skipSource=false] - Skips adding source(s) to the load element. This + * is useful if you want to pass in a `loadElement` that you already added load sources to. + * @property {string|string[]} [mimeType] - The mime type to use for the source element + * of a video/audio elment. If the urls are an array, you can pass this as an array as well + * where each index is the mime type to use for the corresponding url index. + */ + + /** + * Stores whether or not this url is a data url. + * + * @readonly + * @member {boolean} + */ + + + var _proto = Resource.prototype; + + /** + * Marks the resource as complete. + * + */ + _proto.complete = function complete() { + this._clearEvents(); + + this._finish(); + } + /** + * Aborts the loading of this resource, with an optional message. + * + * @param {string} message - The message to use for the error + */ + ; + + _proto.abort = function abort(message) { + // abort can be called multiple times, ignore subsequent calls. + if (this.error) { + return; + } // store error + + + this.error = new Error(message); // clear events before calling aborts + + this._clearEvents(); // abort the actual loading + + + if (this.xhr) { + this.xhr.abort(); + } else if (this.xdr) { + this.xdr.abort(); + } else if (this.data) { + // single source + if (this.data.src) { + this.data.src = Resource.EMPTY_GIF; + } // multi-source + else { + while (this.data.firstChild) { + this.data.removeChild(this.data.firstChild); + } + } + } // done now. + + + this._finish(); + } + /** + * Kicks off loading of this resource. This method is asynchronous. + * + * @param {Resource.OnCompleteSignal} [cb] - Optional callback to call once the resource is loaded. + */ + ; + + _proto.load = function load(cb) { + var _this = this; + + if (this.isLoading) { + return; + } + + if (this.isComplete) { + if (cb) { + setTimeout(function () { + return cb(_this); + }, 1); + } + + return; + } else if (cb) { + this.onComplete.once(cb); + } + + this._setFlag(Resource.STATUS_FLAGS.LOADING, true); + + this.onStart.dispatch(this); // if unset, determine the value + + if (this.crossOrigin === false || typeof this.crossOrigin !== 'string') { + this.crossOrigin = this._determineCrossOrigin(this.url); + } + + switch (this.loadType) { + case Resource.LOAD_TYPE.IMAGE: + this.type = Resource.TYPE.IMAGE; + + this._loadElement('image'); + + break; + + case Resource.LOAD_TYPE.AUDIO: + this.type = Resource.TYPE.AUDIO; + + this._loadSourceElement('audio'); + + break; + + case Resource.LOAD_TYPE.VIDEO: + this.type = Resource.TYPE.VIDEO; + + this._loadSourceElement('video'); + + break; + + case Resource.LOAD_TYPE.XHR: + /* falls through */ + + default: + if (useXdr && this.crossOrigin) { + this._loadXdr(); + } else { + this._loadXhr(); + } + + break; + } + } + /** + * Checks if the flag is set. + * + * @private + * @param {number} flag - The flag to check. + * @return {boolean} True if the flag is set. + */ + ; + + _proto._hasFlag = function _hasFlag(flag) { + return (this._flags & flag) !== 0; + } + /** + * (Un)Sets the flag. + * + * @private + * @param {number} flag - The flag to (un)set. + * @param {boolean} value - Whether to set or (un)set the flag. + */ + ; + + _proto._setFlag = function _setFlag(flag, value) { + this._flags = value ? this._flags | flag : this._flags & ~flag; + } + /** + * Clears all the events from the underlying loading source. + * + * @private + */ + ; + + _proto._clearEvents = function _clearEvents() { + clearTimeout(this._elementTimer); + + if (this.data && this.data.removeEventListener) { + this.data.removeEventListener('error', this._boundOnError, false); + this.data.removeEventListener('load', this._boundComplete, false); + this.data.removeEventListener('progress', this._boundOnProgress, false); + this.data.removeEventListener('canplaythrough', this._boundComplete, false); + } + + if (this.xhr) { + if (this.xhr.removeEventListener) { + this.xhr.removeEventListener('error', this._boundXhrOnError, false); + this.xhr.removeEventListener('timeout', this._boundXhrOnTimeout, false); + this.xhr.removeEventListener('abort', this._boundXhrOnAbort, false); + this.xhr.removeEventListener('progress', this._boundOnProgress, false); + this.xhr.removeEventListener('load', this._boundXhrOnLoad, false); + } else { + this.xhr.onerror = null; + this.xhr.ontimeout = null; + this.xhr.onprogress = null; + this.xhr.onload = null; + } + } + } + /** + * Finalizes the load. + * + * @private + */ + ; + + _proto._finish = function _finish() { + if (this.isComplete) { + throw new Error('Complete called again for an already completed resource.'); + } + + this._setFlag(Resource.STATUS_FLAGS.COMPLETE, true); + + this._setFlag(Resource.STATUS_FLAGS.LOADING, false); + + this.onComplete.dispatch(this); + } + /** + * Loads this resources using an element that has a single source, + * like an HTMLImageElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadElement = function _loadElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'image' && typeof window.Image !== 'undefined') { + this.data = new Image(); + } else { + this.data = document.createElement(type); + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + this.data.src = this.url; + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an element that has multiple sources, + * like an HTMLAudioElement or HTMLVideoElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadSourceElement = function _loadSourceElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'audio' && typeof window.Audio !== 'undefined') { + this.data = new Audio(); + } else { + this.data = document.createElement(type); + } + + if (this.data === null) { + this.abort("Unsupported element: " + type); + return; + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + // support for CocoonJS Canvas+ runtime, lacks document.createElement('source') + if (navigator.isCocoonJS) { + this.data.src = Array.isArray(this.url) ? this.url[0] : this.url; + } else if (Array.isArray(this.url)) { + var mimeTypes = this.metadata.mimeType; + + for (var i = 0; i < this.url.length; ++i) { + this.data.appendChild(this._createSource(type, this.url[i], Array.isArray(mimeTypes) ? mimeTypes[i] : mimeTypes)); + } + } else { + var _mimeTypes = this.metadata.mimeType; + this.data.appendChild(this._createSource(type, this.url, Array.isArray(_mimeTypes) ? _mimeTypes[0] : _mimeTypes)); + } + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + this.data.addEventListener('canplaythrough', this._boundComplete, false); + this.data.load(); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an XMLHttpRequest. + * + * @private + */ + ; + + _proto._loadXhr = function _loadXhr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xhr = this.xhr = new XMLHttpRequest(); // set the request type and url + + xhr.open('GET', this.url, true); + xhr.timeout = this.timeout; // load json as text and parse it ourselves. We do this because some browsers + // *cough* safari *cough* can't deal with it. + + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON || this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + xhr.responseType = Resource.XHR_RESPONSE_TYPE.TEXT; + } else { + xhr.responseType = this.xhrType; + } + + xhr.addEventListener('error', this._boundXhrOnError, false); + xhr.addEventListener('timeout', this._boundXhrOnTimeout, false); + xhr.addEventListener('abort', this._boundXhrOnAbort, false); + xhr.addEventListener('progress', this._boundOnProgress, false); + xhr.addEventListener('load', this._boundXhrOnLoad, false); + xhr.send(); + } + /** + * Loads this resources using an XDomainRequest. This is here because we need to support IE9 (gross). + * + * @private + */ + ; + + _proto._loadXdr = function _loadXdr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xdr = this.xhr = new XDomainRequest(); // eslint-disable-line no-undef + // XDomainRequest has a few quirks. Occasionally it will abort requests + // A way to avoid this is to make sure ALL callbacks are set even if not used + // More info here: http://stackoverflow.com/questions/15786966/xdomainrequest-aborts-post-on-ie-9 + + xdr.timeout = this.timeout || 5000; // XDR needs a timeout value or it breaks in IE9 + + xdr.onerror = this._boundXhrOnError; + xdr.ontimeout = this._boundXhrOnTimeout; + xdr.onprogress = this._boundOnProgress; + xdr.onload = this._boundXhrOnLoad; + xdr.open('GET', this.url, true); // Note: The xdr.send() call is wrapped in a timeout to prevent an + // issue with the interface where some requests are lost if multiple + // XDomainRequests are being sent at the same time. + // Some info here: https://github.com/photonstorm/phaser/issues/1248 + + setTimeout(function () { + return xdr.send(); + }, 1); + } + /** + * Creates a source used in loading via an element. + * + * @private + * @param {string} type - The element type (video or audio). + * @param {string} url - The source URL to load from. + * @param {string} [mime] - The mime type of the video + * @return {HTMLSourceElement} The source element. + */ + ; + + _proto._createSource = function _createSource(type, url, mime) { + if (!mime) { + mime = type + "/" + this._getExtension(url); + } + + var source = document.createElement('source'); + source.src = url; + source.type = mime; + return source; + } + /** + * Called if a load errors out. + * + * @param {Event} event - The error event from the element that emits it. + * @private + */ + ; + + _proto._onError = function _onError(event) { + this.abort("Failed to load element using: " + event.target.nodeName); + } + /** + * Called if a load progress event fires for an element or xhr/xdr. + * + * @private + * @param {XMLHttpRequestProgressEvent|Event} event - Progress event. + */ + ; + + _proto._onProgress = function _onProgress(event) { + if (event && event.lengthComputable) { + this.onProgress.dispatch(this, event.loaded / event.total); + } + } + /** + * Called if a timeout event fires for an element. + * + * @private + */ + ; + + _proto._onTimeout = function _onTimeout() { + this.abort("Load timed out."); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnError = function _xhrOnError() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request failed. Status: " + xhr.status + ", text: \"" + xhr.statusText + "\""); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnTimeout = function _xhrOnTimeout() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request timed out."); + } + /** + * Called if an abort event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnAbort = function _xhrOnAbort() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request was aborted by the user."); + } + /** + * Called when data successfully loads from an xhr/xdr request. + * + * @private + * @param {XMLHttpRequestLoadEvent|Event} event - Load event + */ + ; + + _proto._xhrOnLoad = function _xhrOnLoad() { + var xhr = this.xhr; + var text = ''; + var status = typeof xhr.status === 'undefined' ? STATUS_OK : xhr.status; // XDR has no `.status`, assume 200. + // responseText is accessible only if responseType is '' or 'text' and on older browsers + + if (xhr.responseType === '' || xhr.responseType === 'text' || typeof xhr.responseType === 'undefined') { + text = xhr.responseText; + } // status can be 0 when using the `file://` protocol so we also check if a response is set. + // If it has a response, we assume 200; otherwise a 0 status code with no contents is an aborted request. + + + if (status === STATUS_NONE && (text.length > 0 || xhr.responseType === Resource.XHR_RESPONSE_TYPE.BUFFER)) { + status = STATUS_OK; + } // handle IE9 bug: http://stackoverflow.com/questions/10046972/msie-returns-status-code-of-1223-for-ajax-request + else if (status === STATUS_IE_BUG_EMPTY) { + status = STATUS_EMPTY; + } + + var statusType = status / 100 | 0; + + if (statusType === STATUS_TYPE_OK) { + // if text, just return it + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.TEXT) { + this.data = text; + this.type = Resource.TYPE.TEXT; + } // if json, parse into json object + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON) { + try { + this.data = JSON.parse(text); + this.type = Resource.TYPE.JSON; + } catch (e) { + this.abort("Error trying to parse loaded json: " + e); + return; + } + } // if xml, parse into an xml document or div element + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + try { + if (window.DOMParser) { + var domparser = new DOMParser(); + this.data = domparser.parseFromString(text, 'text/xml'); + } else { + var div = document.createElement('div'); + div.innerHTML = text; + this.data = div; + } + + this.type = Resource.TYPE.XML; + } catch (e) { + this.abort("Error trying to parse loaded xml: " + e); + return; + } + } // other types just return the response + else { + this.data = xhr.response || text; + } + } else { + this.abort("[" + xhr.status + "] " + xhr.statusText + ": " + xhr.responseURL); + return; + } + + this.complete(); + } + /** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * + * @private + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ + ; + + _proto._determineCrossOrigin = function _determineCrossOrigin(url, loc) { + // data: and javascript: urls are considered same-origin + if (url.indexOf('data:') === 0) { + return ''; + } // A sandboxed iframe without the 'allow-same-origin' attribute will have a special + // origin designed not to match window.location.origin, and will always require + // crossOrigin requests regardless of whether the location matches. + + + if (window.origin !== window.location.origin) { + return 'anonymous'; + } // default is window.location + + + loc = loc || window.location; + + if (!tempAnchor$1) { + tempAnchor$1 = document.createElement('a'); + } // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + + + tempAnchor$1.href = url; + url = parseUri(tempAnchor$1.href, { + strictMode: true + }); + var samePort = !url.port && loc.port === '' || url.port === loc.port; + var protocol = url.protocol ? url.protocol + ":" : ''; // if cross origin + + if (url.host !== loc.hostname || !samePort || protocol !== loc.protocol) { + return 'anonymous'; + } + + return ''; + } + /** + * Determines the responseType of an XHR request based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.XHR_RESPONSE_TYPE} The responseType to use. + */ + ; + + _proto._determineXhrType = function _determineXhrType() { + return Resource._xhrTypeMap[this.extension] || Resource.XHR_RESPONSE_TYPE.TEXT; + } + /** + * Determines the loadType of a resource based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.LOAD_TYPE} The loadType to use. + */ + ; + + _proto._determineLoadType = function _determineLoadType() { + return Resource._loadTypeMap[this.extension] || Resource.LOAD_TYPE.XHR; + } + /** + * Extracts the extension (sans '.') of the file being loaded by the resource. + * + * @private + * @return {string} The extension. + */ + ; + + _proto._getExtension = function _getExtension() { + var url = this.url; + var ext = ''; + + if (this.isDataUrl) { + var slashIndex = url.indexOf('/'); + ext = url.substring(slashIndex + 1, url.indexOf(';', slashIndex)); + } else { + var queryStart = url.indexOf('?'); + var hashStart = url.indexOf('#'); + var index = Math.min(queryStart > -1 ? queryStart : url.length, hashStart > -1 ? hashStart : url.length); + url = url.substring(0, index); + ext = url.substring(url.lastIndexOf('.') + 1); + } + + return ext.toLowerCase(); + } + /** + * Determines the mime type of an XHR request based on the responseType of + * resource being loaded. + * + * @private + * @param {Resource.XHR_RESPONSE_TYPE} type - The type to get a mime type for. + * @return {string} The mime type to use. + */ + ; + + _proto._getMimeFromXhrType = function _getMimeFromXhrType(type) { + switch (type) { + case Resource.XHR_RESPONSE_TYPE.BUFFER: + return 'application/octet-binary'; + + case Resource.XHR_RESPONSE_TYPE.BLOB: + return 'application/blob'; + + case Resource.XHR_RESPONSE_TYPE.DOCUMENT: + return 'application/xml'; + + case Resource.XHR_RESPONSE_TYPE.JSON: + return 'application/json'; + + case Resource.XHR_RESPONSE_TYPE.DEFAULT: + case Resource.XHR_RESPONSE_TYPE.TEXT: + /* falls through */ + + default: + return 'text/plain'; + } + }; + + _createClass(Resource, [{ + key: "isDataUrl", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.DATA_URL); + } + /** + * Describes if this resource has finished loading. Is true when the resource has completely + * loaded. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isComplete", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.COMPLETE); + } + /** + * Describes if this resource is currently loading. Is true when the resource starts loading, + * and is false again when complete. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isLoading", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.LOADING); + } + }]); + + return Resource; +}(); +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + + +Resource$1.STATUS_FLAGS = { + NONE: 0, + DATA_URL: 1 << 0, + COMPLETE: 1 << 1, + LOADING: 1 << 2 +}; +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.TYPE = { + UNKNOWN: 0, + JSON: 1, + XML: 2, + IMAGE: 3, + AUDIO: 4, + VIDEO: 5, + TEXT: 6 +}; +/** + * The types of loading a resource can use. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.LOAD_TYPE = { + /** Uses XMLHttpRequest to load the resource. */ + XHR: 1, + + /** Uses an `Image` object to load the resource. */ + IMAGE: 2, + + /** Uses an `Audio` object to load the resource. */ + AUDIO: 3, + + /** Uses a `Video` object to load the resource. */ + VIDEO: 4 +}; +/** + * The XHR ready states, used internally. + * + * @static + * @readonly + * @enum {string} + */ + +Resource$1.XHR_RESPONSE_TYPE = { + /** string */ + DEFAULT: 'text', + + /** ArrayBuffer */ + BUFFER: 'arraybuffer', + + /** Blob */ + BLOB: 'blob', + + /** Document */ + DOCUMENT: 'document', + + /** Object */ + JSON: 'json', + + /** String */ + TEXT: 'text' +}; +Resource$1._loadTypeMap = { + // images + gif: Resource$1.LOAD_TYPE.IMAGE, + png: Resource$1.LOAD_TYPE.IMAGE, + bmp: Resource$1.LOAD_TYPE.IMAGE, + jpg: Resource$1.LOAD_TYPE.IMAGE, + jpeg: Resource$1.LOAD_TYPE.IMAGE, + tif: Resource$1.LOAD_TYPE.IMAGE, + tiff: Resource$1.LOAD_TYPE.IMAGE, + webp: Resource$1.LOAD_TYPE.IMAGE, + tga: Resource$1.LOAD_TYPE.IMAGE, + svg: Resource$1.LOAD_TYPE.IMAGE, + 'svg+xml': Resource$1.LOAD_TYPE.IMAGE, + // for SVG data urls + // audio + mp3: Resource$1.LOAD_TYPE.AUDIO, + ogg: Resource$1.LOAD_TYPE.AUDIO, + wav: Resource$1.LOAD_TYPE.AUDIO, + // videos + mp4: Resource$1.LOAD_TYPE.VIDEO, + webm: Resource$1.LOAD_TYPE.VIDEO +}; +Resource$1._xhrTypeMap = { + // xml + xhtml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + html: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + htm: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + xml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + tmx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + svg: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // This was added to handle Tiled Tileset XML, but .tsx is also a TypeScript React Component. + // Since it is way less likely for people to be loading TypeScript files instead of Tiled files, + // this should probably be fine. + tsx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // images + gif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + png: Resource$1.XHR_RESPONSE_TYPE.BLOB, + bmp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpeg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tiff: Resource$1.XHR_RESPONSE_TYPE.BLOB, + webp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tga: Resource$1.XHR_RESPONSE_TYPE.BLOB, + // json + json: Resource$1.XHR_RESPONSE_TYPE.JSON, + // text + text: Resource$1.XHR_RESPONSE_TYPE.TEXT, + txt: Resource$1.XHR_RESPONSE_TYPE.TEXT, + // fonts + ttf: Resource$1.XHR_RESPONSE_TYPE.BUFFER, + otf: Resource$1.XHR_RESPONSE_TYPE.BUFFER +}; // We can't set the `src` attribute to empty string, so on abort we set it to this 1px transparent gif + +Resource$1.EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='; +/** + * Quick helper to set a value on one of the extension maps. Ensures there is no + * dot at the start of the extension. + * + * @ignore + * @param {object} map - The map to set on. + * @param {string} extname - The extension (or key) to set. + * @param {number} val - The value to set. + */ + +function setExtMap(map, extname, val) { + if (extname && extname.indexOf('.') === 0) { + extname = extname.substring(1); + } + + if (!extname) { + return; + } + + map[extname] = val; +} +/** + * Quick helper to get string xhr type. + * + * @ignore + * @param {XMLHttpRequest|XDomainRequest} xhr - The request to check. + * @return {string} The type. + */ + + +function reqType(xhr) { + return xhr.toString().replace('object ', ''); +} + +var _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; +/** + * Encodes binary into base64. + * + * @function encodeBinary + * @param {string} input The input data to encode. + * @returns {string} The encoded base64 string + */ + +function encodeBinary(input) { + var output = ''; + var inx = 0; + + while (inx < input.length) { + // Fill byte buffer array + var bytebuffer = [0, 0, 0]; + var encodedCharIndexes = [0, 0, 0, 0]; + + for (var jnx = 0; jnx < bytebuffer.length; ++jnx) { + if (inx < input.length) { + // throw away high-order byte, as documented at: + // https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data + bytebuffer[jnx] = input.charCodeAt(inx++) & 0xff; + } else { + bytebuffer[jnx] = 0; + } + } // Get each encoded character, 6 bits at a time + // index 1: first 6 bits + + + encodedCharIndexes[0] = bytebuffer[0] >> 2; // index 2: second 6 bits (2 least significant bits from input byte 1 + 4 most significant bits from byte 2) + + encodedCharIndexes[1] = (bytebuffer[0] & 0x3) << 4 | bytebuffer[1] >> 4; // index 3: third 6 bits (4 least significant bits from input byte 2 + 2 most significant bits from byte 3) + + encodedCharIndexes[2] = (bytebuffer[1] & 0x0f) << 2 | bytebuffer[2] >> 6; // index 3: forth 6 bits (6 least significant bits from input byte 3) + + encodedCharIndexes[3] = bytebuffer[2] & 0x3f; // Determine whether padding happened, and adjust accordingly + + var paddingBytes = inx - (input.length - 1); + + switch (paddingBytes) { + case 2: + // Set last 2 characters to padding char + encodedCharIndexes[3] = 64; + encodedCharIndexes[2] = 64; + break; + + case 1: + // Set last character to padding char + encodedCharIndexes[3] = 64; + break; + + default: + break; + // No padding - proceed + } // Now we will grab each appropriate character out of our keystring + // based on our index array and append it to the output string + + + for (var _jnx = 0; _jnx < encodedCharIndexes.length; ++_jnx) { + output += _keyStr.charAt(encodedCharIndexes[_jnx]); + } + } + + return output; +} + +var Url$1 = window.URL || window.webkitURL; +/** + * A middleware for transforming XHR loaded Blobs into more useful objects + * + * @memberof middleware + * @function parsing + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.parsing); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function parsing(resource, next) { + if (!resource.data) { + next(); + return; + } // if this was an XHR load of a blob + + + if (resource.xhr && resource.xhrType === Resource$1.XHR_RESPONSE_TYPE.BLOB) { + // if there is no blob support we probably got a binary string back + if (!window.Blob || typeof resource.data === 'string') { + var type = resource.xhr.getResponseHeader('content-type'); // this is an image, convert the binary string into a data url + + if (type && type.indexOf('image') === 0) { + resource.data = new Image(); + resource.data.src = "data:" + type + ";base64," + encodeBinary(resource.xhr.responseText); + resource.type = Resource$1.TYPE.IMAGE; // wait until the image loads and then callback + + resource.data.onload = function () { + resource.data.onload = null; + next(); + }; // next will be called on load + + + return; + } + } // if content type says this is an image, then we should transform the blob into an Image object + else if (resource.data.type.indexOf('image') === 0) { + var src = Url$1.createObjectURL(resource.data); + resource.blob = resource.data; + resource.data = new Image(); + resource.data.src = src; + resource.type = Resource$1.TYPE.IMAGE; // cleanup the no longer used blob after the image loads + // TODO: Is this correct? Will the image be invalid after revoking? + + resource.data.onload = function () { + Url$1.revokeObjectURL(src); + resource.data.onload = null; + next(); + }; // next will be called on load. + + + return; + } + } + + next(); +} + +/** + * @namespace middleware + */ + +var index = ({ + caching: caching, + parsing: parsing +}); + +var MAX_PROGRESS = 100; +var rgxExtractUrlHash = /(#[\w-]+)?$/; +/** + * Manages the state and loading of multiple resources to load. + * + * @class + */ + +var Loader = +/*#__PURE__*/ +function () { + /** + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ + function Loader(baseUrl, concurrency) { + var _this = this; + + if (baseUrl === void 0) { + baseUrl = ''; + } + + if (concurrency === void 0) { + concurrency = 10; + } + + /** + * The base url for all resources loaded by this loader. + * + * @member {string} + */ + this.baseUrl = baseUrl; + /** + * The progress percent of the loader going through the queue. + * + * @member {number} + * @default 0 + */ + + this.progress = 0; + /** + * Loading state of the loader, true if it is currently loading resources. + * + * @member {boolean} + * @default false + */ + + this.loading = false; + /** + * A querystring to append to every URL added to the loader. + * + * This should be a valid query string *without* the question-mark (`?`). The loader will + * also *not* escape values for you. Make sure to escape your parameters with + * [`encodeURIComponent`](https://mdn.io/encodeURIComponent) before assigning this property. + * + * @example + * const loader = new Loader(); + * + * loader.defaultQueryString = 'user=me&password=secret'; + * + * // This will request 'image.png?user=me&password=secret' + * loader.add('image.png').load(); + * + * loader.reset(); + * + * // This will request 'image.png?v=1&user=me&password=secret' + * loader.add('iamge.png?v=1').load(); + * + * @member {string} + * @default '' + */ + + this.defaultQueryString = ''; + /** + * The middleware to run before loading each resource. + * + * @private + * @member {function[]} + */ + + this._beforeMiddleware = []; + /** + * The middleware to run after loading each resource. + * + * @private + * @member {function[]} + */ + + this._afterMiddleware = []; + /** + * The tracks the resources we are currently completing parsing for. + * + * @private + * @member {Resource[]} + */ + + this._resourcesParsing = []; + /** + * The `_loadResource` function bound with this object context. + * + * @private + * @member {function} + * @param {Resource} r - The resource to load + * @param {Function} d - The dequeue function + * @return {undefined} + */ + + this._boundLoadResource = function (r, d) { + return _this._loadResource(r, d); + }; + /** + * The resources waiting to be loaded. + * + * @private + * @member {Resource[]} + */ + + + this._queue = queue(this._boundLoadResource, concurrency); + + this._queue.pause(); + /** + * All the resources for this loader keyed by name. + * + * @member {object} + */ + + + this.resources = {}; + /** + * Dispatched once per loaded or errored resource. + * + * The callback looks like {@link Loader.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once per errored resource. + * + * The callback looks like {@link Loader.OnErrorSignal}. + * + * @member {Signal} + */ + + this.onError = new Signal(); + /** + * Dispatched once per loaded resource. + * + * The callback looks like {@link Loader.OnLoadSignal}. + * + * @member {Signal} + */ + + this.onLoad = new Signal(); + /** + * Dispatched when the loader begins to process the queue. + * + * The callback looks like {@link Loader.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched when the queued resources all load. + * + * The callback looks like {@link Loader.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); // Add default before middleware + + for (var i = 0; i < Loader._defaultBeforeMiddleware.length; ++i) { + this.pre(Loader._defaultBeforeMiddleware[i]); + } // Add default after middleware + + + for (var _i = 0; _i < Loader._defaultAfterMiddleware.length; ++_i) { + this.use(Loader._defaultAfterMiddleware[_i]); + } + } + /** + * When the progress changes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnProgressSignal + * @param {Loader} loader - The loader the progress is advancing on. + * @param {Resource} resource - The resource that has completed or failed to cause the progress to advance. + */ + + /** + * When an error occurrs the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnErrorSignal + * @param {Loader} loader - The loader the error happened in. + * @param {Resource} resource - The resource that caused the error. + */ + + /** + * When a load completes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnLoadSignal + * @param {Loader} loader - The loader that laoded the resource. + * @param {Resource} resource - The resource that has completed loading. + */ + + /** + * When the loader starts loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnStartSignal + * @param {Loader} loader - The loader that has started loading resources. + */ + + /** + * When the loader completes loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnCompleteSignal + * @param {Loader} loader - The loader that has finished loading resources. + */ + + /** + * Options for a call to `.add()`. + * + * @see Loader#add + * + * @typedef {object} IAddOptions + * @property {string} [name] - The name of the resource to load, if not passed the url is used. + * @property {string} [key] - Alias for `name`. + * @property {string} [url] - The url for this resource, relative to the baseUrl of this loader. + * @property {string|boolean} [crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @property {number} [timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @property {Resource.LOAD_TYPE} [loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @property {Resource.XHR_RESPONSE_TYPE} [xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @property {Resource.OnCompleteSignal} [onComplete] - Callback to add an an onComplete signal istener. + * @property {Resource.OnCompleteSignal} [callback] - Alias for `onComplete`. + * @property {Resource.IMetadata} [metadata] - Extra configuration for middleware and the Resource object. + */ + + /* eslint-disable require-jsdoc,valid-jsdoc */ + + /** + * Adds a resource (or multiple resources) to the loader queue. + * + * This function can take a wide variety of different parameters. The only thing that is always + * required the url to load. All the following will work: + * + * ```js + * loader + * // normal param syntax + * .add('key', 'http://...', function () {}) + * .add('http://...', function () {}) + * .add('http://...') + * + * // object syntax + * .add({ + * name: 'key2', + * url: 'http://...' + * }, function () {}) + * .add({ + * url: 'http://...' + * }, function () {}) + * .add({ + * name: 'key3', + * url: 'http://...' + * onComplete: function () {} + * }) + * .add({ + * url: 'https://...', + * onComplete: function () {}, + * crossOrigin: true + * }) + * + * // you can also pass an array of objects or urls or both + * .add([ + * { name: 'key4', url: 'http://...', onComplete: function () {} }, + * { url: 'http://...', onComplete: function () {} }, + * 'http://...' + * ]) + * + * // and you can use both params and options + * .add('key', 'http://...', { crossOrigin: true }, function () {}) + * .add('http://...', { crossOrigin: true }, function () {}); + * ``` + * + * @function + * @variation 1 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 2 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 3 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 4 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 5 + * @param {IAddOptions} options - The options for the load. This object must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 6 + * @param {Array} resources - An array of resources to load, where each is + * either an object with the options or a string url. If you pass an object, it must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + + var _proto = Loader.prototype; + + _proto.add = function add(name, url, options, cb) { + // special case of an array of objects or urls + if (Array.isArray(name)) { + for (var i = 0; i < name.length; ++i) { + this.add(name[i]); + } + + return this; + } // if an object is passed instead of params + + + if (typeof name === 'object') { + cb = url || name.callback || name.onComplete; + options = name; + url = name.url; + name = name.name || name.key || name.url; + } // case where no name is passed shift all args over by one. + + + if (typeof url !== 'string') { + cb = options; + options = url; + url = name; + } // now that we shifted make sure we have a proper url. + + + if (typeof url !== 'string') { + throw new Error('No url passed to add resource to loader.'); + } // options are optional so people might pass a function and no options + + + if (typeof options === 'function') { + cb = options; + options = null; + } // if loading already you can only add resources that have a parent. + + + if (this.loading && (!options || !options.parentResource)) { + throw new Error('Cannot add resources while the loader is running.'); + } // check if resource already exists. + + + if (this.resources[name]) { + throw new Error("Resource named \"" + name + "\" already exists."); + } // add base url if this isn't an absolute url + + + url = this._prepareUrl(url); // create the store the resource + + this.resources[name] = new Resource$1(name, url, options); + + if (typeof cb === 'function') { + this.resources[name].onAfterMiddleware.once(cb); + } // if actively loading, make sure to adjust progress chunks for that parent and its children + + + if (this.loading) { + var parent = options.parentResource; + var incompleteChildren = []; + + for (var _i2 = 0; _i2 < parent.children.length; ++_i2) { + if (!parent.children[_i2].isComplete) { + incompleteChildren.push(parent.children[_i2]); + } + } + + var fullChunk = parent.progressChunk * (incompleteChildren.length + 1); // +1 for parent + + var eachChunk = fullChunk / (incompleteChildren.length + 2); // +2 for parent & new child + + parent.children.push(this.resources[name]); + parent.progressChunk = eachChunk; + + for (var _i3 = 0; _i3 < incompleteChildren.length; ++_i3) { + incompleteChildren[_i3].progressChunk = eachChunk; + } + + this.resources[name].progressChunk = eachChunk; + } // add the resource to the queue + + + this._queue.push(this.resources[name]); + + return this; + } + /* eslint-enable require-jsdoc,valid-jsdoc */ + + /** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.pre = function pre(fn) { + this._beforeMiddleware.push(fn); + + return this; + } + /** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.use = function use(fn) { + this._afterMiddleware.push(fn); + + return this; + } + /** + * Resets the queue of the loader to prepare for a new load. + * + * @return {this} Returns itself. + */ + ; + + _proto.reset = function reset() { + this.progress = 0; + this.loading = false; + + this._queue.kill(); + + this._queue.pause(); // abort all resource loads + + + for (var k in this.resources) { + var res = this.resources[k]; + + if (res._onLoadBinding) { + res._onLoadBinding.detach(); + } + + if (res.isLoading) { + res.abort(); + } + } + + this.resources = {}; + return this; + } + /** + * Starts loading the queued resources. + * + * @param {function} [cb] - Optional callback that will be bound to the `complete` event. + * @return {this} Returns itself. + */ + ; + + _proto.load = function load(cb) { + // register complete callback if they pass one + if (typeof cb === 'function') { + this.onComplete.once(cb); + } // if the queue has already started we are done here + + + if (this.loading) { + return this; + } + + if (this._queue.idle()) { + this._onStart(); + + this._onComplete(); + } else { + // distribute progress chunks + var numTasks = this._queue._tasks.length; + var chunk = MAX_PROGRESS / numTasks; + + for (var i = 0; i < this._queue._tasks.length; ++i) { + this._queue._tasks[i].data.progressChunk = chunk; + } // notify we are starting + + + this._onStart(); // start loading + + + this._queue.resume(); + } + + return this; + } + /** + * The number of resources to load concurrently. + * + * @member {number} + * @default 10 + */ + ; + + /** + * Prepares a url for usage based on the configuration of this object + * + * @private + * @param {string} url - The url to prepare. + * @return {string} The prepared url. + */ + _proto._prepareUrl = function _prepareUrl(url) { + var parsedUrl = parseUri(url, { + strictMode: true + }); + var result; // absolute url, just use it as is. + + if (parsedUrl.protocol || !parsedUrl.path || url.indexOf('//') === 0) { + result = url; + } // if baseUrl doesn't end in slash and url doesn't start with slash, then add a slash inbetween + else if (this.baseUrl.length && this.baseUrl.lastIndexOf('/') !== this.baseUrl.length - 1 && url.charAt(0) !== '/') { + result = this.baseUrl + "/" + url; + } else { + result = this.baseUrl + url; + } // if we need to add a default querystring, there is a bit more work + + + if (this.defaultQueryString) { + var hash = rgxExtractUrlHash.exec(result)[0]; + result = result.substr(0, result.length - hash.length); + + if (result.indexOf('?') !== -1) { + result += "&" + this.defaultQueryString; + } else { + result += "?" + this.defaultQueryString; + } + + result += hash; + } + + return result; + } + /** + * Loads a single resource. + * + * @private + * @param {Resource} resource - The resource to load. + * @param {function} dequeue - The function to call when we need to dequeue this item. + */ + ; + + _proto._loadResource = function _loadResource(resource, dequeue) { + var _this2 = this; + + resource._dequeue = dequeue; // run before middleware + + eachSeries(this._beforeMiddleware, function (fn, next) { + fn.call(_this2, resource, function () { + // if the before middleware marks the resource as complete, + // break and don't process any more before middleware + next(resource.isComplete ? {} : null); + }); + }, function () { + if (resource.isComplete) { + _this2._onLoad(resource); + } else { + resource._onLoadBinding = resource.onComplete.once(_this2._onLoad, _this2); + resource.load(); + } + }, true); + } + /** + * Called once loading has started. + * + * @private + */ + ; + + _proto._onStart = function _onStart() { + this.progress = 0; + this.loading = true; + this.onStart.dispatch(this); + } + /** + * Called once each resource has loaded. + * + * @private + */ + ; + + _proto._onComplete = function _onComplete() { + this.progress = MAX_PROGRESS; + this.loading = false; + this.onComplete.dispatch(this, this.resources); + } + /** + * Called each time a resources is loaded. + * + * @private + * @param {Resource} resource - The resource that was loaded + */ + ; + + _proto._onLoad = function _onLoad(resource) { + var _this3 = this; + + resource._onLoadBinding = null; // remove this resource from the async queue, and add it to our list of resources that are being parsed + + this._resourcesParsing.push(resource); + + resource._dequeue(); // run all the after middleware for this resource + + + eachSeries(this._afterMiddleware, function (fn, next) { + fn.call(_this3, resource, next); + }, function () { + resource.onAfterMiddleware.dispatch(resource); + _this3.progress = Math.min(MAX_PROGRESS, _this3.progress + resource.progressChunk); + + _this3.onProgress.dispatch(_this3, resource); + + if (resource.error) { + _this3.onError.dispatch(resource.error, _this3, resource); + } else { + _this3.onLoad.dispatch(_this3, resource); + } + + _this3._resourcesParsing.splice(_this3._resourcesParsing.indexOf(resource), 1); // do completion check + + + if (_this3._queue.idle() && _this3._resourcesParsing.length === 0) { + _this3._onComplete(); + } + }, true); + }; + + _createClass(Loader, [{ + key: "concurrency", + get: function get() { + return this._queue.concurrency; + } // eslint-disable-next-line require-jsdoc + , + set: function set(concurrency) { + this._queue.concurrency = concurrency; + } + }]); + + return Loader; +}(); +/** + * A default array of middleware to run before loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + + +Loader._defaultBeforeMiddleware = []; +/** + * A default array of middleware to run after loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + +Loader._defaultAfterMiddleware = []; +/** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + +Loader.pre = function LoaderPreStatic(fn) { + Loader._defaultBeforeMiddleware.push(fn); + + return Loader; +}; +/** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + + +Loader.use = function LoaderUseStatic(fn) { + Loader._defaultAfterMiddleware.push(fn); + + return Loader; +}; + +/*! + * @pixi/loaders - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/loaders is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Loader plugin for handling Texture resources. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var TextureLoader = function TextureLoader () {}; + +TextureLoader.use = function use (resource, next) +{ + // create a new texture if the data is an Image object + if (resource.data && resource.type === Resource$1.TYPE.IMAGE) + { + resource.texture = Texture.fromLoader( + resource.data, + resource.url, + resource.name + ); + } + next(); +}; + +/** + * The new loader, extends Resource Loader by Chad Engler: https://github.com/englercj/resource-loader + * + * ```js + * const loader = PIXI.Loader.shared; // PixiJS exposes a premade instance for you to use. + * //or + * const loader = new PIXI.Loader(); // you can also create your own if you want + * + * const sprites = {}; + * + * // Chainable `add` to enqueue a resource + * loader.add('bunny', 'data/bunny.png') + * .add('spaceship', 'assets/spritesheet.json'); + * loader.add('scoreFont', 'assets/score.fnt'); + * + * // Chainable `pre` to add a middleware that runs for each resource, *before* loading that resource. + * // This is useful to implement custom caching modules (using filesystem, indexeddb, memory, etc). + * loader.pre(cachingMiddleware); + * + * // Chainable `use` to add a middleware that runs for each resource, *after* loading that resource. + * // This is useful to implement custom parsing modules (like spritesheet parsers, spine parser, etc). + * loader.use(parsingMiddleware); + * + * // The `load` method loads the queue of resources, and calls the passed in callback called once all + * // resources have loaded. + * loader.load((loader, resources) => { + * // resources is an object where the key is the name of the resource loaded and the value is the resource object. + * // They have a couple default properties: + * // - `url`: The URL that the resource was loaded from + * // - `error`: The error that happened when trying to load (if any) + * // - `data`: The raw data that was loaded + * // also may contain other properties based on the middleware that runs. + * sprites.bunny = new PIXI.TilingSprite(resources.bunny.texture); + * sprites.spaceship = new PIXI.TilingSprite(resources.spaceship.texture); + * sprites.scoreFont = new PIXI.TilingSprite(resources.scoreFont.texture); + * }); + * + * // throughout the process multiple signals can be dispatched. + * loader.onProgress.add(() => {}); // called once per loaded/errored file + * loader.onError.add(() => {}); // called once per errored file + * loader.onLoad.add(() => {}); // called once per loaded file + * loader.onComplete.add(() => {}); // called once when the queued resources all load. + * ``` + * + * @see https://github.com/englercj/resource-loader + * + * @class Loader + * @memberof PIXI + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ +var Loader$1 = /*@__PURE__*/(function (ResourceLoader) { + function Loader(baseUrl, concurrency) + { + var this$1 = this; + + ResourceLoader.call(this, baseUrl, concurrency); + eventemitter3.call(this); + + for (var i = 0; i < Loader._plugins.length; ++i) + { + var plugin = Loader._plugins[i]; + var pre = plugin.pre; + var use = plugin.use; + + if (pre) + { + this.pre(pre); + } + + if (use) + { + this.use(use); + } + } + + // Compat layer, translate the new v2 signals into old v1 events. + this.onStart.add(function (l) { return this$1.emit('start', l); }); + this.onProgress.add(function (l, r) { return this$1.emit('progress', l, r); }); + this.onError.add(function (e, l, r) { return this$1.emit('error', e, l, r); }); + this.onLoad.add(function (l, r) { return this$1.emit('load', l, r); }); + this.onComplete.add(function (l, r) { return this$1.emit('complete', l, r); }); + + /** + * If this loader cannot be destroyed. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + } + + if ( ResourceLoader ) Loader.__proto__ = ResourceLoader; + Loader.prototype = Object.create( ResourceLoader && ResourceLoader.prototype ); + Loader.prototype.constructor = Loader; + + var staticAccessors = { shared: { configurable: true } }; + + /** + * Destroy the loader, removes references. + * @private + */ + Loader.prototype.destroy = function destroy () + { + if (!this._protected) + { + this.removeAllListeners(); + this.reset(); + } + }; + + /** + * A premade instance of the loader that can be used to load resources. + * @name shared + * @type {PIXI.Loader} + * @static + * @memberof PIXI.Loader + */ + staticAccessors.shared.get = function () + { + var shared = Loader._shared; + + if (!shared) + { + shared = new Loader(); + shared._protected = true; + Loader._shared = shared; + } + + return shared; + }; + + Object.defineProperties( Loader, staticAccessors ); + + return Loader; +}(Loader)); + +// Copy EE3 prototype (mixin) +Object.assign(Loader$1.prototype, eventemitter3.prototype); + +/** + * Collection of all installed `use` middleware for Loader. + * + * @static + * @member {Array} _plugins + * @memberof PIXI.Loader + * @private + */ +Loader$1._plugins = []; + +/** + * Adds a Loader plugin for the global shared loader and all + * new Loader instances created. + * + * @static + * @method registerPlugin + * @memberof PIXI.Loader + * @param {PIXI.ILoaderPlugin} plugin - The plugin to add + * @return {PIXI.Loader} Reference to PIXI.Loader for chaining + */ +Loader$1.registerPlugin = function registerPlugin(plugin) +{ + Loader$1._plugins.push(plugin); + + if (plugin.add) + { + plugin.add(); + } + + return Loader$1; +}; + +// parse any blob into more usable objects (e.g. Image) +Loader$1.registerPlugin({ use: index.parsing }); + +// parse any Image objects into textures +Loader$1.registerPlugin(TextureLoader); + +/** + * Plugin to be installed for handling specific Loader resources. + * + * @memberof PIXI + * @typedef ILoaderPlugin + * @property {function} [add] - Function to call immediate after registering plugin. + * @property {PIXI.Loader.loaderMiddleware} [pre] - Middleware function to run before load, the + * arguments for this are `(resource, next)` + * @property {PIXI.Loader.loaderMiddleware} [use] - Middleware function to run after load, the + * arguments for this are `(resource, next)` + */ + +/** + * @memberof PIXI.Loader + * @callback loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onStart + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onProgress + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onError + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onLoad + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onComplete + */ + +/** + * Application plugin for supporting loader option. Installing the LoaderPlugin + * is not necessary if using **pixi.js** or **pixi.js-legacy**. + * @example + * import {AppLoaderPlugin} from '@pixi/loaders'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(AppLoaderPlugin); + * @class + * @memberof PIXI + */ +var AppLoaderPlugin = function AppLoaderPlugin () {}; + +AppLoaderPlugin.init = function init (options) +{ + options = Object.assign({ + sharedLoader: false, + }, options); + + /** + * Loader instance to help with asset loading. + * @name PIXI.Application#loader + * @type {PIXI.Loader} + * @readonly + */ + this.loader = options.sharedLoader ? Loader$1.shared : new Loader$1(); +}; + +/** + * Called when application destroyed + * @private + */ +AppLoaderPlugin.destroy = function destroy () +{ + if (this.loader) + { + this.loader.destroy(); + this.loader = null; + } +}; + +/** + * Reference to **{@link https://github.com/englercj/resource-loader + * resource-loader}**'s Resource class. + * @see http://englercj.github.io/resource-loader/Resource.html + * @class LoaderResource + * @memberof PIXI + */ +var LoaderResource = Resource$1; + +/*! + * @pixi/particles - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/particles is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that + * they now share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleBuffer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleBuffer.java + */ + +/** + * The particle buffer manages the static and dynamic buffers for a particle container. + * + * @class + * @private + * @memberof PIXI + */ +var ParticleBuffer = function ParticleBuffer(properties, dynamicPropertyFlags, size) +{ + this.geometry = new Geometry(); + + this.indexBuffer = null; + + /** + * The number of particles the buffer can hold + * + * @private + * @member {number} + */ + this.size = size; + + /** + * A list of the properties that are dynamic. + * + * @private + * @member {object[]} + */ + this.dynamicProperties = []; + + /** + * A list of the properties that are static. + * + * @private + * @member {object[]} + */ + this.staticProperties = []; + + for (var i = 0; i < properties.length; ++i) + { + var property = properties[i]; + + // Make copy of properties object so that when we edit the offset it doesn't + // change all other instances of the object literal + property = { + attributeName: property.attributeName, + size: property.size, + uploadFunction: property.uploadFunction, + type: property.type || TYPES.FLOAT, + offset: property.offset, + }; + + if (dynamicPropertyFlags[i]) + { + this.dynamicProperties.push(property); + } + else + { + this.staticProperties.push(property); + } + } + + this.staticStride = 0; + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + + this.dynamicStride = 0; + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this._updateID = 0; + + this.initBuffers(); +}; + +/** + * Sets up the renderer context and necessary buffers. + * + * @private + */ +ParticleBuffer.prototype.initBuffers = function initBuffers () +{ + var geometry = this.geometry; + + var dynamicOffset = 0; + + /** + * Holds the indices of the geometry (quads) to draw + * + * @member {Uint16Array} + * @private + */ + this.indexBuffer = new Buffer$1(createIndicesForQuads(this.size), true, true); + geometry.addIndex(this.indexBuffer); + + this.dynamicStride = 0; + + for (var i = 0; i < this.dynamicProperties.length; ++i) + { + var property = this.dynamicProperties[i]; + + property.offset = dynamicOffset; + dynamicOffset += property.size; + this.dynamicStride += property.size; + } + + var dynBuffer = new ArrayBuffer(this.size * this.dynamicStride * 4 * 4); + + this.dynamicData = new Float32Array(dynBuffer); + this.dynamicDataUint32 = new Uint32Array(dynBuffer); + this.dynamicBuffer = new Buffer$1(this.dynamicData, false, false); + + // static // + var staticOffset = 0; + + this.staticStride = 0; + + for (var i$1 = 0; i$1 < this.staticProperties.length; ++i$1) + { + var property$1 = this.staticProperties[i$1]; + + property$1.offset = staticOffset; + staticOffset += property$1.size; + this.staticStride += property$1.size; + } + + var statBuffer = new ArrayBuffer(this.size * this.staticStride * 4 * 4); + + this.staticData = new Float32Array(statBuffer); + this.staticDataUint32 = new Uint32Array(statBuffer); + this.staticBuffer = new Buffer$1(this.staticData, true, false); + + for (var i$2 = 0; i$2 < this.dynamicProperties.length; ++i$2) + { + var property$2 = this.dynamicProperties[i$2]; + + geometry.addAttribute( + property$2.attributeName, + this.dynamicBuffer, + 0, + property$2.type === TYPES.UNSIGNED_BYTE, + property$2.type, + this.dynamicStride * 4, + property$2.offset * 4 + ); + } + + for (var i$3 = 0; i$3 < this.staticProperties.length; ++i$3) + { + var property$3 = this.staticProperties[i$3]; + + geometry.addAttribute( + property$3.attributeName, + this.staticBuffer, + 0, + property$3.type === TYPES.UNSIGNED_BYTE, + property$3.type, + this.staticStride * 4, + property$3.offset * 4 + ); + } +}; + +/** + * Uploads the dynamic properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadDynamic = function uploadDynamic (children, startIndex, amount) +{ + for (var i = 0; i < this.dynamicProperties.length; i++) + { + var property = this.dynamicProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.dynamicDataUint32 : this.dynamicData, + this.dynamicStride, property.offset); + } + + this.dynamicBuffer._updateID++; +}; + +/** + * Uploads the static properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadStatic = function uploadStatic (children, startIndex, amount) +{ + for (var i = 0; i < this.staticProperties.length; i++) + { + var property = this.staticProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.staticDataUint32 : this.staticData, + this.staticStride, property.offset); + } + + this.staticBuffer._updateID++; +}; + +/** + * Destroys the ParticleBuffer. + * + * @private + */ +ParticleBuffer.prototype.destroy = function destroy () +{ + this.indexBuffer = null; + + this.dynamicProperties = null; + // this.dynamicBuffer.destroy(); + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this.staticProperties = null; + // this.staticBuffer.destroy(); + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + // all buffers are destroyed inside geometry + this.geometry.destroy(); +}; + +var vertex$1 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\n\nattribute vec2 aPositionCoord;\nattribute float aRotation;\n\nuniform mat3 translationMatrix;\nuniform vec4 uColor;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nvoid main(void){\n float x = (aVertexPosition.x) * cos(aRotation) - (aVertexPosition.y) * sin(aRotation);\n float y = (aVertexPosition.x) * sin(aRotation) + (aVertexPosition.y) * cos(aRotation);\n\n vec2 v = vec2(x, y);\n v = v + aPositionCoord;\n\n gl_Position = vec4((translationMatrix * vec3(v, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vColor = aColor * uColor;\n}\n"; + +var fragment$1 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n vec4 color = texture2D(uSampler, vTextureCoord) * vColor;\n gl_FragColor = color;\n}"; + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that they now + * share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleRenderer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleRenderer.java + */ + +/** + * Renderer for Particles that is designer for speed over feature set. + * + * @class + * @memberof PIXI + */ +var ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function ParticleRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + // 65535 is max vertex index in the index buffer (see ParticleRenderer) + // so max number of particles is 65536 / 4 = 16384 + // and max number of element in the index buffer is 16384 * 6 = 98304 + // Creating a full index buffer, overhead is 98304 * 2 = 196Ko + // let numIndices = 98304; + + /** + * The default shader that is used if a sprite doesn't have a more specific one. + * + * @member {PIXI.Shader} + */ + this.shader = null; + + this.properties = null; + + this.tempMatrix = new Matrix(); + + this.properties = [ + // verticesData + { + attributeName: 'aVertexPosition', + size: 2, + uploadFunction: this.uploadVertices, + offset: 0, + }, + // positionData + { + attributeName: 'aPositionCoord', + size: 2, + uploadFunction: this.uploadPosition, + offset: 0, + }, + // rotationData + { + attributeName: 'aRotation', + size: 1, + uploadFunction: this.uploadRotation, + offset: 0, + }, + // uvsData + { + attributeName: 'aTextureCoord', + size: 2, + uploadFunction: this.uploadUvs, + offset: 0, + }, + // tintData + { + attributeName: 'aColor', + size: 1, + type: TYPES.UNSIGNED_BYTE, + uploadFunction: this.uploadTint, + offset: 0, + } ]; + + this.shader = Shader.from(vertex$1, fragment$1, {}); + } + + if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer; + ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + ParticleRenderer.prototype.constructor = ParticleRenderer; + + /** + * Renders the particle container object. + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + */ + ParticleRenderer.prototype.render = function render (container) + { + var children = container.children; + var maxSize = container._maxSize; + var batchSize = container._batchSize; + var renderer = this.renderer; + var totalChildren = children.length; + + if (totalChildren === 0) + { + return; + } + else if (totalChildren > maxSize && !container.autoResize) + { + totalChildren = maxSize; + } + + var buffers = container._buffers; + + if (!buffers) + { + buffers = container._buffers = this.generateBuffers(container); + } + + var baseTexture = children[0]._texture.baseTexture; + + // if the uvs have not updated then no point rendering just yet! + this.renderer.state.setBlendMode(correctBlendMode(container.blendMode, baseTexture.premultiplyAlpha)); + + var gl = renderer.gl; + + var m = container.worldTransform.copyTo(this.tempMatrix); + + m.prepend(renderer.globalUniforms.uniforms.projectionMatrix); + + this.shader.uniforms.translationMatrix = m.toArray(true); + + this.shader.uniforms.uColor = premultiplyRgba(container.tintRgb, + container.worldAlpha, this.shader.uniforms.uColor, baseTexture.premultiplyAlpha); + + this.shader.uniforms.uSampler = baseTexture; + + this.renderer.shader.bind(this.shader); + + var updateStatic = false; + + // now lets upload and render the buffers.. + for (var i = 0, j = 0; i < totalChildren; i += batchSize, j += 1) + { + var amount = (totalChildren - i); + + if (amount > batchSize) + { + amount = batchSize; + } + + if (j >= buffers.length) + { + buffers.push(this._generateOneMoreBuffer(container)); + } + + var buffer = buffers[j]; + + // we always upload the dynamic + buffer.uploadDynamic(children, i, amount); + + var bid = container._bufferUpdateIDs[j] || 0; + + updateStatic = updateStatic || (buffer._updateID < bid); + // we only upload the static content when we have to! + if (updateStatic) + { + buffer._updateID = container._updateID; + buffer.uploadStatic(children, i, amount); + } + + // bind the buffer + renderer.geometry.bind(buffer.geometry); + gl.drawElements(gl.TRIANGLES, amount * 6, gl.UNSIGNED_SHORT, 0); + } + }; + + /** + * Creates one particle buffer for each child in the container we want to render and updates internal properties + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer[]} The buffers + * @private + */ + ParticleRenderer.prototype.generateBuffers = function generateBuffers (container) + { + var buffers = []; + var size = container._maxSize; + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + for (var i = 0; i < size; i += batchSize) + { + buffers.push(new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize)); + } + + return buffers; + }; + + /** + * Creates one more particle buffer, because container has autoResize feature + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer} generated buffer + * @private + */ + ParticleRenderer.prototype._generateOneMoreBuffer = function _generateOneMoreBuffer (container) + { + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + return new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize); + }; + + /** + * Uploads the vertices. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their vertices uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadVertices = function uploadVertices (children, startIndex, amount, array, stride, offset) + { + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var texture = sprite._texture; + var sx = sprite.scale.x; + var sy = sprite.scale.y; + var trim = texture.trim; + var orig = texture.orig; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the + // extra space before transforming the sprite coords.. + w1 = trim.x - (sprite.anchor.x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (sprite.anchor.y * orig.height); + h0 = h1 + trim.height; + } + else + { + w0 = (orig.width) * (1 - sprite.anchor.x); + w1 = (orig.width) * -sprite.anchor.x; + + h0 = orig.height * (1 - sprite.anchor.y); + h1 = orig.height * -sprite.anchor.y; + } + + array[offset] = w1 * sx; + array[offset + 1] = h1 * sy; + + array[offset + stride] = w0 * sx; + array[offset + stride + 1] = h1 * sy; + + array[offset + (stride * 2)] = w0 * sx; + array[offset + (stride * 2) + 1] = h0 * sy; + + array[offset + (stride * 3)] = w1 * sx; + array[offset + (stride * 3) + 1] = h0 * sy; + + offset += stride * 4; + } + }; + + /** + * Uploads the position. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their positions uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadPosition = function uploadPosition (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spritePosition = children[startIndex + i].position; + + array[offset] = spritePosition.x; + array[offset + 1] = spritePosition.y; + + array[offset + stride] = spritePosition.x; + array[offset + stride + 1] = spritePosition.y; + + array[offset + (stride * 2)] = spritePosition.x; + array[offset + (stride * 2) + 1] = spritePosition.y; + + array[offset + (stride * 3)] = spritePosition.x; + array[offset + (stride * 3) + 1] = spritePosition.y; + + offset += stride * 4; + } + }; + + /** + * Uploads the rotiation. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadRotation = function uploadRotation (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spriteRotation = children[startIndex + i].rotation; + + array[offset] = spriteRotation; + array[offset + stride] = spriteRotation; + array[offset + (stride * 2)] = spriteRotation; + array[offset + (stride * 3)] = spriteRotation; + + offset += stride * 4; + } + }; + + /** + * Uploads the Uvs + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadUvs = function uploadUvs (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var textureUvs = children[startIndex + i]._texture._uvs; + + if (textureUvs) + { + array[offset] = textureUvs.x0; + array[offset + 1] = textureUvs.y0; + + array[offset + stride] = textureUvs.x1; + array[offset + stride + 1] = textureUvs.y1; + + array[offset + (stride * 2)] = textureUvs.x2; + array[offset + (stride * 2) + 1] = textureUvs.y2; + + array[offset + (stride * 3)] = textureUvs.x3; + array[offset + (stride * 3) + 1] = textureUvs.y3; + + offset += stride * 4; + } + else + { + // TODO you know this can be easier! + array[offset] = 0; + array[offset + 1] = 0; + + array[offset + stride] = 0; + array[offset + stride + 1] = 0; + + array[offset + (stride * 2)] = 0; + array[offset + (stride * 2) + 1] = 0; + + array[offset + (stride * 3)] = 0; + array[offset + (stride * 3) + 1] = 0; + + offset += stride * 4; + } + } + }; + + /** + * Uploads the tint. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadTint = function uploadTint (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var premultiplied = sprite._texture.baseTexture.premultiplyAlpha; + var alpha = sprite.alpha; + // we dont call extra function if alpha is 1.0, that's faster + var argb = alpha < 1.0 && premultiplied ? premultiplyTint(sprite._tintRGB, alpha) + : sprite._tintRGB + (alpha * 255 << 24); + + array[offset] = argb; + array[offset + stride] = argb; + array[offset + (stride * 2)] = argb; + array[offset + (stride * 3)] = argb; + + offset += stride * 4; + } + }; + + /** + * Destroys the ParticleRenderer. + */ + ParticleRenderer.prototype.destroy = function destroy () + { + ObjectRenderer.prototype.destroy.call(this); + + if (this.shader) + { + this.shader.destroy(); + this.shader = null; + } + + this.tempMatrix = null; + }; + + return ParticleRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/spritesheet - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/spritesheet is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Utility class for maintaining reference to a collection + * of Textures on a single Spritesheet. + * + * To access a sprite sheet from your code pass its JSON data file to Pixi's loader: + * + * ```js + * PIXI.Loader.shared.add("images/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["images/spritesheet.json"].spritesheet; + * ... + * } + * ``` + * With the `sheet.textures` you can create Sprite objects,`sheet.animations` can be used to create an AnimatedSprite. + * + * Sprite sheets can be packed using tools like {@link https://codeandweb.com/texturepacker|TexturePacker}, + * {@link https://renderhjs.net/shoebox/|Shoebox} or {@link https://github.com/krzysztof-o/spritesheet.js|Spritesheet.js}. + * Default anchor points (see {@link PIXI.Texture#defaultAnchor}) and grouping of animation sprites are currently only + * supported by TexturePacker. + * + * @class + * @memberof PIXI + */ +var Spritesheet = function Spritesheet(baseTexture, data, resolutionFilename) +{ + if ( resolutionFilename === void 0 ) resolutionFilename = null; + + /** + * Reference to ths source texture + * @type {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * A map containing all textures of the sprite sheet. + * Can be used to create a {@link PIXI.Sprite|Sprite}: + * ```js + * new PIXI.Sprite(sheet.textures["image.png"]); + * ``` + * @member {Object} + */ + this.textures = {}; + + /** + * A map containing the textures for each animation. + * Can be used to create an {@link PIXI.AnimatedSprite|AnimatedSprite}: + * ```js + * new PIXI.AnimatedSprite(sheet.animations["anim_name"]) + * ``` + * @member {Object} + */ + this.animations = {}; + + /** + * Reference to the original JSON data. + * @type {Object} + */ + this.data = data; + + /** + * The resolution of the spritesheet. + * @type {number} + */ + this.resolution = this._updateResolution( + resolutionFilename + || (this.baseTexture.resource ? this.baseTexture.resource.url : null) + ); + + /** + * Map of spritesheet frames. + * @type {Object} + * @private + */ + this._frames = this.data.frames; + + /** + * Collection of frame names. + * @type {string[]} + * @private + */ + this._frameKeys = Object.keys(this._frames); + + /** + * Current batch index being processed. + * @type {number} + * @private + */ + this._batchIndex = 0; + + /** + * Callback when parse is completed. + * @type {Function} + * @private + */ + this._callback = null; +}; + +var staticAccessors$4 = { BATCH_SIZE: { configurable: true } }; + +/** + * Generate the resolution from the filename or fallback + * to the meta.scale field of the JSON data. + * + * @private + * @param {string} resolutionFilename - The filename to use for resolving + * the default resolution. + * @return {number} Resolution to use for spritesheet. + */ +staticAccessors$4.BATCH_SIZE.get = function () +{ + return 1000; +}; + +Spritesheet.prototype._updateResolution = function _updateResolution (resolutionFilename) +{ + var scale = this.data.meta.scale; + + // Use a defaultValue of `null` to check if a url-based resolution is set + var resolution = getResolutionOfUrl(resolutionFilename, null); + + // No resolution found via URL + if (resolution === null) + { + // Use the scale value or default to 1 + resolution = scale !== undefined ? parseFloat(scale) : 1; + } + + // For non-1 resolutions, update baseTexture + if (resolution !== 1) + { + this.baseTexture.setResolution(resolution); + } + + return resolution; +}; + +/** + * Parser spritesheet from loaded data. This is done asynchronously + * to prevent creating too many Texture within a single process. + * + * @param {Function} callback - Callback when complete returns + * a map of the Textures for this spritesheet. + */ +Spritesheet.prototype.parse = function parse (callback) +{ + this._batchIndex = 0; + this._callback = callback; + + if (this._frameKeys.length <= Spritesheet.BATCH_SIZE) + { + this._processFrames(0); + this._processAnimations(); + this._parseComplete(); + } + else + { + this._nextBatch(); + } +}; + +/** + * Process a batch of frames + * + * @private + * @param {number} initialFrameIndex - The index of frame to start. + */ +Spritesheet.prototype._processFrames = function _processFrames (initialFrameIndex) +{ + var frameIndex = initialFrameIndex; + var maxFrames = Spritesheet.BATCH_SIZE; + + while (frameIndex - initialFrameIndex < maxFrames && frameIndex < this._frameKeys.length) + { + var i = this._frameKeys[frameIndex]; + var data = this._frames[i]; + var rect = data.frame; + + if (rect) + { + var frame = null; + var trim = null; + var sourceSize = data.trimmed !== false && data.sourceSize + ? data.sourceSize : data.frame; + + var orig = new Rectangle( + 0, + 0, + Math.floor(sourceSize.w) / this.resolution, + Math.floor(sourceSize.h) / this.resolution + ); + + if (data.rotated) + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.h) / this.resolution, + Math.floor(rect.w) / this.resolution + ); + } + else + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + // Check to see if the sprite is trimmed + if (data.trimmed !== false && data.spriteSourceSize) + { + trim = new Rectangle( + Math.floor(data.spriteSourceSize.x) / this.resolution, + Math.floor(data.spriteSourceSize.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + this.textures[i] = new Texture( + this.baseTexture, + frame, + orig, + trim, + data.rotated ? 2 : 0, + data.anchor + ); + + // lets also add the frame to pixi's global cache for 'from' and 'fromLoader' functions + Texture.addToCache(this.textures[i], i); + } + + frameIndex++; + } +}; + +/** + * Parse animations config + * + * @private + */ +Spritesheet.prototype._processAnimations = function _processAnimations () +{ + var animations = this.data.animations || {}; + + for (var animName in animations) + { + this.animations[animName] = []; + for (var i = 0; i < animations[animName].length; i++) + { + var frameName = animations[animName][i]; + + this.animations[animName].push(this.textures[frameName]); + } + } +}; + +/** + * The parse has completed. + * + * @private + */ +Spritesheet.prototype._parseComplete = function _parseComplete () +{ + var callback = this._callback; + + this._callback = null; + this._batchIndex = 0; + callback.call(this, this.textures); +}; + +/** + * Begin the next batch of textures. + * + * @private + */ +Spritesheet.prototype._nextBatch = function _nextBatch () +{ + var this$1 = this; + + this._processFrames(this._batchIndex * Spritesheet.BATCH_SIZE); + this._batchIndex++; + setTimeout(function () { + if (this$1._batchIndex * Spritesheet.BATCH_SIZE < this$1._frameKeys.length) + { + this$1._nextBatch(); + } + else + { + this$1._processAnimations(); + this$1._parseComplete(); + } + }, 0); +}; + +/** + * Destroy Spritesheet and don't use after this. + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ +Spritesheet.prototype.destroy = function destroy (destroyBase) +{ + if ( destroyBase === void 0 ) destroyBase = false; + + for (var i in this.textures) + { + this.textures[i].destroy(); + } + this._frames = null; + this._frameKeys = null; + this.data = null; + this.textures = null; + if (destroyBase) + { + this.baseTexture.destroy(); + } + this.baseTexture = null; +}; + +Object.defineProperties( Spritesheet, staticAccessors$4 ); + +/** + * {@link PIXI.Loader Loader} middleware for loading texture atlases that have been created with + * TexturePacker or similar JSON-based spritesheet. + * + * This middleware automatically generates Texture resources. + * + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var SpritesheetLoader = function SpritesheetLoader () {}; + +SpritesheetLoader.use = function use (resource, next) +{ + var imageResourceName = (resource.name) + "_image"; + + // skip if no data, its not json, it isn't spritesheet data, or the image resource already exists + if (!resource.data + || resource.type !== LoaderResource.TYPE.JSON + || !resource.data.frames + || this.resources[imageResourceName] + ) + { + next(); + + return; + } + + var loadOptions = { + crossOrigin: resource.crossOrigin, + metadata: resource.metadata.imageMetadata, + parentResource: resource, + }; + + var resourcePath = SpritesheetLoader.getResourcePath(resource, this.baseUrl); + + // load the image for this sheet + this.add(imageResourceName, resourcePath, loadOptions, function onImageLoad(res) + { + if (res.error) + { + next(res.error); + + return; + } + + var spritesheet = new Spritesheet( + res.texture.baseTexture, + resource.data, + resource.url + ); + + spritesheet.parse(function () { + resource.spritesheet = spritesheet; + resource.textures = spritesheet.textures; + next(); + }); + }); +}; + +/** + * Get the spritesheets root path + * @param {PIXI.LoaderResource} resource - Resource to check path + * @param {string} baseUrl - Base root url + */ +SpritesheetLoader.getResourcePath = function getResourcePath (resource, baseUrl) +{ + // Prepend url path unless the resource image is a data url + if (resource.isDataUrl) + { + return resource.data.meta.image; + } + + return url.resolve(resource.url.replace(baseUrl, ''), resource.data.meta.image); +}; + +/*! + * @pixi/sprite-tiling - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite-tiling is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$1 = new Point(); + +var vertex$2 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform mat3 uTransform;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = (uTransform * vec3(aTextureCoord, 1.0)).xy;\n}\n"; + +var fragment$2 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\nuniform mat3 uMapCoord;\nuniform vec4 uClampFrame;\nuniform vec2 uClampOffset;\n\nvoid main(void)\n{\n vec2 coord = mod(vTextureCoord - uClampOffset, vec2(1.0, 1.0)) + uClampOffset;\n coord = (uMapCoord * vec3(coord, 1.0)).xy;\n coord = clamp(coord, uClampFrame.xy, uClampFrame.zw);\n\n vec4 sample = texture2D(uSampler, coord);\n gl_FragColor = sample * uColor;\n}\n"; + +var fragmentSimple = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\n\nvoid main(void)\n{\n vec4 sample = texture2D(uSampler, vTextureCoord);\n gl_FragColor = sample * uColor;\n}\n"; + +var tempMat$1 = new Matrix(); + +/** + * WebGL renderer plugin for tiling sprites + * + * @class + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function TilingSpriteRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + var uniforms = { globals: this.renderer.globalUniforms }; + + this.shader = Shader.from(vertex$2, fragment$2, uniforms); + + this.simpleShader = Shader.from(vertex$2, fragmentSimple, uniforms); + + this.quad = new QuadUv(); + } + + if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer; + TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer; + + /** + * + * @param {PIXI.TilingSprite} ts tilingSprite to be rendered + */ + TilingSpriteRenderer.prototype.render = function render (ts) + { + var renderer = this.renderer; + var quad = this.quad; + + var vertices = quad.vertices; + + vertices[0] = vertices[6] = (ts._width) * -ts.anchor.x; + vertices[1] = vertices[3] = ts._height * -ts.anchor.y; + + vertices[2] = vertices[4] = (ts._width) * (1.0 - ts.anchor.x); + vertices[5] = vertices[7] = ts._height * (1.0 - ts.anchor.y); + + if (ts.uvRespectAnchor) + { + vertices = quad.uvs; + + vertices[0] = vertices[6] = -ts.anchor.x; + vertices[1] = vertices[3] = -ts.anchor.y; + + vertices[2] = vertices[4] = 1.0 - ts.anchor.x; + vertices[5] = vertices[7] = 1.0 - ts.anchor.y; + } + + quad.invalidate(); + + var tex = ts._texture; + var baseTex = tex.baseTexture; + var lt = ts.tileTransform.localTransform; + var uv = ts.uvMatrix; + var isSimple = baseTex.isPowerOfTwo + && tex.frame.width === baseTex.width && tex.frame.height === baseTex.height; + + // auto, force repeat wrapMode for big tiling textures + if (isSimple) + { + if (!baseTex._glTextures[renderer.CONTEXT_UID]) + { + if (baseTex.wrapMode === WRAP_MODES.CLAMP) + { + baseTex.wrapMode = WRAP_MODES.REPEAT; + } + } + else + { + isSimple = baseTex.wrapMode !== WRAP_MODES.CLAMP; + } + } + + var shader = isSimple ? this.simpleShader : this.shader; + + var w = tex.width; + var h = tex.height; + var W = ts._width; + var H = ts._height; + + tempMat$1.set(lt.a * w / W, + lt.b * w / H, + lt.c * h / W, + lt.d * h / H, + lt.tx / W, + lt.ty / H); + + // that part is the same as above: + // tempMat.identity(); + // tempMat.scale(tex.width, tex.height); + // tempMat.prepend(lt); + // tempMat.scale(1.0 / ts._width, 1.0 / ts._height); + + tempMat$1.invert(); + if (isSimple) + { + tempMat$1.prepend(uv.mapCoord); + } + else + { + shader.uniforms.uMapCoord = uv.mapCoord.toArray(true); + shader.uniforms.uClampFrame = uv.uClampFrame; + shader.uniforms.uClampOffset = uv.uClampOffset; + } + + shader.uniforms.uTransform = tempMat$1.toArray(true); + shader.uniforms.uColor = premultiplyTintToRgba(ts.tint, ts.worldAlpha, + shader.uniforms.uColor, baseTex.premultiplyAlpha); + shader.uniforms.translationMatrix = ts.transform.worldTransform.toArray(true); + shader.uniforms.uSampler = tex; + + renderer.shader.bind(shader); + renderer.geometry.bind(quad);// , renderer.shader.getGLShader()); + + renderer.state.setBlendMode(correctBlendMode(ts.blendMode, baseTex.premultiplyAlpha)); + renderer.geometry.draw(this.renderer.gl.TRIANGLES, 6, 0); + }; + + return TilingSpriteRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/text-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * A BitmapText object will create a line or multiple lines of text using bitmap font. + * + * The primary advantage of this class over Text is that all of your textures are pre-generated and loading, + * meaning that rendering is fast, and changing text has no performance implications. + * + * The primary disadvantage is that you need to preload the bitmap font assets, and thus the styling is set in stone. + * Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters. + * + * To split a line you can use '\n', '\r' or '\r\n' in your string. + * + * You can generate the fnt files using + * http://www.angelcode.com/products/bmfont/ for Windows or + * http://www.bmglyph.com/ for Mac. + * + * A BitmapText can only be created when the font is loaded. + * + * ```js + * // in this case the font is in a file called 'desyrel.fnt' + * let bitmapText = new PIXI.BitmapText("text using a fancy font!", {font: "35px Desyrel", align: "right"}); + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var BitmapText = /*@__PURE__*/(function (Container) { + function BitmapText(text, style) + { + var this$1 = this; + if ( style === void 0 ) style = {}; + + Container.call(this); + + /** + * Private tracker for the width of the overall text + * + * @member {number} + * @private + */ + this._textWidth = 0; + + /** + * Private tracker for the height of the overall text + * + * @member {number} + * @private + */ + this._textHeight = 0; + + /** + * Private tracker for the letter sprite pool. + * + * @member {PIXI.Sprite[]} + * @private + */ + this._glyphs = []; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._font = { + tint: style.tint !== undefined ? style.tint : 0xFFFFFF, + align: style.align || 'left', + name: null, + size: 0, + }; + + /** + * Private tracker for the current font. + * + * @member {object} + * @private + */ + this.font = style.font; // run font setter + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = text; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting value to 0 + * + * @member {number} + * @private + */ + this._maxWidth = 0; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * ie: when trying to vertically align. + * + * @member {number} + * @private + */ + this._maxLineHeight = 0; + + /** + * Letter spacing. This is useful for setting the space between characters. + * @member {number} + * @private + */ + this._letterSpacing = 0; + + /** + * Text anchor. read-only + * + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint(function () { this$1.dirty = true; }, this, 0, 0); + + /** + * The dirty state of this object. + * + * @member {boolean} + */ + this.dirty = false; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + this.roundPixels = settings.ROUND_PIXELS; + + this.updateText(); + } + + if ( Container ) BitmapText.__proto__ = Container; + BitmapText.prototype = Object.create( Container && Container.prototype ); + BitmapText.prototype.constructor = BitmapText; + + var prototypeAccessors = { tint: { configurable: true },align: { configurable: true },anchor: { configurable: true },font: { configurable: true },text: { configurable: true },maxWidth: { configurable: true },maxLineHeight: { configurable: true },textWidth: { configurable: true },letterSpacing: { configurable: true },textHeight: { configurable: true } }; + + /** + * Renders text and updates it when needed + * + * @private + */ + BitmapText.prototype.updateText = function updateText () + { + var data = BitmapText.fonts[this._font.name]; + var scale = this._font.size / data.size; + var pos = new Point(); + var chars = []; + var lineWidths = []; + var text = this._text.replace(/(?:\r\n|\r)/g, '\n') || ' '; + var textLength = text.length; + var maxWidth = this._maxWidth * data.size / this._font.size; + + var prevCharCode = null; + var lastLineWidth = 0; + var maxLineWidth = 0; + var line = 0; + var lastBreakPos = -1; + var lastBreakWidth = 0; + var spacesRemoved = 0; + var maxLineHeight = 0; + + for (var i = 0; i < textLength; i++) + { + var charCode = text.charCodeAt(i); + var char = text.charAt(i); + + if ((/(?:\s)/).test(char)) + { + lastBreakPos = i; + lastBreakWidth = lastLineWidth; + } + + if (char === '\r' || char === '\n') + { + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + ++line; + ++spacesRemoved; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + continue; + } + + var charData = data.chars[charCode]; + + if (!charData) + { + continue; + } + + if (prevCharCode && charData.kerning[prevCharCode]) + { + pos.x += charData.kerning[prevCharCode]; + } + + chars.push({ + texture: charData.texture, + line: line, + charCode: charCode, + position: new Point(pos.x + charData.xOffset + (this._letterSpacing / 2), pos.y + charData.yOffset), + }); + pos.x += charData.xAdvance + this._letterSpacing; + lastLineWidth = pos.x; + maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height)); + prevCharCode = charCode; + + if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth) + { + ++spacesRemoved; + removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos); + i = lastBreakPos; + lastBreakPos = -1; + + lineWidths.push(lastBreakWidth); + maxLineWidth = Math.max(maxLineWidth, lastBreakWidth); + line++; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + } + } + + var lastChar = text.charAt(text.length - 1); + + if (lastChar !== '\r' && lastChar !== '\n') + { + if ((/(?:\s)/).test(lastChar)) + { + lastLineWidth = lastBreakWidth; + } + + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + } + + var lineAlignOffsets = []; + + for (var i$1 = 0; i$1 <= line; i$1++) + { + var alignOffset = 0; + + if (this._font.align === 'right') + { + alignOffset = maxLineWidth - lineWidths[i$1]; + } + else if (this._font.align === 'center') + { + alignOffset = (maxLineWidth - lineWidths[i$1]) / 2; + } + + lineAlignOffsets.push(alignOffset); + } + + var lenChars = chars.length; + var tint = this.tint; + + for (var i$2 = 0; i$2 < lenChars; i$2++) + { + var c = this._glyphs[i$2]; // get the next glyph sprite + + if (c) + { + c.texture = chars[i$2].texture; + } + else + { + c = new Sprite(chars[i$2].texture); + c.roundPixels = this.roundPixels; + this._glyphs.push(c); + } + + c.position.x = (chars[i$2].position.x + lineAlignOffsets[chars[i$2].line]) * scale; + c.position.y = chars[i$2].position.y * scale; + c.scale.x = c.scale.y = scale; + c.tint = tint; + + if (!c.parent) + { + this.addChild(c); + } + } + + // remove unnecessary children. + for (var i$3 = lenChars; i$3 < this._glyphs.length; ++i$3) + { + this.removeChild(this._glyphs[i$3]); + } + + this._textWidth = maxLineWidth * scale; + this._textHeight = (pos.y + data.lineHeight) * scale; + + // apply anchor + if (this.anchor.x !== 0 || this.anchor.y !== 0) + { + for (var i$4 = 0; i$4 < lenChars; i$4++) + { + this._glyphs[i$4].x -= this._textWidth * this.anchor.x; + this._glyphs[i$4].y -= this._textHeight * this.anchor.y; + } + } + this._maxLineHeight = maxLineHeight * scale; + }; + + /** + * Updates the transform of this object + * + * @private + */ + BitmapText.prototype.updateTransform = function updateTransform () + { + this.validate(); + this.containerUpdateTransform(); + }; + + /** + * Validates text before calling parent's getLocalBounds + * + * @return {PIXI.Rectangle} The rectangular bounding area + */ + BitmapText.prototype.getLocalBounds = function getLocalBounds () + { + this.validate(); + + return Container.prototype.getLocalBounds.call(this); + }; + + /** + * Updates text when needed + * + * @private + */ + BitmapText.prototype.validate = function validate () + { + if (this.dirty) + { + this.updateText(); + this.dirty = false; + } + }; + + /** + * The tint of the BitmapText object. + * + * @member {number} + */ + prototypeAccessors.tint.get = function () + { + return this._font.tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.tint = (typeof value === 'number' && value >= 0) ? value : 0xFFFFFF; + + this.dirty = true; + }; + + /** + * The alignment of the BitmapText object. + * + * @member {string} + * @default 'left' + */ + prototypeAccessors.align.get = function () + { + return this._font.align; + }; + + prototypeAccessors.align.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.align = value || 'left'; + + this.dirty = true; + }; + + /** + * The anchor sets the origin point of the text. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * @member {PIXI.Point | number} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + if (typeof value === 'number') + { + this._anchor.set(value); + } + else + { + this._anchor.copyFrom(value); + } + }; + + /** + * The font descriptor of the BitmapText object. + * + * @member {object} + */ + prototypeAccessors.font.get = function () + { + return this._font; + }; + + prototypeAccessors.font.set = function (value) // eslint-disable-line require-jsdoc + { + if (!value) + { + return; + } + + if (typeof value === 'string') + { + value = value.split(' '); + + this._font.name = value.length === 1 ? value[0] : value.slice(1).join(' '); + this._font.size = value.length >= 2 ? parseInt(value[0], 10) : BitmapText.fonts[this._font.name].size; + } + else + { + this._font.name = value.name; + this._font.size = typeof value.size === 'number' ? value.size : parseInt(value.size, 10); + } + + this.dirty = true; + }; + + /** + * The text of the BitmapText object. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting the value to 0. + * + * @member {number} + */ + prototypeAccessors.maxWidth.get = function () + { + return this._maxWidth; + }; + + prototypeAccessors.maxWidth.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._maxWidth === value) + { + return; + } + this._maxWidth = value; + this.dirty = true; + }; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * i.e. when trying to vertically align. + * + * @member {number} + * @readonly + */ + prototypeAccessors.maxLineHeight.get = function () + { + this.validate(); + + return this._maxLineHeight; + }; + + /** + * The width of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textWidth.get = function () + { + this.validate(); + + return this._textWidth; + }; + + /** + * Additional space between characters. + * + * @member {number} + */ + prototypeAccessors.letterSpacing.get = function () + { + return this._letterSpacing; + }; + + prototypeAccessors.letterSpacing.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._letterSpacing !== value) + { + this._letterSpacing = value; + this.dirty = true; + } + }; + + /** + * The height of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textHeight.get = function () + { + this.validate(); + + return this._textHeight; + }; + + /** + * Register a bitmap font with data and a texture. + * + * @static + * @param {XMLDocument} xml - The XML document data. + * @param {Object.|PIXI.Texture|PIXI.Texture[]} textures - List of textures for each page. + * If providing an object, the key is the `` element's `file` attribute in the FNT file. + * @return {Object} Result font object with font, size, lineHeight and char fields. + */ + BitmapText.registerFont = function registerFont (xml, textures) + { + var data = {}; + var info = xml.getElementsByTagName('info')[0]; + var common = xml.getElementsByTagName('common')[0]; + var pages = xml.getElementsByTagName('page'); + var res = getResolutionOfUrl(pages[0].getAttribute('file'), settings.RESOLUTION); + var pagesTextures = {}; + + data.font = info.getAttribute('face'); + data.size = parseInt(info.getAttribute('size'), 10); + data.lineHeight = parseInt(common.getAttribute('lineHeight'), 10) / res; + data.chars = {}; + + // Single texture, convert to list + if (textures instanceof Texture) + { + textures = [textures]; + } + + // Convert the input Texture, Textures or object + // into a page Texture lookup by "id" + for (var i = 0; i < pages.length; i++) + { + var id = pages[i].getAttribute('id'); + var file = pages[i].getAttribute('file'); + + pagesTextures[id] = textures instanceof Array ? textures[i] : textures[file]; + } + + // parse letters + var letters = xml.getElementsByTagName('char'); + + for (var i$1 = 0; i$1 < letters.length; i$1++) + { + var letter = letters[i$1]; + var charCode = parseInt(letter.getAttribute('id'), 10); + var page = letter.getAttribute('page') || 0; + var textureRect = new Rectangle( + (parseInt(letter.getAttribute('x'), 10) / res) + (pagesTextures[page].frame.x / res), + (parseInt(letter.getAttribute('y'), 10) / res) + (pagesTextures[page].frame.y / res), + parseInt(letter.getAttribute('width'), 10) / res, + parseInt(letter.getAttribute('height'), 10) / res + ); + + data.chars[charCode] = { + xOffset: parseInt(letter.getAttribute('xoffset'), 10) / res, + yOffset: parseInt(letter.getAttribute('yoffset'), 10) / res, + xAdvance: parseInt(letter.getAttribute('xadvance'), 10) / res, + kerning: {}, + texture: new Texture(pagesTextures[page].baseTexture, textureRect), + page: page, + }; + } + + // parse kernings + var kernings = xml.getElementsByTagName('kerning'); + + for (var i$2 = 0; i$2 < kernings.length; i$2++) + { + var kerning = kernings[i$2]; + var first = parseInt(kerning.getAttribute('first'), 10) / res; + var second = parseInt(kerning.getAttribute('second'), 10) / res; + var amount = parseInt(kerning.getAttribute('amount'), 10) / res; + + if (data.chars[second]) + { + data.chars[second].kerning[first] = amount; + } + } + + // I'm leaving this as a temporary fix so we can test the bitmap fonts in v3 + // but it's very likely to change + BitmapText.fonts[data.font] = data; + + return data; + }; + + Object.defineProperties( BitmapText.prototype, prototypeAccessors ); + + return BitmapText; +}(Container)); + +BitmapText.fonts = {}; + +/** + * {@link PIXI.Loader Loader} middleware for loading + * bitmap-based fonts suitable for using with {@link PIXI.BitmapText}. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var BitmapFontLoader = function BitmapFontLoader () {}; + +BitmapFontLoader.parse = function parse (resource, texture) +{ + resource.bitmapFont = BitmapText.registerFont(resource.data, texture); +}; + +/** + * Called when the plugin is installed. + * + * @see PIXI.Loader.registerPlugin + */ +BitmapFontLoader.add = function add () +{ + LoaderResource.setExtensionXhrType('fnt', LoaderResource.XHR_RESPONSE_TYPE.DOCUMENT); +}; + +/** + * Replacement for NodeJS's path.dirname + * @private + * @param {string} url Path to get directory for + */ +BitmapFontLoader.dirname = function dirname (url) +{ + var dir = url + .replace(/\/$/, '') // replace trailing slash + .replace(/\/[^\/]*$/, ''); // remove everything after the last + + // File request is relative, use current directory + if (dir === url) + { + return '.'; + } + // Started with a slash + else if (dir === '') + { + return '/'; + } + + return dir; +}; + +/** + * Called after a resource is loaded. + * @see PIXI.Loader.loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ +BitmapFontLoader.use = function use (resource, next) +{ + // skip if no data or not xml data + if (!resource.data || resource.type !== LoaderResource.TYPE.XML) + { + next(); + + return; + } + + // skip if not bitmap font data, using some silly duck-typing + if (resource.data.getElementsByTagName('page').length === 0 + || resource.data.getElementsByTagName('info').length === 0 + || resource.data.getElementsByTagName('info')[0].getAttribute('face') === null + ) + { + next(); + + return; + } + + var xmlUrl = !resource.isDataUrl ? BitmapFontLoader.dirname(resource.url) : ''; + + if (resource.isDataUrl) + { + if (xmlUrl === '.') + { + xmlUrl = ''; + } + + if (this.baseUrl && xmlUrl) + { + // if baseurl has a trailing slash then add one to xmlUrl so the replace works below + if (this.baseUrl.charAt(this.baseUrl.length - 1) === '/') + { + xmlUrl += '/'; + } + } + } + + // remove baseUrl from xmlUrl + xmlUrl = xmlUrl.replace(this.baseUrl, ''); + + // if there is an xmlUrl now, it needs a trailing slash. Ensure that it does if the string isn't empty. + if (xmlUrl && xmlUrl.charAt(xmlUrl.length - 1) !== '/') + { + xmlUrl += '/'; + } + + var pages = resource.data.getElementsByTagName('page'); + var textures = {}; + + // Handle completed, when the number of textures + // load is the same number as references in the fnt file + var completed = function (page) { + textures[page.metadata.pageFile] = page.texture; + + if (Object.keys(textures).length === pages.length) + { + BitmapFontLoader.parse(resource, textures); + next(); + } + }; + + for (var i = 0; i < pages.length; ++i) + { + var pageFile = pages[i].getAttribute('file'); + var url = xmlUrl + pageFile; + var exists = false; + + // incase the image is loaded outside + // using the same loader, resource will be available + for (var name in this.resources) + { + var bitmapResource = this.resources[name]; + + if (bitmapResource.url === url) + { + bitmapResource.metadata.pageFile = pageFile; + if (bitmapResource.texture) + { + completed(bitmapResource); + } + else + { + bitmapResource.onAfterMiddleware.add(completed); + } + exists = true; + break; + } + } + + // texture is not loaded, we'll attempt to add + // it to the load and add the texture to the list + if (!exists) + { + // Standard loading options for images + var options = { + crossOrigin: resource.crossOrigin, + loadType: LoaderResource.LOAD_TYPE.IMAGE, + metadata: Object.assign( + { pageFile: pageFile }, + resource.metadata.imageMetadata + ), + parentResource: resource, + }; + + this.add(url, options, completed); + } + } +}; + +/*! + * @pixi/filter-color-matrix - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/filter-color-matrix is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var fragment$3 = "varying vec2 vTextureCoord;\nuniform sampler2D uSampler;\nuniform float m[20];\nuniform float uAlpha;\n\nvoid main(void)\n{\n vec4 c = texture2D(uSampler, vTextureCoord);\n\n if (uAlpha == 0.0) {\n gl_FragColor = c;\n return;\n }\n\n // Un-premultiply alpha before applying the color matrix. See issue #3539.\n if (c.a > 0.0) {\n c.rgb /= c.a;\n }\n\n vec4 result;\n\n result.r = (m[0] * c.r);\n result.r += (m[1] * c.g);\n result.r += (m[2] * c.b);\n result.r += (m[3] * c.a);\n result.r += m[4];\n\n result.g = (m[5] * c.r);\n result.g += (m[6] * c.g);\n result.g += (m[7] * c.b);\n result.g += (m[8] * c.a);\n result.g += m[9];\n\n result.b = (m[10] * c.r);\n result.b += (m[11] * c.g);\n result.b += (m[12] * c.b);\n result.b += (m[13] * c.a);\n result.b += m[14];\n\n result.a = (m[15] * c.r);\n result.a += (m[16] * c.g);\n result.a += (m[17] * c.b);\n result.a += (m[18] * c.a);\n result.a += m[19];\n\n vec3 rgb = mix(c.rgb, result.rgb, uAlpha);\n\n // Premultiply alpha again.\n rgb *= result.a;\n\n gl_FragColor = vec4(rgb, result.a);\n}\n"; + +/** + * The ColorMatrixFilter class lets you apply a 5x4 matrix transformation on the RGBA + * color and alpha values of every pixel on your displayObject to produce a result + * with a new set of RGBA color and alpha values. It's pretty powerful! + * + * ```js + * let colorMatrix = new PIXI.filters.ColorMatrixFilter(); + * container.filters = [colorMatrix]; + * colorMatrix.contrast(2); + * ``` + * @author Clément Chenebault + * @class + * @extends PIXI.Filter + * @memberof PIXI.filters + */ +var ColorMatrixFilter = /*@__PURE__*/(function (Filter) { + function ColorMatrixFilter() + { + var uniforms = { + m: new Float32Array([1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0]), + uAlpha: 1, + }; + + Filter.call(this, defaultFilter, fragment$3, uniforms); + + this.alpha = 1; + } + + if ( Filter ) ColorMatrixFilter.__proto__ = Filter; + ColorMatrixFilter.prototype = Object.create( Filter && Filter.prototype ); + ColorMatrixFilter.prototype.constructor = ColorMatrixFilter; + + var prototypeAccessors = { matrix: { configurable: true },alpha: { configurable: true } }; + + /** + * Transforms current matrix and set the new one + * + * @param {number[]} matrix - 5x4 matrix + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype._loadMatrix = function _loadMatrix (matrix, multiply) + { + if ( multiply === void 0 ) multiply = false; + + var newMatrix = matrix; + + if (multiply) + { + this._multiply(newMatrix, this.uniforms.m, matrix); + newMatrix = this._colorMatrix(newMatrix); + } + + // set the new matrix + this.uniforms.m = newMatrix; + }; + + /** + * Multiplies two mat5's + * + * @private + * @param {number[]} out - 5x4 matrix the receiving matrix + * @param {number[]} a - 5x4 matrix the first operand + * @param {number[]} b - 5x4 matrix the second operand + * @returns {number[]} 5x4 matrix + */ + ColorMatrixFilter.prototype._multiply = function _multiply (out, a, b) + { + // Red Channel + out[0] = (a[0] * b[0]) + (a[1] * b[5]) + (a[2] * b[10]) + (a[3] * b[15]); + out[1] = (a[0] * b[1]) + (a[1] * b[6]) + (a[2] * b[11]) + (a[3] * b[16]); + out[2] = (a[0] * b[2]) + (a[1] * b[7]) + (a[2] * b[12]) + (a[3] * b[17]); + out[3] = (a[0] * b[3]) + (a[1] * b[8]) + (a[2] * b[13]) + (a[3] * b[18]); + out[4] = (a[0] * b[4]) + (a[1] * b[9]) + (a[2] * b[14]) + (a[3] * b[19]) + a[4]; + + // Green Channel + out[5] = (a[5] * b[0]) + (a[6] * b[5]) + (a[7] * b[10]) + (a[8] * b[15]); + out[6] = (a[5] * b[1]) + (a[6] * b[6]) + (a[7] * b[11]) + (a[8] * b[16]); + out[7] = (a[5] * b[2]) + (a[6] * b[7]) + (a[7] * b[12]) + (a[8] * b[17]); + out[8] = (a[5] * b[3]) + (a[6] * b[8]) + (a[7] * b[13]) + (a[8] * b[18]); + out[9] = (a[5] * b[4]) + (a[6] * b[9]) + (a[7] * b[14]) + (a[8] * b[19]) + a[9]; + + // Blue Channel + out[10] = (a[10] * b[0]) + (a[11] * b[5]) + (a[12] * b[10]) + (a[13] * b[15]); + out[11] = (a[10] * b[1]) + (a[11] * b[6]) + (a[12] * b[11]) + (a[13] * b[16]); + out[12] = (a[10] * b[2]) + (a[11] * b[7]) + (a[12] * b[12]) + (a[13] * b[17]); + out[13] = (a[10] * b[3]) + (a[11] * b[8]) + (a[12] * b[13]) + (a[13] * b[18]); + out[14] = (a[10] * b[4]) + (a[11] * b[9]) + (a[12] * b[14]) + (a[13] * b[19]) + a[14]; + + // Alpha Channel + out[15] = (a[15] * b[0]) + (a[16] * b[5]) + (a[17] * b[10]) + (a[18] * b[15]); + out[16] = (a[15] * b[1]) + (a[16] * b[6]) + (a[17] * b[11]) + (a[18] * b[16]); + out[17] = (a[15] * b[2]) + (a[16] * b[7]) + (a[17] * b[12]) + (a[18] * b[17]); + out[18] = (a[15] * b[3]) + (a[16] * b[8]) + (a[17] * b[13]) + (a[18] * b[18]); + out[19] = (a[15] * b[4]) + (a[16] * b[9]) + (a[17] * b[14]) + (a[18] * b[19]) + a[19]; + + return out; + }; + + /** + * Create a Float32 Array and normalize the offset component to 0-1 + * + * @private + * @param {number[]} matrix - 5x4 matrix + * @return {number[]} 5x4 matrix with all values between 0-1 + */ + ColorMatrixFilter.prototype._colorMatrix = function _colorMatrix (matrix) + { + // Create a Float32 Array and normalize the offset component to 0-1 + var m = new Float32Array(matrix); + + m[4] /= 255; + m[9] /= 255; + m[14] /= 255; + m[19] /= 255; + + return m; + }; + + /** + * Adjusts brightness + * + * @param {number} b - value of the brigthness (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.brightness = function brightness (b, multiply) + { + var matrix = [ + b, 0, 0, 0, 0, + 0, b, 0, 0, 0, + 0, 0, b, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the matrices in grey scales + * + * @param {number} scale - value of the grey (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.greyscale = function greyscale (scale, multiply) + { + var matrix = [ + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the black and white matrice. + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.blackAndWhite = function blackAndWhite (multiply) + { + var matrix = [ + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the hue property of the color + * + * @param {number} rotation - in degrees + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.hue = function hue (rotation, multiply) + { + rotation = (rotation || 0) / 180 * Math.PI; + + var cosR = Math.cos(rotation); + var sinR = Math.sin(rotation); + var sqrt = Math.sqrt; + + /* a good approximation for hue rotation + This matrix is far better than the versions with magic luminance constants + formerly used here, but also used in the starling framework (flash) and known from this + old part of the internet: quasimondo.com/archives/000565.php + + This new matrix is based on rgb cube rotation in space. Look here for a more descriptive + implementation as a shader not a general matrix: + https://github.com/evanw/glfx.js/blob/58841c23919bd59787effc0333a4897b43835412/src/filters/adjust/huesaturation.js + + This is the source for the code: + see http://stackoverflow.com/questions/8507885/shift-hue-of-an-rgb-color/8510751#8510751 + */ + + var w = 1 / 3; + var sqrW = sqrt(w); // weight is + + var a00 = cosR + ((1.0 - cosR) * w); + var a01 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a02 = (w * (1.0 - cosR)) + (sqrW * sinR); + + var a10 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a11 = cosR + (w * (1.0 - cosR)); + var a12 = (w * (1.0 - cosR)) - (sqrW * sinR); + + var a20 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a21 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a22 = cosR + (w * (1.0 - cosR)); + + var matrix = [ + a00, a01, a02, 0, 0, + a10, a11, a12, 0, 0, + a20, a21, a22, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the contrast matrix, increase the separation between dark and bright + * Increase contrast : shadows darker and highlights brighter + * Decrease contrast : bring the shadows up and the highlights down + * + * @param {number} amount - value of the contrast (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.contrast = function contrast (amount, multiply) + { + var v = (amount || 0) + 1; + var o = -0.5 * (v - 1); + + var matrix = [ + v, 0, 0, 0, o, + 0, v, 0, 0, o, + 0, 0, v, 0, o, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the saturation matrix, increase the separation between colors + * Increase saturation : increase contrast, brightness, and sharpness + * + * @param {number} amount - The saturation amount (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.saturate = function saturate (amount, multiply) + { + if ( amount === void 0 ) amount = 0; + + var x = (amount * 2 / 3) + 1; + var y = ((x - 1) * -0.5); + + var matrix = [ + x, y, y, 0, 0, + y, x, y, 0, 0, + y, y, x, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Desaturate image (remove color) + * + * Call the saturate function + * + */ + ColorMatrixFilter.prototype.desaturate = function desaturate () // eslint-disable-line no-unused-vars + { + this.saturate(-1); + }; + + /** + * Negative image (inverse of classic rgb matrix) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.negative = function negative (multiply) + { + var matrix = [ + -1, 0, 0, 1, 0, + 0, -1, 0, 1, 0, + 0, 0, -1, 1, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Sepia image + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.sepia = function sepia (multiply) + { + var matrix = [ + 0.393, 0.7689999, 0.18899999, 0, 0, + 0.349, 0.6859999, 0.16799999, 0, 0, + 0.272, 0.5339999, 0.13099999, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color motion picture process invented in 1916 (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.technicolor = function technicolor (multiply) + { + var matrix = [ + 1.9125277891456083, -0.8545344976951645, -0.09155508482755585, 0, 11.793603434377337, + -0.3087833385928097, 1.7658908555458428, -0.10601743074722245, 0, -70.35205161461398, + -0.231103377548616, -0.7501899197440212, 1.847597816108189, 0, 30.950940869491138, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Polaroid filter + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.polaroid = function polaroid (multiply) + { + var matrix = [ + 1.438, -0.062, -0.062, 0, 0, + -0.122, 1.378, -0.122, 0, 0, + -0.016, -0.016, 1.483, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Filter who transforms : Red -> Blue and Blue -> Red + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.toBGR = function toBGR (multiply) + { + var matrix = [ + 0, 0, 1, 0, 0, + 0, 1, 0, 0, 0, + 1, 0, 0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color reversal film introduced by Eastman Kodak in 1935. (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.kodachrome = function kodachrome (multiply) + { + var matrix = [ + 1.1285582396593525, -0.3967382283601348, -0.03992559172921793, 0, 63.72958762196502, + -0.16404339962244616, 1.0835251566291304, -0.05498805115633132, 0, 24.732407896706203, + -0.16786010706155763, -0.5603416277695248, 1.6014850761964943, 0, 35.62982807460946, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Brown delicious browni filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.browni = function browni (multiply) + { + var matrix = [ + 0.5997023498159715, 0.34553243048391263, -0.2708298674538042, 0, 47.43192855600873, + -0.037703249837783157, 0.8609577587992641, 0.15059552388459913, 0, -36.96841498319127, + 0.24113635128153335, -0.07441037908422492, 0.44972182064877153, 0, -7.562075277591283, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Vintage filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.vintage = function vintage (multiply) + { + var matrix = [ + 0.6279345635605994, 0.3202183420819367, -0.03965408211312453, 0, 9.651285835294123, + 0.02578397704808868, 0.6441188644374771, 0.03259127616149294, 0, 7.462829176470591, + 0.0466055556782719, -0.0851232987247891, 0.5241648018700465, 0, 5.159190588235296, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * We don't know exactly what it does, kind of gradient map, but funny to play with! + * + * @param {number} desaturation - Tone values. + * @param {number} toned - Tone values. + * @param {string} lightColor - Tone values, example: `0xFFE580` + * @param {string} darkColor - Tone values, example: `0xFFE580` + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.colorTone = function colorTone (desaturation, toned, lightColor, darkColor, multiply) + { + desaturation = desaturation || 0.2; + toned = toned || 0.15; + lightColor = lightColor || 0xFFE580; + darkColor = darkColor || 0x338000; + + var lR = ((lightColor >> 16) & 0xFF) / 255; + var lG = ((lightColor >> 8) & 0xFF) / 255; + var lB = (lightColor & 0xFF) / 255; + + var dR = ((darkColor >> 16) & 0xFF) / 255; + var dG = ((darkColor >> 8) & 0xFF) / 255; + var dB = (darkColor & 0xFF) / 255; + + var matrix = [ + 0.3, 0.59, 0.11, 0, 0, + lR, lG, lB, desaturation, 0, + dR, dG, dB, toned, 0, + lR - dR, lG - dG, lB - dB, 0, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Night effect + * + * @param {number} intensity - The intensity of the night effect. + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.night = function night (intensity, multiply) + { + intensity = intensity || 0.1; + var matrix = [ + intensity * (-2.0), -intensity, 0, 0, 0, + -intensity, 0, intensity, 0, 0, + 0, intensity, intensity * 2.0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Predator effect + * + * Erase the current matrix by setting a new indepent one + * + * @param {number} amount - how much the predator feels his future victim + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.predator = function predator (amount, multiply) + { + var matrix = [ + // row 1 + 11.224130630493164 * amount, + -4.794486999511719 * amount, + -2.8746118545532227 * amount, + 0 * amount, + 0.40342438220977783 * amount, + // row 2 + -3.6330697536468506 * amount, + 9.193157196044922 * amount, + -2.951810836791992 * amount, + 0 * amount, + -1.316135048866272 * amount, + // row 3 + -3.2184197902679443 * amount, + -4.2375030517578125 * amount, + 7.476448059082031 * amount, + 0 * amount, + 0.8044459223747253 * amount, + // row 4 + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * LSD effect + * + * Multiply the current matrix + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.lsd = function lsd (multiply) + { + var matrix = [ + 2, -0.4, 0.5, 0, 0, + -0.5, 2, -0.4, 0, 0, + -0.4, -0.5, 3, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Erase the current matrix by setting the default one + * + */ + ColorMatrixFilter.prototype.reset = function reset () + { + var matrix = [ + 1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, false); + }; + + /** + * The matrix of the color matrix filter + * + * @member {number[]} + * @default [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0] + */ + prototypeAccessors.matrix.get = function () + { + return this.uniforms.m; + }; + + prototypeAccessors.matrix.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.m = value; + }; + + /** + * The opacity value to use when mixing the original and resultant colors. + * + * When the value is 0, the original color is used without modification. + * When the value is 1, the result color is used. + * When in the range (0, 1) the color is interpolated between the original and result by this amount. + * + * @member {number} + * @default 1 + */ + prototypeAccessors.alpha.get = function () + { + return this.uniforms.uAlpha; + }; + + prototypeAccessors.alpha.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.uAlpha = value; + }; + + Object.defineProperties( ColorMatrixFilter.prototype, prototypeAccessors ); + + return ColorMatrixFilter; +}(Filter)); + +// Americanized alias +ColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale; + +/*! + * @pixi/mixin-cache-as-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mixin-cache-as-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var _tempMatrix = new Matrix(); + +DisplayObject.prototype._cacheAsBitmap = false; +DisplayObject.prototype._cacheData = false; + +// figured theres no point adding ALL the extra variables to prototype. +// this model can hold the information needed. This can also be generated on demand as +// most objects are not cached as bitmaps. +/** + * @class + * @ignore + */ +var CacheData = function CacheData() +{ + this.textureCacheId = null; + + this.originalRender = null; + this.originalRenderCanvas = null; + this.originalCalculateBounds = null; + this.originalGetLocalBounds = null; + + this.originalUpdateTransform = null; + this.originalHitTest = null; + this.originalDestroy = null; + this.originalMask = null; + this.originalFilterArea = null; + this.sprite = null; +}; + +Object.defineProperties(DisplayObject.prototype, { + /** + * Set this to true if you want this display object to be cached as a bitmap. + * This basically takes a snap shot of the display object as it is at that moment. It can + * provide a performance benefit for complex static displayObjects. + * To remove simply set this property to `false` + * + * IMPORTANT GOTCHA - Make sure that all your textures are preloaded BEFORE setting this property to true + * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear. + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + cacheAsBitmap: { + get: function get() + { + return this._cacheAsBitmap; + }, + set: function set(value) + { + if (this._cacheAsBitmap === value) + { + return; + } + + this._cacheAsBitmap = value; + + var data; + + if (value) + { + if (!this._cacheData) + { + this._cacheData = new CacheData(); + } + + data = this._cacheData; + + data.originalRender = this.render; + data.originalRenderCanvas = this.renderCanvas; + + data.originalUpdateTransform = this.updateTransform; + data.originalCalculateBounds = this.calculateBounds; + data.originalGetLocalBounds = this.getLocalBounds; + + data.originalDestroy = this.destroy; + + data.originalContainsPoint = this.containsPoint; + + data.originalMask = this._mask; + data.originalFilterArea = this.filterArea; + + this.render = this._renderCached; + this.renderCanvas = this._renderCachedCanvas; + + this.destroy = this._cacheAsBitmapDestroy; + } + else + { + data = this._cacheData; + + if (data.sprite) + { + this._destroyCachedDisplayObject(); + } + + this.render = data.originalRender; + this.renderCanvas = data.originalRenderCanvas; + this.calculateBounds = data.originalCalculateBounds; + this.getLocalBounds = data.originalGetLocalBounds; + + this.destroy = data.originalDestroy; + + this.updateTransform = data.originalUpdateTransform; + this.containsPoint = data.originalContainsPoint; + + this._mask = data.originalMask; + this.filterArea = data.originalFilterArea; + } + }, + }, +}); + +/** + * Renders a cached version of the sprite with WebGL + * + * @private + * @function _renderCached + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCached = function _renderCached(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObject(renderer); + + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._render(renderer); +}; + +/** + * Prepares the WebGL renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObject + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObject = function _initCachedDisplayObject(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // make sure alpha is set to 1 otherwise it will get rendered as invisible! + var cacheAlpha = this.alpha; + + this.alpha = 1; + + // first we flush anything left in the renderer (otherwise it would get rendered to the cached texture) + renderer.batch.flush(); + // this.filters= []; + + // next we find the dimensions of the untransformed object + // this function also calls updatetransform on all its children as part of the measuring. + // This means we don't need to update the transform again in this function + // TODO pass an object to clone too? saves having to create a new one each time! + var bounds = this.getLocalBounds().clone(); + + // add some padding! + if (this.filters) + { + var padding = this.filters[0].padding; + + bounds.pad(padding); + } + + bounds.ceil(settings.RESOLUTION); + + // for now we cache the current renderTarget that the WebGL renderer is currently using. + // this could be more elegant.. + var cachedRenderTexture = renderer.renderTexture.current; + var cachedSourceFrame = renderer.renderTexture.sourceFrame; + var cachedProjectionTransform = renderer.projection.transform; + + // We also store the filter stack - I will definitely look to change how this works a little later down the line. + // const stack = renderer.filterManager.filterStack; + + // this renderTexture will be used to store the cached DisplayObject + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + m.tx = -bounds.x; + m.ty = -bounds.y; + + // reset + this.transform.worldTransform.identity(); + + // set all properties to there original so we can render to a texture + this.render = this._cacheData.originalRender; + + renderer.render(this, renderTexture, true, m, true); + + // now restore the state be setting the new properties + renderer.projection.transform = cachedProjectionTransform; + renderer.renderTexture.bind(cachedRenderTexture, cachedSourceFrame); + + // renderer.filterManager.filterStack = stack; + + this.render = this._renderCached; + // the rest is the same as for Canvas + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Renders a cached version of the sprite with canvas + * + * @private + * @function _renderCachedCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCachedCanvas = function _renderCachedCanvas(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObjectCanvas(renderer); + + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._renderCanvas(renderer); +}; + +// TODO this can be the same as the WebGL version.. will need to do a little tweaking first though.. +/** + * Prepares the Canvas renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObjectCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObjectCanvas = function _initCachedDisplayObjectCanvas(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // get bounds actually transforms the object for us already! + var bounds = this.getLocalBounds(); + + var cacheAlpha = this.alpha; + + this.alpha = 1; + + var cachedRenderTarget = renderer.context; + + bounds.ceil(settings.RESOLUTION); + + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + this.transform.localTransform.copyTo(m); + m.invert(); + + m.tx -= bounds.x; + m.ty -= bounds.y; + + // m.append(this.transform.worldTransform.) + // set all properties to there original so we can render to a texture + this.renderCanvas = this._cacheData.originalRenderCanvas; + + // renderTexture.render(this, m, true); + renderer.render(this, renderTexture, true, m, false); + + // now restore the state be setting the new properties + renderer.context = cachedRenderTarget; + + this.renderCanvas = this._renderCachedCanvas; + // the rest is the same as for WebGL + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Calculates the bounds of the cached sprite + * + * @private + */ +DisplayObject.prototype._calculateCachedBounds = function _calculateCachedBounds() +{ + this._bounds.clear(); + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite._calculateBounds(); + this._lastBoundsID = this._boundsID; +}; + +/** + * Gets the bounds of the cached sprite. + * + * @private + * @return {Rectangle} The local bounds. + */ +DisplayObject.prototype._getCachedLocalBounds = function _getCachedLocalBounds() +{ + return this._cacheData.sprite.getLocalBounds(); +}; + +/** + * Destroys the cached sprite. + * + * @private + */ +DisplayObject.prototype._destroyCachedDisplayObject = function _destroyCachedDisplayObject() +{ + this._cacheData.sprite._texture.destroy(true); + this._cacheData.sprite = null; + + BaseTexture.removeFromCache(this._cacheData.textureCacheId); + Texture.removeFromCache(this._cacheData.textureCacheId); + + this._cacheData.textureCacheId = null; +}; + +/** + * Destroys the cached object. + * + * @private + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value. + * Used when destroying containers, see the Container.destroy method. + */ +DisplayObject.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy(options) +{ + this.cacheAsBitmap = false; + this.destroy(options); +}; + +/*! + * @pixi/mixin-get-child-by-name - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-child-by-name is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The instance name of the object. + * + * @memberof PIXI.DisplayObject# + * @member {string} name + */ +DisplayObject.prototype.name = null; + +/** + * Returns the display object in the container. + * + * @method getChildByName + * @memberof PIXI.Container# + * @param {string} name - Instance name. + * @return {PIXI.DisplayObject} The child with the specified name. + */ +Container.prototype.getChildByName = function getChildByName(name) +{ + for (var i = 0; i < this.children.length; i++) + { + if (this.children[i].name === name) + { + return this.children[i]; + } + } + + return null; +}; + +/*! + * @pixi/mixin-get-global-position - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-global-position is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Returns the global position of the displayObject. Does not depend on object scale, rotation and pivot. + * + * @method getGlobalPosition + * @memberof PIXI.DisplayObject# + * @param {PIXI.Point} [point=new PIXI.Point()] - The point to write the global value to. + * @param {boolean} [skipUpdate=false] - Setting to true will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @return {PIXI.Point} The updated point. + */ +DisplayObject.prototype.getGlobalPosition = function getGlobalPosition(point, skipUpdate) +{ + if ( point === void 0 ) point = new Point(); + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (this.parent) + { + this.parent.toGlobal(this.position, point, skipUpdate); + } + else + { + point.x = this.position.x; + point.y = this.position.y; + } + + return point; +}; + +/*! + * @pixi/mesh - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mesh is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$2 = new Point(); +var tempPolygon = new Polygon(); + +/*! + * pixi.js - v5.1.4 + * Compiled Sat, 21 Sep 2019 07:35:21 UTC + * + * pixi.js is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Install renderer plugins +Renderer.registerPlugin('accessibility', AccessibilityManager); +Renderer.registerPlugin('extract', Extract); +Renderer.registerPlugin('interaction', InteractionManager); +Renderer.registerPlugin('particle', ParticleRenderer); +Renderer.registerPlugin('prepare', Prepare); +Renderer.registerPlugin('batch', BatchRenderer); +Renderer.registerPlugin('tilingSprite', TilingSpriteRenderer); + +Loader$1.registerPlugin(BitmapFontLoader); +Loader$1.registerPlugin(SpritesheetLoader); + +Application.registerPlugin(TickerPlugin); +Application.registerPlugin(AppLoaderPlugin); + +function fromConstructor(constr) { + return constr; +} + +let clipboard_text = ""; +const contexts = []; +const contextIOs = []; +class ImGuiImplInternalRenderer extends ObjectRenderer { + constructor(r) { + super(r); + } + render(owner) { + if (!(owner instanceof ImGuiWindowLayer)) + return; + const window = owner.window; + const io = window.io; + const draw_data = GetDrawData(); + if (draw_data === null) { + throw new Error(); + } + gl || console.log(draw_data); + // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) + const fb_width = io.DisplaySize.x * io.DisplayFramebufferScale.x; + const fb_height = io.DisplaySize.y * io.DisplayFramebufferScale.y; + if (fb_width === 0 || fb_height === 0) { + return; + } + draw_data.ScaleClipRects(io.DisplayFramebufferScale); + // Backup GL state + const last_program = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null; + const last_active_texture = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null; + gl && gl.activeTexture(gl.TEXTURE0); + const last_texture0 = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null; + const last_vertex_array = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null; + const last_array_buffer = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null; + const last_element_array_buffer = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null; + // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode); + const last_viewport = gl && gl.getParameter(gl.VIEWPORT) || null; + const last_scissor_box = gl && gl.getParameter(gl.SCISSOR_BOX) || null; + const last_blend_src_rgb = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null; + const last_blend_dst_rgb = gl && gl.getParameter(gl.BLEND_DST_RGB) || null; + const last_blend_src_alpha = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null; + const last_blend_dst_alpha = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null; + const last_blend_equation_rgb = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null; + const last_blend_equation_alpha = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null; + const last_enable_blend = gl && gl.getParameter(gl.BLEND) || null; + const last_enable_cull_face = gl && gl.getParameter(gl.CULL_FACE) || null; + const last_enable_depth_test = gl && gl.getParameter(gl.DEPTH_TEST) || null; + const last_enable_scissor_test = gl && gl.getParameter(gl.SCISSOR_TEST) || null; + gl.clearColor(0, 0, 0, 0); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl && gl.bindVertexArray(g_VaoHandle); + // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill + gl && gl.enable(gl.BLEND); + gl && gl.blendEquation(gl.FUNC_ADD); + gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE); + gl && gl.disable(gl.CULL_FACE); + gl && gl.disable(gl.DEPTH_TEST); + gl && gl.enable(gl.SCISSOR_TEST); + // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + // Setup viewport, orthographic projection matrix + // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps. + gl && gl.viewport(0, 0, fb_width, fb_height); + const L = draw_data.DisplayPos.x; + const R = draw_data.DisplayPos.x + draw_data.DisplaySize.x; + const T = draw_data.DisplayPos.y; + const B = draw_data.DisplayPos.y + draw_data.DisplaySize.y; + // we actually flip the bottom and top here to match with PIXI's texture usage + const ortho_projection = new Float32Array([ + 2.0 / (R - L), 0.0, 0.0, 0.0, + 0.0, 2.0 / (B - T), 0.0, 0.0, + 0.0, 0.0, -1.0, 0.0, + (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0, + ]); + gl && gl.useProgram(g_ShaderHandle); + gl && gl.uniform1i(g_AttribLocationTex, 0); + gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection); + // Render command lists + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.enableVertexAttribArray(g_AttribLocationPosition); + gl && gl.enableVertexAttribArray(g_AttribLocationUV); + gl && gl.enableVertexAttribArray(g_AttribLocationColor); + gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertPosOffset); + gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertUVOffset); + gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImDrawVertSize, ImDrawVertColOffset); + // Draw + const pos = draw_data.DisplayPos; + const idx_buffer_type = gl && ( gl.UNSIGNED_SHORT) || 0; + draw_data.IterateDrawLists((draw_list) => { + gl || console.log(draw_list); + gl || console.log("VtxBuffer.length", draw_list.VtxBuffer.length); + gl || console.log("IdxBuffer.length", draw_list.IdxBuffer.length); + let idx_buffer_offset = 0; + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW); + gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle); + gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW); + draw_list.IterateDrawCmds((draw_cmd) => { + gl || console.log(draw_cmd); + gl || console.log("ElemCount", draw_cmd.ElemCount); + gl || console.log("ClipRect", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y); + gl || console.log("TextureId", draw_cmd.TextureId); + if (!gl) { + console.log("i: pos.x pos.y uv.x uv.y col"); + for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) { + const view = new ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImDrawVertSize); + console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${("00000000" + view.col[0].toString(16)).substr(-8)}`); + } + } + if (draw_cmd.UserCallback !== null) { + // User callback (registered via ImDrawList::AddCallback) + draw_cmd.UserCallback(draw_list, draw_cmd); + } + else { + const clip_rect = new ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y); + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) { + // Apply scissor/clipping rectangle + gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y); + // Bind texture, Draw + gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId); + gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset); + } + } + idx_buffer_offset += draw_cmd.ElemCount * ImDrawIdxSize; + }); + }); + // Restore modified GL state + gl && (last_program !== null) && gl.useProgram(last_program); + gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0); + gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture); + gl && gl.disableVertexAttribArray(g_AttribLocationPosition); + gl && gl.disableVertexAttribArray(g_AttribLocationUV); + gl && gl.disableVertexAttribArray(g_AttribLocationColor); + gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array); + gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer); + gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer); + gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]); + gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]); + gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha); + gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); + gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND)); + gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE)); + gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST)); + gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST)); + // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]); + } +} +let gl = null; +let app = null; +class ImGuiWindowLayer extends Sprite { + constructor(window, tex) { + super(); + this.pluginName = "imgui_renderer"; + this.window = window; + } +} +class ImGuiWindow extends Container { + constructor(sizeX, sizeY, update) { + super(); + this.baseTex = new BaseRenderTexture({ scaleMode: SCALE_MODES.LINEAR, resolution: 1, type: TYPES.FLOAT, format: FORMATS.RGBA }); + this.tex = new RenderTexture(this.baseTex); + this.surface = new Sprite(this.tex); + this.imgui = new ImGuiWindowLayer(this, this.tex); + this.ctx = CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts); + SetCurrentContext(this.ctx); + this.io = GetIO(); + contexts.push(this.ctx); + contextIOs.push(this.io); + if (contexts.length == 1) { + CreateFontsTexture(); + } + if (typeof (window) !== "undefined") { + LoadIniSettingsFromMemory(window.localStorage.getItem("imgui.ini") || ""); + } + if (typeof (navigator) !== "undefined") { + this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null; + } + this.io.SetClipboardTextFn = (user_data, text) => { + clipboard_text = text; + // console.log(`set clipboard_text: "${clipboard_text}"`); + if (typeof navigator !== "undefined" && typeof navigator.clipboard !== "undefined") { + // console.log(`clipboard.writeText: "${clipboard_text}"`); + navigator.clipboard.writeText(clipboard_text).then(() => { + // console.log(`clipboard.writeText: "${clipboard_text}" done.`); + }); + } + }; + this.io.GetClipboardTextFn = (user_data) => { + // if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.readText: "${clipboard_text}"`); + // (navigator as any).clipboard.readText().then((text: string): void => { + // clipboard_text = text; + // console.log(`clipboard.readText: "${clipboard_text}" done.`); + // }); + // } + // console.log(`get clipboard_text: "${clipboard_text}"`); + return clipboard_text; + }; + this.io.ClipboardUserData = null; + // Setup back-end capabilities flags + this.io.BackendFlags |= ImGuiBackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional) + // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array. + this.io.KeyMap[ImGuiKey.Tab] = 9; + this.io.KeyMap[ImGuiKey.LeftArrow] = 37; + this.io.KeyMap[ImGuiKey.RightArrow] = 39; + this.io.KeyMap[ImGuiKey.UpArrow] = 38; + this.io.KeyMap[ImGuiKey.DownArrow] = 40; + this.io.KeyMap[ImGuiKey.PageUp] = 33; + this.io.KeyMap[ImGuiKey.PageDown] = 34; + this.io.KeyMap[ImGuiKey.Home] = 36; + this.io.KeyMap[ImGuiKey.End] = 35; + this.io.KeyMap[ImGuiKey.Insert] = 45; + this.io.KeyMap[ImGuiKey.Delete] = 46; + this.io.KeyMap[ImGuiKey.Backspace] = 8; + this.io.KeyMap[ImGuiKey.Space] = 32; + this.io.KeyMap[ImGuiKey.Enter] = 13; + this.io.KeyMap[ImGuiKey.Escape] = 27; + this.io.KeyMap[ImGuiKey.A] = 65; + this.io.KeyMap[ImGuiKey.C] = 67; + this.io.KeyMap[ImGuiKey.V] = 86; + this.io.KeyMap[ImGuiKey.X] = 88; + this.io.KeyMap[ImGuiKey.Y] = 89; + this.io.KeyMap[ImGuiKey.Z] = 90; + this.update = update; + this.resize(sizeX, sizeY); + this.imgui.pluginName = 'imgui_renderer'; + this.addChild(this.surface); + app.renderer.plugins.interaction.addListener("mousedown", this.mouseDown.bind(this)); + app.renderer.plugins.interaction.addListener("mouseup", this.mouseUp.bind(this)); + app.ticker.add(this.updateInternal.bind(this)); + this.interactive = false; + this.interactiveChildren = true; + this.surface.interactive = false; + } + getSizeX() { return this.sizeX; } + getSizeY() { return this.sizeY; } + withContext(cb) { + SetCurrentContext(this.ctx); + cb(); + } + mouseDown(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = true; + } + } + mouseUp(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = false; + } + } + resize(sizeX, sizeY) { + this.sizeX = sizeX; + this.sizeY = sizeY; + this.baseTex.resize(sizeX, sizeY); + this.tex.frame = new Rectangle(0, 0, this.baseTex.width, this.baseTex.height); + } + updateInternal(deltaTime) { + const dt = deltaTime * 1 / (1000 * settings.TARGET_FPMS); + SetCurrentContext(this.ctx); + if (this.io.WantSaveIniSettings) { + this.io.WantSaveIniSettings = false; + if (typeof (window) !== "undefined") { + window.localStorage.setItem("imgui.ini", SaveIniSettingsToMemory()); + } + } + this.io.DisplaySize.x = this.sizeX; + this.io.DisplaySize.y = this.sizeY; + this.io.DisplayFramebufferScale.x = 1; + this.io.DisplayFramebufferScale.y = 1; + this.io.DeltaTime = dt; + let localPos = this.toLocal(app.renderer.plugins.interaction.mouse.global); + if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY) { + localPos = new Point(-Number.MAX_VALUE, -Number.MAX_VALUE); + } + this.io.MousePos.x = localPos.x; + this.io.MousePos.y = localPos.y; + if (this.io.WantSetMousePos) { + console.log("TODO: MousePos", this.io.MousePos.x, this.io.MousePos.y); + } + if (typeof (document) !== "undefined") { + if (this.io.MouseDrawCursor) { + document.body.style.cursor = "none"; + } + else { + switch (GetMouseCursor()) { + case ImGuiMouseCursor.None: + document.body.style.cursor = "none"; + break; + default: + case ImGuiMouseCursor.Arrow: + document.body.style.cursor = "default"; + break; + case ImGuiMouseCursor.TextInput: + document.body.style.cursor = "text"; + break; // When hovering over InputText, etc. + case ImGuiMouseCursor.ResizeAll: + document.body.style.cursor = "move"; + break; // Unused + case ImGuiMouseCursor.ResizeNS: + document.body.style.cursor = "ns-resize"; + break; // When hovering over an horizontal border + case ImGuiMouseCursor.ResizeEW: + document.body.style.cursor = "ew-resize"; + break; // When hovering over a vertical border or a column + case ImGuiMouseCursor.ResizeNESW: + document.body.style.cursor = "nesw-resize"; + break; // When hovering over the bottom-left corner of a window + case ImGuiMouseCursor.ResizeNWSE: + document.body.style.cursor = "nwse-resize"; + break; // When hovering over the bottom-right corner of a window + case ImGuiMouseCursor.Hand: + document.body.style.cursor = "move"; + break; + } + } + } + // Gamepad navigation mapping [BETA] + for (let i = 0; i < this.io.NavInputs.length; ++i) { + this.io.NavInputs[i] = 0.0; + } + if (this.io.ConfigFlags & ImGuiConfigFlags.NavEnableGamepad) { + // Update gamepad inputs + const gamepads = (typeof (navigator) !== "undefined" && typeof (navigator.getGamepads) === "function") ? navigator.getGamepads() : []; + for (let i = 0; i < gamepads.length; ++i) { + const gamepad = gamepads[i]; + if (!gamepad) { + continue; + } + const buttons_count = gamepad.buttons.length; + const axes_count = gamepad.axes.length; + const MAP_BUTTON = function (NAV_NO, BUTTON_NO) { + if (!gamepad) { + return; + } + if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed) + this.io.NavInputs[NAV_NO] = 1.0; + }; + const MAP_ANALOG = function (NAV_NO, AXIS_NO, V0, V1) { + if (!gamepad) { + return; + } + let v = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0; + v = (v - V0) / (V1 - V0); + if (v > 1.0) + v = 1.0; + if (this.io.NavInputs[NAV_NO] < v) + this.io.NavInputs[NAV_NO] = v; + }; + // TODO: map input based on vendor and product id + // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id + const match = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/); + const match_chrome = gamepad.id.match(/^.*\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\).*$/); + const vendor = (match && match[1]) || (match_chrome && match_chrome[1]) || "0000"; + const product = (match && match[2]) || (match_chrome && match_chrome[2]) || "0000"; + switch (vendor + product) { + case "046dc216": // Logitech Logitech Dual Action (Vendor: 046d Product: c216) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 2); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 0); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "046dc21d": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d) + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_ANALOG(ImGuiNavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT + MAP_ANALOG(ImGuiNavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "2dc86001": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001) + case "2dc86101": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 0); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 4); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 6); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 7); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 8); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + default: // standard gamepad: https://w3c.github.io/gamepad/#remapping + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + } + } + } + NewFrame(); + this.update(dt); + EndFrame(); + Render(); + app.renderer.render(this.imgui, this.tex); + this.surface.interactive = this.io.WantCaptureMouse; + } +} +let canvas$1 = null; +//export let gl: WebGL2RenderingContext | null = null; +let g_ShaderHandle = null; +let g_VertHandle = null; +let g_FragHandle = null; +let g_AttribLocationTex = null; +let g_AttribLocationProjMtx = null; +let g_AttribLocationPosition = -1; +let g_AttribLocationUV = -1; +let g_AttribLocationColor = -1; +let g_VaoHandle = null; +let g_VboHandle = null; +let g_ElementsHandle = null; +let g_FontTexture = null; +function document_on_copy(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_cut(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_paste(event) { + if (event.clipboardData) { + clipboard_text = event.clipboardData.getData("text/plain"); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function window_on_gamepadconnected(event /* GamepadEvent */) { + console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.", event.gamepad.index, event.gamepad.id, event.gamepad.buttons.length, event.gamepad.axes.length); +} +function window_on_gamepaddisconnected(event /* GamepadEvent */) { + console.log("Gamepad disconnected at index %d: %s.", event.gamepad.index, event.gamepad.id); +} +function canvas_on_blur(event) { + for (var io of contextIOs) { + io.KeyCtrl = false; + io.KeyShift = false; + io.KeyAlt = false; + io.KeySuper = false; + for (let i = 0; i < io.KeysDown.length; ++i) { + io.KeysDown[i] = false; + } + for (let i = 0; i < io.MouseDown.length; ++i) { + io.MouseDown[i] = false; + } + } +} +function canvas_on_keydown(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = true; + // forward to the keypress event + if ( /*io.WantCaptureKeyboard ||*/event.key === "Tab") { + event.preventDefault(); + } + } +} +function canvas_on_keyup(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = false; + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +function canvas_on_keypress(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.AddInputCharacter(event.charCode); + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +// MouseEvent.button +// A number representing a given button: +// 0: Main button pressed, usually the left button or the un-initialized state +// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present) +// 2: Secondary button pressed, usually the right button +// 3: Fourth button, typically the Browser Back button +// 4: Fifth button, typically the Browser Forward button +const mouse_button_map = [0, 2, 1, 3, 4]; +function canvas_on_contextmenu(event) { + for (var io of contextIOs) { + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function canvas_on_wheel(event) { + for (var io of contextIOs) { + let scale = 1.0; + switch (event.deltaMode) { + case event.DOM_DELTA_PIXEL: + scale = 0.01; + break; + case event.DOM_DELTA_LINE: + scale = 0.2; + break; + case event.DOM_DELTA_PAGE: + scale = 1.0; + break; + } + io.MouseWheelH = event.deltaX * scale; + io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text. + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function PrePIXIInit() { + Renderer.registerPlugin("imgui_renderer", fromConstructor(ImGuiImplInternalRenderer)); +} +function Init(_app) { + // Setup Dear ImGui binding + IMGUI_CHECKVERSION(); + if (typeof (document) !== "undefined") { + document.body.addEventListener("copy", document_on_copy); + document.body.addEventListener("cut", document_on_cut); + document.body.addEventListener("paste", document_on_paste); + } + if (typeof (window) !== "undefined") { + window.addEventListener("gamepadconnected", window_on_gamepadconnected); + window.addEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + app = _app; + gl = app.renderer.gl; + canvas$1 = app.view; + gl.getExtension("EXT_color_buffer_float"); + if (canvas$1 !== null) { + canvas$1.style.touchAction = "none"; // Disable browser handling of all panning and zooming gestures. + canvas$1.addEventListener("blur", canvas_on_blur); + canvas$1.addEventListener("keydown", canvas_on_keydown); + canvas$1.addEventListener("keyup", canvas_on_keyup); + canvas$1.addEventListener("keypress", canvas_on_keypress); + canvas$1.addEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.addEventListener("wheel", canvas_on_wheel); + } + CreateDeviceObjects(); +} +function Shutdown() { + DestroyDeviceObjects(); + if (canvas$1 !== null) { + canvas$1.removeEventListener("blur", canvas_on_blur); + canvas$1.removeEventListener("keydown", canvas_on_keydown); + canvas$1.removeEventListener("keyup", canvas_on_keyup); + canvas$1.removeEventListener("keypress", canvas_on_keypress); + canvas$1.removeEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.removeEventListener("wheel", canvas_on_wheel); + } + app = null; + canvas$1 = null; + if (typeof (window) !== "undefined") { + window.removeEventListener("gamepadconnected", window_on_gamepadconnected); + window.removeEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + if (typeof (document) !== "undefined") { + document.body.removeEventListener("copy", document_on_copy); + document.body.removeEventListener("cut", document_on_cut); + document.body.removeEventListener("paste", document_on_paste); + } +} +function CreateFontsTexture() { + const io = GetIO(); + // Backup GL state + const last_texture = gl && gl.getParameter(gl.TEXTURE_BINDING_2D); + // Build texture atlas + // const width: number = 256; + // const height: number = 256; + // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff); + const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory. + // console.log(`font texture ${width} x ${height} @ ${pixels.length}`); + // Upload texture to graphics system + g_FontTexture = gl && gl.createTexture(); + gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2 + gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels); + // Store our identifier + io.Fonts.TexID = g_FontTexture || { foo: "bar" }; + // console.log("font texture id", g_FontTexture); + // Restore modified GL state + gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture); +} +function DestroyFontsTexture() { + const io = GetIO(); + io.Fonts.TexID = null; + gl && gl.deleteTexture(g_FontTexture); + g_FontTexture = null; +} +function CreateDeviceObjects() { + const vertex_shader = [ + "#version 300 es", + "uniform mat4 ProjMtx;", + "in vec2 Position;", + "in vec2 UV;", + "in vec4 Color;", + "out vec2 Frag_UV;", + "out vec4 Frag_Color;", + "void main() {", + " Frag_UV = UV;", + " Frag_Color = Color;", + " gl_Position = ProjMtx * vec4(Position.xy,0,1);", + "}", + ]; + const fragment_shader = [ + "#version 300 es", + "precision mediump float;", + "uniform sampler2D Texture;", + "in vec2 Frag_UV;", + "in vec4 Frag_Color;", + "out vec4 OutColor;", + "void main() {", + " OutColor = Frag_Color * texture(Texture, Frag_UV);", + "}", + ]; + g_ShaderHandle = gl && gl.createProgram(); + g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER); + g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER); + gl && gl.shaderSource(g_VertHandle, vertex_shader.join("\n")); + gl && gl.shaderSource(g_FragHandle, fragment_shader.join("\n")); + gl && gl.compileShader(g_VertHandle); + gl && gl.compileShader(g_FragHandle); + gl && gl.attachShader(g_ShaderHandle, g_VertHandle); + gl && gl.attachShader(g_ShaderHandle, g_FragHandle); + gl && gl.linkProgram(g_ShaderHandle); + g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle, "Texture"); + g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle, "ProjMtx"); + g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle, "Position") || 0; + g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle, "UV") || 0; + g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle, "Color") || 0; + g_VaoHandle = gl && gl.createVertexArray(); + g_VboHandle = gl && gl.createBuffer(); + g_ElementsHandle = gl && gl.createBuffer(); +} +function DestroyDeviceObjects() { + DestroyFontsTexture(); + gl && gl.deleteVertexArray(g_VaoHandle); + g_VaoHandle = null; + gl && gl.deleteBuffer(g_VboHandle); + g_VboHandle = null; + gl && gl.deleteBuffer(g_ElementsHandle); + g_ElementsHandle = null; + g_AttribLocationTex = null; + g_AttribLocationProjMtx = null; + g_AttribLocationPosition = -1; + g_AttribLocationUV = -1; + g_AttribLocationColor = -1; + gl && gl.deleteProgram(g_ShaderHandle); + g_ShaderHandle = null; + gl && gl.deleteShader(g_VertHandle); + g_VertHandle = null; + gl && gl.deleteShader(g_FragHandle); + g_FragHandle = null; +} + +exports.ImGuiWindow = ImGuiWindow; +exports.Init = Init; +exports.PrePIXIInit = PrePIXIInit; +exports.Shutdown = Shutdown; +//# sourceMappingURL=imgui_impl.js.map diff --git a/imgui_impl.js.map b/imgui_impl.js.map new file mode 100644 index 0000000..30848af --- /dev/null +++ b/imgui_impl.js.map @@ -0,0 +1 @@ +{"version":3,"file":"imgui_impl.js","sources":["node_modules/rollup-plugin-node-builtins/src/es6/empty.js","node_modules/rollup-plugin-node-builtins/src/es6/path.js","node_modules/imgui-js/bind-imgui.js","node_modules/imgui-js/imgui.ts","node_modules/es6-promise-polyfill/promise.js","node_modules/object-assign/index.js","node_modules/@pixi/polyfill/lib/polyfill.es.js","node_modules/ismobilejs/src/isMobile.js","node_modules/@pixi/settings/lib/settings.es.js","node_modules/eventemitter3/index.js","node_modules/earcut/src/earcut.js","node_modules/rollup-plugin-node-builtins/src/es6/punycode.js","node_modules/rollup-plugin-node-builtins/src/es6/util.js","node_modules/rollup-plugin-node-builtins/src/es6/qs.js","node_modules/rollup-plugin-node-builtins/src/es6/url.js","node_modules/@pixi/constants/lib/constants.es.js","node_modules/@pixi/utils/lib/utils.es.js","node_modules/@pixi/math/lib/math.es.js","node_modules/@pixi/display/lib/display.es.js","node_modules/@pixi/accessibility/lib/accessibility.es.js","node_modules/@pixi/runner/lib/runner.es.js","node_modules/@pixi/ticker/lib/ticker.es.js","node_modules/@pixi/core/lib/core.es.js","node_modules/@pixi/extract/lib/extract.es.js","node_modules/@pixi/interaction/lib/interaction.es.js","node_modules/@pixi/graphics/lib/graphics.es.js","node_modules/@pixi/sprite/lib/sprite.es.js","node_modules/@pixi/text/lib/text.es.js","node_modules/@pixi/prepare/lib/prepare.es.js","node_modules/@pixi/app/lib/app.es.js","node_modules/parse-uri/index.js","node_modules/mini-signals/lib/mini-signals.js","node_modules/resource-loader/dist/resource-loader.esm.js","node_modules/@pixi/loaders/lib/loaders.es.js","node_modules/@pixi/particles/lib/particles.es.js","node_modules/@pixi/spritesheet/lib/spritesheet.es.js","node_modules/@pixi/sprite-tiling/lib/sprite-tiling.es.js","node_modules/@pixi/text-bitmap/lib/text-bitmap.es.js","node_modules/@pixi/filter-color-matrix/lib/filter-color-matrix.es.js","node_modules/@pixi/mixin-cache-as-bitmap/lib/mixin-cache-as-bitmap.es.js","node_modules/@pixi/mixin-get-child-by-name/lib/mixin-get-child-by-name.es.js","node_modules/@pixi/mixin-get-global-position/lib/mixin-get-global-position.es.js","node_modules/@pixi/mesh/lib/mesh.es.js","node_modules/pixi.js/lib/pixi.es.js","utils.ts","imgui_impl.ts"],"sourcesContent":["export default {};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// resolves . and .. elements in a path array with directory names there\n// must be no slashes, empty elements, or device names (c:\\) in the array\n// (so also no leading and trailing slashes - it does not distinguish\n// relative and absolute paths)\nfunction normalizeArray(parts, allowAboveRoot) {\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = parts.length - 1; i >= 0; i--) {\n var last = parts[i];\n if (last === '.') {\n parts.splice(i, 1);\n } else if (last === '..') {\n parts.splice(i, 1);\n up++;\n } else if (up) {\n parts.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (allowAboveRoot) {\n for (; up--; up) {\n parts.unshift('..');\n }\n }\n\n return parts;\n}\n\n// Split a filename into [root, dir, basename, ext], unix version\n// 'root' is just a slash, or nothing.\nvar splitPathRe =\n /^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;\nvar splitPath = function(filename) {\n return splitPathRe.exec(filename).slice(1);\n};\n\n// path.resolve([from ...], to)\n// posix version\nexport function resolve() {\n var resolvedPath = '',\n resolvedAbsolute = false;\n\n for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {\n var path = (i >= 0) ? arguments[i] : '/';\n\n // Skip empty and invalid entries\n if (typeof path !== 'string') {\n throw new TypeError('Arguments to path.resolve must be strings');\n } else if (!path) {\n continue;\n }\n\n resolvedPath = path + '/' + resolvedPath;\n resolvedAbsolute = path.charAt(0) === '/';\n }\n\n // At this point the path should be resolved to a full absolute path, but\n // handle relative paths to be safe (might happen when process.cwd() fails)\n\n // Normalize the path\n resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {\n return !!p;\n }), !resolvedAbsolute).join('/');\n\n return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';\n};\n\n// path.normalize(path)\n// posix version\nexport function normalize(path) {\n var isPathAbsolute = isAbsolute(path),\n trailingSlash = substr(path, -1) === '/';\n\n // Normalize the path\n path = normalizeArray(filter(path.split('/'), function(p) {\n return !!p;\n }), !isPathAbsolute).join('/');\n\n if (!path && !isPathAbsolute) {\n path = '.';\n }\n if (path && trailingSlash) {\n path += '/';\n }\n\n return (isPathAbsolute ? '/' : '') + path;\n};\n\n// posix version\nexport function isAbsolute(path) {\n return path.charAt(0) === '/';\n}\n\n// posix version\nexport function join() {\n var paths = Array.prototype.slice.call(arguments, 0);\n return normalize(filter(paths, function(p, index) {\n if (typeof p !== 'string') {\n throw new TypeError('Arguments to path.join must be strings');\n }\n return p;\n }).join('/'));\n}\n\n\n// path.relative(from, to)\n// posix version\nexport function relative(from, to) {\n from = resolve(from).substr(1);\n to = resolve(to).substr(1);\n\n function trim(arr) {\n var start = 0;\n for (; start < arr.length; start++) {\n if (arr[start] !== '') break;\n }\n\n var end = arr.length - 1;\n for (; end >= 0; end--) {\n if (arr[end] !== '') break;\n }\n\n if (start > end) return [];\n return arr.slice(start, end - start + 1);\n }\n\n var fromParts = trim(from.split('/'));\n var toParts = trim(to.split('/'));\n\n var length = Math.min(fromParts.length, toParts.length);\n var samePartsLength = length;\n for (var i = 0; i < length; i++) {\n if (fromParts[i] !== toParts[i]) {\n samePartsLength = i;\n break;\n }\n }\n\n var outputParts = [];\n for (var i = samePartsLength; i < fromParts.length; i++) {\n outputParts.push('..');\n }\n\n outputParts = outputParts.concat(toParts.slice(samePartsLength));\n\n return outputParts.join('/');\n}\n\nexport var sep = '/';\nexport var delimiter = ':';\n\nexport function dirname(path) {\n var result = splitPath(path),\n root = result[0],\n dir = result[1];\n\n if (!root && !dir) {\n // No dirname whatsoever\n return '.';\n }\n\n if (dir) {\n // It has a dirname, strip trailing slash\n dir = dir.substr(0, dir.length - 1);\n }\n\n return root + dir;\n}\n\nexport function basename(path, ext) {\n var f = splitPath(path)[2];\n // TODO: make this comparison case-insensitive on windows?\n if (ext && f.substr(-1 * ext.length) === ext) {\n f = f.substr(0, f.length - ext.length);\n }\n return f;\n}\n\n\nexport function extname(path) {\n return splitPath(path)[3];\n}\nexport default {\n extname: extname,\n basename: basename,\n dirname: dirname,\n sep: sep,\n delimiter: delimiter,\n relative: relative,\n join: join,\n isAbsolute: isAbsolute,\n normalize: normalize,\n resolve: resolve\n};\nfunction filter (xs, f) {\n if (xs.filter) return xs.filter(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n if (f(xs[i], i, xs)) res.push(xs[i]);\n }\n return res;\n}\n\n// String.prototype.substr - negative index don't work in IE8\nvar substr = 'ab'.substr(-1) === 'b' ?\n function (str, start, len) { return str.substr(start, len) } :\n function (str, start, len) {\n if (start < 0) start = str.length + start;\n return str.substr(start, len);\n }\n;\n","\nvar Module = (function() {\n var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;\n return (\nfunction(Module) {\n Module = Module || {};\n\nvar Module=typeof Module!==\"undefined\"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key]}}Module[\"arguments\"]=[];Module[\"thisProgram\"]=\"./this.program\";Module[\"quit\"]=function(status,toThrow){throw toThrow};Module[\"preRun\"]=[];Module[\"postRun\"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window===\"object\";ENVIRONMENT_IS_WORKER=typeof importScripts===\"function\";ENVIRONMENT_HAS_NODE=typeof process===\"object\"&&typeof require===\"function\";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory=\"\";function locateFile(path){if(Module[\"locateFile\"]){return Module[\"locateFile\"](path,scriptDirectory)}else{return scriptDirectory+path}}if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+\"/\";var nodeFS;var nodePath;Module[\"read\"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require(\"fs\");if(!nodePath)nodePath=require(\"path\");filename=nodePath[\"normalize\"](filename);ret=nodeFS[\"readFileSync\"](filename)}return binary?ret:ret.toString()};Module[\"readBinary\"]=function readBinary(filename){var ret=Module[\"read\"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}assert(ret.buffer);return ret};if(process[\"argv\"].length>1){Module[\"thisProgram\"]=process[\"argv\"][1].replace(/\\\\/g,\"/\")}Module[\"arguments\"]=process[\"argv\"].slice(2);process[\"on\"](\"uncaughtException\",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process[\"on\"](\"unhandledRejection\",abort);Module[\"quit\"]=function(status){process[\"exit\"](status)};Module[\"inspect\"]=function(){return\"[Emscripten Module object]\"}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!=\"undefined\"){Module[\"read\"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)}}Module[\"readBinary\"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer===\"function\"){return new Uint8Array(readbuffer(f))}data=read(f,\"binary\");assert(typeof data===\"object\");return data};if(typeof scriptArgs!=\"undefined\"){Module[\"arguments\"]=scriptArgs}else if(typeof arguments!=\"undefined\"){Module[\"arguments\"]=arguments}if(typeof quit===\"function\"){Module[\"quit\"]=function(status){quit(status)}}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf(\"blob:\")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf(\"/\")+1)}else{scriptDirectory=\"\"}Module[\"read\"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module[\"readBinary\"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.responseType=\"arraybuffer\";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}}}Module[\"readAsync\"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,true);xhr.responseType=\"arraybuffer\";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror()};xhr.onerror=onerror;xhr.send(null)};Module[\"setWindowTitle\"]=function(title){document.title=title}}else{}var out=Module[\"print\"]||(typeof console!==\"undefined\"?console.log.bind(console):typeof print!==\"undefined\"?print:null);var err=Module[\"printErr\"]||(typeof printErr!==\"undefined\"?printErr:typeof console!==\"undefined\"&&console.warn.bind(console)||out);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key]}}moduleOverrides=undefined;var asm2wasmImports={\"f64-rem\":function(x,y){return x%y},\"debugger\":function(){debugger}};var functionPointers=new Array(0);var tempRet0=0;var setTempRet0=function(value){tempRet0=value};if(typeof WebAssembly!==\"object\"){err(\"no native wasm support detected\")}var wasmMemory;var wasmTable;var ABORT=false;var EXITSTATUS=0;function assert(condition,text){if(!condition){abort(\"Assertion failed: \"+text)}}var UTF8Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf8\"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str=\"\";while(idx>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):\"\"}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4}return len}var UTF16Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf-16le\"):undefined;var WASM_PAGE_SIZE=65536;var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferViews(){Module[\"HEAP8\"]=HEAP8=new Int8Array(buffer);Module[\"HEAP16\"]=HEAP16=new Int16Array(buffer);Module[\"HEAP32\"]=HEAP32=new Int32Array(buffer);Module[\"HEAPU8\"]=HEAPU8=new Uint8Array(buffer);Module[\"HEAPU16\"]=HEAPU16=new Uint16Array(buffer);Module[\"HEAPU32\"]=HEAPU32=new Uint32Array(buffer);Module[\"HEAPF32\"]=HEAPF32=new Float32Array(buffer);Module[\"HEAPF64\"]=HEAPF64=new Float64Array(buffer)}var DYNAMIC_BASE=5315584,DYNAMICTOP_PTR=72672;var TOTAL_STACK=5242880;var INITIAL_TOTAL_MEMORY=Module[\"TOTAL_MEMORY\"]||16777216;if(INITIAL_TOTAL_MEMORY>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback==\"function\"){callback();continue}var func=callback.func;if(typeof func===\"number\"){if(callback.arg===undefined){Module[\"dynCall_v\"](func)}else{Module[\"dynCall_vi\"](func,callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;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 ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__)}function preMain(){callRuntimeCallbacks(__ATMAIN__)}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 addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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()}}}Module[\"preloadedImages\"]={};Module[\"preloadedAudios\"]={};var dataURIPrefix=\"data:application/octet-stream;base64,\";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile=\"data:application/octet-stream;base64,AGFzbQEAAAAB2AyxAWACf38Bf2ACf38AYAJ8fAF8YAF/AX9gAX8AYAN/f38Bf2AEf39/fwBgA39/fwBgAn9/AX1gBH9/f38Bf2AEf399fwBgAn99AX9gA399fQF/YAZ9fX1/f38AYAR/fX9/AGAFf39/fX8AYAABfGADf31/AGAFf39/f38Bf2AIf39/f39/f38Bf2AHf39/f39/fwF/YAZ/f39/f38Bf2AGf398fH9/AX9gCX9/f39/f39/fwF/YAN9f38AYAl/f39/f39/f38AYAZ/f39/f38AYAJ/fQBgAX8BfWAAAX9gAn19AGABfQBgAAF9YAAAYAN/f30Bf2AGf39/fX9/AGAIf399fX1/f38AYAR/fX99AX9gBn9/fX9/fwBgBX9/f399AGAHf39/f31/fQBgBn9/f399fwBgB39/f39/f38AYAd/f39/f399AGAGf39/f399AGAFf39/f38AYAZ/f31/f30AYAV/f31/fwBgCH9/fX9/f31/AGALf39/f39/f39/f38AYAl/f39/f39/fX8AYAh/f39/f399fwBgBH9/f30AYAZ/f319fX8AYAp/f39/f39/f39/AGADf399AGAGf3x/f39/AX9gA39+fwF+YAF/AXxgA39/fwF9YAR/f319AX9gCH9/fX19f39/AX9gBH9/fX8Bf2AFf399f30Bf2AHf39/fHx/fwF/YAR/f399AX9gBX9/f31/AX9gBn9/f31/fwF/YAp/f39/f39/f39/AX9gA399fQBgB399fX1/f38AYAd/f399fX1/AGAHf39/fX9/fQBgB39/f31/f38AYAl/f399f39/fX8AYAd/f39/f31/AGAIf39/f399f30AYAh/f39/f39/fQBgCH9/f39/f39/AGAKf39/f39/f399fwBgDH9/f39/f39/f39/fwBgDX9/f39/f39/f39/f38AYAN/f3wAYAN/f38BfGABfQF9YAJ9fQF9YAV/fX19fQBgBH9/fX0AYAJ/fQF9YAR9fX19AX9gBX9/f319AGADfX19AX1gAn19AX9gBH19fX0BfWALf319fX19fX19fX8AYAl/f31/f39/fX8AYAp/f31/f39/f31/AGAFf31/f30Bf2AIf399fX9/f38AYAt/f319fX19fX19fQBgCH9/f39/fX1/AGAHf39/fX1/fwBgBX9/fX9/AX9gCH9/f399fX9/AGAHf39/fX19fQBgCn9/fX19fX19fX8AYAx/f319fX19fX19fX8AYAd/fX19fX19AGAEf31/fwF/YAh/f399f39/fQF/YAV/fX9/fwF/YAV/fX5+fwF/YAZ/fX19f30Bf2AGf318fH99AX9gAn98AXxgAn9+AX5gCX9/f399f39/fQF/YAd/f319fX99AX9gCX9/f319fX9/fQF/YAZ/f31/f38Bf2AIf39/fX9/f38Bf2AKf39/f39/f31/fwF/YAl/f39/f399f38Bf2AJf39/fn5/fX9/AX9gCX9/f319f31/fwF/YAl/f398fH99f38Bf2AFfHx8fX0BfWADfHx9AXxgA3x8fAF8YAV9fX19fQF9YAN+fn4BfWADfn5+AX5gBX5+fn19AX1gBX9/f319AX1gB39/f39/f30Bf2AIf39/f39/f30Bf2AGf399fX99AX9gB39/f319f30Bf2AGf399fX9/AX9gB39/f31/fX8AYAl/f39/f399fX8AYAd/f39/fX1/AGAEf319fQF9YAZ/f39/f30Bf2AHf399f39/fQF/YAJ/fgBgAn9/AX5gA35/fwF/YAJ+fwF/YAJ8fwF8YAV/f39/fwF8YAZ/f39/f38BfGACfX8BfWABfAF9YAJ9fwF/YAN/f34AYAF/AX5gAn9/AXxgBH9/f38BfWAHf398f39/fwF/YAV/f399fQF/YAl/f399fX1/f38Bf2AGf39/fX99AX9gCH9/f398fH9/AX9gBX9/f399AX9gBn9/f399fwF/YAd/f39/fX9/AX9gC39/f39/f39/f39/AX9gCX9/f319fX9/fwBgCH9/f399fX1/AGAHf39/f31/fwBgCH9/f399f399AGAIf39/f31/f38AYAp/f39/fX9/f31/AGAJf39/f39/fX99AGAJf39/f39/f399AGALf39/f39/f39/fX8AAvQDNwNlbnYBYgA2A2VudgFjAE4DZW52AWQAGgNlbnYBZQAEA2VudgFmAAADZW52AWcAUQNlbnYBaABTA2VudgFpAAcDZW52AWoAAANlbnYBawAtA2VudgFsACEDZW52AW0ABwNlbnYBbgAAA2VudgFvAAYDZW52AXAAAANlbnYBcQAaA2VudgFyAAQDZW52AXMABANlbnYBdAAEA2VudgF1AAAI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/AYLC0H89gEoAgAhASAAQZypBCgCACABQf8BcUHyBmoRAQALWgEDfyMEIQIjBEEQaiQEIAJBmKkEKAIAIgNBsCtqIABBBHRqIgApAgA3AgAgAiAAKQIINwIIIAIgAioCDCADQZAqaioCACABlJQ4AgwgAhChAyEEIAIkBCAECxYAIAAgASkCADcCACAAIAIpAgA3AggLBgBBNBADCwwAIAAgASAAIAFdGwvGAwEDfyACQYDAAE4EQCAAIAEgAhAjGiAADwsgACEEIAAgAmohAyAAQQNxIAFBA3FGBEADQCAAQQNxBEAgAkUEQCAEDwsgACABLAAAOgAAIABBAWohACABQQFqIQEgAkEBayECDAELCyADQXxxIgJBQGohBQNAIAAgBUwEQCAAIAEoAgA2AgAgACABKAIENgIEIAAgASgCCDYCCCAAIAEoAgw2AgwgACABKAIQNgIQIAAgASgCFDYCFCAAIAEoAhg2AhggACABKAIcNgIcIAAgASgCIDYCICAAIAEoAiQ2AiQgACABKAIoNgIoIAAgASgCLDYCLCAAIAEoAjA2AjAgACABKAI0NgI0IAAgASgCODYCOCAAIAEoAjw2AjwgAEFAayEAIAFBQGshAQwBCwsDQCAAIAJIBEAgACABKAIANgIAIABBBGohACABQQRqIQEMAQsLBSADQQRrIQIDQCAAIAJIBEAgACABLAAAOgAAIAAgASwAAToAASAAIAEsAAI6AAIgACABLAADOgADIABBBGohACABQQRqIQEMAQsLCwNAIAAgA0gEQCAAIAEsAAA6AAAgAEEBaiEAIAFBAWohAQwBCwsgBAsSACAAQbT4ATYCACAAQQRqED4LKgAgACgCEBBbBEBBACEABSAAQQRqIgAsAAtBAEgEQCAAKAIAIQALCyAACxIAIAAgARDpECAAQcD4ATYCAAsQACAALQABIAAtAABBCHRyCyoBAX8jBCEBIwRBEGokBCABIAA2AgBBBBA/IgAgASgCADYCACABJAQgAAslAQF/IAEoAgAhAiAAQgA3AgAgAEEANgIIIAAgAUEEaiACEJMBCwgAQQwQA0EACwcAIABBBGoLJwEBfyAAKAIIIgEEQCAAQQA2AgQgAEEANgIAIAEQQSAAQQA2AggLCw0AIAAoAgggAUECdGoLFgAgACABKgIAIAKUIAEqAgQgApQQMgsp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QCADIAMoApACQQFyNgKQAgtBAQsLBgAgAKiyCw0AIABB1ABqIAEQmgILFAAgASACIAAgACACXhsgACABXRsLEQBBACAAQQRqIAAoAggQWxsLIQAgAEP//39/Q///f38QMiAAQQhqQ///f/9D//9//xAyCxAAIAAoAggiAARAIAAQQQsLFwAgAEEANgIEIABBADYCACAAQQA2AggLIQEBfyMEIQIjBEEQaiQEIAIgATYCACAAIAIQ2gIgAiQEC5gCAQR/IAAgAmohBCABQf8BcSEDIAJBwwBOBEADQCAAQQNxBEAgACADOgAAIABBAWohAAwBCwsgA0EIdCADciADQRB0ciADQRh0ciEBIARBfHEiBUFAaiEGA0AgACAGTARAIAAgATYCACAAIAE2AgQgACABNgIIIAAgATYCDCAAIAE2AhAgACABNgIUIAAgATYCGCAAIAE2AhwgACABNgIgIAAgATYCJCAAIAE2AiggACABNgIsIAAgATYCMCAAIAE2AjQgACABNgI4IAAgATYCPCAAQUBrIQAMAQsLA0AgACAFSARAIAAgATYCACAAQQRqIQAMAQsLCwNAIAAgBEgEQCAAIAM6AAAgAEEBaiEADAELCyAEIAJrC58BAQN/EDwiAiwAf0UEQEGYqQQoAgAhBCABQwAAAABdIQMgAEMAAAAAXARAIAIqArQDQwAAAAAgASADGyACKgIMIAIqAliTIACSkpIhACACKgK4AyEBBSADBEAgBEHUKmoqAgAhAQsgAioC0AEhAAsgAiABIACSOALIASACIAIoAtQBNgLMASACIAIpAvQBNwLoASACIAIoAvwBNgLwAQsLqwECA38BfSMEIQUjBEEQaiQEQZipBCgCACEGIAMEQCABIAIQkAEhAgsgBSEDIAZBsDFqKAIAIQcgBkG0MWoqAgAhCCABIAJGBEAgAEMAAAAAIAgQMgUgAyAHIAhD//9/fyAEIAEgAkEAEJoDIAMqAgAiBEMAAAAAXgRAIAMgBCAIIAcqAgCVkyIEOAIACyADIARDMzNzP5KosjgCACAAIAMpAwA3AgALIAUkBAsnAEGYqQQoAgBBNGogAEECdGooAgAiAEF/SgR/IAAgARD2AgVBAAsLNQECfyMEIQMjBEEQaiQEAn8gACgCACEEIAMgARB3IAQLIAMoAgAgAigCABALIAMQMSADJAQL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KAIIRgRAIAEQ4QELIAEgACABKAIAEPIFIgI2AgAgASACNgIIIAAgARCCAQwFCyABEOEBIAFBADYCCCABQQA2AgAgAUEAOgAPDAQLIAEQ4QEgASAAKAIsIgI2AgggASACNgIAIAFBADoADwwDCyAAKAIsIQQgACABEIIBIAEQ4QEgASwAEARAIAEgBDYCACAEIQIFIAEoAgAiAiAESARAA0ACQAJ/IAAgAhDiAUH//wNxQQpGIQwgASgCACECIAwLDQAgASACQQFqIgI2AgAgAiAESA0BCwsLCyABIAI2AgggAUEAOgAPDAILQQMhAwwBCyAFQYCADEgEQCAFQY2ABGsEQEEDIQMMAgsgASgCBCABKAIIRgRAIAEgACABKAIAEPIFNgIAIAAgARCCAQUgACABELgECwwBCwJAAkACQCAFQYCADGsOAgIAAQsgARDhASABIAEoAghBAWo2AgggACABEIIBIAEgASgCCDYCACABQQA6AA8MAgtBAyEDDAELIAAgARCCASABEOEBIAEoAggiAkEASgRAIAEgAkF/aiICNgIICyABIAI2AgAgAUEAOgAPCyADQQNGBEBBACAFIAVB//8DShsiAkEASgRAAkAgBiACOwEAIAJBCkYEQCABLAAQDQELAkACQCABLAAMRQ0AIAEoAgQgASgCCEcNACABKAIAIgIgACgCLE4NACAAIQUgAUEYaiACQQFBARC5BCIEBEAgBCAFIAIQ4gE7AQALIAAgASgCAEEBENkDIAAgASgCACAGQQEQkgMEQCABIAEoAgBBAWo2AgAgAUEAOgAPCwwBCyAAIAEQkwMgACABKAIAIAZBARCSAwRAIAEgASgCAEEBEPcFIAEgASgCAEEBajYCACABQQA6AA8LCwsLBSADQckARgRAIAEoAgQgASgCCEYEQCABKAIAIgIgACgCLEgEQCAAIAEgAkEBENoDCwUgACABEJMDCyABQQA6AA8FIANBzgBGBEAgASgCBCABKAIIRgRAIAAgARCCASABKAIAIgJBAEoEQCAAIAEgAkF/akEBENoDIAEgASgCAEF/ajYCAAsFIAAgARCTAwsgAUEAOgAPCwsLIAkkBAtIAQF/IAFBGGogAiADQQAQuQQiBEEARyADQQBKcQRAQQAhAQNAIAFBAXQgBGogACABIAJqEOIBOwEAIAFBAWoiASADRw0A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CyQAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAAQQNxQZwLahExAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBA3FBmAtqETYACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBlAtqERkACyIAIAEgAiADIAQgBSAGIAcgCCAJIAogAEEBcUGSC2oRTwALHgAgASACIAMgBCAFIAYgByAIIABBA3FBjgtqEU4ACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBigtqETIACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQYgLahFNAAscACABIAIgAyAEIAUgBiAHIABBB3FBgAtqESoACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQf4KahEzAAscACABIAIgAyAEIAUgBiAHIABBA3FB+gpqESsACxoAIAEgAiADIAQgBSAGIABBD3FB6gpqERoACw0AIABB+ClqQQAQwAELHgAgASACIAMgBCAFIAYgByAIIABBAXFB6ApqEUwACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHmCmoRSwALGgAgASACIAMgBCAFIAYgAEEDcUHiCmoRLAALGAAgASACIAMgBCAFIABBD3FB0gpqES0ACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHQCmoRKAALGgAgASACIAMgBCAFIAYgAEEDcUHMCmoRKQALGAAgASACIAMgBCAFIABBA3FByApqEScACxYAIAEgAiADIAQgAEEfcUGoCmoRBgALIAAgASACIAMgBCAFIAYgByAIIAkgAEEBcUGmCmoRSgALHAAgASACIAMgBCAFIAYgByAAQQFxQaQKahFJAAscACABIAIgAyAEIAUgBiAHIABBAXFBogpqEUgACxoAIAEgAiADIAQgBSAGIABBA3FBngpqESMACxgAIAEgAiADIAQgBSAAQQNxQZoKahEPAAscACABIAIgAyAEIAUgBiAHIABBAXFBmApqEUcACxYAIAEgAiADIAQgAEEDcUGUCmoRNAALFQAgASACIAMgAEH/AHFBlAlqEQcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQZIJahEwAAsaACABIAIgAyAEIAUgBiAAQQFxQZAJahEmAAsaACABIAIgAyAEIAUgBiAAQQFxQY4JahEuAAsYACABIAIgAyAEIAUgAEEDcUGKCWoRLwALFgAgASACIAMgBCAAQQNxQYYJahEKAAseACABIAIgAyAEIAUgBiAHIAggAEEBcUGECWoRJAALGgAgASACIAMgBCAFIAYgAEEBcUGCCWoRNQALFAAgASACIAMgAEEPcUHyCGoRNwALFgAgASACIAMgBCAAQQNxQe4GahEOAAsUACABIAIgAyAAQQFxQewGahERAAscACABIAIgAyAEIAUgBiAHIABBAXFB6gZqEUYACxQAIAEgAiADIABBAXFB6AZqEUUACxQAIAEgAiADIABBAXFB3gRqERgACxoAIAEgAiADIAQgBSAGIABBA3FB2gRqEQ0ACxUAQZipBCgCAEE0aiAAQQJ0aigCAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBAXFBggRqEUQACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBB3FB+gNqERcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQ9xQeoDahETAAscACABIAIgAyAEIAUgBiAHIABBD3FB2gNqERQACxoAIAEgAiADIAQgBSAGIABBH3FBugNqERUACxgAIAEgAiADIAQgBSAAQQ9xQaoDahESAAsWACABIAIgAyAEIABBH3FBigNqEQkACxoAIAEgAiADIAQgBSAGIABBAXFBiANqEUMACxgAIAEgAiADIAQgBSAAQQFxQYYDahFCAAsWACABIAIgAyAEIABBAXFBhANqEUEACxwAIAEgAiADIAQgBSAGIAcgAEEBcUGCA2oRQAALGAAgASACIAMgBCAFIABBAXFBwAJqET8ACxYAIAEgAiADIAQgAEEBcUG+AmoRPgALHgAgASACIAMgBCAFIAYgByAIIABBAXFBvAJqET0ACxYAIAEgAiADIAQgAEEBcUG6AmoRPAALFAAgASACIAMgAEEDcUG2AmoRIgALGgAgASACIAMgBCAFIAYgAEEBcUG0AmoRFgALFgAgASACIAMgBCAAQQFxQbIBahElAAsUACABIAIgAyAAQQFxQbABahEMAAsaACABIAIgAyAEIAUgBiAAQQFxQawBahE4AAsUACABIAIgAyAAQQNxQcgAahE7AAsRACABIAIgAEEfcUEoahEIAAsPACABIABBA3FBJGoRHAALDQAgAEEfcUEEahEgAAsPACABIABBAXFBAmoROgALCgAgAEEBcREQAAvS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AiADIAQgBUEPcUHSCmoRLQAMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIAFBADoANCABQQA6ADUgACgCCCIAKAIAKAIUIQMgACABIAIgAkEBIAQgA0EPcUHqCmoRGgAgAQJ/AkAgASwANQR/IAEsADQNAUEBBUEACyEAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAA0CQQQMAwsLIAANAEEEDAELQQMLNgIsDAILCyADQQFGBEAgAUEBNgIgCwsLC0QBAX8gACABKAIIEIUBBEAgASACIAMgBBCFBQUgACgCCCIAKAIAKAIUIQYgACABIAIgAyAEIAUgBkEPcUHqCmoRGgALCxgAIAAgASgCCBCFAQRAIAEgAiADEIcFCwuPAQAgACABKAIIEIUBBEAgASACIAMQhgUFIAAgASgCABCFAQRAAkAgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASACNgIUIAEgASgCKEEBajYCKCABKAIkQQFGBEAgASgCGEECRgRAIAFBAToANgsLIAFBBDYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwsLGgAgACABKAIIEIUBBEAgASACIAMgBBCFBQsLyQEBA38jBCEEIwRBQGskBCAEIQMgACABEIUBBH9BAQUgAQR/IAFB4PQBEJQEIgEEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyABNgIAIAMgADYCCCADQX82AgwgA0EBNgIwIAEoAgAoAhwhACABIAMgAigCAEEBIABBH3FBqApqEQYAIAMoAhhBAUYEfyACIAMoAhA2AgBBAQVBAAsFQQALBUEACwshBSAEJAQgBQt4AQN/IwQhASMEQRBqJAQgASEAAn9BAEGMrgQoAgBB37femgFGDQAaQbMEESEAQYyuBEHft96aATYCAEEACwRAQZSKAyAAEMICBQJ/An9BAEGQrgQoAgAiACgCBEHOlZoSRw0AGiAAKAIACyECIAEkBCACCw8LQQALowICB38BfiMEIQIjBEEwaiQEIAJBGGohASACQRBqIQMgAiEEIAJBJGohBRDLCyIABEAgACgCACIABEAgACkDMCIHQoB+g0KA1qyZ9MiT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AgAhBCAAEIoCIAAoAiAQtgcgBAsQigILCyAAQdQyaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAwRAIAMQjRIgAxBBCyABQQFqIgEgAigCAEgNAAsLIAIQTyAAQeAyahBPIABB7DJqEE8gAEGUM2pBADYCACAAQfgyahBPIABBhDNqEE8gAEGgNWpBADYCACAAQZgzakEANgIAIABBnDNqQQA2AgAgAEHcM2pBADYCACAAQdgzakEANgIAIABB9DNqQQA2AgAgAEH4M2oQTyAAQYQ0ahBPIABBkDRqEE8gAEGcNGoQTyAAQag0ahBPIABBwDdqIQJBACEBA0AgAUEMbCACahBPIAFBAWoiAUECRw0ACyAAQdw3ahDdBCAAQYTYAGoQTyAAQZA6ahBPIABBnDpqEE8gAEGoOmoQTyAAQcDYAGoiAigCAEEASgRAQQAhAQNAIAIgARBVKAIAEPYHIAFBAWoiASACKAIASA0ACwsgAhBPIABBtNgAahBPIABB0NgAaiICKAIAIgFBzIECKAIARiABRXJFBEAgARDDAhogAkEANgIACyAAQdTYAGoQTyAAQQA6AAALCwsAIAAQngUgABBUC00BAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACQYz8ATYCACACIAE2AgggAhCvBSAAIAJBBGoQ5AMhAyACEJ4FIAIkBCADCwsAIAAQnwUgABBUC08BAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADQfT7ATYCACADIAE2AgggAxDGByAAIANBBGogAhCABiEEIAMQnwUgAyQEIAQLMwAgAEGYqQQoAgAgABsiABCxD0GYqQQoAgAgAEYEQEEAEIoCCyAABEAgABDkCSAAEEELC1QBAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQygEgACACIAMQTiIAKAIARhC5AiIBBEAgACACNgIACyABIQQgAxC0ASADJAQgBAtWAgJ/An0jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQcSABQQhqIgIgAEE8aiAAQUBrIAEQywcgAhA9IQQgAhAxIAEQMSABJAQgBAsHACABELgPC4kBAgJ/An0jBCEJIwRBMGokBEGwqQQoAgAiCkE8aiABEIgBIApBQGsg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QYAHaiIKEDogAEGwB2ohAyAAQYgHaiEBA0AgARA6IAFBCGoiASADRw0ACyAAQbwIaiEDIABBlAhqIQEDQCABEDogAUEIaiIBIANHDQALIABB+ClqEGggAEEAQYgqEGoaIAJDAACAv0MAAIC/EDIgBSACKQMANwIAIABDiYiIPDgCECAAQwAAoEA4AhQgAEHmhQI2AhggAEHwhQI2AhwgAEOamZk+OAIgIABDAADAQDgCJCAAQSxqIgFCfzcCACABQn83AgggAUJ/NwIQIAFCfzcCGCABQn83AiAgAUJ/NwIoIAFCfzcCMCABQn83AjggAUFAa0J/NwIAIAFCfzcCSCABQX82AlAgAEMAAIA+OAKAASAAQ83MTD04AoQBIABBADYCiAEgAEEANgKMASAAQwAAgD84ApABIABBADYCmAEgAEEAOgCUASACQwAAgD9DAACAPxAyIAYgAikDADcCACACQwAAAABDAAAAABAyIAggAikDACILNwIAIAcgCzcCACAAQQA6ALUBIABBAToAtgEgAEEBOgC3ASAAQQA6ALgBIABCADcCvAEgAEIANwLEASAAQQA2AswBIABBAzYC0AEgAEECNgLUASAAQQA2AtgBIABBAzYC3AEgAEEANgLgASACQ///f/9D//9//xAyIAkgAikDADcCACACQ///f/9D//9//xAyIAogAikDADcCACAAQwAAwEA4AihBACEBA0AgAEGACGogAUECdGpDAACAvzgCACAAQewHaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEFRw0AC0EAIQEDQCAAQdAYaiABQQJ0akMAAIC/OAIAIABB0AhqIAFBAnRqQwAAgL84AgAgAUEBaiIBQYAERw0AC0EAIQEDQCAAQdAoaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEVRw0ACyAEJAQLNAECfyMEIQQjBEEQaiQEIARBCGoiBSABIAIQwgogBCADEG8gACAFIAQQgQEgBBAxIAQkBAtCAQJ/IwQhBCMEQRBqJAQgBCADEDQgBEEEaiIDIAEgAiAEIABBA3FBhglqEQoAIAMQfSEFIAMQMSAEEDEgBCQEIAULKwEBfxDVByIBQZquBCABGyEBIABCADcCACAAQQA2AgggACABIAEQXBCTAQsxAQF/IwQhASMEQRBqJAQgASAAEJ8BIAEoAgAgASABLAALQQBIGxCEAyABED4gASQEC2UBA38jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQsgUgAUEIaiICIABBmAFqIAEgAEGgAWoQ7QcgAUENaiABLAAMOgAAIAIQ8AchAyACEDEgARAxIAEkBCADCzMBAX8jBCEEIwRBIGokBCAEIAIgAxCzBSAAIAEoAgBBAkGM9wEgBEGfAxEJABBfIAQkBAtPAQN/IwQhASMEQRBqJAQgAUEEaiIDIAA2AgBBsKkEKAIAIQAgAUEIaiICIAMQ7gcgASAAQZwBaiACIABBoAFqEO0HIAEQMSACEDEgASQECwcAIAAQmRELBwAgABCXEQtOAQF/QbCpBCgCACIDQZgBaiAAEIgBIANBnAFqIAEQiAEgA0GgAWogAhCIAQJAAkAgABBbDQAgARBbDQBBJkEsEM4HDAELQQBBABDOBwsLTgECfyMEIQQjBEEQaiQEIARBCGoiBSABEDQgBEEEaiIBIAIQNCAEIAMQNCAFIAEgBCAAQf8AcUGUCWoRBwAgBBAxIAEQMSAFEDEgBCQECyMBAX8jBCECIwRBEGokBCACIAEQUzYCACAAIAIQ7gcgAiQECykBAn8jBCEBIwRBEGokBCABQQFqIgIgASwAADoAACAAEPAHEEEgASQECwcAIAAQnxELKgECfwJ/IwQhASMEQRBqJARByckCQQJBhPcBQdrJAkElQSUQAiABCyQECwkAIAAgARCeEQsqAQJ/An8jBCEBIwRBEGokBEGzyQJBBEHgyQFB8ckCQQtBCRACIAELJAQLCwAgACABIAIQnBELJAEBf0EAEMAGIQEgAEIANwIAIABBADYCCCAAIAEgARBcEJMBCxoAIAAsAAtBAEgEfyAAKAIABSAAC0EAEMEGCwcAIAAQlhELBwAgABCVEQsqAQJ/An8jBCEBIwRBEGokBEHwxwJBBEHwyQFB3MoCQQFBARACIAELJAQLDQAgACABIAIgAxCTEQsJACAAIAEQjxELCQAgACABEI4RCwcAIAAQjRELKgECfwJ/IwQhASMEQRBqJARBn8cCQQRBgMoBQYnLAkEUQRoQAiABCyQECwsAIAAgASACEIgRCyoBAn8CfyMEIQEjBEEQaiQEQY/HAkEDQaj3AUGPywJBAUEBEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEGsxgJBBEGQygFBlMsCQQFBARACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB+8UCQQJBwPcBQdrJAkEkQRMQAiABCyQECxEAIAAgASACIAMgBCAFEIYRCxEAIAAgASACIAMgBCAFEIMRCwcAIAAQghELKgECfwJ/IwQhASMEQRBqJARBocUCQQNB4PcBQZrLAkEjQQgQAiABCyQECwsAIAAgASACEP8QCyoBAn8CfyMEIQEjBEEQaiQEQYPFAkEEQcDKAUGJywJBE0EZEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHyxAJBBUHQygFByssCQQFBARACIAELJAQLDQAgACABIAIgAxD8EAsqAQJ/An8jBCEBIwRBEGokBEHlxAJBBUHwygFB58sCQQFBARACIAELJAQLDwAgACABIAIgAyAEEPkQCyoBAn8CfyMEIQEjBEEQaiQEQdPEAkECQYj4AUHayQJBI0EiEAIgAQskBAsiACABEKwKIQEgAEIANwIAIABBADYCCCAAIAEgARBcEJMBCyoBAX8jBCEBIwRBEGokBCABQZipBCgCAEG8MWo2AgAgACABEPcQIAEkBAsqAQF/IwQhASMEQRBqJAQgAUGYqQQoAgBB3DdqNgIAIAAgARDkByABJAQLMAECfyMEIQIjBEEQaiQEIAIgATYCACACQQQgAEHAA2oQcCgCABC7ASEDIAIkBCADCyoBAn8CfyMEIQEjBEEQaiQEQZTEAkEBQaT3AUG4zAJBAUEBEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEGExAJBA0GQ+AFBmssCQSJBGBACIAELJAQLCQAgACABEPQQCwcAIAAQ8hALCQAgACABEPEQCwkAIAAgARDwEAsJACAAIAEQ7xALKgECfwJ/IwQhASMEQRBqJARBn8ECQQRBkMsBQfHJAkEKQQcQAiABCyQECwsAIAAgASACEO0QCwcAIAAQngELHQAgACwAC0EASAR/IAAoAgAFIAALIAEQ6wRBAEcLKgECfwJ/IwQhASMEQRBqJARBq8ACQQVBoMsBQbvMAkEOQQwQAiABCyQECx4AIAAsAAtBAEgEfyAAKAIABSAAC0EAQQAgAxDsBAsHACAAEOwQCwkAIAAgARDrEAsYACAALAALQQBIBH8gACgCAAUgAAsQlggLCwAgACABIAIQ6BALGgAgACwAC0EASAR/IAAoAgAFIAALIAEQqwgLGAAgACwAC0EASAR/IAAoAgAFIAALEJMKCwkAIAAgARDiEAsqAQJ/An8jBCEBIwRBEGokBEHEvgJBBEHAywFBicsCQRJBFxACIAELJAQLCwAgACABIAIQ4BALCQAgACABEN8QCwsAIAAgASACEN4QCxgAIAAsAAtBAEgEfyAAKAIABSAACxCpAwsJACAAIAEQ3BALGAAgACwAC0EASAR/IAAoAgAFIAALEKsDCyoBAn8CfyMEIQEjBEEQaiQEQem9AkEFQdDLAUG7zAJBDUELEAIgAQskBAsNACAAIAEgAiADENsQCyoBAn8CfyMEIQEjBEEQaiQEQd69AkEFQfDLAUG7zAJBDEEKEAIgAQskBAsNACAAIAEgAiADENoQCxoAIAAsAAtBAEgEfyAAKAIABSAACyABEK8ICwcAIAAQ2RALKgECfwJ/IwQhASMEQRBqJARB6bwCQQRBkMwBQd3NAkECQQEQAiABCyQECwsAIAAgASACENcQCyoBAn8CfyMEIQEjBEEQaiQEQeG8AkEDQez4AUHjzQJBEUEdEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHZvAJBA0H4+AFB480CQRBBHBACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB0bwCQQNBhPkBQePNAkEPQRsQAiABCyQECxoAIAAsAAtBAEgEfyAAKAIABSAACyABELUICyoBAn8CfyMEIQEjBEEQaiQEQbO8AkEEQaDMAUGJywJBEUEVEAIgAQskBAscACAALAALQQBIBH8gACgCAAUgAAsgASACEM8FCwkAIAAgARDVEAsRACAAIAEgAiADIAQgBRDUEAsqAQJ/An8jBCEBIwRBEGokBEGPvAJBBkGwzAFB6M0CQRFBBhACIAELJAQLDwAgACABIAIgAyAEEM0QCw0AIAAgASACIAMQyhALKgECfwJ/IwQhASMEQRBqJARB9bsCQQVB0MwBQbvMAkELQQgQAiABCyQECw0AIAAgASACIAMQyBALCwAgACABIAIQxxALNQEBfyAALAALQQBIBEAgACgCACEACxA8IgIsAH8Ef0EABSACIAAQXiABQRpyIABBABDTAgsLBwAgABC9CAsYACAALAALQQBIBH8gACgCAAUgAAsQvggLKgECfwJ/IwQhASMEQRBqJARB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AAtBAEgEfyAAKAIABSAACyABELkCCyoBAn8CfyMEIQEjBEEQaiQEQc61AkEEQfDSAUGJywJBDkEJEAIgAQskBAsLACAAIAEgAhC1DwsJACAAIAEQsw8LKgECfwJ/IwQhASMEQRBqJARBubUCQQhBgNMBQYfRAkEEQQEQAiABCyQECxMAIAAgASACIAMgBCAFIAYQrw8LKgECfwJ/IwQhASMEQRBqJARBs7UCQQdBoNMBQZ/TAkEBQQQQAiABCyQECxEAIAAgASACIAMgBCAFEK0PCwkAIAAgARCsDwsaACAALAALQQBIBH8gACgCAAUgAAsgARCDCQsYACAALAALQQBIBH8gACgCAAUgAAsQxAQLCQAgACABEKkPC6cEAgF/AX4jBCEBIwRBEGokBCAAEDogAEEIahA6IABBEGoQOiAAQRhqEDogAEEgahA6IABBLGoQOiAAQcwAahBmIABB3ABqEGYgAEGAAWoQOiAAQYgBahBoIABBADYCsAEgAEEANgKsASAAQQA2ArQBIABBuAFqEGggAEHEAWoQaCAAQQA2AtQBIABBADYC0AEgAEEANgLYASAAQegBahDnAiAAQewBahDnAiAAQfABahDnAiABQwAAAABDAAAAABAyIAAgASkDACICNwIYIAAgAjcCECAAIAI3AgggACACNwIAIAFDAAAAAEMAAAAAEDIgACABKQMAIgI3AiwgACACNwIgIABDAAAAADgCNCAAQwAAAAA4AiggAEMAAIC/OAI4IABCADcCPCAAQgA3AkQgARBmIAAgASkCADcCXCAAIAEpAgg3AmQgACABKQIANwJMIAAgASkCCDcCVCAAQQA2AnggAEEANgJ0IABBADYCbCAAQQE2AnAgAEEAOgB8IABBADoAfSAAQQA6AH4gAUMAAAAAQwAAAAAQMiAAIAEpAwA3AoABIABBADYClAEgAEEBNgKcASAAQQE2ApgBIABDAAAAADgCpAEgAEEANgKgASAAQwAAgL84AqgBIABCADcC3AEgAEEANgLkASABEOcCIAAgASgCADYC6AEgARDnAiAAIAEoAgA2AuwBIAEQ5wIgACABKAIANgLwASAAQQA2AvQBIAEkBAsaACAALAALQQBIBH8gACgCAAUgAAtBABC5AQsHACAAEKAPC9AHAgV/AX4jBCEFIwRBEGokBCAFIQMgAEEMahA6IABBFGoQOiAAQRxqEDogAEEkahA6IABBLGoQOiAAQTRqEDogAEE8ahA6IABB2ABqEDogAEHgAGoQOiAAQegAahA6IABB8ABqEDogAEG4AWoQOiAAQcABahA6IABByAFqEMoSIABBwANqIgYiBEEANgIEIARBADYCACAEQQA2AgggAEHMA2oQZiAAQdwDahBmIABB7ANqEGYgAEH8A2oQZiAAQYwEahBmIABBpARqEN4DIABB1ARqEGggAEEANgLkBCAAQQA2AuAEIABBADYC6AQgAEH4BGoiByABQbwxahD4ByAAQagGaiEEIABBiAZqIQEDQCABEGYgAUEQaiIBIARHDQALIAAgAhDaBjYCACAAQQRqIgEgAkEAQQAQuwE2AgAgBiABEHggAEEANgIIIANDAAAAAEMAAAAAEDIgACADKQMANwIMIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AhwgACAINwIUIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AjQgACAINwIsIANDAAAAAEMAAAAAEDIgACADKQMANwI8IABDAAAAADgCRCAAQwAAAAA4AkggACACEFxBAWo2AkwgACAAQf6FAhBeNgJQIABBADYCVCADQwAAAABDAAAAABAyIAAgAykDADcCWCADQ///f39D//9/fxAyIAAgAykDADcCYCADQwAAAD9DAAAAPxAyIAAgAykDADcCaCADQwAAAABDAAAAABAyIAAgAykDADcCcCAAQQA7AYQBIABCADcCeCAAQQA7AYABIABBADoAggEgAEF/OwGGASAAQX87AYgBIABBADYCjAEgAEF/NgKUASAAQX82ApABIABBADoAmAEgAEEANgKcASAAQX82AqABIABBADYCqAEgAEEANgKkASAAQQ82ArQBIABBDzYCsAEgAEEPNgKsASADQ///f39D//9/fxAyIAAgAykDACIINwLAASAAIAg3ArgBIABBfzYCnAQgAEMAAAAAOAKgBCAAQwAAgD84AuwEIABBfzYC8AQgACAHNgL0BCAAIAAoAgA2AqQFIABBADYChAYgAEEANgKABiAAQgA3AuwFIABCADcC9AUgAxBmIAAgAykCADcCmAYgACADKQIINwKgBiAAIAMpAgA3AogGIAAgAykCCDcCkAYgAEEANgL8BSAAQX82AqwGIABBfzYCqAYgAEH/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ICAtICAgICAgICAgIFguWCAgICAgICAgICAtWC4uLi4uWCAgICAgICAgICAtICAgICAgICAgIFguLi4uLlgtICAgIFguLlggICAgICAgICAtLS0gICAgICAgICAtWFhYLlhYWC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtWC4uLi5YICAgICAgICAgICAtICAgICAgICAgICBYLi4uLlgtICAgIFguLlggICAgICAgICBYICAgICAgICAgICAtICBYLlggIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtWC4uLlggICAgICAgICAgICAtICAgICAgICAgICAgWC4uLlgtICAgIFguLlggICAgICAgICBYWCAgICAgICAgICAtICBYLlggIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtWC4uWC5YICAgICAgICAgICAtICAgICAgICAgICBYLlguLlgtICAgIFguLlggICAgICAgICBYLlggICAgICAgICAtICBYLlggIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtWC5YIFguWCAgICAgICAgICAtICAgICAgICAgIFguWCBYLlgtICAgIFguLlhYWCAgICAgICBYLi5YICAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWFggICBYLlggICAgICAgICAtICAgICAgICAgWC5YICAgWFgtICAgIFguLlguLlhYWCAgICBYLi4uWCAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgWC5YICAgICAgICAtICAgICAgICBYLlggICAgICAtICAgIFguLlguLlguLlhYICBYLi4uLlggICAgICAtICBYLlggIC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgIFguWCAgICAgICAtICAgICAgIFguWCAgICAgICAtICAgIFguLlguLlguLlguWCBYLi4uLi5YICAgICAtICBYLlggIC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICBYLlggICAgICAtICAgICAgWC5YICAgICAgICAtWFhYIFguLlguLlguLlguLlhYLi4uLi4uWCAgICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgWC5YICAgWFgtWFggICBYLlggICAgICAgICAtWC4uWFguLi4uLi4uLlguLlhYLi4uLi4uLlggICAtICBYLlggIC0gICBYLlggICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgIFguWCBYLlgtWC5YIFguWCAgICAgICAgICAtWC4uLlguLi4uLi4uLi4uLlhYLi4uLi4uLi5YICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgICBYLlguLlgtWC4uWC5YICAgICAgICAgICAtIFguLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uWCAtWFhYLlhYWC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICAgICAgWC4uLlgtWC4uLlggICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uLlgtWC4uLi4uWC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgICAgICBYLi4uLlgtWC4uLi5YICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uWFhYWFgtWFhYWFhYWC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgICAgIFguLi4uLlgtWC4uLi4uWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uLlhYLi4uWC4uWCAgICAtLS0tLS0tLS0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtWFhYWFhYWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uWCBYLi5YIFguLlggICAtICAgICAgIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tICAgIFguLi4uLi4uLi4uWCBYLlggIFguLlggICAtICAgICAgIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAtICAgIFguLi4uLi4uLi4uWCBYWCAgICBYLi5YICAtICAgICAgIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICBYLi5YICAgICAgICAgIC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICAgWFggICAgICAgICAgIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAtICAgICBYWFhYWFhYWFhYICAtLS0tLS0tLS0tLS0gICAgICAgIC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0gICAgICAgICAgICAgICAgICAgIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAQaAiC8xdN10pIyMjIyMjI2hWMHFzJy8jIyNbKSwjIy9sOiQjUTY+IyM1W240Mj5jLVRIYC0+PiMvZT4xMU5OVj1CdigqOi5GP3V1IyhnUlUubzBYR0hgJHZoTEcxaHh0OT9XYCMsNUxzQ3AjLWk+LnIkPCQ2cEQ+TGInOzlDcmM2dGdYbUtWZVUyY0Q0RW8zUi8yKj5dYihNQzskalBmWS47aF5gSVdNOTxMaDJUbFMrZi1zJG82UTxCV0hgWWlVLnhmTHEkTjskMGlSL0dYOlUoamNXMnAvVypxPy1xbW5VQ0k7akhTQWlGV00uUiprVUBDPUdIP2E5d3A4ZiRlLi00XlFnMSlRLUdMKGxmKHIvN0dyUmd3ViVNUz1DI2A4TkQ+UW8jdCdYIyh2I1k5dzAjMUQkQ0lmO1cnI3BXVVBYT3V4WHVVKEg5TSgxPHEtVUUzMSNeLVYnOElSVW83UWYuL0w+PUtlJCQnNUYlKV0wXiMwWEBVLmE8cjpRTHRGc0xjTDYjI2xPaikjLlk1PC1SJktnTHdxSmZMZ04mO1E/Z0leI0RZMnVMaUBeck1sOXQ9Y1dxNiMjd2VnPiRGQmpWUVRTRGdFS25JUzdFTTk+Wlk5dzAjTDs+PiNNeCY0TXZ0Ly9MW01rQSNXQGxLLk4nWzAjN1JMXyYjdytGJUh0RzlNI1hMYE4mLixHTTRQZzstPG5MRU5odng+LVZzTS5NMHJKZkxIMmVUTWAqb0pNSFJDYE5rZmltTTJKLFctalhTOilyMHdLI0BGZ2UkVT5gdydON0cjJCNmQiMkRV4kIzo5OmhrK2VPZS0tNngpRjcqRSU/NzYlXkdNSGVQVy1aNWwnJkdpRiMkOTU2OnJTP2RBI2ZpSzopWXIrYCYjMGpAJ0RiRyYjXiRQRy5MbCtETmE8WENNS0VWKk4pTE4vTipiPSVRNnBpYS1YZzhJJDxNUiYsVmRKZSQ8KDdHO0NrbCcmaEY7OyQ8Xz1YKGIuUlMlJSkjIyNNUEJ1dUUxVjp2JmNYJiMybSMoJmNWXWBrOU9oTE1ibiVzJEcyLEIkQmZEM1gqc3A1I2wsJFIjXXhfWDF4S1glYjVVKltyNWlNZlVvOVVgTjk5aEcpdG0rL1VzOXBHKVhQdWA8MHMtKVdUdChnQ1J4SWcoJTZzZmg9a3RNS24zaik8NjxiNVNrXy8wKF5dQWFOIyhwL0w+JlZaPjFpJWgxUzl1NW9AWWFhVyRlK2I8VFdGbi9aOk9oKEN4MiRsTkVvTl5lKSNDRllAQEk7Qk9RKnNSd1p0WnhSY1U3dVc2Q1hvdzBpKD8kUVtjak9kW1A0ZCldPlJPUE9weFRPN1N0d2kxOjppQjFxKUNfPWRWMjZKOzIsXTdvcCRddVFyQF9WNyRxXiVsUXd0dUhZXT1EWCxuM0wjMFBIRE80Zjk+ZENATz5IQnVLUHBQKkUsTitiM0wjbHBSL01yVEVILklBUWsuYT5EWy5lO21jLnhdSXAuUEheJy9hcVVPLyQxV3hMb1cwW2lMQTxRVDs1SEtEK0BxUSdOUSgzX1BMaEU0OFIucUFQU3dRMC9XSz9aLFt4Py1KO2pRVFdBMFhAS0ooX1k4Ti06L003NDovLVpwS3JVc3M/ZCNkWnFdREFia1UqSnFrTCtud1hAQDQ3YDU+dz00aCg5LmBHQ1JVeEhQZVJgNU1qb2woZFVXeFphKD5TVHJQa3JKaVd4YDVVN0YjLmcqanJvaEdnYGNnOmxTVHZFWS9FVl83SDRROVtaJWNudjtKUVlaNXEubDdaZWFzOkhPSVpPQj9HPE5hbGQkcXNdQF1MPEo3YlIqPmd2Ols3TUkyaykuJzIoJDVGTlAmRVEoLClVXVddK2ZoMTgudnNhaTAwKTtEM0A0a3U1UD9EUDhhSnQrO3FVTV09K2InOEA7bVZpQkt4MERFWy1hdUdsODpQSiZEaitNNk9DXU9eKCgjI11gMGkpZHJUOy03WGA9LUgzW2lnVW5QRy1OWmxvLiNrQGgjPU9yayRtPmE+JC0/VG0kVVYoPyNQNllZIycvIyMjeGU3cS43M3JJMypwUC8kMT5zOSlXLEpyTTdTTl0nLzRDI3YkVWAwI1YuWzA+eFFzSCRmRW1QTWdZMnU3S2goRyVzaUlmTFNvUytNSzJlVE0kPTUsTThwYEEuO19SJSN1W0sjJHg0QUc4LmtLL0hTQj09LSdJZS9RVHRHPy0uKl5OLTRCL1pNXzNZbFFDNyhwN3EpJl0oYDZfYykkLypKTChMLV4oXSR3SU1gZFB0T2RHQSxVMzp3Mk0tMDxxLV1MXz9eKTF2dycuLE1Sc3FWci5MO2FOJiMvRWdKKVBCY1stZj4rV29tWDJ1N2xxTTJpRXVtTVRjc0Y/LWFUPVotOTdVRW5YZ2xFbjFLLWJuRU9gZ3VGdChjJT07QW1fUXNAakxvb0kmTlg7XTAjajQjRjE0O2dsOC1HUXBnd2hycTgnPWxfZi1iNDknVU9xa0x1Ny0jI29EWTJMKHRlK01jaCZnTFl0SixNRXRKZkxoJ3gnTT0kQ1MtWlolUF04Ylo+I1M/WVkjJVEmcSczXkZ3Jj9EKVVETnJvY00zQTc2Ly9vTD8jaDdnbDg1W3FXL05ET2slMTZpajsrOjFhJ2lOSWRiLW91OC5QKncsdjUjRUkkVFdTPlBvdC1SKkgnLVNFcEE6ZylmK08kJSVga0EjRz04Uk1tRzEmT2A+dG84YkNdVCYkLG4uTG9PPjI5c3AzZHQtNTJVJVZNI3E3J0RIcGcrI1o5JUhbSzxMJWEyRS1ncldWTTNAMj0tazIydExdNCQjIzZXZSc4VUpDS0VbZF89JXdJOyc2WC1Hc0xYNGpeU2dKJCMjUip3LHZQM3dLI2lpVyYjKmheRCZSP2pwNysvdSYjKEFQIyNYVThjJGZTWVctSjk1Xy1EcFtnOXdjTyYjTS1oMU9jSmxjLSp2cHcweFVYJiNPUUZLTlhAUUknSW9QcDduYixRVS8vTVEmWkRrS1ApWDxXU1ZMKDY4dVZsJiNjJ1swIyhzMVgmeG0kWSVCNypLOmVEQTMyM2o5OThHWGJBI3B3TXMtamdEJDlRSVNCLUFfKGFONHhvRk1eQEM1OEQwK1ErcTNuMCMzVTFJbkRqRjY4Mi1Tak1YSkspKGgkaHh1YV9LXXVsOTIlJ0JPVSYjQlJSaC1zbGc4S0RscjolTDcxS2E6LkE7JVlVTGpEUG1MPExZczhpI1h3Sk9ZYUtQS2MxaDonOUtlLGcpYiksNzg9STM5Qjt4aVkkYmdHdy0mLlppOUluWER1WWElRypmMkJxN21uOV4jcDF2diUjKFdpLTsvWjVobzsjMjo7JWQmI3g5djY4QzVnP250WDBYKXBUYDslcEIzcTdtZ0dOKTMlKFA4blRkNUw3R2VBLUdMQCslSjN1MjooWWY+ZXRgZTspZiNLbTgmK0RDJEk0Nj4jS3JdXXUtWz05OXR0czEucWIjcTcyZzFXSk84MXErZU4nMDMnZU0+JjFYeFktY2FFbk9qJTJuOCkpLD9JTFI1Xi5JYm48LVgtTXE3W2E4MkxxOkYmI2NlK1M5d3NDSyp4YDU2OUU4ZXcnSGVdaDpzSVsyTE0kW2d1a2EzWlJkNjp0JUlHOjskJVlpSjpOcT0/ZUF3Oy86bm5EcTAoQ1ljTXBHKXFMTjQkIyMmSjxqJFVwSzxRNGExXU11cFdeLXNqXyQlW0hLJSdGIyMjI1FSWko6OlkzRUdsNCdAJUZraUFPZyNwWyMjT2BndWtUZkJIYWdMPExIdyVxJk9WMCMjRj02LzpjaEltMEBlQ1A4WF06a0ZJJWhsOGhnT0BSY0JoUy1AUWIkJSttPWhQRExnKiVLOGxuKHdjZjMvJ0RXLSQubFI/bltuQ0gtZVhPT05USmxoOi5SWUYlMydwNnNxOlVJTUE5NDUmXkhGUzg3QCRFUDJpRzwtbENPJCVjYHVLR0QzckMkeDBCTDhhRm4tLWBrZSUjSE1QJ3ZoMS9SJk9fSjkndW0sLjx0eFtAJXdzSmsmYlVUMmAwdU12N2dnI3FwL2lqLkw1NidobDsuczVDVXJ4ak9NNy0jIy5sK0F1J0EmTzotVDcyTF1QYCY9O2N0cCdYU2NYKnJVLj4tWFR0LCVPVlU0KVMxK1ItI2RnMC9Obj9LdTFeMGYkQipQOlJvd3dtLWAwUEtqWURETSczXWQzOVZaSEVsNCwuaiddUGstTS5oXiY6MEZBQ20kbWFxLSZzZ3cwdDcvNiheeHRrJUx1SDg4RmotZWttPkdBI18+NTY4eDYoT0ZSbC1JWnBgJmIsX1AnJE08Sm5xNzlWc0pXL21XUypQVWlxNzY7XS9OTV8+aExieGZjJG1qYCxPOyYlVzJtYFpoOi8pVWV0dzphSiVdSzloOlRjRl11Xy1TajksVkszTS4qJyYwRFtDYV1KOWdwOCxrQVddJSg/QSVSJGY8LT5adHMnXmtuPS1eQGM0JS1wWTZxSSVKJTFJR3hmTFU5Q1A4Y2JQbFh2KTtDPWIpLDwybU92UDh1cCxVVmYzODM5YWNBV0FXLVc/I2FvL14jJUtZbzhmUlVMTmQyLj4lbV1VSzpuJXIkJ3N3XUo7NXBBb09fIzJtTzNuLCc9SDUoZXRIZypgK1JMZ3Y+PTRVOGd1RCRJJUQ6Vz4tcjVWKiVqKlc6S3Zlai5McCQ8TS1TR1onOitRX2srdXZPU0xpRW8oPGFEL0s8Q0NjYCdMeD4nPzsrK08nPigpakxSLV51NjhQSG04WkZXZStlajhoOjlyNkwqMC8vYyZpSCZSOHBSYkEjS2ptJXVwVjFnOmFfI1VyN0Z1QSModFJoIy5ZNUsrQD8zPC04bTAkUEVuO0o6cmg2P0k2dUc8LWB3TVUnaXJjcDBMYUVfT3RsTWImMSM2VC4jRkRLdSMxTHcldSUrR00rWCdlP1lMZmpNW1ZPME1idUZwNzs+USYjV0lvKTBARiVxN2MjNFhBWE4tVSZWQjxIRkYqcUwoJC9WLDsoa1haZWpXT2A8WzU/P2V3WSgqOT0ld0RjOyx1PCc5dDNXLShIMXRoMytHXXVjUV1rTHM3ZGYoJC8qSkxdQCp0N0J1X0czXzdtcDc8aWFRak9ALmtMZzt4M0IwbHFwN0hmLF5aZTctIyNAL2M1OE1vKDM7a25wMCUpQTc/LVcrZUknbzgpYjxuS253J0hvOEM9WT5wcUI+MGllJmpoWls/aUxSQEBfQXZBLWlRQyg9a3NSWlJWcDdgLj0rTnBCQyVyaCYzXVI6OFhEbUU1XlY4Tyh4PDxhRy8xTiQjRlgkMFY1WTZ4J2FFckkzSSQ3eCVFYHY8LUJZLCklLT9Qc2YqbD8lQzMubU0oPS9NMDpKeEcnPzdXaEglbydhPC04MGcwTkJ4b08oR0g8ZE1dbi4rJXFAakg/Zi5Vc0oyR2dzJjQ8LWU0NyZLbCtmLy85QGBiKz8uVGVOXyZCOFNzP3Y7XlRyaztmI1l2SmtsJnckXT4tK2s/Jyg8Uzo2OHRxKldvRGZadSc7bU0/OFhbbWE4VyUqYC09O0QuKG5jNy87KWc6VDE9XkokJkJSVigtbFRtTkI2eHFCW0AwKm8uZXJNKjxTV0ZddTI9c3QtKig2dj5eXShILmFSRVpTaSwjMTpbSVhhWkZPbTwtdWkjcVVxMiQjI1JpO3U3NU9LIyhSdGFXLUstRmBTK2NGXXVOYC1LTVElclAvWHJpLkxSY0IjIz1ZTDNCZ00vM01EP0BmJjEnQlctKUp1PEwyNWdsOHVoVm0xaEwkIyMqOCMjIydBMy9Ma0tXKyhecldYPzVXXzhnKWEobSZLOFA+I2JtbVdDTWtrJiNUUmBDLDVkPmcpRjt0LDQ6QF9sOEcvNWg0dlVkJSYlOTUwOlZYRCdRZFdvWS1GJEJ0VXdtZmUkWXFMJzgoUFdYKFA/XkBQbzMkIyNgTVNzP0RXQlovUz4rNCU+ZlgsVld2L3cnS0RgTFA1SWJIO3JUVj5uM2NFSzhVI2JYXWwtL1YrXmxqMzt2bE1iJls1WVE4I3Bla1g5SlAzWFVDNzJMLCw/K05pJmNvN0Fwbk8qNU5LLCgoVy1pOiQsa3AnVURBTyhHMFNxN01WakpzYkl1KSdaLCpbPmJyNWZYXjpGUEFXci1tMktnTDxMVU4wOThrVEYmI2x2bzU4PS92akRvOy47KUthKmhMUiMvaz1yS2J4dVZgPlFfbk42Jzh1VEcmIzFUNWcpdUx2Ojg3M1VwVExnSCsjRmdwSCdfbzE3ODBQaDhLbXhRSjgjSDcyTDRANzY4QFRtJlFoNENCLzVPdm1BJixRJlFiVW9pJGFfJTNNMDFIKTR4N0leJktRVmd0Rm5WKztbUGM+W200ay8vLF0xPyNgVllbSnIqMyYmc2xSZkxpVlpKOl0/PUszU3c9WyQ9dVJCPzN4azQ4QGFlZzxaJzwkIzRIKTYsPmUwalQ2J04jKHElLk89PzJTXXUqKG08LVY4SicoMSlHXVs2OGhXJDUncVtHQyY1amBURT9tJ2VzRkdOUk0paixmZlo/LXF4ODstPmc0dCo6Q0lQL1tRYXA3LzknIygxc2FvN3ctLnFOVWRrSil0Q0YmI0JeO3hHdm4ycjlGRVBGRkZjTEAuaUZOa1R2ZSRtJSNRdlFTOFVAKTJaKzNLOkFLTTVpc1o4OCtkS1EpVzY+SiVDTDxLRT5gLmQqKEJgLW44RDlvSzxVcF1jJFgkKCwpTThadDcvW3Jka3FUZ2wtMGN1R012Jz8+LVhWMXFbJy01aydjQVo2OWU7RF8/JFpQUCZzXis3XSkkKiQjQFFZaTksNVAmIzlyKyQlQ0U9Njg+SzhyMD1kU0MlJShAcDcubTdqaWxRMDInMC1WV0FnPGEvJyczdS49NEwkWSk2ay9LOl9bMz0manZMPEwwQy8yJ3Y6XjstRElCVyxCNEU2ODprWjslPzgoUThCSD1rTzY1Qlc/eFNHJiNAdVUsRFMqLD8uKyhvKCMxdkNTOCNDSEY+VGxHVydiKVRxN1ZUOXFeKl4kJC46Jk5AQCQmKVdIdFBtKjVfck8wJmUlSyYjLTMwaihFNCMnWmIuby8oVHBtJD5LJ2ZAW1B2RmwsaGZJTlROVTZ1JzBwYW83JVhVcDldNS4+JWhgOF89VllieHVlbC5OVFNzSmZMYWNGdTNCJ2xRU3UvbTYtT3FlbThUK29FLS0kMGEva111ajlFd3NHPiV2ZVIqaHZeQkZwUWo6SycjU0osc0ItJyNdKGouTGc5MnJUdy0qbiVALzszOXJySkYsbCNxViVPcnRCZUM2Lyw7cUIzZWJOV1s/LEhxajJMLjFOUCZHalVSPTFEOFFhUzNVcCZAKjl3UD8rbG83Yj9AJSdrNGBwMFokMjIlSzMraUNaaj9YSk40Tm0mK1lGXXVALVckVSVWRVEvLCw+PiMpRDxoI2ApaDA6PFE2OTA5dWErJlZVJW4yOmNHM0ZKLSVAQmotRGdMcmBIdyZIQUtqS2pzZUs8L3hLVCopQixOOVgzXWtyYzEydCdwZ1RWKEx2LXRMW3hnXyU9TV9xN2FeeD83VWJkPiMlOGNZI1laPz0sYFdkeHUvYWUmI3c2KVI4OXRJIzZAcycoNkJmN2EmP1M9XlpJX2tTJmFpYCY9dEU3MkxfRCw7XlIpN1skczxFaCNjJilxLk1YSSUjdjlST2E1RlpPJXNGN3E3TndiJiNwdFVKOmFxSmUkU2w2OCUuRCMjI0VDPjw/LWFGJiNSTlF2Pm84bEtOJTUvJCh2ZGZxNytlYkEjdTFwXW92VUtXJlklcV0nPiQxQC1beGZuJDdaVHA3bU0sRyxLbzdhJkd1JUdbUk14SnNbME1NJXdjaS5MRkRLKSg8Y2BROE4pakVJRiorP1AyYThnJSkkcV1vMmFIOEMmPFNpYkMvcSwoZTp2Oy1iIzZbJE50RFo4NEplMktOdkIjJFA1P3RRM250KDBkPWouTFFmLi9MbDMzKyg7cTNMLXc9OGRYJCNXRiZ1SUpALWJmST4lOl9pMkI1Q3NSOCY5WiYjPW1QRW5tMGZgPCZjKVFMNXVKIyV1JWxKaitELXI7Qm9GJiM0RG9TOTdoNWcpRSNvOiZTNHdlREYsOV5Ib2VgaCpMK19hKk5yTFctMXBHXyYyVWRCODZlJUIvOj0+KU40eGVXLip3ZnQtOyQnNTgtRVNxcjxiP1VJKF8lQFtQNDY+I1VgJzZBUV1tJjYvYFo+I1M/WVkjVmM7cjdVMiYzMjZkPXcmSCMjIyM/VFpgKjQ/Ji5NSz9MUDhWeGc+JFtRWGMlUUp2OTIuKERiKkIpZ2IqQk05ZE0qaEpNQW8qYyYjYjB2PVBqZXJdJGdHJkpYRGYtPidTdHZVNzUwNWw5JEFGdmdZUkleJjxeYjY4P2ojcTlRWDRTTSdSTyMmc0wxSU0uckpmTFVBajIyMV1kIyNEVz1tODN1NTsnYll4LCpTbDBoTChXOzskZG9CJk8vVFE6KFpeeEJkTGpMPExuaTsnJ1guYCQjOCsxR0Q6ayRZVVdzYm44b2doNnJ4WjJaOV0lbmQrPlYjKjhVXzcyTGgrMlE4Q2owaTo2aHAmJEMvOnAoSEs+VDhZW2dIUTRgNCknJEFiKE5vZiVWJzhoTCYjPE5FZHRnKG4nPVMxQShRMS9JJjQoWyVkTWAsSXUnMTpfaEw+U2ZEMDcmNkQ8ZnA4ZEhNNy9nK3RsUE45SipyS2FQY3QmPyd1QkNlbV5qbiU5X0spPCxDNUszcz01ZyZHbUpiKltTWXE3SztUUkxHQ3NNLSQkO1MlOllAcjdBSzBwcHJwTDxMcmgscTdlLyVLV0s6NTBJXittJ3ZpYDM/JVpwKzwtZCskTC1TdjpALm8xOW4kczAmMzk7a247UyVCU3EqJDNXb0pTQ0x3ZVZbYVonTVFJak88NztYLVg7JitkTUx2dSNeVXNHRUM5V0VjW1god0k3IzIuKEYwalYqZVpmPC1RdjNKLWMrSjVBbHJCIyRwKEg2OEx2RUEncTNuMCNtLFtgKjhGdClGY1lnRXVkXUNXZm02OCwoYUxBJEBFRlRnTFhvQnEvVVBscDc6ZFsvO3JfaXg9OlRGYFM1SC1iPExJJkhZKEs9aCMpXUxrJEsxNGxWZm06eCRIPDNeUWw8TWAkT2hhcEJua3VwJ0QjTCRQYl9gTipnXTJlO1gvRHRnLGJzaiZLIzJbLTppWXInX3dnSClOVUlSOGExbiNTP1llaidoOF41OFViWmQrXkZLRCpUQDs2QTdhUUNbSzhkLSh2NkdJJHg6VDwmJ0dwNVVmPkBNLipKOjskLXJ2MjknTV04cU12LXRMcCwnODg2aWFDPUhiKllKb0tKLChqJUs9SGBLLnY5SGdncUJJaVp1J1F2QlQuIz0pMHVrcnVWJi4pMz0oXjFgbypQajQ8LTxhTigoXjcoJyNaMHdLIzVHWEA3dV1bYCpTXjQzOTMzQTRybF1bYCpPNENnTEVsXXYkMVEzQWVGMzdkYlhrLC4pdmojeCdkYDtxZ2JRUiVGVywyKD9MTz1zJVNjNjglTlAnIyNBb3RsOHg9QkUjajFVRChbMyRNKF1VSTJMWDNScEtOQDsvI2YnZi8mX210JkYpWGRGPDl0NClRYS4qa1RMd1EnKFRUQjkueEgnPiNNSitnTHE5LSMjQEh1WlBOMF11Omg3LlQuLkc6OyQvVXNqKFQ3YFE4dFQ3MkxuWWw8LXF4ODstSFY3US0mWGR4JTFhLGhDPTB1K0hsc1Y+bnVJUUwtNTxOPylOQlMpUU4qX0ksPyYpMidJTSVMM0kpWCgoZS9kbDImOCc8TTpeI00qUStbVC5YcmkuTFlTM3YlZkZgNjhoO2ItWFsvRW4nQ1IucTdFKXAnL2tsZTJITSx1O14lT0tDLU4rTGwlRjlDRjxOZideI3QyTCw7MjdXOjBPQDYjI1U2Vzc6JHJKZkxXSGokIyl3b3FCZWZJWi5QSzxiKnQ3ZWQ7cCpfbTs0RXhLI2hAJl0+Xz5Aa1hRdE1hY2ZELm0tVkFiODtJUmVNMyR3ZjAnJ2hyYSpzbzU2OCdJcCZ2UnM4NDknTVJZU3AlOnQ6aDVxU2d3cEVyJEI+USw7cyhDIyQpYHN2UXVGJCMjLUQsIyMsZzY4QDJbVDsuWFNkTjlRZSlycHQuX0stIzV3RilzUCcjI3AjQzBjJS1HYiVoZCs8LWonQWkqeCYmSE1rVF1DJ09TbCMjNVJHW0pYYUhOO2QndUEjeC5fVTsuYFBVQChaM2R0NHIxNTJAOnYsJ1IuU2ondyMwPC07a1BJKUZmSiYjQVlKJiMvLyk+LWs9bT0qWG5LJD49KTcyTF0wSSU+Lkc2OTBhOiQjIzwsKTs/OzcyIz94OStkO15WJzk7allAOyliciNxXllRcHg6WCNUZSRaXic9LT1iR2hMZjpENiZiTndaOS1aRCNuXjlIaExNcjVHOyddZCY2J3dZbVRGbUw8TEQpRl4lW3RDJzg7KzlFI0MkZyUjNVk+cTl3ST5QKDltSVs+a0MtZWtMQy9SJkNIK3MnQjtLLU02JEVCJWlzMDA6K0E0Wzd4a3MuTHJOazAmRSl3SUxZRkAyTCcwTmIkK3B2PCgyLjc2OC9GclkmaCReM2kmQCtHJUpUJzwtLHZgMztfKUk5TV5BRV1DTj9DbDJBWmcrJTRpVHBUMzxuLSYlSCViPEZEajJNPGhIPSZFaDwyTGVuJGIqYVRYPS04UXhOKWsxMUlNMWNeaiU5czxMPE5GU28pQj8rPC0oR3hzRixeLUVoQCQ0ZFhoTiQrI3J4SzgnamUnRDdrYGU7KTJwWXdQQSdfcDkmQF4xOG1sMV5bQGc0dCpbSk9hKls9UXA3KHFKX29PTF4oJzdmQiZIcS06c2Ysc05qOHhxXj4kVTRPXUdLeCdtOSliQHA3WXN2SzN3XllSLUNkUSo6SXI8KCR1JikjKCY/TDlSZzNIKTRmaUVwXmlJOU84S25UaixdSD9EKnI3J007UHdaOUswRV5rJi1jcEk7LnAvNl92d29GTVY8LT4jJVhpLkx4Vm5yVSg0JjgvUCs6aExTS2okI1UlXTQ5dCdJOnJnTWknRkxAYTowWS11QVszOScsKHZibWEqaFUlPC1TUkZgVHQ6NTQyUl9WViRwQFtwOERWW0EsPzE4MzlGV2RGPFRkZEY8OUFoLTYmOXRXb0RsaF0mMVNwR01xPlRpMU8qSCYjKEFMOFtfUCUuTT52Xi0pKXFPVCpGNUNxMGBZZSUrJEI2aTo3QDBJWDxOK1QrME1sTUJQUSpWaj5Tc0Q8VTRKSFk4a0QyKTJmVS9NIyRlLilUNCxfPThoTGltWyYpOz9Va0snLXg/Jyg6c2lJZkw8JHBGTWBpPD8lVyhtR0RITSU+aVdQLCMjUGAlL0w8ZVhpOkBaOUMuN289QChwWGRBTy9OTFE4bFBsK0hQT1FhOHdEOD1eR2xQYThUS0kxQ2poc0NUU0xKTScvV2w+LVMocXclc2YvQCUjQjY7L1U3S111WmJpXk9jXjJuPGJoUG1Va013PiV0PCknbUVWRScnbmBXbkpyYSReVEt2WDVCPjtfYVNFSycsKGh3YTA6aTRHPy5CY2kuKFhbP2IqKCQsPS1uPC5RJWAoWD0/K0BBbSpKczAmPTNiaDhLXW1MPExvTnMnNiwnODVgMD90LydfVTU5QF1kZEY8I0xkRjxlV2RGPE91Ti80NXJZPC1MQCYjK2ZtPjY5PUxiLE9jWlYvKTtUVG04Vkk7PyVPdEo8KGI0bXE3TTY6dT9LUmRGPGdSQDJMPUZOVS08YlsoOWMvTUwzbTtaWyRvRjNnKUdBV3FwQVJjPTxST3U3Y0w1bDstW0FdJS8rZnNkO2wjU2FmVC9mKlddMD1PJyQoVGI8WykqQGU3NzVSLTpZb2IlZyo+bCo6eFA/WWIuNSkld19JPzd1azVKQytGUyhtI2knay4nYTBpKTk8N2InZnMnNTlocSQqNVVodiMjcGleOCtoSUVCRmBudm9gOydsMC5eUzE8LXdVSzIvQ29oNThLS2hMak09U08qcmZPYCtxQ2BXLU9uLj1BSjU2Pj5pMkAyTEg2QTomNXFgPzlJM0BAJzA0JnAyL0xWYSpULTQ8LWkzO005VXZaZCtONz5iKmVJd2c6Q0MpYzw+bk8mIzxJR2U7X18udGhqWmw8JXcoV2syeG1wNFFASSNJOSxERl11Ny1QPS4tXzpZSl1hU0BWPzYqQygpZE9wNzpXTCxiJjNSZy8uY21NOSZyXj4kKD4uWi1JJkooUTBIZDVRJTdDby1iYC1jPE4oNnJAaXArQXVySzxtODZRSXRoKiN2Oy1PQnFpK0w3d0RFLUlyOEtbJ20rRERTTHdLJi8uPy1WJVVfJTM6cUtOdSRfYipCLWtwN05hRCdRZFdRUEtZcVtAPlApaEk7Kl9GXXVgUmJbLmo4X1EvPCY+dXUrVnNIJHNNOVRBJT8pKHZtSjgwKSxQN0U+KXRqRCUyTD0tdCNmS1slYHY9UTg8RmZOa2dnXm9JYmFoKiM4L1F0JEYmOksqLShOLycrMXZNQix1KCktYS5WVVUqI1tlJWdBQU8oUz5XbEEyKTtTYT5nWG04WUJgMWRASyNuXTc2LWEkVSxtRjxmWF1pZHFkKTwzLF1KN0ptVzRgNl11a3M9NC03MkwoakVrKzpiSjBNXnEtOERtX1o/MG9sUDFDOVNhJkhbZCZjJG9vUVVqXUV4ZCozWk1ALVdHVzIlcycsQi1fTSU+JVVsOiMvJ3hvRk05UVgtJC5RTic+WyUkWiR1RjZwQTZLaTJPNTo4dyp2UDE8LTFgW0csKS1tIz4wYFAmI2ViIy4zaSlydEI2MShvJyQ/WDNCPC9SOTA7ZVpdJU5jcTstVGxdI0Y+MlFmdF5hZV81dEtMOU1VZTliKnNMRVE5NUMmYD1HP0BNaj13aConM0U+PS08KUd0Kkl3KSdRRzpgQEl3T2Y3Jl0xaSdTMDFCK0V2L05hYyM5Uzs9O1lRcGdfNlVgKmtWWTM5eEssWy82QWo3OicxQm0tXzFFWWZhMStvJm80aHA3S05fUShPbElvQFMlO2pWZG4wJzE8VmM1Mj11YDNeby1uMSdnNHY1OEhqJjZfdDckIyM/TSljPCRiZ1FfJ1NZKCgteGtBI1koLHAnSDlySVZZLWIsJyViQ1BGNy5KPFVwXiwoZFUxVlkqNSNXa1RVPmgxOXcsV1FoTEkpM1MjZiQyKGViLGpyKmI7M1Z3XSo3TkglJGM0VnMsZUQ5PlhXOD9OXW8rKCpwZ0MlLzcyTFYtdTxIcCwzQGVeOVVCMUorYWs5LVROL21oS1BnK0FKWWQkTWx2QUZfakNLKi5PLV4oNjNhZE1ULT5XJWlld1M4VzZtMnJ0Q3BvJ1JTMVI4ND1AcGFUS3QpPj0lJjFbKSp2cCd1K3gsVnJ3TjsmXWt1TzlKRGJnPXBPJEoqLmpWZTt1J20wZHI5bCw8KndNSypPZT1nOGxWX0tFQkZrTydvVV1ePVstNzkyI29rLClpXWxSOHFRMm9BOHdjUkNaXjd3L05qaDs/LnN0WD9RMT5TMXE0Qm4kKUsxPC1yR2RPJyRXci5MYy5DRykkLypKTDR0TlIvLFNWTzMsYVV3J0RKTjopU3M7d0duOUEzMmlqdyVGTCtaMEZuLlU5O3JlU3EpYm1JMzJVPT01QUx1RyYjVmYxMzk4L3BWbzEqYy0oYVkxNjhvPGBKc1Niay0sMU47JD4wOk9VYXMoMzo4Wjk3MkxTZkY4ZWI9Yy07PlNQdzcuNmhuM21gOV5Ya24oci5xU1swO1QlJlFjPStTVFJ4WCdxMUJOazMmKmV1MjsmOHEkJng+USNRN15UZis2PChkJVpWbWoyYkRpJS4zTDJuKzRXJyRQaURERylnLHIlKz8sJEA/dW91NXRTZTJhTl9BUVUqPGhgZS1HSTcpP09LMkEuZDdfYyk/d1E1QVNAREwzciM3ZlNrZ2w2LSsrRDonQSx1cTdTdmxCJHBjcEgncTNuMCNfJWRZI3hDcHItbDxGME5SQC0jI0ZFVjZOVEY2IyMkbDg0TjF3P0FPPidJQU9VUlEjI1ZeRnYtWEZiR003RmwoTjwzRGhMR0YlcS4xckMkIzpUX18mUGk2OCUweGlfJltxRkooNzdqXyZKV29GLlY3MzUmVCxbUio6eEZSKks1Pj4jYGJXLT80TmVfJjZOZV8mNk5lXyZuYGtyLSNHSmNNNlg7dU02WDt1TSguYS4uXjJUa0wlb1IoIzt1LlQlZkFyJTR0SjgmPjwxPUdIWl8rbTkvI0gxRl5SI1NDIypOPUJBOShEP3ZbVWlGWT4+XjhwLEtLRi5XXUwyOXVMa0xsdS8rNFQ8WG9JQiZoeD1UMVBjRGFCJjtISCstQUZyPyhtOUhaVilGS1M4SkN3O1NEPTZbXi9EWlVMYEVVRGZdR0dsRyY+dyQpRi4vXm4zK3JsbytEQjs1c0lZR05rK2kxdC02OUpnLS0wcGFvN1NtI0spcGRIVyY7THVETkhASD4jL1gtVEkoO1A+IyxHYz4jMFN1PiM0YDE/IzhsQz8jPHhVPyNALmk/I0Q6JUAjSEY3QCNMUklAI1BfW0AjVGtuQCNYdypBI10tPUEjYTlPQSNkPEYmIyo7RyMjLkdZIyMyU2wjIzZgKCQjOmw6JCM+eEwkI0IuYCQjRjpyJCNKRi4lI05SQCUjUl9SJSNWa2UlI1p3dyUjXy00JiMzXlJoJVNmbHItaydNUy5vPy41L3NXZWwvd3BFTTAlMycvMSlLXmYxLWQ+RzIxJnYoMzU+VmAzOVY3QTQ9b254NEExT1k1RUkwOzZJYmdyNk0kSFM3UTwpNThDNXcsO1dvQSojWyVUKiNgMWcqI2Q9IysjaEk1KyNsVUcrI3BiWSsjdG5sKyN4JCksIyYxOywjKj1NLCMuSWAsIzJVciwjNmIuLSM7d1tII2lRdEEjbV4wQiNxakJCI3V2VEIjIy1oQiMnOSRDIytFNkMjL1FIQyMzXlpDIzdqbUMjO3YpRCM/LDxEI0M4TkQjR0RhRCNLUHNEI09dL0UjZzFBNSNLQSoxI2dDMTcjTUdkOyM4KDAyI0wtZDMjcldNNCNIZ2ExIyw8dzAjVC5qPCNPIycyI0NZTjEjcWFeOiNfNG0zI29ALz0jZUc4PSN0OEo1I2ArNzgjNHVJLSNtM0IyI1NCWzgjUTBAOCNpWyo5I2lPbjgjMU5tOyNec045I3FoPDkjOj14LSNQO0syIyQlWDkjYkMrLiNSZzs8I21OPS4jTVRGLiNSWk8uIzI/KTQjWSMoLyNbKTEvI2I7TC8jZEFVLyMwU3Y7I2xZJDAjbmAtMCNzZjYwIyhGMjQjd3JIMCMlL2UwI1RtRDwjJUpTTUZvdmU6Q1RCRVhJOjxlaDJnKUIsM2gyXkczaTsjZDNqRD4pNGtNWUQ0bFZ1YDRtYDomNW5pVUE1QChBNUJBMV1QQkI6eGxCQ0M9MkNETFhNQ0VVdGlDZiYwZzIndE4/UEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQLXFla0NgLjlrRWdeK0Yka3dWaUZKVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVvLF48LTI4WkknTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cDs3cS0jbExZSTp4dkQ9IwBB9v8ACwpAQAAAQEEAAJhBAEGKgAELugFQQQAAAAAAAOBAAACAQQAAgD8AAABBAAD4QQAAAAAAALhBAAC4QQAAMEEAADBBAACoQQAAAAAAABBBAAC4QQAAgEAAADBBAABcQgAAkEEAALhBAAAQQQAAMEEAAIBAAACSQgAAAAAAAIhBAACIQQAAAEEAAABBAABcQgAAAAAAAIhBAACIQQAAAEEAAABBAAC2QgAAAAAAAIhBAACwQQAAoEAAAAAAIAD/AAAw/zDwMf8xAP/v/wBOr58AQdCBAQuXJyAA/wAAMP8w8DH/MQD/7/8AAAEAAgAEAAEAAQABAAEAAgABAAMAAgABAAIAAgABAAEAAQABAAEABQACAAEAAgADAAMAAwACAAIABAABAAEAAQACAAEABQACAAMAAQACAAEAAgABAAEAAgABAAEAAgACAAEABAABAAEAAQABAAUACgABAAIAEwACAAEAAgABAAIAAQACAAEAAgABAAUAAQAGAAMAAgABAAIAAgABAAEAAQAEAAgABQABAAEABAABAAEAAwABAAIAAQAFAAEAAgABAAEAAQAKAAEAAQAFAAIABAAGAAEABAACAAIAAgAMAAIAAQABAAYAAQABAAEABAABAAEABAAGAAUAAQAEAAIAAgAEAAoABwABAAEABAACAAQAAgABAAQAAwAGAAoADAAFAAcAAgAOAAIACQABAAEABgAHAAoABAAHAA0AAQAFAAQACAAEAAEAAQACABwABQAGAAEAAQAFAAIABQAUAAIAAgAJAAgACwACAAkAEQABAAgABgAIABsABAAGAAkAFAALABsABgBEAAIAAgABAAEAAQACAAEAAgACAAcABgALAAMAAwABAAEAAwABAAIAAQABAAEAAQABAAMAAQABAAgAAwAEAAEABQAHAAIAAQAEAAQACAAEAAIAAQACAAEAAQAEAAUABgADAAYAAgAMAAMAAQADAAkAAgAEAAMABAABAAUAAwADAAEAAwAHAAEABQABAAEAAQABAAIAAwAEAAUAAgADAAIABgABAAEAAgABAAcAAQAHAAMABAAFAA8AAgACAAEABQADABYAEwACAAEAAQABAAEAAgAFAAEAAQABAAYAAQABAAwACAACAAkAEgAWAAQAAQABAAUAAQAQAAEAAgAHAAoADwABAAEABgACAAQAAQACAAQAAQAGAAEAAQADAAIABAABAAYABAAFAAEAAgABAAEAAgABAAoAAwABAAMAAgABAAkAAwACAAUABwACABMABAADAAYAAQABAAEAAQABAAQAAwACAAEAAQABAAIABQADAAEAAQABAAIAAgABAAEAAgABAAEAAgABAAMAAQABAAEAAwAHAAEABAABAAEAAgABAAEAAgABAAIABAAEAAMACAABAAEAAQACAAEAAwAFAAEAAwABAAMABAAGAAIAAgAOAAQABgAGAAsACQABAA8AAwABABwABQACAAUABQADAAEAAwAEAAUABAAGAA4AAwACAAMABQAVAAIABwAUAAoAAQACABMAAgAEABwAHAACAAMAAgABAA4ABAABABoAHAAqAAwAKAADADQATwAFAA4AEQADAAIAAgALAAMABAAGAAMAAQAIAAIAFwAEAAUACAAKAAQAAgAHAAMABQABAAEABgADAAEAAgACAAIABQAcAAEAAQAHAAcAFAAFAAMAHQADABEAGgABAAgABAAbAAMABgALABcABQADAAQABgANABgAEAAGAAUACgAZACMABwADAAIAAwADAA4AAwAGAAIABgABAAQAAgADAAgAAgABAAEAAwADAAMABAABAAEADQACAAIABAAFAAIAAQAOAA4AAQACAAIAAQAEAAUAAgADAAEADgADAAwAAwARAAIAEAAFAAEAAgABAAgACQADABMABAACAAIABAARABkAFQAUABwASwABAAoAHQBnAAQAAQACAAEAAQAEAAIABAABAAIAAwAYAAIAAgACAAEAAQACAAEAAwAIAAEAAQABAAIAAQABAAMAAQABAAEABgABAAUAAwABAAEAAQADAAQAAQABAAUAAgABAAUABgANAAkAEAABAAEAAQABAAMAAgADAAIABAAFAAIABQACAAIAAwAHAA0ABwACAAIAAQABAAEAAQACAAMAAwACAAEABgAEAAkAAgABAA4AAgAOAAIAAQASAAMABAAOAAQACwApAA8AFwAPABcAsAABAAMABAABAAEAAQABAAUAAwABAAIAAwAHAAMAAQABAAIAAQACAAQABAAGAAIABAABAAkABwABAAoABQAIABAAHQABAAEAAgACAAMAAQADAAUAAgAEAAUABAABAAEAAgACAAMAAwAHAAEABgAKAAEAEQABACwABAAGAAIAAQABAAYABQAEAAIACgABAAYACQACAAgAAQAYAAEAAgANAAcACAAIAAIAAQAEAAEAAwABAAMAAwAFAAIABQAKAAkABAAJAAwAAgABAAYAAQAKAAEAAQAHAAcABAAKAAgAAwABAA0ABAADAAEABgABAAMABQACAAEAAgARABAABQACABAABgABAAQAAgABAAMAAwAGAAgABQALAAsAAQADAAMAAgAEAAYACgAJAAUABwAEAAcABAAHAAEAAQAEAAIAAQADAAYACAAHAAEABgALAAUABQADABgACQAEAAIABwANAAUAAQAIAFIAEAA9AAEAAQABAAQAAgACABAACgADAAgAAQABAAYABAACAAEAAwABAAEAAQAEAAMACAAEAAIAAgABAAEAAQABAAEABgADAAUAAQABAAQABgAJAAIAAQABAAEAAgABAAcAAgABAAYAAQAFAAQABAADAAEACAABAAMAAwABAAMAAgACAAIAAgADAAEABgABAAIAAQACAAEAAwAHAAEACAACAAEAAgABAAUAAgAFAAMABQAKAAEAAgABAAEAAwACAAUACwADAAkAAwAFAAEAAQAFAAkAAQACAAEABQAHAAkACQAIAAEAAwADAAMABgAIAAIAAwACAAEAAQAgAAYAAQACAA8ACQADAAcADQABAAMACgANAAIADgABAA0ACgACAAEAAwAKAAQADwACAA8ADwAKAAEAAwAJAAYACQAgABkAGgAvAAcAAwACAAMAAQAGAAMABAADAAIACAAFAAQAAQAJAAQAAgACABMACgAGAAIAAwAIAAEAAgACAAQAAgABAAkABAAEAAQABgAEAAgACQACAAMAAQABAAEAAQADAAUABQABAAMACAAEAAYAAgABAAQADAABAAUAAwAHAA0AAgAFAAgAAQAGAAEAAgAFAA4ABgABAAUAAgAEAAgADwAFAAEAFwAGAD4AAgAKAAEAAQAIAAEAAgACAAoABAACAAIACQACAAEAAQADAAIAAwABAAUAAwADAAIAAQADAAgAAQABAAEACwADAAEAAQAEAAMABwABAA4AAQACAAMADAAFAAIABQABAAYABwAFAAcADgALAAEAAwABAAgACQAMAAIAAQALAAgABAAEAAIABgAKAAkADQABAAEAAwABAAUAAQADAAIABAAEAAEAEgACAAMADgALAAQAHQAEAAIABwABAAMADQAJAAIAAgAFAAMABQAUAAcAEAAIAAUASAAiAAYABAAWAAwADAAcAC0AJAAJAAcAJwAJAL8AAQABAAEABAALAAgABAAJAAIAAwAWAAEAAQABAAEABAARAAEABwAHAAEACwAfAAoAAgAEAAgAAgADAAIAAQAEAAIAEAAEACAAAgADABMADQAEAAkAAQAFAAIADgAIAAEAAQADAAYAEwAGAAUAAQAQAAYAAgAKAAgABQABAAIAAwABAAUABQABAAsABgAGAAEAAwADAAIABgADAAgAAQABAAQACgAHAAUABwAHAAUACAAJAAIAAQADAAQAAQABAAMAAQADAAMAAgAGABAAAQAEAAYAAwABAAoABgABAAMADwACAAkAAgAKABkADQAJABAABgACAAIACgALAAQAAwAJAAEAAgAGAAYABQAEAB4AKAABAAoABwAMAA4AIQAGAAMABgAHAAMAAQADAAEACwAOAAQACQAFAAwACwAxABIAMwAfAIwAHwACAAIAAQAFAAEACAABAAoAAQAEAAQAAwAYAAEACgABAAMABgAGABAAAwAEAAUAAgABAAQAAgA5AAoABgAWAAIAFgADAAcAFgAGAAoACwAkABIAEAAhACQAAgAFAAUAAQABAAEABAAKAAEABAANAAIABwAFAAIACQADAAQAAQAHACsAAwAHAAMACQAOAAcACQABAAsAAQABAAMABwAEABIADQABAA4AAQADAAYACgBJAAIAAgAeAAYAAQALABIAEwANABYAAwAuACoAJQBZAAcAAwAQACIAAgACAAMACQABAAcAAQABAAEAAgACAAQACgAHAAMACgADAAkABQAcAAkAAgAGAA0ABwADAAEAAwAKAAIABwACAAsAAwAGABUANgBVAAIAAQAEAAIAAgABACcAAwAVAAIAAgAFAAEAAQABAAQAAQABAAMABAAPAAEAAwACAAQABAACAAMACAACABQAAQAIAAcADQAEAAEAGgAGAAIACQAiAAQAFQA0AAoABAAEAAEABQAMAAIACwABAAcAAgAeAAwALAACAB4AAQABAAMABgAQAAkAEQAnAFIAAgACABgABwABAAcAAwAQAAkADgAsAAIAAQACAAEAAgADAAUAAgAEAAEABgAHAAUAAwACAAYAAQALAAUACwACAAEAEgATAAgAAQADABgAHQACAAEAAwAFAAIAAgABAA0ABgAFAAEALgALAAMABQABAAEABQAIAAIACgAGAAwABgADAAcACwACAAQAEAANAAIABQABAAEAAgACAAUAAgAcAAUAAgAXAAoACAAEAAQAFgAnAF8AJgAIAA4ACQAFAAEADQAFAAQAAwANAAwACwABAAkAAQAbACUAAgAFAAQABAA/ANMAXwACAAIAAgABAAMABQACAAEAAQACAAIAAQABAAEAAwACAAQAAQACAAEAAQAFAAIAAgABAAEAAgADAAEAAwABAAEAAQADAAEABAACAAEAAwAGAAEAAQADAAcADwAFAAMAAgAFAAMACQALAAQAAgAWAAEABgADAAgABwABAAQAHAAEABAAAwADABkABAAEABsAGwABAAQAAQACAAIABwABAAMABQACABwACAACAA4AAQAIAAYAEAAZAAMAAwADAA4AAwADAAEAAQACAAEABAAGAAMACAAEAAEAAQABAAIAAwAGAAoABgACAAMAEgADAAIABQAFAAQAAwABAAUAAgAFAAQAFwAHAAYADAAGAAQAEQALAAkABQABAAEACgAFAAwAAQABAAsAGgAhAAcAAwAGAAEAEQAHAAEABQAMAAEACwACAAQAAQAIAA4AEQAXAAEAAgABAAcACAAQAAsACQAGAAUAAgAGAAQAEAACAAgADgABAAsACAAJAAEAAQABAAkAGQAEAAsAEwAHAAIADwACAAwACAA0AAcABQATAAIAEAAEACQACAABABAACAAYABoABAAGAAIACQAFAAQAJAADABwADAAZAA8AJQAbABEADAA7ACYABQAgAH8AAQACAAkAEQAOAAQAAQACAAEAAQAIAAsAMgAEAA4AAgATABAABAARAAUABAAFABoADAAtAAIAFwAtAGgAHgAMAAgAAwAKAAIAAgADAAMAAQAEABQABwACAAkABgAPAAIAFAABAAMAEAAEAAsADwAGAIYAAgAFADsAAQACAAIAAgABAAkAEQADABoAiQAKANMAOwABAAIABAABAAQAAQABAAEAAgAGAAIAAwABAAEAAgADAAIAAwABAAMABAAEAAIAAwADAAEABAADAAEABwACAAIAAwABAAIAAQADAAMAAwACAAIAAwACAAEAAwAOAAYAAQADAAIACQAGAA8AGwAJACIAkQABAAEAAgABAAEAAQABAAIAAQABAAEAAQACAAIAAgADAAEAAgABAAEAAQACAAMABQAIAAMABQACAAQAAQADAAIAAgACAAwABAABAAEAAQAKAAQABQABABQABAAQAAEADwAJAAUADAACAAkAAgAFAAQAAgAaABMABwABABoABAAeAAwADwAqAAEABgAIAKwAAQABAAQAAgABAAEACwACAAIABAACAAEAAgABAAoACAABAAIAAQAEAAUAAQACAAUAAQAIAAQAAQADAAQAAgABAAYAAgABAAMABAABAAIAAQABAAEAAQAMAAUABwACAAQAAwABAAEAAQADAAMABgABAAIAAgADAAMAAwACAAEAAgAMAA4ACwAGAAYABAAMAAIACAABAAcACgABACMABwAEAA0ADwAEAAMAFwAVABwANAAFABoABQAGAAEABwAKAAIABwA1AAMAAgABAAEAAQACAKMAFAIBAAoACwABAAMAAwAEAAgAAgAIAAYAAgACABcAFgAEAAIAAgAEAAIAAQADAAEAAwADAAUACQAIAAIAAQACAAgAAQAKAAIADAAVABQADwBpAAIAAwABAAEAAwACAAMAAQABAAIABQABAAQADwALABMAAQABAAEAAQAFAAQABQABAAEAAgAFAAMABQAMAAEAAgAFAAEACwABAAEADwAJAAEABAAFAAMAGgAIAAIAAQADAAEAAQAPABMAAgAMAAEAAgAFAAIABwACABMAAgAUAAYAGgAHAAUAAgACAAcAIgAVAA0ARgACAIAAAQABAAIAAQABAAIAAQABAAMAAgACAAIADwABAAQAAQADAAQAKgAKAAYAAQAxAFUACAABAAIAAQABAAQABAACAAMABgABAAUABwAEAAMA0wAEAAEAAgABAAIABQABAAIABAACAAIABgAFAAYACgADAAQAMABkAAYAAgAQACgBBQAbAIMBAgACAAMABwAQAAgABQAmAA8AJwAVAAkACgADAAcAOwANABsAFQAvAAUAFQAGAEHyqAELsR4BAAIABAABAAEAAQABAAIAAQAGAAIAAgABAAgABQAHAAsAAQACAAoACgAIAAIABAAUAAIACwAIAAIAAQACAAEABgACAAEABwAFAAMABwABAAEADQAHAAkAAQAEAAYAAQACAAEACgABAAEACQACAAIABAAFAAYADgABAAEACQADABIABQAEAAIAAgAKAAcAAQABAAEAAwACAAQAAwAXAAIACgAMAAIADgACAAQADQABAAYACgADAAEABwANAAYABAANAAUAAgADABEAAgACAAUABwAGAAQAAQAHAA4AEAAGAA0ACQAPAAEAAQAHABAABAAHAAEAEwAJAAIABwAPAAIABgAFAA0AGQAEAA4ADQALABkAAQABAAEAAgABAAIAAgADAAoACwADAAMAAQABAAQABAACAAEABAAJAAEABAADAAUABQACAAcADAALAA8ABwAQAAQABQAQAAIAAQABAAYAAwADAAEAAQACAAcABgAGAAcAAQAEAAcABgABAAEAAgABAAwAAwADAAkABQAIAAEACwABAAIAAwASABQABAABAAMABgABAAcAAwAFAAUABwACAAIADAADAAEABAACAAMAAgADAAsACAAHAAQAEQABAAkAGQABAAEABAACAAIABAABAAIABwABAAEAAQADAAEAAgAGABAAAQACAAEAAQADAAwAFAACAAUAFAAIAAcABgACAAEAAQABAAEABgACAAEAAgAKAAEAAQAGAAEAAwABAAIAAQAEAAEADAAEAAEAAwABAAEAAQABAAEACgAEAAcABQANAAEADwABAAEAHgALAAkAAQAPACYADgABACAAEQAUAAEACQAfAAIAFQAJAAQAMQAWAAIAAQANAAEACwAtACMAKwA3AAwAEwBTAAEAAwACAAMADQACAAEABwADABIAAwANAAgAAQAIABIABQADAAcAGQAYAAkAGAAoAAMAEQAYAAIAAQAGAAIAAwAQAA8ABgAHAAMADAABAAkABwADAAMAAwAPABUABQAQAAQABQAMAAsACwADAAYAAwACAB8AAwACAAEAAQAXAAYABgABAAQAAgAGAAUAAgABAAEAAwADABYAAgAGAAIAAwARAAMAAgAEAAUAAQAJAAUAAQABAAYADwAMAAMAEQACAA4AAgAIAAEAFwAQAAQAAgAXAAgADwAXABQADAAZABMALwALABUAQQAuAAQAAwABAAUABgABAAIABQAaAAIAAQABAAMACwABAAEAAQACAAEAAgADAAEAAQAKAAIAAwABAAEAAQADAAYAAwACAAIABgAGAAkAAgACAAIABgACAAUACgACAAQAAQACAAEAAgACAAMAAQABAAMAAQACAAkAFwAJAAIAAQABAAEAAQAFAAMAAgABAAoACQAGAAEACgACAB8AGQADAAcABQAoAAEADwAGABEABwAbALQAAQADAAIAAgABAAEAAQAGAAMACgAHAAEAAwAGABEACAAGAAIAAgABAAMABQAFAAgAEAAOAA8AAQABAAQAAQACAAEAAQABAAMAAgAHAAUABgACAAUACgABAAQAAgAJAAEAAQALAAYAAQAsAAEAAwAHAAkABQABAAMAAQABAAoABwABAAoABAACAAcAFQAPAAcAAgAFAAEACAADAAQAAQADAAEABgABAAQAAgABAAQACgAIAAEABAAFAAEABQAKAAIABwABAAoAAQABAAMABAALAAoAHQAEAAcAAwAFAAIAAwAhAAUAAgATAAMAAQAEAAIABgAfAAsAAQADAAMAAwABAAgACgAJAAwACwAMAAgAAwAOAAgABgALAAEABAApAAMAAQACAAcADQABAAUABgACAAYADAAMABYABQAJAAQACAAJAAkAIgAGABgAAQABABQACQAJAAMABAABAAcAAgACAAIABgACABwABQADAAYAAQAEAAYABwAEAAIAAQAEAAIADQAGAAQABAADAAEACAAIAAMAAgABAAUAAQACAAIAAwABAAsACwAHAAMABgAKAAgABgAQABAAFgAHAAwABgAVAAUABAAGAAYAAwAGAAEAAwACAAEAAgAIAB0AAQAKAAEABgANAAYABgATAB8AAQANAAQABAAWABEAGgAhAAoABAAPAAwAGQAGAEMACgACAAMAAQAGAAoAAgAGAAIACQABAAkABAAEAAEAAgAQAAIABQAJAAIAAwAIAAEACAADAAkABAAIAAYABAAIAAsAAwACAAEAAQADABoAAQAHAAUAAQALAAEABQADAAUAAgANAAYAJwAFAAEABQACAAsABgAKAAUAAQAPAAUAAwAGABMAFQAWAAIABAABAAYAAQAIAAEABAAIAAIABAACAAIACQACAAEAAQABAAQAAwAGAAMADAAHAAEADgACAAQACgACAA0AAQARAAcAAwACAAEAAwACAA0ABwAOAAwAAwABAB0AAgAIAAkADwAOAAkADgABAAMAAQAGAAUACQALAAMAJgArABQABwAHAAgABQAPAAwAEwAPAFEACAAHAAEABQBJAA0AJQAcAAgACAABAA8AEgAUAKUAHAABAAYACwAIAAQADgAHAA8AAQADAAMABgAEAAEABwAOAAEAAQALAB4AAQAFAAEABAAOAAEABAACAAcANAACAAYAHQADAAEACQABABUAAwAFAAEAGgADAAsADgALAAEAEQAFAAEAAgABAAMAAgAIAAEAAgAJAAwAAQABAAIAAwAIAAMAGAAMAAcABwAFABEAAwADAAMAAQAXAAoABAAEAAYAAwABABAAEQAWAAMACgAVABAAEAAGAAQACgACAAEAAQACAAgACAAGAAUAAwADAAMAJwAZAA8AAQABABAABgAHABkADwAGAAYADAABABYADQABAAQACQAFAAwAAgAJAAEADAAcAAgAAwAFAAoAFgA8AAEAAgAoAAQAPQA/AAQAAQANAAwAAQAEAB8ADAABAA4AWQAFABAABgAdAA4AAgAFADEAEgASAAUAHQAhAC8AAQARAAEAEwAMAAIACQAHACcADAADAAcADAAnAAMAAQAuAAQADAADAAgACQAFAB8ADwASAAMAAgACAEIAEwANABEABQADAC4AfAANADkAIgACAAUABAAFAAgAAQABAAEABAADAAEAEQAFAAMABQADAAEACAAFAAYAAwAbAAMAGgAHAAwABwACABEAAwAHABIATgAQAAQAJAABAAIAAQAGAAIAAQAnABEABwAEAA0ABAAEAAQAAQAKAAQAAgAEAAYAAwAKAAEAEwABABoAAgAEACEAAgBJAC8ABwADAAgAAgAEAA8AEgABAB0AAgApAA4AAQAVABAAKQAHACcAGQANACwAAgACAAoAAQANAAcAAQAHAAMABQAUAAQACAACADEAAQAKAAYAAQAGAAcACgAHAAsAEAADAAwAFAAEAAoAAwABAAIACwACABwACQACAAQABwACAA8AAQAbAAEAHAARAAQABQAKAAcAAwAYAAoACwAGABoAAwACAAcAAgACADEAEAAKABAADwAEAAUAGwA9AB4ADgAmABYAAgAHAAUAAQADAAwAFwAYABEAEQADAAMAAgAEAAEABgACAAcABQABAAEABQABAAEACQAEAAEAAwAGAAEACAACAAgABAAOAAMABQALAAQAAQADACAAAQATAAQAAQANAAsABQACAAEACAAGAAgAAQAGAAUADQADABcACwAFAAMAEAADAAkACgABABgAAwDGADQABAACAAIABQAOAAUABAAWAAUAFAAEAAsABgApAAEABQACAAIACwAFAAIAHAAjAAgAFgADABIAAwAKAAcABQADAAQAAQAFAAMACAAJAAMABgACABAAFgAEAAUABQADAAMAEgAXAAIABgAXAAUAGwAIAAEAIQACAAwAKwAQAAUAAgADAAYAAQAUAAQAAgAJAAcAAQALAAIACgADAA4AHwAJAAMAGQASABQAAgAFAAUAGgAOAAEACwARAAwAKAATAAkABgAfAFMAAgAHAAkAEwBOAAwADgAVAEwADABxAE8AIgAEAAEAAQA9ABIAVQAKAAIAAgANAB8ACwAyAAYAIQCfALMABgAGAAcABAAEAAIABAACAAUACAAHABQAIAAWAAEAAwAKAAYABwAcAAUACgAJAAIATQATAA0AAgAFAAEABAAEAAcABAANAAMACQAfABEAAwAaAAIABgAGAAUABAABAAcACwADAAQAAgABAAYAAgAUAAQAAQAJAAIABgADAAcAAQABAAEAFAACAAMAAQAGAAIAAwAGAAIABAAIAAEABQANAAgABAALABcAAQAKAAYAAgABAAMAFQACAAIABAAYAB8ABAAKAAoAAgAFAMAADwAEABAABwAJADMAAQACAAEAAQAFAAEAAQACAAEAAwAFAAMAAQADAAQAAQADAAEAAwADAAkACAABAAIAAgACAAQABAASAAwAXAACAAoABAADAA4ABQAZABAAKgAEAA4ABAACABUABQB+AB4AHwACAAEABQANAAMAFgAFAAYABgAUAAwAAQAOAAwAVwADABMAAQAIAAIACQAJAAMAAwAXAAIAAwAHAAYAAwABAAIAAwAJAAEAAwABAAYAAwACAAEAAwALAAMAAQAGAAoAAwACAAMAAQACAAEABQABAAEACwADAAYABAABAAcAAgABAAIABQAFACIABAAOABIABAATAAcABQAIAAIABgBPAAEABQACAA4ACAACAAkAAgABACQAHAAQAAQAAQABAAEAAgAMAAYAKgAnABAAFwAHAA8ADwADAAIADAAHABUAQAAGAAkAHAAIAAwAAwADACkAOwAYADMANwA5ACYBCQAJAAIABgACAA8AAQACAA0AJgBaAAkACQAJAAMACwAHAAEAAQABAAUABgADAAIAAQACAAIAAwAIAAEABAAEAAEABQAHAAEABAADABQABAAJAAEAAQABAAUABQARAAEABQACAAYAAgAEAAEABAAFAAcAAwASAAsACwAgAAcABQAEAAcACwB/AAgABAADAAMAAQAKAAEAAQAGABUADgABABAAAQAHAAEAAwAGAAkAQQAzAAQAAwANAAMACgABAAEADAAJABUAbgADABMAGAABAAEACgA+AAQAAQAdACoATgAcABQAEgBSAAYAAwAPAAYAVAA6AP0ADwCbAAgBDwAVAAkADgAHADoAKAAnAEGwxwELECAA/wAABC8F4C3/LUCmn6YAQdLHAQsmgD/NzMw9CtcjPG8SgzoXt9E4rMUnN703hjWVv9Yzd8wrMl9wiTAAQYDIAQtGBAAAAOeOAADnjgAABAAAAPGOAADxjgAACAAAAPSOAAD0jgAACAAAAPmOAAD5jgAABAAAAOqOAADqjgAACAAAAOqOAADtjgBB0MgBC5IC/5AAAAORAAAHkQAAC5EAAMGQAADBkAAAwZAAAMGQAADHkAAAz5AAANeQAADfkAAA55AAAO+QAAD3kAAA35AAAJOQAACTkAAAk5AAAJOQAACXkAAAnZAAAKOQAACpkAAAr5AAALWQAAC7kAAAqZAAAP8AAP///wD/AP8A/wD///8AAP///wD///8AAP8AAAAA6HoAANB0AADQdAAA0HQAANB0AAA4ewAAWHsAANB0AAAIewAA0HQAANB0AAAIewAAOHsAADh7AABYewAAWHsAAOh6AABYewAAWHsAAFh7AADQdAAA0HQAANB0AAAAAAAACHsAAEB7AAAIdQAAOHsAAOh6AAA4ewAAWHsAANB0AADQdABB8MoBCxLQdAAA2HQAAAh7AABYewAA0HQAQZDLAQsi6HoAANB0AADQdAAACHsAAAh7AADYdAAA0HQAAFB7AAA4ewBBwMsBCyIIewAA0HQAADh7AAAIewAACHsAANh0AADQdAAA0HQAAAh7AEHwywELEgh7AADYdAAA0HQAAAh7AAAIewBBkMwBCzboegAA2HQAAFh7AADQdAAACHsAANh0AAA4ewAAOHsAAAh7AADYdAAA0HQAANB0AAA4ewAAOHsAQdDMAQsSCHsAANh0AAAIewAAOHsAANB0AEHwzAELMgh7AAA4ewAAOHsAANh0AAAIewAA2HQAADh7AADYdAAACHsAANh0AADQdAAAOHsAANB0AEGwzQELIgh7AADYdAAA0HQAADh7AADQdAAA0HQAANB0AADQdAAA0HQAQeDNAQs2CHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AAA4ewAAOHsAANB0AEGgzgELEgh7AADYdAAA0HQAANB0AADQdABBwM4BC3YIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAAAAAAAAh7AADYdAAAOHsAANB0AADQdAAA0HQAANB0AAA4ewAACHsAANh0AADQdAAAYHsAAGB7AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AAA4ewAAOHsAADh7AEHAzwELEgh7AADYdAAA0HQAANB0AAA4ewBB4M8BC4IBCHsAANh0AADQdAAA0HQAANB0AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AABQewAA0HQAADh7AADQdAAA0HQAAAh7AADYdAAA0HQAAFB7AAA4ewAA0HQAANB0AAAAAAAACHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AADQdABB8NABCyIIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AEGg0QELRgh7AADYdAAA0HQAANB0AAA4ewAAOHsAANB0AAAAAAAACHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQfDRAQt2CHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AADQdAAA0HQAADh7AAA4ewAAAAAAAOh6AABYewAA0HQAANB0AADoegAA2HQAANB0AADQdAAAOHsAADh7AADQdAAA0HQAANB0AADQdABB8NIBC5IBCHsAANh0AADQdAAAQHsAAAh7AADQdAAA0HQAANB0AADQdAAAOHsAANB0AADQdAAA6HoAANB0AADQdAAA0HQAANB0AADQdAAA0HQAAAAAAADoegAAOHsAANB0AAAIewAA6HoAANh0AAAIewAAOHsAAOh6AADYdAAA0HQAADh7AADoegAA0HQAANB0AADQdAAA0HQAQZDUAQsi6HoAANB0AAA4ewAA0HQAAAh7AADQdAAA0HQAAAh7AAA4ewBBwNQBC4YBCHsAANh0AADQdAAAOHsAAAh7AADYdAAAUHsAAFB7AABQewAAUHsAAFB7AAAAAAAACHsAAFh2AAA4ewAA0HQAAAh7AACYdgAAOHsAAFh7AAAIewAAmHYAADh7AAAIewAACHsAAJh2AAA4ewAAOHsAANB0AADIdgAA0HQAAFh7AADQdAAA0HQAQdDVAQsy6HoAACB2AADQdAAAWHsAANB0AABAewAAMHsAAAAAAAA4ewAAIHYAAFh7AADYdAAAWHsAQZDWAQti0HQAACB2AABYewAAWHsAAFh7AADYdAAA0HQAANB0AADoegAAQHUAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAQYDXAQs26HoAADB1AAA4ewAAOHsAAOh6AABAdQAA0HQAANB0AADoegAAQHUAANB0AADQdAAAWHsAADh7AEHA1wELFuh6AABAdQAA0HQAANB0AADQdAAAOHsAQeDXAQsW6HoAAEB1AADQdAAAWHsAADh7AAA4ewBBgNgBCzLoegAAQHUAANB0AABYewAAWHsAAFh7AAA4ewAAAAAAAOh6AABAdQAAQHsAAAh7AABYewBBwNgBCyLoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHw2AELEuh6AABAdQAA0HQAADh7AABAewBBkNkBC0boegAAQHUAANB0AAA4ewAAQHsAAAh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHg2QELcuh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAA6HoAAEB1AADQdAAAWHsAANB0AABAewAA2HQAAFh7AADQdABB4NoBCxLoegAAQHUAANB0AABAewAA2HQAQYDbAQsW6HoAAEB1AADQdAAAWHsAAEB7AAA4ewBBoNsBCzboegAAQHUAANB0AABYewAAQHsAADh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAAQHsAQeDbAQvWAeh6AABAdQAA0HQAANB0AADQdAAAQHsAAFh7AAAAAAAA6HoAAEB1AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAQHsAAEB7AABAewAA6HoAAEB1AADQdAAA0HQAAEB7AABYewAAOHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAAFh7AAA4ewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAWHsAQcDdAQsS6HoAAEB1AADQdAAA0HQAAAh7AEHg3QELRuh6AADgdwAAOHsAAFh7AADoegAA+HUAADh7AADYdAAA6HoAAOh1AAA4ewAAOHsAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQbDeAQvhA9B0AADQdAAA0HQAANB0AAACAADAAwAAwAQAAMAFAADABgAAwAcAAMAIAADACQAAwAoAAMALAADADAAAwA0AAMAOAADADwAAwBAAAMARAADAEgAAwBMAAMAUAADAFQAAwBYAAMAXAADAGAAAwBkAAMAaAADAGwAAwBwAAMAdAADAHgAAwB8AAMAAAACzAQAAwwIAAMMDAADDBAAAwwUAAMMGAADDBwAAwwgAAMMJAADDCgAAwwsAAMMMAADDDQAA0w4AAMMPAADDAAAMuwEADMMCAAzDAwAMwwQADNMAAAAA/////////////////////////////////////////////////////////////////wABAgMEBQYHCAn/////////CgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiP///////8KCwwNDg8QERITFBUWFxgZGhscHR4fICEiI/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AQaDiAQsYEQAKABEREQAAAAAFAAAAAAAACQAAAAALAEHA4gELIREADwoREREDCgcAARMJCwsAAAkGCwAACwAGEQAAABEREQBB8eIBCwELAEH64gELGBEACgoREREACgAAAgAJCwAAAAkACwAACwBBq+MBCwEMAEG34wELFQwAAAAADAAAAAAJDAAAAAAADAAADABB5eMBCwEOAEHx4wELFQ0AAAAEDQAAAAAJDgAAAAAADgAADgBBn+QBCwEQAEGr5AELHg8AAAAADwAAAAAJEAAAAAAAEAAAEAAAEgAAABISEgBB4uQBCw4SAAAAEhISAAAAAAAACQBBk+UBCwELAEGf5QELFQoAAAAACgAAAAAJCwAAAAAACwAACwBBzeUBCwEMAEHZ5QEL3gIMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYKAAAAZAAAAOgDAAAQJwAAoIYBAEBCDwCAlpgAAOH1BQMAAAAEAAAABAAAAAYAAACD+aIARE5uAPwpFQDRVycA3TT1AGLbwAA8mZUAQZBDAGNR/gC73qsAt2HFADpuJADSTUIASQbgAAnqLgAcktEA6x3+ACmxHADoPqcA9TWCAES7LgCc6YQAtCZwAEF+XwDWkTkAU4M5AJz0OQCLX4QAKPm9APgfOwDe/5cAD5gFABEv7wAKWosAbR9tAM9+NgAJyycARk+3AJ5mPwAt6l8Auid1AOXrxwA9e/EA9zkHAJJSigD7a+oAH7FfAAhdjQAwA1YAe/xGAPCrawAgvM8ANvSaAOOpHQBeYZEACBvmAIWZZQCgFF8AjUBoAIDY/wAnc00ABgYxAMpWFQDJqHMAe+JgAGuMwABBw+gBC21A+yH5PwAAAAAtRHQ+AAAAgJhG+DwAAABgUcx4OwAAAICDG/A5AAAAQCAlejgAAACAIoLjNgAAAAAd82k1OGPtPtoPST9emHs/2g/JP2k3rDFoISIztA8UM2ghojMAAAAAAADwPwAAAAAAAPg/AEG46QELCAbQ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aXZlAFBsb3RMaW5lc0hvdmVyZWQAUGxvdEhpc3RvZ3JhbUhvdmVyZWQAVGV4dFNlbGVjdGVkQmcARHJhZ0Ryb3BUYXJnZXQATmF2SGlnaGxpZ2h0AE5hdldpbmRvd2luZ0hpZ2hsaWdodABOYXZXaW5kb3dpbmdEaW1CZwBNb2RhbFdpbmRvd0RpbUJnAFVua25vd24AIyNUb29sdGlwXyUwMmQAIyNNZW51XyUwMmQAIyNQb3B1cF8lMDh4AHdpbmRvd19jb250ZXh0AHZvaWRfY29udGV4dABjb2x1bW5zACNTb3VyY2VFeHRlcm4ACiUqcyUuKnMAICUuKnMAYWIACgBMb2cgVG8gVFRZAExvZyBUbyBGaWxlAExvZyBUbyBDbGlwYm9hcmQARGVwdGgAcmIAd3QASW1HdWkgTWV0cmljcwABRGVhciBJbUd1aSAlcwBBcHBsaWNhdGlvbiBhdmVyYWdlICUuM2YgbXMvZnJhbWUgKCUuMWYgRlBTKQAlZCB2ZXJ0aWNlcywgJWQgaW5kaWNlcyAoJWQgdHJpYW5nbGVzKQAlZCBhY3RpdmUgd2luZG93cyAoJWQgdmlzaWJsZSkAJWQgYWxsb2NhdGlvbnMAU2hvdyBjbGlwcGluZyByZWN0YW5nbGVzIHdoZW4gaG92ZXJpbmcgZHJhdyBjb21tYW5kcwBDdHJsIHNob3dzIHdpbmRvdyBiZWdpbiBvcmRlcgBXaW5kb3dzAERyYXdMaXN0AEFjdGl2ZSBEcmF3TGlzdHMgKCVkKQBQb3B1cHMAUG9wdXBzICglZCkAUG9wdXBJRDogJTA4eCwgV2luZG93OiAnJXMnJXMlcwBOVUxMACBDaGlsZFdpbmRvdwAgQ2hpbGRNZW51AFRhYkJhcnMAVGFiIEJhcnMgKCVkKQBJbnRlcm5hbCBzdGF0ZQBOb25lAE1vdXNlAE5hdgBOYXZLZXlib2FyZABOYXZHYW1lcGFkAEhvdmVyZWRXaW5kb3c6ICclcycASG92ZXJlZFJvb3RXaW5kb3c6ICclcycASG92ZXJlZElkOiAweCUwOFgvMHglMDhYICglLjJmIHNlYyksIEFsbG93T3ZlcmxhcDogJWQAQWN0aXZlSWQ6IDB4JTA4WC8weCUwOFggKCUuMmYgc2VjKSwgQWxsb3dPdmVybGFwOiAlZCwgU291cmNlOiAlcwBBY3RpdmVJZFdpbmRvdzogJyVzJwBNb3ZpbmdXaW5kb3c6ICclcycATmF2V2luZG93OiAnJXMnAE5hdklkOiAweCUwOFgsIE5hdkxheWVyOiAlZABOYXZJbnB1dFNvdXJjZTogJXMATmF2QWN0aXZlOiAlZCwgTmF2VmlzaWJsZTogJWQATmF2QWN0aXZhdGVJZDogMHglMDhYLCBOYXZJbnB1dElkOiAweCUwOFgATmF2RGlzYWJsZUhpZ2hsaWdodDogJWQsIE5hdkRpc2FibGVNb3VzZUhvdmVyOiAlZABOYXZXaW5kb3dpbmdUYXJnZXQ6ICclcycARHJhZ0Ryb3A6ICVkLCBTb3VyY2VJZCA9IDB4JTA4WCwgUGF5bG9hZCAiJXMiICglZCBieXRlcykAIyNPdmVybGF5ACVzLyVzXyUwOFgAJXMvJTA4WAAjUkVTSVpFACMjI05hdldpbmRvd2luZ0xpc3QAKFBvcHVwKQAoTWFpbiBtZW51IGJhcikAKFVudGl0bGVkKQBQb3M9JWYsJWYAU2l6ZT0lZiwlZgBDb2xsYXBzZWQ9JWQAIyMjAFslc11bJXNdCgBQb3M9JWQsJWQKAFNpemU9JWQsJWQKAENvbGxhcHNlZD0lZAoAJXMgKCVkKQAlcyAnJXMnLCAlZCBAIDB4JXAAUG9zOiAoJS4xZiwlLjFmKSwgU2l6ZTogKCUuMWYsJS4xZiksIFNpemVDb250ZW50cyAoJS4xZiwlLjFmKQBGbGFnczogMHglMDhYICglcyVzJXMlcyVzJXMlcyVzJXMuLikAQ2hpbGQgAFRvb2x0aXAgAFBvcHVwIABNb2RhbCAAQ2hpbGRNZW51IABOb1NhdmVkU2V0dGluZ3MgAE5vTW91c2VJbnB1dHMATm9OYXZJbnB1dHMAQWx3YXlzQXV0b1Jlc2l6ZQBTY3JvbGw6ICglLjJmLyUuMmYsJS4yZi8lLjJmKQBBY3RpdmU6ICVkLyVkLCBXcml0ZUFjY2Vzc2VkOiAlZCwgQmVnaW5PcmRlcldpdGhpbkNvbnRleHQ6ICVkAEFwcGVhcmluZzogJWQsIEhpZGRlbjogJWQgKFJlZyAlZCBSZXNpemUgJWQpLCBTa2lwSXRlbXM6ICVkAE5hdkxhc3RJZHM6IDB4JTA4WCwweCUwOFgs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bnRDb250ZXh0AERlYnVnQ2hlY2tWZXJzaW9uQW5kRGF0YUxheW91dABHZXRJTwBHZXRTdHlsZQBHZXREcmF3RGF0YQBOZXdGcmFtZQBSZW5kZXIARW5kRnJhbWUAU2hvd0RlbW9XaW5kb3cAU2hvd0Fib3V0V2luZG93AFNob3dNZXRyaWNzV2luZG93AFNob3dTdHlsZUVkaXRvcgBTaG93U3R5bGVTZWxlY3RvcgBTaG93Rm9udFNlbGVjdG9yAFNob3dVc2VyR3VpZGUAR2V0VmVyc2lvbgBTdHlsZUNvbG9yc0RhcmsAU3R5bGVDb2xvcnNDbGFzc2ljAFN0eWxlQ29sb3JzTGlnaHQAQmVnaW4ARW5kAEJlZ2luQ2hpbGQARW5kQ2hpbGQAR2V0Q29udGVudFJlZ2lvbk1heABHZXRDb250ZW50UmVnaW9uQXZhaWwAR2V0Q29udGVudFJlZ2lvbkF2YWlsV2lkdGgAR2V0V2luZG93Q29udGVudFJlZ2lvbk1pbgBHZXRXaW5kb3dDb250ZW50UmVnaW9uTWF4AEdldFdpbmRvd0NvbnRlbnRSZWdpb25XaWR0aABHZXRXaW5kb3dEcmF3TGlzdABHZXRXaW5kb3dQb3MAR2V0V2luZG93U2l6ZQBHZXRXaW5kb3dXaWR0aABHZXRXaW5kb3dIZWlnaHQASXNXaW5kb3dDb2xsYXBzZWQASXNXaW5kb3dBcHBlYXJpbmcAU2V0V2luZG93Rm9udFNjYWxlAFNldE5leHRXaW5kb3dQb3MAU2V0TmV4dFdpbmRvd1NpemUAU2V0TmV4dFdpbmRvd1NpemVDb25zdHJhaW50cwBTZXROZXh0V2luZG93Q29udGVudFNpemUAU2V0TmV4dFdpbmRvd0NvbGxhcHNlZABTZXROZXh0V2luZG93Rm9jdXMAU2V0TmV4dFdpbmRvd0JnQWxwaGEAU2V0V2luZG93UG9zAFNldFdpbmRvd1NpemUAU2V0V2luZG93Q29sbGFwc2VkAFNldFdpbmRvd0ZvY3VzAFNldFdpbmRvd05hbWVQb3MAU2V0V2luZG93TmFtZVNpemUAU2V0V2luZG93TmFtZUNvbGxhcHNlZABTZXRXaW5kb3dOYW1lRm9jdXMAR2V0U2Nyb2xsWABHZXRTY3JvbGxZAEdldFNjcm9sbE1heFgAR2V0U2Nyb2xsTWF4WQBTZXRTY3JvbGxYAFNldFNjcm9sbFkAU2V0U2Nyb2xsSGVyZVkAU2V0U2Nyb2xsRnJvbVBvc1kAU2V0U3RhdGVTdG9yYWdlAEdldFN0YXRlU3RvcmFnZQBQdXNoRm9udABQb3BGb250AFB1c2hTdHlsZUNvbG9yAFBvcFN0eWxlQ29sb3IAUHVzaFN0eWxlVmFyAFBvcFN0eWxlVmFyAEdldFN0eWxlQ29sb3JWZWM0AEdldEZvbnQAR2V0Rm9udFNpemUAR2V0Rm9udFRleFV2V2hpdGVQaXhlbABHZXRDb2xvclUzMl9BAEdldENvbG9yVTMyX0IAR2V0Q29sb3JVMzJfQwBQdXNoSXRlbVdpZHRoAFBvcEl0ZW1XaWR0aABDYWxjSXRlbVdpZHRoAFB1c2hUZXh0V3JhcFBvcwBQb3BUZXh0V3JhcFBvcwBQdXNoQWxsb3dLZXlib2FyZEZvY3VzAFBvcEFsbG93S2V5Ym9hcmRGb2N1cwBQdXNoQnV0dG9uUmVwZWF0AFBvcEJ1dHRvblJlcGVhdABTZXBhcmF0b3IAU2FtZUxpbmUATmV3TGluZQBTcGFjaW5nAER1bW15AEluZGVudABVbmluZGVudABCZWdpbkdyb3VwAEVuZEdyb3VwAEdldEN1cnNvclBvcwBHZXRDdXJzb3JQb3NYAEdldEN1cnNvclBvc1kAU2V0Q3Vyc29yUG9zAFNldEN1cnNvclBvc1gAU2V0Q3Vyc29yUG9zWQBHZXRDdXJzb3JTdGFydFBvcwBHZXRDdXJzb3JTY3JlZW5Qb3MAU2V0Q3Vyc29yU2NyZWVuUG9zAEFsaWduVGV4dFRvRnJhbWVQYWRkaW5nAEdldFRleHRMaW5lSGVpZ2h0AEdldFRleHRMaW5lSGVpZ2h0V2l0aFNwYWNpbmcAR2V0RnJhbWVIZWlnaHQAR2V0RnJhbWVIZWlnaHRXaXRoU3BhY2luZwBDb2x1bW5zAE5leHRDb2x1bW4AR2V0Q29sdW1uSW5kZXgAR2V0Q29sdW1uV2lkdGgAU2V0Q29sdW1uV2lkdGgAR2V0Q29sdW1uT2Zmc2V0AFNldENvbHVtbk9mZnNldABHZXRDb2x1bW5zQ291bnQAUHVzaElEAFBvcElEAEdldElEAFRleHRVbmZvcm1hdHRlZABUZXh0AFRleHRWAFRleHRDb2xvcmVkAFRleHRDb2xvcmVkVgBUZXh0RGlzYWJsZWQAVGV4dERpc2FibGVkVgBUZXh0V3JhcHBlZABUZXh0V3JhcHBlZFYATGFiZWxUZXh0AExhYmVsVGV4dFYAQnVsbGV0VGV4dABCdWxsZXRUZXh0VgBCdWxsZXQAQnV0dG9uAFNtYWxsQnV0dG9uAEFycm93QnV0dG9uAEludmlzaWJsZUJ1dHRvbgBJbWFnZQBJbWFnZUJ1dHRvbgBDaGVja2JveABDaGVja2JveEZsYWdzAFJhZGlvQnV0dG9uX0EAUmFkaW9CdXR0b25fQgBQbG90TGluZXMAUGxvdEhpc3RvZ3JhbQBQcm9ncmVzc0JhcgBCZWdpbkNvbWJvAEVuZENvbWJvAENvbWJvAERyYWdGbG9hdABEcmFnRmxvYXQyAERyYWdGbG9hdDMARHJhZ0Zsb2F0NABEcmFnRmxvYXRSYW5nZTIARHJhZ0ludABEcmFnSW50MgBEcmFnSW50MwBEcmFnSW50NABEcmFnSW50UmFuZ2UyAERyYWdTY2FsYXIASW5wdXRUZXh0AElucHV0VGV4dE11bHRpbGluZQBJbnB1dEZsb2F0AElucHV0RmxvYXQyAElucHV0RmxvYXQzAElucHV0RmxvYXQ0AElucHV0SW50AElucHV0SW50MgBJbnB1dEludDMASW5wdXRJbnQ0AElucHV0RG91YmxlAElucHV0U2NhbGFyAFNsaWRlckZsb2F0AFNsaWRlckZsb2F0MgBTbGlkZXJGbG9hdDMAU2xpZGVyRmxvYXQ0AFNsaWRlckFuZ2xlAFNsaWRlckludABTbGlkZXJJbnQyAFNsaWRlckludDMAU2xpZGVySW50NABTbGlkZXJTY2FsYXIAVlNsaWRlckZsb2F0AFZTbGlkZXJJbnQAVlNsaWRlclNjYWxhcgBDb2xvckVkaXQzAENvbG9yRWRpdDQAQ29sb3JQaWNrZXIzAENvbG9yUGlja2VyNABDb2xvckJ1dHRvbgBTZXRDb2xvckVkaXRPcHRpb25zAFRyZWVOb2RlX0EAVHJlZU5vZGVfQgBUcmVlTm9kZV9DAFRyZWVOb2RlRXhfQQBUcmVlTm9kZUV4X0IAVHJlZU5vZGVFeF9DAFRyZWVQdXNoX0EAVHJlZVB1c2hfQgBUcmVlUG9wAFRyZWVBZHZhbmNlVG9MYWJlbFBvcwBHZXRUcmVlTm9kZVRvTGFiZWxTcGFjaW5nAFNldE5leHRUcmVlTm9kZU9wZW4AQ29sbGFwc2luZ0hlYWRlcl9BAENvbGxhcHNpbmdIZWFkZXJfQgBTZWxlY3RhYmxlX0EAU2VsZWN0YWJsZV9CAExpc3RCb3hfQQBMaXN0Qm94X0IATGlzdEJveEhlYWRlcl9BAExpc3RCb3hIZWFkZXJfQgBMaXN0Qm94Rm9vdGVyAFZhbHVlX0EAVmFsdWVfQgBWYWx1ZV9DAFZhbHVlX0QAU2V0VG9vbHRpcABCZWdpblRvb2x0aXAARW5kVG9vbHRpcABCZWdpbk1haW5NZW51QmFyAEVuZE1haW5NZW51QmFyAEJlZ2luTWVudUJhcgBFbmRNZW51QmFyAEJlZ2luTWVudQBFbmRNZW51AE1lbnVJdGVtX0EATWVudUl0ZW1fQgBPcGVuUG9wdXAAT3BlblBvcHVwT25JdGVtQ2xpY2sAQmVnaW5Qb3B1cABCZWdpblBvcHVwTW9kYWwAQmVnaW5Qb3B1cENvbnRleHRJdGVtAEJlZ2luUG9wdXBDb250ZXh0V2luZG93AEJlZ2luUG9wdXBDb250ZXh0Vm9pZABFbmRQb3B1cABJc1BvcHVwT3BlbgBDbG9zZUN1cnJlbnRQb3B1cABCZWdpblRhYkJhcgBFbmRUYWJCYXIAQmVnaW5UYWJJdGVtAEVuZFRhYkl0ZW0AU2V0VGFiSXRlbUNsb3NlZABMb2dUb1RUWQBMb2dUb0ZpbGUATG9nVG9DbGlwYm9hcmQATG9nRmluaXNoAExvZ0J1dHRvbnMATG9nVGV4dABCZWdpbkRyYWdEcm9wU291cmNlAFNldERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFNvdXJjZQBCZWdpbkRyYWdEcm9wVGFyZ2V0AEFjY2VwdERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFRhcmdldABHZXREcmFnRHJvcFBheWxvYWQAUHVzaENsaXBSZWN0AFBvcENsaXBSZWN0AFNldEl0ZW1EZWZhdWx0Rm9jdXMAU2V0S2V5Ym9hcmRGb2N1c0hlcmUASXNJdGVtSG92ZXJlZABJc0l0ZW1BY3RpdmUASXNJdGVtRWRpdGVkAElzSXRlbUZvY3VzZWQASXNJdGVtQ2xpY2tlZABJc0l0ZW1WaXNpYmxlAElzSXRlbURlYWN0aXZhdGVkAElzSXRlbURlYWN0aXZhdGVkQWZ0ZXJFZGl0AElzQW55SXRlbUhvdmVyZWQASXNBbnlJdGVtQWN0aXZlAElzQW55SXRlbUZvY3VzZWQAR2V0SXRlbVJlY3RNaW4AR2V0SXRlbVJlY3RNYXgAR2V0SXRlbVJlY3RTaXplAFNldEl0ZW1BbGxvd092ZXJsYXAASXNXaW5kb3dGb2N1c2VkAElzV2luZG93SG92ZXJlZABJc1JlY3RWaXNpYmxlX0EASXNSZWN0VmlzaWJsZV9CAEdldFRpbWUAR2V0RnJhbWVDb3VudABHZXRPdmVybGF5RHJhd0xpc3QAR2V0RHJhd0xpc3RTaGFyZWREYXRhAEdldFN0eWxlQ29sb3JOYW1lAENhbGNUZXh0U2l6ZQBDYWxjTGlzdENsaXBwaW5nAEJlZ2luQ2hpbGRGcmFtZQBFbmRDaGlsZEZyYW1lAENvbG9yQ29udmVydFUzMlRvRmxvYXQ0AENvbG9yQ29udmVydEZsb2F0NFRvVTMyAENvbG9yQ29udmVydFJHQnRvSFNWAENvbG9yQ29udmVydEhTVnRvUkdCAEdldEtleUluZGV4AElzS2V5RG93bgBJc0tleVByZXNzZWQASXNLZXlSZWxlYXNlZABHZXRLZXlQcmVzc2VkQW1vdW50AElzTW91c2VEb3duAElzQW55TW91c2VEb3duAElzTW91c2VDbGlja2VkAElzTW91c2VEb3VibGVDbGlja2VkAElzTW91c2VSZWxlYXNlZABJc01vdXNlRHJhZ2dpbmcASXNNb3VzZUhvdmVyaW5nUmVjdABJc01vdXNlUG9zVmFsaWQAR2V0TW91c2VQb3MAR2V0TW91c2VQb3NPbk9wZW5pbmdDdXJyZW50UG9wdXAAR2V0TW91c2VEcmFnRGVsdGEAUmVzZXRNb3VzZURyYWdEZWx0YQBHZXRNb3VzZUN1cnNvcgBTZXRNb3VzZUN1cnNvcgBDYXB0dXJlS2V5Ym9hcmRGcm9tQXBwAENhcHR1cmVNb3VzZUZyb21BcHAAR2V0Q2xpcGJvYXJkVGV4dABTZXRDbGlwYm9hcmRUZXh0AExvYWRJbmlTZXR0aW5nc0Zyb21NZW1vcnkAU2F2ZUluaVNldHRpbmdzVG9NZW1vcnkAU2V0QWxsb2NhdG9yRnVuY3Rpb25zAE1lbUFsbG9jAE1lbUZyZWUAaWlpAE4xMGVtc2NyaXB0ZW4zdmFsRQB2aWlpaQBOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TXzExY2hhcl90cmFpdHNJY0VFTlNfOWFsbG9jYXRvckljRUVFRQBOU3QzX18yMjFfX2Jhc2ljX3N0cmluZ19jb21tb25JTGIxRUVFAGlpaWZpAHgAeQAyM2ltcG9ydF9tYXliZV9udWxsX3ZhbHVlSTZJbVZlYzJFAGlpaWlpAGlpaWYAaWlpZmYAaWlpaQAxMmFjY2Vzc192YWx1ZUlmTG0xRUUAdmlmZmZpaWkAegB3ADZJbVZlYzIAdmlpZmlpADEyYWNjZXNzX3ZhbHVlSWlMbTFFRQBpaWlpZmkAUDIwSW1EcmF3TGlzdFNoYXJlZERhdGEAMjBJbURyYXdMaXN0U2hhcmVkRGF0YQBQMTBJbURyYXdMaXN0ADEwSW1EcmF3TGlzdABkaQBpaWlpaWkAJXMAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TMF8xMWNoYXJfdHJhaXRzSWNFRU5TMF85YWxsb2NhdG9ySWNFRUVFRQAyNGltcG9ydF9tYXliZV9udWxsX3N0cmluZwAyM2FjY2Vzc19tYXliZV9udWxsX3ZhbHVlSWJMbTFFRQB2aWlmaQB2aWlpAGlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJZkxtNEVFADIzYWNjZXNzX21heWJlX251bGxfdmFsdWVJZkxtNEVFADEyYWNjZXNzX3ZhbHVlSWZMbTNFRQBpaWlpaWlpaWlpAHNldABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lkRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlkRQBsZW5ndGgAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lmRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlmRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lqRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlqRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lpRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlpRQBpaWlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJaUxtNEVFADEyYWNjZXNzX3ZhbHVlSWlMbTNFRQAxMmFjY2Vzc192YWx1ZUlpTG0yRUUAJS4wZiBkZWcAMTJhY2Nlc3NfdmFsdWVJZkxtMkVFAGlpaWlpaWlpAGlpaWlkZGlpADEyYWNjZXNzX3ZhbHVlSWRMbTFFRQBQMjZJbUd1aUlucHV0VGV4dENhbGxiYWNrRGF0YQAyNkltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAGlpaWlpaWlpaWlpAHZpZmlpAHZpaWlpaWlpaWlpADEyYWNjZXNzX3ZhbHVlSWpMbTFFRQAxMmFjY2Vzc192YWx1ZUliTG0xRUUAdmlpaWlpaWkAbnVtYmVyAHZpaWYAZmlpAGlpAHZpaQBQNkltRm9udAA2SW1Gb250AFBLNkltVmVjNAA2SW1WZWM0AFRPRE86ICVzCgBhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoZW1zY3JpcHRlbjo6dmFsKSBjb25zdAB2aWZmAHZpaWlpaQBQMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAdmlmAGZpAHN0cmluZwBQMTBJbUd1aVN0eWxlADEwSW1HdWlTdHlsZQB2aQBQMTBJbURyYXdEYXRhADEwSW1EcmF3RGF0YQBQN0ltR3VpSU8AN0ltR3VpSU8AUDE2V3JhcEltR3VpQ29udGV4dAAxNldyYXBJbUd1aUNvbnRleHQAUDExSW1Gb250QXRsYXMAMTFJbUZvbnRBdGxhcwBJbUd1aVN0eWxlAEFscGhhAFdpbmRvd1BhZGRpbmcAV2luZG93Um91bmRpbmcAV2luZG93Qm9yZGVyU2l6ZQBXaW5kb3dNaW5TaXplAFdpbmRvd1RpdGxlQWxpZ24AQ2hpbGRSb3VuZGluZwBDaGlsZEJvcmRlclNpemUAUG9wdXBSb3VuZGluZwBQb3B1cEJvcmRlclNpemUARnJhbWVQYWRkaW5nAEZyYW1lUm91bmRpbmcARnJhbWVCb3JkZXJTaXplAEl0ZW1TcGFjaW5nAEl0ZW1Jbm5lclNwYWNpbmcAVG91Y2hFeHRyYVBhZGRpbmcASW5kZW50U3BhY2luZwBDb2x1bW5zTWluU3BhY2luZwBTY3JvbGxiYXJTaXplAFNjcm9sbGJhclJvdW5kaW5nAEdyYWJNaW5TaXplAEdyYWJSb3VuZGluZwBUYWJSb3VuZGluZwBUYWJCb3JkZXJTaXplAEJ1dHRvblRleHRBbGlnbgBEaXNwbGF5V2luZG93UGFkZGluZwBEaXNwbGF5U2FmZUFyZWFQYWRkaW5nAE1vdXNlQ3Vyc29yU2NhbGUAQW50aUFsaWFzZWRMaW5lcwBBbnRpQWxpYXNlZEZpbGwAQ3VydmVUZXNzZWxsYXRpb25Ub2wAX2dldEF0X0NvbG9ycwBfc2V0QXRfQ29sb3JzAFNjYWxlQWxsU2l6ZXMAUDZJbVZlYzQAUEs2SW1WZWMyAHYAUEsxMEltR3VpU3R5bGUASW1HdWlJTwBDb25maWdGbGFncwBCYWNrZW5kRmxhZ3MARGlzcGxheVNpemUARGVsdGFUaW1lAEluaVNhdmluZ1JhdGUASW5pRmlsZW5hbWUATG9nRmlsZW5hbWUATW91c2VEb3VibGVDbGlja1RpbWUATW91c2VEb3VibGVDbGlja01heERpc3QATW91c2VEcmFnVGhyZXNob2xkAF9nZXRBdF9LZXlNYXAAX3NldEF0X0tleU1hcABLZXlSZXBlYXREZWxheQBLZXlSZXBlYXRSYXRlAFVzZXJEYXRhAEZvbnRzAEZvbnRHbG9iYWxTY2FsZQBGb250QWxsb3dVc2VyU2NhbGluZwBGb250RGVmYXVsdABEaXNwbGF5RnJhbWVidWZmZXJTY2FsZQBEaXNwbGF5VmlzaWJsZU1pbgBEaXNwbGF5VmlzaWJsZU1heABNb3VzZURyYXdDdXJzb3IAQ29uZmlnTWFjT1NYQmVoYXZpb3JzAENvbmZpZ0lucHV0VGV4dEN1cnNvckJsaW5rAENvbmZpZ1dpbmRvd3NSZXNpemVGcm9tRWRnZXMAQ29uZmlnV2luZG93c01vdmVGcm9tVGl0bGVCYXJPbmx5AEdldENsaXBib2FyZFRleHRGbgBTZXRDbGlwYm9hcmRUZXh0Rm4AQ2xpcGJvYXJkVXNlckRhdGEATW91c2VQb3MAX2dldEF0X01vdXNlRG93bgBfc2V0QXRfTW91c2VEb3duAE1vdXNlV2hlZWwAS2V5Q3RybABLZXlTaGlmdABLZXlBbHQAS2V5U3VwZXIAX2dldEF0X0tleXNEb3duAF9zZXRBdF9LZXlzRG93bgBfZ2V0QXRfTmF2SW5wdXRzAF9zZXRBdF9OYXZJbnB1dHMAQWRkSW5wdXRDaGFyYWN0ZXIAQWRkSW5wdXRDaGFyYWN0ZXJzVVRGOABDbGVhcklucHV0Q2hhcmFjdGVycwBXYW50Q2FwdHVyZU1vdXNlAFdhbnRDYXB0dXJlS2V5Ym9hcmQAV2FudFRleHRJbnB1dABXYW50U2V0TW91c2VQb3MAV2FudFNhdmVJbmlTZXR0aW5ncwBOYXZBY3RpdmUATmF2VmlzaWJsZQBGcmFtZXJhdGUATWV0cmljc1JlbmRlclZlcnRpY2VzAE1ldHJpY3NSZW5kZXJJbmRpY2VzAE1ldHJpY3NSZW5kZXJXaW5kb3dzAE1ldHJpY3NBY3RpdmVXaW5kb3dzAE1ldHJpY3NBY3RpdmVBbGxvY2F0aW9ucwBNb3VzZURlbHRhAF9nZXRBdF9Nb3VzZUNsaWNrZWRQb3MAX2dldEF0X01vdXNlRG93bkR1cmF0aW9uAF9nZXRBdF9LZXlzRG93bkR1cmF0aW9uAF9nZXRBdF9OYXZJbnB1dHNEb3duRHVyYXRpb24AUEs3SW1HdWlJTwBpaWlpZgBmaWlpAEltRm9udEF0bGFzAEFkZEZvbnREZWZhdWx0AEFkZEZvbnRGcm9tTWVtb3J5VFRGAENsZWFyVGV4RGF0YQBDbGVhcklucHV0RGF0YQBDbGVhckZvbnRzAENsZWFyAEJ1aWxkAElzQnVpbHQAR2V0VGV4RGF0YUFzQWxwaGE4AEdldFRleERhdGFBc1JHQkEzMgBHZXRHbHlwaFJhbmdlc0RlZmF1bHQAR2V0R2x5cGhSYW5nZXNLb3JlYW4AR2V0R2x5cGhSYW5nZXNKYXBhbmVzZQBHZXRHbHlwaFJhbmdlc0NoaW5lc2VGdWxsAEdldEdseXBoUmFuZ2VzQ2hpbmVzZVNpbXBsaWZpZWRDb21tb24AR2V0R2x5cGhSYW5nZXNDeXJpbGxpYwBHZXRHbHlwaFJhbmdlc1RoYWkATG9ja2VkAEZsYWdzAFRleElEAFRleERlc2lyZWRXaWR0aABUZXhHbHlwaFBhZGRpbmcAVGV4V2lkdGgAVGV4SGVpZ2h0AFRleFV2U2NhbGUAVGV4VXZXaGl0ZVBpeGVsAEl0ZXJhdGVGb250cwBwaXhlbHMAd2lkdGgAaGVpZ2h0AGJ5dGVzX3Blcl9waXhlbABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0loRUUAaWlpaWZpaQBGb250RGF0YQBidWZmZXIAYnl0ZU9mZnNldABieXRlTGVuZ3RoAFRPRE86IEZvbnREYXRhICV6dSAlenUKAEZvbnREYXRhT3duZWRCeUF0bGFzAEZvbnRObwBTaXplUGl4ZWxzAE92ZXJzYW1wbGVIAE92ZXJzYW1wbGVWAFBpeGVsU25hcEgAR2x5cGhFeHRyYVNwYWNpbmcAR2x5cGhPZmZzZXQAR2x5cGhSYW5nZXMAR2x5cGhNaW5BZHZhbmNlWABHbHlwaE1heEFkdmFuY2VYAE1lcmdlTW9kZQBSYXN0ZXJpemVyRmxhZ3MAUmFzdGVyaXplck11bHRpcGx5AE5hbWUAUEsxMUltRm9udEF0bGFzAEltRm9udABGb250U2l6ZQBTY2FsZQBEaXNwbGF5T2Zmc2V0AEl0ZXJhdGVHbHlwaHMARmFsbGJhY2tHbHlwaABGYWxsYmFja0FkdmFuY2VYAEZhbGxiYWNrQ2hhcgBDb25maWdEYXRhQ291bnQASXRlcmF0ZUNvbmZpZ0RhdGEAQXNjZW50AERlc2NlbnQATWV0cmljc1RvdGFsU3VyZmFjZQBDbGVhck91dHB1dERhdGEAQnVpbGRMb29rdXBUYWJsZQBGaW5kR2x5cGgARmluZEdseXBoTm9GYWxsYmFjawBTZXRGYWxsYmFja0NoYXIAR2V0Q2hhckFkdmFuY2UASXNMb2FkZWQAR2V0RGVidWdOYW1lAENhbGNUZXh0U2l6ZUEAQ2FsY1dvcmRXcmFwUG9zaXRpb25BAFJlbmRlckNoYXIAdmlpaWZpaWkAaWlpZmlmAGlpaWZmZmlpaQA8dW5rbm93bj4AUEs2SW1Gb250AFBLMTFJbUZvbnRHbHlwaAAxMUltRm9udEdseXBoAFAxMkltRm9udENvbmZpZwAxMkltRm9udENvbmZpZwBQMTFJbUZvbnRHbHlwaABJbUZvbnRDb25maWcARHN0Rm9udABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShJbUZvbnRDb25maWcgJiwgZW1zY3JpcHRlbjo6dmFsKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShjb25zdCBJbUZvbnRDb25maWcgJikgY29uc3QAUEsxMkltRm9udENvbmZpZwBJbUZvbnRHbHlwaABDb2RlcG9pbnQAQWR2YW5jZVgAWDAAWTAAWDEAWTEAVTAAVjAAVTEAVjEASW1EcmF3RGF0YQBJdGVyYXRlRHJhd0xpc3RzAFZhbGlkAENtZExpc3RzQ291bnQAVG90YWxJZHhDb3VudABUb3RhbFZ0eENvdW50AERpc3BsYXlQb3MARGVJbmRleEFsbEJ1ZmZlcnMAU2NhbGVDbGlwUmVjdHMAUEsxMEltRHJhd0RhdGEAUEsxMEltRHJhd0xpc3QASW1EcmF3TGlzdABJdGVyYXRlRHJhd0NtZHMASWR4QnVmZmVyAFZ0eEJ1ZmZlcgBQdXNoQ2xpcFJlY3RGdWxsU2NyZWVuAFB1c2hUZXh0dXJlSUQAUG9wVGV4dHVyZUlEAEdldENsaXBSZWN0TWluAEdldENsaXBSZWN0TWF4AEFkZExpbmUAQWRkUmVjdABBZGRSZWN0RmlsbGVkAEFkZFJlY3RGaWxsZWRNdWx0aUNvbG9yAEFkZFF1YWQAQWRkUXVhZEZpbGxlZABBZGRUcmlhbmdsZQBBZGRUcmlhbmdsZUZpbGxlZABBZGRDaXJjbGUAQWRkQ2lyY2xlRmlsbGVkAEFkZFRleHRfQQBBZGRUZXh0X0IAQWRkSW1hZ2UAQWRkSW1hZ2VRdWFkAEFkZEltYWdlUm91bmRlZABBZGRQb2x5bGluZQBBZGRDb252ZXhQb2x5RmlsbGVkAEFkZEJlemllckN1cnZlAFBhdGhDbGVhcgBQYXRoTGluZVRvAFBhdGhMaW5lVG9NZXJnZUR1cGxpY2F0ZQBQYXRoRmlsbENvbnZleABQYXRoU3Ryb2tlAFBhdGhBcmNUbwBQYXRoQXJjVG9GYXN0AFBhdGhCZXppZXJDdXJ2ZVRvAFBhdGhSZWN0AENoYW5uZWxzU3BsaXQAQ2hhbm5lbHNNZXJnZQBDaGFubmVsc1NldEN1cnJlbnQAQWRkQ2FsbGJhY2sAQWRkRHJhd0NtZABDbGVhckZyZWVNZW1vcnkAUHJpbVJlc2VydmUAUHJpbVJlY3QAUHJpbVJlY3RVVgBQcmltUXVhZFVWAFByaW1Xcml0ZVZ0eABQcmltV3JpdGVJZHgAUHJpbVZ0eABVcGRhdGVDbGlwUmVjdABVcGRhdGVUZXh0dXJlSUQAdmlpaWlpaWlpaWlpAHZpaWlpZmkAdmlpaWZmZmkAdmlpaWlmAHZpaWlpaWlpZmkAdmlpaWlpaWlpZmkAdmlpaWlpaWlpaWlpaQB2aWlpZmlpaWZpADIzaW1wb3J0X21heWJlX251bGxfdmFsdWVJNkltVmVjNEUAdmlpaWZpaQB2aWlpZmlpZgB2aWlpaWlpAHZpaWlpaWlmAHZpaWlpaWlpZgB2aWlpaWlpaWkAdmlpaWlpZmkAdmlpaWlpZmlmAHZpaWlpaWYATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJY0VFAFBLOUltRHJhd0NtZAA5SW1EcmF3Q21kAEltRHJhd0NtZABFbGVtQ291bnQAQ2xpcFJlY3QAVGV4dHVyZUlkAFA5SW1EcmF3Q21kAEltR3VpTGlzdENsaXBwZXIAU3RhcnRQb3NZAEl0ZW1zSGVpZ2h0AEl0ZW1zQ291bnQAU3RlcE5vAERpc3BsYXlTdGFydABEaXNwbGF5RW5kAFN0ZXAAUDE2SW1HdWlMaXN0Q2xpcHBlcgAxNkltR3VpTGlzdENsaXBwZXIAdmlpaWYAUEsxNkltR3VpTGlzdENsaXBwZXIASW1HdWlTaXplQ2FsbGJhY2tEYXRhAFBvcwBDdXJyZW50U2l6ZQBEZXNpcmVkU2l6ZQBQSzIxSW1HdWlTaXplQ2FsbGJhY2tEYXRhAEltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAEV2ZW50RmxhZwBFdmVudENoYXIARXZlbnRLZXkAQnVmAEJ1ZlRleHRMZW4AQnVmU2l6ZQBCdWZEaXJ0eQBDdXJzb3JQb3MAU2VsZWN0aW9uU3RhcnQAU2VsZWN0aW9uRW5kAERlbGV0ZUNoYXJzAEluc2VydENoYXJzAEhhc1NlbGVjdGlvbgBQSzI2SW1HdWlJbnB1dFRleHRDYWxsYmFja0RhdGEASW1WZWM0AFNldABDb3B5AEVxdWFscwBJbVZlYzIAUDZJbVZlYzIAV3JhcEltR3VpQ29udGV4dABQSzE2V3JhcEltR3VpQ29udGV4dABtYWxsaW5mbwBhcmVuYQBvcmRibGtzAHNtYmxrcwBoYmxrcwBoYmxraGQAdXNtYmxrcwBmc21ibGtzAHVvcmRibGtzAGZvcmRibGtzAGtlZXBjb3N0AHZvaWQAYm9vbABzdGQ6OnN0cmluZwBzdGQ6OmJhc2ljX3N0cmluZzx1bnNpZ25lZCBjaGFyPgBzdGQ6OndzdHJpbmcAZW1zY3JpcHRlbjo6dmFsAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgc2hvcnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgaW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludDE2X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQzMl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZyBkb3VibGU+AE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SWVFRQBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxkb3VibGU+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBsb25nPgBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0ltRUUAZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZz4ATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJbEVFAE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SXRFRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lzRUUATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJYUVFAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGNoYXI+AE5TdDNfXzIxMmJhc2ljX3N0cmluZ0l3TlNfMTFjaGFyX3RyYWl0c0l3RUVOU185YWxsb2NhdG9ySXdFRUVFAE5TdDNfXzIxMmJhc2ljX3N0cmluZ0loTlNfMTFjaGFyX3RyYWl0c0loRUVOU185YWxsb2NhdG9ySWhFRUVFAGRvdWJsZQBmbG9hdAB1bnNpZ25lZCBsb25nAGxvbmcAdW5zaWduZWQgaW50AGludAB1bnNpZ25lZCBzaG9ydABzaG9ydAB1bnNpZ25lZCBjaGFyAHNpZ25lZCBjaGFyAGNoYXIAAAECBAcDBgUALSsgICAwWDB4AChudWxsKQAtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBOQU4ALgBpbmZpbml0eQBuYW4AcndhAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXM6ICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXMAdGVybWluYXRpbmcgd2l0aCAlcyBmb3JlaWduIGV4Y2VwdGlvbgB0ZXJtaW5hdGluZwB1bmNhdWdodABTdDlleGNlcHRpb24ATjEwX19jeHhhYml2MTE2X19zaGltX3R5cGVfaW5mb0UAU3Q5dHlwZV9pbmZvAE4xMF9fY3h4YWJpdjEyMF9fc2lfY2xhc3NfdHlwZV9pbmZvRQBOMTBfX2N4eGFiaXYxMTdfX2NsYXNzX3R5cGVfaW5mb0UAcHRocmVhZF9vbmNlIGZhaWx1cmUgaW4gX19jeGFfZ2V0X2dsb2JhbHNfZmFzdCgpAGNhbm5vdCBjcmVhdGUgcHRocmVhZCBrZXkgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAY2Fubm90IHplcm8gb3V0IHRocmVhZCB2YWx1ZSBmb3IgX19jeGFfZ2V0X2dsb2JhbHMoKQB0ZXJtaW5hdGVfaGFuZGxlciB1bmV4cGVjdGVkbHkgcmV0dXJuZWQAU3QxMWxvZ2ljX2Vycm9yAFN0MTJsZW5ndGhfZXJyb3IATjEwX19jeHhhYml2MTE5X19wb2ludGVyX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19wYmFzZV90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjEyM19fZnVuZGFtZW50YWxfdHlwZV9pbmZvRQB2AFB2AERuAGIAYwBoAGEAcwB0AGkAagBsAG0AZgBkAE4xMF9fY3h4YWJpdjEyMV9fdm1pX2NsYXNzX3R5cGVfaW5mb0U=\";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}function getBinary(){try{if(Module[\"wasmBinary\"]){return new Uint8Array(Module[\"wasmBinary\"])}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(Module[\"readBinary\"]){return Module[\"readBinary\"](wasmBinaryFile)}else{throw\"both async and sync fetching of the wasm failed\"}}catch(err){abort(err)}}function getBinaryPromise(){if(!Module[\"wasmBinary\"]&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch===\"function\"){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()})}return new Promise(function(resolve,reject){resolve(getBinary())})}function createWasm(env){var info={\"env\":env,\"global\":{\"NaN\":NaN,Infinity:Infinity},\"global.Math\":Math,\"asm2wasm\":asm2wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module[\"asm\"]=exports;removeRunDependency(\"wasm-instantiate\")}addRunDependency(\"wasm-instantiate\");function receiveInstantiatedSource(output){receiveInstance(output[\"instance\"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err(\"failed to asynchronously prepare wasm: \"+reason);abort(reason)})}function instantiateAsync(){if(!Module[\"wasmBinary\"]&&typeof WebAssembly.instantiateStreaming===\"function\"&&!isDataURI(wasmBinaryFile)&&typeof fetch===\"function\"){return WebAssembly.instantiateStreaming(fetch(wasmBinaryFile,{credentials:\"same-origin\"}),info).then(receiveInstantiatedSource,function(reason){err(\"wasm streaming compile failed: \"+reason);err(\"falling back to ArrayBuffer instantiation\");instantiateArrayBuffer(receiveInstantiatedSource)})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module[\"instantiateWasm\"]){try{return Module[\"instantiateWasm\"](info,receiveInstance)}catch(e){err(\"Module.instantiateWasm callback failed with error: \"+e);return false}}instantiateAsync();return{}}Module[\"asm\"]=function(global,env,providedBuffer){env[\"memory\"]=wasmMemory;env[\"table\"]=wasmTable=new WebAssembly.Table({\"initial\":1442,\"maximum\":1442,\"element\":\"anyfunc\"});env[\"__memory_base\"]=1024;env[\"__table_base\"]=0;var exports=createWasm(env);return exports};__ATINIT__.push({func:function(){globalCtors()}});function ___cxa_allocate_exception(size){return _malloc(size)}function __ZSt18uncaught_exceptionv(){return!!__ZSt18uncaught_exceptionv.uncaught_exception}function ___cxa_free_exception(ptr){try{return _free(ptr)}catch(e){}}var EXCEPTIONS={last:0,caught:[],infos:{},deAdjust:function(adjusted){if(!adjusted||EXCEPTIONS.infos[adjusted])return adjusted;for(var key in EXCEPTIONS.infos){var ptr=+key;var adj=EXCEPTIONS.infos[ptr].adjusted;var len=adj.length;for(var i=0;i0);info.refcount--;if(info.refcount===0&&!info.rethrown){if(info.destructor){Module[\"dynCall_vi\"](info.destructor,ptr)}delete EXCEPTIONS.infos[ptr];___cxa_free_exception(ptr)}},clearRef:function(ptr){if(!ptr)return;var info=EXCEPTIONS.infos[ptr];info.refcount=0}};function ___cxa_throw(ptr,type,destructor){EXCEPTIONS.infos[ptr]={ptr:ptr,adjusted:[ptr],type:type,destructor:destructor,refcount:0,caught:false,rethrown:false};EXCEPTIONS.last=ptr;if(!(\"uncaught_exception\"in __ZSt18uncaught_exceptionv)){__ZSt18uncaught_exceptionv.uncaught_exception=1}else{__ZSt18uncaught_exceptionv.uncaught_exception++}throw ptr}function ___lock(){}var PATH={splitPath:function(filename){var splitPathRe=/^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:function(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:function(path){var isAbsolute=path.charAt(0)===\"/\",trailingSlash=path.substr(-1)===\"/\";path=PATH.normalizeArray(path.split(\"/\").filter(function(p){return!!p}),!isAbsolute).join(\"/\");if(!path&&!isAbsolute){path=\".\"}if(path&&trailingSlash){path+=\"/\"}return(isAbsolute?\"/\":\"\")+path},dirname:function(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:function(path){if(path===\"/\")return\"/\";var lastSlash=path.lastIndexOf(\"/\");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},extname:function(path){return PATH.splitPath(path)[3]},join:function(){var paths=Array.prototype.slice.call(arguments,0);return PATH.normalize(paths.join(\"/\"))},join2:function(l,r){return PATH.normalize(l+\"/\"+r)}};var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0}else{buffer.push(curr)}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get()}};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall145(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();return SYSCALLS.doReadv(stream,iov,iovcnt)}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j>2]=value;return value}function ___syscall221(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___unlock(){}function getShiftFromSize(size){switch(size){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError(\"Unknown type size: \"+size)}}function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<256;++i){codes[i]=String.fromCharCode(i)}embind_charCodes=codes}var embind_charCodes=undefined;function readLatin1String(ptr){var ret=\"\";var c=ptr;while(HEAPU8[c]){ret+=embind_charCodes[HEAPU8[c++]]}return ret}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return\"_unknown\"}name=name.replace(/[^a-zA-Z0-9_]/g,\"$\");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return\"_\"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return new Function(\"body\",\"return function \"+name+\"() {\\n\"+' \"use strict\";'+\" return body.apply(this, arguments);\\n\"+\"};\\n\")(body)}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+\"\\n\"+stack.replace(/^Error(:[^\\n]*)?\\n/,\"\")}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+\": \"+this.message}};return errorClass}var BindingError=undefined;function throwBindingError(message){throw new BindingError(message)}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError(\"Mismatched type converter count\")}for(var i=0;i>shift])},destructorFunction:null})}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return{count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+\" instance already deleted\")}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr)}else{$$.ptrType.registeredClass.rawDestructor($$.ptr)}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$)}}function attachFinalizer(handle){if(\"undefined\"===typeof FinalizationGroup){attachFinalizer=function(handle){return handle};return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn(\"object already deleted: \"+$$.ptr)}else{releaseClassHandle($$)}}});attachFinalizer=function(handle){finalizationGroup.register(handle,handle.$$,handle.$$);return handle};detachFinalizer=function(handle){finalizationGroup.unregister(handle.$$)};return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError(\"Object already scheduled for deletion\")}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined}}function ClassHandle_isDeleted(){return!this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj[\"delete\"]()}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError(\"Object already scheduled for deletion\")}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes)}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype[\"isAliasOf\"]=ClassHandle_isAliasOf;ClassHandle.prototype[\"clone\"]=ClassHandle_clone;ClassHandle.prototype[\"delete\"]=ClassHandle_delete;ClassHandle.prototype[\"isDeleted\"]=ClassHandle_isDeleted;ClassHandle.prototype[\"deleteLater\"]=ClassHandle_deleteLater}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError(\"Function '\"+humanName+\"' called with an invalid number of arguments (\"+arguments.length+\") - expects one of (\"+proto[methodName].overloadTable+\")!\")}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError(\"Cannot register public name '\"+name+\"' twice\")}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError(\"Cannot register multiple overloads of a function with the same number of arguments (\"+numArguments+\")!\")}Module[name].overloadTable[numArguments]=value}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[]}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError(\"Expected null or instance of \"+desiredClass.name+\", got an instance of \"+ptrClass.name)}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr)}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError(\"Cannot convert argument of type \"+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+\" to parameter type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError(\"Passing raw pointer to smart pointer is illegal\")}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{throwBindingError(\"Cannot convert argument of type \"+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+\" to parameter type \"+this.name)}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{var clonedHandle=handle[\"clone\"]();ptr=this.rawShare(ptr,__emval_register(function(){clonedHandle[\"delete\"]()}));if(destructors!==null){destructors.push(this.rawDestructor,ptr)}}break;default:throwBindingError(\"Unsupporting sharing policy\")}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}if(handle.$$.ptrType.isConst){throwBindingError(\"Cannot convert argument of type \"+handle.$$.ptrType.name+\" to parameter type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function simpleReadValueFromPointer(pointer){return this[\"fromWireType\"](HEAPU32[pointer>>2])}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr)}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr)}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle[\"delete\"]()}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k])}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes)}}function init_embind(){Module[\"getInheritedInstanceCount\"]=getInheritedInstanceCount;Module[\"getLiveInheritedInstances\"]=getLiveInheritedInstances;Module[\"flushPendingDeletes\"]=flushPendingDeletes;Module[\"setDelayFunction\"]=setDelayFunction}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError(\"ptr should not be undefined\")}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError(\"makeClassHandle requires ptr and ptrType\")}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError(\"Both smartPtrType and smartPtr must be specified\")}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance[\"clone\"]()}else{var rv=registeredInstance[\"clone\"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType}else{toType=registeredPointerRecord.pointerType}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype[\"argPackAdvance\"]=8;RegisteredPointer.prototype[\"readValueFromPointer\"]=simpleReadValueFromPointer;RegisteredPointer.prototype[\"deleteObject\"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype[\"fromWireType\"]=RegisteredPointer_fromWireType}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this[\"toWireType\"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null}else{this[\"toWireType\"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null}}else{this[\"toWireType\"]=genericPointerToWireType}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError(\"Replacing nonexistant public symbol\")}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value}else{Module[name]=value;Module[name].argCount=numArguments}}function embind__requireFunction(signature,rawFunction){signature=readLatin1String(signature);function makeDynCaller(dynCall){var args=[];for(var i=1;i>2)+i])}return array}function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr)}}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName=\"constructor \"+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[]}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError(\"Cannot register multiple constructors with identical number of parameters (\"+(argCount-1)+\") for class '\"+classType.name+\"'! Overload resolution is currently only performed using the parameter count, not actual type info!\")}classType.registeredClass.constructor_body[argCount-1]=function unboundTypeHandler(){throwUnboundTypeError(\"Cannot construct \"+classType.name+\" due to unbound types\",rawArgTypes)};whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){classType.registeredClass.constructor_body[argCount-1]=function constructor_body(){if(arguments.length!==argCount-1){throwBindingError(humanName+\" called with \"+arguments.length+\" arguments, expected \"+(argCount-1))}var destructors=[];var args=new Array(argCount);args[0]=rawConstructor;for(var i=1;i0?\", \":\"\")+argsListWired}invokerFnBody+=(returns?\"var rv = \":\"\")+\"invoker(fn\"+(argsListWired.length>0?\", \":\"\")+argsListWired+\");\\n\";if(needsDestructorStack){invokerFnBody+=\"runDestructors(destructors);\\n\"}else{for(var i=isClassMethodFunc?1:2;i4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle)}}function count_emval_handles(){var count=0;for(var i=5;i>2])};case 3:return function(pointer){return this[\"fromWireType\"](HEAPF64[pointer>>3])};default:throw new TypeError(\"Unknown float type: \"+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,\"fromWireType\":function(value){return value},\"toWireType\":function(destructors,value){if(typeof value!==\"number\"&&typeof value!==\"boolean\"){throw new TypeError('Cannot convert \"'+_embind_repr(value)+'\" to '+this.name)}return value},\"argPackAdvance\":8,\"readValueFromPointer\":floatReadValueFromPointer(name,shift),destructorFunction:null})}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError(\"Cannot call \"+name+\" due to unbound types\",argTypes)},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return[]})}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError(\"Unknown integer type: \"+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295}var shift=getShiftFromSize(size);var fromWireType=function(value){return value};if(minRange===0){var bitshift=32-8*size;fromWireType=function(value){return value<>>bitshift}}var isUnsignedType=name.indexOf(\"unsigned\")!=-1;registerType(primitiveType,{name:name,\"fromWireType\":fromWireType,\"toWireType\":function(destructors,value){if(typeof value!==\"number\"&&typeof value!==\"boolean\"){throw new TypeError('Cannot convert \"'+_embind_repr(value)+'\" to '+this.name)}if(valuemaxRange){throw new TypeError('Passing a number \"'+_embind_repr(value)+'\" from JS side to C/C++ side to an argument of type \"'+name+'\", which is outside the valid range ['+minRange+\", \"+maxRange+\"]!\")}return isUnsignedType?value>>>0:value|0},\"argPackAdvance\":8,\"readValueFromPointer\":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null})}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(heap[\"buffer\"],data,size)}name=readLatin1String(name);registerType(rawType,{name:name,\"fromWireType\":decodeMemoryView,\"argPackAdvance\":8,\"readValueFromPointer\":decodeMemoryView},{ignoreDuplicateRegistrations:true})}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name===\"std::string\";registerType(rawType,{name:name,\"fromWireType\":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var endChar=HEAPU8[value+4+length];var endCharSwap=0;if(endChar!=0){endCharSwap=endChar;HEAPU8[value+4+length]=0}var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(HEAPU8[currentBytePtr]==0){var stringSegment=UTF8ToString(decodeStartPtr);if(str===undefined)str=stringSegment;else{str+=String.fromCharCode(0);str+=stringSegment}decodeStartPtr=currentBytePtr+1}}if(endCharSwap!=0)HEAPU8[value+4+length]=endCharSwap}else{var a=new Array(length);for(var i=0;i>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1)}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError(\"String has UTF-16 code units that do not fit in 8 bits\")}HEAPU8[ptr+4+i]=charCode}}else{for(var i=0;i>2];var a=new Array(length);var start=value+4>>shift;for(var i=0;i>2]=length;var start=ptr+4>>shift;for(var i=0;i>2]=rd;return returnType[\"toWireType\"](destructors,handle)}function __emval_lookupTypes(argCount,argTypes,argWireTypes){var a=new Array(argCount);for(var i=0;i>2)+i],\"parameter \"+i)}return a}function __emval_call(handle,argCount,argTypes,argv){handle=requireHandle(handle);var types=__emval_lookupTypes(argCount,argTypes);var args=new Array(argCount);for(var i=0;i4){emval_handle_array[handle].refcount+=1}}function __emval_new_array(){return __emval_register([])}function __emval_new_cstring(v){return __emval_register(getStringOrSymbol(v))}function __emval_new_object(){return __emval_register({})}function __emval_run_destructors(handle){var destructors=emval_handle_array[handle].value;runDestructors(destructors);__emval_decref(handle)}function __emval_set_property(handle,key,value){handle=requireHandle(handle);key=requireHandle(key);value=requireHandle(value);handle[key]=value}function __emval_strictly_equals(first,second){first=requireHandle(first);second=requireHandle(second);return first===second}function __emval_take_value(type,argv){type=requireRegisteredType(type,\"_emval_take_value\");var v=type[\"readValueFromPointer\"](argv);return __emval_register(v)}function __emval_typeof(handle){handle=requireHandle(handle);return __emval_register(typeof handle)}function _abort(){Module[\"abort\"]()}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest)}function abortOnCannotGrowMemory(requestedSize){abort(\"OOM\")}function _emscripten_resize_heap(requestedSize){abortOnCannotGrowMemory(requestedSize)}embind_init_charCodes();BindingError=Module[\"BindingError\"]=extendError(Error,\"BindingError\");InternalError=Module[\"InternalError\"]=extendError(Error,\"InternalError\");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module[\"UnboundTypeError\"]=extendError(Error,\"UnboundTypeError\");init_emval();var ASSERTIONS=false;function intArrayToString(array){var ret=[];for(var i=0;i255){if(ASSERTIONS){assert(false,\"Character code \"+chr+\" (\"+String.fromCharCode(chr)+\") at offset \"+i+\" not in 0x00-0xFF.\")}chr&=255}ret.push(String.fromCharCode(chr))}return ret.join(\"\")}var decodeBase64=typeof atob===\"function\"?atob:function(input){var keyStr=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";var output=\"\";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\\+\\/\\=]/g,\"\");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(i0){return}preRun();if(runDependencies>0)return;if(Module[\"calledRun\"])return;function doRun(){if(Module[\"calledRun\"])return;Module[\"calledRun\"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module[\"onRuntimeInitialized\"])Module[\"onRuntimeInitialized\"]();postRun()}if(Module[\"setStatus\"]){Module[\"setStatus\"](\"Running...\");setTimeout(function(){setTimeout(function(){Module[\"setStatus\"](\"\")},1);doRun()},1)}else{doRun()}}Module[\"run\"]=run;function abort(what){if(Module[\"onAbort\"]){Module[\"onAbort\"](what)}if(what!==undefined){out(what);err(what);what=JSON.stringify(what)}else{what=\"\"}ABORT=true;EXITSTATUS=1;throw\"abort(\"+what+\"). Build with -s ASSERTIONS=1 for more info.\"}Module[\"abort\"]=abort;if(Module[\"preInit\"]){if(typeof Module[\"preInit\"]==\"function\")Module[\"preInit\"]=[Module[\"preInit\"]];while(Module[\"preInit\"].length>0){Module[\"preInit\"].pop()()}}Module[\"noExitRuntime\"]=true;run();\n\n\n return Module\n}\n);\n})();\nif (typeof exports === 'object' && typeof module === 'object')\n module.exports = Module;\n else if (typeof define === 'function' && define['amd'])\n define([], function() { return Module; });\n else if (typeof exports === 'object')\n exports[\"Module\"] = Module;\n ","export interface XY { x: number, y: number; }\nexport interface XYZ extends XY { z: number; }\nexport interface XYZW extends XYZ { w: number; }\n\nexport interface RGB { r: number; g: number; b: number; }\nexport interface RGBA extends RGB { a: number; }\n\nimport * as Bind from \"./bind-imgui\";\nexport { Bind };\n\nlet bind: Bind.Module;\nexport default async function(value?: Partial): Promise {\n return new Promise((resolve: () => void) => {\n Bind.default(value).then((value: Bind.Module): void => {\n bind = value;\n resolve();\n });\n });\n}\nexport { bind };\n\nfunction import_Scalar(sca: XY | XYZ | XYZW | Bind.ImAccess | Bind.ImScalar | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImScalar {\n if (Array.isArray(sca)) { return [ sca[0] ]; }\n if (typeof sca === \"function\") { return [ sca() ]; }\n return [ sca.x ];\n}\n\nfunction export_Scalar(tuple: Bind.ImScalar, sca: XY | XYZ | XYZW | Bind.ImAccess | Bind.ImScalar | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(sca)) { sca[0] = tuple[0]; return; }\n if (typeof sca === \"function\") { sca(tuple[0]); return; }\n sca.x = tuple[0];\n}\n\nfunction import_Vector2(vec: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple2 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1] ]; }\n return [ vec.x, vec.y ];\n}\n\nfunction export_Vector2(tuple: Bind.ImTuple2, vec: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; return; }\n vec.x = tuple[0]; vec.y = tuple[1];\n}\n\nfunction import_Vector3(vec: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple3 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1], vec[2] ]; }\n return [ vec.x, vec.y, vec.z ];\n}\n\nfunction export_Vector3(tuple: Bind.ImTuple3, vec: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; vec[2] = tuple[2]; return; }\n vec.x = tuple[0]; vec.y = tuple[1]; vec.z = tuple[2];\n}\n\nfunction import_Vector4(vec: XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple4 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1], vec[2], vec[3] || 0 ]; }\n return [ vec.x, vec.y, vec.z, vec.w ];\n}\n\nfunction export_Vector4(tuple: Bind.ImTuple4, vec: XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; vec[2] = tuple[2]; vec[3] = tuple[3]; return; }\n vec.x = tuple[0]; vec.y = tuple[1]; vec.z = tuple[2]; vec.w = tuple[3];\n}\n\nfunction import_Color3(col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple3 {\n if (Array.isArray(col)) { return [ col[0], col[1], col[2] ]; }\n if (\"r\" in col) { return [ col.r, col.g, col.b ]; }\n return [ col.x, col.y, col.z ];\n}\n\nfunction export_Color3(tuple: Bind.ImTuple3, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(col)) { col[0] = tuple[0]; col[1] = tuple[1]; col[2] = tuple[2]; return; }\n if (\"r\" in col) { col.r = tuple[0]; col.g = tuple[1]; col.b = tuple[2]; return; }\n col.x = tuple[0]; col.y = tuple[1]; col.z = tuple[2];\n}\n\nfunction import_Color4(col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4 | RGBA): Bind.ImTuple4 {\n if (Array.isArray(col)) { return [ col[0], col[1], col[2], col[3] ]; }\n if (\"r\" in col) { return [ col.r, col.g, col.b, col.a ]; }\n return [ col.x, col.y, col.z, col.w ];\n}\n\nfunction export_Color4(tuple: Bind.ImTuple4, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4 | RGBA): void {\n if (Array.isArray(col)) { col[0] = tuple[0]; col[1] = tuple[1]; col[2] = tuple[2]; return; }\n if (\"r\" in col) { col.r = tuple[0]; col.g = tuple[1]; col.b = tuple[2]; return; }\n col.x = tuple[0]; col.y = tuple[1]; col.z = tuple[2];\n}\n\nimport * as config from \"./imconfig\";\n\nexport const IMGUI_VERSION: string = \"1.71\"; // bind.IMGUI_VERSION;\nexport const IMGUI_VERSION_NUM: number = 17100; // bind.IMGUI_VERSION_NUM;\n\n// #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert))\nexport function IMGUI_CHECKVERSION(): boolean { return DebugCheckVersionAndDataLayout(IMGUI_VERSION, bind.ImGuiIOSize, bind.ImGuiStyleSize, bind.ImVec2Size, bind.ImVec4Size, bind.ImDrawVertSize, bind.ImDrawIdxSize); }\n\nexport function IM_ASSERT(_EXPR: boolean | number): void { if (!_EXPR) { throw new Error(); } }\n\nexport function IM_ARRAYSIZE(_ARR: ArrayLike | ImStringBuffer): number {\n if (_ARR instanceof ImStringBuffer) {\n return _ARR.size;\n } else {\n return _ARR.length;\n }\n}\n\nexport class ImStringBuffer {\n constructor(public size: number, public buffer: string = \"\") {}\n}\n\nexport { ImAccess } from \"./bind-imgui\";\nexport { ImScalar } from \"./bind-imgui\";\nexport { ImTuple2 } from \"./bind-imgui\";\nexport { ImTuple3 } from \"./bind-imgui\";\nexport { ImTuple4 } from \"./bind-imgui\";\n\nexport type ImTextureID = WebGLTexture;\n\n// Flags for ImGui::Begin()\nexport { ImGuiWindowFlags as WindowFlags };\nexport enum ImGuiWindowFlags {\n None = 0,\n NoTitleBar = 1 << 0, // Disable title-bar\n NoResize = 1 << 1, // Disable user resizing with the lower-right grip\n NoMove = 1 << 2, // Disable user moving the window\n NoScrollbar = 1 << 3, // Disable scrollbars (window can still scroll with mouse or programatically)\n NoScrollWithMouse = 1 << 4, // Disable user vertically scrolling with mouse wheel. On child window, mouse wheel will be forwarded to the parent unless NoScrollbar is also set.\n NoCollapse = 1 << 5, // Disable user collapsing window by double-clicking on it\n AlwaysAutoResize = 1 << 6, // Resize every window to its content every frame\n NoBackground = 1 << 7, // Disable drawing background color (WindowBg, etc.) and outside border. Similar as using SetNextWindowBgAlpha(0.0f).\n NoSavedSettings = 1 << 8, // Never load/save settings in .ini file\n NoMouseInputs = 1 << 9, // Disable catching mouse or keyboard inputs, hovering test with pass through.\n MenuBar = 1 << 10, // Has a menu-bar\n HorizontalScrollbar = 1 << 11, // Allow horizontal scrollbar to appear (off by default). You may use SetNextWindowContentSize(ImVec2(width,0.0f)); prior to calling Begin() to specify width. Read code in imgui_demo in the \"Horizontal Scrolling\" section.\n NoFocusOnAppearing = 1 << 12, // Disable taking focus when transitioning from hidden to visible state\n NoBringToFrontOnFocus = 1 << 13, // Disable bringing window to front when taking focus (e.g. clicking on it or programatically giving it focus)\n AlwaysVerticalScrollbar= 1 << 14, // Always show vertical scrollbar (even if ContentSize.y < Size.y)\n AlwaysHorizontalScrollbar= 1 << 15, // Always show horizontal scrollbar (even if ContentSize.x < Size.x)\n AlwaysUseWindowPadding = 1 << 16, // Ensure child windows without border uses style.WindowPadding (ignored by default for non-bordered child windows, because more convenient)\n NoNavInputs = 1 << 18, // No gamepad/keyboard navigation within the window\n NoNavFocus = 1 << 19, // No focusing toward this window with gamepad/keyboard navigation (e.g. skipped by CTRL+TAB)\n UnsavedDocument = 1 << 20, // Append '*' to title without affecting the ID, as a convenience to avoid using the ### operator. When used in a tab/docking context, tab is selected on closure and closure is deferred by one frame to allow code to cancel the closure (with a confirmation popup, etc.) without flicker.\n NoNav = NoNavInputs | NoNavFocus,\n NoDecoration = NoTitleBar | NoResize | NoScrollbar | NoCollapse,\n NoInputs = NoMouseInputs | NoNavInputs | NoNavFocus,\n\n // [Internal]\n NavFlattened = 1 << 23, // (WIP) Allow gamepad/keyboard navigation to cross over parent border to this child (only use on child that have no scrolling!)\n ChildWindow = 1 << 24, // Don't use! For internal use by BeginChild()\n Tooltip = 1 << 25, // Don't use! For internal use by BeginTooltip()\n Popup = 1 << 26, // Don't use! For internal use by BeginPopup()\n Modal = 1 << 27, // Don't use! For internal use by BeginPopupModal()\n ChildMenu = 1 << 28, // Don't use! For internal use by BeginMenu()\n}\n\n// Flags for ImGui::InputText()\nexport { ImGuiInputTextFlags as InputTextFlags };\nexport enum ImGuiInputTextFlags {\n None = 0,\n CharsDecimal = 1 << 0, // Allow 0123456789.+-*/\n CharsHexadecimal = 1 << 1, // Allow 0123456789ABCDEFabcdef\n CharsUppercase = 1 << 2, // Turn a..z into A..Z\n CharsNoBlank = 1 << 3, // Filter out spaces, tabs\n AutoSelectAll = 1 << 4, // Select entire text when first taking mouse focus\n EnterReturnsTrue = 1 << 5, // Return 'true' when Enter is pressed (as opposed to when the value was modified)\n CallbackCompletion = 1 << 6, // Call user function on pressing TAB (for completion handling)\n CallbackHistory = 1 << 7, // Call user function on pressing Up/Down arrows (for history handling)\n CallbackAlways = 1 << 8, // Call user function every time. User code may query cursor position, modify text buffer.\n CallbackCharFilter = 1 << 9, // Call user function to filter character. Modify data->EventChar to replace/filter input, or return 1 to discard character.\n AllowTabInput = 1 << 10, // Pressing TAB input a '\\t' character into the text field\n CtrlEnterForNewLine = 1 << 11, // In multi-line mode, unfocus with Enter, add new line with Ctrl+Enter (default is opposite: unfocus with Ctrl+Enter, add line with Enter).\n NoHorizontalScroll = 1 << 12, // Disable following the cursor horizontally\n AlwaysInsertMode = 1 << 13, // Insert mode\n ReadOnly = 1 << 14, // Read-only mode\n Password = 1 << 15, // Password mode, display all characters as '*'\n NoUndoRedo = 1 << 16, // Disable undo/redo. Note that input text owns the text data while active, if you want to provide your own undo/redo stack you need e.g. to call ClearActiveID().\n CharsScientific = 1 << 17, // Allow 0123456789.+-*/eE (Scientific notation input)\n CallbackResize = 1 << 18, // Allow buffer capacity resize + notify when the string wants to be resized (for string types which hold a cache of their Size) (see misc/stl/imgui_stl.h for an example of using this)\n // [Internal]\n Multiline = 1 << 20, // For internal use by InputTextMultiline()\n NoMarkEdited = 1 << 21, // For internal use by functions using InputText() before reformatting data\n}\n\n// Flags for ImGui::TreeNodeEx(), ImGui::CollapsingHeader*()\nexport { ImGuiTreeNodeFlags as TreeNodeFlags };\nexport enum ImGuiTreeNodeFlags {\n None = 0,\n Selected = 1 << 0, // Draw as selected\n Framed = 1 << 1, // Full colored frame (e.g. for CollapsingHeader)\n AllowItemOverlap = 1 << 2, // Hit testing to allow subsequent widgets to overlap this one\n NoTreePushOnOpen = 1 << 3, // Don't do a TreePush() when open (e.g. for CollapsingHeader) = no extra indent nor pushing on ID stack\n NoAutoOpenOnLog = 1 << 4, // Don't automatically and temporarily open node when Logging is active (by default logging will automatically open tree nodes)\n DefaultOpen = 1 << 5, // Default node to be open\n OpenOnDoubleClick = 1 << 6, // Need double-click to open node\n OpenOnArrow = 1 << 7, // Only open when clicking on the arrow part. If OpenOnDoubleClick is also set, single-click arrow or double-click all box to open.\n Leaf = 1 << 8, // No collapsing, no arrow (use as a convenience for leaf nodes).\n Bullet = 1 << 9, // Display a bullet instead of arrow\n FramePadding = 1 << 10, // Use FramePadding (even for an unframed text node) to vertically align text baseline to regular widget height. Equivalent to calling AlignTextToFramePadding().\n //SpanAllAvailWidth = 1 << 11, // FIXME: TODO: Extend hit box horizontally even if not framed\n //NoScrollOnOpen = 1 << 12, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible\n NavLeftJumpsBackHere = 1 << 13, // (WIP) Nav: left direction may move to this TreeNode() from any of its child (items submitted between TreeNode and TreePop)\n CollapsingHeader = Framed | NoTreePushOnOpen | NoAutoOpenOnLog,\n}\n\n// Flags for ImGui::Selectable()\nexport { ImGuiSelectableFlags as SelectableFlags };\nexport enum ImGuiSelectableFlags {\n None = 0,\n DontClosePopups = 1 << 0, // Clicking this don't close parent popup window\n SpanAllColumns = 1 << 1, // Selectable frame can span all columns (text will still fit in current column)\n AllowDoubleClick = 1 << 2, // Generate press events on double clicks too\n Disabled = 1 << 3 // Cannot be selected, display greyed out text\n}\n\n// Flags for ImGui::BeginCombo()\nexport { ImGuiComboFlags as ComboFlags };\nexport enum ImGuiComboFlags {\n None = 0,\n PopupAlignLeft = 1 << 0, // Align the popup toward the left by default\n HeightSmall = 1 << 1, // Max ~4 items visible. Tip: If you want your combo popup to be a specific size you can use SetNextWindowSizeConstraints() prior to calling BeginCombo()\n HeightRegular = 1 << 2, // Max ~8 items visible (default)\n HeightLarge = 1 << 3, // Max ~20 items visible\n HeightLargest = 1 << 4, // As many fitting items as possible\n NoArrowButton = 1 << 5, // Display on the preview box without the square arrow button\n NoPreview = 1 << 6, // Display only a square arrow button\n HeightMask_ = HeightSmall | HeightRegular | HeightLarge | HeightLargest,\n}\n\n// Flags for ImGui::BeginTabBar()\nexport { ImGuiTabBarFlags as TabBarFlags };\nexport enum ImGuiTabBarFlags {\n None = 0,\n Reorderable = 1 << 0, // Allow manually dragging tabs to re-order them + New tabs are appended at the end of list\n AutoSelectNewTabs = 1 << 1, // Automatically select new tabs when they appear\n TabListPopupButton = 1 << 2,\n NoCloseWithMiddleMouseButton = 1 << 3, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.\n NoTabListScrollingButtons = 1 << 4,\n NoTooltip = 1 << 5, // Disable tooltips when hovering a tab\n FittingPolicyResizeDown = 1 << 6, // Resize tabs when they don't fit\n FittingPolicyScroll = 1 << 7, // Add scroll buttons when tabs don't fit\n FittingPolicyMask_ = FittingPolicyResizeDown | FittingPolicyScroll,\n FittingPolicyDefault_ = FittingPolicyResizeDown\n};\n\n// Flags for ImGui::BeginTabItem()\nexport { ImGuiTabItemFlags as TabItemFlags };\nexport enum ImGuiTabItemFlags\n{\n ImGuiTabItemFlags_None = 0,\n ImGuiTabItemFlags_UnsavedDocument = 1 << 0, // Append '*' to title without affecting the ID, as a convenience to avoid using the ### operator. Also: tab is selected on closure and closure is deferred by one frame to allow code to undo it without flicker.\n ImGuiTabItemFlags_SetSelected = 1 << 1, // Trigger flag to programatically make the tab selected when calling BeginTabItem()\n ImGuiTabItemFlags_NoCloseWithMiddleMouseButton = 1 << 2, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.\n ImGuiTabItemFlags_NoPushId = 1 << 3 // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem()\n};\n\n// Flags for ImGui::IsWindowFocused()\nexport { ImGuiFocusedFlags as FocusedFlags };\nexport enum ImGuiFocusedFlags {\n None = 0,\n ChildWindows = 1 << 0, // IsWindowFocused(): Return true if any children of the window is focused\n RootWindow = 1 << 1, // IsWindowFocused(): Test from root window (top most parent of the current hierarchy)\n AnyWindow = 1 << 2, // IsWindowFocused(): Return true if any window is focused\n RootAndChildWindows = RootWindow | ChildWindows,\n}\n\n// Flags for ImGui::IsItemHovered(), ImGui::IsWindowHovered()\nexport { ImGuiHoveredFlags as HoveredFlags };\nexport enum ImGuiHoveredFlags {\n None = 0, // Return true if directly over the item/window, not obstructed by another window, not obstructed by an active popup or modal blocking inputs under them.\n ChildWindows = 1 << 0, // IsWindowHovered() only: Return true if any children of the window is hovered\n RootWindow = 1 << 1, // IsWindowHovered() only: Test from root window (top most parent of the current hierarchy)\n AnyWindow = 1 << 2, // IsWindowHovered() only: Return true if any window is hovered\n AllowWhenBlockedByPopup = 1 << 3, // Return true even if a popup window is normally blocking access to this item/window\n //AllowWhenBlockedByModal = 1 << 4, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet.\n AllowWhenBlockedByActiveItem = 1 << 5, // Return true even if an active item is blocking access to this item/window. Useful for Drag and Drop patterns.\n AllowWhenOverlapped = 1 << 6, // Return true even if the position is overlapped by another window\n AllowWhenDisabled = 1 << 7, // Return true even if the item is disabled\n RectOnly = AllowWhenBlockedByPopup | AllowWhenBlockedByActiveItem | AllowWhenOverlapped,\n RootAndChildWindows = RootWindow | ChildWindows,\n}\n\n// Flags for ImGui::BeginDragDropSource(), ImGui::AcceptDragDropPayload()\nexport { ImGuiDragDropFlags as DragDropFlags };\nexport enum ImGuiDragDropFlags {\n // BeginDragDropSource() flags\n None = 0,\n SourceNoPreviewTooltip = 1 << 0, // By default, a successful call to BeginDragDropSource opens a tooltip so you can display a preview or description of the source contents. This flag disable this behavior.\n SourceNoDisableHover = 1 << 1, // By default, when dragging we clear data so that IsItemHovered() will return true, to avoid subsequent user code submitting tooltips. This flag disable this behavior so you can still call IsItemHovered() on the source item.\n SourceNoHoldToOpenOthers = 1 << 2, // Disable the behavior that allows to open tree nodes and collapsing header by holding over them while dragging a source item.\n SourceAllowNullID = 1 << 3, // Allow items such as Text(), Image() that have no unique identifier to be used as drag source, by manufacturing a temporary identifier based on their window-relative position. This is extremely unusual within the dear imgui ecosystem and so we made it explicit.\n SourceExtern = 1 << 4, // External source (from outside of imgui), won't attempt to read current item/window info. Will always return true. Only one Extern source can be active simultaneously.\n SourceAutoExpirePayload = 1 << 5, // Automatically expire the payload if the source cease to be submitted (otherwise payloads are persisting while being dragged)\n // AcceptDragDropPayload() flags\n AcceptBeforeDelivery = 1 << 10, // AcceptDragDropPayload() will returns true even before the mouse button is released. You can then call IsDelivery() to test if the payload needs to be delivered.\n AcceptNoDrawDefaultRect = 1 << 11, // Do not draw the default highlight rectangle when hovering over target.\n AcceptNoPreviewTooltip = 1 << 12, // Request hiding the BeginDragDropSource tooltip from the BeginDragDropTarget site.\n AcceptPeekOnly = AcceptBeforeDelivery | AcceptNoDrawDefaultRect, // For peeking ahead and inspecting the payload before delivery.\n}\n\n// Standard Drag and Drop payload types. You can define you own payload types using 12-characters long strings. Types starting with '_' are defined by Dear ImGui.\nexport const IMGUI_PAYLOAD_TYPE_COLOR_3F: string = \"_COL3F\"; // float[3] // Standard type for colors, without alpha. User code may use this type.\nexport const IMGUI_PAYLOAD_TYPE_COLOR_4F: string = \"_COL4F\"; // float[4] // Standard type for colors. User code may use this type.\n\n// A primary data type\nexport { ImGuiDataType as DataType };\nexport enum ImGuiDataType {\n S8, // char\n U8, // unsigned char\n S16, // short\n U16, // unsigned short\n S32, // int\n U32, // unsigned int\n S64, // long long, __int64\n U64, // unsigned long long, unsigned __int64\n Float, // float\n Double, // double\n COUNT\n}\n\n// A cardinal direction\nexport { ImGuiDir as Dir };\nexport enum ImGuiDir {\n None = -1,\n Left = 0,\n Right = 1,\n Up = 2,\n Down = 3,\n COUNT\n}\n\n// User fill ImGuiIO.KeyMap[] array with indices into the ImGuiIO.KeysDown[512] array\nexport { ImGuiKey as Key };\nexport enum ImGuiKey {\n Tab,\n LeftArrow,\n RightArrow,\n UpArrow,\n DownArrow,\n PageUp,\n PageDown,\n Home,\n End,\n Insert,\n Delete,\n Backspace,\n Space,\n Enter,\n Escape,\n A, // for text edit CTRL+A: select all\n C, // for text edit CTRL+C: copy\n V, // for text edit CTRL+V: paste\n X, // for text edit CTRL+X: cut\n Y, // for text edit CTRL+Y: redo\n Z, // for text edit CTRL+Z: undo\n COUNT,\n}\n\n// [BETA] Gamepad/Keyboard directional navigation\n// Keyboard: Set io.ConfigFlags |= EnableKeyboard to enable. NewFrame() will automatically fill io.NavInputs[] based on your io.KeyDown[] + io.KeyMap[] arrays.\n// Gamepad: Set io.ConfigFlags |= EnableGamepad to enable. Fill the io.NavInputs[] fields before calling NewFrame(). Note that io.NavInputs[] is cleared by EndFrame().\n// Read instructions in imgui.cpp for more details.\nexport { ImGuiNavInput as NavInput };\nexport enum ImGuiNavInput\n{\n // Gamepad Mapping\n Activate, // activate / open / toggle / tweak value // e.g. Circle (PS4), A (Xbox), B (Switch), Space (Keyboard)\n Cancel, // cancel / close / exit // e.g. Cross (PS4), B (Xbox), A (Switch), Escape (Keyboard)\n Input, // text input / on-screen keyboard // e.g. Triang.(PS4), Y (Xbox), X (Switch), Return (Keyboard)\n Menu, // tap: toggle menu / hold: focus, move, resize // e.g. Square (PS4), X (Xbox), Y (Switch), Alt (Keyboard)\n DpadLeft, // move / tweak / resize window (w/ PadMenu) // e.g. D-pad Left/Right/Up/Down (Gamepads), Arrow keys (Keyboard)\n DpadRight, //\n DpadUp, //\n DpadDown, //\n LStickLeft, // scroll / move window (w/ PadMenu) // e.g. Left Analog Stick Left/Right/Up/Down\n LStickRight, //\n LStickUp, //\n LStickDown, //\n FocusPrev, // next window (w/ PadMenu) // e.g. L1 or L2 (PS4), LB or LT (Xbox), L or ZL (Switch)\n FocusNext, // prev window (w/ PadMenu) // e.g. R1 or R2 (PS4), RB or RT (Xbox), R or ZL (Switch)\n TweakSlow, // slower tweaks // e.g. L1 or L2 (PS4), LB or LT (Xbox), L or ZL (Switch)\n TweakFast, // faster tweaks // e.g. R1 or R2 (PS4), RB or RT (Xbox), R or ZL (Switch)\n\n // [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them.\n // Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) may be directly reading from io.KeyDown[] instead of io.NavInputs[].\n KeyMenu_, // toggle menu // = io.KeyAlt\n KeyTab_, // tab // = Tab key\n KeyLeft_, // move left // = Arrow keys\n KeyRight_, // move right\n KeyUp_, // move up\n KeyDown_, // move down\n COUNT,\n InternalStart_ = KeyMenu_,\n}\n\n// [BETA] Gamepad/Keyboard directional navigation flags, stored in io.ConfigFlags\nexport { ImGuiConfigFlags as ConfigFlags };\nexport enum ImGuiConfigFlags\n{\n None = 0,\n NavEnableKeyboard = 1 << 0, // Master keyboard navigation enable flag. NewFrame() will automatically fill io.NavInputs[] based on io.KeyDown[].\n NavEnableGamepad = 1 << 1, // Master gamepad navigation enable flag. This is mostly to instruct your imgui back-end to fill io.NavInputs[].\n NavEnableSetMousePos = 1 << 2, // Request navigation to allow moving the mouse cursor. May be useful on TV/console systems where moving a virtual mouse is awkward. Will update io.MousePos and set io.WantMoveMouse=true. If enabled you MUST honor io.WantMoveMouse requests in your binding, otherwise ImGui will react as if the mouse is jumping around back and forth.\n NavNoCaptureKeyboard = 1 << 3, // Do not set the io.WantCaptureKeyboard flag with io.NavActive is set.\n NoMouse = 1 << 4, // Instruct imgui to clear mouse position/buttons in NewFrame(). This allows ignoring the mouse information back-end\n NoMouseCursorChange = 1 << 5, // Instruct back-end to not alter mouse cursor shape and visibility.\n\n IsSRGB = 1 << 20, // Application is SRGB-aware.\n IsTouchScreen = 1 << 21 // Application is using a touch screen instead of a mouse.\n}\n\n// Enumeration for PushStyleColor() / PopStyleColor()\nexport { ImGuiCol as Col };\nexport enum ImGuiCol {\n Text,\n TextDisabled,\n WindowBg, // Background of normal windows\n ChildBg, // Background of child windows\n PopupBg, // Background of popups, menus, tooltips windows\n Border,\n BorderShadow,\n FrameBg, // Background of checkbox, radio button, plot, slider, text input\n FrameBgHovered,\n FrameBgActive,\n TitleBg,\n TitleBgActive,\n TitleBgCollapsed,\n MenuBarBg,\n ScrollbarBg,\n ScrollbarGrab,\n ScrollbarGrabHovered,\n ScrollbarGrabActive,\n CheckMark,\n SliderGrab,\n SliderGrabActive,\n Button,\n ButtonHovered,\n ButtonActive,\n Header,\n HeaderHovered,\n HeaderActive,\n Separator,\n SeparatorHovered,\n SeparatorActive,\n ResizeGrip,\n ResizeGripHovered,\n ResizeGripActive,\n Tab,\n TabHovered,\n TabActive,\n TabUnfocused,\n TabUnfocusedActive,\n PlotLines,\n PlotLinesHovered,\n PlotHistogram,\n PlotHistogramHovered,\n TextSelectedBg,\n DragDropTarget,\n NavHighlight, // Gamepad/keyboard: current highlighted item\n NavWindowingHighlight, // Highlight window when using CTRL+TAB\n NavWindowingDimBg, // Darken/colorize entire screen behind the CTRL+TAB window list, when active\n ModalWindowDimBg, // Darken/colorize entire screen behind a modal window, when one is active\n COUNT,\n}\n\n// Enumeration for PushStyleVar() / PopStyleVar() to temporarily modify the ImGuiStyle structure.\n// NB: the enum only refers to fields of ImGuiStyle which makes sense to be pushed/popped inside UI code. During initialization, feel free to just poke into ImGuiStyle directly.\n// NB: if changing this enum, you need to update the associated internal table GStyleVarInfo[] accordingly. This is where we link enum values to members offset/type.\nexport { ImGuiStyleVar as StyleVar };\nexport enum ImGuiStyleVar {\n // Enum name ......................// Member in ImGuiStyle structure (see ImGuiStyle for descriptions)\n Alpha, // float Alpha\n WindowPadding, // ImVec2 WindowPadding\n WindowRounding, // float WindowRounding\n WindowBorderSize, // float WindowBorderSize\n WindowMinSize, // ImVec2 WindowMinSize\n WindowTitleAlign, // ImVec2 WindowTitleAlign\n // WindowMenuButtonPosition, // ImGuiDir WindowMenuButtonPosition\n ChildRounding, // float ChildRounding\n ChildBorderSize, // float ChildBorderSize\n PopupRounding, // float PopupRounding\n PopupBorderSize, // float PopupBorderSize\n FramePadding, // ImVec2 FramePadding\n FrameRounding, // float FrameRounding\n FrameBorderSize, // float FrameBorderSize\n ItemSpacing, // ImVec2 ItemSpacing\n ItemInnerSpacing, // ImVec2 ItemInnerSpacing\n IndentSpacing, // float IndentSpacing\n ScrollbarSize, // float ScrollbarSize\n ScrollbarRounding, // float ScrollbarRounding\n GrabMinSize, // float GrabMinSize\n GrabRounding, // float GrabRounding\n TabRounding, // float TabRounding\n ButtonTextAlign, // ImVec2 ButtonTextAlign\n SelectableTextAlign, // ImVec2 SelectableTextAlign\n Count_, COUNT = Count_,\n}\n\n// Back-end capabilities flags stored in io.BackendFlags. Set by imgui_impl_xxx or custom back-end.\nexport { ImGuiBackendFlags as BackendFlags };\nexport enum ImGuiBackendFlags {\n None = 0,\n HasGamepad = 1 << 0, // Back-end has a connected gamepad.\n HasMouseCursors = 1 << 1, // Back-end can honor GetMouseCursor() values and change the OS cursor shape.\n HasSetMousePos = 1 << 2, // Back-end can honor io.WantSetMousePos and reposition the mouse (only used if ImGuiConfigFlags_NavEnableSetMousePos is set).\n RendererHasVtxOffset = 1 << 3, // Back-end Renderer supports ImDrawCmd::VtxOffset. This enables output of large meshes (64K+ vertices) while still using 16-bits indices.\n}\n\n// Enumeration for ColorEdit3() / ColorEdit4() / ColorPicker3() / ColorPicker4() / ColorButton()\nexport { ImGuiColorEditFlags as ColorEditFlags };\nexport enum ImGuiColorEditFlags {\n None = 0,\n NoAlpha = 1 << 1, // // ColorEdit, ColorPicker, ColorButton: ignore Alpha component (read 3 components from the input pointer).\n NoPicker = 1 << 2, // // ColorEdit: disable picker when clicking on colored square.\n NoOptions = 1 << 3, // // ColorEdit: disable toggling options menu when right-clicking on inputs/small preview.\n NoSmallPreview = 1 << 4, // // ColorEdit, ColorPicker: disable colored square preview next to the inputs. (e.g. to show only the inputs)\n NoInputs = 1 << 5, // // ColorEdit, ColorPicker: disable inputs sliders/text widgets (e.g. to show only the small preview colored square).\n NoTooltip = 1 << 6, // // ColorEdit, ColorPicker, ColorButton: disable tooltip when hovering the preview.\n NoLabel = 1 << 7, // // ColorEdit, ColorPicker: disable display of inline text label (the label is still forwarded to the tooltip and picker).\n NoSidePreview = 1 << 8, // // ColorPicker: disable bigger color preview on right side of the picker, use small colored square preview instead.\n NoDragDrop = 1 << 9, // // ColorEdit: disable drag and drop target. ColorButton: disable drag and drop source.\n // User Options (right-click on widget to change some of them). You can set application defaults using SetColorEditOptions(). The idea is that you probably don't want to override them in most of your calls, let the user choose and/or call SetColorEditOptions() during startup.\n AlphaBar = 1 << 16, // // ColorEdit, ColorPicker: show vertical alpha bar/gradient in picker.\n AlphaPreview = 1 << 17, // // ColorEdit, ColorPicker, ColorButton: display preview as a transparent color over a checkerboard, instead of opaque.\n AlphaPreviewHalf= 1 << 18, // // ColorEdit, ColorPicker, ColorButton: display half opaque / half checkerboard, instead of opaque.\n HDR = 1 << 19, // // (WIP) ColorEdit: Currently only disable 0.0f..1.0f limits in RGBA edition (note: you probably want to use Float flag as well).\n DisplayRGB = 1 << 20, // [Inputs] // ColorEdit: choose one among RGB/HSV/HEX. ColorPicker: choose any combination using RGB/HSV/HEX.\n DisplayHSV = 1 << 21, // [Inputs] // \"\n DisplayHex = 1 << 22, // [Inputs] // \"\n Uint8 = 1 << 23, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0..255.\n Float = 1 << 24, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0.0f..1.0f floats instead of 0..255 integers. No round-trip of value via integers.\n PickerHueBar = 1 << 25, // [PickerMode] // ColorPicker: bar for Hue, rectangle for Sat/Value.\n PickerHueWheel = 1 << 26, // [PickerMode] // ColorPicker: wheel for Hue, triangle for Sat/Value.\n InputRGB = 1 << 27, // [Input] // ColorEdit, ColorPicker: input and output data in RGB format.\n InputHSV = 1 << 28, // [Input] // ColorEdit, ColorPicker: input and output data in HSV format.\n\n // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to\n // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup.\n _OptionsDefault = Uint8|DisplayRGB|InputRGB|PickerHueBar,\n\n // [Internal] Masks\n _DisplayMask = DisplayRGB|DisplayHSV|DisplayHex,\n _DataTypeMask = Uint8|Float,\n _PickerMask = PickerHueWheel|PickerHueBar,\n _InputMask = InputRGB|InputHSV,\n}\n\n// Enumeration for GetMouseCursor()\nexport { ImGuiMouseCursor as MouseCursor };\nexport enum ImGuiMouseCursor {\n None = -1,\n Arrow = 0,\n TextInput, // When hovering over InputText, etc.\n ResizeAll, // (Unused by imgui functions)\n ResizeNS, // When hovering over an horizontal border\n ResizeEW, // When hovering over a vertical border or a column\n ResizeNESW, // When hovering over the bottom-left corner of a window\n ResizeNWSE, // When hovering over the bottom-right corner of a window\n Hand, // (Unused by imgui functions. Use for e.g. hyperlinks)\n Count_, COUNT = Count_,\n}\n\n// Condition for ImGui::SetWindow***(), SetNextWindow***(), SetNextTreeNode***() functions\n// All those functions treat 0 as a shortcut to Always. From the point of view of the user use this as an enum (don't combine multiple values into flags).\nexport { ImGuiCond as Cond };\nexport enum ImGuiCond {\n Always = 1 << 0, // Set the variable\n Once = 1 << 1, // Set the variable once per runtime session (only the first call with succeed)\n FirstUseEver = 1 << 2, // Set the variable if the window has no saved data (if doesn't exist in the .ini file)\n Appearing = 1 << 3, // Set the variable if the window is appearing after being hidden/inactive (or the first time)\n}\n\nexport { ImDrawCornerFlags as wCornerFlags };\nexport enum ImDrawCornerFlags\n{\n TopLeft = 1 << 0, // 0x1\n TopRight = 1 << 1, // 0x2\n BotLeft = 1 << 2, // 0x4\n BotRight = 1 << 3, // 0x8\n Top = TopLeft | TopRight, // 0x3\n Bot = BotLeft | BotRight, // 0xC\n Left = TopLeft | BotLeft, // 0x5\n Right = TopRight | BotRight, // 0xA\n All = 0xF, // In your function calls you may use ~0 (= all bits sets) instead of All, as a convenience\n}\n\nexport { ImDrawListFlags as wListFlags };\nexport enum ImDrawListFlags\n{\n None = 0,\n AntiAliasedLines = 1 << 0,\n AntiAliasedFill = 1 << 1,\n}\n\nexport { ImU32 } from \"./bind-imgui\";\n\nexport { interface_ImVec2 } from \"./bind-imgui\";\nexport { reference_ImVec2 } from \"./bind-imgui\";\n\nexport class ImVec2 implements Bind.interface_ImVec2 {\n public static readonly ZERO: Readonly = new ImVec2(0.0, 0.0);\n public static readonly UNIT: Readonly = new ImVec2(1.0, 1.0);\n public static readonly UNIT_X: Readonly = new ImVec2(1.0, 0.0);\n public static readonly UNIT_Y: Readonly = new ImVec2(0.0, 1.0);\n\n constructor(public x: number = 0.0, public y: number = 0.0) {}\n\n public Set(x: number, y: number): this {\n this.x = x;\n this.y = y;\n return this;\n }\n\n public Copy(other: Readonly): this {\n this.x = other.x;\n this.y = other.y;\n return this;\n }\n\n public Equals(other: Readonly): boolean {\n if (this.x !== other.x) { return false; }\n if (this.y !== other.y) { return false; }\n return true;\n }\n}\n\nexport { interface_ImVec4 } from \"./bind-imgui\";\nexport { reference_ImVec4 } from \"./bind-imgui\";\n\nexport class ImVec4 implements Bind.interface_ImVec4 {\n public static readonly ZERO: Readonly = new ImVec4(0.0, 0.0, 0.0, 0.0);\n public static readonly UNIT: Readonly = new ImVec4(1.0, 1.0, 1.0, 1.0);\n public static readonly UNIT_X: Readonly = new ImVec4(1.0, 0.0, 0.0, 0.0);\n public static readonly UNIT_Y: Readonly = new ImVec4(0.0, 1.0, 0.0, 0.0);\n public static readonly UNIT_Z: Readonly = new ImVec4(0.0, 0.0, 1.0, 0.0);\n public static readonly UNIT_W: Readonly = new ImVec4(0.0, 0.0, 0.0, 1.0);\n public static readonly BLACK: Readonly = new ImVec4(0.0, 0.0, 0.0, 1.0);\n public static readonly WHITE: Readonly = new ImVec4(1.0, 1.0, 1.0, 1.0);\n\n constructor(public x: number = 0.0, public y: number = 0.0, public z: number = 0.0, public w: number = 1.0) {}\n\n public Set(x: number, y: number, z: number, w: number): this {\n this.x = x;\n this.y = y;\n this.z = z;\n this.w = w;\n return this;\n }\n\n public Copy(other: Readonly): this {\n this.x = other.x;\n this.y = other.y;\n this.z = other.z;\n this.w = other.w;\n return this;\n }\n\n public Equals(other: Readonly): boolean {\n if (this.x !== other.x) { return false; }\n if (this.y !== other.y) { return false; }\n if (this.z !== other.z) { return false; }\n if (this.w !== other.w) { return false; }\n return true;\n }\n}\n\n//-----------------------------------------------------------------------------\n// Helpers\n//-----------------------------------------------------------------------------\n\n// Lightweight std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug).\n// Our implementation does NOT call C++ constructors/destructors. This is intentional and we do not require it. Do not use this class as a straight std::vector replacement in your code!\nexport class ImVector extends Array\n{\n public get Size(): number { return this.length; }\n public Data: T[] = this;\n public empty(): boolean { return this.length === 0; }\n public clear(): void { this.length = 0; }\n public pop_back(): T | undefined { return this.pop(); }\n public push_back(value: T): void { this.push(value); }\n // public:\n // int Size;\n // int Capacity;\n // T* Data;\n\n // typedef T value_type;\n // typedef value_type* iterator;\n // typedef const value_type* const_iterator;\n\n // inline ImVector() { Size = Capacity = 0; Data = NULL; }\n // inline ~ImVector() { if (Data) ImGui::MemFree(Data); }\n\n // inline bool empty() const { return Size == 0; }\n // inline int size() const { return Size; }\n // inline int capacity() const { return Capacity; }\n\n // inline value_type& operator[](int i) { IM_ASSERT(i < Size); return Data[i]; }\n // inline const value_type& operator[](int i) const { IM_ASSERT(i < Size); return Data[i]; }\n\n // inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } }\n // inline iterator begin() { return Data; }\n // inline const_iterator begin() const { return Data; }\n // inline iterator end() { return Data + Size; }\n // inline const_iterator end() const { return Data + Size; }\n // inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; }\n // inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; }\n // inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; }\n // inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; }\n // inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; }\n\n // inline int _grow_capacity(int size) const { int new_capacity = Capacity ? (Capacity + Capacity/2) : 8; return new_capacity > size ? new_capacity : size; }\n\n // inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; }\n // inline void resize(int new_size, const T& v){ if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) Data[n] = v; Size = new_size; }\n // inline void reserve(int new_capacity)\n // {\n // if (new_capacity <= Capacity)\n // return;\n // T* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T));\n // if (Data)\n // memcpy(new_data, Data, (size_t)Size * sizeof(T));\n // ImGui::MemFree(Data);\n // Data = new_data;\n // Capacity = new_capacity;\n // }\n\n // inline void push_back(const value_type& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); Data[Size++] = v; }\n // inline void pop_back() { IM_ASSERT(Size > 0); Size--; }\n // inline void push_front(const value_type& v) { if (Size == 0) push_back(v); else insert(Data, v); }\n\n // inline iterator erase(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; }\n // inline iterator erase(const_iterator it, const_iterator it_last){ IM_ASSERT(it >= Data && it < Data+Size && it_last > it && it_last <= Data+Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - count) * sizeof(value_type)); Size -= (int)count; return Data + off; }\n // inline iterator erase_unsorted(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; if (it < Data+Size-1) memcpy(Data + off, Data + Size - 1, sizeof(value_type)); Size--; return Data + off; }\n // inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= Data && it <= Data+Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; }\n // inline bool contains(const value_type& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; }\n}\n\n// Helper: Parse and apply text filters. In format \"aaaaa[,bbbb][,ccccc]\"\nexport class ImGuiTextFilter\n{\n // IMGUI_API ImGuiTextFilter(const char* default_filter = \"\");\n constructor(default_filter: string = \"\") {\n if (default_filter)\n {\n // ImStrncpy(InputBuf, default_filter, IM_ARRAYSIZE(InputBuf));\n this.InputBuf.buffer = default_filter;\n this.Build();\n }\n else\n {\n // InputBuf[0] = 0;\n this.InputBuf.buffer = \"\";\n this.CountGrep = 0;\n }\n }\n // IMGUI_API bool Draw(const char* label = \"Filter (inc,-exc)\", float width = 0.0f); // Helper calling InputText+Build\n public Draw(label: string = \"Filter (inc,-exc)\", width: number = 0.0): boolean {\n if (width !== 0.0)\n bind.PushItemWidth(width);\n const value_changed: boolean = InputText(label, this.InputBuf, IM_ARRAYSIZE(this.InputBuf));\n if (width !== 0.0)\n bind.PopItemWidth();\n if (value_changed)\n this.Build();\n return value_changed;\n }\n // IMGUI_API bool PassFilter(const char* text, const char* text_end = NULL) const;\n public PassFilter(text: string, text_end: number | null = null): boolean {\n // if (Filters.empty())\n // return true;\n\n // if (text == NULL)\n // text = \"\";\n\n // for (int i = 0; i != Filters.Size; i++)\n // {\n // const TextRange& f = Filters[i];\n // if (f.empty())\n // continue;\n // if (f.front() == '-')\n // {\n // // Subtract\n // if (ImStristr(text, text_end, f.begin()+1, f.end()) != NULL)\n // return false;\n // }\n // else\n // {\n // // Grep\n // if (ImStristr(text, text_end, f.begin(), f.end()) != NULL)\n // return true;\n // }\n // }\n\n // Implicit * grep\n if (this.CountGrep === 0)\n return true;\n\n return false;\n }\n // IMGUI_API void Build();\n public Build(): void {\n // Filters.resize(0);\n // TextRange input_range(InputBuf, InputBuf+strlen(InputBuf));\n // input_range.split(',', Filters);\n\n this.CountGrep = 0;\n // for (int i = 0; i != Filters.Size; i++)\n // {\n // Filters[i].trim_blanks();\n // if (Filters[i].empty())\n // continue;\n // if (Filters[i].front() != '-')\n // CountGrep += 1;\n // }\n }\n // void Clear() { InputBuf[0] = 0; Build(); }\n public Clear(): void { this.InputBuf.buffer = \"\"; this.Build(); }\n // bool IsActive() const { return !Filters.empty(); }\n public IsActive(): boolean { return false; }\n\n // [Internal]\n // struct TextRange\n // {\n // const char* b;\n // const char* e;\n\n // TextRange() { b = e = NULL; }\n // TextRange(const char* _b, const char* _e) { b = _b; e = _e; }\n // const char* begin() const { return b; }\n // const char* end() const { return e; }\n // bool empty() const { return b == e; }\n // char front() const { return *b; }\n // static bool is_blank(char c) { return c == ' ' || c == '\\t'; }\n // void trim_blanks() { while (b < e && is_blank(*b)) b++; while (e > b && is_blank(*(e-1))) e--; }\n // IMGUI_API void split(char separator, ImVector& out);\n // };\n\n // char InputBuf[256];\n public InputBuf: ImStringBuffer = new ImStringBuffer(256);\n // ImVector Filters;\n // int CountGrep;\n public CountGrep: number = 0;\n}\n\n// Helper: Text buffer for logging/accumulating text\nexport class ImGuiTextBuffer\n{\n // ImVector Buf;\n public Buf: string = \"\";\n public begin(): string { return this.Buf; }\n public size(): number { return this.Buf.length; }\n public clear(): void { this.Buf = \"\"; }\n public append(text: string): void { this.Buf += text; }\n\n // ImGuiTextBuffer() { Buf.push_back(0); }\n // inline char operator[](int i) { return Buf.Data[i]; }\n // const char* begin() const { return &Buf.front(); }\n // const char* end() const { return &Buf.back(); } // Buf is zero-terminated, so end() will point on the zero-terminator\n // int size() const { return Buf.Size - 1; }\n // bool empty() { return Buf.Size <= 1; }\n // void clear() { Buf.clear(); Buf.push_back(0); }\n // void reserve(int capacity) { Buf.reserve(capacity); }\n // const char* c_str() const { return Buf.Data; }\n // IMGUI_API void appendf(const char* fmt, ...) IM_FMTARGS(2);\n // IMGUI_API void appendfv(const char* fmt, va_list args) IM_FMTLIST(2);\n}\n\n// Helper: Simple Key->value storage\n// Typically you don't have to worry about this since a storage is held within each Window.\n// We use it to e.g. store collapse state for a tree (Int 0/1), store color edit options.\n// This is optimized for efficient reading (dichotomy into a contiguous buffer), rare writing (typically tied to user interactions)\n// You can use it as custom user storage for temporary values. Declare your own storage if, for example:\n// - You want to manipulate the open/close state of a particular sub-tree in your interface (tree node uses Int 0/1 to store their state).\n// - You want to store custom debug data easily without adding or editing structures in your code (probably not efficient, but convenient)\n// Types are NOT stored, so it is up to you to make sure your Key don't collide with different types.\nexport class ImGuiStorage\n{\n // struct Pair\n // {\n // ImGuiID key;\n // union { int val_i; float val_f; void* val_p; };\n // Pair(ImGuiID _key, int _val_i) { key = _key; val_i = _val_i; }\n // Pair(ImGuiID _key, float _val_f) { key = _key; val_f = _val_f; }\n // Pair(ImGuiID _key, void* _val_p) { key = _key; val_p = _val_p; }\n // };\n // ImVector Data;\n\n // - Get***() functions find pair, never add/allocate. Pairs are sorted so a query is O(log N)\n // - Set***() functions find pair, insertion on demand if missing.\n // - Sorted insertion is costly, paid once. A typical frame shouldn't need to insert any new pair.\n // void Clear() { Data.clear(); }\n // IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const;\n // IMGUI_API void SetInt(ImGuiID key, int val);\n // IMGUI_API bool GetBool(ImGuiID key, bool default_val = false) const;\n // IMGUI_API void SetBool(ImGuiID key, bool val);\n // IMGUI_API float GetFloat(ImGuiID key, float default_val = 0.0f) const;\n // IMGUI_API void SetFloat(ImGuiID key, float val);\n // IMGUI_API void* GetVoidPtr(ImGuiID key) const; // default_val is NULL\n // IMGUI_API void SetVoidPtr(ImGuiID key, void* val);\n\n // - Get***Ref() functions finds pair, insert on demand if missing, return pointer. Useful if you intend to do Get+Set.\n // - References are only valid until a new value is added to the storage. Calling a Set***() function or a Get***Ref() function invalidates the pointer.\n // - A typical use case where this is convenient for quick hacking (e.g. add storage during a live Edit&Continue session if you can't modify existing struct)\n // float* pvar = ImGui::GetFloatRef(key); ImGui::SliderFloat(\"var\", pvar, 0, 100.0f); some_var += *pvar;\n // IMGUI_API int* GetIntRef(ImGuiID key, int default_val = 0);\n // IMGUI_API bool* GetBoolRef(ImGuiID key, bool default_val = false);\n // IMGUI_API float* GetFloatRef(ImGuiID key, float default_val = 0.0f);\n // IMGUI_API void** GetVoidPtrRef(ImGuiID key, void* default_val = NULL);\n\n // Use on your own storage if you know only integer are being stored (open/close all tree nodes)\n // IMGUI_API void SetAllInt(int val);\n\n // For quicker full rebuild of a storage (instead of an incremental one), you may add all your contents and then sort once.\n // IMGUI_API void BuildSortByKey();\n}\n\n// Data payload for Drag and Drop operations\nexport interface ImGuiPayload\n{\n // Members\n // void* Data; // Data (copied and owned by dear imgui)\n Data: T;\n // int DataSize; // Data size\n\n // [Internal]\n // ImGuiID SourceId; // Source item id\n // ImGuiID SourceParentId; // Source parent id (if available)\n // int DataFrameCount; // Data timestamp\n // char DataType[12 + 1]; // Data type tag (short user-supplied string, 12 characters max)\n // bool Preview; // Set when AcceptDragDropPayload() was called and mouse has been hovering the target item (nb: handle overlapping drag targets)\n // bool Delivery; // Set when AcceptDragDropPayload() was called and mouse button is released over the target item.\n\n // ImGuiPayload() { Clear(); }\n // void Clear() { SourceId = SourceParentId = 0; Data = NULL; DataSize = 0; memset(DataType, 0, sizeof(DataType)); DataFrameCount = -1; Preview = Delivery = false; }\n // bool IsDataType(const char* type) const { return DataFrameCount != -1 && strcmp(type, DataType) == 0; }\n // bool IsPreview() const { return Preview; }\n // bool IsDelivery() const { return Delivery; }\n}\n\n// Helpers macros to generate 32-bits encoded colors\nexport const IM_COL32_R_SHIFT: number = config.IMGUI_USE_BGRA_PACKED_COLOR ? 16 : 0;\nexport const IM_COL32_G_SHIFT: number = 8;\nexport const IM_COL32_B_SHIFT: number = config.IMGUI_USE_BGRA_PACKED_COLOR ? 0 : 16;\nexport const IM_COL32_A_SHIFT: number = 24;\nexport const IM_COL32_A_MASK: number = 0xFF000000;\nexport function IM_COL32(R: number, G: number, B: number, A: number = 255): number {\n return ((A << IM_COL32_A_SHIFT) | (B << IM_COL32_B_SHIFT) | (G << IM_COL32_G_SHIFT) | (R << IM_COL32_R_SHIFT)) >>> 0;\n}\nexport const IM_COL32_WHITE: number = IM_COL32(255, 255, 255, 255); // Opaque white = 0xFFFFFFFF\nexport const IM_COL32_BLACK: number = IM_COL32(0, 0, 0, 255); // Opaque black\nexport const IM_COL32_BLACK_TRANS: number = IM_COL32(0, 0, 0, 0); // Transparent black = 0x00000000\n\n// ImColor() helper to implicity converts colors to either ImU32 (packed 4x1 byte) or ImVec4 (4x1 float)\n// Prefer using IM_COL32() macros if you want a guaranteed compile-time ImU32 for usage with ImDrawList API.\n// **Avoid storing ImColor! Store either u32 of ImVec4. This is not a full-featured color class. MAY OBSOLETE.\n// **None of the ImGui API are using ImColor directly but you can use it as a convenience to pass colors in either ImU32 or ImVec4 formats. Explicitly cast to ImU32 or ImVec4 if needed.\nexport class ImColor\n{\n // ImVec4 Value;\n public Value: ImVec4 = new ImVec4();\n\n // ImColor() { Value.x = Value.y = Value.z = Value.w = 0.0f; }\n // ImColor(int r, int g, int b, int a = 255) { float sc = 1.0f/255.0f; Value.x = (float)r * sc; Value.y = (float)g * sc; Value.z = (float)b * sc; Value.w = (float)a * sc; }\n // ImColor(ImU32 rgba) { float sc = 1.0f/255.0f; Value.x = (float)((rgba>>IM_COL32_R_SHIFT)&0xFF) * sc; Value.y = (float)((rgba>>IM_COL32_G_SHIFT)&0xFF) * sc; Value.z = (float)((rgba>>IM_COL32_B_SHIFT)&0xFF) * sc; Value.w = (float)((rgba>>IM_COL32_A_SHIFT)&0xFF) * sc; }\n // ImColor(float r, float g, float b, float a = 1.0f) { Value.x = r; Value.y = g; Value.z = b; Value.w = a; }\n // ImColor(const ImVec4& col) { Value = col; }\n constructor();\n constructor(r: number, g: number, b: number);\n constructor(r: number, g: number, b: number, a: number);\n constructor(rgba: Bind.ImU32);\n constructor(col: Readonly);\n constructor(r: number | Bind.ImU32 | Readonly = 0.0, g: number = 0.0, b: number = 0.0, a: number = 1.0) {\n if (typeof(r) === \"number\") {\n if (r > 255 && g === 0.0 && b === 0.0 && a === 1.0) {\n this.Value.x = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_R_SHIFT) & 0xFF) / 255));\n this.Value.y = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_G_SHIFT) & 0xFF) / 255));\n this.Value.z = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_B_SHIFT) & 0xFF) / 255));\n this.Value.w = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_A_SHIFT) & 0xFF) / 255));\n } else if (r <= 1.0 && g <= 1.0 && b <= 1.0 && a <= 1.0) {\n this.Value.x = Math.max(0.0, r);\n this.Value.y = Math.max(0.0, g);\n this.Value.z = Math.max(0.0, b);\n this.Value.w = Math.max(0.0, a);\n } else {\n this.Value.x = Math.max(0.0, Math.min(1.0, r / 255));\n this.Value.y = Math.max(0.0, Math.min(1.0, g / 255));\n this.Value.z = Math.max(0.0, Math.min(1.0, b / 255));\n if (a <= 1.0) {\n this.Value.w = Math.max(0.0, a);\n } else {\n this.Value.w = Math.max(0.0, Math.min(1.0, a / 255));\n }\n }\n } else {\n this.Value.Copy(r);\n }\n }\n // inline operator ImU32() const { return ImGui::ColorConvertFloat4ToU32(Value); }\n public toImU32(): Bind.ImU32 { return ColorConvertFloat4ToU32(this.Value); }\n // inline operator ImVec4() const { return Value; }\n public toImVec4(): ImVec4 { return this.Value; }\n\n // FIXME-OBSOLETE: May need to obsolete/cleanup those helpers.\n // inline void SetHSV(float h, float s, float v, float a = 1.0f){ ImGui::ColorConvertHSVtoRGB(h, s, v, Value.x, Value.y, Value.z); Value.w = a; }\n public SetHSV(h: number, s: number, v: number, a: number = 1.0): void {\n const ref_r: Bind.ImScalar = [ this.Value.x ];\n const ref_g: Bind.ImScalar = [ this.Value.y ];\n const ref_b: Bind.ImScalar = [ this.Value.z ];\n ColorConvertHSVtoRGB(h, s, v, ref_r, ref_g, ref_b);\n this.Value.x = ref_r[0];\n this.Value.y = ref_g[0];\n this.Value.z = ref_b[0];\n this.Value.w = a;\n }\n // static ImColor HSV(float h, float s, float v, float a = 1.0f) { float r,g,b; ImGui::ColorConvertHSVtoRGB(h, s, v, r, g, b); return ImColor(r,g,b,a); }\n public static HSV(h: number, s: number, v: number, a: number = 1.0): ImColor {\n const color = new ImColor();\n color.SetHSV(h, s, v, a);\n return color;\n }\n}\n\nexport const ImGuiInputTextDefaultSize: number = 128;\n\nexport type ImGuiInputTextCallback = (data: ImGuiInputTextCallbackData) => number;\n\n// Shared state of InputText(), passed to callback when a ImGuiInputTextFlags_Callback* flag is used and the corresponding callback is triggered.\nexport class ImGuiInputTextCallbackData {\n constructor(public readonly native: Bind.reference_ImGuiInputTextCallbackData, public readonly UserData: any) {}\n\n // ImGuiInputTextFlags EventFlag; // One of ImGuiInputTextFlags_Callback* // Read-only\n public get EventFlag(): ImGuiInputTextFlags { return this.native.EventFlag; }\n // ImGuiInputTextFlags Flags; // What user passed to InputText() // Read-only\n public get Flags(): ImGuiInputTextFlags { return this.native.Flags; }\n // void* UserData; // What user passed to InputText() // Read-only\n // public get UserData(): any { return this.native.UserData; }\n\n // CharFilter event:\n // ImWchar EventChar; // Character input // Read-write (replace character or set to zero)\n public get EventChar(): Bind.ImWchar { return this.native.EventChar; }\n public set EventChar(value: Bind.ImWchar) { this.native.EventChar = value; }\n\n // Completion,History,Always events:\n // If you modify the buffer contents make sure you update 'BufTextLen' and set 'BufDirty' to true.\n // ImGuiKey EventKey; // Key pressed (Up/Down/TAB) // Read-only\n public get EventKey(): ImGuiKey { return this.native.EventKey; }\n // char* Buf; // Current text buffer // Read-write (pointed data only, can't replace the actual pointer)\n public get Buf(): string { return this.native.Buf; }\n public set Buf(value: string) { this.native.Buf = value; }\n // int BufTextLen; // Current text length in bytes // Read-write\n public get BufTextLen(): number { return this.native.BufTextLen; }\n public set BufTextLen(value: number) { this.native.BufTextLen = value; }\n // int BufSize; // Maximum text length in bytes // Read-only\n public get BufSize(): number { return this.native.BufSize; }\n // bool BufDirty; // Set if you modify Buf/BufTextLen!! // Write\n public set BufDirty(value: boolean) { this.native.BufDirty = value; }\n // int CursorPos; // // Read-write\n public get CursorPos(): number { return this.native.CursorPos; }\n public set CursorPos(value: number) { this.native.CursorPos = value; }\n // int SelectionStart; // // Read-write (== to SelectionEnd when no selection)\n public get SelectionStart(): number { return this.native.SelectionStart; }\n public set SelectionStart(value: number) { this.native.SelectionStart = value; }\n // int SelectionEnd; // // Read-write\n public get SelectionEnd(): number { return this.native.SelectionEnd; }\n public set SelectionEnd(value: number) { this.native.SelectionEnd = value; }\n\n // NB: Helper functions for text manipulation. Calling those function loses selection.\n // IMGUI_API void DeleteChars(int pos, int bytes_count);\n public DeleteChars(pos: number, bytes_count: number): void { return this.native.DeleteChars(pos, bytes_count); }\n // IMGUI_API void InsertChars(int pos, const char* text, const char* text_end = NULL);\n public InsertChars(pos: number, text: string, text_end: number | null = null): void { return this.native.InsertChars(pos, text_end !== null ? text.substring(0, text_end) : text); }\n // bool HasSelection() const { return SelectionStart != SelectionEnd; }\n public HasSelection(): boolean { return this.native.HasSelection(); }\n}\n\nexport type ImGuiSizeConstraintCallback = (data: ImGuiSizeCallbackData) => void;\n\n// Resizing callback data to apply custom constraint. As enabled by SetNextWindowSizeConstraints(). Callback is called during the next Begin().\n// NB: For basic min/max size constraint on each axis you don't need to use the callback! The SetNextWindowSizeConstraints() parameters are enough.\nexport class ImGuiSizeCallbackData {\n constructor(public readonly native: Bind.reference_ImGuiSizeCallbackData, public readonly UserData: any) {}\n\n get Pos(): Readonly { return this.native.Pos; }\n get CurrentSize(): Readonly { return this.native.CurrentSize; }\n get DesiredSize(): Bind.interface_ImVec2 { return this.native.DesiredSize; }\n}\n\nexport class ImGuiListClipper\n{\n private native: Bind.ImGuiListClipper;\n\n public get StartPosY(): number { return this.native.StartPosY; }\n public get ItemsHeight(): number { return this.native.ItemsHeight; }\n public get ItemsCount(): number { return this.native.ItemsCount; }\n public get StepNo(): number { return this.native.StepNo; }\n public get DisplayStart(): number { return this.native.DisplayStart; }\n public get DisplayEnd(): number { return this.native.DisplayEnd; }\n\n // items_count: Use -1 to ignore (you can call Begin later). Use INT_MAX if you don't know how many items you have (in which case the cursor won't be advanced in the final step).\n // items_height: Use -1.0f to be calculated automatically on first step. Otherwise pass in the distance between your items, typically GetTextLineHeightWithSpacing() or GetFrameHeightWithSpacing().\n // If you don't specify an items_height, you NEED to call Step(). If you specify items_height you may call the old Begin()/End() api directly, but prefer calling Step().\n // ImGuiListClipper(int items_count = -1, float items_height = -1.0f) { Begin(items_count, items_height); } // NB: Begin() initialize every fields (as we allow user to call Begin/End multiple times on a same instance if they want).\n constructor(items_count: number = -1, items_height: number = -1.0) {\n this.native = new bind.ImGuiListClipper(items_count, items_height);\n }\n // ~ImGuiListClipper() { IM_ASSERT(ItemsCount == -1); } // Assert if user forgot to call End() or Step() until false.\n public delete(): void {\n if (this.native) {\n this.native.delete();\n delete this.native;\n }\n }\n\n // IMGUI_API bool Step(); // Call until it returns false. The DisplayStart/DisplayEnd fields will be set and you can process/draw those items.\n public Step(): boolean {\n if (!this.native) { throw new Error(); }\n const busy: boolean = this.native.Step();\n if (!busy) {\n this.delete();\n }\n return busy;\n }\n // IMGUI_API void Begin(int items_count, float items_height = -1.0f); // Automatically called by constructor if you passed 'items_count' or by Step() in Step 1.\n public Begin(items_count: number, items_height: number = -1.0): void {\n if (!this.native) {\n this.native = new Bind.ImGuiListClipper(items_count, items_height);\n }\n this.native.Begin(items_count, items_height);\n }\n // IMGUI_API void End(); // Automatically called on the last call of Step() that returns false.\n public End(): void {\n if (!this.native) { throw new Error(); }\n this.native.End();\n this.delete();\n }\n}\n\n//-----------------------------------------------------------------------------\n// Draw List\n// Hold a series of drawing commands. The user provides a renderer for ImDrawData which essentially contains an array of ImDrawList.\n//-----------------------------------------------------------------------------\n\n// Draw callbacks for advanced uses.\n// NB- You most likely do NOT need to use draw callbacks just to create your own widget or customized UI rendering (you can poke into the draw list for that)\n// Draw callback may be useful for example, A) Change your GPU render state, B) render a complex 3D scene inside a UI element (without an intermediate texture/render target), etc.\n// The expected behavior from your rendering function is 'if (cmd.UserCallback != NULL) cmd.UserCallback(parent_list, cmd); else RenderTriangles()'\n// typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd);\nexport type ImDrawCallback = (parent_list: Readonly, cmd: Readonly) => void;\n\n// Special Draw callback value to request renderer back-end to reset the graphics/render state.\n// The renderer back-end needs to handle this special value, otherwise it will crash trying to call a function at this address.\n// This is useful for example if you submitted callbacks which you know have altered the render state and you want it to be restored.\n// It is not done by default because they are many perfectly useful way of altering render state for imgui contents (e.g. changing shader/blending settings before an Image call).\nexport const ImDrawCallback_ResetRenderState = -1;\n\n// Typically, 1 command = 1 GPU draw call (unless command is a callback)\n// Pre 1.71 back-ends will typically ignore the VtxOffset/IdxOffset fields. When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset'\n// is enabled, those fields allow us to render meshes larger than 64K vertices while keeping 16-bits indices.\nexport class ImDrawCmd\n{\n constructor(public readonly native: Bind.reference_ImDrawCmd) {}\n\n // unsigned int ElemCount; // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[].\n get ElemCount(): number { return this.native.ElemCount; }\n // ImVec4 ClipRect; // Clipping rectangle (x1, y1, x2, y2)\n get ClipRect(): Readonly { return this.native.ClipRect; }\n // ImTextureID TextureId; // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas.\n get TextureId(): ImTextureID | null {\n return ImGuiContext.getTexture(this.native.TextureId);\n }\n // unsigned int VtxOffset; // Start offset in vertex buffer. Pre-1.71 or without ImGuiBackendFlags_RendererHasVtxOffset: always 0. With ImGuiBackendFlags_RendererHasVtxOffset: may be >0 to support meshes larger than 64K vertices with 16-bits indices.\n get VtxOffset(): number { return this.native.VtxOffset; }\n // unsigned int IdxOffset; // Start offset in index buffer. Always equal to sum of ElemCount drawn so far.\n get IdxOffset(): number { return this.native.IdxOffset; }\n // ImDrawCallback UserCallback; // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally.\n public readonly UserCallback: ImDrawCallback | null = null; // TODO\n // void* UserCallbackData; // The draw callback code can access this.\n public readonly UserCallbackData: any = null; // TODO\n\n // ImDrawCmd() { ElemCount = 0; ClipRect.x = ClipRect.y = ClipRect.z = ClipRect.w = 0.0f; TextureId = NULL; UserCallback = NULL; UserCallbackData = NULL; }\n}\n\n// Vertex index \n// (to allow large meshes with 16-bits indices: set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset in the renderer back-end)\n// (to use 32-bits indices: override with '#define ImDrawIdx unsigned int' in imconfig.h)\n// #ifndef ImDrawIdx\n// typedef unsigned short ImDrawIdx;\n// #endif\nexport const ImDrawIdxSize: number = 2; // bind.ImDrawIdxSize;\nexport type ImDrawIdx = number;\n\n// Vertex layout\n// #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT\nexport const ImDrawVertSize: number = 20; // bind.ImDrawVertSize;\nexport const ImDrawVertPosOffset: number = 0; // bind.ImDrawVertPosOffset;\nexport const ImDrawVertUVOffset: number = 8; // bind.ImDrawVertUVOffset;\nexport const ImDrawVertColOffset: number = 16; // bind.ImDrawVertColOffset;\nexport class ImDrawVert\n{\n // ImVec2 pos;\n public pos: Float32Array;\n // ImVec2 uv;\n public uv: Float32Array;\n // ImU32 col;\n public col: Uint32Array;\n\n constructor(buffer: ArrayBuffer, byteOffset: number = 0) {\n this.pos = new Float32Array(buffer, byteOffset + bind.ImDrawVertPosOffset, 2);\n this.uv = new Float32Array(buffer, byteOffset + bind.ImDrawVertUVOffset, 2);\n this.col = new Uint32Array(buffer, byteOffset + bind.ImDrawVertColOffset, 1);\n }\n}\n// #else\n// You can override the vertex format layout by defining IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT in imconfig.h\n// The code expect ImVec2 pos (8 bytes), ImVec2 uv (8 bytes), ImU32 col (4 bytes), but you can re-order them or add other fields as needed to simplify integration in your engine.\n// The type has to be described within the macro (you can either declare the struct or use a typedef)\n// NOTE: IMGUI DOESN'T CLEAR THE STRUCTURE AND DOESN'T CALL A CONSTRUCTOR SO ANY CUSTOM FIELD WILL BE UNINITIALIZED. IF YOU ADD EXTRA FIELDS (SUCH AS A 'Z' COORDINATES) YOU WILL NEED TO CLEAR THEM DURING RENDER OR TO IGNORE THEM.\n// IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT;\n// #endif\n\n// Draw channels are used by the Columns API to \"split\" the render list into different channels while building, so items of each column can be batched together.\n// You can also use them to simulate drawing layers and submit primitives in a different order than how they will be rendered.\nexport class ImDrawChannel\n{\n // ImVector CmdBuffer;\n // ImVector IdxBuffer;\n}\n\nexport class ImDrawListSharedData\n{\n constructor(public readonly native: Bind.reference_ImDrawListSharedData) {}\n}\n\n// Draw command list\n// This is the low-level list of polygons that ImGui functions are filling. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering.\n// Each ImGui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to access the current window draw list and draw custom primitives.\n// You can interleave normal ImGui:: calls and adding primitives to the current draw list.\n// All positions are generally in pixel coordinates (top-left at (0,0), bottom-right at io.DisplaySize), however you are totally free to apply whatever transformation matrix to want to the data (if you apply such transformation you'll want to apply it to ClipRect as well)\n// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects.\nexport class ImDrawList\n{\n constructor(public readonly native: Bind.reference_ImDrawList) {}\n\n public IterateDrawCmds(callback: (draw_cmd: ImDrawCmd, ElemStart: number) => void): void {\n this.native.IterateDrawCmds((draw_cmd: Bind.reference_ImDrawCmd, ElemStart: number): void => {\n callback(new ImDrawCmd(draw_cmd), ElemStart);\n });\n }\n\n // This is what you have to render\n // ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback.\n // ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those\n get IdxBuffer(): Uint8Array { return this.native.IdxBuffer; }\n // ImVector VtxBuffer; // Vertex buffer.\n get VtxBuffer(): Uint8Array { return this.native.VtxBuffer; }\n // ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive.\n get Flags(): ImDrawListFlags { return this.native.Flags; }\n set Flags(value: ImDrawListFlags) { this.native.Flags = value; }\n\n // [Internal, used while building lists]\n // const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context)\n // const char* _OwnerName; // Pointer to owner window's name for debugging\n // unsigned int _VtxCurrentIdx; // [Internal] == VtxBuffer.Size\n // ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)\n // ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)\n // ImVector _ClipRectStack; // [Internal]\n // ImVector _TextureIdStack; // [Internal]\n // ImVector _Path; // [Internal] current path building\n // int _ChannelsCurrent; // [Internal] current channel number (0)\n // int _ChannelsCount; // [Internal] number of active channels (1+)\n // ImVector _Channels; // [Internal] draw channels for columns API (not resized down so _ChannelsCount may be smaller than _Channels.Size)\n\n // ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clear(); }\n // ~ImDrawList() { ClearFreeMemory(); }\n // IMGUI_API void PushClipRect(ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling)\n public PushClipRect(clip_rect_min: Readonly, clip_rect_max: Readonly, intersect_with_current_clip_rect: boolean = false): void {\n this.native.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect);\n }\n // IMGUI_API void PushClipRectFullScreen();\n public PushClipRectFullScreen(): void { this.native.PushClipRectFullScreen(); }\n // IMGUI_API void PopClipRect();\n public PopClipRect(): void { this.native.PopClipRect(); }\n // IMGUI_API void PushTextureID(ImTextureID texture_id);\n public PushTextureID(texture_id: ImTextureID): void {\n this.native.PushTextureID(ImGuiContext.setTexture(texture_id));\n }\n // IMGUI_API void PopTextureID();\n public PopTextureID(): void { this.native.PopTextureID(); }\n // inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); }\n public GetClipRectMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return this.native.GetClipRectMin(out);\n }\n // inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); }\n public GetClipRectMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return this.native.GetClipRectMax(out);\n }\n\n // Primitives\n // IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness = 1.0f);\n public AddLine(a: Readonly, b: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddLine(a, b, col, thickness);\n }\n // IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All, float thickness = 1.0f); // a: upper-left, b: lower-right, rounding_corners_flags: 4-bits corresponding to which corner to round\n public AddRect(a: Readonly, b: Readonly, col: Bind.ImU32, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All, thickness: number = 1.0): void {\n this.native.AddRect(a, b, col, rounding, rounding_corners_flags, thickness);\n }\n // IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); // a: upper-left, b: lower-right\n public AddRectFilled(a: Readonly, b: Readonly, col: Bind.ImU32, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All): void {\n this.native.AddRectFilled(a, b, col, rounding, rounding_corners_flags);\n }\n // IMGUI_API void AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left);\n public AddRectFilledMultiColor(a: Readonly, b: Readonly, col_upr_left: Bind.ImU32, col_upr_right: Bind.ImU32, col_bot_right: Bind.ImU32, col_bot_left: Bind.ImU32): void {\n this.native.AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left);\n }\n // IMGUI_API void AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness = 1.0f);\n public AddQuad(a: Readonly, b: Readonly, c: Readonly, d: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddQuad(a, b, c, d, col, thickness);\n }\n // IMGUI_API void AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col);\n public AddQuadFilled(a: Readonly, b: Readonly, c: Readonly, d: Readonly, col: Bind.ImU32): void {\n this.native.AddQuadFilled(a, b, c, d, col);\n }\n // IMGUI_API void AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness = 1.0f);\n public AddTriangle(a: Readonly, b: Readonly, c: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddTriangle(a, b, c, col, thickness);\n }\n // IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col);\n public AddTriangleFilled(a: Readonly, b: Readonly, c: Readonly, col: Bind.ImU32): void {\n this.native.AddTriangleFilled(a, b, c, col);\n }\n // IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f);\n public AddCircle(centre: Readonly, radius: number, col: Bind.ImU32, num_segments: number = 12, thickness: number = 1.0): void {\n this.native.AddCircle(centre, radius, col, num_segments, thickness);\n }\n // IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12);\n public AddCircleFilled(centre: Readonly, radius: number, col: Bind.ImU32, num_segments: number = 12): void {\n this.native.AddCircleFilled(centre, radius, col, num_segments);\n }\n // IMGUI_API void AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL);\n // IMGUI_API void AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL, float wrap_width = 0.0f, const ImVec4* cpu_fine_clip_rect = NULL);\n public AddText(pos: Readonly, col: Bind.ImU32, text_begin: string, text_end?: number | null): void;\n public AddText(font: ImFont, font_size: number, pos: Readonly, col: Bind.ImU32, text_begin: string, text_end?: number | null, wrap_width?: number, cpu_fine_clip_rect?: Readonly | null): void;\n public AddText(...args: any[]): void {\n if (args[0] instanceof ImFont) {\n const font: ImFont = args[0];\n const font_size: number = args[1];\n const pos: Readonly = args[2];\n const col: Bind.ImU32 = args[3];\n const text_begin: string = args[4];\n const text_end: number | null = args[5] || null;\n const wrap_width: number = args[6] = 0.0;\n const cpu_fine_clip_rect: Readonly | null = args[7] || null;\n this.native.AddText_B(font.native, font_size, pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin, wrap_width, cpu_fine_clip_rect);\n } else {\n const pos: Readonly = args[0];\n const col: Bind.ImU32 = args[1];\n const text_begin: string = args[2];\n const text_end: number | null = args[3] || null;\n this.native.AddText_A(pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin);\n }\n }\n // IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,1), ImU32 col = 0xFFFFFFFF);\n public AddImage(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, uv_a: Readonly = ImVec2.ZERO, uv_b: Readonly = ImVec2.UNIT, col: Bind.ImU32 = 0xFFFFFFFF): void {\n this.native.AddImage(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col);\n }\n // IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,0), const ImVec2& uv_c = ImVec2(1,1), const ImVec2& uv_d = ImVec2(0,1), ImU32 col = 0xFFFFFFFF);\n public AddImageQuad(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, c: Readonly, d: Readonly, uv_a: Readonly = ImVec2.ZERO, uv_b: Readonly = ImVec2.UNIT_X, uv_c: Readonly = ImVec2.UNIT, uv_d: Readonly = ImVec2.UNIT_Y, col: Bind.ImU32 = 0xFFFFFFFF): void {\n this.native.AddImageQuad(ImGuiContext.setTexture(user_texture_id), a, b, c, d, uv_a, uv_b, uv_c, uv_d, col);\n }\n // IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col, float rounding, int rounding_corners = ImDrawCornerFlags_All);\n public AddImageRounded(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, uv_a: Readonly, uv_b: Readonly, col: Bind.ImU32, rounding: number, rounding_corners: ImDrawCornerFlags = ImDrawCornerFlags.All): void {\n this.native.AddImageRounded(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col, rounding, rounding_corners);\n }\n // IMGUI_API void AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness);\n public AddPolyline(points: Array>, num_points: number, col: Bind.ImU32, closed: boolean, thickness: number): void {\n this.native.AddPolyline(points, num_points, col, closed, thickness);\n }\n // IMGUI_API void AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col);\n public AddConvexPolyFilled(points: Array>, num_points: number, col: Bind.ImU32): void {\n this.native.AddConvexPolyFilled(points, num_points, col);\n }\n // IMGUI_API void AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments = 0);\n public AddBezierCurve(pos0: Readonly, cp0: Readonly, cp1: Readonly, pos1: Readonly, col: Bind.ImU32, thickness: number = 1.0, num_segments: number = 0): void {\n this.native.AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments);\n }\n\n // Stateful path API, add points then finish with PathFill() or PathStroke()\n // inline void PathClear() { _Path.resize(0); }\n public PathClear(): void { this.native.PathClear(); }\n // inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); }\n public PathLineTo(pos: Readonly): void { this.native.PathLineTo(pos); }\n // inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path[_Path.Size-1], &pos, 8) != 0) _Path.push_back(pos); }\n public PathLineToMergeDuplicate(pos: Readonly): void { this.native.PathLineToMergeDuplicate(pos); }\n // inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); PathClear(); }\n public PathFillConvex(col: Bind.ImU32): void { this.native.PathFillConvex(col); }\n // inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness); PathClear(); }\n public PathStroke(col: Bind.ImU32, closed: boolean, thickness: number = 1.0): void { this.native.PathStroke(col, closed, thickness); }\n // IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_segments = 10);\n public PathArcTo(centre: Readonly, radius: number, a_min: number, a_max: number, num_segments: number = 10): void { this.native.PathArcTo(centre, radius, a_min, a_max, num_segments); }\n // IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle\n public PathArcToFast(centre: Readonly, radius: number, a_min_of_12: number, a_max_of_12: number): void { this.native.PathArcToFast(centre, radius, a_min_of_12, a_max_of_12); }\n // IMGUI_API void PathBezierCurveTo(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, int num_segments = 0);\n public PathBezierCurveTo(p1: Readonly, p2: Readonly, p3: Readonly, num_segments: number = 0): void { this.native.PathBezierCurveTo(p1, p2, p3, num_segments); }\n // IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All);\n public PathRect(rect_min: Readonly, rect_max: Readonly, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All): void { this.native.PathRect(rect_min, rect_max, rounding, rounding_corners_flags); }\n\n // Channels\n // - Use to simulate layers. By switching channels to can render out-of-order (e.g. submit foreground primitives before background primitives)\n // - Use to minimize draw calls (e.g. if going back-and-forth between multiple non-overlapping clipping rectangles, prefer to append into separate channels then merge at the end)\n // IMGUI_API void ChannelsSplit(int channels_count);\n public ChannelsSplit(channels_count: number): void { this.native.ChannelsSplit(channels_count); }\n // IMGUI_API void ChannelsMerge();\n public ChannelsMerge(): void { this.native.ChannelsMerge(); }\n // IMGUI_API void ChannelsSetCurrent(int channel_index);\n public ChannelsSetCurrent(channel_index: number): void { this.native.ChannelsSetCurrent(channel_index); }\n\n // Advanced\n // IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles.\n public AddCallback(callback: ImDrawCallback, callback_data: any): void {\n const _callback: Bind.ImDrawCallback = (parent_list: Readonly, draw_cmd: Readonly): void => {\n callback(new ImDrawList(parent_list), new ImDrawCmd(draw_cmd));\n };\n this.native.AddCallback(_callback, callback_data);\n }\n // IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible\n public AddDrawCmd(): void { this.native.AddDrawCmd(); }\n\n // Internal helpers\n // NB: all primitives needs to be reserved via PrimReserve() beforehand!\n // IMGUI_API void Clear();\n public Clear(): void { this.native.Clear(); }\n // IMGUI_API void ClearFreeMemory();\n public ClearFreeMemory(): void { this.native.ClearFreeMemory(); }\n // IMGUI_API void PrimReserve(int idx_count, int vtx_count);\n public PrimReserve(idx_count: number, vtx_count: number): void { this.native.PrimReserve(idx_count, vtx_count); }\n // IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles)\n public PrimRect(a: Readonly, b: Readonly, col: Bind.ImU32): void { this.native.PrimRect(a, b, col); }\n // IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col);\n public PrimRectUV(a: Readonly, b: Readonly, uv_a: Readonly, uv_b: Readonly, col: Bind.ImU32): void { this.native.PrimRectUV(a, b, uv_a, uv_b, col); }\n // IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col);\n public PrimQuadUV(a: Readonly, b: Readonly, c: Readonly, d: Readonly, uv_a: Readonly, uv_b: Readonly, uv_c: Readonly, uv_d: Readonly, col: Bind.ImU32): void { this.native.PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); }\n // inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; }\n public PrimWriteVtx(pos: Readonly, uv: Readonly, col: Bind.ImU32): void { this.native.PrimWriteVtx(pos, uv, col); }\n // inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; }\n public PrimWriteIdx(idx: ImDrawIdx): void { this.native.PrimWriteIdx(idx); }\n // inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); }\n public PrimVtx(pos: Readonly, uv: Readonly, col: Bind.ImU32): void { this.native.PrimVtx(pos, uv, col); }\n // IMGUI_API void UpdateClipRect();\n public UpdateClipRect(): void { this.native.UpdateClipRect(); }\n // IMGUI_API void UpdateTextureID();\n public UpdateTextureID(): void { this.native.UpdateTextureID(); }\n}\n\n// All draw data to render an ImGui frame\nexport class ImDrawData\n{\n constructor(public readonly native: Bind.reference_ImDrawData) {}\n\n public IterateDrawLists(callback: (draw_list: ImDrawList) => void): void {\n this.native.IterateDrawLists((draw_list: Bind.reference_ImDrawList): void => {\n callback(new ImDrawList(draw_list));\n });\n }\n\n // bool Valid; // Only valid after Render() is called and before the next NewFrame() is called.\n get Valid(): boolean { return this.native.Valid; }\n // ImDrawList** CmdLists;\n // int CmdListsCount;\n get CmdListsCount(): number { return this.native.CmdListsCount; }\n // int TotalIdxCount; // For convenience, sum of all cmd_lists idx_buffer.Size\n get TotalIdxCount(): number { return this.native.TotalIdxCount; }\n // int TotalVtxCount; // For convenience, sum of all cmd_lists vtx_buffer.Size\n get TotalVtxCount(): number { return this.native.TotalVtxCount; }\n // ImVec2 DisplayPos; // Upper-left position of the viewport to render (== upper-left of the orthogonal projection matrix to use)\n get DisplayPos(): Readonly { return this.native.DisplayPos; }\n // ImVec2 DisplaySize; // Size of the viewport to render (== io.DisplaySize for the main viewport) (DisplayPos + DisplaySize == lower-right of the orthogonal projection matrix to use)\n get DisplaySize(): Readonly { return this.native.DisplaySize; }\n // ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display.\n get FramebufferScale(): Readonly { return this.native.FramebufferScale; }\n\n // Functions\n // ImDrawData() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCount = 0; }\n // IMGUI_API void DeIndexAllBuffers(); // For backward compatibility or convenience: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering!\n public DeIndexAllBuffers(): void { this.native.DeIndexAllBuffers(); }\n // IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than ImGui expects, or if there is a difference between your window resolution and framebuffer resolution.\n public ScaleClipRects(fb_scale: Readonly): void {\n this.native.ScaleClipRects(fb_scale);\n }\n}\n\nexport class script_ImFontConfig implements Bind.interface_ImFontConfig\n{\n // void* FontData; // // TTF/OTF data\n // int FontDataSize; // // TTF/OTF data size\n FontData: DataView | null = null;\n // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself).\n FontDataOwnedByAtlas: boolean = true;\n // int FontNo; // 0 // Index of font within TTF/OTF file\n FontNo: number = 0;\n // float SizePixels; // // Size in pixels for rasterizer.\n SizePixels: number = 0;\n // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis.\n OversampleH: number = 3;\n OversampleV: number = 1;\n // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1.\n PixelSnapH: boolean = false;\n // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now.\n GlyphExtraSpacing: ImVec2 = new ImVec2(0, 0);\n // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input.\n GlyphOffset: ImVec2 = new ImVec2(0, 0);\n // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE.\n GlyphRanges: number | null = null;\n // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font\n GlyphMinAdvanceX: number = 0;\n // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs\n GlyphMaxAdvanceX: number = Number.MAX_VALUE;\n // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights.\n MergeMode: boolean = false;\n // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one.\n RasterizerFlags: number = 0;\n // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable.\n RasterizerMultiply: number = 1.0;\n\n // [Internal]\n // char Name[32]; // Name (strictly to ease debugging)\n Name: string = \"\";\n // ImFont* DstFont;\n DstFont: Bind.reference_ImFont | null = null;\n\n // IMGUI_API ImFontConfig();\n}\n\nexport class ImFontConfig {\n constructor(public readonly internal: Bind.interface_ImFontConfig = new script_ImFontConfig()) {}\n\n // void* FontData; // // TTF/OTF data\n // int FontDataSize; // // TTF/OTF data size\n get FontData(): DataView | null { return this.internal.FontData; }\n // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself).\n get FontDataOwnedByAtlas(): boolean { return this.internal.FontDataOwnedByAtlas; }\n // int FontNo; // 0 // Index of font within TTF/OTF file\n get FontNo(): number { return this.internal.FontNo; }\n // float SizePixels; // // Size in pixels for rasterizer.\n get SizePixels(): number { return this.internal.SizePixels; }\n // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis.\n get OversampleH(): number { return this.internal.OversampleH; }\n get OversampleV(): number { return this.internal.OversampleV; }\n // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1.\n get PixelSnapH(): boolean { return this.internal.PixelSnapH; }\n // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now.\n get GlyphExtraSpacing(): ImVec2 { return this.internal.GlyphExtraSpacing; }\n // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input.\n get GlyphOffset(): ImVec2 { return this.internal.GlyphOffset; }\n // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE.\n get GlyphRanges(): number | null { return this.internal.GlyphRanges; }\n // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font\n get GlyphMinAdvanceX(): number { return this.internal.GlyphMinAdvanceX; }\n // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs\n get GlyphMaxAdvanceX(): number { return this.internal.GlyphMaxAdvanceX; }\n // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights.\n get MergeMode(): boolean { return this.internal.MergeMode; }\n // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one.\n get RasterizerFlags(): number { return this.internal.RasterizerFlags; }\n // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable.\n get RasterizerMultiply(): number { return this.internal.RasterizerMultiply; }\n\n // [Internal]\n // char Name[32]; // Name (strictly to ease debugging)\n get Name(): string { return this.internal.Name; }\n set Name(value: string) { this.internal.Name = value; }\n // ImFont* DstFont;\n get DstFont(): ImFont | null {\n const font = this.internal.DstFont;\n return font && new ImFont(font);\n }\n\n // IMGUI_API ImFontConfig();\n}\n\n// struct ImFontGlyph\nexport class script_ImFontGlyph implements Bind.interface_ImFontGlyph\n{\n // ImWchar Codepoint; // 0x0000..0xFFFF\n Codepoint: number = 0;\n // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in)\n AdvanceX: number = 0.0;\n // float X0, Y0, X1, Y1; // Glyph corners\n X0: number = 0.0;\n Y0: number = 0.0;\n X1: number = 1.0;\n Y1: number = 1.0;\n // float U0, V0, U1, V1; // Texture coordinates\n U0: number = 0.0;\n V0: number = 0.0;\n U1: number = 1.0;\n V1: number = 1.0;\n}\n\nexport class ImFontGlyph implements Bind.interface_ImFontGlyph {\n constructor(public readonly internal: Bind.interface_ImFontGlyph = new script_ImFontGlyph()) {}\n // ImWchar Codepoint; // 0x0000..0xFFFF\n get Codepoint(): number { return this.internal.Codepoint; }\n // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in)\n get AdvanceX(): number { return this.internal.AdvanceX; };\n // float X0, Y0, X1, Y1; // Glyph corners\n get X0(): number { return this.internal.X0; };\n get Y0(): number { return this.internal.Y0; };\n get X1(): number { return this.internal.X1; };\n get Y1(): number { return this.internal.Y1; };\n // float U0, V0, U1, V1; // Texture coordinates\n get U0(): number { return this.internal.U0; };\n get V0(): number { return this.internal.V0; };\n get U1(): number { return this.internal.U1; };\n get V1(): number { return this.internal.V1; };\n}\n\nexport enum ImFontAtlasFlags\n{\n None = 0,\n NoPowerOfTwoHeight = 1 << 0, // Don't round the height to next power of two\n NoMouseCursors = 1 << 1, // Don't build software mouse cursors into the atlas\n}\n\n// Load and rasterize multiple TTF/OTF fonts into a same texture.\n// Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering.\n// We also add custom graphic data into the texture that serves for ImGui.\n// 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you.\n// 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data.\n// 3. Upload the pixels data into a texture within your graphics system.\n// 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture.\n// IMPORTANT: If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the ImFont is build (when calling GetTextData*** or Build()). We only copy the pointer, not the data.\nexport class ImFontAtlas\n{\n constructor(public readonly native: Bind.reference_ImFontAtlas) {}\n\n // IMGUI_API ImFontAtlas();\n // IMGUI_API ~ImFontAtlas();\n // IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg);\n // IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL);\n public AddFontDefault(font_cfg: Bind.interface_ImFontConfig | null = null): ImFont {\n return new ImFont(this.native.AddFontDefault(font_cfg));\n }\n // IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL);\n // IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after Build(). Set font_cfg->FontDataOwnedByAtlas to false to keep ownership.\n public AddFontFromMemoryTTF(data: ArrayBuffer, size_pixels: number, font_cfg: ImFontConfig | null = null, glyph_ranges: number | null = null): ImFont {\n return new ImFont(this.native.AddFontFromMemoryTTF(new Uint8Array(data), size_pixels, font_cfg && font_cfg.internal, glyph_ranges));\n }\n // IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp.\n // IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter.\n // IMGUI_API void ClearTexData(); // Clear the CPU-side texture data. Saves RAM once the texture has been copied to graphics memory.\n public ClearTexData(): void { this.native.ClearTexData(); }\n // IMGUI_API void ClearInputData(); // Clear the input TTF data (inc sizes, glyph ranges)\n public ClearInputData(): void { this.native.ClearInputData(); }\n // IMGUI_API void ClearFonts(); // Clear the ImGui-side font data (glyphs storage, UV coordinates)\n public ClearFonts(): void { this.native.ClearFonts(); }\n // IMGUI_API void Clear(); // Clear all\n public Clear(): void { this.native.Clear(); }\n\n // Build atlas, retrieve pixel data.\n // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID().\n // RGBA32 format is provided for convenience and compatibility, but note that unless you use CustomRect to draw color data, the RGB pixels emitted from Fonts will all be white (~75% of waste).\n // Pitch = Width * BytesPerPixels\n // IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions.\n public Build(): boolean { return this.native.Build(); }\n // IMGUI_API bool IsBuilt() { return Fonts.Size > 0 && (TexPixelsAlpha8 != NULL || TexPixelsRGBA32 != NULL); }\n public IsBuilt(): boolean { return this.native.IsBuilt(); }\n // IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel\n public GetTexDataAsAlpha8(): { pixels: Uint8ClampedArray, width: number, height: number, bytes_per_pixel: number } {\n return this.native.GetTexDataAsAlpha8();\n }\n // IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel\n public GetTexDataAsRGBA32(): { pixels: Uint8ClampedArray, width: number, height: number, bytes_per_pixel: number } {\n return this.native.GetTexDataAsRGBA32();\n }\n // void SetTexID(ImTextureID id) { TexID = id; }\n public SetTexID(id: ImTextureID | null): void { this.TexID = id; }\n\n //-------------------------------------------\n // Glyph Ranges\n //-------------------------------------------\n\n // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list)\n // NB: Make sure that your string are UTF-8 and NOT in your local code page. In C++11, you can create UTF-8 string literal using the u8\"Hello world\" syntax. See FAQ for details.\n // IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin\n GetGlyphRangesDefault(): number { return this.native.GetGlyphRangesDefault(); }\n // IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters\n GetGlyphRangesKorean(): number { return this.native.GetGlyphRangesKorean(); }\n // IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs\n GetGlyphRangesJapanese(): number { return this.native.GetGlyphRangesJapanese(); }\n // IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs\n GetGlyphRangesChineseFull(): number { return this.native.GetGlyphRangesChineseFull(); }\n // IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese\n GetGlyphRangesChineseSimplifiedCommon(): number { return this.native.GetGlyphRangesChineseSimplifiedCommon(); }\n // IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters\n GetGlyphRangesCyrillic(): number { return this.native.GetGlyphRangesCyrillic(); }\n // IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters\n GetGlyphRangesThai(): number { return this.native.GetGlyphRangesThai(); }\n // IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters\n GetGlyphRangesVietnamese(): number { return this.native.GetGlyphRangesVietnamese(); }\n\n // Helpers to build glyph ranges from text data. Feed your application strings/characters to it then call BuildRanges().\n // struct GlyphRangesBuilder\n // {\n // ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used)\n // GlyphRangesBuilder() { UsedChars.resize(0x10000 / 8); memset(UsedChars.Data, 0, 0x10000 / 8); }\n // bool GetBit(int n) const { return (UsedChars[n >> 3] & (1 << (n & 7))) != 0; }\n // void SetBit(int n) { UsedChars[n >> 3] |= 1 << (n & 7); } // Set bit 'c' in the array\n // void AddChar(ImWchar c) { SetBit(c); } // Add character\n // IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added)\n // IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault) to force add all of ASCII/Latin+Ext\n // IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges\n // };\n\n //-------------------------------------------\n // Custom Rectangles/Glyphs API\n //-------------------------------------------\n\n // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. After calling Build(), you can query the rectangle position and render your pixels.\n // You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs.\n // struct CustomRect\n // {\n // unsigned int ID; // Input // User ID. Use <0x10000 to map into a font glyph, >=0x10000 for other/internal/custom texture data.\n // unsigned short Width, Height; // Input // Desired rectangle dimension\n // unsigned short X, Y; // Output // Packed position in Atlas\n // float GlyphAdvanceX; // Input // For custom font glyphs only (ID<0x10000): glyph xadvance\n // ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph display offset\n // ImFont* Font; // Input // For custom font glyphs only (ID<0x10000): target font\n // CustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); Font = NULL; }\n // bool IsPacked() const { return X != 0xFFFF; }\n // };\n\n // IMGUI_API int AddCustomRectRegular(unsigned int id, int width, int height); // Id needs to be >= 0x10000. Id >= 0x80000000 are reserved for ImGui and ImDrawList\n // IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0,0)); // Id needs to be < 0x10000 to register a rectangle to map into a specific font.\n // IMGUI_API void CalcCustomRectUV(const CustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max);\n // const CustomRect* GetCustomRectByIndex(int index) const { if (index < 0) return NULL; return &CustomRects[index]; }\n\n //-------------------------------------------\n // Members\n //-------------------------------------------\n\n // bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert.\n get Locked(): boolean { return this.native.Locked; }\n set Locked(value: boolean) { this.native.Locked = value; }\n // ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_)\n get Flags(): ImFontAtlasFlags { return this.native.Flags; }\n set Flags(value: ImFontAtlasFlags) { this.native.Flags = value; }\n // ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure.\n get TexID(): ImTextureID | null {\n return ImGuiContext.getTexture(this.native.TexID);\n }\n set TexID(value: ImTextureID | null) {\n this.native.TexID = ImGuiContext.setTexture(value);\n }\n // int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height.\n get TexDesiredWidth(): number { return this.native.TexDesiredWidth; }\n set TexDesiredWidth(value: number) { this.native.TexDesiredWidth = value; }\n // int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1.\n get TexGlyphPadding(): number { return this.native.TexGlyphPadding; }\n set TexGlyphPadding(value: number) { this.native.TexGlyphPadding = value; }\n\n // [Internal]\n // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you.\n // unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight\n // unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4\n // int TexWidth; // Texture width calculated during Build().\n get TexWidth(): number { return this.native.TexWidth; }\n // int TexHeight; // Texture height calculated during Build().\n get TexHeight(): number { return this.native.TexHeight; }\n // ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight)\n get TexUvScale(): Readonly { return this.native.TexUvScale; }\n // ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel\n get TexUvWhitePixel(): Readonly { return this.native.TexUvWhitePixel; }\n // ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font.\n get Fonts(): ImVector {\n const fonts: ImVector = new ImVector();\n this.native.IterateFonts((font: Bind.reference_ImFont) => {\n fonts.push(new ImFont(font));\n });\n return fonts;\n }\n // ImVector CustomRects; // Rectangles for packing custom texture data into the atlas.\n // ImVector ConfigData; // Internal data\n // int CustomRectIds[1]; // Identifiers of custom texture rectangle used by ImFontAtlas/ImDrawList\n}\n\n// Font runtime data and rendering\n// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32().\nexport class ImFont\n{\n constructor(public readonly native: Bind.reference_ImFont) {}\n\n // Members: Hot ~62/78 bytes\n // float FontSize; // // Height of characters, set during loading (don't change after loading)\n get FontSize(): number { return this.native.FontSize; }\n // float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale()\n get Scale(): number { return this.native.Scale; }\n set Scale(value: number) { this.native.Scale = value; }\n // ImVec2 DisplayOffset; // = (0.f,1.f) // Offset font rendering by xx pixels\n get DisplayOffset(): Bind.interface_ImVec2 { return this.native.DisplayOffset; }\n // ImVector Glyphs; // // All glyphs.\n get Glyphs(): ImVector {\n const glyphs = new ImVector();\n this.native.IterateGlyphs((glyph: Bind.reference_ImFontGlyph): void => {\n glyphs.push(new ImFontGlyph(glyph)); // TODO: wrap native\n });\n return glyphs;\n }\n // ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI).\n // get IndexAdvanceX(): any { return this.native.IndexAdvanceX; }\n // ImVector IndexLookup; // // Sparse. Index glyphs by Unicode code-point.\n // get IndexLookup(): any { return this.native.IndexLookup; }\n // const ImFontGlyph* FallbackGlyph; // == FindGlyph(FontFallbackChar)\n get FallbackGlyph(): ImFontGlyph | null {\n const glyph = this.native.FallbackGlyph;\n return glyph && new ImFontGlyph(glyph);\n }\n set FallbackGlyph(value: ImFontGlyph | null) {\n this.native.FallbackGlyph = value && value.internal as Bind.reference_ImFontGlyph;\n }\n // float FallbackAdvanceX; // == FallbackGlyph->AdvanceX\n get FallbackAdvanceX(): number { return this.native.FallbackAdvanceX; }\n // ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found. Only set via SetFallbackChar()\n get FallbackChar(): number { return this.native.FallbackChar; }\n\n // Members: Cold ~18/26 bytes\n // short ConfigDataCount; // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont.\n get ConfigDataCount(): number { return this.ConfigData.length; }\n // ImFontConfig* ConfigData; // // Pointer within ContainerAtlas->ConfigData\n get ConfigData(): ImFontConfig[] {\n const cfg_data: ImFontConfig[] = [];\n this.native.IterateConfigData((cfg: Bind.interface_ImFontConfig): void => {\n cfg_data.push(new ImFontConfig(cfg));\n });\n return cfg_data;\n }\n // ImFontAtlas* ContainerAtlas; // // What we has been loaded into\n get ContainerAtlas(): ImFontAtlas | null { return null; }\n // float Ascent, Descent; // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize]\n get Ascent(): number { return this.native.Ascent; }\n get Descent(): number { return this.native.Descent; }\n // int MetricsTotalSurface;// // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs)\n get MetricsTotalSurface(): number { return this.native.MetricsTotalSurface; }\n\n // Methods\n // IMGUI_API ImFont();\n // IMGUI_API ~ImFont();\n // IMGUI_API void ClearOutputData();\n public ClearOutputData(): void { return this.native.ClearOutputData(); }\n // IMGUI_API void BuildLookupTable();\n public BuildLookupTable(): void { return this.native.BuildLookupTable(); }\n // IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const;\n public FindGlyph(c: number): Readonly | null {\n const glyph: Readonly | null = this.native.FindGlyph(c);\n return glyph && new ImFontGlyph(glyph);\n }\n // IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const;\n public FindGlyphNoFallback(c: number): ImFontGlyph | null {\n const glyph: Readonly | null = this.native.FindGlyphNoFallback(c);\n return glyph && new ImFontGlyph(glyph);\n }\n // IMGUI_API void SetFallbackChar(ImWchar c);\n public SetFallbackChar(c: number): void { return this.native.SetFallbackChar(c); }\n // float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; }\n public GetCharAdvance(c: number): number { return this.native.GetCharAdvance(c); }\n // bool IsLoaded() const { return ContainerAtlas != NULL; }\n public IsLoaded(): boolean { return this.native.IsLoaded(); }\n // const char* GetDebugName() const { return ConfigData ? ConfigData->Name : \"\"; }\n public GetDebugName(): string { return this.native.GetDebugName(); }\n\n // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable.\n // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable.\n // IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8\n public CalcTextSizeA(size: number, max_width: number, wrap_width: number, text_begin: string, text_end: number | null = null, remaining: Bind.ImScalar | null = null): Bind.interface_ImVec2 {\n return this.native.CalcTextSizeA(size, max_width, wrap_width, text_end !== null ? text_begin.substring(0, text_end) : text_begin, remaining, new ImVec2());\n }\n // IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const;\n public CalcWordWrapPositionA(scale: number, text: string, text_end: number | null = null, wrap_width: number): number {\n return this.native.CalcWordWrapPositionA(scale, text_end !== null ? text.substring(0, text_end) : text, wrap_width);\n }\n // IMGUI_API void RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, unsigned short c) const;\n public RenderChar(draw_list: ImDrawList, size: number, pos: Readonly, col: Bind.ImU32, c: Bind.ImWchar): void {\n this.native.RenderChar(draw_list.native, size, pos, col, c);\n }\n // IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const;\n public RenderText(draw_list: ImDrawList, size: number, pos: Readonly, col: Bind.ImU32, clip_rect: Readonly, text_begin: string, text_end: number | null = null, wrap_width: number = 0.0, cpu_fine_clip: boolean = false): void {}\n\n // [Internal]\n // IMGUI_API void GrowIndex(int new_size);\n // IMGUI_API void AddGlyph(ImWchar c, float x0, float y0, float x1, float y1, float u0, float v0, float u1, float v1, float advance_x);\n // IMGUI_API void AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst = true); // Makes 'dst' character/glyph points to 'src' character/glyph. Currently needs to be called AFTER fonts have been built.\n\n // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS\n // typedef ImFontGlyph Glyph; // OBSOLETE 1.52+\n // #endif\n}\n\n// a script version of BindImGui.ImGuiStyle with matching interface\nclass script_ImGuiStyle implements Bind.interface_ImGuiStyle {\n public Alpha: number = 1.0;\n public WindowPadding: ImVec2 = new ImVec2(8, 8);\n public WindowRounding: number = 7.0;\n public WindowBorderSize: number = 0.0;\n public WindowMinSize: ImVec2 = new ImVec2(32, 32);\n public WindowTitleAlign: ImVec2 = new ImVec2(0.0, 0.5);\n public WindowMenuButtonPosition: ImGuiDir = ImGuiDir.Left;\n public ChildRounding: number = 0.0;\n public ChildBorderSize: number = 1.0;\n public PopupRounding: number = 0.0;\n public PopupBorderSize: number = 1.0;\n public FramePadding: ImVec2 = new ImVec2(4, 3);\n public FrameRounding: number = 0.0;\n public FrameBorderSize: number = 0.0;\n public ItemSpacing: ImVec2 = new ImVec2(8, 4);\n public ItemInnerSpacing: ImVec2 = new ImVec2(4, 4);\n public TouchExtraPadding: ImVec2 = new ImVec2(0, 0);\n public IndentSpacing: number = 21.0;\n public ColumnsMinSpacing: number = 6.0;\n public ScrollbarSize: number = 16.0;\n public ScrollbarRounding: number = 9.0;\n public GrabMinSize: number = 10.0;\n public GrabRounding: number = 0.0;\n public TabRounding: number = 0.0;\n public TabBorderSize: number = 0.0;\n public ButtonTextAlign: ImVec2 = new ImVec2(0.5, 0.5);\n public SelectableTextAlign: ImVec2 = new ImVec2(0.0, 0.0);\n public DisplayWindowPadding: ImVec2 = new ImVec2(22, 22);\n public DisplaySafeAreaPadding: ImVec2 = new ImVec2(4, 4);\n public MouseCursorScale: number = 1;\n public AntiAliasedLines: boolean = true;\n public AntiAliasedFill: boolean = true;\n public CurveTessellationTol: number = 1.25;\n private Colors: ImVec4[] = [];\n public _getAt_Colors(index: number): Bind.interface_ImVec4 { return this.Colors[index]; }\n public _setAt_Colors(index: number, color: Readonly): boolean { this.Colors[index].Copy(color); return true; }\n\n constructor() {\n for (let i = 0; i < ImGuiCol.COUNT; ++i) {\n this.Colors[i] = new ImVec4();\n }\n const _this = new ImGuiStyle(this);\n const native = new bind.ImGuiStyle();\n const _that = new ImGuiStyle(native);\n _that.Copy(_this);\n bind.StyleColorsClassic(native);\n _this.Copy(_that);\n native.delete();\n }\n\n public ScaleAllSizes(scale_factor: number): void {\n const _this = new ImGuiStyle(this);\n const native = new bind.ImGuiStyle();\n const _that = new ImGuiStyle(native);\n _that.Copy(_this);\n native.ScaleAllSizes(scale_factor);\n _this.Copy(_that);\n native.delete();\n }\n}\n\nexport class ImGuiStyle\n{\n constructor(public readonly internal: Bind.interface_ImGuiStyle = new script_ImGuiStyle()) {}\n\n get Alpha(): number { return this.internal.Alpha; } set Alpha(value: number) { this.internal.Alpha = value; }\n get WindowPadding(): Bind.interface_ImVec2 { return this.internal.WindowPadding; }\n get WindowRounding(): number { return this.internal.WindowRounding; } set WindowRounding(value: number) { this.internal.WindowRounding = value; }\n get WindowBorderSize(): number { return this.internal.WindowBorderSize; } set WindowBorderSize(value: number) { this.internal.WindowBorderSize = value; }\n get WindowMinSize(): Bind.interface_ImVec2 { return this.internal.WindowMinSize; }\n get WindowTitleAlign(): Bind.interface_ImVec2 { return this.internal.WindowTitleAlign; }\n get WindowMenuButtonPosition(): ImGuiDir { return this.internal.WindowMenuButtonPosition; } set WindowMenuButtonPosition(value: ImGuiDir) { this.internal.WindowMenuButtonPosition = value; }\n get ChildRounding(): number { return this.internal.ChildRounding; } set ChildRounding(value: number) { this.internal.ChildRounding = value; }\n get ChildBorderSize(): number { return this.internal.ChildBorderSize; } set ChildBorderSize(value: number) { this.internal.ChildBorderSize = value; }\n get PopupRounding(): number { return this.internal.PopupRounding; } set PopupRounding(value: number) { this.internal.PopupRounding = value; }\n get PopupBorderSize(): number { return this.internal.PopupBorderSize; } set PopupBorderSize(value: number) { this.internal.PopupBorderSize = value; }\n get FramePadding(): Bind.interface_ImVec2 { return this.internal.FramePadding; }\n get FrameRounding(): number { return this.internal.FrameRounding; } set FrameRounding(value: number) { this.internal.FrameRounding = value; }\n get FrameBorderSize(): number { return this.internal.FrameBorderSize; } set FrameBorderSize(value: number) { this.internal.FrameBorderSize = value; }\n get ItemSpacing(): Bind.interface_ImVec2 { return this.internal.ItemSpacing; }\n get ItemInnerSpacing(): Bind.interface_ImVec2 { return this.internal.ItemInnerSpacing; }\n get TouchExtraPadding(): Bind.interface_ImVec2 { return this.internal.TouchExtraPadding; }\n get IndentSpacing(): number { return this.internal.IndentSpacing; } set IndentSpacing(value: number) { this.internal.IndentSpacing = value; }\n get ColumnsMinSpacing(): number { return this.internal.ColumnsMinSpacing; } set ColumnsMinSpacing(value: number) { this.internal.ColumnsMinSpacing = value; }\n get ScrollbarSize(): number { return this.internal.ScrollbarSize; } set ScrollbarSize(value: number) { this.internal.ScrollbarSize = value; }\n get ScrollbarRounding(): number { return this.internal.ScrollbarRounding; } set ScrollbarRounding(value: number) { this.internal.ScrollbarRounding = value; }\n get GrabMinSize(): number { return this.internal.GrabMinSize; } set GrabMinSize(value: number) { this.internal.GrabMinSize = value; }\n get GrabRounding(): number { return this.internal.GrabRounding; } set GrabRounding(value: number) { this.internal.GrabRounding = value; }\n get TabRounding(): number { return this.internal.TabRounding; } set TabRounding(value: number) { this.internal.TabRounding = value; }\n get TabBorderSize(): number { return this.internal.TabBorderSize; } set TabBorderSize(value: number) { this.internal.TabBorderSize = value; }\n get ButtonTextAlign(): Bind.interface_ImVec2 { return this.internal.ButtonTextAlign; }\n get SelectableTextAlign(): Bind.interface_ImVec2 { return this.internal.SelectableTextAlign; }\n get DisplayWindowPadding(): Bind.interface_ImVec2 { return this.internal.DisplayWindowPadding; }\n get DisplaySafeAreaPadding(): Bind.interface_ImVec2 { return this.internal.DisplaySafeAreaPadding; }\n get MouseCursorScale(): number { return this.internal.MouseCursorScale; } set MouseCursorScale(value: number) { this.internal.MouseCursorScale = value; }\n get AntiAliasedLines(): boolean { return this.internal.AntiAliasedLines; } set AntiAliasedLines(value: boolean) { this.internal.AntiAliasedLines = value; }\n get AntiAliasedFill(): boolean { return this.internal.AntiAliasedFill; } set AntiAliasedFill(value: boolean) { this.internal.AntiAliasedFill = value; }\n get CurveTessellationTol(): number { return this.internal.CurveTessellationTol; } set CurveTessellationTol(value: number) { this.internal.CurveTessellationTol = value; }\n public Colors: Bind.interface_ImVec4[] = new Proxy([], {\n get: (target: Bind.interface_ImVec4[], key: PropertyKey): number | Bind.interface_ImVec4 => {\n if (key === \"length\") { return ImGuiCol.COUNT; }\n return this.internal._getAt_Colors(Number(key));\n },\n set: (target: Bind.interface_ImVec4[], key: PropertyKey, value: Readonly): boolean => {\n return this.internal._setAt_Colors(Number(key), value);\n },\n });\n\n public Copy(other: Readonly): this {\n this.Alpha = other.Alpha;\n this.WindowPadding.Copy(other.WindowPadding);\n this.WindowRounding = other.WindowRounding;\n this.WindowBorderSize = other.WindowBorderSize;\n this.WindowMinSize.Copy(other.WindowMinSize);\n this.WindowTitleAlign.Copy(other.WindowTitleAlign);\n this.WindowMenuButtonPosition = other.WindowMenuButtonPosition;\n this.ChildRounding = other.ChildRounding;\n this.ChildBorderSize = other.ChildBorderSize;\n this.PopupRounding = other.PopupRounding;\n this.PopupBorderSize = other.PopupBorderSize;\n this.FramePadding.Copy(other.FramePadding);\n this.FrameRounding = other.FrameRounding;\n this.FrameBorderSize = other.FrameBorderSize;\n this.ItemSpacing.Copy(other.ItemSpacing);\n this.ItemInnerSpacing.Copy(other.ItemInnerSpacing);\n this.TouchExtraPadding.Copy(other.TouchExtraPadding);\n this.IndentSpacing = other.IndentSpacing;\n this.ColumnsMinSpacing = other.ColumnsMinSpacing;\n this.ScrollbarSize = other.ScrollbarSize;\n this.ScrollbarRounding = other.ScrollbarRounding;\n this.GrabMinSize = other.GrabMinSize;\n this.GrabRounding = other.GrabRounding;\n this.TabRounding = other.TabRounding;\n this.TabBorderSize = other.TabBorderSize;\n this.ButtonTextAlign.Copy(other.ButtonTextAlign);\n this.DisplayWindowPadding.Copy(other.DisplayWindowPadding);\n this.DisplaySafeAreaPadding.Copy(other.DisplaySafeAreaPadding);\n this.MouseCursorScale = other.MouseCursorScale;\n this.AntiAliasedLines = other.AntiAliasedLines;\n this.AntiAliasedFill = other.AntiAliasedFill;\n this.CurveTessellationTol = other.CurveTessellationTol;\n for (let i = 0; i < ImGuiCol.COUNT; ++i) {\n this.Colors[i].Copy(other.Colors[i]);\n }\n return this;\n }\n\n public ScaleAllSizes(scale_factor: number): void { this.internal.ScaleAllSizes(scale_factor); }\n}\n\n// This is where your app communicate with Dear ImGui. Access via ImGui::GetIO().\n// Read 'Programmer guide' section in .cpp file for general usage.\nexport class ImGuiIO\n{\n constructor(public readonly native: Bind.reference_ImGuiIO) {}\n\n //------------------------------------------------------------------\n // Settings (fill once) // Default value:\n //------------------------------------------------------------------\n\n // ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc.\n get ConfigFlags(): ImGuiConfigFlags { return this.native.ConfigFlags; }\n set ConfigFlags(value: ImGuiConfigFlags) { this.native.ConfigFlags = value; }\n // ImGuiBackendFlags BackendFlags; // = 0 // Set ImGuiBackendFlags_ enum. Set by imgui_impl_xxx files or custom back-end to communicate features supported by the back-end.\n get BackendFlags(): ImGuiBackendFlags { return this.native.BackendFlags; }\n set BackendFlags(value: ImGuiBackendFlags) { this.native.BackendFlags = value; }\n // ImVec2 DisplaySize; // // Display size, in pixels. For clamping windows positions.\n get DisplaySize(): Bind.reference_ImVec2 { return this.native.DisplaySize; }\n // float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds.\n get DeltaTime(): number { return this.native.DeltaTime; }\n set DeltaTime(value: number) { this.native.DeltaTime = value; }\n // float IniSavingRate; // = 5.0f // Maximum time between saving positions/sizes to .ini file, in seconds.\n get IniSavingRate(): number { return this.native.IniSavingRate; }\n set IniSavingRate(value: number) { this.native.IniSavingRate = value; }\n // const char* IniFilename; // = \"imgui.ini\" // Path to .ini file. NULL to disable .ini saving.\n get IniFilename(): string { return this.native.IniFilename; }\n set IniFilename(value: string) { this.native.IniFilename = value; }\n // const char* LogFilename; // = \"imgui_log.txt\" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified).\n get LogFilename(): string { return this.native.LogFilename; }\n set LogFilename(value: string) { this.native.LogFilename = value; }\n // float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds.\n get MouseDoubleClickTime(): number { return this.native.MouseDoubleClickTime; }\n set MouseDoubleClickTime(value: number) { this.native.MouseDoubleClickTime = value; }\n // float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels.\n get MouseDoubleClickMaxDist(): number { return this.native.MouseDoubleClickMaxDist; }\n set MouseDoubleClickMaxDist(value: number) { this.native.MouseDoubleClickMaxDist = value; }\n // float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging\n get MouseDragThreshold(): number { return this.native.MouseDragThreshold; }\n set MouseDragThreshold(value: number) { this.native.MouseDragThreshold = value; }\n // int KeyMap[ImGuiKey_COUNT]; // // Map of indices into the KeysDown[512] entries array\n public KeyMap: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiKey.COUNT; }\n return this.native._getAt_KeyMap(Number(key));\n },\n set: (target: number[], key: PropertyKey, value: number): boolean => {\n return this.native._setAt_KeyMap(Number(key), value);\n },\n });\n // float KeyRepeatDelay; // = 0.250f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.).\n get KeyRepeatDelay(): number { return this.native.KeyRepeatDelay; }\n set KeyRepeatDelay(value: number) { this.native.KeyRepeatDelay = value; }\n // float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds.\n get KeyRepeatRate(): number { return this.native.KeyRepeatRate; }\n set KeyRepeatRate(value: number) { this.native.KeyRepeatRate = value; }\n // void* UserData; // = NULL // Store your own data for retrieval by callbacks.\n get UserData(): any { return this.native.UserData; }\n set UserData(value: any) { this.native.UserData = value; }\n\n // ImFontAtlas* Fonts; // // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array.\n get Fonts(): ImFontAtlas { return new ImFontAtlas(this.native.Fonts); }\n // float FontGlobalScale; // = 1.0f // Global scale all fonts\n get FontGlobalScale(): number { return this.native.FontGlobalScale; }\n set FontGlobalScale(value: number) { this.native.FontGlobalScale = value; }\n // bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel.\n get FontAllowUserScaling(): boolean { return this.native.FontAllowUserScaling; }\n set FontAllowUserScaling(value: boolean) { this.native.FontAllowUserScaling = value; }\n // ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0].\n get FontDefault(): ImFont | null {\n const font: Bind.reference_ImFont | null = this.native.FontDefault;\n return (font === null) ? null : new ImFont(font);\n }\n set FontDefault(value: ImFont | null) {\n this.native.FontDefault = value && value.native;\n }\n // ImVec2 DisplayFramebufferScale; // = (1.0f,1.0f) // For retina display or other situations where window coordinates are different from framebuffer coordinates. User storage only, presently not used by ImGui.\n get DisplayFramebufferScale(): Bind.reference_ImVec2 { return this.native.DisplayFramebufferScale; }\n\n // Miscellaneous configuration options\n // bool OptMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl\n get ConfigMacOSXBehaviors(): boolean { return this.native.ConfigMacOSXBehaviors; }\n set ConfigMacOSXBehaviors(value: boolean) { this.native.ConfigMacOSXBehaviors = value; }\n // bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor, for users who consider it annoying.\n get ConfigInputTextCursorBlink(): boolean { return this.native.ConfigInputTextCursorBlink; }\n set ConfigInputTextCursorBlink(value: boolean) { this.native.ConfigInputTextCursorBlink = value; }\n // bool ConfigWindowsResizeFromEdges; // = false // [BETA] Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be the ImGuiWindowFlags_ResizeFromAnySide flag)\n get ConfigWindowsResizeFromEdges(): boolean { return this.native.ConfigWindowsResizeFromEdges; }\n set ConfigWindowsResizeFromEdges(value: boolean) { this.native.ConfigWindowsResizeFromEdges = value; }\n // bool ConfigWindowsMoveFromTitleBarOnly;// = false // [BETA] Set to true to only allow moving windows when clicked+dragged from the title bar. Windows without a title bar are not affected.\n get ConfigWindowsMoveFromTitleBarOnly(): boolean { return this.native.ConfigWindowsMoveFromTitleBarOnly; }\n set ConfigWindowsMoveFromTitleBarOnly(value: boolean) { this.native.ConfigWindowsMoveFromTitleBarOnly = value; }\n\n //------------------------------------------------------------------\n // Settings (User Functions)\n //------------------------------------------------------------------\n\n // Optional: Platform/Renderer back-end name (informational only! will be displayed in About Window) + User data for back-end/wrappers to store their own stuff.\n // const char* BackendPlatformName; // = NULL\n get BackendPlatformName(): string | null { return this.native.BackendPlatformName; }\n set BackendPlatformName(value: string | null) { this.native.BackendPlatformName = value; }\n // const char* BackendRendererName; // = NULL\n get BackendRendererName(): string | null { return this.native.BackendRendererName; }\n set BackendRendererName(value: string | null) { this.native.BackendRendererName = value; }\n // void* BackendPlatformUserData; // = NULL\n get BackendPlatformUserData(): string | null { return this.native.BackendPlatformUserData; }\n set BackendPlatformUserData(value: string | null) { this.native.BackendPlatformUserData = value; }\n // void* BackendRendererUserData; // = NULL\n get BackendRendererUserData(): string | null { return this.native.BackendRendererUserData; }\n set BackendRendererUserData(value: string | null) { this.native.BackendRendererUserData = value; }\n // void* BackendLanguageUserData; // = NULL\n get BackendLanguageUserData(): string | null { return this.native.BackendLanguageUserData; }\n set BackendLanguageUserData(value: string | null) { this.native.BackendLanguageUserData = value; }\n\n // Optional: access OS clipboard\n // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures)\n // const char* (*GetClipboardTextFn)(void* user_data);\n get GetClipboardTextFn(): ((user_data: any) => string) | null { return this.native.GetClipboardTextFn; }\n set GetClipboardTextFn(value: ((user_data: any) => string) | null) { this.native.GetClipboardTextFn = value; }\n // void (*SetClipboardTextFn)(void* user_data, const char* text);\n get SetClipboardTextFn(): ((user_data: any, text: string) => void) | null { return this.native.SetClipboardTextFn; }\n set SetClipboardTextFn(value: ((user_data: any, text: string) => void) | null) { this.native.SetClipboardTextFn = value; }\n // void* ClipboardUserData;\n get ClipboardUserData(): any { return this.native.ClipboardUserData; }\n set ClipboardUserData(value: any) { this.native.ClipboardUserData = value; }\n\n // Optional: override memory allocations. MemFreeFn() may be called with a NULL pointer.\n // (default to posix malloc/free)\n // void* (*MemAllocFn)(size_t sz);\n // void (*MemFreeFn)(void* ptr);\n\n // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME in Windows)\n // (default to use native imm32 api on Windows)\n // void (*ImeSetInputScreenPosFn)(int x, int y);\n // void* ImeWindowHandle; // (Windows) Set this to your HWND to get automatic IME cursor positioning.\n\n //------------------------------------------------------------------\n // Input - Fill before calling NewFrame()\n //------------------------------------------------------------------\n\n // ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX,-FLT_MAX) if mouse is unavailable (on another screen, etc.)\n get MousePos(): Bind.reference_ImVec2 { return this.native.MousePos; }\n // bool MouseDown[5]; // Mouse buttons: left, right, middle + extras. ImGui itself mostly only uses left button (BeginPopupContext** are using right button). Others buttons allows us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API.\n public MouseDown: boolean[] = new Proxy([], {\n get: (target: boolean[], key: PropertyKey): number | boolean => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseDown(Number(key));\n },\n set: (target: boolean[], key: PropertyKey, value: boolean): boolean => {\n return this.native._setAt_MouseDown(Number(key), value);\n },\n });\n // float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text.\n public get MouseWheel(): number { return this.native.MouseWheel; }\n public set MouseWheel(value: number) { this.native.MouseWheel = value; }\n // float MouseWheelH; // Mouse wheel (Horizontal). Most users don't have a mouse with an horizontal wheel, may not be filled by all back-ends.\n public get MouseWheelH(): number { return this.native.MouseWheelH; }\n public set MouseWheelH(value: number) { this.native.MouseWheelH = value; }\n // bool MouseDrawCursor; // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor).\n get MouseDrawCursor(): boolean { return this.native.MouseDrawCursor; } set MouseDrawCursor(value: boolean) { this.native.MouseDrawCursor = value; }\n // bool KeyCtrl; // Keyboard modifier pressed: Control\n get KeyCtrl(): boolean { return this.native.KeyCtrl; } set KeyCtrl(value: boolean) { this.native.KeyCtrl = value; }\n // bool KeyShift; // Keyboard modifier pressed: Shift\n get KeyShift(): boolean { return this.native.KeyShift; } set KeyShift(value: boolean) { this.native.KeyShift = value; }\n // bool KeyAlt; // Keyboard modifier pressed: Alt\n get KeyAlt(): boolean { return this.native.KeyAlt; } set KeyAlt(value: boolean) { this.native.KeyAlt = value; }\n // bool KeySuper; // Keyboard modifier pressed: Cmd/Super/Windows\n get KeySuper(): boolean { return this.native.KeySuper; } set KeySuper(value: boolean) { this.native.KeySuper = value; }\n // bool KeysDown[512]; // Keyboard keys that are pressed (in whatever storage order you naturally have access to keyboard data)\n public KeysDown: boolean[] = new Proxy([], {\n get: (target: boolean[], key: PropertyKey): number | boolean => {\n if (key === \"length\") { return 512; }\n return this.native._getAt_KeysDown(Number(key));\n },\n set: (target: boolean[], key: PropertyKey, value: boolean): boolean => {\n return this.native._setAt_KeysDown(Number(key), value);\n },\n });\n // float NavInputs[ImGuiNavInput_COUNT]; // Gamepad inputs (keyboard keys will be auto-mapped and be written here by ImGui::NewFrame)\n public NavInputs: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiNavInput.COUNT; }\n return this.native._getAt_NavInputs(Number(key));\n },\n set: (target: number[], key: PropertyKey, value: number): boolean => {\n return this.native._setAt_NavInputs(Number(key), value);\n },\n });\n\n // Functions\n // IMGUI_API void AddInputCharacter(ImWchar c); // Add new character into InputCharacters[]\n public AddInputCharacter(c: number): void { this.native.AddInputCharacter(c); }\n // IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Add new characters into InputCharacters[] from an UTF-8 string\n public AddInputCharactersUTF8(utf8_chars: string): void { this.native.AddInputCharactersUTF8(utf8_chars); }\n // inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Clear the text input buffer manually\n public ClearInputCharacters(): void { this.native.ClearInputCharacters(); }\n\n //------------------------------------------------------------------\n // Output - Retrieve after calling NewFrame()\n //------------------------------------------------------------------\n\n // bool WantCaptureMouse; // When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. This is set by ImGui when it wants to use your mouse (e.g. unclicked mouse is hovering a window, or a widget is active).\n get WantCaptureMouse(): boolean { return this.native.WantCaptureMouse; } set WantCaptureMouse(value: boolean) { this.native.WantCaptureMouse = value; }\n // bool WantCaptureKeyboard; // When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. This is set by ImGui when it wants to use your keyboard inputs.\n get WantCaptureKeyboard(): boolean { return this.native.WantCaptureKeyboard; } set WantCaptureKeyboard(value: boolean) { this.native.WantCaptureKeyboard = value; }\n // bool WantTextInput; // Mobile/console: when io.WantTextInput is true, you may display an on-screen keyboard. This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active).\n get WantTextInput(): boolean { return this.native.WantTextInput; } set WantTextInput(value: boolean) { this.native.WantTextInput = value; }\n // bool WantSetMousePos; // [BETA-NAV] MousePos has been altered, back-end should reposition mouse on next frame. Set only when 'NavMovesMouse=true'.\n get WantSetMousePos(): boolean { return this.native.WantSetMousePos; } set WantSetMousePos(value: boolean) { this.native.WantSetMousePos = value; }\n // bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. IMPORTANT: You need to clear io.WantSaveIniSettings yourself.\n get WantSaveIniSettings(): boolean { return this.native.WantSaveIniSettings; } set WantSaveIniSettings(value: boolean) { this.native.WantSaveIniSettings = value; }\n // bool NavActive; // Directional navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag.\n get NavActive(): boolean { return this.native.NavActive; } set NavActive(value: boolean) { this.native.NavActive = value; }\n // bool NavVisible; // Directional navigation is visible and allowed (will handle ImGuiKey_NavXXX events).\n get NavVisible(): boolean { return this.native.NavVisible; } set NavVisible(value: boolean) { this.native.NavVisible = value; }\n // float Framerate; // Application framerate estimation, in frame per second. Solely for convenience. Rolling average estimation based on IO.DeltaTime over 120 frames\n get Framerate(): number { return this.native.Framerate; }\n // int MetricsRenderVertices; // Vertices output during last call to Render()\n get MetricsRenderVertices(): number { return this.native.MetricsRenderVertices; }\n // int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3\n get MetricsRenderIndices(): number { return this.native.MetricsRenderIndices; }\n // int MetricsRenderWindows; // Number of visible windows\n get MetricsRenderWindows(): number { return this.native.MetricsRenderWindows; }\n // int MetricsActiveWindows; // Number of visible root windows (exclude child windows)\n get MetricsActiveWindows(): number { return this.native.MetricsActiveWindows; }\n // int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts.\n get MetricsActiveAllocations(): number { return this.native.MetricsActiveAllocations; }\n // ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta.\n get MouseDelta(): Readonly { return this.native.MouseDelta; }\n\n //------------------------------------------------------------------\n // [Internal] ImGui will maintain those fields. Forward compatibility not guaranteed!\n //------------------------------------------------------------------\n\n // ImVec2 MousePosPrev; // Previous mouse position temporary storage (nb: not for public use, set to MousePos in NewFrame())\n // ImVec2 MouseClickedPos[5]; // Position at time of clicking\n public MouseClickedPos: Array> = new Proxy([], {\n get: (target: Array>, key: PropertyKey): number | Readonly => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseClickedPos(Number(key));\n },\n });\n // float MouseClickedTime[5]; // Time of last click (used to figure out double-click)\n // bool MouseClicked[5]; // Mouse button went from !Down to Down\n // bool MouseDoubleClicked[5]; // Has mouse button been double-clicked?\n // bool MouseReleased[5]; // Mouse button went from Down to !Down\n // bool MouseDownOwned[5]; // Track if button was clicked inside a window. We don't request mouse capture from the application if click started outside ImGui bounds.\n // float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked)\n public MouseDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseDownDuration(Number(key));\n },\n });\n // float MouseDownDurationPrev[5]; // Previous time the mouse button has been down\n // ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point\n // float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point\n // float KeysDownDuration[512]; // Duration the keyboard key has been down (0.0f == just pressed)\n public KeysDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return 512; }\n return this.native._getAt_KeysDownDuration(Number(key));\n },\n });\n // float KeysDownDurationPrev[512]; // Previous duration the key has been down\n // float NavInputsDownDuration[ImGuiNavInput_COUNT];\n public NavInputsDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiNavInput.COUNT; }\n return this.native._getAt_NavInputsDownDuration(Number(key));\n },\n });\n // float NavInputsDownDurationPrev[ImGuiNavInput_COUNT];\n\n // IMGUI_API ImGuiIO();\n}\n\nconst _texturesById: Array = [];\n\n// Context creation and access, if you want to use multiple context, share context between modules (e.g. DLL).\n// All contexts share a same ImFontAtlas by default. If you want different font atlas, you can new() them and overwrite the GetIO().Fonts variable of an ImGui context.\n// All those functions are not reliant on the current context.\nexport class ImGuiContext {\n public static current_ctx: ImGuiContext | null = null;\n public static getTexture(index: number): ImTextureID | null {\n return _texturesById[index] || null;\n }\n public static setTexture(texture: ImTextureID | null): number {\n let index = _texturesById.indexOf(texture);\n if (index === -1) {\n for (let i = 0; i < _texturesById.length; ++i) {\n if (_texturesById[i] === null) {\n _texturesById[i] = texture;\n return i;\n }\n }\n index = _texturesById.length;\n _texturesById.push(texture);\n }\n return index;\n }\n\n constructor(public readonly native: Bind.WrapImGuiContext) {}\n}\n// IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL);\nexport function CreateContext(shared_font_atlas: ImFontAtlas | null = null): ImGuiContext | null {\n const ctx: ImGuiContext = new ImGuiContext(bind.CreateContext(shared_font_atlas ? shared_font_atlas.native : null));\n if (ImGuiContext.current_ctx === null) {\n ImGuiContext.current_ctx = ctx;\n }\n return ctx;\n}\n// IMGUI_API void DestroyContext(ImGuiContext* ctx = NULL); // NULL = Destroy current context\nexport function DestroyContext(ctx: ImGuiContext | null = null): void {\n if (ctx === null) {\n ctx = ImGuiContext.current_ctx;\n ImGuiContext.current_ctx = null;\n }\n bind.DestroyContext((ctx === null) ? null : ctx.native);\n}\n// IMGUI_API ImGuiContext* GetCurrentContext();\nexport function GetCurrentContext(): ImGuiContext | null {\n // const ctx_native: BindImGui.ImGuiContext | null = bind.GetCurrentContext();\n return ImGuiContext.current_ctx;\n}\n// IMGUI_API void SetCurrentContext(ImGuiContext* ctx);\nexport function SetCurrentContext(ctx: ImGuiContext | null): void {\n bind.SetCurrentContext((ctx === null) ? null : ctx.native);\n ImGuiContext.current_ctx = ctx;\n}\n\n// IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert);\nexport function DebugCheckVersionAndDataLayout(version_str: string, sz_io: number, sz_style: number, sz_vec2: number, sz_vec4: number, sz_draw_vert: number, sz_draw_idx: number): boolean {\n return bind.DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx);\n}\n\n// Main\n// IMGUI_API ImGuiIO& GetIO();\nexport function GetIO(): ImGuiIO { return new ImGuiIO(bind.GetIO()); }\n// IMGUI_API ImGuiStyle& GetStyle();\nexport function GetStyle(): ImGuiStyle { return new ImGuiStyle(bind.GetStyle()); }\n// IMGUI_API void NewFrame(); // start a new ImGui frame, you can submit any command from this point until Render()/EndFrame().\nexport function NewFrame(): void { bind.NewFrame(); }\n// IMGUI_API void EndFrame(); // ends the ImGui frame. automatically called by Render(), so most likely don't need to ever call that yourself directly. If you don't need to render you may call EndFrame() but you'll have wasted CPU already. If you don't need to render, better to not create any imgui windows instead!\nexport function EndFrame(): void { bind.EndFrame(); }\n// IMGUI_API void Render(); // ends the ImGui frame, finalize the draw data, then call your io.RenderDrawListsFn() function if set.\nexport function Render(): void { bind.Render(); }\n// IMGUI_API ImDrawData* GetDrawData(); // same value as passed to your io.RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame()\nexport function GetDrawData(): ImDrawData | null {\n const draw_data: Bind.reference_ImDrawData | null = bind.GetDrawData();\n return (draw_data === null) ? null : new ImDrawData(draw_data);\n}\n\n// Demo, Debug, Informations\n// IMGUI_API void ShowDemoWindow(bool* p_open = NULL); // create demo/test window (previously called ShowTestWindow). demonstrate most ImGui features. call this to learn about the library! try to make it always available in your application!\nexport function ShowDemoWindow(p_open: Bind.ImScalar | null = null): void { bind.ShowDemoWindow(p_open); }\n// IMGUI_API void ShowAboutWindow(bool* p_open = NULL); // create about window. display Dear ImGui version, credits and build/system information.\nexport function ShowAboutWindow(p_open: Bind.ImScalar | Bind.ImAccess | null = null): void {\n if (p_open === null) {\n bind.ShowAboutWindow(null);\n } else if (Array.isArray(p_open)) {\n bind.ShowAboutWindow(p_open);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n bind.ShowAboutWindow(ref_open);\n p_open(ref_open[0]);\n }\n}\n// IMGUI_API void ShowMetricsWindow(bool* p_open = NULL); // create metrics window. display ImGui internals: draw commands (with individual draw calls and vertices), window list, basic internal state, etc.\nexport function ShowMetricsWindow(p_open: Bind.ImScalar | Bind.ImAccess | null = null): void {\n if (p_open === null) {\n bind.ShowMetricsWindow(null);\n } else if (Array.isArray(p_open)) {\n bind.ShowMetricsWindow(p_open);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n bind.ShowMetricsWindow(ref_open);\n p_open(ref_open[0]);\n }\n}\n// IMGUI_API void ShowStyleEditor(ImGuiStyle* ref = NULL); // add style editor block (not a window). you can pass in a reference ImGuiStyle structure to compare to, revert to and save to (else it uses the default style)\nexport function ShowStyleEditor(ref: ImGuiStyle | null = null): void {\n if (ref === null) {\n bind.ShowStyleEditor(null);\n } else if (ref.internal instanceof bind.ImGuiStyle) {\n bind.ShowStyleEditor(ref.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(ref);\n bind.ShowStyleEditor(native);\n ref.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API bool ShowStyleSelector(const char* label);\nexport function ShowStyleSelector(label: string): boolean { return bind.ShowStyleSelector(label); }\n// IMGUI_API void ShowFontSelector(const char* label);\nexport function ShowFontSelector(label: string): void { bind.ShowFontSelector(label); }\n// IMGUI_API void ShowUserGuide(); // add basic help/info block (not a window): how to manipulate ImGui as a end-user (mouse/keyboard controls).\nexport function ShowUserGuide(): void { bind.ShowUserGuide(); }\n// IMGUI_API const char* GetVersion();\nexport function GetVersion(): string { return bind.GetVersion(); }\n\n// Styles\n// IMGUI_API void StyleColorsClassic(ImGuiStyle* dst = NULL);\nexport function StyleColorsClassic(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsClassic(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsClassic(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsClassic(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API void StyleColorsDark(ImGuiStyle* dst = NULL);\nexport function StyleColorsDark(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsDark(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsDark(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsDark(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API void StyleColorsLight(ImGuiStyle* dst = NULL);\nexport function StyleColorsLight(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsLight(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsLight(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsLight(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n\n// Window\n// IMGUI_API bool Begin(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); // push window to the stack and start appending to it. see .cpp for details. return false when window is collapsed, so you can early out in your code. 'bool* p_open' creates a widget on the upper-right to close the window (which sets your bool to false).\nexport function Begin(name: string, open: Bind.ImScalar | Bind.ImAccess | null = null, flags: ImGuiWindowFlags = 0): boolean {\n if (open === null) {\n return bind.Begin(name, null, flags);\n } else if (Array.isArray(open)) {\n return bind.Begin(name, open, flags);\n } else {\n const ref_open: Bind.ImScalar = [ open() ];\n const opened: boolean = bind.Begin(name, ref_open, flags);\n open(ref_open[0]);\n return opened;\n }\n}\n// IMGUI_API void End(); // finish appending to current window, pop it off the window stack.\nexport function End(): void { bind.End(); }\n// IMGUI_API bool BeginChild(const char* str_id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags extra_flags = 0); // begin a scrolling region. size==0.0f: use remaining window size, size<0.0f: use remaining window size minus abs(size). size>0.0f: fixed size. each axis can use a different mode, e.g. ImVec2(0,400).\n// IMGUI_API bool BeginChild(ImGuiID id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags extra_flags = 0); // \"\nexport function BeginChild(id: string | Bind.ImGuiID, size: Readonly = ImVec2.ZERO, border: boolean = false, extra_flags: ImGuiWindowFlags = 0): boolean {\n return bind.BeginChild(id, size, border, extra_flags);\n}\n// IMGUI_API void EndChild();\nexport function EndChild(): void { bind.EndChild(); }\n// IMGUI_API ImVec2 GetContentRegionMax(); // current content boundaries (typically window boundaries including scrolling, or current column boundaries), in windows coordinates\nexport function GetContentRegionMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetContentRegionMax(out);\n}\n// IMGUI_API ImVec2 GetContentRegionAvail(); // == GetContentRegionMax() - GetCursorPos()\nexport function GetContentRegionAvail(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetContentRegionAvail(out);\n}\n// IMGUI_API ImVec2 GetWindowContentRegionMin(); // content boundaries min (roughly (0,0)-Scroll), in window coordinates\nexport function GetWindowContentRegionMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowContentRegionMin(out);\n}\n// IMGUI_API ImVec2 GetWindowContentRegionMax(); // content boundaries max (roughly (0,0)+Size-Scroll) where Size can be override with SetNextWindowContentSize(), in window coordinates\nexport function GetWindowContentRegionMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowContentRegionMax(out);\n}\n// IMGUI_API float GetWindowContentRegionWidth(); //\nexport function GetWindowContentRegionWidth(): number { return bind.GetWindowContentRegionWidth(); }\n// IMGUI_API ImDrawList* GetWindowDrawList(); // get rendering command-list if you want to append your own draw primitives\nexport function GetWindowDrawList(): ImDrawList {\n return new ImDrawList(bind.GetWindowDrawList());\n}\n// IMGUI_API ImVec2 GetWindowPos(); // get current window position in screen space (useful if you want to do your own drawing via the DrawList api)\nexport function GetWindowPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowPos(out);\n}\n// IMGUI_API ImVec2 GetWindowSize(); // get current window size\nexport function GetWindowSize(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowSize(out);\n}\n// IMGUI_API float GetWindowWidth();\nexport function GetWindowWidth(): number { return bind.GetWindowWidth(); }\n// IMGUI_API float GetWindowHeight();\nexport function GetWindowHeight(): number { return bind.GetWindowHeight(); }\n// IMGUI_API bool IsWindowCollapsed();\nexport function IsWindowCollapsed(): boolean { return bind.IsWindowCollapsed(); }\n// IMGUI_API bool IsWindowAppearing();\nexport function IsWindowAppearing(): boolean { return bind.IsWindowAppearing(); }\n// IMGUI_API void SetWindowFontScale(float scale); // per-window font scale. Adjust IO.FontGlobalScale if you want to scale all windows\nexport function SetWindowFontScale(scale: number): void { bind.SetWindowFontScale(scale); }\n\n// IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivot = ImVec2(0,0)); // set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc.\nexport function SetNextWindowPos(pos: Readonly, cond: ImGuiCond = 0, pivot: Readonly = ImVec2.ZERO): void {\n bind.SetNextWindowPos(pos, cond, pivot);\n}\n// IMGUI_API void SetNextWindowSize(const ImVec2& size, ImGuiCond cond = 0); // set next window size. set axis to 0.0f to force an auto-fit on this axis. call before Begin()\nexport function SetNextWindowSize(pos: Readonly, cond: ImGuiCond = 0): void {\n bind.SetNextWindowSize(pos, cond);\n}\n// IMGUI_API void SetNextWindowSizeConstraints(const ImVec2& size_min, const ImVec2& size_max, ImGuiSizeConstraintCallback custom_callback = NULL, void* custom_callback_data = NULL); // set next window size limits. use -1,-1 on either X/Y axis to preserve the current size. Use callback to apply non-trivial programmatic constraints.\nexport function SetNextWindowSizeConstraints(size_min: Readonly, size_max: Readonly, custom_callback: ImGuiSizeConstraintCallback | null = null, custom_callback_data: any = null): void {\n if (custom_callback) {\n bind.SetNextWindowSizeConstraints(size_min, size_max, (data: Bind.reference_ImGuiSizeCallbackData): void => {\n custom_callback(new ImGuiSizeCallbackData(data, custom_callback_data));\n }, null);\n } else {\n bind.SetNextWindowSizeConstraints(size_min, size_max, null, null);\n }\n}\n// IMGUI_API void SetNextWindowContentSize(const ImVec2& size); // set next window content size (~ enforce the range of scrollbars). not including window decorations (title bar, menu bar, etc.). set an axis to 0.0f to leave it automatic. call before Begin()\nexport function SetNextWindowContentSize(size: Readonly): void {\n bind.SetNextWindowContentSize(size);\n}\n// IMGUI_API void SetNextWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // set next window collapsed state. call before Begin()\nexport function SetNextWindowCollapsed(collapsed: boolean, cond: ImGuiCond = 0): void {\n bind.SetNextWindowCollapsed(collapsed, cond);\n}\n// IMGUI_API void SetNextWindowFocus(); // set next window to be focused / front-most. call before Begin()\nexport function SetNextWindowFocus(): void { bind.SetNextWindowFocus(); }\n// IMGUI_API void SetNextWindowBgAlpha(float alpha); // set next window background color alpha. helper to easily modify ImGuiCol_WindowBg/ChildBg/PopupBg.\nexport function SetNextWindowBgAlpha(alpha: number): void { bind.SetNextWindowBgAlpha(alpha); }\n// IMGUI_API void SetWindowPos(const ImVec2& pos, ImGuiCond cond = 0); // (not recommended) set current window position - call within Begin()/End(). prefer using SetNextWindowPos(), as this may incur tearing and side-effects.\n// IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); // (not recommended) set current window size - call within Begin()/End(). set to ImVec2(0,0) to force an auto-fit. prefer using SetNextWindowSize(), as this may incur tearing and minor side-effects.\n// IMGUI_API void SetWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // (not recommended) set current window collapsed state. prefer using SetNextWindowCollapsed().\n// IMGUI_API void SetWindowFocus(); // (not recommended) set current window to be focused / front-most. prefer using SetNextWindowFocus().\n// IMGUI_API void SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond = 0); // set named window position.\n// IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); // set named window size. set axis to 0.0f to force an auto-fit on this axis.\n// IMGUI_API void SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond = 0); // set named window collapsed state\n// IMGUI_API void SetWindowFocus(const char* name); // set named window to be focused / front-most. use NULL to remove focus.\nexport function SetWindowPos(name_or_pos: string | Readonly, pos_or_cond: Readonly | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_pos) === \"string\") {\n bind.SetWindowNamePos(name_or_pos, pos_or_cond as Readonly, cond);\n return;\n } else {\n bind.SetWindowPos(name_or_pos, pos_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowSize(name_or_size: string | Readonly, size_or_cond: Readonly | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_size) === \"string\") {\n bind.SetWindowNamePos(name_or_size, size_or_cond as Readonly, cond);\n } else {\n bind.SetWindowSize(name_or_size, size_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowCollapsed(name_or_collapsed: string | boolean, collapsed_or_cond: boolean | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_collapsed) === \"string\") {\n bind.SetWindowNameCollapsed(name_or_collapsed, collapsed_or_cond as boolean, cond);\n } else {\n bind.SetWindowCollapsed(name_or_collapsed, collapsed_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowFocus(name?: string): void {\n if (typeof(name) === \"string\") {\n bind.SetWindowNameFocus(name);\n } else {\n bind.SetWindowFocus();\n }\n}\n\n// IMGUI_API float GetScrollX(); // get scrolling amount [0..GetScrollMaxX()]\nexport function GetScrollX(): number { return bind.GetScrollX(); }\n// IMGUI_API float GetScrollY(); // get scrolling amount [0..GetScrollMaxY()]\nexport function GetScrollY(): number { return bind.GetScrollY(); }\n// IMGUI_API float GetScrollMaxX(); // get maximum scrolling amount ~~ ContentSize.X - WindowSize.X\nexport function GetScrollMaxX(): number { return bind.GetScrollMaxX(); }\n// IMGUI_API float GetScrollMaxY(); // get maximum scrolling amount ~~ ContentSize.Y - WindowSize.Y\nexport function GetScrollMaxY(): number { return bind.GetScrollMaxY(); }\n// IMGUI_API void SetScrollX(float scroll_x); // set scrolling amount [0..GetScrollMaxX()]\nexport function SetScrollX(scroll_x: number): void { bind.SetScrollX(scroll_x); }\n// IMGUI_API void SetScrollY(float scroll_y); // set scrolling amount [0..GetScrollMaxY()]\nexport function SetScrollY(scroll_y: number): void { bind.SetScrollY(scroll_y); }\n// IMGUI_API void SetScrollHereY(float center_y_ratio = 0.5f); // adjust scrolling amount to make current cursor position visible. center_y_ratio=0.0: top, 0.5: center, 1.0: bottom. When using to make a \"default/current item\" visible, consider using SetItemDefaultFocus() instead.\nexport function SetScrollHereY(center_y_ratio: number = 0.5): void {\n bind.SetScrollHereY(center_y_ratio);\n}\n// IMGUI_API void SetScrollFromPosY(float pos_y, float center_y_ratio = 0.5f); // adjust scrolling amount to make given position valid. use GetCursorPos() or GetCursorStartPos()+offset to get valid positions.\nexport function SetScrollFromPosY(pos_y: number, center_y_ratio: number = 0.5): void {\n bind.SetScrollFromPosY(pos_y, center_y_ratio);\n}\n// IMGUI_API void SetStateStorage(ImGuiStorage* tree); // replace tree state storage with our own (if you want to manipulate it yourself, typically clear subsection of it)\n// IMGUI_API ImGuiStorage* GetStateStorage();\n\n// Parameters stacks (shared)\n// IMGUI_API void PushFont(ImFont* font); // use NULL as a shortcut to push default font\nexport function PushFont(font: ImFont | null): void { bind.PushFont(font ? font.native : null); }\n// IMGUI_API void PopFont();\nexport function PopFont(): void { bind.PopFont(); }\n// IMGUI_API void PushStyleColor(ImGuiCol idx, ImU32 col);\n// IMGUI_API void PushStyleColor(ImGuiCol idx, const ImVec4& col);\nexport function PushStyleColor(idx: ImGuiCol, col: Bind.ImU32 | Readonly | Readonly): void {\n if (col instanceof ImColor) {\n bind.PushStyleColor(idx, col.Value);\n } else {\n bind.PushStyleColor(idx, col as (Bind.ImU32 | Readonly));\n }\n}\n// IMGUI_API void PopStyleColor(int count = 1);\nexport function PopStyleColor(count: number = 1): void {\n bind.PopStyleColor(count);\n}\n// IMGUI_API void PushStyleVar(ImGuiStyleVar idx, float val);\n// IMGUI_API void PushStyleVar(ImGuiStyleVar idx, const ImVec2& val);\nexport function PushStyleVar(idx: ImGuiStyleVar, val: number | Readonly): void {\n bind.PushStyleVar(idx, val);\n}\n// IMGUI_API void PopStyleVar(int count = 1);\nexport function PopStyleVar(count: number = 1): void {\n bind.PopStyleVar(count);\n}\n// IMGUI_API const ImVec4& GetStyleColorVec4(ImGuiCol idx); // retrieve style color as stored in ImGuiStyle structure. use to feed back into PushStyleColor(), otherwhise use GetColorU32() to get style color + style alpha.\nexport function GetStyleColorVec4(idx: ImGuiCol): Readonly {\n return bind.GetStyleColorVec4(idx);\n}\n// IMGUI_API ImFont* GetFont(); // get current font\nexport function GetFont(): ImFont {\n return new ImFont(bind.GetFont());\n}\n// IMGUI_API float GetFontSize(); // get current font size (= height in pixels) of current font with current scale applied\nexport function GetFontSize(): number { return bind.GetFontSize(); }\n// IMGUI_API ImVec2 GetFontTexUvWhitePixel(); // get UV coordinate for a while pixel, useful to draw custom shapes via the ImDrawList API\nexport function GetFontTexUvWhitePixel(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetFontTexUvWhitePixel(out);\n}\n// IMGUI_API ImU32 GetColorU32(ImGuiCol idx, float alpha_mul = 1.0f); // retrieve given style color with style alpha applied and optional extra alpha multiplier\n// IMGUI_API ImU32 GetColorU32(const ImVec4& col); // retrieve given color with style alpha applied\n// IMGUI_API ImU32 GetColorU32(ImU32 col); // retrieve given color with style alpha applied\nexport function GetColorU32(idx: ImGuiCol, alpha_mul?: number): Bind.ImU32;\nexport function GetColorU32(col: Readonly): Bind.ImU32;\nexport function GetColorU32(col: Bind.ImU32): Bind.ImU32;\nexport function GetColorU32(...args: any[]): Bind.ImU32 {\n if (args.length === 1) {\n if (typeof(args[0]) === \"number\") {\n // TODO: ImGuiCol or ImU32\n const idx: ImGuiCol = args[0];\n return bind.GetColorU32_A(idx, 1.0);\n } else {\n const col: Readonly = args[0];\n return bind.GetColorU32_B(col);\n }\n } else {\n const idx: ImGuiCol = args[0];\n const alpha_mul: number = args[1];\n return bind.GetColorU32_A(idx, alpha_mul);\n }\n}\n\n// Parameters stacks (current window)\n// IMGUI_API void PushItemWidth(float item_width); // width of items for the common item+label case, pixels. 0.0f = default to ~2/3 of windows width, >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)\nexport function PushItemWidth(item_width: number): void { bind.PushItemWidth(item_width); }\n// IMGUI_API void PopItemWidth();\nexport function PopItemWidth(): void { bind.PopItemWidth(); }\n// IMGUI_API float CalcItemWidth(); // width of item given pushed settings and current cursor position\nexport function SetNextItemWidth(item_width: number): void { bind.SetNextItemWidth(item_width); } // set width of the _next_ common large \"item+label\" widget. >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)\nexport function CalcItemWidth(): number { return bind.CalcItemWidth(); }\n// IMGUI_API void PushTextWrapPos(float wrap_pos_x = 0.0f); // word-wrapping for Text*() commands. < 0.0f: no wrapping; 0.0f: wrap to end of window (or column); > 0.0f: wrap at 'wrap_pos_x' position in window local space\nexport function PushTextWrapPos(wrap_pos_x: number = 0.0): void {\n bind.PushTextWrapPos(wrap_pos_x);\n}\n// IMGUI_API void PopTextWrapPos();\nexport function PopTextWrapPos(): void { bind.PopTextWrapPos(); }\n// IMGUI_API void PushAllowKeyboardFocus(bool allow_keyboard_focus); // allow focusing using TAB/Shift-TAB, enabled by default but you can disable it for certain widgets\nexport function PushAllowKeyboardFocus(allow_keyboard_focus: boolean): void { bind.PushAllowKeyboardFocus(allow_keyboard_focus); }\n// IMGUI_API void PopAllowKeyboardFocus();\nexport function PopAllowKeyboardFocus(): void { bind.PopAllowKeyboardFocus(); }\n// IMGUI_API void PushButtonRepeat(bool repeat); // in 'repeat' mode, Button*() functions return repeated true in a typematic manner (using io.KeyRepeatDelay/io.KeyRepeatRate setting). Note that you can call IsItemActive() after any Button() to tell if the button is held in the current frame.\nexport function PushButtonRepeat(repeat: boolean): void { bind.PushButtonRepeat(repeat); }\n// IMGUI_API void PopButtonRepeat();\nexport function PopButtonRepeat(): void { bind.PopButtonRepeat(); }\n\n// Cursor / Layout\n// IMGUI_API void Separator(); // separator, generally horizontal. inside a menu bar or in horizontal layout mode, this becomes a vertical separator.\nexport function Separator(): void { bind.Separator(); }\n// IMGUI_API void SameLine(float pos_x = 0.0f, float spacing_w = -1.0f); // call between widgets or groups to layout them horizontally\nexport function SameLine(pos_x: number = 0.0, spacing_w: number = -1.0): void {\n bind.SameLine(pos_x, spacing_w);\n}\n// IMGUI_API void NewLine(); // undo a SameLine()\nexport function NewLine(): void { bind.NewLine(); }\n// IMGUI_API void Spacing(); // add vertical spacing\nexport function Spacing(): void { bind.Spacing(); }\n// IMGUI_API void Dummy(const ImVec2& size); // add a dummy item of given size\nexport function Dummy(size: Readonly): void { bind.Dummy(size); }\n// IMGUI_API void Indent(float indent_w = 0.0f); // move content position toward the right, by style.IndentSpacing or indent_w if != 0\nexport function Indent(indent_w: number = 0.0) { bind.Indent(indent_w); }\n// IMGUI_API void Unindent(float indent_w = 0.0f); // move content position back to the left, by style.IndentSpacing or indent_w if != 0\nexport function Unindent(indent_w: number = 0.0) { bind.Unindent(indent_w); }\n// IMGUI_API void BeginGroup(); // lock horizontal starting position + capture group bounding box into one \"item\" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.)\nexport function BeginGroup(): void { bind.BeginGroup(); }\n// IMGUI_API void EndGroup();\nexport function EndGroup(): void { bind.EndGroup(); }\n// IMGUI_API ImVec2 GetCursorPos(); // cursor position is relative to window position\nexport function GetCursorPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorPos(out); }\n// IMGUI_API float GetCursorPosX(); // \"\nexport function GetCursorPosX(): number { return bind.GetCursorPosX(); }\n// IMGUI_API float GetCursorPosY(); // \"\nexport function GetCursorPosY(): number { return bind.GetCursorPosY(); }\n// IMGUI_API void SetCursorPos(const ImVec2& local_pos); // \"\nexport function SetCursorPos(local_pos: Readonly): void { bind.SetCursorPos(local_pos); }\n// IMGUI_API void SetCursorPosX(float x); // \"\nexport function SetCursorPosX(x: number): void { bind.SetCursorPosX(x); }\n// IMGUI_API void SetCursorPosY(float y); // \"\nexport function SetCursorPosY(y: number): void { bind.SetCursorPosY(y); }\n// IMGUI_API ImVec2 GetCursorStartPos(); // initial cursor position\nexport function GetCursorStartPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorStartPos(out); }\n// IMGUI_API ImVec2 GetCursorScreenPos(); // cursor position in absolute screen coordinates [0..io.DisplaySize] (useful to work with ImDrawList API)\nexport function GetCursorScreenPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorScreenPos(out); }\n// IMGUI_API void SetCursorScreenPos(const ImVec2& pos); // cursor position in absolute screen coordinates [0..io.DisplaySize]\nexport function SetCursorScreenPos(pos: Readonly): void { bind.SetCursorScreenPos(pos); }\n// IMGUI_API void AlignTextToFramePadding(); // vertically align/lower upcoming text to FramePadding.y so that it will aligns to upcoming widgets (call if you have text on a line before regular widgets)\nexport function AlignTextToFramePadding(): void { bind.AlignTextToFramePadding(); }\n// IMGUI_API float GetTextLineHeight(); // ~ FontSize\nexport function GetTextLineHeight(): number { return bind.GetTextLineHeight(); }\n// IMGUI_API float GetTextLineHeightWithSpacing(); // ~ FontSize + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of text)\nexport function GetTextLineHeightWithSpacing(): number { return bind.GetTextLineHeightWithSpacing(); }\n// IMGUI_API float GetFrameHeight(); // ~ FontSize + style.FramePadding.y * 2\nexport function GetFrameHeight(): number { return bind.GetFrameHeight(); }\n// IMGUI_API float GetFrameHeightWithSpacing(); // ~ FontSize + style.FramePadding.y * 2 + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of framed widgets)\nexport function GetFrameHeightWithSpacing(): number { return bind.GetFrameHeightWithSpacing(); }\n\n// Columns\n// You can also use SameLine(pos_x) for simplified columns. The columns API is still work-in-progress and rather lacking.\n// IMGUI_API void Columns(int count = 1, const char* id = NULL, bool border = true);\nexport function Columns(count: number = 1, id: string | null = null, border: boolean = true): void {\n id = id || \"\";\n bind.Columns(count, id, border);\n}\n// IMGUI_API void NextColumn(); // next column, defaults to current row or next row if the current row is finished\nexport function NextColumn(): void { bind.NextColumn(); }\n// IMGUI_API int GetColumnIndex(); // get current column index\nexport function GetColumnIndex(): number { return bind.GetColumnIndex(); }\n// IMGUI_API float GetColumnWidth(int column_index = -1); // get column width (in pixels). pass -1 to use current column\nexport function GetColumnWidth(column_index: number = -1): number {\n return bind.GetColumnWidth(column_index);\n}\n// IMGUI_API void SetColumnWidth(int column_index, float width); // set column width (in pixels). pass -1 to use current column\nexport function SetColumnWidth(column_index: number, width: number): void { bind.SetColumnWidth(column_index, width); }\n// IMGUI_API float GetColumnOffset(int column_index = -1); // get position of column line (in pixels, from the left side of the contents region). pass -1 to use current column, otherwise 0..GetColumnsCount() inclusive. column 0 is typically 0.0f\nexport function GetColumnOffset(column_index: number = -1): number {\n return bind.GetColumnOffset(column_index);\n}\n// IMGUI_API void SetColumnOffset(int column_index, float offset_x); // set position of column line (in pixels, from the left side of the contents region). pass -1 to use current column\nexport function SetColumnOffset(column_index: number, offset_x: number): void { bind.SetColumnOffset(column_index, offset_x); }\n// IMGUI_API int GetColumnsCount();\nexport function GetColumnsCount(): number { return bind.GetColumnsCount(); }\n\n// ID scopes\n// If you are creating widgets in a loop you most likely want to push a unique identifier (e.g. object pointer, loop index) so ImGui can differentiate them.\n// You can also use the \"##foobar\" syntax within widget label to distinguish them from each others. Read \"A primer on the use of labels/IDs\" in the FAQ for more details.\n// IMGUI_API void PushID(const char* str_id); // push identifier into the ID stack. IDs are hash of the entire stack!\n// IMGUI_API void PushID(const char* str_id_begin, const char* str_id_end);\n// IMGUI_API void PushID(const void* ptr_id);\n// IMGUI_API void PushID(int int_id);\nexport function PushID(id: string | number): void { bind.PushID(id); }\n// IMGUI_API void PopID();\nexport function PopID(): void { bind.PopID(); }\n// IMGUI_API ImGuiID GetID(const char* str_id); // calculate unique ID (hash of whole ID stack + given parameter). e.g. if you want to query into ImGuiStorage yourself\n// IMGUI_API ImGuiID GetID(const char* str_id_begin, const char* str_id_end);\n// IMGUI_API ImGuiID GetID(const void* ptr_id);\nexport function GetID(id: string | number): Bind.ImGuiID { return bind.GetID(id); }\n\n// Widgets: Text\n// IMGUI_API void TextUnformatted(const char* text, const char* text_end = NULL); // raw text without formatting. Roughly equivalent to Text(\"%s\", text) but: A) doesn't require null terminated string if 'text_end' is specified, B) it's faster, no memory copy is done, no buffer size limits, recommended for long chunks of text.\nexport function TextUnformatted(text: string, text_end: number | null = null): void { bind.TextUnformatted(text_end !== null ? text.substring(0, text_end) : text); }\n// IMGUI_API void Text(const char* fmt, ...) IM_FMTARGS(1); // simple formatted text\n// IMGUI_API void TextV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function Text(fmt: string/*, ...args: any[]*/): void { bind.Text(fmt/*, ...args*/); }\n// IMGUI_API void TextColored(const ImVec4& col, const char* fmt, ...) IM_FMTARGS(2); // shortcut for PushStyleColor(ImGuiCol_Text, col); Text(fmt, ...); PopStyleColor();\n// IMGUI_API void TextColoredV(const ImVec4& col, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function TextColored(col: Readonly | Readonly, fmt: string/*, ...args: any[]*/): void {\n bind.TextColored((col instanceof ImColor) ? col.Value : col as Readonly, fmt/*, ...args*/);\n}\n// IMGUI_API void TextDisabled(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushStyleColor(ImGuiCol_Text, style.Colors[ImGuiCol_TextDisabled]); Text(fmt, ...); PopStyleColor();\n// IMGUI_API void TextDisabledV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function TextDisabled(fmt: string/*, ...args: any[]*/): void { bind.TextDisabled(fmt/*, ...args*/); }\n// IMGUI_API void TextWrapped(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize().\n// IMGUI_API void TextWrappedV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function TextWrapped(fmt: string/*, ...args: any[]*/): void { bind.TextWrapped(fmt/*, ...args*/); }\n// IMGUI_API void LabelText(const char* label, const char* fmt, ...) IM_FMTARGS(2); // display text+label aligned the same way as value+label widgets\n// IMGUI_API void LabelTextV(const char* label, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function LabelText(label: string, fmt: string/*, ...args: any[]*/): void { bind.LabelText(label, fmt/*, ...args*/); }\n// IMGUI_API void BulletText(const char* fmt, ...) IM_FMTARGS(1); // shortcut for Bullet()+Text()\n// IMGUI_API void BulletTextV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function BulletText(fmt: string/*, ...args: any[]*/): void { bind.BulletText(fmt/*, ...args*/); }\n// IMGUI_API void Bullet(); // draw a small circle and keep the cursor on the same line. advance cursor x position by GetTreeNodeToLabelSpacing(), same distance that TreeNode() uses\nexport function Bullet(): void { bind.Bullet(); }\n\n// Widgets: Main\n// IMGUI_API bool Button(const char* label, const ImVec2& size = ImVec2(0,0)); // button\nexport function Button(label: string, size: Readonly = ImVec2.ZERO): boolean {\n return bind.Button(label, size);\n}\n// IMGUI_API bool SmallButton(const char* label); // button with FramePadding=(0,0) to easily embed within text\nexport function SmallButton(label: string): boolean { return bind.SmallButton(label); }\n// IMGUI_API bool ArrowButton(const char* str_id, ImGuiDir dir); // square button with an arrow shape\nexport function ArrowButton(str_id: string, dir: ImGuiDir): boolean { return bind.ArrowButton(str_id, dir); }\n// IMGUI_API bool InvisibleButton(const char* str_id, const ImVec2& size); // button behavior without the visuals, useful to build custom behaviors using the public api (along with IsItemActive, IsItemHovered, etc.)\nexport function InvisibleButton(str_id: string, size: Readonly): boolean {\n return bind.InvisibleButton(str_id, size);\n}\n// IMGUI_API void Image(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0,0), const ImVec2& uv1 = ImVec2(1,1), const ImVec4& tint_col = ImVec4(1,1,1,1), const ImVec4& border_col = ImVec4(0,0,0,0));\nexport function Image(user_texture_id: ImTextureID | null, size: Readonly, uv0: Readonly = ImVec2.ZERO, uv1: Readonly = ImVec2.UNIT, tint_col: Readonly = ImVec4.WHITE, border_col: Readonly = ImVec4.ZERO): void {\n bind.Image(ImGuiContext.setTexture(user_texture_id), size, uv0, uv1, tint_col, border_col);\n}\n// IMGUI_API bool ImageButton(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0,0), const ImVec2& uv1 = ImVec2(1,1), int frame_padding = -1, const ImVec4& bg_col = ImVec4(0,0,0,0), const ImVec4& tint_col = ImVec4(1,1,1,1)); // <0 frame_padding uses default frame padding settings. 0 for no padding\nexport function ImageButton(user_texture_id: ImTextureID | null, size: Readonly, uv0: Readonly = ImVec2.ZERO, uv1: Readonly = ImVec2.UNIT, frame_padding: number = -1, bg_col: Readonly = ImVec4.ZERO, tint_col: Readonly = ImVec4.WHITE): boolean {\n return bind.ImageButton(ImGuiContext.setTexture(user_texture_id), size, uv0, uv1, frame_padding, bg_col, tint_col);\n}\n// IMGUI_API bool Checkbox(const char* label, bool* v);\nexport function Checkbox(label: string, v: Bind.ImScalar | Bind.ImAccess): boolean {\n if (Array.isArray(v)) {\n return bind.Checkbox(label, v);\n } else {\n const ref_v: Bind.ImScalar = [ v() ];\n const ret = bind.Checkbox(label, ref_v);\n v(ref_v[0]);\n return ret;\n }\n}\n// IMGUI_API bool CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value);\nexport function CheckboxFlags(label: string, flags: Bind.ImAccess | Bind.ImScalar, flags_value: number): boolean {\n if (Array.isArray(flags)) {\n return bind.CheckboxFlags(label, flags, flags_value);\n } else {\n const ref_flags: Bind.ImScalar = [ flags() ];\n const ret = bind.CheckboxFlags(label, ref_flags, flags_value);\n flags(ref_flags[0]);\n return ret;\n }\n}\n// IMGUI_API bool RadioButton(const char* label, bool active);\n// IMGUI_API bool RadioButton(const char* label, int* v, int v_button);\nexport function RadioButton(label: string, active: boolean): boolean;\nexport function RadioButton(label: string, v: Bind.ImAccess | Bind.ImScalar, v_button: number): boolean;\nexport function RadioButton(label: string, ...args: any[]): boolean {\n if (typeof(args[0]) === \"boolean\") {\n const active: boolean = args[0];\n return bind.RadioButton_A(label, active);\n } else {\n const v: Bind.ImAccess | Bind.ImScalar = args[0];\n const v_button: number = args[1];\n const _v: Bind.ImScalar = Array.isArray(v) ? v : [ v() ];\n const ret = bind.RadioButton_B(label, _v, v_button);\n if (!Array.isArray(v)) { v(_v[0]); }\n return ret;\n }\n}\n// IMGUI_API void PlotLines(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), int stride = sizeof(float));\n// IMGUI_API void PlotLines(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));\nexport type PlotLinesValueGetter = (data: any, idx: number) => number;\nexport function PlotLines(label: string, values: ArrayLike, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly, stride?: number): void;\nexport function PlotLines(label: string, values_getter: PlotLinesValueGetter, data: any, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly): void;\nexport function PlotLines(label: string, ...args: any[]): void {\n if (Array.isArray(args[0])) {\n const values: ArrayLike = args[0];\n const values_getter: PlotLinesValueGetter = (data: any, idx: number): number => values[idx * stride];\n const values_count: number = typeof(args[1]) === \"number\" ? args[1] : values.length;\n const values_offset: number = typeof(args[2]) === \"number\" ? args[2] : 0;\n const overlay_text: string | null = typeof(args[3]) === \"string\" ? args[3] : null;\n const scale_min: number = typeof(args[4]) === \"number\" ? args[4] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const graph_size: Readonly = args[6] || ImVec2.ZERO;\n const stride: number = typeof(args[7]) === \"number\" ? args[7] : 1;\n bind.PlotLines(label, values_getter, null, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n } else {\n const values_getter: PlotLinesValueGetter = args[0];\n const data: any = args[1];\n const values_count: number = args[2];\n const values_offset: number = typeof(args[3]) === \"number\" ? args[3] : 0;\n const overlay_text: string | null = typeof(args[4]) === \"string\" ? args[4] : null;\n const scale_min: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[6]) === \"number\" ? args[6] : Number.MAX_VALUE;\n const graph_size: Readonly = args[7] || ImVec2.ZERO;\n bind.PlotLines(label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n }\n}\n// IMGUI_API void PlotHistogram(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), int stride = sizeof(float));\n// IMGUI_API void PlotHistogram(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));\nexport type PlotHistogramValueGetter = (data: any, idx: number) => number;\nexport function PlotHistogram(label: string, values: ArrayLike, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly, stride?: number): void;\nexport function PlotHistogram(label: string, values_getter: PlotHistogramValueGetter, data: any, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly): void;\nexport function PlotHistogram(label: string, ...args: any[]): void {\n if (Array.isArray(args[0])) {\n const values: ArrayLike = args[0];\n const values_getter: PlotHistogramValueGetter = (data: any, idx: number): number => values[idx * stride];\n const values_count: number = typeof(args[1]) === \"number\" ? args[1] : values.length;\n const values_offset: number = typeof(args[2]) === \"number\" ? args[2] : 0;\n const overlay_text: string | null = typeof(args[3]) === \"string\" ? args[3] : null;\n const scale_min: number = typeof(args[4]) === \"number\" ? args[4] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const graph_size: Readonly = args[6] || ImVec2.ZERO;\n const stride: number = typeof(args[7]) === \"number\" ? args[7] : 1;\n bind.PlotHistogram(label, values_getter, null, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n } else {\n const values_getter: PlotHistogramValueGetter = args[0];\n const data: any = args[1];\n const values_count: number = args[2];\n const values_offset: number = typeof(args[3]) === \"number\" ? args[3] : 0;\n const overlay_text: string | null = typeof(args[4]) === \"string\" ? args[4] : null;\n const scale_min: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[6]) === \"number\" ? args[6] : Number.MAX_VALUE;\n const graph_size: Readonly = args[7] || ImVec2.ZERO;\n bind.PlotHistogram(label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n }\n}\n// IMGUI_API void ProgressBar(float fraction, const ImVec2& size_arg = ImVec2(-1,0), const char* overlay = NULL);\nexport function ProgressBar(fraction: number, size_arg: Readonly = new ImVec2(-1, 0), overlay: string | null = null): void {\n bind.ProgressBar(fraction, size_arg, overlay);\n}\n\n// Widgets: Combo Box\n// The new BeginCombo()/EndCombo() api allows you to manage your contents and selection state however you want it.\n// The old Combo() api are helpers over BeginCombo()/EndCombo() which are kept available for convenience purpose.\n// IMGUI_API bool BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags = 0);\nexport function BeginCombo(label: string, preview_value: string | null = null, flags: ImGuiComboFlags = 0): boolean {\n return bind.BeginCombo(label, preview_value, flags);\n}\n// IMGUI_API void EndCombo();\nexport function EndCombo(): void { bind.EndCombo(); }\n// IMGUI_API bool Combo(const char* label, int* current_item, const char* const items[], int items_count, int popup_max_height_in_items = -1);\n// IMGUI_API bool Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int popup_max_height_in_items = -1); // Separate items with \\0 within a string, end item-list with \\0\\0. e.g. \"One\\0Two\\0Three\\0\"\n// IMGUI_API bool Combo(const char* label, int* current_item, bool(*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int popup_max_height_in_items = -1);\nexport type ComboValueGetter = (data: any, idx: number, out_text: [string]) => boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items: string[], items_count?: number, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_separated_by_zeros: string, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_getter: ComboValueGetter, data: any, items_count: number, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, ...args: any[]): boolean {\n let ret = false;\n const _current_item: Bind.ImScalar = Array.isArray(current_item) ? current_item : [ current_item() ];\n if (Array.isArray(args[0])) {\n const items: string[] = args[0];\n const items_count = typeof(args[1]) === \"number\" ? args[1] : items.length;\n const popup_max_height_in_items: number = typeof(args[2]) === \"number\" ? args[2] : -1;\n const items_getter = (data: any, idx: number, out_text: [string]): boolean => { out_text[0] = items[idx]; return true; };\n ret = bind.Combo(label, _current_item, items_getter, null, items_count, popup_max_height_in_items);\n } else if (typeof(args[0]) === \"string\") {\n const items_separated_by_zeros: string = args[0]\n const popup_max_height_in_items: number = typeof(args[1]) === \"number\" ? args[1] : -1;\n const items: string[] = items_separated_by_zeros.replace(/^\\0+|\\0+$/g, \"\").split(\"\\0\");\n const items_count: number = items.length;\n const items_getter = (data: any, idx: number, out_text: [string]): boolean => { out_text[0] = items[idx]; return true; };\n ret = bind.Combo(label, _current_item, items_getter, null, items_count, popup_max_height_in_items);\n } else {\n const items_getter: (data: any, idx: number, out_text: [string]) => boolean = args[0];\n const data: any = args[1];\n const items_count = args[2];\n const popup_max_height_in_items: number = typeof(args[3]) === \"number\" ? args[3] : -1;\n ret = bind.Combo(label, _current_item, items_getter, data, items_count, popup_max_height_in_items);\n }\n if (!Array.isArray(current_item)) { current_item(_current_item[0]); }\n return ret;\n}\n\n// Widgets: Drags (tip: ctrl+click on a drag box to input with keyboard. manually input values aren't clamped, can go off-bounds)\n// For all the Float2/Float3/Float4/Int2/Int3/Int4 versions of every functions, note that a 'float v[X]' function argument is the same as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. You can pass address of your first element out of a contiguous set, e.g. &myvector.x\n// IMGUI_API bool DragFloat(const char* label, float* v, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f); // If v_min >= v_max we have no bound\nexport function DragFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string | null = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.DragFloat(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat2(const char* label, float v[2], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | ImVec2, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.DragFloat2(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.DragFloat3(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat4(const char* label, float v[4], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat4(label: string, v: XYZW | Bind.ImTuple4 | ImVec4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.DragFloat4(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", const char* display_format_max = NULL, float power = 1.0f);\nexport function DragFloatRange2(label: string, v_current_min: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_current_max: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", display_format_max: string | null = null, power: number = 1.0): boolean {\n const _v_current_min = import_Scalar(v_current_min);\n const _v_current_max = import_Scalar(v_current_max);\n const ret = bind.DragFloatRange2(label, _v_current_min, _v_current_max, v_speed, v_min, v_max, display_format, display_format_max, power);\n export_Scalar(_v_current_min, v_current_min);\n export_Scalar(_v_current_max, v_current_max);\n return ret;\n}\n// IMGUI_API bool DragInt(const char* label, int* v, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = \"%d\"); // If v_min >= v_max we have no bound\nexport function DragInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.DragInt(label, _v, v_speed, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt2(const char* label, int v[2], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector2(v);\n const ret = bind.DragInt2(label, _v, v_speed, v_min, v_max, format);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt3(const char* label, int v[3], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector3(v);\n const ret = bind.DragInt3(label, _v, v_speed, v_min, v_max, format);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt4(const char* label, int v[4], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt4(label: string, v: XYZW | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector4(v);\n const ret = bind.DragInt4(label, _v, v_speed, v_min, v_max, format);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = \"%.0f\", const char* display_format_max = NULL);\nexport function DragIntRange2(label: string, v_current_min: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_current_max: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\", format_max: string | null = null): boolean {\n const _v_current_min = import_Scalar(v_current_min);\n const _v_current_max = import_Scalar(v_current_max);\n const ret = bind.DragIntRange2(label, _v_current_min, _v_current_max, v_speed, v_min, v_max, format, format_max);\n export_Scalar(_v_current_min, v_current_min);\n export_Scalar(_v_current_max, v_current_max);\n return ret;\n}\n// IMGUI_API bool DragScalar(const char* label, ImGuiDataType data_type, void* v, float v_speed, const void* v_min = NULL, const void* v_max = NULL, const char* format = NULL, float power = 1.0f);\n// IMGUI_API bool DragScalarN(const char* label, ImGuiDataType data_type, void* v, int components, float v_speed, const void* v_min = NULL, const void* v_max = NULL, const char* format = NULL, float power = 1.0f);\nexport function DragScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, v_speed: number, v_min: number | null = null, v_max: number | null = null, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.DragScalar(label, ImGuiDataType.S8, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.DragScalar(label, ImGuiDataType.U8, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.DragScalar(label, ImGuiDataType.S16, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.DragScalar(label, ImGuiDataType.U16, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.DragScalar(label, ImGuiDataType.S32, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.DragScalar(label, ImGuiDataType.U32, v, v_speed, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.DragScalar(label, ImGuiDataType.S64, v, v_speed, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.DragScalar(label, ImGuiDataType.U64, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.DragScalar(label, ImGuiDataType.Float, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.DragScalar(label, ImGuiDataType.Double, v, v_speed, v_min, v_max, format, power); }\n throw new Error();\n}\n\n// Widgets: Input with Keyboard\n// IMGUI_API bool InputText(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputText(label: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputText(label, buf, buf_size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputText(label, ref_buf, _buf_size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputText(label, ref_buf, buf_size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputTextWithHint(const char* label, const char* hint, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputTextWithHint(label: string, hint: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputTextWithHint(label, hint, buf, buf_size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputTextWithHint(label, hint, ref_buf, _buf_size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputTextWithHint(label, hint, ref_buf, buf_size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputTextMultiline(const char* label, char* buf, size_t buf_size, const ImVec2& size = ImVec2(0,0), ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputTextMultiline(label: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, size: Readonly = ImVec2.ZERO, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputTextMultiline(label, buf, buf_size, size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputTextMultiline(label, ref_buf, _buf_size, size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputTextMultiline(label, ref_buf, buf_size, size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputFloat(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 0.0, step_fast: number = 0.0, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputFloat(label, _v, step, step_fast, format, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat2(const char* label, float v[2], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.InputFloat2(label, _v, format, extra_flags);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat3(const char* label, float v[3], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.InputFloat3(label, _v, format, extra_flags);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat4(const char* label, float v[4], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat4(label: string, v: XYZW | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.InputFloat4(label, _v, format, extra_flags);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt(const char* label, int* v, int step = 1, int step_fast = 100, ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 1, step_fast: number = 100, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputInt(label, _v, step, step_fast, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt2(const char* label, int v[2], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.InputInt2(label, _v, extra_flags);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt3(const char* label, int v[3], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.InputInt3(label, _v, extra_flags);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt4(const char* label, int v[4], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt4(label: string, v: XYZW | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.InputInt4(label, _v, extra_flags);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool InputDouble(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = \"%.6f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputDouble(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 0.0, step_fast: number = 0.0, format: string = \"%.6f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputDouble(label, _v, step, step_fast, format, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputScalar(const char* label, ImGuiDataType data_type, void* v, const void* step = NULL, const void* step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags extra_flags = 0);\n// IMGUI_API bool InputScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* step = NULL, const void* step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags extra_flags = 0);\nexport function InputScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, step: number | null = null, step_fast: number | null = null, format: string | null = null, extra_flags: ImGuiInputTextFlags = 0): boolean {\n if (v instanceof Int8Array) { return bind.InputScalar(label, ImGuiDataType.S8, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint8Array) { return bind.InputScalar(label, ImGuiDataType.U8, v, step, step_fast, format, extra_flags); }\n if (v instanceof Int16Array) { return bind.InputScalar(label, ImGuiDataType.S16, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint16Array) { return bind.InputScalar(label, ImGuiDataType.U16, v, step, step_fast, format, extra_flags); }\n if (v instanceof Int32Array) { return bind.InputScalar(label, ImGuiDataType.S32, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint32Array) { return bind.InputScalar(label, ImGuiDataType.U32, v, step, step_fast, format, extra_flags); }\n // if (v instanceof Int64Array) { return bind.InputScalar(label, ImGuiDataType.S64, v, step, step_fast, format, extra_flags); }\n // if (v instanceof Uint64Array) { return bind.InputScalar(label, ImGuiDataType.U64, v, step, step_fast, format, extra_flags); }\n if (v instanceof Float32Array) { return bind.InputScalar(label, ImGuiDataType.Float, v, step, step_fast, format, extra_flags); }\n if (v instanceof Float64Array) { return bind.InputScalar(label, ImGuiDataType.Double, v, step, step_fast, format, extra_flags); }\n throw new Error();\n}\n\n// Widgets: Sliders (tip: ctrl+click on a slider to input with keyboard. manually input values aren't clamped, can go off-bounds)\n// IMGUI_API bool SliderFloat(const char* label, float* v, float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f); // adjust format to decorate the value with a prefix or a suffix for in-slider labels or unit display. Use power!=1.0 for logarithmic sliders\nexport function SliderFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.SliderFloat(label, _v, v_min, v_max, format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec2, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.SliderFloat2(label, _v, v_min, v_max, format, power);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.SliderFloat3(label, _v, v_min, v_max, format, power);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat4(label: string, v: XYZW | Bind.ImTuple4 | XYZW, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.SliderFloat4(label, _v, v_min, v_max, format, power);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderAngle(const char* label, float* v_rad, float v_degrees_min = -360.0f, float v_degrees_max = +360.0f);\nexport function SliderAngle(label: string, v_rad: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_degrees_min: number = -360.0, v_degrees_max: number = +360.0): boolean {\n const _v_rad = import_Scalar(v_rad);\n const ret = bind.SliderAngle(label, _v_rad, v_degrees_min, v_degrees_max);\n export_Scalar(_v_rad, v_rad);\n return ret;\n}\nexport function SliderAngle3(label: string, v_rad: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_degrees_min: number = -360.0, v_degrees_max: number = +360.0): boolean {\n const _v_rad = import_Vector3(v_rad);\n _v_rad[0] = Math.floor(_v_rad[0] * 180 / Math.PI);\n _v_rad[1] = Math.floor(_v_rad[1] * 180 / Math.PI);\n _v_rad[2] = Math.floor(_v_rad[2] * 180 / Math.PI);\n const ret = bind.SliderInt3(label, _v_rad, v_degrees_min, v_degrees_max, \"%d deg\");\n _v_rad[0] = _v_rad[0] * Math.PI / 180;\n _v_rad[1] = _v_rad[1] * Math.PI / 180;\n _v_rad[2] = _v_rad[2] * Math.PI / 180;\n export_Vector3(_v_rad, v_rad);\n return ret;\n}\n// IMGUI_API bool SliderInt(const char* label, int* v, int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.SliderInt(label, _v, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector2(v);\n const ret = bind.SliderInt2(label, _v, v_min, v_max, format);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt3(const char* label, int v[3], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector3(v);\n const ret = bind.SliderInt3(label, _v, v_min, v_max, format);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt4(const char* label, int v[4], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt4(label: string, v: XYZW | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector4(v);\n const ret = bind.SliderInt4(label, _v, v_min, v_max, format);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderScalar(const char* label, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\n// IMGUI_API bool SliderScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\nexport function SliderScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, v_min: number, v_max: number, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.SliderScalar(label, ImGuiDataType.S8, v, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.SliderScalar(label, ImGuiDataType.U8, v, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.SliderScalar(label, ImGuiDataType.S16, v, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.SliderScalar(label, ImGuiDataType.U16, v, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.SliderScalar(label, ImGuiDataType.S32, v, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.SliderScalar(label, ImGuiDataType.U32, v, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.SliderScalar(label, ImGuiDataType.S64, v, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.SliderScalar(label, ImGuiDataType.U64, v, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.SliderScalar(label, ImGuiDataType.Float, v, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.SliderScalar(label, ImGuiDataType.Double, v, v_min, v_max, format, power); }\n throw new Error();\n}\n// IMGUI_API bool VSliderFloat(const char* label, const ImVec2& size, float* v, float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function VSliderFloat(label: string, size: Readonly, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.VSliderFloat(label, size, _v, v_min, v_max, format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, const char* format = \"%d\");\nexport function VSliderInt(label: string, size: Readonly, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.VSliderInt(label, size, _v, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool VSliderScalar(const char* label, const ImVec2& size, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\nexport function VSliderScalar(label: string, size: Readonly, data_type: ImGuiDataType, v: Bind.ImAccess | Bind.ImScalar, v_min: number, v_max: number, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S8, v, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U8, v, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S16, v, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U16, v, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S32, v, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U32, v, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S64, v, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U64, v, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.Float, v, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.Double, v, v_min, v_max, format, power); }\n throw new Error();\n}\n\n// Widgets: Color Editor/Picker (tip: the ColorEdit* functions have a little colored preview square that can be left-clicked to open a picker, and right-clicked to open an option menu.)\n// Note that a 'float v[X]' function argument is the same as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. You can the pass the address of a first float element out of a contiguous structure, e.g. &myvector.x\n// IMGUI_API bool ColorEdit3(const char* label, float col[3], ImGuiColorEditFlags flags = 0);\nexport function ColorEdit3(label: string, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color3(col);\n const ret = bind.ColorEdit3(label, _col, flags);\n export_Color3(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags = 0);\nexport function ColorEdit4(label: string, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color4(col);\n const ret = bind.ColorEdit4(label, _col, flags);\n export_Color4(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorPicker3(const char* label, float col[3], ImGuiColorEditFlags flags = 0);\nexport function ColorPicker3(label: string, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color3(col);\n const ret = bind.ColorPicker3(label, _col, flags);\n export_Color3(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags flags = 0, const float* ref_col = NULL);\nexport function ColorPicker4(label: string, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0, ref_col: Bind.ImTuple4 | Bind.interface_ImVec4 | null = null): boolean {\n const _col = import_Color4(col);\n const _ref_col = ref_col ? import_Color4(ref_col) : null;\n const ret = bind.ColorPicker4(label, _col, flags, _ref_col);\n export_Color4(_col, col);\n if (_ref_col && ref_col) { export_Color4(_ref_col, ref_col); }\n return ret;\n}\n// IMGUI_API bool ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFlags flags = 0, ImVec2 size = ImVec2(0,0)); // display a colored square/button, hover for details, return true when pressed.\nexport function ColorButton(desc_id: string, col: Readonly, flags: ImGuiColorEditFlags = 0, size: Readonly = ImVec2.ZERO): boolean {\n return bind.ColorButton(desc_id, col, flags, size);\n}\n// IMGUI_API void SetColorEditOptions(ImGuiColorEditFlags flags); // initialize current options (generally on application startup) if you want to select a default format, picker type, etc. User will be able to change many settings, unless you pass the _NoOptions flag to your calls.\nexport function SetColorEditOptions(flags: ImGuiColorEditFlags): void {\n bind.SetColorEditOptions(flags);\n}\n\n// Widgets: Trees\n// IMGUI_API bool TreeNode(const char* label); // if returning 'true' the node is open and the tree id is pushed into the id stack. user is responsible for calling TreePop().\n// IMGUI_API bool TreeNode(const char* str_id, const char* fmt, ...) IM_FMTARGS(2); // read the FAQ about why and how to use ID. to align arbitrary text at the same level as a TreeNode() you can use Bullet().\n// IMGUI_API bool TreeNode(const void* ptr_id, const char* fmt, ...) IM_FMTARGS(2); // \"\n// IMGUI_API bool TreeNodeV(const char* str_id, const char* fmt, va_list args) IM_FMTLIST(2);\n// IMGUI_API bool TreeNodeV(const void* ptr_id, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function TreeNode(label: string): boolean;\nexport function TreeNode(label: string, fmt: string): boolean;\nexport function TreeNode(label: number, fmt: string): boolean;\nexport function TreeNode(...args: any[]): boolean {\n if (typeof(args[0]) === \"string\") {\n if (args.length === 1) {\n const label: string = args[0];\n return bind.TreeNode_A(label);\n } else {\n const str_id: string = args[0];\n const fmt: string = args[1];\n return bind.TreeNode_B(str_id, fmt);\n }\n } else {\n const ptr_id: number = args[0];\n const fmt: string = args[1];\n return bind.TreeNode_C(ptr_id, fmt);\n }\n}\n// IMGUI_API bool TreeNodeEx(const char* label, ImGuiTreeNodeFlags flags = 0);\n// IMGUI_API bool TreeNodeEx(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3);\n// IMGUI_API bool TreeNodeEx(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3);\n// IMGUI_API bool TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3);\n// IMGUI_API bool TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3);\nexport function TreeNodeEx(label: string, flags?: ImGuiTreeNodeFlags): boolean;\nexport function TreeNodeEx(str_id: string, flags: ImGuiTreeNodeFlags, fmt: string): boolean;\nexport function TreeNodeEx(ptr_id: number, flags: ImGuiTreeNodeFlags, fmt: string): boolean;\nexport function TreeNodeEx(...args: any[]): boolean {\n if (typeof(args[0]) === \"string\") {\n if (args.length < 3) {\n const label: string = args[0];\n const flags: ImGuiTreeNodeFlags = args[1] || 0;\n return bind.TreeNodeEx_A(label, flags);\n } else {\n const str_id: string = args[0];\n const flags: ImGuiTreeNodeFlags = args[1];\n const fmt: string = args[2];\n return bind.TreeNodeEx_B(str_id, flags, fmt);\n }\n } else {\n const ptr_id: number = args[0];\n const flags: ImGuiTreeNodeFlags = args[1];\n const fmt: string = args[2];\n return bind.TreeNodeEx_C(ptr_id, flags, fmt);\n }\n}\n// IMGUI_API void TreePush(const char* str_id); // ~ Indent()+PushId(). Already called by TreeNode() when returning true, but you can call Push/Pop yourself for layout purpose\n// IMGUI_API void TreePush(const void* ptr_id = NULL); // \"\nexport function TreePush(str_id: string): void;\nexport function TreePush(ptr_id: number): void;\nexport function TreePush(...args: any[]): void {\n if (typeof(args[0]) === \"string\") {\n const str_id: string = args[0];\n bind.TreePush_A(str_id);\n } else {\n const ptr_id: number = args[0];\n bind.TreePush_B(ptr_id);\n }\n}\n// IMGUI_API void TreePop(); // ~ Unindent()+PopId()\nexport function TreePop(): void { bind.TreePop(); }\n// IMGUI_API void TreeAdvanceToLabelPos(); // advance cursor x position by GetTreeNodeToLabelSpacing()\nexport function TreeAdvanceToLabelPos(): void { bind.TreeAdvanceToLabelPos(); }\n// IMGUI_API float GetTreeNodeToLabelSpacing(); // horizontal distance preceding label when using TreeNode*() or Bullet() == (g.FontSize + style.FramePadding.x*2) for a regular unframed TreeNode\nexport function GetTreeNodeToLabelSpacing(): number { return bind.GetTreeNodeToLabelSpacing(); }\n// IMGUI_API bool CollapsingHeader(const char* label, ImGuiTreeNodeFlags flags = 0); // if returning 'true' the header is open. doesn't indent nor push on ID stack. user doesn't have to call TreePop().\n// IMGUI_API bool CollapsingHeader(const char* label, bool* p_open, ImGuiTreeNodeFlags flags = 0); // when 'p_open' isn't NULL, display an additional small close button on upper right of the header\nexport function CollapsingHeader(label: string, flags?: ImGuiTreeNodeFlags): boolean;\nexport function CollapsingHeader(label: string, p_open: Bind.ImScalar | Bind.ImAccess, flags?: ImGuiTreeNodeFlags): boolean;\nexport function CollapsingHeader(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.CollapsingHeader_A(label, 0);\n } else {\n if (typeof(args[0]) === \"number\") {\n const flags: ImGuiTreeNodeFlags = args[0];\n return bind.CollapsingHeader_A(label, flags);\n } else {\n const p_open: Bind.ImScalar | Bind.ImAccess = args[0];\n const flags: ImGuiTreeNodeFlags = args[1] || 0;\n const ref_open: Bind.ImScalar = Array.isArray(p_open) ? p_open : [ p_open() ];\n const ret = bind.CollapsingHeader_B(label, ref_open, flags);\n if (!Array.isArray(p_open)) { p_open(ref_open[0]); }\n return ret;\n }\n }\n}\n// IMGUI_API void SetNextItemOpen(bool is_open, ImGuiCond cond = 0); // set next TreeNode/CollapsingHeader open state.\nexport function SetNextItemOpen(is_open: boolean, cond: ImGuiCond = 0): void {\n bind.SetNextItemOpen(is_open, cond);\n}\n\n// Widgets: Selectable / Lists\n// IMGUI_API bool Selectable(const char* label, bool selected = false, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0,0)); // size.x==0.0: use remaining width, size.x>0.0: specify width. size.y==0.0: use label height, size.y>0.0: specify height\n// IMGUI_API bool Selectable(const char* label, bool* p_selected, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0,0));\nexport function Selectable(label: string, selected?: boolean, flags?: ImGuiSelectableFlags, size?: Readonly): boolean;\nexport function Selectable(label: string, p_selected: Bind.ImScalar | Bind.ImAccess, flags?: ImGuiSelectableFlags, size?: Readonly): boolean;\nexport function Selectable(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.Selectable_A(label, false, 0, ImVec2.ZERO);\n } else {\n if (typeof(args[0]) === \"boolean\") {\n const selected: boolean = args[0];\n const flags: ImGuiSelectableFlags = args[1] || 0;\n const size: Readonly = args[2] || ImVec2.ZERO;\n return bind.Selectable_A(label, selected, flags, size);\n } else {\n const p_selected: Bind.ImScalar | Bind.ImAccess = args[0];\n const flags: ImGuiSelectableFlags = args[1] || 0;\n const size: Readonly = args[2] || ImVec2.ZERO;\n const ref_selected: Bind.ImScalar = Array.isArray(p_selected) ? p_selected : [ p_selected() ];\n const ret = bind.Selectable_B(label, ref_selected, flags, size);\n if (!Array.isArray(p_selected)) { p_selected(ref_selected[0]); }\n return ret;\n }\n }\n}\n// IMGUI_API bool ListBox(const char* label, int* current_item, const char* const* items, int items_count, int height_in_items = -1);\n// IMGUI_API bool ListBox(const char* label, int* current_item, bool (*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int height_in_items = -1);\nexport type ListBoxItemGetter = (data: any, idx: number, out_text: [string]) => boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items: string[], items_count?: number, height_in_items?: number): boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_getter: ListBoxItemGetter, data: any, items_count: number, height_in_items?: number): boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, ...args: any[]): boolean {\n let ret: boolean = false;\n const _current_item: Bind.ImScalar = Array.isArray(current_item) ? current_item : [ current_item() ];\n if (Array.isArray(args[0])) {\n const items: string[] = args[0];\n const items_count: number = typeof(args[1]) === \"number\" ? args[1] : items.length;\n const height_in_items: number = typeof(args[2]) === \"number\" ? args[2] : -1;\n ret = bind.ListBox_A(label, _current_item, items, items_count, height_in_items);\n } else {\n const items_getter: ListBoxItemGetter = args[0];\n const data: any = args[1];\n const items_count: number = args[2];\n const height_in_items: number = typeof(args[3]) === \"number\" ? args[3] : -1;\n ret = bind.ListBox_B(label, _current_item, items_getter, data, items_count, height_in_items);\n }\n if (!Array.isArray(current_item)) { current_item(_current_item[0]); }\n return ret;\n}\n// IMGUI_API bool ListBoxHeader(const char* label, const ImVec2& size = ImVec2(0,0)); // use if you want to reimplement ListBox() will custom data or interactions. make sure to call ListBoxFooter() afterwards.\n// IMGUI_API bool ListBoxHeader(const char* label, int items_count, int height_in_items = -1); // \"\nexport function ListBoxHeader(label: string, size: Readonly): boolean;\nexport function ListBoxHeader(label: string, items_count: number, height_in_items?: number): boolean;\nexport function ListBoxHeader(label: string, ...args: any[]): boolean {\n if (typeof(args[0]) === \"object\") {\n const size: Readonly = args[0];\n return bind.ListBoxHeader_A(label, size);\n } else {\n const items_count: number = args[0];\n const height_in_items: number = typeof(args[1]) === \"number\" ? args[1] : -1;\n return bind.ListBoxHeader_B(label, items_count, height_in_items);\n }\n}\n// IMGUI_API void ListBoxFooter(); // terminate the scrolling region\nexport function ListBoxFooter(): void {\n bind.ListBoxFooter();\n}\n\n// Widgets: Value() Helpers. Output single value in \"name: value\" format (tip: freely declare more in your code to handle your types. you can add functions to the ImGui namespace)\n// IMGUI_API void Value(const char* prefix, bool b);\n// IMGUI_API void Value(const char* prefix, int v);\n// IMGUI_API void Value(const char* prefix, unsigned int v);\n// IMGUI_API void Value(const char* prefix, float v, const char* float_format = NULL);\nexport function Value(prefix: string, b: boolean): void;\nexport function Value(prefix: string, v: number): void;\nexport function Value(prefix: string, v: number, float_format?: string | null): void;\nexport function Value(prefix: string, v: any): void;\nexport function Value(prefix: string, ...args: any[]): void {\n if (typeof(args[0]) === \"boolean\") {\n bind.Value_A(prefix, args[0]);\n } else if (typeof(args[0]) === \"number\") {\n if (Number.isInteger(args[0])) {\n bind.Value_B(prefix, args[0]);\n } else {\n bind.Value_D(prefix, args[0], typeof(args[1]) === \"string\" ? args[1] : null);\n }\n } else {\n bind.Text(prefix + String(args[0]));\n }\n}\n\n// Tooltips\n// IMGUI_API void BeginTooltip(); // begin/append a tooltip window. to create full-featured tooltip (with any kind of contents).\nexport function BeginTooltip(): void { bind.BeginTooltip(); }\n// IMGUI_API void EndTooltip();\nexport function EndTooltip(): void { bind.EndTooltip(); }\n// IMGUI_API void SetTooltip(const char* fmt, ...) IM_FMTARGS(1); // set text tooltip under mouse-cursor, typically use with ImGui::IsItemHovered(). overidde any previous call to SetTooltip().\n// IMGUI_API void SetTooltipV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function SetTooltip(fmt: string): void {\n bind.SetTooltip(fmt);\n}\n\n// Menus\n// IMGUI_API bool BeginMainMenuBar(); // create and append to a full screen menu-bar. only call EndMainMenuBar() if this returns true!\nexport function BeginMainMenuBar(): boolean { return bind.BeginMainMenuBar(); }\n// IMGUI_API void EndMainMenuBar();\nexport function EndMainMenuBar(): void { bind.EndMainMenuBar(); }\n// IMGUI_API bool BeginMenuBar(); // append to menu-bar of current window (requires ImGuiWindowFlags_MenuBar flag set on parent window). only call EndMenuBar() if this returns true!\nexport function BeginMenuBar(): boolean { return bind.BeginMenuBar(); }\n// IMGUI_API void EndMenuBar();\nexport function EndMenuBar(): void { bind.EndMenuBar(); }\n// IMGUI_API bool BeginMenu(const char* label, bool enabled = true); // create a sub-menu entry. only call EndMenu() if this returns true!\nexport function BeginMenu(label: string, enabled: boolean = true): boolean { return bind.BeginMenu(label, enabled); }\n// IMGUI_API void EndMenu();\nexport function EndMenu(): void { bind.EndMenu(); }\n// IMGUI_API bool MenuItem(const char* label, const char* shortcut = NULL, bool selected = false, bool enabled = true); // return true when activated. shortcuts are displayed for convenience but not processed by ImGui at the moment\n// IMGUI_API bool MenuItem(const char* label, const char* shortcut, bool* p_selected, bool enabled = true); // return true when activated + toggle (*p_selected) if p_selected != NULL\nexport function MenuItem(label: string, shortcut?: string | null, selected?: boolean, enabled?: boolean): boolean;\nexport function MenuItem(label: string, shortcut: string | null, p_selected: Bind.ImScalar | Bind.ImAccess | null, enabled?: boolean): boolean;\nexport function MenuItem(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.MenuItem_A(label, null, false, true);\n } else if (args.length === 1) {\n const shortcut: string | null = args[0];\n return bind.MenuItem_A(label, shortcut, false, true);\n } else {\n const shortcut: string | null = args[0];\n if (typeof(args[1]) === \"boolean\") {\n const selected: boolean = args[1];\n const enabled: boolean = typeof(args[2]) === \"boolean\" ? args[2] : true;\n return bind.MenuItem_A(label, shortcut, selected, enabled);\n } else {\n const p_selected: Bind.ImScalar | Bind.ImAccess = args[1];\n const enabled: boolean = typeof(args[2]) === \"boolean\" ? args[2] : true;\n const ref_selected: Bind.ImScalar = Array.isArray(p_selected) ? p_selected : [ p_selected() ];\n const ret = bind.MenuItem_B(label, shortcut, ref_selected, enabled);\n if (!Array.isArray(p_selected)) { p_selected(ref_selected[0]); }\n return ret;\n }\n }\n}\n\n// Popups\n// IMGUI_API void OpenPopup(const char* str_id); // call to mark popup as open (don't call every frame!). popups are closed when user click outside, or if CloseCurrentPopup() is called within a BeginPopup()/EndPopup() block. By default, Selectable()/MenuItem() are calling CloseCurrentPopup(). Popup identifiers are relative to the current ID-stack (so OpenPopup and BeginPopup needs to be at the same level).\nexport function OpenPopup(str_id: string): void { bind.OpenPopup(str_id); }\n// IMGUI_API bool OpenPopupOnItemClick(const char* str_id = NULL, int mouse_button = 1); // helper to open popup when clicked on last item. return true when just opened.\nexport function OpenPopupOnItemClick(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.OpenPopupOnItemClick(str_id, mouse_button);\n}\n// IMGUI_API bool BeginPopup(const char* str_id); // return true if the popup is open, and you can start outputting to it. only call EndPopup() if BeginPopup() returned true!\nexport function BeginPopup(str_id: string): boolean { return bind.BeginPopup(str_id); }\n// IMGUI_API bool BeginPopupModal(const char* name, bool* p_open = NULL, ImGuiWindowFlags extra_flags = 0); // modal dialog (block interactions behind the modal window, can't close the modal window by clicking outside)\nexport function BeginPopupModal(str_id: string = \"\", p_open: Bind.ImScalar | Bind.ImAccess | null = null, extra_flags: ImGuiWindowFlags = 0): boolean {\n if (Array.isArray(p_open)) {\n return bind.BeginPopupModal(str_id, p_open, extra_flags);\n } else if (typeof(p_open) === \"function\") {\n const _p_open: Bind.ImScalar = [ p_open() ];\n const ret = bind.BeginPopupModal(str_id, _p_open, extra_flags);\n p_open(_p_open[0]);\n return ret;\n } else {\n return bind.BeginPopupModal(str_id, null, extra_flags);\n }\n}\n// IMGUI_API bool BeginPopupContextItem(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked on last item. if you can pass a NULL str_id only if the previous item had an id. If you want to use that on a non-interactive item such as Text() you need to pass in an explicit ID here. read comments in .cpp!\nexport function BeginPopupContextItem(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.BeginPopupContextItem(str_id, mouse_button);\n}\n// IMGUI_API bool BeginPopupContextWindow(const char* str_id = NULL, int mouse_button = 1, bool also_over_items = true); // helper to open and begin popup when clicked on current window.\nexport function BeginPopupContextWindow(str_id: string | null = null, mouse_button: number = 1, also_over_items: boolean = true): boolean {\n return bind.BeginPopupContextWindow(str_id, mouse_button, also_over_items);\n}\n// IMGUI_API bool BeginPopupContextVoid(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked in void (where there are no imgui windows).\nexport function BeginPopupContextVoid(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.BeginPopupContextVoid(str_id, mouse_button);\n}\n// IMGUI_API void EndPopup();\nexport function EndPopup(): void { bind.EndPopup(); }\n// IMGUI_API bool IsPopupOpen(const char* str_id); // return true if the popup is open\nexport function IsPopupOpen(str_id: string): boolean { return bind.IsPopupOpen(str_id); }\n// IMGUI_API void CloseCurrentPopup(); // close the popup we have begin-ed into. clicking on a MenuItem or Selectable automatically close the current popup.\nexport function CloseCurrentPopup(): void { bind.CloseCurrentPopup(); }\n\n// Tab Bars, Tabs\n// [BETA API] API may evolve!\n// IMGUI_API bool BeginTabBar(const char* str_id, ImGuiTabBarFlags flags = 0); // create and append into a TabBar\nexport function BeginTabBar(str_id: string, flags: ImGuiTabBarFlags = 0): boolean { return bind.BeginTabBar(str_id, flags); }\n// IMGUI_API void EndTabBar(); // only call EndTabBar() if BeginTabBar() returns true!\nexport function EndTabBar(): void { bind.EndTabBar(); }\n// IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags flags = 0);// create a Tab. Returns true if the Tab is selected.\nexport function BeginTabItem(label: string, p_open: Bind.ImScalar | Bind.ImAccess | null = null, flags: ImGuiTabItemFlags = 0): boolean {\n // return bind.BeginTabItem(label, p_open, flags);\n if (p_open === null) {\n return bind.BeginTabItem(label, null, flags);\n } else if (Array.isArray(p_open)) {\n return bind.BeginTabItem(label, p_open, flags);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n const ret = bind.BeginTabItem(label, ref_open, flags);\n p_open(ref_open[0]);\n return ret;\n }\n}\n// IMGUI_API void EndTabItem(); // only call EndTabItem() if BeginTabItem() returns true!\nexport function EndTabItem(): void { bind.EndTabItem(); }\n// IMGUI_API void SetTabItemClosed(const char* tab_or_docked_window_label); // notify TabBar or Docking system of a closed tab/window ahead (useful to reduce visual flicker on reorderable tab bars). For tab-bar: call after BeginTabBar() and before Tab submissions. Otherwise call with a window name.\nexport function SetTabItemClosed(tab_or_docked_window_label: string): void { bind.SetTabItemClosed(tab_or_docked_window_label); }\n\n// Logging/Capture: all text output from interface is captured to tty/file/clipboard. By default, tree nodes are automatically opened during logging.\n// IMGUI_API void LogToTTY(int max_depth = -1); // start logging to tty\nexport function LogToTTY(max_depth: number = -1): void {\n bind.LogToTTY(max_depth);\n}\n// IMGUI_API void LogToFile(int max_depth = -1, const char* filename = NULL); // start logging to file\nexport function LogToFile(max_depth: number = -1, filename: string | null = null): void {\n bind.LogToFile(max_depth, filename);\n}\n// IMGUI_API void LogToClipboard(int max_depth = -1); // start logging to OS clipboard\nexport function LogToClipboard(max_depth: number = -1): void {\n bind.LogToClipboard(max_depth);\n}\n// IMGUI_API void LogFinish(); // stop logging (close file, etc.)\nexport function LogFinish(): void { bind.LogFinish(); }\n// IMGUI_API void LogButtons(); // helper to display buttons for logging to tty/file/clipboard\nexport function LogButtons(): void { bind.LogButtons(); }\n// IMGUI_API void LogText(const char* fmt, ...) IM_FMTARGS(1); // pass text data straight to log (without being displayed)\nexport function LogText(fmt: string): void {\n bind.LogText(fmt);\n}\n\nconst _ImGui_DragDropPayload_data: {[key: string]: any} = {};\n// Drag and Drop\n// [BETA API] Missing Demo code. API may evolve.\n// IMGUI_API bool BeginDragDropSource(ImGuiDragDropFlags flags = 0); // call when the current item is active. If this return true, you can call SetDragDropPayload() + EndDragDropSource()\nexport function BeginDragDropSource(flags: ImGuiDragDropFlags = 0): boolean {\n return bind.BeginDragDropSource(flags);\n}\n// IMGUI_API bool SetDragDropPayload(const char* type, const void* data, size_t size, ImGuiCond cond = 0);// type is a user defined string of maximum 8 characters. Strings starting with '_' are reserved for dear imgui internal types. Data is copied and held by imgui.\nexport function SetDragDropPayload(type: string, data: T, cond: ImGuiCond = 0): boolean {\n _ImGui_DragDropPayload_data[type] = data;\n return bind.SetDragDropPayload(type, data, 0, cond);\n}\n// IMGUI_API void EndDragDropSource();\nexport function EndDragDropSource(): void {\n bind.EndDragDropSource();\n}\n// IMGUI_API bool BeginDragDropTarget(); // call after submitting an item that may receive an item. If this returns true, you can call AcceptDragDropPayload() + EndDragDropTarget()\nexport function BeginDragDropTarget(): boolean {\n return bind.BeginDragDropTarget();\n}\n// IMGUI_API const ImGuiPayload* AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags = 0); // accept contents of a given type. If ImGuiDragDropFlags_AcceptBeforeDelivery is set you can peek into the payload before the mouse button is released.\nexport function AcceptDragDropPayload(type: string, flags: ImGuiDragDropFlags = 0): ImGuiPayload | null {\n const data: T = _ImGui_DragDropPayload_data[type];\n return bind.AcceptDragDropPayload(type, flags) ? { Data: data } : null;\n}\n// IMGUI_API void EndDragDropTarget();\nexport function EndDragDropTarget(): void {\n bind.EndDragDropTarget();\n}\n\n// Clipping\n// IMGUI_API void PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect);\nexport function PushClipRect(clip_rect_min: Readonly, clip_rect_max: Readonly, intersect_with_current_clip_rect: boolean): void {\n bind.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect);\n}\n// IMGUI_API void PopClipRect();\nexport function PopClipRect(): void {\n bind.PopClipRect();\n}\n\n// Focus\n// (FIXME: Those functions will be reworked after we merge the navigation branch + have a pass at focusing/tabbing features.)\n// (Prefer using \"SetItemDefaultFocus()\" over \"if (IsWindowAppearing()) SetScrollHere()\" when applicable, to make your code more forward compatible when navigation branch is merged)\n// IMGUI_API void SetItemDefaultFocus(); // make last item the default focused item of a window (WIP navigation branch only). Pleaase use instead of SetScrollHere().\nexport function SetItemDefaultFocus(): void { bind.SetItemDefaultFocus(); }\n// IMGUI_API void SetKeyboardFocusHere(int offset = 0); // focus keyboard on the next widget. Use positive 'offset' to access sub components of a multiple component widget. Use -1 to access previous widget.\nexport function SetKeyboardFocusHere(offset: number = 0): void {\n bind.SetKeyboardFocusHere(offset);\n}\n\n// Utilities\n// IMGUI_API bool IsItemHovered(ImGuiHoveredFlags flags = 0); // is the last item hovered? (and usable, aka not blocked by a popup, etc.). See ImGuiHoveredFlags for more options.\nexport function IsItemHovered(flags: ImGuiHoveredFlags = 0): boolean {\n return bind.IsItemHovered(flags);\n}\n// IMGUI_API bool IsItemActive(); // is the last item active? (e.g. button being held, text field being edited- items that don't interact will always return false)\nexport function IsItemActive(): boolean { return bind.IsItemActive(); }\n// IMGUI_API bool IsItemEdited(); // is the last item active? (e.g. button being held, text field being edited- items that don't interact will always return false)\nexport function IsItemEdited(): boolean { return bind.IsItemEdited(); }\n// IMGUI_API bool IsItemFocused(); // is the last item focused for keyboard/gamepad navigation?\nexport function IsItemFocused(): boolean { return bind.IsItemFocused(); }\n// IMGUI_API bool IsItemClicked(int mouse_button = 0); // is the last item clicked? (e.g. button/node just clicked on)\nexport function IsItemClicked(mouse_button: number = 0): boolean {\n return bind.IsItemClicked(mouse_button);\n}\n// IMGUI_API bool IsItemVisible(); // is the last item visible? (aka not out of sight due to clipping/scrolling.)\nexport function IsItemVisible(): boolean { return bind.IsItemVisible(); }\n// IMGUI_API bool IsItemActivated(); // was the last item just made active (item was previously inactive).\nexport function IsItemActivated(): boolean { return bind.IsItemActivated(); }\n// IMGUI_API bool IsItemDeactivated(); // was the last item just made inactive (item was previously active). Useful for Undo/Redo patterns with widgets that requires continuous editing.\nexport function IsItemDeactivated(): boolean { return bind.IsItemDeactivated(); }\n// IMGUI_API bool IsItemDeactivatedAfterEdit(); // was the last item just made inactive and made a value change when it was active? (e.g. Slider/Drag moved). Useful for Undo/Redo patterns with widgets that requires continuous editing. Note that you may get false positives (some widgets such as Combo()/ListBox()/Selectable() will return true even when clicking an already selected item).\nexport function IsItemDeactivatedAfterEdit(): boolean { return bind.IsItemDeactivatedAfterEdit(); }\n// IMGUI_API bool IsAnyItemHovered();\nexport function IsAnyItemHovered(): boolean { return bind.IsAnyItemHovered(); }\n// IMGUI_API bool IsAnyItemActive();\nexport function IsAnyItemActive(): boolean { return bind.IsAnyItemActive(); }\n// IMGUI_API bool IsAnyItemFocused();\nexport function IsAnyItemFocused(): boolean { return bind.IsAnyItemFocused(); }\n// IMGUI_API ImVec2 GetItemRectMin(); // get bounding rectangle of last item, in screen space\nexport function GetItemRectMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectMin(out);\n}\n// IMGUI_API ImVec2 GetItemRectMax(); // \"\nexport function GetItemRectMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectMax(out);\n}\n// IMGUI_API ImVec2 GetItemRectSize(); // get size of last item, in screen space\nexport function GetItemRectSize(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectSize(out);\n}\n// IMGUI_API void SetItemAllowOverlap(); // allow last item to be overlapped by a subsequent item. sometimes useful with invisible buttons, selectables, etc. to catch unused area.\nexport function SetItemAllowOverlap(): void { bind.SetItemAllowOverlap(); }\n// IMGUI_API bool IsWindowFocused(ImGuiFocusedFlags flags = 0); // is current window focused? or its root/child, depending on flags. see flags for options.\nexport function IsWindowFocused(flags: ImGuiFocusedFlags = 0): boolean {\n return bind.IsWindowFocused(flags);\n}\n// IMGUI_API bool IsWindowHovered(ImGuiHoveredFlags flags = 0); // is current window hovered (and typically: not blocked by a popup/modal)? see flags for options.\nexport function IsWindowHovered(flags: ImGuiHoveredFlags = 0): boolean {\n return bind.IsWindowHovered(flags);\n}\n// IMGUI_API bool IsRectVisible(const ImVec2& size); // test if rectangle (of given size, starting from cursor position) is visible / not clipped.\n// IMGUI_API bool IsRectVisible(const ImVec2& rect_min, const ImVec2& rect_max); // test if rectangle (in screen space) is visible / not clipped. to perform coarse clipping on user's side.\nexport function IsRectVisible(size: Readonly): boolean;\nexport function IsRectVisible(rect_min: Readonly, rect_max: Readonly): boolean;\nexport function IsRectVisible(...args: any[]): boolean {\n if (args.length === 1) {\n const size: Readonly = args[0];\n return bind.IsRectVisible_A(size);\n } else {\n const rect_min: Readonly = args[0];\n const rect_max: Readonly = args[1];\n return bind.IsRectVisible_B(rect_min, rect_max);\n }\n}\n// IMGUI_API float GetTime();\nexport function GetTime(): number { return bind.GetTime(); }\n// IMGUI_API int GetFrameCount();\nexport function GetFrameCount(): number { return bind.GetFrameCount(); }\nexport function GetBackgroundDrawList(): ImDrawList {\n return new ImDrawList(bind.GetBackgroundDrawList());\n}\nexport function GetForegroundDrawList(): ImDrawList {\n return new ImDrawList(bind.GetForegroundDrawList());\n}\n// IMGUI_API ImDrawListSharedData* GetDrawListSharedData();\nexport function GetDrawListSharedData(): ImDrawListSharedData {\n return new ImDrawListSharedData(bind.GetDrawListSharedData());\n}\n// IMGUI_API const char* GetStyleColorName(ImGuiCol idx);\nexport function GetStyleColorName(idx: ImGuiCol): string { return bind.GetStyleColorName(idx); }\n// IMGUI_API ImVec2 CalcTextSize(const char* text, const char* text_end = NULL, bool hide_text_after_double_hash = false, float wrap_width = -1.0f);\nexport function CalcTextSize(text: string, text_end: number | null = null, hide_text_after_double_hash: boolean = false, wrap_width: number = -1, out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.CalcTextSize(text_end !== null ? text.substring(0, text_end) : text, hide_text_after_double_hash, wrap_width, out);\n}\n// IMGUI_API void CalcListClipping(int items_count, float items_height, int* out_items_display_start, int* out_items_display_end); // calculate coarse clipping for large list of evenly sized items. Prefer using the ImGuiListClipper higher-level helper if you can.\nexport function CalcListClipping(items_count: number, items_height: number, out_items_display_start: Bind.ImScalar, out_items_display_end: Bind.ImScalar): void {\n return bind.CalcListClipping(items_count, items_height, out_items_display_start, out_items_display_end);\n}\n\n// IMGUI_API bool BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags extra_flags = 0); // helper to create a child window / scrolling region that looks like a normal widget frame\nexport function BeginChildFrame(id: Bind.ImGuiID, size: Readonly, extra_flags: ImGuiWindowFlags = 0): boolean {\n return bind.BeginChildFrame(id, size, extra_flags);\n}\n// IMGUI_API void EndChildFrame();\nexport function EndChildFrame(): void { bind.EndChildFrame(); }\n\n// IMGUI_API ImVec4 ColorConvertU32ToFloat4(ImU32 in);\nexport function ColorConvertU32ToFloat4(in_: Bind.ImU32, out: Bind.interface_ImVec4 = new ImVec4()): typeof out {\n return bind.ColorConvertU32ToFloat4(in_, out);\n}\n// IMGUI_API ImU32 ColorConvertFloat4ToU32(const ImVec4& in);\nexport function ColorConvertFloat4ToU32(in_: Readonly): Bind.ImU32 {\n return bind.ColorConvertFloat4ToU32(in_);\n}\n// IMGUI_API void ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v);\nexport function ColorConvertRGBtoHSV(r: number, g: number, b: number, out_h: Bind.ImScalar, out_s: Bind.ImScalar, out_v: Bind.ImScalar): void { bind.ColorConvertRGBtoHSV(r, g, b, out_h, out_s, out_v); }\n// IMGUI_API void ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g, float& out_b);\nexport function ColorConvertHSVtoRGB(h: number, s: number, v: number, out_r: Bind.ImScalar, out_g: Bind.ImScalar, out_b: Bind.ImScalar): void { bind.ColorConvertHSVtoRGB(h, s, v, out_r, out_g, out_b); }\n\n// Inputs\n// IMGUI_API int GetKeyIndex(ImGuiKey imgui_key); // map ImGuiKey_* values into user's key index. == io.KeyMap[key]\nexport function GetKeyIndex(imgui_key: ImGuiKey): number {\n return bind.GetKeyIndex(imgui_key);\n}\n// IMGUI_API bool IsKeyDown(int user_key_index); // is key being held. == io.KeysDown[user_key_index]. note that imgui doesn't know the semantic of each entry of io.KeyDown[]. Use your own indices/enums according to how your backend/engine stored them into KeyDown[]!\nexport function IsKeyDown(user_key_index: number): boolean {\n return bind.IsKeyDown(user_key_index);\n}\n// IMGUI_API bool IsKeyPressed(int user_key_index, bool repeat = true); // was key pressed (went from !Down to Down). if repeat=true, uses io.KeyRepeatDelay / KeyRepeatRate\nexport function IsKeyPressed(user_key_index: number, repeat: boolean = true): boolean {\n return bind.IsKeyPressed(user_key_index, repeat);\n}\n// IMGUI_API bool IsKeyReleased(int user_key_index); // was key released (went from Down to !Down)..\nexport function IsKeyReleased(user_key_index: number): boolean {\n return bind.IsKeyReleased(user_key_index);\n}\n// IMGUI_API int GetKeyPressedAmount(int key_index, float repeat_delay, float rate); // uses provided repeat rate/delay. return a count, most often 0 or 1 but might be >1 if RepeatRate is small enough that DeltaTime > RepeatRate\nexport function GetKeyPressedAmount(user_key_index: number, repeat_delay: number, rate: number): number {\n return bind.GetKeyPressedAmount(user_key_index, repeat_delay, rate);\n}\n// IMGUI_API bool IsMouseDown(int button); // is mouse button held\nexport function IsMouseDown(button: number): boolean {\n return bind.IsMouseDown(button);\n}\n// IMGUI_API bool IsMouseClicked(int button, bool repeat = false); // did mouse button clicked (went from !Down to Down)\nexport function IsMouseClicked(button: number, repeat: boolean = false): boolean {\n return bind.IsMouseClicked(button, repeat);\n}\n// IMGUI_API bool IsMouseDoubleClicked(int button); // did mouse button double-clicked. a double-click returns false in IsMouseClicked(). uses io.MouseDoubleClickTime.\nexport function IsMouseDoubleClicked(button: number): boolean {\n return bind.IsMouseDoubleClicked(button);\n}\n// IMGUI_API bool IsMouseReleased(int button); // did mouse button released (went from Down to !Down)\nexport function IsMouseReleased(button: number): boolean {\n return bind.IsMouseReleased(button);\n}\n// IMGUI_API bool IsMouseDragging(int button = 0, float lock_threshold = -1.0f); // is mouse dragging. if lock_threshold < -1.0f uses io.MouseDraggingThreshold\nexport function IsMouseDragging(button: number = 0, lock_threshold: number = -1.0): boolean {\n return bind.IsMouseDragging(button, lock_threshold);\n}\n// IMGUI_API bool IsMouseHoveringRect(const ImVec2& r_min, const ImVec2& r_max, bool clip = true); // is mouse hovering given bounding rect (in screen space). clipped by current clipping settings. disregarding of consideration of focus/window ordering/blocked by a popup.\nexport function IsMouseHoveringRect(r_min: Readonly, r_max: Readonly, clip: boolean = true): boolean {\n return bind.IsMouseHoveringRect(r_min, r_max, clip);\n}\n// IMGUI_API bool IsMousePosValid(const ImVec2* mouse_pos = NULL); //\nexport function IsMousePosValid(mouse_pos: Readonly | null = null): boolean {\n return bind.IsMousePosValid(mouse_pos);\n}\n// IMGUI_API ImVec2 GetMousePos(); // shortcut to ImGui::GetIO().MousePos provided by user, to be consistent with other calls\nexport function GetMousePos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMousePos(out);\n}\n// IMGUI_API ImVec2 GetMousePosOnOpeningCurrentPopup(); // retrieve backup of mouse positioning at the time of opening popup we have BeginPopup() into\nexport function GetMousePosOnOpeningCurrentPopup(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMousePosOnOpeningCurrentPopup(out);\n}\n// IMGUI_API ImVec2 GetMouseDragDelta(int button = 0, float lock_threshold = -1.0f); // dragging amount since clicking. if lock_threshold < -1.0f uses io.MouseDraggingThreshold\nexport function GetMouseDragDelta(button: number = 0, lock_threshold: number = -1.0, out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMouseDragDelta(button, lock_threshold, out);\n}\n// IMGUI_API void ResetMouseDragDelta(int button = 0); //\nexport function ResetMouseDragDelta(button: number = 0): void {\n bind.ResetMouseDragDelta(button);\n}\n// IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you\nexport function GetMouseCursor(): ImGuiMouseCursor { return bind.GetMouseCursor(); }\n// IMGUI_API void SetMouseCursor(ImGuiMouseCursor type); // set desired cursor type\nexport function SetMouseCursor(type: ImGuiMouseCursor): void { bind.SetMouseCursor(type); }\n// IMGUI_API void CaptureKeyboardFromApp(bool capture = true); // manually override io.WantCaptureKeyboard flag next frame (said flag is entirely left for your application handle). e.g. force capture keyboard when your widget is being hovered.\nexport function CaptureKeyboardFromApp(capture: boolean = true) {\n return bind.CaptureKeyboardFromApp(capture);\n}\n// IMGUI_API void CaptureMouseFromApp(bool capture = true); // manually override io.WantCaptureMouse flag next frame (said flag is entirely left for your application handle).\nexport function CaptureMouseFromApp(capture: boolean = true): void {\n bind.CaptureMouseFromApp(capture);\n}\n\n// Clipboard Utilities (also see the LogToClipboard() function to capture or output text data to the clipboard)\n// IMGUI_API const char* GetClipboardText();\nexport function GetClipboardText(): string { return bind.GetClipboardText(); }\n// IMGUI_API void SetClipboardText(const char* text);\nexport function SetClipboardText(text: string): void { bind.SetClipboardText(text); }\n\n// Settings/.Ini Utilities\n// The disk functions are automatically called if io.IniFilename != NULL (default is \"imgui.ini\").\n// Set io.IniFilename to NULL to load/save manually. Read io.WantSaveIniSettings description about handling .ini saving manually.\n// IMGUI_API void LoadIniSettingsFromDisk(const char* ini_filename); // call after CreateContext() and before the first call to NewFrame(). NewFrame() automatically calls LoadIniSettingsFromDisk(io.IniFilename).\nexport function LoadIniSettingsFromDisk(ini_filename: string): void { throw new Error(); } // TODO\n// IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source.\nexport function LoadIniSettingsFromMemory(ini_data: string, ini_size: number = 0): void { bind.LoadIniSettingsFromMemory(ini_data); }\n// IMGUI_API void SaveIniSettingsToDisk(const char* ini_filename);\nexport function SaveIniSettingsToDisk(ini_filename: string): void { throw new Error(); } // TODO\n// IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings.\nexport function SaveIniSettingsToMemory(out_ini_size: Bind.ImScalar | null = null): string { return bind.SaveIniSettingsToMemory(); }\n\n// Memory Utilities\n// All those functions are not reliant on the current context.\n// If you reload the contents of imgui.cpp at runtime, you may need to call SetCurrentContext() + SetAllocatorFunctions() again.\n// IMGUI_API void SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void(*free_func)(void* ptr, void* user_data), void* user_data = NULL);\nexport function SetAllocatorFunctions(alloc_func: (sz: number, user_data: any) => number, free_func: (ptr: number, user_data: any) => void, user_data: any = null): void {\n bind.SetAllocatorFunctions(alloc_func, free_func, user_data);\n}\n// IMGUI_API void* MemAlloc(size_t sz);\nexport function MemAlloc(sz: number): void { bind.MemAlloc(sz); }\n// IMGUI_API void MemFree(void* ptr);\nexport function MemFree(ptr: any): void { bind.MemFree(ptr); }\n","(function(global){\n\n//\n// Check for native Promise and it has correct interface\n//\n\nvar NativePromise = global['Promise'];\nvar nativePromiseSupported =\n NativePromise &&\n // Some of these methods are missing from\n // Firefox/Chrome experimental implementations\n 'resolve' in NativePromise &&\n 'reject' in NativePromise &&\n 'all' in NativePromise &&\n 'race' in NativePromise &&\n // Older version of the spec had a resolver object\n // as the arg rather than a function\n (function(){\n var resolve;\n new NativePromise(function(r){ resolve = r; });\n return typeof resolve === 'function';\n })();\n\n\n//\n// export if necessary\n//\n\nif (typeof exports !== 'undefined' && exports)\n{\n // node.js\n exports.Promise = nativePromiseSupported ? NativePromise : Promise;\n exports.Polyfill = Promise;\n}\nelse\n{\n // AMD\n if (typeof define == 'function' && define.amd)\n {\n define(function(){\n return nativePromiseSupported ? NativePromise : Promise;\n });\n }\n else\n {\n // in browser add to global\n if (!nativePromiseSupported)\n global['Promise'] = Promise;\n }\n}\n\n\n//\n// Polyfill\n//\n\nvar PENDING = 'pending';\nvar SEALED = 'sealed';\nvar FULFILLED = 'fulfilled';\nvar REJECTED = 'rejected';\nvar NOOP = function(){};\n\nfunction isArray(value) {\n return Object.prototype.toString.call(value) === '[object Array]';\n}\n\n// async calls\nvar asyncSetTimer = typeof setImmediate !== 'undefined' ? setImmediate : setTimeout;\nvar asyncQueue = [];\nvar asyncTimer;\n\nfunction asyncFlush(){\n // run promise callbacks\n for (var i = 0; i < asyncQueue.length; i++)\n asyncQueue[i][0](asyncQueue[i][1]);\n\n // reset async asyncQueue\n asyncQueue = [];\n asyncTimer = false;\n}\n\nfunction asyncCall(callback, arg){\n asyncQueue.push([callback, arg]);\n\n if (!asyncTimer)\n {\n asyncTimer = true;\n asyncSetTimer(asyncFlush, 0);\n }\n}\n\n\nfunction invokeResolver(resolver, promise) {\n function resolvePromise(value) {\n resolve(promise, value);\n }\n\n function rejectPromise(reason) {\n reject(promise, reason);\n }\n\n try {\n resolver(resolvePromise, rejectPromise);\n } catch(e) {\n rejectPromise(e);\n }\n}\n\nfunction invokeCallback(subscriber){\n var owner = subscriber.owner;\n var settled = owner.state_;\n var value = owner.data_; \n var callback = subscriber[settled];\n var promise = subscriber.then;\n\n if (typeof callback === 'function')\n {\n settled = FULFILLED;\n try {\n value = callback(value);\n } catch(e) {\n reject(promise, e);\n }\n }\n\n if (!handleThenable(promise, value))\n {\n if (settled === FULFILLED)\n resolve(promise, value);\n\n if (settled === REJECTED)\n reject(promise, value);\n }\n}\n\nfunction handleThenable(promise, value) {\n var resolved;\n\n try {\n if (promise === value)\n throw new TypeError('A promises callback cannot return that same promise.');\n\n if (value && (typeof value === 'function' || typeof value === 'object'))\n {\n var then = value.then; // then should be retrived only once\n\n if (typeof then === 'function')\n {\n then.call(value, function(val){\n if (!resolved)\n {\n resolved = true;\n\n if (value !== val)\n resolve(promise, val);\n else\n fulfill(promise, val);\n }\n }, function(reason){\n if (!resolved)\n {\n resolved = true;\n\n reject(promise, reason);\n }\n });\n\n return true;\n }\n }\n } catch (e) {\n if (!resolved)\n reject(promise, e);\n\n return true;\n }\n\n return false;\n}\n\nfunction resolve(promise, value){\n if (promise === value || !handleThenable(promise, value))\n fulfill(promise, value);\n}\n\nfunction fulfill(promise, value){\n if (promise.state_ === PENDING)\n {\n promise.state_ = SEALED;\n promise.data_ = value;\n\n asyncCall(publishFulfillment, promise);\n }\n}\n\nfunction reject(promise, reason){\n if (promise.state_ === PENDING)\n {\n promise.state_ = SEALED;\n promise.data_ = reason;\n\n asyncCall(publishRejection, promise);\n }\n}\n\nfunction publish(promise) {\n var callbacks = promise.then_;\n promise.then_ = undefined;\n\n for (var i = 0; i < callbacks.length; i++) {\n invokeCallback(callbacks[i]);\n }\n}\n\nfunction publishFulfillment(promise){\n promise.state_ = FULFILLED;\n publish(promise);\n}\n\nfunction publishRejection(promise){\n promise.state_ = REJECTED;\n publish(promise);\n}\n\n/**\n* @class\n*/\nfunction Promise(resolver){\n if (typeof resolver !== 'function')\n throw new TypeError('Promise constructor takes a function argument');\n\n if (this instanceof Promise === false)\n throw new TypeError('Failed to construct \\'Promise\\': Please use the \\'new\\' operator, this object constructor cannot be called as a function.');\n\n this.then_ = [];\n\n invokeResolver(resolver, this);\n}\n\nPromise.prototype = {\n constructor: Promise,\n\n state_: PENDING,\n then_: null,\n data_: undefined,\n\n then: function(onFulfillment, onRejection){\n var subscriber = {\n owner: this,\n then: new this.constructor(NOOP),\n fulfilled: onFulfillment,\n rejected: onRejection\n };\n\n if (this.state_ === FULFILLED || this.state_ === REJECTED)\n {\n // already resolved, call callback async\n asyncCall(invokeCallback, subscriber);\n }\n else\n {\n // subscribe\n this.then_.push(subscriber);\n }\n\n return subscriber.then;\n },\n\n 'catch': function(onRejection) {\n return this.then(null, onRejection);\n }\n};\n\nPromise.all = function(promises){\n var Class = this;\n\n if (!isArray(promises))\n throw new TypeError('You must pass an array to Promise.all().');\n\n return new Class(function(resolve, reject){\n var results = [];\n var remaining = 0;\n\n function resolver(index){\n remaining++;\n return function(value){\n results[index] = value;\n if (!--remaining)\n resolve(results);\n };\n }\n\n for (var i = 0, promise; i < promises.length; i++)\n {\n promise = promises[i];\n\n if (promise && typeof promise.then === 'function')\n promise.then(resolver(i), reject);\n else\n results[i] = promise;\n }\n\n if (!remaining)\n resolve(results);\n });\n};\n\nPromise.race = function(promises){\n var Class = this;\n\n if (!isArray(promises))\n throw new TypeError('You must pass an array to Promise.race().');\n\n return new Class(function(resolve, reject) {\n for (var i = 0, promise; i < promises.length; i++)\n {\n promise = promises[i];\n\n if (promise && typeof promise.then === 'function')\n promise.then(resolve, reject);\n else\n resolve(promise);\n }\n });\n};\n\nPromise.resolve = function(value){\n var Class = this;\n\n if (value && typeof value === 'object' && value.constructor === Class)\n return value;\n\n return new Class(function(resolve){\n resolve(value);\n });\n};\n\nPromise.reject = function(reason){\n var Class = this;\n\n return new Class(function(resolve, reject){\n reject(reason);\n });\n};\n\n})(typeof window != 'undefined' ? window : typeof global != 'undefined' ? global : typeof self != 'undefined' ? self : this);\n","/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\n\n'use strict';\n/* eslint-disable no-unused-vars */\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\n\nfunction toObject(val) {\n\tif (val === null || val === undefined) {\n\t\tthrow new TypeError('Object.assign cannot be called with null or undefined');\n\t}\n\n\treturn Object(val);\n}\n\nfunction shouldUseNative() {\n\ttry {\n\t\tif (!Object.assign) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Detect buggy property enumeration order in older V8 versions.\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=4118\n\t\tvar test1 = new String('abc'); // eslint-disable-line no-new-wrappers\n\t\ttest1[5] = 'de';\n\t\tif (Object.getOwnPropertyNames(test1)[0] === '5') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test2 = {};\n\t\tfor (var i = 0; i < 10; i++) {\n\t\t\ttest2['_' + String.fromCharCode(i)] = i;\n\t\t}\n\t\tvar order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n\t\t\treturn test2[n];\n\t\t});\n\t\tif (order2.join('') !== '0123456789') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test3 = {};\n\t\t'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n\t\t\ttest3[letter] = letter;\n\t\t});\n\t\tif (Object.keys(Object.assign({}, test3)).join('') !==\n\t\t\t\t'abcdefghijklmnopqrst') {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t} catch (err) {\n\t\t// We don't expect any of the above to throw, but better to be safe.\n\t\treturn false;\n\t}\n}\n\nmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n\tvar from;\n\tvar to = toObject(target);\n\tvar symbols;\n\n\tfor (var s = 1; s < arguments.length; s++) {\n\t\tfrom = Object(arguments[s]);\n\n\t\tfor (var key in from) {\n\t\t\tif (hasOwnProperty.call(from, key)) {\n\t\t\t\tto[key] = from[key];\n\t\t\t}\n\t\t}\n\n\t\tif (getOwnPropertySymbols) {\n\t\t\tsymbols = getOwnPropertySymbols(from);\n\t\t\tfor (var i = 0; i < symbols.length; i++) {\n\t\t\t\tif (propIsEnumerable.call(from, symbols[i])) {\n\t\t\t\t\tto[symbols[i]] = from[symbols[i]];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn to;\n};\n","/*!\n * @pixi/polyfill - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/polyfill is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Polyfill } from 'es6-promise-polyfill';\nimport objectAssign from 'object-assign';\n\n// Support for IE 9 - 11 which does not include Promises\nif (!window.Promise)\n{\n window.Promise = Polyfill;\n}\n\n// References:\n\nif (!Object.assign)\n{\n Object.assign = objectAssign;\n}\n\nvar commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\n// References:\n// http://paulirish.com/2011/requestanimationframe-for-smart-animating/\n// https://gist.github.com/1579671\n// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision\n// https://gist.github.com/timhall/4078614\n// https://github.com/Financial-Times/polyfill-service/tree/master/polyfills/requestAnimationFrame\n\n// Expected to be used with Browserfiy\n// Browserify automatically detects the use of `global` and passes the\n// correct reference of `global`, `self`, and finally `window`\n\nvar ONE_FRAME_TIME = 16;\n\n// Date.now\nif (!(Date.now && Date.prototype.getTime))\n{\n Date.now = function now()\n {\n return new Date().getTime();\n };\n}\n\n// performance.now\nif (!(commonjsGlobal.performance && commonjsGlobal.performance.now))\n{\n var startTime = Date.now();\n\n if (!commonjsGlobal.performance)\n {\n commonjsGlobal.performance = {};\n }\n\n commonjsGlobal.performance.now = function () { return Date.now() - startTime; };\n}\n\n// requestAnimationFrame\nvar lastTime = Date.now();\nvar vendors = ['ms', 'moz', 'webkit', 'o'];\n\nfor (var x = 0; x < vendors.length && !commonjsGlobal.requestAnimationFrame; ++x)\n{\n var p = vendors[x];\n\n commonjsGlobal.requestAnimationFrame = commonjsGlobal[(p + \"RequestAnimationFrame\")];\n commonjsGlobal.cancelAnimationFrame = commonjsGlobal[(p + \"CancelAnimationFrame\")] || commonjsGlobal[(p + \"CancelRequestAnimationFrame\")];\n}\n\nif (!commonjsGlobal.requestAnimationFrame)\n{\n commonjsGlobal.requestAnimationFrame = function (callback) {\n if (typeof callback !== 'function')\n {\n throw new TypeError((callback + \"is not a function\"));\n }\n\n var currentTime = Date.now();\n var delay = ONE_FRAME_TIME + lastTime - currentTime;\n\n if (delay < 0)\n {\n delay = 0;\n }\n\n lastTime = currentTime;\n\n return setTimeout(function () {\n lastTime = Date.now();\n callback(performance.now());\n }, delay);\n };\n}\n\nif (!commonjsGlobal.cancelAnimationFrame)\n{\n commonjsGlobal.cancelAnimationFrame = function (id) { return clearTimeout(id); };\n}\n\n// References:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign\n\nif (!Math.sign)\n{\n Math.sign = function mathSign(x)\n {\n x = Number(x);\n\n if (x === 0 || isNaN(x))\n {\n return x;\n }\n\n return x > 0 ? 1 : -1;\n };\n}\n\n// References:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger\n\nif (!Number.isInteger)\n{\n Number.isInteger = function numberIsInteger(value)\n {\n return typeof value === 'number' && isFinite(value) && Math.floor(value) === value;\n };\n}\n\nif (!window.ArrayBuffer)\n{\n window.ArrayBuffer = Array;\n}\n\nif (!window.Float32Array)\n{\n window.Float32Array = Array;\n}\n\nif (!window.Uint32Array)\n{\n window.Uint32Array = Array;\n}\n\nif (!window.Uint16Array)\n{\n window.Uint16Array = Array;\n}\n\nif (!window.Uint8Array)\n{\n window.Uint8Array = Array;\n}\n\nif (!window.Int32Array)\n{\n window.Int32Array = Array;\n}\n//# sourceMappingURL=polyfill.es.js.map\n","(function(global) {\n var apple_phone = /iPhone/i,\n apple_ipod = /iPod/i,\n apple_tablet = /iPad/i,\n android_phone = /\\bAndroid(?:.+)Mobile\\b/i, // Match 'Android' AND 'Mobile'\n android_tablet = /Android/i,\n amazon_phone = /\\bAndroid(?:.+)SD4930UR\\b/i,\n amazon_tablet = /\\bAndroid(?:.+)(?:KF[A-Z]{2,4})\\b/i,\n windows_phone = /Windows Phone/i,\n windows_tablet = /\\bWindows(?:.+)ARM\\b/i, // Match 'Windows' AND 'ARM'\n other_blackberry = /BlackBerry/i,\n other_blackberry_10 = /BB10/i,\n other_opera = /Opera Mini/i,\n other_chrome = /\\b(CriOS|Chrome)(?:.+)Mobile/i,\n other_firefox = /Mobile(?:.+)Firefox\\b/i; // Match 'Mobile' AND 'Firefox'\n\n function match(regex, userAgent) {\n return regex.test(userAgent);\n }\n\n function isMobile(userAgent) {\n var ua =\n userAgent ||\n (typeof navigator !== 'undefined' ? navigator.userAgent : '');\n\n // Facebook mobile app's integrated browser adds a bunch of strings that\n // match everything. Strip it out if it exists.\n var tmp = ua.split('[FBAN');\n if (typeof tmp[1] !== 'undefined') {\n ua = tmp[0];\n }\n\n // Twitter mobile app's integrated browser on iPad adds a \"Twitter for\n // iPhone\" string. Same probably happens on other tablet platforms.\n // This will confuse detection so strip it out if it exists.\n tmp = ua.split('Twitter');\n if (typeof tmp[1] !== 'undefined') {\n ua = tmp[0];\n }\n\n var result = {\n apple: {\n phone: match(apple_phone, ua) && !match(windows_phone, ua),\n ipod: match(apple_ipod, ua),\n tablet:\n !match(apple_phone, ua) &&\n match(apple_tablet, ua) &&\n !match(windows_phone, ua),\n device:\n (match(apple_phone, ua) ||\n match(apple_ipod, ua) ||\n match(apple_tablet, ua)) &&\n !match(windows_phone, ua)\n },\n amazon: {\n phone: match(amazon_phone, ua),\n tablet: !match(amazon_phone, ua) && match(amazon_tablet, ua),\n device: match(amazon_phone, ua) || match(amazon_tablet, ua)\n },\n android: {\n phone:\n (!match(windows_phone, ua) && match(amazon_phone, ua)) ||\n (!match(windows_phone, ua) && match(android_phone, ua)),\n tablet:\n !match(windows_phone, ua) &&\n !match(amazon_phone, ua) &&\n !match(android_phone, ua) &&\n (match(amazon_tablet, ua) || match(android_tablet, ua)),\n device:\n (!match(windows_phone, ua) &&\n (match(amazon_phone, ua) ||\n match(amazon_tablet, ua) ||\n match(android_phone, ua) ||\n match(android_tablet, ua))) ||\n match(/\\bokhttp\\b/i, ua)\n },\n windows: {\n phone: match(windows_phone, ua),\n tablet: match(windows_tablet, ua),\n device: match(windows_phone, ua) || match(windows_tablet, ua)\n },\n other: {\n blackberry: match(other_blackberry, ua),\n blackberry10: match(other_blackberry_10, ua),\n opera: match(other_opera, ua),\n firefox: match(other_firefox, ua),\n chrome: match(other_chrome, ua),\n device:\n match(other_blackberry, ua) ||\n match(other_blackberry_10, ua) ||\n match(other_opera, ua) ||\n match(other_firefox, ua) ||\n match(other_chrome, ua)\n }\n };\n (result.any =\n result.apple.device ||\n result.android.device ||\n result.windows.device ||\n result.other.device),\n // excludes 'other' devices and ipods, targeting touchscreen phones\n (result.phone =\n result.apple.phone || result.android.phone || result.windows.phone),\n (result.tablet =\n result.apple.tablet || result.android.tablet || result.windows.tablet);\n\n return result;\n }\n\n if (\n typeof module !== 'undefined' &&\n module.exports &&\n typeof window === 'undefined'\n ) {\n // Node.js\n module.exports = isMobile;\n } else if (\n typeof module !== 'undefined' &&\n module.exports &&\n typeof window !== 'undefined'\n ) {\n // Browserify\n module.exports = isMobile();\n module.exports.isMobile = isMobile;\n } else if (typeof define === 'function' && define.amd) {\n // AMD\n define([], (global.isMobile = isMobile()));\n } else {\n global.isMobile = isMobile();\n }\n})(this);\n","/*!\n * @pixi/settings - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/settings is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport isMobile from 'ismobilejs';\nexport { default as isMobile } from 'ismobilejs';\n\n/**\n * The maximum recommended texture units to use.\n * In theory the bigger the better, and for desktop we'll use as many as we can.\n * But some mobile devices slow down if there is to many branches in the shader.\n * So in practice there seems to be a sweet spot size that varies depending on the device.\n *\n * In v4, all mobile devices were limited to 4 texture units because for this.\n * In v5, we allow all texture units to be used on modern Apple or Android devices.\n *\n * @private\n * @param {number} max\n * @returns {number}\n */\nfunction maxRecommendedTextures(max)\n{\n var allowMax = true;\n\n if (isMobile.tablet || isMobile.phone)\n {\n allowMax = false;\n\n if (isMobile.apple.device)\n {\n var match = (navigator.userAgent).match(/OS (\\d+)_(\\d+)?/);\n\n if (match)\n {\n var majorVersion = parseInt(match[1], 10);\n\n // All texture units can be used on devices that support ios 11 or above\n if (majorVersion >= 11)\n {\n allowMax = true;\n }\n }\n }\n if (isMobile.android.device)\n {\n var match$1 = (navigator.userAgent).match(/Android\\s([0-9.]*)/);\n\n if (match$1)\n {\n var majorVersion$1 = parseInt(match$1[1], 10);\n\n // All texture units can be used on devices that support Android 7 (Nougat) or above\n if (majorVersion$1 >= 7)\n {\n allowMax = true;\n }\n }\n }\n }\n\n return allowMax ? max : 4;\n}\n\n/**\n * Uploading the same buffer multiple times in a single frame can cause performance issues.\n * Apparent on iOS so only check for that at the moment\n * This check may become more complex if this issue pops up elsewhere.\n *\n * @private\n * @returns {boolean}\n */\nfunction canUploadSameBuffer()\n{\n return !isMobile.apple.device;\n}\n\n/**\n * User's customizable globals for overriding the default PIXI settings, such\n * as a renderer's default resolution, framerate, float precision, etc.\n * @example\n * // Use the native window resolution as the default resolution\n * // will support high-density displays when rendering\n * PIXI.settings.RESOLUTION = window.devicePixelRatio;\n *\n * // Disable interpolation when scaling, will make texture be pixelated\n * PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST;\n * @namespace PIXI.settings\n */\nvar settings = {\n\n /**\n * If set to true WebGL will attempt make textures mimpaped by default.\n * Mipmapping will only succeed if the base texture uploaded has power of two dimensions.\n *\n * @static\n * @name MIPMAP_TEXTURES\n * @memberof PIXI.settings\n * @type {PIXI.MIPMAP_MODES}\n * @default PIXI.MIPMAP_MODES.POW2\n */\n MIPMAP_TEXTURES: 1,\n\n /**\n * Default anisotropic filtering level of textures.\n * Usually from 0 to 16\n *\n * @static\n * @name ANISOTROPIC_LEVEL\n * @memberof PIXI.settings\n * @type {number}\n * @default 0\n */\n ANISOTROPIC_LEVEL: 0,\n\n /**\n * Default resolution / device pixel ratio of the renderer.\n *\n * @static\n * @name RESOLUTION\n * @memberof PIXI.settings\n * @type {number}\n * @default 1\n */\n RESOLUTION: 1,\n\n /**\n * Default filter resolution.\n *\n * @static\n * @name FILTER_RESOLUTION\n * @memberof PIXI.settings\n * @type {number}\n * @default 1\n */\n FILTER_RESOLUTION: 1,\n\n /**\n * The maximum textures that this device supports.\n *\n * @static\n * @name SPRITE_MAX_TEXTURES\n * @memberof PIXI.settings\n * @type {number}\n * @default 32\n */\n SPRITE_MAX_TEXTURES: maxRecommendedTextures(32),\n\n // TODO: maybe change to SPRITE.BATCH_SIZE: 2000\n // TODO: maybe add PARTICLE.BATCH_SIZE: 15000\n\n /**\n * The default sprite batch size.\n *\n * The default aims to balance desktop and mobile devices.\n *\n * @static\n * @name SPRITE_BATCH_SIZE\n * @memberof PIXI.settings\n * @type {number}\n * @default 4096\n */\n SPRITE_BATCH_SIZE: 4096,\n\n /**\n * The default render options if none are supplied to {@link PIXI.Renderer}\n * or {@link PIXI.CanvasRenderer}.\n *\n * @static\n * @name RENDER_OPTIONS\n * @memberof PIXI.settings\n * @type {object}\n * @property {HTMLCanvasElement} view=null\n * @property {number} resolution=1\n * @property {boolean} antialias=false\n * @property {boolean} forceFXAA=false\n * @property {boolean} autoDensity=false\n * @property {boolean} transparent=false\n * @property {number} backgroundColor=0x000000\n * @property {boolean} clearBeforeRender=true\n * @property {boolean} preserveDrawingBuffer=false\n * @property {number} width=800\n * @property {number} height=600\n * @property {boolean} legacy=false\n */\n RENDER_OPTIONS: {\n view: null,\n antialias: false,\n forceFXAA: false,\n autoDensity: false,\n transparent: false,\n backgroundColor: 0x000000,\n clearBeforeRender: true,\n preserveDrawingBuffer: false,\n width: 800,\n height: 600,\n legacy: false,\n },\n\n /**\n * Default Garbage Collection mode.\n *\n * @static\n * @name GC_MODE\n * @memberof PIXI.settings\n * @type {PIXI.GC_MODES}\n * @default PIXI.GC_MODES.AUTO\n */\n GC_MODE: 0,\n\n /**\n * Default Garbage Collection max idle.\n *\n * @static\n * @name GC_MAX_IDLE\n * @memberof PIXI.settings\n * @type {number}\n * @default 3600\n */\n GC_MAX_IDLE: 60 * 60,\n\n /**\n * Default Garbage Collection maximum check count.\n *\n * @static\n * @name GC_MAX_CHECK_COUNT\n * @memberof PIXI.settings\n * @type {number}\n * @default 600\n */\n GC_MAX_CHECK_COUNT: 60 * 10,\n\n /**\n * Default wrap modes that are supported by pixi.\n *\n * @static\n * @name WRAP_MODE\n * @memberof PIXI.settings\n * @type {PIXI.WRAP_MODES}\n * @default PIXI.WRAP_MODES.CLAMP\n */\n WRAP_MODE: 33071,\n\n /**\n * Default scale mode for textures.\n *\n * @static\n * @name SCALE_MODE\n * @memberof PIXI.settings\n * @type {PIXI.SCALE_MODES}\n * @default PIXI.SCALE_MODES.LINEAR\n */\n SCALE_MODE: 1,\n\n /**\n * Default specify float precision in vertex shader.\n *\n * @static\n * @name PRECISION_VERTEX\n * @memberof PIXI.settings\n * @type {PIXI.PRECISION}\n * @default PIXI.PRECISION.HIGH\n */\n PRECISION_VERTEX: 'highp',\n\n /**\n * Default specify float precision in fragment shader.\n * iOS is best set at highp due to https://github.com/pixijs/pixi.js/issues/3742\n *\n * @static\n * @name PRECISION_FRAGMENT\n * @memberof PIXI.settings\n * @type {PIXI.PRECISION}\n * @default PIXI.PRECISION.MEDIUM\n */\n PRECISION_FRAGMENT: isMobile.apple.device ? 'highp' : 'mediump',\n\n /**\n * Can we upload the same buffer in a single frame?\n *\n * @static\n * @name CAN_UPLOAD_SAME_BUFFER\n * @memberof PIXI.settings\n * @type {boolean}\n */\n CAN_UPLOAD_SAME_BUFFER: canUploadSameBuffer(),\n\n /**\n * Enables bitmap creation before image load. This feature is experimental.\n *\n * @static\n * @name CREATE_IMAGE_BITMAP\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\n CREATE_IMAGE_BITMAP: false,\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n *\n * @static\n * @constant\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\n ROUND_PIXELS: false,\n};\n\nexport { settings };\n//# sourceMappingURL=settings.es.js.map\n","'use strict';\n\nvar has = Object.prototype.hasOwnProperty\n , prefix = '~';\n\n/**\n * Constructor to create a storage for our `EE` objects.\n * An `Events` instance is a plain object whose properties are event names.\n *\n * @constructor\n * @private\n */\nfunction Events() {}\n\n//\n// We try to not inherit from `Object.prototype`. In some engines creating an\n// instance in this way is faster than calling `Object.create(null)` directly.\n// If `Object.create(null)` is not supported we prefix the event names with a\n// character to make sure that the built-in object properties are not\n// overridden or used as an attack vector.\n//\nif (Object.create) {\n Events.prototype = Object.create(null);\n\n //\n // This hack is needed because the `__proto__` property is still inherited in\n // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5.\n //\n if (!new Events().__proto__) prefix = false;\n}\n\n/**\n * Representation of a single event listener.\n *\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} [once=false] Specify if the listener is a one-time listener.\n * @constructor\n * @private\n */\nfunction EE(fn, context, once) {\n this.fn = fn;\n this.context = context;\n this.once = once || false;\n}\n\n/**\n * Add a listener for a given event.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} once Specify if the listener is a one-time listener.\n * @returns {EventEmitter}\n * @private\n */\nfunction addListener(emitter, event, fn, context, once) {\n if (typeof fn !== 'function') {\n throw new TypeError('The listener must be a function');\n }\n\n var listener = new EE(fn, context || emitter, once)\n , evt = prefix ? prefix + event : event;\n\n if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;\n else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);\n else emitter._events[evt] = [emitter._events[evt], listener];\n\n return emitter;\n}\n\n/**\n * Clear event by name.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} evt The Event name.\n * @private\n */\nfunction clearEvent(emitter, evt) {\n if (--emitter._eventsCount === 0) emitter._events = new Events();\n else delete emitter._events[evt];\n}\n\n/**\n * Minimal `EventEmitter` interface that is molded against the Node.js\n * `EventEmitter` interface.\n *\n * @constructor\n * @public\n */\nfunction EventEmitter() {\n this._events = new Events();\n this._eventsCount = 0;\n}\n\n/**\n * Return an array listing the events for which the emitter has registered\n * listeners.\n *\n * @returns {Array}\n * @public\n */\nEventEmitter.prototype.eventNames = function eventNames() {\n var names = []\n , events\n , name;\n\n if (this._eventsCount === 0) return names;\n\n for (name in (events = this._events)) {\n if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);\n }\n\n if (Object.getOwnPropertySymbols) {\n return names.concat(Object.getOwnPropertySymbols(events));\n }\n\n return names;\n};\n\n/**\n * Return the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Array} The registered listeners.\n * @public\n */\nEventEmitter.prototype.listeners = function listeners(event) {\n var evt = prefix ? prefix + event : event\n , handlers = this._events[evt];\n\n if (!handlers) return [];\n if (handlers.fn) return [handlers.fn];\n\n for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) {\n ee[i] = handlers[i].fn;\n }\n\n return ee;\n};\n\n/**\n * Return the number of listeners listening to a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Number} The number of listeners.\n * @public\n */\nEventEmitter.prototype.listenerCount = function listenerCount(event) {\n var evt = prefix ? prefix + event : event\n , listeners = this._events[evt];\n\n if (!listeners) return 0;\n if (listeners.fn) return 1;\n return listeners.length;\n};\n\n/**\n * Calls each of the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Boolean} `true` if the event had listeners, else `false`.\n * @public\n */\nEventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return false;\n\n var listeners = this._events[evt]\n , len = arguments.length\n , args\n , i;\n\n if (listeners.fn) {\n if (listeners.once) this.removeListener(event, listeners.fn, undefined, true);\n\n switch (len) {\n case 1: return listeners.fn.call(listeners.context), true;\n case 2: return listeners.fn.call(listeners.context, a1), true;\n case 3: return listeners.fn.call(listeners.context, a1, a2), true;\n case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true;\n case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;\n case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;\n }\n\n for (i = 1, args = new Array(len -1); i < len; i++) {\n args[i - 1] = arguments[i];\n }\n\n listeners.fn.apply(listeners.context, args);\n } else {\n var length = listeners.length\n , j;\n\n for (i = 0; i < length; i++) {\n if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true);\n\n switch (len) {\n case 1: listeners[i].fn.call(listeners[i].context); break;\n case 2: listeners[i].fn.call(listeners[i].context, a1); break;\n case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break;\n case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break;\n default:\n if (!args) for (j = 1, args = new Array(len -1); j < len; j++) {\n args[j - 1] = arguments[j];\n }\n\n listeners[i].fn.apply(listeners[i].context, args);\n }\n }\n }\n\n return true;\n};\n\n/**\n * Add a listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.on = function on(event, fn, context) {\n return addListener(this, event, fn, context, false);\n};\n\n/**\n * Add a one-time listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.once = function once(event, fn, context) {\n return addListener(this, event, fn, context, true);\n};\n\n/**\n * Remove the listeners of a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn Only remove the listeners that match this function.\n * @param {*} context Only remove the listeners that have this context.\n * @param {Boolean} once Only remove one-time listeners.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return this;\n if (!fn) {\n clearEvent(this, evt);\n return this;\n }\n\n var listeners = this._events[evt];\n\n if (listeners.fn) {\n if (\n listeners.fn === fn &&\n (!once || listeners.once) &&\n (!context || listeners.context === context)\n ) {\n clearEvent(this, evt);\n }\n } else {\n for (var i = 0, events = [], length = listeners.length; i < length; i++) {\n if (\n listeners[i].fn !== fn ||\n (once && !listeners[i].once) ||\n (context && listeners[i].context !== context)\n ) {\n events.push(listeners[i]);\n }\n }\n\n //\n // Reset the array, or remove it completely if we have no more listeners.\n //\n if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;\n else clearEvent(this, evt);\n }\n\n return this;\n};\n\n/**\n * Remove all listeners, or those of the specified event.\n *\n * @param {(String|Symbol)} [event] The event name.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {\n var evt;\n\n if (event) {\n evt = prefix ? prefix + event : event;\n if (this._events[evt]) clearEvent(this, evt);\n } else {\n this._events = new Events();\n this._eventsCount = 0;\n }\n\n return this;\n};\n\n//\n// Alias methods names because people roll like that.\n//\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\nEventEmitter.prototype.addListener = EventEmitter.prototype.on;\n\n//\n// Expose the prefix.\n//\nEventEmitter.prefixed = prefix;\n\n//\n// Allow `EventEmitter` to be imported as module namespace.\n//\nEventEmitter.EventEmitter = EventEmitter;\n\n//\n// Expose the module.\n//\nif ('undefined' !== typeof module) {\n module.exports = EventEmitter;\n}\n","'use strict';\n\nmodule.exports = earcut;\nmodule.exports.default = earcut;\n\nfunction earcut(data, holeIndices, dim) {\n\n dim = dim || 2;\n\n var hasHoles = holeIndices && holeIndices.length,\n outerLen = hasHoles ? holeIndices[0] * dim : data.length,\n outerNode = linkedList(data, 0, outerLen, dim, true),\n triangles = [];\n\n if (!outerNode || outerNode.next === outerNode.prev) return triangles;\n\n var minX, minY, maxX, maxY, x, y, invSize;\n\n if (hasHoles) outerNode = eliminateHoles(data, holeIndices, outerNode, dim);\n\n // if the shape is not too simple, we'll use z-order curve hash later; calculate polygon bbox\n if (data.length > 80 * dim) {\n minX = maxX = data[0];\n minY = maxY = data[1];\n\n for (var i = dim; i < outerLen; i += dim) {\n x = data[i];\n y = data[i + 1];\n if (x < minX) minX = x;\n if (y < minY) minY = y;\n if (x > maxX) maxX = x;\n if (y > maxY) maxY = y;\n }\n\n // minX, minY and invSize are later used to transform coords into integers for z-order calculation\n invSize = Math.max(maxX - minX, maxY - minY);\n invSize = invSize !== 0 ? 1 / invSize : 0;\n }\n\n earcutLinked(outerNode, triangles, dim, minX, minY, invSize);\n\n return triangles;\n}\n\n// create a circular doubly linked list from polygon points in the specified winding order\nfunction linkedList(data, start, end, dim, clockwise) {\n var i, last;\n\n if (clockwise === (signedArea(data, start, end, dim) > 0)) {\n for (i = start; i < end; i += dim) last = insertNode(i, data[i], data[i + 1], last);\n } else {\n for (i = end - dim; i >= start; i -= dim) last = insertNode(i, data[i], data[i + 1], last);\n }\n\n if (last && equals(last, last.next)) {\n removeNode(last);\n last = last.next;\n }\n\n return last;\n}\n\n// eliminate colinear or duplicate points\nfunction filterPoints(start, end) {\n if (!start) return start;\n if (!end) end = start;\n\n var p = start,\n again;\n do {\n again = false;\n\n if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) {\n removeNode(p);\n p = end = p.prev;\n if (p === p.next) break;\n again = true;\n\n } else {\n p = p.next;\n }\n } while (again || p !== end);\n\n return end;\n}\n\n// main ear slicing loop which triangulates a polygon (given as a linked list)\nfunction earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) {\n if (!ear) return;\n\n // interlink polygon nodes in z-order\n if (!pass && invSize) indexCurve(ear, minX, minY, invSize);\n\n var stop = ear,\n prev, next;\n\n // iterate through ears, slicing them one by one\n while (ear.prev !== ear.next) {\n prev = ear.prev;\n next = ear.next;\n\n if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) {\n // cut off the triangle\n triangles.push(prev.i / dim);\n triangles.push(ear.i / dim);\n triangles.push(next.i / dim);\n\n removeNode(ear);\n\n // skipping the next vertex leads to less sliver triangles\n ear = next.next;\n stop = next.next;\n\n continue;\n }\n\n ear = next;\n\n // if we looped through the whole remaining polygon and can't find any more ears\n if (ear === stop) {\n // try filtering points and slicing again\n if (!pass) {\n earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1);\n\n // if this didn't work, try curing all small self-intersections locally\n } else if (pass === 1) {\n ear = cureLocalIntersections(filterPoints(ear), triangles, dim);\n earcutLinked(ear, triangles, dim, minX, minY, invSize, 2);\n\n // as a last resort, try splitting the remaining polygon into two\n } else if (pass === 2) {\n splitEarcut(ear, triangles, dim, minX, minY, invSize);\n }\n\n break;\n }\n }\n}\n\n// check whether a polygon node forms a valid ear with adjacent nodes\nfunction isEar(ear) {\n var a = ear.prev,\n b = ear,\n c = ear.next;\n\n if (area(a, b, c) >= 0) return false; // reflex, can't be an ear\n\n // now make sure we don't have other points inside the potential ear\n var p = ear.next.next;\n\n while (p !== ear.prev) {\n if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.next;\n }\n\n return true;\n}\n\nfunction isEarHashed(ear, minX, minY, invSize) {\n var a = ear.prev,\n b = ear,\n c = ear.next;\n\n if (area(a, b, c) >= 0) return false; // reflex, can't be an ear\n\n // triangle bbox; min & max are calculated like this for speed\n var minTX = a.x < b.x ? (a.x < c.x ? a.x : c.x) : (b.x < c.x ? b.x : c.x),\n minTY = a.y < b.y ? (a.y < c.y ? a.y : c.y) : (b.y < c.y ? b.y : c.y),\n maxTX = a.x > b.x ? (a.x > c.x ? a.x : c.x) : (b.x > c.x ? b.x : c.x),\n maxTY = a.y > b.y ? (a.y > c.y ? a.y : c.y) : (b.y > c.y ? b.y : c.y);\n\n // z-order range for the current triangle bbox;\n var minZ = zOrder(minTX, minTY, minX, minY, invSize),\n maxZ = zOrder(maxTX, maxTY, minX, minY, invSize);\n\n var p = ear.prevZ,\n n = ear.nextZ;\n\n // look for points inside the triangle in both directions\n while (p && p.z >= minZ && n && n.z <= maxZ) {\n if (p !== ear.prev && p !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.prevZ;\n\n if (n !== ear.prev && n !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) &&\n area(n.prev, n, n.next) >= 0) return false;\n n = n.nextZ;\n }\n\n // look for remaining points in decreasing z-order\n while (p && p.z >= minZ) {\n if (p !== ear.prev && p !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.prevZ;\n }\n\n // look for remaining points in increasing z-order\n while (n && n.z <= maxZ) {\n if (n !== ear.prev && n !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) &&\n area(n.prev, n, n.next) >= 0) return false;\n n = n.nextZ;\n }\n\n return true;\n}\n\n// go through all polygon nodes and cure small local self-intersections\nfunction cureLocalIntersections(start, triangles, dim) {\n var p = start;\n do {\n var a = p.prev,\n b = p.next.next;\n\n if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) {\n\n triangles.push(a.i / dim);\n triangles.push(p.i / dim);\n triangles.push(b.i / dim);\n\n // remove two nodes involved\n removeNode(p);\n removeNode(p.next);\n\n p = start = b;\n }\n p = p.next;\n } while (p !== start);\n\n return filterPoints(p);\n}\n\n// try splitting polygon into two and triangulate them independently\nfunction splitEarcut(start, triangles, dim, minX, minY, invSize) {\n // look for a valid diagonal that divides the polygon into two\n var a = start;\n do {\n var b = a.next.next;\n while (b !== a.prev) {\n if (a.i !== b.i && isValidDiagonal(a, b)) {\n // split the polygon in two by the diagonal\n var c = splitPolygon(a, b);\n\n // filter colinear points around the cuts\n a = filterPoints(a, a.next);\n c = filterPoints(c, c.next);\n\n // run earcut on each half\n earcutLinked(a, triangles, dim, minX, minY, invSize);\n earcutLinked(c, triangles, dim, minX, minY, invSize);\n return;\n }\n b = b.next;\n }\n a = a.next;\n } while (a !== start);\n}\n\n// link every hole into the outer loop, producing a single-ring polygon without holes\nfunction eliminateHoles(data, holeIndices, outerNode, dim) {\n var queue = [],\n i, len, start, end, list;\n\n for (i = 0, len = holeIndices.length; i < len; i++) {\n start = holeIndices[i] * dim;\n end = i < len - 1 ? holeIndices[i + 1] * dim : data.length;\n list = linkedList(data, start, end, dim, false);\n if (list === list.next) list.steiner = true;\n queue.push(getLeftmost(list));\n }\n\n queue.sort(compareX);\n\n // process holes from left to right\n for (i = 0; i < queue.length; i++) {\n eliminateHole(queue[i], outerNode);\n outerNode = filterPoints(outerNode, outerNode.next);\n }\n\n return outerNode;\n}\n\nfunction compareX(a, b) {\n return a.x - b.x;\n}\n\n// find a bridge between vertices that connects hole with an outer ring and and link it\nfunction eliminateHole(hole, outerNode) {\n outerNode = findHoleBridge(hole, outerNode);\n if (outerNode) {\n var b = splitPolygon(outerNode, hole);\n filterPoints(b, b.next);\n }\n}\n\n// David Eberly's algorithm for finding a bridge between hole and outer polygon\nfunction findHoleBridge(hole, outerNode) {\n var p = outerNode,\n hx = hole.x,\n hy = hole.y,\n qx = -Infinity,\n m;\n\n // find a segment intersected by a ray from the hole's leftmost point to the left;\n // segment's endpoint with lesser x will be potential connection point\n do {\n if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) {\n var x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y);\n if (x <= hx && x > qx) {\n qx = x;\n if (x === hx) {\n if (hy === p.y) return p;\n if (hy === p.next.y) return p.next;\n }\n m = p.x < p.next.x ? p : p.next;\n }\n }\n p = p.next;\n } while (p !== outerNode);\n\n if (!m) return null;\n\n if (hx === qx) return m; // hole touches outer segment; pick leftmost endpoint\n\n // look for points inside the triangle of hole point, segment intersection and endpoint;\n // if there are no points found, we have a valid connection;\n // otherwise choose the point of the minimum angle with the ray as connection point\n\n var stop = m,\n mx = m.x,\n my = m.y,\n tanMin = Infinity,\n tan;\n\n p = m;\n\n do {\n if (hx >= p.x && p.x >= mx && hx !== p.x &&\n pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) {\n\n tan = Math.abs(hy - p.y) / (hx - p.x); // tangential\n\n if (locallyInside(p, hole) &&\n (tan < tanMin || (tan === tanMin && (p.x > m.x || (p.x === m.x && sectorContainsSector(m, p)))))) {\n m = p;\n tanMin = tan;\n }\n }\n\n p = p.next;\n } while (p !== stop);\n\n return m;\n}\n\n// whether sector in vertex m contains sector in vertex p in the same coordinates\nfunction sectorContainsSector(m, p) {\n return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0;\n}\n\n// interlink polygon nodes in z-order\nfunction indexCurve(start, minX, minY, invSize) {\n var p = start;\n do {\n if (p.z === null) p.z = zOrder(p.x, p.y, minX, minY, invSize);\n p.prevZ = p.prev;\n p.nextZ = p.next;\n p = p.next;\n } while (p !== start);\n\n p.prevZ.nextZ = null;\n p.prevZ = null;\n\n sortLinked(p);\n}\n\n// Simon Tatham's linked list merge sort algorithm\n// http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html\nfunction sortLinked(list) {\n var i, p, q, e, tail, numMerges, pSize, qSize,\n inSize = 1;\n\n do {\n p = list;\n list = null;\n tail = null;\n numMerges = 0;\n\n while (p) {\n numMerges++;\n q = p;\n pSize = 0;\n for (i = 0; i < inSize; i++) {\n pSize++;\n q = q.nextZ;\n if (!q) break;\n }\n qSize = inSize;\n\n while (pSize > 0 || (qSize > 0 && q)) {\n\n if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) {\n e = p;\n p = p.nextZ;\n pSize--;\n } else {\n e = q;\n q = q.nextZ;\n qSize--;\n }\n\n if (tail) tail.nextZ = e;\n else list = e;\n\n e.prevZ = tail;\n tail = e;\n }\n\n p = q;\n }\n\n tail.nextZ = null;\n inSize *= 2;\n\n } while (numMerges > 1);\n\n return list;\n}\n\n// z-order of a point given coords and inverse of the longer side of data bbox\nfunction zOrder(x, y, minX, minY, invSize) {\n // coords are transformed into non-negative 15-bit integer range\n x = 32767 * (x - minX) * invSize;\n y = 32767 * (y - minY) * invSize;\n\n x = (x | (x << 8)) & 0x00FF00FF;\n x = (x | (x << 4)) & 0x0F0F0F0F;\n x = (x | (x << 2)) & 0x33333333;\n x = (x | (x << 1)) & 0x55555555;\n\n y = (y | (y << 8)) & 0x00FF00FF;\n y = (y | (y << 4)) & 0x0F0F0F0F;\n y = (y | (y << 2)) & 0x33333333;\n y = (y | (y << 1)) & 0x55555555;\n\n return x | (y << 1);\n}\n\n// find the leftmost node of a polygon ring\nfunction getLeftmost(start) {\n var p = start,\n leftmost = start;\n do {\n if (p.x < leftmost.x || (p.x === leftmost.x && p.y < leftmost.y)) leftmost = p;\n p = p.next;\n } while (p !== start);\n\n return leftmost;\n}\n\n// check if a point lies within a convex triangle\nfunction pointInTriangle(ax, ay, bx, by, cx, cy, px, py) {\n return (cx - px) * (ay - py) - (ax - px) * (cy - py) >= 0 &&\n (ax - px) * (by - py) - (bx - px) * (ay - py) >= 0 &&\n (bx - px) * (cy - py) - (cx - px) * (by - py) >= 0;\n}\n\n// check if a diagonal between two polygon nodes is valid (lies in polygon interior)\nfunction isValidDiagonal(a, b) {\n return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && // dones't intersect other edges\n (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && // locally visible\n (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors\n equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case\n}\n\n// signed area of a triangle\nfunction area(p, q, r) {\n return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y);\n}\n\n// check if two points are equal\nfunction equals(p1, p2) {\n return p1.x === p2.x && p1.y === p2.y;\n}\n\n// check if two segments intersect\nfunction intersects(p1, q1, p2, q2) {\n var o1 = sign(area(p1, q1, p2));\n var o2 = sign(area(p1, q1, q2));\n var o3 = sign(area(p2, q2, p1));\n var o4 = sign(area(p2, q2, q1));\n\n if (o1 !== o2 && o3 !== o4) return true; // general case\n\n if (o1 === 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p1q1\n if (o2 === 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p1q1\n if (o3 === 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p2q2\n if (o4 === 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p2q2\n\n return false;\n}\n\n// for collinear points p, q, r, check if point q lies on segment pr\nfunction onSegment(p, q, r) {\n return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y);\n}\n\nfunction sign(num) {\n return num > 0 ? 1 : num < 0 ? -1 : 0;\n}\n\n// check if a polygon diagonal intersects any polygon segments\nfunction intersectsPolygon(a, b) {\n var p = a;\n do {\n if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i &&\n intersects(p, p.next, a, b)) return true;\n p = p.next;\n } while (p !== a);\n\n return false;\n}\n\n// check if a polygon diagonal is locally inside the polygon\nfunction locallyInside(a, b) {\n return area(a.prev, a, a.next) < 0 ?\n area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 :\n area(a, b, a.prev) < 0 || area(a, a.next, b) < 0;\n}\n\n// check if the middle point of a polygon diagonal is inside the polygon\nfunction middleInside(a, b) {\n var p = a,\n inside = false,\n px = (a.x + b.x) / 2,\n py = (a.y + b.y) / 2;\n do {\n if (((p.y > py) !== (p.next.y > py)) && p.next.y !== p.y &&\n (px < (p.next.x - p.x) * (py - p.y) / (p.next.y - p.y) + p.x))\n inside = !inside;\n p = p.next;\n } while (p !== a);\n\n return inside;\n}\n\n// link two polygon vertices with a bridge; if the vertices belong to the same ring, it splits polygon into two;\n// if one belongs to the outer ring and another to a hole, it merges it into a single ring\nfunction splitPolygon(a, b) {\n var a2 = new Node(a.i, a.x, a.y),\n b2 = new Node(b.i, b.x, b.y),\n an = a.next,\n bp = b.prev;\n\n a.next = b;\n b.prev = a;\n\n a2.next = an;\n an.prev = a2;\n\n b2.next = a2;\n a2.prev = b2;\n\n bp.next = b2;\n b2.prev = bp;\n\n return b2;\n}\n\n// create a node and optionally link it with previous one (in a circular doubly linked list)\nfunction insertNode(i, x, y, last) {\n var p = new Node(i, x, y);\n\n if (!last) {\n p.prev = p;\n p.next = p;\n\n } else {\n p.next = last.next;\n p.prev = last;\n last.next.prev = p;\n last.next = p;\n }\n return p;\n}\n\nfunction removeNode(p) {\n p.next.prev = p.prev;\n p.prev.next = p.next;\n\n if (p.prevZ) p.prevZ.nextZ = p.nextZ;\n if (p.nextZ) p.nextZ.prevZ = p.prevZ;\n}\n\nfunction Node(i, x, y) {\n // vertex index in coordinates array\n this.i = i;\n\n // vertex coordinates\n this.x = x;\n this.y = y;\n\n // previous and next vertex nodes in a polygon ring\n this.prev = null;\n this.next = null;\n\n // z-order curve value\n this.z = null;\n\n // previous and next nodes in z-order\n this.prevZ = null;\n this.nextZ = null;\n\n // indicates whether this is a steiner point\n this.steiner = false;\n}\n\n// return a percentage difference between the polygon area and its triangulation area;\n// used to verify correctness of triangulation\nearcut.deviation = function (data, holeIndices, dim, triangles) {\n var hasHoles = holeIndices && holeIndices.length;\n var outerLen = hasHoles ? holeIndices[0] * dim : data.length;\n\n var polygonArea = Math.abs(signedArea(data, 0, outerLen, dim));\n if (hasHoles) {\n for (var i = 0, len = holeIndices.length; i < len; i++) {\n var start = holeIndices[i] * dim;\n var end = i < len - 1 ? holeIndices[i + 1] * dim : data.length;\n polygonArea -= Math.abs(signedArea(data, start, end, dim));\n }\n }\n\n var trianglesArea = 0;\n for (i = 0; i < triangles.length; i += 3) {\n var a = triangles[i] * dim;\n var b = triangles[i + 1] * dim;\n var c = triangles[i + 2] * dim;\n trianglesArea += Math.abs(\n (data[a] - data[c]) * (data[b + 1] - data[a + 1]) -\n (data[a] - data[b]) * (data[c + 1] - data[a + 1]));\n }\n\n return polygonArea === 0 && trianglesArea === 0 ? 0 :\n Math.abs((trianglesArea - polygonArea) / polygonArea);\n};\n\nfunction signedArea(data, start, end, dim) {\n var sum = 0;\n for (var i = start, j = end - dim; i < end; i += dim) {\n sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]);\n j = i;\n }\n return sum;\n}\n\n// turn a polygon in a multi-dimensional array form (e.g. as in GeoJSON) into a form Earcut accepts\nearcut.flatten = function (data) {\n var dim = data[0][0].length,\n result = {vertices: [], holes: [], dimensions: dim},\n holeIndex = 0;\n\n for (var i = 0; i < data.length; i++) {\n for (var j = 0; j < data[i].length; j++) {\n for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]);\n }\n if (i > 0) {\n holeIndex += data[i - 1].length;\n result.holes.push(holeIndex);\n }\n }\n return result;\n};\n","/*! https://mths.be/punycode v1.4.1 by @mathias */\n\n\n/** Highest positive signed 32-bit float value */\nvar maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1\n\n/** Bootstring parameters */\nvar base = 36;\nvar tMin = 1;\nvar tMax = 26;\nvar skew = 38;\nvar damp = 700;\nvar initialBias = 72;\nvar initialN = 128; // 0x80\nvar delimiter = '-'; // '\\x2D'\n\n/** Regular expressions */\nvar regexPunycode = /^xn--/;\nvar regexNonASCII = /[^\\x20-\\x7E]/; // unprintable ASCII chars + non-ASCII chars\nvar regexSeparators = /[\\x2E\\u3002\\uFF0E\\uFF61]/g; // RFC 3490 separators\n\n/** Error messages */\nvar errors = {\n 'overflow': 'Overflow: input needs wider integers to process',\n 'not-basic': 'Illegal input >= 0x80 (not a basic code point)',\n 'invalid-input': 'Invalid input'\n};\n\n/** Convenience shortcuts */\nvar baseMinusTMin = base - tMin;\nvar floor = Math.floor;\nvar stringFromCharCode = String.fromCharCode;\n\n/*--------------------------------------------------------------------------*/\n\n/**\n * A generic error utility function.\n * @private\n * @param {String} type The error type.\n * @returns {Error} Throws a `RangeError` with the applicable error message.\n */\nfunction error(type) {\n throw new RangeError(errors[type]);\n}\n\n/**\n * A generic `Array#map` utility function.\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} callback The function that gets called for every array\n * item.\n * @returns {Array} A new array of values returned by the callback function.\n */\nfunction map(array, fn) {\n var length = array.length;\n var result = [];\n while (length--) {\n result[length] = fn(array[length]);\n }\n return result;\n}\n\n/**\n * A simple `Array#map`-like wrapper to work with domain name strings or email\n * addresses.\n * @private\n * @param {String} domain The domain name or email address.\n * @param {Function} callback The function that gets called for every\n * character.\n * @returns {Array} A new string of characters returned by the callback\n * function.\n */\nfunction mapDomain(string, fn) {\n var parts = string.split('@');\n var result = '';\n if (parts.length > 1) {\n // In email addresses, only the domain name should be punycoded. Leave\n // the local part (i.e. everything up to `@`) intact.\n result = parts[0] + '@';\n string = parts[1];\n }\n // Avoid `split(regex)` for IE8 compatibility. See #17.\n string = string.replace(regexSeparators, '\\x2E');\n var labels = string.split('.');\n var encoded = map(labels, fn).join('.');\n return result + encoded;\n}\n\n/**\n * Creates an array containing the numeric code points of each Unicode\n * character in the string. While JavaScript uses UCS-2 internally,\n * this function will convert a pair of surrogate halves (each of which\n * UCS-2 exposes as separate characters) into a single code point,\n * matching UTF-16.\n * @see `punycode.ucs2.encode`\n * @see \n * @memberOf punycode.ucs2\n * @name decode\n * @param {String} string The Unicode input string (UCS-2).\n * @returns {Array} The new array of code points.\n */\nfunction ucs2decode(string) {\n var output = [],\n counter = 0,\n length = string.length,\n value,\n extra;\n while (counter < length) {\n value = string.charCodeAt(counter++);\n if (value >= 0xD800 && value <= 0xDBFF && counter < length) {\n // high surrogate, and there is a next character\n extra = string.charCodeAt(counter++);\n if ((extra & 0xFC00) == 0xDC00) { // low surrogate\n output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000);\n } else {\n // unmatched surrogate; only append this code unit, in case the next\n // code unit is the high surrogate of a surrogate pair\n output.push(value);\n counter--;\n }\n } else {\n output.push(value);\n }\n }\n return output;\n}\n\n/**\n * Creates a string based on an array of numeric code points.\n * @see `punycode.ucs2.decode`\n * @memberOf punycode.ucs2\n * @name encode\n * @param {Array} codePoints The array of numeric code points.\n * @returns {String} The new Unicode string (UCS-2).\n */\nfunction ucs2encode(array) {\n return map(array, function(value) {\n var output = '';\n if (value > 0xFFFF) {\n value -= 0x10000;\n output += stringFromCharCode(value >>> 10 & 0x3FF | 0xD800);\n value = 0xDC00 | value & 0x3FF;\n }\n output += stringFromCharCode(value);\n return output;\n }).join('');\n}\n\n/**\n * Converts a basic code point into a digit/integer.\n * @see `digitToBasic()`\n * @private\n * @param {Number} codePoint The basic numeric code point value.\n * @returns {Number} The numeric value of a basic code point (for use in\n * representing integers) in the range `0` to `base - 1`, or `base` if\n * the code point does not represent a value.\n */\nfunction basicToDigit(codePoint) {\n if (codePoint - 48 < 10) {\n return codePoint - 22;\n }\n if (codePoint - 65 < 26) {\n return codePoint - 65;\n }\n if (codePoint - 97 < 26) {\n return codePoint - 97;\n }\n return base;\n}\n\n/**\n * Converts a digit/integer into a basic code point.\n * @see `basicToDigit()`\n * @private\n * @param {Number} digit The numeric value of a basic code point.\n * @returns {Number} The basic code point whose value (when used for\n * representing integers) is `digit`, which needs to be in the range\n * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is\n * used; else, the lowercase form is used. The behavior is undefined\n * if `flag` is non-zero and `digit` has no uppercase form.\n */\nfunction digitToBasic(digit, flag) {\n // 0..25 map to ASCII a..z or A..Z\n // 26..35 map to ASCII 0..9\n return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5);\n}\n\n/**\n * Bias adaptation function as per section 3.4 of RFC 3492.\n * https://tools.ietf.org/html/rfc3492#section-3.4\n * @private\n */\nfunction adapt(delta, numPoints, firstTime) {\n var k = 0;\n delta = firstTime ? floor(delta / damp) : delta >> 1;\n delta += floor(delta / numPoints);\n for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) {\n delta = floor(delta / baseMinusTMin);\n }\n return floor(k + (baseMinusTMin + 1) * delta / (delta + skew));\n}\n\n/**\n * Converts a Punycode string of ASCII-only symbols to a string of Unicode\n * symbols.\n * @memberOf punycode\n * @param {String} input The Punycode string of ASCII-only symbols.\n * @returns {String} The resulting string of Unicode symbols.\n */\nexport function decode(input) {\n // Don't use UCS-2\n var output = [],\n inputLength = input.length,\n out,\n i = 0,\n n = initialN,\n bias = initialBias,\n basic,\n j,\n index,\n oldi,\n w,\n k,\n digit,\n t,\n /** Cached calculation results */\n baseMinusT;\n\n // Handle the basic code points: let `basic` be the number of input code\n // points before the last delimiter, or `0` if there is none, then copy\n // the first basic code points to the output.\n\n basic = input.lastIndexOf(delimiter);\n if (basic < 0) {\n basic = 0;\n }\n\n for (j = 0; j < basic; ++j) {\n // if it's not a basic code point\n if (input.charCodeAt(j) >= 0x80) {\n error('not-basic');\n }\n output.push(input.charCodeAt(j));\n }\n\n // Main decoding loop: start just after the last delimiter if any basic code\n // points were copied; start at the beginning otherwise.\n\n for (index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */ ) {\n\n // `index` is the index of the next character to be consumed.\n // Decode a generalized variable-length integer into `delta`,\n // which gets added to `i`. The overflow checking is easier\n // if we increase `i` as we go, then subtract off its starting\n // value at the end to obtain `delta`.\n for (oldi = i, w = 1, k = base; /* no condition */ ; k += base) {\n\n if (index >= inputLength) {\n error('invalid-input');\n }\n\n digit = basicToDigit(input.charCodeAt(index++));\n\n if (digit >= base || digit > floor((maxInt - i) / w)) {\n error('overflow');\n }\n\n i += digit * w;\n t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n\n if (digit < t) {\n break;\n }\n\n baseMinusT = base - t;\n if (w > floor(maxInt / baseMinusT)) {\n error('overflow');\n }\n\n w *= baseMinusT;\n\n }\n\n out = output.length + 1;\n bias = adapt(i - oldi, out, oldi == 0);\n\n // `i` was supposed to wrap around from `out` to `0`,\n // incrementing `n` each time, so we'll fix that now:\n if (floor(i / out) > maxInt - n) {\n error('overflow');\n }\n\n n += floor(i / out);\n i %= out;\n\n // Insert `n` at position `i` of the output\n output.splice(i++, 0, n);\n\n }\n\n return ucs2encode(output);\n}\n\n/**\n * Converts a string of Unicode symbols (e.g. a domain name label) to a\n * Punycode string of ASCII-only symbols.\n * @memberOf punycode\n * @param {String} input The string of Unicode symbols.\n * @returns {String} The resulting Punycode string of ASCII-only symbols.\n */\nexport function encode(input) {\n var n,\n delta,\n handledCPCount,\n basicLength,\n bias,\n j,\n m,\n q,\n k,\n t,\n currentValue,\n output = [],\n /** `inputLength` will hold the number of code points in `input`. */\n inputLength,\n /** Cached calculation results */\n handledCPCountPlusOne,\n baseMinusT,\n qMinusT;\n\n // Convert the input in UCS-2 to Unicode\n input = ucs2decode(input);\n\n // Cache the length\n inputLength = input.length;\n\n // Initialize the state\n n = initialN;\n delta = 0;\n bias = initialBias;\n\n // Handle the basic code points\n for (j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n if (currentValue < 0x80) {\n output.push(stringFromCharCode(currentValue));\n }\n }\n\n handledCPCount = basicLength = output.length;\n\n // `handledCPCount` is the number of code points that have been handled;\n // `basicLength` is the number of basic code points.\n\n // Finish the basic string - if it is not empty - with a delimiter\n if (basicLength) {\n output.push(delimiter);\n }\n\n // Main encoding loop:\n while (handledCPCount < inputLength) {\n\n // All non-basic code points < n have been handled already. Find the next\n // larger one:\n for (m = maxInt, j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n if (currentValue >= n && currentValue < m) {\n m = currentValue;\n }\n }\n\n // Increase `delta` enough to advance the decoder's state to ,\n // but guard against overflow\n handledCPCountPlusOne = handledCPCount + 1;\n if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) {\n error('overflow');\n }\n\n delta += (m - n) * handledCPCountPlusOne;\n n = m;\n\n for (j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n\n if (currentValue < n && ++delta > maxInt) {\n error('overflow');\n }\n\n if (currentValue == n) {\n // Represent delta as a generalized variable-length integer\n for (q = delta, k = base; /* no condition */ ; k += base) {\n t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n if (q < t) {\n break;\n }\n qMinusT = q - t;\n baseMinusT = base - t;\n output.push(\n stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0))\n );\n q = floor(qMinusT / baseMinusT);\n }\n\n output.push(stringFromCharCode(digitToBasic(q, 0)));\n bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength);\n delta = 0;\n ++handledCPCount;\n }\n }\n\n ++delta;\n ++n;\n\n }\n return output.join('');\n}\n\n/**\n * Converts a Punycode string representing a domain name or an email address\n * to Unicode. Only the Punycoded parts of the input will be converted, i.e.\n * it doesn't matter if you call it on a string that has already been\n * converted to Unicode.\n * @memberOf punycode\n * @param {String} input The Punycoded domain name or email address to\n * convert to Unicode.\n * @returns {String} The Unicode representation of the given Punycode\n * string.\n */\nexport function toUnicode(input) {\n return mapDomain(input, function(string) {\n return regexPunycode.test(string) ?\n decode(string.slice(4).toLowerCase()) :\n string;\n });\n}\n\n/**\n * Converts a Unicode string representing a domain name or an email address to\n * Punycode. Only the non-ASCII parts of the domain name will be converted,\n * i.e. it doesn't matter if you call it with a domain that's already in\n * ASCII.\n * @memberOf punycode\n * @param {String} input The domain name or email address to convert, as a\n * Unicode string.\n * @returns {String} The Punycode representation of the given domain name or\n * email address.\n */\nexport function toASCII(input) {\n return mapDomain(input, function(string) {\n return regexNonASCII.test(string) ?\n 'xn--' + encode(string) :\n string;\n });\n}\nexport var version = '1.4.1';\n/**\n * An object of methods to convert from JavaScript's internal character\n * representation (UCS-2) to Unicode code points, and back.\n * @see \n * @memberOf punycode\n * @type Object\n */\n\nexport var ucs2 = {\n decode: ucs2decode,\n encode: ucs2encode\n};\nexport default {\n version: version,\n ucs2: ucs2,\n toASCII: toASCII,\n toUnicode: toUnicode,\n encode: encode,\n decode: decode\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\nimport process from 'process';\nvar formatRegExp = /%[sdj%]/g;\nexport function format(f) {\n if (!isString(f)) {\n var objects = [];\n for (var i = 0; i < arguments.length; i++) {\n objects.push(inspect(arguments[i]));\n }\n return objects.join(' ');\n }\n\n var i = 1;\n var args = arguments;\n var len = args.length;\n var str = String(f).replace(formatRegExp, function(x) {\n if (x === '%%') return '%';\n if (i >= len) return x;\n switch (x) {\n case '%s': return String(args[i++]);\n case '%d': return Number(args[i++]);\n case '%j':\n try {\n return JSON.stringify(args[i++]);\n } catch (_) {\n return '[Circular]';\n }\n default:\n return x;\n }\n });\n for (var x = args[i]; i < len; x = args[++i]) {\n if (isNull(x) || !isObject(x)) {\n str += ' ' + x;\n } else {\n str += ' ' + inspect(x);\n }\n }\n return str;\n};\n\n\n// Mark that a method should not be used.\n// Returns a modified function which warns once by default.\n// If --no-deprecation is set, then it is a no-op.\nexport function deprecate(fn, msg) {\n // Allow for deprecating things in the process of starting up.\n if (isUndefined(global.process)) {\n return function() {\n return deprecate(fn, msg).apply(this, arguments);\n };\n }\n\n if (process.noDeprecation === true) {\n return fn;\n }\n\n var warned = false;\n function deprecated() {\n if (!warned) {\n if (process.throwDeprecation) {\n throw new Error(msg);\n } else if (process.traceDeprecation) {\n console.trace(msg);\n } else {\n console.error(msg);\n }\n warned = true;\n }\n return fn.apply(this, arguments);\n }\n\n return deprecated;\n};\n\n\nvar debugs = {};\nvar debugEnviron;\nexport function debuglog(set) {\n if (isUndefined(debugEnviron))\n debugEnviron = process.env.NODE_DEBUG || '';\n set = set.toUpperCase();\n if (!debugs[set]) {\n if (new RegExp('\\\\b' + set + '\\\\b', 'i').test(debugEnviron)) {\n var pid = 0;\n debugs[set] = function() {\n var msg = format.apply(null, arguments);\n console.error('%s %d: %s', set, pid, msg);\n };\n } else {\n debugs[set] = function() {};\n }\n }\n return debugs[set];\n};\n\n\n/**\n * Echos the value of a value. Trys to print the value out\n * in the best way possible given the different types.\n *\n * @param {Object} obj The object to print out.\n * @param {Object} opts Optional options object that alters the output.\n */\n/* legacy: obj, showHidden, depth, colors*/\nexport function inspect(obj, opts) {\n // default options\n var ctx = {\n seen: [],\n stylize: stylizeNoColor\n };\n // legacy...\n if (arguments.length >= 3) ctx.depth = arguments[2];\n if (arguments.length >= 4) ctx.colors = arguments[3];\n if (isBoolean(opts)) {\n // legacy...\n ctx.showHidden = opts;\n } else if (opts) {\n // got an \"options\" object\n _extend(ctx, opts);\n }\n // set default options\n if (isUndefined(ctx.showHidden)) ctx.showHidden = false;\n if (isUndefined(ctx.depth)) ctx.depth = 2;\n if (isUndefined(ctx.colors)) ctx.colors = false;\n if (isUndefined(ctx.customInspect)) ctx.customInspect = true;\n if (ctx.colors) ctx.stylize = stylizeWithColor;\n return formatValue(ctx, obj, ctx.depth);\n}\n\n// http://en.wikipedia.org/wiki/ANSI_escape_code#graphics\ninspect.colors = {\n 'bold' : [1, 22],\n 'italic' : [3, 23],\n 'underline' : [4, 24],\n 'inverse' : [7, 27],\n 'white' : [37, 39],\n 'grey' : [90, 39],\n 'black' : [30, 39],\n 'blue' : [34, 39],\n 'cyan' : [36, 39],\n 'green' : [32, 39],\n 'magenta' : [35, 39],\n 'red' : [31, 39],\n 'yellow' : [33, 39]\n};\n\n// Don't use 'blue' not visible on cmd.exe\ninspect.styles = {\n 'special': 'cyan',\n 'number': 'yellow',\n 'boolean': 'yellow',\n 'undefined': 'grey',\n 'null': 'bold',\n 'string': 'green',\n 'date': 'magenta',\n // \"name\": intentionally not styling\n 'regexp': 'red'\n};\n\n\nfunction stylizeWithColor(str, styleType) {\n var style = inspect.styles[styleType];\n\n if (style) {\n return '\\u001b[' + inspect.colors[style][0] + 'm' + str +\n '\\u001b[' + inspect.colors[style][1] + 'm';\n } else {\n return str;\n }\n}\n\n\nfunction stylizeNoColor(str, styleType) {\n return str;\n}\n\n\nfunction arrayToHash(array) {\n var hash = {};\n\n array.forEach(function(val, idx) {\n hash[val] = true;\n });\n\n return hash;\n}\n\n\nfunction formatValue(ctx, value, recurseTimes) {\n // Provide a hook for user-specified inspect functions.\n // Check that value is an object with an inspect function on it\n if (ctx.customInspect &&\n value &&\n isFunction(value.inspect) &&\n // Filter out the util module, it's inspect function is special\n value.inspect !== inspect &&\n // Also filter out any prototype objects using the circular check.\n !(value.constructor && value.constructor.prototype === value)) {\n var ret = value.inspect(recurseTimes, ctx);\n if (!isString(ret)) {\n ret = formatValue(ctx, ret, recurseTimes);\n }\n return ret;\n }\n\n // Primitive types cannot have properties\n var primitive = formatPrimitive(ctx, value);\n if (primitive) {\n return primitive;\n }\n\n // Look up the keys of the object.\n var keys = Object.keys(value);\n var visibleKeys = arrayToHash(keys);\n\n if (ctx.showHidden) {\n keys = Object.getOwnPropertyNames(value);\n }\n\n // IE doesn't make error fields non-enumerable\n // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx\n if (isError(value)\n && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) {\n return formatError(value);\n }\n\n // Some type of object without properties can be shortcutted.\n if (keys.length === 0) {\n if (isFunction(value)) {\n var name = value.name ? ': ' + value.name : '';\n return ctx.stylize('[Function' + name + ']', 'special');\n }\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n }\n if (isDate(value)) {\n return ctx.stylize(Date.prototype.toString.call(value), 'date');\n }\n if (isError(value)) {\n return formatError(value);\n }\n }\n\n var base = '', array = false, braces = ['{', '}'];\n\n // Make Array say that they are Array\n if (isArray(value)) {\n array = true;\n braces = ['[', ']'];\n }\n\n // Make functions say that they are functions\n if (isFunction(value)) {\n var n = value.name ? ': ' + value.name : '';\n base = ' [Function' + n + ']';\n }\n\n // Make RegExps say that they are RegExps\n if (isRegExp(value)) {\n base = ' ' + RegExp.prototype.toString.call(value);\n }\n\n // Make dates with properties first say the date\n if (isDate(value)) {\n base = ' ' + Date.prototype.toUTCString.call(value);\n }\n\n // Make error with message first say the error\n if (isError(value)) {\n base = ' ' + formatError(value);\n }\n\n if (keys.length === 0 && (!array || value.length == 0)) {\n return braces[0] + base + braces[1];\n }\n\n if (recurseTimes < 0) {\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n } else {\n return ctx.stylize('[Object]', 'special');\n }\n }\n\n ctx.seen.push(value);\n\n var output;\n if (array) {\n output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);\n } else {\n output = keys.map(function(key) {\n return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array);\n });\n }\n\n ctx.seen.pop();\n\n return reduceToSingleString(output, base, braces);\n}\n\n\nfunction formatPrimitive(ctx, value) {\n if (isUndefined(value))\n return ctx.stylize('undefined', 'undefined');\n if (isString(value)) {\n var simple = '\\'' + JSON.stringify(value).replace(/^\"|\"$/g, '')\n .replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"') + '\\'';\n return ctx.stylize(simple, 'string');\n }\n if (isNumber(value))\n return ctx.stylize('' + value, 'number');\n if (isBoolean(value))\n return ctx.stylize('' + value, 'boolean');\n // For some reason typeof null is \"object\", so special case here.\n if (isNull(value))\n return ctx.stylize('null', 'null');\n}\n\n\nfunction formatError(value) {\n return '[' + Error.prototype.toString.call(value) + ']';\n}\n\n\nfunction formatArray(ctx, value, recurseTimes, visibleKeys, keys) {\n var output = [];\n for (var i = 0, l = value.length; i < l; ++i) {\n if (hasOwnProperty(value, String(i))) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n String(i), true));\n } else {\n output.push('');\n }\n }\n keys.forEach(function(key) {\n if (!key.match(/^\\d+$/)) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n key, true));\n }\n });\n return output;\n}\n\n\nfunction formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {\n var name, str, desc;\n desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] };\n if (desc.get) {\n if (desc.set) {\n str = ctx.stylize('[Getter/Setter]', 'special');\n } else {\n str = ctx.stylize('[Getter]', 'special');\n }\n } else {\n if (desc.set) {\n str = ctx.stylize('[Setter]', 'special');\n }\n }\n if (!hasOwnProperty(visibleKeys, key)) {\n name = '[' + key + ']';\n }\n if (!str) {\n if (ctx.seen.indexOf(desc.value) < 0) {\n if (isNull(recurseTimes)) {\n str = formatValue(ctx, desc.value, null);\n } else {\n str = formatValue(ctx, desc.value, recurseTimes - 1);\n }\n if (str.indexOf('\\n') > -1) {\n if (array) {\n str = str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n').substr(2);\n } else {\n str = '\\n' + str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n');\n }\n }\n } else {\n str = ctx.stylize('[Circular]', 'special');\n }\n }\n if (isUndefined(name)) {\n if (array && key.match(/^\\d+$/)) {\n return str;\n }\n name = JSON.stringify('' + key);\n if (name.match(/^\"([a-zA-Z_][a-zA-Z_0-9]*)\"$/)) {\n name = name.substr(1, name.length - 2);\n name = ctx.stylize(name, 'name');\n } else {\n name = name.replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"')\n .replace(/(^\"|\"$)/g, \"'\");\n name = ctx.stylize(name, 'string');\n }\n }\n\n return name + ': ' + str;\n}\n\n\nfunction reduceToSingleString(output, base, braces) {\n var numLinesEst = 0;\n var length = output.reduce(function(prev, cur) {\n numLinesEst++;\n if (cur.indexOf('\\n') >= 0) numLinesEst++;\n return prev + cur.replace(/\\u001b\\[\\d\\d?m/g, '').length + 1;\n }, 0);\n\n if (length > 60) {\n return braces[0] +\n (base === '' ? '' : base + '\\n ') +\n ' ' +\n output.join(',\\n ') +\n ' ' +\n braces[1];\n }\n\n return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];\n}\n\n\n// NOTE: These type checking functions intentionally don't use `instanceof`\n// because it is fragile and can be easily faked with `Object.create()`.\nexport function isArray(ar) {\n return Array.isArray(ar);\n}\n\nexport function isBoolean(arg) {\n return typeof arg === 'boolean';\n}\n\nexport function isNull(arg) {\n return arg === null;\n}\n\nexport function isNullOrUndefined(arg) {\n return arg == null;\n}\n\nexport function isNumber(arg) {\n return typeof arg === 'number';\n}\n\nexport function isString(arg) {\n return typeof arg === 'string';\n}\n\nexport function isSymbol(arg) {\n return typeof arg === 'symbol';\n}\n\nexport function isUndefined(arg) {\n return arg === void 0;\n}\n\nexport function isRegExp(re) {\n return isObject(re) && objectToString(re) === '[object RegExp]';\n}\n\nexport function isObject(arg) {\n return typeof arg === 'object' && arg !== null;\n}\n\nexport function isDate(d) {\n return isObject(d) && objectToString(d) === '[object Date]';\n}\n\nexport function isError(e) {\n return isObject(e) &&\n (objectToString(e) === '[object Error]' || e instanceof Error);\n}\n\nexport function isFunction(arg) {\n return typeof arg === 'function';\n}\n\nexport function isPrimitive(arg) {\n return arg === null ||\n typeof arg === 'boolean' ||\n typeof arg === 'number' ||\n typeof arg === 'string' ||\n typeof arg === 'symbol' || // ES6 symbol\n typeof arg === 'undefined';\n}\n\nexport function isBuffer(maybeBuf) {\n return Buffer.isBuffer(maybeBuf);\n}\n\nfunction objectToString(o) {\n return Object.prototype.toString.call(o);\n}\n\n\nfunction pad(n) {\n return n < 10 ? '0' + n.toString(10) : n.toString(10);\n}\n\n\nvar months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep',\n 'Oct', 'Nov', 'Dec'];\n\n// 26 Feb 16:19:34\nfunction timestamp() {\n var d = new Date();\n var time = [pad(d.getHours()),\n pad(d.getMinutes()),\n pad(d.getSeconds())].join(':');\n return [d.getDate(), months[d.getMonth()], time].join(' ');\n}\n\n\n// log is just a thin wrapper to console.log that prepends a timestamp\nexport function log() {\n console.log('%s - %s', timestamp(), format.apply(null, arguments));\n}\n\n\n/**\n * Inherit the prototype methods from one constructor into another.\n *\n * The Function.prototype.inherits from lang.js rewritten as a standalone\n * function (not on Function.prototype). NOTE: If this file is to be loaded\n * during bootstrapping this function needs to be rewritten using some native\n * functions as prototype setup using normal JavaScript does not work as\n * expected during bootstrapping (see mirror.js in r114903).\n *\n * @param {function} ctor Constructor function which needs to inherit the\n * prototype.\n * @param {function} superCtor Constructor function to inherit prototype from.\n */\nimport inherits from './inherits';\nexport {inherits}\n\nexport function _extend(origin, add) {\n // Don't do anything if add isn't an object\n if (!add || !isObject(add)) return origin;\n\n var keys = Object.keys(add);\n var i = keys.length;\n while (i--) {\n origin[keys[i]] = add[keys[i]];\n }\n return origin;\n};\n\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\n\nexport default {\n inherits: inherits,\n _extend: _extend,\n log: log,\n isBuffer: isBuffer,\n isPrimitive: isPrimitive,\n isFunction: isFunction,\n isError: isError,\n isDate: isDate,\n isObject: isObject,\n isRegExp: isRegExp,\n isUndefined: isUndefined,\n isSymbol: isSymbol,\n isString: isString,\n isNumber: isNumber,\n isNullOrUndefined: isNullOrUndefined,\n isNull: isNull,\n isBoolean: isBoolean,\n isArray: isArray,\n inspect: inspect,\n deprecate: deprecate,\n format: format,\n debuglog: debuglog\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n// If obj.hasOwnProperty has been overridden, then calling\n// obj.hasOwnProperty(prop) will break.\n// See: https://github.com/joyent/node/issues/1707\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\nvar isArray = Array.isArray || function (xs) {\n return Object.prototype.toString.call(xs) === '[object Array]';\n};\nfunction stringifyPrimitive(v) {\n switch (typeof v) {\n case 'string':\n return v;\n\n case 'boolean':\n return v ? 'true' : 'false';\n\n case 'number':\n return isFinite(v) ? v : '';\n\n default:\n return '';\n }\n}\n\nexport function stringify (obj, sep, eq, name) {\n sep = sep || '&';\n eq = eq || '=';\n if (obj === null) {\n obj = undefined;\n }\n\n if (typeof obj === 'object') {\n return map(objectKeys(obj), function(k) {\n var ks = encodeURIComponent(stringifyPrimitive(k)) + eq;\n if (isArray(obj[k])) {\n return map(obj[k], function(v) {\n return ks + encodeURIComponent(stringifyPrimitive(v));\n }).join(sep);\n } else {\n return ks + encodeURIComponent(stringifyPrimitive(obj[k]));\n }\n }).join(sep);\n\n }\n\n if (!name) return '';\n return encodeURIComponent(stringifyPrimitive(name)) + eq +\n encodeURIComponent(stringifyPrimitive(obj));\n};\n\nfunction map (xs, f) {\n if (xs.map) return xs.map(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n res.push(f(xs[i], i));\n }\n return res;\n}\n\nvar objectKeys = Object.keys || function (obj) {\n var res = [];\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key);\n }\n return res;\n};\n\nexport function parse(qs, sep, eq, options) {\n sep = sep || '&';\n eq = eq || '=';\n var obj = {};\n\n if (typeof qs !== 'string' || qs.length === 0) {\n return obj;\n }\n\n var regexp = /\\+/g;\n qs = qs.split(sep);\n\n var maxKeys = 1000;\n if (options && typeof options.maxKeys === 'number') {\n maxKeys = options.maxKeys;\n }\n\n var len = qs.length;\n // maxKeys <= 0 means that we should not limit keys count\n if (maxKeys > 0 && len > maxKeys) {\n len = maxKeys;\n }\n\n for (var i = 0; i < len; ++i) {\n var x = qs[i].replace(regexp, '%20'),\n idx = x.indexOf(eq),\n kstr, vstr, k, v;\n\n if (idx >= 0) {\n kstr = x.substr(0, idx);\n vstr = x.substr(idx + 1);\n } else {\n kstr = x;\n vstr = '';\n }\n\n k = decodeURIComponent(kstr);\n v = decodeURIComponent(vstr);\n\n if (!hasOwnProperty(obj, k)) {\n obj[k] = v;\n } else if (isArray(obj[k])) {\n obj[k].push(v);\n } else {\n obj[k] = [obj[k], v];\n }\n }\n\n return obj;\n};\nexport default {\n encode: stringify,\n stringify: stringify,\n decode: parse,\n parse: parse\n}\nexport {stringify as encode, parse as decode};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nimport {toASCII} from 'punycode';\nimport {isObject,isString,isNullOrUndefined,isNull} from 'util';\nimport {parse as qsParse,stringify as qsStringify} from 'querystring';\nexport {\n urlParse as parse,\n urlResolve as resolve,\n urlResolveObject as resolveObject,\n urlFormat as format\n};\nexport default {\n parse: urlParse,\n resolve: urlResolve,\n resolveObject: urlResolveObject,\n format: urlFormat,\n Url: Url\n}\nexport function Url() {\n this.protocol = null;\n this.slashes = null;\n this.auth = null;\n this.host = null;\n this.port = null;\n this.hostname = null;\n this.hash = null;\n this.search = null;\n this.query = null;\n this.pathname = null;\n this.path = null;\n this.href = null;\n}\n\n// Reference: RFC 3986, RFC 1808, RFC 2396\n\n// define these here so at least they only have to be\n// compiled once on the first module load.\nvar protocolPattern = /^([a-z0-9.+-]+:)/i,\n portPattern = /:[0-9]*$/,\n\n // Special case for a simple path URL\n simplePathPattern = /^(\\/\\/?(?!\\/)[^\\?\\s]*)(\\?[^\\s]*)?$/,\n\n // RFC 2396: characters reserved for delimiting URLs.\n // We actually just auto-escape these.\n delims = ['<', '>', '\"', '`', ' ', '\\r', '\\n', '\\t'],\n\n // RFC 2396: characters not allowed for various reasons.\n unwise = ['{', '}', '|', '\\\\', '^', '`'].concat(delims),\n\n // Allowed by RFCs, but cause of XSS attacks. Always escape these.\n autoEscape = ['\\''].concat(unwise),\n // Characters that are never ever allowed in a hostname.\n // Note that any invalid chars are also handled, but these\n // are the ones that are *expected* to be seen, so we fast-path\n // them.\n nonHostChars = ['%', '/', '?', ';', '#'].concat(autoEscape),\n hostEndingChars = ['/', '?', '#'],\n hostnameMaxLen = 255,\n hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/,\n hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/,\n // protocols that can allow \"unsafe\" and \"unwise\" chars.\n unsafeProtocol = {\n 'javascript': true,\n 'javascript:': true\n },\n // protocols that never have a hostname.\n hostlessProtocol = {\n 'javascript': true,\n 'javascript:': true\n },\n // protocols that always contain a // bit.\n slashedProtocol = {\n 'http': true,\n 'https': true,\n 'ftp': true,\n 'gopher': true,\n 'file': true,\n 'http:': true,\n 'https:': true,\n 'ftp:': true,\n 'gopher:': true,\n 'file:': true\n };\n\nfunction urlParse(url, parseQueryString, slashesDenoteHost) {\n if (url && isObject(url) && url instanceof Url) return url;\n\n var u = new Url;\n u.parse(url, parseQueryString, slashesDenoteHost);\n return u;\n}\nUrl.prototype.parse = function(url, parseQueryString, slashesDenoteHost) {\n return parse(this, url, parseQueryString, slashesDenoteHost);\n}\n\nfunction parse(self, url, parseQueryString, slashesDenoteHost) {\n if (!isString(url)) {\n throw new TypeError('Parameter \\'url\\' must be a string, not ' + typeof url);\n }\n\n // Copy chrome, IE, opera backslash-handling behavior.\n // Back slashes before the query string get converted to forward slashes\n // See: https://code.google.com/p/chromium/issues/detail?id=25916\n var queryIndex = url.indexOf('?'),\n splitter =\n (queryIndex !== -1 && queryIndex < url.indexOf('#')) ? '?' : '#',\n uSplit = url.split(splitter),\n slashRegex = /\\\\/g;\n uSplit[0] = uSplit[0].replace(slashRegex, '/');\n url = uSplit.join(splitter);\n\n var rest = url;\n\n // trim before proceeding.\n // This is to support parse stuff like \" http://foo.com \\n\"\n rest = rest.trim();\n\n if (!slashesDenoteHost && url.split('#').length === 1) {\n // Try fast path regexp\n var simplePath = simplePathPattern.exec(rest);\n if (simplePath) {\n self.path = rest;\n self.href = rest;\n self.pathname = simplePath[1];\n if (simplePath[2]) {\n self.search = simplePath[2];\n if (parseQueryString) {\n self.query = qsParse(self.search.substr(1));\n } else {\n self.query = self.search.substr(1);\n }\n } else if (parseQueryString) {\n self.search = '';\n self.query = {};\n }\n return self;\n }\n }\n\n var proto = protocolPattern.exec(rest);\n if (proto) {\n proto = proto[0];\n var lowerProto = proto.toLowerCase();\n self.protocol = lowerProto;\n rest = rest.substr(proto.length);\n }\n\n // figure out if it's got a host\n // user@server is *always* interpreted as a hostname, and url\n // resolution will treat //foo/bar as host=foo,path=bar because that's\n // how the browser resolves relative URLs.\n if (slashesDenoteHost || proto || rest.match(/^\\/\\/[^@\\/]+@[^@\\/]+/)) {\n var slashes = rest.substr(0, 2) === '//';\n if (slashes && !(proto && hostlessProtocol[proto])) {\n rest = rest.substr(2);\n self.slashes = true;\n }\n }\n var i, hec, l, p;\n if (!hostlessProtocol[proto] &&\n (slashes || (proto && !slashedProtocol[proto]))) {\n\n // there's a hostname.\n // the first instance of /, ?, ;, or # ends the host.\n //\n // If there is an @ in the hostname, then non-host chars *are* allowed\n // to the left of the last @ sign, unless some host-ending character\n // comes *before* the @-sign.\n // URLs are obnoxious.\n //\n // ex:\n // http://a@b@c/ => user:a@b host:c\n // http://a@b?@c => user:a host:c path:/?@c\n\n // v0.12 TODO(isaacs): This is not quite how Chrome does things.\n // Review our test case against browsers more comprehensively.\n\n // find the first instance of any hostEndingChars\n var hostEnd = -1;\n for (i = 0; i < hostEndingChars.length; i++) {\n hec = rest.indexOf(hostEndingChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd))\n hostEnd = hec;\n }\n\n // at this point, either we have an explicit point where the\n // auth portion cannot go past, or the last @ char is the decider.\n var auth, atSign;\n if (hostEnd === -1) {\n // atSign can be anywhere.\n atSign = rest.lastIndexOf('@');\n } else {\n // atSign must be in auth portion.\n // http://a@b/c@d => host:b auth:a path:/c@d\n atSign = rest.lastIndexOf('@', hostEnd);\n }\n\n // Now we have a portion which is definitely the auth.\n // Pull that off.\n if (atSign !== -1) {\n auth = rest.slice(0, atSign);\n rest = rest.slice(atSign + 1);\n self.auth = decodeURIComponent(auth);\n }\n\n // the host is the remaining to the left of the first non-host char\n hostEnd = -1;\n for (i = 0; i < nonHostChars.length; i++) {\n hec = rest.indexOf(nonHostChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd))\n hostEnd = hec;\n }\n // if we still have not hit it, then the entire thing is a host.\n if (hostEnd === -1)\n hostEnd = rest.length;\n\n self.host = rest.slice(0, hostEnd);\n rest = rest.slice(hostEnd);\n\n // pull out port.\n parseHost(self);\n\n // we've indicated that there is a hostname,\n // so even if it's empty, it has to be present.\n self.hostname = self.hostname || '';\n\n // if hostname begins with [ and ends with ]\n // assume that it's an IPv6 address.\n var ipv6Hostname = self.hostname[0] === '[' &&\n self.hostname[self.hostname.length - 1] === ']';\n\n // validate a little.\n if (!ipv6Hostname) {\n var hostparts = self.hostname.split(/\\./);\n for (i = 0, l = hostparts.length; i < l; i++) {\n var part = hostparts[i];\n if (!part) continue;\n if (!part.match(hostnamePartPattern)) {\n var newpart = '';\n for (var j = 0, k = part.length; j < k; j++) {\n if (part.charCodeAt(j) > 127) {\n // we replace non-ASCII char with a temporary placeholder\n // we need this to make sure size of hostname is not\n // broken by replacing non-ASCII by nothing\n newpart += 'x';\n } else {\n newpart += part[j];\n }\n }\n // we test again with ASCII char only\n if (!newpart.match(hostnamePartPattern)) {\n var validParts = hostparts.slice(0, i);\n var notHost = hostparts.slice(i + 1);\n var bit = part.match(hostnamePartStart);\n if (bit) {\n validParts.push(bit[1]);\n notHost.unshift(bit[2]);\n }\n if (notHost.length) {\n rest = '/' + notHost.join('.') + rest;\n }\n self.hostname = validParts.join('.');\n break;\n }\n }\n }\n }\n\n if (self.hostname.length > hostnameMaxLen) {\n self.hostname = '';\n } else {\n // hostnames are always lower case.\n self.hostname = self.hostname.toLowerCase();\n }\n\n if (!ipv6Hostname) {\n // IDNA Support: Returns a punycoded representation of \"domain\".\n // It only converts parts of the domain name that\n // have non-ASCII characters, i.e. it doesn't matter if\n // you call it with a domain that already is ASCII-only.\n self.hostname = toASCII(self.hostname);\n }\n\n p = self.port ? ':' + self.port : '';\n var h = self.hostname || '';\n self.host = h + p;\n self.href += self.host;\n\n // strip [ and ] from the hostname\n // the host field still retains them, though\n if (ipv6Hostname) {\n self.hostname = self.hostname.substr(1, self.hostname.length - 2);\n if (rest[0] !== '/') {\n rest = '/' + rest;\n }\n }\n }\n\n // now rest is set to the post-host stuff.\n // chop off any delim chars.\n if (!unsafeProtocol[lowerProto]) {\n\n // First, make 100% sure that any \"autoEscape\" chars get\n // escaped, even if encodeURIComponent doesn't think they\n // need to be.\n for (i = 0, l = autoEscape.length; i < l; i++) {\n var ae = autoEscape[i];\n if (rest.indexOf(ae) === -1)\n continue;\n var esc = encodeURIComponent(ae);\n if (esc === ae) {\n esc = escape(ae);\n }\n rest = rest.split(ae).join(esc);\n }\n }\n\n\n // chop off from the tail first.\n var hash = rest.indexOf('#');\n if (hash !== -1) {\n // got a fragment string.\n self.hash = rest.substr(hash);\n rest = rest.slice(0, hash);\n }\n var qm = rest.indexOf('?');\n if (qm !== -1) {\n self.search = rest.substr(qm);\n self.query = rest.substr(qm + 1);\n if (parseQueryString) {\n self.query = qsParse(self.query);\n }\n rest = rest.slice(0, qm);\n } else if (parseQueryString) {\n // no query string, but parseQueryString still requested\n self.search = '';\n self.query = {};\n }\n if (rest) self.pathname = rest;\n if (slashedProtocol[lowerProto] &&\n self.hostname && !self.pathname) {\n self.pathname = '/';\n }\n\n //to support http.request\n if (self.pathname || self.search) {\n p = self.pathname || '';\n var s = self.search || '';\n self.path = p + s;\n }\n\n // finally, reconstruct the href based on what has been validated.\n self.href = format(self);\n return self;\n}\n\n// format a parsed object into a url string\nfunction urlFormat(obj) {\n // ensure it's an object, and not a string url.\n // If it's an obj, this is a no-op.\n // this way, you can call url_format() on strings\n // to clean up potentially wonky urls.\n if (isString(obj)) obj = parse({}, obj);\n return format(obj);\n}\n\nfunction format(self) {\n var auth = self.auth || '';\n if (auth) {\n auth = encodeURIComponent(auth);\n auth = auth.replace(/%3A/i, ':');\n auth += '@';\n }\n\n var protocol = self.protocol || '',\n pathname = self.pathname || '',\n hash = self.hash || '',\n host = false,\n query = '';\n\n if (self.host) {\n host = auth + self.host;\n } else if (self.hostname) {\n host = auth + (self.hostname.indexOf(':') === -1 ?\n self.hostname :\n '[' + this.hostname + ']');\n if (self.port) {\n host += ':' + self.port;\n }\n }\n\n if (self.query &&\n isObject(self.query) &&\n Object.keys(self.query).length) {\n query = qsStringify(self.query);\n }\n\n var search = self.search || (query && ('?' + query)) || '';\n\n if (protocol && protocol.substr(-1) !== ':') protocol += ':';\n\n // only the slashedProtocols get the //. Not mailto:, xmpp:, etc.\n // unless they had them to begin with.\n if (self.slashes ||\n (!protocol || slashedProtocol[protocol]) && host !== false) {\n host = '//' + (host || '');\n if (pathname && pathname.charAt(0) !== '/') pathname = '/' + pathname;\n } else if (!host) {\n host = '';\n }\n\n if (hash && hash.charAt(0) !== '#') hash = '#' + hash;\n if (search && search.charAt(0) !== '?') search = '?' + search;\n\n pathname = pathname.replace(/[?#]/g, function(match) {\n return encodeURIComponent(match);\n });\n search = search.replace('#', '%23');\n\n return protocol + host + pathname + search + hash;\n}\n\nUrl.prototype.format = function() {\n return format(this);\n}\n\nfunction urlResolve(source, relative) {\n return urlParse(source, false, true).resolve(relative);\n}\n\nUrl.prototype.resolve = function(relative) {\n return this.resolveObject(urlParse(relative, false, true)).format();\n};\n\nfunction urlResolveObject(source, relative) {\n if (!source) return relative;\n return urlParse(source, false, true).resolveObject(relative);\n}\n\nUrl.prototype.resolveObject = function(relative) {\n if (isString(relative)) {\n var rel = new Url();\n rel.parse(relative, false, true);\n relative = rel;\n }\n\n var result = new Url();\n var tkeys = Object.keys(this);\n for (var tk = 0; tk < tkeys.length; tk++) {\n var tkey = tkeys[tk];\n result[tkey] = this[tkey];\n }\n\n // hash is always overridden, no matter what.\n // even href=\"\" will remove it.\n result.hash = relative.hash;\n\n // if the relative url is empty, then there's nothing left to do here.\n if (relative.href === '') {\n result.href = result.format();\n return result;\n }\n\n // hrefs like //foo/bar always cut to the protocol.\n if (relative.slashes && !relative.protocol) {\n // take everything except the protocol from relative\n var rkeys = Object.keys(relative);\n for (var rk = 0; rk < rkeys.length; rk++) {\n var rkey = rkeys[rk];\n if (rkey !== 'protocol')\n result[rkey] = relative[rkey];\n }\n\n //urlParse appends trailing / to urls like http://www.example.com\n if (slashedProtocol[result.protocol] &&\n result.hostname && !result.pathname) {\n result.path = result.pathname = '/';\n }\n\n result.href = result.format();\n return result;\n }\n var relPath;\n if (relative.protocol && relative.protocol !== result.protocol) {\n // if it's a known url protocol, then changing\n // the protocol does weird things\n // first, if it's not file:, then we MUST have a host,\n // and if there was a path\n // to begin with, then we MUST have a path.\n // if it is file:, then the host is dropped,\n // because that's known to be hostless.\n // anything else is assumed to be absolute.\n if (!slashedProtocol[relative.protocol]) {\n var keys = Object.keys(relative);\n for (var v = 0; v < keys.length; v++) {\n var k = keys[v];\n result[k] = relative[k];\n }\n result.href = result.format();\n return result;\n }\n\n result.protocol = relative.protocol;\n if (!relative.host && !hostlessProtocol[relative.protocol]) {\n relPath = (relative.pathname || '').split('/');\n while (relPath.length && !(relative.host = relPath.shift()));\n if (!relative.host) relative.host = '';\n if (!relative.hostname) relative.hostname = '';\n if (relPath[0] !== '') relPath.unshift('');\n if (relPath.length < 2) relPath.unshift('');\n result.pathname = relPath.join('/');\n } else {\n result.pathname = relative.pathname;\n }\n result.search = relative.search;\n result.query = relative.query;\n result.host = relative.host || '';\n result.auth = relative.auth;\n result.hostname = relative.hostname || relative.host;\n result.port = relative.port;\n // to support http.request\n if (result.pathname || result.search) {\n var p = result.pathname || '';\n var s = result.search || '';\n result.path = p + s;\n }\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n }\n\n var isSourceAbs = (result.pathname && result.pathname.charAt(0) === '/'),\n isRelAbs = (\n relative.host ||\n relative.pathname && relative.pathname.charAt(0) === '/'\n ),\n mustEndAbs = (isRelAbs || isSourceAbs ||\n (result.host && relative.pathname)),\n removeAllDots = mustEndAbs,\n srcPath = result.pathname && result.pathname.split('/') || [],\n psychotic = result.protocol && !slashedProtocol[result.protocol];\n relPath = relative.pathname && relative.pathname.split('/') || [];\n // if the url is a non-slashed url, then relative\n // links like ../.. should be able\n // to crawl up to the hostname, as well. This is strange.\n // result.protocol has already been set by now.\n // Later on, put the first path part into the host field.\n if (psychotic) {\n result.hostname = '';\n result.port = null;\n if (result.host) {\n if (srcPath[0] === '') srcPath[0] = result.host;\n else srcPath.unshift(result.host);\n }\n result.host = '';\n if (relative.protocol) {\n relative.hostname = null;\n relative.port = null;\n if (relative.host) {\n if (relPath[0] === '') relPath[0] = relative.host;\n else relPath.unshift(relative.host);\n }\n relative.host = null;\n }\n mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === '');\n }\n var authInHost;\n if (isRelAbs) {\n // it's absolute.\n result.host = (relative.host || relative.host === '') ?\n relative.host : result.host;\n result.hostname = (relative.hostname || relative.hostname === '') ?\n relative.hostname : result.hostname;\n result.search = relative.search;\n result.query = relative.query;\n srcPath = relPath;\n // fall through to the dot-handling below.\n } else if (relPath.length) {\n // it's relative\n // throw away the existing file, and take the new path instead.\n if (!srcPath) srcPath = [];\n srcPath.pop();\n srcPath = srcPath.concat(relPath);\n result.search = relative.search;\n result.query = relative.query;\n } else if (!isNullOrUndefined(relative.search)) {\n // just pull out the search.\n // like href='?foo'.\n // Put this after the other two cases because it simplifies the booleans\n if (psychotic) {\n result.hostname = result.host = srcPath.shift();\n //occationaly the auth can get stuck only in host\n //this especially happens in cases like\n //url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n authInHost = result.host && result.host.indexOf('@') > 0 ?\n result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.host = result.hostname = authInHost.shift();\n }\n }\n result.search = relative.search;\n result.query = relative.query;\n //to support http.request\n if (!isNull(result.pathname) || !isNull(result.search)) {\n result.path = (result.pathname ? result.pathname : '') +\n (result.search ? result.search : '');\n }\n result.href = result.format();\n return result;\n }\n\n if (!srcPath.length) {\n // no path at all. easy.\n // we've already handled the other stuff above.\n result.pathname = null;\n //to support http.request\n if (result.search) {\n result.path = '/' + result.search;\n } else {\n result.path = null;\n }\n result.href = result.format();\n return result;\n }\n\n // if a url ENDs in . or .., then it must get a trailing slash.\n // however, if it ends in anything else non-slashy,\n // then it must NOT get a trailing slash.\n var last = srcPath.slice(-1)[0];\n var hasTrailingSlash = (\n (result.host || relative.host || srcPath.length > 1) &&\n (last === '.' || last === '..') || last === '');\n\n // strip single dots, resolve double dots to parent dir\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = srcPath.length; i >= 0; i--) {\n last = srcPath[i];\n if (last === '.') {\n srcPath.splice(i, 1);\n } else if (last === '..') {\n srcPath.splice(i, 1);\n up++;\n } else if (up) {\n srcPath.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (!mustEndAbs && !removeAllDots) {\n for (; up--; up) {\n srcPath.unshift('..');\n }\n }\n\n if (mustEndAbs && srcPath[0] !== '' &&\n (!srcPath[0] || srcPath[0].charAt(0) !== '/')) {\n srcPath.unshift('');\n }\n\n if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) {\n srcPath.push('');\n }\n\n var isAbsolute = srcPath[0] === '' ||\n (srcPath[0] && srcPath[0].charAt(0) === '/');\n\n // put the host back\n if (psychotic) {\n result.hostname = result.host = isAbsolute ? '' :\n srcPath.length ? srcPath.shift() : '';\n //occationaly the auth can get stuck only in host\n //this especially happens in cases like\n //url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n authInHost = result.host && result.host.indexOf('@') > 0 ?\n result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.host = result.hostname = authInHost.shift();\n }\n }\n\n mustEndAbs = mustEndAbs || (result.host && srcPath.length);\n\n if (mustEndAbs && !isAbsolute) {\n srcPath.unshift('');\n }\n\n if (!srcPath.length) {\n result.pathname = null;\n result.path = null;\n } else {\n result.pathname = srcPath.join('/');\n }\n\n //to support request.http\n if (!isNull(result.pathname) || !isNull(result.search)) {\n result.path = (result.pathname ? result.pathname : '') +\n (result.search ? result.search : '');\n }\n result.auth = relative.auth || result.auth;\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n};\n\nUrl.prototype.parseHost = function() {\n return parseHost(this);\n};\n\nfunction parseHost(self) {\n var host = self.host;\n var port = portPattern.exec(host);\n if (port) {\n port = port[0];\n if (port !== ':') {\n self.port = port.substr(1);\n }\n host = host.substr(0, host.length - port.length);\n }\n if (host) self.hostname = host;\n}\n","/*!\n * @pixi/constants - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/constants is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * Different types of environments for WebGL.\n *\n * @static\n * @memberof PIXI\n * @name ENV\n * @enum {number}\n * @property {number} WEBGL_LEGACY - Used for older v1 WebGL devices. PixiJS will aim to ensure compatibility\n * with older / less advanced devices. If you experience unexplained flickering prefer this environment.\n * @property {number} WEBGL - Version 1 of WebGL\n * @property {number} WEBGL2 - Version 2 of WebGL\n */\nvar ENV = {\n WEBGL_LEGACY: 0,\n WEBGL: 1,\n WEBGL2: 2,\n};\n\n/**\n * Constant to identify the Renderer Type.\n *\n * @static\n * @memberof PIXI\n * @name RENDERER_TYPE\n * @enum {number}\n * @property {number} UNKNOWN - Unknown render type.\n * @property {number} WEBGL - WebGL render type.\n * @property {number} CANVAS - Canvas render type.\n */\nvar RENDERER_TYPE = {\n UNKNOWN: 0,\n WEBGL: 1,\n CANVAS: 2,\n};\n\n/**\n * Various blend modes supported by PIXI.\n *\n * IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes.\n * Anything else will silently act like NORMAL.\n *\n * @memberof PIXI\n * @name BLEND_MODES\n * @enum {number}\n * @property {number} NORMAL\n * @property {number} ADD\n * @property {number} MULTIPLY\n * @property {number} SCREEN\n * @property {number} OVERLAY\n * @property {number} DARKEN\n * @property {number} LIGHTEN\n * @property {number} COLOR_DODGE\n * @property {number} COLOR_BURN\n * @property {number} HARD_LIGHT\n * @property {number} SOFT_LIGHT\n * @property {number} DIFFERENCE\n * @property {number} EXCLUSION\n * @property {number} HUE\n * @property {number} SATURATION\n * @property {number} COLOR\n * @property {number} LUMINOSITY\n * @property {number} NORMAL_NPM\n * @property {number} ADD_NPM\n * @property {number} SCREEN_NPM\n * @property {number} NONE\n * @property {number} SRC_IN\n * @property {number} SRC_OUT\n * @property {number} SRC_ATOP\n * @property {number} DST_OVER\n * @property {number} DST_IN\n * @property {number} DST_OUT\n * @property {number} DST_ATOP\n * @property {number} SUBTRACT\n * @property {number} SRC_OVER\n * @property {number} ERASE\n */\nvar BLEND_MODES = {\n NORMAL: 0,\n ADD: 1,\n MULTIPLY: 2,\n SCREEN: 3,\n OVERLAY: 4,\n DARKEN: 5,\n LIGHTEN: 6,\n COLOR_DODGE: 7,\n COLOR_BURN: 8,\n HARD_LIGHT: 9,\n SOFT_LIGHT: 10,\n DIFFERENCE: 11,\n EXCLUSION: 12,\n HUE: 13,\n SATURATION: 14,\n COLOR: 15,\n LUMINOSITY: 16,\n NORMAL_NPM: 17,\n ADD_NPM: 18,\n SCREEN_NPM: 19,\n NONE: 20,\n\n SRC_OVER: 0,\n SRC_IN: 21,\n SRC_OUT: 22,\n SRC_ATOP: 23,\n DST_OVER: 24,\n DST_IN: 25,\n DST_OUT: 26,\n DST_ATOP: 27,\n ERASE: 26,\n SUBTRACT: 28,\n};\n\n/**\n * Various webgl draw modes. These can be used to specify which GL drawMode to use\n * under certain situations and renderers.\n *\n * @memberof PIXI\n * @static\n * @name DRAW_MODES\n * @enum {number}\n * @property {number} POINTS\n * @property {number} LINES\n * @property {number} LINE_LOOP\n * @property {number} LINE_STRIP\n * @property {number} TRIANGLES\n * @property {number} TRIANGLE_STRIP\n * @property {number} TRIANGLE_FAN\n */\nvar DRAW_MODES = {\n POINTS: 0,\n LINES: 1,\n LINE_LOOP: 2,\n LINE_STRIP: 3,\n TRIANGLES: 4,\n TRIANGLE_STRIP: 5,\n TRIANGLE_FAN: 6,\n};\n\n/**\n * Various GL texture/resources formats.\n *\n * @memberof PIXI\n * @static\n * @name FORMATS\n * @enum {number}\n * @property {number} RGBA=6408\n * @property {number} RGB=6407\n * @property {number} ALPHA=6406\n * @property {number} LUMINANCE=6409\n * @property {number} LUMINANCE_ALPHA=6410\n * @property {number} DEPTH_COMPONENT=6402\n * @property {number} DEPTH_STENCIL=34041\n */\nvar FORMATS = {\n RGBA: 6408,\n RGB: 6407,\n ALPHA: 6406,\n LUMINANCE: 6409,\n LUMINANCE_ALPHA: 6410,\n DEPTH_COMPONENT: 6402,\n DEPTH_STENCIL: 34041,\n};\n\n/**\n * Various GL target types.\n *\n * @memberof PIXI\n * @static\n * @name TARGETS\n * @enum {number}\n * @property {number} TEXTURE_2D=3553\n * @property {number} TEXTURE_CUBE_MAP=34067\n * @property {number} TEXTURE_2D_ARRAY=35866\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_X=34069\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_X=34070\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Y=34071\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Y=34072\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Z=34073\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Z=34074\n */\nvar TARGETS = {\n TEXTURE_2D: 3553,\n TEXTURE_CUBE_MAP: 34067,\n TEXTURE_2D_ARRAY: 35866,\n TEXTURE_CUBE_MAP_POSITIVE_X: 34069,\n TEXTURE_CUBE_MAP_NEGATIVE_X: 34070,\n TEXTURE_CUBE_MAP_POSITIVE_Y: 34071,\n TEXTURE_CUBE_MAP_NEGATIVE_Y: 34072,\n TEXTURE_CUBE_MAP_POSITIVE_Z: 34073,\n TEXTURE_CUBE_MAP_NEGATIVE_Z: 34074,\n};\n\n/**\n * Various GL data format types.\n *\n * @memberof PIXI\n * @static\n * @name TYPES\n * @enum {number}\n * @property {number} UNSIGNED_BYTE=5121\n * @property {number} UNSIGNED_SHORT=5123\n * @property {number} UNSIGNED_SHORT_5_6_5=33635\n * @property {number} UNSIGNED_SHORT_4_4_4_4=32819\n * @property {number} UNSIGNED_SHORT_5_5_5_1=32820\n * @property {number} FLOAT=5126\n * @property {number} HALF_FLOAT=36193\n */\nvar TYPES = {\n UNSIGNED_BYTE: 5121,\n UNSIGNED_SHORT: 5123,\n UNSIGNED_SHORT_5_6_5: 33635,\n UNSIGNED_SHORT_4_4_4_4: 32819,\n UNSIGNED_SHORT_5_5_5_1: 32820,\n FLOAT: 5126,\n HALF_FLOAT: 36193,\n};\n\n/**\n * The scale modes that are supported by pixi.\n *\n * The {@link PIXI.settings.SCALE_MODE} scale mode affects the default scaling mode of future operations.\n * It can be re-assigned to either LINEAR or NEAREST, depending upon suitability.\n *\n * @memberof PIXI\n * @static\n * @name SCALE_MODES\n * @enum {number}\n * @property {number} LINEAR Smooth scaling\n * @property {number} NEAREST Pixelating scaling\n */\nvar SCALE_MODES = {\n LINEAR: 1,\n NEAREST: 0,\n};\n\n/**\n * The wrap modes that are supported by pixi.\n *\n * The {@link PIXI.settings.WRAP_MODE} wrap mode affects the default wrapping mode of future operations.\n * It can be re-assigned to either CLAMP or REPEAT, depending upon suitability.\n * If the texture is non power of two then clamp will be used regardless as WebGL can\n * only use REPEAT if the texture is po2.\n *\n * This property only affects WebGL.\n *\n * @name WRAP_MODES\n * @memberof PIXI\n * @static\n * @enum {number}\n * @property {number} CLAMP - The textures uvs are clamped\n * @property {number} REPEAT - The texture uvs tile and repeat\n * @property {number} MIRRORED_REPEAT - The texture uvs tile and repeat with mirroring\n */\nvar WRAP_MODES = {\n CLAMP: 33071,\n REPEAT: 10497,\n MIRRORED_REPEAT: 33648,\n};\n\n/**\n * Mipmap filtering modes that are supported by pixi.\n *\n * The {@link PIXI.settings.MIPMAP_TEXTURES} affects default texture filtering.\n * Mipmaps are generated for a baseTexture if its `mipmap` field is `ON`,\n * or its `POW2` and texture dimensions are powers of 2.\n * Due to platform restriction, `ON` option will work like `POW2` for webgl-1.\n *\n * This property only affects WebGL.\n *\n * @name MIPMAP_MODES\n * @memberof PIXI\n * @static\n * @enum {number}\n * @property {number} OFF - No mipmaps\n * @property {number} POW2 - Generate mipmaps if texture dimensions are pow2\n * @property {number} ON - Always generate mipmaps\n */\nvar MIPMAP_MODES = {\n OFF: 0,\n POW2: 1,\n ON: 2,\n};\n\n/**\n * The gc modes that are supported by pixi.\n *\n * The {@link PIXI.settings.GC_MODE} Garbage Collection mode for PixiJS textures is AUTO\n * If set to GC_MODE, the renderer will occasionally check textures usage. If they are not\n * used for a specified period of time they will be removed from the GPU. They will of course\n * be uploaded again when they are required. This is a silent behind the scenes process that\n * should ensure that the GPU does not get filled up.\n *\n * Handy for mobile devices!\n * This property only affects WebGL.\n *\n * @name GC_MODES\n * @enum {number}\n * @static\n * @memberof PIXI\n * @property {number} AUTO - Garbage collection will happen periodically automatically\n * @property {number} MANUAL - Garbage collection will need to be called manually\n */\nvar GC_MODES = {\n AUTO: 0,\n MANUAL: 1,\n};\n\n/**\n * Constants that specify float precision in shaders.\n *\n * @name PRECISION\n * @memberof PIXI\n * @static\n * @enum {string}\n * @constant\n * @property {string} LOW='lowp'\n * @property {string} MEDIUM='mediump'\n * @property {string} HIGH='highp'\n */\nvar PRECISION = {\n LOW: 'lowp',\n MEDIUM: 'mediump',\n HIGH: 'highp',\n};\n\nexport { BLEND_MODES, DRAW_MODES, ENV, FORMATS, GC_MODES, MIPMAP_MODES, PRECISION, RENDERER_TYPE, SCALE_MODES, TARGETS, TYPES, WRAP_MODES };\n//# sourceMappingURL=constants.es.js.map\n","/*!\n * @pixi/utils - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/utils is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nexport { isMobile } from '@pixi/settings';\nexport { default as EventEmitter } from 'eventemitter3';\nexport { default as earcut } from 'earcut';\nimport _url from 'url';\nexport { default as url } from 'url';\nimport { BLEND_MODES } from '@pixi/constants';\n\n/**\n * The prefix that denotes a URL is for a retina asset.\n *\n * @static\n * @name RETINA_PREFIX\n * @memberof PIXI.settings\n * @type {RegExp}\n * @default /@([0-9\\.]+)x/\n * @example `@2x`\n */\nsettings.RETINA_PREFIX = /@([0-9\\.]+)x/;\n\n/**\n * Should the `failIfMajorPerformanceCaveat` flag be enabled as a context option used in the `isWebGLSupported` function.\n * For most scenarios this should be left as true, as otherwise the user may have a poor experience.\n * However, it can be useful to disable under certain scenarios, such as headless unit tests.\n *\n * @static\n * @name FAIL_IF_MAJOR_PERFORMANCE_CAVEAT\n * @memberof PIXI.settings\n * @type {boolean}\n * @default true\n */\nsettings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = true;\n\nvar saidHello = false;\nvar VERSION = '5.1.3';\n\n/**\n * Skips the hello message of renderers that are created after this is run.\n *\n * @function skipHello\n * @memberof PIXI.utils\n */\nfunction skipHello()\n{\n saidHello = true;\n}\n\n/**\n * Logs out the version and renderer information for this running instance of PIXI.\n * If you don't want to see this message you can run `PIXI.utils.skipHello()` before\n * creating your renderer. Keep in mind that doing that will forever make you a jerk face.\n *\n * @static\n * @function sayHello\n * @memberof PIXI.utils\n * @param {string} type - The string renderer type to log.\n */\nfunction sayHello(type)\n{\n if (saidHello)\n {\n return;\n }\n\n if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)\n {\n var args = [\n (\"\\n %c %c %c PixiJS \" + VERSION + \" - ✰ \" + type + \" ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \\n\\n\"),\n 'background: #ff66a5; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'color: #ff66a5; background: #030307; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'background: #ffc3dc; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;' ];\n\n window.console.log.apply(console, args);\n }\n else if (window.console)\n {\n window.console.log((\"PixiJS \" + VERSION + \" - \" + type + \" - http://www.pixijs.com/\"));\n }\n\n saidHello = true;\n}\n\nvar supported;\n\n/**\n * Helper for checking for WebGL support.\n *\n * @memberof PIXI.utils\n * @function isWebGLSupported\n * @return {boolean} Is WebGL supported.\n */\nfunction isWebGLSupported()\n{\n if (typeof supported === 'undefined')\n {\n supported = (function supported()\n {\n var contextOptions = {\n stencil: true,\n failIfMajorPerformanceCaveat: settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT,\n };\n\n try\n {\n if (!window.WebGLRenderingContext)\n {\n return false;\n }\n\n var canvas = document.createElement('canvas');\n var gl = canvas.getContext('webgl', contextOptions)\n || canvas.getContext('experimental-webgl', contextOptions);\n\n var success = !!(gl && gl.getContextAttributes().stencil);\n\n if (gl)\n {\n var loseContext = gl.getExtension('WEBGL_lose_context');\n\n if (loseContext)\n {\n loseContext.loseContext();\n }\n }\n\n gl = null;\n\n return success;\n }\n catch (e)\n {\n return false;\n }\n })();\n }\n\n return supported;\n}\n\n/**\n * Converts a hexadecimal color number to an [R, G, B] array of normalized floats (numbers from 0.0 to 1.0).\n *\n * @example\n * PIXI.utils.hex2rgb(0xffffff); // returns [1, 1, 1]\n * @memberof PIXI.utils\n * @function hex2rgb\n * @param {number} hex - The hexadecimal number to convert\n * @param {number[]} [out=[]] If supplied, this array will be used rather than returning a new one\n * @return {number[]} An array representing the [R, G, B] of the color where all values are floats.\n */\nfunction hex2rgb(hex, out)\n{\n out = out || [];\n\n out[0] = ((hex >> 16) & 0xFF) / 255;\n out[1] = ((hex >> 8) & 0xFF) / 255;\n out[2] = (hex & 0xFF) / 255;\n\n return out;\n}\n\n/**\n * Converts a hexadecimal color number to a string.\n *\n * @example\n * PIXI.utils.hex2string(0xffffff); // returns \"#ffffff\"\n * @memberof PIXI.utils\n * @function hex2string\n * @param {number} hex - Number in hex (e.g., `0xffffff`)\n * @return {string} The string color (e.g., `\"#ffffff\"`).\n */\nfunction hex2string(hex)\n{\n hex = hex.toString(16);\n hex = '000000'.substr(0, 6 - hex.length) + hex;\n\n return (\"#\" + hex);\n}\n\n/**\n * Converts a hexadecimal string to a hexadecimal color number.\n *\n * @example\n * PIXI.utils.string2hex(\"#ffffff\"); // returns 0xffffff\n * @memberof PIXI.utils\n * @function string2hex\n * @param {string} The string color (e.g., `\"#ffffff\"`)\n * @return {number} Number in hexadecimal.\n */\nfunction string2hex(string)\n{\n if (typeof string === 'string' && string[0] === '#')\n {\n string = string.substr(1);\n }\n\n return parseInt(string, 16);\n}\n\n/**\n * Converts a color as an [R, G, B] array of normalized floats to a hexadecimal number.\n *\n * @example\n * PIXI.utils.rgb2hex([1, 1, 1]); // returns 0xffffff\n * @memberof PIXI.utils\n * @function rgb2hex\n * @param {number[]} rgb - Array of numbers where all values are normalized floats from 0.0 to 1.0.\n * @return {number} Number in hexadecimal.\n */\nfunction rgb2hex(rgb)\n{\n return (((rgb[0] * 255) << 16) + ((rgb[1] * 255) << 8) + (rgb[2] * 255 | 0));\n}\n\n/**\n * Corrects PixiJS blend, takes premultiplied alpha into account\n *\n * @memberof PIXI.utils\n * @function mapPremultipliedBlendModes\n * @private\n * @param {Array} [array] - The array to output into.\n * @return {Array} Mapped modes.\n */\nfunction mapPremultipliedBlendModes()\n{\n var pm = [];\n var npm = [];\n\n for (var i = 0; i < 32; i++)\n {\n pm[i] = i;\n npm[i] = i;\n }\n\n pm[BLEND_MODES.NORMAL_NPM] = BLEND_MODES.NORMAL;\n pm[BLEND_MODES.ADD_NPM] = BLEND_MODES.ADD;\n pm[BLEND_MODES.SCREEN_NPM] = BLEND_MODES.SCREEN;\n\n npm[BLEND_MODES.NORMAL] = BLEND_MODES.NORMAL_NPM;\n npm[BLEND_MODES.ADD] = BLEND_MODES.ADD_NPM;\n npm[BLEND_MODES.SCREEN] = BLEND_MODES.SCREEN_NPM;\n\n var array = [];\n\n array.push(npm);\n array.push(pm);\n\n return array;\n}\n\n/**\n * maps premultiply flag and blendMode to adjusted blendMode\n * @memberof PIXI.utils\n * @const premultiplyBlendMode\n * @type {Array}\n */\nvar premultiplyBlendMode = mapPremultipliedBlendModes();\n\n/**\n * changes blendMode according to texture format\n *\n * @memberof PIXI.utils\n * @function correctBlendMode\n * @param {number} blendMode supposed blend mode\n * @param {boolean} premultiplied whether source is premultiplied\n * @returns {number} true blend mode for this texture\n */\nfunction correctBlendMode(blendMode, premultiplied)\n{\n return premultiplyBlendMode[premultiplied ? 1 : 0][blendMode];\n}\n\n/**\n * combines rgb and alpha to out array\n *\n * @memberof PIXI.utils\n * @function premultiplyRgba\n * @param {Float32Array|number[]} rgb input rgb\n * @param {number} alpha alpha param\n * @param {Float32Array} [out] output\n * @param {boolean} [premultiply=true] do premultiply it\n * @returns {Float32Array} vec4 rgba\n */\nfunction premultiplyRgba(rgb, alpha, out, premultiply)\n{\n out = out || new Float32Array(4);\n if (premultiply || premultiply === undefined)\n {\n out[0] = rgb[0] * alpha;\n out[1] = rgb[1] * alpha;\n out[2] = rgb[2] * alpha;\n }\n else\n {\n out[0] = rgb[0];\n out[1] = rgb[1];\n out[2] = rgb[2];\n }\n out[3] = alpha;\n\n return out;\n}\n\n/**\n * premultiplies tint\n *\n * @memberof PIXI.utils\n * @function premultiplyTint\n * @param {number} tint integer RGB\n * @param {number} alpha floating point alpha (0.0-1.0)\n * @returns {number} tint multiplied by alpha\n */\nfunction premultiplyTint(tint, alpha)\n{\n if (alpha === 1.0)\n {\n return (alpha * 255 << 24) + tint;\n }\n if (alpha === 0.0)\n {\n return 0;\n }\n var R = ((tint >> 16) & 0xFF);\n var G = ((tint >> 8) & 0xFF);\n var B = (tint & 0xFF);\n\n R = ((R * alpha) + 0.5) | 0;\n G = ((G * alpha) + 0.5) | 0;\n B = ((B * alpha) + 0.5) | 0;\n\n return (alpha * 255 << 24) + (R << 16) + (G << 8) + B;\n}\n\n/**\n * converts integer tint and float alpha to vec4 form, premultiplies by default\n *\n * @memberof PIXI.utils\n * @function premultiplyTintToRgba\n * @param {number} tint input tint\n * @param {number} alpha alpha param\n * @param {Float32Array} [out] output\n * @param {boolean} [premultiply=true] do premultiply it\n * @returns {Float32Array} vec4 rgba\n */\nfunction premultiplyTintToRgba(tint, alpha, out, premultiply)\n{\n out = out || new Float32Array(4);\n out[0] = ((tint >> 16) & 0xFF) / 255.0;\n out[1] = ((tint >> 8) & 0xFF) / 255.0;\n out[2] = (tint & 0xFF) / 255.0;\n if (premultiply || premultiply === undefined)\n {\n out[0] *= alpha;\n out[1] *= alpha;\n out[2] *= alpha;\n }\n out[3] = alpha;\n\n return out;\n}\n\n/**\n * Generic Mask Stack data structure\n *\n * @memberof PIXI.utils\n * @function createIndicesForQuads\n * @param {number} size - Number of quads\n * @param {Uint16Array|Uint32Array} [outBuffer] - Buffer for output, length has to be `6 * size`\n * @return {Uint16Array|Uint32Array} - Resulting index buffer\n */\nfunction createIndicesForQuads(size, outBuffer)\n{\n if ( outBuffer === void 0 ) outBuffer = null;\n\n // the total number of indices in our array, there are 6 points per quad.\n var totalIndices = size * 6;\n\n outBuffer = outBuffer || new Uint16Array(totalIndices);\n\n if (outBuffer.length !== totalIndices)\n {\n throw new Error((\"Out buffer length is incorrect, got \" + (outBuffer.length) + \" and expected \" + totalIndices));\n }\n\n // fill the indices with the quads to draw\n for (var i = 0, j = 0; i < totalIndices; i += 6, j += 4)\n {\n outBuffer[i + 0] = j + 0;\n outBuffer[i + 1] = j + 1;\n outBuffer[i + 2] = j + 2;\n outBuffer[i + 3] = j + 0;\n outBuffer[i + 4] = j + 2;\n outBuffer[i + 5] = j + 3;\n }\n\n return outBuffer;\n}\n\n/**\n * Remove items from a javascript array without generating garbage\n *\n * @function removeItems\n * @memberof PIXI.utils\n * @param {Array} arr Array to remove elements from\n * @param {number} startIdx starting index\n * @param {number} removeCount how many to remove\n */\nfunction removeItems(arr, startIdx, removeCount)\n{\n var length = arr.length;\n var i;\n\n if (startIdx >= length || removeCount === 0)\n {\n return;\n }\n\n removeCount = (startIdx + removeCount > length ? length - startIdx : removeCount);\n\n var len = length - removeCount;\n\n for (i = startIdx; i < len; ++i)\n {\n arr[i] = arr[i + removeCount];\n }\n\n arr.length = len;\n}\n\nvar nextUid = 0;\n\n/**\n * Gets the next unique identifier\n *\n * @memberof PIXI.utils\n * @function uid\n * @return {number} The next unique identifier to use.\n */\nfunction uid()\n{\n return ++nextUid;\n}\n\n/**\n * Returns sign of number\n *\n * @memberof PIXI.utils\n * @function sign\n * @param {number} n - the number to check the sign of\n * @returns {number} 0 if `n` is 0, -1 if `n` is negative, 1 if `n` is positive\n */\nfunction sign(n)\n{\n if (n === 0) { return 0; }\n\n return n < 0 ? -1 : 1;\n}\n\n// Taken from the bit-twiddle package\n\n/**\n * Rounds to next power of two.\n *\n * @function nextPow2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {number}\n */\nfunction nextPow2(v)\n{\n v += v === 0;\n --v;\n v |= v >>> 1;\n v |= v >>> 2;\n v |= v >>> 4;\n v |= v >>> 8;\n v |= v >>> 16;\n\n return v + 1;\n}\n\n/**\n * Checks if a number is a power of two.\n *\n * @function isPow2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {boolean} `true` if value is power of two\n */\nfunction isPow2(v)\n{\n return !(v & (v - 1)) && (!!v);\n}\n\n/**\n * Computes ceil of log base 2\n *\n * @function log2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {number} logarithm base 2\n */\nfunction log2(v)\n{\n var r = (v > 0xFFFF) << 4;\n\n v >>>= r;\n\n var shift = (v > 0xFF) << 3;\n\n v >>>= shift; r |= shift;\n shift = (v > 0xF) << 2;\n v >>>= shift; r |= shift;\n shift = (v > 0x3) << 1;\n v >>>= shift; r |= shift;\n\n return r | (v >> 1);\n}\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name ProgramCache\n * @memberof PIXI.utils\n * @type {Object}\n */\nvar ProgramCache = {};\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name TextureCache\n * @memberof PIXI.utils\n * @type {Object}\n */\nvar TextureCache = Object.create(null);\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name BaseTextureCache\n * @memberof PIXI.utils\n * @type {Object}\n */\n\nvar BaseTextureCache = Object.create(null);\n/**\n * Destroys all texture in the cache\n *\n * @memberof PIXI.utils\n * @function destroyTextureCache\n */\nfunction destroyTextureCache()\n{\n var key;\n\n for (key in TextureCache)\n {\n TextureCache[key].destroy();\n }\n for (key in BaseTextureCache)\n {\n BaseTextureCache[key].destroy();\n }\n}\n\n/**\n * Removes all textures from cache, but does not destroy them\n *\n * @memberof PIXI.utils\n * @function clearTextureCache\n */\nfunction clearTextureCache()\n{\n var key;\n\n for (key in TextureCache)\n {\n delete TextureCache[key];\n }\n for (key in BaseTextureCache)\n {\n delete BaseTextureCache[key];\n }\n}\n\n/**\n * Trim transparent borders from a canvas\n *\n * @memberof PIXI.utils\n * @function trimCanvas\n * @param {HTMLCanvasElement} canvas - the canvas to trim\n * @returns {object} Trim data\n */\nfunction trimCanvas(canvas)\n{\n // https://gist.github.com/remy/784508\n\n var width = canvas.width;\n var height = canvas.height;\n\n var context = canvas.getContext('2d');\n var imageData = context.getImageData(0, 0, width, height);\n var pixels = imageData.data;\n var len = pixels.length;\n\n var bound = {\n top: null,\n left: null,\n right: null,\n bottom: null,\n };\n var data = null;\n var i;\n var x;\n var y;\n\n for (i = 0; i < len; i += 4)\n {\n if (pixels[i + 3] !== 0)\n {\n x = (i / 4) % width;\n y = ~~((i / 4) / width);\n\n if (bound.top === null)\n {\n bound.top = y;\n }\n\n if (bound.left === null)\n {\n bound.left = x;\n }\n else if (x < bound.left)\n {\n bound.left = x;\n }\n\n if (bound.right === null)\n {\n bound.right = x + 1;\n }\n else if (bound.right < x)\n {\n bound.right = x + 1;\n }\n\n if (bound.bottom === null)\n {\n bound.bottom = y;\n }\n else if (bound.bottom < y)\n {\n bound.bottom = y;\n }\n }\n }\n\n if (bound.top !== null)\n {\n width = bound.right - bound.left;\n height = bound.bottom - bound.top + 1;\n data = context.getImageData(bound.left, bound.top, width, height);\n }\n\n return {\n height: height,\n width: width,\n data: data,\n };\n}\n\n/**\n * Creates a Canvas element of the given size to be used as a target for rendering to.\n *\n * @class\n * @memberof PIXI.utils\n */\nvar CanvasRenderTarget = function CanvasRenderTarget(width, height, resolution)\n{\n /**\n * The Canvas object that belongs to this CanvasRenderTarget.\n *\n * @member {HTMLCanvasElement}\n */\n this.canvas = document.createElement('canvas');\n\n /**\n * A CanvasRenderingContext2D object representing a two-dimensional rendering context.\n *\n * @member {CanvasRenderingContext2D}\n */\n this.context = this.canvas.getContext('2d');\n\n this.resolution = resolution || settings.RESOLUTION;\n\n this.resize(width, height);\n};\n\nvar prototypeAccessors = { width: { configurable: true },height: { configurable: true } };\n\n/**\n * Clears the canvas that was created by the CanvasRenderTarget class.\n *\n * @private\n */\nCanvasRenderTarget.prototype.clear = function clear ()\n{\n this.context.setTransform(1, 0, 0, 1, 0, 0);\n this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);\n};\n\n/**\n * Resizes the canvas to the specified width and height.\n *\n * @param {number} width - the new width of the canvas\n * @param {number} height - the new height of the canvas\n */\nCanvasRenderTarget.prototype.resize = function resize (width, height)\n{\n this.canvas.width = width * this.resolution;\n this.canvas.height = height * this.resolution;\n};\n\n/**\n * Destroys this canvas.\n *\n */\nCanvasRenderTarget.prototype.destroy = function destroy ()\n{\n this.context = null;\n this.canvas = null;\n};\n\n/**\n * The width of the canvas buffer in pixels.\n *\n * @member {number}\n */\nprototypeAccessors.width.get = function ()\n{\n return this.canvas.width;\n};\n\nprototypeAccessors.width.set = function (val) // eslint-disable-line require-jsdoc\n{\n this.canvas.width = val;\n};\n\n/**\n * The height of the canvas buffer in pixels.\n *\n * @member {number}\n */\nprototypeAccessors.height.get = function ()\n{\n return this.canvas.height;\n};\n\nprototypeAccessors.height.set = function (val) // eslint-disable-line require-jsdoc\n{\n this.canvas.height = val;\n};\n\nObject.defineProperties( CanvasRenderTarget.prototype, prototypeAccessors );\n\n/**\n * Regexp for data URI.\n * Based on: {@link https://github.com/ragingwind/data-uri-regex}\n *\n * @static\n * @constant {RegExp|string} DATA_URI\n * @memberof PIXI\n * @example data:image/png;base64\n */\nvar DATA_URI = /^\\s*data:(?:([\\w-]+)\\/([\\w+.-]+))?(?:;charset=([\\w-]+))?(?:;(base64))?,(.*)/i;\n\n/**\n * Typedef for decomposeDataUri return object.\n *\n * @memberof PIXI.utils\n * @typedef {object} DecomposedDataUri\n * @property {string} mediaType Media type, eg. `image`\n * @property {string} subType Sub type, eg. `png`\n * @property {string} encoding Data encoding, eg. `base64`\n * @property {string} data The actual data\n */\n\n/**\n * Split a data URI into components. Returns undefined if\n * parameter `dataUri` is not a valid data URI.\n *\n * @memberof PIXI.utils\n * @function decomposeDataUri\n * @param {string} dataUri - the data URI to check\n * @return {PIXI.utils.DecomposedDataUri|undefined} The decomposed data uri or undefined\n */\nfunction decomposeDataUri(dataUri)\n{\n var dataUriMatch = DATA_URI.exec(dataUri);\n\n if (dataUriMatch)\n {\n return {\n mediaType: dataUriMatch[1] ? dataUriMatch[1].toLowerCase() : undefined,\n subType: dataUriMatch[2] ? dataUriMatch[2].toLowerCase() : undefined,\n charset: dataUriMatch[3] ? dataUriMatch[3].toLowerCase() : undefined,\n encoding: dataUriMatch[4] ? dataUriMatch[4].toLowerCase() : undefined,\n data: dataUriMatch[5],\n };\n }\n\n return undefined;\n}\n\nvar tempAnchor;\n\n/**\n * Sets the `crossOrigin` property for this resource based on if the url\n * for this resource is cross-origin. If crossOrigin was manually set, this\n * function does nothing.\n * Nipped from the resource loader!\n *\n * @ignore\n * @param {string} url - The url to test.\n * @param {object} [loc=window.location] - The location object to test against.\n * @return {string} The crossOrigin value to use (or empty string for none).\n */\nfunction determineCrossOrigin(url, loc)\n{\n if ( loc === void 0 ) loc = window.location;\n\n // data: and javascript: urls are considered same-origin\n if (url.indexOf('data:') === 0)\n {\n return '';\n }\n\n // default is window.location\n loc = loc || window.location;\n\n if (!tempAnchor)\n {\n tempAnchor = document.createElement('a');\n }\n\n // let the browser determine the full href for the url of this resource and then\n // parse with the node url lib, we can't use the properties of the anchor element\n // because they don't work in IE9 :(\n tempAnchor.href = url;\n url = _url.parse(tempAnchor.href);\n\n var samePort = (!url.port && loc.port === '') || (url.port === loc.port);\n\n // if cross origin\n if (url.hostname !== loc.hostname || !samePort || url.protocol !== loc.protocol)\n {\n return 'anonymous';\n }\n\n return '';\n}\n\n/**\n * get the resolution / device pixel ratio of an asset by looking for the prefix\n * used by spritesheets and image urls\n *\n * @memberof PIXI.utils\n * @function getResolutionOfUrl\n * @param {string} url - the image path\n * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set.\n * @return {number} resolution / device pixel ratio of an asset\n */\nfunction getResolutionOfUrl(url, defaultValue)\n{\n var resolution = settings.RETINA_PREFIX.exec(url);\n\n if (resolution)\n {\n return parseFloat(resolution[1]);\n }\n\n return defaultValue !== undefined ? defaultValue : 1;\n}\n\n// A map of warning messages already fired\nvar warnings = {};\n\n/**\n * Helper for warning developers about deprecated features & settings.\n * A stack track for warnings is given; useful for tracking-down where\n * deprecated methods/properties/classes are being used within the code.\n *\n * @memberof PIXI.utils\n * @function deprecation\n * @param {string} version - The version where the feature became deprecated\n * @param {string} message - Message should include what is deprecated, where, and the new solution\n * @param {number} [ignoreDepth=3] - The number of steps to ignore at the top of the error stack\n * this is mostly to ignore internal deprecation calls.\n */\nfunction deprecation(version, message, ignoreDepth)\n{\n if ( ignoreDepth === void 0 ) ignoreDepth = 3;\n\n // Ignore duplicat\n if (warnings[message])\n {\n return;\n }\n\n /* eslint-disable no-console */\n var stack = new Error().stack;\n\n // Handle IE < 10 and Safari < 6\n if (typeof stack === 'undefined')\n {\n console.warn('PixiJS Deprecation Warning: ', (message + \"\\nDeprecated since v\" + version));\n }\n else\n {\n // chop off the stack trace which includes PixiJS internal calls\n stack = stack.split('\\n').splice(ignoreDepth).join('\\n');\n\n if (console.groupCollapsed)\n {\n console.groupCollapsed(\n '%cPixiJS Deprecation Warning: %c%s',\n 'color:#614108;background:#fffbe6',\n 'font-weight:normal;color:#614108;background:#fffbe6',\n (message + \"\\nDeprecated since v\" + version)\n );\n console.warn(stack);\n console.groupEnd();\n }\n else\n {\n console.warn('PixiJS Deprecation Warning: ', (message + \"\\nDeprecated since v\" + version));\n console.warn(stack);\n }\n }\n /* eslint-enable no-console */\n\n warnings[message] = true;\n}\n\n/**\n * Generalized convenience utilities for PIXI.\n * @example\n * // Extend PIXI's internal Event Emitter.\n * class MyEmitter extends PIXI.utils.EventEmitter {\n * constructor() {\n * super();\n * console.log(\"Emitter created!\");\n * }\n * }\n *\n * // Get info on current device\n * console.log(PIXI.utils.isMobile);\n *\n * // Convert hex color to string\n * console.log(PIXI.utils.hex2string(0xff00ff)); // returns: \"#ff00ff\"\n * @namespace PIXI.utils\n */\n\nexport { BaseTextureCache, CanvasRenderTarget, DATA_URI, ProgramCache, TextureCache, clearTextureCache, correctBlendMode, createIndicesForQuads, decomposeDataUri, deprecation, destroyTextureCache, determineCrossOrigin, getResolutionOfUrl, hex2rgb, hex2string, isPow2, isWebGLSupported, log2, nextPow2, premultiplyBlendMode, premultiplyRgba, premultiplyTint, premultiplyTintToRgba, removeItems, rgb2hex, sayHello, sign, skipHello, string2hex, trimCanvas, uid };\n//# sourceMappingURL=utils.es.js.map\n","/*!\n * @pixi/math - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/math is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * The Point object represents a location in a two-dimensional coordinate system, where x represents\n * the horizontal axis and y represents the vertical axis.\n *\n * @class\n * @memberof PIXI\n */\nvar Point = function Point(x, y)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n};\n\n/**\n * Creates a clone of this point\n *\n * @return {PIXI.Point} a copy of the point\n */\nPoint.prototype.clone = function clone ()\n{\n return new Point(this.x, this.y);\n};\n\n/**\n * Copies x and y from the given point\n *\n * @param {PIXI.IPoint} p - The point to copy from\n * @returns {PIXI.IPoint} Returns itself.\n */\nPoint.prototype.copyFrom = function copyFrom (p)\n{\n this.set(p.x, p.y);\n\n return this;\n};\n\n/**\n * Copies x and y into the given point\n *\n * @param {PIXI.IPoint} p - The point to copy.\n * @returns {PIXI.IPoint} Given point with values updated\n */\nPoint.prototype.copyTo = function copyTo (p)\n{\n p.set(this.x, this.y);\n\n return p;\n};\n\n/**\n * Returns true if the given point is equal to this point\n *\n * @param {PIXI.IPoint} p - The point to check\n * @returns {boolean} Whether the given point equal to this point\n */\nPoint.prototype.equals = function equals (p)\n{\n return (p.x === this.x) && (p.y === this.y);\n};\n\n/**\n * Sets the point to a new x and y position.\n * If y is omitted, both x and y will be set to x.\n *\n * @param {number} [x=0] - position of the point on the x axis\n * @param {number} [y=0] - position of the point on the y axis\n */\nPoint.prototype.set = function set (x, y)\n{\n this.x = x || 0;\n this.y = y || ((y !== 0) ? this.x : 0);\n};\n\n/**\n * The Point object represents a location in a two-dimensional coordinate system, where x represents\n * the horizontal axis and y represents the vertical axis.\n *\n * An ObservablePoint is a point that triggers a callback when the point's position is changed.\n *\n * @class\n * @memberof PIXI\n */\nvar ObservablePoint = function ObservablePoint(cb, scope, x, y)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n this._x = x;\n this._y = y;\n\n this.cb = cb;\n this.scope = scope;\n};\n\nvar prototypeAccessors = { x: { configurable: true },y: { configurable: true } };\n\n/**\n * Creates a clone of this point.\n * The callback and scope params can be overidden otherwise they will default\n * to the clone object's values.\n *\n * @override\n * @param {Function} [cb=null] - callback when changed\n * @param {object} [scope=null] - owner of callback\n * @return {PIXI.ObservablePoint} a copy of the point\n */\nObservablePoint.prototype.clone = function clone (cb, scope)\n{\n if ( cb === void 0 ) cb = null;\n if ( scope === void 0 ) scope = null;\n\n var _cb = cb || this.cb;\n var _scope = scope || this.scope;\n\n return new ObservablePoint(_cb, _scope, this._x, this._y);\n};\n\n/**\n * Sets the point to a new x and y position.\n * If y is omitted, both x and y will be set to x.\n *\n * @param {number} [x=0] - position of the point on the x axis\n * @param {number} [y=0] - position of the point on the y axis\n */\nObservablePoint.prototype.set = function set (x, y)\n{\n var _x = x || 0;\n var _y = y || ((y !== 0) ? _x : 0);\n\n if (this._x !== _x || this._y !== _y)\n {\n this._x = _x;\n this._y = _y;\n this.cb.call(this.scope);\n }\n};\n\n/**\n * Copies x and y from the given point\n *\n * @param {PIXI.IPoint} p - The point to copy from.\n * @returns {PIXI.IPoint} Returns itself.\n */\nObservablePoint.prototype.copyFrom = function copyFrom (p)\n{\n if (this._x !== p.x || this._y !== p.y)\n {\n this._x = p.x;\n this._y = p.y;\n this.cb.call(this.scope);\n }\n\n return this;\n};\n\n/**\n * Copies x and y into the given point\n *\n * @param {PIXI.IPoint} p - The point to copy.\n * @returns {PIXI.IPoint} Given point with values updated\n */\nObservablePoint.prototype.copyTo = function copyTo (p)\n{\n p.set(this._x, this._y);\n\n return p;\n};\n\n/**\n * Returns true if the given point is equal to this point\n *\n * @param {PIXI.IPoint} p - The point to check\n * @returns {boolean} Whether the given point equal to this point\n */\nObservablePoint.prototype.equals = function equals (p)\n{\n return (p.x === this._x) && (p.y === this._y);\n};\n\n/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n *\n * @member {number}\n */\nprototypeAccessors.x.get = function ()\n{\n return this._x;\n};\n\nprototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._x !== value)\n {\n this._x = value;\n this.cb.call(this.scope);\n }\n};\n\n/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n *\n * @member {number}\n */\nprototypeAccessors.y.get = function ()\n{\n return this._y;\n};\n\nprototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._y !== value)\n {\n this._y = value;\n this.cb.call(this.scope);\n }\n};\n\nObject.defineProperties( ObservablePoint.prototype, prototypeAccessors );\n\n/**\n * A number, or a string containing a number.\n * @memberof PIXI\n * @typedef {(PIXI.Point|PIXI.ObservablePoint)} IPoint\n */\n\n/**\n * Two Pi.\n *\n * @static\n * @constant {number} PI_2\n * @memberof PIXI\n */\nvar PI_2 = Math.PI * 2;\n\n/**\n * Conversion factor for converting radians to degrees.\n *\n * @static\n * @constant {number} RAD_TO_DEG\n * @memberof PIXI\n */\nvar RAD_TO_DEG = 180 / Math.PI;\n\n/**\n * Conversion factor for converting degrees to radians.\n *\n * @static\n * @constant {number} DEG_TO_RAD\n * @memberof PIXI\n */\nvar DEG_TO_RAD = Math.PI / 180;\n\n/**\n * Constants that identify shapes, mainly to prevent `instanceof` calls.\n *\n * @static\n * @constant\n * @name SHAPES\n * @memberof PIXI\n * @type {object}\n * @property {number} POLY Polygon\n * @property {number} RECT Rectangle\n * @property {number} CIRC Circle\n * @property {number} ELIP Ellipse\n * @property {number} RREC Rounded Rectangle\n */\nvar SHAPES = {\n POLY: 0,\n RECT: 1,\n CIRC: 2,\n ELIP: 3,\n RREC: 4,\n};\n\n/**\n * The PixiJS Matrix as a class makes it a lot faster.\n *\n * Here is a representation of it:\n * ```js\n * | a | c | tx|\n * | b | d | ty|\n * | 0 | 0 | 1 |\n * ```\n * @class\n * @memberof PIXI\n */\nvar Matrix = function Matrix(a, b, c, d, tx, ty)\n{\n if ( a === void 0 ) a = 1;\n if ( b === void 0 ) b = 0;\n if ( c === void 0 ) c = 0;\n if ( d === void 0 ) d = 1;\n if ( tx === void 0 ) tx = 0;\n if ( ty === void 0 ) ty = 0;\n\n /**\n * @member {number}\n * @default 1\n */\n this.a = a;\n\n /**\n * @member {number}\n * @default 0\n */\n this.b = b;\n\n /**\n * @member {number}\n * @default 0\n */\n this.c = c;\n\n /**\n * @member {number}\n * @default 1\n */\n this.d = d;\n\n /**\n * @member {number}\n * @default 0\n */\n this.tx = tx;\n\n /**\n * @member {number}\n * @default 0\n */\n this.ty = ty;\n\n this.array = null;\n};\n\nvar staticAccessors = { IDENTITY: { configurable: true },TEMP_MATRIX: { configurable: true } };\n\n/**\n * Creates a Matrix object based on the given array. The Element to Matrix mapping order is as follows:\n *\n * a = array[0]\n * b = array[1]\n * c = array[3]\n * d = array[4]\n * tx = array[2]\n * ty = array[5]\n *\n * @param {number[]} array - The array that the matrix will be populated from.\n */\nMatrix.prototype.fromArray = function fromArray (array)\n{\n this.a = array[0];\n this.b = array[1];\n this.c = array[3];\n this.d = array[4];\n this.tx = array[2];\n this.ty = array[5];\n};\n\n/**\n * sets the matrix properties\n *\n * @param {number} a - Matrix component\n * @param {number} b - Matrix component\n * @param {number} c - Matrix component\n * @param {number} d - Matrix component\n * @param {number} tx - Matrix component\n * @param {number} ty - Matrix component\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.set = function set (a, b, c, d, tx, ty)\n{\n this.a = a;\n this.b = b;\n this.c = c;\n this.d = d;\n this.tx = tx;\n this.ty = ty;\n\n return this;\n};\n\n/**\n * Creates an array from the current Matrix object.\n *\n * @param {boolean} transpose - Whether we need to transpose the matrix or not\n * @param {Float32Array} [out=new Float32Array(9)] - If provided the array will be assigned to out\n * @return {number[]} the newly created array which contains the matrix\n */\nMatrix.prototype.toArray = function toArray (transpose, out)\n{\n if (!this.array)\n {\n this.array = new Float32Array(9);\n }\n\n var array = out || this.array;\n\n if (transpose)\n {\n array[0] = this.a;\n array[1] = this.b;\n array[2] = 0;\n array[3] = this.c;\n array[4] = this.d;\n array[5] = 0;\n array[6] = this.tx;\n array[7] = this.ty;\n array[8] = 1;\n }\n else\n {\n array[0] = this.a;\n array[1] = this.c;\n array[2] = this.tx;\n array[3] = this.b;\n array[4] = this.d;\n array[5] = this.ty;\n array[6] = 0;\n array[7] = 0;\n array[8] = 1;\n }\n\n return array;\n};\n\n/**\n * Get a new position with the current transformation applied.\n * Can be used to go from a child's coordinate space to the world coordinate space. (e.g. rendering)\n *\n * @param {PIXI.Point} pos - The origin\n * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input)\n * @return {PIXI.Point} The new point, transformed through this matrix\n */\nMatrix.prototype.apply = function apply (pos, newPos)\n{\n newPos = newPos || new Point();\n\n var x = pos.x;\n var y = pos.y;\n\n newPos.x = (this.a * x) + (this.c * y) + this.tx;\n newPos.y = (this.b * x) + (this.d * y) + this.ty;\n\n return newPos;\n};\n\n/**\n * Get a new position with the inverse of the current transformation applied.\n * Can be used to go from the world coordinate space to a child's coordinate space. (e.g. input)\n *\n * @param {PIXI.Point} pos - The origin\n * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input)\n * @return {PIXI.Point} The new point, inverse-transformed through this matrix\n */\nMatrix.prototype.applyInverse = function applyInverse (pos, newPos)\n{\n newPos = newPos || new Point();\n\n var id = 1 / ((this.a * this.d) + (this.c * -this.b));\n\n var x = pos.x;\n var y = pos.y;\n\n newPos.x = (this.d * id * x) + (-this.c * id * y) + (((this.ty * this.c) - (this.tx * this.d)) * id);\n newPos.y = (this.a * id * y) + (-this.b * id * x) + (((-this.ty * this.a) + (this.tx * this.b)) * id);\n\n return newPos;\n};\n\n/**\n * Translates the matrix on the x and y.\n *\n * @param {number} x How much to translate x by\n * @param {number} y How much to translate y by\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.translate = function translate (x, y)\n{\n this.tx += x;\n this.ty += y;\n\n return this;\n};\n\n/**\n * Applies a scale transformation to the matrix.\n *\n * @param {number} x The amount to scale horizontally\n * @param {number} y The amount to scale vertically\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.scale = function scale (x, y)\n{\n this.a *= x;\n this.d *= y;\n this.c *= x;\n this.b *= y;\n this.tx *= x;\n this.ty *= y;\n\n return this;\n};\n\n/**\n * Applies a rotation transformation to the matrix.\n *\n * @param {number} angle - The angle in radians.\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.rotate = function rotate (angle)\n{\n var cos = Math.cos(angle);\n var sin = Math.sin(angle);\n\n var a1 = this.a;\n var c1 = this.c;\n var tx1 = this.tx;\n\n this.a = (a1 * cos) - (this.b * sin);\n this.b = (a1 * sin) + (this.b * cos);\n this.c = (c1 * cos) - (this.d * sin);\n this.d = (c1 * sin) + (this.d * cos);\n this.tx = (tx1 * cos) - (this.ty * sin);\n this.ty = (tx1 * sin) + (this.ty * cos);\n\n return this;\n};\n\n/**\n * Appends the given Matrix to this Matrix.\n *\n * @param {PIXI.Matrix} matrix - The matrix to append.\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.append = function append (matrix)\n{\n var a1 = this.a;\n var b1 = this.b;\n var c1 = this.c;\n var d1 = this.d;\n\n this.a = (matrix.a * a1) + (matrix.b * c1);\n this.b = (matrix.a * b1) + (matrix.b * d1);\n this.c = (matrix.c * a1) + (matrix.d * c1);\n this.d = (matrix.c * b1) + (matrix.d * d1);\n\n this.tx = (matrix.tx * a1) + (matrix.ty * c1) + this.tx;\n this.ty = (matrix.tx * b1) + (matrix.ty * d1) + this.ty;\n\n return this;\n};\n\n/**\n * Sets the matrix based on all the available properties\n *\n * @param {number} x - Position on the x axis\n * @param {number} y - Position on the y axis\n * @param {number} pivotX - Pivot on the x axis\n * @param {number} pivotY - Pivot on the y axis\n * @param {number} scaleX - Scale on the x axis\n * @param {number} scaleY - Scale on the y axis\n * @param {number} rotation - Rotation in radians\n * @param {number} skewX - Skew on the x axis\n * @param {number} skewY - Skew on the y axis\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.setTransform = function setTransform (x, y, pivotX, pivotY, scaleX, scaleY, rotation, skewX, skewY)\n{\n this.a = Math.cos(rotation + skewY) * scaleX;\n this.b = Math.sin(rotation + skewY) * scaleX;\n this.c = -Math.sin(rotation - skewX) * scaleY;\n this.d = Math.cos(rotation - skewX) * scaleY;\n\n this.tx = x - ((pivotX * this.a) + (pivotY * this.c));\n this.ty = y - ((pivotX * this.b) + (pivotY * this.d));\n\n return this;\n};\n\n/**\n * Prepends the given Matrix to this Matrix.\n *\n * @param {PIXI.Matrix} matrix - The matrix to prepend\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.prepend = function prepend (matrix)\n{\n var tx1 = this.tx;\n\n if (matrix.a !== 1 || matrix.b !== 0 || matrix.c !== 0 || matrix.d !== 1)\n {\n var a1 = this.a;\n var c1 = this.c;\n\n this.a = (a1 * matrix.a) + (this.b * matrix.c);\n this.b = (a1 * matrix.b) + (this.b * matrix.d);\n this.c = (c1 * matrix.a) + (this.d * matrix.c);\n this.d = (c1 * matrix.b) + (this.d * matrix.d);\n }\n\n this.tx = (tx1 * matrix.a) + (this.ty * matrix.c) + matrix.tx;\n this.ty = (tx1 * matrix.b) + (this.ty * matrix.d) + matrix.ty;\n\n return this;\n};\n\n/**\n * Decomposes the matrix (x, y, scaleX, scaleY, and rotation) and sets the properties on to a transform.\n *\n * @param {PIXI.Transform} transform - The transform to apply the properties to.\n * @return {PIXI.Transform} The transform with the newly applied properties\n */\nMatrix.prototype.decompose = function decompose (transform)\n{\n // sort out rotation / skew..\n var a = this.a;\n var b = this.b;\n var c = this.c;\n var d = this.d;\n\n var skewX = -Math.atan2(-c, d);\n var skewY = Math.atan2(b, a);\n\n var delta = Math.abs(skewX + skewY);\n\n if (delta < 0.00001 || Math.abs(PI_2 - delta) < 0.00001)\n {\n transform.rotation = skewY;\n transform.skew.x = transform.skew.y = 0;\n }\n else\n {\n transform.rotation = 0;\n transform.skew.x = skewX;\n transform.skew.y = skewY;\n }\n\n // next set scale\n transform.scale.x = Math.sqrt((a * a) + (b * b));\n transform.scale.y = Math.sqrt((c * c) + (d * d));\n\n // next set position\n transform.position.x = this.tx;\n transform.position.y = this.ty;\n\n return transform;\n};\n\n/**\n * Inverts this matrix\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.invert = function invert ()\n{\n var a1 = this.a;\n var b1 = this.b;\n var c1 = this.c;\n var d1 = this.d;\n var tx1 = this.tx;\n var n = (a1 * d1) - (b1 * c1);\n\n this.a = d1 / n;\n this.b = -b1 / n;\n this.c = -c1 / n;\n this.d = a1 / n;\n this.tx = ((c1 * this.ty) - (d1 * tx1)) / n;\n this.ty = -((a1 * this.ty) - (b1 * tx1)) / n;\n\n return this;\n};\n\n/**\n * Resets this Matrix to an identity (default) matrix.\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.identity = function identity ()\n{\n this.a = 1;\n this.b = 0;\n this.c = 0;\n this.d = 1;\n this.tx = 0;\n this.ty = 0;\n\n return this;\n};\n\n/**\n * Creates a new Matrix object with the same values as this one.\n *\n * @return {PIXI.Matrix} A copy of this matrix. Good for chaining method calls.\n */\nMatrix.prototype.clone = function clone ()\n{\n var matrix = new Matrix();\n\n matrix.a = this.a;\n matrix.b = this.b;\n matrix.c = this.c;\n matrix.d = this.d;\n matrix.tx = this.tx;\n matrix.ty = this.ty;\n\n return matrix;\n};\n\n/**\n * Changes the values of the given matrix to be the same as the ones in this matrix\n *\n * @param {PIXI.Matrix} matrix - The matrix to copy to.\n * @return {PIXI.Matrix} The matrix given in parameter with its values updated.\n */\nMatrix.prototype.copyTo = function copyTo (matrix)\n{\n matrix.a = this.a;\n matrix.b = this.b;\n matrix.c = this.c;\n matrix.d = this.d;\n matrix.tx = this.tx;\n matrix.ty = this.ty;\n\n return matrix;\n};\n\n/**\n * Changes the values of the matrix to be the same as the ones in given matrix\n *\n * @param {PIXI.Matrix} matrix - The matrix to copy from.\n * @return {PIXI.Matrix} this\n */\nMatrix.prototype.copyFrom = function copyFrom (matrix)\n{\n this.a = matrix.a;\n this.b = matrix.b;\n this.c = matrix.c;\n this.d = matrix.d;\n this.tx = matrix.tx;\n this.ty = matrix.ty;\n\n return this;\n};\n\n/**\n * A default (identity) matrix\n *\n * @static\n * @const\n * @member {PIXI.Matrix}\n */\nstaticAccessors.IDENTITY.get = function ()\n{\n return new Matrix();\n};\n\n/**\n * A temp matrix\n *\n * @static\n * @const\n * @member {PIXI.Matrix}\n */\nstaticAccessors.TEMP_MATRIX.get = function ()\n{\n return new Matrix();\n};\n\nObject.defineProperties( Matrix, staticAccessors );\n\n// Your friendly neighbour https://en.wikipedia.org/wiki/Dihedral_group\n\n/*\n * Transform matrix for operation n is:\n * | ux | vx |\n * | uy | vy |\n */\n\nvar ux = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1];\nvar uy = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1];\nvar vx = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1];\nvar vy = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1];\n\n/**\n * [Cayley Table]{@link https://en.wikipedia.org/wiki/Cayley_table}\n * for the composition of each rotation in the dihederal group D8.\n *\n * @type number[][]\n * @private\n */\nvar rotationCayley = [];\n\n/**\n * Matrices for each `GD8Symmetry` rotation.\n *\n * @type Matrix[]\n * @private\n */\nvar rotationMatrices = [];\n\n/*\n * Alias for {@code Math.sign}.\n */\nvar signum = Math.sign;\n\n/*\n * Initializes `rotationCayley` and `rotationMatrices`. It is called\n * only once below.\n */\nfunction init()\n{\n for (var i = 0; i < 16; i++)\n {\n var row = [];\n\n rotationCayley.push(row);\n\n for (var j = 0; j < 16; j++)\n {\n /* Multiplies rotation matrices i and j. */\n var _ux = signum((ux[i] * ux[j]) + (vx[i] * uy[j]));\n var _uy = signum((uy[i] * ux[j]) + (vy[i] * uy[j]));\n var _vx = signum((ux[i] * vx[j]) + (vx[i] * vy[j]));\n var _vy = signum((uy[i] * vx[j]) + (vy[i] * vy[j]));\n\n /* Finds rotation matrix matching the product and pushes it. */\n for (var k = 0; k < 16; k++)\n {\n if (ux[k] === _ux && uy[k] === _uy\n && vx[k] === _vx && vy[k] === _vy)\n {\n row.push(k);\n break;\n }\n }\n }\n }\n\n for (var i$1 = 0; i$1 < 16; i$1++)\n {\n var mat = new Matrix();\n\n mat.set(ux[i$1], uy[i$1], vx[i$1], vy[i$1], 0, 0);\n rotationMatrices.push(mat);\n }\n}\n\ninit();\n\n/**\n * @memberof PIXI\n * @typedef {number} GD8Symmetry\n * @see PIXI.GroupD8\n */\n\n/**\n * Implements the dihedral group D8, which is similar to\n * [group D4]{@link http://mathworld.wolfram.com/DihedralGroupD4.html};\n * D8 is the same but with diagonals, and it is used for texture\n * rotations.\n *\n * The directions the U- and V- axes after rotation\n * of an angle of `a: GD8Constant` are the vectors `(uX(a), uY(a))`\n * and `(vX(a), vY(a))`. These aren't necessarily unit vectors.\n *\n * **Origin:**
\n * This is the small part of gameofbombs.com portal system. It works.\n *\n * @see PIXI.GroupD8.E\n * @see PIXI.GroupD8.SE\n * @see PIXI.GroupD8.S\n * @see PIXI.GroupD8.SW\n * @see PIXI.GroupD8.W\n * @see PIXI.GroupD8.NW\n * @see PIXI.GroupD8.N\n * @see PIXI.GroupD8.NE\n * @author Ivan @ivanpopelyshev\n * @class\n * @memberof PIXI\n */\nvar GroupD8 = {\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 0° | East |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n E: 0,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 45°↻ | Southeast |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n SE: 1,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 90°↻ | South |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n S: 2,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 135°↻ | Southwest |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n SW: 3,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 180° | West |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n W: 4,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -135°/225°↻ | Northwest |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n NW: 5,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -90°/270°↻ | North |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n N: 6,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -45°/315°↻ | Northeast |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n NE: 7,\n\n /**\n * Reflection about Y-axis.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MIRROR_VERTICAL: 8,\n\n /**\n * Reflection about the main diagonal.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MAIN_DIAGONAL: 10,\n\n /**\n * Reflection about X-axis.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MIRROR_HORIZONTAL: 12,\n\n /**\n * Reflection about reverse diagonal.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n REVERSE_DIAGONAL: 14,\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The X-component of the U-axis\n * after rotating the axes.\n */\n uX: function (ind) { return ux[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The Y-component of the U-axis\n * after rotating the axes.\n */\n uY: function (ind) { return uy[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The X-component of the V-axis\n * after rotating the axes.\n */\n vX: function (ind) { return vx[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The Y-component of the V-axis\n * after rotating the axes.\n */\n vY: function (ind) { return vy[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotation - symmetry whose opposite\n * is needed. Only rotations have opposite symmetries while\n * reflections don't.\n * @return {PIXI.GD8Symmetry} The opposite symmetry of `rotation`\n */\n inv: function (rotation) {\n if (rotation & 8)// true only if between 8 & 15 (reflections)\n {\n return rotation & 15;// or rotation % 16\n }\n\n return (-rotation) & 7;// or (8 - rotation) % 8\n },\n\n /**\n * Composes the two D8 operations.\n *\n * Taking `^` as reflection:\n *\n * | | E=0 | S=2 | W=4 | N=6 | E^=8 | S^=10 | W^=12 | N^=14 |\n * |-------|-----|-----|-----|-----|------|-------|-------|-------|\n * | E=0 | E | S | W | N | E^ | S^ | W^ | N^ |\n * | S=2 | S | W | N | E | S^ | W^ | N^ | E^ |\n * | W=4 | W | N | E | S | W^ | N^ | E^ | S^ |\n * | N=6 | N | E | S | W | N^ | E^ | S^ | W^ |\n * | E^=8 | E^ | N^ | W^ | S^ | E | N | W | S |\n * | S^=10 | S^ | E^ | N^ | W^ | S | E | N | W |\n * | W^=12 | W^ | S^ | E^ | N^ | W | S | E | N |\n * | N^=14 | N^ | W^ | S^ | E^ | N | W | S | E |\n *\n * [This is a Cayley table]{@link https://en.wikipedia.org/wiki/Cayley_table}\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotationSecond - Second operation, which\n * is the row in the above cayley table.\n * @param {PIXI.GD8Symmetry} rotationFirst - First operation, which\n * is the column in the above cayley table.\n * @return {PIXI.GD8Symmetry} Composed operation\n */\n add: function (rotationSecond, rotationFirst) { return (\n rotationCayley[rotationSecond][rotationFirst]\n ); },\n\n /**\n * Reverse of `add`.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotationSecond - Second operation\n * @param {PIXI.GD8Symmetry} rotationFirst - First operation\n * @return {PIXI.GD8Symmetry} Result\n */\n sub: function (rotationSecond, rotationFirst) { return (\n rotationCayley[rotationSecond][GroupD8.inv(rotationFirst)]\n ); },\n\n /**\n * Adds 180 degrees to rotation, which is a commutative\n * operation.\n *\n * @memberof PIXI.GroupD8\n * @param {number} rotation - The number to rotate.\n * @returns {number} Rotated number\n */\n rotate180: function (rotation) { return rotation ^ 4; },\n\n /**\n * Checks if the rotation angle is vertical, i.e. south\n * or north. It doesn't work for reflections.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotation - The number to check.\n * @returns {boolean} Whether or not the direction is vertical\n */\n isVertical: function (rotation) { return (rotation & 3) === 2; }, // rotation % 4 === 2\n\n /**\n * Approximates the vector `V(dx,dy)` into one of the\n * eight directions provided by `GroupD8`.\n *\n * @memberof PIXI.GroupD8\n * @param {number} dx - X-component of the vector\n * @param {number} dy - Y-component of the vector\n * @return {PIXI.GD8Symmetry} Approximation of the vector into\n * one of the eight symmetries.\n */\n byDirection: function (dx, dy) {\n if (Math.abs(dx) * 2 <= Math.abs(dy))\n {\n if (dy >= 0)\n {\n return GroupD8.S;\n }\n\n return GroupD8.N;\n }\n else if (Math.abs(dy) * 2 <= Math.abs(dx))\n {\n if (dx > 0)\n {\n return GroupD8.E;\n }\n\n return GroupD8.W;\n }\n else if (dy > 0)\n {\n if (dx > 0)\n {\n return GroupD8.SE;\n }\n\n return GroupD8.SW;\n }\n else if (dx > 0)\n {\n return GroupD8.NE;\n }\n\n return GroupD8.NW;\n },\n\n /**\n * Helps sprite to compensate texture packer rotation.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.Matrix} matrix - sprite world matrix\n * @param {PIXI.GD8Symmetry} rotation - The rotation factor to use.\n * @param {number} tx - sprite anchoring\n * @param {number} ty - sprite anchoring\n */\n matrixAppendRotationInv: function (matrix, rotation, tx, ty) {\n if ( tx === void 0 ) tx = 0;\n if ( ty === void 0 ) ty = 0;\n\n // Packer used \"rotation\", we use \"inv(rotation)\"\n var mat = rotationMatrices[GroupD8.inv(rotation)];\n\n mat.tx = tx;\n mat.ty = ty;\n matrix.append(mat);\n },\n};\n\n/**\n * Transform that takes care about its versions\n *\n * @class\n * @memberof PIXI\n */\nvar Transform = function Transform()\n{\n /**\n * The world transformation matrix.\n *\n * @member {PIXI.Matrix}\n */\n this.worldTransform = new Matrix();\n\n /**\n * The local transformation matrix.\n *\n * @member {PIXI.Matrix}\n */\n this.localTransform = new Matrix();\n\n /**\n * The coordinate of the object relative to the local coordinates of the parent.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.position = new ObservablePoint(this.onChange, this, 0, 0);\n\n /**\n * The scale factor of the object.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.scale = new ObservablePoint(this.onChange, this, 1, 1);\n\n /**\n * The pivot point of the displayObject that it rotates around.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.pivot = new ObservablePoint(this.onChange, this, 0, 0);\n\n /**\n * The skew amount, on the x and y axis.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.skew = new ObservablePoint(this.updateSkew, this, 0, 0);\n\n /**\n * The rotation amount.\n *\n * @protected\n * @member {number}\n */\n this._rotation = 0;\n\n /**\n * The X-coordinate value of the normalized local X axis,\n * the first column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._cx = 1;\n\n /**\n * The Y-coordinate value of the normalized local X axis,\n * the first column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._sx = 0;\n\n /**\n * The X-coordinate value of the normalized local Y axis,\n * the second column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._cy = 0;\n\n /**\n * The Y-coordinate value of the normalized local Y axis,\n * the second column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._sy = 1;\n\n /**\n * The locally unique ID of the local transform.\n *\n * @protected\n * @member {number}\n */\n this._localID = 0;\n\n /**\n * The locally unique ID of the local transform\n * used to calculate the current local transformation matrix.\n *\n * @protected\n * @member {number}\n */\n this._currentLocalID = 0;\n\n /**\n * The locally unique ID of the world transform.\n *\n * @protected\n * @member {number}\n */\n this._worldID = 0;\n\n /**\n * The locally unique ID of the parent's world transform\n * used to calculate the current world transformation matrix.\n *\n * @protected\n * @member {number}\n */\n this._parentID = 0;\n};\n\nvar prototypeAccessors$1 = { rotation: { configurable: true } };\n\n/**\n * Called when a value changes.\n *\n * @protected\n */\nTransform.prototype.onChange = function onChange ()\n{\n this._localID++;\n};\n\n/**\n * Called when the skew or the rotation changes.\n *\n * @protected\n */\nTransform.prototype.updateSkew = function updateSkew ()\n{\n this._cx = Math.cos(this._rotation + this.skew._y);\n this._sx = Math.sin(this._rotation + this.skew._y);\n this._cy = -Math.sin(this._rotation - this.skew._x); // cos, added PI/2\n this._sy = Math.cos(this._rotation - this.skew._x); // sin, added PI/2\n\n this._localID++;\n};\n\n/**\n * Updates the local transformation matrix.\n */\nTransform.prototype.updateLocalTransform = function updateLocalTransform ()\n{\n var lt = this.localTransform;\n\n if (this._localID !== this._currentLocalID)\n {\n // get the matrix values of the displayobject based on its transform properties..\n lt.a = this._cx * this.scale._x;\n lt.b = this._sx * this.scale._x;\n lt.c = this._cy * this.scale._y;\n lt.d = this._sy * this.scale._y;\n\n lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c));\n lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d));\n this._currentLocalID = this._localID;\n\n // force an update..\n this._parentID = -1;\n }\n};\n\n/**\n * Updates the local and the world transformation matrices.\n *\n * @param {PIXI.Transform} parentTransform - The parent transform\n */\nTransform.prototype.updateTransform = function updateTransform (parentTransform)\n{\n var lt = this.localTransform;\n\n if (this._localID !== this._currentLocalID)\n {\n // get the matrix values of the displayobject based on its transform properties..\n lt.a = this._cx * this.scale._x;\n lt.b = this._sx * this.scale._x;\n lt.c = this._cy * this.scale._y;\n lt.d = this._sy * this.scale._y;\n\n lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c));\n lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d));\n this._currentLocalID = this._localID;\n\n // force an update..\n this._parentID = -1;\n }\n\n if (this._parentID !== parentTransform._worldID)\n {\n // concat the parent matrix with the objects transform.\n var pt = parentTransform.worldTransform;\n var wt = this.worldTransform;\n\n wt.a = (lt.a * pt.a) + (lt.b * pt.c);\n wt.b = (lt.a * pt.b) + (lt.b * pt.d);\n wt.c = (lt.c * pt.a) + (lt.d * pt.c);\n wt.d = (lt.c * pt.b) + (lt.d * pt.d);\n wt.tx = (lt.tx * pt.a) + (lt.ty * pt.c) + pt.tx;\n wt.ty = (lt.tx * pt.b) + (lt.ty * pt.d) + pt.ty;\n\n this._parentID = parentTransform._worldID;\n\n // update the id of the transform..\n this._worldID++;\n }\n};\n\n/**\n * Decomposes a matrix and sets the transforms properties based on it.\n *\n * @param {PIXI.Matrix} matrix - The matrix to decompose\n */\nTransform.prototype.setFromMatrix = function setFromMatrix (matrix)\n{\n matrix.decompose(this);\n this._localID++;\n};\n\n/**\n * The rotation of the object in radians.\n *\n * @member {number}\n */\nprototypeAccessors$1.rotation.get = function ()\n{\n return this._rotation;\n};\n\nprototypeAccessors$1.rotation.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._rotation !== value)\n {\n this._rotation = value;\n this.updateSkew();\n }\n};\n\nObject.defineProperties( Transform.prototype, prototypeAccessors$1 );\n\n/**\n * A default (identity) transform\n *\n * @static\n * @constant\n * @member {PIXI.Transform}\n */\nTransform.IDENTITY = new Transform();\n\n/**\n * Size object, contains width and height\n *\n * @memberof PIXI\n * @typedef {object} ISize\n * @property {number} width - Width component\n * @property {number} height - Height component\n */\n\n/**\n * Rectangle object is an area defined by its position, as indicated by its top-left corner\n * point (x, y) and by its width and its height.\n *\n * @class\n * @memberof PIXI\n */\nvar Rectangle = function Rectangle(x, y, width, height)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = Number(x);\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = Number(y);\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = Number(width);\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = Number(height);\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.RECT\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.RECT;\n};\n\nvar prototypeAccessors$2 = { left: { configurable: true },right: { configurable: true },top: { configurable: true },bottom: { configurable: true } };\nvar staticAccessors$1 = { EMPTY: { configurable: true } };\n\n/**\n * returns the left edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.left.get = function ()\n{\n return this.x;\n};\n\n/**\n * returns the right edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.right.get = function ()\n{\n return this.x + this.width;\n};\n\n/**\n * returns the top edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.top.get = function ()\n{\n return this.y;\n};\n\n/**\n * returns the bottom edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.bottom.get = function ()\n{\n return this.y + this.height;\n};\n\n/**\n * A constant empty rectangle.\n *\n * @static\n * @constant\n * @member {PIXI.Rectangle}\n */\nstaticAccessors$1.EMPTY.get = function ()\n{\n return new Rectangle(0, 0, 0, 0);\n};\n\n/**\n * Creates a clone of this Rectangle\n *\n * @return {PIXI.Rectangle} a copy of the rectangle\n */\nRectangle.prototype.clone = function clone ()\n{\n return new Rectangle(this.x, this.y, this.width, this.height);\n};\n\n/**\n * Copies another rectangle to this one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to copy from.\n * @return {PIXI.Rectangle} Returns itself.\n */\nRectangle.prototype.copyFrom = function copyFrom (rectangle)\n{\n this.x = rectangle.x;\n this.y = rectangle.y;\n this.width = rectangle.width;\n this.height = rectangle.height;\n\n return this;\n};\n\n/**\n * Copies this rectangle to another one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to copy to.\n * @return {PIXI.Rectangle} Returns given parameter.\n */\nRectangle.prototype.copyTo = function copyTo (rectangle)\n{\n rectangle.x = this.x;\n rectangle.y = this.y;\n rectangle.width = this.width;\n rectangle.height = this.height;\n\n return rectangle;\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this Rectangle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Rectangle\n */\nRectangle.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n\n if (x >= this.x && x < this.x + this.width)\n {\n if (y >= this.y && y < this.y + this.height)\n {\n return true;\n }\n }\n\n return false;\n};\n\n/**\n * Pads the rectangle making it grow in all directions.\n *\n * @param {number} paddingX - The horizontal padding amount.\n * @param {number} paddingY - The vertical padding amount.\n */\nRectangle.prototype.pad = function pad (paddingX, paddingY)\n{\n paddingX = paddingX || 0;\n paddingY = paddingY || ((paddingY !== 0) ? paddingX : 0);\n\n this.x -= paddingX;\n this.y -= paddingY;\n\n this.width += paddingX * 2;\n this.height += paddingY * 2;\n};\n\n/**\n * Fits this rectangle around the passed one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to fit.\n */\nRectangle.prototype.fit = function fit (rectangle)\n{\n var x1 = Math.max(this.x, rectangle.x);\n var x2 = Math.min(this.x + this.width, rectangle.x + rectangle.width);\n var y1 = Math.max(this.y, rectangle.y);\n var y2 = Math.min(this.y + this.height, rectangle.y + rectangle.height);\n\n this.x = x1;\n this.width = Math.max(x2 - x1, 0);\n this.y = y1;\n this.height = Math.max(y2 - y1, 0);\n};\n\n/**\n * Enlarges rectangle that way its corners lie on grid\n *\n * @param {number} [resolution=1] resolution\n * @param {number} [eps=0.001] precision\n */\nRectangle.prototype.ceil = function ceil (resolution, eps)\n{\n if ( resolution === void 0 ) resolution = 1;\n if ( eps === void 0 ) eps = 0.001;\n\n var x2 = Math.ceil((this.x + this.width - eps) * resolution) / resolution;\n var y2 = Math.ceil((this.y + this.height - eps) * resolution) / resolution;\n\n this.x = Math.floor((this.x + eps) * resolution) / resolution;\n this.y = Math.floor((this.y + eps) * resolution) / resolution;\n\n this.width = x2 - this.x;\n this.height = y2 - this.y;\n};\n\n/**\n * Enlarges this rectangle to include the passed rectangle.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to include.\n */\nRectangle.prototype.enlarge = function enlarge (rectangle)\n{\n var x1 = Math.min(this.x, rectangle.x);\n var x2 = Math.max(this.x + this.width, rectangle.x + rectangle.width);\n var y1 = Math.min(this.y, rectangle.y);\n var y2 = Math.max(this.y + this.height, rectangle.y + rectangle.height);\n\n this.x = x1;\n this.width = x2 - x1;\n this.y = y1;\n this.height = y2 - y1;\n};\n\nObject.defineProperties( Rectangle.prototype, prototypeAccessors$2 );\nObject.defineProperties( Rectangle, staticAccessors$1 );\n\n/**\n * The Circle object is used to help draw graphics and can also be used to specify a hit area for displayObjects.\n *\n * @class\n * @memberof PIXI\n */\nvar Circle = function Circle(x, y, radius)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( radius === void 0 ) radius = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.radius = radius;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.CIRC\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.CIRC;\n};\n\n/**\n * Creates a clone of this Circle instance\n *\n * @return {PIXI.Circle} a copy of the Circle\n */\nCircle.prototype.clone = function clone ()\n{\n return new Circle(this.x, this.y, this.radius);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this circle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Circle\n */\nCircle.prototype.contains = function contains (x, y)\n{\n if (this.radius <= 0)\n {\n return false;\n }\n\n var r2 = this.radius * this.radius;\n var dx = (this.x - x);\n var dy = (this.y - y);\n\n dx *= dx;\n dy *= dy;\n\n return (dx + dy <= r2);\n};\n\n/**\n* Returns the framing rectangle of the circle as a Rectangle object\n*\n* @return {PIXI.Rectangle} the framing rectangle\n*/\nCircle.prototype.getBounds = function getBounds ()\n{\n return new Rectangle(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2);\n};\n\n/**\n * The Ellipse object is used to help draw graphics and can also be used to specify a hit area for displayObjects.\n *\n * @class\n * @memberof PIXI\n */\nvar Ellipse = function Ellipse(x, y, halfWidth, halfHeight)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( halfWidth === void 0 ) halfWidth = 0;\n if ( halfHeight === void 0 ) halfHeight = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = halfWidth;\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = halfHeight;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.ELIP\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.ELIP;\n};\n\n/**\n * Creates a clone of this Ellipse instance\n *\n * @return {PIXI.Ellipse} a copy of the ellipse\n */\nEllipse.prototype.clone = function clone ()\n{\n return new Ellipse(this.x, this.y, this.width, this.height);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this ellipse\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coords are within this ellipse\n */\nEllipse.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n\n // normalize the coords to an ellipse with center 0,0\n var normx = ((x - this.x) / this.width);\n var normy = ((y - this.y) / this.height);\n\n normx *= normx;\n normy *= normy;\n\n return (normx + normy <= 1);\n};\n\n/**\n * Returns the framing rectangle of the ellipse as a Rectangle object\n *\n * @return {PIXI.Rectangle} the framing rectangle\n */\nEllipse.prototype.getBounds = function getBounds ()\n{\n return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height);\n};\n\n/**\n * A class to define a shape via user defined co-orinates.\n *\n * @class\n * @memberof PIXI\n */\nvar Polygon = function Polygon()\n{\n var points = [], len = arguments.length;\n while ( len-- ) points[ len ] = arguments[ len ];\n\n if (Array.isArray(points[0]))\n {\n points = points[0];\n }\n\n // if this is an array of points, convert it to a flat array of numbers\n if (points[0] instanceof Point)\n {\n var p = [];\n\n for (var i = 0, il = points.length; i < il; i++)\n {\n p.push(points[i].x, points[i].y);\n }\n\n points = p;\n }\n\n /**\n * An array of the points of this polygon\n *\n * @member {number[]}\n */\n this.points = points;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.POLY\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.POLY;\n\n /**\n * `false` after moveTo, `true` after `closePath`. In all other cases it is `true`.\n * @member {boolean}\n * @default true\n */\n this.closeStroke = true;\n};\n\n/**\n * Creates a clone of this polygon\n *\n * @return {PIXI.Polygon} a copy of the polygon\n */\nPolygon.prototype.clone = function clone ()\n{\n var polygon = new Polygon(this.points.slice());\n\n polygon.closeStroke = this.closeStroke;\n\n return polygon;\n};\n\n/**\n * Checks whether the x and y coordinates passed to this function are contained within this polygon\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this polygon\n */\nPolygon.prototype.contains = function contains (x, y)\n{\n var inside = false;\n\n // use some raycasting to test hits\n // https://github.com/substack/point-in-polygon/blob/master/index.js\n var length = this.points.length / 2;\n\n for (var i = 0, j = length - 1; i < length; j = i++)\n {\n var xi = this.points[i * 2];\n var yi = this.points[(i * 2) + 1];\n var xj = this.points[j * 2];\n var yj = this.points[(j * 2) + 1];\n var intersect = ((yi > y) !== (yj > y)) && (x < ((xj - xi) * ((y - yi) / (yj - yi))) + xi);\n\n if (intersect)\n {\n inside = !inside;\n }\n }\n\n return inside;\n};\n\n/**\n * The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its\n * top-left corner point (x, y) and by its width and its height and its radius.\n *\n * @class\n * @memberof PIXI\n */\nvar RoundedRectangle = function RoundedRectangle(x, y, width, height, radius)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n if ( radius === void 0 ) radius = 20;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = width;\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = height;\n\n /**\n * @member {number}\n * @default 20\n */\n this.radius = radius;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readonly\n * @default PIXI.SHAPES.RREC\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.RREC;\n};\n\n/**\n * Creates a clone of this Rounded Rectangle\n *\n * @return {PIXI.RoundedRectangle} a copy of the rounded rectangle\n */\nRoundedRectangle.prototype.clone = function clone ()\n{\n return new RoundedRectangle(this.x, this.y, this.width, this.height, this.radius);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this Rounded Rectangle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Rounded Rectangle\n */\nRoundedRectangle.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n if (x >= this.x && x <= this.x + this.width)\n {\n if (y >= this.y && y <= this.y + this.height)\n {\n if ((y >= this.y + this.radius && y <= this.y + this.height - this.radius)\n || (x >= this.x + this.radius && x <= this.x + this.width - this.radius))\n {\n return true;\n }\n var dx = x - (this.x + this.radius);\n var dy = y - (this.y + this.radius);\n var radius2 = this.radius * this.radius;\n\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dx = x - (this.x + this.width - this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dy = y - (this.y + this.height - this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dx = x - (this.x + this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n }\n }\n\n return false;\n};\n\n/**\n * Math classes and utilities mixed into PIXI namespace.\n *\n * @lends PIXI\n */\n\nexport { Circle, DEG_TO_RAD, Ellipse, GroupD8, Matrix, ObservablePoint, PI_2, Point, Polygon, RAD_TO_DEG, Rectangle, RoundedRectangle, SHAPES, Transform };\n//# sourceMappingURL=math.es.js.map\n","/*!\n * @pixi/display - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/display is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nimport { Rectangle, RAD_TO_DEG, DEG_TO_RAD, Transform } from '@pixi/math';\nimport { EventEmitter, removeItems } from '@pixi/utils';\n\n/**\n * Sets the default value for the container property 'sortableChildren'.\n * If set to true, the container will sort its children by zIndex value\n * when updateTransform() is called, or manually if sortChildren() is called.\n *\n * This actually changes the order of elements in the array, so should be treated\n * as a basic solution that is not performant compared to other solutions,\n * such as @link https://github.com/pixijs/pixi-display\n *\n * Also be aware of that this may not work nicely with the addChildAt() function,\n * as the zIndex sorting may cause the child to automatically sorted to another position.\n *\n * @static\n * @constant\n * @name SORTABLE_CHILDREN\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\nsettings.SORTABLE_CHILDREN = false;\n\n/**\n * 'Builder' pattern for bounds rectangles.\n *\n * This could be called an Axis-Aligned Bounding Box.\n * It is not an actual shape. It is a mutable thing; no 'EMPTY' or those kind of problems.\n *\n * @class\n * @memberof PIXI\n */\nvar Bounds = function Bounds()\n{\n /**\n * @member {number}\n * @default 0\n */\n this.minX = Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.minY = Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.maxX = -Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.maxY = -Infinity;\n\n this.rect = null;\n};\n\n/**\n * Checks if bounds are empty.\n *\n * @return {boolean} True if empty.\n */\nBounds.prototype.isEmpty = function isEmpty ()\n{\n return this.minX > this.maxX || this.minY > this.maxY;\n};\n\n/**\n * Clears the bounds and resets.\n *\n */\nBounds.prototype.clear = function clear ()\n{\n this.updateID++;\n\n this.minX = Infinity;\n this.minY = Infinity;\n this.maxX = -Infinity;\n this.maxY = -Infinity;\n};\n\n/**\n * Can return Rectangle.EMPTY constant, either construct new rectangle, either use your rectangle\n * It is not guaranteed that it will return tempRect\n *\n * @param {PIXI.Rectangle} rect - temporary object will be used if AABB is not empty\n * @returns {PIXI.Rectangle} A rectangle of the bounds\n */\nBounds.prototype.getRectangle = function getRectangle (rect)\n{\n if (this.minX > this.maxX || this.minY > this.maxY)\n {\n return Rectangle.EMPTY;\n }\n\n rect = rect || new Rectangle(0, 0, 1, 1);\n\n rect.x = this.minX;\n rect.y = this.minY;\n rect.width = this.maxX - this.minX;\n rect.height = this.maxY - this.minY;\n\n return rect;\n};\n\n/**\n * This function should be inlined when its possible.\n *\n * @param {PIXI.Point} point - The point to add.\n */\nBounds.prototype.addPoint = function addPoint (point)\n{\n this.minX = Math.min(this.minX, point.x);\n this.maxX = Math.max(this.maxX, point.x);\n this.minY = Math.min(this.minY, point.y);\n this.maxY = Math.max(this.maxY, point.y);\n};\n\n/**\n * Adds a quad, not transformed\n *\n * @param {Float32Array} vertices - The verts to add.\n */\nBounds.prototype.addQuad = function addQuad (vertices)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n var x = vertices[0];\n var y = vertices[1];\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[2];\n y = vertices[3];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[4];\n y = vertices[5];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[6];\n y = vertices[7];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds sprite frame, transformed.\n *\n * @param {PIXI.Transform} transform - TODO\n * @param {number} x0 - TODO\n * @param {number} y0 - TODO\n * @param {number} x1 - TODO\n * @param {number} y1 - TODO\n */\nBounds.prototype.addFrame = function addFrame (transform, x0, y0, x1, y1)\n{\n var matrix = transform.worldTransform;\n var a = matrix.a;\n var b = matrix.b;\n var c = matrix.c;\n var d = matrix.d;\n var tx = matrix.tx;\n var ty = matrix.ty;\n\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n var x = (a * x0) + (c * y0) + tx;\n var y = (b * x0) + (d * y0) + ty;\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x1) + (c * y0) + tx;\n y = (b * x1) + (d * y0) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x0) + (c * y1) + tx;\n y = (b * x0) + (d * y1) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x1) + (c * y1) + tx;\n y = (b * x1) + (d * y1) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds screen vertices from array\n *\n * @param {Float32Array} vertexData - calculated vertices\n * @param {number} beginOffset - begin offset\n * @param {number} endOffset - end offset, excluded\n */\nBounds.prototype.addVertexData = function addVertexData (vertexData, beginOffset, endOffset)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n for (var i = beginOffset; i < endOffset; i += 2)\n {\n var x = vertexData[i];\n var y = vertexData[i + 1];\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n }\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Add an array of mesh vertices\n *\n * @param {PIXI.Transform} transform - mesh transform\n * @param {Float32Array} vertices - mesh coordinates in array\n * @param {number} beginOffset - begin offset\n * @param {number} endOffset - end offset, excluded\n */\nBounds.prototype.addVertices = function addVertices (transform, vertices, beginOffset, endOffset)\n{\n var matrix = transform.worldTransform;\n var a = matrix.a;\n var b = matrix.b;\n var c = matrix.c;\n var d = matrix.d;\n var tx = matrix.tx;\n var ty = matrix.ty;\n\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n for (var i = beginOffset; i < endOffset; i += 2)\n {\n var rawX = vertices[i];\n var rawY = vertices[i + 1];\n var x = (a * rawX) + (c * rawY) + tx;\n var y = (d * rawY) + (b * rawX) + ty;\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n }\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds other Bounds\n *\n * @param {PIXI.Bounds} bounds - TODO\n */\nBounds.prototype.addBounds = function addBounds (bounds)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = bounds.minX < minX ? bounds.minX : minX;\n this.minY = bounds.minY < minY ? bounds.minY : minY;\n this.maxX = bounds.maxX > maxX ? bounds.maxX : maxX;\n this.maxY = bounds.maxY > maxY ? bounds.maxY : maxY;\n};\n\n/**\n * Adds other Bounds, masked with Bounds\n *\n * @param {PIXI.Bounds} bounds - TODO\n * @param {PIXI.Bounds} mask - TODO\n */\nBounds.prototype.addBoundsMask = function addBoundsMask (bounds, mask)\n{\n var _minX = bounds.minX > mask.minX ? bounds.minX : mask.minX;\n var _minY = bounds.minY > mask.minY ? bounds.minY : mask.minY;\n var _maxX = bounds.maxX < mask.maxX ? bounds.maxX : mask.maxX;\n var _maxY = bounds.maxY < mask.maxY ? bounds.maxY : mask.maxY;\n\n if (_minX <= _maxX && _minY <= _maxY)\n {\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = _minX < minX ? _minX : minX;\n this.minY = _minY < minY ? _minY : minY;\n this.maxX = _maxX > maxX ? _maxX : maxX;\n this.maxY = _maxY > maxY ? _maxY : maxY;\n }\n};\n\n/**\n * Adds other Bounds, masked with Rectangle\n *\n * @param {PIXI.Bounds} bounds - TODO\n * @param {PIXI.Rectangle} area - TODO\n */\nBounds.prototype.addBoundsArea = function addBoundsArea (bounds, area)\n{\n var _minX = bounds.minX > area.x ? bounds.minX : area.x;\n var _minY = bounds.minY > area.y ? bounds.minY : area.y;\n var _maxX = bounds.maxX < area.x + area.width ? bounds.maxX : (area.x + area.width);\n var _maxY = bounds.maxY < area.y + area.height ? bounds.maxY : (area.y + area.height);\n\n if (_minX <= _maxX && _minY <= _maxY)\n {\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = _minX < minX ? _minX : minX;\n this.minY = _minY < minY ? _minY : minY;\n this.maxX = _maxX > maxX ? _maxX : maxX;\n this.maxY = _maxY > maxY ? _maxY : maxY;\n }\n};\n\n// _tempDisplayObjectParent = new DisplayObject();\n\n/**\n * The base class for all objects that are rendered on the screen.\n *\n * This is an abstract class and should not be used on its own; rather it should be extended.\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar DisplayObject = /*@__PURE__*/(function (EventEmitter) {\n function DisplayObject()\n {\n EventEmitter.call(this);\n\n this.tempDisplayObjectParent = null;\n\n // TODO: need to create Transform from factory\n /**\n * World transform and local transform of this object.\n * This will become read-only later, please do not assign anything there unless you know what are you doing.\n *\n * @member {PIXI.Transform}\n */\n this.transform = new Transform();\n\n /**\n * The opacity of the object.\n *\n * @member {number}\n */\n this.alpha = 1;\n\n /**\n * The visibility of the object. If false the object will not be drawn, and\n * the updateTransform function will not be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually.\n *\n * @member {boolean}\n */\n this.visible = true;\n\n /**\n * Can this object be rendered, if false the object will not be drawn but the updateTransform\n * methods will still be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds manually.\n *\n * @member {boolean}\n */\n this.renderable = true;\n\n /**\n * The display object container that contains this display object.\n *\n * @member {PIXI.Container}\n * @readonly\n */\n this.parent = null;\n\n /**\n * The multiplied alpha of the displayObject.\n *\n * @member {number}\n * @readonly\n */\n this.worldAlpha = 1;\n\n /**\n * Which index in the children array the display component was before the previous zIndex sort.\n * Used by containers to help sort objects with the same zIndex, by using previous array index as the decider.\n *\n * @member {number}\n * @protected\n */\n this._lastSortedIndex = 0;\n\n /**\n * The zIndex of the displayObject.\n * A higher value will mean it will be rendered on top of other displayObjects within the same container.\n *\n * @member {number}\n * @protected\n */\n this._zIndex = 0;\n\n /**\n * The area the filter is applied to. This is used as more of an optimization\n * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle.\n *\n * Also works as an interaction mask.\n *\n * @member {?PIXI.Rectangle}\n */\n this.filterArea = null;\n\n /**\n * Sets the filters for the displayObject.\n * * IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer.\n * To remove filters simply set this property to `'null'`.\n *\n * @member {?PIXI.Filter[]}\n */\n this.filters = null;\n this._enabledFilters = null;\n\n /**\n * The bounds object, this is used to calculate and store the bounds of the displayObject.\n *\n * @member {PIXI.Bounds}\n * @protected\n */\n this._bounds = new Bounds();\n this._boundsID = 0;\n this._lastBoundsID = -1;\n this._boundsRect = null;\n this._localBoundsRect = null;\n\n /**\n * The original, cached mask of the object.\n *\n * @member {PIXI.Graphics|PIXI.Sprite|null}\n * @protected\n */\n this._mask = null;\n\n /**\n * Fired when this DisplayObject is added to a Container.\n *\n * @event PIXI.DisplayObject#added\n * @param {PIXI.Container} container - The container added to.\n */\n\n /**\n * Fired when this DisplayObject is removed from a Container.\n *\n * @event PIXI.DisplayObject#removed\n * @param {PIXI.Container} container - The container removed from.\n */\n\n /**\n * If the object has been destroyed via destroy(). If true, it should not be used.\n *\n * @member {boolean}\n * @protected\n */\n this._destroyed = false;\n\n /**\n * used to fast check if a sprite is.. a sprite!\n * @member {boolean}\n */\n this.isSprite = false;\n }\n\n if ( EventEmitter ) DisplayObject.__proto__ = EventEmitter;\n DisplayObject.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n DisplayObject.prototype.constructor = DisplayObject;\n\n var prototypeAccessors = { _tempDisplayObjectParent: { configurable: true },x: { configurable: true },y: { configurable: true },worldTransform: { configurable: true },localTransform: { configurable: true },position: { configurable: true },scale: { configurable: true },pivot: { configurable: true },skew: { configurable: true },rotation: { configurable: true },angle: { configurable: true },zIndex: { configurable: true },worldVisible: { configurable: true },mask: { configurable: true } };\n\n /**\n * @protected\n * @member {PIXI.DisplayObject}\n */\n DisplayObject.mixin = function mixin (source)\n {\n // in ES8/ES2017, this would be really easy:\n // Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n\n // get all the enumerable property keys\n var keys = Object.keys(source);\n\n // loop through properties\n for (var i = 0; i < keys.length; ++i)\n {\n var propertyName = keys[i];\n\n // Set the property using the property descriptor - this works for accessors and normal value properties\n Object.defineProperty(\n DisplayObject.prototype,\n propertyName,\n Object.getOwnPropertyDescriptor(source, propertyName)\n );\n }\n };\n\n prototypeAccessors._tempDisplayObjectParent.get = function ()\n {\n if (this.tempDisplayObjectParent === null)\n {\n this.tempDisplayObjectParent = new DisplayObject();\n }\n\n return this.tempDisplayObjectParent;\n };\n\n /**\n * Updates the object transform for rendering.\n *\n * TODO - Optimization pass!\n */\n DisplayObject.prototype.updateTransform = function updateTransform ()\n {\n this.transform.updateTransform(this.parent.transform);\n // multiply the alphas..\n this.worldAlpha = this.alpha * this.parent.worldAlpha;\n\n this._bounds.updateID++;\n };\n\n /**\n * Recursively updates transform of all objects from the root to this one\n * internal function for toLocal()\n */\n DisplayObject.prototype._recursivePostUpdateTransform = function _recursivePostUpdateTransform ()\n {\n if (this.parent)\n {\n this.parent._recursivePostUpdateTransform();\n this.transform.updateTransform(this.parent.transform);\n }\n else\n {\n this.transform.updateTransform(this._tempDisplayObjectParent.transform);\n }\n };\n\n /**\n * Retrieves the bounds of the displayObject as a rectangle object.\n *\n * @param {boolean} [skipUpdate] - Setting to `true` will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost.\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation.\n * @return {PIXI.Rectangle} The rectangular bounding area.\n */\n DisplayObject.prototype.getBounds = function getBounds (skipUpdate, rect)\n {\n if (!skipUpdate)\n {\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this._recursivePostUpdateTransform();\n this.updateTransform();\n }\n }\n\n if (this._boundsID !== this._lastBoundsID)\n {\n this.calculateBounds();\n this._lastBoundsID = this._boundsID;\n }\n\n if (!rect)\n {\n if (!this._boundsRect)\n {\n this._boundsRect = new Rectangle();\n }\n\n rect = this._boundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n };\n\n /**\n * Retrieves the local bounds of the displayObject as a rectangle object.\n *\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation.\n * @return {PIXI.Rectangle} The rectangular bounding area.\n */\n DisplayObject.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n var transformRef = this.transform;\n var parentRef = this.parent;\n\n this.parent = null;\n this.transform = this._tempDisplayObjectParent.transform;\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n var bounds = this.getBounds(false, rect);\n\n this.parent = parentRef;\n this.transform = transformRef;\n\n return bounds;\n };\n\n /**\n * Calculates the global position of the display object.\n *\n * @param {PIXI.IPoint} position - The world origin to calculate from.\n * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point).\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform.\n * @return {PIXI.IPoint} A point object representing the position of this object.\n */\n DisplayObject.prototype.toGlobal = function toGlobal (position, point, skipUpdate)\n {\n if ( skipUpdate === void 0 ) skipUpdate = false;\n\n if (!skipUpdate)\n {\n this._recursivePostUpdateTransform();\n\n // this parent check is for just in case the item is a root object.\n // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly\n // this is mainly to avoid a parent check in the main loop. Every little helps for performance :)\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.displayObjectUpdateTransform();\n this.parent = null;\n }\n else\n {\n this.displayObjectUpdateTransform();\n }\n }\n\n // don't need to update the lot\n return this.worldTransform.apply(position, point);\n };\n\n /**\n * Calculates the local position of the display object relative to another point.\n *\n * @param {PIXI.IPoint} position - The world origin to calculate from.\n * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from.\n * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point).\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform\n * @return {PIXI.IPoint} A point object representing the position of this object\n */\n DisplayObject.prototype.toLocal = function toLocal (position, from, point, skipUpdate)\n {\n if (from)\n {\n position = from.toGlobal(position, point, skipUpdate);\n }\n\n if (!skipUpdate)\n {\n this._recursivePostUpdateTransform();\n\n // this parent check is for just in case the item is a root object.\n // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly\n // this is mainly to avoid a parent check in the main loop. Every little helps for performance :)\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.displayObjectUpdateTransform();\n this.parent = null;\n }\n else\n {\n this.displayObjectUpdateTransform();\n }\n }\n\n // simply apply the matrix..\n return this.worldTransform.applyInverse(position, point);\n };\n\n /**\n * Renders the object using the WebGL renderer.\n *\n * @param {PIXI.Renderer} renderer - The renderer.\n */\n DisplayObject.prototype.render = function render (renderer) // eslint-disable-line no-unused-vars\n {\n // OVERWRITE;\n };\n\n /**\n * Set the parent Container of this DisplayObject.\n *\n * @param {PIXI.Container} container - The Container to add this DisplayObject to.\n * @return {PIXI.Container} The Container that this DisplayObject was added to.\n */\n DisplayObject.prototype.setParent = function setParent (container)\n {\n if (!container || !container.addChild)\n {\n throw new Error('setParent: Argument must be a Container');\n }\n\n container.addChild(this);\n\n return container;\n };\n\n /**\n * Convenience function to set the position, scale, skew and pivot at once.\n *\n * @param {number} [x=0] - The X position\n * @param {number} [y=0] - The Y position\n * @param {number} [scaleX=1] - The X scale value\n * @param {number} [scaleY=1] - The Y scale value\n * @param {number} [rotation=0] - The rotation\n * @param {number} [skewX=0] - The X skew value\n * @param {number} [skewY=0] - The Y skew value\n * @param {number} [pivotX=0] - The X pivot value\n * @param {number} [pivotY=0] - The Y pivot value\n * @return {PIXI.DisplayObject} The DisplayObject instance\n */\n DisplayObject.prototype.setTransform = function setTransform (x, y, scaleX, scaleY, rotation, skewX, skewY, pivotX, pivotY)\n {\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( scaleX === void 0 ) scaleX = 1;\n if ( scaleY === void 0 ) scaleY = 1;\n if ( rotation === void 0 ) rotation = 0;\n if ( skewX === void 0 ) skewX = 0;\n if ( skewY === void 0 ) skewY = 0;\n if ( pivotX === void 0 ) pivotX = 0;\n if ( pivotY === void 0 ) pivotY = 0;\n\n this.position.x = x;\n this.position.y = y;\n this.scale.x = !scaleX ? 1 : scaleX;\n this.scale.y = !scaleY ? 1 : scaleY;\n this.rotation = rotation;\n this.skew.x = skewX;\n this.skew.y = skewY;\n this.pivot.x = pivotX;\n this.pivot.y = pivotY;\n\n return this;\n };\n\n /**\n * Base destroy method for generic display objects. This will automatically\n * remove the display object from its parent Container as well as remove\n * all current event listeners and internal references. Do not use a DisplayObject\n * after calling `destroy()`.\n *\n */\n DisplayObject.prototype.destroy = function destroy ()\n {\n this.removeAllListeners();\n if (this.parent)\n {\n this.parent.removeChild(this);\n }\n this.transform = null;\n\n this.parent = null;\n\n this._bounds = null;\n this._currentBounds = null;\n this._mask = null;\n\n this.filterArea = null;\n\n this.interactive = false;\n this.interactiveChildren = false;\n\n this._destroyed = true;\n };\n\n /**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n * An alias to position.x\n *\n * @member {number}\n */\n prototypeAccessors.x.get = function ()\n {\n return this.position.x;\n };\n\n prototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.x = value;\n };\n\n /**\n * The position of the displayObject on the y axis relative to the local coordinates of the parent.\n * An alias to position.y\n *\n * @member {number}\n */\n prototypeAccessors.y.get = function ()\n {\n return this.position.y;\n };\n\n prototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.y = value;\n };\n\n /**\n * Current transform of the object based on world (parent) factors.\n *\n * @member {PIXI.Matrix}\n * @readonly\n */\n prototypeAccessors.worldTransform.get = function ()\n {\n return this.transform.worldTransform;\n };\n\n /**\n * Current transform of the object based on local factors: position, scale, other stuff.\n *\n * @member {PIXI.Matrix}\n * @readonly\n */\n prototypeAccessors.localTransform.get = function ()\n {\n return this.transform.localTransform;\n };\n\n /**\n * The coordinate of the object relative to the local coordinates of the parent.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.position.get = function ()\n {\n return this.transform.position;\n };\n\n prototypeAccessors.position.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.copyFrom(value);\n };\n\n /**\n * The scale factor of the object.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.scale.get = function ()\n {\n return this.transform.scale;\n };\n\n prototypeAccessors.scale.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.scale.copyFrom(value);\n };\n\n /**\n * The pivot point of the displayObject that it rotates around.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.pivot.get = function ()\n {\n return this.transform.pivot;\n };\n\n prototypeAccessors.pivot.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.pivot.copyFrom(value);\n };\n\n /**\n * The skew factor for the object in radians.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.skew.get = function ()\n {\n return this.transform.skew;\n };\n\n prototypeAccessors.skew.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.skew.copyFrom(value);\n };\n\n /**\n * The rotation of the object in radians.\n * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees.\n *\n * @member {number}\n */\n prototypeAccessors.rotation.get = function ()\n {\n return this.transform.rotation;\n };\n\n prototypeAccessors.rotation.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.rotation = value;\n };\n\n /**\n * The angle of the object in degrees.\n * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees.\n *\n * @member {number}\n */\n prototypeAccessors.angle.get = function ()\n {\n return this.transform.rotation * RAD_TO_DEG;\n };\n\n prototypeAccessors.angle.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.rotation = value * DEG_TO_RAD;\n };\n\n /**\n * The zIndex of the displayObject.\n * If a container has the sortableChildren property set to true, children will be automatically\n * sorted by zIndex value; a higher value will mean it will be moved towards the end of the array,\n * and thus rendered on top of other displayObjects within the same container.\n *\n * @member {number}\n */\n prototypeAccessors.zIndex.get = function ()\n {\n return this._zIndex;\n };\n\n prototypeAccessors.zIndex.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._zIndex = value;\n if (this.parent)\n {\n this.parent.sortDirty = true;\n }\n };\n\n /**\n * Indicates if the object is globally visible.\n *\n * @member {boolean}\n * @readonly\n */\n prototypeAccessors.worldVisible.get = function ()\n {\n var item = this;\n\n do\n {\n if (!item.visible)\n {\n return false;\n }\n\n item = item.parent;\n } while (item);\n\n return true;\n };\n\n /**\n * Sets a mask for the displayObject. A mask is an object that limits the visibility of an\n * object to the shape of the mask applied to it. In PixiJS a regular mask must be a\n * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it\n * utilities shape clipping. To remove a mask, set this property to `null`.\n *\n * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask.\n * @example\n * const graphics = new PIXI.Graphics();\n * graphics.beginFill(0xFF3300);\n * graphics.drawRect(50, 250, 100, 100);\n * graphics.endFill();\n *\n * const sprite = new PIXI.Sprite(texture);\n * sprite.mask = graphics;\n * @todo At the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask.\n *\n * @member {PIXI.Graphics|PIXI.Sprite|null}\n */\n prototypeAccessors.mask.get = function ()\n {\n return this._mask;\n };\n\n prototypeAccessors.mask.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._mask)\n {\n this._mask.renderable = true;\n this._mask.isMask = false;\n }\n\n this._mask = value;\n\n if (this._mask)\n {\n this._mask.renderable = false;\n this._mask.isMask = true;\n }\n };\n\n Object.defineProperties( DisplayObject.prototype, prototypeAccessors );\n\n return DisplayObject;\n}(EventEmitter));\n\n/**\n * DisplayObject default updateTransform, does not update children of container.\n * Will crash if there's no parent element.\n *\n * @memberof PIXI.DisplayObject#\n * @function displayObjectUpdateTransform\n */\nDisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform;\n\nfunction sortChildren(a, b)\n{\n if (a.zIndex === b.zIndex)\n {\n return a._lastSortedIndex - b._lastSortedIndex;\n }\n\n return a.zIndex - b.zIndex;\n}\n\n/**\n * A Container represents a collection of display objects.\n *\n * It is the base class of all display objects that act as a container for other objects (like Sprites).\n *\n *```js\n * let container = new PIXI.Container();\n * container.addChild(sprite);\n * ```\n *\n * @class\n * @extends PIXI.DisplayObject\n * @memberof PIXI\n */\nvar Container = /*@__PURE__*/(function (DisplayObject) {\n function Container()\n {\n DisplayObject.call(this);\n\n /**\n * The array of children of this container.\n *\n * @member {PIXI.DisplayObject[]}\n * @readonly\n */\n this.children = [];\n\n /**\n * If set to true, the container will sort its children by zIndex value\n * when updateTransform() is called, or manually if sortChildren() is called.\n *\n * This actually changes the order of elements in the array, so should be treated\n * as a basic solution that is not performant compared to other solutions,\n * such as @link https://github.com/pixijs/pixi-display\n *\n * Also be aware of that this may not work nicely with the addChildAt() function,\n * as the zIndex sorting may cause the child to automatically sorted to another position.\n *\n * @see PIXI.settings.SORTABLE_CHILDREN\n *\n * @member {boolean}\n */\n this.sortableChildren = settings.SORTABLE_CHILDREN;\n\n /**\n * Should children be sorted by zIndex at the next updateTransform call.\n * Will get automatically set to true if a new child is added, or if a child's zIndex changes.\n *\n * @member {boolean}\n */\n this.sortDirty = false;\n\n /**\n * Fired when a DisplayObject is added to this Container.\n *\n * @event PIXI.Container#childAdded\n * @param {PIXI.DisplayObject} child - The child added to the Container.\n * @param {PIXI.Container} container - The container that added the child.\n * @param {number} index - The children's index of the added child.\n */\n\n /**\n * Fired when a DisplayObject is removed from this Container.\n *\n * @event PIXI.DisplayObject#removedFrom\n * @param {PIXI.DisplayObject} child - The child removed from the Container.\n * @param {PIXI.Container} container - The container that removed removed the child.\n * @param {number} index - The former children's index of the removed child\n */\n }\n\n if ( DisplayObject ) Container.__proto__ = DisplayObject;\n Container.prototype = Object.create( DisplayObject && DisplayObject.prototype );\n Container.prototype.constructor = Container;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true } };\n\n /**\n * Overridable method that can be used by Container subclasses whenever the children array is modified\n *\n * @protected\n */\n Container.prototype.onChildrenChange = function onChildrenChange ()\n {\n /* empty */\n };\n\n /**\n * Adds one or more children to the container.\n *\n * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)`\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container\n * @return {PIXI.DisplayObject} The first child that was added.\n */\n Container.prototype.addChild = function addChild (child)\n {\n var arguments$1 = arguments;\n\n var argumentsLength = arguments.length;\n\n // if there is only one argument we can bypass looping through the them\n if (argumentsLength > 1)\n {\n // loop through the arguments property and add all children\n // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes\n for (var i = 0; i < argumentsLength; i++)\n {\n this.addChild(arguments$1[i]);\n }\n }\n else\n {\n // if the child has a parent then lets remove it as PixiJS objects can only exist in one place\n if (child.parent)\n {\n child.parent.removeChild(child);\n }\n\n child.parent = this;\n this.sortDirty = true;\n\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n\n this.children.push(child);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(this.children.length - 1);\n this.emit('childAdded', child, this, this.children.length - 1);\n child.emit('added', this);\n }\n\n return child;\n };\n\n /**\n * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown\n *\n * @param {PIXI.DisplayObject} child - The child to add\n * @param {number} index - The index to place the child in\n * @return {PIXI.DisplayObject} The child that was added.\n */\n Container.prototype.addChildAt = function addChildAt (child, index)\n {\n if (index < 0 || index > this.children.length)\n {\n throw new Error((child + \"addChildAt: The index \" + index + \" supplied is out of bounds \" + (this.children.length)));\n }\n\n if (child.parent)\n {\n child.parent.removeChild(child);\n }\n\n child.parent = this;\n this.sortDirty = true;\n\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n\n this.children.splice(index, 0, child);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('added', this);\n this.emit('childAdded', child, this, index);\n\n return child;\n };\n\n /**\n * Swaps the position of 2 Display Objects within this container.\n *\n * @param {PIXI.DisplayObject} child - First display object to swap\n * @param {PIXI.DisplayObject} child2 - Second display object to swap\n */\n Container.prototype.swapChildren = function swapChildren (child, child2)\n {\n if (child === child2)\n {\n return;\n }\n\n var index1 = this.getChildIndex(child);\n var index2 = this.getChildIndex(child2);\n\n this.children[index1] = child2;\n this.children[index2] = child;\n this.onChildrenChange(index1 < index2 ? index1 : index2);\n };\n\n /**\n * Returns the index position of a child DisplayObject instance\n *\n * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify\n * @return {number} The index position of the child display object to identify\n */\n Container.prototype.getChildIndex = function getChildIndex (child)\n {\n var index = this.children.indexOf(child);\n\n if (index === -1)\n {\n throw new Error('The supplied DisplayObject must be a child of the caller');\n }\n\n return index;\n };\n\n /**\n * Changes the position of an existing child in the display object container\n *\n * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number\n * @param {number} index - The resulting index number for the child display object\n */\n Container.prototype.setChildIndex = function setChildIndex (child, index)\n {\n if (index < 0 || index >= this.children.length)\n {\n throw new Error((\"The index \" + index + \" supplied is out of bounds \" + (this.children.length)));\n }\n\n var currentIndex = this.getChildIndex(child);\n\n removeItems(this.children, currentIndex, 1); // remove from old position\n this.children.splice(index, 0, child); // add at new position\n\n this.onChildrenChange(index);\n };\n\n /**\n * Returns the child at the specified index\n *\n * @param {number} index - The index to get the child at\n * @return {PIXI.DisplayObject} The child at the given index, if any.\n */\n Container.prototype.getChildAt = function getChildAt (index)\n {\n if (index < 0 || index >= this.children.length)\n {\n throw new Error((\"getChildAt: Index (\" + index + \") does not exist.\"));\n }\n\n return this.children[index];\n };\n\n /**\n * Removes one or more children from the container.\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove\n * @return {PIXI.DisplayObject} The first child that was removed.\n */\n Container.prototype.removeChild = function removeChild (child)\n {\n var arguments$1 = arguments;\n\n var argumentsLength = arguments.length;\n\n // if there is only one argument we can bypass looping through the them\n if (argumentsLength > 1)\n {\n // loop through the arguments property and add all children\n // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes\n for (var i = 0; i < argumentsLength; i++)\n {\n this.removeChild(arguments$1[i]);\n }\n }\n else\n {\n var index = this.children.indexOf(child);\n\n if (index === -1) { return null; }\n\n child.parent = null;\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n removeItems(this.children, index, 1);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('removed', this);\n this.emit('childRemoved', child, this, index);\n }\n\n return child;\n };\n\n /**\n * Removes a child from the specified index position.\n *\n * @param {number} index - The index to get the child from\n * @return {PIXI.DisplayObject} The child that was removed.\n */\n Container.prototype.removeChildAt = function removeChildAt (index)\n {\n var child = this.getChildAt(index);\n\n // ensure child transform will be recalculated..\n child.parent = null;\n child.transform._parentID = -1;\n removeItems(this.children, index, 1);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('removed', this);\n this.emit('childRemoved', child, this, index);\n\n return child;\n };\n\n /**\n * Removes all children from this container that are within the begin and end indexes.\n *\n * @param {number} [beginIndex=0] - The beginning position.\n * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container.\n * @returns {PIXI.DisplayObject[]} List of removed children\n */\n Container.prototype.removeChildren = function removeChildren (beginIndex, endIndex)\n {\n if ( beginIndex === void 0 ) beginIndex = 0;\n\n var begin = beginIndex;\n var end = typeof endIndex === 'number' ? endIndex : this.children.length;\n var range = end - begin;\n var removed;\n\n if (range > 0 && range <= end)\n {\n removed = this.children.splice(begin, range);\n\n for (var i = 0; i < removed.length; ++i)\n {\n removed[i].parent = null;\n if (removed[i].transform)\n {\n removed[i].transform._parentID = -1;\n }\n }\n\n this._boundsID++;\n\n this.onChildrenChange(beginIndex);\n\n for (var i$1 = 0; i$1 < removed.length; ++i$1)\n {\n removed[i$1].emit('removed', this);\n this.emit('childRemoved', removed[i$1], this, i$1);\n }\n\n return removed;\n }\n else if (range === 0 && this.children.length === 0)\n {\n return [];\n }\n\n throw new RangeError('removeChildren: numeric values are outside the acceptable range.');\n };\n\n /**\n * Sorts children by zIndex. Previous order is mantained for 2 children with the same zIndex.\n */\n Container.prototype.sortChildren = function sortChildren$1 ()\n {\n var sortRequired = false;\n\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n var child = this.children[i];\n\n child._lastSortedIndex = i;\n\n if (!sortRequired && child.zIndex !== 0)\n {\n sortRequired = true;\n }\n }\n\n if (sortRequired && this.children.length > 1)\n {\n this.children.sort(sortChildren);\n }\n\n this.sortDirty = false;\n };\n\n /**\n * Updates the transform on all children of this container for rendering\n */\n Container.prototype.updateTransform = function updateTransform ()\n {\n if (this.sortableChildren && this.sortDirty)\n {\n this.sortChildren();\n }\n\n this._boundsID++;\n\n this.transform.updateTransform(this.parent.transform);\n\n // TODO: check render flags, how to process stuff here\n this.worldAlpha = this.alpha * this.parent.worldAlpha;\n\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n var child = this.children[i];\n\n if (child.visible)\n {\n child.updateTransform();\n }\n }\n };\n\n /**\n * Recalculates the bounds of the container.\n *\n */\n Container.prototype.calculateBounds = function calculateBounds ()\n {\n this._bounds.clear();\n\n this._calculateBounds();\n\n for (var i = 0; i < this.children.length; i++)\n {\n var child = this.children[i];\n\n if (!child.visible || !child.renderable)\n {\n continue;\n }\n\n child.calculateBounds();\n\n // TODO: filter+mask, need to mask both somehow\n if (child._mask)\n {\n child._mask.calculateBounds();\n this._bounds.addBoundsMask(child._bounds, child._mask._bounds);\n }\n else if (child.filterArea)\n {\n this._bounds.addBoundsArea(child._bounds, child.filterArea);\n }\n else\n {\n this._bounds.addBounds(child._bounds);\n }\n }\n\n this._lastBoundsID = this._boundsID;\n };\n\n /**\n * Recalculates the bounds of the object. Override this to\n * calculate the bounds of the specific object (not including children).\n *\n * @protected\n */\n Container.prototype._calculateBounds = function _calculateBounds ()\n {\n // FILL IN//\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype.render = function render (renderer)\n {\n // if the object is not visible or the alpha is 0 then no need to render this element\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n // do a quick check to see if this element has a mask or a filter.\n if (this._mask || (this.filters && this.filters.length))\n {\n this.renderAdvanced(renderer);\n }\n else\n {\n this._render(renderer);\n\n // simple render children!\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n this.children[i].render(renderer);\n }\n }\n };\n\n /**\n * Render the object using the WebGL renderer and advanced features.\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype.renderAdvanced = function renderAdvanced (renderer)\n {\n renderer.batch.flush();\n\n var filters = this.filters;\n var mask = this._mask;\n\n // push filter first as we need to ensure the stencil buffer is correct for any masking\n if (filters)\n {\n if (!this._enabledFilters)\n {\n this._enabledFilters = [];\n }\n\n this._enabledFilters.length = 0;\n\n for (var i = 0; i < filters.length; i++)\n {\n if (filters[i].enabled)\n {\n this._enabledFilters.push(filters[i]);\n }\n }\n\n if (this._enabledFilters.length)\n {\n renderer.filter.push(this, this._enabledFilters);\n }\n }\n\n if (mask)\n {\n renderer.mask.push(this, this._mask);\n }\n\n // add this object to the batch, only rendered if it has a texture.\n this._render(renderer);\n\n // now loop through the children and make sure they get rendered\n for (var i$1 = 0, j = this.children.length; i$1 < j; i$1++)\n {\n this.children[i$1].render(renderer);\n }\n\n renderer.batch.flush();\n\n if (mask)\n {\n renderer.mask.pop(this, this._mask);\n }\n\n if (filters && this._enabledFilters && this._enabledFilters.length)\n {\n renderer.filter.pop();\n }\n };\n\n /**\n * To be overridden by the subclasses.\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype._render = function _render (renderer) // eslint-disable-line no-unused-vars\n {\n // this is where content itself gets rendered...\n };\n\n /**\n * Removes all internal references and listeners as well as removes children from the display list.\n * Do not use a Container after calling `destroy`.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n Container.prototype.destroy = function destroy (options)\n {\n DisplayObject.prototype.destroy.call(this);\n\n this.sortDirty = false;\n\n var destroyChildren = typeof options === 'boolean' ? options : options && options.children;\n\n var oldChildren = this.removeChildren(0, this.children.length);\n\n if (destroyChildren)\n {\n for (var i = 0; i < oldChildren.length; ++i)\n {\n oldChildren[i].destroy(options);\n }\n }\n };\n\n /**\n * The width of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this.scale.x * this.getLocalBounds().width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n var width = this.getLocalBounds().width;\n\n if (width !== 0)\n {\n this.scale.x = value / width;\n }\n else\n {\n this.scale.x = 1;\n }\n\n this._width = value;\n };\n\n /**\n * The height of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this.scale.y * this.getLocalBounds().height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n var height = this.getLocalBounds().height;\n\n if (height !== 0)\n {\n this.scale.y = value / height;\n }\n else\n {\n this.scale.y = 1;\n }\n\n this._height = value;\n };\n\n Object.defineProperties( Container.prototype, prototypeAccessors );\n\n return Container;\n}(DisplayObject));\n\n// performance increase to avoid using call.. (10x faster)\nContainer.prototype.containerUpdateTransform = Container.prototype.updateTransform;\n\nexport { Bounds, Container, DisplayObject };\n//# sourceMappingURL=display.es.js.map\n","/*!\n * @pixi/accessibility - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/accessibility is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { isMobile, removeItems } from '@pixi/utils';\nimport { DisplayObject } from '@pixi/display';\n\n/**\n * Default property values of accessible objects\n * used by {@link PIXI.accessibility.AccessibilityManager}.\n *\n * @private\n * @function accessibleTarget\n * @memberof PIXI.accessibility\n * @type {Object}\n * @example\n * function MyObject() {}\n *\n * Object.assign(\n * MyObject.prototype,\n * PIXI.accessibility.accessibleTarget\n * );\n */\nvar accessibleTarget = {\n /**\n * Flag for if the object is accessible. If true AccessibilityManager will overlay a\n * shadow div with attributes set\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n accessible: false,\n\n /**\n * Sets the title attribute of the shadow div\n * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]'\n *\n * @member {?string}\n * @memberof PIXI.DisplayObject#\n */\n accessibleTitle: null,\n\n /**\n * Sets the aria-label attribute of the shadow div\n *\n * @member {string}\n * @memberof PIXI.DisplayObject#\n */\n accessibleHint: null,\n\n /**\n * @member {number}\n * @memberof PIXI.DisplayObject#\n * @private\n * @todo Needs docs.\n */\n tabIndex: 0,\n\n /**\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n * @todo Needs docs.\n */\n _accessibleActive: false,\n\n /**\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n * @todo Needs docs.\n */\n _accessibleDiv: false,\n};\n\n// add some extra variables to the container..\nDisplayObject.mixin(accessibleTarget);\n\nvar KEY_CODE_TAB = 9;\n\nvar DIV_TOUCH_SIZE = 100;\nvar DIV_TOUCH_POS_X = 0;\nvar DIV_TOUCH_POS_Y = 0;\nvar DIV_TOUCH_ZINDEX = 2;\n\nvar DIV_HOOK_SIZE = 1;\nvar DIV_HOOK_POS_X = -1000;\nvar DIV_HOOK_POS_Y = -1000;\nvar DIV_HOOK_ZINDEX = 2;\n\n/**\n * The Accessibility manager recreates the ability to tab and have content read by screen readers.\n * This is very important as it can possibly help people with disabilities access PixiJS content.\n *\n * A DisplayObject can be made accessible just like it can be made interactive. This manager will map the\n * events as if the mouse was being used, minimizing the effort required to implement.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.accessibility`\n *\n * @class\n * @memberof PIXI.accessibility\n */\nvar AccessibilityManager = function AccessibilityManager(renderer)\n{\n /**\n * @type {?HTMLElement}\n * @private\n */\n this._hookDiv = null;\n if (isMobile.tablet || isMobile.phone)\n {\n this.createTouchHook();\n }\n\n // first we create a div that will sit over the PixiJS element. This is where the div overlays will go.\n var div = document.createElement('div');\n\n div.style.width = DIV_TOUCH_SIZE + \"px\";\n div.style.height = DIV_TOUCH_SIZE + \"px\";\n div.style.position = 'absolute';\n div.style.top = DIV_TOUCH_POS_X + \"px\";\n div.style.left = DIV_TOUCH_POS_Y + \"px\";\n div.style.zIndex = DIV_TOUCH_ZINDEX;\n\n /**\n * This is the dom element that will sit over the PixiJS element. This is where the div overlays will go.\n *\n * @type {HTMLElement}\n * @private\n */\n this.div = div;\n\n /**\n * A simple pool for storing divs.\n *\n * @type {*}\n * @private\n */\n this.pool = [];\n\n /**\n * This is a tick used to check if an object is no longer being rendered.\n *\n * @type {Number}\n * @private\n */\n this.renderId = 0;\n\n /**\n * Setting this to true will visually show the divs.\n *\n * @type {boolean}\n */\n this.debug = false;\n\n /**\n * The renderer this accessibility manager works for.\n *\n * @member {PIXI.AbstractRenderer}\n */\n this.renderer = renderer;\n\n /**\n * The array of currently active accessible items.\n *\n * @member {Array<*>}\n * @private\n */\n this.children = [];\n\n /**\n * pre-bind the functions\n *\n * @type {Function}\n * @private\n */\n this._onKeyDown = this._onKeyDown.bind(this);\n\n /**\n * pre-bind the functions\n *\n * @type {Function}\n * @private\n */\n this._onMouseMove = this._onMouseMove.bind(this);\n\n /**\n * A flag\n * @type {boolean}\n * @readonly\n */\n this.isActive = false;\n\n /**\n * A flag\n * @type {boolean}\n * @readonly\n */\n this.isMobileAccessibility = false;\n\n // let listen for tab.. once pressed we can fire up and show the accessibility layer\n window.addEventListener('keydown', this._onKeyDown, false);\n};\n\n/**\n * Creates the touch hooks.\n *\n * @private\n */\nAccessibilityManager.prototype.createTouchHook = function createTouchHook ()\n{\n var this$1 = this;\n\n var hookDiv = document.createElement('button');\n\n hookDiv.style.width = DIV_HOOK_SIZE + \"px\";\n hookDiv.style.height = DIV_HOOK_SIZE + \"px\";\n hookDiv.style.position = 'absolute';\n hookDiv.style.top = DIV_HOOK_POS_X + \"px\";\n hookDiv.style.left = DIV_HOOK_POS_Y + \"px\";\n hookDiv.style.zIndex = DIV_HOOK_ZINDEX;\n hookDiv.style.backgroundColor = '#FF0000';\n hookDiv.title = 'HOOK DIV';\n\n hookDiv.addEventListener('focus', function () {\n this$1.isMobileAccessibility = true;\n this$1.activate();\n this$1.destroyTouchHook();\n });\n\n document.body.appendChild(hookDiv);\n this._hookDiv = hookDiv;\n};\n\n/**\n * Destroys the touch hooks.\n *\n * @private\n */\nAccessibilityManager.prototype.destroyTouchHook = function destroyTouchHook ()\n{\n if (!this._hookDiv)\n {\n return;\n }\n document.body.removeChild(this._hookDiv);\n this._hookDiv = null;\n};\n\n/**\n * Activating will cause the Accessibility layer to be shown.\n * This is called when a user presses the tab key.\n *\n * @private\n */\nAccessibilityManager.prototype.activate = function activate ()\n{\n if (this.isActive)\n {\n return;\n }\n\n this.isActive = true;\n\n window.document.addEventListener('mousemove', this._onMouseMove, true);\n window.removeEventListener('keydown', this._onKeyDown, false);\n\n this.renderer.on('postrender', this.update, this);\n\n if (this.renderer.view.parentNode)\n {\n this.renderer.view.parentNode.appendChild(this.div);\n }\n};\n\n/**\n * Deactivating will cause the Accessibility layer to be hidden.\n * This is called when a user moves the mouse.\n *\n * @private\n */\nAccessibilityManager.prototype.deactivate = function deactivate ()\n{\n if (!this.isActive || this.isMobileAccessibility)\n {\n return;\n }\n\n this.isActive = false;\n\n window.document.removeEventListener('mousemove', this._onMouseMove, true);\n window.addEventListener('keydown', this._onKeyDown, false);\n\n this.renderer.off('postrender', this.update);\n\n if (this.div.parentNode)\n {\n this.div.parentNode.removeChild(this.div);\n }\n};\n\n/**\n * This recursive function will run through the scene graph and add any new accessible objects to the DOM layer.\n *\n * @private\n * @param {PIXI.Container} displayObject - The DisplayObject to check.\n */\nAccessibilityManager.prototype.updateAccessibleObjects = function updateAccessibleObjects (displayObject)\n{\n if (!displayObject.visible)\n {\n return;\n }\n\n if (displayObject.accessible && displayObject.interactive)\n {\n if (!displayObject._accessibleActive)\n {\n this.addChild(displayObject);\n }\n\n displayObject.renderId = this.renderId;\n }\n\n var children = displayObject.children;\n\n for (var i = 0; i < children.length; i++)\n {\n this.updateAccessibleObjects(children[i]);\n }\n};\n\n/**\n * Before each render this function will ensure that all divs are mapped correctly to their DisplayObjects.\n *\n * @private\n */\nAccessibilityManager.prototype.update = function update ()\n{\n if (!this.renderer.renderingToScreen)\n {\n return;\n }\n\n // update children...\n this.updateAccessibleObjects(this.renderer._lastObjectRendered);\n\n var rect = this.renderer.view.getBoundingClientRect();\n var sx = rect.width / this.renderer.width;\n var sy = rect.height / this.renderer.height;\n\n var div = this.div;\n\n div.style.left = (rect.left) + \"px\";\n div.style.top = (rect.top) + \"px\";\n div.style.width = (this.renderer.width) + \"px\";\n div.style.height = (this.renderer.height) + \"px\";\n\n for (var i = 0; i < this.children.length; i++)\n {\n var child = this.children[i];\n\n if (child.renderId !== this.renderId)\n {\n child._accessibleActive = false;\n\n removeItems(this.children, i, 1);\n this.div.removeChild(child._accessibleDiv);\n this.pool.push(child._accessibleDiv);\n child._accessibleDiv = null;\n\n i--;\n\n if (this.children.length === 0)\n {\n this.deactivate();\n }\n }\n else\n {\n // map div to display..\n div = child._accessibleDiv;\n var hitArea = child.hitArea;\n var wt = child.worldTransform;\n\n if (child.hitArea)\n {\n div.style.left = ((wt.tx + (hitArea.x * wt.a)) * sx) + \"px\";\n div.style.top = ((wt.ty + (hitArea.y * wt.d)) * sy) + \"px\";\n\n div.style.width = (hitArea.width * wt.a * sx) + \"px\";\n div.style.height = (hitArea.height * wt.d * sy) + \"px\";\n }\n else\n {\n hitArea = child.getBounds();\n\n this.capHitArea(hitArea);\n\n div.style.left = (hitArea.x * sx) + \"px\";\n div.style.top = (hitArea.y * sy) + \"px\";\n\n div.style.width = (hitArea.width * sx) + \"px\";\n div.style.height = (hitArea.height * sy) + \"px\";\n\n // update button titles and hints if they exist and they've changed\n if (div.title !== child.accessibleTitle && child.accessibleTitle !== null)\n {\n div.title = child.accessibleTitle;\n }\n if (div.getAttribute('aria-label') !== child.accessibleHint\n && child.accessibleHint !== null)\n {\n div.setAttribute('aria-label', child.accessibleHint);\n }\n }\n }\n }\n\n // increment the render id..\n this.renderId++;\n};\n\n/**\n * Adjust the hit area based on the bounds of a display object\n *\n * @param {PIXI.Rectangle} hitArea - Bounds of the child\n */\nAccessibilityManager.prototype.capHitArea = function capHitArea (hitArea)\n{\n if (hitArea.x < 0)\n {\n hitArea.width += hitArea.x;\n hitArea.x = 0;\n }\n\n if (hitArea.y < 0)\n {\n hitArea.height += hitArea.y;\n hitArea.y = 0;\n }\n\n if (hitArea.x + hitArea.width > this.renderer.width)\n {\n hitArea.width = this.renderer.width - hitArea.x;\n }\n\n if (hitArea.y + hitArea.height > this.renderer.height)\n {\n hitArea.height = this.renderer.height - hitArea.y;\n }\n};\n\n/**\n * Adds a DisplayObject to the accessibility manager\n *\n * @private\n * @param {PIXI.DisplayObject} displayObject - The child to make accessible.\n */\nAccessibilityManager.prototype.addChild = function addChild (displayObject)\n{\n //this.activate();\n\n var div = this.pool.pop();\n\n if (!div)\n {\n div = document.createElement('button');\n\n div.style.width = DIV_TOUCH_SIZE + \"px\";\n div.style.height = DIV_TOUCH_SIZE + \"px\";\n div.style.backgroundColor = this.debug ? 'rgba(255,0,0,0.5)' : 'transparent';\n div.style.position = 'absolute';\n div.style.zIndex = DIV_TOUCH_ZINDEX;\n div.style.borderStyle = 'none';\n\n // ARIA attributes ensure that button title and hint updates are announced properly\n if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)\n {\n // Chrome doesn't need aria-live to work as intended; in fact it just gets more confused.\n div.setAttribute('aria-live', 'off');\n }\n else\n {\n div.setAttribute('aria-live', 'polite');\n }\n\n if (navigator.userAgent.match(/rv:.*Gecko\\//))\n {\n // FireFox needs this to announce only the new button name\n div.setAttribute('aria-relevant', 'additions');\n }\n else\n {\n // required by IE, other browsers don't much care\n div.setAttribute('aria-relevant', 'text');\n }\n\n div.addEventListener('click', this._onClick.bind(this));\n div.addEventListener('focus', this._onFocus.bind(this));\n div.addEventListener('focusout', this._onFocusOut.bind(this));\n }\n\n if (displayObject.accessibleTitle && displayObject.accessibleTitle !== null)\n {\n div.title = displayObject.accessibleTitle;\n }\n else if (!displayObject.accessibleHint\n || displayObject.accessibleHint === null)\n {\n div.title = \"displayObject \" + (displayObject.tabIndex);\n }\n\n if (displayObject.accessibleHint\n && displayObject.accessibleHint !== null)\n {\n div.setAttribute('aria-label', displayObject.accessibleHint);\n }\n\n //\n\n displayObject._accessibleActive = true;\n displayObject._accessibleDiv = div;\n div.displayObject = displayObject;\n\n this.children.push(displayObject);\n this.div.appendChild(displayObject._accessibleDiv);\n displayObject._accessibleDiv.tabIndex = displayObject.tabIndex;\n};\n\n/**\n * Maps the div button press to pixi's InteractionManager (click)\n *\n * @private\n * @param {MouseEvent} e - The click event.\n */\nAccessibilityManager.prototype._onClick = function _onClick (e)\n{\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'click', interactionManager.eventData);\n interactionManager.dispatchEvent(e.target.displayObject, 'pointertap', interactionManager.eventData);\n interactionManager.dispatchEvent(e.target.displayObject, 'tap', interactionManager.eventData);\n};\n\n/**\n * Maps the div focus events to pixi's InteractionManager (mouseover)\n *\n * @private\n * @param {FocusEvent} e - The focus event.\n */\nAccessibilityManager.prototype._onFocus = function _onFocus (e)\n{\n if (!e.target.getAttribute('aria-live', 'off'))\n {\n e.target.setAttribute('aria-live', 'assertive');\n }\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'mouseover', interactionManager.eventData);\n};\n\n/**\n * Maps the div focus events to pixi's InteractionManager (mouseout)\n *\n * @private\n * @param {FocusEvent} e - The focusout event.\n */\nAccessibilityManager.prototype._onFocusOut = function _onFocusOut (e)\n{\n if (!e.target.getAttribute('aria-live', 'off'))\n {\n e.target.setAttribute('aria-live', 'polite');\n }\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'mouseout', interactionManager.eventData);\n};\n\n/**\n * Is called when a key is pressed\n *\n * @private\n * @param {KeyboardEvent} e - The keydown event.\n */\nAccessibilityManager.prototype._onKeyDown = function _onKeyDown (e)\n{\n if (e.keyCode !== KEY_CODE_TAB)\n {\n return;\n }\n\n this.activate();\n};\n\n/**\n * Is called when the mouse moves across the renderer element\n *\n * @private\n * @param {MouseEvent} e - The mouse event.\n */\nAccessibilityManager.prototype._onMouseMove = function _onMouseMove (e)\n{\n if (e.movementX === 0 && e.movementY === 0)\n {\n return;\n }\n\n this.deactivate();\n};\n\n/**\n * Destroys the accessibility manager\n *\n */\nAccessibilityManager.prototype.destroy = function destroy ()\n{\n this.destroyTouchHook();\n this.div = null;\n\n for (var i = 0; i < this.children.length; i++)\n {\n this.children[i].div = null;\n }\n\n window.document.removeEventListener('mousemove', this._onMouseMove, true);\n window.removeEventListener('keydown', this._onKeyDown);\n\n this.pool = null;\n this.children = null;\n this.renderer = null;\n};\n\n/**\n * This namespace contains an accessibility plugin for allowing interaction via the keyboard.\n *\n * Do not instantiate this plugin directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @namespace PIXI.accessibility\n */\n\nexport { AccessibilityManager, accessibleTarget };\n//# sourceMappingURL=accessibility.es.js.map\n","/*!\n * @pixi/runner - v5.1.1\n * Compiled Fri, 02 Aug 2019 23:20:23 UTC\n *\n * @pixi/runner is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * A Runner is a highly performant and simple alternative to signals. Best used in situations\n * where events are dispatched to many objects at high frequency (say every frame!)\n *\n *\n * like a signal..\n * ```\n * const myObject = {\n * loaded: new PIXI.Runner('loaded')\n * }\n *\n * const listener = {\n * loaded: function(){\n * // thin\n * }\n * }\n *\n * myObject.update.add(listener);\n *\n * myObject.loaded.emit();\n * ```\n *\n * Or for handling calling the same function on many items\n * ```\n * const myGame = {\n * update: new PIXI.Runner('update')\n * }\n *\n * const gameObject = {\n * update: function(time){\n * // update my gamey state\n * }\n * }\n *\n * myGame.update.add(gameObject1);\n *\n * myGame.update.emit(time);\n * ```\n * @class\n * @memberof PIXI\n */\nvar Runner = function Runner(name)\n{\n this.items = [];\n this._name = name;\n this._aliasCount = 0;\n};\n\nvar prototypeAccessors = { empty: { configurable: true },name: { configurable: true } };\n\n/**\n * Dispatch/Broadcast Runner to all listeners added to the queue.\n * @param {...any} params - optional parameters to pass to each listener\n */\nRunner.prototype.emit = function emit (a0, a1, a2, a3, a4, a5, a6, a7)\n{\n if (arguments.length > 8)\n {\n throw new Error('max arguments reached');\n }\n\n var ref = this;\n var name = ref.name;\n var items = ref.items;\n\n this._aliasCount++;\n\n for (var i = 0, len = items.length; i < len; i++)\n {\n items[i][name](a0, a1, a2, a3, a4, a5, a6, a7);\n }\n\n if (items === this.items)\n {\n this._aliasCount--;\n }\n\n return this;\n};\n\nRunner.prototype.ensureNonAliasedItems = function ensureNonAliasedItems ()\n{\n if (this._aliasCount > 0 && this.items.length > 1)\n {\n this._aliasCount = 0;\n this.items = this.items.slice(0);\n }\n};\n\n/**\n * Add a listener to the Runner\n *\n * Runners do not need to have scope or functions passed to them.\n * All that is required is to pass the listening object and ensure that it has contains a function that has the same name\n * as the name provided to the Runner when it was created.\n *\n * Eg A listener passed to this Runner will require a 'complete' function.\n *\n * ```\n * const complete = new PIXI.Runner('complete');\n * ```\n *\n * The scope used will be the object itself.\n *\n * @param {any} item - The object that will be listening.\n */\nRunner.prototype.add = function add (item)\n{\n if (item[this._name])\n {\n this.ensureNonAliasedItems();\n this.remove(item);\n this.items.push(item);\n }\n\n return this;\n};\n\n/**\n * Remove a single listener from the dispatch queue.\n * @param {any} item - The listenr that you would like to remove.\n */\nRunner.prototype.remove = function remove (item)\n{\n var index = this.items.indexOf(item);\n\n if (index !== -1)\n {\n this.ensureNonAliasedItems();\n this.items.splice(index, 1);\n }\n\n return this;\n};\n\n/**\n * Check to see if the listener is already in the Runner\n * @param {any} item - The listener that you would like to check.\n */\nRunner.prototype.contains = function contains (item)\n{\n return this.items.indexOf(item) !== -1;\n};\n\n/**\n * Remove all listeners from the Runner\n */\nRunner.prototype.removeAll = function removeAll ()\n{\n this.ensureNonAliasedItems();\n this.items.length = 0;\n\n return this;\n};\n\n/**\n * Remove all references, don't use after this.\n */\nRunner.prototype.destroy = function destroy ()\n{\n this.removeAll();\n this.items = null;\n this._name = null;\n};\n\n/**\n * `true` if there are no this Runner contains no listeners\n *\n * @member {boolean}\n * @readonly\n */\nprototypeAccessors.empty.get = function ()\n{\n return this.items.length === 0;\n};\n\n/**\n * The name of the runner.\n *\n * @member {string}\n * @readonly\n */\nprototypeAccessors.name.get = function ()\n{\n return this._name;\n};\n\nObject.defineProperties( Runner.prototype, prototypeAccessors );\n\n/**\n * Alias for `emit`\n * @memberof PIXI.Runner#\n * @method dispatch\n * @see PIXI.Runner#emit\n */\nRunner.prototype.dispatch = Runner.prototype.emit;\n\n/**\n * Alias for `emit`\n * @memberof PIXI.Runner#\n * @method run\n * @see PIXI.Runner#emit\n */\nRunner.prototype.run = Runner.prototype.emit;\n\nexport { Runner };\n//# sourceMappingURL=runner.es.js.map\n","/*!\n * @pixi/ticker - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/ticker is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\n\n/**\n * Target frames per millisecond.\n *\n * @static\n * @name TARGET_FPMS\n * @memberof PIXI.settings\n * @type {number}\n * @default 0.06\n */\nsettings.TARGET_FPMS = 0.06;\n\n/**\n * Represents the update priorities used by internal PIXI classes when registered with\n * the {@link PIXI.Ticker} object. Higher priority items are updated first and lower\n * priority items, such as render, should go later.\n *\n * @static\n * @constant\n * @name UPDATE_PRIORITY\n * @memberof PIXI\n * @type {object}\n * @property {number} INTERACTION=50 Highest priority, used for {@link PIXI.interaction.InteractionManager}\n * @property {number} HIGH=25 High priority updating, {@link PIXI.VideoBaseTexture} and {@link PIXI.AnimatedSprite}\n * @property {number} NORMAL=0 Default priority for ticker events, see {@link PIXI.Ticker#add}.\n * @property {number} LOW=-25 Low priority used for {@link PIXI.Application} rendering.\n * @property {number} UTILITY=-50 Lowest priority used for {@link PIXI.prepare.BasePrepare} utility.\n */\nvar UPDATE_PRIORITY = {\n INTERACTION: 50,\n HIGH: 25,\n NORMAL: 0,\n LOW: -25,\n UTILITY: -50,\n};\n\n/**\n * Internal class for handling the priority sorting of ticker handlers.\n *\n * @private\n * @class\n * @memberof PIXI\n */\nvar TickerListener = function TickerListener(fn, context, priority, once)\n{\n if ( context === void 0 ) context = null;\n if ( priority === void 0 ) priority = 0;\n if ( once === void 0 ) once = false;\n\n /**\n * The handler function to execute.\n * @private\n * @member {Function}\n */\n this.fn = fn;\n\n /**\n * The calling to execute.\n * @private\n * @member {*}\n */\n this.context = context;\n\n /**\n * The current priority.\n * @private\n * @member {number}\n */\n this.priority = priority;\n\n /**\n * If this should only execute once.\n * @private\n * @member {boolean}\n */\n this.once = once;\n\n /**\n * The next item in chain.\n * @private\n * @member {TickerListener}\n */\n this.next = null;\n\n /**\n * The previous item in chain.\n * @private\n * @member {TickerListener}\n */\n this.previous = null;\n\n /**\n * `true` if this listener has been destroyed already.\n * @member {boolean}\n * @private\n */\n this._destroyed = false;\n};\n\n/**\n * Simple compare function to figure out if a function and context match.\n * @private\n * @param {Function} fn - The listener function to be added for one update\n * @param {Function} context - The listener context\n * @return {boolean} `true` if the listener match the arguments\n */\nTickerListener.prototype.match = function match (fn, context)\n{\n context = context || null;\n\n return this.fn === fn && this.context === context;\n};\n\n/**\n * Emit by calling the current function.\n * @private\n * @param {number} deltaTime - time since the last emit.\n * @return {TickerListener} Next ticker\n */\nTickerListener.prototype.emit = function emit (deltaTime)\n{\n if (this.fn)\n {\n if (this.context)\n {\n this.fn.call(this.context, deltaTime);\n }\n else\n {\n this.fn(deltaTime);\n }\n }\n\n var redirect = this.next;\n\n if (this.once)\n {\n this.destroy(true);\n }\n\n // Soft-destroying should remove\n // the next reference\n if (this._destroyed)\n {\n this.next = null;\n }\n\n return redirect;\n};\n\n/**\n * Connect to the list.\n * @private\n * @param {TickerListener} previous - Input node, previous listener\n */\nTickerListener.prototype.connect = function connect (previous)\n{\n this.previous = previous;\n if (previous.next)\n {\n previous.next.previous = this;\n }\n this.next = previous.next;\n previous.next = this;\n};\n\n/**\n * Destroy and don't use after this.\n * @private\n * @param {boolean} [hard = false] `true` to remove the `next` reference, this\n * is considered a hard destroy. Soft destroy maintains the next reference.\n * @return {TickerListener} The listener to redirect while emitting or removing.\n */\nTickerListener.prototype.destroy = function destroy (hard)\n{\n if ( hard === void 0 ) hard = false;\n\n this._destroyed = true;\n this.fn = null;\n this.context = null;\n\n // Disconnect, hook up next and previous\n if (this.previous)\n {\n this.previous.next = this.next;\n }\n\n if (this.next)\n {\n this.next.previous = this.previous;\n }\n\n // Redirect to the next item\n var redirect = this.next;\n\n // Remove references\n this.next = hard ? null : redirect;\n this.previous = null;\n\n return redirect;\n};\n\n/**\n * A Ticker class that runs an update loop that other objects listen to.\n *\n * This class is composed around listeners meant for execution on the next requested animation frame.\n * Animation frames are requested only when necessary, e.g. When the ticker is started and the emitter has listeners.\n *\n * @class\n * @memberof PIXI\n */\nvar Ticker = function Ticker()\n{\n var this$1 = this;\n\n /**\n * The first listener. All new listeners added are chained on this.\n * @private\n * @type {TickerListener}\n */\n this._head = new TickerListener(null, null, Infinity);\n\n /**\n * Internal current frame request ID\n * @type {?number}\n * @private\n */\n this._requestId = null;\n\n /**\n * Internal value managed by minFPS property setter and getter.\n * This is the maximum allowed milliseconds between updates.\n * @type {number}\n * @private\n */\n this._maxElapsedMS = 100;\n\n /**\n * Internal value managed by maxFPS property setter and getter.\n * This is the minimum allowed milliseconds between updates.\n * @private\n */\n this._minElapsedMS = 0;\n\n /**\n * Whether or not this ticker should invoke the method\n * {@link PIXI.Ticker#start} automatically\n * when a listener is added.\n *\n * @member {boolean}\n * @default false\n */\n this.autoStart = false;\n\n /**\n * Scalar time value from last frame to this frame.\n * This value is capped by setting {@link PIXI.Ticker#minFPS}\n * and is scaled with {@link PIXI.Ticker#speed}.\n * **Note:** The cap may be exceeded by scaling.\n *\n * @member {number}\n * @default 1\n */\n this.deltaTime = 1;\n\n /**\n * Scaler time elapsed in milliseconds from last frame to this frame.\n * This value is capped by setting {@link PIXI.Ticker#minFPS}\n * and is scaled with {@link PIXI.Ticker#speed}.\n * **Note:** The cap may be exceeded by scaling.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n * Defaults to target frame time\n *\n * @member {number}\n * @default 16.66\n */\n this.deltaMS = 1 / settings.TARGET_FPMS;\n\n /**\n * Time elapsed in milliseconds from last frame to this frame.\n * Opposed to what the scalar {@link PIXI.Ticker#deltaTime}\n * is based, this value is neither capped nor scaled.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n * Defaults to target frame time\n *\n * @member {number}\n * @default 16.66\n */\n this.elapsedMS = 1 / settings.TARGET_FPMS;\n\n /**\n * The last time {@link PIXI.Ticker#update} was invoked.\n * This value is also reset internally outside of invoking\n * update, but only when a new animation frame is requested.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n *\n * @member {number}\n * @default -1\n */\n this.lastTime = -1;\n\n /**\n * Factor of current {@link PIXI.Ticker#deltaTime}.\n * @example\n * // Scales ticker.deltaTime to what would be\n * // the equivalent of approximately 120 FPS\n * ticker.speed = 2;\n *\n * @member {number}\n * @default 1\n */\n this.speed = 1;\n\n /**\n * Whether or not this ticker has been started.\n * `true` if {@link PIXI.Ticker#start} has been called.\n * `false` if {@link PIXI.Ticker#stop} has been called.\n * While `false`, this value may change to `true` in the\n * event of {@link PIXI.Ticker#autoStart} being `true`\n * and a listener is added.\n *\n * @member {boolean}\n * @default false\n */\n this.started = false;\n\n /**\n * If enabled, deleting is disabled.\n * @member {boolean}\n * @default false\n * @private\n */\n this._protected = false;\n\n /**\n * The last time keyframe was executed.\n * Maintains a relatively fixed interval with the previous value.\n * @member {number}\n * @default -1\n * @private\n */\n this._lastFrame = -1;\n\n /**\n * Internal tick method bound to ticker instance.\n * This is because in early 2015, Function.bind\n * is still 60% slower in high performance scenarios.\n * Also separating frame requests from update method\n * so listeners may be called at any time and with\n * any animation API, just invoke ticker.update(time).\n *\n * @private\n * @param {number} time - Time since last tick.\n */\n this._tick = function (time) {\n this$1._requestId = null;\n\n if (this$1.started)\n {\n // Invoke listeners now\n this$1.update(time);\n // Listener side effects may have modified ticker state.\n if (this$1.started && this$1._requestId === null && this$1._head.next)\n {\n this$1._requestId = requestAnimationFrame(this$1._tick);\n }\n }\n };\n};\n\nvar prototypeAccessors = { FPS: { configurable: true },minFPS: { configurable: true },maxFPS: { configurable: true } };\nvar staticAccessors = { shared: { configurable: true },system: { configurable: true } };\n\n/**\n * Conditionally requests a new animation frame.\n * If a frame has not already been requested, and if the internal\n * emitter has listeners, a new frame is requested.\n *\n * @private\n */\nTicker.prototype._requestIfNeeded = function _requestIfNeeded ()\n{\n if (this._requestId === null && this._head.next)\n {\n // ensure callbacks get correct delta\n this.lastTime = performance.now();\n this._lastFrame = this.lastTime;\n this._requestId = requestAnimationFrame(this._tick);\n }\n};\n\n/**\n * Conditionally cancels a pending animation frame.\n *\n * @private\n */\nTicker.prototype._cancelIfNeeded = function _cancelIfNeeded ()\n{\n if (this._requestId !== null)\n {\n cancelAnimationFrame(this._requestId);\n this._requestId = null;\n }\n};\n\n/**\n * Conditionally requests a new animation frame.\n * If the ticker has been started it checks if a frame has not already\n * been requested, and if the internal emitter has listeners. If these\n * conditions are met, a new frame is requested. If the ticker has not\n * been started, but autoStart is `true`, then the ticker starts now,\n * and continues with the previous conditions to request a new frame.\n *\n * @private\n */\nTicker.prototype._startIfPossible = function _startIfPossible ()\n{\n if (this.started)\n {\n this._requestIfNeeded();\n }\n else if (this.autoStart)\n {\n this.start();\n }\n};\n\n/**\n * Register a handler for tick events. Calls continuously unless\n * it is removed or the ticker is stopped.\n *\n * @param {Function} fn - The listener function to be added for updates\n * @param {*} [context] - The listener context\n * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.add = function add (fn, context, priority)\n{\n if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL;\n\n return this._addListener(new TickerListener(fn, context, priority));\n};\n\n/**\n * Add a handler for the tick event which is only execute once.\n *\n * @param {Function} fn - The listener function to be added for one update\n * @param {*} [context] - The listener context\n * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.addOnce = function addOnce (fn, context, priority)\n{\n if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL;\n\n return this._addListener(new TickerListener(fn, context, priority, true));\n};\n\n/**\n * Internally adds the event handler so that it can be sorted by priority.\n * Priority allows certain handler (user, AnimatedSprite, Interaction) to be run\n * before the rendering.\n *\n * @private\n * @param {TickerListener} listener - Current listener being added.\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype._addListener = function _addListener (listener)\n{\n // For attaching to head\n var current = this._head.next;\n var previous = this._head;\n\n // Add the first item\n if (!current)\n {\n listener.connect(previous);\n }\n else\n {\n // Go from highest to lowest priority\n while (current)\n {\n if (listener.priority > current.priority)\n {\n listener.connect(previous);\n break;\n }\n previous = current;\n current = current.next;\n }\n\n // Not yet connected\n if (!listener.previous)\n {\n listener.connect(previous);\n }\n }\n\n this._startIfPossible();\n\n return this;\n};\n\n/**\n * Removes any handlers matching the function and context parameters.\n * If no handlers are left after removing, then it cancels the animation frame.\n *\n * @param {Function} fn - The listener function to be removed\n * @param {*} [context] - The listener context to be removed\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.remove = function remove (fn, context)\n{\n var listener = this._head.next;\n\n while (listener)\n {\n // We found a match, lets remove it\n // no break to delete all possible matches\n // incase a listener was added 2+ times\n if (listener.match(fn, context))\n {\n listener = listener.destroy();\n }\n else\n {\n listener = listener.next;\n }\n }\n\n if (!this._head.next)\n {\n this._cancelIfNeeded();\n }\n\n return this;\n};\n\n/**\n * Starts the ticker. If the ticker has listeners\n * a new animation frame is requested at this point.\n */\nTicker.prototype.start = function start ()\n{\n if (!this.started)\n {\n this.started = true;\n this._requestIfNeeded();\n }\n};\n\n/**\n * Stops the ticker. If the ticker has requested\n * an animation frame it is canceled at this point.\n */\nTicker.prototype.stop = function stop ()\n{\n if (this.started)\n {\n this.started = false;\n this._cancelIfNeeded();\n }\n};\n\n/**\n * Destroy the ticker and don't use after this. Calling\n * this method removes all references to internal events.\n */\nTicker.prototype.destroy = function destroy ()\n{\n if (!this._protected)\n {\n this.stop();\n\n var listener = this._head.next;\n\n while (listener)\n {\n listener = listener.destroy(true);\n }\n\n this._head.destroy();\n this._head = null;\n }\n};\n\n/**\n * Triggers an update. An update entails setting the\n * current {@link PIXI.Ticker#elapsedMS},\n * the current {@link PIXI.Ticker#deltaTime},\n * invoking all listeners with current deltaTime,\n * and then finally setting {@link PIXI.Ticker#lastTime}\n * with the value of currentTime that was provided.\n * This method will be called automatically by animation\n * frame callbacks if the ticker instance has been started\n * and listeners are added.\n *\n * @param {number} [currentTime=performance.now()] - the current time of execution\n */\nTicker.prototype.update = function update (currentTime)\n{\n if ( currentTime === void 0 ) currentTime = performance.now();\n\n var elapsedMS;\n\n // If the difference in time is zero or negative, we ignore most of the work done here.\n // If there is no valid difference, then should be no reason to let anyone know about it.\n // A zero delta, is exactly that, nothing should update.\n //\n // The difference in time can be negative, and no this does not mean time traveling.\n // This can be the result of a race condition between when an animation frame is requested\n // on the current JavaScript engine event loop, and when the ticker's start method is invoked\n // (which invokes the internal _requestIfNeeded method). If a frame is requested before\n // _requestIfNeeded is invoked, then the callback for the animation frame the ticker requests,\n // can receive a time argument that can be less than the lastTime value that was set within\n // _requestIfNeeded. This difference is in microseconds, but this is enough to cause problems.\n //\n // This check covers this browser engine timing issue, as well as if consumers pass an invalid\n // currentTime value. This may happen if consumers opt-out of the autoStart, and update themselves.\n\n if (currentTime > this.lastTime)\n {\n // Save uncapped elapsedMS for measurement\n elapsedMS = this.elapsedMS = currentTime - this.lastTime;\n\n // cap the milliseconds elapsed used for deltaTime\n if (elapsedMS > this._maxElapsedMS)\n {\n elapsedMS = this._maxElapsedMS;\n }\n\n elapsedMS *= this.speed;\n\n // If not enough time has passed, exit the function.\n // Get ready for next frame by setting _lastFrame, but based on _minElapsedMS\n // adjustment to ensure a relatively stable interval.\n if (this._minElapsedMS)\n {\n var delta = currentTime - this._lastFrame | 0;\n\n if (delta < this._minElapsedMS)\n {\n return;\n }\n\n this._lastFrame = currentTime - (delta % this._minElapsedMS);\n }\n\n this.deltaMS = elapsedMS;\n this.deltaTime = this.deltaMS * settings.TARGET_FPMS;\n\n // Cache a local reference, in-case ticker is destroyed\n // during the emit, we can still check for head.next\n var head = this._head;\n\n // Invoke listeners added to internal emitter\n var listener = head.next;\n\n while (listener)\n {\n listener = listener.emit(this.deltaTime);\n }\n\n if (!head.next)\n {\n this._cancelIfNeeded();\n }\n }\n else\n {\n this.deltaTime = this.deltaMS = this.elapsedMS = 0;\n }\n\n this.lastTime = currentTime;\n};\n\n/**\n * The frames per second at which this ticker is running.\n * The default is approximately 60 in most modern browsers.\n * **Note:** This does not factor in the value of\n * {@link PIXI.Ticker#speed}, which is specific\n * to scaling {@link PIXI.Ticker#deltaTime}.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.FPS.get = function ()\n{\n return 1000 / this.elapsedMS;\n};\n\n/**\n * Manages the maximum amount of milliseconds allowed to\n * elapse between invoking {@link PIXI.Ticker#update}.\n * This value is used to cap {@link PIXI.Ticker#deltaTime},\n * but does not effect the measured value of {@link PIXI.Ticker#FPS}.\n * When setting this property it is clamped to a value between\n * `0` and `PIXI.settings.TARGET_FPMS * 1000`.\n *\n * @member {number}\n * @default 10\n */\nprototypeAccessors.minFPS.get = function ()\n{\n return 1000 / this._maxElapsedMS;\n};\n\nprototypeAccessors.minFPS.set = function (fps) // eslint-disable-line require-jsdoc\n{\n // Minimum must be below the maxFPS\n var minFPS = Math.min(this.maxFPS, fps);\n\n // Must be at least 0, but below 1 / settings.TARGET_FPMS\n var minFPMS = Math.min(Math.max(0, minFPS) / 1000, settings.TARGET_FPMS);\n\n this._maxElapsedMS = 1 / minFPMS;\n};\n\n/**\n * Manages the minimum amount of milliseconds required to\n * elapse between invoking {@link PIXI.Ticker#update}.\n * This will effect the measured value of {@link PIXI.Ticker#FPS}.\n * If it is set to `0`, then there is no limit; PixiJS will render as many frames as it can.\n * Otherwise it will be at least `minFPS`\n *\n * @member {number}\n * @default 0\n */\nprototypeAccessors.maxFPS.get = function ()\n{\n if (this._minElapsedMS)\n {\n return Math.round(1000 / this._minElapsedMS);\n }\n\n return 0;\n};\n\nprototypeAccessors.maxFPS.set = function (fps)\n{\n if (fps === 0)\n {\n this._minElapsedMS = 0;\n }\n else\n {\n // Max must be at least the minFPS\n var maxFPS = Math.max(this.minFPS, fps);\n\n this._minElapsedMS = 1 / (maxFPS / 1000);\n }\n};\n\n/**\n * The shared ticker instance used by {@link PIXI.AnimatedSprite} and by\n * {@link PIXI.VideoResource} to update animation frames / video textures.\n *\n * It may also be used by {@link PIXI.Application} if created with the `sharedTicker` option property set to true.\n *\n * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance.\n * Please follow the examples for usage, including how to opt-out of auto-starting the shared ticker.\n *\n * @example\n * let ticker = PIXI.Ticker.shared;\n * // Set this to prevent starting this ticker when listeners are added.\n * // By default this is true only for the PIXI.Ticker.shared instance.\n * ticker.autoStart = false;\n * // FYI, call this to ensure the ticker is stopped. It should be stopped\n * // if you have not attempted to render anything yet.\n * ticker.stop();\n * // Call this when you are ready for a running shared ticker.\n * ticker.start();\n *\n * @example\n * // You may use the shared ticker to render...\n * let renderer = PIXI.autoDetectRenderer();\n * let stage = new PIXI.Container();\n * document.body.appendChild(renderer.view);\n * ticker.add(function (time) {\n * renderer.render(stage);\n * });\n *\n * @example\n * // Or you can just update it manually.\n * ticker.autoStart = false;\n * ticker.stop();\n * function animate(time) {\n * ticker.update(time);\n * renderer.render(stage);\n * requestAnimationFrame(animate);\n * }\n * animate(performance.now());\n *\n * @member {PIXI.Ticker}\n * @static\n */\nstaticAccessors.shared.get = function ()\n{\n if (!Ticker._shared)\n {\n var shared = Ticker._shared = new Ticker();\n\n shared.autoStart = true;\n shared._protected = true;\n }\n\n return Ticker._shared;\n};\n\n/**\n * The system ticker instance used by {@link PIXI.interaction.InteractionManager} and by\n * {@link PIXI.BasePrepare} for core timing functionality that shouldn't usually need to be paused,\n * unlike the `shared` ticker which drives visual animations and rendering which may want to be paused.\n *\n * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance.\n *\n * @member {PIXI.Ticker}\n * @static\n */\nstaticAccessors.system.get = function ()\n{\n if (!Ticker._system)\n {\n var system = Ticker._system = new Ticker();\n\n system.autoStart = true;\n system._protected = true;\n }\n\n return Ticker._system;\n};\n\nObject.defineProperties( Ticker.prototype, prototypeAccessors );\nObject.defineProperties( Ticker, staticAccessors );\n\n/**\n * Middleware for for Application Ticker.\n *\n * @example\n * import {TickerPlugin} from '@pixi/ticker';\n * import {Application} from '@pixi/app';\n * Application.registerPlugin(TickerPlugin);\n *\n * @class\n * @memberof PIXI\n */\nvar TickerPlugin = function TickerPlugin () {};\n\nTickerPlugin.init = function init (options)\n{\n var this$1 = this;\n\n // Set default\n options = Object.assign({\n autoStart: true,\n sharedTicker: false,\n }, options);\n\n // Create ticker setter\n Object.defineProperty(this, 'ticker',\n {\n set: function set(ticker)\n {\n if (this._ticker)\n {\n this._ticker.remove(this.render, this);\n }\n this._ticker = ticker;\n if (ticker)\n {\n ticker.add(this.render, this, UPDATE_PRIORITY.LOW);\n }\n },\n get: function get()\n {\n return this._ticker;\n },\n });\n\n /**\n * Convenience method for stopping the render.\n *\n * @method PIXI.Application#stop\n */\n this.stop = function () {\n this$1._ticker.stop();\n };\n\n /**\n * Convenience method for starting the render.\n *\n * @method PIXI.Application#start\n */\n this.start = function () {\n this$1._ticker.start();\n };\n\n /**\n * Internal reference to the ticker.\n *\n * @type {PIXI.Ticker}\n * @name _ticker\n * @memberof PIXI.Application#\n * @private\n */\n this._ticker = null;\n\n /**\n * Ticker for doing render updates.\n *\n * @type {PIXI.Ticker}\n * @name ticker\n * @memberof PIXI.Application#\n * @default PIXI.Ticker.shared\n */\n this.ticker = options.sharedTicker ? Ticker.shared : new Ticker();\n\n // Start the rendering\n if (options.autoStart)\n {\n this.start();\n }\n};\n\n/**\n * Clean up the ticker, scoped to application.\n *\n * @static\n * @private\n */\nTickerPlugin.destroy = function destroy ()\n{\n if (this._ticker)\n {\n var oldTicker = this._ticker;\n\n this.ticker = null;\n oldTicker.destroy();\n }\n};\n\nexport { Ticker, TickerPlugin, UPDATE_PRIORITY };\n//# sourceMappingURL=ticker.es.js.map\n","/*!\n * @pixi/core - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/core is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Runner } from '@pixi/runner';\nimport { determineCrossOrigin, isPow2, BaseTextureCache, TextureCache, uid, EventEmitter, getResolutionOfUrl, nextPow2, isMobile, ProgramCache, removeItems, hex2string, hex2rgb, deprecation, isWebGLSupported, sayHello, premultiplyBlendMode, log2, premultiplyTint } from '@pixi/utils';\nimport { settings } from '@pixi/settings';\nimport { SCALE_MODES, FORMATS, TYPES, TARGETS, DRAW_MODES, ENV, PRECISION, BLEND_MODES, GC_MODES, MIPMAP_MODES, WRAP_MODES, RENDERER_TYPE } from '@pixi/constants';\nimport { Ticker } from '@pixi/ticker';\nimport { GroupD8, Rectangle, Point, Matrix } from '@pixi/math';\nimport { Container } from '@pixi/display';\n\n/**\n * Base resource class for textures that manages validation and uploading, depending on its type.\n *\n * Uploading of a base texture to the GPU is required.\n *\n * @class\n * @memberof PIXI.resources\n */\nvar Resource = function Resource(width, height)\n{\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n\n /**\n * Internal width of the resource\n * @member {number}\n * @protected\n */\n this._width = width;\n\n /**\n * Internal height of the resource\n * @member {number}\n * @protected\n */\n this._height = height;\n\n /**\n * If resource has been destroyed\n * @member {boolean}\n * @readonly\n * @default false\n */\n this.destroyed = false;\n\n /**\n * `true` if resource is created by BaseTexture\n * useful for doing cleanup with BaseTexture destroy\n * and not cleaning up resources that were created\n * externally.\n * @member {boolean}\n * @protected\n */\n this.internal = false;\n\n /**\n * Mini-runner for handling resize events\n *\n * @member {Runner}\n * @private\n */\n this.onResize = new Runner('setRealSize', 2);\n\n /**\n * Mini-runner for handling update events\n *\n * @member {Runner}\n * @private\n */\n this.onUpdate = new Runner('update');\n\n /**\n * Handle internal errors, such as loading errors\n *\n * @member {Runner}\n * @private\n */\n this.onError = new Runner('onError', 1);\n};\n\nvar prototypeAccessors = { valid: { configurable: true },width: { configurable: true },height: { configurable: true } };\n\n/**\n * Bind to a parent BaseTexture\n *\n * @param {PIXI.BaseTexture} baseTexture - Parent texture\n */\nResource.prototype.bind = function bind (baseTexture)\n{\n this.onResize.add(baseTexture);\n this.onUpdate.add(baseTexture);\n this.onError.add(baseTexture);\n\n // Call a resize immediate if we already\n // have the width and height of the resource\n if (this._width || this._height)\n {\n this.onResize.run(this._width, this._height);\n }\n};\n\n/**\n * Unbind to a parent BaseTexture\n *\n * @param {PIXI.BaseTexture} baseTexture - Parent texture\n */\nResource.prototype.unbind = function unbind (baseTexture)\n{\n this.onResize.remove(baseTexture);\n this.onUpdate.remove(baseTexture);\n this.onError.remove(baseTexture);\n};\n\n/**\n * Trigger a resize event\n * @param {number} width X dimension\n * @param {number} height Y dimension\n */\nResource.prototype.resize = function resize (width, height)\n{\n if (width !== this._width || height !== this._height)\n {\n this._width = width;\n this._height = height;\n this.onResize.run(width, height);\n }\n};\n\n/**\n * Has been validated\n * @readonly\n * @member {boolean}\n */\nprototypeAccessors.valid.get = function ()\n{\n return !!this._width && !!this._height;\n};\n\n/**\n * Has been updated trigger event\n */\nResource.prototype.update = function update ()\n{\n if (!this.destroyed)\n {\n this.onUpdate.run();\n }\n};\n\n/**\n * This can be overridden to start preloading a resource\n * or do any other prepare step.\n * @protected\n * @return {Promise} Handle the validate event\n */\nResource.prototype.load = function load ()\n{\n return Promise.resolve();\n};\n\n/**\n * The width of the resource.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.width.get = function ()\n{\n return this._width;\n};\n\n/**\n * The height of the resource.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.height.get = function ()\n{\n return this._height;\n};\n\n/**\n * Uploads the texture or returns false if it cant for some reason. Override this.\n *\n * @param {PIXI.Renderer} renderer - yeah, renderer!\n * @param {PIXI.BaseTexture} baseTexture - the texture\n * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context\n * @returns {boolean} true is success\n */\nResource.prototype.upload = function upload (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars\n{\n return false;\n};\n\n/**\n * Set the style, optional to override\n *\n * @param {PIXI.Renderer} renderer - yeah, renderer!\n * @param {PIXI.BaseTexture} baseTexture - the texture\n * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context\n * @returns {boolean} `true` is success\n */\nResource.prototype.style = function style (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars\n{\n return false;\n};\n\n/**\n * Clean up anything, this happens when destroying is ready.\n *\n * @protected\n */\nResource.prototype.dispose = function dispose ()\n{\n // override\n};\n\n/**\n * Call when destroying resource, unbind any BaseTexture object\n * before calling this method, as reference counts are maintained\n * internally.\n */\nResource.prototype.destroy = function destroy ()\n{\n if (!this.destroyed)\n {\n this.destroyed = true;\n this.dispose();\n this.onError.removeAll();\n this.onError = null;\n this.onResize.removeAll();\n this.onResize = null;\n this.onUpdate.removeAll();\n this.onUpdate = null;\n }\n};\n\nObject.defineProperties( Resource.prototype, prototypeAccessors );\n\n/**\n * Base for all the image/canvas resources\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n */\nvar BaseImageResource = /*@__PURE__*/(function (Resource) {\n function BaseImageResource(source)\n {\n var width = source.naturalWidth || source.videoWidth || source.width;\n var height = source.naturalHeight || source.videoHeight || source.height;\n\n Resource.call(this, width, height);\n\n /**\n * The source element\n * @member {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement}\n * @readonly\n */\n this.source = source;\n\n /**\n * If set to `true`, will force `texImage2D` over `texSubImage2D` for uploading.\n * Certain types of media (e.g. video) using `texImage2D` is more performant.\n * @member {boolean}\n * @default false\n * @private\n */\n this.noSubImage = false;\n }\n\n if ( Resource ) BaseImageResource.__proto__ = Resource;\n BaseImageResource.prototype = Object.create( Resource && Resource.prototype );\n BaseImageResource.prototype.constructor = BaseImageResource;\n\n /**\n * Set cross origin based detecting the url and the crossorigin\n * @protected\n * @param {HTMLElement} element - Element to apply crossOrigin\n * @param {string} url - URL to check\n * @param {boolean|string} [crossorigin=true] - Cross origin value to use\n */\n BaseImageResource.crossOrigin = function crossOrigin (element, url, crossorigin)\n {\n if (crossorigin === undefined && url.indexOf('data:') !== 0)\n {\n element.crossOrigin = determineCrossOrigin(url);\n }\n else if (crossorigin !== false)\n {\n element.crossOrigin = typeof crossorigin === 'string' ? crossorigin : 'anonymous';\n }\n };\n\n /**\n * Upload the texture to the GPU.\n * @param {PIXI.Renderer} renderer Upload to the renderer\n * @param {PIXI.BaseTexture} baseTexture Reference to parent texture\n * @param {PIXI.GLTexture} glTexture\n * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} [source] (optional)\n * @returns {boolean} true is success\n */\n BaseImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture, source)\n {\n var gl = renderer.gl;\n var width = baseTexture.realWidth;\n var height = baseTexture.realHeight;\n\n source = source || this.source;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (!this.noSubImage\n && baseTexture.target === gl.TEXTURE_2D\n && glTexture.width === width\n && glTexture.height === height)\n {\n gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, baseTexture.format, baseTexture.type, source);\n }\n else\n {\n glTexture.width = width;\n glTexture.height = height;\n\n gl.texImage2D(baseTexture.target, 0, baseTexture.format, baseTexture.format, baseTexture.type, source);\n }\n\n return true;\n };\n\n /**\n * Checks if source width/height was changed, resize can cause extra baseTexture update.\n * Triggers one update in any case.\n */\n BaseImageResource.prototype.update = function update ()\n {\n if (this.destroyed)\n {\n return;\n }\n\n var width = this.source.naturalWidth || this.source.videoWidth || this.source.width;\n var height = this.source.naturalHeight || this.source.videoHeight || this.source.height;\n\n this.resize(width, height);\n\n Resource.prototype.update.call(this);\n };\n\n /**\n * Destroy this BaseImageResource\n * @override\n * @param {PIXI.BaseTexture} [fromTexture] Optional base texture\n * @return {boolean} Destroy was successful\n */\n BaseImageResource.prototype.dispose = function dispose ()\n {\n this.source = null;\n };\n\n return BaseImageResource;\n}(Resource));\n\n/**\n * Resource type for HTMLImageElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n */\nvar ImageResource = /*@__PURE__*/(function (BaseImageResource) {\n function ImageResource(source, options)\n {\n options = options || {};\n\n if (!(source instanceof HTMLImageElement))\n {\n var imageElement = new Image();\n\n BaseImageResource.crossOrigin(imageElement, source, options.crossorigin);\n\n imageElement.src = source;\n source = imageElement;\n }\n\n BaseImageResource.call(this, source);\n\n // FireFox 68, and possibly other versions, seems like setting the HTMLImageElement#width and #height\n // to non-zero values before its loading completes if images are in a cache.\n // Because of this, need to set the `_width` and the `_height` to zero to avoid uploading incomplete images.\n // Please refer to the issue #5968 (https://github.com/pixijs/pixi.js/issues/5968).\n if (!source.complete && !!this._width && !!this._height)\n {\n this._width = 0;\n this._height = 0;\n }\n\n /**\n * URL of the image source\n * @member {string}\n */\n this.url = source.src;\n\n /**\n * When process is completed\n * @member {Promise}\n * @private\n */\n this._process = null;\n\n /**\n * If the image should be disposed after upload\n * @member {boolean}\n * @default false\n */\n this.preserveBitmap = false;\n\n /**\n * If capable, convert the image using createImageBitmap API\n * @member {boolean}\n * @default PIXI.settings.CREATE_IMAGE_BITMAP\n */\n this.createBitmap = (options.createBitmap !== undefined\n ? options.createBitmap : settings.CREATE_IMAGE_BITMAP) && !!window.createImageBitmap;\n\n /**\n * Controls texture premultiplyAlpha field\n * Copies from options\n * @member {boolean|null}\n * @readonly\n */\n this.premultiplyAlpha = options.premultiplyAlpha !== false;\n\n /**\n * The ImageBitmap element created for HTMLImageElement\n * @member {ImageBitmap}\n * @default null\n */\n this.bitmap = null;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) ImageResource.__proto__ = BaseImageResource;\n ImageResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n ImageResource.prototype.constructor = ImageResource;\n\n /**\n * returns a promise when image will be loaded and processed\n *\n * @param {boolean} [createBitmap=true] whether process image into bitmap\n * @returns {Promise}\n */\n ImageResource.prototype.load = function load (createBitmap)\n {\n var this$1 = this;\n\n if (createBitmap !== undefined)\n {\n this.createBitmap = createBitmap;\n }\n\n if (this._load)\n {\n return this._load;\n }\n\n this._load = new Promise(function (resolve) {\n this$1.url = this$1.source.src;\n var ref = this$1;\n var source = ref.source;\n\n var completed = function () {\n if (this$1.destroyed)\n {\n return;\n }\n source.onload = null;\n source.onerror = null;\n\n this$1.resize(source.width, source.height);\n this$1._load = null;\n\n if (this$1.createBitmap)\n {\n resolve(this$1.process());\n }\n else\n {\n resolve(this$1);\n }\n };\n\n if (source.complete && source.src)\n {\n completed();\n }\n else\n {\n source.onload = completed;\n source.onerror = function (event) { return this$1.onError.run(event); };\n }\n });\n\n return this._load;\n };\n\n /**\n * Called when we need to convert image into BitmapImage.\n * Can be called multiple times, real promise is cached inside.\n *\n * @returns {Promise} cached promise to fill that bitmap\n */\n ImageResource.prototype.process = function process ()\n {\n var this$1 = this;\n\n if (this._process !== null)\n {\n return this._process;\n }\n if (this.bitmap !== null || !window.createImageBitmap)\n {\n return Promise.resolve(this);\n }\n\n this._process = window.createImageBitmap(this.source,\n 0, 0, this.source.width, this.source.height,\n {\n premultiplyAlpha: this.premultiplyAlpha ? 'premultiply' : 'none',\n })\n .then(function (bitmap) {\n if (this$1.destroyed)\n {\n return Promise.reject();\n }\n this$1.bitmap = bitmap;\n this$1.update();\n this$1._process = null;\n\n return Promise.resolve(this$1);\n });\n\n return this._process;\n };\n\n /**\n * Upload the image resource to GPU.\n *\n * @param {PIXI.Renderer} renderer - Renderer to upload to\n * @param {PIXI.BaseTexture} baseTexture - BaseTexture for this resource\n * @param {PIXI.GLTexture} glTexture - GLTexture to use\n * @returns {boolean} true is success\n */\n ImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n baseTexture.premultiplyAlpha = this.premultiplyAlpha;\n\n if (!this.createBitmap)\n {\n return BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture);\n }\n if (!this.bitmap)\n {\n // yeah, ignore the output\n this.process();\n if (!this.bitmap)\n {\n return false;\n }\n }\n\n BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture, this.bitmap);\n\n if (!this.preserveBitmap)\n {\n // checks if there are other renderers that possibly need this bitmap\n\n var flag = true;\n\n for (var key in baseTexture._glTextures)\n {\n var otherTex = baseTexture._glTextures[key];\n\n if (otherTex !== glTexture && otherTex.dirtyId !== baseTexture.dirtyId)\n {\n flag = false;\n break;\n }\n }\n\n if (flag)\n {\n if (this.bitmap.close)\n {\n this.bitmap.close();\n }\n\n this.bitmap = null;\n }\n }\n\n return true;\n };\n\n /**\n * Destroys this texture\n * @override\n */\n ImageResource.prototype.dispose = function dispose ()\n {\n this.source.onload = null;\n this.source.onerror = null;\n\n BaseImageResource.prototype.dispose.call(this);\n\n if (this.bitmap)\n {\n this.bitmap.close();\n this.bitmap = null;\n }\n this._process = null;\n this._load = null;\n };\n\n return ImageResource;\n}(BaseImageResource));\n\n/**\n * Collection of installed resource types, class must extend {@link PIXI.resources.Resource}.\n * @example\n * class CustomResource extends PIXI.resources.Resource {\n * // MUST have source, options constructor signature\n * // for auto-detected resources to be created.\n * constructor(source, options) {\n * super();\n * }\n * upload(renderer, baseTexture, glTexture) {\n * // upload with GL\n * return true;\n * }\n * // used to auto-detect resource\n * static test(source, extension) {\n * return extension === 'xyz'|| source instanceof SomeClass;\n * }\n * }\n * // Install the new resource type\n * PIXI.resources.INSTALLED.push(CustomResource);\n *\n * @name PIXI.resources.INSTALLED\n * @type {Array<*>}\n * @static\n * @readonly\n */\nvar INSTALLED = [];\n\n/**\n * Create a resource element from a single source element. This\n * auto-detects which type of resource to create. All resources that\n * are auto-detectable must have a static `test` method and a constructor\n * with the arguments `(source, options?)`. Currently, the supported\n * resources for auto-detection include:\n * - {@link PIXI.resources.ImageResource}\n * - {@link PIXI.resources.CanvasResource}\n * - {@link PIXI.resources.VideoResource}\n * - {@link PIXI.resources.SVGResource}\n * - {@link PIXI.resources.BufferResource}\n * @static\n * @function PIXI.resources.autoDetectResource\n * @param {string|*} source - Resource source, this can be the URL to the resource,\n * a typed-array (for BufferResource), HTMLVideoElement, SVG data-uri\n * or any other resource that can be auto-detected. If not resource is\n * detected, it's assumed to be an ImageResource.\n * @param {object} [options] - Pass-through options to use for Resource\n * @param {number} [options.width] - Width of BufferResource or SVG rasterization\n * @param {number} [options.height] - Height of BufferResource or SVG rasterization\n * @param {boolean} [options.autoLoad=true] - Image, SVG and Video flag to start loading\n * @param {number} [options.scale=1] - SVG source scale. Overridden by width, height\n * @param {boolean} [options.createBitmap=PIXI.settings.CREATE_IMAGE_BITMAP] - Image option to create Bitmap object\n * @param {boolean} [options.crossorigin=true] - Image and Video option to set crossOrigin\n * @param {boolean} [options.autoPlay=true] - Video option to start playing video immediately\n * @param {number} [options.updateFPS=0] - Video option to update how many times a second the\n * texture should be updated from the video. Leave at 0 to update at every render\n * @return {PIXI.resources.Resource} The created resource.\n */\nfunction autoDetectResource(source, options)\n{\n if (!source)\n {\n return null;\n }\n\n var extension = '';\n\n if (typeof source === 'string')\n {\n // search for file extension: period, 3-4 chars, then ?, # or EOL\n var result = (/\\.(\\w{3,4})(?:$|\\?|#)/i).exec(source);\n\n if (result)\n {\n extension = result[1].toLowerCase();\n }\n }\n\n for (var i = INSTALLED.length - 1; i >= 0; --i)\n {\n var ResourcePlugin = INSTALLED[i];\n\n if (ResourcePlugin.test && ResourcePlugin.test(source, extension))\n {\n return new ResourcePlugin(source, options);\n }\n }\n\n // When in doubt: probably an image\n // might be appropriate to throw an error or return null\n return new ImageResource(source, options);\n}\n\n/**\n * @interface SharedArrayBuffer\n */\n\n/**\n * Buffer resource with data of typed array.\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n */\nvar BufferResource = /*@__PURE__*/(function (Resource) {\n function BufferResource(source, options)\n {\n var ref = options || {};\n var width = ref.width;\n var height = ref.height;\n\n if (!width || !height)\n {\n throw new Error('BufferResource width or height invalid');\n }\n\n Resource.call(this, width, height);\n\n /**\n * Source array\n * Cannot be ClampedUint8Array because it cant be uploaded to WebGL\n *\n * @member {Float32Array|Uint8Array|Uint32Array}\n */\n this.data = source;\n }\n\n if ( Resource ) BufferResource.__proto__ = Resource;\n BufferResource.prototype = Object.create( Resource && Resource.prototype );\n BufferResource.prototype.constructor = BufferResource;\n\n /**\n * Upload the texture to the GPU.\n * @param {PIXI.Renderer} renderer Upload to the renderer\n * @param {PIXI.BaseTexture} baseTexture Reference to parent texture\n * @param {PIXI.GLTexture} glTexture glTexture\n * @returns {boolean} true is success\n */\n BufferResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var gl = renderer.gl;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height)\n {\n gl.texSubImage2D(\n baseTexture.target,\n 0,\n 0,\n 0,\n baseTexture.width,\n baseTexture.height,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n else\n {\n glTexture.width = baseTexture.width;\n glTexture.height = baseTexture.height;\n\n gl.texImage2D(\n baseTexture.target,\n 0,\n glTexture.internalFormat,\n baseTexture.width,\n baseTexture.height,\n 0,\n baseTexture.format,\n glTexture.type,\n this.data\n );\n }\n\n return true;\n };\n\n /**\n * Destroy and don't use after this\n * @override\n */\n BufferResource.prototype.dispose = function dispose ()\n {\n this.data = null;\n };\n\n /**\n * Used to auto-detect the type of resource.\n *\n * @static\n * @param {*} source - The source object\n * @return {boolean} `true` if \n */\n BufferResource.test = function test (source)\n {\n return source instanceof Float32Array\n || source instanceof Uint8Array\n || source instanceof Uint32Array;\n };\n\n return BufferResource;\n}(Resource));\n\nvar defaultBufferOptions = {\n scaleMode: SCALE_MODES.NEAREST,\n format: FORMATS.RGBA,\n premultiplyAlpha: false,\n};\n\n/**\n * A Texture stores the information that represents an image.\n * All textures have a base texture, which contains information about the source.\n * Therefore you can have many textures all using a single BaseTexture\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n * @param {PIXI.resources.Resource|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} [resource=null]\n * The current resource to use, for things that aren't Resource objects, will be converted\n * into a Resource.\n * @param {Object} [options] - Collection of options\n * @param {PIXI.MIPMAP_MODES} [options.mipmap=PIXI.settings.MIPMAP_TEXTURES] - If mipmapping is enabled for texture\n * @param {number} [options.anisotropicLevel=PIXI.settings.ANISOTROPIC_LEVEL] - Anisotropic filtering level of texture\n * @param {PIXI.WRAP_MODES} [options.wrapMode=PIXI.settings.WRAP_MODE] - Wrap mode for textures\n * @param {PIXI.SCALE_MODES} [options.scaleMode=PIXI.settings.SCALE_MODE] - Default scale mode, linear, nearest\n * @param {PIXI.FORMATS} [options.format=PIXI.FORMATS.RGBA] - GL format type\n * @param {PIXI.TYPES} [options.type=PIXI.TYPES.UNSIGNED_BYTE] - GL data type\n * @param {PIXI.TARGETS} [options.target=PIXI.TARGETS.TEXTURE_2D] - GL texture target\n * @param {boolean} [options.premultiplyAlpha=true] - Pre multiply the image alpha\n * @param {number} [options.width=0] - Width of the texture\n * @param {number} [options.height=0] - Height of the texture\n * @param {number} [options.resolution] - Resolution of the base texture\n * @param {object} [options.resourceOptions] - Optional resource options,\n * see {@link PIXI.resources.autoDetectResource autoDetectResource}\n */\nvar BaseTexture = /*@__PURE__*/(function (EventEmitter) {\n function BaseTexture(resource, options)\n {\n if ( resource === void 0 ) resource = null;\n if ( options === void 0 ) options = null;\n\n EventEmitter.call(this);\n\n options = options || {};\n\n var premultiplyAlpha = options.premultiplyAlpha;\n var mipmap = options.mipmap;\n var anisotropicLevel = options.anisotropicLevel;\n var scaleMode = options.scaleMode;\n var width = options.width;\n var height = options.height;\n var wrapMode = options.wrapMode;\n var format = options.format;\n var type = options.type;\n var target = options.target;\n var resolution = options.resolution;\n var resourceOptions = options.resourceOptions;\n\n // Convert the resource to a Resource object\n if (resource && !(resource instanceof Resource))\n {\n resource = autoDetectResource(resource, resourceOptions);\n resource.internal = true;\n }\n\n /**\n * The width of the base texture set when the image has loaded\n *\n * @readonly\n * @member {number}\n */\n this.width = width || 0;\n\n /**\n * The height of the base texture set when the image has loaded\n *\n * @readonly\n * @member {number}\n */\n this.height = height || 0;\n\n /**\n * The resolution / device pixel ratio of the texture\n *\n * @member {number}\n * @default PIXI.settings.RESOLUTION\n */\n this.resolution = resolution || settings.RESOLUTION;\n\n /**\n * Mipmap mode of the texture, affects downscaled images\n *\n * @member {PIXI.MIPMAP_MODES}\n * @default PIXI.settings.MIPMAP_TEXTURES\n */\n this.mipmap = mipmap !== undefined ? mipmap : settings.MIPMAP_TEXTURES;\n\n /**\n * Anisotropic filtering level of texture\n *\n * @member {number}\n * @default PIXI.settings.ANISOTROPIC_LEVEL\n */\n this.anisotropicLevel = anisotropicLevel !== undefined ? anisotropicLevel : settings.ANISOTROPIC_LEVEL;\n\n /**\n * How the texture wraps\n * @member {number}\n */\n this.wrapMode = wrapMode || settings.WRAP_MODE;\n\n /**\n * The scale mode to apply when scaling this texture\n *\n * @member {PIXI.SCALE_MODES}\n * @default PIXI.settings.SCALE_MODE\n */\n this.scaleMode = scaleMode !== undefined ? scaleMode : settings.SCALE_MODE;\n\n /**\n * The pixel format of the texture\n *\n * @member {PIXI.FORMATS}\n * @default PIXI.FORMATS.RGBA\n */\n this.format = format || FORMATS.RGBA;\n\n /**\n * The type of resource data\n *\n * @member {PIXI.TYPES}\n * @default PIXI.TYPES.UNSIGNED_BYTE\n */\n this.type = type || TYPES.UNSIGNED_BYTE;\n\n /**\n * The target type\n *\n * @member {PIXI.TARGETS}\n * @default PIXI.TARGETS.TEXTURE_2D\n */\n this.target = target || TARGETS.TEXTURE_2D;\n\n /**\n * Set to true to enable pre-multiplied alpha\n *\n * @member {boolean}\n * @default true\n */\n this.premultiplyAlpha = premultiplyAlpha !== false;\n\n /**\n * Global unique identifier for this BaseTexture\n *\n * @member {string}\n * @protected\n */\n this.uid = uid();\n\n /**\n * Used by automatic texture Garbage Collection, stores last GC tick when it was bound\n *\n * @member {number}\n * @protected\n */\n this.touched = 0;\n\n /**\n * Whether or not the texture is a power of two, try to use power of two textures as much\n * as you can\n *\n * @readonly\n * @member {boolean}\n * @default false\n */\n this.isPowerOfTwo = false;\n this._refreshPOT();\n\n /**\n * The map of render context textures where this is bound\n *\n * @member {Object}\n * @private\n */\n this._glTextures = {};\n\n /**\n * Used by TextureSystem to only update texture to the GPU when needed.\n * Please call `update()` to increment it.\n *\n * @readonly\n * @member {number}\n */\n this.dirtyId = 0;\n\n /**\n * Used by TextureSystem to only update texture style when needed.\n *\n * @protected\n * @member {number}\n */\n this.dirtyStyleId = 0;\n\n /**\n * Currently default cache ID.\n *\n * @member {string}\n */\n this.cacheId = null;\n\n /**\n * Generally speaking means when resource is loaded.\n * @readonly\n * @member {boolean}\n */\n this.valid = width > 0 && height > 0;\n\n /**\n * The collection of alternative cache ids, since some BaseTextures\n * can have more than one ID, short name and longer full URL\n *\n * @member {Array}\n * @readonly\n */\n this.textureCacheIds = [];\n\n /**\n * Flag if BaseTexture has been destroyed.\n *\n * @member {boolean}\n * @readonly\n */\n this.destroyed = false;\n\n /**\n * The resource used by this BaseTexture, there can only\n * be one resource per BaseTexture, but textures can share\n * resources.\n *\n * @member {PIXI.resources.Resource}\n * @readonly\n */\n this.resource = null;\n\n /**\n * Number of the texture batch, used by multi-texture renderers\n *\n * @member {number}\n */\n this._batchEnabled = 0;\n\n /**\n * Fired when a not-immediately-available source finishes loading.\n *\n * @protected\n * @event PIXI.BaseTexture#loaded\n * @param {PIXI.BaseTexture} baseTexture - Resource loaded.\n */\n\n /**\n * Fired when a not-immediately-available source fails to load.\n *\n * @protected\n * @event PIXI.BaseTexture#error\n * @param {PIXI.BaseTexture} baseTexture - Resource errored.\n * @param {ErrorEvent} event - Load error event.\n */\n\n /**\n * Fired when BaseTexture is updated.\n *\n * @protected\n * @event PIXI.BaseTexture#loaded\n * @param {PIXI.BaseTexture} baseTexture - Resource loaded.\n */\n\n /**\n * Fired when BaseTexture is updated.\n *\n * @protected\n * @event PIXI.BaseTexture#update\n * @param {PIXI.BaseTexture} baseTexture - Instance of texture being updated.\n */\n\n /**\n * Fired when BaseTexture is destroyed.\n *\n * @protected\n * @event PIXI.BaseTexture#dispose\n * @param {PIXI.BaseTexture} baseTexture - Instance of texture being destroyed.\n */\n\n // Set the resource\n this.setResource(resource);\n }\n\n if ( EventEmitter ) BaseTexture.__proto__ = EventEmitter;\n BaseTexture.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n BaseTexture.prototype.constructor = BaseTexture;\n\n var prototypeAccessors = { realWidth: { configurable: true },realHeight: { configurable: true } };\n\n /**\n * Pixel width of the source of this texture\n *\n * @readonly\n * @member {number}\n */\n prototypeAccessors.realWidth.get = function ()\n {\n return Math.ceil((this.width * this.resolution) - 1e-4);\n };\n\n /**\n * Pixel height of the source of this texture\n *\n * @readonly\n * @member {number}\n */\n prototypeAccessors.realHeight.get = function ()\n {\n return Math.ceil((this.height * this.resolution) - 1e-4);\n };\n\n /**\n * Changes style options of BaseTexture\n *\n * @param {PIXI.SCALE_MODES} [scaleMode] - Pixi scalemode\n * @param {PIXI.MIPMAP_MODES} [mipmap] - enable mipmaps\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setStyle = function setStyle (scaleMode, mipmap)\n {\n var dirty;\n\n if (scaleMode !== undefined && scaleMode !== this.scaleMode)\n {\n this.scaleMode = scaleMode;\n dirty = true;\n }\n\n if (mipmap !== undefined && mipmap !== this.mipmap)\n {\n this.mipmap = mipmap;\n dirty = true;\n }\n\n if (dirty)\n {\n this.dirtyStyleId++;\n }\n\n return this;\n };\n\n /**\n * Changes w/h/resolution. Texture becomes valid if width and height are greater than zero.\n *\n * @param {number} width Visual width\n * @param {number} height Visual height\n * @param {number} [resolution] Optionally set resolution\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setSize = function setSize (width, height, resolution)\n {\n this.resolution = resolution || this.resolution;\n this.width = width;\n this.height = height;\n this._refreshPOT();\n this.update();\n\n return this;\n };\n\n /**\n * Sets real size of baseTexture, preserves current resolution.\n *\n * @param {number} realWidth Full rendered width\n * @param {number} realHeight Full rendered height\n * @param {number} [resolution] Optionally set resolution\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setRealSize = function setRealSize (realWidth, realHeight, resolution)\n {\n this.resolution = resolution || this.resolution;\n this.width = realWidth / this.resolution;\n this.height = realHeight / this.resolution;\n this._refreshPOT();\n this.update();\n\n return this;\n };\n\n /**\n * Refresh check for isPowerOfTwo texture based on size\n *\n * @private\n */\n BaseTexture.prototype._refreshPOT = function _refreshPOT ()\n {\n this.isPowerOfTwo = isPow2(this.realWidth) && isPow2(this.realHeight);\n };\n\n /**\n * Changes resolution\n *\n * @param {number} [resolution] res\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setResolution = function setResolution (resolution)\n {\n var oldResolution = this.resolution;\n\n if (oldResolution === resolution)\n {\n return this;\n }\n\n this.resolution = resolution;\n\n if (this.valid)\n {\n this.width = this.width * oldResolution / resolution;\n this.height = this.height * oldResolution / resolution;\n this.emit('update', this);\n }\n\n this._refreshPOT();\n\n return this;\n };\n\n /**\n * Sets the resource if it wasn't set. Throws error if resource already present\n *\n * @param {PIXI.resources.Resource} resource - that is managing this BaseTexture\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setResource = function setResource (resource)\n {\n if (this.resource === resource)\n {\n return this;\n }\n\n if (this.resource)\n {\n throw new Error('Resource can be set only once');\n }\n\n resource.bind(this);\n\n this.resource = resource;\n\n return this;\n };\n\n /**\n * Invalidates the object. Texture becomes valid if width and height are greater than zero.\n */\n BaseTexture.prototype.update = function update ()\n {\n if (!this.valid)\n {\n if (this.width > 0 && this.height > 0)\n {\n this.valid = true;\n this.emit('loaded', this);\n this.emit('update', this);\n }\n }\n else\n {\n this.dirtyId++;\n this.dirtyStyleId++;\n this.emit('update', this);\n }\n };\n\n /**\n * Handle errors with resources.\n * @private\n * @param {ErrorEvent} event - Error event emitted.\n */\n BaseTexture.prototype.onError = function onError (event)\n {\n this.emit('error', this, event);\n };\n\n /**\n * Destroys this base texture.\n * The method stops if resource doesn't want this texture to be destroyed.\n * Removes texture from all caches.\n */\n BaseTexture.prototype.destroy = function destroy ()\n {\n // remove and destroy the resource\n if (this.resource)\n {\n this.resource.unbind(this);\n // only destroy resourced created internally\n if (this.resource.internal)\n {\n this.resource.destroy();\n }\n this.resource = null;\n }\n\n if (this.cacheId)\n {\n delete BaseTextureCache[this.cacheId];\n delete TextureCache[this.cacheId];\n\n this.cacheId = null;\n }\n\n // finally let the WebGL renderer know..\n this.dispose();\n\n BaseTexture.removeFromCache(this);\n this.textureCacheIds = null;\n\n this.destroyed = true;\n };\n\n /**\n * Frees the texture from WebGL memory without destroying this texture object.\n * This means you can still use the texture later which will upload it to GPU\n * memory again.\n *\n * @fires PIXI.BaseTexture#dispose\n */\n BaseTexture.prototype.dispose = function dispose ()\n {\n this.emit('dispose', this);\n };\n\n /**\n * Helper function that creates a base texture based on the source you provide.\n * The source can be - image url, image element, canvas element. If the\n * source is an image url or an image element and not in the base texture\n * cache, it will be created and loaded.\n *\n * @static\n * @param {string|HTMLImageElement|HTMLCanvasElement|SVGElement|HTMLVideoElement} source - The\n * source to create base texture from.\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @returns {PIXI.BaseTexture} The new base texture.\n */\n BaseTexture.from = function from (source, options)\n {\n var cacheId = null;\n\n if (typeof source === 'string')\n {\n cacheId = source;\n }\n else\n {\n if (!source._pixiId)\n {\n source._pixiId = \"pixiid_\" + (uid());\n }\n\n cacheId = source._pixiId;\n }\n\n var baseTexture = BaseTextureCache[cacheId];\n\n if (!baseTexture)\n {\n baseTexture = new BaseTexture(source, options);\n baseTexture.cacheId = cacheId;\n BaseTexture.addToCache(baseTexture, cacheId);\n }\n\n return baseTexture;\n };\n\n /**\n * Create a new BaseTexture with a BufferResource from a Float32Array.\n * RGBA values are floats from 0 to 1.\n * @static\n * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data\n * is provided, a new Float32Array is created.\n * @param {number} width - Width of the resource\n * @param {number} height - Height of the resource\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.BaseTexture} The resulting new BaseTexture\n */\n BaseTexture.fromBuffer = function fromBuffer (buffer, width, height, options)\n {\n buffer = buffer || new Float32Array(width * height * 4);\n\n var resource = new BufferResource(buffer, { width: width, height: height });\n var type = buffer instanceof Float32Array ? TYPES.FLOAT : TYPES.UNSIGNED_BYTE;\n\n return new BaseTexture(resource, Object.assign(defaultBufferOptions, options || { width: width, height: height, type: type }));\n };\n\n /**\n * Adds a BaseTexture to the global BaseTextureCache. This cache is shared across the whole PIXI object.\n *\n * @static\n * @param {PIXI.BaseTexture} baseTexture - The BaseTexture to add to the cache.\n * @param {string} id - The id that the BaseTexture will be stored against.\n */\n BaseTexture.addToCache = function addToCache (baseTexture, id)\n {\n if (id)\n {\n if (baseTexture.textureCacheIds.indexOf(id) === -1)\n {\n baseTexture.textureCacheIds.push(id);\n }\n\n if (BaseTextureCache[id])\n {\n // eslint-disable-next-line no-console\n console.warn((\"BaseTexture added to the cache with an id [\" + id + \"] that already had an entry\"));\n }\n\n BaseTextureCache[id] = baseTexture;\n }\n };\n\n /**\n * Remove a BaseTexture from the global BaseTextureCache.\n *\n * @static\n * @param {string|PIXI.BaseTexture} baseTexture - id of a BaseTexture to be removed, or a BaseTexture instance itself.\n * @return {PIXI.BaseTexture|null} The BaseTexture that was removed.\n */\n BaseTexture.removeFromCache = function removeFromCache (baseTexture)\n {\n if (typeof baseTexture === 'string')\n {\n var baseTextureFromCache = BaseTextureCache[baseTexture];\n\n if (baseTextureFromCache)\n {\n var index = baseTextureFromCache.textureCacheIds.indexOf(baseTexture);\n\n if (index > -1)\n {\n baseTextureFromCache.textureCacheIds.splice(index, 1);\n }\n\n delete BaseTextureCache[baseTexture];\n\n return baseTextureFromCache;\n }\n }\n else if (baseTexture && baseTexture.textureCacheIds)\n {\n for (var i = 0; i < baseTexture.textureCacheIds.length; ++i)\n {\n delete BaseTextureCache[baseTexture.textureCacheIds[i]];\n }\n\n baseTexture.textureCacheIds.length = 0;\n\n return baseTexture;\n }\n\n return null;\n };\n\n Object.defineProperties( BaseTexture.prototype, prototypeAccessors );\n\n return BaseTexture;\n}(EventEmitter));\n\n/**\n * Global number of the texture batch, used by multi-texture renderers\n *\n * @static\n * @member {number}\n */\nBaseTexture._globalBatch = 0;\n\n/**\n * A resource that contains a number of sources.\n *\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n * @param {number|Array<*>} source - Number of items in array or the collection\n * of image URLs to use. Can also be resources, image elements, canvas, etc.\n * @param {object} [options] Options to apply to {@link PIXI.resources.autoDetectResource}\n * @param {number} [options.width] - Width of the resource\n * @param {number} [options.height] - Height of the resource\n */\nvar ArrayResource = /*@__PURE__*/(function (Resource) {\n function ArrayResource(source, options)\n {\n options = options || {};\n\n var urls;\n var length = source;\n\n if (Array.isArray(source))\n {\n urls = source;\n length = source.length;\n }\n\n Resource.call(this, options.width, options.height);\n\n /**\n * Collection of resources.\n * @member {Array}\n * @readonly\n */\n this.items = [];\n\n /**\n * Dirty IDs for each part\n * @member {Array}\n * @readonly\n */\n this.itemDirtyIds = [];\n\n for (var i = 0; i < length; i++)\n {\n var partTexture = new BaseTexture();\n\n this.items.push(partTexture);\n this.itemDirtyIds.push(-1);\n }\n\n /**\n * Number of elements in array\n *\n * @member {number}\n * @readonly\n */\n this.length = length;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (urls)\n {\n for (var i$1 = 0; i$1 < length; i$1++)\n {\n this.addResourceAt(autoDetectResource(urls[i$1], options), i$1);\n }\n }\n }\n\n if ( Resource ) ArrayResource.__proto__ = Resource;\n ArrayResource.prototype = Object.create( Resource && Resource.prototype );\n ArrayResource.prototype.constructor = ArrayResource;\n\n /**\n * Destroy this BaseImageResource\n * @override\n */\n ArrayResource.prototype.dispose = function dispose ()\n {\n for (var i = 0, len = this.length; i < len; i++)\n {\n this.items[i].destroy();\n }\n this.items = null;\n this.itemDirtyIds = null;\n this._load = null;\n };\n\n /**\n * Set a resource by ID\n *\n * @param {PIXI.resources.Resource} resource\n * @param {number} index - Zero-based index of resource to set\n * @return {PIXI.resources.ArrayResource} Instance for chaining\n */\n ArrayResource.prototype.addResourceAt = function addResourceAt (resource, index)\n {\n var baseTexture = this.items[index];\n\n if (!baseTexture)\n {\n throw new Error((\"Index \" + index + \" is out of bounds\"));\n }\n\n // Inherit the first resource dimensions\n if (resource.valid && !this.valid)\n {\n this.resize(resource.width, resource.height);\n }\n\n this.items[index].setResource(resource);\n\n return this;\n };\n\n /**\n * Set the parent base texture\n * @member {PIXI.BaseTexture}\n * @override\n */\n ArrayResource.prototype.bind = function bind (baseTexture)\n {\n Resource.prototype.bind.call(this, baseTexture);\n\n baseTexture.target = TARGETS.TEXTURE_2D_ARRAY;\n\n for (var i = 0; i < this.length; i++)\n {\n this.items[i].on('update', baseTexture.update, baseTexture);\n }\n };\n\n /**\n * Unset the parent base texture\n * @member {PIXI.BaseTexture}\n * @override\n */\n ArrayResource.prototype.unbind = function unbind (baseTexture)\n {\n Resource.prototype.unbind.call(this, baseTexture);\n\n for (var i = 0; i < this.length; i++)\n {\n this.items[i].off('update', baseTexture.update, baseTexture);\n }\n };\n\n /**\n * Load all the resources simultaneously\n * @override\n * @return {Promise} When load is resolved\n */\n ArrayResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n var resources = this.items.map(function (item) { return item.resource; });\n\n // TODO: also implement load part-by-part strategy\n var promises = resources.map(function (item) { return item.load(); });\n\n this._load = Promise.all(promises)\n .then(function () {\n var ref = resources[0];\n var width = ref.width;\n var height = ref.height;\n\n this$1.resize(width, height);\n\n return Promise.resolve(this$1);\n }\n );\n\n return this._load;\n };\n\n /**\n * Upload the resources to the GPU.\n * @param {PIXI.Renderer} renderer\n * @param {PIXI.BaseTexture} texture\n * @param {PIXI.GLTexture} glTexture\n * @returns {boolean} whether texture was uploaded\n */\n ArrayResource.prototype.upload = function upload (renderer, texture, glTexture)\n {\n var ref = this;\n var length = ref.length;\n var itemDirtyIds = ref.itemDirtyIds;\n var items = ref.items;\n var gl = renderer.gl;\n\n if (glTexture.dirtyId < 0)\n {\n gl.texImage3D(\n gl.TEXTURE_2D_ARRAY,\n 0,\n texture.format,\n this._width,\n this._height,\n length,\n 0,\n texture.format,\n texture.type,\n null\n );\n }\n\n for (var i = 0; i < length; i++)\n {\n var item = items[i];\n\n if (itemDirtyIds[i] < item.dirtyId)\n {\n itemDirtyIds[i] = item.dirtyId;\n if (item.valid)\n {\n gl.texSubImage3D(\n gl.TEXTURE_2D_ARRAY,\n 0,\n 0, // xoffset\n 0, // yoffset\n i, // zoffset\n item.resource.width,\n item.resource.height,\n 1,\n texture.format,\n texture.type,\n item.resource.source\n );\n }\n }\n }\n\n return true;\n };\n\n return ArrayResource;\n}(Resource));\n\n/**\n * @interface OffscreenCanvas\n */\n\n/**\n * Resource type for HTMLCanvasElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {HTMLCanvasElement} source - Canvas element to use\n */\nvar CanvasResource = /*@__PURE__*/(function (BaseImageResource) {\n function CanvasResource () {\n BaseImageResource.apply(this, arguments);\n }\n\n if ( BaseImageResource ) CanvasResource.__proto__ = BaseImageResource;\n CanvasResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n CanvasResource.prototype.constructor = CanvasResource;\n\n CanvasResource.test = function test (source)\n {\n var OffscreenCanvas = window.OffscreenCanvas;\n\n // Check for browsers that don't yet support OffscreenCanvas\n if (OffscreenCanvas && source instanceof OffscreenCanvas)\n {\n return true;\n }\n\n return source instanceof HTMLCanvasElement;\n };\n\n return CanvasResource;\n}(BaseImageResource));\n\n/**\n * Resource for a CubeTexture which contains six resources.\n *\n * @class\n * @extends PIXI.resources.ArrayResource\n * @memberof PIXI.resources\n * @param {Array} [source] Collection of URLs or resources\n * to use as the sides of the cube.\n * @param {object} [options] - ImageResource options\n * @param {number} [options.width] - Width of resource\n * @param {number} [options.height] - Height of resource\n */\nvar CubeResource = /*@__PURE__*/(function (ArrayResource) {\n function CubeResource(source, options)\n {\n options = options || {};\n\n ArrayResource.call(this, source, options);\n\n if (this.length !== CubeResource.SIDES)\n {\n throw new Error((\"Invalid length. Got \" + (this.length) + \", expected 6\"));\n }\n\n for (var i = 0; i < CubeResource.SIDES; i++)\n {\n this.items[i].target = TARGETS.TEXTURE_CUBE_MAP_POSITIVE_X + i;\n }\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( ArrayResource ) CubeResource.__proto__ = ArrayResource;\n CubeResource.prototype = Object.create( ArrayResource && ArrayResource.prototype );\n CubeResource.prototype.constructor = CubeResource;\n\n /**\n * Add binding\n *\n * @override\n * @param {PIXI.BaseTexture} baseTexture - parent base texture\n */\n CubeResource.prototype.bind = function bind (baseTexture)\n {\n ArrayResource.prototype.bind.call(this, baseTexture);\n\n baseTexture.target = TARGETS.TEXTURE_CUBE_MAP;\n };\n\n /**\n * Upload the resource\n *\n * @returns {boolean} true is success\n */\n CubeResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var dirty = this.itemDirtyIds;\n\n for (var i = 0; i < CubeResource.SIDES; i++)\n {\n var side = this.items[i];\n\n if (dirty[i] < side.dirtyId)\n {\n dirty[i] = side.dirtyId;\n if (side.valid)\n {\n side.resource.upload(renderer, side, glTexture);\n }\n }\n }\n\n return true;\n };\n\n return CubeResource;\n}(ArrayResource));\n\n/**\n * Number of texture sides to store for CubeResources\n *\n * @name PIXI.resources.CubeResource.SIDES\n * @static\n * @member {number}\n * @default 6\n */\nCubeResource.SIDES = 6;\n\n/**\n * Resource type for SVG elements and graphics.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {string} source - Base64 encoded SVG element or URL for SVG file.\n * @param {object} [options] - Options to use\n * @param {number} [options.scale=1] Scale to apply to SVG. Overridden by...\n * @param {number} [options.width] Rasterize SVG this wide. Aspect ratio preserved if height not specified.\n * @param {number} [options.height] Rasterize SVG this high. Aspect ratio preserved if width not specified.\n * @param {boolean} [options.autoLoad=true] Start loading right away.\n */\nvar SVGResource = /*@__PURE__*/(function (BaseImageResource) {\n function SVGResource(source, options)\n {\n options = options || {};\n\n BaseImageResource.call(this, document.createElement('canvas'));\n this._width = 0;\n this._height = 0;\n\n /**\n * Base64 encoded SVG element or URL for SVG file\n * @readonly\n * @member {string}\n */\n this.svg = source;\n\n /**\n * The source scale to apply when rasterizing on load\n * @readonly\n * @member {number}\n */\n this.scale = options.scale || 1;\n\n /**\n * A width override for rasterization on load\n * @readonly\n * @member {number}\n */\n this._overrideWidth = options.width;\n\n /**\n * A height override for rasterization on load\n * @readonly\n * @member {number}\n */\n this._overrideHeight = options.height;\n\n /**\n * Call when completely loaded\n * @private\n * @member {function}\n */\n this._resolve = null;\n\n /**\n * Cross origin value to use\n * @private\n * @member {boolean|string}\n */\n this._crossorigin = options.crossorigin;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) SVGResource.__proto__ = BaseImageResource;\n SVGResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n SVGResource.prototype.constructor = SVGResource;\n\n SVGResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n this._load = new Promise(function (resolve) {\n // Save this until after load is finished\n this$1._resolve = function () {\n this$1.resize(this$1.source.width, this$1.source.height);\n resolve(this$1);\n };\n\n // Convert SVG inline string to data-uri\n if ((/^\\]*(?:\\s(width|height)=('|\")(\\d*(?:\\.\\d+)?)(?:px)?('|\"))[^>]*(?:\\s(width|height)=('|\")(\\d*(?:\\.\\d+)?)(?:px)?('|\"))[^>]*>/i; // eslint-disable-line max-len\n\n/**\n * Resource type for HTMLVideoElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {HTMLVideoElement|object|string|Array} source - Video element to use.\n * @param {object} [options] - Options to use\n * @param {boolean} [options.autoLoad=true] - Start loading the video immediately\n * @param {boolean} [options.autoPlay=true] - Start playing video immediately\n * @param {number} [options.updateFPS=0] - How many times a second to update the texture from the video.\n * Leave at 0 to update at every render.\n * @param {boolean} [options.crossorigin=true] - Load image using cross origin\n */\nvar VideoResource = /*@__PURE__*/(function (BaseImageResource) {\n function VideoResource(source, options)\n {\n options = options || {};\n\n if (!(source instanceof HTMLVideoElement))\n {\n var videoElement = document.createElement('video');\n\n // workaround for https://github.com/pixijs/pixi.js/issues/5996\n videoElement.setAttribute('preload', 'auto');\n videoElement.setAttribute('webkit-playsinline', '');\n videoElement.setAttribute('playsinline', '');\n\n if (typeof source === 'string')\n {\n source = [source];\n }\n\n BaseImageResource.crossOrigin(videoElement, (source[0].src || source[0]), options.crossorigin);\n\n // array of objects or strings\n for (var i = 0; i < source.length; ++i)\n {\n var sourceElement = document.createElement('source');\n\n var ref = source[i];\n var src = ref.src;\n var mime = ref.mime;\n\n src = src || source[i];\n\n var baseSrc = src.split('?').shift().toLowerCase();\n var ext = baseSrc.substr(baseSrc.lastIndexOf('.') + 1);\n\n mime = mime || (\"video/\" + ext);\n\n sourceElement.src = src;\n sourceElement.type = mime;\n\n videoElement.appendChild(sourceElement);\n }\n\n // Override the source\n source = videoElement;\n }\n\n BaseImageResource.call(this, source);\n\n this.noSubImage = true;\n this._autoUpdate = true;\n this._isAutoUpdating = false;\n this._updateFPS = options.updateFPS || 0;\n this._msToNextUpdate = 0;\n\n /**\n * When set to true will automatically play videos used by this texture once\n * they are loaded. If false, it will not modify the playing state.\n *\n * @member {boolean}\n * @default true\n */\n this.autoPlay = options.autoPlay !== false;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n /**\n * Callback when completed with load.\n * @member {function}\n * @private\n */\n this._resolve = null;\n\n // Bind for listeners\n this._onCanPlay = this._onCanPlay.bind(this);\n this._onError = this._onError.bind(this);\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) VideoResource.__proto__ = BaseImageResource;\n VideoResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n VideoResource.prototype.constructor = VideoResource;\n\n var prototypeAccessors = { autoUpdate: { configurable: true },updateFPS: { configurable: true } };\n\n /**\n * Trigger updating of the texture\n *\n * @param {number} [deltaTime=0] - time delta since last tick\n */\n VideoResource.prototype.update = function update (deltaTime)\n {\n if ( deltaTime === void 0 ) deltaTime = 0;\n\n if (!this.destroyed)\n {\n // account for if video has had its playbackRate changed\n var elapsedMS = Ticker.shared.elapsedMS * this.source.playbackRate;\n\n this._msToNextUpdate = Math.floor(this._msToNextUpdate - elapsedMS);\n if (!this._updateFPS || this._msToNextUpdate <= 0)\n {\n BaseImageResource.prototype.update.call(this, deltaTime);\n this._msToNextUpdate = this._updateFPS ? Math.floor(1000 / this._updateFPS) : 0;\n }\n }\n };\n\n /**\n * Start preloading the video resource.\n *\n * @protected\n * @return {Promise} Handle the validate event\n */\n VideoResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n var source = this.source;\n\n if ((source.readyState === source.HAVE_ENOUGH_DATA || source.readyState === source.HAVE_FUTURE_DATA)\n && source.width && source.height)\n {\n source.complete = true;\n }\n\n source.addEventListener('play', this._onPlayStart.bind(this));\n source.addEventListener('pause', this._onPlayStop.bind(this));\n\n if (!this._isSourceReady())\n {\n source.addEventListener('canplay', this._onCanPlay);\n source.addEventListener('canplaythrough', this._onCanPlay);\n source.addEventListener('error', this._onError, true);\n }\n else\n {\n this._onCanPlay();\n }\n\n this._load = new Promise(function (resolve) {\n if (this$1.valid)\n {\n resolve(this$1);\n }\n else\n {\n this$1._resolve = resolve;\n\n source.load();\n }\n });\n\n return this._load;\n };\n\n /**\n * Handle video error events.\n *\n * @private\n */\n VideoResource.prototype._onError = function _onError ()\n {\n this.source.removeEventListener('error', this._onError, true);\n this.onError.run(event);\n };\n\n /**\n * Returns true if the underlying source is playing.\n *\n * @private\n * @return {boolean} True if playing.\n */\n VideoResource.prototype._isSourcePlaying = function _isSourcePlaying ()\n {\n var source = this.source;\n\n return (source.currentTime > 0 && source.paused === false && source.ended === false && source.readyState > 2);\n };\n\n /**\n * Returns true if the underlying source is ready for playing.\n *\n * @private\n * @return {boolean} True if ready.\n */\n VideoResource.prototype._isSourceReady = function _isSourceReady ()\n {\n return this.source.readyState === 3 || this.source.readyState === 4;\n };\n\n /**\n * Runs the update loop when the video is ready to play\n *\n * @private\n */\n VideoResource.prototype._onPlayStart = function _onPlayStart ()\n {\n // Just in case the video has not received its can play even yet..\n if (!this.valid)\n {\n this._onCanPlay();\n }\n\n if (!this._isAutoUpdating && this.autoUpdate)\n {\n Ticker.shared.add(this.update, this);\n this._isAutoUpdating = true;\n }\n };\n\n /**\n * Fired when a pause event is triggered, stops the update loop\n *\n * @private\n */\n VideoResource.prototype._onPlayStop = function _onPlayStop ()\n {\n if (this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n this._isAutoUpdating = false;\n }\n };\n\n /**\n * Fired when the video is loaded and ready to play\n *\n * @private\n */\n VideoResource.prototype._onCanPlay = function _onCanPlay ()\n {\n var ref = this;\n var source = ref.source;\n\n source.removeEventListener('canplay', this._onCanPlay);\n source.removeEventListener('canplaythrough', this._onCanPlay);\n\n var valid = this.valid;\n\n this.resize(source.videoWidth, source.videoHeight);\n\n // prevent multiple loaded dispatches..\n if (!valid && this._resolve)\n {\n this._resolve(this);\n this._resolve = null;\n }\n\n if (this._isSourcePlaying())\n {\n this._onPlayStart();\n }\n else if (this.autoPlay)\n {\n source.play();\n }\n };\n\n /**\n * Destroys this texture\n * @override\n */\n VideoResource.prototype.dispose = function dispose ()\n {\n if (this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n }\n\n if (this.source)\n {\n this.source.removeEventListener('error', this._onError, true);\n this.source.pause();\n this.source.src = '';\n this.source.load();\n }\n BaseImageResource.prototype.dispose.call(this);\n };\n\n /**\n * Should the base texture automatically update itself, set to true by default\n *\n * @member {boolean}\n */\n prototypeAccessors.autoUpdate.get = function ()\n {\n return this._autoUpdate;\n };\n\n prototypeAccessors.autoUpdate.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (value !== this._autoUpdate)\n {\n this._autoUpdate = value;\n\n if (!this._autoUpdate && this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n this._isAutoUpdating = false;\n }\n else if (this._autoUpdate && !this._isAutoUpdating)\n {\n Ticker.shared.add(this.update, this);\n this._isAutoUpdating = true;\n }\n }\n };\n\n /**\n * How many times a second to update the texture from the video. Leave at 0 to update at every render.\n * A lower fps can help performance, as updating the texture at 60fps on a 30ps video may not be efficient.\n *\n * @member {number}\n */\n prototypeAccessors.updateFPS.get = function ()\n {\n return this._updateFPS;\n };\n\n prototypeAccessors.updateFPS.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (value !== this._updateFPS)\n {\n this._updateFPS = value;\n }\n };\n\n /**\n * Used to auto-detect the type of resource.\n *\n * @static\n * @param {*} source - The source object\n * @param {string} extension - The extension of source, if set\n * @return {boolean} `true` if video source\n */\n VideoResource.test = function test (source, extension)\n {\n return (source instanceof HTMLVideoElement)\n || VideoResource.TYPES.indexOf(extension) > -1;\n };\n\n Object.defineProperties( VideoResource.prototype, prototypeAccessors );\n\n return VideoResource;\n}(BaseImageResource));\n\n/**\n * List of common video file extensions supported by VideoResource.\n * @constant\n * @member {Array}\n * @static\n * @readonly\n */\nVideoResource.TYPES = ['mp4', 'm4v', 'webm', 'ogg', 'ogv', 'h264', 'avi', 'mov'];\n\n/**\n * Resource type for ImageBitmap.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {ImageBitmap} source - Image element to use\n */\nvar ImageBitmapResource = /*@__PURE__*/(function (BaseImageResource) {\n function ImageBitmapResource () {\n BaseImageResource.apply(this, arguments);\n }\n\n if ( BaseImageResource ) ImageBitmapResource.__proto__ = BaseImageResource;\n ImageBitmapResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n ImageBitmapResource.prototype.constructor = ImageBitmapResource;\n\n ImageBitmapResource.test = function test (source)\n {\n return !!window.createImageBitmap && source instanceof ImageBitmap;\n };\n\n return ImageBitmapResource;\n}(BaseImageResource));\n\nINSTALLED.push(\n ImageResource,\n ImageBitmapResource,\n CanvasResource,\n VideoResource,\n SVGResource,\n BufferResource,\n CubeResource,\n ArrayResource\n);\n\nvar index = ({\n INSTALLED: INSTALLED,\n autoDetectResource: autoDetectResource,\n ArrayResource: ArrayResource,\n BufferResource: BufferResource,\n CanvasResource: CanvasResource,\n CubeResource: CubeResource,\n ImageResource: ImageResource,\n ImageBitmapResource: ImageBitmapResource,\n SVGResource: SVGResource,\n VideoResource: VideoResource,\n Resource: Resource,\n BaseImageResource: BaseImageResource\n});\n\n/**\n * System is a base class used for extending systems used by the {@link PIXI.Renderer}\n *\n * @see PIXI.Renderer#addSystem\n * @class\n * @memberof PIXI\n */\nvar System = function System(renderer)\n{\n /**\n * The renderer this manager works for.\n *\n * @member {PIXI.Renderer}\n */\n this.renderer = renderer;\n};\n\n/**\n * Generic destroy methods to be overridden by the subclass\n */\nSystem.prototype.destroy = function destroy ()\n{\n this.renderer = null;\n};\n\n/**\n * Resource type for DepthTexture.\n * @class\n * @extends PIXI.resources.BufferResource\n * @memberof PIXI.resources\n */\nvar DepthResource = /*@__PURE__*/(function (BufferResource) {\n function DepthResource () {\n BufferResource.apply(this, arguments);\n }\n\n if ( BufferResource ) DepthResource.__proto__ = BufferResource;\n DepthResource.prototype = Object.create( BufferResource && BufferResource.prototype );\n DepthResource.prototype.constructor = DepthResource;\n\n DepthResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var gl = renderer.gl;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height)\n {\n gl.texSubImage2D(\n baseTexture.target,\n 0,\n 0,\n 0,\n baseTexture.width,\n baseTexture.height,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n else\n {\n glTexture.width = baseTexture.width;\n glTexture.height = baseTexture.height;\n\n gl.texImage2D(\n baseTexture.target,\n 0,\n gl.DEPTH_COMPONENT16, // Needed for depth to render properly in webgl2.0\n baseTexture.width,\n baseTexture.height,\n 0,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n\n return true;\n };\n\n return DepthResource;\n}(BufferResource));\n\n/**\n * Frame buffer used by the BaseRenderTexture\n *\n * @class\n * @memberof PIXI\n */\nvar Framebuffer = function Framebuffer(width, height)\n{\n this.width = Math.ceil(width || 100);\n this.height = Math.ceil(height || 100);\n\n this.stencil = false;\n this.depth = false;\n\n this.dirtyId = 0;\n this.dirtyFormat = 0;\n this.dirtySize = 0;\n\n this.depthTexture = null;\n this.colorTextures = [];\n\n this.glFramebuffers = {};\n\n this.disposeRunner = new Runner('disposeFramebuffer', 2);\n};\n\nvar prototypeAccessors$1 = { colorTexture: { configurable: true } };\n\n/**\n * Reference to the colorTexture.\n *\n * @member {PIXI.Texture[]}\n * @readonly\n */\nprototypeAccessors$1.colorTexture.get = function ()\n{\n return this.colorTextures[0];\n};\n\n/**\n * Add texture to the colorTexture array\n *\n * @param {number} [index=0] - Index of the array to add the texture to\n * @param {PIXI.Texture} [texture] - Texture to add to the array\n */\nFramebuffer.prototype.addColorTexture = function addColorTexture (index, texture)\n{\n if ( index === void 0 ) index = 0;\n\n // TODO add some validation to the texture - same width / height etc?\n this.colorTextures[index] = texture || new BaseTexture(null, { scaleMode: 0,\n resolution: 1,\n mipmap: false,\n width: this.width,\n height: this.height });// || new Texture();\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Add a depth texture to the frame buffer\n *\n * @param {PIXI.Texture} [texture] - Texture to add\n */\nFramebuffer.prototype.addDepthTexture = function addDepthTexture (texture)\n{\n /* eslint-disable max-len */\n this.depthTexture = texture || new BaseTexture(new DepthResource(null, { width: this.width, height: this.height }), { scaleMode: 0,\n resolution: 1,\n width: this.width,\n height: this.height,\n mipmap: false,\n format: FORMATS.DEPTH_COMPONENT,\n type: TYPES.UNSIGNED_SHORT });// UNSIGNED_SHORT;\n /* eslint-disable max-len */\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Enable depth on the frame buffer\n */\nFramebuffer.prototype.enableDepth = function enableDepth ()\n{\n this.depth = true;\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Enable stencil on the frame buffer\n */\nFramebuffer.prototype.enableStencil = function enableStencil ()\n{\n this.stencil = true;\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Resize the frame buffer\n *\n * @param {number} width - Width of the frame buffer to resize to\n * @param {number} height - Height of the frame buffer to resize to\n */\nFramebuffer.prototype.resize = function resize (width, height)\n{\n width = Math.ceil(width);\n height = Math.ceil(height);\n\n if (width === this.width && height === this.height) { return; }\n\n this.width = width;\n this.height = height;\n\n this.dirtyId++;\n this.dirtySize++;\n\n for (var i = 0; i < this.colorTextures.length; i++)\n {\n var texture = this.colorTextures[i];\n var resolution = texture.resolution;\n\n // take into acount the fact the texture may have a different resolution..\n texture.setSize(width / resolution, height / resolution);\n }\n\n if (this.depthTexture)\n {\n var resolution$1 = this.depthTexture.resolution;\n\n this.depthTexture.setSize(width / resolution$1, height / resolution$1);\n }\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nFramebuffer.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\nObject.defineProperties( Framebuffer.prototype, prototypeAccessors$1 );\n\n/**\n * A BaseRenderTexture is a special texture that allows any PixiJS display object to be rendered to it.\n *\n * __Hint__: All DisplayObjects (i.e. Sprites) that render to a BaseRenderTexture should be preloaded\n * otherwise black rectangles will be drawn instead.\n *\n * A BaseRenderTexture takes a snapshot of any Display Object given to its render method. The position\n * and rotation of the given Display Objects is ignored. For example:\n *\n * ```js\n * let renderer = PIXI.autoDetectRenderer();\n * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 800, height: 600 });\n * let renderTexture = new PIXI.RenderTexture(baseRenderTexture);\n * let sprite = PIXI.Sprite.from(\"spinObj_01.png\");\n *\n * sprite.position.x = 800/2;\n * sprite.position.y = 600/2;\n * sprite.anchor.x = 0.5;\n * sprite.anchor.y = 0.5;\n *\n * renderer.render(sprite, renderTexture);\n * ```\n *\n * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0\n * you can clear the transform\n *\n * ```js\n *\n * sprite.setTransform()\n *\n * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 100, height: 100 });\n * let renderTexture = new PIXI.RenderTexture(baseRenderTexture);\n *\n * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture\n * ```\n *\n * @class\n * @extends PIXI.BaseTexture\n * @memberof PIXI\n */\nvar BaseRenderTexture = /*@__PURE__*/(function (BaseTexture) {\n function BaseRenderTexture(options)\n {\n if (typeof options === 'number')\n {\n /* eslint-disable prefer-rest-params */\n // Backward compatibility of signature\n var width$1 = arguments[0];\n var height$1 = arguments[1];\n var scaleMode = arguments[2];\n var resolution = arguments[3];\n\n options = { width: width$1, height: height$1, scaleMode: scaleMode, resolution: resolution };\n /* eslint-enable prefer-rest-params */\n }\n\n BaseTexture.call(this, null, options);\n\n var ref = options || {};\n var width = ref.width;\n var height = ref.height;\n\n // Set defaults\n this.mipmap = false;\n this.width = Math.ceil(width) || 100;\n this.height = Math.ceil(height) || 100;\n this.valid = true;\n\n /**\n * A reference to the canvas render target (we only need one as this can be shared across renderers)\n *\n * @protected\n * @member {object}\n */\n this._canvasRenderTarget = null;\n\n this.clearColor = [0, 0, 0, 0];\n\n this.framebuffer = new Framebuffer(this.width * this.resolution, this.height * this.resolution)\n .addColorTexture(0, this);\n\n // TODO - could this be added the systems?\n\n /**\n * The data structure for the stencil masks.\n *\n * @member {PIXI.Graphics[]}\n */\n this.stencilMaskStack = [];\n\n /**\n * The data structure for the filters.\n *\n * @member {PIXI.Graphics[]}\n */\n this.filterStack = [{}];\n }\n\n if ( BaseTexture ) BaseRenderTexture.__proto__ = BaseTexture;\n BaseRenderTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype );\n BaseRenderTexture.prototype.constructor = BaseRenderTexture;\n\n /**\n * Resizes the BaseRenderTexture.\n *\n * @param {number} width - The width to resize to.\n * @param {number} height - The height to resize to.\n */\n BaseRenderTexture.prototype.resize = function resize (width, height)\n {\n width = Math.ceil(width);\n height = Math.ceil(height);\n this.framebuffer.resize(width * this.resolution, height * this.resolution);\n };\n\n /**\n * Frees the texture and framebuffer from WebGL memory without destroying this texture object.\n * This means you can still use the texture later which will upload it to GPU\n * memory again.\n *\n * @fires PIXI.BaseTexture#dispose\n */\n BaseRenderTexture.prototype.dispose = function dispose ()\n {\n this.framebuffer.dispose();\n\n BaseTexture.prototype.dispose.call(this);\n };\n\n /**\n * Destroys this texture.\n *\n */\n BaseRenderTexture.prototype.destroy = function destroy ()\n {\n BaseTexture.prototype.destroy.call(this, true);\n\n this.framebuffer = null;\n };\n\n return BaseRenderTexture;\n}(BaseTexture));\n\n/**\n * Stores a texture's frame in UV coordinates, in\n * which everything lies in the rectangle `[(0,0), (1,0),\n * (1,1), (0,1)]`.\n *\n * | Corner | Coordinates |\n * |--------------|-------------|\n * | Top-Left | `(x0,y0)` |\n * | Top-Right | `(x1,y1)` |\n * | Bottom-Right | `(x2,y2)` |\n * | Bottom-Left | `(x3,y3)` |\n *\n * @class\n * @protected\n * @memberof PIXI\n */\nvar TextureUvs = function TextureUvs()\n{\n /**\n * X-component of top-left corner `(x0,y0)`.\n *\n * @member {number}\n */\n this.x0 = 0;\n\n /**\n * Y-component of top-left corner `(x0,y0)`.\n *\n * @member {number}\n */\n this.y0 = 0;\n\n /**\n * X-component of top-right corner `(x1,y1)`.\n *\n * @member {number}\n */\n this.x1 = 1;\n\n /**\n * Y-component of top-right corner `(x1,y1)`.\n *\n * @member {number}\n */\n this.y1 = 0;\n\n /**\n * X-component of bottom-right corner `(x2,y2)`.\n *\n * @member {number}\n */\n this.x2 = 1;\n\n /**\n * Y-component of bottom-right corner `(x2,y2)`.\n *\n * @member {number}\n */\n this.y2 = 1;\n\n /**\n * X-component of bottom-left corner `(x3,y3)`.\n *\n * @member {number}\n */\n this.x3 = 0;\n\n /**\n * Y-component of bottom-right corner `(x3,y3)`.\n *\n * @member {number}\n */\n this.y3 = 1;\n\n this.uvsFloat32 = new Float32Array(8);\n};\n\n/**\n * Sets the texture Uvs based on the given frame information.\n *\n * @protected\n * @param {PIXI.Rectangle} frame - The frame of the texture\n * @param {PIXI.Rectangle} baseFrame - The base frame of the texture\n * @param {number} rotate - Rotation of frame, see {@link PIXI.GroupD8}\n */\nTextureUvs.prototype.set = function set (frame, baseFrame, rotate)\n{\n var tw = baseFrame.width;\n var th = baseFrame.height;\n\n if (rotate)\n {\n // width and height div 2 div baseFrame size\n var w2 = frame.width / 2 / tw;\n var h2 = frame.height / 2 / th;\n\n // coordinates of center\n var cX = (frame.x / tw) + w2;\n var cY = (frame.y / th) + h2;\n\n rotate = GroupD8.add(rotate, GroupD8.NW); // NW is top-left corner\n this.x0 = cX + (w2 * GroupD8.uX(rotate));\n this.y0 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2); // rotate 90 degrees clockwise\n this.x1 = cX + (w2 * GroupD8.uX(rotate));\n this.y1 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2);\n this.x2 = cX + (w2 * GroupD8.uX(rotate));\n this.y2 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2);\n this.x3 = cX + (w2 * GroupD8.uX(rotate));\n this.y3 = cY + (h2 * GroupD8.uY(rotate));\n }\n else\n {\n this.x0 = frame.x / tw;\n this.y0 = frame.y / th;\n\n this.x1 = (frame.x + frame.width) / tw;\n this.y1 = frame.y / th;\n\n this.x2 = (frame.x + frame.width) / tw;\n this.y2 = (frame.y + frame.height) / th;\n\n this.x3 = frame.x / tw;\n this.y3 = (frame.y + frame.height) / th;\n }\n\n this.uvsFloat32[0] = this.x0;\n this.uvsFloat32[1] = this.y0;\n this.uvsFloat32[2] = this.x1;\n this.uvsFloat32[3] = this.y1;\n this.uvsFloat32[4] = this.x2;\n this.uvsFloat32[5] = this.y2;\n this.uvsFloat32[6] = this.x3;\n this.uvsFloat32[7] = this.y3;\n};\n\nvar DEFAULT_UVS = new TextureUvs();\n\n/**\n * A texture stores the information that represents an image or part of an image.\n *\n * It cannot be added to the display list directly; instead use it as the texture for a Sprite.\n * If no frame is provided for a texture, then the whole image is used.\n *\n * You can directly create a texture from an image and then reuse it multiple times like this :\n *\n * ```js\n * let texture = PIXI.Texture.from('assets/image.png');\n * let sprite1 = new PIXI.Sprite(texture);\n * let sprite2 = new PIXI.Sprite(texture);\n * ```\n *\n * If you didnt pass the texture frame to constructor, it enables `noFrame` mode:\n * it subscribes on baseTexture events, it automatically resizes at the same time as baseTexture.\n *\n * Textures made from SVGs, loaded or not, cannot be used before the file finishes processing.\n * You can check for this by checking the sprite's _textureID property.\n * ```js\n * var texture = PIXI.Texture.from('assets/image.svg');\n * var sprite1 = new PIXI.Sprite(texture);\n * //sprite1._textureID should not be undefined if the texture has finished processing the SVG file\n * ```\n * You can use a ticker or rAF to ensure your sprites load the finished textures after processing. See issue #3068.\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar Texture = /*@__PURE__*/(function (EventEmitter) {\n function Texture(baseTexture, frame, orig, trim, rotate, anchor)\n {\n EventEmitter.call(this);\n\n /**\n * Does this Texture have any frame data assigned to it?\n *\n * This mode is enabled automatically if no frame was passed inside constructor.\n *\n * In this mode texture is subscribed to baseTexture events, and fires `update` on any change.\n *\n * Beware, after loading or resize of baseTexture event can fired two times!\n * If you want more control, subscribe on baseTexture itself.\n *\n * ```js\n * texture.on('update', () => {});\n * ```\n *\n * Any assignment of `frame` switches off `noFrame` mode.\n *\n * @member {boolean}\n */\n this.noFrame = false;\n\n if (!frame)\n {\n this.noFrame = true;\n frame = new Rectangle(0, 0, 1, 1);\n }\n\n if (baseTexture instanceof Texture)\n {\n baseTexture = baseTexture.baseTexture;\n }\n\n /**\n * The base texture that this texture uses.\n *\n * @member {PIXI.BaseTexture}\n */\n this.baseTexture = baseTexture;\n\n /**\n * This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering,\n * irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases)\n *\n * @member {PIXI.Rectangle}\n */\n this._frame = frame;\n\n /**\n * This is the trimmed area of original texture, before it was put in atlas\n * Please call `updateUvs()` after you change coordinates of `trim` manually.\n *\n * @member {PIXI.Rectangle}\n */\n this.trim = trim;\n\n /**\n * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered.\n *\n * @member {boolean}\n */\n this.valid = false;\n\n /**\n * This will let a renderer know that a texture has been updated (used mainly for WebGL uv updates)\n *\n * @member {boolean}\n */\n this.requiresUpdate = false;\n\n /**\n * The WebGL UV data cache. Can be used as quad UV\n *\n * @member {PIXI.TextureUvs}\n * @protected\n */\n this._uvs = DEFAULT_UVS;\n\n /**\n * Default TextureMatrix instance for this texture\n * By default that object is not created because its heavy\n *\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = null;\n\n /**\n * This is the area of original texture, before it was put in atlas\n *\n * @member {PIXI.Rectangle}\n */\n this.orig = orig || frame;// new Rectangle(0, 0, 1, 1);\n\n this._rotate = Number(rotate || 0);\n\n if (rotate === true)\n {\n // this is old texturepacker legacy, some games/libraries are passing \"true\" for rotated textures\n this._rotate = 2;\n }\n else if (this._rotate % 2 !== 0)\n {\n throw new Error('attempt to use diamond-shaped UVs. If you are sure, set rotation manually');\n }\n\n /**\n * Anchor point that is used as default if sprite is created with this texture.\n * Changing the `defaultAnchor` at a later point of time will not update Sprite's anchor point.\n * @member {PIXI.Point}\n * @default {0,0}\n */\n this.defaultAnchor = anchor ? new Point(anchor.x, anchor.y) : new Point(0, 0);\n\n /**\n * Update ID is observed by sprites and TextureMatrix instances.\n * Call updateUvs() to increment it.\n *\n * @member {number}\n * @protected\n */\n\n this._updateID = 0;\n\n /**\n * The ids under which this Texture has been added to the texture cache. This is\n * automatically set as long as Texture.addToCache is used, but may not be set if a\n * Texture is added directly to the TextureCache array.\n *\n * @member {string[]}\n */\n this.textureCacheIds = [];\n\n if (!baseTexture.valid)\n {\n baseTexture.once('loaded', this.onBaseTextureUpdated, this);\n }\n else if (this.noFrame)\n {\n // if there is no frame we should monitor for any base texture changes..\n if (baseTexture.valid)\n {\n this.onBaseTextureUpdated(baseTexture);\n }\n }\n else\n {\n this.frame = frame;\n }\n\n if (this.noFrame)\n {\n baseTexture.on('update', this.onBaseTextureUpdated, this);\n }\n }\n\n if ( EventEmitter ) Texture.__proto__ = EventEmitter;\n Texture.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n Texture.prototype.constructor = Texture;\n\n var prototypeAccessors = { resolution: { configurable: true },frame: { configurable: true },rotate: { configurable: true },width: { configurable: true },height: { configurable: true } };\n\n /**\n * Updates this texture on the gpu.\n *\n * Calls the TextureResource update.\n *\n * If you adjusted `frame` manually, please call `updateUvs()` instead.\n *\n */\n Texture.prototype.update = function update ()\n {\n if (this.baseTexture.resource)\n {\n this.baseTexture.resource.update();\n }\n };\n\n /**\n * Called when the base texture is updated\n *\n * @protected\n * @param {PIXI.BaseTexture} baseTexture - The base texture.\n */\n Texture.prototype.onBaseTextureUpdated = function onBaseTextureUpdated (baseTexture)\n {\n if (this.noFrame)\n {\n if (!this.baseTexture.valid)\n {\n return;\n }\n\n this._frame.width = baseTexture.width;\n this._frame.height = baseTexture.height;\n this.valid = true;\n this.updateUvs();\n }\n else\n {\n // TODO this code looks confusing.. boo to abusing getters and setters!\n // if user gave us frame that has bigger size than resized texture it can be a problem\n this.frame = this._frame;\n }\n\n this.emit('update', this);\n };\n\n /**\n * Destroys this texture\n *\n * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well\n */\n Texture.prototype.destroy = function destroy (destroyBase)\n {\n if (this.baseTexture)\n {\n if (destroyBase)\n {\n var ref = this.baseTexture;\n var resource = ref.resource;\n\n // delete the texture if it exists in the texture cache..\n // this only needs to be removed if the base texture is actually destroyed too..\n if (resource && TextureCache[resource.url])\n {\n Texture.removeFromCache(resource.url);\n }\n\n this.baseTexture.destroy();\n }\n\n this.baseTexture.off('update', this.onBaseTextureUpdated, this);\n\n this.baseTexture = null;\n }\n\n this._frame = null;\n this._uvs = null;\n this.trim = null;\n this.orig = null;\n\n this.valid = false;\n\n Texture.removeFromCache(this);\n this.textureCacheIds = null;\n };\n\n /**\n * Creates a new texture object that acts the same as this one.\n *\n * @return {PIXI.Texture} The new texture\n */\n Texture.prototype.clone = function clone ()\n {\n return new Texture(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor);\n };\n\n /**\n * Updates the internal WebGL UV cache. Use it after you change `frame` or `trim` of the texture.\n * Call it after changing the frame\n */\n Texture.prototype.updateUvs = function updateUvs ()\n {\n if (this._uvs === DEFAULT_UVS)\n {\n this._uvs = new TextureUvs();\n }\n\n this._uvs.set(this._frame, this.baseTexture, this.rotate);\n\n this._updateID++;\n };\n\n /**\n * Helper function that creates a new Texture based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|PIXI.BaseTexture} source\n * Source to create texture from\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Texture} The newly created texture\n */\n Texture.from = function from (source, options)\n {\n if ( options === void 0 ) options = {};\n\n var cacheId = null;\n\n if (typeof source === 'string')\n {\n cacheId = source;\n }\n else\n {\n if (!source._pixiId)\n {\n source._pixiId = \"pixiid_\" + (uid());\n }\n\n cacheId = source._pixiId;\n }\n\n var texture = TextureCache[cacheId];\n\n if (!texture)\n {\n if (!options.resolution)\n {\n options.resolution = getResolutionOfUrl(source);\n }\n\n texture = new Texture(new BaseTexture(source, options));\n texture.baseTexture.cacheId = cacheId;\n\n BaseTexture.addToCache(texture.baseTexture, cacheId);\n Texture.addToCache(texture, cacheId);\n }\n\n // lets assume its a base texture!\n return texture;\n };\n\n /**\n * Create a new Texture with a BufferResource from a Float32Array.\n * RGBA values are floats from 0 to 1.\n * @static\n * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data\n * is provided, a new Float32Array is created.\n * @param {number} width - Width of the resource\n * @param {number} height - Height of the resource\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Texture} The resulting new BaseTexture\n */\n Texture.fromBuffer = function fromBuffer (buffer, width, height, options)\n {\n return new Texture(BaseTexture.fromBuffer(buffer, width, height, options));\n };\n\n /**\n * Create a texture from a source and add to the cache.\n *\n * @static\n * @param {HTMLImageElement|HTMLCanvasElement} source - The input source.\n * @param {String} imageUrl - File name of texture, for cache and resolving resolution.\n * @param {String} [name] - Human readable name for the texture cache. If no name is\n * specified, only `imageUrl` will be used as the cache ID.\n * @return {PIXI.Texture} Output texture\n */\n Texture.fromLoader = function fromLoader (source, imageUrl, name)\n {\n var resource = new ImageResource(source);\n\n resource.url = imageUrl;\n\n var baseTexture = new BaseTexture(resource, {\n scaleMode: settings.SCALE_MODE,\n resolution: getResolutionOfUrl(imageUrl),\n });\n\n var texture = new Texture(baseTexture);\n\n // No name, use imageUrl instead\n if (!name)\n {\n name = imageUrl;\n }\n\n // lets also add the frame to pixi's global cache for 'fromLoader' function\n BaseTexture.addToCache(texture.baseTexture, name);\n Texture.addToCache(texture, name);\n\n // also add references by url if they are different.\n if (name !== imageUrl)\n {\n BaseTexture.addToCache(texture.baseTexture, imageUrl);\n Texture.addToCache(texture, imageUrl);\n }\n\n return texture;\n };\n\n /**\n * Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object.\n *\n * @static\n * @param {PIXI.Texture} texture - The Texture to add to the cache.\n * @param {string} id - The id that the Texture will be stored against.\n */\n Texture.addToCache = function addToCache (texture, id)\n {\n if (id)\n {\n if (texture.textureCacheIds.indexOf(id) === -1)\n {\n texture.textureCacheIds.push(id);\n }\n\n if (TextureCache[id])\n {\n // eslint-disable-next-line no-console\n console.warn((\"Texture added to the cache with an id [\" + id + \"] that already had an entry\"));\n }\n\n TextureCache[id] = texture;\n }\n };\n\n /**\n * Remove a Texture from the global TextureCache.\n *\n * @static\n * @param {string|PIXI.Texture} texture - id of a Texture to be removed, or a Texture instance itself\n * @return {PIXI.Texture|null} The Texture that was removed\n */\n Texture.removeFromCache = function removeFromCache (texture)\n {\n if (typeof texture === 'string')\n {\n var textureFromCache = TextureCache[texture];\n\n if (textureFromCache)\n {\n var index = textureFromCache.textureCacheIds.indexOf(texture);\n\n if (index > -1)\n {\n textureFromCache.textureCacheIds.splice(index, 1);\n }\n\n delete TextureCache[texture];\n\n return textureFromCache;\n }\n }\n else if (texture && texture.textureCacheIds)\n {\n for (var i = 0; i < texture.textureCacheIds.length; ++i)\n {\n // Check that texture matches the one being passed in before deleting it from the cache.\n if (TextureCache[texture.textureCacheIds[i]] === texture)\n {\n delete TextureCache[texture.textureCacheIds[i]];\n }\n }\n\n texture.textureCacheIds.length = 0;\n\n return texture;\n }\n\n return null;\n };\n\n /**\n * Returns resolution of baseTexture\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.resolution.get = function ()\n {\n return this.baseTexture.resolution;\n };\n\n /**\n * The frame specifies the region of the base texture that this texture uses.\n * Please call `updateUvs()` after you change coordinates of `frame` manually.\n *\n * @member {PIXI.Rectangle}\n */\n prototypeAccessors.frame.get = function ()\n {\n return this._frame;\n };\n\n prototypeAccessors.frame.set = function (frame) // eslint-disable-line require-jsdoc\n {\n this._frame = frame;\n\n this.noFrame = false;\n\n var x = frame.x;\n var y = frame.y;\n var width = frame.width;\n var height = frame.height;\n var xNotFit = x + width > this.baseTexture.width;\n var yNotFit = y + height > this.baseTexture.height;\n\n if (xNotFit || yNotFit)\n {\n var relationship = xNotFit && yNotFit ? 'and' : 'or';\n var errorX = \"X: \" + x + \" + \" + width + \" = \" + (x + width) + \" > \" + (this.baseTexture.width);\n var errorY = \"Y: \" + y + \" + \" + height + \" = \" + (y + height) + \" > \" + (this.baseTexture.height);\n\n throw new Error('Texture Error: frame does not fit inside the base Texture dimensions: '\n + errorX + \" \" + relationship + \" \" + errorY);\n }\n\n this.valid = width && height && this.baseTexture.valid;\n\n if (!this.trim && !this.rotate)\n {\n this.orig = frame;\n }\n\n if (this.valid)\n {\n this.updateUvs();\n }\n };\n\n /**\n * Indicates whether the texture is rotated inside the atlas\n * set to 2 to compensate for texture packer rotation\n * set to 6 to compensate for spine packer rotation\n * can be used to rotate or mirror sprites\n * See {@link PIXI.GroupD8} for explanation\n *\n * @member {number}\n */\n prototypeAccessors.rotate.get = function ()\n {\n return this._rotate;\n };\n\n prototypeAccessors.rotate.set = function (rotate) // eslint-disable-line require-jsdoc\n {\n this._rotate = rotate;\n if (this.valid)\n {\n this.updateUvs();\n }\n };\n\n /**\n * The width of the Texture in pixels.\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this.orig.width;\n };\n\n /**\n * The height of the Texture in pixels.\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this.orig.height;\n };\n\n Object.defineProperties( Texture.prototype, prototypeAccessors );\n\n return Texture;\n}(EventEmitter));\n\nfunction createWhiteTexture()\n{\n var canvas = document.createElement('canvas');\n\n canvas.width = 16;\n canvas.height = 16;\n\n var context = canvas.getContext('2d');\n\n context.fillStyle = 'white';\n context.fillRect(0, 0, 16, 16);\n\n return new Texture(new BaseTexture(new CanvasResource(canvas)));\n}\n\nfunction removeAllHandlers(tex)\n{\n tex.destroy = function _emptyDestroy() { /* empty */ };\n tex.on = function _emptyOn() { /* empty */ };\n tex.once = function _emptyOnce() { /* empty */ };\n tex.emit = function _emptyEmit() { /* empty */ };\n}\n\n/**\n * An empty texture, used often to not have to create multiple empty textures.\n * Can not be destroyed.\n *\n * @static\n * @constant\n * @member {PIXI.Texture}\n */\nTexture.EMPTY = new Texture(new BaseTexture());\nremoveAllHandlers(Texture.EMPTY);\nremoveAllHandlers(Texture.EMPTY.baseTexture);\n\n/**\n * A white texture of 16x16 size, used for graphics and other things\n * Can not be destroyed.\n *\n * @static\n * @constant\n * @member {PIXI.Texture}\n */\nTexture.WHITE = createWhiteTexture();\nremoveAllHandlers(Texture.WHITE);\nremoveAllHandlers(Texture.WHITE.baseTexture);\n\n/**\n * A RenderTexture is a special texture that allows any PixiJS display object to be rendered to it.\n *\n * __Hint__: All DisplayObjects (i.e. Sprites) that render to a RenderTexture should be preloaded\n * otherwise black rectangles will be drawn instead.\n *\n * __Hint-2__: The actual memory allocation will happen on first render.\n * You shouldn't create renderTextures each frame just to delete them after, try to reuse them.\n *\n * A RenderTexture takes a snapshot of any Display Object given to its render method. For example:\n *\n * ```js\n * let renderer = PIXI.autoDetectRenderer();\n * let renderTexture = PIXI.RenderTexture.create(800, 600);\n * let sprite = PIXI.Sprite.from(\"spinObj_01.png\");\n *\n * sprite.position.x = 800/2;\n * sprite.position.y = 600/2;\n * sprite.anchor.x = 0.5;\n * sprite.anchor.y = 0.5;\n *\n * renderer.render(sprite, renderTexture);\n * ```\n *\n * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0\n * you can clear the transform\n *\n * ```js\n *\n * sprite.setTransform()\n *\n * let renderTexture = new PIXI.RenderTexture.create(100, 100);\n *\n * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture\n * ```\n *\n * @class\n * @extends PIXI.Texture\n * @memberof PIXI\n */\nvar RenderTexture = /*@__PURE__*/(function (Texture) {\n function RenderTexture(baseRenderTexture, frame)\n {\n // support for legacy..\n var _legacyRenderer = null;\n\n if (!(baseRenderTexture instanceof BaseRenderTexture))\n {\n /* eslint-disable prefer-rest-params, no-console */\n var width = arguments[1];\n var height = arguments[2];\n var scaleMode = arguments[3];\n var resolution = arguments[4];\n\n // we have an old render texture..\n console.warn((\"Please use RenderTexture.create(\" + width + \", \" + height + \") instead of the ctor directly.\"));\n _legacyRenderer = arguments[0];\n /* eslint-enable prefer-rest-params, no-console */\n\n frame = null;\n baseRenderTexture = new BaseRenderTexture({\n width: width,\n height: height,\n scaleMode: scaleMode,\n resolution: resolution,\n });\n }\n\n /**\n * The base texture object that this texture uses\n *\n * @member {PIXI.BaseTexture}\n */\n Texture.call(this, baseRenderTexture, frame);\n\n this.legacyRenderer = _legacyRenderer;\n\n /**\n * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered.\n *\n * @member {boolean}\n */\n this.valid = true;\n\n /**\n * Stores `sourceFrame` when this texture is inside current filter stack.\n * You can read it inside filters.\n *\n * @readonly\n * @member {PIXI.Rectangle}\n */\n this.filterFrame = null;\n\n /**\n * The key for pooled texture of FilterSystem\n * @protected\n * @member {string}\n */\n this.filterPoolKey = null;\n\n this.updateUvs();\n }\n\n if ( Texture ) RenderTexture.__proto__ = Texture;\n RenderTexture.prototype = Object.create( Texture && Texture.prototype );\n RenderTexture.prototype.constructor = RenderTexture;\n\n /**\n * Resizes the RenderTexture.\n *\n * @param {number} width - The width to resize to.\n * @param {number} height - The height to resize to.\n * @param {boolean} [resizeBaseTexture=true] - Should the baseTexture.width and height values be resized as well?\n */\n RenderTexture.prototype.resize = function resize (width, height, resizeBaseTexture)\n {\n if ( resizeBaseTexture === void 0 ) resizeBaseTexture = true;\n\n width = Math.ceil(width);\n height = Math.ceil(height);\n\n // TODO - could be not required..\n this.valid = (width > 0 && height > 0);\n\n this._frame.width = this.orig.width = width;\n this._frame.height = this.orig.height = height;\n\n if (resizeBaseTexture)\n {\n this.baseTexture.resize(width, height);\n }\n\n this.updateUvs();\n };\n\n /**\n * Changes the resolution of baseTexture, but does not change framebuffer size.\n *\n * @param {number} resolution - The new resolution to apply to RenderTexture\n */\n RenderTexture.prototype.setResolution = function setResolution (resolution)\n {\n var ref = this;\n var baseTexture = ref.baseTexture;\n\n if (baseTexture.resolution === resolution)\n {\n return;\n }\n\n baseTexture.setResolution(resolution);\n this.resize(baseTexture.width, baseTexture.height, false);\n };\n\n /**\n * A short hand way of creating a render texture.\n *\n * @param {object} [options] - Options\n * @param {number} [options.width=100] - The width of the render texture\n * @param {number} [options.height=100] - The height of the render texture\n * @param {number} [options.scaleMode=PIXI.settings.SCALE_MODE] - See {@link PIXI.SCALE_MODES} for possible values\n * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the texture being generated\n * @return {PIXI.RenderTexture} The new render texture\n */\n RenderTexture.create = function create (options)\n {\n // fallback, old-style: create(width, height, scaleMode, resolution)\n if (typeof options === 'number')\n {\n /* eslint-disable prefer-rest-params */\n options = {\n width: options,\n height: arguments[1],\n scaleMode: arguments[2],\n resolution: arguments[3],\n };\n /* eslint-enable prefer-rest-params */\n }\n\n return new RenderTexture(new BaseRenderTexture(options));\n };\n\n return RenderTexture;\n}(Texture));\n\n/**\n * Experimental!\n *\n * Texture pool, used by FilterSystem and plugins\n * Stores collection of temporary pow2 or screen-sized renderTextures\n *\n * If you use custom RenderTexturePool for your filters, you can use methods\n * `getFilterTexture` and `returnFilterTexture` same as in\n *\n * @class\n * @memberof PIXI\n */\nvar RenderTexturePool = function RenderTexturePool(textureOptions)\n{\n this.texturePool = {};\n this.textureOptions = textureOptions || {};\n /**\n * Allow renderTextures of the same size as screen, not just pow2\n *\n * Automatically sets to true after `setScreenSize`\n *\n * @member {boolean}\n * @default false\n */\n this.enableFullScreen = false;\n\n this._pixelsWidth = 0;\n this._pixelsHeight = 0;\n};\n\n/**\n * creates of texture with params that were specified in pool constructor\n *\n * @param {number} realWidth width of texture in pixels\n * @param {number} realHeight height of texture in pixels\n * @returns {RenderTexture}\n */\nRenderTexturePool.prototype.createTexture = function createTexture (realWidth, realHeight)\n{\n var baseRenderTexture = new BaseRenderTexture(Object.assign({\n width: realWidth,\n height: realHeight,\n resolution: 1,\n }, this.textureOptions));\n\n return new RenderTexture(baseRenderTexture);\n};\n\n/**\n * Gets a Power-of-Two render texture or fullScreen texture\n *\n * @protected\n * @param {number} minWidth - The minimum width of the render texture in real pixels.\n * @param {number} minHeight - The minimum height of the render texture in real pixels.\n * @param {number} [resolution=1] - The resolution of the render texture.\n * @return {PIXI.RenderTexture} The new render texture.\n */\nRenderTexturePool.prototype.getOptimalTexture = function getOptimalTexture (minWidth, minHeight, resolution)\n{\n if ( resolution === void 0 ) resolution = 1;\n\n var key = RenderTexturePool.SCREEN_KEY;\n\n minWidth *= resolution;\n minHeight *= resolution;\n\n if (!this.enableFullScreen || minWidth !== this._pixelsWidth || minHeight !== this._pixelsHeight)\n {\n minWidth = nextPow2(minWidth);\n minHeight = nextPow2(minHeight);\n key = ((minWidth & 0xFFFF) << 16) | (minHeight & 0xFFFF);\n }\n\n if (!this.texturePool[key])\n {\n this.texturePool[key] = [];\n }\n\n var renderTexture = this.texturePool[key].pop();\n\n if (!renderTexture)\n {\n renderTexture = this.createTexture(minWidth, minHeight);\n }\n\n renderTexture.filterPoolKey = key;\n renderTexture.setResolution(resolution);\n\n return renderTexture;\n};\n\n/**\n * Gets extra texture of the same size as input renderTexture\n *\n * `getFilterTexture(input, 0.5)` or `getFilterTexture(0.5, input)`\n *\n * @param {PIXI.RenderTexture} input renderTexture from which size and resolution will be copied\n * @param {number} [resolution] override resolution of the renderTexture\n * It overrides, it does not multiply\n * @returns {PIXI.RenderTexture}\n */\nRenderTexturePool.prototype.getFilterTexture = function getFilterTexture (input, resolution)\n{\n var filterTexture = this.getOptimalTexture(input.width, input.height, resolution || input.resolution);\n\n filterTexture.filterFrame = input.filterFrame;\n\n return filterTexture;\n};\n\n/**\n * Place a render texture back into the pool.\n * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free\n */\nRenderTexturePool.prototype.returnTexture = function returnTexture (renderTexture)\n{\n var key = renderTexture.filterPoolKey;\n\n renderTexture.filterFrame = null;\n this.texturePool[key].push(renderTexture);\n};\n\n/**\n * Alias for returnTexture, to be compliant with FilterSystem interface\n * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free\n */\nRenderTexturePool.prototype.returnFilterTexture = function returnFilterTexture (renderTexture)\n{\n this.returnTexture(renderTexture);\n};\n\n/**\n * Clears the pool\n *\n * @param {boolean} [destroyTextures=true] destroy all stored textures\n */\nRenderTexturePool.prototype.clear = function clear (destroyTextures)\n{\n destroyTextures = destroyTextures !== false;\n if (destroyTextures)\n {\n for (var i in this.texturePool)\n {\n var textures = this.texturePool[i];\n\n if (textures)\n {\n for (var j = 0; j < textures.length; j++)\n {\n textures[j].destroy(true);\n }\n }\n }\n }\n\n this.texturePool = {};\n};\n\n/**\n * If screen size was changed, drops all screen-sized textures,\n * sets new screen size, sets `enableFullScreen` to true\n *\n * Size is measured in pixels, `renderer.view` can be passed here, not `renderer.screen`\n *\n * @param {PIXI.ISize} size - Initial size of screen\n */\nRenderTexturePool.prototype.setScreenSize = function setScreenSize (size)\n{\n if (size.width === this._pixelsWidth\n && size.height === this._pixelsHeight)\n {\n return;\n }\n\n var screenKey = RenderTexturePool.SCREEN_KEY;\n var textures = this.texturePool[screenKey];\n\n this.enableFullScreen = size.width > 0 && size.height > 0;\n\n if (textures)\n {\n for (var j = 0; j < textures.length; j++)\n {\n textures[j].destroy(true);\n }\n }\n this.texturePool[screenKey] = [];\n\n this._pixelsWidth = size.width;\n this._pixelsHeight = size.height;\n};\n\n/**\n * Key that is used to store fullscreen renderTextures in a pool\n *\n * @static\n * @const {string}\n */\nRenderTexturePool.SCREEN_KEY = 'screen';\n\n/* eslint-disable max-len */\n\n/**\n * Holds the information for a single attribute structure required to render geometry.\n *\n * This does not contain the actual data, but instead has a buffer id that maps to a {@link PIXI.Buffer}\n * This can include anything from positions, uvs, normals, colors etc.\n *\n * @class\n * @memberof PIXI\n */\nvar Attribute = function Attribute(buffer, size, normalized, type, stride, start, instance)\n{\n if ( normalized === void 0 ) normalized = false;\n if ( type === void 0 ) type = 5126;\n\n this.buffer = buffer;\n this.size = size;\n this.normalized = normalized;\n this.type = type;\n this.stride = stride;\n this.start = start;\n this.instance = instance;\n};\n\n/**\n * Destroys the Attribute.\n */\nAttribute.prototype.destroy = function destroy ()\n{\n this.buffer = null;\n};\n\n/**\n * Helper function that creates an Attribute based on the information provided\n *\n * @static\n * @param {string} buffer the id of the buffer that this attribute will look for\n * @param {Number} [size=2] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2\n * @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data)\n * @param {Number} [start=0] How far into the array to start reading values (used for interleaving data)\n * @param {Boolean} [normalized=false] should the data be normalized.\n *\n * @returns {PIXI.Attribute} A new {@link PIXI.Attribute} based on the information provided\n */\nAttribute.from = function from (buffer, size, normalized, type, stride)\n{\n return new Attribute(buffer, size, normalized, type, stride);\n};\n\nvar UID = 0;\n/* eslint-disable max-len */\n\n/**\n * A wrapper for data so that it can be used and uploaded by WebGL\n *\n * @class\n * @memberof PIXI\n */\nvar Buffer = function Buffer(data, _static, index)\n{\n if ( _static === void 0 ) _static = true;\n if ( index === void 0 ) index = false;\n\n /**\n * The data in the buffer, as a typed array\n *\n * @member {ArrayBuffer| SharedArrayBuffer|ArrayBufferView}\n */\n this.data = data || new Float32Array(1);\n\n /**\n * A map of renderer IDs to webgl buffer\n *\n * @private\n * @member {object}\n */\n this._glBuffers = {};\n\n this._updateID = 0;\n\n this.index = index;\n\n this.static = _static;\n\n this.id = UID++;\n\n this.disposeRunner = new Runner('disposeBuffer', 2);\n};\n\n// TODO could explore flagging only a partial upload?\n/**\n * flags this buffer as requiring an upload to the GPU\n * @param {ArrayBuffer|SharedArrayBuffer|ArrayBufferView} [data] the data to update in the buffer.\n */\nBuffer.prototype.update = function update (data)\n{\n this.data = data || this.data;\n this._updateID++;\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nBuffer.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\n/**\n * Destroys the buffer\n */\nBuffer.prototype.destroy = function destroy ()\n{\n this.dispose();\n\n this.data = null;\n};\n\n/**\n * Helper function that creates a buffer based on an array or TypedArray\n *\n * @static\n * @param {ArrayBufferView | number[]} data the TypedArray that the buffer will store. If this is a regular Array it will be converted to a Float32Array.\n * @return {PIXI.Buffer} A new Buffer based on the data provided.\n */\nBuffer.from = function from (data)\n{\n if (data instanceof Array)\n {\n data = new Float32Array(data);\n }\n\n return new Buffer(data);\n};\n\nfunction getBufferType(array)\n{\n if (array.BYTES_PER_ELEMENT === 4)\n {\n if (array instanceof Float32Array)\n {\n return 'Float32Array';\n }\n else if (array instanceof Uint32Array)\n {\n return 'Uint32Array';\n }\n\n return 'Int32Array';\n }\n else if (array.BYTES_PER_ELEMENT === 2)\n {\n if (array instanceof Uint16Array)\n {\n return 'Uint16Array';\n }\n }\n else if (array.BYTES_PER_ELEMENT === 1)\n {\n if (array instanceof Uint8Array)\n {\n return 'Uint8Array';\n }\n }\n\n // TODO map out the rest of the array elements!\n return null;\n}\n\n/* eslint-disable object-shorthand */\nvar map = {\n Float32Array: Float32Array,\n Uint32Array: Uint32Array,\n Int32Array: Int32Array,\n Uint8Array: Uint8Array,\n};\n\nfunction interleaveTypedArrays(arrays, sizes)\n{\n var outSize = 0;\n var stride = 0;\n var views = {};\n\n for (var i = 0; i < arrays.length; i++)\n {\n stride += sizes[i];\n outSize += arrays[i].length;\n }\n\n var buffer = new ArrayBuffer(outSize * 4);\n\n var out = null;\n var littleOffset = 0;\n\n for (var i$1 = 0; i$1 < arrays.length; i$1++)\n {\n var size = sizes[i$1];\n var array = arrays[i$1];\n\n var type = getBufferType(array);\n\n if (!views[type])\n {\n views[type] = new map[type](buffer);\n }\n\n out = views[type];\n\n for (var j = 0; j < array.length; j++)\n {\n var indexStart = ((j / size | 0) * stride) + littleOffset;\n var index = j % size;\n\n out[indexStart + index] = array[j];\n }\n\n littleOffset += size;\n }\n\n return new Float32Array(buffer);\n}\n\nvar byteSizeMap = { 5126: 4, 5123: 2, 5121: 1 };\nvar UID$1 = 0;\n\n/* eslint-disable object-shorthand */\nvar map$1 = {\n Float32Array: Float32Array,\n Uint32Array: Uint32Array,\n Int32Array: Int32Array,\n Uint8Array: Uint8Array,\n Uint16Array: Uint16Array,\n};\n\n/* eslint-disable max-len */\n\n/**\n * The Geometry represents a model. It consists of two components:\n * - GeometryStyle - The structure of the model such as the attributes layout\n * - GeometryData - the data of the model - this consists of buffers.\n * This can include anything from positions, uvs, normals, colors etc.\n *\n * Geometry can be defined without passing in a style or data if required (thats how I prefer!)\n *\n * ```js\n * let geometry = new PIXI.Geometry();\n *\n * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2);\n * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1],2)\n * geometry.addIndex([0,1,2,1,3,2])\n *\n * ```\n * @class\n * @memberof PIXI\n */\nvar Geometry = function Geometry(buffers, attributes)\n{\n if ( buffers === void 0 ) buffers = [];\n if ( attributes === void 0 ) attributes = {};\n\n this.buffers = buffers;\n\n this.indexBuffer = null;\n\n this.attributes = attributes;\n\n /**\n * A map of renderer IDs to webgl VAOs\n *\n * @protected\n * @type {object}\n */\n this.glVertexArrayObjects = {};\n\n this.id = UID$1++;\n\n this.instanced = false;\n\n /**\n * Number of instances in this geometry, pass it to `GeometrySystem.draw()`\n * @member {number}\n * @default 1\n */\n this.instanceCount = 1;\n\n this.disposeRunner = new Runner('disposeGeometry', 2);\n\n /**\n * Count of existing (not destroyed) meshes that reference this geometry\n * @member {number}\n */\n this.refCount = 0;\n};\n\n/**\n*\n* Adds an attribute to the geometry\n*\n* @param {String} id - the name of the attribute (matching up to a shader)\n* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it.\n* @param {Number} [size=0] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2\n* @param {Boolean} [normalized=false] should the data be normalized.\n* @param {Number} [type=PIXI.TYPES.FLOAT] what type of number is the attribute. Check {PIXI.TYPES} to see the ones available\n* @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data)\n* @param {Number} [start=0] How far into the array to start reading values (used for interleaving data)\n*\n* @return {PIXI.Geometry} returns self, useful for chaining.\n*/\nGeometry.prototype.addAttribute = function addAttribute (id, buffer, size, normalized, type, stride, start, instance)\n{\n if ( normalized === void 0 ) normalized = false;\n if ( instance === void 0 ) instance = false;\n\n if (!buffer)\n {\n throw new Error('You must pass a buffer when creating an attribute');\n }\n\n // check if this is a buffer!\n if (!buffer.data)\n {\n // its an array!\n if (buffer instanceof Array)\n {\n buffer = new Float32Array(buffer);\n }\n\n buffer = new Buffer(buffer);\n }\n\n var ids = id.split('|');\n\n if (ids.length > 1)\n {\n for (var i = 0; i < ids.length; i++)\n {\n this.addAttribute(ids[i], buffer, size, normalized, type);\n }\n\n return this;\n }\n\n var bufferIndex = this.buffers.indexOf(buffer);\n\n if (bufferIndex === -1)\n {\n this.buffers.push(buffer);\n bufferIndex = this.buffers.length - 1;\n }\n\n this.attributes[id] = new Attribute(bufferIndex, size, normalized, type, stride, start, instance);\n\n // assuming that if there is instanced data then this will be drawn with instancing!\n this.instanced = this.instanced || instance;\n\n return this;\n};\n\n/**\n * returns the requested attribute\n *\n * @param {String} id the name of the attribute required\n * @return {PIXI.Attribute} the attribute requested.\n */\nGeometry.prototype.getAttribute = function getAttribute (id)\n{\n return this.attributes[id];\n};\n\n/**\n * returns the requested buffer\n *\n * @param {String} id the name of the buffer required\n * @return {PIXI.Buffer} the buffer requested.\n */\nGeometry.prototype.getBuffer = function getBuffer (id)\n{\n return this.buffers[this.getAttribute(id).buffer];\n};\n\n/**\n*\n* Adds an index buffer to the geometry\n* The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer.\n*\n* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it.\n* @return {PIXI.Geometry} returns self, useful for chaining.\n*/\nGeometry.prototype.addIndex = function addIndex (buffer)\n{\n if (!buffer.data)\n {\n // its an array!\n if (buffer instanceof Array)\n {\n buffer = new Uint16Array(buffer);\n }\n\n buffer = new Buffer(buffer);\n }\n\n buffer.index = true;\n this.indexBuffer = buffer;\n\n if (this.buffers.indexOf(buffer) === -1)\n {\n this.buffers.push(buffer);\n }\n\n return this;\n};\n\n/**\n * returns the index buffer\n *\n * @return {PIXI.Buffer} the index buffer.\n */\nGeometry.prototype.getIndex = function getIndex ()\n{\n return this.indexBuffer;\n};\n\n/**\n * this function modifies the structure so that all current attributes become interleaved into a single buffer\n * This can be useful if your model remains static as it offers a little performance boost\n *\n * @return {PIXI.Geometry} returns self, useful for chaining.\n */\nGeometry.prototype.interleave = function interleave ()\n{\n // a simple check to see if buffers are already interleaved..\n if (this.buffers.length === 1 || (this.buffers.length === 2 && this.indexBuffer)) { return this; }\n\n // assume already that no buffers are interleaved\n var arrays = [];\n var sizes = [];\n var interleavedBuffer = new Buffer();\n var i;\n\n for (i in this.attributes)\n {\n var attribute = this.attributes[i];\n\n var buffer = this.buffers[attribute.buffer];\n\n arrays.push(buffer.data);\n\n sizes.push((attribute.size * byteSizeMap[attribute.type]) / 4);\n\n attribute.buffer = 0;\n }\n\n interleavedBuffer.data = interleaveTypedArrays(arrays, sizes);\n\n for (i = 0; i < this.buffers.length; i++)\n {\n if (this.buffers[i] !== this.indexBuffer)\n {\n this.buffers[i].destroy();\n }\n }\n\n this.buffers = [interleavedBuffer];\n\n if (this.indexBuffer)\n {\n this.buffers.push(this.indexBuffer);\n }\n\n return this;\n};\n\nGeometry.prototype.getSize = function getSize ()\n{\n for (var i in this.attributes)\n {\n var attribute = this.attributes[i];\n var buffer = this.buffers[attribute.buffer];\n\n return buffer.data.length / ((attribute.stride / 4) || attribute.size);\n }\n\n return 0;\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nGeometry.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\n/**\n * Destroys the geometry.\n */\nGeometry.prototype.destroy = function destroy ()\n{\n this.dispose();\n\n this.buffers = null;\n this.indexBuffer.destroy();\n\n this.attributes = null;\n};\n\n/**\n * returns a clone of the geometry\n *\n * @returns {PIXI.Geometry} a new clone of this geometry\n */\nGeometry.prototype.clone = function clone ()\n{\n var geometry = new Geometry();\n\n for (var i = 0; i < this.buffers.length; i++)\n {\n geometry.buffers[i] = new Buffer(this.buffers[i].data.slice());\n }\n\n for (var i$1 in this.attributes)\n {\n var attrib = this.attributes[i$1];\n\n geometry.attributes[i$1] = new Attribute(\n attrib.buffer,\n attrib.size,\n attrib.normalized,\n attrib.type,\n attrib.stride,\n attrib.start,\n attrib.instance\n );\n }\n\n if (this.indexBuffer)\n {\n geometry.indexBuffer = geometry.buffers[this.buffers.indexOf(this.indexBuffer)];\n geometry.indexBuffer.index = true;\n }\n\n return geometry;\n};\n\n/**\n * merges an array of geometries into a new single one\n * geometry attribute styles must match for this operation to work\n *\n * @param {PIXI.Geometry[]} geometries array of geometries to merge\n * @returns {PIXI.Geometry} shiny new geometry!\n */\nGeometry.merge = function merge (geometries)\n{\n // todo add a geometry check!\n // also a size check.. cant be too big!]\n\n var geometryOut = new Geometry();\n\n var arrays = [];\n var sizes = [];\n var offsets = [];\n\n var geometry;\n\n // pass one.. get sizes..\n for (var i = 0; i < geometries.length; i++)\n {\n geometry = geometries[i];\n\n for (var j = 0; j < geometry.buffers.length; j++)\n {\n sizes[j] = sizes[j] || 0;\n sizes[j] += geometry.buffers[j].data.length;\n offsets[j] = 0;\n }\n }\n\n // build the correct size arrays..\n for (var i$1 = 0; i$1 < geometry.buffers.length; i$1++)\n {\n // TODO types!\n arrays[i$1] = new map$1[getBufferType(geometry.buffers[i$1].data)](sizes[i$1]);\n geometryOut.buffers[i$1] = new Buffer(arrays[i$1]);\n }\n\n // pass to set data..\n for (var i$2 = 0; i$2 < geometries.length; i$2++)\n {\n geometry = geometries[i$2];\n\n for (var j$1 = 0; j$1 < geometry.buffers.length; j$1++)\n {\n arrays[j$1].set(geometry.buffers[j$1].data, offsets[j$1]);\n offsets[j$1] += geometry.buffers[j$1].data.length;\n }\n }\n\n geometryOut.attributes = geometry.attributes;\n\n if (geometry.indexBuffer)\n {\n geometryOut.indexBuffer = geometryOut.buffers[geometry.buffers.indexOf(geometry.indexBuffer)];\n geometryOut.indexBuffer.index = true;\n\n var offset = 0;\n var stride = 0;\n var offset2 = 0;\n var bufferIndexToCount = 0;\n\n // get a buffer\n for (var i$3 = 0; i$3 < geometry.buffers.length; i$3++)\n {\n if (geometry.buffers[i$3] !== geometry.indexBuffer)\n {\n bufferIndexToCount = i$3;\n break;\n }\n }\n\n // figure out the stride of one buffer..\n for (var i$4 in geometry.attributes)\n {\n var attribute = geometry.attributes[i$4];\n\n if ((attribute.buffer | 0) === bufferIndexToCount)\n {\n stride += ((attribute.size * byteSizeMap[attribute.type]) / 4);\n }\n }\n\n // time to off set all indexes..\n for (var i$5 = 0; i$5 < geometries.length; i$5++)\n {\n var indexBufferData = geometries[i$5].indexBuffer.data;\n\n for (var j$2 = 0; j$2 < indexBufferData.length; j$2++)\n {\n geometryOut.indexBuffer.data[j$2 + offset2] += offset;\n }\n\n offset += geometry.buffers[bufferIndexToCount].data.length / (stride);\n offset2 += indexBufferData.length;\n }\n }\n\n return geometryOut;\n};\n\n/**\n * Helper class to create a quad\n *\n * @class\n * @memberof PIXI\n */\nvar Quad = /*@__PURE__*/(function (Geometry) {\n function Quad()\n {\n Geometry.call(this);\n\n this.addAttribute('aVertexPosition', [\n 0, 0,\n 1, 0,\n 1, 1,\n 0, 1 ])\n .addIndex([0, 1, 3, 2]);\n }\n\n if ( Geometry ) Quad.__proto__ = Geometry;\n Quad.prototype = Object.create( Geometry && Geometry.prototype );\n Quad.prototype.constructor = Quad;\n\n return Quad;\n}(Geometry));\n\n/**\n * Helper class to create a quad with uvs like in v4\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.Geometry\n */\nvar QuadUv = /*@__PURE__*/(function (Geometry) {\n function QuadUv()\n {\n Geometry.call(this);\n\n /**\n * An array of vertices\n *\n * @member {Float32Array}\n */\n this.vertices = new Float32Array([\n -1, -1,\n 1, -1,\n 1, 1,\n -1, 1 ]);\n\n /**\n * The Uvs of the quad\n *\n * @member {Float32Array}\n */\n this.uvs = new Float32Array([\n 0, 0,\n 1, 0,\n 1, 1,\n 0, 1 ]);\n\n this.vertexBuffer = new Buffer(this.vertices);\n this.uvBuffer = new Buffer(this.uvs);\n\n this.addAttribute('aVertexPosition', this.vertexBuffer)\n .addAttribute('aTextureCoord', this.uvBuffer)\n .addIndex([0, 1, 2, 0, 2, 3]);\n }\n\n if ( Geometry ) QuadUv.__proto__ = Geometry;\n QuadUv.prototype = Object.create( Geometry && Geometry.prototype );\n QuadUv.prototype.constructor = QuadUv;\n\n /**\n * Maps two Rectangle to the quad.\n *\n * @param {PIXI.Rectangle} targetTextureFrame - the first rectangle\n * @param {PIXI.Rectangle} destinationFrame - the second rectangle\n * @return {PIXI.Quad} Returns itself.\n */\n QuadUv.prototype.map = function map (targetTextureFrame, destinationFrame)\n {\n var x = 0; // destinationFrame.x / targetTextureFrame.width;\n var y = 0; // destinationFrame.y / targetTextureFrame.height;\n\n this.uvs[0] = x;\n this.uvs[1] = y;\n\n this.uvs[2] = x + (destinationFrame.width / targetTextureFrame.width);\n this.uvs[3] = y;\n\n this.uvs[4] = x + (destinationFrame.width / targetTextureFrame.width);\n this.uvs[5] = y + (destinationFrame.height / targetTextureFrame.height);\n\n this.uvs[6] = x;\n this.uvs[7] = y + (destinationFrame.height / targetTextureFrame.height);\n\n x = destinationFrame.x;\n y = destinationFrame.y;\n\n this.vertices[0] = x;\n this.vertices[1] = y;\n\n this.vertices[2] = x + destinationFrame.width;\n this.vertices[3] = y;\n\n this.vertices[4] = x + destinationFrame.width;\n this.vertices[5] = y + destinationFrame.height;\n\n this.vertices[6] = x;\n this.vertices[7] = y + destinationFrame.height;\n\n this.invalidate();\n\n return this;\n };\n\n /**\n * legacy upload method, just marks buffers dirty\n * @returns {PIXI.QuadUv} Returns itself.\n */\n QuadUv.prototype.invalidate = function invalidate ()\n {\n this.vertexBuffer._updateID++;\n this.uvBuffer._updateID++;\n\n return this;\n };\n\n return QuadUv;\n}(Geometry));\n\nvar UID$2 = 0;\n\n/**\n * Uniform group holds uniform map and some ID's for work\n *\n * @class\n * @memberof PIXI\n */\nvar UniformGroup = function UniformGroup(uniforms, _static)\n{\n /**\n * uniform values\n * @member {object}\n * @readonly\n */\n this.uniforms = uniforms;\n\n /**\n * Its a group and not a single uniforms\n * @member {boolean}\n * @readonly\n * @default true\n */\n this.group = true;\n\n // lets generate this when the shader ?\n this.syncUniforms = {};\n\n /**\n * dirty version\n * @protected\n * @member {number}\n */\n this.dirtyId = 0;\n\n /**\n * unique id\n * @protected\n * @member {number}\n */\n this.id = UID$2++;\n\n /**\n * Uniforms wont be changed after creation\n * @member {boolean}\n */\n this.static = !!_static;\n};\n\nUniformGroup.prototype.update = function update ()\n{\n this.dirtyId++;\n};\n\nUniformGroup.prototype.add = function add (name, uniforms, _static)\n{\n this.uniforms[name] = new UniformGroup(uniforms, _static);\n};\n\nUniformGroup.from = function from (uniforms, _static)\n{\n return new UniformGroup(uniforms, _static);\n};\n\n/**\n * System plugin to the renderer to manage filter states.\n *\n * @class\n * @private\n */\nvar FilterState = function FilterState()\n{\n this.renderTexture = null;\n\n /**\n * Target of the filters\n * We store for case when custom filter wants to know the element it was applied on\n * @member {PIXI.DisplayObject}\n * @private\n */\n this.target = null;\n\n /**\n * Compatibility with PixiJS v4 filters\n * @member {boolean}\n * @default false\n * @private\n */\n this.legacy = false;\n\n /**\n * Resolution of filters\n * @member {number}\n * @default 1\n * @private\n */\n this.resolution = 1;\n\n // next three fields are created only for root\n // re-assigned for everything else\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @private\n */\n this.sourceFrame = new Rectangle();\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @private\n */\n this.destinationFrame = new Rectangle();\n\n /**\n * Collection of filters\n * @member {PIXI.Filter[]}\n * @private\n */\n this.filters = [];\n};\n\n/**\n * clears the state\n * @private\n */\nFilterState.prototype.clear = function clear ()\n{\n this.target = null;\n this.filters = null;\n this.renderTexture = null;\n};\n\n/**\n * System plugin to the renderer to manage the filters.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar FilterSystem = /*@__PURE__*/(function (System) {\n function FilterSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * List of filters for the FilterSystem\n * @member {Object[]}\n * @readonly\n */\n this.defaultFilterStack = [{}];\n\n /**\n * stores a bunch of PO2 textures used for filtering\n * @member {Object}\n */\n this.texturePool = new RenderTexturePool();\n\n this.texturePool.setScreenSize(renderer.view);\n\n /**\n * a pool for storing filter states, save us creating new ones each tick\n * @member {Object[]}\n */\n this.statePool = [];\n\n /**\n * A very simple geometry used when drawing a filter effect to the screen\n * @member {PIXI.Quad}\n */\n this.quad = new Quad();\n\n /**\n * Quad UVs\n * @member {PIXI.QuadUv}\n */\n this.quadUv = new QuadUv();\n\n /**\n * Temporary rect for maths\n * @type {PIXI.Rectangle}\n */\n this.tempRect = new Rectangle();\n\n /**\n * Active state\n * @member {object}\n */\n this.activeState = {};\n\n /**\n * This uniform group is attached to filter uniforms when used\n * @member {PIXI.UniformGroup}\n * @property {PIXI.Rectangle} outputFrame\n * @property {Float32Array} inputSize\n * @property {Float32Array} inputPixel\n * @property {Float32Array} inputClamp\n * @property {Number} resolution\n * @property {Float32Array} filterArea\n * @property {Fload32Array} filterClamp\n */\n this.globalUniforms = new UniformGroup({\n outputFrame: this.tempRect,\n inputSize: new Float32Array(4),\n inputPixel: new Float32Array(4),\n inputClamp: new Float32Array(4),\n resolution: 1,\n\n // legacy variables\n filterArea: new Float32Array(4),\n filterClamp: new Float32Array(4),\n }, true);\n\n this._pixelsWidth = renderer.view.width;\n this._pixelsHeight = renderer.view.height;\n }\n\n if ( System ) FilterSystem.__proto__ = System;\n FilterSystem.prototype = Object.create( System && System.prototype );\n FilterSystem.prototype.constructor = FilterSystem;\n\n /**\n * Adds a new filter to the System.\n *\n * @param {PIXI.DisplayObject} target - The target of the filter to render.\n * @param {PIXI.Filter[]} filters - The filters to apply.\n */\n FilterSystem.prototype.push = function push (target, filters)\n {\n var renderer = this.renderer;\n var filterStack = this.defaultFilterStack;\n var state = this.statePool.pop() || new FilterState();\n\n var resolution = filters[0].resolution;\n var padding = filters[0].padding;\n var autoFit = filters[0].autoFit;\n var legacy = filters[0].legacy;\n\n for (var i = 1; i < filters.length; i++)\n {\n var filter = filters[i];\n\n // lets use the lowest resolution..\n resolution = Math.min(resolution, filter.resolution);\n // and the largest amount of padding!\n padding = Math.max(padding, filter.padding);\n // only auto fit if all filters are autofit\n autoFit = autoFit || filter.autoFit;\n\n legacy = legacy || filter.legacy;\n }\n\n if (filterStack.length === 1)\n {\n this.defaultFilterStack[0].renderTexture = renderer.renderTexture.current;\n }\n\n filterStack.push(state);\n\n state.resolution = resolution;\n\n state.legacy = legacy;\n\n state.target = target;\n\n state.sourceFrame.copyFrom(target.filterArea || target.getBounds(true));\n\n state.sourceFrame.pad(padding);\n if (autoFit)\n {\n state.sourceFrame.fit(this.renderer.renderTexture.sourceFrame);\n }\n\n // round to whole number based on resolution\n state.sourceFrame.ceil(resolution);\n\n state.renderTexture = this.getOptimalFilterTexture(state.sourceFrame.width, state.sourceFrame.height, resolution);\n state.filters = filters;\n\n state.destinationFrame.width = state.renderTexture.width;\n state.destinationFrame.height = state.renderTexture.height;\n\n state.renderTexture.filterFrame = state.sourceFrame;\n\n renderer.renderTexture.bind(state.renderTexture, state.sourceFrame);// /, state.destinationFrame);\n renderer.renderTexture.clear();\n };\n\n /**\n * Pops off the filter and applies it.\n *\n */\n FilterSystem.prototype.pop = function pop ()\n {\n var filterStack = this.defaultFilterStack;\n var state = filterStack.pop();\n var filters = state.filters;\n\n this.activeState = state;\n\n var globalUniforms = this.globalUniforms.uniforms;\n\n globalUniforms.outputFrame = state.sourceFrame;\n globalUniforms.resolution = state.resolution;\n\n var inputSize = globalUniforms.inputSize;\n var inputPixel = globalUniforms.inputPixel;\n var inputClamp = globalUniforms.inputClamp;\n\n inputSize[0] = state.destinationFrame.width;\n inputSize[1] = state.destinationFrame.height;\n inputSize[2] = 1.0 / inputSize[0];\n inputSize[3] = 1.0 / inputSize[1];\n\n inputPixel[0] = inputSize[0] * state.resolution;\n inputPixel[1] = inputSize[1] * state.resolution;\n inputPixel[2] = 1.0 / inputPixel[0];\n inputPixel[3] = 1.0 / inputPixel[1];\n\n inputClamp[0] = 0.5 * inputPixel[2];\n inputClamp[1] = 0.5 * inputPixel[3];\n inputClamp[2] = (state.sourceFrame.width * inputSize[2]) - (0.5 * inputPixel[2]);\n inputClamp[3] = (state.sourceFrame.height * inputSize[3]) - (0.5 * inputPixel[3]);\n\n // only update the rect if its legacy..\n if (state.legacy)\n {\n var filterArea = globalUniforms.filterArea;\n\n filterArea[0] = state.destinationFrame.width;\n filterArea[1] = state.destinationFrame.height;\n filterArea[2] = state.sourceFrame.x;\n filterArea[3] = state.sourceFrame.y;\n\n globalUniforms.filterClamp = globalUniforms.inputClamp;\n }\n\n this.globalUniforms.update();\n\n var lastState = filterStack[filterStack.length - 1];\n\n if (filters.length === 1)\n {\n filters[0].apply(this, state.renderTexture, lastState.renderTexture, false, state);\n\n this.returnFilterTexture(state.renderTexture);\n }\n else\n {\n var flip = state.renderTexture;\n var flop = this.getOptimalFilterTexture(\n flip.width,\n flip.height,\n state.resolution\n );\n\n flop.filterFrame = flip.filterFrame;\n\n var i = 0;\n\n for (i = 0; i < filters.length - 1; ++i)\n {\n filters[i].apply(this, flip, flop, true, state);\n\n var t = flip;\n\n flip = flop;\n flop = t;\n }\n\n filters[i].apply(this, flip, lastState.renderTexture, false, state);\n\n this.returnFilterTexture(flip);\n this.returnFilterTexture(flop);\n }\n\n state.clear();\n this.statePool.push(state);\n };\n\n /**\n * Draws a filter.\n *\n * @param {PIXI.Filter} filter - The filter to draw.\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it\n */\n FilterSystem.prototype.applyFilter = function applyFilter (filter, input, output, clear)\n {\n var renderer = this.renderer;\n\n renderer.renderTexture.bind(output, output ? output.filterFrame : null);\n\n if (clear)\n {\n // gl.disable(gl.SCISSOR_TEST);\n renderer.renderTexture.clear();\n // gl.enable(gl.SCISSOR_TEST);\n }\n\n // set the uniforms..\n filter.uniforms.uSampler = input;\n filter.uniforms.filterGlobals = this.globalUniforms;\n\n // TODO make it so that the order of this does not matter..\n // because it does at the moment cos of global uniforms.\n // they need to get resynced\n\n renderer.state.set(filter.state);\n renderer.shader.bind(filter);\n\n if (filter.legacy)\n {\n this.quadUv.map(input._frame, input.filterFrame);\n\n renderer.geometry.bind(this.quadUv);\n renderer.geometry.draw(DRAW_MODES.TRIANGLES);\n }\n else\n {\n renderer.geometry.bind(this.quad);\n renderer.geometry.draw(DRAW_MODES.TRIANGLE_STRIP);\n }\n };\n\n /**\n * Multiply _input normalized coordinates_ to this matrix to get _sprite texture normalized coordinates_.\n *\n * Use `outputMatrix * vTextureCoord` in the shader.\n *\n * @param {PIXI.Matrix} outputMatrix - The matrix to output to.\n * @param {PIXI.Sprite} sprite - The sprite to map to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n FilterSystem.prototype.calculateSpriteMatrix = function calculateSpriteMatrix (outputMatrix, sprite)\n {\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n var ref$1 = sprite._texture;\n var orig = ref$1.orig;\n var mappedMatrix = outputMatrix.set(destinationFrame.width, 0, 0,\n destinationFrame.height, sourceFrame.x, sourceFrame.y);\n var worldTransform = sprite.worldTransform.copyTo(Matrix.TEMP_MATRIX);\n\n worldTransform.invert();\n mappedMatrix.prepend(worldTransform);\n mappedMatrix.scale(1.0 / orig.width, 1.0 / orig.height);\n mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y);\n\n return mappedMatrix;\n };\n\n /**\n * Destroys this Filter System.\n */\n FilterSystem.prototype.destroy = function destroy ()\n {\n // Those textures has to be destroyed by RenderTextureSystem or FramebufferSystem\n this.texturePool.clear(false);\n };\n\n /**\n * Gets a Power-of-Two render texture or fullScreen texture\n *\n * @protected\n * @param {number} minWidth - The minimum width of the render texture in real pixels.\n * @param {number} minHeight - The minimum height of the render texture in real pixels.\n * @param {number} [resolution=1] - The resolution of the render texture.\n * @return {PIXI.RenderTexture} The new render texture.\n */\n FilterSystem.prototype.getOptimalFilterTexture = function getOptimalFilterTexture (minWidth, minHeight, resolution)\n {\n if ( resolution === void 0 ) resolution = 1;\n\n return this.texturePool.getOptimalTexture(minWidth, minHeight, resolution);\n };\n\n /**\n * Gets extra render texture to use inside current filter\n * To be compliant with older filters, you can use params in any order\n *\n * @param {PIXI.RenderTexture} [input] renderTexture from which size and resolution will be copied\n * @param {number} [resolution] override resolution of the renderTexture\n * @returns {PIXI.RenderTexture}\n */\n FilterSystem.prototype.getFilterTexture = function getFilterTexture (input, resolution)\n {\n if (typeof input === 'number')\n {\n var swap = input;\n\n input = resolution;\n resolution = swap;\n }\n\n input = input || this.activeState.renderTexture;\n\n var filterTexture = this.texturePool.getOptimalTexture(input.width, input.height, resolution || input.resolution);\n\n filterTexture.filterFrame = input.filterFrame;\n\n return filterTexture;\n };\n\n /**\n * Frees a render texture back into the pool.\n *\n * @param {PIXI.RenderTexture} renderTexture - The renderTarget to free\n */\n FilterSystem.prototype.returnFilterTexture = function returnFilterTexture (renderTexture)\n {\n this.texturePool.returnTexture(renderTexture);\n };\n\n /**\n * Empties the texture pool.\n */\n FilterSystem.prototype.emptyPool = function emptyPool ()\n {\n this.texturePool.clear(true);\n };\n\n /**\n * calls `texturePool.resize()`, affects fullScreen renderTextures\n */\n FilterSystem.prototype.resize = function resize ()\n {\n this.texturePool.setScreenSize(this.renderer.view);\n };\n\n return FilterSystem;\n}(System));\n\n/**\n * Base for a common object renderer that can be used as a\n * system renderer plugin.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI\n */\nvar ObjectRenderer = function ObjectRenderer(renderer)\n{\n /**\n * The renderer this manager works for.\n *\n * @member {PIXI.Renderer}\n */\n this.renderer = renderer;\n};\n\n/**\n * Stub method that should be used to empty the current\n * batch by rendering objects now.\n */\nObjectRenderer.prototype.flush = function flush ()\n{\n // flush!\n};\n\n/**\n * Generic destruction method that frees all resources. This\n * should be called by subclasses.\n */\nObjectRenderer.prototype.destroy = function destroy ()\n{\n this.renderer = null;\n};\n\n/**\n * Stub method that initializes any state required before\n * rendering starts. It is different from the `prerender`\n * signal, which occurs every frame, in that it is called\n * whenever an object requests _this_ renderer specifically.\n */\nObjectRenderer.prototype.start = function start ()\n{\n // set the shader..\n};\n\n/**\n * Stops the renderer. It should free up any state and\n * become dormant.\n */\nObjectRenderer.prototype.stop = function stop ()\n{\n this.flush();\n};\n\n/**\n * Keeps the object to render. It doesn't have to be\n * rendered immediately.\n *\n * @param {PIXI.DisplayObject} object - The object to render.\n */\nObjectRenderer.prototype.render = function render (object) // eslint-disable-line no-unused-vars\n{\n // render the object\n};\n\n/**\n * System plugin to the renderer to manage batching.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar BatchSystem = /*@__PURE__*/(function (System) {\n function BatchSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * An empty renderer.\n *\n * @member {PIXI.ObjectRenderer}\n */\n this.emptyRenderer = new ObjectRenderer(renderer);\n\n /**\n * The currently active ObjectRenderer.\n *\n * @member {PIXI.ObjectRenderer}\n */\n this.currentRenderer = this.emptyRenderer;\n }\n\n if ( System ) BatchSystem.__proto__ = System;\n BatchSystem.prototype = Object.create( System && System.prototype );\n BatchSystem.prototype.constructor = BatchSystem;\n\n /**\n * Changes the current renderer to the one given in parameter\n *\n * @param {PIXI.ObjectRenderer} objectRenderer - The object renderer to use.\n */\n BatchSystem.prototype.setObjectRenderer = function setObjectRenderer (objectRenderer)\n {\n if (this.currentRenderer === objectRenderer)\n {\n return;\n }\n\n this.currentRenderer.stop();\n this.currentRenderer = objectRenderer;\n\n this.currentRenderer.start();\n };\n\n /**\n * This should be called if you wish to do some custom rendering\n * It will basically render anything that may be batched up such as sprites\n */\n BatchSystem.prototype.flush = function flush ()\n {\n this.setObjectRenderer(this.emptyRenderer);\n };\n\n /**\n * Reset the system to an empty renderer\n */\n BatchSystem.prototype.reset = function reset ()\n {\n this.setObjectRenderer(this.emptyRenderer);\n };\n\n return BatchSystem;\n}(System));\n\n/**\n * The maximum support for using WebGL. If a device does not\n * support WebGL version, for instance WebGL 2, it will still\n * attempt to fallback support to WebGL 1. If you want to\n * explicitly remove feature support to target a more stable\n * baseline, prefer a lower environment.\n *\n * Due to {@link https://bugs.chromium.org/p/chromium/issues/detail?id=934823|bug in chromium}\n * we disable webgl2 by default for all non-apple mobile devices.\n *\n * @static\n * @name PREFER_ENV\n * @memberof PIXI.settings\n * @type {number}\n * @default PIXI.ENV.WEBGL2\n */\nsettings.PREFER_ENV = isMobile.any ? ENV.WEBGL : ENV.WEBGL2;\n\nvar CONTEXT_UID = 0;\n\n/**\n * System plugin to the renderer to manage the context.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar ContextSystem = /*@__PURE__*/(function (System) {\n function ContextSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Either 1 or 2 to reflect the WebGL version being used\n * @member {number}\n * @readonly\n */\n this.webGLVersion = 1;\n\n /**\n * Extensions being used\n * @member {object}\n * @readonly\n * @property {WEBGL_draw_buffers} drawBuffers - WebGL v1 extension\n * @property {WEBGL_depth_texture} depthTexture - WebGL v1 extension\n * @property {OES_texture_float} floatTexture - WebGL v1 extension\n * @property {WEBGL_lose_context} loseContext - WebGL v1 extension\n * @property {OES_vertex_array_object} vertexArrayObject - WebGL v1 extension\n * @property {EXT_texture_filter_anisotropic} anisotropicFiltering - WebGL v1 and v2 extension\n */\n this.extensions = {};\n\n // Bind functions\n this.handleContextLost = this.handleContextLost.bind(this);\n this.handleContextRestored = this.handleContextRestored.bind(this);\n\n renderer.view.addEventListener('webglcontextlost', this.handleContextLost, false);\n renderer.view.addEventListener('webglcontextrestored', this.handleContextRestored, false);\n }\n\n if ( System ) ContextSystem.__proto__ = System;\n ContextSystem.prototype = Object.create( System && System.prototype );\n ContextSystem.prototype.constructor = ContextSystem;\n\n var prototypeAccessors = { isLost: { configurable: true } };\n\n /**\n * `true` if the context is lost\n * @member {boolean}\n * @readonly\n */\n prototypeAccessors.isLost.get = function ()\n {\n return (!this.gl || this.gl.isContextLost());\n };\n\n /**\n * Handle the context change event\n * @param {WebGLRenderingContext} gl new webgl context\n */\n ContextSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n this.renderer.gl = gl;\n this.renderer.CONTEXT_UID = CONTEXT_UID++;\n\n // restore a context if it was previously lost\n if (gl.isContextLost() && gl.getExtension('WEBGL_lose_context'))\n {\n gl.getExtension('WEBGL_lose_context').restoreContext();\n }\n };\n\n /**\n * Initialize the context\n *\n * @protected\n * @param {WebGLRenderingContext} gl - WebGL context\n */\n ContextSystem.prototype.initFromContext = function initFromContext (gl)\n {\n this.gl = gl;\n this.validateContext(gl);\n this.renderer.gl = gl;\n this.renderer.CONTEXT_UID = CONTEXT_UID++;\n this.renderer.runners.contextChange.run(gl);\n };\n\n /**\n * Initialize from context options\n *\n * @protected\n * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext\n * @param {object} options - context attributes\n */\n ContextSystem.prototype.initFromOptions = function initFromOptions (options)\n {\n var gl = this.createContext(this.renderer.view, options);\n\n this.initFromContext(gl);\n };\n\n /**\n * Helper class to create a WebGL Context\n *\n * @param canvas {HTMLCanvasElement} the canvas element that we will get the context from\n * @param options {object} An options object that gets passed in to the canvas element containing the context attributes\n * @see https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement/getContext\n * @return {WebGLRenderingContext} the WebGL context\n */\n ContextSystem.prototype.createContext = function createContext (canvas, options)\n {\n var gl;\n\n if (settings.PREFER_ENV >= ENV.WEBGL2)\n {\n gl = canvas.getContext('webgl2', options);\n }\n\n if (gl)\n {\n this.webGLVersion = 2;\n }\n else\n {\n this.webGLVersion = 1;\n\n gl = canvas.getContext('webgl', options)\n || canvas.getContext('experimental-webgl', options);\n\n if (!gl)\n {\n // fail, not able to get a context\n throw new Error('This browser does not support WebGL. Try using the canvas renderer');\n }\n }\n\n this.gl = gl;\n\n this.getExtensions();\n\n return gl;\n };\n\n /**\n * Auto-populate the extensions\n *\n * @protected\n */\n ContextSystem.prototype.getExtensions = function getExtensions ()\n {\n // time to set up default extensions that Pixi uses.\n var ref = this;\n var gl = ref.gl;\n\n if (this.webGLVersion === 1)\n {\n Object.assign(this.extensions, {\n drawBuffers: gl.getExtension('WEBGL_draw_buffers'),\n depthTexture: gl.getExtension('WEBKIT_WEBGL_depth_texture'),\n loseContext: gl.getExtension('WEBGL_lose_context'),\n vertexArrayObject: gl.getExtension('OES_vertex_array_object')\n || gl.getExtension('MOZ_OES_vertex_array_object')\n || gl.getExtension('WEBKIT_OES_vertex_array_object'),\n anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'),\n uint32ElementIndex: gl.getExtension('OES_element_index_uint'),\n // Floats and half-floats\n floatTexture: gl.getExtension('OES_texture_float'),\n floatTextureLinear: gl.getExtension('OES_texture_float_linear'),\n textureHalfFloat: gl.getExtension('OES_texture_half_float'),\n textureHalfFloatLinear: gl.getExtension('OES_texture_half_float_linear'),\n });\n }\n else if (this.webGLVersion === 2)\n {\n Object.assign(this.extensions, {\n anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'),\n // Floats and half-floats\n colorBufferFloat: gl.getExtension('EXT_color_buffer_float'),\n floatTextureLinear: gl.getExtension('OES_texture_float_linear'),\n });\n }\n };\n\n /**\n * Handles a lost webgl context\n *\n * @protected\n * @param {WebGLContextEvent} event - The context lost event.\n */\n ContextSystem.prototype.handleContextLost = function handleContextLost (event)\n {\n event.preventDefault();\n };\n\n /**\n * Handles a restored webgl context\n *\n * @protected\n */\n ContextSystem.prototype.handleContextRestored = function handleContextRestored ()\n {\n this.renderer.runners.contextChange.run(this.gl);\n };\n\n ContextSystem.prototype.destroy = function destroy ()\n {\n var view = this.renderer.view;\n\n // remove listeners\n view.removeEventListener('webglcontextlost', this.handleContextLost);\n view.removeEventListener('webglcontextrestored', this.handleContextRestored);\n\n this.gl.useProgram(null);\n\n if (this.extensions.loseContext)\n {\n this.extensions.loseContext.loseContext();\n }\n };\n\n /**\n * Handle the post-render runner event\n *\n * @protected\n */\n ContextSystem.prototype.postrender = function postrender ()\n {\n this.gl.flush();\n };\n\n /**\n * Validate context\n *\n * @protected\n * @param {WebGLRenderingContext} gl - Render context\n */\n ContextSystem.prototype.validateContext = function validateContext (gl)\n {\n var attributes = gl.getContextAttributes();\n\n // this is going to be fairly simple for now.. but at least we have room to grow!\n if (!attributes.stencil)\n {\n /* eslint-disable max-len */\n\n /* eslint-disable no-console */\n console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly');\n /* eslint-enable no-console */\n\n /* eslint-enable max-len */\n }\n };\n\n Object.defineProperties( ContextSystem.prototype, prototypeAccessors );\n\n return ContextSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage framebuffers.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar FramebufferSystem = /*@__PURE__*/(function (System) {\n function FramebufferSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * A list of managed framebuffers\n * @member {PIXI.Framebuffer[]}\n * @readonly\n */\n this.managedFramebuffers = [];\n\n /**\n * Framebuffer value that shows that we don't know what is bound\n * @member {Framebuffer}\n * @readonly\n */\n this.unknownFramebuffer = new Framebuffer(10, 10);\n }\n\n if ( System ) FramebufferSystem.__proto__ = System;\n FramebufferSystem.prototype = Object.create( System && System.prototype );\n FramebufferSystem.prototype.constructor = FramebufferSystem;\n\n var prototypeAccessors = { size: { configurable: true } };\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n FramebufferSystem.prototype.contextChange = function contextChange ()\n {\n var gl = this.gl = this.renderer.gl;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n this.current = this.unknownFramebuffer;\n this.viewport = new Rectangle();\n this.hasMRT = true;\n this.writeDepthTexture = true;\n\n this.disposeAll(true);\n\n // webgl2\n if (this.renderer.context.webGLVersion === 1)\n {\n // webgl 1!\n var nativeDrawBuffersExtension = this.renderer.context.extensions.drawBuffers;\n var nativeDepthTextureExtension = this.renderer.context.extensions.depthTexture;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n nativeDrawBuffersExtension = null;\n nativeDepthTextureExtension = null;\n }\n\n if (nativeDrawBuffersExtension)\n {\n gl.drawBuffers = function (activeTextures) { return nativeDrawBuffersExtension.drawBuffersWEBGL(activeTextures); };\n }\n else\n {\n this.hasMRT = false;\n gl.drawBuffers = function () {\n // empty\n };\n }\n\n if (!nativeDepthTextureExtension)\n {\n this.writeDepthTexture = false;\n }\n }\n };\n\n /**\n * Bind a framebuffer\n *\n * @param {PIXI.Framebuffer} framebuffer\n * @param {PIXI.Rectangle} [frame] frame, default is framebuffer size\n */\n FramebufferSystem.prototype.bind = function bind (framebuffer, frame)\n {\n var ref = this;\n var gl = ref.gl;\n\n if (framebuffer)\n {\n // TODO caching layer!\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID] || this.initFramebuffer(framebuffer);\n\n if (this.current !== framebuffer)\n {\n this.current = framebuffer;\n gl.bindFramebuffer(gl.FRAMEBUFFER, fbo.framebuffer);\n }\n // make sure all textures are unbound..\n\n // now check for updates...\n if (fbo.dirtyId !== framebuffer.dirtyId)\n {\n fbo.dirtyId = framebuffer.dirtyId;\n\n if (fbo.dirtyFormat !== framebuffer.dirtyFormat)\n {\n fbo.dirtyFormat = framebuffer.dirtyFormat;\n this.updateFramebuffer(framebuffer);\n }\n else if (fbo.dirtySize !== framebuffer.dirtySize)\n {\n fbo.dirtySize = framebuffer.dirtySize;\n this.resizeFramebuffer(framebuffer);\n }\n }\n\n for (var i = 0; i < framebuffer.colorTextures.length; i++)\n {\n if (framebuffer.colorTextures[i].texturePart)\n {\n this.renderer.texture.unbind(framebuffer.colorTextures[i].texture);\n }\n else\n {\n this.renderer.texture.unbind(framebuffer.colorTextures[i]);\n }\n }\n\n if (framebuffer.depthTexture)\n {\n this.renderer.texture.unbind(framebuffer.depthTexture);\n }\n\n if (frame)\n {\n this.setViewport(frame.x, frame.y, frame.width, frame.height);\n }\n else\n {\n this.setViewport(0, 0, framebuffer.width, framebuffer.height);\n }\n }\n else\n {\n if (this.current)\n {\n this.current = null;\n gl.bindFramebuffer(gl.FRAMEBUFFER, null);\n }\n\n if (frame)\n {\n this.setViewport(frame.x, frame.y, frame.width, frame.height);\n }\n else\n {\n this.setViewport(0, 0, this.renderer.width, this.renderer.height);\n }\n }\n };\n\n /**\n * Set the WebGLRenderingContext's viewport.\n *\n * @param {Number} x - X position of viewport\n * @param {Number} y - Y position of viewport\n * @param {Number} width - Width of viewport\n * @param {Number} height - Height of viewport\n */\n FramebufferSystem.prototype.setViewport = function setViewport (x, y, width, height)\n {\n var v = this.viewport;\n\n if (v.width !== width || v.height !== height || v.x !== x || v.y !== y)\n {\n v.x = x;\n v.y = y;\n v.width = width;\n v.height = height;\n\n this.gl.viewport(x, y, width, height);\n }\n };\n\n /**\n * Get the size of the current width and height. Returns object with `width` and `height` values.\n *\n * @member {object}\n * @readonly\n */\n prototypeAccessors.size.get = function ()\n {\n if (this.current)\n {\n // TODO store temp\n return { x: 0, y: 0, width: this.current.width, height: this.current.height };\n }\n\n return { x: 0, y: 0, width: this.renderer.width, height: this.renderer.height };\n };\n\n /**\n * Clear the color of the context\n *\n * @param {Number} r - Red value from 0 to 1\n * @param {Number} g - Green value from 0 to 1\n * @param {Number} b - Blue value from 0 to 1\n * @param {Number} a - Alpha value from 0 to 1\n */\n FramebufferSystem.prototype.clear = function clear (r, g, b, a)\n {\n var ref = this;\n var gl = ref.gl;\n\n // TODO clear color can be set only one right?\n gl.clearColor(r, g, b, a);\n gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);\n };\n\n /**\n * Initialize framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.initFramebuffer = function initFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n // TODO - make this a class?\n var fbo = {\n framebuffer: gl.createFramebuffer(),\n stencil: null,\n dirtyId: 0,\n dirtyFormat: 0,\n dirtySize: 0,\n };\n\n framebuffer.glFramebuffers[this.CONTEXT_UID] = fbo;\n\n this.managedFramebuffers.push(framebuffer);\n framebuffer.disposeRunner.add(this);\n\n return fbo;\n };\n\n /**\n * Resize the framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.resizeFramebuffer = function resizeFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n if (fbo.stencil)\n {\n gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil);\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height);\n }\n\n var colorTextures = framebuffer.colorTextures;\n\n for (var i = 0; i < colorTextures.length; i++)\n {\n this.renderer.texture.bind(colorTextures[i], 0);\n }\n\n if (framebuffer.depthTexture)\n {\n this.renderer.texture.bind(framebuffer.depthTexture, 0);\n }\n };\n\n /**\n * Update the framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.updateFramebuffer = function updateFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n // bind the color texture\n var colorTextures = framebuffer.colorTextures;\n\n var count = colorTextures.length;\n\n if (!gl.drawBuffers)\n {\n count = Math.min(count, 1);\n }\n\n var activeTextures = [];\n\n for (var i = 0; i < count; i++)\n {\n var texture = framebuffer.colorTextures[i];\n\n if (texture.texturePart)\n {\n this.renderer.texture.bind(texture.texture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.COLOR_ATTACHMENT0 + i,\n gl.TEXTURE_CUBE_MAP_NEGATIVE_X + texture.side,\n texture.texture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n else\n {\n this.renderer.texture.bind(texture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.COLOR_ATTACHMENT0 + i,\n gl.TEXTURE_2D,\n texture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n\n activeTextures.push(gl.COLOR_ATTACHMENT0 + i);\n }\n\n if (activeTextures.length > 1)\n {\n gl.drawBuffers(activeTextures);\n }\n\n if (framebuffer.depthTexture)\n {\n var writeDepthTexture = this.writeDepthTexture;\n\n if (writeDepthTexture)\n {\n var depthTexture = framebuffer.depthTexture;\n\n this.renderer.texture.bind(depthTexture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.DEPTH_ATTACHMENT,\n gl.TEXTURE_2D,\n depthTexture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n }\n\n if (!fbo.stencil && (framebuffer.stencil || framebuffer.depth))\n {\n fbo.stencil = gl.createRenderbuffer();\n\n gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil);\n\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height);\n // TODO.. this is depth AND stencil?\n if (!framebuffer.depthTexture)\n { // you can't have both, so one should take priority if enabled\n gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, fbo.stencil);\n }\n }\n };\n\n /**\n * Disposes framebuffer\n * @param {PIXI.Framebuffer} framebuffer framebuffer that has to be disposed of\n * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls\n */\n FramebufferSystem.prototype.disposeFramebuffer = function disposeFramebuffer (framebuffer, contextLost)\n {\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n var gl = this.gl;\n\n if (!fbo)\n {\n return;\n }\n\n delete framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n var index = this.managedFramebuffers.indexOf(framebuffer);\n\n if (index >= 0)\n {\n this.managedFramebuffers.splice(index, 1);\n }\n\n framebuffer.disposeRunner.remove(this);\n\n if (!contextLost)\n {\n gl.deleteFramebuffer(fbo.framebuffer);\n if (fbo.stencil)\n {\n gl.deleteRenderbuffer(fbo.stencil);\n }\n }\n };\n\n /**\n * Disposes all framebuffers, but not textures bound to them\n * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls\n */\n FramebufferSystem.prototype.disposeAll = function disposeAll (contextLost)\n {\n var list = this.managedFramebuffers;\n\n this.managedFramebuffers = [];\n\n for (var i = 0; i < list.length; i++)\n {\n this.disposeFramebuffer(list[i], contextLost);\n }\n };\n\n /**\n * Forcing creation of stencil buffer for current framebuffer, if it wasn't done before.\n * Used by MaskSystem, when its time to use stencil mask for Graphics element.\n *\n * Its an alternative for public lazy `framebuffer.enableStencil`, in case we need stencil without rebind.\n *\n * @private\n */\n FramebufferSystem.prototype.forceStencil = function forceStencil ()\n {\n var framebuffer = this.current;\n\n if (!framebuffer)\n {\n return;\n }\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n if (!fbo || fbo.stencil)\n {\n return;\n }\n framebuffer.enableStencil();\n\n var w = framebuffer.width;\n var h = framebuffer.height;\n var gl = this.gl;\n var stencil = gl.createRenderbuffer();\n\n gl.bindRenderbuffer(gl.RENDERBUFFER, stencil);\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, w, h);\n\n fbo.stencil = stencil;\n gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, stencil);\n };\n\n /**\n * resets framebuffer stored state, binds screen framebuffer\n *\n * should be called before renderTexture reset()\n */\n FramebufferSystem.prototype.reset = function reset ()\n {\n this.current = this.unknownFramebuffer;\n this.viewport = new Rectangle();\n };\n\n Object.defineProperties( FramebufferSystem.prototype, prototypeAccessors );\n\n return FramebufferSystem;\n}(System));\n\nvar GLBuffer = function GLBuffer(buffer)\n{\n this.buffer = buffer;\n this.updateID = -1;\n this.byteLength = -1;\n this.refCount = 0;\n};\n\nvar byteSizeMap$1 = { 5126: 4, 5123: 2, 5121: 1 };\n\n/**\n * System plugin to the renderer to manage geometry.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar GeometrySystem = /*@__PURE__*/(function (System) {\n function GeometrySystem(renderer)\n {\n System.call(this, renderer);\n\n this._activeGeometry = null;\n this._activeVao = null;\n\n /**\n * `true` if we has `*_vertex_array_object` extension\n * @member {boolean}\n * @readonly\n */\n this.hasVao = true;\n\n /**\n * `true` if has `ANGLE_instanced_arrays` extension\n * @member {boolean}\n * @readonly\n */\n this.hasInstance = true;\n\n /**\n * `true` if support `gl.UNSIGNED_INT` in `gl.drawElements` or `gl.drawElementsInstanced`\n * @member {boolean}\n * @readonly\n */\n this.canUseUInt32ElementIndex = false;\n\n /**\n * A cache of currently bound buffer,\n * contains only two members with keys ARRAY_BUFFER and ELEMENT_ARRAY_BUFFER\n * @member {Object.}\n * @readonly\n */\n this.boundBuffers = {};\n\n /**\n * Cache for all geometries by id, used in case renderer gets destroyed or for profiling\n * @member {object}\n * @readonly\n */\n this.managedGeometries = {};\n\n /**\n * Cache for all buffers by id, used in case renderer gets destroyed or for profiling\n * @member {object}\n * @readonly\n */\n this.managedBuffers = {};\n }\n\n if ( System ) GeometrySystem.__proto__ = System;\n GeometrySystem.prototype = Object.create( System && System.prototype );\n GeometrySystem.prototype.constructor = GeometrySystem;\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n GeometrySystem.prototype.contextChange = function contextChange ()\n {\n this.disposeAll(true);\n\n var gl = this.gl = this.renderer.gl;\n var context = this.renderer.context;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n\n // webgl2\n if (!gl.createVertexArray)\n {\n // webgl 1!\n var nativeVaoExtension = this.renderer.context.extensions.vertexArrayObject;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n nativeVaoExtension = null;\n }\n\n if (nativeVaoExtension)\n {\n gl.createVertexArray = function () { return nativeVaoExtension.createVertexArrayOES(); };\n\n gl.bindVertexArray = function (vao) { return nativeVaoExtension.bindVertexArrayOES(vao); };\n\n gl.deleteVertexArray = function (vao) { return nativeVaoExtension.deleteVertexArrayOES(vao); };\n }\n else\n {\n this.hasVao = false;\n gl.createVertexArray = function () {\n // empty\n };\n\n gl.bindVertexArray = function () {\n // empty\n };\n\n gl.deleteVertexArray = function () {\n // empty\n };\n }\n }\n\n if (!gl.vertexAttribDivisor)\n {\n var instanceExt = gl.getExtension('ANGLE_instanced_arrays');\n\n if (instanceExt)\n {\n gl.vertexAttribDivisor = function (a, b) { return instanceExt.vertexAttribDivisorANGLE(a, b); };\n\n gl.drawElementsInstanced = function (a, b, c, d, e) { return instanceExt.drawElementsInstancedANGLE(a, b, c, d, e); };\n\n gl.drawArraysInstanced = function (a, b, c, d) { return instanceExt.drawArraysInstancedANGLE(a, b, c, d); };\n }\n else\n {\n this.hasInstance = false;\n }\n }\n\n this.canUseUInt32ElementIndex = context.webGLVersion === 2 || !!context.extensions.uint32ElementIndex;\n };\n\n /**\n * Binds geometry so that is can be drawn. Creating a Vao if required\n *\n * @param {PIXI.Geometry} geometry instance of geometry to bind\n * @param {PIXI.Shader} [shader] instance of shader to use vao for\n */\n GeometrySystem.prototype.bind = function bind (geometry, shader)\n {\n shader = shader || this.renderer.shader.shader;\n\n var ref = this;\n var gl = ref.gl;\n\n // not sure the best way to address this..\n // currently different shaders require different VAOs for the same geometry\n // Still mulling over the best way to solve this one..\n // will likely need to modify the shader attribute locations at run time!\n var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n\n if (!vaos)\n {\n this.managedGeometries[geometry.id] = geometry;\n geometry.disposeRunner.add(this);\n geometry.glVertexArrayObjects[this.CONTEXT_UID] = vaos = {};\n }\n\n var vao = vaos[shader.program.id] || this.initGeometryVao(geometry, shader.program);\n\n this._activeGeometry = geometry;\n\n if (this._activeVao !== vao)\n {\n this._activeVao = vao;\n\n if (this.hasVao)\n {\n gl.bindVertexArray(vao);\n }\n else\n {\n this.activateVao(geometry, shader.program);\n }\n }\n\n // TODO - optimise later!\n // don't need to loop through if nothing changed!\n // maybe look to add an 'autoupdate' to geometry?\n this.updateBuffers();\n };\n\n /**\n * Reset and unbind any active VAO and geometry\n */\n GeometrySystem.prototype.reset = function reset ()\n {\n this.unbind();\n };\n\n /**\n * Update buffers\n * @protected\n */\n GeometrySystem.prototype.updateBuffers = function updateBuffers ()\n {\n var geometry = this._activeGeometry;\n var ref = this;\n var gl = ref.gl;\n\n for (var i = 0; i < geometry.buffers.length; i++)\n {\n var buffer = geometry.buffers[i];\n\n var glBuffer = buffer._glBuffers[this.CONTEXT_UID];\n\n if (buffer._updateID !== glBuffer.updateID)\n {\n glBuffer.updateID = buffer._updateID;\n\n // TODO can cache this on buffer! maybe added a getter / setter?\n var type = buffer.index ? gl.ELEMENT_ARRAY_BUFFER : gl.ARRAY_BUFFER;\n\n // TODO this could change if the VAO changes...\n // need to come up with a better way to cache..\n // if (this.boundBuffers[type] !== glBuffer)\n // {\n // this.boundBuffers[type] = glBuffer;\n gl.bindBuffer(type, glBuffer.buffer);\n // }\n\n this._boundBuffer = glBuffer;\n\n if (glBuffer.byteLength >= buffer.data.byteLength)\n {\n // offset is always zero for now!\n gl.bufferSubData(type, 0, buffer.data);\n }\n else\n {\n var drawType = buffer.static ? gl.STATIC_DRAW : gl.DYNAMIC_DRAW;\n\n glBuffer.byteLength = buffer.data.byteLength;\n gl.bufferData(type, buffer.data, drawType);\n }\n }\n }\n };\n\n /**\n * Check compability between a geometry and a program\n * @protected\n * @param {PIXI.Geometry} geometry - Geometry instance\n * @param {PIXI.Program} program - Program instance\n */\n GeometrySystem.prototype.checkCompatibility = function checkCompatibility (geometry, program)\n {\n // geometry must have at least all the attributes that the shader requires.\n var geometryAttributes = geometry.attributes;\n var shaderAttributes = program.attributeData;\n\n for (var j in shaderAttributes)\n {\n if (!geometryAttributes[j])\n {\n throw new Error((\"shader and geometry incompatible, geometry missing the \\\"\" + j + \"\\\" attribute\"));\n }\n }\n };\n\n /**\n * Takes a geometry and program and generates a unique signature for them.\n *\n * @param {PIXI.Geometry} geometry to get signature from\n * @param {PIXI.Program} program to test geometry against\n * @returns {String} Unique signature of the geometry and program\n * @protected\n */\n GeometrySystem.prototype.getSignature = function getSignature (geometry, program)\n {\n var attribs = geometry.attributes;\n var shaderAttributes = program.attributeData;\n\n var strings = ['g', geometry.id];\n\n for (var i in attribs)\n {\n if (shaderAttributes[i])\n {\n strings.push(i);\n }\n }\n\n return strings.join('-');\n };\n\n /**\n * Creates or gets Vao with the same structure as the geometry and stores it on the geometry.\n * If vao is created, it is bound automatically.\n *\n * @protected\n * @param {PIXI.Geometry} geometry - Instance of geometry to to generate Vao for\n * @param {PIXI.Program} program - Instance of program\n */\n GeometrySystem.prototype.initGeometryVao = function initGeometryVao (geometry, program)\n {\n this.checkCompatibility(geometry, program);\n\n var gl = this.gl;\n var CONTEXT_UID = this.CONTEXT_UID;\n\n var signature = this.getSignature(geometry, program);\n\n var vaoObjectHash = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n\n var vao = vaoObjectHash[signature];\n\n if (vao)\n {\n // this will give us easy access to the vao\n vaoObjectHash[program.id] = vao;\n\n return vao;\n }\n\n var buffers = geometry.buffers;\n var attributes = geometry.attributes;\n var tempStride = {};\n var tempStart = {};\n\n for (var j in buffers)\n {\n tempStride[j] = 0;\n tempStart[j] = 0;\n }\n\n for (var j$1 in attributes)\n {\n if (!attributes[j$1].size && program.attributeData[j$1])\n {\n attributes[j$1].size = program.attributeData[j$1].size;\n }\n else if (!attributes[j$1].size)\n {\n console.warn((\"PIXI Geometry attribute '\" + j$1 + \"' size cannot be determined (likely the bound shader does not have the attribute)\")); // eslint-disable-line\n }\n\n tempStride[attributes[j$1].buffer] += attributes[j$1].size * byteSizeMap$1[attributes[j$1].type];\n }\n\n for (var j$2 in attributes)\n {\n var attribute = attributes[j$2];\n var attribSize = attribute.size;\n\n if (attribute.stride === undefined)\n {\n if (tempStride[attribute.buffer] === attribSize * byteSizeMap$1[attribute.type])\n {\n attribute.stride = 0;\n }\n else\n {\n attribute.stride = tempStride[attribute.buffer];\n }\n }\n\n if (attribute.start === undefined)\n {\n attribute.start = tempStart[attribute.buffer];\n\n tempStart[attribute.buffer] += attribSize * byteSizeMap$1[attribute.type];\n }\n }\n\n vao = gl.createVertexArray();\n\n gl.bindVertexArray(vao);\n\n // first update - and create the buffers!\n // only create a gl buffer if it actually gets\n for (var i = 0; i < buffers.length; i++)\n {\n var buffer = buffers[i];\n\n if (!buffer._glBuffers[CONTEXT_UID])\n {\n buffer._glBuffers[CONTEXT_UID] = new GLBuffer(gl.createBuffer());\n this.managedBuffers[buffer.id] = buffer;\n buffer.disposeRunner.add(this);\n }\n\n buffer._glBuffers[CONTEXT_UID].refCount++;\n }\n\n // TODO - maybe make this a data object?\n // lets wait to see if we need to first!\n\n this.activateVao(geometry, program);\n\n this._activeVao = vao;\n\n // add it to the cache!\n vaoObjectHash[program.id] = vao;\n vaoObjectHash[signature] = vao;\n\n return vao;\n };\n\n /**\n * Disposes buffer\n * @param {PIXI.Buffer} buffer buffer with data\n * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray\n */\n GeometrySystem.prototype.disposeBuffer = function disposeBuffer (buffer, contextLost)\n {\n if (!this.managedBuffers[buffer.id])\n {\n return;\n }\n\n delete this.managedBuffers[buffer.id];\n\n var glBuffer = buffer._glBuffers[this.CONTEXT_UID];\n var gl = this.gl;\n\n buffer.disposeRunner.remove(this);\n\n if (!glBuffer)\n {\n return;\n }\n\n if (!contextLost)\n {\n gl.deleteBuffer(glBuffer.buffer);\n }\n\n delete buffer._glBuffers[this.CONTEXT_UID];\n };\n\n /**\n * Disposes geometry\n * @param {PIXI.Geometry} geometry Geometry with buffers. Only VAO will be disposed\n * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray\n */\n GeometrySystem.prototype.disposeGeometry = function disposeGeometry (geometry, contextLost)\n {\n if (!this.managedGeometries[geometry.id])\n {\n return;\n }\n\n delete this.managedGeometries[geometry.id];\n\n var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n var gl = this.gl;\n var buffers = geometry.buffers;\n\n geometry.disposeRunner.remove(this);\n\n if (!vaos)\n {\n return;\n }\n\n for (var i = 0; i < buffers.length; i++)\n {\n var buf = buffers[i]._glBuffers[this.CONTEXT_UID];\n\n buf.refCount--;\n if (buf.refCount === 0 && !contextLost)\n {\n this.disposeBuffer(buffers[i], contextLost);\n }\n }\n\n if (!contextLost)\n {\n for (var vaoId in vaos)\n {\n // delete only signatures, everything else are copies\n if (vaoId[0] === 'g')\n {\n var vao = vaos[vaoId];\n\n if (this._activeVao === vao)\n {\n this.unbind();\n }\n gl.deleteVertexArray(vao);\n }\n }\n }\n\n delete geometry.glVertexArrayObjects[this.CONTEXT_UID];\n };\n\n /**\n * dispose all WebGL resources of all managed geometries and buffers\n * @param {boolean} [contextLost=false] If context was lost, we suppress `gl.delete` calls\n */\n GeometrySystem.prototype.disposeAll = function disposeAll (contextLost)\n {\n var all = Object.keys(this.managedGeometries);\n\n for (var i = 0; i < all.length; i++)\n {\n this.disposeGeometry(this.managedGeometries[all[i]], contextLost);\n }\n all = Object.keys(this.managedBuffers);\n for (var i$1 = 0; i$1 < all.length; i$1++)\n {\n this.disposeBuffer(this.managedBuffers[all[i$1]], contextLost);\n }\n };\n\n /**\n * Activate vertex array object\n *\n * @protected\n * @param {PIXI.Geometry} geometry - Geometry instance\n * @param {PIXI.Program} program - Shader program instance\n */\n GeometrySystem.prototype.activateVao = function activateVao (geometry, program)\n {\n var gl = this.gl;\n var CONTEXT_UID = this.CONTEXT_UID;\n var buffers = geometry.buffers;\n var attributes = geometry.attributes;\n\n if (geometry.indexBuffer)\n {\n // first update the index buffer if we have one..\n gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, geometry.indexBuffer._glBuffers[CONTEXT_UID].buffer);\n }\n\n var lastBuffer = null;\n\n // add a new one!\n for (var j in attributes)\n {\n var attribute = attributes[j];\n var buffer = buffers[attribute.buffer];\n var glBuffer = buffer._glBuffers[CONTEXT_UID];\n\n if (program.attributeData[j])\n {\n if (lastBuffer !== glBuffer)\n {\n gl.bindBuffer(gl.ARRAY_BUFFER, glBuffer.buffer);\n\n lastBuffer = glBuffer;\n }\n\n var location = program.attributeData[j].location;\n\n // TODO introduce state again\n // we can optimise this for older devices that have no VAOs\n gl.enableVertexAttribArray(location);\n\n gl.vertexAttribPointer(location,\n attribute.size,\n attribute.type || gl.FLOAT,\n attribute.normalized,\n attribute.stride,\n attribute.start);\n\n if (attribute.instance)\n {\n // TODO calculate instance count based of this...\n if (this.hasInstance)\n {\n gl.vertexAttribDivisor(location, 1);\n }\n else\n {\n throw new Error('geometry error, GPU Instancing is not supported on this device');\n }\n }\n }\n }\n };\n\n /**\n * Draw the geometry\n *\n * @param {Number} type - the type primitive to render\n * @param {Number} [size] - the number of elements to be rendered\n * @param {Number} [start] - Starting index\n * @param {Number} [instanceCount] - the number of instances of the set of elements to execute\n */\n GeometrySystem.prototype.draw = function draw (type, size, start, instanceCount)\n {\n var ref = this;\n var gl = ref.gl;\n var geometry = this._activeGeometry;\n\n // TODO.. this should not change so maybe cache the function?\n\n if (geometry.indexBuffer)\n {\n var byteSize = geometry.indexBuffer.data.BYTES_PER_ELEMENT;\n var glType = byteSize === 2 ? gl.UNSIGNED_SHORT : gl.UNSIGNED_INT;\n\n if (byteSize === 2 || (byteSize === 4 && this.canUseUInt32ElementIndex))\n {\n if (geometry.instanced)\n {\n /* eslint-disable max-len */\n gl.drawElementsInstanced(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize, instanceCount || 1);\n /* eslint-enable max-len */\n }\n else\n {\n /* eslint-disable max-len */\n gl.drawElements(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize);\n /* eslint-enable max-len */\n }\n }\n else\n {\n console.warn('unsupported index buffer type: uint32');\n }\n }\n else if (geometry.instanced)\n {\n // TODO need a better way to calculate size..\n gl.drawArraysInstanced(type, start, size || geometry.getSize(), instanceCount || 1);\n }\n else\n {\n gl.drawArrays(type, start, size || geometry.getSize());\n }\n\n return this;\n };\n\n /**\n * Unbind/reset everything\n * @protected\n */\n GeometrySystem.prototype.unbind = function unbind ()\n {\n this.gl.bindVertexArray(null);\n this._activeVao = null;\n this._activeGeometry = null;\n };\n\n return GeometrySystem;\n}(System));\n\n/**\n * @method compileProgram\n * @private\n * @memberof PIXI.glCore.shader\n * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram}\n * @param vertexSrc {string|string[]} The vertex shader source as an array of strings.\n * @param fragmentSrc {string|string[]} The fragment shader source as an array of strings.\n * @param attributeLocations {Object} An attribute location map that lets you manually set the attribute locations\n * @return {WebGLProgram} the shader program\n */\nfunction compileProgram(gl, vertexSrc, fragmentSrc, attributeLocations)\n{\n var glVertShader = compileShader(gl, gl.VERTEX_SHADER, vertexSrc);\n var glFragShader = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc);\n\n var program = gl.createProgram();\n\n gl.attachShader(program, glVertShader);\n gl.attachShader(program, glFragShader);\n\n // optionally, set the attributes manually for the program rather than letting WebGL decide..\n if (attributeLocations)\n {\n for (var i in attributeLocations)\n {\n gl.bindAttribLocation(program, attributeLocations[i], i);\n }\n }\n\n gl.linkProgram(program);\n\n // if linking fails, then log and cleanup\n if (!gl.getProgramParameter(program, gl.LINK_STATUS))\n {\n console.error('Pixi.js Error: Could not initialize shader.');\n console.error('gl.VALIDATE_STATUS', gl.getProgramParameter(program, gl.VALIDATE_STATUS));\n console.error('gl.getError()', gl.getError());\n\n // if there is a program info log, log it\n if (gl.getProgramInfoLog(program) !== '')\n {\n console.warn('Pixi.js Warning: gl.getProgramInfoLog()', gl.getProgramInfoLog(program));\n }\n\n gl.deleteProgram(program);\n program = null;\n }\n\n // clean up some shaders\n gl.deleteShader(glVertShader);\n gl.deleteShader(glFragShader);\n\n return program;\n}\n\n/**\n * @private\n * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram}\n * @param type {Number} the type, can be either VERTEX_SHADER or FRAGMENT_SHADER\n * @param vertexSrc {string|string[]} The vertex shader source as an array of strings.\n * @return {WebGLShader} the shader\n */\nfunction compileShader(gl, type, src)\n{\n var shader = gl.createShader(type);\n\n gl.shaderSource(shader, src);\n gl.compileShader(shader);\n\n if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS))\n {\n console.warn(src);\n console.error(gl.getShaderInfoLog(shader));\n\n return null;\n }\n\n return shader;\n}\n\n/**\n * @method defaultValue\n * @memberof PIXI.glCore.shader\n * @param type {String} Type of value\n * @param size {Number}\n * @private\n */\nfunction defaultValue(type, size)\n{\n switch (type)\n {\n case 'float':\n return 0;\n\n case 'vec2':\n return new Float32Array(2 * size);\n\n case 'vec3':\n return new Float32Array(3 * size);\n\n case 'vec4':\n return new Float32Array(4 * size);\n\n case 'int':\n case 'sampler2D':\n case 'sampler2DArray':\n return 0;\n\n case 'ivec2':\n return new Int32Array(2 * size);\n\n case 'ivec3':\n return new Int32Array(3 * size);\n\n case 'ivec4':\n return new Int32Array(4 * size);\n\n case 'bool':\n return false;\n\n case 'bvec2':\n\n return booleanArray(2 * size);\n\n case 'bvec3':\n return booleanArray(3 * size);\n\n case 'bvec4':\n return booleanArray(4 * size);\n\n case 'mat2':\n return new Float32Array([1, 0,\n 0, 1]);\n\n case 'mat3':\n return new Float32Array([1, 0, 0,\n 0, 1, 0,\n 0, 0, 1]);\n\n case 'mat4':\n return new Float32Array([1, 0, 0, 0,\n 0, 1, 0, 0,\n 0, 0, 1, 0,\n 0, 0, 0, 1]);\n }\n\n return null;\n}\n\nfunction booleanArray(size)\n{\n var array = new Array(size);\n\n for (var i = 0; i < array.length; i++)\n {\n array[i] = false;\n }\n\n return array;\n}\n\nvar unknownContext = {};\nvar context = unknownContext;\n\n/**\n * returns a little WebGL context to use for program inspection.\n *\n * @static\n * @private\n * @returns {webGL-context} a gl context to test with\n */\nfunction getTestContext()\n{\n if (context === unknownContext || context.isContextLost())\n {\n var canvas = document.createElement('canvas');\n\n var gl;\n\n if (settings.PREFER_ENV >= ENV.WEBGL2)\n {\n gl = canvas.getContext('webgl2', {});\n }\n\n if (!gl)\n {\n gl = canvas.getContext('webgl', {})\n || canvas.getContext('experimental-webgl', {});\n\n if (!gl)\n {\n // fail, not able to get a context\n gl = null;\n }\n else\n {\n // for shader testing..\n gl.getExtension('WEBGL_draw_buffers');\n }\n }\n\n context = gl;\n }\n\n return context;\n}\n\nvar maxFragmentPrecision;\n\nfunction getMaxFragmentPrecision()\n{\n if (!maxFragmentPrecision)\n {\n maxFragmentPrecision = PRECISION.MEDIUM;\n var gl = getTestContext();\n\n if (gl)\n {\n if (gl.getShaderPrecisionFormat)\n {\n var shaderFragment = gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT);\n\n maxFragmentPrecision = shaderFragment.precision ? PRECISION.HIGH : PRECISION.MEDIUM;\n }\n }\n }\n\n return maxFragmentPrecision;\n}\n\n/**\n * Sets the float precision on the shader, ensuring the device supports the request precision.\n * If the precision is already present, it just ensures that the device is able to handle it.\n *\n * @private\n * @param {string} src - The shader source\n * @param {string} requestedPrecision - The request float precision of the shader. Options are 'lowp', 'mediump' or 'highp'.\n * @param {string} maxSupportedPrecision - The maximum precision the shader supports.\n *\n * @return {string} modified shader source\n */\nfunction setPrecision(src, requestedPrecision, maxSupportedPrecision)\n{\n if (src.substring(0, 9) !== 'precision')\n {\n // no precision supplied, so PixiJS will add the requested level.\n var precision = requestedPrecision;\n\n // If highp is requested but not supported, downgrade precision to a level all devices support.\n if (requestedPrecision === PRECISION.HIGH && maxSupportedPrecision !== PRECISION.HIGH)\n {\n precision = PRECISION.MEDIUM;\n }\n\n return (\"precision \" + precision + \" float;\\n\" + src);\n }\n else if (maxSupportedPrecision !== PRECISION.HIGH && src.substring(0, 15) === 'precision highp')\n {\n // precision was supplied, but at a level this device does not support, so downgrading to mediump.\n return src.replace('precision highp', 'precision mediump');\n }\n\n return src;\n}\n\nvar GLSL_TO_SIZE = {\n float: 1,\n vec2: 2,\n vec3: 3,\n vec4: 4,\n\n int: 1,\n ivec2: 2,\n ivec3: 3,\n ivec4: 4,\n\n bool: 1,\n bvec2: 2,\n bvec3: 3,\n bvec4: 4,\n\n mat2: 4,\n mat3: 9,\n mat4: 16,\n\n sampler2D: 1,\n};\n\n/**\n * @private\n * @method mapSize\n * @memberof PIXI.glCore.shader\n * @param type {String}\n * @return {Number}\n */\nfunction mapSize(type)\n{\n return GLSL_TO_SIZE[type];\n}\n\nvar GL_TABLE = null;\n\nvar GL_TO_GLSL_TYPES = {\n FLOAT: 'float',\n FLOAT_VEC2: 'vec2',\n FLOAT_VEC3: 'vec3',\n FLOAT_VEC4: 'vec4',\n\n INT: 'int',\n INT_VEC2: 'ivec2',\n INT_VEC3: 'ivec3',\n INT_VEC4: 'ivec4',\n\n BOOL: 'bool',\n BOOL_VEC2: 'bvec2',\n BOOL_VEC3: 'bvec3',\n BOOL_VEC4: 'bvec4',\n\n FLOAT_MAT2: 'mat2',\n FLOAT_MAT3: 'mat3',\n FLOAT_MAT4: 'mat4',\n\n SAMPLER_2D: 'sampler2D',\n SAMPLER_CUBE: 'samplerCube',\n SAMPLER_2D_ARRAY: 'sampler2DArray',\n};\n\nfunction mapType(gl, type)\n{\n if (!GL_TABLE)\n {\n var typeNames = Object.keys(GL_TO_GLSL_TYPES);\n\n GL_TABLE = {};\n\n for (var i = 0; i < typeNames.length; ++i)\n {\n var tn = typeNames[i];\n\n GL_TABLE[gl[tn]] = GL_TO_GLSL_TYPES[tn];\n }\n }\n\n return GL_TABLE[type];\n}\n\n// cv = CachedValue\n// v = value\n// ud = uniformData\n// uv = uniformValue\n// l = location\nvar GLSL_TO_SINGLE_SETTERS_CACHED = {\n\n float: \"\\n if(cv !== v)\\n {\\n cv.v = v;\\n gl.uniform1f(location, v)\\n }\",\n\n vec2: \"\\n if(cv[0] !== v[0] || cv[1] !== v[1])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n gl.uniform2f(location, v[0], v[1])\\n }\",\n\n vec3: \"\\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n cv[2] = v[2];\\n\\n gl.uniform3f(location, v[0], v[1], v[2])\\n }\",\n\n vec4: 'gl.uniform4f(location, v[0], v[1], v[2], v[3])',\n\n int: 'gl.uniform1i(location, v)',\n ivec2: 'gl.uniform2i(location, v[0], v[1])',\n ivec3: 'gl.uniform3i(location, v[0], v[1], v[2])',\n ivec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])',\n\n bool: 'gl.uniform1i(location, v)',\n bvec2: 'gl.uniform2i(location, v[0], v[1])',\n bvec3: 'gl.uniform3i(location, v[0], v[1], v[2])',\n bvec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])',\n\n mat2: 'gl.uniformMatrix2fv(location, false, v)',\n mat3: 'gl.uniformMatrix3fv(location, false, v)',\n mat4: 'gl.uniformMatrix4fv(location, false, v)',\n\n sampler2D: 'gl.uniform1i(location, v)',\n samplerCube: 'gl.uniform1i(location, v)',\n sampler2DArray: 'gl.uniform1i(location, v)',\n};\n\nvar GLSL_TO_ARRAY_SETTERS = {\n\n float: \"gl.uniform1fv(location, v)\",\n\n vec2: \"gl.uniform2fv(location, v)\",\n vec3: \"gl.uniform3fv(location, v)\",\n vec4: 'gl.uniform4fv(location, v)',\n\n mat4: 'gl.uniformMatrix4fv(location, false, v)',\n mat3: 'gl.uniformMatrix3fv(location, false, v)',\n mat2: 'gl.uniformMatrix2fv(location, false, v)',\n\n int: 'gl.uniform1iv(location, v)',\n ivec2: 'gl.uniform2iv(location, v)',\n ivec3: 'gl.uniform3iv(location, v)',\n ivec4: 'gl.uniform4iv(location, v)',\n\n bool: 'gl.uniform1iv(location, v)',\n bvec2: 'gl.uniform2iv(location, v)',\n bvec3: 'gl.uniform3iv(location, v)',\n bvec4: 'gl.uniform4iv(location, v)',\n\n sampler2D: 'gl.uniform1iv(location, v)',\n samplerCube: 'gl.uniform1iv(location, v)',\n sampler2DArray: 'gl.uniform1iv(location, v)',\n};\n\nfunction generateUniformsSync(group, uniformData)\n{\n var textureCount = 0;\n var func = \"var v = null;\\n var cv = null\\n var gl = renderer.gl\";\n\n for (var i in group.uniforms)\n {\n var data = uniformData[i];\n\n if (!data)\n {\n if (group.uniforms[i].group)\n {\n func += \"\\n renderer.shader.syncUniformGroup(uv.\" + i + \");\\n \";\n }\n\n continue;\n }\n\n // TODO && uniformData[i].value !== 0 <-- do we still need this?\n if (data.type === 'float' && data.size === 1)\n {\n func += \"\\n if(uv.\" + i + \" !== ud.\" + i + \".value)\\n {\\n ud.\" + i + \".value = uv.\" + i + \"\\n gl.uniform1f(ud.\" + i + \".location, uv.\" + i + \")\\n }\\n\";\n }\n /* eslint-disable max-len */\n else if ((data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray)\n /* eslint-disable max-len */\n {\n func += \"\\n renderer.texture.bind(uv.\" + i + \", \" + textureCount + \");\\n\\n if(ud.\" + i + \".value !== \" + textureCount + \")\\n {\\n ud.\" + i + \".value = \" + textureCount + \";\\n gl.uniform1i(ud.\" + i + \".location, \" + textureCount + \");\\n; // eslint-disable-line max-len\\n }\\n\";\n\n textureCount++;\n }\n else if (data.type === 'mat3' && data.size === 1)\n {\n if (group.uniforms[i].a !== undefined)\n {\n // TODO and some smart caching dirty ids here!\n func += \"\\n gl.uniformMatrix3fv(ud.\" + i + \".location, false, uv.\" + i + \".toArray(true));\\n \\n\";\n }\n else\n {\n func += \"\\n gl.uniformMatrix3fv(ud.\" + i + \".location, false, uv.\" + i + \");\\n \\n\";\n }\n }\n else if (data.type === 'vec2' && data.size === 1)\n {\n // TODO - do we need both here?\n // maybe we can get away with only using points?\n if (group.uniforms[i].x !== undefined)\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v.x || cv[1] !== v.y)\\n {\\n cv[0] = v.x;\\n cv[1] = v.y;\\n gl.uniform2f(ud.\" + i + \".location, v.x, v.y);\\n }\\n\";\n }\n else\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v[0] || cv[1] !== v[1])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n gl.uniform2f(ud.\" + i + \".location, v[0], v[1]);\\n }\\n \\n\";\n }\n }\n else if (data.type === 'vec4' && data.size === 1)\n {\n // TODO - do we need both here?\n // maybe we can get away with only using points?\n if (group.uniforms[i].width !== undefined)\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v.x || cv[1] !== v.y || cv[2] !== v.width || cv[3] !== v.height)\\n {\\n cv[0] = v.x;\\n cv[1] = v.y;\\n cv[2] = v.width;\\n cv[3] = v.height;\\n gl.uniform4f(ud.\" + i + \".location, v.x, v.y, v.width, v.height)\\n }\\n\";\n }\n else\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2] || cv[3] !== v[3])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n cv[2] = v[2];\\n cv[3] = v[3];\\n\\n gl.uniform4f(ud.\" + i + \".location, v[0], v[1], v[2], v[3])\\n }\\n \\n\";\n }\n }\n else\n {\n var templateType = (data.size === 1) ? GLSL_TO_SINGLE_SETTERS_CACHED : GLSL_TO_ARRAY_SETTERS;\n\n var template = templateType[data.type].replace('location', (\"ud.\" + i + \".location\"));\n\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n \" + template + \";\\n\";\n }\n }\n\n return new Function('ud', 'uv', 'renderer', func); // eslint-disable-line no-new-func\n}\n\nvar fragTemplate = [\n 'precision mediump float;',\n 'void main(void){',\n 'float test = 0.1;',\n '%forloop%',\n 'gl_FragColor = vec4(0.0);',\n '}' ].join('\\n');\n\nfunction checkMaxIfStatementsInShader(maxIfs, gl)\n{\n if (maxIfs === 0)\n {\n throw new Error('Invalid value of `0` passed to `checkMaxIfStatementsInShader`');\n }\n\n var shader = gl.createShader(gl.FRAGMENT_SHADER);\n\n while (true) // eslint-disable-line no-constant-condition\n {\n var fragmentSrc = fragTemplate.replace(/%forloop%/gi, generateIfTestSrc(maxIfs));\n\n gl.shaderSource(shader, fragmentSrc);\n gl.compileShader(shader);\n\n if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS))\n {\n maxIfs = (maxIfs / 2) | 0;\n }\n else\n {\n // valid!\n break;\n }\n }\n\n return maxIfs;\n}\n\nfunction generateIfTestSrc(maxIfs)\n{\n var src = '';\n\n for (var i = 0; i < maxIfs; ++i)\n {\n if (i > 0)\n {\n src += '\\nelse ';\n }\n\n if (i < maxIfs - 1)\n {\n src += \"if(test == \" + i + \".0){}\";\n }\n }\n\n return src;\n}\n\n// Cache the result to prevent running this over and over\nvar unsafeEval;\n\n/**\n * Not all platforms allow to generate function code (e.g., `new Function`).\n * this provides the platform-level detection.\n *\n * @private\n * @returns {boolean}\n */\nfunction unsafeEvalSupported()\n{\n if (typeof unsafeEval === 'boolean')\n {\n return unsafeEval;\n }\n\n try\n {\n /* eslint-disable no-new-func */\n var func = new Function('param1', 'param2', 'param3', 'return param1[param2] === param3;');\n /* eslint-enable no-new-func */\n\n unsafeEval = func({ a: 'b' }, 'a', 'b') === true;\n }\n catch (e)\n {\n unsafeEval = false;\n }\n\n return unsafeEval;\n}\n\nvar defaultFragment = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n gl_FragColor *= texture2D(uSampler, vTextureCoord);\\n}\";\n\nvar defaultVertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void){\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n vTextureCoord = aTextureCoord;\\n}\\n\";\n\n// import * as from '../systems/shader/shader';\n\nvar UID$3 = 0;\n\nvar nameCache = {};\n\n/**\n * Helper class to create a shader program.\n *\n * @class\n * @memberof PIXI\n */\nvar Program = function Program(vertexSrc, fragmentSrc, name)\n{\n if ( name === void 0 ) name = 'pixi-shader';\n\n this.id = UID$3++;\n\n /**\n * The vertex shader.\n *\n * @member {string}\n */\n this.vertexSrc = vertexSrc || Program.defaultVertexSrc;\n\n /**\n * The fragment shader.\n *\n * @member {string}\n */\n this.fragmentSrc = fragmentSrc || Program.defaultFragmentSrc;\n\n this.vertexSrc = this.vertexSrc.trim();\n this.fragmentSrc = this.fragmentSrc.trim();\n\n if (this.vertexSrc.substring(0, 8) !== '#version')\n {\n name = name.replace(/\\s+/g, '-');\n\n if (nameCache[name])\n {\n nameCache[name]++;\n name += \"-\" + (nameCache[name]);\n }\n else\n {\n nameCache[name] = 1;\n }\n\n this.vertexSrc = \"#define SHADER_NAME \" + name + \"\\n\" + (this.vertexSrc);\n this.fragmentSrc = \"#define SHADER_NAME \" + name + \"\\n\" + (this.fragmentSrc);\n\n this.vertexSrc = setPrecision(this.vertexSrc, settings.PRECISION_VERTEX, PRECISION.HIGH);\n this.fragmentSrc = setPrecision(this.fragmentSrc, settings.PRECISION_FRAGMENT, getMaxFragmentPrecision());\n }\n\n // currently this does not extract structs only default types\n this.extractData(this.vertexSrc, this.fragmentSrc);\n\n // this is where we store shader references..\n this.glPrograms = {};\n\n this.syncUniforms = null;\n};\n\nvar staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } };\n\n/**\n * Extracts the data for a buy creating a small test program\n * or reading the src directly.\n * @protected\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n */\nProgram.prototype.extractData = function extractData (vertexSrc, fragmentSrc)\n{\n var gl = getTestContext();\n\n if (gl)\n {\n var program = compileProgram(gl, vertexSrc, fragmentSrc);\n\n this.attributeData = this.getAttributeData(program, gl);\n this.uniformData = this.getUniformData(program, gl);\n\n gl.deleteProgram(program);\n }\n else\n {\n this.uniformData = {};\n this.attributeData = {};\n }\n};\n\n/**\n * returns the attribute data from the program\n * @private\n *\n * @param {WebGLProgram} [program] - the WebGL program\n * @param {WebGLRenderingContext} [gl] - the WebGL context\n *\n * @returns {object} the attribute data for this program\n */\nProgram.prototype.getAttributeData = function getAttributeData (program, gl)\n{\n var attributes = {};\n var attributesArray = [];\n\n var totalAttributes = gl.getProgramParameter(program, gl.ACTIVE_ATTRIBUTES);\n\n for (var i = 0; i < totalAttributes; i++)\n {\n var attribData = gl.getActiveAttrib(program, i);\n var type = mapType(gl, attribData.type);\n\n /*eslint-disable */\n var data = {\n type: type,\n name: attribData.name,\n size: mapSize(type),\n location: 0,\n };\n /* eslint-enable */\n\n attributes[attribData.name] = data;\n attributesArray.push(data);\n }\n\n attributesArray.sort(function (a, b) { return (a.name > b.name) ? 1 : -1; }); // eslint-disable-line no-confusing-arrow\n\n for (var i$1 = 0; i$1 < attributesArray.length; i$1++)\n {\n attributesArray[i$1].location = i$1;\n }\n\n return attributes;\n};\n\n/**\n * returns the uniform data from the program\n * @private\n *\n * @param {webGL-program} [program] - the webgl program\n * @param {context} [gl] - the WebGL context\n *\n * @returns {object} the uniform data for this program\n */\nProgram.prototype.getUniformData = function getUniformData (program, gl)\n{\n var uniforms = {};\n\n var totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS);\n\n // TODO expose this as a prop?\n // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$');\n // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$');\n\n for (var i = 0; i < totalUniforms; i++)\n {\n var uniformData = gl.getActiveUniform(program, i);\n var name = uniformData.name.replace(/\\[.*?\\]/, '');\n\n var isArray = uniformData.name.match(/\\[.*?\\]/, '');\n var type = mapType(gl, uniformData.type);\n\n /*eslint-disable */\n uniforms[name] = {\n type: type,\n size: uniformData.size,\n isArray:isArray,\n value: defaultValue(type, uniformData.size),\n };\n /* eslint-enable */\n }\n\n return uniforms;\n};\n\n/**\n * The default vertex shader source\n *\n * @static\n * @constant\n * @member {string}\n */\nstaticAccessors.defaultVertexSrc.get = function ()\n{\n return defaultVertex;\n};\n\n/**\n * The default fragment shader source\n *\n * @static\n * @constant\n * @member {string}\n */\nstaticAccessors.defaultFragmentSrc.get = function ()\n{\n return defaultFragment;\n};\n\n/**\n * A short hand function to create a program based of a vertex and fragment shader\n * this method will also check to see if there is a cached program.\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones.\n *\n * @returns {PIXI.Program} an shiny new Pixi shader!\n */\nProgram.from = function from (vertexSrc, fragmentSrc, name)\n{\n var key = vertexSrc + fragmentSrc;\n\n var program = ProgramCache[key];\n\n if (!program)\n {\n ProgramCache[key] = program = new Program(vertexSrc, fragmentSrc, name);\n }\n\n return program;\n};\n\nObject.defineProperties( Program, staticAccessors );\n\n/**\n * A helper class for shaders\n *\n * @class\n * @memberof PIXI\n */\nvar Shader = function Shader(program, uniforms)\n{\n /**\n * Program that the shader uses\n *\n * @member {PIXI.Program}\n */\n this.program = program;\n\n // lets see whats been passed in\n // uniforms should be converted to a uniform group\n if (uniforms)\n {\n if (uniforms instanceof UniformGroup)\n {\n this.uniformGroup = uniforms;\n }\n else\n {\n this.uniformGroup = new UniformGroup(uniforms);\n }\n }\n else\n {\n this.uniformGroup = new UniformGroup({});\n }\n\n // time to build some getters and setters!\n // I guess down the line this could sort of generate an instruction list rather than use dirty ids?\n // does the trick for now though!\n for (var i in program.uniformData)\n {\n if (this.uniformGroup.uniforms[i] instanceof Array)\n {\n this.uniformGroup.uniforms[i] = new Float32Array(this.uniformGroup.uniforms[i]);\n }\n }\n};\n\nvar prototypeAccessors$2 = { uniforms: { configurable: true } };\n\n// TODO move to shader system..\nShader.prototype.checkUniformExists = function checkUniformExists (name, group)\n{\n if (group.uniforms[name])\n {\n return true;\n }\n\n for (var i in group.uniforms)\n {\n var uniform = group.uniforms[i];\n\n if (uniform.group)\n {\n if (this.checkUniformExists(name, uniform))\n {\n return true;\n }\n }\n }\n\n return false;\n};\n\nShader.prototype.destroy = function destroy ()\n{\n // usage count on programs?\n // remove if not used!\n this.uniformGroup = null;\n};\n\n/**\n * Shader uniform values, shortcut for `uniformGroup.uniforms`\n * @readonly\n * @member {object}\n */\nprototypeAccessors$2.uniforms.get = function ()\n{\n return this.uniformGroup.uniforms;\n};\n\n/**\n * A short hand function to create a shader based of a vertex and fragment shader\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones.\n *\n * @returns {PIXI.Shader} an shiny new Pixi shader!\n */\nShader.from = function from (vertexSrc, fragmentSrc, uniforms)\n{\n var program = Program.from(vertexSrc, fragmentSrc);\n\n return new Shader(program, uniforms);\n};\n\nObject.defineProperties( Shader.prototype, prototypeAccessors$2 );\n\n/* eslint-disable max-len */\n\nvar BLEND = 0;\nvar OFFSET = 1;\nvar CULLING = 2;\nvar DEPTH_TEST = 3;\nvar WINDING = 4;\n\n/**\n * This is a WebGL state, and is is passed The WebGL StateManager.\n *\n * Each mesh rendered may require WebGL to be in a different state.\n * For example you may want different blend mode or to enable polygon offsets\n *\n * @class\n * @memberof PIXI\n */\nvar State = function State()\n{\n this.data = 0;\n\n this.blendMode = BLEND_MODES.NORMAL;\n this.polygonOffset = 0;\n\n this.blend = true;\n // this.depthTest = true;\n};\n\nvar prototypeAccessors$3 = { blend: { configurable: true },offsets: { configurable: true },culling: { configurable: true },depthTest: { configurable: true },clockwiseFrontFace: { configurable: true },blendMode: { configurable: true },polygonOffset: { configurable: true } };\n\n/**\n * Activates blending of the computed fragment color values\n *\n * @member {boolean}\n */\nprototypeAccessors$3.blend.get = function ()\n{\n return !!(this.data & (1 << BLEND));\n};\n\nprototypeAccessors$3.blend.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << BLEND)) !== value)\n {\n this.data ^= (1 << BLEND);\n }\n};\n\n/**\n * Activates adding an offset to depth values of polygon's fragments\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.offsets.get = function ()\n{\n return !!(this.data & (1 << OFFSET));\n};\n\nprototypeAccessors$3.offsets.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << OFFSET)) !== value)\n {\n this.data ^= (1 << OFFSET);\n }\n};\n\n/**\n * Activates culling of polygons.\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.culling.get = function ()\n{\n return !!(this.data & (1 << CULLING));\n};\n\nprototypeAccessors$3.culling.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << CULLING)) !== value)\n {\n this.data ^= (1 << CULLING);\n }\n};\n\n/**\n * Activates depth comparisons and updates to the depth buffer.\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.depthTest.get = function ()\n{\n return !!(this.data & (1 << DEPTH_TEST));\n};\n\nprototypeAccessors$3.depthTest.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << DEPTH_TEST)) !== value)\n {\n this.data ^= (1 << DEPTH_TEST);\n }\n};\n\n/**\n * Specifies whether or not front or back-facing polygons can be culled.\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.clockwiseFrontFace.get = function ()\n{\n return !!(this.data & (1 << WINDING));\n};\n\nprototypeAccessors$3.clockwiseFrontFace.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << WINDING)) !== value)\n {\n this.data ^= (1 << WINDING);\n }\n};\n\n/**\n * The blend mode to be applied when this state is set. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n * Setting this mode to anything other than NO_BLEND will automatically switch blending on.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\nprototypeAccessors$3.blendMode.get = function ()\n{\n return this._blendMode;\n};\n\nprototypeAccessors$3.blendMode.set = function (value) // eslint-disable-line require-jsdoc\n{\n this.blend = (value !== BLEND_MODES.NONE);\n this._blendMode = value;\n};\n\n/**\n * The polygon offset. Setting this property to anything other than 0 will automatically enable polygon offset fill.\n *\n * @member {number}\n * @default 0\n */\nprototypeAccessors$3.polygonOffset.get = function ()\n{\n return this._polygonOffset;\n};\n\nprototypeAccessors$3.polygonOffset.set = function (value) // eslint-disable-line require-jsdoc\n{\n this.offsets = !!value;\n this._polygonOffset = value;\n};\n\nState.for2d = function for2d ()\n{\n var state = new State();\n\n state.depthTest = false;\n state.blend = true;\n\n return state;\n};\n\nObject.defineProperties( State.prototype, prototypeAccessors$3 );\n\nvar defaultVertex$1 = \"attribute vec2 aVertexPosition;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nuniform vec4 inputSize;\\nuniform vec4 outputFrame;\\n\\nvec4 filterVertexPosition( void )\\n{\\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\\n\\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\\n}\\n\\nvec2 filterTextureCoord( void )\\n{\\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\\n}\\n\\nvoid main(void)\\n{\\n gl_Position = filterVertexPosition();\\n vTextureCoord = filterTextureCoord();\\n}\\n\";\n\nvar defaultFragment$1 = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n gl_FragColor = texture2D(uSampler, vTextureCoord);\\n}\\n\";\n\n/**\n * Filter is a special type of WebGL shader that is applied to the screen.\n *\n * {@link http://pixijs.io/examples/#/filters/blur-filter.js Example} of the\n * {@link PIXI.filters.BlurFilter BlurFilter}.\n *\n * ### Usage\n * Filters can be applied to any DisplayObject or Container.\n * PixiJS' `FilterSystem` renders the container into temporary Framebuffer,\n * then filter renders it to the screen.\n * Multiple filters can be added to the `filters` array property and stacked on each other.\n *\n * ```\n * const filter = new PIXI.Filter(myShaderVert, myShaderFrag, { myUniform: 0.5 });\n * const container = new PIXI.Container();\n * container.filters = [filter];\n * ```\n *\n * ### Previous Version Differences\n *\n * In PixiJS **v3**, a filter was always applied to _whole screen_.\n *\n * In PixiJS **v4**, a filter can be applied _only part of the screen_.\n * Developers had to create a set of uniforms to deal with coordinates.\n *\n * In PixiJS **v5** combines _both approaches_.\n * Developers can use normal coordinates of v3 and then allow filter to use partial Framebuffers,\n * bringing those extra uniforms into account.\n *\n * Also be aware that we have changed default vertex shader, please consult\n * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}.\n *\n * ### Built-in Uniforms\n *\n * PixiJS viewport uses screen (CSS) coordinates, `(0, 0, renderer.screen.width, renderer.screen.height)`,\n * and `projectionMatrix` uniform maps it to the gl viewport.\n *\n * **uSampler**\n *\n * The most important uniform is the input texture that container was rendered into.\n * _Important note: as with all Framebuffers in PixiJS, both input and output are\n * premultiplied by alpha._\n *\n * By default, input normalized coordinates are passed to fragment shader with `vTextureCoord`.\n * Use it to sample the input.\n *\n * ```\n * const fragment = `\n * varying vec2 vTextureCoord;\n * uniform sampler2D uSampler;\n * void main(void)\n * {\n * gl_FragColor = texture2D(uSampler, vTextureCoord);\n * }\n * `;\n *\n * const myFilter = new PIXI.Filter(null, fragment);\n * ```\n *\n * This filter is just one uniform less than {@link PIXI.filters.AlphaFilter AlphaFilter}.\n *\n * **outputFrame**\n *\n * The `outputFrame` holds the rectangle where filter is applied in screen (CSS) coordinates.\n * It's the same as `renderer.screen` for a fullscreen filter.\n * Only a part of `outputFrame.zw` size of temporary Framebuffer is used,\n * `(0, 0, outputFrame.width, outputFrame.height)`,\n *\n * Filters uses this quad to normalized (0-1) space, its passed into `aVertexPosition` attribute.\n * To calculate vertex position in screen space using normalized (0-1) space:\n *\n * ```\n * vec4 filterVertexPosition( void )\n * {\n * vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n * return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n * }\n * ```\n *\n * **inputSize**\n *\n * Temporary framebuffer is different, it can be either the size of screen, either power-of-two.\n * The `inputSize.xy` are size of temporary framebuffer that holds input.\n * The `inputSize.zw` is inverted, it's a shortcut to evade division inside the shader.\n *\n * Set `inputSize.xy = outputFrame.zw` for a fullscreen filter.\n *\n * To calculate input normalized coordinate, you have to map it to filter normalized space.\n * Multiply by `outputFrame.zw` to get input coordinate.\n * Divide by `inputSize.xy` to get input normalized coordinate.\n *\n * ```\n * vec2 filterTextureCoord( void )\n * {\n * return aVertexPosition * (outputFrame.zw * inputSize.zw); // same as /inputSize.xy\n * }\n * ```\n * **resolution**\n *\n * The `resolution` is the ratio of screen (CSS) pixels to real pixels.\n *\n * **inputPixel**\n *\n * `inputPixel.xy` is the size of framebuffer in real pixels, same as `inputSize.xy * resolution`\n * `inputPixel.zw` is inverted `inputPixel.xy`.\n *\n * It's handy for filters that use neighbour pixels, like {@link PIXI.filters.FXAAFilter FXAAFilter}.\n *\n * **inputClamp**\n *\n * If you try to get info from outside of used part of Framebuffer - you'll get undefined behaviour.\n * For displacements, coordinates has to be clamped.\n *\n * The `inputClamp.xy` is left-top pixel center, you may ignore it, because we use left-top part of Framebuffer\n * `inputClamp.zw` is bottom-right pixel center.\n *\n * ```\n * vec4 color = texture2D(uSampler, clamp(modifigedTextureCoord, inputClamp.xy, inputClamp.zw))\n * ```\n * OR\n * ```\n * vec4 color = texture2D(uSampler, min(modifigedTextureCoord, inputClamp.zw))\n * ```\n *\n * ### Additional Information\n *\n * Complete documentation on Filter usage is located in the\n * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}.\n *\n * Since PixiJS only had a handful of built-in filters, additional filters can be downloaded\n * {@link https://github.com/pixijs/pixi-filters here} from the PixiJS Filters repository.\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.Shader\n */\nvar Filter = /*@__PURE__*/(function (Shader) {\n function Filter(vertexSrc, fragmentSrc, uniforms)\n {\n var program = Program.from(vertexSrc || Filter.defaultVertexSrc,\n fragmentSrc || Filter.defaultFragmentSrc);\n\n Shader.call(this, program, uniforms);\n\n /**\n * The padding of the filter. Some filters require extra space to breath such as a blur.\n * Increasing this will add extra width and height to the bounds of the object that the\n * filter is applied to.\n *\n * @member {number}\n */\n this.padding = 0;\n\n /**\n * The resolution of the filter. Setting this to be lower will lower the quality but\n * increase the performance of the filter.\n *\n * @member {number}\n */\n this.resolution = settings.FILTER_RESOLUTION;\n\n /**\n * If enabled is true the filter is applied, if false it will not.\n *\n * @member {boolean}\n */\n this.enabled = true;\n\n /**\n * If enabled, PixiJS will fit the filter area into boundaries for better performance.\n * Switch it off if it does not work for specific shader.\n *\n * @member {boolean}\n */\n this.autoFit = true;\n\n /**\n * Legacy filters use position and uvs from attributes\n * @member {boolean}\n * @readonly\n */\n this.legacy = !!this.program.attributeData.aTextureCoord;\n\n /**\n * The WebGL state the filter requires to render\n * @member {PIXI.State}\n */\n this.state = new State();\n }\n\n if ( Shader ) Filter.__proto__ = Shader;\n Filter.prototype = Object.create( Shader && Shader.prototype );\n Filter.prototype.constructor = Filter;\n\n var prototypeAccessors = { blendMode: { configurable: true } };\n var staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } };\n\n /**\n * Applies the filter\n *\n * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it\n * @param {object} [currentState] - It's current state of filter.\n * There are some useful properties in the currentState :\n * target, filters, sourceFrame, destinationFrame, renderTarget, resolution\n */\n Filter.prototype.apply = function apply (filterManager, input, output, clear, currentState)\n {\n // do as you please!\n\n filterManager.applyFilter(this, input, output, clear, currentState);\n\n // or just do a regular render..\n };\n\n /**\n * Sets the blendmode of the filter\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n */\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n prototypeAccessors.blendMode.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.state.blendMode = value;\n };\n\n /**\n * The default vertex shader source\n *\n * @static\n * @type {string}\n * @constant\n */\n staticAccessors.defaultVertexSrc.get = function ()\n {\n return defaultVertex$1;\n };\n\n /**\n * The default fragment shader source\n *\n * @static\n * @type {string}\n * @constant\n */\n staticAccessors.defaultFragmentSrc.get = function ()\n {\n return defaultFragment$1;\n };\n\n Object.defineProperties( Filter.prototype, prototypeAccessors );\n Object.defineProperties( Filter, staticAccessors );\n\n return Filter;\n}(Shader));\n\n/**\n * Used for caching shader IDs\n *\n * @static\n * @type {object}\n * @protected\n */\nFilter.SOURCE_KEY_MAP = {};\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 otherMatrix;\\n\\nvarying vec2 vMaskCoord;\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vMaskCoord;\\nvarying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform sampler2D mask;\\nuniform float alpha;\\nuniform float npmAlpha;\\nuniform vec4 maskClamp;\\n\\nvoid main(void)\\n{\\n float clip = step(3.5,\\n step(maskClamp.x, vMaskCoord.x) +\\n step(maskClamp.y, vMaskCoord.y) +\\n step(vMaskCoord.x, maskClamp.z) +\\n step(vMaskCoord.y, maskClamp.w));\\n\\n vec4 original = texture2D(uSampler, vTextureCoord);\\n vec4 masky = texture2D(mask, vMaskCoord);\\n float alphaMul = 1.0 - npmAlpha * (1.0 - masky.a);\\n\\n original *= (alphaMul * masky.r * alpha * clip);\\n\\n gl_FragColor = original;\\n}\\n\";\n\nvar tempMat = new Matrix();\n\n/**\n * Class controls uv mapping from Texture normal space to BaseTexture normal space.\n *\n * Takes `trim` and `rotate` into account. May contain clamp settings for Meshes and TilingSprite.\n *\n * Can be used in Texture `uvMatrix` field, or separately, you can use different clamp settings on the same texture.\n * If you want to add support for texture region of certain feature or filter, that's what you're looking for.\n *\n * Takes track of Texture changes through `_lastTextureID` private field.\n * Use `update()` method call to track it from outside.\n *\n * @see PIXI.Texture\n * @see PIXI.Mesh\n * @see PIXI.TilingSprite\n * @class\n * @memberof PIXI\n */\nvar TextureMatrix = function TextureMatrix(texture, clampMargin)\n{\n this._texture = texture;\n\n /**\n * Matrix operation that converts texture region coords to texture coords\n * @member {PIXI.Matrix}\n * @readonly\n */\n this.mapCoord = new Matrix();\n\n /**\n * Clamp region for normalized coords, left-top pixel center in xy , bottom-right in zw.\n * Calculated based on clampOffset.\n * @member {Float32Array}\n * @readonly\n */\n this.uClampFrame = new Float32Array(4);\n\n /**\n * Normalized clamp offset.\n * Calculated based on clampOffset.\n * @member {Float32Array}\n * @readonly\n */\n this.uClampOffset = new Float32Array(2);\n\n /**\n * Tracks Texture frame changes\n * @member {number}\n * @protected\n */\n this._updateID = -1;\n\n /**\n * Changes frame clamping\n * Works with TilingSprite and Mesh\n * Change to 1.5 if you texture has repeated right and bottom lines, that leads to smoother borders\n *\n * @default 0\n * @member {number}\n */\n this.clampOffset = 0;\n\n /**\n * Changes frame clamping\n * Works with TilingSprite and Mesh\n * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas\n *\n * @default 0.5\n * @member {number}\n */\n this.clampMargin = (typeof clampMargin === 'undefined') ? 0.5 : clampMargin;\n\n /**\n * If texture size is the same as baseTexture\n * @member {boolean}\n * @default false\n * @readonly\n */\n this.isSimple = false;\n};\n\nvar prototypeAccessors$4 = { texture: { configurable: true } };\n\n/**\n * texture property\n * @member {PIXI.Texture}\n */\nprototypeAccessors$4.texture.get = function ()\n{\n return this._texture;\n};\n\nprototypeAccessors$4.texture.set = function (value) // eslint-disable-line require-jsdoc\n{\n this._texture = value;\n this._updateID = -1;\n};\n\n/**\n * Multiplies uvs array to transform\n * @param {Float32Array} uvs mesh uvs\n * @param {Float32Array} [out=uvs] output\n * @returns {Float32Array} output\n */\nTextureMatrix.prototype.multiplyUvs = function multiplyUvs (uvs, out)\n{\n if (out === undefined)\n {\n out = uvs;\n }\n\n var mat = this.mapCoord;\n\n for (var i = 0; i < uvs.length; i += 2)\n {\n var x = uvs[i];\n var y = uvs[i + 1];\n\n out[i] = (x * mat.a) + (y * mat.c) + mat.tx;\n out[i + 1] = (x * mat.b) + (y * mat.d) + mat.ty;\n }\n\n return out;\n};\n\n/**\n * updates matrices if texture was changed\n * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case\n * @returns {boolean} whether or not it was updated\n */\nTextureMatrix.prototype.update = function update (forceUpdate)\n{\n var tex = this._texture;\n\n if (!tex || !tex.valid)\n {\n return false;\n }\n\n if (!forceUpdate\n && this._updateID === tex._updateID)\n {\n return false;\n }\n\n this._updateID = tex._updateID;\n\n var uvs = tex._uvs;\n\n this.mapCoord.set(uvs.x1 - uvs.x0, uvs.y1 - uvs.y0, uvs.x3 - uvs.x0, uvs.y3 - uvs.y0, uvs.x0, uvs.y0);\n\n var orig = tex.orig;\n var trim = tex.trim;\n\n if (trim)\n {\n tempMat.set(orig.width / trim.width, 0, 0, orig.height / trim.height,\n -trim.x / trim.width, -trim.y / trim.height);\n this.mapCoord.append(tempMat);\n }\n\n var texBase = tex.baseTexture;\n var frame = this.uClampFrame;\n var margin = this.clampMargin / texBase.resolution;\n var offset = this.clampOffset;\n\n frame[0] = (tex._frame.x + margin + offset) / texBase.width;\n frame[1] = (tex._frame.y + margin + offset) / texBase.height;\n frame[2] = (tex._frame.x + tex._frame.width - margin + offset) / texBase.width;\n frame[3] = (tex._frame.y + tex._frame.height - margin + offset) / texBase.height;\n this.uClampOffset[0] = offset / texBase.realWidth;\n this.uClampOffset[1] = offset / texBase.realHeight;\n\n this.isSimple = tex._frame.width === texBase.width\n && tex._frame.height === texBase.height\n && tex.rotate === 0;\n\n return true;\n};\n\nObject.defineProperties( TextureMatrix.prototype, prototypeAccessors$4 );\n\n/**\n * This handles a Sprite acting as a mask, as opposed to a Graphic.\n *\n * WebGL only.\n *\n * @class\n * @extends PIXI.Filter\n * @memberof PIXI\n */\nvar SpriteMaskFilter = /*@__PURE__*/(function (Filter) {\n function SpriteMaskFilter(sprite)\n {\n var maskMatrix = new Matrix();\n\n Filter.call(this, vertex, fragment);\n\n sprite.renderable = false;\n\n /**\n * Sprite mask\n * @member {PIXI.Sprite}\n */\n this.maskSprite = sprite;\n\n /**\n * Mask matrix\n * @member {PIXI.Matrix}\n */\n this.maskMatrix = maskMatrix;\n }\n\n if ( Filter ) SpriteMaskFilter.__proto__ = Filter;\n SpriteMaskFilter.prototype = Object.create( Filter && Filter.prototype );\n SpriteMaskFilter.prototype.constructor = SpriteMaskFilter;\n\n /**\n * Applies the filter\n *\n * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it.\n */\n SpriteMaskFilter.prototype.apply = function apply (filterManager, input, output, clear)\n {\n var maskSprite = this.maskSprite;\n var tex = this.maskSprite.texture;\n\n if (!tex.valid)\n {\n return;\n }\n if (!tex.transform)\n {\n // margin = 0.0, let it bleed a bit, shader code becomes easier\n // assuming that atlas textures were made with 1-pixel padding\n tex.transform = new TextureMatrix(tex, 0.0);\n }\n tex.transform.update();\n\n this.uniforms.npmAlpha = tex.baseTexture.premultiplyAlpha ? 0.0 : 1.0;\n this.uniforms.mask = tex;\n // get _normalized sprite texture coords_ and convert them to _normalized atlas texture coords_ with `prepend`\n this.uniforms.otherMatrix = filterManager.calculateSpriteMatrix(this.maskMatrix, maskSprite)\n .prepend(tex.transform.mapCoord);\n this.uniforms.alpha = maskSprite.worldAlpha;\n this.uniforms.maskClamp = tex.transform.uClampFrame;\n\n filterManager.applyFilter(this, input, output, clear);\n };\n\n return SpriteMaskFilter;\n}(Filter));\n\n/**\n * System plugin to the renderer to manage masks.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar MaskSystem = /*@__PURE__*/(function (System) {\n function MaskSystem(renderer)\n {\n System.call(this, renderer);\n\n // TODO - we don't need both!\n /**\n * `true` if current pushed masked is scissor\n * @member {boolean}\n * @readonly\n */\n this.scissor = false;\n\n /**\n * Mask data\n * @member {PIXI.Graphics}\n * @readonly\n */\n this.scissorData = null;\n\n /**\n * Target to mask\n * @member {PIXI.DisplayObject}\n * @readonly\n */\n this.scissorRenderTarget = null;\n\n /**\n * Enable scissor\n * @member {boolean}\n * @readonly\n */\n this.enableScissor = false;\n\n /**\n * Pool of used sprite mask filters\n * @member {PIXI.SpriteMaskFilter[]}\n * @readonly\n */\n this.alphaMaskPool = [];\n\n /**\n * Current index of alpha mask pool\n * @member {number}\n * @default 0\n * @readonly\n */\n this.alphaMaskIndex = 0;\n }\n\n if ( System ) MaskSystem.__proto__ = System;\n MaskSystem.prototype = Object.create( System && System.prototype );\n MaskSystem.prototype.constructor = MaskSystem;\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.DisplayObject} target - Display Object to push the mask to\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.push = function push (target, maskData)\n {\n // TODO the root check means scissor rect will not\n // be used on render textures more info here:\n // https://github.com/pixijs/pixi.js/pull/3545\n\n if (maskData.isSprite)\n {\n this.pushSpriteMask(target, maskData);\n }\n else if (this.enableScissor\n && !this.scissor\n && this.renderer._activeRenderTarget.root\n && !this.renderer.stencil.stencilMaskStack.length\n && maskData.isFastRect())\n {\n var matrix = maskData.worldTransform;\n\n var rot = Math.atan2(matrix.b, matrix.a);\n\n // use the nearest degree!\n rot = Math.round(rot * (180 / Math.PI));\n\n if (rot % 90)\n {\n this.pushStencilMask(maskData);\n }\n else\n {\n this.pushScissorMask(target, maskData);\n }\n }\n else\n {\n this.pushStencilMask(maskData);\n }\n };\n\n /**\n * Removes the last mask from the mask stack and doesn't return it.\n *\n * @param {PIXI.DisplayObject} target - Display Object to pop the mask from\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pop = function pop (target, maskData)\n {\n if (maskData.isSprite)\n {\n this.popSpriteMask(target, maskData);\n }\n else if (this.enableScissor && !this.renderer.stencil.stencilMaskStack.length)\n {\n this.popScissorMask(target, maskData);\n }\n else\n {\n this.popStencilMask(target, maskData);\n }\n };\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.RenderTexture} target - Display Object to push the sprite mask to\n * @param {PIXI.Sprite} maskData - Sprite to be used as the mask\n */\n MaskSystem.prototype.pushSpriteMask = function pushSpriteMask (target, maskData)\n {\n var alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex];\n\n if (!alphaMaskFilter)\n {\n alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex] = [new SpriteMaskFilter(maskData)];\n }\n\n alphaMaskFilter[0].resolution = this.renderer.resolution;\n alphaMaskFilter[0].maskSprite = maskData;\n\n var stashFilterArea = target.filterArea;\n\n target.filterArea = maskData.getBounds(true);\n this.renderer.filter.push(target, alphaMaskFilter);\n target.filterArea = stashFilterArea;\n\n this.alphaMaskIndex++;\n };\n\n /**\n * Removes the last filter from the filter stack and doesn't return it.\n *\n */\n MaskSystem.prototype.popSpriteMask = function popSpriteMask ()\n {\n this.renderer.filter.pop();\n this.alphaMaskIndex--;\n };\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pushStencilMask = function pushStencilMask (maskData)\n {\n this.renderer.batch.flush();\n this.renderer.stencil.pushStencil(maskData);\n };\n\n /**\n * Removes the last filter from the filter stack and doesn't return it.\n *\n */\n MaskSystem.prototype.popStencilMask = function popStencilMask ()\n {\n // this.renderer.currentRenderer.stop();\n this.renderer.stencil.popStencil();\n };\n\n /**\n *\n * @param {PIXI.DisplayObject} target - Display Object to push the mask to\n * @param {PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pushScissorMask = function pushScissorMask (target, maskData)\n {\n maskData.renderable = true;\n\n var renderTarget = this.renderer._activeRenderTarget;\n\n var bounds = maskData.getBounds();\n\n bounds.fit(renderTarget.size);\n maskData.renderable = false;\n\n this.renderer.gl.enable(this.renderer.gl.SCISSOR_TEST);\n\n var resolution = this.renderer.resolution;\n\n this.renderer.gl.scissor(\n bounds.x * resolution,\n (renderTarget.root ? renderTarget.size.height - bounds.y - bounds.height : bounds.y) * resolution,\n bounds.width * resolution,\n bounds.height * resolution\n );\n\n this.scissorRenderTarget = renderTarget;\n this.scissorData = maskData;\n this.scissor = true;\n };\n\n /**\n * Pop scissor mask\n *\n */\n MaskSystem.prototype.popScissorMask = function popScissorMask ()\n {\n this.scissorRenderTarget = null;\n this.scissorData = null;\n this.scissor = false;\n\n // must be scissor!\n var ref = this.renderer;\n var gl = ref.gl;\n\n gl.disable(gl.SCISSOR_TEST);\n };\n\n return MaskSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage stencils (used for masks).\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar StencilSystem = /*@__PURE__*/(function (System) {\n function StencilSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * The mask stack\n * @member {PIXI.Graphics[]}\n */\n this.stencilMaskStack = [];\n }\n\n if ( System ) StencilSystem.__proto__ = System;\n StencilSystem.prototype = Object.create( System && System.prototype );\n StencilSystem.prototype.constructor = StencilSystem;\n\n /**\n * Changes the mask stack that is used by this System.\n *\n * @param {PIXI.Graphics[]} stencilMaskStack - The mask stack\n */\n StencilSystem.prototype.setMaskStack = function setMaskStack (stencilMaskStack)\n {\n var gl = this.renderer.gl;\n var curStackLen = this.stencilMaskStack.length;\n\n this.stencilMaskStack = stencilMaskStack;\n if (stencilMaskStack.length !== curStackLen)\n {\n if (stencilMaskStack.length === 0)\n {\n gl.disable(gl.STENCIL_TEST);\n }\n else\n {\n gl.enable(gl.STENCIL_TEST);\n this._useCurrent();\n }\n }\n };\n\n /**\n * Applies the Mask and adds it to the current stencil stack. @alvin\n *\n * @param {PIXI.Graphics} graphics - The mask\n */\n StencilSystem.prototype.pushStencil = function pushStencil (graphics)\n {\n var gl = this.renderer.gl;\n var prevMaskCount = this.stencilMaskStack.length;\n\n if (prevMaskCount === 0)\n {\n // force use stencil texture in current framebuffer\n this.renderer.framebuffer.forceStencil();\n gl.enable(gl.STENCIL_TEST);\n }\n\n this.stencilMaskStack.push(graphics);\n\n // Increment the reference stencil value where the new mask overlaps with the old ones.\n gl.colorMask(false, false, false, false);\n gl.stencilFunc(gl.EQUAL, prevMaskCount, this._getBitwiseMask());\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.INCR);\n\n graphics.renderable = true;\n graphics.render(this.renderer);\n this.renderer.batch.flush();\n graphics.renderable = false;\n\n this._useCurrent();\n };\n\n /**\n * Removes the last mask from the stencil stack. @alvin\n */\n StencilSystem.prototype.popStencil = function popStencil ()\n {\n var gl = this.renderer.gl;\n var graphics = this.stencilMaskStack.pop();\n\n if (this.stencilMaskStack.length === 0)\n {\n // the stack is empty!\n gl.disable(gl.STENCIL_TEST);\n gl.clear(gl.STENCIL_BUFFER_BIT);\n gl.clearStencil(0);\n }\n else\n {\n // Decrement the reference stencil value where the popped mask overlaps with the other ones\n gl.colorMask(false, false, false, false);\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.DECR);\n\n graphics.renderable = true;\n graphics.render(this.renderer);\n this.renderer.batch.flush();\n graphics.renderable = false;\n\n this._useCurrent();\n }\n };\n\n /**\n * Setup renderer to use the current stencil data.\n * @private\n */\n StencilSystem.prototype._useCurrent = function _useCurrent ()\n {\n var gl = this.renderer.gl;\n\n gl.colorMask(true, true, true, true);\n gl.stencilFunc(gl.EQUAL, this.stencilMaskStack.length, this._getBitwiseMask());\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.KEEP);\n };\n\n /**\n * Fill 1s equal to the number of acitve stencil masks.\n * @private\n * @return {number} The bitwise mask.\n */\n StencilSystem.prototype._getBitwiseMask = function _getBitwiseMask ()\n {\n return (1 << this.stencilMaskStack.length) - 1;\n };\n\n /**\n * Destroys the mask stack.\n *\n */\n StencilSystem.prototype.destroy = function destroy ()\n {\n System.prototype.destroy.call(this, this);\n\n this.stencilMaskStack = null;\n };\n\n return StencilSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage the projection matrix.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\n\nvar ProjectionSystem = /*@__PURE__*/(function (System) {\n function ProjectionSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.destinationFrame = null;\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.sourceFrame = null;\n\n /**\n * Default destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.defaultFrame = null;\n\n /**\n * Project matrix\n * @member {PIXI.Matrix}\n * @readonly\n */\n this.projectionMatrix = new Matrix();\n\n /**\n * A transform that will be appended to the projection matrix\n * if null, nothing will be applied\n * @member {PIXI.Matrix}\n */\n this.transform = null;\n }\n\n if ( System ) ProjectionSystem.__proto__ = System;\n ProjectionSystem.prototype = Object.create( System && System.prototype );\n ProjectionSystem.prototype.constructor = ProjectionSystem;\n\n /**\n * Updates the projection matrix based on a projection frame (which is a rectangle)\n *\n * @param {PIXI.Rectangle} destinationFrame - The destination frame.\n * @param {PIXI.Rectangle} sourceFrame - The source frame.\n * @param {Number} resolution - Resolution\n * @param {boolean} root - If is root\n */\n ProjectionSystem.prototype.update = function update (destinationFrame, sourceFrame, resolution, root)\n {\n this.destinationFrame = destinationFrame || this.destinationFrame || this.defaultFrame;\n this.sourceFrame = sourceFrame || this.sourceFrame || destinationFrame;\n\n this.calculateProjection(this.destinationFrame, this.sourceFrame, resolution, root);\n\n if (this.transform)\n {\n this.projectionMatrix.append(this.transform);\n }\n\n var renderer = this.renderer;\n\n renderer.globalUniforms.uniforms.projectionMatrix = this.projectionMatrix;\n renderer.globalUniforms.update();\n\n // this will work for now\n // but would be sweet to stick and even on the global uniforms..\n if (renderer.shader.shader)\n {\n renderer.shader.syncUniformGroup(renderer.shader.shader.uniforms.globals);\n }\n };\n\n /**\n * Updates the projection matrix based on a projection frame (which is a rectangle)\n *\n * @param {PIXI.Rectangle} destinationFrame - The destination frame.\n * @param {PIXI.Rectangle} sourceFrame - The source frame.\n * @param {Number} resolution - Resolution\n * @param {boolean} root - If is root\n */\n ProjectionSystem.prototype.calculateProjection = function calculateProjection (destinationFrame, sourceFrame, resolution, root)\n {\n var pm = this.projectionMatrix;\n\n // I don't think we will need this line..\n // pm.identity();\n\n if (!root)\n {\n pm.a = (1 / destinationFrame.width * 2) * resolution;\n pm.d = (1 / destinationFrame.height * 2) * resolution;\n\n pm.tx = -1 - (sourceFrame.x * pm.a);\n pm.ty = -1 - (sourceFrame.y * pm.d);\n }\n else\n {\n pm.a = (1 / destinationFrame.width * 2) * resolution;\n pm.d = (-1 / destinationFrame.height * 2) * resolution;\n\n pm.tx = -1 - (sourceFrame.x * pm.a);\n pm.ty = 1 - (sourceFrame.y * pm.d);\n }\n };\n\n /**\n * Sets the transform of the active render target to the given matrix\n *\n * @param {PIXI.Matrix} matrix - The transformation matrix\n */\n ProjectionSystem.prototype.setTransform = function setTransform ()// matrix)\n {\n // this._activeRenderTarget.transform = matrix;\n };\n\n return ProjectionSystem;\n}(System));\n\nvar tempRect = new Rectangle();\n\n/**\n * System plugin to the renderer to manage render textures.\n *\n * Should be added after FramebufferSystem\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\n\nvar RenderTextureSystem = /*@__PURE__*/(function (System) {\n function RenderTextureSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * The clear background color as rgba\n * @member {number[]}\n */\n this.clearColor = renderer._backgroundColorRgba;\n\n // TODO move this property somewhere else!\n /**\n * List of masks for the StencilSystem\n * @member {PIXI.Graphics[]}\n * @readonly\n */\n this.defaultMaskStack = [];\n\n // empty render texture?\n /**\n * Render texture\n * @member {PIXI.RenderTexture}\n * @readonly\n */\n this.current = null;\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.sourceFrame = new Rectangle();\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.destinationFrame = new Rectangle();\n }\n\n if ( System ) RenderTextureSystem.__proto__ = System;\n RenderTextureSystem.prototype = Object.create( System && System.prototype );\n RenderTextureSystem.prototype.constructor = RenderTextureSystem;\n\n /**\n * Bind the current render texture\n * @param {PIXI.RenderTexture} [renderTexture] - RenderTexture to bind, by default its `null`, the screen\n * @param {PIXI.Rectangle} [sourceFrame] - part of screen that is mapped to the renderTexture\n * @param {PIXI.Rectangle} [destinationFrame] - part of renderTexture, by default it has the same size as sourceFrame\n */\n RenderTextureSystem.prototype.bind = function bind (renderTexture, sourceFrame, destinationFrame)\n {\n if ( renderTexture === void 0 ) renderTexture = null;\n\n this.current = renderTexture;\n\n var renderer = this.renderer;\n\n var resolution;\n\n if (renderTexture)\n {\n var baseTexture = renderTexture.baseTexture;\n\n resolution = baseTexture.resolution;\n\n if (!destinationFrame)\n {\n tempRect.width = baseTexture.realWidth;\n tempRect.height = baseTexture.realHeight;\n\n destinationFrame = tempRect;\n }\n\n if (!sourceFrame)\n {\n sourceFrame = destinationFrame;\n }\n\n this.renderer.framebuffer.bind(baseTexture.framebuffer, destinationFrame);\n\n this.renderer.projection.update(destinationFrame, sourceFrame, resolution, false);\n this.renderer.stencil.setMaskStack(baseTexture.stencilMaskStack);\n }\n else\n {\n resolution = this.renderer.resolution;\n\n // TODO these validation checks happen deeper down..\n // thing they can be avoided..\n if (!destinationFrame)\n {\n tempRect.width = renderer.width;\n tempRect.height = renderer.height;\n\n destinationFrame = tempRect;\n }\n\n if (!sourceFrame)\n {\n sourceFrame = destinationFrame;\n }\n\n renderer.framebuffer.bind(null, destinationFrame);\n\n // TODO store this..\n this.renderer.projection.update(destinationFrame, sourceFrame, resolution, true);\n this.renderer.stencil.setMaskStack(this.defaultMaskStack);\n }\n\n this.sourceFrame.copyFrom(sourceFrame);\n\n this.destinationFrame.x = destinationFrame.x / resolution;\n this.destinationFrame.y = destinationFrame.y / resolution;\n\n this.destinationFrame.width = destinationFrame.width / resolution;\n this.destinationFrame.height = destinationFrame.height / resolution;\n\n if (sourceFrame === destinationFrame)\n {\n this.sourceFrame.copyFrom(this.destinationFrame);\n }\n };\n\n /**\n * Erases the render texture and fills the drawing area with a colour\n *\n * @param {number[]} [clearColor] - The color as rgba, default to use the renderer backgroundColor\n * @return {PIXI.Renderer} Returns itself.\n */\n RenderTextureSystem.prototype.clear = function clear (clearColor)\n {\n if (this.current)\n {\n clearColor = clearColor || this.current.baseTexture.clearColor;\n }\n else\n {\n clearColor = clearColor || this.clearColor;\n }\n\n this.renderer.framebuffer.clear(clearColor[0], clearColor[1], clearColor[2], clearColor[3]);\n };\n\n RenderTextureSystem.prototype.resize = function resize ()// screenWidth, screenHeight)\n {\n // resize the root only!\n this.bind(null);\n };\n\n /**\n * Resets renderTexture state\n */\n RenderTextureSystem.prototype.reset = function reset ()\n {\n this.bind(null);\n };\n\n return RenderTextureSystem;\n}(System));\n\n/**\n * Helper class to create a WebGL Program\n *\n * @class\n * @memberof PIXI\n */\nvar GLProgram = function GLProgram(program, uniformData)\n{\n /**\n * The shader program\n *\n * @member {WebGLProgram}\n */\n this.program = program;\n\n /**\n * holds the uniform data which contains uniform locations\n * and current uniform values used for caching and preventing unneeded GPU commands\n * @member {Object}\n */\n this.uniformData = uniformData;\n\n /**\n * uniformGroups holds the various upload functions for the shader. Each uniform group\n * and program have a unique upload function generated.\n * @member {Object}\n */\n this.uniformGroups = {};\n};\n\n/**\n * Destroys this program\n */\nGLProgram.prototype.destroy = function destroy ()\n{\n this.uniformData = null;\n this.uniformGroups = null;\n this.program = null;\n};\n\nvar UID$4 = 0;\n\n/**\n * System plugin to the renderer to manage shaders.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar ShaderSystem = /*@__PURE__*/(function (System) {\n function ShaderSystem(renderer)\n {\n System.call(this, renderer);\n\n // Validation check that this environment support `new Function`\n this.systemCheck();\n\n /**\n * The current WebGL rendering context\n *\n * @member {WebGLRenderingContext}\n */\n this.gl = null;\n\n this.shader = null;\n this.program = null;\n\n /**\n * Cache to holds the generated functions. Stored against UniformObjects unique signature\n * @type {Object}\n * @private\n */\n this.cache = {};\n\n this.id = UID$4++;\n }\n\n if ( System ) ShaderSystem.__proto__ = System;\n ShaderSystem.prototype = Object.create( System && System.prototype );\n ShaderSystem.prototype.constructor = ShaderSystem;\n\n /**\n * Overrideable function by `@pixi/unsafe-eval` to silence\n * throwing an error if platform doesn't support unsafe-evals.\n *\n * @private\n */\n ShaderSystem.prototype.systemCheck = function systemCheck ()\n {\n if (!unsafeEvalSupported())\n {\n throw new Error('Current environment does not allow unsafe-eval, '\n + 'please use @pixi/unsafe-eval module to enable support.');\n }\n };\n\n ShaderSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n this.reset();\n };\n\n /**\n * Changes the current shader to the one given in parameter\n *\n * @param {PIXI.Shader} shader - the new shader\n * @param {boolean} dontSync - false if the shader should automatically sync its uniforms.\n * @returns {PIXI.GLProgram} the glProgram that belongs to the shader.\n */\n ShaderSystem.prototype.bind = function bind (shader, dontSync)\n {\n shader.uniforms.globals = this.renderer.globalUniforms;\n\n var program = shader.program;\n var glProgram = program.glPrograms[this.renderer.CONTEXT_UID] || this.generateShader(shader);\n\n this.shader = shader;\n\n // TODO - some current Pixi plugins bypass this.. so it not safe to use yet..\n if (this.program !== program)\n {\n this.program = program;\n this.gl.useProgram(glProgram.program);\n }\n\n if (!dontSync)\n {\n this.syncUniformGroup(shader.uniformGroup);\n }\n\n return glProgram;\n };\n\n /**\n * Uploads the uniforms values to the currently bound shader.\n *\n * @param {object} uniforms - the uniforms values that be applied to the current shader\n */\n ShaderSystem.prototype.setUniforms = function setUniforms (uniforms)\n {\n var shader = this.shader.program;\n var glProgram = shader.glPrograms[this.renderer.CONTEXT_UID];\n\n shader.syncUniforms(glProgram.uniformData, uniforms, this.renderer);\n };\n\n ShaderSystem.prototype.syncUniformGroup = function syncUniformGroup (group)\n {\n var glProgram = this.getglProgram();\n\n if (!group.static || group.dirtyId !== glProgram.uniformGroups[group.id])\n {\n glProgram.uniformGroups[group.id] = group.dirtyId;\n\n this.syncUniforms(group, glProgram);\n }\n };\n\n /**\n * Overrideable by the @pixi/unsafe-eval package to use static\n * syncUnforms instead.\n *\n * @private\n */\n ShaderSystem.prototype.syncUniforms = function syncUniforms (group, glProgram)\n {\n var syncFunc = group.syncUniforms[this.shader.program.id] || this.createSyncGroups(group);\n\n syncFunc(glProgram.uniformData, group.uniforms, this.renderer);\n };\n\n ShaderSystem.prototype.createSyncGroups = function createSyncGroups (group)\n {\n var id = this.getSignature(group, this.shader.program.uniformData);\n\n if (!this.cache[id])\n {\n this.cache[id] = generateUniformsSync(group, this.shader.program.uniformData);\n }\n\n group.syncUniforms[this.shader.program.id] = this.cache[id];\n\n return group.syncUniforms[this.shader.program.id];\n };\n\n /**\n * Takes a uniform group and data and generates a unique signature for them.\n *\n * @param {PIXI.UniformGroup} group the uniform group to get signature of\n * @param {Object} uniformData uniform information generated by the shader\n * @returns {String} Unique signature of the uniform group\n * @private\n */\n ShaderSystem.prototype.getSignature = function getSignature (group, uniformData)\n {\n var uniforms = group.uniforms;\n\n var strings = [];\n\n for (var i in uniforms)\n {\n strings.push(i);\n\n if (uniformData[i])\n {\n strings.push(uniformData[i].type);\n }\n }\n\n return strings.join('-');\n };\n\n /**\n * Returns the underlying GLShade rof the currently bound shader.\n * This can be handy for when you to have a little more control over the setting of your uniforms.\n *\n * @return {PIXI.GLProgram} the glProgram for the currently bound Shader for this context\n */\n ShaderSystem.prototype.getglProgram = function getglProgram ()\n {\n if (this.shader)\n {\n return this.shader.program.glPrograms[this.renderer.CONTEXT_UID];\n }\n\n return null;\n };\n\n /**\n * Generates a glProgram version of the Shader provided.\n *\n * @private\n * @param {PIXI.Shader} shader the shader that the glProgram will be based on.\n * @return {PIXI.GLProgram} A shiny new glProgram!\n */\n ShaderSystem.prototype.generateShader = function generateShader (shader)\n {\n var gl = this.gl;\n\n var program = shader.program;\n\n var attribMap = {};\n\n for (var i in program.attributeData)\n {\n attribMap[i] = program.attributeData[i].location;\n }\n\n var shaderProgram = compileProgram(gl, program.vertexSrc, program.fragmentSrc, attribMap);\n var uniformData = {};\n\n for (var i$1 in program.uniformData)\n {\n var data = program.uniformData[i$1];\n\n uniformData[i$1] = {\n location: gl.getUniformLocation(shaderProgram, i$1),\n value: defaultValue(data.type, data.size),\n };\n }\n\n var glProgram = new GLProgram(shaderProgram, uniformData);\n\n program.glPrograms[this.renderer.CONTEXT_UID] = glProgram;\n\n return glProgram;\n };\n\n /**\n * Resets ShaderSystem state, does not affect WebGL state\n */\n ShaderSystem.prototype.reset = function reset ()\n {\n this.program = null;\n this.shader = null;\n };\n\n /**\n * Destroys this System and removes all its textures\n */\n ShaderSystem.prototype.destroy = function destroy ()\n {\n // TODO implement destroy method for ShaderSystem\n this.destroyed = true;\n };\n\n return ShaderSystem;\n}(System));\n\n/**\n * Maps gl blend combinations to WebGL.\n *\n * @memberof PIXI\n * @function mapWebGLBlendModesToPixi\n * @private\n * @param {WebGLRenderingContext} gl - The rendering context.\n * @param {number[][]} [array=[]] - The array to output into.\n * @return {number[][]} Mapped modes.\n */\nfunction mapWebGLBlendModesToPixi(gl, array)\n{\n if ( array === void 0 ) array = [];\n\n // TODO - premultiply alpha would be different.\n // add a boolean for that!\n array[BLEND_MODES.NORMAL] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.ADD] = [gl.ONE, gl.ONE];\n array[BLEND_MODES.MULTIPLY] = [gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SCREEN] = [gl.ONE, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.OVERLAY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DARKEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.LIGHTEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR_DODGE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR_BURN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.HARD_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SOFT_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DIFFERENCE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.EXCLUSION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.HUE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SATURATION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.LUMINOSITY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.NONE] = [0, 0];\n\n // not-premultiplied blend modes\n array[BLEND_MODES.NORMAL_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.ADD_NPM] = [gl.SRC_ALPHA, gl.ONE, gl.ONE, gl.ONE];\n array[BLEND_MODES.SCREEN_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n\n // composite operations\n array[BLEND_MODES.SRC_IN] = [gl.DST_ALPHA, gl.ZERO];\n array[BLEND_MODES.SRC_OUT] = [gl.ONE_MINUS_DST_ALPHA, gl.ZERO];\n array[BLEND_MODES.SRC_ATOP] = [gl.DST_ALPHA, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DST_OVER] = [gl.ONE_MINUS_DST_ALPHA, gl.ONE];\n array[BLEND_MODES.DST_IN] = [gl.ZERO, gl.SRC_ALPHA];\n array[BLEND_MODES.DST_OUT] = [gl.ZERO, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DST_ATOP] = [gl.ONE_MINUS_DST_ALPHA, gl.SRC_ALPHA];\n\n // SUBTRACT from flash\n array[BLEND_MODES.SUBTRACT] = [gl.ONE, gl.ONE, gl.ONE, gl.ONE, gl.FUNC_REVERSE_SUBTRACT, gl.FUNC_ADD];\n\n return array;\n}\n\nvar BLEND$1 = 0;\nvar OFFSET$1 = 1;\nvar CULLING$1 = 2;\nvar DEPTH_TEST$1 = 3;\nvar WINDING$1 = 4;\n\n/**\n * System plugin to the renderer to manage WebGL state machines.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar StateSystem = /*@__PURE__*/(function (System) {\n function StateSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * GL context\n * @member {WebGLRenderingContext}\n * @readonly\n */\n this.gl = null;\n\n /**\n * State ID\n * @member {number}\n * @readonly\n */\n this.stateId = 0;\n\n /**\n * Polygon offset\n * @member {number}\n * @readonly\n */\n this.polygonOffset = 0;\n\n /**\n * Blend mode\n * @member {number}\n * @default PIXI.BLEND_MODES.NONE\n * @readonly\n */\n this.blendMode = BLEND_MODES.NONE;\n\n /**\n * Whether current blend equation is different\n * @member {boolean}\n * @protected\n */\n this._blendEq = false;\n\n /**\n * Collection of calls\n * @member {function[]}\n * @readonly\n */\n this.map = [];\n\n // map functions for when we set state..\n this.map[BLEND$1] = this.setBlend;\n this.map[OFFSET$1] = this.setOffset;\n this.map[CULLING$1] = this.setCullFace;\n this.map[DEPTH_TEST$1] = this.setDepthTest;\n this.map[WINDING$1] = this.setFrontFace;\n\n /**\n * Collection of check calls\n * @member {function[]}\n * @readonly\n */\n this.checks = [];\n\n /**\n * Default WebGL State\n * @member {PIXI.State}\n * @readonly\n */\n this.defaultState = new State();\n this.defaultState.blend = true;\n this.defaultState.depth = true;\n }\n\n if ( System ) StateSystem.__proto__ = System;\n StateSystem.prototype = Object.create( System && System.prototype );\n StateSystem.prototype.constructor = StateSystem;\n\n StateSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n\n this.blendModes = mapWebGLBlendModesToPixi(gl);\n\n this.set(this.defaultState);\n\n this.reset();\n };\n\n /**\n * Sets the current state\n *\n * @param {*} state - The state to set.\n */\n StateSystem.prototype.set = function set (state)\n {\n state = state || this.defaultState;\n\n // TODO maybe to an object check? ( this.state === state )?\n if (this.stateId !== state.data)\n {\n var diff = this.stateId ^ state.data;\n var i = 0;\n\n // order from least to most common\n while (diff)\n {\n if (diff & 1)\n {\n // state change!\n this.map[i].call(this, !!(state.data & (1 << i)));\n }\n\n diff = diff >> 1;\n i++;\n }\n\n this.stateId = state.data;\n }\n\n // based on the above settings we check for specific modes..\n // for example if blend is active we check and set the blend modes\n // or of polygon offset is active we check the poly depth.\n for (var i$1 = 0; i$1 < this.checks.length; i$1++)\n {\n this.checks[i$1](this, state);\n }\n };\n\n /**\n * Sets the state, when previous state is unknown\n *\n * @param {*} state - The state to set\n */\n StateSystem.prototype.forceState = function forceState (state)\n {\n state = state || this.defaultState;\n for (var i = 0; i < this.map.length; i++)\n {\n this.map[i].call(this, !!(state.data & (1 << i)));\n }\n for (var i$1 = 0; i$1 < this.checks.length; i$1++)\n {\n this.checks[i$1](this, state);\n }\n\n this.stateId = state.data;\n };\n\n /**\n * Enables or disabled blending.\n *\n * @param {boolean} value - Turn on or off webgl blending.\n */\n StateSystem.prototype.setBlend = function setBlend (value)\n {\n this.updateCheck(StateSystem.checkBlendMode, value);\n\n this.gl[value ? 'enable' : 'disable'](this.gl.BLEND);\n };\n\n /**\n * Enables or disable polygon offset fill\n *\n * @param {boolean} value - Turn on or off webgl polygon offset testing.\n */\n StateSystem.prototype.setOffset = function setOffset (value)\n {\n this.updateCheck(StateSystem.checkPolygonOffset, value);\n\n this.gl[value ? 'enable' : 'disable'](this.gl.POLYGON_OFFSET_FILL);\n };\n\n /**\n * Sets whether to enable or disable depth test.\n *\n * @param {boolean} value - Turn on or off webgl depth testing.\n */\n StateSystem.prototype.setDepthTest = function setDepthTest (value)\n {\n this.gl[value ? 'enable' : 'disable'](this.gl.DEPTH_TEST);\n };\n\n /**\n * Sets whether to enable or disable cull face.\n *\n * @param {boolean} value - Turn on or off webgl cull face.\n */\n StateSystem.prototype.setCullFace = function setCullFace (value)\n {\n this.gl[value ? 'enable' : 'disable'](this.gl.CULL_FACE);\n };\n\n /**\n * Sets the gl front face.\n *\n * @param {boolean} value - true is clockwise and false is counter-clockwise\n */\n StateSystem.prototype.setFrontFace = function setFrontFace (value)\n {\n this.gl.frontFace(this.gl[value ? 'CW' : 'CCW']);\n };\n\n /**\n * Sets the blend mode.\n *\n * @param {number} value - The blend mode to set to.\n */\n StateSystem.prototype.setBlendMode = function setBlendMode (value)\n {\n if (value === this.blendMode)\n {\n return;\n }\n\n this.blendMode = value;\n\n var mode = this.blendModes[value];\n var gl = this.gl;\n\n if (mode.length === 2)\n {\n gl.blendFunc(mode[0], mode[1]);\n }\n else\n {\n gl.blendFuncSeparate(mode[0], mode[1], mode[2], mode[3]);\n }\n if (mode.length === 6)\n {\n this._blendEq = true;\n gl.blendEquationSeparate(mode[4], mode[5]);\n }\n else if (this._blendEq)\n {\n this._blendEq = false;\n gl.blendEquationSeparate(gl.FUNC_ADD, gl.FUNC_ADD);\n }\n };\n\n /**\n * Sets the polygon offset.\n *\n * @param {number} value - the polygon offset\n * @param {number} scale - the polygon offset scale\n */\n StateSystem.prototype.setPolygonOffset = function setPolygonOffset (value, scale)\n {\n this.gl.polygonOffset(value, scale);\n };\n\n // used\n /**\n * Resets all the logic and disables the vaos\n */\n StateSystem.prototype.reset = function reset ()\n {\n this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false);\n\n this.forceState(0);\n\n this._blendEq = true;\n this.blendMode = -1;\n this.setBlendMode(0);\n };\n\n /**\n * checks to see which updates should be checked based on which settings have been activated.\n * For example, if blend is enabled then we should check the blend modes each time the state is changed\n * or if polygon fill is activated then we need to check if the polygon offset changes.\n * The idea is that we only check what we have too.\n *\n * @param {Function} func the checking function to add or remove\n * @param {boolean} value should the check function be added or removed.\n */\n StateSystem.prototype.updateCheck = function updateCheck (func, value)\n {\n var index = this.checks.indexOf(func);\n\n if (value && index === -1)\n {\n this.checks.push(func);\n }\n else if (!value && index !== -1)\n {\n this.checks.splice(index, 1);\n }\n };\n\n /**\n * A private little wrapper function that we call to check the blend mode.\n *\n * @static\n * @private\n * @param {PIXI.StateSystem} System the System to perform the state check on\n * @param {PIXI.State} state the state that the blendMode will pulled from\n */\n StateSystem.checkBlendMode = function checkBlendMode (system, state)\n {\n system.setBlendMode(state.blendMode);\n };\n\n /**\n * A private little wrapper function that we call to check the polygon offset.\n *\n * @static\n * @private\n * @param {PIXI.StateSystem} System the System to perform the state check on\n * @param {PIXI.State} state the state that the blendMode will pulled from\n */\n StateSystem.checkPolygonOffset = function checkPolygonOffset (system, state)\n {\n system.setPolygonOffset(state.polygonOffset, 0);\n };\n\n return StateSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage texture garbage collection on the GPU,\n * ensuring that it does not get clogged up with textures that are no longer being used.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar TextureGCSystem = /*@__PURE__*/(function (System) {\n function TextureGCSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Count\n * @member {number}\n * @readonly\n */\n this.count = 0;\n\n /**\n * Check count\n * @member {number}\n * @readonly\n */\n this.checkCount = 0;\n\n /**\n * Maximum idle time, in seconds\n * @member {number}\n * @see PIXI.settings.GC_MAX_IDLE\n */\n this.maxIdle = settings.GC_MAX_IDLE;\n\n /**\n * Maximum number of item to check\n * @member {number}\n * @see PIXI.settings.GC_MAX_CHECK_COUNT\n */\n this.checkCountMax = settings.GC_MAX_CHECK_COUNT;\n\n /**\n * Current garabage collection mode\n * @member {PIXI.GC_MODES}\n * @see PIXI.settings.GC_MODE\n */\n this.mode = settings.GC_MODE;\n }\n\n if ( System ) TextureGCSystem.__proto__ = System;\n TextureGCSystem.prototype = Object.create( System && System.prototype );\n TextureGCSystem.prototype.constructor = TextureGCSystem;\n\n /**\n * Checks to see when the last time a texture was used\n * if the texture has not been used for a specified amount of time it will be removed from the GPU\n */\n TextureGCSystem.prototype.postrender = function postrender ()\n {\n this.count++;\n\n if (this.mode === GC_MODES.MANUAL)\n {\n return;\n }\n\n this.checkCount++;\n\n if (this.checkCount > this.checkCountMax)\n {\n this.checkCount = 0;\n\n this.run();\n }\n };\n\n /**\n * Checks to see when the last time a texture was used\n * if the texture has not been used for a specified amount of time it will be removed from the GPU\n */\n TextureGCSystem.prototype.run = function run ()\n {\n var tm = this.renderer.texture;\n var managedTextures = tm.managedTextures;\n var wasRemoved = false;\n\n for (var i = 0; i < managedTextures.length; i++)\n {\n var texture = managedTextures[i];\n\n // only supports non generated textures at the moment!\n if (!texture.framebuffer && this.count - texture.touched > this.maxIdle)\n {\n tm.destroyTexture(texture, true);\n managedTextures[i] = null;\n wasRemoved = true;\n }\n }\n\n if (wasRemoved)\n {\n var j = 0;\n\n for (var i$1 = 0; i$1 < managedTextures.length; i$1++)\n {\n if (managedTextures[i$1] !== null)\n {\n managedTextures[j++] = managedTextures[i$1];\n }\n }\n\n managedTextures.length = j;\n }\n };\n\n /**\n * Removes all the textures within the specified displayObject and its children from the GPU\n *\n * @param {PIXI.DisplayObject} displayObject - the displayObject to remove the textures from.\n */\n TextureGCSystem.prototype.unload = function unload (displayObject)\n {\n var tm = this.renderer.textureSystem;\n\n // only destroy non generated textures\n if (displayObject._texture && displayObject._texture._glRenderTargets)\n {\n tm.destroyTexture(displayObject._texture);\n }\n\n for (var i = displayObject.children.length - 1; i >= 0; i--)\n {\n this.unload(displayObject.children[i]);\n }\n };\n\n return TextureGCSystem;\n}(System));\n\n/**\n * Internal texture for WebGL context\n * @class\n * @memberof PIXI\n */\nvar GLTexture = function GLTexture(texture)\n{\n /**\n * The WebGL texture\n * @member {WebGLTexture}\n */\n this.texture = texture;\n\n /**\n * Width of texture that was used in texImage2D\n * @member {number}\n */\n this.width = -1;\n\n /**\n * Height of texture that was used in texImage2D\n * @member {number}\n */\n this.height = -1;\n\n /**\n * Texture contents dirty flag\n * @member {number}\n */\n this.dirtyId = -1;\n\n /**\n * Texture style dirty flag\n * @member {number}\n */\n this.dirtyStyleId = -1;\n\n /**\n * Whether mip levels has to be generated\n * @member {boolean}\n */\n this.mipmap = false;\n\n /**\n * WrapMode copied from baseTexture\n * @member {number}\n */\n this.wrapMode = 33071;\n\n /**\n * Type copied from baseTexture\n * @member {number}\n */\n this.type = 6408;\n\n /**\n * Type copied from baseTexture\n * @member {number}\n */\n this.internalFormat = 5121;\n};\n\n/**\n * System plugin to the renderer to manage textures.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar TextureSystem = /*@__PURE__*/(function (System) {\n function TextureSystem(renderer)\n {\n System.call(this, renderer);\n\n // TODO set to max textures...\n /**\n * Bound textures\n * @member {PIXI.BaseTexture[]}\n * @readonly\n */\n this.boundTextures = [];\n /**\n * Current location\n * @member {number}\n * @readonly\n */\n this.currentLocation = -1;\n\n /**\n * List of managed textures\n * @member {PIXI.BaseTexture[]}\n * @readonly\n */\n this.managedTextures = [];\n\n /**\n * Did someone temper with textures state? We'll overwrite them when we need to unbind something.\n * @member {boolean}\n * @private\n */\n this._unknownBoundTextures = false;\n\n /**\n * BaseTexture value that shows that we don't know what is bound\n * @member {PIXI.BaseTexture}\n * @readonly\n */\n this.unknownTexture = new BaseTexture();\n }\n\n if ( System ) TextureSystem.__proto__ = System;\n TextureSystem.prototype = Object.create( System && System.prototype );\n TextureSystem.prototype.constructor = TextureSystem;\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n TextureSystem.prototype.contextChange = function contextChange ()\n {\n var gl = this.gl = this.renderer.gl;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n\n this.webGLVersion = this.renderer.context.webGLVersion;\n\n var maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS);\n\n this.boundTextures.length = maxTextures;\n\n for (var i = 0; i < maxTextures; i++)\n {\n this.boundTextures[i] = null;\n }\n\n // TODO move this.. to a nice make empty textures class..\n this.emptyTextures = {};\n\n var emptyTexture2D = new GLTexture(gl.createTexture());\n\n gl.bindTexture(gl.TEXTURE_2D, emptyTexture2D.texture);\n gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4));\n\n this.emptyTextures[gl.TEXTURE_2D] = emptyTexture2D;\n this.emptyTextures[gl.TEXTURE_CUBE_MAP] = new GLTexture(gl.createTexture());\n\n gl.bindTexture(gl.TEXTURE_CUBE_MAP, this.emptyTextures[gl.TEXTURE_CUBE_MAP].texture);\n\n for (var i$1 = 0; i$1 < 6; i$1++)\n {\n gl.texImage2D(gl.TEXTURE_CUBE_MAP_POSITIVE_X + i$1, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, null);\n }\n\n gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR);\n gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR);\n\n for (var i$2 = 0; i$2 < this.boundTextures.length; i$2++)\n {\n this.bind(null, i$2);\n }\n };\n\n /**\n * Bind a texture to a specific location\n *\n * If you want to unbind something, please use `unbind(texture)` instead of `bind(null, textureLocation)`\n *\n * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind\n * @param {number} [location=0] - Location to bind at\n */\n TextureSystem.prototype.bind = function bind (texture, location)\n {\n if ( location === void 0 ) location = 0;\n\n var ref = this;\n var gl = ref.gl;\n\n if (texture)\n {\n texture = texture.baseTexture || texture;\n\n if (texture.valid)\n {\n texture.touched = this.renderer.textureGC.count;\n\n var glTexture = texture._glTextures[this.CONTEXT_UID] || this.initTexture(texture);\n\n if (this.currentLocation !== location)\n {\n this.currentLocation = location;\n gl.activeTexture(gl.TEXTURE0 + location);\n }\n\n if (this.boundTextures[location] !== texture)\n {\n gl.bindTexture(texture.target, glTexture.texture);\n }\n\n if (glTexture.dirtyId !== texture.dirtyId)\n {\n this.updateTexture(texture);\n }\n\n this.boundTextures[location] = texture;\n }\n }\n else\n {\n if (this.currentLocation !== location)\n {\n this.currentLocation = location;\n gl.activeTexture(gl.TEXTURE0 + location);\n }\n\n gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[gl.TEXTURE_2D].texture);\n this.boundTextures[location] = null;\n }\n };\n\n /**\n * Resets texture location and bound textures\n *\n * Actual `bind(null, i)` calls will be performed at next `unbind()` call\n */\n TextureSystem.prototype.reset = function reset ()\n {\n this._unknownBoundTextures = true;\n this.currentLocation = -1;\n\n for (var i = 0; i < this.boundTextures.length; i++)\n {\n this.boundTextures[i] = this.unknownTexture;\n }\n };\n\n /**\n * Unbind a texture\n * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind\n */\n TextureSystem.prototype.unbind = function unbind (texture)\n {\n var ref = this;\n var gl = ref.gl;\n var boundTextures = ref.boundTextures;\n\n if (this._unknownBoundTextures)\n {\n this._unknownBoundTextures = false;\n // someone changed webGL state,\n // we have to be sure that our texture does not appear in multi-texture renderer samplers\n for (var i = 0; i < boundTextures.length; i++)\n {\n if (boundTextures[i] === this.unknownTexture)\n {\n this.bind(null, i);\n }\n }\n }\n\n for (var i$1 = 0; i$1 < boundTextures.length; i$1++)\n {\n if (boundTextures[i$1] === texture)\n {\n if (this.currentLocation !== i$1)\n {\n gl.activeTexture(gl.TEXTURE0 + i$1);\n this.currentLocation = i$1;\n }\n\n gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[texture.target].texture);\n boundTextures[i$1] = null;\n }\n }\n };\n\n /**\n * Initialize a texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to initialize\n */\n TextureSystem.prototype.initTexture = function initTexture (texture)\n {\n var glTexture = new GLTexture(this.gl.createTexture());\n\n // guarantee an update..\n glTexture.dirtyId = -1;\n\n texture._glTextures[this.CONTEXT_UID] = glTexture;\n\n this.managedTextures.push(texture);\n texture.on('dispose', this.destroyTexture, this);\n\n return glTexture;\n };\n\n TextureSystem.prototype.initTextureType = function initTextureType (texture, glTexture)\n {\n glTexture.internalFormat = texture.format;\n glTexture.type = texture.type;\n if (this.webGLVersion !== 2)\n {\n return;\n }\n var gl = this.renderer.gl;\n\n if (texture.type === gl.FLOAT\n && texture.format === gl.RGBA)\n {\n glTexture.internalFormat = gl.RGBA32F;\n }\n // that's WebGL1 HALF_FLOAT_OES\n // we have to convert it to WebGL HALF_FLOAT\n if (texture.type === TYPES.HALF_FLOAT)\n {\n glTexture.type = gl.HALF_FLOAT;\n }\n if (glTexture.type === gl.HALF_FLOAT\n && texture.format === gl.RGBA)\n {\n glTexture.internalFormat = gl.RGBA16F;\n }\n };\n\n /**\n * Update a texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to initialize\n */\n TextureSystem.prototype.updateTexture = function updateTexture (texture)\n {\n var glTexture = texture._glTextures[this.CONTEXT_UID];\n\n if (!glTexture)\n {\n return;\n }\n\n var renderer = this.renderer;\n\n this.initTextureType(texture, glTexture);\n\n if (texture.resource && texture.resource.upload(renderer, texture, glTexture))\n ;\n else\n {\n // default, renderTexture-like logic\n var width = texture.realWidth;\n var height = texture.realHeight;\n var gl = renderer.gl;\n\n if (glTexture.width !== width\n || glTexture.height !== height\n || glTexture.dirtyId < 0)\n {\n glTexture.width = width;\n glTexture.height = height;\n\n gl.texImage2D(texture.target, 0,\n glTexture.internalFormat,\n width,\n height,\n 0,\n texture.format,\n glTexture.type,\n null);\n }\n }\n\n // lets only update what changes..\n if (texture.dirtyStyleId !== glTexture.dirtyStyleId)\n {\n this.updateTextureStyle(texture);\n }\n glTexture.dirtyId = texture.dirtyId;\n };\n\n /**\n * Deletes the texture from WebGL\n *\n * @private\n * @param {PIXI.BaseTexture|PIXI.Texture} texture - the texture to destroy\n * @param {boolean} [skipRemove=false] - Whether to skip removing the texture from the TextureManager.\n */\n TextureSystem.prototype.destroyTexture = function destroyTexture (texture, skipRemove)\n {\n var ref = this;\n var gl = ref.gl;\n\n texture = texture.baseTexture || texture;\n\n if (texture._glTextures[this.CONTEXT_UID])\n {\n this.unbind(texture);\n\n gl.deleteTexture(texture._glTextures[this.CONTEXT_UID].texture);\n texture.off('dispose', this.destroyTexture, this);\n\n delete texture._glTextures[this.CONTEXT_UID];\n\n if (!skipRemove)\n {\n var i = this.managedTextures.indexOf(texture);\n\n if (i !== -1)\n {\n removeItems(this.managedTextures, i, 1);\n }\n }\n }\n };\n\n /**\n * Update texture style such as mipmap flag\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to update\n */\n TextureSystem.prototype.updateTextureStyle = function updateTextureStyle (texture)\n {\n var glTexture = texture._glTextures[this.CONTEXT_UID];\n\n if (!glTexture)\n {\n return;\n }\n\n if ((texture.mipmap === MIPMAP_MODES.POW2 || this.webGLVersion !== 2) && !texture.isPowerOfTwo)\n {\n glTexture.mipmap = 0;\n glTexture.wrapMode = WRAP_MODES.CLAMP;\n }\n else\n {\n glTexture.mipmap = texture.mipmap >= 1;\n glTexture.wrapMode = texture.wrapMode;\n }\n\n if (texture.resource && texture.resource.style(this.renderer, texture, glTexture))\n ;\n else\n {\n this.setStyle(texture, glTexture);\n }\n\n glTexture.dirtyStyleId = texture.dirtyStyleId;\n };\n\n /**\n * Set style for texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to update\n * @param {PIXI.GLTexture} glTexture\n */\n TextureSystem.prototype.setStyle = function setStyle (texture, glTexture)\n {\n var gl = this.gl;\n\n if (glTexture.mipmap)\n {\n gl.generateMipmap(texture.target);\n }\n\n gl.texParameteri(texture.target, gl.TEXTURE_WRAP_S, glTexture.wrapMode);\n gl.texParameteri(texture.target, gl.TEXTURE_WRAP_T, glTexture.wrapMode);\n\n if (glTexture.mipmap)\n {\n /* eslint-disable max-len */\n gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR_MIPMAP_LINEAR : gl.NEAREST_MIPMAP_NEAREST);\n /* eslint-disable max-len */\n\n var anisotropicExt = this.renderer.context.extensions.anisotropicFiltering;\n\n if (anisotropicExt && texture.anisotropicLevel > 0 && texture.scaleMode === SCALE_MODES.LINEAR)\n {\n var level = Math.min(texture.anisotropicLevel, gl.getParameter(anisotropicExt.MAX_TEXTURE_MAX_ANISOTROPY_EXT));\n\n gl.texParameterf(texture.target, anisotropicExt.TEXTURE_MAX_ANISOTROPY_EXT, level);\n }\n }\n else\n {\n gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST);\n }\n\n gl.texParameteri(texture.target, gl.TEXTURE_MAG_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST);\n };\n\n return TextureSystem;\n}(System));\n\n/**\n * Systems are individual components to the Renderer pipeline.\n * @namespace PIXI.systems\n */\n\nvar systems = ({\n FilterSystem: FilterSystem,\n BatchSystem: BatchSystem,\n ContextSystem: ContextSystem,\n FramebufferSystem: FramebufferSystem,\n GeometrySystem: GeometrySystem,\n MaskSystem: MaskSystem,\n StencilSystem: StencilSystem,\n ProjectionSystem: ProjectionSystem,\n RenderTextureSystem: RenderTextureSystem,\n ShaderSystem: ShaderSystem,\n StateSystem: StateSystem,\n TextureGCSystem: TextureGCSystem,\n TextureSystem: TextureSystem\n});\n\nvar tempMatrix = new Matrix();\n\n/**\n * The AbstractRenderer is the base for a PixiJS Renderer. It is extended by the {@link PIXI.CanvasRenderer}\n * and {@link PIXI.Renderer} which can be used for rendering a PixiJS scene.\n *\n * @abstract\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar AbstractRenderer = /*@__PURE__*/(function (EventEmitter) {\n function AbstractRenderer(system, options)\n {\n EventEmitter.call(this);\n\n // Add the default render options\n options = Object.assign({}, settings.RENDER_OPTIONS, options);\n\n // Deprecation notice for renderer roundPixels option\n if (options.roundPixels)\n {\n settings.ROUND_PIXELS = options.roundPixels;\n deprecation('5.0.0', 'Renderer roundPixels option is deprecated, please use PIXI.settings.ROUND_PIXELS', 2);\n }\n\n /**\n * The supplied constructor options.\n *\n * @member {Object}\n * @readOnly\n */\n this.options = options;\n\n /**\n * The type of the renderer.\n *\n * @member {number}\n * @default PIXI.RENDERER_TYPE.UNKNOWN\n * @see PIXI.RENDERER_TYPE\n */\n this.type = RENDERER_TYPE.UNKNOWN;\n\n /**\n * Measurements of the screen. (0, 0, screenWidth, screenHeight).\n *\n * Its safe to use as filterArea or hitArea for the whole stage.\n *\n * @member {PIXI.Rectangle}\n */\n this.screen = new Rectangle(0, 0, options.width, options.height);\n\n /**\n * The canvas element that everything is drawn to.\n *\n * @member {HTMLCanvasElement}\n */\n this.view = options.view || document.createElement('canvas');\n\n /**\n * The resolution / device pixel ratio of the renderer.\n *\n * @member {number}\n * @default 1\n */\n this.resolution = options.resolution || settings.RESOLUTION;\n\n /**\n * Whether the render view is transparent.\n *\n * @member {boolean}\n */\n this.transparent = options.transparent;\n\n /**\n * Whether CSS dimensions of canvas view should be resized to screen dimensions automatically.\n *\n * @member {boolean}\n */\n this.autoDensity = options.autoDensity || options.autoResize || false;\n // autoResize is deprecated, provides fallback support\n\n /**\n * The value of the preserveDrawingBuffer flag affects whether or not the contents of\n * the stencil buffer is retained after rendering.\n *\n * @member {boolean}\n */\n this.preserveDrawingBuffer = options.preserveDrawingBuffer;\n\n /**\n * This sets if the CanvasRenderer will clear the canvas or not before the new render pass.\n * If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every\n * frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect\n * to clear the canvas every frame. Disable this by setting this to false. For example, if\n * your game has a canvas filling background image you often don't need this set.\n *\n * @member {boolean}\n * @default\n */\n this.clearBeforeRender = options.clearBeforeRender;\n\n /**\n * The background color as a number.\n *\n * @member {number}\n * @protected\n */\n this._backgroundColor = 0x000000;\n\n /**\n * The background color as an [R, G, B] array.\n *\n * @member {number[]}\n * @protected\n */\n this._backgroundColorRgba = [0, 0, 0, 0];\n\n /**\n * The background color as a string.\n *\n * @member {string}\n * @protected\n */\n this._backgroundColorString = '#000000';\n\n this.backgroundColor = options.backgroundColor || this._backgroundColor; // run bg color setter\n\n /**\n * This temporary display object used as the parent of the currently being rendered item.\n *\n * @member {PIXI.DisplayObject}\n * @protected\n */\n this._tempDisplayObjectParent = new Container();\n\n /**\n * The last root object that the renderer tried to render.\n *\n * @member {PIXI.DisplayObject}\n * @protected\n */\n this._lastObjectRendered = this._tempDisplayObjectParent;\n\n /**\n * Collection of plugins.\n * @readonly\n * @member {object}\n */\n this.plugins = {};\n }\n\n if ( EventEmitter ) AbstractRenderer.__proto__ = EventEmitter;\n AbstractRenderer.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n AbstractRenderer.prototype.constructor = AbstractRenderer;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true },backgroundColor: { configurable: true } };\n\n /**\n * Initialize the plugins.\n *\n * @protected\n * @param {object} staticMap - The dictionary of statically saved plugins.\n */\n AbstractRenderer.prototype.initPlugins = function initPlugins (staticMap)\n {\n for (var o in staticMap)\n {\n this.plugins[o] = new (staticMap[o])(this);\n }\n };\n\n /**\n * Same as view.width, actual number of pixels in the canvas by horizontal.\n *\n * @member {number}\n * @readonly\n * @default 800\n */\n prototypeAccessors.width.get = function ()\n {\n return this.view.width;\n };\n\n /**\n * Same as view.height, actual number of pixels in the canvas by vertical.\n *\n * @member {number}\n * @readonly\n * @default 600\n */\n prototypeAccessors.height.get = function ()\n {\n return this.view.height;\n };\n\n /**\n * Resizes the screen and canvas to the specified width and height.\n * Canvas dimensions are multiplied by resolution.\n *\n * @param {number} screenWidth - The new width of the screen.\n * @param {number} screenHeight - The new height of the screen.\n */\n AbstractRenderer.prototype.resize = function resize (screenWidth, screenHeight)\n {\n this.screen.width = screenWidth;\n this.screen.height = screenHeight;\n\n this.view.width = screenWidth * this.resolution;\n this.view.height = screenHeight * this.resolution;\n\n if (this.autoDensity)\n {\n this.view.style.width = screenWidth + \"px\";\n this.view.style.height = screenHeight + \"px\";\n }\n };\n\n /**\n * Useful function that returns a texture of the display object that can then be used to create sprites\n * This can be quite useful if your displayObject is complicated and needs to be reused multiple times.\n *\n * @param {PIXI.DisplayObject} displayObject - The displayObject the object will be generated from.\n * @param {number} scaleMode - Should be one of the scaleMode consts.\n * @param {number} resolution - The resolution / device pixel ratio of the texture being generated.\n * @param {PIXI.Rectangle} [region] - The region of the displayObject, that shall be rendered,\n * if no region is specified, defaults to the local bounds of the displayObject.\n * @return {PIXI.RenderTexture} A texture of the graphics object.\n */\n AbstractRenderer.prototype.generateTexture = function generateTexture (displayObject, scaleMode, resolution, region)\n {\n region = region || displayObject.getLocalBounds();\n\n // minimum texture size is 1x1, 0x0 will throw an error\n if (region.width === 0) { region.width = 1; }\n if (region.height === 0) { region.height = 1; }\n\n var renderTexture = RenderTexture.create(region.width | 0, region.height | 0, scaleMode, resolution);\n\n tempMatrix.tx = -region.x;\n tempMatrix.ty = -region.y;\n\n this.render(displayObject, renderTexture, false, tempMatrix, !!displayObject.parent);\n\n return renderTexture;\n };\n\n /**\n * Removes everything from the renderer and optionally removes the Canvas DOM element.\n *\n * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM.\n */\n AbstractRenderer.prototype.destroy = function destroy (removeView)\n {\n for (var o in this.plugins)\n {\n this.plugins[o].destroy();\n this.plugins[o] = null;\n }\n\n if (removeView && this.view.parentNode)\n {\n this.view.parentNode.removeChild(this.view);\n }\n\n this.plugins = null;\n\n this.type = RENDERER_TYPE.UNKNOWN;\n\n this.view = null;\n\n this.screen = null;\n\n this.resolution = 0;\n\n this.transparent = false;\n\n this.autoDensity = false;\n\n this.blendModes = null;\n\n this.options = null;\n\n this.preserveDrawingBuffer = false;\n this.clearBeforeRender = false;\n\n this._backgroundColor = 0;\n this._backgroundColorRgba = null;\n this._backgroundColorString = null;\n\n this._tempDisplayObjectParent = null;\n this._lastObjectRendered = null;\n };\n\n /**\n * The background color to fill if not transparent\n *\n * @member {number}\n */\n prototypeAccessors.backgroundColor.get = function ()\n {\n return this._backgroundColor;\n };\n\n prototypeAccessors.backgroundColor.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._backgroundColor = value;\n this._backgroundColorString = hex2string(value);\n hex2rgb(value, this._backgroundColorRgba);\n };\n\n Object.defineProperties( AbstractRenderer.prototype, prototypeAccessors );\n\n return AbstractRenderer;\n}(EventEmitter));\n\n/**\n * The Renderer draws the scene and all its content onto a WebGL enabled canvas.\n *\n * This renderer should be used for browsers that support WebGL.\n *\n * This renderer works by automatically managing WebGLBatchesm, so no need for Sprite Batches or Sprite Clouds.\n * Don't forget to add the view to your DOM or you will not see anything!\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.AbstractRenderer\n */\nvar Renderer = /*@__PURE__*/(function (AbstractRenderer) {\n function Renderer(options)\n {\n if ( options === void 0 ) options = {};\n\n AbstractRenderer.call(this, 'WebGL', options);\n\n // the options will have been modified here in the super constructor with pixi's default settings..\n options = this.options;\n\n /**\n * The type of this renderer as a standardized const\n *\n * @member {number}\n * @see PIXI.RENDERER_TYPE\n */\n this.type = RENDERER_TYPE.WEBGL;\n\n /**\n * WebGL context, set by the contextSystem (this.context)\n *\n * @readonly\n * @member {WebGLRenderingContext}\n */\n this.gl = null;\n\n this.CONTEXT_UID = 0;\n\n // TODO legacy!\n\n /**\n * Internal signal instances of **runner**, these\n * are assigned to each system created.\n * @see PIXI.Runner\n * @name PIXI.Renderer#runners\n * @private\n * @type {object}\n * @readonly\n * @property {PIXI.Runner} destroy - Destroy runner\n * @property {PIXI.Runner} contextChange - Context change runner\n * @property {PIXI.Runner} reset - Reset runner\n * @property {PIXI.Runner} update - Update runner\n * @property {PIXI.Runner} postrender - Post-render runner\n * @property {PIXI.Runner} prerender - Pre-render runner\n * @property {PIXI.Runner} resize - Resize runner\n */\n this.runners = {\n destroy: new Runner('destroy'),\n contextChange: new Runner('contextChange', 1),\n reset: new Runner('reset'),\n update: new Runner('update'),\n postrender: new Runner('postrender'),\n prerender: new Runner('prerender'),\n resize: new Runner('resize', 2),\n };\n\n /**\n * Global uniforms\n * @member {PIXI.UniformGroup}\n */\n this.globalUniforms = new UniformGroup({\n projectionMatrix: new Matrix(),\n }, true);\n\n /**\n * Mask system instance\n * @member {PIXI.systems.MaskSystem} mask\n * @memberof PIXI.Renderer#\n * @readonly\n */\n this.addSystem(MaskSystem, 'mask')\n /**\n * Context system instance\n * @member {PIXI.systems.ContextSystem} context\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ContextSystem, 'context')\n /**\n * State system instance\n * @member {PIXI.systems.StateSystem} state\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(StateSystem, 'state')\n /**\n * Shader system instance\n * @member {PIXI.systems.ShaderSystem} shader\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ShaderSystem, 'shader')\n /**\n * Texture system instance\n * @member {PIXI.systems.TextureSystem} texture\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(TextureSystem, 'texture')\n /**\n * Geometry system instance\n * @member {PIXI.systems.GeometrySystem} geometry\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(GeometrySystem, 'geometry')\n /**\n * Framebuffer system instance\n * @member {PIXI.systems.FramebufferSystem} framebuffer\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(FramebufferSystem, 'framebuffer')\n /**\n * Stencil system instance\n * @member {PIXI.systems.StencilSystem} stencil\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(StencilSystem, 'stencil')\n /**\n * Projection system instance\n * @member {PIXI.systems.ProjectionSystem} projection\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ProjectionSystem, 'projection')\n /**\n * Texture garbage collector system instance\n * @member {PIXI.systems.TextureGCSystem} textureGC\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(TextureGCSystem, 'textureGC')\n /**\n * Filter system instance\n * @member {PIXI.systems.FilterSystem} filter\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(FilterSystem, 'filter')\n /**\n * RenderTexture system instance\n * @member {PIXI.systems.RenderTextureSystem} renderTexture\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(RenderTextureSystem, 'renderTexture')\n\n /**\n * Batch system instance\n * @member {PIXI.systems.BatchSystem} batch\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(BatchSystem, 'batch');\n\n this.initPlugins(Renderer.__plugins);\n\n /**\n * The options passed in to create a new WebGL context.\n */\n if (options.context)\n {\n this.context.initFromContext(options.context);\n }\n else\n {\n this.context.initFromOptions({\n alpha: this.transparent,\n antialias: options.antialias,\n premultipliedAlpha: this.transparent && this.transparent !== 'notMultiplied',\n stencil: true,\n preserveDrawingBuffer: options.preserveDrawingBuffer,\n powerPreference: this.options.powerPreference,\n });\n }\n\n /**\n * Flag if we are rendering to the screen vs renderTexture\n * @member {boolean}\n * @readonly\n * @default true\n */\n this.renderingToScreen = true;\n\n sayHello(this.context.webGLVersion === 2 ? 'WebGL 2' : 'WebGL 1');\n\n this.resize(this.options.width, this.options.height);\n }\n\n if ( AbstractRenderer ) Renderer.__proto__ = AbstractRenderer;\n Renderer.prototype = Object.create( AbstractRenderer && AbstractRenderer.prototype );\n Renderer.prototype.constructor = Renderer;\n\n /**\n * Add a new system to the renderer.\n * @param {Function} ClassRef - Class reference\n * @param {string} [name] - Property name for system, if not specified\n * will use a static `name` property on the class itself. This\n * name will be assigned as s property on the Renderer so make\n * sure it doesn't collide with properties on Renderer.\n * @return {PIXI.Renderer} Return instance of renderer\n */\n Renderer.create = function create (options)\n {\n if (isWebGLSupported())\n {\n return new Renderer(options);\n }\n\n throw new Error('WebGL unsupported in this browser, use \"pixi.js-legacy\" for fallback canvas2d support.');\n };\n\n Renderer.prototype.addSystem = function addSystem (ClassRef, name)\n {\n if (!name)\n {\n name = ClassRef.name;\n }\n\n var system = new ClassRef(this);\n\n if (this[name])\n {\n throw new Error((\"Whoops! The name \\\"\" + name + \"\\\" is already in use\"));\n }\n\n this[name] = system;\n\n for (var i in this.runners)\n {\n this.runners[i].add(system);\n }\n\n /**\n * Fired after rendering finishes.\n *\n * @event PIXI.Renderer#postrender\n */\n\n /**\n * Fired before rendering starts.\n *\n * @event PIXI.Renderer#prerender\n */\n\n /**\n * Fired when the WebGL context is set.\n *\n * @event PIXI.Renderer#context\n * @param {WebGLRenderingContext} gl - WebGL context.\n */\n\n return this;\n };\n\n /**\n * Renders the object to its WebGL view\n *\n * @param {PIXI.DisplayObject} displayObject - The object to be rendered.\n * @param {PIXI.RenderTexture} [renderTexture] - The render texture to render to.\n * @param {boolean} [clear=true] - Should the canvas be cleared before the new render.\n * @param {PIXI.Matrix} [transform] - A transform to apply to the render texture before rendering.\n * @param {boolean} [skipUpdateTransform=false] - Should we skip the update transform pass?\n */\n Renderer.prototype.render = function render (displayObject, renderTexture, clear, transform, skipUpdateTransform)\n {\n // can be handy to know!\n this.renderingToScreen = !renderTexture;\n\n this.runners.prerender.run();\n this.emit('prerender');\n\n // apply a transform at a GPU level\n this.projection.transform = transform;\n\n // no point rendering if our context has been blown up!\n if (this.context.isLost)\n {\n return;\n }\n\n if (!renderTexture)\n {\n this._lastObjectRendered = displayObject;\n }\n\n if (!skipUpdateTransform)\n {\n // update the scene graph\n var cacheParent = displayObject.parent;\n\n displayObject.parent = this._tempDisplayObjectParent;\n displayObject.updateTransform();\n displayObject.parent = cacheParent;\n // displayObject.hitArea = //TODO add a temp hit area\n }\n\n this.renderTexture.bind(renderTexture);\n this.batch.currentRenderer.start();\n\n if (clear !== undefined ? clear : this.clearBeforeRender)\n {\n this.renderTexture.clear();\n }\n\n displayObject.render(this);\n\n // apply transform..\n this.batch.currentRenderer.flush();\n\n if (renderTexture)\n {\n renderTexture.baseTexture.update();\n }\n\n this.runners.postrender.run();\n\n // reset transform after render\n this.projection.transform = null;\n\n this.emit('postrender');\n };\n\n /**\n * Resizes the WebGL view to the specified width and height.\n *\n * @param {number} screenWidth - The new width of the screen.\n * @param {number} screenHeight - The new height of the screen.\n */\n Renderer.prototype.resize = function resize (screenWidth, screenHeight)\n {\n AbstractRenderer.prototype.resize.call(this, screenWidth, screenHeight);\n\n this.runners.resize.run(screenWidth, screenHeight);\n };\n\n /**\n * Resets the WebGL state so you can render things however you fancy!\n *\n * @return {PIXI.Renderer} Returns itself.\n */\n Renderer.prototype.reset = function reset ()\n {\n this.runners.reset.run();\n\n return this;\n };\n\n /**\n * Clear the frame buffer\n */\n Renderer.prototype.clear = function clear ()\n {\n this.framebuffer.bind();\n this.framebuffer.clear();\n };\n\n /**\n * Removes everything from the renderer (event listeners, spritebatch, etc...)\n *\n * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM.\n * See: https://github.com/pixijs/pixi.js/issues/2233\n */\n Renderer.prototype.destroy = function destroy (removeView)\n {\n this.runners.destroy.run();\n\n for (var r in this.runners)\n {\n this.runners[r].destroy();\n }\n\n // call base destroy\n AbstractRenderer.prototype.destroy.call(this, removeView);\n\n // TODO nullify all the managers..\n this.gl = null;\n };\n\n /**\n * Collection of installed plugins. These are included by default in PIXI, but can be excluded\n * by creating a custom build. Consult the README for more information about creating custom\n * builds and excluding plugins.\n * @name PIXI.Renderer#plugins\n * @type {object}\n * @readonly\n * @property {PIXI.accessibility.AccessibilityManager} accessibility Support tabbing interactive elements.\n * @property {PIXI.extract.Extract} extract Extract image data from renderer.\n * @property {PIXI.interaction.InteractionManager} interaction Handles mouse, touch and pointer events.\n * @property {PIXI.prepare.Prepare} prepare Pre-render display objects.\n */\n\n /**\n * Adds a plugin to the renderer.\n *\n * @method\n * @param {string} pluginName - The name of the plugin.\n * @param {Function} ctor - The constructor function or class for the plugin.\n */\n Renderer.registerPlugin = function registerPlugin (pluginName, ctor)\n {\n Renderer.__plugins = Renderer.__plugins || {};\n Renderer.__plugins[pluginName] = ctor;\n };\n\n return Renderer;\n}(AbstractRenderer));\n\n/**\n * This helper function will automatically detect which renderer you should be using.\n * WebGL is the preferred renderer as it is a lot faster. If WebGL is not supported by\n * the browser then this function will return a canvas renderer\n *\n * @memberof PIXI\n * @function autoDetectRenderer\n * @param {object} [options] - The optional renderer parameters\n * @param {number} [options.width=800] - the width of the renderers view\n * @param {number} [options.height=600] - the height of the renderers view\n * @param {HTMLCanvasElement} [options.view] - the canvas to use as a view, optional\n * @param {boolean} [options.transparent=false] - If the render view is transparent, default false\n * @param {boolean} [options.autoDensity=false] - Resizes renderer view in CSS pixels to allow for\n * resolutions other than 1\n * @param {boolean} [options.antialias=false] - sets antialias\n * @param {boolean} [options.preserveDrawingBuffer=false] - enables drawing buffer preservation, enable this if you\n * need to call toDataUrl on the webgl context\n * @param {number} [options.backgroundColor=0x000000] - The background color of the rendered area\n * (shown if not transparent).\n * @param {boolean} [options.clearBeforeRender=true] - This sets if the renderer will clear the canvas or\n * not before the new render pass.\n * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the renderer, retina would be 2\n * @param {boolean} [options.forceCanvas=false] - prevents selection of WebGL renderer, even if such is present, this\n * option only is available when using **pixi.js-legacy** or **@pixi/canvas-renderer** modules, otherwise\n * it is ignored.\n * @param {boolean} [options.forceFXAA=false] - forces FXAA antialiasing to be used over native.\n * FXAA is faster, but may not always look as great **webgl only**\n * @param {string} [options.powerPreference] - Parameter passed to webgl context, set to \"high-performance\"\n * for devices with dual graphics card **webgl only**\n * @return {PIXI.Renderer|PIXI.CanvasRenderer} Returns WebGL renderer if available, otherwise CanvasRenderer\n */\nfunction autoDetectRenderer(options)\n{\n return Renderer.create(options);\n}\n\nvar _default = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n vTextureCoord = aTextureCoord;\\n}\";\n\nvar defaultFilter = \"attribute vec2 aVertexPosition;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nuniform vec4 inputSize;\\nuniform vec4 outputFrame;\\n\\nvec4 filterVertexPosition( void )\\n{\\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\\n\\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\\n}\\n\\nvec2 filterTextureCoord( void )\\n{\\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\\n}\\n\\nvoid main(void)\\n{\\n gl_Position = filterVertexPosition();\\n vTextureCoord = filterTextureCoord();\\n}\\n\";\n\n/**\n * A Texture that depends on six other resources.\n *\n * @class\n * @extends PIXI.BaseTexture\n * @memberof PIXI\n */\nvar CubeTexture = /*@__PURE__*/(function (BaseTexture) {\n function CubeTexture () {\n BaseTexture.apply(this, arguments);\n }\n\n if ( BaseTexture ) CubeTexture.__proto__ = BaseTexture;\n CubeTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype );\n CubeTexture.prototype.constructor = CubeTexture;\n\n CubeTexture.from = function from (resources, options)\n {\n return new CubeTexture(new CubeResource(resources, options));\n };\n\n return CubeTexture;\n}(BaseTexture));\n\n/**\n * Used by the batcher to draw batches.\n * Each one of these contains all information required to draw a bound geometry.\n *\n * @class\n * @memberof PIXI\n */\nvar BatchDrawCall = function BatchDrawCall()\n{\n this.textures = [];\n this.ids = [];\n this.blend = 0;\n this.textureCount = 0;\n this.start = 0;\n this.size = 0;\n this.type = 4;\n};\n\n/**\n * Flexible wrapper around `ArrayBuffer` that also provides\n * typed array views on demand.\n *\n * @class\n * @memberof PIXI\n */\nvar ViewableBuffer = function ViewableBuffer(size)\n{\n /**\n * Underlying `ArrayBuffer` that holds all the data\n * and is of capacity `size`.\n *\n * @member {ArrayBuffer}\n */\n this.rawBinaryData = new ArrayBuffer(size);\n\n /**\n * View on the raw binary data as a `Uint32Array`.\n *\n * @member {Uint32Array}\n */\n this.uint32View = new Uint32Array(this.rawBinaryData);\n\n /**\n * View on the raw binary data as a `Float32Array`.\n *\n * @member {Float32Array}\n */\n this.float32View = new Float32Array(this.rawBinaryData);\n};\n\nvar prototypeAccessors$5 = { int8View: { configurable: true },uint8View: { configurable: true },int16View: { configurable: true },uint16View: { configurable: true },int32View: { configurable: true } };\n\n/**\n * View on the raw binary data as a `Int8Array`.\n *\n * @member {Int8Array}\n */\nprototypeAccessors$5.int8View.get = function ()\n{\n if (!this._int8View)\n {\n this._int8View = new Int8Array(this.rawBinaryData);\n }\n\n return this._int8View;\n};\n\n/**\n * View on the raw binary data as a `Uint8Array`.\n *\n * @member {Uint8Array}\n */\nprototypeAccessors$5.uint8View.get = function ()\n{\n if (!this._uint8View)\n {\n this._uint8View = new Uint8Array(this.rawBinaryData);\n }\n\n return this._uint8View;\n};\n\n/**\n * View on the raw binary data as a `Int16Array`.\n *\n * @member {Int16Array}\n */\nprototypeAccessors$5.int16View.get = function ()\n{\n if (!this._int16View)\n {\n this._int16View = new Int16Array(this.rawBinaryData);\n }\n\n return this._int16View;\n};\n\n/**\n * View on the raw binary data as a `Uint16Array`.\n *\n * @member {Uint16Array}\n */\nprototypeAccessors$5.uint16View.get = function ()\n{\n if (!this._uint16View)\n {\n this._uint16View = new Uint16Array(this.rawBinaryData);\n }\n\n return this._uint16View;\n};\n\n/**\n * View on the raw binary data as a `Int32Array`.\n *\n * @member {Int32Array}\n */\nprototypeAccessors$5.int32View.get = function ()\n{\n if (!this._int32View)\n {\n this._int32View = new Int32Array(this.rawBinaryData);\n }\n\n return this._int32View;\n};\n\n/**\n * Returns the view of the given type.\n *\n * @param {string} type - One of `int8`, `uint8`, `int16`,\n *`uint16`, `int32`, `uint32`, and `float32`.\n * @return {object} typed array of given type\n */\nViewableBuffer.prototype.view = function view (type)\n{\n return this[(type + \"View\")];\n};\n\n/**\n * Destroys all buffer references. Do not use after calling\n * this.\n */\nViewableBuffer.prototype.destroy = function destroy ()\n{\n this.rawBinaryData = null;\n this._int8View = null;\n this._uint8View = null;\n this._int16View = null;\n this._uint16View = null;\n this._int32View = null;\n this.uint32View = null;\n this.float32View = null;\n};\n\nViewableBuffer.sizeOf = function sizeOf (type)\n{\n switch (type)\n {\n case 'int8':\n case 'uint8':\n return 1;\n case 'int16':\n case 'uint16':\n return 2;\n case 'int32':\n case 'uint32':\n case 'float32':\n return 4;\n default:\n throw new Error((type + \" isn't a valid view type\"));\n }\n};\n\nObject.defineProperties( ViewableBuffer.prototype, prototypeAccessors$5 );\n\n/**\n * Renderer dedicated to drawing and batching sprites.\n *\n * This is the default batch renderer. It buffers objects\n * with texture-based geometries and renders them in\n * batches. It uploads multiple textures to the GPU to\n * reduce to the number of draw calls.\n *\n * @class\n * @protected\n * @memberof PIXI\n * @extends PIXI.ObjectRenderer\n */\nvar AbstractBatchRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function AbstractBatchRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n /**\n * This is used to generate a shader that can\n * color each vertex based on a `aTextureId`\n * attribute that points to an texture in `uSampler`.\n *\n * This enables the objects with different textures\n * to be drawn in the same draw call.\n *\n * You can customize your shader by creating your\n * custom shader generator.\n *\n * @member {PIXI.BatchShaderGenerator}\n * @protected\n */\n this.shaderGenerator = null;\n\n /**\n * The class that represents the geometry of objects\n * that are going to be batched with this.\n *\n * @member {object}\n * @default PIXI.BatchGeometry\n * @protected\n */\n this.geometryClass = null;\n\n /**\n * Size of data being buffered per vertex in the\n * attribute buffers (in floats). By default, the\n * batch-renderer plugin uses 6:\n *\n * | aVertexPosition | 2 |\n * |-----------------|---|\n * | aTextureCoords | 2 |\n * | aColor | 1 |\n * | aTextureId | 1 |\n *\n * @member {number}\n * @readonly\n */\n this.vertexSize = null;\n\n /**\n * The WebGL state in which this renderer will work.\n *\n * @member {PIXI.State}\n * @readonly\n */\n this.state = State.for2d();\n\n /**\n * The number of bufferable objects before a flush\n * occurs automatically.\n *\n * @member {number}\n * @default settings.SPRITE_MAX_TEXTURES\n */\n this.size = 2000 * 4;// settings.SPRITE_BATCH_SIZE, 2000 is a nice balance between mobile/desktop\n\n /**\n * Total count of all vertices used by the currently\n * buffered objects.\n *\n * @member {number}\n * @private\n */\n this._vertexCount = 0;\n\n /**\n * Total count of all indices used by the currently\n * buffered objects.\n *\n * @member {number}\n * @private\n */\n this._indexCount = 0;\n\n /**\n * Buffer of objects that are yet to be rendered.\n *\n * @member {PIXI.DisplayObject[]}\n * @private\n */\n this._bufferedElements = [];\n\n /**\n * Number of elements that are buffered and are\n * waiting to be flushed.\n *\n * @member {number}\n * @private\n */\n this._bufferSize = 0;\n\n /**\n * This shader is generated by `this.shaderGenerator`.\n *\n * It is generated specifically to handle the required\n * number of textures being batched together.\n *\n * @member {PIXI.Shader}\n * @protected\n */\n this._shader = null;\n\n /**\n * Pool of `this.geometryClass` geometry objects\n * that store buffers. They are used to pass data\n * to the shader on each draw call.\n *\n * These are never re-allocated again, unless a\n * context change occurs; however, the pool may\n * be expanded if required.\n *\n * @member {PIXI.Geometry[]}\n * @private\n * @see PIXI.AbstractBatchRenderer.contextChange\n */\n this._packedGeometries = [];\n\n /**\n * Size of `this._packedGeometries`. It can be expanded\n * if more than `this._packedGeometryPoolSize` flushes\n * occur in a single frame.\n *\n * @member {number}\n * @private\n */\n this._packedGeometryPoolSize = 2;\n\n /**\n * A flush may occur multiple times in a single\n * frame. On iOS devices or when\n * `settings.CAN_UPLOAD_SAME_BUFFER` is false, the\n * batch renderer does not upload data to the same\n * `WebGLBuffer` for performance reasons.\n *\n * This is the index into `packedGeometries` that points to\n * geometry holding the most recent buffers.\n *\n * @member {number}\n * @private\n */\n this._flushId = 0;\n\n /**\n * Pool of `BatchDrawCall` objects that `flush` used\n * to create \"batches\" of the objects being rendered.\n *\n * These are never re-allocated again.\n *\n * @member BatchDrawCall[]\n * @private\n */\n this._drawCalls = [];\n\n for (var k = 0; k < this.size / 4; k++)\n { // initialize the draw-calls pool to max size.\n this._drawCalls[k] = new BatchDrawCall();\n }\n\n /**\n * Pool of `ViewableBuffer` objects that are sorted in\n * order of increasing size. The flush method uses\n * the buffer with the least size above the amount\n * it requires. These are used for passing attributes.\n *\n * The first buffer has a size of 8; each subsequent\n * buffer has double capacity of its previous.\n *\n * @member {PIXI.ViewableBuffer}\n * @private\n * @see PIXI.AbstractBatchRenderer#getAttributeBuffer\n */\n this._aBuffers = {};\n\n /**\n * Pool of `Uint16Array` objects that are sorted in\n * order of increasing size. The flush method uses\n * the buffer with the least size above the amount\n * it requires. These are used for passing indices.\n *\n * The first buffer has a size of 12; each subsequent\n * buffer has double capacity of its previous.\n *\n * @member {Uint16Array[]}\n * @private\n * @see PIXI.AbstractBatchRenderer#getIndexBuffer\n */\n this._iBuffers = {};\n\n /**\n * Maximum number of textures that can be uploaded to\n * the GPU under the current context. It is initialized\n * properly in `this.contextChange`.\n *\n * @member {number}\n * @see PIXI.AbstractBatchRenderer#contextChange\n * @readonly\n */\n this.MAX_TEXTURES = 1;\n\n this.renderer.on('prerender', this.onPrerender, this);\n renderer.runners.contextChange.add(this);\n }\n\n if ( ObjectRenderer ) AbstractBatchRenderer.__proto__ = ObjectRenderer;\n AbstractBatchRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n AbstractBatchRenderer.prototype.constructor = AbstractBatchRenderer;\n\n /**\n * Handles the `contextChange` signal.\n *\n * It calculates `this.MAX_TEXTURES` and allocating the\n * packed-geometry object pool.\n */\n AbstractBatchRenderer.prototype.contextChange = function contextChange ()\n {\n var gl = this.renderer.gl;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n this.MAX_TEXTURES = 1;\n }\n else\n {\n // step 1: first check max textures the GPU can handle.\n this.MAX_TEXTURES = Math.min(\n gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS),\n settings.SPRITE_MAX_TEXTURES);\n\n // step 2: check the maximum number of if statements the shader can have too..\n this.MAX_TEXTURES = checkMaxIfStatementsInShader(\n this.MAX_TEXTURES, gl);\n }\n\n this._shader = this.shaderGenerator.generateShader(this.MAX_TEXTURES);\n\n // we use the second shader as the first one depending on your browser\n // may omit aTextureId as it is not used by the shader so is optimized out.\n for (var i = 0; i < this._packedGeometryPoolSize; i++)\n {\n /* eslint-disable max-len */\n this._packedGeometries[i] = new (this.geometryClass)();\n }\n };\n\n /**\n * Handles the `prerender` signal.\n *\n * It ensures that flushes start from the first geometry\n * object again.\n */\n AbstractBatchRenderer.prototype.onPrerender = function onPrerender ()\n {\n this._flushId = 0;\n };\n\n /**\n * Buffers the \"batchable\" object. It need not be rendered\n * immediately.\n *\n * @param {PIXI.Sprite} sprite - the sprite to render when\n * using this spritebatch\n */\n AbstractBatchRenderer.prototype.render = function render (element)\n {\n if (!element._texture.valid)\n {\n return;\n }\n\n if (this._vertexCount + (element.vertexData.length / 2) > this.size)\n {\n this.flush();\n }\n\n this._vertexCount += element.vertexData.length / 2;\n this._indexCount += element.indices.length;\n this._bufferedElements[this._bufferSize++] = element;\n };\n\n /**\n * Renders the content _now_ and empties the current batch.\n */\n AbstractBatchRenderer.prototype.flush = function flush ()\n {\n if (this._vertexCount === 0)\n {\n return;\n }\n\n var attributeBuffer = this.getAttributeBuffer(this._vertexCount);\n var indexBuffer = this.getIndexBuffer(this._indexCount);\n var gl = this.renderer.gl;\n\n var ref = this;\n var elements = ref._bufferedElements;\n var drawCalls = ref._drawCalls;\n var MAX_TEXTURES = ref.MAX_TEXTURES;\n var packedGeometries = ref._packedGeometries;\n var vertexSize = ref.vertexSize;\n\n var touch = this.renderer.textureGC.count;\n\n var index = 0;\n var _indexCount = 0;\n\n var nextTexture;\n var currentTexture;\n var textureCount = 0;\n\n var currentGroup = drawCalls[0];\n var groupCount = 0;\n\n var blendMode = -1;// blend-mode of previous element/sprite/object!\n\n currentGroup.textureCount = 0;\n currentGroup.start = 0;\n currentGroup.blend = blendMode;\n\n var TICK = ++BaseTexture._globalBatch;\n var i;\n\n for (i = 0; i < this._bufferSize; ++i)\n {\n var sprite = elements[i];\n\n elements[i] = null;\n nextTexture = sprite._texture.baseTexture;\n\n var spriteBlendMode = premultiplyBlendMode[\n nextTexture.premultiplyAlpha ? 1 : 0][sprite.blendMode];\n\n if (blendMode !== spriteBlendMode)\n {\n blendMode = spriteBlendMode;\n\n // force the batch to break!\n currentTexture = null;\n textureCount = MAX_TEXTURES;\n TICK++;\n }\n\n if (currentTexture !== nextTexture)\n {\n currentTexture = nextTexture;\n\n if (nextTexture._batchEnabled !== TICK)\n {\n if (textureCount === MAX_TEXTURES)\n {\n TICK++;\n\n textureCount = 0;\n\n currentGroup.size = _indexCount - currentGroup.start;\n\n currentGroup = drawCalls[groupCount++];\n currentGroup.textureCount = 0;\n currentGroup.blend = blendMode;\n currentGroup.start = _indexCount;\n }\n\n nextTexture.touched = touch;\n nextTexture._batchEnabled = TICK;\n nextTexture._id = textureCount;\n\n currentGroup.textures[currentGroup.textureCount++] = nextTexture;\n textureCount++;\n }\n }\n\n this.packInterleavedGeometry(sprite, attributeBuffer,\n indexBuffer, index, _indexCount);\n\n // push a graphics..\n index += (sprite.vertexData.length / 2) * vertexSize;\n _indexCount += sprite.indices.length;\n }\n\n BaseTexture._globalBatch = TICK;\n currentGroup.size = _indexCount - currentGroup.start;\n\n if (!settings.CAN_UPLOAD_SAME_BUFFER)\n { /* Usually on iOS devices, where the browser doesn't\n like uploads to the same buffer in a single frame. */\n if (this._packedGeometryPoolSize <= this._flushId)\n {\n this._packedGeometryPoolSize++;\n packedGeometries[this._flushId] = new (this.geometryClass)();\n }\n\n packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0);\n packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0);\n\n this.renderer.geometry.bind(packedGeometries[this._flushId]);\n this.renderer.geometry.updateBuffers();\n this._flushId++;\n }\n else\n {\n // lets use the faster option, always use buffer number 0\n packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0);\n packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0);\n\n this.renderer.geometry.updateBuffers();\n }\n\n var textureSystem = this.renderer.texture;\n var stateSystem = this.renderer.state;\n\n // Upload textures and do the draw calls\n for (i = 0; i < groupCount; i++)\n {\n var group = drawCalls[i];\n var groupTextureCount = group.textureCount;\n\n for (var j = 0; j < groupTextureCount; j++)\n {\n textureSystem.bind(group.textures[j], j);\n group.textures[j] = null;\n }\n\n stateSystem.setBlendMode(group.blend);\n gl.drawElements(group.type, group.size, gl.UNSIGNED_SHORT, group.start * 2);\n }\n\n // reset elements for the next flush\n this._bufferSize = 0;\n this._vertexCount = 0;\n this._indexCount = 0;\n };\n\n /**\n * Starts a new sprite batch.\n */\n AbstractBatchRenderer.prototype.start = function start ()\n {\n this.renderer.state.set(this.state);\n\n this.renderer.shader.bind(this._shader);\n\n if (settings.CAN_UPLOAD_SAME_BUFFER)\n {\n // bind buffer #0, we don't need others\n this.renderer.geometry.bind(this._packedGeometries[this._flushId]);\n }\n };\n\n /**\n * Stops and flushes the current batch.\n */\n AbstractBatchRenderer.prototype.stop = function stop ()\n {\n this.flush();\n };\n\n /**\n * Destroys this `AbstractBatchRenderer`. It cannot be used again.\n */\n AbstractBatchRenderer.prototype.destroy = function destroy ()\n {\n for (var i = 0; i < this._packedGeometryPoolSize; i++)\n {\n if (this._packedGeometries[i])\n {\n this._packedGeometries[i].destroy();\n }\n }\n\n this.renderer.off('prerender', this.onPrerender, this);\n\n this._aBuffers = null;\n this._iBuffers = null;\n this._packedGeometries = null;\n this._drawCalls = null;\n\n if (this._shader)\n {\n this._shader.destroy();\n this._shader = null;\n }\n\n ObjectRenderer.prototype.destroy.call(this);\n };\n\n /**\n * Fetches an attribute buffer from `this._aBuffers` that\n * can hold atleast `size` floats.\n *\n * @param {number} size - minimum capacity required\n * @return {ViewableBuffer} - buffer than can hold atleast `size` floats\n * @private\n */\n AbstractBatchRenderer.prototype.getAttributeBuffer = function getAttributeBuffer (size)\n {\n // 8 vertices is enough for 2 quads\n var roundedP2 = nextPow2(Math.ceil(size / 8));\n var roundedSizeIndex = log2(roundedP2);\n var roundedSize = roundedP2 * 8;\n\n if (this._aBuffers.length <= roundedSizeIndex)\n {\n this._iBuffers.length = roundedSizeIndex + 1;\n }\n\n var buffer = this._aBuffers[roundedSize];\n\n if (!buffer)\n {\n this._aBuffers[roundedSize] = buffer = new ViewableBuffer(roundedSize * this.vertexSize * 4);\n }\n\n return buffer;\n };\n\n /**\n * Fetches an index buffer from `this._iBuffers` that can\n * has atleast `size` capacity.\n *\n * @param {number} size - minimum required capacity\n * @return {Uint16Array} - buffer that can fit `size`\n * indices.\n * @private\n */\n AbstractBatchRenderer.prototype.getIndexBuffer = function getIndexBuffer (size)\n {\n // 12 indices is enough for 2 quads\n var roundedP2 = nextPow2(Math.ceil(size / 12));\n var roundedSizeIndex = log2(roundedP2);\n var roundedSize = roundedP2 * 12;\n\n if (this._iBuffers.length <= roundedSizeIndex)\n {\n this._iBuffers.length = roundedSizeIndex + 1;\n }\n\n var buffer = this._iBuffers[roundedSizeIndex];\n\n if (!buffer)\n {\n this._iBuffers[roundedSizeIndex] = buffer = new Uint16Array(roundedSize);\n }\n\n return buffer;\n };\n\n /**\n * Takes the four batching parameters of `element`, interleaves\n * and pushes them into the batching attribute/index buffers given.\n *\n * It uses these properties: `vertexData` `uvs`, `textureId` and\n * `indicies`. It also uses the \"tint\" of the base-texture, if\n * present.\n *\n * @param {PIXI.Sprite} element - element being rendered\n * @param {PIXI.ViewableBuffer} attributeBuffer - attribute buffer.\n * @param {Uint16Array} indexBuffer - index buffer\n * @param {number} aIndex - number of floats already in the attribute buffer\n * @param {number} iIndex - number of indices already in `indexBuffer`\n */\n AbstractBatchRenderer.prototype.packInterleavedGeometry = function packInterleavedGeometry (element, attributeBuffer, indexBuffer, aIndex, iIndex)\n {\n var uint32View = attributeBuffer.uint32View;\n var float32View = attributeBuffer.float32View;\n\n var packedVertices = aIndex / this.vertexSize;\n var uvs = element.uvs;\n var indicies = element.indices;\n var vertexData = element.vertexData;\n var textureId = element._texture.baseTexture._id;\n\n var alpha = Math.min(element.worldAlpha, 1.0);\n var argb = (alpha < 1.0\n && element._texture.baseTexture.premultiplyAlpha)\n ? premultiplyTint(element._tintRGB, alpha)\n : element._tintRGB + (alpha * 255 << 24);\n\n // lets not worry about tint! for now..\n for (var i = 0; i < vertexData.length; i += 2)\n {\n float32View[aIndex++] = vertexData[i];\n float32View[aIndex++] = vertexData[i + 1];\n float32View[aIndex++] = uvs[i];\n float32View[aIndex++] = uvs[i + 1];\n uint32View[aIndex++] = argb;\n float32View[aIndex++] = textureId;\n }\n\n for (var i$1 = 0; i$1 < indicies.length; i$1++)\n {\n indexBuffer[iIndex++] = packedVertices + indicies[i$1];\n }\n };\n\n return AbstractBatchRenderer;\n}(ObjectRenderer));\n\n/**\n * Helper that generates batching multi-texture shader. Use it with your new BatchRenderer\n *\n * @class\n * @memberof PIXI\n */\nvar BatchShaderGenerator = function BatchShaderGenerator(vertexSrc, fragTemplate)\n{\n /**\n * Reference to the vertex shader source.\n *\n * @member {string}\n */\n this.vertexSrc = vertexSrc;\n\n /**\n * Reference to the fragement shader template. Must contain \"%count%\" and \"%forloop%\".\n *\n * @member {string}\n */\n this.fragTemplate = fragTemplate;\n\n this.programCache = {};\n this.defaultGroupCache = {};\n\n if (fragTemplate.indexOf('%count%') < 0)\n {\n throw new Error('Fragment template must contain \"%count%\".');\n }\n\n if (fragTemplate.indexOf('%forloop%') < 0)\n {\n throw new Error('Fragment template must contain \"%forloop%\".');\n }\n};\n\nBatchShaderGenerator.prototype.generateShader = function generateShader (maxTextures)\n{\n if (!this.programCache[maxTextures])\n {\n var sampleValues = new Int32Array(maxTextures);\n\n for (var i = 0; i < maxTextures; i++)\n {\n sampleValues[i] = i;\n }\n\n this.defaultGroupCache[maxTextures] = UniformGroup.from({ uSamplers: sampleValues }, true);\n\n var fragmentSrc = this.fragTemplate;\n\n fragmentSrc = fragmentSrc.replace(/%count%/gi, (\"\" + maxTextures));\n fragmentSrc = fragmentSrc.replace(/%forloop%/gi, this.generateSampleSrc(maxTextures));\n\n this.programCache[maxTextures] = new Program(this.vertexSrc, fragmentSrc);\n }\n\n var uniforms = {\n tint: new Float32Array([1, 1, 1, 1]),\n translationMatrix: new Matrix(),\n default: this.defaultGroupCache[maxTextures],\n };\n\n return new Shader(this.programCache[maxTextures], uniforms);\n};\n\nBatchShaderGenerator.prototype.generateSampleSrc = function generateSampleSrc (maxTextures)\n{\n var src = '';\n\n src += '\\n';\n src += '\\n';\n\n for (var i = 0; i < maxTextures; i++)\n {\n if (i > 0)\n {\n src += '\\nelse ';\n }\n\n if (i < maxTextures - 1)\n {\n src += \"if(vTextureId < \" + i + \".5)\";\n }\n\n src += '\\n{';\n src += \"\\n\\tcolor = texture2D(uSamplers[\" + i + \"], vTextureCoord);\";\n src += '\\n}';\n }\n\n src += '\\n';\n src += '\\n';\n\n return src;\n};\n\n/**\n * Geometry used to batch standard PIXI content (e.g. Mesh, Sprite, Graphics objects).\n *\n * @class\n * @memberof PIXI\n */\nvar BatchGeometry = /*@__PURE__*/(function (Geometry) {\n function BatchGeometry(_static)\n {\n if ( _static === void 0 ) _static = false;\n\n Geometry.call(this);\n\n /**\n * Buffer used for position, color, texture IDs\n *\n * @member {PIXI.Buffer}\n * @protected\n */\n this._buffer = new Buffer(null, _static, false);\n\n /**\n * Index buffer data\n *\n * @member {PIXI.Buffer}\n * @protected\n */\n this._indexBuffer = new Buffer(null, _static, true);\n\n this.addAttribute('aVertexPosition', this._buffer, 2, false, TYPES.FLOAT)\n .addAttribute('aTextureCoord', this._buffer, 2, false, TYPES.FLOAT)\n .addAttribute('aColor', this._buffer, 4, true, TYPES.UNSIGNED_BYTE)\n .addAttribute('aTextureId', this._buffer, 1, true, TYPES.FLOAT)\n .addIndex(this._indexBuffer);\n }\n\n if ( Geometry ) BatchGeometry.__proto__ = Geometry;\n BatchGeometry.prototype = Object.create( Geometry && Geometry.prototype );\n BatchGeometry.prototype.constructor = BatchGeometry;\n\n return BatchGeometry;\n}(Geometry));\n\nvar defaultVertex$2 = \"precision highp float;\\nattribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\nattribute vec4 aColor;\\nattribute float aTextureId;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform vec4 tint;\\n\\nvarying vec2 vTextureCoord;\\nvarying vec4 vColor;\\nvarying float vTextureId;\\n\\nvoid main(void){\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vTextureId = aTextureId;\\n vColor = aColor * tint;\\n}\\n\";\n\nvar defaultFragment$2 = \"varying vec2 vTextureCoord;\\nvarying vec4 vColor;\\nvarying float vTextureId;\\nuniform sampler2D uSamplers[%count%];\\n\\nvoid main(void){\\n vec4 color;\\n %forloop%\\n gl_FragColor = color * vColor;\\n}\\n\";\n\n/**\n * @class\n * @memberof PIXI\n * @hideconstructor\n */\nvar BatchPluginFactory = function BatchPluginFactory () {};\n\nvar staticAccessors$1 = { defaultVertexSrc: { configurable: true },defaultFragmentTemplate: { configurable: true } };\n\nBatchPluginFactory.create = function create (options)\n{\n var ref = Object.assign({\n vertex: defaultVertex$2,\n fragment: defaultFragment$2,\n geometryClass: BatchGeometry,\n vertexSize: 6,\n }, options);\n var vertex = ref.vertex;\n var fragment = ref.fragment;\n var vertexSize = ref.vertexSize;\n var geometryClass = ref.geometryClass;\n\n return /*@__PURE__*/(function (AbstractBatchRenderer) {\n function BatchPlugin(renderer)\n {\n AbstractBatchRenderer.call(this, renderer);\n\n this.shaderGenerator = new BatchShaderGenerator(vertex, fragment);\n this.geometryClass = geometryClass;\n this.vertexSize = vertexSize;\n }\n\n if ( AbstractBatchRenderer ) BatchPlugin.__proto__ = AbstractBatchRenderer;\n BatchPlugin.prototype = Object.create( AbstractBatchRenderer && AbstractBatchRenderer.prototype );\n BatchPlugin.prototype.constructor = BatchPlugin;\n\n return BatchPlugin;\n }(AbstractBatchRenderer));\n};\n\n/**\n * The default vertex shader source\n *\n * @static\n * @type {string}\n * @constant\n */\nstaticAccessors$1.defaultVertexSrc.get = function ()\n{\n return defaultVertex$2;\n};\n\n/**\n * The default fragment shader source\n *\n * @static\n * @type {string}\n * @constant\n */\nstaticAccessors$1.defaultFragmentTemplate.get = function ()\n{\n return defaultFragment$2;\n};\n\nObject.defineProperties( BatchPluginFactory, staticAccessors$1 );\n\n// Setup the default BatchRenderer plugin, this is what\n// we'll actually export at the root level\nvar BatchRenderer = BatchPluginFactory.create();\n\nexport { AbstractBatchRenderer, AbstractRenderer, Attribute, BaseRenderTexture, BaseTexture, BatchDrawCall, BatchGeometry, BatchPluginFactory, BatchRenderer, BatchShaderGenerator, Buffer, CubeTexture, Filter, Framebuffer, GLProgram, BaseTexture as GLTexture, Geometry, ObjectRenderer, Program, Quad, QuadUv, RenderTexture, RenderTexturePool, Renderer, Shader, SpriteMaskFilter, State, System, Texture, TextureMatrix, TextureUvs, UniformGroup, ViewableBuffer, autoDetectRenderer, checkMaxIfStatementsInShader, defaultFilter as defaultFilterVertex, _default as defaultVertex, index as resources, systems };\n//# sourceMappingURL=core.es.js.map\n","/*!\n * @pixi/extract - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/extract is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { RenderTexture } from '@pixi/core';\nimport { CanvasRenderTarget } from '@pixi/utils';\nimport { Rectangle } from '@pixi/math';\n\nvar TEMP_RECT = new Rectangle();\nvar BYTES_PER_PIXEL = 4;\n\n/**\n * The extract manager provides functionality to export content from the renderers.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.extract`\n *\n * @class\n * @memberof PIXI.extract\n */\nvar Extract = function Extract(renderer)\n{\n this.renderer = renderer;\n /**\n * Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture\n *\n * @member {PIXI.extract.Extract} extract\n * @memberof PIXI.Renderer#\n * @see PIXI.extract.Extract\n */\n renderer.extract = this;\n};\n\n/**\n * Will return a HTML Image of the target\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @param {string} [format] - Image format, e.g. \"image/jpeg\" or \"image/webp\".\n * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92.\n * @return {HTMLImageElement} HTML Image of the target\n */\nExtract.prototype.image = function image (target, format, quality)\n{\n var image = new Image();\n\n image.src = this.base64(target, format, quality);\n\n return image;\n};\n\n/**\n * Will return a a base64 encoded string of this target. It works by calling\n * `Extract.getCanvas` and then running toDataURL on that.\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @param {string} [format] - Image format, e.g. \"image/jpeg\" or \"image/webp\".\n * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92.\n * @return {string} A base64 encoded string of the texture.\n */\nExtract.prototype.base64 = function base64 (target, format, quality)\n{\n return this.canvas(target).toDataURL(format, quality);\n};\n\n/**\n * Creates a Canvas element, renders this target to it and then returns it.\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @return {HTMLCanvasElement} A Canvas element with the texture rendered on.\n */\nExtract.prototype.canvas = function canvas (target)\n{\n var renderer = this.renderer;\n var resolution;\n var frame;\n var flipY = false;\n var renderTexture;\n var generated = false;\n\n if (target)\n {\n if (target instanceof RenderTexture)\n {\n renderTexture = target;\n }\n else\n {\n renderTexture = this.renderer.generateTexture(target);\n generated = true;\n }\n }\n\n if (renderTexture)\n {\n resolution = renderTexture.baseTexture.resolution;\n frame = renderTexture.frame;\n flipY = false;\n renderer.renderTexture.bind(renderTexture);\n }\n else\n {\n resolution = this.renderer.resolution;\n\n flipY = true;\n\n frame = TEMP_RECT;\n frame.width = this.renderer.width;\n frame.height = this.renderer.height;\n\n renderer.renderTexture.bind(null);\n }\n\n var width = Math.floor(frame.width * resolution);\n var height = Math.floor(frame.height * resolution);\n\n var canvasBuffer = new CanvasRenderTarget(width, height, 1);\n\n var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height);\n\n // read pixels to the array\n var gl = renderer.gl;\n\n gl.readPixels(\n frame.x * resolution,\n frame.y * resolution,\n width,\n height,\n gl.RGBA,\n gl.UNSIGNED_BYTE,\n webglPixels\n );\n\n // add the pixels to the canvas\n var canvasData = canvasBuffer.context.getImageData(0, 0, width, height);\n\n Extract.arrayPostDivide(webglPixels, canvasData.data);\n\n canvasBuffer.context.putImageData(canvasData, 0, 0);\n\n // pulling pixels\n if (flipY)\n {\n canvasBuffer.context.scale(1, -1);\n canvasBuffer.context.drawImage(canvasBuffer.canvas, 0, -height);\n }\n\n if (generated)\n {\n renderTexture.destroy(true);\n }\n\n // send the canvas back..\n return canvasBuffer.canvas;\n};\n\n/**\n * Will return a one-dimensional array containing the pixel data of the entire texture in RGBA\n * order, with integer values between 0 and 255 (included).\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @return {Uint8Array} One-dimensional array containing the pixel data of the entire texture\n */\nExtract.prototype.pixels = function pixels (target)\n{\n var renderer = this.renderer;\n var resolution;\n var frame;\n var renderTexture;\n var generated = false;\n\n if (target)\n {\n if (target instanceof RenderTexture)\n {\n renderTexture = target;\n }\n else\n {\n renderTexture = this.renderer.generateTexture(target);\n generated = true;\n }\n }\n\n if (renderTexture)\n {\n resolution = renderTexture.baseTexture.resolution;\n frame = renderTexture.frame;\n\n // bind the buffer\n renderer.renderTexture.bind(renderTexture);\n }\n else\n {\n resolution = renderer.resolution;\n\n frame = TEMP_RECT;\n frame.width = renderer.width;\n frame.height = renderer.height;\n\n renderer.renderTexture.bind(null);\n }\n\n var width = frame.width * resolution;\n var height = frame.height * resolution;\n\n var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height);\n\n // read pixels to the array\n var gl = renderer.gl;\n\n gl.readPixels(\n frame.x * resolution,\n frame.y * resolution,\n width,\n height,\n gl.RGBA,\n gl.UNSIGNED_BYTE,\n webglPixels\n );\n\n if (generated)\n {\n renderTexture.destroy(true);\n }\n\n Extract.arrayPostDivide(webglPixels, webglPixels);\n\n return webglPixels;\n};\n\n/**\n * Destroys the extract\n *\n */\nExtract.prototype.destroy = function destroy ()\n{\n this.renderer.extract = null;\n this.renderer = null;\n};\n\n/**\n * Takes premultiplied pixel data and produces regular pixel data\n *\n * @private\n * @param pixels {number[] | Uint8Array | Uint8ClampedArray} array of pixel data\n * @param out {number[] | Uint8Array | Uint8ClampedArray} output array\n */\nExtract.arrayPostDivide = function arrayPostDivide (pixels, out)\n{\n for (var i = 0; i < pixels.length; i += 4)\n {\n var alpha = out[i + 3] = pixels[i + 3];\n\n if (alpha !== 0)\n {\n out[i] = Math.round(Math.min(pixels[i] * 255.0 / alpha, 255.0));\n out[i + 1] = Math.round(Math.min(pixels[i + 1] * 255.0 / alpha, 255.0));\n out[i + 2] = Math.round(Math.min(pixels[i + 2] * 255.0 / alpha, 255.0));\n }\n else\n {\n out[i] = pixels[i];\n out[i + 1] = pixels[i + 1];\n out[i + 2] = pixels[i + 2];\n }\n }\n};\n\n/**\n * This namespace provides renderer-specific plugins for exporting content from a renderer.\n * For instance, these plugins can be used for saving an Image, Canvas element or for exporting the raw image data (pixels).\n *\n * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @example\n * // Create a new app (will auto-add extract plugin to renderer)\n * const app = new PIXI.Application();\n *\n * // Draw a red circle\n * const graphics = new PIXI.Graphics()\n * .beginFill(0xFF0000)\n * .drawCircle(0, 0, 50);\n *\n * // Render the graphics as an HTMLImageElement\n * const image = app.renderer.plugins.extract.image(graphics);\n * document.body.appendChild(image);\n * @namespace PIXI.extract\n */\n\nexport { Extract };\n//# sourceMappingURL=extract.es.js.map\n","/*!\n * @pixi/interaction - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/interaction is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Point } from '@pixi/math';\nimport { Ticker, UPDATE_PRIORITY } from '@pixi/ticker';\nimport { DisplayObject } from '@pixi/display';\nimport { EventEmitter } from '@pixi/utils';\n\n/**\n * Holds all information related to an Interaction event\n *\n * @class\n * @memberof PIXI.interaction\n */\nvar InteractionData = function InteractionData()\n{\n /**\n * This point stores the global coords of where the touch/mouse event happened\n *\n * @member {PIXI.Point}\n */\n this.global = new Point();\n\n /**\n * The target Sprite that was interacted with\n *\n * @member {PIXI.Sprite}\n */\n this.target = null;\n\n /**\n * When passed to an event handler, this will be the original DOM Event that was captured\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent\n * @see https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent\n * @member {MouseEvent|TouchEvent|PointerEvent}\n */\n this.originalEvent = null;\n\n /**\n * Unique identifier for this interaction\n *\n * @member {number}\n */\n this.identifier = null;\n\n /**\n * Indicates whether or not the pointer device that created the event is the primary pointer.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary\n * @type {Boolean}\n */\n this.isPrimary = false;\n\n /**\n * Indicates which button was pressed on the mouse or pointer device to trigger the event.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button\n * @type {number}\n */\n this.button = 0;\n\n /**\n * Indicates which buttons are pressed on the mouse or pointer device when the event is triggered.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/buttons\n * @type {number}\n */\n this.buttons = 0;\n\n /**\n * The width of the pointer's contact along the x-axis, measured in CSS pixels.\n * radiusX of TouchEvents will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width\n * @type {number}\n */\n this.width = 0;\n\n /**\n * The height of the pointer's contact along the y-axis, measured in CSS pixels.\n * radiusY of TouchEvents will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height\n * @type {number}\n */\n this.height = 0;\n\n /**\n * The angle, in degrees, between the pointer device and the screen.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX\n * @type {number}\n */\n this.tiltX = 0;\n\n /**\n * The angle, in degrees, between the pointer device and the screen.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY\n * @type {number}\n */\n this.tiltY = 0;\n\n /**\n * The type of pointer that triggered the event.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType\n * @type {string}\n */\n this.pointerType = null;\n\n /**\n * Pressure applied by the pointing device during the event. A Touch's force property\n * will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure\n * @type {number}\n */\n this.pressure = 0;\n\n /**\n * From TouchEvents (not PointerEvents triggered by touches), the rotationAngle of the Touch.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle\n * @type {number}\n */\n this.rotationAngle = 0;\n\n /**\n * Twist of a stylus pointer.\n * @see https://w3c.github.io/pointerevents/#pointerevent-interface\n * @type {number}\n */\n this.twist = 0;\n\n /**\n * Barrel pressure on a stylus pointer.\n * @see https://w3c.github.io/pointerevents/#pointerevent-interface\n * @type {number}\n */\n this.tangentialPressure = 0;\n};\n\nvar prototypeAccessors = { pointerId: { configurable: true } };\n\n/**\n * The unique identifier of the pointer. It will be the same as `identifier`.\n * @readonly\n * @member {number}\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId\n */\nprototypeAccessors.pointerId.get = function ()\n{\n return this.identifier;\n};\n\n/**\n * This will return the local coordinates of the specified displayObject for this InteractionData\n *\n * @param {PIXI.DisplayObject} displayObject - The DisplayObject that you would like the local\n * coords off\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional (otherwise\n * will create a new point)\n * @param {PIXI.Point} [globalPos] - A Point object containing your custom global coords, optional\n * (otherwise will use the current global coords)\n * @return {PIXI.Point} A point containing the coordinates of the InteractionData position relative\n * to the DisplayObject\n */\nInteractionData.prototype.getLocalPosition = function getLocalPosition (displayObject, point, globalPos)\n{\n return displayObject.worldTransform.applyInverse(globalPos || this.global, point);\n};\n\n/**\n * Copies properties from normalized event data.\n *\n * @param {Touch|MouseEvent|PointerEvent} event The normalized event data\n */\nInteractionData.prototype.copyEvent = function copyEvent (event)\n{\n // isPrimary should only change on touchstart/pointerdown, so we don't want to overwrite\n // it with \"false\" on later events when our shim for it on touch events might not be\n // accurate\n if (event.isPrimary)\n {\n this.isPrimary = true;\n }\n this.button = event.button;\n // event.buttons is not available in all browsers (ie. Safari), but it does have a non-standard\n // event.which property instead, which conveys the same information.\n this.buttons = Number.isInteger(event.buttons) ? event.buttons : event.which;\n this.width = event.width;\n this.height = event.height;\n this.tiltX = event.tiltX;\n this.tiltY = event.tiltY;\n this.pointerType = event.pointerType;\n this.pressure = event.pressure;\n this.rotationAngle = event.rotationAngle;\n this.twist = event.twist || 0;\n this.tangentialPressure = event.tangentialPressure || 0;\n};\n\n/**\n * Resets the data for pooling.\n */\nInteractionData.prototype.reset = function reset ()\n{\n // isPrimary is the only property that we really need to reset - everything else is\n // guaranteed to be overwritten\n this.isPrimary = false;\n};\n\nObject.defineProperties( InteractionData.prototype, prototypeAccessors );\n\n/**\n * Event class that mimics native DOM events.\n *\n * @class\n * @memberof PIXI.interaction\n */\nvar InteractionEvent = function InteractionEvent()\n{\n /**\n * Whether this event will continue propagating in the tree.\n *\n * Remaining events for the {@link stopsPropagatingAt} object\n * will still be dispatched.\n *\n * @member {boolean}\n */\n this.stopped = false;\n\n /**\n * At which object this event stops propagating.\n *\n * @private\n * @member {PIXI.DisplayObject}\n */\n this.stopsPropagatingAt = null;\n\n /**\n * Whether we already reached the element we want to\n * stop propagating at. This is important for delayed events,\n * where we start over deeper in the tree again.\n *\n * @private\n * @member {boolean}\n */\n this.stopPropagationHint = false;\n\n /**\n * The object which caused this event to be dispatched.\n * For listener callback see {@link PIXI.interaction.InteractionEvent.currentTarget}.\n *\n * @member {PIXI.DisplayObject}\n */\n this.target = null;\n\n /**\n * The object whose event listener’s callback is currently being invoked.\n *\n * @member {PIXI.DisplayObject}\n */\n this.currentTarget = null;\n\n /**\n * Type of the event\n *\n * @member {string}\n */\n this.type = null;\n\n /**\n * InteractionData related to this event\n *\n * @member {PIXI.interaction.InteractionData}\n */\n this.data = null;\n};\n\n/**\n * Prevents event from reaching any objects other than the current object.\n *\n */\nInteractionEvent.prototype.stopPropagation = function stopPropagation ()\n{\n this.stopped = true;\n this.stopPropagationHint = true;\n this.stopsPropagatingAt = this.currentTarget;\n};\n\n/**\n * Resets the event.\n */\nInteractionEvent.prototype.reset = function reset ()\n{\n this.stopped = false;\n this.stopsPropagatingAt = null;\n this.stopPropagationHint = false;\n this.currentTarget = null;\n this.target = null;\n};\n\n/**\n * DisplayObjects with the {@link PIXI.interaction.interactiveTarget} mixin use this class to track interactions\n *\n * @class\n * @private\n * @memberof PIXI.interaction\n */\nvar InteractionTrackingData = function InteractionTrackingData(pointerId)\n{\n this._pointerId = pointerId;\n this._flags = InteractionTrackingData.FLAGS.NONE;\n};\n\nvar prototypeAccessors$1 = { pointerId: { configurable: true },flags: { configurable: true },none: { configurable: true },over: { configurable: true },rightDown: { configurable: true },leftDown: { configurable: true } };\n\n/**\n *\n * @private\n * @param {number} flag - The interaction flag to set\n * @param {boolean} yn - Should the flag be set or unset\n */\nInteractionTrackingData.prototype._doSet = function _doSet (flag, yn)\n{\n if (yn)\n {\n this._flags = this._flags | flag;\n }\n else\n {\n this._flags = this._flags & (~flag);\n }\n};\n\n/**\n * Unique pointer id of the event\n *\n * @readonly\n * @private\n * @member {number}\n */\nprototypeAccessors$1.pointerId.get = function ()\n{\n return this._pointerId;\n};\n\n/**\n * State of the tracking data, expressed as bit flags\n *\n * @private\n * @member {number}\n */\nprototypeAccessors$1.flags.get = function ()\n{\n return this._flags;\n};\n\nprototypeAccessors$1.flags.set = function (flags) // eslint-disable-line require-jsdoc\n{\n this._flags = flags;\n};\n\n/**\n * Is the tracked event inactive (not over or down)?\n *\n * @private\n * @member {number}\n */\nprototypeAccessors$1.none.get = function ()\n{\n return this._flags === this.constructor.FLAGS.NONE;\n};\n\n/**\n * Is the tracked event over the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.over.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.OVER) !== 0;\n};\n\nprototypeAccessors$1.over.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.OVER, yn);\n};\n\n/**\n * Did the right mouse button come down in the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.rightDown.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.RIGHT_DOWN) !== 0;\n};\n\nprototypeAccessors$1.rightDown.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.RIGHT_DOWN, yn);\n};\n\n/**\n * Did the left mouse button come down in the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.leftDown.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.LEFT_DOWN) !== 0;\n};\n\nprototypeAccessors$1.leftDown.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.LEFT_DOWN, yn);\n};\n\nObject.defineProperties( InteractionTrackingData.prototype, prototypeAccessors$1 );\n\nInteractionTrackingData.FLAGS = Object.freeze({\n NONE: 0,\n OVER: 1 << 0,\n LEFT_DOWN: 1 << 1,\n RIGHT_DOWN: 1 << 2,\n});\n\n/**\n * Interface for classes that represent a hit area.\n *\n * It is implemented by the following classes:\n * - {@link PIXI.Circle}\n * - {@link PIXI.Ellipse}\n * - {@link PIXI.Polygon}\n * - {@link PIXI.RoundedRectangle}\n *\n * @interface IHitArea\n * @memberof PIXI\n */\n\n/**\n * Checks whether the x and y coordinates given are contained within this area\n *\n * @method\n * @name contains\n * @memberof PIXI.IHitArea#\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this area\n */\n\n/**\n * Default property values of interactive objects\n * Used by {@link PIXI.interaction.InteractionManager} to automatically give all DisplayObjects these properties\n *\n * @private\n * @name interactiveTarget\n * @type {Object}\n * @memberof PIXI.interaction\n * @example\n * function MyObject() {}\n *\n * Object.assign(\n * DisplayObject.prototype,\n * PIXI.interaction.interactiveTarget\n * );\n */\nvar interactiveTarget = {\n\n /**\n * Enable interaction events for the DisplayObject. Touch, pointer and mouse\n * events will not be emitted unless `interactive` is set to `true`.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.on('tap', (event) => {\n * //handle event\n * });\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n interactive: false,\n\n /**\n * Determines if the children to the displayObject can be clicked/touched\n * Setting this to false allows PixiJS to bypass a recursive `hitTest` function\n *\n * @member {boolean}\n * @memberof PIXI.Container#\n */\n interactiveChildren: true,\n\n /**\n * Interaction shape. Children will be hit first, then this shape will be checked.\n * Setting this will cause this shape to be checked in hit tests rather than the displayObject's bounds.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.hitArea = new PIXI.Rectangle(0, 0, 100, 100);\n * @member {PIXI.IHitArea}\n * @memberof PIXI.DisplayObject#\n */\n hitArea: null,\n\n /**\n * If enabled, the mouse cursor use the pointer behavior when hovered over the displayObject if it is interactive\n * Setting this changes the 'cursor' property to `'pointer'`.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.buttonMode = true;\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n get buttonMode()\n {\n return this.cursor === 'pointer';\n },\n set buttonMode(value)\n {\n if (value)\n {\n this.cursor = 'pointer';\n }\n else if (this.cursor === 'pointer')\n {\n this.cursor = null;\n }\n },\n\n /**\n * This defines what cursor mode is used when the mouse cursor\n * is hovered over the displayObject.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.cursor = 'wait';\n * @see https://developer.mozilla.org/en/docs/Web/CSS/cursor\n *\n * @member {string}\n * @memberof PIXI.DisplayObject#\n */\n cursor: null,\n\n /**\n * Internal set of all active pointers, by identifier\n *\n * @member {Map}\n * @memberof PIXI.DisplayObject#\n * @private\n */\n get trackedPointers()\n {\n if (this._trackedPointers === undefined) { this._trackedPointers = {}; }\n\n return this._trackedPointers;\n },\n\n /**\n * Map of all tracked pointers, by identifier. Use trackedPointers to access.\n *\n * @private\n * @type {Map}\n */\n _trackedPointers: undefined,\n};\n\n// Mix interactiveTarget into DisplayObject.prototype,\n// after deprecation has been handled\nDisplayObject.mixin(interactiveTarget);\n\nvar MOUSE_POINTER_ID = 1;\n\n// helpers for hitTest() - only used inside hitTest()\nvar hitTestEvent = {\n target: null,\n data: {\n global: null,\n },\n};\n\n/**\n * The interaction manager deals with mouse, touch and pointer events.\n *\n * Any DisplayObject can be interactive if its `interactive` property is set to true.\n *\n * This manager also supports multitouch.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.interaction`\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI.interaction\n */\nvar InteractionManager = /*@__PURE__*/(function (EventEmitter) {\n function InteractionManager(renderer, options)\n {\n EventEmitter.call(this);\n\n options = options || {};\n\n /**\n * The renderer this interaction manager works for.\n *\n * @member {PIXI.AbstractRenderer}\n */\n this.renderer = renderer;\n\n /**\n * Should default browser actions automatically be prevented.\n * Does not apply to pointer events for backwards compatibility\n * preventDefault on pointer events stops mouse events from firing\n * Thus, for every pointer event, there will always be either a mouse of touch event alongside it.\n *\n * @member {boolean}\n * @default true\n */\n this.autoPreventDefault = options.autoPreventDefault !== undefined ? options.autoPreventDefault : true;\n\n /**\n * Frequency in milliseconds that the mousemove, mouseover & mouseout interaction events will be checked.\n *\n * @member {number}\n * @default 10\n */\n this.interactionFrequency = options.interactionFrequency || 10;\n\n /**\n * The mouse data\n *\n * @member {PIXI.interaction.InteractionData}\n */\n this.mouse = new InteractionData();\n this.mouse.identifier = MOUSE_POINTER_ID;\n\n // setting the mouse to start off far off screen will mean that mouse over does\n // not get called before we even move the mouse.\n this.mouse.global.set(-999999);\n\n /**\n * Actively tracked InteractionData\n *\n * @private\n * @member {Object.}\n */\n this.activeInteractionData = {};\n this.activeInteractionData[MOUSE_POINTER_ID] = this.mouse;\n\n /**\n * Pool of unused InteractionData\n *\n * @private\n * @member {PIXI.interaction.InteractionData[]}\n */\n this.interactionDataPool = [];\n\n /**\n * An event data object to handle all the event tracking/dispatching\n *\n * @member {object}\n */\n this.eventData = new InteractionEvent();\n\n /**\n * The DOM element to bind to.\n *\n * @protected\n * @member {HTMLElement}\n */\n this.interactionDOMElement = null;\n\n /**\n * This property determines if mousemove and touchmove events are fired only when the cursor\n * is over the object.\n * Setting to true will make things work more in line with how the DOM version works.\n * Setting to false can make things easier for things like dragging\n * It is currently set to false as this is how PixiJS used to work. This will be set to true in\n * future versions of pixi.\n *\n * @member {boolean}\n * @default false\n */\n this.moveWhenInside = false;\n\n /**\n * Have events been attached to the dom element?\n *\n * @protected\n * @member {boolean}\n */\n this.eventsAdded = false;\n\n /**\n * Is the mouse hovering over the renderer?\n *\n * @protected\n * @member {boolean}\n */\n this.mouseOverRenderer = false;\n\n /**\n * Does the device support touch events\n * https://www.w3.org/TR/touch-events/\n *\n * @readonly\n * @member {boolean}\n */\n this.supportsTouchEvents = 'ontouchstart' in window;\n\n /**\n * Does the device support pointer events\n * https://www.w3.org/Submission/pointer-events/\n *\n * @readonly\n * @member {boolean}\n */\n this.supportsPointerEvents = !!window.PointerEvent;\n\n // this will make it so that you don't have to call bind all the time\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerUp = this.onPointerUp.bind(this);\n this.processPointerUp = this.processPointerUp.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerCancel = this.onPointerCancel.bind(this);\n this.processPointerCancel = this.processPointerCancel.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerDown = this.onPointerDown.bind(this);\n this.processPointerDown = this.processPointerDown.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerMove = this.onPointerMove.bind(this);\n this.processPointerMove = this.processPointerMove.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerOut = this.onPointerOut.bind(this);\n this.processPointerOverOut = this.processPointerOverOut.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerOver = this.onPointerOver.bind(this);\n\n /**\n * Dictionary of how different cursor modes are handled. Strings are handled as CSS cursor\n * values, objects are handled as dictionaries of CSS values for interactionDOMElement,\n * and functions are called instead of changing the CSS.\n * Default CSS cursor values are provided for 'default' and 'pointer' modes.\n * @member {Object.}\n */\n this.cursorStyles = {\n default: 'inherit',\n pointer: 'pointer',\n };\n\n /**\n * The mode of the cursor that is being used.\n * The value of this is a key from the cursorStyles dictionary.\n *\n * @member {string}\n */\n this.currentCursorMode = null;\n\n /**\n * Internal cached let.\n *\n * @private\n * @member {string}\n */\n this.cursor = null;\n\n /**\n * Internal cached let.\n *\n * @private\n * @member {PIXI.Point}\n */\n this._tempPoint = new Point();\n\n /**\n * The current resolution / device pixel ratio.\n *\n * @member {number}\n * @default 1\n */\n this.resolution = 1;\n\n /**\n * Delayed pointer events. Used to guarantee correct ordering of over/out events.\n *\n * @private\n * @member {Array}\n */\n this.delayedEvents = [];\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed on the display\n * object.\n *\n * @event PIXI.interaction.InteractionManager#mousedown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * on the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released over the display\n * object.\n *\n * @event PIXI.interaction.InteractionManager#mouseup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * over the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed and released on\n * the display object.\n *\n * @event PIXI.interaction.InteractionManager#click\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * and released on the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightclick\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released outside the\n * display object that initially registered a\n * [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown}.\n *\n * @event PIXI.interaction.InteractionManager#mouseupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * outside the display object that initially registered a\n * [rightdown]{@link PIXI.interaction.InteractionManager#event:rightdown}.\n *\n * @event PIXI.interaction.InteractionManager#rightupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved while over the display object\n *\n * @event PIXI.interaction.InteractionManager#mousemove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved onto the display object\n *\n * @event PIXI.interaction.InteractionManager#mouseover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved off the display object\n *\n * @event PIXI.interaction.InteractionManager#mouseout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed on the display object.\n *\n * @event PIXI.interaction.InteractionManager#pointerdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released over the display object.\n * Not always fired when some buttons are held down while others are released. In those cases,\n * use [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown} and\n * [mouseup]{@link PIXI.interaction.InteractionManager#event:mouseup} instead.\n *\n * @event PIXI.interaction.InteractionManager#pointerup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a pointer event\n *\n * @event PIXI.interaction.InteractionManager#pointercancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed and released on the display object.\n *\n * @event PIXI.interaction.InteractionManager#pointertap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released outside the display object that initially\n * registered a [pointerdown]{@link PIXI.interaction.InteractionManager#event:pointerdown}.\n *\n * @event PIXI.interaction.InteractionManager#pointerupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved while over the display object\n *\n * @event PIXI.interaction.InteractionManager#pointermove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved onto the display object\n *\n * @event PIXI.interaction.InteractionManager#pointerover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved off the display object\n *\n * @event PIXI.interaction.InteractionManager#pointerout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed on the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchstart\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed from the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchend\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a touch\n *\n * @event PIXI.interaction.InteractionManager#touchcancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed and removed from the display object.\n *\n * @event PIXI.interaction.InteractionManager#tap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed outside of the display object that initially\n * registered a [touchstart]{@link PIXI.interaction.InteractionManager#event:touchstart}.\n *\n * @event PIXI.interaction.InteractionManager#touchendoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is moved along the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchmove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed on the display.\n * object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mousedown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * on the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released over the display\n * object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * over the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed and released on\n * the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#click\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * and released on the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightclick\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released outside the\n * display object that initially registered a\n * [mousedown]{@link PIXI.DisplayObject#event:mousedown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * outside the display object that initially registered a\n * [rightdown]{@link PIXI.DisplayObject#event:rightdown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved while over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mousemove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved onto the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved off the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a pointer event.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointercancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed and released on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointertap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released outside the display object that initially\n * registered a [pointerdown]{@link PIXI.DisplayObject#event:pointerdown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved while over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointermove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved onto the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved off the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchstart\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed from the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchend\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a touch.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchcancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed and removed from the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#tap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed outside of the display object that initially\n * registered a [touchstart]{@link PIXI.DisplayObject#event:touchstart}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchendoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is moved along the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchmove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n this.setTargetElement(this.renderer.view, this.renderer.resolution);\n }\n\n if ( EventEmitter ) InteractionManager.__proto__ = EventEmitter;\n InteractionManager.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n InteractionManager.prototype.constructor = InteractionManager;\n\n /**\n * Hit tests a point against the display tree, returning the first interactive object that is hit.\n *\n * @param {PIXI.Point} globalPoint - A point to hit test with, in global space.\n * @param {PIXI.Container} [root] - The root display object to start from. If omitted, defaults\n * to the last rendered root of the associated renderer.\n * @return {PIXI.DisplayObject} The hit display object, if any.\n */\n InteractionManager.prototype.hitTest = function hitTest (globalPoint, root)\n {\n // clear the target for our hit test\n hitTestEvent.target = null;\n // assign the global point\n hitTestEvent.data.global = globalPoint;\n // ensure safety of the root\n if (!root)\n {\n root = this.renderer._lastObjectRendered;\n }\n // run the hit test\n this.processInteractive(hitTestEvent, root, null, true);\n // return our found object - it'll be null if we didn't hit anything\n\n return hitTestEvent.target;\n };\n\n /**\n * Sets the DOM element which will receive mouse/touch events. This is useful for when you have\n * other DOM elements on top of the renderers Canvas element. With this you'll be bale to delegate\n * another DOM element to receive those events.\n *\n * @param {HTMLElement} element - the DOM element which will receive mouse and touch events.\n * @param {number} [resolution=1] - The resolution / device pixel ratio of the new element (relative to the canvas).\n */\n InteractionManager.prototype.setTargetElement = function setTargetElement (element, resolution)\n {\n if ( resolution === void 0 ) resolution = 1;\n\n this.removeEvents();\n\n this.interactionDOMElement = element;\n\n this.resolution = resolution;\n\n this.addEvents();\n };\n\n /**\n * Registers all the DOM events\n *\n * @private\n */\n InteractionManager.prototype.addEvents = function addEvents ()\n {\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n Ticker.system.add(this.update, this, UPDATE_PRIORITY.INTERACTION);\n\n if (window.navigator.msPointerEnabled)\n {\n this.interactionDOMElement.style['-ms-content-zooming'] = 'none';\n this.interactionDOMElement.style['-ms-touch-action'] = 'none';\n }\n else if (this.supportsPointerEvents)\n {\n this.interactionDOMElement.style['touch-action'] = 'none';\n }\n\n /**\n * These events are added first, so that if pointer events are normalized, they are fired\n * in the same order as non-normalized events. ie. pointer event 1st, mouse / touch 2nd\n */\n if (this.supportsPointerEvents)\n {\n window.document.addEventListener('pointermove', this.onPointerMove, true);\n this.interactionDOMElement.addEventListener('pointerdown', this.onPointerDown, true);\n // pointerout is fired in addition to pointerup (for touch events) and pointercancel\n // we already handle those, so for the purposes of what we do in onPointerOut, we only\n // care about the pointerleave event\n this.interactionDOMElement.addEventListener('pointerleave', this.onPointerOut, true);\n this.interactionDOMElement.addEventListener('pointerover', this.onPointerOver, true);\n window.addEventListener('pointercancel', this.onPointerCancel, true);\n window.addEventListener('pointerup', this.onPointerUp, true);\n }\n else\n {\n window.document.addEventListener('mousemove', this.onPointerMove, true);\n this.interactionDOMElement.addEventListener('mousedown', this.onPointerDown, true);\n this.interactionDOMElement.addEventListener('mouseout', this.onPointerOut, true);\n this.interactionDOMElement.addEventListener('mouseover', this.onPointerOver, true);\n window.addEventListener('mouseup', this.onPointerUp, true);\n }\n\n // always look directly for touch events so that we can provide original data\n // In a future version we should change this to being just a fallback and rely solely on\n // PointerEvents whenever available\n if (this.supportsTouchEvents)\n {\n this.interactionDOMElement.addEventListener('touchstart', this.onPointerDown, true);\n this.interactionDOMElement.addEventListener('touchcancel', this.onPointerCancel, true);\n this.interactionDOMElement.addEventListener('touchend', this.onPointerUp, true);\n this.interactionDOMElement.addEventListener('touchmove', this.onPointerMove, true);\n }\n\n this.eventsAdded = true;\n };\n\n /**\n * Removes all the DOM events that were previously registered\n *\n * @private\n */\n InteractionManager.prototype.removeEvents = function removeEvents ()\n {\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n Ticker.system.remove(this.update, this);\n\n if (window.navigator.msPointerEnabled)\n {\n this.interactionDOMElement.style['-ms-content-zooming'] = '';\n this.interactionDOMElement.style['-ms-touch-action'] = '';\n }\n else if (this.supportsPointerEvents)\n {\n this.interactionDOMElement.style['touch-action'] = '';\n }\n\n if (this.supportsPointerEvents)\n {\n window.document.removeEventListener('pointermove', this.onPointerMove, true);\n this.interactionDOMElement.removeEventListener('pointerdown', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('pointerleave', this.onPointerOut, true);\n this.interactionDOMElement.removeEventListener('pointerover', this.onPointerOver, true);\n window.removeEventListener('pointercancel', this.onPointerCancel, true);\n window.removeEventListener('pointerup', this.onPointerUp, true);\n }\n else\n {\n window.document.removeEventListener('mousemove', this.onPointerMove, true);\n this.interactionDOMElement.removeEventListener('mousedown', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('mouseout', this.onPointerOut, true);\n this.interactionDOMElement.removeEventListener('mouseover', this.onPointerOver, true);\n window.removeEventListener('mouseup', this.onPointerUp, true);\n }\n\n if (this.supportsTouchEvents)\n {\n this.interactionDOMElement.removeEventListener('touchstart', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('touchcancel', this.onPointerCancel, true);\n this.interactionDOMElement.removeEventListener('touchend', this.onPointerUp, true);\n this.interactionDOMElement.removeEventListener('touchmove', this.onPointerMove, true);\n }\n\n this.interactionDOMElement = null;\n\n this.eventsAdded = false;\n };\n\n /**\n * Updates the state of interactive objects.\n * Invoked by a throttled ticker update from {@link PIXI.Ticker.system}.\n *\n * @param {number} deltaTime - time delta since last tick\n */\n InteractionManager.prototype.update = function update (deltaTime)\n {\n this._deltaTime += deltaTime;\n\n if (this._deltaTime < this.interactionFrequency)\n {\n return;\n }\n\n this._deltaTime = 0;\n\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n // if the user move the mouse this check has already been done using the mouse move!\n if (this.didMove)\n {\n this.didMove = false;\n\n return;\n }\n\n this.cursor = null;\n\n // Resets the flag as set by a stopPropagation call. This flag is usually reset by a user interaction of any kind,\n // but there was a scenario of a display object moving under a static mouse cursor.\n // In this case, mouseover and mouseevents would not pass the flag test in dispatchEvent function\n for (var k in this.activeInteractionData)\n {\n // eslint-disable-next-line no-prototype-builtins\n if (this.activeInteractionData.hasOwnProperty(k))\n {\n var interactionData = this.activeInteractionData[k];\n\n if (interactionData.originalEvent && interactionData.pointerType !== 'touch')\n {\n var interactionEvent = this.configureInteractionEventForDOMEvent(\n this.eventData,\n interactionData.originalEvent,\n interactionData\n );\n\n this.processInteractive(\n interactionEvent,\n this.renderer._lastObjectRendered,\n this.processPointerOverOut,\n true\n );\n }\n }\n }\n\n this.setCursorMode(this.cursor);\n };\n\n /**\n * Sets the current cursor mode, handling any callbacks or CSS style changes.\n *\n * @param {string} mode - cursor mode, a key from the cursorStyles dictionary\n */\n InteractionManager.prototype.setCursorMode = function setCursorMode (mode)\n {\n mode = mode || 'default';\n // if the mode didn't actually change, bail early\n if (this.currentCursorMode === mode)\n {\n return;\n }\n this.currentCursorMode = mode;\n var style = this.cursorStyles[mode];\n\n // only do things if there is a cursor style for it\n if (style)\n {\n switch (typeof style)\n {\n case 'string':\n // string styles are handled as cursor CSS\n this.interactionDOMElement.style.cursor = style;\n break;\n case 'function':\n // functions are just called, and passed the cursor mode\n style(mode);\n break;\n case 'object':\n // if it is an object, assume that it is a dictionary of CSS styles,\n // apply it to the interactionDOMElement\n Object.assign(this.interactionDOMElement.style, style);\n break;\n }\n }\n else if (typeof mode === 'string' && !Object.prototype.hasOwnProperty.call(this.cursorStyles, mode))\n {\n // if it mode is a string (not a Symbol) and cursorStyles doesn't have any entry\n // for the mode, then assume that the dev wants it to be CSS for the cursor.\n this.interactionDOMElement.style.cursor = mode;\n }\n };\n\n /**\n * Dispatches an event on the display object that was interacted with\n *\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question\n * @param {string} eventString - the name of the event (e.g, mousedown)\n * @param {object} eventData - the event data object\n * @private\n */\n InteractionManager.prototype.dispatchEvent = function dispatchEvent (displayObject, eventString, eventData)\n {\n // Even if the event was stopped, at least dispatch any remaining events\n // for the same display object.\n if (!eventData.stopPropagationHint || displayObject === eventData.stopsPropagatingAt)\n {\n eventData.currentTarget = displayObject;\n eventData.type = eventString;\n\n displayObject.emit(eventString, eventData);\n\n if (displayObject[eventString])\n {\n displayObject[eventString](eventData);\n }\n }\n };\n\n /**\n * Puts a event on a queue to be dispatched later. This is used to guarantee correct\n * ordering of over/out events.\n *\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question\n * @param {string} eventString - the name of the event (e.g, mousedown)\n * @param {object} eventData - the event data object\n * @private\n */\n InteractionManager.prototype.delayDispatchEvent = function delayDispatchEvent (displayObject, eventString, eventData)\n {\n this.delayedEvents.push({ displayObject: displayObject, eventString: eventString, eventData: eventData });\n };\n\n /**\n * Maps x and y coords from a DOM object and maps them correctly to the PixiJS view. The\n * resulting value is stored in the point. This takes into account the fact that the DOM\n * element could be scaled and positioned anywhere on the screen.\n *\n * @param {PIXI.Point} point - the point that the result will be stored in\n * @param {number} x - the x coord of the position to map\n * @param {number} y - the y coord of the position to map\n */\n InteractionManager.prototype.mapPositionToPoint = function mapPositionToPoint (point, x, y)\n {\n var rect;\n\n // IE 11 fix\n if (!this.interactionDOMElement.parentElement)\n {\n rect = { x: 0, y: 0, width: 0, height: 0 };\n }\n else\n {\n rect = this.interactionDOMElement.getBoundingClientRect();\n }\n\n var resolutionMultiplier = 1.0 / this.resolution;\n\n point.x = ((x - rect.left) * (this.interactionDOMElement.width / rect.width)) * resolutionMultiplier;\n point.y = ((y - rect.top) * (this.interactionDOMElement.height / rect.height)) * resolutionMultiplier;\n };\n\n /**\n * This function is provides a neat way of crawling through the scene graph and running a\n * specified function on all interactive objects it finds. It will also take care of hit\n * testing the interactive objects and passes the hit across in the function.\n *\n * @protected\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - event containing the point that\n * is tested for collision\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the displayObject\n * that will be hit test (recursively crawls its children)\n * @param {Function} [func] - the function that will be called on each interactive object. The\n * interactionEvent, displayObject and hit will be passed to the function\n * @param {boolean} [hitTest] - this indicates if the objects inside should be hit test against the point\n * @param {boolean} [interactive] - Whether the displayObject is interactive\n * @param {boolean} [skipDelayed] - Whether to process delayed events before returning. This is\n * used to avoid processing them too early during recursive calls.\n * @return {boolean} returns true if the displayObject hit the point\n */\n InteractionManager.prototype.processInteractive = function processInteractive (interactionEvent, displayObject, func, hitTest, interactive, skipDelayed)\n {\n if (!displayObject || !displayObject.visible)\n {\n return false;\n }\n\n var point = interactionEvent.data.global;\n\n // Took a little while to rework this function correctly! But now it is done and nice and optimized! ^_^\n //\n // This function will now loop through all objects and then only hit test the objects it HAS\n // to, not all of them. MUCH faster..\n // An object will be hit test if the following is true:\n //\n // 1: It is interactive.\n // 2: It belongs to a parent that is interactive AND one of the parents children have not already been hit.\n //\n // As another little optimization once an interactive object has been hit we can carry on\n // through the scenegraph, but we know that there will be no more hits! So we can avoid extra hit tests\n // A final optimization is that an object is not hit test directly if a child has already been hit.\n\n interactive = displayObject.interactive || interactive;\n\n var hit = false;\n var interactiveParent = interactive;\n\n // Flag here can set to false if the event is outside the parents hitArea or mask\n var hitTestChildren = true;\n\n // If there is a hitArea, no need to test against anything else if the pointer is not within the hitArea\n // There is also no longer a need to hitTest children.\n if (displayObject.hitArea)\n {\n if (hitTest)\n {\n displayObject.worldTransform.applyInverse(point, this._tempPoint);\n if (!displayObject.hitArea.contains(this._tempPoint.x, this._tempPoint.y))\n {\n hitTest = false;\n hitTestChildren = false;\n }\n else\n {\n hit = true;\n }\n }\n interactiveParent = false;\n }\n // If there is a mask, no need to hitTest against anything else if the pointer is not within the mask.\n // We still want to hitTestChildren, however, to ensure a mouseout can still be generated.\n // https://github.com/pixijs/pixi.js/issues/5135\n else if (displayObject._mask)\n {\n if (hitTest)\n {\n if (!(displayObject._mask.containsPoint && displayObject._mask.containsPoint(point)))\n {\n hitTest = false;\n }\n }\n }\n\n // ** FREE TIP **! If an object is not interactive or has no buttons in it\n // (such as a game scene!) set interactiveChildren to false for that displayObject.\n // This will allow PixiJS to completely ignore and bypass checking the displayObjects children.\n if (hitTestChildren && displayObject.interactiveChildren && displayObject.children)\n {\n var children = displayObject.children;\n\n for (var i = children.length - 1; i >= 0; i--)\n {\n var child = children[i];\n\n // time to get recursive.. if this function will return if something is hit..\n var childHit = this.processInteractive(interactionEvent, child, func, hitTest, interactiveParent, true);\n\n if (childHit)\n {\n // its a good idea to check if a child has lost its parent.\n // this means it has been removed whilst looping so its best\n if (!child.parent)\n {\n continue;\n }\n\n // we no longer need to hit test any more objects in this container as we we\n // now know the parent has been hit\n interactiveParent = false;\n\n // If the child is interactive , that means that the object hit was actually\n // interactive and not just the child of an interactive object.\n // This means we no longer need to hit test anything else. We still need to run\n // through all objects, but we don't need to perform any hit tests.\n\n if (childHit)\n {\n if (interactionEvent.target)\n {\n hitTest = false;\n }\n hit = true;\n }\n }\n }\n }\n\n // no point running this if the item is not interactive or does not have an interactive parent.\n if (interactive)\n {\n // if we are hit testing (as in we have no hit any objects yet)\n // We also don't need to worry about hit testing if once of the displayObjects children\n // has already been hit - but only if it was interactive, otherwise we need to keep\n // looking for an interactive child, just in case we hit one\n if (hitTest && !interactionEvent.target)\n {\n // already tested against hitArea if it is defined\n if (!displayObject.hitArea && displayObject.containsPoint)\n {\n if (displayObject.containsPoint(point))\n {\n hit = true;\n }\n }\n }\n\n if (displayObject.interactive)\n {\n if (hit && !interactionEvent.target)\n {\n interactionEvent.target = displayObject;\n }\n\n if (func)\n {\n func(interactionEvent, displayObject, !!hit);\n }\n }\n }\n\n var delayedEvents = this.delayedEvents;\n\n if (delayedEvents.length && !skipDelayed)\n {\n // Reset the propagation hint, because we start deeper in the tree again.\n interactionEvent.stopPropagationHint = false;\n\n var delayedLen = delayedEvents.length;\n\n this.delayedEvents = [];\n\n for (var i$1 = 0; i$1 < delayedLen; i$1++)\n {\n var ref = delayedEvents[i$1];\n var displayObject$1 = ref.displayObject;\n var eventString = ref.eventString;\n var eventData = ref.eventData;\n\n // When we reach the object we wanted to stop propagating at,\n // set the propagation hint.\n if (eventData.stopsPropagatingAt === displayObject$1)\n {\n eventData.stopPropagationHint = true;\n }\n\n this.dispatchEvent(displayObject$1, eventString, eventData);\n }\n }\n\n return hit;\n };\n\n /**\n * Is called when the pointer button is pressed down on the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being pressed down\n */\n InteractionManager.prototype.onPointerDown = function onPointerDown (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n /**\n * No need to prevent default on natural pointer events, as there are no side effects\n * Normalized events, however, may have the double mousedown/touchstart issue on the native android browser,\n * so still need to be prevented.\n */\n\n // Guaranteed that there will be at least one event in events, and all events must have the same pointer type\n\n if (this.autoPreventDefault && events[0].isNormalized)\n {\n var cancelable = originalEvent.cancelable || !('cancelable' in originalEvent);\n\n if (cancelable)\n {\n originalEvent.preventDefault();\n }\n }\n\n var eventLen = events.length;\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerDown, true);\n\n this.emit('pointerdown', interactionEvent);\n if (event.pointerType === 'touch')\n {\n this.emit('touchstart', interactionEvent);\n }\n // emit a mouse event for \"pen\" pointers, the way a browser would emit a fallback event\n else if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n var isRightButton = event.button === 2;\n\n this.emit(isRightButton ? 'rightdown' : 'mousedown', this.eventData);\n }\n }\n };\n\n /**\n * Processes the result of the pointer down check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerDown = function processPointerDown (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n var id = interactionEvent.data.identifier;\n\n if (hit)\n {\n if (!displayObject.trackedPointers[id])\n {\n displayObject.trackedPointers[id] = new InteractionTrackingData(id);\n }\n this.dispatchEvent(displayObject, 'pointerdown', interactionEvent);\n\n if (data.pointerType === 'touch')\n {\n this.dispatchEvent(displayObject, 'touchstart', interactionEvent);\n }\n else if (data.pointerType === 'mouse' || data.pointerType === 'pen')\n {\n var isRightButton = data.button === 2;\n\n if (isRightButton)\n {\n displayObject.trackedPointers[id].rightDown = true;\n }\n else\n {\n displayObject.trackedPointers[id].leftDown = true;\n }\n\n this.dispatchEvent(displayObject, isRightButton ? 'rightdown' : 'mousedown', interactionEvent);\n }\n }\n };\n\n /**\n * Is called when the pointer button is released on the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being released\n * @param {boolean} cancelled - true if the pointer is cancelled\n * @param {Function} func - Function passed to {@link processInteractive}\n */\n InteractionManager.prototype.onPointerComplete = function onPointerComplete (originalEvent, cancelled, func)\n {\n var events = this.normalizeToPointerData(originalEvent);\n\n var eventLen = events.length;\n\n // if the event wasn't targeting our canvas, then consider it to be pointerupoutside\n // in all cases (unless it was a pointercancel)\n var eventAppend = originalEvent.target !== this.interactionDOMElement ? 'outside' : '';\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n // perform hit testing for events targeting our canvas or cancel events\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, func, cancelled || !eventAppend);\n\n this.emit(cancelled ? 'pointercancel' : (\"pointerup\" + eventAppend), interactionEvent);\n\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n var isRightButton = event.button === 2;\n\n this.emit(isRightButton ? (\"rightup\" + eventAppend) : (\"mouseup\" + eventAppend), interactionEvent);\n }\n else if (event.pointerType === 'touch')\n {\n this.emit(cancelled ? 'touchcancel' : (\"touchend\" + eventAppend), interactionEvent);\n this.releaseInteractionDataForPointerId(event.pointerId, interactionData);\n }\n }\n };\n\n /**\n * Is called when the pointer button is cancelled\n *\n * @private\n * @param {PointerEvent} event - The DOM event of a pointer button being released\n */\n InteractionManager.prototype.onPointerCancel = function onPointerCancel (event)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && event.pointerType === 'touch') { return; }\n\n this.onPointerComplete(event, true, this.processPointerCancel);\n };\n\n /**\n * Processes the result of the pointer cancel check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n */\n InteractionManager.prototype.processPointerCancel = function processPointerCancel (interactionEvent, displayObject)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n if (displayObject.trackedPointers[id] !== undefined)\n {\n delete displayObject.trackedPointers[id];\n this.dispatchEvent(displayObject, 'pointercancel', interactionEvent);\n\n if (data.pointerType === 'touch')\n {\n this.dispatchEvent(displayObject, 'touchcancel', interactionEvent);\n }\n }\n };\n\n /**\n * Is called when the pointer button is released on the renderer element\n *\n * @private\n * @param {PointerEvent} event - The DOM event of a pointer button being released\n */\n InteractionManager.prototype.onPointerUp = function onPointerUp (event)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && event.pointerType === 'touch') { return; }\n\n this.onPointerComplete(event, false, this.processPointerUp);\n };\n\n /**\n * Processes the result of the pointer up check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerUp = function processPointerUp (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n var trackingData = displayObject.trackedPointers[id];\n\n var isTouch = data.pointerType === 'touch';\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n // need to track mouse down status in the mouse block so that we can emit\n // event in a later block\n var isMouseTap = false;\n\n // Mouse only\n if (isMouse)\n {\n var isRightButton = data.button === 2;\n\n var flags = InteractionTrackingData.FLAGS;\n\n var test = isRightButton ? flags.RIGHT_DOWN : flags.LEFT_DOWN;\n\n var isDown = trackingData !== undefined && (trackingData.flags & test);\n\n if (hit)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightup' : 'mouseup', interactionEvent);\n\n if (isDown)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightclick' : 'click', interactionEvent);\n // because we can confirm that the mousedown happened on this object, flag for later emit of pointertap\n isMouseTap = true;\n }\n }\n else if (isDown)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightupoutside' : 'mouseupoutside', interactionEvent);\n }\n // update the down state of the tracking data\n if (trackingData)\n {\n if (isRightButton)\n {\n trackingData.rightDown = false;\n }\n else\n {\n trackingData.leftDown = false;\n }\n }\n }\n\n // Pointers and Touches, and Mouse\n if (hit)\n {\n this.dispatchEvent(displayObject, 'pointerup', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchend', interactionEvent); }\n\n if (trackingData)\n {\n // emit pointertap if not a mouse, or if the mouse block decided it was a tap\n if (!isMouse || isMouseTap)\n {\n this.dispatchEvent(displayObject, 'pointertap', interactionEvent);\n }\n if (isTouch)\n {\n this.dispatchEvent(displayObject, 'tap', interactionEvent);\n // touches are no longer over (if they ever were) when we get the touchend\n // so we should ensure that we don't keep pretending that they are\n trackingData.over = false;\n }\n }\n }\n else if (trackingData)\n {\n this.dispatchEvent(displayObject, 'pointerupoutside', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchendoutside', interactionEvent); }\n }\n // Only remove the tracking data if there is no over/down state still associated with it\n if (trackingData && trackingData.none)\n {\n delete displayObject.trackedPointers[id];\n }\n };\n\n /**\n * Is called when the pointer moves across the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer moving\n */\n InteractionManager.prototype.onPointerMove = function onPointerMove (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n if (events[0].pointerType === 'mouse' || events[0].pointerType === 'pen')\n {\n this.didMove = true;\n\n this.cursor = null;\n }\n\n var eventLen = events.length;\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerMove, true);\n\n this.emit('pointermove', interactionEvent);\n if (event.pointerType === 'touch') { this.emit('touchmove', interactionEvent); }\n if (event.pointerType === 'mouse' || event.pointerType === 'pen') { this.emit('mousemove', interactionEvent); }\n }\n\n if (events[0].pointerType === 'mouse')\n {\n this.setCursorMode(this.cursor);\n\n // TODO BUG for parents interactive object (border order issue)\n }\n };\n\n /**\n * Processes the result of the pointer move check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerMove = function processPointerMove (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var isTouch = data.pointerType === 'touch';\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n\n if (isMouse)\n {\n this.processPointerOverOut(interactionEvent, displayObject, hit);\n }\n\n if (!this.moveWhenInside || hit)\n {\n this.dispatchEvent(displayObject, 'pointermove', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchmove', interactionEvent); }\n if (isMouse) { this.dispatchEvent(displayObject, 'mousemove', interactionEvent); }\n }\n };\n\n /**\n * Is called when the pointer is moved out of the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer being moved out\n */\n InteractionManager.prototype.onPointerOut = function onPointerOut (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n // Only mouse and pointer can call onPointerOut, so events will always be length 1\n var event = events[0];\n\n if (event.pointerType === 'mouse')\n {\n this.mouseOverRenderer = false;\n this.setCursorMode(null);\n }\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = event;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerOverOut, false);\n\n this.emit('pointerout', interactionEvent);\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n this.emit('mouseout', interactionEvent);\n }\n else\n {\n // we can get touchleave events after touchend, so we want to make sure we don't\n // introduce memory leaks\n this.releaseInteractionDataForPointerId(interactionData.identifier);\n }\n };\n\n /**\n * Processes the result of the pointer over/out check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerOverOut = function processPointerOverOut (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n\n var trackingData = displayObject.trackedPointers[id];\n\n // if we just moused over the display object, then we need to track that state\n if (hit && !trackingData)\n {\n trackingData = displayObject.trackedPointers[id] = new InteractionTrackingData(id);\n }\n\n if (trackingData === undefined) { return; }\n\n if (hit && this.mouseOverRenderer)\n {\n if (!trackingData.over)\n {\n trackingData.over = true;\n this.delayDispatchEvent(displayObject, 'pointerover', interactionEvent);\n if (isMouse)\n {\n this.delayDispatchEvent(displayObject, 'mouseover', interactionEvent);\n }\n }\n\n // only change the cursor if it has not already been changed (by something deeper in the\n // display tree)\n if (isMouse && this.cursor === null)\n {\n this.cursor = displayObject.cursor;\n }\n }\n else if (trackingData.over)\n {\n trackingData.over = false;\n this.dispatchEvent(displayObject, 'pointerout', this.eventData);\n if (isMouse)\n {\n this.dispatchEvent(displayObject, 'mouseout', interactionEvent);\n }\n // if there is no mouse down information for the pointer, then it is safe to delete\n if (trackingData.none)\n {\n delete displayObject.trackedPointers[id];\n }\n }\n };\n\n /**\n * Is called when the pointer is moved into the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being moved into the renderer view\n */\n InteractionManager.prototype.onPointerOver = function onPointerOver (originalEvent)\n {\n var events = this.normalizeToPointerData(originalEvent);\n\n // Only mouse and pointer can call onPointerOver, so events will always be length 1\n var event = events[0];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = event;\n\n if (event.pointerType === 'mouse')\n {\n this.mouseOverRenderer = true;\n }\n\n this.emit('pointerover', interactionEvent);\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n this.emit('mouseover', interactionEvent);\n }\n };\n\n /**\n * Get InteractionData for a given pointerId. Store that data as well\n *\n * @private\n * @param {PointerEvent} event - Normalized pointer event, output from normalizeToPointerData\n * @return {PIXI.interaction.InteractionData} - Interaction data for the given pointer identifier\n */\n InteractionManager.prototype.getInteractionDataForPointerId = function getInteractionDataForPointerId (event)\n {\n var pointerId = event.pointerId;\n\n var interactionData;\n\n if (pointerId === MOUSE_POINTER_ID || event.pointerType === 'mouse')\n {\n interactionData = this.mouse;\n }\n else if (this.activeInteractionData[pointerId])\n {\n interactionData = this.activeInteractionData[pointerId];\n }\n else\n {\n interactionData = this.interactionDataPool.pop() || new InteractionData();\n interactionData.identifier = pointerId;\n this.activeInteractionData[pointerId] = interactionData;\n }\n // copy properties from the event, so that we can make sure that touch/pointer specific\n // data is available\n interactionData.copyEvent(event);\n\n return interactionData;\n };\n\n /**\n * Return unused InteractionData to the pool, for a given pointerId\n *\n * @private\n * @param {number} pointerId - Identifier from a pointer event\n */\n InteractionManager.prototype.releaseInteractionDataForPointerId = function releaseInteractionDataForPointerId (pointerId)\n {\n var interactionData = this.activeInteractionData[pointerId];\n\n if (interactionData)\n {\n delete this.activeInteractionData[pointerId];\n interactionData.reset();\n this.interactionDataPool.push(interactionData);\n }\n };\n\n /**\n * Configure an InteractionEvent to wrap a DOM PointerEvent and InteractionData\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The event to be configured\n * @param {PointerEvent} pointerEvent - The DOM event that will be paired with the InteractionEvent\n * @param {PIXI.interaction.InteractionData} interactionData - The InteractionData that will be paired\n * with the InteractionEvent\n * @return {PIXI.interaction.InteractionEvent} the interaction event that was passed in\n */\n InteractionManager.prototype.configureInteractionEventForDOMEvent = function configureInteractionEventForDOMEvent (interactionEvent, pointerEvent, interactionData)\n {\n interactionEvent.data = interactionData;\n\n this.mapPositionToPoint(interactionData.global, pointerEvent.clientX, pointerEvent.clientY);\n\n // Not really sure why this is happening, but it's how a previous version handled things\n if (pointerEvent.pointerType === 'touch')\n {\n pointerEvent.globalX = interactionData.global.x;\n pointerEvent.globalY = interactionData.global.y;\n }\n\n interactionData.originalEvent = pointerEvent;\n interactionEvent.reset();\n\n return interactionEvent;\n };\n\n /**\n * Ensures that the original event object contains all data that a regular pointer event would have\n *\n * @private\n * @param {TouchEvent|MouseEvent|PointerEvent} event - The original event data from a touch or mouse event\n * @return {PointerEvent[]} An array containing a single normalized pointer event, in the case of a pointer\n * or mouse event, or a multiple normalized pointer events if there are multiple changed touches\n */\n InteractionManager.prototype.normalizeToPointerData = function normalizeToPointerData (event)\n {\n var normalizedEvents = [];\n\n if (this.supportsTouchEvents && event instanceof TouchEvent)\n {\n for (var i = 0, li = event.changedTouches.length; i < li; i++)\n {\n var touch = event.changedTouches[i];\n\n if (typeof touch.button === 'undefined') { touch.button = event.touches.length ? 1 : 0; }\n if (typeof touch.buttons === 'undefined') { touch.buttons = event.touches.length ? 1 : 0; }\n if (typeof touch.isPrimary === 'undefined')\n {\n touch.isPrimary = event.touches.length === 1 && event.type === 'touchstart';\n }\n if (typeof touch.width === 'undefined') { touch.width = touch.radiusX || 1; }\n if (typeof touch.height === 'undefined') { touch.height = touch.radiusY || 1; }\n if (typeof touch.tiltX === 'undefined') { touch.tiltX = 0; }\n if (typeof touch.tiltY === 'undefined') { touch.tiltY = 0; }\n if (typeof touch.pointerType === 'undefined') { touch.pointerType = 'touch'; }\n if (typeof touch.pointerId === 'undefined') { touch.pointerId = touch.identifier || 0; }\n if (typeof touch.pressure === 'undefined') { touch.pressure = touch.force || 0.5; }\n if (typeof touch.twist === 'undefined') { touch.twist = 0; }\n if (typeof touch.tangentialPressure === 'undefined') { touch.tangentialPressure = 0; }\n // TODO: Remove these, as layerX/Y is not a standard, is deprecated, has uneven\n // support, and the fill ins are not quite the same\n // offsetX/Y might be okay, but is not the same as clientX/Y when the canvas's top\n // left is not 0,0 on the page\n if (typeof touch.layerX === 'undefined') { touch.layerX = touch.offsetX = touch.clientX; }\n if (typeof touch.layerY === 'undefined') { touch.layerY = touch.offsetY = touch.clientY; }\n\n // mark the touch as normalized, just so that we know we did it\n touch.isNormalized = true;\n\n normalizedEvents.push(touch);\n }\n }\n // apparently PointerEvent subclasses MouseEvent, so yay\n else if (event instanceof MouseEvent && (!this.supportsPointerEvents || !(event instanceof window.PointerEvent)))\n {\n if (typeof event.isPrimary === 'undefined') { event.isPrimary = true; }\n if (typeof event.width === 'undefined') { event.width = 1; }\n if (typeof event.height === 'undefined') { event.height = 1; }\n if (typeof event.tiltX === 'undefined') { event.tiltX = 0; }\n if (typeof event.tiltY === 'undefined') { event.tiltY = 0; }\n if (typeof event.pointerType === 'undefined') { event.pointerType = 'mouse'; }\n if (typeof event.pointerId === 'undefined') { event.pointerId = MOUSE_POINTER_ID; }\n if (typeof event.pressure === 'undefined') { event.pressure = 0.5; }\n if (typeof event.twist === 'undefined') { event.twist = 0; }\n if (typeof event.tangentialPressure === 'undefined') { event.tangentialPressure = 0; }\n\n // mark the mouse event as normalized, just so that we know we did it\n event.isNormalized = true;\n\n normalizedEvents.push(event);\n }\n else\n {\n normalizedEvents.push(event);\n }\n\n return normalizedEvents;\n };\n\n /**\n * Destroys the interaction manager\n *\n */\n InteractionManager.prototype.destroy = function destroy ()\n {\n this.removeEvents();\n\n this.removeAllListeners();\n\n this.renderer = null;\n\n this.mouse = null;\n\n this.eventData = null;\n\n this.interactionDOMElement = null;\n\n this.onPointerDown = null;\n this.processPointerDown = null;\n\n this.onPointerUp = null;\n this.processPointerUp = null;\n\n this.onPointerCancel = null;\n this.processPointerCancel = null;\n\n this.onPointerMove = null;\n this.processPointerMove = null;\n\n this.onPointerOut = null;\n this.processPointerOverOut = null;\n\n this.onPointerOver = null;\n\n this._tempPoint = null;\n };\n\n return InteractionManager;\n}(EventEmitter));\n\n/**\n * This namespace contains a renderer plugin for handling mouse, pointer, and touch events.\n *\n * Do not instantiate this plugin directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @namespace PIXI.interaction\n */\n\nexport { InteractionData, InteractionEvent, InteractionManager, InteractionTrackingData, interactiveTarget };\n//# sourceMappingURL=interaction.es.js.map\n","/*!\n * @pixi/graphics - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/graphics is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture, BaseTexture, BatchDrawCall, BatchGeometry, UniformGroup, Shader, State } from '@pixi/core';\nimport { SHAPES, Point, PI_2, Polygon, Rectangle, RoundedRectangle, Circle, Ellipse, Matrix } from '@pixi/math';\nimport { earcut, premultiplyTint, hex2rgb } from '@pixi/utils';\nimport { Bounds, Container } from '@pixi/display';\nimport { WRAP_MODES, DRAW_MODES, BLEND_MODES } from '@pixi/constants';\n\n/**\n * Graphics curves resolution settings. If `adaptive` flag is set to `true`,\n * the resolution is calculated based on the curve's length to ensure better visual quality.\n * Adaptive draw works with `bezierCurveTo` and `quadraticCurveTo`.\n *\n * @static\n * @constant\n * @memberof PIXI\n * @name GRAPHICS_CURVES\n * @type {object}\n * @property {boolean} adaptive=false - flag indicating if the resolution should be adaptive\n * @property {number} maxLength=10 - maximal length of a single segment of the curve (if adaptive = false, ignored)\n * @property {number} minSegments=8 - minimal number of segments in the curve (if adaptive = false, ignored)\n * @property {number} maxSegments=2048 - maximal number of segments in the curve (if adaptive = false, ignored)\n */\nvar GRAPHICS_CURVES = {\n adaptive: true,\n maxLength: 10,\n minSegments: 8,\n maxSegments: 2048,\n _segmentsCount: function _segmentsCount(length, defaultSegments)\n {\n if ( defaultSegments === void 0 ) defaultSegments = 20;\n\n if (!this.adaptive)\n {\n return defaultSegments;\n }\n\n var result = Math.ceil(length / this.maxLength);\n\n if (result < this.minSegments)\n {\n result = this.minSegments;\n }\n else if (result > this.maxSegments)\n {\n result = this.maxSegments;\n }\n\n return result;\n },\n};\n\n/**\n * Fill style object for Graphics.\n *\n * @class\n * @memberof PIXI\n */\nvar FillStyle = function FillStyle()\n{\n this.reset();\n};\n\n/**\n * Clones the object\n *\n * @return {PIXI.FillStyle}\n */\nFillStyle.prototype.clone = function clone ()\n{\n var obj = new FillStyle();\n\n obj.color = this.color;\n obj.alpha = this.alpha;\n obj.texture = this.texture;\n obj.matrix = this.matrix;\n obj.visible = this.visible;\n\n return obj;\n};\n\n/**\n * Reset\n */\nFillStyle.prototype.reset = function reset ()\n{\n /**\n * The hex color value used when coloring the Graphics object.\n *\n * @member {number}\n * @default 1\n */\n this.color = 0xFFFFFF;\n\n /**\n * The alpha value used when filling the Graphics object.\n *\n * @member {number}\n * @default 1\n */\n this.alpha = 1;\n\n /**\n * The texture to be used for the fill.\n *\n * @member {string}\n * @default 0\n */\n this.texture = Texture.WHITE;\n\n /**\n * The transform aplpied to the texture.\n *\n * @member {string}\n * @default 0\n */\n this.matrix = null;\n\n /**\n * If the current fill is visible.\n *\n * @member {boolean}\n * @default false\n */\n this.visible = false;\n};\n\n/**\n * Destroy and don't use after this\n */\nFillStyle.prototype.destroy = function destroy ()\n{\n this.texture = null;\n this.matrix = null;\n};\n\n/**\n * A class to contain data useful for Graphics objects\n *\n * @class\n * @memberof PIXI\n */\nvar GraphicsData = function GraphicsData(shape, fillStyle, lineStyle, matrix)\n{\n if ( fillStyle === void 0 ) fillStyle = null;\n if ( lineStyle === void 0 ) lineStyle = null;\n if ( matrix === void 0 ) matrix = null;\n\n /**\n * The shape object to draw.\n * @member {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle}\n */\n this.shape = shape;\n\n /**\n * The style of the line.\n * @member {PIXI.LineStyle}\n */\n this.lineStyle = lineStyle;\n\n /**\n * The style of the fill.\n * @member {PIXI.FillStyle}\n */\n this.fillStyle = fillStyle;\n\n /**\n * The transform matrix.\n * @member {PIXI.Matrix}\n */\n this.matrix = matrix;\n\n /**\n * The type of the shape, see the Const.Shapes file for all the existing types,\n * @member {number}\n */\n this.type = shape.type;\n\n /**\n * The collection of points.\n * @member {number[]}\n */\n this.points = [];\n\n /**\n * The collection of holes.\n * @member {PIXI.GraphicsData[]}\n */\n this.holes = [];\n};\n\n/**\n * Creates a new GraphicsData object with the same values as this one.\n *\n * @return {PIXI.GraphicsData} Cloned GraphicsData object\n */\nGraphicsData.prototype.clone = function clone ()\n{\n return new GraphicsData(\n this.shape,\n this.fillStyle,\n this.lineStyle,\n this.matrix\n );\n};\n\n/**\n * Destroys the Graphics data.\n */\nGraphicsData.prototype.destroy = function destroy ()\n{\n this.shape = null;\n this.holes.length = 0;\n this.holes = null;\n this.points.length = 0;\n this.points = null;\n this.lineStyle = null;\n this.fillStyle = null;\n};\n\n/**\n * Builds a circle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object to draw\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildCircle = {\n\n build: function build(graphicsData)\n {\n // need to convert points to a nice regular data\n var circleData = graphicsData.shape;\n var points = graphicsData.points;\n var x = circleData.x;\n var y = circleData.y;\n var width;\n var height;\n\n points.length = 0;\n\n // TODO - bit hacky??\n if (graphicsData.type === SHAPES.CIRC)\n {\n width = circleData.radius;\n height = circleData.radius;\n }\n else\n {\n width = circleData.width;\n height = circleData.height;\n }\n\n if (width === 0 || height === 0)\n {\n return;\n }\n\n var totalSegs = Math.floor(30 * Math.sqrt(circleData.radius))\n || Math.floor(15 * Math.sqrt(circleData.width + circleData.height));\n\n totalSegs /= 2.3;\n\n var seg = (Math.PI * 2) / totalSegs;\n\n for (var i = 0; i < totalSegs; i++)\n {\n points.push(\n x + (Math.sin(-seg * i) * width),\n y + (Math.cos(-seg * i) * height)\n );\n }\n\n points.push(\n points[0],\n points[1]\n );\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n var vertPos = verts.length / 2;\n var center = vertPos;\n\n verts.push(graphicsData.shape.x, graphicsData.shape.y);\n\n for (var i = 0; i < points.length; i += 2)\n {\n verts.push(points[i], points[i + 1]);\n\n // add some uvs\n indices.push(vertPos++, center, vertPos);\n }\n },\n};\n\n/**\n * Builds a line to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildLine (graphicsData, graphicsGeometry)\n{\n if (graphicsData.lineStyle.native)\n {\n buildNativeLine(graphicsData, graphicsGeometry);\n }\n else\n {\n buildLine$1(graphicsData, graphicsGeometry);\n }\n}\n\n/**\n * Builds a line to draw using the polygon method.\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildLine$1(graphicsData, graphicsGeometry)\n{\n var shape = graphicsData.shape;\n var points = graphicsData.points || shape.points.slice();\n var eps = graphicsGeometry.closePointEps;\n\n if (points.length === 0)\n {\n return;\n }\n // if the line width is an odd number add 0.5 to align to a whole pixel\n // commenting this out fixes #711 and #1620\n // if (graphicsData.lineWidth%2)\n // {\n // for (i = 0; i < points.length; i++)\n // {\n // points[i] += 0.5;\n // }\n // }\n\n var style = graphicsData.lineStyle;\n\n // get first and last point.. figure out the middle!\n var firstPoint = new Point(points[0], points[1]);\n var lastPoint = new Point(points[points.length - 2], points[points.length - 1]);\n var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke;\n var closedPath = Math.abs(firstPoint.x - lastPoint.x) < eps\n && Math.abs(firstPoint.y - lastPoint.y) < eps;\n\n // if the first point is the last point - gonna have issues :)\n if (closedShape)\n {\n // need to clone as we are going to slightly modify the shape..\n points = points.slice();\n\n if (closedPath)\n {\n points.pop();\n points.pop();\n lastPoint.set(points[points.length - 2], points[points.length - 1]);\n }\n\n var midPointX = lastPoint.x + ((firstPoint.x - lastPoint.x) * 0.5);\n var midPointY = lastPoint.y + ((firstPoint.y - lastPoint.y) * 0.5);\n\n points.unshift(midPointX, midPointY);\n points.push(midPointX, midPointY);\n }\n\n var verts = graphicsGeometry.points;\n var length = points.length / 2;\n var indexCount = points.length;\n var indexStart = verts.length / 2;\n\n // DRAW the Line\n var width = style.width / 2;\n\n // sort color\n var p1x = points[0];\n var p1y = points[1];\n var p2x = points[2];\n var p2y = points[3];\n var p3x = 0;\n var p3y = 0;\n\n var perpx = -(p1y - p2y);\n var perpy = p1x - p2x;\n var perp2x = 0;\n var perp2y = 0;\n var perp3x = 0;\n var perp3y = 0;\n\n var dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n var ratio = style.alignment;// 0.5;\n var r1 = (1 - ratio) * 2;\n var r2 = ratio * 2;\n\n // start\n verts.push(\n p1x - (perpx * r1),\n p1y - (perpy * r1));\n\n verts.push(\n p1x + (perpx * r2),\n p1y + (perpy * r2));\n\n for (var i = 1; i < length - 1; ++i)\n {\n p1x = points[(i - 1) * 2];\n p1y = points[((i - 1) * 2) + 1];\n\n p2x = points[i * 2];\n p2y = points[(i * 2) + 1];\n\n p3x = points[(i + 1) * 2];\n p3y = points[((i + 1) * 2) + 1];\n\n perpx = -(p1y - p2y);\n perpy = p1x - p2x;\n\n dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n perp2x = -(p2y - p3y);\n perp2y = p2x - p3x;\n\n dist = Math.sqrt((perp2x * perp2x) + (perp2y * perp2y));\n perp2x /= dist;\n perp2y /= dist;\n perp2x *= width;\n perp2y *= width;\n\n var a1 = (-perpy + p1y) - (-perpy + p2y);\n var b1 = (-perpx + p2x) - (-perpx + p1x);\n var c1 = ((-perpx + p1x) * (-perpy + p2y)) - ((-perpx + p2x) * (-perpy + p1y));\n var a2 = (-perp2y + p3y) - (-perp2y + p2y);\n var b2 = (-perp2x + p2x) - (-perp2x + p3x);\n var c2 = ((-perp2x + p3x) * (-perp2y + p2y)) - ((-perp2x + p2x) * (-perp2y + p3y));\n\n var denom = (a1 * b2) - (a2 * b1);\n\n if (Math.abs(denom) < 0.1)\n {\n denom += 10.1;\n verts.push(\n p2x - (perpx * r1),\n p2y - (perpy * r1));\n\n verts.push(\n p2x + (perpx * r2),\n p2y + (perpy * r2));\n\n continue;\n }\n\n var px = ((b1 * c2) - (b2 * c1)) / denom;\n var py = ((a2 * c1) - (a1 * c2)) / denom;\n var pdist = ((px - p2x) * (px - p2x)) + ((py - p2y) * (py - p2y));\n\n if (pdist > (196 * width * width))\n {\n perp3x = perpx - perp2x;\n perp3y = perpy - perp2y;\n\n dist = Math.sqrt((perp3x * perp3x) + (perp3y * perp3y));\n perp3x /= dist;\n perp3y /= dist;\n perp3x *= width;\n perp3y *= width;\n\n verts.push(p2x - (perp3x * r1), p2y - (perp3y * r1));\n\n verts.push(p2x + (perp3x * r2), p2y + (perp3y * r2));\n\n verts.push(p2x - (perp3x * r2 * r1), p2y - (perp3y * r1));\n\n indexCount++;\n }\n else\n {\n verts.push(p2x + ((px - p2x) * r1), p2y + ((py - p2y) * r1));\n\n verts.push(p2x - ((px - p2x) * r2), p2y - ((py - p2y) * r2));\n }\n }\n\n p1x = points[(length - 2) * 2];\n p1y = points[((length - 2) * 2) + 1];\n\n p2x = points[(length - 1) * 2];\n p2y = points[((length - 1) * 2) + 1];\n\n perpx = -(p1y - p2y);\n perpy = p1x - p2x;\n\n dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n verts.push(p2x - (perpx * r1), p2y - (perpy * r1));\n\n verts.push(p2x + (perpx * r2), p2y + (perpy * r2));\n\n var indices = graphicsGeometry.indices;\n\n // indices.push(indexStart);\n\n for (var i$1 = 0; i$1 < indexCount - 2; ++i$1)\n {\n indices.push(indexStart, indexStart + 1, indexStart + 2);\n\n indexStart++;\n }\n}\n\n/**\n * Builds a line to draw using the gl.drawArrays(gl.LINES) method\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildNativeLine(graphicsData, graphicsGeometry)\n{\n var i = 0;\n\n var shape = graphicsData.shape;\n var points = graphicsData.points || shape.points;\n var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke;\n\n if (points.length === 0) { return; }\n\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n var length = points.length / 2;\n\n var startIndex = verts.length / 2;\n var currentIndex = startIndex;\n\n verts.push(points[0], points[1]);\n\n for (i = 1; i < length; i++)\n {\n verts.push(points[i * 2], points[(i * 2) + 1]);\n indices.push(currentIndex, currentIndex + 1);\n\n currentIndex++;\n }\n\n if (closedShape)\n {\n indices.push(currentIndex, startIndex);\n }\n}\n\n/**\n * Builds a polygon to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildPoly = {\n\n build: function build(graphicsData)\n {\n graphicsData.points = graphicsData.shape.points.slice();\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var holes = graphicsData.holes;\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n if (points.length >= 6)\n {\n var holeArray = [];\n // Process holes..\n\n for (var i = 0; i < holes.length; i++)\n {\n var hole = holes[i];\n\n holeArray.push(points.length / 2);\n points = points.concat(hole.points);\n }\n\n // sort color\n var triangles = earcut(points, holeArray, 2);\n\n if (!triangles)\n {\n return;\n }\n\n var vertPos = verts.length / 2;\n\n for (var i$1 = 0; i$1 < triangles.length; i$1 += 3)\n {\n indices.push(triangles[i$1] + vertPos);\n indices.push(triangles[i$1 + 1] + vertPos);\n indices.push(triangles[i$1 + 2] + vertPos);\n }\n\n for (var i$2 = 0; i$2 < points.length; i$2++)\n {\n verts.push(points[i$2]);\n }\n }\n },\n};\n\n/**\n * Builds a rectangle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildRectangle = {\n\n build: function build(graphicsData)\n {\n // --- //\n // need to convert points to a nice regular data\n //\n var rectData = graphicsData.shape;\n var x = rectData.x;\n var y = rectData.y;\n var width = rectData.width;\n var height = rectData.height;\n\n var points = graphicsData.points;\n\n points.length = 0;\n\n points.push(x, y,\n x + width, y,\n x + width, y + height,\n x, y + height);\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var verts = graphicsGeometry.points;\n\n var vertPos = verts.length / 2;\n\n verts.push(points[0], points[1],\n points[2], points[3],\n points[6], points[7],\n points[4], points[5]);\n\n graphicsGeometry.indices.push(vertPos, vertPos + 1, vertPos + 2,\n vertPos + 1, vertPos + 2, vertPos + 3);\n },\n};\n\n/**\n * Builds a rounded rectangle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildRoundedRectangle = {\n\n build: function build(graphicsData)\n {\n var rrectData = graphicsData.shape;\n var points = graphicsData.points;\n var x = rrectData.x;\n var y = rrectData.y;\n var width = rrectData.width;\n var height = rrectData.height;\n\n var radius = rrectData.radius;\n\n points.length = 0;\n\n quadraticBezierCurve(x, y + radius,\n x, y,\n x + radius, y,\n points);\n quadraticBezierCurve(x + width - radius,\n y, x + width, y,\n x + width, y + radius,\n points);\n quadraticBezierCurve(x + width, y + height - radius,\n x + width, y + height,\n x + width - radius, y + height,\n points);\n quadraticBezierCurve(x + radius, y + height,\n x, y + height,\n x, y + height - radius,\n points);\n\n // this tiny number deals with the issue that occurs when points overlap and earcut fails to triangulate the item.\n // TODO - fix this properly, this is not very elegant.. but it works for now.\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n var vecPos = verts.length / 2;\n\n var triangles = earcut(points, null, 2);\n\n for (var i = 0, j = triangles.length; i < j; i += 3)\n {\n indices.push(triangles[i] + vecPos);\n // indices.push(triangles[i] + vecPos);\n indices.push(triangles[i + 1] + vecPos);\n // indices.push(triangles[i + 2] + vecPos);\n indices.push(triangles[i + 2] + vecPos);\n }\n\n for (var i$1 = 0, j$1 = points.length; i$1 < j$1; i$1++)\n {\n verts.push(points[i$1], points[++i$1]);\n }\n },\n};\n\n/**\n * Calculate a single point for a quadratic bezier curve.\n * Utility function used by quadraticBezierCurve.\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {number} n1 - first number\n * @param {number} n2 - second number\n * @param {number} perc - percentage\n * @return {number} the result\n *\n */\nfunction getPt(n1, n2, perc)\n{\n var diff = n2 - n1;\n\n return n1 + (diff * perc);\n}\n\n/**\n * Calculate the points for a quadratic bezier curve. (helper function..)\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {number} fromX - Origin point x\n * @param {number} fromY - Origin point x\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} [out=[]] - The output array to add points into. If not passed, a new array is created.\n * @return {number[]} an array of points\n */\nfunction quadraticBezierCurve(fromX, fromY, cpX, cpY, toX, toY, out)\n{\n if ( out === void 0 ) out = [];\n\n var n = 20;\n var points = out;\n\n var xa = 0;\n var ya = 0;\n var xb = 0;\n var yb = 0;\n var x = 0;\n var y = 0;\n\n for (var i = 0, j = 0; i <= n; ++i)\n {\n j = i / n;\n\n // The Green Line\n xa = getPt(fromX, cpX, j);\n ya = getPt(fromY, cpY, j);\n xb = getPt(cpX, toX, j);\n yb = getPt(cpY, toY, j);\n\n // The Black Dot\n x = getPt(xa, xb, j);\n y = getPt(ya, yb, j);\n\n points.push(x, y);\n }\n\n return points;\n}\n\nvar BATCH_POOL = [];\nvar DRAW_CALL_POOL = [];\nvar tmpPoint = new Point();\n\n/**\n * Map of fill commands for each shape type.\n *\n * @member {Object}\n * @private\n */\nvar fillCommands = {};\n\nfillCommands[SHAPES.POLY] = buildPoly;\nfillCommands[SHAPES.CIRC] = buildCircle;\nfillCommands[SHAPES.ELIP] = buildCircle;\nfillCommands[SHAPES.RECT] = buildRectangle;\nfillCommands[SHAPES.RREC] = buildRoundedRectangle;\n\n/**\n * A little internal structure to hold interim batch objects.\n *\n * @private\n */\nvar BatchPart = function BatchPart()\n{\n this.style = null;\n this.size = 0;\n this.start = 0;\n this.attribStart = 0;\n this.attribSize = 0;\n};\n\n/**\n * The Graphics class contains methods used to draw primitive shapes such as lines, circles and\n * rectangles to the display, and to color and fill them.\n *\n * GraphicsGeometry is designed to not be continually updating the geometry since it's expensive\n * to re-tesselate using **earcut**. Consider using {@link PIXI.Mesh} for this use-case, it's much faster.\n *\n * @class\n * @extends PIXI.BatchGeometry\n * @memberof PIXI\n */\nvar GraphicsGeometry = /*@__PURE__*/(function (BatchGeometry) {\n function GraphicsGeometry()\n {\n BatchGeometry.call(this);\n\n /**\n * An array of points to draw, 2 numbers per point\n *\n * @member {number[]}\n * @protected\n */\n this.points = [];\n\n /**\n * The collection of colors\n *\n * @member {number[]}\n * @protected\n */\n this.colors = [];\n\n /**\n * The UVs collection\n *\n * @member {number[]}\n * @protected\n */\n this.uvs = [];\n\n /**\n * The indices of the vertices\n *\n * @member {number[]}\n * @protected\n */\n this.indices = [];\n\n /**\n * Reference to the texture IDs.\n *\n * @member {number[]}\n * @protected\n */\n this.textureIds = [];\n\n /**\n * The collection of drawn shapes.\n *\n * @member {PIXI.GraphicsData[]}\n * @protected\n */\n this.graphicsData = [];\n\n /**\n * Used to detect if the graphics object has changed.\n *\n * @member {number}\n * @protected\n */\n this.dirty = 0;\n\n /**\n * Batches need to regenerated if the geometry is updated.\n *\n * @member {number}\n * @protected\n */\n this.batchDirty = -1;\n\n /**\n * Used to check if the cache is dirty.\n *\n * @member {number}\n * @protected\n */\n this.cacheDirty = -1;\n\n /**\n * Used to detect if we cleared the graphicsData.\n *\n * @member {number}\n * @default 0\n * @protected\n */\n this.clearDirty = 0;\n\n /**\n * List of current draw calls drived from the batches.\n *\n * @member {object[]}\n * @protected\n */\n this.drawCalls = [];\n\n /**\n * Intermediate abstract format sent to batch system.\n * Can be converted to drawCalls or to batchable objects.\n *\n * @member {object[]}\n * @protected\n */\n this.batches = [];\n\n /**\n * Index of the last batched shape in the stack of calls.\n *\n * @member {number}\n * @protected\n */\n this.shapeIndex = 0;\n\n /**\n * Cached bounds.\n *\n * @member {PIXI.Bounds}\n * @protected\n */\n this._bounds = new Bounds();\n\n /**\n * The bounds dirty flag.\n *\n * @member {number}\n * @protected\n */\n this.boundsDirty = -1;\n\n /**\n * Padding to add to the bounds.\n *\n * @member {number}\n * @default 0\n */\n this.boundsPadding = 0;\n\n this.batchable = false;\n\n this.indicesUint16 = null;\n\n this.uvsFloat32 = null;\n\n /**\n * Minimal distance between points that are considered different.\n * Affects line tesselation.\n *\n * @member {number}\n */\n this.closePointEps = 1e-4;\n }\n\n if ( BatchGeometry ) GraphicsGeometry.__proto__ = BatchGeometry;\n GraphicsGeometry.prototype = Object.create( BatchGeometry && BatchGeometry.prototype );\n GraphicsGeometry.prototype.constructor = GraphicsGeometry;\n\n var prototypeAccessors = { bounds: { configurable: true } };\n\n /**\n * Get the current bounds of the graphic geometry.\n *\n * @member {PIXI.Bounds}\n * @readonly\n */\n prototypeAccessors.bounds.get = function ()\n {\n if (this.boundsDirty !== this.dirty)\n {\n this.boundsDirty = this.dirty;\n this.calculateBounds();\n }\n\n return this._bounds;\n };\n\n /**\n * Call if you changed graphicsData manually.\n * Empties all batch buffers.\n */\n GraphicsGeometry.prototype.invalidate = function invalidate ()\n {\n this.boundsDirty = -1;\n this.dirty++;\n this.batchDirty++;\n this.shapeIndex = 0;\n\n this.points.length = 0;\n this.colors.length = 0;\n this.uvs.length = 0;\n this.indices.length = 0;\n this.textureIds.length = 0;\n\n for (var i = 0; i < this.drawCalls.length; i++)\n {\n this.drawCalls[i].textures.length = 0;\n DRAW_CALL_POOL.push(this.drawCalls[i]);\n }\n\n this.drawCalls.length = 0;\n\n for (var i$1 = 0; i$1 < this.batches.length; i$1++)\n {\n var batch = this.batches[i$1];\n\n batch.start = 0;\n batch.attribStart = 0;\n batch.style = null;\n BATCH_POOL.push(batch);\n }\n\n this.batches.length = 0;\n };\n\n /**\n * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings.\n *\n * @return {PIXI.GraphicsGeometry} This GraphicsGeometry object. Good for chaining method calls\n */\n GraphicsGeometry.prototype.clear = function clear ()\n {\n if (this.graphicsData.length > 0)\n {\n this.invalidate();\n this.clearDirty++;\n this.graphicsData.length = 0;\n }\n\n return this;\n };\n\n /**\n * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw.\n * @param {PIXI.FillStyle} fillStyle - Defines style of the fill.\n * @param {PIXI.LineStyle} lineStyle - Defines style of the lines.\n * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape.\n * @return {PIXI.GraphicsGeometry} Returns geometry for chaining.\n */\n GraphicsGeometry.prototype.drawShape = function drawShape (shape, fillStyle, lineStyle, matrix)\n {\n var data = new GraphicsData(shape, fillStyle, lineStyle, matrix);\n\n this.graphicsData.push(data);\n this.dirty++;\n\n return this;\n };\n\n /**\n * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw.\n * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape.\n * @return {PIXI.GraphicsGeometry} Returns geometry for chaining.\n */\n GraphicsGeometry.prototype.drawHole = function drawHole (shape, matrix)\n {\n if (!this.graphicsData.length)\n {\n return null;\n }\n\n var data = new GraphicsData(shape, null, null, matrix);\n\n var lastShape = this.graphicsData[this.graphicsData.length - 1];\n\n data.lineStyle = lastShape.lineStyle;\n\n lastShape.holes.push(data);\n\n this.dirty++;\n\n return this;\n };\n\n /**\n * Destroys the Graphics object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n GraphicsGeometry.prototype.destroy = function destroy (options)\n {\n BatchGeometry.prototype.destroy.call(this, options);\n\n // destroy each of the GraphicsData objects\n for (var i = 0; i < this.graphicsData.length; ++i)\n {\n this.graphicsData[i].destroy();\n }\n\n this.points.length = 0;\n this.points = null;\n this.colors.length = 0;\n this.colors = null;\n this.uvs.length = 0;\n this.uvs = null;\n this.indices.length = 0;\n this.indices = null;\n this.indexBuffer.destroy();\n this.indexBuffer = null;\n this.graphicsData.length = 0;\n this.graphicsData = null;\n this.drawCalls.length = 0;\n this.drawCalls = null;\n this.batches.length = 0;\n this.batches = null;\n this._bounds = null;\n };\n\n /**\n * Check to see if a point is contained within this geometry.\n *\n * @param {PIXI.Point} point - Point to check if it's contained.\n * @return {Boolean} `true` if the point is contained within geometry.\n */\n GraphicsGeometry.prototype.containsPoint = function containsPoint (point)\n {\n var graphicsData = this.graphicsData;\n\n for (var i = 0; i < graphicsData.length; ++i)\n {\n var data = graphicsData[i];\n\n if (!data.fillStyle.visible)\n {\n continue;\n }\n\n // only deal with fills..\n if (data.shape)\n {\n if (data.matrix)\n {\n data.matrix.applyInverse(point, tmpPoint);\n }\n else\n {\n tmpPoint.copyFrom(point);\n }\n\n if (data.shape.contains(tmpPoint.x, tmpPoint.y))\n {\n if (data.holes)\n {\n for (var i$1 = 0; i$1 < data.holes.length; i$1++)\n {\n var hole = data.holes[i$1];\n\n if (hole.shape.contains(tmpPoint.x, tmpPoint.y))\n {\n return false;\n }\n }\n }\n\n return true;\n }\n }\n }\n\n return false;\n };\n\n /**\n * Generates intermediate batch data. Either gets converted to drawCalls\n * or used to convert to batch objects directly by the Graphics object.\n */\n GraphicsGeometry.prototype.updateBatches = function updateBatches ()\n {\n if (this.dirty === this.cacheDirty) { return; }\n if (this.graphicsData.length === 0)\n {\n this.batchable = true;\n\n return;\n }\n\n if (this.dirty !== this.cacheDirty)\n {\n for (var i = 0; i < this.graphicsData.length; i++)\n {\n var data = this.graphicsData[i];\n\n if (data.fillStyle && !data.fillStyle.texture.baseTexture.valid) { return; }\n if (data.lineStyle && !data.lineStyle.texture.baseTexture.valid) { return; }\n }\n }\n\n this.cacheDirty = this.dirty;\n\n var uvs = this.uvs;\n\n var batchPart = null;\n var currentTexture = null;\n var currentColor = 0;\n var currentNative = false;\n\n if (this.batches.length > 0)\n {\n batchPart = this.batches[this.batches.length - 1];\n\n var style = batchPart.style;\n\n currentTexture = style.texture.baseTexture;\n currentColor = style.color + style.alpha;\n currentNative = !!style.native;\n }\n\n for (var i$1 = this.shapeIndex; i$1 < this.graphicsData.length; i$1++)\n {\n this.shapeIndex++;\n\n var data$1 = this.graphicsData[i$1];\n var command = fillCommands[data$1.type];\n\n var fillStyle = data$1.fillStyle;\n var lineStyle = data$1.lineStyle;\n\n // build out the shapes points..\n command.build(data$1);\n\n if (data$1.matrix)\n {\n this.transformPoints(data$1.points, data$1.matrix);\n }\n\n for (var j = 0; j < 2; j++)\n {\n var style$1 = (j === 0) ? fillStyle : lineStyle;\n\n if (!style$1.visible) { continue; }\n\n var nextTexture = style$1.texture.baseTexture;\n\n var index$1 = this.indices.length;\n var attribIndex = this.points.length / 2;\n\n // close batch if style is different\n if (batchPart\n && (currentTexture !== nextTexture\n || currentColor !== (style$1.color + style$1.alpha)\n || currentNative !== !!style$1.native))\n {\n batchPart.size = index$1 - batchPart.start;\n batchPart.attribSize = attribIndex - batchPart.attribStart;\n\n if (batchPart.size > 0)\n {\n batchPart = null;\n }\n }\n // spawn new batch if its first batch or previous was closed\n if (!batchPart)\n {\n batchPart = BATCH_POOL.pop() || new BatchPart();\n this.batches.push(batchPart);\n nextTexture.wrapMode = WRAP_MODES.REPEAT;\n currentTexture = nextTexture;\n currentColor = style$1.color + style$1.alpha;\n currentNative = style$1.native;\n\n batchPart.style = style$1;\n batchPart.start = index$1;\n batchPart.attribStart = attribIndex;\n }\n\n var start = this.points.length / 2;\n\n if (j === 0)\n {\n if (data$1.holes.length)\n {\n this.processHoles(data$1.holes);\n\n buildPoly.triangulate(data$1, this);\n }\n else\n {\n command.triangulate(data$1, this);\n }\n }\n else\n {\n buildLine(data$1, this);\n\n for (var i$2 = 0; i$2 < data$1.holes.length; i$2++)\n {\n buildLine(data$1.holes[i$2], this);\n }\n }\n\n var size = (this.points.length / 2) - start;\n\n this.addUvs(this.points, uvs, style$1.texture, start, size, style$1.matrix);\n }\n }\n\n var index = this.indices.length;\n var attrib = this.points.length / 2;\n\n if (!batchPart)\n {\n // there are no visible styles in GraphicsData\n // its possible that someone wants Graphics just for the bounds\n this.batchable = true;\n\n return;\n }\n\n batchPart.size = index - batchPart.start;\n batchPart.attribSize = attrib - batchPart.attribStart;\n this.indicesUint16 = new Uint16Array(this.indices);\n\n // TODO make this a const..\n this.batchable = this.isBatchable();\n\n if (this.batchable)\n {\n this.batchDirty++;\n\n this.uvsFloat32 = new Float32Array(this.uvs);\n\n // offset the indices so that it works with the batcher...\n for (var i$3 = 0; i$3 < this.batches.length; i$3++)\n {\n var batch = this.batches[i$3];\n\n for (var j$1 = 0; j$1 < batch.size; j$1++)\n {\n var index$2 = batch.start + j$1;\n\n this.indicesUint16[index$2] = this.indicesUint16[index$2] - batch.attribStart;\n }\n }\n }\n else\n {\n this.buildDrawCalls();\n }\n };\n\n /**\n * Checks to see if this graphics geometry can be batched.\n * Currently it needs to be small enough and not contain any native lines.\n * @protected\n */\n GraphicsGeometry.prototype.isBatchable = function isBatchable ()\n {\n var batches = this.batches;\n\n for (var i = 0; i < batches.length; i++)\n {\n if (batches[i].style.native)\n {\n return false;\n }\n }\n\n return (this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2);\n };\n\n /**\n * Converts intermediate batches data to drawCalls.\n * @protected\n */\n GraphicsGeometry.prototype.buildDrawCalls = function buildDrawCalls ()\n {\n var TICK = ++BaseTexture._globalBatch;\n\n for (var i = 0; i < this.drawCalls.length; i++)\n {\n this.drawCalls[i].textures.length = 0;\n DRAW_CALL_POOL.push(this.drawCalls[i]);\n }\n\n this.drawCalls.length = 0;\n\n var uvs = this.uvs;\n var colors = this.colors;\n var textureIds = this.textureIds;\n\n var currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall();\n\n currentGroup.textureCount = 0;\n currentGroup.start = 0;\n currentGroup.size = 0;\n currentGroup.type = DRAW_MODES.TRIANGLES;\n\n var textureCount = 0;\n var currentTexture = null;\n var textureId = 0;\n var native = false;\n var drawMode = DRAW_MODES.TRIANGLES;\n\n var index = 0;\n\n this.drawCalls.push(currentGroup);\n\n // TODO - this can be simplified\n for (var i$1 = 0; i$1 < this.batches.length; i$1++)\n {\n var data = this.batches[i$1];\n\n // TODO add some full on MAX_TEXTURE CODE..\n var MAX_TEXTURES = 8;\n\n var style = data.style;\n\n var nextTexture = style.texture.baseTexture;\n\n if (native !== !!style.native)\n {\n native = style.native;\n drawMode = native ? DRAW_MODES.LINES : DRAW_MODES.TRIANGLES;\n\n // force the batch to break!\n currentTexture = null;\n textureCount = MAX_TEXTURES;\n TICK++;\n }\n\n if (currentTexture !== nextTexture)\n {\n currentTexture = nextTexture;\n\n if (nextTexture._batchEnabled !== TICK)\n {\n if (textureCount === MAX_TEXTURES)\n {\n TICK++;\n\n textureCount = 0;\n\n if (currentGroup.size > 0)\n {\n currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall();\n this.drawCalls.push(currentGroup);\n }\n\n currentGroup.start = index;\n currentGroup.size = 0;\n currentGroup.textureCount = 0;\n currentGroup.type = drawMode;\n }\n\n // TODO add this to the render part..\n nextTexture.touched = 1;// touch;\n nextTexture._batchEnabled = TICK;\n nextTexture._id = textureCount;\n nextTexture.wrapMode = 10497;\n\n currentGroup.textures[currentGroup.textureCount++] = nextTexture;\n textureCount++;\n }\n }\n\n currentGroup.size += data.size;\n index += data.size;\n\n textureId = nextTexture._id;\n\n this.addColors(colors, style.color, style.alpha, data.attribSize);\n this.addTextureIds(textureIds, textureId, data.attribSize);\n }\n\n BaseTexture._globalBatch = TICK;\n\n // upload..\n // merge for now!\n var verts = this.points;\n\n // verts are 2 positions.. so we * by 3 as there are 6 properties.. then 4 cos its bytes\n var glPoints = new ArrayBuffer(verts.length * 3 * 4);\n var f32 = new Float32Array(glPoints);\n var u32 = new Uint32Array(glPoints);\n\n var p = 0;\n\n for (var i$2 = 0; i$2 < verts.length / 2; i$2++)\n {\n f32[p++] = verts[i$2 * 2];\n f32[p++] = verts[(i$2 * 2) + 1];\n\n f32[p++] = uvs[i$2 * 2];\n f32[p++] = uvs[(i$2 * 2) + 1];\n\n u32[p++] = colors[i$2];\n\n f32[p++] = textureIds[i$2];\n }\n\n this._buffer.update(glPoints);\n this._indexBuffer.update(this.indicesUint16);\n };\n\n /**\n * Process the holes data.\n *\n * @param {PIXI.GraphicsData[]} holes - Holes to render\n * @protected\n */\n GraphicsGeometry.prototype.processHoles = function processHoles (holes)\n {\n for (var i = 0; i < holes.length; i++)\n {\n var hole = holes[i];\n\n var command = fillCommands[hole.type];\n\n command.build(hole);\n\n if (hole.matrix)\n {\n this.transformPoints(hole.points, hole.matrix);\n }\n }\n };\n\n /**\n * Update the local bounds of the object. Expensive to use performance-wise.\n * @protected\n */\n GraphicsGeometry.prototype.calculateBounds = function calculateBounds ()\n {\n var minX = Infinity;\n var maxX = -Infinity;\n\n var minY = Infinity;\n var maxY = -Infinity;\n\n if (this.graphicsData.length)\n {\n var shape = null;\n var x = 0;\n var y = 0;\n var w = 0;\n var h = 0;\n\n for (var i = 0; i < this.graphicsData.length; i++)\n {\n var data = this.graphicsData[i];\n\n var type = data.type;\n var lineWidth = data.lineStyle ? data.lineStyle.width : 0;\n\n shape = data.shape;\n\n if (type === SHAPES.RECT || type === SHAPES.RREC)\n {\n x = shape.x - (lineWidth / 2);\n y = shape.y - (lineWidth / 2);\n w = shape.width + lineWidth;\n h = shape.height + lineWidth;\n\n minX = x < minX ? x : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y < minY ? y : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else if (type === SHAPES.CIRC)\n {\n x = shape.x;\n y = shape.y;\n w = shape.radius + (lineWidth / 2);\n h = shape.radius + (lineWidth / 2);\n\n minX = x - w < minX ? x - w : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y - h < minY ? y - h : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else if (type === SHAPES.ELIP)\n {\n x = shape.x;\n y = shape.y;\n w = shape.width + (lineWidth / 2);\n h = shape.height + (lineWidth / 2);\n\n minX = x - w < minX ? x - w : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y - h < minY ? y - h : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else\n {\n // POLY\n var points = shape.points;\n var x2 = 0;\n var y2 = 0;\n var dx = 0;\n var dy = 0;\n var rw = 0;\n var rh = 0;\n var cx = 0;\n var cy = 0;\n\n for (var j = 0; j + 2 < points.length; j += 2)\n {\n x = points[j];\n y = points[j + 1];\n x2 = points[j + 2];\n y2 = points[j + 3];\n dx = Math.abs(x2 - x);\n dy = Math.abs(y2 - y);\n h = lineWidth;\n w = Math.sqrt((dx * dx) + (dy * dy));\n\n if (w < 1e-9)\n {\n continue;\n }\n\n rw = ((h / w * dy) + dx) / 2;\n rh = ((h / w * dx) + dy) / 2;\n cx = (x2 + x) / 2;\n cy = (y2 + y) / 2;\n\n minX = cx - rw < minX ? cx - rw : minX;\n maxX = cx + rw > maxX ? cx + rw : maxX;\n\n minY = cy - rh < minY ? cy - rh : minY;\n maxY = cy + rh > maxY ? cy + rh : maxY;\n }\n }\n }\n }\n else\n {\n minX = 0;\n maxX = 0;\n minY = 0;\n maxY = 0;\n }\n\n var padding = this.boundsPadding;\n\n this._bounds.minX = minX - padding;\n this._bounds.maxX = maxX + padding;\n\n this._bounds.minY = minY - padding;\n this._bounds.maxY = maxY + padding;\n };\n\n /**\n * Transform points using matrix.\n *\n * @protected\n * @param {number[]} points - Points to transform\n * @param {PIXI.Matrix} matrix - Transform matrix\n */\n GraphicsGeometry.prototype.transformPoints = function transformPoints (points, matrix)\n {\n for (var i = 0; i < points.length / 2; i++)\n {\n var x = points[(i * 2)];\n var y = points[(i * 2) + 1];\n\n points[(i * 2)] = (matrix.a * x) + (matrix.c * y) + matrix.tx;\n points[(i * 2) + 1] = (matrix.b * x) + (matrix.d * y) + matrix.ty;\n }\n };\n\n /**\n * Add colors.\n *\n * @protected\n * @param {number[]} colors - List of colors to add to\n * @param {number} color - Color to add\n * @param {number} alpha - Alpha to use\n * @param {number} size - Number of colors to add\n */\n GraphicsGeometry.prototype.addColors = function addColors (colors, color, alpha, size)\n {\n // TODO use the premultiply bits Ivan added\n var rgb = (color >> 16) + (color & 0xff00) + ((color & 0xff) << 16);\n\n var rgba = premultiplyTint(rgb, alpha);\n\n while (size-- > 0)\n {\n colors.push(rgba);\n }\n };\n\n /**\n * Add texture id that the shader/fragment wants to use.\n *\n * @protected\n * @param {number[]} textureIds\n * @param {number} id\n * @param {number} size\n */\n GraphicsGeometry.prototype.addTextureIds = function addTextureIds (textureIds, id, size)\n {\n while (size-- > 0)\n {\n textureIds.push(id);\n }\n };\n\n /**\n * Generates the UVs for a shape.\n *\n * @protected\n * @param {number[]} verts - Vertices\n * @param {number[]} uvs - UVs\n * @param {PIXI.Texture} texture - Reference to Texture\n * @param {number} start - Index buffer start index.\n * @param {number} size - The size/length for index buffer.\n * @param {PIXI.Matrix} [matrix] - Optional transform for all points.\n */\n GraphicsGeometry.prototype.addUvs = function addUvs (verts, uvs, texture, start, size, matrix)\n {\n var index = 0;\n var uvsStart = uvs.length;\n var frame = texture.frame;\n\n while (index < size)\n {\n var x = verts[(start + index) * 2];\n var y = verts[((start + index) * 2) + 1];\n\n if (matrix)\n {\n var nx = (matrix.a * x) + (matrix.c * y) + matrix.tx;\n\n y = (matrix.b * x) + (matrix.d * y) + matrix.ty;\n x = nx;\n }\n\n index++;\n\n uvs.push(x / frame.width, y / frame.height);\n }\n\n var baseTexture = texture.baseTexture;\n\n if (frame.width < baseTexture.width\n || frame.height < baseTexture.height)\n {\n this.adjustUvs(uvs, texture, uvsStart, size);\n }\n };\n\n /**\n * Modify uvs array according to position of texture region\n * Does not work with rotated or trimmed textures\n * @param {number[]} uvs array\n * @param {PIXI.Texture} texture region\n * @param {number} start starting index for uvs\n * @param {number} size how many points to adjust\n */\n GraphicsGeometry.prototype.adjustUvs = function adjustUvs (uvs, texture, start, size)\n {\n var baseTexture = texture.baseTexture;\n var eps = 1e-6;\n var finish = start + (size * 2);\n var frame = texture.frame;\n var scaleX = frame.width / baseTexture.width;\n var scaleY = frame.height / baseTexture.height;\n var offsetX = frame.x / frame.width;\n var offsetY = frame.y / frame.height;\n var minX = Math.floor(uvs[start] + eps);\n var minY = Math.floor(uvs[start + 1] + eps);\n\n for (var i = start + 2; i < finish; i += 2)\n {\n minX = Math.min(minX, Math.floor(uvs[i] + eps));\n minY = Math.min(minY, Math.floor(uvs[i + 1] + eps));\n }\n offsetX -= minX;\n offsetY -= minY;\n for (var i$1 = start; i$1 < finish; i$1 += 2)\n {\n uvs[i$1] = (uvs[i$1] + offsetX) * scaleX;\n uvs[i$1 + 1] = (uvs[i$1 + 1] + offsetY) * scaleY;\n }\n };\n\n Object.defineProperties( GraphicsGeometry.prototype, prototypeAccessors );\n\n return GraphicsGeometry;\n}(BatchGeometry));\n\n/**\n * The maximum number of points to consider an object \"batchable\",\n * able to be batched by the renderer's batch system.\n *\n * @memberof PIXI.GraphicsGeometry\n * @static\n * @member {number} BATCHABLE_SIZE\n * @default 100\n */\nGraphicsGeometry.BATCHABLE_SIZE = 100;\n\n/**\n * Represents the line style for Graphics.\n * @memberof PIXI\n * @class\n * @extends PIXI.FillStyle\n */\nvar LineStyle = /*@__PURE__*/(function (FillStyle) {\n function LineStyle () {\n FillStyle.apply(this, arguments);\n }\n\n if ( FillStyle ) LineStyle.__proto__ = FillStyle;\n LineStyle.prototype = Object.create( FillStyle && FillStyle.prototype );\n LineStyle.prototype.constructor = LineStyle;\n\n LineStyle.prototype.clone = function clone ()\n {\n var obj = new LineStyle();\n\n obj.color = this.color;\n obj.alpha = this.alpha;\n obj.texture = this.texture;\n obj.matrix = this.matrix;\n obj.visible = this.visible;\n obj.width = this.width;\n obj.alignment = this.alignment;\n obj.native = this.native;\n\n return obj;\n };\n /**\n * Reset the line style to default.\n */\n LineStyle.prototype.reset = function reset ()\n {\n FillStyle.prototype.reset.call(this);\n\n // Override default line style color\n this.color = 0x0;\n\n /**\n * The width (thickness) of any lines drawn.\n *\n * @member {number}\n * @default 0\n */\n this.width = 0;\n\n /**\n * The alignment of any lines drawn (0.5 = middle, 1 = outter, 0 = inner).\n *\n * @member {number}\n * @default 0\n */\n this.alignment = 0.5;\n\n /**\n * If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n *\n * @member {boolean}\n * @default false\n */\n this.native = false;\n };\n\n return LineStyle;\n}(FillStyle));\n\n/**\n * Utilities for bezier curves\n * @class\n * @private\n */\nvar BezierUtils = function BezierUtils () {};\n\nBezierUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY)\n{\n var n = 10;\n var result = 0.0;\n var t = 0.0;\n var t2 = 0.0;\n var t3 = 0.0;\n var nt = 0.0;\n var nt2 = 0.0;\n var nt3 = 0.0;\n var x = 0.0;\n var y = 0.0;\n var dx = 0.0;\n var dy = 0.0;\n var prevX = fromX;\n var prevY = fromY;\n\n for (var i = 1; i <= n; ++i)\n {\n t = i / n;\n t2 = t * t;\n t3 = t2 * t;\n nt = (1.0 - t);\n nt2 = nt * nt;\n nt3 = nt2 * nt;\n\n x = (nt3 * fromX) + (3.0 * nt2 * t * cpX) + (3.0 * nt * t2 * cpX2) + (t3 * toX);\n y = (nt3 * fromY) + (3.0 * nt2 * t * cpY) + (3 * nt * t2 * cpY2) + (t3 * toY);\n dx = prevX - x;\n dy = prevY - y;\n prevX = x;\n prevY = y;\n\n result += Math.sqrt((dx * dx) + (dy * dy));\n }\n\n return result;\n};\n\n/**\n * Calculate the points for a bezier curve and then draws it.\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} cpX2 - Second Control point x\n * @param {number} cpY2 - Second Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} points - Path array to push points into\n */\nBezierUtils.curveTo = function curveTo (cpX, cpY, cpX2, cpY2, toX, toY, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n points.length -= 2;\n\n var n = GRAPHICS_CURVES._segmentsCount(\n BezierUtils.curveLength(fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY)\n );\n\n var dt = 0;\n var dt2 = 0;\n var dt3 = 0;\n var t2 = 0;\n var t3 = 0;\n\n points.push(fromX, fromY);\n\n for (var i = 1, j = 0; i <= n; ++i)\n {\n j = i / n;\n\n dt = (1 - j);\n dt2 = dt * dt;\n dt3 = dt2 * dt;\n\n t2 = j * j;\n t3 = t2 * j;\n\n points.push(\n (dt3 * fromX) + (3 * dt2 * j * cpX) + (3 * dt * t2 * cpX2) + (t3 * toX),\n (dt3 * fromY) + (3 * dt2 * j * cpY) + (3 * dt * t2 * cpY2) + (t3 * toY)\n );\n }\n};\n\n/**\n * Utilities for quadratic curves\n * @class\n * @private\n */\nvar QuadraticUtils = function QuadraticUtils () {};\n\nQuadraticUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, toX, toY)\n{\n var ax = fromX - (2.0 * cpX) + toX;\n var ay = fromY - (2.0 * cpY) + toY;\n var bx = (2.0 * cpX) - (2.0 * fromX);\n var by = (2.0 * cpY) - (2.0 * fromY);\n var a = 4.0 * ((ax * ax) + (ay * ay));\n var b = 4.0 * ((ax * bx) + (ay * by));\n var c = (bx * bx) + (by * by);\n\n var s = 2.0 * Math.sqrt(a + b + c);\n var a2 = Math.sqrt(a);\n var a32 = 2.0 * a * a2;\n var c2 = 2.0 * Math.sqrt(c);\n var ba = b / a2;\n\n return (\n (a32 * s)\n + (a2 * b * (s - c2))\n + (\n ((4.0 * c * a) - (b * b))\n * Math.log(((2.0 * a2) + ba + s) / (ba + c2))\n )\n ) / (4.0 * a32);\n};\n\n/**\n * Calculate the points for a quadratic bezier curve and then draws it.\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * @private\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} points - Points to add segments to.\n */\nQuadraticUtils.curveTo = function curveTo (cpX, cpY, toX, toY, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n var n = GRAPHICS_CURVES._segmentsCount(\n QuadraticUtils.curveLength(fromX, fromY, cpX, cpY, toX, toY)\n );\n\n var xa = 0;\n var ya = 0;\n\n for (var i = 1; i <= n; ++i)\n {\n var j = i / n;\n\n xa = fromX + ((cpX - fromX) * j);\n ya = fromY + ((cpY - fromY) * j);\n\n points.push(xa + (((cpX + ((toX - cpX) * j)) - xa) * j),\n ya + (((cpY + ((toY - cpY) * j)) - ya) * j));\n }\n};\n\n/**\n * Utilities for arc curves\n * @class\n * @private\n */\nvar ArcUtils = function ArcUtils () {};\n\nArcUtils.curveTo = function curveTo (x1, y1, x2, y2, radius, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n var a1 = fromY - y1;\n var b1 = fromX - x1;\n var a2 = y2 - y1;\n var b2 = x2 - x1;\n var mm = Math.abs((a1 * b2) - (b1 * a2));\n\n if (mm < 1.0e-8 || radius === 0)\n {\n if (points[points.length - 2] !== x1 || points[points.length - 1] !== y1)\n {\n points.push(x1, y1);\n }\n\n return null;\n }\n\n var dd = (a1 * a1) + (b1 * b1);\n var cc = (a2 * a2) + (b2 * b2);\n var tt = (a1 * a2) + (b1 * b2);\n var k1 = radius * Math.sqrt(dd) / mm;\n var k2 = radius * Math.sqrt(cc) / mm;\n var j1 = k1 * tt / dd;\n var j2 = k2 * tt / cc;\n var cx = (k1 * b2) + (k2 * b1);\n var cy = (k1 * a2) + (k2 * a1);\n var px = b1 * (k2 + j1);\n var py = a1 * (k2 + j1);\n var qx = b2 * (k1 + j2);\n var qy = a2 * (k1 + j2);\n var startAngle = Math.atan2(py - cy, px - cx);\n var endAngle = Math.atan2(qy - cy, qx - cx);\n\n return {\n cx: (cx + x1),\n cy: (cy + y1),\n radius: radius,\n startAngle: startAngle,\n endAngle: endAngle,\n anticlockwise: (b1 * a2 > b2 * a1),\n };\n};\n\n/**\n * The arc method creates an arc/curve (used to create circles, or parts of circles).\n *\n * @private\n * @param {number} startX - Start x location of arc\n * @param {number} startY - Start y location of arc\n * @param {number} cx - The x-coordinate of the center of the circle\n * @param {number} cy - The y-coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position\n * of the arc's circle)\n * @param {number} endAngle - The ending angle, in radians\n * @param {boolean} anticlockwise - Specifies whether the drawing should be\n * counter-clockwise or clockwise. False is default, and indicates clockwise, while true\n * indicates counter-clockwise.\n * @param {number} n - Number of segments\n * @param {number[]} points - Collection of points to add to\n */\nArcUtils.arc = function arc (startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points)\n{\n var sweep = endAngle - startAngle;\n var n = GRAPHICS_CURVES._segmentsCount(\n Math.abs(sweep) * radius,\n Math.ceil(Math.abs(sweep) / PI_2) * 40\n );\n\n var theta = (sweep) / (n * 2);\n var theta2 = theta * 2;\n var cTheta = Math.cos(theta);\n var sTheta = Math.sin(theta);\n var segMinus = n - 1;\n var remainder = (segMinus % 1) / segMinus;\n\n for (var i = 0; i <= segMinus; ++i)\n {\n var real = i + (remainder * i);\n var angle = ((theta) + startAngle + (theta2 * real));\n var c = Math.cos(angle);\n var s = -Math.sin(angle);\n\n points.push(\n (((cTheta * c) + (sTheta * s)) * radius) + cx,\n (((cTheta * -s) + (sTheta * c)) * radius) + cy\n );\n }\n};\n\n/**\n * Draw a star shape with an arbitrary number of points.\n *\n * @class\n * @extends PIXI.Polygon\n * @memberof PIXI\n * @param {number} x - Center X position of the star\n * @param {number} y - Center Y position of the star\n * @param {number} points - The number of points of the star, must be > 1\n * @param {number} radius - The outer radius of the star\n * @param {number} [innerRadius] - The inner radius between points, default half `radius`\n * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\nvar Star = /*@__PURE__*/(function (Polygon) {\n function Star(x, y, points, radius, innerRadius, rotation)\n {\n innerRadius = innerRadius || radius / 2;\n\n var startAngle = (-1 * Math.PI / 2) + rotation;\n var len = points * 2;\n var delta = PI_2 / len;\n var polygon = [];\n\n for (var i = 0; i < len; i++)\n {\n var r = i % 2 ? innerRadius : radius;\n var angle = (i * delta) + startAngle;\n\n polygon.push(\n x + (r * Math.cos(angle)),\n y + (r * Math.sin(angle))\n );\n }\n\n Polygon.call(this, polygon);\n }\n\n if ( Polygon ) Star.__proto__ = Polygon;\n Star.prototype = Object.create( Polygon && Polygon.prototype );\n Star.prototype.constructor = Star;\n\n return Star;\n}(Polygon));\n\nvar temp = new Float32Array(3);\n\n// a default shaders map used by graphics..\nvar DEFAULT_SHADERS = {};\n\n/**\n * The Graphics class contains methods used to draw primitive shapes such as lines, circles and\n * rectangles to the display, and to color and fill them.\n *\n * Note that because Graphics can share a GraphicsGeometry with other instances,\n * it is necessary to call `destroy()` to properly dereference the underlying\n * GraphicsGeometry and avoid a memory leak. Alternatively, keep using the same\n * Graphics instance and call `clear()` between redraws.\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Graphics = /*@__PURE__*/(function (Container) {\n function Graphics(geometry)\n {\n if ( geometry === void 0 ) geometry = null;\n\n Container.call(this);\n /**\n * Includes vertex positions, face indices, normals, colors, UVs, and\n * custom attributes within buffers, reducing the cost of passing all\n * this data to the GPU. Can be shared between multiple Mesh or Graphics objects.\n * @member {PIXI.GraphicsGeometry}\n * @readonly\n */\n this.geometry = geometry || new GraphicsGeometry();\n\n this.geometry.refCount++;\n\n /**\n * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU.\n * Can be shared between multiple Graphics objects.\n * @member {PIXI.Shader}\n */\n this.shader = null;\n\n /**\n * Represents the WebGL state the Graphics required to render, excludes shader and geometry. E.g.,\n * blend mode, culling, depth testing, direction of rendering triangles, backface, etc.\n * @member {PIXI.State}\n */\n this.state = State.for2d();\n\n /**\n * Current fill style\n *\n * @member {PIXI.FillStyle}\n * @protected\n */\n this._fillStyle = new FillStyle();\n\n /**\n * Current line style\n *\n * @member {PIXI.LineStyle}\n * @protected\n */\n this._lineStyle = new LineStyle();\n\n /**\n * Current shape transform matrix.\n *\n * @member {PIXI.Matrix}\n * @protected\n */\n this._matrix = null;\n\n /**\n * Current hole mode is enabled.\n *\n * @member {boolean}\n * @default false\n * @protected\n */\n this._holeMode = false;\n\n /**\n * Current path\n *\n * @member {PIXI.Polygon}\n * @protected\n */\n this.currentPath = null;\n\n /**\n * When cacheAsBitmap is set to true the graphics object will be rendered as if it was a sprite.\n * This is useful if your graphics element does not change often, as it will speed up the rendering\n * of the object in exchange for taking up texture memory. It is also useful if you need the graphics\n * object to be anti-aliased, because it will be rendered using canvas. This is not recommended if\n * you are constantly redrawing the graphics element.\n *\n * @name cacheAsBitmap\n * @member {boolean}\n * @memberof PIXI.Graphics#\n * @default false\n */\n\n /**\n * A collections of batches! These can be drawn by the renderer batch system.\n *\n * @protected\n * @member {object[]}\n */\n this.batches = [];\n\n /**\n * Update dirty for limiting calculating tints for batches.\n *\n * @protected\n * @member {number}\n * @default -1\n */\n this.batchTint = -1;\n\n /**\n * Copy of the object vertex data.\n *\n * @protected\n * @member {Float32Array}\n */\n this.vertexData = null;\n\n this._transformID = -1;\n this.batchDirty = -1;\n\n /**\n * Renderer plugin for batching\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = 'batch';\n\n // Set default\n this.tint = 0xFFFFFF;\n this.blendMode = BLEND_MODES.NORMAL;\n }\n\n if ( Container ) Graphics.__proto__ = Container;\n Graphics.prototype = Object.create( Container && Container.prototype );\n Graphics.prototype.constructor = Graphics;\n\n var prototypeAccessors = { blendMode: { configurable: true },tint: { configurable: true },fill: { configurable: true },line: { configurable: true } };\n\n /**\n * Creates a new Graphics object with the same values as this one.\n * Note that the only the properties of the object are cloned, not its transform (position,scale,etc)\n *\n * @return {PIXI.Graphics} A clone of the graphics object\n */\n Graphics.prototype.clone = function clone ()\n {\n this.finishPoly();\n\n return new Graphics(this.geometry);\n };\n\n /**\n * The blend mode to be applied to the graphic shape. Apply a value of\n * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL;\n * @see PIXI.BLEND_MODES\n */\n prototypeAccessors.blendMode.set = function (value)\n {\n this.state.blendMode = value;\n };\n\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n /**\n * The tint applied to the graphic shape. This is a hex value. A value of\n * 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n prototypeAccessors.tint.set = function (value)\n {\n this._tint = value;\n };\n\n /**\n * The current fill style.\n *\n * @member {PIXI.FillStyle}\n * @readonly\n */\n prototypeAccessors.fill.get = function ()\n {\n return this._fillStyle;\n };\n\n /**\n * The current line style.\n *\n * @member {PIXI.LineStyle}\n * @readonly\n */\n prototypeAccessors.line.get = function ()\n {\n return this._lineStyle;\n };\n\n /**\n * Specifies the line style used for subsequent calls to Graphics methods such as the lineTo()\n * method or the drawCircle() method.\n *\n * @param {number} [width=0] - width of the line to draw, will update the objects stored style\n * @param {number} [color=0] - color of the line to draw, will update the objects stored style\n * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style\n * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter)\n * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineStyle = function lineStyle (width, color, alpha, alignment, native)\n {\n if ( width === void 0 ) width = 0;\n if ( color === void 0 ) color = 0;\n if ( alpha === void 0 ) alpha = 1;\n if ( alignment === void 0 ) alignment = 0.5;\n if ( native === void 0 ) native = false;\n\n this.lineTextureStyle(width, Texture.WHITE, color, alpha, null, alignment, native);\n\n return this;\n };\n\n /**\n * Like line style but support texture for line fill.\n *\n * @param {number} [width=0] - width of the line to draw, will update the objects stored style\n * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to use\n * @param {number} [color=0] - color of the line to draw, will update the objects stored style\n * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style\n * @param {PIXI.Matrix} [matrix=null] Texture matrix to transform texture\n * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter)\n * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineTextureStyle = function lineTextureStyle (width, texture, color, alpha,\n matrix, alignment, native)\n {\n if ( width === void 0 ) width = 0;\n if ( texture === void 0 ) texture = Texture.WHITE;\n if ( color === void 0 ) color = 0xFFFFFF;\n if ( alpha === void 0 ) alpha = 1;\n if ( matrix === void 0 ) matrix = null;\n if ( alignment === void 0 ) alignment = 0.5;\n if ( native === void 0 ) native = false;\n\n if (this.currentPath)\n {\n this.startPoly();\n }\n\n var visible = width > 0 && alpha > 0;\n\n if (!visible)\n {\n this._lineStyle.reset();\n }\n else\n {\n if (matrix)\n {\n matrix = matrix.clone();\n matrix.invert();\n }\n\n Object.assign(this._lineStyle, {\n color: color,\n width: width,\n alpha: alpha,\n matrix: matrix,\n texture: texture,\n alignment: alignment,\n native: native,\n visible: visible,\n });\n }\n\n return this;\n };\n\n /**\n * Start a polygon object internally\n * @protected\n */\n Graphics.prototype.startPoly = function startPoly ()\n {\n if (this.currentPath)\n {\n var points = this.currentPath.points;\n var len = this.currentPath.points.length;\n\n if (len > 2)\n {\n this.drawShape(this.currentPath);\n this.currentPath = new Polygon();\n this.currentPath.closeStroke = false;\n this.currentPath.points.push(points[len - 2], points[len - 1]);\n }\n }\n else\n {\n this.currentPath = new Polygon();\n this.currentPath.closeStroke = false;\n }\n };\n\n /**\n * Finish the polygon object.\n * @protected\n */\n Graphics.prototype.finishPoly = function finishPoly ()\n {\n if (this.currentPath)\n {\n if (this.currentPath.points.length > 2)\n {\n this.drawShape(this.currentPath);\n this.currentPath = null;\n }\n else\n {\n this.currentPath.points.length = 0;\n }\n }\n };\n\n /**\n * Moves the current drawing position to x, y.\n *\n * @param {number} x - the X coordinate to move to\n * @param {number} y - the Y coordinate to move to\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.moveTo = function moveTo (x, y)\n {\n this.startPoly();\n this.currentPath.points[0] = x;\n this.currentPath.points[1] = y;\n\n return this;\n };\n\n /**\n * Draws a line using the current line style from the current drawing position to (x, y);\n * The current drawing position is then set to (x, y).\n *\n * @param {number} x - the X coordinate to draw to\n * @param {number} y - the Y coordinate to draw to\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineTo = function lineTo (x, y)\n {\n if (!this.currentPath)\n {\n this.moveTo(0, 0);\n }\n\n // remove duplicates..\n var points = this.currentPath.points;\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n if (fromX !== x || fromY !== y)\n {\n points.push(x, y);\n }\n\n return this;\n };\n\n /**\n * Initialize the curve\n *\n * @protected\n * @param {number} [x=0]\n * @param {number} [y=0]\n */\n Graphics.prototype._initCurve = function _initCurve (x, y)\n {\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n if (this.currentPath)\n {\n if (this.currentPath.points.length === 0)\n {\n this.currentPath.points = [x, y];\n }\n }\n else\n {\n this.moveTo(x, y);\n }\n };\n\n /**\n * Calculate the points for a quadratic bezier curve and then draws it.\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.quadraticCurveTo = function quadraticCurveTo (cpX, cpY, toX, toY)\n {\n this._initCurve();\n\n var points = this.currentPath.points;\n\n if (points.length === 0)\n {\n this.moveTo(0, 0);\n }\n\n QuadraticUtils.curveTo(cpX, cpY, toX, toY, points);\n\n return this;\n };\n\n /**\n * Calculate the points for a bezier curve and then draws it.\n *\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} cpX2 - Second Control point x\n * @param {number} cpY2 - Second Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.bezierCurveTo = function bezierCurveTo (cpX, cpY, cpX2, cpY2, toX, toY)\n {\n this._initCurve();\n\n BezierUtils.curveTo(cpX, cpY, cpX2, cpY2, toX, toY, this.currentPath.points);\n\n return this;\n };\n\n /**\n * The arcTo() method creates an arc/curve between two tangents on the canvas.\n *\n * \"borrowed\" from https://code.google.com/p/fxcanvas/ - thanks google!\n *\n * @param {number} x1 - The x-coordinate of the first tangent point of the arc\n * @param {number} y1 - The y-coordinate of the first tangent point of the arc\n * @param {number} x2 - The x-coordinate of the end of the arc\n * @param {number} y2 - The y-coordinate of the end of the arc\n * @param {number} radius - The radius of the arc\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.arcTo = function arcTo (x1, y1, x2, y2, radius)\n {\n this._initCurve(x1, y1);\n\n var points = this.currentPath.points;\n\n var result = ArcUtils.curveTo(x1, y1, x2, y2, radius, points);\n\n if (result)\n {\n var cx = result.cx;\n var cy = result.cy;\n var radius$1 = result.radius;\n var startAngle = result.startAngle;\n var endAngle = result.endAngle;\n var anticlockwise = result.anticlockwise;\n\n this.arc(cx, cy, radius$1, startAngle, endAngle, anticlockwise);\n }\n\n return this;\n };\n\n /**\n * The arc method creates an arc/curve (used to create circles, or parts of circles).\n *\n * @param {number} cx - The x-coordinate of the center of the circle\n * @param {number} cy - The y-coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position\n * of the arc's circle)\n * @param {number} endAngle - The ending angle, in radians\n * @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be\n * counter-clockwise or clockwise. False is default, and indicates clockwise, while true\n * indicates counter-clockwise.\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.arc = function arc (cx, cy, radius, startAngle, endAngle, anticlockwise)\n {\n if ( anticlockwise === void 0 ) anticlockwise = false;\n\n if (startAngle === endAngle)\n {\n return this;\n }\n\n if (!anticlockwise && endAngle <= startAngle)\n {\n endAngle += PI_2;\n }\n else if (anticlockwise && startAngle <= endAngle)\n {\n startAngle += PI_2;\n }\n\n var sweep = endAngle - startAngle;\n\n if (sweep === 0)\n {\n return this;\n }\n\n var startX = cx + (Math.cos(startAngle) * radius);\n var startY = cy + (Math.sin(startAngle) * radius);\n var eps = this.geometry.closePointEps;\n\n // If the currentPath exists, take its points. Otherwise call `moveTo` to start a path.\n var points = this.currentPath ? this.currentPath.points : null;\n\n if (points)\n {\n // TODO: make a better fix.\n\n // We check how far our start is from the last existing point\n var xDiff = Math.abs(points[points.length - 2] - startX);\n var yDiff = Math.abs(points[points.length - 1] - startY);\n\n if (xDiff < eps && yDiff < eps)\n ;\n else\n {\n points.push(startX, startY);\n }\n }\n else\n {\n this.moveTo(startX, startY);\n points = this.currentPath.points;\n }\n\n ArcUtils.arc(startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points);\n\n return this;\n };\n\n /**\n * Specifies a simple one-color fill that subsequent calls to other Graphics methods\n * (such as lineTo() or drawCircle()) use when drawing.\n *\n * @param {number} [color=0] - the color of the fill\n * @param {number} [alpha=1] - the alpha of the fill\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.beginFill = function beginFill (color, alpha)\n {\n if ( color === void 0 ) color = 0;\n if ( alpha === void 0 ) alpha = 1;\n\n return this.beginTextureFill(Texture.WHITE, color, alpha);\n };\n\n /**\n * Begin the texture fill\n *\n * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to fill\n * @param {number} [color=0xffffff] - Background to fill behind texture\n * @param {number} [alpha=1] - Alpha of fill\n * @param {PIXI.Matrix} [matrix=null] - Transform matrix\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.beginTextureFill = function beginTextureFill (texture, color, alpha, matrix)\n {\n if ( texture === void 0 ) texture = Texture.WHITE;\n if ( color === void 0 ) color = 0xFFFFFF;\n if ( alpha === void 0 ) alpha = 1;\n if ( matrix === void 0 ) matrix = null;\n\n if (this.currentPath)\n {\n this.startPoly();\n }\n\n var visible = alpha > 0;\n\n if (!visible)\n {\n this._fillStyle.reset();\n }\n else\n {\n if (matrix)\n {\n matrix = matrix.clone();\n matrix.invert();\n }\n\n Object.assign(this._fillStyle, {\n color: color,\n alpha: alpha,\n texture: texture,\n matrix: matrix,\n visible: visible,\n });\n }\n\n return this;\n };\n\n /**\n * Applies a fill to the lines and shapes that were added since the last call to the beginFill() method.\n *\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.endFill = function endFill ()\n {\n this.finishPoly();\n\n this._fillStyle.reset();\n\n return this;\n };\n\n /**\n * Draws a rectangle shape.\n *\n * @param {number} x - The X coord of the top-left of the rectangle\n * @param {number} y - The Y coord of the top-left of the rectangle\n * @param {number} width - The width of the rectangle\n * @param {number} height - The height of the rectangle\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawRect = function drawRect (x, y, width, height)\n {\n return this.drawShape(new Rectangle(x, y, width, height));\n };\n\n /**\n * Draw a rectangle shape with rounded/beveled corners.\n *\n * @param {number} x - The X coord of the top-left of the rectangle\n * @param {number} y - The Y coord of the top-left of the rectangle\n * @param {number} width - The width of the rectangle\n * @param {number} height - The height of the rectangle\n * @param {number} radius - Radius of the rectangle corners\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawRoundedRect = function drawRoundedRect (x, y, width, height, radius)\n {\n return this.drawShape(new RoundedRectangle(x, y, width, height, radius));\n };\n\n /**\n * Draws a circle.\n *\n * @param {number} x - The X coordinate of the center of the circle\n * @param {number} y - The Y coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawCircle = function drawCircle (x, y, radius)\n {\n return this.drawShape(new Circle(x, y, radius));\n };\n\n /**\n * Draws an ellipse.\n *\n * @param {number} x - The X coordinate of the center of the ellipse\n * @param {number} y - The Y coordinate of the center of the ellipse\n * @param {number} width - The half width of the ellipse\n * @param {number} height - The half height of the ellipse\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawEllipse = function drawEllipse (x, y, width, height)\n {\n return this.drawShape(new Ellipse(x, y, width, height));\n };\n\n /**\n * Draws a polygon using the given path.\n *\n * @param {number[]|PIXI.Point[]|PIXI.Polygon} path - The path data used to construct the polygon.\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawPolygon = function drawPolygon (path)\n {\n var arguments$1 = arguments;\n\n // prevents an argument assignment deopt\n // see section 3.1: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments\n var points = path;\n\n var closeStroke = true;// !!this._fillStyle;\n\n // check if data has points..\n if (points.points)\n {\n closeStroke = points.closeStroke;\n points = points.points;\n }\n\n if (!Array.isArray(points))\n {\n // prevents an argument leak deopt\n // see section 3.2: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments\n points = new Array(arguments.length);\n\n for (var i = 0; i < points.length; ++i)\n {\n points[i] = arguments$1[i]; // eslint-disable-line prefer-rest-params\n }\n }\n\n var shape = new Polygon(points);\n\n shape.closeStroke = closeStroke;\n\n this.drawShape(shape);\n\n return this;\n };\n\n /**\n * Draw any shape.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - Shape to draw\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawShape = function drawShape (shape)\n {\n if (!this._holeMode)\n {\n this.geometry.drawShape(\n shape,\n this._fillStyle.clone(),\n this._lineStyle.clone(),\n this._matrix\n );\n }\n else\n {\n this.geometry.drawHole(shape, this._matrix);\n }\n\n return this;\n };\n\n /**\n * Draw a star shape with an arbitrary number of points.\n *\n * @param {number} x - Center X position of the star\n * @param {number} y - Center Y position of the star\n * @param {number} points - The number of points of the star, must be > 1\n * @param {number} radius - The outer radius of the star\n * @param {number} [innerRadius] - The inner radius between points, default half `radius`\n * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawStar = function drawStar (x, y, points, radius, innerRadius, rotation)\n {\n if ( rotation === void 0 ) rotation = 0;\n\n return this.drawPolygon(new Star(x, y, points, radius, innerRadius, rotation));\n };\n\n /**\n * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings.\n *\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.clear = function clear ()\n {\n this.geometry.clear();\n this._lineStyle.reset();\n this._fillStyle.reset();\n\n this._matrix = null;\n this._holeMode = false;\n this.currentPath = null;\n\n return this;\n };\n\n /**\n * True if graphics consists of one rectangle, and thus, can be drawn like a Sprite and\n * masked with gl.scissor.\n *\n * @returns {boolean} True if only 1 rect.\n */\n Graphics.prototype.isFastRect = function isFastRect ()\n {\n // will fix this!\n return false;\n // this.graphicsData.length === 1\n // && this.graphicsData[0].shape.type === SHAPES.RECT\n // && !this.graphicsData[0].lineWidth;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._render = function _render (renderer)\n {\n this.finishPoly();\n\n var geometry = this.geometry;\n\n // batch part..\n // batch it!\n geometry.updateBatches();\n\n if (geometry.batchable)\n {\n if (this.batchDirty !== geometry.batchDirty)\n {\n this._populateBatches();\n }\n\n this._renderBatched(renderer);\n }\n else\n {\n // no batching...\n renderer.batch.flush();\n\n this._renderDirect(renderer);\n }\n };\n\n /**\n * Populating batches for rendering\n *\n * @protected\n */\n Graphics.prototype._populateBatches = function _populateBatches ()\n {\n var geometry = this.geometry;\n var blendMode = this.blendMode;\n\n this.batches = [];\n this.batchTint = -1;\n this._transformID = -1;\n this.batchDirty = geometry.batchDirty;\n\n this.vertexData = new Float32Array(geometry.points);\n\n for (var i = 0, l = geometry.batches.length; i < l; i++)\n {\n var gI = geometry.batches[i];\n var color = gI.style.color;\n var vertexData = new Float32Array(this.vertexData.buffer,\n gI.attribStart * 4 * 2,\n gI.attribSize * 2);\n\n var uvs = new Float32Array(geometry.uvsFloat32.buffer,\n gI.attribStart * 4 * 2,\n gI.attribSize * 2);\n\n var indices = new Uint16Array(geometry.indicesUint16.buffer,\n gI.start * 2,\n gI.size);\n\n var batch = {\n vertexData: vertexData,\n blendMode: blendMode,\n indices: indices,\n uvs: uvs,\n _batchRGB: hex2rgb(color),\n _tintRGB: color,\n _texture: gI.style.texture,\n alpha: gI.style.alpha,\n worldAlpha: 1 };\n\n this.batches[i] = batch;\n }\n };\n\n /**\n * Renders the batches using the BathedRenderer plugin\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._renderBatched = function _renderBatched (renderer)\n {\n if (!this.batches.length)\n {\n return;\n }\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n\n this.calculateVertices();\n this.calculateTints();\n\n for (var i = 0, l = this.batches.length; i < l; i++)\n {\n var batch = this.batches[i];\n\n batch.worldAlpha = this.worldAlpha * batch.alpha;\n\n renderer.plugins[this.pluginName].render(batch);\n }\n };\n\n /**\n * Renders the graphics direct\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._renderDirect = function _renderDirect (renderer)\n {\n var shader = this._resolveDirectShader(renderer);\n\n var geometry = this.geometry;\n var tint = this.tint;\n var worldAlpha = this.worldAlpha;\n var uniforms = shader.uniforms;\n var drawCalls = geometry.drawCalls;\n\n // lets set the transfomr\n uniforms.translationMatrix = this.transform.worldTransform;\n\n // and then lets set the tint..\n uniforms.tint[0] = (((tint >> 16) & 0xFF) / 255) * worldAlpha;\n uniforms.tint[1] = (((tint >> 8) & 0xFF) / 255) * worldAlpha;\n uniforms.tint[2] = ((tint & 0xFF) / 255) * worldAlpha;\n uniforms.tint[3] = worldAlpha;\n\n // the first draw call, we can set the uniforms of the shader directly here.\n\n // this means that we can tack advantage of the sync function of pixi!\n // bind and sync uniforms..\n // there is a way to optimise this..\n renderer.shader.bind(shader);\n renderer.geometry.bind(geometry, shader);\n\n // set state..\n renderer.state.set(this.state);\n\n // then render the rest of them...\n for (var i = 0, l = drawCalls.length; i < l; i++)\n {\n this._renderDrawCallDirect(renderer, geometry.drawCalls[i]);\n }\n };\n\n /**\n * Renders specific DrawCall\n *\n * @param {PIXI.Renderer} renderer\n * @param {PIXI.BatchDrawCall} drawCall\n */\n Graphics.prototype._renderDrawCallDirect = function _renderDrawCallDirect (renderer, drawCall)\n {\n var groupTextureCount = drawCall.textureCount;\n\n for (var j = 0; j < groupTextureCount; j++)\n {\n renderer.texture.bind(drawCall.textures[j], j);\n }\n\n renderer.geometry.draw(drawCall.type, drawCall.size, drawCall.start);\n };\n\n /**\n * Resolves shader for direct rendering\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._resolveDirectShader = function _resolveDirectShader (renderer)\n {\n var shader = this.shader;\n\n var pluginName = this.pluginName;\n\n if (!shader)\n {\n // if there is no shader here, we can use the default shader.\n // and that only gets created if we actually need it..\n // but may be more than one plugins for graphics\n if (!DEFAULT_SHADERS[pluginName])\n {\n var sampleValues = new Int32Array(16);\n\n for (var i = 0; i < 16; i++)\n {\n sampleValues[i] = i;\n }\n\n var uniforms = {\n tint: new Float32Array([1, 1, 1, 1]),\n translationMatrix: new Matrix(),\n default: UniformGroup.from({ uSamplers: sampleValues }, true),\n };\n\n var program = renderer.plugins[pluginName]._shader.program;\n\n DEFAULT_SHADERS[pluginName] = new Shader(program, uniforms);\n }\n\n shader = DEFAULT_SHADERS[pluginName];\n }\n\n return shader;\n };\n\n /**\n * Retrieves the bounds of the graphic shape as a rectangle object\n *\n * @protected\n */\n Graphics.prototype._calculateBounds = function _calculateBounds ()\n {\n this.finishPoly();\n var lb = this.geometry.bounds;\n\n this._bounds.addFrame(this.transform, lb.minX, lb.minY, lb.maxX, lb.maxY);\n };\n\n /**\n * Tests if a point is inside this graphics object\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */\n Graphics.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, Graphics._TEMP_POINT);\n\n return this.geometry.containsPoint(Graphics._TEMP_POINT);\n };\n\n /**\n * Recalcuate the tint by applying tin to batches using Graphics tint.\n * @protected\n */\n Graphics.prototype.calculateTints = function calculateTints ()\n {\n if (this.batchTint !== this.tint)\n {\n this.batchTint = this.tint;\n\n var tintRGB = hex2rgb(this.tint, temp);\n\n for (var i = 0; i < this.batches.length; i++)\n {\n var batch = this.batches[i];\n\n var batchTint = batch._batchRGB;\n\n var r = (tintRGB[0] * batchTint[0]) * 255;\n var g = (tintRGB[1] * batchTint[1]) * 255;\n var b = (tintRGB[2] * batchTint[2]) * 255;\n\n // TODO Ivan, can this be done in one go?\n var color = (r << 16) + (g << 8) + (b | 0);\n\n batch._tintRGB = (color >> 16)\n + (color & 0xff00)\n + ((color & 0xff) << 16);\n }\n }\n };\n\n /**\n * If there's a transform update or a change to the shape of the\n * geometry, recaculate the vertices.\n * @protected\n */\n Graphics.prototype.calculateVertices = function calculateVertices ()\n {\n if (this._transformID === this.transform._worldID)\n {\n return;\n }\n\n this._transformID = this.transform._worldID;\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var data = this.geometry.points;// batch.vertexDataOriginal;\n var vertexData = this.vertexData;\n\n var count = 0;\n\n for (var i = 0; i < data.length; i += 2)\n {\n var x = data[i];\n var y = data[i + 1];\n\n vertexData[count++] = (a * x) + (c * y) + tx;\n vertexData[count++] = (d * y) + (b * x) + ty;\n }\n };\n\n /**\n * Closes the current path.\n *\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.closePath = function closePath ()\n {\n var currentPath = this.currentPath;\n\n if (currentPath)\n {\n // we don't need to add extra point in the end because buildLine will take care of that\n currentPath.closeStroke = true;\n }\n\n return this;\n };\n\n /**\n * Apply a matrix to the positional data.\n *\n * @param {PIXI.Matrix} matrix - Matrix to use for transform current shape.\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.setMatrix = function setMatrix (matrix)\n {\n this._matrix = matrix;\n\n return this;\n };\n\n /**\n * Begin adding holes to the last draw shape\n * IMPORTANT: holes must be fully inside a shape to work\n * Also weirdness ensues if holes overlap!\n * Ellipses, Circles, Rectangles and Rounded Rectangles cannot be holes or host for holes in CanvasRenderer,\n * please use `moveTo` `lineTo`, `quadraticCurveTo` if you rely on pixi-legacy bundle.\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.beginHole = function beginHole ()\n {\n this.finishPoly();\n this._holeMode = true;\n\n return this;\n };\n\n /**\n * End adding holes to the last draw shape\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.endHole = function endHole ()\n {\n this.finishPoly();\n this._holeMode = false;\n\n return this;\n };\n\n /**\n * Destroys the Graphics object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n Graphics.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.geometry.refCount--;\n if (this.geometry.refCount === 0)\n {\n this.geometry.dispose();\n }\n\n this._matrix = null;\n this.currentPath = null;\n this._lineStyle.destroy();\n this._lineStyle = null;\n this._fillStyle.destroy();\n this._fillStyle = null;\n this.geometry = null;\n this.shader = null;\n this.vertexData = null;\n this.batches.length = 0;\n this.batches = null;\n\n Container.prototype.destroy.call(this, options);\n };\n\n Object.defineProperties( Graphics.prototype, prototypeAccessors );\n\n return Graphics;\n}(Container));\n\n/**\n * Temporary point to use for containsPoint\n *\n * @static\n * @private\n * @member {PIXI.Point}\n */\nGraphics._TEMP_POINT = new Point();\n\nexport { FillStyle, GRAPHICS_CURVES, Graphics, GraphicsData, GraphicsGeometry, LineStyle };\n//# sourceMappingURL=graphics.es.js.map\n","/*!\n * @pixi/sprite - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/sprite is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Point, Rectangle, ObservablePoint } from '@pixi/math';\nimport { sign } from '@pixi/utils';\nimport { Texture } from '@pixi/core';\nimport { BLEND_MODES } from '@pixi/constants';\nimport { Container } from '@pixi/display';\nimport { settings } from '@pixi/settings';\n\nvar tempPoint = new Point();\nvar indices = new Uint16Array([0, 1, 2, 0, 2, 3]);\n\n/**\n * The Sprite object is the base for all textured objects that are rendered to the screen\n*\n * A sprite can be created directly from an image like this:\n *\n * ```js\n * let sprite = PIXI.Sprite.from('assets/image.png');\n * ```\n *\n * The more efficient way to create sprites is using a {@link PIXI.Spritesheet},\n * as swapping base textures when rendering to the screen is inefficient.\n *\n * ```js\n * PIXI.Loader.shared.add(\"assets/spritesheet.json\").load(setup);\n *\n * function setup() {\n * let sheet = PIXI.Loader.shared.resources[\"assets/spritesheet.json\"].spritesheet;\n * let sprite = new PIXI.Sprite(sheet.textures[\"image.png\"]);\n * ...\n * }\n * ```\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Sprite = /*@__PURE__*/(function (Container) {\n function Sprite(texture)\n {\n Container.call(this);\n\n /**\n * The anchor point defines the normalized coordinates\n * in the texture that map to the position of this\n * sprite.\n *\n * By default, this is `(0,0)` (or `texture.defaultAnchor`\n * if you have modified that), which means the position\n * `(x,y)` of this `Sprite` will be the top-left corner.\n *\n * Note: Updating `texture.defaultAnchor` after\n * constructing a `Sprite` does _not_ update its anchor.\n *\n * {@link https://docs.cocos2d-x.org/cocos2d-x/en/sprites/manipulation.html}\n *\n * @default `texture.defaultAnchor`\n * @member {PIXI.ObservablePoint}\n * @private\n */\n this._anchor = new ObservablePoint(\n this._onAnchorUpdate,\n this,\n (texture ? texture.defaultAnchor.x : 0),\n (texture ? texture.defaultAnchor.y : 0)\n );\n\n /**\n * The texture that the sprite is using\n *\n * @private\n * @member {PIXI.Texture}\n */\n this._texture = null;\n\n /**\n * The width of the sprite (this is initially set by the texture)\n *\n * @private\n * @member {number}\n */\n this._width = 0;\n\n /**\n * The height of the sprite (this is initially set by the texture)\n *\n * @private\n * @member {number}\n */\n this._height = 0;\n\n /**\n * The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @private\n * @member {number}\n * @default 0xFFFFFF\n */\n this._tint = null;\n this._tintRGB = null;\n this.tint = 0xFFFFFF;\n\n /**\n * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * The shader that will be used to render the sprite. Set to null to remove a current shader.\n *\n * @member {PIXI.Filter|PIXI.Shader}\n */\n this.shader = null;\n\n /**\n * Cached tint value so we can tell when the tint is changed.\n * Value is used for 2d CanvasRenderer.\n *\n * @protected\n * @member {number}\n * @default 0xFFFFFF\n */\n this._cachedTint = 0xFFFFFF;\n\n /**\n * this is used to store the uvs data of the sprite, assigned at the same time\n * as the vertexData in calculateVertices()\n *\n * @private\n * @member {Float32Array}\n */\n this.uvs = null;\n\n // call texture setter\n this.texture = texture || Texture.EMPTY;\n\n /**\n * this is used to store the vertex data of the sprite (basically a quad)\n *\n * @private\n * @member {Float32Array}\n */\n this.vertexData = new Float32Array(8);\n\n /**\n * This is used to calculate the bounds of the object IF it is a trimmed sprite\n *\n * @private\n * @member {Float32Array}\n */\n this.vertexTrimmedData = null;\n\n this._transformID = -1;\n this._textureID = -1;\n\n this._transformTrimmedID = -1;\n this._textureTrimmedID = -1;\n\n // Batchable stuff..\n // TODO could make this a mixin?\n this.indices = indices;\n this.size = 4;\n this.start = 0;\n\n /**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_render' & '_renderCanvas' methods.\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = 'batch';\n\n /**\n * used to fast check if a sprite is.. a sprite!\n * @member {boolean}\n */\n this.isSprite = true;\n\n /**\n * Internal roundPixels field\n *\n * @member {boolean}\n * @private\n */\n this._roundPixels = settings.ROUND_PIXELS;\n }\n\n if ( Container ) Sprite.__proto__ = Container;\n Sprite.prototype = Object.create( Container && Container.prototype );\n Sprite.prototype.constructor = Sprite;\n\n var prototypeAccessors = { roundPixels: { configurable: true },width: { configurable: true },height: { configurable: true },anchor: { configurable: true },tint: { configurable: true },texture: { configurable: true } };\n\n /**\n * When the texture is updated, this event will fire to update the scale and frame\n *\n * @private\n */\n Sprite.prototype._onTextureUpdate = function _onTextureUpdate ()\n {\n this._textureID = -1;\n this._textureTrimmedID = -1;\n this._cachedTint = 0xFFFFFF;\n\n // so if _width is 0 then width was not set..\n if (this._width)\n {\n this.scale.x = sign(this.scale.x) * this._width / this._texture.orig.width;\n }\n\n if (this._height)\n {\n this.scale.y = sign(this.scale.y) * this._height / this._texture.orig.height;\n }\n };\n\n /**\n * Called when the anchor position updates.\n *\n * @private\n */\n Sprite.prototype._onAnchorUpdate = function _onAnchorUpdate ()\n {\n this._transformID = -1;\n this._transformTrimmedID = -1;\n };\n\n /**\n * calculates worldTransform * vertices, store it in vertexData\n */\n Sprite.prototype.calculateVertices = function calculateVertices ()\n {\n var texture = this._texture;\n\n if (this._transformID === this.transform._worldID && this._textureID === texture._updateID)\n {\n return;\n }\n\n // update texture UV here, because base texture can be changed without calling `_onTextureUpdate`\n if (this._textureID !== texture._updateID)\n {\n this.uvs = this._texture._uvs.uvsFloat32;\n }\n\n this._transformID = this.transform._worldID;\n this._textureID = texture._updateID;\n\n // set the vertex data\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n var vertexData = this.vertexData;\n var trim = texture.trim;\n var orig = texture.orig;\n var anchor = this._anchor;\n\n var w0 = 0;\n var w1 = 0;\n var h0 = 0;\n var h1 = 0;\n\n if (trim)\n {\n // if the sprite is trimmed and is not a tilingsprite then we need to add the extra\n // space before transforming the sprite coords.\n w1 = trim.x - (anchor._x * orig.width);\n w0 = w1 + trim.width;\n\n h1 = trim.y - (anchor._y * orig.height);\n h0 = h1 + trim.height;\n }\n else\n {\n w1 = -anchor._x * orig.width;\n w0 = w1 + orig.width;\n\n h1 = -anchor._y * orig.height;\n h0 = h1 + orig.height;\n }\n\n // xy\n vertexData[0] = (a * w1) + (c * h1) + tx;\n vertexData[1] = (d * h1) + (b * w1) + ty;\n\n // xy\n vertexData[2] = (a * w0) + (c * h1) + tx;\n vertexData[3] = (d * h1) + (b * w0) + ty;\n\n // xy\n vertexData[4] = (a * w0) + (c * h0) + tx;\n vertexData[5] = (d * h0) + (b * w0) + ty;\n\n // xy\n vertexData[6] = (a * w1) + (c * h0) + tx;\n vertexData[7] = (d * h0) + (b * w1) + ty;\n\n if (this._roundPixels)\n {\n for (var i = 0; i < 8; i++)\n {\n vertexData[i] = Math.round(vertexData[i]);\n }\n }\n };\n\n /**\n * calculates worldTransform * vertices for a non texture with a trim. store it in vertexTrimmedData\n * This is used to ensure that the true width and height of a trimmed texture is respected\n */\n Sprite.prototype.calculateTrimmedVertices = function calculateTrimmedVertices ()\n {\n if (!this.vertexTrimmedData)\n {\n this.vertexTrimmedData = new Float32Array(8);\n }\n else if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID)\n {\n return;\n }\n\n this._transformTrimmedID = this.transform._worldID;\n this._textureTrimmedID = this._texture._updateID;\n\n // lets do some special trim code!\n var texture = this._texture;\n var vertexData = this.vertexTrimmedData;\n var orig = texture.orig;\n var anchor = this._anchor;\n\n // lets calculate the new untrimmed bounds..\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var w1 = -anchor._x * orig.width;\n var w0 = w1 + orig.width;\n\n var h1 = -anchor._y * orig.height;\n var h0 = h1 + orig.height;\n\n // xy\n vertexData[0] = (a * w1) + (c * h1) + tx;\n vertexData[1] = (d * h1) + (b * w1) + ty;\n\n // xy\n vertexData[2] = (a * w0) + (c * h1) + tx;\n vertexData[3] = (d * h1) + (b * w0) + ty;\n\n // xy\n vertexData[4] = (a * w0) + (c * h0) + tx;\n vertexData[5] = (d * h0) + (b * w0) + ty;\n\n // xy\n vertexData[6] = (a * w1) + (c * h0) + tx;\n vertexData[7] = (d * h0) + (b * w1) + ty;\n };\n\n /**\n *\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The webgl renderer to use.\n */\n Sprite.prototype._render = function _render (renderer)\n {\n this.calculateVertices();\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n renderer.plugins[this.pluginName].render(this);\n };\n\n /**\n * Updates the bounds of the sprite.\n *\n * @protected\n */\n Sprite.prototype._calculateBounds = function _calculateBounds ()\n {\n var trim = this._texture.trim;\n var orig = this._texture.orig;\n\n // First lets check to see if the current texture has a trim..\n if (!trim || (trim.width === orig.width && trim.height === orig.height))\n {\n // no trim! lets use the usual calculations..\n this.calculateVertices();\n this._bounds.addQuad(this.vertexData);\n }\n else\n {\n // lets calculate a special trimmed bounds...\n this.calculateTrimmedVertices();\n this._bounds.addQuad(this.vertexTrimmedData);\n }\n };\n\n /**\n * Gets the local bounds of the sprite object.\n *\n * @param {PIXI.Rectangle} [rect] - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n Sprite.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n // we can do a fast local bounds if the sprite has no children!\n if (this.children.length === 0)\n {\n this._bounds.minX = this._texture.orig.width * -this._anchor._x;\n this._bounds.minY = this._texture.orig.height * -this._anchor._y;\n this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x);\n this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y);\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n }\n\n return Container.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * Tests if a point is inside this sprite\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */\n Sprite.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, tempPoint);\n\n var width = this._texture.orig.width;\n var height = this._texture.orig.height;\n var x1 = -width * this.anchor.x;\n var y1 = 0;\n\n if (tempPoint.x >= x1 && tempPoint.x < x1 + width)\n {\n y1 = -height * this.anchor.y;\n\n if (tempPoint.y >= y1 && tempPoint.y < y1 + height)\n {\n return true;\n }\n }\n\n return false;\n };\n\n /**\n * Destroys this sprite and optionally its texture and children\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well\n */\n Sprite.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this._texture.off('update', this._onTextureUpdate, this);\n\n this._anchor = null;\n\n var destroyTexture = typeof options === 'boolean' ? options : options && options.texture;\n\n if (destroyTexture)\n {\n var destroyBaseTexture = typeof options === 'boolean' ? options : options && options.baseTexture;\n\n this._texture.destroy(!!destroyBaseTexture);\n }\n\n this._texture = null;\n this.shader = null;\n };\n\n // some helper functions..\n\n /**\n * Helper function that creates a new sprite based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source Source to create texture from\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Sprite} The newly created sprite\n */\n Sprite.from = function from (source, options)\n {\n var texture = (source instanceof Texture)\n ? source\n : Texture.from(source, options);\n\n return new Sprite(texture);\n };\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n prototypeAccessors.roundPixels.set = function (value)\n {\n if (this._roundPixels !== value)\n {\n this._transformID = -1;\n }\n this._roundPixels = value;\n };\n\n prototypeAccessors.roundPixels.get = function ()\n {\n return this._roundPixels;\n };\n\n /**\n * The width of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return Math.abs(this.scale.x) * this._texture.orig.width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n var s = sign(this.scale.x) || 1;\n\n this.scale.x = s * value / this._texture.orig.width;\n this._width = value;\n };\n\n /**\n * The height of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return Math.abs(this.scale.y) * this._texture.orig.height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n var s = sign(this.scale.y) || 1;\n\n this.scale.y = s * value / this._texture.orig.height;\n this._height = value;\n };\n\n /**\n * The anchor sets the origin point of the text. The default value is taken from the {@link PIXI.Texture|Texture}\n * and passed to the constructor.\n *\n * The default is `(0,0)`, this means the text's origin is the top left.\n *\n * Setting the anchor to `(0.5,0.5)` means the text's origin is centered.\n *\n * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner.\n *\n * If you pass only single parameter, it will set both x and y to the same value as shown in the example below.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.anchor.set(0.5); // This will set the origin to center. (0.5) is same as (0.5, 0.5).\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.anchor.get = function ()\n {\n return this._anchor;\n };\n\n prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._anchor.copyFrom(value);\n };\n\n /**\n * The tint applied to the sprite. This is a hex value.\n * A value of 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._tint = value;\n this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16);\n };\n\n /**\n * The texture that the sprite is using\n *\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this._texture;\n };\n\n prototypeAccessors.texture.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._texture === value)\n {\n return;\n }\n\n this._texture = value || Texture.EMPTY;\n this._cachedTint = 0xFFFFFF;\n\n this._textureID = -1;\n this._textureTrimmedID = -1;\n\n if (value)\n {\n // wait for the texture to load\n if (value.baseTexture.valid)\n {\n this._onTextureUpdate();\n }\n else\n {\n value.once('update', this._onTextureUpdate, this);\n }\n }\n };\n\n Object.defineProperties( Sprite.prototype, prototypeAccessors );\n\n return Sprite;\n}(Container));\n\nexport { Sprite };\n//# sourceMappingURL=sprite.es.js.map\n","/*!\n * @pixi/text - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/text is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Sprite } from '@pixi/sprite';\nimport { Texture } from '@pixi/core';\nimport { settings } from '@pixi/settings';\nimport { Rectangle } from '@pixi/math';\nimport { hex2string, hex2rgb, string2hex, trimCanvas, sign } from '@pixi/utils';\n\n/**\n * Constants that define the type of gradient on text.\n *\n * @static\n * @constant\n * @name TEXT_GRADIENT\n * @memberof PIXI\n * @type {object}\n * @property {number} LINEAR_VERTICAL Vertical gradient\n * @property {number} LINEAR_HORIZONTAL Linear gradient\n */\nvar TEXT_GRADIENT = {\n LINEAR_VERTICAL: 0,\n LINEAR_HORIZONTAL: 1,\n};\n\n// disabling eslint for now, going to rewrite this in v5\n\nvar defaultStyle = {\n align: 'left',\n breakWords: false,\n dropShadow: false,\n dropShadowAlpha: 1,\n dropShadowAngle: Math.PI / 6,\n dropShadowBlur: 0,\n dropShadowColor: 'black',\n dropShadowDistance: 5,\n fill: 'black',\n fillGradientType: TEXT_GRADIENT.LINEAR_VERTICAL,\n fillGradientStops: [],\n fontFamily: 'Arial',\n fontSize: 26,\n fontStyle: 'normal',\n fontVariant: 'normal',\n fontWeight: 'normal',\n letterSpacing: 0,\n lineHeight: 0,\n lineJoin: 'miter',\n miterLimit: 10,\n padding: 0,\n stroke: 'black',\n strokeThickness: 0,\n textBaseline: 'alphabetic',\n trim: false,\n whiteSpace: 'pre',\n wordWrap: false,\n wordWrapWidth: 100,\n leading: 0,\n};\n\nvar genericFontFamilies = [\n 'serif',\n 'sans-serif',\n 'monospace',\n 'cursive',\n 'fantasy',\n 'system-ui' ];\n\n/**\n * A TextStyle Object contains information to decorate a Text objects.\n *\n * An instance can be shared between multiple Text objects; then changing the style will update all text objects using it.\n *\n * A tool can be used to generate a text style [here](https://pixijs.io/pixi-text-style).\n *\n * @class\n * @memberof PIXI\n */\nvar TextStyle = function TextStyle(style)\n{\n this.styleID = 0;\n\n this.reset();\n\n deepCopyProperties(this, style, style);\n};\n\nvar prototypeAccessors = { align: { configurable: true },breakWords: { configurable: true },dropShadow: { configurable: true },dropShadowAlpha: { configurable: true },dropShadowAngle: { configurable: true },dropShadowBlur: { configurable: true },dropShadowColor: { configurable: true },dropShadowDistance: { configurable: true },fill: { configurable: true },fillGradientType: { configurable: true },fillGradientStops: { configurable: true },fontFamily: { configurable: true },fontSize: { configurable: true },fontStyle: { configurable: true },fontVariant: { configurable: true },fontWeight: { configurable: true },letterSpacing: { configurable: true },lineHeight: { configurable: true },leading: { configurable: true },lineJoin: { configurable: true },miterLimit: { configurable: true },padding: { configurable: true },stroke: { configurable: true },strokeThickness: { configurable: true },textBaseline: { configurable: true },trim: { configurable: true },whiteSpace: { configurable: true },wordWrap: { configurable: true },wordWrapWidth: { configurable: true } };\n\n/**\n * Creates a new TextStyle object with the same values as this one.\n * Note that the only the properties of the object are cloned.\n *\n * @return {PIXI.TextStyle} New cloned TextStyle object\n */\nTextStyle.prototype.clone = function clone ()\n{\n var clonedProperties = {};\n\n deepCopyProperties(clonedProperties, this, defaultStyle);\n\n return new TextStyle(clonedProperties);\n};\n\n/**\n * Resets all properties to the defaults specified in TextStyle.prototype._default\n */\nTextStyle.prototype.reset = function reset ()\n{\n deepCopyProperties(this, defaultStyle, defaultStyle);\n};\n\n/**\n * Alignment for multiline text ('left', 'center' or 'right'), does not affect single line text\n *\n * @member {string}\n */\nprototypeAccessors.align.get = function ()\n{\n return this._align;\n};\nprototypeAccessors.align.set = function (align) // eslint-disable-line require-jsdoc\n{\n if (this._align !== align)\n {\n this._align = align;\n this.styleID++;\n }\n};\n\n/**\n * Indicates if lines can be wrapped within words, it needs wordWrap to be set to true\n *\n * @member {boolean}\n */\nprototypeAccessors.breakWords.get = function ()\n{\n return this._breakWords;\n};\nprototypeAccessors.breakWords.set = function (breakWords) // eslint-disable-line require-jsdoc\n{\n if (this._breakWords !== breakWords)\n {\n this._breakWords = breakWords;\n this.styleID++;\n }\n};\n\n/**\n * Set a drop shadow for the text\n *\n * @member {boolean}\n */\nprototypeAccessors.dropShadow.get = function ()\n{\n return this._dropShadow;\n};\nprototypeAccessors.dropShadow.set = function (dropShadow) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadow !== dropShadow)\n {\n this._dropShadow = dropShadow;\n this.styleID++;\n }\n};\n\n/**\n * Set alpha for the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowAlpha.get = function ()\n{\n return this._dropShadowAlpha;\n};\nprototypeAccessors.dropShadowAlpha.set = function (dropShadowAlpha) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowAlpha !== dropShadowAlpha)\n {\n this._dropShadowAlpha = dropShadowAlpha;\n this.styleID++;\n }\n};\n\n/**\n * Set a angle of the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowAngle.get = function ()\n{\n return this._dropShadowAngle;\n};\nprototypeAccessors.dropShadowAngle.set = function (dropShadowAngle) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowAngle !== dropShadowAngle)\n {\n this._dropShadowAngle = dropShadowAngle;\n this.styleID++;\n }\n};\n\n/**\n * Set a shadow blur radius\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowBlur.get = function ()\n{\n return this._dropShadowBlur;\n};\nprototypeAccessors.dropShadowBlur.set = function (dropShadowBlur) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowBlur !== dropShadowBlur)\n {\n this._dropShadowBlur = dropShadowBlur;\n this.styleID++;\n }\n};\n\n/**\n * A fill style to be used on the dropshadow e.g 'red', '#00FF00'\n *\n * @member {string|number}\n */\nprototypeAccessors.dropShadowColor.get = function ()\n{\n return this._dropShadowColor;\n};\nprototypeAccessors.dropShadowColor.set = function (dropShadowColor) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(dropShadowColor);\n if (this._dropShadowColor !== outputColor)\n {\n this._dropShadowColor = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * Set a distance of the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowDistance.get = function ()\n{\n return this._dropShadowDistance;\n};\nprototypeAccessors.dropShadowDistance.set = function (dropShadowDistance) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowDistance !== dropShadowDistance)\n {\n this._dropShadowDistance = dropShadowDistance;\n this.styleID++;\n }\n};\n\n/**\n * A canvas fillstyle that will be used on the text e.g 'red', '#00FF00'.\n * Can be an array to create a gradient eg ['#000000','#FFFFFF']\n * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle|MDN}\n *\n * @member {string|string[]|number|number[]|CanvasGradient|CanvasPattern}\n */\nprototypeAccessors.fill.get = function ()\n{\n return this._fill;\n};\nprototypeAccessors.fill.set = function (fill) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(fill);\n if (this._fill !== outputColor)\n {\n this._fill = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * If fill is an array of colours to create a gradient, this can change the type/direction of the gradient.\n * See {@link PIXI.TEXT_GRADIENT}\n *\n * @member {number}\n */\nprototypeAccessors.fillGradientType.get = function ()\n{\n return this._fillGradientType;\n};\nprototypeAccessors.fillGradientType.set = function (fillGradientType) // eslint-disable-line require-jsdoc\n{\n if (this._fillGradientType !== fillGradientType)\n {\n this._fillGradientType = fillGradientType;\n this.styleID++;\n }\n};\n\n/**\n * If fill is an array of colours to create a gradient, this array can set the stop points\n * (numbers between 0 and 1) for the color, overriding the default behaviour of evenly spacing them.\n *\n * @member {number[]}\n */\nprototypeAccessors.fillGradientStops.get = function ()\n{\n return this._fillGradientStops;\n};\nprototypeAccessors.fillGradientStops.set = function (fillGradientStops) // eslint-disable-line require-jsdoc\n{\n if (!areArraysEqual(this._fillGradientStops,fillGradientStops))\n {\n this._fillGradientStops = fillGradientStops;\n this.styleID++;\n }\n};\n\n/**\n * The font family\n *\n * @member {string|string[]}\n */\nprototypeAccessors.fontFamily.get = function ()\n{\n return this._fontFamily;\n};\nprototypeAccessors.fontFamily.set = function (fontFamily) // eslint-disable-line require-jsdoc\n{\n if (this.fontFamily !== fontFamily)\n {\n this._fontFamily = fontFamily;\n this.styleID++;\n }\n};\n\n/**\n * The font size\n * (as a number it converts to px, but as a string, equivalents are '26px','20pt','160%' or '1.6em')\n *\n * @member {number|string}\n */\nprototypeAccessors.fontSize.get = function ()\n{\n return this._fontSize;\n};\nprototypeAccessors.fontSize.set = function (fontSize) // eslint-disable-line require-jsdoc\n{\n if (this._fontSize !== fontSize)\n {\n this._fontSize = fontSize;\n this.styleID++;\n }\n};\n\n/**\n * The font style\n * ('normal', 'italic' or 'oblique')\n *\n * @member {string}\n */\nprototypeAccessors.fontStyle.get = function ()\n{\n return this._fontStyle;\n};\nprototypeAccessors.fontStyle.set = function (fontStyle) // eslint-disable-line require-jsdoc\n{\n if (this._fontStyle !== fontStyle)\n {\n this._fontStyle = fontStyle;\n this.styleID++;\n }\n};\n\n/**\n * The font variant\n * ('normal' or 'small-caps')\n *\n * @member {string}\n */\nprototypeAccessors.fontVariant.get = function ()\n{\n return this._fontVariant;\n};\nprototypeAccessors.fontVariant.set = function (fontVariant) // eslint-disable-line require-jsdoc\n{\n if (this._fontVariant !== fontVariant)\n {\n this._fontVariant = fontVariant;\n this.styleID++;\n }\n};\n\n/**\n * The font weight\n * ('normal', 'bold', 'bolder', 'lighter' and '100', '200', '300', '400', '500', '600', '700', 800' or '900')\n *\n * @member {string}\n */\nprototypeAccessors.fontWeight.get = function ()\n{\n return this._fontWeight;\n};\nprototypeAccessors.fontWeight.set = function (fontWeight) // eslint-disable-line require-jsdoc\n{\n if (this._fontWeight !== fontWeight)\n {\n this._fontWeight = fontWeight;\n this.styleID++;\n }\n};\n\n/**\n * The amount of spacing between letters, default is 0\n *\n * @member {number}\n */\nprototypeAccessors.letterSpacing.get = function ()\n{\n return this._letterSpacing;\n};\nprototypeAccessors.letterSpacing.set = function (letterSpacing) // eslint-disable-line require-jsdoc\n{\n if (this._letterSpacing !== letterSpacing)\n {\n this._letterSpacing = letterSpacing;\n this.styleID++;\n }\n};\n\n/**\n * The line height, a number that represents the vertical space that a letter uses\n *\n * @member {number}\n */\nprototypeAccessors.lineHeight.get = function ()\n{\n return this._lineHeight;\n};\nprototypeAccessors.lineHeight.set = function (lineHeight) // eslint-disable-line require-jsdoc\n{\n if (this._lineHeight !== lineHeight)\n {\n this._lineHeight = lineHeight;\n this.styleID++;\n }\n};\n\n/**\n * The space between lines\n *\n * @member {number}\n */\nprototypeAccessors.leading.get = function ()\n{\n return this._leading;\n};\nprototypeAccessors.leading.set = function (leading) // eslint-disable-line require-jsdoc\n{\n if (this._leading !== leading)\n {\n this._leading = leading;\n this.styleID++;\n }\n};\n\n/**\n * The lineJoin property sets the type of corner created, it can resolve spiked text issues.\n * Default is 'miter' (creates a sharp corner).\n *\n * @member {string}\n */\nprototypeAccessors.lineJoin.get = function ()\n{\n return this._lineJoin;\n};\nprototypeAccessors.lineJoin.set = function (lineJoin) // eslint-disable-line require-jsdoc\n{\n if (this._lineJoin !== lineJoin)\n {\n this._lineJoin = lineJoin;\n this.styleID++;\n }\n};\n\n/**\n * The miter limit to use when using the 'miter' lineJoin mode\n * This can reduce or increase the spikiness of rendered text.\n *\n * @member {number}\n */\nprototypeAccessors.miterLimit.get = function ()\n{\n return this._miterLimit;\n};\nprototypeAccessors.miterLimit.set = function (miterLimit) // eslint-disable-line require-jsdoc\n{\n if (this._miterLimit !== miterLimit)\n {\n this._miterLimit = miterLimit;\n this.styleID++;\n }\n};\n\n/**\n * Occasionally some fonts are cropped. Adding some padding will prevent this from happening\n * by adding padding to all sides of the text.\n *\n * @member {number}\n */\nprototypeAccessors.padding.get = function ()\n{\n return this._padding;\n};\nprototypeAccessors.padding.set = function (padding) // eslint-disable-line require-jsdoc\n{\n if (this._padding !== padding)\n {\n this._padding = padding;\n this.styleID++;\n }\n};\n\n/**\n * A canvas fillstyle that will be used on the text stroke\n * e.g 'blue', '#FCFF00'\n *\n * @member {string|number}\n */\nprototypeAccessors.stroke.get = function ()\n{\n return this._stroke;\n};\nprototypeAccessors.stroke.set = function (stroke) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(stroke);\n if (this._stroke !== outputColor)\n {\n this._stroke = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * A number that represents the thickness of the stroke.\n * Default is 0 (no stroke)\n *\n * @member {number}\n */\nprototypeAccessors.strokeThickness.get = function ()\n{\n return this._strokeThickness;\n};\nprototypeAccessors.strokeThickness.set = function (strokeThickness) // eslint-disable-line require-jsdoc\n{\n if (this._strokeThickness !== strokeThickness)\n {\n this._strokeThickness = strokeThickness;\n this.styleID++;\n }\n};\n\n/**\n * The baseline of the text that is rendered.\n *\n * @member {string}\n */\nprototypeAccessors.textBaseline.get = function ()\n{\n return this._textBaseline;\n};\nprototypeAccessors.textBaseline.set = function (textBaseline) // eslint-disable-line require-jsdoc\n{\n if (this._textBaseline !== textBaseline)\n {\n this._textBaseline = textBaseline;\n this.styleID++;\n }\n};\n\n/**\n * Trim transparent borders\n *\n * @member {boolean}\n */\nprototypeAccessors.trim.get = function ()\n{\n return this._trim;\n};\nprototypeAccessors.trim.set = function (trim) // eslint-disable-line require-jsdoc\n{\n if (this._trim !== trim)\n {\n this._trim = trim;\n this.styleID++;\n }\n};\n\n/**\n * How newlines and spaces should be handled.\n * Default is 'pre' (preserve, preserve).\n *\n * value | New lines | Spaces\n * --- | --- | ---\n * 'normal' | Collapse | Collapse\n * 'pre' | Preserve | Preserve\n * 'pre-line' | Preserve | Collapse\n *\n * @member {string}\n */\nprototypeAccessors.whiteSpace.get = function ()\n{\n return this._whiteSpace;\n};\nprototypeAccessors.whiteSpace.set = function (whiteSpace) // eslint-disable-line require-jsdoc\n{\n if (this._whiteSpace !== whiteSpace)\n {\n this._whiteSpace = whiteSpace;\n this.styleID++;\n }\n};\n\n/**\n * Indicates if word wrap should be used\n *\n * @member {boolean}\n */\nprototypeAccessors.wordWrap.get = function ()\n{\n return this._wordWrap;\n};\nprototypeAccessors.wordWrap.set = function (wordWrap) // eslint-disable-line require-jsdoc\n{\n if (this._wordWrap !== wordWrap)\n {\n this._wordWrap = wordWrap;\n this.styleID++;\n }\n};\n\n/**\n * The width at which text will wrap, it needs wordWrap to be set to true\n *\n * @member {number}\n */\nprototypeAccessors.wordWrapWidth.get = function ()\n{\n return this._wordWrapWidth;\n};\nprototypeAccessors.wordWrapWidth.set = function (wordWrapWidth) // eslint-disable-line require-jsdoc\n{\n if (this._wordWrapWidth !== wordWrapWidth)\n {\n this._wordWrapWidth = wordWrapWidth;\n this.styleID++;\n }\n};\n\n/**\n * Generates a font style string to use for `TextMetrics.measureFont()`.\n *\n * @return {string} Font style string, for passing to `TextMetrics.measureFont()`\n */\nTextStyle.prototype.toFontString = function toFontString ()\n{\n // build canvas api font setting from individual components. Convert a numeric this.fontSize to px\n var fontSizeString = (typeof this.fontSize === 'number') ? ((this.fontSize) + \"px\") : this.fontSize;\n\n // Clean-up fontFamily property by quoting each font name\n // this will support font names with spaces\n var fontFamilies = this.fontFamily;\n\n if (!Array.isArray(this.fontFamily))\n {\n fontFamilies = this.fontFamily.split(',');\n }\n\n for (var i = fontFamilies.length - 1; i >= 0; i--)\n {\n // Trim any extra white-space\n var fontFamily = fontFamilies[i].trim();\n\n // Check if font already contains strings\n if (!(/([\\\"\\'])[^\\'\\\"]+\\1/).test(fontFamily) && genericFontFamilies.indexOf(fontFamily) < 0)\n {\n fontFamily = \"\\\"\" + fontFamily + \"\\\"\";\n }\n fontFamilies[i] = fontFamily;\n }\n\n return ((this.fontStyle) + \" \" + (this.fontVariant) + \" \" + (this.fontWeight) + \" \" + fontSizeString + \" \" + (fontFamilies.join(',')));\n};\n\nObject.defineProperties( TextStyle.prototype, prototypeAccessors );\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * @private\n * @param {number|number[]} color\n * @return {string} The color as a string.\n */\nfunction getSingleColor(color)\n{\n if (typeof color === 'number')\n {\n return hex2string(color);\n }\n else if ( typeof color === 'string' )\n {\n if ( color.indexOf('0x') === 0 )\n {\n color = color.replace('0x', '#');\n }\n }\n\n return color;\n}\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * This version can also convert array of colors\n * @private\n * @param {number|number[]} color\n * @return {string} The color as a string.\n */\nfunction getColor(color)\n{\n if (!Array.isArray(color))\n {\n return getSingleColor(color);\n }\n else\n {\n for (var i = 0; i < color.length; ++i)\n {\n color[i] = getSingleColor(color[i]);\n }\n\n return color;\n }\n}\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * This version can also convert array of colors\n * @private\n * @param {Array} array1 First array to compare\n * @param {Array} array2 Second array to compare\n * @return {boolean} Do the arrays contain the same values in the same order\n */\nfunction areArraysEqual(array1, array2)\n{\n if (!Array.isArray(array1) || !Array.isArray(array2))\n {\n return false;\n }\n\n if (array1.length !== array2.length)\n {\n return false;\n }\n\n for (var i = 0; i < array1.length; ++i)\n {\n if (array1[i] !== array2[i])\n {\n return false;\n }\n }\n\n return true;\n}\n\n/**\n * Utility function to ensure that object properties are copied by value, and not by reference\n * @private\n * @param {Object} target Target object to copy properties into\n * @param {Object} source Source object for the properties to copy\n * @param {string} propertyObj Object containing properties names we want to loop over\n */\nfunction deepCopyProperties(target, source, propertyObj) {\n for (var prop in propertyObj) {\n if (Array.isArray(source[prop])) {\n target[prop] = source[prop].slice();\n } else {\n target[prop] = source[prop];\n }\n }\n}\n\n/**\n * The TextMetrics object represents the measurement of a block of text with a specified style.\n *\n * ```js\n * let style = new PIXI.TextStyle({fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'})\n * let textMetrics = PIXI.TextMetrics.measureText('Your text', style)\n * ```\n *\n * @class\n * @memberof PIXI\n */\nvar TextMetrics = function TextMetrics(text, style, width, height, lines, lineWidths, lineHeight, maxLineWidth, fontProperties)\n{\n /**\n * The text that was measured\n *\n * @member {string}\n */\n this.text = text;\n\n /**\n * The style that was measured\n *\n * @member {PIXI.TextStyle}\n */\n this.style = style;\n\n /**\n * The measured width of the text\n *\n * @member {number}\n */\n this.width = width;\n\n /**\n * The measured height of the text\n *\n * @member {number}\n */\n this.height = height;\n\n /**\n * An array of lines of the text broken by new lines and wrapping is specified in style\n *\n * @member {string[]}\n */\n this.lines = lines;\n\n /**\n * An array of the line widths for each line matched to `lines`\n *\n * @member {number[]}\n */\n this.lineWidths = lineWidths;\n\n /**\n * The measured line height for this style\n *\n * @member {number}\n */\n this.lineHeight = lineHeight;\n\n /**\n * The maximum line width for all measured lines\n *\n * @member {number}\n */\n this.maxLineWidth = maxLineWidth;\n\n /**\n * The font properties object from TextMetrics.measureFont\n *\n * @member {PIXI.IFontMetrics}\n */\n this.fontProperties = fontProperties;\n};\n\n/**\n * Measures the supplied string of text and returns a Rectangle.\n *\n * @param {string} text - the text to measure.\n * @param {PIXI.TextStyle} style - the text style to use for measuring\n * @param {boolean} [wordWrap] - optional override for if word-wrap should be applied to the text.\n * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring.\n * @return {PIXI.TextMetrics} measured width and height of the text.\n */\nTextMetrics.measureText = function measureText (text, style, wordWrap, canvas)\n{\n if ( canvas === void 0 ) canvas = TextMetrics._canvas;\n\n wordWrap = (wordWrap === undefined || wordWrap === null) ? style.wordWrap : wordWrap;\n var font = style.toFontString();\n var fontProperties = TextMetrics.measureFont(font);\n\n // fallback in case UA disallow canvas data extraction\n // (toDataURI, getImageData functions)\n if (fontProperties.fontSize === 0)\n {\n fontProperties.fontSize = style.fontSize;\n fontProperties.ascent = style.fontSize;\n }\n\n var context = canvas.getContext('2d');\n\n context.font = font;\n\n var outputText = wordWrap ? TextMetrics.wordWrap(text, style, canvas) : text;\n var lines = outputText.split(/(?:\\r\\n|\\r|\\n)/);\n var lineWidths = new Array(lines.length);\n var maxLineWidth = 0;\n\n for (var i = 0; i < lines.length; i++)\n {\n var lineWidth = context.measureText(lines[i]).width + ((lines[i].length - 1) * style.letterSpacing);\n\n lineWidths[i] = lineWidth;\n maxLineWidth = Math.max(maxLineWidth, lineWidth);\n }\n var width = maxLineWidth + style.strokeThickness;\n\n if (style.dropShadow)\n {\n width += style.dropShadowDistance;\n }\n\n var lineHeight = style.lineHeight || fontProperties.fontSize + style.strokeThickness;\n var height = Math.max(lineHeight, fontProperties.fontSize + style.strokeThickness)\n + ((lines.length - 1) * (lineHeight + style.leading));\n\n if (style.dropShadow)\n {\n height += style.dropShadowDistance;\n }\n\n return new TextMetrics(\n text,\n style,\n width,\n height,\n lines,\n lineWidths,\n lineHeight + style.leading,\n maxLineWidth,\n fontProperties\n );\n};\n\n/**\n * Applies newlines to a string to have it optimally fit into the horizontal\n * bounds set by the Text object's wordWrapWidth property.\n *\n * @private\n * @param {string} text - String to apply word wrapping to\n * @param {PIXI.TextStyle} style - the style to use when wrapping\n * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring.\n * @return {string} New string with new lines applied where required\n */\nTextMetrics.wordWrap = function wordWrap (text, style, canvas)\n{\n if ( canvas === void 0 ) canvas = TextMetrics._canvas;\n\n var context = canvas.getContext('2d');\n\n var width = 0;\n var line = '';\n var lines = '';\n\n var cache = {};\n var letterSpacing = style.letterSpacing;\n var whiteSpace = style.whiteSpace;\n\n // How to handle whitespaces\n var collapseSpaces = TextMetrics.collapseSpaces(whiteSpace);\n var collapseNewlines = TextMetrics.collapseNewlines(whiteSpace);\n\n // whether or not spaces may be added to the beginning of lines\n var canPrependSpaces = !collapseSpaces;\n\n // There is letterSpacing after every char except the last one\n // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!\n // so for convenience the above needs to be compared to width + 1 extra letterSpace\n // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!_\n // ________________________________________________\n // And then the final space is simply no appended to each line\n var wordWrapWidth = style.wordWrapWidth + letterSpacing;\n\n // break text into words, spaces and newline chars\n var tokens = TextMetrics.tokenize(text);\n\n for (var i = 0; i < tokens.length; i++)\n {\n // get the word, space or newlineChar\n var token = tokens[i];\n\n // if word is a new line\n if (TextMetrics.isNewline(token))\n {\n // keep the new line\n if (!collapseNewlines)\n {\n lines += TextMetrics.addLine(line);\n canPrependSpaces = !collapseSpaces;\n line = '';\n width = 0;\n continue;\n }\n\n // if we should collapse new lines\n // we simply convert it into a space\n token = ' ';\n }\n\n // if we should collapse repeated whitespaces\n if (collapseSpaces)\n {\n // check both this and the last tokens for spaces\n var currIsBreakingSpace = TextMetrics.isBreakingSpace(token);\n var lastIsBreakingSpace = TextMetrics.isBreakingSpace(line[line.length - 1]);\n\n if (currIsBreakingSpace && lastIsBreakingSpace)\n {\n continue;\n }\n }\n\n // get word width from cache if possible\n var tokenWidth = TextMetrics.getFromCache(token, letterSpacing, cache, context);\n\n // word is longer than desired bounds\n if (tokenWidth > wordWrapWidth)\n {\n // if we are not already at the beginning of a line\n if (line !== '')\n {\n // start newlines for overflow words\n lines += TextMetrics.addLine(line);\n line = '';\n width = 0;\n }\n\n // break large word over multiple lines\n if (TextMetrics.canBreakWords(token, style.breakWords))\n {\n // break word into characters\n var characters = token.split('');\n\n // loop the characters\n for (var j = 0; j < characters.length; j++)\n {\n var char = characters[j];\n\n var k = 1;\n // we are not at the end of the token\n\n while (characters[j + k])\n {\n var nextChar = characters[j + k];\n var lastChar = char[char.length - 1];\n\n // should not split chars\n if (!TextMetrics.canBreakChars(lastChar, nextChar, token, j, style.breakWords))\n {\n // combine chars & move forward one\n char += nextChar;\n }\n else\n {\n break;\n }\n\n k++;\n }\n\n j += char.length - 1;\n\n var characterWidth = TextMetrics.getFromCache(char, letterSpacing, cache, context);\n\n if (characterWidth + width > wordWrapWidth)\n {\n lines += TextMetrics.addLine(line);\n canPrependSpaces = false;\n line = '';\n width = 0;\n }\n\n line += char;\n width += characterWidth;\n }\n }\n\n // run word out of the bounds\n else\n {\n // if there are words in this line already\n // finish that line and start a new one\n if (line.length > 0)\n {\n lines += TextMetrics.addLine(line);\n line = '';\n width = 0;\n }\n\n var isLastToken = i === tokens.length - 1;\n\n // give it its own line if it's not the end\n lines += TextMetrics.addLine(token, !isLastToken);\n canPrependSpaces = false;\n line = '';\n width = 0;\n }\n }\n\n // word could fit\n else\n {\n // word won't fit because of existing words\n // start a new line\n if (tokenWidth + width > wordWrapWidth)\n {\n // if its a space we don't want it\n canPrependSpaces = false;\n\n // add a new line\n lines += TextMetrics.addLine(line);\n\n // start a new line\n line = '';\n width = 0;\n }\n\n // don't add spaces to the beginning of lines\n if (line.length > 0 || !TextMetrics.isBreakingSpace(token) || canPrependSpaces)\n {\n // add the word to the current line\n line += token;\n\n // update width counter\n width += tokenWidth;\n }\n }\n }\n\n lines += TextMetrics.addLine(line, false);\n\n return lines;\n};\n\n/**\n * Convienience function for logging each line added during the wordWrap\n * method\n *\n * @private\n * @param {string} line - The line of text to add\n * @param {boolean} newLine - Add new line character to end\n * @return {string} A formatted line\n */\nTextMetrics.addLine = function addLine (line, newLine)\n{\n if ( newLine === void 0 ) newLine = true;\n\n line = TextMetrics.trimRight(line);\n\n line = (newLine) ? (line + \"\\n\") : line;\n\n return line;\n};\n\n/**\n * Gets & sets the widths of calculated characters in a cache object\n *\n * @private\n * @param {string} key The key\n * @param {number} letterSpacing The letter spacing\n * @param {object} cache The cache\n * @param {CanvasRenderingContext2D} context The canvas context\n * @return {number} The from cache.\n */\nTextMetrics.getFromCache = function getFromCache (key, letterSpacing, cache, context)\n{\n var width = cache[key];\n\n if (width === undefined)\n {\n var spacing = ((key.length) * letterSpacing);\n\n width = context.measureText(key).width + spacing;\n cache[key] = width;\n }\n\n return width;\n};\n\n/**\n * Determines whether we should collapse breaking spaces\n *\n * @private\n * @param {string} whiteSpace The TextStyle property whiteSpace\n * @return {boolean} should collapse\n */\nTextMetrics.collapseSpaces = function collapseSpaces (whiteSpace)\n{\n return (whiteSpace === 'normal' || whiteSpace === 'pre-line');\n};\n\n/**\n * Determines whether we should collapse newLine chars\n *\n * @private\n * @param {string} whiteSpace The white space\n * @return {boolean} should collapse\n */\nTextMetrics.collapseNewlines = function collapseNewlines (whiteSpace)\n{\n return (whiteSpace === 'normal');\n};\n\n/**\n * trims breaking whitespaces from string\n *\n * @private\n * @param {string} text The text\n * @return {string} trimmed string\n */\nTextMetrics.trimRight = function trimRight (text)\n{\n if (typeof text !== 'string')\n {\n return '';\n }\n\n for (var i = text.length - 1; i >= 0; i--)\n {\n var char = text[i];\n\n if (!TextMetrics.isBreakingSpace(char))\n {\n break;\n }\n\n text = text.slice(0, -1);\n }\n\n return text;\n};\n\n/**\n * Determines if char is a newline.\n *\n * @private\n * @param {string} char The character\n * @return {boolean} True if newline, False otherwise.\n */\nTextMetrics.isNewline = function isNewline (char)\n{\n if (typeof char !== 'string')\n {\n return false;\n }\n\n return (TextMetrics._newlines.indexOf(char.charCodeAt(0)) >= 0);\n};\n\n/**\n * Determines if char is a breaking whitespace.\n *\n * @private\n * @param {string} char The character\n * @return {boolean} True if whitespace, False otherwise.\n */\nTextMetrics.isBreakingSpace = function isBreakingSpace (char)\n{\n if (typeof char !== 'string')\n {\n return false;\n }\n\n return (TextMetrics._breakingSpaces.indexOf(char.charCodeAt(0)) >= 0);\n};\n\n/**\n * Splits a string into words, breaking-spaces and newLine characters\n *\n * @private\n * @param {string} text The text\n * @return {string[]} A tokenized array\n */\nTextMetrics.tokenize = function tokenize (text)\n{\n var tokens = [];\n var token = '';\n\n if (typeof text !== 'string')\n {\n return tokens;\n }\n\n for (var i = 0; i < text.length; i++)\n {\n var char = text[i];\n\n if (TextMetrics.isBreakingSpace(char) || TextMetrics.isNewline(char))\n {\n if (token !== '')\n {\n tokens.push(token);\n token = '';\n }\n\n tokens.push(char);\n\n continue;\n }\n\n token += char;\n }\n\n if (token !== '')\n {\n tokens.push(token);\n }\n\n return tokens;\n};\n\n/**\n * This method exists to be easily overridden\n * It allows one to customise which words should break\n * Examples are if the token is CJK or numbers.\n * It must return a boolean.\n *\n * @private\n * @param {string} token The token\n * @param {boolean} breakWords The style attr break words\n * @return {boolean} whether to break word or not\n */\nTextMetrics.canBreakWords = function canBreakWords (token, breakWords)\n{\n return breakWords;\n};\n\n/**\n * This method exists to be easily overridden\n * It allows one to determine whether a pair of characters\n * should be broken by newlines\n * For example certain characters in CJK langs or numbers.\n * It must return a boolean.\n *\n * @private\n * @param {string} char The character\n * @param {string} nextChar The next character\n * @param {string} token The token/word the characters are from\n * @param {number} index The index in the token of the char\n * @param {boolean} breakWords The style attr break words\n * @return {boolean} whether to break word or not\n */\nTextMetrics.canBreakChars = function canBreakChars (char, nextChar, token, index, breakWords) // eslint-disable-line no-unused-vars\n{\n return true;\n};\n\n/**\n * Calculates the ascent, descent and fontSize of a given font-style\n *\n * @static\n * @param {string} font - String representing the style of the font\n * @return {PIXI.IFontMetrics} Font properties object\n */\nTextMetrics.measureFont = function measureFont (font)\n{\n // as this method is used for preparing assets, don't recalculate things if we don't need to\n if (TextMetrics._fonts[font])\n {\n return TextMetrics._fonts[font];\n }\n\n var properties = {};\n\n var canvas = TextMetrics._canvas;\n var context = TextMetrics._context;\n\n context.font = font;\n\n var metricsString = TextMetrics.METRICS_STRING + TextMetrics.BASELINE_SYMBOL;\n var width = Math.ceil(context.measureText(metricsString).width);\n var baseline = Math.ceil(context.measureText(TextMetrics.BASELINE_SYMBOL).width);\n var height = 2 * baseline;\n\n baseline = baseline * TextMetrics.BASELINE_MULTIPLIER | 0;\n\n canvas.width = width;\n canvas.height = height;\n\n context.fillStyle = '#f00';\n context.fillRect(0, 0, width, height);\n\n context.font = font;\n\n context.textBaseline = 'alphabetic';\n context.fillStyle = '#000';\n context.fillText(metricsString, 0, baseline);\n\n var imagedata = context.getImageData(0, 0, width, height).data;\n var pixels = imagedata.length;\n var line = width * 4;\n\n var i = 0;\n var idx = 0;\n var stop = false;\n\n // ascent. scan from top to bottom until we find a non red pixel\n for (i = 0; i < baseline; ++i)\n {\n for (var j = 0; j < line; j += 4)\n {\n if (imagedata[idx + j] !== 255)\n {\n stop = true;\n break;\n }\n }\n if (!stop)\n {\n idx += line;\n }\n else\n {\n break;\n }\n }\n\n properties.ascent = baseline - i;\n\n idx = pixels - line;\n stop = false;\n\n // descent. scan from bottom to top until we find a non red pixel\n for (i = height; i > baseline; --i)\n {\n for (var j$1 = 0; j$1 < line; j$1 += 4)\n {\n if (imagedata[idx + j$1] !== 255)\n {\n stop = true;\n break;\n }\n }\n\n if (!stop)\n {\n idx -= line;\n }\n else\n {\n break;\n }\n }\n\n properties.descent = i - baseline;\n properties.fontSize = properties.ascent + properties.descent;\n\n TextMetrics._fonts[font] = properties;\n\n return properties;\n};\n\n/**\n * Clear font metrics in metrics cache.\n *\n * @static\n * @param {string} [font] - font name. If font name not set then clear cache for all fonts.\n */\nTextMetrics.clearMetrics = function clearMetrics (font)\n{\n if ( font === void 0 ) font = '';\n\n if (font)\n {\n delete TextMetrics._fonts[font];\n }\n else\n {\n TextMetrics._fonts = {};\n }\n};\n\n/**\n * Internal return object for {@link PIXI.TextMetrics.measureFont `TextMetrics.measureFont`}.\n *\n * @typedef {object} FontMetrics\n * @property {number} ascent - The ascent distance\n * @property {number} descent - The descent distance\n * @property {number} fontSize - Font size from ascent to descent\n * @memberof PIXI.TextMetrics\n * @private\n */\n\nvar canvas = (function () {\n try\n {\n // OffscreenCanvas2D measureText can be up to 40% faster.\n var c = new OffscreenCanvas(0, 0);\n\n return c.getContext('2d') ? c : document.createElement('canvas');\n }\n catch (ex)\n {\n return document.createElement('canvas');\n }\n})();\n\ncanvas.width = canvas.height = 10;\n\n/**\n * Cached canvas element for measuring text\n *\n * @memberof PIXI.TextMetrics\n * @type {HTMLCanvasElement}\n * @private\n */\nTextMetrics._canvas = canvas;\n\n/**\n * Cache for context to use.\n *\n * @memberof PIXI.TextMetrics\n * @type {CanvasRenderingContext2D}\n * @private\n */\nTextMetrics._context = canvas.getContext('2d');\n\n/**\n * Cache of {@see PIXI.TextMetrics.FontMetrics} objects.\n *\n * @memberof PIXI.TextMetrics\n * @type {Object}\n * @private\n */\nTextMetrics._fonts = {};\n\n/**\n * String used for calculate font metrics.\n * These characters are all tall to help calculate the height required for text.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name METRICS_STRING\n * @type {string}\n * @default |ÉqÅ\n */\nTextMetrics.METRICS_STRING = '|ÉqÅ';\n\n/**\n * Baseline symbol for calculate font metrics.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name BASELINE_SYMBOL\n * @type {string}\n * @default M\n */\nTextMetrics.BASELINE_SYMBOL = 'M';\n\n/**\n * Baseline multiplier for calculate font metrics.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name BASELINE_MULTIPLIER\n * @type {number}\n * @default 1.4\n */\nTextMetrics.BASELINE_MULTIPLIER = 1.4;\n\n/**\n * Cache of new line chars.\n *\n * @memberof PIXI.TextMetrics\n * @type {number[]}\n * @private\n */\nTextMetrics._newlines = [\n 0x000A, // line feed\n 0x000D ];\n\n/**\n * Cache of breaking spaces.\n *\n * @memberof PIXI.TextMetrics\n * @type {number[]}\n * @private\n */\nTextMetrics._breakingSpaces = [\n 0x0009, // character tabulation\n 0x0020, // space\n 0x2000, // en quad\n 0x2001, // em quad\n 0x2002, // en space\n 0x2003, // em space\n 0x2004, // three-per-em space\n 0x2005, // four-per-em space\n 0x2006, // six-per-em space\n 0x2008, // punctuation space\n 0x2009, // thin space\n 0x200A, // hair space\n 0x205F, // medium mathematical space\n 0x3000 ];\n\n/**\n * A number, or a string containing a number.\n *\n * @memberof PIXI\n * @typedef IFontMetrics\n * @property {number} ascent - Font ascent\n * @property {number} descent - Font descent\n * @property {number} fontSize - Font size\n */\n\n/* eslint max-depth: [2, 8] */\n\nvar defaultDestroyOptions = {\n texture: true,\n children: false,\n baseTexture: true,\n};\n\n/**\n * A Text Object will create a line or multiple lines of text.\n *\n * The text is created using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API).\n *\n * The primary advantage of this class over BitmapText is that you have great control over the style of the next,\n * which you can change at runtime.\n *\n * The primary disadvantages is that each piece of text has it's own texture, which can use more memory.\n * When text changes, this texture has to be re-generated and re-uploaded to the GPU, taking up time.\n *\n * To split a line you can use '\\n' in your text string, or, on the `style` object,\n * change its `wordWrap` property to true and and give the `wordWrapWidth` property a value.\n *\n * A Text can be created directly from a string and a style object,\n * which can be generated [here](https://pixijs.io/pixi-text-style).\n *\n * ```js\n * let text = new PIXI.Text('This is a PixiJS text',{fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'});\n * ```\n *\n * @class\n * @extends PIXI.Sprite\n * @memberof PIXI\n */\nvar Text = /*@__PURE__*/(function (Sprite) {\n function Text(text, style, canvas)\n {\n canvas = canvas || document.createElement('canvas');\n\n canvas.width = 3;\n canvas.height = 3;\n\n var texture = Texture.from(canvas);\n\n texture.orig = new Rectangle();\n texture.trim = new Rectangle();\n\n Sprite.call(this, texture);\n\n /**\n * The canvas element that everything is drawn to\n *\n * @member {HTMLCanvasElement}\n */\n this.canvas = canvas;\n\n /**\n * The canvas 2d context that everything is drawn with\n * @member {CanvasRenderingContext2D}\n */\n this.context = this.canvas.getContext('2d');\n\n /**\n * The resolution / device pixel ratio of the canvas.\n * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually.\n * @member {number}\n * @default 1\n */\n this._resolution = settings.RESOLUTION;\n this._autoResolution = true;\n\n /**\n * Private tracker for the current text.\n *\n * @member {string}\n * @private\n */\n this._text = null;\n\n /**\n * Private tracker for the current style.\n *\n * @member {object}\n * @private\n */\n this._style = null;\n /**\n * Private listener to track style changes.\n *\n * @member {Function}\n * @private\n */\n this._styleListener = null;\n\n /**\n * Private tracker for the current font.\n *\n * @member {string}\n * @private\n */\n this._font = '';\n\n this.text = text;\n this.style = style;\n\n this.localStyleID = -1;\n }\n\n if ( Sprite ) Text.__proto__ = Sprite;\n Text.prototype = Object.create( Sprite && Sprite.prototype );\n Text.prototype.constructor = Text;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true },style: { configurable: true },text: { configurable: true },resolution: { configurable: true } };\n\n /**\n * Renders text and updates it when needed.\n *\n * @private\n * @param {boolean} respectDirty - Whether to abort updating the text if the Text isn't dirty and the function is called.\n */\n Text.prototype.updateText = function updateText (respectDirty)\n {\n var style = this._style;\n\n // check if style has changed..\n if (this.localStyleID !== style.styleID)\n {\n this.dirty = true;\n this.localStyleID = style.styleID;\n }\n\n if (!this.dirty && respectDirty)\n {\n return;\n }\n\n this._font = this._style.toFontString();\n\n var context = this.context;\n var measured = TextMetrics.measureText(this._text || ' ', this._style, this._style.wordWrap, this.canvas);\n var width = measured.width;\n var height = measured.height;\n var lines = measured.lines;\n var lineHeight = measured.lineHeight;\n var lineWidths = measured.lineWidths;\n var maxLineWidth = measured.maxLineWidth;\n var fontProperties = measured.fontProperties;\n\n this.canvas.width = Math.ceil((Math.max(1, width) + (style.padding * 2)) * this._resolution);\n this.canvas.height = Math.ceil((Math.max(1, height) + (style.padding * 2)) * this._resolution);\n\n context.scale(this._resolution, this._resolution);\n\n context.clearRect(0, 0, this.canvas.width, this.canvas.height);\n\n context.font = this._font;\n context.lineWidth = style.strokeThickness;\n context.textBaseline = style.textBaseline;\n context.lineJoin = style.lineJoin;\n context.miterLimit = style.miterLimit;\n\n var linePositionX;\n var linePositionY;\n\n // require 2 passes if a shadow; the first to draw the drop shadow, the second to draw the text\n var passesCount = style.dropShadow ? 2 : 1;\n\n // For v4, we drew text at the colours of the drop shadow underneath the normal text. This gave the correct zIndex,\n // but features such as alpha and shadowblur did not look right at all, since we were using actual text as a shadow.\n //\n // For v5.0.0, we moved over to just use the canvas API for drop shadows, which made them look much nicer and more\n // visually please, but now because the stroke is drawn and then the fill, drop shadows would appear on both the fill\n // and the stroke; and fill drop shadows would appear over the top of the stroke.\n //\n // For v5.1.1, the new route is to revert to v4 style of drawing text first to get the drop shadows underneath normal\n // text, but instead drawing text in the correct location, we'll draw it off screen (-paddingY), and then adjust the\n // drop shadow so only that appears on screen (+paddingY). Now we'll have the correct draw order of the shadow\n // beneath the text, whilst also having the proper text shadow styling.\n for (var i = 0; i < passesCount; ++i)\n {\n var isShadowPass = style.dropShadow && i === 0;\n var dsOffsetText = isShadowPass ? height * 2 : 0; // we only want the drop shadow, so put text way off-screen\n var dsOffsetShadow = dsOffsetText * this.resolution;\n\n if (isShadowPass)\n {\n // On Safari, text with gradient and drop shadows together do not position correctly\n // if the scale of the canvas is not 1: https://bugs.webkit.org/show_bug.cgi?id=197689\n // Therefore we'll set the styles to be a plain black whilst generating this drop shadow\n context.fillStyle = 'black';\n context.strokeStyle = 'black';\n\n var dropShadowColor = style.dropShadowColor;\n var rgb = hex2rgb(typeof dropShadowColor === 'number' ? dropShadowColor : string2hex(dropShadowColor));\n\n context.shadowColor = \"rgba(\" + (rgb[0] * 255) + \",\" + (rgb[1] * 255) + \",\" + (rgb[2] * 255) + \",\" + (style.dropShadowAlpha) + \")\";\n context.shadowBlur = style.dropShadowBlur;\n context.shadowOffsetX = Math.cos(style.dropShadowAngle) * style.dropShadowDistance;\n context.shadowOffsetY = (Math.sin(style.dropShadowAngle) * style.dropShadowDistance) + dsOffsetShadow;\n }\n else\n {\n // set canvas text styles\n context.fillStyle = this._generateFillStyle(style, lines);\n context.strokeStyle = style.stroke;\n\n context.shadowColor = 0;\n context.shadowBlur = 0;\n context.shadowOffsetX = 0;\n context.shadowOffsetY = 0;\n }\n\n // draw lines line by line\n for (var i$1 = 0; i$1 < lines.length; i$1++)\n {\n linePositionX = style.strokeThickness / 2;\n linePositionY = ((style.strokeThickness / 2) + (i$1 * lineHeight)) + fontProperties.ascent;\n\n if (style.align === 'right')\n {\n linePositionX += maxLineWidth - lineWidths[i$1];\n }\n else if (style.align === 'center')\n {\n linePositionX += (maxLineWidth - lineWidths[i$1]) / 2;\n }\n\n if (style.stroke && style.strokeThickness)\n {\n this.drawLetterSpacing(\n lines[i$1],\n linePositionX + style.padding,\n linePositionY + style.padding - dsOffsetText,\n true\n );\n }\n\n if (style.fill)\n {\n this.drawLetterSpacing(\n lines[i$1],\n linePositionX + style.padding,\n linePositionY + style.padding - dsOffsetText\n );\n }\n }\n }\n\n this.updateTexture();\n };\n\n /**\n * Render the text with letter-spacing.\n * @param {string} text - The text to draw\n * @param {number} x - Horizontal position to draw the text\n * @param {number} y - Vertical position to draw the text\n * @param {boolean} [isStroke=false] - Is this drawing for the outside stroke of the\n * text? If not, it's for the inside fill\n * @private\n */\n Text.prototype.drawLetterSpacing = function drawLetterSpacing (text, x, y, isStroke)\n {\n if ( isStroke === void 0 ) isStroke = false;\n\n var style = this._style;\n\n // letterSpacing of 0 means normal\n var letterSpacing = style.letterSpacing;\n\n if (letterSpacing === 0)\n {\n if (isStroke)\n {\n this.context.strokeText(text, x, y);\n }\n else\n {\n this.context.fillText(text, x, y);\n }\n\n return;\n }\n\n var currentPosition = x;\n\n // Using Array.from correctly splits characters whilst keeping emoji together.\n // This is not supported on IE as it requires ES6, so regular text splitting occurs.\n // This also doesn't account for emoji that are multiple emoji put together to make something else.\n // Handling all of this would require a big library itself.\n // https://medium.com/@giltayar/iterating-over-emoji-characters-the-es6-way-f06e4589516\n // https://github.com/orling/grapheme-splitter\n var stringArray = Array.from ? Array.from(text) : text.split('');\n var previousWidth = this.context.measureText(text).width;\n var currentWidth = 0;\n\n for (var i = 0; i < stringArray.length; ++i)\n {\n var currentChar = stringArray[i];\n\n if (isStroke)\n {\n this.context.strokeText(currentChar, currentPosition, y);\n }\n else\n {\n this.context.fillText(currentChar, currentPosition, y);\n }\n currentWidth = this.context.measureText(text.substring(i + 1)).width;\n currentPosition += previousWidth - currentWidth + letterSpacing;\n previousWidth = currentWidth;\n }\n };\n\n /**\n * Updates texture size based on canvas size\n *\n * @private\n */\n Text.prototype.updateTexture = function updateTexture ()\n {\n var canvas = this.canvas;\n\n if (this._style.trim)\n {\n var trimmed = trimCanvas(canvas);\n\n if (trimmed.data)\n {\n canvas.width = trimmed.width;\n canvas.height = trimmed.height;\n this.context.putImageData(trimmed.data, 0, 0);\n }\n }\n\n var texture = this._texture;\n var style = this._style;\n var padding = style.trim ? 0 : style.padding;\n var baseTexture = texture.baseTexture;\n\n texture.trim.width = texture._frame.width = Math.ceil(canvas.width / this._resolution);\n texture.trim.height = texture._frame.height = Math.ceil(canvas.height / this._resolution);\n texture.trim.x = -padding;\n texture.trim.y = -padding;\n\n texture.orig.width = texture._frame.width - (padding * 2);\n texture.orig.height = texture._frame.height - (padding * 2);\n\n // call sprite onTextureUpdate to update scale if _width or _height were set\n this._onTextureUpdate();\n\n baseTexture.setRealSize(canvas.width, canvas.height, this._resolution);\n\n this.dirty = false;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @private\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Text.prototype._render = function _render (renderer)\n {\n if (this._autoResolution && this._resolution !== renderer.resolution)\n {\n this._resolution = renderer.resolution;\n this.dirty = true;\n }\n\n this.updateText(true);\n\n Sprite.prototype._render.call(this, renderer);\n };\n\n /**\n * Gets the local bounds of the text object.\n *\n * @param {PIXI.Rectangle} rect - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n Text.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n this.updateText(true);\n\n return Sprite.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * calculates the bounds of the Text as a rectangle. The bounds calculation takes the worldTransform into account.\n * @protected\n */\n Text.prototype._calculateBounds = function _calculateBounds ()\n {\n this.updateText(true);\n this.calculateVertices();\n // if we have already done this on THIS frame.\n this._bounds.addQuad(this.vertexData);\n };\n\n /**\n * Method to be called upon a TextStyle change.\n * @private\n */\n Text.prototype._onStyleChange = function _onStyleChange ()\n {\n this.dirty = true;\n };\n\n /**\n * Generates the fill style. Can automatically generate a gradient based on the fill style being an array\n *\n * @private\n * @param {object} style - The style.\n * @param {string[]} lines - The lines of text.\n * @return {string|number|CanvasGradient} The fill style\n */\n Text.prototype._generateFillStyle = function _generateFillStyle (style, lines)\n {\n if (!Array.isArray(style.fill))\n {\n return style.fill;\n }\n else if (style.fill.length === 1)\n {\n return style.fill[0];\n }\n\n // the gradient will be evenly spaced out according to how large the array is.\n // ['#FF0000', '#00FF00', '#0000FF'] would created stops at 0.25, 0.5 and 0.75\n var gradient;\n var totalIterations;\n var currentIteration;\n var stop;\n\n var width = Math.ceil(this.canvas.width / this._resolution);\n var height = Math.ceil(this.canvas.height / this._resolution);\n\n // make a copy of the style settings, so we can manipulate them later\n var fill = style.fill.slice();\n var fillGradientStops = style.fillGradientStops.slice();\n\n // wanting to evenly distribute the fills. So an array of 4 colours should give fills of 0.25, 0.5 and 0.75\n if (!fillGradientStops.length)\n {\n var lengthPlus1 = fill.length + 1;\n\n for (var i = 1; i < lengthPlus1; ++i)\n {\n fillGradientStops.push(i / lengthPlus1);\n }\n }\n\n // stop the bleeding of the last gradient on the line above to the top gradient of the this line\n // by hard defining the first gradient colour at point 0, and last gradient colour at point 1\n fill.unshift(style.fill[0]);\n fillGradientStops.unshift(0);\n\n fill.push(style.fill[style.fill.length - 1]);\n fillGradientStops.push(1);\n\n if (style.fillGradientType === TEXT_GRADIENT.LINEAR_VERTICAL)\n {\n // start the gradient at the top center of the canvas, and end at the bottom middle of the canvas\n gradient = this.context.createLinearGradient(width / 2, 0, width / 2, height);\n\n // we need to repeat the gradient so that each individual line of text has the same vertical gradient effect\n // ['#FF0000', '#00FF00', '#0000FF'] over 2 lines would create stops at 0.125, 0.25, 0.375, 0.625, 0.75, 0.875\n totalIterations = (fill.length + 1) * lines.length;\n currentIteration = 0;\n for (var i$1 = 0; i$1 < lines.length; i$1++)\n {\n currentIteration += 1;\n for (var j = 0; j < fill.length; j++)\n {\n if (typeof fillGradientStops[j] === 'number')\n {\n stop = (fillGradientStops[j] / lines.length) + (i$1 / lines.length);\n }\n else\n {\n stop = currentIteration / totalIterations;\n }\n gradient.addColorStop(stop, fill[j]);\n currentIteration++;\n }\n }\n }\n else\n {\n // start the gradient at the center left of the canvas, and end at the center right of the canvas\n gradient = this.context.createLinearGradient(0, height / 2, width, height / 2);\n\n // can just evenly space out the gradients in this case, as multiple lines makes no difference\n // to an even left to right gradient\n totalIterations = fill.length + 1;\n currentIteration = 1;\n\n for (var i$2 = 0; i$2 < fill.length; i$2++)\n {\n if (typeof fillGradientStops[i$2] === 'number')\n {\n stop = fillGradientStops[i$2];\n }\n else\n {\n stop = currentIteration / totalIterations;\n }\n gradient.addColorStop(stop, fill[i$2]);\n currentIteration++;\n }\n }\n\n return gradient;\n };\n\n /**\n * Destroys this text object.\n * Note* Unlike a Sprite, a Text object will automatically destroy its baseTexture and texture as\n * the majority of the time the texture will not be shared with any other Sprites.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their\n * destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=true] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=true] - Should it destroy the base texture of the sprite as well\n */\n Text.prototype.destroy = function destroy (options)\n {\n if (typeof options === 'boolean')\n {\n options = { children: options };\n }\n\n options = Object.assign({}, defaultDestroyOptions, options);\n\n Sprite.prototype.destroy.call(this, options);\n\n // make sure to reset the the context and canvas.. dont want this hanging around in memory!\n this.context = null;\n this.canvas = null;\n\n this._style = null;\n };\n\n /**\n * The width of the Text, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n this.updateText(true);\n\n return Math.abs(this.scale.x) * this._texture.orig.width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.updateText(true);\n\n var s = sign(this.scale.x) || 1;\n\n this.scale.x = s * value / this._texture.orig.width;\n this._width = value;\n };\n\n /**\n * The height of the Text, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n this.updateText(true);\n\n return Math.abs(this.scale.y) * this._texture.orig.height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.updateText(true);\n\n var s = sign(this.scale.y) || 1;\n\n this.scale.y = s * value / this._texture.orig.height;\n this._height = value;\n };\n\n /**\n * Set the style of the text. Set up an event listener to listen for changes on the style\n * object and mark the text as dirty.\n *\n * @member {object|PIXI.TextStyle}\n */\n prototypeAccessors.style.get = function ()\n {\n return this._style;\n };\n\n prototypeAccessors.style.set = function (style) // eslint-disable-line require-jsdoc\n {\n style = style || {};\n\n if (style instanceof TextStyle)\n {\n this._style = style;\n }\n else\n {\n this._style = new TextStyle(style);\n }\n\n this.localStyleID = -1;\n this.dirty = true;\n };\n\n /**\n * Set the copy for the text object. To split a line you can use '\\n'.\n *\n * @member {string}\n */\n prototypeAccessors.text.get = function ()\n {\n return this._text;\n };\n\n prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc\n {\n text = String(text === null || text === undefined ? '' : text);\n\n if (this._text === text)\n {\n return;\n }\n this._text = text;\n this.dirty = true;\n };\n\n /**\n * The resolution / device pixel ratio of the canvas.\n * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually.\n * @member {number}\n * @default 1\n */\n prototypeAccessors.resolution.get = function ()\n {\n return this._resolution;\n };\n\n prototypeAccessors.resolution.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._autoResolution = false;\n\n if (this._resolution === value)\n {\n return;\n }\n\n this._resolution = value;\n this.dirty = true;\n };\n\n Object.defineProperties( Text.prototype, prototypeAccessors );\n\n return Text;\n}(Sprite));\n\nexport { TEXT_GRADIENT, Text, TextMetrics, TextStyle };\n//# sourceMappingURL=text.es.js.map\n","/*!\n * @pixi/prepare - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/prepare is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nimport { Texture, BaseTexture } from '@pixi/core';\nimport { Graphics } from '@pixi/graphics';\nimport { Ticker, UPDATE_PRIORITY } from '@pixi/ticker';\nimport { Container } from '@pixi/display';\nimport { Text, TextStyle, TextMetrics } from '@pixi/text';\n\n/**\n * Default number of uploads per frame using prepare plugin.\n *\n * @static\n * @memberof PIXI.settings\n * @name UPLOADS_PER_FRAME\n * @type {number}\n * @default 4\n */\nsettings.UPLOADS_PER_FRAME = 4;\n\n/**\n * CountLimiter limits the number of items handled by a {@link PIXI.prepare.BasePrepare} to a specified\n * number of items per frame.\n *\n * @class\n * @memberof PIXI.prepare\n */\nvar CountLimiter = function CountLimiter(maxItemsPerFrame)\n{\n /**\n * The maximum number of items that can be prepared each frame.\n * @type {number}\n * @private\n */\n this.maxItemsPerFrame = maxItemsPerFrame;\n /**\n * The number of items that can be prepared in the current frame.\n * @type {number}\n * @private\n */\n this.itemsLeft = 0;\n};\n\n/**\n * Resets any counting properties to start fresh on a new frame.\n */\nCountLimiter.prototype.beginFrame = function beginFrame ()\n{\n this.itemsLeft = this.maxItemsPerFrame;\n};\n\n/**\n * Checks to see if another item can be uploaded. This should only be called once per item.\n * @return {boolean} If the item is allowed to be uploaded.\n */\nCountLimiter.prototype.allowedToUpload = function allowedToUpload ()\n{\n return this.itemsLeft-- > 0;\n};\n\n/**\n * The prepare manager provides functionality to upload content to the GPU.\n *\n * BasePrepare handles basic queuing functionality and is extended by\n * {@link PIXI.prepare.Prepare} and {@link PIXI.prepare.CanvasPrepare}\n * to provide preparation capabilities specific to their respective renderers.\n *\n * @example\n * // Create a sprite\n * const sprite = PIXI.Sprite.from('something.png');\n *\n * // Load object into GPU\n * app.renderer.plugins.prepare.upload(sprite, () => {\n *\n * //Texture(s) has been uploaded to GPU\n * app.stage.addChild(sprite);\n *\n * })\n *\n * @abstract\n * @class\n * @memberof PIXI.prepare\n */\nvar BasePrepare = function BasePrepare(renderer)\n{\n var this$1 = this;\n\n /**\n * The limiter to be used to control how quickly items are prepared.\n * @type {PIXI.prepare.CountLimiter|PIXI.prepare.TimeLimiter}\n */\n this.limiter = new CountLimiter(settings.UPLOADS_PER_FRAME);\n\n /**\n * Reference to the renderer.\n * @type {PIXI.AbstractRenderer}\n * @protected\n */\n this.renderer = renderer;\n\n /**\n * The only real difference between CanvasPrepare and Prepare is what they pass\n * to upload hooks. That different parameter is stored here.\n * @type {PIXI.prepare.CanvasPrepare|PIXI.Renderer}\n * @protected\n */\n this.uploadHookHelper = null;\n\n /**\n * Collection of items to uploads at once.\n * @type {Array<*>}\n * @private\n */\n this.queue = [];\n\n /**\n * Collection of additional hooks for finding assets.\n * @type {Array}\n * @private\n */\n this.addHooks = [];\n\n /**\n * Collection of additional hooks for processing assets.\n * @type {Array}\n * @private\n */\n this.uploadHooks = [];\n\n /**\n * Callback to call after completed.\n * @type {Array}\n * @private\n */\n this.completes = [];\n\n /**\n * If prepare is ticking (running).\n * @type {boolean}\n * @private\n */\n this.ticking = false;\n\n /**\n * 'bound' call for prepareItems().\n * @type {Function}\n * @private\n */\n this.delayedTick = function () {\n // unlikely, but in case we were destroyed between tick() and delayedTick()\n if (!this$1.queue)\n {\n return;\n }\n this$1.prepareItems();\n };\n\n // hooks to find the correct texture\n this.registerFindHook(findText);\n this.registerFindHook(findTextStyle);\n this.registerFindHook(findMultipleBaseTextures);\n this.registerFindHook(findBaseTexture);\n this.registerFindHook(findTexture);\n\n // upload hooks\n this.registerUploadHook(drawText);\n this.registerUploadHook(calculateTextStyle);\n};\n\n/**\n * Upload all the textures and graphics to the GPU.\n *\n * @param {Function|PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text} item -\n * Either the container or display object to search for items to upload, the items to upload themselves,\n * or the callback function, if items have been added using `prepare.add`.\n * @param {Function} [done] - Optional callback when all queued uploads have completed\n */\nBasePrepare.prototype.upload = function upload (item, done)\n{\n if (typeof item === 'function')\n {\n done = item;\n item = null;\n }\n\n // If a display object, search for items\n // that we could upload\n if (item)\n {\n this.add(item);\n }\n\n // Get the items for upload from the display\n if (this.queue.length)\n {\n if (done)\n {\n this.completes.push(done);\n }\n\n if (!this.ticking)\n {\n this.ticking = true;\n Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY);\n }\n }\n else if (done)\n {\n done();\n }\n};\n\n/**\n * Handle tick update\n *\n * @private\n */\nBasePrepare.prototype.tick = function tick ()\n{\n setTimeout(this.delayedTick, 0);\n};\n\n/**\n * Actually prepare items. This is handled outside of the tick because it will take a while\n * and we do NOT want to block the current animation frame from rendering.\n *\n * @private\n */\nBasePrepare.prototype.prepareItems = function prepareItems ()\n{\n this.limiter.beginFrame();\n // Upload the graphics\n while (this.queue.length && this.limiter.allowedToUpload())\n {\n var item = this.queue[0];\n var uploaded = false;\n\n if (item && !item._destroyed)\n {\n for (var i = 0, len = this.uploadHooks.length; i < len; i++)\n {\n if (this.uploadHooks[i](this.uploadHookHelper, item))\n {\n this.queue.shift();\n uploaded = true;\n break;\n }\n }\n }\n\n if (!uploaded)\n {\n this.queue.shift();\n }\n }\n\n // We're finished\n if (!this.queue.length)\n {\n this.ticking = false;\n\n var completes = this.completes.slice(0);\n\n this.completes.length = 0;\n\n for (var i$1 = 0, len$1 = completes.length; i$1 < len$1; i$1++)\n {\n completes[i$1]();\n }\n }\n else\n {\n // if we are not finished, on the next rAF do this again\n Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY);\n }\n};\n\n/**\n * Adds hooks for finding items.\n *\n * @param {Function} addHook - Function call that takes two parameters: `item:*, queue:Array`\n * function must return `true` if it was able to add item to the queue.\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.registerFindHook = function registerFindHook (addHook)\n{\n if (addHook)\n {\n this.addHooks.push(addHook);\n }\n\n return this;\n};\n\n/**\n * Adds hooks for uploading items.\n *\n * @param {Function} uploadHook - Function call that takes two parameters: `prepare:CanvasPrepare, item:*` and\n * function must return `true` if it was able to handle upload of item.\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.registerUploadHook = function registerUploadHook (uploadHook)\n{\n if (uploadHook)\n {\n this.uploadHooks.push(uploadHook);\n }\n\n return this;\n};\n\n/**\n * Manually add an item to the uploading queue.\n *\n * @param {PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text|*} item - Object to\n * add to the queue\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.add = function add (item)\n{\n // Add additional hooks for finding elements on special\n // types of objects that\n for (var i = 0, len = this.addHooks.length; i < len; i++)\n {\n if (this.addHooks[i](item, this.queue))\n {\n break;\n }\n }\n\n // Get children recursively\n if (item instanceof Container)\n {\n for (var i$1 = item.children.length - 1; i$1 >= 0; i$1--)\n {\n this.add(item.children[i$1]);\n }\n }\n\n return this;\n};\n\n/**\n * Destroys the plugin, don't use after this.\n *\n */\nBasePrepare.prototype.destroy = function destroy ()\n{\n if (this.ticking)\n {\n Ticker.system.remove(this.tick, this);\n }\n this.ticking = false;\n this.addHooks = null;\n this.uploadHooks = null;\n this.renderer = null;\n this.completes = null;\n this.queue = null;\n this.limiter = null;\n this.uploadHookHelper = null;\n};\n\n/**\n * Built-in hook to find multiple textures from objects like AnimatedSprites.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findMultipleBaseTextures(item, queue)\n{\n var result = false;\n\n // Objects with multiple textures\n if (item && item._textures && item._textures.length)\n {\n for (var i = 0; i < item._textures.length; i++)\n {\n if (item._textures[i] instanceof Texture)\n {\n var baseTexture = item._textures[i].baseTexture;\n\n if (queue.indexOf(baseTexture) === -1)\n {\n queue.push(baseTexture);\n result = true;\n }\n }\n }\n }\n\n return result;\n}\n\n/**\n * Built-in hook to find BaseTextures from Sprites.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findBaseTexture(item, queue)\n{\n // Objects with textures, like Sprites/Text\n if (item instanceof BaseTexture)\n {\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find textures from objects.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findTexture(item, queue)\n{\n if (item._texture && item._texture instanceof Texture)\n {\n var texture = item._texture.baseTexture;\n\n if (queue.indexOf(texture) === -1)\n {\n queue.push(texture);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to draw PIXI.Text to its texture.\n *\n * @private\n * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction drawText(helper, item)\n{\n if (item instanceof Text)\n {\n // updating text will return early if it is not dirty\n item.updateText(true);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to calculate a text style for a PIXI.Text object.\n *\n * @private\n * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction calculateTextStyle(helper, item)\n{\n if (item instanceof TextStyle)\n {\n var font = item.toFontString();\n\n TextMetrics.measureFont(font);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find Text objects.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Text object was found.\n */\nfunction findText(item, queue)\n{\n if (item instanceof Text)\n {\n // push the text style to prepare it - this can be really expensive\n if (queue.indexOf(item.style) === -1)\n {\n queue.push(item.style);\n }\n // also push the text object so that we can render it (to canvas/texture) if needed\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n // also push the Text's texture for upload to GPU\n var texture = item._texture.baseTexture;\n\n if (queue.indexOf(texture) === -1)\n {\n queue.push(texture);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find TextStyle objects.\n *\n * @private\n * @param {PIXI.TextStyle} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.TextStyle object was found.\n */\nfunction findTextStyle(item, queue)\n{\n if (item instanceof TextStyle)\n {\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * The prepare manager provides functionality to upload content to the GPU.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.prepare`\n *\n * @class\n * @extends PIXI.prepare.BasePrepare\n * @memberof PIXI.prepare\n */\nvar Prepare = /*@__PURE__*/(function (BasePrepare) {\n function Prepare(renderer)\n {\n BasePrepare.call(this, renderer);\n\n this.uploadHookHelper = this.renderer;\n\n // Add textures and graphics to upload\n this.registerFindHook(findGraphics);\n this.registerUploadHook(uploadBaseTextures);\n this.registerUploadHook(uploadGraphics);\n }\n\n if ( BasePrepare ) Prepare.__proto__ = BasePrepare;\n Prepare.prototype = Object.create( BasePrepare && BasePrepare.prototype );\n Prepare.prototype.constructor = Prepare;\n\n return Prepare;\n}(BasePrepare));\n/**\n * Built-in hook to upload PIXI.Texture objects to the GPU.\n *\n * @private\n * @param {PIXI.Renderer} renderer - instance of the webgl renderer\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction uploadBaseTextures(renderer, item)\n{\n if (item instanceof BaseTexture)\n {\n // if the texture already has a GL texture, then the texture has been prepared or rendered\n // before now. If the texture changed, then the changer should be calling texture.update() which\n // reuploads the texture without need for preparing it again\n if (!item._glTextures[renderer.CONTEXT_UID])\n {\n renderer.texture.bind(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to upload PIXI.Graphics to the GPU.\n *\n * @private\n * @param {PIXI.Renderer} renderer - instance of the webgl renderer\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction uploadGraphics(renderer, item)\n{\n if (item instanceof Graphics)\n {\n // if the item is not dirty and already has webgl data, then it got prepared or rendered\n // before now and we shouldn't waste time updating it again\n if (item.dirty || item.clearDirty || !item._webGL[renderer.plugins.graphics.CONTEXT_UID])\n {\n renderer.plugins.graphics.updateGraphics(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find graphics.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Graphics object was found.\n */\nfunction findGraphics(item, queue)\n{\n if (item instanceof Graphics)\n {\n queue.push(item);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * TimeLimiter limits the number of items handled by a {@link PIXI.BasePrepare} to a specified\n * number of milliseconds per frame.\n *\n * @class\n * @memberof PIXI.prepare\n */\nvar TimeLimiter = function TimeLimiter(maxMilliseconds)\n{\n /**\n * The maximum milliseconds that can be spent preparing items each frame.\n * @type {number}\n * @private\n */\n this.maxMilliseconds = maxMilliseconds;\n /**\n * The start time of the current frame.\n * @type {number}\n * @private\n */\n this.frameStart = 0;\n};\n\n/**\n * Resets any counting properties to start fresh on a new frame.\n */\nTimeLimiter.prototype.beginFrame = function beginFrame ()\n{\n this.frameStart = Date.now();\n};\n\n/**\n * Checks to see if another item can be uploaded. This should only be called once per item.\n * @return {boolean} If the item is allowed to be uploaded.\n */\nTimeLimiter.prototype.allowedToUpload = function allowedToUpload ()\n{\n return Date.now() - this.frameStart < this.maxMilliseconds;\n};\n\n/**\n * The prepare namespace provides renderer-specific plugins for pre-rendering DisplayObjects. These plugins are useful for\n * asynchronously preparing and uploading to the GPU assets, textures, graphics waiting to be displayed.\n *\n * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @example\n * // Create a new application\n * const app = new PIXI.Application();\n * document.body.appendChild(app.view);\n *\n * // Don't start rendering right away\n * app.stop();\n *\n * // create a display object\n * const rect = new PIXI.Graphics()\n * .beginFill(0x00ff00)\n * .drawRect(40, 40, 200, 200);\n *\n * // Add to the stage\n * app.stage.addChild(rect);\n *\n * // Don't start rendering until the graphic is uploaded to the GPU\n * app.renderer.plugins.prepare.upload(app.stage, () => {\n * app.start();\n * });\n * @namespace PIXI.prepare\n */\n\nexport { BasePrepare, CountLimiter, Prepare, TimeLimiter };\n//# sourceMappingURL=prepare.es.js.map\n","/*!\n * @pixi/app - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/app is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Container } from '@pixi/display';\nimport { autoDetectRenderer } from '@pixi/core';\n\n/**\n * Convenience class to create a new PIXI application.\n *\n * This class automatically creates the renderer, ticker and root container.\n *\n * @example\n * // Create the application\n * const app = new PIXI.Application();\n *\n * // Add the view to the DOM\n * document.body.appendChild(app.view);\n *\n * // ex, add display objects\n * app.stage.addChild(PIXI.Sprite.from('something.png'));\n *\n * @class\n * @memberof PIXI\n */\nvar Application = function Application(options)\n{\n var this$1 = this;\n\n // The default options\n options = Object.assign({\n forceCanvas: false,\n }, options);\n\n /**\n * WebGL renderer if available, otherwise CanvasRenderer.\n * @member {PIXI.Renderer|PIXI.CanvasRenderer}\n */\n this.renderer = autoDetectRenderer(options);\n\n /**\n * The root display container that's rendered.\n * @member {PIXI.Container}\n */\n this.stage = new Container();\n\n // install plugins here\n Application._plugins.forEach(function (plugin) {\n plugin.init.call(this$1, options);\n });\n};\n\nvar prototypeAccessors = { view: { configurable: true },screen: { configurable: true } };\n\n/**\n * Register a middleware plugin for the application\n * @static\n * @param {PIXI.Application.Plugin} plugin - Plugin being installed\n */\nApplication.registerPlugin = function registerPlugin (plugin)\n{\n Application._plugins.push(plugin);\n};\n\n/**\n * Render the current stage.\n */\nApplication.prototype.render = function render ()\n{\n this.renderer.render(this.stage);\n};\n\n/**\n * Reference to the renderer's canvas element.\n * @member {HTMLCanvasElement}\n * @readonly\n */\nprototypeAccessors.view.get = function ()\n{\n return this.renderer.view;\n};\n\n/**\n * Reference to the renderer's screen rectangle. Its safe to use as `filterArea` or `hitArea` for the whole screen.\n * @member {PIXI.Rectangle}\n * @readonly\n */\nprototypeAccessors.screen.get = function ()\n{\n return this.renderer.screen;\n};\n\n/**\n * Destroy and don't use after this.\n * @param {Boolean} [removeView=false] Automatically remove canvas from DOM.\n * @param {object|boolean} [stageOptions] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [stageOptions.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'stageOptions' will be passed on to those calls.\n * @param {boolean} [stageOptions.texture=false] - Only used for child Sprites if stageOptions.children is set\n * to true. Should it destroy the texture of the child sprite\n * @param {boolean} [stageOptions.baseTexture=false] - Only used for child Sprites if stageOptions.children is set\n * to true. Should it destroy the base texture of the child sprite\n */\nApplication.prototype.destroy = function destroy (removeView, stageOptions)\n{\n var this$1 = this;\n\n // Destroy plugins in the opposite order\n // which they were constructed\n var plugins = Application._plugins.slice(0);\n\n plugins.reverse();\n plugins.forEach(function (plugin) {\n plugin.destroy.call(this$1);\n });\n\n this.stage.destroy(stageOptions);\n this.stage = null;\n\n this.renderer.destroy(removeView);\n this.renderer = null;\n\n this._options = null;\n};\n\nObject.defineProperties( Application.prototype, prototypeAccessors );\n\n/**\n * @memberof PIXI.Application\n * @typedef {object} Plugin\n * @property {function} init - Called when Application is constructed, scoped to Application instance.\n * Passes in `options` as the only argument, which are Application constructor options.\n * @property {function} destroy - Called when destroying Application, scoped to Application instance\n */\n\n/**\n * Collection of installed plugins.\n * @static\n * @private\n * @type {PIXI.Application.Plugin[]}\n */\nApplication._plugins = [];\n\n/**\n * Middleware for for Application's resize functionality\n * @private\n * @class\n */\nvar ResizePlugin = function ResizePlugin () {};\n\nResizePlugin.init = function init (options)\n{\n var this$1 = this;\n\n /**\n * The element or window to resize the application to.\n * @type {Window|HTMLElement}\n * @name resizeTo\n * @memberof PIXI.Application#\n */\n Object.defineProperty(this, 'resizeTo',\n {\n set: function set(dom)\n {\n window.removeEventListener('resize', this.resize);\n this._resizeTo = dom;\n if (dom)\n {\n window.addEventListener('resize', this.resize);\n this.resize();\n }\n },\n get: function get()\n {\n return this._resizeTo;\n },\n });\n\n /**\n * If `resizeTo` is set, calling this function\n * will resize to the width and height of that element.\n * @method PIXI.Application#resize\n */\n this.resize = function () {\n if (this$1._resizeTo)\n {\n // Resize to the window\n if (this$1._resizeTo === window)\n {\n this$1.renderer.resize(\n window.innerWidth,\n window.innerHeight\n );\n }\n // Resize to other HTML entities\n else\n {\n this$1.renderer.resize(\n this$1._resizeTo.clientWidth,\n this$1._resizeTo.clientHeight\n );\n }\n }\n };\n\n // On resize\n this._resizeTo = null;\n this.resizeTo = options.resizeTo || null;\n};\n\n/**\n * Clean up the ticker, scoped to application\n * @static\n * @private\n */\nResizePlugin.destroy = function destroy ()\n{\n this.resizeTo = null;\n this.resize = null;\n};\n\nApplication.registerPlugin(ResizePlugin);\n\nexport { Application };\n//# sourceMappingURL=app.es.js.map\n","'use strict'\n\nmodule.exports = function parseURI (str, opts) {\n opts = opts || {}\n\n var o = {\n key: ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'],\n q: {\n name: 'queryKey',\n parser: /(?:^|&)([^&=]*)=?([^&]*)/g\n },\n parser: {\n strict: /^(?:([^:\\/?#]+):)?(?:\\/\\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\\/?#]*)(?::(\\d*))?))?((((?:[^?#\\/]*\\/)*)([^?#]*))(?:\\?([^#]*))?(?:#(.*))?)/,\n loose: /^(?:(?![^:@]+:[^:@\\/]*@)([^:\\/?#.]+):)?(?:\\/\\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\\/?#]*)(?::(\\d*))?)(((\\/(?:[^?#](?![^?#\\/]*\\.[^?#\\/.]+(?:[?#]|$)))*\\/?)?([^?#\\/]*))(?:\\?([^#]*))?(?:#(.*))?)/\n }\n }\n\n var m = o.parser[opts.strictMode ? 'strict' : 'loose'].exec(str)\n var uri = {}\n var i = 14\n\n while (i--) uri[o.key[i]] = m[i] || ''\n\n uri[o.q.name] = {}\n uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) {\n if ($1) uri[o.q.name][$1] = $2\n })\n\n return uri\n}\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\n\nvar _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }\n\nvar MiniSignalBinding = (function () {\n function MiniSignalBinding(fn, once, thisArg) {\n if (once === undefined) once = false;\n\n _classCallCheck(this, MiniSignalBinding);\n\n this._fn = fn;\n this._once = once;\n this._thisArg = thisArg;\n this._next = this._prev = this._owner = null;\n }\n\n _createClass(MiniSignalBinding, [{\n key: 'detach',\n value: function detach() {\n if (this._owner === null) return false;\n this._owner.detach(this);\n return true;\n }\n }]);\n\n return MiniSignalBinding;\n})();\n\nfunction _addMiniSignalBinding(self, node) {\n if (!self._head) {\n self._head = node;\n self._tail = node;\n } else {\n self._tail._next = node;\n node._prev = self._tail;\n self._tail = node;\n }\n\n node._owner = self;\n\n return node;\n}\n\nvar MiniSignal = (function () {\n function MiniSignal() {\n _classCallCheck(this, MiniSignal);\n\n this._head = this._tail = undefined;\n }\n\n _createClass(MiniSignal, [{\n key: 'handlers',\n value: function handlers() {\n var exists = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0];\n\n var node = this._head;\n\n if (exists) return !!node;\n\n var ee = [];\n\n while (node) {\n ee.push(node);\n node = node._next;\n }\n\n return ee;\n }\n }, {\n key: 'has',\n value: function has(node) {\n if (!(node instanceof MiniSignalBinding)) {\n throw new Error('MiniSignal#has(): First arg must be a MiniSignalBinding object.');\n }\n\n return node._owner === this;\n }\n }, {\n key: 'dispatch',\n value: function dispatch() {\n var node = this._head;\n\n if (!node) return false;\n\n while (node) {\n if (node._once) this.detach(node);\n node._fn.apply(node._thisArg, arguments);\n node = node._next;\n }\n\n return true;\n }\n }, {\n key: 'add',\n value: function add(fn) {\n var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];\n\n if (typeof fn !== 'function') {\n throw new Error('MiniSignal#add(): First arg must be a Function.');\n }\n return _addMiniSignalBinding(this, new MiniSignalBinding(fn, false, thisArg));\n }\n }, {\n key: 'once',\n value: function once(fn) {\n var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];\n\n if (typeof fn !== 'function') {\n throw new Error('MiniSignal#once(): First arg must be a Function.');\n }\n return _addMiniSignalBinding(this, new MiniSignalBinding(fn, true, thisArg));\n }\n }, {\n key: 'detach',\n value: function detach(node) {\n if (!(node instanceof MiniSignalBinding)) {\n throw new Error('MiniSignal#detach(): First arg must be a MiniSignalBinding object.');\n }\n if (node._owner !== this) return this;\n\n if (node._prev) node._prev._next = node._next;\n if (node._next) node._next._prev = node._prev;\n\n if (node === this._head) {\n this._head = node._next;\n if (node._next === null) {\n this._tail = null;\n }\n } else if (node === this._tail) {\n this._tail = node._prev;\n this._tail._next = null;\n }\n\n node._owner = null;\n return this;\n }\n }, {\n key: 'detachAll',\n value: function detachAll() {\n var node = this._head;\n if (!node) return this;\n\n this._head = this._tail = null;\n\n while (node) {\n node._owner = null;\n node = node._next;\n }\n return this;\n }\n }]);\n\n return MiniSignal;\n})();\n\nMiniSignal.MiniSignalBinding = MiniSignalBinding;\n\nexports['default'] = MiniSignal;\nmodule.exports = exports['default'];\n","/*!\n * resource-loader - v3.0.1\n * https://github.com/pixijs/pixi-sound\n * Compiled Tue, 02 Jul 2019 14:06:18 UTC\n *\n * resource-loader is licensed under the MIT license.\n * http://www.opensource.org/licenses/mit-license\n */\nimport parseUri from 'parse-uri';\nimport Signal from 'mini-signals';\n\n/**\n * Smaller version of the async library constructs.\n *\n * @namespace async\n */\n\n/**\n * Noop function\n *\n * @ignore\n * @function\n * @memberof async\n */\nfunction _noop() {}\n/* empty */\n\n/**\n * Iterates an array in series.\n *\n * @memberof async\n * @function eachSeries\n * @param {Array.<*>} array - Array to iterate.\n * @param {function} iterator - Function to call for each element.\n * @param {function} callback - Function to call when done, or on error.\n * @param {boolean} [deferNext=false] - Break synchronous each loop by calling next with a setTimeout of 1.\n */\n\n\nfunction eachSeries(array, iterator, callback, deferNext) {\n var i = 0;\n var len = array.length;\n\n (function next(err) {\n if (err || i === len) {\n if (callback) {\n callback(err);\n }\n\n return;\n }\n\n if (deferNext) {\n setTimeout(function () {\n iterator(array[i++], next);\n }, 1);\n } else {\n iterator(array[i++], next);\n }\n })();\n}\n/**\n * Ensures a function is only called once.\n *\n * @ignore\n * @memberof async\n * @param {function} fn - The function to wrap.\n * @return {function} The wrapping function.\n */\n\nfunction onlyOnce(fn) {\n return function onceWrapper() {\n if (fn === null) {\n throw new Error('Callback was already called.');\n }\n\n var callFn = fn;\n fn = null;\n callFn.apply(this, arguments);\n };\n}\n/**\n * Async queue implementation,\n *\n * @memberof async\n * @function queue\n * @param {function} worker - The worker function to call for each task.\n * @param {number} concurrency - How many workers to run in parrallel.\n * @return {*} The async queue object.\n */\n\n\nfunction queue(worker, concurrency) {\n if (concurrency == null) {\n // eslint-disable-line no-eq-null,eqeqeq\n concurrency = 1;\n } else if (concurrency === 0) {\n throw new Error('Concurrency must not be zero');\n }\n\n var workers = 0;\n var q = {\n _tasks: [],\n concurrency: concurrency,\n saturated: _noop,\n unsaturated: _noop,\n buffer: concurrency / 4,\n empty: _noop,\n drain: _noop,\n error: _noop,\n started: false,\n paused: false,\n push: function push(data, callback) {\n _insert(data, false, callback);\n },\n kill: function kill() {\n workers = 0;\n q.drain = _noop;\n q.started = false;\n q._tasks = [];\n },\n unshift: function unshift(data, callback) {\n _insert(data, true, callback);\n },\n process: function process() {\n while (!q.paused && workers < q.concurrency && q._tasks.length) {\n var task = q._tasks.shift();\n\n if (q._tasks.length === 0) {\n q.empty();\n }\n\n workers += 1;\n\n if (workers === q.concurrency) {\n q.saturated();\n }\n\n worker(task.data, onlyOnce(_next(task)));\n }\n },\n length: function length() {\n return q._tasks.length;\n },\n running: function running() {\n return workers;\n },\n idle: function idle() {\n return q._tasks.length + workers === 0;\n },\n pause: function pause() {\n if (q.paused === true) {\n return;\n }\n\n q.paused = true;\n },\n resume: function resume() {\n if (q.paused === false) {\n return;\n }\n\n q.paused = false; // Need to call q.process once per concurrent\n // worker to preserve full concurrency after pause\n\n for (var w = 1; w <= q.concurrency; w++) {\n q.process();\n }\n }\n };\n\n function _insert(data, insertAtFront, callback) {\n if (callback != null && typeof callback !== 'function') {\n // eslint-disable-line no-eq-null,eqeqeq\n throw new Error('task callback must be a function');\n }\n\n q.started = true;\n\n if (data == null && q.idle()) {\n // eslint-disable-line no-eq-null,eqeqeq\n // call drain immediately if there are no tasks\n setTimeout(function () {\n return q.drain();\n }, 1);\n return;\n }\n\n var item = {\n data: data,\n callback: typeof callback === 'function' ? callback : _noop\n };\n\n if (insertAtFront) {\n q._tasks.unshift(item);\n } else {\n q._tasks.push(item);\n }\n\n setTimeout(function () {\n return q.process();\n }, 1);\n }\n\n function _next(task) {\n return function next() {\n workers -= 1;\n task.callback.apply(task, arguments);\n\n if (arguments[0] != null) {\n // eslint-disable-line no-eq-null,eqeqeq\n q.error(arguments[0], task.data);\n }\n\n if (workers <= q.concurrency - q.buffer) {\n q.unsaturated();\n }\n\n if (q.idle()) {\n q.drain();\n }\n\n q.process();\n };\n }\n\n return q;\n}\n\nvar async = ({\n eachSeries: eachSeries,\n queue: queue\n});\n\n// a simple in-memory cache for resources\nvar cache = {};\n/**\n * A simple in-memory cache for resource.\n *\n * @memberof middleware\n * @function caching\n * @example\n * import { Loader, middleware } from 'resource-loader';\n * const loader = new Loader();\n * loader.use(middleware.caching);\n * @param {Resource} resource - Current Resource\n * @param {function} next - Callback when complete\n */\n\nfunction caching(resource, next) {\n var _this = this;\n\n // if cached, then set data and complete the resource\n if (cache[resource.url]) {\n resource.data = cache[resource.url];\n resource.complete(); // marks resource load complete and stops processing before middlewares\n } // if not cached, wait for complete and store it in the cache.\n else {\n resource.onComplete.once(function () {\n return cache[_this.url] = _this.data;\n });\n }\n\n next();\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nvar useXdr = !!(window.XDomainRequest && !('withCredentials' in new XMLHttpRequest()));\nvar tempAnchor = null; // some status constants\n\nvar STATUS_NONE = 0;\nvar STATUS_OK = 200;\nvar STATUS_EMPTY = 204;\nvar STATUS_IE_BUG_EMPTY = 1223;\nvar STATUS_TYPE_OK = 2; // noop\n\nfunction _noop$1() {}\n/* empty */\n\n/**\n * Manages the state and loading of a resource and all child resources.\n *\n * @class\n */\n\n\nvar Resource =\n/*#__PURE__*/\nfunction () {\n /**\n * Sets the load type to be used for a specific extension.\n *\n * @static\n * @param {string} extname - The extension to set the type for, e.g. \"png\" or \"fnt\"\n * @param {Resource.LOAD_TYPE} loadType - The load type to set it to.\n */\n Resource.setExtensionLoadType = function setExtensionLoadType(extname, loadType) {\n setExtMap(Resource._loadTypeMap, extname, loadType);\n }\n /**\n * Sets the load type to be used for a specific extension.\n *\n * @static\n * @param {string} extname - The extension to set the type for, e.g. \"png\" or \"fnt\"\n * @param {Resource.XHR_RESPONSE_TYPE} xhrType - The xhr type to set it to.\n */\n ;\n\n Resource.setExtensionXhrType = function setExtensionXhrType(extname, xhrType) {\n setExtMap(Resource._xhrTypeMap, extname, xhrType);\n }\n /**\n * @param {string} name - The name of the resource to load.\n * @param {string|string[]} url - The url for this resource, for audio/video loads you can pass\n * an array of sources.\n * @param {object} [options] - The options for the load.\n * @param {string|boolean} [options.crossOrigin] - Is this request cross-origin? Default is to\n * determine automatically.\n * @param {number} [options.timeout=0] - A timeout in milliseconds for the load. If the load takes\n * longer than this time it is cancelled and the load is considered a failure. If this value is\n * set to `0` then there is no explicit timeout.\n * @param {Resource.LOAD_TYPE} [options.loadType=Resource.LOAD_TYPE.XHR] - How should this resource\n * be loaded?\n * @param {Resource.XHR_RESPONSE_TYPE} [options.xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How\n * should the data being loaded be interpreted when using XHR?\n * @param {Resource.IMetadata} [options.metadata] - Extra configuration for middleware and the Resource object.\n */\n ;\n\n function Resource(name, url, options) {\n if (typeof name !== 'string' || typeof url !== 'string') {\n throw new Error('Both name and url are required for constructing a resource.');\n }\n\n options = options || {};\n /**\n * The state flags of this resource.\n *\n * @private\n * @member {number}\n */\n\n this._flags = 0; // set data url flag, needs to be set early for some _determineX checks to work.\n\n this._setFlag(Resource.STATUS_FLAGS.DATA_URL, url.indexOf('data:') === 0);\n /**\n * The name of this resource.\n *\n * @readonly\n * @member {string}\n */\n\n\n this.name = name;\n /**\n * The url used to load this resource.\n *\n * @readonly\n * @member {string}\n */\n\n this.url = url;\n /**\n * The extension used to load this resource.\n *\n * @readonly\n * @member {string}\n */\n\n this.extension = this._getExtension();\n /**\n * The data that was loaded by the resource.\n *\n * @member {any}\n */\n\n this.data = null;\n /**\n * Is this request cross-origin? If unset, determined automatically.\n *\n * @member {string}\n */\n\n this.crossOrigin = options.crossOrigin === true ? 'anonymous' : options.crossOrigin;\n /**\n * A timeout in milliseconds for the load. If the load takes longer than this time\n * it is cancelled and the load is considered a failure. If this value is set to `0`\n * then there is no explicit timeout.\n *\n * @member {number}\n */\n\n this.timeout = options.timeout || 0;\n /**\n * The method of loading to use for this resource.\n *\n * @member {Resource.LOAD_TYPE}\n */\n\n this.loadType = options.loadType || this._determineLoadType();\n /**\n * The type used to load the resource via XHR. If unset, determined automatically.\n *\n * @member {string}\n */\n\n this.xhrType = options.xhrType;\n /**\n * Extra info for middleware, and controlling specifics about how the resource loads.\n *\n * Note that if you pass in a `loadElement`, the Resource class takes ownership of it.\n * Meaning it will modify it as it sees fit.\n *\n * @member {Resource.IMetadata}\n */\n\n this.metadata = options.metadata || {};\n /**\n * The error that occurred while loading (if any).\n *\n * @readonly\n * @member {Error}\n */\n\n this.error = null;\n /**\n * The XHR object that was used to load this resource. This is only set\n * when `loadType` is `Resource.LOAD_TYPE.XHR`.\n *\n * @readonly\n * @member {XMLHttpRequest}\n */\n\n this.xhr = null;\n /**\n * The child resources this resource owns.\n *\n * @readonly\n * @member {Resource[]}\n */\n\n this.children = [];\n /**\n * The resource type.\n *\n * @readonly\n * @member {Resource.TYPE}\n */\n\n this.type = Resource.TYPE.UNKNOWN;\n /**\n * The progress chunk owned by this resource.\n *\n * @readonly\n * @member {number}\n */\n\n this.progressChunk = 0;\n /**\n * The `dequeue` method that will be used a storage place for the async queue dequeue method\n * used privately by the loader.\n *\n * @private\n * @member {function}\n */\n\n this._dequeue = _noop$1;\n /**\n * Used a storage place for the on load binding used privately by the loader.\n *\n * @private\n * @member {function}\n */\n\n this._onLoadBinding = null;\n /**\n * The timer for element loads to check if they timeout.\n *\n * @private\n * @member {number}\n */\n\n this._elementTimer = 0;\n /**\n * The `complete` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundComplete = this.complete.bind(this);\n /**\n * The `_onError` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnError = this._onError.bind(this);\n /**\n * The `_onProgress` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnProgress = this._onProgress.bind(this);\n /**\n * The `_onTimeout` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnTimeout = this._onTimeout.bind(this); // xhr callbacks\n\n this._boundXhrOnError = this._xhrOnError.bind(this);\n this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this);\n this._boundXhrOnAbort = this._xhrOnAbort.bind(this);\n this._boundXhrOnLoad = this._xhrOnLoad.bind(this);\n /**\n * Dispatched when the resource beings to load.\n *\n * The callback looks like {@link Resource.OnStartSignal}.\n *\n * @member {Signal}\n */\n\n this.onStart = new Signal();\n /**\n * Dispatched each time progress of this resource load updates.\n * Not all resources types and loader systems can support this event\n * so sometimes it may not be available. If the resource\n * is being loaded on a modern browser, using XHR, and the remote server\n * properly sets Content-Length headers, then this will be available.\n *\n * The callback looks like {@link Resource.OnProgressSignal}.\n *\n * @member {Signal}\n */\n\n this.onProgress = new Signal();\n /**\n * Dispatched once this resource has loaded, if there was an error it will\n * be in the `error` property.\n *\n * The callback looks like {@link Resource.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onComplete = new Signal();\n /**\n * Dispatched after this resource has had all the *after* middleware run on it.\n *\n * The callback looks like {@link Resource.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onAfterMiddleware = new Signal();\n }\n /**\n * When the resource starts to load.\n *\n * @memberof Resource\n * @callback OnStartSignal\n * @param {Resource} resource - The resource that the event happened on.\n */\n\n /**\n * When the resource reports loading progress.\n *\n * @memberof Resource\n * @callback OnProgressSignal\n * @param {Resource} resource - The resource that the event happened on.\n * @param {number} percentage - The progress of the load in the range [0, 1].\n */\n\n /**\n * When the resource finishes loading.\n *\n * @memberof Resource\n * @callback OnCompleteSignal\n * @param {Resource} resource - The resource that the event happened on.\n */\n\n /**\n * @memberof Resource\n * @typedef {object} IMetadata\n * @property {HTMLImageElement|HTMLAudioElement|HTMLVideoElement} [loadElement=null] - The\n * element to use for loading, instead of creating one.\n * @property {boolean} [skipSource=false] - Skips adding source(s) to the load element. This\n * is useful if you want to pass in a `loadElement` that you already added load sources to.\n * @property {string|string[]} [mimeType] - The mime type to use for the source element\n * of a video/audio elment. If the urls are an array, you can pass this as an array as well\n * where each index is the mime type to use for the corresponding url index.\n */\n\n /**\n * Stores whether or not this url is a data url.\n *\n * @readonly\n * @member {boolean}\n */\n\n\n var _proto = Resource.prototype;\n\n /**\n * Marks the resource as complete.\n *\n */\n _proto.complete = function complete() {\n this._clearEvents();\n\n this._finish();\n }\n /**\n * Aborts the loading of this resource, with an optional message.\n *\n * @param {string} message - The message to use for the error\n */\n ;\n\n _proto.abort = function abort(message) {\n // abort can be called multiple times, ignore subsequent calls.\n if (this.error) {\n return;\n } // store error\n\n\n this.error = new Error(message); // clear events before calling aborts\n\n this._clearEvents(); // abort the actual loading\n\n\n if (this.xhr) {\n this.xhr.abort();\n } else if (this.xdr) {\n this.xdr.abort();\n } else if (this.data) {\n // single source\n if (this.data.src) {\n this.data.src = Resource.EMPTY_GIF;\n } // multi-source\n else {\n while (this.data.firstChild) {\n this.data.removeChild(this.data.firstChild);\n }\n }\n } // done now.\n\n\n this._finish();\n }\n /**\n * Kicks off loading of this resource. This method is asynchronous.\n *\n * @param {Resource.OnCompleteSignal} [cb] - Optional callback to call once the resource is loaded.\n */\n ;\n\n _proto.load = function load(cb) {\n var _this = this;\n\n if (this.isLoading) {\n return;\n }\n\n if (this.isComplete) {\n if (cb) {\n setTimeout(function () {\n return cb(_this);\n }, 1);\n }\n\n return;\n } else if (cb) {\n this.onComplete.once(cb);\n }\n\n this._setFlag(Resource.STATUS_FLAGS.LOADING, true);\n\n this.onStart.dispatch(this); // if unset, determine the value\n\n if (this.crossOrigin === false || typeof this.crossOrigin !== 'string') {\n this.crossOrigin = this._determineCrossOrigin(this.url);\n }\n\n switch (this.loadType) {\n case Resource.LOAD_TYPE.IMAGE:\n this.type = Resource.TYPE.IMAGE;\n\n this._loadElement('image');\n\n break;\n\n case Resource.LOAD_TYPE.AUDIO:\n this.type = Resource.TYPE.AUDIO;\n\n this._loadSourceElement('audio');\n\n break;\n\n case Resource.LOAD_TYPE.VIDEO:\n this.type = Resource.TYPE.VIDEO;\n\n this._loadSourceElement('video');\n\n break;\n\n case Resource.LOAD_TYPE.XHR:\n /* falls through */\n\n default:\n if (useXdr && this.crossOrigin) {\n this._loadXdr();\n } else {\n this._loadXhr();\n }\n\n break;\n }\n }\n /**\n * Checks if the flag is set.\n *\n * @private\n * @param {number} flag - The flag to check.\n * @return {boolean} True if the flag is set.\n */\n ;\n\n _proto._hasFlag = function _hasFlag(flag) {\n return (this._flags & flag) !== 0;\n }\n /**\n * (Un)Sets the flag.\n *\n * @private\n * @param {number} flag - The flag to (un)set.\n * @param {boolean} value - Whether to set or (un)set the flag.\n */\n ;\n\n _proto._setFlag = function _setFlag(flag, value) {\n this._flags = value ? this._flags | flag : this._flags & ~flag;\n }\n /**\n * Clears all the events from the underlying loading source.\n *\n * @private\n */\n ;\n\n _proto._clearEvents = function _clearEvents() {\n clearTimeout(this._elementTimer);\n\n if (this.data && this.data.removeEventListener) {\n this.data.removeEventListener('error', this._boundOnError, false);\n this.data.removeEventListener('load', this._boundComplete, false);\n this.data.removeEventListener('progress', this._boundOnProgress, false);\n this.data.removeEventListener('canplaythrough', this._boundComplete, false);\n }\n\n if (this.xhr) {\n if (this.xhr.removeEventListener) {\n this.xhr.removeEventListener('error', this._boundXhrOnError, false);\n this.xhr.removeEventListener('timeout', this._boundXhrOnTimeout, false);\n this.xhr.removeEventListener('abort', this._boundXhrOnAbort, false);\n this.xhr.removeEventListener('progress', this._boundOnProgress, false);\n this.xhr.removeEventListener('load', this._boundXhrOnLoad, false);\n } else {\n this.xhr.onerror = null;\n this.xhr.ontimeout = null;\n this.xhr.onprogress = null;\n this.xhr.onload = null;\n }\n }\n }\n /**\n * Finalizes the load.\n *\n * @private\n */\n ;\n\n _proto._finish = function _finish() {\n if (this.isComplete) {\n throw new Error('Complete called again for an already completed resource.');\n }\n\n this._setFlag(Resource.STATUS_FLAGS.COMPLETE, true);\n\n this._setFlag(Resource.STATUS_FLAGS.LOADING, false);\n\n this.onComplete.dispatch(this);\n }\n /**\n * Loads this resources using an element that has a single source,\n * like an HTMLImageElement.\n *\n * @private\n * @param {string} type - The type of element to use.\n */\n ;\n\n _proto._loadElement = function _loadElement(type) {\n if (this.metadata.loadElement) {\n this.data = this.metadata.loadElement;\n } else if (type === 'image' && typeof window.Image !== 'undefined') {\n this.data = new Image();\n } else {\n this.data = document.createElement(type);\n }\n\n if (this.crossOrigin) {\n this.data.crossOrigin = this.crossOrigin;\n }\n\n if (!this.metadata.skipSource) {\n this.data.src = this.url;\n }\n\n this.data.addEventListener('error', this._boundOnError, false);\n this.data.addEventListener('load', this._boundComplete, false);\n this.data.addEventListener('progress', this._boundOnProgress, false);\n\n if (this.timeout) {\n this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout);\n }\n }\n /**\n * Loads this resources using an element that has multiple sources,\n * like an HTMLAudioElement or HTMLVideoElement.\n *\n * @private\n * @param {string} type - The type of element to use.\n */\n ;\n\n _proto._loadSourceElement = function _loadSourceElement(type) {\n if (this.metadata.loadElement) {\n this.data = this.metadata.loadElement;\n } else if (type === 'audio' && typeof window.Audio !== 'undefined') {\n this.data = new Audio();\n } else {\n this.data = document.createElement(type);\n }\n\n if (this.data === null) {\n this.abort(\"Unsupported element: \" + type);\n return;\n }\n\n if (this.crossOrigin) {\n this.data.crossOrigin = this.crossOrigin;\n }\n\n if (!this.metadata.skipSource) {\n // support for CocoonJS Canvas+ runtime, lacks document.createElement('source')\n if (navigator.isCocoonJS) {\n this.data.src = Array.isArray(this.url) ? this.url[0] : this.url;\n } else if (Array.isArray(this.url)) {\n var mimeTypes = this.metadata.mimeType;\n\n for (var i = 0; i < this.url.length; ++i) {\n this.data.appendChild(this._createSource(type, this.url[i], Array.isArray(mimeTypes) ? mimeTypes[i] : mimeTypes));\n }\n } else {\n var _mimeTypes = this.metadata.mimeType;\n this.data.appendChild(this._createSource(type, this.url, Array.isArray(_mimeTypes) ? _mimeTypes[0] : _mimeTypes));\n }\n }\n\n this.data.addEventListener('error', this._boundOnError, false);\n this.data.addEventListener('load', this._boundComplete, false);\n this.data.addEventListener('progress', this._boundOnProgress, false);\n this.data.addEventListener('canplaythrough', this._boundComplete, false);\n this.data.load();\n\n if (this.timeout) {\n this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout);\n }\n }\n /**\n * Loads this resources using an XMLHttpRequest.\n *\n * @private\n */\n ;\n\n _proto._loadXhr = function _loadXhr() {\n // if unset, determine the value\n if (typeof this.xhrType !== 'string') {\n this.xhrType = this._determineXhrType();\n }\n\n var xhr = this.xhr = new XMLHttpRequest(); // set the request type and url\n\n xhr.open('GET', this.url, true);\n xhr.timeout = this.timeout; // load json as text and parse it ourselves. We do this because some browsers\n // *cough* safari *cough* can't deal with it.\n\n if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON || this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) {\n xhr.responseType = Resource.XHR_RESPONSE_TYPE.TEXT;\n } else {\n xhr.responseType = this.xhrType;\n }\n\n xhr.addEventListener('error', this._boundXhrOnError, false);\n xhr.addEventListener('timeout', this._boundXhrOnTimeout, false);\n xhr.addEventListener('abort', this._boundXhrOnAbort, false);\n xhr.addEventListener('progress', this._boundOnProgress, false);\n xhr.addEventListener('load', this._boundXhrOnLoad, false);\n xhr.send();\n }\n /**\n * Loads this resources using an XDomainRequest. This is here because we need to support IE9 (gross).\n *\n * @private\n */\n ;\n\n _proto._loadXdr = function _loadXdr() {\n // if unset, determine the value\n if (typeof this.xhrType !== 'string') {\n this.xhrType = this._determineXhrType();\n }\n\n var xdr = this.xhr = new XDomainRequest(); // eslint-disable-line no-undef\n // XDomainRequest has a few quirks. Occasionally it will abort requests\n // A way to avoid this is to make sure ALL callbacks are set even if not used\n // More info here: http://stackoverflow.com/questions/15786966/xdomainrequest-aborts-post-on-ie-9\n\n xdr.timeout = this.timeout || 5000; // XDR needs a timeout value or it breaks in IE9\n\n xdr.onerror = this._boundXhrOnError;\n xdr.ontimeout = this._boundXhrOnTimeout;\n xdr.onprogress = this._boundOnProgress;\n xdr.onload = this._boundXhrOnLoad;\n xdr.open('GET', this.url, true); // Note: The xdr.send() call is wrapped in a timeout to prevent an\n // issue with the interface where some requests are lost if multiple\n // XDomainRequests are being sent at the same time.\n // Some info here: https://github.com/photonstorm/phaser/issues/1248\n\n setTimeout(function () {\n return xdr.send();\n }, 1);\n }\n /**\n * Creates a source used in loading via an element.\n *\n * @private\n * @param {string} type - The element type (video or audio).\n * @param {string} url - The source URL to load from.\n * @param {string} [mime] - The mime type of the video\n * @return {HTMLSourceElement} The source element.\n */\n ;\n\n _proto._createSource = function _createSource(type, url, mime) {\n if (!mime) {\n mime = type + \"/\" + this._getExtension(url);\n }\n\n var source = document.createElement('source');\n source.src = url;\n source.type = mime;\n return source;\n }\n /**\n * Called if a load errors out.\n *\n * @param {Event} event - The error event from the element that emits it.\n * @private\n */\n ;\n\n _proto._onError = function _onError(event) {\n this.abort(\"Failed to load element using: \" + event.target.nodeName);\n }\n /**\n * Called if a load progress event fires for an element or xhr/xdr.\n *\n * @private\n * @param {XMLHttpRequestProgressEvent|Event} event - Progress event.\n */\n ;\n\n _proto._onProgress = function _onProgress(event) {\n if (event && event.lengthComputable) {\n this.onProgress.dispatch(this, event.loaded / event.total);\n }\n }\n /**\n * Called if a timeout event fires for an element.\n *\n * @private\n */\n ;\n\n _proto._onTimeout = function _onTimeout() {\n this.abort(\"Load timed out.\");\n }\n /**\n * Called if an error event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnError = function _xhrOnError() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request failed. Status: \" + xhr.status + \", text: \\\"\" + xhr.statusText + \"\\\"\");\n }\n /**\n * Called if an error event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnTimeout = function _xhrOnTimeout() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request timed out.\");\n }\n /**\n * Called if an abort event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnAbort = function _xhrOnAbort() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request was aborted by the user.\");\n }\n /**\n * Called when data successfully loads from an xhr/xdr request.\n *\n * @private\n * @param {XMLHttpRequestLoadEvent|Event} event - Load event\n */\n ;\n\n _proto._xhrOnLoad = function _xhrOnLoad() {\n var xhr = this.xhr;\n var text = '';\n var status = typeof xhr.status === 'undefined' ? STATUS_OK : xhr.status; // XDR has no `.status`, assume 200.\n // responseText is accessible only if responseType is '' or 'text' and on older browsers\n\n if (xhr.responseType === '' || xhr.responseType === 'text' || typeof xhr.responseType === 'undefined') {\n text = xhr.responseText;\n } // status can be 0 when using the `file://` protocol so we also check if a response is set.\n // If it has a response, we assume 200; otherwise a 0 status code with no contents is an aborted request.\n\n\n if (status === STATUS_NONE && (text.length > 0 || xhr.responseType === Resource.XHR_RESPONSE_TYPE.BUFFER)) {\n status = STATUS_OK;\n } // handle IE9 bug: http://stackoverflow.com/questions/10046972/msie-returns-status-code-of-1223-for-ajax-request\n else if (status === STATUS_IE_BUG_EMPTY) {\n status = STATUS_EMPTY;\n }\n\n var statusType = status / 100 | 0;\n\n if (statusType === STATUS_TYPE_OK) {\n // if text, just return it\n if (this.xhrType === Resource.XHR_RESPONSE_TYPE.TEXT) {\n this.data = text;\n this.type = Resource.TYPE.TEXT;\n } // if json, parse into json object\n else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON) {\n try {\n this.data = JSON.parse(text);\n this.type = Resource.TYPE.JSON;\n } catch (e) {\n this.abort(\"Error trying to parse loaded json: \" + e);\n return;\n }\n } // if xml, parse into an xml document or div element\n else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) {\n try {\n if (window.DOMParser) {\n var domparser = new DOMParser();\n this.data = domparser.parseFromString(text, 'text/xml');\n } else {\n var div = document.createElement('div');\n div.innerHTML = text;\n this.data = div;\n }\n\n this.type = Resource.TYPE.XML;\n } catch (e) {\n this.abort(\"Error trying to parse loaded xml: \" + e);\n return;\n }\n } // other types just return the response\n else {\n this.data = xhr.response || text;\n }\n } else {\n this.abort(\"[\" + xhr.status + \"] \" + xhr.statusText + \": \" + xhr.responseURL);\n return;\n }\n\n this.complete();\n }\n /**\n * Sets the `crossOrigin` property for this resource based on if the url\n * for this resource is cross-origin. If crossOrigin was manually set, this\n * function does nothing.\n *\n * @private\n * @param {string} url - The url to test.\n * @param {object} [loc=window.location] - The location object to test against.\n * @return {string} The crossOrigin value to use (or empty string for none).\n */\n ;\n\n _proto._determineCrossOrigin = function _determineCrossOrigin(url, loc) {\n // data: and javascript: urls are considered same-origin\n if (url.indexOf('data:') === 0) {\n return '';\n } // A sandboxed iframe without the 'allow-same-origin' attribute will have a special\n // origin designed not to match window.location.origin, and will always require\n // crossOrigin requests regardless of whether the location matches.\n\n\n if (window.origin !== window.location.origin) {\n return 'anonymous';\n } // default is window.location\n\n\n loc = loc || window.location;\n\n if (!tempAnchor) {\n tempAnchor = document.createElement('a');\n } // let the browser determine the full href for the url of this resource and then\n // parse with the node url lib, we can't use the properties of the anchor element\n // because they don't work in IE9 :(\n\n\n tempAnchor.href = url;\n url = parseUri(tempAnchor.href, {\n strictMode: true\n });\n var samePort = !url.port && loc.port === '' || url.port === loc.port;\n var protocol = url.protocol ? url.protocol + \":\" : ''; // if cross origin\n\n if (url.host !== loc.hostname || !samePort || protocol !== loc.protocol) {\n return 'anonymous';\n }\n\n return '';\n }\n /**\n * Determines the responseType of an XHR request based on the extension of the\n * resource being loaded.\n *\n * @private\n * @return {Resource.XHR_RESPONSE_TYPE} The responseType to use.\n */\n ;\n\n _proto._determineXhrType = function _determineXhrType() {\n return Resource._xhrTypeMap[this.extension] || Resource.XHR_RESPONSE_TYPE.TEXT;\n }\n /**\n * Determines the loadType of a resource based on the extension of the\n * resource being loaded.\n *\n * @private\n * @return {Resource.LOAD_TYPE} The loadType to use.\n */\n ;\n\n _proto._determineLoadType = function _determineLoadType() {\n return Resource._loadTypeMap[this.extension] || Resource.LOAD_TYPE.XHR;\n }\n /**\n * Extracts the extension (sans '.') of the file being loaded by the resource.\n *\n * @private\n * @return {string} The extension.\n */\n ;\n\n _proto._getExtension = function _getExtension() {\n var url = this.url;\n var ext = '';\n\n if (this.isDataUrl) {\n var slashIndex = url.indexOf('/');\n ext = url.substring(slashIndex + 1, url.indexOf(';', slashIndex));\n } else {\n var queryStart = url.indexOf('?');\n var hashStart = url.indexOf('#');\n var index = Math.min(queryStart > -1 ? queryStart : url.length, hashStart > -1 ? hashStart : url.length);\n url = url.substring(0, index);\n ext = url.substring(url.lastIndexOf('.') + 1);\n }\n\n return ext.toLowerCase();\n }\n /**\n * Determines the mime type of an XHR request based on the responseType of\n * resource being loaded.\n *\n * @private\n * @param {Resource.XHR_RESPONSE_TYPE} type - The type to get a mime type for.\n * @return {string} The mime type to use.\n */\n ;\n\n _proto._getMimeFromXhrType = function _getMimeFromXhrType(type) {\n switch (type) {\n case Resource.XHR_RESPONSE_TYPE.BUFFER:\n return 'application/octet-binary';\n\n case Resource.XHR_RESPONSE_TYPE.BLOB:\n return 'application/blob';\n\n case Resource.XHR_RESPONSE_TYPE.DOCUMENT:\n return 'application/xml';\n\n case Resource.XHR_RESPONSE_TYPE.JSON:\n return 'application/json';\n\n case Resource.XHR_RESPONSE_TYPE.DEFAULT:\n case Resource.XHR_RESPONSE_TYPE.TEXT:\n /* falls through */\n\n default:\n return 'text/plain';\n }\n };\n\n _createClass(Resource, [{\n key: \"isDataUrl\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.DATA_URL);\n }\n /**\n * Describes if this resource has finished loading. Is true when the resource has completely\n * loaded.\n *\n * @readonly\n * @member {boolean}\n */\n\n }, {\n key: \"isComplete\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.COMPLETE);\n }\n /**\n * Describes if this resource is currently loading. Is true when the resource starts loading,\n * and is false again when complete.\n *\n * @readonly\n * @member {boolean}\n */\n\n }, {\n key: \"isLoading\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.LOADING);\n }\n }]);\n\n return Resource;\n}();\n/**\n * The types of resources a resource could represent.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\n\nResource.STATUS_FLAGS = {\n NONE: 0,\n DATA_URL: 1 << 0,\n COMPLETE: 1 << 1,\n LOADING: 1 << 2\n};\n/**\n * The types of resources a resource could represent.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\nResource.TYPE = {\n UNKNOWN: 0,\n JSON: 1,\n XML: 2,\n IMAGE: 3,\n AUDIO: 4,\n VIDEO: 5,\n TEXT: 6\n};\n/**\n * The types of loading a resource can use.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\nResource.LOAD_TYPE = {\n /** Uses XMLHttpRequest to load the resource. */\n XHR: 1,\n\n /** Uses an `Image` object to load the resource. */\n IMAGE: 2,\n\n /** Uses an `Audio` object to load the resource. */\n AUDIO: 3,\n\n /** Uses a `Video` object to load the resource. */\n VIDEO: 4\n};\n/**\n * The XHR ready states, used internally.\n *\n * @static\n * @readonly\n * @enum {string}\n */\n\nResource.XHR_RESPONSE_TYPE = {\n /** string */\n DEFAULT: 'text',\n\n /** ArrayBuffer */\n BUFFER: 'arraybuffer',\n\n /** Blob */\n BLOB: 'blob',\n\n /** Document */\n DOCUMENT: 'document',\n\n /** Object */\n JSON: 'json',\n\n /** String */\n TEXT: 'text'\n};\nResource._loadTypeMap = {\n // images\n gif: Resource.LOAD_TYPE.IMAGE,\n png: Resource.LOAD_TYPE.IMAGE,\n bmp: Resource.LOAD_TYPE.IMAGE,\n jpg: Resource.LOAD_TYPE.IMAGE,\n jpeg: Resource.LOAD_TYPE.IMAGE,\n tif: Resource.LOAD_TYPE.IMAGE,\n tiff: Resource.LOAD_TYPE.IMAGE,\n webp: Resource.LOAD_TYPE.IMAGE,\n tga: Resource.LOAD_TYPE.IMAGE,\n svg: Resource.LOAD_TYPE.IMAGE,\n 'svg+xml': Resource.LOAD_TYPE.IMAGE,\n // for SVG data urls\n // audio\n mp3: Resource.LOAD_TYPE.AUDIO,\n ogg: Resource.LOAD_TYPE.AUDIO,\n wav: Resource.LOAD_TYPE.AUDIO,\n // videos\n mp4: Resource.LOAD_TYPE.VIDEO,\n webm: Resource.LOAD_TYPE.VIDEO\n};\nResource._xhrTypeMap = {\n // xml\n xhtml: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n html: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n htm: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n xml: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n tmx: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n svg: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n // This was added to handle Tiled Tileset XML, but .tsx is also a TypeScript React Component.\n // Since it is way less likely for people to be loading TypeScript files instead of Tiled files,\n // this should probably be fine.\n tsx: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n // images\n gif: Resource.XHR_RESPONSE_TYPE.BLOB,\n png: Resource.XHR_RESPONSE_TYPE.BLOB,\n bmp: Resource.XHR_RESPONSE_TYPE.BLOB,\n jpg: Resource.XHR_RESPONSE_TYPE.BLOB,\n jpeg: Resource.XHR_RESPONSE_TYPE.BLOB,\n tif: Resource.XHR_RESPONSE_TYPE.BLOB,\n tiff: Resource.XHR_RESPONSE_TYPE.BLOB,\n webp: Resource.XHR_RESPONSE_TYPE.BLOB,\n tga: Resource.XHR_RESPONSE_TYPE.BLOB,\n // json\n json: Resource.XHR_RESPONSE_TYPE.JSON,\n // text\n text: Resource.XHR_RESPONSE_TYPE.TEXT,\n txt: Resource.XHR_RESPONSE_TYPE.TEXT,\n // fonts\n ttf: Resource.XHR_RESPONSE_TYPE.BUFFER,\n otf: Resource.XHR_RESPONSE_TYPE.BUFFER\n}; // We can't set the `src` attribute to empty string, so on abort we set it to this 1px transparent gif\n\nResource.EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==';\n/**\n * Quick helper to set a value on one of the extension maps. Ensures there is no\n * dot at the start of the extension.\n *\n * @ignore\n * @param {object} map - The map to set on.\n * @param {string} extname - The extension (or key) to set.\n * @param {number} val - The value to set.\n */\n\nfunction setExtMap(map, extname, val) {\n if (extname && extname.indexOf('.') === 0) {\n extname = extname.substring(1);\n }\n\n if (!extname) {\n return;\n }\n\n map[extname] = val;\n}\n/**\n * Quick helper to get string xhr type.\n *\n * @ignore\n * @param {XMLHttpRequest|XDomainRequest} xhr - The request to check.\n * @return {string} The type.\n */\n\n\nfunction reqType(xhr) {\n return xhr.toString().replace('object ', '');\n}\n\nvar _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\n/**\n * Encodes binary into base64.\n *\n * @function encodeBinary\n * @param {string} input The input data to encode.\n * @returns {string} The encoded base64 string\n */\n\nfunction encodeBinary(input) {\n var output = '';\n var inx = 0;\n\n while (inx < input.length) {\n // Fill byte buffer array\n var bytebuffer = [0, 0, 0];\n var encodedCharIndexes = [0, 0, 0, 0];\n\n for (var jnx = 0; jnx < bytebuffer.length; ++jnx) {\n if (inx < input.length) {\n // throw away high-order byte, as documented at:\n // https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data\n bytebuffer[jnx] = input.charCodeAt(inx++) & 0xff;\n } else {\n bytebuffer[jnx] = 0;\n }\n } // Get each encoded character, 6 bits at a time\n // index 1: first 6 bits\n\n\n encodedCharIndexes[0] = bytebuffer[0] >> 2; // index 2: second 6 bits (2 least significant bits from input byte 1 + 4 most significant bits from byte 2)\n\n encodedCharIndexes[1] = (bytebuffer[0] & 0x3) << 4 | bytebuffer[1] >> 4; // index 3: third 6 bits (4 least significant bits from input byte 2 + 2 most significant bits from byte 3)\n\n encodedCharIndexes[2] = (bytebuffer[1] & 0x0f) << 2 | bytebuffer[2] >> 6; // index 3: forth 6 bits (6 least significant bits from input byte 3)\n\n encodedCharIndexes[3] = bytebuffer[2] & 0x3f; // Determine whether padding happened, and adjust accordingly\n\n var paddingBytes = inx - (input.length - 1);\n\n switch (paddingBytes) {\n case 2:\n // Set last 2 characters to padding char\n encodedCharIndexes[3] = 64;\n encodedCharIndexes[2] = 64;\n break;\n\n case 1:\n // Set last character to padding char\n encodedCharIndexes[3] = 64;\n break;\n\n default:\n break;\n // No padding - proceed\n } // Now we will grab each appropriate character out of our keystring\n // based on our index array and append it to the output string\n\n\n for (var _jnx = 0; _jnx < encodedCharIndexes.length; ++_jnx) {\n output += _keyStr.charAt(encodedCharIndexes[_jnx]);\n }\n }\n\n return output;\n}\n\nvar Url = window.URL || window.webkitURL;\n/**\n * A middleware for transforming XHR loaded Blobs into more useful objects\n *\n * @memberof middleware\n * @function parsing\n * @example\n * import { Loader, middleware } from 'resource-loader';\n * const loader = new Loader();\n * loader.use(middleware.parsing);\n * @param {Resource} resource - Current Resource\n * @param {function} next - Callback when complete\n */\n\nfunction parsing(resource, next) {\n if (!resource.data) {\n next();\n return;\n } // if this was an XHR load of a blob\n\n\n if (resource.xhr && resource.xhrType === Resource.XHR_RESPONSE_TYPE.BLOB) {\n // if there is no blob support we probably got a binary string back\n if (!window.Blob || typeof resource.data === 'string') {\n var type = resource.xhr.getResponseHeader('content-type'); // this is an image, convert the binary string into a data url\n\n if (type && type.indexOf('image') === 0) {\n resource.data = new Image();\n resource.data.src = \"data:\" + type + \";base64,\" + encodeBinary(resource.xhr.responseText);\n resource.type = Resource.TYPE.IMAGE; // wait until the image loads and then callback\n\n resource.data.onload = function () {\n resource.data.onload = null;\n next();\n }; // next will be called on load\n\n\n return;\n }\n } // if content type says this is an image, then we should transform the blob into an Image object\n else if (resource.data.type.indexOf('image') === 0) {\n var src = Url.createObjectURL(resource.data);\n resource.blob = resource.data;\n resource.data = new Image();\n resource.data.src = src;\n resource.type = Resource.TYPE.IMAGE; // cleanup the no longer used blob after the image loads\n // TODO: Is this correct? Will the image be invalid after revoking?\n\n resource.data.onload = function () {\n Url.revokeObjectURL(src);\n resource.data.onload = null;\n next();\n }; // next will be called on load.\n\n\n return;\n }\n }\n\n next();\n}\n\n/**\n * @namespace middleware\n */\n\nvar index = ({\n caching: caching,\n parsing: parsing\n});\n\nvar MAX_PROGRESS = 100;\nvar rgxExtractUrlHash = /(#[\\w-]+)?$/;\n/**\n * Manages the state and loading of multiple resources to load.\n *\n * @class\n */\n\nvar Loader =\n/*#__PURE__*/\nfunction () {\n /**\n * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader.\n * @param {number} [concurrency=10] - The number of resources to load concurrently.\n */\n function Loader(baseUrl, concurrency) {\n var _this = this;\n\n if (baseUrl === void 0) {\n baseUrl = '';\n }\n\n if (concurrency === void 0) {\n concurrency = 10;\n }\n\n /**\n * The base url for all resources loaded by this loader.\n *\n * @member {string}\n */\n this.baseUrl = baseUrl;\n /**\n * The progress percent of the loader going through the queue.\n *\n * @member {number}\n * @default 0\n */\n\n this.progress = 0;\n /**\n * Loading state of the loader, true if it is currently loading resources.\n *\n * @member {boolean}\n * @default false\n */\n\n this.loading = false;\n /**\n * A querystring to append to every URL added to the loader.\n *\n * This should be a valid query string *without* the question-mark (`?`). The loader will\n * also *not* escape values for you. Make sure to escape your parameters with\n * [`encodeURIComponent`](https://mdn.io/encodeURIComponent) before assigning this property.\n *\n * @example\n * const loader = new Loader();\n *\n * loader.defaultQueryString = 'user=me&password=secret';\n *\n * // This will request 'image.png?user=me&password=secret'\n * loader.add('image.png').load();\n *\n * loader.reset();\n *\n * // This will request 'image.png?v=1&user=me&password=secret'\n * loader.add('iamge.png?v=1').load();\n *\n * @member {string}\n * @default ''\n */\n\n this.defaultQueryString = '';\n /**\n * The middleware to run before loading each resource.\n *\n * @private\n * @member {function[]}\n */\n\n this._beforeMiddleware = [];\n /**\n * The middleware to run after loading each resource.\n *\n * @private\n * @member {function[]}\n */\n\n this._afterMiddleware = [];\n /**\n * The tracks the resources we are currently completing parsing for.\n *\n * @private\n * @member {Resource[]}\n */\n\n this._resourcesParsing = [];\n /**\n * The `_loadResource` function bound with this object context.\n *\n * @private\n * @member {function}\n * @param {Resource} r - The resource to load\n * @param {Function} d - The dequeue function\n * @return {undefined}\n */\n\n this._boundLoadResource = function (r, d) {\n return _this._loadResource(r, d);\n };\n /**\n * The resources waiting to be loaded.\n *\n * @private\n * @member {Resource[]}\n */\n\n\n this._queue = queue(this._boundLoadResource, concurrency);\n\n this._queue.pause();\n /**\n * All the resources for this loader keyed by name.\n *\n * @member {object}\n */\n\n\n this.resources = {};\n /**\n * Dispatched once per loaded or errored resource.\n *\n * The callback looks like {@link Loader.OnProgressSignal}.\n *\n * @member {Signal}\n */\n\n this.onProgress = new Signal();\n /**\n * Dispatched once per errored resource.\n *\n * The callback looks like {@link Loader.OnErrorSignal}.\n *\n * @member {Signal}\n */\n\n this.onError = new Signal();\n /**\n * Dispatched once per loaded resource.\n *\n * The callback looks like {@link Loader.OnLoadSignal}.\n *\n * @member {Signal}\n */\n\n this.onLoad = new Signal();\n /**\n * Dispatched when the loader begins to process the queue.\n *\n * The callback looks like {@link Loader.OnStartSignal}.\n *\n * @member {Signal}\n */\n\n this.onStart = new Signal();\n /**\n * Dispatched when the queued resources all load.\n *\n * The callback looks like {@link Loader.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onComplete = new Signal(); // Add default before middleware\n\n for (var i = 0; i < Loader._defaultBeforeMiddleware.length; ++i) {\n this.pre(Loader._defaultBeforeMiddleware[i]);\n } // Add default after middleware\n\n\n for (var _i = 0; _i < Loader._defaultAfterMiddleware.length; ++_i) {\n this.use(Loader._defaultAfterMiddleware[_i]);\n }\n }\n /**\n * When the progress changes the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnProgressSignal\n * @param {Loader} loader - The loader the progress is advancing on.\n * @param {Resource} resource - The resource that has completed or failed to cause the progress to advance.\n */\n\n /**\n * When an error occurrs the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnErrorSignal\n * @param {Loader} loader - The loader the error happened in.\n * @param {Resource} resource - The resource that caused the error.\n */\n\n /**\n * When a load completes the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnLoadSignal\n * @param {Loader} loader - The loader that laoded the resource.\n * @param {Resource} resource - The resource that has completed loading.\n */\n\n /**\n * When the loader starts loading resources it dispatches this callback.\n *\n * @memberof Loader\n * @callback OnStartSignal\n * @param {Loader} loader - The loader that has started loading resources.\n */\n\n /**\n * When the loader completes loading resources it dispatches this callback.\n *\n * @memberof Loader\n * @callback OnCompleteSignal\n * @param {Loader} loader - The loader that has finished loading resources.\n */\n\n /**\n * Options for a call to `.add()`.\n *\n * @see Loader#add\n *\n * @typedef {object} IAddOptions\n * @property {string} [name] - The name of the resource to load, if not passed the url is used.\n * @property {string} [key] - Alias for `name`.\n * @property {string} [url] - The url for this resource, relative to the baseUrl of this loader.\n * @property {string|boolean} [crossOrigin] - Is this request cross-origin? Default is to\n * determine automatically.\n * @property {number} [timeout=0] - A timeout in milliseconds for the load. If the load takes\n * longer than this time it is cancelled and the load is considered a failure. If this value is\n * set to `0` then there is no explicit timeout.\n * @property {Resource.LOAD_TYPE} [loadType=Resource.LOAD_TYPE.XHR] - How should this resource\n * be loaded?\n * @property {Resource.XHR_RESPONSE_TYPE} [xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How\n * should the data being loaded be interpreted when using XHR?\n * @property {Resource.OnCompleteSignal} [onComplete] - Callback to add an an onComplete signal istener.\n * @property {Resource.OnCompleteSignal} [callback] - Alias for `onComplete`.\n * @property {Resource.IMetadata} [metadata] - Extra configuration for middleware and the Resource object.\n */\n\n /* eslint-disable require-jsdoc,valid-jsdoc */\n\n /**\n * Adds a resource (or multiple resources) to the loader queue.\n *\n * This function can take a wide variety of different parameters. The only thing that is always\n * required the url to load. All the following will work:\n *\n * ```js\n * loader\n * // normal param syntax\n * .add('key', 'http://...', function () {})\n * .add('http://...', function () {})\n * .add('http://...')\n *\n * // object syntax\n * .add({\n * name: 'key2',\n * url: 'http://...'\n * }, function () {})\n * .add({\n * url: 'http://...'\n * }, function () {})\n * .add({\n * name: 'key3',\n * url: 'http://...'\n * onComplete: function () {}\n * })\n * .add({\n * url: 'https://...',\n * onComplete: function () {},\n * crossOrigin: true\n * })\n *\n * // you can also pass an array of objects or urls or both\n * .add([\n * { name: 'key4', url: 'http://...', onComplete: function () {} },\n * { url: 'http://...', onComplete: function () {} },\n * 'http://...'\n * ])\n *\n * // and you can use both params and options\n * .add('key', 'http://...', { crossOrigin: true }, function () {})\n * .add('http://...', { crossOrigin: true }, function () {});\n * ```\n *\n * @function\n * @variation 1\n * @param {string} name - The name of the resource to load.\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 2\n * @param {string} name - The name of the resource to load.\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {IAddOptions} [options] - The options for the load.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 3\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 4\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {IAddOptions} [options] - The options for the load.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 5\n * @param {IAddOptions} options - The options for the load. This object must contain a `url` property.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 6\n * @param {Array} resources - An array of resources to load, where each is\n * either an object with the options or a string url. If you pass an object, it must contain a `url` property.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n\n var _proto = Loader.prototype;\n\n _proto.add = function add(name, url, options, cb) {\n // special case of an array of objects or urls\n if (Array.isArray(name)) {\n for (var i = 0; i < name.length; ++i) {\n this.add(name[i]);\n }\n\n return this;\n } // if an object is passed instead of params\n\n\n if (typeof name === 'object') {\n cb = url || name.callback || name.onComplete;\n options = name;\n url = name.url;\n name = name.name || name.key || name.url;\n } // case where no name is passed shift all args over by one.\n\n\n if (typeof url !== 'string') {\n cb = options;\n options = url;\n url = name;\n } // now that we shifted make sure we have a proper url.\n\n\n if (typeof url !== 'string') {\n throw new Error('No url passed to add resource to loader.');\n } // options are optional so people might pass a function and no options\n\n\n if (typeof options === 'function') {\n cb = options;\n options = null;\n } // if loading already you can only add resources that have a parent.\n\n\n if (this.loading && (!options || !options.parentResource)) {\n throw new Error('Cannot add resources while the loader is running.');\n } // check if resource already exists.\n\n\n if (this.resources[name]) {\n throw new Error(\"Resource named \\\"\" + name + \"\\\" already exists.\");\n } // add base url if this isn't an absolute url\n\n\n url = this._prepareUrl(url); // create the store the resource\n\n this.resources[name] = new Resource(name, url, options);\n\n if (typeof cb === 'function') {\n this.resources[name].onAfterMiddleware.once(cb);\n } // if actively loading, make sure to adjust progress chunks for that parent and its children\n\n\n if (this.loading) {\n var parent = options.parentResource;\n var incompleteChildren = [];\n\n for (var _i2 = 0; _i2 < parent.children.length; ++_i2) {\n if (!parent.children[_i2].isComplete) {\n incompleteChildren.push(parent.children[_i2]);\n }\n }\n\n var fullChunk = parent.progressChunk * (incompleteChildren.length + 1); // +1 for parent\n\n var eachChunk = fullChunk / (incompleteChildren.length + 2); // +2 for parent & new child\n\n parent.children.push(this.resources[name]);\n parent.progressChunk = eachChunk;\n\n for (var _i3 = 0; _i3 < incompleteChildren.length; ++_i3) {\n incompleteChildren[_i3].progressChunk = eachChunk;\n }\n\n this.resources[name].progressChunk = eachChunk;\n } // add the resource to the queue\n\n\n this._queue.push(this.resources[name]);\n\n return this;\n }\n /* eslint-enable require-jsdoc,valid-jsdoc */\n\n /**\n * Sets up a middleware function that will run *before* the\n * resource is loaded.\n *\n * @param {function} fn - The middleware function to register.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.pre = function pre(fn) {\n this._beforeMiddleware.push(fn);\n\n return this;\n }\n /**\n * Sets up a middleware function that will run *after* the\n * resource is loaded.\n *\n * @param {function} fn - The middleware function to register.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.use = function use(fn) {\n this._afterMiddleware.push(fn);\n\n return this;\n }\n /**\n * Resets the queue of the loader to prepare for a new load.\n *\n * @return {this} Returns itself.\n */\n ;\n\n _proto.reset = function reset() {\n this.progress = 0;\n this.loading = false;\n\n this._queue.kill();\n\n this._queue.pause(); // abort all resource loads\n\n\n for (var k in this.resources) {\n var res = this.resources[k];\n\n if (res._onLoadBinding) {\n res._onLoadBinding.detach();\n }\n\n if (res.isLoading) {\n res.abort();\n }\n }\n\n this.resources = {};\n return this;\n }\n /**\n * Starts loading the queued resources.\n *\n * @param {function} [cb] - Optional callback that will be bound to the `complete` event.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.load = function load(cb) {\n // register complete callback if they pass one\n if (typeof cb === 'function') {\n this.onComplete.once(cb);\n } // if the queue has already started we are done here\n\n\n if (this.loading) {\n return this;\n }\n\n if (this._queue.idle()) {\n this._onStart();\n\n this._onComplete();\n } else {\n // distribute progress chunks\n var numTasks = this._queue._tasks.length;\n var chunk = MAX_PROGRESS / numTasks;\n\n for (var i = 0; i < this._queue._tasks.length; ++i) {\n this._queue._tasks[i].data.progressChunk = chunk;\n } // notify we are starting\n\n\n this._onStart(); // start loading\n\n\n this._queue.resume();\n }\n\n return this;\n }\n /**\n * The number of resources to load concurrently.\n *\n * @member {number}\n * @default 10\n */\n ;\n\n /**\n * Prepares a url for usage based on the configuration of this object\n *\n * @private\n * @param {string} url - The url to prepare.\n * @return {string} The prepared url.\n */\n _proto._prepareUrl = function _prepareUrl(url) {\n var parsedUrl = parseUri(url, {\n strictMode: true\n });\n var result; // absolute url, just use it as is.\n\n if (parsedUrl.protocol || !parsedUrl.path || url.indexOf('//') === 0) {\n result = url;\n } // if baseUrl doesn't end in slash and url doesn't start with slash, then add a slash inbetween\n else if (this.baseUrl.length && this.baseUrl.lastIndexOf('/') !== this.baseUrl.length - 1 && url.charAt(0) !== '/') {\n result = this.baseUrl + \"/\" + url;\n } else {\n result = this.baseUrl + url;\n } // if we need to add a default querystring, there is a bit more work\n\n\n if (this.defaultQueryString) {\n var hash = rgxExtractUrlHash.exec(result)[0];\n result = result.substr(0, result.length - hash.length);\n\n if (result.indexOf('?') !== -1) {\n result += \"&\" + this.defaultQueryString;\n } else {\n result += \"?\" + this.defaultQueryString;\n }\n\n result += hash;\n }\n\n return result;\n }\n /**\n * Loads a single resource.\n *\n * @private\n * @param {Resource} resource - The resource to load.\n * @param {function} dequeue - The function to call when we need to dequeue this item.\n */\n ;\n\n _proto._loadResource = function _loadResource(resource, dequeue) {\n var _this2 = this;\n\n resource._dequeue = dequeue; // run before middleware\n\n eachSeries(this._beforeMiddleware, function (fn, next) {\n fn.call(_this2, resource, function () {\n // if the before middleware marks the resource as complete,\n // break and don't process any more before middleware\n next(resource.isComplete ? {} : null);\n });\n }, function () {\n if (resource.isComplete) {\n _this2._onLoad(resource);\n } else {\n resource._onLoadBinding = resource.onComplete.once(_this2._onLoad, _this2);\n resource.load();\n }\n }, true);\n }\n /**\n * Called once loading has started.\n *\n * @private\n */\n ;\n\n _proto._onStart = function _onStart() {\n this.progress = 0;\n this.loading = true;\n this.onStart.dispatch(this);\n }\n /**\n * Called once each resource has loaded.\n *\n * @private\n */\n ;\n\n _proto._onComplete = function _onComplete() {\n this.progress = MAX_PROGRESS;\n this.loading = false;\n this.onComplete.dispatch(this, this.resources);\n }\n /**\n * Called each time a resources is loaded.\n *\n * @private\n * @param {Resource} resource - The resource that was loaded\n */\n ;\n\n _proto._onLoad = function _onLoad(resource) {\n var _this3 = this;\n\n resource._onLoadBinding = null; // remove this resource from the async queue, and add it to our list of resources that are being parsed\n\n this._resourcesParsing.push(resource);\n\n resource._dequeue(); // run all the after middleware for this resource\n\n\n eachSeries(this._afterMiddleware, function (fn, next) {\n fn.call(_this3, resource, next);\n }, function () {\n resource.onAfterMiddleware.dispatch(resource);\n _this3.progress = Math.min(MAX_PROGRESS, _this3.progress + resource.progressChunk);\n\n _this3.onProgress.dispatch(_this3, resource);\n\n if (resource.error) {\n _this3.onError.dispatch(resource.error, _this3, resource);\n } else {\n _this3.onLoad.dispatch(_this3, resource);\n }\n\n _this3._resourcesParsing.splice(_this3._resourcesParsing.indexOf(resource), 1); // do completion check\n\n\n if (_this3._queue.idle() && _this3._resourcesParsing.length === 0) {\n _this3._onComplete();\n }\n }, true);\n };\n\n _createClass(Loader, [{\n key: \"concurrency\",\n get: function get() {\n return this._queue.concurrency;\n } // eslint-disable-next-line require-jsdoc\n ,\n set: function set(concurrency) {\n this._queue.concurrency = concurrency;\n }\n }]);\n\n return Loader;\n}();\n/**\n * A default array of middleware to run before loading each resource.\n * Each of these middlewares are added to any new Loader instances when they are created.\n *\n * @private\n * @member {function[]}\n */\n\n\nLoader._defaultBeforeMiddleware = [];\n/**\n * A default array of middleware to run after loading each resource.\n * Each of these middlewares are added to any new Loader instances when they are created.\n *\n * @private\n * @member {function[]}\n */\n\nLoader._defaultAfterMiddleware = [];\n/**\n * Sets up a middleware function that will run *before* the\n * resource is loaded.\n *\n * @static\n * @param {function} fn - The middleware function to register.\n * @return {Loader} Returns itself.\n */\n\nLoader.pre = function LoaderPreStatic(fn) {\n Loader._defaultBeforeMiddleware.push(fn);\n\n return Loader;\n};\n/**\n * Sets up a middleware function that will run *after* the\n * resource is loaded.\n *\n * @static\n * @param {function} fn - The middleware function to register.\n * @return {Loader} Returns itself.\n */\n\n\nLoader.use = function LoaderUseStatic(fn) {\n Loader._defaultAfterMiddleware.push(fn);\n\n return Loader;\n};\n\nexport { Loader, Resource, async, encodeBinary, index as middleware };\n//# sourceMappingURL=resource-loader.esm.js.map\n","/*!\n * @pixi/loaders - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/loaders is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Resource, Loader as Loader$1, middleware } from 'resource-loader';\nimport { EventEmitter } from '@pixi/utils';\nimport { Texture } from '@pixi/core';\n\n/**\n * Loader plugin for handling Texture resources.\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar TextureLoader = function TextureLoader () {};\n\nTextureLoader.use = function use (resource, next)\n{\n // create a new texture if the data is an Image object\n if (resource.data && resource.type === Resource.TYPE.IMAGE)\n {\n resource.texture = Texture.fromLoader(\n resource.data,\n resource.url,\n resource.name\n );\n }\n next();\n};\n\n/**\n * The new loader, extends Resource Loader by Chad Engler: https://github.com/englercj/resource-loader\n *\n * ```js\n * const loader = PIXI.Loader.shared; // PixiJS exposes a premade instance for you to use.\n * //or\n * const loader = new PIXI.Loader(); // you can also create your own if you want\n *\n * const sprites = {};\n *\n * // Chainable `add` to enqueue a resource\n * loader.add('bunny', 'data/bunny.png')\n * .add('spaceship', 'assets/spritesheet.json');\n * loader.add('scoreFont', 'assets/score.fnt');\n *\n * // Chainable `pre` to add a middleware that runs for each resource, *before* loading that resource.\n * // This is useful to implement custom caching modules (using filesystem, indexeddb, memory, etc).\n * loader.pre(cachingMiddleware);\n *\n * // Chainable `use` to add a middleware that runs for each resource, *after* loading that resource.\n * // This is useful to implement custom parsing modules (like spritesheet parsers, spine parser, etc).\n * loader.use(parsingMiddleware);\n *\n * // The `load` method loads the queue of resources, and calls the passed in callback called once all\n * // resources have loaded.\n * loader.load((loader, resources) => {\n * // resources is an object where the key is the name of the resource loaded and the value is the resource object.\n * // They have a couple default properties:\n * // - `url`: The URL that the resource was loaded from\n * // - `error`: The error that happened when trying to load (if any)\n * // - `data`: The raw data that was loaded\n * // also may contain other properties based on the middleware that runs.\n * sprites.bunny = new PIXI.TilingSprite(resources.bunny.texture);\n * sprites.spaceship = new PIXI.TilingSprite(resources.spaceship.texture);\n * sprites.scoreFont = new PIXI.TilingSprite(resources.scoreFont.texture);\n * });\n *\n * // throughout the process multiple signals can be dispatched.\n * loader.onProgress.add(() => {}); // called once per loaded/errored file\n * loader.onError.add(() => {}); // called once per errored file\n * loader.onLoad.add(() => {}); // called once per loaded file\n * loader.onComplete.add(() => {}); // called once when the queued resources all load.\n * ```\n *\n * @see https://github.com/englercj/resource-loader\n *\n * @class Loader\n * @memberof PIXI\n * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader.\n * @param {number} [concurrency=10] - The number of resources to load concurrently.\n */\nvar Loader = /*@__PURE__*/(function (ResourceLoader) {\n function Loader(baseUrl, concurrency)\n {\n var this$1 = this;\n\n ResourceLoader.call(this, baseUrl, concurrency);\n EventEmitter.call(this);\n\n for (var i = 0; i < Loader._plugins.length; ++i)\n {\n var plugin = Loader._plugins[i];\n var pre = plugin.pre;\n var use = plugin.use;\n\n if (pre)\n {\n this.pre(pre);\n }\n\n if (use)\n {\n this.use(use);\n }\n }\n\n // Compat layer, translate the new v2 signals into old v1 events.\n this.onStart.add(function (l) { return this$1.emit('start', l); });\n this.onProgress.add(function (l, r) { return this$1.emit('progress', l, r); });\n this.onError.add(function (e, l, r) { return this$1.emit('error', e, l, r); });\n this.onLoad.add(function (l, r) { return this$1.emit('load', l, r); });\n this.onComplete.add(function (l, r) { return this$1.emit('complete', l, r); });\n\n /**\n * If this loader cannot be destroyed.\n * @member {boolean}\n * @default false\n * @private\n */\n this._protected = false;\n }\n\n if ( ResourceLoader ) Loader.__proto__ = ResourceLoader;\n Loader.prototype = Object.create( ResourceLoader && ResourceLoader.prototype );\n Loader.prototype.constructor = Loader;\n\n var staticAccessors = { shared: { configurable: true } };\n\n /**\n * Destroy the loader, removes references.\n * @private\n */\n Loader.prototype.destroy = function destroy ()\n {\n if (!this._protected)\n {\n this.removeAllListeners();\n this.reset();\n }\n };\n\n /**\n * A premade instance of the loader that can be used to load resources.\n * @name shared\n * @type {PIXI.Loader}\n * @static\n * @memberof PIXI.Loader\n */\n staticAccessors.shared.get = function ()\n {\n var shared = Loader._shared;\n\n if (!shared)\n {\n shared = new Loader();\n shared._protected = true;\n Loader._shared = shared;\n }\n\n return shared;\n };\n\n Object.defineProperties( Loader, staticAccessors );\n\n return Loader;\n}(Loader$1));\n\n// Copy EE3 prototype (mixin)\nObject.assign(Loader.prototype, EventEmitter.prototype);\n\n/**\n * Collection of all installed `use` middleware for Loader.\n *\n * @static\n * @member {Array} _plugins\n * @memberof PIXI.Loader\n * @private\n */\nLoader._plugins = [];\n\n/**\n * Adds a Loader plugin for the global shared loader and all\n * new Loader instances created.\n *\n * @static\n * @method registerPlugin\n * @memberof PIXI.Loader\n * @param {PIXI.ILoaderPlugin} plugin - The plugin to add\n * @return {PIXI.Loader} Reference to PIXI.Loader for chaining\n */\nLoader.registerPlugin = function registerPlugin(plugin)\n{\n Loader._plugins.push(plugin);\n\n if (plugin.add)\n {\n plugin.add();\n }\n\n return Loader;\n};\n\n// parse any blob into more usable objects (e.g. Image)\nLoader.registerPlugin({ use: middleware.parsing });\n\n// parse any Image objects into textures\nLoader.registerPlugin(TextureLoader);\n\n/**\n * Plugin to be installed for handling specific Loader resources.\n *\n * @memberof PIXI\n * @typedef ILoaderPlugin\n * @property {function} [add] - Function to call immediate after registering plugin.\n * @property {PIXI.Loader.loaderMiddleware} [pre] - Middleware function to run before load, the\n * arguments for this are `(resource, next)`\n * @property {PIXI.Loader.loaderMiddleware} [use] - Middleware function to run after load, the\n * arguments for this are `(resource, next)`\n */\n\n/**\n * @memberof PIXI.Loader\n * @callback loaderMiddleware\n * @param {PIXI.LoaderResource} resource\n * @param {function} next\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onStart\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onProgress\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onError\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onLoad\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onComplete\n */\n\n/**\n * Application plugin for supporting loader option. Installing the LoaderPlugin\n * is not necessary if using **pixi.js** or **pixi.js-legacy**.\n * @example\n * import {AppLoaderPlugin} from '@pixi/loaders';\n * import {Application} from '@pixi/app';\n * Application.registerPlugin(AppLoaderPlugin);\n * @class\n * @memberof PIXI\n */\nvar AppLoaderPlugin = function AppLoaderPlugin () {};\n\nAppLoaderPlugin.init = function init (options)\n{\n options = Object.assign({\n sharedLoader: false,\n }, options);\n\n /**\n * Loader instance to help with asset loading.\n * @name PIXI.Application#loader\n * @type {PIXI.Loader}\n * @readonly\n */\n this.loader = options.sharedLoader ? Loader.shared : new Loader();\n};\n\n/**\n * Called when application destroyed\n * @private\n */\nAppLoaderPlugin.destroy = function destroy ()\n{\n if (this.loader)\n {\n this.loader.destroy();\n this.loader = null;\n }\n};\n\n/**\n * Reference to **{@link https://github.com/englercj/resource-loader\n * resource-loader}**'s Resource class.\n * @see http://englercj.github.io/resource-loader/Resource.html\n * @class LoaderResource\n * @memberof PIXI\n */\nvar LoaderResource = Resource;\n\nexport { AppLoaderPlugin, Loader, LoaderResource, TextureLoader };\n//# sourceMappingURL=loaders.es.js.map\n","/*!\n * @pixi/particles - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/particles is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { BLEND_MODES, TYPES } from '@pixi/constants';\nimport { hex2rgb, createIndicesForQuads, correctBlendMode, premultiplyRgba, premultiplyTint } from '@pixi/utils';\nimport { Container } from '@pixi/display';\nimport { Geometry, Buffer, ObjectRenderer, Shader } from '@pixi/core';\nimport { Matrix } from '@pixi/math';\n\n/**\n * The ParticleContainer class is a really fast version of the Container built solely for speed,\n * so use when you need a lot of sprites or particles.\n *\n * The tradeoff of the ParticleContainer is that most advanced functionality will not work.\n * ParticleContainer implements the basic object transform (position, scale, rotation)\n * and some advanced functionality like tint (as of v4.5.6).\n *\n * Other more advanced functionality like masking, children, filters, etc will not work on sprites in this batch.\n *\n * It's extremely easy to use:\n * ```js\n * let container = new ParticleContainer();\n *\n * for (let i = 0; i < 100; ++i)\n * {\n * let sprite = PIXI.Sprite.from(\"myImage.png\");\n * container.addChild(sprite);\n * }\n * ```\n *\n * And here you have a hundred sprites that will be rendered at the speed of light.\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar ParticleContainer = /*@__PURE__*/(function (Container) {\n function ParticleContainer(maxSize, properties, batchSize, autoResize)\n {\n if ( maxSize === void 0 ) maxSize = 1500;\n if ( batchSize === void 0 ) batchSize = 16384;\n if ( autoResize === void 0 ) autoResize = false;\n\n Container.call(this);\n\n // Making sure the batch size is valid\n // 65535 is max vertex index in the index buffer (see ParticleRenderer)\n // so max number of particles is 65536 / 4 = 16384\n var maxBatchSize = 16384;\n\n if (batchSize > maxBatchSize)\n {\n batchSize = maxBatchSize;\n }\n\n /**\n * Set properties to be dynamic (true) / static (false)\n *\n * @member {boolean[]}\n * @private\n */\n this._properties = [false, true, false, false, false];\n\n /**\n * @member {number}\n * @private\n */\n this._maxSize = maxSize;\n\n /**\n * @member {number}\n * @private\n */\n this._batchSize = batchSize;\n\n /**\n * @member {Array}\n * @private\n */\n this._buffers = null;\n\n /**\n * for every batch stores _updateID corresponding to the last change in that batch\n * @member {number[]}\n * @private\n */\n this._bufferUpdateIDs = [];\n\n /**\n * when child inserted, removed or changes position this number goes up\n * @member {number[]}\n * @private\n */\n this._updateID = 0;\n\n /**\n * @member {boolean}\n *\n */\n this.interactiveChildren = false;\n\n /**\n * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL`\n * to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * If true, container allocates more batches in case there are more than `maxSize` particles.\n * @member {boolean}\n * @default false\n */\n this.autoResize = autoResize;\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * Default to true here as performance is usually the priority for particles.\n *\n * @member {boolean}\n * @default true\n */\n this.roundPixels = true;\n\n /**\n * The texture used to render the children.\n *\n * @readonly\n * @member {PIXI.BaseTexture}\n */\n this.baseTexture = null;\n\n this.setProperties(properties);\n\n /**\n * The tint applied to the container.\n * This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @private\n * @member {number}\n * @default 0xFFFFFF\n */\n this._tint = 0;\n this.tintRgb = new Float32Array(4);\n this.tint = 0xFFFFFF;\n }\n\n if ( Container ) ParticleContainer.__proto__ = Container;\n ParticleContainer.prototype = Object.create( Container && Container.prototype );\n ParticleContainer.prototype.constructor = ParticleContainer;\n\n var prototypeAccessors = { tint: { configurable: true } };\n\n /**\n * Sets the private properties array to dynamic / static based on the passed properties object\n *\n * @param {object} properties - The properties to be uploaded\n */\n ParticleContainer.prototype.setProperties = function setProperties (properties)\n {\n if (properties)\n {\n this._properties[0] = 'vertices' in properties || 'scale' in properties\n ? !!properties.vertices || !!properties.scale : this._properties[0];\n this._properties[1] = 'position' in properties ? !!properties.position : this._properties[1];\n this._properties[2] = 'rotation' in properties ? !!properties.rotation : this._properties[2];\n this._properties[3] = 'uvs' in properties ? !!properties.uvs : this._properties[3];\n this._properties[4] = 'tint' in properties || 'alpha' in properties\n ? !!properties.tint || !!properties.alpha : this._properties[4];\n }\n };\n\n /**\n * Updates the object transform for rendering\n *\n * @private\n */\n ParticleContainer.prototype.updateTransform = function updateTransform ()\n {\n // TODO don't need to!\n this.displayObjectUpdateTransform();\n // PIXI.Container.prototype.updateTransform.call( this );\n };\n\n /**\n * The tint applied to the container. This is a hex value.\n * A value of 0xFFFFFF will remove any tint effect.\n ** IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer.\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._tint = value;\n hex2rgb(value, this.tintRgb);\n };\n\n /**\n * Renders the container using the WebGL renderer\n *\n * @private\n * @param {PIXI.Renderer} renderer - The webgl renderer\n */\n ParticleContainer.prototype.render = function render (renderer)\n {\n var this$1 = this;\n\n if (!this.visible || this.worldAlpha <= 0 || !this.children.length || !this.renderable)\n {\n return;\n }\n\n if (!this.baseTexture)\n {\n this.baseTexture = this.children[0]._texture.baseTexture;\n if (!this.baseTexture.valid)\n {\n this.baseTexture.once('update', function () { return this$1.onChildrenChange(0); });\n }\n }\n\n renderer.batch.setObjectRenderer(renderer.plugins.particle);\n renderer.plugins.particle.render(this);\n };\n\n /**\n * Set the flag that static data should be updated to true\n *\n * @private\n * @param {number} smallestChildIndex - The smallest child index\n */\n ParticleContainer.prototype.onChildrenChange = function onChildrenChange (smallestChildIndex)\n {\n var bufferIndex = Math.floor(smallestChildIndex / this._batchSize);\n\n while (this._bufferUpdateIDs.length < bufferIndex)\n {\n this._bufferUpdateIDs.push(0);\n }\n this._bufferUpdateIDs[bufferIndex] = ++this._updateID;\n };\n\n ParticleContainer.prototype.dispose = function dispose ()\n {\n if (this._buffers)\n {\n for (var i = 0; i < this._buffers.length; ++i)\n {\n this._buffers[i].destroy();\n }\n\n this._buffers = null;\n }\n };\n\n /**\n * Destroys the container\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their\n * destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n ParticleContainer.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.dispose();\n\n this._properties = null;\n this._buffers = null;\n this._bufferUpdateIDs = null;\n };\n\n Object.defineProperties( ParticleContainer.prototype, prototypeAccessors );\n\n return ParticleContainer;\n}(Container));\n\n/**\n * @author Mat Groves\n *\n * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/\n * for creating the original PixiJS version!\n * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that\n * they now share 4 bytes on the vertex buffer\n *\n * Heavily inspired by LibGDX's ParticleBuffer:\n * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleBuffer.java\n */\n\n/**\n * The particle buffer manages the static and dynamic buffers for a particle container.\n *\n * @class\n * @private\n * @memberof PIXI\n */\nvar ParticleBuffer = function ParticleBuffer(properties, dynamicPropertyFlags, size)\n{\n this.geometry = new Geometry();\n\n this.indexBuffer = null;\n\n /**\n * The number of particles the buffer can hold\n *\n * @private\n * @member {number}\n */\n this.size = size;\n\n /**\n * A list of the properties that are dynamic.\n *\n * @private\n * @member {object[]}\n */\n this.dynamicProperties = [];\n\n /**\n * A list of the properties that are static.\n *\n * @private\n * @member {object[]}\n */\n this.staticProperties = [];\n\n for (var i = 0; i < properties.length; ++i)\n {\n var property = properties[i];\n\n // Make copy of properties object so that when we edit the offset it doesn't\n // change all other instances of the object literal\n property = {\n attributeName: property.attributeName,\n size: property.size,\n uploadFunction: property.uploadFunction,\n type: property.type || TYPES.FLOAT,\n offset: property.offset,\n };\n\n if (dynamicPropertyFlags[i])\n {\n this.dynamicProperties.push(property);\n }\n else\n {\n this.staticProperties.push(property);\n }\n }\n\n this.staticStride = 0;\n this.staticBuffer = null;\n this.staticData = null;\n this.staticDataUint32 = null;\n\n this.dynamicStride = 0;\n this.dynamicBuffer = null;\n this.dynamicData = null;\n this.dynamicDataUint32 = null;\n\n this._updateID = 0;\n\n this.initBuffers();\n};\n\n/**\n * Sets up the renderer context and necessary buffers.\n *\n * @private\n */\nParticleBuffer.prototype.initBuffers = function initBuffers ()\n{\n var geometry = this.geometry;\n\n var dynamicOffset = 0;\n\n /**\n * Holds the indices of the geometry (quads) to draw\n *\n * @member {Uint16Array}\n * @private\n */\n this.indexBuffer = new Buffer(createIndicesForQuads(this.size), true, true);\n geometry.addIndex(this.indexBuffer);\n\n this.dynamicStride = 0;\n\n for (var i = 0; i < this.dynamicProperties.length; ++i)\n {\n var property = this.dynamicProperties[i];\n\n property.offset = dynamicOffset;\n dynamicOffset += property.size;\n this.dynamicStride += property.size;\n }\n\n var dynBuffer = new ArrayBuffer(this.size * this.dynamicStride * 4 * 4);\n\n this.dynamicData = new Float32Array(dynBuffer);\n this.dynamicDataUint32 = new Uint32Array(dynBuffer);\n this.dynamicBuffer = new Buffer(this.dynamicData, false, false);\n\n // static //\n var staticOffset = 0;\n\n this.staticStride = 0;\n\n for (var i$1 = 0; i$1 < this.staticProperties.length; ++i$1)\n {\n var property$1 = this.staticProperties[i$1];\n\n property$1.offset = staticOffset;\n staticOffset += property$1.size;\n this.staticStride += property$1.size;\n }\n\n var statBuffer = new ArrayBuffer(this.size * this.staticStride * 4 * 4);\n\n this.staticData = new Float32Array(statBuffer);\n this.staticDataUint32 = new Uint32Array(statBuffer);\n this.staticBuffer = new Buffer(this.staticData, true, false);\n\n for (var i$2 = 0; i$2 < this.dynamicProperties.length; ++i$2)\n {\n var property$2 = this.dynamicProperties[i$2];\n\n geometry.addAttribute(\n property$2.attributeName,\n this.dynamicBuffer,\n 0,\n property$2.type === TYPES.UNSIGNED_BYTE,\n property$2.type,\n this.dynamicStride * 4,\n property$2.offset * 4\n );\n }\n\n for (var i$3 = 0; i$3 < this.staticProperties.length; ++i$3)\n {\n var property$3 = this.staticProperties[i$3];\n\n geometry.addAttribute(\n property$3.attributeName,\n this.staticBuffer,\n 0,\n property$3.type === TYPES.UNSIGNED_BYTE,\n property$3.type,\n this.staticStride * 4,\n property$3.offset * 4\n );\n }\n};\n\n/**\n * Uploads the dynamic properties.\n *\n * @private\n * @param {PIXI.DisplayObject[]} children - The children to upload.\n * @param {number} startIndex - The index to start at.\n * @param {number} amount - The number to upload.\n */\nParticleBuffer.prototype.uploadDynamic = function uploadDynamic (children, startIndex, amount)\n{\n for (var i = 0; i < this.dynamicProperties.length; i++)\n {\n var property = this.dynamicProperties[i];\n\n property.uploadFunction(children, startIndex, amount,\n property.type === TYPES.UNSIGNED_BYTE ? this.dynamicDataUint32 : this.dynamicData,\n this.dynamicStride, property.offset);\n }\n\n this.dynamicBuffer._updateID++;\n};\n\n/**\n * Uploads the static properties.\n *\n * @private\n * @param {PIXI.DisplayObject[]} children - The children to upload.\n * @param {number} startIndex - The index to start at.\n * @param {number} amount - The number to upload.\n */\nParticleBuffer.prototype.uploadStatic = function uploadStatic (children, startIndex, amount)\n{\n for (var i = 0; i < this.staticProperties.length; i++)\n {\n var property = this.staticProperties[i];\n\n property.uploadFunction(children, startIndex, amount,\n property.type === TYPES.UNSIGNED_BYTE ? this.staticDataUint32 : this.staticData,\n this.staticStride, property.offset);\n }\n\n this.staticBuffer._updateID++;\n};\n\n/**\n * Destroys the ParticleBuffer.\n *\n * @private\n */\nParticleBuffer.prototype.destroy = function destroy ()\n{\n this.indexBuffer = null;\n\n this.dynamicProperties = null;\n // this.dynamicBuffer.destroy();\n this.dynamicBuffer = null;\n this.dynamicData = null;\n this.dynamicDataUint32 = null;\n\n this.staticProperties = null;\n // this.staticBuffer.destroy();\n this.staticBuffer = null;\n this.staticData = null;\n this.staticDataUint32 = null;\n // all buffers are destroyed inside geometry\n this.geometry.destroy();\n};\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\nattribute vec4 aColor;\\n\\nattribute vec2 aPositionCoord;\\nattribute float aRotation;\\n\\nuniform mat3 translationMatrix;\\nuniform vec4 uColor;\\n\\nvarying vec2 vTextureCoord;\\nvarying vec4 vColor;\\n\\nvoid main(void){\\n float x = (aVertexPosition.x) * cos(aRotation) - (aVertexPosition.y) * sin(aRotation);\\n float y = (aVertexPosition.x) * sin(aRotation) + (aVertexPosition.y) * cos(aRotation);\\n\\n vec2 v = vec2(x, y);\\n v = v + aPositionCoord;\\n\\n gl_Position = vec4((translationMatrix * vec3(v, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vColor = aColor * uColor;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\nvarying vec4 vColor;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n vec4 color = texture2D(uSampler, vTextureCoord) * vColor;\\n gl_FragColor = color;\\n}\";\n\n/**\n * @author Mat Groves\n *\n * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/\n * for creating the original PixiJS version!\n * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that they now\n * share 4 bytes on the vertex buffer\n *\n * Heavily inspired by LibGDX's ParticleRenderer:\n * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleRenderer.java\n */\n\n/**\n * Renderer for Particles that is designer for speed over feature set.\n *\n * @class\n * @memberof PIXI\n */\nvar ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function ParticleRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n // 65535 is max vertex index in the index buffer (see ParticleRenderer)\n // so max number of particles is 65536 / 4 = 16384\n // and max number of element in the index buffer is 16384 * 6 = 98304\n // Creating a full index buffer, overhead is 98304 * 2 = 196Ko\n // let numIndices = 98304;\n\n /**\n * The default shader that is used if a sprite doesn't have a more specific one.\n *\n * @member {PIXI.Shader}\n */\n this.shader = null;\n\n this.properties = null;\n\n this.tempMatrix = new Matrix();\n\n this.properties = [\n // verticesData\n {\n attributeName: 'aVertexPosition',\n size: 2,\n uploadFunction: this.uploadVertices,\n offset: 0,\n },\n // positionData\n {\n attributeName: 'aPositionCoord',\n size: 2,\n uploadFunction: this.uploadPosition,\n offset: 0,\n },\n // rotationData\n {\n attributeName: 'aRotation',\n size: 1,\n uploadFunction: this.uploadRotation,\n offset: 0,\n },\n // uvsData\n {\n attributeName: 'aTextureCoord',\n size: 2,\n uploadFunction: this.uploadUvs,\n offset: 0,\n },\n // tintData\n {\n attributeName: 'aColor',\n size: 1,\n type: TYPES.UNSIGNED_BYTE,\n uploadFunction: this.uploadTint,\n offset: 0,\n } ];\n\n this.shader = Shader.from(vertex, fragment, {});\n }\n\n if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer;\n ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n ParticleRenderer.prototype.constructor = ParticleRenderer;\n\n /**\n * Renders the particle container object.\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n */\n ParticleRenderer.prototype.render = function render (container)\n {\n var children = container.children;\n var maxSize = container._maxSize;\n var batchSize = container._batchSize;\n var renderer = this.renderer;\n var totalChildren = children.length;\n\n if (totalChildren === 0)\n {\n return;\n }\n else if (totalChildren > maxSize && !container.autoResize)\n {\n totalChildren = maxSize;\n }\n\n var buffers = container._buffers;\n\n if (!buffers)\n {\n buffers = container._buffers = this.generateBuffers(container);\n }\n\n var baseTexture = children[0]._texture.baseTexture;\n\n // if the uvs have not updated then no point rendering just yet!\n this.renderer.state.setBlendMode(correctBlendMode(container.blendMode, baseTexture.premultiplyAlpha));\n\n var gl = renderer.gl;\n\n var m = container.worldTransform.copyTo(this.tempMatrix);\n\n m.prepend(renderer.globalUniforms.uniforms.projectionMatrix);\n\n this.shader.uniforms.translationMatrix = m.toArray(true);\n\n this.shader.uniforms.uColor = premultiplyRgba(container.tintRgb,\n container.worldAlpha, this.shader.uniforms.uColor, baseTexture.premultiplyAlpha);\n\n this.shader.uniforms.uSampler = baseTexture;\n\n this.renderer.shader.bind(this.shader);\n\n var updateStatic = false;\n\n // now lets upload and render the buffers..\n for (var i = 0, j = 0; i < totalChildren; i += batchSize, j += 1)\n {\n var amount = (totalChildren - i);\n\n if (amount > batchSize)\n {\n amount = batchSize;\n }\n\n if (j >= buffers.length)\n {\n buffers.push(this._generateOneMoreBuffer(container));\n }\n\n var buffer = buffers[j];\n\n // we always upload the dynamic\n buffer.uploadDynamic(children, i, amount);\n\n var bid = container._bufferUpdateIDs[j] || 0;\n\n updateStatic = updateStatic || (buffer._updateID < bid);\n // we only upload the static content when we have to!\n if (updateStatic)\n {\n buffer._updateID = container._updateID;\n buffer.uploadStatic(children, i, amount);\n }\n\n // bind the buffer\n renderer.geometry.bind(buffer.geometry);\n gl.drawElements(gl.TRIANGLES, amount * 6, gl.UNSIGNED_SHORT, 0);\n }\n };\n\n /**\n * Creates one particle buffer for each child in the container we want to render and updates internal properties\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n * @return {PIXI.ParticleBuffer[]} The buffers\n * @private\n */\n ParticleRenderer.prototype.generateBuffers = function generateBuffers (container)\n {\n var buffers = [];\n var size = container._maxSize;\n var batchSize = container._batchSize;\n var dynamicPropertyFlags = container._properties;\n\n for (var i = 0; i < size; i += batchSize)\n {\n buffers.push(new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize));\n }\n\n return buffers;\n };\n\n /**\n * Creates one more particle buffer, because container has autoResize feature\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n * @return {PIXI.ParticleBuffer} generated buffer\n * @private\n */\n ParticleRenderer.prototype._generateOneMoreBuffer = function _generateOneMoreBuffer (container)\n {\n var batchSize = container._batchSize;\n var dynamicPropertyFlags = container._properties;\n\n return new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize);\n };\n\n /**\n * Uploads the vertices.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their vertices uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadVertices = function uploadVertices (children, startIndex, amount, array, stride, offset)\n {\n var w0 = 0;\n var w1 = 0;\n var h0 = 0;\n var h1 = 0;\n\n for (var i = 0; i < amount; ++i)\n {\n var sprite = children[startIndex + i];\n var texture = sprite._texture;\n var sx = sprite.scale.x;\n var sy = sprite.scale.y;\n var trim = texture.trim;\n var orig = texture.orig;\n\n if (trim)\n {\n // if the sprite is trimmed and is not a tilingsprite then we need to add the\n // extra space before transforming the sprite coords..\n w1 = trim.x - (sprite.anchor.x * orig.width);\n w0 = w1 + trim.width;\n\n h1 = trim.y - (sprite.anchor.y * orig.height);\n h0 = h1 + trim.height;\n }\n else\n {\n w0 = (orig.width) * (1 - sprite.anchor.x);\n w1 = (orig.width) * -sprite.anchor.x;\n\n h0 = orig.height * (1 - sprite.anchor.y);\n h1 = orig.height * -sprite.anchor.y;\n }\n\n array[offset] = w1 * sx;\n array[offset + 1] = h1 * sy;\n\n array[offset + stride] = w0 * sx;\n array[offset + stride + 1] = h1 * sy;\n\n array[offset + (stride * 2)] = w0 * sx;\n array[offset + (stride * 2) + 1] = h0 * sy;\n\n array[offset + (stride * 3)] = w1 * sx;\n array[offset + (stride * 3) + 1] = h0 * sy;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the position.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their positions uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadPosition = function uploadPosition (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; i++)\n {\n var spritePosition = children[startIndex + i].position;\n\n array[offset] = spritePosition.x;\n array[offset + 1] = spritePosition.y;\n\n array[offset + stride] = spritePosition.x;\n array[offset + stride + 1] = spritePosition.y;\n\n array[offset + (stride * 2)] = spritePosition.x;\n array[offset + (stride * 2) + 1] = spritePosition.y;\n\n array[offset + (stride * 3)] = spritePosition.x;\n array[offset + (stride * 3) + 1] = spritePosition.y;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the rotiation.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadRotation = function uploadRotation (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; i++)\n {\n var spriteRotation = children[startIndex + i].rotation;\n\n array[offset] = spriteRotation;\n array[offset + stride] = spriteRotation;\n array[offset + (stride * 2)] = spriteRotation;\n array[offset + (stride * 3)] = spriteRotation;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the Uvs\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadUvs = function uploadUvs (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; ++i)\n {\n var textureUvs = children[startIndex + i]._texture._uvs;\n\n if (textureUvs)\n {\n array[offset] = textureUvs.x0;\n array[offset + 1] = textureUvs.y0;\n\n array[offset + stride] = textureUvs.x1;\n array[offset + stride + 1] = textureUvs.y1;\n\n array[offset + (stride * 2)] = textureUvs.x2;\n array[offset + (stride * 2) + 1] = textureUvs.y2;\n\n array[offset + (stride * 3)] = textureUvs.x3;\n array[offset + (stride * 3) + 1] = textureUvs.y3;\n\n offset += stride * 4;\n }\n else\n {\n // TODO you know this can be easier!\n array[offset] = 0;\n array[offset + 1] = 0;\n\n array[offset + stride] = 0;\n array[offset + stride + 1] = 0;\n\n array[offset + (stride * 2)] = 0;\n array[offset + (stride * 2) + 1] = 0;\n\n array[offset + (stride * 3)] = 0;\n array[offset + (stride * 3) + 1] = 0;\n\n offset += stride * 4;\n }\n }\n };\n\n /**\n * Uploads the tint.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadTint = function uploadTint (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; ++i)\n {\n var sprite = children[startIndex + i];\n var premultiplied = sprite._texture.baseTexture.premultiplyAlpha;\n var alpha = sprite.alpha;\n // we dont call extra function if alpha is 1.0, that's faster\n var argb = alpha < 1.0 && premultiplied ? premultiplyTint(sprite._tintRGB, alpha)\n : sprite._tintRGB + (alpha * 255 << 24);\n\n array[offset] = argb;\n array[offset + stride] = argb;\n array[offset + (stride * 2)] = argb;\n array[offset + (stride * 3)] = argb;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Destroys the ParticleRenderer.\n */\n ParticleRenderer.prototype.destroy = function destroy ()\n {\n ObjectRenderer.prototype.destroy.call(this);\n\n if (this.shader)\n {\n this.shader.destroy();\n this.shader = null;\n }\n\n this.tempMatrix = null;\n };\n\n return ParticleRenderer;\n}(ObjectRenderer));\n\nexport { ParticleContainer, ParticleRenderer };\n//# sourceMappingURL=particles.es.js.map\n","/*!\n * @pixi/spritesheet - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/spritesheet is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Rectangle } from '@pixi/math';\nimport { Texture } from '@pixi/core';\nimport { getResolutionOfUrl, url } from '@pixi/utils';\nimport { LoaderResource } from '@pixi/loaders';\n\n/**\n * Utility class for maintaining reference to a collection\n * of Textures on a single Spritesheet.\n *\n * To access a sprite sheet from your code pass its JSON data file to Pixi's loader:\n *\n * ```js\n * PIXI.Loader.shared.add(\"images/spritesheet.json\").load(setup);\n *\n * function setup() {\n * let sheet = PIXI.Loader.shared.resources[\"images/spritesheet.json\"].spritesheet;\n * ...\n * }\n * ```\n * With the `sheet.textures` you can create Sprite objects,`sheet.animations` can be used to create an AnimatedSprite.\n *\n * Sprite sheets can be packed using tools like {@link https://codeandweb.com/texturepacker|TexturePacker},\n * {@link https://renderhjs.net/shoebox/|Shoebox} or {@link https://github.com/krzysztof-o/spritesheet.js|Spritesheet.js}.\n * Default anchor points (see {@link PIXI.Texture#defaultAnchor}) and grouping of animation sprites are currently only\n * supported by TexturePacker.\n *\n * @class\n * @memberof PIXI\n */\nvar Spritesheet = function Spritesheet(baseTexture, data, resolutionFilename)\n{\n if ( resolutionFilename === void 0 ) resolutionFilename = null;\n\n /**\n * Reference to ths source texture\n * @type {PIXI.BaseTexture}\n */\n this.baseTexture = baseTexture;\n\n /**\n * A map containing all textures of the sprite sheet.\n * Can be used to create a {@link PIXI.Sprite|Sprite}:\n * ```js\n * new PIXI.Sprite(sheet.textures[\"image.png\"]);\n * ```\n * @member {Object}\n */\n this.textures = {};\n\n /**\n * A map containing the textures for each animation.\n * Can be used to create an {@link PIXI.AnimatedSprite|AnimatedSprite}:\n * ```js\n * new PIXI.AnimatedSprite(sheet.animations[\"anim_name\"])\n * ```\n * @member {Object}\n */\n this.animations = {};\n\n /**\n * Reference to the original JSON data.\n * @type {Object}\n */\n this.data = data;\n\n /**\n * The resolution of the spritesheet.\n * @type {number}\n */\n this.resolution = this._updateResolution(\n resolutionFilename\n || (this.baseTexture.resource ? this.baseTexture.resource.url : null)\n );\n\n /**\n * Map of spritesheet frames.\n * @type {Object}\n * @private\n */\n this._frames = this.data.frames;\n\n /**\n * Collection of frame names.\n * @type {string[]}\n * @private\n */\n this._frameKeys = Object.keys(this._frames);\n\n /**\n * Current batch index being processed.\n * @type {number}\n * @private\n */\n this._batchIndex = 0;\n\n /**\n * Callback when parse is completed.\n * @type {Function}\n * @private\n */\n this._callback = null;\n};\n\nvar staticAccessors = { BATCH_SIZE: { configurable: true } };\n\n/**\n * Generate the resolution from the filename or fallback\n * to the meta.scale field of the JSON data.\n *\n * @private\n * @param {string} resolutionFilename - The filename to use for resolving\n * the default resolution.\n * @return {number} Resolution to use for spritesheet.\n */\nstaticAccessors.BATCH_SIZE.get = function ()\n{\n return 1000;\n};\n\nSpritesheet.prototype._updateResolution = function _updateResolution (resolutionFilename)\n{\n var scale = this.data.meta.scale;\n\n // Use a defaultValue of `null` to check if a url-based resolution is set\n var resolution = getResolutionOfUrl(resolutionFilename, null);\n\n // No resolution found via URL\n if (resolution === null)\n {\n // Use the scale value or default to 1\n resolution = scale !== undefined ? parseFloat(scale) : 1;\n }\n\n // For non-1 resolutions, update baseTexture\n if (resolution !== 1)\n {\n this.baseTexture.setResolution(resolution);\n }\n\n return resolution;\n};\n\n/**\n * Parser spritesheet from loaded data. This is done asynchronously\n * to prevent creating too many Texture within a single process.\n *\n * @param {Function} callback - Callback when complete returns\n * a map of the Textures for this spritesheet.\n */\nSpritesheet.prototype.parse = function parse (callback)\n{\n this._batchIndex = 0;\n this._callback = callback;\n\n if (this._frameKeys.length <= Spritesheet.BATCH_SIZE)\n {\n this._processFrames(0);\n this._processAnimations();\n this._parseComplete();\n }\n else\n {\n this._nextBatch();\n }\n};\n\n/**\n * Process a batch of frames\n *\n * @private\n * @param {number} initialFrameIndex - The index of frame to start.\n */\nSpritesheet.prototype._processFrames = function _processFrames (initialFrameIndex)\n{\n var frameIndex = initialFrameIndex;\n var maxFrames = Spritesheet.BATCH_SIZE;\n\n while (frameIndex - initialFrameIndex < maxFrames && frameIndex < this._frameKeys.length)\n {\n var i = this._frameKeys[frameIndex];\n var data = this._frames[i];\n var rect = data.frame;\n\n if (rect)\n {\n var frame = null;\n var trim = null;\n var sourceSize = data.trimmed !== false && data.sourceSize\n ? data.sourceSize : data.frame;\n\n var orig = new Rectangle(\n 0,\n 0,\n Math.floor(sourceSize.w) / this.resolution,\n Math.floor(sourceSize.h) / this.resolution\n );\n\n if (data.rotated)\n {\n frame = new Rectangle(\n Math.floor(rect.x) / this.resolution,\n Math.floor(rect.y) / this.resolution,\n Math.floor(rect.h) / this.resolution,\n Math.floor(rect.w) / this.resolution\n );\n }\n else\n {\n frame = new Rectangle(\n Math.floor(rect.x) / this.resolution,\n Math.floor(rect.y) / this.resolution,\n Math.floor(rect.w) / this.resolution,\n Math.floor(rect.h) / this.resolution\n );\n }\n\n // Check to see if the sprite is trimmed\n if (data.trimmed !== false && data.spriteSourceSize)\n {\n trim = new Rectangle(\n Math.floor(data.spriteSourceSize.x) / this.resolution,\n Math.floor(data.spriteSourceSize.y) / this.resolution,\n Math.floor(rect.w) / this.resolution,\n Math.floor(rect.h) / this.resolution\n );\n }\n\n this.textures[i] = new Texture(\n this.baseTexture,\n frame,\n orig,\n trim,\n data.rotated ? 2 : 0,\n data.anchor\n );\n\n // lets also add the frame to pixi's global cache for 'from' and 'fromLoader' functions\n Texture.addToCache(this.textures[i], i);\n }\n\n frameIndex++;\n }\n};\n\n/**\n * Parse animations config\n *\n * @private\n */\nSpritesheet.prototype._processAnimations = function _processAnimations ()\n{\n var animations = this.data.animations || {};\n\n for (var animName in animations)\n {\n this.animations[animName] = [];\n for (var i = 0; i < animations[animName].length; i++)\n {\n var frameName = animations[animName][i];\n\n this.animations[animName].push(this.textures[frameName]);\n }\n }\n};\n\n/**\n * The parse has completed.\n *\n * @private\n */\nSpritesheet.prototype._parseComplete = function _parseComplete ()\n{\n var callback = this._callback;\n\n this._callback = null;\n this._batchIndex = 0;\n callback.call(this, this.textures);\n};\n\n/**\n * Begin the next batch of textures.\n *\n * @private\n */\nSpritesheet.prototype._nextBatch = function _nextBatch ()\n{\n var this$1 = this;\n\n this._processFrames(this._batchIndex * Spritesheet.BATCH_SIZE);\n this._batchIndex++;\n setTimeout(function () {\n if (this$1._batchIndex * Spritesheet.BATCH_SIZE < this$1._frameKeys.length)\n {\n this$1._nextBatch();\n }\n else\n {\n this$1._processAnimations();\n this$1._parseComplete();\n }\n }, 0);\n};\n\n/**\n * Destroy Spritesheet and don't use after this.\n *\n * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well\n */\nSpritesheet.prototype.destroy = function destroy (destroyBase)\n{\n if ( destroyBase === void 0 ) destroyBase = false;\n\n for (var i in this.textures)\n {\n this.textures[i].destroy();\n }\n this._frames = null;\n this._frameKeys = null;\n this.data = null;\n this.textures = null;\n if (destroyBase)\n {\n this.baseTexture.destroy();\n }\n this.baseTexture = null;\n};\n\nObject.defineProperties( Spritesheet, staticAccessors );\n\n/**\n * {@link PIXI.Loader Loader} middleware for loading texture atlases that have been created with\n * TexturePacker or similar JSON-based spritesheet.\n *\n * This middleware automatically generates Texture resources.\n *\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar SpritesheetLoader = function SpritesheetLoader () {};\n\nSpritesheetLoader.use = function use (resource, next)\n{\n var imageResourceName = (resource.name) + \"_image\";\n\n // skip if no data, its not json, it isn't spritesheet data, or the image resource already exists\n if (!resource.data\n || resource.type !== LoaderResource.TYPE.JSON\n || !resource.data.frames\n || this.resources[imageResourceName]\n )\n {\n next();\n\n return;\n }\n\n var loadOptions = {\n crossOrigin: resource.crossOrigin,\n metadata: resource.metadata.imageMetadata,\n parentResource: resource,\n };\n\n var resourcePath = SpritesheetLoader.getResourcePath(resource, this.baseUrl);\n\n // load the image for this sheet\n this.add(imageResourceName, resourcePath, loadOptions, function onImageLoad(res)\n {\n if (res.error)\n {\n next(res.error);\n\n return;\n }\n\n var spritesheet = new Spritesheet(\n res.texture.baseTexture,\n resource.data,\n resource.url\n );\n\n spritesheet.parse(function () {\n resource.spritesheet = spritesheet;\n resource.textures = spritesheet.textures;\n next();\n });\n });\n};\n\n/**\n * Get the spritesheets root path\n * @param {PIXI.LoaderResource} resource - Resource to check path\n * @param {string} baseUrl - Base root url\n */\nSpritesheetLoader.getResourcePath = function getResourcePath (resource, baseUrl)\n{\n // Prepend url path unless the resource image is a data url\n if (resource.isDataUrl)\n {\n return resource.data.meta.image;\n }\n\n return url.resolve(resource.url.replace(baseUrl, ''), resource.data.meta.image);\n};\n\nexport { Spritesheet, SpritesheetLoader };\n//# sourceMappingURL=spritesheet.es.js.map\n","/*!\n * @pixi/sprite-tiling - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/sprite-tiling is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture, TextureMatrix, ObjectRenderer, Shader, QuadUv } from '@pixi/core';\nimport { Point, Rectangle, Transform, Matrix } from '@pixi/math';\nimport { TextureCache, premultiplyTintToRgba, correctBlendMode } from '@pixi/utils';\nimport { Sprite } from '@pixi/sprite';\nimport { WRAP_MODES } from '@pixi/constants';\n\nvar tempPoint = new Point();\n\n/**\n * A tiling sprite is a fast way of rendering a tiling image\n *\n * @class\n * @extends PIXI.Sprite\n * @memberof PIXI\n */\nvar TilingSprite = /*@__PURE__*/(function (Sprite) {\n function TilingSprite(texture, width, height)\n {\n if ( width === void 0 ) width = 100;\n if ( height === void 0 ) height = 100;\n\n Sprite.call(this, texture);\n\n /**\n * Tile transform\n *\n * @member {PIXI.Transform}\n */\n this.tileTransform = new Transform();\n\n // /// private\n\n /**\n * The with of the tiling sprite\n *\n * @member {number}\n * @private\n */\n this._width = width;\n\n /**\n * The height of the tiling sprite\n *\n * @member {number}\n * @private\n */\n this._height = height;\n\n /**\n * Canvas pattern\n *\n * @type {CanvasPattern}\n * @private\n */\n this._canvasPattern = null;\n\n /**\n * matrix that is applied to UV to get the coords in Texture normalized space to coords in BaseTexture space\n *\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = texture.uvMatrix || new TextureMatrix(texture);\n\n /**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_render' method.\n *\n * @member {string}\n * @default 'tilingSprite'\n */\n this.pluginName = 'tilingSprite';\n\n /**\n * Whether or not anchor affects uvs\n *\n * @member {boolean}\n * @default false\n */\n this.uvRespectAnchor = false;\n }\n\n if ( Sprite ) TilingSprite.__proto__ = Sprite;\n TilingSprite.prototype = Object.create( Sprite && Sprite.prototype );\n TilingSprite.prototype.constructor = TilingSprite;\n\n var prototypeAccessors = { clampMargin: { configurable: true },tileScale: { configurable: true },tilePosition: { configurable: true },width: { configurable: true },height: { configurable: true } };\n /**\n * Changes frame clamping in corresponding textureTransform, shortcut\n * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas\n *\n * @default 0.5\n * @member {number}\n */\n prototypeAccessors.clampMargin.get = function ()\n {\n return this.uvMatrix.clampMargin;\n };\n\n prototypeAccessors.clampMargin.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uvMatrix.clampMargin = value;\n this.uvMatrix.update(true);\n };\n\n /**\n * The scaling of the image that is being tiled\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.tileScale.get = function ()\n {\n return this.tileTransform.scale;\n };\n\n prototypeAccessors.tileScale.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.tileTransform.scale.copyFrom(value);\n };\n\n /**\n * The offset of the image that is being tiled\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.tilePosition.get = function ()\n {\n return this.tileTransform.position;\n };\n\n prototypeAccessors.tilePosition.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.tileTransform.position.copyFrom(value);\n };\n\n /**\n * @private\n */\n TilingSprite.prototype._onTextureUpdate = function _onTextureUpdate ()\n {\n if (this.uvMatrix)\n {\n this.uvMatrix.texture = this._texture;\n }\n this._cachedTint = 0xFFFFFF;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n TilingSprite.prototype._render = function _render (renderer)\n {\n // tweak our texture temporarily..\n var texture = this._texture;\n\n if (!texture || !texture.valid)\n {\n return;\n }\n\n this.tileTransform.updateLocalTransform();\n this.uvMatrix.update();\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n renderer.plugins[this.pluginName].render(this);\n };\n\n /**\n * Updates the bounds of the tiling sprite.\n *\n * @protected\n */\n TilingSprite.prototype._calculateBounds = function _calculateBounds ()\n {\n var minX = this._width * -this._anchor._x;\n var minY = this._height * -this._anchor._y;\n var maxX = this._width * (1 - this._anchor._x);\n var maxY = this._height * (1 - this._anchor._y);\n\n this._bounds.addFrame(this.transform, minX, minY, maxX, maxY);\n };\n\n /**\n * Gets the local bounds of the sprite object.\n *\n * @param {PIXI.Rectangle} rect - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n TilingSprite.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n // we can do a fast local bounds if the sprite has no children!\n if (this.children.length === 0)\n {\n this._bounds.minX = this._width * -this._anchor._x;\n this._bounds.minY = this._height * -this._anchor._y;\n this._bounds.maxX = this._width * (1 - this._anchor._x);\n this._bounds.maxY = this._height * (1 - this._anchor._y);\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n }\n\n return Sprite.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * Checks if a point is inside this tiling sprite.\n *\n * @param {PIXI.Point} point - the point to check\n * @return {boolean} Whether or not the sprite contains the point.\n */\n TilingSprite.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, tempPoint);\n\n var width = this._width;\n var height = this._height;\n var x1 = -width * this.anchor._x;\n\n if (tempPoint.x >= x1 && tempPoint.x < x1 + width)\n {\n var y1 = -height * this.anchor._y;\n\n if (tempPoint.y >= y1 && tempPoint.y < y1 + height)\n {\n return true;\n }\n }\n\n return false;\n };\n\n /**\n * Destroys this sprite and optionally its texture and children\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well\n */\n TilingSprite.prototype.destroy = function destroy (options)\n {\n Sprite.prototype.destroy.call(this, options);\n\n this.tileTransform = null;\n this.uvMatrix = null;\n };\n\n /**\n * Helper function that creates a new tiling sprite based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source - Source to create texture from\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @return {PIXI.TilingSprite} The newly created texture\n */\n TilingSprite.from = function from (source, width, height)\n {\n return new TilingSprite(Texture.from(source), width, height);\n };\n\n /**\n * Helper function that creates a tiling sprite that will use a texture from the TextureCache based on the frameId\n * The frame ids are created when a Texture packer file has been loaded\n *\n * @static\n * @param {string} frameId - The frame Id of the texture in the cache\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @return {PIXI.TilingSprite} A new TilingSprite using a texture from the texture cache matching the frameId\n */\n TilingSprite.fromFrame = function fromFrame (frameId, width, height)\n {\n var texture = TextureCache[frameId];\n\n if (!texture)\n {\n throw new Error((\"The frameId \\\"\" + frameId + \"\\\" does not exist in the texture cache \" + (this)));\n }\n\n return new TilingSprite(texture, width, height);\n };\n\n /**\n * Helper function that creates a sprite that will contain a texture based on an image url\n * If the image is not in the texture cache it will be loaded\n *\n * @static\n * @param {string} imageId - The image url of the texture\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @param {Object} [options] - See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.TilingSprite} A new TilingSprite using a texture from the texture cache matching the image id\n */\n TilingSprite.fromImage = function fromImage (imageId, width, height, options)\n {\n // Fallback support for crossorigin, scaleMode parameters\n if (options && typeof options !== 'object')\n {\n options = {\n scaleMode: arguments[4],\n resourceOptions: {\n crossorigin: arguments[3],\n },\n };\n }\n\n return new TilingSprite(Texture.from(imageId, options), width, height);\n };\n\n /**\n * The width of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this._width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._width = value;\n };\n\n /**\n * The height of the TilingSprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this._height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._height = value;\n };\n\n Object.defineProperties( TilingSprite.prototype, prototypeAccessors );\n\n return TilingSprite;\n}(Sprite));\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform mat3 uTransform;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = (uTransform * vec3(aTextureCoord, 1.0)).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform vec4 uColor;\\nuniform mat3 uMapCoord;\\nuniform vec4 uClampFrame;\\nuniform vec2 uClampOffset;\\n\\nvoid main(void)\\n{\\n vec2 coord = mod(vTextureCoord - uClampOffset, vec2(1.0, 1.0)) + uClampOffset;\\n coord = (uMapCoord * vec3(coord, 1.0)).xy;\\n coord = clamp(coord, uClampFrame.xy, uClampFrame.zw);\\n\\n vec4 sample = texture2D(uSampler, coord);\\n gl_FragColor = sample * uColor;\\n}\\n\";\n\nvar fragmentSimple = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform vec4 uColor;\\n\\nvoid main(void)\\n{\\n vec4 sample = texture2D(uSampler, vTextureCoord);\\n gl_FragColor = sample * uColor;\\n}\\n\";\n\nvar tempMat = new Matrix();\n\n/**\n * WebGL renderer plugin for tiling sprites\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.ObjectRenderer\n */\nvar TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function TilingSpriteRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n var uniforms = { globals: this.renderer.globalUniforms };\n\n this.shader = Shader.from(vertex, fragment, uniforms);\n\n this.simpleShader = Shader.from(vertex, fragmentSimple, uniforms);\n\n this.quad = new QuadUv();\n }\n\n if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer;\n TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer;\n\n /**\n *\n * @param {PIXI.TilingSprite} ts tilingSprite to be rendered\n */\n TilingSpriteRenderer.prototype.render = function render (ts)\n {\n var renderer = this.renderer;\n var quad = this.quad;\n\n var vertices = quad.vertices;\n\n vertices[0] = vertices[6] = (ts._width) * -ts.anchor.x;\n vertices[1] = vertices[3] = ts._height * -ts.anchor.y;\n\n vertices[2] = vertices[4] = (ts._width) * (1.0 - ts.anchor.x);\n vertices[5] = vertices[7] = ts._height * (1.0 - ts.anchor.y);\n\n if (ts.uvRespectAnchor)\n {\n vertices = quad.uvs;\n\n vertices[0] = vertices[6] = -ts.anchor.x;\n vertices[1] = vertices[3] = -ts.anchor.y;\n\n vertices[2] = vertices[4] = 1.0 - ts.anchor.x;\n vertices[5] = vertices[7] = 1.0 - ts.anchor.y;\n }\n\n quad.invalidate();\n\n var tex = ts._texture;\n var baseTex = tex.baseTexture;\n var lt = ts.tileTransform.localTransform;\n var uv = ts.uvMatrix;\n var isSimple = baseTex.isPowerOfTwo\n && tex.frame.width === baseTex.width && tex.frame.height === baseTex.height;\n\n // auto, force repeat wrapMode for big tiling textures\n if (isSimple)\n {\n if (!baseTex._glTextures[renderer.CONTEXT_UID])\n {\n if (baseTex.wrapMode === WRAP_MODES.CLAMP)\n {\n baseTex.wrapMode = WRAP_MODES.REPEAT;\n }\n }\n else\n {\n isSimple = baseTex.wrapMode !== WRAP_MODES.CLAMP;\n }\n }\n\n var shader = isSimple ? this.simpleShader : this.shader;\n\n var w = tex.width;\n var h = tex.height;\n var W = ts._width;\n var H = ts._height;\n\n tempMat.set(lt.a * w / W,\n lt.b * w / H,\n lt.c * h / W,\n lt.d * h / H,\n lt.tx / W,\n lt.ty / H);\n\n // that part is the same as above:\n // tempMat.identity();\n // tempMat.scale(tex.width, tex.height);\n // tempMat.prepend(lt);\n // tempMat.scale(1.0 / ts._width, 1.0 / ts._height);\n\n tempMat.invert();\n if (isSimple)\n {\n tempMat.prepend(uv.mapCoord);\n }\n else\n {\n shader.uniforms.uMapCoord = uv.mapCoord.toArray(true);\n shader.uniforms.uClampFrame = uv.uClampFrame;\n shader.uniforms.uClampOffset = uv.uClampOffset;\n }\n\n shader.uniforms.uTransform = tempMat.toArray(true);\n shader.uniforms.uColor = premultiplyTintToRgba(ts.tint, ts.worldAlpha,\n shader.uniforms.uColor, baseTex.premultiplyAlpha);\n shader.uniforms.translationMatrix = ts.transform.worldTransform.toArray(true);\n shader.uniforms.uSampler = tex;\n\n renderer.shader.bind(shader);\n renderer.geometry.bind(quad);// , renderer.shader.getGLShader());\n\n renderer.state.setBlendMode(correctBlendMode(ts.blendMode, baseTex.premultiplyAlpha));\n renderer.geometry.draw(this.renderer.gl.TRIANGLES, 6, 0);\n };\n\n return TilingSpriteRenderer;\n}(ObjectRenderer));\n\nexport { TilingSprite, TilingSpriteRenderer };\n//# sourceMappingURL=sprite-tiling.es.js.map\n","/*!\n * @pixi/text-bitmap - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/text-bitmap is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture } from '@pixi/core';\nimport { Container } from '@pixi/display';\nimport { Point, Rectangle, ObservablePoint } from '@pixi/math';\nimport { settings } from '@pixi/settings';\nimport { Sprite } from '@pixi/sprite';\nimport { removeItems, getResolutionOfUrl } from '@pixi/utils';\nimport { LoaderResource } from '@pixi/loaders';\n\n/**\n * A BitmapText object will create a line or multiple lines of text using bitmap font.\n *\n * The primary advantage of this class over Text is that all of your textures are pre-generated and loading,\n * meaning that rendering is fast, and changing text has no performance implications.\n *\n * The primary disadvantage is that you need to preload the bitmap font assets, and thus the styling is set in stone.\n * Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters.\n *\n * To split a line you can use '\\n', '\\r' or '\\r\\n' in your string.\n *\n * You can generate the fnt files using\n * http://www.angelcode.com/products/bmfont/ for Windows or\n * http://www.bmglyph.com/ for Mac.\n *\n * A BitmapText can only be created when the font is loaded.\n *\n * ```js\n * // in this case the font is in a file called 'desyrel.fnt'\n * let bitmapText = new PIXI.BitmapText(\"text using a fancy font!\", {font: \"35px Desyrel\", align: \"right\"});\n * ```\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar BitmapText = /*@__PURE__*/(function (Container) {\n function BitmapText(text, style)\n {\n var this$1 = this;\n if ( style === void 0 ) style = {};\n\n Container.call(this);\n\n /**\n * Private tracker for the width of the overall text\n *\n * @member {number}\n * @private\n */\n this._textWidth = 0;\n\n /**\n * Private tracker for the height of the overall text\n *\n * @member {number}\n * @private\n */\n this._textHeight = 0;\n\n /**\n * Private tracker for the letter sprite pool.\n *\n * @member {PIXI.Sprite[]}\n * @private\n */\n this._glyphs = [];\n\n /**\n * Private tracker for the current style.\n *\n * @member {object}\n * @private\n */\n this._font = {\n tint: style.tint !== undefined ? style.tint : 0xFFFFFF,\n align: style.align || 'left',\n name: null,\n size: 0,\n };\n\n /**\n * Private tracker for the current font.\n *\n * @member {object}\n * @private\n */\n this.font = style.font; // run font setter\n\n /**\n * Private tracker for the current text.\n *\n * @member {string}\n * @private\n */\n this._text = text;\n\n /**\n * The max width of this bitmap text in pixels. If the text provided is longer than the\n * value provided, line breaks will be automatically inserted in the last whitespace.\n * Disable by setting value to 0\n *\n * @member {number}\n * @private\n */\n this._maxWidth = 0;\n\n /**\n * The max line height. This is useful when trying to use the total height of the Text,\n * ie: when trying to vertically align.\n *\n * @member {number}\n * @private\n */\n this._maxLineHeight = 0;\n\n /**\n * Letter spacing. This is useful for setting the space between characters.\n * @member {number}\n * @private\n */\n this._letterSpacing = 0;\n\n /**\n * Text anchor. read-only\n *\n * @member {PIXI.ObservablePoint}\n * @private\n */\n this._anchor = new ObservablePoint(function () { this$1.dirty = true; }, this, 0, 0);\n\n /**\n * The dirty state of this object.\n *\n * @member {boolean}\n */\n this.dirty = false;\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n this.roundPixels = settings.ROUND_PIXELS;\n\n this.updateText();\n }\n\n if ( Container ) BitmapText.__proto__ = Container;\n BitmapText.prototype = Object.create( Container && Container.prototype );\n BitmapText.prototype.constructor = BitmapText;\n\n var prototypeAccessors = { tint: { configurable: true },align: { configurable: true },anchor: { configurable: true },font: { configurable: true },text: { configurable: true },maxWidth: { configurable: true },maxLineHeight: { configurable: true },textWidth: { configurable: true },letterSpacing: { configurable: true },textHeight: { configurable: true } };\n\n /**\n * Renders text and updates it when needed\n *\n * @private\n */\n BitmapText.prototype.updateText = function updateText ()\n {\n var data = BitmapText.fonts[this._font.name];\n var scale = this._font.size / data.size;\n var pos = new Point();\n var chars = [];\n var lineWidths = [];\n var text = this._text.replace(/(?:\\r\\n|\\r)/g, '\\n') || ' ';\n var textLength = text.length;\n var maxWidth = this._maxWidth * data.size / this._font.size;\n\n var prevCharCode = null;\n var lastLineWidth = 0;\n var maxLineWidth = 0;\n var line = 0;\n var lastBreakPos = -1;\n var lastBreakWidth = 0;\n var spacesRemoved = 0;\n var maxLineHeight = 0;\n\n for (var i = 0; i < textLength; i++)\n {\n var charCode = text.charCodeAt(i);\n var char = text.charAt(i);\n\n if ((/(?:\\s)/).test(char))\n {\n lastBreakPos = i;\n lastBreakWidth = lastLineWidth;\n }\n\n if (char === '\\r' || char === '\\n')\n {\n lineWidths.push(lastLineWidth);\n maxLineWidth = Math.max(maxLineWidth, lastLineWidth);\n ++line;\n ++spacesRemoved;\n\n pos.x = 0;\n pos.y += data.lineHeight;\n prevCharCode = null;\n continue;\n }\n\n var charData = data.chars[charCode];\n\n if (!charData)\n {\n continue;\n }\n\n if (prevCharCode && charData.kerning[prevCharCode])\n {\n pos.x += charData.kerning[prevCharCode];\n }\n\n chars.push({\n texture: charData.texture,\n line: line,\n charCode: charCode,\n position: new Point(pos.x + charData.xOffset + (this._letterSpacing / 2), pos.y + charData.yOffset),\n });\n pos.x += charData.xAdvance + this._letterSpacing;\n lastLineWidth = pos.x;\n maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height));\n prevCharCode = charCode;\n\n if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth)\n {\n ++spacesRemoved;\n removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos);\n i = lastBreakPos;\n lastBreakPos = -1;\n\n lineWidths.push(lastBreakWidth);\n maxLineWidth = Math.max(maxLineWidth, lastBreakWidth);\n line++;\n\n pos.x = 0;\n pos.y += data.lineHeight;\n prevCharCode = null;\n }\n }\n\n var lastChar = text.charAt(text.length - 1);\n\n if (lastChar !== '\\r' && lastChar !== '\\n')\n {\n if ((/(?:\\s)/).test(lastChar))\n {\n lastLineWidth = lastBreakWidth;\n }\n\n lineWidths.push(lastLineWidth);\n maxLineWidth = Math.max(maxLineWidth, lastLineWidth);\n }\n\n var lineAlignOffsets = [];\n\n for (var i$1 = 0; i$1 <= line; i$1++)\n {\n var alignOffset = 0;\n\n if (this._font.align === 'right')\n {\n alignOffset = maxLineWidth - lineWidths[i$1];\n }\n else if (this._font.align === 'center')\n {\n alignOffset = (maxLineWidth - lineWidths[i$1]) / 2;\n }\n\n lineAlignOffsets.push(alignOffset);\n }\n\n var lenChars = chars.length;\n var tint = this.tint;\n\n for (var i$2 = 0; i$2 < lenChars; i$2++)\n {\n var c = this._glyphs[i$2]; // get the next glyph sprite\n\n if (c)\n {\n c.texture = chars[i$2].texture;\n }\n else\n {\n c = new Sprite(chars[i$2].texture);\n c.roundPixels = this.roundPixels;\n this._glyphs.push(c);\n }\n\n c.position.x = (chars[i$2].position.x + lineAlignOffsets[chars[i$2].line]) * scale;\n c.position.y = chars[i$2].position.y * scale;\n c.scale.x = c.scale.y = scale;\n c.tint = tint;\n\n if (!c.parent)\n {\n this.addChild(c);\n }\n }\n\n // remove unnecessary children.\n for (var i$3 = lenChars; i$3 < this._glyphs.length; ++i$3)\n {\n this.removeChild(this._glyphs[i$3]);\n }\n\n this._textWidth = maxLineWidth * scale;\n this._textHeight = (pos.y + data.lineHeight) * scale;\n\n // apply anchor\n if (this.anchor.x !== 0 || this.anchor.y !== 0)\n {\n for (var i$4 = 0; i$4 < lenChars; i$4++)\n {\n this._glyphs[i$4].x -= this._textWidth * this.anchor.x;\n this._glyphs[i$4].y -= this._textHeight * this.anchor.y;\n }\n }\n this._maxLineHeight = maxLineHeight * scale;\n };\n\n /**\n * Updates the transform of this object\n *\n * @private\n */\n BitmapText.prototype.updateTransform = function updateTransform ()\n {\n this.validate();\n this.containerUpdateTransform();\n };\n\n /**\n * Validates text before calling parent's getLocalBounds\n *\n * @return {PIXI.Rectangle} The rectangular bounding area\n */\n BitmapText.prototype.getLocalBounds = function getLocalBounds ()\n {\n this.validate();\n\n return Container.prototype.getLocalBounds.call(this);\n };\n\n /**\n * Updates text when needed\n *\n * @private\n */\n BitmapText.prototype.validate = function validate ()\n {\n if (this.dirty)\n {\n this.updateText();\n this.dirty = false;\n }\n };\n\n /**\n * The tint of the BitmapText object.\n *\n * @member {number}\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._font.tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._font.tint = (typeof value === 'number' && value >= 0) ? value : 0xFFFFFF;\n\n this.dirty = true;\n };\n\n /**\n * The alignment of the BitmapText object.\n *\n * @member {string}\n * @default 'left'\n */\n prototypeAccessors.align.get = function ()\n {\n return this._font.align;\n };\n\n prototypeAccessors.align.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._font.align = value || 'left';\n\n this.dirty = true;\n };\n\n /**\n * The anchor sets the origin point of the text.\n *\n * The default is `(0,0)`, this means the text's origin is the top left.\n *\n * Setting the anchor to `(0.5,0.5)` means the text's origin is centered.\n *\n * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner.\n *\n * @member {PIXI.Point | number}\n */\n prototypeAccessors.anchor.get = function ()\n {\n return this._anchor;\n };\n\n prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (typeof value === 'number')\n {\n this._anchor.set(value);\n }\n else\n {\n this._anchor.copyFrom(value);\n }\n };\n\n /**\n * The font descriptor of the BitmapText object.\n *\n * @member {object}\n */\n prototypeAccessors.font.get = function ()\n {\n return this._font;\n };\n\n prototypeAccessors.font.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (!value)\n {\n return;\n }\n\n if (typeof value === 'string')\n {\n value = value.split(' ');\n\n this._font.name = value.length === 1 ? value[0] : value.slice(1).join(' ');\n this._font.size = value.length >= 2 ? parseInt(value[0], 10) : BitmapText.fonts[this._font.name].size;\n }\n else\n {\n this._font.name = value.name;\n this._font.size = typeof value.size === 'number' ? value.size : parseInt(value.size, 10);\n }\n\n this.dirty = true;\n };\n\n /**\n * The text of the BitmapText object.\n *\n * @member {string}\n */\n prototypeAccessors.text.get = function ()\n {\n return this._text;\n };\n\n prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc\n {\n text = String(text === null || text === undefined ? '' : text);\n\n if (this._text === text)\n {\n return;\n }\n this._text = text;\n this.dirty = true;\n };\n\n /**\n * The max width of this bitmap text in pixels. If the text provided is longer than the\n * value provided, line breaks will be automatically inserted in the last whitespace.\n * Disable by setting the value to 0.\n *\n * @member {number}\n */\n prototypeAccessors.maxWidth.get = function ()\n {\n return this._maxWidth;\n };\n\n prototypeAccessors.maxWidth.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._maxWidth === value)\n {\n return;\n }\n this._maxWidth = value;\n this.dirty = true;\n };\n\n /**\n * The max line height. This is useful when trying to use the total height of the Text,\n * i.e. when trying to vertically align.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.maxLineHeight.get = function ()\n {\n this.validate();\n\n return this._maxLineHeight;\n };\n\n /**\n * The width of the overall text, different from fontSize,\n * which is defined in the style object.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.textWidth.get = function ()\n {\n this.validate();\n\n return this._textWidth;\n };\n\n /**\n * Additional space between characters.\n *\n * @member {number}\n */\n prototypeAccessors.letterSpacing.get = function ()\n {\n return this._letterSpacing;\n };\n\n prototypeAccessors.letterSpacing.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._letterSpacing !== value)\n {\n this._letterSpacing = value;\n this.dirty = true;\n }\n };\n\n /**\n * The height of the overall text, different from fontSize,\n * which is defined in the style object.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.textHeight.get = function ()\n {\n this.validate();\n\n return this._textHeight;\n };\n\n /**\n * Register a bitmap font with data and a texture.\n *\n * @static\n * @param {XMLDocument} xml - The XML document data.\n * @param {Object.|PIXI.Texture|PIXI.Texture[]} textures - List of textures for each page.\n * If providing an object, the key is the `` element's `file` attribute in the FNT file.\n * @return {Object} Result font object with font, size, lineHeight and char fields.\n */\n BitmapText.registerFont = function registerFont (xml, textures)\n {\n var data = {};\n var info = xml.getElementsByTagName('info')[0];\n var common = xml.getElementsByTagName('common')[0];\n var pages = xml.getElementsByTagName('page');\n var res = getResolutionOfUrl(pages[0].getAttribute('file'), settings.RESOLUTION);\n var pagesTextures = {};\n\n data.font = info.getAttribute('face');\n data.size = parseInt(info.getAttribute('size'), 10);\n data.lineHeight = parseInt(common.getAttribute('lineHeight'), 10) / res;\n data.chars = {};\n\n // Single texture, convert to list\n if (textures instanceof Texture)\n {\n textures = [textures];\n }\n\n // Convert the input Texture, Textures or object\n // into a page Texture lookup by \"id\"\n for (var i = 0; i < pages.length; i++)\n {\n var id = pages[i].getAttribute('id');\n var file = pages[i].getAttribute('file');\n\n pagesTextures[id] = textures instanceof Array ? textures[i] : textures[file];\n }\n\n // parse letters\n var letters = xml.getElementsByTagName('char');\n\n for (var i$1 = 0; i$1 < letters.length; i$1++)\n {\n var letter = letters[i$1];\n var charCode = parseInt(letter.getAttribute('id'), 10);\n var page = letter.getAttribute('page') || 0;\n var textureRect = new Rectangle(\n (parseInt(letter.getAttribute('x'), 10) / res) + (pagesTextures[page].frame.x / res),\n (parseInt(letter.getAttribute('y'), 10) / res) + (pagesTextures[page].frame.y / res),\n parseInt(letter.getAttribute('width'), 10) / res,\n parseInt(letter.getAttribute('height'), 10) / res\n );\n\n data.chars[charCode] = {\n xOffset: parseInt(letter.getAttribute('xoffset'), 10) / res,\n yOffset: parseInt(letter.getAttribute('yoffset'), 10) / res,\n xAdvance: parseInt(letter.getAttribute('xadvance'), 10) / res,\n kerning: {},\n texture: new Texture(pagesTextures[page].baseTexture, textureRect),\n page: page,\n };\n }\n\n // parse kernings\n var kernings = xml.getElementsByTagName('kerning');\n\n for (var i$2 = 0; i$2 < kernings.length; i$2++)\n {\n var kerning = kernings[i$2];\n var first = parseInt(kerning.getAttribute('first'), 10) / res;\n var second = parseInt(kerning.getAttribute('second'), 10) / res;\n var amount = parseInt(kerning.getAttribute('amount'), 10) / res;\n\n if (data.chars[second])\n {\n data.chars[second].kerning[first] = amount;\n }\n }\n\n // I'm leaving this as a temporary fix so we can test the bitmap fonts in v3\n // but it's very likely to change\n BitmapText.fonts[data.font] = data;\n\n return data;\n };\n\n Object.defineProperties( BitmapText.prototype, prototypeAccessors );\n\n return BitmapText;\n}(Container));\n\nBitmapText.fonts = {};\n\n/**\n * {@link PIXI.Loader Loader} middleware for loading\n * bitmap-based fonts suitable for using with {@link PIXI.BitmapText}.\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar BitmapFontLoader = function BitmapFontLoader () {};\n\nBitmapFontLoader.parse = function parse (resource, texture)\n{\n resource.bitmapFont = BitmapText.registerFont(resource.data, texture);\n};\n\n/**\n * Called when the plugin is installed.\n *\n * @see PIXI.Loader.registerPlugin\n */\nBitmapFontLoader.add = function add ()\n{\n LoaderResource.setExtensionXhrType('fnt', LoaderResource.XHR_RESPONSE_TYPE.DOCUMENT);\n};\n\n/**\n * Replacement for NodeJS's path.dirname\n * @private\n * @param {string} url Path to get directory for\n */\nBitmapFontLoader.dirname = function dirname (url)\n{\n var dir = url\n .replace(/\\/$/, '') // replace trailing slash\n .replace(/\\/[^\\/]*$/, ''); // remove everything after the last\n\n // File request is relative, use current directory\n if (dir === url)\n {\n return '.';\n }\n // Started with a slash\n else if (dir === '')\n {\n return '/';\n }\n\n return dir;\n};\n\n/**\n * Called after a resource is loaded.\n * @see PIXI.Loader.loaderMiddleware\n * @param {PIXI.LoaderResource} resource\n * @param {function} next\n */\nBitmapFontLoader.use = function use (resource, next)\n{\n // skip if no data or not xml data\n if (!resource.data || resource.type !== LoaderResource.TYPE.XML)\n {\n next();\n\n return;\n }\n\n // skip if not bitmap font data, using some silly duck-typing\n if (resource.data.getElementsByTagName('page').length === 0\n || resource.data.getElementsByTagName('info').length === 0\n || resource.data.getElementsByTagName('info')[0].getAttribute('face') === null\n )\n {\n next();\n\n return;\n }\n\n var xmlUrl = !resource.isDataUrl ? BitmapFontLoader.dirname(resource.url) : '';\n\n if (resource.isDataUrl)\n {\n if (xmlUrl === '.')\n {\n xmlUrl = '';\n }\n\n if (this.baseUrl && xmlUrl)\n {\n // if baseurl has a trailing slash then add one to xmlUrl so the replace works below\n if (this.baseUrl.charAt(this.baseUrl.length - 1) === '/')\n {\n xmlUrl += '/';\n }\n }\n }\n\n // remove baseUrl from xmlUrl\n xmlUrl = xmlUrl.replace(this.baseUrl, '');\n\n // if there is an xmlUrl now, it needs a trailing slash. Ensure that it does if the string isn't empty.\n if (xmlUrl && xmlUrl.charAt(xmlUrl.length - 1) !== '/')\n {\n xmlUrl += '/';\n }\n\n var pages = resource.data.getElementsByTagName('page');\n var textures = {};\n\n // Handle completed, when the number of textures\n // load is the same number as references in the fnt file\n var completed = function (page) {\n textures[page.metadata.pageFile] = page.texture;\n\n if (Object.keys(textures).length === pages.length)\n {\n BitmapFontLoader.parse(resource, textures);\n next();\n }\n };\n\n for (var i = 0; i < pages.length; ++i)\n {\n var pageFile = pages[i].getAttribute('file');\n var url = xmlUrl + pageFile;\n var exists = false;\n\n // incase the image is loaded outside\n // using the same loader, resource will be available\n for (var name in this.resources)\n {\n var bitmapResource = this.resources[name];\n\n if (bitmapResource.url === url)\n {\n bitmapResource.metadata.pageFile = pageFile;\n if (bitmapResource.texture)\n {\n completed(bitmapResource);\n }\n else\n {\n bitmapResource.onAfterMiddleware.add(completed);\n }\n exists = true;\n break;\n }\n }\n\n // texture is not loaded, we'll attempt to add\n // it to the load and add the texture to the list\n if (!exists)\n {\n // Standard loading options for images\n var options = {\n crossOrigin: resource.crossOrigin,\n loadType: LoaderResource.LOAD_TYPE.IMAGE,\n metadata: Object.assign(\n { pageFile: pageFile },\n resource.metadata.imageMetadata\n ),\n parentResource: resource,\n };\n\n this.add(url, options, completed);\n }\n }\n};\n\nexport { BitmapFontLoader, BitmapText };\n//# sourceMappingURL=text-bitmap.es.js.map\n","/*!\n * @pixi/filter-color-matrix - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/filter-color-matrix is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Filter, defaultFilterVertex } from '@pixi/core';\n\nvar fragment = \"varying vec2 vTextureCoord;\\nuniform sampler2D uSampler;\\nuniform float m[20];\\nuniform float uAlpha;\\n\\nvoid main(void)\\n{\\n vec4 c = texture2D(uSampler, vTextureCoord);\\n\\n if (uAlpha == 0.0) {\\n gl_FragColor = c;\\n return;\\n }\\n\\n // Un-premultiply alpha before applying the color matrix. See issue #3539.\\n if (c.a > 0.0) {\\n c.rgb /= c.a;\\n }\\n\\n vec4 result;\\n\\n result.r = (m[0] * c.r);\\n result.r += (m[1] * c.g);\\n result.r += (m[2] * c.b);\\n result.r += (m[3] * c.a);\\n result.r += m[4];\\n\\n result.g = (m[5] * c.r);\\n result.g += (m[6] * c.g);\\n result.g += (m[7] * c.b);\\n result.g += (m[8] * c.a);\\n result.g += m[9];\\n\\n result.b = (m[10] * c.r);\\n result.b += (m[11] * c.g);\\n result.b += (m[12] * c.b);\\n result.b += (m[13] * c.a);\\n result.b += m[14];\\n\\n result.a = (m[15] * c.r);\\n result.a += (m[16] * c.g);\\n result.a += (m[17] * c.b);\\n result.a += (m[18] * c.a);\\n result.a += m[19];\\n\\n vec3 rgb = mix(c.rgb, result.rgb, uAlpha);\\n\\n // Premultiply alpha again.\\n rgb *= result.a;\\n\\n gl_FragColor = vec4(rgb, result.a);\\n}\\n\";\n\n/**\n * The ColorMatrixFilter class lets you apply a 5x4 matrix transformation on the RGBA\n * color and alpha values of every pixel on your displayObject to produce a result\n * with a new set of RGBA color and alpha values. It's pretty powerful!\n *\n * ```js\n * let colorMatrix = new PIXI.filters.ColorMatrixFilter();\n * container.filters = [colorMatrix];\n * colorMatrix.contrast(2);\n * ```\n * @author Clément Chenebault \n * @class\n * @extends PIXI.Filter\n * @memberof PIXI.filters\n */\nvar ColorMatrixFilter = /*@__PURE__*/(function (Filter) {\n function ColorMatrixFilter()\n {\n var uniforms = {\n m: new Float32Array([1, 0, 0, 0, 0,\n 0, 1, 0, 0, 0,\n 0, 0, 1, 0, 0,\n 0, 0, 0, 1, 0]),\n uAlpha: 1,\n };\n\n Filter.call(this, defaultFilterVertex, fragment, uniforms);\n\n this.alpha = 1;\n }\n\n if ( Filter ) ColorMatrixFilter.__proto__ = Filter;\n ColorMatrixFilter.prototype = Object.create( Filter && Filter.prototype );\n ColorMatrixFilter.prototype.constructor = ColorMatrixFilter;\n\n var prototypeAccessors = { matrix: { configurable: true },alpha: { configurable: true } };\n\n /**\n * Transforms current matrix and set the new one\n *\n * @param {number[]} matrix - 5x4 matrix\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype._loadMatrix = function _loadMatrix (matrix, multiply)\n {\n if ( multiply === void 0 ) multiply = false;\n\n var newMatrix = matrix;\n\n if (multiply)\n {\n this._multiply(newMatrix, this.uniforms.m, matrix);\n newMatrix = this._colorMatrix(newMatrix);\n }\n\n // set the new matrix\n this.uniforms.m = newMatrix;\n };\n\n /**\n * Multiplies two mat5's\n *\n * @private\n * @param {number[]} out - 5x4 matrix the receiving matrix\n * @param {number[]} a - 5x4 matrix the first operand\n * @param {number[]} b - 5x4 matrix the second operand\n * @returns {number[]} 5x4 matrix\n */\n ColorMatrixFilter.prototype._multiply = function _multiply (out, a, b)\n {\n // Red Channel\n out[0] = (a[0] * b[0]) + (a[1] * b[5]) + (a[2] * b[10]) + (a[3] * b[15]);\n out[1] = (a[0] * b[1]) + (a[1] * b[6]) + (a[2] * b[11]) + (a[3] * b[16]);\n out[2] = (a[0] * b[2]) + (a[1] * b[7]) + (a[2] * b[12]) + (a[3] * b[17]);\n out[3] = (a[0] * b[3]) + (a[1] * b[8]) + (a[2] * b[13]) + (a[3] * b[18]);\n out[4] = (a[0] * b[4]) + (a[1] * b[9]) + (a[2] * b[14]) + (a[3] * b[19]) + a[4];\n\n // Green Channel\n out[5] = (a[5] * b[0]) + (a[6] * b[5]) + (a[7] * b[10]) + (a[8] * b[15]);\n out[6] = (a[5] * b[1]) + (a[6] * b[6]) + (a[7] * b[11]) + (a[8] * b[16]);\n out[7] = (a[5] * b[2]) + (a[6] * b[7]) + (a[7] * b[12]) + (a[8] * b[17]);\n out[8] = (a[5] * b[3]) + (a[6] * b[8]) + (a[7] * b[13]) + (a[8] * b[18]);\n out[9] = (a[5] * b[4]) + (a[6] * b[9]) + (a[7] * b[14]) + (a[8] * b[19]) + a[9];\n\n // Blue Channel\n out[10] = (a[10] * b[0]) + (a[11] * b[5]) + (a[12] * b[10]) + (a[13] * b[15]);\n out[11] = (a[10] * b[1]) + (a[11] * b[6]) + (a[12] * b[11]) + (a[13] * b[16]);\n out[12] = (a[10] * b[2]) + (a[11] * b[7]) + (a[12] * b[12]) + (a[13] * b[17]);\n out[13] = (a[10] * b[3]) + (a[11] * b[8]) + (a[12] * b[13]) + (a[13] * b[18]);\n out[14] = (a[10] * b[4]) + (a[11] * b[9]) + (a[12] * b[14]) + (a[13] * b[19]) + a[14];\n\n // Alpha Channel\n out[15] = (a[15] * b[0]) + (a[16] * b[5]) + (a[17] * b[10]) + (a[18] * b[15]);\n out[16] = (a[15] * b[1]) + (a[16] * b[6]) + (a[17] * b[11]) + (a[18] * b[16]);\n out[17] = (a[15] * b[2]) + (a[16] * b[7]) + (a[17] * b[12]) + (a[18] * b[17]);\n out[18] = (a[15] * b[3]) + (a[16] * b[8]) + (a[17] * b[13]) + (a[18] * b[18]);\n out[19] = (a[15] * b[4]) + (a[16] * b[9]) + (a[17] * b[14]) + (a[18] * b[19]) + a[19];\n\n return out;\n };\n\n /**\n * Create a Float32 Array and normalize the offset component to 0-1\n *\n * @private\n * @param {number[]} matrix - 5x4 matrix\n * @return {number[]} 5x4 matrix with all values between 0-1\n */\n ColorMatrixFilter.prototype._colorMatrix = function _colorMatrix (matrix)\n {\n // Create a Float32 Array and normalize the offset component to 0-1\n var m = new Float32Array(matrix);\n\n m[4] /= 255;\n m[9] /= 255;\n m[14] /= 255;\n m[19] /= 255;\n\n return m;\n };\n\n /**\n * Adjusts brightness\n *\n * @param {number} b - value of the brigthness (0-1, where 0 is black)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.brightness = function brightness (b, multiply)\n {\n var matrix = [\n b, 0, 0, 0, 0,\n 0, b, 0, 0, 0,\n 0, 0, b, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the matrices in grey scales\n *\n * @param {number} scale - value of the grey (0-1, where 0 is black)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.greyscale = function greyscale (scale, multiply)\n {\n var matrix = [\n scale, scale, scale, 0, 0,\n scale, scale, scale, 0, 0,\n scale, scale, scale, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the black and white matrice.\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.blackAndWhite = function blackAndWhite (multiply)\n {\n var matrix = [\n 0.3, 0.6, 0.1, 0, 0,\n 0.3, 0.6, 0.1, 0, 0,\n 0.3, 0.6, 0.1, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the hue property of the color\n *\n * @param {number} rotation - in degrees\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.hue = function hue (rotation, multiply)\n {\n rotation = (rotation || 0) / 180 * Math.PI;\n\n var cosR = Math.cos(rotation);\n var sinR = Math.sin(rotation);\n var sqrt = Math.sqrt;\n\n /* a good approximation for hue rotation\n This matrix is far better than the versions with magic luminance constants\n formerly used here, but also used in the starling framework (flash) and known from this\n old part of the internet: quasimondo.com/archives/000565.php\n\n This new matrix is based on rgb cube rotation in space. Look here for a more descriptive\n implementation as a shader not a general matrix:\n https://github.com/evanw/glfx.js/blob/58841c23919bd59787effc0333a4897b43835412/src/filters/adjust/huesaturation.js\n\n This is the source for the code:\n see http://stackoverflow.com/questions/8507885/shift-hue-of-an-rgb-color/8510751#8510751\n */\n\n var w = 1 / 3;\n var sqrW = sqrt(w); // weight is\n\n var a00 = cosR + ((1.0 - cosR) * w);\n var a01 = (w * (1.0 - cosR)) - (sqrW * sinR);\n var a02 = (w * (1.0 - cosR)) + (sqrW * sinR);\n\n var a10 = (w * (1.0 - cosR)) + (sqrW * sinR);\n var a11 = cosR + (w * (1.0 - cosR));\n var a12 = (w * (1.0 - cosR)) - (sqrW * sinR);\n\n var a20 = (w * (1.0 - cosR)) - (sqrW * sinR);\n var a21 = (w * (1.0 - cosR)) + (sqrW * sinR);\n var a22 = cosR + (w * (1.0 - cosR));\n\n var matrix = [\n a00, a01, a02, 0, 0,\n a10, a11, a12, 0, 0,\n a20, a21, a22, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the contrast matrix, increase the separation between dark and bright\n * Increase contrast : shadows darker and highlights brighter\n * Decrease contrast : bring the shadows up and the highlights down\n *\n * @param {number} amount - value of the contrast (0-1)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.contrast = function contrast (amount, multiply)\n {\n var v = (amount || 0) + 1;\n var o = -0.5 * (v - 1);\n\n var matrix = [\n v, 0, 0, 0, o,\n 0, v, 0, 0, o,\n 0, 0, v, 0, o,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the saturation matrix, increase the separation between colors\n * Increase saturation : increase contrast, brightness, and sharpness\n *\n * @param {number} amount - The saturation amount (0-1)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.saturate = function saturate (amount, multiply)\n {\n if ( amount === void 0 ) amount = 0;\n\n var x = (amount * 2 / 3) + 1;\n var y = ((x - 1) * -0.5);\n\n var matrix = [\n x, y, y, 0, 0,\n y, x, y, 0, 0,\n y, y, x, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Desaturate image (remove color)\n *\n * Call the saturate function\n *\n */\n ColorMatrixFilter.prototype.desaturate = function desaturate () // eslint-disable-line no-unused-vars\n {\n this.saturate(-1);\n };\n\n /**\n * Negative image (inverse of classic rgb matrix)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.negative = function negative (multiply)\n {\n var matrix = [\n -1, 0, 0, 1, 0,\n 0, -1, 0, 1, 0,\n 0, 0, -1, 1, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Sepia image\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.sepia = function sepia (multiply)\n {\n var matrix = [\n 0.393, 0.7689999, 0.18899999, 0, 0,\n 0.349, 0.6859999, 0.16799999, 0, 0,\n 0.272, 0.5339999, 0.13099999, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Color motion picture process invented in 1916 (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.technicolor = function technicolor (multiply)\n {\n var matrix = [\n 1.9125277891456083, -0.8545344976951645, -0.09155508482755585, 0, 11.793603434377337,\n -0.3087833385928097, 1.7658908555458428, -0.10601743074722245, 0, -70.35205161461398,\n -0.231103377548616, -0.7501899197440212, 1.847597816108189, 0, 30.950940869491138,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Polaroid filter\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.polaroid = function polaroid (multiply)\n {\n var matrix = [\n 1.438, -0.062, -0.062, 0, 0,\n -0.122, 1.378, -0.122, 0, 0,\n -0.016, -0.016, 1.483, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Filter who transforms : Red -> Blue and Blue -> Red\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.toBGR = function toBGR (multiply)\n {\n var matrix = [\n 0, 0, 1, 0, 0,\n 0, 1, 0, 0, 0,\n 1, 0, 0, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Color reversal film introduced by Eastman Kodak in 1935. (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.kodachrome = function kodachrome (multiply)\n {\n var matrix = [\n 1.1285582396593525, -0.3967382283601348, -0.03992559172921793, 0, 63.72958762196502,\n -0.16404339962244616, 1.0835251566291304, -0.05498805115633132, 0, 24.732407896706203,\n -0.16786010706155763, -0.5603416277695248, 1.6014850761964943, 0, 35.62982807460946,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Brown delicious browni filter (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.browni = function browni (multiply)\n {\n var matrix = [\n 0.5997023498159715, 0.34553243048391263, -0.2708298674538042, 0, 47.43192855600873,\n -0.037703249837783157, 0.8609577587992641, 0.15059552388459913, 0, -36.96841498319127,\n 0.24113635128153335, -0.07441037908422492, 0.44972182064877153, 0, -7.562075277591283,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Vintage filter (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.vintage = function vintage (multiply)\n {\n var matrix = [\n 0.6279345635605994, 0.3202183420819367, -0.03965408211312453, 0, 9.651285835294123,\n 0.02578397704808868, 0.6441188644374771, 0.03259127616149294, 0, 7.462829176470591,\n 0.0466055556782719, -0.0851232987247891, 0.5241648018700465, 0, 5.159190588235296,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * We don't know exactly what it does, kind of gradient map, but funny to play with!\n *\n * @param {number} desaturation - Tone values.\n * @param {number} toned - Tone values.\n * @param {string} lightColor - Tone values, example: `0xFFE580`\n * @param {string} darkColor - Tone values, example: `0xFFE580`\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.colorTone = function colorTone (desaturation, toned, lightColor, darkColor, multiply)\n {\n desaturation = desaturation || 0.2;\n toned = toned || 0.15;\n lightColor = lightColor || 0xFFE580;\n darkColor = darkColor || 0x338000;\n\n var lR = ((lightColor >> 16) & 0xFF) / 255;\n var lG = ((lightColor >> 8) & 0xFF) / 255;\n var lB = (lightColor & 0xFF) / 255;\n\n var dR = ((darkColor >> 16) & 0xFF) / 255;\n var dG = ((darkColor >> 8) & 0xFF) / 255;\n var dB = (darkColor & 0xFF) / 255;\n\n var matrix = [\n 0.3, 0.59, 0.11, 0, 0,\n lR, lG, lB, desaturation, 0,\n dR, dG, dB, toned, 0,\n lR - dR, lG - dG, lB - dB, 0, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Night effect\n *\n * @param {number} intensity - The intensity of the night effect.\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.night = function night (intensity, multiply)\n {\n intensity = intensity || 0.1;\n var matrix = [\n intensity * (-2.0), -intensity, 0, 0, 0,\n -intensity, 0, intensity, 0, 0,\n 0, intensity, intensity * 2.0, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Predator effect\n *\n * Erase the current matrix by setting a new indepent one\n *\n * @param {number} amount - how much the predator feels his future victim\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.predator = function predator (amount, multiply)\n {\n var matrix = [\n // row 1\n 11.224130630493164 * amount,\n -4.794486999511719 * amount,\n -2.8746118545532227 * amount,\n 0 * amount,\n 0.40342438220977783 * amount,\n // row 2\n -3.6330697536468506 * amount,\n 9.193157196044922 * amount,\n -2.951810836791992 * amount,\n 0 * amount,\n -1.316135048866272 * amount,\n // row 3\n -3.2184197902679443 * amount,\n -4.2375030517578125 * amount,\n 7.476448059082031 * amount,\n 0 * amount,\n 0.8044459223747253 * amount,\n // row 4\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * LSD effect\n *\n * Multiply the current matrix\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.lsd = function lsd (multiply)\n {\n var matrix = [\n 2, -0.4, 0.5, 0, 0,\n -0.5, 2, -0.4, 0, 0,\n -0.4, -0.5, 3, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Erase the current matrix by setting the default one\n *\n */\n ColorMatrixFilter.prototype.reset = function reset ()\n {\n var matrix = [\n 1, 0, 0, 0, 0,\n 0, 1, 0, 0, 0,\n 0, 0, 1, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, false);\n };\n\n /**\n * The matrix of the color matrix filter\n *\n * @member {number[]}\n * @default [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]\n */\n prototypeAccessors.matrix.get = function ()\n {\n return this.uniforms.m;\n };\n\n prototypeAccessors.matrix.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uniforms.m = value;\n };\n\n /**\n * The opacity value to use when mixing the original and resultant colors.\n *\n * When the value is 0, the original color is used without modification.\n * When the value is 1, the result color is used.\n * When in the range (0, 1) the color is interpolated between the original and result by this amount.\n *\n * @member {number}\n * @default 1\n */\n prototypeAccessors.alpha.get = function ()\n {\n return this.uniforms.uAlpha;\n };\n\n prototypeAccessors.alpha.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uniforms.uAlpha = value;\n };\n\n Object.defineProperties( ColorMatrixFilter.prototype, prototypeAccessors );\n\n return ColorMatrixFilter;\n}(Filter));\n\n// Americanized alias\nColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale;\n\nexport { ColorMatrixFilter };\n//# sourceMappingURL=filter-color-matrix.es.js.map\n","/*!\n * @pixi/mixin-cache-as-bitmap - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/mixin-cache-as-bitmap is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { RenderTexture, BaseTexture, Texture } from '@pixi/core';\nimport { Sprite } from '@pixi/sprite';\nimport { DisplayObject } from '@pixi/display';\nimport { Matrix } from '@pixi/math';\nimport { uid } from '@pixi/utils';\nimport { settings } from '@pixi/settings';\n\nvar _tempMatrix = new Matrix();\n\nDisplayObject.prototype._cacheAsBitmap = false;\nDisplayObject.prototype._cacheData = false;\n\n// figured theres no point adding ALL the extra variables to prototype.\n// this model can hold the information needed. This can also be generated on demand as\n// most objects are not cached as bitmaps.\n/**\n * @class\n * @ignore\n */\nvar CacheData = function CacheData()\n{\n this.textureCacheId = null;\n\n this.originalRender = null;\n this.originalRenderCanvas = null;\n this.originalCalculateBounds = null;\n this.originalGetLocalBounds = null;\n\n this.originalUpdateTransform = null;\n this.originalHitTest = null;\n this.originalDestroy = null;\n this.originalMask = null;\n this.originalFilterArea = null;\n this.sprite = null;\n};\n\nObject.defineProperties(DisplayObject.prototype, {\n /**\n * Set this to true if you want this display object to be cached as a bitmap.\n * This basically takes a snap shot of the display object as it is at that moment. It can\n * provide a performance benefit for complex static displayObjects.\n * To remove simply set this property to `false`\n *\n * IMPORTANT GOTCHA - Make sure that all your textures are preloaded BEFORE setting this property to true\n * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n cacheAsBitmap: {\n get: function get()\n {\n return this._cacheAsBitmap;\n },\n set: function set(value)\n {\n if (this._cacheAsBitmap === value)\n {\n return;\n }\n\n this._cacheAsBitmap = value;\n\n var data;\n\n if (value)\n {\n if (!this._cacheData)\n {\n this._cacheData = new CacheData();\n }\n\n data = this._cacheData;\n\n data.originalRender = this.render;\n data.originalRenderCanvas = this.renderCanvas;\n\n data.originalUpdateTransform = this.updateTransform;\n data.originalCalculateBounds = this.calculateBounds;\n data.originalGetLocalBounds = this.getLocalBounds;\n\n data.originalDestroy = this.destroy;\n\n data.originalContainsPoint = this.containsPoint;\n\n data.originalMask = this._mask;\n data.originalFilterArea = this.filterArea;\n\n this.render = this._renderCached;\n this.renderCanvas = this._renderCachedCanvas;\n\n this.destroy = this._cacheAsBitmapDestroy;\n }\n else\n {\n data = this._cacheData;\n\n if (data.sprite)\n {\n this._destroyCachedDisplayObject();\n }\n\n this.render = data.originalRender;\n this.renderCanvas = data.originalRenderCanvas;\n this.calculateBounds = data.originalCalculateBounds;\n this.getLocalBounds = data.originalGetLocalBounds;\n\n this.destroy = data.originalDestroy;\n\n this.updateTransform = data.originalUpdateTransform;\n this.containsPoint = data.originalContainsPoint;\n\n this._mask = data.originalMask;\n this.filterArea = data.originalFilterArea;\n }\n },\n },\n});\n\n/**\n * Renders a cached version of the sprite with WebGL\n *\n * @private\n * @function _renderCached\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._renderCached = function _renderCached(renderer)\n{\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n this._initCachedDisplayObject(renderer);\n\n this._cacheData.sprite.transform._worldID = this.transform._worldID;\n this._cacheData.sprite.worldAlpha = this.worldAlpha;\n this._cacheData.sprite._render(renderer);\n};\n\n/**\n * Prepares the WebGL renderer to cache the sprite\n *\n * @private\n * @function _initCachedDisplayObject\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._initCachedDisplayObject = function _initCachedDisplayObject(renderer)\n{\n if (this._cacheData && this._cacheData.sprite)\n {\n return;\n }\n\n // make sure alpha is set to 1 otherwise it will get rendered as invisible!\n var cacheAlpha = this.alpha;\n\n this.alpha = 1;\n\n // first we flush anything left in the renderer (otherwise it would get rendered to the cached texture)\n renderer.batch.flush();\n // this.filters= [];\n\n // next we find the dimensions of the untransformed object\n // this function also calls updatetransform on all its children as part of the measuring.\n // This means we don't need to update the transform again in this function\n // TODO pass an object to clone too? saves having to create a new one each time!\n var bounds = this.getLocalBounds().clone();\n\n // add some padding!\n if (this.filters)\n {\n var padding = this.filters[0].padding;\n\n bounds.pad(padding);\n }\n\n bounds.ceil(settings.RESOLUTION);\n\n // for now we cache the current renderTarget that the WebGL renderer is currently using.\n // this could be more elegant..\n var cachedRenderTexture = renderer.renderTexture.current;\n var cachedSourceFrame = renderer.renderTexture.sourceFrame;\n var cachedProjectionTransform = renderer.projection.transform;\n\n // We also store the filter stack - I will definitely look to change how this works a little later down the line.\n // const stack = renderer.filterManager.filterStack;\n\n // this renderTexture will be used to store the cached DisplayObject\n var renderTexture = RenderTexture.create(bounds.width, bounds.height);\n\n var textureCacheId = \"cacheAsBitmap_\" + (uid());\n\n this._cacheData.textureCacheId = textureCacheId;\n\n BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId);\n Texture.addToCache(renderTexture, textureCacheId);\n\n // need to set //\n var m = _tempMatrix;\n\n m.tx = -bounds.x;\n m.ty = -bounds.y;\n\n // reset\n this.transform.worldTransform.identity();\n\n // set all properties to there original so we can render to a texture\n this.render = this._cacheData.originalRender;\n\n renderer.render(this, renderTexture, true, m, true);\n\n // now restore the state be setting the new properties\n renderer.projection.transform = cachedProjectionTransform;\n renderer.renderTexture.bind(cachedRenderTexture, cachedSourceFrame);\n\n // renderer.filterManager.filterStack = stack;\n\n this.render = this._renderCached;\n // the rest is the same as for Canvas\n this.updateTransform = this.displayObjectUpdateTransform;\n this.calculateBounds = this._calculateCachedBounds;\n this.getLocalBounds = this._getCachedLocalBounds;\n\n this._mask = null;\n this.filterArea = null;\n\n // create our cached sprite\n var cachedSprite = new Sprite(renderTexture);\n\n cachedSprite.transform.worldTransform = this.transform.worldTransform;\n cachedSprite.anchor.x = -(bounds.x / bounds.width);\n cachedSprite.anchor.y = -(bounds.y / bounds.height);\n cachedSprite.alpha = cacheAlpha;\n cachedSprite._bounds = this._bounds;\n\n this._cacheData.sprite = cachedSprite;\n\n this.transform._parentID = -1;\n // restore the transform of the cached sprite to avoid the nasty flicker..\n if (!this.parent)\n {\n this.parent = renderer._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this.updateTransform();\n }\n\n // map the hit test..\n this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite);\n};\n\n/**\n * Renders a cached version of the sprite with canvas\n *\n * @private\n * @function _renderCachedCanvas\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._renderCachedCanvas = function _renderCachedCanvas(renderer)\n{\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n this._initCachedDisplayObjectCanvas(renderer);\n\n this._cacheData.sprite.worldAlpha = this.worldAlpha;\n this._cacheData.sprite._renderCanvas(renderer);\n};\n\n// TODO this can be the same as the WebGL version.. will need to do a little tweaking first though..\n/**\n * Prepares the Canvas renderer to cache the sprite\n *\n * @private\n * @function _initCachedDisplayObjectCanvas\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._initCachedDisplayObjectCanvas = function _initCachedDisplayObjectCanvas(renderer)\n{\n if (this._cacheData && this._cacheData.sprite)\n {\n return;\n }\n\n // get bounds actually transforms the object for us already!\n var bounds = this.getLocalBounds();\n\n var cacheAlpha = this.alpha;\n\n this.alpha = 1;\n\n var cachedRenderTarget = renderer.context;\n\n bounds.ceil(settings.RESOLUTION);\n\n var renderTexture = RenderTexture.create(bounds.width, bounds.height);\n\n var textureCacheId = \"cacheAsBitmap_\" + (uid());\n\n this._cacheData.textureCacheId = textureCacheId;\n\n BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId);\n Texture.addToCache(renderTexture, textureCacheId);\n\n // need to set //\n var m = _tempMatrix;\n\n this.transform.localTransform.copyTo(m);\n m.invert();\n\n m.tx -= bounds.x;\n m.ty -= bounds.y;\n\n // m.append(this.transform.worldTransform.)\n // set all properties to there original so we can render to a texture\n this.renderCanvas = this._cacheData.originalRenderCanvas;\n\n // renderTexture.render(this, m, true);\n renderer.render(this, renderTexture, true, m, false);\n\n // now restore the state be setting the new properties\n renderer.context = cachedRenderTarget;\n\n this.renderCanvas = this._renderCachedCanvas;\n // the rest is the same as for WebGL\n this.updateTransform = this.displayObjectUpdateTransform;\n this.calculateBounds = this._calculateCachedBounds;\n this.getLocalBounds = this._getCachedLocalBounds;\n\n this._mask = null;\n this.filterArea = null;\n\n // create our cached sprite\n var cachedSprite = new Sprite(renderTexture);\n\n cachedSprite.transform.worldTransform = this.transform.worldTransform;\n cachedSprite.anchor.x = -(bounds.x / bounds.width);\n cachedSprite.anchor.y = -(bounds.y / bounds.height);\n cachedSprite.alpha = cacheAlpha;\n cachedSprite._bounds = this._bounds;\n\n this._cacheData.sprite = cachedSprite;\n\n this.transform._parentID = -1;\n // restore the transform of the cached sprite to avoid the nasty flicker..\n if (!this.parent)\n {\n this.parent = renderer._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this.updateTransform();\n }\n\n // map the hit test..\n this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite);\n};\n\n/**\n * Calculates the bounds of the cached sprite\n *\n * @private\n */\nDisplayObject.prototype._calculateCachedBounds = function _calculateCachedBounds()\n{\n this._bounds.clear();\n this._cacheData.sprite.transform._worldID = this.transform._worldID;\n this._cacheData.sprite._calculateBounds();\n this._lastBoundsID = this._boundsID;\n};\n\n/**\n * Gets the bounds of the cached sprite.\n *\n * @private\n * @return {Rectangle} The local bounds.\n */\nDisplayObject.prototype._getCachedLocalBounds = function _getCachedLocalBounds()\n{\n return this._cacheData.sprite.getLocalBounds();\n};\n\n/**\n * Destroys the cached sprite.\n *\n * @private\n */\nDisplayObject.prototype._destroyCachedDisplayObject = function _destroyCachedDisplayObject()\n{\n this._cacheData.sprite._texture.destroy(true);\n this._cacheData.sprite = null;\n\n BaseTexture.removeFromCache(this._cacheData.textureCacheId);\n Texture.removeFromCache(this._cacheData.textureCacheId);\n\n this._cacheData.textureCacheId = null;\n};\n\n/**\n * Destroys the cached object.\n *\n * @private\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value.\n * Used when destroying containers, see the Container.destroy method.\n */\nDisplayObject.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy(options)\n{\n this.cacheAsBitmap = false;\n this.destroy(options);\n};\n//# sourceMappingURL=mixin-cache-as-bitmap.es.js.map\n","/*!\n * @pixi/mixin-get-child-by-name - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/mixin-get-child-by-name is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { DisplayObject, Container } from '@pixi/display';\n\n/**\n * The instance name of the object.\n *\n * @memberof PIXI.DisplayObject#\n * @member {string} name\n */\nDisplayObject.prototype.name = null;\n\n/**\n * Returns the display object in the container.\n *\n * @method getChildByName\n * @memberof PIXI.Container#\n * @param {string} name - Instance name.\n * @return {PIXI.DisplayObject} The child with the specified name.\n */\nContainer.prototype.getChildByName = function getChildByName(name)\n{\n for (var i = 0; i < this.children.length; i++)\n {\n if (this.children[i].name === name)\n {\n return this.children[i];\n }\n }\n\n return null;\n};\n//# sourceMappingURL=mixin-get-child-by-name.es.js.map\n","/*!\n * @pixi/mixin-get-global-position - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/mixin-get-global-position is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { DisplayObject } from '@pixi/display';\nimport { Point } from '@pixi/math';\n\n/**\n * Returns the global position of the displayObject. Does not depend on object scale, rotation and pivot.\n *\n * @method getGlobalPosition\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Point} [point=new PIXI.Point()] - The point to write the global value to.\n * @param {boolean} [skipUpdate=false] - Setting to true will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost.\n * @return {PIXI.Point} The updated point.\n */\nDisplayObject.prototype.getGlobalPosition = function getGlobalPosition(point, skipUpdate)\n{\n if ( point === void 0 ) point = new Point();\n if ( skipUpdate === void 0 ) skipUpdate = false;\n\n if (this.parent)\n {\n this.parent.toGlobal(this.position, point, skipUpdate);\n }\n else\n {\n point.x = this.position.x;\n point.y = this.position.y;\n }\n\n return point;\n};\n//# sourceMappingURL=mixin-get-global-position.es.js.map\n","/*!\n * @pixi/mesh - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/mesh is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { State, Shader, Program, TextureMatrix, Geometry, Buffer } from '@pixi/core';\nimport { Point, Polygon, Matrix } from '@pixi/math';\nimport { DRAW_MODES, BLEND_MODES, TYPES } from '@pixi/constants';\nimport { Container } from '@pixi/display';\nimport { settings } from '@pixi/settings';\nimport { premultiplyTintToRgba } from '@pixi/utils';\n\n/**\n * Class controls cache for UV mapping from Texture normal space to BaseTexture normal space.\n *\n * @class\n * @memberof PIXI\n */\nvar MeshBatchUvs = function MeshBatchUvs(uvBuffer, uvMatrix)\n{\n /**\n * Buffer with normalized UV's\n * @member {PIXI.Buffer}\n */\n this.uvBuffer = uvBuffer;\n\n /**\n * Material UV matrix\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = uvMatrix;\n\n /**\n * UV Buffer data\n * @member {Float32Array}\n * @readonly\n */\n this.data = null;\n\n this._bufferUpdateId = -1;\n\n this._textureUpdateId = -1;\n\n this._updateID = 0;\n};\n\n/**\n * updates\n *\n * @param {boolean} forceUpdate - force the update\n */\nMeshBatchUvs.prototype.update = function update (forceUpdate)\n{\n if (!forceUpdate\n && this._bufferUpdateId === this.uvBuffer._updateID\n && this._textureUpdateId === this.uvMatrix._updateID)\n {\n return;\n }\n\n this._bufferUpdateId = this.uvBuffer._updateID;\n this._textureUpdateId = this.uvMatrix._updateID;\n\n var data = this.uvBuffer.data;\n\n if (!this.data || this.data.length !== data.length)\n {\n this.data = new Float32Array(data.length);\n }\n\n this.uvMatrix.multiplyUvs(data, this.data);\n\n this._updateID++;\n};\n\nvar tempPoint = new Point();\nvar tempPolygon = new Polygon();\n\n/**\n * Base mesh class.\n *\n * This class empowers you to have maximum flexibility to render any kind of WebGL visuals you can think of.\n * This class assumes a certain level of WebGL knowledge.\n * If you know a bit this should abstract enough away to make you life easier!\n *\n * Pretty much ALL WebGL can be broken down into the following:\n * - Geometry - The structure and data for the mesh. This can include anything from positions, uvs, normals, colors etc..\n * - Shader - This is the shader that PixiJS will render the geometry with (attributes in the shader must match the geometry)\n * - State - This is the state of WebGL required to render the mesh.\n *\n * Through a combination of the above elements you can render anything you want, 2D or 3D!\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Mesh = /*@__PURE__*/(function (Container) {\n function Mesh(geometry, shader, state, drawMode)// vertices, uvs, indices, drawMode)\n {\n if ( drawMode === void 0 ) drawMode = DRAW_MODES.TRIANGLES;\n\n Container.call(this);\n\n /**\n * Includes vertex positions, face indices, normals, colors, UVs, and\n * custom attributes within buffers, reducing the cost of passing all\n * this data to the GPU. Can be shared between multiple Mesh objects.\n * @member {PIXI.Geometry}\n * @readonly\n */\n this.geometry = geometry;\n\n geometry.refCount++;\n\n /**\n * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU.\n * Can be shared between multiple Mesh objects.\n * @member {PIXI.Shader|PIXI.MeshMaterial}\n */\n this.shader = shader;\n\n /**\n * Represents the WebGL state the Mesh required to render, excludes shader and geometry. E.g.,\n * blend mode, culling, depth testing, direction of rendering triangles, backface, etc.\n * @member {PIXI.State}\n */\n this.state = state || State.for2d();\n\n /**\n * The way the Mesh should be drawn, can be any of the {@link PIXI.DRAW_MODES} constants.\n *\n * @member {number}\n * @see PIXI.DRAW_MODES\n */\n this.drawMode = drawMode;\n\n /**\n * Typically the index of the IndexBuffer where to start drawing.\n * @member {number}\n * @default 0\n */\n this.start = 0;\n\n /**\n * How much of the geometry to draw, by default `0` renders everything.\n * @member {number}\n * @default 0\n */\n this.size = 0;\n\n /**\n * thease are used as easy access for batching\n * @member {Float32Array}\n * @private\n */\n this.uvs = null;\n\n /**\n * thease are used as easy access for batching\n * @member {Uint16Array}\n * @private\n */\n this.indices = null;\n\n /**\n * this is the caching layer used by the batcher\n * @member {Float32Array}\n * @private\n */\n this.vertexData = new Float32Array(1);\n\n /**\n * If geometry is changed used to decide to re-transform\n * the vertexData.\n * @member {number}\n * @private\n */\n this.vertexDirty = 0;\n\n this._transformID = -1;\n\n // Inherited from DisplayMode, set defaults\n this.tint = 0xFFFFFF;\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * Internal roundPixels field\n *\n * @member {boolean}\n * @private\n */\n this._roundPixels = settings.ROUND_PIXELS;\n\n /**\n * Batched UV's are cached for atlas textures\n * @member {PIXI.MeshBatchUvs}\n * @private\n */\n this.batchUvs = null;\n }\n\n if ( Container ) Mesh.__proto__ = Container;\n Mesh.prototype = Object.create( Container && Container.prototype );\n Mesh.prototype.constructor = Mesh;\n\n var prototypeAccessors = { uvBuffer: { configurable: true },verticesBuffer: { configurable: true },material: { configurable: true },blendMode: { configurable: true },roundPixels: { configurable: true },tint: { configurable: true },texture: { configurable: true } };\n\n /**\n * To change mesh uv's, change its uvBuffer data and increment its _updateID.\n * @member {PIXI.Buffer}\n * @readonly\n */\n prototypeAccessors.uvBuffer.get = function ()\n {\n return this.geometry.buffers[1];\n };\n\n /**\n * To change mesh vertices, change its uvBuffer data and increment its _updateID.\n * Incrementing _updateID is optional because most of Mesh objects do it anyway.\n * @member {PIXI.Buffer}\n * @readonly\n */\n prototypeAccessors.verticesBuffer.get = function ()\n {\n return this.geometry.buffers[0];\n };\n\n /**\n * Alias for {@link PIXI.Mesh#shader}.\n * @member {PIXI.Shader|PIXI.MeshMaterial}\n */\n prototypeAccessors.material.set = function (value)\n {\n this.shader = value;\n };\n\n prototypeAccessors.material.get = function ()\n {\n return this.shader;\n };\n\n /**\n * The blend mode to be applied to the Mesh. Apply a value of\n * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL;\n * @see PIXI.BLEND_MODES\n */\n prototypeAccessors.blendMode.set = function (value)\n {\n this.state.blendMode = value;\n };\n\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n prototypeAccessors.roundPixels.set = function (value)\n {\n if (this._roundPixels !== value)\n {\n this._transformID = -1;\n }\n this._roundPixels = value;\n };\n\n prototypeAccessors.roundPixels.get = function ()\n {\n return this._roundPixels;\n };\n\n /**\n * The multiply tint applied to the Mesh. This is a hex value. A value of\n * `0xFFFFFF` will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this.shader.tint;\n };\n\n prototypeAccessors.tint.set = function (value)\n {\n this.shader.tint = value;\n };\n\n /**\n * The texture that the Mesh uses.\n *\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this.shader.texture;\n };\n\n prototypeAccessors.texture.set = function (value)\n {\n this.shader.texture = value;\n };\n\n /**\n * Standard renderer draw.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._render = function _render (renderer)\n {\n // set properties for batching..\n // TODO could use a different way to grab verts?\n var vertices = this.geometry.buffers[0].data;\n\n // TODO benchmark check for attribute size..\n if (this.shader.batchable && this.drawMode === DRAW_MODES.TRIANGLES && vertices.length < Mesh.BATCHABLE_SIZE * 2)\n {\n this._renderToBatch(renderer);\n }\n else\n {\n this._renderDefault(renderer);\n }\n };\n\n /**\n * Standard non-batching way of rendering.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._renderDefault = function _renderDefault (renderer)\n {\n var shader = this.shader;\n\n shader.alpha = this.worldAlpha;\n if (shader.update)\n {\n shader.update();\n }\n\n renderer.batch.flush();\n\n if (shader.program.uniformData.translationMatrix)\n {\n shader.uniforms.translationMatrix = this.transform.worldTransform.toArray(true);\n }\n\n // bind and sync uniforms..\n renderer.shader.bind(shader);\n\n // set state..\n renderer.state.set(this.state);\n\n // bind the geometry...\n renderer.geometry.bind(this.geometry, shader);\n\n // then render it\n renderer.geometry.draw(this.drawMode, this.size, this.start, this.geometry.instanceCount);\n };\n\n /**\n * Rendering by using the Batch system.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._renderToBatch = function _renderToBatch (renderer)\n {\n var geometry = this.geometry;\n\n if (this.shader.uvMatrix)\n {\n this.shader.uvMatrix.update();\n this.calculateUvs();\n }\n\n // set properties for batching..\n this.calculateVertices();\n this.indices = geometry.indexBuffer.data;\n this._tintRGB = this.shader._tintRGB;\n this._texture = this.shader.texture;\n\n var pluginName = this.material.pluginName;\n\n renderer.batch.setObjectRenderer(renderer.plugins[pluginName]);\n renderer.plugins[pluginName].render(this);\n };\n\n /**\n * Updates vertexData field based on transform and vertices\n */\n Mesh.prototype.calculateVertices = function calculateVertices ()\n {\n var geometry = this.geometry;\n var vertices = geometry.buffers[0].data;\n\n if (geometry.vertexDirtyId === this.vertexDirty && this._transformID === this.transform._worldID)\n {\n return;\n }\n\n this._transformID = this.transform._worldID;\n\n if (this.vertexData.length !== vertices.length)\n {\n this.vertexData = new Float32Array(vertices.length);\n }\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var vertexData = this.vertexData;\n\n for (var i = 0; i < vertexData.length / 2; i++)\n {\n var x = vertices[(i * 2)];\n var y = vertices[(i * 2) + 1];\n\n vertexData[(i * 2)] = (a * x) + (c * y) + tx;\n vertexData[(i * 2) + 1] = (b * x) + (d * y) + ty;\n }\n\n if (this._roundPixels)\n {\n for (var i$1 = 0; i$1 < vertexData.length; i$1++)\n {\n vertexData[i$1] = Math.round(vertexData[i$1]);\n }\n }\n\n this.vertexDirty = geometry.vertexDirtyId;\n };\n\n /**\n * Updates uv field based on from geometry uv's or batchUvs\n */\n Mesh.prototype.calculateUvs = function calculateUvs ()\n {\n var geomUvs = this.geometry.buffers[1];\n\n if (!this.shader.uvMatrix.isSimple)\n {\n if (!this.batchUvs)\n {\n this.batchUvs = new MeshBatchUvs(geomUvs, this.shader.uvMatrix);\n }\n this.batchUvs.update();\n this.uvs = this.batchUvs.data;\n }\n else\n {\n this.uvs = geomUvs.data;\n }\n };\n\n /**\n * Updates the bounds of the mesh as a rectangle. The bounds calculation takes the worldTransform into account.\n * there must be a aVertexPosition attribute present in the geometry for bounds to be calculated correctly.\n *\n * @protected\n */\n Mesh.prototype._calculateBounds = function _calculateBounds ()\n {\n this.calculateVertices();\n\n this._bounds.addVertexData(this.vertexData, 0, this.vertexData.length);\n };\n\n /**\n * Tests if a point is inside this mesh. Works only for PIXI.DRAW_MODES.TRIANGLES.\n *\n * @param {PIXI.Point} point the point to test\n * @return {boolean} the result of the test\n */\n Mesh.prototype.containsPoint = function containsPoint (point)\n {\n if (!this.getBounds().contains(point.x, point.y))\n {\n return false;\n }\n\n this.worldTransform.applyInverse(point, tempPoint);\n\n var vertices = this.geometry.getBuffer('aVertexPosition').data;\n\n var points = tempPolygon.points;\n var indices = this.geometry.getIndex().data;\n var len = indices.length;\n var step = this.drawMode === 4 ? 3 : 1;\n\n for (var i = 0; i + 2 < len; i += step)\n {\n var ind0 = indices[i] * 2;\n var ind1 = indices[i + 1] * 2;\n var ind2 = indices[i + 2] * 2;\n\n points[0] = vertices[ind0];\n points[1] = vertices[ind0 + 1];\n points[2] = vertices[ind1];\n points[3] = vertices[ind1 + 1];\n points[4] = vertices[ind2];\n points[5] = vertices[ind2 + 1];\n\n if (tempPolygon.contains(tempPoint.x, tempPoint.y))\n {\n return true;\n }\n }\n\n return false;\n };\n /**\n * Destroys the Mesh object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n */\n Mesh.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.geometry.refCount--;\n if (this.geometry.refCount === 0)\n {\n this.geometry.dispose();\n }\n\n this.geometry = null;\n this.shader = null;\n this.state = null;\n this.uvs = null;\n this.indices = null;\n this.vertexData = null;\n };\n\n Object.defineProperties( Mesh.prototype, prototypeAccessors );\n\n return Mesh;\n}(Container));\n\n/**\n * The maximum number of vertices to consider batchable. Generally, the complexity\n * of the geometry.\n * @memberof PIXI.Mesh\n * @static\n * @member {number} BATCHABLE_SIZE\n */\nMesh.BATCHABLE_SIZE = 100;\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform mat3 uTextureMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = (uTextureMatrix * vec3(aTextureCoord, 1.0)).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\nuniform vec4 uColor;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void)\\n{\\n gl_FragColor = texture2D(uSampler, vTextureCoord) * uColor;\\n}\\n\";\n\n/**\n * Slightly opinionated default shader for PixiJS 2D objects.\n * @class\n * @memberof PIXI\n * @extends PIXI.Shader\n */\nvar MeshMaterial = /*@__PURE__*/(function (Shader) {\n function MeshMaterial(uSampler, options)\n {\n var uniforms = {\n uSampler: uSampler,\n alpha: 1,\n uTextureMatrix: Matrix.IDENTITY,\n uColor: new Float32Array([1, 1, 1, 1]),\n };\n\n // Set defaults\n options = Object.assign({\n tint: 0xFFFFFF,\n alpha: 1,\n pluginName: 'batch',\n }, options);\n\n if (options.uniforms)\n {\n Object.assign(uniforms, options.uniforms);\n }\n\n Shader.call(this, options.program || Program.from(vertex, fragment), uniforms);\n\n /**\n * Only do update if tint or alpha changes.\n * @member {boolean}\n * @private\n * @default false\n */\n this._colorDirty = false;\n\n /**\n * TextureMatrix instance for this Mesh, used to track Texture changes\n *\n * @member {PIXI.TextureMatrix}\n * @readonly\n */\n this.uvMatrix = new TextureMatrix(uSampler);\n\n /**\n * `true` if shader can be batch with the renderer's batch system.\n * @member {boolean}\n * @default true\n */\n this.batchable = options.program === undefined;\n\n /**\n * Renderer plugin for batching\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = options.pluginName;\n\n this.tint = options.tint;\n this.alpha = options.alpha;\n }\n\n if ( Shader ) MeshMaterial.__proto__ = Shader;\n MeshMaterial.prototype = Object.create( Shader && Shader.prototype );\n MeshMaterial.prototype.constructor = MeshMaterial;\n\n var prototypeAccessors = { texture: { configurable: true },alpha: { configurable: true },tint: { configurable: true } };\n\n /**\n * Reference to the texture being rendered.\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this.uniforms.uSampler;\n };\n prototypeAccessors.texture.set = function (value)\n {\n if (this.uniforms.uSampler !== value)\n {\n this.uniforms.uSampler = value;\n this.uvMatrix.texture = value;\n }\n };\n\n /**\n * This gets automatically set by the object using this.\n *\n * @default 1\n * @member {number}\n */\n prototypeAccessors.alpha.set = function (value)\n {\n if (value === this._alpha) { return; }\n\n this._alpha = value;\n this._colorDirty = true;\n };\n prototypeAccessors.alpha.get = function ()\n {\n return this._alpha;\n };\n\n /**\n * Multiply tint for the material.\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.set = function (value)\n {\n if (value === this._tint) { return; }\n\n this._tint = value;\n this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16);\n this._colorDirty = true;\n };\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n /**\n * Gets called automatically by the Mesh. Intended to be overridden for custom\n * MeshMaterial objects.\n */\n MeshMaterial.prototype.update = function update ()\n {\n if (this._colorDirty)\n {\n this._colorDirty = false;\n var baseTexture = this.texture.baseTexture;\n\n premultiplyTintToRgba(this._tint, this._alpha, this.uniforms.uColor, baseTexture.premultiplyAlpha);\n }\n if (this.uvMatrix.update())\n {\n this.uniforms.uTextureMatrix = this.uvMatrix.mapCoord;\n }\n };\n\n Object.defineProperties( MeshMaterial.prototype, prototypeAccessors );\n\n return MeshMaterial;\n}(Shader));\n\n/**\n * Standard 2D geometry used in PixiJS.\n *\n * Geometry can be defined without passing in a style or data if required.\n *\n * ```js\n * const geometry = new PIXI.Geometry();\n *\n * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2);\n * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1], 2);\n * geometry.addIndex([0,1,2,1,3,2]);\n *\n * ```\n * @class\n * @memberof PIXI\n * @extends PIXI.Geometry\n */\nvar MeshGeometry = /*@__PURE__*/(function (Geometry) {\n function MeshGeometry(vertices, uvs, index)\n {\n Geometry.call(this);\n\n var verticesBuffer = new Buffer(vertices);\n var uvsBuffer = new Buffer(uvs, true);\n var indexBuffer = new Buffer(index, true, true);\n\n this.addAttribute('aVertexPosition', verticesBuffer, 2, false, TYPES.FLOAT)\n .addAttribute('aTextureCoord', uvsBuffer, 2, false, TYPES.FLOAT)\n .addIndex(indexBuffer);\n\n /**\n * Dirty flag to limit update calls on Mesh. For example,\n * limiting updates on a single Mesh instance with a shared Geometry\n * within the render loop.\n * @private\n * @member {number}\n * @default -1\n */\n this._updateId = -1;\n }\n\n if ( Geometry ) MeshGeometry.__proto__ = Geometry;\n MeshGeometry.prototype = Object.create( Geometry && Geometry.prototype );\n MeshGeometry.prototype.constructor = MeshGeometry;\n\n var prototypeAccessors = { vertexDirtyId: { configurable: true } };\n\n /**\n * If the vertex position is updated.\n * @member {number}\n * @readonly\n * @private\n */\n prototypeAccessors.vertexDirtyId.get = function ()\n {\n return this.buffers[0]._updateID;\n };\n\n Object.defineProperties( MeshGeometry.prototype, prototypeAccessors );\n\n return MeshGeometry;\n}(Geometry));\n\nexport { Mesh, MeshBatchUvs, MeshGeometry, MeshMaterial };\n//# sourceMappingURL=mesh.es.js.map\n","/*!\n * pixi.js - v5.1.4\n * Compiled Sat, 21 Sep 2019 07:35:21 UTC\n *\n * pixi.js is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport '@pixi/polyfill';\nimport { AccessibilityManager } from '@pixi/accessibility';\nimport * as accessibility from '@pixi/accessibility';\nexport { accessibility };\nimport { Extract } from '@pixi/extract';\nimport * as extract from '@pixi/extract';\nexport { extract };\nimport { InteractionManager } from '@pixi/interaction';\nimport * as interaction from '@pixi/interaction';\nexport { interaction };\nimport { Prepare } from '@pixi/prepare';\nimport * as prepare from '@pixi/prepare';\nexport { prepare };\nimport { deprecation } from '@pixi/utils';\nimport * as utils from '@pixi/utils';\nexport { utils };\nimport { Application } from '@pixi/app';\nexport * from '@pixi/app';\nimport { Renderer, BatchRenderer } from '@pixi/core';\nexport * from '@pixi/core';\nimport { Loader, AppLoaderPlugin } from '@pixi/loaders';\nexport * from '@pixi/loaders';\nimport { ParticleRenderer } from '@pixi/particles';\nexport * from '@pixi/particles';\nimport { SpritesheetLoader } from '@pixi/spritesheet';\nexport * from '@pixi/spritesheet';\nimport { TilingSpriteRenderer } from '@pixi/sprite-tiling';\nexport * from '@pixi/sprite-tiling';\nimport { BitmapFontLoader } from '@pixi/text-bitmap';\nexport * from '@pixi/text-bitmap';\nimport { TickerPlugin } from '@pixi/ticker';\nexport * from '@pixi/ticker';\nimport { AlphaFilter } from '@pixi/filter-alpha';\nimport { BlurFilter, BlurFilterPass } from '@pixi/filter-blur';\nimport { ColorMatrixFilter } from '@pixi/filter-color-matrix';\nimport { DisplacementFilter } from '@pixi/filter-displacement';\nimport { FXAAFilter } from '@pixi/filter-fxaa';\nimport { NoiseFilter } from '@pixi/filter-noise';\nimport '@pixi/mixin-cache-as-bitmap';\nimport '@pixi/mixin-get-child-by-name';\nimport '@pixi/mixin-get-global-position';\nexport * from '@pixi/constants';\nexport * from '@pixi/display';\nexport * from '@pixi/graphics';\nexport * from '@pixi/math';\nexport * from '@pixi/mesh';\nexport * from '@pixi/mesh-extras';\nexport * from '@pixi/runner';\nexport * from '@pixi/sprite';\nexport * from '@pixi/sprite-animated';\nexport * from '@pixi/text';\nexport * from '@pixi/settings';\n\nvar v5 = '5.0.0';\n\n/**\n * Deprecations (backward compatibilities) are automatically applied for browser bundles\n * in the UMD module format. If using Webpack or Rollup, you'll need to apply these\n * deprecations manually by doing something like this:\n * @example\n * import * as PIXI from 'pixi.js';\n * PIXI.useDeprecated(); // MUST be bound to namespace\n * @memberof PIXI\n * @function useDeprecated\n */\nfunction useDeprecated()\n{\n var PIXI = this;\n\n Object.defineProperties(PIXI, {\n /**\n * @constant {RegExp|string} SVG_SIZE\n * @memberof PIXI\n * @see PIXI.resources.SVGResource.SVG_SIZE\n * @deprecated since 5.0.0\n */\n SVG_SIZE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.utils.SVG_SIZE property has moved to PIXI.resources.SVGResource.SVG_SIZE');\n\n return PIXI.SVGResource.SVG_SIZE;\n },\n },\n\n /**\n * @class PIXI.TransformStatic\n * @deprecated since 5.0.0\n * @see PIXI.Transform\n */\n TransformStatic: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TransformStatic class has been removed, use PIXI.Transform');\n\n return PIXI.Transform;\n },\n },\n\n /**\n * @class PIXI.TransformBase\n * @deprecated since 5.0.0\n * @see PIXI.Transform\n */\n TransformBase: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TransformBase class has been removed, use PIXI.Transform');\n\n return PIXI.Transform;\n },\n },\n\n /**\n * Constants that specify the transform type.\n *\n * @static\n * @constant\n * @name TRANSFORM_MODE\n * @memberof PIXI\n * @enum {number}\n * @deprecated since 5.0.0\n * @property {number} STATIC\n * @property {number} DYNAMIC\n */\n TRANSFORM_MODE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TRANSFORM_MODE property has been removed');\n\n return { STATIC: 0, DYNAMIC: 1 };\n },\n },\n\n /**\n * @class PIXI.WebGLRenderer\n * @see PIXI.Renderer\n * @deprecated since 5.0.0\n */\n WebGLRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.WebGLRenderer class has moved to PIXI.Renderer');\n\n return PIXI.Renderer;\n },\n },\n\n /**\n * @class PIXI.CanvasRenderTarget\n * @see PIXI.utils.CanvasRenderTarget\n * @deprecated since 5.0.0\n */\n CanvasRenderTarget: {\n get: function get()\n {\n deprecation(v5, 'PIXI.CanvasRenderTarget class has moved to PIXI.utils.CanvasRenderTarget');\n\n return PIXI.utils.CanvasRenderTarget;\n },\n },\n\n /**\n * @memberof PIXI\n * @name loader\n * @type {PIXI.Loader}\n * @see PIXI.Loader.shared\n * @deprecated since 5.0.0\n */\n loader: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loader instance has moved to PIXI.Loader.shared');\n\n return PIXI.Loader.shared;\n },\n },\n\n /**\n * @class PIXI.FilterManager\n * @see PIXI.systems.FilterSystem\n * @deprecated since 5.0.0\n */\n FilterManager: {\n get: function get()\n {\n deprecation(v5, 'PIXI.FilterManager class has moved to PIXI.systems.FilterSystem');\n\n return PIXI.systems.FilterSystem;\n },\n },\n\n /**\n * @namespace PIXI.CanvasTinter\n * @see PIXI.canvasUtils\n * @deprecated since 5.2.0\n */\n CanvasTinter: {\n get: function get()\n {\n deprecation('5.2.0', 'PIXI.CanvasTinter namespace has moved to PIXI.canvasUtils');\n\n return PIXI.canvasUtils;\n },\n },\n\n /**\n * @namespace PIXI.GroupD8\n * @see PIXI.groupD8\n * @deprecated since 5.2.0\n */\n GroupD8: {\n get: function get()\n {\n deprecation('5.2.0', 'PIXI.GroupD8 namespace has moved to PIXI.groupD8');\n\n return PIXI.groupD8;\n },\n },\n });\n\n /**\n * This namespace has been removed. All classes previous nested\n * under this namespace have been moved to the top-level `PIXI` object.\n * @namespace PIXI.extras\n * @deprecated since 5.0.0\n */\n PIXI.extras = {};\n\n Object.defineProperties(PIXI.extras, {\n /**\n * @class PIXI.extras.TilingSprite\n * @see PIXI.TilingSprite\n * @deprecated since 5.0.0\n */\n TilingSprite: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.TilingSprite class has moved to PIXI.TilingSprite');\n\n return PIXI.TilingSprite;\n },\n },\n /**\n * @class PIXI.extras.TilingSpriteRenderer\n * @see PIXI.TilingSpriteRenderer\n * @deprecated since 5.0.0\n */\n TilingSpriteRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.TilingSpriteRenderer class has moved to PIXI.TilingSpriteRenderer');\n\n return PIXI.TilingSpriteRenderer;\n },\n },\n /**\n * @class PIXI.extras.AnimatedSprite\n * @see PIXI.AnimatedSprite\n * @deprecated since 5.0.0\n */\n AnimatedSprite: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.AnimatedSprite class has moved to PIXI.AnimatedSprite');\n\n return PIXI.AnimatedSprite;\n },\n },\n /**\n * @class PIXI.extras.BitmapText\n * @see PIXI.BitmapText\n * @deprecated since 5.0.0\n */\n BitmapText: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.BitmapText class has moved to PIXI.BitmapText');\n\n return PIXI.BitmapText;\n },\n },\n });\n\n Object.defineProperties(PIXI.utils, {\n /**\n * @function PIXI.utils.getSvgSize\n * @see PIXI.resources.SVGResource.getSize\n * @deprecated since 5.0.0\n */\n getSvgSize: {\n get: function get()\n {\n deprecation(v5, 'PIXI.utils.getSvgSize function has moved to PIXI.resources.SVGResource.getSize');\n\n return PIXI.SVGResource.getSize;\n },\n },\n });\n\n /**\n * All classes on this namespace have moved to the high-level `PIXI` object.\n * @namespace PIXI.mesh\n * @deprecated since 5.0.0\n */\n PIXI.mesh = {};\n\n Object.defineProperties(PIXI.mesh, {\n /**\n * @class PIXI.mesh.Mesh\n * @see PIXI.SimpleMesh\n * @deprecated since 5.0.0\n */\n Mesh: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Mesh class has moved to PIXI.SimpleMesh');\n\n return PIXI.SimpleMesh;\n },\n },\n /**\n * @class PIXI.mesh.NineSlicePlane\n * @see PIXI.NineSlicePlane\n * @deprecated since 5.0.0\n */\n NineSlicePlane: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.NineSlicePlane class has moved to PIXI.NineSlicePlane');\n\n return PIXI.NineSlicePlane;\n },\n },\n /**\n * @class PIXI.mesh.Plane\n * @see PIXI.SimplePlane\n * @deprecated since 5.0.0\n */\n Plane: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Plane class has moved to PIXI.SimplePlane');\n\n return PIXI.SimplePlane;\n },\n },\n /**\n * @class PIXI.mesh.Rope\n * @see PIXI.SimpleRope\n * @deprecated since 5.0.0\n */\n Rope: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Rope class has moved to PIXI.SimpleRope');\n\n return PIXI.SimpleRope;\n },\n },\n /**\n * @class PIXI.mesh.RawMesh\n * @see PIXI.Mesh\n * @deprecated since 5.0.0\n */\n RawMesh: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.RawMesh class has moved to PIXI.Mesh');\n\n return PIXI.Mesh;\n },\n },\n /**\n * @class PIXI.mesh.CanvasMeshRenderer\n * @see PIXI.CanvasMeshRenderer\n * @deprecated since 5.0.0\n */\n CanvasMeshRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.CanvasMeshRenderer class has moved to PIXI.CanvasMeshRenderer');\n\n return PIXI.CanvasMeshRenderer;\n },\n },\n /**\n * @class PIXI.mesh.MeshRenderer\n * @see PIXI.MeshRenderer\n * @deprecated since 5.0.0\n */\n MeshRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.MeshRenderer class has moved to PIXI.MeshRenderer');\n\n return PIXI.MeshRenderer;\n },\n },\n });\n\n /**\n * This namespace has been removed and items have been moved to\n * the top-level `PIXI` object.\n * @namespace PIXI.particles\n * @deprecated since 5.0.0\n */\n PIXI.particles = {};\n\n Object.defineProperties(PIXI.particles, {\n /**\n * @class PIXI.particles.ParticleContainer\n * @deprecated since 5.0.0\n * @see PIXI.ParticleContainer\n */\n ParticleContainer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.particles.ParticleContainer class has moved to PIXI.ParticleContainer');\n\n return PIXI.ParticleContainer;\n },\n },\n /**\n * @class PIXI.particles.ParticleRenderer\n * @deprecated since 5.0.0\n * @see PIXI.ParticleRenderer\n */\n ParticleRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.particles.ParticleRenderer class has moved to PIXI.ParticleRenderer');\n\n return PIXI.ParticleRenderer;\n },\n },\n });\n\n /**\n * This namespace has been removed and items have been moved to\n * the top-level `PIXI` object.\n * @namespace PIXI.ticker\n * @deprecated since 5.0.0\n */\n PIXI.ticker = {};\n\n Object.defineProperties(PIXI.ticker, {\n /**\n * @class PIXI.ticker.Ticker\n * @deprecated since 5.0.0\n * @see PIXI.Ticker\n */\n Ticker: {\n get: function get()\n {\n deprecation(v5, 'PIXI.ticker.Ticker class has moved to PIXI.Ticker');\n\n return PIXI.Ticker;\n },\n },\n /**\n * @name PIXI.ticker.shared\n * @type {PIXI.Ticker}\n * @deprecated since 5.0.0\n * @see PIXI.Ticker.shared\n */\n shared: {\n get: function get()\n {\n deprecation(v5, 'PIXI.ticker.shared instance has moved to PIXI.Ticker.shared');\n\n return PIXI.Ticker.shared;\n },\n },\n });\n\n /**\n * All classes on this namespace have moved to the high-level `PIXI` object.\n * @namespace PIXI.loaders\n * @deprecated since 5.0.0\n */\n PIXI.loaders = {};\n\n Object.defineProperties(PIXI.loaders, {\n /**\n * @class PIXI.loaders.Loader\n * @see PIXI.Loader\n * @deprecated since 5.0.0\n */\n Loader: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.Loader class has moved to PIXI.Loader');\n\n return PIXI.Loader;\n },\n },\n /**\n * @class PIXI.loaders.Resource\n * @see PIXI.LoaderResource\n * @deprecated since 5.0.0\n */\n Resource: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.Resource class has moved to PIXI.LoaderResource');\n\n return PIXI.LoaderResource;\n },\n },\n /**\n * @function PIXI.loaders.bitmapFontParser\n * @see PIXI.BitmapFontLoader.use\n * @deprecated since 5.0.0\n */\n bitmapFontParser: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.bitmapFontParser function has moved to PIXI.BitmapFontLoader.use');\n\n return PIXI.BitmapFontLoader.use;\n },\n },\n /**\n * @function PIXI.loaders.parseBitmapFontData\n * @see PIXI.BitmapFontLoader.parse\n * @deprecated since 5.0.0\n */\n parseBitmapFontData: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.parseBitmapFontData function has moved to PIXI.BitmapFontLoader.parse');\n\n return PIXI.BitmapFontLoader.parse;\n },\n },\n /**\n * @function PIXI.loaders.spritesheetParser\n * @see PIXI.SpritesheetLoader.use\n * @deprecated since 5.0.0\n */\n spritesheetParser: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.spritesheetParser function has moved to PIXI.SpritesheetLoader.use');\n\n return PIXI.SpritesheetLoader.use;\n },\n },\n /**\n * @function PIXI.loaders.getResourcePath\n * @see PIXI.SpritesheetLoader.getResourcePath\n * @deprecated since 5.0.0\n */\n getResourcePath: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.getResourcePath property has moved to PIXI.SpritesheetLoader.getResourcePath');\n\n return PIXI.SpritesheetLoader.getResourcePath;\n },\n },\n });\n\n /**\n * @function PIXI.loaders.Loader.addPixiMiddleware\n * @see PIXI.Loader.registerPlugin\n * @deprecated since 5.0.0\n * @param {function} middleware\n */\n PIXI.Loader.addPixiMiddleware = function addPixiMiddleware(middleware)\n {\n deprecation(v5,\n 'PIXI.loaders.Loader.addPixiMiddleware function is deprecated, use PIXI.loaders.Loader.registerPlugin'\n );\n\n return PIXI.loaders.Loader.registerPlugin({ use: middleware() });\n };\n\n /**\n * @class PIXI.extract.WebGLExtract\n * @deprecated since 5.0.0\n * @see PIXI.extract.Extract\n */\n Object.defineProperty(PIXI.extract, 'WebGLExtract', {\n get: function get()\n {\n deprecation(v5, 'PIXI.extract.WebGLExtract method has moved to PIXI.extract.Extract');\n\n return PIXI.extract.Extract;\n },\n });\n\n /**\n * @class PIXI.prepare.WebGLPrepare\n * @deprecated since 5.0.0\n * @see PIXI.prepare.Prepare\n */\n Object.defineProperty(PIXI.prepare, 'WebGLPrepare', {\n get: function get()\n {\n deprecation(v5, 'PIXI.prepare.WebGLPrepare class has moved to PIXI.prepare.Prepare');\n\n return PIXI.prepare.Prepare;\n },\n });\n\n /**\n * @method PIXI.Container#_renderWebGL\n * @private\n * @deprecated since 5.0.0\n * @see PIXI.Container#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype._renderWebGL = function _renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container._renderWebGL method has moved to PIXI.Container._render');\n\n this._render(renderer);\n };\n\n /**\n * @method PIXI.Container#renderWebGL\n * @deprecated since 5.0.0\n * @see PIXI.Container#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype.renderWebGL = function renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container.renderWebGL method has moved to PIXI.Container.render');\n\n this.render(renderer);\n };\n\n /**\n * @method PIXI.DisplayObject#renderWebGL\n * @deprecated since 5.0.0\n * @see PIXI.DisplayObject#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.DisplayObject.prototype.renderWebGL = function renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.DisplayObject.renderWebGL method has moved to PIXI.DisplayObject.render');\n\n this.render(renderer);\n };\n\n /**\n * @method PIXI.Container#renderAdvancedWebGL\n * @deprecated since 5.0.0\n * @see PIXI.Container#renderAdvanced\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype.renderAdvancedWebGL = function renderAdvancedWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container.renderAdvancedWebGL method has moved to PIXI.Container.renderAdvanced');\n\n this.renderAdvanced(renderer);\n };\n\n Object.defineProperties(PIXI.settings, {\n /**\n * Default transform type.\n *\n * @static\n * @deprecated since 5.0.0\n * @memberof PIXI.settings\n * @type {PIXI.TRANSFORM_MODE}\n * @default PIXI.TRANSFORM_MODE.STATIC\n */\n TRANSFORM_MODE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.settings.TRANSFORM_MODE property has been removed');\n\n return 0;\n },\n set: function set()\n {\n deprecation(v5, 'PIXI.settings.TRANSFORM_MODE property has been removed');\n },\n },\n });\n\n var BaseTexture = PIXI.BaseTexture;\n\n /**\n * @method loadSource\n * @memberof PIXI.BaseTexture#\n * @deprecated since 5.0.0\n */\n BaseTexture.prototype.loadSource = function loadSource(image)\n {\n deprecation(v5, 'PIXI.BaseTexture.loadSource method has been deprecated');\n\n var resource = PIXI.resources.autoDetectResource(image);\n\n resource.internal = true;\n\n this.setResource(resource);\n this.update();\n };\n\n Object.defineProperties(BaseTexture.prototype, {\n /**\n * @name PIXI.BaseTexture#hasLoaded\n * @type {boolean}\n * @deprecated since 5.0.0\n * @readonly\n * @see PIXI.BaseTexture#valid\n */\n hasLoaded: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.hasLoaded property has been removed, use PIXI.BaseTexture.valid');\n\n return this.valid;\n },\n },\n /**\n * @name PIXI.BaseTexture#imageUrl\n * @type {string}\n * @deprecated since 5.0.0\n * @see PIXI.resource.ImageResource#url\n */\n imageUrl: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.imageUrl property has been removed, use PIXI.BaseTexture.resource.url');\n\n return this.resource && this.resource.url;\n },\n\n set: function set(imageUrl)\n {\n deprecation(v5, 'PIXI.BaseTexture.imageUrl property has been removed, use PIXI.BaseTexture.resource.url');\n\n if (this.resource)\n {\n this.resource.url = imageUrl;\n }\n },\n },\n /**\n * @name PIXI.BaseTexture#source\n * @type {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement}\n * @deprecated since 5.0.0\n * @readonly\n * @see PIXI.resources.BaseImageResource#source\n */\n source: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.source property has been moved, use `PIXI.BaseTexture.resource.source`');\n\n return this.resource && this.resource.source;\n },\n set: function set(source)\n {\n deprecation(v5, 'PIXI.BaseTexture.source property has been moved, use `PIXI.BaseTexture.resource.source` '\n + 'if you want to set HTMLCanvasElement. Otherwise, create new BaseTexture.');\n\n if (this.resource)\n {\n this.resource.source = source;\n }\n },\n },\n });\n\n /**\n * @method fromImage\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromImage = function fromImage(canvas, crossorigin, scaleMode, scale)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromImage method has been replaced with PIXI.BaseTexture.from');\n\n var resourceOptions = { scale: scale, crossorigin: crossorigin };\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode, resourceOptions: resourceOptions });\n };\n\n /**\n * @method fromCanvas\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromCanvas = function fromCanvas(canvas, scaleMode)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromCanvas method has been replaced with PIXI.BaseTexture.from');\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode });\n };\n\n /**\n * @method fromSVG\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromSVG = function fromSVG(canvas, crossorigin, scaleMode, scale)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromSVG method has been replaced with PIXI.BaseTexture.from');\n\n var resourceOptions = { scale: scale, crossorigin: crossorigin };\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode, resourceOptions: resourceOptions });\n };\n\n /**\n * @method PIXI.Point#copy\n * @deprecated since 5.0.0\n * @see PIXI.Point#copyFrom\n */\n PIXI.Point.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Point.copy method has been replaced with PIXI.Point.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.ObservablePoint#copy\n * @deprecated since 5.0.0\n * @see PIXI.ObservablePoint#copyFrom\n */\n PIXI.ObservablePoint.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.ObservablePoint.copy method has been replaced with PIXI.ObservablePoint.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.Rectangle#copy\n * @deprecated since 5.0.0\n * @see PIXI.Rectangle#copyFrom\n */\n PIXI.Rectangle.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Rectangle.copy method has been replaced with PIXI.Rectangle.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.Matrix#copy\n * @deprecated since 5.0.0\n * @see PIXI.Matrix#copyTo\n */\n PIXI.Matrix.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Matrix.copy method has been replaced with PIXI.Matrix.copyTo');\n\n return this.copyTo(p);\n };\n\n /**\n * @method PIXI.systems.StateSystem#setState\n * @deprecated since 5.1.0\n * @see PIXI.systems.StateSystem#set\n */\n PIXI.systems.StateSystem.prototype.setState = function setState(s)\n {\n deprecation('v5.1.0', 'StateSystem.setState has been renamed to StateSystem.set');\n\n return this.set(s);\n };\n\n Object.assign(PIXI.systems.FilterSystem.prototype, {\n /**\n * @method PIXI.FilterManager#getRenderTarget\n * @deprecated since 5.0.0\n * @see PIXI.systems.FilterSystem#getFilterTexture\n */\n getRenderTarget: function getRenderTarget(clear, resolution)\n {\n deprecation(v5,\n 'PIXI.FilterManager.getRenderTarget method has been replaced with PIXI.systems.FilterSystem#getFilterTexture'\n );\n\n return this.getFilterTexture(resolution);\n },\n\n /**\n * @method PIXI.FilterManager#returnRenderTarget\n * @deprecated since 5.0.0\n * @see PIXI.systems.FilterSystem#returnFilterTexture\n */\n returnRenderTarget: function returnRenderTarget(renderTexture)\n {\n deprecation(v5,\n 'PIXI.FilterManager.returnRenderTarget method has been replaced with '\n + 'PIXI.systems.FilterSystem.returnFilterTexture'\n );\n\n this.returnFilterTexture(renderTexture);\n },\n\n /**\n * @method PIXI.systems.FilterSystem#calculateScreenSpaceMatrix\n * @deprecated since 5.0.0\n * @param {PIXI.Matrix} outputMatrix - the matrix to output to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n calculateScreenSpaceMatrix: function calculateScreenSpaceMatrix(outputMatrix)\n {\n deprecation(v5, 'PIXI.systems.FilterSystem.calculateScreenSpaceMatrix method is removed, '\n + 'use `(vTextureCoord * inputSize.xy) + outputFrame.xy` instead');\n\n var mappedMatrix = outputMatrix.identity();\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n\n mappedMatrix.translate(sourceFrame.x / destinationFrame.width, sourceFrame.y / destinationFrame.height);\n mappedMatrix.scale(destinationFrame.width, destinationFrame.height);\n\n return mappedMatrix;\n },\n\n /**\n * @method PIXI.systems.FilterSystem#calculateNormalizedScreenSpaceMatrix\n * @deprecated since 5.0.0\n * @param {PIXI.Matrix} outputMatrix - The matrix to output to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n calculateNormalizedScreenSpaceMatrix: function calculateNormalizedScreenSpaceMatrix(outputMatrix)\n {\n deprecation(v5, 'PIXI.systems.FilterManager.calculateNormalizedScreenSpaceMatrix method is removed, '\n + 'use `((vTextureCoord * inputSize.xy) + outputFrame.xy) / outputFrame.zw` instead.');\n\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n var mappedMatrix = outputMatrix.identity();\n\n mappedMatrix.translate(sourceFrame.x / destinationFrame.width, sourceFrame.y / destinationFrame.height);\n\n var translateScaleX = (destinationFrame.width / sourceFrame.width);\n var translateScaleY = (destinationFrame.height / sourceFrame.height);\n\n mappedMatrix.scale(translateScaleX, translateScaleY);\n\n return mappedMatrix;\n },\n });\n\n Object.defineProperties(PIXI.RenderTexture.prototype, {\n /**\n * @name PIXI.RenderTexture#sourceFrame\n * @type {PIXI.Rectangle}\n * @deprecated since 5.0.0\n * @readonly\n */\n sourceFrame: {\n get: function get()\n {\n deprecation(v5, 'PIXI.RenderTexture.sourceFrame property has been removed');\n\n return this.filterFrame;\n },\n },\n /**\n * @name PIXI.RenderTexture#size\n * @type {PIXI.Rectangle}\n * @deprecated since 5.0.0\n * @readonly\n */\n size: {\n get: function get()\n {\n deprecation(v5, 'PIXI.RenderTexture.size property has been removed');\n\n return this._frame;\n },\n },\n });\n\n /**\n * @class BlurXFilter\n * @memberof PIXI.filters\n * @deprecated since 5.0.0\n * @see PIXI.filters.BlurFilterPass\n */\n var BlurXFilter = /*@__PURE__*/(function (superclass) {\n function BlurXFilter(strength, quality, resolution, kernelSize)\n {\n deprecation(v5, 'PIXI.filters.BlurXFilter class is deprecated, use PIXI.filters.BlurFilterPass');\n\n superclass.call(this, true, strength, quality, resolution, kernelSize);\n }\n\n if ( superclass ) BlurXFilter.__proto__ = superclass;\n BlurXFilter.prototype = Object.create( superclass && superclass.prototype );\n BlurXFilter.prototype.constructor = BlurXFilter;\n\n return BlurXFilter;\n }(PIXI.filters.BlurFilterPass));\n\n /**\n * @class BlurYFilter\n * @memberof PIXI.filters\n * @deprecated since 5.0.0\n * @see PIXI.filters.BlurFilterPass\n */\n var BlurYFilter = /*@__PURE__*/(function (superclass) {\n function BlurYFilter(strength, quality, resolution, kernelSize)\n {\n deprecation(v5, 'PIXI.filters.BlurYFilter class is deprecated, use PIXI.filters.BlurFilterPass');\n\n superclass.call(this, false, strength, quality, resolution, kernelSize);\n }\n\n if ( superclass ) BlurYFilter.__proto__ = superclass;\n BlurYFilter.prototype = Object.create( superclass && superclass.prototype );\n BlurYFilter.prototype.constructor = BlurYFilter;\n\n return BlurYFilter;\n }(PIXI.filters.BlurFilterPass));\n\n Object.assign(PIXI.filters, {\n BlurXFilter: BlurXFilter,\n BlurYFilter: BlurYFilter,\n });\n\n var Sprite = PIXI.Sprite;\n var Texture = PIXI.Texture;\n var Graphics = PIXI.Graphics;\n\n // Support for pixi.js-legacy bifurcation\n // give users a friendly assist to use legacy\n if (!Graphics.prototype.generateCanvasTexture)\n {\n Graphics.prototype.generateCanvasTexture = function generateCanvasTexture()\n {\n deprecation(v5, 'PIXI.Graphics.generateCanvasTexture method is only available in \"pixi.js-legacy\"');\n };\n }\n\n /**\n * @deprecated since 5.0.0\n * @member {PIXI.Graphics} PIXI.Graphics#graphicsData\n * @see PIXI.Graphics#geometry\n * @readonly\n */\n Object.defineProperty(PIXI.Graphics.prototype, 'graphicsData', {\n get: function get()\n {\n deprecation(v5, 'PIXI.Graphics.graphicsData property is deprecated, use PIXI.Graphics.geometry.graphicsData');\n\n return this.geometry.graphicsData;\n },\n });\n\n // Use these to deprecate all the Sprite from* methods\n function spriteFrom(name, source, crossorigin, scaleMode)\n {\n deprecation(v5, (\"PIXI.Sprite.\" + name + \" method is deprecated, use PIXI.Sprite.from\"));\n\n return Sprite.from(source, {\n resourceOptions: {\n scale: scaleMode,\n crossorigin: crossorigin,\n },\n });\n }\n\n /**\n * @deprecated since 5.0.0\n * @see PIXI.Sprite.from\n * @method PIXI.Sprite.fromImage\n * @return {PIXI.Sprite}\n */\n Sprite.fromImage = spriteFrom.bind(null, 'fromImage');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromSVG\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromSVG = spriteFrom.bind(null, 'fromSVG');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromCanvas\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromCanvas = spriteFrom.bind(null, 'fromCanvas');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromVideo\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromVideo = spriteFrom.bind(null, 'fromVideo');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromFrame\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromFrame = spriteFrom.bind(null, 'fromFrame');\n\n // Use these to deprecate all the Texture from* methods\n function textureFrom(name, source, crossorigin, scaleMode)\n {\n deprecation(v5, (\"PIXI.Texture.\" + name + \" method is deprecated, use PIXI.Texture.from\"));\n\n return Texture.from(source, {\n resourceOptions: {\n scale: scaleMode,\n crossorigin: crossorigin,\n },\n });\n }\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromImage\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromImage = textureFrom.bind(null, 'fromImage');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromSVG\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromSVG = textureFrom.bind(null, 'fromSVG');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromCanvas\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromCanvas = textureFrom.bind(null, 'fromCanvas');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromVideo\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromVideo = textureFrom.bind(null, 'fromVideo');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromFrame\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromFrame = textureFrom.bind(null, 'fromFrame');\n\n /**\n * @deprecated since 5.0.0\n * @member {boolean} PIXI.AbstractRenderer#autoResize\n * @see PIXI.AbstractRenderer#autoDensity\n */\n Object.defineProperty(PIXI.AbstractRenderer.prototype, 'autoResize', {\n get: function get()\n {\n deprecation(v5, 'PIXI.AbstractRenderer.autoResize property is deprecated, '\n + 'use PIXI.AbstractRenderer.autoDensity');\n\n return this.autoDensity;\n },\n set: function set(value)\n {\n deprecation(v5, 'PIXI.AbstractRenderer.autoResize property is deprecated, '\n + 'use PIXI.AbstractRenderer.autoDensity');\n\n this.autoDensity = value;\n },\n });\n\n /**\n * @deprecated since 5.0.0\n * @member {PIXI.systems.TextureSystem} PIXI.Renderer#textureManager\n * @see PIXI.Renderer#texture\n */\n Object.defineProperty(PIXI.Renderer.prototype, 'textureManager', {\n get: function get()\n {\n deprecation(v5, 'PIXI.Renderer.textureManager property is deprecated, use PIXI.Renderer.texture');\n\n return this.texture;\n },\n });\n\n /**\n * @namespace PIXI.utils.mixins\n * @deprecated since 5.0.0\n */\n PIXI.utils.mixins = {\n /**\n * @memberof PIXI.utils.mixins\n * @function mixin\n * @deprecated since 5.0.0\n */\n mixin: function mixin()\n {\n deprecation(v5, 'PIXI.utils.mixins.mixin function is no longer available');\n },\n /**\n * @memberof PIXI.utils.mixins\n * @function delayMixin\n * @deprecated since 5.0.0\n */\n delayMixin: function delayMixin()\n {\n deprecation(v5, 'PIXI.utils.mixins.delayMixin function is no longer available');\n },\n /**\n * @memberof PIXI.utils.mixins\n * @function performMixins\n * @deprecated since 5.0.0\n */\n performMixins: function performMixins()\n {\n deprecation(v5, 'PIXI.utils.mixins.performMixins function is no longer available');\n },\n };\n}\n\n// Install renderer plugins\nRenderer.registerPlugin('accessibility', AccessibilityManager);\nRenderer.registerPlugin('extract', Extract);\nRenderer.registerPlugin('interaction', InteractionManager);\nRenderer.registerPlugin('particle', ParticleRenderer);\nRenderer.registerPlugin('prepare', Prepare);\nRenderer.registerPlugin('batch', BatchRenderer);\nRenderer.registerPlugin('tilingSprite', TilingSpriteRenderer);\n\nLoader.registerPlugin(BitmapFontLoader);\nLoader.registerPlugin(SpritesheetLoader);\n\nApplication.registerPlugin(TickerPlugin);\nApplication.registerPlugin(AppLoaderPlugin);\n\n/**\n * String of the current PIXI version.\n *\n * @static\n * @constant\n * @memberof PIXI\n * @name VERSION\n * @type {string}\n */\nvar VERSION = '5.1.4';\n\n/**\n * @namespace PIXI\n */\n\n/**\n * This namespace contains WebGL-only display filters that can be applied\n * to DisplayObjects using the {@link PIXI.DisplayObject#filters filters} property.\n *\n * Since PixiJS only had a handful of built-in filters, additional filters\n * can be downloaded {@link https://github.com/pixijs/pixi-filters here} from the\n * PixiJS Filters repository.\n *\n * All filters must extend {@link PIXI.Filter}.\n *\n * @example\n * // Create a new application\n * const app = new PIXI.Application();\n *\n * // Draw a green rectangle\n * const rect = new PIXI.Graphics()\n * .beginFill(0x00ff00)\n * .drawRect(40, 40, 200, 200);\n *\n * // Add a blur filter\n * rect.filters = [new PIXI.filters.BlurFilter()];\n *\n * // Display rectangle\n * app.stage.addChild(rect);\n * document.body.appendChild(app.view);\n * @namespace PIXI.filters\n */\nvar filters = {\n AlphaFilter: AlphaFilter,\n BlurFilter: BlurFilter,\n BlurFilterPass: BlurFilterPass,\n ColorMatrixFilter: ColorMatrixFilter,\n DisplacementFilter: DisplacementFilter,\n FXAAFilter: FXAAFilter,\n NoiseFilter: NoiseFilter,\n};\n\nexport { VERSION, filters, useDeprecated };\n//# sourceMappingURL=pixi.es.js.map\n","import { ImVec4 } from \"imgui-js\";\n\nexport function fromConstructor(constr: any):((params: any[]) => any)\n{\n return constr as unknown as ((params: any[]) => any)\n}\n\nexport function vec2col(v: ImVec4): number\n{\n return (((v.x * 255) & 0xFF) << 16) +\n (((v.y * 255) & 0xFF) << 8) +\n (((v.z * 255) & 0xFF) << 0);\n}\n","import * as ImGui from \"imgui-js\";\nimport { ImVec2 } from \"imgui-js\";\nimport * as PIXI from \"pixi.js\";\nimport * as U from \"./utils\";\n\nlet clipboard_text: string = \"\";\n\nconst contexts: ImGui.ImGuiContext[] = [];\nconst contextIOs: ImGui.ImGuiIO[] = [];\nlet isFirstWindow: boolean = true;\n\nclass ImGuiImplInternalRenderer extends PIXI.ObjectRenderer\n{\n constructor(r: PIXI.Renderer)\n {\n super(r);\n }\n render(owner: PIXI.DisplayObject): void\n {\n if (!(owner instanceof ImGuiWindowLayer)) return;\n\n const window: ImGuiWindow = (owner as ImGuiWindowLayer).window;\n\n const io: ImGui.ImGuiIO = window.io;\n const draw_data: ImGui.ImDrawData = ImGui.GetDrawData();\n if (draw_data === null) { throw new Error(); }\n\n gl || console.log(draw_data);\n\n // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates)\n const fb_width: number = io.DisplaySize.x * io.DisplayFramebufferScale.x;\n const fb_height: number = io.DisplaySize.y * io.DisplayFramebufferScale.y;\n if (fb_width === 0 || fb_height === 0) {\n return;\n }\n draw_data.ScaleClipRects(io.DisplayFramebufferScale);\n\n // Backup GL state\n const last_program: WebGLProgram | null = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null;\n const last_active_texture: GLenum | null = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null;\n gl && gl.activeTexture(gl.TEXTURE0);\n const last_texture0: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null;\n const last_vertex_array: WebGLVertexArrayObject | null = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null;\n const last_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null;\n const last_element_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null;\n // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode);\n const last_viewport: Int32Array | null = gl && gl.getParameter(gl.VIEWPORT) || null;\n const last_scissor_box: Int32Array | null = gl && gl.getParameter(gl.SCISSOR_BOX) || null;\n const last_blend_src_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null;\n const last_blend_dst_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_RGB) || null;\n const last_blend_src_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null;\n const last_blend_dst_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null;\n const last_blend_equation_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null;\n const last_blend_equation_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null;\n const last_enable_blend: GLboolean | null = gl && gl.getParameter(gl.BLEND) || null;\n const last_enable_cull_face: GLboolean | null = gl && gl.getParameter(gl.CULL_FACE) || null;\n const last_enable_depth_test: GLboolean | null = gl && gl.getParameter(gl.DEPTH_TEST) || null;\n const last_enable_scissor_test: GLboolean | null = gl && gl.getParameter(gl.SCISSOR_TEST) || null;\n\n gl.clearColor(0, 0, 0, 0);\n gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);\n \n gl && gl.bindVertexArray(g_VaoHandle);\n\n // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill\n gl && gl.enable(gl.BLEND);\n gl && gl.blendEquation(gl.FUNC_ADD);\n gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE);\n gl && gl.disable(gl.CULL_FACE);\n gl && gl.disable(gl.DEPTH_TEST);\n gl && gl.enable(gl.SCISSOR_TEST);\n // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);\n\n // Setup viewport, orthographic projection matrix\n // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps.\n gl && gl.viewport(0, 0, fb_width, fb_height);\n const L: number = draw_data.DisplayPos.x;\n const R: number = draw_data.DisplayPos.x + draw_data.DisplaySize.x;\n const T: number = draw_data.DisplayPos.y;\n const B: number = draw_data.DisplayPos.y + draw_data.DisplaySize.y;\n // we actually flip the bottom and top here to match with PIXI's texture usage\n const ortho_projection: Float32Array = new Float32Array([\n 2.0 / (R - L), 0.0, 0.0, 0.0,\n 0.0, 2.0 / (B - T), 0.0, 0.0,\n 0.0, 0.0, -1.0, 0.0,\n (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0,\n ]);\n gl && gl.useProgram(g_ShaderHandle);\n gl && gl.uniform1i(g_AttribLocationTex, 0);\n gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection);\n\n // Render command lists\n gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle);\n gl && gl.enableVertexAttribArray(g_AttribLocationPosition);\n gl && gl.enableVertexAttribArray(g_AttribLocationUV);\n gl && gl.enableVertexAttribArray(g_AttribLocationColor);\n\n gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertPosOffset);\n gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertUVOffset);\n gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImGui.ImDrawVertSize, ImGui.ImDrawVertColOffset);\n\n // Draw\n const pos = draw_data.DisplayPos;\n const idx_buffer_type: GLenum = gl && ((ImGui.ImDrawIdxSize === 4) ? gl.UNSIGNED_INT : gl.UNSIGNED_SHORT) || 0;\n draw_data.IterateDrawLists((draw_list: ImGui.ImDrawList): void => {\n gl || console.log(draw_list);\n gl || console.log(\"VtxBuffer.length\", draw_list.VtxBuffer.length);\n gl || console.log(\"IdxBuffer.length\", draw_list.IdxBuffer.length);\n \n let idx_buffer_offset: number = 0;\n\n gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle);\n gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW);\n gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle);\n gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW);\n\n draw_list.IterateDrawCmds((draw_cmd: ImGui.ImDrawCmd): void => {\n gl || console.log(draw_cmd);\n gl || console.log(\"ElemCount\", draw_cmd.ElemCount);\n gl || console.log(\"ClipRect\", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y);\n gl || console.log(\"TextureId\", draw_cmd.TextureId);\n if (!gl) {\n console.log(\"i: pos.x pos.y uv.x uv.y col\");\n for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) {\n const view: ImGui.ImDrawVert = new ImGui.ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImGui.ImDrawVertSize);\n console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${(\"00000000\" + view.col[0].toString(16)).substr(-8)}`);\n }\n }\n\n if (draw_cmd.UserCallback !== null) {\n // User callback (registered via ImDrawList::AddCallback)\n draw_cmd.UserCallback(draw_list, draw_cmd);\n } else {\n const clip_rect = new ImGui.ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y);\n if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) {\n // Apply scissor/clipping rectangle\n gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y);\n\n // Bind texture, Draw\n gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId);\n gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset);\n }\n }\n\n idx_buffer_offset += draw_cmd.ElemCount * ImGui.ImDrawIdxSize;\n });\n });\n\n // Restore modified GL state\n \n gl && (last_program !== null) && gl.useProgram(last_program);\n gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0);\n gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture);\n gl && gl.disableVertexAttribArray(g_AttribLocationPosition);\n gl && gl.disableVertexAttribArray(g_AttribLocationUV);\n gl && gl.disableVertexAttribArray(g_AttribLocationColor);\n gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array);\n gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer);\n gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer);\n gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]);\n gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]);\n gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha);\n gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha);\n gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND));\n gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE));\n gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST));\n gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST));\n // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]);\n }\n}\n\nlet gl: WebGL2RenderingContext = null;\nlet app: PIXI.Application = null;\n\nclass ImGuiWindowLayer extends PIXI.Sprite\n{\n public readonly window: ImGuiWindow;\n constructor(window: ImGuiWindow, tex:PIXI.RenderTexture)\n {\n super();\n this.pluginName = \"imgui_renderer\";\n this.window = window;\n }\n}\n\nexport class ImGuiWindow extends PIXI.Container\n{\n public readonly ctx: ImGui.ImGuiContext;\n public readonly io: ImGui.ImGuiIO;\n private sizeX: number;\n private sizeY: number;\n public getSizeX(): number { return this.sizeX; }\n public getSizeY(): number { return this.sizeY; }\n\n private baseTex: PIXI.BaseRenderTexture = new PIXI.BaseRenderTexture({scaleMode: PIXI.SCALE_MODES.LINEAR, resolution: 1, type: PIXI.TYPES.FLOAT, format: PIXI.FORMATS.RGBA});\n private tex: PIXI.RenderTexture = new PIXI.RenderTexture(this.baseTex);\n \n private surface: PIXI.Sprite = new PIXI.Sprite(this.tex);\n private imgui: ImGuiWindowLayer = new ImGuiWindowLayer(this, this.tex);\n \n private update: (dt: number) => void;\n constructor(sizeX: number, sizeY: number, update: (dt: number) => void)\n {\n super();\n\n this.ctx = ImGui.CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts);\n ImGui.SetCurrentContext(this.ctx);\n this.io = ImGui.GetIO();\n\n contexts.push(this.ctx);\n contextIOs.push(this.io);\n\n if (contexts.length == 1)\n {\n CreateFontsTexture();\n }\n\n if (typeof(window) !== \"undefined\") {\n ImGui.LoadIniSettingsFromMemory(window.localStorage.getItem(\"imgui.ini\") || \"\");\n }\n\n if (typeof(navigator) !== \"undefined\") {\n this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null;\n }\n\n this.io.SetClipboardTextFn = (user_data: any, text: string): void => {\n clipboard_text = text;\n // console.log(`set clipboard_text: \"${clipboard_text}\"`);\n if (typeof navigator !== \"undefined\" && typeof (navigator as any).clipboard !== \"undefined\") {\n // console.log(`clipboard.writeText: \"${clipboard_text}\"`);\n (navigator as any).clipboard.writeText(clipboard_text).then((): void => {\n // console.log(`clipboard.writeText: \"${clipboard_text}\" done.`);\n });\n }\n };\n this.io.GetClipboardTextFn = (user_data: any): string => {\n // if (typeof navigator !== \"undefined\" && typeof (navigator as any).clipboard !== \"undefined\") {\n // console.log(`clipboard.readText: \"${clipboard_text}\"`);\n // (navigator as any).clipboard.readText().then((text: string): void => {\n // clipboard_text = text;\n // console.log(`clipboard.readText: \"${clipboard_text}\" done.`);\n // });\n // }\n // console.log(`get clipboard_text: \"${clipboard_text}\"`);\n return clipboard_text;\n };\n this.io.ClipboardUserData = null;\n\n // Setup back-end capabilities flags\n this.io.BackendFlags |= ImGui.BackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional)\n\n // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array.\n this.io.KeyMap[ImGui.Key.Tab] = 9;\n this.io.KeyMap[ImGui.Key.LeftArrow] = 37;\n this.io.KeyMap[ImGui.Key.RightArrow] = 39;\n this.io.KeyMap[ImGui.Key.UpArrow] = 38;\n this.io.KeyMap[ImGui.Key.DownArrow] = 40;\n this.io.KeyMap[ImGui.Key.PageUp] = 33;\n this.io.KeyMap[ImGui.Key.PageDown] = 34;\n this.io.KeyMap[ImGui.Key.Home] = 36;\n this.io.KeyMap[ImGui.Key.End] = 35;\n this.io.KeyMap[ImGui.Key.Insert] = 45;\n this.io.KeyMap[ImGui.Key.Delete] = 46;\n this.io.KeyMap[ImGui.Key.Backspace] = 8;\n this.io.KeyMap[ImGui.Key.Space] = 32;\n this.io.KeyMap[ImGui.Key.Enter] = 13;\n this.io.KeyMap[ImGui.Key.Escape] = 27;\n this.io.KeyMap[ImGui.Key.A] = 65;\n this.io.KeyMap[ImGui.Key.C] = 67;\n this.io.KeyMap[ImGui.Key.V] = 86;\n this.io.KeyMap[ImGui.Key.X] = 88;\n this.io.KeyMap[ImGui.Key.Y] = 89;\n this.io.KeyMap[ImGui.Key.Z] = 90;\n\n this.update = update;\n this.resize(sizeX, sizeY);\n this.imgui.pluginName = 'imgui_renderer';\n this.addChild(this.surface);\n app.renderer.plugins.interaction.addListener(\"mousedown\", this.mouseDown.bind(this));\n app.renderer.plugins.interaction.addListener(\"mouseup\", this.mouseUp.bind(this));\n app.ticker.add(this.updateInternal.bind(this));\n\n this.interactive = false;\n this.interactiveChildren = true;\n\n this.surface.interactive = false;\n }\n withContext(cb: () => void)\n {\n ImGui.SetCurrentContext(this.ctx);\n cb();\n }\n mouseDown(e: PIXI.interaction.InteractionEvent): void\n {\n if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface)\n {\n this.io.MouseDown[mouse_button_map[0]] = true;\n }\n }\n mouseUp(e: PIXI.interaction.InteractionEvent): void\n {\n if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface)\n {\n this.io.MouseDown[mouse_button_map[0]] = false;\n }\n }\n resize(sizeX: number, sizeY: number)\n {\n this.sizeX = sizeX;\n this.sizeY = sizeY;\n this.baseTex.resize(sizeX, sizeY);\n this.tex.frame = new PIXI.Rectangle(0, 0, this.baseTex.width, this.baseTex.height);\n }\n updateInternal(deltaTime: number)\n {\n const dt: number = deltaTime * 1 / (1000 * PIXI.settings.TARGET_FPMS);\n\n ImGui.SetCurrentContext(this.ctx);\n\n if (this.io.WantSaveIniSettings) {\n this.io.WantSaveIniSettings = false;\n if (typeof(window) !== \"undefined\") {\n window.localStorage.setItem(\"imgui.ini\", ImGui.SaveIniSettingsToMemory());\n }\n }\n\n this.io.DisplaySize.x = this.sizeX;\n this.io.DisplaySize.y = this.sizeY;\n this.io.DisplayFramebufferScale.x = 1;\n this.io.DisplayFramebufferScale.y = 1;\n\n this.io.DeltaTime = dt;\n\n let localPos: PIXI.Point = this.toLocal(app.renderer.plugins.interaction.mouse.global);\n if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY)\n {\n localPos = new PIXI.Point(-Number.MAX_VALUE, -Number.MAX_VALUE);\n }\n this.io.MousePos.x = localPos.x;\n this.io.MousePos.y = localPos.y;\n\n if (this.io.WantSetMousePos) {\n console.log(\"TODO: MousePos\", this.io.MousePos.x, this.io.MousePos.y);\n }\n\n if (typeof(document) !== \"undefined\") {\n if (this.io.MouseDrawCursor) {\n document.body.style.cursor = \"none\";\n } else {\n switch (ImGui.GetMouseCursor()) {\n case ImGui.MouseCursor.None: document.body.style.cursor = \"none\"; break;\n default: case ImGui.MouseCursor.Arrow: document.body.style.cursor = \"default\"; break;\n case ImGui.MouseCursor.TextInput: document.body.style.cursor = \"text\"; break; // When hovering over InputText, etc.\n case ImGui.MouseCursor.ResizeAll: document.body.style.cursor = \"move\"; break; // Unused\n case ImGui.MouseCursor.ResizeNS: document.body.style.cursor = \"ns-resize\"; break; // When hovering over an horizontal border\n case ImGui.MouseCursor.ResizeEW: document.body.style.cursor = \"ew-resize\"; break; // When hovering over a vertical border or a column\n case ImGui.MouseCursor.ResizeNESW: document.body.style.cursor = \"nesw-resize\"; break; // When hovering over the bottom-left corner of a window\n case ImGui.MouseCursor.ResizeNWSE: document.body.style.cursor = \"nwse-resize\"; break; // When hovering over the bottom-right corner of a window\n case ImGui.MouseCursor.Hand: document.body.style.cursor = \"move\"; break;\n }\n }\n }\n\n // Gamepad navigation mapping [BETA]\n for (let i = 0; i < this.io.NavInputs.length; ++i) {\n this.io.NavInputs[i] = 0.0;\n }\n if (this.io.ConfigFlags & ImGui.ConfigFlags.NavEnableGamepad) {\n // Update gamepad inputs\n const gamepads: (Gamepad | null)[] = (typeof(navigator) !== \"undefined\" && typeof(navigator.getGamepads) === \"function\") ? navigator.getGamepads() : [];\n for (let i = 0; i < gamepads.length; ++i) {\n const gamepad: Gamepad | null = gamepads[i];\n if (!gamepad) { continue; }\n const buttons_count: number = gamepad.buttons.length;\n const axes_count: number = gamepad.axes.length;\n const MAP_BUTTON = function(NAV_NO: number, BUTTON_NO: number): void {\n if (!gamepad) { return; }\n if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed)\n this.io.NavInputs[NAV_NO] = 1.0;\n }\n const MAP_ANALOG = function(NAV_NO: number, AXIS_NO: number, V0: number, V1: number): void {\n if (!gamepad) { return; }\n let v: number = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0;\n v = (v - V0) / (V1 - V0);\n if (v > 1.0) v = 1.0;\n if (this.io.NavInputs[NAV_NO] < v) this.io.NavInputs[NAV_NO] = v;\n }\n // TODO: map input based on vendor and product id\n // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id\n const match: RegExpMatchArray | null = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/);\n const match_chrome: RegExpMatchArray | null = gamepad.id.match(/^.*\\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\\).*$/);\n const vendor: string = (match && match[1]) || (match_chrome && match_chrome[1]) || \"0000\";\n const product: string = (match && match[2]) || (match_chrome && match_chrome[2]) || \"0000\";\n switch (vendor + product) {\n case \"046dc216\": // Logitech Logitech Dual Action (Vendor: 046d Product: c216)\n MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 2); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 0); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_ANALOG(ImGui.NavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left\n MAP_ANALOG(ImGui.NavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right\n MAP_ANALOG(ImGui.NavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up\n MAP_ANALOG(ImGui.NavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n case \"046dc21d\": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d)\n MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left\n MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right\n MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up\n MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_ANALOG(ImGui.NavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT\n MAP_ANALOG(ImGui.NavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n case \"2dc86001\": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001)\n case \"2dc86101\": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101)\n MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 0); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 4); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_ANALOG(ImGui.NavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left\n MAP_ANALOG(ImGui.NavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right\n MAP_ANALOG(ImGui.NavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up\n MAP_ANALOG(ImGui.NavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 6); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 7); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 8); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 9); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n default: // standard gamepad: https://w3c.github.io/gamepad/#remapping\n MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left\n MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right\n MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up\n MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n }\n }\n }\n\n ImGui.NewFrame();\n\n this.update(dt);\n\n ImGui.EndFrame();\n ImGui.Render();\n\n app.renderer.render(this.imgui, this.tex);\n\n this.surface.interactive = this.io.WantCaptureMouse;\n }\n}\n\nlet canvas: HTMLCanvasElement | null = null;\n\n//export let gl: WebGL2RenderingContext | null = null;\nlet g_ShaderHandle: WebGLProgram | null = null;\nlet g_VertHandle: WebGLShader | null = null;\nlet g_FragHandle: WebGLShader | null = null;\nlet g_AttribLocationTex: WebGLUniformLocation | null = null;\nlet g_AttribLocationProjMtx: WebGLUniformLocation | null = null;\nlet g_AttribLocationPosition: GLint = -1;\nlet g_AttribLocationUV: GLint = -1;\nlet g_AttribLocationColor: GLint = -1;\nlet g_VaoHandle: WebGLVertexArrayObject = null;\nlet g_VboHandle: WebGLBuffer | null = null;\nlet g_ElementsHandle: WebGLBuffer | null = null;\nlet g_FontTexture: WebGLTexture | null = null;\n\nfunction document_on_copy(event: ClipboardEvent): void {\n if (event.clipboardData) {\n event.clipboardData.setData(\"text/plain\", clipboard_text);\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction document_on_cut(event: ClipboardEvent): void {\n if (event.clipboardData) {\n event.clipboardData.setData(\"text/plain\", clipboard_text);\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction document_on_paste(event: ClipboardEvent): void {\n if (event.clipboardData) {\n clipboard_text = event.clipboardData.getData(\"text/plain\");\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction window_on_gamepadconnected(event: any /* GamepadEvent */): void {\n console.log(\"Gamepad connected at index %d: %s. %d buttons, %d axes.\",\n event.gamepad.index, event.gamepad.id,\n event.gamepad.buttons.length, event.gamepad.axes.length);\n}\n\nfunction window_on_gamepaddisconnected(event: any /* GamepadEvent */): void {\n console.log(\"Gamepad disconnected at index %d: %s.\",\n event.gamepad.index, event.gamepad.id);\n}\n\nfunction canvas_on_blur(event: FocusEvent): void {\n for (var io of contextIOs)\n {\n io.KeyCtrl = false;\n io.KeyShift = false;\n io.KeyAlt = false;\n io.KeySuper = false;\n for (let i = 0; i < io.KeysDown.length; ++i) {\n io.KeysDown[i] = false;\n }\n for (let i = 0; i < io.MouseDown.length; ++i) {\n io.MouseDown[i] = false;\n }\n }\n}\n\nfunction canvas_on_keydown(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.KeyCtrl = event.ctrlKey;\n io.KeyShift = event.shiftKey;\n io.KeyAlt = event.altKey;\n io.KeySuper = event.metaKey;\n ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown));\n io.KeysDown[event.keyCode] = true;\n // forward to the keypress event\n if (/*io.WantCaptureKeyboard ||*/ event.key === \"Tab\") {\n event.preventDefault();\n }\n }\n}\n\nfunction canvas_on_keyup(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.KeyCtrl = event.ctrlKey;\n io.KeyShift = event.shiftKey;\n io.KeyAlt = event.altKey;\n io.KeySuper = event.metaKey;\n ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown));\n io.KeysDown[event.keyCode] = false;\n if (io.WantCaptureKeyboard) {\n event.preventDefault();\n }\n }\n}\n\nfunction canvas_on_keypress(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.AddInputCharacter(event.charCode);\n if (io.WantCaptureKeyboard) {\n event.preventDefault();\n }\n }\n}\n\n// MouseEvent.button\n// A number representing a given button:\n// 0: Main button pressed, usually the left button or the un-initialized state\n// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present)\n// 2: Secondary button pressed, usually the right button\n// 3: Fourth button, typically the Browser Back button\n// 4: Fifth button, typically the Browser Forward button\nconst mouse_button_map: number[] = [ 0, 2, 1, 3, 4 ];\n\nfunction canvas_on_contextmenu(event: Event): void {\n for (var io of contextIOs)\n {\n if (io.WantCaptureMouse) { event.preventDefault(); }\n }\n}\n\nfunction canvas_on_wheel(event: WheelEvent): void {\n for (var io of contextIOs)\n {\n let scale: number = 1.0;\n switch (event.deltaMode) {\n case event.DOM_DELTA_PIXEL: scale = 0.01; break;\n case event.DOM_DELTA_LINE: scale = 0.2; break;\n case event.DOM_DELTA_PAGE: scale = 1.0; break;\n }\n io.MouseWheelH = event.deltaX * scale;\n io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text.\n if (io.WantCaptureMouse) {\n event.preventDefault();\n }\n }\n}\n\nexport function PrePIXIInit(): void\n{\n PIXI.Renderer.registerPlugin(\"imgui_renderer\", U.fromConstructor(ImGuiImplInternalRenderer));\n}\n\nexport function Init(_app: PIXI.Application): void {\n // Setup Dear ImGui binding\n ImGui.IMGUI_CHECKVERSION();\n\n if (typeof(document) !== \"undefined\") {\n document.body.addEventListener(\"copy\", document_on_copy);\n document.body.addEventListener(\"cut\", document_on_cut);\n document.body.addEventListener(\"paste\", document_on_paste);\n }\n\n if (typeof(window) !== \"undefined\") {\n window.addEventListener(\"gamepadconnected\", window_on_gamepadconnected);\n window.addEventListener(\"gamepaddisconnected\", window_on_gamepaddisconnected);\n }\n\n app = _app;\n gl = (app.renderer as any).gl;\n canvas = app.view;\n\n gl.getExtension(\"EXT_color_buffer_float\");\n\n if (canvas !== null) {\n canvas.style.touchAction = \"none\"; // Disable browser handling of all panning and zooming gestures.\n canvas.addEventListener(\"blur\", canvas_on_blur);\n canvas.addEventListener(\"keydown\", canvas_on_keydown);\n canvas.addEventListener(\"keyup\", canvas_on_keyup);\n canvas.addEventListener(\"keypress\", canvas_on_keypress);\n canvas.addEventListener(\"contextmenu\", canvas_on_contextmenu);\n canvas.addEventListener(\"wheel\", canvas_on_wheel);\n }\n\n CreateDeviceObjects();\n}\n\nexport function Shutdown(): void {\n DestroyDeviceObjects();\n\n if (canvas !== null) {\n canvas.removeEventListener(\"blur\", canvas_on_blur);\n canvas.removeEventListener(\"keydown\", canvas_on_keydown);\n canvas.removeEventListener(\"keyup\", canvas_on_keyup);\n canvas.removeEventListener(\"keypress\", canvas_on_keypress);\n canvas.removeEventListener(\"contextmenu\", canvas_on_contextmenu);\n canvas.removeEventListener(\"wheel\", canvas_on_wheel);\n }\n\n app = null;\n canvas = null;\n\n if (typeof(window) !== \"undefined\") {\n window.removeEventListener(\"gamepadconnected\", window_on_gamepadconnected);\n window.removeEventListener(\"gamepaddisconnected\", window_on_gamepaddisconnected);\n }\n\n if (typeof(document) !== \"undefined\") {\n document.body.removeEventListener(\"copy\", document_on_copy);\n document.body.removeEventListener(\"cut\", document_on_cut);\n document.body.removeEventListener(\"paste\", document_on_paste);\n }\n}\n\nfunction CreateFontsTexture(): void {\n const io = ImGui.GetIO();\n\n // Backup GL state\n const last_texture: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D);\n\n // Build texture atlas\n // const width: number = 256;\n // const height: number = 256;\n // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff);\n const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory.\n // console.log(`font texture ${width} x ${height} @ ${pixels.length}`);\n\n // Upload texture to graphics system\n g_FontTexture = gl && gl.createTexture();\n gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture);\n gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);\n gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR);\n // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2\n gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels);\n\n // Store our identifier\n io.Fonts.TexID = g_FontTexture || { foo: \"bar\" };\n // console.log(\"font texture id\", g_FontTexture);\n\n // Restore modified GL state\n gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture);\n}\n\nfunction DestroyFontsTexture(): void {\n const io = ImGui.GetIO();\n io.Fonts.TexID = null;\n gl && gl.deleteTexture(g_FontTexture); g_FontTexture = null;\n}\n\nfunction CreateDeviceObjects(): void {\n const vertex_shader: string[] = [\n \"#version 300 es\",\n \"uniform mat4 ProjMtx;\",\n \"in vec2 Position;\",\n \"in vec2 UV;\",\n \"in vec4 Color;\",\n \"out vec2 Frag_UV;\",\n \"out vec4 Frag_Color;\",\n \"void main() {\",\n \"\tFrag_UV = UV;\",\n \"\tFrag_Color = Color;\",\n \"\tgl_Position = ProjMtx * vec4(Position.xy,0,1);\",\n \"}\",\n ];\n\n const fragment_shader: string[] = [\n \"#version 300 es\",\n \"precision mediump float;\", // WebGL requires precision specifiers\n \"uniform sampler2D Texture;\",\n \"in vec2 Frag_UV;\",\n \"in vec4 Frag_Color;\",\n \"out vec4 OutColor;\",\n \"void main() {\",\n \"\tOutColor = Frag_Color * texture(Texture, Frag_UV);\",\n \"}\",\n ];\n\n g_ShaderHandle = gl && gl.createProgram();\n g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER);\n g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER);\n gl && gl.shaderSource(g_VertHandle as WebGLShader, vertex_shader.join(\"\\n\"));\n gl && gl.shaderSource(g_FragHandle as WebGLShader, fragment_shader.join(\"\\n\"));\n gl && gl.compileShader(g_VertHandle as WebGLShader);\n gl && gl.compileShader(g_FragHandle as WebGLShader);\n gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_VertHandle as WebGLShader);\n gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_FragHandle as WebGLShader);\n gl && gl.linkProgram(g_ShaderHandle as WebGLProgram);\n\n g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, \"Texture\");\n g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, \"ProjMtx\");\n g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"Position\") || 0;\n g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"UV\") || 0;\n g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"Color\") || 0;\n\n g_VaoHandle = gl && gl.createVertexArray();\n g_VboHandle = gl && gl.createBuffer();\n g_ElementsHandle = gl && gl.createBuffer();\n\n}\n\nfunction DestroyDeviceObjects(): void {\n DestroyFontsTexture();\n\n gl && gl.deleteVertexArray(g_VaoHandle); g_VaoHandle = null;\n gl && gl.deleteBuffer(g_VboHandle); g_VboHandle = null;\n gl && gl.deleteBuffer(g_ElementsHandle); g_ElementsHandle = null;\n\n g_AttribLocationTex = null;\n g_AttribLocationProjMtx = null;\n g_AttribLocationPosition = -1;\n g_AttribLocationUV = -1;\n g_AttribLocationColor = -1;\n\n gl && gl.deleteProgram(g_ShaderHandle); g_ShaderHandle = null;\n gl && gl.deleteShader(g_VertHandle); g_VertHandle = null;\n gl && gl.deleteShader(g_FragHandle); g_FragHandle = null;\n}\n"],"names":["require","global","this","Polyfill","commonjsGlobal","delimiter","hasOwnProperty","map","parse","qsParse","qsStringify","sign","url","_url","prototypeAccessors","prototypeAccessors$1","EventEmitter","staticAccessors","Buffer","map$1","prototypeAccessors$2","prototypeAccessors$3","prototypeAccessors$4","prototypeAccessors$5","staticAccessors$1","earcut","tempAnchor","Resource","Url","Loader","Loader$1","middleware","vertex","fragment","tempPoint","tempMat","defaultFilterVertex","PIXI.ObjectRenderer","ImGui.GetDrawData","ImGui.ImDrawVertSize","ImGui.ImDrawVertPosOffset","ImGui.ImDrawVertUVOffset","ImGui.ImDrawVertColOffset","ImGui.ImDrawVert","ImGui.ImVec4","ImGui.ImDrawIdxSize","PIXI.Sprite","PIXI.Container","PIXI.BaseRenderTexture","PIXI.SCALE_MODES","PIXI.TYPES","PIXI.FORMATS","PIXI.RenderTexture","ImGui.CreateContext","ImGui.SetCurrentContext","ImGui.GetIO","ImGui.LoadIniSettingsFromMemory","ImGui.BackendFlags","ImGui.Key","PIXI.Rectangle","PIXI.settings","ImGui.SaveIniSettingsToMemory","PIXI.Point","ImGui.GetMouseCursor","ImGui.MouseCursor","ImGui.ConfigFlags","ImGui.NavInput","ImGui.NewFrame","ImGui.EndFrame","ImGui.Render","canvas","ImGui.IM_ASSERT","ImGui.IM_ARRAYSIZE","PIXI.Renderer","U.fromConstructor","ImGui.IMGUI_CHECKVERSION"],"mappings":"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C,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGhF,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGhF,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;;;QAGtF,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAA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"} \ No newline at end of file diff --git a/imgui_impl.ts b/imgui_impl.ts new file mode 100644 index 0000000..a5dad20 --- /dev/null +++ b/imgui_impl.ts @@ -0,0 +1,797 @@ +import * as ImGui from "imgui-js"; +import { ImVec2 } from "imgui-js"; +import * as PIXI from "pixi.js"; +import * as U from "./utils"; + +let clipboard_text: string = ""; + +const contexts: ImGui.ImGuiContext[] = []; +const contextIOs: ImGui.ImGuiIO[] = []; +let isFirstWindow: boolean = true; + +class ImGuiImplInternalRenderer extends PIXI.ObjectRenderer +{ + constructor(r: PIXI.Renderer) + { + super(r); + } + render(owner: PIXI.DisplayObject): void + { + if (!(owner instanceof ImGuiWindowLayer)) return; + + const window: ImGuiWindow = (owner as ImGuiWindowLayer).window; + + const io: ImGui.ImGuiIO = window.io; + const draw_data: ImGui.ImDrawData = ImGui.GetDrawData(); + if (draw_data === null) { throw new Error(); } + + gl || console.log(draw_data); + + // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) + const fb_width: number = io.DisplaySize.x * io.DisplayFramebufferScale.x; + const fb_height: number = io.DisplaySize.y * io.DisplayFramebufferScale.y; + if (fb_width === 0 || fb_height === 0) { + return; + } + draw_data.ScaleClipRects(io.DisplayFramebufferScale); + + // Backup GL state + const last_program: WebGLProgram | null = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null; + const last_active_texture: GLenum | null = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null; + gl && gl.activeTexture(gl.TEXTURE0); + const last_texture0: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null; + const last_vertex_array: WebGLVertexArrayObject | null = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null; + const last_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null; + const last_element_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null; + // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode); + const last_viewport: Int32Array | null = gl && gl.getParameter(gl.VIEWPORT) || null; + const last_scissor_box: Int32Array | null = gl && gl.getParameter(gl.SCISSOR_BOX) || null; + const last_blend_src_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null; + const last_blend_dst_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_RGB) || null; + const last_blend_src_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null; + const last_blend_dst_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null; + const last_blend_equation_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null; + const last_blend_equation_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null; + const last_enable_blend: GLboolean | null = gl && gl.getParameter(gl.BLEND) || null; + const last_enable_cull_face: GLboolean | null = gl && gl.getParameter(gl.CULL_FACE) || null; + const last_enable_depth_test: GLboolean | null = gl && gl.getParameter(gl.DEPTH_TEST) || null; + const last_enable_scissor_test: GLboolean | null = gl && gl.getParameter(gl.SCISSOR_TEST) || null; + + gl.clearColor(0, 0, 0, 0); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + + gl && gl.bindVertexArray(g_VaoHandle); + + // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill + gl && gl.enable(gl.BLEND); + gl && gl.blendEquation(gl.FUNC_ADD); + gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE); + gl && gl.disable(gl.CULL_FACE); + gl && gl.disable(gl.DEPTH_TEST); + gl && gl.enable(gl.SCISSOR_TEST); + // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + + // Setup viewport, orthographic projection matrix + // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps. + gl && gl.viewport(0, 0, fb_width, fb_height); + const L: number = draw_data.DisplayPos.x; + const R: number = draw_data.DisplayPos.x + draw_data.DisplaySize.x; + const T: number = draw_data.DisplayPos.y; + const B: number = draw_data.DisplayPos.y + draw_data.DisplaySize.y; + // we actually flip the bottom and top here to match with PIXI's texture usage + const ortho_projection: Float32Array = new Float32Array([ + 2.0 / (R - L), 0.0, 0.0, 0.0, + 0.0, 2.0 / (B - T), 0.0, 0.0, + 0.0, 0.0, -1.0, 0.0, + (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0, + ]); + gl && gl.useProgram(g_ShaderHandle); + gl && gl.uniform1i(g_AttribLocationTex, 0); + gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection); + + // Render command lists + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.enableVertexAttribArray(g_AttribLocationPosition); + gl && gl.enableVertexAttribArray(g_AttribLocationUV); + gl && gl.enableVertexAttribArray(g_AttribLocationColor); + + gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertPosOffset); + gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertUVOffset); + gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImGui.ImDrawVertSize, ImGui.ImDrawVertColOffset); + + // Draw + const pos = draw_data.DisplayPos; + const idx_buffer_type: GLenum = gl && ((ImGui.ImDrawIdxSize === 4) ? gl.UNSIGNED_INT : gl.UNSIGNED_SHORT) || 0; + draw_data.IterateDrawLists((draw_list: ImGui.ImDrawList): void => { + gl || console.log(draw_list); + gl || console.log("VtxBuffer.length", draw_list.VtxBuffer.length); + gl || console.log("IdxBuffer.length", draw_list.IdxBuffer.length); + + let idx_buffer_offset: number = 0; + + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW); + gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle); + gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW); + + draw_list.IterateDrawCmds((draw_cmd: ImGui.ImDrawCmd): void => { + gl || console.log(draw_cmd); + gl || console.log("ElemCount", draw_cmd.ElemCount); + gl || console.log("ClipRect", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y); + gl || console.log("TextureId", draw_cmd.TextureId); + if (!gl) { + console.log("i: pos.x pos.y uv.x uv.y col"); + for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) { + const view: ImGui.ImDrawVert = new ImGui.ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImGui.ImDrawVertSize); + console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${("00000000" + view.col[0].toString(16)).substr(-8)}`); + } + } + + if (draw_cmd.UserCallback !== null) { + // User callback (registered via ImDrawList::AddCallback) + draw_cmd.UserCallback(draw_list, draw_cmd); + } else { + const clip_rect = new ImGui.ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y); + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) { + // Apply scissor/clipping rectangle + gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y); + + // Bind texture, Draw + gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId); + gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset); + } + } + + idx_buffer_offset += draw_cmd.ElemCount * ImGui.ImDrawIdxSize; + }); + }); + + // Restore modified GL state + + gl && (last_program !== null) && gl.useProgram(last_program); + gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0); + gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture); + gl && gl.disableVertexAttribArray(g_AttribLocationPosition); + gl && gl.disableVertexAttribArray(g_AttribLocationUV); + gl && gl.disableVertexAttribArray(g_AttribLocationColor); + gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array); + gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer); + gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer); + gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]); + gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]); + gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha); + gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); + gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND)); + gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE)); + gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST)); + gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST)); + // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]); + } +} + +let gl: WebGL2RenderingContext = null; +let app: PIXI.Application = null; + +class ImGuiWindowLayer extends PIXI.Sprite +{ + public readonly window: ImGuiWindow; + constructor(window: ImGuiWindow, tex:PIXI.RenderTexture) + { + super(); + this.pluginName = "imgui_renderer"; + this.window = window; + } +} + +export class ImGuiWindow extends PIXI.Container +{ + public readonly ctx: ImGui.ImGuiContext; + public readonly io: ImGui.ImGuiIO; + private sizeX: number; + private sizeY: number; + public getSizeX(): number { return this.sizeX; } + public getSizeY(): number { return this.sizeY; } + + private baseTex: PIXI.BaseRenderTexture = new PIXI.BaseRenderTexture({scaleMode: PIXI.SCALE_MODES.LINEAR, resolution: 1, type: PIXI.TYPES.FLOAT, format: PIXI.FORMATS.RGBA}); + private tex: PIXI.RenderTexture = new PIXI.RenderTexture(this.baseTex); + + private surface: PIXI.Sprite = new PIXI.Sprite(this.tex); + private imgui: ImGuiWindowLayer = new ImGuiWindowLayer(this, this.tex); + + private update: (dt: number) => void; + constructor(sizeX: number, sizeY: number, update: (dt: number) => void) + { + super(); + + this.ctx = ImGui.CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts); + ImGui.SetCurrentContext(this.ctx); + this.io = ImGui.GetIO(); + + contexts.push(this.ctx); + contextIOs.push(this.io); + + if (contexts.length == 1) + { + CreateFontsTexture(); + } + + if (typeof(window) !== "undefined") { + ImGui.LoadIniSettingsFromMemory(window.localStorage.getItem("imgui.ini") || ""); + } + + if (typeof(navigator) !== "undefined") { + this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null; + } + + this.io.SetClipboardTextFn = (user_data: any, text: string): void => { + clipboard_text = text; + // console.log(`set clipboard_text: "${clipboard_text}"`); + if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.writeText: "${clipboard_text}"`); + (navigator as any).clipboard.writeText(clipboard_text).then((): void => { + // console.log(`clipboard.writeText: "${clipboard_text}" done.`); + }); + } + }; + this.io.GetClipboardTextFn = (user_data: any): string => { + // if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.readText: "${clipboard_text}"`); + // (navigator as any).clipboard.readText().then((text: string): void => { + // clipboard_text = text; + // console.log(`clipboard.readText: "${clipboard_text}" done.`); + // }); + // } + // console.log(`get clipboard_text: "${clipboard_text}"`); + return clipboard_text; + }; + this.io.ClipboardUserData = null; + + // Setup back-end capabilities flags + this.io.BackendFlags |= ImGui.BackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional) + + // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array. + this.io.KeyMap[ImGui.Key.Tab] = 9; + this.io.KeyMap[ImGui.Key.LeftArrow] = 37; + this.io.KeyMap[ImGui.Key.RightArrow] = 39; + this.io.KeyMap[ImGui.Key.UpArrow] = 38; + this.io.KeyMap[ImGui.Key.DownArrow] = 40; + this.io.KeyMap[ImGui.Key.PageUp] = 33; + this.io.KeyMap[ImGui.Key.PageDown] = 34; + this.io.KeyMap[ImGui.Key.Home] = 36; + this.io.KeyMap[ImGui.Key.End] = 35; + this.io.KeyMap[ImGui.Key.Insert] = 45; + this.io.KeyMap[ImGui.Key.Delete] = 46; + this.io.KeyMap[ImGui.Key.Backspace] = 8; + this.io.KeyMap[ImGui.Key.Space] = 32; + this.io.KeyMap[ImGui.Key.Enter] = 13; + this.io.KeyMap[ImGui.Key.Escape] = 27; + this.io.KeyMap[ImGui.Key.A] = 65; + this.io.KeyMap[ImGui.Key.C] = 67; + this.io.KeyMap[ImGui.Key.V] = 86; + this.io.KeyMap[ImGui.Key.X] = 88; + this.io.KeyMap[ImGui.Key.Y] = 89; + this.io.KeyMap[ImGui.Key.Z] = 90; + + this.update = update; + this.resize(sizeX, sizeY); + this.imgui.pluginName = 'imgui_renderer'; + this.addChild(this.surface); + app.renderer.plugins.interaction.addListener("mousedown", this.mouseDown.bind(this)); + app.renderer.plugins.interaction.addListener("mouseup", this.mouseUp.bind(this)); + app.ticker.add(this.updateInternal.bind(this)); + + this.interactive = false; + this.interactiveChildren = true; + + this.surface.interactive = false; + } + withContext(cb: () => void) + { + ImGui.SetCurrentContext(this.ctx); + cb(); + } + mouseDown(e: PIXI.interaction.InteractionEvent): void + { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) + { + this.io.MouseDown[mouse_button_map[0]] = true; + } + } + mouseUp(e: PIXI.interaction.InteractionEvent): void + { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) + { + this.io.MouseDown[mouse_button_map[0]] = false; + } + } + resize(sizeX: number, sizeY: number) + { + this.sizeX = sizeX; + this.sizeY = sizeY; + this.baseTex.resize(sizeX, sizeY); + this.tex.frame = new PIXI.Rectangle(0, 0, this.baseTex.width, this.baseTex.height); + } + updateInternal(deltaTime: number) + { + const dt: number = deltaTime * 1 / (1000 * PIXI.settings.TARGET_FPMS); + + ImGui.SetCurrentContext(this.ctx); + + if (this.io.WantSaveIniSettings) { + this.io.WantSaveIniSettings = false; + if (typeof(window) !== "undefined") { + window.localStorage.setItem("imgui.ini", ImGui.SaveIniSettingsToMemory()); + } + } + + this.io.DisplaySize.x = this.sizeX; + this.io.DisplaySize.y = this.sizeY; + this.io.DisplayFramebufferScale.x = 1; + this.io.DisplayFramebufferScale.y = 1; + + this.io.DeltaTime = dt; + + let localPos: PIXI.Point = this.toLocal(app.renderer.plugins.interaction.mouse.global); + if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY) + { + localPos = new PIXI.Point(-Number.MAX_VALUE, -Number.MAX_VALUE); + } + this.io.MousePos.x = localPos.x; + this.io.MousePos.y = localPos.y; + + if (this.io.WantSetMousePos) { + console.log("TODO: MousePos", this.io.MousePos.x, this.io.MousePos.y); + } + + if (typeof(document) !== "undefined") { + if (this.io.MouseDrawCursor) { + document.body.style.cursor = "none"; + } else { + switch (ImGui.GetMouseCursor()) { + case ImGui.MouseCursor.None: document.body.style.cursor = "none"; break; + default: case ImGui.MouseCursor.Arrow: document.body.style.cursor = "default"; break; + case ImGui.MouseCursor.TextInput: document.body.style.cursor = "text"; break; // When hovering over InputText, etc. + case ImGui.MouseCursor.ResizeAll: document.body.style.cursor = "move"; break; // Unused + case ImGui.MouseCursor.ResizeNS: document.body.style.cursor = "ns-resize"; break; // When hovering over an horizontal border + case ImGui.MouseCursor.ResizeEW: document.body.style.cursor = "ew-resize"; break; // When hovering over a vertical border or a column + case ImGui.MouseCursor.ResizeNESW: document.body.style.cursor = "nesw-resize"; break; // When hovering over the bottom-left corner of a window + case ImGui.MouseCursor.ResizeNWSE: document.body.style.cursor = "nwse-resize"; break; // When hovering over the bottom-right corner of a window + case ImGui.MouseCursor.Hand: document.body.style.cursor = "move"; break; + } + } + } + + // Gamepad navigation mapping [BETA] + for (let i = 0; i < this.io.NavInputs.length; ++i) { + this.io.NavInputs[i] = 0.0; + } + if (this.io.ConfigFlags & ImGui.ConfigFlags.NavEnableGamepad) { + // Update gamepad inputs + const gamepads: (Gamepad | null)[] = (typeof(navigator) !== "undefined" && typeof(navigator.getGamepads) === "function") ? navigator.getGamepads() : []; + for (let i = 0; i < gamepads.length; ++i) { + const gamepad: Gamepad | null = gamepads[i]; + if (!gamepad) { continue; } + const buttons_count: number = gamepad.buttons.length; + const axes_count: number = gamepad.axes.length; + const MAP_BUTTON = function(NAV_NO: number, BUTTON_NO: number): void { + if (!gamepad) { return; } + if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed) + this.io.NavInputs[NAV_NO] = 1.0; + } + const MAP_ANALOG = function(NAV_NO: number, AXIS_NO: number, V0: number, V1: number): void { + if (!gamepad) { return; } + let v: number = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0; + v = (v - V0) / (V1 - V0); + if (v > 1.0) v = 1.0; + if (this.io.NavInputs[NAV_NO] < v) this.io.NavInputs[NAV_NO] = v; + } + // TODO: map input based on vendor and product id + // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id + const match: RegExpMatchArray | null = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/); + const match_chrome: RegExpMatchArray | null = gamepad.id.match(/^.*\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\).*$/); + const vendor: string = (match && match[1]) || (match_chrome && match_chrome[1]) || "0000"; + const product: string = (match && match[2]) || (match_chrome && match_chrome[2]) || "0000"; + switch (vendor + product) { + case "046dc216": // Logitech Logitech Dual Action (Vendor: 046d Product: c216) + MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 2); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 0); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGui.NavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGui.NavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGui.NavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGui.NavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + case "046dc21d": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d) + MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_ANALOG(ImGui.NavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT + MAP_ANALOG(ImGui.NavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + case "2dc86001": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001) + case "2dc86101": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101) + MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 0); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 4); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGui.NavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGui.NavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGui.NavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGui.NavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 6); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 7); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 8); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 9); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + default: // standard gamepad: https://w3c.github.io/gamepad/#remapping + MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + } + } + } + + ImGui.NewFrame(); + + this.update(dt); + + ImGui.EndFrame(); + ImGui.Render(); + + app.renderer.render(this.imgui, this.tex); + + this.surface.interactive = this.io.WantCaptureMouse; + } +} + +let canvas: HTMLCanvasElement | null = null; + +//export let gl: WebGL2RenderingContext | null = null; +let g_ShaderHandle: WebGLProgram | null = null; +let g_VertHandle: WebGLShader | null = null; +let g_FragHandle: WebGLShader | null = null; +let g_AttribLocationTex: WebGLUniformLocation | null = null; +let g_AttribLocationProjMtx: WebGLUniformLocation | null = null; +let g_AttribLocationPosition: GLint = -1; +let g_AttribLocationUV: GLint = -1; +let g_AttribLocationColor: GLint = -1; +let g_VaoHandle: WebGLVertexArrayObject = null; +let g_VboHandle: WebGLBuffer | null = null; +let g_ElementsHandle: WebGLBuffer | null = null; +let g_FontTexture: WebGLTexture | null = null; + +function document_on_copy(event: ClipboardEvent): void { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function document_on_cut(event: ClipboardEvent): void { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function document_on_paste(event: ClipboardEvent): void { + if (event.clipboardData) { + clipboard_text = event.clipboardData.getData("text/plain"); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function window_on_gamepadconnected(event: any /* GamepadEvent */): void { + console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.", + event.gamepad.index, event.gamepad.id, + event.gamepad.buttons.length, event.gamepad.axes.length); +} + +function window_on_gamepaddisconnected(event: any /* GamepadEvent */): void { + console.log("Gamepad disconnected at index %d: %s.", + event.gamepad.index, event.gamepad.id); +} + +function canvas_on_blur(event: FocusEvent): void { + for (var io of contextIOs) + { + io.KeyCtrl = false; + io.KeyShift = false; + io.KeyAlt = false; + io.KeySuper = false; + for (let i = 0; i < io.KeysDown.length; ++i) { + io.KeysDown[i] = false; + } + for (let i = 0; i < io.MouseDown.length; ++i) { + io.MouseDown[i] = false; + } + } +} + +function canvas_on_keydown(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = true; + // forward to the keypress event + if (/*io.WantCaptureKeyboard ||*/ event.key === "Tab") { + event.preventDefault(); + } + } +} + +function canvas_on_keyup(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = false; + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} + +function canvas_on_keypress(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.AddInputCharacter(event.charCode); + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} + +// MouseEvent.button +// A number representing a given button: +// 0: Main button pressed, usually the left button or the un-initialized state +// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present) +// 2: Secondary button pressed, usually the right button +// 3: Fourth button, typically the Browser Back button +// 4: Fifth button, typically the Browser Forward button +const mouse_button_map: number[] = [ 0, 2, 1, 3, 4 ]; + +function canvas_on_contextmenu(event: Event): void { + for (var io of contextIOs) + { + if (io.WantCaptureMouse) { event.preventDefault(); } + } +} + +function canvas_on_wheel(event: WheelEvent): void { + for (var io of contextIOs) + { + let scale: number = 1.0; + switch (event.deltaMode) { + case event.DOM_DELTA_PIXEL: scale = 0.01; break; + case event.DOM_DELTA_LINE: scale = 0.2; break; + case event.DOM_DELTA_PAGE: scale = 1.0; break; + } + io.MouseWheelH = event.deltaX * scale; + io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text. + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} + +export function PrePIXIInit(): void +{ + PIXI.Renderer.registerPlugin("imgui_renderer", U.fromConstructor(ImGuiImplInternalRenderer)); +} + +export function Init(_app: PIXI.Application): void { + // Setup Dear ImGui binding + ImGui.IMGUI_CHECKVERSION(); + + if (typeof(document) !== "undefined") { + document.body.addEventListener("copy", document_on_copy); + document.body.addEventListener("cut", document_on_cut); + document.body.addEventListener("paste", document_on_paste); + } + + if (typeof(window) !== "undefined") { + window.addEventListener("gamepadconnected", window_on_gamepadconnected); + window.addEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + + app = _app; + gl = (app.renderer as any).gl; + canvas = app.view; + + gl.getExtension("EXT_color_buffer_float"); + + if (canvas !== null) { + canvas.style.touchAction = "none"; // Disable browser handling of all panning and zooming gestures. + canvas.addEventListener("blur", canvas_on_blur); + canvas.addEventListener("keydown", canvas_on_keydown); + canvas.addEventListener("keyup", canvas_on_keyup); + canvas.addEventListener("keypress", canvas_on_keypress); + canvas.addEventListener("contextmenu", canvas_on_contextmenu); + canvas.addEventListener("wheel", canvas_on_wheel); + } + + CreateDeviceObjects(); +} + +export function Shutdown(): void { + DestroyDeviceObjects(); + + if (canvas !== null) { + canvas.removeEventListener("blur", canvas_on_blur); + canvas.removeEventListener("keydown", canvas_on_keydown); + canvas.removeEventListener("keyup", canvas_on_keyup); + canvas.removeEventListener("keypress", canvas_on_keypress); + canvas.removeEventListener("contextmenu", canvas_on_contextmenu); + canvas.removeEventListener("wheel", canvas_on_wheel); + } + + app = null; + canvas = null; + + if (typeof(window) !== "undefined") { + window.removeEventListener("gamepadconnected", window_on_gamepadconnected); + window.removeEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + + if (typeof(document) !== "undefined") { + document.body.removeEventListener("copy", document_on_copy); + document.body.removeEventListener("cut", document_on_cut); + document.body.removeEventListener("paste", document_on_paste); + } +} + +function CreateFontsTexture(): void { + const io = ImGui.GetIO(); + + // Backup GL state + const last_texture: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D); + + // Build texture atlas + // const width: number = 256; + // const height: number = 256; + // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff); + const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory. + // console.log(`font texture ${width} x ${height} @ ${pixels.length}`); + + // Upload texture to graphics system + g_FontTexture = gl && gl.createTexture(); + gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2 + gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels); + + // Store our identifier + io.Fonts.TexID = g_FontTexture || { foo: "bar" }; + // console.log("font texture id", g_FontTexture); + + // Restore modified GL state + gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture); +} + +function DestroyFontsTexture(): void { + const io = ImGui.GetIO(); + io.Fonts.TexID = null; + gl && gl.deleteTexture(g_FontTexture); g_FontTexture = null; +} + +function CreateDeviceObjects(): void { + const vertex_shader: string[] = [ + "#version 300 es", + "uniform mat4 ProjMtx;", + "in vec2 Position;", + "in vec2 UV;", + "in vec4 Color;", + "out vec2 Frag_UV;", + "out vec4 Frag_Color;", + "void main() {", + " Frag_UV = UV;", + " Frag_Color = Color;", + " gl_Position = ProjMtx * vec4(Position.xy,0,1);", + "}", + ]; + + const fragment_shader: string[] = [ + "#version 300 es", + "precision mediump float;", // WebGL requires precision specifiers + "uniform sampler2D Texture;", + "in vec2 Frag_UV;", + "in vec4 Frag_Color;", + "out vec4 OutColor;", + "void main() {", + " OutColor = Frag_Color * texture(Texture, Frag_UV);", + "}", + ]; + + g_ShaderHandle = gl && gl.createProgram(); + g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER); + g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER); + gl && gl.shaderSource(g_VertHandle as WebGLShader, vertex_shader.join("\n")); + gl && gl.shaderSource(g_FragHandle as WebGLShader, fragment_shader.join("\n")); + gl && gl.compileShader(g_VertHandle as WebGLShader); + gl && gl.compileShader(g_FragHandle as WebGLShader); + gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_VertHandle as WebGLShader); + gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_FragHandle as WebGLShader); + gl && gl.linkProgram(g_ShaderHandle as WebGLProgram); + + g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, "Texture"); + g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, "ProjMtx"); + g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "Position") || 0; + g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "UV") || 0; + g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "Color") || 0; + + g_VaoHandle = gl && gl.createVertexArray(); + g_VboHandle = gl && gl.createBuffer(); + g_ElementsHandle = gl && gl.createBuffer(); + +} + +function DestroyDeviceObjects(): void { + DestroyFontsTexture(); + + gl && gl.deleteVertexArray(g_VaoHandle); g_VaoHandle = null; + gl && gl.deleteBuffer(g_VboHandle); g_VboHandle = null; + gl && gl.deleteBuffer(g_ElementsHandle); g_ElementsHandle = null; + + g_AttribLocationTex = null; + g_AttribLocationProjMtx = null; + g_AttribLocationPosition = -1; + g_AttribLocationUV = -1; + g_AttribLocationColor = -1; + + gl && gl.deleteProgram(g_ShaderHandle); g_ShaderHandle = null; + gl && gl.deleteShader(g_VertHandle); g_VertHandle = null; + gl && gl.deleteShader(g_FragHandle); g_FragHandle = null; +} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..08ec8c9 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1639 @@ +{ + "name": "imgui-js-pixi", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@pixi/accessibility": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/accessibility/-/accessibility-5.1.5.tgz", + "integrity": "sha512-xHgcVN6sDqqpkcgk+yJ5s6tCf7ZW2YZVop7bQL9avuJaP6I/0mbwUN3evWonQ4QNO6SF8V/QXOc3ZmEdkYILPA==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/app": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/app/-/app-5.1.5.tgz", + "integrity": "sha512-BxcNAulUXVkTpOqS5gjorO2d3+wksmBfn0VFGdiq7Elbv3v0s8wCwGOlOSMJoAjYSPXz8H8t3dw8NHxqxpI53A==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3" + } + }, + "@pixi/constants": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@pixi/constants/-/constants-5.1.0.tgz", + "integrity": "sha512-86cogDvjF9yNvmxeizwkIhA0Kl2z3gUSWMf2daYx903dzyje7fwkzRrKLnqDUn6vSAxRXiska0DMJhwYsIC29w==" + }, + "@pixi/core": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/core/-/core-5.1.5.tgz", + "integrity": "sha512-pt7JTgRyGyOm1VNGhYqAjdIggQ5SjGpctLEBFwPlZDOTeEjJ85NADwCvN/E9ToIW7Gv/1urrNKsoVGlADcV6vw==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/runner": "^5.1.1", + "@pixi/settings": "^5.1.3", + "@pixi/ticker": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/display": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/display/-/display-5.1.3.tgz", + "integrity": "sha512-zQJfwH9tSilEfpajVJKM2bavIXBFMokscXyFIdokBSjLQL22mgEyR0mHZ3u6OECUa0PEVUA64eePv6KmPZ+bJQ==", + "requires": { + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/extract": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/extract/-/extract-5.1.5.tgz", + "integrity": "sha512-sn13RxtWpqZq05K9IJxF/00ddMsiDlpQAwEwA8fQIsMSbt6lBTm1fa0u/nZqQjRhJk72Q+41h4LXEhZEMMowAg==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/filter-alpha": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-alpha/-/filter-alpha-5.1.5.tgz", + "integrity": "sha512-Jb5e7lybvMOXjdTOEN883h2N5Qe5rLNdTmPxOoK43RR+LQMk8D/Iw3zWpQ1oIwpJFiUkgwn0CmO5YaK6STh34w==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/filter-blur": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-blur/-/filter-blur-5.1.5.tgz", + "integrity": "sha512-9eSJtg8kLwKrNnJmg2c1vlOcP0PYhvZdUk97D2+HrE0j1BZTJ2OxHb26UJSiMU0kBCUomtuFvCiNtFT2GCWbjg==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/settings": "^5.1.3" + } + }, + "@pixi/filter-color-matrix": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-color-matrix/-/filter-color-matrix-5.1.5.tgz", + "integrity": "sha512-zhg8FE22WA7sH1mhvjjSaWav7BXFbU63usdh9pVNv2Hd7cuDtO9x8aLy+RqGozqENfYHzRUlTdKrNdl5QEbYMg==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/filter-displacement": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-displacement/-/filter-displacement-5.1.5.tgz", + "integrity": "sha512-/ZzlTT+jFQTwg57jj6kl4lH+0Z3iwtp+tDXdYcusNDe44hZn9Wd+IzZkS/LCeay40cY4JPRrXznVwlZ6AiBsHQ==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0" + } + }, + "@pixi/filter-fxaa": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-fxaa/-/filter-fxaa-5.1.5.tgz", + "integrity": "sha512-Zg2pSBpb0pxJozWraNrHUC97C3gSjK+NSaMGBN6NpfaGcn+/xaZjFBwwYDeTpHAw6IDV+3Ln+z7D5h9pPEliKg==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/filter-noise": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-noise/-/filter-noise-5.1.5.tgz", + "integrity": "sha512-/HGr9dxvBVc+qRJ/JU/6ZHz3BshnUwCTgEfQtxJmo2I6lqn9cWoiL4q+iKk9QkGmLtLNip77zc0KveYN01eh/g==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/graphics": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/graphics/-/graphics-5.1.5.tgz", + "integrity": "sha512-u9uq/6ylS5oRCsWaTi0uOCuAimAvaXJ57ATKT/nylHRXv+GfbPoMJAHpqTWx8HojK7P6PBUJCenPa0BFVcq9gg==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/interaction": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/interaction/-/interaction-5.1.5.tgz", + "integrity": "sha512-N8SONgHZZuDLPAL3LvfMTfgRsD6084KJA9VbwJ6Ujvm95NwSInNC2HRB6uXsSYTC4I1bMcRhot3CjZkB5BEURA==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/ticker": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/loaders": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/loaders/-/loaders-5.1.5.tgz", + "integrity": "sha512-jcuJMMGIr7/o8HKtVL9YzUTQQGk4K4uNQylUbhnNDFVuJcVzuBwD/TCWJ/+2Y879vBzipXdhCw7JLA4F8w6bkg==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/utils": "^5.1.3", + "resource-loader": "^3.0.1" + } + }, + "@pixi/math": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@pixi/math/-/math-5.1.0.tgz", + "integrity": "sha512-Vf9W4SgYRRQMdSq8tFViKKKGCU3iklf0RDzd+wzp4gezOxe3m0PLB7XKwvVrP1hRjUh49zIAL9JBpYREPS1EMw==" + }, + "@pixi/mesh": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/mesh/-/mesh-5.1.5.tgz", + "integrity": "sha512-gWBwBkIV0Dj0nA+a/ymtv4oQOium3oiehKdhSynQZj9C+pwd3YUSJGjHWs4b+TIQxZm2RHEsSSw4gCw/Ih1cuw==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/mesh-extras": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/mesh-extras/-/mesh-extras-5.1.5.tgz", + "integrity": "sha512-aMjTD3kBf2h31ijYapapQOJIoQuO26i4pP7P4ux886FE8E48QSc3edXZzULq2Rc5ZdWMPUFYnd8AJ6F8dw/ocQ==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/mesh": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/mixin-cache-as-bitmap": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/mixin-cache-as-bitmap/-/mixin-cache-as-bitmap-5.1.5.tgz", + "integrity": "sha512-XRVTz5nOgj7wUFXXIixTlg+2oynNerebUwjkw11mnr+HNP3vMmt2O8ZtXEyij2VXNMuDmbYo8/O53FI+81CnAQ==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/mixin-get-child-by-name": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/mixin-get-child-by-name/-/mixin-get-child-by-name-5.1.3.tgz", + "integrity": "sha512-0nvNfcQAeND9iuzQr0AYCxINDaXQx5Kft8Fauu0T4LKbYAchO0qzuSpv7L+cD4LvKdvGQyxHHWP6u4wQ9yuKrg==", + "requires": { + "@pixi/display": "^5.1.3" + } + }, + "@pixi/mixin-get-global-position": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/mixin-get-global-position/-/mixin-get-global-position-5.1.3.tgz", + "integrity": "sha512-dgIUjjIDnI/wrNXt+ROWdv0syQeV5hlt/TJot/ULXw6HnBoDDmXqcKzIp38o3Ei6n2eQ0CUVbKYGd668tdk5EQ==", + "requires": { + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0" + } + }, + "@pixi/particles": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/particles/-/particles-5.1.5.tgz", + "integrity": "sha512-eIYd1wKyuzBL/re3EuyhUjXNRe8fkqbUgpeevV2e7tIoFcyK3g3cT4E1ajTv+7IIAvj2505xRJ3dxcAxLDzd6g==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/polyfill": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@pixi/polyfill/-/polyfill-5.1.0.tgz", + "integrity": "sha512-8M3nYCO0a599fsdLW7wv9SBYriMqS1QckKAkRuN2JualRuK/GjxZjm5Vcbcwc1gGONRUKZroH12CuPyTcU2HnQ==", + "requires": { + "es6-promise-polyfill": "^1.2.0", + "object-assign": "^4.1.1" + } + }, + "@pixi/prepare": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/prepare/-/prepare-5.1.5.tgz", + "integrity": "sha512-0Gq6whHFuLYy3uUVoVmRnVWMZU4Z0WSs7+BYGWrDqxlOqfuZ6ZS4SSEjzcUUvyCK8MWisEn7O3EnDRYFr+3K5g==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/graphics": "^5.1.5", + "@pixi/settings": "^5.1.3", + "@pixi/text": "^5.1.5", + "@pixi/ticker": "^5.1.3" + } + }, + "@pixi/runner": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@pixi/runner/-/runner-5.1.1.tgz", + "integrity": "sha512-cOkWsRZlEgOB4IuiUW0PvU0JDMNpNTtyLeECg4DwIDYW4uQ0033zaZFSsN0EOeX0TFkpBmaJsgEIwpmw32VU0w==" + }, + "@pixi/settings": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/settings/-/settings-5.1.3.tgz", + "integrity": "sha512-goYjVYuklNMFWFq54J7u4eYVe+qmLe6AQP+b+hF+Kskw7tSXrAVTHROqrEiqPqKSCL9umorOi6T/ZTXhk8i4Wg==", + "requires": { + "ismobilejs": "^0.5.1" + } + }, + "@pixi/sprite": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/sprite/-/sprite-5.1.5.tgz", + "integrity": "sha512-a8M5P7xarbYMut3YKIb5I4hr94c0/VA18jV/eOhtyOKOsS5jkjul5WGssnIyR73aQp7iaNGWfh7FD+BiWCLzXQ==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/sprite-animated": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/sprite-animated/-/sprite-animated-5.1.5.tgz", + "integrity": "sha512-jsxqmWpDpjy7BoqVFpPWNvIeJ6yePQ0/uTyvzhKZBM8ihZVFJMa1+C4IFQpQYUCp9rlZHG6og4UzAHlwceQb+A==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/sprite": "^5.1.5", + "@pixi/ticker": "^5.1.3" + } + }, + "@pixi/sprite-tiling": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/sprite-tiling/-/sprite-tiling-5.1.5.tgz", + "integrity": "sha512-9P0jyAA9I8hrDnN04rABxxs09Knb2AZr+Ky2yvWAUngumoMmIEbc/JtW9R8ich72uTBcl8Ax+bTz520wB36HpA==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/spritesheet": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/spritesheet/-/spritesheet-5.1.5.tgz", + "integrity": "sha512-kZBiI/eYRKoNxOTI9h4tl13oGdCaFkH/cOI0MZ0st0Dos6clB5OJStJ19bEe/Ik1Yt7NxGCCuFLLa3WKhQ5idQ==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/loaders": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/text": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/text/-/text-5.1.5.tgz", + "integrity": "sha512-8pKWuyccdWrZgvssyPUrOdn7CMeetRTpM8W51KYwU8gla6tnddMj3TaBW56dXRdtddadDc2KdGtDYPOuonHOfA==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/text-bitmap": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/text-bitmap/-/text-bitmap-5.1.5.tgz", + "integrity": "sha512-Qvnq35MdDWjW9JwJsLcVpnTX4ApW52zLMeMezuTtN+QrfsXmYXRE+SOeBERccbGmyxcM2yIKIItiqS2eFvlzRw==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/loaders": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/ticker": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/ticker/-/ticker-5.1.3.tgz", + "integrity": "sha512-IuJTMTfdboR6049b+HnSClGj7Lz5gObVoxuMc3flY493XAvrQk4XrBo57QDlVOdjVBiDW0gZ9DlUr1lwNFI7zQ==", + "requires": { + "@pixi/settings": "^5.1.3" + } + }, + "@pixi/utils": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/utils/-/utils-5.1.3.tgz", + "integrity": "sha512-w2ULIc97p1tnAZ7L0aSClDeIpuCYrauOKbnWYG8C8zTVfHWFKAHVamvzYnVaeXw4CN9jwERK/JYY/y2VFZXHuw==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/settings": "^5.1.3", + "earcut": "^2.1.5", + "eventemitter3": "^3.1.0", + "url": "^0.11.0" + } + }, + "@types/emscripten": { + "version": "1.38.0", + "resolved": "https://registry.npmjs.org/@types/emscripten/-/emscripten-1.38.0.tgz", + "integrity": "sha512-qfuBbl9hC0ybmW9s8SDORPgg+LdPV+KRpB8AMdTRqxuQZR4G5T7ozIAVUJLO26N7SFSM1zvDVuZ9+qOX7qt/EQ==" + }, + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "dev": true + }, + "@types/node": { + "version": "12.7.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.7.8.tgz", + "integrity": "sha512-FMdVn84tJJdV+xe+53sYiZS4R5yn1mAIxfj+DVoNiQjTYz1+OYmjwEZr1ev9nU0axXwda0QDbYl06QHanRVH3A==" + }, + "@types/resolve": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz", + "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/systemjs": { + "version": "0.20.6", + "resolved": "https://registry.npmjs.org/@types/systemjs/-/systemjs-0.20.6.tgz", + "integrity": "sha512-p3yv9sBBJXi3noUG216BpUI7VtVBUAvBIfZNTiDROUY31YBfsFHM4DreS7XMekN8IjtX0ysvCnm6r3WnirnNeA==" + }, + "abstract-leveldown": { + "version": "0.12.4", + "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-0.12.4.tgz", + "integrity": "sha1-KeGOYy5g5OIh1YECR4UqY9ey5BA=", + "dev": true, + "requires": { + "xtend": "~3.0.0" + }, + "dependencies": { + "xtend": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz", + "integrity": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=", + "dev": true + } + } + }, + "acorn": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.0.tgz", + "integrity": "sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==", + "dev": true + }, + "asn1.js": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", + "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "bl": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/bl/-/bl-0.8.2.tgz", + "integrity": "sha1-yba8oI0bwuoA/Ir7Txpf0eHGbk4=", + "dev": true, + "requires": { + "readable-stream": "~1.0.26" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "bn.js": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", + "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==", + "dev": true + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-fs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browserify-fs/-/browserify-fs-1.0.0.tgz", + "integrity": "sha1-8HWqinKdTRcW0GZiDjhvzBMRqW8=", + "dev": true, + "requires": { + "level-filesystem": "^1.0.1", + "level-js": "^2.1.3", + "levelup": "^0.18.2" + } + }, + "browserify-rsa": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", + "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", + "dev": true, + "requires": { + "bn.js": "^4.1.1", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.2", + "elliptic": "^6.0.0", + "inherits": "^2.0.1", + "parse-asn1": "^5.0.0" + } + }, + "buffer-es6": { + "version": "4.9.3", + "resolved": "https://registry.npmjs.org/buffer-es6/-/buffer-es6-4.9.3.tgz", + "integrity": "sha1-8mNHuC33b9N+GLy1KIxJcM/VxAQ=", + "dev": true + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true + }, + "builtin-modules": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz", + "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==", + "dev": true + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "clone": { + "version": "0.1.19", + "resolved": "https://registry.npmjs.org/clone/-/clone-0.1.19.tgz", + "integrity": "sha1-YT+2hjmyaklKxTJT4Vsaa9iK2oU=", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "create-ecdh": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", + "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.0.0" + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "deferred-leveldown": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-0.2.0.tgz", + "integrity": "sha1-LO8fER4cV4cNi7uK8mUOWHzS9bQ=", + "dev": true, + "requires": { + "abstract-leveldown": "~0.12.1" + } + }, + "des.js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", + "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "earcut": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.1.tgz", + "integrity": "sha512-5jIMi2RB3HtGPHcYd9Yyl0cczo84y+48lgKPxMijliNQaKAHEZJbdzLmKmdxG/mCdS/YD9DQ1gihL8mxzR0F9w==" + }, + "elliptic": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.1.tgz", + "integrity": "sha512-xvJINNLbTeWQjrl6X+7eQCrIy/YPv5XCpKW6kB5mKvtnGILoLDcySuwomfdzt0BMdLNVnuRNTuzKNHj0bva1Cg==", + "dev": true, + "requires": { + "bn.js": "^4.4.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + } + }, + "errno": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", + "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "es6-promise-polyfill": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/es6-promise-polyfill/-/es6-promise-polyfill-1.2.0.tgz", + "integrity": "sha1-84kl8jyz4+jObNqP93T867sJDN4=" + }, + "estree-walker": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", + "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==", + "dev": true + }, + "eventemitter3": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", + "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==" + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "find-cache-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.0.0.tgz", + "integrity": "sha512-t7ulV1fmbxh5G9l/492O1p5+EBbr3uwpt6odhFTMc+nWyhmbloe+ja9BZ8pIBtqFWhOmCWVjx+pTW4zDkFoclw==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.0", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "foreach": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", + "dev": true + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fwd-stream": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/fwd-stream/-/fwd-stream-1.0.4.tgz", + "integrity": "sha1-7Sgcq+1G/uz5Ie4y3ExQs3KsfPo=", + "dev": true, + "requires": { + "readable-stream": "~1.0.26-4" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "graceful-fs": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", + "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==", + "dev": true + }, + "hash-base": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", + "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "idb-wrapper": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/idb-wrapper/-/idb-wrapper-1.7.2.tgz", + "integrity": "sha512-zfNREywMuf0NzDo9mVsL0yegjsirJxHpKHvWcyRozIqQy89g0a3U+oBPOCN4cc0oCiOuYgZHimzaW/R46G1Mpg==", + "dev": true + }, + "imgui-js": { + "version": "git+https://git.mhack.io/git/mark/imgui-js.git#9536ecad287eb76812087cd3fee1aaacb448c027", + "from": "git+https://git.mhack.io/git/mark/imgui-js.git", + "requires": { + "@types/emscripten": "^1.38.0", + "@types/node": "^12.6.7", + "@types/systemjs": "^0.20.6", + "pixi.js": "file:node_modules/imgui-js/pixi.js/bundles/pixi.js/pixi.js-5.1.4.tgz" + } + }, + "indexof": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", + "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", + "dev": true + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "is": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/is/-/is-0.2.7.tgz", + "integrity": "sha1-OzSixI81mXLzUEKEkZOucmS2NWI=", + "dev": true + }, + "is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=", + "dev": true + }, + "is-object": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-0.1.2.tgz", + "integrity": "sha1-AO+8CIFsM8/ErIJR0TLhDcZQmNc=", + "dev": true + }, + "is-reference": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.1.4.tgz", + "integrity": "sha512-uJA/CDPO3Tao3GTrxYn6AwkM4nUPJiGGYu5+cB8qbC7WGFlrKZbiRo7SFKxUAEpFUfiHofWCXBUNhvYJMh+6zw==", + "dev": true, + "requires": { + "@types/estree": "0.0.39" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isbuffer": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/isbuffer/-/isbuffer-0.0.0.tgz", + "integrity": "sha1-OMFG2d9Si4v5sHAcPUPPEt8/w5s=", + "dev": true + }, + "ismobilejs": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/ismobilejs/-/ismobilejs-0.5.2.tgz", + "integrity": "sha512-ta9UdV60xVZk/ZafFtSFslQaE76SvNkcs1r73d2PVR21zVzx9xuYv9tNe4MxA1NN7WoeCc2RjGot3Bz1eHDx3Q==" + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "level-blobs": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/level-blobs/-/level-blobs-0.1.7.tgz", + "integrity": "sha1-mrm5e7mfHtv594o0M+Ie1WOGva8=", + "dev": true, + "requires": { + "level-peek": "1.0.6", + "once": "^1.3.0", + "readable-stream": "^1.0.26-4" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "level-filesystem": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/level-filesystem/-/level-filesystem-1.2.0.tgz", + "integrity": "sha1-oArKmRnEpN+v3KaoEI0iWq3/Y7M=", + "dev": true, + "requires": { + "concat-stream": "^1.4.4", + "errno": "^0.1.1", + "fwd-stream": "^1.0.4", + "level-blobs": "^0.1.7", + "level-peek": "^1.0.6", + "level-sublevel": "^5.2.0", + "octal": "^1.0.0", + "once": "^1.3.0", + "xtend": "^2.2.0" + } + }, + "level-fix-range": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/level-fix-range/-/level-fix-range-1.0.2.tgz", + "integrity": "sha1-vxW5Fa422EcMgh6IPd95zRZCCCg=", + "dev": true + }, + "level-hooks": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/level-hooks/-/level-hooks-4.5.0.tgz", + "integrity": "sha1-G5rmGSKTDzMF0aYfxNg8gQLA3ZM=", + "dev": true, + "requires": { + "string-range": "~1.2" + } + }, + "level-js": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/level-js/-/level-js-2.2.4.tgz", + "integrity": "sha1-vAVfQYBjXUSJtWHJSG+jcOjBFpc=", + "dev": true, + "requires": { + "abstract-leveldown": "~0.12.0", + "idb-wrapper": "^1.5.0", + "isbuffer": "~0.0.0", + "ltgt": "^2.1.2", + "typedarray-to-buffer": "~1.0.0", + "xtend": "~2.1.2" + }, + "dependencies": { + "object-keys": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz", + "integrity": "sha1-KKaq50KN0sOpLz2V8hM13SBOAzY=", + "dev": true + }, + "xtend": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", + "integrity": "sha1-bv7MKk2tjmlixJAbM3znuoe10os=", + "dev": true, + "requires": { + "object-keys": "~0.4.0" + } + } + } + }, + "level-peek": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/level-peek/-/level-peek-1.0.6.tgz", + "integrity": "sha1-vsUccqgu5GTTNkNMfIdsP8vM538=", + "dev": true, + "requires": { + "level-fix-range": "~1.0.2" + } + }, + "level-sublevel": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/level-sublevel/-/level-sublevel-5.2.3.tgz", + "integrity": "sha1-dEwSxy0ucr543eO5tc2E1iGRQTo=", + "dev": true, + "requires": { + "level-fix-range": "2.0", + "level-hooks": ">=4.4.0 <5", + "string-range": "~1.2.1", + "xtend": "~2.0.4" + }, + "dependencies": { + "level-fix-range": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/level-fix-range/-/level-fix-range-2.0.0.tgz", + "integrity": "sha1-xBfWIVlEIVGhnZojZ4aPFyTC1Ug=", + "dev": true, + "requires": { + "clone": "~0.1.9" + } + }, + "xtend": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.0.6.tgz", + "integrity": "sha1-XqZXptukRwacLlnFihE4ywxebO4=", + "dev": true, + "requires": { + "is-object": "~0.1.2", + "object-keys": "~0.2.0" + } + } + } + }, + "levelup": { + "version": "0.18.6", + "resolved": "https://registry.npmjs.org/levelup/-/levelup-0.18.6.tgz", + "integrity": "sha1-5qAcsIlhbI7MApHCqb0/DETj5es=", + "dev": true, + "requires": { + "bl": "~0.8.1", + "deferred-leveldown": "~0.2.0", + "errno": "~0.1.1", + "prr": "~0.0.0", + "readable-stream": "~1.0.26", + "semver": "~2.3.1", + "xtend": "~3.0.0" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "prr": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz", + "integrity": "sha1-GoS4WQgyVQFBGFPQCB7j+obikmo=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + }, + "xtend": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz", + "integrity": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=", + "dev": true + } + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "ltgt": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ltgt/-/ltgt-2.2.1.tgz", + "integrity": "sha1-81ypHEk/e3PaDgdJUwTxezH4fuU=", + "dev": true + }, + "magic-string": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.4.tgz", + "integrity": "sha512-oycWO9nEVAP2RVPbIoDoA4Y7LFIJ3xRYov93gAyJhZkET1tNuB0u7uWkZS2LpBWTJUWnmau/To8ECWRC+jKNfw==", + "dev": true, + "requires": { + "sourcemap-codec": "^1.4.4" + } + }, + "make-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.0.0.tgz", + "integrity": "sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + } + }, + "mini-signals": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mini-signals/-/mini-signals-1.2.0.tgz", + "integrity": "sha1-RbCAE8X65RokqhqTXNMXye1yHXQ=" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-keys": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.2.0.tgz", + "integrity": "sha1-zd7AKZiwkb5CvxA1rjLknxy26mc=", + "dev": true, + "requires": { + "foreach": "~2.0.1", + "indexof": "~0.0.1", + "is": "~0.2.6" + } + }, + "octal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/octal/-/octal-1.0.0.tgz", + "integrity": "sha1-Y+cWKmjvvrniE1iNWOmJ0eXEUws=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "p-limit": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", + "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "parse-asn1": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz", + "integrity": "sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==", + "dev": true, + "requires": { + "asn1.js": "^4.0.0", + "browserify-aes": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-uri": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-uri/-/parse-uri-1.0.0.tgz", + "integrity": "sha1-KHLcwi8aeXrN4Vg9igrClVLdrCA=" + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "dev": true + }, + "pbkdf2": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", + "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", + "dev": true, + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "pixi.js": { + "version": "file:node_modules/imgui-js/pixi.js/bundles/pixi.js/pixi.js-5.1.4.tgz", + "integrity": "sha512-qBtJPyfiH/b2powvEEnQoiBdoT0xQTg5LQ08CESsBJk4kFX6NE2u+KQv6WYfl5j/1pRHVvtrWhwPeJTbfp9SpQ==", + "requires": { + "@pixi/accessibility": "^5.1.4", + "@pixi/app": "^5.1.4", + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.4", + "@pixi/display": "^5.1.3", + "@pixi/extract": "^5.1.4", + "@pixi/filter-alpha": "^5.1.4", + "@pixi/filter-blur": "^5.1.4", + "@pixi/filter-color-matrix": "^5.1.4", + "@pixi/filter-displacement": "^5.1.4", + "@pixi/filter-fxaa": "^5.1.4", + "@pixi/filter-noise": "^5.1.4", + "@pixi/graphics": "^5.1.4", + "@pixi/interaction": "^5.1.4", + "@pixi/loaders": "^5.1.4", + "@pixi/math": "^5.1.0", + "@pixi/mesh": "^5.1.4", + "@pixi/mesh-extras": "^5.1.4", + "@pixi/mixin-cache-as-bitmap": "^5.1.4", + "@pixi/mixin-get-child-by-name": "^5.1.3", + "@pixi/mixin-get-global-position": "^5.1.3", + "@pixi/particles": "^5.1.4", + "@pixi/polyfill": "^5.1.0", + "@pixi/prepare": "^5.1.4", + "@pixi/runner": "^5.1.1", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.4", + "@pixi/sprite-animated": "^5.1.4", + "@pixi/sprite-tiling": "^5.1.4", + "@pixi/spritesheet": "^5.1.4", + "@pixi/text": "^5.1.4", + "@pixi/text-bitmap": "^5.1.4", + "@pixi/ticker": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "process-es6": { + "version": "0.11.6", + "resolved": "https://registry.npmjs.org/process-es6/-/process-es6-0.11.6.tgz", + "integrity": "sha1-xrs4n5qVH4K9TrFpYAEFvS/5x3g=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "resolve": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz", + "integrity": "sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "resource-loader": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/resource-loader/-/resource-loader-3.0.1.tgz", + "integrity": "sha512-fBuCRbEHdLCI1eglzQhUv9Rrdcmqkydr1r6uHE2cYHvRBrcLXeSmbE/qI/urFt8rPr/IGxir3BUwM5kUK8XoyA==", + "requires": { + "mini-signals": "^1.2.0", + "parse-uri": "^1.0.0" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "rollup": { + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-1.22.0.tgz", + "integrity": "sha512-x4l4ZrV/Mr/x/jvFTmwROdEAhbZjx16yDRTVSKWh/i4oJDuW2dVEbECT853mybYCz7BAitU8ElGlhx7dNjw3qQ==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/node": "*", + "acorn": "^7.1.0" + } + }, + "rollup-plugin-commonjs": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-commonjs/-/rollup-plugin-commonjs-10.1.0.tgz", + "integrity": "sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q==", + "dev": true, + "requires": { + "estree-walker": "^0.6.1", + "is-reference": "^1.1.2", + "magic-string": "^0.25.2", + "resolve": "^1.11.0", + "rollup-pluginutils": "^2.8.1" + } + }, + "rollup-plugin-node-builtins": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-node-builtins/-/rollup-plugin-node-builtins-2.1.2.tgz", + "integrity": "sha1-JKH+1KQyV7a2Q3HYq8bOGrFFl+k=", + "dev": true, + "requires": { + "browserify-fs": "^1.0.0", + "buffer-es6": "^4.9.2", + "crypto-browserify": "^3.11.0", + "process-es6": "^0.11.2" + } + }, + "rollup-plugin-node-resolve": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-5.2.0.tgz", + "integrity": "sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw==", + "dev": true, + "requires": { + "@types/resolve": "0.0.8", + "builtin-modules": "^3.1.0", + "is-module": "^1.0.0", + "resolve": "^1.11.1", + "rollup-pluginutils": "^2.8.1" + } + }, + "rollup-plugin-typescript2": { + "version": "0.24.3", + "resolved": "https://registry.npmjs.org/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.24.3.tgz", + "integrity": "sha512-D7yovQlhnRoz7pG/RF0ni+koxgzEShwfAGuOq6OVqKzcATHOvmUt2ePeYVdc9N0adcW1PcTzklUEM0oNWE/POw==", + "dev": true, + "requires": { + "find-cache-dir": "^3.0.0", + "fs-extra": "8.1.0", + "resolve": "1.12.0", + "rollup-pluginutils": "2.8.1", + "tslib": "1.10.0" + }, + "dependencies": { + "rollup-pluginutils": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz", + "integrity": "sha512-J5oAoysWar6GuZo0s+3bZ6sVZAC0pfqKz68De7ZgDi5z63jOVZn1uJL/+z1jeKHNbGII8kAyHF5q8LnxSX5lQg==", + "dev": true, + "requires": { + "estree-walker": "^0.6.1" + } + } + } + }, + "rollup-pluginutils": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", + "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", + "dev": true, + "requires": { + "estree-walker": "^0.6.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "semver": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-2.3.2.tgz", + "integrity": "sha1-uYSPJdbPNjMwc+ye+IVtQvEjPlI=", + "dev": true + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "sourcemap-codec": { + "version": "1.4.6", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.6.tgz", + "integrity": "sha512-1ZooVLYFxC448piVLBbtOxFcXwnymH9oUF8nRd3CuYDVvkRBxRl6pB4Mtas5a4drtL+E8LDgFkQNcgIw6tc8Hg==", + "dev": true + }, + "string-range": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/string-range/-/string-range-1.2.2.tgz", + "integrity": "sha1-qJPtNH5yKZvIO++78qaSqNI51d0=", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "tslib": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", + "dev": true + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, + "typedarray-to-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-1.0.4.tgz", + "integrity": "sha1-m7i6DoQfs/TPH+fCRenz+opf6Zw=", + "dev": true + }, + "typescript": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.6.3.tgz", + "integrity": "sha512-N7bceJL1CtRQ2RiG0AQME13ksR7DiuQh/QehubYcghzv20tnh+MQnQIuJddTmsbqYj+dztchykemz0zFzlvdQw==", + "dev": true + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "xtend": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.2.0.tgz", + "integrity": "sha1-7vax8ZjByN6vrYsXZaBNrUoBxak=", + "dev": true + } + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..583e8ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +tsconfig.tsbuildinfo +*.swp +node_modules +nohup.out +.rpt2_cache diff --git a/imgui_impl.js b/imgui_impl.js new file mode 100644 index 0000000..0f4a8ec --- /dev/null +++ b/imgui_impl.js @@ -0,0 +1,41080 @@ +'use strict'; + +Object.defineProperty(exports, '__esModule', { value: true }); + +var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +function commonjsRequire () { + throw new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs'); +} + +function unwrapExports (x) { + return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x; +} + +function createCommonjsModule(fn, module) { + return module = { exports: {} }, fn(module, module.exports), module.exports; +} + +var require$$0 = {}; + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +// resolves . and .. elements in a path array with directory names there +// must be no slashes, empty elements, or device names (c:\) in the array +// (so also no leading and trailing slashes - it does not distinguish +// relative and absolute paths) +function normalizeArray(parts, allowAboveRoot) { + // if the path tries to go above the root, `up` ends up > 0 + 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 the path is allowed to go above the root, restore leading ..s + if (allowAboveRoot) { + for (; up--; up) { + parts.unshift('..'); + } + } + + return parts; +} + +// Split a filename into [root, dir, basename, ext], unix version +// 'root' is just a slash, or nothing. +var splitPathRe = + /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; +var splitPath = function(filename) { + return splitPathRe.exec(filename).slice(1); +}; + +// path.resolve([from ...], to) +// posix version +function resolve() { + var resolvedPath = '', + resolvedAbsolute = false; + + for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { + var path = (i >= 0) ? arguments[i] : '/'; + + // Skip empty and invalid entries + if (typeof path !== 'string') { + throw new TypeError('Arguments to path.resolve must be strings'); + } else if (!path) { + continue; + } + + resolvedPath = path + '/' + resolvedPath; + resolvedAbsolute = path.charAt(0) === '/'; + } + + // At this point the path should be resolved to a full absolute path, but + // handle relative paths to be safe (might happen when process.cwd() fails) + + // Normalize the path + resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) { + return !!p; + }), !resolvedAbsolute).join('/'); + + return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; +} +// path.normalize(path) +// posix version +function normalize(path) { + var isPathAbsolute = isAbsolute(path), + trailingSlash = substr(path, -1) === '/'; + + // Normalize the path + path = normalizeArray(filter(path.split('/'), function(p) { + return !!p; + }), !isPathAbsolute).join('/'); + + if (!path && !isPathAbsolute) { + path = '.'; + } + if (path && trailingSlash) { + path += '/'; + } + + return (isPathAbsolute ? '/' : '') + path; +} +// posix version +function isAbsolute(path) { + return path.charAt(0) === '/'; +} + +// posix version +function join() { + var paths = Array.prototype.slice.call(arguments, 0); + return normalize(filter(paths, function(p, index) { + if (typeof p !== 'string') { + throw new TypeError('Arguments to path.join must be strings'); + } + return p; + }).join('/')); +} + + +// path.relative(from, to) +// posix version +function relative(from, to) { + from = resolve(from).substr(1); + to = 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('/'); +} + +var sep = '/'; +var delimiter = ':'; + +function dirname(path) { + var result = splitPath(path), + root = result[0], + dir = result[1]; + + if (!root && !dir) { + // No dirname whatsoever + return '.'; + } + + if (dir) { + // It has a dirname, strip trailing slash + dir = dir.substr(0, dir.length - 1); + } + + return root + dir; +} + +function basename(path, ext) { + var f = splitPath(path)[2]; + // TODO: make this comparison case-insensitive on windows? + if (ext && f.substr(-1 * ext.length) === ext) { + f = f.substr(0, f.length - ext.length); + } + return f; +} + + +function extname(path) { + return splitPath(path)[3]; +} +var require$$1 = { + extname: extname, + basename: basename, + dirname: dirname, + sep: sep, + delimiter: delimiter, + relative: relative, + join: join, + isAbsolute: isAbsolute, + normalize: normalize, + resolve: resolve +}; +function filter (xs, f) { + if (xs.filter) return xs.filter(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + if (f(xs[i], i, xs)) res.push(xs[i]); + } + return res; +} + +// String.prototype.substr - negative index don't work in IE8 +var substr = 'ab'.substr(-1) === 'b' ? + function (str, start, len) { return str.substr(start, len) } : + function (str, start, len) { + if (start < 0) start = str.length + start; + return str.substr(start, len); + } +; + +var bindImgui = createCommonjsModule(function (module, exports) { +var Module = (function() { + var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; + return ( +function(Module) { + Module = Module || {}; + +var Module=typeof Module!=="undefined"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key];}}Module["arguments"]=[];Module["thisProgram"]="./this.program";Module["quit"]=function(status,toThrow){throw toThrow};Module["preRun"]=[];Module["postRun"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window==="object";ENVIRONMENT_IS_WORKER=typeof importScripts==="function";ENVIRONMENT_HAS_NODE=typeof process==="object"&&typeof commonjsRequire==="function";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}else{return scriptDirectory+path}}if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+"/";var nodeFS;var nodePath;Module["read"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require$$0;if(!nodePath)nodePath=require$$1;filename=nodePath["normalize"](filename);ret=nodeFS["readFileSync"](filename);}return binary?ret:ret.toString()};Module["readBinary"]=function readBinary(filename){var ret=Module["read"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret);}assert(ret.buffer);return ret};if(process["argv"].length>1){Module["thisProgram"]=process["argv"][1].replace(/\\/g,"/");}Module["arguments"]=process["argv"].slice(2);process["on"]("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process["on"]("unhandledRejection",abort);Module["quit"]=function(status){process["exit"](status);};Module["inspect"]=function(){return "[Emscripten Module object]"};}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){Module["read"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)};}Module["readBinary"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer==="function"){return new Uint8Array(readbuffer(f))}data=read(f,"binary");assert(typeof data==="object");return data};if(typeof scriptArgs!="undefined"){Module["arguments"]=scriptArgs;}else if(typeof arguments!="undefined"){Module["arguments"]=arguments;}if(typeof quit==="function"){Module["quit"]=function(status){quit(status);};}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href;}else if(document.currentScript){scriptDirectory=document.currentScript.src;}if(_scriptDir){scriptDirectory=_scriptDir;}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf("/")+1);}else{scriptDirectory="";}Module["read"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module["readBinary"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}};}Module["readAsync"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror();};xhr.onerror=onerror;xhr.send(null);};Module["setWindowTitle"]=function(title){document.title=title;};}var out=Module["print"]||(typeof console!=="undefined"?console.log.bind(console):typeof print!=="undefined"?print:null);var err=Module["printErr"]||(typeof printErr!=="undefined"?printErr:typeof console!=="undefined"&&console.warn.bind(console)||out);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key];}}moduleOverrides=undefined;var asm2wasmImports={"f64-rem":function(x,y){return x%y},"debugger":function(){debugger}};var functionPointers=new Array(0);var setTempRet0=function(value){};if(typeof WebAssembly!=="object"){err("no native wasm support detected");}var wasmMemory;var wasmTable;var ABORT=false;function assert(condition,text){if(!condition){abort("Assertion failed: "+text);}}var UTF8Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf8"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str="";while(idx>10,56320|ch&1023);}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023;}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u;}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63;}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4;}return len}var UTF16Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf-16le"):undefined;var WASM_PAGE_SIZE=65536;var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferViews(){Module["HEAP8"]=HEAP8=new Int8Array(buffer);Module["HEAP16"]=HEAP16=new Int16Array(buffer);Module["HEAP32"]=HEAP32=new Int32Array(buffer);Module["HEAPU8"]=HEAPU8=new Uint8Array(buffer);Module["HEAPU16"]=HEAPU16=new Uint16Array(buffer);Module["HEAPU32"]=HEAPU32=new Uint32Array(buffer);Module["HEAPF32"]=HEAPF32=new Float32Array(buffer);Module["HEAPF64"]=HEAPF64=new Float64Array(buffer);}var DYNAMIC_BASE=5315584,DYNAMICTOP_PTR=72672;var TOTAL_STACK=5242880;var INITIAL_TOTAL_MEMORY=Module["TOTAL_MEMORY"]||16777216;if(INITIAL_TOTAL_MEMORY>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback();continue}var func=callback.func;if(typeof func==="number"){if(callback.arg===undefined){Module["dynCall_v"](func);}else{Module["dynCall_vi"](func,callback.arg);}}else{func(callback.arg===undefined?null:callback.arg);}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;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 ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__);}function preMain(){callRuntimeCallbacks(__ATMAIN__);}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 addOnPostRun(cb){__ATPOSTRUN__.unshift(cb);}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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();}}}Module["preloadedImages"]={};Module["preloadedAudios"]={};var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile="data:application/octet-stream;base64,AGFzbQEAAAAB2AyxAWACf38Bf2ACf38AYAJ8fAF8YAF/AX9gAX8AYAN/f38Bf2AEf39/fwBgA39/fwBgAn9/AX1gBH9/f38Bf2AEf399fwBgAn99AX9gA399fQF/YAZ9fX1/f38AYAR/fX9/AGAFf39/fX8AYAABfGADf31/AGAFf39/f38Bf2AIf39/f39/f38Bf2AHf39/f39/fwF/YAZ/f39/f38Bf2AGf398fH9/AX9gCX9/f39/f39/fwF/YAN9f38AYAl/f39/f39/f38AYAZ/f39/f38AYAJ/fQBgAX8BfWAAAX9gAn19AGABfQBgAAF9YAAAYAN/f30Bf2AGf39/fX9/AGAIf399fX1/f38AYAR/fX99AX9gBn9/fX9/fwBgBX9/f399AGAHf39/f31/fQBgBn9/f399fwBgB39/f39/f38AYAd/f39/f399AGAGf39/f399AGAFf39/f38AYAZ/f31/f30AYAV/f31/fwBgCH9/fX9/f31/AGALf39/f39/f39/f38AYAl/f39/f39/fX8AYAh/f39/f399fwBgBH9/f30AYAZ/f319fX8AYAp/f39/f39/f39/AGADf399AGAGf3x/f39/AX9gA39+fwF+YAF/AXxgA39/fwF9YAR/f319AX9gCH9/fX19f39/AX9gBH9/fX8Bf2AFf399f30Bf2AHf39/fHx/fwF/YAR/f399AX9gBX9/f31/AX9gBn9/f31/fwF/YAp/f39/f39/f39/AX9gA399fQBgB399fX1/f38AYAd/f399fX1/AGAHf39/fX9/fQBgB39/f31/f38AYAl/f399f39/fX8AYAd/f39/f31/AGAIf39/f399f30AYAh/f39/f39/fQBgCH9/f39/f39/AGAKf39/f39/f399fwBgDH9/f39/f39/f39/fwBgDX9/f39/f39/f39/f38AYAN/f3wAYAN/f38BfGABfQF9YAJ9fQF9YAV/fX19fQBgBH9/fX0AYAJ/fQF9YAR9fX19AX9gBX9/f319AGADfX19AX1gAn19AX9gBH19fX0BfWALf319fX19fX19fX8AYAl/f31/f39/fX8AYAp/f31/f39/f31/AGAFf31/f30Bf2AIf399fX9/f38AYAt/f319fX19fX19fQBgCH9/f39/fX1/AGAHf39/fX1/fwBgBX9/fX9/AX9gCH9/f399fX9/AGAHf39/fX19fQBgCn9/fX19fX19fX8AYAx/f319fX19fX19fX8AYAd/fX19fX19AGAEf31/fwF/YAh/f399f39/fQF/YAV/fX9/fwF/YAV/fX5+fwF/YAZ/fX19f30Bf2AGf318fH99AX9gAn98AXxgAn9+AX5gCX9/f399f39/fQF/YAd/f319fX99AX9gCX9/f319fX9/fQF/YAZ/f31/f38Bf2AIf39/fX9/f38Bf2AKf39/f39/f31/fwF/YAl/f39/f399f38Bf2AJf39/fn5/fX9/AX9gCX9/f319f31/fwF/YAl/f398fH99f38Bf2AFfHx8fX0BfWADfHx9AXxgA3x8fAF8YAV9fX19fQF9YAN+fn4BfWADfn5+AX5gBX5+fn19AX1gBX9/f319AX1gB39/f39/f30Bf2AIf39/f39/f30Bf2AGf399fX99AX9gB39/f319f30Bf2AGf399fX9/AX9gB39/f31/fX8AYAl/f39/f399fX8AYAd/f39/fX1/AGAEf319fQF9YAZ/f39/f30Bf2AHf399f39/fQF/YAJ/fgBgAn9/AX5gA35/fwF/YAJ+fwF/YAJ8fwF8YAV/f39/fwF8YAZ/f39/f38BfGACfX8BfWABfAF9YAJ9fwF/YAN/f34AYAF/AX5gAn9/AXxgBH9/f38BfWAHf398f39/fwF/YAV/f399fQF/YAl/f399fX1/f38Bf2AGf39/fX99AX9gCH9/f398fH9/AX9gBX9/f399AX9gBn9/f399fwF/YAd/f39/fX9/AX9gC39/f39/f39/f39/AX9gCX9/f319fX9/fwBgCH9/f399fX1/AGAHf39/f31/fwBgCH9/f399f399AGAIf39/f31/f38AYAp/f39/fX9/f31/AGAJf39/f39/fX99AGAJf39/f39/f399AGALf39/f39/f39/fX8AAvQDNwNlbnYBYgA2A2VudgFjAE4DZW52AWQAGgNlbnYBZQAEA2VudgFmAAADZW52AWcAUQNlbnYBaABTA2VudgFpAAcDZW52AWoAAANlbnYBawAtA2VudgFsACEDZW52AW0ABwNlbnYBbgAAA2VudgFvAAYDZW52AXAAAANlbnYBcQAaA2VudgFyAAQDZW52AXMABANlbnYBdAAEA2VudgF1AAAI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/AYLC0H89gEoAgAhASAAQZypBCgCACABQf8BcUHyBmoRAQALWgEDfyMEIQIjBEEQaiQEIAJBmKkEKAIAIgNBsCtqIABBBHRqIgApAgA3AgAgAiAAKQIINwIIIAIgAioCDCADQZAqaioCACABlJQ4AgwgAhChAyEEIAIkBCAECxYAIAAgASkCADcCACAAIAIpAgA3AggLBgBBNBADCwwAIAAgASAAIAFdGwvGAwEDfyACQYDAAE4EQCAAIAEgAhAjGiAADwsgACEEIAAgAmohAyAAQQNxIAFBA3FGBEADQCAAQQNxBEAgAkUEQCAEDwsgACABLAAAOgAAIABBAWohACABQQFqIQEgAkEBayECDAELCyADQXxxIgJBQGohBQNAIAAgBUwEQCAAIAEoAgA2AgAgACABKAIENgIEIAAgASgCCDYCCCAAIAEoAgw2AgwgACABKAIQNgIQIAAgASgCFDYCFCAAIAEoAhg2AhggACABKAIcNgIcIAAgASgCIDYCICAAIAEoAiQ2AiQgACABKAIoNgIoIAAgASgCLDYCLCAAIAEoAjA2AjAgACABKAI0NgI0IAAgASgCODYCOCAAIAEoAjw2AjwgAEFAayEAIAFBQGshAQwBCwsDQCAAIAJIBEAgACABKAIANgIAIABBBGohACABQQRqIQEMAQsLBSADQQRrIQIDQCAAIAJIBEAgACABLAAAOgAAIAAgASwAAToAASAAIAEsAAI6AAIgACABLAADOgADIABBBGohACABQQRqIQEMAQsLCwNAIAAgA0gEQCAAIAEsAAA6AAAgAEEBaiEAIAFBAWohAQwBCwsgBAsSACAAQbT4ATYCACAAQQRqED4LKgAgACgCEBBbBEBBACEABSAAQQRqIgAsAAtBAEgEQCAAKAIAIQALCyAACxIAIAAgARDpECAAQcD4ATYCAAsQACAALQABIAAtAABBCHRyCyoBAX8jBCEBIwRBEGokBCABIAA2AgBBBBA/IgAgASgCADYCACABJAQgAAslAQF/IAEoAgAhAiAAQgA3AgAgAEEANgIIIAAgAUEEaiACEJMBCwgAQQwQA0EACwcAIABBBGoLJwEBfyAAKAIIIgEEQCAAQQA2AgQgAEEANgIAIAEQQSAAQQA2AggLCw0AIAAoAgggAUECdGoLFgAgACABKgIAIAKUIAEqAgQgApQQMgsp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QCADIAMoApACQQFyNgKQAgtBAQsLBgAgAKiyCw0AIABB1ABqIAEQmgILFAAgASACIAAgACACXhsgACABXRsLEQBBACAAQQRqIAAoAggQWxsLIQAgAEP//39/Q///f38QMiAAQQhqQ///f/9D//9//xAyCxAAIAAoAggiAARAIAAQQQsLFwAgAEEANgIEIABBADYCACAAQQA2AggLIQEBfyMEIQIjBEEQaiQEIAIgATYCACAAIAIQ2gIgAiQEC5gCAQR/IAAgAmohBCABQf8BcSEDIAJBwwBOBEADQCAAQQNxBEAgACADOgAAIABBAWohAAwBCwsgA0EIdCADciADQRB0ciADQRh0ciEBIARBfHEiBUFAaiEGA0AgACAGTARAIAAgATYCACAAIAE2AgQgACABNgIIIAAgATYCDCAAIAE2AhAgACABNgIUIAAgATYCGCAAIAE2AhwgACABNgIgIAAgATYCJCAAIAE2AiggACABNgIsIAAgATYCMCAAIAE2AjQgACABNgI4IAAgATYCPCAAQUBrIQAMAQsLA0AgACAFSARAIAAgATYCACAAQQRqIQAMAQsLCwNAIAAgBEgEQCAAIAM6AAAgAEEBaiEADAELCyAEIAJrC58BAQN/EDwiAiwAf0UEQEGYqQQoAgAhBCABQwAAAABdIQMgAEMAAAAAXARAIAIqArQDQwAAAAAgASADGyACKgIMIAIqAliTIACSkpIhACACKgK4AyEBBSADBEAgBEHUKmoqAgAhAQsgAioC0AEhAAsgAiABIACSOALIASACIAIoAtQBNgLMASACIAIpAvQBNwLoASACIAIoAvwBNgLwAQsLqwECA38BfSMEIQUjBEEQaiQEQZipBCgCACEGIAMEQCABIAIQkAEhAgsgBSEDIAZBsDFqKAIAIQcgBkG0MWoqAgAhCCABIAJGBEAgAEMAAAAAIAgQMgUgAyAHIAhD//9/fyAEIAEgAkEAEJoDIAMqAgAiBEMAAAAAXgRAIAMgBCAIIAcqAgCVkyIEOAIACyADIARDMzNzP5KosjgCACAAIAMpAwA3AgALIAUkBAsnAEGYqQQoAgBBNGogAEECdGooAgAiAEF/SgR/IAAgARD2AgVBAAsLNQECfyMEIQMjBEEQaiQEAn8gACgCACEEIAMgARB3IAQLIAMoAgAgAigCABALIAMQMSADJAQL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KAIIRgRAIAEQ4QELIAEgACABKAIAEPIFIgI2AgAgASACNgIIIAAgARCCAQwFCyABEOEBIAFBADYCCCABQQA2AgAgAUEAOgAPDAQLIAEQ4QEgASAAKAIsIgI2AgggASACNgIAIAFBADoADwwDCyAAKAIsIQQgACABEIIBIAEQ4QEgASwAEARAIAEgBDYCACAEIQIFIAEoAgAiAiAESARAA0ACQAJ/IAAgAhDiAUH//wNxQQpGIQwgASgCACECIAwLDQAgASACQQFqIgI2AgAgAiAESA0BCwsLCyABIAI2AgggAUEAOgAPDAILQQMhAwwBCyAFQYCADEgEQCAFQY2ABGsEQEEDIQMMAgsgASgCBCABKAIIRgRAIAEgACABKAIAEPIFNgIAIAAgARCCAQUgACABELgECwwBCwJAAkACQCAFQYCADGsOAgIAAQsgARDhASABIAEoAghBAWo2AgggACABEIIBIAEgASgCCDYCACABQQA6AA8MAgtBAyEDDAELIAAgARCCASABEOEBIAEoAggiAkEASgRAIAEgAkF/aiICNgIICyABIAI2AgAgAUEAOgAPCyADQQNGBEBBACAFIAVB//8DShsiAkEASgRAAkAgBiACOwEAIAJBCkYEQCABLAAQDQELAkACQCABLAAMRQ0AIAEoAgQgASgCCEcNACABKAIAIgIgACgCLE4NACAAIQUgAUEYaiACQQFBARC5BCIEBEAgBCAFIAIQ4gE7AQALIAAgASgCAEEBENkDIAAgASgCACAGQQEQkgMEQCABIAEoAgBBAWo2AgAgAUEAOgAPCwwBCyAAIAEQkwMgACABKAIAIAZBARCSAwRAIAEgASgCAEEBEPcFIAEgASgCAEEBajYCACABQQA6AA8LCwsLBSADQckARgRAIAEoAgQgASgCCEYEQCABKAIAIgIgACgCLEgEQCAAIAEgAkEBENoDCwUgACABEJMDCyABQQA6AA8FIANBzgBGBEAgASgCBCABKAIIRgRAIAAgARCCASABKAIAIgJBAEoEQCAAIAEgAkF/akEBENoDIAEgASgCAEF/ajYCAAsFIAAgARCTAwsgAUEAOgAPCwsLIAkkBAtIAQF/IAFBGGogAiADQQAQuQQiBEEARyADQQBKcQRAQQAhAQNAIAFBAXQgBGogACABIAJqEOIBOwEAIAFBAWoiASADRw0A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CyQAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAAQQNxQZwLahExAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBA3FBmAtqETYACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBlAtqERkACyIAIAEgAiADIAQgBSAGIAcgCCAJIAogAEEBcUGSC2oRTwALHgAgASACIAMgBCAFIAYgByAIIABBA3FBjgtqEU4ACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBigtqETIACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQYgLahFNAAscACABIAIgAyAEIAUgBiAHIABBB3FBgAtqESoACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQf4KahEzAAscACABIAIgAyAEIAUgBiAHIABBA3FB+gpqESsACxoAIAEgAiADIAQgBSAGIABBD3FB6gpqERoACw0AIABB+ClqQQAQwAELHgAgASACIAMgBCAFIAYgByAIIABBAXFB6ApqEUwACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHmCmoRSwALGgAgASACIAMgBCAFIAYgAEEDcUHiCmoRLAALGAAgASACIAMgBCAFIABBD3FB0gpqES0ACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHQCmoRKAALGgAgASACIAMgBCAFIAYgAEEDcUHMCmoRKQALGAAgASACIAMgBCAFIABBA3FByApqEScACxYAIAEgAiADIAQgAEEfcUGoCmoRBgALIAAgASACIAMgBCAFIAYgByAIIAkgAEEBcUGmCmoRSgALHAAgASACIAMgBCAFIAYgByAAQQFxQaQKahFJAAscACABIAIgAyAEIAUgBiAHIABBAXFBogpqEUgACxoAIAEgAiADIAQgBSAGIABBA3FBngpqESMACxgAIAEgAiADIAQgBSAAQQNxQZoKahEPAAscACABIAIgAyAEIAUgBiAHIABBAXFBmApqEUcACxYAIAEgAiADIAQgAEEDcUGUCmoRNAALFQAgASACIAMgAEH/AHFBlAlqEQcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQZIJahEwAAsaACABIAIgAyAEIAUgBiAAQQFxQZAJahEmAAsaACABIAIgAyAEIAUgBiAAQQFxQY4JahEuAAsYACABIAIgAyAEIAUgAEEDcUGKCWoRLwALFgAgASACIAMgBCAAQQNxQYYJahEKAAseACABIAIgAyAEIAUgBiAHIAggAEEBcUGECWoRJAALGgAgASACIAMgBCAFIAYgAEEBcUGCCWoRNQALFAAgASACIAMgAEEPcUHyCGoRNwALFgAgASACIAMgBCAAQQNxQe4GahEOAAsUACABIAIgAyAAQQFxQewGahERAAscACABIAIgAyAEIAUgBiAHIABBAXFB6gZqEUYACxQAIAEgAiADIABBAXFB6AZqEUUACxQAIAEgAiADIABBAXFB3gRqERgACxoAIAEgAiADIAQgBSAGIABBA3FB2gRqEQ0ACxUAQZipBCgCAEE0aiAAQQJ0aigCAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBAXFBggRqEUQACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBB3FB+gNqERcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQ9xQeoDahETAAscACABIAIgAyAEIAUgBiAHIABBD3FB2gNqERQACxoAIAEgAiADIAQgBSAGIABBH3FBugNqERUACxgAIAEgAiADIAQgBSAAQQ9xQaoDahESAAsWACABIAIgAyAEIABBH3FBigNqEQkACxoAIAEgAiADIAQgBSAGIABBAXFBiANqEUMACxgAIAEgAiADIAQgBSAAQQFxQYYDahFCAAsWACABIAIgAyAEIABBAXFBhANqEUEACxwAIAEgAiADIAQgBSAGIAcgAEEBcUGCA2oRQAALGAAgASACIAMgBCAFIABBAXFBwAJqET8ACxYAIAEgAiADIAQgAEEBcUG+AmoRPgALHgAgASACIAMgBCAFIAYgByAIIABBAXFBvAJqET0ACxYAIAEgAiADIAQgAEEBcUG6AmoRPAALFAAgASACIAMgAEEDcUG2AmoRIgALGgAgASACIAMgBCAFIAYgAEEBcUG0AmoRFgALFgAgASACIAMgBCAAQQFxQbIBahElAAsUACABIAIgAyAAQQFxQbABahEMAAsaACABIAIgAyAEIAUgBiAAQQFxQawBahE4AAsUACABIAIgAyAAQQNxQcgAahE7AAsRACABIAIgAEEfcUEoahEIAAsPACABIABBA3FBJGoRHAALDQAgAEEfcUEEahEgAAsPACABIABBAXFBAmoROgALCgAgAEEBcREQAAvS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AiADIAQgBUEPcUHSCmoRLQAMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIAFBADoANCABQQA6ADUgACgCCCIAKAIAKAIUIQMgACABIAIgAkEBIAQgA0EPcUHqCmoRGgAgAQJ/AkAgASwANQR/IAEsADQNAUEBBUEACyEAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAA0CQQQMAwsLIAANAEEEDAELQQMLNgIsDAILCyADQQFGBEAgAUEBNgIgCwsLC0QBAX8gACABKAIIEIUBBEAgASACIAMgBBCFBQUgACgCCCIAKAIAKAIUIQYgACABIAIgAyAEIAUgBkEPcUHqCmoRGgALCxgAIAAgASgCCBCFAQRAIAEgAiADEIcFCwuPAQAgACABKAIIEIUBBEAgASACIAMQhgUFIAAgASgCABCFAQRAAkAgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASACNgIUIAEgASgCKEEBajYCKCABKAIkQQFGBEAgASgCGEECRgRAIAFBAToANgsLIAFBBDYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwsLGgAgACABKAIIEIUBBEAgASACIAMgBBCFBQsLyQEBA38jBCEEIwRBQGskBCAEIQMgACABEIUBBH9BAQUgAQR/IAFB4PQBEJQEIgEEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyABNgIAIAMgADYCCCADQX82AgwgA0EBNgIwIAEoAgAoAhwhACABIAMgAigCAEEBIABBH3FBqApqEQYAIAMoAhhBAUYEfyACIAMoAhA2AgBBAQVBAAsFQQALBUEACwshBSAEJAQgBQt4AQN/IwQhASMEQRBqJAQgASEAAn9BAEGMrgQoAgBB37femgFGDQAaQbMEESEAQYyuBEHft96aATYCAEEACwRAQZSKAyAAEMICBQJ/An9BAEGQrgQoAgAiACgCBEHOlZoSRw0AGiAAKAIACyECIAEkBCACCw8LQQALowICB38BfiMEIQIjBEEwaiQEIAJBGGohASACQRBqIQMgAiEEIAJBJGohBRDLCyIABEAgACgCACIABEAgACkDMCIHQoB+g0KA1qyZ9MiT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AgAhBCAAEIoCIAAoAiAQtgcgBAsQigILCyAAQdQyaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAwRAIAMQjRIgAxBBCyABQQFqIgEgAigCAEgNAAsLIAIQTyAAQeAyahBPIABB7DJqEE8gAEGUM2pBADYCACAAQfgyahBPIABBhDNqEE8gAEGgNWpBADYCACAAQZgzakEANgIAIABBnDNqQQA2AgAgAEHcM2pBADYCACAAQdgzakEANgIAIABB9DNqQQA2AgAgAEH4M2oQTyAAQYQ0ahBPIABBkDRqEE8gAEGcNGoQTyAAQag0ahBPIABBwDdqIQJBACEBA0AgAUEMbCACahBPIAFBAWoiAUECRw0ACyAAQdw3ahDdBCAAQYTYAGoQTyAAQZA6ahBPIABBnDpqEE8gAEGoOmoQTyAAQcDYAGoiAigCAEEASgRAQQAhAQNAIAIgARBVKAIAEPYHIAFBAWoiASACKAIASA0ACwsgAhBPIABBtNgAahBPIABB0NgAaiICKAIAIgFBzIECKAIARiABRXJFBEAgARDDAhogAkEANgIACyAAQdTYAGoQTyAAQQA6AAALCwsAIAAQngUgABBUC00BAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACQYz8ATYCACACIAE2AgggAhCvBSAAIAJBBGoQ5AMhAyACEJ4FIAIkBCADCwsAIAAQnwUgABBUC08BAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADQfT7ATYCACADIAE2AgggAxDGByAAIANBBGogAhCABiEEIAMQnwUgAyQEIAQLMwAgAEGYqQQoAgAgABsiABCxD0GYqQQoAgAgAEYEQEEAEIoCCyAABEAgABDkCSAAEEELC1QBAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQygEgACACIAMQTiIAKAIARhC5AiIBBEAgACACNgIACyABIQQgAxC0ASADJAQgBAtWAgJ/An0jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQcSABQQhqIgIgAEE8aiAAQUBrIAEQywcgAhA9IQQgAhAxIAEQMSABJAQgBAsHACABELgPC4kBAgJ/An0jBCEJIwRBMGokBEGwqQQoAgAiCkE8aiABEIgBIApBQGsg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QYAHaiIKEDogAEGwB2ohAyAAQYgHaiEBA0AgARA6IAFBCGoiASADRw0ACyAAQbwIaiEDIABBlAhqIQEDQCABEDogAUEIaiIBIANHDQALIABB+ClqEGggAEEAQYgqEGoaIAJDAACAv0MAAIC/EDIgBSACKQMANwIAIABDiYiIPDgCECAAQwAAoEA4AhQgAEHmhQI2AhggAEHwhQI2AhwgAEOamZk+OAIgIABDAADAQDgCJCAAQSxqIgFCfzcCACABQn83AgggAUJ/NwIQIAFCfzcCGCABQn83AiAgAUJ/NwIoIAFCfzcCMCABQn83AjggAUFAa0J/NwIAIAFCfzcCSCABQX82AlAgAEMAAIA+OAKAASAAQ83MTD04AoQBIABBADYCiAEgAEEANgKMASAAQwAAgD84ApABIABBADYCmAEgAEEAOgCUASACQwAAgD9DAACAPxAyIAYgAikDADcCACACQwAAAABDAAAAABAyIAggAikDACILNwIAIAcgCzcCACAAQQA6ALUBIABBAToAtgEgAEEBOgC3ASAAQQA6ALgBIABCADcCvAEgAEIANwLEASAAQQA2AswBIABBAzYC0AEgAEECNgLUASAAQQA2AtgBIABBAzYC3AEgAEEANgLgASACQ///f/9D//9//xAyIAkgAikDADcCACACQ///f/9D//9//xAyIAogAikDADcCACAAQwAAwEA4AihBACEBA0AgAEGACGogAUECdGpDAACAvzgCACAAQewHaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEFRw0AC0EAIQEDQCAAQdAYaiABQQJ0akMAAIC/OAIAIABB0AhqIAFBAnRqQwAAgL84AgAgAUEBaiIBQYAERw0AC0EAIQEDQCAAQdAoaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEVRw0ACyAEJAQLNAECfyMEIQQjBEEQaiQEIARBCGoiBSABIAIQwgogBCADEG8gACAFIAQQgQEgBBAxIAQkBAtCAQJ/IwQhBCMEQRBqJAQgBCADEDQgBEEEaiIDIAEgAiAEIABBA3FBhglqEQoAIAMQfSEFIAMQMSAEEDEgBCQEIAULKwEBfxDVByIBQZquBCABGyEBIABCADcCACAAQQA2AgggACABIAEQXBCTAQsxAQF/IwQhASMEQRBqJAQgASAAEJ8BIAEoAgAgASABLAAL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C0EASAR/IAAoAgAFIAALIAEQqwgLGAAgACwAC0EASAR/IAAoAgAFIAALEJMKCwkAIAAgARDiEAsqAQJ/An8jBCEBIwRBEGokBEHEvgJBBEHAywFBicsCQRJBFxACIAELJAQLCwAgACABIAIQ4BALCQAgACABEN8QCwsAIAAgASACEN4QCxgAIAAsAAtBAEgEfyAAKAIABSAACxCpAwsJACAAIAEQ3BALGAAgACwAC0EASAR/IAAoAgAFIAALEKsDCyoBAn8CfyMEIQEjBEEQaiQEQem9AkEFQdDLAUG7zAJBDUELEAIgAQskBAsNACAAIAEgAiADENsQCyoBAn8CfyMEIQEjBEEQaiQEQd69AkEFQfDLAUG7zAJBDEEKEAIgAQskBAsNACAAIAEgAiADENoQCxoAIAAsAAtBAEgEfyAAKAIABSAACyABEK8ICwcAIAAQ2RALKgECfwJ/IwQhASMEQRBqJARB6bwCQQRBkMwBQd3NAkECQQEQAiABCyQECwsAIAAgASACENcQCyoBAn8CfyMEIQEjBEEQaiQEQeG8AkEDQez4AUHjzQJBEUEdEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHZvAJBA0H4+AFB480CQRBBHBACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB0bwCQQNBhPkBQePNAkEPQRsQAiABCyQECxoAIAAsAAtBAEgEfyAAKAIABSAACyABELUICyoBAn8CfyMEIQEjBEEQaiQEQbO8AkEEQaDMAUGJywJBEUEVEAIgAQskBAscACAALAALQQBIBH8gACgCAAUgAAsgASACEM8FCwkAIAAgARDVEAsRACAAIAEgAiADIAQgBRDUEAsqAQJ/An8jBCEBIwRBEGokBEGPvAJBBkGwzAFB6M0CQRFBBhACIAELJAQLDwAgACABIAIgAyAEEM0QCw0AIAAgASACIAMQyhALKgECfwJ/IwQhASMEQRBqJARB9bsCQQVB0MwBQbvMAkELQQgQAiABCyQECw0AIAAgASACIAMQyBALCwAgACABIAIQxxALNQEBfyAALAALQQBIBEAgACgCACEACxA8IgIsAH8Ef0EABSACIAAQXiABQRpyIABBABDTAgsLBwAgABC9CAsYACAALAALQQBIBH8gACgCAAUgAAsQvggLKgECfwJ/IwQhASMEQRBqJARB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AAtBAEgEfyAAKAIABSAACyABELkCCyoBAn8CfyMEIQEjBEEQaiQEQc61AkEEQfDSAUGJywJBDkEJEAIgAQskBAsLACAAIAEgAhC1DwsJACAAIAEQsw8LKgECfwJ/IwQhASMEQRBqJARBubUCQQhBgNMBQYfRAkEEQQEQAiABCyQECxMAIAAgASACIAMgBCAFIAYQrw8LKgECfwJ/IwQhASMEQRBqJARBs7UCQQdBoNMBQZ/TAkEBQQQQAiABCyQECxEAIAAgASACIAMgBCAFEK0PCwkAIAAgARCsDwsaACAALAALQQBIBH8gACgCAAUgAAsgARCDCQsYACAALAALQQBIBH8gACgCAAUgAAsQxAQLCQAgACABEKkPC6cEAgF/AX4jBCEBIwRBEGokBCAAEDogAEEIahA6IABBEGoQOiAAQRhqEDogAEEgahA6IABBLGoQOiAAQcwAahBmIABB3ABqEGYgAEGAAWoQOiAAQYgBahBoIABBADYCsAEgAEEANgKsASAAQQA2ArQBIABBuAFqEGggAEHEAWoQaCAAQQA2AtQBIABBADYC0AEgAEEANgLYASAAQegBahDnAiAAQewBahDnAiAAQfABahDnAiABQwAAAABDAAAAABAyIAAgASkDACICNwIYIAAgAjcCECAAIAI3AgggACACNwIAIAFDAAAAAEMAAAAAEDIgACABKQMAIgI3AiwgACACNwIgIABDAAAAADgCNCAAQwAAAAA4AiggAEMAAIC/OAI4IABCADcCPCAAQgA3AkQgARBmIAAgASkCADcCXCAAIAEpAgg3AmQgACABKQIANwJMIAAgASkCCDcCVCAAQQA2AnggAEEANgJ0IABBADYCbCAAQQE2AnAgAEEAOgB8IABBADoAfSAAQQA6AH4gAUMAAAAAQwAAAAAQMiAAIAEpAwA3AoABIABBADYClAEgAEEBNgKcASAAQQE2ApgBIABDAAAAADgCpAEgAEEANgKgASAAQwAAgL84AqgBIABCADcC3AEgAEEANgLkASABEOcCIAAgASgCADYC6AEgARDnAiAAIAEoAgA2AuwBIAEQ5wIgACABKAIANgLwASAAQQA2AvQBIAEkBAsaACAALAALQQBIBH8gACgCAAUgAAtBABC5AQsHACAAEKAPC9AHAgV/AX4jBCEFIwRBEGokBCAFIQMgAEEMahA6IABBFGoQOiAAQRxqEDogAEEkahA6IABBLGoQOiAAQTRqEDogAEE8ahA6IABB2ABqEDogAEHgAGoQOiAAQegAahA6IABB8ABqEDogAEG4AWoQOiAAQcABahA6IABByAFqEMoSIABBwANqIgYiBEEANgIEIARBADYCACAEQQA2AgggAEHMA2oQZiAAQdwDahBmIABB7ANqEGYgAEH8A2oQZiAAQYwEahBmIABBpARqEN4DIABB1ARqEGggAEEANgLkBCAAQQA2AuAEIABBADYC6AQgAEH4BGoiByABQbwxahD4ByAAQagGaiEEIABBiAZqIQEDQCABEGYgAUEQaiIBIARHDQALIAAgAhDaBjYCACAAQQRqIgEgAkEAQQAQuwE2AgAgBiABEHggAEEANgIIIANDAAAAAEMAAAAAEDIgACADKQMANwIMIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AhwgACAINwIUIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AjQgACAINwIsIANDAAAAAEMAAAAAEDIgACADKQMANwI8IABDAAAAADgCRCAAQwAAAAA4AkggACACEFxBAWo2AkwgACAAQf6FAhBeNgJQIABBADYCVCADQwAAAABDAAAAABAyIAAgAykDADcCWCADQ///f39D//9/fxAyIAAgAykDADcCYCADQwAAAD9DAAAAPxAyIAAgAykDADcCaCADQwAAAABDAAAAABAyIAAgAykDADcCcCAAQQA7AYQBIABCADcCeCAAQQA7AYABIABBADoAggEgAEF/OwGGASAAQX87AYgBIABBADYCjAEgAEF/NgKUASAAQX82ApABIABBADoAmAEgAEEANgKcASAAQX82AqABIABBADYCqAEgAEEANgKkASAAQQ82ArQBIABBDzYCsAEgAEEPNgKsASADQ///f39D//9/fxAyIAAgAykDACIINwLAASAAIAg3ArgBIABBfzYCnAQgAEMAAAAAOAKgBCAAQwAAgD84AuwEIABBfzYC8AQgACAHNgL0BCAAIAAoAgA2AqQFIABBADYChAYgAEEANgKABiAAQgA3AuwFIABCADcC9AUgAxBmIAAgAykCADcCmAYgACADKQIINwKgBiAAIAMpAgA3AogGIAAgAykCCDcCkAYgAEEANgL8BSAAQX82AqwGIABBfzYCqAYgAEH/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ICAtICAgICAgICAgIFguWCAgICAgICAgICAtWC4uLi4uWCAgICAgICAgICAtICAgICAgICAgIFguLi4uLlgtICAgIFguLlggICAgICAgICAtLS0gICAgICAgICAtWFhYLlhYWC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtWC4uLi5YICAgICAgICAgICAtICAgICAgICAgICBYLi4uLlgtICAgIFguLlggICAgICAgICBYICAgICAgICAgICAtICBYLlggIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtWC4uLlggICAgICAgICAgICAtICAgICAgICAgICAgWC4uLlgtICAgIFguLlggICAgICAgICBYWCAgICAgICAgICAtICBYLlggIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtWC4uWC5YICAgICAgICAgICAtICAgICAgICAgICBYLlguLlgtICAgIFguLlggICAgICAgICBYLlggICAgICAgICAtICBYLlggIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtWC5YIFguWCAgICAgICAgICAtICAgICAgICAgIFguWCBYLlgtICAgIFguLlhYWCAgICAgICBYLi5YICAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWFggICBYLlggICAgICAgICAtICAgICAgICAgWC5YICAgWFgtICAgIFguLlguLlhYWCAgICBYLi4uWCAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgWC5YICAgICAgICAtICAgICAgICBYLlggICAgICAtICAgIFguLlguLlguLlhYICBYLi4uLlggICAgICAtICBYLlggIC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgIFguWCAgICAgICAtICAgICAgIFguWCAgICAgICAtICAgIFguLlguLlguLlguWCBYLi4uLi5YICAgICAtICBYLlggIC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICBYLlggICAgICAtICAgICAgWC5YICAgICAgICAtWFhYIFguLlguLlguLlguLlhYLi4uLi4uWCAgICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgWC5YICAgWFgtWFggICBYLlggICAgICAgICAtWC4uWFguLi4uLi4uLlguLlhYLi4uLi4uLlggICAtICBYLlggIC0gICBYLlggICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgIFguWCBYLlgtWC5YIFguWCAgICAgICAgICAtWC4uLlguLi4uLi4uLi4uLlhYLi4uLi4uLi5YICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgICBYLlguLlgtWC4uWC5YICAgICAgICAgICAtIFguLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uWCAtWFhYLlhYWC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICAgICAgWC4uLlgtWC4uLlggICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uLlgtWC4uLi4uWC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgICAgICBYLi4uLlgtWC4uLi5YICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uWFhYWFgtWFhYWFhYWC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgICAgIFguLi4uLlgtWC4uLi4uWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uLlhYLi4uWC4uWCAgICAtLS0tLS0tLS0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtWFhYWFhYWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uWCBYLi5YIFguLlggICAtICAgICAgIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tICAgIFguLi4uLi4uLi4uWCBYLlggIFguLlggICAtICAgICAgIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAtICAgIFguLi4uLi4uLi4uWCBYWCAgICBYLi5YICAtICAgICAgIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICBYLi5YICAgICAgICAgIC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICAgWFggICAgICAgICAgIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAtICAgICBYWFhYWFhYWFhYICAtLS0tLS0tLS0tLS0gICAgICAgIC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0gICAgICAgICAgICAgICAgICAgIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAQaAiC8xdN10pIyMjIyMjI2hWMHFzJy8jIyNbKSwjIy9sOiQjUTY+IyM1W240Mj5jLVRIYC0+PiMvZT4xMU5OVj1CdigqOi5GP3V1IyhnUlUubzBYR0hgJHZoTEcxaHh0OT9XYCMsNUxzQ3AjLWk+LnIkPCQ2cEQ+TGInOzlDcmM2dGdYbUtWZVUyY0Q0RW8zUi8yKj5dYihNQzskalBmWS47aF5gSVdNOTxMaDJUbFMrZi1zJG82UTxCV0hgWWlVLnhmTHEkTjskMGlSL0dYOlUoamNXMnAvVypxPy1xbW5VQ0k7akhTQWlGV00uUiprVUBDPUdIP2E5d3A4ZiRlLi00XlFnMSlRLUdMKGxmKHIvN0dyUmd3ViVNUz1DI2A4TkQ+UW8jdCdYIyh2I1k5dzAjMUQkQ0lmO1cnI3BXVVBYT3V4WHVVKEg5TSgxPHEtVUUzMSNeLVYnOElSVW83UWYuL0w+PUtlJCQnNUYlKV0wXiMwWEBVLmE8cjpRTHRGc0xjTDYjI2xPaikjLlk1PC1SJktnTHdxSmZMZ04mO1E/Z0leI0RZMnVMaUBeck1sOXQ9Y1dxNiMjd2VnPiRGQmpWUVRTRGdFS25JUzdFTTk+Wlk5dzAjTDs+PiNNeCY0TXZ0Ly9MW01rQSNXQGxLLk4nWzAjN1JMXyYjdytGJUh0RzlNI1hMYE4mLixHTTRQZzstPG5MRU5odng+LVZzTS5NMHJKZkxIMmVUTWAqb0pNSFJDYE5rZmltTTJKLFctalhTOilyMHdLI0BGZ2UkVT5gdydON0cjJCNmQiMkRV4kIzo5OmhrK2VPZS0tNngpRjcqRSU/NzYlXkdNSGVQVy1aNWwnJkdpRiMkOTU2OnJTP2RBI2ZpSzopWXIrYCYjMGpAJ0RiRyYjXiRQRy5MbCtETmE8WENNS0VWKk4pTE4vTipiPSVRNnBpYS1YZzhJJDxNUiYsVmRKZSQ8KDdHO0NrbCcmaEY7OyQ8Xz1YKGIuUlMlJSkjIyNNUEJ1dUUxVjp2JmNYJiMybSMoJmNWXWBrOU9oTE1ibiVzJEcyLEIkQmZEM1gqc3A1I2wsJFIjXXhfWDF4S1glYjVVKltyNWlNZlVvOVVgTjk5aEcpdG0rL1VzOXBHKVhQdWA8MHMtKVdUdChnQ1J4SWcoJTZzZmg9a3RNS24zaik8NjxiNVNrXy8wKF5dQWFOIyhwL0w+JlZaPjFpJWgxUzl1NW9AWWFhVyRlK2I8VFdGbi9aOk9oKEN4MiRsTkVvTl5lKSNDRllAQEk7Qk9RKnNSd1p0WnhSY1U3dVc2Q1hvdzBpKD8kUVtjak9kW1A0ZCldPlJPUE9weFRPN1N0d2kxOjppQjFxKUNfPWRWMjZKOzIsXTdvcCRddVFyQF9WNyRxXiVsUXd0dUhZXT1EWCxuM0wjMFBIRE80Zjk+ZENATz5IQnVLUHBQKkUsTitiM0wjbHBSL01yVEVILklBUWsuYT5EWy5lO21jLnhdSXAuUEheJy9hcVVPLyQxV3hMb1cwW2lMQTxRVDs1SEtEK0BxUSdOUSgzX1BMaEU0OFIucUFQU3dRMC9XSz9aLFt4Py1KO2pRVFdBMFhAS0ooX1k4Ti06L003NDovLVpwS3JVc3M/ZCNkWnFdREFia1UqSnFrTCtud1hAQDQ3YDU+dz00aCg5LmBHQ1JVeEhQZVJgNU1qb2woZFVXeFphKD5TVHJQa3JKaVd4YDVVN0YjLmcqanJvaEdnYGNnOmxTVHZFWS9FVl83SDRROVtaJWNudjtKUVlaNXEubDdaZWFzOkhPSVpPQj9HPE5hbGQkcXNdQF1MPEo3YlIqPmd2Ols3TUkyaykuJzIoJDVGTlAmRVEoLClVXVddK2ZoMTgudnNhaTAwKTtEM0A0a3U1UD9EUDhhSnQrO3FVTV09K2InOEA7bVZpQkt4MERFWy1hdUdsODpQSiZEaitNNk9DXU9eKCgjI11gMGkpZHJUOy03WGA9LUgzW2lnVW5QRy1OWmxvLiNrQGgjPU9yayRtPmE+JC0/VG0kVVYoPyNQNllZIycvIyMjeGU3cS43M3JJMypwUC8kMT5zOSlXLEpyTTdTTl0nLzRDI3YkVWAwI1YuWzA+eFFzSCRmRW1QTWdZMnU3S2goRyVzaUlmTFNvUytNSzJlVE0kPTUsTThwYEEuO19SJSN1W0sjJHg0QUc4LmtLL0hTQj09LSdJZS9RVHRHPy0uKl5OLTRCL1pNXzNZbFFDNyhwN3EpJl0oYDZfYykkLypKTChMLV4oXSR3SU1gZFB0T2RHQSxVMzp3Mk0tMDxxLV1MXz9eKTF2dycuLE1Sc3FWci5MO2FOJiMvRWdKKVBCY1stZj4rV29tWDJ1N2xxTTJpRXVtTVRjc0Y/LWFUPVotOTdVRW5YZ2xFbjFLLWJuRU9gZ3VGdChjJT07QW1fUXNAakxvb0kmTlg7XTAjajQjRjE0O2dsOC1HUXBnd2hycTgnPWxfZi1iNDknVU9xa0x1Ny0jI29EWTJMKHRlK01jaCZnTFl0SixNRXRKZkxoJ3gnTT0kQ1MtWlolUF04Ylo+I1M/WVkjJVEmcSczXkZ3Jj9EKVVETnJvY00zQTc2Ly9vTD8jaDdnbDg1W3FXL05ET2slMTZpajsrOjFhJ2lOSWRiLW91OC5QKncsdjUjRUkkVFdTPlBvdC1SKkgnLVNFcEE6ZylmK08kJSVga0EjRz04Uk1tRzEmT2A+dG84YkNdVCYkLG4uTG9PPjI5c3AzZHQtNTJVJVZNI3E3J0RIcGcrI1o5JUhbSzxMJWEyRS1ncldWTTNAMj0tazIydExdNCQjIzZXZSc4VUpDS0VbZF89JXdJOyc2WC1Hc0xYNGpeU2dKJCMjUip3LHZQM3dLI2lpVyYjKmheRCZSP2pwNysvdSYjKEFQIyNYVThjJGZTWVctSjk1Xy1EcFtnOXdjTyYjTS1oMU9jSmxjLSp2cHcweFVYJiNPUUZLTlhAUUknSW9QcDduYixRVS8vTVEmWkRrS1ApWDxXU1ZMKDY4dVZsJiNjJ1swIyhzMVgmeG0kWSVCNypLOmVEQTMyM2o5OThHWGJBI3B3TXMtamdEJDlRSVNCLUFfKGFONHhvRk1eQEM1OEQwK1ErcTNuMCMzVTFJbkRqRjY4Mi1Tak1YSkspKGgkaHh1YV9LXXVsOTIlJ0JPVSYjQlJSaC1zbGc4S0RscjolTDcxS2E6LkE7JVlVTGpEUG1MPExZczhpI1h3Sk9ZYUtQS2MxaDonOUtlLGcpYiksNzg9STM5Qjt4aVkkYmdHdy0mLlppOUluWER1WWElRypmMkJxN21uOV4jcDF2diUjKFdpLTsvWjVobzsjMjo7JWQmI3g5djY4QzVnP250WDBYKXBUYDslcEIzcTdtZ0dOKTMlKFA4blRkNUw3R2VBLUdMQCslSjN1MjooWWY+ZXRgZTspZiNLbTgmK0RDJEk0Nj4jS3JdXXUtWz05OXR0czEucWIjcTcyZzFXSk84MXErZU4nMDMnZU0+JjFYeFktY2FFbk9qJTJuOCkpLD9JTFI1Xi5JYm48LVgtTXE3W2E4MkxxOkYmI2NlK1M5d3NDSyp4YDU2OUU4ZXcnSGVdaDpzSVsyTE0kW2d1a2EzWlJkNjp0JUlHOjskJVlpSjpOcT0/ZUF3Oy86bm5EcTAoQ1ljTXBHKXFMTjQkIyMmSjxqJFVwSzxRNGExXU11cFdeLXNqXyQlW0hLJSdGIyMjI1FSWko6OlkzRUdsNCdAJUZraUFPZyNwWyMjT2BndWtUZkJIYWdMPExIdyVxJk9WMCMjRj02LzpjaEltMEBlQ1A4WF06a0ZJJWhsOGhnT0BSY0JoUy1AUWIkJSttPWhQRExnKiVLOGxuKHdjZjMvJ0RXLSQubFI/bltuQ0gtZVhPT05USmxoOi5SWUYlMydwNnNxOlVJTUE5NDUmXkhGUzg3QCRFUDJpRzwtbENPJCVjYHVLR0QzckMkeDBCTDhhRm4tLWBrZSUjSE1QJ3ZoMS9SJk9fSjkndW0sLjx0eFtAJXdzSmsmYlVUMmAwdU12N2dnI3FwL2lqLkw1NidobDsuczVDVXJ4ak9NNy0jIy5sK0F1J0EmTzotVDcyTF1QYCY9O2N0cCdYU2NYKnJVLj4tWFR0LCVPVlU0KVMxK1ItI2RnMC9Obj9LdTFeMGYkQipQOlJvd3dtLWAwUEtqWURETSczXWQzOVZaSEVsNCwuaiddUGstTS5oXiY6MEZBQ20kbWFxLSZzZ3cwdDcvNiheeHRrJUx1SDg4RmotZWttPkdBI18+NTY4eDYoT0ZSbC1JWnBgJmIsX1AnJE08Sm5xNzlWc0pXL21XUypQVWlxNzY7XS9OTV8+aExieGZjJG1qYCxPOyYlVzJtYFpoOi8pVWV0dzphSiVdSzloOlRjRl11Xy1TajksVkszTS4qJyYwRFtDYV1KOWdwOCxrQVddJSg/QSVSJGY8LT5adHMnXmtuPS1eQGM0JS1wWTZxSSVKJTFJR3hmTFU5Q1A4Y2JQbFh2KTtDPWIpLDwybU92UDh1cCxVVmYzODM5YWNBV0FXLVc/I2FvL14jJUtZbzhmUlVMTmQyLj4lbV1VSzpuJXIkJ3N3XUo7NXBBb09fIzJtTzNuLCc9SDUoZXRIZypgK1JMZ3Y+PTRVOGd1RCRJJUQ6Vz4tcjVWKiVqKlc6S3Zlai5McCQ8TS1TR1onOitRX2srdXZPU0xpRW8oPGFEL0s8Q0NjYCdMeD4nPzsrK08nPigpakxSLV51NjhQSG04WkZXZStlajhoOjlyNkwqMC8vYyZpSCZSOHBSYkEjS2ptJXVwVjFnOmFfI1VyN0Z1QSModFJoIy5ZNUsrQD8zPC04bTAkUEVuO0o6cmg2P0k2dUc8LWB3TVUnaXJjcDBMYUVfT3RsTWImMSM2VC4jRkRLdSMxTHcldSUrR00rWCdlP1lMZmpNW1ZPME1idUZwNzs+USYjV0lvKTBARiVxN2MjNFhBWE4tVSZWQjxIRkYqcUwoJC9WLDsoa1haZWpXT2A8WzU/P2V3WSgqOT0ld0RjOyx1PCc5dDNXLShIMXRoMytHXXVjUV1rTHM3ZGYoJC8qSkxdQCp0N0J1X0czXzdtcDc8aWFRak9ALmtMZzt4M0IwbHFwN0hmLF5aZTctIyNAL2M1OE1vKDM7a25wMCUpQTc/LVcrZUknbzgpYjxuS253J0hvOEM9WT5wcUI+MGllJmpoWls/aUxSQEBfQXZBLWlRQyg9a3NSWlJWcDdgLj0rTnBCQyVyaCYzXVI6OFhEbUU1XlY4Tyh4PDxhRy8xTiQjRlgkMFY1WTZ4J2FFckkzSSQ3eCVFYHY8LUJZLCklLT9Qc2YqbD8lQzMubU0oPS9NMDpKeEcnPzdXaEglbydhPC04MGcwTkJ4b08oR0g8ZE1dbi4rJXFAakg/Zi5Vc0oyR2dzJjQ8LWU0NyZLbCtmLy85QGBiKz8uVGVOXyZCOFNzP3Y7XlRyaztmI1l2SmtsJnckXT4tK2s/Jyg8Uzo2OHRxKldvRGZadSc7bU0/OFhbbWE4VyUqYC09O0QuKG5jNy87KWc6VDE9XkokJkJSVigtbFRtTkI2eHFCW0AwKm8uZXJNKjxTV0ZddTI9c3QtKig2dj5eXShILmFSRVpTaSwjMTpbSVhhWkZPbTwtdWkjcVVxMiQjI1JpO3U3NU9LIyhSdGFXLUstRmBTK2NGXXVOYC1LTVElclAvWHJpLkxSY0IjIz1ZTDNCZ00vM01EP0BmJjEnQlctKUp1PEwyNWdsOHVoVm0xaEwkIyMqOCMjIydBMy9Ma0tXKyhecldYPzVXXzhnKWEobSZLOFA+I2JtbVdDTWtrJiNUUmBDLDVkPmcpRjt0LDQ6QF9sOEcvNWg0dlVkJSYlOTUwOlZYRCdRZFdvWS1GJEJ0VXdtZmUkWXFMJzgoUFdYKFA/XkBQbzMkIyNgTVNzP0RXQlovUz4rNCU+ZlgsVld2L3cnS0RgTFA1SWJIO3JUVj5uM2NFSzhVI2JYXWwtL1YrXmxqMzt2bE1iJls1WVE4I3Bla1g5SlAzWFVDNzJMLCw/K05pJmNvN0Fwbk8qNU5LLCgoVy1pOiQsa3AnVURBTyhHMFNxN01WakpzYkl1KSdaLCpbPmJyNWZYXjpGUEFXci1tMktnTDxMVU4wOThrVEYmI2x2bzU4PS92akRvOy47KUthKmhMUiMvaz1yS2J4dVZgPlFfbk42Jzh1VEcmIzFUNWcpdUx2Ojg3M1VwVExnSCsjRmdwSCdfbzE3ODBQaDhLbXhRSjgjSDcyTDRANzY4QFRtJlFoNENCLzVPdm1BJixRJlFiVW9pJGFfJTNNMDFIKTR4N0leJktRVmd0Rm5WKztbUGM+W200ay8vLF0xPyNgVllbSnIqMyYmc2xSZkxpVlpKOl0/PUszU3c9WyQ9dVJCPzN4azQ4QGFlZzxaJzwkIzRIKTYsPmUwalQ2J04jKHElLk89PzJTXXUqKG08LVY4SicoMSlHXVs2OGhXJDUncVtHQyY1amBURT9tJ2VzRkdOUk0paixmZlo/LXF4ODstPmc0dCo6Q0lQL1tRYXA3LzknIygxc2FvN3ctLnFOVWRrSil0Q0YmI0JeO3hHdm4ycjlGRVBGRkZjTEAuaUZOa1R2ZSRtJSNRdlFTOFVAKTJaKzNLOkFLTTVpc1o4OCtkS1EpVzY+SiVDTDxLRT5gLmQqKEJgLW44RDlvSzxVcF1jJFgkKCwpTThadDcvW3Jka3FUZ2wtMGN1R012Jz8+LVhWMXFbJy01aydjQVo2OWU7RF8/JFpQUCZzXis3XSkkKiQjQFFZaTksNVAmIzlyKyQlQ0U9Njg+SzhyMD1kU0MlJShAcDcubTdqaWxRMDInMC1WV0FnPGEvJyczdS49NEwkWSk2ay9LOl9bMz0manZMPEwwQy8yJ3Y6XjstRElCVyxCNEU2ODprWjslPzgoUThCSD1rTzY1Qlc/eFNHJiNAdVUsRFMqLD8uKyhvKCMxdkNTOCNDSEY+VGxHVydiKVRxN1ZUOXFeKl4kJC46Jk5AQCQmKVdIdFBtKjVfck8wJmUlSyYjLTMwaihFNCMnWmIuby8oVHBtJD5LJ2ZAW1B2RmwsaGZJTlROVTZ1JzBwYW83JVhVcDldNS4+JWhgOF89VllieHVlbC5OVFNzSmZMYWNGdTNCJ2xRU3UvbTYtT3FlbThUK29FLS0kMGEva111ajlFd3NHPiV2ZVIqaHZeQkZwUWo6SycjU0osc0ItJyNdKGouTGc5MnJUdy0qbiVALzszOXJySkYsbCNxViVPcnRCZUM2Lyw7cUIzZWJOV1s/LEhxajJMLjFOUCZHalVSPTFEOFFhUzNVcCZAKjl3UD8rbG83Yj9AJSdrNGBwMFokMjIlSzMraUNaaj9YSk40Tm0mK1lGXXVALVckVSVWRVEvLCw+PiMpRDxoI2ApaDA6PFE2OTA5dWErJlZVJW4yOmNHM0ZKLSVAQmotRGdMcmBIdyZIQUtqS2pzZUs8L3hLVCopQixOOVgzXWtyYzEydCdwZ1RWKEx2LXRMW3hnXyU9TV9xN2FeeD83VWJkPiMlOGNZI1laPz0sYFdkeHUvYWUmI3c2KVI4OXRJIzZAcycoNkJmN2EmP1M9XlpJX2tTJmFpYCY9dEU3MkxfRCw7XlIpN1skczxFaCNjJilxLk1YSSUjdjlST2E1RlpPJXNGN3E3TndiJiNwdFVKOmFxSmUkU2w2OCUuRCMjI0VDPjw/LWFGJiNSTlF2Pm84bEtOJTUvJCh2ZGZxNytlYkEjdTFwXW92VUtXJlklcV0nPiQxQC1beGZuJDdaVHA3bU0sRyxLbzdhJkd1JUdbUk14SnNbME1NJXdjaS5MRkRLKSg8Y2BROE4pakVJRiorP1AyYThnJSkkcV1vMmFIOEMmPFNpYkMvcSwoZTp2Oy1iIzZbJE50RFo4NEplMktOdkIjJFA1P3RRM250KDBkPWouTFFmLi9MbDMzKyg7cTNMLXc9OGRYJCNXRiZ1SUpALWJmST4lOl9pMkI1Q3NSOCY5WiYjPW1QRW5tMGZgPCZjKVFMNXVKIyV1JWxKaitELXI7Qm9GJiM0RG9TOTdoNWcpRSNvOiZTNHdlREYsOV5Ib2VgaCpMK19hKk5yTFctMXBHXyYyVWRCODZlJUIvOj0+KU40eGVXLip3ZnQtOyQnNTgtRVNxcjxiP1VJKF8lQFtQNDY+I1VgJzZBUV1tJjYvYFo+I1M/WVkjVmM7cjdVMiYzMjZkPXcmSCMjIyM/VFpgKjQ/Ji5NSz9MUDhWeGc+JFtRWGMlUUp2OTIuKERiKkIpZ2IqQk05ZE0qaEpNQW8qYyYjYjB2PVBqZXJdJGdHJkpYRGYtPidTdHZVNzUwNWw5JEFGdmdZUkleJjxeYjY4P2ojcTlRWDRTTSdSTyMmc0wxSU0uckpmTFVBajIyMV1kIyNEVz1tODN1NTsnYll4LCpTbDBoTChXOzskZG9CJk8vVFE6KFpeeEJkTGpMPExuaTsnJ1guYCQjOCsxR0Q6ayRZVVdzYm44b2doNnJ4WjJaOV0lbmQrPlYjKjhVXzcyTGgrMlE4Q2owaTo2aHAmJEMvOnAoSEs+VDhZW2dIUTRgNCknJEFiKE5vZiVWJzhoTCYjPE5FZHRnKG4nPVMxQShRMS9JJjQoWyVkTWAsSXUnMTpfaEw+U2ZEMDcmNkQ8ZnA4ZEhNNy9nK3RsUE45SipyS2FQY3QmPyd1QkNlbV5qbiU5X0spPCxDNUszcz01ZyZHbUpiKltTWXE3SztUUkxHQ3NNLSQkO1MlOllAcjdBSzBwcHJwTDxMcmgscTdlLyVLV0s6NTBJXittJ3ZpYDM/JVpwKzwtZCskTC1TdjpALm8xOW4kczAmMzk7a247UyVCU3EqJDNXb0pTQ0x3ZVZbYVonTVFJak88NztYLVg7JitkTUx2dSNeVXNHRUM5V0VjW1god0k3IzIuKEYwalYqZVpmPC1RdjNKLWMrSjVBbHJCIyRwKEg2OEx2RUEncTNuMCNtLFtgKjhGdClGY1lnRXVkXUNXZm02OCwoYUxBJEBFRlRnTFhvQnEvVVBscDc6ZFsvO3JfaXg9OlRGYFM1SC1iPExJJkhZKEs9aCMpXUxrJEsxNGxWZm06eCRIPDNeUWw8TWAkT2hhcEJua3VwJ0QjTCRQYl9gTipnXTJlO1gvRHRnLGJzaiZLIzJbLTppWXInX3dnSClOVUlSOGExbiNTP1llaidoOF41OFViWmQrXkZLRCpUQDs2QTdhUUNbSzhkLSh2NkdJJHg6VDwmJ0dwNVVmPkBNLipKOjskLXJ2MjknTV04cU12LXRMcCwnODg2aWFDPUhiKllKb0tKLChqJUs9SGBLLnY5SGdncUJJaVp1J1F2QlQuIz0pMHVrcnVWJi4pMz0oXjFgbypQajQ8LTxhTigoXjcoJyNaMHdLIzVHWEA3dV1bYCpTXjQzOTMzQTRybF1bYCpPNENnTEVsXXYkMVEzQWVGMzdkYlhrLC4pdmojeCdkYDtxZ2JRUiVGVywyKD9MTz1zJVNjNjglTlAnIyNBb3RsOHg9QkUjajFVRChbMyRNKF1VSTJMWDNScEtOQDsvI2YnZi8mX210JkYpWGRGPDl0NClRYS4qa1RMd1EnKFRUQjkueEgnPiNNSitnTHE5LSMjQEh1WlBOMF11Omg3LlQuLkc6OyQvVXNqKFQ3YFE4dFQ3MkxuWWw8LXF4ODstSFY3US0mWGR4JTFhLGhDPTB1K0hsc1Y+bnVJUUwtNTxOPylOQlMpUU4qX0ksPyYpMidJTSVMM0kpWCgoZS9kbDImOCc8TTpeI00qUStbVC5YcmkuTFlTM3YlZkZgNjhoO2ItWFsvRW4nQ1IucTdFKXAnL2tsZTJITSx1O14lT0tDLU4rTGwlRjlDRjxOZideI3QyTCw7MjdXOjBPQDYjI1U2Vzc6JHJKZkxXSGokIyl3b3FCZWZJWi5QSzxiKnQ3ZWQ7cCpfbTs0RXhLI2hAJl0+Xz5Aa1hRdE1hY2ZELm0tVkFiODtJUmVNMyR3ZjAnJ2hyYSpzbzU2OCdJcCZ2UnM4NDknTVJZU3AlOnQ6aDVxU2d3cEVyJEI+USw7cyhDIyQpYHN2UXVGJCMjLUQsIyMsZzY4QDJbVDsuWFNkTjlRZSlycHQuX0stIzV3RilzUCcjI3AjQzBjJS1HYiVoZCs8LWonQWkqeCYmSE1rVF1DJ09TbCMjNVJHW0pYYUhOO2QndUEjeC5fVTsuYFBVQChaM2R0NHIxNTJAOnYsJ1IuU2ondyMwPC07a1BJKUZmSiYjQVlKJiMvLyk+LWs9bT0qWG5LJD49KTcyTF0wSSU+Lkc2OTBhOiQjIzwsKTs/OzcyIz94OStkO15WJzk7allAOyliciNxXllRcHg6WCNUZSRaXic9LT1iR2hMZjpENiZiTndaOS1aRCNuXjlIaExNcjVHOyddZCY2J3dZbVRGbUw8TEQpRl4lW3RDJzg7KzlFI0MkZyUjNVk+cTl3ST5QKDltSVs+a0MtZWtMQy9SJkNIK3MnQjtLLU02JEVCJWlzMDA6K0E0Wzd4a3MuTHJOazAmRSl3SUxZRkAyTCcwTmIkK3B2PCgyLjc2OC9GclkmaCReM2kmQCtHJUpUJzwtLHZgMztfKUk5TV5BRV1DTj9DbDJBWmcrJTRpVHBUMzxuLSYlSCViPEZEajJNPGhIPSZFaDwyTGVuJGIqYVRYPS04UXhOKWsxMUlNMWNeaiU5czxMPE5GU28pQj8rPC0oR3hzRixeLUVoQCQ0ZFhoTiQrI3J4SzgnamUnRDdrYGU7KTJwWXdQQSdfcDkmQF4xOG1sMV5bQGc0dCpbSk9hKls9UXA3KHFKX29PTF4oJzdmQiZIcS06c2Ysc05qOHhxXj4kVTRPXUdLeCdtOSliQHA3WXN2SzN3XllSLUNkUSo6SXI8KCR1JikjKCY/TDlSZzNIKTRmaUVwXmlJOU84S25UaixdSD9EKnI3J007UHdaOUswRV5rJi1jcEk7LnAvNl92d29GTVY8LT4jJVhpLkx4Vm5yVSg0JjgvUCs6aExTS2okI1UlXTQ5dCdJOnJnTWknRkxAYTowWS11QVszOScsKHZibWEqaFUlPC1TUkZgVHQ6NTQyUl9WViRwQFtwOERWW0EsPzE4MzlGV2RGPFRkZEY8OUFoLTYmOXRXb0RsaF0mMVNwR01xPlRpMU8qSCYjKEFMOFtfUCUuTT52Xi0pKXFPVCpGNUNxMGBZZSUrJEI2aTo3QDBJWDxOK1QrME1sTUJQUSpWaj5Tc0Q8VTRKSFk4a0QyKTJmVS9NIyRlLilUNCxfPThoTGltWyYpOz9Va0snLXg/Jyg6c2lJZkw8JHBGTWBpPD8lVyhtR0RITSU+aVdQLCMjUGAlL0w8ZVhpOkBaOUMuN289QChwWGRBTy9OTFE4bFBsK0hQT1FhOHdEOD1eR2xQYThUS0kxQ2poc0NUU0xKTScvV2w+LVMocXclc2YvQCUjQjY7L1U3S111WmJpXk9jXjJuPGJoUG1Va013PiV0PCknbUVWRScnbmBXbkpyYSReVEt2WDVCPjtfYVNFSycsKGh3YTA6aTRHPy5CY2kuKFhbP2IqKCQsPS1uPC5RJWAoWD0/K0BBbSpKczAmPTNiaDhLXW1MPExvTnMnNiwnODVgMD90LydfVTU5QF1kZEY8I0xkRjxlV2RGPE91Ti80NXJZPC1MQCYjK2ZtPjY5PUxiLE9jWlYvKTtUVG04Vkk7PyVPdEo8KGI0bXE3TTY6dT9LUmRGPGdSQDJMPUZOVS08YlsoOWMvTUwzbTtaWyRvRjNnKUdBV3FwQVJjPTxST3U3Y0w1bDstW0FdJS8rZnNkO2wjU2FmVC9mKlddMD1PJyQoVGI8WykqQGU3NzVSLTpZb2IlZyo+bCo6eFA/WWIuNSkld19JPzd1azVKQytGUyhtI2knay4nYTBpKTk8N2InZnMnNTlocSQqNVVodiMjcGleOCtoSUVCRmBudm9gOydsMC5eUzE8LXdVSzIvQ29oNThLS2hMak09U08qcmZPYCtxQ2BXLU9uLj1BSjU2Pj5pMkAyTEg2QTomNXFgPzlJM0BAJzA0JnAyL0xWYSpULTQ8LWkzO005VXZaZCtONz5iKmVJd2c6Q0MpYzw+bk8mIzxJR2U7X18udGhqWmw8JXcoV2syeG1wNFFASSNJOSxERl11Ny1QPS4tXzpZSl1hU0BWPzYqQygpZE9wNzpXTCxiJjNSZy8uY21NOSZyXj4kKD4uWi1JJkooUTBIZDVRJTdDby1iYC1jPE4oNnJAaXArQXVySzxtODZRSXRoKiN2Oy1PQnFpK0w3d0RFLUlyOEtbJ20rRERTTHdLJi8uPy1WJVVfJTM6cUtOdSRfYipCLWtwN05hRCdRZFdRUEtZcVtAPlApaEk7Kl9GXXVgUmJbLmo4X1EvPCY+dXUrVnNIJHNNOVRBJT8pKHZtSjgwKSxQN0U+KXRqRCUyTD0tdCNmS1slYHY9UTg8RmZOa2dnXm9JYmFoKiM4L1F0JEYmOksqLShOLycrMXZNQix1KCktYS5WVVUqI1tlJWdBQU8oUz5XbEEyKTtTYT5nWG04WUJgMWRASyNuXTc2LWEkVSxtRjxmWF1pZHFkKTwzLF1KN0ptVzRgNl11a3M9NC03MkwoakVrKzpiSjBNXnEtOERtX1o/MG9sUDFDOVNhJkhbZCZjJG9vUVVqXUV4ZCozWk1ALVdHVzIlcycsQi1fTSU+JVVsOiMvJ3hvRk05UVgtJC5RTic+WyUkWiR1RjZwQTZLaTJPNTo4dyp2UDE8LTFgW0csKS1tIz4wYFAmI2ViIy4zaSlydEI2MShvJyQ/WDNCPC9SOTA7ZVpdJU5jcTstVGxdI0Y+MlFmdF5hZV81dEtMOU1VZTliKnNMRVE5NUMmYD1HP0BNaj13aConM0U+PS08KUd0Kkl3KSdRRzpgQEl3T2Y3Jl0xaSdTMDFCK0V2L05hYyM5Uzs9O1lRcGdfNlVgKmtWWTM5eEssWy82QWo3OicxQm0tXzFFWWZhMStvJm80aHA3S05fUShPbElvQFMlO2pWZG4wJzE8VmM1Mj11YDNeby1uMSdnNHY1OEhqJjZfdDckIyM/TSljPCRiZ1FfJ1NZKCgteGtBI1koLHAnSDlySVZZLWIsJyViQ1BGNy5KPFVwXiwoZFUxVlkqNSNXa1RVPmgxOXcsV1FoTEkpM1MjZiQyKGViLGpyKmI7M1Z3XSo3TkglJGM0VnMsZUQ5PlhXOD9OXW8rKCpwZ0MlLzcyTFYtdTxIcCwzQGVeOVVCMUorYWs5LVROL21oS1BnK0FKWWQkTWx2QUZfakNLKi5PLV4oNjNhZE1ULT5XJWlld1M4VzZtMnJ0Q3BvJ1JTMVI4ND1AcGFUS3QpPj0lJjFbKSp2cCd1K3gsVnJ3TjsmXWt1TzlKRGJnPXBPJEoqLmpWZTt1J20wZHI5bCw8KndNSypPZT1nOGxWX0tFQkZrTydvVV1ePVstNzkyI29rLClpXWxSOHFRMm9BOHdjUkNaXjd3L05qaDs/LnN0WD9RMT5TMXE0Qm4kKUsxPC1yR2RPJyRXci5MYy5DRykkLypKTDR0TlIvLFNWTzMsYVV3J0RKTjopU3M7d0duOUEzMmlqdyVGTCtaMEZuLlU5O3JlU3EpYm1JMzJVPT01QUx1RyYjVmYxMzk4L3BWbzEqYy0oYVkxNjhvPGBKc1Niay0sMU47JD4wOk9VYXMoMzo4Wjk3MkxTZkY4ZWI9Yy07PlNQdzcuNmhuM21gOV5Ya24oci5xU1swO1QlJlFjPStTVFJ4WCdxMUJOazMmKmV1MjsmOHEkJng+USNRN15UZis2PChkJVpWbWoyYkRpJS4zTDJuKzRXJyRQaURERylnLHIlKz8sJEA/dW91NXRTZTJhTl9BUVUqPGhgZS1HSTcpP09LMkEuZDdfYyk/d1E1QVNAREwzciM3ZlNrZ2w2LSsrRDonQSx1cTdTdmxCJHBjcEgncTNuMCNfJWRZI3hDcHItbDxGME5SQC0jI0ZFVjZOVEY2IyMkbDg0TjF3P0FPPidJQU9VUlEjI1ZeRnYtWEZiR003RmwoTjwzRGhMR0YlcS4xckMkIzpUX18mUGk2OCUweGlfJltxRkooNzdqXyZKV29GLlY3MzUmVCxbUio6eEZSKks1Pj4jYGJXLT80TmVfJjZOZV8mNk5lXyZuYGtyLSNHSmNNNlg7dU02WDt1TSguYS4uXjJUa0wlb1IoIzt1LlQlZkFyJTR0SjgmPjwxPUdIWl8rbTkvI0gxRl5SI1NDIypOPUJBOShEP3ZbVWlGWT4+XjhwLEtLRi5XXUwyOXVMa0xsdS8rNFQ8WG9JQiZoeD1UMVBjRGFCJjtISCstQUZyPyhtOUhaVilGS1M4SkN3O1NEPTZbXi9EWlVMYEVVRGZdR0dsRyY+dyQpRi4vXm4zK3JsbytEQjs1c0lZR05rK2kxdC02OUpnLS0wcGFvN1NtI0spcGRIVyY7THVETkhASD4jL1gtVEkoO1A+IyxHYz4jMFN1PiM0YDE/IzhsQz8jPHhVPyNALmk/I0Q6JUAjSEY3QCNMUklAI1BfW0AjVGtuQCNYdypBI10tPUEjYTlPQSNkPEYmIyo7RyMjLkdZIyMyU2wjIzZgKCQjOmw6JCM+eEwkI0IuYCQjRjpyJCNKRi4lI05SQCUjUl9SJSNWa2UlI1p3dyUjXy00JiMzXlJoJVNmbHItaydNUy5vPy41L3NXZWwvd3BFTTAlMycvMSlLXmYxLWQ+RzIxJnYoMzU+VmAzOVY3QTQ9b254NEExT1k1RUkwOzZJYmdyNk0kSFM3UTwpNThDNXcsO1dvQSojWyVUKiNgMWcqI2Q9IysjaEk1KyNsVUcrI3BiWSsjdG5sKyN4JCksIyYxOywjKj1NLCMuSWAsIzJVciwjNmIuLSM7d1tII2lRdEEjbV4wQiNxakJCI3V2VEIjIy1oQiMnOSRDIytFNkMjL1FIQyMzXlpDIzdqbUMjO3YpRCM/LDxEI0M4TkQjR0RhRCNLUHNEI09dL0UjZzFBNSNLQSoxI2dDMTcjTUdkOyM4KDAyI0wtZDMjcldNNCNIZ2ExIyw8dzAjVC5qPCNPIycyI0NZTjEjcWFeOiNfNG0zI29ALz0jZUc4PSN0OEo1I2ArNzgjNHVJLSNtM0IyI1NCWzgjUTBAOCNpWyo5I2lPbjgjMU5tOyNec045I3FoPDkjOj14LSNQO0syIyQlWDkjYkMrLiNSZzs8I21OPS4jTVRGLiNSWk8uIzI/KTQjWSMoLyNbKTEvI2I7TC8jZEFVLyMwU3Y7I2xZJDAjbmAtMCNzZjYwIyhGMjQjd3JIMCMlL2UwI1RtRDwjJUpTTUZvdmU6Q1RCRVhJOjxlaDJnKUIsM2gyXkczaTsjZDNqRD4pNGtNWUQ0bFZ1YDRtYDomNW5pVUE1QChBNUJBMV1QQkI6eGxCQ0M9MkNETFhNQ0VVdGlDZiYwZzIndE4/UEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQLXFla0NgLjlrRWdeK0Yka3dWaUZKVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVvLF48LTI4WkknTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cDs3cS0jbExZSTp4dkQ9IwBB9v8ACwpAQAAAQEEAAJhBAEGKgAELugFQQQAAAAAAAOBAAACAQQAAgD8AAABBAAD4QQAAAAAAALhBAAC4QQAAMEEAADBBAACoQQAAAAAAABBBAAC4QQAAgEAAADBBAABcQgAAkEEAALhBAAAQQQAAMEEAAIBAAACSQgAAAAAAAIhBAACIQQAAAEEAAABBAABcQgAAAAAAAIhBAACIQQAAAEEAAABBAAC2QgAAAAAAAIhBAACwQQAAoEAAAAAAIAD/AAAw/zDwMf8xAP/v/wBOr58AQdCBAQuXJyAA/wAAMP8w8DH/MQD/7/8AAAEAAgAEAAEAAQABAAEAAgABAAMAAgABAAIAAgABAAEAAQABAAEABQACAAEAAgADAAMAAwACAAIABAABAAEAAQACAAEABQACAAMAAQACAAEAAgABAAEAAgABAAEAAgACAAEABAABAAEAAQABAAUACgABAAIAEwACAAEAAgABAAIAAQACAAEAAgABAAUAAQAGAAMAAgABAAIAAgABAAEAAQAEAAgABQABAAEABAABAAEAAwABAAIAAQAFAAEAAgABAAEAAQAKAAEAAQAFAAIABAAGAAEABAACAAIAAgAMAAIAAQABAAYAAQABAAEABAABAAEABAAGAAUAAQAEAAIAAgAEAAoABwABAAEABAACAAQAAgABAAQAAwAGAAoADAAFAAcAAgAOAAIACQABAAEABgAHAAoABAAHAA0AAQAFAAQACAAEAAEAAQACABwABQAGAAEAAQAFAAIABQAUAAIAAgAJAAgACwACAAkAEQABAAgABgAIABsABAAGAAkAFAALABsABgBEAAIAAgABAAEAAQACAAEAAgACAAcABgALAAMAAwABAAEAAwABAAIAAQABAAEAAQABAAMAAQABAAgAAwAEAAEABQAHAAIAAQAEAAQACAAEAAIAAQACAAEAAQAEAAUABgADAAYAAgAMAAMAAQADAAkAAgAEAAMABAABAAUAAwADAAEAAwAHAAEABQABAAEAAQABAAIAAwAEAAUAAgADAAIABgABAAEAAgABAAcAAQAHAAMABAAFAA8AAgACAAEABQADABYAEwACAAEAAQABAAEAAgAFAAEAAQABAAYAAQABAAwACAACAAkAEgAWAAQAAQABAAUAAQAQAAEAAgAHAAoADwABAAEABgACAAQAAQACAAQAAQAGAAEAAQADAAIABAABAAYABAAFAAEAAgABAAEAAgABAAoAAwABAAMAAgABAAkAAwACAAUABwACABMABAADAAYAAQABAAEAAQABAAQAAwACAAEAAQABAAIABQADAAEAAQABAAIAAgABAAEAAgABAAEAAgABAAMAAQABAAEAAwAHAAEABAABAAEAAgABAAEAAgABAAIABAAEAAMACAABAAEAAQACAAEAAwAFAAEAAwABAAMABAAGAAIAAgAOAAQABgAGAAsACQABAA8AAwABABwABQACAAUABQADAAEAAwAEAAUABAAGAA4AAwACAAMABQAVAAIABwAUAAoAAQACABMAAgAEABwAHAACAAMAAgABAA4ABAABABoAHAAqAAwAKAADADQATwAFAA4AEQADAAIAAgALAAMABAAGAAMAAQAIAAIAFwAEAAUACAAKAAQAAgAHAAMABQABAAEABgADAAEAAgACAAIABQAcAAEAAQAHAAcAFAAFAAMAHQADABEAGgABAAgABAAbAAMABgALABcABQADAAQABgANABgAEAAGAAUACgAZACMABwADAAIAAwADAA4AAwAGAAIABgABAAQAAgADAAgAAgABAAEAAwADAAMABAABAAEADQACAAIABAAFAAIAAQAOAA4AAQACAAIAAQAEAAUAAgADAAEADgADAAwAAwARAAIAEAAFAAEAAgABAAgACQADABMABAACAAIABAARABkAFQAUABwASwABAAoAHQBnAAQAAQACAAEAAQAEAAIABAABAAIAAwAYAAIAAgACAAEAAQACAAEAAwAIAAEAAQABAAIAAQABAAMAAQABAAEABgABAAUAAwABAAEAAQADAAQAAQABAAUAAgABAAUABgANAAkAEAABAAEAAQABAAMAAgADAAIABAAFAAIABQACAAIAAwAHAA0ABwACAAIAAQABAAEAAQACAAMAAwACAAEABgAEAAkAAgABAA4AAgAOAAIAAQASAAMABAAOAAQACwApAA8AFwAPABcAsAABAAMABAABAAEAAQABAAUAAwABAAIAAwAHAAMAAQABAAIAAQACAAQABAAGAAIABAABAAkABwABAAoABQAIABAAHQABAAEAAgACAAMAAQADAAUAAgAEAAUABAABAAEAAgACAAMAAwAHAAEABgAKAAEAEQABACwABAAGAAIAAQABAAYABQAEAAIACgABAAYACQACAAgAAQAYAAEAAgANAAcACAAIAAIAAQAEAAEAAwABAAMAAwAFAAIABQAKAAkABAAJAAwAAgABAAYAAQAKAAEAAQAHAAcABAAKAAgAAwABAA0ABAADAAEABgABAAMABQACAAEAAgARABAABQACABAABgABAAQAAgABAAMAAwAGAAgABQALAAsAAQADAAMAAgAEAAYACgAJAAUABwAEAAcABAAHAAEAAQAEAAIAAQADAAYACAAHAAEABgALAAUABQADABgACQAEAAIABwANAAUAAQAIAFIAEAA9AAEAAQABAAQAAgACABAACgADAAgAAQABAAYABAACAAEAAwABAAEAAQAEAAMACAAEAAIAAgABAAEAAQABAAEABgADAAUAAQABAAQABgAJAAIAAQABAAEAAgABAAcAAgABAAYAAQAFAAQABAADAAEACAABAAMAAwABAAMAAgACAAIAAgADAAEABgABAAIAAQACAAEAAwAHAAEACAACAAEAAgABAAUAAgAFAAMABQAKAAEAAgABAAEAAwACAAUACwADAAkAAwAFAAEAAQAFAAkAAQACAAEABQAHAAkACQAIAAEAAwADAAMABgAIAAIAAwACAAEAAQAgAAYAAQACAA8ACQADAAcADQABAAMACgANAAIADgABAA0ACgACAAEAAwAKAAQADwACAA8ADwAKAAEAAwAJAAYACQAgABkAGgAvAAcAAwACAAMAAQAGAAMABAADAAIACAAFAAQAAQAJAAQAAgACABMACgAGAAIAAwAIAAEAAgACAAQAAgABAAkABAAEAAQABgAEAAgACQACAAMAAQABAAEAAQADAAUABQABAAMACAAEAAYAAgABAAQADAABAAUAAwAHAA0AAgAFAAgAAQAGAAEAAgAFAA4ABgABAAUAAgAEAAgADwAFAAEAFwAGAD4AAgAKAAEAAQAIAAEAAgACAAoABAACAAIACQACAAEAAQADAAIAAwABAAUAAwADAAIAAQADAAgAAQABAAEACwADAAEAAQAEAAMABwABAA4AAQACAAMADAAFAAIABQABAAYABwAFAAcADgALAAEAAwABAAgACQAMAAIAAQALAAgABAAEAAIABgAKAAkADQABAAEAAwABAAUAAQADAAIABAAEAAEAEgACAAMADgALAAQAHQAEAAIABwABAAMADQAJAAIAAgAFAAMABQAUAAcAEAAIAAUASAAiAAYABAAWAAwADAAcAC0AJAAJAAcAJwAJAL8AAQABAAEABAALAAgABAAJAAIAAwAWAAEAAQABAAEABAARAAEABwAHAAEACwAfAAoAAgAEAAgAAgADAAIAAQAEAAIAEAAEACAAAgADABMADQAEAAkAAQAFAAIADgAIAAEAAQADAAYAEwAGAAUAAQAQAAYAAgAKAAgABQABAAIAAwABAAUABQABAAsABgAGAAEAAwADAAIABgADAAgAAQABAAQACgAHAAUABwAHAAUACAAJAAIAAQADAAQAAQABAAMAAQADAAMAAgAGABAAAQAEAAYAAwABAAoABgABAAMADwACAAkAAgAKABkADQAJABAABgACAAIACgALAAQAAwAJAAEAAgAGAAYABQAEAB4AKAABAAoABwAMAA4AIQAGAAMABgAHAAMAAQADAAEACwAOAAQACQAFAAwACwAxABIAMwAfAIwAHwACAAIAAQAFAAEACAABAAoAAQAEAAQAAwAYAAEACgABAAMABgAGABAAAwAEAAUAAgABAAQAAgA5AAoABgAWAAIAFgADAAcAFgAGAAoACwAkABIAEAAhACQAAgAFAAUAAQABAAEABAAKAAEABAANAAIABwAFAAIACQADAAQAAQAHACsAAwAHAAMACQAOAAcACQABAAsAAQABAAMABwAEABIADQABAA4AAQADAAYACgBJAAIAAgAeAAYAAQALABIAEwANABYAAwAuACoAJQBZAAcAAwAQACIAAgACAAMACQABAAcAAQABAAEAAgACAAQACgAHAAMACgADAAkABQAcAAkAAgAGAA0ABwADAAEAAwAKAAIABwACAAsAAwAGABUANgBVAAIAAQAEAAIAAgABACcAAwAVAAIAAgAFAAEAAQABAAQAAQABAAMABAAPAAEAAwACAAQABAACAAMACAACABQAAQAIAAcADQAEAAEAGgAGAAIACQAiAAQAFQA0AAoABAAEAAEABQAMAAIACwABAAcAAgAeAAwALAACAB4AAQABAAMABgAQAAkAEQAnAFIAAgACABgABwABAAcAAwAQAAkADgAsAAIAAQACAAEAAgADAAUAAgAEAAEABgAHAAUAAwACAAYAAQALAAUACwACAAEAEgATAAgAAQADABgAHQACAAEAAwAFAAIAAgABAA0ABgAFAAEALgALAAMABQABAAEABQAIAAIACgAGAAwABgADAAcACwACAAQAEAANAAIABQABAAEAAgACAAUAAgAcAAUAAgAXAAoACAAEAAQAFgAnAF8AJgAIAA4ACQAFAAEADQAFAAQAAwANAAwACwABAAkAAQAbACUAAgAFAAQABAA/ANMAXwACAAIAAgABAAMABQACAAEAAQACAAIAAQABAAEAAwACAAQAAQACAAEAAQAFAAIAAgABAAEAAgADAAEAAwABAAEAAQADAAEABAACAAEAAwAGAAEAAQADAAcADwAFAAMAAgAFAAMACQALAAQAAgAWAAEABgADAAgABwABAAQAHAAEABAAAwADABkABAAEABsAGwABAAQAAQACAAIABwABAAMABQACABwACAACAA4AAQAIAAYAEAAZAAMAAwADAA4AAwADAAEAAQACAAEABAAGAAMACAAEAAEAAQABAAIAAwAGAAoABgACAAMAEgADAAIABQAFAAQAAwABAAUAAgAFAAQAFwAHAAYADAAGAAQAEQALAAkABQABAAEACgAFAAwAAQABAAsAGgAhAAcAAwAGAAEAEQAHAAEABQAMAAEACwACAAQAAQAIAA4AEQAXAAEAAgABAAcACAAQAAsACQAGAAUAAgAGAAQAEAACAAgADgABAAsACAAJAAEAAQABAAkAGQAEAAsAEwAHAAIADwACAAwACAA0AAcABQATAAIAEAAEACQACAABABAACAAYABoABAAGAAIACQAFAAQAJAADABwADAAZAA8AJQAbABEADAA7ACYABQAgAH8AAQACAAkAEQAOAAQAAQACAAEAAQAIAAsAMgAEAA4AAgATABAABAARAAUABAAFABoADAAtAAIAFwAtAGgAHgAMAAgAAwAKAAIAAgADAAMAAQAEABQABwACAAkABgAPAAIAFAABAAMAEAAEAAsADwAGAIYAAgAFADsAAQACAAIAAgABAAkAEQADABoAiQAKANMAOwABAAIABAABAAQAAQABAAEAAgAGAAIAAwABAAEAAgADAAIAAwABAAMABAAEAAIAAwADAAEABAADAAEABwACAAIAAwABAAIAAQADAAMAAwACAAIAAwACAAEAAwAOAAYAAQADAAIACQAGAA8AGwAJACIAkQABAAEAAgABAAEAAQABAAIAAQABAAEAAQACAAIAAgADAAEAAgABAAEAAQACAAMABQAIAAMABQACAAQAAQADAAIAAgACAAwABAABAAEAAQAKAAQABQABABQABAAQAAEADwAJAAUADAACAAkAAgAFAAQAAgAaABMABwABABoABAAeAAwADwAqAAEABgAIAKwAAQABAAQAAgABAAEACwACAAIABAACAAEAAgABAAoACAABAAIAAQAEAAUAAQACAAUAAQAIAAQAAQADAAQAAgABAAYAAgABAAMABAABAAIAAQABAAEAAQAMAAUABwACAAQAAwABAAEAAQADAAMABgABAAIAAgADAAMAAwACAAEAAgAMAA4ACwAGAAYABAAMAAIACAABAAcACgABACMABwAEAA0ADwAEAAMAFwAVABwANAAFABoABQAGAAEABwAKAAIABwA1AAMAAgABAAEAAQACAKMAFAIBAAoACwABAAMAAwAEAAgAAgAIAAYAAgACABcAFgAEAAIAAgAEAAIAAQADAAEAAwADAAUACQAIAAIAAQACAAgAAQAKAAIADAAVABQADwBpAAIAAwABAAEAAwACAAMAAQABAAIABQABAAQADwALABMAAQABAAEAAQAFAAQABQABAAEAAgAFAAMABQAMAAEAAgAFAAEACwABAAEADwAJAAEABAAFAAMAGgAIAAIAAQADAAEAAQAPABMAAgAMAAEAAgAFAAIABwACABMAAgAUAAYAGgAHAAUAAgACAAcAIgAVAA0ARgACAIAAAQABAAIAAQABAAIAAQABAAMAAgACAAIADwABAAQAAQADAAQAKgAKAAYAAQAxAFUACAABAAIAAQABAAQABAACAAMABgABAAUABwAEAAMA0wAEAAEAAgABAAIABQABAAIABAACAAIABgAFAAYACgADAAQAMABkAAYAAgAQACgBBQAbAIMBAgACAAMABwAQAAgABQAmAA8AJwAVAAkACgADAAcAOwANABsAFQAvAAUAFQAGAEHyqAELsR4BAAIABAABAAEAAQABAAIAAQAGAAIAAgABAAgABQAHAAsAAQACAAoACgAIAAIABAAUAAIACwAIAAIAAQACAAEABgACAAEABwAFAAMABwABAAEADQAHAAkAAQAEAAYAAQACAAEACgABAAEACQACAAIABAAFAAYADgABAAEACQADABIABQAEAAIAAgAKAAcAAQABAAEAAwACAAQAAwAXAAIACgAMAAIADgACAAQADQABAAYACgADAAEABwANAAYABAANAAUAAgADABEAAgACAAUABwAGAAQAAQAHAA4AEAAGAA0ACQAPAAEAAQAHABAABAAHAAEAEwAJAAIABwAPAAIABgAFAA0AGQAEAA4ADQALABkAAQABAAEAAgABAAIAAgADAAoACwADAAMAAQABAAQABAACAAEABAAJAAEABAADAAUABQACAAcADAALAA8ABwAQAAQABQAQAAIAAQABAAYAAwADAAEAAQACAAcABgAGAAcAAQAEAAcABgABAAEAAgABAAwAAwADAAkABQAIAAEACwABAAIAAwASABQABAABAAMABgABAAcAAwAFAAUABwACAAIADAADAAEABAACAAMAAgADAAsACAAHAAQAEQABAAkAGQABAAEABAACAAIABAABAAIABwABAAEAAQADAAEAAgAGABAAAQACAAEAAQADAAwAFAACAAUAFAAIAAcABgACAAEAAQABAAEABgACAAEAAgAKAAEAAQAGAAEAAwABAAIAAQAEAAEADAAEAAEAAwABAAEAAQABAAEACgAEAAcABQANAAEADwABAAEAHgALAAkAAQAPACYADgABACAAEQAUAAEACQAfAAIAFQAJAAQAMQAWAAIAAQANAAEACwAtACMAKwA3AAwAEwBTAAEAAwACAAMADQACAAEABwADABIAAwANAAgAAQAIABIABQADAAcAGQAYAAkAGAAoAAMAEQAYAAIAAQAGAAIAAwAQAA8ABgAHAAMADAABAAkABwADAAMAAwAPABUABQAQAAQABQAMAAsACwADAAYAAwACAB8AAwACAAEAAQAXAAYABgABAAQAAgAGAAUAAgABAAEAAwADABYAAgAGAAIAAwARAAMAAgAEAAUAAQAJAAUAAQABAAYADwAMAAMAEQACAA4AAgAIAAEAFwAQAAQAAgAXAAgADwAXABQADAAZABMALwALABUAQQAuAAQAAwABAAUABgABAAIABQAaAAIAAQABAAMACwABAAEAAQACAAEAAgADAAEAAQAKAAIAAwABAAEAAQADAAYAAwACAAIABgAGAAkAAgACAAIABgACAAUACgACAAQAAQACAAEAAgACAAMAAQABAAMAAQACAAkAFwAJAAIAAQABAAEAAQAFAAMAAgABAAoACQAGAAEACgACAB8AGQADAAcABQAoAAEADwAGABEABwAbALQAAQADAAIAAgABAAEAAQAGAAMACgAHAAEAAwAGABEACAAGAAIAAgABAAMABQAFAAgAEAAOAA8AAQABAAQAAQACAAEAAQABAAMAAgAHAAUABgACAAUACgABAAQAAgAJAAEAAQALAAYAAQAsAAEAAwAHAAkABQABAAMAAQABAAoABwABAAoABAACAAcAFQAPAAcAAgAFAAEACAADAAQAAQADAAEABgABAAQAAgABAAQACgAIAAEABAAFAAEABQAKAAIABwABAAoAAQABAAMABAALAAoAHQAEAAcAAwAFAAIAAwAhAAUAAgATAAMAAQAEAAIABgAfAAsAAQADAAMAAwABAAgACgAJAAwACwAMAAgAAwAOAAgABgALAAEABAApAAMAAQACAAcADQABAAUABgACAAYADAAMABYABQAJAAQACAAJAAkAIgAGABgAAQABABQACQAJAAMABAABAAcAAgACAAIABgACABwABQADAAYAAQAEAAYABwAEAAIAAQAEAAIADQAGAAQABAADAAEACAAIAAMAAgABAAUAAQACAAIAAwABAAsACwAHAAMABgAKAAgABgAQABAAFgAHAAwABgAVAAUABAAGAAYAAwAGAAEAAwACAAEAAgAIAB0AAQAKAAEABgANAAYABgATAB8AAQANAAQABAAWABEAGgAhAAoABAAPAAwAGQAGAEMACgACAAMAAQAGAAoAAgAGAAIACQABAAkABAAEAAEAAgAQAAIABQAJAAIAAwAIAAEACAADAAkABAAIAAYABAAIAAsAAwACAAEAAQADABoAAQAHAAUAAQALAAEABQADAAUAAgANAAYAJwAFAAEABQACAAsABgAKAAUAAQAPAAUAAwAGABMAFQAWAAIABAABAAYAAQAIAAEABAAIAAIABAACAAIACQACAAEAAQABAAQAAwAGAAMADAAHAAEADgACAAQACgACAA0AAQARAAcAAwACAAEAAwACAA0ABwAOAAwAAwABAB0AAgAIAAkADwAOAAkADgABAAMAAQAGAAUACQALAAMAJgArABQABwAHAAgABQAPAAwAEwAPAFEACAAHAAEABQBJAA0AJQAcAAgACAABAA8AEgAUAKUAHAABAAYACwAIAAQADgAHAA8AAQADAAMABgAEAAEABwAOAAEAAQALAB4AAQAFAAEABAAOAAEABAACAAcANAACAAYAHQADAAEACQABABUAAwAFAAEAGgADAAsADgALAAEAEQAFAAEAAgABAAMAAgAIAAEAAgAJAAwAAQABAAIAAwAIAAMAGAAMAAcABwAFABEAAwADAAMAAQAXAAoABAAEAAYAAwABABAAEQAWAAMACgAVABAAEAAGAAQACgACAAEAAQACAAgACAAGAAUAAwADAAMAJwAZAA8AAQABABAABgAHABkADwAGAAYADAABABYADQABAAQACQAFAAwAAgAJAAEADAAcAAgAAwAFAAoAFgA8AAEAAgAoAAQAPQA/AAQAAQANAAwAAQAEAB8ADAABAA4AWQAFABAABgAdAA4AAgAFADEAEgASAAUAHQAhAC8AAQARAAEAEwAMAAIACQAHACcADAADAAcADAAnAAMAAQAuAAQADAADAAgACQAFAB8ADwASAAMAAgACAEIAEwANABEABQADAC4AfAANADkAIgACAAUABAAFAAgAAQABAAEABAADAAEAEQAFAAMABQADAAEACAAFAAYAAwAbAAMAGgAHAAwABwACABEAAwAHABIATgAQAAQAJAABAAIAAQAGAAIAAQAnABEABwAEAA0ABAAEAAQAAQAKAAQAAgAEAAYAAwAKAAEAEwABABoAAgAEACEAAgBJAC8ABwADAAgAAgAEAA8AEgABAB0AAgApAA4AAQAVABAAKQAHACcAGQANACwAAgACAAoAAQANAAcAAQAHAAMABQAUAAQACAACADEAAQAKAAYAAQAGAAcACgAHAAsAEAADAAwAFAAEAAoAAwABAAIACwACABwACQACAAQABwACAA8AAQAbAAEAHAARAAQABQAKAAcAAwAYAAoACwAGABoAAwACAAcAAgACADEAEAAKABAADwAEAAUAGwA9AB4ADgAmABYAAgAHAAUAAQADAAwAFwAYABEAEQADAAMAAgAEAAEABgACAAcABQABAAEABQABAAEACQAEAAEAAwAGAAEACAACAAgABAAOAAMABQALAAQAAQADACAAAQATAAQAAQANAAsABQACAAEACAAGAAgAAQAGAAUADQADABcACwAFAAMAEAADAAkACgABABgAAwDGADQABAACAAIABQAOAAUABAAWAAUAFAAEAAsABgApAAEABQACAAIACwAFAAIAHAAjAAgAFgADABIAAwAKAAcABQADAAQAAQAFAAMACAAJAAMABgACABAAFgAEAAUABQADAAMAEgAXAAIABgAXAAUAGwAIAAEAIQACAAwAKwAQAAUAAgADAAYAAQAUAAQAAgAJAAcAAQALAAIACgADAA4AHwAJAAMAGQASABQAAgAFAAUAGgAOAAEACwARAAwAKAATAAkABgAfAFMAAgAHAAkAEwBOAAwADgAVAEwADABxAE8AIgAEAAEAAQA9ABIAVQAKAAIAAgANAB8ACwAyAAYAIQCfALMABgAGAAcABAAEAAIABAACAAUACAAHABQAIAAWAAEAAwAKAAYABwAcAAUACgAJAAIATQATAA0AAgAFAAEABAAEAAcABAANAAMACQAfABEAAwAaAAIABgAGAAUABAABAAcACwADAAQAAgABAAYAAgAUAAQAAQAJAAIABgADAAcAAQABAAEAFAACAAMAAQAGAAIAAwAGAAIABAAIAAEABQANAAgABAALABcAAQAKAAYAAgABAAMAFQACAAIABAAYAB8ABAAKAAoAAgAFAMAADwAEABAABwAJADMAAQACAAEAAQAFAAEAAQACAAEAAwAFAAMAAQADAAQAAQADAAEAAwADAAkACAABAAIAAgACAAQABAASAAwAXAACAAoABAADAA4ABQAZABAAKgAEAA4ABAACABUABQB+AB4AHwACAAEABQANAAMAFgAFAAYABgAUAAwAAQAOAAwAVwADABMAAQAIAAIACQAJAAMAAwAXAAIAAwAHAAYAAwABAAIAAwAJAAEAAwABAAYAAwACAAEAAwALAAMAAQAGAAoAAwACAAMAAQACAAEABQABAAEACwADAAYABAABAAcAAgABAAIABQAFACIABAAOABIABAATAAcABQAIAAIABgBPAAEABQACAA4ACAACAAkAAgABACQAHAAQAAQAAQABAAEAAgAMAAYAKgAnABAAFwAHAA8ADwADAAIADAAHABUAQAAGAAkAHAAIAAwAAwADACkAOwAYADMANwA5ACYBCQAJAAIABgACAA8AAQACAA0AJgBaAAkACQAJAAMACwAHAAEAAQABAAUABgADAAIAAQACAAIAAwAIAAEABAAEAAEABQAHAAEABAADABQABAAJAAEAAQABAAUABQARAAEABQACAAYAAgAEAAEABAAFAAcAAwASAAsACwAgAAcABQAEAAcACwB/AAgABAADAAMAAQAKAAEAAQAGABUADgABABAAAQAHAAEAAwAGAAkAQQAzAAQAAwANAAMACgABAAEADAAJABUAbgADABMAGAABAAEACgA+AAQAAQAdACoATgAcABQAEgBSAAYAAwAPAAYAVAA6AP0ADwCbAAgBDwAVAAkADgAHADoAKAAnAEGwxwELECAA/wAABC8F4C3/LUCmn6YAQdLHAQsmgD/NzMw9CtcjPG8SgzoXt9E4rMUnN703hjWVv9Yzd8wrMl9wiTAAQYDIAQtGBAAAAOeOAADnjgAABAAAAPGOAADxjgAACAAAAPSOAAD0jgAACAAAAPmOAAD5jgAABAAAAOqOAADqjgAACAAAAOqOAADtjgBB0MgBC5IC/5AAAAORAAAHkQAAC5EAAMGQAADBkAAAwZAAAMGQAADHkAAAz5AAANeQAADfkAAA55AAAO+QAAD3kAAA35AAAJOQAACTkAAAk5AAAJOQAACXkAAAnZAAAKOQAACpkAAAr5AAALWQAAC7kAAAqZAAAP8AAP///wD/AP8A/wD///8AAP///wD///8AAP8AAAAA6HoAANB0AADQdAAA0HQAANB0AAA4ewAAWHsAANB0AAAIewAA0HQAANB0AAAIewAAOHsAADh7AABYewAAWHsAAOh6AABYewAAWHsAAFh7AADQdAAA0HQAANB0AAAAAAAACHsAAEB7AAAIdQAAOHsAAOh6AAA4ewAAWHsAANB0AADQdABB8MoBCxLQdAAA2HQAAAh7AABYewAA0HQAQZDLAQsi6HoAANB0AADQdAAACHsAAAh7AADYdAAA0HQAAFB7AAA4ewBBwMsBCyIIewAA0HQAADh7AAAIewAACHsAANh0AADQdAAA0HQAAAh7AEHwywELEgh7AADYdAAA0HQAAAh7AAAIewBBkMwBCzboegAA2HQAAFh7AADQdAAACHsAANh0AAA4ewAAOHsAAAh7AADYdAAA0HQAANB0AAA4ewAAOHsAQdDMAQsSCHsAANh0AAAIewAAOHsAANB0AEHwzAELMgh7AAA4ewAAOHsAANh0AAAIewAA2HQAADh7AADYdAAACHsAANh0AADQdAAAOHsAANB0AEGwzQELIgh7AADYdAAA0HQAADh7AADQdAAA0HQAANB0AADQdAAA0HQAQeDNAQs2CHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AAA4ewAAOHsAANB0AEGgzgELEgh7AADYdAAA0HQAANB0AADQdABBwM4BC3YIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAAAAAAAAh7AADYdAAAOHsAANB0AADQdAAA0HQAANB0AAA4ewAACHsAANh0AADQdAAAYHsAAGB7AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AAA4ewAAOHsAADh7AEHAzwELEgh7AADYdAAA0HQAANB0AAA4ewBB4M8BC4IBCHsAANh0AADQdAAA0HQAANB0AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AABQewAA0HQAADh7AADQdAAA0HQAAAh7AADYdAAA0HQAAFB7AAA4ewAA0HQAANB0AAAAAAAACHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AADQdABB8NABCyIIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AEGg0QELRgh7AADYdAAA0HQAANB0AAA4ewAAOHsAANB0AAAAAAAACHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQfDRAQt2CHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AADQdAAA0HQAADh7AAA4ewAAAAAAAOh6AABYewAA0HQAANB0AADoegAA2HQAANB0AADQdAAAOHsAADh7AADQdAAA0HQAANB0AADQdABB8NIBC5IBCHsAANh0AADQdAAAQHsAAAh7AADQdAAA0HQAANB0AADQdAAAOHsAANB0AADQdAAA6HoAANB0AADQdAAA0HQAANB0AADQdAAA0HQAAAAAAADoegAAOHsAANB0AAAIewAA6HoAANh0AAAIewAAOHsAAOh6AADYdAAA0HQAADh7AADoegAA0HQAANB0AADQdAAA0HQAQZDUAQsi6HoAANB0AAA4ewAA0HQAAAh7AADQdAAA0HQAAAh7AAA4ewBBwNQBC4YBCHsAANh0AADQdAAAOHsAAAh7AADYdAAAUHsAAFB7AABQewAAUHsAAFB7AAAAAAAACHsAAFh2AAA4ewAA0HQAAAh7AACYdgAAOHsAAFh7AAAIewAAmHYAADh7AAAIewAACHsAAJh2AAA4ewAAOHsAANB0AADIdgAA0HQAAFh7AADQdAAA0HQAQdDVAQsy6HoAACB2AADQdAAAWHsAANB0AABAewAAMHsAAAAAAAA4ewAAIHYAAFh7AADYdAAAWHsAQZDWAQti0HQAACB2AABYewAAWHsAAFh7AADYdAAA0HQAANB0AADoegAAQHUAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAQYDXAQs26HoAADB1AAA4ewAAOHsAAOh6AABAdQAA0HQAANB0AADoegAAQHUAANB0AADQdAAAWHsAADh7AEHA1wELFuh6AABAdQAA0HQAANB0AADQdAAAOHsAQeDXAQsW6HoAAEB1AADQdAAAWHsAADh7AAA4ewBBgNgBCzLoegAAQHUAANB0AABYewAAWHsAAFh7AAA4ewAAAAAAAOh6AABAdQAAQHsAAAh7AABYewBBwNgBCyLoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHw2AELEuh6AABAdQAA0HQAADh7AABAewBBkNkBC0boegAAQHUAANB0AAA4ewAAQHsAAAh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHg2QELcuh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAA6HoAAEB1AADQdAAAWHsAANB0AABAewAA2HQAAFh7AADQdABB4NoBCxLoegAAQHUAANB0AABAewAA2HQAQYDbAQsW6HoAAEB1AADQdAAAWHsAAEB7AAA4ewBBoNsBCzboegAAQHUAANB0AABYewAAQHsAADh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAAQHsAQeDbAQvWAeh6AABAdQAA0HQAANB0AADQdAAAQHsAAFh7AAAAAAAA6HoAAEB1AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAQHsAAEB7AABAewAA6HoAAEB1AADQdAAA0HQAAEB7AABYewAAOHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAAFh7AAA4ewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAWHsAQcDdAQsS6HoAAEB1AADQdAAA0HQAAAh7AEHg3QELRuh6AADgdwAAOHsAAFh7AADoegAA+HUAADh7AADYdAAA6HoAAOh1AAA4ewAAOHsAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQbDeAQvhA9B0AADQdAAA0HQAANB0AAACAADAAwAAwAQAAMAFAADABgAAwAcAAMAIAADACQAAwAoAAMALAADADAAAwA0AAMAOAADADwAAwBAAAMARAADAEgAAwBMAAMAUAADAFQAAwBYAAMAXAADAGAAAwBkAAMAaAADAGwAAwBwAAMAdAADAHgAAwB8AAMAAAACzAQAAwwIAAMMDAADDBAAAwwUAAMMGAADDBwAAwwgAAMMJAADDCgAAwwsAAMMMAADDDQAA0w4AAMMPAADDAAAMuwEADMMCAAzDAwAMwwQADNMAAAAA/////////////////////////////////////////////////////////////////wABAgMEBQYHCAn/////////CgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiP///////8KCwwNDg8QERITFBUWFxgZGhscHR4fICEiI/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AQaDiAQsYEQAKABEREQAAAAAFAAAAAAAACQAAAAALAEHA4gELIREADwoREREDCgcAARMJCwsAAAkGCwAACwAGEQAAABEREQBB8eIBCwELAEH64gELGBEACgoREREACgAAAgAJCwAAAAkACwAACwBBq+MBCwEMAEG34wELFQwAAAAADAAAAAAJDAAAAAAADAAADABB5eMBCwEOAEHx4wELFQ0AAAAEDQAAAAAJDgAAAAAADgAADgBBn+QBCwEQAEGr5AELHg8AAAAADwAAAAAJEAAAAAAAEAAAEAAAEgAAABISEgBB4uQBCw4SAAAAEhISAAAAAAAACQBBk+UBCwELAEGf5QELFQoAAAAACgAAAAAJCwAAAAAACwAACwBBzeUBCwEMAEHZ5QEL3gIMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYKAAAAZAAAAOgDAAAQJwAAoIYBAEBCDwCAlpgAAOH1BQMAAAAEAAAABAAAAAYAAACD+aIARE5uAPwpFQDRVycA3TT1AGLbwAA8mZUAQZBDAGNR/gC73qsAt2HFADpuJADSTUIASQbgAAnqLgAcktEA6x3+ACmxHADoPqcA9TWCAES7LgCc6YQAtCZwAEF+XwDWkTkAU4M5AJz0OQCLX4QAKPm9APgfOwDe/5cAD5gFABEv7wAKWosAbR9tAM9+NgAJyycARk+3AJ5mPwAt6l8Auid1AOXrxwA9e/EA9zkHAJJSigD7a+oAH7FfAAhdjQAwA1YAe/xGAPCrawAgvM8ANvSaAOOpHQBeYZEACBvmAIWZZQCgFF8AjUBoAIDY/wAnc00ABgYxAMpWFQDJqHMAe+JgAGuMwABBw+gBC21A+yH5PwAAAAAtRHQ+AAAAgJhG+DwAAABgUcx4OwAAAICDG/A5AAAAQCAlejgAAACAIoLjNgAAAAAd82k1OGPtPtoPST9emHs/2g/JP2k3rDFoISIztA8UM2ghojMAAAAAAADwPwAAAAAAAPg/AEG46QELCAbQ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aXZlAFBsb3RMaW5lc0hvdmVyZWQAUGxvdEhpc3RvZ3JhbUhvdmVyZWQAVGV4dFNlbGVjdGVkQmcARHJhZ0Ryb3BUYXJnZXQATmF2SGlnaGxpZ2h0AE5hdldpbmRvd2luZ0hpZ2hsaWdodABOYXZXaW5kb3dpbmdEaW1CZwBNb2RhbFdpbmRvd0RpbUJnAFVua25vd24AIyNUb29sdGlwXyUwMmQAIyNNZW51XyUwMmQAIyNQb3B1cF8lMDh4AHdpbmRvd19jb250ZXh0AHZvaWRfY29udGV4dABjb2x1bW5zACNTb3VyY2VFeHRlcm4ACiUqcyUuKnMAICUuKnMAYWIACgBMb2cgVG8gVFRZAExvZyBUbyBGaWxlAExvZyBUbyBDbGlwYm9hcmQARGVwdGgAcmIAd3QASW1HdWkgTWV0cmljcwABRGVhciBJbUd1aSAlcwBBcHBsaWNhdGlvbiBhdmVyYWdlICUuM2YgbXMvZnJhbWUgKCUuMWYgRlBTKQAlZCB2ZXJ0aWNlcywgJWQgaW5kaWNlcyAoJWQgdHJpYW5nbGVzKQAlZCBhY3RpdmUgd2luZG93cyAoJWQgdmlzaWJsZSkAJWQgYWxsb2NhdGlvbnMAU2hvdyBjbGlwcGluZyByZWN0YW5nbGVzIHdoZW4gaG92ZXJpbmcgZHJhdyBjb21tYW5kcwBDdHJsIHNob3dzIHdpbmRvdyBiZWdpbiBvcmRlcgBXaW5kb3dzAERyYXdMaXN0AEFjdGl2ZSBEcmF3TGlzdHMgKCVkKQBQb3B1cHMAUG9wdXBzICglZCkAUG9wdXBJRDogJTA4eCwgV2luZG93OiAnJXMnJXMlcwBOVUxMACBDaGlsZFdpbmRvdwAgQ2hpbGRNZW51AFRhYkJhcnMAVGFiIEJhcnMgKCVkKQBJbnRlcm5hbCBzdGF0ZQBOb25lAE1vdXNlAE5hdgBOYXZLZXlib2FyZABOYXZHYW1lcGFkAEhvdmVyZWRXaW5kb3c6ICclcycASG92ZXJlZFJvb3RXaW5kb3c6ICclcycASG92ZXJlZElkOiAweCUwOFgvMHglMDhYICglLjJmIHNlYyksIEFsbG93T3ZlcmxhcDogJWQAQWN0aXZlSWQ6IDB4JTA4WC8weCUwOFggKCUuMmYgc2VjKSwgQWxsb3dPdmVybGFwOiAlZCwgU291cmNlOiAlcwBBY3RpdmVJZFdpbmRvdzogJyVzJwBNb3ZpbmdXaW5kb3c6ICclcycATmF2V2luZG93OiAnJXMnAE5hdklkOiAweCUwOFgsIE5hdkxheWVyOiAlZABOYXZJbnB1dFNvdXJjZTogJXMATmF2QWN0aXZlOiAlZCwgTmF2VmlzaWJsZTogJWQATmF2QWN0aXZhdGVJZDogMHglMDhYLCBOYXZJbnB1dElkOiAweCUwOFgATmF2RGlzYWJsZUhpZ2hsaWdodDogJWQsIE5hdkRpc2FibGVNb3VzZUhvdmVyOiAlZABOYXZXaW5kb3dpbmdUYXJnZXQ6ICclcycARHJhZ0Ryb3A6ICVkLCBTb3VyY2VJZCA9IDB4JTA4WCwgUGF5bG9hZCAiJXMiICglZCBieXRlcykAIyNPdmVybGF5ACVzLyVzXyUwOFgAJXMvJTA4WAAjUkVTSVpFACMjI05hdldpbmRvd2luZ0xpc3QAKFBvcHVwKQAoTWFpbiBtZW51IGJhcikAKFVudGl0bGVkKQBQb3M9JWYsJWYAU2l6ZT0lZiwlZgBDb2xsYXBzZWQ9JWQAIyMjAFslc11bJXNdCgBQb3M9JWQsJWQKAFNpemU9JWQsJWQKAENvbGxhcHNlZD0lZAoAJXMgKCVkKQAlcyAnJXMnLCAlZCBAIDB4JXAAUG9zOiAoJS4xZiwlLjFmKSwgU2l6ZTogKCUuMWYsJS4xZiksIFNpemVDb250ZW50cyAoJS4xZiwlLjFmKQBGbGFnczogMHglMDhYICglcyVzJXMlcyVzJXMlcyVzJXMuLikAQ2hpbGQgAFRvb2x0aXAgAFBvcHVwIABNb2RhbCAAQ2hpbGRNZW51IABOb1NhdmVkU2V0dGluZ3MgAE5vTW91c2VJbnB1dHMATm9OYXZJbnB1dHMAQWx3YXlzQXV0b1Jlc2l6ZQBTY3JvbGw6ICglLjJmLyUuMmYsJS4yZi8lLjJmKQBBY3RpdmU6ICVkLyVkLCBXcml0ZUFjY2Vzc2VkOiAlZCwgQmVnaW5PcmRlcldpdGhpbkNvbnRleHQ6ICVkAEFwcGVhcmluZzogJWQsIEhpZGRlbjogJWQgKFJlZyAlZCBSZXNpemUgJWQpLCBTa2lwSXRlbXM6ICVkAE5hdkxhc3RJZHM6IDB4JTA4WCwweCUwOFgs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bnRDb250ZXh0AERlYnVnQ2hlY2tWZXJzaW9uQW5kRGF0YUxheW91dABHZXRJTwBHZXRTdHlsZQBHZXREcmF3RGF0YQBOZXdGcmFtZQBSZW5kZXIARW5kRnJhbWUAU2hvd0RlbW9XaW5kb3cAU2hvd0Fib3V0V2luZG93AFNob3dNZXRyaWNzV2luZG93AFNob3dTdHlsZUVkaXRvcgBTaG93U3R5bGVTZWxlY3RvcgBTaG93Rm9udFNlbGVjdG9yAFNob3dVc2VyR3VpZGUAR2V0VmVyc2lvbgBTdHlsZUNvbG9yc0RhcmsAU3R5bGVDb2xvcnNDbGFzc2ljAFN0eWxlQ29sb3JzTGlnaHQAQmVnaW4ARW5kAEJlZ2luQ2hpbGQARW5kQ2hpbGQAR2V0Q29udGVudFJlZ2lvbk1heABHZXRDb250ZW50UmVnaW9uQXZhaWwAR2V0Q29udGVudFJlZ2lvbkF2YWlsV2lkdGgAR2V0V2luZG93Q29udGVudFJlZ2lvbk1pbgBHZXRXaW5kb3dDb250ZW50UmVnaW9uTWF4AEdldFdpbmRvd0NvbnRlbnRSZWdpb25XaWR0aABHZXRXaW5kb3dEcmF3TGlzdABHZXRXaW5kb3dQb3MAR2V0V2luZG93U2l6ZQBHZXRXaW5kb3dXaWR0aABHZXRXaW5kb3dIZWlnaHQASXNXaW5kb3dDb2xsYXBzZWQASXNXaW5kb3dBcHBlYXJpbmcAU2V0V2luZG93Rm9udFNjYWxlAFNldE5leHRXaW5kb3dQb3MAU2V0TmV4dFdpbmRvd1NpemUAU2V0TmV4dFdpbmRvd1NpemVDb25zdHJhaW50cwBTZXROZXh0V2luZG93Q29udGVudFNpemUAU2V0TmV4dFdpbmRvd0NvbGxhcHNlZABTZXROZXh0V2luZG93Rm9jdXMAU2V0TmV4dFdpbmRvd0JnQWxwaGEAU2V0V2luZG93UG9zAFNldFdpbmRvd1NpemUAU2V0V2luZG93Q29sbGFwc2VkAFNldFdpbmRvd0ZvY3VzAFNldFdpbmRvd05hbWVQb3MAU2V0V2luZG93TmFtZVNpemUAU2V0V2luZG93TmFtZUNvbGxhcHNlZABTZXRXaW5kb3dOYW1lRm9jdXMAR2V0U2Nyb2xsWABHZXRTY3JvbGxZAEdldFNjcm9sbE1heFgAR2V0U2Nyb2xsTWF4WQBTZXRTY3JvbGxYAFNldFNjcm9sbFkAU2V0U2Nyb2xsSGVyZVkAU2V0U2Nyb2xsRnJvbVBvc1kAU2V0U3RhdGVTdG9yYWdlAEdldFN0YXRlU3RvcmFnZQBQdXNoRm9udABQb3BGb250AFB1c2hTdHlsZUNvbG9yAFBvcFN0eWxlQ29sb3IAUHVzaFN0eWxlVmFyAFBvcFN0eWxlVmFyAEdldFN0eWxlQ29sb3JWZWM0AEdldEZvbnQAR2V0Rm9udFNpemUAR2V0Rm9udFRleFV2V2hpdGVQaXhlbABHZXRDb2xvclUzMl9BAEdldENvbG9yVTMyX0IAR2V0Q29sb3JVMzJfQwBQdXNoSXRlbVdpZHRoAFBvcEl0ZW1XaWR0aABDYWxjSXRlbVdpZHRoAFB1c2hUZXh0V3JhcFBvcwBQb3BUZXh0V3JhcFBvcwBQdXNoQWxsb3dLZXlib2FyZEZvY3VzAFBvcEFsbG93S2V5Ym9hcmRGb2N1cwBQdXNoQnV0dG9uUmVwZWF0AFBvcEJ1dHRvblJlcGVhdABTZXBhcmF0b3IAU2FtZUxpbmUATmV3TGluZQBTcGFjaW5nAER1bW15AEluZGVudABVbmluZGVudABCZWdpbkdyb3VwAEVuZEdyb3VwAEdldEN1cnNvclBvcwBHZXRDdXJzb3JQb3NYAEdldEN1cnNvclBvc1kAU2V0Q3Vyc29yUG9zAFNldEN1cnNvclBvc1gAU2V0Q3Vyc29yUG9zWQBHZXRDdXJzb3JTdGFydFBvcwBHZXRDdXJzb3JTY3JlZW5Qb3MAU2V0Q3Vyc29yU2NyZWVuUG9zAEFsaWduVGV4dFRvRnJhbWVQYWRkaW5nAEdldFRleHRMaW5lSGVpZ2h0AEdldFRleHRMaW5lSGVpZ2h0V2l0aFNwYWNpbmcAR2V0RnJhbWVIZWlnaHQAR2V0RnJhbWVIZWlnaHRXaXRoU3BhY2luZwBDb2x1bW5zAE5leHRDb2x1bW4AR2V0Q29sdW1uSW5kZXgAR2V0Q29sdW1uV2lkdGgAU2V0Q29sdW1uV2lkdGgAR2V0Q29sdW1uT2Zmc2V0AFNldENvbHVtbk9mZnNldABHZXRDb2x1bW5zQ291bnQAUHVzaElEAFBvcElEAEdldElEAFRleHRVbmZvcm1hdHRlZABUZXh0AFRleHRWAFRleHRDb2xvcmVkAFRleHRDb2xvcmVkVgBUZXh0RGlzYWJsZWQAVGV4dERpc2FibGVkVgBUZXh0V3JhcHBlZABUZXh0V3JhcHBlZFYATGFiZWxUZXh0AExhYmVsVGV4dFYAQnVsbGV0VGV4dABCdWxsZXRUZXh0VgBCdWxsZXQAQnV0dG9uAFNtYWxsQnV0dG9uAEFycm93QnV0dG9uAEludmlzaWJsZUJ1dHRvbgBJbWFnZQBJbWFnZUJ1dHRvbgBDaGVja2JveABDaGVja2JveEZsYWdzAFJhZGlvQnV0dG9uX0EAUmFkaW9CdXR0b25fQgBQbG90TGluZXMAUGxvdEhpc3RvZ3JhbQBQcm9ncmVzc0JhcgBCZWdpbkNvbWJvAEVuZENvbWJvAENvbWJvAERyYWdGbG9hdABEcmFnRmxvYXQyAERyYWdGbG9hdDMARHJhZ0Zsb2F0NABEcmFnRmxvYXRSYW5nZTIARHJhZ0ludABEcmFnSW50MgBEcmFnSW50MwBEcmFnSW50NABEcmFnSW50UmFuZ2UyAERyYWdTY2FsYXIASW5wdXRUZXh0AElucHV0VGV4dE11bHRpbGluZQBJbnB1dEZsb2F0AElucHV0RmxvYXQyAElucHV0RmxvYXQzAElucHV0RmxvYXQ0AElucHV0SW50AElucHV0SW50MgBJbnB1dEludDMASW5wdXRJbnQ0AElucHV0RG91YmxlAElucHV0U2NhbGFyAFNsaWRlckZsb2F0AFNsaWRlckZsb2F0MgBTbGlkZXJGbG9hdDMAU2xpZGVyRmxvYXQ0AFNsaWRlckFuZ2xlAFNsaWRlckludABTbGlkZXJJbnQyAFNsaWRlckludDMAU2xpZGVySW50NABTbGlkZXJTY2FsYXIAVlNsaWRlckZsb2F0AFZTbGlkZXJJbnQAVlNsaWRlclNjYWxhcgBDb2xvckVkaXQzAENvbG9yRWRpdDQAQ29sb3JQaWNrZXIzAENvbG9yUGlja2VyNABDb2xvckJ1dHRvbgBTZXRDb2xvckVkaXRPcHRpb25zAFRyZWVOb2RlX0EAVHJlZU5vZGVfQgBUcmVlTm9kZV9DAFRyZWVOb2RlRXhfQQBUcmVlTm9kZUV4X0IAVHJlZU5vZGVFeF9DAFRyZWVQdXNoX0EAVHJlZVB1c2hfQgBUcmVlUG9wAFRyZWVBZHZhbmNlVG9MYWJlbFBvcwBHZXRUcmVlTm9kZVRvTGFiZWxTcGFjaW5nAFNldE5leHRUcmVlTm9kZU9wZW4AQ29sbGFwc2luZ0hlYWRlcl9BAENvbGxhcHNpbmdIZWFkZXJfQgBTZWxlY3RhYmxlX0EAU2VsZWN0YWJsZV9CAExpc3RCb3hfQQBMaXN0Qm94X0IATGlzdEJveEhlYWRlcl9BAExpc3RCb3hIZWFkZXJfQgBMaXN0Qm94Rm9vdGVyAFZhbHVlX0EAVmFsdWVfQgBWYWx1ZV9DAFZhbHVlX0QAU2V0VG9vbHRpcABCZWdpblRvb2x0aXAARW5kVG9vbHRpcABCZWdpbk1haW5NZW51QmFyAEVuZE1haW5NZW51QmFyAEJlZ2luTWVudUJhcgBFbmRNZW51QmFyAEJlZ2luTWVudQBFbmRNZW51AE1lbnVJdGVtX0EATWVudUl0ZW1fQgBPcGVuUG9wdXAAT3BlblBvcHVwT25JdGVtQ2xpY2sAQmVnaW5Qb3B1cABCZWdpblBvcHVwTW9kYWwAQmVnaW5Qb3B1cENvbnRleHRJdGVtAEJlZ2luUG9wdXBDb250ZXh0V2luZG93AEJlZ2luUG9wdXBDb250ZXh0Vm9pZABFbmRQb3B1cABJc1BvcHVwT3BlbgBDbG9zZUN1cnJlbnRQb3B1cABCZWdpblRhYkJhcgBFbmRUYWJCYXIAQmVnaW5UYWJJdGVtAEVuZFRhYkl0ZW0AU2V0VGFiSXRlbUNsb3NlZABMb2dUb1RUWQBMb2dUb0ZpbGUATG9nVG9DbGlwYm9hcmQATG9nRmluaXNoAExvZ0J1dHRvbnMATG9nVGV4dABCZWdpbkRyYWdEcm9wU291cmNlAFNldERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFNvdXJjZQBCZWdpbkRyYWdEcm9wVGFyZ2V0AEFjY2VwdERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFRhcmdldABHZXREcmFnRHJvcFBheWxvYWQAUHVzaENsaXBSZWN0AFBvcENsaXBSZWN0AFNldEl0ZW1EZWZhdWx0Rm9jdXMAU2V0S2V5Ym9hcmRGb2N1c0hlcmUASXNJdGVtSG92ZXJlZABJc0l0ZW1BY3RpdmUASXNJdGVtRWRpdGVkAElzSXRlbUZvY3VzZWQASXNJdGVtQ2xpY2tlZABJc0l0ZW1WaXNpYmxlAElzSXRlbURlYWN0aXZhdGVkAElzSXRlbURlYWN0aXZhdGVkQWZ0ZXJFZGl0AElzQW55SXRlbUhvdmVyZWQASXNBbnlJdGVtQWN0aXZlAElzQW55SXRlbUZvY3VzZWQAR2V0SXRlbVJlY3RNaW4AR2V0SXRlbVJlY3RNYXgAR2V0SXRlbVJlY3RTaXplAFNldEl0ZW1BbGxvd092ZXJsYXAASXNXaW5kb3dGb2N1c2VkAElzV2luZG93SG92ZXJlZABJc1JlY3RWaXNpYmxlX0EASXNSZWN0VmlzaWJsZV9CAEdldFRpbWUAR2V0RnJhbWVDb3VudABHZXRPdmVybGF5RHJhd0xpc3QAR2V0RHJhd0xpc3RTaGFyZWREYXRhAEdldFN0eWxlQ29sb3JOYW1lAENhbGNUZXh0U2l6ZQBDYWxjTGlzdENsaXBwaW5nAEJlZ2luQ2hpbGRGcmFtZQBFbmRDaGlsZEZyYW1lAENvbG9yQ29udmVydFUzMlRvRmxvYXQ0AENvbG9yQ29udmVydEZsb2F0NFRvVTMyAENvbG9yQ29udmVydFJHQnRvSFNWAENvbG9yQ29udmVydEhTVnRvUkdCAEdldEtleUluZGV4AElzS2V5RG93bgBJc0tleVByZXNzZWQASXNLZXlSZWxlYXNlZABHZXRLZXlQcmVzc2VkQW1vdW50AElzTW91c2VEb3duAElzQW55TW91c2VEb3duAElzTW91c2VDbGlja2VkAElzTW91c2VEb3VibGVDbGlja2VkAElzTW91c2VSZWxlYXNlZABJc01vdXNlRHJhZ2dpbmcASXNNb3VzZUhvdmVyaW5nUmVjdABJc01vdXNlUG9zVmFsaWQAR2V0TW91c2VQb3MAR2V0TW91c2VQb3NPbk9wZW5pbmdDdXJyZW50UG9wdXAAR2V0TW91c2VEcmFnRGVsdGEAUmVzZXRNb3VzZURyYWdEZWx0YQBHZXRNb3VzZUN1cnNvcgBTZXRNb3VzZUN1cnNvcgBDYXB0dXJlS2V5Ym9hcmRGcm9tQXBwAENhcHR1cmVNb3VzZUZyb21BcHAAR2V0Q2xpcGJvYXJkVGV4dABTZXRDbGlwYm9hcmRUZXh0AExvYWRJbmlTZXR0aW5nc0Zyb21NZW1vcnkAU2F2ZUluaVNldHRpbmdzVG9NZW1vcnkAU2V0QWxsb2NhdG9yRnVuY3Rpb25zAE1lbUFsbG9jAE1lbUZyZWUAaWlpAE4xMGVtc2NyaXB0ZW4zdmFsRQB2aWlpaQBOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TXzExY2hhcl90cmFpdHNJY0VFTlNfOWFsbG9jYXRvckljRUVFRQBOU3QzX18yMjFfX2Jhc2ljX3N0cmluZ19jb21tb25JTGIxRUVFAGlpaWZpAHgAeQAyM2ltcG9ydF9tYXliZV9udWxsX3ZhbHVlSTZJbVZlYzJFAGlpaWlpAGlpaWYAaWlpZmYAaWlpaQAxMmFjY2Vzc192YWx1ZUlmTG0xRUUAdmlmZmZpaWkAegB3ADZJbVZlYzIAdmlpZmlpADEyYWNjZXNzX3ZhbHVlSWlMbTFFRQBpaWlpZmkAUDIwSW1EcmF3TGlzdFNoYXJlZERhdGEAMjBJbURyYXdMaXN0U2hhcmVkRGF0YQBQMTBJbURyYXdMaXN0ADEwSW1EcmF3TGlzdABkaQBpaWlpaWkAJXMAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TMF8xMWNoYXJfdHJhaXRzSWNFRU5TMF85YWxsb2NhdG9ySWNFRUVFRQAyNGltcG9ydF9tYXliZV9udWxsX3N0cmluZwAyM2FjY2Vzc19tYXliZV9udWxsX3ZhbHVlSWJMbTFFRQB2aWlmaQB2aWlpAGlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJZkxtNEVFADIzYWNjZXNzX21heWJlX251bGxfdmFsdWVJZkxtNEVFADEyYWNjZXNzX3ZhbHVlSWZMbTNFRQBpaWlpaWlpaWlpAHNldABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lkRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlkRQBsZW5ndGgAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lmRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlmRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lqRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlqRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lpRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlpRQBpaWlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJaUxtNEVFADEyYWNjZXNzX3ZhbHVlSWlMbTNFRQAxMmFjY2Vzc192YWx1ZUlpTG0yRUUAJS4wZiBkZWcAMTJhY2Nlc3NfdmFsdWVJZkxtMkVFAGlpaWlpaWlpAGlpaWlkZGlpADEyYWNjZXNzX3ZhbHVlSWRMbTFFRQBQMjZJbUd1aUlucHV0VGV4dENhbGxiYWNrRGF0YQAyNkltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAGlpaWlpaWlpaWlpAHZpZmlpAHZpaWlpaWlpaWlpADEyYWNjZXNzX3ZhbHVlSWpMbTFFRQAxMmFjY2Vzc192YWx1ZUliTG0xRUUAdmlpaWlpaWkAbnVtYmVyAHZpaWYAZmlpAGlpAHZpaQBQNkltRm9udAA2SW1Gb250AFBLNkltVmVjNAA2SW1WZWM0AFRPRE86ICVzCgBhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoZW1zY3JpcHRlbjo6dmFsKSBjb25zdAB2aWZmAHZpaWlpaQBQMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAdmlmAGZpAHN0cmluZwBQMTBJbUd1aVN0eWxlADEwSW1HdWlTdHlsZQB2aQBQMTBJbURyYXdEYXRhADEwSW1EcmF3RGF0YQBQN0ltR3VpSU8AN0ltR3VpSU8AUDE2V3JhcEltR3VpQ29udGV4dAAxNldyYXBJbUd1aUNvbnRleHQAUDExSW1Gb250QXRsYXMAMTFJbUZvbnRBdGxhcwBJbUd1aVN0eWxlAEFscGhhAFdpbmRvd1BhZGRpbmcAV2luZG93Um91bmRpbmcAV2luZG93Qm9yZGVyU2l6ZQBXaW5kb3dNaW5TaXplAFdpbmRvd1RpdGxlQWxpZ24AQ2hpbGRSb3VuZGluZwBDaGlsZEJvcmRlclNpemUAUG9wdXBSb3VuZGluZwBQb3B1cEJvcmRlclNpemUARnJhbWVQYWRkaW5nAEZyYW1lUm91bmRpbmcARnJhbWVCb3JkZXJTaXplAEl0ZW1TcGFjaW5nAEl0ZW1Jbm5lclNwYWNpbmcAVG91Y2hFeHRyYVBhZGRpbmcASW5kZW50U3BhY2luZwBDb2x1bW5zTWluU3BhY2luZwBTY3JvbGxiYXJTaXplAFNjcm9sbGJhclJvdW5kaW5nAEdyYWJNaW5TaXplAEdyYWJSb3VuZGluZwBUYWJSb3VuZGluZwBUYWJCb3JkZXJTaXplAEJ1dHRvblRleHRBbGlnbgBEaXNwbGF5V2luZG93UGFkZGluZwBEaXNwbGF5U2FmZUFyZWFQYWRkaW5nAE1vdXNlQ3Vyc29yU2NhbGUAQW50aUFsaWFzZWRMaW5lcwBBbnRpQWxpYXNlZEZpbGwAQ3VydmVUZXNzZWxsYXRpb25Ub2wAX2dldEF0X0NvbG9ycwBfc2V0QXRfQ29sb3JzAFNjYWxlQWxsU2l6ZXMAUDZJbVZlYzQAUEs2SW1WZWMyAHYAUEsxMEltR3VpU3R5bGUASW1HdWlJTwBDb25maWdGbGFncwBCYWNrZW5kRmxhZ3MARGlzcGxheVNpemUARGVsdGFUaW1lAEluaVNhdmluZ1JhdGUASW5pRmlsZW5hbWUATG9nRmlsZW5hbWUATW91c2VEb3VibGVDbGlja1RpbWUATW91c2VEb3VibGVDbGlja01heERpc3QATW91c2VEcmFnVGhyZXNob2xkAF9nZXRBdF9LZXlNYXAAX3NldEF0X0tleU1hcABLZXlSZXBlYXREZWxheQBLZXlSZXBlYXRSYXRlAFVzZXJEYXRhAEZvbnRzAEZvbnRHbG9iYWxTY2FsZQBGb250QWxsb3dVc2VyU2NhbGluZwBGb250RGVmYXVsdABEaXNwbGF5RnJhbWVidWZmZXJTY2FsZQBEaXNwbGF5VmlzaWJsZU1pbgBEaXNwbGF5VmlzaWJsZU1heABNb3VzZURyYXdDdXJzb3IAQ29uZmlnTWFjT1NYQmVoYXZpb3JzAENvbmZpZ0lucHV0VGV4dEN1cnNvckJsaW5rAENvbmZpZ1dpbmRvd3NSZXNpemVGcm9tRWRnZXMAQ29uZmlnV2luZG93c01vdmVGcm9tVGl0bGVCYXJPbmx5AEdldENsaXBib2FyZFRleHRGbgBTZXRDbGlwYm9hcmRUZXh0Rm4AQ2xpcGJvYXJkVXNlckRhdGEATW91c2VQb3MAX2dldEF0X01vdXNlRG93bgBfc2V0QXRfTW91c2VEb3duAE1vdXNlV2hlZWwAS2V5Q3RybABLZXlTaGlmdABLZXlBbHQAS2V5U3VwZXIAX2dldEF0X0tleXNEb3duAF9zZXRBdF9LZXlzRG93bgBfZ2V0QXRfTmF2SW5wdXRzAF9zZXRBdF9OYXZJbnB1dHMAQWRkSW5wdXRDaGFyYWN0ZXIAQWRkSW5wdXRDaGFyYWN0ZXJzVVRGOABDbGVhcklucHV0Q2hhcmFjdGVycwBXYW50Q2FwdHVyZU1vdXNlAFdhbnRDYXB0dXJlS2V5Ym9hcmQAV2FudFRleHRJbnB1dABXYW50U2V0TW91c2VQb3MAV2FudFNhdmVJbmlTZXR0aW5ncwBOYXZBY3RpdmUATmF2VmlzaWJsZQBGcmFtZXJhdGUATWV0cmljc1JlbmRlclZlcnRpY2VzAE1ldHJpY3NSZW5kZXJJbmRpY2VzAE1ldHJpY3NSZW5kZXJXaW5kb3dzAE1ldHJpY3NBY3RpdmVXaW5kb3dzAE1ldHJpY3NBY3RpdmVBbGxvY2F0aW9ucwBNb3VzZURlbHRhAF9nZXRBdF9Nb3VzZUNsaWNrZWRQb3MAX2dldEF0X01vdXNlRG93bkR1cmF0aW9uAF9nZXRBdF9LZXlzRG93bkR1cmF0aW9uAF9nZXRBdF9OYXZJbnB1dHNEb3duRHVyYXRpb24AUEs3SW1HdWlJTwBpaWlpZgBmaWlpAEltRm9udEF0bGFzAEFkZEZvbnREZWZhdWx0AEFkZEZvbnRGcm9tTWVtb3J5VFRGAENsZWFyVGV4RGF0YQBDbGVhcklucHV0RGF0YQBDbGVhckZvbnRzAENsZWFyAEJ1aWxkAElzQnVpbHQAR2V0VGV4RGF0YUFzQWxwaGE4AEdldFRleERhdGFBc1JHQkEzMgBHZXRHbHlwaFJhbmdlc0RlZmF1bHQAR2V0R2x5cGhSYW5nZXNLb3JlYW4AR2V0R2x5cGhSYW5nZXNKYXBhbmVzZQBHZXRHbHlwaFJhbmdlc0NoaW5lc2VGdWxsAEdldEdseXBoUmFuZ2VzQ2hpbmVzZVNpbXBsaWZpZWRDb21tb24AR2V0R2x5cGhSYW5nZXNDeXJpbGxpYwBHZXRHbHlwaFJhbmdlc1RoYWkATG9ja2VkAEZsYWdzAFRleElEAFRleERlc2lyZWRXaWR0aABUZXhHbHlwaFBhZGRpbmcAVGV4V2lkdGgAVGV4SGVpZ2h0AFRleFV2U2NhbGUAVGV4VXZXaGl0ZVBpeGVsAEl0ZXJhdGVGb250cwBwaXhlbHMAd2lkdGgAaGVpZ2h0AGJ5dGVzX3Blcl9waXhlbABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0loRUUAaWlpaWZpaQBGb250RGF0YQBidWZmZXIAYnl0ZU9mZnNldABieXRlTGVuZ3RoAFRPRE86IEZvbnREYXRhICV6dSAlenUKAEZvbnREYXRhT3duZWRCeUF0bGFzAEZvbnRObwBTaXplUGl4ZWxzAE92ZXJzYW1wbGVIAE92ZXJzYW1wbGVWAFBpeGVsU25hcEgAR2x5cGhFeHRyYVNwYWNpbmcAR2x5cGhPZmZzZXQAR2x5cGhSYW5nZXMAR2x5cGhNaW5BZHZhbmNlWABHbHlwaE1heEFkdmFuY2VYAE1lcmdlTW9kZQBSYXN0ZXJpemVyRmxhZ3MAUmFzdGVyaXplck11bHRpcGx5AE5hbWUAUEsxMUltRm9udEF0bGFzAEltRm9udABGb250U2l6ZQBTY2FsZQBEaXNwbGF5T2Zmc2V0AEl0ZXJhdGVHbHlwaHMARmFsbGJhY2tHbHlwaABGYWxsYmFja0FkdmFuY2VYAEZhbGxiYWNrQ2hhcgBDb25maWdEYXRhQ291bnQASXRlcmF0ZUNvbmZpZ0RhdGEAQXNjZW50AERlc2NlbnQATWV0cmljc1RvdGFsU3VyZmFjZQBDbGVhck91dHB1dERhdGEAQnVpbGRMb29rdXBUYWJsZQBGaW5kR2x5cGgARmluZEdseXBoTm9GYWxsYmFjawBTZXRGYWxsYmFja0NoYXIAR2V0Q2hhckFkdmFuY2UASXNMb2FkZWQAR2V0RGVidWdOYW1lAENhbGNUZXh0U2l6ZUEAQ2FsY1dvcmRXcmFwUG9zaXRpb25BAFJlbmRlckNoYXIAdmlpaWZpaWkAaWlpZmlmAGlpaWZmZmlpaQA8dW5rbm93bj4AUEs2SW1Gb250AFBLMTFJbUZvbnRHbHlwaAAxMUltRm9udEdseXBoAFAxMkltRm9udENvbmZpZwAxMkltRm9udENvbmZpZwBQMTFJbUZvbnRHbHlwaABJbUZvbnRDb25maWcARHN0Rm9udABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShJbUZvbnRDb25maWcgJiwgZW1zY3JpcHRlbjo6dmFsKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShjb25zdCBJbUZvbnRDb25maWcgJikgY29uc3QAUEsxMkltRm9udENvbmZpZwBJbUZvbnRHbHlwaABDb2RlcG9pbnQAQWR2YW5jZVgAWDAAWTAAWDEAWTEAVTAAVjAAVTEAVjEASW1EcmF3RGF0YQBJdGVyYXRlRHJhd0xpc3RzAFZhbGlkAENtZExpc3RzQ291bnQAVG90YWxJZHhDb3VudABUb3RhbFZ0eENvdW50AERpc3BsYXlQb3MARGVJbmRleEFsbEJ1ZmZlcnMAU2NhbGVDbGlwUmVjdHMAUEsxMEltRHJhd0RhdGEAUEsxMEltRHJhd0xpc3QASW1EcmF3TGlzdABJdGVyYXRlRHJhd0NtZHMASWR4QnVmZmVyAFZ0eEJ1ZmZlcgBQdXNoQ2xpcFJlY3RGdWxsU2NyZWVuAFB1c2hUZXh0dXJlSUQAUG9wVGV4dHVyZUlEAEdldENsaXBSZWN0TWluAEdldENsaXBSZWN0TWF4AEFkZExpbmUAQWRkUmVjdABBZGRSZWN0RmlsbGVkAEFkZFJlY3RGaWxsZWRNdWx0aUNvbG9yAEFkZFF1YWQAQWRkUXVhZEZpbGxlZABBZGRUcmlhbmdsZQBBZGRUcmlhbmdsZUZpbGxlZABBZGRDaXJjbGUAQWRkQ2lyY2xlRmlsbGVkAEFkZFRleHRfQQBBZGRUZXh0X0IAQWRkSW1hZ2UAQWRkSW1hZ2VRdWFkAEFkZEltYWdlUm91bmRlZABBZGRQb2x5bGluZQBBZGRDb252ZXhQb2x5RmlsbGVkAEFkZEJlemllckN1cnZlAFBhdGhDbGVhcgBQYXRoTGluZVRvAFBhdGhMaW5lVG9NZXJnZUR1cGxpY2F0ZQBQYXRoRmlsbENvbnZleABQYXRoU3Ryb2tlAFBhdGhBcmNUbwBQYXRoQXJjVG9GYXN0AFBhdGhCZXppZXJDdXJ2ZVRvAFBhdGhSZWN0AENoYW5uZWxzU3BsaXQAQ2hhbm5lbHNNZXJnZQBDaGFubmVsc1NldEN1cnJlbnQAQWRkQ2FsbGJhY2sAQWRkRHJhd0NtZABDbGVhckZyZWVNZW1vcnkAUHJpbVJlc2VydmUAUHJpbVJlY3QAUHJpbVJlY3RVVgBQcmltUXVhZFVWAFByaW1Xcml0ZVZ0eABQcmltV3JpdGVJZHgAUHJpbVZ0eABVcGRhdGVDbGlwUmVjdABVcGRhdGVUZXh0dXJlSUQAdmlpaWlpaWlpaWlpAHZpaWlpZmkAdmlpaWZmZmkAdmlpaWlmAHZpaWlpaWlpZmkAdmlpaWlpaWlpZmkAdmlpaWlpaWlpaWlpaQB2aWlpZmlpaWZpADIzaW1wb3J0X21heWJlX251bGxfdmFsdWVJNkltVmVjNEUAdmlpaWZpaQB2aWlpZmlpZgB2aWlpaWlpAHZpaWlpaWlmAHZpaWlpaWlpZgB2aWlpaWlpaWkAdmlpaWlpZmkAdmlpaWlpZmlmAHZpaWlpaWYATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJY0VFAFBLOUltRHJhd0NtZAA5SW1EcmF3Q21kAEltRHJhd0NtZABFbGVtQ291bnQAQ2xpcFJlY3QAVGV4dHVyZUlkAFA5SW1EcmF3Q21kAEltR3VpTGlzdENsaXBwZXIAU3RhcnRQb3NZAEl0ZW1zSGVpZ2h0AEl0ZW1zQ291bnQAU3RlcE5vAERpc3BsYXlTdGFydABEaXNwbGF5RW5kAFN0ZXAAUDE2SW1HdWlMaXN0Q2xpcHBlcgAxNkltR3VpTGlzdENsaXBwZXIAdmlpaWYAUEsxNkltR3VpTGlzdENsaXBwZXIASW1HdWlTaXplQ2FsbGJhY2tEYXRhAFBvcwBDdXJyZW50U2l6ZQBEZXNpcmVkU2l6ZQBQSzIxSW1HdWlTaXplQ2FsbGJhY2tEYXRhAEltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAEV2ZW50RmxhZwBFdmVudENoYXIARXZlbnRLZXkAQnVmAEJ1ZlRleHRMZW4AQnVmU2l6ZQBCdWZEaXJ0eQBDdXJzb3JQb3MAU2VsZWN0aW9uU3RhcnQAU2VsZWN0aW9uRW5kAERlbGV0ZUNoYXJzAEluc2VydENoYXJzAEhhc1NlbGVjdGlvbgBQSzI2SW1HdWlJbnB1dFRleHRDYWxsYmFja0RhdGEASW1WZWM0AFNldABDb3B5AEVxdWFscwBJbVZlYzIAUDZJbVZlYzIAV3JhcEltR3VpQ29udGV4dABQSzE2V3JhcEltR3VpQ29udGV4dABtYWxsaW5mbwBhcmVuYQBvcmRibGtzAHNtYmxrcwBoYmxrcwBoYmxraGQAdXNtYmxrcwBmc21ibGtzAHVvcmRibGtzAGZvcmRibGtzAGtlZXBjb3N0AHZvaWQAYm9vbABzdGQ6OnN0cmluZwBzdGQ6OmJhc2ljX3N0cmluZzx1bnNpZ25lZCBjaGFyPgBzdGQ6OndzdHJpbmcAZW1zY3JpcHRlbjo6dmFsAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgc2hvcnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgaW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludDE2X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQzMl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZyBkb3VibGU+AE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SWVFRQBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxkb3VibGU+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBsb25nPgBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0ltRUUAZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZz4ATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJbEVFAE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SXRFRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lzRUUATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJYUVFAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGNoYXI+AE5TdDNfXzIxMmJhc2ljX3N0cmluZ0l3TlNfMTFjaGFyX3RyYWl0c0l3RUVOU185YWxsb2NhdG9ySXdFRUVFAE5TdDNfXzIxMmJhc2ljX3N0cmluZ0loTlNfMTFjaGFyX3RyYWl0c0loRUVOU185YWxsb2NhdG9ySWhFRUVFAGRvdWJsZQBmbG9hdAB1bnNpZ25lZCBsb25nAGxvbmcAdW5zaWduZWQgaW50AGludAB1bnNpZ25lZCBzaG9ydABzaG9ydAB1bnNpZ25lZCBjaGFyAHNpZ25lZCBjaGFyAGNoYXIAAAECBAcDBgUALSsgICAwWDB4AChudWxsKQAtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBOQU4ALgBpbmZpbml0eQBuYW4AcndhAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXM6ICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXMAdGVybWluYXRpbmcgd2l0aCAlcyBmb3JlaWduIGV4Y2VwdGlvbgB0ZXJtaW5hdGluZwB1bmNhdWdodABTdDlleGNlcHRpb24ATjEwX19jeHhhYml2MTE2X19zaGltX3R5cGVfaW5mb0UAU3Q5dHlwZV9pbmZvAE4xMF9fY3h4YWJpdjEyMF9fc2lfY2xhc3NfdHlwZV9pbmZvRQBOMTBfX2N4eGFiaXYxMTdfX2NsYXNzX3R5cGVfaW5mb0UAcHRocmVhZF9vbmNlIGZhaWx1cmUgaW4gX19jeGFfZ2V0X2dsb2JhbHNfZmFzdCgpAGNhbm5vdCBjcmVhdGUgcHRocmVhZCBrZXkgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAY2Fubm90IHplcm8gb3V0IHRocmVhZCB2YWx1ZSBmb3IgX19jeGFfZ2V0X2dsb2JhbHMoKQB0ZXJtaW5hdGVfaGFuZGxlciB1bmV4cGVjdGVkbHkgcmV0dXJuZWQAU3QxMWxvZ2ljX2Vycm9yAFN0MTJsZW5ndGhfZXJyb3IATjEwX19jeHhhYml2MTE5X19wb2ludGVyX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19wYmFzZV90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjEyM19fZnVuZGFtZW50YWxfdHlwZV9pbmZvRQB2AFB2AERuAGIAYwBoAGEAcwB0AGkAagBsAG0AZgBkAE4xMF9fY3h4YWJpdjEyMV9fdm1pX2NsYXNzX3R5cGVfaW5mb0U=";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile);}function getBinary(){try{if(Module["wasmBinary"]){return new Uint8Array(Module["wasmBinary"])}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(Module["readBinary"]){return Module["readBinary"](wasmBinaryFile)}else{throw"both async and sync fetching of the wasm failed"}}catch(err){abort(err);}}function getBinaryPromise(){if(!Module["wasmBinary"]&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch==="function"){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()})}return new Promise(function(resolve,reject){resolve(getBinary());})}function createWasm(env){var info={"env":env,"global":{"NaN":NaN,Infinity:Infinity},"global.Math":Math,"asm2wasm":asm2wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;removeRunDependency();}addRunDependency();function receiveInstantiatedSource(output){receiveInstance(output["instance"]);}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason);})}function instantiateAsync(){if(!Module["wasmBinary"]&&typeof WebAssembly.instantiateStreaming==="function"&&!isDataURI(wasmBinaryFile)&&typeof fetch==="function"){return WebAssembly.instantiateStreaming(fetch(wasmBinaryFile,{credentials:"same-origin"}),info).then(receiveInstantiatedSource,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");instantiateArrayBuffer(receiveInstantiatedSource);})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module["instantiateWasm"]){try{return Module["instantiateWasm"](info,receiveInstance)}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}}instantiateAsync();return {}}Module["asm"]=function(global,env,providedBuffer){env["memory"]=wasmMemory;env["table"]=wasmTable=new WebAssembly.Table({"initial":1442,"maximum":1442,"element":"anyfunc"});env["__memory_base"]=1024;env["__table_base"]=0;var exports=createWasm(env);return exports};__ATINIT__.push({func:function(){globalCtors();}});function ___cxa_allocate_exception(size){return _malloc(size)}function ___cxa_throw(ptr,type,destructor){throw ptr}function ___lock(){}var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0;}else{buffer.push(curr);}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get();}};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall145(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();return SYSCALLS.doReadv(stream,iov,iovcnt)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j>2]=value;return value}function ___syscall221(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___unlock(){}function getShiftFromSize(size){switch(size){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError("Unknown type size: "+size)}}function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<256;++i){codes[i]=String.fromCharCode(i);}embind_charCodes=codes;}var embind_charCodes=undefined;function readLatin1String(ptr){var ret="";var c=ptr;while(HEAPU8[c]){ret+=embind_charCodes[HEAPU8[c++]];}return ret}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return "_unknown"}name=name.replace(/[^a-zA-Z0-9_]/g,"$");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return "_"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return new Function("body","return function "+name+"() {\n"+' "use strict";'+" return body.apply(this, arguments);\n"+"};\n")(body)}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+"\n"+stack.replace(/^Error(:[^\n]*)?\n/,"");}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+": "+this.message}};return errorClass}var BindingError=undefined;function throwBindingError(message){throw new BindingError(message)}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes;});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError("Mismatched type converter count");}for(var i=0;i>shift])},destructorFunction:null});}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass;}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass;}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return {count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+" instance already deleted");}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr);}else{$$.ptrType.registeredClass.rawDestructor($$.ptr);}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$);}}function attachFinalizer(handle){if("undefined"===typeof FinalizationGroup){attachFinalizer=function(handle){return handle};return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn("object already deleted: "+$$.ptr);}else{releaseClassHandle($$);}}});attachFinalizer=function(handle){finalizationGroup.register(handle,handle.$$,handle.$$);return handle};detachFinalizer=function(handle){finalizationGroup.unregister(handle.$$);};return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined;}}function ClassHandle_isDeleted(){return !this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj["delete"]();}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes);}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype["isAliasOf"]=ClassHandle_isAliasOf;ClassHandle.prototype["clone"]=ClassHandle_clone;ClassHandle.prototype["delete"]=ClassHandle_delete;ClassHandle.prototype["isDeleted"]=ClassHandle_isDeleted;ClassHandle.prototype["deleteLater"]=ClassHandle_deleteLater;}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError("Function '"+humanName+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+proto[methodName].overloadTable+")!");}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc;}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError("Cannot register public name '"+name+"' twice");}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError("Cannot register multiple overloads of a function with the same number of arguments ("+numArguments+")!");}Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments;}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[];}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError("Expected null or instance of "+desiredClass.name+", got an instance of "+ptrClass.name);}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass;}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr);}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError("Passing raw pointer to smart pointer is illegal");}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{var clonedHandle=handle["clone"]();ptr=this.rawShare(ptr,__emval_register(function(){clonedHandle["delete"]();}));if(destructors!==null){destructors.push(this.rawDestructor,ptr);}}break;default:throwBindingError("Unsupporting sharing policy");}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+handle.$$.ptrType.name+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function simpleReadValueFromPointer(pointer){return this["fromWireType"](HEAPU32[pointer>>2])}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr);}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr);}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle["delete"]();}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k]);}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes);}}function init_embind(){Module["getInheritedInstanceCount"]=getInheritedInstanceCount;Module["getLiveInheritedInstances"]=getLiveInheritedInstances;Module["flushPendingDeletes"]=flushPendingDeletes;Module["setDelayFunction"]=setDelayFunction;}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError("ptr should not be undefined");}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass;}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError("makeClassHandle requires ptr and ptrType");}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError("Both smartPtrType and smartPtr must be specified");}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance["clone"]()}else{var rv=registeredInstance["clone"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType;}else{toType=registeredPointerRecord.pointerType;}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype["argPackAdvance"]=8;RegisteredPointer.prototype["readValueFromPointer"]=simpleReadValueFromPointer;RegisteredPointer.prototype["deleteObject"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype["fromWireType"]=RegisteredPointer_fromWireType;}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this["toWireType"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}else{this["toWireType"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}}else{this["toWireType"]=genericPointerToWireType;}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError("Replacing nonexistant public symbol");}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;Module[name].argCount=numArguments;}}function embind__requireFunction(signature,rawFunction){signature=readLatin1String(signature);function makeDynCaller(dynCall){var args=[];for(var i=1;i>2)+i]);}return array}function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr);}}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName="constructor "+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[];}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError("Cannot register multiple constructors with identical number of parameters ("+(argCount-1)+") for class '"+classType.name+"'! Overload resolution is currently only performed using the parameter count, not actual type info!")}classType.registeredClass.constructor_body[argCount-1]=function unboundTypeHandler(){throwUnboundTypeError("Cannot construct "+classType.name+" due to unbound types",rawArgTypes);};whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){classType.registeredClass.constructor_body[argCount-1]=function constructor_body(){if(arguments.length!==argCount-1){throwBindingError(humanName+" called with "+arguments.length+" arguments, expected "+(argCount-1));}var destructors=[];var args=new Array(argCount);args[0]=rawConstructor;for(var i=1;i0?", ":"")+argsListWired;}invokerFnBody+=(returns?"var rv = ":"")+"invoker(fn"+(argsListWired.length>0?", ":"")+argsListWired+");\n";if(needsDestructorStack){invokerFnBody+="runDestructors(destructors);\n";}else{for(var i=isClassMethodFunc?1:2;i4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle);}}function count_emval_handles(){var count=0;for(var i=5;i>2])};case 3:return function(pointer){return this["fromWireType"](HEAPF64[pointer>>3])};default:throw new TypeError("Unknown float type: "+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":function(value){return value},"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}return value},"argPackAdvance":8,"readValueFromPointer":floatReadValueFromPointer(name,shift),destructorFunction:null});}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError("Cannot call "+name+" due to unbound types",argTypes);},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return []});}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError("Unknown integer type: "+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295;}var shift=getShiftFromSize(size);var fromWireType=function(value){return value};if(minRange===0){var bitshift=32-8*size;fromWireType=function(value){return value<>>bitshift};}var isUnsignedType=name.indexOf("unsigned")!=-1;registerType(primitiveType,{name:name,"fromWireType":fromWireType,"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}if(valuemaxRange){throw new TypeError('Passing a number "'+_embind_repr(value)+'" from JS side to C/C++ side to an argument of type "'+name+'", which is outside the valid range ['+minRange+", "+maxRange+"]!")}return isUnsignedType?value>>>0:value|0},"argPackAdvance":8,"readValueFromPointer":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null});}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(heap["buffer"],data,size)}name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":decodeMemoryView,"argPackAdvance":8,"readValueFromPointer":decodeMemoryView},{ignoreDuplicateRegistrations:true});}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name==="std::string";registerType(rawType,{name:name,"fromWireType":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var endChar=HEAPU8[value+4+length];var endCharSwap=0;if(endChar!=0){endCharSwap=endChar;HEAPU8[value+4+length]=0;}var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(HEAPU8[currentBytePtr]==0){var stringSegment=UTF8ToString(decodeStartPtr);if(str===undefined)str=stringSegment;else{str+=String.fromCharCode(0);str+=stringSegment;}decodeStartPtr=currentBytePtr+1;}}if(endCharSwap!=0)HEAPU8[value+4+length]=endCharSwap;}else{var a=new Array(length);for(var i=0;i>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1);}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError("String has UTF-16 code units that do not fit in 8 bits");}HEAPU8[ptr+4+i]=charCode;}}else{for(var i=0;i>2];var a=new Array(length);var start=value+4>>shift;for(var i=0;i>2]=length;var start=ptr+4>>shift;for(var i=0;i>2]=rd;return returnType["toWireType"](destructors,handle)}function __emval_lookupTypes(argCount,argTypes,argWireTypes){var a=new Array(argCount);for(var i=0;i>2)+i],"parameter "+i);}return a}function __emval_call(handle,argCount,argTypes,argv){handle=requireHandle(handle);var types=__emval_lookupTypes(argCount,argTypes);var args=new Array(argCount);for(var i=0;i4){emval_handle_array[handle].refcount+=1;}}function __emval_new_array(){return __emval_register([])}function __emval_new_cstring(v){return __emval_register(getStringOrSymbol(v))}function __emval_new_object(){return __emval_register({})}function __emval_run_destructors(handle){var destructors=emval_handle_array[handle].value;runDestructors(destructors);__emval_decref(handle);}function __emval_set_property(handle,key,value){handle=requireHandle(handle);key=requireHandle(key);value=requireHandle(value);handle[key]=value;}function __emval_strictly_equals(first,second){first=requireHandle(first);second=requireHandle(second);return first===second}function __emval_take_value(type,argv){type=requireRegisteredType(type,"_emval_take_value");var v=type["readValueFromPointer"](argv);return __emval_register(v)}function __emval_typeof(handle){handle=requireHandle(handle);return __emval_register(typeof handle)}function _abort(){Module["abort"]();}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest);}function abortOnCannotGrowMemory(requestedSize){abort("OOM");}function _emscripten_resize_heap(requestedSize){abortOnCannotGrowMemory();}embind_init_charCodes();BindingError=Module["BindingError"]=extendError(Error,"BindingError");InternalError=Module["InternalError"]=extendError(Error,"InternalError");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module["UnboundTypeError"]=extendError(Error,"UnboundTypeError");init_emval();function intArrayToString(array){var ret=[];for(var i=0;i255){chr&=255;}ret.push(String.fromCharCode(chr));}return ret.join("")}var decodeBase64=typeof atob==="function"?atob:function(input){var keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2);}if(enc4!==64){output=output+String.fromCharCode(chr3);}}while(i0){return}preRun();if(runDependencies>0)return;if(Module["calledRun"])return;function doRun(){if(Module["calledRun"])return;Module["calledRun"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun();}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("");},1);doRun();},1);}else{doRun();}}Module["run"]=run;function abort(what){if(Module["onAbort"]){Module["onAbort"](what);}if(what!==undefined){out(what);err(what);what=JSON.stringify(what);}else{what="";}ABORT=true;throw"abort("+what+"). Build with -s ASSERTIONS=1 for more info."}Module["abort"]=abort;if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()();}}Module["noExitRuntime"]=true;run(); + + + return Module +} +); +})(); +module.exports = Module; +}); + +let bind; +const IMGUI_VERSION = "1.71"; // bind.IMGUI_VERSION; +// #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert)) +function IMGUI_CHECKVERSION() { return DebugCheckVersionAndDataLayout(IMGUI_VERSION, bind.ImGuiIOSize, bind.ImGuiStyleSize, bind.ImVec2Size, bind.ImVec4Size, bind.ImDrawVertSize, bind.ImDrawIdxSize); } +function IM_ASSERT(_EXPR) { if (!_EXPR) { + throw new Error(); +} } +function IM_ARRAYSIZE(_ARR) { + if (_ARR instanceof ImStringBuffer) { + return _ARR.size; + } + else { + return _ARR.length; + } +} +class ImStringBuffer { + constructor(size, buffer = "") { + this.size = size; + this.buffer = buffer; + } +} +var ImGuiWindowFlags; +(function (ImGuiWindowFlags) { + ImGuiWindowFlags[ImGuiWindowFlags["None"] = 0] = "None"; + ImGuiWindowFlags[ImGuiWindowFlags["NoTitleBar"] = 1] = "NoTitleBar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoResize"] = 2] = "NoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMove"] = 4] = "NoMove"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollbar"] = 8] = "NoScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollWithMouse"] = 16] = "NoScrollWithMouse"; + ImGuiWindowFlags[ImGuiWindowFlags["NoCollapse"] = 32] = "NoCollapse"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysAutoResize"] = 64] = "AlwaysAutoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBackground"] = 128] = "NoBackground"; + ImGuiWindowFlags[ImGuiWindowFlags["NoSavedSettings"] = 256] = "NoSavedSettings"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMouseInputs"] = 512] = "NoMouseInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["MenuBar"] = 1024] = "MenuBar"; + ImGuiWindowFlags[ImGuiWindowFlags["HorizontalScrollbar"] = 2048] = "HorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoFocusOnAppearing"] = 4096] = "NoFocusOnAppearing"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBringToFrontOnFocus"] = 8192] = "NoBringToFrontOnFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysVerticalScrollbar"] = 16384] = "AlwaysVerticalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysHorizontalScrollbar"] = 32768] = "AlwaysHorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysUseWindowPadding"] = 65536] = "AlwaysUseWindowPadding"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavInputs"] = 262144] = "NoNavInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavFocus"] = 524288] = "NoNavFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["UnsavedDocument"] = 1048576] = "UnsavedDocument"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNav"] = 786432] = "NoNav"; + ImGuiWindowFlags[ImGuiWindowFlags["NoDecoration"] = 43] = "NoDecoration"; + ImGuiWindowFlags[ImGuiWindowFlags["NoInputs"] = 786944] = "NoInputs"; + // [Internal] + ImGuiWindowFlags[ImGuiWindowFlags["NavFlattened"] = 8388608] = "NavFlattened"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildWindow"] = 16777216] = "ChildWindow"; + ImGuiWindowFlags[ImGuiWindowFlags["Tooltip"] = 33554432] = "Tooltip"; + ImGuiWindowFlags[ImGuiWindowFlags["Popup"] = 67108864] = "Popup"; + ImGuiWindowFlags[ImGuiWindowFlags["Modal"] = 134217728] = "Modal"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildMenu"] = 268435456] = "ChildMenu"; +})(ImGuiWindowFlags || (ImGuiWindowFlags = {})); +var ImGuiInputTextFlags; +(function (ImGuiInputTextFlags) { + ImGuiInputTextFlags[ImGuiInputTextFlags["None"] = 0] = "None"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsDecimal"] = 1] = "CharsDecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsHexadecimal"] = 2] = "CharsHexadecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsUppercase"] = 4] = "CharsUppercase"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsNoBlank"] = 8] = "CharsNoBlank"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AutoSelectAll"] = 16] = "AutoSelectAll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["EnterReturnsTrue"] = 32] = "EnterReturnsTrue"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCompletion"] = 64] = "CallbackCompletion"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackHistory"] = 128] = "CallbackHistory"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackAlways"] = 256] = "CallbackAlways"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCharFilter"] = 512] = "CallbackCharFilter"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AllowTabInput"] = 1024] = "AllowTabInput"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CtrlEnterForNewLine"] = 2048] = "CtrlEnterForNewLine"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoHorizontalScroll"] = 4096] = "NoHorizontalScroll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AlwaysInsertMode"] = 8192] = "AlwaysInsertMode"; + ImGuiInputTextFlags[ImGuiInputTextFlags["ReadOnly"] = 16384] = "ReadOnly"; + ImGuiInputTextFlags[ImGuiInputTextFlags["Password"] = 32768] = "Password"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoUndoRedo"] = 65536] = "NoUndoRedo"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsScientific"] = 131072] = "CharsScientific"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackResize"] = 262144] = "CallbackResize"; + // [Internal] + ImGuiInputTextFlags[ImGuiInputTextFlags["Multiline"] = 1048576] = "Multiline"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoMarkEdited"] = 2097152] = "NoMarkEdited"; +})(ImGuiInputTextFlags || (ImGuiInputTextFlags = {})); +var ImGuiTreeNodeFlags; +(function (ImGuiTreeNodeFlags) { + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["None"] = 0] = "None"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Selected"] = 1] = "Selected"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Framed"] = 2] = "Framed"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["AllowItemOverlap"] = 4] = "AllowItemOverlap"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoTreePushOnOpen"] = 8] = "NoTreePushOnOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoAutoOpenOnLog"] = 16] = "NoAutoOpenOnLog"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["DefaultOpen"] = 32] = "DefaultOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnDoubleClick"] = 64] = "OpenOnDoubleClick"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnArrow"] = 128] = "OpenOnArrow"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Leaf"] = 256] = "Leaf"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Bullet"] = 512] = "Bullet"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["FramePadding"] = 1024] = "FramePadding"; + //SpanAllAvailWidth = 1 << 11, // FIXME: TODO: Extend hit box horizontally even if not framed + //NoScrollOnOpen = 1 << 12, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NavLeftJumpsBackHere"] = 8192] = "NavLeftJumpsBackHere"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["CollapsingHeader"] = 26] = "CollapsingHeader"; +})(ImGuiTreeNodeFlags || (ImGuiTreeNodeFlags = {})); +var ImGuiSelectableFlags; +(function (ImGuiSelectableFlags) { + ImGuiSelectableFlags[ImGuiSelectableFlags["None"] = 0] = "None"; + ImGuiSelectableFlags[ImGuiSelectableFlags["DontClosePopups"] = 1] = "DontClosePopups"; + ImGuiSelectableFlags[ImGuiSelectableFlags["SpanAllColumns"] = 2] = "SpanAllColumns"; + ImGuiSelectableFlags[ImGuiSelectableFlags["AllowDoubleClick"] = 4] = "AllowDoubleClick"; + ImGuiSelectableFlags[ImGuiSelectableFlags["Disabled"] = 8] = "Disabled"; // Cannot be selected, display greyed out text +})(ImGuiSelectableFlags || (ImGuiSelectableFlags = {})); +var ImGuiComboFlags; +(function (ImGuiComboFlags) { + ImGuiComboFlags[ImGuiComboFlags["None"] = 0] = "None"; + ImGuiComboFlags[ImGuiComboFlags["PopupAlignLeft"] = 1] = "PopupAlignLeft"; + ImGuiComboFlags[ImGuiComboFlags["HeightSmall"] = 2] = "HeightSmall"; + ImGuiComboFlags[ImGuiComboFlags["HeightRegular"] = 4] = "HeightRegular"; + ImGuiComboFlags[ImGuiComboFlags["HeightLarge"] = 8] = "HeightLarge"; + ImGuiComboFlags[ImGuiComboFlags["HeightLargest"] = 16] = "HeightLargest"; + ImGuiComboFlags[ImGuiComboFlags["NoArrowButton"] = 32] = "NoArrowButton"; + ImGuiComboFlags[ImGuiComboFlags["NoPreview"] = 64] = "NoPreview"; + ImGuiComboFlags[ImGuiComboFlags["HeightMask_"] = 30] = "HeightMask_"; +})(ImGuiComboFlags || (ImGuiComboFlags = {})); +var ImGuiTabBarFlags; +(function (ImGuiTabBarFlags) { + ImGuiTabBarFlags[ImGuiTabBarFlags["None"] = 0] = "None"; + ImGuiTabBarFlags[ImGuiTabBarFlags["Reorderable"] = 1] = "Reorderable"; + ImGuiTabBarFlags[ImGuiTabBarFlags["AutoSelectNewTabs"] = 2] = "AutoSelectNewTabs"; + ImGuiTabBarFlags[ImGuiTabBarFlags["TabListPopupButton"] = 4] = "TabListPopupButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoCloseWithMiddleMouseButton"] = 8] = "NoCloseWithMiddleMouseButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTabListScrollingButtons"] = 16] = "NoTabListScrollingButtons"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTooltip"] = 32] = "NoTooltip"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyResizeDown"] = 64] = "FittingPolicyResizeDown"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyScroll"] = 128] = "FittingPolicyScroll"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyMask_"] = 192] = "FittingPolicyMask_"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyDefault_"] = 64] = "FittingPolicyDefault_"; +})(ImGuiTabBarFlags || (ImGuiTabBarFlags = {})); +var ImGuiTabItemFlags; +(function (ImGuiTabItemFlags) { + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_None"] = 0] = "ImGuiTabItemFlags_None"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_UnsavedDocument"] = 1] = "ImGuiTabItemFlags_UnsavedDocument"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_SetSelected"] = 2] = "ImGuiTabItemFlags_SetSelected"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"] = 4] = "ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoPushId"] = 8] = "ImGuiTabItemFlags_NoPushId"; // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem() +})(ImGuiTabItemFlags || (ImGuiTabItemFlags = {})); +var ImGuiFocusedFlags; +(function (ImGuiFocusedFlags) { + ImGuiFocusedFlags[ImGuiFocusedFlags["None"] = 0] = "None"; + ImGuiFocusedFlags[ImGuiFocusedFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiFocusedFlags || (ImGuiFocusedFlags = {})); +var ImGuiHoveredFlags; +(function (ImGuiHoveredFlags) { + ImGuiHoveredFlags[ImGuiHoveredFlags["None"] = 0] = "None"; + ImGuiHoveredFlags[ImGuiHoveredFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByPopup"] = 8] = "AllowWhenBlockedByPopup"; + //AllowWhenBlockedByModal = 1 << 4, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet. + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByActiveItem"] = 32] = "AllowWhenBlockedByActiveItem"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenOverlapped"] = 64] = "AllowWhenOverlapped"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenDisabled"] = 128] = "AllowWhenDisabled"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RectOnly"] = 104] = "RectOnly"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiHoveredFlags || (ImGuiHoveredFlags = {})); +var ImGuiDragDropFlags; +(function (ImGuiDragDropFlags) { + // BeginDragDropSource() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["None"] = 0] = "None"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoPreviewTooltip"] = 1] = "SourceNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoDisableHover"] = 2] = "SourceNoDisableHover"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoHoldToOpenOthers"] = 4] = "SourceNoHoldToOpenOthers"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAllowNullID"] = 8] = "SourceAllowNullID"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceExtern"] = 16] = "SourceExtern"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAutoExpirePayload"] = 32] = "SourceAutoExpirePayload"; + // AcceptDragDropPayload() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptBeforeDelivery"] = 1024] = "AcceptBeforeDelivery"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoDrawDefaultRect"] = 2048] = "AcceptNoDrawDefaultRect"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoPreviewTooltip"] = 4096] = "AcceptNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptPeekOnly"] = 3072] = "AcceptPeekOnly"; +})(ImGuiDragDropFlags || (ImGuiDragDropFlags = {})); +var ImGuiDataType; +(function (ImGuiDataType) { + ImGuiDataType[ImGuiDataType["S8"] = 0] = "S8"; + ImGuiDataType[ImGuiDataType["U8"] = 1] = "U8"; + ImGuiDataType[ImGuiDataType["S16"] = 2] = "S16"; + ImGuiDataType[ImGuiDataType["U16"] = 3] = "U16"; + ImGuiDataType[ImGuiDataType["S32"] = 4] = "S32"; + ImGuiDataType[ImGuiDataType["U32"] = 5] = "U32"; + ImGuiDataType[ImGuiDataType["S64"] = 6] = "S64"; + ImGuiDataType[ImGuiDataType["U64"] = 7] = "U64"; + ImGuiDataType[ImGuiDataType["Float"] = 8] = "Float"; + ImGuiDataType[ImGuiDataType["Double"] = 9] = "Double"; + ImGuiDataType[ImGuiDataType["COUNT"] = 10] = "COUNT"; +})(ImGuiDataType || (ImGuiDataType = {})); +var ImGuiDir; +(function (ImGuiDir) { + ImGuiDir[ImGuiDir["None"] = -1] = "None"; + ImGuiDir[ImGuiDir["Left"] = 0] = "Left"; + ImGuiDir[ImGuiDir["Right"] = 1] = "Right"; + ImGuiDir[ImGuiDir["Up"] = 2] = "Up"; + ImGuiDir[ImGuiDir["Down"] = 3] = "Down"; + ImGuiDir[ImGuiDir["COUNT"] = 4] = "COUNT"; +})(ImGuiDir || (ImGuiDir = {})); +var ImGuiKey; +(function (ImGuiKey) { + ImGuiKey[ImGuiKey["Tab"] = 0] = "Tab"; + ImGuiKey[ImGuiKey["LeftArrow"] = 1] = "LeftArrow"; + ImGuiKey[ImGuiKey["RightArrow"] = 2] = "RightArrow"; + ImGuiKey[ImGuiKey["UpArrow"] = 3] = "UpArrow"; + ImGuiKey[ImGuiKey["DownArrow"] = 4] = "DownArrow"; + ImGuiKey[ImGuiKey["PageUp"] = 5] = "PageUp"; + ImGuiKey[ImGuiKey["PageDown"] = 6] = "PageDown"; + ImGuiKey[ImGuiKey["Home"] = 7] = "Home"; + ImGuiKey[ImGuiKey["End"] = 8] = "End"; + ImGuiKey[ImGuiKey["Insert"] = 9] = "Insert"; + ImGuiKey[ImGuiKey["Delete"] = 10] = "Delete"; + ImGuiKey[ImGuiKey["Backspace"] = 11] = "Backspace"; + ImGuiKey[ImGuiKey["Space"] = 12] = "Space"; + ImGuiKey[ImGuiKey["Enter"] = 13] = "Enter"; + ImGuiKey[ImGuiKey["Escape"] = 14] = "Escape"; + ImGuiKey[ImGuiKey["A"] = 15] = "A"; + ImGuiKey[ImGuiKey["C"] = 16] = "C"; + ImGuiKey[ImGuiKey["V"] = 17] = "V"; + ImGuiKey[ImGuiKey["X"] = 18] = "X"; + ImGuiKey[ImGuiKey["Y"] = 19] = "Y"; + ImGuiKey[ImGuiKey["Z"] = 20] = "Z"; + ImGuiKey[ImGuiKey["COUNT"] = 21] = "COUNT"; +})(ImGuiKey || (ImGuiKey = {})); +var ImGuiNavInput; +(function (ImGuiNavInput) { + // Gamepad Mapping + ImGuiNavInput[ImGuiNavInput["Activate"] = 0] = "Activate"; + ImGuiNavInput[ImGuiNavInput["Cancel"] = 1] = "Cancel"; + ImGuiNavInput[ImGuiNavInput["Input"] = 2] = "Input"; + ImGuiNavInput[ImGuiNavInput["Menu"] = 3] = "Menu"; + ImGuiNavInput[ImGuiNavInput["DpadLeft"] = 4] = "DpadLeft"; + ImGuiNavInput[ImGuiNavInput["DpadRight"] = 5] = "DpadRight"; + ImGuiNavInput[ImGuiNavInput["DpadUp"] = 6] = "DpadUp"; + ImGuiNavInput[ImGuiNavInput["DpadDown"] = 7] = "DpadDown"; + ImGuiNavInput[ImGuiNavInput["LStickLeft"] = 8] = "LStickLeft"; + ImGuiNavInput[ImGuiNavInput["LStickRight"] = 9] = "LStickRight"; + ImGuiNavInput[ImGuiNavInput["LStickUp"] = 10] = "LStickUp"; + ImGuiNavInput[ImGuiNavInput["LStickDown"] = 11] = "LStickDown"; + ImGuiNavInput[ImGuiNavInput["FocusPrev"] = 12] = "FocusPrev"; + ImGuiNavInput[ImGuiNavInput["FocusNext"] = 13] = "FocusNext"; + ImGuiNavInput[ImGuiNavInput["TweakSlow"] = 14] = "TweakSlow"; + ImGuiNavInput[ImGuiNavInput["TweakFast"] = 15] = "TweakFast"; + // [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them. + // Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) may be directly reading from io.KeyDown[] instead of io.NavInputs[]. + ImGuiNavInput[ImGuiNavInput["KeyMenu_"] = 16] = "KeyMenu_"; + ImGuiNavInput[ImGuiNavInput["KeyTab_"] = 17] = "KeyTab_"; + ImGuiNavInput[ImGuiNavInput["KeyLeft_"] = 18] = "KeyLeft_"; + ImGuiNavInput[ImGuiNavInput["KeyRight_"] = 19] = "KeyRight_"; + ImGuiNavInput[ImGuiNavInput["KeyUp_"] = 20] = "KeyUp_"; + ImGuiNavInput[ImGuiNavInput["KeyDown_"] = 21] = "KeyDown_"; + ImGuiNavInput[ImGuiNavInput["COUNT"] = 22] = "COUNT"; + ImGuiNavInput[ImGuiNavInput["InternalStart_"] = 16] = "InternalStart_"; +})(ImGuiNavInput || (ImGuiNavInput = {})); +var ImGuiConfigFlags; +(function (ImGuiConfigFlags) { + ImGuiConfigFlags[ImGuiConfigFlags["None"] = 0] = "None"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableKeyboard"] = 1] = "NavEnableKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableGamepad"] = 2] = "NavEnableGamepad"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableSetMousePos"] = 4] = "NavEnableSetMousePos"; + ImGuiConfigFlags[ImGuiConfigFlags["NavNoCaptureKeyboard"] = 8] = "NavNoCaptureKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouse"] = 16] = "NoMouse"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouseCursorChange"] = 32] = "NoMouseCursorChange"; + ImGuiConfigFlags[ImGuiConfigFlags["IsSRGB"] = 1048576] = "IsSRGB"; + ImGuiConfigFlags[ImGuiConfigFlags["IsTouchScreen"] = 2097152] = "IsTouchScreen"; // Application is using a touch screen instead of a mouse. +})(ImGuiConfigFlags || (ImGuiConfigFlags = {})); +var ImGuiCol; +(function (ImGuiCol) { + ImGuiCol[ImGuiCol["Text"] = 0] = "Text"; + ImGuiCol[ImGuiCol["TextDisabled"] = 1] = "TextDisabled"; + ImGuiCol[ImGuiCol["WindowBg"] = 2] = "WindowBg"; + ImGuiCol[ImGuiCol["ChildBg"] = 3] = "ChildBg"; + ImGuiCol[ImGuiCol["PopupBg"] = 4] = "PopupBg"; + ImGuiCol[ImGuiCol["Border"] = 5] = "Border"; + ImGuiCol[ImGuiCol["BorderShadow"] = 6] = "BorderShadow"; + ImGuiCol[ImGuiCol["FrameBg"] = 7] = "FrameBg"; + ImGuiCol[ImGuiCol["FrameBgHovered"] = 8] = "FrameBgHovered"; + ImGuiCol[ImGuiCol["FrameBgActive"] = 9] = "FrameBgActive"; + ImGuiCol[ImGuiCol["TitleBg"] = 10] = "TitleBg"; + ImGuiCol[ImGuiCol["TitleBgActive"] = 11] = "TitleBgActive"; + ImGuiCol[ImGuiCol["TitleBgCollapsed"] = 12] = "TitleBgCollapsed"; + ImGuiCol[ImGuiCol["MenuBarBg"] = 13] = "MenuBarBg"; + ImGuiCol[ImGuiCol["ScrollbarBg"] = 14] = "ScrollbarBg"; + ImGuiCol[ImGuiCol["ScrollbarGrab"] = 15] = "ScrollbarGrab"; + ImGuiCol[ImGuiCol["ScrollbarGrabHovered"] = 16] = "ScrollbarGrabHovered"; + ImGuiCol[ImGuiCol["ScrollbarGrabActive"] = 17] = "ScrollbarGrabActive"; + ImGuiCol[ImGuiCol["CheckMark"] = 18] = "CheckMark"; + ImGuiCol[ImGuiCol["SliderGrab"] = 19] = "SliderGrab"; + ImGuiCol[ImGuiCol["SliderGrabActive"] = 20] = "SliderGrabActive"; + ImGuiCol[ImGuiCol["Button"] = 21] = "Button"; + ImGuiCol[ImGuiCol["ButtonHovered"] = 22] = "ButtonHovered"; + ImGuiCol[ImGuiCol["ButtonActive"] = 23] = "ButtonActive"; + ImGuiCol[ImGuiCol["Header"] = 24] = "Header"; + ImGuiCol[ImGuiCol["HeaderHovered"] = 25] = "HeaderHovered"; + ImGuiCol[ImGuiCol["HeaderActive"] = 26] = "HeaderActive"; + ImGuiCol[ImGuiCol["Separator"] = 27] = "Separator"; + ImGuiCol[ImGuiCol["SeparatorHovered"] = 28] = "SeparatorHovered"; + ImGuiCol[ImGuiCol["SeparatorActive"] = 29] = "SeparatorActive"; + ImGuiCol[ImGuiCol["ResizeGrip"] = 30] = "ResizeGrip"; + ImGuiCol[ImGuiCol["ResizeGripHovered"] = 31] = "ResizeGripHovered"; + ImGuiCol[ImGuiCol["ResizeGripActive"] = 32] = "ResizeGripActive"; + ImGuiCol[ImGuiCol["Tab"] = 33] = "Tab"; + ImGuiCol[ImGuiCol["TabHovered"] = 34] = "TabHovered"; + ImGuiCol[ImGuiCol["TabActive"] = 35] = "TabActive"; + ImGuiCol[ImGuiCol["TabUnfocused"] = 36] = "TabUnfocused"; + ImGuiCol[ImGuiCol["TabUnfocusedActive"] = 37] = "TabUnfocusedActive"; + ImGuiCol[ImGuiCol["PlotLines"] = 38] = "PlotLines"; + ImGuiCol[ImGuiCol["PlotLinesHovered"] = 39] = "PlotLinesHovered"; + ImGuiCol[ImGuiCol["PlotHistogram"] = 40] = "PlotHistogram"; + ImGuiCol[ImGuiCol["PlotHistogramHovered"] = 41] = "PlotHistogramHovered"; + ImGuiCol[ImGuiCol["TextSelectedBg"] = 42] = "TextSelectedBg"; + ImGuiCol[ImGuiCol["DragDropTarget"] = 43] = "DragDropTarget"; + ImGuiCol[ImGuiCol["NavHighlight"] = 44] = "NavHighlight"; + ImGuiCol[ImGuiCol["NavWindowingHighlight"] = 45] = "NavWindowingHighlight"; + ImGuiCol[ImGuiCol["NavWindowingDimBg"] = 46] = "NavWindowingDimBg"; + ImGuiCol[ImGuiCol["ModalWindowDimBg"] = 47] = "ModalWindowDimBg"; + ImGuiCol[ImGuiCol["COUNT"] = 48] = "COUNT"; +})(ImGuiCol || (ImGuiCol = {})); +var ImGuiStyleVar; +(function (ImGuiStyleVar) { + // Enum name ......................// Member in ImGuiStyle structure (see ImGuiStyle for descriptions) + ImGuiStyleVar[ImGuiStyleVar["Alpha"] = 0] = "Alpha"; + ImGuiStyleVar[ImGuiStyleVar["WindowPadding"] = 1] = "WindowPadding"; + ImGuiStyleVar[ImGuiStyleVar["WindowRounding"] = 2] = "WindowRounding"; + ImGuiStyleVar[ImGuiStyleVar["WindowBorderSize"] = 3] = "WindowBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowMinSize"] = 4] = "WindowMinSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowTitleAlign"] = 5] = "WindowTitleAlign"; + // WindowMenuButtonPosition, // ImGuiDir WindowMenuButtonPosition + ImGuiStyleVar[ImGuiStyleVar["ChildRounding"] = 6] = "ChildRounding"; + ImGuiStyleVar[ImGuiStyleVar["ChildBorderSize"] = 7] = "ChildBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["PopupRounding"] = 8] = "PopupRounding"; + ImGuiStyleVar[ImGuiStyleVar["PopupBorderSize"] = 9] = "PopupBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["FramePadding"] = 10] = "FramePadding"; + ImGuiStyleVar[ImGuiStyleVar["FrameRounding"] = 11] = "FrameRounding"; + ImGuiStyleVar[ImGuiStyleVar["FrameBorderSize"] = 12] = "FrameBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["ItemSpacing"] = 13] = "ItemSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ItemInnerSpacing"] = 14] = "ItemInnerSpacing"; + ImGuiStyleVar[ImGuiStyleVar["IndentSpacing"] = 15] = "IndentSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarSize"] = 16] = "ScrollbarSize"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarRounding"] = 17] = "ScrollbarRounding"; + ImGuiStyleVar[ImGuiStyleVar["GrabMinSize"] = 18] = "GrabMinSize"; + ImGuiStyleVar[ImGuiStyleVar["GrabRounding"] = 19] = "GrabRounding"; + ImGuiStyleVar[ImGuiStyleVar["TabRounding"] = 20] = "TabRounding"; + ImGuiStyleVar[ImGuiStyleVar["ButtonTextAlign"] = 21] = "ButtonTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["SelectableTextAlign"] = 22] = "SelectableTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["Count_"] = 23] = "Count_"; + ImGuiStyleVar[ImGuiStyleVar["COUNT"] = 23] = "COUNT"; +})(ImGuiStyleVar || (ImGuiStyleVar = {})); +var ImGuiBackendFlags; +(function (ImGuiBackendFlags) { + ImGuiBackendFlags[ImGuiBackendFlags["None"] = 0] = "None"; + ImGuiBackendFlags[ImGuiBackendFlags["HasGamepad"] = 1] = "HasGamepad"; + ImGuiBackendFlags[ImGuiBackendFlags["HasMouseCursors"] = 2] = "HasMouseCursors"; + ImGuiBackendFlags[ImGuiBackendFlags["HasSetMousePos"] = 4] = "HasSetMousePos"; + ImGuiBackendFlags[ImGuiBackendFlags["RendererHasVtxOffset"] = 8] = "RendererHasVtxOffset"; +})(ImGuiBackendFlags || (ImGuiBackendFlags = {})); +var ImGuiColorEditFlags; +(function (ImGuiColorEditFlags) { + ImGuiColorEditFlags[ImGuiColorEditFlags["None"] = 0] = "None"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoAlpha"] = 2] = "NoAlpha"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoPicker"] = 4] = "NoPicker"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoOptions"] = 8] = "NoOptions"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSmallPreview"] = 16] = "NoSmallPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoInputs"] = 32] = "NoInputs"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoTooltip"] = 64] = "NoTooltip"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoLabel"] = 128] = "NoLabel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSidePreview"] = 256] = "NoSidePreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoDragDrop"] = 512] = "NoDragDrop"; + // User Options (right-click on widget to change some of them). You can set application defaults using SetColorEditOptions(). The idea is that you probably don't want to override them in most of your calls, let the user choose and/or call SetColorEditOptions() during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaBar"] = 65536] = "AlphaBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreview"] = 131072] = "AlphaPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreviewHalf"] = 262144] = "AlphaPreviewHalf"; + ImGuiColorEditFlags[ImGuiColorEditFlags["HDR"] = 524288] = "HDR"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayRGB"] = 1048576] = "DisplayRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHSV"] = 2097152] = "DisplayHSV"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHex"] = 4194304] = "DisplayHex"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Uint8"] = 8388608] = "Uint8"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Float"] = 16777216] = "Float"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueBar"] = 33554432] = "PickerHueBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueWheel"] = 67108864] = "PickerHueWheel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputRGB"] = 134217728] = "InputRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputHSV"] = 268435456] = "InputHSV"; + // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to + // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["_OptionsDefault"] = 177209344] = "_OptionsDefault"; + // [Internal] Masks + ImGuiColorEditFlags[ImGuiColorEditFlags["_DisplayMask"] = 7340032] = "_DisplayMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_DataTypeMask"] = 25165824] = "_DataTypeMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_PickerMask"] = 100663296] = "_PickerMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_InputMask"] = 402653184] = "_InputMask"; +})(ImGuiColorEditFlags || (ImGuiColorEditFlags = {})); +var ImGuiMouseCursor; +(function (ImGuiMouseCursor) { + ImGuiMouseCursor[ImGuiMouseCursor["None"] = -1] = "None"; + ImGuiMouseCursor[ImGuiMouseCursor["Arrow"] = 0] = "Arrow"; + ImGuiMouseCursor[ImGuiMouseCursor["TextInput"] = 1] = "TextInput"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeAll"] = 2] = "ResizeAll"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNS"] = 3] = "ResizeNS"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeEW"] = 4] = "ResizeEW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNESW"] = 5] = "ResizeNESW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNWSE"] = 6] = "ResizeNWSE"; + ImGuiMouseCursor[ImGuiMouseCursor["Hand"] = 7] = "Hand"; + ImGuiMouseCursor[ImGuiMouseCursor["Count_"] = 8] = "Count_"; + ImGuiMouseCursor[ImGuiMouseCursor["COUNT"] = 8] = "COUNT"; +})(ImGuiMouseCursor || (ImGuiMouseCursor = {})); +var ImGuiCond; +(function (ImGuiCond) { + ImGuiCond[ImGuiCond["Always"] = 1] = "Always"; + ImGuiCond[ImGuiCond["Once"] = 2] = "Once"; + ImGuiCond[ImGuiCond["FirstUseEver"] = 4] = "FirstUseEver"; + ImGuiCond[ImGuiCond["Appearing"] = 8] = "Appearing"; +})(ImGuiCond || (ImGuiCond = {})); +var ImDrawCornerFlags; +(function (ImDrawCornerFlags) { + ImDrawCornerFlags[ImDrawCornerFlags["TopLeft"] = 1] = "TopLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["TopRight"] = 2] = "TopRight"; + ImDrawCornerFlags[ImDrawCornerFlags["BotLeft"] = 4] = "BotLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["BotRight"] = 8] = "BotRight"; + ImDrawCornerFlags[ImDrawCornerFlags["Top"] = 3] = "Top"; + ImDrawCornerFlags[ImDrawCornerFlags["Bot"] = 12] = "Bot"; + ImDrawCornerFlags[ImDrawCornerFlags["Left"] = 5] = "Left"; + ImDrawCornerFlags[ImDrawCornerFlags["Right"] = 10] = "Right"; + ImDrawCornerFlags[ImDrawCornerFlags["All"] = 15] = "All"; +})(ImDrawCornerFlags || (ImDrawCornerFlags = {})); +var ImDrawListFlags; +(function (ImDrawListFlags) { + ImDrawListFlags[ImDrawListFlags["None"] = 0] = "None"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedLines"] = 1] = "AntiAliasedLines"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedFill"] = 2] = "AntiAliasedFill"; +})(ImDrawListFlags || (ImDrawListFlags = {})); +class ImVec2 { + constructor(x = 0.0, y = 0.0) { + this.x = x; + this.y = y; + } + Set(x, y) { + this.x = x; + this.y = y; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + return true; + } +} +ImVec2.ZERO = new ImVec2(0.0, 0.0); +ImVec2.UNIT = new ImVec2(1.0, 1.0); +ImVec2.UNIT_X = new ImVec2(1.0, 0.0); +ImVec2.UNIT_Y = new ImVec2(0.0, 1.0); +class ImVec4 { + constructor(x = 0.0, y = 0.0, z = 0.0, w = 1.0) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + } + Set(x, y, z, w) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + this.z = other.z; + this.w = other.w; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + if (this.z !== other.z) { + return false; + } + if (this.w !== other.w) { + return false; + } + return true; + } +} +ImVec4.ZERO = new ImVec4(0.0, 0.0, 0.0, 0.0); +ImVec4.UNIT = new ImVec4(1.0, 1.0, 1.0, 1.0); +ImVec4.UNIT_X = new ImVec4(1.0, 0.0, 0.0, 0.0); +ImVec4.UNIT_Y = new ImVec4(0.0, 1.0, 0.0, 0.0); +ImVec4.UNIT_Z = new ImVec4(0.0, 0.0, 1.0, 0.0); +ImVec4.UNIT_W = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.BLACK = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.WHITE = new ImVec4(1.0, 1.0, 1.0, 1.0); +//----------------------------------------------------------------------------- +// Helpers +//----------------------------------------------------------------------------- +// Lightweight std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug). +// Our implementation does NOT call C++ constructors/destructors. This is intentional and we do not require it. Do not use this class as a straight std::vector replacement in your code! +class ImVector extends Array { + constructor() { + super(...arguments); + this.Data = this; + // public: + // int Size; + // int Capacity; + // T* Data; + // typedef T value_type; + // typedef value_type* iterator; + // typedef const value_type* const_iterator; + // inline ImVector() { Size = Capacity = 0; Data = NULL; } + // inline ~ImVector() { if (Data) ImGui::MemFree(Data); } + // inline bool empty() const { return Size == 0; } + // inline int size() const { return Size; } + // inline int capacity() const { return Capacity; } + // inline value_type& operator[](int i) { IM_ASSERT(i < Size); return Data[i]; } + // inline const value_type& operator[](int i) const { IM_ASSERT(i < Size); return Data[i]; } + // inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } } + // inline iterator begin() { return Data; } + // inline const_iterator begin() const { return Data; } + // inline iterator end() { return Data + Size; } + // inline const_iterator end() const { return Data + Size; } + // inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; } + // inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; } + // inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; } + // inline int _grow_capacity(int size) const { int new_capacity = Capacity ? (Capacity + Capacity/2) : 8; return new_capacity > size ? new_capacity : size; } + // inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; } + // inline void resize(int new_size, const T& v){ if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) Data[n] = v; Size = new_size; } + // inline void reserve(int new_capacity) + // { + // if (new_capacity <= Capacity) + // return; + // T* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T)); + // if (Data) + // memcpy(new_data, Data, (size_t)Size * sizeof(T)); + // ImGui::MemFree(Data); + // Data = new_data; + // Capacity = new_capacity; + // } + // inline void push_back(const value_type& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); Data[Size++] = v; } + // inline void pop_back() { IM_ASSERT(Size > 0); Size--; } + // inline void push_front(const value_type& v) { if (Size == 0) push_back(v); else insert(Data, v); } + // inline iterator erase(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; } + // inline iterator erase(const_iterator it, const_iterator it_last){ IM_ASSERT(it >= Data && it < Data+Size && it_last > it && it_last <= Data+Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - count) * sizeof(value_type)); Size -= (int)count; return Data + off; } + // inline iterator erase_unsorted(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; if (it < Data+Size-1) memcpy(Data + off, Data + Size - 1, sizeof(value_type)); Size--; return Data + off; } + // inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= Data && it <= Data+Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; } + // inline bool contains(const value_type& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; } + } + get Size() { return this.length; } + empty() { return this.length === 0; } + clear() { this.length = 0; } + pop_back() { return this.pop(); } + push_back(value) { this.push(value); } +} +// Typically, 1 command = 1 GPU draw call (unless command is a callback) +// Pre 1.71 back-ends will typically ignore the VtxOffset/IdxOffset fields. When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset' +// is enabled, those fields allow us to render meshes larger than 64K vertices while keeping 16-bits indices. +class ImDrawCmd { + constructor(native) { + this.native = native; + // ImDrawCallback UserCallback; // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally. + this.UserCallback = null; // TODO + // void* UserCallbackData; // The draw callback code can access this. + this.UserCallbackData = null; // TODO + } + // unsigned int ElemCount; // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[]. + get ElemCount() { return this.native.ElemCount; } + // ImVec4 ClipRect; // Clipping rectangle (x1, y1, x2, y2) + get ClipRect() { return this.native.ClipRect; } + // ImTextureID TextureId; // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas. + get TextureId() { + return ImGuiContext.getTexture(this.native.TextureId); + } + // unsigned int VtxOffset; // Start offset in vertex buffer. Pre-1.71 or without ImGuiBackendFlags_RendererHasVtxOffset: always 0. With ImGuiBackendFlags_RendererHasVtxOffset: may be >0 to support meshes larger than 64K vertices with 16-bits indices. + get VtxOffset() { return this.native.VtxOffset; } + // unsigned int IdxOffset; // Start offset in index buffer. Always equal to sum of ElemCount drawn so far. + get IdxOffset() { return this.native.IdxOffset; } +} +// Vertex index +// (to allow large meshes with 16-bits indices: set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset in the renderer back-end) +// (to use 32-bits indices: override with '#define ImDrawIdx unsigned int' in imconfig.h) +// #ifndef ImDrawIdx +// typedef unsigned short ImDrawIdx; +// #endif +const ImDrawIdxSize = 2; // bind.ImDrawIdxSize; +// Vertex layout +// #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT +const ImDrawVertSize = 20; // bind.ImDrawVertSize; +const ImDrawVertPosOffset = 0; // bind.ImDrawVertPosOffset; +const ImDrawVertUVOffset = 8; // bind.ImDrawVertUVOffset; +const ImDrawVertColOffset = 16; // bind.ImDrawVertColOffset; +class ImDrawVert { + constructor(buffer, byteOffset = 0) { + this.pos = new Float32Array(buffer, byteOffset + bind.ImDrawVertPosOffset, 2); + this.uv = new Float32Array(buffer, byteOffset + bind.ImDrawVertUVOffset, 2); + this.col = new Uint32Array(buffer, byteOffset + bind.ImDrawVertColOffset, 1); + } +} +// Draw command list +// This is the low-level list of polygons that ImGui functions are filling. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering. +// Each ImGui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to access the current window draw list and draw custom primitives. +// You can interleave normal ImGui:: calls and adding primitives to the current draw list. +// All positions are generally in pixel coordinates (top-left at (0,0), bottom-right at io.DisplaySize), however you are totally free to apply whatever transformation matrix to want to the data (if you apply such transformation you'll want to apply it to ClipRect as well) +// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects. +class ImDrawList { + constructor(native) { + this.native = native; + } + IterateDrawCmds(callback) { + this.native.IterateDrawCmds((draw_cmd, ElemStart) => { + callback(new ImDrawCmd(draw_cmd), ElemStart); + }); + } + // This is what you have to render + // ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback. + // ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those + get IdxBuffer() { return this.native.IdxBuffer; } + // ImVector VtxBuffer; // Vertex buffer. + get VtxBuffer() { return this.native.VtxBuffer; } + // ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive. + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // [Internal, used while building lists] + // const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context) + // const char* _OwnerName; // Pointer to owner window's name for debugging + // unsigned int _VtxCurrentIdx; // [Internal] == VtxBuffer.Size + // ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImVector _ClipRectStack; // [Internal] + // ImVector _TextureIdStack; // [Internal] + // ImVector _Path; // [Internal] current path building + // int _ChannelsCurrent; // [Internal] current channel number (0) + // int _ChannelsCount; // [Internal] number of active channels (1+) + // ImVector _Channels; // [Internal] draw channels for columns API (not resized down so _ChannelsCount may be smaller than _Channels.Size) + // ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clear(); } + // ~ImDrawList() { ClearFreeMemory(); } + // IMGUI_API void PushClipRect(ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling) + PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect = false) { + this.native.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect); + } + // IMGUI_API void PushClipRectFullScreen(); + PushClipRectFullScreen() { this.native.PushClipRectFullScreen(); } + // IMGUI_API void PopClipRect(); + PopClipRect() { this.native.PopClipRect(); } + // IMGUI_API void PushTextureID(ImTextureID texture_id); + PushTextureID(texture_id) { + this.native.PushTextureID(ImGuiContext.setTexture(texture_id)); + } + // IMGUI_API void PopTextureID(); + PopTextureID() { this.native.PopTextureID(); } + // inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); } + GetClipRectMin(out = new ImVec2()) { + return this.native.GetClipRectMin(out); + } + // inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); } + GetClipRectMax(out = new ImVec2()) { + return this.native.GetClipRectMax(out); + } + // Primitives + // IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness = 1.0f); + AddLine(a, b, col, thickness = 1.0) { + this.native.AddLine(a, b, col, thickness); + } + // IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All, float thickness = 1.0f); // a: upper-left, b: lower-right, rounding_corners_flags: 4-bits corresponding to which corner to round + AddRect(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All, thickness = 1.0) { + this.native.AddRect(a, b, col, rounding, rounding_corners_flags, thickness); + } + // IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); // a: upper-left, b: lower-right + AddRectFilled(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { + this.native.AddRectFilled(a, b, col, rounding, rounding_corners_flags); + } + // IMGUI_API void AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left); + AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left) { + this.native.AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left); + } + // IMGUI_API void AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness = 1.0f); + AddQuad(a, b, c, d, col, thickness = 1.0) { + this.native.AddQuad(a, b, c, d, col, thickness); + } + // IMGUI_API void AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col); + AddQuadFilled(a, b, c, d, col) { + this.native.AddQuadFilled(a, b, c, d, col); + } + // IMGUI_API void AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness = 1.0f); + AddTriangle(a, b, c, col, thickness = 1.0) { + this.native.AddTriangle(a, b, c, col, thickness); + } + // IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col); + AddTriangleFilled(a, b, c, col) { + this.native.AddTriangleFilled(a, b, c, col); + } + // IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f); + AddCircle(centre, radius, col, num_segments = 12, thickness = 1.0) { + this.native.AddCircle(centre, radius, col, num_segments, thickness); + } + // IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12); + AddCircleFilled(centre, radius, col, num_segments = 12) { + this.native.AddCircleFilled(centre, radius, col, num_segments); + } + AddText(...args) { + if (args[0] instanceof ImFont) { + const font = args[0]; + const font_size = args[1]; + const pos = args[2]; + const col = args[3]; + const text_begin = args[4]; + const text_end = args[5] || null; + const wrap_width = args[6] = 0.0; + const cpu_fine_clip_rect = args[7] || null; + this.native.AddText_B(font.native, font_size, pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin, wrap_width, cpu_fine_clip_rect); + } + else { + const pos = args[0]; + const col = args[1]; + const text_begin = args[2]; + const text_end = args[3] || null; + this.native.AddText_A(pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin); + } + } + // IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,1), ImU32 col = 0xFFFFFFFF); + AddImage(user_texture_id, a, b, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT, col = 0xFFFFFFFF) { + this.native.AddImage(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col); + } + // IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,0), const ImVec2& uv_c = ImVec2(1,1), const ImVec2& uv_d = ImVec2(0,1), ImU32 col = 0xFFFFFFFF); + AddImageQuad(user_texture_id, a, b, c, d, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT_X, uv_c = ImVec2.UNIT, uv_d = ImVec2.UNIT_Y, col = 0xFFFFFFFF) { + this.native.AddImageQuad(ImGuiContext.setTexture(user_texture_id), a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); + } + // IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col, float rounding, int rounding_corners = ImDrawCornerFlags_All); + AddImageRounded(user_texture_id, a, b, uv_a, uv_b, col, rounding, rounding_corners = ImDrawCornerFlags.All) { + this.native.AddImageRounded(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col, rounding, rounding_corners); + } + // IMGUI_API void AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness); + AddPolyline(points, num_points, col, closed, thickness) { + this.native.AddPolyline(points, num_points, col, closed, thickness); + } + // IMGUI_API void AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col); + AddConvexPolyFilled(points, num_points, col) { + this.native.AddConvexPolyFilled(points, num_points, col); + } + // IMGUI_API void AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments = 0); + AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness = 1.0, num_segments = 0) { + this.native.AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments); + } + // Stateful path API, add points then finish with PathFill() or PathStroke() + // inline void PathClear() { _Path.resize(0); } + PathClear() { this.native.PathClear(); } + // inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); } + PathLineTo(pos) { this.native.PathLineTo(pos); } + // inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path[_Path.Size-1], &pos, 8) != 0) _Path.push_back(pos); } + PathLineToMergeDuplicate(pos) { this.native.PathLineToMergeDuplicate(pos); } + // inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); PathClear(); } + PathFillConvex(col) { this.native.PathFillConvex(col); } + // inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness); PathClear(); } + PathStroke(col, closed, thickness = 1.0) { this.native.PathStroke(col, closed, thickness); } + // IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_segments = 10); + PathArcTo(centre, radius, a_min, a_max, num_segments = 10) { this.native.PathArcTo(centre, radius, a_min, a_max, num_segments); } + // IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle + PathArcToFast(centre, radius, a_min_of_12, a_max_of_12) { this.native.PathArcToFast(centre, radius, a_min_of_12, a_max_of_12); } + // IMGUI_API void PathBezierCurveTo(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, int num_segments = 0); + PathBezierCurveTo(p1, p2, p3, num_segments = 0) { this.native.PathBezierCurveTo(p1, p2, p3, num_segments); } + // IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); + PathRect(rect_min, rect_max, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { this.native.PathRect(rect_min, rect_max, rounding, rounding_corners_flags); } + // Channels + // - Use to simulate layers. By switching channels to can render out-of-order (e.g. submit foreground primitives before background primitives) + // - Use to minimize draw calls (e.g. if going back-and-forth between multiple non-overlapping clipping rectangles, prefer to append into separate channels then merge at the end) + // IMGUI_API void ChannelsSplit(int channels_count); + ChannelsSplit(channels_count) { this.native.ChannelsSplit(channels_count); } + // IMGUI_API void ChannelsMerge(); + ChannelsMerge() { this.native.ChannelsMerge(); } + // IMGUI_API void ChannelsSetCurrent(int channel_index); + ChannelsSetCurrent(channel_index) { this.native.ChannelsSetCurrent(channel_index); } + // Advanced + // IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles. + AddCallback(callback, callback_data) { + const _callback = (parent_list, draw_cmd) => { + callback(new ImDrawList(parent_list), new ImDrawCmd(draw_cmd)); + }; + this.native.AddCallback(_callback, callback_data); + } + // IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible + AddDrawCmd() { this.native.AddDrawCmd(); } + // Internal helpers + // NB: all primitives needs to be reserved via PrimReserve() beforehand! + // IMGUI_API void Clear(); + Clear() { this.native.Clear(); } + // IMGUI_API void ClearFreeMemory(); + ClearFreeMemory() { this.native.ClearFreeMemory(); } + // IMGUI_API void PrimReserve(int idx_count, int vtx_count); + PrimReserve(idx_count, vtx_count) { this.native.PrimReserve(idx_count, vtx_count); } + // IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles) + PrimRect(a, b, col) { this.native.PrimRect(a, b, col); } + // IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col); + PrimRectUV(a, b, uv_a, uv_b, col) { this.native.PrimRectUV(a, b, uv_a, uv_b, col); } + // IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col); + PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col) { this.native.PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); } + // inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; } + PrimWriteVtx(pos, uv, col) { this.native.PrimWriteVtx(pos, uv, col); } + // inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; } + PrimWriteIdx(idx) { this.native.PrimWriteIdx(idx); } + // inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); } + PrimVtx(pos, uv, col) { this.native.PrimVtx(pos, uv, col); } + // IMGUI_API void UpdateClipRect(); + UpdateClipRect() { this.native.UpdateClipRect(); } + // IMGUI_API void UpdateTextureID(); + UpdateTextureID() { this.native.UpdateTextureID(); } +} +// All draw data to render an ImGui frame +class ImDrawData { + constructor(native) { + this.native = native; + } + IterateDrawLists(callback) { + this.native.IterateDrawLists((draw_list) => { + callback(new ImDrawList(draw_list)); + }); + } + // bool Valid; // Only valid after Render() is called and before the next NewFrame() is called. + get Valid() { return this.native.Valid; } + // ImDrawList** CmdLists; + // int CmdListsCount; + get CmdListsCount() { return this.native.CmdListsCount; } + // int TotalIdxCount; // For convenience, sum of all cmd_lists idx_buffer.Size + get TotalIdxCount() { return this.native.TotalIdxCount; } + // int TotalVtxCount; // For convenience, sum of all cmd_lists vtx_buffer.Size + get TotalVtxCount() { return this.native.TotalVtxCount; } + // ImVec2 DisplayPos; // Upper-left position of the viewport to render (== upper-left of the orthogonal projection matrix to use) + get DisplayPos() { return this.native.DisplayPos; } + // ImVec2 DisplaySize; // Size of the viewport to render (== io.DisplaySize for the main viewport) (DisplayPos + DisplaySize == lower-right of the orthogonal projection matrix to use) + get DisplaySize() { return this.native.DisplaySize; } + // ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display. + get FramebufferScale() { return this.native.FramebufferScale; } + // Functions + // ImDrawData() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCount = 0; } + // IMGUI_API void DeIndexAllBuffers(); // For backward compatibility or convenience: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering! + DeIndexAllBuffers() { this.native.DeIndexAllBuffers(); } + // IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than ImGui expects, or if there is a difference between your window resolution and framebuffer resolution. + ScaleClipRects(fb_scale) { + this.native.ScaleClipRects(fb_scale); + } +} +class script_ImFontConfig { + constructor() { + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + this.FontData = null; + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + this.FontDataOwnedByAtlas = true; + // int FontNo; // 0 // Index of font within TTF/OTF file + this.FontNo = 0; + // float SizePixels; // // Size in pixels for rasterizer. + this.SizePixels = 0; + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + this.OversampleH = 3; + this.OversampleV = 1; + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + this.PixelSnapH = false; + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + this.GlyphExtraSpacing = new ImVec2(0, 0); + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + this.GlyphOffset = new ImVec2(0, 0); + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + this.GlyphRanges = null; + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + this.GlyphMinAdvanceX = 0; + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + this.GlyphMaxAdvanceX = Number.MAX_VALUE; + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + this.MergeMode = false; + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + this.RasterizerFlags = 0; + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + this.RasterizerMultiply = 1.0; + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + this.Name = ""; + // ImFont* DstFont; + this.DstFont = null; + // IMGUI_API ImFontConfig(); + } +} +class ImFontConfig { + constructor(internal = new script_ImFontConfig()) { + this.internal = internal; + } + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + get FontData() { return this.internal.FontData; } + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + get FontDataOwnedByAtlas() { return this.internal.FontDataOwnedByAtlas; } + // int FontNo; // 0 // Index of font within TTF/OTF file + get FontNo() { return this.internal.FontNo; } + // float SizePixels; // // Size in pixels for rasterizer. + get SizePixels() { return this.internal.SizePixels; } + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + get OversampleH() { return this.internal.OversampleH; } + get OversampleV() { return this.internal.OversampleV; } + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + get PixelSnapH() { return this.internal.PixelSnapH; } + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + get GlyphExtraSpacing() { return this.internal.GlyphExtraSpacing; } + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + get GlyphOffset() { return this.internal.GlyphOffset; } + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + get GlyphRanges() { return this.internal.GlyphRanges; } + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + get GlyphMinAdvanceX() { return this.internal.GlyphMinAdvanceX; } + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + get GlyphMaxAdvanceX() { return this.internal.GlyphMaxAdvanceX; } + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + get MergeMode() { return this.internal.MergeMode; } + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + get RasterizerFlags() { return this.internal.RasterizerFlags; } + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + get RasterizerMultiply() { return this.internal.RasterizerMultiply; } + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + get Name() { return this.internal.Name; } + set Name(value) { this.internal.Name = value; } + // ImFont* DstFont; + get DstFont() { + const font = this.internal.DstFont; + return font && new ImFont(font); + } +} +// struct ImFontGlyph +class script_ImFontGlyph { + constructor() { + // ImWchar Codepoint; // 0x0000..0xFFFF + this.Codepoint = 0; + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + this.AdvanceX = 0.0; + // float X0, Y0, X1, Y1; // Glyph corners + this.X0 = 0.0; + this.Y0 = 0.0; + this.X1 = 1.0; + this.Y1 = 1.0; + // float U0, V0, U1, V1; // Texture coordinates + this.U0 = 0.0; + this.V0 = 0.0; + this.U1 = 1.0; + this.V1 = 1.0; + } +} +class ImFontGlyph { + constructor(internal = new script_ImFontGlyph()) { + this.internal = internal; + } + // ImWchar Codepoint; // 0x0000..0xFFFF + get Codepoint() { return this.internal.Codepoint; } + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + get AdvanceX() { return this.internal.AdvanceX; } + ; + // float X0, Y0, X1, Y1; // Glyph corners + get X0() { return this.internal.X0; } + ; + get Y0() { return this.internal.Y0; } + ; + get X1() { return this.internal.X1; } + ; + get Y1() { return this.internal.Y1; } + ; + // float U0, V0, U1, V1; // Texture coordinates + get U0() { return this.internal.U0; } + ; + get V0() { return this.internal.V0; } + ; + get U1() { return this.internal.U1; } + ; + get V1() { return this.internal.V1; } + ; +} +var ImFontAtlasFlags; +(function (ImFontAtlasFlags) { + ImFontAtlasFlags[ImFontAtlasFlags["None"] = 0] = "None"; + ImFontAtlasFlags[ImFontAtlasFlags["NoPowerOfTwoHeight"] = 1] = "NoPowerOfTwoHeight"; + ImFontAtlasFlags[ImFontAtlasFlags["NoMouseCursors"] = 2] = "NoMouseCursors"; +})(ImFontAtlasFlags || (ImFontAtlasFlags = {})); +// Load and rasterize multiple TTF/OTF fonts into a same texture. +// Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering. +// We also add custom graphic data into the texture that serves for ImGui. +// 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you. +// 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data. +// 3. Upload the pixels data into a texture within your graphics system. +// 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture. +// IMPORTANT: If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the ImFont is build (when calling GetTextData*** or Build()). We only copy the pointer, not the data. +class ImFontAtlas { + constructor(native) { + this.native = native; + } + // IMGUI_API ImFontAtlas(); + // IMGUI_API ~ImFontAtlas(); + // IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg); + // IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL); + AddFontDefault(font_cfg = null) { + return new ImFont(this.native.AddFontDefault(font_cfg)); + } + // IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); + // IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after Build(). Set font_cfg->FontDataOwnedByAtlas to false to keep ownership. + AddFontFromMemoryTTF(data, size_pixels, font_cfg = null, glyph_ranges = null) { + return new ImFont(this.native.AddFontFromMemoryTTF(new Uint8Array(data), size_pixels, font_cfg && font_cfg.internal, glyph_ranges)); + } + // IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp. + // IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter. + // IMGUI_API void ClearTexData(); // Clear the CPU-side texture data. Saves RAM once the texture has been copied to graphics memory. + ClearTexData() { this.native.ClearTexData(); } + // IMGUI_API void ClearInputData(); // Clear the input TTF data (inc sizes, glyph ranges) + ClearInputData() { this.native.ClearInputData(); } + // IMGUI_API void ClearFonts(); // Clear the ImGui-side font data (glyphs storage, UV coordinates) + ClearFonts() { this.native.ClearFonts(); } + // IMGUI_API void Clear(); // Clear all + Clear() { this.native.Clear(); } + // Build atlas, retrieve pixel data. + // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID(). + // RGBA32 format is provided for convenience and compatibility, but note that unless you use CustomRect to draw color data, the RGB pixels emitted from Fonts will all be white (~75% of waste). + // Pitch = Width * BytesPerPixels + // IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions. + Build() { return this.native.Build(); } + // IMGUI_API bool IsBuilt() { return Fonts.Size > 0 && (TexPixelsAlpha8 != NULL || TexPixelsRGBA32 != NULL); } + IsBuilt() { return this.native.IsBuilt(); } + // IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel + GetTexDataAsAlpha8() { + return this.native.GetTexDataAsAlpha8(); + } + // IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel + GetTexDataAsRGBA32() { + return this.native.GetTexDataAsRGBA32(); + } + // void SetTexID(ImTextureID id) { TexID = id; } + SetTexID(id) { this.TexID = id; } + //------------------------------------------- + // Glyph Ranges + //------------------------------------------- + // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list) + // NB: Make sure that your string are UTF-8 and NOT in your local code page. In C++11, you can create UTF-8 string literal using the u8"Hello world" syntax. See FAQ for details. + // IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin + GetGlyphRangesDefault() { return this.native.GetGlyphRangesDefault(); } + // IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters + GetGlyphRangesKorean() { return this.native.GetGlyphRangesKorean(); } + // IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs + GetGlyphRangesJapanese() { return this.native.GetGlyphRangesJapanese(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs + GetGlyphRangesChineseFull() { return this.native.GetGlyphRangesChineseFull(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese + GetGlyphRangesChineseSimplifiedCommon() { return this.native.GetGlyphRangesChineseSimplifiedCommon(); } + // IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters + GetGlyphRangesCyrillic() { return this.native.GetGlyphRangesCyrillic(); } + // IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters + GetGlyphRangesThai() { return this.native.GetGlyphRangesThai(); } + // IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters + GetGlyphRangesVietnamese() { return this.native.GetGlyphRangesVietnamese(); } + // Helpers to build glyph ranges from text data. Feed your application strings/characters to it then call BuildRanges(). + // struct GlyphRangesBuilder + // { + // ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used) + // GlyphRangesBuilder() { UsedChars.resize(0x10000 / 8); memset(UsedChars.Data, 0, 0x10000 / 8); } + // bool GetBit(int n) const { return (UsedChars[n >> 3] & (1 << (n & 7))) != 0; } + // void SetBit(int n) { UsedChars[n >> 3] |= 1 << (n & 7); } // Set bit 'c' in the array + // void AddChar(ImWchar c) { SetBit(c); } // Add character + // IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added) + // IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault) to force add all of ASCII/Latin+Ext + // IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges + // }; + //------------------------------------------- + // Custom Rectangles/Glyphs API + //------------------------------------------- + // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. After calling Build(), you can query the rectangle position and render your pixels. + // You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs. + // struct CustomRect + // { + // unsigned int ID; // Input // User ID. Use <0x10000 to map into a font glyph, >=0x10000 for other/internal/custom texture data. + // unsigned short Width, Height; // Input // Desired rectangle dimension + // unsigned short X, Y; // Output // Packed position in Atlas + // float GlyphAdvanceX; // Input // For custom font glyphs only (ID<0x10000): glyph xadvance + // ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph display offset + // ImFont* Font; // Input // For custom font glyphs only (ID<0x10000): target font + // CustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); Font = NULL; } + // bool IsPacked() const { return X != 0xFFFF; } + // }; + // IMGUI_API int AddCustomRectRegular(unsigned int id, int width, int height); // Id needs to be >= 0x10000. Id >= 0x80000000 are reserved for ImGui and ImDrawList + // IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0,0)); // Id needs to be < 0x10000 to register a rectangle to map into a specific font. + // IMGUI_API void CalcCustomRectUV(const CustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max); + // const CustomRect* GetCustomRectByIndex(int index) const { if (index < 0) return NULL; return &CustomRects[index]; } + //------------------------------------------- + // Members + //------------------------------------------- + // bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert. + get Locked() { return this.native.Locked; } + set Locked(value) { this.native.Locked = value; } + // ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_) + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure. + get TexID() { + return ImGuiContext.getTexture(this.native.TexID); + } + set TexID(value) { + this.native.TexID = ImGuiContext.setTexture(value); + } + // int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height. + get TexDesiredWidth() { return this.native.TexDesiredWidth; } + set TexDesiredWidth(value) { this.native.TexDesiredWidth = value; } + // int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1. + get TexGlyphPadding() { return this.native.TexGlyphPadding; } + set TexGlyphPadding(value) { this.native.TexGlyphPadding = value; } + // [Internal] + // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you. + // unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight + // unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4 + // int TexWidth; // Texture width calculated during Build(). + get TexWidth() { return this.native.TexWidth; } + // int TexHeight; // Texture height calculated during Build(). + get TexHeight() { return this.native.TexHeight; } + // ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight) + get TexUvScale() { return this.native.TexUvScale; } + // ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel + get TexUvWhitePixel() { return this.native.TexUvWhitePixel; } + // ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font. + get Fonts() { + const fonts = new ImVector(); + this.native.IterateFonts((font) => { + fonts.push(new ImFont(font)); + }); + return fonts; + } +} +// Font runtime data and rendering +// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32(). +class ImFont { + constructor(native) { + this.native = native; + } + // Members: Hot ~62/78 bytes + // float FontSize; // // Height of characters, set during loading (don't change after loading) + get FontSize() { return this.native.FontSize; } + // float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale() + get Scale() { return this.native.Scale; } + set Scale(value) { this.native.Scale = value; } + // ImVec2 DisplayOffset; // = (0.f,1.f) // Offset font rendering by xx pixels + get DisplayOffset() { return this.native.DisplayOffset; } + // ImVector Glyphs; // // All glyphs. + get Glyphs() { + const glyphs = new ImVector(); + this.native.IterateGlyphs((glyph) => { + glyphs.push(new ImFontGlyph(glyph)); // TODO: wrap native + }); + return glyphs; + } + // ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI). + // get IndexAdvanceX(): any { return this.native.IndexAdvanceX; } + // ImVector IndexLookup; // // Sparse. Index glyphs by Unicode code-point. + // get IndexLookup(): any { return this.native.IndexLookup; } + // const ImFontGlyph* FallbackGlyph; // == FindGlyph(FontFallbackChar) + get FallbackGlyph() { + const glyph = this.native.FallbackGlyph; + return glyph && new ImFontGlyph(glyph); + } + set FallbackGlyph(value) { + this.native.FallbackGlyph = value && value.internal; + } + // float FallbackAdvanceX; // == FallbackGlyph->AdvanceX + get FallbackAdvanceX() { return this.native.FallbackAdvanceX; } + // ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found. Only set via SetFallbackChar() + get FallbackChar() { return this.native.FallbackChar; } + // Members: Cold ~18/26 bytes + // short ConfigDataCount; // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont. + get ConfigDataCount() { return this.ConfigData.length; } + // ImFontConfig* ConfigData; // // Pointer within ContainerAtlas->ConfigData + get ConfigData() { + const cfg_data = []; + this.native.IterateConfigData((cfg) => { + cfg_data.push(new ImFontConfig(cfg)); + }); + return cfg_data; + } + // ImFontAtlas* ContainerAtlas; // // What we has been loaded into + get ContainerAtlas() { return null; } + // float Ascent, Descent; // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize] + get Ascent() { return this.native.Ascent; } + get Descent() { return this.native.Descent; } + // int MetricsTotalSurface;// // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs) + get MetricsTotalSurface() { return this.native.MetricsTotalSurface; } + // Methods + // IMGUI_API ImFont(); + // IMGUI_API ~ImFont(); + // IMGUI_API void ClearOutputData(); + ClearOutputData() { return this.native.ClearOutputData(); } + // IMGUI_API void BuildLookupTable(); + BuildLookupTable() { return this.native.BuildLookupTable(); } + // IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const; + FindGlyph(c) { + const glyph = this.native.FindGlyph(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const; + FindGlyphNoFallback(c) { + const glyph = this.native.FindGlyphNoFallback(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API void SetFallbackChar(ImWchar c); + SetFallbackChar(c) { return this.native.SetFallbackChar(c); } + // float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; } + GetCharAdvance(c) { return this.native.GetCharAdvance(c); } + // bool IsLoaded() const { return ContainerAtlas != NULL; } + IsLoaded() { return this.native.IsLoaded(); } + // const char* GetDebugName() const { return ConfigData ? ConfigData->Name : ""; } + GetDebugName() { return this.native.GetDebugName(); } + // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable. + // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable. + // IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8 + CalcTextSizeA(size, max_width, wrap_width, text_begin, text_end = null, remaining = null) { + return this.native.CalcTextSizeA(size, max_width, wrap_width, text_end !== null ? text_begin.substring(0, text_end) : text_begin, remaining, new ImVec2()); + } + // IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const; + CalcWordWrapPositionA(scale, text, text_end = null, wrap_width) { + return this.native.CalcWordWrapPositionA(scale, text_end !== null ? text.substring(0, text_end) : text, wrap_width); + } + // IMGUI_API void RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, unsigned short c) const; + RenderChar(draw_list, size, pos, col, c) { + this.native.RenderChar(draw_list.native, size, pos, col, c); + } + // IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const; + RenderText(draw_list, size, pos, col, clip_rect, text_begin, text_end = null, wrap_width = 0.0, cpu_fine_clip = false) { } +} +// This is where your app communicate with Dear ImGui. Access via ImGui::GetIO(). +// Read 'Programmer guide' section in .cpp file for general usage. +class ImGuiIO { + constructor(native) { + this.native = native; + // int KeyMap[ImGuiKey_COUNT]; // // Map of indices into the KeysDown[512] entries array + this.KeyMap = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiKey.COUNT; + } + return this.native._getAt_KeyMap(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeyMap(Number(key), value); + }, + }); + // bool MouseDown[5]; // Mouse buttons: left, right, middle + extras. ImGui itself mostly only uses left button (BeginPopupContext** are using right button). Others buttons allows us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API. + this.MouseDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_MouseDown(Number(key), value); + }, + }); + // bool KeysDown[512]; // Keyboard keys that are pressed (in whatever storage order you naturally have access to keyboard data) + this.KeysDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeysDown(Number(key), value); + }, + }); + // float NavInputs[ImGuiNavInput_COUNT]; // Gamepad inputs (keyboard keys will be auto-mapped and be written here by ImGui::NewFrame) + this.NavInputs = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputs(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_NavInputs(Number(key), value); + }, + }); + //------------------------------------------------------------------ + // [Internal] ImGui will maintain those fields. Forward compatibility not guaranteed! + //------------------------------------------------------------------ + // ImVec2 MousePosPrev; // Previous mouse position temporary storage (nb: not for public use, set to MousePos in NewFrame()) + // ImVec2 MouseClickedPos[5]; // Position at time of clicking + this.MouseClickedPos = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseClickedPos(Number(key)); + }, + }); + // float MouseClickedTime[5]; // Time of last click (used to figure out double-click) + // bool MouseClicked[5]; // Mouse button went from !Down to Down + // bool MouseDoubleClicked[5]; // Has mouse button been double-clicked? + // bool MouseReleased[5]; // Mouse button went from Down to !Down + // bool MouseDownOwned[5]; // Track if button was clicked inside a window. We don't request mouse capture from the application if click started outside ImGui bounds. + // float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked) + this.MouseDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDownDuration(Number(key)); + }, + }); + // float MouseDownDurationPrev[5]; // Previous time the mouse button has been down + // ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point + // float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point + // float KeysDownDuration[512]; // Duration the keyboard key has been down (0.0f == just pressed) + this.KeysDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDownDuration(Number(key)); + }, + }); + // float KeysDownDurationPrev[512]; // Previous duration the key has been down + // float NavInputsDownDuration[ImGuiNavInput_COUNT]; + this.NavInputsDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputsDownDuration(Number(key)); + }, + }); + } + //------------------------------------------------------------------ + // Settings (fill once) // Default value: + //------------------------------------------------------------------ + // ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc. + get ConfigFlags() { return this.native.ConfigFlags; } + set ConfigFlags(value) { this.native.ConfigFlags = value; } + // ImGuiBackendFlags BackendFlags; // = 0 // Set ImGuiBackendFlags_ enum. Set by imgui_impl_xxx files or custom back-end to communicate features supported by the back-end. + get BackendFlags() { return this.native.BackendFlags; } + set BackendFlags(value) { this.native.BackendFlags = value; } + // ImVec2 DisplaySize; // // Display size, in pixels. For clamping windows positions. + get DisplaySize() { return this.native.DisplaySize; } + // float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds. + get DeltaTime() { return this.native.DeltaTime; } + set DeltaTime(value) { this.native.DeltaTime = value; } + // float IniSavingRate; // = 5.0f // Maximum time between saving positions/sizes to .ini file, in seconds. + get IniSavingRate() { return this.native.IniSavingRate; } + set IniSavingRate(value) { this.native.IniSavingRate = value; } + // const char* IniFilename; // = "imgui.ini" // Path to .ini file. NULL to disable .ini saving. + get IniFilename() { return this.native.IniFilename; } + set IniFilename(value) { this.native.IniFilename = value; } + // const char* LogFilename; // = "imgui_log.txt" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified). + get LogFilename() { return this.native.LogFilename; } + set LogFilename(value) { this.native.LogFilename = value; } + // float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds. + get MouseDoubleClickTime() { return this.native.MouseDoubleClickTime; } + set MouseDoubleClickTime(value) { this.native.MouseDoubleClickTime = value; } + // float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels. + get MouseDoubleClickMaxDist() { return this.native.MouseDoubleClickMaxDist; } + set MouseDoubleClickMaxDist(value) { this.native.MouseDoubleClickMaxDist = value; } + // float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging + get MouseDragThreshold() { return this.native.MouseDragThreshold; } + set MouseDragThreshold(value) { this.native.MouseDragThreshold = value; } + // float KeyRepeatDelay; // = 0.250f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.). + get KeyRepeatDelay() { return this.native.KeyRepeatDelay; } + set KeyRepeatDelay(value) { this.native.KeyRepeatDelay = value; } + // float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds. + get KeyRepeatRate() { return this.native.KeyRepeatRate; } + set KeyRepeatRate(value) { this.native.KeyRepeatRate = value; } + // void* UserData; // = NULL // Store your own data for retrieval by callbacks. + get UserData() { return this.native.UserData; } + set UserData(value) { this.native.UserData = value; } + // ImFontAtlas* Fonts; // // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array. + get Fonts() { return new ImFontAtlas(this.native.Fonts); } + // float FontGlobalScale; // = 1.0f // Global scale all fonts + get FontGlobalScale() { return this.native.FontGlobalScale; } + set FontGlobalScale(value) { this.native.FontGlobalScale = value; } + // bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel. + get FontAllowUserScaling() { return this.native.FontAllowUserScaling; } + set FontAllowUserScaling(value) { this.native.FontAllowUserScaling = value; } + // ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0]. + get FontDefault() { + const font = this.native.FontDefault; + return (font === null) ? null : new ImFont(font); + } + set FontDefault(value) { + this.native.FontDefault = value && value.native; + } + // ImVec2 DisplayFramebufferScale; // = (1.0f,1.0f) // For retina display or other situations where window coordinates are different from framebuffer coordinates. User storage only, presently not used by ImGui. + get DisplayFramebufferScale() { return this.native.DisplayFramebufferScale; } + // Miscellaneous configuration options + // bool OptMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl + get ConfigMacOSXBehaviors() { return this.native.ConfigMacOSXBehaviors; } + set ConfigMacOSXBehaviors(value) { this.native.ConfigMacOSXBehaviors = value; } + // bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor, for users who consider it annoying. + get ConfigInputTextCursorBlink() { return this.native.ConfigInputTextCursorBlink; } + set ConfigInputTextCursorBlink(value) { this.native.ConfigInputTextCursorBlink = value; } + // bool ConfigWindowsResizeFromEdges; // = false // [BETA] Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be the ImGuiWindowFlags_ResizeFromAnySide flag) + get ConfigWindowsResizeFromEdges() { return this.native.ConfigWindowsResizeFromEdges; } + set ConfigWindowsResizeFromEdges(value) { this.native.ConfigWindowsResizeFromEdges = value; } + // bool ConfigWindowsMoveFromTitleBarOnly;// = false // [BETA] Set to true to only allow moving windows when clicked+dragged from the title bar. Windows without a title bar are not affected. + get ConfigWindowsMoveFromTitleBarOnly() { return this.native.ConfigWindowsMoveFromTitleBarOnly; } + set ConfigWindowsMoveFromTitleBarOnly(value) { this.native.ConfigWindowsMoveFromTitleBarOnly = value; } + //------------------------------------------------------------------ + // Settings (User Functions) + //------------------------------------------------------------------ + // Optional: Platform/Renderer back-end name (informational only! will be displayed in About Window) + User data for back-end/wrappers to store their own stuff. + // const char* BackendPlatformName; // = NULL + get BackendPlatformName() { return this.native.BackendPlatformName; } + set BackendPlatformName(value) { this.native.BackendPlatformName = value; } + // const char* BackendRendererName; // = NULL + get BackendRendererName() { return this.native.BackendRendererName; } + set BackendRendererName(value) { this.native.BackendRendererName = value; } + // void* BackendPlatformUserData; // = NULL + get BackendPlatformUserData() { return this.native.BackendPlatformUserData; } + set BackendPlatformUserData(value) { this.native.BackendPlatformUserData = value; } + // void* BackendRendererUserData; // = NULL + get BackendRendererUserData() { return this.native.BackendRendererUserData; } + set BackendRendererUserData(value) { this.native.BackendRendererUserData = value; } + // void* BackendLanguageUserData; // = NULL + get BackendLanguageUserData() { return this.native.BackendLanguageUserData; } + set BackendLanguageUserData(value) { this.native.BackendLanguageUserData = value; } + // Optional: access OS clipboard + // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures) + // const char* (*GetClipboardTextFn)(void* user_data); + get GetClipboardTextFn() { return this.native.GetClipboardTextFn; } + set GetClipboardTextFn(value) { this.native.GetClipboardTextFn = value; } + // void (*SetClipboardTextFn)(void* user_data, const char* text); + get SetClipboardTextFn() { return this.native.SetClipboardTextFn; } + set SetClipboardTextFn(value) { this.native.SetClipboardTextFn = value; } + // void* ClipboardUserData; + get ClipboardUserData() { return this.native.ClipboardUserData; } + set ClipboardUserData(value) { this.native.ClipboardUserData = value; } + // Optional: override memory allocations. MemFreeFn() may be called with a NULL pointer. + // (default to posix malloc/free) + // void* (*MemAllocFn)(size_t sz); + // void (*MemFreeFn)(void* ptr); + // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME in Windows) + // (default to use native imm32 api on Windows) + // void (*ImeSetInputScreenPosFn)(int x, int y); + // void* ImeWindowHandle; // (Windows) Set this to your HWND to get automatic IME cursor positioning. + //------------------------------------------------------------------ + // Input - Fill before calling NewFrame() + //------------------------------------------------------------------ + // ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX,-FLT_MAX) if mouse is unavailable (on another screen, etc.) + get MousePos() { return this.native.MousePos; } + // float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text. + get MouseWheel() { return this.native.MouseWheel; } + set MouseWheel(value) { this.native.MouseWheel = value; } + // float MouseWheelH; // Mouse wheel (Horizontal). Most users don't have a mouse with an horizontal wheel, may not be filled by all back-ends. + get MouseWheelH() { return this.native.MouseWheelH; } + set MouseWheelH(value) { this.native.MouseWheelH = value; } + // bool MouseDrawCursor; // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor). + get MouseDrawCursor() { return this.native.MouseDrawCursor; } + set MouseDrawCursor(value) { this.native.MouseDrawCursor = value; } + // bool KeyCtrl; // Keyboard modifier pressed: Control + get KeyCtrl() { return this.native.KeyCtrl; } + set KeyCtrl(value) { this.native.KeyCtrl = value; } + // bool KeyShift; // Keyboard modifier pressed: Shift + get KeyShift() { return this.native.KeyShift; } + set KeyShift(value) { this.native.KeyShift = value; } + // bool KeyAlt; // Keyboard modifier pressed: Alt + get KeyAlt() { return this.native.KeyAlt; } + set KeyAlt(value) { this.native.KeyAlt = value; } + // bool KeySuper; // Keyboard modifier pressed: Cmd/Super/Windows + get KeySuper() { return this.native.KeySuper; } + set KeySuper(value) { this.native.KeySuper = value; } + // Functions + // IMGUI_API void AddInputCharacter(ImWchar c); // Add new character into InputCharacters[] + AddInputCharacter(c) { this.native.AddInputCharacter(c); } + // IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Add new characters into InputCharacters[] from an UTF-8 string + AddInputCharactersUTF8(utf8_chars) { this.native.AddInputCharactersUTF8(utf8_chars); } + // inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Clear the text input buffer manually + ClearInputCharacters() { this.native.ClearInputCharacters(); } + //------------------------------------------------------------------ + // Output - Retrieve after calling NewFrame() + //------------------------------------------------------------------ + // bool WantCaptureMouse; // When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. This is set by ImGui when it wants to use your mouse (e.g. unclicked mouse is hovering a window, or a widget is active). + get WantCaptureMouse() { return this.native.WantCaptureMouse; } + set WantCaptureMouse(value) { this.native.WantCaptureMouse = value; } + // bool WantCaptureKeyboard; // When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. This is set by ImGui when it wants to use your keyboard inputs. + get WantCaptureKeyboard() { return this.native.WantCaptureKeyboard; } + set WantCaptureKeyboard(value) { this.native.WantCaptureKeyboard = value; } + // bool WantTextInput; // Mobile/console: when io.WantTextInput is true, you may display an on-screen keyboard. This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active). + get WantTextInput() { return this.native.WantTextInput; } + set WantTextInput(value) { this.native.WantTextInput = value; } + // bool WantSetMousePos; // [BETA-NAV] MousePos has been altered, back-end should reposition mouse on next frame. Set only when 'NavMovesMouse=true'. + get WantSetMousePos() { return this.native.WantSetMousePos; } + set WantSetMousePos(value) { this.native.WantSetMousePos = value; } + // bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. IMPORTANT: You need to clear io.WantSaveIniSettings yourself. + get WantSaveIniSettings() { return this.native.WantSaveIniSettings; } + set WantSaveIniSettings(value) { this.native.WantSaveIniSettings = value; } + // bool NavActive; // Directional navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag. + get NavActive() { return this.native.NavActive; } + set NavActive(value) { this.native.NavActive = value; } + // bool NavVisible; // Directional navigation is visible and allowed (will handle ImGuiKey_NavXXX events). + get NavVisible() { return this.native.NavVisible; } + set NavVisible(value) { this.native.NavVisible = value; } + // float Framerate; // Application framerate estimation, in frame per second. Solely for convenience. Rolling average estimation based on IO.DeltaTime over 120 frames + get Framerate() { return this.native.Framerate; } + // int MetricsRenderVertices; // Vertices output during last call to Render() + get MetricsRenderVertices() { return this.native.MetricsRenderVertices; } + // int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3 + get MetricsRenderIndices() { return this.native.MetricsRenderIndices; } + // int MetricsRenderWindows; // Number of visible windows + get MetricsRenderWindows() { return this.native.MetricsRenderWindows; } + // int MetricsActiveWindows; // Number of visible root windows (exclude child windows) + get MetricsActiveWindows() { return this.native.MetricsActiveWindows; } + // int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts. + get MetricsActiveAllocations() { return this.native.MetricsActiveAllocations; } + // ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta. + get MouseDelta() { return this.native.MouseDelta; } +} +const _texturesById = []; +// Context creation and access, if you want to use multiple context, share context between modules (e.g. DLL). +// All contexts share a same ImFontAtlas by default. If you want different font atlas, you can new() them and overwrite the GetIO().Fonts variable of an ImGui context. +// All those functions are not reliant on the current context. +class ImGuiContext { + constructor(native) { + this.native = native; + } + static getTexture(index) { + return _texturesById[index] || null; + } + static setTexture(texture) { + let index = _texturesById.indexOf(texture); + if (index === -1) { + for (let i = 0; i < _texturesById.length; ++i) { + if (_texturesById[i] === null) { + _texturesById[i] = texture; + return i; + } + } + index = _texturesById.length; + _texturesById.push(texture); + } + return index; + } +} +ImGuiContext.current_ctx = null; +// IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL); +function CreateContext(shared_font_atlas = null) { + const ctx = new ImGuiContext(bind.CreateContext(shared_font_atlas ? shared_font_atlas.native : null)); + if (ImGuiContext.current_ctx === null) { + ImGuiContext.current_ctx = ctx; + } + return ctx; +} +// IMGUI_API void SetCurrentContext(ImGuiContext* ctx); +function SetCurrentContext(ctx) { + bind.SetCurrentContext((ctx === null) ? null : ctx.native); + ImGuiContext.current_ctx = ctx; +} +// IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert); +function DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx) { + return bind.DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx); +} +// Main +// IMGUI_API ImGuiIO& GetIO(); +function GetIO() { return new ImGuiIO(bind.GetIO()); } +// IMGUI_API void NewFrame(); // start a new ImGui frame, you can submit any command from this point until Render()/EndFrame(). +function NewFrame() { bind.NewFrame(); } +// IMGUI_API void EndFrame(); // ends the ImGui frame. automatically called by Render(), so most likely don't need to ever call that yourself directly. If you don't need to render you may call EndFrame() but you'll have wasted CPU already. If you don't need to render, better to not create any imgui windows instead! +function EndFrame() { bind.EndFrame(); } +// IMGUI_API void Render(); // ends the ImGui frame, finalize the draw data, then call your io.RenderDrawListsFn() function if set. +function Render() { bind.Render(); } +// IMGUI_API ImDrawData* GetDrawData(); // same value as passed to your io.RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame() +function GetDrawData() { + const draw_data = bind.GetDrawData(); + return (draw_data === null) ? null : new ImDrawData(draw_data); +} +// IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you +function GetMouseCursor() { return bind.GetMouseCursor(); } +// IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source. +function LoadIniSettingsFromMemory(ini_data, ini_size = 0) { bind.LoadIniSettingsFromMemory(ini_data); } +// IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings. +function SaveIniSettingsToMemory(out_ini_size = null) { return bind.SaveIniSettingsToMemory(); } + +var promise = createCommonjsModule(function (module, exports) { +(function(global){ + +// +// Check for native Promise and it has correct interface +// + +var NativePromise = global['Promise']; +var nativePromiseSupported = + NativePromise && + // Some of these methods are missing from + // Firefox/Chrome experimental implementations + 'resolve' in NativePromise && + 'reject' in NativePromise && + 'all' in NativePromise && + 'race' in NativePromise && + // Older version of the spec had a resolver object + // as the arg rather than a function + (function(){ + var resolve; + new NativePromise(function(r){ resolve = r; }); + return typeof resolve === 'function'; + })(); + + +// +// export if necessary +// + +if ( exports) +{ + // node.js + exports.Promise = nativePromiseSupported ? NativePromise : Promise; + exports.Polyfill = Promise; +} +else +{ + // AMD + { + // in browser add to global + if (!nativePromiseSupported) + global['Promise'] = Promise; + } +} + + +// +// Polyfill +// + +var PENDING = 'pending'; +var SEALED = 'sealed'; +var FULFILLED = 'fulfilled'; +var REJECTED = 'rejected'; +var NOOP = function(){}; + +function isArray(value) { + return Object.prototype.toString.call(value) === '[object Array]'; +} + +// async calls +var asyncSetTimer = typeof setImmediate !== 'undefined' ? setImmediate : setTimeout; +var asyncQueue = []; +var asyncTimer; + +function asyncFlush(){ + // run promise callbacks + for (var i = 0; i < asyncQueue.length; i++) + asyncQueue[i][0](asyncQueue[i][1]); + + // reset async asyncQueue + asyncQueue = []; + asyncTimer = false; +} + +function asyncCall(callback, arg){ + asyncQueue.push([callback, arg]); + + if (!asyncTimer) + { + asyncTimer = true; + asyncSetTimer(asyncFlush, 0); + } +} + + +function invokeResolver(resolver, promise) { + function resolvePromise(value) { + resolve(promise, value); + } + + function rejectPromise(reason) { + reject(promise, reason); + } + + try { + resolver(resolvePromise, rejectPromise); + } catch(e) { + rejectPromise(e); + } +} + +function invokeCallback(subscriber){ + var owner = subscriber.owner; + var settled = owner.state_; + var value = owner.data_; + var callback = subscriber[settled]; + var promise = subscriber.then; + + if (typeof callback === 'function') + { + settled = FULFILLED; + try { + value = callback(value); + } catch(e) { + reject(promise, e); + } + } + + if (!handleThenable(promise, value)) + { + if (settled === FULFILLED) + resolve(promise, value); + + if (settled === REJECTED) + reject(promise, value); + } +} + +function handleThenable(promise, value) { + var resolved; + + try { + if (promise === value) + throw new TypeError('A promises callback cannot return that same promise.'); + + if (value && (typeof value === 'function' || typeof value === 'object')) + { + var then = value.then; // then should be retrived only once + + if (typeof then === 'function') + { + then.call(value, function(val){ + if (!resolved) + { + resolved = true; + + if (value !== val) + resolve(promise, val); + else + fulfill(promise, val); + } + }, function(reason){ + if (!resolved) + { + resolved = true; + + reject(promise, reason); + } + }); + + return true; + } + } + } catch (e) { + if (!resolved) + reject(promise, e); + + return true; + } + + return false; +} + +function resolve(promise, value){ + if (promise === value || !handleThenable(promise, value)) + fulfill(promise, value); +} + +function fulfill(promise, value){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = value; + + asyncCall(publishFulfillment, promise); + } +} + +function reject(promise, reason){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = reason; + + asyncCall(publishRejection, promise); + } +} + +function publish(promise) { + var callbacks = promise.then_; + promise.then_ = undefined; + + for (var i = 0; i < callbacks.length; i++) { + invokeCallback(callbacks[i]); + } +} + +function publishFulfillment(promise){ + promise.state_ = FULFILLED; + publish(promise); +} + +function publishRejection(promise){ + promise.state_ = REJECTED; + publish(promise); +} + +/** +* @class +*/ +function Promise(resolver){ + if (typeof resolver !== 'function') + throw new TypeError('Promise constructor takes a function argument'); + + if (this instanceof Promise === false) + throw new TypeError('Failed to construct \'Promise\': Please use the \'new\' operator, this object constructor cannot be called as a function.'); + + this.then_ = []; + + invokeResolver(resolver, this); +} + +Promise.prototype = { + constructor: Promise, + + state_: PENDING, + then_: null, + data_: undefined, + + then: function(onFulfillment, onRejection){ + var subscriber = { + owner: this, + then: new this.constructor(NOOP), + fulfilled: onFulfillment, + rejected: onRejection + }; + + if (this.state_ === FULFILLED || this.state_ === REJECTED) + { + // already resolved, call callback async + asyncCall(invokeCallback, subscriber); + } + else + { + // subscribe + this.then_.push(subscriber); + } + + return subscriber.then; + }, + + 'catch': function(onRejection) { + return this.then(null, onRejection); + } +}; + +Promise.all = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.all().'); + + return new Class(function(resolve, reject){ + var results = []; + var remaining = 0; + + function resolver(index){ + remaining++; + return function(value){ + results[index] = value; + if (!--remaining) + resolve(results); + }; + } + + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolver(i), reject); + else + results[i] = promise; + } + + if (!remaining) + resolve(results); + }); +}; + +Promise.race = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.race().'); + + return new Class(function(resolve, reject) { + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolve, reject); + else + resolve(promise); + } + }); +}; + +Promise.resolve = function(value){ + var Class = this; + + if (value && typeof value === 'object' && value.constructor === Class) + return value; + + return new Class(function(resolve){ + resolve(value); + }); +}; + +Promise.reject = function(reason){ + var Class = this; + + return new Class(function(resolve, reject){ + reject(reason); + }); +}; + +})(typeof window != 'undefined' ? window : typeof commonjsGlobal != 'undefined' ? commonjsGlobal : typeof self != 'undefined' ? self : commonjsGlobal); +}); +var promise_1 = promise.Promise; +var promise_2 = promise.Polyfill; + +/* +object-assign +(c) Sindre Sorhus +@license MIT +*/ +/* eslint-disable no-unused-vars */ +var getOwnPropertySymbols = Object.getOwnPropertySymbols; +var hasOwnProperty = Object.prototype.hasOwnProperty; +var propIsEnumerable = Object.prototype.propertyIsEnumerable; + +function toObject(val) { + if (val === null || val === undefined) { + throw new TypeError('Object.assign cannot be called with null or undefined'); + } + + return Object(val); +} + +function shouldUseNative() { + try { + if (!Object.assign) { + return false; + } + + // Detect buggy property enumeration order in older V8 versions. + + // https://bugs.chromium.org/p/v8/issues/detail?id=4118 + var test1 = new String('abc'); // eslint-disable-line no-new-wrappers + test1[5] = 'de'; + if (Object.getOwnPropertyNames(test1)[0] === '5') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test2 = {}; + for (var i = 0; i < 10; i++) { + test2['_' + String.fromCharCode(i)] = i; + } + var order2 = Object.getOwnPropertyNames(test2).map(function (n) { + return test2[n]; + }); + if (order2.join('') !== '0123456789') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test3 = {}; + 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { + test3[letter] = letter; + }); + if (Object.keys(Object.assign({}, test3)).join('') !== + 'abcdefghijklmnopqrst') { + return false; + } + + return true; + } catch (err) { + // We don't expect any of the above to throw, but better to be safe. + return false; + } +} + +var objectAssign = shouldUseNative() ? Object.assign : function (target, source) { + var from; + var to = toObject(target); + var symbols; + + for (var s = 1; s < arguments.length; s++) { + from = Object(arguments[s]); + + for (var key in from) { + if (hasOwnProperty.call(from, key)) { + to[key] = from[key]; + } + } + + if (getOwnPropertySymbols) { + symbols = getOwnPropertySymbols(from); + for (var i = 0; i < symbols.length; i++) { + if (propIsEnumerable.call(from, symbols[i])) { + to[symbols[i]] = from[symbols[i]]; + } + } + } + } + + return to; +}; + +/*! + * @pixi/polyfill - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/polyfill is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Support for IE 9 - 11 which does not include Promises +if (!window.Promise) +{ + window.Promise = promise_2; +} + +// References: + +if (!Object.assign) +{ + Object.assign = objectAssign; +} + +var commonjsGlobal$1 = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +// References: +// http://paulirish.com/2011/requestanimationframe-for-smart-animating/ +// https://gist.github.com/1579671 +// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision +// https://gist.github.com/timhall/4078614 +// https://github.com/Financial-Times/polyfill-service/tree/master/polyfills/requestAnimationFrame + +// Expected to be used with Browserfiy +// Browserify automatically detects the use of `global` and passes the +// correct reference of `global`, `self`, and finally `window` + +var ONE_FRAME_TIME = 16; + +// Date.now +if (!(Date.now && Date.prototype.getTime)) +{ + Date.now = function now() + { + return new Date().getTime(); + }; +} + +// performance.now +if (!(commonjsGlobal$1.performance && commonjsGlobal$1.performance.now)) +{ + var startTime = Date.now(); + + if (!commonjsGlobal$1.performance) + { + commonjsGlobal$1.performance = {}; + } + + commonjsGlobal$1.performance.now = function () { return Date.now() - startTime; }; +} + +// requestAnimationFrame +var lastTime = Date.now(); +var vendors = ['ms', 'moz', 'webkit', 'o']; + +for (var x = 0; x < vendors.length && !commonjsGlobal$1.requestAnimationFrame; ++x) +{ + var p = vendors[x]; + + commonjsGlobal$1.requestAnimationFrame = commonjsGlobal$1[(p + "RequestAnimationFrame")]; + commonjsGlobal$1.cancelAnimationFrame = commonjsGlobal$1[(p + "CancelAnimationFrame")] || commonjsGlobal$1[(p + "CancelRequestAnimationFrame")]; +} + +if (!commonjsGlobal$1.requestAnimationFrame) +{ + commonjsGlobal$1.requestAnimationFrame = function (callback) { + if (typeof callback !== 'function') + { + throw new TypeError((callback + "is not a function")); + } + + var currentTime = Date.now(); + var delay = ONE_FRAME_TIME + lastTime - currentTime; + + if (delay < 0) + { + delay = 0; + } + + lastTime = currentTime; + + return setTimeout(function () { + lastTime = Date.now(); + callback(performance.now()); + }, delay); + }; +} + +if (!commonjsGlobal$1.cancelAnimationFrame) +{ + commonjsGlobal$1.cancelAnimationFrame = function (id) { return clearTimeout(id); }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign + +if (!Math.sign) +{ + Math.sign = function mathSign(x) + { + x = Number(x); + + if (x === 0 || isNaN(x)) + { + return x; + } + + return x > 0 ? 1 : -1; + }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger + +if (!Number.isInteger) +{ + Number.isInteger = function numberIsInteger(value) + { + return typeof value === 'number' && isFinite(value) && Math.floor(value) === value; + }; +} + +if (!window.ArrayBuffer) +{ + window.ArrayBuffer = Array; +} + +if (!window.Float32Array) +{ + window.Float32Array = Array; +} + +if (!window.Uint32Array) +{ + window.Uint32Array = Array; +} + +if (!window.Uint16Array) +{ + window.Uint16Array = Array; +} + +if (!window.Uint8Array) +{ + window.Uint8Array = Array; +} + +if (!window.Int32Array) +{ + window.Int32Array = Array; +} + +var isMobile = createCommonjsModule(function (module) { +(function(global) { + var apple_phone = /iPhone/i, + apple_ipod = /iPod/i, + apple_tablet = /iPad/i, + android_phone = /\bAndroid(?:.+)Mobile\b/i, // Match 'Android' AND 'Mobile' + android_tablet = /Android/i, + amazon_phone = /\bAndroid(?:.+)SD4930UR\b/i, + amazon_tablet = /\bAndroid(?:.+)(?:KF[A-Z]{2,4})\b/i, + windows_phone = /Windows Phone/i, + windows_tablet = /\bWindows(?:.+)ARM\b/i, // Match 'Windows' AND 'ARM' + other_blackberry = /BlackBerry/i, + other_blackberry_10 = /BB10/i, + other_opera = /Opera Mini/i, + other_chrome = /\b(CriOS|Chrome)(?:.+)Mobile/i, + other_firefox = /Mobile(?:.+)Firefox\b/i; // Match 'Mobile' AND 'Firefox' + + function match(regex, userAgent) { + return regex.test(userAgent); + } + + function isMobile(userAgent) { + var ua = + userAgent || + (typeof navigator !== 'undefined' ? navigator.userAgent : ''); + + // Facebook mobile app's integrated browser adds a bunch of strings that + // match everything. Strip it out if it exists. + var tmp = ua.split('[FBAN'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + // Twitter mobile app's integrated browser on iPad adds a "Twitter for + // iPhone" string. Same probably happens on other tablet platforms. + // This will confuse detection so strip it out if it exists. + tmp = ua.split('Twitter'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + var result = { + apple: { + phone: match(apple_phone, ua) && !match(windows_phone, ua), + ipod: match(apple_ipod, ua), + tablet: + !match(apple_phone, ua) && + match(apple_tablet, ua) && + !match(windows_phone, ua), + device: + (match(apple_phone, ua) || + match(apple_ipod, ua) || + match(apple_tablet, ua)) && + !match(windows_phone, ua) + }, + amazon: { + phone: match(amazon_phone, ua), + tablet: !match(amazon_phone, ua) && match(amazon_tablet, ua), + device: match(amazon_phone, ua) || match(amazon_tablet, ua) + }, + android: { + phone: + (!match(windows_phone, ua) && match(amazon_phone, ua)) || + (!match(windows_phone, ua) && match(android_phone, ua)), + tablet: + !match(windows_phone, ua) && + !match(amazon_phone, ua) && + !match(android_phone, ua) && + (match(amazon_tablet, ua) || match(android_tablet, ua)), + device: + (!match(windows_phone, ua) && + (match(amazon_phone, ua) || + match(amazon_tablet, ua) || + match(android_phone, ua) || + match(android_tablet, ua))) || + match(/\bokhttp\b/i, ua) + }, + windows: { + phone: match(windows_phone, ua), + tablet: match(windows_tablet, ua), + device: match(windows_phone, ua) || match(windows_tablet, ua) + }, + other: { + blackberry: match(other_blackberry, ua), + blackberry10: match(other_blackberry_10, ua), + opera: match(other_opera, ua), + firefox: match(other_firefox, ua), + chrome: match(other_chrome, ua), + device: + match(other_blackberry, ua) || + match(other_blackberry_10, ua) || + match(other_opera, ua) || + match(other_firefox, ua) || + match(other_chrome, ua) + } + }; + (result.any = + result.apple.device || + result.android.device || + result.windows.device || + result.other.device), + // excludes 'other' devices and ipods, targeting touchscreen phones + (result.phone = + result.apple.phone || result.android.phone || result.windows.phone), + (result.tablet = + result.apple.tablet || result.android.tablet || result.windows.tablet); + + return result; + } + + if ( + + module.exports && + typeof window === 'undefined' + ) { + // Node.js + module.exports = isMobile; + } else if ( + + module.exports && + typeof window !== 'undefined' + ) { + // Browserify + module.exports = isMobile(); + module.exports.isMobile = isMobile; + } else { + global.isMobile = isMobile(); + } +})(commonjsGlobal); +}); +var isMobile_1 = isMobile.isMobile; + +/*! + * @pixi/settings - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/settings is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The maximum recommended texture units to use. + * In theory the bigger the better, and for desktop we'll use as many as we can. + * But some mobile devices slow down if there is to many branches in the shader. + * So in practice there seems to be a sweet spot size that varies depending on the device. + * + * In v4, all mobile devices were limited to 4 texture units because for this. + * In v5, we allow all texture units to be used on modern Apple or Android devices. + * + * @private + * @param {number} max + * @returns {number} + */ +function maxRecommendedTextures(max) +{ + var allowMax = true; + + if (isMobile.tablet || isMobile.phone) + { + allowMax = false; + + if (isMobile.apple.device) + { + var match = (navigator.userAgent).match(/OS (\d+)_(\d+)?/); + + if (match) + { + var majorVersion = parseInt(match[1], 10); + + // All texture units can be used on devices that support ios 11 or above + if (majorVersion >= 11) + { + allowMax = true; + } + } + } + if (isMobile.android.device) + { + var match$1 = (navigator.userAgent).match(/Android\s([0-9.]*)/); + + if (match$1) + { + var majorVersion$1 = parseInt(match$1[1], 10); + + // All texture units can be used on devices that support Android 7 (Nougat) or above + if (majorVersion$1 >= 7) + { + allowMax = true; + } + } + } + } + + return allowMax ? max : 4; +} + +/** + * Uploading the same buffer multiple times in a single frame can cause performance issues. + * Apparent on iOS so only check for that at the moment + * This check may become more complex if this issue pops up elsewhere. + * + * @private + * @returns {boolean} + */ +function canUploadSameBuffer() +{ + return !isMobile.apple.device; +} + +/** + * User's customizable globals for overriding the default PIXI settings, such + * as a renderer's default resolution, framerate, float precision, etc. + * @example + * // Use the native window resolution as the default resolution + * // will support high-density displays when rendering + * PIXI.settings.RESOLUTION = window.devicePixelRatio; + * + * // Disable interpolation when scaling, will make texture be pixelated + * PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST; + * @namespace PIXI.settings + */ +var settings = { + + /** + * If set to true WebGL will attempt make textures mimpaped by default. + * Mipmapping will only succeed if the base texture uploaded has power of two dimensions. + * + * @static + * @name MIPMAP_TEXTURES + * @memberof PIXI.settings + * @type {PIXI.MIPMAP_MODES} + * @default PIXI.MIPMAP_MODES.POW2 + */ + MIPMAP_TEXTURES: 1, + + /** + * Default anisotropic filtering level of textures. + * Usually from 0 to 16 + * + * @static + * @name ANISOTROPIC_LEVEL + * @memberof PIXI.settings + * @type {number} + * @default 0 + */ + ANISOTROPIC_LEVEL: 0, + + /** + * Default resolution / device pixel ratio of the renderer. + * + * @static + * @name RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + RESOLUTION: 1, + + /** + * Default filter resolution. + * + * @static + * @name FILTER_RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + FILTER_RESOLUTION: 1, + + /** + * The maximum textures that this device supports. + * + * @static + * @name SPRITE_MAX_TEXTURES + * @memberof PIXI.settings + * @type {number} + * @default 32 + */ + SPRITE_MAX_TEXTURES: maxRecommendedTextures(32), + + // TODO: maybe change to SPRITE.BATCH_SIZE: 2000 + // TODO: maybe add PARTICLE.BATCH_SIZE: 15000 + + /** + * The default sprite batch size. + * + * The default aims to balance desktop and mobile devices. + * + * @static + * @name SPRITE_BATCH_SIZE + * @memberof PIXI.settings + * @type {number} + * @default 4096 + */ + SPRITE_BATCH_SIZE: 4096, + + /** + * The default render options if none are supplied to {@link PIXI.Renderer} + * or {@link PIXI.CanvasRenderer}. + * + * @static + * @name RENDER_OPTIONS + * @memberof PIXI.settings + * @type {object} + * @property {HTMLCanvasElement} view=null + * @property {number} resolution=1 + * @property {boolean} antialias=false + * @property {boolean} forceFXAA=false + * @property {boolean} autoDensity=false + * @property {boolean} transparent=false + * @property {number} backgroundColor=0x000000 + * @property {boolean} clearBeforeRender=true + * @property {boolean} preserveDrawingBuffer=false + * @property {number} width=800 + * @property {number} height=600 + * @property {boolean} legacy=false + */ + RENDER_OPTIONS: { + view: null, + antialias: false, + forceFXAA: false, + autoDensity: false, + transparent: false, + backgroundColor: 0x000000, + clearBeforeRender: true, + preserveDrawingBuffer: false, + width: 800, + height: 600, + legacy: false, + }, + + /** + * Default Garbage Collection mode. + * + * @static + * @name GC_MODE + * @memberof PIXI.settings + * @type {PIXI.GC_MODES} + * @default PIXI.GC_MODES.AUTO + */ + GC_MODE: 0, + + /** + * Default Garbage Collection max idle. + * + * @static + * @name GC_MAX_IDLE + * @memberof PIXI.settings + * @type {number} + * @default 3600 + */ + GC_MAX_IDLE: 60 * 60, + + /** + * Default Garbage Collection maximum check count. + * + * @static + * @name GC_MAX_CHECK_COUNT + * @memberof PIXI.settings + * @type {number} + * @default 600 + */ + GC_MAX_CHECK_COUNT: 60 * 10, + + /** + * Default wrap modes that are supported by pixi. + * + * @static + * @name WRAP_MODE + * @memberof PIXI.settings + * @type {PIXI.WRAP_MODES} + * @default PIXI.WRAP_MODES.CLAMP + */ + WRAP_MODE: 33071, + + /** + * Default scale mode for textures. + * + * @static + * @name SCALE_MODE + * @memberof PIXI.settings + * @type {PIXI.SCALE_MODES} + * @default PIXI.SCALE_MODES.LINEAR + */ + SCALE_MODE: 1, + + /** + * Default specify float precision in vertex shader. + * + * @static + * @name PRECISION_VERTEX + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.HIGH + */ + PRECISION_VERTEX: 'highp', + + /** + * Default specify float precision in fragment shader. + * iOS is best set at highp due to https://github.com/pixijs/pixi.js/issues/3742 + * + * @static + * @name PRECISION_FRAGMENT + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.MEDIUM + */ + PRECISION_FRAGMENT: isMobile.apple.device ? 'highp' : 'mediump', + + /** + * Can we upload the same buffer in a single frame? + * + * @static + * @name CAN_UPLOAD_SAME_BUFFER + * @memberof PIXI.settings + * @type {boolean} + */ + CAN_UPLOAD_SAME_BUFFER: canUploadSameBuffer(), + + /** + * Enables bitmap creation before image load. This feature is experimental. + * + * @static + * @name CREATE_IMAGE_BITMAP + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + CREATE_IMAGE_BITMAP: false, + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * + * @static + * @constant + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + ROUND_PIXELS: false, +}; + +var eventemitter3 = createCommonjsModule(function (module) { + +var has = Object.prototype.hasOwnProperty + , prefix = '~'; + +/** + * Constructor to create a storage for our `EE` objects. + * An `Events` instance is a plain object whose properties are event names. + * + * @constructor + * @private + */ +function Events() {} + +// +// We try to not inherit from `Object.prototype`. In some engines creating an +// instance in this way is faster than calling `Object.create(null)` directly. +// If `Object.create(null)` is not supported we prefix the event names with a +// character to make sure that the built-in object properties are not +// overridden or used as an attack vector. +// +if (Object.create) { + Events.prototype = Object.create(null); + + // + // This hack is needed because the `__proto__` property is still inherited in + // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5. + // + if (!new Events().__proto__) prefix = false; +} + +/** + * Representation of a single event listener. + * + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} [once=false] Specify if the listener is a one-time listener. + * @constructor + * @private + */ +function EE(fn, context, once) { + this.fn = fn; + this.context = context; + this.once = once || false; +} + +/** + * Add a listener for a given event. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} once Specify if the listener is a one-time listener. + * @returns {EventEmitter} + * @private + */ +function addListener(emitter, event, fn, context, once) { + if (typeof fn !== 'function') { + throw new TypeError('The listener must be a function'); + } + + var listener = new EE(fn, context || emitter, once) + , evt = prefix ? prefix + event : event; + + if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++; + else if (!emitter._events[evt].fn) emitter._events[evt].push(listener); + else emitter._events[evt] = [emitter._events[evt], listener]; + + return emitter; +} + +/** + * Clear event by name. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} evt The Event name. + * @private + */ +function clearEvent(emitter, evt) { + if (--emitter._eventsCount === 0) emitter._events = new Events(); + else delete emitter._events[evt]; +} + +/** + * Minimal `EventEmitter` interface that is molded against the Node.js + * `EventEmitter` interface. + * + * @constructor + * @public + */ +function EventEmitter() { + this._events = new Events(); + this._eventsCount = 0; +} + +/** + * Return an array listing the events for which the emitter has registered + * listeners. + * + * @returns {Array} + * @public + */ +EventEmitter.prototype.eventNames = function eventNames() { + var names = [] + , events + , name; + + if (this._eventsCount === 0) return names; + + for (name in (events = this._events)) { + if (has.call(events, name)) names.push(prefix ? name.slice(1) : name); + } + + if (Object.getOwnPropertySymbols) { + return names.concat(Object.getOwnPropertySymbols(events)); + } + + return names; +}; + +/** + * Return the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Array} The registered listeners. + * @public + */ +EventEmitter.prototype.listeners = function listeners(event) { + var evt = prefix ? prefix + event : event + , handlers = this._events[evt]; + + if (!handlers) return []; + if (handlers.fn) return [handlers.fn]; + + for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) { + ee[i] = handlers[i].fn; + } + + return ee; +}; + +/** + * Return the number of listeners listening to a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Number} The number of listeners. + * @public + */ +EventEmitter.prototype.listenerCount = function listenerCount(event) { + var evt = prefix ? prefix + event : event + , listeners = this._events[evt]; + + if (!listeners) return 0; + if (listeners.fn) return 1; + return listeners.length; +}; + +/** + * Calls each of the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Boolean} `true` if the event had listeners, else `false`. + * @public + */ +EventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return false; + + var listeners = this._events[evt] + , len = arguments.length + , args + , i; + + if (listeners.fn) { + if (listeners.once) this.removeListener(event, listeners.fn, undefined, true); + + switch (len) { + case 1: return listeners.fn.call(listeners.context), true; + case 2: return listeners.fn.call(listeners.context, a1), true; + case 3: return listeners.fn.call(listeners.context, a1, a2), true; + case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true; + case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true; + case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true; + } + + for (i = 1, args = new Array(len -1); i < len; i++) { + args[i - 1] = arguments[i]; + } + + listeners.fn.apply(listeners.context, args); + } else { + var length = listeners.length + , j; + + for (i = 0; i < length; i++) { + if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true); + + switch (len) { + case 1: listeners[i].fn.call(listeners[i].context); break; + case 2: listeners[i].fn.call(listeners[i].context, a1); break; + case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break; + case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break; + default: + if (!args) for (j = 1, args = new Array(len -1); j < len; j++) { + args[j - 1] = arguments[j]; + } + + listeners[i].fn.apply(listeners[i].context, args); + } + } + } + + return true; +}; + +/** + * Add a listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.on = function on(event, fn, context) { + return addListener(this, event, fn, context, false); +}; + +/** + * Add a one-time listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.once = function once(event, fn, context) { + return addListener(this, event, fn, context, true); +}; + +/** + * Remove the listeners of a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn Only remove the listeners that match this function. + * @param {*} context Only remove the listeners that have this context. + * @param {Boolean} once Only remove one-time listeners. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return this; + if (!fn) { + clearEvent(this, evt); + return this; + } + + var listeners = this._events[evt]; + + if (listeners.fn) { + if ( + listeners.fn === fn && + (!once || listeners.once) && + (!context || listeners.context === context) + ) { + clearEvent(this, evt); + } + } else { + for (var i = 0, events = [], length = listeners.length; i < length; i++) { + if ( + listeners[i].fn !== fn || + (once && !listeners[i].once) || + (context && listeners[i].context !== context) + ) { + events.push(listeners[i]); + } + } + + // + // Reset the array, or remove it completely if we have no more listeners. + // + if (events.length) this._events[evt] = events.length === 1 ? events[0] : events; + else clearEvent(this, evt); + } + + return this; +}; + +/** + * Remove all listeners, or those of the specified event. + * + * @param {(String|Symbol)} [event] The event name. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeAllListeners = function removeAllListeners(event) { + var evt; + + if (event) { + evt = prefix ? prefix + event : event; + if (this._events[evt]) clearEvent(this, evt); + } else { + this._events = new Events(); + this._eventsCount = 0; + } + + return this; +}; + +// +// Alias methods names because people roll like that. +// +EventEmitter.prototype.off = EventEmitter.prototype.removeListener; +EventEmitter.prototype.addListener = EventEmitter.prototype.on; + +// +// Expose the prefix. +// +EventEmitter.prefixed = prefix; + +// +// Allow `EventEmitter` to be imported as module namespace. +// +EventEmitter.EventEmitter = EventEmitter; + +// +// Expose the module. +// +{ + module.exports = EventEmitter; +} +}); + +var earcut_1 = earcut; +var default_1 = earcut; + +function earcut(data, holeIndices, dim) { + + dim = dim || 2; + + var hasHoles = holeIndices && holeIndices.length, + outerLen = hasHoles ? holeIndices[0] * dim : data.length, + outerNode = linkedList(data, 0, outerLen, dim, true), + triangles = []; + + if (!outerNode || outerNode.next === outerNode.prev) return triangles; + + var minX, minY, maxX, maxY, x, y, invSize; + + if (hasHoles) outerNode = eliminateHoles(data, holeIndices, outerNode, dim); + + // if the shape is not too simple, we'll use z-order curve hash later; calculate polygon bbox + if (data.length > 80 * dim) { + minX = maxX = data[0]; + minY = maxY = data[1]; + + for (var i = dim; i < outerLen; i += dim) { + x = data[i]; + y = data[i + 1]; + if (x < minX) minX = x; + if (y < minY) minY = y; + if (x > maxX) maxX = x; + if (y > maxY) maxY = y; + } + + // minX, minY and invSize are later used to transform coords into integers for z-order calculation + invSize = Math.max(maxX - minX, maxY - minY); + invSize = invSize !== 0 ? 1 / invSize : 0; + } + + earcutLinked(outerNode, triangles, dim, minX, minY, invSize); + + return triangles; +} + +// create a circular doubly linked list from polygon points in the specified winding order +function linkedList(data, start, end, dim, clockwise) { + var i, last; + + if (clockwise === (signedArea(data, start, end, dim) > 0)) { + for (i = start; i < end; i += dim) last = insertNode(i, data[i], data[i + 1], last); + } else { + for (i = end - dim; i >= start; i -= dim) last = insertNode(i, data[i], data[i + 1], last); + } + + if (last && equals(last, last.next)) { + removeNode(last); + last = last.next; + } + + return last; +} + +// eliminate colinear or duplicate points +function filterPoints(start, end) { + if (!start) return start; + if (!end) end = start; + + var p = start, + again; + do { + again = false; + + if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) { + removeNode(p); + p = end = p.prev; + if (p === p.next) break; + again = true; + + } else { + p = p.next; + } + } while (again || p !== end); + + return end; +} + +// main ear slicing loop which triangulates a polygon (given as a linked list) +function earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) { + if (!ear) return; + + // interlink polygon nodes in z-order + if (!pass && invSize) indexCurve(ear, minX, minY, invSize); + + var stop = ear, + prev, next; + + // iterate through ears, slicing them one by one + while (ear.prev !== ear.next) { + prev = ear.prev; + next = ear.next; + + if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) { + // cut off the triangle + triangles.push(prev.i / dim); + triangles.push(ear.i / dim); + triangles.push(next.i / dim); + + removeNode(ear); + + // skipping the next vertex leads to less sliver triangles + ear = next.next; + stop = next.next; + + continue; + } + + ear = next; + + // if we looped through the whole remaining polygon and can't find any more ears + if (ear === stop) { + // try filtering points and slicing again + if (!pass) { + earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1); + + // if this didn't work, try curing all small self-intersections locally + } else if (pass === 1) { + ear = cureLocalIntersections(filterPoints(ear), triangles, dim); + earcutLinked(ear, triangles, dim, minX, minY, invSize, 2); + + // as a last resort, try splitting the remaining polygon into two + } else if (pass === 2) { + splitEarcut(ear, triangles, dim, minX, minY, invSize); + } + + break; + } + } +} + +// check whether a polygon node forms a valid ear with adjacent nodes +function isEar(ear) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // now make sure we don't have other points inside the potential ear + var p = ear.next.next; + + while (p !== ear.prev) { + if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.next; + } + + return true; +} + +function isEarHashed(ear, minX, minY, invSize) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // triangle bbox; min & max are calculated like this for speed + var minTX = a.x < b.x ? (a.x < c.x ? a.x : c.x) : (b.x < c.x ? b.x : c.x), + minTY = a.y < b.y ? (a.y < c.y ? a.y : c.y) : (b.y < c.y ? b.y : c.y), + maxTX = a.x > b.x ? (a.x > c.x ? a.x : c.x) : (b.x > c.x ? b.x : c.x), + maxTY = a.y > b.y ? (a.y > c.y ? a.y : c.y) : (b.y > c.y ? b.y : c.y); + + // z-order range for the current triangle bbox; + var minZ = zOrder(minTX, minTY, minX, minY, invSize), + maxZ = zOrder(maxTX, maxTY, minX, minY, invSize); + + var p = ear.prevZ, + n = ear.nextZ; + + // look for points inside the triangle in both directions + while (p && p.z >= minZ && n && n.z <= maxZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + // look for remaining points in decreasing z-order + while (p && p.z >= minZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + } + + // look for remaining points in increasing z-order + while (n && n.z <= maxZ) { + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + return true; +} + +// go through all polygon nodes and cure small local self-intersections +function cureLocalIntersections(start, triangles, dim) { + var p = start; + do { + var a = p.prev, + b = p.next.next; + + if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) { + + triangles.push(a.i / dim); + triangles.push(p.i / dim); + triangles.push(b.i / dim); + + // remove two nodes involved + removeNode(p); + removeNode(p.next); + + p = start = b; + } + p = p.next; + } while (p !== start); + + return filterPoints(p); +} + +// try splitting polygon into two and triangulate them independently +function splitEarcut(start, triangles, dim, minX, minY, invSize) { + // look for a valid diagonal that divides the polygon into two + var a = start; + do { + var b = a.next.next; + while (b !== a.prev) { + if (a.i !== b.i && isValidDiagonal(a, b)) { + // split the polygon in two by the diagonal + var c = splitPolygon(a, b); + + // filter colinear points around the cuts + a = filterPoints(a, a.next); + c = filterPoints(c, c.next); + + // run earcut on each half + earcutLinked(a, triangles, dim, minX, minY, invSize); + earcutLinked(c, triangles, dim, minX, minY, invSize); + return; + } + b = b.next; + } + a = a.next; + } while (a !== start); +} + +// link every hole into the outer loop, producing a single-ring polygon without holes +function eliminateHoles(data, holeIndices, outerNode, dim) { + var queue = [], + i, len, start, end, list; + + for (i = 0, len = holeIndices.length; i < len; i++) { + start = holeIndices[i] * dim; + end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + list = linkedList(data, start, end, dim, false); + if (list === list.next) list.steiner = true; + queue.push(getLeftmost(list)); + } + + queue.sort(compareX); + + // process holes from left to right + for (i = 0; i < queue.length; i++) { + eliminateHole(queue[i], outerNode); + outerNode = filterPoints(outerNode, outerNode.next); + } + + return outerNode; +} + +function compareX(a, b) { + return a.x - b.x; +} + +// find a bridge between vertices that connects hole with an outer ring and and link it +function eliminateHole(hole, outerNode) { + outerNode = findHoleBridge(hole, outerNode); + if (outerNode) { + var b = splitPolygon(outerNode, hole); + filterPoints(b, b.next); + } +} + +// David Eberly's algorithm for finding a bridge between hole and outer polygon +function findHoleBridge(hole, outerNode) { + var p = outerNode, + hx = hole.x, + hy = hole.y, + qx = -Infinity, + m; + + // find a segment intersected by a ray from the hole's leftmost point to the left; + // segment's endpoint with lesser x will be potential connection point + do { + if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) { + var x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y); + if (x <= hx && x > qx) { + qx = x; + if (x === hx) { + if (hy === p.y) return p; + if (hy === p.next.y) return p.next; + } + m = p.x < p.next.x ? p : p.next; + } + } + p = p.next; + } while (p !== outerNode); + + if (!m) return null; + + if (hx === qx) return m; // hole touches outer segment; pick leftmost endpoint + + // look for points inside the triangle of hole point, segment intersection and endpoint; + // if there are no points found, we have a valid connection; + // otherwise choose the point of the minimum angle with the ray as connection point + + var stop = m, + mx = m.x, + my = m.y, + tanMin = Infinity, + tan; + + p = m; + + do { + if (hx >= p.x && p.x >= mx && hx !== p.x && + pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) { + + tan = Math.abs(hy - p.y) / (hx - p.x); // tangential + + if (locallyInside(p, hole) && + (tan < tanMin || (tan === tanMin && (p.x > m.x || (p.x === m.x && sectorContainsSector(m, p)))))) { + m = p; + tanMin = tan; + } + } + + p = p.next; + } while (p !== stop); + + return m; +} + +// whether sector in vertex m contains sector in vertex p in the same coordinates +function sectorContainsSector(m, p) { + return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0; +} + +// interlink polygon nodes in z-order +function indexCurve(start, minX, minY, invSize) { + var p = start; + do { + if (p.z === null) p.z = zOrder(p.x, p.y, minX, minY, invSize); + p.prevZ = p.prev; + p.nextZ = p.next; + p = p.next; + } while (p !== start); + + p.prevZ.nextZ = null; + p.prevZ = null; + + sortLinked(p); +} + +// Simon Tatham's linked list merge sort algorithm +// http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html +function sortLinked(list) { + var i, p, q, e, tail, numMerges, pSize, qSize, + inSize = 1; + + do { + p = list; + list = null; + tail = null; + numMerges = 0; + + while (p) { + numMerges++; + q = p; + pSize = 0; + for (i = 0; i < inSize; i++) { + pSize++; + q = q.nextZ; + if (!q) break; + } + qSize = inSize; + + while (pSize > 0 || (qSize > 0 && q)) { + + if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) { + e = p; + p = p.nextZ; + pSize--; + } else { + e = q; + q = q.nextZ; + qSize--; + } + + if (tail) tail.nextZ = e; + else list = e; + + e.prevZ = tail; + tail = e; + } + + p = q; + } + + tail.nextZ = null; + inSize *= 2; + + } while (numMerges > 1); + + return list; +} + +// z-order of a point given coords and inverse of the longer side of data bbox +function zOrder(x, y, minX, minY, invSize) { + // coords are transformed into non-negative 15-bit integer range + x = 32767 * (x - minX) * invSize; + y = 32767 * (y - minY) * invSize; + + x = (x | (x << 8)) & 0x00FF00FF; + x = (x | (x << 4)) & 0x0F0F0F0F; + x = (x | (x << 2)) & 0x33333333; + x = (x | (x << 1)) & 0x55555555; + + y = (y | (y << 8)) & 0x00FF00FF; + y = (y | (y << 4)) & 0x0F0F0F0F; + y = (y | (y << 2)) & 0x33333333; + y = (y | (y << 1)) & 0x55555555; + + return x | (y << 1); +} + +// find the leftmost node of a polygon ring +function getLeftmost(start) { + var p = start, + leftmost = start; + do { + if (p.x < leftmost.x || (p.x === leftmost.x && p.y < leftmost.y)) leftmost = p; + p = p.next; + } while (p !== start); + + return leftmost; +} + +// check if a point lies within a convex triangle +function pointInTriangle(ax, ay, bx, by, cx, cy, px, py) { + return (cx - px) * (ay - py) - (ax - px) * (cy - py) >= 0 && + (ax - px) * (by - py) - (bx - px) * (ay - py) >= 0 && + (bx - px) * (cy - py) - (cx - px) * (by - py) >= 0; +} + +// check if a diagonal between two polygon nodes is valid (lies in polygon interior) +function isValidDiagonal(a, b) { + return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && // dones't intersect other edges + (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && // locally visible + (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors + equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case +} + +// signed area of a triangle +function area(p, q, r) { + return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y); +} + +// check if two points are equal +function equals(p1, p2) { + return p1.x === p2.x && p1.y === p2.y; +} + +// check if two segments intersect +function intersects(p1, q1, p2, q2) { + var o1 = sign(area(p1, q1, p2)); + var o2 = sign(area(p1, q1, q2)); + var o3 = sign(area(p2, q2, p1)); + var o4 = sign(area(p2, q2, q1)); + + if (o1 !== o2 && o3 !== o4) return true; // general case + + if (o1 === 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p1q1 + if (o2 === 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p1q1 + if (o3 === 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p2q2 + if (o4 === 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p2q2 + + return false; +} + +// for collinear points p, q, r, check if point q lies on segment pr +function onSegment(p, q, r) { + return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y); +} + +function sign(num) { + return num > 0 ? 1 : num < 0 ? -1 : 0; +} + +// check if a polygon diagonal intersects any polygon segments +function intersectsPolygon(a, b) { + var p = a; + do { + if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i && + intersects(p, p.next, a, b)) return true; + p = p.next; + } while (p !== a); + + return false; +} + +// check if a polygon diagonal is locally inside the polygon +function locallyInside(a, b) { + return area(a.prev, a, a.next) < 0 ? + area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 : + area(a, b, a.prev) < 0 || area(a, a.next, b) < 0; +} + +// check if the middle point of a polygon diagonal is inside the polygon +function middleInside(a, b) { + var p = a, + inside = false, + px = (a.x + b.x) / 2, + py = (a.y + b.y) / 2; + do { + if (((p.y > py) !== (p.next.y > py)) && p.next.y !== p.y && + (px < (p.next.x - p.x) * (py - p.y) / (p.next.y - p.y) + p.x)) + inside = !inside; + p = p.next; + } while (p !== a); + + return inside; +} + +// link two polygon vertices with a bridge; if the vertices belong to the same ring, it splits polygon into two; +// if one belongs to the outer ring and another to a hole, it merges it into a single ring +function splitPolygon(a, b) { + var a2 = new Node(a.i, a.x, a.y), + b2 = new Node(b.i, b.x, b.y), + an = a.next, + bp = b.prev; + + a.next = b; + b.prev = a; + + a2.next = an; + an.prev = a2; + + b2.next = a2; + a2.prev = b2; + + bp.next = b2; + b2.prev = bp; + + return b2; +} + +// create a node and optionally link it with previous one (in a circular doubly linked list) +function insertNode(i, x, y, last) { + var p = new Node(i, x, y); + + if (!last) { + p.prev = p; + p.next = p; + + } else { + p.next = last.next; + p.prev = last; + last.next.prev = p; + last.next = p; + } + return p; +} + +function removeNode(p) { + p.next.prev = p.prev; + p.prev.next = p.next; + + if (p.prevZ) p.prevZ.nextZ = p.nextZ; + if (p.nextZ) p.nextZ.prevZ = p.prevZ; +} + +function Node(i, x, y) { + // vertex index in coordinates array + this.i = i; + + // vertex coordinates + this.x = x; + this.y = y; + + // previous and next vertex nodes in a polygon ring + this.prev = null; + this.next = null; + + // z-order curve value + this.z = null; + + // previous and next nodes in z-order + this.prevZ = null; + this.nextZ = null; + + // indicates whether this is a steiner point + this.steiner = false; +} + +// return a percentage difference between the polygon area and its triangulation area; +// used to verify correctness of triangulation +earcut.deviation = function (data, holeIndices, dim, triangles) { + var hasHoles = holeIndices && holeIndices.length; + var outerLen = hasHoles ? holeIndices[0] * dim : data.length; + + var polygonArea = Math.abs(signedArea(data, 0, outerLen, dim)); + if (hasHoles) { + for (var i = 0, len = holeIndices.length; i < len; i++) { + var start = holeIndices[i] * dim; + var end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + polygonArea -= Math.abs(signedArea(data, start, end, dim)); + } + } + + var trianglesArea = 0; + for (i = 0; i < triangles.length; i += 3) { + var a = triangles[i] * dim; + var b = triangles[i + 1] * dim; + var c = triangles[i + 2] * dim; + trianglesArea += Math.abs( + (data[a] - data[c]) * (data[b + 1] - data[a + 1]) - + (data[a] - data[b]) * (data[c + 1] - data[a + 1])); + } + + return polygonArea === 0 && trianglesArea === 0 ? 0 : + Math.abs((trianglesArea - polygonArea) / polygonArea); +}; + +function signedArea(data, start, end, dim) { + var sum = 0; + for (var i = start, j = end - dim; i < end; i += dim) { + sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]); + j = i; + } + return sum; +} + +// turn a polygon in a multi-dimensional array form (e.g. as in GeoJSON) into a form Earcut accepts +earcut.flatten = function (data) { + var dim = data[0][0].length, + result = {vertices: [], holes: [], dimensions: dim}, + holeIndex = 0; + + for (var i = 0; i < data.length; i++) { + for (var j = 0; j < data[i].length; j++) { + for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]); + } + if (i > 0) { + holeIndex += data[i - 1].length; + result.holes.push(holeIndex); + } + } + return result; +}; +earcut_1.default = default_1; + +/*! https://mths.be/punycode v1.4.1 by @mathias */ + + +/** Highest positive signed 32-bit float value */ +var maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1 + +/** Bootstring parameters */ +var base = 36; +var tMin = 1; +var tMax = 26; +var skew = 38; +var damp = 700; +var initialBias = 72; +var initialN = 128; // 0x80 +var delimiter$1 = '-'; // '\x2D' +var regexNonASCII = /[^\x20-\x7E]/; // unprintable ASCII chars + non-ASCII chars +var regexSeparators = /[\x2E\u3002\uFF0E\uFF61]/g; // RFC 3490 separators + +/** Error messages */ +var errors = { + 'overflow': 'Overflow: input needs wider integers to process', + 'not-basic': 'Illegal input >= 0x80 (not a basic code point)', + 'invalid-input': 'Invalid input' +}; + +/** Convenience shortcuts */ +var baseMinusTMin = base - tMin; +var floor = Math.floor; +var stringFromCharCode = String.fromCharCode; + +/*--------------------------------------------------------------------------*/ + +/** + * A generic error utility function. + * @private + * @param {String} type The error type. + * @returns {Error} Throws a `RangeError` with the applicable error message. + */ +function error(type) { + throw new RangeError(errors[type]); +} + +/** + * A generic `Array#map` utility function. + * @private + * @param {Array} array The array to iterate over. + * @param {Function} callback The function that gets called for every array + * item. + * @returns {Array} A new array of values returned by the callback function. + */ +function map(array, fn) { + var length = array.length; + var result = []; + while (length--) { + result[length] = fn(array[length]); + } + return result; +} + +/** + * A simple `Array#map`-like wrapper to work with domain name strings or email + * addresses. + * @private + * @param {String} domain The domain name or email address. + * @param {Function} callback The function that gets called for every + * character. + * @returns {Array} A new string of characters returned by the callback + * function. + */ +function mapDomain(string, fn) { + var parts = string.split('@'); + var result = ''; + if (parts.length > 1) { + // In email addresses, only the domain name should be punycoded. Leave + // the local part (i.e. everything up to `@`) intact. + result = parts[0] + '@'; + string = parts[1]; + } + // Avoid `split(regex)` for IE8 compatibility. See #17. + string = string.replace(regexSeparators, '\x2E'); + var labels = string.split('.'); + var encoded = map(labels, fn).join('.'); + return result + encoded; +} + +/** + * Creates an array containing the numeric code points of each Unicode + * character in the string. While JavaScript uses UCS-2 internally, + * this function will convert a pair of surrogate halves (each of which + * UCS-2 exposes as separate characters) into a single code point, + * matching UTF-16. + * @see `punycode.ucs2.encode` + * @see + * @memberOf punycode.ucs2 + * @name decode + * @param {String} string The Unicode input string (UCS-2). + * @returns {Array} The new array of code points. + */ +function ucs2decode(string) { + var output = [], + counter = 0, + length = string.length, + value, + extra; + while (counter < length) { + value = string.charCodeAt(counter++); + if (value >= 0xD800 && value <= 0xDBFF && counter < length) { + // high surrogate, and there is a next character + extra = string.charCodeAt(counter++); + if ((extra & 0xFC00) == 0xDC00) { // low surrogate + output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000); + } else { + // unmatched surrogate; only append this code unit, in case the next + // code unit is the high surrogate of a surrogate pair + output.push(value); + counter--; + } + } else { + output.push(value); + } + } + return output; +} + +/** + * Converts a digit/integer into a basic code point. + * @see `basicToDigit()` + * @private + * @param {Number} digit The numeric value of a basic code point. + * @returns {Number} The basic code point whose value (when used for + * representing integers) is `digit`, which needs to be in the range + * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is + * used; else, the lowercase form is used. The behavior is undefined + * if `flag` is non-zero and `digit` has no uppercase form. + */ +function digitToBasic(digit, flag) { + // 0..25 map to ASCII a..z or A..Z + // 26..35 map to ASCII 0..9 + return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5); +} + +/** + * Bias adaptation function as per section 3.4 of RFC 3492. + * https://tools.ietf.org/html/rfc3492#section-3.4 + * @private + */ +function adapt(delta, numPoints, firstTime) { + var k = 0; + delta = firstTime ? floor(delta / damp) : delta >> 1; + delta += floor(delta / numPoints); + for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) { + delta = floor(delta / baseMinusTMin); + } + return floor(k + (baseMinusTMin + 1) * delta / (delta + skew)); +} + +/** + * Converts a string of Unicode symbols (e.g. a domain name label) to a + * Punycode string of ASCII-only symbols. + * @memberOf punycode + * @param {String} input The string of Unicode symbols. + * @returns {String} The resulting Punycode string of ASCII-only symbols. + */ +function encode(input) { + var n, + delta, + handledCPCount, + basicLength, + bias, + j, + m, + q, + k, + t, + currentValue, + output = [], + /** `inputLength` will hold the number of code points in `input`. */ + inputLength, + /** Cached calculation results */ + handledCPCountPlusOne, + baseMinusT, + qMinusT; + + // Convert the input in UCS-2 to Unicode + input = ucs2decode(input); + + // Cache the length + inputLength = input.length; + + // Initialize the state + n = initialN; + delta = 0; + bias = initialBias; + + // Handle the basic code points + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue < 0x80) { + output.push(stringFromCharCode(currentValue)); + } + } + + handledCPCount = basicLength = output.length; + + // `handledCPCount` is the number of code points that have been handled; + // `basicLength` is the number of basic code points. + + // Finish the basic string - if it is not empty - with a delimiter + if (basicLength) { + output.push(delimiter$1); + } + + // Main encoding loop: + while (handledCPCount < inputLength) { + + // All non-basic code points < n have been handled already. Find the next + // larger one: + for (m = maxInt, j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue >= n && currentValue < m) { + m = currentValue; + } + } + + // Increase `delta` enough to advance the decoder's state to , + // but guard against overflow + handledCPCountPlusOne = handledCPCount + 1; + if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) { + error('overflow'); + } + + delta += (m - n) * handledCPCountPlusOne; + n = m; + + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + + if (currentValue < n && ++delta > maxInt) { + error('overflow'); + } + + if (currentValue == n) { + // Represent delta as a generalized variable-length integer + for (q = delta, k = base; /* no condition */ ; k += base) { + t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias); + if (q < t) { + break; + } + qMinusT = q - t; + baseMinusT = base - t; + output.push( + stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0)) + ); + q = floor(qMinusT / baseMinusT); + } + + output.push(stringFromCharCode(digitToBasic(q, 0))); + bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength); + delta = 0; + ++handledCPCount; + } + } + + ++delta; + ++n; + + } + return output.join(''); +} + +/** + * Converts a Unicode string representing a domain name or an email address to + * Punycode. Only the non-ASCII parts of the domain name will be converted, + * i.e. it doesn't matter if you call it with a domain that's already in + * ASCII. + * @memberOf punycode + * @param {String} input The domain name or email address to convert, as a + * Unicode string. + * @returns {String} The Punycode representation of the given domain name or + * email address. + */ +function toASCII(input) { + return mapDomain(input, function(string) { + return regexNonASCII.test(string) ? + 'xn--' + encode(string) : + string; + }); +} + +// Copyright Joyent, Inc. and other Node contributors. + +function isNull(arg) { + return arg === null; +} + +function isNullOrUndefined(arg) { + return arg == null; +} + +function isString(arg) { + return typeof arg === 'string'; +} + +function isObject(arg) { + return typeof arg === 'object' && arg !== null; +} + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + + +// If obj.hasOwnProperty has been overridden, then calling +// obj.hasOwnProperty(prop) will break. +// See: https://github.com/joyent/node/issues/1707 +function hasOwnProperty$1(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop); +} +var isArray = Array.isArray || function (xs) { + return Object.prototype.toString.call(xs) === '[object Array]'; +}; +function stringifyPrimitive(v) { + switch (typeof v) { + case 'string': + return v; + + case 'boolean': + return v ? 'true' : 'false'; + + case 'number': + return isFinite(v) ? v : ''; + + default: + return ''; + } +} + +function stringify (obj, sep, eq, name) { + sep = sep || '&'; + eq = eq || '='; + if (obj === null) { + obj = undefined; + } + + if (typeof obj === 'object') { + return map$1(objectKeys(obj), function(k) { + var ks = encodeURIComponent(stringifyPrimitive(k)) + eq; + if (isArray(obj[k])) { + return map$1(obj[k], function(v) { + return ks + encodeURIComponent(stringifyPrimitive(v)); + }).join(sep); + } else { + return ks + encodeURIComponent(stringifyPrimitive(obj[k])); + } + }).join(sep); + + } + + if (!name) return ''; + return encodeURIComponent(stringifyPrimitive(name)) + eq + + encodeURIComponent(stringifyPrimitive(obj)); +} +function map$1 (xs, f) { + if (xs.map) return xs.map(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + res.push(f(xs[i], i)); + } + return res; +} + +var objectKeys = Object.keys || function (obj) { + var res = []; + for (var key in obj) { + if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key); + } + return res; +}; + +function parse(qs, sep, eq, options) { + sep = sep || '&'; + eq = eq || '='; + var obj = {}; + + if (typeof qs !== 'string' || qs.length === 0) { + return obj; + } + + var regexp = /\+/g; + qs = qs.split(sep); + + var maxKeys = 1000; + if (options && typeof options.maxKeys === 'number') { + maxKeys = options.maxKeys; + } + + var len = qs.length; + // maxKeys <= 0 means that we should not limit keys count + if (maxKeys > 0 && len > maxKeys) { + len = maxKeys; + } + + for (var i = 0; i < len; ++i) { + var x = qs[i].replace(regexp, '%20'), + idx = x.indexOf(eq), + kstr, vstr, k, v; + + if (idx >= 0) { + kstr = x.substr(0, idx); + vstr = x.substr(idx + 1); + } else { + kstr = x; + vstr = ''; + } + + k = decodeURIComponent(kstr); + v = decodeURIComponent(vstr); + + if (!hasOwnProperty$1(obj, k)) { + obj[k] = v; + } else if (isArray(obj[k])) { + obj[k].push(v); + } else { + obj[k] = [obj[k], v]; + } + } + + return obj; +} + +// Copyright Joyent, Inc. and other Node contributors. +var url = { + parse: urlParse, + resolve: urlResolve, + resolveObject: urlResolveObject, + format: urlFormat, + Url: Url +}; +function Url() { + this.protocol = null; + this.slashes = null; + this.auth = null; + this.host = null; + this.port = null; + this.hostname = null; + this.hash = null; + this.search = null; + this.query = null; + this.pathname = null; + this.path = null; + this.href = null; +} + +// Reference: RFC 3986, RFC 1808, RFC 2396 + +// define these here so at least they only have to be +// compiled once on the first module load. +var protocolPattern = /^([a-z0-9.+-]+:)/i, + portPattern = /:[0-9]*$/, + + // Special case for a simple path URL + simplePathPattern = /^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/, + + // RFC 2396: characters reserved for delimiting URLs. + // We actually just auto-escape these. + delims = ['<', '>', '"', '`', ' ', '\r', '\n', '\t'], + + // RFC 2396: characters not allowed for various reasons. + unwise = ['{', '}', '|', '\\', '^', '`'].concat(delims), + + // Allowed by RFCs, but cause of XSS attacks. Always escape these. + autoEscape = ['\''].concat(unwise), + // Characters that are never ever allowed in a hostname. + // Note that any invalid chars are also handled, but these + // are the ones that are *expected* to be seen, so we fast-path + // them. + nonHostChars = ['%', '/', '?', ';', '#'].concat(autoEscape), + hostEndingChars = ['/', '?', '#'], + hostnameMaxLen = 255, + hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/, + hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/, + // protocols that can allow "unsafe" and "unwise" chars. + unsafeProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that never have a hostname. + hostlessProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that always contain a // bit. + slashedProtocol = { + 'http': true, + 'https': true, + 'ftp': true, + 'gopher': true, + 'file': true, + 'http:': true, + 'https:': true, + 'ftp:': true, + 'gopher:': true, + 'file:': true + }; + +function urlParse(url, parseQueryString, slashesDenoteHost) { + if (url && isObject(url) && url instanceof Url) return url; + + var u = new Url; + u.parse(url, parseQueryString, slashesDenoteHost); + return u; +} +Url.prototype.parse = function(url, parseQueryString, slashesDenoteHost) { + return parse$1(this, url, parseQueryString, slashesDenoteHost); +}; + +function parse$1(self, url, parseQueryString, slashesDenoteHost) { + if (!isString(url)) { + throw new TypeError('Parameter \'url\' must be a string, not ' + typeof url); + } + + // Copy chrome, IE, opera backslash-handling behavior. + // Back slashes before the query string get converted to forward slashes + // See: https://code.google.com/p/chromium/issues/detail?id=25916 + var queryIndex = url.indexOf('?'), + splitter = + (queryIndex !== -1 && queryIndex < url.indexOf('#')) ? '?' : '#', + uSplit = url.split(splitter), + slashRegex = /\\/g; + uSplit[0] = uSplit[0].replace(slashRegex, '/'); + url = uSplit.join(splitter); + + var rest = url; + + // trim before proceeding. + // This is to support parse stuff like " http://foo.com \n" + rest = rest.trim(); + + if (!slashesDenoteHost && url.split('#').length === 1) { + // Try fast path regexp + var simplePath = simplePathPattern.exec(rest); + if (simplePath) { + self.path = rest; + self.href = rest; + self.pathname = simplePath[1]; + if (simplePath[2]) { + self.search = simplePath[2]; + if (parseQueryString) { + self.query = parse(self.search.substr(1)); + } else { + self.query = self.search.substr(1); + } + } else if (parseQueryString) { + self.search = ''; + self.query = {}; + } + return self; + } + } + + var proto = protocolPattern.exec(rest); + if (proto) { + proto = proto[0]; + var lowerProto = proto.toLowerCase(); + self.protocol = lowerProto; + rest = rest.substr(proto.length); + } + + // figure out if it's got a host + // user@server is *always* interpreted as a hostname, and url + // resolution will treat //foo/bar as host=foo,path=bar because that's + // how the browser resolves relative URLs. + if (slashesDenoteHost || proto || rest.match(/^\/\/[^@\/]+@[^@\/]+/)) { + var slashes = rest.substr(0, 2) === '//'; + if (slashes && !(proto && hostlessProtocol[proto])) { + rest = rest.substr(2); + self.slashes = true; + } + } + var i, hec, l, p; + if (!hostlessProtocol[proto] && + (slashes || (proto && !slashedProtocol[proto]))) { + + // there's a hostname. + // the first instance of /, ?, ;, or # ends the host. + // + // If there is an @ in the hostname, then non-host chars *are* allowed + // to the left of the last @ sign, unless some host-ending character + // comes *before* the @-sign. + // URLs are obnoxious. + // + // ex: + // http://a@b@c/ => user:a@b host:c + // http://a@b?@c => user:a host:c path:/?@c + + // v0.12 TODO(isaacs): This is not quite how Chrome does things. + // Review our test case against browsers more comprehensively. + + // find the first instance of any hostEndingChars + var hostEnd = -1; + for (i = 0; i < hostEndingChars.length; i++) { + hec = rest.indexOf(hostEndingChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + + // at this point, either we have an explicit point where the + // auth portion cannot go past, or the last @ char is the decider. + var auth, atSign; + if (hostEnd === -1) { + // atSign can be anywhere. + atSign = rest.lastIndexOf('@'); + } else { + // atSign must be in auth portion. + // http://a@b/c@d => host:b auth:a path:/c@d + atSign = rest.lastIndexOf('@', hostEnd); + } + + // Now we have a portion which is definitely the auth. + // Pull that off. + if (atSign !== -1) { + auth = rest.slice(0, atSign); + rest = rest.slice(atSign + 1); + self.auth = decodeURIComponent(auth); + } + + // the host is the remaining to the left of the first non-host char + hostEnd = -1; + for (i = 0; i < nonHostChars.length; i++) { + hec = rest.indexOf(nonHostChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + // if we still have not hit it, then the entire thing is a host. + if (hostEnd === -1) + hostEnd = rest.length; + + self.host = rest.slice(0, hostEnd); + rest = rest.slice(hostEnd); + + // pull out port. + parseHost(self); + + // we've indicated that there is a hostname, + // so even if it's empty, it has to be present. + self.hostname = self.hostname || ''; + + // if hostname begins with [ and ends with ] + // assume that it's an IPv6 address. + var ipv6Hostname = self.hostname[0] === '[' && + self.hostname[self.hostname.length - 1] === ']'; + + // validate a little. + if (!ipv6Hostname) { + var hostparts = self.hostname.split(/\./); + for (i = 0, l = hostparts.length; i < l; i++) { + var part = hostparts[i]; + if (!part) continue; + if (!part.match(hostnamePartPattern)) { + var newpart = ''; + for (var j = 0, k = part.length; j < k; j++) { + if (part.charCodeAt(j) > 127) { + // we replace non-ASCII char with a temporary placeholder + // we need this to make sure size of hostname is not + // broken by replacing non-ASCII by nothing + newpart += 'x'; + } else { + newpart += part[j]; + } + } + // we test again with ASCII char only + if (!newpart.match(hostnamePartPattern)) { + var validParts = hostparts.slice(0, i); + var notHost = hostparts.slice(i + 1); + var bit = part.match(hostnamePartStart); + if (bit) { + validParts.push(bit[1]); + notHost.unshift(bit[2]); + } + if (notHost.length) { + rest = '/' + notHost.join('.') + rest; + } + self.hostname = validParts.join('.'); + break; + } + } + } + } + + if (self.hostname.length > hostnameMaxLen) { + self.hostname = ''; + } else { + // hostnames are always lower case. + self.hostname = self.hostname.toLowerCase(); + } + + if (!ipv6Hostname) { + // IDNA Support: Returns a punycoded representation of "domain". + // It only converts parts of the domain name that + // have non-ASCII characters, i.e. it doesn't matter if + // you call it with a domain that already is ASCII-only. + self.hostname = toASCII(self.hostname); + } + + p = self.port ? ':' + self.port : ''; + var h = self.hostname || ''; + self.host = h + p; + self.href += self.host; + + // strip [ and ] from the hostname + // the host field still retains them, though + if (ipv6Hostname) { + self.hostname = self.hostname.substr(1, self.hostname.length - 2); + if (rest[0] !== '/') { + rest = '/' + rest; + } + } + } + + // now rest is set to the post-host stuff. + // chop off any delim chars. + if (!unsafeProtocol[lowerProto]) { + + // First, make 100% sure that any "autoEscape" chars get + // escaped, even if encodeURIComponent doesn't think they + // need to be. + for (i = 0, l = autoEscape.length; i < l; i++) { + var ae = autoEscape[i]; + if (rest.indexOf(ae) === -1) + continue; + var esc = encodeURIComponent(ae); + if (esc === ae) { + esc = escape(ae); + } + rest = rest.split(ae).join(esc); + } + } + + + // chop off from the tail first. + var hash = rest.indexOf('#'); + if (hash !== -1) { + // got a fragment string. + self.hash = rest.substr(hash); + rest = rest.slice(0, hash); + } + var qm = rest.indexOf('?'); + if (qm !== -1) { + self.search = rest.substr(qm); + self.query = rest.substr(qm + 1); + if (parseQueryString) { + self.query = parse(self.query); + } + rest = rest.slice(0, qm); + } else if (parseQueryString) { + // no query string, but parseQueryString still requested + self.search = ''; + self.query = {}; + } + if (rest) self.pathname = rest; + if (slashedProtocol[lowerProto] && + self.hostname && !self.pathname) { + self.pathname = '/'; + } + + //to support http.request + if (self.pathname || self.search) { + p = self.pathname || ''; + var s = self.search || ''; + self.path = p + s; + } + + // finally, reconstruct the href based on what has been validated. + self.href = format(self); + return self; +} + +// format a parsed object into a url string +function urlFormat(obj) { + // ensure it's an object, and not a string url. + // If it's an obj, this is a no-op. + // this way, you can call url_format() on strings + // to clean up potentially wonky urls. + if (isString(obj)) obj = parse$1({}, obj); + return format(obj); +} + +function format(self) { + var auth = self.auth || ''; + if (auth) { + auth = encodeURIComponent(auth); + auth = auth.replace(/%3A/i, ':'); + auth += '@'; + } + + var protocol = self.protocol || '', + pathname = self.pathname || '', + hash = self.hash || '', + host = false, + query = ''; + + if (self.host) { + host = auth + self.host; + } else if (self.hostname) { + host = auth + (self.hostname.indexOf(':') === -1 ? + self.hostname : + '[' + this.hostname + ']'); + if (self.port) { + host += ':' + self.port; + } + } + + if (self.query && + isObject(self.query) && + Object.keys(self.query).length) { + query = stringify(self.query); + } + + var search = self.search || (query && ('?' + query)) || ''; + + if (protocol && protocol.substr(-1) !== ':') protocol += ':'; + + // only the slashedProtocols get the //. Not mailto:, xmpp:, etc. + // unless they had them to begin with. + if (self.slashes || + (!protocol || slashedProtocol[protocol]) && host !== false) { + host = '//' + (host || ''); + if (pathname && pathname.charAt(0) !== '/') pathname = '/' + pathname; + } else if (!host) { + host = ''; + } + + if (hash && hash.charAt(0) !== '#') hash = '#' + hash; + if (search && search.charAt(0) !== '?') search = '?' + search; + + pathname = pathname.replace(/[?#]/g, function(match) { + return encodeURIComponent(match); + }); + search = search.replace('#', '%23'); + + return protocol + host + pathname + search + hash; +} + +Url.prototype.format = function() { + return format(this); +}; + +function urlResolve(source, relative) { + return urlParse(source, false, true).resolve(relative); +} + +Url.prototype.resolve = function(relative) { + return this.resolveObject(urlParse(relative, false, true)).format(); +}; + +function urlResolveObject(source, relative) { + if (!source) return relative; + return urlParse(source, false, true).resolveObject(relative); +} + +Url.prototype.resolveObject = function(relative) { + if (isString(relative)) { + var rel = new Url(); + rel.parse(relative, false, true); + relative = rel; + } + + var result = new Url(); + var tkeys = Object.keys(this); + for (var tk = 0; tk < tkeys.length; tk++) { + var tkey = tkeys[tk]; + result[tkey] = this[tkey]; + } + + // hash is always overridden, no matter what. + // even href="" will remove it. + result.hash = relative.hash; + + // if the relative url is empty, then there's nothing left to do here. + if (relative.href === '') { + result.href = result.format(); + return result; + } + + // hrefs like //foo/bar always cut to the protocol. + if (relative.slashes && !relative.protocol) { + // take everything except the protocol from relative + var rkeys = Object.keys(relative); + for (var rk = 0; rk < rkeys.length; rk++) { + var rkey = rkeys[rk]; + if (rkey !== 'protocol') + result[rkey] = relative[rkey]; + } + + //urlParse appends trailing / to urls like http://www.example.com + if (slashedProtocol[result.protocol] && + result.hostname && !result.pathname) { + result.path = result.pathname = '/'; + } + + result.href = result.format(); + return result; + } + var relPath; + if (relative.protocol && relative.protocol !== result.protocol) { + // if it's a known url protocol, then changing + // the protocol does weird things + // first, if it's not file:, then we MUST have a host, + // and if there was a path + // to begin with, then we MUST have a path. + // if it is file:, then the host is dropped, + // because that's known to be hostless. + // anything else is assumed to be absolute. + if (!slashedProtocol[relative.protocol]) { + var keys = Object.keys(relative); + for (var v = 0; v < keys.length; v++) { + var k = keys[v]; + result[k] = relative[k]; + } + result.href = result.format(); + return result; + } + + result.protocol = relative.protocol; + if (!relative.host && !hostlessProtocol[relative.protocol]) { + relPath = (relative.pathname || '').split('/'); + while (relPath.length && !(relative.host = relPath.shift())); + if (!relative.host) relative.host = ''; + if (!relative.hostname) relative.hostname = ''; + if (relPath[0] !== '') relPath.unshift(''); + if (relPath.length < 2) relPath.unshift(''); + result.pathname = relPath.join('/'); + } else { + result.pathname = relative.pathname; + } + result.search = relative.search; + result.query = relative.query; + result.host = relative.host || ''; + result.auth = relative.auth; + result.hostname = relative.hostname || relative.host; + result.port = relative.port; + // to support http.request + if (result.pathname || result.search) { + var p = result.pathname || ''; + var s = result.search || ''; + result.path = p + s; + } + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; + } + + var isSourceAbs = (result.pathname && result.pathname.charAt(0) === '/'), + isRelAbs = ( + relative.host || + relative.pathname && relative.pathname.charAt(0) === '/' + ), + mustEndAbs = (isRelAbs || isSourceAbs || + (result.host && relative.pathname)), + removeAllDots = mustEndAbs, + srcPath = result.pathname && result.pathname.split('/') || [], + psychotic = result.protocol && !slashedProtocol[result.protocol]; + relPath = relative.pathname && relative.pathname.split('/') || []; + // if the url is a non-slashed url, then relative + // links like ../.. should be able + // to crawl up to the hostname, as well. This is strange. + // result.protocol has already been set by now. + // Later on, put the first path part into the host field. + if (psychotic) { + result.hostname = ''; + result.port = null; + if (result.host) { + if (srcPath[0] === '') srcPath[0] = result.host; + else srcPath.unshift(result.host); + } + result.host = ''; + if (relative.protocol) { + relative.hostname = null; + relative.port = null; + if (relative.host) { + if (relPath[0] === '') relPath[0] = relative.host; + else relPath.unshift(relative.host); + } + relative.host = null; + } + mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === ''); + } + var authInHost; + if (isRelAbs) { + // it's absolute. + result.host = (relative.host || relative.host === '') ? + relative.host : result.host; + result.hostname = (relative.hostname || relative.hostname === '') ? + relative.hostname : result.hostname; + result.search = relative.search; + result.query = relative.query; + srcPath = relPath; + // fall through to the dot-handling below. + } else if (relPath.length) { + // it's relative + // throw away the existing file, and take the new path instead. + if (!srcPath) srcPath = []; + srcPath.pop(); + srcPath = srcPath.concat(relPath); + result.search = relative.search; + result.query = relative.query; + } else if (!isNullOrUndefined(relative.search)) { + // just pull out the search. + // like href='?foo'. + // Put this after the other two cases because it simplifies the booleans + if (psychotic) { + result.hostname = result.host = srcPath.shift(); + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + result.search = relative.search; + result.query = relative.query; + //to support http.request + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.href = result.format(); + return result; + } + + if (!srcPath.length) { + // no path at all. easy. + // we've already handled the other stuff above. + result.pathname = null; + //to support http.request + if (result.search) { + result.path = '/' + result.search; + } else { + result.path = null; + } + result.href = result.format(); + return result; + } + + // if a url ENDs in . or .., then it must get a trailing slash. + // however, if it ends in anything else non-slashy, + // then it must NOT get a trailing slash. + var last = srcPath.slice(-1)[0]; + var hasTrailingSlash = ( + (result.host || relative.host || srcPath.length > 1) && + (last === '.' || last === '..') || last === ''); + + // strip single dots, resolve double dots to parent dir + // if the path tries to go above the root, `up` ends up > 0 + var up = 0; + for (var i = srcPath.length; i >= 0; i--) { + last = srcPath[i]; + if (last === '.') { + srcPath.splice(i, 1); + } else if (last === '..') { + srcPath.splice(i, 1); + up++; + } else if (up) { + srcPath.splice(i, 1); + up--; + } + } + + // if the path is allowed to go above the root, restore leading ..s + if (!mustEndAbs && !removeAllDots) { + for (; up--; up) { + srcPath.unshift('..'); + } + } + + if (mustEndAbs && srcPath[0] !== '' && + (!srcPath[0] || srcPath[0].charAt(0) !== '/')) { + srcPath.unshift(''); + } + + if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) { + srcPath.push(''); + } + + var isAbsolute = srcPath[0] === '' || + (srcPath[0] && srcPath[0].charAt(0) === '/'); + + // put the host back + if (psychotic) { + result.hostname = result.host = isAbsolute ? '' : + srcPath.length ? srcPath.shift() : ''; + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + + mustEndAbs = mustEndAbs || (result.host && srcPath.length); + + if (mustEndAbs && !isAbsolute) { + srcPath.unshift(''); + } + + if (!srcPath.length) { + result.pathname = null; + result.path = null; + } else { + result.pathname = srcPath.join('/'); + } + + //to support request.http + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.auth = relative.auth || result.auth; + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; +}; + +Url.prototype.parseHost = function() { + return parseHost(this); +}; + +function parseHost(self) { + var host = self.host; + var port = portPattern.exec(host); + if (port) { + port = port[0]; + if (port !== ':') { + self.port = port.substr(1); + } + host = host.substr(0, host.length - port.length); + } + if (host) self.hostname = host; +} + +/*! + * @pixi/constants - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/constants is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * Different types of environments for WebGL. + * + * @static + * @memberof PIXI + * @name ENV + * @enum {number} + * @property {number} WEBGL_LEGACY - Used for older v1 WebGL devices. PixiJS will aim to ensure compatibility + * with older / less advanced devices. If you experience unexplained flickering prefer this environment. + * @property {number} WEBGL - Version 1 of WebGL + * @property {number} WEBGL2 - Version 2 of WebGL + */ +var ENV = { + WEBGL_LEGACY: 0, + WEBGL: 1, + WEBGL2: 2, +}; + +/** + * Constant to identify the Renderer Type. + * + * @static + * @memberof PIXI + * @name RENDERER_TYPE + * @enum {number} + * @property {number} UNKNOWN - Unknown render type. + * @property {number} WEBGL - WebGL render type. + * @property {number} CANVAS - Canvas render type. + */ +var RENDERER_TYPE = { + UNKNOWN: 0, + WEBGL: 1, + CANVAS: 2, +}; + +/** + * Various blend modes supported by PIXI. + * + * IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes. + * Anything else will silently act like NORMAL. + * + * @memberof PIXI + * @name BLEND_MODES + * @enum {number} + * @property {number} NORMAL + * @property {number} ADD + * @property {number} MULTIPLY + * @property {number} SCREEN + * @property {number} OVERLAY + * @property {number} DARKEN + * @property {number} LIGHTEN + * @property {number} COLOR_DODGE + * @property {number} COLOR_BURN + * @property {number} HARD_LIGHT + * @property {number} SOFT_LIGHT + * @property {number} DIFFERENCE + * @property {number} EXCLUSION + * @property {number} HUE + * @property {number} SATURATION + * @property {number} COLOR + * @property {number} LUMINOSITY + * @property {number} NORMAL_NPM + * @property {number} ADD_NPM + * @property {number} SCREEN_NPM + * @property {number} NONE + * @property {number} SRC_IN + * @property {number} SRC_OUT + * @property {number} SRC_ATOP + * @property {number} DST_OVER + * @property {number} DST_IN + * @property {number} DST_OUT + * @property {number} DST_ATOP + * @property {number} SUBTRACT + * @property {number} SRC_OVER + * @property {number} ERASE + */ +var BLEND_MODES = { + NORMAL: 0, + ADD: 1, + MULTIPLY: 2, + SCREEN: 3, + OVERLAY: 4, + DARKEN: 5, + LIGHTEN: 6, + COLOR_DODGE: 7, + COLOR_BURN: 8, + HARD_LIGHT: 9, + SOFT_LIGHT: 10, + DIFFERENCE: 11, + EXCLUSION: 12, + HUE: 13, + SATURATION: 14, + COLOR: 15, + LUMINOSITY: 16, + NORMAL_NPM: 17, + ADD_NPM: 18, + SCREEN_NPM: 19, + NONE: 20, + + SRC_OVER: 0, + SRC_IN: 21, + SRC_OUT: 22, + SRC_ATOP: 23, + DST_OVER: 24, + DST_IN: 25, + DST_OUT: 26, + DST_ATOP: 27, + ERASE: 26, + SUBTRACT: 28, +}; + +/** + * Various webgl draw modes. These can be used to specify which GL drawMode to use + * under certain situations and renderers. + * + * @memberof PIXI + * @static + * @name DRAW_MODES + * @enum {number} + * @property {number} POINTS + * @property {number} LINES + * @property {number} LINE_LOOP + * @property {number} LINE_STRIP + * @property {number} TRIANGLES + * @property {number} TRIANGLE_STRIP + * @property {number} TRIANGLE_FAN + */ +var DRAW_MODES = { + POINTS: 0, + LINES: 1, + LINE_LOOP: 2, + LINE_STRIP: 3, + TRIANGLES: 4, + TRIANGLE_STRIP: 5, + TRIANGLE_FAN: 6, +}; + +/** + * Various GL texture/resources formats. + * + * @memberof PIXI + * @static + * @name FORMATS + * @enum {number} + * @property {number} RGBA=6408 + * @property {number} RGB=6407 + * @property {number} ALPHA=6406 + * @property {number} LUMINANCE=6409 + * @property {number} LUMINANCE_ALPHA=6410 + * @property {number} DEPTH_COMPONENT=6402 + * @property {number} DEPTH_STENCIL=34041 + */ +var FORMATS = { + RGBA: 6408, + RGB: 6407, + ALPHA: 6406, + LUMINANCE: 6409, + LUMINANCE_ALPHA: 6410, + DEPTH_COMPONENT: 6402, + DEPTH_STENCIL: 34041, +}; + +/** + * Various GL target types. + * + * @memberof PIXI + * @static + * @name TARGETS + * @enum {number} + * @property {number} TEXTURE_2D=3553 + * @property {number} TEXTURE_CUBE_MAP=34067 + * @property {number} TEXTURE_2D_ARRAY=35866 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_X=34069 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_X=34070 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Y=34071 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Y=34072 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Z=34073 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Z=34074 + */ +var TARGETS = { + TEXTURE_2D: 3553, + TEXTURE_CUBE_MAP: 34067, + TEXTURE_2D_ARRAY: 35866, + TEXTURE_CUBE_MAP_POSITIVE_X: 34069, + TEXTURE_CUBE_MAP_NEGATIVE_X: 34070, + TEXTURE_CUBE_MAP_POSITIVE_Y: 34071, + TEXTURE_CUBE_MAP_NEGATIVE_Y: 34072, + TEXTURE_CUBE_MAP_POSITIVE_Z: 34073, + TEXTURE_CUBE_MAP_NEGATIVE_Z: 34074, +}; + +/** + * Various GL data format types. + * + * @memberof PIXI + * @static + * @name TYPES + * @enum {number} + * @property {number} UNSIGNED_BYTE=5121 + * @property {number} UNSIGNED_SHORT=5123 + * @property {number} UNSIGNED_SHORT_5_6_5=33635 + * @property {number} UNSIGNED_SHORT_4_4_4_4=32819 + * @property {number} UNSIGNED_SHORT_5_5_5_1=32820 + * @property {number} FLOAT=5126 + * @property {number} HALF_FLOAT=36193 + */ +var TYPES = { + UNSIGNED_BYTE: 5121, + UNSIGNED_SHORT: 5123, + UNSIGNED_SHORT_5_6_5: 33635, + UNSIGNED_SHORT_4_4_4_4: 32819, + UNSIGNED_SHORT_5_5_5_1: 32820, + FLOAT: 5126, + HALF_FLOAT: 36193, +}; + +/** + * The scale modes that are supported by pixi. + * + * The {@link PIXI.settings.SCALE_MODE} scale mode affects the default scaling mode of future operations. + * It can be re-assigned to either LINEAR or NEAREST, depending upon suitability. + * + * @memberof PIXI + * @static + * @name SCALE_MODES + * @enum {number} + * @property {number} LINEAR Smooth scaling + * @property {number} NEAREST Pixelating scaling + */ +var SCALE_MODES = { + LINEAR: 1, + NEAREST: 0, +}; + +/** + * The wrap modes that are supported by pixi. + * + * The {@link PIXI.settings.WRAP_MODE} wrap mode affects the default wrapping mode of future operations. + * It can be re-assigned to either CLAMP or REPEAT, depending upon suitability. + * If the texture is non power of two then clamp will be used regardless as WebGL can + * only use REPEAT if the texture is po2. + * + * This property only affects WebGL. + * + * @name WRAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} CLAMP - The textures uvs are clamped + * @property {number} REPEAT - The texture uvs tile and repeat + * @property {number} MIRRORED_REPEAT - The texture uvs tile and repeat with mirroring + */ +var WRAP_MODES = { + CLAMP: 33071, + REPEAT: 10497, + MIRRORED_REPEAT: 33648, +}; + +/** + * Mipmap filtering modes that are supported by pixi. + * + * The {@link PIXI.settings.MIPMAP_TEXTURES} affects default texture filtering. + * Mipmaps are generated for a baseTexture if its `mipmap` field is `ON`, + * or its `POW2` and texture dimensions are powers of 2. + * Due to platform restriction, `ON` option will work like `POW2` for webgl-1. + * + * This property only affects WebGL. + * + * @name MIPMAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} OFF - No mipmaps + * @property {number} POW2 - Generate mipmaps if texture dimensions are pow2 + * @property {number} ON - Always generate mipmaps + */ +var MIPMAP_MODES = { + OFF: 0, + POW2: 1, + ON: 2, +}; + +/** + * The gc modes that are supported by pixi. + * + * The {@link PIXI.settings.GC_MODE} Garbage Collection mode for PixiJS textures is AUTO + * If set to GC_MODE, the renderer will occasionally check textures usage. If they are not + * used for a specified period of time they will be removed from the GPU. They will of course + * be uploaded again when they are required. This is a silent behind the scenes process that + * should ensure that the GPU does not get filled up. + * + * Handy for mobile devices! + * This property only affects WebGL. + * + * @name GC_MODES + * @enum {number} + * @static + * @memberof PIXI + * @property {number} AUTO - Garbage collection will happen periodically automatically + * @property {number} MANUAL - Garbage collection will need to be called manually + */ +var GC_MODES = { + AUTO: 0, + MANUAL: 1, +}; + +/** + * Constants that specify float precision in shaders. + * + * @name PRECISION + * @memberof PIXI + * @static + * @enum {string} + * @constant + * @property {string} LOW='lowp' + * @property {string} MEDIUM='mediump' + * @property {string} HIGH='highp' + */ +var PRECISION = { + LOW: 'lowp', + MEDIUM: 'mediump', + HIGH: 'highp', +}; + +/*! + * @pixi/utils - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/utils is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The prefix that denotes a URL is for a retina asset. + * + * @static + * @name RETINA_PREFIX + * @memberof PIXI.settings + * @type {RegExp} + * @default /@([0-9\.]+)x/ + * @example `@2x` + */ +settings.RETINA_PREFIX = /@([0-9\.]+)x/; + +/** + * Should the `failIfMajorPerformanceCaveat` flag be enabled as a context option used in the `isWebGLSupported` function. + * For most scenarios this should be left as true, as otherwise the user may have a poor experience. + * However, it can be useful to disable under certain scenarios, such as headless unit tests. + * + * @static + * @name FAIL_IF_MAJOR_PERFORMANCE_CAVEAT + * @memberof PIXI.settings + * @type {boolean} + * @default true + */ +settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = true; + +var saidHello = false; +var VERSION = '5.1.3'; + +/** + * Logs out the version and renderer information for this running instance of PIXI. + * If you don't want to see this message you can run `PIXI.utils.skipHello()` before + * creating your renderer. Keep in mind that doing that will forever make you a jerk face. + * + * @static + * @function sayHello + * @memberof PIXI.utils + * @param {string} type - The string renderer type to log. + */ +function sayHello(type) +{ + if (saidHello) + { + return; + } + + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + var args = [ + ("\n %c %c %c PixiJS " + VERSION + " - ✰ " + type + " ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \n\n"), + 'background: #ff66a5; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff66a5; background: #030307; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'background: #ffc3dc; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;' ]; + + window.console.log.apply(console, args); + } + else if (window.console) + { + window.console.log(("PixiJS " + VERSION + " - " + type + " - http://www.pixijs.com/")); + } + + saidHello = true; +} + +var supported; + +/** + * Helper for checking for WebGL support. + * + * @memberof PIXI.utils + * @function isWebGLSupported + * @return {boolean} Is WebGL supported. + */ +function isWebGLSupported() +{ + if (typeof supported === 'undefined') + { + supported = (function supported() + { + var contextOptions = { + stencil: true, + failIfMajorPerformanceCaveat: settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT, + }; + + try + { + if (!window.WebGLRenderingContext) + { + return false; + } + + var canvas = document.createElement('canvas'); + var gl = canvas.getContext('webgl', contextOptions) + || canvas.getContext('experimental-webgl', contextOptions); + + var success = !!(gl && gl.getContextAttributes().stencil); + + if (gl) + { + var loseContext = gl.getExtension('WEBGL_lose_context'); + + if (loseContext) + { + loseContext.loseContext(); + } + } + + gl = null; + + return success; + } + catch (e) + { + return false; + } + })(); + } + + return supported; +} + +/** + * Converts a hexadecimal color number to an [R, G, B] array of normalized floats (numbers from 0.0 to 1.0). + * + * @example + * PIXI.utils.hex2rgb(0xffffff); // returns [1, 1, 1] + * @memberof PIXI.utils + * @function hex2rgb + * @param {number} hex - The hexadecimal number to convert + * @param {number[]} [out=[]] If supplied, this array will be used rather than returning a new one + * @return {number[]} An array representing the [R, G, B] of the color where all values are floats. + */ +function hex2rgb(hex, out) +{ + out = out || []; + + out[0] = ((hex >> 16) & 0xFF) / 255; + out[1] = ((hex >> 8) & 0xFF) / 255; + out[2] = (hex & 0xFF) / 255; + + return out; +} + +/** + * Converts a hexadecimal color number to a string. + * + * @example + * PIXI.utils.hex2string(0xffffff); // returns "#ffffff" + * @memberof PIXI.utils + * @function hex2string + * @param {number} hex - Number in hex (e.g., `0xffffff`) + * @return {string} The string color (e.g., `"#ffffff"`). + */ +function hex2string(hex) +{ + hex = hex.toString(16); + hex = '000000'.substr(0, 6 - hex.length) + hex; + + return ("#" + hex); +} + +/** + * Converts a hexadecimal string to a hexadecimal color number. + * + * @example + * PIXI.utils.string2hex("#ffffff"); // returns 0xffffff + * @memberof PIXI.utils + * @function string2hex + * @param {string} The string color (e.g., `"#ffffff"`) + * @return {number} Number in hexadecimal. + */ +function string2hex(string) +{ + if (typeof string === 'string' && string[0] === '#') + { + string = string.substr(1); + } + + return parseInt(string, 16); +} + +/** + * Corrects PixiJS blend, takes premultiplied alpha into account + * + * @memberof PIXI.utils + * @function mapPremultipliedBlendModes + * @private + * @param {Array} [array] - The array to output into. + * @return {Array} Mapped modes. + */ +function mapPremultipliedBlendModes() +{ + var pm = []; + var npm = []; + + for (var i = 0; i < 32; i++) + { + pm[i] = i; + npm[i] = i; + } + + pm[BLEND_MODES.NORMAL_NPM] = BLEND_MODES.NORMAL; + pm[BLEND_MODES.ADD_NPM] = BLEND_MODES.ADD; + pm[BLEND_MODES.SCREEN_NPM] = BLEND_MODES.SCREEN; + + npm[BLEND_MODES.NORMAL] = BLEND_MODES.NORMAL_NPM; + npm[BLEND_MODES.ADD] = BLEND_MODES.ADD_NPM; + npm[BLEND_MODES.SCREEN] = BLEND_MODES.SCREEN_NPM; + + var array = []; + + array.push(npm); + array.push(pm); + + return array; +} + +/** + * maps premultiply flag and blendMode to adjusted blendMode + * @memberof PIXI.utils + * @const premultiplyBlendMode + * @type {Array} + */ +var premultiplyBlendMode = mapPremultipliedBlendModes(); + +/** + * changes blendMode according to texture format + * + * @memberof PIXI.utils + * @function correctBlendMode + * @param {number} blendMode supposed blend mode + * @param {boolean} premultiplied whether source is premultiplied + * @returns {number} true blend mode for this texture + */ +function correctBlendMode(blendMode, premultiplied) +{ + return premultiplyBlendMode[premultiplied ? 1 : 0][blendMode]; +} + +/** + * combines rgb and alpha to out array + * + * @memberof PIXI.utils + * @function premultiplyRgba + * @param {Float32Array|number[]} rgb input rgb + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyRgba(rgb, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + if (premultiply || premultiply === undefined) + { + out[0] = rgb[0] * alpha; + out[1] = rgb[1] * alpha; + out[2] = rgb[2] * alpha; + } + else + { + out[0] = rgb[0]; + out[1] = rgb[1]; + out[2] = rgb[2]; + } + out[3] = alpha; + + return out; +} + +/** + * premultiplies tint + * + * @memberof PIXI.utils + * @function premultiplyTint + * @param {number} tint integer RGB + * @param {number} alpha floating point alpha (0.0-1.0) + * @returns {number} tint multiplied by alpha + */ +function premultiplyTint(tint, alpha) +{ + if (alpha === 1.0) + { + return (alpha * 255 << 24) + tint; + } + if (alpha === 0.0) + { + return 0; + } + var R = ((tint >> 16) & 0xFF); + var G = ((tint >> 8) & 0xFF); + var B = (tint & 0xFF); + + R = ((R * alpha) + 0.5) | 0; + G = ((G * alpha) + 0.5) | 0; + B = ((B * alpha) + 0.5) | 0; + + return (alpha * 255 << 24) + (R << 16) + (G << 8) + B; +} + +/** + * converts integer tint and float alpha to vec4 form, premultiplies by default + * + * @memberof PIXI.utils + * @function premultiplyTintToRgba + * @param {number} tint input tint + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyTintToRgba(tint, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + out[0] = ((tint >> 16) & 0xFF) / 255.0; + out[1] = ((tint >> 8) & 0xFF) / 255.0; + out[2] = (tint & 0xFF) / 255.0; + if (premultiply || premultiply === undefined) + { + out[0] *= alpha; + out[1] *= alpha; + out[2] *= alpha; + } + out[3] = alpha; + + return out; +} + +/** + * Generic Mask Stack data structure + * + * @memberof PIXI.utils + * @function createIndicesForQuads + * @param {number} size - Number of quads + * @param {Uint16Array|Uint32Array} [outBuffer] - Buffer for output, length has to be `6 * size` + * @return {Uint16Array|Uint32Array} - Resulting index buffer + */ +function createIndicesForQuads(size, outBuffer) +{ + if ( outBuffer === void 0 ) outBuffer = null; + + // the total number of indices in our array, there are 6 points per quad. + var totalIndices = size * 6; + + outBuffer = outBuffer || new Uint16Array(totalIndices); + + if (outBuffer.length !== totalIndices) + { + throw new Error(("Out buffer length is incorrect, got " + (outBuffer.length) + " and expected " + totalIndices)); + } + + // fill the indices with the quads to draw + for (var i = 0, j = 0; i < totalIndices; i += 6, j += 4) + { + outBuffer[i + 0] = j + 0; + outBuffer[i + 1] = j + 1; + outBuffer[i + 2] = j + 2; + outBuffer[i + 3] = j + 0; + outBuffer[i + 4] = j + 2; + outBuffer[i + 5] = j + 3; + } + + return outBuffer; +} + +/** + * Remove items from a javascript array without generating garbage + * + * @function removeItems + * @memberof PIXI.utils + * @param {Array} arr Array to remove elements from + * @param {number} startIdx starting index + * @param {number} removeCount how many to remove + */ +function removeItems(arr, startIdx, removeCount) +{ + var length = arr.length; + var i; + + if (startIdx >= length || removeCount === 0) + { + return; + } + + removeCount = (startIdx + removeCount > length ? length - startIdx : removeCount); + + var len = length - removeCount; + + for (i = startIdx; i < len; ++i) + { + arr[i] = arr[i + removeCount]; + } + + arr.length = len; +} + +var nextUid = 0; + +/** + * Gets the next unique identifier + * + * @memberof PIXI.utils + * @function uid + * @return {number} The next unique identifier to use. + */ +function uid() +{ + return ++nextUid; +} + +/** + * Returns sign of number + * + * @memberof PIXI.utils + * @function sign + * @param {number} n - the number to check the sign of + * @returns {number} 0 if `n` is 0, -1 if `n` is negative, 1 if `n` is positive + */ +function sign$1(n) +{ + if (n === 0) { return 0; } + + return n < 0 ? -1 : 1; +} + +// Taken from the bit-twiddle package + +/** + * Rounds to next power of two. + * + * @function nextPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} + */ +function nextPow2(v) +{ + v += v === 0; + --v; + v |= v >>> 1; + v |= v >>> 2; + v |= v >>> 4; + v |= v >>> 8; + v |= v >>> 16; + + return v + 1; +} + +/** + * Checks if a number is a power of two. + * + * @function isPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {boolean} `true` if value is power of two + */ +function isPow2(v) +{ + return !(v & (v - 1)) && (!!v); +} + +/** + * Computes ceil of log base 2 + * + * @function log2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} logarithm base 2 + */ +function log2(v) +{ + var r = (v > 0xFFFF) << 4; + + v >>>= r; + + var shift = (v > 0xFF) << 3; + + v >>>= shift; r |= shift; + shift = (v > 0xF) << 2; + v >>>= shift; r |= shift; + shift = (v > 0x3) << 1; + v >>>= shift; r |= shift; + + return r | (v >> 1); +} + +/** + * @todo Describe property usage + * + * @static + * @name ProgramCache + * @memberof PIXI.utils + * @type {Object} + */ +var ProgramCache = {}; + +/** + * @todo Describe property usage + * + * @static + * @name TextureCache + * @memberof PIXI.utils + * @type {Object} + */ +var TextureCache = Object.create(null); + +/** + * @todo Describe property usage + * + * @static + * @name BaseTextureCache + * @memberof PIXI.utils + * @type {Object} + */ + +var BaseTextureCache = Object.create(null); + +/** + * Trim transparent borders from a canvas + * + * @memberof PIXI.utils + * @function trimCanvas + * @param {HTMLCanvasElement} canvas - the canvas to trim + * @returns {object} Trim data + */ +function trimCanvas(canvas) +{ + // https://gist.github.com/remy/784508 + + var width = canvas.width; + var height = canvas.height; + + var context = canvas.getContext('2d'); + var imageData = context.getImageData(0, 0, width, height); + var pixels = imageData.data; + var len = pixels.length; + + var bound = { + top: null, + left: null, + right: null, + bottom: null, + }; + var data = null; + var i; + var x; + var y; + + for (i = 0; i < len; i += 4) + { + if (pixels[i + 3] !== 0) + { + x = (i / 4) % width; + y = ~~((i / 4) / width); + + if (bound.top === null) + { + bound.top = y; + } + + if (bound.left === null) + { + bound.left = x; + } + else if (x < bound.left) + { + bound.left = x; + } + + if (bound.right === null) + { + bound.right = x + 1; + } + else if (bound.right < x) + { + bound.right = x + 1; + } + + if (bound.bottom === null) + { + bound.bottom = y; + } + else if (bound.bottom < y) + { + bound.bottom = y; + } + } + } + + if (bound.top !== null) + { + width = bound.right - bound.left; + height = bound.bottom - bound.top + 1; + data = context.getImageData(bound.left, bound.top, width, height); + } + + return { + height: height, + width: width, + data: data, + }; +} + +/** + * Creates a Canvas element of the given size to be used as a target for rendering to. + * + * @class + * @memberof PIXI.utils + */ +var CanvasRenderTarget = function CanvasRenderTarget(width, height, resolution) +{ + /** + * The Canvas object that belongs to this CanvasRenderTarget. + * + * @member {HTMLCanvasElement} + */ + this.canvas = document.createElement('canvas'); + + /** + * A CanvasRenderingContext2D object representing a two-dimensional rendering context. + * + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + this.resolution = resolution || settings.RESOLUTION; + + this.resize(width, height); +}; + +var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + +/** + * Clears the canvas that was created by the CanvasRenderTarget class. + * + * @private + */ +CanvasRenderTarget.prototype.clear = function clear () +{ + this.context.setTransform(1, 0, 0, 1, 0, 0); + this.context.clearRect(0, 0, this.canvas.width, this.canvas.height); +}; + +/** + * Resizes the canvas to the specified width and height. + * + * @param {number} width - the new width of the canvas + * @param {number} height - the new height of the canvas + */ +CanvasRenderTarget.prototype.resize = function resize (width, height) +{ + this.canvas.width = width * this.resolution; + this.canvas.height = height * this.resolution; +}; + +/** + * Destroys this canvas. + * + */ +CanvasRenderTarget.prototype.destroy = function destroy () +{ + this.context = null; + this.canvas = null; +}; + +/** + * The width of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.width.get = function () +{ + return this.canvas.width; +}; + +prototypeAccessors.width.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.width = val; +}; + +/** + * The height of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.height.get = function () +{ + return this.canvas.height; +}; + +prototypeAccessors.height.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.height = val; +}; + +Object.defineProperties( CanvasRenderTarget.prototype, prototypeAccessors ); + +var tempAnchor; + +/** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * Nipped from the resource loader! + * + * @ignore + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ +function determineCrossOrigin(url$1, loc) +{ + if ( loc === void 0 ) loc = window.location; + + // data: and javascript: urls are considered same-origin + if (url$1.indexOf('data:') === 0) + { + return ''; + } + + // default is window.location + loc = loc || window.location; + + if (!tempAnchor) + { + tempAnchor = document.createElement('a'); + } + + // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + tempAnchor.href = url$1; + url$1 = url.parse(tempAnchor.href); + + var samePort = (!url$1.port && loc.port === '') || (url$1.port === loc.port); + + // if cross origin + if (url$1.hostname !== loc.hostname || !samePort || url$1.protocol !== loc.protocol) + { + return 'anonymous'; + } + + return ''; +} + +/** + * get the resolution / device pixel ratio of an asset by looking for the prefix + * used by spritesheets and image urls + * + * @memberof PIXI.utils + * @function getResolutionOfUrl + * @param {string} url - the image path + * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set. + * @return {number} resolution / device pixel ratio of an asset + */ +function getResolutionOfUrl(url, defaultValue) +{ + var resolution = settings.RETINA_PREFIX.exec(url); + + if (resolution) + { + return parseFloat(resolution[1]); + } + + return defaultValue !== undefined ? defaultValue : 1; +} + +// A map of warning messages already fired +var warnings = {}; + +/** + * Helper for warning developers about deprecated features & settings. + * A stack track for warnings is given; useful for tracking-down where + * deprecated methods/properties/classes are being used within the code. + * + * @memberof PIXI.utils + * @function deprecation + * @param {string} version - The version where the feature became deprecated + * @param {string} message - Message should include what is deprecated, where, and the new solution + * @param {number} [ignoreDepth=3] - The number of steps to ignore at the top of the error stack + * this is mostly to ignore internal deprecation calls. + */ +function deprecation(version, message, ignoreDepth) +{ + if ( ignoreDepth === void 0 ) ignoreDepth = 3; + + // Ignore duplicat + if (warnings[message]) + { + return; + } + + /* eslint-disable no-console */ + var stack = new Error().stack; + + // Handle IE < 10 and Safari < 6 + if (typeof stack === 'undefined') + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + } + else + { + // chop off the stack trace which includes PixiJS internal calls + stack = stack.split('\n').splice(ignoreDepth).join('\n'); + + if (console.groupCollapsed) + { + console.groupCollapsed( + '%cPixiJS Deprecation Warning: %c%s', + 'color:#614108;background:#fffbe6', + 'font-weight:normal;color:#614108;background:#fffbe6', + (message + "\nDeprecated since v" + version) + ); + console.warn(stack); + console.groupEnd(); + } + else + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + console.warn(stack); + } + } + /* eslint-enable no-console */ + + warnings[message] = true; +} + +/*! + * @pixi/math - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/math is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * @class + * @memberof PIXI + */ +var Point = function Point(x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; +}; + +/** + * Creates a clone of this point + * + * @return {PIXI.Point} a copy of the point + */ +Point.prototype.clone = function clone () +{ + return new Point(this.x, this.y); +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from + * @returns {PIXI.IPoint} Returns itself. + */ +Point.prototype.copyFrom = function copyFrom (p) +{ + this.set(p.x, p.y); + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +Point.prototype.copyTo = function copyTo (p) +{ + p.set(this.x, this.y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +Point.prototype.equals = function equals (p) +{ + return (p.x === this.x) && (p.y === this.y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +Point.prototype.set = function set (x, y) +{ + this.x = x || 0; + this.y = y || ((y !== 0) ? this.x : 0); +}; + +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * An ObservablePoint is a point that triggers a callback when the point's position is changed. + * + * @class + * @memberof PIXI + */ +var ObservablePoint = function ObservablePoint(cb, scope, x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + this._x = x; + this._y = y; + + this.cb = cb; + this.scope = scope; +}; + +var prototypeAccessors$1 = { x: { configurable: true },y: { configurable: true } }; + +/** + * Creates a clone of this point. + * The callback and scope params can be overidden otherwise they will default + * to the clone object's values. + * + * @override + * @param {Function} [cb=null] - callback when changed + * @param {object} [scope=null] - owner of callback + * @return {PIXI.ObservablePoint} a copy of the point + */ +ObservablePoint.prototype.clone = function clone (cb, scope) +{ + if ( cb === void 0 ) cb = null; + if ( scope === void 0 ) scope = null; + + var _cb = cb || this.cb; + var _scope = scope || this.scope; + + return new ObservablePoint(_cb, _scope, this._x, this._y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +ObservablePoint.prototype.set = function set (x, y) +{ + var _x = x || 0; + var _y = y || ((y !== 0) ? _x : 0); + + if (this._x !== _x || this._y !== _y) + { + this._x = _x; + this._y = _y; + this.cb.call(this.scope); + } +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from. + * @returns {PIXI.IPoint} Returns itself. + */ +ObservablePoint.prototype.copyFrom = function copyFrom (p) +{ + if (this._x !== p.x || this._y !== p.y) + { + this._x = p.x; + this._y = p.y; + this.cb.call(this.scope); + } + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +ObservablePoint.prototype.copyTo = function copyTo (p) +{ + p.set(this._x, this._y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +ObservablePoint.prototype.equals = function equals (p) +{ + return (p.x === this._x) && (p.y === this._y); +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.x.get = function () +{ + return this._x; +}; + +prototypeAccessors$1.x.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._x !== value) + { + this._x = value; + this.cb.call(this.scope); + } +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.y.get = function () +{ + return this._y; +}; + +prototypeAccessors$1.y.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._y !== value) + { + this._y = value; + this.cb.call(this.scope); + } +}; + +Object.defineProperties( ObservablePoint.prototype, prototypeAccessors$1 ); + +/** + * A number, or a string containing a number. + * @memberof PIXI + * @typedef {(PIXI.Point|PIXI.ObservablePoint)} IPoint + */ + +/** + * Two Pi. + * + * @static + * @constant {number} PI_2 + * @memberof PIXI + */ +var PI_2 = Math.PI * 2; + +/** + * Conversion factor for converting radians to degrees. + * + * @static + * @constant {number} RAD_TO_DEG + * @memberof PIXI + */ +var RAD_TO_DEG = 180 / Math.PI; + +/** + * Conversion factor for converting degrees to radians. + * + * @static + * @constant {number} DEG_TO_RAD + * @memberof PIXI + */ +var DEG_TO_RAD = Math.PI / 180; + +/** + * Constants that identify shapes, mainly to prevent `instanceof` calls. + * + * @static + * @constant + * @name SHAPES + * @memberof PIXI + * @type {object} + * @property {number} POLY Polygon + * @property {number} RECT Rectangle + * @property {number} CIRC Circle + * @property {number} ELIP Ellipse + * @property {number} RREC Rounded Rectangle + */ +var SHAPES = { + POLY: 0, + RECT: 1, + CIRC: 2, + ELIP: 3, + RREC: 4, +}; + +/** + * The PixiJS Matrix as a class makes it a lot faster. + * + * Here is a representation of it: + * ```js + * | a | c | tx| + * | b | d | ty| + * | 0 | 0 | 1 | + * ``` + * @class + * @memberof PIXI + */ +var Matrix = function Matrix(a, b, c, d, tx, ty) +{ + if ( a === void 0 ) a = 1; + if ( b === void 0 ) b = 0; + if ( c === void 0 ) c = 0; + if ( d === void 0 ) d = 1; + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + /** + * @member {number} + * @default 1 + */ + this.a = a; + + /** + * @member {number} + * @default 0 + */ + this.b = b; + + /** + * @member {number} + * @default 0 + */ + this.c = c; + + /** + * @member {number} + * @default 1 + */ + this.d = d; + + /** + * @member {number} + * @default 0 + */ + this.tx = tx; + + /** + * @member {number} + * @default 0 + */ + this.ty = ty; + + this.array = null; +}; + +var staticAccessors = { IDENTITY: { configurable: true },TEMP_MATRIX: { configurable: true } }; + +/** + * Creates a Matrix object based on the given array. The Element to Matrix mapping order is as follows: + * + * a = array[0] + * b = array[1] + * c = array[3] + * d = array[4] + * tx = array[2] + * ty = array[5] + * + * @param {number[]} array - The array that the matrix will be populated from. + */ +Matrix.prototype.fromArray = function fromArray (array) +{ + this.a = array[0]; + this.b = array[1]; + this.c = array[3]; + this.d = array[4]; + this.tx = array[2]; + this.ty = array[5]; +}; + +/** + * sets the matrix properties + * + * @param {number} a - Matrix component + * @param {number} b - Matrix component + * @param {number} c - Matrix component + * @param {number} d - Matrix component + * @param {number} tx - Matrix component + * @param {number} ty - Matrix component + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.set = function set (a, b, c, d, tx, ty) +{ + this.a = a; + this.b = b; + this.c = c; + this.d = d; + this.tx = tx; + this.ty = ty; + + return this; +}; + +/** + * Creates an array from the current Matrix object. + * + * @param {boolean} transpose - Whether we need to transpose the matrix or not + * @param {Float32Array} [out=new Float32Array(9)] - If provided the array will be assigned to out + * @return {number[]} the newly created array which contains the matrix + */ +Matrix.prototype.toArray = function toArray (transpose, out) +{ + if (!this.array) + { + this.array = new Float32Array(9); + } + + var array = out || this.array; + + if (transpose) + { + array[0] = this.a; + array[1] = this.b; + array[2] = 0; + array[3] = this.c; + array[4] = this.d; + array[5] = 0; + array[6] = this.tx; + array[7] = this.ty; + array[8] = 1; + } + else + { + array[0] = this.a; + array[1] = this.c; + array[2] = this.tx; + array[3] = this.b; + array[4] = this.d; + array[5] = this.ty; + array[6] = 0; + array[7] = 0; + array[8] = 1; + } + + return array; +}; + +/** + * Get a new position with the current transformation applied. + * Can be used to go from a child's coordinate space to the world coordinate space. (e.g. rendering) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, transformed through this matrix + */ +Matrix.prototype.apply = function apply (pos, newPos) +{ + newPos = newPos || new Point(); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.a * x) + (this.c * y) + this.tx; + newPos.y = (this.b * x) + (this.d * y) + this.ty; + + return newPos; +}; + +/** + * Get a new position with the inverse of the current transformation applied. + * Can be used to go from the world coordinate space to a child's coordinate space. (e.g. input) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, inverse-transformed through this matrix + */ +Matrix.prototype.applyInverse = function applyInverse (pos, newPos) +{ + newPos = newPos || new Point(); + + var id = 1 / ((this.a * this.d) + (this.c * -this.b)); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.d * id * x) + (-this.c * id * y) + (((this.ty * this.c) - (this.tx * this.d)) * id); + newPos.y = (this.a * id * y) + (-this.b * id * x) + (((-this.ty * this.a) + (this.tx * this.b)) * id); + + return newPos; +}; + +/** + * Translates the matrix on the x and y. + * + * @param {number} x How much to translate x by + * @param {number} y How much to translate y by + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.translate = function translate (x, y) +{ + this.tx += x; + this.ty += y; + + return this; +}; + +/** + * Applies a scale transformation to the matrix. + * + * @param {number} x The amount to scale horizontally + * @param {number} y The amount to scale vertically + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.scale = function scale (x, y) +{ + this.a *= x; + this.d *= y; + this.c *= x; + this.b *= y; + this.tx *= x; + this.ty *= y; + + return this; +}; + +/** + * Applies a rotation transformation to the matrix. + * + * @param {number} angle - The angle in radians. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.rotate = function rotate (angle) +{ + var cos = Math.cos(angle); + var sin = Math.sin(angle); + + var a1 = this.a; + var c1 = this.c; + var tx1 = this.tx; + + this.a = (a1 * cos) - (this.b * sin); + this.b = (a1 * sin) + (this.b * cos); + this.c = (c1 * cos) - (this.d * sin); + this.d = (c1 * sin) + (this.d * cos); + this.tx = (tx1 * cos) - (this.ty * sin); + this.ty = (tx1 * sin) + (this.ty * cos); + + return this; +}; + +/** + * Appends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to append. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.append = function append (matrix) +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + + this.a = (matrix.a * a1) + (matrix.b * c1); + this.b = (matrix.a * b1) + (matrix.b * d1); + this.c = (matrix.c * a1) + (matrix.d * c1); + this.d = (matrix.c * b1) + (matrix.d * d1); + + this.tx = (matrix.tx * a1) + (matrix.ty * c1) + this.tx; + this.ty = (matrix.tx * b1) + (matrix.ty * d1) + this.ty; + + return this; +}; + +/** + * Sets the matrix based on all the available properties + * + * @param {number} x - Position on the x axis + * @param {number} y - Position on the y axis + * @param {number} pivotX - Pivot on the x axis + * @param {number} pivotY - Pivot on the y axis + * @param {number} scaleX - Scale on the x axis + * @param {number} scaleY - Scale on the y axis + * @param {number} rotation - Rotation in radians + * @param {number} skewX - Skew on the x axis + * @param {number} skewY - Skew on the y axis + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.setTransform = function setTransform (x, y, pivotX, pivotY, scaleX, scaleY, rotation, skewX, skewY) +{ + this.a = Math.cos(rotation + skewY) * scaleX; + this.b = Math.sin(rotation + skewY) * scaleX; + this.c = -Math.sin(rotation - skewX) * scaleY; + this.d = Math.cos(rotation - skewX) * scaleY; + + this.tx = x - ((pivotX * this.a) + (pivotY * this.c)); + this.ty = y - ((pivotX * this.b) + (pivotY * this.d)); + + return this; +}; + +/** + * Prepends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to prepend + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.prepend = function prepend (matrix) +{ + var tx1 = this.tx; + + if (matrix.a !== 1 || matrix.b !== 0 || matrix.c !== 0 || matrix.d !== 1) + { + var a1 = this.a; + var c1 = this.c; + + this.a = (a1 * matrix.a) + (this.b * matrix.c); + this.b = (a1 * matrix.b) + (this.b * matrix.d); + this.c = (c1 * matrix.a) + (this.d * matrix.c); + this.d = (c1 * matrix.b) + (this.d * matrix.d); + } + + this.tx = (tx1 * matrix.a) + (this.ty * matrix.c) + matrix.tx; + this.ty = (tx1 * matrix.b) + (this.ty * matrix.d) + matrix.ty; + + return this; +}; + +/** + * Decomposes the matrix (x, y, scaleX, scaleY, and rotation) and sets the properties on to a transform. + * + * @param {PIXI.Transform} transform - The transform to apply the properties to. + * @return {PIXI.Transform} The transform with the newly applied properties + */ +Matrix.prototype.decompose = function decompose (transform) +{ + // sort out rotation / skew.. + var a = this.a; + var b = this.b; + var c = this.c; + var d = this.d; + + var skewX = -Math.atan2(-c, d); + var skewY = Math.atan2(b, a); + + var delta = Math.abs(skewX + skewY); + + if (delta < 0.00001 || Math.abs(PI_2 - delta) < 0.00001) + { + transform.rotation = skewY; + transform.skew.x = transform.skew.y = 0; + } + else + { + transform.rotation = 0; + transform.skew.x = skewX; + transform.skew.y = skewY; + } + + // next set scale + transform.scale.x = Math.sqrt((a * a) + (b * b)); + transform.scale.y = Math.sqrt((c * c) + (d * d)); + + // next set position + transform.position.x = this.tx; + transform.position.y = this.ty; + + return transform; +}; + +/** + * Inverts this matrix + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.invert = function invert () +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + var tx1 = this.tx; + var n = (a1 * d1) - (b1 * c1); + + this.a = d1 / n; + this.b = -b1 / n; + this.c = -c1 / n; + this.d = a1 / n; + this.tx = ((c1 * this.ty) - (d1 * tx1)) / n; + this.ty = -((a1 * this.ty) - (b1 * tx1)) / n; + + return this; +}; + +/** + * Resets this Matrix to an identity (default) matrix. + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.identity = function identity () +{ + this.a = 1; + this.b = 0; + this.c = 0; + this.d = 1; + this.tx = 0; + this.ty = 0; + + return this; +}; + +/** + * Creates a new Matrix object with the same values as this one. + * + * @return {PIXI.Matrix} A copy of this matrix. Good for chaining method calls. + */ +Matrix.prototype.clone = function clone () +{ + var matrix = new Matrix(); + + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the given matrix to be the same as the ones in this matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy to. + * @return {PIXI.Matrix} The matrix given in parameter with its values updated. + */ +Matrix.prototype.copyTo = function copyTo (matrix) +{ + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the matrix to be the same as the ones in given matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy from. + * @return {PIXI.Matrix} this + */ +Matrix.prototype.copyFrom = function copyFrom (matrix) +{ + this.a = matrix.a; + this.b = matrix.b; + this.c = matrix.c; + this.d = matrix.d; + this.tx = matrix.tx; + this.ty = matrix.ty; + + return this; +}; + +/** + * A default (identity) matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.IDENTITY.get = function () +{ + return new Matrix(); +}; + +/** + * A temp matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.TEMP_MATRIX.get = function () +{ + return new Matrix(); +}; + +Object.defineProperties( Matrix, staticAccessors ); + +// Your friendly neighbour https://en.wikipedia.org/wiki/Dihedral_group + +/* + * Transform matrix for operation n is: + * | ux | vx | + * | uy | vy | + */ + +var ux = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1]; +var uy = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vx = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vy = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1]; + +/** + * [Cayley Table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * for the composition of each rotation in the dihederal group D8. + * + * @type number[][] + * @private + */ +var rotationCayley = []; + +/** + * Matrices for each `GD8Symmetry` rotation. + * + * @type Matrix[] + * @private + */ +var rotationMatrices = []; + +/* + * Alias for {@code Math.sign}. + */ +var signum = Math.sign; + +/* + * Initializes `rotationCayley` and `rotationMatrices`. It is called + * only once below. + */ +function init() +{ + for (var i = 0; i < 16; i++) + { + var row = []; + + rotationCayley.push(row); + + for (var j = 0; j < 16; j++) + { + /* Multiplies rotation matrices i and j. */ + var _ux = signum((ux[i] * ux[j]) + (vx[i] * uy[j])); + var _uy = signum((uy[i] * ux[j]) + (vy[i] * uy[j])); + var _vx = signum((ux[i] * vx[j]) + (vx[i] * vy[j])); + var _vy = signum((uy[i] * vx[j]) + (vy[i] * vy[j])); + + /* Finds rotation matrix matching the product and pushes it. */ + for (var k = 0; k < 16; k++) + { + if (ux[k] === _ux && uy[k] === _uy + && vx[k] === _vx && vy[k] === _vy) + { + row.push(k); + break; + } + } + } + } + + for (var i$1 = 0; i$1 < 16; i$1++) + { + var mat = new Matrix(); + + mat.set(ux[i$1], uy[i$1], vx[i$1], vy[i$1], 0, 0); + rotationMatrices.push(mat); + } +} + +init(); + +/** + * @memberof PIXI + * @typedef {number} GD8Symmetry + * @see PIXI.GroupD8 + */ + +/** + * Implements the dihedral group D8, which is similar to + * [group D4]{@link http://mathworld.wolfram.com/DihedralGroupD4.html}; + * D8 is the same but with diagonals, and it is used for texture + * rotations. + * + * The directions the U- and V- axes after rotation + * of an angle of `a: GD8Constant` are the vectors `(uX(a), uY(a))` + * and `(vX(a), vY(a))`. These aren't necessarily unit vectors. + * + * **Origin:**
+ * This is the small part of gameofbombs.com portal system. It works. + * + * @see PIXI.GroupD8.E + * @see PIXI.GroupD8.SE + * @see PIXI.GroupD8.S + * @see PIXI.GroupD8.SW + * @see PIXI.GroupD8.W + * @see PIXI.GroupD8.NW + * @see PIXI.GroupD8.N + * @see PIXI.GroupD8.NE + * @author Ivan @ivanpopelyshev + * @class + * @memberof PIXI + */ +var GroupD8 = { + /** + * | Rotation | Direction | + * |----------|-----------| + * | 0° | East | + * + * @constant {PIXI.GD8Symmetry} + */ + E: 0, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 45°↻ | Southeast | + * + * @constant {PIXI.GD8Symmetry} + */ + SE: 1, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 90°↻ | South | + * + * @constant {PIXI.GD8Symmetry} + */ + S: 2, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 135°↻ | Southwest | + * + * @constant {PIXI.GD8Symmetry} + */ + SW: 3, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 180° | West | + * + * @constant {PIXI.GD8Symmetry} + */ + W: 4, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -135°/225°↻ | Northwest | + * + * @constant {PIXI.GD8Symmetry} + */ + NW: 5, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -90°/270°↻ | North | + * + * @constant {PIXI.GD8Symmetry} + */ + N: 6, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -45°/315°↻ | Northeast | + * + * @constant {PIXI.GD8Symmetry} + */ + NE: 7, + + /** + * Reflection about Y-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_VERTICAL: 8, + + /** + * Reflection about the main diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + MAIN_DIAGONAL: 10, + + /** + * Reflection about X-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_HORIZONTAL: 12, + + /** + * Reflection about reverse diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + REVERSE_DIAGONAL: 14, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the U-axis + * after rotating the axes. + */ + uX: function (ind) { return ux[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the U-axis + * after rotating the axes. + */ + uY: function (ind) { return uy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the V-axis + * after rotating the axes. + */ + vX: function (ind) { return vx[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the V-axis + * after rotating the axes. + */ + vY: function (ind) { return vy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - symmetry whose opposite + * is needed. Only rotations have opposite symmetries while + * reflections don't. + * @return {PIXI.GD8Symmetry} The opposite symmetry of `rotation` + */ + inv: function (rotation) { + if (rotation & 8)// true only if between 8 & 15 (reflections) + { + return rotation & 15;// or rotation % 16 + } + + return (-rotation) & 7;// or (8 - rotation) % 8 + }, + + /** + * Composes the two D8 operations. + * + * Taking `^` as reflection: + * + * | | E=0 | S=2 | W=4 | N=6 | E^=8 | S^=10 | W^=12 | N^=14 | + * |-------|-----|-----|-----|-----|------|-------|-------|-------| + * | E=0 | E | S | W | N | E^ | S^ | W^ | N^ | + * | S=2 | S | W | N | E | S^ | W^ | N^ | E^ | + * | W=4 | W | N | E | S | W^ | N^ | E^ | S^ | + * | N=6 | N | E | S | W | N^ | E^ | S^ | W^ | + * | E^=8 | E^ | N^ | W^ | S^ | E | N | W | S | + * | S^=10 | S^ | E^ | N^ | W^ | S | E | N | W | + * | W^=12 | W^ | S^ | E^ | N^ | W | S | E | N | + * | N^=14 | N^ | W^ | S^ | E^ | N | W | S | E | + * + * [This is a Cayley table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation, which + * is the row in the above cayley table. + * @param {PIXI.GD8Symmetry} rotationFirst - First operation, which + * is the column in the above cayley table. + * @return {PIXI.GD8Symmetry} Composed operation + */ + add: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][rotationFirst] + ); }, + + /** + * Reverse of `add`. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation + * @param {PIXI.GD8Symmetry} rotationFirst - First operation + * @return {PIXI.GD8Symmetry} Result + */ + sub: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][GroupD8.inv(rotationFirst)] + ); }, + + /** + * Adds 180 degrees to rotation, which is a commutative + * operation. + * + * @memberof PIXI.GroupD8 + * @param {number} rotation - The number to rotate. + * @returns {number} Rotated number + */ + rotate180: function (rotation) { return rotation ^ 4; }, + + /** + * Checks if the rotation angle is vertical, i.e. south + * or north. It doesn't work for reflections. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - The number to check. + * @returns {boolean} Whether or not the direction is vertical + */ + isVertical: function (rotation) { return (rotation & 3) === 2; }, // rotation % 4 === 2 + + /** + * Approximates the vector `V(dx,dy)` into one of the + * eight directions provided by `GroupD8`. + * + * @memberof PIXI.GroupD8 + * @param {number} dx - X-component of the vector + * @param {number} dy - Y-component of the vector + * @return {PIXI.GD8Symmetry} Approximation of the vector into + * one of the eight symmetries. + */ + byDirection: function (dx, dy) { + if (Math.abs(dx) * 2 <= Math.abs(dy)) + { + if (dy >= 0) + { + return GroupD8.S; + } + + return GroupD8.N; + } + else if (Math.abs(dy) * 2 <= Math.abs(dx)) + { + if (dx > 0) + { + return GroupD8.E; + } + + return GroupD8.W; + } + else if (dy > 0) + { + if (dx > 0) + { + return GroupD8.SE; + } + + return GroupD8.SW; + } + else if (dx > 0) + { + return GroupD8.NE; + } + + return GroupD8.NW; + }, + + /** + * Helps sprite to compensate texture packer rotation. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.Matrix} matrix - sprite world matrix + * @param {PIXI.GD8Symmetry} rotation - The rotation factor to use. + * @param {number} tx - sprite anchoring + * @param {number} ty - sprite anchoring + */ + matrixAppendRotationInv: function (matrix, rotation, tx, ty) { + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + // Packer used "rotation", we use "inv(rotation)" + var mat = rotationMatrices[GroupD8.inv(rotation)]; + + mat.tx = tx; + mat.ty = ty; + matrix.append(mat); + }, +}; + +/** + * Transform that takes care about its versions + * + * @class + * @memberof PIXI + */ +var Transform = function Transform() +{ + /** + * The world transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.worldTransform = new Matrix(); + + /** + * The local transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.localTransform = new Matrix(); + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * + * @member {PIXI.ObservablePoint} + */ + this.position = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The scale factor of the object. + * + * @member {PIXI.ObservablePoint} + */ + this.scale = new ObservablePoint(this.onChange, this, 1, 1); + + /** + * The pivot point of the displayObject that it rotates around. + * + * @member {PIXI.ObservablePoint} + */ + this.pivot = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The skew amount, on the x and y axis. + * + * @member {PIXI.ObservablePoint} + */ + this.skew = new ObservablePoint(this.updateSkew, this, 0, 0); + + /** + * The rotation amount. + * + * @protected + * @member {number} + */ + this._rotation = 0; + + /** + * The X-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cx = 1; + + /** + * The Y-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sx = 0; + + /** + * The X-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cy = 0; + + /** + * The Y-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sy = 1; + + /** + * The locally unique ID of the local transform. + * + * @protected + * @member {number} + */ + this._localID = 0; + + /** + * The locally unique ID of the local transform + * used to calculate the current local transformation matrix. + * + * @protected + * @member {number} + */ + this._currentLocalID = 0; + + /** + * The locally unique ID of the world transform. + * + * @protected + * @member {number} + */ + this._worldID = 0; + + /** + * The locally unique ID of the parent's world transform + * used to calculate the current world transformation matrix. + * + * @protected + * @member {number} + */ + this._parentID = 0; +}; + +var prototypeAccessors$1$1 = { rotation: { configurable: true } }; + +/** + * Called when a value changes. + * + * @protected + */ +Transform.prototype.onChange = function onChange () +{ + this._localID++; +}; + +/** + * Called when the skew or the rotation changes. + * + * @protected + */ +Transform.prototype.updateSkew = function updateSkew () +{ + this._cx = Math.cos(this._rotation + this.skew._y); + this._sx = Math.sin(this._rotation + this.skew._y); + this._cy = -Math.sin(this._rotation - this.skew._x); // cos, added PI/2 + this._sy = Math.cos(this._rotation - this.skew._x); // sin, added PI/2 + + this._localID++; +}; + +/** + * Updates the local transformation matrix. + */ +Transform.prototype.updateLocalTransform = function updateLocalTransform () +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } +}; + +/** + * Updates the local and the world transformation matrices. + * + * @param {PIXI.Transform} parentTransform - The parent transform + */ +Transform.prototype.updateTransform = function updateTransform (parentTransform) +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } + + if (this._parentID !== parentTransform._worldID) + { + // concat the parent matrix with the objects transform. + var pt = parentTransform.worldTransform; + var wt = this.worldTransform; + + wt.a = (lt.a * pt.a) + (lt.b * pt.c); + wt.b = (lt.a * pt.b) + (lt.b * pt.d); + wt.c = (lt.c * pt.a) + (lt.d * pt.c); + wt.d = (lt.c * pt.b) + (lt.d * pt.d); + wt.tx = (lt.tx * pt.a) + (lt.ty * pt.c) + pt.tx; + wt.ty = (lt.tx * pt.b) + (lt.ty * pt.d) + pt.ty; + + this._parentID = parentTransform._worldID; + + // update the id of the transform.. + this._worldID++; + } +}; + +/** + * Decomposes a matrix and sets the transforms properties based on it. + * + * @param {PIXI.Matrix} matrix - The matrix to decompose + */ +Transform.prototype.setFromMatrix = function setFromMatrix (matrix) +{ + matrix.decompose(this); + this._localID++; +}; + +/** + * The rotation of the object in radians. + * + * @member {number} + */ +prototypeAccessors$1$1.rotation.get = function () +{ + return this._rotation; +}; + +prototypeAccessors$1$1.rotation.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._rotation !== value) + { + this._rotation = value; + this.updateSkew(); + } +}; + +Object.defineProperties( Transform.prototype, prototypeAccessors$1$1 ); + +/** + * A default (identity) transform + * + * @static + * @constant + * @member {PIXI.Transform} + */ +Transform.IDENTITY = new Transform(); + +/** + * Size object, contains width and height + * + * @memberof PIXI + * @typedef {object} ISize + * @property {number} width - Width component + * @property {number} height - Height component + */ + +/** + * Rectangle object is an area defined by its position, as indicated by its top-left corner + * point (x, y) and by its width and its height. + * + * @class + * @memberof PIXI + */ +var Rectangle = function Rectangle(x, y, width, height) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = Number(x); + + /** + * @member {number} + * @default 0 + */ + this.y = Number(y); + + /** + * @member {number} + * @default 0 + */ + this.width = Number(width); + + /** + * @member {number} + * @default 0 + */ + this.height = Number(height); + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.RECT + * @see PIXI.SHAPES + */ + this.type = SHAPES.RECT; +}; + +var prototypeAccessors$2 = { left: { configurable: true },right: { configurable: true },top: { configurable: true },bottom: { configurable: true } }; +var staticAccessors$1 = { EMPTY: { configurable: true } }; + +/** + * returns the left edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.left.get = function () +{ + return this.x; +}; + +/** + * returns the right edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.right.get = function () +{ + return this.x + this.width; +}; + +/** + * returns the top edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.top.get = function () +{ + return this.y; +}; + +/** + * returns the bottom edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.bottom.get = function () +{ + return this.y + this.height; +}; + +/** + * A constant empty rectangle. + * + * @static + * @constant + * @member {PIXI.Rectangle} + */ +staticAccessors$1.EMPTY.get = function () +{ + return new Rectangle(0, 0, 0, 0); +}; + +/** + * Creates a clone of this Rectangle + * + * @return {PIXI.Rectangle} a copy of the rectangle + */ +Rectangle.prototype.clone = function clone () +{ + return new Rectangle(this.x, this.y, this.width, this.height); +}; + +/** + * Copies another rectangle to this one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy from. + * @return {PIXI.Rectangle} Returns itself. + */ +Rectangle.prototype.copyFrom = function copyFrom (rectangle) +{ + this.x = rectangle.x; + this.y = rectangle.y; + this.width = rectangle.width; + this.height = rectangle.height; + + return this; +}; + +/** + * Copies this rectangle to another one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy to. + * @return {PIXI.Rectangle} Returns given parameter. + */ +Rectangle.prototype.copyTo = function copyTo (rectangle) +{ + rectangle.x = this.x; + rectangle.y = this.y; + rectangle.width = this.width; + rectangle.height = this.height; + + return rectangle; +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rectangle + */ +Rectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + if (x >= this.x && x < this.x + this.width) + { + if (y >= this.y && y < this.y + this.height) + { + return true; + } + } + + return false; +}; + +/** + * Pads the rectangle making it grow in all directions. + * + * @param {number} paddingX - The horizontal padding amount. + * @param {number} paddingY - The vertical padding amount. + */ +Rectangle.prototype.pad = function pad (paddingX, paddingY) +{ + paddingX = paddingX || 0; + paddingY = paddingY || ((paddingY !== 0) ? paddingX : 0); + + this.x -= paddingX; + this.y -= paddingY; + + this.width += paddingX * 2; + this.height += paddingY * 2; +}; + +/** + * Fits this rectangle around the passed one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to fit. + */ +Rectangle.prototype.fit = function fit (rectangle) +{ + var x1 = Math.max(this.x, rectangle.x); + var x2 = Math.min(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.max(this.y, rectangle.y); + var y2 = Math.min(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = Math.max(x2 - x1, 0); + this.y = y1; + this.height = Math.max(y2 - y1, 0); +}; + +/** + * Enlarges rectangle that way its corners lie on grid + * + * @param {number} [resolution=1] resolution + * @param {number} [eps=0.001] precision + */ +Rectangle.prototype.ceil = function ceil (resolution, eps) +{ + if ( resolution === void 0 ) resolution = 1; + if ( eps === void 0 ) eps = 0.001; + + var x2 = Math.ceil((this.x + this.width - eps) * resolution) / resolution; + var y2 = Math.ceil((this.y + this.height - eps) * resolution) / resolution; + + this.x = Math.floor((this.x + eps) * resolution) / resolution; + this.y = Math.floor((this.y + eps) * resolution) / resolution; + + this.width = x2 - this.x; + this.height = y2 - this.y; +}; + +/** + * Enlarges this rectangle to include the passed rectangle. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to include. + */ +Rectangle.prototype.enlarge = function enlarge (rectangle) +{ + var x1 = Math.min(this.x, rectangle.x); + var x2 = Math.max(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.min(this.y, rectangle.y); + var y2 = Math.max(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = x2 - x1; + this.y = y1; + this.height = y2 - y1; +}; + +Object.defineProperties( Rectangle.prototype, prototypeAccessors$2 ); +Object.defineProperties( Rectangle, staticAccessors$1 ); + +/** + * The Circle object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Circle = function Circle(x, y, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( radius === void 0 ) radius = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.CIRC + * @see PIXI.SHAPES + */ + this.type = SHAPES.CIRC; +}; + +/** + * Creates a clone of this Circle instance + * + * @return {PIXI.Circle} a copy of the Circle + */ +Circle.prototype.clone = function clone () +{ + return new Circle(this.x, this.y, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this circle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Circle + */ +Circle.prototype.contains = function contains (x, y) +{ + if (this.radius <= 0) + { + return false; + } + + var r2 = this.radius * this.radius; + var dx = (this.x - x); + var dy = (this.y - y); + + dx *= dx; + dy *= dy; + + return (dx + dy <= r2); +}; + +/** +* Returns the framing rectangle of the circle as a Rectangle object +* +* @return {PIXI.Rectangle} the framing rectangle +*/ +Circle.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2); +}; + +/** + * The Ellipse object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Ellipse = function Ellipse(x, y, halfWidth, halfHeight) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( halfWidth === void 0 ) halfWidth = 0; + if ( halfHeight === void 0 ) halfHeight = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = halfWidth; + + /** + * @member {number} + * @default 0 + */ + this.height = halfHeight; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.ELIP + * @see PIXI.SHAPES + */ + this.type = SHAPES.ELIP; +}; + +/** + * Creates a clone of this Ellipse instance + * + * @return {PIXI.Ellipse} a copy of the ellipse + */ +Ellipse.prototype.clone = function clone () +{ + return new Ellipse(this.x, this.y, this.width, this.height); +}; + +/** + * Checks whether the x and y coordinates given are contained within this ellipse + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coords are within this ellipse + */ +Ellipse.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + // normalize the coords to an ellipse with center 0,0 + var normx = ((x - this.x) / this.width); + var normy = ((y - this.y) / this.height); + + normx *= normx; + normy *= normy; + + return (normx + normy <= 1); +}; + +/** + * Returns the framing rectangle of the ellipse as a Rectangle object + * + * @return {PIXI.Rectangle} the framing rectangle + */ +Ellipse.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height); +}; + +/** + * A class to define a shape via user defined co-orinates. + * + * @class + * @memberof PIXI + */ +var Polygon = function Polygon() +{ + var points = [], len = arguments.length; + while ( len-- ) points[ len ] = arguments[ len ]; + + if (Array.isArray(points[0])) + { + points = points[0]; + } + + // if this is an array of points, convert it to a flat array of numbers + if (points[0] instanceof Point) + { + var p = []; + + for (var i = 0, il = points.length; i < il; i++) + { + p.push(points[i].x, points[i].y); + } + + points = p; + } + + /** + * An array of the points of this polygon + * + * @member {number[]} + */ + this.points = points; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.POLY + * @see PIXI.SHAPES + */ + this.type = SHAPES.POLY; + + /** + * `false` after moveTo, `true` after `closePath`. In all other cases it is `true`. + * @member {boolean} + * @default true + */ + this.closeStroke = true; +}; + +/** + * Creates a clone of this polygon + * + * @return {PIXI.Polygon} a copy of the polygon + */ +Polygon.prototype.clone = function clone () +{ + var polygon = new Polygon(this.points.slice()); + + polygon.closeStroke = this.closeStroke; + + return polygon; +}; + +/** + * Checks whether the x and y coordinates passed to this function are contained within this polygon + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this polygon + */ +Polygon.prototype.contains = function contains (x, y) +{ + var inside = false; + + // use some raycasting to test hits + // https://github.com/substack/point-in-polygon/blob/master/index.js + var length = this.points.length / 2; + + for (var i = 0, j = length - 1; i < length; j = i++) + { + var xi = this.points[i * 2]; + var yi = this.points[(i * 2) + 1]; + var xj = this.points[j * 2]; + var yj = this.points[(j * 2) + 1]; + var intersect = ((yi > y) !== (yj > y)) && (x < ((xj - xi) * ((y - yi) / (yj - yi))) + xi); + + if (intersect) + { + inside = !inside; + } + } + + return inside; +}; + +/** + * The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its + * top-left corner point (x, y) and by its width and its height and its radius. + * + * @class + * @memberof PIXI + */ +var RoundedRectangle = function RoundedRectangle(x, y, width, height, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + if ( radius === void 0 ) radius = 20; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = width; + + /** + * @member {number} + * @default 0 + */ + this.height = height; + + /** + * @member {number} + * @default 20 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readonly + * @default PIXI.SHAPES.RREC + * @see PIXI.SHAPES + */ + this.type = SHAPES.RREC; +}; + +/** + * Creates a clone of this Rounded Rectangle + * + * @return {PIXI.RoundedRectangle} a copy of the rounded rectangle + */ +RoundedRectangle.prototype.clone = function clone () +{ + return new RoundedRectangle(this.x, this.y, this.width, this.height, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rounded Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rounded Rectangle + */ +RoundedRectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + if (x >= this.x && x <= this.x + this.width) + { + if (y >= this.y && y <= this.y + this.height) + { + if ((y >= this.y + this.radius && y <= this.y + this.height - this.radius) + || (x >= this.x + this.radius && x <= this.x + this.width - this.radius)) + { + return true; + } + var dx = x - (this.x + this.radius); + var dy = y - (this.y + this.radius); + var radius2 = this.radius * this.radius; + + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.width - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dy = y - (this.y + this.height - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + } + } + + return false; +}; + +/*! + * @pixi/display - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/display is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Sets the default value for the container property 'sortableChildren'. + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @static + * @constant + * @name SORTABLE_CHILDREN + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ +settings.SORTABLE_CHILDREN = false; + +/** + * 'Builder' pattern for bounds rectangles. + * + * This could be called an Axis-Aligned Bounding Box. + * It is not an actual shape. It is a mutable thing; no 'EMPTY' or those kind of problems. + * + * @class + * @memberof PIXI + */ +var Bounds = function Bounds() +{ + /** + * @member {number} + * @default 0 + */ + this.minX = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.minY = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxX = -Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxY = -Infinity; + + this.rect = null; +}; + +/** + * Checks if bounds are empty. + * + * @return {boolean} True if empty. + */ +Bounds.prototype.isEmpty = function isEmpty () +{ + return this.minX > this.maxX || this.minY > this.maxY; +}; + +/** + * Clears the bounds and resets. + * + */ +Bounds.prototype.clear = function clear () +{ + this.updateID++; + + this.minX = Infinity; + this.minY = Infinity; + this.maxX = -Infinity; + this.maxY = -Infinity; +}; + +/** + * Can return Rectangle.EMPTY constant, either construct new rectangle, either use your rectangle + * It is not guaranteed that it will return tempRect + * + * @param {PIXI.Rectangle} rect - temporary object will be used if AABB is not empty + * @returns {PIXI.Rectangle} A rectangle of the bounds + */ +Bounds.prototype.getRectangle = function getRectangle (rect) +{ + if (this.minX > this.maxX || this.minY > this.maxY) + { + return Rectangle.EMPTY; + } + + rect = rect || new Rectangle(0, 0, 1, 1); + + rect.x = this.minX; + rect.y = this.minY; + rect.width = this.maxX - this.minX; + rect.height = this.maxY - this.minY; + + return rect; +}; + +/** + * This function should be inlined when its possible. + * + * @param {PIXI.Point} point - The point to add. + */ +Bounds.prototype.addPoint = function addPoint (point) +{ + this.minX = Math.min(this.minX, point.x); + this.maxX = Math.max(this.maxX, point.x); + this.minY = Math.min(this.minY, point.y); + this.maxY = Math.max(this.maxY, point.y); +}; + +/** + * Adds a quad, not transformed + * + * @param {Float32Array} vertices - The verts to add. + */ +Bounds.prototype.addQuad = function addQuad (vertices) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = vertices[0]; + var y = vertices[1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[2]; + y = vertices[3]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[4]; + y = vertices[5]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[6]; + y = vertices[7]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds sprite frame, transformed. + * + * @param {PIXI.Transform} transform - TODO + * @param {number} x0 - TODO + * @param {number} y0 - TODO + * @param {number} x1 - TODO + * @param {number} y1 - TODO + */ +Bounds.prototype.addFrame = function addFrame (transform, x0, y0, x1, y1) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = (a * x0) + (c * y0) + tx; + var y = (b * x0) + (d * y0) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y0) + tx; + y = (b * x1) + (d * y0) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x0) + (c * y1) + tx; + y = (b * x0) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y1) + tx; + y = (b * x1) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds screen vertices from array + * + * @param {Float32Array} vertexData - calculated vertices + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertexData = function addVertexData (vertexData, beginOffset, endOffset) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var x = vertexData[i]; + var y = vertexData[i + 1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Add an array of mesh vertices + * + * @param {PIXI.Transform} transform - mesh transform + * @param {Float32Array} vertices - mesh coordinates in array + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertices = function addVertices (transform, vertices, beginOffset, endOffset) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var rawX = vertices[i]; + var rawY = vertices[i + 1]; + var x = (a * rawX) + (c * rawY) + tx; + var y = (d * rawY) + (b * rawX) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds other Bounds + * + * @param {PIXI.Bounds} bounds - TODO + */ +Bounds.prototype.addBounds = function addBounds (bounds) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = bounds.minX < minX ? bounds.minX : minX; + this.minY = bounds.minY < minY ? bounds.minY : minY; + this.maxX = bounds.maxX > maxX ? bounds.maxX : maxX; + this.maxY = bounds.maxY > maxY ? bounds.maxY : maxY; +}; + +/** + * Adds other Bounds, masked with Bounds + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Bounds} mask - TODO + */ +Bounds.prototype.addBoundsMask = function addBoundsMask (bounds, mask) +{ + var _minX = bounds.minX > mask.minX ? bounds.minX : mask.minX; + var _minY = bounds.minY > mask.minY ? bounds.minY : mask.minY; + var _maxX = bounds.maxX < mask.maxX ? bounds.maxX : mask.maxX; + var _maxY = bounds.maxY < mask.maxY ? bounds.maxY : mask.maxY; + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +/** + * Adds other Bounds, masked with Rectangle + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Rectangle} area - TODO + */ +Bounds.prototype.addBoundsArea = function addBoundsArea (bounds, area) +{ + var _minX = bounds.minX > area.x ? bounds.minX : area.x; + var _minY = bounds.minY > area.y ? bounds.minY : area.y; + var _maxX = bounds.maxX < area.x + area.width ? bounds.maxX : (area.x + area.width); + var _maxY = bounds.maxY < area.y + area.height ? bounds.maxY : (area.y + area.height); + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +// _tempDisplayObjectParent = new DisplayObject(); + +/** + * The base class for all objects that are rendered on the screen. + * + * This is an abstract class and should not be used on its own; rather it should be extended. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var DisplayObject = /*@__PURE__*/(function (EventEmitter) { + function DisplayObject() + { + EventEmitter.call(this); + + this.tempDisplayObjectParent = null; + + // TODO: need to create Transform from factory + /** + * World transform and local transform of this object. + * This will become read-only later, please do not assign anything there unless you know what are you doing. + * + * @member {PIXI.Transform} + */ + this.transform = new Transform(); + + /** + * The opacity of the object. + * + * @member {number} + */ + this.alpha = 1; + + /** + * The visibility of the object. If false the object will not be drawn, and + * the updateTransform function will not be called. + * + * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually. + * + * @member {boolean} + */ + this.visible = true; + + /** + * Can this object be rendered, if false the object will not be drawn but the updateTransform + * methods will still be called. + * + * Only affects recursive calls from parent. You can ask for bounds manually. + * + * @member {boolean} + */ + this.renderable = true; + + /** + * The display object container that contains this display object. + * + * @member {PIXI.Container} + * @readonly + */ + this.parent = null; + + /** + * The multiplied alpha of the displayObject. + * + * @member {number} + * @readonly + */ + this.worldAlpha = 1; + + /** + * Which index in the children array the display component was before the previous zIndex sort. + * Used by containers to help sort objects with the same zIndex, by using previous array index as the decider. + * + * @member {number} + * @protected + */ + this._lastSortedIndex = 0; + + /** + * The zIndex of the displayObject. + * A higher value will mean it will be rendered on top of other displayObjects within the same container. + * + * @member {number} + * @protected + */ + this._zIndex = 0; + + /** + * The area the filter is applied to. This is used as more of an optimization + * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle. + * + * Also works as an interaction mask. + * + * @member {?PIXI.Rectangle} + */ + this.filterArea = null; + + /** + * Sets the filters for the displayObject. + * * IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer. + * To remove filters simply set this property to `'null'`. + * + * @member {?PIXI.Filter[]} + */ + this.filters = null; + this._enabledFilters = null; + + /** + * The bounds object, this is used to calculate and store the bounds of the displayObject. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + this._boundsID = 0; + this._lastBoundsID = -1; + this._boundsRect = null; + this._localBoundsRect = null; + + /** + * The original, cached mask of the object. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + * @protected + */ + this._mask = null; + + /** + * Fired when this DisplayObject is added to a Container. + * + * @event PIXI.DisplayObject#added + * @param {PIXI.Container} container - The container added to. + */ + + /** + * Fired when this DisplayObject is removed from a Container. + * + * @event PIXI.DisplayObject#removed + * @param {PIXI.Container} container - The container removed from. + */ + + /** + * If the object has been destroyed via destroy(). If true, it should not be used. + * + * @member {boolean} + * @protected + */ + this._destroyed = false; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = false; + } + + if ( EventEmitter ) DisplayObject.__proto__ = EventEmitter; + DisplayObject.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + DisplayObject.prototype.constructor = DisplayObject; + + var prototypeAccessors = { _tempDisplayObjectParent: { configurable: true },x: { configurable: true },y: { configurable: true },worldTransform: { configurable: true },localTransform: { configurable: true },position: { configurable: true },scale: { configurable: true },pivot: { configurable: true },skew: { configurable: true },rotation: { configurable: true },angle: { configurable: true },zIndex: { configurable: true },worldVisible: { configurable: true },mask: { configurable: true } }; + + /** + * @protected + * @member {PIXI.DisplayObject} + */ + DisplayObject.mixin = function mixin (source) + { + // in ES8/ES2017, this would be really easy: + // Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); + + // get all the enumerable property keys + var keys = Object.keys(source); + + // loop through properties + for (var i = 0; i < keys.length; ++i) + { + var propertyName = keys[i]; + + // Set the property using the property descriptor - this works for accessors and normal value properties + Object.defineProperty( + DisplayObject.prototype, + propertyName, + Object.getOwnPropertyDescriptor(source, propertyName) + ); + } + }; + + prototypeAccessors._tempDisplayObjectParent.get = function () + { + if (this.tempDisplayObjectParent === null) + { + this.tempDisplayObjectParent = new DisplayObject(); + } + + return this.tempDisplayObjectParent; + }; + + /** + * Updates the object transform for rendering. + * + * TODO - Optimization pass! + */ + DisplayObject.prototype.updateTransform = function updateTransform () + { + this.transform.updateTransform(this.parent.transform); + // multiply the alphas.. + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + this._bounds.updateID++; + }; + + /** + * Recursively updates transform of all objects from the root to this one + * internal function for toLocal() + */ + DisplayObject.prototype._recursivePostUpdateTransform = function _recursivePostUpdateTransform () + { + if (this.parent) + { + this.parent._recursivePostUpdateTransform(); + this.transform.updateTransform(this.parent.transform); + } + else + { + this.transform.updateTransform(this._tempDisplayObjectParent.transform); + } + }; + + /** + * Retrieves the bounds of the displayObject as a rectangle object. + * + * @param {boolean} [skipUpdate] - Setting to `true` will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getBounds = function getBounds (skipUpdate, rect) + { + if (!skipUpdate) + { + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this._recursivePostUpdateTransform(); + this.updateTransform(); + } + } + + if (this._boundsID !== this._lastBoundsID) + { + this.calculateBounds(); + this._lastBoundsID = this._boundsID; + } + + if (!rect) + { + if (!this._boundsRect) + { + this._boundsRect = new Rectangle(); + } + + rect = this._boundsRect; + } + + return this._bounds.getRectangle(rect); + }; + + /** + * Retrieves the local bounds of the displayObject as a rectangle object. + * + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getLocalBounds = function getLocalBounds (rect) + { + var transformRef = this.transform; + var parentRef = this.parent; + + this.parent = null; + this.transform = this._tempDisplayObjectParent.transform; + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + var bounds = this.getBounds(false, rect); + + this.parent = parentRef; + this.transform = transformRef; + + return bounds; + }; + + /** + * Calculates the global position of the display object. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform. + * @return {PIXI.IPoint} A point object representing the position of this object. + */ + DisplayObject.prototype.toGlobal = function toGlobal (position, point, skipUpdate) + { + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // don't need to update the lot + return this.worldTransform.apply(position, point); + }; + + /** + * Calculates the local position of the display object relative to another point. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform + * @return {PIXI.IPoint} A point object representing the position of this object + */ + DisplayObject.prototype.toLocal = function toLocal (position, from, point, skipUpdate) + { + if (from) + { + position = from.toGlobal(position, point, skipUpdate); + } + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // simply apply the matrix.. + return this.worldTransform.applyInverse(position, point); + }; + + /** + * Renders the object using the WebGL renderer. + * + * @param {PIXI.Renderer} renderer - The renderer. + */ + DisplayObject.prototype.render = function render (renderer) // eslint-disable-line no-unused-vars + { + // OVERWRITE; + }; + + /** + * Set the parent Container of this DisplayObject. + * + * @param {PIXI.Container} container - The Container to add this DisplayObject to. + * @return {PIXI.Container} The Container that this DisplayObject was added to. + */ + DisplayObject.prototype.setParent = function setParent (container) + { + if (!container || !container.addChild) + { + throw new Error('setParent: Argument must be a Container'); + } + + container.addChild(this); + + return container; + }; + + /** + * Convenience function to set the position, scale, skew and pivot at once. + * + * @param {number} [x=0] - The X position + * @param {number} [y=0] - The Y position + * @param {number} [scaleX=1] - The X scale value + * @param {number} [scaleY=1] - The Y scale value + * @param {number} [rotation=0] - The rotation + * @param {number} [skewX=0] - The X skew value + * @param {number} [skewY=0] - The Y skew value + * @param {number} [pivotX=0] - The X pivot value + * @param {number} [pivotY=0] - The Y pivot value + * @return {PIXI.DisplayObject} The DisplayObject instance + */ + DisplayObject.prototype.setTransform = function setTransform (x, y, scaleX, scaleY, rotation, skewX, skewY, pivotX, pivotY) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( scaleX === void 0 ) scaleX = 1; + if ( scaleY === void 0 ) scaleY = 1; + if ( rotation === void 0 ) rotation = 0; + if ( skewX === void 0 ) skewX = 0; + if ( skewY === void 0 ) skewY = 0; + if ( pivotX === void 0 ) pivotX = 0; + if ( pivotY === void 0 ) pivotY = 0; + + this.position.x = x; + this.position.y = y; + this.scale.x = !scaleX ? 1 : scaleX; + this.scale.y = !scaleY ? 1 : scaleY; + this.rotation = rotation; + this.skew.x = skewX; + this.skew.y = skewY; + this.pivot.x = pivotX; + this.pivot.y = pivotY; + + return this; + }; + + /** + * Base destroy method for generic display objects. This will automatically + * remove the display object from its parent Container as well as remove + * all current event listeners and internal references. Do not use a DisplayObject + * after calling `destroy()`. + * + */ + DisplayObject.prototype.destroy = function destroy () + { + this.removeAllListeners(); + if (this.parent) + { + this.parent.removeChild(this); + } + this.transform = null; + + this.parent = null; + + this._bounds = null; + this._currentBounds = null; + this._mask = null; + + this.filterArea = null; + + this.interactive = false; + this.interactiveChildren = false; + + this._destroyed = true; + }; + + /** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * An alias to position.x + * + * @member {number} + */ + prototypeAccessors.x.get = function () + { + return this.position.x; + }; + + prototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.x = value; + }; + + /** + * The position of the displayObject on the y axis relative to the local coordinates of the parent. + * An alias to position.y + * + * @member {number} + */ + prototypeAccessors.y.get = function () + { + return this.position.y; + }; + + prototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.y = value; + }; + + /** + * Current transform of the object based on world (parent) factors. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.worldTransform.get = function () + { + return this.transform.worldTransform; + }; + + /** + * Current transform of the object based on local factors: position, scale, other stuff. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.localTransform.get = function () + { + return this.transform.localTransform; + }; + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.position.get = function () + { + return this.transform.position; + }; + + prototypeAccessors.position.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.copyFrom(value); + }; + + /** + * The scale factor of the object. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.scale.get = function () + { + return this.transform.scale; + }; + + prototypeAccessors.scale.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.scale.copyFrom(value); + }; + + /** + * The pivot point of the displayObject that it rotates around. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.pivot.get = function () + { + return this.transform.pivot; + }; + + prototypeAccessors.pivot.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.pivot.copyFrom(value); + }; + + /** + * The skew factor for the object in radians. + * Assignment by value since pixi-v4. + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.skew.get = function () + { + return this.transform.skew; + }; + + prototypeAccessors.skew.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.skew.copyFrom(value); + }; + + /** + * The rotation of the object in radians. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.rotation.get = function () + { + return this.transform.rotation; + }; + + prototypeAccessors.rotation.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value; + }; + + /** + * The angle of the object in degrees. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.angle.get = function () + { + return this.transform.rotation * RAD_TO_DEG; + }; + + prototypeAccessors.angle.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value * DEG_TO_RAD; + }; + + /** + * The zIndex of the displayObject. + * If a container has the sortableChildren property set to true, children will be automatically + * sorted by zIndex value; a higher value will mean it will be moved towards the end of the array, + * and thus rendered on top of other displayObjects within the same container. + * + * @member {number} + */ + prototypeAccessors.zIndex.get = function () + { + return this._zIndex; + }; + + prototypeAccessors.zIndex.set = function (value) // eslint-disable-line require-jsdoc + { + this._zIndex = value; + if (this.parent) + { + this.parent.sortDirty = true; + } + }; + + /** + * Indicates if the object is globally visible. + * + * @member {boolean} + * @readonly + */ + prototypeAccessors.worldVisible.get = function () + { + var item = this; + + do + { + if (!item.visible) + { + return false; + } + + item = item.parent; + } while (item); + + return true; + }; + + /** + * Sets a mask for the displayObject. A mask is an object that limits the visibility of an + * object to the shape of the mask applied to it. In PixiJS a regular mask must be a + * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it + * utilities shape clipping. To remove a mask, set this property to `null`. + * + * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask. + * @example + * const graphics = new PIXI.Graphics(); + * graphics.beginFill(0xFF3300); + * graphics.drawRect(50, 250, 100, 100); + * graphics.endFill(); + * + * const sprite = new PIXI.Sprite(texture); + * sprite.mask = graphics; + * @todo At the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + */ + prototypeAccessors.mask.get = function () + { + return this._mask; + }; + + prototypeAccessors.mask.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._mask) + { + this._mask.renderable = true; + this._mask.isMask = false; + } + + this._mask = value; + + if (this._mask) + { + this._mask.renderable = false; + this._mask.isMask = true; + } + }; + + Object.defineProperties( DisplayObject.prototype, prototypeAccessors ); + + return DisplayObject; +}(eventemitter3)); + +/** + * DisplayObject default updateTransform, does not update children of container. + * Will crash if there's no parent element. + * + * @memberof PIXI.DisplayObject# + * @function displayObjectUpdateTransform + */ +DisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform; + +function sortChildren(a, b) +{ + if (a.zIndex === b.zIndex) + { + return a._lastSortedIndex - b._lastSortedIndex; + } + + return a.zIndex - b.zIndex; +} + +/** + * A Container represents a collection of display objects. + * + * It is the base class of all display objects that act as a container for other objects (like Sprites). + * + *```js + * let container = new PIXI.Container(); + * container.addChild(sprite); + * ``` + * + * @class + * @extends PIXI.DisplayObject + * @memberof PIXI + */ +var Container = /*@__PURE__*/(function (DisplayObject) { + function Container() + { + DisplayObject.call(this); + + /** + * The array of children of this container. + * + * @member {PIXI.DisplayObject[]} + * @readonly + */ + this.children = []; + + /** + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @see PIXI.settings.SORTABLE_CHILDREN + * + * @member {boolean} + */ + this.sortableChildren = settings.SORTABLE_CHILDREN; + + /** + * Should children be sorted by zIndex at the next updateTransform call. + * Will get automatically set to true if a new child is added, or if a child's zIndex changes. + * + * @member {boolean} + */ + this.sortDirty = false; + + /** + * Fired when a DisplayObject is added to this Container. + * + * @event PIXI.Container#childAdded + * @param {PIXI.DisplayObject} child - The child added to the Container. + * @param {PIXI.Container} container - The container that added the child. + * @param {number} index - The children's index of the added child. + */ + + /** + * Fired when a DisplayObject is removed from this Container. + * + * @event PIXI.DisplayObject#removedFrom + * @param {PIXI.DisplayObject} child - The child removed from the Container. + * @param {PIXI.Container} container - The container that removed removed the child. + * @param {number} index - The former children's index of the removed child + */ + } + + if ( DisplayObject ) Container.__proto__ = DisplayObject; + Container.prototype = Object.create( DisplayObject && DisplayObject.prototype ); + Container.prototype.constructor = Container; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + + /** + * Overridable method that can be used by Container subclasses whenever the children array is modified + * + * @protected + */ + Container.prototype.onChildrenChange = function onChildrenChange () + { + /* empty */ + }; + + /** + * Adds one or more children to the container. + * + * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)` + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container + * @return {PIXI.DisplayObject} The first child that was added. + */ + Container.prototype.addChild = function addChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.addChild(arguments$1[i]); + } + } + else + { + // if the child has a parent then lets remove it as PixiJS objects can only exist in one place + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.push(child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(this.children.length - 1); + this.emit('childAdded', child, this, this.children.length - 1); + child.emit('added', this); + } + + return child; + }; + + /** + * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown + * + * @param {PIXI.DisplayObject} child - The child to add + * @param {number} index - The index to place the child in + * @return {PIXI.DisplayObject} The child that was added. + */ + Container.prototype.addChildAt = function addChildAt (child, index) + { + if (index < 0 || index > this.children.length) + { + throw new Error((child + "addChildAt: The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.splice(index, 0, child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('added', this); + this.emit('childAdded', child, this, index); + + return child; + }; + + /** + * Swaps the position of 2 Display Objects within this container. + * + * @param {PIXI.DisplayObject} child - First display object to swap + * @param {PIXI.DisplayObject} child2 - Second display object to swap + */ + Container.prototype.swapChildren = function swapChildren (child, child2) + { + if (child === child2) + { + return; + } + + var index1 = this.getChildIndex(child); + var index2 = this.getChildIndex(child2); + + this.children[index1] = child2; + this.children[index2] = child; + this.onChildrenChange(index1 < index2 ? index1 : index2); + }; + + /** + * Returns the index position of a child DisplayObject instance + * + * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify + * @return {number} The index position of the child display object to identify + */ + Container.prototype.getChildIndex = function getChildIndex (child) + { + var index = this.children.indexOf(child); + + if (index === -1) + { + throw new Error('The supplied DisplayObject must be a child of the caller'); + } + + return index; + }; + + /** + * Changes the position of an existing child in the display object container + * + * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number + * @param {number} index - The resulting index number for the child display object + */ + Container.prototype.setChildIndex = function setChildIndex (child, index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + var currentIndex = this.getChildIndex(child); + + removeItems(this.children, currentIndex, 1); // remove from old position + this.children.splice(index, 0, child); // add at new position + + this.onChildrenChange(index); + }; + + /** + * Returns the child at the specified index + * + * @param {number} index - The index to get the child at + * @return {PIXI.DisplayObject} The child at the given index, if any. + */ + Container.prototype.getChildAt = function getChildAt (index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("getChildAt: Index (" + index + ") does not exist.")); + } + + return this.children[index]; + }; + + /** + * Removes one or more children from the container. + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove + * @return {PIXI.DisplayObject} The first child that was removed. + */ + Container.prototype.removeChild = function removeChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.removeChild(arguments$1[i]); + } + } + else + { + var index = this.children.indexOf(child); + + if (index === -1) { return null; } + + child.parent = null; + // ensure child transform will be recalculated + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + } + + return child; + }; + + /** + * Removes a child from the specified index position. + * + * @param {number} index - The index to get the child from + * @return {PIXI.DisplayObject} The child that was removed. + */ + Container.prototype.removeChildAt = function removeChildAt (index) + { + var child = this.getChildAt(index); + + // ensure child transform will be recalculated.. + child.parent = null; + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + + return child; + }; + + /** + * Removes all children from this container that are within the begin and end indexes. + * + * @param {number} [beginIndex=0] - The beginning position. + * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container. + * @returns {PIXI.DisplayObject[]} List of removed children + */ + Container.prototype.removeChildren = function removeChildren (beginIndex, endIndex) + { + if ( beginIndex === void 0 ) beginIndex = 0; + + var begin = beginIndex; + var end = typeof endIndex === 'number' ? endIndex : this.children.length; + var range = end - begin; + var removed; + + if (range > 0 && range <= end) + { + removed = this.children.splice(begin, range); + + for (var i = 0; i < removed.length; ++i) + { + removed[i].parent = null; + if (removed[i].transform) + { + removed[i].transform._parentID = -1; + } + } + + this._boundsID++; + + this.onChildrenChange(beginIndex); + + for (var i$1 = 0; i$1 < removed.length; ++i$1) + { + removed[i$1].emit('removed', this); + this.emit('childRemoved', removed[i$1], this, i$1); + } + + return removed; + } + else if (range === 0 && this.children.length === 0) + { + return []; + } + + throw new RangeError('removeChildren: numeric values are outside the acceptable range.'); + }; + + /** + * Sorts children by zIndex. Previous order is mantained for 2 children with the same zIndex. + */ + Container.prototype.sortChildren = function sortChildren$1 () + { + var sortRequired = false; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + child._lastSortedIndex = i; + + if (!sortRequired && child.zIndex !== 0) + { + sortRequired = true; + } + } + + if (sortRequired && this.children.length > 1) + { + this.children.sort(sortChildren); + } + + this.sortDirty = false; + }; + + /** + * Updates the transform on all children of this container for rendering + */ + Container.prototype.updateTransform = function updateTransform () + { + if (this.sortableChildren && this.sortDirty) + { + this.sortChildren(); + } + + this._boundsID++; + + this.transform.updateTransform(this.parent.transform); + + // TODO: check render flags, how to process stuff here + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + if (child.visible) + { + child.updateTransform(); + } + } + }; + + /** + * Recalculates the bounds of the container. + * + */ + Container.prototype.calculateBounds = function calculateBounds () + { + this._bounds.clear(); + + this._calculateBounds(); + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (!child.visible || !child.renderable) + { + continue; + } + + child.calculateBounds(); + + // TODO: filter+mask, need to mask both somehow + if (child._mask) + { + child._mask.calculateBounds(); + this._bounds.addBoundsMask(child._bounds, child._mask._bounds); + } + else if (child.filterArea) + { + this._bounds.addBoundsArea(child._bounds, child.filterArea); + } + else + { + this._bounds.addBounds(child._bounds); + } + } + + this._lastBoundsID = this._boundsID; + }; + + /** + * Recalculates the bounds of the object. Override this to + * calculate the bounds of the specific object (not including children). + * + * @protected + */ + Container.prototype._calculateBounds = function _calculateBounds () + { + // FILL IN// + }; + + /** + * Renders the object using the WebGL renderer + * + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.render = function render (renderer) + { + // if the object is not visible or the alpha is 0 then no need to render this element + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + // do a quick check to see if this element has a mask or a filter. + if (this._mask || (this.filters && this.filters.length)) + { + this.renderAdvanced(renderer); + } + else + { + this._render(renderer); + + // simple render children! + for (var i = 0, j = this.children.length; i < j; ++i) + { + this.children[i].render(renderer); + } + } + }; + + /** + * Render the object using the WebGL renderer and advanced features. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.renderAdvanced = function renderAdvanced (renderer) + { + renderer.batch.flush(); + + var filters = this.filters; + var mask = this._mask; + + // push filter first as we need to ensure the stencil buffer is correct for any masking + if (filters) + { + if (!this._enabledFilters) + { + this._enabledFilters = []; + } + + this._enabledFilters.length = 0; + + for (var i = 0; i < filters.length; i++) + { + if (filters[i].enabled) + { + this._enabledFilters.push(filters[i]); + } + } + + if (this._enabledFilters.length) + { + renderer.filter.push(this, this._enabledFilters); + } + } + + if (mask) + { + renderer.mask.push(this, this._mask); + } + + // add this object to the batch, only rendered if it has a texture. + this._render(renderer); + + // now loop through the children and make sure they get rendered + for (var i$1 = 0, j = this.children.length; i$1 < j; i$1++) + { + this.children[i$1].render(renderer); + } + + renderer.batch.flush(); + + if (mask) + { + renderer.mask.pop(this, this._mask); + } + + if (filters && this._enabledFilters && this._enabledFilters.length) + { + renderer.filter.pop(); + } + }; + + /** + * To be overridden by the subclasses. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype._render = function _render (renderer) // eslint-disable-line no-unused-vars + { + // this is where content itself gets rendered... + }; + + /** + * Removes all internal references and listeners as well as removes children from the display list. + * Do not use a Container after calling `destroy`. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Container.prototype.destroy = function destroy (options) + { + DisplayObject.prototype.destroy.call(this); + + this.sortDirty = false; + + var destroyChildren = typeof options === 'boolean' ? options : options && options.children; + + var oldChildren = this.removeChildren(0, this.children.length); + + if (destroyChildren) + { + for (var i = 0; i < oldChildren.length; ++i) + { + oldChildren[i].destroy(options); + } + } + }; + + /** + * The width of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.scale.x * this.getLocalBounds().width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var width = this.getLocalBounds().width; + + if (width !== 0) + { + this.scale.x = value / width; + } + else + { + this.scale.x = 1; + } + + this._width = value; + }; + + /** + * The height of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.scale.y * this.getLocalBounds().height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var height = this.getLocalBounds().height; + + if (height !== 0) + { + this.scale.y = value / height; + } + else + { + this.scale.y = 1; + } + + this._height = value; + }; + + Object.defineProperties( Container.prototype, prototypeAccessors ); + + return Container; +}(DisplayObject)); + +// performance increase to avoid using call.. (10x faster) +Container.prototype.containerUpdateTransform = Container.prototype.updateTransform; + +/*! + * @pixi/accessibility - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/accessibility is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default property values of accessible objects + * used by {@link PIXI.accessibility.AccessibilityManager}. + * + * @private + * @function accessibleTarget + * @memberof PIXI.accessibility + * @type {Object} + * @example + * function MyObject() {} + * + * Object.assign( + * MyObject.prototype, + * PIXI.accessibility.accessibleTarget + * ); + */ +var accessibleTarget = { + /** + * Flag for if the object is accessible. If true AccessibilityManager will overlay a + * shadow div with attributes set + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + accessible: false, + + /** + * Sets the title attribute of the shadow div + * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]' + * + * @member {?string} + * @memberof PIXI.DisplayObject# + */ + accessibleTitle: null, + + /** + * Sets the aria-label attribute of the shadow div + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + accessibleHint: null, + + /** + * @member {number} + * @memberof PIXI.DisplayObject# + * @private + * @todo Needs docs. + */ + tabIndex: 0, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleActive: false, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleDiv: false, +}; + +// add some extra variables to the container.. +DisplayObject.mixin(accessibleTarget); + +var KEY_CODE_TAB = 9; + +var DIV_TOUCH_SIZE = 100; +var DIV_TOUCH_POS_X = 0; +var DIV_TOUCH_POS_Y = 0; +var DIV_TOUCH_ZINDEX = 2; + +var DIV_HOOK_SIZE = 1; +var DIV_HOOK_POS_X = -1000; +var DIV_HOOK_POS_Y = -1000; +var DIV_HOOK_ZINDEX = 2; + +/** + * The Accessibility manager recreates the ability to tab and have content read by screen readers. + * This is very important as it can possibly help people with disabilities access PixiJS content. + * + * A DisplayObject can be made accessible just like it can be made interactive. This manager will map the + * events as if the mouse was being used, minimizing the effort required to implement. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.accessibility` + * + * @class + * @memberof PIXI.accessibility + */ +var AccessibilityManager = function AccessibilityManager(renderer) +{ + /** + * @type {?HTMLElement} + * @private + */ + this._hookDiv = null; + if (isMobile.tablet || isMobile.phone) + { + this.createTouchHook(); + } + + // first we create a div that will sit over the PixiJS element. This is where the div overlays will go. + var div = document.createElement('div'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.position = 'absolute'; + div.style.top = DIV_TOUCH_POS_X + "px"; + div.style.left = DIV_TOUCH_POS_Y + "px"; + div.style.zIndex = DIV_TOUCH_ZINDEX; + + /** + * This is the dom element that will sit over the PixiJS element. This is where the div overlays will go. + * + * @type {HTMLElement} + * @private + */ + this.div = div; + + /** + * A simple pool for storing divs. + * + * @type {*} + * @private + */ + this.pool = []; + + /** + * This is a tick used to check if an object is no longer being rendered. + * + * @type {Number} + * @private + */ + this.renderId = 0; + + /** + * Setting this to true will visually show the divs. + * + * @type {boolean} + */ + this.debug = false; + + /** + * The renderer this accessibility manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * The array of currently active accessible items. + * + * @member {Array<*>} + * @private + */ + this.children = []; + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onKeyDown = this._onKeyDown.bind(this); + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onMouseMove = this._onMouseMove.bind(this); + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isActive = false; + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isMobileAccessibility = false; + + // let listen for tab.. once pressed we can fire up and show the accessibility layer + window.addEventListener('keydown', this._onKeyDown, false); +}; + +/** + * Creates the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.createTouchHook = function createTouchHook () +{ + var this$1 = this; + + var hookDiv = document.createElement('button'); + + hookDiv.style.width = DIV_HOOK_SIZE + "px"; + hookDiv.style.height = DIV_HOOK_SIZE + "px"; + hookDiv.style.position = 'absolute'; + hookDiv.style.top = DIV_HOOK_POS_X + "px"; + hookDiv.style.left = DIV_HOOK_POS_Y + "px"; + hookDiv.style.zIndex = DIV_HOOK_ZINDEX; + hookDiv.style.backgroundColor = '#FF0000'; + hookDiv.title = 'HOOK DIV'; + + hookDiv.addEventListener('focus', function () { + this$1.isMobileAccessibility = true; + this$1.activate(); + this$1.destroyTouchHook(); + }); + + document.body.appendChild(hookDiv); + this._hookDiv = hookDiv; +}; + +/** + * Destroys the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.destroyTouchHook = function destroyTouchHook () +{ + if (!this._hookDiv) + { + return; + } + document.body.removeChild(this._hookDiv); + this._hookDiv = null; +}; + +/** + * Activating will cause the Accessibility layer to be shown. + * This is called when a user presses the tab key. + * + * @private + */ +AccessibilityManager.prototype.activate = function activate () +{ + if (this.isActive) + { + return; + } + + this.isActive = true; + + window.document.addEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown, false); + + this.renderer.on('postrender', this.update, this); + + if (this.renderer.view.parentNode) + { + this.renderer.view.parentNode.appendChild(this.div); + } +}; + +/** + * Deactivating will cause the Accessibility layer to be hidden. + * This is called when a user moves the mouse. + * + * @private + */ +AccessibilityManager.prototype.deactivate = function deactivate () +{ + if (!this.isActive || this.isMobileAccessibility) + { + return; + } + + this.isActive = false; + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.addEventListener('keydown', this._onKeyDown, false); + + this.renderer.off('postrender', this.update); + + if (this.div.parentNode) + { + this.div.parentNode.removeChild(this.div); + } +}; + +/** + * This recursive function will run through the scene graph and add any new accessible objects to the DOM layer. + * + * @private + * @param {PIXI.Container} displayObject - The DisplayObject to check. + */ +AccessibilityManager.prototype.updateAccessibleObjects = function updateAccessibleObjects (displayObject) +{ + if (!displayObject.visible) + { + return; + } + + if (displayObject.accessible && displayObject.interactive) + { + if (!displayObject._accessibleActive) + { + this.addChild(displayObject); + } + + displayObject.renderId = this.renderId; + } + + var children = displayObject.children; + + for (var i = 0; i < children.length; i++) + { + this.updateAccessibleObjects(children[i]); + } +}; + +/** + * Before each render this function will ensure that all divs are mapped correctly to their DisplayObjects. + * + * @private + */ +AccessibilityManager.prototype.update = function update () +{ + if (!this.renderer.renderingToScreen) + { + return; + } + + // update children... + this.updateAccessibleObjects(this.renderer._lastObjectRendered); + + var rect = this.renderer.view.getBoundingClientRect(); + var sx = rect.width / this.renderer.width; + var sy = rect.height / this.renderer.height; + + var div = this.div; + + div.style.left = (rect.left) + "px"; + div.style.top = (rect.top) + "px"; + div.style.width = (this.renderer.width) + "px"; + div.style.height = (this.renderer.height) + "px"; + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (child.renderId !== this.renderId) + { + child._accessibleActive = false; + + removeItems(this.children, i, 1); + this.div.removeChild(child._accessibleDiv); + this.pool.push(child._accessibleDiv); + child._accessibleDiv = null; + + i--; + + if (this.children.length === 0) + { + this.deactivate(); + } + } + else + { + // map div to display.. + div = child._accessibleDiv; + var hitArea = child.hitArea; + var wt = child.worldTransform; + + if (child.hitArea) + { + div.style.left = ((wt.tx + (hitArea.x * wt.a)) * sx) + "px"; + div.style.top = ((wt.ty + (hitArea.y * wt.d)) * sy) + "px"; + + div.style.width = (hitArea.width * wt.a * sx) + "px"; + div.style.height = (hitArea.height * wt.d * sy) + "px"; + } + else + { + hitArea = child.getBounds(); + + this.capHitArea(hitArea); + + div.style.left = (hitArea.x * sx) + "px"; + div.style.top = (hitArea.y * sy) + "px"; + + div.style.width = (hitArea.width * sx) + "px"; + div.style.height = (hitArea.height * sy) + "px"; + + // update button titles and hints if they exist and they've changed + if (div.title !== child.accessibleTitle && child.accessibleTitle !== null) + { + div.title = child.accessibleTitle; + } + if (div.getAttribute('aria-label') !== child.accessibleHint + && child.accessibleHint !== null) + { + div.setAttribute('aria-label', child.accessibleHint); + } + } + } + } + + // increment the render id.. + this.renderId++; +}; + +/** + * Adjust the hit area based on the bounds of a display object + * + * @param {PIXI.Rectangle} hitArea - Bounds of the child + */ +AccessibilityManager.prototype.capHitArea = function capHitArea (hitArea) +{ + if (hitArea.x < 0) + { + hitArea.width += hitArea.x; + hitArea.x = 0; + } + + if (hitArea.y < 0) + { + hitArea.height += hitArea.y; + hitArea.y = 0; + } + + if (hitArea.x + hitArea.width > this.renderer.width) + { + hitArea.width = this.renderer.width - hitArea.x; + } + + if (hitArea.y + hitArea.height > this.renderer.height) + { + hitArea.height = this.renderer.height - hitArea.y; + } +}; + +/** + * Adds a DisplayObject to the accessibility manager + * + * @private + * @param {PIXI.DisplayObject} displayObject - The child to make accessible. + */ +AccessibilityManager.prototype.addChild = function addChild (displayObject) +{ + //this.activate(); + + var div = this.pool.pop(); + + if (!div) + { + div = document.createElement('button'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.backgroundColor = this.debug ? 'rgba(255,0,0,0.5)' : 'transparent'; + div.style.position = 'absolute'; + div.style.zIndex = DIV_TOUCH_ZINDEX; + div.style.borderStyle = 'none'; + + // ARIA attributes ensure that button title and hint updates are announced properly + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + // Chrome doesn't need aria-live to work as intended; in fact it just gets more confused. + div.setAttribute('aria-live', 'off'); + } + else + { + div.setAttribute('aria-live', 'polite'); + } + + if (navigator.userAgent.match(/rv:.*Gecko\//)) + { + // FireFox needs this to announce only the new button name + div.setAttribute('aria-relevant', 'additions'); + } + else + { + // required by IE, other browsers don't much care + div.setAttribute('aria-relevant', 'text'); + } + + div.addEventListener('click', this._onClick.bind(this)); + div.addEventListener('focus', this._onFocus.bind(this)); + div.addEventListener('focusout', this._onFocusOut.bind(this)); + } + + if (displayObject.accessibleTitle && displayObject.accessibleTitle !== null) + { + div.title = displayObject.accessibleTitle; + } + else if (!displayObject.accessibleHint + || displayObject.accessibleHint === null) + { + div.title = "displayObject " + (displayObject.tabIndex); + } + + if (displayObject.accessibleHint + && displayObject.accessibleHint !== null) + { + div.setAttribute('aria-label', displayObject.accessibleHint); + } + + // + + displayObject._accessibleActive = true; + displayObject._accessibleDiv = div; + div.displayObject = displayObject; + + this.children.push(displayObject); + this.div.appendChild(displayObject._accessibleDiv); + displayObject._accessibleDiv.tabIndex = displayObject.tabIndex; +}; + +/** + * Maps the div button press to pixi's InteractionManager (click) + * + * @private + * @param {MouseEvent} e - The click event. + */ +AccessibilityManager.prototype._onClick = function _onClick (e) +{ + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'click', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'pointertap', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'tap', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseover) + * + * @private + * @param {FocusEvent} e - The focus event. + */ +AccessibilityManager.prototype._onFocus = function _onFocus (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'assertive'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseover', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseout) + * + * @private + * @param {FocusEvent} e - The focusout event. + */ +AccessibilityManager.prototype._onFocusOut = function _onFocusOut (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'polite'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseout', interactionManager.eventData); +}; + +/** + * Is called when a key is pressed + * + * @private + * @param {KeyboardEvent} e - The keydown event. + */ +AccessibilityManager.prototype._onKeyDown = function _onKeyDown (e) +{ + if (e.keyCode !== KEY_CODE_TAB) + { + return; + } + + this.activate(); +}; + +/** + * Is called when the mouse moves across the renderer element + * + * @private + * @param {MouseEvent} e - The mouse event. + */ +AccessibilityManager.prototype._onMouseMove = function _onMouseMove (e) +{ + if (e.movementX === 0 && e.movementY === 0) + { + return; + } + + this.deactivate(); +}; + +/** + * Destroys the accessibility manager + * + */ +AccessibilityManager.prototype.destroy = function destroy () +{ + this.destroyTouchHook(); + this.div = null; + + for (var i = 0; i < this.children.length; i++) + { + this.children[i].div = null; + } + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown); + + this.pool = null; + this.children = null; + this.renderer = null; +}; + +/*! + * @pixi/runner - v5.1.1 + * Compiled Fri, 02 Aug 2019 23:20:23 UTC + * + * @pixi/runner is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * A Runner is a highly performant and simple alternative to signals. Best used in situations + * where events are dispatched to many objects at high frequency (say every frame!) + * + * + * like a signal.. + * ``` + * const myObject = { + * loaded: new PIXI.Runner('loaded') + * } + * + * const listener = { + * loaded: function(){ + * // thin + * } + * } + * + * myObject.update.add(listener); + * + * myObject.loaded.emit(); + * ``` + * + * Or for handling calling the same function on many items + * ``` + * const myGame = { + * update: new PIXI.Runner('update') + * } + * + * const gameObject = { + * update: function(time){ + * // update my gamey state + * } + * } + * + * myGame.update.add(gameObject1); + * + * myGame.update.emit(time); + * ``` + * @class + * @memberof PIXI + */ +var Runner = function Runner(name) +{ + this.items = []; + this._name = name; + this._aliasCount = 0; +}; + +var prototypeAccessors$3 = { empty: { configurable: true },name: { configurable: true } }; + +/** + * Dispatch/Broadcast Runner to all listeners added to the queue. + * @param {...any} params - optional parameters to pass to each listener + */ +Runner.prototype.emit = function emit (a0, a1, a2, a3, a4, a5, a6, a7) +{ + if (arguments.length > 8) + { + throw new Error('max arguments reached'); + } + + var ref = this; + var name = ref.name; + var items = ref.items; + + this._aliasCount++; + + for (var i = 0, len = items.length; i < len; i++) + { + items[i][name](a0, a1, a2, a3, a4, a5, a6, a7); + } + + if (items === this.items) + { + this._aliasCount--; + } + + return this; +}; + +Runner.prototype.ensureNonAliasedItems = function ensureNonAliasedItems () +{ + if (this._aliasCount > 0 && this.items.length > 1) + { + this._aliasCount = 0; + this.items = this.items.slice(0); + } +}; + +/** + * Add a listener to the Runner + * + * Runners do not need to have scope or functions passed to them. + * All that is required is to pass the listening object and ensure that it has contains a function that has the same name + * as the name provided to the Runner when it was created. + * + * Eg A listener passed to this Runner will require a 'complete' function. + * + * ``` + * const complete = new PIXI.Runner('complete'); + * ``` + * + * The scope used will be the object itself. + * + * @param {any} item - The object that will be listening. + */ +Runner.prototype.add = function add (item) +{ + if (item[this._name]) + { + this.ensureNonAliasedItems(); + this.remove(item); + this.items.push(item); + } + + return this; +}; + +/** + * Remove a single listener from the dispatch queue. + * @param {any} item - The listenr that you would like to remove. + */ +Runner.prototype.remove = function remove (item) +{ + var index = this.items.indexOf(item); + + if (index !== -1) + { + this.ensureNonAliasedItems(); + this.items.splice(index, 1); + } + + return this; +}; + +/** + * Check to see if the listener is already in the Runner + * @param {any} item - The listener that you would like to check. + */ +Runner.prototype.contains = function contains (item) +{ + return this.items.indexOf(item) !== -1; +}; + +/** + * Remove all listeners from the Runner + */ +Runner.prototype.removeAll = function removeAll () +{ + this.ensureNonAliasedItems(); + this.items.length = 0; + + return this; +}; + +/** + * Remove all references, don't use after this. + */ +Runner.prototype.destroy = function destroy () +{ + this.removeAll(); + this.items = null; + this._name = null; +}; + +/** + * `true` if there are no this Runner contains no listeners + * + * @member {boolean} + * @readonly + */ +prototypeAccessors$3.empty.get = function () +{ + return this.items.length === 0; +}; + +/** + * The name of the runner. + * + * @member {string} + * @readonly + */ +prototypeAccessors$3.name.get = function () +{ + return this._name; +}; + +Object.defineProperties( Runner.prototype, prototypeAccessors$3 ); + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method dispatch + * @see PIXI.Runner#emit + */ +Runner.prototype.dispatch = Runner.prototype.emit; + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method run + * @see PIXI.Runner#emit + */ +Runner.prototype.run = Runner.prototype.emit; + +/*! + * @pixi/ticker - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/ticker is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Target frames per millisecond. + * + * @static + * @name TARGET_FPMS + * @memberof PIXI.settings + * @type {number} + * @default 0.06 + */ +settings.TARGET_FPMS = 0.06; + +/** + * Represents the update priorities used by internal PIXI classes when registered with + * the {@link PIXI.Ticker} object. Higher priority items are updated first and lower + * priority items, such as render, should go later. + * + * @static + * @constant + * @name UPDATE_PRIORITY + * @memberof PIXI + * @type {object} + * @property {number} INTERACTION=50 Highest priority, used for {@link PIXI.interaction.InteractionManager} + * @property {number} HIGH=25 High priority updating, {@link PIXI.VideoBaseTexture} and {@link PIXI.AnimatedSprite} + * @property {number} NORMAL=0 Default priority for ticker events, see {@link PIXI.Ticker#add}. + * @property {number} LOW=-25 Low priority used for {@link PIXI.Application} rendering. + * @property {number} UTILITY=-50 Lowest priority used for {@link PIXI.prepare.BasePrepare} utility. + */ +var UPDATE_PRIORITY = { + INTERACTION: 50, + HIGH: 25, + NORMAL: 0, + LOW: -25, + UTILITY: -50, +}; + +/** + * Internal class for handling the priority sorting of ticker handlers. + * + * @private + * @class + * @memberof PIXI + */ +var TickerListener = function TickerListener(fn, context, priority, once) +{ + if ( context === void 0 ) context = null; + if ( priority === void 0 ) priority = 0; + if ( once === void 0 ) once = false; + + /** + * The handler function to execute. + * @private + * @member {Function} + */ + this.fn = fn; + + /** + * The calling to execute. + * @private + * @member {*} + */ + this.context = context; + + /** + * The current priority. + * @private + * @member {number} + */ + this.priority = priority; + + /** + * If this should only execute once. + * @private + * @member {boolean} + */ + this.once = once; + + /** + * The next item in chain. + * @private + * @member {TickerListener} + */ + this.next = null; + + /** + * The previous item in chain. + * @private + * @member {TickerListener} + */ + this.previous = null; + + /** + * `true` if this listener has been destroyed already. + * @member {boolean} + * @private + */ + this._destroyed = false; +}; + +/** + * Simple compare function to figure out if a function and context match. + * @private + * @param {Function} fn - The listener function to be added for one update + * @param {Function} context - The listener context + * @return {boolean} `true` if the listener match the arguments + */ +TickerListener.prototype.match = function match (fn, context) +{ + context = context || null; + + return this.fn === fn && this.context === context; +}; + +/** + * Emit by calling the current function. + * @private + * @param {number} deltaTime - time since the last emit. + * @return {TickerListener} Next ticker + */ +TickerListener.prototype.emit = function emit (deltaTime) +{ + if (this.fn) + { + if (this.context) + { + this.fn.call(this.context, deltaTime); + } + else + { + this.fn(deltaTime); + } + } + + var redirect = this.next; + + if (this.once) + { + this.destroy(true); + } + + // Soft-destroying should remove + // the next reference + if (this._destroyed) + { + this.next = null; + } + + return redirect; +}; + +/** + * Connect to the list. + * @private + * @param {TickerListener} previous - Input node, previous listener + */ +TickerListener.prototype.connect = function connect (previous) +{ + this.previous = previous; + if (previous.next) + { + previous.next.previous = this; + } + this.next = previous.next; + previous.next = this; +}; + +/** + * Destroy and don't use after this. + * @private + * @param {boolean} [hard = false] `true` to remove the `next` reference, this + * is considered a hard destroy. Soft destroy maintains the next reference. + * @return {TickerListener} The listener to redirect while emitting or removing. + */ +TickerListener.prototype.destroy = function destroy (hard) +{ + if ( hard === void 0 ) hard = false; + + this._destroyed = true; + this.fn = null; + this.context = null; + + // Disconnect, hook up next and previous + if (this.previous) + { + this.previous.next = this.next; + } + + if (this.next) + { + this.next.previous = this.previous; + } + + // Redirect to the next item + var redirect = this.next; + + // Remove references + this.next = hard ? null : redirect; + this.previous = null; + + return redirect; +}; + +/** + * A Ticker class that runs an update loop that other objects listen to. + * + * This class is composed around listeners meant for execution on the next requested animation frame. + * Animation frames are requested only when necessary, e.g. When the ticker is started and the emitter has listeners. + * + * @class + * @memberof PIXI + */ +var Ticker = function Ticker() +{ + var this$1 = this; + + /** + * The first listener. All new listeners added are chained on this. + * @private + * @type {TickerListener} + */ + this._head = new TickerListener(null, null, Infinity); + + /** + * Internal current frame request ID + * @type {?number} + * @private + */ + this._requestId = null; + + /** + * Internal value managed by minFPS property setter and getter. + * This is the maximum allowed milliseconds between updates. + * @type {number} + * @private + */ + this._maxElapsedMS = 100; + + /** + * Internal value managed by maxFPS property setter and getter. + * This is the minimum allowed milliseconds between updates. + * @private + */ + this._minElapsedMS = 0; + + /** + * Whether or not this ticker should invoke the method + * {@link PIXI.Ticker#start} automatically + * when a listener is added. + * + * @member {boolean} + * @default false + */ + this.autoStart = false; + + /** + * Scalar time value from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * + * @member {number} + * @default 1 + */ + this.deltaTime = 1; + + /** + * Scaler time elapsed in milliseconds from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.deltaMS = 1 / settings.TARGET_FPMS; + + /** + * Time elapsed in milliseconds from last frame to this frame. + * Opposed to what the scalar {@link PIXI.Ticker#deltaTime} + * is based, this value is neither capped nor scaled. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.elapsedMS = 1 / settings.TARGET_FPMS; + + /** + * The last time {@link PIXI.Ticker#update} was invoked. + * This value is also reset internally outside of invoking + * update, but only when a new animation frame is requested. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * + * @member {number} + * @default -1 + */ + this.lastTime = -1; + + /** + * Factor of current {@link PIXI.Ticker#deltaTime}. + * @example + * // Scales ticker.deltaTime to what would be + * // the equivalent of approximately 120 FPS + * ticker.speed = 2; + * + * @member {number} + * @default 1 + */ + this.speed = 1; + + /** + * Whether or not this ticker has been started. + * `true` if {@link PIXI.Ticker#start} has been called. + * `false` if {@link PIXI.Ticker#stop} has been called. + * While `false`, this value may change to `true` in the + * event of {@link PIXI.Ticker#autoStart} being `true` + * and a listener is added. + * + * @member {boolean} + * @default false + */ + this.started = false; + + /** + * If enabled, deleting is disabled. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + + /** + * The last time keyframe was executed. + * Maintains a relatively fixed interval with the previous value. + * @member {number} + * @default -1 + * @private + */ + this._lastFrame = -1; + + /** + * Internal tick method bound to ticker instance. + * This is because in early 2015, Function.bind + * is still 60% slower in high performance scenarios. + * Also separating frame requests from update method + * so listeners may be called at any time and with + * any animation API, just invoke ticker.update(time). + * + * @private + * @param {number} time - Time since last tick. + */ + this._tick = function (time) { + this$1._requestId = null; + + if (this$1.started) + { + // Invoke listeners now + this$1.update(time); + // Listener side effects may have modified ticker state. + if (this$1.started && this$1._requestId === null && this$1._head.next) + { + this$1._requestId = requestAnimationFrame(this$1._tick); + } + } + }; +}; + +var prototypeAccessors$4 = { FPS: { configurable: true },minFPS: { configurable: true },maxFPS: { configurable: true } }; +var staticAccessors$2 = { shared: { configurable: true },system: { configurable: true } }; + +/** + * Conditionally requests a new animation frame. + * If a frame has not already been requested, and if the internal + * emitter has listeners, a new frame is requested. + * + * @private + */ +Ticker.prototype._requestIfNeeded = function _requestIfNeeded () +{ + if (this._requestId === null && this._head.next) + { + // ensure callbacks get correct delta + this.lastTime = performance.now(); + this._lastFrame = this.lastTime; + this._requestId = requestAnimationFrame(this._tick); + } +}; + +/** + * Conditionally cancels a pending animation frame. + * + * @private + */ +Ticker.prototype._cancelIfNeeded = function _cancelIfNeeded () +{ + if (this._requestId !== null) + { + cancelAnimationFrame(this._requestId); + this._requestId = null; + } +}; + +/** + * Conditionally requests a new animation frame. + * If the ticker has been started it checks if a frame has not already + * been requested, and if the internal emitter has listeners. If these + * conditions are met, a new frame is requested. If the ticker has not + * been started, but autoStart is `true`, then the ticker starts now, + * and continues with the previous conditions to request a new frame. + * + * @private + */ +Ticker.prototype._startIfPossible = function _startIfPossible () +{ + if (this.started) + { + this._requestIfNeeded(); + } + else if (this.autoStart) + { + this.start(); + } +}; + +/** + * Register a handler for tick events. Calls continuously unless + * it is removed or the ticker is stopped. + * + * @param {Function} fn - The listener function to be added for updates + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.add = function add (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority)); +}; + +/** + * Add a handler for the tick event which is only execute once. + * + * @param {Function} fn - The listener function to be added for one update + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.addOnce = function addOnce (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority, true)); +}; + +/** + * Internally adds the event handler so that it can be sorted by priority. + * Priority allows certain handler (user, AnimatedSprite, Interaction) to be run + * before the rendering. + * + * @private + * @param {TickerListener} listener - Current listener being added. + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype._addListener = function _addListener (listener) +{ + // For attaching to head + var current = this._head.next; + var previous = this._head; + + // Add the first item + if (!current) + { + listener.connect(previous); + } + else + { + // Go from highest to lowest priority + while (current) + { + if (listener.priority > current.priority) + { + listener.connect(previous); + break; + } + previous = current; + current = current.next; + } + + // Not yet connected + if (!listener.previous) + { + listener.connect(previous); + } + } + + this._startIfPossible(); + + return this; +}; + +/** + * Removes any handlers matching the function and context parameters. + * If no handlers are left after removing, then it cancels the animation frame. + * + * @param {Function} fn - The listener function to be removed + * @param {*} [context] - The listener context to be removed + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.remove = function remove (fn, context) +{ + var listener = this._head.next; + + while (listener) + { + // We found a match, lets remove it + // no break to delete all possible matches + // incase a listener was added 2+ times + if (listener.match(fn, context)) + { + listener = listener.destroy(); + } + else + { + listener = listener.next; + } + } + + if (!this._head.next) + { + this._cancelIfNeeded(); + } + + return this; +}; + +/** + * Starts the ticker. If the ticker has listeners + * a new animation frame is requested at this point. + */ +Ticker.prototype.start = function start () +{ + if (!this.started) + { + this.started = true; + this._requestIfNeeded(); + } +}; + +/** + * Stops the ticker. If the ticker has requested + * an animation frame it is canceled at this point. + */ +Ticker.prototype.stop = function stop () +{ + if (this.started) + { + this.started = false; + this._cancelIfNeeded(); + } +}; + +/** + * Destroy the ticker and don't use after this. Calling + * this method removes all references to internal events. + */ +Ticker.prototype.destroy = function destroy () +{ + if (!this._protected) + { + this.stop(); + + var listener = this._head.next; + + while (listener) + { + listener = listener.destroy(true); + } + + this._head.destroy(); + this._head = null; + } +}; + +/** + * Triggers an update. An update entails setting the + * current {@link PIXI.Ticker#elapsedMS}, + * the current {@link PIXI.Ticker#deltaTime}, + * invoking all listeners with current deltaTime, + * and then finally setting {@link PIXI.Ticker#lastTime} + * with the value of currentTime that was provided. + * This method will be called automatically by animation + * frame callbacks if the ticker instance has been started + * and listeners are added. + * + * @param {number} [currentTime=performance.now()] - the current time of execution + */ +Ticker.prototype.update = function update (currentTime) +{ + if ( currentTime === void 0 ) currentTime = performance.now(); + + var elapsedMS; + + // If the difference in time is zero or negative, we ignore most of the work done here. + // If there is no valid difference, then should be no reason to let anyone know about it. + // A zero delta, is exactly that, nothing should update. + // + // The difference in time can be negative, and no this does not mean time traveling. + // This can be the result of a race condition between when an animation frame is requested + // on the current JavaScript engine event loop, and when the ticker's start method is invoked + // (which invokes the internal _requestIfNeeded method). If a frame is requested before + // _requestIfNeeded is invoked, then the callback for the animation frame the ticker requests, + // can receive a time argument that can be less than the lastTime value that was set within + // _requestIfNeeded. This difference is in microseconds, but this is enough to cause problems. + // + // This check covers this browser engine timing issue, as well as if consumers pass an invalid + // currentTime value. This may happen if consumers opt-out of the autoStart, and update themselves. + + if (currentTime > this.lastTime) + { + // Save uncapped elapsedMS for measurement + elapsedMS = this.elapsedMS = currentTime - this.lastTime; + + // cap the milliseconds elapsed used for deltaTime + if (elapsedMS > this._maxElapsedMS) + { + elapsedMS = this._maxElapsedMS; + } + + elapsedMS *= this.speed; + + // If not enough time has passed, exit the function. + // Get ready for next frame by setting _lastFrame, but based on _minElapsedMS + // adjustment to ensure a relatively stable interval. + if (this._minElapsedMS) + { + var delta = currentTime - this._lastFrame | 0; + + if (delta < this._minElapsedMS) + { + return; + } + + this._lastFrame = currentTime - (delta % this._minElapsedMS); + } + + this.deltaMS = elapsedMS; + this.deltaTime = this.deltaMS * settings.TARGET_FPMS; + + // Cache a local reference, in-case ticker is destroyed + // during the emit, we can still check for head.next + var head = this._head; + + // Invoke listeners added to internal emitter + var listener = head.next; + + while (listener) + { + listener = listener.emit(this.deltaTime); + } + + if (!head.next) + { + this._cancelIfNeeded(); + } + } + else + { + this.deltaTime = this.deltaMS = this.elapsedMS = 0; + } + + this.lastTime = currentTime; +}; + +/** + * The frames per second at which this ticker is running. + * The default is approximately 60 in most modern browsers. + * **Note:** This does not factor in the value of + * {@link PIXI.Ticker#speed}, which is specific + * to scaling {@link PIXI.Ticker#deltaTime}. + * + * @member {number} + * @readonly + */ +prototypeAccessors$4.FPS.get = function () +{ + return 1000 / this.elapsedMS; +}; + +/** + * Manages the maximum amount of milliseconds allowed to + * elapse between invoking {@link PIXI.Ticker#update}. + * This value is used to cap {@link PIXI.Ticker#deltaTime}, + * but does not effect the measured value of {@link PIXI.Ticker#FPS}. + * When setting this property it is clamped to a value between + * `0` and `PIXI.settings.TARGET_FPMS * 1000`. + * + * @member {number} + * @default 10 + */ +prototypeAccessors$4.minFPS.get = function () +{ + return 1000 / this._maxElapsedMS; +}; + +prototypeAccessors$4.minFPS.set = function (fps) // eslint-disable-line require-jsdoc +{ + // Minimum must be below the maxFPS + var minFPS = Math.min(this.maxFPS, fps); + + // Must be at least 0, but below 1 / settings.TARGET_FPMS + var minFPMS = Math.min(Math.max(0, minFPS) / 1000, settings.TARGET_FPMS); + + this._maxElapsedMS = 1 / minFPMS; +}; + +/** + * Manages the minimum amount of milliseconds required to + * elapse between invoking {@link PIXI.Ticker#update}. + * This will effect the measured value of {@link PIXI.Ticker#FPS}. + * If it is set to `0`, then there is no limit; PixiJS will render as many frames as it can. + * Otherwise it will be at least `minFPS` + * + * @member {number} + * @default 0 + */ +prototypeAccessors$4.maxFPS.get = function () +{ + if (this._minElapsedMS) + { + return Math.round(1000 / this._minElapsedMS); + } + + return 0; +}; + +prototypeAccessors$4.maxFPS.set = function (fps) +{ + if (fps === 0) + { + this._minElapsedMS = 0; + } + else + { + // Max must be at least the minFPS + var maxFPS = Math.max(this.minFPS, fps); + + this._minElapsedMS = 1 / (maxFPS / 1000); + } +}; + +/** + * The shared ticker instance used by {@link PIXI.AnimatedSprite} and by + * {@link PIXI.VideoResource} to update animation frames / video textures. + * + * It may also be used by {@link PIXI.Application} if created with the `sharedTicker` option property set to true. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * Please follow the examples for usage, including how to opt-out of auto-starting the shared ticker. + * + * @example + * let ticker = PIXI.Ticker.shared; + * // Set this to prevent starting this ticker when listeners are added. + * // By default this is true only for the PIXI.Ticker.shared instance. + * ticker.autoStart = false; + * // FYI, call this to ensure the ticker is stopped. It should be stopped + * // if you have not attempted to render anything yet. + * ticker.stop(); + * // Call this when you are ready for a running shared ticker. + * ticker.start(); + * + * @example + * // You may use the shared ticker to render... + * let renderer = PIXI.autoDetectRenderer(); + * let stage = new PIXI.Container(); + * document.body.appendChild(renderer.view); + * ticker.add(function (time) { + * renderer.render(stage); + * }); + * + * @example + * // Or you can just update it manually. + * ticker.autoStart = false; + * ticker.stop(); + * function animate(time) { + * ticker.update(time); + * renderer.render(stage); + * requestAnimationFrame(animate); + * } + * animate(performance.now()); + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.shared.get = function () +{ + if (!Ticker._shared) + { + var shared = Ticker._shared = new Ticker(); + + shared.autoStart = true; + shared._protected = true; + } + + return Ticker._shared; +}; + +/** + * The system ticker instance used by {@link PIXI.interaction.InteractionManager} and by + * {@link PIXI.BasePrepare} for core timing functionality that shouldn't usually need to be paused, + * unlike the `shared` ticker which drives visual animations and rendering which may want to be paused. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.system.get = function () +{ + if (!Ticker._system) + { + var system = Ticker._system = new Ticker(); + + system.autoStart = true; + system._protected = true; + } + + return Ticker._system; +}; + +Object.defineProperties( Ticker.prototype, prototypeAccessors$4 ); +Object.defineProperties( Ticker, staticAccessors$2 ); + +/** + * Middleware for for Application Ticker. + * + * @example + * import {TickerPlugin} from '@pixi/ticker'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(TickerPlugin); + * + * @class + * @memberof PIXI + */ +var TickerPlugin = function TickerPlugin () {}; + +TickerPlugin.init = function init (options) +{ + var this$1 = this; + + // Set default + options = Object.assign({ + autoStart: true, + sharedTicker: false, + }, options); + + // Create ticker setter + Object.defineProperty(this, 'ticker', + { + set: function set(ticker) + { + if (this._ticker) + { + this._ticker.remove(this.render, this); + } + this._ticker = ticker; + if (ticker) + { + ticker.add(this.render, this, UPDATE_PRIORITY.LOW); + } + }, + get: function get() + { + return this._ticker; + }, + }); + + /** + * Convenience method for stopping the render. + * + * @method PIXI.Application#stop + */ + this.stop = function () { + this$1._ticker.stop(); + }; + + /** + * Convenience method for starting the render. + * + * @method PIXI.Application#start + */ + this.start = function () { + this$1._ticker.start(); + }; + + /** + * Internal reference to the ticker. + * + * @type {PIXI.Ticker} + * @name _ticker + * @memberof PIXI.Application# + * @private + */ + this._ticker = null; + + /** + * Ticker for doing render updates. + * + * @type {PIXI.Ticker} + * @name ticker + * @memberof PIXI.Application# + * @default PIXI.Ticker.shared + */ + this.ticker = options.sharedTicker ? Ticker.shared : new Ticker(); + + // Start the rendering + if (options.autoStart) + { + this.start(); + } +}; + +/** + * Clean up the ticker, scoped to application. + * + * @static + * @private + */ +TickerPlugin.destroy = function destroy () +{ + if (this._ticker) + { + var oldTicker = this._ticker; + + this.ticker = null; + oldTicker.destroy(); + } +}; + +/*! + * @pixi/core - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/core is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Base resource class for textures that manages validation and uploading, depending on its type. + * + * Uploading of a base texture to the GPU is required. + * + * @class + * @memberof PIXI.resources + */ +var Resource = function Resource(width, height) +{ + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * Internal width of the resource + * @member {number} + * @protected + */ + this._width = width; + + /** + * Internal height of the resource + * @member {number} + * @protected + */ + this._height = height; + + /** + * If resource has been destroyed + * @member {boolean} + * @readonly + * @default false + */ + this.destroyed = false; + + /** + * `true` if resource is created by BaseTexture + * useful for doing cleanup with BaseTexture destroy + * and not cleaning up resources that were created + * externally. + * @member {boolean} + * @protected + */ + this.internal = false; + + /** + * Mini-runner for handling resize events + * + * @member {Runner} + * @private + */ + this.onResize = new Runner('setRealSize', 2); + + /** + * Mini-runner for handling update events + * + * @member {Runner} + * @private + */ + this.onUpdate = new Runner('update'); + + /** + * Handle internal errors, such as loading errors + * + * @member {Runner} + * @private + */ + this.onError = new Runner('onError', 1); +}; + +var prototypeAccessors$5 = { valid: { configurable: true },width: { configurable: true },height: { configurable: true } }; + +/** + * Bind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.bind = function bind (baseTexture) +{ + this.onResize.add(baseTexture); + this.onUpdate.add(baseTexture); + this.onError.add(baseTexture); + + // Call a resize immediate if we already + // have the width and height of the resource + if (this._width || this._height) + { + this.onResize.run(this._width, this._height); + } +}; + +/** + * Unbind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.unbind = function unbind (baseTexture) +{ + this.onResize.remove(baseTexture); + this.onUpdate.remove(baseTexture); + this.onError.remove(baseTexture); +}; + +/** + * Trigger a resize event + * @param {number} width X dimension + * @param {number} height Y dimension + */ +Resource.prototype.resize = function resize (width, height) +{ + if (width !== this._width || height !== this._height) + { + this._width = width; + this._height = height; + this.onResize.run(width, height); + } +}; + +/** + * Has been validated + * @readonly + * @member {boolean} + */ +prototypeAccessors$5.valid.get = function () +{ + return !!this._width && !!this._height; +}; + +/** + * Has been updated trigger event + */ +Resource.prototype.update = function update () +{ + if (!this.destroyed) + { + this.onUpdate.run(); + } +}; + +/** + * This can be overridden to start preloading a resource + * or do any other prepare step. + * @protected + * @return {Promise} Handle the validate event + */ +Resource.prototype.load = function load () +{ + return Promise.resolve(); +}; + +/** + * The width of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.width.get = function () +{ + return this._width; +}; + +/** + * The height of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.height.get = function () +{ + return this._height; +}; + +/** + * Uploads the texture or returns false if it cant for some reason. Override this. + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} true is success + */ +Resource.prototype.upload = function upload (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Set the style, optional to override + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} `true` is success + */ +Resource.prototype.style = function style (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Clean up anything, this happens when destroying is ready. + * + * @protected + */ +Resource.prototype.dispose = function dispose () +{ + // override +}; + +/** + * Call when destroying resource, unbind any BaseTexture object + * before calling this method, as reference counts are maintained + * internally. + */ +Resource.prototype.destroy = function destroy () +{ + if (!this.destroyed) + { + this.destroyed = true; + this.dispose(); + this.onError.removeAll(); + this.onError = null; + this.onResize.removeAll(); + this.onResize = null; + this.onUpdate.removeAll(); + this.onUpdate = null; + } +}; + +Object.defineProperties( Resource.prototype, prototypeAccessors$5 ); + +/** + * Base for all the image/canvas resources + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BaseImageResource = /*@__PURE__*/(function (Resource) { + function BaseImageResource(source) + { + var width = source.naturalWidth || source.videoWidth || source.width; + var height = source.naturalHeight || source.videoHeight || source.height; + + Resource.call(this, width, height); + + /** + * The source element + * @member {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} + * @readonly + */ + this.source = source; + + /** + * If set to `true`, will force `texImage2D` over `texSubImage2D` for uploading. + * Certain types of media (e.g. video) using `texImage2D` is more performant. + * @member {boolean} + * @default false + * @private + */ + this.noSubImage = false; + } + + if ( Resource ) BaseImageResource.__proto__ = Resource; + BaseImageResource.prototype = Object.create( Resource && Resource.prototype ); + BaseImageResource.prototype.constructor = BaseImageResource; + + /** + * Set cross origin based detecting the url and the crossorigin + * @protected + * @param {HTMLElement} element - Element to apply crossOrigin + * @param {string} url - URL to check + * @param {boolean|string} [crossorigin=true] - Cross origin value to use + */ + BaseImageResource.crossOrigin = function crossOrigin (element, url, crossorigin) + { + if (crossorigin === undefined && url.indexOf('data:') !== 0) + { + element.crossOrigin = determineCrossOrigin(url); + } + else if (crossorigin !== false) + { + element.crossOrigin = typeof crossorigin === 'string' ? crossorigin : 'anonymous'; + } + }; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture + * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} [source] (optional) + * @returns {boolean} true is success + */ + BaseImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture, source) + { + var gl = renderer.gl; + var width = baseTexture.realWidth; + var height = baseTexture.realHeight; + + source = source || this.source; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (!this.noSubImage + && baseTexture.target === gl.TEXTURE_2D + && glTexture.width === width + && glTexture.height === height) + { + gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, baseTexture.format, baseTexture.type, source); + } + else + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(baseTexture.target, 0, baseTexture.format, baseTexture.format, baseTexture.type, source); + } + + return true; + }; + + /** + * Checks if source width/height was changed, resize can cause extra baseTexture update. + * Triggers one update in any case. + */ + BaseImageResource.prototype.update = function update () + { + if (this.destroyed) + { + return; + } + + var width = this.source.naturalWidth || this.source.videoWidth || this.source.width; + var height = this.source.naturalHeight || this.source.videoHeight || this.source.height; + + this.resize(width, height); + + Resource.prototype.update.call(this); + }; + + /** + * Destroy this BaseImageResource + * @override + * @param {PIXI.BaseTexture} [fromTexture] Optional base texture + * @return {boolean} Destroy was successful + */ + BaseImageResource.prototype.dispose = function dispose () + { + this.source = null; + }; + + return BaseImageResource; +}(Resource)); + +/** + * Resource type for HTMLImageElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + */ +var ImageResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLImageElement)) + { + var imageElement = new Image(); + + BaseImageResource.crossOrigin(imageElement, source, options.crossorigin); + + imageElement.src = source; + source = imageElement; + } + + BaseImageResource.call(this, source); + + // FireFox 68, and possibly other versions, seems like setting the HTMLImageElement#width and #height + // to non-zero values before its loading completes if images are in a cache. + // Because of this, need to set the `_width` and the `_height` to zero to avoid uploading incomplete images. + // Please refer to the issue #5968 (https://github.com/pixijs/pixi.js/issues/5968). + if (!source.complete && !!this._width && !!this._height) + { + this._width = 0; + this._height = 0; + } + + /** + * URL of the image source + * @member {string} + */ + this.url = source.src; + + /** + * When process is completed + * @member {Promise} + * @private + */ + this._process = null; + + /** + * If the image should be disposed after upload + * @member {boolean} + * @default false + */ + this.preserveBitmap = false; + + /** + * If capable, convert the image using createImageBitmap API + * @member {boolean} + * @default PIXI.settings.CREATE_IMAGE_BITMAP + */ + this.createBitmap = (options.createBitmap !== undefined + ? options.createBitmap : settings.CREATE_IMAGE_BITMAP) && !!window.createImageBitmap; + + /** + * Controls texture premultiplyAlpha field + * Copies from options + * @member {boolean|null} + * @readonly + */ + this.premultiplyAlpha = options.premultiplyAlpha !== false; + + /** + * The ImageBitmap element created for HTMLImageElement + * @member {ImageBitmap} + * @default null + */ + this.bitmap = null; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) ImageResource.__proto__ = BaseImageResource; + ImageResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageResource.prototype.constructor = ImageResource; + + /** + * returns a promise when image will be loaded and processed + * + * @param {boolean} [createBitmap=true] whether process image into bitmap + * @returns {Promise} + */ + ImageResource.prototype.load = function load (createBitmap) + { + var this$1 = this; + + if (createBitmap !== undefined) + { + this.createBitmap = createBitmap; + } + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + this$1.url = this$1.source.src; + var ref = this$1; + var source = ref.source; + + var completed = function () { + if (this$1.destroyed) + { + return; + } + source.onload = null; + source.onerror = null; + + this$1.resize(source.width, source.height); + this$1._load = null; + + if (this$1.createBitmap) + { + resolve(this$1.process()); + } + else + { + resolve(this$1); + } + }; + + if (source.complete && source.src) + { + completed(); + } + else + { + source.onload = completed; + source.onerror = function (event) { return this$1.onError.run(event); }; + } + }); + + return this._load; + }; + + /** + * Called when we need to convert image into BitmapImage. + * Can be called multiple times, real promise is cached inside. + * + * @returns {Promise} cached promise to fill that bitmap + */ + ImageResource.prototype.process = function process () + { + var this$1 = this; + + if (this._process !== null) + { + return this._process; + } + if (this.bitmap !== null || !window.createImageBitmap) + { + return Promise.resolve(this); + } + + this._process = window.createImageBitmap(this.source, + 0, 0, this.source.width, this.source.height, + { + premultiplyAlpha: this.premultiplyAlpha ? 'premultiply' : 'none', + }) + .then(function (bitmap) { + if (this$1.destroyed) + { + return Promise.reject(); + } + this$1.bitmap = bitmap; + this$1.update(); + this$1._process = null; + + return Promise.resolve(this$1); + }); + + return this._process; + }; + + /** + * Upload the image resource to GPU. + * + * @param {PIXI.Renderer} renderer - Renderer to upload to + * @param {PIXI.BaseTexture} baseTexture - BaseTexture for this resource + * @param {PIXI.GLTexture} glTexture - GLTexture to use + * @returns {boolean} true is success + */ + ImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + baseTexture.premultiplyAlpha = this.premultiplyAlpha; + + if (!this.createBitmap) + { + return BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture); + } + if (!this.bitmap) + { + // yeah, ignore the output + this.process(); + if (!this.bitmap) + { + return false; + } + } + + BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture, this.bitmap); + + if (!this.preserveBitmap) + { + // checks if there are other renderers that possibly need this bitmap + + var flag = true; + + for (var key in baseTexture._glTextures) + { + var otherTex = baseTexture._glTextures[key]; + + if (otherTex !== glTexture && otherTex.dirtyId !== baseTexture.dirtyId) + { + flag = false; + break; + } + } + + if (flag) + { + if (this.bitmap.close) + { + this.bitmap.close(); + } + + this.bitmap = null; + } + } + + return true; + }; + + /** + * Destroys this texture + * @override + */ + ImageResource.prototype.dispose = function dispose () + { + this.source.onload = null; + this.source.onerror = null; + + BaseImageResource.prototype.dispose.call(this); + + if (this.bitmap) + { + this.bitmap.close(); + this.bitmap = null; + } + this._process = null; + this._load = null; + }; + + return ImageResource; +}(BaseImageResource)); + +/** + * Collection of installed resource types, class must extend {@link PIXI.resources.Resource}. + * @example + * class CustomResource extends PIXI.resources.Resource { + * // MUST have source, options constructor signature + * // for auto-detected resources to be created. + * constructor(source, options) { + * super(); + * } + * upload(renderer, baseTexture, glTexture) { + * // upload with GL + * return true; + * } + * // used to auto-detect resource + * static test(source, extension) { + * return extension === 'xyz'|| source instanceof SomeClass; + * } + * } + * // Install the new resource type + * PIXI.resources.INSTALLED.push(CustomResource); + * + * @name PIXI.resources.INSTALLED + * @type {Array<*>} + * @static + * @readonly + */ +var INSTALLED = []; + +/** + * Create a resource element from a single source element. This + * auto-detects which type of resource to create. All resources that + * are auto-detectable must have a static `test` method and a constructor + * with the arguments `(source, options?)`. Currently, the supported + * resources for auto-detection include: + * - {@link PIXI.resources.ImageResource} + * - {@link PIXI.resources.CanvasResource} + * - {@link PIXI.resources.VideoResource} + * - {@link PIXI.resources.SVGResource} + * - {@link PIXI.resources.BufferResource} + * @static + * @function PIXI.resources.autoDetectResource + * @param {string|*} source - Resource source, this can be the URL to the resource, + * a typed-array (for BufferResource), HTMLVideoElement, SVG data-uri + * or any other resource that can be auto-detected. If not resource is + * detected, it's assumed to be an ImageResource. + * @param {object} [options] - Pass-through options to use for Resource + * @param {number} [options.width] - Width of BufferResource or SVG rasterization + * @param {number} [options.height] - Height of BufferResource or SVG rasterization + * @param {boolean} [options.autoLoad=true] - Image, SVG and Video flag to start loading + * @param {number} [options.scale=1] - SVG source scale. Overridden by width, height + * @param {boolean} [options.createBitmap=PIXI.settings.CREATE_IMAGE_BITMAP] - Image option to create Bitmap object + * @param {boolean} [options.crossorigin=true] - Image and Video option to set crossOrigin + * @param {boolean} [options.autoPlay=true] - Video option to start playing video immediately + * @param {number} [options.updateFPS=0] - Video option to update how many times a second the + * texture should be updated from the video. Leave at 0 to update at every render + * @return {PIXI.resources.Resource} The created resource. + */ +function autoDetectResource(source, options) +{ + if (!source) + { + return null; + } + + var extension = ''; + + if (typeof source === 'string') + { + // search for file extension: period, 3-4 chars, then ?, # or EOL + var result = (/\.(\w{3,4})(?:$|\?|#)/i).exec(source); + + if (result) + { + extension = result[1].toLowerCase(); + } + } + + for (var i = INSTALLED.length - 1; i >= 0; --i) + { + var ResourcePlugin = INSTALLED[i]; + + if (ResourcePlugin.test && ResourcePlugin.test(source, extension)) + { + return new ResourcePlugin(source, options); + } + } + + // When in doubt: probably an image + // might be appropriate to throw an error or return null + return new ImageResource(source, options); +} + +/** + * @interface SharedArrayBuffer + */ + +/** + * Buffer resource with data of typed array. + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BufferResource = /*@__PURE__*/(function (Resource) { + function BufferResource(source, options) + { + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + if (!width || !height) + { + throw new Error('BufferResource width or height invalid'); + } + + Resource.call(this, width, height); + + /** + * Source array + * Cannot be ClampedUint8Array because it cant be uploaded to WebGL + * + * @member {Float32Array|Uint8Array|Uint32Array} + */ + this.data = source; + } + + if ( Resource ) BufferResource.__proto__ = Resource; + BufferResource.prototype = Object.create( Resource && Resource.prototype ); + BufferResource.prototype.constructor = BufferResource; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture glTexture + * @returns {boolean} true is success + */ + BufferResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + glTexture.internalFormat, + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + glTexture.type, + this.data + ); + } + + return true; + }; + + /** + * Destroy and don't use after this + * @override + */ + BufferResource.prototype.dispose = function dispose () + { + this.data = null; + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @return {boolean} `true` if + */ + BufferResource.test = function test (source) + { + return source instanceof Float32Array + || source instanceof Uint8Array + || source instanceof Uint32Array; + }; + + return BufferResource; +}(Resource)); + +var defaultBufferOptions = { + scaleMode: SCALE_MODES.NEAREST, + format: FORMATS.RGBA, + premultiplyAlpha: false, +}; + +/** + * A Texture stores the information that represents an image. + * All textures have a base texture, which contains information about the source. + * Therefore you can have many textures all using a single BaseTexture + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + * @param {PIXI.resources.Resource|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} [resource=null] + * The current resource to use, for things that aren't Resource objects, will be converted + * into a Resource. + * @param {Object} [options] - Collection of options + * @param {PIXI.MIPMAP_MODES} [options.mipmap=PIXI.settings.MIPMAP_TEXTURES] - If mipmapping is enabled for texture + * @param {number} [options.anisotropicLevel=PIXI.settings.ANISOTROPIC_LEVEL] - Anisotropic filtering level of texture + * @param {PIXI.WRAP_MODES} [options.wrapMode=PIXI.settings.WRAP_MODE] - Wrap mode for textures + * @param {PIXI.SCALE_MODES} [options.scaleMode=PIXI.settings.SCALE_MODE] - Default scale mode, linear, nearest + * @param {PIXI.FORMATS} [options.format=PIXI.FORMATS.RGBA] - GL format type + * @param {PIXI.TYPES} [options.type=PIXI.TYPES.UNSIGNED_BYTE] - GL data type + * @param {PIXI.TARGETS} [options.target=PIXI.TARGETS.TEXTURE_2D] - GL texture target + * @param {boolean} [options.premultiplyAlpha=true] - Pre multiply the image alpha + * @param {number} [options.width=0] - Width of the texture + * @param {number} [options.height=0] - Height of the texture + * @param {number} [options.resolution] - Resolution of the base texture + * @param {object} [options.resourceOptions] - Optional resource options, + * see {@link PIXI.resources.autoDetectResource autoDetectResource} + */ +var BaseTexture = /*@__PURE__*/(function (EventEmitter) { + function BaseTexture(resource, options) + { + if ( resource === void 0 ) resource = null; + if ( options === void 0 ) options = null; + + EventEmitter.call(this); + + options = options || {}; + + var premultiplyAlpha = options.premultiplyAlpha; + var mipmap = options.mipmap; + var anisotropicLevel = options.anisotropicLevel; + var scaleMode = options.scaleMode; + var width = options.width; + var height = options.height; + var wrapMode = options.wrapMode; + var format = options.format; + var type = options.type; + var target = options.target; + var resolution = options.resolution; + var resourceOptions = options.resourceOptions; + + // Convert the resource to a Resource object + if (resource && !(resource instanceof Resource)) + { + resource = autoDetectResource(resource, resourceOptions); + resource.internal = true; + } + + /** + * The width of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.width = width || 0; + + /** + * The height of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.height = height || 0; + + /** + * The resolution / device pixel ratio of the texture + * + * @member {number} + * @default PIXI.settings.RESOLUTION + */ + this.resolution = resolution || settings.RESOLUTION; + + /** + * Mipmap mode of the texture, affects downscaled images + * + * @member {PIXI.MIPMAP_MODES} + * @default PIXI.settings.MIPMAP_TEXTURES + */ + this.mipmap = mipmap !== undefined ? mipmap : settings.MIPMAP_TEXTURES; + + /** + * Anisotropic filtering level of texture + * + * @member {number} + * @default PIXI.settings.ANISOTROPIC_LEVEL + */ + this.anisotropicLevel = anisotropicLevel !== undefined ? anisotropicLevel : settings.ANISOTROPIC_LEVEL; + + /** + * How the texture wraps + * @member {number} + */ + this.wrapMode = wrapMode || settings.WRAP_MODE; + + /** + * The scale mode to apply when scaling this texture + * + * @member {PIXI.SCALE_MODES} + * @default PIXI.settings.SCALE_MODE + */ + this.scaleMode = scaleMode !== undefined ? scaleMode : settings.SCALE_MODE; + + /** + * The pixel format of the texture + * + * @member {PIXI.FORMATS} + * @default PIXI.FORMATS.RGBA + */ + this.format = format || FORMATS.RGBA; + + /** + * The type of resource data + * + * @member {PIXI.TYPES} + * @default PIXI.TYPES.UNSIGNED_BYTE + */ + this.type = type || TYPES.UNSIGNED_BYTE; + + /** + * The target type + * + * @member {PIXI.TARGETS} + * @default PIXI.TARGETS.TEXTURE_2D + */ + this.target = target || TARGETS.TEXTURE_2D; + + /** + * Set to true to enable pre-multiplied alpha + * + * @member {boolean} + * @default true + */ + this.premultiplyAlpha = premultiplyAlpha !== false; + + /** + * Global unique identifier for this BaseTexture + * + * @member {string} + * @protected + */ + this.uid = uid(); + + /** + * Used by automatic texture Garbage Collection, stores last GC tick when it was bound + * + * @member {number} + * @protected + */ + this.touched = 0; + + /** + * Whether or not the texture is a power of two, try to use power of two textures as much + * as you can + * + * @readonly + * @member {boolean} + * @default false + */ + this.isPowerOfTwo = false; + this._refreshPOT(); + + /** + * The map of render context textures where this is bound + * + * @member {Object} + * @private + */ + this._glTextures = {}; + + /** + * Used by TextureSystem to only update texture to the GPU when needed. + * Please call `update()` to increment it. + * + * @readonly + * @member {number} + */ + this.dirtyId = 0; + + /** + * Used by TextureSystem to only update texture style when needed. + * + * @protected + * @member {number} + */ + this.dirtyStyleId = 0; + + /** + * Currently default cache ID. + * + * @member {string} + */ + this.cacheId = null; + + /** + * Generally speaking means when resource is loaded. + * @readonly + * @member {boolean} + */ + this.valid = width > 0 && height > 0; + + /** + * The collection of alternative cache ids, since some BaseTextures + * can have more than one ID, short name and longer full URL + * + * @member {Array} + * @readonly + */ + this.textureCacheIds = []; + + /** + * Flag if BaseTexture has been destroyed. + * + * @member {boolean} + * @readonly + */ + this.destroyed = false; + + /** + * The resource used by this BaseTexture, there can only + * be one resource per BaseTexture, but textures can share + * resources. + * + * @member {PIXI.resources.Resource} + * @readonly + */ + this.resource = null; + + /** + * Number of the texture batch, used by multi-texture renderers + * + * @member {number} + */ + this._batchEnabled = 0; + + /** + * Fired when a not-immediately-available source finishes loading. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when a not-immediately-available source fails to load. + * + * @protected + * @event PIXI.BaseTexture#error + * @param {PIXI.BaseTexture} baseTexture - Resource errored. + * @param {ErrorEvent} event - Load error event. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#update + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being updated. + */ + + /** + * Fired when BaseTexture is destroyed. + * + * @protected + * @event PIXI.BaseTexture#dispose + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being destroyed. + */ + + // Set the resource + this.setResource(resource); + } + + if ( EventEmitter ) BaseTexture.__proto__ = EventEmitter; + BaseTexture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + BaseTexture.prototype.constructor = BaseTexture; + + var prototypeAccessors = { realWidth: { configurable: true },realHeight: { configurable: true } }; + + /** + * Pixel width of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realWidth.get = function () + { + return Math.ceil((this.width * this.resolution) - 1e-4); + }; + + /** + * Pixel height of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realHeight.get = function () + { + return Math.ceil((this.height * this.resolution) - 1e-4); + }; + + /** + * Changes style options of BaseTexture + * + * @param {PIXI.SCALE_MODES} [scaleMode] - Pixi scalemode + * @param {PIXI.MIPMAP_MODES} [mipmap] - enable mipmaps + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setStyle = function setStyle (scaleMode, mipmap) + { + var dirty; + + if (scaleMode !== undefined && scaleMode !== this.scaleMode) + { + this.scaleMode = scaleMode; + dirty = true; + } + + if (mipmap !== undefined && mipmap !== this.mipmap) + { + this.mipmap = mipmap; + dirty = true; + } + + if (dirty) + { + this.dirtyStyleId++; + } + + return this; + }; + + /** + * Changes w/h/resolution. Texture becomes valid if width and height are greater than zero. + * + * @param {number} width Visual width + * @param {number} height Visual height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setSize = function setSize (width, height, resolution) + { + this.resolution = resolution || this.resolution; + this.width = width; + this.height = height; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Sets real size of baseTexture, preserves current resolution. + * + * @param {number} realWidth Full rendered width + * @param {number} realHeight Full rendered height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setRealSize = function setRealSize (realWidth, realHeight, resolution) + { + this.resolution = resolution || this.resolution; + this.width = realWidth / this.resolution; + this.height = realHeight / this.resolution; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Refresh check for isPowerOfTwo texture based on size + * + * @private + */ + BaseTexture.prototype._refreshPOT = function _refreshPOT () + { + this.isPowerOfTwo = isPow2(this.realWidth) && isPow2(this.realHeight); + }; + + /** + * Changes resolution + * + * @param {number} [resolution] res + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResolution = function setResolution (resolution) + { + var oldResolution = this.resolution; + + if (oldResolution === resolution) + { + return this; + } + + this.resolution = resolution; + + if (this.valid) + { + this.width = this.width * oldResolution / resolution; + this.height = this.height * oldResolution / resolution; + this.emit('update', this); + } + + this._refreshPOT(); + + return this; + }; + + /** + * Sets the resource if it wasn't set. Throws error if resource already present + * + * @param {PIXI.resources.Resource} resource - that is managing this BaseTexture + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResource = function setResource (resource) + { + if (this.resource === resource) + { + return this; + } + + if (this.resource) + { + throw new Error('Resource can be set only once'); + } + + resource.bind(this); + + this.resource = resource; + + return this; + }; + + /** + * Invalidates the object. Texture becomes valid if width and height are greater than zero. + */ + BaseTexture.prototype.update = function update () + { + if (!this.valid) + { + if (this.width > 0 && this.height > 0) + { + this.valid = true; + this.emit('loaded', this); + this.emit('update', this); + } + } + else + { + this.dirtyId++; + this.dirtyStyleId++; + this.emit('update', this); + } + }; + + /** + * Handle errors with resources. + * @private + * @param {ErrorEvent} event - Error event emitted. + */ + BaseTexture.prototype.onError = function onError (event) + { + this.emit('error', this, event); + }; + + /** + * Destroys this base texture. + * The method stops if resource doesn't want this texture to be destroyed. + * Removes texture from all caches. + */ + BaseTexture.prototype.destroy = function destroy () + { + // remove and destroy the resource + if (this.resource) + { + this.resource.unbind(this); + // only destroy resourced created internally + if (this.resource.internal) + { + this.resource.destroy(); + } + this.resource = null; + } + + if (this.cacheId) + { + delete BaseTextureCache[this.cacheId]; + delete TextureCache[this.cacheId]; + + this.cacheId = null; + } + + // finally let the WebGL renderer know.. + this.dispose(); + + BaseTexture.removeFromCache(this); + this.textureCacheIds = null; + + this.destroyed = true; + }; + + /** + * Frees the texture from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseTexture.prototype.dispose = function dispose () + { + this.emit('dispose', this); + }; + + /** + * Helper function that creates a base texture based on the source you provide. + * The source can be - image url, image element, canvas element. If the + * source is an image url or an image element and not in the base texture + * cache, it will be created and loaded. + * + * @static + * @param {string|HTMLImageElement|HTMLCanvasElement|SVGElement|HTMLVideoElement} source - The + * source to create base texture from. + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @returns {PIXI.BaseTexture} The new base texture. + */ + BaseTexture.from = function from (source, options) + { + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var baseTexture = BaseTextureCache[cacheId]; + + if (!baseTexture) + { + baseTexture = new BaseTexture(source, options); + baseTexture.cacheId = cacheId; + BaseTexture.addToCache(baseTexture, cacheId); + } + + return baseTexture; + }; + + /** + * Create a new BaseTexture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.BaseTexture} The resulting new BaseTexture + */ + BaseTexture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + buffer = buffer || new Float32Array(width * height * 4); + + var resource = new BufferResource(buffer, { width: width, height: height }); + var type = buffer instanceof Float32Array ? TYPES.FLOAT : TYPES.UNSIGNED_BYTE; + + return new BaseTexture(resource, Object.assign(defaultBufferOptions, options || { width: width, height: height, type: type })); + }; + + /** + * Adds a BaseTexture to the global BaseTextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.BaseTexture} baseTexture - The BaseTexture to add to the cache. + * @param {string} id - The id that the BaseTexture will be stored against. + */ + BaseTexture.addToCache = function addToCache (baseTexture, id) + { + if (id) + { + if (baseTexture.textureCacheIds.indexOf(id) === -1) + { + baseTexture.textureCacheIds.push(id); + } + + if (BaseTextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("BaseTexture added to the cache with an id [" + id + "] that already had an entry")); + } + + BaseTextureCache[id] = baseTexture; + } + }; + + /** + * Remove a BaseTexture from the global BaseTextureCache. + * + * @static + * @param {string|PIXI.BaseTexture} baseTexture - id of a BaseTexture to be removed, or a BaseTexture instance itself. + * @return {PIXI.BaseTexture|null} The BaseTexture that was removed. + */ + BaseTexture.removeFromCache = function removeFromCache (baseTexture) + { + if (typeof baseTexture === 'string') + { + var baseTextureFromCache = BaseTextureCache[baseTexture]; + + if (baseTextureFromCache) + { + var index = baseTextureFromCache.textureCacheIds.indexOf(baseTexture); + + if (index > -1) + { + baseTextureFromCache.textureCacheIds.splice(index, 1); + } + + delete BaseTextureCache[baseTexture]; + + return baseTextureFromCache; + } + } + else if (baseTexture && baseTexture.textureCacheIds) + { + for (var i = 0; i < baseTexture.textureCacheIds.length; ++i) + { + delete BaseTextureCache[baseTexture.textureCacheIds[i]]; + } + + baseTexture.textureCacheIds.length = 0; + + return baseTexture; + } + + return null; + }; + + Object.defineProperties( BaseTexture.prototype, prototypeAccessors ); + + return BaseTexture; +}(eventemitter3)); + +/** + * Global number of the texture batch, used by multi-texture renderers + * + * @static + * @member {number} + */ +BaseTexture._globalBatch = 0; + +/** + * A resource that contains a number of sources. + * + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + * @param {number|Array<*>} source - Number of items in array or the collection + * of image URLs to use. Can also be resources, image elements, canvas, etc. + * @param {object} [options] Options to apply to {@link PIXI.resources.autoDetectResource} + * @param {number} [options.width] - Width of the resource + * @param {number} [options.height] - Height of the resource + */ +var ArrayResource = /*@__PURE__*/(function (Resource) { + function ArrayResource(source, options) + { + options = options || {}; + + var urls; + var length = source; + + if (Array.isArray(source)) + { + urls = source; + length = source.length; + } + + Resource.call(this, options.width, options.height); + + /** + * Collection of resources. + * @member {Array} + * @readonly + */ + this.items = []; + + /** + * Dirty IDs for each part + * @member {Array} + * @readonly + */ + this.itemDirtyIds = []; + + for (var i = 0; i < length; i++) + { + var partTexture = new BaseTexture(); + + this.items.push(partTexture); + this.itemDirtyIds.push(-1); + } + + /** + * Number of elements in array + * + * @member {number} + * @readonly + */ + this.length = length; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (urls) + { + for (var i$1 = 0; i$1 < length; i$1++) + { + this.addResourceAt(autoDetectResource(urls[i$1], options), i$1); + } + } + } + + if ( Resource ) ArrayResource.__proto__ = Resource; + ArrayResource.prototype = Object.create( Resource && Resource.prototype ); + ArrayResource.prototype.constructor = ArrayResource; + + /** + * Destroy this BaseImageResource + * @override + */ + ArrayResource.prototype.dispose = function dispose () + { + for (var i = 0, len = this.length; i < len; i++) + { + this.items[i].destroy(); + } + this.items = null; + this.itemDirtyIds = null; + this._load = null; + }; + + /** + * Set a resource by ID + * + * @param {PIXI.resources.Resource} resource + * @param {number} index - Zero-based index of resource to set + * @return {PIXI.resources.ArrayResource} Instance for chaining + */ + ArrayResource.prototype.addResourceAt = function addResourceAt (resource, index) + { + var baseTexture = this.items[index]; + + if (!baseTexture) + { + throw new Error(("Index " + index + " is out of bounds")); + } + + // Inherit the first resource dimensions + if (resource.valid && !this.valid) + { + this.resize(resource.width, resource.height); + } + + this.items[index].setResource(resource); + + return this; + }; + + /** + * Set the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.bind = function bind (baseTexture) + { + Resource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_2D_ARRAY; + + for (var i = 0; i < this.length; i++) + { + this.items[i].on('update', baseTexture.update, baseTexture); + } + }; + + /** + * Unset the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.unbind = function unbind (baseTexture) + { + Resource.prototype.unbind.call(this, baseTexture); + + for (var i = 0; i < this.length; i++) + { + this.items[i].off('update', baseTexture.update, baseTexture); + } + }; + + /** + * Load all the resources simultaneously + * @override + * @return {Promise} When load is resolved + */ + ArrayResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var resources = this.items.map(function (item) { return item.resource; }); + + // TODO: also implement load part-by-part strategy + var promises = resources.map(function (item) { return item.load(); }); + + this._load = Promise.all(promises) + .then(function () { + var ref = resources[0]; + var width = ref.width; + var height = ref.height; + + this$1.resize(width, height); + + return Promise.resolve(this$1); + } + ); + + return this._load; + }; + + /** + * Upload the resources to the GPU. + * @param {PIXI.Renderer} renderer + * @param {PIXI.BaseTexture} texture + * @param {PIXI.GLTexture} glTexture + * @returns {boolean} whether texture was uploaded + */ + ArrayResource.prototype.upload = function upload (renderer, texture, glTexture) + { + var ref = this; + var length = ref.length; + var itemDirtyIds = ref.itemDirtyIds; + var items = ref.items; + var gl = renderer.gl; + + if (glTexture.dirtyId < 0) + { + gl.texImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + texture.format, + this._width, + this._height, + length, + 0, + texture.format, + texture.type, + null + ); + } + + for (var i = 0; i < length; i++) + { + var item = items[i]; + + if (itemDirtyIds[i] < item.dirtyId) + { + itemDirtyIds[i] = item.dirtyId; + if (item.valid) + { + gl.texSubImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + 0, // xoffset + 0, // yoffset + i, // zoffset + item.resource.width, + item.resource.height, + 1, + texture.format, + texture.type, + item.resource.source + ); + } + } + } + + return true; + }; + + return ArrayResource; +}(Resource)); + +/** + * @interface OffscreenCanvas + */ + +/** + * Resource type for HTMLCanvasElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLCanvasElement} source - Canvas element to use + */ +var CanvasResource = /*@__PURE__*/(function (BaseImageResource) { + function CanvasResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) CanvasResource.__proto__ = BaseImageResource; + CanvasResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + CanvasResource.prototype.constructor = CanvasResource; + + CanvasResource.test = function test (source) + { + var OffscreenCanvas = window.OffscreenCanvas; + + // Check for browsers that don't yet support OffscreenCanvas + if (OffscreenCanvas && source instanceof OffscreenCanvas) + { + return true; + } + + return source instanceof HTMLCanvasElement; + }; + + return CanvasResource; +}(BaseImageResource)); + +/** + * Resource for a CubeTexture which contains six resources. + * + * @class + * @extends PIXI.resources.ArrayResource + * @memberof PIXI.resources + * @param {Array} [source] Collection of URLs or resources + * to use as the sides of the cube. + * @param {object} [options] - ImageResource options + * @param {number} [options.width] - Width of resource + * @param {number} [options.height] - Height of resource + */ +var CubeResource = /*@__PURE__*/(function (ArrayResource) { + function CubeResource(source, options) + { + options = options || {}; + + ArrayResource.call(this, source, options); + + if (this.length !== CubeResource.SIDES) + { + throw new Error(("Invalid length. Got " + (this.length) + ", expected 6")); + } + + for (var i = 0; i < CubeResource.SIDES; i++) + { + this.items[i].target = TARGETS.TEXTURE_CUBE_MAP_POSITIVE_X + i; + } + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( ArrayResource ) CubeResource.__proto__ = ArrayResource; + CubeResource.prototype = Object.create( ArrayResource && ArrayResource.prototype ); + CubeResource.prototype.constructor = CubeResource; + + /** + * Add binding + * + * @override + * @param {PIXI.BaseTexture} baseTexture - parent base texture + */ + CubeResource.prototype.bind = function bind (baseTexture) + { + ArrayResource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_CUBE_MAP; + }; + + /** + * Upload the resource + * + * @returns {boolean} true is success + */ + CubeResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var dirty = this.itemDirtyIds; + + for (var i = 0; i < CubeResource.SIDES; i++) + { + var side = this.items[i]; + + if (dirty[i] < side.dirtyId) + { + dirty[i] = side.dirtyId; + if (side.valid) + { + side.resource.upload(renderer, side, glTexture); + } + } + } + + return true; + }; + + return CubeResource; +}(ArrayResource)); + +/** + * Number of texture sides to store for CubeResources + * + * @name PIXI.resources.CubeResource.SIDES + * @static + * @member {number} + * @default 6 + */ +CubeResource.SIDES = 6; + +/** + * Resource type for SVG elements and graphics. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {string} source - Base64 encoded SVG element or URL for SVG file. + * @param {object} [options] - Options to use + * @param {number} [options.scale=1] Scale to apply to SVG. Overridden by... + * @param {number} [options.width] Rasterize SVG this wide. Aspect ratio preserved if height not specified. + * @param {number} [options.height] Rasterize SVG this high. Aspect ratio preserved if width not specified. + * @param {boolean} [options.autoLoad=true] Start loading right away. + */ +var SVGResource = /*@__PURE__*/(function (BaseImageResource) { + function SVGResource(source, options) + { + options = options || {}; + + BaseImageResource.call(this, document.createElement('canvas')); + this._width = 0; + this._height = 0; + + /** + * Base64 encoded SVG element or URL for SVG file + * @readonly + * @member {string} + */ + this.svg = source; + + /** + * The source scale to apply when rasterizing on load + * @readonly + * @member {number} + */ + this.scale = options.scale || 1; + + /** + * A width override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideWidth = options.width; + + /** + * A height override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideHeight = options.height; + + /** + * Call when completely loaded + * @private + * @member {function} + */ + this._resolve = null; + + /** + * Cross origin value to use + * @private + * @member {boolean|string} + */ + this._crossorigin = options.crossorigin; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) SVGResource.__proto__ = BaseImageResource; + SVGResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + SVGResource.prototype.constructor = SVGResource; + + SVGResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + // Save this until after load is finished + this$1._resolve = function () { + this$1.resize(this$1.source.width, this$1.source.height); + resolve(this$1); + }; + + // Convert SVG inline string to data-uri + if ((/^\]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*>/i; // eslint-disable-line max-len + +/** + * Resource type for HTMLVideoElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLVideoElement|object|string|Array} source - Video element to use. + * @param {object} [options] - Options to use + * @param {boolean} [options.autoLoad=true] - Start loading the video immediately + * @param {boolean} [options.autoPlay=true] - Start playing video immediately + * @param {number} [options.updateFPS=0] - How many times a second to update the texture from the video. + * Leave at 0 to update at every render. + * @param {boolean} [options.crossorigin=true] - Load image using cross origin + */ +var VideoResource = /*@__PURE__*/(function (BaseImageResource) { + function VideoResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLVideoElement)) + { + var videoElement = document.createElement('video'); + + // workaround for https://github.com/pixijs/pixi.js/issues/5996 + videoElement.setAttribute('preload', 'auto'); + videoElement.setAttribute('webkit-playsinline', ''); + videoElement.setAttribute('playsinline', ''); + + if (typeof source === 'string') + { + source = [source]; + } + + BaseImageResource.crossOrigin(videoElement, (source[0].src || source[0]), options.crossorigin); + + // array of objects or strings + for (var i = 0; i < source.length; ++i) + { + var sourceElement = document.createElement('source'); + + var ref = source[i]; + var src = ref.src; + var mime = ref.mime; + + src = src || source[i]; + + var baseSrc = src.split('?').shift().toLowerCase(); + var ext = baseSrc.substr(baseSrc.lastIndexOf('.') + 1); + + mime = mime || ("video/" + ext); + + sourceElement.src = src; + sourceElement.type = mime; + + videoElement.appendChild(sourceElement); + } + + // Override the source + source = videoElement; + } + + BaseImageResource.call(this, source); + + this.noSubImage = true; + this._autoUpdate = true; + this._isAutoUpdating = false; + this._updateFPS = options.updateFPS || 0; + this._msToNextUpdate = 0; + + /** + * When set to true will automatically play videos used by this texture once + * they are loaded. If false, it will not modify the playing state. + * + * @member {boolean} + * @default true + */ + this.autoPlay = options.autoPlay !== false; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + /** + * Callback when completed with load. + * @member {function} + * @private + */ + this._resolve = null; + + // Bind for listeners + this._onCanPlay = this._onCanPlay.bind(this); + this._onError = this._onError.bind(this); + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) VideoResource.__proto__ = BaseImageResource; + VideoResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + VideoResource.prototype.constructor = VideoResource; + + var prototypeAccessors = { autoUpdate: { configurable: true },updateFPS: { configurable: true } }; + + /** + * Trigger updating of the texture + * + * @param {number} [deltaTime=0] - time delta since last tick + */ + VideoResource.prototype.update = function update (deltaTime) + { + if ( deltaTime === void 0 ) deltaTime = 0; + + if (!this.destroyed) + { + // account for if video has had its playbackRate changed + var elapsedMS = Ticker.shared.elapsedMS * this.source.playbackRate; + + this._msToNextUpdate = Math.floor(this._msToNextUpdate - elapsedMS); + if (!this._updateFPS || this._msToNextUpdate <= 0) + { + BaseImageResource.prototype.update.call(this, deltaTime); + this._msToNextUpdate = this._updateFPS ? Math.floor(1000 / this._updateFPS) : 0; + } + } + }; + + /** + * Start preloading the video resource. + * + * @protected + * @return {Promise} Handle the validate event + */ + VideoResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var source = this.source; + + if ((source.readyState === source.HAVE_ENOUGH_DATA || source.readyState === source.HAVE_FUTURE_DATA) + && source.width && source.height) + { + source.complete = true; + } + + source.addEventListener('play', this._onPlayStart.bind(this)); + source.addEventListener('pause', this._onPlayStop.bind(this)); + + if (!this._isSourceReady()) + { + source.addEventListener('canplay', this._onCanPlay); + source.addEventListener('canplaythrough', this._onCanPlay); + source.addEventListener('error', this._onError, true); + } + else + { + this._onCanPlay(); + } + + this._load = new Promise(function (resolve) { + if (this$1.valid) + { + resolve(this$1); + } + else + { + this$1._resolve = resolve; + + source.load(); + } + }); + + return this._load; + }; + + /** + * Handle video error events. + * + * @private + */ + VideoResource.prototype._onError = function _onError () + { + this.source.removeEventListener('error', this._onError, true); + this.onError.run(event); + }; + + /** + * Returns true if the underlying source is playing. + * + * @private + * @return {boolean} True if playing. + */ + VideoResource.prototype._isSourcePlaying = function _isSourcePlaying () + { + var source = this.source; + + return (source.currentTime > 0 && source.paused === false && source.ended === false && source.readyState > 2); + }; + + /** + * Returns true if the underlying source is ready for playing. + * + * @private + * @return {boolean} True if ready. + */ + VideoResource.prototype._isSourceReady = function _isSourceReady () + { + return this.source.readyState === 3 || this.source.readyState === 4; + }; + + /** + * Runs the update loop when the video is ready to play + * + * @private + */ + VideoResource.prototype._onPlayStart = function _onPlayStart () + { + // Just in case the video has not received its can play even yet.. + if (!this.valid) + { + this._onCanPlay(); + } + + if (!this._isAutoUpdating && this.autoUpdate) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + }; + + /** + * Fired when a pause event is triggered, stops the update loop + * + * @private + */ + VideoResource.prototype._onPlayStop = function _onPlayStop () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + }; + + /** + * Fired when the video is loaded and ready to play + * + * @private + */ + VideoResource.prototype._onCanPlay = function _onCanPlay () + { + var ref = this; + var source = ref.source; + + source.removeEventListener('canplay', this._onCanPlay); + source.removeEventListener('canplaythrough', this._onCanPlay); + + var valid = this.valid; + + this.resize(source.videoWidth, source.videoHeight); + + // prevent multiple loaded dispatches.. + if (!valid && this._resolve) + { + this._resolve(this); + this._resolve = null; + } + + if (this._isSourcePlaying()) + { + this._onPlayStart(); + } + else if (this.autoPlay) + { + source.play(); + } + }; + + /** + * Destroys this texture + * @override + */ + VideoResource.prototype.dispose = function dispose () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + } + + if (this.source) + { + this.source.removeEventListener('error', this._onError, true); + this.source.pause(); + this.source.src = ''; + this.source.load(); + } + BaseImageResource.prototype.dispose.call(this); + }; + + /** + * Should the base texture automatically update itself, set to true by default + * + * @member {boolean} + */ + prototypeAccessors.autoUpdate.get = function () + { + return this._autoUpdate; + }; + + prototypeAccessors.autoUpdate.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._autoUpdate) + { + this._autoUpdate = value; + + if (!this._autoUpdate && this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + else if (this._autoUpdate && !this._isAutoUpdating) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + } + }; + + /** + * How many times a second to update the texture from the video. Leave at 0 to update at every render. + * A lower fps can help performance, as updating the texture at 60fps on a 30ps video may not be efficient. + * + * @member {number} + */ + prototypeAccessors.updateFPS.get = function () + { + return this._updateFPS; + }; + + prototypeAccessors.updateFPS.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._updateFPS) + { + this._updateFPS = value; + } + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @param {string} extension - The extension of source, if set + * @return {boolean} `true` if video source + */ + VideoResource.test = function test (source, extension) + { + return (source instanceof HTMLVideoElement) + || VideoResource.TYPES.indexOf(extension) > -1; + }; + + Object.defineProperties( VideoResource.prototype, prototypeAccessors ); + + return VideoResource; +}(BaseImageResource)); + +/** + * List of common video file extensions supported by VideoResource. + * @constant + * @member {Array} + * @static + * @readonly + */ +VideoResource.TYPES = ['mp4', 'm4v', 'webm', 'ogg', 'ogv', 'h264', 'avi', 'mov']; + +/** + * Resource type for ImageBitmap. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {ImageBitmap} source - Image element to use + */ +var ImageBitmapResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageBitmapResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) ImageBitmapResource.__proto__ = BaseImageResource; + ImageBitmapResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageBitmapResource.prototype.constructor = ImageBitmapResource; + + ImageBitmapResource.test = function test (source) + { + return !!window.createImageBitmap && source instanceof ImageBitmap; + }; + + return ImageBitmapResource; +}(BaseImageResource)); + +INSTALLED.push( + ImageResource, + ImageBitmapResource, + CanvasResource, + VideoResource, + SVGResource, + BufferResource, + CubeResource, + ArrayResource +); + +/** + * System is a base class used for extending systems used by the {@link PIXI.Renderer} + * + * @see PIXI.Renderer#addSystem + * @class + * @memberof PIXI + */ +var System = function System(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Generic destroy methods to be overridden by the subclass + */ +System.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Resource type for DepthTexture. + * @class + * @extends PIXI.resources.BufferResource + * @memberof PIXI.resources + */ +var DepthResource = /*@__PURE__*/(function (BufferResource) { + function DepthResource () { + BufferResource.apply(this, arguments); + } + + if ( BufferResource ) DepthResource.__proto__ = BufferResource; + DepthResource.prototype = Object.create( BufferResource && BufferResource.prototype ); + DepthResource.prototype.constructor = DepthResource; + + DepthResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + gl.DEPTH_COMPONENT16, // Needed for depth to render properly in webgl2.0 + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + baseTexture.type, + this.data + ); + } + + return true; + }; + + return DepthResource; +}(BufferResource)); + +/** + * Frame buffer used by the BaseRenderTexture + * + * @class + * @memberof PIXI + */ +var Framebuffer = function Framebuffer(width, height) +{ + this.width = Math.ceil(width || 100); + this.height = Math.ceil(height || 100); + + this.stencil = false; + this.depth = false; + + this.dirtyId = 0; + this.dirtyFormat = 0; + this.dirtySize = 0; + + this.depthTexture = null; + this.colorTextures = []; + + this.glFramebuffers = {}; + + this.disposeRunner = new Runner('disposeFramebuffer', 2); +}; + +var prototypeAccessors$1$2 = { colorTexture: { configurable: true } }; + +/** + * Reference to the colorTexture. + * + * @member {PIXI.Texture[]} + * @readonly + */ +prototypeAccessors$1$2.colorTexture.get = function () +{ + return this.colorTextures[0]; +}; + +/** + * Add texture to the colorTexture array + * + * @param {number} [index=0] - Index of the array to add the texture to + * @param {PIXI.Texture} [texture] - Texture to add to the array + */ +Framebuffer.prototype.addColorTexture = function addColorTexture (index, texture) +{ + if ( index === void 0 ) index = 0; + + // TODO add some validation to the texture - same width / height etc? + this.colorTextures[index] = texture || new BaseTexture(null, { scaleMode: 0, + resolution: 1, + mipmap: false, + width: this.width, + height: this.height });// || new Texture(); + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Add a depth texture to the frame buffer + * + * @param {PIXI.Texture} [texture] - Texture to add + */ +Framebuffer.prototype.addDepthTexture = function addDepthTexture (texture) +{ + /* eslint-disable max-len */ + this.depthTexture = texture || new BaseTexture(new DepthResource(null, { width: this.width, height: this.height }), { scaleMode: 0, + resolution: 1, + width: this.width, + height: this.height, + mipmap: false, + format: FORMATS.DEPTH_COMPONENT, + type: TYPES.UNSIGNED_SHORT });// UNSIGNED_SHORT; + /* eslint-disable max-len */ + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable depth on the frame buffer + */ +Framebuffer.prototype.enableDepth = function enableDepth () +{ + this.depth = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable stencil on the frame buffer + */ +Framebuffer.prototype.enableStencil = function enableStencil () +{ + this.stencil = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Resize the frame buffer + * + * @param {number} width - Width of the frame buffer to resize to + * @param {number} height - Height of the frame buffer to resize to + */ +Framebuffer.prototype.resize = function resize (width, height) +{ + width = Math.ceil(width); + height = Math.ceil(height); + + if (width === this.width && height === this.height) { return; } + + this.width = width; + this.height = height; + + this.dirtyId++; + this.dirtySize++; + + for (var i = 0; i < this.colorTextures.length; i++) + { + var texture = this.colorTextures[i]; + var resolution = texture.resolution; + + // take into acount the fact the texture may have a different resolution.. + texture.setSize(width / resolution, height / resolution); + } + + if (this.depthTexture) + { + var resolution$1 = this.depthTexture.resolution; + + this.depthTexture.setSize(width / resolution$1, height / resolution$1); + } +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Framebuffer.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +Object.defineProperties( Framebuffer.prototype, prototypeAccessors$1$2 ); + +/** + * A BaseRenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a BaseRenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * A BaseRenderTexture takes a snapshot of any Display Object given to its render method. The position + * and rotation of the given Display Objects is ignored. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 800, height: 600 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 100, height: 100 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.BaseTexture + * @memberof PIXI + */ +var BaseRenderTexture = /*@__PURE__*/(function (BaseTexture) { + function BaseRenderTexture(options) + { + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + // Backward compatibility of signature + var width$1 = arguments[0]; + var height$1 = arguments[1]; + var scaleMode = arguments[2]; + var resolution = arguments[3]; + + options = { width: width$1, height: height$1, scaleMode: scaleMode, resolution: resolution }; + /* eslint-enable prefer-rest-params */ + } + + BaseTexture.call(this, null, options); + + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + // Set defaults + this.mipmap = false; + this.width = Math.ceil(width) || 100; + this.height = Math.ceil(height) || 100; + this.valid = true; + + /** + * A reference to the canvas render target (we only need one as this can be shared across renderers) + * + * @protected + * @member {object} + */ + this._canvasRenderTarget = null; + + this.clearColor = [0, 0, 0, 0]; + + this.framebuffer = new Framebuffer(this.width * this.resolution, this.height * this.resolution) + .addColorTexture(0, this); + + // TODO - could this be added the systems? + + /** + * The data structure for the stencil masks. + * + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + + /** + * The data structure for the filters. + * + * @member {PIXI.Graphics[]} + */ + this.filterStack = [{}]; + } + + if ( BaseTexture ) BaseRenderTexture.__proto__ = BaseTexture; + BaseRenderTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype ); + BaseRenderTexture.prototype.constructor = BaseRenderTexture; + + /** + * Resizes the BaseRenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + */ + BaseRenderTexture.prototype.resize = function resize (width, height) + { + width = Math.ceil(width); + height = Math.ceil(height); + this.framebuffer.resize(width * this.resolution, height * this.resolution); + }; + + /** + * Frees the texture and framebuffer from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseRenderTexture.prototype.dispose = function dispose () + { + this.framebuffer.dispose(); + + BaseTexture.prototype.dispose.call(this); + }; + + /** + * Destroys this texture. + * + */ + BaseRenderTexture.prototype.destroy = function destroy () + { + BaseTexture.prototype.destroy.call(this, true); + + this.framebuffer = null; + }; + + return BaseRenderTexture; +}(BaseTexture)); + +/** + * Stores a texture's frame in UV coordinates, in + * which everything lies in the rectangle `[(0,0), (1,0), + * (1,1), (0,1)]`. + * + * | Corner | Coordinates | + * |--------------|-------------| + * | Top-Left | `(x0,y0)` | + * | Top-Right | `(x1,y1)` | + * | Bottom-Right | `(x2,y2)` | + * | Bottom-Left | `(x3,y3)` | + * + * @class + * @protected + * @memberof PIXI + */ +var TextureUvs = function TextureUvs() +{ + /** + * X-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.x0 = 0; + + /** + * Y-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.y0 = 0; + + /** + * X-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.x1 = 1; + + /** + * Y-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.y1 = 0; + + /** + * X-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.x2 = 1; + + /** + * Y-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.y2 = 1; + + /** + * X-component of bottom-left corner `(x3,y3)`. + * + * @member {number} + */ + this.x3 = 0; + + /** + * Y-component of bottom-right corner `(x3,y3)`. + * + * @member {number} + */ + this.y3 = 1; + + this.uvsFloat32 = new Float32Array(8); +}; + +/** + * Sets the texture Uvs based on the given frame information. + * + * @protected + * @param {PIXI.Rectangle} frame - The frame of the texture + * @param {PIXI.Rectangle} baseFrame - The base frame of the texture + * @param {number} rotate - Rotation of frame, see {@link PIXI.GroupD8} + */ +TextureUvs.prototype.set = function set (frame, baseFrame, rotate) +{ + var tw = baseFrame.width; + var th = baseFrame.height; + + if (rotate) + { + // width and height div 2 div baseFrame size + var w2 = frame.width / 2 / tw; + var h2 = frame.height / 2 / th; + + // coordinates of center + var cX = (frame.x / tw) + w2; + var cY = (frame.y / th) + h2; + + rotate = GroupD8.add(rotate, GroupD8.NW); // NW is top-left corner + this.x0 = cX + (w2 * GroupD8.uX(rotate)); + this.y0 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); // rotate 90 degrees clockwise + this.x1 = cX + (w2 * GroupD8.uX(rotate)); + this.y1 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x2 = cX + (w2 * GroupD8.uX(rotate)); + this.y2 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x3 = cX + (w2 * GroupD8.uX(rotate)); + this.y3 = cY + (h2 * GroupD8.uY(rotate)); + } + else + { + this.x0 = frame.x / tw; + this.y0 = frame.y / th; + + this.x1 = (frame.x + frame.width) / tw; + this.y1 = frame.y / th; + + this.x2 = (frame.x + frame.width) / tw; + this.y2 = (frame.y + frame.height) / th; + + this.x3 = frame.x / tw; + this.y3 = (frame.y + frame.height) / th; + } + + this.uvsFloat32[0] = this.x0; + this.uvsFloat32[1] = this.y0; + this.uvsFloat32[2] = this.x1; + this.uvsFloat32[3] = this.y1; + this.uvsFloat32[4] = this.x2; + this.uvsFloat32[5] = this.y2; + this.uvsFloat32[6] = this.x3; + this.uvsFloat32[7] = this.y3; +}; + +var DEFAULT_UVS = new TextureUvs(); + +/** + * A texture stores the information that represents an image or part of an image. + * + * It cannot be added to the display list directly; instead use it as the texture for a Sprite. + * If no frame is provided for a texture, then the whole image is used. + * + * You can directly create a texture from an image and then reuse it multiple times like this : + * + * ```js + * let texture = PIXI.Texture.from('assets/image.png'); + * let sprite1 = new PIXI.Sprite(texture); + * let sprite2 = new PIXI.Sprite(texture); + * ``` + * + * If you didnt pass the texture frame to constructor, it enables `noFrame` mode: + * it subscribes on baseTexture events, it automatically resizes at the same time as baseTexture. + * + * Textures made from SVGs, loaded or not, cannot be used before the file finishes processing. + * You can check for this by checking the sprite's _textureID property. + * ```js + * var texture = PIXI.Texture.from('assets/image.svg'); + * var sprite1 = new PIXI.Sprite(texture); + * //sprite1._textureID should not be undefined if the texture has finished processing the SVG file + * ``` + * You can use a ticker or rAF to ensure your sprites load the finished textures after processing. See issue #3068. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var Texture = /*@__PURE__*/(function (EventEmitter) { + function Texture(baseTexture, frame, orig, trim, rotate, anchor) + { + EventEmitter.call(this); + + /** + * Does this Texture have any frame data assigned to it? + * + * This mode is enabled automatically if no frame was passed inside constructor. + * + * In this mode texture is subscribed to baseTexture events, and fires `update` on any change. + * + * Beware, after loading or resize of baseTexture event can fired two times! + * If you want more control, subscribe on baseTexture itself. + * + * ```js + * texture.on('update', () => {}); + * ``` + * + * Any assignment of `frame` switches off `noFrame` mode. + * + * @member {boolean} + */ + this.noFrame = false; + + if (!frame) + { + this.noFrame = true; + frame = new Rectangle(0, 0, 1, 1); + } + + if (baseTexture instanceof Texture) + { + baseTexture = baseTexture.baseTexture; + } + + /** + * The base texture that this texture uses. + * + * @member {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering, + * irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases) + * + * @member {PIXI.Rectangle} + */ + this._frame = frame; + + /** + * This is the trimmed area of original texture, before it was put in atlas + * Please call `updateUvs()` after you change coordinates of `trim` manually. + * + * @member {PIXI.Rectangle} + */ + this.trim = trim; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = false; + + /** + * This will let a renderer know that a texture has been updated (used mainly for WebGL uv updates) + * + * @member {boolean} + */ + this.requiresUpdate = false; + + /** + * The WebGL UV data cache. Can be used as quad UV + * + * @member {PIXI.TextureUvs} + * @protected + */ + this._uvs = DEFAULT_UVS; + + /** + * Default TextureMatrix instance for this texture + * By default that object is not created because its heavy + * + * @member {PIXI.TextureMatrix} + */ + this.uvMatrix = null; + + /** + * This is the area of original texture, before it was put in atlas + * + * @member {PIXI.Rectangle} + */ + this.orig = orig || frame;// new Rectangle(0, 0, 1, 1); + + this._rotate = Number(rotate || 0); + + if (rotate === true) + { + // this is old texturepacker legacy, some games/libraries are passing "true" for rotated textures + this._rotate = 2; + } + else if (this._rotate % 2 !== 0) + { + throw new Error('attempt to use diamond-shaped UVs. If you are sure, set rotation manually'); + } + + /** + * Anchor point that is used as default if sprite is created with this texture. + * Changing the `defaultAnchor` at a later point of time will not update Sprite's anchor point. + * @member {PIXI.Point} + * @default {0,0} + */ + this.defaultAnchor = anchor ? new Point(anchor.x, anchor.y) : new Point(0, 0); + + /** + * Update ID is observed by sprites and TextureMatrix instances. + * Call updateUvs() to increment it. + * + * @member {number} + * @protected + */ + + this._updateID = 0; + + /** + * The ids under which this Texture has been added to the texture cache. This is + * automatically set as long as Texture.addToCache is used, but may not be set if a + * Texture is added directly to the TextureCache array. + * + * @member {string[]} + */ + this.textureCacheIds = []; + + if (!baseTexture.valid) + { + baseTexture.once('loaded', this.onBaseTextureUpdated, this); + } + else if (this.noFrame) + { + // if there is no frame we should monitor for any base texture changes.. + if (baseTexture.valid) + { + this.onBaseTextureUpdated(baseTexture); + } + } + else + { + this.frame = frame; + } + + if (this.noFrame) + { + baseTexture.on('update', this.onBaseTextureUpdated, this); + } + } + + if ( EventEmitter ) Texture.__proto__ = EventEmitter; + Texture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + Texture.prototype.constructor = Texture; + + var prototypeAccessors = { resolution: { configurable: true },frame: { configurable: true },rotate: { configurable: true },width: { configurable: true },height: { configurable: true } }; + + /** + * Updates this texture on the gpu. + * + * Calls the TextureResource update. + * + * If you adjusted `frame` manually, please call `updateUvs()` instead. + * + */ + Texture.prototype.update = function update () + { + if (this.baseTexture.resource) + { + this.baseTexture.resource.update(); + } + }; + + /** + * Called when the base texture is updated + * + * @protected + * @param {PIXI.BaseTexture} baseTexture - The base texture. + */ + Texture.prototype.onBaseTextureUpdated = function onBaseTextureUpdated (baseTexture) + { + if (this.noFrame) + { + if (!this.baseTexture.valid) + { + return; + } + + this._frame.width = baseTexture.width; + this._frame.height = baseTexture.height; + this.valid = true; + this.updateUvs(); + } + else + { + // TODO this code looks confusing.. boo to abusing getters and setters! + // if user gave us frame that has bigger size than resized texture it can be a problem + this.frame = this._frame; + } + + this.emit('update', this); + }; + + /** + * Destroys this texture + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ + Texture.prototype.destroy = function destroy (destroyBase) + { + if (this.baseTexture) + { + if (destroyBase) + { + var ref = this.baseTexture; + var resource = ref.resource; + + // delete the texture if it exists in the texture cache.. + // this only needs to be removed if the base texture is actually destroyed too.. + if (resource && TextureCache[resource.url]) + { + Texture.removeFromCache(resource.url); + } + + this.baseTexture.destroy(); + } + + this.baseTexture.off('update', this.onBaseTextureUpdated, this); + + this.baseTexture = null; + } + + this._frame = null; + this._uvs = null; + this.trim = null; + this.orig = null; + + this.valid = false; + + Texture.removeFromCache(this); + this.textureCacheIds = null; + }; + + /** + * Creates a new texture object that acts the same as this one. + * + * @return {PIXI.Texture} The new texture + */ + Texture.prototype.clone = function clone () + { + return new Texture(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor); + }; + + /** + * Updates the internal WebGL UV cache. Use it after you change `frame` or `trim` of the texture. + * Call it after changing the frame + */ + Texture.prototype.updateUvs = function updateUvs () + { + if (this._uvs === DEFAULT_UVS) + { + this._uvs = new TextureUvs(); + } + + this._uvs.set(this._frame, this.baseTexture, this.rotate); + + this._updateID++; + }; + + /** + * Helper function that creates a new Texture based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|PIXI.BaseTexture} source + * Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The newly created texture + */ + Texture.from = function from (source, options) + { + if ( options === void 0 ) options = {}; + + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var texture = TextureCache[cacheId]; + + if (!texture) + { + if (!options.resolution) + { + options.resolution = getResolutionOfUrl(source); + } + + texture = new Texture(new BaseTexture(source, options)); + texture.baseTexture.cacheId = cacheId; + + BaseTexture.addToCache(texture.baseTexture, cacheId); + Texture.addToCache(texture, cacheId); + } + + // lets assume its a base texture! + return texture; + }; + + /** + * Create a new Texture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The resulting new BaseTexture + */ + Texture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + return new Texture(BaseTexture.fromBuffer(buffer, width, height, options)); + }; + + /** + * Create a texture from a source and add to the cache. + * + * @static + * @param {HTMLImageElement|HTMLCanvasElement} source - The input source. + * @param {String} imageUrl - File name of texture, for cache and resolving resolution. + * @param {String} [name] - Human readable name for the texture cache. If no name is + * specified, only `imageUrl` will be used as the cache ID. + * @return {PIXI.Texture} Output texture + */ + Texture.fromLoader = function fromLoader (source, imageUrl, name) + { + var resource = new ImageResource(source); + + resource.url = imageUrl; + + var baseTexture = new BaseTexture(resource, { + scaleMode: settings.SCALE_MODE, + resolution: getResolutionOfUrl(imageUrl), + }); + + var texture = new Texture(baseTexture); + + // No name, use imageUrl instead + if (!name) + { + name = imageUrl; + } + + // lets also add the frame to pixi's global cache for 'fromLoader' function + BaseTexture.addToCache(texture.baseTexture, name); + Texture.addToCache(texture, name); + + // also add references by url if they are different. + if (name !== imageUrl) + { + BaseTexture.addToCache(texture.baseTexture, imageUrl); + Texture.addToCache(texture, imageUrl); + } + + return texture; + }; + + /** + * Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.Texture} texture - The Texture to add to the cache. + * @param {string} id - The id that the Texture will be stored against. + */ + Texture.addToCache = function addToCache (texture, id) + { + if (id) + { + if (texture.textureCacheIds.indexOf(id) === -1) + { + texture.textureCacheIds.push(id); + } + + if (TextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("Texture added to the cache with an id [" + id + "] that already had an entry")); + } + + TextureCache[id] = texture; + } + }; + + /** + * Remove a Texture from the global TextureCache. + * + * @static + * @param {string|PIXI.Texture} texture - id of a Texture to be removed, or a Texture instance itself + * @return {PIXI.Texture|null} The Texture that was removed + */ + Texture.removeFromCache = function removeFromCache (texture) + { + if (typeof texture === 'string') + { + var textureFromCache = TextureCache[texture]; + + if (textureFromCache) + { + var index = textureFromCache.textureCacheIds.indexOf(texture); + + if (index > -1) + { + textureFromCache.textureCacheIds.splice(index, 1); + } + + delete TextureCache[texture]; + + return textureFromCache; + } + } + else if (texture && texture.textureCacheIds) + { + for (var i = 0; i < texture.textureCacheIds.length; ++i) + { + // Check that texture matches the one being passed in before deleting it from the cache. + if (TextureCache[texture.textureCacheIds[i]] === texture) + { + delete TextureCache[texture.textureCacheIds[i]]; + } + } + + texture.textureCacheIds.length = 0; + + return texture; + } + + return null; + }; + + /** + * Returns resolution of baseTexture + * + * @member {number} + * @readonly + */ + prototypeAccessors.resolution.get = function () + { + return this.baseTexture.resolution; + }; + + /** + * The frame specifies the region of the base texture that this texture uses. + * Please call `updateUvs()` after you change coordinates of `frame` manually. + * + * @member {PIXI.Rectangle} + */ + prototypeAccessors.frame.get = function () + { + return this._frame; + }; + + prototypeAccessors.frame.set = function (frame) // eslint-disable-line require-jsdoc + { + this._frame = frame; + + this.noFrame = false; + + var x = frame.x; + var y = frame.y; + var width = frame.width; + var height = frame.height; + var xNotFit = x + width > this.baseTexture.width; + var yNotFit = y + height > this.baseTexture.height; + + if (xNotFit || yNotFit) + { + var relationship = xNotFit && yNotFit ? 'and' : 'or'; + var errorX = "X: " + x + " + " + width + " = " + (x + width) + " > " + (this.baseTexture.width); + var errorY = "Y: " + y + " + " + height + " = " + (y + height) + " > " + (this.baseTexture.height); + + throw new Error('Texture Error: frame does not fit inside the base Texture dimensions: ' + + errorX + " " + relationship + " " + errorY); + } + + this.valid = width && height && this.baseTexture.valid; + + if (!this.trim && !this.rotate) + { + this.orig = frame; + } + + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * Indicates whether the texture is rotated inside the atlas + * set to 2 to compensate for texture packer rotation + * set to 6 to compensate for spine packer rotation + * can be used to rotate or mirror sprites + * See {@link PIXI.GroupD8} for explanation + * + * @member {number} + */ + prototypeAccessors.rotate.get = function () + { + return this._rotate; + }; + + prototypeAccessors.rotate.set = function (rotate) // eslint-disable-line require-jsdoc + { + this._rotate = rotate; + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * The width of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.orig.width; + }; + + /** + * The height of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.orig.height; + }; + + Object.defineProperties( Texture.prototype, prototypeAccessors ); + + return Texture; +}(eventemitter3)); + +function createWhiteTexture() +{ + var canvas = document.createElement('canvas'); + + canvas.width = 16; + canvas.height = 16; + + var context = canvas.getContext('2d'); + + context.fillStyle = 'white'; + context.fillRect(0, 0, 16, 16); + + return new Texture(new BaseTexture(new CanvasResource(canvas))); +} + +function removeAllHandlers(tex) +{ + tex.destroy = function _emptyDestroy() { /* empty */ }; + tex.on = function _emptyOn() { /* empty */ }; + tex.once = function _emptyOnce() { /* empty */ }; + tex.emit = function _emptyEmit() { /* empty */ }; +} + +/** + * An empty texture, used often to not have to create multiple empty textures. + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.EMPTY = new Texture(new BaseTexture()); +removeAllHandlers(Texture.EMPTY); +removeAllHandlers(Texture.EMPTY.baseTexture); + +/** + * A white texture of 16x16 size, used for graphics and other things + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.WHITE = createWhiteTexture(); +removeAllHandlers(Texture.WHITE); +removeAllHandlers(Texture.WHITE.baseTexture); + +/** + * A RenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a RenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * __Hint-2__: The actual memory allocation will happen on first render. + * You shouldn't create renderTextures each frame just to delete them after, try to reuse them. + * + * A RenderTexture takes a snapshot of any Display Object given to its render method. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let renderTexture = PIXI.RenderTexture.create(800, 600); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let renderTexture = new PIXI.RenderTexture.create(100, 100); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.Texture + * @memberof PIXI + */ +var RenderTexture = /*@__PURE__*/(function (Texture) { + function RenderTexture(baseRenderTexture, frame) + { + // support for legacy.. + var _legacyRenderer = null; + + if (!(baseRenderTexture instanceof BaseRenderTexture)) + { + /* eslint-disable prefer-rest-params, no-console */ + var width = arguments[1]; + var height = arguments[2]; + var scaleMode = arguments[3]; + var resolution = arguments[4]; + + // we have an old render texture.. + console.warn(("Please use RenderTexture.create(" + width + ", " + height + ") instead of the ctor directly.")); + _legacyRenderer = arguments[0]; + /* eslint-enable prefer-rest-params, no-console */ + + frame = null; + baseRenderTexture = new BaseRenderTexture({ + width: width, + height: height, + scaleMode: scaleMode, + resolution: resolution, + }); + } + + /** + * The base texture object that this texture uses + * + * @member {PIXI.BaseTexture} + */ + Texture.call(this, baseRenderTexture, frame); + + this.legacyRenderer = _legacyRenderer; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = true; + + /** + * Stores `sourceFrame` when this texture is inside current filter stack. + * You can read it inside filters. + * + * @readonly + * @member {PIXI.Rectangle} + */ + this.filterFrame = null; + + /** + * The key for pooled texture of FilterSystem + * @protected + * @member {string} + */ + this.filterPoolKey = null; + + this.updateUvs(); + } + + if ( Texture ) RenderTexture.__proto__ = Texture; + RenderTexture.prototype = Object.create( Texture && Texture.prototype ); + RenderTexture.prototype.constructor = RenderTexture; + + /** + * Resizes the RenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + * @param {boolean} [resizeBaseTexture=true] - Should the baseTexture.width and height values be resized as well? + */ + RenderTexture.prototype.resize = function resize (width, height, resizeBaseTexture) + { + if ( resizeBaseTexture === void 0 ) resizeBaseTexture = true; + + width = Math.ceil(width); + height = Math.ceil(height); + + // TODO - could be not required.. + this.valid = (width > 0 && height > 0); + + this._frame.width = this.orig.width = width; + this._frame.height = this.orig.height = height; + + if (resizeBaseTexture) + { + this.baseTexture.resize(width, height); + } + + this.updateUvs(); + }; + + /** + * Changes the resolution of baseTexture, but does not change framebuffer size. + * + * @param {number} resolution - The new resolution to apply to RenderTexture + */ + RenderTexture.prototype.setResolution = function setResolution (resolution) + { + var ref = this; + var baseTexture = ref.baseTexture; + + if (baseTexture.resolution === resolution) + { + return; + } + + baseTexture.setResolution(resolution); + this.resize(baseTexture.width, baseTexture.height, false); + }; + + /** + * A short hand way of creating a render texture. + * + * @param {object} [options] - Options + * @param {number} [options.width=100] - The width of the render texture + * @param {number} [options.height=100] - The height of the render texture + * @param {number} [options.scaleMode=PIXI.settings.SCALE_MODE] - See {@link PIXI.SCALE_MODES} for possible values + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the texture being generated + * @return {PIXI.RenderTexture} The new render texture + */ + RenderTexture.create = function create (options) + { + // fallback, old-style: create(width, height, scaleMode, resolution) + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + options = { + width: options, + height: arguments[1], + scaleMode: arguments[2], + resolution: arguments[3], + }; + /* eslint-enable prefer-rest-params */ + } + + return new RenderTexture(new BaseRenderTexture(options)); + }; + + return RenderTexture; +}(Texture)); + +/** + * Experimental! + * + * Texture pool, used by FilterSystem and plugins + * Stores collection of temporary pow2 or screen-sized renderTextures + * + * If you use custom RenderTexturePool for your filters, you can use methods + * `getFilterTexture` and `returnFilterTexture` same as in + * + * @class + * @memberof PIXI + */ +var RenderTexturePool = function RenderTexturePool(textureOptions) +{ + this.texturePool = {}; + this.textureOptions = textureOptions || {}; + /** + * Allow renderTextures of the same size as screen, not just pow2 + * + * Automatically sets to true after `setScreenSize` + * + * @member {boolean} + * @default false + */ + this.enableFullScreen = false; + + this._pixelsWidth = 0; + this._pixelsHeight = 0; +}; + +/** + * creates of texture with params that were specified in pool constructor + * + * @param {number} realWidth width of texture in pixels + * @param {number} realHeight height of texture in pixels + * @returns {RenderTexture} + */ +RenderTexturePool.prototype.createTexture = function createTexture (realWidth, realHeight) +{ + var baseRenderTexture = new BaseRenderTexture(Object.assign({ + width: realWidth, + height: realHeight, + resolution: 1, + }, this.textureOptions)); + + return new RenderTexture(baseRenderTexture); +}; + +/** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ +RenderTexturePool.prototype.getOptimalTexture = function getOptimalTexture (minWidth, minHeight, resolution) +{ + if ( resolution === void 0 ) resolution = 1; + + var key = RenderTexturePool.SCREEN_KEY; + + minWidth *= resolution; + minHeight *= resolution; + + if (!this.enableFullScreen || minWidth !== this._pixelsWidth || minHeight !== this._pixelsHeight) + { + minWidth = nextPow2(minWidth); + minHeight = nextPow2(minHeight); + key = ((minWidth & 0xFFFF) << 16) | (minHeight & 0xFFFF); + } + + if (!this.texturePool[key]) + { + this.texturePool[key] = []; + } + + var renderTexture = this.texturePool[key].pop(); + + if (!renderTexture) + { + renderTexture = this.createTexture(minWidth, minHeight); + } + + renderTexture.filterPoolKey = key; + renderTexture.setResolution(resolution); + + return renderTexture; +}; + +/** + * Gets extra texture of the same size as input renderTexture + * + * `getFilterTexture(input, 0.5)` or `getFilterTexture(0.5, input)` + * + * @param {PIXI.RenderTexture} input renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * It overrides, it does not multiply + * @returns {PIXI.RenderTexture} + */ +RenderTexturePool.prototype.getFilterTexture = function getFilterTexture (input, resolution) +{ + var filterTexture = this.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; +}; + +/** + * Place a render texture back into the pool. + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnTexture = function returnTexture (renderTexture) +{ + var key = renderTexture.filterPoolKey; + + renderTexture.filterFrame = null; + this.texturePool[key].push(renderTexture); +}; + +/** + * Alias for returnTexture, to be compliant with FilterSystem interface + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) +{ + this.returnTexture(renderTexture); +}; + +/** + * Clears the pool + * + * @param {boolean} [destroyTextures=true] destroy all stored textures + */ +RenderTexturePool.prototype.clear = function clear (destroyTextures) +{ + destroyTextures = destroyTextures !== false; + if (destroyTextures) + { + for (var i in this.texturePool) + { + var textures = this.texturePool[i]; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + } + } + + this.texturePool = {}; +}; + +/** + * If screen size was changed, drops all screen-sized textures, + * sets new screen size, sets `enableFullScreen` to true + * + * Size is measured in pixels, `renderer.view` can be passed here, not `renderer.screen` + * + * @param {PIXI.ISize} size - Initial size of screen + */ +RenderTexturePool.prototype.setScreenSize = function setScreenSize (size) +{ + if (size.width === this._pixelsWidth + && size.height === this._pixelsHeight) + { + return; + } + + var screenKey = RenderTexturePool.SCREEN_KEY; + var textures = this.texturePool[screenKey]; + + this.enableFullScreen = size.width > 0 && size.height > 0; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + this.texturePool[screenKey] = []; + + this._pixelsWidth = size.width; + this._pixelsHeight = size.height; +}; + +/** + * Key that is used to store fullscreen renderTextures in a pool + * + * @static + * @const {string} + */ +RenderTexturePool.SCREEN_KEY = 'screen'; + +/* eslint-disable max-len */ + +/** + * Holds the information for a single attribute structure required to render geometry. + * + * This does not contain the actual data, but instead has a buffer id that maps to a {@link PIXI.Buffer} + * This can include anything from positions, uvs, normals, colors etc. + * + * @class + * @memberof PIXI + */ +var Attribute = function Attribute(buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( type === void 0 ) type = 5126; + + this.buffer = buffer; + this.size = size; + this.normalized = normalized; + this.type = type; + this.stride = stride; + this.start = start; + this.instance = instance; +}; + +/** + * Destroys the Attribute. + */ +Attribute.prototype.destroy = function destroy () +{ + this.buffer = null; +}; + +/** + * Helper function that creates an Attribute based on the information provided + * + * @static + * @param {string} buffer the id of the buffer that this attribute will look for + * @param {Number} [size=2] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 + * @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) + * @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) + * @param {Boolean} [normalized=false] should the data be normalized. + * + * @returns {PIXI.Attribute} A new {@link PIXI.Attribute} based on the information provided + */ +Attribute.from = function from (buffer, size, normalized, type, stride) +{ + return new Attribute(buffer, size, normalized, type, stride); +}; + +var UID = 0; +/* eslint-disable max-len */ + +/** + * A wrapper for data so that it can be used and uploaded by WebGL + * + * @class + * @memberof PIXI + */ +var Buffer$1 = function Buffer(data, _static, index) +{ + if ( _static === void 0 ) _static = true; + if ( index === void 0 ) index = false; + + /** + * The data in the buffer, as a typed array + * + * @member {ArrayBuffer| SharedArrayBuffer|ArrayBufferView} + */ + this.data = data || new Float32Array(1); + + /** + * A map of renderer IDs to webgl buffer + * + * @private + * @member {object} + */ + this._glBuffers = {}; + + this._updateID = 0; + + this.index = index; + + this.static = _static; + + this.id = UID++; + + this.disposeRunner = new Runner('disposeBuffer', 2); +}; + +// TODO could explore flagging only a partial upload? +/** + * flags this buffer as requiring an upload to the GPU + * @param {ArrayBuffer|SharedArrayBuffer|ArrayBufferView} [data] the data to update in the buffer. + */ +Buffer$1.prototype.update = function update (data) +{ + this.data = data || this.data; + this._updateID++; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Buffer$1.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the buffer + */ +Buffer$1.prototype.destroy = function destroy () +{ + this.dispose(); + + this.data = null; +}; + +/** + * Helper function that creates a buffer based on an array or TypedArray + * + * @static + * @param {ArrayBufferView | number[]} data the TypedArray that the buffer will store. If this is a regular Array it will be converted to a Float32Array. + * @return {PIXI.Buffer} A new Buffer based on the data provided. + */ +Buffer$1.from = function from (data) +{ + if (data instanceof Array) + { + data = new Float32Array(data); + } + + return new Buffer$1(data); +}; + +function getBufferType(array) +{ + if (array.BYTES_PER_ELEMENT === 4) + { + if (array instanceof Float32Array) + { + return 'Float32Array'; + } + else if (array instanceof Uint32Array) + { + return 'Uint32Array'; + } + + return 'Int32Array'; + } + else if (array.BYTES_PER_ELEMENT === 2) + { + if (array instanceof Uint16Array) + { + return 'Uint16Array'; + } + } + else if (array.BYTES_PER_ELEMENT === 1) + { + if (array instanceof Uint8Array) + { + return 'Uint8Array'; + } + } + + // TODO map out the rest of the array elements! + return null; +} + +/* eslint-disable object-shorthand */ +var map$2 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, +}; + +function interleaveTypedArrays(arrays, sizes) +{ + var outSize = 0; + var stride = 0; + var views = {}; + + for (var i = 0; i < arrays.length; i++) + { + stride += sizes[i]; + outSize += arrays[i].length; + } + + var buffer = new ArrayBuffer(outSize * 4); + + var out = null; + var littleOffset = 0; + + for (var i$1 = 0; i$1 < arrays.length; i$1++) + { + var size = sizes[i$1]; + var array = arrays[i$1]; + + var type = getBufferType(array); + + if (!views[type]) + { + views[type] = new map$2[type](buffer); + } + + out = views[type]; + + for (var j = 0; j < array.length; j++) + { + var indexStart = ((j / size | 0) * stride) + littleOffset; + var index = j % size; + + out[indexStart + index] = array[j]; + } + + littleOffset += size; + } + + return new Float32Array(buffer); +} + +var byteSizeMap = { 5126: 4, 5123: 2, 5121: 1 }; +var UID$1 = 0; + +/* eslint-disable object-shorthand */ +var map$1$1 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, + Uint16Array: Uint16Array, +}; + +/* eslint-disable max-len */ + +/** + * The Geometry represents a model. It consists of two components: + * - GeometryStyle - The structure of the model such as the attributes layout + * - GeometryData - the data of the model - this consists of buffers. + * This can include anything from positions, uvs, normals, colors etc. + * + * Geometry can be defined without passing in a style or data if required (thats how I prefer!) + * + * ```js + * let geometry = new PIXI.Geometry(); + * + * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2); + * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1],2) + * geometry.addIndex([0,1,2,1,3,2]) + * + * ``` + * @class + * @memberof PIXI + */ +var Geometry = function Geometry(buffers, attributes) +{ + if ( buffers === void 0 ) buffers = []; + if ( attributes === void 0 ) attributes = {}; + + this.buffers = buffers; + + this.indexBuffer = null; + + this.attributes = attributes; + + /** + * A map of renderer IDs to webgl VAOs + * + * @protected + * @type {object} + */ + this.glVertexArrayObjects = {}; + + this.id = UID$1++; + + this.instanced = false; + + /** + * Number of instances in this geometry, pass it to `GeometrySystem.draw()` + * @member {number} + * @default 1 + */ + this.instanceCount = 1; + + this.disposeRunner = new Runner('disposeGeometry', 2); + + /** + * Count of existing (not destroyed) meshes that reference this geometry + * @member {number} + */ + this.refCount = 0; +}; + +/** +* +* Adds an attribute to the geometry +* +* @param {String} id - the name of the attribute (matching up to a shader) +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it. +* @param {Number} [size=0] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 +* @param {Boolean} [normalized=false] should the data be normalized. +* @param {Number} [type=PIXI.TYPES.FLOAT] what type of number is the attribute. Check {PIXI.TYPES} to see the ones available +* @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) +* @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) +* +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addAttribute = function addAttribute (id, buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( instance === void 0 ) instance = false; + + if (!buffer) + { + throw new Error('You must pass a buffer when creating an attribute'); + } + + // check if this is a buffer! + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Float32Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + var ids = id.split('|'); + + if (ids.length > 1) + { + for (var i = 0; i < ids.length; i++) + { + this.addAttribute(ids[i], buffer, size, normalized, type); + } + + return this; + } + + var bufferIndex = this.buffers.indexOf(buffer); + + if (bufferIndex === -1) + { + this.buffers.push(buffer); + bufferIndex = this.buffers.length - 1; + } + + this.attributes[id] = new Attribute(bufferIndex, size, normalized, type, stride, start, instance); + + // assuming that if there is instanced data then this will be drawn with instancing! + this.instanced = this.instanced || instance; + + return this; +}; + +/** + * returns the requested attribute + * + * @param {String} id the name of the attribute required + * @return {PIXI.Attribute} the attribute requested. + */ +Geometry.prototype.getAttribute = function getAttribute (id) +{ + return this.attributes[id]; +}; + +/** + * returns the requested buffer + * + * @param {String} id the name of the buffer required + * @return {PIXI.Buffer} the buffer requested. + */ +Geometry.prototype.getBuffer = function getBuffer (id) +{ + return this.buffers[this.getAttribute(id).buffer]; +}; + +/** +* +* Adds an index buffer to the geometry +* The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer. +* +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it. +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addIndex = function addIndex (buffer) +{ + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Uint16Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + buffer.index = true; + this.indexBuffer = buffer; + + if (this.buffers.indexOf(buffer) === -1) + { + this.buffers.push(buffer); + } + + return this; +}; + +/** + * returns the index buffer + * + * @return {PIXI.Buffer} the index buffer. + */ +Geometry.prototype.getIndex = function getIndex () +{ + return this.indexBuffer; +}; + +/** + * this function modifies the structure so that all current attributes become interleaved into a single buffer + * This can be useful if your model remains static as it offers a little performance boost + * + * @return {PIXI.Geometry} returns self, useful for chaining. + */ +Geometry.prototype.interleave = function interleave () +{ + // a simple check to see if buffers are already interleaved.. + if (this.buffers.length === 1 || (this.buffers.length === 2 && this.indexBuffer)) { return this; } + + // assume already that no buffers are interleaved + var arrays = []; + var sizes = []; + var interleavedBuffer = new Buffer$1(); + var i; + + for (i in this.attributes) + { + var attribute = this.attributes[i]; + + var buffer = this.buffers[attribute.buffer]; + + arrays.push(buffer.data); + + sizes.push((attribute.size * byteSizeMap[attribute.type]) / 4); + + attribute.buffer = 0; + } + + interleavedBuffer.data = interleaveTypedArrays(arrays, sizes); + + for (i = 0; i < this.buffers.length; i++) + { + if (this.buffers[i] !== this.indexBuffer) + { + this.buffers[i].destroy(); + } + } + + this.buffers = [interleavedBuffer]; + + if (this.indexBuffer) + { + this.buffers.push(this.indexBuffer); + } + + return this; +}; + +Geometry.prototype.getSize = function getSize () +{ + for (var i in this.attributes) + { + var attribute = this.attributes[i]; + var buffer = this.buffers[attribute.buffer]; + + return buffer.data.length / ((attribute.stride / 4) || attribute.size); + } + + return 0; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Geometry.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the geometry. + */ +Geometry.prototype.destroy = function destroy () +{ + this.dispose(); + + this.buffers = null; + this.indexBuffer.destroy(); + + this.attributes = null; +}; + +/** + * returns a clone of the geometry + * + * @returns {PIXI.Geometry} a new clone of this geometry + */ +Geometry.prototype.clone = function clone () +{ + var geometry = new Geometry(); + + for (var i = 0; i < this.buffers.length; i++) + { + geometry.buffers[i] = new Buffer$1(this.buffers[i].data.slice()); + } + + for (var i$1 in this.attributes) + { + var attrib = this.attributes[i$1]; + + geometry.attributes[i$1] = new Attribute( + attrib.buffer, + attrib.size, + attrib.normalized, + attrib.type, + attrib.stride, + attrib.start, + attrib.instance + ); + } + + if (this.indexBuffer) + { + geometry.indexBuffer = geometry.buffers[this.buffers.indexOf(this.indexBuffer)]; + geometry.indexBuffer.index = true; + } + + return geometry; +}; + +/** + * merges an array of geometries into a new single one + * geometry attribute styles must match for this operation to work + * + * @param {PIXI.Geometry[]} geometries array of geometries to merge + * @returns {PIXI.Geometry} shiny new geometry! + */ +Geometry.merge = function merge (geometries) +{ + // todo add a geometry check! + // also a size check.. cant be too big!] + + var geometryOut = new Geometry(); + + var arrays = []; + var sizes = []; + var offsets = []; + + var geometry; + + // pass one.. get sizes.. + for (var i = 0; i < geometries.length; i++) + { + geometry = geometries[i]; + + for (var j = 0; j < geometry.buffers.length; j++) + { + sizes[j] = sizes[j] || 0; + sizes[j] += geometry.buffers[j].data.length; + offsets[j] = 0; + } + } + + // build the correct size arrays.. + for (var i$1 = 0; i$1 < geometry.buffers.length; i$1++) + { + // TODO types! + arrays[i$1] = new map$1$1[getBufferType(geometry.buffers[i$1].data)](sizes[i$1]); + geometryOut.buffers[i$1] = new Buffer$1(arrays[i$1]); + } + + // pass to set data.. + for (var i$2 = 0; i$2 < geometries.length; i$2++) + { + geometry = geometries[i$2]; + + for (var j$1 = 0; j$1 < geometry.buffers.length; j$1++) + { + arrays[j$1].set(geometry.buffers[j$1].data, offsets[j$1]); + offsets[j$1] += geometry.buffers[j$1].data.length; + } + } + + geometryOut.attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + geometryOut.indexBuffer = geometryOut.buffers[geometry.buffers.indexOf(geometry.indexBuffer)]; + geometryOut.indexBuffer.index = true; + + var offset = 0; + var stride = 0; + var offset2 = 0; + var bufferIndexToCount = 0; + + // get a buffer + for (var i$3 = 0; i$3 < geometry.buffers.length; i$3++) + { + if (geometry.buffers[i$3] !== geometry.indexBuffer) + { + bufferIndexToCount = i$3; + break; + } + } + + // figure out the stride of one buffer.. + for (var i$4 in geometry.attributes) + { + var attribute = geometry.attributes[i$4]; + + if ((attribute.buffer | 0) === bufferIndexToCount) + { + stride += ((attribute.size * byteSizeMap[attribute.type]) / 4); + } + } + + // time to off set all indexes.. + for (var i$5 = 0; i$5 < geometries.length; i$5++) + { + var indexBufferData = geometries[i$5].indexBuffer.data; + + for (var j$2 = 0; j$2 < indexBufferData.length; j$2++) + { + geometryOut.indexBuffer.data[j$2 + offset2] += offset; + } + + offset += geometry.buffers[bufferIndexToCount].data.length / (stride); + offset2 += indexBufferData.length; + } + } + + return geometryOut; +}; + +/** + * Helper class to create a quad + * + * @class + * @memberof PIXI + */ +var Quad = /*@__PURE__*/(function (Geometry) { + function Quad() + { + Geometry.call(this); + + this.addAttribute('aVertexPosition', [ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]) + .addIndex([0, 1, 3, 2]); + } + + if ( Geometry ) Quad.__proto__ = Geometry; + Quad.prototype = Object.create( Geometry && Geometry.prototype ); + Quad.prototype.constructor = Quad; + + return Quad; +}(Geometry)); + +/** + * Helper class to create a quad with uvs like in v4 + * + * @class + * @memberof PIXI + * @extends PIXI.Geometry + */ +var QuadUv = /*@__PURE__*/(function (Geometry) { + function QuadUv() + { + Geometry.call(this); + + /** + * An array of vertices + * + * @member {Float32Array} + */ + this.vertices = new Float32Array([ + -1, -1, + 1, -1, + 1, 1, + -1, 1 ]); + + /** + * The Uvs of the quad + * + * @member {Float32Array} + */ + this.uvs = new Float32Array([ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]); + + this.vertexBuffer = new Buffer$1(this.vertices); + this.uvBuffer = new Buffer$1(this.uvs); + + this.addAttribute('aVertexPosition', this.vertexBuffer) + .addAttribute('aTextureCoord', this.uvBuffer) + .addIndex([0, 1, 2, 0, 2, 3]); + } + + if ( Geometry ) QuadUv.__proto__ = Geometry; + QuadUv.prototype = Object.create( Geometry && Geometry.prototype ); + QuadUv.prototype.constructor = QuadUv; + + /** + * Maps two Rectangle to the quad. + * + * @param {PIXI.Rectangle} targetTextureFrame - the first rectangle + * @param {PIXI.Rectangle} destinationFrame - the second rectangle + * @return {PIXI.Quad} Returns itself. + */ + QuadUv.prototype.map = function map (targetTextureFrame, destinationFrame) + { + var x = 0; // destinationFrame.x / targetTextureFrame.width; + var y = 0; // destinationFrame.y / targetTextureFrame.height; + + this.uvs[0] = x; + this.uvs[1] = y; + + this.uvs[2] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[3] = y; + + this.uvs[4] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[5] = y + (destinationFrame.height / targetTextureFrame.height); + + this.uvs[6] = x; + this.uvs[7] = y + (destinationFrame.height / targetTextureFrame.height); + + x = destinationFrame.x; + y = destinationFrame.y; + + this.vertices[0] = x; + this.vertices[1] = y; + + this.vertices[2] = x + destinationFrame.width; + this.vertices[3] = y; + + this.vertices[4] = x + destinationFrame.width; + this.vertices[5] = y + destinationFrame.height; + + this.vertices[6] = x; + this.vertices[7] = y + destinationFrame.height; + + this.invalidate(); + + return this; + }; + + /** + * legacy upload method, just marks buffers dirty + * @returns {PIXI.QuadUv} Returns itself. + */ + QuadUv.prototype.invalidate = function invalidate () + { + this.vertexBuffer._updateID++; + this.uvBuffer._updateID++; + + return this; + }; + + return QuadUv; +}(Geometry)); + +var UID$2 = 0; + +/** + * Uniform group holds uniform map and some ID's for work + * + * @class + * @memberof PIXI + */ +var UniformGroup = function UniformGroup(uniforms, _static) +{ + /** + * uniform values + * @member {object} + * @readonly + */ + this.uniforms = uniforms; + + /** + * Its a group and not a single uniforms + * @member {boolean} + * @readonly + * @default true + */ + this.group = true; + + // lets generate this when the shader ? + this.syncUniforms = {}; + + /** + * dirty version + * @protected + * @member {number} + */ + this.dirtyId = 0; + + /** + * unique id + * @protected + * @member {number} + */ + this.id = UID$2++; + + /** + * Uniforms wont be changed after creation + * @member {boolean} + */ + this.static = !!_static; +}; + +UniformGroup.prototype.update = function update () +{ + this.dirtyId++; +}; + +UniformGroup.prototype.add = function add (name, uniforms, _static) +{ + this.uniforms[name] = new UniformGroup(uniforms, _static); +}; + +UniformGroup.from = function from (uniforms, _static) +{ + return new UniformGroup(uniforms, _static); +}; + +/** + * System plugin to the renderer to manage filter states. + * + * @class + * @private + */ +var FilterState = function FilterState() +{ + this.renderTexture = null; + + /** + * Target of the filters + * We store for case when custom filter wants to know the element it was applied on + * @member {PIXI.DisplayObject} + * @private + */ + this.target = null; + + /** + * Compatibility with PixiJS v4 filters + * @member {boolean} + * @default false + * @private + */ + this.legacy = false; + + /** + * Resolution of filters + * @member {number} + * @default 1 + * @private + */ + this.resolution = 1; + + // next three fields are created only for root + // re-assigned for everything else + + /** + * Source frame + * @member {PIXI.Rectangle} + * @private + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @private + */ + this.destinationFrame = new Rectangle(); + + /** + * Collection of filters + * @member {PIXI.Filter[]} + * @private + */ + this.filters = []; +}; + +/** + * clears the state + * @private + */ +FilterState.prototype.clear = function clear () +{ + this.target = null; + this.filters = null; + this.renderTexture = null; +}; + +/** + * System plugin to the renderer to manage the filters. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var FilterSystem = /*@__PURE__*/(function (System) { + function FilterSystem(renderer) + { + System.call(this, renderer); + + /** + * List of filters for the FilterSystem + * @member {Object[]} + * @readonly + */ + this.defaultFilterStack = [{}]; + + /** + * stores a bunch of PO2 textures used for filtering + * @member {Object} + */ + this.texturePool = new RenderTexturePool(); + + this.texturePool.setScreenSize(renderer.view); + + /** + * a pool for storing filter states, save us creating new ones each tick + * @member {Object[]} + */ + this.statePool = []; + + /** + * A very simple geometry used when drawing a filter effect to the screen + * @member {PIXI.Quad} + */ + this.quad = new Quad(); + + /** + * Quad UVs + * @member {PIXI.QuadUv} + */ + this.quadUv = new QuadUv(); + + /** + * Temporary rect for maths + * @type {PIXI.Rectangle} + */ + this.tempRect = new Rectangle(); + + /** + * Active state + * @member {object} + */ + this.activeState = {}; + + /** + * This uniform group is attached to filter uniforms when used + * @member {PIXI.UniformGroup} + * @property {PIXI.Rectangle} outputFrame + * @property {Float32Array} inputSize + * @property {Float32Array} inputPixel + * @property {Float32Array} inputClamp + * @property {Number} resolution + * @property {Float32Array} filterArea + * @property {Fload32Array} filterClamp + */ + this.globalUniforms = new UniformGroup({ + outputFrame: this.tempRect, + inputSize: new Float32Array(4), + inputPixel: new Float32Array(4), + inputClamp: new Float32Array(4), + resolution: 1, + + // legacy variables + filterArea: new Float32Array(4), + filterClamp: new Float32Array(4), + }, true); + + this._pixelsWidth = renderer.view.width; + this._pixelsHeight = renderer.view.height; + } + + if ( System ) FilterSystem.__proto__ = System; + FilterSystem.prototype = Object.create( System && System.prototype ); + FilterSystem.prototype.constructor = FilterSystem; + + /** + * Adds a new filter to the System. + * + * @param {PIXI.DisplayObject} target - The target of the filter to render. + * @param {PIXI.Filter[]} filters - The filters to apply. + */ + FilterSystem.prototype.push = function push (target, filters) + { + var renderer = this.renderer; + var filterStack = this.defaultFilterStack; + var state = this.statePool.pop() || new FilterState(); + + var resolution = filters[0].resolution; + var padding = filters[0].padding; + var autoFit = filters[0].autoFit; + var legacy = filters[0].legacy; + + for (var i = 1; i < filters.length; i++) + { + var filter = filters[i]; + + // lets use the lowest resolution.. + resolution = Math.min(resolution, filter.resolution); + // and the largest amount of padding! + padding = Math.max(padding, filter.padding); + // only auto fit if all filters are autofit + autoFit = autoFit || filter.autoFit; + + legacy = legacy || filter.legacy; + } + + if (filterStack.length === 1) + { + this.defaultFilterStack[0].renderTexture = renderer.renderTexture.current; + } + + filterStack.push(state); + + state.resolution = resolution; + + state.legacy = legacy; + + state.target = target; + + state.sourceFrame.copyFrom(target.filterArea || target.getBounds(true)); + + state.sourceFrame.pad(padding); + if (autoFit) + { + state.sourceFrame.fit(this.renderer.renderTexture.sourceFrame); + } + + // round to whole number based on resolution + state.sourceFrame.ceil(resolution); + + state.renderTexture = this.getOptimalFilterTexture(state.sourceFrame.width, state.sourceFrame.height, resolution); + state.filters = filters; + + state.destinationFrame.width = state.renderTexture.width; + state.destinationFrame.height = state.renderTexture.height; + + state.renderTexture.filterFrame = state.sourceFrame; + + renderer.renderTexture.bind(state.renderTexture, state.sourceFrame);// /, state.destinationFrame); + renderer.renderTexture.clear(); + }; + + /** + * Pops off the filter and applies it. + * + */ + FilterSystem.prototype.pop = function pop () + { + var filterStack = this.defaultFilterStack; + var state = filterStack.pop(); + var filters = state.filters; + + this.activeState = state; + + var globalUniforms = this.globalUniforms.uniforms; + + globalUniforms.outputFrame = state.sourceFrame; + globalUniforms.resolution = state.resolution; + + var inputSize = globalUniforms.inputSize; + var inputPixel = globalUniforms.inputPixel; + var inputClamp = globalUniforms.inputClamp; + + inputSize[0] = state.destinationFrame.width; + inputSize[1] = state.destinationFrame.height; + inputSize[2] = 1.0 / inputSize[0]; + inputSize[3] = 1.0 / inputSize[1]; + + inputPixel[0] = inputSize[0] * state.resolution; + inputPixel[1] = inputSize[1] * state.resolution; + inputPixel[2] = 1.0 / inputPixel[0]; + inputPixel[3] = 1.0 / inputPixel[1]; + + inputClamp[0] = 0.5 * inputPixel[2]; + inputClamp[1] = 0.5 * inputPixel[3]; + inputClamp[2] = (state.sourceFrame.width * inputSize[2]) - (0.5 * inputPixel[2]); + inputClamp[3] = (state.sourceFrame.height * inputSize[3]) - (0.5 * inputPixel[3]); + + // only update the rect if its legacy.. + if (state.legacy) + { + var filterArea = globalUniforms.filterArea; + + filterArea[0] = state.destinationFrame.width; + filterArea[1] = state.destinationFrame.height; + filterArea[2] = state.sourceFrame.x; + filterArea[3] = state.sourceFrame.y; + + globalUniforms.filterClamp = globalUniforms.inputClamp; + } + + this.globalUniforms.update(); + + var lastState = filterStack[filterStack.length - 1]; + + if (filters.length === 1) + { + filters[0].apply(this, state.renderTexture, lastState.renderTexture, false, state); + + this.returnFilterTexture(state.renderTexture); + } + else + { + var flip = state.renderTexture; + var flop = this.getOptimalFilterTexture( + flip.width, + flip.height, + state.resolution + ); + + flop.filterFrame = flip.filterFrame; + + var i = 0; + + for (i = 0; i < filters.length - 1; ++i) + { + filters[i].apply(this, flip, flop, true, state); + + var t = flip; + + flip = flop; + flop = t; + } + + filters[i].apply(this, flip, lastState.renderTexture, false, state); + + this.returnFilterTexture(flip); + this.returnFilterTexture(flop); + } + + state.clear(); + this.statePool.push(state); + }; + + /** + * Draws a filter. + * + * @param {PIXI.Filter} filter - The filter to draw. + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + */ + FilterSystem.prototype.applyFilter = function applyFilter (filter, input, output, clear) + { + var renderer = this.renderer; + + renderer.renderTexture.bind(output, output ? output.filterFrame : null); + + if (clear) + { + // gl.disable(gl.SCISSOR_TEST); + renderer.renderTexture.clear(); + // gl.enable(gl.SCISSOR_TEST); + } + + // set the uniforms.. + filter.uniforms.uSampler = input; + filter.uniforms.filterGlobals = this.globalUniforms; + + // TODO make it so that the order of this does not matter.. + // because it does at the moment cos of global uniforms. + // they need to get resynced + + renderer.state.set(filter.state); + renderer.shader.bind(filter); + + if (filter.legacy) + { + this.quadUv.map(input._frame, input.filterFrame); + + renderer.geometry.bind(this.quadUv); + renderer.geometry.draw(DRAW_MODES.TRIANGLES); + } + else + { + renderer.geometry.bind(this.quad); + renderer.geometry.draw(DRAW_MODES.TRIANGLE_STRIP); + } + }; + + /** + * Multiply _input normalized coordinates_ to this matrix to get _sprite texture normalized coordinates_. + * + * Use `outputMatrix * vTextureCoord` in the shader. + * + * @param {PIXI.Matrix} outputMatrix - The matrix to output to. + * @param {PIXI.Sprite} sprite - The sprite to map to. + * @return {PIXI.Matrix} The mapped matrix. + */ + FilterSystem.prototype.calculateSpriteMatrix = function calculateSpriteMatrix (outputMatrix, sprite) + { + var ref = this.activeState; + var sourceFrame = ref.sourceFrame; + var destinationFrame = ref.destinationFrame; + var ref$1 = sprite._texture; + var orig = ref$1.orig; + var mappedMatrix = outputMatrix.set(destinationFrame.width, 0, 0, + destinationFrame.height, sourceFrame.x, sourceFrame.y); + var worldTransform = sprite.worldTransform.copyTo(Matrix.TEMP_MATRIX); + + worldTransform.invert(); + mappedMatrix.prepend(worldTransform); + mappedMatrix.scale(1.0 / orig.width, 1.0 / orig.height); + mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y); + + return mappedMatrix; + }; + + /** + * Destroys this Filter System. + */ + FilterSystem.prototype.destroy = function destroy () + { + // Those textures has to be destroyed by RenderTextureSystem or FramebufferSystem + this.texturePool.clear(false); + }; + + /** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ + FilterSystem.prototype.getOptimalFilterTexture = function getOptimalFilterTexture (minWidth, minHeight, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + return this.texturePool.getOptimalTexture(minWidth, minHeight, resolution); + }; + + /** + * Gets extra render texture to use inside current filter + * To be compliant with older filters, you can use params in any order + * + * @param {PIXI.RenderTexture} [input] renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * @returns {PIXI.RenderTexture} + */ + FilterSystem.prototype.getFilterTexture = function getFilterTexture (input, resolution) + { + if (typeof input === 'number') + { + var swap = input; + + input = resolution; + resolution = swap; + } + + input = input || this.activeState.renderTexture; + + var filterTexture = this.texturePool.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; + }; + + /** + * Frees a render texture back into the pool. + * + * @param {PIXI.RenderTexture} renderTexture - The renderTarget to free + */ + FilterSystem.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) + { + this.texturePool.returnTexture(renderTexture); + }; + + /** + * Empties the texture pool. + */ + FilterSystem.prototype.emptyPool = function emptyPool () + { + this.texturePool.clear(true); + }; + + /** + * calls `texturePool.resize()`, affects fullScreen renderTextures + */ + FilterSystem.prototype.resize = function resize () + { + this.texturePool.setScreenSize(this.renderer.view); + }; + + return FilterSystem; +}(System)); + +/** + * Base for a common object renderer that can be used as a + * system renderer plugin. + * + * @class + * @extends PIXI.System + * @memberof PIXI + */ +var ObjectRenderer = function ObjectRenderer(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Stub method that should be used to empty the current + * batch by rendering objects now. + */ +ObjectRenderer.prototype.flush = function flush () +{ + // flush! +}; + +/** + * Generic destruction method that frees all resources. This + * should be called by subclasses. + */ +ObjectRenderer.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Stub method that initializes any state required before + * rendering starts. It is different from the `prerender` + * signal, which occurs every frame, in that it is called + * whenever an object requests _this_ renderer specifically. + */ +ObjectRenderer.prototype.start = function start () +{ + // set the shader.. +}; + +/** + * Stops the renderer. It should free up any state and + * become dormant. + */ +ObjectRenderer.prototype.stop = function stop () +{ + this.flush(); +}; + +/** + * Keeps the object to render. It doesn't have to be + * rendered immediately. + * + * @param {PIXI.DisplayObject} object - The object to render. + */ +ObjectRenderer.prototype.render = function render (object) // eslint-disable-line no-unused-vars +{ + // render the object +}; + +/** + * System plugin to the renderer to manage batching. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var BatchSystem = /*@__PURE__*/(function (System) { + function BatchSystem(renderer) + { + System.call(this, renderer); + + /** + * An empty renderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.emptyRenderer = new ObjectRenderer(renderer); + + /** + * The currently active ObjectRenderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.currentRenderer = this.emptyRenderer; + } + + if ( System ) BatchSystem.__proto__ = System; + BatchSystem.prototype = Object.create( System && System.prototype ); + BatchSystem.prototype.constructor = BatchSystem; + + /** + * Changes the current renderer to the one given in parameter + * + * @param {PIXI.ObjectRenderer} objectRenderer - The object renderer to use. + */ + BatchSystem.prototype.setObjectRenderer = function setObjectRenderer (objectRenderer) + { + if (this.currentRenderer === objectRenderer) + { + return; + } + + this.currentRenderer.stop(); + this.currentRenderer = objectRenderer; + + this.currentRenderer.start(); + }; + + /** + * This should be called if you wish to do some custom rendering + * It will basically render anything that may be batched up such as sprites + */ + BatchSystem.prototype.flush = function flush () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + /** + * Reset the system to an empty renderer + */ + BatchSystem.prototype.reset = function reset () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + return BatchSystem; +}(System)); + +/** + * The maximum support for using WebGL. If a device does not + * support WebGL version, for instance WebGL 2, it will still + * attempt to fallback support to WebGL 1. If you want to + * explicitly remove feature support to target a more stable + * baseline, prefer a lower environment. + * + * Due to {@link https://bugs.chromium.org/p/chromium/issues/detail?id=934823|bug in chromium} + * we disable webgl2 by default for all non-apple mobile devices. + * + * @static + * @name PREFER_ENV + * @memberof PIXI.settings + * @type {number} + * @default PIXI.ENV.WEBGL2 + */ +settings.PREFER_ENV = isMobile.any ? ENV.WEBGL : ENV.WEBGL2; + +var CONTEXT_UID = 0; + +/** + * System plugin to the renderer to manage the context. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var ContextSystem = /*@__PURE__*/(function (System) { + function ContextSystem(renderer) + { + System.call(this, renderer); + + /** + * Either 1 or 2 to reflect the WebGL version being used + * @member {number} + * @readonly + */ + this.webGLVersion = 1; + + /** + * Extensions being used + * @member {object} + * @readonly + * @property {WEBGL_draw_buffers} drawBuffers - WebGL v1 extension + * @property {WEBGL_depth_texture} depthTexture - WebGL v1 extension + * @property {OES_texture_float} floatTexture - WebGL v1 extension + * @property {WEBGL_lose_context} loseContext - WebGL v1 extension + * @property {OES_vertex_array_object} vertexArrayObject - WebGL v1 extension + * @property {EXT_texture_filter_anisotropic} anisotropicFiltering - WebGL v1 and v2 extension + */ + this.extensions = {}; + + // Bind functions + this.handleContextLost = this.handleContextLost.bind(this); + this.handleContextRestored = this.handleContextRestored.bind(this); + + renderer.view.addEventListener('webglcontextlost', this.handleContextLost, false); + renderer.view.addEventListener('webglcontextrestored', this.handleContextRestored, false); + } + + if ( System ) ContextSystem.__proto__ = System; + ContextSystem.prototype = Object.create( System && System.prototype ); + ContextSystem.prototype.constructor = ContextSystem; + + var prototypeAccessors = { isLost: { configurable: true } }; + + /** + * `true` if the context is lost + * @member {boolean} + * @readonly + */ + prototypeAccessors.isLost.get = function () + { + return (!this.gl || this.gl.isContextLost()); + }; + + /** + * Handle the context change event + * @param {WebGLRenderingContext} gl new webgl context + */ + ContextSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + + // restore a context if it was previously lost + if (gl.isContextLost() && gl.getExtension('WEBGL_lose_context')) + { + gl.getExtension('WEBGL_lose_context').restoreContext(); + } + }; + + /** + * Initialize the context + * + * @protected + * @param {WebGLRenderingContext} gl - WebGL context + */ + ContextSystem.prototype.initFromContext = function initFromContext (gl) + { + this.gl = gl; + this.validateContext(gl); + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + this.renderer.runners.contextChange.run(gl); + }; + + /** + * Initialize from context options + * + * @protected + * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext + * @param {object} options - context attributes + */ + ContextSystem.prototype.initFromOptions = function initFromOptions (options) + { + var gl = this.createContext(this.renderer.view, options); + + this.initFromContext(gl); + }; + + /** + * Helper class to create a WebGL Context + * + * @param canvas {HTMLCanvasElement} the canvas element that we will get the context from + * @param options {object} An options object that gets passed in to the canvas element containing the context attributes + * @see https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement/getContext + * @return {WebGLRenderingContext} the WebGL context + */ + ContextSystem.prototype.createContext = function createContext (canvas, options) + { + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', options); + } + + if (gl) + { + this.webGLVersion = 2; + } + else + { + this.webGLVersion = 1; + + gl = canvas.getContext('webgl', options) + || canvas.getContext('experimental-webgl', options); + + if (!gl) + { + // fail, not able to get a context + throw new Error('This browser does not support WebGL. Try using the canvas renderer'); + } + } + + this.gl = gl; + + this.getExtensions(); + + return gl; + }; + + /** + * Auto-populate the extensions + * + * @protected + */ + ContextSystem.prototype.getExtensions = function getExtensions () + { + // time to set up default extensions that Pixi uses. + var ref = this; + var gl = ref.gl; + + if (this.webGLVersion === 1) + { + Object.assign(this.extensions, { + drawBuffers: gl.getExtension('WEBGL_draw_buffers'), + depthTexture: gl.getExtension('WEBKIT_WEBGL_depth_texture'), + loseContext: gl.getExtension('WEBGL_lose_context'), + vertexArrayObject: gl.getExtension('OES_vertex_array_object') + || gl.getExtension('MOZ_OES_vertex_array_object') + || gl.getExtension('WEBKIT_OES_vertex_array_object'), + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + uint32ElementIndex: gl.getExtension('OES_element_index_uint'), + // Floats and half-floats + floatTexture: gl.getExtension('OES_texture_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + textureHalfFloat: gl.getExtension('OES_texture_half_float'), + textureHalfFloatLinear: gl.getExtension('OES_texture_half_float_linear'), + }); + } + else if (this.webGLVersion === 2) + { + Object.assign(this.extensions, { + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + // Floats and half-floats + colorBufferFloat: gl.getExtension('EXT_color_buffer_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + }); + } + }; + + /** + * Handles a lost webgl context + * + * @protected + * @param {WebGLContextEvent} event - The context lost event. + */ + ContextSystem.prototype.handleContextLost = function handleContextLost (event) + { + event.preventDefault(); + }; + + /** + * Handles a restored webgl context + * + * @protected + */ + ContextSystem.prototype.handleContextRestored = function handleContextRestored () + { + this.renderer.runners.contextChange.run(this.gl); + }; + + ContextSystem.prototype.destroy = function destroy () + { + var view = this.renderer.view; + + // remove listeners + view.removeEventListener('webglcontextlost', this.handleContextLost); + view.removeEventListener('webglcontextrestored', this.handleContextRestored); + + this.gl.useProgram(null); + + if (this.extensions.loseContext) + { + this.extensions.loseContext.loseContext(); + } + }; + + /** + * Handle the post-render runner event + * + * @protected + */ + ContextSystem.prototype.postrender = function postrender () + { + this.gl.flush(); + }; + + /** + * Validate context + * + * @protected + * @param {WebGLRenderingContext} gl - Render context + */ + ContextSystem.prototype.validateContext = function validateContext (gl) + { + var attributes = gl.getContextAttributes(); + + // this is going to be fairly simple for now.. but at least we have room to grow! + if (!attributes.stencil) + { + /* eslint-disable max-len */ + + /* eslint-disable no-console */ + console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly'); + /* eslint-enable no-console */ + + /* eslint-enable max-len */ + } + }; + + Object.defineProperties( ContextSystem.prototype, prototypeAccessors ); + + return ContextSystem; +}(System)); + +/** + * System plugin to the renderer to manage framebuffers. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var FramebufferSystem = /*@__PURE__*/(function (System) { + function FramebufferSystem(renderer) + { + System.call(this, renderer); + + /** + * A list of managed framebuffers + * @member {PIXI.Framebuffer[]} + * @readonly + */ + this.managedFramebuffers = []; + + /** + * Framebuffer value that shows that we don't know what is bound + * @member {Framebuffer} + * @readonly + */ + this.unknownFramebuffer = new Framebuffer(10, 10); + } + + if ( System ) FramebufferSystem.__proto__ = System; + FramebufferSystem.prototype = Object.create( System && System.prototype ); + FramebufferSystem.prototype.constructor = FramebufferSystem; + + var prototypeAccessors = { size: { configurable: true } }; + + /** + * Sets up the renderer context and necessary buffers. + */ + FramebufferSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + this.hasMRT = true; + this.writeDepthTexture = true; + + this.disposeAll(true); + + // webgl2 + if (this.renderer.context.webGLVersion === 1) + { + // webgl 1! + var nativeDrawBuffersExtension = this.renderer.context.extensions.drawBuffers; + var nativeDepthTextureExtension = this.renderer.context.extensions.depthTexture; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeDrawBuffersExtension = null; + nativeDepthTextureExtension = null; + } + + if (nativeDrawBuffersExtension) + { + gl.drawBuffers = function (activeTextures) { return nativeDrawBuffersExtension.drawBuffersWEBGL(activeTextures); }; + } + else + { + this.hasMRT = false; + gl.drawBuffers = function () { + // empty + }; + } + + if (!nativeDepthTextureExtension) + { + this.writeDepthTexture = false; + } + } + }; + + /** + * Bind a framebuffer + * + * @param {PIXI.Framebuffer} framebuffer + * @param {PIXI.Rectangle} [frame] frame, default is framebuffer size + */ + FramebufferSystem.prototype.bind = function bind (framebuffer, frame) + { + var ref = this; + var gl = ref.gl; + + if (framebuffer) + { + // TODO caching layer! + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID] || this.initFramebuffer(framebuffer); + + if (this.current !== framebuffer) + { + this.current = framebuffer; + gl.bindFramebuffer(gl.FRAMEBUFFER, fbo.framebuffer); + } + // make sure all textures are unbound.. + + // now check for updates... + if (fbo.dirtyId !== framebuffer.dirtyId) + { + fbo.dirtyId = framebuffer.dirtyId; + + if (fbo.dirtyFormat !== framebuffer.dirtyFormat) + { + fbo.dirtyFormat = framebuffer.dirtyFormat; + this.updateFramebuffer(framebuffer); + } + else if (fbo.dirtySize !== framebuffer.dirtySize) + { + fbo.dirtySize = framebuffer.dirtySize; + this.resizeFramebuffer(framebuffer); + } + } + + for (var i = 0; i < framebuffer.colorTextures.length; i++) + { + if (framebuffer.colorTextures[i].texturePart) + { + this.renderer.texture.unbind(framebuffer.colorTextures[i].texture); + } + else + { + this.renderer.texture.unbind(framebuffer.colorTextures[i]); + } + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.unbind(framebuffer.depthTexture); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, framebuffer.width, framebuffer.height); + } + } + else + { + if (this.current) + { + this.current = null; + gl.bindFramebuffer(gl.FRAMEBUFFER, null); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, this.renderer.width, this.renderer.height); + } + } + }; + + /** + * Set the WebGLRenderingContext's viewport. + * + * @param {Number} x - X position of viewport + * @param {Number} y - Y position of viewport + * @param {Number} width - Width of viewport + * @param {Number} height - Height of viewport + */ + FramebufferSystem.prototype.setViewport = function setViewport (x, y, width, height) + { + var v = this.viewport; + + if (v.width !== width || v.height !== height || v.x !== x || v.y !== y) + { + v.x = x; + v.y = y; + v.width = width; + v.height = height; + + this.gl.viewport(x, y, width, height); + } + }; + + /** + * Get the size of the current width and height. Returns object with `width` and `height` values. + * + * @member {object} + * @readonly + */ + prototypeAccessors.size.get = function () + { + if (this.current) + { + // TODO store temp + return { x: 0, y: 0, width: this.current.width, height: this.current.height }; + } + + return { x: 0, y: 0, width: this.renderer.width, height: this.renderer.height }; + }; + + /** + * Clear the color of the context + * + * @param {Number} r - Red value from 0 to 1 + * @param {Number} g - Green value from 0 to 1 + * @param {Number} b - Blue value from 0 to 1 + * @param {Number} a - Alpha value from 0 to 1 + */ + FramebufferSystem.prototype.clear = function clear (r, g, b, a) + { + var ref = this; + var gl = ref.gl; + + // TODO clear color can be set only one right? + gl.clearColor(r, g, b, a); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + }; + + /** + * Initialize framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.initFramebuffer = function initFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + // TODO - make this a class? + var fbo = { + framebuffer: gl.createFramebuffer(), + stencil: null, + dirtyId: 0, + dirtyFormat: 0, + dirtySize: 0, + }; + + framebuffer.glFramebuffers[this.CONTEXT_UID] = fbo; + + this.managedFramebuffers.push(framebuffer); + framebuffer.disposeRunner.add(this); + + return fbo; + }; + + /** + * Resize the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.resizeFramebuffer = function resizeFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (fbo.stencil) + { + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + } + + var colorTextures = framebuffer.colorTextures; + + for (var i = 0; i < colorTextures.length; i++) + { + this.renderer.texture.bind(colorTextures[i], 0); + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.bind(framebuffer.depthTexture, 0); + } + }; + + /** + * Update the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.updateFramebuffer = function updateFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + // bind the color texture + var colorTextures = framebuffer.colorTextures; + + var count = colorTextures.length; + + if (!gl.drawBuffers) + { + count = Math.min(count, 1); + } + + var activeTextures = []; + + for (var i = 0; i < count; i++) + { + var texture = framebuffer.colorTextures[i]; + + if (texture.texturePart) + { + this.renderer.texture.bind(texture.texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_CUBE_MAP_NEGATIVE_X + texture.side, + texture.texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + else + { + this.renderer.texture.bind(texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_2D, + texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + + activeTextures.push(gl.COLOR_ATTACHMENT0 + i); + } + + if (activeTextures.length > 1) + { + gl.drawBuffers(activeTextures); + } + + if (framebuffer.depthTexture) + { + var writeDepthTexture = this.writeDepthTexture; + + if (writeDepthTexture) + { + var depthTexture = framebuffer.depthTexture; + + this.renderer.texture.bind(depthTexture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.DEPTH_ATTACHMENT, + gl.TEXTURE_2D, + depthTexture._glTextures[this.CONTEXT_UID].texture, + 0); + } + } + + if (!fbo.stencil && (framebuffer.stencil || framebuffer.depth)) + { + fbo.stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + // TODO.. this is depth AND stencil? + if (!framebuffer.depthTexture) + { // you can't have both, so one should take priority if enabled + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, fbo.stencil); + } + } + }; + + /** + * Disposes framebuffer + * @param {PIXI.Framebuffer} framebuffer framebuffer that has to be disposed of + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeFramebuffer = function disposeFramebuffer (framebuffer, contextLost) + { + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + var gl = this.gl; + + if (!fbo) + { + return; + } + + delete framebuffer.glFramebuffers[this.CONTEXT_UID]; + + var index = this.managedFramebuffers.indexOf(framebuffer); + + if (index >= 0) + { + this.managedFramebuffers.splice(index, 1); + } + + framebuffer.disposeRunner.remove(this); + + if (!contextLost) + { + gl.deleteFramebuffer(fbo.framebuffer); + if (fbo.stencil) + { + gl.deleteRenderbuffer(fbo.stencil); + } + } + }; + + /** + * Disposes all framebuffers, but not textures bound to them + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeAll = function disposeAll (contextLost) + { + var list = this.managedFramebuffers; + + this.managedFramebuffers = []; + + for (var i = 0; i < list.length; i++) + { + this.disposeFramebuffer(list[i], contextLost); + } + }; + + /** + * Forcing creation of stencil buffer for current framebuffer, if it wasn't done before. + * Used by MaskSystem, when its time to use stencil mask for Graphics element. + * + * Its an alternative for public lazy `framebuffer.enableStencil`, in case we need stencil without rebind. + * + * @private + */ + FramebufferSystem.prototype.forceStencil = function forceStencil () + { + var framebuffer = this.current; + + if (!framebuffer) + { + return; + } + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (!fbo || fbo.stencil) + { + return; + } + framebuffer.enableStencil(); + + var w = framebuffer.width; + var h = framebuffer.height; + var gl = this.gl; + var stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, w, h); + + fbo.stencil = stencil; + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, stencil); + }; + + /** + * resets framebuffer stored state, binds screen framebuffer + * + * should be called before renderTexture reset() + */ + FramebufferSystem.prototype.reset = function reset () + { + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + }; + + Object.defineProperties( FramebufferSystem.prototype, prototypeAccessors ); + + return FramebufferSystem; +}(System)); + +var GLBuffer = function GLBuffer(buffer) +{ + this.buffer = buffer; + this.updateID = -1; + this.byteLength = -1; + this.refCount = 0; +}; + +var byteSizeMap$1 = { 5126: 4, 5123: 2, 5121: 1 }; + +/** + * System plugin to the renderer to manage geometry. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var GeometrySystem = /*@__PURE__*/(function (System) { + function GeometrySystem(renderer) + { + System.call(this, renderer); + + this._activeGeometry = null; + this._activeVao = null; + + /** + * `true` if we has `*_vertex_array_object` extension + * @member {boolean} + * @readonly + */ + this.hasVao = true; + + /** + * `true` if has `ANGLE_instanced_arrays` extension + * @member {boolean} + * @readonly + */ + this.hasInstance = true; + + /** + * `true` if support `gl.UNSIGNED_INT` in `gl.drawElements` or `gl.drawElementsInstanced` + * @member {boolean} + * @readonly + */ + this.canUseUInt32ElementIndex = false; + + /** + * A cache of currently bound buffer, + * contains only two members with keys ARRAY_BUFFER and ELEMENT_ARRAY_BUFFER + * @member {Object.} + * @readonly + */ + this.boundBuffers = {}; + + /** + * Cache for all geometries by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedGeometries = {}; + + /** + * Cache for all buffers by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedBuffers = {}; + } + + if ( System ) GeometrySystem.__proto__ = System; + GeometrySystem.prototype = Object.create( System && System.prototype ); + GeometrySystem.prototype.constructor = GeometrySystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + GeometrySystem.prototype.contextChange = function contextChange () + { + this.disposeAll(true); + + var gl = this.gl = this.renderer.gl; + var context = this.renderer.context; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + // webgl2 + if (!gl.createVertexArray) + { + // webgl 1! + var nativeVaoExtension = this.renderer.context.extensions.vertexArrayObject; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeVaoExtension = null; + } + + if (nativeVaoExtension) + { + gl.createVertexArray = function () { return nativeVaoExtension.createVertexArrayOES(); }; + + gl.bindVertexArray = function (vao) { return nativeVaoExtension.bindVertexArrayOES(vao); }; + + gl.deleteVertexArray = function (vao) { return nativeVaoExtension.deleteVertexArrayOES(vao); }; + } + else + { + this.hasVao = false; + gl.createVertexArray = function () { + // empty + }; + + gl.bindVertexArray = function () { + // empty + }; + + gl.deleteVertexArray = function () { + // empty + }; + } + } + + if (!gl.vertexAttribDivisor) + { + var instanceExt = gl.getExtension('ANGLE_instanced_arrays'); + + if (instanceExt) + { + gl.vertexAttribDivisor = function (a, b) { return instanceExt.vertexAttribDivisorANGLE(a, b); }; + + gl.drawElementsInstanced = function (a, b, c, d, e) { return instanceExt.drawElementsInstancedANGLE(a, b, c, d, e); }; + + gl.drawArraysInstanced = function (a, b, c, d) { return instanceExt.drawArraysInstancedANGLE(a, b, c, d); }; + } + else + { + this.hasInstance = false; + } + } + + this.canUseUInt32ElementIndex = context.webGLVersion === 2 || !!context.extensions.uint32ElementIndex; + }; + + /** + * Binds geometry so that is can be drawn. Creating a Vao if required + * + * @param {PIXI.Geometry} geometry instance of geometry to bind + * @param {PIXI.Shader} [shader] instance of shader to use vao for + */ + GeometrySystem.prototype.bind = function bind (geometry, shader) + { + shader = shader || this.renderer.shader.shader; + + var ref = this; + var gl = ref.gl; + + // not sure the best way to address this.. + // currently different shaders require different VAOs for the same geometry + // Still mulling over the best way to solve this one.. + // will likely need to modify the shader attribute locations at run time! + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + if (!vaos) + { + this.managedGeometries[geometry.id] = geometry; + geometry.disposeRunner.add(this); + geometry.glVertexArrayObjects[this.CONTEXT_UID] = vaos = {}; + } + + var vao = vaos[shader.program.id] || this.initGeometryVao(geometry, shader.program); + + this._activeGeometry = geometry; + + if (this._activeVao !== vao) + { + this._activeVao = vao; + + if (this.hasVao) + { + gl.bindVertexArray(vao); + } + else + { + this.activateVao(geometry, shader.program); + } + } + + // TODO - optimise later! + // don't need to loop through if nothing changed! + // maybe look to add an 'autoupdate' to geometry? + this.updateBuffers(); + }; + + /** + * Reset and unbind any active VAO and geometry + */ + GeometrySystem.prototype.reset = function reset () + { + this.unbind(); + }; + + /** + * Update buffers + * @protected + */ + GeometrySystem.prototype.updateBuffers = function updateBuffers () + { + var geometry = this._activeGeometry; + var ref = this; + var gl = ref.gl; + + for (var i = 0; i < geometry.buffers.length; i++) + { + var buffer = geometry.buffers[i]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + + if (buffer._updateID !== glBuffer.updateID) + { + glBuffer.updateID = buffer._updateID; + + // TODO can cache this on buffer! maybe added a getter / setter? + var type = buffer.index ? gl.ELEMENT_ARRAY_BUFFER : gl.ARRAY_BUFFER; + + // TODO this could change if the VAO changes... + // need to come up with a better way to cache.. + // if (this.boundBuffers[type] !== glBuffer) + // { + // this.boundBuffers[type] = glBuffer; + gl.bindBuffer(type, glBuffer.buffer); + // } + + this._boundBuffer = glBuffer; + + if (glBuffer.byteLength >= buffer.data.byteLength) + { + // offset is always zero for now! + gl.bufferSubData(type, 0, buffer.data); + } + else + { + var drawType = buffer.static ? gl.STATIC_DRAW : gl.DYNAMIC_DRAW; + + glBuffer.byteLength = buffer.data.byteLength; + gl.bufferData(type, buffer.data, drawType); + } + } + } + }; + + /** + * Check compability between a geometry and a program + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Program instance + */ + GeometrySystem.prototype.checkCompatibility = function checkCompatibility (geometry, program) + { + // geometry must have at least all the attributes that the shader requires. + var geometryAttributes = geometry.attributes; + var shaderAttributes = program.attributeData; + + for (var j in shaderAttributes) + { + if (!geometryAttributes[j]) + { + throw new Error(("shader and geometry incompatible, geometry missing the \"" + j + "\" attribute")); + } + } + }; + + /** + * Takes a geometry and program and generates a unique signature for them. + * + * @param {PIXI.Geometry} geometry to get signature from + * @param {PIXI.Program} program to test geometry against + * @returns {String} Unique signature of the geometry and program + * @protected + */ + GeometrySystem.prototype.getSignature = function getSignature (geometry, program) + { + var attribs = geometry.attributes; + var shaderAttributes = program.attributeData; + + var strings = ['g', geometry.id]; + + for (var i in attribs) + { + if (shaderAttributes[i]) + { + strings.push(i); + } + } + + return strings.join('-'); + }; + + /** + * Creates or gets Vao with the same structure as the geometry and stores it on the geometry. + * If vao is created, it is bound automatically. + * + * @protected + * @param {PIXI.Geometry} geometry - Instance of geometry to to generate Vao for + * @param {PIXI.Program} program - Instance of program + */ + GeometrySystem.prototype.initGeometryVao = function initGeometryVao (geometry, program) + { + this.checkCompatibility(geometry, program); + + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + + var signature = this.getSignature(geometry, program); + + var vaoObjectHash = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + var vao = vaoObjectHash[signature]; + + if (vao) + { + // this will give us easy access to the vao + vaoObjectHash[program.id] = vao; + + return vao; + } + + var buffers = geometry.buffers; + var attributes = geometry.attributes; + var tempStride = {}; + var tempStart = {}; + + for (var j in buffers) + { + tempStride[j] = 0; + tempStart[j] = 0; + } + + for (var j$1 in attributes) + { + if (!attributes[j$1].size && program.attributeData[j$1]) + { + attributes[j$1].size = program.attributeData[j$1].size; + } + else if (!attributes[j$1].size) + { + console.warn(("PIXI Geometry attribute '" + j$1 + "' size cannot be determined (likely the bound shader does not have the attribute)")); // eslint-disable-line + } + + tempStride[attributes[j$1].buffer] += attributes[j$1].size * byteSizeMap$1[attributes[j$1].type]; + } + + for (var j$2 in attributes) + { + var attribute = attributes[j$2]; + var attribSize = attribute.size; + + if (attribute.stride === undefined) + { + if (tempStride[attribute.buffer] === attribSize * byteSizeMap$1[attribute.type]) + { + attribute.stride = 0; + } + else + { + attribute.stride = tempStride[attribute.buffer]; + } + } + + if (attribute.start === undefined) + { + attribute.start = tempStart[attribute.buffer]; + + tempStart[attribute.buffer] += attribSize * byteSizeMap$1[attribute.type]; + } + } + + vao = gl.createVertexArray(); + + gl.bindVertexArray(vao); + + // first update - and create the buffers! + // only create a gl buffer if it actually gets + for (var i = 0; i < buffers.length; i++) + { + var buffer = buffers[i]; + + if (!buffer._glBuffers[CONTEXT_UID]) + { + buffer._glBuffers[CONTEXT_UID] = new GLBuffer(gl.createBuffer()); + this.managedBuffers[buffer.id] = buffer; + buffer.disposeRunner.add(this); + } + + buffer._glBuffers[CONTEXT_UID].refCount++; + } + + // TODO - maybe make this a data object? + // lets wait to see if we need to first! + + this.activateVao(geometry, program); + + this._activeVao = vao; + + // add it to the cache! + vaoObjectHash[program.id] = vao; + vaoObjectHash[signature] = vao; + + return vao; + }; + + /** + * Disposes buffer + * @param {PIXI.Buffer} buffer buffer with data + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeBuffer = function disposeBuffer (buffer, contextLost) + { + if (!this.managedBuffers[buffer.id]) + { + return; + } + + delete this.managedBuffers[buffer.id]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + var gl = this.gl; + + buffer.disposeRunner.remove(this); + + if (!glBuffer) + { + return; + } + + if (!contextLost) + { + gl.deleteBuffer(glBuffer.buffer); + } + + delete buffer._glBuffers[this.CONTEXT_UID]; + }; + + /** + * Disposes geometry + * @param {PIXI.Geometry} geometry Geometry with buffers. Only VAO will be disposed + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeGeometry = function disposeGeometry (geometry, contextLost) + { + if (!this.managedGeometries[geometry.id]) + { + return; + } + + delete this.managedGeometries[geometry.id]; + + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + var gl = this.gl; + var buffers = geometry.buffers; + + geometry.disposeRunner.remove(this); + + if (!vaos) + { + return; + } + + for (var i = 0; i < buffers.length; i++) + { + var buf = buffers[i]._glBuffers[this.CONTEXT_UID]; + + buf.refCount--; + if (buf.refCount === 0 && !contextLost) + { + this.disposeBuffer(buffers[i], contextLost); + } + } + + if (!contextLost) + { + for (var vaoId in vaos) + { + // delete only signatures, everything else are copies + if (vaoId[0] === 'g') + { + var vao = vaos[vaoId]; + + if (this._activeVao === vao) + { + this.unbind(); + } + gl.deleteVertexArray(vao); + } + } + } + + delete geometry.glVertexArrayObjects[this.CONTEXT_UID]; + }; + + /** + * dispose all WebGL resources of all managed geometries and buffers + * @param {boolean} [contextLost=false] If context was lost, we suppress `gl.delete` calls + */ + GeometrySystem.prototype.disposeAll = function disposeAll (contextLost) + { + var all = Object.keys(this.managedGeometries); + + for (var i = 0; i < all.length; i++) + { + this.disposeGeometry(this.managedGeometries[all[i]], contextLost); + } + all = Object.keys(this.managedBuffers); + for (var i$1 = 0; i$1 < all.length; i$1++) + { + this.disposeBuffer(this.managedBuffers[all[i$1]], contextLost); + } + }; + + /** + * Activate vertex array object + * + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Shader program instance + */ + GeometrySystem.prototype.activateVao = function activateVao (geometry, program) + { + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + var buffers = geometry.buffers; + var attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + // first update the index buffer if we have one.. + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, geometry.indexBuffer._glBuffers[CONTEXT_UID].buffer); + } + + var lastBuffer = null; + + // add a new one! + for (var j in attributes) + { + var attribute = attributes[j]; + var buffer = buffers[attribute.buffer]; + var glBuffer = buffer._glBuffers[CONTEXT_UID]; + + if (program.attributeData[j]) + { + if (lastBuffer !== glBuffer) + { + gl.bindBuffer(gl.ARRAY_BUFFER, glBuffer.buffer); + + lastBuffer = glBuffer; + } + + var location = program.attributeData[j].location; + + // TODO introduce state again + // we can optimise this for older devices that have no VAOs + gl.enableVertexAttribArray(location); + + gl.vertexAttribPointer(location, + attribute.size, + attribute.type || gl.FLOAT, + attribute.normalized, + attribute.stride, + attribute.start); + + if (attribute.instance) + { + // TODO calculate instance count based of this... + if (this.hasInstance) + { + gl.vertexAttribDivisor(location, 1); + } + else + { + throw new Error('geometry error, GPU Instancing is not supported on this device'); + } + } + } + } + }; + + /** + * Draw the geometry + * + * @param {Number} type - the type primitive to render + * @param {Number} [size] - the number of elements to be rendered + * @param {Number} [start] - Starting index + * @param {Number} [instanceCount] - the number of instances of the set of elements to execute + */ + GeometrySystem.prototype.draw = function draw (type, size, start, instanceCount) + { + var ref = this; + var gl = ref.gl; + var geometry = this._activeGeometry; + + // TODO.. this should not change so maybe cache the function? + + if (geometry.indexBuffer) + { + var byteSize = geometry.indexBuffer.data.BYTES_PER_ELEMENT; + var glType = byteSize === 2 ? gl.UNSIGNED_SHORT : gl.UNSIGNED_INT; + + if (byteSize === 2 || (byteSize === 4 && this.canUseUInt32ElementIndex)) + { + if (geometry.instanced) + { + /* eslint-disable max-len */ + gl.drawElementsInstanced(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize, instanceCount || 1); + /* eslint-enable max-len */ + } + else + { + /* eslint-disable max-len */ + gl.drawElements(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize); + /* eslint-enable max-len */ + } + } + else + { + console.warn('unsupported index buffer type: uint32'); + } + } + else if (geometry.instanced) + { + // TODO need a better way to calculate size.. + gl.drawArraysInstanced(type, start, size || geometry.getSize(), instanceCount || 1); + } + else + { + gl.drawArrays(type, start, size || geometry.getSize()); + } + + return this; + }; + + /** + * Unbind/reset everything + * @protected + */ + GeometrySystem.prototype.unbind = function unbind () + { + this.gl.bindVertexArray(null); + this._activeVao = null; + this._activeGeometry = null; + }; + + return GeometrySystem; +}(System)); + +/** + * @method compileProgram + * @private + * @memberof PIXI.glCore.shader + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @param fragmentSrc {string|string[]} The fragment shader source as an array of strings. + * @param attributeLocations {Object} An attribute location map that lets you manually set the attribute locations + * @return {WebGLProgram} the shader program + */ +function compileProgram(gl, vertexSrc, fragmentSrc, attributeLocations) +{ + var glVertShader = compileShader(gl, gl.VERTEX_SHADER, vertexSrc); + var glFragShader = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc); + + var program = gl.createProgram(); + + gl.attachShader(program, glVertShader); + gl.attachShader(program, glFragShader); + + // optionally, set the attributes manually for the program rather than letting WebGL decide.. + if (attributeLocations) + { + for (var i in attributeLocations) + { + gl.bindAttribLocation(program, attributeLocations[i], i); + } + } + + gl.linkProgram(program); + + // if linking fails, then log and cleanup + if (!gl.getProgramParameter(program, gl.LINK_STATUS)) + { + console.error('Pixi.js Error: Could not initialize shader.'); + console.error('gl.VALIDATE_STATUS', gl.getProgramParameter(program, gl.VALIDATE_STATUS)); + console.error('gl.getError()', gl.getError()); + + // if there is a program info log, log it + if (gl.getProgramInfoLog(program) !== '') + { + console.warn('Pixi.js Warning: gl.getProgramInfoLog()', gl.getProgramInfoLog(program)); + } + + gl.deleteProgram(program); + program = null; + } + + // clean up some shaders + gl.deleteShader(glVertShader); + gl.deleteShader(glFragShader); + + return program; +} + +/** + * @private + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param type {Number} the type, can be either VERTEX_SHADER or FRAGMENT_SHADER + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @return {WebGLShader} the shader + */ +function compileShader(gl, type, src) +{ + var shader = gl.createShader(type); + + gl.shaderSource(shader, src); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + console.warn(src); + console.error(gl.getShaderInfoLog(shader)); + + return null; + } + + return shader; +} + +/** + * @method defaultValue + * @memberof PIXI.glCore.shader + * @param type {String} Type of value + * @param size {Number} + * @private + */ +function defaultValue(type, size) +{ + switch (type) + { + case 'float': + return 0; + + case 'vec2': + return new Float32Array(2 * size); + + case 'vec3': + return new Float32Array(3 * size); + + case 'vec4': + return new Float32Array(4 * size); + + case 'int': + case 'sampler2D': + case 'sampler2DArray': + return 0; + + case 'ivec2': + return new Int32Array(2 * size); + + case 'ivec3': + return new Int32Array(3 * size); + + case 'ivec4': + return new Int32Array(4 * size); + + case 'bool': + return false; + + case 'bvec2': + + return booleanArray(2 * size); + + case 'bvec3': + return booleanArray(3 * size); + + case 'bvec4': + return booleanArray(4 * size); + + case 'mat2': + return new Float32Array([1, 0, + 0, 1]); + + case 'mat3': + return new Float32Array([1, 0, 0, + 0, 1, 0, + 0, 0, 1]); + + case 'mat4': + return new Float32Array([1, 0, 0, 0, + 0, 1, 0, 0, + 0, 0, 1, 0, + 0, 0, 0, 1]); + } + + return null; +} + +function booleanArray(size) +{ + var array = new Array(size); + + for (var i = 0; i < array.length; i++) + { + array[i] = false; + } + + return array; +} + +var unknownContext = {}; +var context = unknownContext; + +/** + * returns a little WebGL context to use for program inspection. + * + * @static + * @private + * @returns {webGL-context} a gl context to test with + */ +function getTestContext() +{ + if (context === unknownContext || context.isContextLost()) + { + var canvas = document.createElement('canvas'); + + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', {}); + } + + if (!gl) + { + gl = canvas.getContext('webgl', {}) + || canvas.getContext('experimental-webgl', {}); + + if (!gl) + { + // fail, not able to get a context + gl = null; + } + else + { + // for shader testing.. + gl.getExtension('WEBGL_draw_buffers'); + } + } + + context = gl; + } + + return context; +} + +var maxFragmentPrecision; + +function getMaxFragmentPrecision() +{ + if (!maxFragmentPrecision) + { + maxFragmentPrecision = PRECISION.MEDIUM; + var gl = getTestContext(); + + if (gl) + { + if (gl.getShaderPrecisionFormat) + { + var shaderFragment = gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT); + + maxFragmentPrecision = shaderFragment.precision ? PRECISION.HIGH : PRECISION.MEDIUM; + } + } + } + + return maxFragmentPrecision; +} + +/** + * Sets the float precision on the shader, ensuring the device supports the request precision. + * If the precision is already present, it just ensures that the device is able to handle it. + * + * @private + * @param {string} src - The shader source + * @param {string} requestedPrecision - The request float precision of the shader. Options are 'lowp', 'mediump' or 'highp'. + * @param {string} maxSupportedPrecision - The maximum precision the shader supports. + * + * @return {string} modified shader source + */ +function setPrecision(src, requestedPrecision, maxSupportedPrecision) +{ + if (src.substring(0, 9) !== 'precision') + { + // no precision supplied, so PixiJS will add the requested level. + var precision = requestedPrecision; + + // If highp is requested but not supported, downgrade precision to a level all devices support. + if (requestedPrecision === PRECISION.HIGH && maxSupportedPrecision !== PRECISION.HIGH) + { + precision = PRECISION.MEDIUM; + } + + return ("precision " + precision + " float;\n" + src); + } + else if (maxSupportedPrecision !== PRECISION.HIGH && src.substring(0, 15) === 'precision highp') + { + // precision was supplied, but at a level this device does not support, so downgrading to mediump. + return src.replace('precision highp', 'precision mediump'); + } + + return src; +} + +var GLSL_TO_SIZE = { + float: 1, + vec2: 2, + vec3: 3, + vec4: 4, + + int: 1, + ivec2: 2, + ivec3: 3, + ivec4: 4, + + bool: 1, + bvec2: 2, + bvec3: 3, + bvec4: 4, + + mat2: 4, + mat3: 9, + mat4: 16, + + sampler2D: 1, +}; + +/** + * @private + * @method mapSize + * @memberof PIXI.glCore.shader + * @param type {String} + * @return {Number} + */ +function mapSize(type) +{ + return GLSL_TO_SIZE[type]; +} + +var GL_TABLE = null; + +var GL_TO_GLSL_TYPES = { + FLOAT: 'float', + FLOAT_VEC2: 'vec2', + FLOAT_VEC3: 'vec3', + FLOAT_VEC4: 'vec4', + + INT: 'int', + INT_VEC2: 'ivec2', + INT_VEC3: 'ivec3', + INT_VEC4: 'ivec4', + + BOOL: 'bool', + BOOL_VEC2: 'bvec2', + BOOL_VEC3: 'bvec3', + BOOL_VEC4: 'bvec4', + + FLOAT_MAT2: 'mat2', + FLOAT_MAT3: 'mat3', + FLOAT_MAT4: 'mat4', + + SAMPLER_2D: 'sampler2D', + SAMPLER_CUBE: 'samplerCube', + SAMPLER_2D_ARRAY: 'sampler2DArray', +}; + +function mapType(gl, type) +{ + if (!GL_TABLE) + { + var typeNames = Object.keys(GL_TO_GLSL_TYPES); + + GL_TABLE = {}; + + for (var i = 0; i < typeNames.length; ++i) + { + var tn = typeNames[i]; + + GL_TABLE[gl[tn]] = GL_TO_GLSL_TYPES[tn]; + } + } + + return GL_TABLE[type]; +} + +// cv = CachedValue +// v = value +// ud = uniformData +// uv = uniformValue +// l = location +var GLSL_TO_SINGLE_SETTERS_CACHED = { + + float: "\n if(cv !== v)\n {\n cv.v = v;\n gl.uniform1f(location, v)\n }", + + vec2: "\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(location, v[0], v[1])\n }", + + vec3: "\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n\n gl.uniform3f(location, v[0], v[1], v[2])\n }", + + vec4: 'gl.uniform4f(location, v[0], v[1], v[2], v[3])', + + int: 'gl.uniform1i(location, v)', + ivec2: 'gl.uniform2i(location, v[0], v[1])', + ivec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + ivec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + bool: 'gl.uniform1i(location, v)', + bvec2: 'gl.uniform2i(location, v[0], v[1])', + bvec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + bvec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + mat2: 'gl.uniformMatrix2fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat4: 'gl.uniformMatrix4fv(location, false, v)', + + sampler2D: 'gl.uniform1i(location, v)', + samplerCube: 'gl.uniform1i(location, v)', + sampler2DArray: 'gl.uniform1i(location, v)', +}; + +var GLSL_TO_ARRAY_SETTERS = { + + float: "gl.uniform1fv(location, v)", + + vec2: "gl.uniform2fv(location, v)", + vec3: "gl.uniform3fv(location, v)", + vec4: 'gl.uniform4fv(location, v)', + + mat4: 'gl.uniformMatrix4fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat2: 'gl.uniformMatrix2fv(location, false, v)', + + int: 'gl.uniform1iv(location, v)', + ivec2: 'gl.uniform2iv(location, v)', + ivec3: 'gl.uniform3iv(location, v)', + ivec4: 'gl.uniform4iv(location, v)', + + bool: 'gl.uniform1iv(location, v)', + bvec2: 'gl.uniform2iv(location, v)', + bvec3: 'gl.uniform3iv(location, v)', + bvec4: 'gl.uniform4iv(location, v)', + + sampler2D: 'gl.uniform1iv(location, v)', + samplerCube: 'gl.uniform1iv(location, v)', + sampler2DArray: 'gl.uniform1iv(location, v)', +}; + +function generateUniformsSync(group, uniformData) +{ + var textureCount = 0; + var func = "var v = null;\n var cv = null\n var gl = renderer.gl"; + + for (var i in group.uniforms) + { + var data = uniformData[i]; + + if (!data) + { + if (group.uniforms[i].group) + { + func += "\n renderer.shader.syncUniformGroup(uv." + i + ");\n "; + } + + continue; + } + + // TODO && uniformData[i].value !== 0 <-- do we still need this? + if (data.type === 'float' && data.size === 1) + { + func += "\n if(uv." + i + " !== ud." + i + ".value)\n {\n ud." + i + ".value = uv." + i + "\n gl.uniform1f(ud." + i + ".location, uv." + i + ")\n }\n"; + } + /* eslint-disable max-len */ + else if ((data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray) + /* eslint-disable max-len */ + { + func += "\n renderer.texture.bind(uv." + i + ", " + textureCount + ");\n\n if(ud." + i + ".value !== " + textureCount + ")\n {\n ud." + i + ".value = " + textureCount + ";\n gl.uniform1i(ud." + i + ".location, " + textureCount + ");\n; // eslint-disable-line max-len\n }\n"; + + textureCount++; + } + else if (data.type === 'mat3' && data.size === 1) + { + if (group.uniforms[i].a !== undefined) + { + // TODO and some smart caching dirty ids here! + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ".toArray(true));\n \n"; + } + else + { + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ");\n \n"; + } + } + else if (data.type === 'vec2' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].x !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n gl.uniform2f(ud." + i + ".location, v.x, v.y);\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(ud." + i + ".location, v[0], v[1]);\n }\n \n"; + } + } + else if (data.type === 'vec4' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].width !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y || cv[2] !== v.width || cv[3] !== v.height)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n cv[2] = v.width;\n cv[3] = v.height;\n gl.uniform4f(ud." + i + ".location, v.x, v.y, v.width, v.height)\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2] || cv[3] !== v[3])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n cv[3] = v[3];\n\n gl.uniform4f(ud." + i + ".location, v[0], v[1], v[2], v[3])\n }\n \n"; + } + } + else + { + var templateType = (data.size === 1) ? GLSL_TO_SINGLE_SETTERS_CACHED : GLSL_TO_ARRAY_SETTERS; + + var template = templateType[data.type].replace('location', ("ud." + i + ".location")); + + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n " + template + ";\n"; + } + } + + return new Function('ud', 'uv', 'renderer', func); // eslint-disable-line no-new-func +} + +var fragTemplate = [ + 'precision mediump float;', + 'void main(void){', + 'float test = 0.1;', + '%forloop%', + 'gl_FragColor = vec4(0.0);', + '}' ].join('\n'); + +function checkMaxIfStatementsInShader(maxIfs, gl) +{ + if (maxIfs === 0) + { + throw new Error('Invalid value of `0` passed to `checkMaxIfStatementsInShader`'); + } + + var shader = gl.createShader(gl.FRAGMENT_SHADER); + + while (true) // eslint-disable-line no-constant-condition + { + var fragmentSrc = fragTemplate.replace(/%forloop%/gi, generateIfTestSrc(maxIfs)); + + gl.shaderSource(shader, fragmentSrc); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + maxIfs = (maxIfs / 2) | 0; + } + else + { + // valid! + break; + } + } + + return maxIfs; +} + +function generateIfTestSrc(maxIfs) +{ + var src = ''; + + for (var i = 0; i < maxIfs; ++i) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxIfs - 1) + { + src += "if(test == " + i + ".0){}"; + } + } + + return src; +} + +// Cache the result to prevent running this over and over +var unsafeEval; + +/** + * Not all platforms allow to generate function code (e.g., `new Function`). + * this provides the platform-level detection. + * + * @private + * @returns {boolean} + */ +function unsafeEvalSupported() +{ + if (typeof unsafeEval === 'boolean') + { + return unsafeEval; + } + + try + { + /* eslint-disable no-new-func */ + var func = new Function('param1', 'param2', 'param3', 'return param1[param2] === param3;'); + /* eslint-enable no-new-func */ + + unsafeEval = func({ a: 'b' }, 'a', 'b') === true; + } + catch (e) + { + unsafeEval = false; + } + + return unsafeEval; +} + +var defaultFragment = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor *= texture2D(uSampler, vTextureCoord);\n}"; + +var defaultVertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n vTextureCoord = aTextureCoord;\n}\n"; + +// import * as from '../systems/shader/shader'; + +var UID$3 = 0; + +var nameCache = {}; + +/** + * Helper class to create a shader program. + * + * @class + * @memberof PIXI + */ +var Program = function Program(vertexSrc, fragmentSrc, name) +{ + if ( name === void 0 ) name = 'pixi-shader'; + + this.id = UID$3++; + + /** + * The vertex shader. + * + * @member {string} + */ + this.vertexSrc = vertexSrc || Program.defaultVertexSrc; + + /** + * The fragment shader. + * + * @member {string} + */ + this.fragmentSrc = fragmentSrc || Program.defaultFragmentSrc; + + this.vertexSrc = this.vertexSrc.trim(); + this.fragmentSrc = this.fragmentSrc.trim(); + + if (this.vertexSrc.substring(0, 8) !== '#version') + { + name = name.replace(/\s+/g, '-'); + + if (nameCache[name]) + { + nameCache[name]++; + name += "-" + (nameCache[name]); + } + else + { + nameCache[name] = 1; + } + + this.vertexSrc = "#define SHADER_NAME " + name + "\n" + (this.vertexSrc); + this.fragmentSrc = "#define SHADER_NAME " + name + "\n" + (this.fragmentSrc); + + this.vertexSrc = setPrecision(this.vertexSrc, settings.PRECISION_VERTEX, PRECISION.HIGH); + this.fragmentSrc = setPrecision(this.fragmentSrc, settings.PRECISION_FRAGMENT, getMaxFragmentPrecision()); + } + + // currently this does not extract structs only default types + this.extractData(this.vertexSrc, this.fragmentSrc); + + // this is where we store shader references.. + this.glPrograms = {}; + + this.syncUniforms = null; +}; + +var staticAccessors$3 = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + +/** + * Extracts the data for a buy creating a small test program + * or reading the src directly. + * @protected + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + */ +Program.prototype.extractData = function extractData (vertexSrc, fragmentSrc) +{ + var gl = getTestContext(); + + if (gl) + { + var program = compileProgram(gl, vertexSrc, fragmentSrc); + + this.attributeData = this.getAttributeData(program, gl); + this.uniformData = this.getUniformData(program, gl); + + gl.deleteProgram(program); + } + else + { + this.uniformData = {}; + this.attributeData = {}; + } +}; + +/** + * returns the attribute data from the program + * @private + * + * @param {WebGLProgram} [program] - the WebGL program + * @param {WebGLRenderingContext} [gl] - the WebGL context + * + * @returns {object} the attribute data for this program + */ +Program.prototype.getAttributeData = function getAttributeData (program, gl) +{ + var attributes = {}; + var attributesArray = []; + + var totalAttributes = gl.getProgramParameter(program, gl.ACTIVE_ATTRIBUTES); + + for (var i = 0; i < totalAttributes; i++) + { + var attribData = gl.getActiveAttrib(program, i); + var type = mapType(gl, attribData.type); + + /*eslint-disable */ + var data = { + type: type, + name: attribData.name, + size: mapSize(type), + location: 0, + }; + /* eslint-enable */ + + attributes[attribData.name] = data; + attributesArray.push(data); + } + + attributesArray.sort(function (a, b) { return (a.name > b.name) ? 1 : -1; }); // eslint-disable-line no-confusing-arrow + + for (var i$1 = 0; i$1 < attributesArray.length; i$1++) + { + attributesArray[i$1].location = i$1; + } + + return attributes; +}; + +/** + * returns the uniform data from the program + * @private + * + * @param {webGL-program} [program] - the webgl program + * @param {context} [gl] - the WebGL context + * + * @returns {object} the uniform data for this program + */ +Program.prototype.getUniformData = function getUniformData (program, gl) +{ + var uniforms = {}; + + var totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS); + + // TODO expose this as a prop? + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + + for (var i = 0; i < totalUniforms; i++) + { + var uniformData = gl.getActiveUniform(program, i); + var name = uniformData.name.replace(/\[.*?\]/, ''); + + var isArray = uniformData.name.match(/\[.*?\]/, ''); + var type = mapType(gl, uniformData.type); + + /*eslint-disable */ + uniforms[name] = { + type: type, + size: uniformData.size, + isArray:isArray, + value: defaultValue(type, uniformData.size), + }; + /* eslint-enable */ + } + + return uniforms; +}; + +/** + * The default vertex shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultVertexSrc.get = function () +{ + return defaultVertex; +}; + +/** + * The default fragment shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultFragmentSrc.get = function () +{ + return defaultFragment; +}; + +/** + * A short hand function to create a program based of a vertex and fragment shader + * this method will also check to see if there is a cached program. + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Program} an shiny new Pixi shader! + */ +Program.from = function from (vertexSrc, fragmentSrc, name) +{ + var key = vertexSrc + fragmentSrc; + + var program = ProgramCache[key]; + + if (!program) + { + ProgramCache[key] = program = new Program(vertexSrc, fragmentSrc, name); + } + + return program; +}; + +Object.defineProperties( Program, staticAccessors$3 ); + +/** + * A helper class for shaders + * + * @class + * @memberof PIXI + */ +var Shader = function Shader(program, uniforms) +{ + /** + * Program that the shader uses + * + * @member {PIXI.Program} + */ + this.program = program; + + // lets see whats been passed in + // uniforms should be converted to a uniform group + if (uniforms) + { + if (uniforms instanceof UniformGroup) + { + this.uniformGroup = uniforms; + } + else + { + this.uniformGroup = new UniformGroup(uniforms); + } + } + else + { + this.uniformGroup = new UniformGroup({}); + } + + // time to build some getters and setters! + // I guess down the line this could sort of generate an instruction list rather than use dirty ids? + // does the trick for now though! + for (var i in program.uniformData) + { + if (this.uniformGroup.uniforms[i] instanceof Array) + { + this.uniformGroup.uniforms[i] = new Float32Array(this.uniformGroup.uniforms[i]); + } + } +}; + +var prototypeAccessors$2$1 = { uniforms: { configurable: true } }; + +// TODO move to shader system.. +Shader.prototype.checkUniformExists = function checkUniformExists (name, group) +{ + if (group.uniforms[name]) + { + return true; + } + + for (var i in group.uniforms) + { + var uniform = group.uniforms[i]; + + if (uniform.group) + { + if (this.checkUniformExists(name, uniform)) + { + return true; + } + } + } + + return false; +}; + +Shader.prototype.destroy = function destroy () +{ + // usage count on programs? + // remove if not used! + this.uniformGroup = null; +}; + +/** + * Shader uniform values, shortcut for `uniformGroup.uniforms` + * @readonly + * @member {object} + */ +prototypeAccessors$2$1.uniforms.get = function () +{ + return this.uniformGroup.uniforms; +}; + +/** + * A short hand function to create a shader based of a vertex and fragment shader + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Shader} an shiny new Pixi shader! + */ +Shader.from = function from (vertexSrc, fragmentSrc, uniforms) +{ + var program = Program.from(vertexSrc, fragmentSrc); + + return new Shader(program, uniforms); +}; + +Object.defineProperties( Shader.prototype, prototypeAccessors$2$1 ); + +/* eslint-disable max-len */ + +var BLEND = 0; +var OFFSET = 1; +var CULLING = 2; +var DEPTH_TEST = 3; +var WINDING = 4; + +/** + * This is a WebGL state, and is is passed The WebGL StateManager. + * + * Each mesh rendered may require WebGL to be in a different state. + * For example you may want different blend mode or to enable polygon offsets + * + * @class + * @memberof PIXI + */ +var State = function State() +{ + this.data = 0; + + this.blendMode = BLEND_MODES.NORMAL; + this.polygonOffset = 0; + + this.blend = true; + // this.depthTest = true; +}; + +var prototypeAccessors$3$1 = { blend: { configurable: true },offsets: { configurable: true },culling: { configurable: true },depthTest: { configurable: true },clockwiseFrontFace: { configurable: true },blendMode: { configurable: true },polygonOffset: { configurable: true } }; + +/** + * Activates blending of the computed fragment color values + * + * @member {boolean} + */ +prototypeAccessors$3$1.blend.get = function () +{ + return !!(this.data & (1 << BLEND)); +}; + +prototypeAccessors$3$1.blend.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << BLEND)) !== value) + { + this.data ^= (1 << BLEND); + } +}; + +/** + * Activates adding an offset to depth values of polygon's fragments + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.offsets.get = function () +{ + return !!(this.data & (1 << OFFSET)); +}; + +prototypeAccessors$3$1.offsets.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << OFFSET)) !== value) + { + this.data ^= (1 << OFFSET); + } +}; + +/** + * Activates culling of polygons. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.culling.get = function () +{ + return !!(this.data & (1 << CULLING)); +}; + +prototypeAccessors$3$1.culling.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << CULLING)) !== value) + { + this.data ^= (1 << CULLING); + } +}; + +/** + * Activates depth comparisons and updates to the depth buffer. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.depthTest.get = function () +{ + return !!(this.data & (1 << DEPTH_TEST)); +}; + +prototypeAccessors$3$1.depthTest.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << DEPTH_TEST)) !== value) + { + this.data ^= (1 << DEPTH_TEST); + } +}; + +/** + * Specifies whether or not front or back-facing polygons can be culled. + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.clockwiseFrontFace.get = function () +{ + return !!(this.data & (1 << WINDING)); +}; + +prototypeAccessors$3$1.clockwiseFrontFace.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << WINDING)) !== value) + { + this.data ^= (1 << WINDING); + } +}; + +/** + * The blend mode to be applied when this state is set. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * Setting this mode to anything other than NO_BLEND will automatically switch blending on. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ +prototypeAccessors$3$1.blendMode.get = function () +{ + return this._blendMode; +}; + +prototypeAccessors$3$1.blendMode.set = function (value) // eslint-disable-line require-jsdoc +{ + this.blend = (value !== BLEND_MODES.NONE); + this._blendMode = value; +}; + +/** + * The polygon offset. Setting this property to anything other than 0 will automatically enable polygon offset fill. + * + * @member {number} + * @default 0 + */ +prototypeAccessors$3$1.polygonOffset.get = function () +{ + return this._polygonOffset; +}; + +prototypeAccessors$3$1.polygonOffset.set = function (value) // eslint-disable-line require-jsdoc +{ + this.offsets = !!value; + this._polygonOffset = value; +}; + +State.for2d = function for2d () +{ + var state = new State(); + + state.depthTest = false; + state.blend = true; + + return state; +}; + +Object.defineProperties( State.prototype, prototypeAccessors$3$1 ); + +var defaultVertex$1 = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +var defaultFragment$1 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor = texture2D(uSampler, vTextureCoord);\n}\n"; + +/** + * Filter is a special type of WebGL shader that is applied to the screen. + * + * {@link http://pixijs.io/examples/#/filters/blur-filter.js Example} of the + * {@link PIXI.filters.BlurFilter BlurFilter}. + * + * ### Usage + * Filters can be applied to any DisplayObject or Container. + * PixiJS' `FilterSystem` renders the container into temporary Framebuffer, + * then filter renders it to the screen. + * Multiple filters can be added to the `filters` array property and stacked on each other. + * + * ``` + * const filter = new PIXI.Filter(myShaderVert, myShaderFrag, { myUniform: 0.5 }); + * const container = new PIXI.Container(); + * container.filters = [filter]; + * ``` + * + * ### Previous Version Differences + * + * In PixiJS **v3**, a filter was always applied to _whole screen_. + * + * In PixiJS **v4**, a filter can be applied _only part of the screen_. + * Developers had to create a set of uniforms to deal with coordinates. + * + * In PixiJS **v5** combines _both approaches_. + * Developers can use normal coordinates of v3 and then allow filter to use partial Framebuffers, + * bringing those extra uniforms into account. + * + * Also be aware that we have changed default vertex shader, please consult + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * ### Built-in Uniforms + * + * PixiJS viewport uses screen (CSS) coordinates, `(0, 0, renderer.screen.width, renderer.screen.height)`, + * and `projectionMatrix` uniform maps it to the gl viewport. + * + * **uSampler** + * + * The most important uniform is the input texture that container was rendered into. + * _Important note: as with all Framebuffers in PixiJS, both input and output are + * premultiplied by alpha._ + * + * By default, input normalized coordinates are passed to fragment shader with `vTextureCoord`. + * Use it to sample the input. + * + * ``` + * const fragment = ` + * varying vec2 vTextureCoord; + * uniform sampler2D uSampler; + * void main(void) + * { + * gl_FragColor = texture2D(uSampler, vTextureCoord); + * } + * `; + * + * const myFilter = new PIXI.Filter(null, fragment); + * ``` + * + * This filter is just one uniform less than {@link PIXI.filters.AlphaFilter AlphaFilter}. + * + * **outputFrame** + * + * The `outputFrame` holds the rectangle where filter is applied in screen (CSS) coordinates. + * It's the same as `renderer.screen` for a fullscreen filter. + * Only a part of `outputFrame.zw` size of temporary Framebuffer is used, + * `(0, 0, outputFrame.width, outputFrame.height)`, + * + * Filters uses this quad to normalized (0-1) space, its passed into `aVertexPosition` attribute. + * To calculate vertex position in screen space using normalized (0-1) space: + * + * ``` + * vec4 filterVertexPosition( void ) + * { + * vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy; + * return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0); + * } + * ``` + * + * **inputSize** + * + * Temporary framebuffer is different, it can be either the size of screen, either power-of-two. + * The `inputSize.xy` are size of temporary framebuffer that holds input. + * The `inputSize.zw` is inverted, it's a shortcut to evade division inside the shader. + * + * Set `inputSize.xy = outputFrame.zw` for a fullscreen filter. + * + * To calculate input normalized coordinate, you have to map it to filter normalized space. + * Multiply by `outputFrame.zw` to get input coordinate. + * Divide by `inputSize.xy` to get input normalized coordinate. + * + * ``` + * vec2 filterTextureCoord( void ) + * { + * return aVertexPosition * (outputFrame.zw * inputSize.zw); // same as /inputSize.xy + * } + * ``` + * **resolution** + * + * The `resolution` is the ratio of screen (CSS) pixels to real pixels. + * + * **inputPixel** + * + * `inputPixel.xy` is the size of framebuffer in real pixels, same as `inputSize.xy * resolution` + * `inputPixel.zw` is inverted `inputPixel.xy`. + * + * It's handy for filters that use neighbour pixels, like {@link PIXI.filters.FXAAFilter FXAAFilter}. + * + * **inputClamp** + * + * If you try to get info from outside of used part of Framebuffer - you'll get undefined behaviour. + * For displacements, coordinates has to be clamped. + * + * The `inputClamp.xy` is left-top pixel center, you may ignore it, because we use left-top part of Framebuffer + * `inputClamp.zw` is bottom-right pixel center. + * + * ``` + * vec4 color = texture2D(uSampler, clamp(modifigedTextureCoord, inputClamp.xy, inputClamp.zw)) + * ``` + * OR + * ``` + * vec4 color = texture2D(uSampler, min(modifigedTextureCoord, inputClamp.zw)) + * ``` + * + * ### Additional Information + * + * Complete documentation on Filter usage is located in the + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * Since PixiJS only had a handful of built-in filters, additional filters can be downloaded + * {@link https://github.com/pixijs/pixi-filters here} from the PixiJS Filters repository. + * + * @class + * @memberof PIXI + * @extends PIXI.Shader + */ +var Filter = /*@__PURE__*/(function (Shader) { + function Filter(vertexSrc, fragmentSrc, uniforms) + { + var program = Program.from(vertexSrc || Filter.defaultVertexSrc, + fragmentSrc || Filter.defaultFragmentSrc); + + Shader.call(this, program, uniforms); + + /** + * The padding of the filter. Some filters require extra space to breath such as a blur. + * Increasing this will add extra width and height to the bounds of the object that the + * filter is applied to. + * + * @member {number} + */ + this.padding = 0; + + /** + * The resolution of the filter. Setting this to be lower will lower the quality but + * increase the performance of the filter. + * + * @member {number} + */ + this.resolution = settings.FILTER_RESOLUTION; + + /** + * If enabled is true the filter is applied, if false it will not. + * + * @member {boolean} + */ + this.enabled = true; + + /** + * If enabled, PixiJS will fit the filter area into boundaries for better performance. + * Switch it off if it does not work for specific shader. + * + * @member {boolean} + */ + this.autoFit = true; + + /** + * Legacy filters use position and uvs from attributes + * @member {boolean} + * @readonly + */ + this.legacy = !!this.program.attributeData.aTextureCoord; + + /** + * The WebGL state the filter requires to render + * @member {PIXI.State} + */ + this.state = new State(); + } + + if ( Shader ) Filter.__proto__ = Shader; + Filter.prototype = Object.create( Shader && Shader.prototype ); + Filter.prototype.constructor = Filter; + + var prototypeAccessors = { blendMode: { configurable: true } }; + var staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + * @param {object} [currentState] - It's current state of filter. + * There are some useful properties in the currentState : + * target, filters, sourceFrame, destinationFrame, renderTarget, resolution + */ + Filter.prototype.apply = function apply (filterManager, input, output, clear, currentState) + { + // do as you please! + + filterManager.applyFilter(this, input, output, clear, currentState); + + // or just do a regular render.. + }; + + /** + * Sets the blendmode of the filter + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + */ + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + prototypeAccessors.blendMode.set = function (value) // eslint-disable-line require-jsdoc + { + this.state.blendMode = value; + }; + + /** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultVertexSrc.get = function () + { + return defaultVertex$1; + }; + + /** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultFragmentSrc.get = function () + { + return defaultFragment$1; + }; + + Object.defineProperties( Filter.prototype, prototypeAccessors ); + Object.defineProperties( Filter, staticAccessors ); + + return Filter; +}(Shader)); + +/** + * Used for caching shader IDs + * + * @static + * @type {object} + * @protected + */ +Filter.SOURCE_KEY_MAP = {}; + +var vertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 otherMatrix;\n\nvarying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\n}\n"; + +var fragment = "varying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform sampler2D mask;\nuniform float alpha;\nuniform float npmAlpha;\nuniform vec4 maskClamp;\n\nvoid main(void)\n{\n float clip = step(3.5,\n step(maskClamp.x, vMaskCoord.x) +\n step(maskClamp.y, vMaskCoord.y) +\n step(vMaskCoord.x, maskClamp.z) +\n step(vMaskCoord.y, maskClamp.w));\n\n vec4 original = texture2D(uSampler, vTextureCoord);\n vec4 masky = texture2D(mask, vMaskCoord);\n float alphaMul = 1.0 - npmAlpha * (1.0 - masky.a);\n\n original *= (alphaMul * masky.r * alpha * clip);\n\n gl_FragColor = original;\n}\n"; + +var tempMat = new Matrix(); + +/** + * Class controls uv mapping from Texture normal space to BaseTexture normal space. + * + * Takes `trim` and `rotate` into account. May contain clamp settings for Meshes and TilingSprite. + * + * Can be used in Texture `uvMatrix` field, or separately, you can use different clamp settings on the same texture. + * If you want to add support for texture region of certain feature or filter, that's what you're looking for. + * + * Takes track of Texture changes through `_lastTextureID` private field. + * Use `update()` method call to track it from outside. + * + * @see PIXI.Texture + * @see PIXI.Mesh + * @see PIXI.TilingSprite + * @class + * @memberof PIXI + */ +var TextureMatrix = function TextureMatrix(texture, clampMargin) +{ + this._texture = texture; + + /** + * Matrix operation that converts texture region coords to texture coords + * @member {PIXI.Matrix} + * @readonly + */ + this.mapCoord = new Matrix(); + + /** + * Clamp region for normalized coords, left-top pixel center in xy , bottom-right in zw. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampFrame = new Float32Array(4); + + /** + * Normalized clamp offset. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampOffset = new Float32Array(2); + + /** + * Tracks Texture frame changes + * @member {number} + * @protected + */ + this._updateID = -1; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to 1.5 if you texture has repeated right and bottom lines, that leads to smoother borders + * + * @default 0 + * @member {number} + */ + this.clampOffset = 0; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas + * + * @default 0.5 + * @member {number} + */ + this.clampMargin = (typeof clampMargin === 'undefined') ? 0.5 : clampMargin; + + /** + * If texture size is the same as baseTexture + * @member {boolean} + * @default false + * @readonly + */ + this.isSimple = false; +}; + +var prototypeAccessors$4$1 = { texture: { configurable: true } }; + +/** + * texture property + * @member {PIXI.Texture} + */ +prototypeAccessors$4$1.texture.get = function () +{ + return this._texture; +}; + +prototypeAccessors$4$1.texture.set = function (value) // eslint-disable-line require-jsdoc +{ + this._texture = value; + this._updateID = -1; +}; + +/** + * Multiplies uvs array to transform + * @param {Float32Array} uvs mesh uvs + * @param {Float32Array} [out=uvs] output + * @returns {Float32Array} output + */ +TextureMatrix.prototype.multiplyUvs = function multiplyUvs (uvs, out) +{ + if (out === undefined) + { + out = uvs; + } + + var mat = this.mapCoord; + + for (var i = 0; i < uvs.length; i += 2) + { + var x = uvs[i]; + var y = uvs[i + 1]; + + out[i] = (x * mat.a) + (y * mat.c) + mat.tx; + out[i + 1] = (x * mat.b) + (y * mat.d) + mat.ty; + } + + return out; +}; + +/** + * updates matrices if texture was changed + * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case + * @returns {boolean} whether or not it was updated + */ +TextureMatrix.prototype.update = function update (forceUpdate) +{ + var tex = this._texture; + + if (!tex || !tex.valid) + { + return false; + } + + if (!forceUpdate + && this._updateID === tex._updateID) + { + return false; + } + + this._updateID = tex._updateID; + + var uvs = tex._uvs; + + this.mapCoord.set(uvs.x1 - uvs.x0, uvs.y1 - uvs.y0, uvs.x3 - uvs.x0, uvs.y3 - uvs.y0, uvs.x0, uvs.y0); + + var orig = tex.orig; + var trim = tex.trim; + + if (trim) + { + tempMat.set(orig.width / trim.width, 0, 0, orig.height / trim.height, + -trim.x / trim.width, -trim.y / trim.height); + this.mapCoord.append(tempMat); + } + + var texBase = tex.baseTexture; + var frame = this.uClampFrame; + var margin = this.clampMargin / texBase.resolution; + var offset = this.clampOffset; + + frame[0] = (tex._frame.x + margin + offset) / texBase.width; + frame[1] = (tex._frame.y + margin + offset) / texBase.height; + frame[2] = (tex._frame.x + tex._frame.width - margin + offset) / texBase.width; + frame[3] = (tex._frame.y + tex._frame.height - margin + offset) / texBase.height; + this.uClampOffset[0] = offset / texBase.realWidth; + this.uClampOffset[1] = offset / texBase.realHeight; + + this.isSimple = tex._frame.width === texBase.width + && tex._frame.height === texBase.height + && tex.rotate === 0; + + return true; +}; + +Object.defineProperties( TextureMatrix.prototype, prototypeAccessors$4$1 ); + +/** + * This handles a Sprite acting as a mask, as opposed to a Graphic. + * + * WebGL only. + * + * @class + * @extends PIXI.Filter + * @memberof PIXI + */ +var SpriteMaskFilter = /*@__PURE__*/(function (Filter) { + function SpriteMaskFilter(sprite) + { + var maskMatrix = new Matrix(); + + Filter.call(this, vertex, fragment); + + sprite.renderable = false; + + /** + * Sprite mask + * @member {PIXI.Sprite} + */ + this.maskSprite = sprite; + + /** + * Mask matrix + * @member {PIXI.Matrix} + */ + this.maskMatrix = maskMatrix; + } + + if ( Filter ) SpriteMaskFilter.__proto__ = Filter; + SpriteMaskFilter.prototype = Object.create( Filter && Filter.prototype ); + SpriteMaskFilter.prototype.constructor = SpriteMaskFilter; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it. + */ + SpriteMaskFilter.prototype.apply = function apply (filterManager, input, output, clear) + { + var maskSprite = this.maskSprite; + var tex = this.maskSprite.texture; + + if (!tex.valid) + { + return; + } + if (!tex.transform) + { + // margin = 0.0, let it bleed a bit, shader code becomes easier + // assuming that atlas textures were made with 1-pixel padding + tex.transform = new TextureMatrix(tex, 0.0); + } + tex.transform.update(); + + this.uniforms.npmAlpha = tex.baseTexture.premultiplyAlpha ? 0.0 : 1.0; + this.uniforms.mask = tex; + // get _normalized sprite texture coords_ and convert them to _normalized atlas texture coords_ with `prepend` + this.uniforms.otherMatrix = filterManager.calculateSpriteMatrix(this.maskMatrix, maskSprite) + .prepend(tex.transform.mapCoord); + this.uniforms.alpha = maskSprite.worldAlpha; + this.uniforms.maskClamp = tex.transform.uClampFrame; + + filterManager.applyFilter(this, input, output, clear); + }; + + return SpriteMaskFilter; +}(Filter)); + +/** + * System plugin to the renderer to manage masks. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var MaskSystem = /*@__PURE__*/(function (System) { + function MaskSystem(renderer) + { + System.call(this, renderer); + + // TODO - we don't need both! + /** + * `true` if current pushed masked is scissor + * @member {boolean} + * @readonly + */ + this.scissor = false; + + /** + * Mask data + * @member {PIXI.Graphics} + * @readonly + */ + this.scissorData = null; + + /** + * Target to mask + * @member {PIXI.DisplayObject} + * @readonly + */ + this.scissorRenderTarget = null; + + /** + * Enable scissor + * @member {boolean} + * @readonly + */ + this.enableScissor = false; + + /** + * Pool of used sprite mask filters + * @member {PIXI.SpriteMaskFilter[]} + * @readonly + */ + this.alphaMaskPool = []; + + /** + * Current index of alpha mask pool + * @member {number} + * @default 0 + * @readonly + */ + this.alphaMaskIndex = 0; + } + + if ( System ) MaskSystem.__proto__ = System; + MaskSystem.prototype = Object.create( System && System.prototype ); + MaskSystem.prototype.constructor = MaskSystem; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.push = function push (target, maskData) + { + // TODO the root check means scissor rect will not + // be used on render textures more info here: + // https://github.com/pixijs/pixi.js/pull/3545 + + if (maskData.isSprite) + { + this.pushSpriteMask(target, maskData); + } + else if (this.enableScissor + && !this.scissor + && this.renderer._activeRenderTarget.root + && !this.renderer.stencil.stencilMaskStack.length + && maskData.isFastRect()) + { + var matrix = maskData.worldTransform; + + var rot = Math.atan2(matrix.b, matrix.a); + + // use the nearest degree! + rot = Math.round(rot * (180 / Math.PI)); + + if (rot % 90) + { + this.pushStencilMask(maskData); + } + else + { + this.pushScissorMask(target, maskData); + } + } + else + { + this.pushStencilMask(maskData); + } + }; + + /** + * Removes the last mask from the mask stack and doesn't return it. + * + * @param {PIXI.DisplayObject} target - Display Object to pop the mask from + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pop = function pop (target, maskData) + { + if (maskData.isSprite) + { + this.popSpriteMask(target, maskData); + } + else if (this.enableScissor && !this.renderer.stencil.stencilMaskStack.length) + { + this.popScissorMask(target, maskData); + } + else + { + this.popStencilMask(target, maskData); + } + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.RenderTexture} target - Display Object to push the sprite mask to + * @param {PIXI.Sprite} maskData - Sprite to be used as the mask + */ + MaskSystem.prototype.pushSpriteMask = function pushSpriteMask (target, maskData) + { + var alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex]; + + if (!alphaMaskFilter) + { + alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex] = [new SpriteMaskFilter(maskData)]; + } + + alphaMaskFilter[0].resolution = this.renderer.resolution; + alphaMaskFilter[0].maskSprite = maskData; + + var stashFilterArea = target.filterArea; + + target.filterArea = maskData.getBounds(true); + this.renderer.filter.push(target, alphaMaskFilter); + target.filterArea = stashFilterArea; + + this.alphaMaskIndex++; + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popSpriteMask = function popSpriteMask () + { + this.renderer.filter.pop(); + this.alphaMaskIndex--; + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushStencilMask = function pushStencilMask (maskData) + { + this.renderer.batch.flush(); + this.renderer.stencil.pushStencil(maskData); + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popStencilMask = function popStencilMask () + { + // this.renderer.currentRenderer.stop(); + this.renderer.stencil.popStencil(); + }; + + /** + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushScissorMask = function pushScissorMask (target, maskData) + { + maskData.renderable = true; + + var renderTarget = this.renderer._activeRenderTarget; + + var bounds = maskData.getBounds(); + + bounds.fit(renderTarget.size); + maskData.renderable = false; + + this.renderer.gl.enable(this.renderer.gl.SCISSOR_TEST); + + var resolution = this.renderer.resolution; + + this.renderer.gl.scissor( + bounds.x * resolution, + (renderTarget.root ? renderTarget.size.height - bounds.y - bounds.height : bounds.y) * resolution, + bounds.width * resolution, + bounds.height * resolution + ); + + this.scissorRenderTarget = renderTarget; + this.scissorData = maskData; + this.scissor = true; + }; + + /** + * Pop scissor mask + * + */ + MaskSystem.prototype.popScissorMask = function popScissorMask () + { + this.scissorRenderTarget = null; + this.scissorData = null; + this.scissor = false; + + // must be scissor! + var ref = this.renderer; + var gl = ref.gl; + + gl.disable(gl.SCISSOR_TEST); + }; + + return MaskSystem; +}(System)); + +/** + * System plugin to the renderer to manage stencils (used for masks). + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StencilSystem = /*@__PURE__*/(function (System) { + function StencilSystem(renderer) + { + System.call(this, renderer); + + /** + * The mask stack + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + } + + if ( System ) StencilSystem.__proto__ = System; + StencilSystem.prototype = Object.create( System && System.prototype ); + StencilSystem.prototype.constructor = StencilSystem; + + /** + * Changes the mask stack that is used by this System. + * + * @param {PIXI.Graphics[]} stencilMaskStack - The mask stack + */ + StencilSystem.prototype.setMaskStack = function setMaskStack (stencilMaskStack) + { + var gl = this.renderer.gl; + var curStackLen = this.stencilMaskStack.length; + + this.stencilMaskStack = stencilMaskStack; + if (stencilMaskStack.length !== curStackLen) + { + if (stencilMaskStack.length === 0) + { + gl.disable(gl.STENCIL_TEST); + } + else + { + gl.enable(gl.STENCIL_TEST); + this._useCurrent(); + } + } + }; + + /** + * Applies the Mask and adds it to the current stencil stack. @alvin + * + * @param {PIXI.Graphics} graphics - The mask + */ + StencilSystem.prototype.pushStencil = function pushStencil (graphics) + { + var gl = this.renderer.gl; + var prevMaskCount = this.stencilMaskStack.length; + + if (prevMaskCount === 0) + { + // force use stencil texture in current framebuffer + this.renderer.framebuffer.forceStencil(); + gl.enable(gl.STENCIL_TEST); + } + + this.stencilMaskStack.push(graphics); + + // Increment the reference stencil value where the new mask overlaps with the old ones. + gl.colorMask(false, false, false, false); + gl.stencilFunc(gl.EQUAL, prevMaskCount, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.INCR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + }; + + /** + * Removes the last mask from the stencil stack. @alvin + */ + StencilSystem.prototype.popStencil = function popStencil () + { + var gl = this.renderer.gl; + var graphics = this.stencilMaskStack.pop(); + + if (this.stencilMaskStack.length === 0) + { + // the stack is empty! + gl.disable(gl.STENCIL_TEST); + gl.clear(gl.STENCIL_BUFFER_BIT); + gl.clearStencil(0); + } + else + { + // Decrement the reference stencil value where the popped mask overlaps with the other ones + gl.colorMask(false, false, false, false); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.DECR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + } + }; + + /** + * Setup renderer to use the current stencil data. + * @private + */ + StencilSystem.prototype._useCurrent = function _useCurrent () + { + var gl = this.renderer.gl; + + gl.colorMask(true, true, true, true); + gl.stencilFunc(gl.EQUAL, this.stencilMaskStack.length, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.KEEP); + }; + + /** + * Fill 1s equal to the number of acitve stencil masks. + * @private + * @return {number} The bitwise mask. + */ + StencilSystem.prototype._getBitwiseMask = function _getBitwiseMask () + { + return (1 << this.stencilMaskStack.length) - 1; + }; + + /** + * Destroys the mask stack. + * + */ + StencilSystem.prototype.destroy = function destroy () + { + System.prototype.destroy.call(this, this); + + this.stencilMaskStack = null; + }; + + return StencilSystem; +}(System)); + +/** + * System plugin to the renderer to manage the projection matrix. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var ProjectionSystem = /*@__PURE__*/(function (System) { + function ProjectionSystem(renderer) + { + System.call(this, renderer); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = null; + + /** + * Default destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.defaultFrame = null; + + /** + * Project matrix + * @member {PIXI.Matrix} + * @readonly + */ + this.projectionMatrix = new Matrix(); + + /** + * A transform that will be appended to the projection matrix + * if null, nothing will be applied + * @member {PIXI.Matrix} + */ + this.transform = null; + } + + if ( System ) ProjectionSystem.__proto__ = System; + ProjectionSystem.prototype = Object.create( System && System.prototype ); + ProjectionSystem.prototype.constructor = ProjectionSystem; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.update = function update (destinationFrame, sourceFrame, resolution, root) + { + this.destinationFrame = destinationFrame || this.destinationFrame || this.defaultFrame; + this.sourceFrame = sourceFrame || this.sourceFrame || destinationFrame; + + this.calculateProjection(this.destinationFrame, this.sourceFrame, resolution, root); + + if (this.transform) + { + this.projectionMatrix.append(this.transform); + } + + var renderer = this.renderer; + + renderer.globalUniforms.uniforms.projectionMatrix = this.projectionMatrix; + renderer.globalUniforms.update(); + + // this will work for now + // but would be sweet to stick and even on the global uniforms.. + if (renderer.shader.shader) + { + renderer.shader.syncUniformGroup(renderer.shader.shader.uniforms.globals); + } + }; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.calculateProjection = function calculateProjection (destinationFrame, sourceFrame, resolution, root) + { + var pm = this.projectionMatrix; + + // I don't think we will need this line.. + // pm.identity(); + + if (!root) + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = -1 - (sourceFrame.y * pm.d); + } + else + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (-1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = 1 - (sourceFrame.y * pm.d); + } + }; + + /** + * Sets the transform of the active render target to the given matrix + * + * @param {PIXI.Matrix} matrix - The transformation matrix + */ + ProjectionSystem.prototype.setTransform = function setTransform ()// matrix) + { + // this._activeRenderTarget.transform = matrix; + }; + + return ProjectionSystem; +}(System)); + +var tempRect = new Rectangle(); + +/** + * System plugin to the renderer to manage render textures. + * + * Should be added after FramebufferSystem + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var RenderTextureSystem = /*@__PURE__*/(function (System) { + function RenderTextureSystem(renderer) + { + System.call(this, renderer); + + /** + * The clear background color as rgba + * @member {number[]} + */ + this.clearColor = renderer._backgroundColorRgba; + + // TODO move this property somewhere else! + /** + * List of masks for the StencilSystem + * @member {PIXI.Graphics[]} + * @readonly + */ + this.defaultMaskStack = []; + + // empty render texture? + /** + * Render texture + * @member {PIXI.RenderTexture} + * @readonly + */ + this.current = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = new Rectangle(); + } + + if ( System ) RenderTextureSystem.__proto__ = System; + RenderTextureSystem.prototype = Object.create( System && System.prototype ); + RenderTextureSystem.prototype.constructor = RenderTextureSystem; + + /** + * Bind the current render texture + * @param {PIXI.RenderTexture} [renderTexture] - RenderTexture to bind, by default its `null`, the screen + * @param {PIXI.Rectangle} [sourceFrame] - part of screen that is mapped to the renderTexture + * @param {PIXI.Rectangle} [destinationFrame] - part of renderTexture, by default it has the same size as sourceFrame + */ + RenderTextureSystem.prototype.bind = function bind (renderTexture, sourceFrame, destinationFrame) + { + if ( renderTexture === void 0 ) renderTexture = null; + + this.current = renderTexture; + + var renderer = this.renderer; + + var resolution; + + if (renderTexture) + { + var baseTexture = renderTexture.baseTexture; + + resolution = baseTexture.resolution; + + if (!destinationFrame) + { + tempRect.width = baseTexture.realWidth; + tempRect.height = baseTexture.realHeight; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + this.renderer.framebuffer.bind(baseTexture.framebuffer, destinationFrame); + + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, false); + this.renderer.stencil.setMaskStack(baseTexture.stencilMaskStack); + } + else + { + resolution = this.renderer.resolution; + + // TODO these validation checks happen deeper down.. + // thing they can be avoided.. + if (!destinationFrame) + { + tempRect.width = renderer.width; + tempRect.height = renderer.height; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + renderer.framebuffer.bind(null, destinationFrame); + + // TODO store this.. + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, true); + this.renderer.stencil.setMaskStack(this.defaultMaskStack); + } + + this.sourceFrame.copyFrom(sourceFrame); + + this.destinationFrame.x = destinationFrame.x / resolution; + this.destinationFrame.y = destinationFrame.y / resolution; + + this.destinationFrame.width = destinationFrame.width / resolution; + this.destinationFrame.height = destinationFrame.height / resolution; + + if (sourceFrame === destinationFrame) + { + this.sourceFrame.copyFrom(this.destinationFrame); + } + }; + + /** + * Erases the render texture and fills the drawing area with a colour + * + * @param {number[]} [clearColor] - The color as rgba, default to use the renderer backgroundColor + * @return {PIXI.Renderer} Returns itself. + */ + RenderTextureSystem.prototype.clear = function clear (clearColor) + { + if (this.current) + { + clearColor = clearColor || this.current.baseTexture.clearColor; + } + else + { + clearColor = clearColor || this.clearColor; + } + + this.renderer.framebuffer.clear(clearColor[0], clearColor[1], clearColor[2], clearColor[3]); + }; + + RenderTextureSystem.prototype.resize = function resize ()// screenWidth, screenHeight) + { + // resize the root only! + this.bind(null); + }; + + /** + * Resets renderTexture state + */ + RenderTextureSystem.prototype.reset = function reset () + { + this.bind(null); + }; + + return RenderTextureSystem; +}(System)); + +/** + * Helper class to create a WebGL Program + * + * @class + * @memberof PIXI + */ +var GLProgram = function GLProgram(program, uniformData) +{ + /** + * The shader program + * + * @member {WebGLProgram} + */ + this.program = program; + + /** + * holds the uniform data which contains uniform locations + * and current uniform values used for caching and preventing unneeded GPU commands + * @member {Object} + */ + this.uniformData = uniformData; + + /** + * uniformGroups holds the various upload functions for the shader. Each uniform group + * and program have a unique upload function generated. + * @member {Object} + */ + this.uniformGroups = {}; +}; + +/** + * Destroys this program + */ +GLProgram.prototype.destroy = function destroy () +{ + this.uniformData = null; + this.uniformGroups = null; + this.program = null; +}; + +var UID$4 = 0; + +/** + * System plugin to the renderer to manage shaders. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var ShaderSystem = /*@__PURE__*/(function (System) { + function ShaderSystem(renderer) + { + System.call(this, renderer); + + // Validation check that this environment support `new Function` + this.systemCheck(); + + /** + * The current WebGL rendering context + * + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.shader = null; + this.program = null; + + /** + * Cache to holds the generated functions. Stored against UniformObjects unique signature + * @type {Object} + * @private + */ + this.cache = {}; + + this.id = UID$4++; + } + + if ( System ) ShaderSystem.__proto__ = System; + ShaderSystem.prototype = Object.create( System && System.prototype ); + ShaderSystem.prototype.constructor = ShaderSystem; + + /** + * Overrideable function by `@pixi/unsafe-eval` to silence + * throwing an error if platform doesn't support unsafe-evals. + * + * @private + */ + ShaderSystem.prototype.systemCheck = function systemCheck () + { + if (!unsafeEvalSupported()) + { + throw new Error('Current environment does not allow unsafe-eval, ' + + 'please use @pixi/unsafe-eval module to enable support.'); + } + }; + + ShaderSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.reset(); + }; + + /** + * Changes the current shader to the one given in parameter + * + * @param {PIXI.Shader} shader - the new shader + * @param {boolean} dontSync - false if the shader should automatically sync its uniforms. + * @returns {PIXI.GLProgram} the glProgram that belongs to the shader. + */ + ShaderSystem.prototype.bind = function bind (shader, dontSync) + { + shader.uniforms.globals = this.renderer.globalUniforms; + + var program = shader.program; + var glProgram = program.glPrograms[this.renderer.CONTEXT_UID] || this.generateShader(shader); + + this.shader = shader; + + // TODO - some current Pixi plugins bypass this.. so it not safe to use yet.. + if (this.program !== program) + { + this.program = program; + this.gl.useProgram(glProgram.program); + } + + if (!dontSync) + { + this.syncUniformGroup(shader.uniformGroup); + } + + return glProgram; + }; + + /** + * Uploads the uniforms values to the currently bound shader. + * + * @param {object} uniforms - the uniforms values that be applied to the current shader + */ + ShaderSystem.prototype.setUniforms = function setUniforms (uniforms) + { + var shader = this.shader.program; + var glProgram = shader.glPrograms[this.renderer.CONTEXT_UID]; + + shader.syncUniforms(glProgram.uniformData, uniforms, this.renderer); + }; + + ShaderSystem.prototype.syncUniformGroup = function syncUniformGroup (group) + { + var glProgram = this.getglProgram(); + + if (!group.static || group.dirtyId !== glProgram.uniformGroups[group.id]) + { + glProgram.uniformGroups[group.id] = group.dirtyId; + + this.syncUniforms(group, glProgram); + } + }; + + /** + * Overrideable by the @pixi/unsafe-eval package to use static + * syncUnforms instead. + * + * @private + */ + ShaderSystem.prototype.syncUniforms = function syncUniforms (group, glProgram) + { + var syncFunc = group.syncUniforms[this.shader.program.id] || this.createSyncGroups(group); + + syncFunc(glProgram.uniformData, group.uniforms, this.renderer); + }; + + ShaderSystem.prototype.createSyncGroups = function createSyncGroups (group) + { + var id = this.getSignature(group, this.shader.program.uniformData); + + if (!this.cache[id]) + { + this.cache[id] = generateUniformsSync(group, this.shader.program.uniformData); + } + + group.syncUniforms[this.shader.program.id] = this.cache[id]; + + return group.syncUniforms[this.shader.program.id]; + }; + + /** + * Takes a uniform group and data and generates a unique signature for them. + * + * @param {PIXI.UniformGroup} group the uniform group to get signature of + * @param {Object} uniformData uniform information generated by the shader + * @returns {String} Unique signature of the uniform group + * @private + */ + ShaderSystem.prototype.getSignature = function getSignature (group, uniformData) + { + var uniforms = group.uniforms; + + var strings = []; + + for (var i in uniforms) + { + strings.push(i); + + if (uniformData[i]) + { + strings.push(uniformData[i].type); + } + } + + return strings.join('-'); + }; + + /** + * Returns the underlying GLShade rof the currently bound shader. + * This can be handy for when you to have a little more control over the setting of your uniforms. + * + * @return {PIXI.GLProgram} the glProgram for the currently bound Shader for this context + */ + ShaderSystem.prototype.getglProgram = function getglProgram () + { + if (this.shader) + { + return this.shader.program.glPrograms[this.renderer.CONTEXT_UID]; + } + + return null; + }; + + /** + * Generates a glProgram version of the Shader provided. + * + * @private + * @param {PIXI.Shader} shader the shader that the glProgram will be based on. + * @return {PIXI.GLProgram} A shiny new glProgram! + */ + ShaderSystem.prototype.generateShader = function generateShader (shader) + { + var gl = this.gl; + + var program = shader.program; + + var attribMap = {}; + + for (var i in program.attributeData) + { + attribMap[i] = program.attributeData[i].location; + } + + var shaderProgram = compileProgram(gl, program.vertexSrc, program.fragmentSrc, attribMap); + var uniformData = {}; + + for (var i$1 in program.uniformData) + { + var data = program.uniformData[i$1]; + + uniformData[i$1] = { + location: gl.getUniformLocation(shaderProgram, i$1), + value: defaultValue(data.type, data.size), + }; + } + + var glProgram = new GLProgram(shaderProgram, uniformData); + + program.glPrograms[this.renderer.CONTEXT_UID] = glProgram; + + return glProgram; + }; + + /** + * Resets ShaderSystem state, does not affect WebGL state + */ + ShaderSystem.prototype.reset = function reset () + { + this.program = null; + this.shader = null; + }; + + /** + * Destroys this System and removes all its textures + */ + ShaderSystem.prototype.destroy = function destroy () + { + // TODO implement destroy method for ShaderSystem + this.destroyed = true; + }; + + return ShaderSystem; +}(System)); + +/** + * Maps gl blend combinations to WebGL. + * + * @memberof PIXI + * @function mapWebGLBlendModesToPixi + * @private + * @param {WebGLRenderingContext} gl - The rendering context. + * @param {number[][]} [array=[]] - The array to output into. + * @return {number[][]} Mapped modes. + */ +function mapWebGLBlendModesToPixi(gl, array) +{ + if ( array === void 0 ) array = []; + + // TODO - premultiply alpha would be different. + // add a boolean for that! + array[BLEND_MODES.NORMAL] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD] = [gl.ONE, gl.ONE]; + array[BLEND_MODES.MULTIPLY] = [gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SCREEN] = [gl.ONE, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.OVERLAY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DARKEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LIGHTEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_DODGE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_BURN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HARD_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SOFT_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DIFFERENCE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.EXCLUSION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HUE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SATURATION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LUMINOSITY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.NONE] = [0, 0]; + + // not-premultiplied blend modes + array[BLEND_MODES.NORMAL_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD_NPM] = [gl.SRC_ALPHA, gl.ONE, gl.ONE, gl.ONE]; + array[BLEND_MODES.SCREEN_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + + // composite operations + array[BLEND_MODES.SRC_IN] = [gl.DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_OUT] = [gl.ONE_MINUS_DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_ATOP] = [gl.DST_ALPHA, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_OVER] = [gl.ONE_MINUS_DST_ALPHA, gl.ONE]; + array[BLEND_MODES.DST_IN] = [gl.ZERO, gl.SRC_ALPHA]; + array[BLEND_MODES.DST_OUT] = [gl.ZERO, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_ATOP] = [gl.ONE_MINUS_DST_ALPHA, gl.SRC_ALPHA]; + + // SUBTRACT from flash + array[BLEND_MODES.SUBTRACT] = [gl.ONE, gl.ONE, gl.ONE, gl.ONE, gl.FUNC_REVERSE_SUBTRACT, gl.FUNC_ADD]; + + return array; +} + +var BLEND$1 = 0; +var OFFSET$1 = 1; +var CULLING$1 = 2; +var DEPTH_TEST$1 = 3; +var WINDING$1 = 4; + +/** + * System plugin to the renderer to manage WebGL state machines. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StateSystem = /*@__PURE__*/(function (System) { + function StateSystem(renderer) + { + System.call(this, renderer); + + /** + * GL context + * @member {WebGLRenderingContext} + * @readonly + */ + this.gl = null; + + /** + * State ID + * @member {number} + * @readonly + */ + this.stateId = 0; + + /** + * Polygon offset + * @member {number} + * @readonly + */ + this.polygonOffset = 0; + + /** + * Blend mode + * @member {number} + * @default PIXI.BLEND_MODES.NONE + * @readonly + */ + this.blendMode = BLEND_MODES.NONE; + + /** + * Whether current blend equation is different + * @member {boolean} + * @protected + */ + this._blendEq = false; + + /** + * Collection of calls + * @member {function[]} + * @readonly + */ + this.map = []; + + // map functions for when we set state.. + this.map[BLEND$1] = this.setBlend; + this.map[OFFSET$1] = this.setOffset; + this.map[CULLING$1] = this.setCullFace; + this.map[DEPTH_TEST$1] = this.setDepthTest; + this.map[WINDING$1] = this.setFrontFace; + + /** + * Collection of check calls + * @member {function[]} + * @readonly + */ + this.checks = []; + + /** + * Default WebGL State + * @member {PIXI.State} + * @readonly + */ + this.defaultState = new State(); + this.defaultState.blend = true; + this.defaultState.depth = true; + } + + if ( System ) StateSystem.__proto__ = System; + StateSystem.prototype = Object.create( System && System.prototype ); + StateSystem.prototype.constructor = StateSystem; + + StateSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + + this.blendModes = mapWebGLBlendModesToPixi(gl); + + this.set(this.defaultState); + + this.reset(); + }; + + /** + * Sets the current state + * + * @param {*} state - The state to set. + */ + StateSystem.prototype.set = function set (state) + { + state = state || this.defaultState; + + // TODO maybe to an object check? ( this.state === state )? + if (this.stateId !== state.data) + { + var diff = this.stateId ^ state.data; + var i = 0; + + // order from least to most common + while (diff) + { + if (diff & 1) + { + // state change! + this.map[i].call(this, !!(state.data & (1 << i))); + } + + diff = diff >> 1; + i++; + } + + this.stateId = state.data; + } + + // based on the above settings we check for specific modes.. + // for example if blend is active we check and set the blend modes + // or of polygon offset is active we check the poly depth. + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + }; + + /** + * Sets the state, when previous state is unknown + * + * @param {*} state - The state to set + */ + StateSystem.prototype.forceState = function forceState (state) + { + state = state || this.defaultState; + for (var i = 0; i < this.map.length; i++) + { + this.map[i].call(this, !!(state.data & (1 << i))); + } + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + + this.stateId = state.data; + }; + + /** + * Enables or disabled blending. + * + * @param {boolean} value - Turn on or off webgl blending. + */ + StateSystem.prototype.setBlend = function setBlend (value) + { + this.updateCheck(StateSystem.checkBlendMode, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.BLEND); + }; + + /** + * Enables or disable polygon offset fill + * + * @param {boolean} value - Turn on or off webgl polygon offset testing. + */ + StateSystem.prototype.setOffset = function setOffset (value) + { + this.updateCheck(StateSystem.checkPolygonOffset, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.POLYGON_OFFSET_FILL); + }; + + /** + * Sets whether to enable or disable depth test. + * + * @param {boolean} value - Turn on or off webgl depth testing. + */ + StateSystem.prototype.setDepthTest = function setDepthTest (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.DEPTH_TEST); + }; + + /** + * Sets whether to enable or disable cull face. + * + * @param {boolean} value - Turn on or off webgl cull face. + */ + StateSystem.prototype.setCullFace = function setCullFace (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.CULL_FACE); + }; + + /** + * Sets the gl front face. + * + * @param {boolean} value - true is clockwise and false is counter-clockwise + */ + StateSystem.prototype.setFrontFace = function setFrontFace (value) + { + this.gl.frontFace(this.gl[value ? 'CW' : 'CCW']); + }; + + /** + * Sets the blend mode. + * + * @param {number} value - The blend mode to set to. + */ + StateSystem.prototype.setBlendMode = function setBlendMode (value) + { + if (value === this.blendMode) + { + return; + } + + this.blendMode = value; + + var mode = this.blendModes[value]; + var gl = this.gl; + + if (mode.length === 2) + { + gl.blendFunc(mode[0], mode[1]); + } + else + { + gl.blendFuncSeparate(mode[0], mode[1], mode[2], mode[3]); + } + if (mode.length === 6) + { + this._blendEq = true; + gl.blendEquationSeparate(mode[4], mode[5]); + } + else if (this._blendEq) + { + this._blendEq = false; + gl.blendEquationSeparate(gl.FUNC_ADD, gl.FUNC_ADD); + } + }; + + /** + * Sets the polygon offset. + * + * @param {number} value - the polygon offset + * @param {number} scale - the polygon offset scale + */ + StateSystem.prototype.setPolygonOffset = function setPolygonOffset (value, scale) + { + this.gl.polygonOffset(value, scale); + }; + + // used + /** + * Resets all the logic and disables the vaos + */ + StateSystem.prototype.reset = function reset () + { + this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false); + + this.forceState(0); + + this._blendEq = true; + this.blendMode = -1; + this.setBlendMode(0); + }; + + /** + * checks to see which updates should be checked based on which settings have been activated. + * For example, if blend is enabled then we should check the blend modes each time the state is changed + * or if polygon fill is activated then we need to check if the polygon offset changes. + * The idea is that we only check what we have too. + * + * @param {Function} func the checking function to add or remove + * @param {boolean} value should the check function be added or removed. + */ + StateSystem.prototype.updateCheck = function updateCheck (func, value) + { + var index = this.checks.indexOf(func); + + if (value && index === -1) + { + this.checks.push(func); + } + else if (!value && index !== -1) + { + this.checks.splice(index, 1); + } + }; + + /** + * A private little wrapper function that we call to check the blend mode. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkBlendMode = function checkBlendMode (system, state) + { + system.setBlendMode(state.blendMode); + }; + + /** + * A private little wrapper function that we call to check the polygon offset. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkPolygonOffset = function checkPolygonOffset (system, state) + { + system.setPolygonOffset(state.polygonOffset, 0); + }; + + return StateSystem; +}(System)); + +/** + * System plugin to the renderer to manage texture garbage collection on the GPU, + * ensuring that it does not get clogged up with textures that are no longer being used. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var TextureGCSystem = /*@__PURE__*/(function (System) { + function TextureGCSystem(renderer) + { + System.call(this, renderer); + + /** + * Count + * @member {number} + * @readonly + */ + this.count = 0; + + /** + * Check count + * @member {number} + * @readonly + */ + this.checkCount = 0; + + /** + * Maximum idle time, in seconds + * @member {number} + * @see PIXI.settings.GC_MAX_IDLE + */ + this.maxIdle = settings.GC_MAX_IDLE; + + /** + * Maximum number of item to check + * @member {number} + * @see PIXI.settings.GC_MAX_CHECK_COUNT + */ + this.checkCountMax = settings.GC_MAX_CHECK_COUNT; + + /** + * Current garabage collection mode + * @member {PIXI.GC_MODES} + * @see PIXI.settings.GC_MODE + */ + this.mode = settings.GC_MODE; + } + + if ( System ) TextureGCSystem.__proto__ = System; + TextureGCSystem.prototype = Object.create( System && System.prototype ); + TextureGCSystem.prototype.constructor = TextureGCSystem; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.postrender = function postrender () + { + this.count++; + + if (this.mode === GC_MODES.MANUAL) + { + return; + } + + this.checkCount++; + + if (this.checkCount > this.checkCountMax) + { + this.checkCount = 0; + + this.run(); + } + }; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.run = function run () + { + var tm = this.renderer.texture; + var managedTextures = tm.managedTextures; + var wasRemoved = false; + + for (var i = 0; i < managedTextures.length; i++) + { + var texture = managedTextures[i]; + + // only supports non generated textures at the moment! + if (!texture.framebuffer && this.count - texture.touched > this.maxIdle) + { + tm.destroyTexture(texture, true); + managedTextures[i] = null; + wasRemoved = true; + } + } + + if (wasRemoved) + { + var j = 0; + + for (var i$1 = 0; i$1 < managedTextures.length; i$1++) + { + if (managedTextures[i$1] !== null) + { + managedTextures[j++] = managedTextures[i$1]; + } + } + + managedTextures.length = j; + } + }; + + /** + * Removes all the textures within the specified displayObject and its children from the GPU + * + * @param {PIXI.DisplayObject} displayObject - the displayObject to remove the textures from. + */ + TextureGCSystem.prototype.unload = function unload (displayObject) + { + var tm = this.renderer.textureSystem; + + // only destroy non generated textures + if (displayObject._texture && displayObject._texture._glRenderTargets) + { + tm.destroyTexture(displayObject._texture); + } + + for (var i = displayObject.children.length - 1; i >= 0; i--) + { + this.unload(displayObject.children[i]); + } + }; + + return TextureGCSystem; +}(System)); + +/** + * Internal texture for WebGL context + * @class + * @memberof PIXI + */ +var GLTexture = function GLTexture(texture) +{ + /** + * The WebGL texture + * @member {WebGLTexture} + */ + this.texture = texture; + + /** + * Width of texture that was used in texImage2D + * @member {number} + */ + this.width = -1; + + /** + * Height of texture that was used in texImage2D + * @member {number} + */ + this.height = -1; + + /** + * Texture contents dirty flag + * @member {number} + */ + this.dirtyId = -1; + + /** + * Texture style dirty flag + * @member {number} + */ + this.dirtyStyleId = -1; + + /** + * Whether mip levels has to be generated + * @member {boolean} + */ + this.mipmap = false; + + /** + * WrapMode copied from baseTexture + * @member {number} + */ + this.wrapMode = 33071; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.type = 6408; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.internalFormat = 5121; +}; + +/** + * System plugin to the renderer to manage textures. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var TextureSystem = /*@__PURE__*/(function (System) { + function TextureSystem(renderer) + { + System.call(this, renderer); + + // TODO set to max textures... + /** + * Bound textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.boundTextures = []; + /** + * Current location + * @member {number} + * @readonly + */ + this.currentLocation = -1; + + /** + * List of managed textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.managedTextures = []; + + /** + * Did someone temper with textures state? We'll overwrite them when we need to unbind something. + * @member {boolean} + * @private + */ + this._unknownBoundTextures = false; + + /** + * BaseTexture value that shows that we don't know what is bound + * @member {PIXI.BaseTexture} + * @readonly + */ + this.unknownTexture = new BaseTexture(); + } + + if ( System ) TextureSystem.__proto__ = System; + TextureSystem.prototype = Object.create( System && System.prototype ); + TextureSystem.prototype.constructor = TextureSystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + TextureSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + this.webGLVersion = this.renderer.context.webGLVersion; + + var maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS); + + this.boundTextures.length = maxTextures; + + for (var i = 0; i < maxTextures; i++) + { + this.boundTextures[i] = null; + } + + // TODO move this.. to a nice make empty textures class.. + this.emptyTextures = {}; + + var emptyTexture2D = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_2D, emptyTexture2D.texture); + gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4)); + + this.emptyTextures[gl.TEXTURE_2D] = emptyTexture2D; + this.emptyTextures[gl.TEXTURE_CUBE_MAP] = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_CUBE_MAP, this.emptyTextures[gl.TEXTURE_CUBE_MAP].texture); + + for (var i$1 = 0; i$1 < 6; i$1++) + { + gl.texImage2D(gl.TEXTURE_CUBE_MAP_POSITIVE_X + i$1, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, null); + } + + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + + for (var i$2 = 0; i$2 < this.boundTextures.length; i$2++) + { + this.bind(null, i$2); + } + }; + + /** + * Bind a texture to a specific location + * + * If you want to unbind something, please use `unbind(texture)` instead of `bind(null, textureLocation)` + * + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + * @param {number} [location=0] - Location to bind at + */ + TextureSystem.prototype.bind = function bind (texture, location) + { + if ( location === void 0 ) location = 0; + + var ref = this; + var gl = ref.gl; + + if (texture) + { + texture = texture.baseTexture || texture; + + if (texture.valid) + { + texture.touched = this.renderer.textureGC.count; + + var glTexture = texture._glTextures[this.CONTEXT_UID] || this.initTexture(texture); + + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + if (this.boundTextures[location] !== texture) + { + gl.bindTexture(texture.target, glTexture.texture); + } + + if (glTexture.dirtyId !== texture.dirtyId) + { + this.updateTexture(texture); + } + + this.boundTextures[location] = texture; + } + } + else + { + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[gl.TEXTURE_2D].texture); + this.boundTextures[location] = null; + } + }; + + /** + * Resets texture location and bound textures + * + * Actual `bind(null, i)` calls will be performed at next `unbind()` call + */ + TextureSystem.prototype.reset = function reset () + { + this._unknownBoundTextures = true; + this.currentLocation = -1; + + for (var i = 0; i < this.boundTextures.length; i++) + { + this.boundTextures[i] = this.unknownTexture; + } + }; + + /** + * Unbind a texture + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + */ + TextureSystem.prototype.unbind = function unbind (texture) + { + var ref = this; + var gl = ref.gl; + var boundTextures = ref.boundTextures; + + if (this._unknownBoundTextures) + { + this._unknownBoundTextures = false; + // someone changed webGL state, + // we have to be sure that our texture does not appear in multi-texture renderer samplers + for (var i = 0; i < boundTextures.length; i++) + { + if (boundTextures[i] === this.unknownTexture) + { + this.bind(null, i); + } + } + } + + for (var i$1 = 0; i$1 < boundTextures.length; i$1++) + { + if (boundTextures[i$1] === texture) + { + if (this.currentLocation !== i$1) + { + gl.activeTexture(gl.TEXTURE0 + i$1); + this.currentLocation = i$1; + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[texture.target].texture); + boundTextures[i$1] = null; + } + } + }; + + /** + * Initialize a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.initTexture = function initTexture (texture) + { + var glTexture = new GLTexture(this.gl.createTexture()); + + // guarantee an update.. + glTexture.dirtyId = -1; + + texture._glTextures[this.CONTEXT_UID] = glTexture; + + this.managedTextures.push(texture); + texture.on('dispose', this.destroyTexture, this); + + return glTexture; + }; + + TextureSystem.prototype.initTextureType = function initTextureType (texture, glTexture) + { + glTexture.internalFormat = texture.format; + glTexture.type = texture.type; + if (this.webGLVersion !== 2) + { + return; + } + var gl = this.renderer.gl; + + if (texture.type === gl.FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA32F; + } + // that's WebGL1 HALF_FLOAT_OES + // we have to convert it to WebGL HALF_FLOAT + if (texture.type === TYPES.HALF_FLOAT) + { + glTexture.type = gl.HALF_FLOAT; + } + if (glTexture.type === gl.HALF_FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA16F; + } + }; + + /** + * Update a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.updateTexture = function updateTexture (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + var renderer = this.renderer; + + this.initTextureType(texture, glTexture); + + if (texture.resource && texture.resource.upload(renderer, texture, glTexture)) + ; + else + { + // default, renderTexture-like logic + var width = texture.realWidth; + var height = texture.realHeight; + var gl = renderer.gl; + + if (glTexture.width !== width + || glTexture.height !== height + || glTexture.dirtyId < 0) + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(texture.target, 0, + glTexture.internalFormat, + width, + height, + 0, + texture.format, + glTexture.type, + null); + } + } + + // lets only update what changes.. + if (texture.dirtyStyleId !== glTexture.dirtyStyleId) + { + this.updateTextureStyle(texture); + } + glTexture.dirtyId = texture.dirtyId; + }; + + /** + * Deletes the texture from WebGL + * + * @private + * @param {PIXI.BaseTexture|PIXI.Texture} texture - the texture to destroy + * @param {boolean} [skipRemove=false] - Whether to skip removing the texture from the TextureManager. + */ + TextureSystem.prototype.destroyTexture = function destroyTexture (texture, skipRemove) + { + var ref = this; + var gl = ref.gl; + + texture = texture.baseTexture || texture; + + if (texture._glTextures[this.CONTEXT_UID]) + { + this.unbind(texture); + + gl.deleteTexture(texture._glTextures[this.CONTEXT_UID].texture); + texture.off('dispose', this.destroyTexture, this); + + delete texture._glTextures[this.CONTEXT_UID]; + + if (!skipRemove) + { + var i = this.managedTextures.indexOf(texture); + + if (i !== -1) + { + removeItems(this.managedTextures, i, 1); + } + } + } + }; + + /** + * Update texture style such as mipmap flag + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + */ + TextureSystem.prototype.updateTextureStyle = function updateTextureStyle (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + if ((texture.mipmap === MIPMAP_MODES.POW2 || this.webGLVersion !== 2) && !texture.isPowerOfTwo) + { + glTexture.mipmap = 0; + glTexture.wrapMode = WRAP_MODES.CLAMP; + } + else + { + glTexture.mipmap = texture.mipmap >= 1; + glTexture.wrapMode = texture.wrapMode; + } + + if (texture.resource && texture.resource.style(this.renderer, texture, glTexture)) + ; + else + { + this.setStyle(texture, glTexture); + } + + glTexture.dirtyStyleId = texture.dirtyStyleId; + }; + + /** + * Set style for texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + * @param {PIXI.GLTexture} glTexture + */ + TextureSystem.prototype.setStyle = function setStyle (texture, glTexture) + { + var gl = this.gl; + + if (glTexture.mipmap) + { + gl.generateMipmap(texture.target); + } + + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_S, glTexture.wrapMode); + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_T, glTexture.wrapMode); + + if (glTexture.mipmap) + { + /* eslint-disable max-len */ + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR_MIPMAP_LINEAR : gl.NEAREST_MIPMAP_NEAREST); + /* eslint-disable max-len */ + + var anisotropicExt = this.renderer.context.extensions.anisotropicFiltering; + + if (anisotropicExt && texture.anisotropicLevel > 0 && texture.scaleMode === SCALE_MODES.LINEAR) + { + var level = Math.min(texture.anisotropicLevel, gl.getParameter(anisotropicExt.MAX_TEXTURE_MAX_ANISOTROPY_EXT)); + + gl.texParameterf(texture.target, anisotropicExt.TEXTURE_MAX_ANISOTROPY_EXT, level); + } + } + else + { + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + } + + gl.texParameteri(texture.target, gl.TEXTURE_MAG_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + }; + + return TextureSystem; +}(System)); + +var tempMatrix = new Matrix(); + +/** + * The AbstractRenderer is the base for a PixiJS Renderer. It is extended by the {@link PIXI.CanvasRenderer} + * and {@link PIXI.Renderer} which can be used for rendering a PixiJS scene. + * + * @abstract + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var AbstractRenderer = /*@__PURE__*/(function (EventEmitter) { + function AbstractRenderer(system, options) + { + EventEmitter.call(this); + + // Add the default render options + options = Object.assign({}, settings.RENDER_OPTIONS, options); + + // Deprecation notice for renderer roundPixels option + if (options.roundPixels) + { + settings.ROUND_PIXELS = options.roundPixels; + deprecation('5.0.0', 'Renderer roundPixels option is deprecated, please use PIXI.settings.ROUND_PIXELS', 2); + } + + /** + * The supplied constructor options. + * + * @member {Object} + * @readOnly + */ + this.options = options; + + /** + * The type of the renderer. + * + * @member {number} + * @default PIXI.RENDERER_TYPE.UNKNOWN + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.UNKNOWN; + + /** + * Measurements of the screen. (0, 0, screenWidth, screenHeight). + * + * Its safe to use as filterArea or hitArea for the whole stage. + * + * @member {PIXI.Rectangle} + */ + this.screen = new Rectangle(0, 0, options.width, options.height); + + /** + * The canvas element that everything is drawn to. + * + * @member {HTMLCanvasElement} + */ + this.view = options.view || document.createElement('canvas'); + + /** + * The resolution / device pixel ratio of the renderer. + * + * @member {number} + * @default 1 + */ + this.resolution = options.resolution || settings.RESOLUTION; + + /** + * Whether the render view is transparent. + * + * @member {boolean} + */ + this.transparent = options.transparent; + + /** + * Whether CSS dimensions of canvas view should be resized to screen dimensions automatically. + * + * @member {boolean} + */ + this.autoDensity = options.autoDensity || options.autoResize || false; + // autoResize is deprecated, provides fallback support + + /** + * The value of the preserveDrawingBuffer flag affects whether or not the contents of + * the stencil buffer is retained after rendering. + * + * @member {boolean} + */ + this.preserveDrawingBuffer = options.preserveDrawingBuffer; + + /** + * This sets if the CanvasRenderer will clear the canvas or not before the new render pass. + * If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every + * frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect + * to clear the canvas every frame. Disable this by setting this to false. For example, if + * your game has a canvas filling background image you often don't need this set. + * + * @member {boolean} + * @default + */ + this.clearBeforeRender = options.clearBeforeRender; + + /** + * The background color as a number. + * + * @member {number} + * @protected + */ + this._backgroundColor = 0x000000; + + /** + * The background color as an [R, G, B] array. + * + * @member {number[]} + * @protected + */ + this._backgroundColorRgba = [0, 0, 0, 0]; + + /** + * The background color as a string. + * + * @member {string} + * @protected + */ + this._backgroundColorString = '#000000'; + + this.backgroundColor = options.backgroundColor || this._backgroundColor; // run bg color setter + + /** + * This temporary display object used as the parent of the currently being rendered item. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._tempDisplayObjectParent = new Container(); + + /** + * The last root object that the renderer tried to render. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._lastObjectRendered = this._tempDisplayObjectParent; + + /** + * Collection of plugins. + * @readonly + * @member {object} + */ + this.plugins = {}; + } + + if ( EventEmitter ) AbstractRenderer.__proto__ = EventEmitter; + AbstractRenderer.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + AbstractRenderer.prototype.constructor = AbstractRenderer; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },backgroundColor: { configurable: true } }; + + /** + * Initialize the plugins. + * + * @protected + * @param {object} staticMap - The dictionary of statically saved plugins. + */ + AbstractRenderer.prototype.initPlugins = function initPlugins (staticMap) + { + for (var o in staticMap) + { + this.plugins[o] = new (staticMap[o])(this); + } + }; + + /** + * Same as view.width, actual number of pixels in the canvas by horizontal. + * + * @member {number} + * @readonly + * @default 800 + */ + prototypeAccessors.width.get = function () + { + return this.view.width; + }; + + /** + * Same as view.height, actual number of pixels in the canvas by vertical. + * + * @member {number} + * @readonly + * @default 600 + */ + prototypeAccessors.height.get = function () + { + return this.view.height; + }; + + /** + * Resizes the screen and canvas to the specified width and height. + * Canvas dimensions are multiplied by resolution. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + AbstractRenderer.prototype.resize = function resize (screenWidth, screenHeight) + { + this.screen.width = screenWidth; + this.screen.height = screenHeight; + + this.view.width = screenWidth * this.resolution; + this.view.height = screenHeight * this.resolution; + + if (this.autoDensity) + { + this.view.style.width = screenWidth + "px"; + this.view.style.height = screenHeight + "px"; + } + }; + + /** + * Useful function that returns a texture of the display object that can then be used to create sprites + * This can be quite useful if your displayObject is complicated and needs to be reused multiple times. + * + * @param {PIXI.DisplayObject} displayObject - The displayObject the object will be generated from. + * @param {number} scaleMode - Should be one of the scaleMode consts. + * @param {number} resolution - The resolution / device pixel ratio of the texture being generated. + * @param {PIXI.Rectangle} [region] - The region of the displayObject, that shall be rendered, + * if no region is specified, defaults to the local bounds of the displayObject. + * @return {PIXI.RenderTexture} A texture of the graphics object. + */ + AbstractRenderer.prototype.generateTexture = function generateTexture (displayObject, scaleMode, resolution, region) + { + region = region || displayObject.getLocalBounds(); + + // minimum texture size is 1x1, 0x0 will throw an error + if (region.width === 0) { region.width = 1; } + if (region.height === 0) { region.height = 1; } + + var renderTexture = RenderTexture.create(region.width | 0, region.height | 0, scaleMode, resolution); + + tempMatrix.tx = -region.x; + tempMatrix.ty = -region.y; + + this.render(displayObject, renderTexture, false, tempMatrix, !!displayObject.parent); + + return renderTexture; + }; + + /** + * Removes everything from the renderer and optionally removes the Canvas DOM element. + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + */ + AbstractRenderer.prototype.destroy = function destroy (removeView) + { + for (var o in this.plugins) + { + this.plugins[o].destroy(); + this.plugins[o] = null; + } + + if (removeView && this.view.parentNode) + { + this.view.parentNode.removeChild(this.view); + } + + this.plugins = null; + + this.type = RENDERER_TYPE.UNKNOWN; + + this.view = null; + + this.screen = null; + + this.resolution = 0; + + this.transparent = false; + + this.autoDensity = false; + + this.blendModes = null; + + this.options = null; + + this.preserveDrawingBuffer = false; + this.clearBeforeRender = false; + + this._backgroundColor = 0; + this._backgroundColorRgba = null; + this._backgroundColorString = null; + + this._tempDisplayObjectParent = null; + this._lastObjectRendered = null; + }; + + /** + * The background color to fill if not transparent + * + * @member {number} + */ + prototypeAccessors.backgroundColor.get = function () + { + return this._backgroundColor; + }; + + prototypeAccessors.backgroundColor.set = function (value) // eslint-disable-line require-jsdoc + { + this._backgroundColor = value; + this._backgroundColorString = hex2string(value); + hex2rgb(value, this._backgroundColorRgba); + }; + + Object.defineProperties( AbstractRenderer.prototype, prototypeAccessors ); + + return AbstractRenderer; +}(eventemitter3)); + +/** + * The Renderer draws the scene and all its content onto a WebGL enabled canvas. + * + * This renderer should be used for browsers that support WebGL. + * + * This renderer works by automatically managing WebGLBatchesm, so no need for Sprite Batches or Sprite Clouds. + * Don't forget to add the view to your DOM or you will not see anything! + * + * @class + * @memberof PIXI + * @extends PIXI.AbstractRenderer + */ +var Renderer = /*@__PURE__*/(function (AbstractRenderer) { + function Renderer(options) + { + if ( options === void 0 ) options = {}; + + AbstractRenderer.call(this, 'WebGL', options); + + // the options will have been modified here in the super constructor with pixi's default settings.. + options = this.options; + + /** + * The type of this renderer as a standardized const + * + * @member {number} + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.WEBGL; + + /** + * WebGL context, set by the contextSystem (this.context) + * + * @readonly + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.CONTEXT_UID = 0; + + // TODO legacy! + + /** + * Internal signal instances of **runner**, these + * are assigned to each system created. + * @see PIXI.Runner + * @name PIXI.Renderer#runners + * @private + * @type {object} + * @readonly + * @property {PIXI.Runner} destroy - Destroy runner + * @property {PIXI.Runner} contextChange - Context change runner + * @property {PIXI.Runner} reset - Reset runner + * @property {PIXI.Runner} update - Update runner + * @property {PIXI.Runner} postrender - Post-render runner + * @property {PIXI.Runner} prerender - Pre-render runner + * @property {PIXI.Runner} resize - Resize runner + */ + this.runners = { + destroy: new Runner('destroy'), + contextChange: new Runner('contextChange', 1), + reset: new Runner('reset'), + update: new Runner('update'), + postrender: new Runner('postrender'), + prerender: new Runner('prerender'), + resize: new Runner('resize', 2), + }; + + /** + * Global uniforms + * @member {PIXI.UniformGroup} + */ + this.globalUniforms = new UniformGroup({ + projectionMatrix: new Matrix(), + }, true); + + /** + * Mask system instance + * @member {PIXI.systems.MaskSystem} mask + * @memberof PIXI.Renderer# + * @readonly + */ + this.addSystem(MaskSystem, 'mask') + /** + * Context system instance + * @member {PIXI.systems.ContextSystem} context + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ContextSystem, 'context') + /** + * State system instance + * @member {PIXI.systems.StateSystem} state + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StateSystem, 'state') + /** + * Shader system instance + * @member {PIXI.systems.ShaderSystem} shader + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ShaderSystem, 'shader') + /** + * Texture system instance + * @member {PIXI.systems.TextureSystem} texture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureSystem, 'texture') + /** + * Geometry system instance + * @member {PIXI.systems.GeometrySystem} geometry + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(GeometrySystem, 'geometry') + /** + * Framebuffer system instance + * @member {PIXI.systems.FramebufferSystem} framebuffer + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FramebufferSystem, 'framebuffer') + /** + * Stencil system instance + * @member {PIXI.systems.StencilSystem} stencil + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StencilSystem, 'stencil') + /** + * Projection system instance + * @member {PIXI.systems.ProjectionSystem} projection + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ProjectionSystem, 'projection') + /** + * Texture garbage collector system instance + * @member {PIXI.systems.TextureGCSystem} textureGC + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureGCSystem, 'textureGC') + /** + * Filter system instance + * @member {PIXI.systems.FilterSystem} filter + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FilterSystem, 'filter') + /** + * RenderTexture system instance + * @member {PIXI.systems.RenderTextureSystem} renderTexture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(RenderTextureSystem, 'renderTexture') + + /** + * Batch system instance + * @member {PIXI.systems.BatchSystem} batch + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(BatchSystem, 'batch'); + + this.initPlugins(Renderer.__plugins); + + /** + * The options passed in to create a new WebGL context. + */ + if (options.context) + { + this.context.initFromContext(options.context); + } + else + { + this.context.initFromOptions({ + alpha: this.transparent, + antialias: options.antialias, + premultipliedAlpha: this.transparent && this.transparent !== 'notMultiplied', + stencil: true, + preserveDrawingBuffer: options.preserveDrawingBuffer, + powerPreference: this.options.powerPreference, + }); + } + + /** + * Flag if we are rendering to the screen vs renderTexture + * @member {boolean} + * @readonly + * @default true + */ + this.renderingToScreen = true; + + sayHello(this.context.webGLVersion === 2 ? 'WebGL 2' : 'WebGL 1'); + + this.resize(this.options.width, this.options.height); + } + + if ( AbstractRenderer ) Renderer.__proto__ = AbstractRenderer; + Renderer.prototype = Object.create( AbstractRenderer && AbstractRenderer.prototype ); + Renderer.prototype.constructor = Renderer; + + /** + * Add a new system to the renderer. + * @param {Function} ClassRef - Class reference + * @param {string} [name] - Property name for system, if not specified + * will use a static `name` property on the class itself. This + * name will be assigned as s property on the Renderer so make + * sure it doesn't collide with properties on Renderer. + * @return {PIXI.Renderer} Return instance of renderer + */ + Renderer.create = function create (options) + { + if (isWebGLSupported()) + { + return new Renderer(options); + } + + throw new Error('WebGL unsupported in this browser, use "pixi.js-legacy" for fallback canvas2d support.'); + }; + + Renderer.prototype.addSystem = function addSystem (ClassRef, name) + { + if (!name) + { + name = ClassRef.name; + } + + var system = new ClassRef(this); + + if (this[name]) + { + throw new Error(("Whoops! The name \"" + name + "\" is already in use")); + } + + this[name] = system; + + for (var i in this.runners) + { + this.runners[i].add(system); + } + + /** + * Fired after rendering finishes. + * + * @event PIXI.Renderer#postrender + */ + + /** + * Fired before rendering starts. + * + * @event PIXI.Renderer#prerender + */ + + /** + * Fired when the WebGL context is set. + * + * @event PIXI.Renderer#context + * @param {WebGLRenderingContext} gl - WebGL context. + */ + + return this; + }; + + /** + * Renders the object to its WebGL view + * + * @param {PIXI.DisplayObject} displayObject - The object to be rendered. + * @param {PIXI.RenderTexture} [renderTexture] - The render texture to render to. + * @param {boolean} [clear=true] - Should the canvas be cleared before the new render. + * @param {PIXI.Matrix} [transform] - A transform to apply to the render texture before rendering. + * @param {boolean} [skipUpdateTransform=false] - Should we skip the update transform pass? + */ + Renderer.prototype.render = function render (displayObject, renderTexture, clear, transform, skipUpdateTransform) + { + // can be handy to know! + this.renderingToScreen = !renderTexture; + + this.runners.prerender.run(); + this.emit('prerender'); + + // apply a transform at a GPU level + this.projection.transform = transform; + + // no point rendering if our context has been blown up! + if (this.context.isLost) + { + return; + } + + if (!renderTexture) + { + this._lastObjectRendered = displayObject; + } + + if (!skipUpdateTransform) + { + // update the scene graph + var cacheParent = displayObject.parent; + + displayObject.parent = this._tempDisplayObjectParent; + displayObject.updateTransform(); + displayObject.parent = cacheParent; + // displayObject.hitArea = //TODO add a temp hit area + } + + this.renderTexture.bind(renderTexture); + this.batch.currentRenderer.start(); + + if (clear !== undefined ? clear : this.clearBeforeRender) + { + this.renderTexture.clear(); + } + + displayObject.render(this); + + // apply transform.. + this.batch.currentRenderer.flush(); + + if (renderTexture) + { + renderTexture.baseTexture.update(); + } + + this.runners.postrender.run(); + + // reset transform after render + this.projection.transform = null; + + this.emit('postrender'); + }; + + /** + * Resizes the WebGL view to the specified width and height. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + Renderer.prototype.resize = function resize (screenWidth, screenHeight) + { + AbstractRenderer.prototype.resize.call(this, screenWidth, screenHeight); + + this.runners.resize.run(screenWidth, screenHeight); + }; + + /** + * Resets the WebGL state so you can render things however you fancy! + * + * @return {PIXI.Renderer} Returns itself. + */ + Renderer.prototype.reset = function reset () + { + this.runners.reset.run(); + + return this; + }; + + /** + * Clear the frame buffer + */ + Renderer.prototype.clear = function clear () + { + this.framebuffer.bind(); + this.framebuffer.clear(); + }; + + /** + * Removes everything from the renderer (event listeners, spritebatch, etc...) + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + * See: https://github.com/pixijs/pixi.js/issues/2233 + */ + Renderer.prototype.destroy = function destroy (removeView) + { + this.runners.destroy.run(); + + for (var r in this.runners) + { + this.runners[r].destroy(); + } + + // call base destroy + AbstractRenderer.prototype.destroy.call(this, removeView); + + // TODO nullify all the managers.. + this.gl = null; + }; + + /** + * Collection of installed plugins. These are included by default in PIXI, but can be excluded + * by creating a custom build. Consult the README for more information about creating custom + * builds and excluding plugins. + * @name PIXI.Renderer#plugins + * @type {object} + * @readonly + * @property {PIXI.accessibility.AccessibilityManager} accessibility Support tabbing interactive elements. + * @property {PIXI.extract.Extract} extract Extract image data from renderer. + * @property {PIXI.interaction.InteractionManager} interaction Handles mouse, touch and pointer events. + * @property {PIXI.prepare.Prepare} prepare Pre-render display objects. + */ + + /** + * Adds a plugin to the renderer. + * + * @method + * @param {string} pluginName - The name of the plugin. + * @param {Function} ctor - The constructor function or class for the plugin. + */ + Renderer.registerPlugin = function registerPlugin (pluginName, ctor) + { + Renderer.__plugins = Renderer.__plugins || {}; + Renderer.__plugins[pluginName] = ctor; + }; + + return Renderer; +}(AbstractRenderer)); + +/** + * This helper function will automatically detect which renderer you should be using. + * WebGL is the preferred renderer as it is a lot faster. If WebGL is not supported by + * the browser then this function will return a canvas renderer + * + * @memberof PIXI + * @function autoDetectRenderer + * @param {object} [options] - The optional renderer parameters + * @param {number} [options.width=800] - the width of the renderers view + * @param {number} [options.height=600] - the height of the renderers view + * @param {HTMLCanvasElement} [options.view] - the canvas to use as a view, optional + * @param {boolean} [options.transparent=false] - If the render view is transparent, default false + * @param {boolean} [options.autoDensity=false] - Resizes renderer view in CSS pixels to allow for + * resolutions other than 1 + * @param {boolean} [options.antialias=false] - sets antialias + * @param {boolean} [options.preserveDrawingBuffer=false] - enables drawing buffer preservation, enable this if you + * need to call toDataUrl on the webgl context + * @param {number} [options.backgroundColor=0x000000] - The background color of the rendered area + * (shown if not transparent). + * @param {boolean} [options.clearBeforeRender=true] - This sets if the renderer will clear the canvas or + * not before the new render pass. + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the renderer, retina would be 2 + * @param {boolean} [options.forceCanvas=false] - prevents selection of WebGL renderer, even if such is present, this + * option only is available when using **pixi.js-legacy** or **@pixi/canvas-renderer** modules, otherwise + * it is ignored. + * @param {boolean} [options.forceFXAA=false] - forces FXAA antialiasing to be used over native. + * FXAA is faster, but may not always look as great **webgl only** + * @param {string} [options.powerPreference] - Parameter passed to webgl context, set to "high-performance" + * for devices with dual graphics card **webgl only** + * @return {PIXI.Renderer|PIXI.CanvasRenderer} Returns WebGL renderer if available, otherwise CanvasRenderer + */ +function autoDetectRenderer(options) +{ + return Renderer.create(options); +} + +var defaultFilter = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +/** + * Used by the batcher to draw batches. + * Each one of these contains all information required to draw a bound geometry. + * + * @class + * @memberof PIXI + */ +var BatchDrawCall = function BatchDrawCall() +{ + this.textures = []; + this.ids = []; + this.blend = 0; + this.textureCount = 0; + this.start = 0; + this.size = 0; + this.type = 4; +}; + +/** + * Flexible wrapper around `ArrayBuffer` that also provides + * typed array views on demand. + * + * @class + * @memberof PIXI + */ +var ViewableBuffer = function ViewableBuffer(size) +{ + /** + * Underlying `ArrayBuffer` that holds all the data + * and is of capacity `size`. + * + * @member {ArrayBuffer} + */ + this.rawBinaryData = new ArrayBuffer(size); + + /** + * View on the raw binary data as a `Uint32Array`. + * + * @member {Uint32Array} + */ + this.uint32View = new Uint32Array(this.rawBinaryData); + + /** + * View on the raw binary data as a `Float32Array`. + * + * @member {Float32Array} + */ + this.float32View = new Float32Array(this.rawBinaryData); +}; + +var prototypeAccessors$5$1 = { int8View: { configurable: true },uint8View: { configurable: true },int16View: { configurable: true },uint16View: { configurable: true },int32View: { configurable: true } }; + +/** + * View on the raw binary data as a `Int8Array`. + * + * @member {Int8Array} + */ +prototypeAccessors$5$1.int8View.get = function () +{ + if (!this._int8View) + { + this._int8View = new Int8Array(this.rawBinaryData); + } + + return this._int8View; +}; + +/** + * View on the raw binary data as a `Uint8Array`. + * + * @member {Uint8Array} + */ +prototypeAccessors$5$1.uint8View.get = function () +{ + if (!this._uint8View) + { + this._uint8View = new Uint8Array(this.rawBinaryData); + } + + return this._uint8View; +}; + +/** + * View on the raw binary data as a `Int16Array`. + * + * @member {Int16Array} + */ +prototypeAccessors$5$1.int16View.get = function () +{ + if (!this._int16View) + { + this._int16View = new Int16Array(this.rawBinaryData); + } + + return this._int16View; +}; + +/** + * View on the raw binary data as a `Uint16Array`. + * + * @member {Uint16Array} + */ +prototypeAccessors$5$1.uint16View.get = function () +{ + if (!this._uint16View) + { + this._uint16View = new Uint16Array(this.rawBinaryData); + } + + return this._uint16View; +}; + +/** + * View on the raw binary data as a `Int32Array`. + * + * @member {Int32Array} + */ +prototypeAccessors$5$1.int32View.get = function () +{ + if (!this._int32View) + { + this._int32View = new Int32Array(this.rawBinaryData); + } + + return this._int32View; +}; + +/** + * Returns the view of the given type. + * + * @param {string} type - One of `int8`, `uint8`, `int16`, + *`uint16`, `int32`, `uint32`, and `float32`. + * @return {object} typed array of given type + */ +ViewableBuffer.prototype.view = function view (type) +{ + return this[(type + "View")]; +}; + +/** + * Destroys all buffer references. Do not use after calling + * this. + */ +ViewableBuffer.prototype.destroy = function destroy () +{ + this.rawBinaryData = null; + this._int8View = null; + this._uint8View = null; + this._int16View = null; + this._uint16View = null; + this._int32View = null; + this.uint32View = null; + this.float32View = null; +}; + +ViewableBuffer.sizeOf = function sizeOf (type) +{ + switch (type) + { + case 'int8': + case 'uint8': + return 1; + case 'int16': + case 'uint16': + return 2; + case 'int32': + case 'uint32': + case 'float32': + return 4; + default: + throw new Error((type + " isn't a valid view type")); + } +}; + +Object.defineProperties( ViewableBuffer.prototype, prototypeAccessors$5$1 ); + +/** + * Renderer dedicated to drawing and batching sprites. + * + * This is the default batch renderer. It buffers objects + * with texture-based geometries and renders them in + * batches. It uploads multiple textures to the GPU to + * reduce to the number of draw calls. + * + * @class + * @protected + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var AbstractBatchRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function AbstractBatchRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + /** + * This is used to generate a shader that can + * color each vertex based on a `aTextureId` + * attribute that points to an texture in `uSampler`. + * + * This enables the objects with different textures + * to be drawn in the same draw call. + * + * You can customize your shader by creating your + * custom shader generator. + * + * @member {PIXI.BatchShaderGenerator} + * @protected + */ + this.shaderGenerator = null; + + /** + * The class that represents the geometry of objects + * that are going to be batched with this. + * + * @member {object} + * @default PIXI.BatchGeometry + * @protected + */ + this.geometryClass = null; + + /** + * Size of data being buffered per vertex in the + * attribute buffers (in floats). By default, the + * batch-renderer plugin uses 6: + * + * | aVertexPosition | 2 | + * |-----------------|---| + * | aTextureCoords | 2 | + * | aColor | 1 | + * | aTextureId | 1 | + * + * @member {number} + * @readonly + */ + this.vertexSize = null; + + /** + * The WebGL state in which this renderer will work. + * + * @member {PIXI.State} + * @readonly + */ + this.state = State.for2d(); + + /** + * The number of bufferable objects before a flush + * occurs automatically. + * + * @member {number} + * @default settings.SPRITE_MAX_TEXTURES + */ + this.size = 2000 * 4;// settings.SPRITE_BATCH_SIZE, 2000 is a nice balance between mobile/desktop + + /** + * Total count of all vertices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._vertexCount = 0; + + /** + * Total count of all indices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._indexCount = 0; + + /** + * Buffer of objects that are yet to be rendered. + * + * @member {PIXI.DisplayObject[]} + * @private + */ + this._bufferedElements = []; + + /** + * Number of elements that are buffered and are + * waiting to be flushed. + * + * @member {number} + * @private + */ + this._bufferSize = 0; + + /** + * This shader is generated by `this.shaderGenerator`. + * + * It is generated specifically to handle the required + * number of textures being batched together. + * + * @member {PIXI.Shader} + * @protected + */ + this._shader = null; + + /** + * Pool of `this.geometryClass` geometry objects + * that store buffers. They are used to pass data + * to the shader on each draw call. + * + * These are never re-allocated again, unless a + * context change occurs; however, the pool may + * be expanded if required. + * + * @member {PIXI.Geometry[]} + * @private + * @see PIXI.AbstractBatchRenderer.contextChange + */ + this._packedGeometries = []; + + /** + * Size of `this._packedGeometries`. It can be expanded + * if more than `this._packedGeometryPoolSize` flushes + * occur in a single frame. + * + * @member {number} + * @private + */ + this._packedGeometryPoolSize = 2; + + /** + * A flush may occur multiple times in a single + * frame. On iOS devices or when + * `settings.CAN_UPLOAD_SAME_BUFFER` is false, the + * batch renderer does not upload data to the same + * `WebGLBuffer` for performance reasons. + * + * This is the index into `packedGeometries` that points to + * geometry holding the most recent buffers. + * + * @member {number} + * @private + */ + this._flushId = 0; + + /** + * Pool of `BatchDrawCall` objects that `flush` used + * to create "batches" of the objects being rendered. + * + * These are never re-allocated again. + * + * @member BatchDrawCall[] + * @private + */ + this._drawCalls = []; + + for (var k = 0; k < this.size / 4; k++) + { // initialize the draw-calls pool to max size. + this._drawCalls[k] = new BatchDrawCall(); + } + + /** + * Pool of `ViewableBuffer` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing attributes. + * + * The first buffer has a size of 8; each subsequent + * buffer has double capacity of its previous. + * + * @member {PIXI.ViewableBuffer} + * @private + * @see PIXI.AbstractBatchRenderer#getAttributeBuffer + */ + this._aBuffers = {}; + + /** + * Pool of `Uint16Array` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing indices. + * + * The first buffer has a size of 12; each subsequent + * buffer has double capacity of its previous. + * + * @member {Uint16Array[]} + * @private + * @see PIXI.AbstractBatchRenderer#getIndexBuffer + */ + this._iBuffers = {}; + + /** + * Maximum number of textures that can be uploaded to + * the GPU under the current context. It is initialized + * properly in `this.contextChange`. + * + * @member {number} + * @see PIXI.AbstractBatchRenderer#contextChange + * @readonly + */ + this.MAX_TEXTURES = 1; + + this.renderer.on('prerender', this.onPrerender, this); + renderer.runners.contextChange.add(this); + } + + if ( ObjectRenderer ) AbstractBatchRenderer.__proto__ = ObjectRenderer; + AbstractBatchRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + AbstractBatchRenderer.prototype.constructor = AbstractBatchRenderer; + + /** + * Handles the `contextChange` signal. + * + * It calculates `this.MAX_TEXTURES` and allocating the + * packed-geometry object pool. + */ + AbstractBatchRenderer.prototype.contextChange = function contextChange () + { + var gl = this.renderer.gl; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + this.MAX_TEXTURES = 1; + } + else + { + // step 1: first check max textures the GPU can handle. + this.MAX_TEXTURES = Math.min( + gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS), + settings.SPRITE_MAX_TEXTURES); + + // step 2: check the maximum number of if statements the shader can have too.. + this.MAX_TEXTURES = checkMaxIfStatementsInShader( + this.MAX_TEXTURES, gl); + } + + this._shader = this.shaderGenerator.generateShader(this.MAX_TEXTURES); + + // we use the second shader as the first one depending on your browser + // may omit aTextureId as it is not used by the shader so is optimized out. + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + /* eslint-disable max-len */ + this._packedGeometries[i] = new (this.geometryClass)(); + } + }; + + /** + * Handles the `prerender` signal. + * + * It ensures that flushes start from the first geometry + * object again. + */ + AbstractBatchRenderer.prototype.onPrerender = function onPrerender () + { + this._flushId = 0; + }; + + /** + * Buffers the "batchable" object. It need not be rendered + * immediately. + * + * @param {PIXI.Sprite} sprite - the sprite to render when + * using this spritebatch + */ + AbstractBatchRenderer.prototype.render = function render (element) + { + if (!element._texture.valid) + { + return; + } + + if (this._vertexCount + (element.vertexData.length / 2) > this.size) + { + this.flush(); + } + + this._vertexCount += element.vertexData.length / 2; + this._indexCount += element.indices.length; + this._bufferedElements[this._bufferSize++] = element; + }; + + /** + * Renders the content _now_ and empties the current batch. + */ + AbstractBatchRenderer.prototype.flush = function flush () + { + if (this._vertexCount === 0) + { + return; + } + + var attributeBuffer = this.getAttributeBuffer(this._vertexCount); + var indexBuffer = this.getIndexBuffer(this._indexCount); + var gl = this.renderer.gl; + + var ref = this; + var elements = ref._bufferedElements; + var drawCalls = ref._drawCalls; + var MAX_TEXTURES = ref.MAX_TEXTURES; + var packedGeometries = ref._packedGeometries; + var vertexSize = ref.vertexSize; + + var touch = this.renderer.textureGC.count; + + var index = 0; + var _indexCount = 0; + + var nextTexture; + var currentTexture; + var textureCount = 0; + + var currentGroup = drawCalls[0]; + var groupCount = 0; + + var blendMode = -1;// blend-mode of previous element/sprite/object! + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.blend = blendMode; + + var TICK = ++BaseTexture._globalBatch; + var i; + + for (i = 0; i < this._bufferSize; ++i) + { + var sprite = elements[i]; + + elements[i] = null; + nextTexture = sprite._texture.baseTexture; + + var spriteBlendMode = premultiplyBlendMode[ + nextTexture.premultiplyAlpha ? 1 : 0][sprite.blendMode]; + + if (blendMode !== spriteBlendMode) + { + blendMode = spriteBlendMode; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + currentGroup.size = _indexCount - currentGroup.start; + + currentGroup = drawCalls[groupCount++]; + currentGroup.textureCount = 0; + currentGroup.blend = blendMode; + currentGroup.start = _indexCount; + } + + nextTexture.touched = touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + this.packInterleavedGeometry(sprite, attributeBuffer, + indexBuffer, index, _indexCount); + + // push a graphics.. + index += (sprite.vertexData.length / 2) * vertexSize; + _indexCount += sprite.indices.length; + } + + BaseTexture._globalBatch = TICK; + currentGroup.size = _indexCount - currentGroup.start; + + if (!settings.CAN_UPLOAD_SAME_BUFFER) + { /* Usually on iOS devices, where the browser doesn't + like uploads to the same buffer in a single frame. */ + if (this._packedGeometryPoolSize <= this._flushId) + { + this._packedGeometryPoolSize++; + packedGeometries[this._flushId] = new (this.geometryClass)(); + } + + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.bind(packedGeometries[this._flushId]); + this.renderer.geometry.updateBuffers(); + this._flushId++; + } + else + { + // lets use the faster option, always use buffer number 0 + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.updateBuffers(); + } + + var textureSystem = this.renderer.texture; + var stateSystem = this.renderer.state; + + // Upload textures and do the draw calls + for (i = 0; i < groupCount; i++) + { + var group = drawCalls[i]; + var groupTextureCount = group.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + textureSystem.bind(group.textures[j], j); + group.textures[j] = null; + } + + stateSystem.setBlendMode(group.blend); + gl.drawElements(group.type, group.size, gl.UNSIGNED_SHORT, group.start * 2); + } + + // reset elements for the next flush + this._bufferSize = 0; + this._vertexCount = 0; + this._indexCount = 0; + }; + + /** + * Starts a new sprite batch. + */ + AbstractBatchRenderer.prototype.start = function start () + { + this.renderer.state.set(this.state); + + this.renderer.shader.bind(this._shader); + + if (settings.CAN_UPLOAD_SAME_BUFFER) + { + // bind buffer #0, we don't need others + this.renderer.geometry.bind(this._packedGeometries[this._flushId]); + } + }; + + /** + * Stops and flushes the current batch. + */ + AbstractBatchRenderer.prototype.stop = function stop () + { + this.flush(); + }; + + /** + * Destroys this `AbstractBatchRenderer`. It cannot be used again. + */ + AbstractBatchRenderer.prototype.destroy = function destroy () + { + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + if (this._packedGeometries[i]) + { + this._packedGeometries[i].destroy(); + } + } + + this.renderer.off('prerender', this.onPrerender, this); + + this._aBuffers = null; + this._iBuffers = null; + this._packedGeometries = null; + this._drawCalls = null; + + if (this._shader) + { + this._shader.destroy(); + this._shader = null; + } + + ObjectRenderer.prototype.destroy.call(this); + }; + + /** + * Fetches an attribute buffer from `this._aBuffers` that + * can hold atleast `size` floats. + * + * @param {number} size - minimum capacity required + * @return {ViewableBuffer} - buffer than can hold atleast `size` floats + * @private + */ + AbstractBatchRenderer.prototype.getAttributeBuffer = function getAttributeBuffer (size) + { + // 8 vertices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 8)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 8; + + if (this._aBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._aBuffers[roundedSize]; + + if (!buffer) + { + this._aBuffers[roundedSize] = buffer = new ViewableBuffer(roundedSize * this.vertexSize * 4); + } + + return buffer; + }; + + /** + * Fetches an index buffer from `this._iBuffers` that can + * has atleast `size` capacity. + * + * @param {number} size - minimum required capacity + * @return {Uint16Array} - buffer that can fit `size` + * indices. + * @private + */ + AbstractBatchRenderer.prototype.getIndexBuffer = function getIndexBuffer (size) + { + // 12 indices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 12)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 12; + + if (this._iBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._iBuffers[roundedSizeIndex]; + + if (!buffer) + { + this._iBuffers[roundedSizeIndex] = buffer = new Uint16Array(roundedSize); + } + + return buffer; + }; + + /** + * Takes the four batching parameters of `element`, interleaves + * and pushes them into the batching attribute/index buffers given. + * + * It uses these properties: `vertexData` `uvs`, `textureId` and + * `indicies`. It also uses the "tint" of the base-texture, if + * present. + * + * @param {PIXI.Sprite} element - element being rendered + * @param {PIXI.ViewableBuffer} attributeBuffer - attribute buffer. + * @param {Uint16Array} indexBuffer - index buffer + * @param {number} aIndex - number of floats already in the attribute buffer + * @param {number} iIndex - number of indices already in `indexBuffer` + */ + AbstractBatchRenderer.prototype.packInterleavedGeometry = function packInterleavedGeometry (element, attributeBuffer, indexBuffer, aIndex, iIndex) + { + var uint32View = attributeBuffer.uint32View; + var float32View = attributeBuffer.float32View; + + var packedVertices = aIndex / this.vertexSize; + var uvs = element.uvs; + var indicies = element.indices; + var vertexData = element.vertexData; + var textureId = element._texture.baseTexture._id; + + var alpha = Math.min(element.worldAlpha, 1.0); + var argb = (alpha < 1.0 + && element._texture.baseTexture.premultiplyAlpha) + ? premultiplyTint(element._tintRGB, alpha) + : element._tintRGB + (alpha * 255 << 24); + + // lets not worry about tint! for now.. + for (var i = 0; i < vertexData.length; i += 2) + { + float32View[aIndex++] = vertexData[i]; + float32View[aIndex++] = vertexData[i + 1]; + float32View[aIndex++] = uvs[i]; + float32View[aIndex++] = uvs[i + 1]; + uint32View[aIndex++] = argb; + float32View[aIndex++] = textureId; + } + + for (var i$1 = 0; i$1 < indicies.length; i$1++) + { + indexBuffer[iIndex++] = packedVertices + indicies[i$1]; + } + }; + + return AbstractBatchRenderer; +}(ObjectRenderer)); + +/** + * Helper that generates batching multi-texture shader. Use it with your new BatchRenderer + * + * @class + * @memberof PIXI + */ +var BatchShaderGenerator = function BatchShaderGenerator(vertexSrc, fragTemplate) +{ + /** + * Reference to the vertex shader source. + * + * @member {string} + */ + this.vertexSrc = vertexSrc; + + /** + * Reference to the fragement shader template. Must contain "%count%" and "%forloop%". + * + * @member {string} + */ + this.fragTemplate = fragTemplate; + + this.programCache = {}; + this.defaultGroupCache = {}; + + if (fragTemplate.indexOf('%count%') < 0) + { + throw new Error('Fragment template must contain "%count%".'); + } + + if (fragTemplate.indexOf('%forloop%') < 0) + { + throw new Error('Fragment template must contain "%forloop%".'); + } +}; + +BatchShaderGenerator.prototype.generateShader = function generateShader (maxTextures) +{ + if (!this.programCache[maxTextures]) + { + var sampleValues = new Int32Array(maxTextures); + + for (var i = 0; i < maxTextures; i++) + { + sampleValues[i] = i; + } + + this.defaultGroupCache[maxTextures] = UniformGroup.from({ uSamplers: sampleValues }, true); + + var fragmentSrc = this.fragTemplate; + + fragmentSrc = fragmentSrc.replace(/%count%/gi, ("" + maxTextures)); + fragmentSrc = fragmentSrc.replace(/%forloop%/gi, this.generateSampleSrc(maxTextures)); + + this.programCache[maxTextures] = new Program(this.vertexSrc, fragmentSrc); + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: this.defaultGroupCache[maxTextures], + }; + + return new Shader(this.programCache[maxTextures], uniforms); +}; + +BatchShaderGenerator.prototype.generateSampleSrc = function generateSampleSrc (maxTextures) +{ + var src = ''; + + src += '\n'; + src += '\n'; + + for (var i = 0; i < maxTextures; i++) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxTextures - 1) + { + src += "if(vTextureId < " + i + ".5)"; + } + + src += '\n{'; + src += "\n\tcolor = texture2D(uSamplers[" + i + "], vTextureCoord);"; + src += '\n}'; + } + + src += '\n'; + src += '\n'; + + return src; +}; + +/** + * Geometry used to batch standard PIXI content (e.g. Mesh, Sprite, Graphics objects). + * + * @class + * @memberof PIXI + */ +var BatchGeometry = /*@__PURE__*/(function (Geometry) { + function BatchGeometry(_static) + { + if ( _static === void 0 ) _static = false; + + Geometry.call(this); + + /** + * Buffer used for position, color, texture IDs + * + * @member {PIXI.Buffer} + * @protected + */ + this._buffer = new Buffer$1(null, _static, false); + + /** + * Index buffer data + * + * @member {PIXI.Buffer} + * @protected + */ + this._indexBuffer = new Buffer$1(null, _static, true); + + this.addAttribute('aVertexPosition', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aTextureCoord', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aColor', this._buffer, 4, true, TYPES.UNSIGNED_BYTE) + .addAttribute('aTextureId', this._buffer, 1, true, TYPES.FLOAT) + .addIndex(this._indexBuffer); + } + + if ( Geometry ) BatchGeometry.__proto__ = Geometry; + BatchGeometry.prototype = Object.create( Geometry && Geometry.prototype ); + BatchGeometry.prototype.constructor = BatchGeometry; + + return BatchGeometry; +}(Geometry)); + +var defaultVertex$2 = "precision highp float;\nattribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\nattribute float aTextureId;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform vec4 tint;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vTextureId = aTextureId;\n vColor = aColor * tint;\n}\n"; + +var defaultFragment$2 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\nuniform sampler2D uSamplers[%count%];\n\nvoid main(void){\n vec4 color;\n %forloop%\n gl_FragColor = color * vColor;\n}\n"; + +/** + * @class + * @memberof PIXI + * @hideconstructor + */ +var BatchPluginFactory = function BatchPluginFactory () {}; + +var staticAccessors$1$1 = { defaultVertexSrc: { configurable: true },defaultFragmentTemplate: { configurable: true } }; + +BatchPluginFactory.create = function create (options) +{ + var ref = Object.assign({ + vertex: defaultVertex$2, + fragment: defaultFragment$2, + geometryClass: BatchGeometry, + vertexSize: 6, + }, options); + var vertex = ref.vertex; + var fragment = ref.fragment; + var vertexSize = ref.vertexSize; + var geometryClass = ref.geometryClass; + + return /*@__PURE__*/(function (AbstractBatchRenderer) { + function BatchPlugin(renderer) + { + AbstractBatchRenderer.call(this, renderer); + + this.shaderGenerator = new BatchShaderGenerator(vertex, fragment); + this.geometryClass = geometryClass; + this.vertexSize = vertexSize; + } + + if ( AbstractBatchRenderer ) BatchPlugin.__proto__ = AbstractBatchRenderer; + BatchPlugin.prototype = Object.create( AbstractBatchRenderer && AbstractBatchRenderer.prototype ); + BatchPlugin.prototype.constructor = BatchPlugin; + + return BatchPlugin; + }(AbstractBatchRenderer)); +}; + +/** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultVertexSrc.get = function () +{ + return defaultVertex$2; +}; + +/** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultFragmentTemplate.get = function () +{ + return defaultFragment$2; +}; + +Object.defineProperties( BatchPluginFactory, staticAccessors$1$1 ); + +// Setup the default BatchRenderer plugin, this is what +// we'll actually export at the root level +var BatchRenderer = BatchPluginFactory.create(); + +/*! + * @pixi/extract - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/extract is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var TEMP_RECT = new Rectangle(); +var BYTES_PER_PIXEL = 4; + +/** + * The extract manager provides functionality to export content from the renderers. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.extract` + * + * @class + * @memberof PIXI.extract + */ +var Extract = function Extract(renderer) +{ + this.renderer = renderer; + /** + * Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture + * + * @member {PIXI.extract.Extract} extract + * @memberof PIXI.Renderer# + * @see PIXI.extract.Extract + */ + renderer.extract = this; +}; + +/** + * Will return a HTML Image of the target + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {HTMLImageElement} HTML Image of the target + */ +Extract.prototype.image = function image (target, format, quality) +{ + var image = new Image(); + + image.src = this.base64(target, format, quality); + + return image; +}; + +/** + * Will return a a base64 encoded string of this target. It works by calling + * `Extract.getCanvas` and then running toDataURL on that. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {string} A base64 encoded string of the texture. + */ +Extract.prototype.base64 = function base64 (target, format, quality) +{ + return this.canvas(target).toDataURL(format, quality); +}; + +/** + * Creates a Canvas element, renders this target to it and then returns it. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {HTMLCanvasElement} A Canvas element with the texture rendered on. + */ +Extract.prototype.canvas = function canvas (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var flipY = false; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + flipY = false; + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = this.renderer.resolution; + + flipY = true; + + frame = TEMP_RECT; + frame.width = this.renderer.width; + frame.height = this.renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = Math.floor(frame.width * resolution); + var height = Math.floor(frame.height * resolution); + + var canvasBuffer = new CanvasRenderTarget(width, height, 1); + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + // add the pixels to the canvas + var canvasData = canvasBuffer.context.getImageData(0, 0, width, height); + + Extract.arrayPostDivide(webglPixels, canvasData.data); + + canvasBuffer.context.putImageData(canvasData, 0, 0); + + // pulling pixels + if (flipY) + { + canvasBuffer.context.scale(1, -1); + canvasBuffer.context.drawImage(canvasBuffer.canvas, 0, -height); + } + + if (generated) + { + renderTexture.destroy(true); + } + + // send the canvas back.. + return canvasBuffer.canvas; +}; + +/** + * Will return a one-dimensional array containing the pixel data of the entire texture in RGBA + * order, with integer values between 0 and 255 (included). + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {Uint8Array} One-dimensional array containing the pixel data of the entire texture + */ +Extract.prototype.pixels = function pixels (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + + // bind the buffer + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = renderer.resolution; + + frame = TEMP_RECT; + frame.width = renderer.width; + frame.height = renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = frame.width * resolution; + var height = frame.height * resolution; + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + if (generated) + { + renderTexture.destroy(true); + } + + Extract.arrayPostDivide(webglPixels, webglPixels); + + return webglPixels; +}; + +/** + * Destroys the extract + * + */ +Extract.prototype.destroy = function destroy () +{ + this.renderer.extract = null; + this.renderer = null; +}; + +/** + * Takes premultiplied pixel data and produces regular pixel data + * + * @private + * @param pixels {number[] | Uint8Array | Uint8ClampedArray} array of pixel data + * @param out {number[] | Uint8Array | Uint8ClampedArray} output array + */ +Extract.arrayPostDivide = function arrayPostDivide (pixels, out) +{ + for (var i = 0; i < pixels.length; i += 4) + { + var alpha = out[i + 3] = pixels[i + 3]; + + if (alpha !== 0) + { + out[i] = Math.round(Math.min(pixels[i] * 255.0 / alpha, 255.0)); + out[i + 1] = Math.round(Math.min(pixels[i + 1] * 255.0 / alpha, 255.0)); + out[i + 2] = Math.round(Math.min(pixels[i + 2] * 255.0 / alpha, 255.0)); + } + else + { + out[i] = pixels[i]; + out[i + 1] = pixels[i + 1]; + out[i + 2] = pixels[i + 2]; + } + } +}; + +/*! + * @pixi/interaction - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/interaction is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Holds all information related to an Interaction event + * + * @class + * @memberof PIXI.interaction + */ +var InteractionData = function InteractionData() +{ + /** + * This point stores the global coords of where the touch/mouse event happened + * + * @member {PIXI.Point} + */ + this.global = new Point(); + + /** + * The target Sprite that was interacted with + * + * @member {PIXI.Sprite} + */ + this.target = null; + + /** + * When passed to an event handler, this will be the original DOM Event that was captured + * + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent + * @member {MouseEvent|TouchEvent|PointerEvent} + */ + this.originalEvent = null; + + /** + * Unique identifier for this interaction + * + * @member {number} + */ + this.identifier = null; + + /** + * Indicates whether or not the pointer device that created the event is the primary pointer. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary + * @type {Boolean} + */ + this.isPrimary = false; + + /** + * Indicates which button was pressed on the mouse or pointer device to trigger the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button + * @type {number} + */ + this.button = 0; + + /** + * Indicates which buttons are pressed on the mouse or pointer device when the event is triggered. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/buttons + * @type {number} + */ + this.buttons = 0; + + /** + * The width of the pointer's contact along the x-axis, measured in CSS pixels. + * radiusX of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width + * @type {number} + */ + this.width = 0; + + /** + * The height of the pointer's contact along the y-axis, measured in CSS pixels. + * radiusY of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height + * @type {number} + */ + this.height = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX + * @type {number} + */ + this.tiltX = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY + * @type {number} + */ + this.tiltY = 0; + + /** + * The type of pointer that triggered the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType + * @type {string} + */ + this.pointerType = null; + + /** + * Pressure applied by the pointing device during the event. A Touch's force property + * will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure + * @type {number} + */ + this.pressure = 0; + + /** + * From TouchEvents (not PointerEvents triggered by touches), the rotationAngle of the Touch. + * @see https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle + * @type {number} + */ + this.rotationAngle = 0; + + /** + * Twist of a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.twist = 0; + + /** + * Barrel pressure on a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.tangentialPressure = 0; +}; + +var prototypeAccessors$6 = { pointerId: { configurable: true } }; + +/** + * The unique identifier of the pointer. It will be the same as `identifier`. + * @readonly + * @member {number} + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId + */ +prototypeAccessors$6.pointerId.get = function () +{ + return this.identifier; +}; + +/** + * This will return the local coordinates of the specified displayObject for this InteractionData + * + * @param {PIXI.DisplayObject} displayObject - The DisplayObject that you would like the local + * coords off + * @param {PIXI.Point} [point] - A Point object in which to store the value, optional (otherwise + * will create a new point) + * @param {PIXI.Point} [globalPos] - A Point object containing your custom global coords, optional + * (otherwise will use the current global coords) + * @return {PIXI.Point} A point containing the coordinates of the InteractionData position relative + * to the DisplayObject + */ +InteractionData.prototype.getLocalPosition = function getLocalPosition (displayObject, point, globalPos) +{ + return displayObject.worldTransform.applyInverse(globalPos || this.global, point); +}; + +/** + * Copies properties from normalized event data. + * + * @param {Touch|MouseEvent|PointerEvent} event The normalized event data + */ +InteractionData.prototype.copyEvent = function copyEvent (event) +{ + // isPrimary should only change on touchstart/pointerdown, so we don't want to overwrite + // it with "false" on later events when our shim for it on touch events might not be + // accurate + if (event.isPrimary) + { + this.isPrimary = true; + } + this.button = event.button; + // event.buttons is not available in all browsers (ie. Safari), but it does have a non-standard + // event.which property instead, which conveys the same information. + this.buttons = Number.isInteger(event.buttons) ? event.buttons : event.which; + this.width = event.width; + this.height = event.height; + this.tiltX = event.tiltX; + this.tiltY = event.tiltY; + this.pointerType = event.pointerType; + this.pressure = event.pressure; + this.rotationAngle = event.rotationAngle; + this.twist = event.twist || 0; + this.tangentialPressure = event.tangentialPressure || 0; +}; + +/** + * Resets the data for pooling. + */ +InteractionData.prototype.reset = function reset () +{ + // isPrimary is the only property that we really need to reset - everything else is + // guaranteed to be overwritten + this.isPrimary = false; +}; + +Object.defineProperties( InteractionData.prototype, prototypeAccessors$6 ); + +/** + * Event class that mimics native DOM events. + * + * @class + * @memberof PIXI.interaction + */ +var InteractionEvent = function InteractionEvent() +{ + /** + * Whether this event will continue propagating in the tree. + * + * Remaining events for the {@link stopsPropagatingAt} object + * will still be dispatched. + * + * @member {boolean} + */ + this.stopped = false; + + /** + * At which object this event stops propagating. + * + * @private + * @member {PIXI.DisplayObject} + */ + this.stopsPropagatingAt = null; + + /** + * Whether we already reached the element we want to + * stop propagating at. This is important for delayed events, + * where we start over deeper in the tree again. + * + * @private + * @member {boolean} + */ + this.stopPropagationHint = false; + + /** + * The object which caused this event to be dispatched. + * For listener callback see {@link PIXI.interaction.InteractionEvent.currentTarget}. + * + * @member {PIXI.DisplayObject} + */ + this.target = null; + + /** + * The object whose event listener’s callback is currently being invoked. + * + * @member {PIXI.DisplayObject} + */ + this.currentTarget = null; + + /** + * Type of the event + * + * @member {string} + */ + this.type = null; + + /** + * InteractionData related to this event + * + * @member {PIXI.interaction.InteractionData} + */ + this.data = null; +}; + +/** + * Prevents event from reaching any objects other than the current object. + * + */ +InteractionEvent.prototype.stopPropagation = function stopPropagation () +{ + this.stopped = true; + this.stopPropagationHint = true; + this.stopsPropagatingAt = this.currentTarget; +}; + +/** + * Resets the event. + */ +InteractionEvent.prototype.reset = function reset () +{ + this.stopped = false; + this.stopsPropagatingAt = null; + this.stopPropagationHint = false; + this.currentTarget = null; + this.target = null; +}; + +/** + * DisplayObjects with the {@link PIXI.interaction.interactiveTarget} mixin use this class to track interactions + * + * @class + * @private + * @memberof PIXI.interaction + */ +var InteractionTrackingData = function InteractionTrackingData(pointerId) +{ + this._pointerId = pointerId; + this._flags = InteractionTrackingData.FLAGS.NONE; +}; + +var prototypeAccessors$1$3 = { pointerId: { configurable: true },flags: { configurable: true },none: { configurable: true },over: { configurable: true },rightDown: { configurable: true },leftDown: { configurable: true } }; + +/** + * + * @private + * @param {number} flag - The interaction flag to set + * @param {boolean} yn - Should the flag be set or unset + */ +InteractionTrackingData.prototype._doSet = function _doSet (flag, yn) +{ + if (yn) + { + this._flags = this._flags | flag; + } + else + { + this._flags = this._flags & (~flag); + } +}; + +/** + * Unique pointer id of the event + * + * @readonly + * @private + * @member {number} + */ +prototypeAccessors$1$3.pointerId.get = function () +{ + return this._pointerId; +}; + +/** + * State of the tracking data, expressed as bit flags + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.flags.get = function () +{ + return this._flags; +}; + +prototypeAccessors$1$3.flags.set = function (flags) // eslint-disable-line require-jsdoc +{ + this._flags = flags; +}; + +/** + * Is the tracked event inactive (not over or down)? + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.none.get = function () +{ + return this._flags === this.constructor.FLAGS.NONE; +}; + +/** + * Is the tracked event over the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.over.get = function () +{ + return (this._flags & this.constructor.FLAGS.OVER) !== 0; +}; + +prototypeAccessors$1$3.over.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.OVER, yn); +}; + +/** + * Did the right mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.rightDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.RIGHT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.rightDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.RIGHT_DOWN, yn); +}; + +/** + * Did the left mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.leftDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.LEFT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.leftDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.LEFT_DOWN, yn); +}; + +Object.defineProperties( InteractionTrackingData.prototype, prototypeAccessors$1$3 ); + +InteractionTrackingData.FLAGS = Object.freeze({ + NONE: 0, + OVER: 1 << 0, + LEFT_DOWN: 1 << 1, + RIGHT_DOWN: 1 << 2, +}); + +/** + * Interface for classes that represent a hit area. + * + * It is implemented by the following classes: + * - {@link PIXI.Circle} + * - {@link PIXI.Ellipse} + * - {@link PIXI.Polygon} + * - {@link PIXI.RoundedRectangle} + * + * @interface IHitArea + * @memberof PIXI + */ + +/** + * Checks whether the x and y coordinates given are contained within this area + * + * @method + * @name contains + * @memberof PIXI.IHitArea# + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this area + */ + +/** + * Default property values of interactive objects + * Used by {@link PIXI.interaction.InteractionManager} to automatically give all DisplayObjects these properties + * + * @private + * @name interactiveTarget + * @type {Object} + * @memberof PIXI.interaction + * @example + * function MyObject() {} + * + * Object.assign( + * DisplayObject.prototype, + * PIXI.interaction.interactiveTarget + * ); + */ +var interactiveTarget = { + + /** + * Enable interaction events for the DisplayObject. Touch, pointer and mouse + * events will not be emitted unless `interactive` is set to `true`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.on('tap', (event) => { + * //handle event + * }); + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + interactive: false, + + /** + * Determines if the children to the displayObject can be clicked/touched + * Setting this to false allows PixiJS to bypass a recursive `hitTest` function + * + * @member {boolean} + * @memberof PIXI.Container# + */ + interactiveChildren: true, + + /** + * Interaction shape. Children will be hit first, then this shape will be checked. + * Setting this will cause this shape to be checked in hit tests rather than the displayObject's bounds. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.hitArea = new PIXI.Rectangle(0, 0, 100, 100); + * @member {PIXI.IHitArea} + * @memberof PIXI.DisplayObject# + */ + hitArea: null, + + /** + * If enabled, the mouse cursor use the pointer behavior when hovered over the displayObject if it is interactive + * Setting this changes the 'cursor' property to `'pointer'`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.buttonMode = true; + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + get buttonMode() + { + return this.cursor === 'pointer'; + }, + set buttonMode(value) + { + if (value) + { + this.cursor = 'pointer'; + } + else if (this.cursor === 'pointer') + { + this.cursor = null; + } + }, + + /** + * This defines what cursor mode is used when the mouse cursor + * is hovered over the displayObject. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.cursor = 'wait'; + * @see https://developer.mozilla.org/en/docs/Web/CSS/cursor + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + cursor: null, + + /** + * Internal set of all active pointers, by identifier + * + * @member {Map} + * @memberof PIXI.DisplayObject# + * @private + */ + get trackedPointers() + { + if (this._trackedPointers === undefined) { this._trackedPointers = {}; } + + return this._trackedPointers; + }, + + /** + * Map of all tracked pointers, by identifier. Use trackedPointers to access. + * + * @private + * @type {Map} + */ + _trackedPointers: undefined, +}; + +// Mix interactiveTarget into DisplayObject.prototype, +// after deprecation has been handled +DisplayObject.mixin(interactiveTarget); + +var MOUSE_POINTER_ID = 1; + +// helpers for hitTest() - only used inside hitTest() +var hitTestEvent = { + target: null, + data: { + global: null, + }, +}; + +/** + * The interaction manager deals with mouse, touch and pointer events. + * + * Any DisplayObject can be interactive if its `interactive` property is set to true. + * + * This manager also supports multitouch. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.interaction` + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI.interaction + */ +var InteractionManager = /*@__PURE__*/(function (EventEmitter) { + function InteractionManager(renderer, options) + { + EventEmitter.call(this); + + options = options || {}; + + /** + * The renderer this interaction manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * Should default browser actions automatically be prevented. + * Does not apply to pointer events for backwards compatibility + * preventDefault on pointer events stops mouse events from firing + * Thus, for every pointer event, there will always be either a mouse of touch event alongside it. + * + * @member {boolean} + * @default true + */ + this.autoPreventDefault = options.autoPreventDefault !== undefined ? options.autoPreventDefault : true; + + /** + * Frequency in milliseconds that the mousemove, mouseover & mouseout interaction events will be checked. + * + * @member {number} + * @default 10 + */ + this.interactionFrequency = options.interactionFrequency || 10; + + /** + * The mouse data + * + * @member {PIXI.interaction.InteractionData} + */ + this.mouse = new InteractionData(); + this.mouse.identifier = MOUSE_POINTER_ID; + + // setting the mouse to start off far off screen will mean that mouse over does + // not get called before we even move the mouse. + this.mouse.global.set(-999999); + + /** + * Actively tracked InteractionData + * + * @private + * @member {Object.} + */ + this.activeInteractionData = {}; + this.activeInteractionData[MOUSE_POINTER_ID] = this.mouse; + + /** + * Pool of unused InteractionData + * + * @private + * @member {PIXI.interaction.InteractionData[]} + */ + this.interactionDataPool = []; + + /** + * An event data object to handle all the event tracking/dispatching + * + * @member {object} + */ + this.eventData = new InteractionEvent(); + + /** + * The DOM element to bind to. + * + * @protected + * @member {HTMLElement} + */ + this.interactionDOMElement = null; + + /** + * This property determines if mousemove and touchmove events are fired only when the cursor + * is over the object. + * Setting to true will make things work more in line with how the DOM version works. + * Setting to false can make things easier for things like dragging + * It is currently set to false as this is how PixiJS used to work. This will be set to true in + * future versions of pixi. + * + * @member {boolean} + * @default false + */ + this.moveWhenInside = false; + + /** + * Have events been attached to the dom element? + * + * @protected + * @member {boolean} + */ + this.eventsAdded = false; + + /** + * Is the mouse hovering over the renderer? + * + * @protected + * @member {boolean} + */ + this.mouseOverRenderer = false; + + /** + * Does the device support touch events + * https://www.w3.org/TR/touch-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsTouchEvents = 'ontouchstart' in window; + + /** + * Does the device support pointer events + * https://www.w3.org/Submission/pointer-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsPointerEvents = !!window.PointerEvent; + + // this will make it so that you don't have to call bind all the time + + /** + * @private + * @member {Function} + */ + this.onPointerUp = this.onPointerUp.bind(this); + this.processPointerUp = this.processPointerUp.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerCancel = this.onPointerCancel.bind(this); + this.processPointerCancel = this.processPointerCancel.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerDown = this.onPointerDown.bind(this); + this.processPointerDown = this.processPointerDown.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerMove = this.onPointerMove.bind(this); + this.processPointerMove = this.processPointerMove.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOut = this.onPointerOut.bind(this); + this.processPointerOverOut = this.processPointerOverOut.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOver = this.onPointerOver.bind(this); + + /** + * Dictionary of how different cursor modes are handled. Strings are handled as CSS cursor + * values, objects are handled as dictionaries of CSS values for interactionDOMElement, + * and functions are called instead of changing the CSS. + * Default CSS cursor values are provided for 'default' and 'pointer' modes. + * @member {Object.} + */ + this.cursorStyles = { + default: 'inherit', + pointer: 'pointer', + }; + + /** + * The mode of the cursor that is being used. + * The value of this is a key from the cursorStyles dictionary. + * + * @member {string} + */ + this.currentCursorMode = null; + + /** + * Internal cached let. + * + * @private + * @member {string} + */ + this.cursor = null; + + /** + * Internal cached let. + * + * @private + * @member {PIXI.Point} + */ + this._tempPoint = new Point(); + + /** + * The current resolution / device pixel ratio. + * + * @member {number} + * @default 1 + */ + this.resolution = 1; + + /** + * Delayed pointer events. Used to guarantee correct ordering of over/out events. + * + * @private + * @member {Array} + */ + this.delayedEvents = []; + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display + * object. + * + * @event PIXI.interaction.InteractionManager#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. + * + * @event PIXI.interaction.InteractionManager#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. + * + * @event PIXI.interaction.InteractionManager#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. + * + * @event PIXI.interaction.InteractionManager#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. + * + * @event PIXI.interaction.InteractionManager#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. + * + * @event PIXI.interaction.InteractionManager#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown}. + * + * @event PIXI.interaction.InteractionManager#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.interaction.InteractionManager#event:rightdown}. + * + * @event PIXI.interaction.InteractionManager#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object + * + * @event PIXI.interaction.InteractionManager#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * + * @event PIXI.interaction.InteractionManager#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * Not always fired when some buttons are held down while others are released. In those cases, + * use [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown} and + * [mouseup]{@link PIXI.interaction.InteractionManager#event:mouseup} instead. + * + * @event PIXI.interaction.InteractionManager#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event + * + * @event PIXI.interaction.InteractionManager#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * + * @event PIXI.interaction.InteractionManager#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.interaction.InteractionManager#event:pointerdown}. + * + * @event PIXI.interaction.InteractionManager#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object + * + * @event PIXI.interaction.InteractionManager#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * + * @event PIXI.interaction.InteractionManager#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * + * @event PIXI.interaction.InteractionManager#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch + * + * @event PIXI.interaction.InteractionManager#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * + * @event PIXI.interaction.InteractionManager#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.interaction.InteractionManager#event:touchstart}. + * + * @event PIXI.interaction.InteractionManager#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * + * @event PIXI.interaction.InteractionManager#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display. + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.DisplayObject#event:mousedown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.DisplayObject#event:rightdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.DisplayObject#event:pointerdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.DisplayObject#event:touchstart}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + this.setTargetElement(this.renderer.view, this.renderer.resolution); + } + + if ( EventEmitter ) InteractionManager.__proto__ = EventEmitter; + InteractionManager.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + InteractionManager.prototype.constructor = InteractionManager; + + /** + * Hit tests a point against the display tree, returning the first interactive object that is hit. + * + * @param {PIXI.Point} globalPoint - A point to hit test with, in global space. + * @param {PIXI.Container} [root] - The root display object to start from. If omitted, defaults + * to the last rendered root of the associated renderer. + * @return {PIXI.DisplayObject} The hit display object, if any. + */ + InteractionManager.prototype.hitTest = function hitTest (globalPoint, root) + { + // clear the target for our hit test + hitTestEvent.target = null; + // assign the global point + hitTestEvent.data.global = globalPoint; + // ensure safety of the root + if (!root) + { + root = this.renderer._lastObjectRendered; + } + // run the hit test + this.processInteractive(hitTestEvent, root, null, true); + // return our found object - it'll be null if we didn't hit anything + + return hitTestEvent.target; + }; + + /** + * Sets the DOM element which will receive mouse/touch events. This is useful for when you have + * other DOM elements on top of the renderers Canvas element. With this you'll be bale to delegate + * another DOM element to receive those events. + * + * @param {HTMLElement} element - the DOM element which will receive mouse and touch events. + * @param {number} [resolution=1] - The resolution / device pixel ratio of the new element (relative to the canvas). + */ + InteractionManager.prototype.setTargetElement = function setTargetElement (element, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + this.removeEvents(); + + this.interactionDOMElement = element; + + this.resolution = resolution; + + this.addEvents(); + }; + + /** + * Registers all the DOM events + * + * @private + */ + InteractionManager.prototype.addEvents = function addEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.add(this.update, this, UPDATE_PRIORITY.INTERACTION); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = 'none'; + this.interactionDOMElement.style['-ms-touch-action'] = 'none'; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = 'none'; + } + + /** + * These events are added first, so that if pointer events are normalized, they are fired + * in the same order as non-normalized events. ie. pointer event 1st, mouse / touch 2nd + */ + if (this.supportsPointerEvents) + { + window.document.addEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('pointerdown', this.onPointerDown, true); + // pointerout is fired in addition to pointerup (for touch events) and pointercancel + // we already handle those, so for the purposes of what we do in onPointerOut, we only + // care about the pointerleave event + this.interactionDOMElement.addEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('pointerover', this.onPointerOver, true); + window.addEventListener('pointercancel', this.onPointerCancel, true); + window.addEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.addEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('mouseover', this.onPointerOver, true); + window.addEventListener('mouseup', this.onPointerUp, true); + } + + // always look directly for touch events so that we can provide original data + // In a future version we should change this to being just a fallback and rely solely on + // PointerEvents whenever available + if (this.supportsTouchEvents) + { + this.interactionDOMElement.addEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.addEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.addEventListener('touchmove', this.onPointerMove, true); + } + + this.eventsAdded = true; + }; + + /** + * Removes all the DOM events that were previously registered + * + * @private + */ + InteractionManager.prototype.removeEvents = function removeEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.remove(this.update, this); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = ''; + this.interactionDOMElement.style['-ms-touch-action'] = ''; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = ''; + } + + if (this.supportsPointerEvents) + { + window.document.removeEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('pointerdown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('pointerover', this.onPointerOver, true); + window.removeEventListener('pointercancel', this.onPointerCancel, true); + window.removeEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.removeEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('mouseover', this.onPointerOver, true); + window.removeEventListener('mouseup', this.onPointerUp, true); + } + + if (this.supportsTouchEvents) + { + this.interactionDOMElement.removeEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.removeEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.removeEventListener('touchmove', this.onPointerMove, true); + } + + this.interactionDOMElement = null; + + this.eventsAdded = false; + }; + + /** + * Updates the state of interactive objects. + * Invoked by a throttled ticker update from {@link PIXI.Ticker.system}. + * + * @param {number} deltaTime - time delta since last tick + */ + InteractionManager.prototype.update = function update (deltaTime) + { + this._deltaTime += deltaTime; + + if (this._deltaTime < this.interactionFrequency) + { + return; + } + + this._deltaTime = 0; + + if (!this.interactionDOMElement) + { + return; + } + + // if the user move the mouse this check has already been done using the mouse move! + if (this.didMove) + { + this.didMove = false; + + return; + } + + this.cursor = null; + + // Resets the flag as set by a stopPropagation call. This flag is usually reset by a user interaction of any kind, + // but there was a scenario of a display object moving under a static mouse cursor. + // In this case, mouseover and mouseevents would not pass the flag test in dispatchEvent function + for (var k in this.activeInteractionData) + { + // eslint-disable-next-line no-prototype-builtins + if (this.activeInteractionData.hasOwnProperty(k)) + { + var interactionData = this.activeInteractionData[k]; + + if (interactionData.originalEvent && interactionData.pointerType !== 'touch') + { + var interactionEvent = this.configureInteractionEventForDOMEvent( + this.eventData, + interactionData.originalEvent, + interactionData + ); + + this.processInteractive( + interactionEvent, + this.renderer._lastObjectRendered, + this.processPointerOverOut, + true + ); + } + } + } + + this.setCursorMode(this.cursor); + }; + + /** + * Sets the current cursor mode, handling any callbacks or CSS style changes. + * + * @param {string} mode - cursor mode, a key from the cursorStyles dictionary + */ + InteractionManager.prototype.setCursorMode = function setCursorMode (mode) + { + mode = mode || 'default'; + // if the mode didn't actually change, bail early + if (this.currentCursorMode === mode) + { + return; + } + this.currentCursorMode = mode; + var style = this.cursorStyles[mode]; + + // only do things if there is a cursor style for it + if (style) + { + switch (typeof style) + { + case 'string': + // string styles are handled as cursor CSS + this.interactionDOMElement.style.cursor = style; + break; + case 'function': + // functions are just called, and passed the cursor mode + style(mode); + break; + case 'object': + // if it is an object, assume that it is a dictionary of CSS styles, + // apply it to the interactionDOMElement + Object.assign(this.interactionDOMElement.style, style); + break; + } + } + else if (typeof mode === 'string' && !Object.prototype.hasOwnProperty.call(this.cursorStyles, mode)) + { + // if it mode is a string (not a Symbol) and cursorStyles doesn't have any entry + // for the mode, then assume that the dev wants it to be CSS for the cursor. + this.interactionDOMElement.style.cursor = mode; + } + }; + + /** + * Dispatches an event on the display object that was interacted with + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.dispatchEvent = function dispatchEvent (displayObject, eventString, eventData) + { + // Even if the event was stopped, at least dispatch any remaining events + // for the same display object. + if (!eventData.stopPropagationHint || displayObject === eventData.stopsPropagatingAt) + { + eventData.currentTarget = displayObject; + eventData.type = eventString; + + displayObject.emit(eventString, eventData); + + if (displayObject[eventString]) + { + displayObject[eventString](eventData); + } + } + }; + + /** + * Puts a event on a queue to be dispatched later. This is used to guarantee correct + * ordering of over/out events. + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.delayDispatchEvent = function delayDispatchEvent (displayObject, eventString, eventData) + { + this.delayedEvents.push({ displayObject: displayObject, eventString: eventString, eventData: eventData }); + }; + + /** + * Maps x and y coords from a DOM object and maps them correctly to the PixiJS view. The + * resulting value is stored in the point. This takes into account the fact that the DOM + * element could be scaled and positioned anywhere on the screen. + * + * @param {PIXI.Point} point - the point that the result will be stored in + * @param {number} x - the x coord of the position to map + * @param {number} y - the y coord of the position to map + */ + InteractionManager.prototype.mapPositionToPoint = function mapPositionToPoint (point, x, y) + { + var rect; + + // IE 11 fix + if (!this.interactionDOMElement.parentElement) + { + rect = { x: 0, y: 0, width: 0, height: 0 }; + } + else + { + rect = this.interactionDOMElement.getBoundingClientRect(); + } + + var resolutionMultiplier = 1.0 / this.resolution; + + point.x = ((x - rect.left) * (this.interactionDOMElement.width / rect.width)) * resolutionMultiplier; + point.y = ((y - rect.top) * (this.interactionDOMElement.height / rect.height)) * resolutionMultiplier; + }; + + /** + * This function is provides a neat way of crawling through the scene graph and running a + * specified function on all interactive objects it finds. It will also take care of hit + * testing the interactive objects and passes the hit across in the function. + * + * @protected + * @param {PIXI.interaction.InteractionEvent} interactionEvent - event containing the point that + * is tested for collision + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the displayObject + * that will be hit test (recursively crawls its children) + * @param {Function} [func] - the function that will be called on each interactive object. The + * interactionEvent, displayObject and hit will be passed to the function + * @param {boolean} [hitTest] - this indicates if the objects inside should be hit test against the point + * @param {boolean} [interactive] - Whether the displayObject is interactive + * @param {boolean} [skipDelayed] - Whether to process delayed events before returning. This is + * used to avoid processing them too early during recursive calls. + * @return {boolean} returns true if the displayObject hit the point + */ + InteractionManager.prototype.processInteractive = function processInteractive (interactionEvent, displayObject, func, hitTest, interactive, skipDelayed) + { + if (!displayObject || !displayObject.visible) + { + return false; + } + + var point = interactionEvent.data.global; + + // Took a little while to rework this function correctly! But now it is done and nice and optimized! ^_^ + // + // This function will now loop through all objects and then only hit test the objects it HAS + // to, not all of them. MUCH faster.. + // An object will be hit test if the following is true: + // + // 1: It is interactive. + // 2: It belongs to a parent that is interactive AND one of the parents children have not already been hit. + // + // As another little optimization once an interactive object has been hit we can carry on + // through the scenegraph, but we know that there will be no more hits! So we can avoid extra hit tests + // A final optimization is that an object is not hit test directly if a child has already been hit. + + interactive = displayObject.interactive || interactive; + + var hit = false; + var interactiveParent = interactive; + + // Flag here can set to false if the event is outside the parents hitArea or mask + var hitTestChildren = true; + + // If there is a hitArea, no need to test against anything else if the pointer is not within the hitArea + // There is also no longer a need to hitTest children. + if (displayObject.hitArea) + { + if (hitTest) + { + displayObject.worldTransform.applyInverse(point, this._tempPoint); + if (!displayObject.hitArea.contains(this._tempPoint.x, this._tempPoint.y)) + { + hitTest = false; + hitTestChildren = false; + } + else + { + hit = true; + } + } + interactiveParent = false; + } + // If there is a mask, no need to hitTest against anything else if the pointer is not within the mask. + // We still want to hitTestChildren, however, to ensure a mouseout can still be generated. + // https://github.com/pixijs/pixi.js/issues/5135 + else if (displayObject._mask) + { + if (hitTest) + { + if (!(displayObject._mask.containsPoint && displayObject._mask.containsPoint(point))) + { + hitTest = false; + } + } + } + + // ** FREE TIP **! If an object is not interactive or has no buttons in it + // (such as a game scene!) set interactiveChildren to false for that displayObject. + // This will allow PixiJS to completely ignore and bypass checking the displayObjects children. + if (hitTestChildren && displayObject.interactiveChildren && displayObject.children) + { + var children = displayObject.children; + + for (var i = children.length - 1; i >= 0; i--) + { + var child = children[i]; + + // time to get recursive.. if this function will return if something is hit.. + var childHit = this.processInteractive(interactionEvent, child, func, hitTest, interactiveParent, true); + + if (childHit) + { + // its a good idea to check if a child has lost its parent. + // this means it has been removed whilst looping so its best + if (!child.parent) + { + continue; + } + + // we no longer need to hit test any more objects in this container as we we + // now know the parent has been hit + interactiveParent = false; + + // If the child is interactive , that means that the object hit was actually + // interactive and not just the child of an interactive object. + // This means we no longer need to hit test anything else. We still need to run + // through all objects, but we don't need to perform any hit tests. + + if (childHit) + { + if (interactionEvent.target) + { + hitTest = false; + } + hit = true; + } + } + } + } + + // no point running this if the item is not interactive or does not have an interactive parent. + if (interactive) + { + // if we are hit testing (as in we have no hit any objects yet) + // We also don't need to worry about hit testing if once of the displayObjects children + // has already been hit - but only if it was interactive, otherwise we need to keep + // looking for an interactive child, just in case we hit one + if (hitTest && !interactionEvent.target) + { + // already tested against hitArea if it is defined + if (!displayObject.hitArea && displayObject.containsPoint) + { + if (displayObject.containsPoint(point)) + { + hit = true; + } + } + } + + if (displayObject.interactive) + { + if (hit && !interactionEvent.target) + { + interactionEvent.target = displayObject; + } + + if (func) + { + func(interactionEvent, displayObject, !!hit); + } + } + } + + var delayedEvents = this.delayedEvents; + + if (delayedEvents.length && !skipDelayed) + { + // Reset the propagation hint, because we start deeper in the tree again. + interactionEvent.stopPropagationHint = false; + + var delayedLen = delayedEvents.length; + + this.delayedEvents = []; + + for (var i$1 = 0; i$1 < delayedLen; i$1++) + { + var ref = delayedEvents[i$1]; + var displayObject$1 = ref.displayObject; + var eventString = ref.eventString; + var eventData = ref.eventData; + + // When we reach the object we wanted to stop propagating at, + // set the propagation hint. + if (eventData.stopsPropagatingAt === displayObject$1) + { + eventData.stopPropagationHint = true; + } + + this.dispatchEvent(displayObject$1, eventString, eventData); + } + } + + return hit; + }; + + /** + * Is called when the pointer button is pressed down on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being pressed down + */ + InteractionManager.prototype.onPointerDown = function onPointerDown (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + /** + * No need to prevent default on natural pointer events, as there are no side effects + * Normalized events, however, may have the double mousedown/touchstart issue on the native android browser, + * so still need to be prevented. + */ + + // Guaranteed that there will be at least one event in events, and all events must have the same pointer type + + if (this.autoPreventDefault && events[0].isNormalized) + { + var cancelable = originalEvent.cancelable || !('cancelable' in originalEvent); + + if (cancelable) + { + originalEvent.preventDefault(); + } + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerDown, true); + + this.emit('pointerdown', interactionEvent); + if (event.pointerType === 'touch') + { + this.emit('touchstart', interactionEvent); + } + // emit a mouse event for "pen" pointers, the way a browser would emit a fallback event + else if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? 'rightdown' : 'mousedown', this.eventData); + } + } + }; + + /** + * Processes the result of the pointer down check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerDown = function processPointerDown (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + var id = interactionEvent.data.identifier; + + if (hit) + { + if (!displayObject.trackedPointers[id]) + { + displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + this.dispatchEvent(displayObject, 'pointerdown', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchstart', interactionEvent); + } + else if (data.pointerType === 'mouse' || data.pointerType === 'pen') + { + var isRightButton = data.button === 2; + + if (isRightButton) + { + displayObject.trackedPointers[id].rightDown = true; + } + else + { + displayObject.trackedPointers[id].leftDown = true; + } + + this.dispatchEvent(displayObject, isRightButton ? 'rightdown' : 'mousedown', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being released + * @param {boolean} cancelled - true if the pointer is cancelled + * @param {Function} func - Function passed to {@link processInteractive} + */ + InteractionManager.prototype.onPointerComplete = function onPointerComplete (originalEvent, cancelled, func) + { + var events = this.normalizeToPointerData(originalEvent); + + var eventLen = events.length; + + // if the event wasn't targeting our canvas, then consider it to be pointerupoutside + // in all cases (unless it was a pointercancel) + var eventAppend = originalEvent.target !== this.interactionDOMElement ? 'outside' : ''; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + // perform hit testing for events targeting our canvas or cancel events + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, func, cancelled || !eventAppend); + + this.emit(cancelled ? 'pointercancel' : ("pointerup" + eventAppend), interactionEvent); + + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? ("rightup" + eventAppend) : ("mouseup" + eventAppend), interactionEvent); + } + else if (event.pointerType === 'touch') + { + this.emit(cancelled ? 'touchcancel' : ("touchend" + eventAppend), interactionEvent); + this.releaseInteractionDataForPointerId(event.pointerId, interactionData); + } + } + }; + + /** + * Is called when the pointer button is cancelled + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerCancel = function onPointerCancel (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, true, this.processPointerCancel); + }; + + /** + * Processes the result of the pointer cancel check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + */ + InteractionManager.prototype.processPointerCancel = function processPointerCancel (interactionEvent, displayObject) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + if (displayObject.trackedPointers[id] !== undefined) + { + delete displayObject.trackedPointers[id]; + this.dispatchEvent(displayObject, 'pointercancel', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchcancel', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerUp = function onPointerUp (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, false, this.processPointerUp); + }; + + /** + * Processes the result of the pointer up check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerUp = function processPointerUp (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var trackingData = displayObject.trackedPointers[id]; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + // need to track mouse down status in the mouse block so that we can emit + // event in a later block + var isMouseTap = false; + + // Mouse only + if (isMouse) + { + var isRightButton = data.button === 2; + + var flags = InteractionTrackingData.FLAGS; + + var test = isRightButton ? flags.RIGHT_DOWN : flags.LEFT_DOWN; + + var isDown = trackingData !== undefined && (trackingData.flags & test); + + if (hit) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightup' : 'mouseup', interactionEvent); + + if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightclick' : 'click', interactionEvent); + // because we can confirm that the mousedown happened on this object, flag for later emit of pointertap + isMouseTap = true; + } + } + else if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightupoutside' : 'mouseupoutside', interactionEvent); + } + // update the down state of the tracking data + if (trackingData) + { + if (isRightButton) + { + trackingData.rightDown = false; + } + else + { + trackingData.leftDown = false; + } + } + } + + // Pointers and Touches, and Mouse + if (hit) + { + this.dispatchEvent(displayObject, 'pointerup', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchend', interactionEvent); } + + if (trackingData) + { + // emit pointertap if not a mouse, or if the mouse block decided it was a tap + if (!isMouse || isMouseTap) + { + this.dispatchEvent(displayObject, 'pointertap', interactionEvent); + } + if (isTouch) + { + this.dispatchEvent(displayObject, 'tap', interactionEvent); + // touches are no longer over (if they ever were) when we get the touchend + // so we should ensure that we don't keep pretending that they are + trackingData.over = false; + } + } + } + else if (trackingData) + { + this.dispatchEvent(displayObject, 'pointerupoutside', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchendoutside', interactionEvent); } + } + // Only remove the tracking data if there is no over/down state still associated with it + if (trackingData && trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + }; + + /** + * Is called when the pointer moves across the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer moving + */ + InteractionManager.prototype.onPointerMove = function onPointerMove (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + if (events[0].pointerType === 'mouse' || events[0].pointerType === 'pen') + { + this.didMove = true; + + this.cursor = null; + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerMove, true); + + this.emit('pointermove', interactionEvent); + if (event.pointerType === 'touch') { this.emit('touchmove', interactionEvent); } + if (event.pointerType === 'mouse' || event.pointerType === 'pen') { this.emit('mousemove', interactionEvent); } + } + + if (events[0].pointerType === 'mouse') + { + this.setCursorMode(this.cursor); + + // TODO BUG for parents interactive object (border order issue) + } + }; + + /** + * Processes the result of the pointer move check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerMove = function processPointerMove (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + if (isMouse) + { + this.processPointerOverOut(interactionEvent, displayObject, hit); + } + + if (!this.moveWhenInside || hit) + { + this.dispatchEvent(displayObject, 'pointermove', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchmove', interactionEvent); } + if (isMouse) { this.dispatchEvent(displayObject, 'mousemove', interactionEvent); } + } + }; + + /** + * Is called when the pointer is moved out of the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer being moved out + */ + InteractionManager.prototype.onPointerOut = function onPointerOut (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOut, so events will always be length 1 + var event = events[0]; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = false; + this.setCursorMode(null); + } + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerOverOut, false); + + this.emit('pointerout', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseout', interactionEvent); + } + else + { + // we can get touchleave events after touchend, so we want to make sure we don't + // introduce memory leaks + this.releaseInteractionDataForPointerId(interactionData.identifier); + } + }; + + /** + * Processes the result of the pointer over/out check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerOverOut = function processPointerOverOut (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + var trackingData = displayObject.trackedPointers[id]; + + // if we just moused over the display object, then we need to track that state + if (hit && !trackingData) + { + trackingData = displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + + if (trackingData === undefined) { return; } + + if (hit && this.mouseOverRenderer) + { + if (!trackingData.over) + { + trackingData.over = true; + this.delayDispatchEvent(displayObject, 'pointerover', interactionEvent); + if (isMouse) + { + this.delayDispatchEvent(displayObject, 'mouseover', interactionEvent); + } + } + + // only change the cursor if it has not already been changed (by something deeper in the + // display tree) + if (isMouse && this.cursor === null) + { + this.cursor = displayObject.cursor; + } + } + else if (trackingData.over) + { + trackingData.over = false; + this.dispatchEvent(displayObject, 'pointerout', this.eventData); + if (isMouse) + { + this.dispatchEvent(displayObject, 'mouseout', interactionEvent); + } + // if there is no mouse down information for the pointer, then it is safe to delete + if (trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + } + }; + + /** + * Is called when the pointer is moved into the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being moved into the renderer view + */ + InteractionManager.prototype.onPointerOver = function onPointerOver (originalEvent) + { + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOver, so events will always be length 1 + var event = events[0]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = true; + } + + this.emit('pointerover', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseover', interactionEvent); + } + }; + + /** + * Get InteractionData for a given pointerId. Store that data as well + * + * @private + * @param {PointerEvent} event - Normalized pointer event, output from normalizeToPointerData + * @return {PIXI.interaction.InteractionData} - Interaction data for the given pointer identifier + */ + InteractionManager.prototype.getInteractionDataForPointerId = function getInteractionDataForPointerId (event) + { + var pointerId = event.pointerId; + + var interactionData; + + if (pointerId === MOUSE_POINTER_ID || event.pointerType === 'mouse') + { + interactionData = this.mouse; + } + else if (this.activeInteractionData[pointerId]) + { + interactionData = this.activeInteractionData[pointerId]; + } + else + { + interactionData = this.interactionDataPool.pop() || new InteractionData(); + interactionData.identifier = pointerId; + this.activeInteractionData[pointerId] = interactionData; + } + // copy properties from the event, so that we can make sure that touch/pointer specific + // data is available + interactionData.copyEvent(event); + + return interactionData; + }; + + /** + * Return unused InteractionData to the pool, for a given pointerId + * + * @private + * @param {number} pointerId - Identifier from a pointer event + */ + InteractionManager.prototype.releaseInteractionDataForPointerId = function releaseInteractionDataForPointerId (pointerId) + { + var interactionData = this.activeInteractionData[pointerId]; + + if (interactionData) + { + delete this.activeInteractionData[pointerId]; + interactionData.reset(); + this.interactionDataPool.push(interactionData); + } + }; + + /** + * Configure an InteractionEvent to wrap a DOM PointerEvent and InteractionData + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The event to be configured + * @param {PointerEvent} pointerEvent - The DOM event that will be paired with the InteractionEvent + * @param {PIXI.interaction.InteractionData} interactionData - The InteractionData that will be paired + * with the InteractionEvent + * @return {PIXI.interaction.InteractionEvent} the interaction event that was passed in + */ + InteractionManager.prototype.configureInteractionEventForDOMEvent = function configureInteractionEventForDOMEvent (interactionEvent, pointerEvent, interactionData) + { + interactionEvent.data = interactionData; + + this.mapPositionToPoint(interactionData.global, pointerEvent.clientX, pointerEvent.clientY); + + // Not really sure why this is happening, but it's how a previous version handled things + if (pointerEvent.pointerType === 'touch') + { + pointerEvent.globalX = interactionData.global.x; + pointerEvent.globalY = interactionData.global.y; + } + + interactionData.originalEvent = pointerEvent; + interactionEvent.reset(); + + return interactionEvent; + }; + + /** + * Ensures that the original event object contains all data that a regular pointer event would have + * + * @private + * @param {TouchEvent|MouseEvent|PointerEvent} event - The original event data from a touch or mouse event + * @return {PointerEvent[]} An array containing a single normalized pointer event, in the case of a pointer + * or mouse event, or a multiple normalized pointer events if there are multiple changed touches + */ + InteractionManager.prototype.normalizeToPointerData = function normalizeToPointerData (event) + { + var normalizedEvents = []; + + if (this.supportsTouchEvents && event instanceof TouchEvent) + { + for (var i = 0, li = event.changedTouches.length; i < li; i++) + { + var touch = event.changedTouches[i]; + + if (typeof touch.button === 'undefined') { touch.button = event.touches.length ? 1 : 0; } + if (typeof touch.buttons === 'undefined') { touch.buttons = event.touches.length ? 1 : 0; } + if (typeof touch.isPrimary === 'undefined') + { + touch.isPrimary = event.touches.length === 1 && event.type === 'touchstart'; + } + if (typeof touch.width === 'undefined') { touch.width = touch.radiusX || 1; } + if (typeof touch.height === 'undefined') { touch.height = touch.radiusY || 1; } + if (typeof touch.tiltX === 'undefined') { touch.tiltX = 0; } + if (typeof touch.tiltY === 'undefined') { touch.tiltY = 0; } + if (typeof touch.pointerType === 'undefined') { touch.pointerType = 'touch'; } + if (typeof touch.pointerId === 'undefined') { touch.pointerId = touch.identifier || 0; } + if (typeof touch.pressure === 'undefined') { touch.pressure = touch.force || 0.5; } + if (typeof touch.twist === 'undefined') { touch.twist = 0; } + if (typeof touch.tangentialPressure === 'undefined') { touch.tangentialPressure = 0; } + // TODO: Remove these, as layerX/Y is not a standard, is deprecated, has uneven + // support, and the fill ins are not quite the same + // offsetX/Y might be okay, but is not the same as clientX/Y when the canvas's top + // left is not 0,0 on the page + if (typeof touch.layerX === 'undefined') { touch.layerX = touch.offsetX = touch.clientX; } + if (typeof touch.layerY === 'undefined') { touch.layerY = touch.offsetY = touch.clientY; } + + // mark the touch as normalized, just so that we know we did it + touch.isNormalized = true; + + normalizedEvents.push(touch); + } + } + // apparently PointerEvent subclasses MouseEvent, so yay + else if (event instanceof MouseEvent && (!this.supportsPointerEvents || !(event instanceof window.PointerEvent))) + { + if (typeof event.isPrimary === 'undefined') { event.isPrimary = true; } + if (typeof event.width === 'undefined') { event.width = 1; } + if (typeof event.height === 'undefined') { event.height = 1; } + if (typeof event.tiltX === 'undefined') { event.tiltX = 0; } + if (typeof event.tiltY === 'undefined') { event.tiltY = 0; } + if (typeof event.pointerType === 'undefined') { event.pointerType = 'mouse'; } + if (typeof event.pointerId === 'undefined') { event.pointerId = MOUSE_POINTER_ID; } + if (typeof event.pressure === 'undefined') { event.pressure = 0.5; } + if (typeof event.twist === 'undefined') { event.twist = 0; } + if (typeof event.tangentialPressure === 'undefined') { event.tangentialPressure = 0; } + + // mark the mouse event as normalized, just so that we know we did it + event.isNormalized = true; + + normalizedEvents.push(event); + } + else + { + normalizedEvents.push(event); + } + + return normalizedEvents; + }; + + /** + * Destroys the interaction manager + * + */ + InteractionManager.prototype.destroy = function destroy () + { + this.removeEvents(); + + this.removeAllListeners(); + + this.renderer = null; + + this.mouse = null; + + this.eventData = null; + + this.interactionDOMElement = null; + + this.onPointerDown = null; + this.processPointerDown = null; + + this.onPointerUp = null; + this.processPointerUp = null; + + this.onPointerCancel = null; + this.processPointerCancel = null; + + this.onPointerMove = null; + this.processPointerMove = null; + + this.onPointerOut = null; + this.processPointerOverOut = null; + + this.onPointerOver = null; + + this._tempPoint = null; + }; + + return InteractionManager; +}(eventemitter3)); + +/*! + * @pixi/graphics - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/graphics is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Graphics curves resolution settings. If `adaptive` flag is set to `true`, + * the resolution is calculated based on the curve's length to ensure better visual quality. + * Adaptive draw works with `bezierCurveTo` and `quadraticCurveTo`. + * + * @static + * @constant + * @memberof PIXI + * @name GRAPHICS_CURVES + * @type {object} + * @property {boolean} adaptive=false - flag indicating if the resolution should be adaptive + * @property {number} maxLength=10 - maximal length of a single segment of the curve (if adaptive = false, ignored) + * @property {number} minSegments=8 - minimal number of segments in the curve (if adaptive = false, ignored) + * @property {number} maxSegments=2048 - maximal number of segments in the curve (if adaptive = false, ignored) + */ +var GRAPHICS_CURVES = { + adaptive: true, + maxLength: 10, + minSegments: 8, + maxSegments: 2048, + _segmentsCount: function _segmentsCount(length, defaultSegments) + { + if ( defaultSegments === void 0 ) defaultSegments = 20; + + if (!this.adaptive) + { + return defaultSegments; + } + + var result = Math.ceil(length / this.maxLength); + + if (result < this.minSegments) + { + result = this.minSegments; + } + else if (result > this.maxSegments) + { + result = this.maxSegments; + } + + return result; + }, +}; + +/** + * Fill style object for Graphics. + * + * @class + * @memberof PIXI + */ +var FillStyle = function FillStyle() +{ + this.reset(); +}; + +/** + * Clones the object + * + * @return {PIXI.FillStyle} + */ +FillStyle.prototype.clone = function clone () +{ + var obj = new FillStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + + return obj; +}; + +/** + * Reset + */ +FillStyle.prototype.reset = function reset () +{ + /** + * The hex color value used when coloring the Graphics object. + * + * @member {number} + * @default 1 + */ + this.color = 0xFFFFFF; + + /** + * The alpha value used when filling the Graphics object. + * + * @member {number} + * @default 1 + */ + this.alpha = 1; + + /** + * The texture to be used for the fill. + * + * @member {string} + * @default 0 + */ + this.texture = Texture.WHITE; + + /** + * The transform aplpied to the texture. + * + * @member {string} + * @default 0 + */ + this.matrix = null; + + /** + * If the current fill is visible. + * + * @member {boolean} + * @default false + */ + this.visible = false; +}; + +/** + * Destroy and don't use after this + */ +FillStyle.prototype.destroy = function destroy () +{ + this.texture = null; + this.matrix = null; +}; + +/** + * A class to contain data useful for Graphics objects + * + * @class + * @memberof PIXI + */ +var GraphicsData = function GraphicsData(shape, fillStyle, lineStyle, matrix) +{ + if ( fillStyle === void 0 ) fillStyle = null; + if ( lineStyle === void 0 ) lineStyle = null; + if ( matrix === void 0 ) matrix = null; + + /** + * The shape object to draw. + * @member {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} + */ + this.shape = shape; + + /** + * The style of the line. + * @member {PIXI.LineStyle} + */ + this.lineStyle = lineStyle; + + /** + * The style of the fill. + * @member {PIXI.FillStyle} + */ + this.fillStyle = fillStyle; + + /** + * The transform matrix. + * @member {PIXI.Matrix} + */ + this.matrix = matrix; + + /** + * The type of the shape, see the Const.Shapes file for all the existing types, + * @member {number} + */ + this.type = shape.type; + + /** + * The collection of points. + * @member {number[]} + */ + this.points = []; + + /** + * The collection of holes. + * @member {PIXI.GraphicsData[]} + */ + this.holes = []; +}; + +/** + * Creates a new GraphicsData object with the same values as this one. + * + * @return {PIXI.GraphicsData} Cloned GraphicsData object + */ +GraphicsData.prototype.clone = function clone () +{ + return new GraphicsData( + this.shape, + this.fillStyle, + this.lineStyle, + this.matrix + ); +}; + +/** + * Destroys the Graphics data. + */ +GraphicsData.prototype.destroy = function destroy () +{ + this.shape = null; + this.holes.length = 0; + this.holes = null; + this.points.length = 0; + this.points = null; + this.lineStyle = null; + this.fillStyle = null; +}; + +/** + * Builds a circle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object to draw + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildCircle = { + + build: function build(graphicsData) + { + // need to convert points to a nice regular data + var circleData = graphicsData.shape; + var points = graphicsData.points; + var x = circleData.x; + var y = circleData.y; + var width; + var height; + + points.length = 0; + + // TODO - bit hacky?? + if (graphicsData.type === SHAPES.CIRC) + { + width = circleData.radius; + height = circleData.radius; + } + else + { + width = circleData.width; + height = circleData.height; + } + + if (width === 0 || height === 0) + { + return; + } + + var totalSegs = Math.floor(30 * Math.sqrt(circleData.radius)) + || Math.floor(15 * Math.sqrt(circleData.width + circleData.height)); + + totalSegs /= 2.3; + + var seg = (Math.PI * 2) / totalSegs; + + for (var i = 0; i < totalSegs; i++) + { + points.push( + x + (Math.sin(-seg * i) * width), + y + (Math.cos(-seg * i) * height) + ); + } + + points.push( + points[0], + points[1] + ); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vertPos = verts.length / 2; + var center = vertPos; + + verts.push(graphicsData.shape.x, graphicsData.shape.y); + + for (var i = 0; i < points.length; i += 2) + { + verts.push(points[i], points[i + 1]); + + // add some uvs + indices.push(vertPos++, center, vertPos); + } + }, +}; + +/** + * Builds a line to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine (graphicsData, graphicsGeometry) +{ + if (graphicsData.lineStyle.native) + { + buildNativeLine(graphicsData, graphicsGeometry); + } + else + { + buildLine$1(graphicsData, graphicsGeometry); + } +} + +/** + * Builds a line to draw using the polygon method. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine$1(graphicsData, graphicsGeometry) +{ + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points.slice(); + var eps = graphicsGeometry.closePointEps; + + if (points.length === 0) + { + return; + } + // if the line width is an odd number add 0.5 to align to a whole pixel + // commenting this out fixes #711 and #1620 + // if (graphicsData.lineWidth%2) + // { + // for (i = 0; i < points.length; i++) + // { + // points[i] += 0.5; + // } + // } + + var style = graphicsData.lineStyle; + + // get first and last point.. figure out the middle! + var firstPoint = new Point(points[0], points[1]); + var lastPoint = new Point(points[points.length - 2], points[points.length - 1]); + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + var closedPath = Math.abs(firstPoint.x - lastPoint.x) < eps + && Math.abs(firstPoint.y - lastPoint.y) < eps; + + // if the first point is the last point - gonna have issues :) + if (closedShape) + { + // need to clone as we are going to slightly modify the shape.. + points = points.slice(); + + if (closedPath) + { + points.pop(); + points.pop(); + lastPoint.set(points[points.length - 2], points[points.length - 1]); + } + + var midPointX = lastPoint.x + ((firstPoint.x - lastPoint.x) * 0.5); + var midPointY = lastPoint.y + ((firstPoint.y - lastPoint.y) * 0.5); + + points.unshift(midPointX, midPointY); + points.push(midPointX, midPointY); + } + + var verts = graphicsGeometry.points; + var length = points.length / 2; + var indexCount = points.length; + var indexStart = verts.length / 2; + + // DRAW the Line + var width = style.width / 2; + + // sort color + var p1x = points[0]; + var p1y = points[1]; + var p2x = points[2]; + var p2y = points[3]; + var p3x = 0; + var p3y = 0; + + var perpx = -(p1y - p2y); + var perpy = p1x - p2x; + var perp2x = 0; + var perp2y = 0; + var perp3x = 0; + var perp3y = 0; + + var dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + var ratio = style.alignment;// 0.5; + var r1 = (1 - ratio) * 2; + var r2 = ratio * 2; + + // start + verts.push( + p1x - (perpx * r1), + p1y - (perpy * r1)); + + verts.push( + p1x + (perpx * r2), + p1y + (perpy * r2)); + + for (var i = 1; i < length - 1; ++i) + { + p1x = points[(i - 1) * 2]; + p1y = points[((i - 1) * 2) + 1]; + + p2x = points[i * 2]; + p2y = points[(i * 2) + 1]; + + p3x = points[(i + 1) * 2]; + p3y = points[((i + 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + perp2x = -(p2y - p3y); + perp2y = p2x - p3x; + + dist = Math.sqrt((perp2x * perp2x) + (perp2y * perp2y)); + perp2x /= dist; + perp2y /= dist; + perp2x *= width; + perp2y *= width; + + var a1 = (-perpy + p1y) - (-perpy + p2y); + var b1 = (-perpx + p2x) - (-perpx + p1x); + var c1 = ((-perpx + p1x) * (-perpy + p2y)) - ((-perpx + p2x) * (-perpy + p1y)); + var a2 = (-perp2y + p3y) - (-perp2y + p2y); + var b2 = (-perp2x + p2x) - (-perp2x + p3x); + var c2 = ((-perp2x + p3x) * (-perp2y + p2y)) - ((-perp2x + p2x) * (-perp2y + p3y)); + + var denom = (a1 * b2) - (a2 * b1); + + if (Math.abs(denom) < 0.1) + { + denom += 10.1; + verts.push( + p2x - (perpx * r1), + p2y - (perpy * r1)); + + verts.push( + p2x + (perpx * r2), + p2y + (perpy * r2)); + + continue; + } + + var px = ((b1 * c2) - (b2 * c1)) / denom; + var py = ((a2 * c1) - (a1 * c2)) / denom; + var pdist = ((px - p2x) * (px - p2x)) + ((py - p2y) * (py - p2y)); + + if (pdist > (196 * width * width)) + { + perp3x = perpx - perp2x; + perp3y = perpy - perp2y; + + dist = Math.sqrt((perp3x * perp3x) + (perp3y * perp3y)); + perp3x /= dist; + perp3y /= dist; + perp3x *= width; + perp3y *= width; + + verts.push(p2x - (perp3x * r1), p2y - (perp3y * r1)); + + verts.push(p2x + (perp3x * r2), p2y + (perp3y * r2)); + + verts.push(p2x - (perp3x * r2 * r1), p2y - (perp3y * r1)); + + indexCount++; + } + else + { + verts.push(p2x + ((px - p2x) * r1), p2y + ((py - p2y) * r1)); + + verts.push(p2x - ((px - p2x) * r2), p2y - ((py - p2y) * r2)); + } + } + + p1x = points[(length - 2) * 2]; + p1y = points[((length - 2) * 2) + 1]; + + p2x = points[(length - 1) * 2]; + p2y = points[((length - 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + verts.push(p2x - (perpx * r1), p2y - (perpy * r1)); + + verts.push(p2x + (perpx * r2), p2y + (perpy * r2)); + + var indices = graphicsGeometry.indices; + + // indices.push(indexStart); + + for (var i$1 = 0; i$1 < indexCount - 2; ++i$1) + { + indices.push(indexStart, indexStart + 1, indexStart + 2); + + indexStart++; + } +} + +/** + * Builds a line to draw using the gl.drawArrays(gl.LINES) method + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildNativeLine(graphicsData, graphicsGeometry) +{ + var i = 0; + + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points; + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + + if (points.length === 0) { return; } + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + var length = points.length / 2; + + var startIndex = verts.length / 2; + var currentIndex = startIndex; + + verts.push(points[0], points[1]); + + for (i = 1; i < length; i++) + { + verts.push(points[i * 2], points[(i * 2) + 1]); + indices.push(currentIndex, currentIndex + 1); + + currentIndex++; + } + + if (closedShape) + { + indices.push(currentIndex, startIndex); + } +} + +/** + * Builds a polygon to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildPoly = { + + build: function build(graphicsData) + { + graphicsData.points = graphicsData.shape.points.slice(); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var holes = graphicsData.holes; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + if (points.length >= 6) + { + var holeArray = []; + // Process holes.. + + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + holeArray.push(points.length / 2); + points = points.concat(hole.points); + } + + // sort color + var triangles = earcut_1(points, holeArray, 2); + + if (!triangles) + { + return; + } + + var vertPos = verts.length / 2; + + for (var i$1 = 0; i$1 < triangles.length; i$1 += 3) + { + indices.push(triangles[i$1] + vertPos); + indices.push(triangles[i$1 + 1] + vertPos); + indices.push(triangles[i$1 + 2] + vertPos); + } + + for (var i$2 = 0; i$2 < points.length; i$2++) + { + verts.push(points[i$2]); + } + } + }, +}; + +/** + * Builds a rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRectangle = { + + build: function build(graphicsData) + { + // --- // + // need to convert points to a nice regular data + // + var rectData = graphicsData.shape; + var x = rectData.x; + var y = rectData.y; + var width = rectData.width; + var height = rectData.height; + + var points = graphicsData.points; + + points.length = 0; + + points.push(x, y, + x + width, y, + x + width, y + height, + x, y + height); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + + var vertPos = verts.length / 2; + + verts.push(points[0], points[1], + points[2], points[3], + points[6], points[7], + points[4], points[5]); + + graphicsGeometry.indices.push(vertPos, vertPos + 1, vertPos + 2, + vertPos + 1, vertPos + 2, vertPos + 3); + }, +}; + +/** + * Builds a rounded rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRoundedRectangle = { + + build: function build(graphicsData) + { + var rrectData = graphicsData.shape; + var points = graphicsData.points; + var x = rrectData.x; + var y = rrectData.y; + var width = rrectData.width; + var height = rrectData.height; + + var radius = rrectData.radius; + + points.length = 0; + + quadraticBezierCurve(x, y + radius, + x, y, + x + radius, y, + points); + quadraticBezierCurve(x + width - radius, + y, x + width, y, + x + width, y + radius, + points); + quadraticBezierCurve(x + width, y + height - radius, + x + width, y + height, + x + width - radius, y + height, + points); + quadraticBezierCurve(x + radius, y + height, + x, y + height, + x, y + height - radius, + points); + + // this tiny number deals with the issue that occurs when points overlap and earcut fails to triangulate the item. + // TODO - fix this properly, this is not very elegant.. but it works for now. + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vecPos = verts.length / 2; + + var triangles = earcut_1(points, null, 2); + + for (var i = 0, j = triangles.length; i < j; i += 3) + { + indices.push(triangles[i] + vecPos); + // indices.push(triangles[i] + vecPos); + indices.push(triangles[i + 1] + vecPos); + // indices.push(triangles[i + 2] + vecPos); + indices.push(triangles[i + 2] + vecPos); + } + + for (var i$1 = 0, j$1 = points.length; i$1 < j$1; i$1++) + { + verts.push(points[i$1], points[++i$1]); + } + }, +}; + +/** + * Calculate a single point for a quadratic bezier curve. + * Utility function used by quadraticBezierCurve. + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} n1 - first number + * @param {number} n2 - second number + * @param {number} perc - percentage + * @return {number} the result + * + */ +function getPt(n1, n2, perc) +{ + var diff = n2 - n1; + + return n1 + (diff * perc); +} + +/** + * Calculate the points for a quadratic bezier curve. (helper function..) + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} fromX - Origin point x + * @param {number} fromY - Origin point x + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} [out=[]] - The output array to add points into. If not passed, a new array is created. + * @return {number[]} an array of points + */ +function quadraticBezierCurve(fromX, fromY, cpX, cpY, toX, toY, out) +{ + if ( out === void 0 ) out = []; + + var n = 20; + var points = out; + + var xa = 0; + var ya = 0; + var xb = 0; + var yb = 0; + var x = 0; + var y = 0; + + for (var i = 0, j = 0; i <= n; ++i) + { + j = i / n; + + // The Green Line + xa = getPt(fromX, cpX, j); + ya = getPt(fromY, cpY, j); + xb = getPt(cpX, toX, j); + yb = getPt(cpY, toY, j); + + // The Black Dot + x = getPt(xa, xb, j); + y = getPt(ya, yb, j); + + points.push(x, y); + } + + return points; +} + +var BATCH_POOL = []; +var DRAW_CALL_POOL = []; +var tmpPoint = new Point(); + +/** + * Map of fill commands for each shape type. + * + * @member {Object} + * @private + */ +var fillCommands = {}; + +fillCommands[SHAPES.POLY] = buildPoly; +fillCommands[SHAPES.CIRC] = buildCircle; +fillCommands[SHAPES.ELIP] = buildCircle; +fillCommands[SHAPES.RECT] = buildRectangle; +fillCommands[SHAPES.RREC] = buildRoundedRectangle; + +/** + * A little internal structure to hold interim batch objects. + * + * @private + */ +var BatchPart = function BatchPart() +{ + this.style = null; + this.size = 0; + this.start = 0; + this.attribStart = 0; + this.attribSize = 0; +}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * GraphicsGeometry is designed to not be continually updating the geometry since it's expensive + * to re-tesselate using **earcut**. Consider using {@link PIXI.Mesh} for this use-case, it's much faster. + * + * @class + * @extends PIXI.BatchGeometry + * @memberof PIXI + */ +var GraphicsGeometry = /*@__PURE__*/(function (BatchGeometry) { + function GraphicsGeometry() + { + BatchGeometry.call(this); + + /** + * An array of points to draw, 2 numbers per point + * + * @member {number[]} + * @protected + */ + this.points = []; + + /** + * The collection of colors + * + * @member {number[]} + * @protected + */ + this.colors = []; + + /** + * The UVs collection + * + * @member {number[]} + * @protected + */ + this.uvs = []; + + /** + * The indices of the vertices + * + * @member {number[]} + * @protected + */ + this.indices = []; + + /** + * Reference to the texture IDs. + * + * @member {number[]} + * @protected + */ + this.textureIds = []; + + /** + * The collection of drawn shapes. + * + * @member {PIXI.GraphicsData[]} + * @protected + */ + this.graphicsData = []; + + /** + * Used to detect if the graphics object has changed. + * + * @member {number} + * @protected + */ + this.dirty = 0; + + /** + * Batches need to regenerated if the geometry is updated. + * + * @member {number} + * @protected + */ + this.batchDirty = -1; + + /** + * Used to check if the cache is dirty. + * + * @member {number} + * @protected + */ + this.cacheDirty = -1; + + /** + * Used to detect if we cleared the graphicsData. + * + * @member {number} + * @default 0 + * @protected + */ + this.clearDirty = 0; + + /** + * List of current draw calls drived from the batches. + * + * @member {object[]} + * @protected + */ + this.drawCalls = []; + + /** + * Intermediate abstract format sent to batch system. + * Can be converted to drawCalls or to batchable objects. + * + * @member {object[]} + * @protected + */ + this.batches = []; + + /** + * Index of the last batched shape in the stack of calls. + * + * @member {number} + * @protected + */ + this.shapeIndex = 0; + + /** + * Cached bounds. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + + /** + * The bounds dirty flag. + * + * @member {number} + * @protected + */ + this.boundsDirty = -1; + + /** + * Padding to add to the bounds. + * + * @member {number} + * @default 0 + */ + this.boundsPadding = 0; + + this.batchable = false; + + this.indicesUint16 = null; + + this.uvsFloat32 = null; + + /** + * Minimal distance between points that are considered different. + * Affects line tesselation. + * + * @member {number} + */ + this.closePointEps = 1e-4; + } + + if ( BatchGeometry ) GraphicsGeometry.__proto__ = BatchGeometry; + GraphicsGeometry.prototype = Object.create( BatchGeometry && BatchGeometry.prototype ); + GraphicsGeometry.prototype.constructor = GraphicsGeometry; + + var prototypeAccessors = { bounds: { configurable: true } }; + + /** + * Get the current bounds of the graphic geometry. + * + * @member {PIXI.Bounds} + * @readonly + */ + prototypeAccessors.bounds.get = function () + { + if (this.boundsDirty !== this.dirty) + { + this.boundsDirty = this.dirty; + this.calculateBounds(); + } + + return this._bounds; + }; + + /** + * Call if you changed graphicsData manually. + * Empties all batch buffers. + */ + GraphicsGeometry.prototype.invalidate = function invalidate () + { + this.boundsDirty = -1; + this.dirty++; + this.batchDirty++; + this.shapeIndex = 0; + + this.points.length = 0; + this.colors.length = 0; + this.uvs.length = 0; + this.indices.length = 0; + this.textureIds.length = 0; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var batch = this.batches[i$1]; + + batch.start = 0; + batch.attribStart = 0; + batch.style = null; + BATCH_POOL.push(batch); + } + + this.batches.length = 0; + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.GraphicsGeometry} This GraphicsGeometry object. Good for chaining method calls + */ + GraphicsGeometry.prototype.clear = function clear () + { + if (this.graphicsData.length > 0) + { + this.invalidate(); + this.clearDirty++; + this.graphicsData.length = 0; + } + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.FillStyle} fillStyle - Defines style of the fill. + * @param {PIXI.LineStyle} lineStyle - Defines style of the lines. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawShape = function drawShape (shape, fillStyle, lineStyle, matrix) + { + var data = new GraphicsData(shape, fillStyle, lineStyle, matrix); + + this.graphicsData.push(data); + this.dirty++; + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawHole = function drawHole (shape, matrix) + { + if (!this.graphicsData.length) + { + return null; + } + + var data = new GraphicsData(shape, null, null, matrix); + + var lastShape = this.graphicsData[this.graphicsData.length - 1]; + + data.lineStyle = lastShape.lineStyle; + + lastShape.holes.push(data); + + this.dirty++; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + GraphicsGeometry.prototype.destroy = function destroy (options) + { + BatchGeometry.prototype.destroy.call(this, options); + + // destroy each of the GraphicsData objects + for (var i = 0; i < this.graphicsData.length; ++i) + { + this.graphicsData[i].destroy(); + } + + this.points.length = 0; + this.points = null; + this.colors.length = 0; + this.colors = null; + this.uvs.length = 0; + this.uvs = null; + this.indices.length = 0; + this.indices = null; + this.indexBuffer.destroy(); + this.indexBuffer = null; + this.graphicsData.length = 0; + this.graphicsData = null; + this.drawCalls.length = 0; + this.drawCalls = null; + this.batches.length = 0; + this.batches = null; + this._bounds = null; + }; + + /** + * Check to see if a point is contained within this geometry. + * + * @param {PIXI.Point} point - Point to check if it's contained. + * @return {Boolean} `true` if the point is contained within geometry. + */ + GraphicsGeometry.prototype.containsPoint = function containsPoint (point) + { + var graphicsData = this.graphicsData; + + for (var i = 0; i < graphicsData.length; ++i) + { + var data = graphicsData[i]; + + if (!data.fillStyle.visible) + { + continue; + } + + // only deal with fills.. + if (data.shape) + { + if (data.matrix) + { + data.matrix.applyInverse(point, tmpPoint); + } + else + { + tmpPoint.copyFrom(point); + } + + if (data.shape.contains(tmpPoint.x, tmpPoint.y)) + { + if (data.holes) + { + for (var i$1 = 0; i$1 < data.holes.length; i$1++) + { + var hole = data.holes[i$1]; + + if (hole.shape.contains(tmpPoint.x, tmpPoint.y)) + { + return false; + } + } + } + + return true; + } + } + } + + return false; + }; + + /** + * Generates intermediate batch data. Either gets converted to drawCalls + * or used to convert to batch objects directly by the Graphics object. + */ + GraphicsGeometry.prototype.updateBatches = function updateBatches () + { + if (this.dirty === this.cacheDirty) { return; } + if (this.graphicsData.length === 0) + { + this.batchable = true; + + return; + } + + if (this.dirty !== this.cacheDirty) + { + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + if (data.fillStyle && !data.fillStyle.texture.baseTexture.valid) { return; } + if (data.lineStyle && !data.lineStyle.texture.baseTexture.valid) { return; } + } + } + + this.cacheDirty = this.dirty; + + var uvs = this.uvs; + + var batchPart = null; + var currentTexture = null; + var currentColor = 0; + var currentNative = false; + + if (this.batches.length > 0) + { + batchPart = this.batches[this.batches.length - 1]; + + var style = batchPart.style; + + currentTexture = style.texture.baseTexture; + currentColor = style.color + style.alpha; + currentNative = !!style.native; + } + + for (var i$1 = this.shapeIndex; i$1 < this.graphicsData.length; i$1++) + { + this.shapeIndex++; + + var data$1 = this.graphicsData[i$1]; + var command = fillCommands[data$1.type]; + + var fillStyle = data$1.fillStyle; + var lineStyle = data$1.lineStyle; + + // build out the shapes points.. + command.build(data$1); + + if (data$1.matrix) + { + this.transformPoints(data$1.points, data$1.matrix); + } + + for (var j = 0; j < 2; j++) + { + var style$1 = (j === 0) ? fillStyle : lineStyle; + + if (!style$1.visible) { continue; } + + var nextTexture = style$1.texture.baseTexture; + + var index$1 = this.indices.length; + var attribIndex = this.points.length / 2; + + // close batch if style is different + if (batchPart + && (currentTexture !== nextTexture + || currentColor !== (style$1.color + style$1.alpha) + || currentNative !== !!style$1.native)) + { + batchPart.size = index$1 - batchPart.start; + batchPart.attribSize = attribIndex - batchPart.attribStart; + + if (batchPart.size > 0) + { + batchPart = null; + } + } + // spawn new batch if its first batch or previous was closed + if (!batchPart) + { + batchPart = BATCH_POOL.pop() || new BatchPart(); + this.batches.push(batchPart); + nextTexture.wrapMode = WRAP_MODES.REPEAT; + currentTexture = nextTexture; + currentColor = style$1.color + style$1.alpha; + currentNative = style$1.native; + + batchPart.style = style$1; + batchPart.start = index$1; + batchPart.attribStart = attribIndex; + } + + var start = this.points.length / 2; + + if (j === 0) + { + if (data$1.holes.length) + { + this.processHoles(data$1.holes); + + buildPoly.triangulate(data$1, this); + } + else + { + command.triangulate(data$1, this); + } + } + else + { + buildLine(data$1, this); + + for (var i$2 = 0; i$2 < data$1.holes.length; i$2++) + { + buildLine(data$1.holes[i$2], this); + } + } + + var size = (this.points.length / 2) - start; + + this.addUvs(this.points, uvs, style$1.texture, start, size, style$1.matrix); + } + } + + var index = this.indices.length; + var attrib = this.points.length / 2; + + if (!batchPart) + { + // there are no visible styles in GraphicsData + // its possible that someone wants Graphics just for the bounds + this.batchable = true; + + return; + } + + batchPart.size = index - batchPart.start; + batchPart.attribSize = attrib - batchPart.attribStart; + this.indicesUint16 = new Uint16Array(this.indices); + + // TODO make this a const.. + this.batchable = this.isBatchable(); + + if (this.batchable) + { + this.batchDirty++; + + this.uvsFloat32 = new Float32Array(this.uvs); + + // offset the indices so that it works with the batcher... + for (var i$3 = 0; i$3 < this.batches.length; i$3++) + { + var batch = this.batches[i$3]; + + for (var j$1 = 0; j$1 < batch.size; j$1++) + { + var index$2 = batch.start + j$1; + + this.indicesUint16[index$2] = this.indicesUint16[index$2] - batch.attribStart; + } + } + } + else + { + this.buildDrawCalls(); + } + }; + + /** + * Checks to see if this graphics geometry can be batched. + * Currently it needs to be small enough and not contain any native lines. + * @protected + */ + GraphicsGeometry.prototype.isBatchable = function isBatchable () + { + var batches = this.batches; + + for (var i = 0; i < batches.length; i++) + { + if (batches[i].style.native) + { + return false; + } + } + + return (this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2); + }; + + /** + * Converts intermediate batches data to drawCalls. + * @protected + */ + GraphicsGeometry.prototype.buildDrawCalls = function buildDrawCalls () + { + var TICK = ++BaseTexture._globalBatch; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + var uvs = this.uvs; + var colors = this.colors; + var textureIds = this.textureIds; + + var currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.size = 0; + currentGroup.type = DRAW_MODES.TRIANGLES; + + var textureCount = 0; + var currentTexture = null; + var textureId = 0; + var native = false; + var drawMode = DRAW_MODES.TRIANGLES; + + var index = 0; + + this.drawCalls.push(currentGroup); + + // TODO - this can be simplified + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var data = this.batches[i$1]; + + // TODO add some full on MAX_TEXTURE CODE.. + var MAX_TEXTURES = 8; + + var style = data.style; + + var nextTexture = style.texture.baseTexture; + + if (native !== !!style.native) + { + native = style.native; + drawMode = native ? DRAW_MODES.LINES : DRAW_MODES.TRIANGLES; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + if (currentGroup.size > 0) + { + currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + this.drawCalls.push(currentGroup); + } + + currentGroup.start = index; + currentGroup.size = 0; + currentGroup.textureCount = 0; + currentGroup.type = drawMode; + } + + // TODO add this to the render part.. + nextTexture.touched = 1;// touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + nextTexture.wrapMode = 10497; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + currentGroup.size += data.size; + index += data.size; + + textureId = nextTexture._id; + + this.addColors(colors, style.color, style.alpha, data.attribSize); + this.addTextureIds(textureIds, textureId, data.attribSize); + } + + BaseTexture._globalBatch = TICK; + + // upload.. + // merge for now! + var verts = this.points; + + // verts are 2 positions.. so we * by 3 as there are 6 properties.. then 4 cos its bytes + var glPoints = new ArrayBuffer(verts.length * 3 * 4); + var f32 = new Float32Array(glPoints); + var u32 = new Uint32Array(glPoints); + + var p = 0; + + for (var i$2 = 0; i$2 < verts.length / 2; i$2++) + { + f32[p++] = verts[i$2 * 2]; + f32[p++] = verts[(i$2 * 2) + 1]; + + f32[p++] = uvs[i$2 * 2]; + f32[p++] = uvs[(i$2 * 2) + 1]; + + u32[p++] = colors[i$2]; + + f32[p++] = textureIds[i$2]; + } + + this._buffer.update(glPoints); + this._indexBuffer.update(this.indicesUint16); + }; + + /** + * Process the holes data. + * + * @param {PIXI.GraphicsData[]} holes - Holes to render + * @protected + */ + GraphicsGeometry.prototype.processHoles = function processHoles (holes) + { + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + var command = fillCommands[hole.type]; + + command.build(hole); + + if (hole.matrix) + { + this.transformPoints(hole.points, hole.matrix); + } + } + }; + + /** + * Update the local bounds of the object. Expensive to use performance-wise. + * @protected + */ + GraphicsGeometry.prototype.calculateBounds = function calculateBounds () + { + var minX = Infinity; + var maxX = -Infinity; + + var minY = Infinity; + var maxY = -Infinity; + + if (this.graphicsData.length) + { + var shape = null; + var x = 0; + var y = 0; + var w = 0; + var h = 0; + + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + var type = data.type; + var lineWidth = data.lineStyle ? data.lineStyle.width : 0; + + shape = data.shape; + + if (type === SHAPES.RECT || type === SHAPES.RREC) + { + x = shape.x - (lineWidth / 2); + y = shape.y - (lineWidth / 2); + w = shape.width + lineWidth; + h = shape.height + lineWidth; + + minX = x < minX ? x : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y < minY ? y : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.CIRC) + { + x = shape.x; + y = shape.y; + w = shape.radius + (lineWidth / 2); + h = shape.radius + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.ELIP) + { + x = shape.x; + y = shape.y; + w = shape.width + (lineWidth / 2); + h = shape.height + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else + { + // POLY + var points = shape.points; + var x2 = 0; + var y2 = 0; + var dx = 0; + var dy = 0; + var rw = 0; + var rh = 0; + var cx = 0; + var cy = 0; + + for (var j = 0; j + 2 < points.length; j += 2) + { + x = points[j]; + y = points[j + 1]; + x2 = points[j + 2]; + y2 = points[j + 3]; + dx = Math.abs(x2 - x); + dy = Math.abs(y2 - y); + h = lineWidth; + w = Math.sqrt((dx * dx) + (dy * dy)); + + if (w < 1e-9) + { + continue; + } + + rw = ((h / w * dy) + dx) / 2; + rh = ((h / w * dx) + dy) / 2; + cx = (x2 + x) / 2; + cy = (y2 + y) / 2; + + minX = cx - rw < minX ? cx - rw : minX; + maxX = cx + rw > maxX ? cx + rw : maxX; + + minY = cy - rh < minY ? cy - rh : minY; + maxY = cy + rh > maxY ? cy + rh : maxY; + } + } + } + } + else + { + minX = 0; + maxX = 0; + minY = 0; + maxY = 0; + } + + var padding = this.boundsPadding; + + this._bounds.minX = minX - padding; + this._bounds.maxX = maxX + padding; + + this._bounds.minY = minY - padding; + this._bounds.maxY = maxY + padding; + }; + + /** + * Transform points using matrix. + * + * @protected + * @param {number[]} points - Points to transform + * @param {PIXI.Matrix} matrix - Transform matrix + */ + GraphicsGeometry.prototype.transformPoints = function transformPoints (points, matrix) + { + for (var i = 0; i < points.length / 2; i++) + { + var x = points[(i * 2)]; + var y = points[(i * 2) + 1]; + + points[(i * 2)] = (matrix.a * x) + (matrix.c * y) + matrix.tx; + points[(i * 2) + 1] = (matrix.b * x) + (matrix.d * y) + matrix.ty; + } + }; + + /** + * Add colors. + * + * @protected + * @param {number[]} colors - List of colors to add to + * @param {number} color - Color to add + * @param {number} alpha - Alpha to use + * @param {number} size - Number of colors to add + */ + GraphicsGeometry.prototype.addColors = function addColors (colors, color, alpha, size) + { + // TODO use the premultiply bits Ivan added + var rgb = (color >> 16) + (color & 0xff00) + ((color & 0xff) << 16); + + var rgba = premultiplyTint(rgb, alpha); + + while (size-- > 0) + { + colors.push(rgba); + } + }; + + /** + * Add texture id that the shader/fragment wants to use. + * + * @protected + * @param {number[]} textureIds + * @param {number} id + * @param {number} size + */ + GraphicsGeometry.prototype.addTextureIds = function addTextureIds (textureIds, id, size) + { + while (size-- > 0) + { + textureIds.push(id); + } + }; + + /** + * Generates the UVs for a shape. + * + * @protected + * @param {number[]} verts - Vertices + * @param {number[]} uvs - UVs + * @param {PIXI.Texture} texture - Reference to Texture + * @param {number} start - Index buffer start index. + * @param {number} size - The size/length for index buffer. + * @param {PIXI.Matrix} [matrix] - Optional transform for all points. + */ + GraphicsGeometry.prototype.addUvs = function addUvs (verts, uvs, texture, start, size, matrix) + { + var index = 0; + var uvsStart = uvs.length; + var frame = texture.frame; + + while (index < size) + { + var x = verts[(start + index) * 2]; + var y = verts[((start + index) * 2) + 1]; + + if (matrix) + { + var nx = (matrix.a * x) + (matrix.c * y) + matrix.tx; + + y = (matrix.b * x) + (matrix.d * y) + matrix.ty; + x = nx; + } + + index++; + + uvs.push(x / frame.width, y / frame.height); + } + + var baseTexture = texture.baseTexture; + + if (frame.width < baseTexture.width + || frame.height < baseTexture.height) + { + this.adjustUvs(uvs, texture, uvsStart, size); + } + }; + + /** + * Modify uvs array according to position of texture region + * Does not work with rotated or trimmed textures + * @param {number[]} uvs array + * @param {PIXI.Texture} texture region + * @param {number} start starting index for uvs + * @param {number} size how many points to adjust + */ + GraphicsGeometry.prototype.adjustUvs = function adjustUvs (uvs, texture, start, size) + { + var baseTexture = texture.baseTexture; + var eps = 1e-6; + var finish = start + (size * 2); + var frame = texture.frame; + var scaleX = frame.width / baseTexture.width; + var scaleY = frame.height / baseTexture.height; + var offsetX = frame.x / frame.width; + var offsetY = frame.y / frame.height; + var minX = Math.floor(uvs[start] + eps); + var minY = Math.floor(uvs[start + 1] + eps); + + for (var i = start + 2; i < finish; i += 2) + { + minX = Math.min(minX, Math.floor(uvs[i] + eps)); + minY = Math.min(minY, Math.floor(uvs[i + 1] + eps)); + } + offsetX -= minX; + offsetY -= minY; + for (var i$1 = start; i$1 < finish; i$1 += 2) + { + uvs[i$1] = (uvs[i$1] + offsetX) * scaleX; + uvs[i$1 + 1] = (uvs[i$1 + 1] + offsetY) * scaleY; + } + }; + + Object.defineProperties( GraphicsGeometry.prototype, prototypeAccessors ); + + return GraphicsGeometry; +}(BatchGeometry)); + +/** + * The maximum number of points to consider an object "batchable", + * able to be batched by the renderer's batch system. + * + * @memberof PIXI.GraphicsGeometry + * @static + * @member {number} BATCHABLE_SIZE + * @default 100 + */ +GraphicsGeometry.BATCHABLE_SIZE = 100; + +/** + * Represents the line style for Graphics. + * @memberof PIXI + * @class + * @extends PIXI.FillStyle + */ +var LineStyle = /*@__PURE__*/(function (FillStyle) { + function LineStyle () { + FillStyle.apply(this, arguments); + } + + if ( FillStyle ) LineStyle.__proto__ = FillStyle; + LineStyle.prototype = Object.create( FillStyle && FillStyle.prototype ); + LineStyle.prototype.constructor = LineStyle; + + LineStyle.prototype.clone = function clone () + { + var obj = new LineStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + obj.width = this.width; + obj.alignment = this.alignment; + obj.native = this.native; + + return obj; + }; + /** + * Reset the line style to default. + */ + LineStyle.prototype.reset = function reset () + { + FillStyle.prototype.reset.call(this); + + // Override default line style color + this.color = 0x0; + + /** + * The width (thickness) of any lines drawn. + * + * @member {number} + * @default 0 + */ + this.width = 0; + + /** + * The alignment of any lines drawn (0.5 = middle, 1 = outter, 0 = inner). + * + * @member {number} + * @default 0 + */ + this.alignment = 0.5; + + /** + * If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * + * @member {boolean} + * @default false + */ + this.native = false; + }; + + return LineStyle; +}(FillStyle)); + +/** + * Utilities for bezier curves + * @class + * @private + */ +var BezierUtils = function BezierUtils () {}; + +BezierUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) +{ + var n = 10; + var result = 0.0; + var t = 0.0; + var t2 = 0.0; + var t3 = 0.0; + var nt = 0.0; + var nt2 = 0.0; + var nt3 = 0.0; + var x = 0.0; + var y = 0.0; + var dx = 0.0; + var dy = 0.0; + var prevX = fromX; + var prevY = fromY; + + for (var i = 1; i <= n; ++i) + { + t = i / n; + t2 = t * t; + t3 = t2 * t; + nt = (1.0 - t); + nt2 = nt * nt; + nt3 = nt2 * nt; + + x = (nt3 * fromX) + (3.0 * nt2 * t * cpX) + (3.0 * nt * t2 * cpX2) + (t3 * toX); + y = (nt3 * fromY) + (3.0 * nt2 * t * cpY) + (3 * nt * t2 * cpY2) + (t3 * toY); + dx = prevX - x; + dy = prevY - y; + prevX = x; + prevY = y; + + result += Math.sqrt((dx * dx) + (dy * dy)); + } + + return result; +}; + +/** + * Calculate the points for a bezier curve and then draws it. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Path array to push points into + */ +BezierUtils.curveTo = function curveTo (cpX, cpY, cpX2, cpY2, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + points.length -= 2; + + var n = GRAPHICS_CURVES._segmentsCount( + BezierUtils.curveLength(fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) + ); + + var dt = 0; + var dt2 = 0; + var dt3 = 0; + var t2 = 0; + var t3 = 0; + + points.push(fromX, fromY); + + for (var i = 1, j = 0; i <= n; ++i) + { + j = i / n; + + dt = (1 - j); + dt2 = dt * dt; + dt3 = dt2 * dt; + + t2 = j * j; + t3 = t2 * j; + + points.push( + (dt3 * fromX) + (3 * dt2 * j * cpX) + (3 * dt * t2 * cpX2) + (t3 * toX), + (dt3 * fromY) + (3 * dt2 * j * cpY) + (3 * dt * t2 * cpY2) + (t3 * toY) + ); + } +}; + +/** + * Utilities for quadratic curves + * @class + * @private + */ +var QuadraticUtils = function QuadraticUtils () {}; + +QuadraticUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, toX, toY) +{ + var ax = fromX - (2.0 * cpX) + toX; + var ay = fromY - (2.0 * cpY) + toY; + var bx = (2.0 * cpX) - (2.0 * fromX); + var by = (2.0 * cpY) - (2.0 * fromY); + var a = 4.0 * ((ax * ax) + (ay * ay)); + var b = 4.0 * ((ax * bx) + (ay * by)); + var c = (bx * bx) + (by * by); + + var s = 2.0 * Math.sqrt(a + b + c); + var a2 = Math.sqrt(a); + var a32 = 2.0 * a * a2; + var c2 = 2.0 * Math.sqrt(c); + var ba = b / a2; + + return ( + (a32 * s) + + (a2 * b * (s - c2)) + + ( + ((4.0 * c * a) - (b * b)) + * Math.log(((2.0 * a2) + ba + s) / (ba + c2)) + ) + ) / (4.0 * a32); +}; + +/** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @private + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Points to add segments to. + */ +QuadraticUtils.curveTo = function curveTo (cpX, cpY, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var n = GRAPHICS_CURVES._segmentsCount( + QuadraticUtils.curveLength(fromX, fromY, cpX, cpY, toX, toY) + ); + + var xa = 0; + var ya = 0; + + for (var i = 1; i <= n; ++i) + { + var j = i / n; + + xa = fromX + ((cpX - fromX) * j); + ya = fromY + ((cpY - fromY) * j); + + points.push(xa + (((cpX + ((toX - cpX) * j)) - xa) * j), + ya + (((cpY + ((toY - cpY) * j)) - ya) * j)); + } +}; + +/** + * Utilities for arc curves + * @class + * @private + */ +var ArcUtils = function ArcUtils () {}; + +ArcUtils.curveTo = function curveTo (x1, y1, x2, y2, radius, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var a1 = fromY - y1; + var b1 = fromX - x1; + var a2 = y2 - y1; + var b2 = x2 - x1; + var mm = Math.abs((a1 * b2) - (b1 * a2)); + + if (mm < 1.0e-8 || radius === 0) + { + if (points[points.length - 2] !== x1 || points[points.length - 1] !== y1) + { + points.push(x1, y1); + } + + return null; + } + + var dd = (a1 * a1) + (b1 * b1); + var cc = (a2 * a2) + (b2 * b2); + var tt = (a1 * a2) + (b1 * b2); + var k1 = radius * Math.sqrt(dd) / mm; + var k2 = radius * Math.sqrt(cc) / mm; + var j1 = k1 * tt / dd; + var j2 = k2 * tt / cc; + var cx = (k1 * b2) + (k2 * b1); + var cy = (k1 * a2) + (k2 * a1); + var px = b1 * (k2 + j1); + var py = a1 * (k2 + j1); + var qx = b2 * (k1 + j2); + var qy = a2 * (k1 + j2); + var startAngle = Math.atan2(py - cy, px - cx); + var endAngle = Math.atan2(qy - cy, qx - cx); + + return { + cx: (cx + x1), + cy: (cy + y1), + radius: radius, + startAngle: startAngle, + endAngle: endAngle, + anticlockwise: (b1 * a2 > b2 * a1), + }; +}; + +/** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @private + * @param {number} startX - Start x location of arc + * @param {number} startY - Start y location of arc + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} anticlockwise - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @param {number} n - Number of segments + * @param {number[]} points - Collection of points to add to + */ +ArcUtils.arc = function arc (startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points) +{ + var sweep = endAngle - startAngle; + var n = GRAPHICS_CURVES._segmentsCount( + Math.abs(sweep) * radius, + Math.ceil(Math.abs(sweep) / PI_2) * 40 + ); + + var theta = (sweep) / (n * 2); + var theta2 = theta * 2; + var cTheta = Math.cos(theta); + var sTheta = Math.sin(theta); + var segMinus = n - 1; + var remainder = (segMinus % 1) / segMinus; + + for (var i = 0; i <= segMinus; ++i) + { + var real = i + (remainder * i); + var angle = ((theta) + startAngle + (theta2 * real)); + var c = Math.cos(angle); + var s = -Math.sin(angle); + + points.push( + (((cTheta * c) + (sTheta * s)) * radius) + cx, + (((cTheta * -s) + (sTheta * c)) * radius) + cy + ); + } +}; + +/** + * Draw a star shape with an arbitrary number of points. + * + * @class + * @extends PIXI.Polygon + * @memberof PIXI + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ +var Star = /*@__PURE__*/(function (Polygon) { + function Star(x, y, points, radius, innerRadius, rotation) + { + innerRadius = innerRadius || radius / 2; + + var startAngle = (-1 * Math.PI / 2) + rotation; + var len = points * 2; + var delta = PI_2 / len; + var polygon = []; + + for (var i = 0; i < len; i++) + { + var r = i % 2 ? innerRadius : radius; + var angle = (i * delta) + startAngle; + + polygon.push( + x + (r * Math.cos(angle)), + y + (r * Math.sin(angle)) + ); + } + + Polygon.call(this, polygon); + } + + if ( Polygon ) Star.__proto__ = Polygon; + Star.prototype = Object.create( Polygon && Polygon.prototype ); + Star.prototype.constructor = Star; + + return Star; +}(Polygon)); + +var temp = new Float32Array(3); + +// a default shaders map used by graphics.. +var DEFAULT_SHADERS = {}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * Note that because Graphics can share a GraphicsGeometry with other instances, + * it is necessary to call `destroy()` to properly dereference the underlying + * GraphicsGeometry and avoid a memory leak. Alternatively, keep using the same + * Graphics instance and call `clear()` between redraws. + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Graphics = /*@__PURE__*/(function (Container) { + function Graphics(geometry) + { + if ( geometry === void 0 ) geometry = null; + + Container.call(this); + /** + * Includes vertex positions, face indices, normals, colors, UVs, and + * custom attributes within buffers, reducing the cost of passing all + * this data to the GPU. Can be shared between multiple Mesh or Graphics objects. + * @member {PIXI.GraphicsGeometry} + * @readonly + */ + this.geometry = geometry || new GraphicsGeometry(); + + this.geometry.refCount++; + + /** + * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU. + * Can be shared between multiple Graphics objects. + * @member {PIXI.Shader} + */ + this.shader = null; + + /** + * Represents the WebGL state the Graphics required to render, excludes shader and geometry. E.g., + * blend mode, culling, depth testing, direction of rendering triangles, backface, etc. + * @member {PIXI.State} + */ + this.state = State.for2d(); + + /** + * Current fill style + * + * @member {PIXI.FillStyle} + * @protected + */ + this._fillStyle = new FillStyle(); + + /** + * Current line style + * + * @member {PIXI.LineStyle} + * @protected + */ + this._lineStyle = new LineStyle(); + + /** + * Current shape transform matrix. + * + * @member {PIXI.Matrix} + * @protected + */ + this._matrix = null; + + /** + * Current hole mode is enabled. + * + * @member {boolean} + * @default false + * @protected + */ + this._holeMode = false; + + /** + * Current path + * + * @member {PIXI.Polygon} + * @protected + */ + this.currentPath = null; + + /** + * When cacheAsBitmap is set to true the graphics object will be rendered as if it was a sprite. + * This is useful if your graphics element does not change often, as it will speed up the rendering + * of the object in exchange for taking up texture memory. It is also useful if you need the graphics + * object to be anti-aliased, because it will be rendered using canvas. This is not recommended if + * you are constantly redrawing the graphics element. + * + * @name cacheAsBitmap + * @member {boolean} + * @memberof PIXI.Graphics# + * @default false + */ + + /** + * A collections of batches! These can be drawn by the renderer batch system. + * + * @protected + * @member {object[]} + */ + this.batches = []; + + /** + * Update dirty for limiting calculating tints for batches. + * + * @protected + * @member {number} + * @default -1 + */ + this.batchTint = -1; + + /** + * Copy of the object vertex data. + * + * @protected + * @member {Float32Array} + */ + this.vertexData = null; + + this._transformID = -1; + this.batchDirty = -1; + + /** + * Renderer plugin for batching + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + // Set default + this.tint = 0xFFFFFF; + this.blendMode = BLEND_MODES.NORMAL; + } + + if ( Container ) Graphics.__proto__ = Container; + Graphics.prototype = Object.create( Container && Container.prototype ); + Graphics.prototype.constructor = Graphics; + + var prototypeAccessors = { blendMode: { configurable: true },tint: { configurable: true },fill: { configurable: true },line: { configurable: true } }; + + /** + * Creates a new Graphics object with the same values as this one. + * Note that the only the properties of the object are cloned, not its transform (position,scale,etc) + * + * @return {PIXI.Graphics} A clone of the graphics object + */ + Graphics.prototype.clone = function clone () + { + this.finishPoly(); + + return new Graphics(this.geometry); + }; + + /** + * The blend mode to be applied to the graphic shape. Apply a value of + * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL; + * @see PIXI.BLEND_MODES + */ + prototypeAccessors.blendMode.set = function (value) + { + this.state.blendMode = value; + }; + + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + /** + * The tint applied to the graphic shape. This is a hex value. A value of + * 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + prototypeAccessors.tint.set = function (value) + { + this._tint = value; + }; + + /** + * The current fill style. + * + * @member {PIXI.FillStyle} + * @readonly + */ + prototypeAccessors.fill.get = function () + { + return this._fillStyle; + }; + + /** + * The current line style. + * + * @member {PIXI.LineStyle} + * @readonly + */ + prototypeAccessors.line.get = function () + { + return this._lineStyle; + }; + + /** + * Specifies the line style used for subsequent calls to Graphics methods such as the lineTo() + * method or the drawCircle() method. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineStyle = function lineStyle (width, color, alpha, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + this.lineTextureStyle(width, Texture.WHITE, color, alpha, null, alignment, native); + + return this; + }; + + /** + * Like line style but support texture for line fill. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to use + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {PIXI.Matrix} [matrix=null] Texture matrix to transform texture + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTextureStyle = function lineTextureStyle (width, texture, color, alpha, + matrix, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = width > 0 && alpha > 0; + + if (!visible) + { + this._lineStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._lineStyle, { + color: color, + width: width, + alpha: alpha, + matrix: matrix, + texture: texture, + alignment: alignment, + native: native, + visible: visible, + }); + } + + return this; + }; + + /** + * Start a polygon object internally + * @protected + */ + Graphics.prototype.startPoly = function startPoly () + { + if (this.currentPath) + { + var points = this.currentPath.points; + var len = this.currentPath.points.length; + + if (len > 2) + { + this.drawShape(this.currentPath); + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + this.currentPath.points.push(points[len - 2], points[len - 1]); + } + } + else + { + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + } + }; + + /** + * Finish the polygon object. + * @protected + */ + Graphics.prototype.finishPoly = function finishPoly () + { + if (this.currentPath) + { + if (this.currentPath.points.length > 2) + { + this.drawShape(this.currentPath); + this.currentPath = null; + } + else + { + this.currentPath.points.length = 0; + } + } + }; + + /** + * Moves the current drawing position to x, y. + * + * @param {number} x - the X coordinate to move to + * @param {number} y - the Y coordinate to move to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.moveTo = function moveTo (x, y) + { + this.startPoly(); + this.currentPath.points[0] = x; + this.currentPath.points[1] = y; + + return this; + }; + + /** + * Draws a line using the current line style from the current drawing position to (x, y); + * The current drawing position is then set to (x, y). + * + * @param {number} x - the X coordinate to draw to + * @param {number} y - the Y coordinate to draw to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTo = function lineTo (x, y) + { + if (!this.currentPath) + { + this.moveTo(0, 0); + } + + // remove duplicates.. + var points = this.currentPath.points; + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + if (fromX !== x || fromY !== y) + { + points.push(x, y); + } + + return this; + }; + + /** + * Initialize the curve + * + * @protected + * @param {number} [x=0] + * @param {number} [y=0] + */ + Graphics.prototype._initCurve = function _initCurve (x, y) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + if (this.currentPath) + { + if (this.currentPath.points.length === 0) + { + this.currentPath.points = [x, y]; + } + } + else + { + this.moveTo(x, y); + } + }; + + /** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.quadraticCurveTo = function quadraticCurveTo (cpX, cpY, toX, toY) + { + this._initCurve(); + + var points = this.currentPath.points; + + if (points.length === 0) + { + this.moveTo(0, 0); + } + + QuadraticUtils.curveTo(cpX, cpY, toX, toY, points); + + return this; + }; + + /** + * Calculate the points for a bezier curve and then draws it. + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.bezierCurveTo = function bezierCurveTo (cpX, cpY, cpX2, cpY2, toX, toY) + { + this._initCurve(); + + BezierUtils.curveTo(cpX, cpY, cpX2, cpY2, toX, toY, this.currentPath.points); + + return this; + }; + + /** + * The arcTo() method creates an arc/curve between two tangents on the canvas. + * + * "borrowed" from https://code.google.com/p/fxcanvas/ - thanks google! + * + * @param {number} x1 - The x-coordinate of the first tangent point of the arc + * @param {number} y1 - The y-coordinate of the first tangent point of the arc + * @param {number} x2 - The x-coordinate of the end of the arc + * @param {number} y2 - The y-coordinate of the end of the arc + * @param {number} radius - The radius of the arc + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arcTo = function arcTo (x1, y1, x2, y2, radius) + { + this._initCurve(x1, y1); + + var points = this.currentPath.points; + + var result = ArcUtils.curveTo(x1, y1, x2, y2, radius, points); + + if (result) + { + var cx = result.cx; + var cy = result.cy; + var radius$1 = result.radius; + var startAngle = result.startAngle; + var endAngle = result.endAngle; + var anticlockwise = result.anticlockwise; + + this.arc(cx, cy, radius$1, startAngle, endAngle, anticlockwise); + } + + return this; + }; + + /** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arc = function arc (cx, cy, radius, startAngle, endAngle, anticlockwise) + { + if ( anticlockwise === void 0 ) anticlockwise = false; + + if (startAngle === endAngle) + { + return this; + } + + if (!anticlockwise && endAngle <= startAngle) + { + endAngle += PI_2; + } + else if (anticlockwise && startAngle <= endAngle) + { + startAngle += PI_2; + } + + var sweep = endAngle - startAngle; + + if (sweep === 0) + { + return this; + } + + var startX = cx + (Math.cos(startAngle) * radius); + var startY = cy + (Math.sin(startAngle) * radius); + var eps = this.geometry.closePointEps; + + // If the currentPath exists, take its points. Otherwise call `moveTo` to start a path. + var points = this.currentPath ? this.currentPath.points : null; + + if (points) + { + // TODO: make a better fix. + + // We check how far our start is from the last existing point + var xDiff = Math.abs(points[points.length - 2] - startX); + var yDiff = Math.abs(points[points.length - 1] - startY); + + if (xDiff < eps && yDiff < eps) + ; + else + { + points.push(startX, startY); + } + } + else + { + this.moveTo(startX, startY); + points = this.currentPath.points; + } + + ArcUtils.arc(startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points); + + return this; + }; + + /** + * Specifies a simple one-color fill that subsequent calls to other Graphics methods + * (such as lineTo() or drawCircle()) use when drawing. + * + * @param {number} [color=0] - the color of the fill + * @param {number} [alpha=1] - the alpha of the fill + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginFill = function beginFill (color, alpha) + { + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + + return this.beginTextureFill(Texture.WHITE, color, alpha); + }; + + /** + * Begin the texture fill + * + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to fill + * @param {number} [color=0xffffff] - Background to fill behind texture + * @param {number} [alpha=1] - Alpha of fill + * @param {PIXI.Matrix} [matrix=null] - Transform matrix + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginTextureFill = function beginTextureFill (texture, color, alpha, matrix) + { + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = alpha > 0; + + if (!visible) + { + this._fillStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._fillStyle, { + color: color, + alpha: alpha, + texture: texture, + matrix: matrix, + visible: visible, + }); + } + + return this; + }; + + /** + * Applies a fill to the lines and shapes that were added since the last call to the beginFill() method. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.endFill = function endFill () + { + this.finishPoly(); + + this._fillStyle.reset(); + + return this; + }; + + /** + * Draws a rectangle shape. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRect = function drawRect (x, y, width, height) + { + return this.drawShape(new Rectangle(x, y, width, height)); + }; + + /** + * Draw a rectangle shape with rounded/beveled corners. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @param {number} radius - Radius of the rectangle corners + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRoundedRect = function drawRoundedRect (x, y, width, height, radius) + { + return this.drawShape(new RoundedRectangle(x, y, width, height, radius)); + }; + + /** + * Draws a circle. + * + * @param {number} x - The X coordinate of the center of the circle + * @param {number} y - The Y coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawCircle = function drawCircle (x, y, radius) + { + return this.drawShape(new Circle(x, y, radius)); + }; + + /** + * Draws an ellipse. + * + * @param {number} x - The X coordinate of the center of the ellipse + * @param {number} y - The Y coordinate of the center of the ellipse + * @param {number} width - The half width of the ellipse + * @param {number} height - The half height of the ellipse + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawEllipse = function drawEllipse (x, y, width, height) + { + return this.drawShape(new Ellipse(x, y, width, height)); + }; + + /** + * Draws a polygon using the given path. + * + * @param {number[]|PIXI.Point[]|PIXI.Polygon} path - The path data used to construct the polygon. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawPolygon = function drawPolygon (path) + { + var arguments$1 = arguments; + + // prevents an argument assignment deopt + // see section 3.1: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + var points = path; + + var closeStroke = true;// !!this._fillStyle; + + // check if data has points.. + if (points.points) + { + closeStroke = points.closeStroke; + points = points.points; + } + + if (!Array.isArray(points)) + { + // prevents an argument leak deopt + // see section 3.2: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + points = new Array(arguments.length); + + for (var i = 0; i < points.length; ++i) + { + points[i] = arguments$1[i]; // eslint-disable-line prefer-rest-params + } + } + + var shape = new Polygon(points); + + shape.closeStroke = closeStroke; + + this.drawShape(shape); + + return this; + }; + + /** + * Draw any shape. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - Shape to draw + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawShape = function drawShape (shape) + { + if (!this._holeMode) + { + this.geometry.drawShape( + shape, + this._fillStyle.clone(), + this._lineStyle.clone(), + this._matrix + ); + } + else + { + this.geometry.drawHole(shape, this._matrix); + } + + return this; + }; + + /** + * Draw a star shape with an arbitrary number of points. + * + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawStar = function drawStar (x, y, points, radius, innerRadius, rotation) + { + if ( rotation === void 0 ) rotation = 0; + + return this.drawPolygon(new Star(x, y, points, radius, innerRadius, rotation)); + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.clear = function clear () + { + this.geometry.clear(); + this._lineStyle.reset(); + this._fillStyle.reset(); + + this._matrix = null; + this._holeMode = false; + this.currentPath = null; + + return this; + }; + + /** + * True if graphics consists of one rectangle, and thus, can be drawn like a Sprite and + * masked with gl.scissor. + * + * @returns {boolean} True if only 1 rect. + */ + Graphics.prototype.isFastRect = function isFastRect () + { + // will fix this! + return false; + // this.graphicsData.length === 1 + // && this.graphicsData[0].shape.type === SHAPES.RECT + // && !this.graphicsData[0].lineWidth; + }; + + /** + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._render = function _render (renderer) + { + this.finishPoly(); + + var geometry = this.geometry; + + // batch part.. + // batch it! + geometry.updateBatches(); + + if (geometry.batchable) + { + if (this.batchDirty !== geometry.batchDirty) + { + this._populateBatches(); + } + + this._renderBatched(renderer); + } + else + { + // no batching... + renderer.batch.flush(); + + this._renderDirect(renderer); + } + }; + + /** + * Populating batches for rendering + * + * @protected + */ + Graphics.prototype._populateBatches = function _populateBatches () + { + var geometry = this.geometry; + var blendMode = this.blendMode; + + this.batches = []; + this.batchTint = -1; + this._transformID = -1; + this.batchDirty = geometry.batchDirty; + + this.vertexData = new Float32Array(geometry.points); + + for (var i = 0, l = geometry.batches.length; i < l; i++) + { + var gI = geometry.batches[i]; + var color = gI.style.color; + var vertexData = new Float32Array(this.vertexData.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var uvs = new Float32Array(geometry.uvsFloat32.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var indices = new Uint16Array(geometry.indicesUint16.buffer, + gI.start * 2, + gI.size); + + var batch = { + vertexData: vertexData, + blendMode: blendMode, + indices: indices, + uvs: uvs, + _batchRGB: hex2rgb(color), + _tintRGB: color, + _texture: gI.style.texture, + alpha: gI.style.alpha, + worldAlpha: 1 }; + + this.batches[i] = batch; + } + }; + + /** + * Renders the batches using the BathedRenderer plugin + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderBatched = function _renderBatched (renderer) + { + if (!this.batches.length) + { + return; + } + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + + this.calculateVertices(); + this.calculateTints(); + + for (var i = 0, l = this.batches.length; i < l; i++) + { + var batch = this.batches[i]; + + batch.worldAlpha = this.worldAlpha * batch.alpha; + + renderer.plugins[this.pluginName].render(batch); + } + }; + + /** + * Renders the graphics direct + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderDirect = function _renderDirect (renderer) + { + var shader = this._resolveDirectShader(renderer); + + var geometry = this.geometry; + var tint = this.tint; + var worldAlpha = this.worldAlpha; + var uniforms = shader.uniforms; + var drawCalls = geometry.drawCalls; + + // lets set the transfomr + uniforms.translationMatrix = this.transform.worldTransform; + + // and then lets set the tint.. + uniforms.tint[0] = (((tint >> 16) & 0xFF) / 255) * worldAlpha; + uniforms.tint[1] = (((tint >> 8) & 0xFF) / 255) * worldAlpha; + uniforms.tint[2] = ((tint & 0xFF) / 255) * worldAlpha; + uniforms.tint[3] = worldAlpha; + + // the first draw call, we can set the uniforms of the shader directly here. + + // this means that we can tack advantage of the sync function of pixi! + // bind and sync uniforms.. + // there is a way to optimise this.. + renderer.shader.bind(shader); + renderer.geometry.bind(geometry, shader); + + // set state.. + renderer.state.set(this.state); + + // then render the rest of them... + for (var i = 0, l = drawCalls.length; i < l; i++) + { + this._renderDrawCallDirect(renderer, geometry.drawCalls[i]); + } + }; + + /** + * Renders specific DrawCall + * + * @param {PIXI.Renderer} renderer + * @param {PIXI.BatchDrawCall} drawCall + */ + Graphics.prototype._renderDrawCallDirect = function _renderDrawCallDirect (renderer, drawCall) + { + var groupTextureCount = drawCall.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + renderer.texture.bind(drawCall.textures[j], j); + } + + renderer.geometry.draw(drawCall.type, drawCall.size, drawCall.start); + }; + + /** + * Resolves shader for direct rendering + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._resolveDirectShader = function _resolveDirectShader (renderer) + { + var shader = this.shader; + + var pluginName = this.pluginName; + + if (!shader) + { + // if there is no shader here, we can use the default shader. + // and that only gets created if we actually need it.. + // but may be more than one plugins for graphics + if (!DEFAULT_SHADERS[pluginName]) + { + var sampleValues = new Int32Array(16); + + for (var i = 0; i < 16; i++) + { + sampleValues[i] = i; + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: UniformGroup.from({ uSamplers: sampleValues }, true), + }; + + var program = renderer.plugins[pluginName]._shader.program; + + DEFAULT_SHADERS[pluginName] = new Shader(program, uniforms); + } + + shader = DEFAULT_SHADERS[pluginName]; + } + + return shader; + }; + + /** + * Retrieves the bounds of the graphic shape as a rectangle object + * + * @protected + */ + Graphics.prototype._calculateBounds = function _calculateBounds () + { + this.finishPoly(); + var lb = this.geometry.bounds; + + this._bounds.addFrame(this.transform, lb.minX, lb.minY, lb.maxX, lb.maxY); + }; + + /** + * Tests if a point is inside this graphics object + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Graphics.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, Graphics._TEMP_POINT); + + return this.geometry.containsPoint(Graphics._TEMP_POINT); + }; + + /** + * Recalcuate the tint by applying tin to batches using Graphics tint. + * @protected + */ + Graphics.prototype.calculateTints = function calculateTints () + { + if (this.batchTint !== this.tint) + { + this.batchTint = this.tint; + + var tintRGB = hex2rgb(this.tint, temp); + + for (var i = 0; i < this.batches.length; i++) + { + var batch = this.batches[i]; + + var batchTint = batch._batchRGB; + + var r = (tintRGB[0] * batchTint[0]) * 255; + var g = (tintRGB[1] * batchTint[1]) * 255; + var b = (tintRGB[2] * batchTint[2]) * 255; + + // TODO Ivan, can this be done in one go? + var color = (r << 16) + (g << 8) + (b | 0); + + batch._tintRGB = (color >> 16) + + (color & 0xff00) + + ((color & 0xff) << 16); + } + } + }; + + /** + * If there's a transform update or a change to the shape of the + * geometry, recaculate the vertices. + * @protected + */ + Graphics.prototype.calculateVertices = function calculateVertices () + { + if (this._transformID === this.transform._worldID) + { + return; + } + + this._transformID = this.transform._worldID; + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var data = this.geometry.points;// batch.vertexDataOriginal; + var vertexData = this.vertexData; + + var count = 0; + + for (var i = 0; i < data.length; i += 2) + { + var x = data[i]; + var y = data[i + 1]; + + vertexData[count++] = (a * x) + (c * y) + tx; + vertexData[count++] = (d * y) + (b * x) + ty; + } + }; + + /** + * Closes the current path. + * + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.closePath = function closePath () + { + var currentPath = this.currentPath; + + if (currentPath) + { + // we don't need to add extra point in the end because buildLine will take care of that + currentPath.closeStroke = true; + } + + return this; + }; + + /** + * Apply a matrix to the positional data. + * + * @param {PIXI.Matrix} matrix - Matrix to use for transform current shape. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.setMatrix = function setMatrix (matrix) + { + this._matrix = matrix; + + return this; + }; + + /** + * Begin adding holes to the last draw shape + * IMPORTANT: holes must be fully inside a shape to work + * Also weirdness ensues if holes overlap! + * Ellipses, Circles, Rectangles and Rounded Rectangles cannot be holes or host for holes in CanvasRenderer, + * please use `moveTo` `lineTo`, `quadraticCurveTo` if you rely on pixi-legacy bundle. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.beginHole = function beginHole () + { + this.finishPoly(); + this._holeMode = true; + + return this; + }; + + /** + * End adding holes to the last draw shape + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.endHole = function endHole () + { + this.finishPoly(); + this._holeMode = false; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Graphics.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this.geometry.refCount--; + if (this.geometry.refCount === 0) + { + this.geometry.dispose(); + } + + this._matrix = null; + this.currentPath = null; + this._lineStyle.destroy(); + this._lineStyle = null; + this._fillStyle.destroy(); + this._fillStyle = null; + this.geometry = null; + this.shader = null; + this.vertexData = null; + this.batches.length = 0; + this.batches = null; + + Container.prototype.destroy.call(this, options); + }; + + Object.defineProperties( Graphics.prototype, prototypeAccessors ); + + return Graphics; +}(Container)); + +/** + * Temporary point to use for containsPoint + * + * @static + * @private + * @member {PIXI.Point} + */ +Graphics._TEMP_POINT = new Point(); + +/*! + * @pixi/sprite - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint = new Point(); +var indices = new Uint16Array([0, 1, 2, 0, 2, 3]); + +/** + * The Sprite object is the base for all textured objects that are rendered to the screen +* + * A sprite can be created directly from an image like this: + * + * ```js + * let sprite = PIXI.Sprite.from('assets/image.png'); + * ``` + * + * The more efficient way to create sprites is using a {@link PIXI.Spritesheet}, + * as swapping base textures when rendering to the screen is inefficient. + * + * ```js + * PIXI.Loader.shared.add("assets/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["assets/spritesheet.json"].spritesheet; + * let sprite = new PIXI.Sprite(sheet.textures["image.png"]); + * ... + * } + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Sprite = /*@__PURE__*/(function (Container) { + function Sprite(texture) + { + Container.call(this); + + /** + * The anchor point defines the normalized coordinates + * in the texture that map to the position of this + * sprite. + * + * By default, this is `(0,0)` (or `texture.defaultAnchor` + * if you have modified that), which means the position + * `(x,y)` of this `Sprite` will be the top-left corner. + * + * Note: Updating `texture.defaultAnchor` after + * constructing a `Sprite` does _not_ update its anchor. + * + * {@link https://docs.cocos2d-x.org/cocos2d-x/en/sprites/manipulation.html} + * + * @default `texture.defaultAnchor` + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint( + this._onAnchorUpdate, + this, + (texture ? texture.defaultAnchor.x : 0), + (texture ? texture.defaultAnchor.y : 0) + ); + + /** + * The texture that the sprite is using + * + * @private + * @member {PIXI.Texture} + */ + this._texture = null; + + /** + * The width of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._width = 0; + + /** + * The height of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._height = 0; + + /** + * The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect. + * + * @private + * @member {number} + * @default 0xFFFFFF + */ + this._tint = null; + this._tintRGB = null; + this.tint = 0xFFFFFF; + + /** + * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ + this.blendMode = BLEND_MODES.NORMAL; + + /** + * The shader that will be used to render the sprite. Set to null to remove a current shader. + * + * @member {PIXI.Filter|PIXI.Shader} + */ + this.shader = null; + + /** + * Cached tint value so we can tell when the tint is changed. + * Value is used for 2d CanvasRenderer. + * + * @protected + * @member {number} + * @default 0xFFFFFF + */ + this._cachedTint = 0xFFFFFF; + + /** + * this is used to store the uvs data of the sprite, assigned at the same time + * as the vertexData in calculateVertices() + * + * @private + * @member {Float32Array} + */ + this.uvs = null; + + // call texture setter + this.texture = texture || Texture.EMPTY; + + /** + * this is used to store the vertex data of the sprite (basically a quad) + * + * @private + * @member {Float32Array} + */ + this.vertexData = new Float32Array(8); + + /** + * This is used to calculate the bounds of the object IF it is a trimmed sprite + * + * @private + * @member {Float32Array} + */ + this.vertexTrimmedData = null; + + this._transformID = -1; + this._textureID = -1; + + this._transformTrimmedID = -1; + this._textureTrimmedID = -1; + + // Batchable stuff.. + // TODO could make this a mixin? + this.indices = indices; + this.size = 4; + this.start = 0; + + /** + * Plugin that is responsible for rendering this element. + * Allows to customize the rendering process without overriding '_render' & '_renderCanvas' methods. + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = true; + + /** + * Internal roundPixels field + * + * @member {boolean} + * @private + */ + this._roundPixels = settings.ROUND_PIXELS; + } + + if ( Container ) Sprite.__proto__ = Container; + Sprite.prototype = Object.create( Container && Container.prototype ); + Sprite.prototype.constructor = Sprite; + + var prototypeAccessors = { roundPixels: { configurable: true },width: { configurable: true },height: { configurable: true },anchor: { configurable: true },tint: { configurable: true },texture: { configurable: true } }; + + /** + * When the texture is updated, this event will fire to update the scale and frame + * + * @private + */ + Sprite.prototype._onTextureUpdate = function _onTextureUpdate () + { + this._textureID = -1; + this._textureTrimmedID = -1; + this._cachedTint = 0xFFFFFF; + + // so if _width is 0 then width was not set.. + if (this._width) + { + this.scale.x = sign$1(this.scale.x) * this._width / this._texture.orig.width; + } + + if (this._height) + { + this.scale.y = sign$1(this.scale.y) * this._height / this._texture.orig.height; + } + }; + + /** + * Called when the anchor position updates. + * + * @private + */ + Sprite.prototype._onAnchorUpdate = function _onAnchorUpdate () + { + this._transformID = -1; + this._transformTrimmedID = -1; + }; + + /** + * calculates worldTransform * vertices, store it in vertexData + */ + Sprite.prototype.calculateVertices = function calculateVertices () + { + var texture = this._texture; + + if (this._transformID === this.transform._worldID && this._textureID === texture._updateID) + { + return; + } + + // update texture UV here, because base texture can be changed without calling `_onTextureUpdate` + if (this._textureID !== texture._updateID) + { + this.uvs = this._texture._uvs.uvsFloat32; + } + + this._transformID = this.transform._worldID; + this._textureID = texture._updateID; + + // set the vertex data + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + var vertexData = this.vertexData; + var trim = texture.trim; + var orig = texture.orig; + var anchor = this._anchor; + + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the extra + // space before transforming the sprite coords. + w1 = trim.x - (anchor._x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (anchor._y * orig.height); + h0 = h1 + trim.height; + } + else + { + w1 = -anchor._x * orig.width; + w0 = w1 + orig.width; + + h1 = -anchor._y * orig.height; + h0 = h1 + orig.height; + } + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + + if (this._roundPixels) + { + for (var i = 0; i < 8; i++) + { + vertexData[i] = Math.round(vertexData[i]); + } + } + }; + + /** + * calculates worldTransform * vertices for a non texture with a trim. store it in vertexTrimmedData + * This is used to ensure that the true width and height of a trimmed texture is respected + */ + Sprite.prototype.calculateTrimmedVertices = function calculateTrimmedVertices () + { + if (!this.vertexTrimmedData) + { + this.vertexTrimmedData = new Float32Array(8); + } + else if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID) + { + return; + } + + this._transformTrimmedID = this.transform._worldID; + this._textureTrimmedID = this._texture._updateID; + + // lets do some special trim code! + var texture = this._texture; + var vertexData = this.vertexTrimmedData; + var orig = texture.orig; + var anchor = this._anchor; + + // lets calculate the new untrimmed bounds.. + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var w1 = -anchor._x * orig.width; + var w0 = w1 + orig.width; + + var h1 = -anchor._y * orig.height; + var h0 = h1 + orig.height; + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + }; + + /** + * + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The webgl renderer to use. + */ + Sprite.prototype._render = function _render (renderer) + { + this.calculateVertices(); + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + renderer.plugins[this.pluginName].render(this); + }; + + /** + * Updates the bounds of the sprite. + * + * @protected + */ + Sprite.prototype._calculateBounds = function _calculateBounds () + { + var trim = this._texture.trim; + var orig = this._texture.orig; + + // First lets check to see if the current texture has a trim.. + if (!trim || (trim.width === orig.width && trim.height === orig.height)) + { + // no trim! lets use the usual calculations.. + this.calculateVertices(); + this._bounds.addQuad(this.vertexData); + } + else + { + // lets calculate a special trimmed bounds... + this.calculateTrimmedVertices(); + this._bounds.addQuad(this.vertexTrimmedData); + } + }; + + /** + * Gets the local bounds of the sprite object. + * + * @param {PIXI.Rectangle} [rect] - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Sprite.prototype.getLocalBounds = function getLocalBounds (rect) + { + // we can do a fast local bounds if the sprite has no children! + if (this.children.length === 0) + { + this._bounds.minX = this._texture.orig.width * -this._anchor._x; + this._bounds.minY = this._texture.orig.height * -this._anchor._y; + this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x); + this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y); + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + return this._bounds.getRectangle(rect); + } + + return Container.prototype.getLocalBounds.call(this, rect); + }; + + /** + * Tests if a point is inside this sprite + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Sprite.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, tempPoint); + + var width = this._texture.orig.width; + var height = this._texture.orig.height; + var x1 = -width * this.anchor.x; + var y1 = 0; + + if (tempPoint.x >= x1 && tempPoint.x < x1 + width) + { + y1 = -height * this.anchor.y; + + if (tempPoint.y >= y1 && tempPoint.y < y1 + height) + { + return true; + } + } + + return false; + }; + + /** + * Destroys this sprite and optionally its texture and children + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well + */ + Sprite.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this._texture.off('update', this._onTextureUpdate, this); + + this._anchor = null; + + var destroyTexture = typeof options === 'boolean' ? options : options && options.texture; + + if (destroyTexture) + { + var destroyBaseTexture = typeof options === 'boolean' ? options : options && options.baseTexture; + + this._texture.destroy(!!destroyBaseTexture); + } + + this._texture = null; + this.shader = null; + }; + + // some helper functions.. + + /** + * Helper function that creates a new sprite based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Sprite} The newly created sprite + */ + Sprite.from = function from (source, options) + { + var texture = (source instanceof Texture) + ? source + : Texture.from(source, options); + + return new Sprite(texture); + }; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + prototypeAccessors.roundPixels.set = function (value) + { + if (this._roundPixels !== value) + { + this._transformID = -1; + } + this._roundPixels = value; + }; + + prototypeAccessors.roundPixels.get = function () + { + return this._roundPixels; + }; + + /** + * The width of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * The anchor sets the origin point of the text. The default value is taken from the {@link PIXI.Texture|Texture} + * and passed to the constructor. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * If you pass only single parameter, it will set both x and y to the same value as shown in the example below. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.anchor.set(0.5); // This will set the origin to center. (0.5) is same as (0.5, 0.5). + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + this._anchor.copyFrom(value); + }; + + /** + * The tint applied to the sprite. This is a hex value. + * A value of 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._tint = value; + this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16); + }; + + /** + * The texture that the sprite is using + * + * @member {PIXI.Texture} + */ + prototypeAccessors.texture.get = function () + { + return this._texture; + }; + + prototypeAccessors.texture.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._texture === value) + { + return; + } + + this._texture = value || Texture.EMPTY; + this._cachedTint = 0xFFFFFF; + + this._textureID = -1; + this._textureTrimmedID = -1; + + if (value) + { + // wait for the texture to load + if (value.baseTexture.valid) + { + this._onTextureUpdate(); + } + else + { + value.once('update', this._onTextureUpdate, this); + } + } + }; + + Object.defineProperties( Sprite.prototype, prototypeAccessors ); + + return Sprite; +}(Container)); + +/*! + * @pixi/text - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Constants that define the type of gradient on text. + * + * @static + * @constant + * @name TEXT_GRADIENT + * @memberof PIXI + * @type {object} + * @property {number} LINEAR_VERTICAL Vertical gradient + * @property {number} LINEAR_HORIZONTAL Linear gradient + */ +var TEXT_GRADIENT = { + LINEAR_VERTICAL: 0, + LINEAR_HORIZONTAL: 1, +}; + +// disabling eslint for now, going to rewrite this in v5 + +var defaultStyle = { + align: 'left', + breakWords: false, + dropShadow: false, + dropShadowAlpha: 1, + dropShadowAngle: Math.PI / 6, + dropShadowBlur: 0, + dropShadowColor: 'black', + dropShadowDistance: 5, + fill: 'black', + fillGradientType: TEXT_GRADIENT.LINEAR_VERTICAL, + fillGradientStops: [], + fontFamily: 'Arial', + fontSize: 26, + fontStyle: 'normal', + fontVariant: 'normal', + fontWeight: 'normal', + letterSpacing: 0, + lineHeight: 0, + lineJoin: 'miter', + miterLimit: 10, + padding: 0, + stroke: 'black', + strokeThickness: 0, + textBaseline: 'alphabetic', + trim: false, + whiteSpace: 'pre', + wordWrap: false, + wordWrapWidth: 100, + leading: 0, +}; + +var genericFontFamilies = [ + 'serif', + 'sans-serif', + 'monospace', + 'cursive', + 'fantasy', + 'system-ui' ]; + +/** + * A TextStyle Object contains information to decorate a Text objects. + * + * An instance can be shared between multiple Text objects; then changing the style will update all text objects using it. + * + * A tool can be used to generate a text style [here](https://pixijs.io/pixi-text-style). + * + * @class + * @memberof PIXI + */ +var TextStyle = function TextStyle(style) +{ + this.styleID = 0; + + this.reset(); + + deepCopyProperties(this, style, style); +}; + +var prototypeAccessors$7 = { align: { configurable: true },breakWords: { configurable: true },dropShadow: { configurable: true },dropShadowAlpha: { configurable: true },dropShadowAngle: { configurable: true },dropShadowBlur: { configurable: true },dropShadowColor: { configurable: true },dropShadowDistance: { configurable: true },fill: { configurable: true },fillGradientType: { configurable: true },fillGradientStops: { configurable: true },fontFamily: { configurable: true },fontSize: { configurable: true },fontStyle: { configurable: true },fontVariant: { configurable: true },fontWeight: { configurable: true },letterSpacing: { configurable: true },lineHeight: { configurable: true },leading: { configurable: true },lineJoin: { configurable: true },miterLimit: { configurable: true },padding: { configurable: true },stroke: { configurable: true },strokeThickness: { configurable: true },textBaseline: { configurable: true },trim: { configurable: true },whiteSpace: { configurable: true },wordWrap: { configurable: true },wordWrapWidth: { configurable: true } }; + +/** + * Creates a new TextStyle object with the same values as this one. + * Note that the only the properties of the object are cloned. + * + * @return {PIXI.TextStyle} New cloned TextStyle object + */ +TextStyle.prototype.clone = function clone () +{ + var clonedProperties = {}; + + deepCopyProperties(clonedProperties, this, defaultStyle); + + return new TextStyle(clonedProperties); +}; + +/** + * Resets all properties to the defaults specified in TextStyle.prototype._default + */ +TextStyle.prototype.reset = function reset () +{ + deepCopyProperties(this, defaultStyle, defaultStyle); +}; + +/** + * Alignment for multiline text ('left', 'center' or 'right'), does not affect single line text + * + * @member {string} + */ +prototypeAccessors$7.align.get = function () +{ + return this._align; +}; +prototypeAccessors$7.align.set = function (align) // eslint-disable-line require-jsdoc +{ + if (this._align !== align) + { + this._align = align; + this.styleID++; + } +}; + +/** + * Indicates if lines can be wrapped within words, it needs wordWrap to be set to true + * + * @member {boolean} + */ +prototypeAccessors$7.breakWords.get = function () +{ + return this._breakWords; +}; +prototypeAccessors$7.breakWords.set = function (breakWords) // eslint-disable-line require-jsdoc +{ + if (this._breakWords !== breakWords) + { + this._breakWords = breakWords; + this.styleID++; + } +}; + +/** + * Set a drop shadow for the text + * + * @member {boolean} + */ +prototypeAccessors$7.dropShadow.get = function () +{ + return this._dropShadow; +}; +prototypeAccessors$7.dropShadow.set = function (dropShadow) // eslint-disable-line require-jsdoc +{ + if (this._dropShadow !== dropShadow) + { + this._dropShadow = dropShadow; + this.styleID++; + } +}; + +/** + * Set alpha for the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAlpha.get = function () +{ + return this._dropShadowAlpha; +}; +prototypeAccessors$7.dropShadowAlpha.set = function (dropShadowAlpha) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAlpha !== dropShadowAlpha) + { + this._dropShadowAlpha = dropShadowAlpha; + this.styleID++; + } +}; + +/** + * Set a angle of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAngle.get = function () +{ + return this._dropShadowAngle; +}; +prototypeAccessors$7.dropShadowAngle.set = function (dropShadowAngle) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAngle !== dropShadowAngle) + { + this._dropShadowAngle = dropShadowAngle; + this.styleID++; + } +}; + +/** + * Set a shadow blur radius + * + * @member {number} + */ +prototypeAccessors$7.dropShadowBlur.get = function () +{ + return this._dropShadowBlur; +}; +prototypeAccessors$7.dropShadowBlur.set = function (dropShadowBlur) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowBlur !== dropShadowBlur) + { + this._dropShadowBlur = dropShadowBlur; + this.styleID++; + } +}; + +/** + * A fill style to be used on the dropshadow e.g 'red', '#00FF00' + * + * @member {string|number} + */ +prototypeAccessors$7.dropShadowColor.get = function () +{ + return this._dropShadowColor; +}; +prototypeAccessors$7.dropShadowColor.set = function (dropShadowColor) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(dropShadowColor); + if (this._dropShadowColor !== outputColor) + { + this._dropShadowColor = outputColor; + this.styleID++; + } +}; + +/** + * Set a distance of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowDistance.get = function () +{ + return this._dropShadowDistance; +}; +prototypeAccessors$7.dropShadowDistance.set = function (dropShadowDistance) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowDistance !== dropShadowDistance) + { + this._dropShadowDistance = dropShadowDistance; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text e.g 'red', '#00FF00'. + * Can be an array to create a gradient eg ['#000000','#FFFFFF'] + * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle|MDN} + * + * @member {string|string[]|number|number[]|CanvasGradient|CanvasPattern} + */ +prototypeAccessors$7.fill.get = function () +{ + return this._fill; +}; +prototypeAccessors$7.fill.set = function (fill) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(fill); + if (this._fill !== outputColor) + { + this._fill = outputColor; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this can change the type/direction of the gradient. + * See {@link PIXI.TEXT_GRADIENT} + * + * @member {number} + */ +prototypeAccessors$7.fillGradientType.get = function () +{ + return this._fillGradientType; +}; +prototypeAccessors$7.fillGradientType.set = function (fillGradientType) // eslint-disable-line require-jsdoc +{ + if (this._fillGradientType !== fillGradientType) + { + this._fillGradientType = fillGradientType; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this array can set the stop points + * (numbers between 0 and 1) for the color, overriding the default behaviour of evenly spacing them. + * + * @member {number[]} + */ +prototypeAccessors$7.fillGradientStops.get = function () +{ + return this._fillGradientStops; +}; +prototypeAccessors$7.fillGradientStops.set = function (fillGradientStops) // eslint-disable-line require-jsdoc +{ + if (!areArraysEqual(this._fillGradientStops,fillGradientStops)) + { + this._fillGradientStops = fillGradientStops; + this.styleID++; + } +}; + +/** + * The font family + * + * @member {string|string[]} + */ +prototypeAccessors$7.fontFamily.get = function () +{ + return this._fontFamily; +}; +prototypeAccessors$7.fontFamily.set = function (fontFamily) // eslint-disable-line require-jsdoc +{ + if (this.fontFamily !== fontFamily) + { + this._fontFamily = fontFamily; + this.styleID++; + } +}; + +/** + * The font size + * (as a number it converts to px, but as a string, equivalents are '26px','20pt','160%' or '1.6em') + * + * @member {number|string} + */ +prototypeAccessors$7.fontSize.get = function () +{ + return this._fontSize; +}; +prototypeAccessors$7.fontSize.set = function (fontSize) // eslint-disable-line require-jsdoc +{ + if (this._fontSize !== fontSize) + { + this._fontSize = fontSize; + this.styleID++; + } +}; + +/** + * The font style + * ('normal', 'italic' or 'oblique') + * + * @member {string} + */ +prototypeAccessors$7.fontStyle.get = function () +{ + return this._fontStyle; +}; +prototypeAccessors$7.fontStyle.set = function (fontStyle) // eslint-disable-line require-jsdoc +{ + if (this._fontStyle !== fontStyle) + { + this._fontStyle = fontStyle; + this.styleID++; + } +}; + +/** + * The font variant + * ('normal' or 'small-caps') + * + * @member {string} + */ +prototypeAccessors$7.fontVariant.get = function () +{ + return this._fontVariant; +}; +prototypeAccessors$7.fontVariant.set = function (fontVariant) // eslint-disable-line require-jsdoc +{ + if (this._fontVariant !== fontVariant) + { + this._fontVariant = fontVariant; + this.styleID++; + } +}; + +/** + * The font weight + * ('normal', 'bold', 'bolder', 'lighter' and '100', '200', '300', '400', '500', '600', '700', 800' or '900') + * + * @member {string} + */ +prototypeAccessors$7.fontWeight.get = function () +{ + return this._fontWeight; +}; +prototypeAccessors$7.fontWeight.set = function (fontWeight) // eslint-disable-line require-jsdoc +{ + if (this._fontWeight !== fontWeight) + { + this._fontWeight = fontWeight; + this.styleID++; + } +}; + +/** + * The amount of spacing between letters, default is 0 + * + * @member {number} + */ +prototypeAccessors$7.letterSpacing.get = function () +{ + return this._letterSpacing; +}; +prototypeAccessors$7.letterSpacing.set = function (letterSpacing) // eslint-disable-line require-jsdoc +{ + if (this._letterSpacing !== letterSpacing) + { + this._letterSpacing = letterSpacing; + this.styleID++; + } +}; + +/** + * The line height, a number that represents the vertical space that a letter uses + * + * @member {number} + */ +prototypeAccessors$7.lineHeight.get = function () +{ + return this._lineHeight; +}; +prototypeAccessors$7.lineHeight.set = function (lineHeight) // eslint-disable-line require-jsdoc +{ + if (this._lineHeight !== lineHeight) + { + this._lineHeight = lineHeight; + this.styleID++; + } +}; + +/** + * The space between lines + * + * @member {number} + */ +prototypeAccessors$7.leading.get = function () +{ + return this._leading; +}; +prototypeAccessors$7.leading.set = function (leading) // eslint-disable-line require-jsdoc +{ + if (this._leading !== leading) + { + this._leading = leading; + this.styleID++; + } +}; + +/** + * The lineJoin property sets the type of corner created, it can resolve spiked text issues. + * Default is 'miter' (creates a sharp corner). + * + * @member {string} + */ +prototypeAccessors$7.lineJoin.get = function () +{ + return this._lineJoin; +}; +prototypeAccessors$7.lineJoin.set = function (lineJoin) // eslint-disable-line require-jsdoc +{ + if (this._lineJoin !== lineJoin) + { + this._lineJoin = lineJoin; + this.styleID++; + } +}; + +/** + * The miter limit to use when using the 'miter' lineJoin mode + * This can reduce or increase the spikiness of rendered text. + * + * @member {number} + */ +prototypeAccessors$7.miterLimit.get = function () +{ + return this._miterLimit; +}; +prototypeAccessors$7.miterLimit.set = function (miterLimit) // eslint-disable-line require-jsdoc +{ + if (this._miterLimit !== miterLimit) + { + this._miterLimit = miterLimit; + this.styleID++; + } +}; + +/** + * Occasionally some fonts are cropped. Adding some padding will prevent this from happening + * by adding padding to all sides of the text. + * + * @member {number} + */ +prototypeAccessors$7.padding.get = function () +{ + return this._padding; +}; +prototypeAccessors$7.padding.set = function (padding) // eslint-disable-line require-jsdoc +{ + if (this._padding !== padding) + { + this._padding = padding; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text stroke + * e.g 'blue', '#FCFF00' + * + * @member {string|number} + */ +prototypeAccessors$7.stroke.get = function () +{ + return this._stroke; +}; +prototypeAccessors$7.stroke.set = function (stroke) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(stroke); + if (this._stroke !== outputColor) + { + this._stroke = outputColor; + this.styleID++; + } +}; + +/** + * A number that represents the thickness of the stroke. + * Default is 0 (no stroke) + * + * @member {number} + */ +prototypeAccessors$7.strokeThickness.get = function () +{ + return this._strokeThickness; +}; +prototypeAccessors$7.strokeThickness.set = function (strokeThickness) // eslint-disable-line require-jsdoc +{ + if (this._strokeThickness !== strokeThickness) + { + this._strokeThickness = strokeThickness; + this.styleID++; + } +}; + +/** + * The baseline of the text that is rendered. + * + * @member {string} + */ +prototypeAccessors$7.textBaseline.get = function () +{ + return this._textBaseline; +}; +prototypeAccessors$7.textBaseline.set = function (textBaseline) // eslint-disable-line require-jsdoc +{ + if (this._textBaseline !== textBaseline) + { + this._textBaseline = textBaseline; + this.styleID++; + } +}; + +/** + * Trim transparent borders + * + * @member {boolean} + */ +prototypeAccessors$7.trim.get = function () +{ + return this._trim; +}; +prototypeAccessors$7.trim.set = function (trim) // eslint-disable-line require-jsdoc +{ + if (this._trim !== trim) + { + this._trim = trim; + this.styleID++; + } +}; + +/** + * How newlines and spaces should be handled. + * Default is 'pre' (preserve, preserve). + * + * value | New lines | Spaces + * --- | --- | --- + * 'normal' | Collapse | Collapse + * 'pre' | Preserve | Preserve + * 'pre-line' | Preserve | Collapse + * + * @member {string} + */ +prototypeAccessors$7.whiteSpace.get = function () +{ + return this._whiteSpace; +}; +prototypeAccessors$7.whiteSpace.set = function (whiteSpace) // eslint-disable-line require-jsdoc +{ + if (this._whiteSpace !== whiteSpace) + { + this._whiteSpace = whiteSpace; + this.styleID++; + } +}; + +/** + * Indicates if word wrap should be used + * + * @member {boolean} + */ +prototypeAccessors$7.wordWrap.get = function () +{ + return this._wordWrap; +}; +prototypeAccessors$7.wordWrap.set = function (wordWrap) // eslint-disable-line require-jsdoc +{ + if (this._wordWrap !== wordWrap) + { + this._wordWrap = wordWrap; + this.styleID++; + } +}; + +/** + * The width at which text will wrap, it needs wordWrap to be set to true + * + * @member {number} + */ +prototypeAccessors$7.wordWrapWidth.get = function () +{ + return this._wordWrapWidth; +}; +prototypeAccessors$7.wordWrapWidth.set = function (wordWrapWidth) // eslint-disable-line require-jsdoc +{ + if (this._wordWrapWidth !== wordWrapWidth) + { + this._wordWrapWidth = wordWrapWidth; + this.styleID++; + } +}; + +/** + * Generates a font style string to use for `TextMetrics.measureFont()`. + * + * @return {string} Font style string, for passing to `TextMetrics.measureFont()` + */ +TextStyle.prototype.toFontString = function toFontString () +{ + // build canvas api font setting from individual components. Convert a numeric this.fontSize to px + var fontSizeString = (typeof this.fontSize === 'number') ? ((this.fontSize) + "px") : this.fontSize; + + // Clean-up fontFamily property by quoting each font name + // this will support font names with spaces + var fontFamilies = this.fontFamily; + + if (!Array.isArray(this.fontFamily)) + { + fontFamilies = this.fontFamily.split(','); + } + + for (var i = fontFamilies.length - 1; i >= 0; i--) + { + // Trim any extra white-space + var fontFamily = fontFamilies[i].trim(); + + // Check if font already contains strings + if (!(/([\"\'])[^\'\"]+\1/).test(fontFamily) && genericFontFamilies.indexOf(fontFamily) < 0) + { + fontFamily = "\"" + fontFamily + "\""; + } + fontFamilies[i] = fontFamily; + } + + return ((this.fontStyle) + " " + (this.fontVariant) + " " + (this.fontWeight) + " " + fontSizeString + " " + (fontFamilies.join(','))); +}; + +Object.defineProperties( TextStyle.prototype, prototypeAccessors$7 ); + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getSingleColor(color) +{ + if (typeof color === 'number') + { + return hex2string(color); + } + else if ( typeof color === 'string' ) + { + if ( color.indexOf('0x') === 0 ) + { + color = color.replace('0x', '#'); + } + } + + return color; +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getColor(color) +{ + if (!Array.isArray(color)) + { + return getSingleColor(color); + } + else + { + for (var i = 0; i < color.length; ++i) + { + color[i] = getSingleColor(color[i]); + } + + return color; + } +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {Array} array1 First array to compare + * @param {Array} array2 Second array to compare + * @return {boolean} Do the arrays contain the same values in the same order + */ +function areArraysEqual(array1, array2) +{ + if (!Array.isArray(array1) || !Array.isArray(array2)) + { + return false; + } + + if (array1.length !== array2.length) + { + return false; + } + + for (var i = 0; i < array1.length; ++i) + { + if (array1[i] !== array2[i]) + { + return false; + } + } + + return true; +} + +/** + * Utility function to ensure that object properties are copied by value, and not by reference + * @private + * @param {Object} target Target object to copy properties into + * @param {Object} source Source object for the properties to copy + * @param {string} propertyObj Object containing properties names we want to loop over + */ +function deepCopyProperties(target, source, propertyObj) { + for (var prop in propertyObj) { + if (Array.isArray(source[prop])) { + target[prop] = source[prop].slice(); + } else { + target[prop] = source[prop]; + } + } +} + +/** + * The TextMetrics object represents the measurement of a block of text with a specified style. + * + * ```js + * let style = new PIXI.TextStyle({fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}) + * let textMetrics = PIXI.TextMetrics.measureText('Your text', style) + * ``` + * + * @class + * @memberof PIXI + */ +var TextMetrics = function TextMetrics(text, style, width, height, lines, lineWidths, lineHeight, maxLineWidth, fontProperties) +{ + /** + * The text that was measured + * + * @member {string} + */ + this.text = text; + + /** + * The style that was measured + * + * @member {PIXI.TextStyle} + */ + this.style = style; + + /** + * The measured width of the text + * + * @member {number} + */ + this.width = width; + + /** + * The measured height of the text + * + * @member {number} + */ + this.height = height; + + /** + * An array of lines of the text broken by new lines and wrapping is specified in style + * + * @member {string[]} + */ + this.lines = lines; + + /** + * An array of the line widths for each line matched to `lines` + * + * @member {number[]} + */ + this.lineWidths = lineWidths; + + /** + * The measured line height for this style + * + * @member {number} + */ + this.lineHeight = lineHeight; + + /** + * The maximum line width for all measured lines + * + * @member {number} + */ + this.maxLineWidth = maxLineWidth; + + /** + * The font properties object from TextMetrics.measureFont + * + * @member {PIXI.IFontMetrics} + */ + this.fontProperties = fontProperties; +}; + +/** + * Measures the supplied string of text and returns a Rectangle. + * + * @param {string} text - the text to measure. + * @param {PIXI.TextStyle} style - the text style to use for measuring + * @param {boolean} [wordWrap] - optional override for if word-wrap should be applied to the text. + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {PIXI.TextMetrics} measured width and height of the text. + */ +TextMetrics.measureText = function measureText (text, style, wordWrap, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + wordWrap = (wordWrap === undefined || wordWrap === null) ? style.wordWrap : wordWrap; + var font = style.toFontString(); + var fontProperties = TextMetrics.measureFont(font); + + // fallback in case UA disallow canvas data extraction + // (toDataURI, getImageData functions) + if (fontProperties.fontSize === 0) + { + fontProperties.fontSize = style.fontSize; + fontProperties.ascent = style.fontSize; + } + + var context = canvas.getContext('2d'); + + context.font = font; + + var outputText = wordWrap ? TextMetrics.wordWrap(text, style, canvas) : text; + var lines = outputText.split(/(?:\r\n|\r|\n)/); + var lineWidths = new Array(lines.length); + var maxLineWidth = 0; + + for (var i = 0; i < lines.length; i++) + { + var lineWidth = context.measureText(lines[i]).width + ((lines[i].length - 1) * style.letterSpacing); + + lineWidths[i] = lineWidth; + maxLineWidth = Math.max(maxLineWidth, lineWidth); + } + var width = maxLineWidth + style.strokeThickness; + + if (style.dropShadow) + { + width += style.dropShadowDistance; + } + + var lineHeight = style.lineHeight || fontProperties.fontSize + style.strokeThickness; + var height = Math.max(lineHeight, fontProperties.fontSize + style.strokeThickness) + + ((lines.length - 1) * (lineHeight + style.leading)); + + if (style.dropShadow) + { + height += style.dropShadowDistance; + } + + return new TextMetrics( + text, + style, + width, + height, + lines, + lineWidths, + lineHeight + style.leading, + maxLineWidth, + fontProperties + ); +}; + +/** + * Applies newlines to a string to have it optimally fit into the horizontal + * bounds set by the Text object's wordWrapWidth property. + * + * @private + * @param {string} text - String to apply word wrapping to + * @param {PIXI.TextStyle} style - the style to use when wrapping + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {string} New string with new lines applied where required + */ +TextMetrics.wordWrap = function wordWrap (text, style, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + var context = canvas.getContext('2d'); + + var width = 0; + var line = ''; + var lines = ''; + + var cache = {}; + var letterSpacing = style.letterSpacing; + var whiteSpace = style.whiteSpace; + + // How to handle whitespaces + var collapseSpaces = TextMetrics.collapseSpaces(whiteSpace); + var collapseNewlines = TextMetrics.collapseNewlines(whiteSpace); + + // whether or not spaces may be added to the beginning of lines + var canPrependSpaces = !collapseSpaces; + + // There is letterSpacing after every char except the last one + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_! + // so for convenience the above needs to be compared to width + 1 extra letterSpace + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!_ + // ________________________________________________ + // And then the final space is simply no appended to each line + var wordWrapWidth = style.wordWrapWidth + letterSpacing; + + // break text into words, spaces and newline chars + var tokens = TextMetrics.tokenize(text); + + for (var i = 0; i < tokens.length; i++) + { + // get the word, space or newlineChar + var token = tokens[i]; + + // if word is a new line + if (TextMetrics.isNewline(token)) + { + // keep the new line + if (!collapseNewlines) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = !collapseSpaces; + line = ''; + width = 0; + continue; + } + + // if we should collapse new lines + // we simply convert it into a space + token = ' '; + } + + // if we should collapse repeated whitespaces + if (collapseSpaces) + { + // check both this and the last tokens for spaces + var currIsBreakingSpace = TextMetrics.isBreakingSpace(token); + var lastIsBreakingSpace = TextMetrics.isBreakingSpace(line[line.length - 1]); + + if (currIsBreakingSpace && lastIsBreakingSpace) + { + continue; + } + } + + // get word width from cache if possible + var tokenWidth = TextMetrics.getFromCache(token, letterSpacing, cache, context); + + // word is longer than desired bounds + if (tokenWidth > wordWrapWidth) + { + // if we are not already at the beginning of a line + if (line !== '') + { + // start newlines for overflow words + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + // break large word over multiple lines + if (TextMetrics.canBreakWords(token, style.breakWords)) + { + // break word into characters + var characters = token.split(''); + + // loop the characters + for (var j = 0; j < characters.length; j++) + { + var char = characters[j]; + + var k = 1; + // we are not at the end of the token + + while (characters[j + k]) + { + var nextChar = characters[j + k]; + var lastChar = char[char.length - 1]; + + // should not split chars + if (!TextMetrics.canBreakChars(lastChar, nextChar, token, j, style.breakWords)) + { + // combine chars & move forward one + char += nextChar; + } + else + { + break; + } + + k++; + } + + j += char.length - 1; + + var characterWidth = TextMetrics.getFromCache(char, letterSpacing, cache, context); + + if (characterWidth + width > wordWrapWidth) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = false; + line = ''; + width = 0; + } + + line += char; + width += characterWidth; + } + } + + // run word out of the bounds + else + { + // if there are words in this line already + // finish that line and start a new one + if (line.length > 0) + { + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + var isLastToken = i === tokens.length - 1; + + // give it its own line if it's not the end + lines += TextMetrics.addLine(token, !isLastToken); + canPrependSpaces = false; + line = ''; + width = 0; + } + } + + // word could fit + else + { + // word won't fit because of existing words + // start a new line + if (tokenWidth + width > wordWrapWidth) + { + // if its a space we don't want it + canPrependSpaces = false; + + // add a new line + lines += TextMetrics.addLine(line); + + // start a new line + line = ''; + width = 0; + } + + // don't add spaces to the beginning of lines + if (line.length > 0 || !TextMetrics.isBreakingSpace(token) || canPrependSpaces) + { + // add the word to the current line + line += token; + + // update width counter + width += tokenWidth; + } + } + } + + lines += TextMetrics.addLine(line, false); + + return lines; +}; + +/** + * Convienience function for logging each line added during the wordWrap + * method + * + * @private + * @param {string} line - The line of text to add + * @param {boolean} newLine - Add new line character to end + * @return {string} A formatted line + */ +TextMetrics.addLine = function addLine (line, newLine) +{ + if ( newLine === void 0 ) newLine = true; + + line = TextMetrics.trimRight(line); + + line = (newLine) ? (line + "\n") : line; + + return line; +}; + +/** + * Gets & sets the widths of calculated characters in a cache object + * + * @private + * @param {string} key The key + * @param {number} letterSpacing The letter spacing + * @param {object} cache The cache + * @param {CanvasRenderingContext2D} context The canvas context + * @return {number} The from cache. + */ +TextMetrics.getFromCache = function getFromCache (key, letterSpacing, cache, context) +{ + var width = cache[key]; + + if (width === undefined) + { + var spacing = ((key.length) * letterSpacing); + + width = context.measureText(key).width + spacing; + cache[key] = width; + } + + return width; +}; + +/** + * Determines whether we should collapse breaking spaces + * + * @private + * @param {string} whiteSpace The TextStyle property whiteSpace + * @return {boolean} should collapse + */ +TextMetrics.collapseSpaces = function collapseSpaces (whiteSpace) +{ + return (whiteSpace === 'normal' || whiteSpace === 'pre-line'); +}; + +/** + * Determines whether we should collapse newLine chars + * + * @private + * @param {string} whiteSpace The white space + * @return {boolean} should collapse + */ +TextMetrics.collapseNewlines = function collapseNewlines (whiteSpace) +{ + return (whiteSpace === 'normal'); +}; + +/** + * trims breaking whitespaces from string + * + * @private + * @param {string} text The text + * @return {string} trimmed string + */ +TextMetrics.trimRight = function trimRight (text) +{ + if (typeof text !== 'string') + { + return ''; + } + + for (var i = text.length - 1; i >= 0; i--) + { + var char = text[i]; + + if (!TextMetrics.isBreakingSpace(char)) + { + break; + } + + text = text.slice(0, -1); + } + + return text; +}; + +/** + * Determines if char is a newline. + * + * @private + * @param {string} char The character + * @return {boolean} True if newline, False otherwise. + */ +TextMetrics.isNewline = function isNewline (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._newlines.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Determines if char is a breaking whitespace. + * + * @private + * @param {string} char The character + * @return {boolean} True if whitespace, False otherwise. + */ +TextMetrics.isBreakingSpace = function isBreakingSpace (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._breakingSpaces.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Splits a string into words, breaking-spaces and newLine characters + * + * @private + * @param {string} text The text + * @return {string[]} A tokenized array + */ +TextMetrics.tokenize = function tokenize (text) +{ + var tokens = []; + var token = ''; + + if (typeof text !== 'string') + { + return tokens; + } + + for (var i = 0; i < text.length; i++) + { + var char = text[i]; + + if (TextMetrics.isBreakingSpace(char) || TextMetrics.isNewline(char)) + { + if (token !== '') + { + tokens.push(token); + token = ''; + } + + tokens.push(char); + + continue; + } + + token += char; + } + + if (token !== '') + { + tokens.push(token); + } + + return tokens; +}; + +/** + * This method exists to be easily overridden + * It allows one to customise which words should break + * Examples are if the token is CJK or numbers. + * It must return a boolean. + * + * @private + * @param {string} token The token + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakWords = function canBreakWords (token, breakWords) +{ + return breakWords; +}; + +/** + * This method exists to be easily overridden + * It allows one to determine whether a pair of characters + * should be broken by newlines + * For example certain characters in CJK langs or numbers. + * It must return a boolean. + * + * @private + * @param {string} char The character + * @param {string} nextChar The next character + * @param {string} token The token/word the characters are from + * @param {number} index The index in the token of the char + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakChars = function canBreakChars (char, nextChar, token, index, breakWords) // eslint-disable-line no-unused-vars +{ + return true; +}; + +/** + * Calculates the ascent, descent and fontSize of a given font-style + * + * @static + * @param {string} font - String representing the style of the font + * @return {PIXI.IFontMetrics} Font properties object + */ +TextMetrics.measureFont = function measureFont (font) +{ + // as this method is used for preparing assets, don't recalculate things if we don't need to + if (TextMetrics._fonts[font]) + { + return TextMetrics._fonts[font]; + } + + var properties = {}; + + var canvas = TextMetrics._canvas; + var context = TextMetrics._context; + + context.font = font; + + var metricsString = TextMetrics.METRICS_STRING + TextMetrics.BASELINE_SYMBOL; + var width = Math.ceil(context.measureText(metricsString).width); + var baseline = Math.ceil(context.measureText(TextMetrics.BASELINE_SYMBOL).width); + var height = 2 * baseline; + + baseline = baseline * TextMetrics.BASELINE_MULTIPLIER | 0; + + canvas.width = width; + canvas.height = height; + + context.fillStyle = '#f00'; + context.fillRect(0, 0, width, height); + + context.font = font; + + context.textBaseline = 'alphabetic'; + context.fillStyle = '#000'; + context.fillText(metricsString, 0, baseline); + + var imagedata = context.getImageData(0, 0, width, height).data; + var pixels = imagedata.length; + var line = width * 4; + + var i = 0; + var idx = 0; + var stop = false; + + // ascent. scan from top to bottom until we find a non red pixel + for (i = 0; i < baseline; ++i) + { + for (var j = 0; j < line; j += 4) + { + if (imagedata[idx + j] !== 255) + { + stop = true; + break; + } + } + if (!stop) + { + idx += line; + } + else + { + break; + } + } + + properties.ascent = baseline - i; + + idx = pixels - line; + stop = false; + + // descent. scan from bottom to top until we find a non red pixel + for (i = height; i > baseline; --i) + { + for (var j$1 = 0; j$1 < line; j$1 += 4) + { + if (imagedata[idx + j$1] !== 255) + { + stop = true; + break; + } + } + + if (!stop) + { + idx -= line; + } + else + { + break; + } + } + + properties.descent = i - baseline; + properties.fontSize = properties.ascent + properties.descent; + + TextMetrics._fonts[font] = properties; + + return properties; +}; + +/** + * Clear font metrics in metrics cache. + * + * @static + * @param {string} [font] - font name. If font name not set then clear cache for all fonts. + */ +TextMetrics.clearMetrics = function clearMetrics (font) +{ + if ( font === void 0 ) font = ''; + + if (font) + { + delete TextMetrics._fonts[font]; + } + else + { + TextMetrics._fonts = {}; + } +}; + +/** + * Internal return object for {@link PIXI.TextMetrics.measureFont `TextMetrics.measureFont`}. + * + * @typedef {object} FontMetrics + * @property {number} ascent - The ascent distance + * @property {number} descent - The descent distance + * @property {number} fontSize - Font size from ascent to descent + * @memberof PIXI.TextMetrics + * @private + */ + +var canvas = (function () { + try + { + // OffscreenCanvas2D measureText can be up to 40% faster. + var c = new OffscreenCanvas(0, 0); + + return c.getContext('2d') ? c : document.createElement('canvas'); + } + catch (ex) + { + return document.createElement('canvas'); + } +})(); + +canvas.width = canvas.height = 10; + +/** + * Cached canvas element for measuring text + * + * @memberof PIXI.TextMetrics + * @type {HTMLCanvasElement} + * @private + */ +TextMetrics._canvas = canvas; + +/** + * Cache for context to use. + * + * @memberof PIXI.TextMetrics + * @type {CanvasRenderingContext2D} + * @private + */ +TextMetrics._context = canvas.getContext('2d'); + +/** + * Cache of {@see PIXI.TextMetrics.FontMetrics} objects. + * + * @memberof PIXI.TextMetrics + * @type {Object} + * @private + */ +TextMetrics._fonts = {}; + +/** + * String used for calculate font metrics. + * These characters are all tall to help calculate the height required for text. + * + * @static + * @memberof PIXI.TextMetrics + * @name METRICS_STRING + * @type {string} + * @default |ÉqÅ + */ +TextMetrics.METRICS_STRING = '|ÉqÅ'; + +/** + * Baseline symbol for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_SYMBOL + * @type {string} + * @default M + */ +TextMetrics.BASELINE_SYMBOL = 'M'; + +/** + * Baseline multiplier for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_MULTIPLIER + * @type {number} + * @default 1.4 + */ +TextMetrics.BASELINE_MULTIPLIER = 1.4; + +/** + * Cache of new line chars. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._newlines = [ + 0x000A, // line feed + 0x000D ]; + +/** + * Cache of breaking spaces. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._breakingSpaces = [ + 0x0009, // character tabulation + 0x0020, // space + 0x2000, // en quad + 0x2001, // em quad + 0x2002, // en space + 0x2003, // em space + 0x2004, // three-per-em space + 0x2005, // four-per-em space + 0x2006, // six-per-em space + 0x2008, // punctuation space + 0x2009, // thin space + 0x200A, // hair space + 0x205F, // medium mathematical space + 0x3000 ]; + +/** + * A number, or a string containing a number. + * + * @memberof PIXI + * @typedef IFontMetrics + * @property {number} ascent - Font ascent + * @property {number} descent - Font descent + * @property {number} fontSize - Font size + */ + +/* eslint max-depth: [2, 8] */ + +var defaultDestroyOptions = { + texture: true, + children: false, + baseTexture: true, +}; + +/** + * A Text Object will create a line or multiple lines of text. + * + * The text is created using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API). + * + * The primary advantage of this class over BitmapText is that you have great control over the style of the next, + * which you can change at runtime. + * + * The primary disadvantages is that each piece of text has it's own texture, which can use more memory. + * When text changes, this texture has to be re-generated and re-uploaded to the GPU, taking up time. + * + * To split a line you can use '\n' in your text string, or, on the `style` object, + * change its `wordWrap` property to true and and give the `wordWrapWidth` property a value. + * + * A Text can be created directly from a string and a style object, + * which can be generated [here](https://pixijs.io/pixi-text-style). + * + * ```js + * let text = new PIXI.Text('This is a PixiJS text',{fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}); + * ``` + * + * @class + * @extends PIXI.Sprite + * @memberof PIXI + */ +var Text = /*@__PURE__*/(function (Sprite) { + function Text(text, style, canvas) + { + canvas = canvas || document.createElement('canvas'); + + canvas.width = 3; + canvas.height = 3; + + var texture = Texture.from(canvas); + + texture.orig = new Rectangle(); + texture.trim = new Rectangle(); + + Sprite.call(this, texture); + + /** + * The canvas element that everything is drawn to + * + * @member {HTMLCanvasElement} + */ + this.canvas = canvas; + + /** + * The canvas 2d context that everything is drawn with + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + this._resolution = settings.RESOLUTION; + this._autoResolution = true; + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = null; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._style = null; + /** + * Private listener to track style changes. + * + * @member {Function} + * @private + */ + this._styleListener = null; + + /** + * Private tracker for the current font. + * + * @member {string} + * @private + */ + this._font = ''; + + this.text = text; + this.style = style; + + this.localStyleID = -1; + } + + if ( Sprite ) Text.__proto__ = Sprite; + Text.prototype = Object.create( Sprite && Sprite.prototype ); + Text.prototype.constructor = Text; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },style: { configurable: true },text: { configurable: true },resolution: { configurable: true } }; + + /** + * Renders text and updates it when needed. + * + * @private + * @param {boolean} respectDirty - Whether to abort updating the text if the Text isn't dirty and the function is called. + */ + Text.prototype.updateText = function updateText (respectDirty) + { + var style = this._style; + + // check if style has changed.. + if (this.localStyleID !== style.styleID) + { + this.dirty = true; + this.localStyleID = style.styleID; + } + + if (!this.dirty && respectDirty) + { + return; + } + + this._font = this._style.toFontString(); + + var context = this.context; + var measured = TextMetrics.measureText(this._text || ' ', this._style, this._style.wordWrap, this.canvas); + var width = measured.width; + var height = measured.height; + var lines = measured.lines; + var lineHeight = measured.lineHeight; + var lineWidths = measured.lineWidths; + var maxLineWidth = measured.maxLineWidth; + var fontProperties = measured.fontProperties; + + this.canvas.width = Math.ceil((Math.max(1, width) + (style.padding * 2)) * this._resolution); + this.canvas.height = Math.ceil((Math.max(1, height) + (style.padding * 2)) * this._resolution); + + context.scale(this._resolution, this._resolution); + + context.clearRect(0, 0, this.canvas.width, this.canvas.height); + + context.font = this._font; + context.lineWidth = style.strokeThickness; + context.textBaseline = style.textBaseline; + context.lineJoin = style.lineJoin; + context.miterLimit = style.miterLimit; + + var linePositionX; + var linePositionY; + + // require 2 passes if a shadow; the first to draw the drop shadow, the second to draw the text + var passesCount = style.dropShadow ? 2 : 1; + + // For v4, we drew text at the colours of the drop shadow underneath the normal text. This gave the correct zIndex, + // but features such as alpha and shadowblur did not look right at all, since we were using actual text as a shadow. + // + // For v5.0.0, we moved over to just use the canvas API for drop shadows, which made them look much nicer and more + // visually please, but now because the stroke is drawn and then the fill, drop shadows would appear on both the fill + // and the stroke; and fill drop shadows would appear over the top of the stroke. + // + // For v5.1.1, the new route is to revert to v4 style of drawing text first to get the drop shadows underneath normal + // text, but instead drawing text in the correct location, we'll draw it off screen (-paddingY), and then adjust the + // drop shadow so only that appears on screen (+paddingY). Now we'll have the correct draw order of the shadow + // beneath the text, whilst also having the proper text shadow styling. + for (var i = 0; i < passesCount; ++i) + { + var isShadowPass = style.dropShadow && i === 0; + var dsOffsetText = isShadowPass ? height * 2 : 0; // we only want the drop shadow, so put text way off-screen + var dsOffsetShadow = dsOffsetText * this.resolution; + + if (isShadowPass) + { + // On Safari, text with gradient and drop shadows together do not position correctly + // if the scale of the canvas is not 1: https://bugs.webkit.org/show_bug.cgi?id=197689 + // Therefore we'll set the styles to be a plain black whilst generating this drop shadow + context.fillStyle = 'black'; + context.strokeStyle = 'black'; + + var dropShadowColor = style.dropShadowColor; + var rgb = hex2rgb(typeof dropShadowColor === 'number' ? dropShadowColor : string2hex(dropShadowColor)); + + context.shadowColor = "rgba(" + (rgb[0] * 255) + "," + (rgb[1] * 255) + "," + (rgb[2] * 255) + "," + (style.dropShadowAlpha) + ")"; + context.shadowBlur = style.dropShadowBlur; + context.shadowOffsetX = Math.cos(style.dropShadowAngle) * style.dropShadowDistance; + context.shadowOffsetY = (Math.sin(style.dropShadowAngle) * style.dropShadowDistance) + dsOffsetShadow; + } + else + { + // set canvas text styles + context.fillStyle = this._generateFillStyle(style, lines); + context.strokeStyle = style.stroke; + + context.shadowColor = 0; + context.shadowBlur = 0; + context.shadowOffsetX = 0; + context.shadowOffsetY = 0; + } + + // draw lines line by line + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + linePositionX = style.strokeThickness / 2; + linePositionY = ((style.strokeThickness / 2) + (i$1 * lineHeight)) + fontProperties.ascent; + + if (style.align === 'right') + { + linePositionX += maxLineWidth - lineWidths[i$1]; + } + else if (style.align === 'center') + { + linePositionX += (maxLineWidth - lineWidths[i$1]) / 2; + } + + if (style.stroke && style.strokeThickness) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText, + true + ); + } + + if (style.fill) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText + ); + } + } + } + + this.updateTexture(); + }; + + /** + * Render the text with letter-spacing. + * @param {string} text - The text to draw + * @param {number} x - Horizontal position to draw the text + * @param {number} y - Vertical position to draw the text + * @param {boolean} [isStroke=false] - Is this drawing for the outside stroke of the + * text? If not, it's for the inside fill + * @private + */ + Text.prototype.drawLetterSpacing = function drawLetterSpacing (text, x, y, isStroke) + { + if ( isStroke === void 0 ) isStroke = false; + + var style = this._style; + + // letterSpacing of 0 means normal + var letterSpacing = style.letterSpacing; + + if (letterSpacing === 0) + { + if (isStroke) + { + this.context.strokeText(text, x, y); + } + else + { + this.context.fillText(text, x, y); + } + + return; + } + + var currentPosition = x; + + // Using Array.from correctly splits characters whilst keeping emoji together. + // This is not supported on IE as it requires ES6, so regular text splitting occurs. + // This also doesn't account for emoji that are multiple emoji put together to make something else. + // Handling all of this would require a big library itself. + // https://medium.com/@giltayar/iterating-over-emoji-characters-the-es6-way-f06e4589516 + // https://github.com/orling/grapheme-splitter + var stringArray = Array.from ? Array.from(text) : text.split(''); + var previousWidth = this.context.measureText(text).width; + var currentWidth = 0; + + for (var i = 0; i < stringArray.length; ++i) + { + var currentChar = stringArray[i]; + + if (isStroke) + { + this.context.strokeText(currentChar, currentPosition, y); + } + else + { + this.context.fillText(currentChar, currentPosition, y); + } + currentWidth = this.context.measureText(text.substring(i + 1)).width; + currentPosition += previousWidth - currentWidth + letterSpacing; + previousWidth = currentWidth; + } + }; + + /** + * Updates texture size based on canvas size + * + * @private + */ + Text.prototype.updateTexture = function updateTexture () + { + var canvas = this.canvas; + + if (this._style.trim) + { + var trimmed = trimCanvas(canvas); + + if (trimmed.data) + { + canvas.width = trimmed.width; + canvas.height = trimmed.height; + this.context.putImageData(trimmed.data, 0, 0); + } + } + + var texture = this._texture; + var style = this._style; + var padding = style.trim ? 0 : style.padding; + var baseTexture = texture.baseTexture; + + texture.trim.width = texture._frame.width = Math.ceil(canvas.width / this._resolution); + texture.trim.height = texture._frame.height = Math.ceil(canvas.height / this._resolution); + texture.trim.x = -padding; + texture.trim.y = -padding; + + texture.orig.width = texture._frame.width - (padding * 2); + texture.orig.height = texture._frame.height - (padding * 2); + + // call sprite onTextureUpdate to update scale if _width or _height were set + this._onTextureUpdate(); + + baseTexture.setRealSize(canvas.width, canvas.height, this._resolution); + + this.dirty = false; + }; + + /** + * Renders the object using the WebGL renderer + * + * @private + * @param {PIXI.Renderer} renderer - The renderer + */ + Text.prototype._render = function _render (renderer) + { + if (this._autoResolution && this._resolution !== renderer.resolution) + { + this._resolution = renderer.resolution; + this.dirty = true; + } + + this.updateText(true); + + Sprite.prototype._render.call(this, renderer); + }; + + /** + * Gets the local bounds of the text object. + * + * @param {PIXI.Rectangle} rect - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Text.prototype.getLocalBounds = function getLocalBounds (rect) + { + this.updateText(true); + + return Sprite.prototype.getLocalBounds.call(this, rect); + }; + + /** + * calculates the bounds of the Text as a rectangle. The bounds calculation takes the worldTransform into account. + * @protected + */ + Text.prototype._calculateBounds = function _calculateBounds () + { + this.updateText(true); + this.calculateVertices(); + // if we have already done this on THIS frame. + this._bounds.addQuad(this.vertexData); + }; + + /** + * Method to be called upon a TextStyle change. + * @private + */ + Text.prototype._onStyleChange = function _onStyleChange () + { + this.dirty = true; + }; + + /** + * Generates the fill style. Can automatically generate a gradient based on the fill style being an array + * + * @private + * @param {object} style - The style. + * @param {string[]} lines - The lines of text. + * @return {string|number|CanvasGradient} The fill style + */ + Text.prototype._generateFillStyle = function _generateFillStyle (style, lines) + { + if (!Array.isArray(style.fill)) + { + return style.fill; + } + else if (style.fill.length === 1) + { + return style.fill[0]; + } + + // the gradient will be evenly spaced out according to how large the array is. + // ['#FF0000', '#00FF00', '#0000FF'] would created stops at 0.25, 0.5 and 0.75 + var gradient; + var totalIterations; + var currentIteration; + var stop; + + var width = Math.ceil(this.canvas.width / this._resolution); + var height = Math.ceil(this.canvas.height / this._resolution); + + // make a copy of the style settings, so we can manipulate them later + var fill = style.fill.slice(); + var fillGradientStops = style.fillGradientStops.slice(); + + // wanting to evenly distribute the fills. So an array of 4 colours should give fills of 0.25, 0.5 and 0.75 + if (!fillGradientStops.length) + { + var lengthPlus1 = fill.length + 1; + + for (var i = 1; i < lengthPlus1; ++i) + { + fillGradientStops.push(i / lengthPlus1); + } + } + + // stop the bleeding of the last gradient on the line above to the top gradient of the this line + // by hard defining the first gradient colour at point 0, and last gradient colour at point 1 + fill.unshift(style.fill[0]); + fillGradientStops.unshift(0); + + fill.push(style.fill[style.fill.length - 1]); + fillGradientStops.push(1); + + if (style.fillGradientType === TEXT_GRADIENT.LINEAR_VERTICAL) + { + // start the gradient at the top center of the canvas, and end at the bottom middle of the canvas + gradient = this.context.createLinearGradient(width / 2, 0, width / 2, height); + + // we need to repeat the gradient so that each individual line of text has the same vertical gradient effect + // ['#FF0000', '#00FF00', '#0000FF'] over 2 lines would create stops at 0.125, 0.25, 0.375, 0.625, 0.75, 0.875 + totalIterations = (fill.length + 1) * lines.length; + currentIteration = 0; + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + currentIteration += 1; + for (var j = 0; j < fill.length; j++) + { + if (typeof fillGradientStops[j] === 'number') + { + stop = (fillGradientStops[j] / lines.length) + (i$1 / lines.length); + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[j]); + currentIteration++; + } + } + } + else + { + // start the gradient at the center left of the canvas, and end at the center right of the canvas + gradient = this.context.createLinearGradient(0, height / 2, width, height / 2); + + // can just evenly space out the gradients in this case, as multiple lines makes no difference + // to an even left to right gradient + totalIterations = fill.length + 1; + currentIteration = 1; + + for (var i$2 = 0; i$2 < fill.length; i$2++) + { + if (typeof fillGradientStops[i$2] === 'number') + { + stop = fillGradientStops[i$2]; + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[i$2]); + currentIteration++; + } + } + + return gradient; + }; + + /** + * Destroys this text object. + * Note* Unlike a Sprite, a Text object will automatically destroy its baseTexture and texture as + * the majority of the time the texture will not be shared with any other Sprites. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their + * destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=true] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=true] - Should it destroy the base texture of the sprite as well + */ + Text.prototype.destroy = function destroy (options) + { + if (typeof options === 'boolean') + { + options = { children: options }; + } + + options = Object.assign({}, defaultDestroyOptions, options); + + Sprite.prototype.destroy.call(this, options); + + // make sure to reset the the context and canvas.. dont want this hanging around in memory! + this.context = null; + this.canvas = null; + + this._style = null; + }; + + /** + * The width of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * Set the style of the text. Set up an event listener to listen for changes on the style + * object and mark the text as dirty. + * + * @member {object|PIXI.TextStyle} + */ + prototypeAccessors.style.get = function () + { + return this._style; + }; + + prototypeAccessors.style.set = function (style) // eslint-disable-line require-jsdoc + { + style = style || {}; + + if (style instanceof TextStyle) + { + this._style = style; + } + else + { + this._style = new TextStyle(style); + } + + this.localStyleID = -1; + this.dirty = true; + }; + + /** + * Set the copy for the text object. To split a line you can use '\n'. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + prototypeAccessors.resolution.get = function () + { + return this._resolution; + }; + + prototypeAccessors.resolution.set = function (value) // eslint-disable-line require-jsdoc + { + this._autoResolution = false; + + if (this._resolution === value) + { + return; + } + + this._resolution = value; + this.dirty = true; + }; + + Object.defineProperties( Text.prototype, prototypeAccessors ); + + return Text; +}(Sprite)); + +/*! + * @pixi/prepare - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/prepare is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default number of uploads per frame using prepare plugin. + * + * @static + * @memberof PIXI.settings + * @name UPLOADS_PER_FRAME + * @type {number} + * @default 4 + */ +settings.UPLOADS_PER_FRAME = 4; + +/** + * CountLimiter limits the number of items handled by a {@link PIXI.prepare.BasePrepare} to a specified + * number of items per frame. + * + * @class + * @memberof PIXI.prepare + */ +var CountLimiter = function CountLimiter(maxItemsPerFrame) +{ + /** + * The maximum number of items that can be prepared each frame. + * @type {number} + * @private + */ + this.maxItemsPerFrame = maxItemsPerFrame; + /** + * The number of items that can be prepared in the current frame. + * @type {number} + * @private + */ + this.itemsLeft = 0; +}; + +/** + * Resets any counting properties to start fresh on a new frame. + */ +CountLimiter.prototype.beginFrame = function beginFrame () +{ + this.itemsLeft = this.maxItemsPerFrame; +}; + +/** + * Checks to see if another item can be uploaded. This should only be called once per item. + * @return {boolean} If the item is allowed to be uploaded. + */ +CountLimiter.prototype.allowedToUpload = function allowedToUpload () +{ + return this.itemsLeft-- > 0; +}; + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * BasePrepare handles basic queuing functionality and is extended by + * {@link PIXI.prepare.Prepare} and {@link PIXI.prepare.CanvasPrepare} + * to provide preparation capabilities specific to their respective renderers. + * + * @example + * // Create a sprite + * const sprite = PIXI.Sprite.from('something.png'); + * + * // Load object into GPU + * app.renderer.plugins.prepare.upload(sprite, () => { + * + * //Texture(s) has been uploaded to GPU + * app.stage.addChild(sprite); + * + * }) + * + * @abstract + * @class + * @memberof PIXI.prepare + */ +var BasePrepare = function BasePrepare(renderer) +{ + var this$1 = this; + + /** + * The limiter to be used to control how quickly items are prepared. + * @type {PIXI.prepare.CountLimiter|PIXI.prepare.TimeLimiter} + */ + this.limiter = new CountLimiter(settings.UPLOADS_PER_FRAME); + + /** + * Reference to the renderer. + * @type {PIXI.AbstractRenderer} + * @protected + */ + this.renderer = renderer; + + /** + * The only real difference between CanvasPrepare and Prepare is what they pass + * to upload hooks. That different parameter is stored here. + * @type {PIXI.prepare.CanvasPrepare|PIXI.Renderer} + * @protected + */ + this.uploadHookHelper = null; + + /** + * Collection of items to uploads at once. + * @type {Array<*>} + * @private + */ + this.queue = []; + + /** + * Collection of additional hooks for finding assets. + * @type {Array} + * @private + */ + this.addHooks = []; + + /** + * Collection of additional hooks for processing assets. + * @type {Array} + * @private + */ + this.uploadHooks = []; + + /** + * Callback to call after completed. + * @type {Array} + * @private + */ + this.completes = []; + + /** + * If prepare is ticking (running). + * @type {boolean} + * @private + */ + this.ticking = false; + + /** + * 'bound' call for prepareItems(). + * @type {Function} + * @private + */ + this.delayedTick = function () { + // unlikely, but in case we were destroyed between tick() and delayedTick() + if (!this$1.queue) + { + return; + } + this$1.prepareItems(); + }; + + // hooks to find the correct texture + this.registerFindHook(findText); + this.registerFindHook(findTextStyle); + this.registerFindHook(findMultipleBaseTextures); + this.registerFindHook(findBaseTexture); + this.registerFindHook(findTexture); + + // upload hooks + this.registerUploadHook(drawText); + this.registerUploadHook(calculateTextStyle); +}; + +/** + * Upload all the textures and graphics to the GPU. + * + * @param {Function|PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text} item - + * Either the container or display object to search for items to upload, the items to upload themselves, + * or the callback function, if items have been added using `prepare.add`. + * @param {Function} [done] - Optional callback when all queued uploads have completed + */ +BasePrepare.prototype.upload = function upload (item, done) +{ + if (typeof item === 'function') + { + done = item; + item = null; + } + + // If a display object, search for items + // that we could upload + if (item) + { + this.add(item); + } + + // Get the items for upload from the display + if (this.queue.length) + { + if (done) + { + this.completes.push(done); + } + + if (!this.ticking) + { + this.ticking = true; + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } + } + else if (done) + { + done(); + } +}; + +/** + * Handle tick update + * + * @private + */ +BasePrepare.prototype.tick = function tick () +{ + setTimeout(this.delayedTick, 0); +}; + +/** + * Actually prepare items. This is handled outside of the tick because it will take a while + * and we do NOT want to block the current animation frame from rendering. + * + * @private + */ +BasePrepare.prototype.prepareItems = function prepareItems () +{ + this.limiter.beginFrame(); + // Upload the graphics + while (this.queue.length && this.limiter.allowedToUpload()) + { + var item = this.queue[0]; + var uploaded = false; + + if (item && !item._destroyed) + { + for (var i = 0, len = this.uploadHooks.length; i < len; i++) + { + if (this.uploadHooks[i](this.uploadHookHelper, item)) + { + this.queue.shift(); + uploaded = true; + break; + } + } + } + + if (!uploaded) + { + this.queue.shift(); + } + } + + // We're finished + if (!this.queue.length) + { + this.ticking = false; + + var completes = this.completes.slice(0); + + this.completes.length = 0; + + for (var i$1 = 0, len$1 = completes.length; i$1 < len$1; i$1++) + { + completes[i$1](); + } + } + else + { + // if we are not finished, on the next rAF do this again + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } +}; + +/** + * Adds hooks for finding items. + * + * @param {Function} addHook - Function call that takes two parameters: `item:*, queue:Array` + * function must return `true` if it was able to add item to the queue. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerFindHook = function registerFindHook (addHook) +{ + if (addHook) + { + this.addHooks.push(addHook); + } + + return this; +}; + +/** + * Adds hooks for uploading items. + * + * @param {Function} uploadHook - Function call that takes two parameters: `prepare:CanvasPrepare, item:*` and + * function must return `true` if it was able to handle upload of item. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerUploadHook = function registerUploadHook (uploadHook) +{ + if (uploadHook) + { + this.uploadHooks.push(uploadHook); + } + + return this; +}; + +/** + * Manually add an item to the uploading queue. + * + * @param {PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text|*} item - Object to + * add to the queue + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.add = function add (item) +{ + // Add additional hooks for finding elements on special + // types of objects that + for (var i = 0, len = this.addHooks.length; i < len; i++) + { + if (this.addHooks[i](item, this.queue)) + { + break; + } + } + + // Get children recursively + if (item instanceof Container) + { + for (var i$1 = item.children.length - 1; i$1 >= 0; i$1--) + { + this.add(item.children[i$1]); + } + } + + return this; +}; + +/** + * Destroys the plugin, don't use after this. + * + */ +BasePrepare.prototype.destroy = function destroy () +{ + if (this.ticking) + { + Ticker.system.remove(this.tick, this); + } + this.ticking = false; + this.addHooks = null; + this.uploadHooks = null; + this.renderer = null; + this.completes = null; + this.queue = null; + this.limiter = null; + this.uploadHookHelper = null; +}; + +/** + * Built-in hook to find multiple textures from objects like AnimatedSprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findMultipleBaseTextures(item, queue) +{ + var result = false; + + // Objects with multiple textures + if (item && item._textures && item._textures.length) + { + for (var i = 0; i < item._textures.length; i++) + { + if (item._textures[i] instanceof Texture) + { + var baseTexture = item._textures[i].baseTexture; + + if (queue.indexOf(baseTexture) === -1) + { + queue.push(baseTexture); + result = true; + } + } + } + } + + return result; +} + +/** + * Built-in hook to find BaseTextures from Sprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findBaseTexture(item, queue) +{ + // Objects with textures, like Sprites/Text + if (item instanceof BaseTexture) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find textures from objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findTexture(item, queue) +{ + if (item._texture && item._texture instanceof Texture) + { + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to draw PIXI.Text to its texture. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function drawText(helper, item) +{ + if (item instanceof Text) + { + // updating text will return early if it is not dirty + item.updateText(true); + + return true; + } + + return false; +} + +/** + * Built-in hook to calculate a text style for a PIXI.Text object. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function calculateTextStyle(helper, item) +{ + if (item instanceof TextStyle) + { + var font = item.toFontString(); + + TextMetrics.measureFont(font); + + return true; + } + + return false; +} + +/** + * Built-in hook to find Text objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Text object was found. + */ +function findText(item, queue) +{ + if (item instanceof Text) + { + // push the text style to prepare it - this can be really expensive + if (queue.indexOf(item.style) === -1) + { + queue.push(item.style); + } + // also push the text object so that we can render it (to canvas/texture) if needed + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + // also push the Text's texture for upload to GPU + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find TextStyle objects. + * + * @private + * @param {PIXI.TextStyle} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.TextStyle object was found. + */ +function findTextStyle(item, queue) +{ + if (item instanceof TextStyle) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.prepare` + * + * @class + * @extends PIXI.prepare.BasePrepare + * @memberof PIXI.prepare + */ +var Prepare = /*@__PURE__*/(function (BasePrepare) { + function Prepare(renderer) + { + BasePrepare.call(this, renderer); + + this.uploadHookHelper = this.renderer; + + // Add textures and graphics to upload + this.registerFindHook(findGraphics); + this.registerUploadHook(uploadBaseTextures); + this.registerUploadHook(uploadGraphics); + } + + if ( BasePrepare ) Prepare.__proto__ = BasePrepare; + Prepare.prototype = Object.create( BasePrepare && BasePrepare.prototype ); + Prepare.prototype.constructor = Prepare; + + return Prepare; +}(BasePrepare)); +/** + * Built-in hook to upload PIXI.Texture objects to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadBaseTextures(renderer, item) +{ + if (item instanceof BaseTexture) + { + // if the texture already has a GL texture, then the texture has been prepared or rendered + // before now. If the texture changed, then the changer should be calling texture.update() which + // reuploads the texture without need for preparing it again + if (!item._glTextures[renderer.CONTEXT_UID]) + { + renderer.texture.bind(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to upload PIXI.Graphics to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadGraphics(renderer, item) +{ + if (item instanceof Graphics) + { + // if the item is not dirty and already has webgl data, then it got prepared or rendered + // before now and we shouldn't waste time updating it again + if (item.dirty || item.clearDirty || !item._webGL[renderer.plugins.graphics.CONTEXT_UID]) + { + renderer.plugins.graphics.updateGraphics(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find graphics. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Graphics object was found. + */ +function findGraphics(item, queue) +{ + if (item instanceof Graphics) + { + queue.push(item); + + return true; + } + + return false; +} + +/*! + * @pixi/app - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/app is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Convenience class to create a new PIXI application. + * + * This class automatically creates the renderer, ticker and root container. + * + * @example + * // Create the application + * const app = new PIXI.Application(); + * + * // Add the view to the DOM + * document.body.appendChild(app.view); + * + * // ex, add display objects + * app.stage.addChild(PIXI.Sprite.from('something.png')); + * + * @class + * @memberof PIXI + */ +var Application = function Application(options) +{ + var this$1 = this; + + // The default options + options = Object.assign({ + forceCanvas: false, + }, options); + + /** + * WebGL renderer if available, otherwise CanvasRenderer. + * @member {PIXI.Renderer|PIXI.CanvasRenderer} + */ + this.renderer = autoDetectRenderer(options); + + /** + * The root display container that's rendered. + * @member {PIXI.Container} + */ + this.stage = new Container(); + + // install plugins here + Application._plugins.forEach(function (plugin) { + plugin.init.call(this$1, options); + }); +}; + +var prototypeAccessors$8 = { view: { configurable: true },screen: { configurable: true } }; + +/** + * Register a middleware plugin for the application + * @static + * @param {PIXI.Application.Plugin} plugin - Plugin being installed + */ +Application.registerPlugin = function registerPlugin (plugin) +{ + Application._plugins.push(plugin); +}; + +/** + * Render the current stage. + */ +Application.prototype.render = function render () +{ + this.renderer.render(this.stage); +}; + +/** + * Reference to the renderer's canvas element. + * @member {HTMLCanvasElement} + * @readonly + */ +prototypeAccessors$8.view.get = function () +{ + return this.renderer.view; +}; + +/** + * Reference to the renderer's screen rectangle. Its safe to use as `filterArea` or `hitArea` for the whole screen. + * @member {PIXI.Rectangle} + * @readonly + */ +prototypeAccessors$8.screen.get = function () +{ + return this.renderer.screen; +}; + +/** + * Destroy and don't use after this. + * @param {Boolean} [removeView=false] Automatically remove canvas from DOM. + * @param {object|boolean} [stageOptions] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [stageOptions.children=false] - if set to true, all the children will have their destroy + * method called as well. 'stageOptions' will be passed on to those calls. + * @param {boolean} [stageOptions.texture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the texture of the child sprite + * @param {boolean} [stageOptions.baseTexture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the base texture of the child sprite + */ +Application.prototype.destroy = function destroy (removeView, stageOptions) +{ + var this$1 = this; + + // Destroy plugins in the opposite order + // which they were constructed + var plugins = Application._plugins.slice(0); + + plugins.reverse(); + plugins.forEach(function (plugin) { + plugin.destroy.call(this$1); + }); + + this.stage.destroy(stageOptions); + this.stage = null; + + this.renderer.destroy(removeView); + this.renderer = null; + + this._options = null; +}; + +Object.defineProperties( Application.prototype, prototypeAccessors$8 ); + +/** + * @memberof PIXI.Application + * @typedef {object} Plugin + * @property {function} init - Called when Application is constructed, scoped to Application instance. + * Passes in `options` as the only argument, which are Application constructor options. + * @property {function} destroy - Called when destroying Application, scoped to Application instance + */ + +/** + * Collection of installed plugins. + * @static + * @private + * @type {PIXI.Application.Plugin[]} + */ +Application._plugins = []; + +/** + * Middleware for for Application's resize functionality + * @private + * @class + */ +var ResizePlugin = function ResizePlugin () {}; + +ResizePlugin.init = function init (options) +{ + var this$1 = this; + + /** + * The element or window to resize the application to. + * @type {Window|HTMLElement} + * @name resizeTo + * @memberof PIXI.Application# + */ + Object.defineProperty(this, 'resizeTo', + { + set: function set(dom) + { + window.removeEventListener('resize', this.resize); + this._resizeTo = dom; + if (dom) + { + window.addEventListener('resize', this.resize); + this.resize(); + } + }, + get: function get() + { + return this._resizeTo; + }, + }); + + /** + * If `resizeTo` is set, calling this function + * will resize to the width and height of that element. + * @method PIXI.Application#resize + */ + this.resize = function () { + if (this$1._resizeTo) + { + // Resize to the window + if (this$1._resizeTo === window) + { + this$1.renderer.resize( + window.innerWidth, + window.innerHeight + ); + } + // Resize to other HTML entities + else + { + this$1.renderer.resize( + this$1._resizeTo.clientWidth, + this$1._resizeTo.clientHeight + ); + } + } + }; + + // On resize + this._resizeTo = null; + this.resizeTo = options.resizeTo || null; +}; + +/** + * Clean up the ticker, scoped to application + * @static + * @private + */ +ResizePlugin.destroy = function destroy () +{ + this.resizeTo = null; + this.resize = null; +}; + +Application.registerPlugin(ResizePlugin); + +var parseUri = function parseURI (str, opts) { + opts = opts || {}; + + var o = { + key: ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'], + q: { + name: 'queryKey', + parser: /(?:^|&)([^&=]*)=?([^&]*)/g + }, + parser: { + strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/, + loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/ + } + }; + + var m = o.parser[opts.strictMode ? 'strict' : 'loose'].exec(str); + var uri = {}; + var i = 14; + + while (i--) uri[o.key[i]] = m[i] || ''; + + uri[o.q.name] = {}; + uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) { + if ($1) uri[o.q.name][$1] = $2; + }); + + return uri +}; + +var miniSignals = createCommonjsModule(function (module, exports) { + +Object.defineProperty(exports, '__esModule', { + value: true +}); + +var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + +var MiniSignalBinding = (function () { + function MiniSignalBinding(fn, once, thisArg) { + if (once === undefined) once = false; + + _classCallCheck(this, MiniSignalBinding); + + this._fn = fn; + this._once = once; + this._thisArg = thisArg; + this._next = this._prev = this._owner = null; + } + + _createClass(MiniSignalBinding, [{ + key: 'detach', + value: function detach() { + if (this._owner === null) return false; + this._owner.detach(this); + return true; + } + }]); + + return MiniSignalBinding; +})(); + +function _addMiniSignalBinding(self, node) { + if (!self._head) { + self._head = node; + self._tail = node; + } else { + self._tail._next = node; + node._prev = self._tail; + self._tail = node; + } + + node._owner = self; + + return node; +} + +var MiniSignal = (function () { + function MiniSignal() { + _classCallCheck(this, MiniSignal); + + this._head = this._tail = undefined; + } + + _createClass(MiniSignal, [{ + key: 'handlers', + value: function handlers() { + var exists = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0]; + + var node = this._head; + + if (exists) return !!node; + + var ee = []; + + while (node) { + ee.push(node); + node = node._next; + } + + return ee; + } + }, { + key: 'has', + value: function has(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#has(): First arg must be a MiniSignalBinding object.'); + } + + return node._owner === this; + } + }, { + key: 'dispatch', + value: function dispatch() { + var node = this._head; + + if (!node) return false; + + while (node) { + if (node._once) this.detach(node); + node._fn.apply(node._thisArg, arguments); + node = node._next; + } + + return true; + } + }, { + key: 'add', + value: function add(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#add(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, false, thisArg)); + } + }, { + key: 'once', + value: function once(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#once(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, true, thisArg)); + } + }, { + key: 'detach', + value: function detach(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#detach(): First arg must be a MiniSignalBinding object.'); + } + if (node._owner !== this) return this; + + if (node._prev) node._prev._next = node._next; + if (node._next) node._next._prev = node._prev; + + if (node === this._head) { + this._head = node._next; + if (node._next === null) { + this._tail = null; + } + } else if (node === this._tail) { + this._tail = node._prev; + this._tail._next = null; + } + + node._owner = null; + return this; + } + }, { + key: 'detachAll', + value: function detachAll() { + var node = this._head; + if (!node) return this; + + this._head = this._tail = null; + + while (node) { + node._owner = null; + node = node._next; + } + return this; + } + }]); + + return MiniSignal; +})(); + +MiniSignal.MiniSignalBinding = MiniSignalBinding; + +exports['default'] = MiniSignal; +module.exports = exports['default']; +}); + +var Signal = unwrapExports(miniSignals); + +/*! + * resource-loader - v3.0.1 + * https://github.com/pixijs/pixi-sound + * Compiled Tue, 02 Jul 2019 14:06:18 UTC + * + * resource-loader is licensed under the MIT license. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Smaller version of the async library constructs. + * + * @namespace async + */ + +/** + * Noop function + * + * @ignore + * @function + * @memberof async + */ +function _noop() {} +/* empty */ + +/** + * Iterates an array in series. + * + * @memberof async + * @function eachSeries + * @param {Array.<*>} array - Array to iterate. + * @param {function} iterator - Function to call for each element. + * @param {function} callback - Function to call when done, or on error. + * @param {boolean} [deferNext=false] - Break synchronous each loop by calling next with a setTimeout of 1. + */ + + +function eachSeries(array, iterator, callback, deferNext) { + var i = 0; + var len = array.length; + + (function next(err) { + if (err || i === len) { + if (callback) { + callback(err); + } + + return; + } + + if (deferNext) { + setTimeout(function () { + iterator(array[i++], next); + }, 1); + } else { + iterator(array[i++], next); + } + })(); +} +/** + * Ensures a function is only called once. + * + * @ignore + * @memberof async + * @param {function} fn - The function to wrap. + * @return {function} The wrapping function. + */ + +function onlyOnce(fn) { + return function onceWrapper() { + if (fn === null) { + throw new Error('Callback was already called.'); + } + + var callFn = fn; + fn = null; + callFn.apply(this, arguments); + }; +} +/** + * Async queue implementation, + * + * @memberof async + * @function queue + * @param {function} worker - The worker function to call for each task. + * @param {number} concurrency - How many workers to run in parrallel. + * @return {*} The async queue object. + */ + + +function queue(worker, concurrency) { + if (concurrency == null) { + // eslint-disable-line no-eq-null,eqeqeq + concurrency = 1; + } else if (concurrency === 0) { + throw new Error('Concurrency must not be zero'); + } + + var workers = 0; + var q = { + _tasks: [], + concurrency: concurrency, + saturated: _noop, + unsaturated: _noop, + buffer: concurrency / 4, + empty: _noop, + drain: _noop, + error: _noop, + started: false, + paused: false, + push: function push(data, callback) { + _insert(data, false, callback); + }, + kill: function kill() { + workers = 0; + q.drain = _noop; + q.started = false; + q._tasks = []; + }, + unshift: function unshift(data, callback) { + _insert(data, true, callback); + }, + process: function process() { + while (!q.paused && workers < q.concurrency && q._tasks.length) { + var task = q._tasks.shift(); + + if (q._tasks.length === 0) { + q.empty(); + } + + workers += 1; + + if (workers === q.concurrency) { + q.saturated(); + } + + worker(task.data, onlyOnce(_next(task))); + } + }, + length: function length() { + return q._tasks.length; + }, + running: function running() { + return workers; + }, + idle: function idle() { + return q._tasks.length + workers === 0; + }, + pause: function pause() { + if (q.paused === true) { + return; + } + + q.paused = true; + }, + resume: function resume() { + if (q.paused === false) { + return; + } + + q.paused = false; // Need to call q.process once per concurrent + // worker to preserve full concurrency after pause + + for (var w = 1; w <= q.concurrency; w++) { + q.process(); + } + } + }; + + function _insert(data, insertAtFront, callback) { + if (callback != null && typeof callback !== 'function') { + // eslint-disable-line no-eq-null,eqeqeq + throw new Error('task callback must be a function'); + } + + q.started = true; + + if (data == null && q.idle()) { + // eslint-disable-line no-eq-null,eqeqeq + // call drain immediately if there are no tasks + setTimeout(function () { + return q.drain(); + }, 1); + return; + } + + var item = { + data: data, + callback: typeof callback === 'function' ? callback : _noop + }; + + if (insertAtFront) { + q._tasks.unshift(item); + } else { + q._tasks.push(item); + } + + setTimeout(function () { + return q.process(); + }, 1); + } + + function _next(task) { + return function next() { + workers -= 1; + task.callback.apply(task, arguments); + + if (arguments[0] != null) { + // eslint-disable-line no-eq-null,eqeqeq + q.error(arguments[0], task.data); + } + + if (workers <= q.concurrency - q.buffer) { + q.unsaturated(); + } + + if (q.idle()) { + q.drain(); + } + + q.process(); + }; + } + + return q; +} + +// a simple in-memory cache for resources +var cache = {}; +/** + * A simple in-memory cache for resource. + * + * @memberof middleware + * @function caching + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.caching); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function caching(resource, next) { + var _this = this; + + // if cached, then set data and complete the resource + if (cache[resource.url]) { + resource.data = cache[resource.url]; + resource.complete(); // marks resource load complete and stops processing before middlewares + } // if not cached, wait for complete and store it in the cache. + else { + resource.onComplete.once(function () { + return cache[_this.url] = _this.data; + }); + } + + next(); +} + +function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } +} + +function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + return Constructor; +} + +var useXdr = !!(window.XDomainRequest && !('withCredentials' in new XMLHttpRequest())); +var tempAnchor$1 = null; // some status constants + +var STATUS_NONE = 0; +var STATUS_OK = 200; +var STATUS_EMPTY = 204; +var STATUS_IE_BUG_EMPTY = 1223; +var STATUS_TYPE_OK = 2; // noop + +function _noop$1() {} +/* empty */ + +/** + * Manages the state and loading of a resource and all child resources. + * + * @class + */ + + +var Resource$1 = +/*#__PURE__*/ +function () { + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.LOAD_TYPE} loadType - The load type to set it to. + */ + Resource.setExtensionLoadType = function setExtensionLoadType(extname, loadType) { + setExtMap(Resource._loadTypeMap, extname, loadType); + } + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.XHR_RESPONSE_TYPE} xhrType - The xhr type to set it to. + */ + ; + + Resource.setExtensionXhrType = function setExtensionXhrType(extname, xhrType) { + setExtMap(Resource._xhrTypeMap, extname, xhrType); + } + /** + * @param {string} name - The name of the resource to load. + * @param {string|string[]} url - The url for this resource, for audio/video loads you can pass + * an array of sources. + * @param {object} [options] - The options for the load. + * @param {string|boolean} [options.crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @param {number} [options.timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @param {Resource.LOAD_TYPE} [options.loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @param {Resource.XHR_RESPONSE_TYPE} [options.xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @param {Resource.IMetadata} [options.metadata] - Extra configuration for middleware and the Resource object. + */ + ; + + function Resource(name, url, options) { + if (typeof name !== 'string' || typeof url !== 'string') { + throw new Error('Both name and url are required for constructing a resource.'); + } + + options = options || {}; + /** + * The state flags of this resource. + * + * @private + * @member {number} + */ + + this._flags = 0; // set data url flag, needs to be set early for some _determineX checks to work. + + this._setFlag(Resource.STATUS_FLAGS.DATA_URL, url.indexOf('data:') === 0); + /** + * The name of this resource. + * + * @readonly + * @member {string} + */ + + + this.name = name; + /** + * The url used to load this resource. + * + * @readonly + * @member {string} + */ + + this.url = url; + /** + * The extension used to load this resource. + * + * @readonly + * @member {string} + */ + + this.extension = this._getExtension(); + /** + * The data that was loaded by the resource. + * + * @member {any} + */ + + this.data = null; + /** + * Is this request cross-origin? If unset, determined automatically. + * + * @member {string} + */ + + this.crossOrigin = options.crossOrigin === true ? 'anonymous' : options.crossOrigin; + /** + * A timeout in milliseconds for the load. If the load takes longer than this time + * it is cancelled and the load is considered a failure. If this value is set to `0` + * then there is no explicit timeout. + * + * @member {number} + */ + + this.timeout = options.timeout || 0; + /** + * The method of loading to use for this resource. + * + * @member {Resource.LOAD_TYPE} + */ + + this.loadType = options.loadType || this._determineLoadType(); + /** + * The type used to load the resource via XHR. If unset, determined automatically. + * + * @member {string} + */ + + this.xhrType = options.xhrType; + /** + * Extra info for middleware, and controlling specifics about how the resource loads. + * + * Note that if you pass in a `loadElement`, the Resource class takes ownership of it. + * Meaning it will modify it as it sees fit. + * + * @member {Resource.IMetadata} + */ + + this.metadata = options.metadata || {}; + /** + * The error that occurred while loading (if any). + * + * @readonly + * @member {Error} + */ + + this.error = null; + /** + * The XHR object that was used to load this resource. This is only set + * when `loadType` is `Resource.LOAD_TYPE.XHR`. + * + * @readonly + * @member {XMLHttpRequest} + */ + + this.xhr = null; + /** + * The child resources this resource owns. + * + * @readonly + * @member {Resource[]} + */ + + this.children = []; + /** + * The resource type. + * + * @readonly + * @member {Resource.TYPE} + */ + + this.type = Resource.TYPE.UNKNOWN; + /** + * The progress chunk owned by this resource. + * + * @readonly + * @member {number} + */ + + this.progressChunk = 0; + /** + * The `dequeue` method that will be used a storage place for the async queue dequeue method + * used privately by the loader. + * + * @private + * @member {function} + */ + + this._dequeue = _noop$1; + /** + * Used a storage place for the on load binding used privately by the loader. + * + * @private + * @member {function} + */ + + this._onLoadBinding = null; + /** + * The timer for element loads to check if they timeout. + * + * @private + * @member {number} + */ + + this._elementTimer = 0; + /** + * The `complete` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundComplete = this.complete.bind(this); + /** + * The `_onError` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnError = this._onError.bind(this); + /** + * The `_onProgress` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnProgress = this._onProgress.bind(this); + /** + * The `_onTimeout` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnTimeout = this._onTimeout.bind(this); // xhr callbacks + + this._boundXhrOnError = this._xhrOnError.bind(this); + this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this); + this._boundXhrOnAbort = this._xhrOnAbort.bind(this); + this._boundXhrOnLoad = this._xhrOnLoad.bind(this); + /** + * Dispatched when the resource beings to load. + * + * The callback looks like {@link Resource.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched each time progress of this resource load updates. + * Not all resources types and loader systems can support this event + * so sometimes it may not be available. If the resource + * is being loaded on a modern browser, using XHR, and the remote server + * properly sets Content-Length headers, then this will be available. + * + * The callback looks like {@link Resource.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once this resource has loaded, if there was an error it will + * be in the `error` property. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); + /** + * Dispatched after this resource has had all the *after* middleware run on it. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onAfterMiddleware = new Signal(); + } + /** + * When the resource starts to load. + * + * @memberof Resource + * @callback OnStartSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * When the resource reports loading progress. + * + * @memberof Resource + * @callback OnProgressSignal + * @param {Resource} resource - The resource that the event happened on. + * @param {number} percentage - The progress of the load in the range [0, 1]. + */ + + /** + * When the resource finishes loading. + * + * @memberof Resource + * @callback OnCompleteSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * @memberof Resource + * @typedef {object} IMetadata + * @property {HTMLImageElement|HTMLAudioElement|HTMLVideoElement} [loadElement=null] - The + * element to use for loading, instead of creating one. + * @property {boolean} [skipSource=false] - Skips adding source(s) to the load element. This + * is useful if you want to pass in a `loadElement` that you already added load sources to. + * @property {string|string[]} [mimeType] - The mime type to use for the source element + * of a video/audio elment. If the urls are an array, you can pass this as an array as well + * where each index is the mime type to use for the corresponding url index. + */ + + /** + * Stores whether or not this url is a data url. + * + * @readonly + * @member {boolean} + */ + + + var _proto = Resource.prototype; + + /** + * Marks the resource as complete. + * + */ + _proto.complete = function complete() { + this._clearEvents(); + + this._finish(); + } + /** + * Aborts the loading of this resource, with an optional message. + * + * @param {string} message - The message to use for the error + */ + ; + + _proto.abort = function abort(message) { + // abort can be called multiple times, ignore subsequent calls. + if (this.error) { + return; + } // store error + + + this.error = new Error(message); // clear events before calling aborts + + this._clearEvents(); // abort the actual loading + + + if (this.xhr) { + this.xhr.abort(); + } else if (this.xdr) { + this.xdr.abort(); + } else if (this.data) { + // single source + if (this.data.src) { + this.data.src = Resource.EMPTY_GIF; + } // multi-source + else { + while (this.data.firstChild) { + this.data.removeChild(this.data.firstChild); + } + } + } // done now. + + + this._finish(); + } + /** + * Kicks off loading of this resource. This method is asynchronous. + * + * @param {Resource.OnCompleteSignal} [cb] - Optional callback to call once the resource is loaded. + */ + ; + + _proto.load = function load(cb) { + var _this = this; + + if (this.isLoading) { + return; + } + + if (this.isComplete) { + if (cb) { + setTimeout(function () { + return cb(_this); + }, 1); + } + + return; + } else if (cb) { + this.onComplete.once(cb); + } + + this._setFlag(Resource.STATUS_FLAGS.LOADING, true); + + this.onStart.dispatch(this); // if unset, determine the value + + if (this.crossOrigin === false || typeof this.crossOrigin !== 'string') { + this.crossOrigin = this._determineCrossOrigin(this.url); + } + + switch (this.loadType) { + case Resource.LOAD_TYPE.IMAGE: + this.type = Resource.TYPE.IMAGE; + + this._loadElement('image'); + + break; + + case Resource.LOAD_TYPE.AUDIO: + this.type = Resource.TYPE.AUDIO; + + this._loadSourceElement('audio'); + + break; + + case Resource.LOAD_TYPE.VIDEO: + this.type = Resource.TYPE.VIDEO; + + this._loadSourceElement('video'); + + break; + + case Resource.LOAD_TYPE.XHR: + /* falls through */ + + default: + if (useXdr && this.crossOrigin) { + this._loadXdr(); + } else { + this._loadXhr(); + } + + break; + } + } + /** + * Checks if the flag is set. + * + * @private + * @param {number} flag - The flag to check. + * @return {boolean} True if the flag is set. + */ + ; + + _proto._hasFlag = function _hasFlag(flag) { + return (this._flags & flag) !== 0; + } + /** + * (Un)Sets the flag. + * + * @private + * @param {number} flag - The flag to (un)set. + * @param {boolean} value - Whether to set or (un)set the flag. + */ + ; + + _proto._setFlag = function _setFlag(flag, value) { + this._flags = value ? this._flags | flag : this._flags & ~flag; + } + /** + * Clears all the events from the underlying loading source. + * + * @private + */ + ; + + _proto._clearEvents = function _clearEvents() { + clearTimeout(this._elementTimer); + + if (this.data && this.data.removeEventListener) { + this.data.removeEventListener('error', this._boundOnError, false); + this.data.removeEventListener('load', this._boundComplete, false); + this.data.removeEventListener('progress', this._boundOnProgress, false); + this.data.removeEventListener('canplaythrough', this._boundComplete, false); + } + + if (this.xhr) { + if (this.xhr.removeEventListener) { + this.xhr.removeEventListener('error', this._boundXhrOnError, false); + this.xhr.removeEventListener('timeout', this._boundXhrOnTimeout, false); + this.xhr.removeEventListener('abort', this._boundXhrOnAbort, false); + this.xhr.removeEventListener('progress', this._boundOnProgress, false); + this.xhr.removeEventListener('load', this._boundXhrOnLoad, false); + } else { + this.xhr.onerror = null; + this.xhr.ontimeout = null; + this.xhr.onprogress = null; + this.xhr.onload = null; + } + } + } + /** + * Finalizes the load. + * + * @private + */ + ; + + _proto._finish = function _finish() { + if (this.isComplete) { + throw new Error('Complete called again for an already completed resource.'); + } + + this._setFlag(Resource.STATUS_FLAGS.COMPLETE, true); + + this._setFlag(Resource.STATUS_FLAGS.LOADING, false); + + this.onComplete.dispatch(this); + } + /** + * Loads this resources using an element that has a single source, + * like an HTMLImageElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadElement = function _loadElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'image' && typeof window.Image !== 'undefined') { + this.data = new Image(); + } else { + this.data = document.createElement(type); + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + this.data.src = this.url; + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an element that has multiple sources, + * like an HTMLAudioElement or HTMLVideoElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadSourceElement = function _loadSourceElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'audio' && typeof window.Audio !== 'undefined') { + this.data = new Audio(); + } else { + this.data = document.createElement(type); + } + + if (this.data === null) { + this.abort("Unsupported element: " + type); + return; + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + // support for CocoonJS Canvas+ runtime, lacks document.createElement('source') + if (navigator.isCocoonJS) { + this.data.src = Array.isArray(this.url) ? this.url[0] : this.url; + } else if (Array.isArray(this.url)) { + var mimeTypes = this.metadata.mimeType; + + for (var i = 0; i < this.url.length; ++i) { + this.data.appendChild(this._createSource(type, this.url[i], Array.isArray(mimeTypes) ? mimeTypes[i] : mimeTypes)); + } + } else { + var _mimeTypes = this.metadata.mimeType; + this.data.appendChild(this._createSource(type, this.url, Array.isArray(_mimeTypes) ? _mimeTypes[0] : _mimeTypes)); + } + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + this.data.addEventListener('canplaythrough', this._boundComplete, false); + this.data.load(); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an XMLHttpRequest. + * + * @private + */ + ; + + _proto._loadXhr = function _loadXhr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xhr = this.xhr = new XMLHttpRequest(); // set the request type and url + + xhr.open('GET', this.url, true); + xhr.timeout = this.timeout; // load json as text and parse it ourselves. We do this because some browsers + // *cough* safari *cough* can't deal with it. + + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON || this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + xhr.responseType = Resource.XHR_RESPONSE_TYPE.TEXT; + } else { + xhr.responseType = this.xhrType; + } + + xhr.addEventListener('error', this._boundXhrOnError, false); + xhr.addEventListener('timeout', this._boundXhrOnTimeout, false); + xhr.addEventListener('abort', this._boundXhrOnAbort, false); + xhr.addEventListener('progress', this._boundOnProgress, false); + xhr.addEventListener('load', this._boundXhrOnLoad, false); + xhr.send(); + } + /** + * Loads this resources using an XDomainRequest. This is here because we need to support IE9 (gross). + * + * @private + */ + ; + + _proto._loadXdr = function _loadXdr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xdr = this.xhr = new XDomainRequest(); // eslint-disable-line no-undef + // XDomainRequest has a few quirks. Occasionally it will abort requests + // A way to avoid this is to make sure ALL callbacks are set even if not used + // More info here: http://stackoverflow.com/questions/15786966/xdomainrequest-aborts-post-on-ie-9 + + xdr.timeout = this.timeout || 5000; // XDR needs a timeout value or it breaks in IE9 + + xdr.onerror = this._boundXhrOnError; + xdr.ontimeout = this._boundXhrOnTimeout; + xdr.onprogress = this._boundOnProgress; + xdr.onload = this._boundXhrOnLoad; + xdr.open('GET', this.url, true); // Note: The xdr.send() call is wrapped in a timeout to prevent an + // issue with the interface where some requests are lost if multiple + // XDomainRequests are being sent at the same time. + // Some info here: https://github.com/photonstorm/phaser/issues/1248 + + setTimeout(function () { + return xdr.send(); + }, 1); + } + /** + * Creates a source used in loading via an element. + * + * @private + * @param {string} type - The element type (video or audio). + * @param {string} url - The source URL to load from. + * @param {string} [mime] - The mime type of the video + * @return {HTMLSourceElement} The source element. + */ + ; + + _proto._createSource = function _createSource(type, url, mime) { + if (!mime) { + mime = type + "/" + this._getExtension(url); + } + + var source = document.createElement('source'); + source.src = url; + source.type = mime; + return source; + } + /** + * Called if a load errors out. + * + * @param {Event} event - The error event from the element that emits it. + * @private + */ + ; + + _proto._onError = function _onError(event) { + this.abort("Failed to load element using: " + event.target.nodeName); + } + /** + * Called if a load progress event fires for an element or xhr/xdr. + * + * @private + * @param {XMLHttpRequestProgressEvent|Event} event - Progress event. + */ + ; + + _proto._onProgress = function _onProgress(event) { + if (event && event.lengthComputable) { + this.onProgress.dispatch(this, event.loaded / event.total); + } + } + /** + * Called if a timeout event fires for an element. + * + * @private + */ + ; + + _proto._onTimeout = function _onTimeout() { + this.abort("Load timed out."); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnError = function _xhrOnError() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request failed. Status: " + xhr.status + ", text: \"" + xhr.statusText + "\""); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnTimeout = function _xhrOnTimeout() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request timed out."); + } + /** + * Called if an abort event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnAbort = function _xhrOnAbort() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request was aborted by the user."); + } + /** + * Called when data successfully loads from an xhr/xdr request. + * + * @private + * @param {XMLHttpRequestLoadEvent|Event} event - Load event + */ + ; + + _proto._xhrOnLoad = function _xhrOnLoad() { + var xhr = this.xhr; + var text = ''; + var status = typeof xhr.status === 'undefined' ? STATUS_OK : xhr.status; // XDR has no `.status`, assume 200. + // responseText is accessible only if responseType is '' or 'text' and on older browsers + + if (xhr.responseType === '' || xhr.responseType === 'text' || typeof xhr.responseType === 'undefined') { + text = xhr.responseText; + } // status can be 0 when using the `file://` protocol so we also check if a response is set. + // If it has a response, we assume 200; otherwise a 0 status code with no contents is an aborted request. + + + if (status === STATUS_NONE && (text.length > 0 || xhr.responseType === Resource.XHR_RESPONSE_TYPE.BUFFER)) { + status = STATUS_OK; + } // handle IE9 bug: http://stackoverflow.com/questions/10046972/msie-returns-status-code-of-1223-for-ajax-request + else if (status === STATUS_IE_BUG_EMPTY) { + status = STATUS_EMPTY; + } + + var statusType = status / 100 | 0; + + if (statusType === STATUS_TYPE_OK) { + // if text, just return it + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.TEXT) { + this.data = text; + this.type = Resource.TYPE.TEXT; + } // if json, parse into json object + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON) { + try { + this.data = JSON.parse(text); + this.type = Resource.TYPE.JSON; + } catch (e) { + this.abort("Error trying to parse loaded json: " + e); + return; + } + } // if xml, parse into an xml document or div element + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + try { + if (window.DOMParser) { + var domparser = new DOMParser(); + this.data = domparser.parseFromString(text, 'text/xml'); + } else { + var div = document.createElement('div'); + div.innerHTML = text; + this.data = div; + } + + this.type = Resource.TYPE.XML; + } catch (e) { + this.abort("Error trying to parse loaded xml: " + e); + return; + } + } // other types just return the response + else { + this.data = xhr.response || text; + } + } else { + this.abort("[" + xhr.status + "] " + xhr.statusText + ": " + xhr.responseURL); + return; + } + + this.complete(); + } + /** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * + * @private + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ + ; + + _proto._determineCrossOrigin = function _determineCrossOrigin(url, loc) { + // data: and javascript: urls are considered same-origin + if (url.indexOf('data:') === 0) { + return ''; + } // A sandboxed iframe without the 'allow-same-origin' attribute will have a special + // origin designed not to match window.location.origin, and will always require + // crossOrigin requests regardless of whether the location matches. + + + if (window.origin !== window.location.origin) { + return 'anonymous'; + } // default is window.location + + + loc = loc || window.location; + + if (!tempAnchor$1) { + tempAnchor$1 = document.createElement('a'); + } // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + + + tempAnchor$1.href = url; + url = parseUri(tempAnchor$1.href, { + strictMode: true + }); + var samePort = !url.port && loc.port === '' || url.port === loc.port; + var protocol = url.protocol ? url.protocol + ":" : ''; // if cross origin + + if (url.host !== loc.hostname || !samePort || protocol !== loc.protocol) { + return 'anonymous'; + } + + return ''; + } + /** + * Determines the responseType of an XHR request based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.XHR_RESPONSE_TYPE} The responseType to use. + */ + ; + + _proto._determineXhrType = function _determineXhrType() { + return Resource._xhrTypeMap[this.extension] || Resource.XHR_RESPONSE_TYPE.TEXT; + } + /** + * Determines the loadType of a resource based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.LOAD_TYPE} The loadType to use. + */ + ; + + _proto._determineLoadType = function _determineLoadType() { + return Resource._loadTypeMap[this.extension] || Resource.LOAD_TYPE.XHR; + } + /** + * Extracts the extension (sans '.') of the file being loaded by the resource. + * + * @private + * @return {string} The extension. + */ + ; + + _proto._getExtension = function _getExtension() { + var url = this.url; + var ext = ''; + + if (this.isDataUrl) { + var slashIndex = url.indexOf('/'); + ext = url.substring(slashIndex + 1, url.indexOf(';', slashIndex)); + } else { + var queryStart = url.indexOf('?'); + var hashStart = url.indexOf('#'); + var index = Math.min(queryStart > -1 ? queryStart : url.length, hashStart > -1 ? hashStart : url.length); + url = url.substring(0, index); + ext = url.substring(url.lastIndexOf('.') + 1); + } + + return ext.toLowerCase(); + } + /** + * Determines the mime type of an XHR request based on the responseType of + * resource being loaded. + * + * @private + * @param {Resource.XHR_RESPONSE_TYPE} type - The type to get a mime type for. + * @return {string} The mime type to use. + */ + ; + + _proto._getMimeFromXhrType = function _getMimeFromXhrType(type) { + switch (type) { + case Resource.XHR_RESPONSE_TYPE.BUFFER: + return 'application/octet-binary'; + + case Resource.XHR_RESPONSE_TYPE.BLOB: + return 'application/blob'; + + case Resource.XHR_RESPONSE_TYPE.DOCUMENT: + return 'application/xml'; + + case Resource.XHR_RESPONSE_TYPE.JSON: + return 'application/json'; + + case Resource.XHR_RESPONSE_TYPE.DEFAULT: + case Resource.XHR_RESPONSE_TYPE.TEXT: + /* falls through */ + + default: + return 'text/plain'; + } + }; + + _createClass(Resource, [{ + key: "isDataUrl", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.DATA_URL); + } + /** + * Describes if this resource has finished loading. Is true when the resource has completely + * loaded. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isComplete", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.COMPLETE); + } + /** + * Describes if this resource is currently loading. Is true when the resource starts loading, + * and is false again when complete. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isLoading", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.LOADING); + } + }]); + + return Resource; +}(); +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + + +Resource$1.STATUS_FLAGS = { + NONE: 0, + DATA_URL: 1 << 0, + COMPLETE: 1 << 1, + LOADING: 1 << 2 +}; +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.TYPE = { + UNKNOWN: 0, + JSON: 1, + XML: 2, + IMAGE: 3, + AUDIO: 4, + VIDEO: 5, + TEXT: 6 +}; +/** + * The types of loading a resource can use. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.LOAD_TYPE = { + /** Uses XMLHttpRequest to load the resource. */ + XHR: 1, + + /** Uses an `Image` object to load the resource. */ + IMAGE: 2, + + /** Uses an `Audio` object to load the resource. */ + AUDIO: 3, + + /** Uses a `Video` object to load the resource. */ + VIDEO: 4 +}; +/** + * The XHR ready states, used internally. + * + * @static + * @readonly + * @enum {string} + */ + +Resource$1.XHR_RESPONSE_TYPE = { + /** string */ + DEFAULT: 'text', + + /** ArrayBuffer */ + BUFFER: 'arraybuffer', + + /** Blob */ + BLOB: 'blob', + + /** Document */ + DOCUMENT: 'document', + + /** Object */ + JSON: 'json', + + /** String */ + TEXT: 'text' +}; +Resource$1._loadTypeMap = { + // images + gif: Resource$1.LOAD_TYPE.IMAGE, + png: Resource$1.LOAD_TYPE.IMAGE, + bmp: Resource$1.LOAD_TYPE.IMAGE, + jpg: Resource$1.LOAD_TYPE.IMAGE, + jpeg: Resource$1.LOAD_TYPE.IMAGE, + tif: Resource$1.LOAD_TYPE.IMAGE, + tiff: Resource$1.LOAD_TYPE.IMAGE, + webp: Resource$1.LOAD_TYPE.IMAGE, + tga: Resource$1.LOAD_TYPE.IMAGE, + svg: Resource$1.LOAD_TYPE.IMAGE, + 'svg+xml': Resource$1.LOAD_TYPE.IMAGE, + // for SVG data urls + // audio + mp3: Resource$1.LOAD_TYPE.AUDIO, + ogg: Resource$1.LOAD_TYPE.AUDIO, + wav: Resource$1.LOAD_TYPE.AUDIO, + // videos + mp4: Resource$1.LOAD_TYPE.VIDEO, + webm: Resource$1.LOAD_TYPE.VIDEO +}; +Resource$1._xhrTypeMap = { + // xml + xhtml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + html: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + htm: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + xml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + tmx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + svg: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // This was added to handle Tiled Tileset XML, but .tsx is also a TypeScript React Component. + // Since it is way less likely for people to be loading TypeScript files instead of Tiled files, + // this should probably be fine. + tsx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // images + gif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + png: Resource$1.XHR_RESPONSE_TYPE.BLOB, + bmp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpeg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tiff: Resource$1.XHR_RESPONSE_TYPE.BLOB, + webp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tga: Resource$1.XHR_RESPONSE_TYPE.BLOB, + // json + json: Resource$1.XHR_RESPONSE_TYPE.JSON, + // text + text: Resource$1.XHR_RESPONSE_TYPE.TEXT, + txt: Resource$1.XHR_RESPONSE_TYPE.TEXT, + // fonts + ttf: Resource$1.XHR_RESPONSE_TYPE.BUFFER, + otf: Resource$1.XHR_RESPONSE_TYPE.BUFFER +}; // We can't set the `src` attribute to empty string, so on abort we set it to this 1px transparent gif + +Resource$1.EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='; +/** + * Quick helper to set a value on one of the extension maps. Ensures there is no + * dot at the start of the extension. + * + * @ignore + * @param {object} map - The map to set on. + * @param {string} extname - The extension (or key) to set. + * @param {number} val - The value to set. + */ + +function setExtMap(map, extname, val) { + if (extname && extname.indexOf('.') === 0) { + extname = extname.substring(1); + } + + if (!extname) { + return; + } + + map[extname] = val; +} +/** + * Quick helper to get string xhr type. + * + * @ignore + * @param {XMLHttpRequest|XDomainRequest} xhr - The request to check. + * @return {string} The type. + */ + + +function reqType(xhr) { + return xhr.toString().replace('object ', ''); +} + +var _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; +/** + * Encodes binary into base64. + * + * @function encodeBinary + * @param {string} input The input data to encode. + * @returns {string} The encoded base64 string + */ + +function encodeBinary(input) { + var output = ''; + var inx = 0; + + while (inx < input.length) { + // Fill byte buffer array + var bytebuffer = [0, 0, 0]; + var encodedCharIndexes = [0, 0, 0, 0]; + + for (var jnx = 0; jnx < bytebuffer.length; ++jnx) { + if (inx < input.length) { + // throw away high-order byte, as documented at: + // https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data + bytebuffer[jnx] = input.charCodeAt(inx++) & 0xff; + } else { + bytebuffer[jnx] = 0; + } + } // Get each encoded character, 6 bits at a time + // index 1: first 6 bits + + + encodedCharIndexes[0] = bytebuffer[0] >> 2; // index 2: second 6 bits (2 least significant bits from input byte 1 + 4 most significant bits from byte 2) + + encodedCharIndexes[1] = (bytebuffer[0] & 0x3) << 4 | bytebuffer[1] >> 4; // index 3: third 6 bits (4 least significant bits from input byte 2 + 2 most significant bits from byte 3) + + encodedCharIndexes[2] = (bytebuffer[1] & 0x0f) << 2 | bytebuffer[2] >> 6; // index 3: forth 6 bits (6 least significant bits from input byte 3) + + encodedCharIndexes[3] = bytebuffer[2] & 0x3f; // Determine whether padding happened, and adjust accordingly + + var paddingBytes = inx - (input.length - 1); + + switch (paddingBytes) { + case 2: + // Set last 2 characters to padding char + encodedCharIndexes[3] = 64; + encodedCharIndexes[2] = 64; + break; + + case 1: + // Set last character to padding char + encodedCharIndexes[3] = 64; + break; + + default: + break; + // No padding - proceed + } // Now we will grab each appropriate character out of our keystring + // based on our index array and append it to the output string + + + for (var _jnx = 0; _jnx < encodedCharIndexes.length; ++_jnx) { + output += _keyStr.charAt(encodedCharIndexes[_jnx]); + } + } + + return output; +} + +var Url$1 = window.URL || window.webkitURL; +/** + * A middleware for transforming XHR loaded Blobs into more useful objects + * + * @memberof middleware + * @function parsing + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.parsing); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function parsing(resource, next) { + if (!resource.data) { + next(); + return; + } // if this was an XHR load of a blob + + + if (resource.xhr && resource.xhrType === Resource$1.XHR_RESPONSE_TYPE.BLOB) { + // if there is no blob support we probably got a binary string back + if (!window.Blob || typeof resource.data === 'string') { + var type = resource.xhr.getResponseHeader('content-type'); // this is an image, convert the binary string into a data url + + if (type && type.indexOf('image') === 0) { + resource.data = new Image(); + resource.data.src = "data:" + type + ";base64," + encodeBinary(resource.xhr.responseText); + resource.type = Resource$1.TYPE.IMAGE; // wait until the image loads and then callback + + resource.data.onload = function () { + resource.data.onload = null; + next(); + }; // next will be called on load + + + return; + } + } // if content type says this is an image, then we should transform the blob into an Image object + else if (resource.data.type.indexOf('image') === 0) { + var src = Url$1.createObjectURL(resource.data); + resource.blob = resource.data; + resource.data = new Image(); + resource.data.src = src; + resource.type = Resource$1.TYPE.IMAGE; // cleanup the no longer used blob after the image loads + // TODO: Is this correct? Will the image be invalid after revoking? + + resource.data.onload = function () { + Url$1.revokeObjectURL(src); + resource.data.onload = null; + next(); + }; // next will be called on load. + + + return; + } + } + + next(); +} + +/** + * @namespace middleware + */ + +var index = ({ + caching: caching, + parsing: parsing +}); + +var MAX_PROGRESS = 100; +var rgxExtractUrlHash = /(#[\w-]+)?$/; +/** + * Manages the state and loading of multiple resources to load. + * + * @class + */ + +var Loader = +/*#__PURE__*/ +function () { + /** + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ + function Loader(baseUrl, concurrency) { + var _this = this; + + if (baseUrl === void 0) { + baseUrl = ''; + } + + if (concurrency === void 0) { + concurrency = 10; + } + + /** + * The base url for all resources loaded by this loader. + * + * @member {string} + */ + this.baseUrl = baseUrl; + /** + * The progress percent of the loader going through the queue. + * + * @member {number} + * @default 0 + */ + + this.progress = 0; + /** + * Loading state of the loader, true if it is currently loading resources. + * + * @member {boolean} + * @default false + */ + + this.loading = false; + /** + * A querystring to append to every URL added to the loader. + * + * This should be a valid query string *without* the question-mark (`?`). The loader will + * also *not* escape values for you. Make sure to escape your parameters with + * [`encodeURIComponent`](https://mdn.io/encodeURIComponent) before assigning this property. + * + * @example + * const loader = new Loader(); + * + * loader.defaultQueryString = 'user=me&password=secret'; + * + * // This will request 'image.png?user=me&password=secret' + * loader.add('image.png').load(); + * + * loader.reset(); + * + * // This will request 'image.png?v=1&user=me&password=secret' + * loader.add('iamge.png?v=1').load(); + * + * @member {string} + * @default '' + */ + + this.defaultQueryString = ''; + /** + * The middleware to run before loading each resource. + * + * @private + * @member {function[]} + */ + + this._beforeMiddleware = []; + /** + * The middleware to run after loading each resource. + * + * @private + * @member {function[]} + */ + + this._afterMiddleware = []; + /** + * The tracks the resources we are currently completing parsing for. + * + * @private + * @member {Resource[]} + */ + + this._resourcesParsing = []; + /** + * The `_loadResource` function bound with this object context. + * + * @private + * @member {function} + * @param {Resource} r - The resource to load + * @param {Function} d - The dequeue function + * @return {undefined} + */ + + this._boundLoadResource = function (r, d) { + return _this._loadResource(r, d); + }; + /** + * The resources waiting to be loaded. + * + * @private + * @member {Resource[]} + */ + + + this._queue = queue(this._boundLoadResource, concurrency); + + this._queue.pause(); + /** + * All the resources for this loader keyed by name. + * + * @member {object} + */ + + + this.resources = {}; + /** + * Dispatched once per loaded or errored resource. + * + * The callback looks like {@link Loader.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once per errored resource. + * + * The callback looks like {@link Loader.OnErrorSignal}. + * + * @member {Signal} + */ + + this.onError = new Signal(); + /** + * Dispatched once per loaded resource. + * + * The callback looks like {@link Loader.OnLoadSignal}. + * + * @member {Signal} + */ + + this.onLoad = new Signal(); + /** + * Dispatched when the loader begins to process the queue. + * + * The callback looks like {@link Loader.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched when the queued resources all load. + * + * The callback looks like {@link Loader.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); // Add default before middleware + + for (var i = 0; i < Loader._defaultBeforeMiddleware.length; ++i) { + this.pre(Loader._defaultBeforeMiddleware[i]); + } // Add default after middleware + + + for (var _i = 0; _i < Loader._defaultAfterMiddleware.length; ++_i) { + this.use(Loader._defaultAfterMiddleware[_i]); + } + } + /** + * When the progress changes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnProgressSignal + * @param {Loader} loader - The loader the progress is advancing on. + * @param {Resource} resource - The resource that has completed or failed to cause the progress to advance. + */ + + /** + * When an error occurrs the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnErrorSignal + * @param {Loader} loader - The loader the error happened in. + * @param {Resource} resource - The resource that caused the error. + */ + + /** + * When a load completes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnLoadSignal + * @param {Loader} loader - The loader that laoded the resource. + * @param {Resource} resource - The resource that has completed loading. + */ + + /** + * When the loader starts loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnStartSignal + * @param {Loader} loader - The loader that has started loading resources. + */ + + /** + * When the loader completes loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnCompleteSignal + * @param {Loader} loader - The loader that has finished loading resources. + */ + + /** + * Options for a call to `.add()`. + * + * @see Loader#add + * + * @typedef {object} IAddOptions + * @property {string} [name] - The name of the resource to load, if not passed the url is used. + * @property {string} [key] - Alias for `name`. + * @property {string} [url] - The url for this resource, relative to the baseUrl of this loader. + * @property {string|boolean} [crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @property {number} [timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @property {Resource.LOAD_TYPE} [loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @property {Resource.XHR_RESPONSE_TYPE} [xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @property {Resource.OnCompleteSignal} [onComplete] - Callback to add an an onComplete signal istener. + * @property {Resource.OnCompleteSignal} [callback] - Alias for `onComplete`. + * @property {Resource.IMetadata} [metadata] - Extra configuration for middleware and the Resource object. + */ + + /* eslint-disable require-jsdoc,valid-jsdoc */ + + /** + * Adds a resource (or multiple resources) to the loader queue. + * + * This function can take a wide variety of different parameters. The only thing that is always + * required the url to load. All the following will work: + * + * ```js + * loader + * // normal param syntax + * .add('key', 'http://...', function () {}) + * .add('http://...', function () {}) + * .add('http://...') + * + * // object syntax + * .add({ + * name: 'key2', + * url: 'http://...' + * }, function () {}) + * .add({ + * url: 'http://...' + * }, function () {}) + * .add({ + * name: 'key3', + * url: 'http://...' + * onComplete: function () {} + * }) + * .add({ + * url: 'https://...', + * onComplete: function () {}, + * crossOrigin: true + * }) + * + * // you can also pass an array of objects or urls or both + * .add([ + * { name: 'key4', url: 'http://...', onComplete: function () {} }, + * { url: 'http://...', onComplete: function () {} }, + * 'http://...' + * ]) + * + * // and you can use both params and options + * .add('key', 'http://...', { crossOrigin: true }, function () {}) + * .add('http://...', { crossOrigin: true }, function () {}); + * ``` + * + * @function + * @variation 1 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 2 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 3 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 4 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 5 + * @param {IAddOptions} options - The options for the load. This object must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 6 + * @param {Array} resources - An array of resources to load, where each is + * either an object with the options or a string url. If you pass an object, it must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + + var _proto = Loader.prototype; + + _proto.add = function add(name, url, options, cb) { + // special case of an array of objects or urls + if (Array.isArray(name)) { + for (var i = 0; i < name.length; ++i) { + this.add(name[i]); + } + + return this; + } // if an object is passed instead of params + + + if (typeof name === 'object') { + cb = url || name.callback || name.onComplete; + options = name; + url = name.url; + name = name.name || name.key || name.url; + } // case where no name is passed shift all args over by one. + + + if (typeof url !== 'string') { + cb = options; + options = url; + url = name; + } // now that we shifted make sure we have a proper url. + + + if (typeof url !== 'string') { + throw new Error('No url passed to add resource to loader.'); + } // options are optional so people might pass a function and no options + + + if (typeof options === 'function') { + cb = options; + options = null; + } // if loading already you can only add resources that have a parent. + + + if (this.loading && (!options || !options.parentResource)) { + throw new Error('Cannot add resources while the loader is running.'); + } // check if resource already exists. + + + if (this.resources[name]) { + throw new Error("Resource named \"" + name + "\" already exists."); + } // add base url if this isn't an absolute url + + + url = this._prepareUrl(url); // create the store the resource + + this.resources[name] = new Resource$1(name, url, options); + + if (typeof cb === 'function') { + this.resources[name].onAfterMiddleware.once(cb); + } // if actively loading, make sure to adjust progress chunks for that parent and its children + + + if (this.loading) { + var parent = options.parentResource; + var incompleteChildren = []; + + for (var _i2 = 0; _i2 < parent.children.length; ++_i2) { + if (!parent.children[_i2].isComplete) { + incompleteChildren.push(parent.children[_i2]); + } + } + + var fullChunk = parent.progressChunk * (incompleteChildren.length + 1); // +1 for parent + + var eachChunk = fullChunk / (incompleteChildren.length + 2); // +2 for parent & new child + + parent.children.push(this.resources[name]); + parent.progressChunk = eachChunk; + + for (var _i3 = 0; _i3 < incompleteChildren.length; ++_i3) { + incompleteChildren[_i3].progressChunk = eachChunk; + } + + this.resources[name].progressChunk = eachChunk; + } // add the resource to the queue + + + this._queue.push(this.resources[name]); + + return this; + } + /* eslint-enable require-jsdoc,valid-jsdoc */ + + /** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.pre = function pre(fn) { + this._beforeMiddleware.push(fn); + + return this; + } + /** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.use = function use(fn) { + this._afterMiddleware.push(fn); + + return this; + } + /** + * Resets the queue of the loader to prepare for a new load. + * + * @return {this} Returns itself. + */ + ; + + _proto.reset = function reset() { + this.progress = 0; + this.loading = false; + + this._queue.kill(); + + this._queue.pause(); // abort all resource loads + + + for (var k in this.resources) { + var res = this.resources[k]; + + if (res._onLoadBinding) { + res._onLoadBinding.detach(); + } + + if (res.isLoading) { + res.abort(); + } + } + + this.resources = {}; + return this; + } + /** + * Starts loading the queued resources. + * + * @param {function} [cb] - Optional callback that will be bound to the `complete` event. + * @return {this} Returns itself. + */ + ; + + _proto.load = function load(cb) { + // register complete callback if they pass one + if (typeof cb === 'function') { + this.onComplete.once(cb); + } // if the queue has already started we are done here + + + if (this.loading) { + return this; + } + + if (this._queue.idle()) { + this._onStart(); + + this._onComplete(); + } else { + // distribute progress chunks + var numTasks = this._queue._tasks.length; + var chunk = MAX_PROGRESS / numTasks; + + for (var i = 0; i < this._queue._tasks.length; ++i) { + this._queue._tasks[i].data.progressChunk = chunk; + } // notify we are starting + + + this._onStart(); // start loading + + + this._queue.resume(); + } + + return this; + } + /** + * The number of resources to load concurrently. + * + * @member {number} + * @default 10 + */ + ; + + /** + * Prepares a url for usage based on the configuration of this object + * + * @private + * @param {string} url - The url to prepare. + * @return {string} The prepared url. + */ + _proto._prepareUrl = function _prepareUrl(url) { + var parsedUrl = parseUri(url, { + strictMode: true + }); + var result; // absolute url, just use it as is. + + if (parsedUrl.protocol || !parsedUrl.path || url.indexOf('//') === 0) { + result = url; + } // if baseUrl doesn't end in slash and url doesn't start with slash, then add a slash inbetween + else if (this.baseUrl.length && this.baseUrl.lastIndexOf('/') !== this.baseUrl.length - 1 && url.charAt(0) !== '/') { + result = this.baseUrl + "/" + url; + } else { + result = this.baseUrl + url; + } // if we need to add a default querystring, there is a bit more work + + + if (this.defaultQueryString) { + var hash = rgxExtractUrlHash.exec(result)[0]; + result = result.substr(0, result.length - hash.length); + + if (result.indexOf('?') !== -1) { + result += "&" + this.defaultQueryString; + } else { + result += "?" + this.defaultQueryString; + } + + result += hash; + } + + return result; + } + /** + * Loads a single resource. + * + * @private + * @param {Resource} resource - The resource to load. + * @param {function} dequeue - The function to call when we need to dequeue this item. + */ + ; + + _proto._loadResource = function _loadResource(resource, dequeue) { + var _this2 = this; + + resource._dequeue = dequeue; // run before middleware + + eachSeries(this._beforeMiddleware, function (fn, next) { + fn.call(_this2, resource, function () { + // if the before middleware marks the resource as complete, + // break and don't process any more before middleware + next(resource.isComplete ? {} : null); + }); + }, function () { + if (resource.isComplete) { + _this2._onLoad(resource); + } else { + resource._onLoadBinding = resource.onComplete.once(_this2._onLoad, _this2); + resource.load(); + } + }, true); + } + /** + * Called once loading has started. + * + * @private + */ + ; + + _proto._onStart = function _onStart() { + this.progress = 0; + this.loading = true; + this.onStart.dispatch(this); + } + /** + * Called once each resource has loaded. + * + * @private + */ + ; + + _proto._onComplete = function _onComplete() { + this.progress = MAX_PROGRESS; + this.loading = false; + this.onComplete.dispatch(this, this.resources); + } + /** + * Called each time a resources is loaded. + * + * @private + * @param {Resource} resource - The resource that was loaded + */ + ; + + _proto._onLoad = function _onLoad(resource) { + var _this3 = this; + + resource._onLoadBinding = null; // remove this resource from the async queue, and add it to our list of resources that are being parsed + + this._resourcesParsing.push(resource); + + resource._dequeue(); // run all the after middleware for this resource + + + eachSeries(this._afterMiddleware, function (fn, next) { + fn.call(_this3, resource, next); + }, function () { + resource.onAfterMiddleware.dispatch(resource); + _this3.progress = Math.min(MAX_PROGRESS, _this3.progress + resource.progressChunk); + + _this3.onProgress.dispatch(_this3, resource); + + if (resource.error) { + _this3.onError.dispatch(resource.error, _this3, resource); + } else { + _this3.onLoad.dispatch(_this3, resource); + } + + _this3._resourcesParsing.splice(_this3._resourcesParsing.indexOf(resource), 1); // do completion check + + + if (_this3._queue.idle() && _this3._resourcesParsing.length === 0) { + _this3._onComplete(); + } + }, true); + }; + + _createClass(Loader, [{ + key: "concurrency", + get: function get() { + return this._queue.concurrency; + } // eslint-disable-next-line require-jsdoc + , + set: function set(concurrency) { + this._queue.concurrency = concurrency; + } + }]); + + return Loader; +}(); +/** + * A default array of middleware to run before loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + + +Loader._defaultBeforeMiddleware = []; +/** + * A default array of middleware to run after loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + +Loader._defaultAfterMiddleware = []; +/** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + +Loader.pre = function LoaderPreStatic(fn) { + Loader._defaultBeforeMiddleware.push(fn); + + return Loader; +}; +/** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + + +Loader.use = function LoaderUseStatic(fn) { + Loader._defaultAfterMiddleware.push(fn); + + return Loader; +}; + +/*! + * @pixi/loaders - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/loaders is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Loader plugin for handling Texture resources. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var TextureLoader = function TextureLoader () {}; + +TextureLoader.use = function use (resource, next) +{ + // create a new texture if the data is an Image object + if (resource.data && resource.type === Resource$1.TYPE.IMAGE) + { + resource.texture = Texture.fromLoader( + resource.data, + resource.url, + resource.name + ); + } + next(); +}; + +/** + * The new loader, extends Resource Loader by Chad Engler: https://github.com/englercj/resource-loader + * + * ```js + * const loader = PIXI.Loader.shared; // PixiJS exposes a premade instance for you to use. + * //or + * const loader = new PIXI.Loader(); // you can also create your own if you want + * + * const sprites = {}; + * + * // Chainable `add` to enqueue a resource + * loader.add('bunny', 'data/bunny.png') + * .add('spaceship', 'assets/spritesheet.json'); + * loader.add('scoreFont', 'assets/score.fnt'); + * + * // Chainable `pre` to add a middleware that runs for each resource, *before* loading that resource. + * // This is useful to implement custom caching modules (using filesystem, indexeddb, memory, etc). + * loader.pre(cachingMiddleware); + * + * // Chainable `use` to add a middleware that runs for each resource, *after* loading that resource. + * // This is useful to implement custom parsing modules (like spritesheet parsers, spine parser, etc). + * loader.use(parsingMiddleware); + * + * // The `load` method loads the queue of resources, and calls the passed in callback called once all + * // resources have loaded. + * loader.load((loader, resources) => { + * // resources is an object where the key is the name of the resource loaded and the value is the resource object. + * // They have a couple default properties: + * // - `url`: The URL that the resource was loaded from + * // - `error`: The error that happened when trying to load (if any) + * // - `data`: The raw data that was loaded + * // also may contain other properties based on the middleware that runs. + * sprites.bunny = new PIXI.TilingSprite(resources.bunny.texture); + * sprites.spaceship = new PIXI.TilingSprite(resources.spaceship.texture); + * sprites.scoreFont = new PIXI.TilingSprite(resources.scoreFont.texture); + * }); + * + * // throughout the process multiple signals can be dispatched. + * loader.onProgress.add(() => {}); // called once per loaded/errored file + * loader.onError.add(() => {}); // called once per errored file + * loader.onLoad.add(() => {}); // called once per loaded file + * loader.onComplete.add(() => {}); // called once when the queued resources all load. + * ``` + * + * @see https://github.com/englercj/resource-loader + * + * @class Loader + * @memberof PIXI + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ +var Loader$1 = /*@__PURE__*/(function (ResourceLoader) { + function Loader(baseUrl, concurrency) + { + var this$1 = this; + + ResourceLoader.call(this, baseUrl, concurrency); + eventemitter3.call(this); + + for (var i = 0; i < Loader._plugins.length; ++i) + { + var plugin = Loader._plugins[i]; + var pre = plugin.pre; + var use = plugin.use; + + if (pre) + { + this.pre(pre); + } + + if (use) + { + this.use(use); + } + } + + // Compat layer, translate the new v2 signals into old v1 events. + this.onStart.add(function (l) { return this$1.emit('start', l); }); + this.onProgress.add(function (l, r) { return this$1.emit('progress', l, r); }); + this.onError.add(function (e, l, r) { return this$1.emit('error', e, l, r); }); + this.onLoad.add(function (l, r) { return this$1.emit('load', l, r); }); + this.onComplete.add(function (l, r) { return this$1.emit('complete', l, r); }); + + /** + * If this loader cannot be destroyed. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + } + + if ( ResourceLoader ) Loader.__proto__ = ResourceLoader; + Loader.prototype = Object.create( ResourceLoader && ResourceLoader.prototype ); + Loader.prototype.constructor = Loader; + + var staticAccessors = { shared: { configurable: true } }; + + /** + * Destroy the loader, removes references. + * @private + */ + Loader.prototype.destroy = function destroy () + { + if (!this._protected) + { + this.removeAllListeners(); + this.reset(); + } + }; + + /** + * A premade instance of the loader that can be used to load resources. + * @name shared + * @type {PIXI.Loader} + * @static + * @memberof PIXI.Loader + */ + staticAccessors.shared.get = function () + { + var shared = Loader._shared; + + if (!shared) + { + shared = new Loader(); + shared._protected = true; + Loader._shared = shared; + } + + return shared; + }; + + Object.defineProperties( Loader, staticAccessors ); + + return Loader; +}(Loader)); + +// Copy EE3 prototype (mixin) +Object.assign(Loader$1.prototype, eventemitter3.prototype); + +/** + * Collection of all installed `use` middleware for Loader. + * + * @static + * @member {Array} _plugins + * @memberof PIXI.Loader + * @private + */ +Loader$1._plugins = []; + +/** + * Adds a Loader plugin for the global shared loader and all + * new Loader instances created. + * + * @static + * @method registerPlugin + * @memberof PIXI.Loader + * @param {PIXI.ILoaderPlugin} plugin - The plugin to add + * @return {PIXI.Loader} Reference to PIXI.Loader for chaining + */ +Loader$1.registerPlugin = function registerPlugin(plugin) +{ + Loader$1._plugins.push(plugin); + + if (plugin.add) + { + plugin.add(); + } + + return Loader$1; +}; + +// parse any blob into more usable objects (e.g. Image) +Loader$1.registerPlugin({ use: index.parsing }); + +// parse any Image objects into textures +Loader$1.registerPlugin(TextureLoader); + +/** + * Plugin to be installed for handling specific Loader resources. + * + * @memberof PIXI + * @typedef ILoaderPlugin + * @property {function} [add] - Function to call immediate after registering plugin. + * @property {PIXI.Loader.loaderMiddleware} [pre] - Middleware function to run before load, the + * arguments for this are `(resource, next)` + * @property {PIXI.Loader.loaderMiddleware} [use] - Middleware function to run after load, the + * arguments for this are `(resource, next)` + */ + +/** + * @memberof PIXI.Loader + * @callback loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onStart + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onProgress + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onError + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onLoad + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onComplete + */ + +/** + * Application plugin for supporting loader option. Installing the LoaderPlugin + * is not necessary if using **pixi.js** or **pixi.js-legacy**. + * @example + * import {AppLoaderPlugin} from '@pixi/loaders'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(AppLoaderPlugin); + * @class + * @memberof PIXI + */ +var AppLoaderPlugin = function AppLoaderPlugin () {}; + +AppLoaderPlugin.init = function init (options) +{ + options = Object.assign({ + sharedLoader: false, + }, options); + + /** + * Loader instance to help with asset loading. + * @name PIXI.Application#loader + * @type {PIXI.Loader} + * @readonly + */ + this.loader = options.sharedLoader ? Loader$1.shared : new Loader$1(); +}; + +/** + * Called when application destroyed + * @private + */ +AppLoaderPlugin.destroy = function destroy () +{ + if (this.loader) + { + this.loader.destroy(); + this.loader = null; + } +}; + +/** + * Reference to **{@link https://github.com/englercj/resource-loader + * resource-loader}**'s Resource class. + * @see http://englercj.github.io/resource-loader/Resource.html + * @class LoaderResource + * @memberof PIXI + */ +var LoaderResource = Resource$1; + +/*! + * @pixi/particles - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/particles is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that + * they now share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleBuffer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleBuffer.java + */ + +/** + * The particle buffer manages the static and dynamic buffers for a particle container. + * + * @class + * @private + * @memberof PIXI + */ +var ParticleBuffer = function ParticleBuffer(properties, dynamicPropertyFlags, size) +{ + this.geometry = new Geometry(); + + this.indexBuffer = null; + + /** + * The number of particles the buffer can hold + * + * @private + * @member {number} + */ + this.size = size; + + /** + * A list of the properties that are dynamic. + * + * @private + * @member {object[]} + */ + this.dynamicProperties = []; + + /** + * A list of the properties that are static. + * + * @private + * @member {object[]} + */ + this.staticProperties = []; + + for (var i = 0; i < properties.length; ++i) + { + var property = properties[i]; + + // Make copy of properties object so that when we edit the offset it doesn't + // change all other instances of the object literal + property = { + attributeName: property.attributeName, + size: property.size, + uploadFunction: property.uploadFunction, + type: property.type || TYPES.FLOAT, + offset: property.offset, + }; + + if (dynamicPropertyFlags[i]) + { + this.dynamicProperties.push(property); + } + else + { + this.staticProperties.push(property); + } + } + + this.staticStride = 0; + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + + this.dynamicStride = 0; + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this._updateID = 0; + + this.initBuffers(); +}; + +/** + * Sets up the renderer context and necessary buffers. + * + * @private + */ +ParticleBuffer.prototype.initBuffers = function initBuffers () +{ + var geometry = this.geometry; + + var dynamicOffset = 0; + + /** + * Holds the indices of the geometry (quads) to draw + * + * @member {Uint16Array} + * @private + */ + this.indexBuffer = new Buffer$1(createIndicesForQuads(this.size), true, true); + geometry.addIndex(this.indexBuffer); + + this.dynamicStride = 0; + + for (var i = 0; i < this.dynamicProperties.length; ++i) + { + var property = this.dynamicProperties[i]; + + property.offset = dynamicOffset; + dynamicOffset += property.size; + this.dynamicStride += property.size; + } + + var dynBuffer = new ArrayBuffer(this.size * this.dynamicStride * 4 * 4); + + this.dynamicData = new Float32Array(dynBuffer); + this.dynamicDataUint32 = new Uint32Array(dynBuffer); + this.dynamicBuffer = new Buffer$1(this.dynamicData, false, false); + + // static // + var staticOffset = 0; + + this.staticStride = 0; + + for (var i$1 = 0; i$1 < this.staticProperties.length; ++i$1) + { + var property$1 = this.staticProperties[i$1]; + + property$1.offset = staticOffset; + staticOffset += property$1.size; + this.staticStride += property$1.size; + } + + var statBuffer = new ArrayBuffer(this.size * this.staticStride * 4 * 4); + + this.staticData = new Float32Array(statBuffer); + this.staticDataUint32 = new Uint32Array(statBuffer); + this.staticBuffer = new Buffer$1(this.staticData, true, false); + + for (var i$2 = 0; i$2 < this.dynamicProperties.length; ++i$2) + { + var property$2 = this.dynamicProperties[i$2]; + + geometry.addAttribute( + property$2.attributeName, + this.dynamicBuffer, + 0, + property$2.type === TYPES.UNSIGNED_BYTE, + property$2.type, + this.dynamicStride * 4, + property$2.offset * 4 + ); + } + + for (var i$3 = 0; i$3 < this.staticProperties.length; ++i$3) + { + var property$3 = this.staticProperties[i$3]; + + geometry.addAttribute( + property$3.attributeName, + this.staticBuffer, + 0, + property$3.type === TYPES.UNSIGNED_BYTE, + property$3.type, + this.staticStride * 4, + property$3.offset * 4 + ); + } +}; + +/** + * Uploads the dynamic properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadDynamic = function uploadDynamic (children, startIndex, amount) +{ + for (var i = 0; i < this.dynamicProperties.length; i++) + { + var property = this.dynamicProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.dynamicDataUint32 : this.dynamicData, + this.dynamicStride, property.offset); + } + + this.dynamicBuffer._updateID++; +}; + +/** + * Uploads the static properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadStatic = function uploadStatic (children, startIndex, amount) +{ + for (var i = 0; i < this.staticProperties.length; i++) + { + var property = this.staticProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.staticDataUint32 : this.staticData, + this.staticStride, property.offset); + } + + this.staticBuffer._updateID++; +}; + +/** + * Destroys the ParticleBuffer. + * + * @private + */ +ParticleBuffer.prototype.destroy = function destroy () +{ + this.indexBuffer = null; + + this.dynamicProperties = null; + // this.dynamicBuffer.destroy(); + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this.staticProperties = null; + // this.staticBuffer.destroy(); + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + // all buffers are destroyed inside geometry + this.geometry.destroy(); +}; + +var vertex$1 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\n\nattribute vec2 aPositionCoord;\nattribute float aRotation;\n\nuniform mat3 translationMatrix;\nuniform vec4 uColor;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nvoid main(void){\n float x = (aVertexPosition.x) * cos(aRotation) - (aVertexPosition.y) * sin(aRotation);\n float y = (aVertexPosition.x) * sin(aRotation) + (aVertexPosition.y) * cos(aRotation);\n\n vec2 v = vec2(x, y);\n v = v + aPositionCoord;\n\n gl_Position = vec4((translationMatrix * vec3(v, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vColor = aColor * uColor;\n}\n"; + +var fragment$1 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n vec4 color = texture2D(uSampler, vTextureCoord) * vColor;\n gl_FragColor = color;\n}"; + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that they now + * share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleRenderer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleRenderer.java + */ + +/** + * Renderer for Particles that is designer for speed over feature set. + * + * @class + * @memberof PIXI + */ +var ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function ParticleRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + // 65535 is max vertex index in the index buffer (see ParticleRenderer) + // so max number of particles is 65536 / 4 = 16384 + // and max number of element in the index buffer is 16384 * 6 = 98304 + // Creating a full index buffer, overhead is 98304 * 2 = 196Ko + // let numIndices = 98304; + + /** + * The default shader that is used if a sprite doesn't have a more specific one. + * + * @member {PIXI.Shader} + */ + this.shader = null; + + this.properties = null; + + this.tempMatrix = new Matrix(); + + this.properties = [ + // verticesData + { + attributeName: 'aVertexPosition', + size: 2, + uploadFunction: this.uploadVertices, + offset: 0, + }, + // positionData + { + attributeName: 'aPositionCoord', + size: 2, + uploadFunction: this.uploadPosition, + offset: 0, + }, + // rotationData + { + attributeName: 'aRotation', + size: 1, + uploadFunction: this.uploadRotation, + offset: 0, + }, + // uvsData + { + attributeName: 'aTextureCoord', + size: 2, + uploadFunction: this.uploadUvs, + offset: 0, + }, + // tintData + { + attributeName: 'aColor', + size: 1, + type: TYPES.UNSIGNED_BYTE, + uploadFunction: this.uploadTint, + offset: 0, + } ]; + + this.shader = Shader.from(vertex$1, fragment$1, {}); + } + + if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer; + ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + ParticleRenderer.prototype.constructor = ParticleRenderer; + + /** + * Renders the particle container object. + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + */ + ParticleRenderer.prototype.render = function render (container) + { + var children = container.children; + var maxSize = container._maxSize; + var batchSize = container._batchSize; + var renderer = this.renderer; + var totalChildren = children.length; + + if (totalChildren === 0) + { + return; + } + else if (totalChildren > maxSize && !container.autoResize) + { + totalChildren = maxSize; + } + + var buffers = container._buffers; + + if (!buffers) + { + buffers = container._buffers = this.generateBuffers(container); + } + + var baseTexture = children[0]._texture.baseTexture; + + // if the uvs have not updated then no point rendering just yet! + this.renderer.state.setBlendMode(correctBlendMode(container.blendMode, baseTexture.premultiplyAlpha)); + + var gl = renderer.gl; + + var m = container.worldTransform.copyTo(this.tempMatrix); + + m.prepend(renderer.globalUniforms.uniforms.projectionMatrix); + + this.shader.uniforms.translationMatrix = m.toArray(true); + + this.shader.uniforms.uColor = premultiplyRgba(container.tintRgb, + container.worldAlpha, this.shader.uniforms.uColor, baseTexture.premultiplyAlpha); + + this.shader.uniforms.uSampler = baseTexture; + + this.renderer.shader.bind(this.shader); + + var updateStatic = false; + + // now lets upload and render the buffers.. + for (var i = 0, j = 0; i < totalChildren; i += batchSize, j += 1) + { + var amount = (totalChildren - i); + + if (amount > batchSize) + { + amount = batchSize; + } + + if (j >= buffers.length) + { + buffers.push(this._generateOneMoreBuffer(container)); + } + + var buffer = buffers[j]; + + // we always upload the dynamic + buffer.uploadDynamic(children, i, amount); + + var bid = container._bufferUpdateIDs[j] || 0; + + updateStatic = updateStatic || (buffer._updateID < bid); + // we only upload the static content when we have to! + if (updateStatic) + { + buffer._updateID = container._updateID; + buffer.uploadStatic(children, i, amount); + } + + // bind the buffer + renderer.geometry.bind(buffer.geometry); + gl.drawElements(gl.TRIANGLES, amount * 6, gl.UNSIGNED_SHORT, 0); + } + }; + + /** + * Creates one particle buffer for each child in the container we want to render and updates internal properties + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer[]} The buffers + * @private + */ + ParticleRenderer.prototype.generateBuffers = function generateBuffers (container) + { + var buffers = []; + var size = container._maxSize; + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + for (var i = 0; i < size; i += batchSize) + { + buffers.push(new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize)); + } + + return buffers; + }; + + /** + * Creates one more particle buffer, because container has autoResize feature + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer} generated buffer + * @private + */ + ParticleRenderer.prototype._generateOneMoreBuffer = function _generateOneMoreBuffer (container) + { + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + return new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize); + }; + + /** + * Uploads the vertices. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their vertices uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadVertices = function uploadVertices (children, startIndex, amount, array, stride, offset) + { + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var texture = sprite._texture; + var sx = sprite.scale.x; + var sy = sprite.scale.y; + var trim = texture.trim; + var orig = texture.orig; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the + // extra space before transforming the sprite coords.. + w1 = trim.x - (sprite.anchor.x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (sprite.anchor.y * orig.height); + h0 = h1 + trim.height; + } + else + { + w0 = (orig.width) * (1 - sprite.anchor.x); + w1 = (orig.width) * -sprite.anchor.x; + + h0 = orig.height * (1 - sprite.anchor.y); + h1 = orig.height * -sprite.anchor.y; + } + + array[offset] = w1 * sx; + array[offset + 1] = h1 * sy; + + array[offset + stride] = w0 * sx; + array[offset + stride + 1] = h1 * sy; + + array[offset + (stride * 2)] = w0 * sx; + array[offset + (stride * 2) + 1] = h0 * sy; + + array[offset + (stride * 3)] = w1 * sx; + array[offset + (stride * 3) + 1] = h0 * sy; + + offset += stride * 4; + } + }; + + /** + * Uploads the position. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their positions uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadPosition = function uploadPosition (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spritePosition = children[startIndex + i].position; + + array[offset] = spritePosition.x; + array[offset + 1] = spritePosition.y; + + array[offset + stride] = spritePosition.x; + array[offset + stride + 1] = spritePosition.y; + + array[offset + (stride * 2)] = spritePosition.x; + array[offset + (stride * 2) + 1] = spritePosition.y; + + array[offset + (stride * 3)] = spritePosition.x; + array[offset + (stride * 3) + 1] = spritePosition.y; + + offset += stride * 4; + } + }; + + /** + * Uploads the rotiation. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadRotation = function uploadRotation (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spriteRotation = children[startIndex + i].rotation; + + array[offset] = spriteRotation; + array[offset + stride] = spriteRotation; + array[offset + (stride * 2)] = spriteRotation; + array[offset + (stride * 3)] = spriteRotation; + + offset += stride * 4; + } + }; + + /** + * Uploads the Uvs + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadUvs = function uploadUvs (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var textureUvs = children[startIndex + i]._texture._uvs; + + if (textureUvs) + { + array[offset] = textureUvs.x0; + array[offset + 1] = textureUvs.y0; + + array[offset + stride] = textureUvs.x1; + array[offset + stride + 1] = textureUvs.y1; + + array[offset + (stride * 2)] = textureUvs.x2; + array[offset + (stride * 2) + 1] = textureUvs.y2; + + array[offset + (stride * 3)] = textureUvs.x3; + array[offset + (stride * 3) + 1] = textureUvs.y3; + + offset += stride * 4; + } + else + { + // TODO you know this can be easier! + array[offset] = 0; + array[offset + 1] = 0; + + array[offset + stride] = 0; + array[offset + stride + 1] = 0; + + array[offset + (stride * 2)] = 0; + array[offset + (stride * 2) + 1] = 0; + + array[offset + (stride * 3)] = 0; + array[offset + (stride * 3) + 1] = 0; + + offset += stride * 4; + } + } + }; + + /** + * Uploads the tint. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadTint = function uploadTint (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var premultiplied = sprite._texture.baseTexture.premultiplyAlpha; + var alpha = sprite.alpha; + // we dont call extra function if alpha is 1.0, that's faster + var argb = alpha < 1.0 && premultiplied ? premultiplyTint(sprite._tintRGB, alpha) + : sprite._tintRGB + (alpha * 255 << 24); + + array[offset] = argb; + array[offset + stride] = argb; + array[offset + (stride * 2)] = argb; + array[offset + (stride * 3)] = argb; + + offset += stride * 4; + } + }; + + /** + * Destroys the ParticleRenderer. + */ + ParticleRenderer.prototype.destroy = function destroy () + { + ObjectRenderer.prototype.destroy.call(this); + + if (this.shader) + { + this.shader.destroy(); + this.shader = null; + } + + this.tempMatrix = null; + }; + + return ParticleRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/spritesheet - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/spritesheet is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Utility class for maintaining reference to a collection + * of Textures on a single Spritesheet. + * + * To access a sprite sheet from your code pass its JSON data file to Pixi's loader: + * + * ```js + * PIXI.Loader.shared.add("images/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["images/spritesheet.json"].spritesheet; + * ... + * } + * ``` + * With the `sheet.textures` you can create Sprite objects,`sheet.animations` can be used to create an AnimatedSprite. + * + * Sprite sheets can be packed using tools like {@link https://codeandweb.com/texturepacker|TexturePacker}, + * {@link https://renderhjs.net/shoebox/|Shoebox} or {@link https://github.com/krzysztof-o/spritesheet.js|Spritesheet.js}. + * Default anchor points (see {@link PIXI.Texture#defaultAnchor}) and grouping of animation sprites are currently only + * supported by TexturePacker. + * + * @class + * @memberof PIXI + */ +var Spritesheet = function Spritesheet(baseTexture, data, resolutionFilename) +{ + if ( resolutionFilename === void 0 ) resolutionFilename = null; + + /** + * Reference to ths source texture + * @type {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * A map containing all textures of the sprite sheet. + * Can be used to create a {@link PIXI.Sprite|Sprite}: + * ```js + * new PIXI.Sprite(sheet.textures["image.png"]); + * ``` + * @member {Object} + */ + this.textures = {}; + + /** + * A map containing the textures for each animation. + * Can be used to create an {@link PIXI.AnimatedSprite|AnimatedSprite}: + * ```js + * new PIXI.AnimatedSprite(sheet.animations["anim_name"]) + * ``` + * @member {Object} + */ + this.animations = {}; + + /** + * Reference to the original JSON data. + * @type {Object} + */ + this.data = data; + + /** + * The resolution of the spritesheet. + * @type {number} + */ + this.resolution = this._updateResolution( + resolutionFilename + || (this.baseTexture.resource ? this.baseTexture.resource.url : null) + ); + + /** + * Map of spritesheet frames. + * @type {Object} + * @private + */ + this._frames = this.data.frames; + + /** + * Collection of frame names. + * @type {string[]} + * @private + */ + this._frameKeys = Object.keys(this._frames); + + /** + * Current batch index being processed. + * @type {number} + * @private + */ + this._batchIndex = 0; + + /** + * Callback when parse is completed. + * @type {Function} + * @private + */ + this._callback = null; +}; + +var staticAccessors$4 = { BATCH_SIZE: { configurable: true } }; + +/** + * Generate the resolution from the filename or fallback + * to the meta.scale field of the JSON data. + * + * @private + * @param {string} resolutionFilename - The filename to use for resolving + * the default resolution. + * @return {number} Resolution to use for spritesheet. + */ +staticAccessors$4.BATCH_SIZE.get = function () +{ + return 1000; +}; + +Spritesheet.prototype._updateResolution = function _updateResolution (resolutionFilename) +{ + var scale = this.data.meta.scale; + + // Use a defaultValue of `null` to check if a url-based resolution is set + var resolution = getResolutionOfUrl(resolutionFilename, null); + + // No resolution found via URL + if (resolution === null) + { + // Use the scale value or default to 1 + resolution = scale !== undefined ? parseFloat(scale) : 1; + } + + // For non-1 resolutions, update baseTexture + if (resolution !== 1) + { + this.baseTexture.setResolution(resolution); + } + + return resolution; +}; + +/** + * Parser spritesheet from loaded data. This is done asynchronously + * to prevent creating too many Texture within a single process. + * + * @param {Function} callback - Callback when complete returns + * a map of the Textures for this spritesheet. + */ +Spritesheet.prototype.parse = function parse (callback) +{ + this._batchIndex = 0; + this._callback = callback; + + if (this._frameKeys.length <= Spritesheet.BATCH_SIZE) + { + this._processFrames(0); + this._processAnimations(); + this._parseComplete(); + } + else + { + this._nextBatch(); + } +}; + +/** + * Process a batch of frames + * + * @private + * @param {number} initialFrameIndex - The index of frame to start. + */ +Spritesheet.prototype._processFrames = function _processFrames (initialFrameIndex) +{ + var frameIndex = initialFrameIndex; + var maxFrames = Spritesheet.BATCH_SIZE; + + while (frameIndex - initialFrameIndex < maxFrames && frameIndex < this._frameKeys.length) + { + var i = this._frameKeys[frameIndex]; + var data = this._frames[i]; + var rect = data.frame; + + if (rect) + { + var frame = null; + var trim = null; + var sourceSize = data.trimmed !== false && data.sourceSize + ? data.sourceSize : data.frame; + + var orig = new Rectangle( + 0, + 0, + Math.floor(sourceSize.w) / this.resolution, + Math.floor(sourceSize.h) / this.resolution + ); + + if (data.rotated) + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.h) / this.resolution, + Math.floor(rect.w) / this.resolution + ); + } + else + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + // Check to see if the sprite is trimmed + if (data.trimmed !== false && data.spriteSourceSize) + { + trim = new Rectangle( + Math.floor(data.spriteSourceSize.x) / this.resolution, + Math.floor(data.spriteSourceSize.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + this.textures[i] = new Texture( + this.baseTexture, + frame, + orig, + trim, + data.rotated ? 2 : 0, + data.anchor + ); + + // lets also add the frame to pixi's global cache for 'from' and 'fromLoader' functions + Texture.addToCache(this.textures[i], i); + } + + frameIndex++; + } +}; + +/** + * Parse animations config + * + * @private + */ +Spritesheet.prototype._processAnimations = function _processAnimations () +{ + var animations = this.data.animations || {}; + + for (var animName in animations) + { + this.animations[animName] = []; + for (var i = 0; i < animations[animName].length; i++) + { + var frameName = animations[animName][i]; + + this.animations[animName].push(this.textures[frameName]); + } + } +}; + +/** + * The parse has completed. + * + * @private + */ +Spritesheet.prototype._parseComplete = function _parseComplete () +{ + var callback = this._callback; + + this._callback = null; + this._batchIndex = 0; + callback.call(this, this.textures); +}; + +/** + * Begin the next batch of textures. + * + * @private + */ +Spritesheet.prototype._nextBatch = function _nextBatch () +{ + var this$1 = this; + + this._processFrames(this._batchIndex * Spritesheet.BATCH_SIZE); + this._batchIndex++; + setTimeout(function () { + if (this$1._batchIndex * Spritesheet.BATCH_SIZE < this$1._frameKeys.length) + { + this$1._nextBatch(); + } + else + { + this$1._processAnimations(); + this$1._parseComplete(); + } + }, 0); +}; + +/** + * Destroy Spritesheet and don't use after this. + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ +Spritesheet.prototype.destroy = function destroy (destroyBase) +{ + if ( destroyBase === void 0 ) destroyBase = false; + + for (var i in this.textures) + { + this.textures[i].destroy(); + } + this._frames = null; + this._frameKeys = null; + this.data = null; + this.textures = null; + if (destroyBase) + { + this.baseTexture.destroy(); + } + this.baseTexture = null; +}; + +Object.defineProperties( Spritesheet, staticAccessors$4 ); + +/** + * {@link PIXI.Loader Loader} middleware for loading texture atlases that have been created with + * TexturePacker or similar JSON-based spritesheet. + * + * This middleware automatically generates Texture resources. + * + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var SpritesheetLoader = function SpritesheetLoader () {}; + +SpritesheetLoader.use = function use (resource, next) +{ + var imageResourceName = (resource.name) + "_image"; + + // skip if no data, its not json, it isn't spritesheet data, or the image resource already exists + if (!resource.data + || resource.type !== LoaderResource.TYPE.JSON + || !resource.data.frames + || this.resources[imageResourceName] + ) + { + next(); + + return; + } + + var loadOptions = { + crossOrigin: resource.crossOrigin, + metadata: resource.metadata.imageMetadata, + parentResource: resource, + }; + + var resourcePath = SpritesheetLoader.getResourcePath(resource, this.baseUrl); + + // load the image for this sheet + this.add(imageResourceName, resourcePath, loadOptions, function onImageLoad(res) + { + if (res.error) + { + next(res.error); + + return; + } + + var spritesheet = new Spritesheet( + res.texture.baseTexture, + resource.data, + resource.url + ); + + spritesheet.parse(function () { + resource.spritesheet = spritesheet; + resource.textures = spritesheet.textures; + next(); + }); + }); +}; + +/** + * Get the spritesheets root path + * @param {PIXI.LoaderResource} resource - Resource to check path + * @param {string} baseUrl - Base root url + */ +SpritesheetLoader.getResourcePath = function getResourcePath (resource, baseUrl) +{ + // Prepend url path unless the resource image is a data url + if (resource.isDataUrl) + { + return resource.data.meta.image; + } + + return url.resolve(resource.url.replace(baseUrl, ''), resource.data.meta.image); +}; + +/*! + * @pixi/sprite-tiling - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite-tiling is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$1 = new Point(); + +var vertex$2 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform mat3 uTransform;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = (uTransform * vec3(aTextureCoord, 1.0)).xy;\n}\n"; + +var fragment$2 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\nuniform mat3 uMapCoord;\nuniform vec4 uClampFrame;\nuniform vec2 uClampOffset;\n\nvoid main(void)\n{\n vec2 coord = mod(vTextureCoord - uClampOffset, vec2(1.0, 1.0)) + uClampOffset;\n coord = (uMapCoord * vec3(coord, 1.0)).xy;\n coord = clamp(coord, uClampFrame.xy, uClampFrame.zw);\n\n vec4 sample = texture2D(uSampler, coord);\n gl_FragColor = sample * uColor;\n}\n"; + +var fragmentSimple = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\n\nvoid main(void)\n{\n vec4 sample = texture2D(uSampler, vTextureCoord);\n gl_FragColor = sample * uColor;\n}\n"; + +var tempMat$1 = new Matrix(); + +/** + * WebGL renderer plugin for tiling sprites + * + * @class + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function TilingSpriteRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + var uniforms = { globals: this.renderer.globalUniforms }; + + this.shader = Shader.from(vertex$2, fragment$2, uniforms); + + this.simpleShader = Shader.from(vertex$2, fragmentSimple, uniforms); + + this.quad = new QuadUv(); + } + + if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer; + TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer; + + /** + * + * @param {PIXI.TilingSprite} ts tilingSprite to be rendered + */ + TilingSpriteRenderer.prototype.render = function render (ts) + { + var renderer = this.renderer; + var quad = this.quad; + + var vertices = quad.vertices; + + vertices[0] = vertices[6] = (ts._width) * -ts.anchor.x; + vertices[1] = vertices[3] = ts._height * -ts.anchor.y; + + vertices[2] = vertices[4] = (ts._width) * (1.0 - ts.anchor.x); + vertices[5] = vertices[7] = ts._height * (1.0 - ts.anchor.y); + + if (ts.uvRespectAnchor) + { + vertices = quad.uvs; + + vertices[0] = vertices[6] = -ts.anchor.x; + vertices[1] = vertices[3] = -ts.anchor.y; + + vertices[2] = vertices[4] = 1.0 - ts.anchor.x; + vertices[5] = vertices[7] = 1.0 - ts.anchor.y; + } + + quad.invalidate(); + + var tex = ts._texture; + var baseTex = tex.baseTexture; + var lt = ts.tileTransform.localTransform; + var uv = ts.uvMatrix; + var isSimple = baseTex.isPowerOfTwo + && tex.frame.width === baseTex.width && tex.frame.height === baseTex.height; + + // auto, force repeat wrapMode for big tiling textures + if (isSimple) + { + if (!baseTex._glTextures[renderer.CONTEXT_UID]) + { + if (baseTex.wrapMode === WRAP_MODES.CLAMP) + { + baseTex.wrapMode = WRAP_MODES.REPEAT; + } + } + else + { + isSimple = baseTex.wrapMode !== WRAP_MODES.CLAMP; + } + } + + var shader = isSimple ? this.simpleShader : this.shader; + + var w = tex.width; + var h = tex.height; + var W = ts._width; + var H = ts._height; + + tempMat$1.set(lt.a * w / W, + lt.b * w / H, + lt.c * h / W, + lt.d * h / H, + lt.tx / W, + lt.ty / H); + + // that part is the same as above: + // tempMat.identity(); + // tempMat.scale(tex.width, tex.height); + // tempMat.prepend(lt); + // tempMat.scale(1.0 / ts._width, 1.0 / ts._height); + + tempMat$1.invert(); + if (isSimple) + { + tempMat$1.prepend(uv.mapCoord); + } + else + { + shader.uniforms.uMapCoord = uv.mapCoord.toArray(true); + shader.uniforms.uClampFrame = uv.uClampFrame; + shader.uniforms.uClampOffset = uv.uClampOffset; + } + + shader.uniforms.uTransform = tempMat$1.toArray(true); + shader.uniforms.uColor = premultiplyTintToRgba(ts.tint, ts.worldAlpha, + shader.uniforms.uColor, baseTex.premultiplyAlpha); + shader.uniforms.translationMatrix = ts.transform.worldTransform.toArray(true); + shader.uniforms.uSampler = tex; + + renderer.shader.bind(shader); + renderer.geometry.bind(quad);// , renderer.shader.getGLShader()); + + renderer.state.setBlendMode(correctBlendMode(ts.blendMode, baseTex.premultiplyAlpha)); + renderer.geometry.draw(this.renderer.gl.TRIANGLES, 6, 0); + }; + + return TilingSpriteRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/text-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * A BitmapText object will create a line or multiple lines of text using bitmap font. + * + * The primary advantage of this class over Text is that all of your textures are pre-generated and loading, + * meaning that rendering is fast, and changing text has no performance implications. + * + * The primary disadvantage is that you need to preload the bitmap font assets, and thus the styling is set in stone. + * Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters. + * + * To split a line you can use '\n', '\r' or '\r\n' in your string. + * + * You can generate the fnt files using + * http://www.angelcode.com/products/bmfont/ for Windows or + * http://www.bmglyph.com/ for Mac. + * + * A BitmapText can only be created when the font is loaded. + * + * ```js + * // in this case the font is in a file called 'desyrel.fnt' + * let bitmapText = new PIXI.BitmapText("text using a fancy font!", {font: "35px Desyrel", align: "right"}); + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var BitmapText = /*@__PURE__*/(function (Container) { + function BitmapText(text, style) + { + var this$1 = this; + if ( style === void 0 ) style = {}; + + Container.call(this); + + /** + * Private tracker for the width of the overall text + * + * @member {number} + * @private + */ + this._textWidth = 0; + + /** + * Private tracker for the height of the overall text + * + * @member {number} + * @private + */ + this._textHeight = 0; + + /** + * Private tracker for the letter sprite pool. + * + * @member {PIXI.Sprite[]} + * @private + */ + this._glyphs = []; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._font = { + tint: style.tint !== undefined ? style.tint : 0xFFFFFF, + align: style.align || 'left', + name: null, + size: 0, + }; + + /** + * Private tracker for the current font. + * + * @member {object} + * @private + */ + this.font = style.font; // run font setter + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = text; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting value to 0 + * + * @member {number} + * @private + */ + this._maxWidth = 0; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * ie: when trying to vertically align. + * + * @member {number} + * @private + */ + this._maxLineHeight = 0; + + /** + * Letter spacing. This is useful for setting the space between characters. + * @member {number} + * @private + */ + this._letterSpacing = 0; + + /** + * Text anchor. read-only + * + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint(function () { this$1.dirty = true; }, this, 0, 0); + + /** + * The dirty state of this object. + * + * @member {boolean} + */ + this.dirty = false; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + this.roundPixels = settings.ROUND_PIXELS; + + this.updateText(); + } + + if ( Container ) BitmapText.__proto__ = Container; + BitmapText.prototype = Object.create( Container && Container.prototype ); + BitmapText.prototype.constructor = BitmapText; + + var prototypeAccessors = { tint: { configurable: true },align: { configurable: true },anchor: { configurable: true },font: { configurable: true },text: { configurable: true },maxWidth: { configurable: true },maxLineHeight: { configurable: true },textWidth: { configurable: true },letterSpacing: { configurable: true },textHeight: { configurable: true } }; + + /** + * Renders text and updates it when needed + * + * @private + */ + BitmapText.prototype.updateText = function updateText () + { + var data = BitmapText.fonts[this._font.name]; + var scale = this._font.size / data.size; + var pos = new Point(); + var chars = []; + var lineWidths = []; + var text = this._text.replace(/(?:\r\n|\r)/g, '\n') || ' '; + var textLength = text.length; + var maxWidth = this._maxWidth * data.size / this._font.size; + + var prevCharCode = null; + var lastLineWidth = 0; + var maxLineWidth = 0; + var line = 0; + var lastBreakPos = -1; + var lastBreakWidth = 0; + var spacesRemoved = 0; + var maxLineHeight = 0; + + for (var i = 0; i < textLength; i++) + { + var charCode = text.charCodeAt(i); + var char = text.charAt(i); + + if ((/(?:\s)/).test(char)) + { + lastBreakPos = i; + lastBreakWidth = lastLineWidth; + } + + if (char === '\r' || char === '\n') + { + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + ++line; + ++spacesRemoved; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + continue; + } + + var charData = data.chars[charCode]; + + if (!charData) + { + continue; + } + + if (prevCharCode && charData.kerning[prevCharCode]) + { + pos.x += charData.kerning[prevCharCode]; + } + + chars.push({ + texture: charData.texture, + line: line, + charCode: charCode, + position: new Point(pos.x + charData.xOffset + (this._letterSpacing / 2), pos.y + charData.yOffset), + }); + pos.x += charData.xAdvance + this._letterSpacing; + lastLineWidth = pos.x; + maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height)); + prevCharCode = charCode; + + if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth) + { + ++spacesRemoved; + removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos); + i = lastBreakPos; + lastBreakPos = -1; + + lineWidths.push(lastBreakWidth); + maxLineWidth = Math.max(maxLineWidth, lastBreakWidth); + line++; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + } + } + + var lastChar = text.charAt(text.length - 1); + + if (lastChar !== '\r' && lastChar !== '\n') + { + if ((/(?:\s)/).test(lastChar)) + { + lastLineWidth = lastBreakWidth; + } + + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + } + + var lineAlignOffsets = []; + + for (var i$1 = 0; i$1 <= line; i$1++) + { + var alignOffset = 0; + + if (this._font.align === 'right') + { + alignOffset = maxLineWidth - lineWidths[i$1]; + } + else if (this._font.align === 'center') + { + alignOffset = (maxLineWidth - lineWidths[i$1]) / 2; + } + + lineAlignOffsets.push(alignOffset); + } + + var lenChars = chars.length; + var tint = this.tint; + + for (var i$2 = 0; i$2 < lenChars; i$2++) + { + var c = this._glyphs[i$2]; // get the next glyph sprite + + if (c) + { + c.texture = chars[i$2].texture; + } + else + { + c = new Sprite(chars[i$2].texture); + c.roundPixels = this.roundPixels; + this._glyphs.push(c); + } + + c.position.x = (chars[i$2].position.x + lineAlignOffsets[chars[i$2].line]) * scale; + c.position.y = chars[i$2].position.y * scale; + c.scale.x = c.scale.y = scale; + c.tint = tint; + + if (!c.parent) + { + this.addChild(c); + } + } + + // remove unnecessary children. + for (var i$3 = lenChars; i$3 < this._glyphs.length; ++i$3) + { + this.removeChild(this._glyphs[i$3]); + } + + this._textWidth = maxLineWidth * scale; + this._textHeight = (pos.y + data.lineHeight) * scale; + + // apply anchor + if (this.anchor.x !== 0 || this.anchor.y !== 0) + { + for (var i$4 = 0; i$4 < lenChars; i$4++) + { + this._glyphs[i$4].x -= this._textWidth * this.anchor.x; + this._glyphs[i$4].y -= this._textHeight * this.anchor.y; + } + } + this._maxLineHeight = maxLineHeight * scale; + }; + + /** + * Updates the transform of this object + * + * @private + */ + BitmapText.prototype.updateTransform = function updateTransform () + { + this.validate(); + this.containerUpdateTransform(); + }; + + /** + * Validates text before calling parent's getLocalBounds + * + * @return {PIXI.Rectangle} The rectangular bounding area + */ + BitmapText.prototype.getLocalBounds = function getLocalBounds () + { + this.validate(); + + return Container.prototype.getLocalBounds.call(this); + }; + + /** + * Updates text when needed + * + * @private + */ + BitmapText.prototype.validate = function validate () + { + if (this.dirty) + { + this.updateText(); + this.dirty = false; + } + }; + + /** + * The tint of the BitmapText object. + * + * @member {number} + */ + prototypeAccessors.tint.get = function () + { + return this._font.tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.tint = (typeof value === 'number' && value >= 0) ? value : 0xFFFFFF; + + this.dirty = true; + }; + + /** + * The alignment of the BitmapText object. + * + * @member {string} + * @default 'left' + */ + prototypeAccessors.align.get = function () + { + return this._font.align; + }; + + prototypeAccessors.align.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.align = value || 'left'; + + this.dirty = true; + }; + + /** + * The anchor sets the origin point of the text. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * @member {PIXI.Point | number} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + if (typeof value === 'number') + { + this._anchor.set(value); + } + else + { + this._anchor.copyFrom(value); + } + }; + + /** + * The font descriptor of the BitmapText object. + * + * @member {object} + */ + prototypeAccessors.font.get = function () + { + return this._font; + }; + + prototypeAccessors.font.set = function (value) // eslint-disable-line require-jsdoc + { + if (!value) + { + return; + } + + if (typeof value === 'string') + { + value = value.split(' '); + + this._font.name = value.length === 1 ? value[0] : value.slice(1).join(' '); + this._font.size = value.length >= 2 ? parseInt(value[0], 10) : BitmapText.fonts[this._font.name].size; + } + else + { + this._font.name = value.name; + this._font.size = typeof value.size === 'number' ? value.size : parseInt(value.size, 10); + } + + this.dirty = true; + }; + + /** + * The text of the BitmapText object. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting the value to 0. + * + * @member {number} + */ + prototypeAccessors.maxWidth.get = function () + { + return this._maxWidth; + }; + + prototypeAccessors.maxWidth.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._maxWidth === value) + { + return; + } + this._maxWidth = value; + this.dirty = true; + }; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * i.e. when trying to vertically align. + * + * @member {number} + * @readonly + */ + prototypeAccessors.maxLineHeight.get = function () + { + this.validate(); + + return this._maxLineHeight; + }; + + /** + * The width of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textWidth.get = function () + { + this.validate(); + + return this._textWidth; + }; + + /** + * Additional space between characters. + * + * @member {number} + */ + prototypeAccessors.letterSpacing.get = function () + { + return this._letterSpacing; + }; + + prototypeAccessors.letterSpacing.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._letterSpacing !== value) + { + this._letterSpacing = value; + this.dirty = true; + } + }; + + /** + * The height of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textHeight.get = function () + { + this.validate(); + + return this._textHeight; + }; + + /** + * Register a bitmap font with data and a texture. + * + * @static + * @param {XMLDocument} xml - The XML document data. + * @param {Object.|PIXI.Texture|PIXI.Texture[]} textures - List of textures for each page. + * If providing an object, the key is the `` element's `file` attribute in the FNT file. + * @return {Object} Result font object with font, size, lineHeight and char fields. + */ + BitmapText.registerFont = function registerFont (xml, textures) + { + var data = {}; + var info = xml.getElementsByTagName('info')[0]; + var common = xml.getElementsByTagName('common')[0]; + var pages = xml.getElementsByTagName('page'); + var res = getResolutionOfUrl(pages[0].getAttribute('file'), settings.RESOLUTION); + var pagesTextures = {}; + + data.font = info.getAttribute('face'); + data.size = parseInt(info.getAttribute('size'), 10); + data.lineHeight = parseInt(common.getAttribute('lineHeight'), 10) / res; + data.chars = {}; + + // Single texture, convert to list + if (textures instanceof Texture) + { + textures = [textures]; + } + + // Convert the input Texture, Textures or object + // into a page Texture lookup by "id" + for (var i = 0; i < pages.length; i++) + { + var id = pages[i].getAttribute('id'); + var file = pages[i].getAttribute('file'); + + pagesTextures[id] = textures instanceof Array ? textures[i] : textures[file]; + } + + // parse letters + var letters = xml.getElementsByTagName('char'); + + for (var i$1 = 0; i$1 < letters.length; i$1++) + { + var letter = letters[i$1]; + var charCode = parseInt(letter.getAttribute('id'), 10); + var page = letter.getAttribute('page') || 0; + var textureRect = new Rectangle( + (parseInt(letter.getAttribute('x'), 10) / res) + (pagesTextures[page].frame.x / res), + (parseInt(letter.getAttribute('y'), 10) / res) + (pagesTextures[page].frame.y / res), + parseInt(letter.getAttribute('width'), 10) / res, + parseInt(letter.getAttribute('height'), 10) / res + ); + + data.chars[charCode] = { + xOffset: parseInt(letter.getAttribute('xoffset'), 10) / res, + yOffset: parseInt(letter.getAttribute('yoffset'), 10) / res, + xAdvance: parseInt(letter.getAttribute('xadvance'), 10) / res, + kerning: {}, + texture: new Texture(pagesTextures[page].baseTexture, textureRect), + page: page, + }; + } + + // parse kernings + var kernings = xml.getElementsByTagName('kerning'); + + for (var i$2 = 0; i$2 < kernings.length; i$2++) + { + var kerning = kernings[i$2]; + var first = parseInt(kerning.getAttribute('first'), 10) / res; + var second = parseInt(kerning.getAttribute('second'), 10) / res; + var amount = parseInt(kerning.getAttribute('amount'), 10) / res; + + if (data.chars[second]) + { + data.chars[second].kerning[first] = amount; + } + } + + // I'm leaving this as a temporary fix so we can test the bitmap fonts in v3 + // but it's very likely to change + BitmapText.fonts[data.font] = data; + + return data; + }; + + Object.defineProperties( BitmapText.prototype, prototypeAccessors ); + + return BitmapText; +}(Container)); + +BitmapText.fonts = {}; + +/** + * {@link PIXI.Loader Loader} middleware for loading + * bitmap-based fonts suitable for using with {@link PIXI.BitmapText}. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var BitmapFontLoader = function BitmapFontLoader () {}; + +BitmapFontLoader.parse = function parse (resource, texture) +{ + resource.bitmapFont = BitmapText.registerFont(resource.data, texture); +}; + +/** + * Called when the plugin is installed. + * + * @see PIXI.Loader.registerPlugin + */ +BitmapFontLoader.add = function add () +{ + LoaderResource.setExtensionXhrType('fnt', LoaderResource.XHR_RESPONSE_TYPE.DOCUMENT); +}; + +/** + * Replacement for NodeJS's path.dirname + * @private + * @param {string} url Path to get directory for + */ +BitmapFontLoader.dirname = function dirname (url) +{ + var dir = url + .replace(/\/$/, '') // replace trailing slash + .replace(/\/[^\/]*$/, ''); // remove everything after the last + + // File request is relative, use current directory + if (dir === url) + { + return '.'; + } + // Started with a slash + else if (dir === '') + { + return '/'; + } + + return dir; +}; + +/** + * Called after a resource is loaded. + * @see PIXI.Loader.loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ +BitmapFontLoader.use = function use (resource, next) +{ + // skip if no data or not xml data + if (!resource.data || resource.type !== LoaderResource.TYPE.XML) + { + next(); + + return; + } + + // skip if not bitmap font data, using some silly duck-typing + if (resource.data.getElementsByTagName('page').length === 0 + || resource.data.getElementsByTagName('info').length === 0 + || resource.data.getElementsByTagName('info')[0].getAttribute('face') === null + ) + { + next(); + + return; + } + + var xmlUrl = !resource.isDataUrl ? BitmapFontLoader.dirname(resource.url) : ''; + + if (resource.isDataUrl) + { + if (xmlUrl === '.') + { + xmlUrl = ''; + } + + if (this.baseUrl && xmlUrl) + { + // if baseurl has a trailing slash then add one to xmlUrl so the replace works below + if (this.baseUrl.charAt(this.baseUrl.length - 1) === '/') + { + xmlUrl += '/'; + } + } + } + + // remove baseUrl from xmlUrl + xmlUrl = xmlUrl.replace(this.baseUrl, ''); + + // if there is an xmlUrl now, it needs a trailing slash. Ensure that it does if the string isn't empty. + if (xmlUrl && xmlUrl.charAt(xmlUrl.length - 1) !== '/') + { + xmlUrl += '/'; + } + + var pages = resource.data.getElementsByTagName('page'); + var textures = {}; + + // Handle completed, when the number of textures + // load is the same number as references in the fnt file + var completed = function (page) { + textures[page.metadata.pageFile] = page.texture; + + if (Object.keys(textures).length === pages.length) + { + BitmapFontLoader.parse(resource, textures); + next(); + } + }; + + for (var i = 0; i < pages.length; ++i) + { + var pageFile = pages[i].getAttribute('file'); + var url = xmlUrl + pageFile; + var exists = false; + + // incase the image is loaded outside + // using the same loader, resource will be available + for (var name in this.resources) + { + var bitmapResource = this.resources[name]; + + if (bitmapResource.url === url) + { + bitmapResource.metadata.pageFile = pageFile; + if (bitmapResource.texture) + { + completed(bitmapResource); + } + else + { + bitmapResource.onAfterMiddleware.add(completed); + } + exists = true; + break; + } + } + + // texture is not loaded, we'll attempt to add + // it to the load and add the texture to the list + if (!exists) + { + // Standard loading options for images + var options = { + crossOrigin: resource.crossOrigin, + loadType: LoaderResource.LOAD_TYPE.IMAGE, + metadata: Object.assign( + { pageFile: pageFile }, + resource.metadata.imageMetadata + ), + parentResource: resource, + }; + + this.add(url, options, completed); + } + } +}; + +/*! + * @pixi/filter-color-matrix - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/filter-color-matrix is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var fragment$3 = "varying vec2 vTextureCoord;\nuniform sampler2D uSampler;\nuniform float m[20];\nuniform float uAlpha;\n\nvoid main(void)\n{\n vec4 c = texture2D(uSampler, vTextureCoord);\n\n if (uAlpha == 0.0) {\n gl_FragColor = c;\n return;\n }\n\n // Un-premultiply alpha before applying the color matrix. See issue #3539.\n if (c.a > 0.0) {\n c.rgb /= c.a;\n }\n\n vec4 result;\n\n result.r = (m[0] * c.r);\n result.r += (m[1] * c.g);\n result.r += (m[2] * c.b);\n result.r += (m[3] * c.a);\n result.r += m[4];\n\n result.g = (m[5] * c.r);\n result.g += (m[6] * c.g);\n result.g += (m[7] * c.b);\n result.g += (m[8] * c.a);\n result.g += m[9];\n\n result.b = (m[10] * c.r);\n result.b += (m[11] * c.g);\n result.b += (m[12] * c.b);\n result.b += (m[13] * c.a);\n result.b += m[14];\n\n result.a = (m[15] * c.r);\n result.a += (m[16] * c.g);\n result.a += (m[17] * c.b);\n result.a += (m[18] * c.a);\n result.a += m[19];\n\n vec3 rgb = mix(c.rgb, result.rgb, uAlpha);\n\n // Premultiply alpha again.\n rgb *= result.a;\n\n gl_FragColor = vec4(rgb, result.a);\n}\n"; + +/** + * The ColorMatrixFilter class lets you apply a 5x4 matrix transformation on the RGBA + * color and alpha values of every pixel on your displayObject to produce a result + * with a new set of RGBA color and alpha values. It's pretty powerful! + * + * ```js + * let colorMatrix = new PIXI.filters.ColorMatrixFilter(); + * container.filters = [colorMatrix]; + * colorMatrix.contrast(2); + * ``` + * @author Clément Chenebault + * @class + * @extends PIXI.Filter + * @memberof PIXI.filters + */ +var ColorMatrixFilter = /*@__PURE__*/(function (Filter) { + function ColorMatrixFilter() + { + var uniforms = { + m: new Float32Array([1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0]), + uAlpha: 1, + }; + + Filter.call(this, defaultFilter, fragment$3, uniforms); + + this.alpha = 1; + } + + if ( Filter ) ColorMatrixFilter.__proto__ = Filter; + ColorMatrixFilter.prototype = Object.create( Filter && Filter.prototype ); + ColorMatrixFilter.prototype.constructor = ColorMatrixFilter; + + var prototypeAccessors = { matrix: { configurable: true },alpha: { configurable: true } }; + + /** + * Transforms current matrix and set the new one + * + * @param {number[]} matrix - 5x4 matrix + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype._loadMatrix = function _loadMatrix (matrix, multiply) + { + if ( multiply === void 0 ) multiply = false; + + var newMatrix = matrix; + + if (multiply) + { + this._multiply(newMatrix, this.uniforms.m, matrix); + newMatrix = this._colorMatrix(newMatrix); + } + + // set the new matrix + this.uniforms.m = newMatrix; + }; + + /** + * Multiplies two mat5's + * + * @private + * @param {number[]} out - 5x4 matrix the receiving matrix + * @param {number[]} a - 5x4 matrix the first operand + * @param {number[]} b - 5x4 matrix the second operand + * @returns {number[]} 5x4 matrix + */ + ColorMatrixFilter.prototype._multiply = function _multiply (out, a, b) + { + // Red Channel + out[0] = (a[0] * b[0]) + (a[1] * b[5]) + (a[2] * b[10]) + (a[3] * b[15]); + out[1] = (a[0] * b[1]) + (a[1] * b[6]) + (a[2] * b[11]) + (a[3] * b[16]); + out[2] = (a[0] * b[2]) + (a[1] * b[7]) + (a[2] * b[12]) + (a[3] * b[17]); + out[3] = (a[0] * b[3]) + (a[1] * b[8]) + (a[2] * b[13]) + (a[3] * b[18]); + out[4] = (a[0] * b[4]) + (a[1] * b[9]) + (a[2] * b[14]) + (a[3] * b[19]) + a[4]; + + // Green Channel + out[5] = (a[5] * b[0]) + (a[6] * b[5]) + (a[7] * b[10]) + (a[8] * b[15]); + out[6] = (a[5] * b[1]) + (a[6] * b[6]) + (a[7] * b[11]) + (a[8] * b[16]); + out[7] = (a[5] * b[2]) + (a[6] * b[7]) + (a[7] * b[12]) + (a[8] * b[17]); + out[8] = (a[5] * b[3]) + (a[6] * b[8]) + (a[7] * b[13]) + (a[8] * b[18]); + out[9] = (a[5] * b[4]) + (a[6] * b[9]) + (a[7] * b[14]) + (a[8] * b[19]) + a[9]; + + // Blue Channel + out[10] = (a[10] * b[0]) + (a[11] * b[5]) + (a[12] * b[10]) + (a[13] * b[15]); + out[11] = (a[10] * b[1]) + (a[11] * b[6]) + (a[12] * b[11]) + (a[13] * b[16]); + out[12] = (a[10] * b[2]) + (a[11] * b[7]) + (a[12] * b[12]) + (a[13] * b[17]); + out[13] = (a[10] * b[3]) + (a[11] * b[8]) + (a[12] * b[13]) + (a[13] * b[18]); + out[14] = (a[10] * b[4]) + (a[11] * b[9]) + (a[12] * b[14]) + (a[13] * b[19]) + a[14]; + + // Alpha Channel + out[15] = (a[15] * b[0]) + (a[16] * b[5]) + (a[17] * b[10]) + (a[18] * b[15]); + out[16] = (a[15] * b[1]) + (a[16] * b[6]) + (a[17] * b[11]) + (a[18] * b[16]); + out[17] = (a[15] * b[2]) + (a[16] * b[7]) + (a[17] * b[12]) + (a[18] * b[17]); + out[18] = (a[15] * b[3]) + (a[16] * b[8]) + (a[17] * b[13]) + (a[18] * b[18]); + out[19] = (a[15] * b[4]) + (a[16] * b[9]) + (a[17] * b[14]) + (a[18] * b[19]) + a[19]; + + return out; + }; + + /** + * Create a Float32 Array and normalize the offset component to 0-1 + * + * @private + * @param {number[]} matrix - 5x4 matrix + * @return {number[]} 5x4 matrix with all values between 0-1 + */ + ColorMatrixFilter.prototype._colorMatrix = function _colorMatrix (matrix) + { + // Create a Float32 Array and normalize the offset component to 0-1 + var m = new Float32Array(matrix); + + m[4] /= 255; + m[9] /= 255; + m[14] /= 255; + m[19] /= 255; + + return m; + }; + + /** + * Adjusts brightness + * + * @param {number} b - value of the brigthness (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.brightness = function brightness (b, multiply) + { + var matrix = [ + b, 0, 0, 0, 0, + 0, b, 0, 0, 0, + 0, 0, b, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the matrices in grey scales + * + * @param {number} scale - value of the grey (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.greyscale = function greyscale (scale, multiply) + { + var matrix = [ + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the black and white matrice. + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.blackAndWhite = function blackAndWhite (multiply) + { + var matrix = [ + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the hue property of the color + * + * @param {number} rotation - in degrees + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.hue = function hue (rotation, multiply) + { + rotation = (rotation || 0) / 180 * Math.PI; + + var cosR = Math.cos(rotation); + var sinR = Math.sin(rotation); + var sqrt = Math.sqrt; + + /* a good approximation for hue rotation + This matrix is far better than the versions with magic luminance constants + formerly used here, but also used in the starling framework (flash) and known from this + old part of the internet: quasimondo.com/archives/000565.php + + This new matrix is based on rgb cube rotation in space. Look here for a more descriptive + implementation as a shader not a general matrix: + https://github.com/evanw/glfx.js/blob/58841c23919bd59787effc0333a4897b43835412/src/filters/adjust/huesaturation.js + + This is the source for the code: + see http://stackoverflow.com/questions/8507885/shift-hue-of-an-rgb-color/8510751#8510751 + */ + + var w = 1 / 3; + var sqrW = sqrt(w); // weight is + + var a00 = cosR + ((1.0 - cosR) * w); + var a01 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a02 = (w * (1.0 - cosR)) + (sqrW * sinR); + + var a10 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a11 = cosR + (w * (1.0 - cosR)); + var a12 = (w * (1.0 - cosR)) - (sqrW * sinR); + + var a20 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a21 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a22 = cosR + (w * (1.0 - cosR)); + + var matrix = [ + a00, a01, a02, 0, 0, + a10, a11, a12, 0, 0, + a20, a21, a22, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the contrast matrix, increase the separation between dark and bright + * Increase contrast : shadows darker and highlights brighter + * Decrease contrast : bring the shadows up and the highlights down + * + * @param {number} amount - value of the contrast (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.contrast = function contrast (amount, multiply) + { + var v = (amount || 0) + 1; + var o = -0.5 * (v - 1); + + var matrix = [ + v, 0, 0, 0, o, + 0, v, 0, 0, o, + 0, 0, v, 0, o, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the saturation matrix, increase the separation between colors + * Increase saturation : increase contrast, brightness, and sharpness + * + * @param {number} amount - The saturation amount (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.saturate = function saturate (amount, multiply) + { + if ( amount === void 0 ) amount = 0; + + var x = (amount * 2 / 3) + 1; + var y = ((x - 1) * -0.5); + + var matrix = [ + x, y, y, 0, 0, + y, x, y, 0, 0, + y, y, x, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Desaturate image (remove color) + * + * Call the saturate function + * + */ + ColorMatrixFilter.prototype.desaturate = function desaturate () // eslint-disable-line no-unused-vars + { + this.saturate(-1); + }; + + /** + * Negative image (inverse of classic rgb matrix) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.negative = function negative (multiply) + { + var matrix = [ + -1, 0, 0, 1, 0, + 0, -1, 0, 1, 0, + 0, 0, -1, 1, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Sepia image + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.sepia = function sepia (multiply) + { + var matrix = [ + 0.393, 0.7689999, 0.18899999, 0, 0, + 0.349, 0.6859999, 0.16799999, 0, 0, + 0.272, 0.5339999, 0.13099999, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color motion picture process invented in 1916 (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.technicolor = function technicolor (multiply) + { + var matrix = [ + 1.9125277891456083, -0.8545344976951645, -0.09155508482755585, 0, 11.793603434377337, + -0.3087833385928097, 1.7658908555458428, -0.10601743074722245, 0, -70.35205161461398, + -0.231103377548616, -0.7501899197440212, 1.847597816108189, 0, 30.950940869491138, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Polaroid filter + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.polaroid = function polaroid (multiply) + { + var matrix = [ + 1.438, -0.062, -0.062, 0, 0, + -0.122, 1.378, -0.122, 0, 0, + -0.016, -0.016, 1.483, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Filter who transforms : Red -> Blue and Blue -> Red + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.toBGR = function toBGR (multiply) + { + var matrix = [ + 0, 0, 1, 0, 0, + 0, 1, 0, 0, 0, + 1, 0, 0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color reversal film introduced by Eastman Kodak in 1935. (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.kodachrome = function kodachrome (multiply) + { + var matrix = [ + 1.1285582396593525, -0.3967382283601348, -0.03992559172921793, 0, 63.72958762196502, + -0.16404339962244616, 1.0835251566291304, -0.05498805115633132, 0, 24.732407896706203, + -0.16786010706155763, -0.5603416277695248, 1.6014850761964943, 0, 35.62982807460946, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Brown delicious browni filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.browni = function browni (multiply) + { + var matrix = [ + 0.5997023498159715, 0.34553243048391263, -0.2708298674538042, 0, 47.43192855600873, + -0.037703249837783157, 0.8609577587992641, 0.15059552388459913, 0, -36.96841498319127, + 0.24113635128153335, -0.07441037908422492, 0.44972182064877153, 0, -7.562075277591283, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Vintage filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.vintage = function vintage (multiply) + { + var matrix = [ + 0.6279345635605994, 0.3202183420819367, -0.03965408211312453, 0, 9.651285835294123, + 0.02578397704808868, 0.6441188644374771, 0.03259127616149294, 0, 7.462829176470591, + 0.0466055556782719, -0.0851232987247891, 0.5241648018700465, 0, 5.159190588235296, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * We don't know exactly what it does, kind of gradient map, but funny to play with! + * + * @param {number} desaturation - Tone values. + * @param {number} toned - Tone values. + * @param {string} lightColor - Tone values, example: `0xFFE580` + * @param {string} darkColor - Tone values, example: `0xFFE580` + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.colorTone = function colorTone (desaturation, toned, lightColor, darkColor, multiply) + { + desaturation = desaturation || 0.2; + toned = toned || 0.15; + lightColor = lightColor || 0xFFE580; + darkColor = darkColor || 0x338000; + + var lR = ((lightColor >> 16) & 0xFF) / 255; + var lG = ((lightColor >> 8) & 0xFF) / 255; + var lB = (lightColor & 0xFF) / 255; + + var dR = ((darkColor >> 16) & 0xFF) / 255; + var dG = ((darkColor >> 8) & 0xFF) / 255; + var dB = (darkColor & 0xFF) / 255; + + var matrix = [ + 0.3, 0.59, 0.11, 0, 0, + lR, lG, lB, desaturation, 0, + dR, dG, dB, toned, 0, + lR - dR, lG - dG, lB - dB, 0, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Night effect + * + * @param {number} intensity - The intensity of the night effect. + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.night = function night (intensity, multiply) + { + intensity = intensity || 0.1; + var matrix = [ + intensity * (-2.0), -intensity, 0, 0, 0, + -intensity, 0, intensity, 0, 0, + 0, intensity, intensity * 2.0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Predator effect + * + * Erase the current matrix by setting a new indepent one + * + * @param {number} amount - how much the predator feels his future victim + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.predator = function predator (amount, multiply) + { + var matrix = [ + // row 1 + 11.224130630493164 * amount, + -4.794486999511719 * amount, + -2.8746118545532227 * amount, + 0 * amount, + 0.40342438220977783 * amount, + // row 2 + -3.6330697536468506 * amount, + 9.193157196044922 * amount, + -2.951810836791992 * amount, + 0 * amount, + -1.316135048866272 * amount, + // row 3 + -3.2184197902679443 * amount, + -4.2375030517578125 * amount, + 7.476448059082031 * amount, + 0 * amount, + 0.8044459223747253 * amount, + // row 4 + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * LSD effect + * + * Multiply the current matrix + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.lsd = function lsd (multiply) + { + var matrix = [ + 2, -0.4, 0.5, 0, 0, + -0.5, 2, -0.4, 0, 0, + -0.4, -0.5, 3, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Erase the current matrix by setting the default one + * + */ + ColorMatrixFilter.prototype.reset = function reset () + { + var matrix = [ + 1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, false); + }; + + /** + * The matrix of the color matrix filter + * + * @member {number[]} + * @default [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0] + */ + prototypeAccessors.matrix.get = function () + { + return this.uniforms.m; + }; + + prototypeAccessors.matrix.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.m = value; + }; + + /** + * The opacity value to use when mixing the original and resultant colors. + * + * When the value is 0, the original color is used without modification. + * When the value is 1, the result color is used. + * When in the range (0, 1) the color is interpolated between the original and result by this amount. + * + * @member {number} + * @default 1 + */ + prototypeAccessors.alpha.get = function () + { + return this.uniforms.uAlpha; + }; + + prototypeAccessors.alpha.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.uAlpha = value; + }; + + Object.defineProperties( ColorMatrixFilter.prototype, prototypeAccessors ); + + return ColorMatrixFilter; +}(Filter)); + +// Americanized alias +ColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale; + +/*! + * @pixi/mixin-cache-as-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mixin-cache-as-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var _tempMatrix = new Matrix(); + +DisplayObject.prototype._cacheAsBitmap = false; +DisplayObject.prototype._cacheData = false; + +// figured theres no point adding ALL the extra variables to prototype. +// this model can hold the information needed. This can also be generated on demand as +// most objects are not cached as bitmaps. +/** + * @class + * @ignore + */ +var CacheData = function CacheData() +{ + this.textureCacheId = null; + + this.originalRender = null; + this.originalRenderCanvas = null; + this.originalCalculateBounds = null; + this.originalGetLocalBounds = null; + + this.originalUpdateTransform = null; + this.originalHitTest = null; + this.originalDestroy = null; + this.originalMask = null; + this.originalFilterArea = null; + this.sprite = null; +}; + +Object.defineProperties(DisplayObject.prototype, { + /** + * Set this to true if you want this display object to be cached as a bitmap. + * This basically takes a snap shot of the display object as it is at that moment. It can + * provide a performance benefit for complex static displayObjects. + * To remove simply set this property to `false` + * + * IMPORTANT GOTCHA - Make sure that all your textures are preloaded BEFORE setting this property to true + * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear. + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + cacheAsBitmap: { + get: function get() + { + return this._cacheAsBitmap; + }, + set: function set(value) + { + if (this._cacheAsBitmap === value) + { + return; + } + + this._cacheAsBitmap = value; + + var data; + + if (value) + { + if (!this._cacheData) + { + this._cacheData = new CacheData(); + } + + data = this._cacheData; + + data.originalRender = this.render; + data.originalRenderCanvas = this.renderCanvas; + + data.originalUpdateTransform = this.updateTransform; + data.originalCalculateBounds = this.calculateBounds; + data.originalGetLocalBounds = this.getLocalBounds; + + data.originalDestroy = this.destroy; + + data.originalContainsPoint = this.containsPoint; + + data.originalMask = this._mask; + data.originalFilterArea = this.filterArea; + + this.render = this._renderCached; + this.renderCanvas = this._renderCachedCanvas; + + this.destroy = this._cacheAsBitmapDestroy; + } + else + { + data = this._cacheData; + + if (data.sprite) + { + this._destroyCachedDisplayObject(); + } + + this.render = data.originalRender; + this.renderCanvas = data.originalRenderCanvas; + this.calculateBounds = data.originalCalculateBounds; + this.getLocalBounds = data.originalGetLocalBounds; + + this.destroy = data.originalDestroy; + + this.updateTransform = data.originalUpdateTransform; + this.containsPoint = data.originalContainsPoint; + + this._mask = data.originalMask; + this.filterArea = data.originalFilterArea; + } + }, + }, +}); + +/** + * Renders a cached version of the sprite with WebGL + * + * @private + * @function _renderCached + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCached = function _renderCached(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObject(renderer); + + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._render(renderer); +}; + +/** + * Prepares the WebGL renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObject + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObject = function _initCachedDisplayObject(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // make sure alpha is set to 1 otherwise it will get rendered as invisible! + var cacheAlpha = this.alpha; + + this.alpha = 1; + + // first we flush anything left in the renderer (otherwise it would get rendered to the cached texture) + renderer.batch.flush(); + // this.filters= []; + + // next we find the dimensions of the untransformed object + // this function also calls updatetransform on all its children as part of the measuring. + // This means we don't need to update the transform again in this function + // TODO pass an object to clone too? saves having to create a new one each time! + var bounds = this.getLocalBounds().clone(); + + // add some padding! + if (this.filters) + { + var padding = this.filters[0].padding; + + bounds.pad(padding); + } + + bounds.ceil(settings.RESOLUTION); + + // for now we cache the current renderTarget that the WebGL renderer is currently using. + // this could be more elegant.. + var cachedRenderTexture = renderer.renderTexture.current; + var cachedSourceFrame = renderer.renderTexture.sourceFrame; + var cachedProjectionTransform = renderer.projection.transform; + + // We also store the filter stack - I will definitely look to change how this works a little later down the line. + // const stack = renderer.filterManager.filterStack; + + // this renderTexture will be used to store the cached DisplayObject + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + m.tx = -bounds.x; + m.ty = -bounds.y; + + // reset + this.transform.worldTransform.identity(); + + // set all properties to there original so we can render to a texture + this.render = this._cacheData.originalRender; + + renderer.render(this, renderTexture, true, m, true); + + // now restore the state be setting the new properties + renderer.projection.transform = cachedProjectionTransform; + renderer.renderTexture.bind(cachedRenderTexture, cachedSourceFrame); + + // renderer.filterManager.filterStack = stack; + + this.render = this._renderCached; + // the rest is the same as for Canvas + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Renders a cached version of the sprite with canvas + * + * @private + * @function _renderCachedCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCachedCanvas = function _renderCachedCanvas(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObjectCanvas(renderer); + + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._renderCanvas(renderer); +}; + +// TODO this can be the same as the WebGL version.. will need to do a little tweaking first though.. +/** + * Prepares the Canvas renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObjectCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObjectCanvas = function _initCachedDisplayObjectCanvas(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // get bounds actually transforms the object for us already! + var bounds = this.getLocalBounds(); + + var cacheAlpha = this.alpha; + + this.alpha = 1; + + var cachedRenderTarget = renderer.context; + + bounds.ceil(settings.RESOLUTION); + + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + this.transform.localTransform.copyTo(m); + m.invert(); + + m.tx -= bounds.x; + m.ty -= bounds.y; + + // m.append(this.transform.worldTransform.) + // set all properties to there original so we can render to a texture + this.renderCanvas = this._cacheData.originalRenderCanvas; + + // renderTexture.render(this, m, true); + renderer.render(this, renderTexture, true, m, false); + + // now restore the state be setting the new properties + renderer.context = cachedRenderTarget; + + this.renderCanvas = this._renderCachedCanvas; + // the rest is the same as for WebGL + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Calculates the bounds of the cached sprite + * + * @private + */ +DisplayObject.prototype._calculateCachedBounds = function _calculateCachedBounds() +{ + this._bounds.clear(); + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite._calculateBounds(); + this._lastBoundsID = this._boundsID; +}; + +/** + * Gets the bounds of the cached sprite. + * + * @private + * @return {Rectangle} The local bounds. + */ +DisplayObject.prototype._getCachedLocalBounds = function _getCachedLocalBounds() +{ + return this._cacheData.sprite.getLocalBounds(); +}; + +/** + * Destroys the cached sprite. + * + * @private + */ +DisplayObject.prototype._destroyCachedDisplayObject = function _destroyCachedDisplayObject() +{ + this._cacheData.sprite._texture.destroy(true); + this._cacheData.sprite = null; + + BaseTexture.removeFromCache(this._cacheData.textureCacheId); + Texture.removeFromCache(this._cacheData.textureCacheId); + + this._cacheData.textureCacheId = null; +}; + +/** + * Destroys the cached object. + * + * @private + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value. + * Used when destroying containers, see the Container.destroy method. + */ +DisplayObject.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy(options) +{ + this.cacheAsBitmap = false; + this.destroy(options); +}; + +/*! + * @pixi/mixin-get-child-by-name - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-child-by-name is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The instance name of the object. + * + * @memberof PIXI.DisplayObject# + * @member {string} name + */ +DisplayObject.prototype.name = null; + +/** + * Returns the display object in the container. + * + * @method getChildByName + * @memberof PIXI.Container# + * @param {string} name - Instance name. + * @return {PIXI.DisplayObject} The child with the specified name. + */ +Container.prototype.getChildByName = function getChildByName(name) +{ + for (var i = 0; i < this.children.length; i++) + { + if (this.children[i].name === name) + { + return this.children[i]; + } + } + + return null; +}; + +/*! + * @pixi/mixin-get-global-position - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-global-position is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Returns the global position of the displayObject. Does not depend on object scale, rotation and pivot. + * + * @method getGlobalPosition + * @memberof PIXI.DisplayObject# + * @param {PIXI.Point} [point=new PIXI.Point()] - The point to write the global value to. + * @param {boolean} [skipUpdate=false] - Setting to true will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @return {PIXI.Point} The updated point. + */ +DisplayObject.prototype.getGlobalPosition = function getGlobalPosition(point, skipUpdate) +{ + if ( point === void 0 ) point = new Point(); + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (this.parent) + { + this.parent.toGlobal(this.position, point, skipUpdate); + } + else + { + point.x = this.position.x; + point.y = this.position.y; + } + + return point; +}; + +/*! + * @pixi/mesh - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mesh is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$2 = new Point(); +var tempPolygon = new Polygon(); + +/*! + * pixi.js - v5.1.4 + * Compiled Sat, 21 Sep 2019 07:35:21 UTC + * + * pixi.js is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Install renderer plugins +Renderer.registerPlugin('accessibility', AccessibilityManager); +Renderer.registerPlugin('extract', Extract); +Renderer.registerPlugin('interaction', InteractionManager); +Renderer.registerPlugin('particle', ParticleRenderer); +Renderer.registerPlugin('prepare', Prepare); +Renderer.registerPlugin('batch', BatchRenderer); +Renderer.registerPlugin('tilingSprite', TilingSpriteRenderer); + +Loader$1.registerPlugin(BitmapFontLoader); +Loader$1.registerPlugin(SpritesheetLoader); + +Application.registerPlugin(TickerPlugin); +Application.registerPlugin(AppLoaderPlugin); + +function fromConstructor(constr) { + return constr; +} + +let clipboard_text = ""; +const contexts = []; +const contextIOs = []; +class ImGuiImplInternalRenderer extends ObjectRenderer { + constructor(r) { + super(r); + } + render(owner) { + if (!(owner instanceof ImGuiWindowLayer)) + return; + const window = owner.window; + const io = window.io; + const draw_data = GetDrawData(); + if (draw_data === null) { + throw new Error(); + } + gl || console.log(draw_data); + // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) + const fb_width = io.DisplaySize.x * io.DisplayFramebufferScale.x; + const fb_height = io.DisplaySize.y * io.DisplayFramebufferScale.y; + if (fb_width === 0 || fb_height === 0) { + return; + } + draw_data.ScaleClipRects(io.DisplayFramebufferScale); + // Backup GL state + const last_program = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null; + const last_active_texture = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null; + gl && gl.activeTexture(gl.TEXTURE0); + const last_texture0 = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null; + const last_vertex_array = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null; + const last_array_buffer = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null; + const last_element_array_buffer = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null; + // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode); + const last_viewport = gl && gl.getParameter(gl.VIEWPORT) || null; + const last_scissor_box = gl && gl.getParameter(gl.SCISSOR_BOX) || null; + const last_blend_src_rgb = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null; + const last_blend_dst_rgb = gl && gl.getParameter(gl.BLEND_DST_RGB) || null; + const last_blend_src_alpha = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null; + const last_blend_dst_alpha = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null; + const last_blend_equation_rgb = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null; + const last_blend_equation_alpha = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null; + const last_enable_blend = gl && gl.getParameter(gl.BLEND) || null; + const last_enable_cull_face = gl && gl.getParameter(gl.CULL_FACE) || null; + const last_enable_depth_test = gl && gl.getParameter(gl.DEPTH_TEST) || null; + const last_enable_scissor_test = gl && gl.getParameter(gl.SCISSOR_TEST) || null; + gl.clearColor(0, 0, 0, 0); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl && gl.bindVertexArray(g_VaoHandle); + // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill + gl && gl.enable(gl.BLEND); + gl && gl.blendEquation(gl.FUNC_ADD); + gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE); + gl && gl.disable(gl.CULL_FACE); + gl && gl.disable(gl.DEPTH_TEST); + gl && gl.enable(gl.SCISSOR_TEST); + // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + // Setup viewport, orthographic projection matrix + // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps. + gl && gl.viewport(0, 0, fb_width, fb_height); + const L = draw_data.DisplayPos.x; + const R = draw_data.DisplayPos.x + draw_data.DisplaySize.x; + const T = draw_data.DisplayPos.y; + const B = draw_data.DisplayPos.y + draw_data.DisplaySize.y; + // we actually flip the bottom and top here to match with PIXI's texture usage + const ortho_projection = new Float32Array([ + 2.0 / (R - L), 0.0, 0.0, 0.0, + 0.0, 2.0 / (B - T), 0.0, 0.0, + 0.0, 0.0, -1.0, 0.0, + (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0, + ]); + gl && gl.useProgram(g_ShaderHandle); + gl && gl.uniform1i(g_AttribLocationTex, 0); + gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection); + // Render command lists + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.enableVertexAttribArray(g_AttribLocationPosition); + gl && gl.enableVertexAttribArray(g_AttribLocationUV); + gl && gl.enableVertexAttribArray(g_AttribLocationColor); + gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertPosOffset); + gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertUVOffset); + gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImDrawVertSize, ImDrawVertColOffset); + // Draw + const pos = draw_data.DisplayPos; + const idx_buffer_type = gl && ( gl.UNSIGNED_SHORT) || 0; + draw_data.IterateDrawLists((draw_list) => { + gl || console.log(draw_list); + gl || console.log("VtxBuffer.length", draw_list.VtxBuffer.length); + gl || console.log("IdxBuffer.length", draw_list.IdxBuffer.length); + let idx_buffer_offset = 0; + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW); + gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle); + gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW); + draw_list.IterateDrawCmds((draw_cmd) => { + gl || console.log(draw_cmd); + gl || console.log("ElemCount", draw_cmd.ElemCount); + gl || console.log("ClipRect", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y); + gl || console.log("TextureId", draw_cmd.TextureId); + if (!gl) { + console.log("i: pos.x pos.y uv.x uv.y col"); + for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) { + const view = new ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImDrawVertSize); + console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${("00000000" + view.col[0].toString(16)).substr(-8)}`); + } + } + if (draw_cmd.UserCallback !== null) { + // User callback (registered via ImDrawList::AddCallback) + draw_cmd.UserCallback(draw_list, draw_cmd); + } + else { + const clip_rect = new ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y); + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) { + // Apply scissor/clipping rectangle + gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y); + // Bind texture, Draw + gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId); + gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset); + } + } + idx_buffer_offset += draw_cmd.ElemCount * ImDrawIdxSize; + }); + }); + // Restore modified GL state + gl && (last_program !== null) && gl.useProgram(last_program); + gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0); + gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture); + gl && gl.disableVertexAttribArray(g_AttribLocationPosition); + gl && gl.disableVertexAttribArray(g_AttribLocationUV); + gl && gl.disableVertexAttribArray(g_AttribLocationColor); + gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array); + gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer); + gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer); + gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]); + gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]); + gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha); + gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); + gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND)); + gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE)); + gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST)); + gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST)); + // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]); + } +} +let gl = null; +let app = null; +class ImGuiWindowLayer extends Sprite { + constructor(window, tex) { + super(); + this.pluginName = "imgui_renderer"; + this.window = window; + } +} +class ImGuiWindow extends Container { + constructor(sizeX, sizeY, update) { + super(); + this.baseTex = new BaseRenderTexture({ scaleMode: SCALE_MODES.LINEAR, resolution: 1, type: TYPES.FLOAT, format: FORMATS.RGBA }); + this.tex = new RenderTexture(this.baseTex); + this.surface = new Sprite(this.tex); + this.imgui = new ImGuiWindowLayer(this, this.tex); + this.ctx = CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts); + SetCurrentContext(this.ctx); + this.io = GetIO(); + contexts.push(this.ctx); + contextIOs.push(this.io); + if (contexts.length == 1) { + CreateFontsTexture(); + } + if (typeof (window) !== "undefined") { + LoadIniSettingsFromMemory(window.localStorage.getItem("imgui.ini") || ""); + } + if (typeof (navigator) !== "undefined") { + this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null; + } + this.io.SetClipboardTextFn = (user_data, text) => { + clipboard_text = text; + // console.log(`set clipboard_text: "${clipboard_text}"`); + if (typeof navigator !== "undefined" && typeof navigator.clipboard !== "undefined") { + // console.log(`clipboard.writeText: "${clipboard_text}"`); + navigator.clipboard.writeText(clipboard_text).then(() => { + // console.log(`clipboard.writeText: "${clipboard_text}" done.`); + }); + } + }; + this.io.GetClipboardTextFn = (user_data) => { + // if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.readText: "${clipboard_text}"`); + // (navigator as any).clipboard.readText().then((text: string): void => { + // clipboard_text = text; + // console.log(`clipboard.readText: "${clipboard_text}" done.`); + // }); + // } + // console.log(`get clipboard_text: "${clipboard_text}"`); + return clipboard_text; + }; + this.io.ClipboardUserData = null; + // Setup back-end capabilities flags + this.io.BackendFlags |= ImGuiBackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional) + // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array. + this.io.KeyMap[ImGuiKey.Tab] = 9; + this.io.KeyMap[ImGuiKey.LeftArrow] = 37; + this.io.KeyMap[ImGuiKey.RightArrow] = 39; + this.io.KeyMap[ImGuiKey.UpArrow] = 38; + this.io.KeyMap[ImGuiKey.DownArrow] = 40; + this.io.KeyMap[ImGuiKey.PageUp] = 33; + this.io.KeyMap[ImGuiKey.PageDown] = 34; + this.io.KeyMap[ImGuiKey.Home] = 36; + this.io.KeyMap[ImGuiKey.End] = 35; + this.io.KeyMap[ImGuiKey.Insert] = 45; + this.io.KeyMap[ImGuiKey.Delete] = 46; + this.io.KeyMap[ImGuiKey.Backspace] = 8; + this.io.KeyMap[ImGuiKey.Space] = 32; + this.io.KeyMap[ImGuiKey.Enter] = 13; + this.io.KeyMap[ImGuiKey.Escape] = 27; + this.io.KeyMap[ImGuiKey.A] = 65; + this.io.KeyMap[ImGuiKey.C] = 67; + this.io.KeyMap[ImGuiKey.V] = 86; + this.io.KeyMap[ImGuiKey.X] = 88; + this.io.KeyMap[ImGuiKey.Y] = 89; + this.io.KeyMap[ImGuiKey.Z] = 90; + this.update = update; + this.resize(sizeX, sizeY); + this.imgui.pluginName = 'imgui_renderer'; + this.addChild(this.surface); + app.renderer.plugins.interaction.addListener("mousedown", this.mouseDown.bind(this)); + app.renderer.plugins.interaction.addListener("mouseup", this.mouseUp.bind(this)); + app.ticker.add(this.updateInternal.bind(this)); + this.interactive = false; + this.interactiveChildren = true; + this.surface.interactive = false; + } + getSizeX() { return this.sizeX; } + getSizeY() { return this.sizeY; } + withContext(cb) { + SetCurrentContext(this.ctx); + cb(); + } + mouseDown(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = true; + } + } + mouseUp(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = false; + } + } + resize(sizeX, sizeY) { + this.sizeX = sizeX; + this.sizeY = sizeY; + this.baseTex.resize(sizeX, sizeY); + this.tex.frame = new Rectangle(0, 0, this.baseTex.width, this.baseTex.height); + } + updateInternal(deltaTime) { + const dt = deltaTime * 1 / (1000 * settings.TARGET_FPMS); + SetCurrentContext(this.ctx); + if (this.io.WantSaveIniSettings) { + this.io.WantSaveIniSettings = false; + if (typeof (window) !== "undefined") { + window.localStorage.setItem("imgui.ini", SaveIniSettingsToMemory()); + } + } + this.io.DisplaySize.x = this.sizeX; + this.io.DisplaySize.y = this.sizeY; + this.io.DisplayFramebufferScale.x = 1; + this.io.DisplayFramebufferScale.y = 1; + this.io.DeltaTime = dt; + let localPos = this.toLocal(app.renderer.plugins.interaction.mouse.global); + if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY) { + localPos = new Point(-Number.MAX_VALUE, -Number.MAX_VALUE); + } + this.io.MousePos.x = localPos.x; + this.io.MousePos.y = localPos.y; + if (this.io.WantSetMousePos) { + console.log("TODO: MousePos", this.io.MousePos.x, this.io.MousePos.y); + } + if (typeof (document) !== "undefined") { + if (this.io.MouseDrawCursor) { + document.body.style.cursor = "none"; + } + else { + switch (GetMouseCursor()) { + case ImGuiMouseCursor.None: + document.body.style.cursor = "none"; + break; + default: + case ImGuiMouseCursor.Arrow: + document.body.style.cursor = "default"; + break; + case ImGuiMouseCursor.TextInput: + document.body.style.cursor = "text"; + break; // When hovering over InputText, etc. + case ImGuiMouseCursor.ResizeAll: + document.body.style.cursor = "move"; + break; // Unused + case ImGuiMouseCursor.ResizeNS: + document.body.style.cursor = "ns-resize"; + break; // When hovering over an horizontal border + case ImGuiMouseCursor.ResizeEW: + document.body.style.cursor = "ew-resize"; + break; // When hovering over a vertical border or a column + case ImGuiMouseCursor.ResizeNESW: + document.body.style.cursor = "nesw-resize"; + break; // When hovering over the bottom-left corner of a window + case ImGuiMouseCursor.ResizeNWSE: + document.body.style.cursor = "nwse-resize"; + break; // When hovering over the bottom-right corner of a window + case ImGuiMouseCursor.Hand: + document.body.style.cursor = "move"; + break; + } + } + } + // Gamepad navigation mapping [BETA] + for (let i = 0; i < this.io.NavInputs.length; ++i) { + this.io.NavInputs[i] = 0.0; + } + if (this.io.ConfigFlags & ImGuiConfigFlags.NavEnableGamepad) { + // Update gamepad inputs + const gamepads = (typeof (navigator) !== "undefined" && typeof (navigator.getGamepads) === "function") ? navigator.getGamepads() : []; + for (let i = 0; i < gamepads.length; ++i) { + const gamepad = gamepads[i]; + if (!gamepad) { + continue; + } + const buttons_count = gamepad.buttons.length; + const axes_count = gamepad.axes.length; + const MAP_BUTTON = function (NAV_NO, BUTTON_NO) { + if (!gamepad) { + return; + } + if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed) + this.io.NavInputs[NAV_NO] = 1.0; + }; + const MAP_ANALOG = function (NAV_NO, AXIS_NO, V0, V1) { + if (!gamepad) { + return; + } + let v = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0; + v = (v - V0) / (V1 - V0); + if (v > 1.0) + v = 1.0; + if (this.io.NavInputs[NAV_NO] < v) + this.io.NavInputs[NAV_NO] = v; + }; + // TODO: map input based on vendor and product id + // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id + const match = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/); + const match_chrome = gamepad.id.match(/^.*\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\).*$/); + const vendor = (match && match[1]) || (match_chrome && match_chrome[1]) || "0000"; + const product = (match && match[2]) || (match_chrome && match_chrome[2]) || "0000"; + switch (vendor + product) { + case "046dc216": // Logitech Logitech Dual Action (Vendor: 046d Product: c216) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 2); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 0); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "046dc21d": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d) + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_ANALOG(ImGuiNavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT + MAP_ANALOG(ImGuiNavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "2dc86001": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001) + case "2dc86101": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 0); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 4); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 6); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 7); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 8); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + default: // standard gamepad: https://w3c.github.io/gamepad/#remapping + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + } + } + } + NewFrame(); + this.update(dt); + EndFrame(); + Render(); + app.renderer.render(this.imgui, this.tex); + this.surface.interactive = this.io.WantCaptureMouse; + } +} +let canvas$1 = null; +//export let gl: WebGL2RenderingContext | null = null; +let g_ShaderHandle = null; +let g_VertHandle = null; +let g_FragHandle = null; +let g_AttribLocationTex = null; +let g_AttribLocationProjMtx = null; +let g_AttribLocationPosition = -1; +let g_AttribLocationUV = -1; +let g_AttribLocationColor = -1; +let g_VaoHandle = null; +let g_VboHandle = null; +let g_ElementsHandle = null; +let g_FontTexture = null; +function document_on_copy(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_cut(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_paste(event) { + if (event.clipboardData) { + clipboard_text = event.clipboardData.getData("text/plain"); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function window_on_gamepadconnected(event /* GamepadEvent */) { + console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.", event.gamepad.index, event.gamepad.id, event.gamepad.buttons.length, event.gamepad.axes.length); +} +function window_on_gamepaddisconnected(event /* GamepadEvent */) { + console.log("Gamepad disconnected at index %d: %s.", event.gamepad.index, event.gamepad.id); +} +function canvas_on_blur(event) { + for (var io of contextIOs) { + io.KeyCtrl = false; + io.KeyShift = false; + io.KeyAlt = false; + io.KeySuper = false; + for (let i = 0; i < io.KeysDown.length; ++i) { + io.KeysDown[i] = false; + } + for (let i = 0; i < io.MouseDown.length; ++i) { + io.MouseDown[i] = false; + } + } +} +function canvas_on_keydown(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = true; + // forward to the keypress event + if ( /*io.WantCaptureKeyboard ||*/event.key === "Tab") { + event.preventDefault(); + } + } +} +function canvas_on_keyup(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = false; + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +function canvas_on_keypress(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.AddInputCharacter(event.charCode); + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +// MouseEvent.button +// A number representing a given button: +// 0: Main button pressed, usually the left button or the un-initialized state +// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present) +// 2: Secondary button pressed, usually the right button +// 3: Fourth button, typically the Browser Back button +// 4: Fifth button, typically the Browser Forward button +const mouse_button_map = [0, 2, 1, 3, 4]; +function canvas_on_contextmenu(event) { + for (var io of contextIOs) { + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function canvas_on_wheel(event) { + for (var io of contextIOs) { + let scale = 1.0; + switch (event.deltaMode) { + case event.DOM_DELTA_PIXEL: + scale = 0.01; + break; + case event.DOM_DELTA_LINE: + scale = 0.2; + break; + case event.DOM_DELTA_PAGE: + scale = 1.0; + break; + } + io.MouseWheelH = event.deltaX * scale; + io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text. + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function PrePIXIInit() { + Renderer.registerPlugin("imgui_renderer", fromConstructor(ImGuiImplInternalRenderer)); +} +function Init(_app) { + // Setup Dear ImGui binding + IMGUI_CHECKVERSION(); + if (typeof (document) !== "undefined") { + document.body.addEventListener("copy", document_on_copy); + document.body.addEventListener("cut", document_on_cut); + document.body.addEventListener("paste", document_on_paste); + } + if (typeof (window) !== "undefined") { + window.addEventListener("gamepadconnected", window_on_gamepadconnected); + window.addEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + app = _app; + gl = app.renderer.gl; + canvas$1 = app.view; + gl.getExtension("EXT_color_buffer_float"); + if (canvas$1 !== null) { + canvas$1.style.touchAction = "none"; // Disable browser handling of all panning and zooming gestures. + canvas$1.addEventListener("blur", canvas_on_blur); + canvas$1.addEventListener("keydown", canvas_on_keydown); + canvas$1.addEventListener("keyup", canvas_on_keyup); + canvas$1.addEventListener("keypress", canvas_on_keypress); + canvas$1.addEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.addEventListener("wheel", canvas_on_wheel); + } + CreateDeviceObjects(); +} +function Shutdown() { + DestroyDeviceObjects(); + if (canvas$1 !== null) { + canvas$1.removeEventListener("blur", canvas_on_blur); + canvas$1.removeEventListener("keydown", canvas_on_keydown); + canvas$1.removeEventListener("keyup", canvas_on_keyup); + canvas$1.removeEventListener("keypress", canvas_on_keypress); + canvas$1.removeEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.removeEventListener("wheel", canvas_on_wheel); + } + app = null; + canvas$1 = null; + if (typeof (window) !== "undefined") { + window.removeEventListener("gamepadconnected", window_on_gamepadconnected); + window.removeEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + if (typeof (document) !== "undefined") { + document.body.removeEventListener("copy", document_on_copy); + document.body.removeEventListener("cut", document_on_cut); + document.body.removeEventListener("paste", document_on_paste); + } +} +function CreateFontsTexture() { + const io = GetIO(); + // Backup GL state + const last_texture = gl && gl.getParameter(gl.TEXTURE_BINDING_2D); + // Build texture atlas + // const width: number = 256; + // const height: number = 256; + // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff); + const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory. + // console.log(`font texture ${width} x ${height} @ ${pixels.length}`); + // Upload texture to graphics system + g_FontTexture = gl && gl.createTexture(); + gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2 + gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels); + // Store our identifier + io.Fonts.TexID = g_FontTexture || { foo: "bar" }; + // console.log("font texture id", g_FontTexture); + // Restore modified GL state + gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture); +} +function DestroyFontsTexture() { + const io = GetIO(); + io.Fonts.TexID = null; + gl && gl.deleteTexture(g_FontTexture); + g_FontTexture = null; +} +function CreateDeviceObjects() { + const vertex_shader = [ + "#version 300 es", + "uniform mat4 ProjMtx;", + "in vec2 Position;", + "in vec2 UV;", + "in vec4 Color;", + "out vec2 Frag_UV;", + "out vec4 Frag_Color;", + "void main() {", + " Frag_UV = UV;", + " Frag_Color = Color;", + " gl_Position = ProjMtx * vec4(Position.xy,0,1);", + "}", + ]; + const fragment_shader = [ + "#version 300 es", + "precision mediump float;", + "uniform sampler2D Texture;", + "in vec2 Frag_UV;", + "in vec4 Frag_Color;", + "out vec4 OutColor;", + "void main() {", + " OutColor = Frag_Color * texture(Texture, Frag_UV);", + "}", + ]; + g_ShaderHandle = gl && gl.createProgram(); + g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER); + g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER); + gl && gl.shaderSource(g_VertHandle, vertex_shader.join("\n")); + gl && gl.shaderSource(g_FragHandle, fragment_shader.join("\n")); + gl && gl.compileShader(g_VertHandle); + gl && gl.compileShader(g_FragHandle); + gl && gl.attachShader(g_ShaderHandle, g_VertHandle); + gl && gl.attachShader(g_ShaderHandle, g_FragHandle); + gl && gl.linkProgram(g_ShaderHandle); + g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle, "Texture"); + g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle, "ProjMtx"); + g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle, "Position") || 0; + g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle, "UV") || 0; + g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle, "Color") || 0; + g_VaoHandle = gl && gl.createVertexArray(); + g_VboHandle = gl && gl.createBuffer(); + g_ElementsHandle = gl && gl.createBuffer(); +} +function DestroyDeviceObjects() { + DestroyFontsTexture(); + gl && gl.deleteVertexArray(g_VaoHandle); + g_VaoHandle = null; + gl && gl.deleteBuffer(g_VboHandle); + g_VboHandle = null; + gl && gl.deleteBuffer(g_ElementsHandle); + g_ElementsHandle = null; + g_AttribLocationTex = null; + g_AttribLocationProjMtx = null; + g_AttribLocationPosition = -1; + g_AttribLocationUV = -1; + g_AttribLocationColor = -1; + gl && gl.deleteProgram(g_ShaderHandle); + g_ShaderHandle = null; + gl && gl.deleteShader(g_VertHandle); + g_VertHandle = null; + gl && gl.deleteShader(g_FragHandle); + g_FragHandle = null; +} + +exports.ImGuiWindow = ImGuiWindow; +exports.Init = Init; +exports.PrePIXIInit = PrePIXIInit; +exports.Shutdown = Shutdown; +//# sourceMappingURL=imgui_impl.js.map diff --git a/imgui_impl.js.map b/imgui_impl.js.map new file mode 100644 index 0000000..30848af --- /dev/null +++ b/imgui_impl.js.map @@ -0,0 +1 @@ +{"version":3,"file":"imgui_impl.js","sources":["node_modules/rollup-plugin-node-builtins/src/es6/empty.js","node_modules/rollup-plugin-node-builtins/src/es6/path.js","node_modules/imgui-js/bind-imgui.js","node_modules/imgui-js/imgui.ts","node_modules/es6-promise-polyfill/promise.js","node_modules/object-assign/index.js","node_modules/@pixi/polyfill/lib/polyfill.es.js","node_modules/ismobilejs/src/isMobile.js","node_modules/@pixi/settings/lib/settings.es.js","node_modules/eventemitter3/index.js","node_modules/earcut/src/earcut.js","node_modules/rollup-plugin-node-builtins/src/es6/punycode.js","node_modules/rollup-plugin-node-builtins/src/es6/util.js","node_modules/rollup-plugin-node-builtins/src/es6/qs.js","node_modules/rollup-plugin-node-builtins/src/es6/url.js","node_modules/@pixi/constants/lib/constants.es.js","node_modules/@pixi/utils/lib/utils.es.js","node_modules/@pixi/math/lib/math.es.js","node_modules/@pixi/display/lib/display.es.js","node_modules/@pixi/accessibility/lib/accessibility.es.js","node_modules/@pixi/runner/lib/runner.es.js","node_modules/@pixi/ticker/lib/ticker.es.js","node_modules/@pixi/core/lib/core.es.js","node_modules/@pixi/extract/lib/extract.es.js","node_modules/@pixi/interaction/lib/interaction.es.js","node_modules/@pixi/graphics/lib/graphics.es.js","node_modules/@pixi/sprite/lib/sprite.es.js","node_modules/@pixi/text/lib/text.es.js","node_modules/@pixi/prepare/lib/prepare.es.js","node_modules/@pixi/app/lib/app.es.js","node_modules/parse-uri/index.js","node_modules/mini-signals/lib/mini-signals.js","node_modules/resource-loader/dist/resource-loader.esm.js","node_modules/@pixi/loaders/lib/loaders.es.js","node_modules/@pixi/particles/lib/particles.es.js","node_modules/@pixi/spritesheet/lib/spritesheet.es.js","node_modules/@pixi/sprite-tiling/lib/sprite-tiling.es.js","node_modules/@pixi/text-bitmap/lib/text-bitmap.es.js","node_modules/@pixi/filter-color-matrix/lib/filter-color-matrix.es.js","node_modules/@pixi/mixin-cache-as-bitmap/lib/mixin-cache-as-bitmap.es.js","node_modules/@pixi/mixin-get-child-by-name/lib/mixin-get-child-by-name.es.js","node_modules/@pixi/mixin-get-global-position/lib/mixin-get-global-position.es.js","node_modules/@pixi/mesh/lib/mesh.es.js","node_modules/pixi.js/lib/pixi.es.js","utils.ts","imgui_impl.ts"],"sourcesContent":["export default {};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// resolves . and .. elements in a path array with directory names there\n// must be no slashes, empty elements, or device names (c:\\) in the array\n// (so also no leading and trailing slashes - it does not distinguish\n// relative and absolute paths)\nfunction normalizeArray(parts, allowAboveRoot) {\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = parts.length - 1; i >= 0; i--) {\n var last = parts[i];\n if (last === '.') {\n parts.splice(i, 1);\n } else if (last === '..') {\n parts.splice(i, 1);\n up++;\n } else if (up) {\n parts.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (allowAboveRoot) {\n for (; up--; up) {\n parts.unshift('..');\n }\n }\n\n return parts;\n}\n\n// Split a filename into [root, dir, basename, ext], unix version\n// 'root' is just a slash, or nothing.\nvar splitPathRe =\n /^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;\nvar splitPath = function(filename) {\n return splitPathRe.exec(filename).slice(1);\n};\n\n// path.resolve([from ...], to)\n// posix version\nexport function resolve() {\n var resolvedPath = '',\n resolvedAbsolute = false;\n\n for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {\n var path = (i >= 0) ? arguments[i] : '/';\n\n // Skip empty and invalid entries\n if (typeof path !== 'string') {\n throw new TypeError('Arguments to path.resolve must be strings');\n } else if (!path) {\n continue;\n }\n\n resolvedPath = path + '/' + resolvedPath;\n resolvedAbsolute = path.charAt(0) === '/';\n }\n\n // At this point the path should be resolved to a full absolute path, but\n // handle relative paths to be safe (might happen when process.cwd() fails)\n\n // Normalize the path\n resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {\n return !!p;\n }), !resolvedAbsolute).join('/');\n\n return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';\n};\n\n// path.normalize(path)\n// posix version\nexport function normalize(path) {\n var isPathAbsolute = isAbsolute(path),\n trailingSlash = substr(path, -1) === '/';\n\n // Normalize the path\n path = normalizeArray(filter(path.split('/'), function(p) {\n return !!p;\n }), !isPathAbsolute).join('/');\n\n if (!path && !isPathAbsolute) {\n path = '.';\n }\n if (path && trailingSlash) {\n path += '/';\n }\n\n return (isPathAbsolute ? '/' : '') + path;\n};\n\n// posix version\nexport function isAbsolute(path) {\n return path.charAt(0) === '/';\n}\n\n// posix version\nexport function join() {\n var paths = Array.prototype.slice.call(arguments, 0);\n return normalize(filter(paths, function(p, index) {\n if (typeof p !== 'string') {\n throw new TypeError('Arguments to path.join must be strings');\n }\n return p;\n }).join('/'));\n}\n\n\n// path.relative(from, to)\n// posix version\nexport function relative(from, to) {\n from = resolve(from).substr(1);\n to = resolve(to).substr(1);\n\n function trim(arr) {\n var start = 0;\n for (; start < arr.length; start++) {\n if (arr[start] !== '') break;\n }\n\n var end = arr.length - 1;\n for (; end >= 0; end--) {\n if (arr[end] !== '') break;\n }\n\n if (start > end) return [];\n return arr.slice(start, end - start + 1);\n }\n\n var fromParts = trim(from.split('/'));\n var toParts = trim(to.split('/'));\n\n var length = Math.min(fromParts.length, toParts.length);\n var samePartsLength = length;\n for (var i = 0; i < length; i++) {\n if (fromParts[i] !== toParts[i]) {\n samePartsLength = i;\n break;\n }\n }\n\n var outputParts = [];\n for (var i = samePartsLength; i < fromParts.length; i++) {\n outputParts.push('..');\n }\n\n outputParts = outputParts.concat(toParts.slice(samePartsLength));\n\n return outputParts.join('/');\n}\n\nexport var sep = '/';\nexport var delimiter = ':';\n\nexport function dirname(path) {\n var result = splitPath(path),\n root = result[0],\n dir = result[1];\n\n if (!root && !dir) {\n // No dirname whatsoever\n return '.';\n }\n\n if (dir) {\n // It has a dirname, strip trailing slash\n dir = dir.substr(0, dir.length - 1);\n }\n\n return root + dir;\n}\n\nexport function basename(path, ext) {\n var f = splitPath(path)[2];\n // TODO: make this comparison case-insensitive on windows?\n if (ext && f.substr(-1 * ext.length) === ext) {\n f = f.substr(0, f.length - ext.length);\n }\n return f;\n}\n\n\nexport function extname(path) {\n return splitPath(path)[3];\n}\nexport default {\n extname: extname,\n basename: basename,\n dirname: dirname,\n sep: sep,\n delimiter: delimiter,\n relative: relative,\n join: join,\n isAbsolute: isAbsolute,\n normalize: normalize,\n resolve: resolve\n};\nfunction filter (xs, f) {\n if (xs.filter) return xs.filter(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n if (f(xs[i], i, xs)) res.push(xs[i]);\n }\n return res;\n}\n\n// String.prototype.substr - negative index don't work in IE8\nvar substr = 'ab'.substr(-1) === 'b' ?\n function (str, start, len) { return str.substr(start, len) } :\n function (str, start, len) {\n if (start < 0) start = str.length + start;\n return str.substr(start, len);\n }\n;\n","\nvar Module = (function() {\n var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;\n return (\nfunction(Module) {\n Module = Module || {};\n\nvar Module=typeof Module!==\"undefined\"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key]}}Module[\"arguments\"]=[];Module[\"thisProgram\"]=\"./this.program\";Module[\"quit\"]=function(status,toThrow){throw toThrow};Module[\"preRun\"]=[];Module[\"postRun\"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window===\"object\";ENVIRONMENT_IS_WORKER=typeof importScripts===\"function\";ENVIRONMENT_HAS_NODE=typeof process===\"object\"&&typeof require===\"function\";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory=\"\";function locateFile(path){if(Module[\"locateFile\"]){return Module[\"locateFile\"](path,scriptDirectory)}else{return scriptDirectory+path}}if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+\"/\";var nodeFS;var nodePath;Module[\"read\"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require(\"fs\");if(!nodePath)nodePath=require(\"path\");filename=nodePath[\"normalize\"](filename);ret=nodeFS[\"readFileSync\"](filename)}return binary?ret:ret.toString()};Module[\"readBinary\"]=function readBinary(filename){var ret=Module[\"read\"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}assert(ret.buffer);return ret};if(process[\"argv\"].length>1){Module[\"thisProgram\"]=process[\"argv\"][1].replace(/\\\\/g,\"/\")}Module[\"arguments\"]=process[\"argv\"].slice(2);process[\"on\"](\"uncaughtException\",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process[\"on\"](\"unhandledRejection\",abort);Module[\"quit\"]=function(status){process[\"exit\"](status)};Module[\"inspect\"]=function(){return\"[Emscripten Module object]\"}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!=\"undefined\"){Module[\"read\"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)}}Module[\"readBinary\"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer===\"function\"){return new Uint8Array(readbuffer(f))}data=read(f,\"binary\");assert(typeof data===\"object\");return data};if(typeof scriptArgs!=\"undefined\"){Module[\"arguments\"]=scriptArgs}else if(typeof arguments!=\"undefined\"){Module[\"arguments\"]=arguments}if(typeof quit===\"function\"){Module[\"quit\"]=function(status){quit(status)}}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf(\"blob:\")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf(\"/\")+1)}else{scriptDirectory=\"\"}Module[\"read\"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module[\"readBinary\"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.responseType=\"arraybuffer\";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}}}Module[\"readAsync\"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,true);xhr.responseType=\"arraybuffer\";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror()};xhr.onerror=onerror;xhr.send(null)};Module[\"setWindowTitle\"]=function(title){document.title=title}}else{}var out=Module[\"print\"]||(typeof console!==\"undefined\"?console.log.bind(console):typeof print!==\"undefined\"?print:null);var err=Module[\"printErr\"]||(typeof printErr!==\"undefined\"?printErr:typeof console!==\"undefined\"&&console.warn.bind(console)||out);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key]}}moduleOverrides=undefined;var asm2wasmImports={\"f64-rem\":function(x,y){return x%y},\"debugger\":function(){debugger}};var functionPointers=new Array(0);var tempRet0=0;var setTempRet0=function(value){tempRet0=value};if(typeof WebAssembly!==\"object\"){err(\"no native wasm support detected\")}var wasmMemory;var wasmTable;var ABORT=false;var EXITSTATUS=0;function assert(condition,text){if(!condition){abort(\"Assertion failed: \"+text)}}var UTF8Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf8\"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str=\"\";while(idx>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):\"\"}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4}return len}var UTF16Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf-16le\"):undefined;var WASM_PAGE_SIZE=65536;var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferViews(){Module[\"HEAP8\"]=HEAP8=new Int8Array(buffer);Module[\"HEAP16\"]=HEAP16=new Int16Array(buffer);Module[\"HEAP32\"]=HEAP32=new Int32Array(buffer);Module[\"HEAPU8\"]=HEAPU8=new Uint8Array(buffer);Module[\"HEAPU16\"]=HEAPU16=new Uint16Array(buffer);Module[\"HEAPU32\"]=HEAPU32=new Uint32Array(buffer);Module[\"HEAPF32\"]=HEAPF32=new Float32Array(buffer);Module[\"HEAPF64\"]=HEAPF64=new Float64Array(buffer)}var DYNAMIC_BASE=5315584,DYNAMICTOP_PTR=72672;var TOTAL_STACK=5242880;var INITIAL_TOTAL_MEMORY=Module[\"TOTAL_MEMORY\"]||16777216;if(INITIAL_TOTAL_MEMORY>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback==\"function\"){callback();continue}var func=callback.func;if(typeof func===\"number\"){if(callback.arg===undefined){Module[\"dynCall_v\"](func)}else{Module[\"dynCall_vi\"](func,callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;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 ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__)}function preMain(){callRuntimeCallbacks(__ATMAIN__)}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 addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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()}}}Module[\"preloadedImages\"]={};Module[\"preloadedAudios\"]={};var dataURIPrefix=\"data:application/octet-stream;base64,\";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile=\"data:application/octet-stream;base64,AGFzbQEAAAAB2AyxAWACf38Bf2ACf38AYAJ8fAF8YAF/AX9gAX8AYAN/f38Bf2AEf39/fwBgA39/fwBgAn9/AX1gBH9/f38Bf2AEf399fwBgAn99AX9gA399fQF/YAZ9fX1/f38AYAR/fX9/AGAFf39/fX8AYAABfGADf31/AGAFf39/f38Bf2AIf39/f39/f38Bf2AHf39/f39/fwF/YAZ/f39/f38Bf2AGf398fH9/AX9gCX9/f39/f39/fwF/YAN9f38AYAl/f39/f39/f38AYAZ/f39/f38AYAJ/fQBgAX8BfWAAAX9gAn19AGABfQBgAAF9YAAAYAN/f30Bf2AGf39/fX9/AGAIf399fX1/f38AYAR/fX99AX9gBn9/fX9/fwBgBX9/f399AGAHf39/f31/fQBgBn9/f399fwBgB39/f39/f38AYAd/f39/f399AGAGf39/f399AGAFf39/f38AYAZ/f31/f30AYAV/f31/fwBgCH9/fX9/f31/AGALf39/f39/f39/f38AYAl/f39/f39/fX8AYAh/f39/f399fwBgBH9/f30AYAZ/f319fX8AYAp/f39/f39/f39/AGADf399AGAGf3x/f39/AX9gA39+fwF+YAF/AXxgA39/fwF9YAR/f319AX9gCH9/fX19f39/AX9gBH9/fX8Bf2AFf399f30Bf2AHf39/fHx/fwF/YAR/f399AX9gBX9/f31/AX9gBn9/f31/fwF/YAp/f39/f39/f39/AX9gA399fQBgB399fX1/f38AYAd/f399fX1/AGAHf39/fX9/fQBgB39/f31/f38AYAl/f399f39/fX8AYAd/f39/f31/AGAIf39/f399f30AYAh/f39/f39/fQBgCH9/f39/f39/AGAKf39/f39/f399fwBgDH9/f39/f39/f39/fwBgDX9/f39/f39/f39/f38AYAN/f3wAYAN/f38BfGABfQF9YAJ9fQF9YAV/fX19fQBgBH9/fX0AYAJ/fQF9YAR9fX19AX9gBX9/f319AGADfX19AX1gAn19AX9gBH19fX0BfWALf319fX19fX19fX8AYAl/f31/f39/fX8AYAp/f31/f39/f31/AGAFf31/f30Bf2AIf399fX9/f38AYAt/f319fX19fX19fQBgCH9/f39/fX1/AGAHf39/fX1/fwBgBX9/fX9/AX9gCH9/f399fX9/AGAHf39/fX19fQBgCn9/fX19fX19fX8AYAx/f319fX19fX19fX8AYAd/fX19fX19AGAEf31/fwF/YAh/f399f39/fQF/YAV/fX9/fwF/YAV/fX5+fwF/YAZ/fX19f30Bf2AGf318fH99AX9gAn98AXxgAn9+AX5gCX9/f399f39/fQF/YAd/f319fX99AX9gCX9/f319fX9/fQF/YAZ/f31/f38Bf2AIf39/fX9/f38Bf2AKf39/f39/f31/fwF/YAl/f39/f399f38Bf2AJf39/fn5/fX9/AX9gCX9/f319f31/fwF/YAl/f398fH99f38Bf2AFfHx8fX0BfWADfHx9AXxgA3x8fAF8YAV9fX19fQF9YAN+fn4BfWADfn5+AX5gBX5+fn19AX1gBX9/f319AX1gB39/f39/f30Bf2AIf39/f39/f30Bf2AGf399fX99AX9gB39/f319f30Bf2AGf399fX9/AX9gB39/f31/fX8AYAl/f39/f399fX8AYAd/f39/fX1/AGAEf319fQF9YAZ/f39/f30Bf2AHf399f39/fQF/YAJ/fgBgAn9/AX5gA35/fwF/YAJ+fwF/YAJ8fwF8YAV/f39/fwF8YAZ/f39/f38BfGACfX8BfWABfAF9YAJ9fwF/YAN/f34AYAF/AX5gAn9/AXxgBH9/f38BfWAHf398f39/fwF/YAV/f399fQF/YAl/f399fX1/f38Bf2AGf39/fX99AX9gCH9/f398fH9/AX9gBX9/f399AX9gBn9/f399fwF/YAd/f39/fX9/AX9gC39/f39/f39/f39/AX9gCX9/f319fX9/fwBgCH9/f399fX1/AGAHf39/f31/fwBgCH9/f399f399AGAIf39/f31/f38AYAp/f39/fX9/f31/AGAJf39/f39/fX99AGAJf39/f39/f399AGALf39/f39/f39/fX8AAvQDNwNlbnYBYgA2A2VudgFjAE4DZW52AWQAGgNlbnYBZQAEA2VudgFmAAADZW52AWcAUQNlbnYBaABTA2VudgFpAAcDZW52AWoAAANlbnYBawAtA2VudgFsACEDZW52AW0ABwNlbnYBbgAAA2VudgFvAAYDZW52AXAAAANlbnYBcQAaA2VudgFyAAQDZW52AXMABANlbnYBdAAEA2VudgF1AAAI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/AYLC0H89gEoAgAhASAAQZypBCgCACABQf8BcUHyBmoRAQALWgEDfyMEIQIjBEEQaiQEIAJBmKkEKAIAIgNBsCtqIABBBHRqIgApAgA3AgAgAiAAKQIINwIIIAIgAioCDCADQZAqaioCACABlJQ4AgwgAhChAyEEIAIkBCAECxYAIAAgASkCADcCACAAIAIpAgA3AggLBgBBNBADCwwAIAAgASAAIAFdGwvGAwEDfyACQYDAAE4EQCAAIAEgAhAjGiAADwsgACEEIAAgAmohAyAAQQNxIAFBA3FGBEADQCAAQQNxBEAgAkUEQCAEDwsgACABLAAAOgAAIABBAWohACABQQFqIQEgAkEBayECDAELCyADQXxxIgJBQGohBQNAIAAgBUwEQCAAIAEoAgA2AgAgACABKAIENgIEIAAgASgCCDYCCCAAIAEoAgw2AgwgACABKAIQNgIQIAAgASgCFDYCFCAAIAEoAhg2AhggACABKAIcNgIcIAAgASgCIDYCICAAIAEoAiQ2AiQgACABKAIoNgIoIAAgASgCLDYCLCAAIAEoAjA2AjAgACABKAI0NgI0IAAgASgCODYCOCAAIAEoAjw2AjwgAEFAayEAIAFBQGshAQwBCwsDQCAAIAJIBEAgACABKAIANgIAIABBBGohACABQQRqIQEMAQsLBSADQQRrIQIDQCAAIAJIBEAgACABLAAAOgAAIAAgASwAAToAASAAIAEsAAI6AAIgACABLAADOgADIABBBGohACABQQRqIQEMAQsLCwNAIAAgA0gEQCAAIAEsAAA6AAAgAEEBaiEAIAFBAWohAQwBCwsgBAsSACAAQbT4ATYCACAAQQRqED4LKgAgACgCEBBbBEBBACEABSAAQQRqIgAsAAtBAEgEQCAAKAIAIQALCyAACxIAIAAgARDpECAAQcD4ATYCAAsQACAALQABIAAtAABBCHRyCyoBAX8jBCEBIwRBEGokBCABIAA2AgBBBBA/IgAgASgCADYCACABJAQgAAslAQF/IAEoAgAhAiAAQgA3AgAgAEEANgIIIAAgAUEEaiACEJMBCwgAQQwQA0EACwcAIABBBGoLJwEBfyAAKAIIIgEEQCAAQQA2AgQgAEEANgIAIAEQQSAAQQA2AggLCw0AIAAoAgggAUECdGoLFgAgACABKgIAIAKUIAEqAgQgApQQMgsp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QCADIAMoApACQQFyNgKQAgtBAQsLBgAgAKiyCw0AIABB1ABqIAEQmgILFAAgASACIAAgACACXhsgACABXRsLEQBBACAAQQRqIAAoAggQWxsLIQAgAEP//39/Q///f38QMiAAQQhqQ///f/9D//9//xAyCxAAIAAoAggiAARAIAAQQQsLFwAgAEEANgIEIABBADYCACAAQQA2AggLIQEBfyMEIQIjBEEQaiQEIAIgATYCACAAIAIQ2gIgAiQEC5gCAQR/IAAgAmohBCABQf8BcSEDIAJBwwBOBEADQCAAQQNxBEAgACADOgAAIABBAWohAAwBCwsgA0EIdCADciADQRB0ciADQRh0ciEBIARBfHEiBUFAaiEGA0AgACAGTARAIAAgATYCACAAIAE2AgQgACABNgIIIAAgATYCDCAAIAE2AhAgACABNgIUIAAgATYCGCAAIAE2AhwgACABNgIgIAAgATYCJCAAIAE2AiggACABNgIsIAAgATYCMCAAIAE2AjQgACABNgI4IAAgATYCPCAAQUBrIQAMAQsLA0AgACAFSARAIAAgATYCACAAQQRqIQAMAQsLCwNAIAAgBEgEQCAAIAM6AAAgAEEBaiEADAELCyAEIAJrC58BAQN/EDwiAiwAf0UEQEGYqQQoAgAhBCABQwAAAABdIQMgAEMAAAAAXARAIAIqArQDQwAAAAAgASADGyACKgIMIAIqAliTIACSkpIhACACKgK4AyEBBSADBEAgBEHUKmoqAgAhAQsgAioC0AEhAAsgAiABIACSOALIASACIAIoAtQBNgLMASACIAIpAvQBNwLoASACIAIoAvwBNgLwAQsLqwECA38BfSMEIQUjBEEQaiQEQZipBCgCACEGIAMEQCABIAIQkAEhAgsgBSEDIAZBsDFqKAIAIQcgBkG0MWoqAgAhCCABIAJGBEAgAEMAAAAAIAgQMgUgAyAHIAhD//9/fyAEIAEgAkEAEJoDIAMqAgAiBEMAAAAAXgRAIAMgBCAIIAcqAgCVkyIEOAIACyADIARDMzNzP5KosjgCACAAIAMpAwA3AgALIAUkBAsnAEGYqQQoAgBBNGogAEECdGooAgAiAEF/SgR/IAAgARD2AgVBAAsLNQECfyMEIQMjBEEQaiQEAn8gACgCACEEIAMgARB3IAQLIAMoAgAgAigCABALIAMQMSADJAQL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KAIIRgRAIAEQ4QELIAEgACABKAIAEPIFIgI2AgAgASACNgIIIAAgARCCAQwFCyABEOEBIAFBADYCCCABQQA2AgAgAUEAOgAPDAQLIAEQ4QEgASAAKAIsIgI2AgggASACNgIAIAFBADoADwwDCyAAKAIsIQQgACABEIIBIAEQ4QEgASwAEARAIAEgBDYCACAEIQIFIAEoAgAiAiAESARAA0ACQAJ/IAAgAhDiAUH//wNxQQpGIQwgASgCACECIAwLDQAgASACQQFqIgI2AgAgAiAESA0BCwsLCyABIAI2AgggAUEAOgAPDAILQQMhAwwBCyAFQYCADEgEQCAFQY2ABGsEQEEDIQMMAgsgASgCBCABKAIIRgRAIAEgACABKAIAEPIFNgIAIAAgARCCAQUgACABELgECwwBCwJAAkACQCAFQYCADGsOAgIAAQsgARDhASABIAEoAghBAWo2AgggACABEIIBIAEgASgCCDYCACABQQA6AA8MAgtBAyEDDAELIAAgARCCASABEOEBIAEoAggiAkEASgRAIAEgAkF/aiICNgIICyABIAI2AgAgAUEAOgAPCyADQQNGBEBBACAFIAVB//8DShsiAkEASgRAAkAgBiACOwEAIAJBCkYEQCABLAAQDQELAkACQCABLAAMRQ0AIAEoAgQgASgCCEcNACABKAIAIgIgACgCLE4NACAAIQUgAUEYaiACQQFBARC5BCIEBEAgBCAFIAIQ4gE7AQALIAAgASgCAEEBENkDIAAgASgCACAGQQEQkgMEQCABIAEoAgBBAWo2AgAgAUEAOgAPCwwBCyAAIAEQkwMgACABKAIAIAZBARCSAwRAIAEgASgCAEEBEPcFIAEgASgCAEEBajYCACABQQA6AA8LCwsLBSADQckARgRAIAEoAgQgASgCCEYEQCABKAIAIgIgACgCLEgEQCAAIAEgAkEBENoDCwUgACABEJMDCyABQQA6AA8FIANBzgBGBEAgASgCBCABKAIIRgRAIAAgARCCASABKAIAIgJBAEoEQCAAIAEgAkF/akEBENoDIAEgASgCAEF/ajYCAAsFIAAgARCTAwsgAUEAOgAPCwsLIAkkBAtIAQF/IAFBGGogAiADQQAQuQQiBEEARyADQQBKcQRAQQAhAQNAIAFBAXQgBGogACABIAJqEOIBOwEAIAFBAWoiASADRw0A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CyQAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAAQQNxQZwLahExAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBA3FBmAtqETYACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBlAtqERkACyIAIAEgAiADIAQgBSAGIAcgCCAJIAogAEEBcUGSC2oRTwALHgAgASACIAMgBCAFIAYgByAIIABBA3FBjgtqEU4ACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBigtqETIACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQYgLahFNAAscACABIAIgAyAEIAUgBiAHIABBB3FBgAtqESoACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQf4KahEzAAscACABIAIgAyAEIAUgBiAHIABBA3FB+gpqESsACxoAIAEgAiADIAQgBSAGIABBD3FB6gpqERoACw0AIABB+ClqQQAQwAELHgAgASACIAMgBCAFIAYgByAIIABBAXFB6ApqEUwACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHmCmoRSwALGgAgASACIAMgBCAFIAYgAEEDcUHiCmoRLAALGAAgASACIAMgBCAFIABBD3FB0gpqES0ACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHQCmoRKAALGgAgASACIAMgBCAFIAYgAEEDcUHMCmoRKQALGAAgASACIAMgBCAFIABBA3FByApqEScACxYAIAEgAiADIAQgAEEfcUGoCmoRBgALIAAgASACIAMgBCAFIAYgByAIIAkgAEEBcUGmCmoRSgALHAAgASACIAMgBCAFIAYgByAAQQFxQaQKahFJAAscACABIAIgAyAEIAUgBiAHIABBAXFBogpqEUgACxoAIAEgAiADIAQgBSAGIABBA3FBngpqESMACxgAIAEgAiADIAQgBSAAQQNxQZoKahEPAAscACABIAIgAyAEIAUgBiAHIABBAXFBmApqEUcACxYAIAEgAiADIAQgAEEDcUGUCmoRNAALFQAgASACIAMgAEH/AHFBlAlqEQcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQZIJahEwAAsaACABIAIgAyAEIAUgBiAAQQFxQZAJahEmAAsaACABIAIgAyAEIAUgBiAAQQFxQY4JahEuAAsYACABIAIgAyAEIAUgAEEDcUGKCWoRLwALFgAgASACIAMgBCAAQQNxQYYJahEKAAseACABIAIgAyAEIAUgBiAHIAggAEEBcUGECWoRJAALGgAgASACIAMgBCAFIAYgAEEBcUGCCWoRNQALFAAgASACIAMgAEEPcUHyCGoRNwALFgAgASACIAMgBCAAQQNxQe4GahEOAAsUACABIAIgAyAAQQFxQewGahERAAscACABIAIgAyAEIAUgBiAHIABBAXFB6gZqEUYACxQAIAEgAiADIABBAXFB6AZqEUUACxQAIAEgAiADIABBAXFB3gRqERgACxoAIAEgAiADIAQgBSAGIABBA3FB2gRqEQ0ACxUAQZipBCgCAEE0aiAAQQJ0aigCAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBAXFBggRqEUQACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBB3FB+gNqERcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQ9xQeoDahETAAscACABIAIgAyAEIAUgBiAHIABBD3FB2gNqERQACxoAIAEgAiADIAQgBSAGIABBH3FBugNqERUACxgAIAEgAiADIAQgBSAAQQ9xQaoDahESAAsWACABIAIgAyAEIABBH3FBigNqEQkACxoAIAEgAiADIAQgBSAGIABBAXFBiANqEUMACxgAIAEgAiADIAQgBSAAQQFxQYYDahFCAAsWACABIAIgAyAEIABBAXFBhANqEUEACxwAIAEgAiADIAQgBSAGIAcgAEEBcUGCA2oRQAALGAAgASACIAMgBCAFIABBAXFBwAJqET8ACxYAIAEgAiADIAQgAEEBcUG+AmoRPgALHgAgASACIAMgBCAFIAYgByAIIABBAXFBvAJqET0ACxYAIAEgAiADIAQgAEEBcUG6AmoRPAALFAAgASACIAMgAEEDcUG2AmoRIgALGgAgASACIAMgBCAFIAYgAEEBcUG0AmoRFgALFgAgASACIAMgBCAAQQFxQbIBahElAAsUACABIAIgAyAAQQFxQbABahEMAAsaACABIAIgAyAEIAUgBiAAQQFxQawBahE4AAsUACABIAIgAyAAQQNxQcgAahE7AAsRACABIAIgAEEfcUEoahEIAAsPACABIABBA3FBJGoRHAALDQAgAEEfcUEEahEgAAsPACABIABBAXFBAmoROgALCgAgAEEBcREQAAvS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AiADIAQgBUEPcUHSCmoRLQAMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIAFBADoANCABQQA6ADUgACgCCCIAKAIAKAIUIQMgACABIAIgAkEBIAQgA0EPcUHqCmoRGgAgAQJ/AkAgASwANQR/IAEsADQNAUEBBUEACyEAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAA0CQQQMAwsLIAANAEEEDAELQQMLNgIsDAILCyADQQFGBEAgAUEBNgIgCwsLC0QBAX8gACABKAIIEIUBBEAgASACIAMgBBCFBQUgACgCCCIAKAIAKAIUIQYgACABIAIgAyAEIAUgBkEPcUHqCmoRGgALCxgAIAAgASgCCBCFAQRAIAEgAiADEIcFCwuPAQAgACABKAIIEIUBBEAgASACIAMQhgUFIAAgASgCABCFAQRAAkAgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASACNgIUIAEgASgCKEEBajYCKCABKAIkQQFGBEAgASgCGEECRgRAIAFBAToANgsLIAFBBDYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwsLGgAgACABKAIIEIUBBEAgASACIAMgBBCFBQsLyQEBA38jBCEEIwRBQGskBCAEIQMgACABEIUBBH9BAQUgAQR/IAFB4PQBEJQEIgEEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyABNgIAIAMgADYCCCADQX82AgwgA0EBNgIwIAEoAgAoAhwhACABIAMgAigCAEEBIABBH3FBqApqEQYAIAMoAhhBAUYEfyACIAMoAhA2AgBBAQVBAAsFQQALBUEACwshBSAEJAQgBQt4AQN/IwQhASMEQRBqJAQgASEAAn9BAEGMrgQoAgBB37femgFGDQAaQbMEESEAQYyuBEHft96aATYCAEEACwRAQZSKAyAAEMICBQJ/An9BAEGQrgQoAgAiACgCBEHOlZoSRw0AGiAAKAIACyECIAEkBCACCw8LQQALowICB38BfiMEIQIjBEEwaiQEIAJBGGohASACQRBqIQMgAiEEIAJBJGohBRDLCyIABEAgACgCACIABEAgACkDMCIHQoB+g0KA1qyZ9MiT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AgAhBCAAEIoCIAAoAiAQtgcgBAsQigILCyAAQdQyaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAwRAIAMQjRIgAxBBCyABQQFqIgEgAigCAEgNAAsLIAIQTyAAQeAyahBPIABB7DJqEE8gAEGUM2pBADYCACAAQfgyahBPIABBhDNqEE8gAEGgNWpBADYCACAAQZgzakEANgIAIABBnDNqQQA2AgAgAEHcM2pBADYCACAAQdgzakEANgIAIABB9DNqQQA2AgAgAEH4M2oQTyAAQYQ0ahBPIABBkDRqEE8gAEGcNGoQTyAAQag0ahBPIABBwDdqIQJBACEBA0AgAUEMbCACahBPIAFBAWoiAUECRw0ACyAAQdw3ahDdBCAAQYTYAGoQTyAAQZA6ahBPIABBnDpqEE8gAEGoOmoQTyAAQcDYAGoiAigCAEEASgRAQQAhAQNAIAIgARBVKAIAEPYHIAFBAWoiASACKAIASA0ACwsgAhBPIABBtNgAahBPIABB0NgAaiICKAIAIgFBzIECKAIARiABRXJFBEAgARDDAhogAkEANgIACyAAQdTYAGoQTyAAQQA6AAALCwsAIAAQngUgABBUC00BAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACQYz8ATYCACACIAE2AgggAhCvBSAAIAJBBGoQ5AMhAyACEJ4FIAIkBCADCwsAIAAQnwUgABBUC08BAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADQfT7ATYCACADIAE2AgggAxDGByAAIANBBGogAhCABiEEIAMQnwUgAyQEIAQLMwAgAEGYqQQoAgAgABsiABCxD0GYqQQoAgAgAEYEQEEAEIoCCyAABEAgABDkCSAAEEELC1QBAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQygEgACACIAMQTiIAKAIARhC5AiIBBEAgACACNgIACyABIQQgAxC0ASADJAQgBAtWAgJ/An0jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQcSABQQhqIgIgAEE8aiAAQUBrIAEQywcgAhA9IQQgAhAxIAEQMSABJAQgBAsHACABELgPC4kBAgJ/An0jBCEJIwRBMGokBEGwqQQoAgAiCkE8aiABEIgBIApBQGsg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QYAHaiIKEDogAEGwB2ohAyAAQYgHaiEBA0AgARA6IAFBCGoiASADRw0ACyAAQbwIaiEDIABBlAhqIQEDQCABEDogAUEIaiIBIANHDQALIABB+ClqEGggAEEAQYgqEGoaIAJDAACAv0MAAIC/EDIgBSACKQMANwIAIABDiYiIPDgCECAAQwAAoEA4AhQgAEHmhQI2AhggAEHwhQI2AhwgAEOamZk+OAIgIABDAADAQDgCJCAAQSxqIgFCfzcCACABQn83AgggAUJ/NwIQIAFCfzcCGCABQn83AiAgAUJ/NwIoIAFCfzcCMCABQn83AjggAUFAa0J/NwIAIAFCfzcCSCABQX82AlAgAEMAAIA+OAKAASAAQ83MTD04AoQBIABBADYCiAEgAEEANgKMASAAQwAAgD84ApABIABBADYCmAEgAEEAOgCUASACQwAAgD9DAACAPxAyIAYgAikDADcCACACQwAAAABDAAAAABAyIAggAikDACILNwIAIAcgCzcCACAAQQA6ALUBIABBAToAtgEgAEEBOgC3ASAAQQA6ALgBIABCADcCvAEgAEIANwLEASAAQQA2AswBIABBAzYC0AEgAEECNgLUASAAQQA2AtgBIABBAzYC3AEgAEEANgLgASACQ///f/9D//9//xAyIAkgAikDADcCACACQ///f/9D//9//xAyIAogAikDADcCACAAQwAAwEA4AihBACEBA0AgAEGACGogAUECdGpDAACAvzgCACAAQewHaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEFRw0AC0EAIQEDQCAAQdAYaiABQQJ0akMAAIC/OAIAIABB0AhqIAFBAnRqQwAAgL84AgAgAUEBaiIBQYAERw0AC0EAIQEDQCAAQdAoaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEVRw0ACyAEJAQLNAECfyMEIQQjBEEQaiQEIARBCGoiBSABIAIQwgogBCADEG8gACAFIAQQgQEgBBAxIAQkBAtCAQJ/IwQhBCMEQRBqJAQgBCADEDQgBEEEaiIDIAEgAiAEIABBA3FBhglqEQoAIAMQfSEFIAMQMSAEEDEgBCQEIAULKwEBfxDVByIBQZquBCABGyEBIABCADcCACAAQQA2AgggACABIAEQXBCTAQsxAQF/IwQhASMEQRBqJAQgASAAEJ8BIAEoAgAgASABLAAL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C0EASAR/IAAoAgAFIAALIAEQqwgLGAAgACwAC0EASAR/IAAoAgAFIAALEJMKCwkAIAAgARDiEAsqAQJ/An8jBCEBIwRBEGokBEHEvgJBBEHAywFBicsCQRJBFxACIAELJAQLCwAgACABIAIQ4BALCQAgACABEN8QCwsAIAAgASACEN4QCxgAIAAsAAtBAEgEfyAAKAIABSAACxCpAwsJACAAIAEQ3BALGAAgACwAC0EASAR/IAAoAgAFIAALEKsDCyoBAn8CfyMEIQEjBEEQaiQEQem9AkEFQdDLAUG7zAJBDUELEAIgAQskBAsNACAAIAEgAiADENsQCyoBAn8CfyMEIQEjBEEQaiQEQd69AkEFQfDLAUG7zAJBDEEKEAIgAQskBAsNACAAIAEgAiADENoQCxoAIAAsAAtBAEgEfyAAKAIABSAACyABEK8ICwcAIAAQ2RALKgECfwJ/IwQhASMEQRBqJARB6bwCQQRBkMwBQd3NAkECQQEQAiABCyQECwsAIAAgASACENcQCyoBAn8CfyMEIQEjBEEQaiQEQeG8AkEDQez4AUHjzQJBEUEdEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHZvAJBA0H4+AFB480CQRBBHBACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB0bwCQQNBhPkBQePNAkEPQRsQAiABCyQECxoAIAAsAAtBAEgEfyAAKAIABSAACyABELUICyoBAn8CfyMEIQEjBEEQaiQEQbO8AkEEQaDMAUGJywJBEUEVEAIgAQskBAscACAALAALQQBIBH8gACgCAAUgAAsgASACEM8FCwkAIAAgARDVEAsRACAAIAEgAiADIAQgBRDUEAsqAQJ/An8jBCEBIwRBEGokBEGPvAJBBkGwzAFB6M0CQRFBBhACIAELJAQLDwAgACABIAIgAyAEEM0QCw0AIAAgASACIAMQyhALKgECfwJ/IwQhASMEQRBqJARB9bsCQQVB0MwBQbvMAkELQQgQAiABCyQECw0AIAAgASACIAMQyBALCwAgACABIAIQxxALNQEBfyAALAALQQBIBEAgACgCACEACxA8IgIsAH8Ef0EABSACIAAQXiABQRpyIABBABDTAgsLBwAgABC9CAsYACAALAALQQBIBH8gACgCAAUgAAsQvggLKgECfwJ/IwQhASMEQRBqJARB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AAtBAEgEfyAAKAIABSAACyABELkCCyoBAn8CfyMEIQEjBEEQaiQEQc61AkEEQfDSAUGJywJBDkEJEAIgAQskBAsLACAAIAEgAhC1DwsJACAAIAEQsw8LKgECfwJ/IwQhASMEQRBqJARBubUCQQhBgNMBQYfRAkEEQQEQAiABCyQECxMAIAAgASACIAMgBCAFIAYQrw8LKgECfwJ/IwQhASMEQRBqJARBs7UCQQdBoNMBQZ/TAkEBQQQQAiABCyQECxEAIAAgASACIAMgBCAFEK0PCwkAIAAgARCsDwsaACAALAALQQBIBH8gACgCAAUgAAsgARCDCQsYACAALAALQQBIBH8gACgCAAUgAAsQxAQLCQAgACABEKkPC6cEAgF/AX4jBCEBIwRBEGokBCAAEDogAEEIahA6IABBEGoQOiAAQRhqEDogAEEgahA6IABBLGoQOiAAQcwAahBmIABB3ABqEGYgAEGAAWoQOiAAQYgBahBoIABBADYCsAEgAEEANgKsASAAQQA2ArQBIABBuAFqEGggAEHEAWoQaCAAQQA2AtQBIABBADYC0AEgAEEANgLYASAAQegBahDnAiAAQewBahDnAiAAQfABahDnAiABQwAAAABDAAAAABAyIAAgASkDACICNwIYIAAgAjcCECAAIAI3AgggACACNwIAIAFDAAAAAEMAAAAAEDIgACABKQMAIgI3AiwgACACNwIgIABDAAAAADgCNCAAQwAAAAA4AiggAEMAAIC/OAI4IABCADcCPCAAQgA3AkQgARBmIAAgASkCADcCXCAAIAEpAgg3AmQgACABKQIANwJMIAAgASkCCDcCVCAAQQA2AnggAEEANgJ0IABBADYCbCAAQQE2AnAgAEEAOgB8IABBADoAfSAAQQA6AH4gAUMAAAAAQwAAAAAQMiAAIAEpAwA3AoABIABBADYClAEgAEEBNgKcASAAQQE2ApgBIABDAAAAADgCpAEgAEEANgKgASAAQwAAgL84AqgBIABCADcC3AEgAEEANgLkASABEOcCIAAgASgCADYC6AEgARDnAiAAIAEoAgA2AuwBIAEQ5wIgACABKAIANgLwASAAQQA2AvQBIAEkBAsaACAALAALQQBIBH8gACgCAAUgAAtBABC5AQsHACAAEKAPC9AHAgV/AX4jBCEFIwRBEGokBCAFIQMgAEEMahA6IABBFGoQOiAAQRxqEDogAEEkahA6IABBLGoQOiAAQTRqEDogAEE8ahA6IABB2ABqEDogAEHgAGoQOiAAQegAahA6IABB8ABqEDogAEG4AWoQOiAAQcABahA6IABByAFqEMoSIABBwANqIgYiBEEANgIEIARBADYCACAEQQA2AgggAEHMA2oQZiAAQdwDahBmIABB7ANqEGYgAEH8A2oQZiAAQYwEahBmIABBpARqEN4DIABB1ARqEGggAEEANgLkBCAAQQA2AuAEIABBADYC6AQgAEH4BGoiByABQbwxahD4ByAAQagGaiEEIABBiAZqIQEDQCABEGYgAUEQaiIBIARHDQALIAAgAhDaBjYCACAAQQRqIgEgAkEAQQAQuwE2AgAgBiABEHggAEEANgIIIANDAAAAAEMAAAAAEDIgACADKQMANwIMIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AhwgACAINwIUIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AjQgACAINwIsIANDAAAAAEMAAAAAEDIgACADKQMANwI8IABDAAAAADgCRCAAQwAAAAA4AkggACACEFxBAWo2AkwgACAAQf6FAhBeNgJQIABBADYCVCADQwAAAABDAAAAABAyIAAgAykDADcCWCADQ///f39D//9/fxAyIAAgAykDADcCYCADQwAAAD9DAAAAPxAyIAAgAykDADcCaCADQwAAAABDAAAAABAyIAAgAykDADcCcCAAQQA7AYQBIABCADcCeCAAQQA7AYABIABBADoAggEgAEF/OwGGASAAQX87AYgBIABBADYCjAEgAEF/NgKUASAAQX82ApABIABBADoAmAEgAEEANgKcASAAQX82AqABIABBADYCqAEgAEEANgKkASAAQQ82ArQBIABBDzYCsAEgAEEPNgKsASADQ///f39D//9/fxAyIAAgAykDACIINwLAASAAIAg3ArgBIABBfzYCnAQgAEMAAAAAOAKgBCAAQwAAgD84AuwEIABBfzYC8AQgACAHNgL0BCAAIAAoAgA2AqQFIABBADYChAYgAEEANgKABiAAQgA3AuwFIABCADcC9AUgAxBmIAAgAykCADcCmAYgACADKQIINwKgBiAAIAMpAgA3AogGIAAgAykCCDcCkAYgAEEANgL8BSAAQX82AqwGIABBfzYCqAYgAEH/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ICAtICAgICAgICAgIFguWCAgICAgICAgICAtWC4uLi4uWCAgICAgICAgICAtICAgICAgICAgIFguLi4uLlgtICAgIFguLlggICAgICAgICAtLS0gICAgICAgICAtWFhYLlhYWC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtWC4uLi5YICAgICAgICAgICAtICAgICAgICAgICBYLi4uLlgtICAgIFguLlggICAgICAgICBYICAgICAgICAgICAtICBYLlggIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtWC4uLlggICAgICAgICAgICAtICAgICAgICAgICAgWC4uLlgtICAgIFguLlggICAgICAgICBYWCAgICAgICAgICAtICBYLlggIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtWC4uWC5YICAgICAgICAgICAtICAgICAgICAgICBYLlguLlgtICAgIFguLlggICAgICAgICBYLlggICAgICAgICAtICBYLlggIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtWC5YIFguWCAgICAgICAgICAtICAgICAgICAgIFguWCBYLlgtICAgIFguLlhYWCAgICAgICBYLi5YICAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWFggICBYLlggICAgICAgICAtICAgICAgICAgWC5YICAgWFgtICAgIFguLlguLlhYWCAgICBYLi4uWCAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgWC5YICAgICAgICAtICAgICAgICBYLlggICAgICAtICAgIFguLlguLlguLlhYICBYLi4uLlggICAgICAtICBYLlggIC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgIFguWCAgICAgICAtICAgICAgIFguWCAgICAgICAtICAgIFguLlguLlguLlguWCBYLi4uLi5YICAgICAtICBYLlggIC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICBYLlggICAgICAtICAgICAgWC5YICAgICAgICAtWFhYIFguLlguLlguLlguLlhYLi4uLi4uWCAgICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgWC5YICAgWFgtWFggICBYLlggICAgICAgICAtWC4uWFguLi4uLi4uLlguLlhYLi4uLi4uLlggICAtICBYLlggIC0gICBYLlggICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgIFguWCBYLlgtWC5YIFguWCAgICAgICAgICAtWC4uLlguLi4uLi4uLi4uLlhYLi4uLi4uLi5YICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgICBYLlguLlgtWC4uWC5YICAgICAgICAgICAtIFguLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uWCAtWFhYLlhYWC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICAgICAgWC4uLlgtWC4uLlggICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uLlgtWC4uLi4uWC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgICAgICBYLi4uLlgtWC4uLi5YICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uWFhYWFgtWFhYWFhYWC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgICAgIFguLi4uLlgtWC4uLi4uWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uLlhYLi4uWC4uWCAgICAtLS0tLS0tLS0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtWFhYWFhYWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uWCBYLi5YIFguLlggICAtICAgICAgIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tICAgIFguLi4uLi4uLi4uWCBYLlggIFguLlggICAtICAgICAgIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAtICAgIFguLi4uLi4uLi4uWCBYWCAgICBYLi5YICAtICAgICAgIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICBYLi5YICAgICAgICAgIC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICAgWFggICAgICAgICAgIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAtICAgICBYWFhYWFhYWFhYICAtLS0tLS0tLS0tLS0gICAgICAgIC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0gICAgICAgICAgICAgICAgICAgIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAQaAiC8xdN10pIyMjIyMjI2hWMHFzJy8jIyNbKSwjIy9sOiQjUTY+IyM1W240Mj5jLVRIYC0+PiMvZT4xMU5OVj1CdigqOi5GP3V1IyhnUlUubzBYR0hgJHZoTEcxaHh0OT9XYCMsNUxzQ3AjLWk+LnIkPCQ2cEQ+TGInOzlDcmM2dGdYbUtWZVUyY0Q0RW8zUi8yKj5dYihNQzskalBmWS47aF5gSVdNOTxMaDJUbFMrZi1zJG82UTxCV0hgWWlVLnhmTHEkTjskMGlSL0dYOlUoamNXMnAvVypxPy1xbW5VQ0k7akhTQWlGV00uUiprVUBDPUdIP2E5d3A4ZiRlLi00XlFnMSlRLUdMKGxmKHIvN0dyUmd3ViVNUz1DI2A4TkQ+UW8jdCdYIyh2I1k5dzAjMUQkQ0lmO1cnI3BXVVBYT3V4WHVVKEg5TSgxPHEtVUUzMSNeLVYnOElSVW83UWYuL0w+PUtlJCQnNUYlKV0wXiMwWEBVLmE8cjpRTHRGc0xjTDYjI2xPaikjLlk1PC1SJktnTHdxSmZMZ04mO1E/Z0leI0RZMnVMaUBeck1sOXQ9Y1dxNiMjd2VnPiRGQmpWUVRTRGdFS25JUzdFTTk+Wlk5dzAjTDs+PiNNeCY0TXZ0Ly9MW01rQSNXQGxLLk4nWzAjN1JMXyYjdytGJUh0RzlNI1hMYE4mLixHTTRQZzstPG5MRU5odng+LVZzTS5NMHJKZkxIMmVUTWAqb0pNSFJDYE5rZmltTTJKLFctalhTOilyMHdLI0BGZ2UkVT5gdydON0cjJCNmQiMkRV4kIzo5OmhrK2VPZS0tNngpRjcqRSU/NzYlXkdNSGVQVy1aNWwnJkdpRiMkOTU2OnJTP2RBI2ZpSzopWXIrYCYjMGpAJ0RiRyYjXiRQRy5MbCtETmE8WENNS0VWKk4pTE4vTipiPSVRNnBpYS1YZzhJJDxNUiYsVmRKZSQ8KDdHO0NrbCcmaEY7OyQ8Xz1YKGIuUlMlJSkjIyNNUEJ1dUUxVjp2JmNYJiMybSMoJmNWXWBrOU9oTE1ibiVzJEcyLEIkQmZEM1gqc3A1I2wsJFIjXXhfWDF4S1glYjVVKltyNWlNZlVvOVVgTjk5aEcpdG0rL1VzOXBHKVhQdWA8MHMtKVdUdChnQ1J4SWcoJTZzZmg9a3RNS24zaik8NjxiNVNrXy8wKF5dQWFOIyhwL0w+JlZaPjFpJWgxUzl1NW9AWWFhVyRlK2I8VFdGbi9aOk9oKEN4MiRsTkVvTl5lKSNDRllAQEk7Qk9RKnNSd1p0WnhSY1U3dVc2Q1hvdzBpKD8kUVtjak9kW1A0ZCldPlJPUE9weFRPN1N0d2kxOjppQjFxKUNfPWRWMjZKOzIsXTdvcCRddVFyQF9WNyRxXiVsUXd0dUhZXT1EWCxuM0wjMFBIRE80Zjk+ZENATz5IQnVLUHBQKkUsTitiM0wjbHBSL01yVEVILklBUWsuYT5EWy5lO21jLnhdSXAuUEheJy9hcVVPLyQxV3hMb1cwW2lMQTxRVDs1SEtEK0BxUSdOUSgzX1BMaEU0OFIucUFQU3dRMC9XSz9aLFt4Py1KO2pRVFdBMFhAS0ooX1k4Ti06L003NDovLVpwS3JVc3M/ZCNkWnFdREFia1UqSnFrTCtud1hAQDQ3YDU+dz00aCg5LmBHQ1JVeEhQZVJgNU1qb2woZFVXeFphKD5TVHJQa3JKaVd4YDVVN0YjLmcqanJvaEdnYGNnOmxTVHZFWS9FVl83SDRROVtaJWNudjtKUVlaNXEubDdaZWFzOkhPSVpPQj9HPE5hbGQkcXNdQF1MPEo3YlIqPmd2Ols3TUkyaykuJzIoJDVGTlAmRVEoLClVXVddK2ZoMTgudnNhaTAwKTtEM0A0a3U1UD9EUDhhSnQrO3FVTV09K2InOEA7bVZpQkt4MERFWy1hdUdsODpQSiZEaitNNk9DXU9eKCgjI11gMGkpZHJUOy03WGA9LUgzW2lnVW5QRy1OWmxvLiNrQGgjPU9yayRtPmE+JC0/VG0kVVYoPyNQNllZIycvIyMjeGU3cS43M3JJMypwUC8kMT5zOSlXLEpyTTdTTl0nLzRDI3YkVWAwI1YuWzA+eFFzSCRmRW1QTWdZMnU3S2goRyVzaUlmTFNvUytNSzJlVE0kPTUsTThwYEEuO19SJSN1W0sjJHg0QUc4LmtLL0hTQj09LSdJZS9RVHRHPy0uKl5OLTRCL1pNXzNZbFFDNyhwN3EpJl0oYDZfYykkLypKTChMLV4oXSR3SU1gZFB0T2RHQSxVMzp3Mk0tMDxxLV1MXz9eKTF2dycuLE1Sc3FWci5MO2FOJiMvRWdKKVBCY1stZj4rV29tWDJ1N2xxTTJpRXVtTVRjc0Y/LWFUPVotOTdVRW5YZ2xFbjFLLWJuRU9gZ3VGdChjJT07QW1fUXNAakxvb0kmTlg7XTAjajQjRjE0O2dsOC1HUXBnd2hycTgnPWxfZi1iNDknVU9xa0x1Ny0jI29EWTJMKHRlK01jaCZnTFl0SixNRXRKZkxoJ3gnTT0kQ1MtWlolUF04Ylo+I1M/WVkjJVEmcSczXkZ3Jj9EKVVETnJvY00zQTc2Ly9vTD8jaDdnbDg1W3FXL05ET2slMTZpajsrOjFhJ2lOSWRiLW91OC5QKncsdjUjRUkkVFdTPlBvdC1SKkgnLVNFcEE6ZylmK08kJSVga0EjRz04Uk1tRzEmT2A+dG84YkNdVCYkLG4uTG9PPjI5c3AzZHQtNTJVJVZNI3E3J0RIcGcrI1o5JUhbSzxMJWEyRS1ncldWTTNAMj0tazIydExdNCQjIzZXZSc4VUpDS0VbZF89JXdJOyc2WC1Hc0xYNGpeU2dKJCMjUip3LHZQM3dLI2lpVyYjKmheRCZSP2pwNysvdSYjKEFQIyNYVThjJGZTWVctSjk1Xy1EcFtnOXdjTyYjTS1oMU9jSmxjLSp2cHcweFVYJiNPUUZLTlhAUUknSW9QcDduYixRVS8vTVEmWkRrS1ApWDxXU1ZMKDY4dVZsJiNjJ1swIyhzMVgmeG0kWSVCNypLOmVEQTMyM2o5OThHWGJBI3B3TXMtamdEJDlRSVNCLUFfKGFONHhvRk1eQEM1OEQwK1ErcTNuMCMzVTFJbkRqRjY4Mi1Tak1YSkspKGgkaHh1YV9LXXVsOTIlJ0JPVSYjQlJSaC1zbGc4S0RscjolTDcxS2E6LkE7JVlVTGpEUG1MPExZczhpI1h3Sk9ZYUtQS2MxaDonOUtlLGcpYiksNzg9STM5Qjt4aVkkYmdHdy0mLlppOUluWER1WWElRypmMkJxN21uOV4jcDF2diUjKFdpLTsvWjVobzsjMjo7JWQmI3g5djY4QzVnP250WDBYKXBUYDslcEIzcTdtZ0dOKTMlKFA4blRkNUw3R2VBLUdMQCslSjN1MjooWWY+ZXRgZTspZiNLbTgmK0RDJEk0Nj4jS3JdXXUtWz05OXR0czEucWIjcTcyZzFXSk84MXErZU4nMDMnZU0+JjFYeFktY2FFbk9qJTJuOCkpLD9JTFI1Xi5JYm48LVgtTXE3W2E4MkxxOkYmI2NlK1M5d3NDSyp4YDU2OUU4ZXcnSGVdaDpzSVsyTE0kW2d1a2EzWlJkNjp0JUlHOjskJVlpSjpOcT0/ZUF3Oy86bm5EcTAoQ1ljTXBHKXFMTjQkIyMmSjxqJFVwSzxRNGExXU11cFdeLXNqXyQlW0hLJSdGIyMjI1FSWko6OlkzRUdsNCdAJUZraUFPZyNwWyMjT2BndWtUZkJIYWdMPExIdyVxJk9WMCMjRj02LzpjaEltMEBlQ1A4WF06a0ZJJWhsOGhnT0BSY0JoUy1AUWIkJSttPWhQRExnKiVLOGxuKHdjZjMvJ0RXLSQubFI/bltuQ0gtZVhPT05USmxoOi5SWUYlMydwNnNxOlVJTUE5NDUmXkhGUzg3QCRFUDJpRzwtbENPJCVjYHVLR0QzckMkeDBCTDhhRm4tLWBrZSUjSE1QJ3ZoMS9SJk9fSjkndW0sLjx0eFtAJXdzSmsmYlVUMmAwdU12N2dnI3FwL2lqLkw1NidobDsuczVDVXJ4ak9NNy0jIy5sK0F1J0EmTzotVDcyTF1QYCY9O2N0cCdYU2NYKnJVLj4tWFR0LCVPVlU0KVMxK1ItI2RnMC9Obj9LdTFeMGYkQipQOlJvd3dtLWAwUEtqWURETSczXWQzOVZaSEVsNCwuaiddUGstTS5oXiY6MEZBQ20kbWFxLSZzZ3cwdDcvNiheeHRrJUx1SDg4RmotZWttPkdBI18+NTY4eDYoT0ZSbC1JWnBgJmIsX1AnJE08Sm5xNzlWc0pXL21XUypQVWlxNzY7XS9OTV8+aExieGZjJG1qYCxPOyYlVzJtYFpoOi8pVWV0dzphSiVdSzloOlRjRl11Xy1TajksVkszTS4qJyYwRFtDYV1KOWdwOCxrQVddJSg/QSVSJGY8LT5adHMnXmtuPS1eQGM0JS1wWTZxSSVKJTFJR3hmTFU5Q1A4Y2JQbFh2KTtDPWIpLDwybU92UDh1cCxVVmYzODM5YWNBV0FXLVc/I2FvL14jJUtZbzhmUlVMTmQyLj4lbV1VSzpuJXIkJ3N3XUo7NXBBb09fIzJtTzNuLCc9SDUoZXRIZypgK1JMZ3Y+PTRVOGd1RCRJJUQ6Vz4tcjVWKiVqKlc6S3Zlai5McCQ8TS1TR1onOitRX2srdXZPU0xpRW8oPGFEL0s8Q0NjYCdMeD4nPzsrK08nPigpakxSLV51NjhQSG04WkZXZStlajhoOjlyNkwqMC8vYyZpSCZSOHBSYkEjS2ptJXVwVjFnOmFfI1VyN0Z1QSModFJoIy5ZNUsrQD8zPC04bTAkUEVuO0o6cmg2P0k2dUc8LWB3TVUnaXJjcDBMYUVfT3RsTWImMSM2VC4jRkRLdSMxTHcldSUrR00rWCdlP1lMZmpNW1ZPME1idUZwNzs+USYjV0lvKTBARiVxN2MjNFhBWE4tVSZWQjxIRkYqcUwoJC9WLDsoa1haZWpXT2A8WzU/P2V3WSgqOT0ld0RjOyx1PCc5dDNXLShIMXRoMytHXXVjUV1rTHM3ZGYoJC8qSkxdQCp0N0J1X0czXzdtcDc8aWFRak9ALmtMZzt4M0IwbHFwN0hmLF5aZTctIyNAL2M1OE1vKDM7a25wMCUpQTc/LVcrZUknbzgpYjxuS253J0hvOEM9WT5wcUI+MGllJmpoWls/aUxSQEBfQXZBLWlRQyg9a3NSWlJWcDdgLj0rTnBCQyVyaCYzXVI6OFhEbUU1XlY4Tyh4PDxhRy8xTiQjRlgkMFY1WTZ4J2FFckkzSSQ3eCVFYHY8LUJZLCklLT9Qc2YqbD8lQzMubU0oPS9NMDpKeEcnPzdXaEglbydhPC04MGcwTkJ4b08oR0g8ZE1dbi4rJXFAakg/Zi5Vc0oyR2dzJjQ8LWU0NyZLbCtmLy85QGBiKz8uVGVOXyZCOFNzP3Y7XlRyaztmI1l2SmtsJnckXT4tK2s/Jyg8Uzo2OHRxKldvRGZadSc7bU0/OFhbbWE4VyUqYC09O0QuKG5jNy87KWc6VDE9XkokJkJSVigtbFRtTkI2eHFCW0AwKm8uZXJNKjxTV0ZddTI9c3QtKig2dj5eXShILmFSRVpTaSwjMTpbSVhhWkZPbTwtdWkjcVVxMiQjI1JpO3U3NU9LIyhSdGFXLUstRmBTK2NGXXVOYC1LTVElclAvWHJpLkxSY0IjIz1ZTDNCZ00vM01EP0BmJjEnQlctKUp1PEwyNWdsOHVoVm0xaEwkIyMqOCMjIydBMy9Ma0tXKyhecldYPzVXXzhnKWEobSZLOFA+I2JtbVdDTWtrJiNUUmBDLDVkPmcpRjt0LDQ6QF9sOEcvNWg0dlVkJSYlOTUwOlZYRCdRZFdvWS1GJEJ0VXdtZmUkWXFMJzgoUFdYKFA/XkBQbzMkIyNgTVNzP0RXQlovUz4rNCU+ZlgsVld2L3cnS0RgTFA1SWJIO3JUVj5uM2NFSzhVI2JYXWwtL1YrXmxqMzt2bE1iJls1WVE4I3Bla1g5SlAzWFVDNzJMLCw/K05pJmNvN0Fwbk8qNU5LLCgoVy1pOiQsa3AnVURBTyhHMFNxN01WakpzYkl1KSdaLCpbPmJyNWZYXjpGUEFXci1tMktnTDxMVU4wOThrVEYmI2x2bzU4PS92akRvOy47KUthKmhMUiMvaz1yS2J4dVZgPlFfbk42Jzh1VEcmIzFUNWcpdUx2Ojg3M1VwVExnSCsjRmdwSCdfbzE3ODBQaDhLbXhRSjgjSDcyTDRANzY4QFRtJlFoNENCLzVPdm1BJixRJlFiVW9pJGFfJTNNMDFIKTR4N0leJktRVmd0Rm5WKztbUGM+W200ay8vLF0xPyNgVllbSnIqMyYmc2xSZkxpVlpKOl0/PUszU3c9WyQ9dVJCPzN4azQ4QGFlZzxaJzwkIzRIKTYsPmUwalQ2J04jKHElLk89PzJTXXUqKG08LVY4SicoMSlHXVs2OGhXJDUncVtHQyY1amBURT9tJ2VzRkdOUk0paixmZlo/LXF4ODstPmc0dCo6Q0lQL1tRYXA3LzknIygxc2FvN3ctLnFOVWRrSil0Q0YmI0JeO3hHdm4ycjlGRVBGRkZjTEAuaUZOa1R2ZSRtJSNRdlFTOFVAKTJaKzNLOkFLTTVpc1o4OCtkS1EpVzY+SiVDTDxLRT5gLmQqKEJgLW44RDlvSzxVcF1jJFgkKCwpTThadDcvW3Jka3FUZ2wtMGN1R012Jz8+LVhWMXFbJy01aydjQVo2OWU7RF8/JFpQUCZzXis3XSkkKiQjQFFZaTksNVAmIzlyKyQlQ0U9Njg+SzhyMD1kU0MlJShAcDcubTdqaWxRMDInMC1WV0FnPGEvJyczdS49NEwkWSk2ay9LOl9bMz0manZMPEwwQy8yJ3Y6XjstRElCVyxCNEU2ODprWjslPzgoUThCSD1rTzY1Qlc/eFNHJiNAdVUsRFMqLD8uKyhvKCMxdkNTOCNDSEY+VGxHVydiKVRxN1ZUOXFeKl4kJC46Jk5AQCQmKVdIdFBtKjVfck8wJmUlSyYjLTMwaihFNCMnWmIuby8oVHBtJD5LJ2ZAW1B2RmwsaGZJTlROVTZ1JzBwYW83JVhVcDldNS4+JWhgOF89VllieHVlbC5OVFNzSmZMYWNGdTNCJ2xRU3UvbTYtT3FlbThUK29FLS0kMGEva111ajlFd3NHPiV2ZVIqaHZeQkZwUWo6SycjU0osc0ItJyNdKGouTGc5MnJUdy0qbiVALzszOXJySkYsbCNxViVPcnRCZUM2Lyw7cUIzZWJOV1s/LEhxajJMLjFOUCZHalVSPTFEOFFhUzNVcCZAKjl3UD8rbG83Yj9AJSdrNGBwMFokMjIlSzMraUNaaj9YSk40Tm0mK1lGXXVALVckVSVWRVEvLCw+PiMpRDxoI2ApaDA6PFE2OTA5dWErJlZVJW4yOmNHM0ZKLSVAQmotRGdMcmBIdyZIQUtqS2pzZUs8L3hLVCopQixOOVgzXWtyYzEydCdwZ1RWKEx2LXRMW3hnXyU9TV9xN2FeeD83VWJkPiMlOGNZI1laPz0sYFdkeHUvYWUmI3c2KVI4OXRJIzZAcycoNkJmN2EmP1M9XlpJX2tTJmFpYCY9dEU3MkxfRCw7XlIpN1skczxFaCNjJilxLk1YSSUjdjlST2E1RlpPJXNGN3E3TndiJiNwdFVKOmFxSmUkU2w2OCUuRCMjI0VDPjw/LWFGJiNSTlF2Pm84bEtOJTUvJCh2ZGZxNytlYkEjdTFwXW92VUtXJlklcV0nPiQxQC1beGZuJDdaVHA3bU0sRyxLbzdhJkd1JUdbUk14SnNbME1NJXdjaS5MRkRLKSg8Y2BROE4pakVJRiorP1AyYThnJSkkcV1vMmFIOEMmPFNpYkMvcSwoZTp2Oy1iIzZbJE50RFo4NEplMktOdkIjJFA1P3RRM250KDBkPWouTFFmLi9MbDMzKyg7cTNMLXc9OGRYJCNXRiZ1SUpALWJmST4lOl9pMkI1Q3NSOCY5WiYjPW1QRW5tMGZgPCZjKVFMNXVKIyV1JWxKaitELXI7Qm9GJiM0RG9TOTdoNWcpRSNvOiZTNHdlREYsOV5Ib2VgaCpMK19hKk5yTFctMXBHXyYyVWRCODZlJUIvOj0+KU40eGVXLip3ZnQtOyQnNTgtRVNxcjxiP1VJKF8lQFtQNDY+I1VgJzZBUV1tJjYvYFo+I1M/WVkjVmM7cjdVMiYzMjZkPXcmSCMjIyM/VFpgKjQ/Ji5NSz9MUDhWeGc+JFtRWGMlUUp2OTIuKERiKkIpZ2IqQk05ZE0qaEpNQW8qYyYjYjB2PVBqZXJdJGdHJkpYRGYtPidTdHZVNzUwNWw5JEFGdmdZUkleJjxeYjY4P2ojcTlRWDRTTSdSTyMmc0wxSU0uckpmTFVBajIyMV1kIyNEVz1tODN1NTsnYll4LCpTbDBoTChXOzskZG9CJk8vVFE6KFpeeEJkTGpMPExuaTsnJ1guYCQjOCsxR0Q6ayRZVVdzYm44b2doNnJ4WjJaOV0lbmQrPlYjKjhVXzcyTGgrMlE4Q2owaTo2aHAmJEMvOnAoSEs+VDhZW2dIUTRgNCknJEFiKE5vZiVWJzhoTCYjPE5FZHRnKG4nPVMxQShRMS9JJjQoWyVkTWAsSXUnMTpfaEw+U2ZEMDcmNkQ8ZnA4ZEhNNy9nK3RsUE45SipyS2FQY3QmPyd1QkNlbV5qbiU5X0spPCxDNUszcz01ZyZHbUpiKltTWXE3SztUUkxHQ3NNLSQkO1MlOllAcjdBSzBwcHJwTDxMcmgscTdlLyVLV0s6NTBJXittJ3ZpYDM/JVpwKzwtZCskTC1TdjpALm8xOW4kczAmMzk7a247UyVCU3EqJDNXb0pTQ0x3ZVZbYVonTVFJak88NztYLVg7JitkTUx2dSNeVXNHRUM5V0VjW1god0k3IzIuKEYwalYqZVpmPC1RdjNKLWMrSjVBbHJCIyRwKEg2OEx2RUEncTNuMCNtLFtgKjhGdClGY1lnRXVkXUNXZm02OCwoYUxBJEBFRlRnTFhvQnEvVVBscDc6ZFsvO3JfaXg9OlRGYFM1SC1iPExJJkhZKEs9aCMpXUxrJEsxNGxWZm06eCRIPDNeUWw8TWAkT2hhcEJua3VwJ0QjTCRQYl9gTipnXTJlO1gvRHRnLGJzaiZLIzJbLTppWXInX3dnSClOVUlSOGExbiNTP1llaidoOF41OFViWmQrXkZLRCpUQDs2QTdhUUNbSzhkLSh2NkdJJHg6VDwmJ0dwNVVmPkBNLipKOjskLXJ2MjknTV04cU12LXRMcCwnODg2aWFDPUhiKllKb0tKLChqJUs9SGBLLnY5SGdncUJJaVp1J1F2QlQuIz0pMHVrcnVWJi4pMz0oXjFgbypQajQ8LTxhTigoXjcoJyNaMHdLIzVHWEA3dV1bYCpTXjQzOTMzQTRybF1bYCpPNENnTEVsXXYkMVEzQWVGMzdkYlhrLC4pdmojeCdkYDtxZ2JRUiVGVywyKD9MTz1zJVNjNjglTlAnIyNBb3RsOHg9QkUjajFVRChbMyRNKF1VSTJMWDNScEtOQDsvI2YnZi8mX210JkYpWGRGPDl0NClRYS4qa1RMd1EnKFRUQjkueEgnPiNNSitnTHE5LSMjQEh1WlBOMF11Omg3LlQuLkc6OyQvVXNqKFQ3YFE4dFQ3MkxuWWw8LXF4ODstSFY3US0mWGR4JTFhLGhDPTB1K0hsc1Y+bnVJUUwtNTxOPylOQlMpUU4qX0ksPyYpMidJTSVMM0kpWCgoZS9kbDImOCc8TTpeI00qUStbVC5YcmkuTFlTM3YlZkZgNjhoO2ItWFsvRW4nQ1IucTdFKXAnL2tsZTJITSx1O14lT0tDLU4rTGwlRjlDRjxOZideI3QyTCw7MjdXOjBPQDYjI1U2Vzc6JHJKZkxXSGokIyl3b3FCZWZJWi5QSzxiKnQ3ZWQ7cCpfbTs0RXhLI2hAJl0+Xz5Aa1hRdE1hY2ZELm0tVkFiODtJUmVNMyR3ZjAnJ2hyYSpzbzU2OCdJcCZ2UnM4NDknTVJZU3AlOnQ6aDVxU2d3cEVyJEI+USw7cyhDIyQpYHN2UXVGJCMjLUQsIyMsZzY4QDJbVDsuWFNkTjlRZSlycHQuX0stIzV3RilzUCcjI3AjQzBjJS1HYiVoZCs8LWonQWkqeCYmSE1rVF1DJ09TbCMjNVJHW0pYYUhOO2QndUEjeC5fVTsuYFBVQChaM2R0NHIxNTJAOnYsJ1IuU2ondyMwPC07a1BJKUZmSiYjQVlKJiMvLyk+LWs9bT0qWG5LJD49KTcyTF0wSSU+Lkc2OTBhOiQjIzwsKTs/OzcyIz94OStkO15WJzk7allAOyliciNxXllRcHg6WCNUZSRaXic9LT1iR2hMZjpENiZiTndaOS1aRCNuXjlIaExNcjVHOyddZCY2J3dZbVRGbUw8TEQpRl4lW3RDJzg7KzlFI0MkZyUjNVk+cTl3ST5QKDltSVs+a0MtZWtMQy9SJkNIK3MnQjtLLU02JEVCJWlzMDA6K0E0Wzd4a3MuTHJOazAmRSl3SUxZRkAyTCcwTmIkK3B2PCgyLjc2OC9GclkmaCReM2kmQCtHJUpUJzwtLHZgMztfKUk5TV5BRV1DTj9DbDJBWmcrJTRpVHBUMzxuLSYlSCViPEZEajJNPGhIPSZFaDwyTGVuJGIqYVRYPS04UXhOKWsxMUlNMWNeaiU5czxMPE5GU28pQj8rPC0oR3hzRixeLUVoQCQ0ZFhoTiQrI3J4SzgnamUnRDdrYGU7KTJwWXdQQSdfcDkmQF4xOG1sMV5bQGc0dCpbSk9hKls9UXA3KHFKX29PTF4oJzdmQiZIcS06c2Ysc05qOHhxXj4kVTRPXUdLeCdtOSliQHA3WXN2SzN3XllSLUNkUSo6SXI8KCR1JikjKCY/TDlSZzNIKTRmaUVwXmlJOU84S25UaixdSD9EKnI3J007UHdaOUswRV5rJi1jcEk7LnAvNl92d29GTVY8LT4jJVhpLkx4Vm5yVSg0JjgvUCs6aExTS2okI1UlXTQ5dCdJOnJnTWknRkxAYTowWS11QVszOScsKHZibWEqaFUlPC1TUkZgVHQ6NTQyUl9WViRwQFtwOERWW0EsPzE4MzlGV2RGPFRkZEY8OUFoLTYmOXRXb0RsaF0mMVNwR01xPlRpMU8qSCYjKEFMOFtfUCUuTT52Xi0pKXFPVCpGNUNxMGBZZSUrJEI2aTo3QDBJWDxOK1QrME1sTUJQUSpWaj5Tc0Q8VTRKSFk4a0QyKTJmVS9NIyRlLilUNCxfPThoTGltWyYpOz9Va0snLXg/Jyg6c2lJZkw8JHBGTWBpPD8lVyhtR0RITSU+aVdQLCMjUGAlL0w8ZVhpOkBaOUMuN289QChwWGRBTy9OTFE4bFBsK0hQT1FhOHdEOD1eR2xQYThUS0kxQ2poc0NUU0xKTScvV2w+LVMocXclc2YvQCUjQjY7L1U3S111WmJpXk9jXjJuPGJoUG1Va013PiV0PCknbUVWRScnbmBXbkpyYSReVEt2WDVCPjtfYVNFSycsKGh3YTA6aTRHPy5CY2kuKFhbP2IqKCQsPS1uPC5RJWAoWD0/K0BBbSpKczAmPTNiaDhLXW1MPExvTnMnNiwnODVgMD90LydfVTU5QF1kZEY8I0xkRjxlV2RGPE91Ti80NXJZPC1MQCYjK2ZtPjY5PUxiLE9jWlYvKTtUVG04Vkk7PyVPdEo8KGI0bXE3TTY6dT9LUmRGPGdSQDJMPUZOVS08YlsoOWMvTUwzbTtaWyRvRjNnKUdBV3FwQVJjPTxST3U3Y0w1bDstW0FdJS8rZnNkO2wjU2FmVC9mKlddMD1PJyQoVGI8WykqQGU3NzVSLTpZb2IlZyo+bCo6eFA/WWIuNSkld19JPzd1azVKQytGUyhtI2knay4nYTBpKTk8N2InZnMnNTlocSQqNVVodiMjcGleOCtoSUVCRmBudm9gOydsMC5eUzE8LXdVSzIvQ29oNThLS2hMak09U08qcmZPYCtxQ2BXLU9uLj1BSjU2Pj5pMkAyTEg2QTomNXFgPzlJM0BAJzA0JnAyL0xWYSpULTQ8LWkzO005VXZaZCtONz5iKmVJd2c6Q0MpYzw+bk8mIzxJR2U7X18udGhqWmw8JXcoV2syeG1wNFFASSNJOSxERl11Ny1QPS4tXzpZSl1hU0BWPzYqQygpZE9wNzpXTCxiJjNSZy8uY21NOSZyXj4kKD4uWi1JJkooUTBIZDVRJTdDby1iYC1jPE4oNnJAaXArQXVySzxtODZRSXRoKiN2Oy1PQnFpK0w3d0RFLUlyOEtbJ20rRERTTHdLJi8uPy1WJVVfJTM6cUtOdSRfYipCLWtwN05hRCdRZFdRUEtZcVtAPlApaEk7Kl9GXXVgUmJbLmo4X1EvPCY+dXUrVnNIJHNNOVRBJT8pKHZtSjgwKSxQN0U+KXRqRCUyTD0tdCNmS1slYHY9UTg8RmZOa2dnXm9JYmFoKiM4L1F0JEYmOksqLShOLycrMXZNQix1KCktYS5WVVUqI1tlJWdBQU8oUz5XbEEyKTtTYT5nWG04WUJgMWRASyNuXTc2LWEkVSxtRjxmWF1pZHFkKTwzLF1KN0ptVzRgNl11a3M9NC03MkwoakVrKzpiSjBNXnEtOERtX1o/MG9sUDFDOVNhJkhbZCZjJG9vUVVqXUV4ZCozWk1ALVdHVzIlcycsQi1fTSU+JVVsOiMvJ3hvRk05UVgtJC5RTic+WyUkWiR1RjZwQTZLaTJPNTo4dyp2UDE8LTFgW0csKS1tIz4wYFAmI2ViIy4zaSlydEI2MShvJyQ/WDNCPC9SOTA7ZVpdJU5jcTstVGxdI0Y+MlFmdF5hZV81dEtMOU1VZTliKnNMRVE5NUMmYD1HP0BNaj13aConM0U+PS08KUd0Kkl3KSdRRzpgQEl3T2Y3Jl0xaSdTMDFCK0V2L05hYyM5Uzs9O1lRcGdfNlVgKmtWWTM5eEssWy82QWo3OicxQm0tXzFFWWZhMStvJm80aHA3S05fUShPbElvQFMlO2pWZG4wJzE8VmM1Mj11YDNeby1uMSdnNHY1OEhqJjZfdDckIyM/TSljPCRiZ1FfJ1NZKCgteGtBI1koLHAnSDlySVZZLWIsJyViQ1BGNy5KPFVwXiwoZFUxVlkqNSNXa1RVPmgxOXcsV1FoTEkpM1MjZiQyKGViLGpyKmI7M1Z3XSo3TkglJGM0VnMsZUQ5PlhXOD9OXW8rKCpwZ0MlLzcyTFYtdTxIcCwzQGVeOVVCMUorYWs5LVROL21oS1BnK0FKWWQkTWx2QUZfakNLKi5PLV4oNjNhZE1ULT5XJWlld1M4VzZtMnJ0Q3BvJ1JTMVI4ND1AcGFUS3QpPj0lJjFbKSp2cCd1K3gsVnJ3TjsmXWt1TzlKRGJnPXBPJEoqLmpWZTt1J20wZHI5bCw8KndNSypPZT1nOGxWX0tFQkZrTydvVV1ePVstNzkyI29rLClpXWxSOHFRMm9BOHdjUkNaXjd3L05qaDs/LnN0WD9RMT5TMXE0Qm4kKUsxPC1yR2RPJyRXci5MYy5DRykkLypKTDR0TlIvLFNWTzMsYVV3J0RKTjopU3M7d0duOUEzMmlqdyVGTCtaMEZuLlU5O3JlU3EpYm1JMzJVPT01QUx1RyYjVmYxMzk4L3BWbzEqYy0oYVkxNjhvPGBKc1Niay0sMU47JD4wOk9VYXMoMzo4Wjk3MkxTZkY4ZWI9Yy07PlNQdzcuNmhuM21gOV5Ya24oci5xU1swO1QlJlFjPStTVFJ4WCdxMUJOazMmKmV1MjsmOHEkJng+USNRN15UZis2PChkJVpWbWoyYkRpJS4zTDJuKzRXJyRQaURERylnLHIlKz8sJEA/dW91NXRTZTJhTl9BUVUqPGhgZS1HSTcpP09LMkEuZDdfYyk/d1E1QVNAREwzciM3ZlNrZ2w2LSsrRDonQSx1cTdTdmxCJHBjcEgncTNuMCNfJWRZI3hDcHItbDxGME5SQC0jI0ZFVjZOVEY2IyMkbDg0TjF3P0FPPidJQU9VUlEjI1ZeRnYtWEZiR003RmwoTjwzRGhMR0YlcS4xckMkIzpUX18mUGk2OCUweGlfJltxRkooNzdqXyZKV29GLlY3MzUmVCxbUio6eEZSKks1Pj4jYGJXLT80TmVfJjZOZV8mNk5lXyZuYGtyLSNHSmNNNlg7dU02WDt1TSguYS4uXjJUa0wlb1IoIzt1LlQlZkFyJTR0SjgmPjwxPUdIWl8rbTkvI0gxRl5SI1NDIypOPUJBOShEP3ZbVWlGWT4+XjhwLEtLRi5XXUwyOXVMa0xsdS8rNFQ8WG9JQiZoeD1UMVBjRGFCJjtISCstQUZyPyhtOUhaVilGS1M4SkN3O1NEPTZbXi9EWlVMYEVVRGZdR0dsRyY+dyQpRi4vXm4zK3JsbytEQjs1c0lZR05rK2kxdC02OUpnLS0wcGFvN1NtI0spcGRIVyY7THVETkhASD4jL1gtVEkoO1A+IyxHYz4jMFN1PiM0YDE/IzhsQz8jPHhVPyNALmk/I0Q6JUAjSEY3QCNMUklAI1BfW0AjVGtuQCNYdypBI10tPUEjYTlPQSNkPEYmIyo7RyMjLkdZIyMyU2wjIzZgKCQjOmw6JCM+eEwkI0IuYCQjRjpyJCNKRi4lI05SQCUjUl9SJSNWa2UlI1p3dyUjXy00JiMzXlJoJVNmbHItaydNUy5vPy41L3NXZWwvd3BFTTAlMycvMSlLXmYxLWQ+RzIxJnYoMzU+VmAzOVY3QTQ9b254NEExT1k1RUkwOzZJYmdyNk0kSFM3UTwpNThDNXcsO1dvQSojWyVUKiNgMWcqI2Q9IysjaEk1KyNsVUcrI3BiWSsjdG5sKyN4JCksIyYxOywjKj1NLCMuSWAsIzJVciwjNmIuLSM7d1tII2lRdEEjbV4wQiNxakJCI3V2VEIjIy1oQiMnOSRDIytFNkMjL1FIQyMzXlpDIzdqbUMjO3YpRCM/LDxEI0M4TkQjR0RhRCNLUHNEI09dL0UjZzFBNSNLQSoxI2dDMTcjTUdkOyM4KDAyI0wtZDMjcldNNCNIZ2ExIyw8dzAjVC5qPCNPIycyI0NZTjEjcWFeOiNfNG0zI29ALz0jZUc4PSN0OEo1I2ArNzgjNHVJLSNtM0IyI1NCWzgjUTBAOCNpWyo5I2lPbjgjMU5tOyNec045I3FoPDkjOj14LSNQO0syIyQlWDkjYkMrLiNSZzs8I21OPS4jTVRGLiNSWk8uIzI/KTQjWSMoLyNbKTEvI2I7TC8jZEFVLyMwU3Y7I2xZJDAjbmAtMCNzZjYwIyhGMjQjd3JIMCMlL2UwI1RtRDwjJUpTTUZvdmU6Q1RCRVhJOjxlaDJnKUIsM2gyXkczaTsjZDNqRD4pNGtNWUQ0bFZ1YDRtYDomNW5pVUE1QChBNUJBMV1QQkI6eGxCQ0M9MkNETFhNQ0VVdGlDZiYwZzIndE4/UEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQLXFla0NgLjlrRWdeK0Yka3dWaUZKVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVvLF48LTI4WkknTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cDs3cS0jbExZSTp4dkQ9IwBB9v8ACwpAQAAAQEEAAJhBAEGKgAELugFQQQAAAAAAAOBAAACAQQAAgD8AAABBAAD4QQAAAAAAALhBAAC4QQAAMEEAADBBAACoQQAAAAAAABBBAAC4QQAAgEAAADBBAABcQgAAkEEAALhBAAAQQQAAMEEAAIBAAACSQgAAAAAAAIhBAACIQQAAAEEAAABBAABcQgAAAAAAAIhBAACIQQAAAEEAAABBAAC2QgAAAAAAAIhBAACwQQAAoEAAAAAAIAD/AAAw/zDwMf8xAP/v/wBOr58AQdCBAQuXJyAA/wAAMP8w8DH/MQD/7/8AAAEAAgAEAAEAAQABAAEAAgABAAMAAgABAAIAAgABAAEAAQABAAEABQACAAEAAgADAAMAAwACAAIABAABAAEAAQACAAEABQACAAMAAQACAAEAAgABAAEAAgABAAEAAgACAAEABAABAAEAAQABAAUACgABAAIAEwACAAEAAgABAAIAAQACAAEAAgABAAUAAQAGAAMAAgABAAIAAgABAAEAAQAEAAgABQABAAEABAABAAEAAwABAAIAAQAFAAEAAgABAAEAAQAKAAEAAQAFAAIABAAGAAEABAACAAIAAgAMAAIAAQABAAYAAQABAAEABAABAAEABAAGAAUAAQAEAAIAAgAEAAoABwABAAEABAACAAQAAgABAAQAAwAGAAoADAAFAAcAAgAOAAIACQABAAEABgAHAAoABAAHAA0AAQAFAAQACAAEAAEAAQACABwABQAGAAEAAQAFAAIABQAUAAIAAgAJAAgACwACAAkAEQABAAgABgAIABsABAAGAAkAFAALABsABgBEAAIAAgABAAEAAQACAAEAAgACAAcABgALAAMAAwABAAEAAwABAAIAAQABAAEAAQABAAMAAQABAAgAAwAEAAEABQAHAAIAAQAEAAQACAAEAAIAAQACAAEAAQAEAAUABgADAAYAAgAMAAMAAQADAAkAAgAEAAMABAABAAUAAwADAAEAAwAHAAEABQABAAEAAQABAAIAAwAEAAUAAgADAAIABgABAAEAAgABAAcAAQAHAAMABAAFAA8AAgACAAEABQADABYAEwACAAEAAQABAAEAAgAFAAEAAQABAAYAAQABAAwACAACAAkAEgAWAAQAAQABAAUAAQAQAAEAAgAHAAoADwABAAEABgACAAQAAQACAAQAAQAGAAEAAQADAAIABAABAAYABAAFAAEAAgABAAEAAgABAAoAAwABAAMAAgABAAkAAwACAAUABwACABMABAADAAYAAQABAAEAAQABAAQAAwACAAEAAQABAAIABQADAAEAAQABAAIAAgABAAEAAgABAAEAAgABAAMAAQABAAEAAwAHAAEABAABAAEAAgABAAEAAgABAAIABAAEAAMACAABAAEAAQACAAEAAwAFAAEAAwABAAMABAAGAAIAAgAOAAQABgAGAAsACQABAA8AAwABABwABQACAAUABQADAAEAAwAEAAUABAAGAA4AAwACAAMABQAVAAIABwAUAAoAAQACABMAAgAEABwAHAACAAMAAgABAA4ABAABABoAHAAqAAwAKAADADQATwAFAA4AEQADAAIAAgALAAMABAAGAAMAAQAIAAIAFwAEAAUACAAKAAQAAgAHAAMABQABAAEABgADAAEAAgACAAIABQAcAAEAAQAHAAcAFAAFAAMAHQADABEAGgABAAgABAAbAAMABgALABcABQADAAQABgANABgAEAAGAAUACgAZACMABwADAAIAAwADAA4AAwAGAAIABgABAAQAAgADAAgAAgABAAEAAwADAAMABAABAAEADQACAAIABAAFAAIAAQAOAA4AAQACAAIAAQAEAAUAAgADAAEADgADAAwAAwARAAIAEAAFAAEAAgABAAgACQADABMABAACAAIABAARABkAFQAUABwASwABAAoAHQBnAAQAAQACAAEAAQAEAAIABAABAAIAAwAYAAIAAgACAAEAAQACAAEAAwAIAAEAAQABAAIAAQABAAMAAQABAAEABgABAAUAAwABAAEAAQADAAQAAQABAAUAAgABAAUABgANAAkAEAABAAEAAQABAAMAAgADAAIABAAFAAIABQACAAIAAwAHAA0ABwACAAIAAQABAAEAAQACAAMAAwACAAEABgAEAAkAAgABAA4AAgAOAAIAAQASAAMABAAOAAQACwApAA8AFwAPABcAsAABAAMABAABAAEAAQABAAUAAwABAAIAAwAHAAMAAQABAAIAAQACAAQABAAGAAIABAABAAkABwABAAoABQAIABAAHQABAAEAAgACAAMAAQADAAUAAgAEAAUABAABAAEAAgACAAMAAwAHAAEABgAKAAEAEQABACwABAAGAAIAAQABAAYABQAEAAIACgABAAYACQACAAgAAQAYAAEAAgANAAcACAAIAAIAAQAEAAEAAwABAAMAAwAFAAIABQAKAAkABAAJAAwAAgABAAYAAQAKAAEAAQAHAAcABAAKAAgAAwABAA0ABAADAAEABgABAAMABQACAAEAAgARABAABQACABAABgABAAQAAgABAAMAAwAGAAgABQALAAsAAQADAAMAAgAEAAYACgAJAAUABwAEAAcABAAHAAEAAQAEAAIAAQADAAYACAAHAAEABgALAAUABQADABgACQAEAAIABwANAAUAAQAIAFIAEAA9AAEAAQABAAQAAgACABAACgADAAgAAQABAAYABAACAAEAAwABAAEAAQAEAAMACAAEAAIAAgABAAEAAQABAAEABgADAAUAAQABAAQABgAJAAIAAQABAAEAAgABAAcAAgABAAYAAQAFAAQABAADAAEACAABAAMAAwABAAMAAgACAAIAAgADAAEABgABAAIAAQACAAEAAwAHAAEACAACAAEAAgABAAUAAgAFAAMABQAKAAEAAgABAAEAAwACAAUACwADAAkAAwAFAAEAAQAFAAkAAQACAAEABQAHAAkACQAIAAEAAwADAAMABgAIAAIAAwACAAEAAQAgAAYAAQACAA8ACQADAAcADQABAAMACgANAAIADgABAA0ACgACAAEAAwAKAAQADwACAA8ADwAKAAEAAwAJAAYACQAgABkAGgAvAAcAAwACAAMAAQAGAAMABAADAAIACAAFAAQAAQAJAAQAAgACABMACgAGAAIAAwAIAAEAAgACAAQAAgABAAkABAAEAAQABgAEAAgACQACAAMAAQABAAEAAQADAAUABQABAAMACAAEAAYAAgABAAQADAABAAUAAwAHAA0AAgAFAAgAAQAGAAEAAgAFAA4ABgABAAUAAgAEAAgADwAFAAEAFwAGAD4AAgAKAAEAAQAIAAEAAgACAAoABAACAAIACQACAAEAAQADAAIAAwABAAUAAwADAAIAAQADAAgAAQABAAEACwADAAEAAQAEAAMABwABAA4AAQACAAMADAAFAAIABQABAAYABwAFAAcADgALAAEAAwABAAgACQAMAAIAAQALAAgABAAEAAIABgAKAAkADQABAAEAAwABAAUAAQADAAIABAAEAAEAEgACAAMADgALAAQAHQAEAAIABwABAAMADQAJAAIAAgAFAAMABQAUAAcAEAAIAAUASAAiAAYABAAWAAwADAAcAC0AJAAJAAcAJwAJAL8AAQABAAEABAALAAgABAAJAAIAAwAWAAEAAQABAAEABAARAAEABwAHAAEACwAfAAoAAgAEAAgAAgADAAIAAQAEAAIAEAAEACAAAgADABMADQAEAAkAAQAFAAIADgAIAAEAAQADAAYAEwAGAAUAAQAQAAYAAgAKAAgABQABAAIAAwABAAUABQABAAsABgAGAAEAAwADAAIABgADAAgAAQABAAQACgAHAAUABwAHAAUACAAJAAIAAQADAAQAAQABAAMAAQADAAMAAgAGABAAAQAEAAYAAwABAAoABgABAAMADwACAAkAAgAKABkADQAJABAABgACAAIACgALAAQAAwAJAAEAAgAGAAYABQAEAB4AKAABAAoABwAMAA4AIQAGAAMABgAHAAMAAQADAAEACwAOAAQACQAFAAwACwAxABIAMwAfAIwAHwACAAIAAQAFAAEACAABAAoAAQAEAAQAAwAYAAEACgABAAMABgAGABAAAwAEAAUAAgABAAQAAgA5AAoABgAWAAIAFgADAAcAFgAGAAoACwAkABIAEAAhACQAAgAFAAUAAQABAAEABAAKAAEABAANAAIABwAFAAIACQADAAQAAQAHACsAAwAHAAMACQAOAAcACQABAAsAAQABAAMABwAEABIADQABAA4AAQADAAYACgBJAAIAAgAeAAYAAQALABIAEwANABYAAwAuACoAJQBZAAcAAwAQACIAAgACAAMACQABAAcAAQABAAEAAgACAAQACgAHAAMACgADAAkABQAcAAkAAgAGAA0ABwADAAEAAwAKAAIABwACAAsAAwAGABUANgBVAAIAAQAEAAIAAgABACcAAwAVAAIAAgAFAAEAAQABAAQAAQABAAMABAAPAAEAAwACAAQABAACAAMACAACABQAAQAIAAcADQAEAAEAGgAGAAIACQAiAAQAFQA0AAoABAAEAAEABQAMAAIACwABAAcAAgAeAAwALAACAB4AAQABAAMABgAQAAkAEQAnAFIAAgACABgABwABAAcAAwAQAAkADgAsAAIAAQACAAEAAgADAAUAAgAEAAEABgAHAAUAAwACAAYAAQALAAUACwACAAEAEgATAAgAAQADABgAHQACAAEAAwAFAAIAAgABAA0ABgAFAAEALgALAAMABQABAAEABQAIAAIACgAGAAwABgADAAcACwACAAQAEAANAAIABQABAAEAAgACAAUAAgAcAAUAAgAXAAoACAAEAAQAFgAnAF8AJgAIAA4ACQAFAAEADQAFAAQAAwANAAwACwABAAkAAQAbACUAAgAFAAQABAA/ANMAXwACAAIAAgABAAMABQACAAEAAQACAAIAAQABAAEAAwACAAQAAQACAAEAAQAFAAIAAgABAAEAAgADAAEAAwABAAEAAQADAAEABAACAAEAAwAGAAEAAQADAAcADwAFAAMAAgAFAAMACQALAAQAAgAWAAEABgADAAgABwABAAQAHAAEABAAAwADABkABAAEABsAGwABAAQAAQACAAIABwABAAMABQACABwACAACAA4AAQAIAAYAEAAZAAMAAwADAA4AAwADAAEAAQACAAEABAAGAAMACAAEAAEAAQABAAIAAwAGAAoABgACAAMAEgADAAIABQAFAAQAAwABAAUAAgAFAAQAFwAHAAYADAAGAAQAEQALAAkABQABAAEACgAFAAwAAQABAAsAGgAhAAcAAwAGAAEAEQAHAAEABQAMAAEACwACAAQAAQAIAA4AEQAXAAEAAgABAAcACAAQAAsACQAGAAUAAgAGAAQAEAACAAgADgABAAsACAAJAAEAAQABAAkAGQAEAAsAEwAHAAIADwACAAwACAA0AAcABQATAAIAEAAEACQACAABABAACAAYABoABAAGAAIACQAFAAQAJAADABwADAAZAA8AJQAbABEADAA7ACYABQAgAH8AAQACAAkAEQAOAAQAAQACAAEAAQAIAAsAMgAEAA4AAgATABAABAARAAUABAAFABoADAAtAAIAFwAtAGgAHgAMAAgAAwAKAAIAAgADAAMAAQAEABQABwACAAkABgAPAAIAFAABAAMAEAAEAAsADwAGAIYAAgAFADsAAQACAAIAAgABAAkAEQADABoAiQAKANMAOwABAAIABAABAAQAAQABAAEAAgAGAAIAAwABAAEAAgADAAIAAwABAAMABAAEAAIAAwADAAEABAADAAEABwACAAIAAwABAAIAAQADAAMAAwACAAIAAwACAAEAAwAOAAYAAQADAAIACQAGAA8AGwAJACIAkQABAAEAAgABAAEAAQABAAIAAQABAAEAAQACAAIAAgADAAEAAgABAAEAAQACAAMABQAIAAMABQACAAQAAQADAAIAAgACAAwABAABAAEAAQAKAAQABQABABQABAAQAAEADwAJAAUADAACAAkAAgAFAAQAAgAaABMABwABABoABAAeAAwADwAqAAEABgAIAKwAAQABAAQAAgABAAEACwACAAIABAACAAEAAgABAAoACAABAAIAAQAEAAUAAQACAAUAAQAIAAQAAQADAAQAAgABAAYAAgABAAMABAABAAIAAQABAAEAAQAMAAUABwACAAQAAwABAAEAAQADAAMABgABAAIAAgADAAMAAwACAAEAAgAMAA4ACwAGAAYABAAMAAIACAABAAcACgABACMABwAEAA0ADwAEAAMAFwAVABwANAAFABoABQAGAAEABwAKAAIABwA1AAMAAgABAAEAAQACAKMAFAIBAAoACwABAAMAAwAEAAgAAgAIAAYAAgACABcAFgAEAAIAAgAEAAIAAQADAAEAAwADAAUACQAIAAIAAQACAAgAAQAKAAIADAAVABQADwBpAAIAAwABAAEAAwACAAMAAQABAAIABQABAAQADwALABMAAQABAAEAAQAFAAQABQABAAEAAgAFAAMABQAMAAEAAgAFAAEACwABAAEADwAJAAEABAAFAAMAGgAIAAIAAQADAAEAAQAPABMAAgAMAAEAAgAFAAIABwACABMAAgAUAAYAGgAHAAUAAgACAAcAIgAVAA0ARgACAIAAAQABAAIAAQABAAIAAQABAAMAAgACAAIADwABAAQAAQADAAQAKgAKAAYAAQAxAFUACAABAAIAAQABAAQABAACAAMABgABAAUABwAEAAMA0wAEAAEAAgABAAIABQABAAIABAACAAIABgAFAAYACgADAAQAMABkAAYAAgAQACgBBQAbAIMBAgACAAMABwAQAAgABQAmAA8AJwAVAAkACgADAAcAOwANABsAFQAvAAUAFQAGAEHyqAELsR4BAAIABAABAAEAAQABAAIAAQAGAAIAAgABAAgABQAHAAsAAQACAAoACgAIAAIABAAUAAIACwAIAAIAAQACAAEABgACAAEABwAFAAMABwABAAEADQAHAAkAAQAEAAYAAQACAAEACgABAAEACQACAAIABAAFAAYADgABAAEACQADABIABQAEAAIAAgAKAAcAAQABAAEAAwACAAQAAwAXAAIACgAMAAIADgACAAQADQABAAYACgADAAEABwANAAYABAANAAUAAgADABEAAgACAAUABwAGAAQAAQAHAA4AEAAGAA0ACQAPAAEAAQAHABAABAAHAAEAEwAJAAIABwAPAAIABgAFAA0AGQAEAA4ADQALABkAAQABAAEAAgABAAIAAgADAAoACwADAAMAAQABAAQABAACAAEABAAJAAEABAADAAUABQACAAcADAALAA8ABwAQAAQABQAQAAIAAQABAAYAAwADAAEAAQACAAcABgAGAAcAAQAEAAcABgABAAEAAgABAAwAAwADAAkABQAIAAEACwABAAIAAwASABQABAABAAMABgABAAcAAwAFAAUABwACAAIADAADAAEABAACAAMAAgADAAsACAAHAAQAEQABAAkAGQABAAEABAACAAIABAABAAIABwABAAEAAQADAAEAAgAGABAAAQACAAEAAQADAAwAFAACAAUAFAAIAAcABgACAAEAAQABAAEABgACAAEAAgAKAAEAAQAGAAEAAwABAAIAAQAEAAEADAAEAAEAAwABAAEAAQABAAEACgAEAAcABQANAAEADwABAAEAHgALAAkAAQAPACYADgABACAAEQAUAAEACQAfAAIAFQAJAAQAMQAWAAIAAQANAAEACwAtACMAKwA3AAwAEwBTAAEAAwACAAMADQACAAEABwADABIAAwANAAgAAQAIABIABQADAAcAGQAYAAkAGAAoAAMAEQAYAAIAAQAGAAIAAwAQAA8ABgAHAAMADAABAAkABwADAAMAAwAPABUABQAQAAQABQAMAAsACwADAAYAAwACAB8AAwACAAEAAQAXAAYABgABAAQAAgAGAAUAAgABAAEAAwADABYAAgAGAAIAAwARAAMAAgAEAAUAAQAJAAUAAQABAAYADwAMAAMAEQACAA4AAgAIAAEAFwAQAAQAAgAXAAgADwAXABQADAAZABMALwALABUAQQAuAAQAAwABAAUABgABAAIABQAaAAIAAQABAAMACwABAAEAAQACAAEAAgADAAEAAQAKAAIAAwABAAEAAQADAAYAAwACAAIABgAGAAkAAgACAAIABgACAAUACgACAAQAAQACAAEAAgACAAMAAQABAAMAAQACAAkAFwAJAAIAAQABAAEAAQAFAAMAAgABAAoACQAGAAEACgACAB8AGQADAAcABQAoAAEADwAGABEABwAbALQAAQADAAIAAgABAAEAAQAGAAMACgAHAAEAAwAGABEACAAGAAIAAgABAAMABQAFAAgAEAAOAA8AAQABAAQAAQACAAEAAQABAAMAAgAHAAUABgACAAUACgABAAQAAgAJAAEAAQALAAYAAQAsAAEAAwAHAAkABQABAAMAAQABAAoABwABAAoABAACAAcAFQAPAAcAAgAFAAEACAADAAQAAQADAAEABgABAAQAAgABAAQACgAIAAEABAAFAAEABQAKAAIABwABAAoAAQABAAMABAALAAoAHQAEAAcAAwAFAAIAAwAhAAUAAgATAAMAAQAEAAIABgAfAAsAAQADAAMAAwABAAgACgAJAAwACwAMAAgAAwAOAAgABgALAAEABAApAAMAAQACAAcADQABAAUABgACAAYADAAMABYABQAJAAQACAAJAAkAIgAGABgAAQABABQACQAJAAMABAABAAcAAgACAAIABgACABwABQADAAYAAQAEAAYABwAEAAIAAQAEAAIADQAGAAQABAADAAEACAAIAAMAAgABAAUAAQACAAIAAwABAAsACwAHAAMABgAKAAgABgAQABAAFgAHAAwABgAVAAUABAAGAAYAAwAGAAEAAwACAAEAAgAIAB0AAQAKAAEABgANAAYABgATAB8AAQANAAQABAAWABEAGgAhAAoABAAPAAwAGQAGAEMACgACAAMAAQAGAAoAAgAGAAIACQABAAkABAAEAAEAAgAQAAIABQAJAAIAAwAIAAEACAADAAkABAAIAAYABAAIAAsAAwACAAEAAQADABoAAQAHAAUAAQALAAEABQADAAUAAgANAAYAJwAFAAEABQACAAsABgAKAAUAAQAPAAUAAwAGABMAFQAWAAIABAABAAYAAQAIAAEABAAIAAIABAACAAIACQACAAEAAQABAAQAAwAGAAMADAAHAAEADgACAAQACgACAA0AAQARAAcAAwACAAEAAwACAA0ABwAOAAwAAwABAB0AAgAIAAkADwAOAAkADgABAAMAAQAGAAUACQALAAMAJgArABQABwAHAAgABQAPAAwAEwAPAFEACAAHAAEABQBJAA0AJQAcAAgACAABAA8AEgAUAKUAHAABAAYACwAIAAQADgAHAA8AAQADAAMABgAEAAEABwAOAAEAAQALAB4AAQAFAAEABAAOAAEABAACAAcANAACAAYAHQADAAEACQABABUAAwAFAAEAGgADAAsADgALAAEAEQAFAAEAAgABAAMAAgAIAAEAAgAJAAwAAQABAAIAAwAIAAMAGAAMAAcABwAFABEAAwADAAMAAQAXAAoABAAEAAYAAwABABAAEQAWAAMACgAVABAAEAAGAAQACgACAAEAAQACAAgACAAGAAUAAwADAAMAJwAZAA8AAQABABAABgAHABkADwAGAAYADAABABYADQABAAQACQAFAAwAAgAJAAEADAAcAAgAAwAFAAoAFgA8AAEAAgAoAAQAPQA/AAQAAQANAAwAAQAEAB8ADAABAA4AWQAFABAABgAdAA4AAgAFADEAEgASAAUAHQAhAC8AAQARAAEAEwAMAAIACQAHACcADAADAAcADAAnAAMAAQAuAAQADAADAAgACQAFAB8ADwASAAMAAgACAEIAEwANABEABQADAC4AfAANADkAIgACAAUABAAFAAgAAQABAAEABAADAAEAEQAFAAMABQADAAEACAAFAAYAAwAbAAMAGgAHAAwABwACABEAAwAHABIATgAQAAQAJAABAAIAAQAGAAIAAQAnABEABwAEAA0ABAAEAAQAAQAKAAQAAgAEAAYAAwAKAAEAEwABABoAAgAEACEAAgBJAC8ABwADAAgAAgAEAA8AEgABAB0AAgApAA4AAQAVABAAKQAHACcAGQANACwAAgACAAoAAQANAAcAAQAHAAMABQAUAAQACAACADEAAQAKAAYAAQAGAAcACgAHAAsAEAADAAwAFAAEAAoAAwABAAIACwACABwACQACAAQABwACAA8AAQAbAAEAHAARAAQABQAKAAcAAwAYAAoACwAGABoAAwACAAcAAgACADEAEAAKABAADwAEAAUAGwA9AB4ADgAmABYAAgAHAAUAAQADAAwAFwAYABEAEQADAAMAAgAEAAEABgACAAcABQABAAEABQABAAEACQAEAAEAAwAGAAEACAACAAgABAAOAAMABQALAAQAAQADACAAAQATAAQAAQANAAsABQACAAEACAAGAAgAAQAGAAUADQADABcACwAFAAMAEAADAAkACgABABgAAwDGADQABAACAAIABQAOAAUABAAWAAUAFAAEAAsABgApAAEABQACAAIACwAFAAIAHAAjAAgAFgADABIAAwAKAAcABQADAAQAAQAFAAMACAAJAAMABgACABAAFgAEAAUABQADAAMAEgAXAAIABgAXAAUAGwAIAAEAIQACAAwAKwAQAAUAAgADAAYAAQAUAAQAAgAJAAcAAQALAAIACgADAA4AHwAJAAMAGQASABQAAgAFAAUAGgAOAAEACwARAAwAKAATAAkABgAfAFMAAgAHAAkAEwBOAAwADgAVAEwADABxAE8AIgAEAAEAAQA9ABIAVQAKAAIAAgANAB8ACwAyAAYAIQCfALMABgAGAAcABAAEAAIABAACAAUACAAHABQAIAAWAAEAAwAKAAYABwAcAAUACgAJAAIATQATAA0AAgAFAAEABAAEAAcABAANAAMACQAfABEAAwAaAAIABgAGAAUABAABAAcACwADAAQAAgABAAYAAgAUAAQAAQAJAAIABgADAAcAAQABAAEAFAACAAMAAQAGAAIAAwAGAAIABAAIAAEABQANAAgABAALABcAAQAKAAYAAgABAAMAFQACAAIABAAYAB8ABAAKAAoAAgAFAMAADwAEABAABwAJADMAAQACAAEAAQAFAAEAAQACAAEAAwAFAAMAAQADAAQAAQADAAEAAwADAAkACAABAAIAAgACAAQABAASAAwAXAACAAoABAADAA4ABQAZABAAKgAEAA4ABAACABUABQB+AB4AHwACAAEABQANAAMAFgAFAAYABgAUAAwAAQAOAAwAVwADABMAAQAIAAIACQAJAAMAAwAXAAIAAwAHAAYAAwABAAIAAwAJAAEAAwABAAYAAwACAAEAAwALAAMAAQAGAAoAAwACAAMAAQACAAEABQABAAEACwADAAYABAABAAcAAgABAAIABQAFACIABAAOABIABAATAAcABQAIAAIABgBPAAEABQACAA4ACAACAAkAAgABACQAHAAQAAQAAQABAAEAAgAMAAYAKgAnABAAFwAHAA8ADwADAAIADAAHABUAQAAGAAkAHAAIAAwAAwADACkAOwAYADMANwA5ACYBCQAJAAIABgACAA8AAQACAA0AJgBaAAkACQAJAAMACwAHAAEAAQABAAUABgADAAIAAQACAAIAAwAIAAEABAAEAAEABQAHAAEABAADABQABAAJAAEAAQABAAUABQARAAEABQACAAYAAgAEAAEABAAFAAcAAwASAAsACwAgAAcABQAEAAcACwB/AAgABAADAAMAAQAKAAEAAQAGABUADgABABAAAQAHAAEAAwAGAAkAQQAzAAQAAwANAAMACgABAAEADAAJABUAbgADABMAGAABAAEACgA+AAQAAQAdACoATgAcABQAEgBSAAYAAwAPAAYAVAA6AP0ADwCbAAgBDwAVAAkADgAHADoAKAAnAEGwxwELECAA/wAABC8F4C3/LUCmn6YAQdLHAQsmgD/NzMw9CtcjPG8SgzoXt9E4rMUnN703hjWVv9Yzd8wrMl9wiTAAQYDIAQtGBAAAAOeOAADnjgAABAAAAPGOAADxjgAACAAAAPSOAAD0jgAACAAAAPmOAAD5jgAABAAAAOqOAADqjgAACAAAAOqOAADtjgBB0MgBC5IC/5AAAAORAAAHkQAAC5EAAMGQAADBkAAAwZAAAMGQAADHkAAAz5AAANeQAADfkAAA55AAAO+QAAD3kAAA35AAAJOQAACTkAAAk5AAAJOQAACXkAAAnZAAAKOQAACpkAAAr5AAALWQAAC7kAAAqZAAAP8AAP///wD/AP8A/wD///8AAP///wD///8AAP8AAAAA6HoAANB0AADQdAAA0HQAANB0AAA4ewAAWHsAANB0AAAIewAA0HQAANB0AAAIewAAOHsAADh7AABYewAAWHsAAOh6AABYewAAWHsAAFh7AADQdAAA0HQAANB0AAAAAAAACHsAAEB7AAAIdQAAOHsAAOh6AAA4ewAAWHsAANB0AADQdABB8MoBCxLQdAAA2HQAAAh7AABYewAA0HQAQZDLAQsi6HoAANB0AADQdAAACHsAAAh7AADYdAAA0HQAAFB7AAA4ewBBwMsBCyIIewAA0HQAADh7AAAIewAACHsAANh0AADQdAAA0HQAAAh7AEHwywELEgh7AADYdAAA0HQAAAh7AAAIewBBkMwBCzboegAA2HQAAFh7AADQdAAACHsAANh0AAA4ewAAOHsAAAh7AADYdAAA0HQAANB0AAA4ewAAOHsAQdDMAQsSCHsAANh0AAAIewAAOHsAANB0AEHwzAELMgh7AAA4ewAAOHsAANh0AAAIewAA2HQAADh7AADYdAAACHsAANh0AADQdAAAOHsAANB0AEGwzQELIgh7AADYdAAA0HQAADh7AADQdAAA0HQAANB0AADQdAAA0HQAQeDNAQs2CHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AAA4ewAAOHsAANB0AEGgzgELEgh7AADYdAAA0HQAANB0AADQdABBwM4BC3YIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAAAAAAAAh7AADYdAAAOHsAANB0AADQdAAA0HQAANB0AAA4ewAACHsAANh0AADQdAAAYHsAAGB7AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AAA4ewAAOHsAADh7AEHAzwELEgh7AADYdAAA0HQAANB0AAA4ewBB4M8BC4IBCHsAANh0AADQdAAA0HQAANB0AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AABQewAA0HQAADh7AADQdAAA0HQAAAh7AADYdAAA0HQAAFB7AAA4ewAA0HQAANB0AAAAAAAACHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AADQdABB8NABCyIIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AEGg0QELRgh7AADYdAAA0HQAANB0AAA4ewAAOHsAANB0AAAAAAAACHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQfDRAQt2CHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AADQdAAA0HQAADh7AAA4ewAAAAAAAOh6AABYewAA0HQAANB0AADoegAA2HQAANB0AADQdAAAOHsAADh7AADQdAAA0HQAANB0AADQdABB8NIBC5IBCHsAANh0AADQdAAAQHsAAAh7AADQdAAA0HQAANB0AADQdAAAOHsAANB0AADQdAAA6HoAANB0AADQdAAA0HQAANB0AADQdAAA0HQAAAAAAADoegAAOHsAANB0AAAIewAA6HoAANh0AAAIewAAOHsAAOh6AADYdAAA0HQAADh7AADoegAA0HQAANB0AADQdAAA0HQAQZDUAQsi6HoAANB0AAA4ewAA0HQAAAh7AADQdAAA0HQAAAh7AAA4ewBBwNQBC4YBCHsAANh0AADQdAAAOHsAAAh7AADYdAAAUHsAAFB7AABQewAAUHsAAFB7AAAAAAAACHsAAFh2AAA4ewAA0HQAAAh7AACYdgAAOHsAAFh7AAAIewAAmHYAADh7AAAIewAACHsAAJh2AAA4ewAAOHsAANB0AADIdgAA0HQAAFh7AADQdAAA0HQAQdDVAQsy6HoAACB2AADQdAAAWHsAANB0AABAewAAMHsAAAAAAAA4ewAAIHYAAFh7AADYdAAAWHsAQZDWAQti0HQAACB2AABYewAAWHsAAFh7AADYdAAA0HQAANB0AADoegAAQHUAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAQYDXAQs26HoAADB1AAA4ewAAOHsAAOh6AABAdQAA0HQAANB0AADoegAAQHUAANB0AADQdAAAWHsAADh7AEHA1wELFuh6AABAdQAA0HQAANB0AADQdAAAOHsAQeDXAQsW6HoAAEB1AADQdAAAWHsAADh7AAA4ewBBgNgBCzLoegAAQHUAANB0AABYewAAWHsAAFh7AAA4ewAAAAAAAOh6AABAdQAAQHsAAAh7AABYewBBwNgBCyLoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHw2AELEuh6AABAdQAA0HQAADh7AABAewBBkNkBC0boegAAQHUAANB0AAA4ewAAQHsAAAh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHg2QELcuh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAA6HoAAEB1AADQdAAAWHsAANB0AABAewAA2HQAAFh7AADQdABB4NoBCxLoegAAQHUAANB0AABAewAA2HQAQYDbAQsW6HoAAEB1AADQdAAAWHsAAEB7AAA4ewBBoNsBCzboegAAQHUAANB0AABYewAAQHsAADh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAAQHsAQeDbAQvWAeh6AABAdQAA0HQAANB0AADQdAAAQHsAAFh7AAAAAAAA6HoAAEB1AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAQHsAAEB7AABAewAA6HoAAEB1AADQdAAA0HQAAEB7AABYewAAOHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAAFh7AAA4ewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAWHsAQcDdAQsS6HoAAEB1AADQdAAA0HQAAAh7AEHg3QELRuh6AADgdwAAOHsAAFh7AADoegAA+HUAADh7AADYdAAA6HoAAOh1AAA4ewAAOHsAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQbDeAQvhA9B0AADQdAAA0HQAANB0AAACAADAAwAAwAQAAMAFAADABgAAwAcAAMAIAADACQAAwAoAAMALAADADAAAwA0AAMAOAADADwAAwBAAAMARAADAEgAAwBMAAMAUAADAFQAAwBYAAMAXAADAGAAAwBkAAMAaAADAGwAAwBwAAMAdAADAHgAAwB8AAMAAAACzAQAAwwIAAMMDAADDBAAAwwUAAMMGAADDBwAAwwgAAMMJAADDCgAAwwsAAMMMAADDDQAA0w4AAMMPAADDAAAMuwEADMMCAAzDAwAMwwQADNMAAAAA/////////////////////////////////////////////////////////////////wABAgMEBQYHCAn/////////CgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiP///////8KCwwNDg8QERITFBUWFxgZGhscHR4fICEiI/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AQaDiAQsYEQAKABEREQAAAAAFAAAAAAAACQAAAAALAEHA4gELIREADwoREREDCgcAARMJCwsAAAkGCwAACwAGEQAAABEREQBB8eIBCwELAEH64gELGBEACgoREREACgAAAgAJCwAAAAkACwAACwBBq+MBCwEMAEG34wELFQwAAAAADAAAAAAJDAAAAAAADAAADABB5eMBCwEOAEHx4wELFQ0AAAAEDQAAAAAJDgAAAAAADgAADgBBn+QBCwEQAEGr5AELHg8AAAAADwAAAAAJEAAAAAAAEAAAEAAAEgAAABISEgBB4uQBCw4SAAAAEhISAAAAAAAACQBBk+UBCwELAEGf5QELFQoAAAAACgAAAAAJCwAAAAAACwAACwBBzeUBCwEMAEHZ5QEL3gIMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYKAAAAZAAAAOgDAAAQJwAAoIYBAEBCDwCAlpgAAOH1BQMAAAAEAAAABAAAAAYAAACD+aIARE5uAPwpFQDRVycA3TT1AGLbwAA8mZUAQZBDAGNR/gC73qsAt2HFADpuJADSTUIASQbgAAnqLgAcktEA6x3+ACmxHADoPqcA9TWCAES7LgCc6YQAtCZwAEF+XwDWkTkAU4M5AJz0OQCLX4QAKPm9APgfOwDe/5cAD5gFABEv7wAKWosAbR9tAM9+NgAJyycARk+3AJ5mPwAt6l8Auid1AOXrxwA9e/EA9zkHAJJSigD7a+oAH7FfAAhdjQAwA1YAe/xGAPCrawAgvM8ANvSaAOOpHQBeYZEACBvmAIWZZQCgFF8AjUBoAIDY/wAnc00ABgYxAMpWFQDJqHMAe+JgAGuMwABBw+gBC21A+yH5PwAAAAAtRHQ+AAAAgJhG+DwAAABgUcx4OwAAAICDG/A5AAAAQCAlejgAAACAIoLjNgAAAAAd82k1OGPtPtoPST9emHs/2g/JP2k3rDFoISIztA8UM2ghojMAAAAAAADwPwAAAAAAAPg/AEG46QELCAbQ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aXZlAFBsb3RMaW5lc0hvdmVyZWQAUGxvdEhpc3RvZ3JhbUhvdmVyZWQAVGV4dFNlbGVjdGVkQmcARHJhZ0Ryb3BUYXJnZXQATmF2SGlnaGxpZ2h0AE5hdldpbmRvd2luZ0hpZ2hsaWdodABOYXZXaW5kb3dpbmdEaW1CZwBNb2RhbFdpbmRvd0RpbUJnAFVua25vd24AIyNUb29sdGlwXyUwMmQAIyNNZW51XyUwMmQAIyNQb3B1cF8lMDh4AHdpbmRvd19jb250ZXh0AHZvaWRfY29udGV4dABjb2x1bW5zACNTb3VyY2VFeHRlcm4ACiUqcyUuKnMAICUuKnMAYWIACgBMb2cgVG8gVFRZAExvZyBUbyBGaWxlAExvZyBUbyBDbGlwYm9hcmQARGVwdGgAcmIAd3QASW1HdWkgTWV0cmljcwABRGVhciBJbUd1aSAlcwBBcHBsaWNhdGlvbiBhdmVyYWdlICUuM2YgbXMvZnJhbWUgKCUuMWYgRlBTKQAlZCB2ZXJ0aWNlcywgJWQgaW5kaWNlcyAoJWQgdHJpYW5nbGVzKQAlZCBhY3RpdmUgd2luZG93cyAoJWQgdmlzaWJsZSkAJWQgYWxsb2NhdGlvbnMAU2hvdyBjbGlwcGluZyByZWN0YW5nbGVzIHdoZW4gaG92ZXJpbmcgZHJhdyBjb21tYW5kcwBDdHJsIHNob3dzIHdpbmRvdyBiZWdpbiBvcmRlcgBXaW5kb3dzAERyYXdMaXN0AEFjdGl2ZSBEcmF3TGlzdHMgKCVkKQBQb3B1cHMAUG9wdXBzICglZCkAUG9wdXBJRDogJTA4eCwgV2luZG93OiAnJXMnJXMlcwBOVUxMACBDaGlsZFdpbmRvdwAgQ2hpbGRNZW51AFRhYkJhcnMAVGFiIEJhcnMgKCVkKQBJbnRlcm5hbCBzdGF0ZQBOb25lAE1vdXNlAE5hdgBOYXZLZXlib2FyZABOYXZHYW1lcGFkAEhvdmVyZWRXaW5kb3c6ICclcycASG92ZXJlZFJvb3RXaW5kb3c6ICclcycASG92ZXJlZElkOiAweCUwOFgvMHglMDhYICglLjJmIHNlYyksIEFsbG93T3ZlcmxhcDogJWQAQWN0aXZlSWQ6IDB4JTA4WC8weCUwOFggKCUuMmYgc2VjKSwgQWxsb3dPdmVybGFwOiAlZCwgU291cmNlOiAlcwBBY3RpdmVJZFdpbmRvdzogJyVzJwBNb3ZpbmdXaW5kb3c6ICclcycATmF2V2luZG93OiAnJXMnAE5hdklkOiAweCUwOFgsIE5hdkxheWVyOiAlZABOYXZJbnB1dFNvdXJjZTogJXMATmF2QWN0aXZlOiAlZCwgTmF2VmlzaWJsZTogJWQATmF2QWN0aXZhdGVJZDogMHglMDhYLCBOYXZJbnB1dElkOiAweCUwOFgATmF2RGlzYWJsZUhpZ2hsaWdodDogJWQsIE5hdkRpc2FibGVNb3VzZUhvdmVyOiAlZABOYXZXaW5kb3dpbmdUYXJnZXQ6ICclcycARHJhZ0Ryb3A6ICVkLCBTb3VyY2VJZCA9IDB4JTA4WCwgUGF5bG9hZCAiJXMiICglZCBieXRlcykAIyNPdmVybGF5ACVzLyVzXyUwOFgAJXMvJTA4WAAjUkVTSVpFACMjI05hdldpbmRvd2luZ0xpc3QAKFBvcHVwKQAoTWFpbiBtZW51IGJhcikAKFVudGl0bGVkKQBQb3M9JWYsJWYAU2l6ZT0lZiwlZgBDb2xsYXBzZWQ9JWQAIyMjAFslc11bJXNdCgBQb3M9JWQsJWQKAFNpemU9JWQsJWQKAENvbGxhcHNlZD0lZAoAJXMgKCVkKQAlcyAnJXMnLCAlZCBAIDB4JXAAUG9zOiAoJS4xZiwlLjFmKSwgU2l6ZTogKCUuMWYsJS4xZiksIFNpemVDb250ZW50cyAoJS4xZiwlLjFmKQBGbGFnczogMHglMDhYICglcyVzJXMlcyVzJXMlcyVzJXMuLikAQ2hpbGQgAFRvb2x0aXAgAFBvcHVwIABNb2RhbCAAQ2hpbGRNZW51IABOb1NhdmVkU2V0dGluZ3MgAE5vTW91c2VJbnB1dHMATm9OYXZJbnB1dHMAQWx3YXlzQXV0b1Jlc2l6ZQBTY3JvbGw6ICglLjJmLyUuMmYsJS4yZi8lLjJmKQBBY3RpdmU6ICVkLyVkLCBXcml0ZUFjY2Vzc2VkOiAlZCwgQmVnaW5PcmRlcldpdGhpbkNvbnRleHQ6ICVkAEFwcGVhcmluZzogJWQsIEhpZGRlbjogJWQgKFJlZyAlZCBSZXNpemUgJWQpLCBTa2lwSXRlbXM6ICVkAE5hdkxhc3RJZHM6IDB4JTA4WCwweCUwOFgs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bnRDb250ZXh0AERlYnVnQ2hlY2tWZXJzaW9uQW5kRGF0YUxheW91dABHZXRJTwBHZXRTdHlsZQBHZXREcmF3RGF0YQBOZXdGcmFtZQBSZW5kZXIARW5kRnJhbWUAU2hvd0RlbW9XaW5kb3cAU2hvd0Fib3V0V2luZG93AFNob3dNZXRyaWNzV2luZG93AFNob3dTdHlsZUVkaXRvcgBTaG93U3R5bGVTZWxlY3RvcgBTaG93Rm9udFNlbGVjdG9yAFNob3dVc2VyR3VpZGUAR2V0VmVyc2lvbgBTdHlsZUNvbG9yc0RhcmsAU3R5bGVDb2xvcnNDbGFzc2ljAFN0eWxlQ29sb3JzTGlnaHQAQmVnaW4ARW5kAEJlZ2luQ2hpbGQARW5kQ2hpbGQAR2V0Q29udGVudFJlZ2lvbk1heABHZXRDb250ZW50UmVnaW9uQXZhaWwAR2V0Q29udGVudFJlZ2lvbkF2YWlsV2lkdGgAR2V0V2luZG93Q29udGVudFJlZ2lvbk1pbgBHZXRXaW5kb3dDb250ZW50UmVnaW9uTWF4AEdldFdpbmRvd0NvbnRlbnRSZWdpb25XaWR0aABHZXRXaW5kb3dEcmF3TGlzdABHZXRXaW5kb3dQb3MAR2V0V2luZG93U2l6ZQBHZXRXaW5kb3dXaWR0aABHZXRXaW5kb3dIZWlnaHQASXNXaW5kb3dDb2xsYXBzZWQASXNXaW5kb3dBcHBlYXJpbmcAU2V0V2luZG93Rm9udFNjYWxlAFNldE5leHRXaW5kb3dQb3MAU2V0TmV4dFdpbmRvd1NpemUAU2V0TmV4dFdpbmRvd1NpemVDb25zdHJhaW50cwBTZXROZXh0V2luZG93Q29udGVudFNpemUAU2V0TmV4dFdpbmRvd0NvbGxhcHNlZABTZXROZXh0V2luZG93Rm9jdXMAU2V0TmV4dFdpbmRvd0JnQWxwaGEAU2V0V2luZG93UG9zAFNldFdpbmRvd1NpemUAU2V0V2luZG93Q29sbGFwc2VkAFNldFdpbmRvd0ZvY3VzAFNldFdpbmRvd05hbWVQb3MAU2V0V2luZG93TmFtZVNpemUAU2V0V2luZG93TmFtZUNvbGxhcHNlZABTZXRXaW5kb3dOYW1lRm9jdXMAR2V0U2Nyb2xsWABHZXRTY3JvbGxZAEdldFNjcm9sbE1heFgAR2V0U2Nyb2xsTWF4WQBTZXRTY3JvbGxYAFNldFNjcm9sbFkAU2V0U2Nyb2xsSGVyZVkAU2V0U2Nyb2xsRnJvbVBvc1kAU2V0U3RhdGVTdG9yYWdlAEdldFN0YXRlU3RvcmFnZQBQdXNoRm9udABQb3BGb250AFB1c2hTdHlsZUNvbG9yAFBvcFN0eWxlQ29sb3IAUHVzaFN0eWxlVmFyAFBvcFN0eWxlVmFyAEdldFN0eWxlQ29sb3JWZWM0AEdldEZvbnQAR2V0Rm9udFNpemUAR2V0Rm9udFRleFV2V2hpdGVQaXhlbABHZXRDb2xvclUzMl9BAEdldENvbG9yVTMyX0IAR2V0Q29sb3JVMzJfQwBQdXNoSXRlbVdpZHRoAFBvcEl0ZW1XaWR0aABDYWxjSXRlbVdpZHRoAFB1c2hUZXh0V3JhcFBvcwBQb3BUZXh0V3JhcFBvcwBQdXNoQWxsb3dLZXlib2FyZEZvY3VzAFBvcEFsbG93S2V5Ym9hcmRGb2N1cwBQdXNoQnV0dG9uUmVwZWF0AFBvcEJ1dHRvblJlcGVhdABTZXBhcmF0b3IAU2FtZUxpbmUATmV3TGluZQBTcGFjaW5nAER1bW15AEluZGVudABVbmluZGVudABCZWdpbkdyb3VwAEVuZEdyb3VwAEdldEN1cnNvclBvcwBHZXRDdXJzb3JQb3NYAEdldEN1cnNvclBvc1kAU2V0Q3Vyc29yUG9zAFNldEN1cnNvclBvc1gAU2V0Q3Vyc29yUG9zWQBHZXRDdXJzb3JTdGFydFBvcwBHZXRDdXJzb3JTY3JlZW5Qb3MAU2V0Q3Vyc29yU2NyZWVuUG9zAEFsaWduVGV4dFRvRnJhbWVQYWRkaW5nAEdldFRleHRMaW5lSGVpZ2h0AEdldFRleHRMaW5lSGVpZ2h0V2l0aFNwYWNpbmcAR2V0RnJhbWVIZWlnaHQAR2V0RnJhbWVIZWlnaHRXaXRoU3BhY2luZwBDb2x1bW5zAE5leHRDb2x1bW4AR2V0Q29sdW1uSW5kZXgAR2V0Q29sdW1uV2lkdGgAU2V0Q29sdW1uV2lkdGgAR2V0Q29sdW1uT2Zmc2V0AFNldENvbHVtbk9mZnNldABHZXRDb2x1bW5zQ291bnQAUHVzaElEAFBvcElEAEdldElEAFRleHRVbmZvcm1hdHRlZABUZXh0AFRleHRWAFRleHRDb2xvcmVkAFRleHRDb2xvcmVkVgBUZXh0RGlzYWJsZWQAVGV4dERpc2FibGVkVgBUZXh0V3JhcHBlZABUZXh0V3JhcHBlZFYATGFiZWxUZXh0AExhYmVsVGV4dFYAQnVsbGV0VGV4dABCdWxsZXRUZXh0VgBCdWxsZXQAQnV0dG9uAFNtYWxsQnV0dG9uAEFycm93QnV0dG9uAEludmlzaWJsZUJ1dHRvbgBJbWFnZQBJbWFnZUJ1dHRvbgBDaGVja2JveABDaGVja2JveEZsYWdzAFJhZGlvQnV0dG9uX0EAUmFkaW9CdXR0b25fQgBQbG90TGluZXMAUGxvdEhpc3RvZ3JhbQBQcm9ncmVzc0JhcgBCZWdpbkNvbWJvAEVuZENvbWJvAENvbWJvAERyYWdGbG9hdABEcmFnRmxvYXQyAERyYWdGbG9hdDMARHJhZ0Zsb2F0NABEcmFnRmxvYXRSYW5nZTIARHJhZ0ludABEcmFnSW50MgBEcmFnSW50MwBEcmFnSW50NABEcmFnSW50UmFuZ2UyAERyYWdTY2FsYXIASW5wdXRUZXh0AElucHV0VGV4dE11bHRpbGluZQBJbnB1dEZsb2F0AElucHV0RmxvYXQyAElucHV0RmxvYXQzAElucHV0RmxvYXQ0AElucHV0SW50AElucHV0SW50MgBJbnB1dEludDMASW5wdXRJbnQ0AElucHV0RG91YmxlAElucHV0U2NhbGFyAFNsaWRlckZsb2F0AFNsaWRlckZsb2F0MgBTbGlkZXJGbG9hdDMAU2xpZGVyRmxvYXQ0AFNsaWRlckFuZ2xlAFNsaWRlckludABTbGlkZXJJbnQyAFNsaWRlckludDMAU2xpZGVySW50NABTbGlkZXJTY2FsYXIAVlNsaWRlckZsb2F0AFZTbGlkZXJJbnQAVlNsaWRlclNjYWxhcgBDb2xvckVkaXQzAENvbG9yRWRpdDQAQ29sb3JQaWNrZXIzAENvbG9yUGlja2VyNABDb2xvckJ1dHRvbgBTZXRDb2xvckVkaXRPcHRpb25zAFRyZWVOb2RlX0EAVHJlZU5vZGVfQgBUcmVlTm9kZV9DAFRyZWVOb2RlRXhfQQBUcmVlTm9kZUV4X0IAVHJlZU5vZGVFeF9DAFRyZWVQdXNoX0EAVHJlZVB1c2hfQgBUcmVlUG9wAFRyZWVBZHZhbmNlVG9MYWJlbFBvcwBHZXRUcmVlTm9kZVRvTGFiZWxTcGFjaW5nAFNldE5leHRUcmVlTm9kZU9wZW4AQ29sbGFwc2luZ0hlYWRlcl9BAENvbGxhcHNpbmdIZWFkZXJfQgBTZWxlY3RhYmxlX0EAU2VsZWN0YWJsZV9CAExpc3RCb3hfQQBMaXN0Qm94X0IATGlzdEJveEhlYWRlcl9BAExpc3RCb3hIZWFkZXJfQgBMaXN0Qm94Rm9vdGVyAFZhbHVlX0EAVmFsdWVfQgBWYWx1ZV9DAFZhbHVlX0QAU2V0VG9vbHRpcABCZWdpblRvb2x0aXAARW5kVG9vbHRpcABCZWdpbk1haW5NZW51QmFyAEVuZE1haW5NZW51QmFyAEJlZ2luTWVudUJhcgBFbmRNZW51QmFyAEJlZ2luTWVudQBFbmRNZW51AE1lbnVJdGVtX0EATWVudUl0ZW1fQgBPcGVuUG9wdXAAT3BlblBvcHVwT25JdGVtQ2xpY2sAQmVnaW5Qb3B1cABCZWdpblBvcHVwTW9kYWwAQmVnaW5Qb3B1cENvbnRleHRJdGVtAEJlZ2luUG9wdXBDb250ZXh0V2luZG93AEJlZ2luUG9wdXBDb250ZXh0Vm9pZABFbmRQb3B1cABJc1BvcHVwT3BlbgBDbG9zZUN1cnJlbnRQb3B1cABCZWdpblRhYkJhcgBFbmRUYWJCYXIAQmVnaW5UYWJJdGVtAEVuZFRhYkl0ZW0AU2V0VGFiSXRlbUNsb3NlZABMb2dUb1RUWQBMb2dUb0ZpbGUATG9nVG9DbGlwYm9hcmQATG9nRmluaXNoAExvZ0J1dHRvbnMATG9nVGV4dABCZWdpbkRyYWdEcm9wU291cmNlAFNldERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFNvdXJjZQBCZWdpbkRyYWdEcm9wVGFyZ2V0AEFjY2VwdERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFRhcmdldABHZXREcmFnRHJvcFBheWxvYWQAUHVzaENsaXBSZWN0AFBvcENsaXBSZWN0AFNldEl0ZW1EZWZhdWx0Rm9jdXMAU2V0S2V5Ym9hcmRGb2N1c0hlcmUASXNJdGVtSG92ZXJlZABJc0l0ZW1BY3RpdmUASXNJdGVtRWRpdGVkAElzSXRlbUZvY3VzZWQASXNJdGVtQ2xpY2tlZABJc0l0ZW1WaXNpYmxlAElzSXRlbURlYWN0aXZhdGVkAElzSXRlbURlYWN0aXZhdGVkQWZ0ZXJFZGl0AElzQW55SXRlbUhvdmVyZWQASXNBbnlJdGVtQWN0aXZlAElzQW55SXRlbUZvY3VzZWQAR2V0SXRlbVJlY3RNaW4AR2V0SXRlbVJlY3RNYXgAR2V0SXRlbVJlY3RTaXplAFNldEl0ZW1BbGxvd092ZXJsYXAASXNXaW5kb3dGb2N1c2VkAElzV2luZG93SG92ZXJlZABJc1JlY3RWaXNpYmxlX0EASXNSZWN0VmlzaWJsZV9CAEdldFRpbWUAR2V0RnJhbWVDb3VudABHZXRPdmVybGF5RHJhd0xpc3QAR2V0RHJhd0xpc3RTaGFyZWREYXRhAEdldFN0eWxlQ29sb3JOYW1lAENhbGNUZXh0U2l6ZQBDYWxjTGlzdENsaXBwaW5nAEJlZ2luQ2hpbGRGcmFtZQBFbmRDaGlsZEZyYW1lAENvbG9yQ29udmVydFUzMlRvRmxvYXQ0AENvbG9yQ29udmVydEZsb2F0NFRvVTMyAENvbG9yQ29udmVydFJHQnRvSFNWAENvbG9yQ29udmVydEhTVnRvUkdCAEdldEtleUluZGV4AElzS2V5RG93bgBJc0tleVByZXNzZWQASXNLZXlSZWxlYXNlZABHZXRLZXlQcmVzc2VkQW1vdW50AElzTW91c2VEb3duAElzQW55TW91c2VEb3duAElzTW91c2VDbGlja2VkAElzTW91c2VEb3VibGVDbGlja2VkAElzTW91c2VSZWxlYXNlZABJc01vdXNlRHJhZ2dpbmcASXNNb3VzZUhvdmVyaW5nUmVjdABJc01vdXNlUG9zVmFsaWQAR2V0TW91c2VQb3MAR2V0TW91c2VQb3NPbk9wZW5pbmdDdXJyZW50UG9wdXAAR2V0TW91c2VEcmFnRGVsdGEAUmVzZXRNb3VzZURyYWdEZWx0YQBHZXRNb3VzZUN1cnNvcgBTZXRNb3VzZUN1cnNvcgBDYXB0dXJlS2V5Ym9hcmRGcm9tQXBwAENhcHR1cmVNb3VzZUZyb21BcHAAR2V0Q2xpcGJvYXJkVGV4dABTZXRDbGlwYm9hcmRUZXh0AExvYWRJbmlTZXR0aW5nc0Zyb21NZW1vcnkAU2F2ZUluaVNldHRpbmdzVG9NZW1vcnkAU2V0QWxsb2NhdG9yRnVuY3Rpb25zAE1lbUFsbG9jAE1lbUZyZWUAaWlpAE4xMGVtc2NyaXB0ZW4zdmFsRQB2aWlpaQBOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TXzExY2hhcl90cmFpdHNJY0VFTlNfOWFsbG9jYXRvckljRUVFRQBOU3QzX18yMjFfX2Jhc2ljX3N0cmluZ19jb21tb25JTGIxRUVFAGlpaWZpAHgAeQAyM2ltcG9ydF9tYXliZV9udWxsX3ZhbHVlSTZJbVZlYzJFAGlpaWlpAGlpaWYAaWlpZmYAaWlpaQAxMmFjY2Vzc192YWx1ZUlmTG0xRUUAdmlmZmZpaWkAegB3ADZJbVZlYzIAdmlpZmlpADEyYWNjZXNzX3ZhbHVlSWlMbTFFRQBpaWlpZmkAUDIwSW1EcmF3TGlzdFNoYXJlZERhdGEAMjBJbURyYXdMaXN0U2hhcmVkRGF0YQBQMTBJbURyYXdMaXN0ADEwSW1EcmF3TGlzdABkaQBpaWlpaWkAJXMAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TMF8xMWNoYXJfdHJhaXRzSWNFRU5TMF85YWxsb2NhdG9ySWNFRUVFRQAyNGltcG9ydF9tYXliZV9udWxsX3N0cmluZwAyM2FjY2Vzc19tYXliZV9udWxsX3ZhbHVlSWJMbTFFRQB2aWlmaQB2aWlpAGlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJZkxtNEVFADIzYWNjZXNzX21heWJlX251bGxfdmFsdWVJZkxtNEVFADEyYWNjZXNzX3ZhbHVlSWZMbTNFRQBpaWlpaWlpaWlpAHNldABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lkRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlkRQBsZW5ndGgAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lmRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlmRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lqRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlqRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lpRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlpRQBpaWlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJaUxtNEVFADEyYWNjZXNzX3ZhbHVlSWlMbTNFRQAxMmFjY2Vzc192YWx1ZUlpTG0yRUUAJS4wZiBkZWcAMTJhY2Nlc3NfdmFsdWVJZkxtMkVFAGlpaWlpaWlpAGlpaWlkZGlpADEyYWNjZXNzX3ZhbHVlSWRMbTFFRQBQMjZJbUd1aUlucHV0VGV4dENhbGxiYWNrRGF0YQAyNkltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAGlpaWlpaWlpaWlpAHZpZmlpAHZpaWlpaWlpaWlpADEyYWNjZXNzX3ZhbHVlSWpMbTFFRQAxMmFjY2Vzc192YWx1ZUliTG0xRUUAdmlpaWlpaWkAbnVtYmVyAHZpaWYAZmlpAGlpAHZpaQBQNkltRm9udAA2SW1Gb250AFBLNkltVmVjNAA2SW1WZWM0AFRPRE86ICVzCgBhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoZW1zY3JpcHRlbjo6dmFsKSBjb25zdAB2aWZmAHZpaWlpaQBQMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAdmlmAGZpAHN0cmluZwBQMTBJbUd1aVN0eWxlADEwSW1HdWlTdHlsZQB2aQBQMTBJbURyYXdEYXRhADEwSW1EcmF3RGF0YQBQN0ltR3VpSU8AN0ltR3VpSU8AUDE2V3JhcEltR3VpQ29udGV4dAAxNldyYXBJbUd1aUNvbnRleHQAUDExSW1Gb250QXRsYXMAMTFJbUZvbnRBdGxhcwBJbUd1aVN0eWxlAEFscGhhAFdpbmRvd1BhZGRpbmcAV2luZG93Um91bmRpbmcAV2luZG93Qm9yZGVyU2l6ZQBXaW5kb3dNaW5TaXplAFdpbmRvd1RpdGxlQWxpZ24AQ2hpbGRSb3VuZGluZwBDaGlsZEJvcmRlclNpemUAUG9wdXBSb3VuZGluZwBQb3B1cEJvcmRlclNpemUARnJhbWVQYWRkaW5nAEZyYW1lUm91bmRpbmcARnJhbWVCb3JkZXJTaXplAEl0ZW1TcGFjaW5nAEl0ZW1Jbm5lclNwYWNpbmcAVG91Y2hFeHRyYVBhZGRpbmcASW5kZW50U3BhY2luZwBDb2x1bW5zTWluU3BhY2luZwBTY3JvbGxiYXJTaXplAFNjcm9sbGJhclJvdW5kaW5nAEdyYWJNaW5TaXplAEdyYWJSb3VuZGluZwBUYWJSb3VuZGluZwBUYWJCb3JkZXJTaXplAEJ1dHRvblRleHRBbGlnbgBEaXNwbGF5V2luZG93UGFkZGluZwBEaXNwbGF5U2FmZUFyZWFQYWRkaW5nAE1vdXNlQ3Vyc29yU2NhbGUAQW50aUFsaWFzZWRMaW5lcwBBbnRpQWxpYXNlZEZpbGwAQ3VydmVUZXNzZWxsYXRpb25Ub2wAX2dldEF0X0NvbG9ycwBfc2V0QXRfQ29sb3JzAFNjYWxlQWxsU2l6ZXMAUDZJbVZlYzQAUEs2SW1WZWMyAHYAUEsxMEltR3VpU3R5bGUASW1HdWlJTwBDb25maWdGbGFncwBCYWNrZW5kRmxhZ3MARGlzcGxheVNpemUARGVsdGFUaW1lAEluaVNhdmluZ1JhdGUASW5pRmlsZW5hbWUATG9nRmlsZW5hbWUATW91c2VEb3VibGVDbGlja1RpbWUATW91c2VEb3VibGVDbGlja01heERpc3QATW91c2VEcmFnVGhyZXNob2xkAF9nZXRBdF9LZXlNYXAAX3NldEF0X0tleU1hcABLZXlSZXBlYXREZWxheQBLZXlSZXBlYXRSYXRlAFVzZXJEYXRhAEZvbnRzAEZvbnRHbG9iYWxTY2FsZQBGb250QWxsb3dVc2VyU2NhbGluZwBGb250RGVmYXVsdABEaXNwbGF5RnJhbWVidWZmZXJTY2FsZQBEaXNwbGF5VmlzaWJsZU1pbgBEaXNwbGF5VmlzaWJsZU1heABNb3VzZURyYXdDdXJzb3IAQ29uZmlnTWFjT1NYQmVoYXZpb3JzAENvbmZpZ0lucHV0VGV4dEN1cnNvckJsaW5rAENvbmZpZ1dpbmRvd3NSZXNpemVGcm9tRWRnZXMAQ29uZmlnV2luZG93c01vdmVGcm9tVGl0bGVCYXJPbmx5AEdldENsaXBib2FyZFRleHRGbgBTZXRDbGlwYm9hcmRUZXh0Rm4AQ2xpcGJvYXJkVXNlckRhdGEATW91c2VQb3MAX2dldEF0X01vdXNlRG93bgBfc2V0QXRfTW91c2VEb3duAE1vdXNlV2hlZWwAS2V5Q3RybABLZXlTaGlmdABLZXlBbHQAS2V5U3VwZXIAX2dldEF0X0tleXNEb3duAF9zZXRBdF9LZXlzRG93bgBfZ2V0QXRfTmF2SW5wdXRzAF9zZXRBdF9OYXZJbnB1dHMAQWRkSW5wdXRDaGFyYWN0ZXIAQWRkSW5wdXRDaGFyYWN0ZXJzVVRGOABDbGVhcklucHV0Q2hhcmFjdGVycwBXYW50Q2FwdHVyZU1vdXNlAFdhbnRDYXB0dXJlS2V5Ym9hcmQAV2FudFRleHRJbnB1dABXYW50U2V0TW91c2VQb3MAV2FudFNhdmVJbmlTZXR0aW5ncwBOYXZBY3RpdmUATmF2VmlzaWJsZQBGcmFtZXJhdGUATWV0cmljc1JlbmRlclZlcnRpY2VzAE1ldHJpY3NSZW5kZXJJbmRpY2VzAE1ldHJpY3NSZW5kZXJXaW5kb3dzAE1ldHJpY3NBY3RpdmVXaW5kb3dzAE1ldHJpY3NBY3RpdmVBbGxvY2F0aW9ucwBNb3VzZURlbHRhAF9nZXRBdF9Nb3VzZUNsaWNrZWRQb3MAX2dldEF0X01vdXNlRG93bkR1cmF0aW9uAF9nZXRBdF9LZXlzRG93bkR1cmF0aW9uAF9nZXRBdF9OYXZJbnB1dHNEb3duRHVyYXRpb24AUEs3SW1HdWlJTwBpaWlpZgBmaWlpAEltRm9udEF0bGFzAEFkZEZvbnREZWZhdWx0AEFkZEZvbnRGcm9tTWVtb3J5VFRGAENsZWFyVGV4RGF0YQBDbGVhcklucHV0RGF0YQBDbGVhckZvbnRzAENsZWFyAEJ1aWxkAElzQnVpbHQAR2V0VGV4RGF0YUFzQWxwaGE4AEdldFRleERhdGFBc1JHQkEzMgBHZXRHbHlwaFJhbmdlc0RlZmF1bHQAR2V0R2x5cGhSYW5nZXNLb3JlYW4AR2V0R2x5cGhSYW5nZXNKYXBhbmVzZQBHZXRHbHlwaFJhbmdlc0NoaW5lc2VGdWxsAEdldEdseXBoUmFuZ2VzQ2hpbmVzZVNpbXBsaWZpZWRDb21tb24AR2V0R2x5cGhSYW5nZXNDeXJpbGxpYwBHZXRHbHlwaFJhbmdlc1RoYWkATG9ja2VkAEZsYWdzAFRleElEAFRleERlc2lyZWRXaWR0aABUZXhHbHlwaFBhZGRpbmcAVGV4V2lkdGgAVGV4SGVpZ2h0AFRleFV2U2NhbGUAVGV4VXZXaGl0ZVBpeGVsAEl0ZXJhdGVGb250cwBwaXhlbHMAd2lkdGgAaGVpZ2h0AGJ5dGVzX3Blcl9waXhlbABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0loRUUAaWlpaWZpaQBGb250RGF0YQBidWZmZXIAYnl0ZU9mZnNldABieXRlTGVuZ3RoAFRPRE86IEZvbnREYXRhICV6dSAlenUKAEZvbnREYXRhT3duZWRCeUF0bGFzAEZvbnRObwBTaXplUGl4ZWxzAE92ZXJzYW1wbGVIAE92ZXJzYW1wbGVWAFBpeGVsU25hcEgAR2x5cGhFeHRyYVNwYWNpbmcAR2x5cGhPZmZzZXQAR2x5cGhSYW5nZXMAR2x5cGhNaW5BZHZhbmNlWABHbHlwaE1heEFkdmFuY2VYAE1lcmdlTW9kZQBSYXN0ZXJpemVyRmxhZ3MAUmFzdGVyaXplck11bHRpcGx5AE5hbWUAUEsxMUltRm9udEF0bGFzAEltRm9udABGb250U2l6ZQBTY2FsZQBEaXNwbGF5T2Zmc2V0AEl0ZXJhdGVHbHlwaHMARmFsbGJhY2tHbHlwaABGYWxsYmFja0FkdmFuY2VYAEZhbGxiYWNrQ2hhcgBDb25maWdEYXRhQ291bnQASXRlcmF0ZUNvbmZpZ0RhdGEAQXNjZW50AERlc2NlbnQATWV0cmljc1RvdGFsU3VyZmFjZQBDbGVhck91dHB1dERhdGEAQnVpbGRMb29rdXBUYWJsZQBGaW5kR2x5cGgARmluZEdseXBoTm9GYWxsYmFjawBTZXRGYWxsYmFja0NoYXIAR2V0Q2hhckFkdmFuY2UASXNMb2FkZWQAR2V0RGVidWdOYW1lAENhbGNUZXh0U2l6ZUEAQ2FsY1dvcmRXcmFwUG9zaXRpb25BAFJlbmRlckNoYXIAdmlpaWZpaWkAaWlpZmlmAGlpaWZmZmlpaQA8dW5rbm93bj4AUEs2SW1Gb250AFBLMTFJbUZvbnRHbHlwaAAxMUltRm9udEdseXBoAFAxMkltRm9udENvbmZpZwAxMkltRm9udENvbmZpZwBQMTFJbUZvbnRHbHlwaABJbUZvbnRDb25maWcARHN0Rm9udABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShJbUZvbnRDb25maWcgJiwgZW1zY3JpcHRlbjo6dmFsKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShjb25zdCBJbUZvbnRDb25maWcgJikgY29uc3QAUEsxMkltRm9udENvbmZpZwBJbUZvbnRHbHlwaABDb2RlcG9pbnQAQWR2YW5jZVgAWDAAWTAAWDEAWTEAVTAAVjAAVTEAVjEASW1EcmF3RGF0YQBJdGVyYXRlRHJhd0xpc3RzAFZhbGlkAENtZExpc3RzQ291bnQAVG90YWxJZHhDb3VudABUb3RhbFZ0eENvdW50AERpc3BsYXlQb3MARGVJbmRleEFsbEJ1ZmZlcnMAU2NhbGVDbGlwUmVjdHMAUEsxMEltRHJhd0RhdGEAUEsxMEltRHJhd0xpc3QASW1EcmF3TGlzdABJdGVyYXRlRHJhd0NtZHMASWR4QnVmZmVyAFZ0eEJ1ZmZlcgBQdXNoQ2xpcFJlY3RGdWxsU2NyZWVuAFB1c2hUZXh0dXJlSUQAUG9wVGV4dHVyZUlEAEdldENsaXBSZWN0TWluAEdldENsaXBSZWN0TWF4AEFkZExpbmUAQWRkUmVjdABBZGRSZWN0RmlsbGVkAEFkZFJlY3RGaWxsZWRNdWx0aUNvbG9yAEFkZFF1YWQAQWRkUXVhZEZpbGxlZABBZGRUcmlhbmdsZQBBZGRUcmlhbmdsZUZpbGxlZABBZGRDaXJjbGUAQWRkQ2lyY2xlRmlsbGVkAEFkZFRleHRfQQBBZGRUZXh0X0IAQWRkSW1hZ2UAQWRkSW1hZ2VRdWFkAEFkZEltYWdlUm91bmRlZABBZGRQb2x5bGluZQBBZGRDb252ZXhQb2x5RmlsbGVkAEFkZEJlemllckN1cnZlAFBhdGhDbGVhcgBQYXRoTGluZVRvAFBhdGhMaW5lVG9NZXJnZUR1cGxpY2F0ZQBQYXRoRmlsbENvbnZleABQYXRoU3Ryb2tlAFBhdGhBcmNUbwBQYXRoQXJjVG9GYXN0AFBhdGhCZXppZXJDdXJ2ZVRvAFBhdGhSZWN0AENoYW5uZWxzU3BsaXQAQ2hhbm5lbHNNZXJnZQBDaGFubmVsc1NldEN1cnJlbnQAQWRkQ2FsbGJhY2sAQWRkRHJhd0NtZABDbGVhckZyZWVNZW1vcnkAUHJpbVJlc2VydmUAUHJpbVJlY3QAUHJpbVJlY3RVVgBQcmltUXVhZFVWAFByaW1Xcml0ZVZ0eABQcmltV3JpdGVJZHgAUHJpbVZ0eABVcGRhdGVDbGlwUmVjdABVcGRhdGVUZXh0dXJlSUQAdmlpaWlpaWlpaWlpAHZpaWlpZmkAdmlpaWZmZmkAdmlpaWlmAHZpaWlpaWlpZmkAdmlpaWlpaWlpZmkAdmlpaWlpaWlpaWlpaQB2aWlpZmlpaWZpADIzaW1wb3J0X21heWJlX251bGxfdmFsdWVJNkltVmVjNEUAdmlpaWZpaQB2aWlpZmlpZgB2aWlpaWlpAHZpaWlpaWlmAHZpaWlpaWlpZgB2aWlpaWlpaWkAdmlpaWlpZmkAdmlpaWlpZmlmAHZpaWlpaWYATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJY0VFAFBLOUltRHJhd0NtZAA5SW1EcmF3Q21kAEltRHJhd0NtZABFbGVtQ291bnQAQ2xpcFJlY3QAVGV4dHVyZUlkAFA5SW1EcmF3Q21kAEltR3VpTGlzdENsaXBwZXIAU3RhcnRQb3NZAEl0ZW1zSGVpZ2h0AEl0ZW1zQ291bnQAU3RlcE5vAERpc3BsYXlTdGFydABEaXNwbGF5RW5kAFN0ZXAAUDE2SW1HdWlMaXN0Q2xpcHBlcgAxNkltR3VpTGlzdENsaXBwZXIAdmlpaWYAUEsxNkltR3VpTGlzdENsaXBwZXIASW1HdWlTaXplQ2FsbGJhY2tEYXRhAFBvcwBDdXJyZW50U2l6ZQBEZXNpcmVkU2l6ZQBQSzIxSW1HdWlTaXplQ2FsbGJhY2tEYXRhAEltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAEV2ZW50RmxhZwBFdmVudENoYXIARXZlbnRLZXkAQnVmAEJ1ZlRleHRMZW4AQnVmU2l6ZQBCdWZEaXJ0eQBDdXJzb3JQb3MAU2VsZWN0aW9uU3RhcnQAU2VsZWN0aW9uRW5kAERlbGV0ZUNoYXJzAEluc2VydENoYXJzAEhhc1NlbGVjdGlvbgBQSzI2SW1HdWlJbnB1dFRleHRDYWxsYmFja0RhdGEASW1WZWM0AFNldABDb3B5AEVxdWFscwBJbVZlYzIAUDZJbVZlYzIAV3JhcEltR3VpQ29udGV4dABQSzE2V3JhcEltR3VpQ29udGV4dABtYWxsaW5mbwBhcmVuYQBvcmRibGtzAHNtYmxrcwBoYmxrcwBoYmxraGQAdXNtYmxrcwBmc21ibGtzAHVvcmRibGtzAGZvcmRibGtzAGtlZXBjb3N0AHZvaWQAYm9vbABzdGQ6OnN0cmluZwBzdGQ6OmJhc2ljX3N0cmluZzx1bnNpZ25lZCBjaGFyPgBzdGQ6OndzdHJpbmcAZW1zY3JpcHRlbjo6dmFsAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgc2hvcnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgaW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludDE2X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQzMl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZyBkb3VibGU+AE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SWVFRQBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxkb3VibGU+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBsb25nPgBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0ltRUUAZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZz4ATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJbEVFAE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SXRFRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lzRUUATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJYUVFAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGNoYXI+AE5TdDNfXzIxMmJhc2ljX3N0cmluZ0l3TlNfMTFjaGFyX3RyYWl0c0l3RUVOU185YWxsb2NhdG9ySXdFRUVFAE5TdDNfXzIxMmJhc2ljX3N0cmluZ0loTlNfMTFjaGFyX3RyYWl0c0loRUVOU185YWxsb2NhdG9ySWhFRUVFAGRvdWJsZQBmbG9hdAB1bnNpZ25lZCBsb25nAGxvbmcAdW5zaWduZWQgaW50AGludAB1bnNpZ25lZCBzaG9ydABzaG9ydAB1bnNpZ25lZCBjaGFyAHNpZ25lZCBjaGFyAGNoYXIAAAECBAcDBgUALSsgICAwWDB4AChudWxsKQAtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBOQU4ALgBpbmZpbml0eQBuYW4AcndhAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXM6ICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXMAdGVybWluYXRpbmcgd2l0aCAlcyBmb3JlaWduIGV4Y2VwdGlvbgB0ZXJtaW5hdGluZwB1bmNhdWdodABTdDlleGNlcHRpb24ATjEwX19jeHhhYml2MTE2X19zaGltX3R5cGVfaW5mb0UAU3Q5dHlwZV9pbmZvAE4xMF9fY3h4YWJpdjEyMF9fc2lfY2xhc3NfdHlwZV9pbmZvRQBOMTBfX2N4eGFiaXYxMTdfX2NsYXNzX3R5cGVfaW5mb0UAcHRocmVhZF9vbmNlIGZhaWx1cmUgaW4gX19jeGFfZ2V0X2dsb2JhbHNfZmFzdCgpAGNhbm5vdCBjcmVhdGUgcHRocmVhZCBrZXkgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAY2Fubm90IHplcm8gb3V0IHRocmVhZCB2YWx1ZSBmb3IgX19jeGFfZ2V0X2dsb2JhbHMoKQB0ZXJtaW5hdGVfaGFuZGxlciB1bmV4cGVjdGVkbHkgcmV0dXJuZWQAU3QxMWxvZ2ljX2Vycm9yAFN0MTJsZW5ndGhfZXJyb3IATjEwX19jeHhhYml2MTE5X19wb2ludGVyX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19wYmFzZV90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjEyM19fZnVuZGFtZW50YWxfdHlwZV9pbmZvRQB2AFB2AERuAGIAYwBoAGEAcwB0AGkAagBsAG0AZgBkAE4xMF9fY3h4YWJpdjEyMV9fdm1pX2NsYXNzX3R5cGVfaW5mb0U=\";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}function getBinary(){try{if(Module[\"wasmBinary\"]){return new Uint8Array(Module[\"wasmBinary\"])}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(Module[\"readBinary\"]){return Module[\"readBinary\"](wasmBinaryFile)}else{throw\"both async and sync fetching of the wasm failed\"}}catch(err){abort(err)}}function getBinaryPromise(){if(!Module[\"wasmBinary\"]&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch===\"function\"){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()})}return new Promise(function(resolve,reject){resolve(getBinary())})}function createWasm(env){var info={\"env\":env,\"global\":{\"NaN\":NaN,Infinity:Infinity},\"global.Math\":Math,\"asm2wasm\":asm2wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module[\"asm\"]=exports;removeRunDependency(\"wasm-instantiate\")}addRunDependency(\"wasm-instantiate\");function receiveInstantiatedSource(output){receiveInstance(output[\"instance\"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err(\"failed to asynchronously prepare wasm: \"+reason);abort(reason)})}function instantiateAsync(){if(!Module[\"wasmBinary\"]&&typeof WebAssembly.instantiateStreaming===\"function\"&&!isDataURI(wasmBinaryFile)&&typeof fetch===\"function\"){return WebAssembly.instantiateStreaming(fetch(wasmBinaryFile,{credentials:\"same-origin\"}),info).then(receiveInstantiatedSource,function(reason){err(\"wasm streaming compile failed: \"+reason);err(\"falling back to ArrayBuffer instantiation\");instantiateArrayBuffer(receiveInstantiatedSource)})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module[\"instantiateWasm\"]){try{return Module[\"instantiateWasm\"](info,receiveInstance)}catch(e){err(\"Module.instantiateWasm callback failed with error: \"+e);return false}}instantiateAsync();return{}}Module[\"asm\"]=function(global,env,providedBuffer){env[\"memory\"]=wasmMemory;env[\"table\"]=wasmTable=new WebAssembly.Table({\"initial\":1442,\"maximum\":1442,\"element\":\"anyfunc\"});env[\"__memory_base\"]=1024;env[\"__table_base\"]=0;var exports=createWasm(env);return exports};__ATINIT__.push({func:function(){globalCtors()}});function ___cxa_allocate_exception(size){return _malloc(size)}function __ZSt18uncaught_exceptionv(){return!!__ZSt18uncaught_exceptionv.uncaught_exception}function ___cxa_free_exception(ptr){try{return _free(ptr)}catch(e){}}var EXCEPTIONS={last:0,caught:[],infos:{},deAdjust:function(adjusted){if(!adjusted||EXCEPTIONS.infos[adjusted])return adjusted;for(var key in EXCEPTIONS.infos){var ptr=+key;var adj=EXCEPTIONS.infos[ptr].adjusted;var len=adj.length;for(var i=0;i0);info.refcount--;if(info.refcount===0&&!info.rethrown){if(info.destructor){Module[\"dynCall_vi\"](info.destructor,ptr)}delete EXCEPTIONS.infos[ptr];___cxa_free_exception(ptr)}},clearRef:function(ptr){if(!ptr)return;var info=EXCEPTIONS.infos[ptr];info.refcount=0}};function ___cxa_throw(ptr,type,destructor){EXCEPTIONS.infos[ptr]={ptr:ptr,adjusted:[ptr],type:type,destructor:destructor,refcount:0,caught:false,rethrown:false};EXCEPTIONS.last=ptr;if(!(\"uncaught_exception\"in __ZSt18uncaught_exceptionv)){__ZSt18uncaught_exceptionv.uncaught_exception=1}else{__ZSt18uncaught_exceptionv.uncaught_exception++}throw ptr}function ___lock(){}var PATH={splitPath:function(filename){var splitPathRe=/^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:function(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:function(path){var isAbsolute=path.charAt(0)===\"/\",trailingSlash=path.substr(-1)===\"/\";path=PATH.normalizeArray(path.split(\"/\").filter(function(p){return!!p}),!isAbsolute).join(\"/\");if(!path&&!isAbsolute){path=\".\"}if(path&&trailingSlash){path+=\"/\"}return(isAbsolute?\"/\":\"\")+path},dirname:function(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:function(path){if(path===\"/\")return\"/\";var lastSlash=path.lastIndexOf(\"/\");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},extname:function(path){return PATH.splitPath(path)[3]},join:function(){var paths=Array.prototype.slice.call(arguments,0);return PATH.normalize(paths.join(\"/\"))},join2:function(l,r){return PATH.normalize(l+\"/\"+r)}};var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0}else{buffer.push(curr)}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get()}};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall145(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();return SYSCALLS.doReadv(stream,iov,iovcnt)}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j>2]=value;return value}function ___syscall221(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___unlock(){}function getShiftFromSize(size){switch(size){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError(\"Unknown type size: \"+size)}}function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<256;++i){codes[i]=String.fromCharCode(i)}embind_charCodes=codes}var embind_charCodes=undefined;function readLatin1String(ptr){var ret=\"\";var c=ptr;while(HEAPU8[c]){ret+=embind_charCodes[HEAPU8[c++]]}return ret}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return\"_unknown\"}name=name.replace(/[^a-zA-Z0-9_]/g,\"$\");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return\"_\"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return new Function(\"body\",\"return function \"+name+\"() {\\n\"+' \"use strict\";'+\" return body.apply(this, arguments);\\n\"+\"};\\n\")(body)}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+\"\\n\"+stack.replace(/^Error(:[^\\n]*)?\\n/,\"\")}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+\": \"+this.message}};return errorClass}var BindingError=undefined;function throwBindingError(message){throw new BindingError(message)}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError(\"Mismatched type converter count\")}for(var i=0;i>shift])},destructorFunction:null})}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return{count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+\" instance already deleted\")}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr)}else{$$.ptrType.registeredClass.rawDestructor($$.ptr)}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$)}}function attachFinalizer(handle){if(\"undefined\"===typeof FinalizationGroup){attachFinalizer=function(handle){return handle};return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn(\"object already deleted: \"+$$.ptr)}else{releaseClassHandle($$)}}});attachFinalizer=function(handle){finalizationGroup.register(handle,handle.$$,handle.$$);return handle};detachFinalizer=function(handle){finalizationGroup.unregister(handle.$$)};return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError(\"Object already scheduled for deletion\")}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined}}function ClassHandle_isDeleted(){return!this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj[\"delete\"]()}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError(\"Object already scheduled for deletion\")}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes)}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype[\"isAliasOf\"]=ClassHandle_isAliasOf;ClassHandle.prototype[\"clone\"]=ClassHandle_clone;ClassHandle.prototype[\"delete\"]=ClassHandle_delete;ClassHandle.prototype[\"isDeleted\"]=ClassHandle_isDeleted;ClassHandle.prototype[\"deleteLater\"]=ClassHandle_deleteLater}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError(\"Function '\"+humanName+\"' called with an invalid number of arguments (\"+arguments.length+\") - expects one of (\"+proto[methodName].overloadTable+\")!\")}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError(\"Cannot register public name '\"+name+\"' twice\")}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError(\"Cannot register multiple overloads of a function with the same number of arguments (\"+numArguments+\")!\")}Module[name].overloadTable[numArguments]=value}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[]}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError(\"Expected null or instance of \"+desiredClass.name+\", got an instance of \"+ptrClass.name)}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr)}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError(\"Cannot convert argument of type \"+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+\" to parameter type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError(\"Passing raw pointer to smart pointer is illegal\")}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{throwBindingError(\"Cannot convert argument of type \"+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+\" to parameter type \"+this.name)}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{var clonedHandle=handle[\"clone\"]();ptr=this.rawShare(ptr,__emval_register(function(){clonedHandle[\"delete\"]()}));if(destructors!==null){destructors.push(this.rawDestructor,ptr)}}break;default:throwBindingError(\"Unsupporting sharing policy\")}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}if(handle.$$.ptrType.isConst){throwBindingError(\"Cannot convert argument of type \"+handle.$$.ptrType.name+\" to parameter type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function simpleReadValueFromPointer(pointer){return this[\"fromWireType\"](HEAPU32[pointer>>2])}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr)}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr)}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle[\"delete\"]()}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k])}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes)}}function init_embind(){Module[\"getInheritedInstanceCount\"]=getInheritedInstanceCount;Module[\"getLiveInheritedInstances\"]=getLiveInheritedInstances;Module[\"flushPendingDeletes\"]=flushPendingDeletes;Module[\"setDelayFunction\"]=setDelayFunction}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError(\"ptr should not be undefined\")}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError(\"makeClassHandle requires ptr and ptrType\")}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError(\"Both smartPtrType and smartPtr must be specified\")}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance[\"clone\"]()}else{var rv=registeredInstance[\"clone\"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType}else{toType=registeredPointerRecord.pointerType}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype[\"argPackAdvance\"]=8;RegisteredPointer.prototype[\"readValueFromPointer\"]=simpleReadValueFromPointer;RegisteredPointer.prototype[\"deleteObject\"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype[\"fromWireType\"]=RegisteredPointer_fromWireType}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this[\"toWireType\"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null}else{this[\"toWireType\"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null}}else{this[\"toWireType\"]=genericPointerToWireType}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError(\"Replacing nonexistant public symbol\")}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value}else{Module[name]=value;Module[name].argCount=numArguments}}function embind__requireFunction(signature,rawFunction){signature=readLatin1String(signature);function makeDynCaller(dynCall){var args=[];for(var i=1;i>2)+i])}return array}function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr)}}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName=\"constructor \"+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[]}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError(\"Cannot register multiple constructors with identical number of parameters (\"+(argCount-1)+\") for class '\"+classType.name+\"'! Overload resolution is currently only performed using the parameter count, not actual type info!\")}classType.registeredClass.constructor_body[argCount-1]=function unboundTypeHandler(){throwUnboundTypeError(\"Cannot construct \"+classType.name+\" due to unbound types\",rawArgTypes)};whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){classType.registeredClass.constructor_body[argCount-1]=function constructor_body(){if(arguments.length!==argCount-1){throwBindingError(humanName+\" called with \"+arguments.length+\" arguments, expected \"+(argCount-1))}var destructors=[];var args=new Array(argCount);args[0]=rawConstructor;for(var i=1;i0?\", \":\"\")+argsListWired}invokerFnBody+=(returns?\"var rv = \":\"\")+\"invoker(fn\"+(argsListWired.length>0?\", \":\"\")+argsListWired+\");\\n\";if(needsDestructorStack){invokerFnBody+=\"runDestructors(destructors);\\n\"}else{for(var i=isClassMethodFunc?1:2;i4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle)}}function count_emval_handles(){var count=0;for(var i=5;i>2])};case 3:return function(pointer){return this[\"fromWireType\"](HEAPF64[pointer>>3])};default:throw new TypeError(\"Unknown float type: \"+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,\"fromWireType\":function(value){return value},\"toWireType\":function(destructors,value){if(typeof value!==\"number\"&&typeof value!==\"boolean\"){throw new TypeError('Cannot convert \"'+_embind_repr(value)+'\" to '+this.name)}return value},\"argPackAdvance\":8,\"readValueFromPointer\":floatReadValueFromPointer(name,shift),destructorFunction:null})}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError(\"Cannot call \"+name+\" due to unbound types\",argTypes)},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return[]})}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError(\"Unknown integer type: \"+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295}var shift=getShiftFromSize(size);var fromWireType=function(value){return value};if(minRange===0){var bitshift=32-8*size;fromWireType=function(value){return value<>>bitshift}}var isUnsignedType=name.indexOf(\"unsigned\")!=-1;registerType(primitiveType,{name:name,\"fromWireType\":fromWireType,\"toWireType\":function(destructors,value){if(typeof value!==\"number\"&&typeof value!==\"boolean\"){throw new TypeError('Cannot convert \"'+_embind_repr(value)+'\" to '+this.name)}if(valuemaxRange){throw new TypeError('Passing a number \"'+_embind_repr(value)+'\" from JS side to C/C++ side to an argument of type \"'+name+'\", which is outside the valid range ['+minRange+\", \"+maxRange+\"]!\")}return isUnsignedType?value>>>0:value|0},\"argPackAdvance\":8,\"readValueFromPointer\":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null})}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(heap[\"buffer\"],data,size)}name=readLatin1String(name);registerType(rawType,{name:name,\"fromWireType\":decodeMemoryView,\"argPackAdvance\":8,\"readValueFromPointer\":decodeMemoryView},{ignoreDuplicateRegistrations:true})}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name===\"std::string\";registerType(rawType,{name:name,\"fromWireType\":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var endChar=HEAPU8[value+4+length];var endCharSwap=0;if(endChar!=0){endCharSwap=endChar;HEAPU8[value+4+length]=0}var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(HEAPU8[currentBytePtr]==0){var stringSegment=UTF8ToString(decodeStartPtr);if(str===undefined)str=stringSegment;else{str+=String.fromCharCode(0);str+=stringSegment}decodeStartPtr=currentBytePtr+1}}if(endCharSwap!=0)HEAPU8[value+4+length]=endCharSwap}else{var a=new Array(length);for(var i=0;i>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1)}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError(\"String has UTF-16 code units that do not fit in 8 bits\")}HEAPU8[ptr+4+i]=charCode}}else{for(var i=0;i>2];var a=new Array(length);var start=value+4>>shift;for(var i=0;i>2]=length;var start=ptr+4>>shift;for(var i=0;i>2]=rd;return returnType[\"toWireType\"](destructors,handle)}function __emval_lookupTypes(argCount,argTypes,argWireTypes){var a=new Array(argCount);for(var i=0;i>2)+i],\"parameter \"+i)}return a}function __emval_call(handle,argCount,argTypes,argv){handle=requireHandle(handle);var types=__emval_lookupTypes(argCount,argTypes);var args=new Array(argCount);for(var i=0;i4){emval_handle_array[handle].refcount+=1}}function __emval_new_array(){return __emval_register([])}function __emval_new_cstring(v){return __emval_register(getStringOrSymbol(v))}function __emval_new_object(){return __emval_register({})}function __emval_run_destructors(handle){var destructors=emval_handle_array[handle].value;runDestructors(destructors);__emval_decref(handle)}function __emval_set_property(handle,key,value){handle=requireHandle(handle);key=requireHandle(key);value=requireHandle(value);handle[key]=value}function __emval_strictly_equals(first,second){first=requireHandle(first);second=requireHandle(second);return first===second}function __emval_take_value(type,argv){type=requireRegisteredType(type,\"_emval_take_value\");var v=type[\"readValueFromPointer\"](argv);return __emval_register(v)}function __emval_typeof(handle){handle=requireHandle(handle);return __emval_register(typeof handle)}function _abort(){Module[\"abort\"]()}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest)}function abortOnCannotGrowMemory(requestedSize){abort(\"OOM\")}function _emscripten_resize_heap(requestedSize){abortOnCannotGrowMemory(requestedSize)}embind_init_charCodes();BindingError=Module[\"BindingError\"]=extendError(Error,\"BindingError\");InternalError=Module[\"InternalError\"]=extendError(Error,\"InternalError\");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module[\"UnboundTypeError\"]=extendError(Error,\"UnboundTypeError\");init_emval();var ASSERTIONS=false;function intArrayToString(array){var ret=[];for(var i=0;i255){if(ASSERTIONS){assert(false,\"Character code \"+chr+\" (\"+String.fromCharCode(chr)+\") at offset \"+i+\" not in 0x00-0xFF.\")}chr&=255}ret.push(String.fromCharCode(chr))}return ret.join(\"\")}var decodeBase64=typeof atob===\"function\"?atob:function(input){var keyStr=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";var output=\"\";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\\+\\/\\=]/g,\"\");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(i0){return}preRun();if(runDependencies>0)return;if(Module[\"calledRun\"])return;function doRun(){if(Module[\"calledRun\"])return;Module[\"calledRun\"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module[\"onRuntimeInitialized\"])Module[\"onRuntimeInitialized\"]();postRun()}if(Module[\"setStatus\"]){Module[\"setStatus\"](\"Running...\");setTimeout(function(){setTimeout(function(){Module[\"setStatus\"](\"\")},1);doRun()},1)}else{doRun()}}Module[\"run\"]=run;function abort(what){if(Module[\"onAbort\"]){Module[\"onAbort\"](what)}if(what!==undefined){out(what);err(what);what=JSON.stringify(what)}else{what=\"\"}ABORT=true;EXITSTATUS=1;throw\"abort(\"+what+\"). Build with -s ASSERTIONS=1 for more info.\"}Module[\"abort\"]=abort;if(Module[\"preInit\"]){if(typeof Module[\"preInit\"]==\"function\")Module[\"preInit\"]=[Module[\"preInit\"]];while(Module[\"preInit\"].length>0){Module[\"preInit\"].pop()()}}Module[\"noExitRuntime\"]=true;run();\n\n\n return Module\n}\n);\n})();\nif (typeof exports === 'object' && typeof module === 'object')\n module.exports = Module;\n else if (typeof define === 'function' && define['amd'])\n define([], function() { return Module; });\n else if (typeof exports === 'object')\n exports[\"Module\"] = Module;\n ","export interface XY { x: number, y: number; }\nexport interface XYZ extends XY { z: number; }\nexport interface XYZW extends XYZ { w: number; }\n\nexport interface RGB { r: number; g: number; b: number; }\nexport interface RGBA extends RGB { a: number; }\n\nimport * as Bind from \"./bind-imgui\";\nexport { Bind };\n\nlet bind: Bind.Module;\nexport default async function(value?: Partial): Promise {\n return new Promise((resolve: () => void) => {\n Bind.default(value).then((value: Bind.Module): void => {\n bind = value;\n resolve();\n });\n });\n}\nexport { bind };\n\nfunction import_Scalar(sca: XY | XYZ | XYZW | Bind.ImAccess | Bind.ImScalar | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImScalar {\n if (Array.isArray(sca)) { return [ sca[0] ]; }\n if (typeof sca === \"function\") { return [ sca() ]; }\n return [ sca.x ];\n}\n\nfunction export_Scalar(tuple: Bind.ImScalar, sca: XY | XYZ | XYZW | Bind.ImAccess | Bind.ImScalar | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(sca)) { sca[0] = tuple[0]; return; }\n if (typeof sca === \"function\") { sca(tuple[0]); return; }\n sca.x = tuple[0];\n}\n\nfunction import_Vector2(vec: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple2 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1] ]; }\n return [ vec.x, vec.y ];\n}\n\nfunction export_Vector2(tuple: Bind.ImTuple2, vec: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; return; }\n vec.x = tuple[0]; vec.y = tuple[1];\n}\n\nfunction import_Vector3(vec: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple3 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1], vec[2] ]; }\n return [ vec.x, vec.y, vec.z ];\n}\n\nfunction export_Vector3(tuple: Bind.ImTuple3, vec: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; vec[2] = tuple[2]; return; }\n vec.x = tuple[0]; vec.y = tuple[1]; vec.z = tuple[2];\n}\n\nfunction import_Vector4(vec: XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple4 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1], vec[2], vec[3] || 0 ]; }\n return [ vec.x, vec.y, vec.z, vec.w ];\n}\n\nfunction export_Vector4(tuple: Bind.ImTuple4, vec: XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; vec[2] = tuple[2]; vec[3] = tuple[3]; return; }\n vec.x = tuple[0]; vec.y = tuple[1]; vec.z = tuple[2]; vec.w = tuple[3];\n}\n\nfunction import_Color3(col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple3 {\n if (Array.isArray(col)) { return [ col[0], col[1], col[2] ]; }\n if (\"r\" in col) { return [ col.r, col.g, col.b ]; }\n return [ col.x, col.y, col.z ];\n}\n\nfunction export_Color3(tuple: Bind.ImTuple3, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(col)) { col[0] = tuple[0]; col[1] = tuple[1]; col[2] = tuple[2]; return; }\n if (\"r\" in col) { col.r = tuple[0]; col.g = tuple[1]; col.b = tuple[2]; return; }\n col.x = tuple[0]; col.y = tuple[1]; col.z = tuple[2];\n}\n\nfunction import_Color4(col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4 | RGBA): Bind.ImTuple4 {\n if (Array.isArray(col)) { return [ col[0], col[1], col[2], col[3] ]; }\n if (\"r\" in col) { return [ col.r, col.g, col.b, col.a ]; }\n return [ col.x, col.y, col.z, col.w ];\n}\n\nfunction export_Color4(tuple: Bind.ImTuple4, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4 | RGBA): void {\n if (Array.isArray(col)) { col[0] = tuple[0]; col[1] = tuple[1]; col[2] = tuple[2]; return; }\n if (\"r\" in col) { col.r = tuple[0]; col.g = tuple[1]; col.b = tuple[2]; return; }\n col.x = tuple[0]; col.y = tuple[1]; col.z = tuple[2];\n}\n\nimport * as config from \"./imconfig\";\n\nexport const IMGUI_VERSION: string = \"1.71\"; // bind.IMGUI_VERSION;\nexport const IMGUI_VERSION_NUM: number = 17100; // bind.IMGUI_VERSION_NUM;\n\n// #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert))\nexport function IMGUI_CHECKVERSION(): boolean { return DebugCheckVersionAndDataLayout(IMGUI_VERSION, bind.ImGuiIOSize, bind.ImGuiStyleSize, bind.ImVec2Size, bind.ImVec4Size, bind.ImDrawVertSize, bind.ImDrawIdxSize); }\n\nexport function IM_ASSERT(_EXPR: boolean | number): void { if (!_EXPR) { throw new Error(); } }\n\nexport function IM_ARRAYSIZE(_ARR: ArrayLike | ImStringBuffer): number {\n if (_ARR instanceof ImStringBuffer) {\n return _ARR.size;\n } else {\n return _ARR.length;\n }\n}\n\nexport class ImStringBuffer {\n constructor(public size: number, public buffer: string = \"\") {}\n}\n\nexport { ImAccess } from \"./bind-imgui\";\nexport { ImScalar } from \"./bind-imgui\";\nexport { ImTuple2 } from \"./bind-imgui\";\nexport { ImTuple3 } from \"./bind-imgui\";\nexport { ImTuple4 } from \"./bind-imgui\";\n\nexport type ImTextureID = WebGLTexture;\n\n// Flags for ImGui::Begin()\nexport { ImGuiWindowFlags as WindowFlags };\nexport enum ImGuiWindowFlags {\n None = 0,\n NoTitleBar = 1 << 0, // Disable title-bar\n NoResize = 1 << 1, // Disable user resizing with the lower-right grip\n NoMove = 1 << 2, // Disable user moving the window\n NoScrollbar = 1 << 3, // Disable scrollbars (window can still scroll with mouse or programatically)\n NoScrollWithMouse = 1 << 4, // Disable user vertically scrolling with mouse wheel. On child window, mouse wheel will be forwarded to the parent unless NoScrollbar is also set.\n NoCollapse = 1 << 5, // Disable user collapsing window by double-clicking on it\n AlwaysAutoResize = 1 << 6, // Resize every window to its content every frame\n NoBackground = 1 << 7, // Disable drawing background color (WindowBg, etc.) and outside border. Similar as using SetNextWindowBgAlpha(0.0f).\n NoSavedSettings = 1 << 8, // Never load/save settings in .ini file\n NoMouseInputs = 1 << 9, // Disable catching mouse or keyboard inputs, hovering test with pass through.\n MenuBar = 1 << 10, // Has a menu-bar\n HorizontalScrollbar = 1 << 11, // Allow horizontal scrollbar to appear (off by default). You may use SetNextWindowContentSize(ImVec2(width,0.0f)); prior to calling Begin() to specify width. Read code in imgui_demo in the \"Horizontal Scrolling\" section.\n NoFocusOnAppearing = 1 << 12, // Disable taking focus when transitioning from hidden to visible state\n NoBringToFrontOnFocus = 1 << 13, // Disable bringing window to front when taking focus (e.g. clicking on it or programatically giving it focus)\n AlwaysVerticalScrollbar= 1 << 14, // Always show vertical scrollbar (even if ContentSize.y < Size.y)\n AlwaysHorizontalScrollbar= 1 << 15, // Always show horizontal scrollbar (even if ContentSize.x < Size.x)\n AlwaysUseWindowPadding = 1 << 16, // Ensure child windows without border uses style.WindowPadding (ignored by default for non-bordered child windows, because more convenient)\n NoNavInputs = 1 << 18, // No gamepad/keyboard navigation within the window\n NoNavFocus = 1 << 19, // No focusing toward this window with gamepad/keyboard navigation (e.g. skipped by CTRL+TAB)\n UnsavedDocument = 1 << 20, // Append '*' to title without affecting the ID, as a convenience to avoid using the ### operator. When used in a tab/docking context, tab is selected on closure and closure is deferred by one frame to allow code to cancel the closure (with a confirmation popup, etc.) without flicker.\n NoNav = NoNavInputs | NoNavFocus,\n NoDecoration = NoTitleBar | NoResize | NoScrollbar | NoCollapse,\n NoInputs = NoMouseInputs | NoNavInputs | NoNavFocus,\n\n // [Internal]\n NavFlattened = 1 << 23, // (WIP) Allow gamepad/keyboard navigation to cross over parent border to this child (only use on child that have no scrolling!)\n ChildWindow = 1 << 24, // Don't use! For internal use by BeginChild()\n Tooltip = 1 << 25, // Don't use! For internal use by BeginTooltip()\n Popup = 1 << 26, // Don't use! For internal use by BeginPopup()\n Modal = 1 << 27, // Don't use! For internal use by BeginPopupModal()\n ChildMenu = 1 << 28, // Don't use! For internal use by BeginMenu()\n}\n\n// Flags for ImGui::InputText()\nexport { ImGuiInputTextFlags as InputTextFlags };\nexport enum ImGuiInputTextFlags {\n None = 0,\n CharsDecimal = 1 << 0, // Allow 0123456789.+-*/\n CharsHexadecimal = 1 << 1, // Allow 0123456789ABCDEFabcdef\n CharsUppercase = 1 << 2, // Turn a..z into A..Z\n CharsNoBlank = 1 << 3, // Filter out spaces, tabs\n AutoSelectAll = 1 << 4, // Select entire text when first taking mouse focus\n EnterReturnsTrue = 1 << 5, // Return 'true' when Enter is pressed (as opposed to when the value was modified)\n CallbackCompletion = 1 << 6, // Call user function on pressing TAB (for completion handling)\n CallbackHistory = 1 << 7, // Call user function on pressing Up/Down arrows (for history handling)\n CallbackAlways = 1 << 8, // Call user function every time. User code may query cursor position, modify text buffer.\n CallbackCharFilter = 1 << 9, // Call user function to filter character. Modify data->EventChar to replace/filter input, or return 1 to discard character.\n AllowTabInput = 1 << 10, // Pressing TAB input a '\\t' character into the text field\n CtrlEnterForNewLine = 1 << 11, // In multi-line mode, unfocus with Enter, add new line with Ctrl+Enter (default is opposite: unfocus with Ctrl+Enter, add line with Enter).\n NoHorizontalScroll = 1 << 12, // Disable following the cursor horizontally\n AlwaysInsertMode = 1 << 13, // Insert mode\n ReadOnly = 1 << 14, // Read-only mode\n Password = 1 << 15, // Password mode, display all characters as '*'\n NoUndoRedo = 1 << 16, // Disable undo/redo. Note that input text owns the text data while active, if you want to provide your own undo/redo stack you need e.g. to call ClearActiveID().\n CharsScientific = 1 << 17, // Allow 0123456789.+-*/eE (Scientific notation input)\n CallbackResize = 1 << 18, // Allow buffer capacity resize + notify when the string wants to be resized (for string types which hold a cache of their Size) (see misc/stl/imgui_stl.h for an example of using this)\n // [Internal]\n Multiline = 1 << 20, // For internal use by InputTextMultiline()\n NoMarkEdited = 1 << 21, // For internal use by functions using InputText() before reformatting data\n}\n\n// Flags for ImGui::TreeNodeEx(), ImGui::CollapsingHeader*()\nexport { ImGuiTreeNodeFlags as TreeNodeFlags };\nexport enum ImGuiTreeNodeFlags {\n None = 0,\n Selected = 1 << 0, // Draw as selected\n Framed = 1 << 1, // Full colored frame (e.g. for CollapsingHeader)\n AllowItemOverlap = 1 << 2, // Hit testing to allow subsequent widgets to overlap this one\n NoTreePushOnOpen = 1 << 3, // Don't do a TreePush() when open (e.g. for CollapsingHeader) = no extra indent nor pushing on ID stack\n NoAutoOpenOnLog = 1 << 4, // Don't automatically and temporarily open node when Logging is active (by default logging will automatically open tree nodes)\n DefaultOpen = 1 << 5, // Default node to be open\n OpenOnDoubleClick = 1 << 6, // Need double-click to open node\n OpenOnArrow = 1 << 7, // Only open when clicking on the arrow part. If OpenOnDoubleClick is also set, single-click arrow or double-click all box to open.\n Leaf = 1 << 8, // No collapsing, no arrow (use as a convenience for leaf nodes).\n Bullet = 1 << 9, // Display a bullet instead of arrow\n FramePadding = 1 << 10, // Use FramePadding (even for an unframed text node) to vertically align text baseline to regular widget height. Equivalent to calling AlignTextToFramePadding().\n //SpanAllAvailWidth = 1 << 11, // FIXME: TODO: Extend hit box horizontally even if not framed\n //NoScrollOnOpen = 1 << 12, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible\n NavLeftJumpsBackHere = 1 << 13, // (WIP) Nav: left direction may move to this TreeNode() from any of its child (items submitted between TreeNode and TreePop)\n CollapsingHeader = Framed | NoTreePushOnOpen | NoAutoOpenOnLog,\n}\n\n// Flags for ImGui::Selectable()\nexport { ImGuiSelectableFlags as SelectableFlags };\nexport enum ImGuiSelectableFlags {\n None = 0,\n DontClosePopups = 1 << 0, // Clicking this don't close parent popup window\n SpanAllColumns = 1 << 1, // Selectable frame can span all columns (text will still fit in current column)\n AllowDoubleClick = 1 << 2, // Generate press events on double clicks too\n Disabled = 1 << 3 // Cannot be selected, display greyed out text\n}\n\n// Flags for ImGui::BeginCombo()\nexport { ImGuiComboFlags as ComboFlags };\nexport enum ImGuiComboFlags {\n None = 0,\n PopupAlignLeft = 1 << 0, // Align the popup toward the left by default\n HeightSmall = 1 << 1, // Max ~4 items visible. Tip: If you want your combo popup to be a specific size you can use SetNextWindowSizeConstraints() prior to calling BeginCombo()\n HeightRegular = 1 << 2, // Max ~8 items visible (default)\n HeightLarge = 1 << 3, // Max ~20 items visible\n HeightLargest = 1 << 4, // As many fitting items as possible\n NoArrowButton = 1 << 5, // Display on the preview box without the square arrow button\n NoPreview = 1 << 6, // Display only a square arrow button\n HeightMask_ = HeightSmall | HeightRegular | HeightLarge | HeightLargest,\n}\n\n// Flags for ImGui::BeginTabBar()\nexport { ImGuiTabBarFlags as TabBarFlags };\nexport enum ImGuiTabBarFlags {\n None = 0,\n Reorderable = 1 << 0, // Allow manually dragging tabs to re-order them + New tabs are appended at the end of list\n AutoSelectNewTabs = 1 << 1, // Automatically select new tabs when they appear\n TabListPopupButton = 1 << 2,\n NoCloseWithMiddleMouseButton = 1 << 3, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.\n NoTabListScrollingButtons = 1 << 4,\n NoTooltip = 1 << 5, // Disable tooltips when hovering a tab\n FittingPolicyResizeDown = 1 << 6, // Resize tabs when they don't fit\n FittingPolicyScroll = 1 << 7, // Add scroll buttons when tabs don't fit\n FittingPolicyMask_ = FittingPolicyResizeDown | FittingPolicyScroll,\n FittingPolicyDefault_ = FittingPolicyResizeDown\n};\n\n// Flags for ImGui::BeginTabItem()\nexport { ImGuiTabItemFlags as TabItemFlags };\nexport enum ImGuiTabItemFlags\n{\n ImGuiTabItemFlags_None = 0,\n ImGuiTabItemFlags_UnsavedDocument = 1 << 0, // Append '*' to title without affecting the ID, as a convenience to avoid using the ### operator. Also: tab is selected on closure and closure is deferred by one frame to allow code to undo it without flicker.\n ImGuiTabItemFlags_SetSelected = 1 << 1, // Trigger flag to programatically make the tab selected when calling BeginTabItem()\n ImGuiTabItemFlags_NoCloseWithMiddleMouseButton = 1 << 2, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.\n ImGuiTabItemFlags_NoPushId = 1 << 3 // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem()\n};\n\n// Flags for ImGui::IsWindowFocused()\nexport { ImGuiFocusedFlags as FocusedFlags };\nexport enum ImGuiFocusedFlags {\n None = 0,\n ChildWindows = 1 << 0, // IsWindowFocused(): Return true if any children of the window is focused\n RootWindow = 1 << 1, // IsWindowFocused(): Test from root window (top most parent of the current hierarchy)\n AnyWindow = 1 << 2, // IsWindowFocused(): Return true if any window is focused\n RootAndChildWindows = RootWindow | ChildWindows,\n}\n\n// Flags for ImGui::IsItemHovered(), ImGui::IsWindowHovered()\nexport { ImGuiHoveredFlags as HoveredFlags };\nexport enum ImGuiHoveredFlags {\n None = 0, // Return true if directly over the item/window, not obstructed by another window, not obstructed by an active popup or modal blocking inputs under them.\n ChildWindows = 1 << 0, // IsWindowHovered() only: Return true if any children of the window is hovered\n RootWindow = 1 << 1, // IsWindowHovered() only: Test from root window (top most parent of the current hierarchy)\n AnyWindow = 1 << 2, // IsWindowHovered() only: Return true if any window is hovered\n AllowWhenBlockedByPopup = 1 << 3, // Return true even if a popup window is normally blocking access to this item/window\n //AllowWhenBlockedByModal = 1 << 4, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet.\n AllowWhenBlockedByActiveItem = 1 << 5, // Return true even if an active item is blocking access to this item/window. Useful for Drag and Drop patterns.\n AllowWhenOverlapped = 1 << 6, // Return true even if the position is overlapped by another window\n AllowWhenDisabled = 1 << 7, // Return true even if the item is disabled\n RectOnly = AllowWhenBlockedByPopup | AllowWhenBlockedByActiveItem | AllowWhenOverlapped,\n RootAndChildWindows = RootWindow | ChildWindows,\n}\n\n// Flags for ImGui::BeginDragDropSource(), ImGui::AcceptDragDropPayload()\nexport { ImGuiDragDropFlags as DragDropFlags };\nexport enum ImGuiDragDropFlags {\n // BeginDragDropSource() flags\n None = 0,\n SourceNoPreviewTooltip = 1 << 0, // By default, a successful call to BeginDragDropSource opens a tooltip so you can display a preview or description of the source contents. This flag disable this behavior.\n SourceNoDisableHover = 1 << 1, // By default, when dragging we clear data so that IsItemHovered() will return true, to avoid subsequent user code submitting tooltips. This flag disable this behavior so you can still call IsItemHovered() on the source item.\n SourceNoHoldToOpenOthers = 1 << 2, // Disable the behavior that allows to open tree nodes and collapsing header by holding over them while dragging a source item.\n SourceAllowNullID = 1 << 3, // Allow items such as Text(), Image() that have no unique identifier to be used as drag source, by manufacturing a temporary identifier based on their window-relative position. This is extremely unusual within the dear imgui ecosystem and so we made it explicit.\n SourceExtern = 1 << 4, // External source (from outside of imgui), won't attempt to read current item/window info. Will always return true. Only one Extern source can be active simultaneously.\n SourceAutoExpirePayload = 1 << 5, // Automatically expire the payload if the source cease to be submitted (otherwise payloads are persisting while being dragged)\n // AcceptDragDropPayload() flags\n AcceptBeforeDelivery = 1 << 10, // AcceptDragDropPayload() will returns true even before the mouse button is released. You can then call IsDelivery() to test if the payload needs to be delivered.\n AcceptNoDrawDefaultRect = 1 << 11, // Do not draw the default highlight rectangle when hovering over target.\n AcceptNoPreviewTooltip = 1 << 12, // Request hiding the BeginDragDropSource tooltip from the BeginDragDropTarget site.\n AcceptPeekOnly = AcceptBeforeDelivery | AcceptNoDrawDefaultRect, // For peeking ahead and inspecting the payload before delivery.\n}\n\n// Standard Drag and Drop payload types. You can define you own payload types using 12-characters long strings. Types starting with '_' are defined by Dear ImGui.\nexport const IMGUI_PAYLOAD_TYPE_COLOR_3F: string = \"_COL3F\"; // float[3] // Standard type for colors, without alpha. User code may use this type.\nexport const IMGUI_PAYLOAD_TYPE_COLOR_4F: string = \"_COL4F\"; // float[4] // Standard type for colors. User code may use this type.\n\n// A primary data type\nexport { ImGuiDataType as DataType };\nexport enum ImGuiDataType {\n S8, // char\n U8, // unsigned char\n S16, // short\n U16, // unsigned short\n S32, // int\n U32, // unsigned int\n S64, // long long, __int64\n U64, // unsigned long long, unsigned __int64\n Float, // float\n Double, // double\n COUNT\n}\n\n// A cardinal direction\nexport { ImGuiDir as Dir };\nexport enum ImGuiDir {\n None = -1,\n Left = 0,\n Right = 1,\n Up = 2,\n Down = 3,\n COUNT\n}\n\n// User fill ImGuiIO.KeyMap[] array with indices into the ImGuiIO.KeysDown[512] array\nexport { ImGuiKey as Key };\nexport enum ImGuiKey {\n Tab,\n LeftArrow,\n RightArrow,\n UpArrow,\n DownArrow,\n PageUp,\n PageDown,\n Home,\n End,\n Insert,\n Delete,\n Backspace,\n Space,\n Enter,\n Escape,\n A, // for text edit CTRL+A: select all\n C, // for text edit CTRL+C: copy\n V, // for text edit CTRL+V: paste\n X, // for text edit CTRL+X: cut\n Y, // for text edit CTRL+Y: redo\n Z, // for text edit CTRL+Z: undo\n COUNT,\n}\n\n// [BETA] Gamepad/Keyboard directional navigation\n// Keyboard: Set io.ConfigFlags |= EnableKeyboard to enable. NewFrame() will automatically fill io.NavInputs[] based on your io.KeyDown[] + io.KeyMap[] arrays.\n// Gamepad: Set io.ConfigFlags |= EnableGamepad to enable. Fill the io.NavInputs[] fields before calling NewFrame(). Note that io.NavInputs[] is cleared by EndFrame().\n// Read instructions in imgui.cpp for more details.\nexport { ImGuiNavInput as NavInput };\nexport enum ImGuiNavInput\n{\n // Gamepad Mapping\n Activate, // activate / open / toggle / tweak value // e.g. Circle (PS4), A (Xbox), B (Switch), Space (Keyboard)\n Cancel, // cancel / close / exit // e.g. Cross (PS4), B (Xbox), A (Switch), Escape (Keyboard)\n Input, // text input / on-screen keyboard // e.g. Triang.(PS4), Y (Xbox), X (Switch), Return (Keyboard)\n Menu, // tap: toggle menu / hold: focus, move, resize // e.g. Square (PS4), X (Xbox), Y (Switch), Alt (Keyboard)\n DpadLeft, // move / tweak / resize window (w/ PadMenu) // e.g. D-pad Left/Right/Up/Down (Gamepads), Arrow keys (Keyboard)\n DpadRight, //\n DpadUp, //\n DpadDown, //\n LStickLeft, // scroll / move window (w/ PadMenu) // e.g. Left Analog Stick Left/Right/Up/Down\n LStickRight, //\n LStickUp, //\n LStickDown, //\n FocusPrev, // next window (w/ PadMenu) // e.g. L1 or L2 (PS4), LB or LT (Xbox), L or ZL (Switch)\n FocusNext, // prev window (w/ PadMenu) // e.g. R1 or R2 (PS4), RB or RT (Xbox), R or ZL (Switch)\n TweakSlow, // slower tweaks // e.g. L1 or L2 (PS4), LB or LT (Xbox), L or ZL (Switch)\n TweakFast, // faster tweaks // e.g. R1 or R2 (PS4), RB or RT (Xbox), R or ZL (Switch)\n\n // [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them.\n // Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) may be directly reading from io.KeyDown[] instead of io.NavInputs[].\n KeyMenu_, // toggle menu // = io.KeyAlt\n KeyTab_, // tab // = Tab key\n KeyLeft_, // move left // = Arrow keys\n KeyRight_, // move right\n KeyUp_, // move up\n KeyDown_, // move down\n COUNT,\n InternalStart_ = KeyMenu_,\n}\n\n// [BETA] Gamepad/Keyboard directional navigation flags, stored in io.ConfigFlags\nexport { ImGuiConfigFlags as ConfigFlags };\nexport enum ImGuiConfigFlags\n{\n None = 0,\n NavEnableKeyboard = 1 << 0, // Master keyboard navigation enable flag. NewFrame() will automatically fill io.NavInputs[] based on io.KeyDown[].\n NavEnableGamepad = 1 << 1, // Master gamepad navigation enable flag. This is mostly to instruct your imgui back-end to fill io.NavInputs[].\n NavEnableSetMousePos = 1 << 2, // Request navigation to allow moving the mouse cursor. May be useful on TV/console systems where moving a virtual mouse is awkward. Will update io.MousePos and set io.WantMoveMouse=true. If enabled you MUST honor io.WantMoveMouse requests in your binding, otherwise ImGui will react as if the mouse is jumping around back and forth.\n NavNoCaptureKeyboard = 1 << 3, // Do not set the io.WantCaptureKeyboard flag with io.NavActive is set.\n NoMouse = 1 << 4, // Instruct imgui to clear mouse position/buttons in NewFrame(). This allows ignoring the mouse information back-end\n NoMouseCursorChange = 1 << 5, // Instruct back-end to not alter mouse cursor shape and visibility.\n\n IsSRGB = 1 << 20, // Application is SRGB-aware.\n IsTouchScreen = 1 << 21 // Application is using a touch screen instead of a mouse.\n}\n\n// Enumeration for PushStyleColor() / PopStyleColor()\nexport { ImGuiCol as Col };\nexport enum ImGuiCol {\n Text,\n TextDisabled,\n WindowBg, // Background of normal windows\n ChildBg, // Background of child windows\n PopupBg, // Background of popups, menus, tooltips windows\n Border,\n BorderShadow,\n FrameBg, // Background of checkbox, radio button, plot, slider, text input\n FrameBgHovered,\n FrameBgActive,\n TitleBg,\n TitleBgActive,\n TitleBgCollapsed,\n MenuBarBg,\n ScrollbarBg,\n ScrollbarGrab,\n ScrollbarGrabHovered,\n ScrollbarGrabActive,\n CheckMark,\n SliderGrab,\n SliderGrabActive,\n Button,\n ButtonHovered,\n ButtonActive,\n Header,\n HeaderHovered,\n HeaderActive,\n Separator,\n SeparatorHovered,\n SeparatorActive,\n ResizeGrip,\n ResizeGripHovered,\n ResizeGripActive,\n Tab,\n TabHovered,\n TabActive,\n TabUnfocused,\n TabUnfocusedActive,\n PlotLines,\n PlotLinesHovered,\n PlotHistogram,\n PlotHistogramHovered,\n TextSelectedBg,\n DragDropTarget,\n NavHighlight, // Gamepad/keyboard: current highlighted item\n NavWindowingHighlight, // Highlight window when using CTRL+TAB\n NavWindowingDimBg, // Darken/colorize entire screen behind the CTRL+TAB window list, when active\n ModalWindowDimBg, // Darken/colorize entire screen behind a modal window, when one is active\n COUNT,\n}\n\n// Enumeration for PushStyleVar() / PopStyleVar() to temporarily modify the ImGuiStyle structure.\n// NB: the enum only refers to fields of ImGuiStyle which makes sense to be pushed/popped inside UI code. During initialization, feel free to just poke into ImGuiStyle directly.\n// NB: if changing this enum, you need to update the associated internal table GStyleVarInfo[] accordingly. This is where we link enum values to members offset/type.\nexport { ImGuiStyleVar as StyleVar };\nexport enum ImGuiStyleVar {\n // Enum name ......................// Member in ImGuiStyle structure (see ImGuiStyle for descriptions)\n Alpha, // float Alpha\n WindowPadding, // ImVec2 WindowPadding\n WindowRounding, // float WindowRounding\n WindowBorderSize, // float WindowBorderSize\n WindowMinSize, // ImVec2 WindowMinSize\n WindowTitleAlign, // ImVec2 WindowTitleAlign\n // WindowMenuButtonPosition, // ImGuiDir WindowMenuButtonPosition\n ChildRounding, // float ChildRounding\n ChildBorderSize, // float ChildBorderSize\n PopupRounding, // float PopupRounding\n PopupBorderSize, // float PopupBorderSize\n FramePadding, // ImVec2 FramePadding\n FrameRounding, // float FrameRounding\n FrameBorderSize, // float FrameBorderSize\n ItemSpacing, // ImVec2 ItemSpacing\n ItemInnerSpacing, // ImVec2 ItemInnerSpacing\n IndentSpacing, // float IndentSpacing\n ScrollbarSize, // float ScrollbarSize\n ScrollbarRounding, // float ScrollbarRounding\n GrabMinSize, // float GrabMinSize\n GrabRounding, // float GrabRounding\n TabRounding, // float TabRounding\n ButtonTextAlign, // ImVec2 ButtonTextAlign\n SelectableTextAlign, // ImVec2 SelectableTextAlign\n Count_, COUNT = Count_,\n}\n\n// Back-end capabilities flags stored in io.BackendFlags. Set by imgui_impl_xxx or custom back-end.\nexport { ImGuiBackendFlags as BackendFlags };\nexport enum ImGuiBackendFlags {\n None = 0,\n HasGamepad = 1 << 0, // Back-end has a connected gamepad.\n HasMouseCursors = 1 << 1, // Back-end can honor GetMouseCursor() values and change the OS cursor shape.\n HasSetMousePos = 1 << 2, // Back-end can honor io.WantSetMousePos and reposition the mouse (only used if ImGuiConfigFlags_NavEnableSetMousePos is set).\n RendererHasVtxOffset = 1 << 3, // Back-end Renderer supports ImDrawCmd::VtxOffset. This enables output of large meshes (64K+ vertices) while still using 16-bits indices.\n}\n\n// Enumeration for ColorEdit3() / ColorEdit4() / ColorPicker3() / ColorPicker4() / ColorButton()\nexport { ImGuiColorEditFlags as ColorEditFlags };\nexport enum ImGuiColorEditFlags {\n None = 0,\n NoAlpha = 1 << 1, // // ColorEdit, ColorPicker, ColorButton: ignore Alpha component (read 3 components from the input pointer).\n NoPicker = 1 << 2, // // ColorEdit: disable picker when clicking on colored square.\n NoOptions = 1 << 3, // // ColorEdit: disable toggling options menu when right-clicking on inputs/small preview.\n NoSmallPreview = 1 << 4, // // ColorEdit, ColorPicker: disable colored square preview next to the inputs. (e.g. to show only the inputs)\n NoInputs = 1 << 5, // // ColorEdit, ColorPicker: disable inputs sliders/text widgets (e.g. to show only the small preview colored square).\n NoTooltip = 1 << 6, // // ColorEdit, ColorPicker, ColorButton: disable tooltip when hovering the preview.\n NoLabel = 1 << 7, // // ColorEdit, ColorPicker: disable display of inline text label (the label is still forwarded to the tooltip and picker).\n NoSidePreview = 1 << 8, // // ColorPicker: disable bigger color preview on right side of the picker, use small colored square preview instead.\n NoDragDrop = 1 << 9, // // ColorEdit: disable drag and drop target. ColorButton: disable drag and drop source.\n // User Options (right-click on widget to change some of them). You can set application defaults using SetColorEditOptions(). The idea is that you probably don't want to override them in most of your calls, let the user choose and/or call SetColorEditOptions() during startup.\n AlphaBar = 1 << 16, // // ColorEdit, ColorPicker: show vertical alpha bar/gradient in picker.\n AlphaPreview = 1 << 17, // // ColorEdit, ColorPicker, ColorButton: display preview as a transparent color over a checkerboard, instead of opaque.\n AlphaPreviewHalf= 1 << 18, // // ColorEdit, ColorPicker, ColorButton: display half opaque / half checkerboard, instead of opaque.\n HDR = 1 << 19, // // (WIP) ColorEdit: Currently only disable 0.0f..1.0f limits in RGBA edition (note: you probably want to use Float flag as well).\n DisplayRGB = 1 << 20, // [Inputs] // ColorEdit: choose one among RGB/HSV/HEX. ColorPicker: choose any combination using RGB/HSV/HEX.\n DisplayHSV = 1 << 21, // [Inputs] // \"\n DisplayHex = 1 << 22, // [Inputs] // \"\n Uint8 = 1 << 23, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0..255.\n Float = 1 << 24, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0.0f..1.0f floats instead of 0..255 integers. No round-trip of value via integers.\n PickerHueBar = 1 << 25, // [PickerMode] // ColorPicker: bar for Hue, rectangle for Sat/Value.\n PickerHueWheel = 1 << 26, // [PickerMode] // ColorPicker: wheel for Hue, triangle for Sat/Value.\n InputRGB = 1 << 27, // [Input] // ColorEdit, ColorPicker: input and output data in RGB format.\n InputHSV = 1 << 28, // [Input] // ColorEdit, ColorPicker: input and output data in HSV format.\n\n // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to\n // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup.\n _OptionsDefault = Uint8|DisplayRGB|InputRGB|PickerHueBar,\n\n // [Internal] Masks\n _DisplayMask = DisplayRGB|DisplayHSV|DisplayHex,\n _DataTypeMask = Uint8|Float,\n _PickerMask = PickerHueWheel|PickerHueBar,\n _InputMask = InputRGB|InputHSV,\n}\n\n// Enumeration for GetMouseCursor()\nexport { ImGuiMouseCursor as MouseCursor };\nexport enum ImGuiMouseCursor {\n None = -1,\n Arrow = 0,\n TextInput, // When hovering over InputText, etc.\n ResizeAll, // (Unused by imgui functions)\n ResizeNS, // When hovering over an horizontal border\n ResizeEW, // When hovering over a vertical border or a column\n ResizeNESW, // When hovering over the bottom-left corner of a window\n ResizeNWSE, // When hovering over the bottom-right corner of a window\n Hand, // (Unused by imgui functions. Use for e.g. hyperlinks)\n Count_, COUNT = Count_,\n}\n\n// Condition for ImGui::SetWindow***(), SetNextWindow***(), SetNextTreeNode***() functions\n// All those functions treat 0 as a shortcut to Always. From the point of view of the user use this as an enum (don't combine multiple values into flags).\nexport { ImGuiCond as Cond };\nexport enum ImGuiCond {\n Always = 1 << 0, // Set the variable\n Once = 1 << 1, // Set the variable once per runtime session (only the first call with succeed)\n FirstUseEver = 1 << 2, // Set the variable if the window has no saved data (if doesn't exist in the .ini file)\n Appearing = 1 << 3, // Set the variable if the window is appearing after being hidden/inactive (or the first time)\n}\n\nexport { ImDrawCornerFlags as wCornerFlags };\nexport enum ImDrawCornerFlags\n{\n TopLeft = 1 << 0, // 0x1\n TopRight = 1 << 1, // 0x2\n BotLeft = 1 << 2, // 0x4\n BotRight = 1 << 3, // 0x8\n Top = TopLeft | TopRight, // 0x3\n Bot = BotLeft | BotRight, // 0xC\n Left = TopLeft | BotLeft, // 0x5\n Right = TopRight | BotRight, // 0xA\n All = 0xF, // In your function calls you may use ~0 (= all bits sets) instead of All, as a convenience\n}\n\nexport { ImDrawListFlags as wListFlags };\nexport enum ImDrawListFlags\n{\n None = 0,\n AntiAliasedLines = 1 << 0,\n AntiAliasedFill = 1 << 1,\n}\n\nexport { ImU32 } from \"./bind-imgui\";\n\nexport { interface_ImVec2 } from \"./bind-imgui\";\nexport { reference_ImVec2 } from \"./bind-imgui\";\n\nexport class ImVec2 implements Bind.interface_ImVec2 {\n public static readonly ZERO: Readonly = new ImVec2(0.0, 0.0);\n public static readonly UNIT: Readonly = new ImVec2(1.0, 1.0);\n public static readonly UNIT_X: Readonly = new ImVec2(1.0, 0.0);\n public static readonly UNIT_Y: Readonly = new ImVec2(0.0, 1.0);\n\n constructor(public x: number = 0.0, public y: number = 0.0) {}\n\n public Set(x: number, y: number): this {\n this.x = x;\n this.y = y;\n return this;\n }\n\n public Copy(other: Readonly): this {\n this.x = other.x;\n this.y = other.y;\n return this;\n }\n\n public Equals(other: Readonly): boolean {\n if (this.x !== other.x) { return false; }\n if (this.y !== other.y) { return false; }\n return true;\n }\n}\n\nexport { interface_ImVec4 } from \"./bind-imgui\";\nexport { reference_ImVec4 } from \"./bind-imgui\";\n\nexport class ImVec4 implements Bind.interface_ImVec4 {\n public static readonly ZERO: Readonly = new ImVec4(0.0, 0.0, 0.0, 0.0);\n public static readonly UNIT: Readonly = new ImVec4(1.0, 1.0, 1.0, 1.0);\n public static readonly UNIT_X: Readonly = new ImVec4(1.0, 0.0, 0.0, 0.0);\n public static readonly UNIT_Y: Readonly = new ImVec4(0.0, 1.0, 0.0, 0.0);\n public static readonly UNIT_Z: Readonly = new ImVec4(0.0, 0.0, 1.0, 0.0);\n public static readonly UNIT_W: Readonly = new ImVec4(0.0, 0.0, 0.0, 1.0);\n public static readonly BLACK: Readonly = new ImVec4(0.0, 0.0, 0.0, 1.0);\n public static readonly WHITE: Readonly = new ImVec4(1.0, 1.0, 1.0, 1.0);\n\n constructor(public x: number = 0.0, public y: number = 0.0, public z: number = 0.0, public w: number = 1.0) {}\n\n public Set(x: number, y: number, z: number, w: number): this {\n this.x = x;\n this.y = y;\n this.z = z;\n this.w = w;\n return this;\n }\n\n public Copy(other: Readonly): this {\n this.x = other.x;\n this.y = other.y;\n this.z = other.z;\n this.w = other.w;\n return this;\n }\n\n public Equals(other: Readonly): boolean {\n if (this.x !== other.x) { return false; }\n if (this.y !== other.y) { return false; }\n if (this.z !== other.z) { return false; }\n if (this.w !== other.w) { return false; }\n return true;\n }\n}\n\n//-----------------------------------------------------------------------------\n// Helpers\n//-----------------------------------------------------------------------------\n\n// Lightweight std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug).\n// Our implementation does NOT call C++ constructors/destructors. This is intentional and we do not require it. Do not use this class as a straight std::vector replacement in your code!\nexport class ImVector extends Array\n{\n public get Size(): number { return this.length; }\n public Data: T[] = this;\n public empty(): boolean { return this.length === 0; }\n public clear(): void { this.length = 0; }\n public pop_back(): T | undefined { return this.pop(); }\n public push_back(value: T): void { this.push(value); }\n // public:\n // int Size;\n // int Capacity;\n // T* Data;\n\n // typedef T value_type;\n // typedef value_type* iterator;\n // typedef const value_type* const_iterator;\n\n // inline ImVector() { Size = Capacity = 0; Data = NULL; }\n // inline ~ImVector() { if (Data) ImGui::MemFree(Data); }\n\n // inline bool empty() const { return Size == 0; }\n // inline int size() const { return Size; }\n // inline int capacity() const { return Capacity; }\n\n // inline value_type& operator[](int i) { IM_ASSERT(i < Size); return Data[i]; }\n // inline const value_type& operator[](int i) const { IM_ASSERT(i < Size); return Data[i]; }\n\n // inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } }\n // inline iterator begin() { return Data; }\n // inline const_iterator begin() const { return Data; }\n // inline iterator end() { return Data + Size; }\n // inline const_iterator end() const { return Data + Size; }\n // inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; }\n // inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; }\n // inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; }\n // inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; }\n // inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; }\n\n // inline int _grow_capacity(int size) const { int new_capacity = Capacity ? (Capacity + Capacity/2) : 8; return new_capacity > size ? new_capacity : size; }\n\n // inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; }\n // inline void resize(int new_size, const T& v){ if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) Data[n] = v; Size = new_size; }\n // inline void reserve(int new_capacity)\n // {\n // if (new_capacity <= Capacity)\n // return;\n // T* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T));\n // if (Data)\n // memcpy(new_data, Data, (size_t)Size * sizeof(T));\n // ImGui::MemFree(Data);\n // Data = new_data;\n // Capacity = new_capacity;\n // }\n\n // inline void push_back(const value_type& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); Data[Size++] = v; }\n // inline void pop_back() { IM_ASSERT(Size > 0); Size--; }\n // inline void push_front(const value_type& v) { if (Size == 0) push_back(v); else insert(Data, v); }\n\n // inline iterator erase(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; }\n // inline iterator erase(const_iterator it, const_iterator it_last){ IM_ASSERT(it >= Data && it < Data+Size && it_last > it && it_last <= Data+Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - count) * sizeof(value_type)); Size -= (int)count; return Data + off; }\n // inline iterator erase_unsorted(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; if (it < Data+Size-1) memcpy(Data + off, Data + Size - 1, sizeof(value_type)); Size--; return Data + off; }\n // inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= Data && it <= Data+Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; }\n // inline bool contains(const value_type& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; }\n}\n\n// Helper: Parse and apply text filters. In format \"aaaaa[,bbbb][,ccccc]\"\nexport class ImGuiTextFilter\n{\n // IMGUI_API ImGuiTextFilter(const char* default_filter = \"\");\n constructor(default_filter: string = \"\") {\n if (default_filter)\n {\n // ImStrncpy(InputBuf, default_filter, IM_ARRAYSIZE(InputBuf));\n this.InputBuf.buffer = default_filter;\n this.Build();\n }\n else\n {\n // InputBuf[0] = 0;\n this.InputBuf.buffer = \"\";\n this.CountGrep = 0;\n }\n }\n // IMGUI_API bool Draw(const char* label = \"Filter (inc,-exc)\", float width = 0.0f); // Helper calling InputText+Build\n public Draw(label: string = \"Filter (inc,-exc)\", width: number = 0.0): boolean {\n if (width !== 0.0)\n bind.PushItemWidth(width);\n const value_changed: boolean = InputText(label, this.InputBuf, IM_ARRAYSIZE(this.InputBuf));\n if (width !== 0.0)\n bind.PopItemWidth();\n if (value_changed)\n this.Build();\n return value_changed;\n }\n // IMGUI_API bool PassFilter(const char* text, const char* text_end = NULL) const;\n public PassFilter(text: string, text_end: number | null = null): boolean {\n // if (Filters.empty())\n // return true;\n\n // if (text == NULL)\n // text = \"\";\n\n // for (int i = 0; i != Filters.Size; i++)\n // {\n // const TextRange& f = Filters[i];\n // if (f.empty())\n // continue;\n // if (f.front() == '-')\n // {\n // // Subtract\n // if (ImStristr(text, text_end, f.begin()+1, f.end()) != NULL)\n // return false;\n // }\n // else\n // {\n // // Grep\n // if (ImStristr(text, text_end, f.begin(), f.end()) != NULL)\n // return true;\n // }\n // }\n\n // Implicit * grep\n if (this.CountGrep === 0)\n return true;\n\n return false;\n }\n // IMGUI_API void Build();\n public Build(): void {\n // Filters.resize(0);\n // TextRange input_range(InputBuf, InputBuf+strlen(InputBuf));\n // input_range.split(',', Filters);\n\n this.CountGrep = 0;\n // for (int i = 0; i != Filters.Size; i++)\n // {\n // Filters[i].trim_blanks();\n // if (Filters[i].empty())\n // continue;\n // if (Filters[i].front() != '-')\n // CountGrep += 1;\n // }\n }\n // void Clear() { InputBuf[0] = 0; Build(); }\n public Clear(): void { this.InputBuf.buffer = \"\"; this.Build(); }\n // bool IsActive() const { return !Filters.empty(); }\n public IsActive(): boolean { return false; }\n\n // [Internal]\n // struct TextRange\n // {\n // const char* b;\n // const char* e;\n\n // TextRange() { b = e = NULL; }\n // TextRange(const char* _b, const char* _e) { b = _b; e = _e; }\n // const char* begin() const { return b; }\n // const char* end() const { return e; }\n // bool empty() const { return b == e; }\n // char front() const { return *b; }\n // static bool is_blank(char c) { return c == ' ' || c == '\\t'; }\n // void trim_blanks() { while (b < e && is_blank(*b)) b++; while (e > b && is_blank(*(e-1))) e--; }\n // IMGUI_API void split(char separator, ImVector& out);\n // };\n\n // char InputBuf[256];\n public InputBuf: ImStringBuffer = new ImStringBuffer(256);\n // ImVector Filters;\n // int CountGrep;\n public CountGrep: number = 0;\n}\n\n// Helper: Text buffer for logging/accumulating text\nexport class ImGuiTextBuffer\n{\n // ImVector Buf;\n public Buf: string = \"\";\n public begin(): string { return this.Buf; }\n public size(): number { return this.Buf.length; }\n public clear(): void { this.Buf = \"\"; }\n public append(text: string): void { this.Buf += text; }\n\n // ImGuiTextBuffer() { Buf.push_back(0); }\n // inline char operator[](int i) { return Buf.Data[i]; }\n // const char* begin() const { return &Buf.front(); }\n // const char* end() const { return &Buf.back(); } // Buf is zero-terminated, so end() will point on the zero-terminator\n // int size() const { return Buf.Size - 1; }\n // bool empty() { return Buf.Size <= 1; }\n // void clear() { Buf.clear(); Buf.push_back(0); }\n // void reserve(int capacity) { Buf.reserve(capacity); }\n // const char* c_str() const { return Buf.Data; }\n // IMGUI_API void appendf(const char* fmt, ...) IM_FMTARGS(2);\n // IMGUI_API void appendfv(const char* fmt, va_list args) IM_FMTLIST(2);\n}\n\n// Helper: Simple Key->value storage\n// Typically you don't have to worry about this since a storage is held within each Window.\n// We use it to e.g. store collapse state for a tree (Int 0/1), store color edit options.\n// This is optimized for efficient reading (dichotomy into a contiguous buffer), rare writing (typically tied to user interactions)\n// You can use it as custom user storage for temporary values. Declare your own storage if, for example:\n// - You want to manipulate the open/close state of a particular sub-tree in your interface (tree node uses Int 0/1 to store their state).\n// - You want to store custom debug data easily without adding or editing structures in your code (probably not efficient, but convenient)\n// Types are NOT stored, so it is up to you to make sure your Key don't collide with different types.\nexport class ImGuiStorage\n{\n // struct Pair\n // {\n // ImGuiID key;\n // union { int val_i; float val_f; void* val_p; };\n // Pair(ImGuiID _key, int _val_i) { key = _key; val_i = _val_i; }\n // Pair(ImGuiID _key, float _val_f) { key = _key; val_f = _val_f; }\n // Pair(ImGuiID _key, void* _val_p) { key = _key; val_p = _val_p; }\n // };\n // ImVector Data;\n\n // - Get***() functions find pair, never add/allocate. Pairs are sorted so a query is O(log N)\n // - Set***() functions find pair, insertion on demand if missing.\n // - Sorted insertion is costly, paid once. A typical frame shouldn't need to insert any new pair.\n // void Clear() { Data.clear(); }\n // IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const;\n // IMGUI_API void SetInt(ImGuiID key, int val);\n // IMGUI_API bool GetBool(ImGuiID key, bool default_val = false) const;\n // IMGUI_API void SetBool(ImGuiID key, bool val);\n // IMGUI_API float GetFloat(ImGuiID key, float default_val = 0.0f) const;\n // IMGUI_API void SetFloat(ImGuiID key, float val);\n // IMGUI_API void* GetVoidPtr(ImGuiID key) const; // default_val is NULL\n // IMGUI_API void SetVoidPtr(ImGuiID key, void* val);\n\n // - Get***Ref() functions finds pair, insert on demand if missing, return pointer. Useful if you intend to do Get+Set.\n // - References are only valid until a new value is added to the storage. Calling a Set***() function or a Get***Ref() function invalidates the pointer.\n // - A typical use case where this is convenient for quick hacking (e.g. add storage during a live Edit&Continue session if you can't modify existing struct)\n // float* pvar = ImGui::GetFloatRef(key); ImGui::SliderFloat(\"var\", pvar, 0, 100.0f); some_var += *pvar;\n // IMGUI_API int* GetIntRef(ImGuiID key, int default_val = 0);\n // IMGUI_API bool* GetBoolRef(ImGuiID key, bool default_val = false);\n // IMGUI_API float* GetFloatRef(ImGuiID key, float default_val = 0.0f);\n // IMGUI_API void** GetVoidPtrRef(ImGuiID key, void* default_val = NULL);\n\n // Use on your own storage if you know only integer are being stored (open/close all tree nodes)\n // IMGUI_API void SetAllInt(int val);\n\n // For quicker full rebuild of a storage (instead of an incremental one), you may add all your contents and then sort once.\n // IMGUI_API void BuildSortByKey();\n}\n\n// Data payload for Drag and Drop operations\nexport interface ImGuiPayload\n{\n // Members\n // void* Data; // Data (copied and owned by dear imgui)\n Data: T;\n // int DataSize; // Data size\n\n // [Internal]\n // ImGuiID SourceId; // Source item id\n // ImGuiID SourceParentId; // Source parent id (if available)\n // int DataFrameCount; // Data timestamp\n // char DataType[12 + 1]; // Data type tag (short user-supplied string, 12 characters max)\n // bool Preview; // Set when AcceptDragDropPayload() was called and mouse has been hovering the target item (nb: handle overlapping drag targets)\n // bool Delivery; // Set when AcceptDragDropPayload() was called and mouse button is released over the target item.\n\n // ImGuiPayload() { Clear(); }\n // void Clear() { SourceId = SourceParentId = 0; Data = NULL; DataSize = 0; memset(DataType, 0, sizeof(DataType)); DataFrameCount = -1; Preview = Delivery = false; }\n // bool IsDataType(const char* type) const { return DataFrameCount != -1 && strcmp(type, DataType) == 0; }\n // bool IsPreview() const { return Preview; }\n // bool IsDelivery() const { return Delivery; }\n}\n\n// Helpers macros to generate 32-bits encoded colors\nexport const IM_COL32_R_SHIFT: number = config.IMGUI_USE_BGRA_PACKED_COLOR ? 16 : 0;\nexport const IM_COL32_G_SHIFT: number = 8;\nexport const IM_COL32_B_SHIFT: number = config.IMGUI_USE_BGRA_PACKED_COLOR ? 0 : 16;\nexport const IM_COL32_A_SHIFT: number = 24;\nexport const IM_COL32_A_MASK: number = 0xFF000000;\nexport function IM_COL32(R: number, G: number, B: number, A: number = 255): number {\n return ((A << IM_COL32_A_SHIFT) | (B << IM_COL32_B_SHIFT) | (G << IM_COL32_G_SHIFT) | (R << IM_COL32_R_SHIFT)) >>> 0;\n}\nexport const IM_COL32_WHITE: number = IM_COL32(255, 255, 255, 255); // Opaque white = 0xFFFFFFFF\nexport const IM_COL32_BLACK: number = IM_COL32(0, 0, 0, 255); // Opaque black\nexport const IM_COL32_BLACK_TRANS: number = IM_COL32(0, 0, 0, 0); // Transparent black = 0x00000000\n\n// ImColor() helper to implicity converts colors to either ImU32 (packed 4x1 byte) or ImVec4 (4x1 float)\n// Prefer using IM_COL32() macros if you want a guaranteed compile-time ImU32 for usage with ImDrawList API.\n// **Avoid storing ImColor! Store either u32 of ImVec4. This is not a full-featured color class. MAY OBSOLETE.\n// **None of the ImGui API are using ImColor directly but you can use it as a convenience to pass colors in either ImU32 or ImVec4 formats. Explicitly cast to ImU32 or ImVec4 if needed.\nexport class ImColor\n{\n // ImVec4 Value;\n public Value: ImVec4 = new ImVec4();\n\n // ImColor() { Value.x = Value.y = Value.z = Value.w = 0.0f; }\n // ImColor(int r, int g, int b, int a = 255) { float sc = 1.0f/255.0f; Value.x = (float)r * sc; Value.y = (float)g * sc; Value.z = (float)b * sc; Value.w = (float)a * sc; }\n // ImColor(ImU32 rgba) { float sc = 1.0f/255.0f; Value.x = (float)((rgba>>IM_COL32_R_SHIFT)&0xFF) * sc; Value.y = (float)((rgba>>IM_COL32_G_SHIFT)&0xFF) * sc; Value.z = (float)((rgba>>IM_COL32_B_SHIFT)&0xFF) * sc; Value.w = (float)((rgba>>IM_COL32_A_SHIFT)&0xFF) * sc; }\n // ImColor(float r, float g, float b, float a = 1.0f) { Value.x = r; Value.y = g; Value.z = b; Value.w = a; }\n // ImColor(const ImVec4& col) { Value = col; }\n constructor();\n constructor(r: number, g: number, b: number);\n constructor(r: number, g: number, b: number, a: number);\n constructor(rgba: Bind.ImU32);\n constructor(col: Readonly);\n constructor(r: number | Bind.ImU32 | Readonly = 0.0, g: number = 0.0, b: number = 0.0, a: number = 1.0) {\n if (typeof(r) === \"number\") {\n if (r > 255 && g === 0.0 && b === 0.0 && a === 1.0) {\n this.Value.x = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_R_SHIFT) & 0xFF) / 255));\n this.Value.y = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_G_SHIFT) & 0xFF) / 255));\n this.Value.z = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_B_SHIFT) & 0xFF) / 255));\n this.Value.w = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_A_SHIFT) & 0xFF) / 255));\n } else if (r <= 1.0 && g <= 1.0 && b <= 1.0 && a <= 1.0) {\n this.Value.x = Math.max(0.0, r);\n this.Value.y = Math.max(0.0, g);\n this.Value.z = Math.max(0.0, b);\n this.Value.w = Math.max(0.0, a);\n } else {\n this.Value.x = Math.max(0.0, Math.min(1.0, r / 255));\n this.Value.y = Math.max(0.0, Math.min(1.0, g / 255));\n this.Value.z = Math.max(0.0, Math.min(1.0, b / 255));\n if (a <= 1.0) {\n this.Value.w = Math.max(0.0, a);\n } else {\n this.Value.w = Math.max(0.0, Math.min(1.0, a / 255));\n }\n }\n } else {\n this.Value.Copy(r);\n }\n }\n // inline operator ImU32() const { return ImGui::ColorConvertFloat4ToU32(Value); }\n public toImU32(): Bind.ImU32 { return ColorConvertFloat4ToU32(this.Value); }\n // inline operator ImVec4() const { return Value; }\n public toImVec4(): ImVec4 { return this.Value; }\n\n // FIXME-OBSOLETE: May need to obsolete/cleanup those helpers.\n // inline void SetHSV(float h, float s, float v, float a = 1.0f){ ImGui::ColorConvertHSVtoRGB(h, s, v, Value.x, Value.y, Value.z); Value.w = a; }\n public SetHSV(h: number, s: number, v: number, a: number = 1.0): void {\n const ref_r: Bind.ImScalar = [ this.Value.x ];\n const ref_g: Bind.ImScalar = [ this.Value.y ];\n const ref_b: Bind.ImScalar = [ this.Value.z ];\n ColorConvertHSVtoRGB(h, s, v, ref_r, ref_g, ref_b);\n this.Value.x = ref_r[0];\n this.Value.y = ref_g[0];\n this.Value.z = ref_b[0];\n this.Value.w = a;\n }\n // static ImColor HSV(float h, float s, float v, float a = 1.0f) { float r,g,b; ImGui::ColorConvertHSVtoRGB(h, s, v, r, g, b); return ImColor(r,g,b,a); }\n public static HSV(h: number, s: number, v: number, a: number = 1.0): ImColor {\n const color = new ImColor();\n color.SetHSV(h, s, v, a);\n return color;\n }\n}\n\nexport const ImGuiInputTextDefaultSize: number = 128;\n\nexport type ImGuiInputTextCallback = (data: ImGuiInputTextCallbackData) => number;\n\n// Shared state of InputText(), passed to callback when a ImGuiInputTextFlags_Callback* flag is used and the corresponding callback is triggered.\nexport class ImGuiInputTextCallbackData {\n constructor(public readonly native: Bind.reference_ImGuiInputTextCallbackData, public readonly UserData: any) {}\n\n // ImGuiInputTextFlags EventFlag; // One of ImGuiInputTextFlags_Callback* // Read-only\n public get EventFlag(): ImGuiInputTextFlags { return this.native.EventFlag; }\n // ImGuiInputTextFlags Flags; // What user passed to InputText() // Read-only\n public get Flags(): ImGuiInputTextFlags { return this.native.Flags; }\n // void* UserData; // What user passed to InputText() // Read-only\n // public get UserData(): any { return this.native.UserData; }\n\n // CharFilter event:\n // ImWchar EventChar; // Character input // Read-write (replace character or set to zero)\n public get EventChar(): Bind.ImWchar { return this.native.EventChar; }\n public set EventChar(value: Bind.ImWchar) { this.native.EventChar = value; }\n\n // Completion,History,Always events:\n // If you modify the buffer contents make sure you update 'BufTextLen' and set 'BufDirty' to true.\n // ImGuiKey EventKey; // Key pressed (Up/Down/TAB) // Read-only\n public get EventKey(): ImGuiKey { return this.native.EventKey; }\n // char* Buf; // Current text buffer // Read-write (pointed data only, can't replace the actual pointer)\n public get Buf(): string { return this.native.Buf; }\n public set Buf(value: string) { this.native.Buf = value; }\n // int BufTextLen; // Current text length in bytes // Read-write\n public get BufTextLen(): number { return this.native.BufTextLen; }\n public set BufTextLen(value: number) { this.native.BufTextLen = value; }\n // int BufSize; // Maximum text length in bytes // Read-only\n public get BufSize(): number { return this.native.BufSize; }\n // bool BufDirty; // Set if you modify Buf/BufTextLen!! // Write\n public set BufDirty(value: boolean) { this.native.BufDirty = value; }\n // int CursorPos; // // Read-write\n public get CursorPos(): number { return this.native.CursorPos; }\n public set CursorPos(value: number) { this.native.CursorPos = value; }\n // int SelectionStart; // // Read-write (== to SelectionEnd when no selection)\n public get SelectionStart(): number { return this.native.SelectionStart; }\n public set SelectionStart(value: number) { this.native.SelectionStart = value; }\n // int SelectionEnd; // // Read-write\n public get SelectionEnd(): number { return this.native.SelectionEnd; }\n public set SelectionEnd(value: number) { this.native.SelectionEnd = value; }\n\n // NB: Helper functions for text manipulation. Calling those function loses selection.\n // IMGUI_API void DeleteChars(int pos, int bytes_count);\n public DeleteChars(pos: number, bytes_count: number): void { return this.native.DeleteChars(pos, bytes_count); }\n // IMGUI_API void InsertChars(int pos, const char* text, const char* text_end = NULL);\n public InsertChars(pos: number, text: string, text_end: number | null = null): void { return this.native.InsertChars(pos, text_end !== null ? text.substring(0, text_end) : text); }\n // bool HasSelection() const { return SelectionStart != SelectionEnd; }\n public HasSelection(): boolean { return this.native.HasSelection(); }\n}\n\nexport type ImGuiSizeConstraintCallback = (data: ImGuiSizeCallbackData) => void;\n\n// Resizing callback data to apply custom constraint. As enabled by SetNextWindowSizeConstraints(). Callback is called during the next Begin().\n// NB: For basic min/max size constraint on each axis you don't need to use the callback! The SetNextWindowSizeConstraints() parameters are enough.\nexport class ImGuiSizeCallbackData {\n constructor(public readonly native: Bind.reference_ImGuiSizeCallbackData, public readonly UserData: any) {}\n\n get Pos(): Readonly { return this.native.Pos; }\n get CurrentSize(): Readonly { return this.native.CurrentSize; }\n get DesiredSize(): Bind.interface_ImVec2 { return this.native.DesiredSize; }\n}\n\nexport class ImGuiListClipper\n{\n private native: Bind.ImGuiListClipper;\n\n public get StartPosY(): number { return this.native.StartPosY; }\n public get ItemsHeight(): number { return this.native.ItemsHeight; }\n public get ItemsCount(): number { return this.native.ItemsCount; }\n public get StepNo(): number { return this.native.StepNo; }\n public get DisplayStart(): number { return this.native.DisplayStart; }\n public get DisplayEnd(): number { return this.native.DisplayEnd; }\n\n // items_count: Use -1 to ignore (you can call Begin later). Use INT_MAX if you don't know how many items you have (in which case the cursor won't be advanced in the final step).\n // items_height: Use -1.0f to be calculated automatically on first step. Otherwise pass in the distance between your items, typically GetTextLineHeightWithSpacing() or GetFrameHeightWithSpacing().\n // If you don't specify an items_height, you NEED to call Step(). If you specify items_height you may call the old Begin()/End() api directly, but prefer calling Step().\n // ImGuiListClipper(int items_count = -1, float items_height = -1.0f) { Begin(items_count, items_height); } // NB: Begin() initialize every fields (as we allow user to call Begin/End multiple times on a same instance if they want).\n constructor(items_count: number = -1, items_height: number = -1.0) {\n this.native = new bind.ImGuiListClipper(items_count, items_height);\n }\n // ~ImGuiListClipper() { IM_ASSERT(ItemsCount == -1); } // Assert if user forgot to call End() or Step() until false.\n public delete(): void {\n if (this.native) {\n this.native.delete();\n delete this.native;\n }\n }\n\n // IMGUI_API bool Step(); // Call until it returns false. The DisplayStart/DisplayEnd fields will be set and you can process/draw those items.\n public Step(): boolean {\n if (!this.native) { throw new Error(); }\n const busy: boolean = this.native.Step();\n if (!busy) {\n this.delete();\n }\n return busy;\n }\n // IMGUI_API void Begin(int items_count, float items_height = -1.0f); // Automatically called by constructor if you passed 'items_count' or by Step() in Step 1.\n public Begin(items_count: number, items_height: number = -1.0): void {\n if (!this.native) {\n this.native = new Bind.ImGuiListClipper(items_count, items_height);\n }\n this.native.Begin(items_count, items_height);\n }\n // IMGUI_API void End(); // Automatically called on the last call of Step() that returns false.\n public End(): void {\n if (!this.native) { throw new Error(); }\n this.native.End();\n this.delete();\n }\n}\n\n//-----------------------------------------------------------------------------\n// Draw List\n// Hold a series of drawing commands. The user provides a renderer for ImDrawData which essentially contains an array of ImDrawList.\n//-----------------------------------------------------------------------------\n\n// Draw callbacks for advanced uses.\n// NB- You most likely do NOT need to use draw callbacks just to create your own widget or customized UI rendering (you can poke into the draw list for that)\n// Draw callback may be useful for example, A) Change your GPU render state, B) render a complex 3D scene inside a UI element (without an intermediate texture/render target), etc.\n// The expected behavior from your rendering function is 'if (cmd.UserCallback != NULL) cmd.UserCallback(parent_list, cmd); else RenderTriangles()'\n// typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd);\nexport type ImDrawCallback = (parent_list: Readonly, cmd: Readonly) => void;\n\n// Special Draw callback value to request renderer back-end to reset the graphics/render state.\n// The renderer back-end needs to handle this special value, otherwise it will crash trying to call a function at this address.\n// This is useful for example if you submitted callbacks which you know have altered the render state and you want it to be restored.\n// It is not done by default because they are many perfectly useful way of altering render state for imgui contents (e.g. changing shader/blending settings before an Image call).\nexport const ImDrawCallback_ResetRenderState = -1;\n\n// Typically, 1 command = 1 GPU draw call (unless command is a callback)\n// Pre 1.71 back-ends will typically ignore the VtxOffset/IdxOffset fields. When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset'\n// is enabled, those fields allow us to render meshes larger than 64K vertices while keeping 16-bits indices.\nexport class ImDrawCmd\n{\n constructor(public readonly native: Bind.reference_ImDrawCmd) {}\n\n // unsigned int ElemCount; // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[].\n get ElemCount(): number { return this.native.ElemCount; }\n // ImVec4 ClipRect; // Clipping rectangle (x1, y1, x2, y2)\n get ClipRect(): Readonly { return this.native.ClipRect; }\n // ImTextureID TextureId; // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas.\n get TextureId(): ImTextureID | null {\n return ImGuiContext.getTexture(this.native.TextureId);\n }\n // unsigned int VtxOffset; // Start offset in vertex buffer. Pre-1.71 or without ImGuiBackendFlags_RendererHasVtxOffset: always 0. With ImGuiBackendFlags_RendererHasVtxOffset: may be >0 to support meshes larger than 64K vertices with 16-bits indices.\n get VtxOffset(): number { return this.native.VtxOffset; }\n // unsigned int IdxOffset; // Start offset in index buffer. Always equal to sum of ElemCount drawn so far.\n get IdxOffset(): number { return this.native.IdxOffset; }\n // ImDrawCallback UserCallback; // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally.\n public readonly UserCallback: ImDrawCallback | null = null; // TODO\n // void* UserCallbackData; // The draw callback code can access this.\n public readonly UserCallbackData: any = null; // TODO\n\n // ImDrawCmd() { ElemCount = 0; ClipRect.x = ClipRect.y = ClipRect.z = ClipRect.w = 0.0f; TextureId = NULL; UserCallback = NULL; UserCallbackData = NULL; }\n}\n\n// Vertex index \n// (to allow large meshes with 16-bits indices: set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset in the renderer back-end)\n// (to use 32-bits indices: override with '#define ImDrawIdx unsigned int' in imconfig.h)\n// #ifndef ImDrawIdx\n// typedef unsigned short ImDrawIdx;\n// #endif\nexport const ImDrawIdxSize: number = 2; // bind.ImDrawIdxSize;\nexport type ImDrawIdx = number;\n\n// Vertex layout\n// #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT\nexport const ImDrawVertSize: number = 20; // bind.ImDrawVertSize;\nexport const ImDrawVertPosOffset: number = 0; // bind.ImDrawVertPosOffset;\nexport const ImDrawVertUVOffset: number = 8; // bind.ImDrawVertUVOffset;\nexport const ImDrawVertColOffset: number = 16; // bind.ImDrawVertColOffset;\nexport class ImDrawVert\n{\n // ImVec2 pos;\n public pos: Float32Array;\n // ImVec2 uv;\n public uv: Float32Array;\n // ImU32 col;\n public col: Uint32Array;\n\n constructor(buffer: ArrayBuffer, byteOffset: number = 0) {\n this.pos = new Float32Array(buffer, byteOffset + bind.ImDrawVertPosOffset, 2);\n this.uv = new Float32Array(buffer, byteOffset + bind.ImDrawVertUVOffset, 2);\n this.col = new Uint32Array(buffer, byteOffset + bind.ImDrawVertColOffset, 1);\n }\n}\n// #else\n// You can override the vertex format layout by defining IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT in imconfig.h\n// The code expect ImVec2 pos (8 bytes), ImVec2 uv (8 bytes), ImU32 col (4 bytes), but you can re-order them or add other fields as needed to simplify integration in your engine.\n// The type has to be described within the macro (you can either declare the struct or use a typedef)\n// NOTE: IMGUI DOESN'T CLEAR THE STRUCTURE AND DOESN'T CALL A CONSTRUCTOR SO ANY CUSTOM FIELD WILL BE UNINITIALIZED. IF YOU ADD EXTRA FIELDS (SUCH AS A 'Z' COORDINATES) YOU WILL NEED TO CLEAR THEM DURING RENDER OR TO IGNORE THEM.\n// IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT;\n// #endif\n\n// Draw channels are used by the Columns API to \"split\" the render list into different channels while building, so items of each column can be batched together.\n// You can also use them to simulate drawing layers and submit primitives in a different order than how they will be rendered.\nexport class ImDrawChannel\n{\n // ImVector CmdBuffer;\n // ImVector IdxBuffer;\n}\n\nexport class ImDrawListSharedData\n{\n constructor(public readonly native: Bind.reference_ImDrawListSharedData) {}\n}\n\n// Draw command list\n// This is the low-level list of polygons that ImGui functions are filling. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering.\n// Each ImGui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to access the current window draw list and draw custom primitives.\n// You can interleave normal ImGui:: calls and adding primitives to the current draw list.\n// All positions are generally in pixel coordinates (top-left at (0,0), bottom-right at io.DisplaySize), however you are totally free to apply whatever transformation matrix to want to the data (if you apply such transformation you'll want to apply it to ClipRect as well)\n// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects.\nexport class ImDrawList\n{\n constructor(public readonly native: Bind.reference_ImDrawList) {}\n\n public IterateDrawCmds(callback: (draw_cmd: ImDrawCmd, ElemStart: number) => void): void {\n this.native.IterateDrawCmds((draw_cmd: Bind.reference_ImDrawCmd, ElemStart: number): void => {\n callback(new ImDrawCmd(draw_cmd), ElemStart);\n });\n }\n\n // This is what you have to render\n // ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback.\n // ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those\n get IdxBuffer(): Uint8Array { return this.native.IdxBuffer; }\n // ImVector VtxBuffer; // Vertex buffer.\n get VtxBuffer(): Uint8Array { return this.native.VtxBuffer; }\n // ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive.\n get Flags(): ImDrawListFlags { return this.native.Flags; }\n set Flags(value: ImDrawListFlags) { this.native.Flags = value; }\n\n // [Internal, used while building lists]\n // const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context)\n // const char* _OwnerName; // Pointer to owner window's name for debugging\n // unsigned int _VtxCurrentIdx; // [Internal] == VtxBuffer.Size\n // ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)\n // ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)\n // ImVector _ClipRectStack; // [Internal]\n // ImVector _TextureIdStack; // [Internal]\n // ImVector _Path; // [Internal] current path building\n // int _ChannelsCurrent; // [Internal] current channel number (0)\n // int _ChannelsCount; // [Internal] number of active channels (1+)\n // ImVector _Channels; // [Internal] draw channels for columns API (not resized down so _ChannelsCount may be smaller than _Channels.Size)\n\n // ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clear(); }\n // ~ImDrawList() { ClearFreeMemory(); }\n // IMGUI_API void PushClipRect(ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling)\n public PushClipRect(clip_rect_min: Readonly, clip_rect_max: Readonly, intersect_with_current_clip_rect: boolean = false): void {\n this.native.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect);\n }\n // IMGUI_API void PushClipRectFullScreen();\n public PushClipRectFullScreen(): void { this.native.PushClipRectFullScreen(); }\n // IMGUI_API void PopClipRect();\n public PopClipRect(): void { this.native.PopClipRect(); }\n // IMGUI_API void PushTextureID(ImTextureID texture_id);\n public PushTextureID(texture_id: ImTextureID): void {\n this.native.PushTextureID(ImGuiContext.setTexture(texture_id));\n }\n // IMGUI_API void PopTextureID();\n public PopTextureID(): void { this.native.PopTextureID(); }\n // inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); }\n public GetClipRectMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return this.native.GetClipRectMin(out);\n }\n // inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); }\n public GetClipRectMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return this.native.GetClipRectMax(out);\n }\n\n // Primitives\n // IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness = 1.0f);\n public AddLine(a: Readonly, b: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddLine(a, b, col, thickness);\n }\n // IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All, float thickness = 1.0f); // a: upper-left, b: lower-right, rounding_corners_flags: 4-bits corresponding to which corner to round\n public AddRect(a: Readonly, b: Readonly, col: Bind.ImU32, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All, thickness: number = 1.0): void {\n this.native.AddRect(a, b, col, rounding, rounding_corners_flags, thickness);\n }\n // IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); // a: upper-left, b: lower-right\n public AddRectFilled(a: Readonly, b: Readonly, col: Bind.ImU32, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All): void {\n this.native.AddRectFilled(a, b, col, rounding, rounding_corners_flags);\n }\n // IMGUI_API void AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left);\n public AddRectFilledMultiColor(a: Readonly, b: Readonly, col_upr_left: Bind.ImU32, col_upr_right: Bind.ImU32, col_bot_right: Bind.ImU32, col_bot_left: Bind.ImU32): void {\n this.native.AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left);\n }\n // IMGUI_API void AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness = 1.0f);\n public AddQuad(a: Readonly, b: Readonly, c: Readonly, d: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddQuad(a, b, c, d, col, thickness);\n }\n // IMGUI_API void AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col);\n public AddQuadFilled(a: Readonly, b: Readonly, c: Readonly, d: Readonly, col: Bind.ImU32): void {\n this.native.AddQuadFilled(a, b, c, d, col);\n }\n // IMGUI_API void AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness = 1.0f);\n public AddTriangle(a: Readonly, b: Readonly, c: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddTriangle(a, b, c, col, thickness);\n }\n // IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col);\n public AddTriangleFilled(a: Readonly, b: Readonly, c: Readonly, col: Bind.ImU32): void {\n this.native.AddTriangleFilled(a, b, c, col);\n }\n // IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f);\n public AddCircle(centre: Readonly, radius: number, col: Bind.ImU32, num_segments: number = 12, thickness: number = 1.0): void {\n this.native.AddCircle(centre, radius, col, num_segments, thickness);\n }\n // IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12);\n public AddCircleFilled(centre: Readonly, radius: number, col: Bind.ImU32, num_segments: number = 12): void {\n this.native.AddCircleFilled(centre, radius, col, num_segments);\n }\n // IMGUI_API void AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL);\n // IMGUI_API void AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL, float wrap_width = 0.0f, const ImVec4* cpu_fine_clip_rect = NULL);\n public AddText(pos: Readonly, col: Bind.ImU32, text_begin: string, text_end?: number | null): void;\n public AddText(font: ImFont, font_size: number, pos: Readonly, col: Bind.ImU32, text_begin: string, text_end?: number | null, wrap_width?: number, cpu_fine_clip_rect?: Readonly | null): void;\n public AddText(...args: any[]): void {\n if (args[0] instanceof ImFont) {\n const font: ImFont = args[0];\n const font_size: number = args[1];\n const pos: Readonly = args[2];\n const col: Bind.ImU32 = args[3];\n const text_begin: string = args[4];\n const text_end: number | null = args[5] || null;\n const wrap_width: number = args[6] = 0.0;\n const cpu_fine_clip_rect: Readonly | null = args[7] || null;\n this.native.AddText_B(font.native, font_size, pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin, wrap_width, cpu_fine_clip_rect);\n } else {\n const pos: Readonly = args[0];\n const col: Bind.ImU32 = args[1];\n const text_begin: string = args[2];\n const text_end: number | null = args[3] || null;\n this.native.AddText_A(pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin);\n }\n }\n // IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,1), ImU32 col = 0xFFFFFFFF);\n public AddImage(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, uv_a: Readonly = ImVec2.ZERO, uv_b: Readonly = ImVec2.UNIT, col: Bind.ImU32 = 0xFFFFFFFF): void {\n this.native.AddImage(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col);\n }\n // IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,0), const ImVec2& uv_c = ImVec2(1,1), const ImVec2& uv_d = ImVec2(0,1), ImU32 col = 0xFFFFFFFF);\n public AddImageQuad(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, c: Readonly, d: Readonly, uv_a: Readonly = ImVec2.ZERO, uv_b: Readonly = ImVec2.UNIT_X, uv_c: Readonly = ImVec2.UNIT, uv_d: Readonly = ImVec2.UNIT_Y, col: Bind.ImU32 = 0xFFFFFFFF): void {\n this.native.AddImageQuad(ImGuiContext.setTexture(user_texture_id), a, b, c, d, uv_a, uv_b, uv_c, uv_d, col);\n }\n // IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col, float rounding, int rounding_corners = ImDrawCornerFlags_All);\n public AddImageRounded(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, uv_a: Readonly, uv_b: Readonly, col: Bind.ImU32, rounding: number, rounding_corners: ImDrawCornerFlags = ImDrawCornerFlags.All): void {\n this.native.AddImageRounded(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col, rounding, rounding_corners);\n }\n // IMGUI_API void AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness);\n public AddPolyline(points: Array>, num_points: number, col: Bind.ImU32, closed: boolean, thickness: number): void {\n this.native.AddPolyline(points, num_points, col, closed, thickness);\n }\n // IMGUI_API void AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col);\n public AddConvexPolyFilled(points: Array>, num_points: number, col: Bind.ImU32): void {\n this.native.AddConvexPolyFilled(points, num_points, col);\n }\n // IMGUI_API void AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments = 0);\n public AddBezierCurve(pos0: Readonly, cp0: Readonly, cp1: Readonly, pos1: Readonly, col: Bind.ImU32, thickness: number = 1.0, num_segments: number = 0): void {\n this.native.AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments);\n }\n\n // Stateful path API, add points then finish with PathFill() or PathStroke()\n // inline void PathClear() { _Path.resize(0); }\n public PathClear(): void { this.native.PathClear(); }\n // inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); }\n public PathLineTo(pos: Readonly): void { this.native.PathLineTo(pos); }\n // inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path[_Path.Size-1], &pos, 8) != 0) _Path.push_back(pos); }\n public PathLineToMergeDuplicate(pos: Readonly): void { this.native.PathLineToMergeDuplicate(pos); }\n // inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); PathClear(); }\n public PathFillConvex(col: Bind.ImU32): void { this.native.PathFillConvex(col); }\n // inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness); PathClear(); }\n public PathStroke(col: Bind.ImU32, closed: boolean, thickness: number = 1.0): void { this.native.PathStroke(col, closed, thickness); }\n // IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_segments = 10);\n public PathArcTo(centre: Readonly, radius: number, a_min: number, a_max: number, num_segments: number = 10): void { this.native.PathArcTo(centre, radius, a_min, a_max, num_segments); }\n // IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle\n public PathArcToFast(centre: Readonly, radius: number, a_min_of_12: number, a_max_of_12: number): void { this.native.PathArcToFast(centre, radius, a_min_of_12, a_max_of_12); }\n // IMGUI_API void PathBezierCurveTo(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, int num_segments = 0);\n public PathBezierCurveTo(p1: Readonly, p2: Readonly, p3: Readonly, num_segments: number = 0): void { this.native.PathBezierCurveTo(p1, p2, p3, num_segments); }\n // IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All);\n public PathRect(rect_min: Readonly, rect_max: Readonly, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All): void { this.native.PathRect(rect_min, rect_max, rounding, rounding_corners_flags); }\n\n // Channels\n // - Use to simulate layers. By switching channels to can render out-of-order (e.g. submit foreground primitives before background primitives)\n // - Use to minimize draw calls (e.g. if going back-and-forth between multiple non-overlapping clipping rectangles, prefer to append into separate channels then merge at the end)\n // IMGUI_API void ChannelsSplit(int channels_count);\n public ChannelsSplit(channels_count: number): void { this.native.ChannelsSplit(channels_count); }\n // IMGUI_API void ChannelsMerge();\n public ChannelsMerge(): void { this.native.ChannelsMerge(); }\n // IMGUI_API void ChannelsSetCurrent(int channel_index);\n public ChannelsSetCurrent(channel_index: number): void { this.native.ChannelsSetCurrent(channel_index); }\n\n // Advanced\n // IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles.\n public AddCallback(callback: ImDrawCallback, callback_data: any): void {\n const _callback: Bind.ImDrawCallback = (parent_list: Readonly, draw_cmd: Readonly): void => {\n callback(new ImDrawList(parent_list), new ImDrawCmd(draw_cmd));\n };\n this.native.AddCallback(_callback, callback_data);\n }\n // IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible\n public AddDrawCmd(): void { this.native.AddDrawCmd(); }\n\n // Internal helpers\n // NB: all primitives needs to be reserved via PrimReserve() beforehand!\n // IMGUI_API void Clear();\n public Clear(): void { this.native.Clear(); }\n // IMGUI_API void ClearFreeMemory();\n public ClearFreeMemory(): void { this.native.ClearFreeMemory(); }\n // IMGUI_API void PrimReserve(int idx_count, int vtx_count);\n public PrimReserve(idx_count: number, vtx_count: number): void { this.native.PrimReserve(idx_count, vtx_count); }\n // IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles)\n public PrimRect(a: Readonly, b: Readonly, col: Bind.ImU32): void { this.native.PrimRect(a, b, col); }\n // IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col);\n public PrimRectUV(a: Readonly, b: Readonly, uv_a: Readonly, uv_b: Readonly, col: Bind.ImU32): void { this.native.PrimRectUV(a, b, uv_a, uv_b, col); }\n // IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col);\n public PrimQuadUV(a: Readonly, b: Readonly, c: Readonly, d: Readonly, uv_a: Readonly, uv_b: Readonly, uv_c: Readonly, uv_d: Readonly, col: Bind.ImU32): void { this.native.PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); }\n // inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; }\n public PrimWriteVtx(pos: Readonly, uv: Readonly, col: Bind.ImU32): void { this.native.PrimWriteVtx(pos, uv, col); }\n // inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; }\n public PrimWriteIdx(idx: ImDrawIdx): void { this.native.PrimWriteIdx(idx); }\n // inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); }\n public PrimVtx(pos: Readonly, uv: Readonly, col: Bind.ImU32): void { this.native.PrimVtx(pos, uv, col); }\n // IMGUI_API void UpdateClipRect();\n public UpdateClipRect(): void { this.native.UpdateClipRect(); }\n // IMGUI_API void UpdateTextureID();\n public UpdateTextureID(): void { this.native.UpdateTextureID(); }\n}\n\n// All draw data to render an ImGui frame\nexport class ImDrawData\n{\n constructor(public readonly native: Bind.reference_ImDrawData) {}\n\n public IterateDrawLists(callback: (draw_list: ImDrawList) => void): void {\n this.native.IterateDrawLists((draw_list: Bind.reference_ImDrawList): void => {\n callback(new ImDrawList(draw_list));\n });\n }\n\n // bool Valid; // Only valid after Render() is called and before the next NewFrame() is called.\n get Valid(): boolean { return this.native.Valid; }\n // ImDrawList** CmdLists;\n // int CmdListsCount;\n get CmdListsCount(): number { return this.native.CmdListsCount; }\n // int TotalIdxCount; // For convenience, sum of all cmd_lists idx_buffer.Size\n get TotalIdxCount(): number { return this.native.TotalIdxCount; }\n // int TotalVtxCount; // For convenience, sum of all cmd_lists vtx_buffer.Size\n get TotalVtxCount(): number { return this.native.TotalVtxCount; }\n // ImVec2 DisplayPos; // Upper-left position of the viewport to render (== upper-left of the orthogonal projection matrix to use)\n get DisplayPos(): Readonly { return this.native.DisplayPos; }\n // ImVec2 DisplaySize; // Size of the viewport to render (== io.DisplaySize for the main viewport) (DisplayPos + DisplaySize == lower-right of the orthogonal projection matrix to use)\n get DisplaySize(): Readonly { return this.native.DisplaySize; }\n // ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display.\n get FramebufferScale(): Readonly { return this.native.FramebufferScale; }\n\n // Functions\n // ImDrawData() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCount = 0; }\n // IMGUI_API void DeIndexAllBuffers(); // For backward compatibility or convenience: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering!\n public DeIndexAllBuffers(): void { this.native.DeIndexAllBuffers(); }\n // IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than ImGui expects, or if there is a difference between your window resolution and framebuffer resolution.\n public ScaleClipRects(fb_scale: Readonly): void {\n this.native.ScaleClipRects(fb_scale);\n }\n}\n\nexport class script_ImFontConfig implements Bind.interface_ImFontConfig\n{\n // void* FontData; // // TTF/OTF data\n // int FontDataSize; // // TTF/OTF data size\n FontData: DataView | null = null;\n // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself).\n FontDataOwnedByAtlas: boolean = true;\n // int FontNo; // 0 // Index of font within TTF/OTF file\n FontNo: number = 0;\n // float SizePixels; // // Size in pixels for rasterizer.\n SizePixels: number = 0;\n // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis.\n OversampleH: number = 3;\n OversampleV: number = 1;\n // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1.\n PixelSnapH: boolean = false;\n // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now.\n GlyphExtraSpacing: ImVec2 = new ImVec2(0, 0);\n // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input.\n GlyphOffset: ImVec2 = new ImVec2(0, 0);\n // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE.\n GlyphRanges: number | null = null;\n // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font\n GlyphMinAdvanceX: number = 0;\n // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs\n GlyphMaxAdvanceX: number = Number.MAX_VALUE;\n // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights.\n MergeMode: boolean = false;\n // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one.\n RasterizerFlags: number = 0;\n // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable.\n RasterizerMultiply: number = 1.0;\n\n // [Internal]\n // char Name[32]; // Name (strictly to ease debugging)\n Name: string = \"\";\n // ImFont* DstFont;\n DstFont: Bind.reference_ImFont | null = null;\n\n // IMGUI_API ImFontConfig();\n}\n\nexport class ImFontConfig {\n constructor(public readonly internal: Bind.interface_ImFontConfig = new script_ImFontConfig()) {}\n\n // void* FontData; // // TTF/OTF data\n // int FontDataSize; // // TTF/OTF data size\n get FontData(): DataView | null { return this.internal.FontData; }\n // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself).\n get FontDataOwnedByAtlas(): boolean { return this.internal.FontDataOwnedByAtlas; }\n // int FontNo; // 0 // Index of font within TTF/OTF file\n get FontNo(): number { return this.internal.FontNo; }\n // float SizePixels; // // Size in pixels for rasterizer.\n get SizePixels(): number { return this.internal.SizePixels; }\n // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis.\n get OversampleH(): number { return this.internal.OversampleH; }\n get OversampleV(): number { return this.internal.OversampleV; }\n // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1.\n get PixelSnapH(): boolean { return this.internal.PixelSnapH; }\n // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now.\n get GlyphExtraSpacing(): ImVec2 { return this.internal.GlyphExtraSpacing; }\n // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input.\n get GlyphOffset(): ImVec2 { return this.internal.GlyphOffset; }\n // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE.\n get GlyphRanges(): number | null { return this.internal.GlyphRanges; }\n // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font\n get GlyphMinAdvanceX(): number { return this.internal.GlyphMinAdvanceX; }\n // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs\n get GlyphMaxAdvanceX(): number { return this.internal.GlyphMaxAdvanceX; }\n // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights.\n get MergeMode(): boolean { return this.internal.MergeMode; }\n // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one.\n get RasterizerFlags(): number { return this.internal.RasterizerFlags; }\n // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable.\n get RasterizerMultiply(): number { return this.internal.RasterizerMultiply; }\n\n // [Internal]\n // char Name[32]; // Name (strictly to ease debugging)\n get Name(): string { return this.internal.Name; }\n set Name(value: string) { this.internal.Name = value; }\n // ImFont* DstFont;\n get DstFont(): ImFont | null {\n const font = this.internal.DstFont;\n return font && new ImFont(font);\n }\n\n // IMGUI_API ImFontConfig();\n}\n\n// struct ImFontGlyph\nexport class script_ImFontGlyph implements Bind.interface_ImFontGlyph\n{\n // ImWchar Codepoint; // 0x0000..0xFFFF\n Codepoint: number = 0;\n // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in)\n AdvanceX: number = 0.0;\n // float X0, Y0, X1, Y1; // Glyph corners\n X0: number = 0.0;\n Y0: number = 0.0;\n X1: number = 1.0;\n Y1: number = 1.0;\n // float U0, V0, U1, V1; // Texture coordinates\n U0: number = 0.0;\n V0: number = 0.0;\n U1: number = 1.0;\n V1: number = 1.0;\n}\n\nexport class ImFontGlyph implements Bind.interface_ImFontGlyph {\n constructor(public readonly internal: Bind.interface_ImFontGlyph = new script_ImFontGlyph()) {}\n // ImWchar Codepoint; // 0x0000..0xFFFF\n get Codepoint(): number { return this.internal.Codepoint; }\n // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in)\n get AdvanceX(): number { return this.internal.AdvanceX; };\n // float X0, Y0, X1, Y1; // Glyph corners\n get X0(): number { return this.internal.X0; };\n get Y0(): number { return this.internal.Y0; };\n get X1(): number { return this.internal.X1; };\n get Y1(): number { return this.internal.Y1; };\n // float U0, V0, U1, V1; // Texture coordinates\n get U0(): number { return this.internal.U0; };\n get V0(): number { return this.internal.V0; };\n get U1(): number { return this.internal.U1; };\n get V1(): number { return this.internal.V1; };\n}\n\nexport enum ImFontAtlasFlags\n{\n None = 0,\n NoPowerOfTwoHeight = 1 << 0, // Don't round the height to next power of two\n NoMouseCursors = 1 << 1, // Don't build software mouse cursors into the atlas\n}\n\n// Load and rasterize multiple TTF/OTF fonts into a same texture.\n// Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering.\n// We also add custom graphic data into the texture that serves for ImGui.\n// 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you.\n// 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data.\n// 3. Upload the pixels data into a texture within your graphics system.\n// 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture.\n// IMPORTANT: If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the ImFont is build (when calling GetTextData*** or Build()). We only copy the pointer, not the data.\nexport class ImFontAtlas\n{\n constructor(public readonly native: Bind.reference_ImFontAtlas) {}\n\n // IMGUI_API ImFontAtlas();\n // IMGUI_API ~ImFontAtlas();\n // IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg);\n // IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL);\n public AddFontDefault(font_cfg: Bind.interface_ImFontConfig | null = null): ImFont {\n return new ImFont(this.native.AddFontDefault(font_cfg));\n }\n // IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL);\n // IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after Build(). Set font_cfg->FontDataOwnedByAtlas to false to keep ownership.\n public AddFontFromMemoryTTF(data: ArrayBuffer, size_pixels: number, font_cfg: ImFontConfig | null = null, glyph_ranges: number | null = null): ImFont {\n return new ImFont(this.native.AddFontFromMemoryTTF(new Uint8Array(data), size_pixels, font_cfg && font_cfg.internal, glyph_ranges));\n }\n // IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp.\n // IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter.\n // IMGUI_API void ClearTexData(); // Clear the CPU-side texture data. Saves RAM once the texture has been copied to graphics memory.\n public ClearTexData(): void { this.native.ClearTexData(); }\n // IMGUI_API void ClearInputData(); // Clear the input TTF data (inc sizes, glyph ranges)\n public ClearInputData(): void { this.native.ClearInputData(); }\n // IMGUI_API void ClearFonts(); // Clear the ImGui-side font data (glyphs storage, UV coordinates)\n public ClearFonts(): void { this.native.ClearFonts(); }\n // IMGUI_API void Clear(); // Clear all\n public Clear(): void { this.native.Clear(); }\n\n // Build atlas, retrieve pixel data.\n // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID().\n // RGBA32 format is provided for convenience and compatibility, but note that unless you use CustomRect to draw color data, the RGB pixels emitted from Fonts will all be white (~75% of waste).\n // Pitch = Width * BytesPerPixels\n // IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions.\n public Build(): boolean { return this.native.Build(); }\n // IMGUI_API bool IsBuilt() { return Fonts.Size > 0 && (TexPixelsAlpha8 != NULL || TexPixelsRGBA32 != NULL); }\n public IsBuilt(): boolean { return this.native.IsBuilt(); }\n // IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel\n public GetTexDataAsAlpha8(): { pixels: Uint8ClampedArray, width: number, height: number, bytes_per_pixel: number } {\n return this.native.GetTexDataAsAlpha8();\n }\n // IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel\n public GetTexDataAsRGBA32(): { pixels: Uint8ClampedArray, width: number, height: number, bytes_per_pixel: number } {\n return this.native.GetTexDataAsRGBA32();\n }\n // void SetTexID(ImTextureID id) { TexID = id; }\n public SetTexID(id: ImTextureID | null): void { this.TexID = id; }\n\n //-------------------------------------------\n // Glyph Ranges\n //-------------------------------------------\n\n // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list)\n // NB: Make sure that your string are UTF-8 and NOT in your local code page. In C++11, you can create UTF-8 string literal using the u8\"Hello world\" syntax. See FAQ for details.\n // IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin\n GetGlyphRangesDefault(): number { return this.native.GetGlyphRangesDefault(); }\n // IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters\n GetGlyphRangesKorean(): number { return this.native.GetGlyphRangesKorean(); }\n // IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs\n GetGlyphRangesJapanese(): number { return this.native.GetGlyphRangesJapanese(); }\n // IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs\n GetGlyphRangesChineseFull(): number { return this.native.GetGlyphRangesChineseFull(); }\n // IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese\n GetGlyphRangesChineseSimplifiedCommon(): number { return this.native.GetGlyphRangesChineseSimplifiedCommon(); }\n // IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters\n GetGlyphRangesCyrillic(): number { return this.native.GetGlyphRangesCyrillic(); }\n // IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters\n GetGlyphRangesThai(): number { return this.native.GetGlyphRangesThai(); }\n // IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters\n GetGlyphRangesVietnamese(): number { return this.native.GetGlyphRangesVietnamese(); }\n\n // Helpers to build glyph ranges from text data. Feed your application strings/characters to it then call BuildRanges().\n // struct GlyphRangesBuilder\n // {\n // ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used)\n // GlyphRangesBuilder() { UsedChars.resize(0x10000 / 8); memset(UsedChars.Data, 0, 0x10000 / 8); }\n // bool GetBit(int n) const { return (UsedChars[n >> 3] & (1 << (n & 7))) != 0; }\n // void SetBit(int n) { UsedChars[n >> 3] |= 1 << (n & 7); } // Set bit 'c' in the array\n // void AddChar(ImWchar c) { SetBit(c); } // Add character\n // IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added)\n // IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault) to force add all of ASCII/Latin+Ext\n // IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges\n // };\n\n //-------------------------------------------\n // Custom Rectangles/Glyphs API\n //-------------------------------------------\n\n // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. After calling Build(), you can query the rectangle position and render your pixels.\n // You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs.\n // struct CustomRect\n // {\n // unsigned int ID; // Input // User ID. Use <0x10000 to map into a font glyph, >=0x10000 for other/internal/custom texture data.\n // unsigned short Width, Height; // Input // Desired rectangle dimension\n // unsigned short X, Y; // Output // Packed position in Atlas\n // float GlyphAdvanceX; // Input // For custom font glyphs only (ID<0x10000): glyph xadvance\n // ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph display offset\n // ImFont* Font; // Input // For custom font glyphs only (ID<0x10000): target font\n // CustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); Font = NULL; }\n // bool IsPacked() const { return X != 0xFFFF; }\n // };\n\n // IMGUI_API int AddCustomRectRegular(unsigned int id, int width, int height); // Id needs to be >= 0x10000. Id >= 0x80000000 are reserved for ImGui and ImDrawList\n // IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0,0)); // Id needs to be < 0x10000 to register a rectangle to map into a specific font.\n // IMGUI_API void CalcCustomRectUV(const CustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max);\n // const CustomRect* GetCustomRectByIndex(int index) const { if (index < 0) return NULL; return &CustomRects[index]; }\n\n //-------------------------------------------\n // Members\n //-------------------------------------------\n\n // bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert.\n get Locked(): boolean { return this.native.Locked; }\n set Locked(value: boolean) { this.native.Locked = value; }\n // ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_)\n get Flags(): ImFontAtlasFlags { return this.native.Flags; }\n set Flags(value: ImFontAtlasFlags) { this.native.Flags = value; }\n // ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure.\n get TexID(): ImTextureID | null {\n return ImGuiContext.getTexture(this.native.TexID);\n }\n set TexID(value: ImTextureID | null) {\n this.native.TexID = ImGuiContext.setTexture(value);\n }\n // int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height.\n get TexDesiredWidth(): number { return this.native.TexDesiredWidth; }\n set TexDesiredWidth(value: number) { this.native.TexDesiredWidth = value; }\n // int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1.\n get TexGlyphPadding(): number { return this.native.TexGlyphPadding; }\n set TexGlyphPadding(value: number) { this.native.TexGlyphPadding = value; }\n\n // [Internal]\n // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you.\n // unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight\n // unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4\n // int TexWidth; // Texture width calculated during Build().\n get TexWidth(): number { return this.native.TexWidth; }\n // int TexHeight; // Texture height calculated during Build().\n get TexHeight(): number { return this.native.TexHeight; }\n // ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight)\n get TexUvScale(): Readonly { return this.native.TexUvScale; }\n // ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel\n get TexUvWhitePixel(): Readonly { return this.native.TexUvWhitePixel; }\n // ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font.\n get Fonts(): ImVector {\n const fonts: ImVector = new ImVector();\n this.native.IterateFonts((font: Bind.reference_ImFont) => {\n fonts.push(new ImFont(font));\n });\n return fonts;\n }\n // ImVector CustomRects; // Rectangles for packing custom texture data into the atlas.\n // ImVector ConfigData; // Internal data\n // int CustomRectIds[1]; // Identifiers of custom texture rectangle used by ImFontAtlas/ImDrawList\n}\n\n// Font runtime data and rendering\n// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32().\nexport class ImFont\n{\n constructor(public readonly native: Bind.reference_ImFont) {}\n\n // Members: Hot ~62/78 bytes\n // float FontSize; // // Height of characters, set during loading (don't change after loading)\n get FontSize(): number { return this.native.FontSize; }\n // float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale()\n get Scale(): number { return this.native.Scale; }\n set Scale(value: number) { this.native.Scale = value; }\n // ImVec2 DisplayOffset; // = (0.f,1.f) // Offset font rendering by xx pixels\n get DisplayOffset(): Bind.interface_ImVec2 { return this.native.DisplayOffset; }\n // ImVector Glyphs; // // All glyphs.\n get Glyphs(): ImVector {\n const glyphs = new ImVector();\n this.native.IterateGlyphs((glyph: Bind.reference_ImFontGlyph): void => {\n glyphs.push(new ImFontGlyph(glyph)); // TODO: wrap native\n });\n return glyphs;\n }\n // ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI).\n // get IndexAdvanceX(): any { return this.native.IndexAdvanceX; }\n // ImVector IndexLookup; // // Sparse. Index glyphs by Unicode code-point.\n // get IndexLookup(): any { return this.native.IndexLookup; }\n // const ImFontGlyph* FallbackGlyph; // == FindGlyph(FontFallbackChar)\n get FallbackGlyph(): ImFontGlyph | null {\n const glyph = this.native.FallbackGlyph;\n return glyph && new ImFontGlyph(glyph);\n }\n set FallbackGlyph(value: ImFontGlyph | null) {\n this.native.FallbackGlyph = value && value.internal as Bind.reference_ImFontGlyph;\n }\n // float FallbackAdvanceX; // == FallbackGlyph->AdvanceX\n get FallbackAdvanceX(): number { return this.native.FallbackAdvanceX; }\n // ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found. Only set via SetFallbackChar()\n get FallbackChar(): number { return this.native.FallbackChar; }\n\n // Members: Cold ~18/26 bytes\n // short ConfigDataCount; // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont.\n get ConfigDataCount(): number { return this.ConfigData.length; }\n // ImFontConfig* ConfigData; // // Pointer within ContainerAtlas->ConfigData\n get ConfigData(): ImFontConfig[] {\n const cfg_data: ImFontConfig[] = [];\n this.native.IterateConfigData((cfg: Bind.interface_ImFontConfig): void => {\n cfg_data.push(new ImFontConfig(cfg));\n });\n return cfg_data;\n }\n // ImFontAtlas* ContainerAtlas; // // What we has been loaded into\n get ContainerAtlas(): ImFontAtlas | null { return null; }\n // float Ascent, Descent; // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize]\n get Ascent(): number { return this.native.Ascent; }\n get Descent(): number { return this.native.Descent; }\n // int MetricsTotalSurface;// // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs)\n get MetricsTotalSurface(): number { return this.native.MetricsTotalSurface; }\n\n // Methods\n // IMGUI_API ImFont();\n // IMGUI_API ~ImFont();\n // IMGUI_API void ClearOutputData();\n public ClearOutputData(): void { return this.native.ClearOutputData(); }\n // IMGUI_API void BuildLookupTable();\n public BuildLookupTable(): void { return this.native.BuildLookupTable(); }\n // IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const;\n public FindGlyph(c: number): Readonly | null {\n const glyph: Readonly | null = this.native.FindGlyph(c);\n return glyph && new ImFontGlyph(glyph);\n }\n // IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const;\n public FindGlyphNoFallback(c: number): ImFontGlyph | null {\n const glyph: Readonly | null = this.native.FindGlyphNoFallback(c);\n return glyph && new ImFontGlyph(glyph);\n }\n // IMGUI_API void SetFallbackChar(ImWchar c);\n public SetFallbackChar(c: number): void { return this.native.SetFallbackChar(c); }\n // float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; }\n public GetCharAdvance(c: number): number { return this.native.GetCharAdvance(c); }\n // bool IsLoaded() const { return ContainerAtlas != NULL; }\n public IsLoaded(): boolean { return this.native.IsLoaded(); }\n // const char* GetDebugName() const { return ConfigData ? ConfigData->Name : \"\"; }\n public GetDebugName(): string { return this.native.GetDebugName(); }\n\n // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable.\n // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable.\n // IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8\n public CalcTextSizeA(size: number, max_width: number, wrap_width: number, text_begin: string, text_end: number | null = null, remaining: Bind.ImScalar | null = null): Bind.interface_ImVec2 {\n return this.native.CalcTextSizeA(size, max_width, wrap_width, text_end !== null ? text_begin.substring(0, text_end) : text_begin, remaining, new ImVec2());\n }\n // IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const;\n public CalcWordWrapPositionA(scale: number, text: string, text_end: number | null = null, wrap_width: number): number {\n return this.native.CalcWordWrapPositionA(scale, text_end !== null ? text.substring(0, text_end) : text, wrap_width);\n }\n // IMGUI_API void RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, unsigned short c) const;\n public RenderChar(draw_list: ImDrawList, size: number, pos: Readonly, col: Bind.ImU32, c: Bind.ImWchar): void {\n this.native.RenderChar(draw_list.native, size, pos, col, c);\n }\n // IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const;\n public RenderText(draw_list: ImDrawList, size: number, pos: Readonly, col: Bind.ImU32, clip_rect: Readonly, text_begin: string, text_end: number | null = null, wrap_width: number = 0.0, cpu_fine_clip: boolean = false): void {}\n\n // [Internal]\n // IMGUI_API void GrowIndex(int new_size);\n // IMGUI_API void AddGlyph(ImWchar c, float x0, float y0, float x1, float y1, float u0, float v0, float u1, float v1, float advance_x);\n // IMGUI_API void AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst = true); // Makes 'dst' character/glyph points to 'src' character/glyph. Currently needs to be called AFTER fonts have been built.\n\n // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS\n // typedef ImFontGlyph Glyph; // OBSOLETE 1.52+\n // #endif\n}\n\n// a script version of BindImGui.ImGuiStyle with matching interface\nclass script_ImGuiStyle implements Bind.interface_ImGuiStyle {\n public Alpha: number = 1.0;\n public WindowPadding: ImVec2 = new ImVec2(8, 8);\n public WindowRounding: number = 7.0;\n public WindowBorderSize: number = 0.0;\n public WindowMinSize: ImVec2 = new ImVec2(32, 32);\n public WindowTitleAlign: ImVec2 = new ImVec2(0.0, 0.5);\n public WindowMenuButtonPosition: ImGuiDir = ImGuiDir.Left;\n public ChildRounding: number = 0.0;\n public ChildBorderSize: number = 1.0;\n public PopupRounding: number = 0.0;\n public PopupBorderSize: number = 1.0;\n public FramePadding: ImVec2 = new ImVec2(4, 3);\n public FrameRounding: number = 0.0;\n public FrameBorderSize: number = 0.0;\n public ItemSpacing: ImVec2 = new ImVec2(8, 4);\n public ItemInnerSpacing: ImVec2 = new ImVec2(4, 4);\n public TouchExtraPadding: ImVec2 = new ImVec2(0, 0);\n public IndentSpacing: number = 21.0;\n public ColumnsMinSpacing: number = 6.0;\n public ScrollbarSize: number = 16.0;\n public ScrollbarRounding: number = 9.0;\n public GrabMinSize: number = 10.0;\n public GrabRounding: number = 0.0;\n public TabRounding: number = 0.0;\n public TabBorderSize: number = 0.0;\n public ButtonTextAlign: ImVec2 = new ImVec2(0.5, 0.5);\n public SelectableTextAlign: ImVec2 = new ImVec2(0.0, 0.0);\n public DisplayWindowPadding: ImVec2 = new ImVec2(22, 22);\n public DisplaySafeAreaPadding: ImVec2 = new ImVec2(4, 4);\n public MouseCursorScale: number = 1;\n public AntiAliasedLines: boolean = true;\n public AntiAliasedFill: boolean = true;\n public CurveTessellationTol: number = 1.25;\n private Colors: ImVec4[] = [];\n public _getAt_Colors(index: number): Bind.interface_ImVec4 { return this.Colors[index]; }\n public _setAt_Colors(index: number, color: Readonly): boolean { this.Colors[index].Copy(color); return true; }\n\n constructor() {\n for (let i = 0; i < ImGuiCol.COUNT; ++i) {\n this.Colors[i] = new ImVec4();\n }\n const _this = new ImGuiStyle(this);\n const native = new bind.ImGuiStyle();\n const _that = new ImGuiStyle(native);\n _that.Copy(_this);\n bind.StyleColorsClassic(native);\n _this.Copy(_that);\n native.delete();\n }\n\n public ScaleAllSizes(scale_factor: number): void {\n const _this = new ImGuiStyle(this);\n const native = new bind.ImGuiStyle();\n const _that = new ImGuiStyle(native);\n _that.Copy(_this);\n native.ScaleAllSizes(scale_factor);\n _this.Copy(_that);\n native.delete();\n }\n}\n\nexport class ImGuiStyle\n{\n constructor(public readonly internal: Bind.interface_ImGuiStyle = new script_ImGuiStyle()) {}\n\n get Alpha(): number { return this.internal.Alpha; } set Alpha(value: number) { this.internal.Alpha = value; }\n get WindowPadding(): Bind.interface_ImVec2 { return this.internal.WindowPadding; }\n get WindowRounding(): number { return this.internal.WindowRounding; } set WindowRounding(value: number) { this.internal.WindowRounding = value; }\n get WindowBorderSize(): number { return this.internal.WindowBorderSize; } set WindowBorderSize(value: number) { this.internal.WindowBorderSize = value; }\n get WindowMinSize(): Bind.interface_ImVec2 { return this.internal.WindowMinSize; }\n get WindowTitleAlign(): Bind.interface_ImVec2 { return this.internal.WindowTitleAlign; }\n get WindowMenuButtonPosition(): ImGuiDir { return this.internal.WindowMenuButtonPosition; } set WindowMenuButtonPosition(value: ImGuiDir) { this.internal.WindowMenuButtonPosition = value; }\n get ChildRounding(): number { return this.internal.ChildRounding; } set ChildRounding(value: number) { this.internal.ChildRounding = value; }\n get ChildBorderSize(): number { return this.internal.ChildBorderSize; } set ChildBorderSize(value: number) { this.internal.ChildBorderSize = value; }\n get PopupRounding(): number { return this.internal.PopupRounding; } set PopupRounding(value: number) { this.internal.PopupRounding = value; }\n get PopupBorderSize(): number { return this.internal.PopupBorderSize; } set PopupBorderSize(value: number) { this.internal.PopupBorderSize = value; }\n get FramePadding(): Bind.interface_ImVec2 { return this.internal.FramePadding; }\n get FrameRounding(): number { return this.internal.FrameRounding; } set FrameRounding(value: number) { this.internal.FrameRounding = value; }\n get FrameBorderSize(): number { return this.internal.FrameBorderSize; } set FrameBorderSize(value: number) { this.internal.FrameBorderSize = value; }\n get ItemSpacing(): Bind.interface_ImVec2 { return this.internal.ItemSpacing; }\n get ItemInnerSpacing(): Bind.interface_ImVec2 { return this.internal.ItemInnerSpacing; }\n get TouchExtraPadding(): Bind.interface_ImVec2 { return this.internal.TouchExtraPadding; }\n get IndentSpacing(): number { return this.internal.IndentSpacing; } set IndentSpacing(value: number) { this.internal.IndentSpacing = value; }\n get ColumnsMinSpacing(): number { return this.internal.ColumnsMinSpacing; } set ColumnsMinSpacing(value: number) { this.internal.ColumnsMinSpacing = value; }\n get ScrollbarSize(): number { return this.internal.ScrollbarSize; } set ScrollbarSize(value: number) { this.internal.ScrollbarSize = value; }\n get ScrollbarRounding(): number { return this.internal.ScrollbarRounding; } set ScrollbarRounding(value: number) { this.internal.ScrollbarRounding = value; }\n get GrabMinSize(): number { return this.internal.GrabMinSize; } set GrabMinSize(value: number) { this.internal.GrabMinSize = value; }\n get GrabRounding(): number { return this.internal.GrabRounding; } set GrabRounding(value: number) { this.internal.GrabRounding = value; }\n get TabRounding(): number { return this.internal.TabRounding; } set TabRounding(value: number) { this.internal.TabRounding = value; }\n get TabBorderSize(): number { return this.internal.TabBorderSize; } set TabBorderSize(value: number) { this.internal.TabBorderSize = value; }\n get ButtonTextAlign(): Bind.interface_ImVec2 { return this.internal.ButtonTextAlign; }\n get SelectableTextAlign(): Bind.interface_ImVec2 { return this.internal.SelectableTextAlign; }\n get DisplayWindowPadding(): Bind.interface_ImVec2 { return this.internal.DisplayWindowPadding; }\n get DisplaySafeAreaPadding(): Bind.interface_ImVec2 { return this.internal.DisplaySafeAreaPadding; }\n get MouseCursorScale(): number { return this.internal.MouseCursorScale; } set MouseCursorScale(value: number) { this.internal.MouseCursorScale = value; }\n get AntiAliasedLines(): boolean { return this.internal.AntiAliasedLines; } set AntiAliasedLines(value: boolean) { this.internal.AntiAliasedLines = value; }\n get AntiAliasedFill(): boolean { return this.internal.AntiAliasedFill; } set AntiAliasedFill(value: boolean) { this.internal.AntiAliasedFill = value; }\n get CurveTessellationTol(): number { return this.internal.CurveTessellationTol; } set CurveTessellationTol(value: number) { this.internal.CurveTessellationTol = value; }\n public Colors: Bind.interface_ImVec4[] = new Proxy([], {\n get: (target: Bind.interface_ImVec4[], key: PropertyKey): number | Bind.interface_ImVec4 => {\n if (key === \"length\") { return ImGuiCol.COUNT; }\n return this.internal._getAt_Colors(Number(key));\n },\n set: (target: Bind.interface_ImVec4[], key: PropertyKey, value: Readonly): boolean => {\n return this.internal._setAt_Colors(Number(key), value);\n },\n });\n\n public Copy(other: Readonly): this {\n this.Alpha = other.Alpha;\n this.WindowPadding.Copy(other.WindowPadding);\n this.WindowRounding = other.WindowRounding;\n this.WindowBorderSize = other.WindowBorderSize;\n this.WindowMinSize.Copy(other.WindowMinSize);\n this.WindowTitleAlign.Copy(other.WindowTitleAlign);\n this.WindowMenuButtonPosition = other.WindowMenuButtonPosition;\n this.ChildRounding = other.ChildRounding;\n this.ChildBorderSize = other.ChildBorderSize;\n this.PopupRounding = other.PopupRounding;\n this.PopupBorderSize = other.PopupBorderSize;\n this.FramePadding.Copy(other.FramePadding);\n this.FrameRounding = other.FrameRounding;\n this.FrameBorderSize = other.FrameBorderSize;\n this.ItemSpacing.Copy(other.ItemSpacing);\n this.ItemInnerSpacing.Copy(other.ItemInnerSpacing);\n this.TouchExtraPadding.Copy(other.TouchExtraPadding);\n this.IndentSpacing = other.IndentSpacing;\n this.ColumnsMinSpacing = other.ColumnsMinSpacing;\n this.ScrollbarSize = other.ScrollbarSize;\n this.ScrollbarRounding = other.ScrollbarRounding;\n this.GrabMinSize = other.GrabMinSize;\n this.GrabRounding = other.GrabRounding;\n this.TabRounding = other.TabRounding;\n this.TabBorderSize = other.TabBorderSize;\n this.ButtonTextAlign.Copy(other.ButtonTextAlign);\n this.DisplayWindowPadding.Copy(other.DisplayWindowPadding);\n this.DisplaySafeAreaPadding.Copy(other.DisplaySafeAreaPadding);\n this.MouseCursorScale = other.MouseCursorScale;\n this.AntiAliasedLines = other.AntiAliasedLines;\n this.AntiAliasedFill = other.AntiAliasedFill;\n this.CurveTessellationTol = other.CurveTessellationTol;\n for (let i = 0; i < ImGuiCol.COUNT; ++i) {\n this.Colors[i].Copy(other.Colors[i]);\n }\n return this;\n }\n\n public ScaleAllSizes(scale_factor: number): void { this.internal.ScaleAllSizes(scale_factor); }\n}\n\n// This is where your app communicate with Dear ImGui. Access via ImGui::GetIO().\n// Read 'Programmer guide' section in .cpp file for general usage.\nexport class ImGuiIO\n{\n constructor(public readonly native: Bind.reference_ImGuiIO) {}\n\n //------------------------------------------------------------------\n // Settings (fill once) // Default value:\n //------------------------------------------------------------------\n\n // ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc.\n get ConfigFlags(): ImGuiConfigFlags { return this.native.ConfigFlags; }\n set ConfigFlags(value: ImGuiConfigFlags) { this.native.ConfigFlags = value; }\n // ImGuiBackendFlags BackendFlags; // = 0 // Set ImGuiBackendFlags_ enum. Set by imgui_impl_xxx files or custom back-end to communicate features supported by the back-end.\n get BackendFlags(): ImGuiBackendFlags { return this.native.BackendFlags; }\n set BackendFlags(value: ImGuiBackendFlags) { this.native.BackendFlags = value; }\n // ImVec2 DisplaySize; // // Display size, in pixels. For clamping windows positions.\n get DisplaySize(): Bind.reference_ImVec2 { return this.native.DisplaySize; }\n // float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds.\n get DeltaTime(): number { return this.native.DeltaTime; }\n set DeltaTime(value: number) { this.native.DeltaTime = value; }\n // float IniSavingRate; // = 5.0f // Maximum time between saving positions/sizes to .ini file, in seconds.\n get IniSavingRate(): number { return this.native.IniSavingRate; }\n set IniSavingRate(value: number) { this.native.IniSavingRate = value; }\n // const char* IniFilename; // = \"imgui.ini\" // Path to .ini file. NULL to disable .ini saving.\n get IniFilename(): string { return this.native.IniFilename; }\n set IniFilename(value: string) { this.native.IniFilename = value; }\n // const char* LogFilename; // = \"imgui_log.txt\" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified).\n get LogFilename(): string { return this.native.LogFilename; }\n set LogFilename(value: string) { this.native.LogFilename = value; }\n // float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds.\n get MouseDoubleClickTime(): number { return this.native.MouseDoubleClickTime; }\n set MouseDoubleClickTime(value: number) { this.native.MouseDoubleClickTime = value; }\n // float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels.\n get MouseDoubleClickMaxDist(): number { return this.native.MouseDoubleClickMaxDist; }\n set MouseDoubleClickMaxDist(value: number) { this.native.MouseDoubleClickMaxDist = value; }\n // float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging\n get MouseDragThreshold(): number { return this.native.MouseDragThreshold; }\n set MouseDragThreshold(value: number) { this.native.MouseDragThreshold = value; }\n // int KeyMap[ImGuiKey_COUNT]; // // Map of indices into the KeysDown[512] entries array\n public KeyMap: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiKey.COUNT; }\n return this.native._getAt_KeyMap(Number(key));\n },\n set: (target: number[], key: PropertyKey, value: number): boolean => {\n return this.native._setAt_KeyMap(Number(key), value);\n },\n });\n // float KeyRepeatDelay; // = 0.250f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.).\n get KeyRepeatDelay(): number { return this.native.KeyRepeatDelay; }\n set KeyRepeatDelay(value: number) { this.native.KeyRepeatDelay = value; }\n // float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds.\n get KeyRepeatRate(): number { return this.native.KeyRepeatRate; }\n set KeyRepeatRate(value: number) { this.native.KeyRepeatRate = value; }\n // void* UserData; // = NULL // Store your own data for retrieval by callbacks.\n get UserData(): any { return this.native.UserData; }\n set UserData(value: any) { this.native.UserData = value; }\n\n // ImFontAtlas* Fonts; // // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array.\n get Fonts(): ImFontAtlas { return new ImFontAtlas(this.native.Fonts); }\n // float FontGlobalScale; // = 1.0f // Global scale all fonts\n get FontGlobalScale(): number { return this.native.FontGlobalScale; }\n set FontGlobalScale(value: number) { this.native.FontGlobalScale = value; }\n // bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel.\n get FontAllowUserScaling(): boolean { return this.native.FontAllowUserScaling; }\n set FontAllowUserScaling(value: boolean) { this.native.FontAllowUserScaling = value; }\n // ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0].\n get FontDefault(): ImFont | null {\n const font: Bind.reference_ImFont | null = this.native.FontDefault;\n return (font === null) ? null : new ImFont(font);\n }\n set FontDefault(value: ImFont | null) {\n this.native.FontDefault = value && value.native;\n }\n // ImVec2 DisplayFramebufferScale; // = (1.0f,1.0f) // For retina display or other situations where window coordinates are different from framebuffer coordinates. User storage only, presently not used by ImGui.\n get DisplayFramebufferScale(): Bind.reference_ImVec2 { return this.native.DisplayFramebufferScale; }\n\n // Miscellaneous configuration options\n // bool OptMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl\n get ConfigMacOSXBehaviors(): boolean { return this.native.ConfigMacOSXBehaviors; }\n set ConfigMacOSXBehaviors(value: boolean) { this.native.ConfigMacOSXBehaviors = value; }\n // bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor, for users who consider it annoying.\n get ConfigInputTextCursorBlink(): boolean { return this.native.ConfigInputTextCursorBlink; }\n set ConfigInputTextCursorBlink(value: boolean) { this.native.ConfigInputTextCursorBlink = value; }\n // bool ConfigWindowsResizeFromEdges; // = false // [BETA] Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be the ImGuiWindowFlags_ResizeFromAnySide flag)\n get ConfigWindowsResizeFromEdges(): boolean { return this.native.ConfigWindowsResizeFromEdges; }\n set ConfigWindowsResizeFromEdges(value: boolean) { this.native.ConfigWindowsResizeFromEdges = value; }\n // bool ConfigWindowsMoveFromTitleBarOnly;// = false // [BETA] Set to true to only allow moving windows when clicked+dragged from the title bar. Windows without a title bar are not affected.\n get ConfigWindowsMoveFromTitleBarOnly(): boolean { return this.native.ConfigWindowsMoveFromTitleBarOnly; }\n set ConfigWindowsMoveFromTitleBarOnly(value: boolean) { this.native.ConfigWindowsMoveFromTitleBarOnly = value; }\n\n //------------------------------------------------------------------\n // Settings (User Functions)\n //------------------------------------------------------------------\n\n // Optional: Platform/Renderer back-end name (informational only! will be displayed in About Window) + User data for back-end/wrappers to store their own stuff.\n // const char* BackendPlatformName; // = NULL\n get BackendPlatformName(): string | null { return this.native.BackendPlatformName; }\n set BackendPlatformName(value: string | null) { this.native.BackendPlatformName = value; }\n // const char* BackendRendererName; // = NULL\n get BackendRendererName(): string | null { return this.native.BackendRendererName; }\n set BackendRendererName(value: string | null) { this.native.BackendRendererName = value; }\n // void* BackendPlatformUserData; // = NULL\n get BackendPlatformUserData(): string | null { return this.native.BackendPlatformUserData; }\n set BackendPlatformUserData(value: string | null) { this.native.BackendPlatformUserData = value; }\n // void* BackendRendererUserData; // = NULL\n get BackendRendererUserData(): string | null { return this.native.BackendRendererUserData; }\n set BackendRendererUserData(value: string | null) { this.native.BackendRendererUserData = value; }\n // void* BackendLanguageUserData; // = NULL\n get BackendLanguageUserData(): string | null { return this.native.BackendLanguageUserData; }\n set BackendLanguageUserData(value: string | null) { this.native.BackendLanguageUserData = value; }\n\n // Optional: access OS clipboard\n // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures)\n // const char* (*GetClipboardTextFn)(void* user_data);\n get GetClipboardTextFn(): ((user_data: any) => string) | null { return this.native.GetClipboardTextFn; }\n set GetClipboardTextFn(value: ((user_data: any) => string) | null) { this.native.GetClipboardTextFn = value; }\n // void (*SetClipboardTextFn)(void* user_data, const char* text);\n get SetClipboardTextFn(): ((user_data: any, text: string) => void) | null { return this.native.SetClipboardTextFn; }\n set SetClipboardTextFn(value: ((user_data: any, text: string) => void) | null) { this.native.SetClipboardTextFn = value; }\n // void* ClipboardUserData;\n get ClipboardUserData(): any { return this.native.ClipboardUserData; }\n set ClipboardUserData(value: any) { this.native.ClipboardUserData = value; }\n\n // Optional: override memory allocations. MemFreeFn() may be called with a NULL pointer.\n // (default to posix malloc/free)\n // void* (*MemAllocFn)(size_t sz);\n // void (*MemFreeFn)(void* ptr);\n\n // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME in Windows)\n // (default to use native imm32 api on Windows)\n // void (*ImeSetInputScreenPosFn)(int x, int y);\n // void* ImeWindowHandle; // (Windows) Set this to your HWND to get automatic IME cursor positioning.\n\n //------------------------------------------------------------------\n // Input - Fill before calling NewFrame()\n //------------------------------------------------------------------\n\n // ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX,-FLT_MAX) if mouse is unavailable (on another screen, etc.)\n get MousePos(): Bind.reference_ImVec2 { return this.native.MousePos; }\n // bool MouseDown[5]; // Mouse buttons: left, right, middle + extras. ImGui itself mostly only uses left button (BeginPopupContext** are using right button). Others buttons allows us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API.\n public MouseDown: boolean[] = new Proxy([], {\n get: (target: boolean[], key: PropertyKey): number | boolean => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseDown(Number(key));\n },\n set: (target: boolean[], key: PropertyKey, value: boolean): boolean => {\n return this.native._setAt_MouseDown(Number(key), value);\n },\n });\n // float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text.\n public get MouseWheel(): number { return this.native.MouseWheel; }\n public set MouseWheel(value: number) { this.native.MouseWheel = value; }\n // float MouseWheelH; // Mouse wheel (Horizontal). Most users don't have a mouse with an horizontal wheel, may not be filled by all back-ends.\n public get MouseWheelH(): number { return this.native.MouseWheelH; }\n public set MouseWheelH(value: number) { this.native.MouseWheelH = value; }\n // bool MouseDrawCursor; // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor).\n get MouseDrawCursor(): boolean { return this.native.MouseDrawCursor; } set MouseDrawCursor(value: boolean) { this.native.MouseDrawCursor = value; }\n // bool KeyCtrl; // Keyboard modifier pressed: Control\n get KeyCtrl(): boolean { return this.native.KeyCtrl; } set KeyCtrl(value: boolean) { this.native.KeyCtrl = value; }\n // bool KeyShift; // Keyboard modifier pressed: Shift\n get KeyShift(): boolean { return this.native.KeyShift; } set KeyShift(value: boolean) { this.native.KeyShift = value; }\n // bool KeyAlt; // Keyboard modifier pressed: Alt\n get KeyAlt(): boolean { return this.native.KeyAlt; } set KeyAlt(value: boolean) { this.native.KeyAlt = value; }\n // bool KeySuper; // Keyboard modifier pressed: Cmd/Super/Windows\n get KeySuper(): boolean { return this.native.KeySuper; } set KeySuper(value: boolean) { this.native.KeySuper = value; }\n // bool KeysDown[512]; // Keyboard keys that are pressed (in whatever storage order you naturally have access to keyboard data)\n public KeysDown: boolean[] = new Proxy([], {\n get: (target: boolean[], key: PropertyKey): number | boolean => {\n if (key === \"length\") { return 512; }\n return this.native._getAt_KeysDown(Number(key));\n },\n set: (target: boolean[], key: PropertyKey, value: boolean): boolean => {\n return this.native._setAt_KeysDown(Number(key), value);\n },\n });\n // float NavInputs[ImGuiNavInput_COUNT]; // Gamepad inputs (keyboard keys will be auto-mapped and be written here by ImGui::NewFrame)\n public NavInputs: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiNavInput.COUNT; }\n return this.native._getAt_NavInputs(Number(key));\n },\n set: (target: number[], key: PropertyKey, value: number): boolean => {\n return this.native._setAt_NavInputs(Number(key), value);\n },\n });\n\n // Functions\n // IMGUI_API void AddInputCharacter(ImWchar c); // Add new character into InputCharacters[]\n public AddInputCharacter(c: number): void { this.native.AddInputCharacter(c); }\n // IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Add new characters into InputCharacters[] from an UTF-8 string\n public AddInputCharactersUTF8(utf8_chars: string): void { this.native.AddInputCharactersUTF8(utf8_chars); }\n // inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Clear the text input buffer manually\n public ClearInputCharacters(): void { this.native.ClearInputCharacters(); }\n\n //------------------------------------------------------------------\n // Output - Retrieve after calling NewFrame()\n //------------------------------------------------------------------\n\n // bool WantCaptureMouse; // When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. This is set by ImGui when it wants to use your mouse (e.g. unclicked mouse is hovering a window, or a widget is active).\n get WantCaptureMouse(): boolean { return this.native.WantCaptureMouse; } set WantCaptureMouse(value: boolean) { this.native.WantCaptureMouse = value; }\n // bool WantCaptureKeyboard; // When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. This is set by ImGui when it wants to use your keyboard inputs.\n get WantCaptureKeyboard(): boolean { return this.native.WantCaptureKeyboard; } set WantCaptureKeyboard(value: boolean) { this.native.WantCaptureKeyboard = value; }\n // bool WantTextInput; // Mobile/console: when io.WantTextInput is true, you may display an on-screen keyboard. This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active).\n get WantTextInput(): boolean { return this.native.WantTextInput; } set WantTextInput(value: boolean) { this.native.WantTextInput = value; }\n // bool WantSetMousePos; // [BETA-NAV] MousePos has been altered, back-end should reposition mouse on next frame. Set only when 'NavMovesMouse=true'.\n get WantSetMousePos(): boolean { return this.native.WantSetMousePos; } set WantSetMousePos(value: boolean) { this.native.WantSetMousePos = value; }\n // bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. IMPORTANT: You need to clear io.WantSaveIniSettings yourself.\n get WantSaveIniSettings(): boolean { return this.native.WantSaveIniSettings; } set WantSaveIniSettings(value: boolean) { this.native.WantSaveIniSettings = value; }\n // bool NavActive; // Directional navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag.\n get NavActive(): boolean { return this.native.NavActive; } set NavActive(value: boolean) { this.native.NavActive = value; }\n // bool NavVisible; // Directional navigation is visible and allowed (will handle ImGuiKey_NavXXX events).\n get NavVisible(): boolean { return this.native.NavVisible; } set NavVisible(value: boolean) { this.native.NavVisible = value; }\n // float Framerate; // Application framerate estimation, in frame per second. Solely for convenience. Rolling average estimation based on IO.DeltaTime over 120 frames\n get Framerate(): number { return this.native.Framerate; }\n // int MetricsRenderVertices; // Vertices output during last call to Render()\n get MetricsRenderVertices(): number { return this.native.MetricsRenderVertices; }\n // int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3\n get MetricsRenderIndices(): number { return this.native.MetricsRenderIndices; }\n // int MetricsRenderWindows; // Number of visible windows\n get MetricsRenderWindows(): number { return this.native.MetricsRenderWindows; }\n // int MetricsActiveWindows; // Number of visible root windows (exclude child windows)\n get MetricsActiveWindows(): number { return this.native.MetricsActiveWindows; }\n // int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts.\n get MetricsActiveAllocations(): number { return this.native.MetricsActiveAllocations; }\n // ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta.\n get MouseDelta(): Readonly { return this.native.MouseDelta; }\n\n //------------------------------------------------------------------\n // [Internal] ImGui will maintain those fields. Forward compatibility not guaranteed!\n //------------------------------------------------------------------\n\n // ImVec2 MousePosPrev; // Previous mouse position temporary storage (nb: not for public use, set to MousePos in NewFrame())\n // ImVec2 MouseClickedPos[5]; // Position at time of clicking\n public MouseClickedPos: Array> = new Proxy([], {\n get: (target: Array>, key: PropertyKey): number | Readonly => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseClickedPos(Number(key));\n },\n });\n // float MouseClickedTime[5]; // Time of last click (used to figure out double-click)\n // bool MouseClicked[5]; // Mouse button went from !Down to Down\n // bool MouseDoubleClicked[5]; // Has mouse button been double-clicked?\n // bool MouseReleased[5]; // Mouse button went from Down to !Down\n // bool MouseDownOwned[5]; // Track if button was clicked inside a window. We don't request mouse capture from the application if click started outside ImGui bounds.\n // float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked)\n public MouseDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseDownDuration(Number(key));\n },\n });\n // float MouseDownDurationPrev[5]; // Previous time the mouse button has been down\n // ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point\n // float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point\n // float KeysDownDuration[512]; // Duration the keyboard key has been down (0.0f == just pressed)\n public KeysDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return 512; }\n return this.native._getAt_KeysDownDuration(Number(key));\n },\n });\n // float KeysDownDurationPrev[512]; // Previous duration the key has been down\n // float NavInputsDownDuration[ImGuiNavInput_COUNT];\n public NavInputsDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiNavInput.COUNT; }\n return this.native._getAt_NavInputsDownDuration(Number(key));\n },\n });\n // float NavInputsDownDurationPrev[ImGuiNavInput_COUNT];\n\n // IMGUI_API ImGuiIO();\n}\n\nconst _texturesById: Array = [];\n\n// Context creation and access, if you want to use multiple context, share context between modules (e.g. DLL).\n// All contexts share a same ImFontAtlas by default. If you want different font atlas, you can new() them and overwrite the GetIO().Fonts variable of an ImGui context.\n// All those functions are not reliant on the current context.\nexport class ImGuiContext {\n public static current_ctx: ImGuiContext | null = null;\n public static getTexture(index: number): ImTextureID | null {\n return _texturesById[index] || null;\n }\n public static setTexture(texture: ImTextureID | null): number {\n let index = _texturesById.indexOf(texture);\n if (index === -1) {\n for (let i = 0; i < _texturesById.length; ++i) {\n if (_texturesById[i] === null) {\n _texturesById[i] = texture;\n return i;\n }\n }\n index = _texturesById.length;\n _texturesById.push(texture);\n }\n return index;\n }\n\n constructor(public readonly native: Bind.WrapImGuiContext) {}\n}\n// IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL);\nexport function CreateContext(shared_font_atlas: ImFontAtlas | null = null): ImGuiContext | null {\n const ctx: ImGuiContext = new ImGuiContext(bind.CreateContext(shared_font_atlas ? shared_font_atlas.native : null));\n if (ImGuiContext.current_ctx === null) {\n ImGuiContext.current_ctx = ctx;\n }\n return ctx;\n}\n// IMGUI_API void DestroyContext(ImGuiContext* ctx = NULL); // NULL = Destroy current context\nexport function DestroyContext(ctx: ImGuiContext | null = null): void {\n if (ctx === null) {\n ctx = ImGuiContext.current_ctx;\n ImGuiContext.current_ctx = null;\n }\n bind.DestroyContext((ctx === null) ? null : ctx.native);\n}\n// IMGUI_API ImGuiContext* GetCurrentContext();\nexport function GetCurrentContext(): ImGuiContext | null {\n // const ctx_native: BindImGui.ImGuiContext | null = bind.GetCurrentContext();\n return ImGuiContext.current_ctx;\n}\n// IMGUI_API void SetCurrentContext(ImGuiContext* ctx);\nexport function SetCurrentContext(ctx: ImGuiContext | null): void {\n bind.SetCurrentContext((ctx === null) ? null : ctx.native);\n ImGuiContext.current_ctx = ctx;\n}\n\n// IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert);\nexport function DebugCheckVersionAndDataLayout(version_str: string, sz_io: number, sz_style: number, sz_vec2: number, sz_vec4: number, sz_draw_vert: number, sz_draw_idx: number): boolean {\n return bind.DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx);\n}\n\n// Main\n// IMGUI_API ImGuiIO& GetIO();\nexport function GetIO(): ImGuiIO { return new ImGuiIO(bind.GetIO()); }\n// IMGUI_API ImGuiStyle& GetStyle();\nexport function GetStyle(): ImGuiStyle { return new ImGuiStyle(bind.GetStyle()); }\n// IMGUI_API void NewFrame(); // start a new ImGui frame, you can submit any command from this point until Render()/EndFrame().\nexport function NewFrame(): void { bind.NewFrame(); }\n// IMGUI_API void EndFrame(); // ends the ImGui frame. automatically called by Render(), so most likely don't need to ever call that yourself directly. If you don't need to render you may call EndFrame() but you'll have wasted CPU already. If you don't need to render, better to not create any imgui windows instead!\nexport function EndFrame(): void { bind.EndFrame(); }\n// IMGUI_API void Render(); // ends the ImGui frame, finalize the draw data, then call your io.RenderDrawListsFn() function if set.\nexport function Render(): void { bind.Render(); }\n// IMGUI_API ImDrawData* GetDrawData(); // same value as passed to your io.RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame()\nexport function GetDrawData(): ImDrawData | null {\n const draw_data: Bind.reference_ImDrawData | null = bind.GetDrawData();\n return (draw_data === null) ? null : new ImDrawData(draw_data);\n}\n\n// Demo, Debug, Informations\n// IMGUI_API void ShowDemoWindow(bool* p_open = NULL); // create demo/test window (previously called ShowTestWindow). demonstrate most ImGui features. call this to learn about the library! try to make it always available in your application!\nexport function ShowDemoWindow(p_open: Bind.ImScalar | null = null): void { bind.ShowDemoWindow(p_open); }\n// IMGUI_API void ShowAboutWindow(bool* p_open = NULL); // create about window. display Dear ImGui version, credits and build/system information.\nexport function ShowAboutWindow(p_open: Bind.ImScalar | Bind.ImAccess | null = null): void {\n if (p_open === null) {\n bind.ShowAboutWindow(null);\n } else if (Array.isArray(p_open)) {\n bind.ShowAboutWindow(p_open);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n bind.ShowAboutWindow(ref_open);\n p_open(ref_open[0]);\n }\n}\n// IMGUI_API void ShowMetricsWindow(bool* p_open = NULL); // create metrics window. display ImGui internals: draw commands (with individual draw calls and vertices), window list, basic internal state, etc.\nexport function ShowMetricsWindow(p_open: Bind.ImScalar | Bind.ImAccess | null = null): void {\n if (p_open === null) {\n bind.ShowMetricsWindow(null);\n } else if (Array.isArray(p_open)) {\n bind.ShowMetricsWindow(p_open);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n bind.ShowMetricsWindow(ref_open);\n p_open(ref_open[0]);\n }\n}\n// IMGUI_API void ShowStyleEditor(ImGuiStyle* ref = NULL); // add style editor block (not a window). you can pass in a reference ImGuiStyle structure to compare to, revert to and save to (else it uses the default style)\nexport function ShowStyleEditor(ref: ImGuiStyle | null = null): void {\n if (ref === null) {\n bind.ShowStyleEditor(null);\n } else if (ref.internal instanceof bind.ImGuiStyle) {\n bind.ShowStyleEditor(ref.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(ref);\n bind.ShowStyleEditor(native);\n ref.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API bool ShowStyleSelector(const char* label);\nexport function ShowStyleSelector(label: string): boolean { return bind.ShowStyleSelector(label); }\n// IMGUI_API void ShowFontSelector(const char* label);\nexport function ShowFontSelector(label: string): void { bind.ShowFontSelector(label); }\n// IMGUI_API void ShowUserGuide(); // add basic help/info block (not a window): how to manipulate ImGui as a end-user (mouse/keyboard controls).\nexport function ShowUserGuide(): void { bind.ShowUserGuide(); }\n// IMGUI_API const char* GetVersion();\nexport function GetVersion(): string { return bind.GetVersion(); }\n\n// Styles\n// IMGUI_API void StyleColorsClassic(ImGuiStyle* dst = NULL);\nexport function StyleColorsClassic(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsClassic(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsClassic(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsClassic(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API void StyleColorsDark(ImGuiStyle* dst = NULL);\nexport function StyleColorsDark(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsDark(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsDark(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsDark(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API void StyleColorsLight(ImGuiStyle* dst = NULL);\nexport function StyleColorsLight(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsLight(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsLight(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsLight(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n\n// Window\n// IMGUI_API bool Begin(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); // push window to the stack and start appending to it. see .cpp for details. return false when window is collapsed, so you can early out in your code. 'bool* p_open' creates a widget on the upper-right to close the window (which sets your bool to false).\nexport function Begin(name: string, open: Bind.ImScalar | Bind.ImAccess | null = null, flags: ImGuiWindowFlags = 0): boolean {\n if (open === null) {\n return bind.Begin(name, null, flags);\n } else if (Array.isArray(open)) {\n return bind.Begin(name, open, flags);\n } else {\n const ref_open: Bind.ImScalar = [ open() ];\n const opened: boolean = bind.Begin(name, ref_open, flags);\n open(ref_open[0]);\n return opened;\n }\n}\n// IMGUI_API void End(); // finish appending to current window, pop it off the window stack.\nexport function End(): void { bind.End(); }\n// IMGUI_API bool BeginChild(const char* str_id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags extra_flags = 0); // begin a scrolling region. size==0.0f: use remaining window size, size<0.0f: use remaining window size minus abs(size). size>0.0f: fixed size. each axis can use a different mode, e.g. ImVec2(0,400).\n// IMGUI_API bool BeginChild(ImGuiID id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags extra_flags = 0); // \"\nexport function BeginChild(id: string | Bind.ImGuiID, size: Readonly = ImVec2.ZERO, border: boolean = false, extra_flags: ImGuiWindowFlags = 0): boolean {\n return bind.BeginChild(id, size, border, extra_flags);\n}\n// IMGUI_API void EndChild();\nexport function EndChild(): void { bind.EndChild(); }\n// IMGUI_API ImVec2 GetContentRegionMax(); // current content boundaries (typically window boundaries including scrolling, or current column boundaries), in windows coordinates\nexport function GetContentRegionMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetContentRegionMax(out);\n}\n// IMGUI_API ImVec2 GetContentRegionAvail(); // == GetContentRegionMax() - GetCursorPos()\nexport function GetContentRegionAvail(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetContentRegionAvail(out);\n}\n// IMGUI_API ImVec2 GetWindowContentRegionMin(); // content boundaries min (roughly (0,0)-Scroll), in window coordinates\nexport function GetWindowContentRegionMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowContentRegionMin(out);\n}\n// IMGUI_API ImVec2 GetWindowContentRegionMax(); // content boundaries max (roughly (0,0)+Size-Scroll) where Size can be override with SetNextWindowContentSize(), in window coordinates\nexport function GetWindowContentRegionMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowContentRegionMax(out);\n}\n// IMGUI_API float GetWindowContentRegionWidth(); //\nexport function GetWindowContentRegionWidth(): number { return bind.GetWindowContentRegionWidth(); }\n// IMGUI_API ImDrawList* GetWindowDrawList(); // get rendering command-list if you want to append your own draw primitives\nexport function GetWindowDrawList(): ImDrawList {\n return new ImDrawList(bind.GetWindowDrawList());\n}\n// IMGUI_API ImVec2 GetWindowPos(); // get current window position in screen space (useful if you want to do your own drawing via the DrawList api)\nexport function GetWindowPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowPos(out);\n}\n// IMGUI_API ImVec2 GetWindowSize(); // get current window size\nexport function GetWindowSize(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowSize(out);\n}\n// IMGUI_API float GetWindowWidth();\nexport function GetWindowWidth(): number { return bind.GetWindowWidth(); }\n// IMGUI_API float GetWindowHeight();\nexport function GetWindowHeight(): number { return bind.GetWindowHeight(); }\n// IMGUI_API bool IsWindowCollapsed();\nexport function IsWindowCollapsed(): boolean { return bind.IsWindowCollapsed(); }\n// IMGUI_API bool IsWindowAppearing();\nexport function IsWindowAppearing(): boolean { return bind.IsWindowAppearing(); }\n// IMGUI_API void SetWindowFontScale(float scale); // per-window font scale. Adjust IO.FontGlobalScale if you want to scale all windows\nexport function SetWindowFontScale(scale: number): void { bind.SetWindowFontScale(scale); }\n\n// IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivot = ImVec2(0,0)); // set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc.\nexport function SetNextWindowPos(pos: Readonly, cond: ImGuiCond = 0, pivot: Readonly = ImVec2.ZERO): void {\n bind.SetNextWindowPos(pos, cond, pivot);\n}\n// IMGUI_API void SetNextWindowSize(const ImVec2& size, ImGuiCond cond = 0); // set next window size. set axis to 0.0f to force an auto-fit on this axis. call before Begin()\nexport function SetNextWindowSize(pos: Readonly, cond: ImGuiCond = 0): void {\n bind.SetNextWindowSize(pos, cond);\n}\n// IMGUI_API void SetNextWindowSizeConstraints(const ImVec2& size_min, const ImVec2& size_max, ImGuiSizeConstraintCallback custom_callback = NULL, void* custom_callback_data = NULL); // set next window size limits. use -1,-1 on either X/Y axis to preserve the current size. Use callback to apply non-trivial programmatic constraints.\nexport function SetNextWindowSizeConstraints(size_min: Readonly, size_max: Readonly, custom_callback: ImGuiSizeConstraintCallback | null = null, custom_callback_data: any = null): void {\n if (custom_callback) {\n bind.SetNextWindowSizeConstraints(size_min, size_max, (data: Bind.reference_ImGuiSizeCallbackData): void => {\n custom_callback(new ImGuiSizeCallbackData(data, custom_callback_data));\n }, null);\n } else {\n bind.SetNextWindowSizeConstraints(size_min, size_max, null, null);\n }\n}\n// IMGUI_API void SetNextWindowContentSize(const ImVec2& size); // set next window content size (~ enforce the range of scrollbars). not including window decorations (title bar, menu bar, etc.). set an axis to 0.0f to leave it automatic. call before Begin()\nexport function SetNextWindowContentSize(size: Readonly): void {\n bind.SetNextWindowContentSize(size);\n}\n// IMGUI_API void SetNextWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // set next window collapsed state. call before Begin()\nexport function SetNextWindowCollapsed(collapsed: boolean, cond: ImGuiCond = 0): void {\n bind.SetNextWindowCollapsed(collapsed, cond);\n}\n// IMGUI_API void SetNextWindowFocus(); // set next window to be focused / front-most. call before Begin()\nexport function SetNextWindowFocus(): void { bind.SetNextWindowFocus(); }\n// IMGUI_API void SetNextWindowBgAlpha(float alpha); // set next window background color alpha. helper to easily modify ImGuiCol_WindowBg/ChildBg/PopupBg.\nexport function SetNextWindowBgAlpha(alpha: number): void { bind.SetNextWindowBgAlpha(alpha); }\n// IMGUI_API void SetWindowPos(const ImVec2& pos, ImGuiCond cond = 0); // (not recommended) set current window position - call within Begin()/End(). prefer using SetNextWindowPos(), as this may incur tearing and side-effects.\n// IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); // (not recommended) set current window size - call within Begin()/End(). set to ImVec2(0,0) to force an auto-fit. prefer using SetNextWindowSize(), as this may incur tearing and minor side-effects.\n// IMGUI_API void SetWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // (not recommended) set current window collapsed state. prefer using SetNextWindowCollapsed().\n// IMGUI_API void SetWindowFocus(); // (not recommended) set current window to be focused / front-most. prefer using SetNextWindowFocus().\n// IMGUI_API void SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond = 0); // set named window position.\n// IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); // set named window size. set axis to 0.0f to force an auto-fit on this axis.\n// IMGUI_API void SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond = 0); // set named window collapsed state\n// IMGUI_API void SetWindowFocus(const char* name); // set named window to be focused / front-most. use NULL to remove focus.\nexport function SetWindowPos(name_or_pos: string | Readonly, pos_or_cond: Readonly | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_pos) === \"string\") {\n bind.SetWindowNamePos(name_or_pos, pos_or_cond as Readonly, cond);\n return;\n } else {\n bind.SetWindowPos(name_or_pos, pos_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowSize(name_or_size: string | Readonly, size_or_cond: Readonly | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_size) === \"string\") {\n bind.SetWindowNamePos(name_or_size, size_or_cond as Readonly, cond);\n } else {\n bind.SetWindowSize(name_or_size, size_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowCollapsed(name_or_collapsed: string | boolean, collapsed_or_cond: boolean | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_collapsed) === \"string\") {\n bind.SetWindowNameCollapsed(name_or_collapsed, collapsed_or_cond as boolean, cond);\n } else {\n bind.SetWindowCollapsed(name_or_collapsed, collapsed_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowFocus(name?: string): void {\n if (typeof(name) === \"string\") {\n bind.SetWindowNameFocus(name);\n } else {\n bind.SetWindowFocus();\n }\n}\n\n// IMGUI_API float GetScrollX(); // get scrolling amount [0..GetScrollMaxX()]\nexport function GetScrollX(): number { return bind.GetScrollX(); }\n// IMGUI_API float GetScrollY(); // get scrolling amount [0..GetScrollMaxY()]\nexport function GetScrollY(): number { return bind.GetScrollY(); }\n// IMGUI_API float GetScrollMaxX(); // get maximum scrolling amount ~~ ContentSize.X - WindowSize.X\nexport function GetScrollMaxX(): number { return bind.GetScrollMaxX(); }\n// IMGUI_API float GetScrollMaxY(); // get maximum scrolling amount ~~ ContentSize.Y - WindowSize.Y\nexport function GetScrollMaxY(): number { return bind.GetScrollMaxY(); }\n// IMGUI_API void SetScrollX(float scroll_x); // set scrolling amount [0..GetScrollMaxX()]\nexport function SetScrollX(scroll_x: number): void { bind.SetScrollX(scroll_x); }\n// IMGUI_API void SetScrollY(float scroll_y); // set scrolling amount [0..GetScrollMaxY()]\nexport function SetScrollY(scroll_y: number): void { bind.SetScrollY(scroll_y); }\n// IMGUI_API void SetScrollHereY(float center_y_ratio = 0.5f); // adjust scrolling amount to make current cursor position visible. center_y_ratio=0.0: top, 0.5: center, 1.0: bottom. When using to make a \"default/current item\" visible, consider using SetItemDefaultFocus() instead.\nexport function SetScrollHereY(center_y_ratio: number = 0.5): void {\n bind.SetScrollHereY(center_y_ratio);\n}\n// IMGUI_API void SetScrollFromPosY(float pos_y, float center_y_ratio = 0.5f); // adjust scrolling amount to make given position valid. use GetCursorPos() or GetCursorStartPos()+offset to get valid positions.\nexport function SetScrollFromPosY(pos_y: number, center_y_ratio: number = 0.5): void {\n bind.SetScrollFromPosY(pos_y, center_y_ratio);\n}\n// IMGUI_API void SetStateStorage(ImGuiStorage* tree); // replace tree state storage with our own (if you want to manipulate it yourself, typically clear subsection of it)\n// IMGUI_API ImGuiStorage* GetStateStorage();\n\n// Parameters stacks (shared)\n// IMGUI_API void PushFont(ImFont* font); // use NULL as a shortcut to push default font\nexport function PushFont(font: ImFont | null): void { bind.PushFont(font ? font.native : null); }\n// IMGUI_API void PopFont();\nexport function PopFont(): void { bind.PopFont(); }\n// IMGUI_API void PushStyleColor(ImGuiCol idx, ImU32 col);\n// IMGUI_API void PushStyleColor(ImGuiCol idx, const ImVec4& col);\nexport function PushStyleColor(idx: ImGuiCol, col: Bind.ImU32 | Readonly | Readonly): void {\n if (col instanceof ImColor) {\n bind.PushStyleColor(idx, col.Value);\n } else {\n bind.PushStyleColor(idx, col as (Bind.ImU32 | Readonly));\n }\n}\n// IMGUI_API void PopStyleColor(int count = 1);\nexport function PopStyleColor(count: number = 1): void {\n bind.PopStyleColor(count);\n}\n// IMGUI_API void PushStyleVar(ImGuiStyleVar idx, float val);\n// IMGUI_API void PushStyleVar(ImGuiStyleVar idx, const ImVec2& val);\nexport function PushStyleVar(idx: ImGuiStyleVar, val: number | Readonly): void {\n bind.PushStyleVar(idx, val);\n}\n// IMGUI_API void PopStyleVar(int count = 1);\nexport function PopStyleVar(count: number = 1): void {\n bind.PopStyleVar(count);\n}\n// IMGUI_API const ImVec4& GetStyleColorVec4(ImGuiCol idx); // retrieve style color as stored in ImGuiStyle structure. use to feed back into PushStyleColor(), otherwhise use GetColorU32() to get style color + style alpha.\nexport function GetStyleColorVec4(idx: ImGuiCol): Readonly {\n return bind.GetStyleColorVec4(idx);\n}\n// IMGUI_API ImFont* GetFont(); // get current font\nexport function GetFont(): ImFont {\n return new ImFont(bind.GetFont());\n}\n// IMGUI_API float GetFontSize(); // get current font size (= height in pixels) of current font with current scale applied\nexport function GetFontSize(): number { return bind.GetFontSize(); }\n// IMGUI_API ImVec2 GetFontTexUvWhitePixel(); // get UV coordinate for a while pixel, useful to draw custom shapes via the ImDrawList API\nexport function GetFontTexUvWhitePixel(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetFontTexUvWhitePixel(out);\n}\n// IMGUI_API ImU32 GetColorU32(ImGuiCol idx, float alpha_mul = 1.0f); // retrieve given style color with style alpha applied and optional extra alpha multiplier\n// IMGUI_API ImU32 GetColorU32(const ImVec4& col); // retrieve given color with style alpha applied\n// IMGUI_API ImU32 GetColorU32(ImU32 col); // retrieve given color with style alpha applied\nexport function GetColorU32(idx: ImGuiCol, alpha_mul?: number): Bind.ImU32;\nexport function GetColorU32(col: Readonly): Bind.ImU32;\nexport function GetColorU32(col: Bind.ImU32): Bind.ImU32;\nexport function GetColorU32(...args: any[]): Bind.ImU32 {\n if (args.length === 1) {\n if (typeof(args[0]) === \"number\") {\n // TODO: ImGuiCol or ImU32\n const idx: ImGuiCol = args[0];\n return bind.GetColorU32_A(idx, 1.0);\n } else {\n const col: Readonly = args[0];\n return bind.GetColorU32_B(col);\n }\n } else {\n const idx: ImGuiCol = args[0];\n const alpha_mul: number = args[1];\n return bind.GetColorU32_A(idx, alpha_mul);\n }\n}\n\n// Parameters stacks (current window)\n// IMGUI_API void PushItemWidth(float item_width); // width of items for the common item+label case, pixels. 0.0f = default to ~2/3 of windows width, >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)\nexport function PushItemWidth(item_width: number): void { bind.PushItemWidth(item_width); }\n// IMGUI_API void PopItemWidth();\nexport function PopItemWidth(): void { bind.PopItemWidth(); }\n// IMGUI_API float CalcItemWidth(); // width of item given pushed settings and current cursor position\nexport function SetNextItemWidth(item_width: number): void { bind.SetNextItemWidth(item_width); } // set width of the _next_ common large \"item+label\" widget. >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)\nexport function CalcItemWidth(): number { return bind.CalcItemWidth(); }\n// IMGUI_API void PushTextWrapPos(float wrap_pos_x = 0.0f); // word-wrapping for Text*() commands. < 0.0f: no wrapping; 0.0f: wrap to end of window (or column); > 0.0f: wrap at 'wrap_pos_x' position in window local space\nexport function PushTextWrapPos(wrap_pos_x: number = 0.0): void {\n bind.PushTextWrapPos(wrap_pos_x);\n}\n// IMGUI_API void PopTextWrapPos();\nexport function PopTextWrapPos(): void { bind.PopTextWrapPos(); }\n// IMGUI_API void PushAllowKeyboardFocus(bool allow_keyboard_focus); // allow focusing using TAB/Shift-TAB, enabled by default but you can disable it for certain widgets\nexport function PushAllowKeyboardFocus(allow_keyboard_focus: boolean): void { bind.PushAllowKeyboardFocus(allow_keyboard_focus); }\n// IMGUI_API void PopAllowKeyboardFocus();\nexport function PopAllowKeyboardFocus(): void { bind.PopAllowKeyboardFocus(); }\n// IMGUI_API void PushButtonRepeat(bool repeat); // in 'repeat' mode, Button*() functions return repeated true in a typematic manner (using io.KeyRepeatDelay/io.KeyRepeatRate setting). Note that you can call IsItemActive() after any Button() to tell if the button is held in the current frame.\nexport function PushButtonRepeat(repeat: boolean): void { bind.PushButtonRepeat(repeat); }\n// IMGUI_API void PopButtonRepeat();\nexport function PopButtonRepeat(): void { bind.PopButtonRepeat(); }\n\n// Cursor / Layout\n// IMGUI_API void Separator(); // separator, generally horizontal. inside a menu bar or in horizontal layout mode, this becomes a vertical separator.\nexport function Separator(): void { bind.Separator(); }\n// IMGUI_API void SameLine(float pos_x = 0.0f, float spacing_w = -1.0f); // call between widgets or groups to layout them horizontally\nexport function SameLine(pos_x: number = 0.0, spacing_w: number = -1.0): void {\n bind.SameLine(pos_x, spacing_w);\n}\n// IMGUI_API void NewLine(); // undo a SameLine()\nexport function NewLine(): void { bind.NewLine(); }\n// IMGUI_API void Spacing(); // add vertical spacing\nexport function Spacing(): void { bind.Spacing(); }\n// IMGUI_API void Dummy(const ImVec2& size); // add a dummy item of given size\nexport function Dummy(size: Readonly): void { bind.Dummy(size); }\n// IMGUI_API void Indent(float indent_w = 0.0f); // move content position toward the right, by style.IndentSpacing or indent_w if != 0\nexport function Indent(indent_w: number = 0.0) { bind.Indent(indent_w); }\n// IMGUI_API void Unindent(float indent_w = 0.0f); // move content position back to the left, by style.IndentSpacing or indent_w if != 0\nexport function Unindent(indent_w: number = 0.0) { bind.Unindent(indent_w); }\n// IMGUI_API void BeginGroup(); // lock horizontal starting position + capture group bounding box into one \"item\" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.)\nexport function BeginGroup(): void { bind.BeginGroup(); }\n// IMGUI_API void EndGroup();\nexport function EndGroup(): void { bind.EndGroup(); }\n// IMGUI_API ImVec2 GetCursorPos(); // cursor position is relative to window position\nexport function GetCursorPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorPos(out); }\n// IMGUI_API float GetCursorPosX(); // \"\nexport function GetCursorPosX(): number { return bind.GetCursorPosX(); }\n// IMGUI_API float GetCursorPosY(); // \"\nexport function GetCursorPosY(): number { return bind.GetCursorPosY(); }\n// IMGUI_API void SetCursorPos(const ImVec2& local_pos); // \"\nexport function SetCursorPos(local_pos: Readonly): void { bind.SetCursorPos(local_pos); }\n// IMGUI_API void SetCursorPosX(float x); // \"\nexport function SetCursorPosX(x: number): void { bind.SetCursorPosX(x); }\n// IMGUI_API void SetCursorPosY(float y); // \"\nexport function SetCursorPosY(y: number): void { bind.SetCursorPosY(y); }\n// IMGUI_API ImVec2 GetCursorStartPos(); // initial cursor position\nexport function GetCursorStartPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorStartPos(out); }\n// IMGUI_API ImVec2 GetCursorScreenPos(); // cursor position in absolute screen coordinates [0..io.DisplaySize] (useful to work with ImDrawList API)\nexport function GetCursorScreenPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorScreenPos(out); }\n// IMGUI_API void SetCursorScreenPos(const ImVec2& pos); // cursor position in absolute screen coordinates [0..io.DisplaySize]\nexport function SetCursorScreenPos(pos: Readonly): void { bind.SetCursorScreenPos(pos); }\n// IMGUI_API void AlignTextToFramePadding(); // vertically align/lower upcoming text to FramePadding.y so that it will aligns to upcoming widgets (call if you have text on a line before regular widgets)\nexport function AlignTextToFramePadding(): void { bind.AlignTextToFramePadding(); }\n// IMGUI_API float GetTextLineHeight(); // ~ FontSize\nexport function GetTextLineHeight(): number { return bind.GetTextLineHeight(); }\n// IMGUI_API float GetTextLineHeightWithSpacing(); // ~ FontSize + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of text)\nexport function GetTextLineHeightWithSpacing(): number { return bind.GetTextLineHeightWithSpacing(); }\n// IMGUI_API float GetFrameHeight(); // ~ FontSize + style.FramePadding.y * 2\nexport function GetFrameHeight(): number { return bind.GetFrameHeight(); }\n// IMGUI_API float GetFrameHeightWithSpacing(); // ~ FontSize + style.FramePadding.y * 2 + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of framed widgets)\nexport function GetFrameHeightWithSpacing(): number { return bind.GetFrameHeightWithSpacing(); }\n\n// Columns\n// You can also use SameLine(pos_x) for simplified columns. The columns API is still work-in-progress and rather lacking.\n// IMGUI_API void Columns(int count = 1, const char* id = NULL, bool border = true);\nexport function Columns(count: number = 1, id: string | null = null, border: boolean = true): void {\n id = id || \"\";\n bind.Columns(count, id, border);\n}\n// IMGUI_API void NextColumn(); // next column, defaults to current row or next row if the current row is finished\nexport function NextColumn(): void { bind.NextColumn(); }\n// IMGUI_API int GetColumnIndex(); // get current column index\nexport function GetColumnIndex(): number { return bind.GetColumnIndex(); }\n// IMGUI_API float GetColumnWidth(int column_index = -1); // get column width (in pixels). pass -1 to use current column\nexport function GetColumnWidth(column_index: number = -1): number {\n return bind.GetColumnWidth(column_index);\n}\n// IMGUI_API void SetColumnWidth(int column_index, float width); // set column width (in pixels). pass -1 to use current column\nexport function SetColumnWidth(column_index: number, width: number): void { bind.SetColumnWidth(column_index, width); }\n// IMGUI_API float GetColumnOffset(int column_index = -1); // get position of column line (in pixels, from the left side of the contents region). pass -1 to use current column, otherwise 0..GetColumnsCount() inclusive. column 0 is typically 0.0f\nexport function GetColumnOffset(column_index: number = -1): number {\n return bind.GetColumnOffset(column_index);\n}\n// IMGUI_API void SetColumnOffset(int column_index, float offset_x); // set position of column line (in pixels, from the left side of the contents region). pass -1 to use current column\nexport function SetColumnOffset(column_index: number, offset_x: number): void { bind.SetColumnOffset(column_index, offset_x); }\n// IMGUI_API int GetColumnsCount();\nexport function GetColumnsCount(): number { return bind.GetColumnsCount(); }\n\n// ID scopes\n// If you are creating widgets in a loop you most likely want to push a unique identifier (e.g. object pointer, loop index) so ImGui can differentiate them.\n// You can also use the \"##foobar\" syntax within widget label to distinguish them from each others. Read \"A primer on the use of labels/IDs\" in the FAQ for more details.\n// IMGUI_API void PushID(const char* str_id); // push identifier into the ID stack. IDs are hash of the entire stack!\n// IMGUI_API void PushID(const char* str_id_begin, const char* str_id_end);\n// IMGUI_API void PushID(const void* ptr_id);\n// IMGUI_API void PushID(int int_id);\nexport function PushID(id: string | number): void { bind.PushID(id); }\n// IMGUI_API void PopID();\nexport function PopID(): void { bind.PopID(); }\n// IMGUI_API ImGuiID GetID(const char* str_id); // calculate unique ID (hash of whole ID stack + given parameter). e.g. if you want to query into ImGuiStorage yourself\n// IMGUI_API ImGuiID GetID(const char* str_id_begin, const char* str_id_end);\n// IMGUI_API ImGuiID GetID(const void* ptr_id);\nexport function GetID(id: string | number): Bind.ImGuiID { return bind.GetID(id); }\n\n// Widgets: Text\n// IMGUI_API void TextUnformatted(const char* text, const char* text_end = NULL); // raw text without formatting. Roughly equivalent to Text(\"%s\", text) but: A) doesn't require null terminated string if 'text_end' is specified, B) it's faster, no memory copy is done, no buffer size limits, recommended for long chunks of text.\nexport function TextUnformatted(text: string, text_end: number | null = null): void { bind.TextUnformatted(text_end !== null ? text.substring(0, text_end) : text); }\n// IMGUI_API void Text(const char* fmt, ...) IM_FMTARGS(1); // simple formatted text\n// IMGUI_API void TextV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function Text(fmt: string/*, ...args: any[]*/): void { bind.Text(fmt/*, ...args*/); }\n// IMGUI_API void TextColored(const ImVec4& col, const char* fmt, ...) IM_FMTARGS(2); // shortcut for PushStyleColor(ImGuiCol_Text, col); Text(fmt, ...); PopStyleColor();\n// IMGUI_API void TextColoredV(const ImVec4& col, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function TextColored(col: Readonly | Readonly, fmt: string/*, ...args: any[]*/): void {\n bind.TextColored((col instanceof ImColor) ? col.Value : col as Readonly, fmt/*, ...args*/);\n}\n// IMGUI_API void TextDisabled(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushStyleColor(ImGuiCol_Text, style.Colors[ImGuiCol_TextDisabled]); Text(fmt, ...); PopStyleColor();\n// IMGUI_API void TextDisabledV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function TextDisabled(fmt: string/*, ...args: any[]*/): void { bind.TextDisabled(fmt/*, ...args*/); }\n// IMGUI_API void TextWrapped(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize().\n// IMGUI_API void TextWrappedV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function TextWrapped(fmt: string/*, ...args: any[]*/): void { bind.TextWrapped(fmt/*, ...args*/); }\n// IMGUI_API void LabelText(const char* label, const char* fmt, ...) IM_FMTARGS(2); // display text+label aligned the same way as value+label widgets\n// IMGUI_API void LabelTextV(const char* label, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function LabelText(label: string, fmt: string/*, ...args: any[]*/): void { bind.LabelText(label, fmt/*, ...args*/); }\n// IMGUI_API void BulletText(const char* fmt, ...) IM_FMTARGS(1); // shortcut for Bullet()+Text()\n// IMGUI_API void BulletTextV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function BulletText(fmt: string/*, ...args: any[]*/): void { bind.BulletText(fmt/*, ...args*/); }\n// IMGUI_API void Bullet(); // draw a small circle and keep the cursor on the same line. advance cursor x position by GetTreeNodeToLabelSpacing(), same distance that TreeNode() uses\nexport function Bullet(): void { bind.Bullet(); }\n\n// Widgets: Main\n// IMGUI_API bool Button(const char* label, const ImVec2& size = ImVec2(0,0)); // button\nexport function Button(label: string, size: Readonly = ImVec2.ZERO): boolean {\n return bind.Button(label, size);\n}\n// IMGUI_API bool SmallButton(const char* label); // button with FramePadding=(0,0) to easily embed within text\nexport function SmallButton(label: string): boolean { return bind.SmallButton(label); }\n// IMGUI_API bool ArrowButton(const char* str_id, ImGuiDir dir); // square button with an arrow shape\nexport function ArrowButton(str_id: string, dir: ImGuiDir): boolean { return bind.ArrowButton(str_id, dir); }\n// IMGUI_API bool InvisibleButton(const char* str_id, const ImVec2& size); // button behavior without the visuals, useful to build custom behaviors using the public api (along with IsItemActive, IsItemHovered, etc.)\nexport function InvisibleButton(str_id: string, size: Readonly): boolean {\n return bind.InvisibleButton(str_id, size);\n}\n// IMGUI_API void Image(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0,0), const ImVec2& uv1 = ImVec2(1,1), const ImVec4& tint_col = ImVec4(1,1,1,1), const ImVec4& border_col = ImVec4(0,0,0,0));\nexport function Image(user_texture_id: ImTextureID | null, size: Readonly, uv0: Readonly = ImVec2.ZERO, uv1: Readonly = ImVec2.UNIT, tint_col: Readonly = ImVec4.WHITE, border_col: Readonly = ImVec4.ZERO): void {\n bind.Image(ImGuiContext.setTexture(user_texture_id), size, uv0, uv1, tint_col, border_col);\n}\n// IMGUI_API bool ImageButton(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0,0), const ImVec2& uv1 = ImVec2(1,1), int frame_padding = -1, const ImVec4& bg_col = ImVec4(0,0,0,0), const ImVec4& tint_col = ImVec4(1,1,1,1)); // <0 frame_padding uses default frame padding settings. 0 for no padding\nexport function ImageButton(user_texture_id: ImTextureID | null, size: Readonly, uv0: Readonly = ImVec2.ZERO, uv1: Readonly = ImVec2.UNIT, frame_padding: number = -1, bg_col: Readonly = ImVec4.ZERO, tint_col: Readonly = ImVec4.WHITE): boolean {\n return bind.ImageButton(ImGuiContext.setTexture(user_texture_id), size, uv0, uv1, frame_padding, bg_col, tint_col);\n}\n// IMGUI_API bool Checkbox(const char* label, bool* v);\nexport function Checkbox(label: string, v: Bind.ImScalar | Bind.ImAccess): boolean {\n if (Array.isArray(v)) {\n return bind.Checkbox(label, v);\n } else {\n const ref_v: Bind.ImScalar = [ v() ];\n const ret = bind.Checkbox(label, ref_v);\n v(ref_v[0]);\n return ret;\n }\n}\n// IMGUI_API bool CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value);\nexport function CheckboxFlags(label: string, flags: Bind.ImAccess | Bind.ImScalar, flags_value: number): boolean {\n if (Array.isArray(flags)) {\n return bind.CheckboxFlags(label, flags, flags_value);\n } else {\n const ref_flags: Bind.ImScalar = [ flags() ];\n const ret = bind.CheckboxFlags(label, ref_flags, flags_value);\n flags(ref_flags[0]);\n return ret;\n }\n}\n// IMGUI_API bool RadioButton(const char* label, bool active);\n// IMGUI_API bool RadioButton(const char* label, int* v, int v_button);\nexport function RadioButton(label: string, active: boolean): boolean;\nexport function RadioButton(label: string, v: Bind.ImAccess | Bind.ImScalar, v_button: number): boolean;\nexport function RadioButton(label: string, ...args: any[]): boolean {\n if (typeof(args[0]) === \"boolean\") {\n const active: boolean = args[0];\n return bind.RadioButton_A(label, active);\n } else {\n const v: Bind.ImAccess | Bind.ImScalar = args[0];\n const v_button: number = args[1];\n const _v: Bind.ImScalar = Array.isArray(v) ? v : [ v() ];\n const ret = bind.RadioButton_B(label, _v, v_button);\n if (!Array.isArray(v)) { v(_v[0]); }\n return ret;\n }\n}\n// IMGUI_API void PlotLines(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), int stride = sizeof(float));\n// IMGUI_API void PlotLines(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));\nexport type PlotLinesValueGetter = (data: any, idx: number) => number;\nexport function PlotLines(label: string, values: ArrayLike, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly, stride?: number): void;\nexport function PlotLines(label: string, values_getter: PlotLinesValueGetter, data: any, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly): void;\nexport function PlotLines(label: string, ...args: any[]): void {\n if (Array.isArray(args[0])) {\n const values: ArrayLike = args[0];\n const values_getter: PlotLinesValueGetter = (data: any, idx: number): number => values[idx * stride];\n const values_count: number = typeof(args[1]) === \"number\" ? args[1] : values.length;\n const values_offset: number = typeof(args[2]) === \"number\" ? args[2] : 0;\n const overlay_text: string | null = typeof(args[3]) === \"string\" ? args[3] : null;\n const scale_min: number = typeof(args[4]) === \"number\" ? args[4] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const graph_size: Readonly = args[6] || ImVec2.ZERO;\n const stride: number = typeof(args[7]) === \"number\" ? args[7] : 1;\n bind.PlotLines(label, values_getter, null, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n } else {\n const values_getter: PlotLinesValueGetter = args[0];\n const data: any = args[1];\n const values_count: number = args[2];\n const values_offset: number = typeof(args[3]) === \"number\" ? args[3] : 0;\n const overlay_text: string | null = typeof(args[4]) === \"string\" ? args[4] : null;\n const scale_min: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[6]) === \"number\" ? args[6] : Number.MAX_VALUE;\n const graph_size: Readonly = args[7] || ImVec2.ZERO;\n bind.PlotLines(label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n }\n}\n// IMGUI_API void PlotHistogram(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), int stride = sizeof(float));\n// IMGUI_API void PlotHistogram(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));\nexport type PlotHistogramValueGetter = (data: any, idx: number) => number;\nexport function PlotHistogram(label: string, values: ArrayLike, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly, stride?: number): void;\nexport function PlotHistogram(label: string, values_getter: PlotHistogramValueGetter, data: any, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly): void;\nexport function PlotHistogram(label: string, ...args: any[]): void {\n if (Array.isArray(args[0])) {\n const values: ArrayLike = args[0];\n const values_getter: PlotHistogramValueGetter = (data: any, idx: number): number => values[idx * stride];\n const values_count: number = typeof(args[1]) === \"number\" ? args[1] : values.length;\n const values_offset: number = typeof(args[2]) === \"number\" ? args[2] : 0;\n const overlay_text: string | null = typeof(args[3]) === \"string\" ? args[3] : null;\n const scale_min: number = typeof(args[4]) === \"number\" ? args[4] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const graph_size: Readonly = args[6] || ImVec2.ZERO;\n const stride: number = typeof(args[7]) === \"number\" ? args[7] : 1;\n bind.PlotHistogram(label, values_getter, null, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n } else {\n const values_getter: PlotHistogramValueGetter = args[0];\n const data: any = args[1];\n const values_count: number = args[2];\n const values_offset: number = typeof(args[3]) === \"number\" ? args[3] : 0;\n const overlay_text: string | null = typeof(args[4]) === \"string\" ? args[4] : null;\n const scale_min: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[6]) === \"number\" ? args[6] : Number.MAX_VALUE;\n const graph_size: Readonly = args[7] || ImVec2.ZERO;\n bind.PlotHistogram(label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n }\n}\n// IMGUI_API void ProgressBar(float fraction, const ImVec2& size_arg = ImVec2(-1,0), const char* overlay = NULL);\nexport function ProgressBar(fraction: number, size_arg: Readonly = new ImVec2(-1, 0), overlay: string | null = null): void {\n bind.ProgressBar(fraction, size_arg, overlay);\n}\n\n// Widgets: Combo Box\n// The new BeginCombo()/EndCombo() api allows you to manage your contents and selection state however you want it.\n// The old Combo() api are helpers over BeginCombo()/EndCombo() which are kept available for convenience purpose.\n// IMGUI_API bool BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags = 0);\nexport function BeginCombo(label: string, preview_value: string | null = null, flags: ImGuiComboFlags = 0): boolean {\n return bind.BeginCombo(label, preview_value, flags);\n}\n// IMGUI_API void EndCombo();\nexport function EndCombo(): void { bind.EndCombo(); }\n// IMGUI_API bool Combo(const char* label, int* current_item, const char* const items[], int items_count, int popup_max_height_in_items = -1);\n// IMGUI_API bool Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int popup_max_height_in_items = -1); // Separate items with \\0 within a string, end item-list with \\0\\0. e.g. \"One\\0Two\\0Three\\0\"\n// IMGUI_API bool Combo(const char* label, int* current_item, bool(*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int popup_max_height_in_items = -1);\nexport type ComboValueGetter = (data: any, idx: number, out_text: [string]) => boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items: string[], items_count?: number, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_separated_by_zeros: string, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_getter: ComboValueGetter, data: any, items_count: number, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, ...args: any[]): boolean {\n let ret = false;\n const _current_item: Bind.ImScalar = Array.isArray(current_item) ? current_item : [ current_item() ];\n if (Array.isArray(args[0])) {\n const items: string[] = args[0];\n const items_count = typeof(args[1]) === \"number\" ? args[1] : items.length;\n const popup_max_height_in_items: number = typeof(args[2]) === \"number\" ? args[2] : -1;\n const items_getter = (data: any, idx: number, out_text: [string]): boolean => { out_text[0] = items[idx]; return true; };\n ret = bind.Combo(label, _current_item, items_getter, null, items_count, popup_max_height_in_items);\n } else if (typeof(args[0]) === \"string\") {\n const items_separated_by_zeros: string = args[0]\n const popup_max_height_in_items: number = typeof(args[1]) === \"number\" ? args[1] : -1;\n const items: string[] = items_separated_by_zeros.replace(/^\\0+|\\0+$/g, \"\").split(\"\\0\");\n const items_count: number = items.length;\n const items_getter = (data: any, idx: number, out_text: [string]): boolean => { out_text[0] = items[idx]; return true; };\n ret = bind.Combo(label, _current_item, items_getter, null, items_count, popup_max_height_in_items);\n } else {\n const items_getter: (data: any, idx: number, out_text: [string]) => boolean = args[0];\n const data: any = args[1];\n const items_count = args[2];\n const popup_max_height_in_items: number = typeof(args[3]) === \"number\" ? args[3] : -1;\n ret = bind.Combo(label, _current_item, items_getter, data, items_count, popup_max_height_in_items);\n }\n if (!Array.isArray(current_item)) { current_item(_current_item[0]); }\n return ret;\n}\n\n// Widgets: Drags (tip: ctrl+click on a drag box to input with keyboard. manually input values aren't clamped, can go off-bounds)\n// For all the Float2/Float3/Float4/Int2/Int3/Int4 versions of every functions, note that a 'float v[X]' function argument is the same as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. You can pass address of your first element out of a contiguous set, e.g. &myvector.x\n// IMGUI_API bool DragFloat(const char* label, float* v, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f); // If v_min >= v_max we have no bound\nexport function DragFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string | null = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.DragFloat(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat2(const char* label, float v[2], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | ImVec2, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.DragFloat2(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.DragFloat3(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat4(const char* label, float v[4], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat4(label: string, v: XYZW | Bind.ImTuple4 | ImVec4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.DragFloat4(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", const char* display_format_max = NULL, float power = 1.0f);\nexport function DragFloatRange2(label: string, v_current_min: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_current_max: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", display_format_max: string | null = null, power: number = 1.0): boolean {\n const _v_current_min = import_Scalar(v_current_min);\n const _v_current_max = import_Scalar(v_current_max);\n const ret = bind.DragFloatRange2(label, _v_current_min, _v_current_max, v_speed, v_min, v_max, display_format, display_format_max, power);\n export_Scalar(_v_current_min, v_current_min);\n export_Scalar(_v_current_max, v_current_max);\n return ret;\n}\n// IMGUI_API bool DragInt(const char* label, int* v, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = \"%d\"); // If v_min >= v_max we have no bound\nexport function DragInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.DragInt(label, _v, v_speed, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt2(const char* label, int v[2], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector2(v);\n const ret = bind.DragInt2(label, _v, v_speed, v_min, v_max, format);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt3(const char* label, int v[3], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector3(v);\n const ret = bind.DragInt3(label, _v, v_speed, v_min, v_max, format);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt4(const char* label, int v[4], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt4(label: string, v: XYZW | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector4(v);\n const ret = bind.DragInt4(label, _v, v_speed, v_min, v_max, format);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = \"%.0f\", const char* display_format_max = NULL);\nexport function DragIntRange2(label: string, v_current_min: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_current_max: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\", format_max: string | null = null): boolean {\n const _v_current_min = import_Scalar(v_current_min);\n const _v_current_max = import_Scalar(v_current_max);\n const ret = bind.DragIntRange2(label, _v_current_min, _v_current_max, v_speed, v_min, v_max, format, format_max);\n export_Scalar(_v_current_min, v_current_min);\n export_Scalar(_v_current_max, v_current_max);\n return ret;\n}\n// IMGUI_API bool DragScalar(const char* label, ImGuiDataType data_type, void* v, float v_speed, const void* v_min = NULL, const void* v_max = NULL, const char* format = NULL, float power = 1.0f);\n// IMGUI_API bool DragScalarN(const char* label, ImGuiDataType data_type, void* v, int components, float v_speed, const void* v_min = NULL, const void* v_max = NULL, const char* format = NULL, float power = 1.0f);\nexport function DragScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, v_speed: number, v_min: number | null = null, v_max: number | null = null, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.DragScalar(label, ImGuiDataType.S8, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.DragScalar(label, ImGuiDataType.U8, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.DragScalar(label, ImGuiDataType.S16, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.DragScalar(label, ImGuiDataType.U16, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.DragScalar(label, ImGuiDataType.S32, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.DragScalar(label, ImGuiDataType.U32, v, v_speed, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.DragScalar(label, ImGuiDataType.S64, v, v_speed, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.DragScalar(label, ImGuiDataType.U64, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.DragScalar(label, ImGuiDataType.Float, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.DragScalar(label, ImGuiDataType.Double, v, v_speed, v_min, v_max, format, power); }\n throw new Error();\n}\n\n// Widgets: Input with Keyboard\n// IMGUI_API bool InputText(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputText(label: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputText(label, buf, buf_size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputText(label, ref_buf, _buf_size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputText(label, ref_buf, buf_size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputTextWithHint(const char* label, const char* hint, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputTextWithHint(label: string, hint: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputTextWithHint(label, hint, buf, buf_size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputTextWithHint(label, hint, ref_buf, _buf_size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputTextWithHint(label, hint, ref_buf, buf_size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputTextMultiline(const char* label, char* buf, size_t buf_size, const ImVec2& size = ImVec2(0,0), ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputTextMultiline(label: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, size: Readonly = ImVec2.ZERO, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputTextMultiline(label, buf, buf_size, size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputTextMultiline(label, ref_buf, _buf_size, size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputTextMultiline(label, ref_buf, buf_size, size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputFloat(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 0.0, step_fast: number = 0.0, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputFloat(label, _v, step, step_fast, format, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat2(const char* label, float v[2], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.InputFloat2(label, _v, format, extra_flags);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat3(const char* label, float v[3], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.InputFloat3(label, _v, format, extra_flags);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat4(const char* label, float v[4], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat4(label: string, v: XYZW | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.InputFloat4(label, _v, format, extra_flags);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt(const char* label, int* v, int step = 1, int step_fast = 100, ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 1, step_fast: number = 100, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputInt(label, _v, step, step_fast, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt2(const char* label, int v[2], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.InputInt2(label, _v, extra_flags);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt3(const char* label, int v[3], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.InputInt3(label, _v, extra_flags);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt4(const char* label, int v[4], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt4(label: string, v: XYZW | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.InputInt4(label, _v, extra_flags);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool InputDouble(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = \"%.6f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputDouble(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 0.0, step_fast: number = 0.0, format: string = \"%.6f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputDouble(label, _v, step, step_fast, format, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputScalar(const char* label, ImGuiDataType data_type, void* v, const void* step = NULL, const void* step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags extra_flags = 0);\n// IMGUI_API bool InputScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* step = NULL, const void* step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags extra_flags = 0);\nexport function InputScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, step: number | null = null, step_fast: number | null = null, format: string | null = null, extra_flags: ImGuiInputTextFlags = 0): boolean {\n if (v instanceof Int8Array) { return bind.InputScalar(label, ImGuiDataType.S8, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint8Array) { return bind.InputScalar(label, ImGuiDataType.U8, v, step, step_fast, format, extra_flags); }\n if (v instanceof Int16Array) { return bind.InputScalar(label, ImGuiDataType.S16, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint16Array) { return bind.InputScalar(label, ImGuiDataType.U16, v, step, step_fast, format, extra_flags); }\n if (v instanceof Int32Array) { return bind.InputScalar(label, ImGuiDataType.S32, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint32Array) { return bind.InputScalar(label, ImGuiDataType.U32, v, step, step_fast, format, extra_flags); }\n // if (v instanceof Int64Array) { return bind.InputScalar(label, ImGuiDataType.S64, v, step, step_fast, format, extra_flags); }\n // if (v instanceof Uint64Array) { return bind.InputScalar(label, ImGuiDataType.U64, v, step, step_fast, format, extra_flags); }\n if (v instanceof Float32Array) { return bind.InputScalar(label, ImGuiDataType.Float, v, step, step_fast, format, extra_flags); }\n if (v instanceof Float64Array) { return bind.InputScalar(label, ImGuiDataType.Double, v, step, step_fast, format, extra_flags); }\n throw new Error();\n}\n\n// Widgets: Sliders (tip: ctrl+click on a slider to input with keyboard. manually input values aren't clamped, can go off-bounds)\n// IMGUI_API bool SliderFloat(const char* label, float* v, float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f); // adjust format to decorate the value with a prefix or a suffix for in-slider labels or unit display. Use power!=1.0 for logarithmic sliders\nexport function SliderFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.SliderFloat(label, _v, v_min, v_max, format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec2, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.SliderFloat2(label, _v, v_min, v_max, format, power);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.SliderFloat3(label, _v, v_min, v_max, format, power);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat4(label: string, v: XYZW | Bind.ImTuple4 | XYZW, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.SliderFloat4(label, _v, v_min, v_max, format, power);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderAngle(const char* label, float* v_rad, float v_degrees_min = -360.0f, float v_degrees_max = +360.0f);\nexport function SliderAngle(label: string, v_rad: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_degrees_min: number = -360.0, v_degrees_max: number = +360.0): boolean {\n const _v_rad = import_Scalar(v_rad);\n const ret = bind.SliderAngle(label, _v_rad, v_degrees_min, v_degrees_max);\n export_Scalar(_v_rad, v_rad);\n return ret;\n}\nexport function SliderAngle3(label: string, v_rad: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_degrees_min: number = -360.0, v_degrees_max: number = +360.0): boolean {\n const _v_rad = import_Vector3(v_rad);\n _v_rad[0] = Math.floor(_v_rad[0] * 180 / Math.PI);\n _v_rad[1] = Math.floor(_v_rad[1] * 180 / Math.PI);\n _v_rad[2] = Math.floor(_v_rad[2] * 180 / Math.PI);\n const ret = bind.SliderInt3(label, _v_rad, v_degrees_min, v_degrees_max, \"%d deg\");\n _v_rad[0] = _v_rad[0] * Math.PI / 180;\n _v_rad[1] = _v_rad[1] * Math.PI / 180;\n _v_rad[2] = _v_rad[2] * Math.PI / 180;\n export_Vector3(_v_rad, v_rad);\n return ret;\n}\n// IMGUI_API bool SliderInt(const char* label, int* v, int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.SliderInt(label, _v, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector2(v);\n const ret = bind.SliderInt2(label, _v, v_min, v_max, format);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt3(const char* label, int v[3], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector3(v);\n const ret = bind.SliderInt3(label, _v, v_min, v_max, format);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt4(const char* label, int v[4], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt4(label: string, v: XYZW | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector4(v);\n const ret = bind.SliderInt4(label, _v, v_min, v_max, format);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderScalar(const char* label, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\n// IMGUI_API bool SliderScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\nexport function SliderScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, v_min: number, v_max: number, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.SliderScalar(label, ImGuiDataType.S8, v, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.SliderScalar(label, ImGuiDataType.U8, v, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.SliderScalar(label, ImGuiDataType.S16, v, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.SliderScalar(label, ImGuiDataType.U16, v, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.SliderScalar(label, ImGuiDataType.S32, v, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.SliderScalar(label, ImGuiDataType.U32, v, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.SliderScalar(label, ImGuiDataType.S64, v, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.SliderScalar(label, ImGuiDataType.U64, v, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.SliderScalar(label, ImGuiDataType.Float, v, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.SliderScalar(label, ImGuiDataType.Double, v, v_min, v_max, format, power); }\n throw new Error();\n}\n// IMGUI_API bool VSliderFloat(const char* label, const ImVec2& size, float* v, float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function VSliderFloat(label: string, size: Readonly, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.VSliderFloat(label, size, _v, v_min, v_max, format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, const char* format = \"%d\");\nexport function VSliderInt(label: string, size: Readonly, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.VSliderInt(label, size, _v, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool VSliderScalar(const char* label, const ImVec2& size, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\nexport function VSliderScalar(label: string, size: Readonly, data_type: ImGuiDataType, v: Bind.ImAccess | Bind.ImScalar, v_min: number, v_max: number, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S8, v, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U8, v, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S16, v, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U16, v, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S32, v, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U32, v, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S64, v, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U64, v, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.Float, v, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.Double, v, v_min, v_max, format, power); }\n throw new Error();\n}\n\n// Widgets: Color Editor/Picker (tip: the ColorEdit* functions have a little colored preview square that can be left-clicked to open a picker, and right-clicked to open an option menu.)\n// Note that a 'float v[X]' function argument is the same as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. You can the pass the address of a first float element out of a contiguous structure, e.g. &myvector.x\n// IMGUI_API bool ColorEdit3(const char* label, float col[3], ImGuiColorEditFlags flags = 0);\nexport function ColorEdit3(label: string, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color3(col);\n const ret = bind.ColorEdit3(label, _col, flags);\n export_Color3(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags = 0);\nexport function ColorEdit4(label: string, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color4(col);\n const ret = bind.ColorEdit4(label, _col, flags);\n export_Color4(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorPicker3(const char* label, float col[3], ImGuiColorEditFlags flags = 0);\nexport function ColorPicker3(label: string, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color3(col);\n const ret = bind.ColorPicker3(label, _col, flags);\n export_Color3(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags flags = 0, const float* ref_col = NULL);\nexport function ColorPicker4(label: string, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0, ref_col: Bind.ImTuple4 | Bind.interface_ImVec4 | null = null): boolean {\n const _col = import_Color4(col);\n const _ref_col = ref_col ? import_Color4(ref_col) : null;\n const ret = bind.ColorPicker4(label, _col, flags, _ref_col);\n export_Color4(_col, col);\n if (_ref_col && ref_col) { export_Color4(_ref_col, ref_col); }\n return ret;\n}\n// IMGUI_API bool ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFlags flags = 0, ImVec2 size = ImVec2(0,0)); // display a colored square/button, hover for details, return true when pressed.\nexport function ColorButton(desc_id: string, col: Readonly, flags: ImGuiColorEditFlags = 0, size: Readonly = ImVec2.ZERO): boolean {\n return bind.ColorButton(desc_id, col, flags, size);\n}\n// IMGUI_API void SetColorEditOptions(ImGuiColorEditFlags flags); // initialize current options (generally on application startup) if you want to select a default format, picker type, etc. User will be able to change many settings, unless you pass the _NoOptions flag to your calls.\nexport function SetColorEditOptions(flags: ImGuiColorEditFlags): void {\n bind.SetColorEditOptions(flags);\n}\n\n// Widgets: Trees\n// IMGUI_API bool TreeNode(const char* label); // if returning 'true' the node is open and the tree id is pushed into the id stack. user is responsible for calling TreePop().\n// IMGUI_API bool TreeNode(const char* str_id, const char* fmt, ...) IM_FMTARGS(2); // read the FAQ about why and how to use ID. to align arbitrary text at the same level as a TreeNode() you can use Bullet().\n// IMGUI_API bool TreeNode(const void* ptr_id, const char* fmt, ...) IM_FMTARGS(2); // \"\n// IMGUI_API bool TreeNodeV(const char* str_id, const char* fmt, va_list args) IM_FMTLIST(2);\n// IMGUI_API bool TreeNodeV(const void* ptr_id, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function TreeNode(label: string): boolean;\nexport function TreeNode(label: string, fmt: string): boolean;\nexport function TreeNode(label: number, fmt: string): boolean;\nexport function TreeNode(...args: any[]): boolean {\n if (typeof(args[0]) === \"string\") {\n if (args.length === 1) {\n const label: string = args[0];\n return bind.TreeNode_A(label);\n } else {\n const str_id: string = args[0];\n const fmt: string = args[1];\n return bind.TreeNode_B(str_id, fmt);\n }\n } else {\n const ptr_id: number = args[0];\n const fmt: string = args[1];\n return bind.TreeNode_C(ptr_id, fmt);\n }\n}\n// IMGUI_API bool TreeNodeEx(const char* label, ImGuiTreeNodeFlags flags = 0);\n// IMGUI_API bool TreeNodeEx(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3);\n// IMGUI_API bool TreeNodeEx(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3);\n// IMGUI_API bool TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3);\n// IMGUI_API bool TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3);\nexport function TreeNodeEx(label: string, flags?: ImGuiTreeNodeFlags): boolean;\nexport function TreeNodeEx(str_id: string, flags: ImGuiTreeNodeFlags, fmt: string): boolean;\nexport function TreeNodeEx(ptr_id: number, flags: ImGuiTreeNodeFlags, fmt: string): boolean;\nexport function TreeNodeEx(...args: any[]): boolean {\n if (typeof(args[0]) === \"string\") {\n if (args.length < 3) {\n const label: string = args[0];\n const flags: ImGuiTreeNodeFlags = args[1] || 0;\n return bind.TreeNodeEx_A(label, flags);\n } else {\n const str_id: string = args[0];\n const flags: ImGuiTreeNodeFlags = args[1];\n const fmt: string = args[2];\n return bind.TreeNodeEx_B(str_id, flags, fmt);\n }\n } else {\n const ptr_id: number = args[0];\n const flags: ImGuiTreeNodeFlags = args[1];\n const fmt: string = args[2];\n return bind.TreeNodeEx_C(ptr_id, flags, fmt);\n }\n}\n// IMGUI_API void TreePush(const char* str_id); // ~ Indent()+PushId(). Already called by TreeNode() when returning true, but you can call Push/Pop yourself for layout purpose\n// IMGUI_API void TreePush(const void* ptr_id = NULL); // \"\nexport function TreePush(str_id: string): void;\nexport function TreePush(ptr_id: number): void;\nexport function TreePush(...args: any[]): void {\n if (typeof(args[0]) === \"string\") {\n const str_id: string = args[0];\n bind.TreePush_A(str_id);\n } else {\n const ptr_id: number = args[0];\n bind.TreePush_B(ptr_id);\n }\n}\n// IMGUI_API void TreePop(); // ~ Unindent()+PopId()\nexport function TreePop(): void { bind.TreePop(); }\n// IMGUI_API void TreeAdvanceToLabelPos(); // advance cursor x position by GetTreeNodeToLabelSpacing()\nexport function TreeAdvanceToLabelPos(): void { bind.TreeAdvanceToLabelPos(); }\n// IMGUI_API float GetTreeNodeToLabelSpacing(); // horizontal distance preceding label when using TreeNode*() or Bullet() == (g.FontSize + style.FramePadding.x*2) for a regular unframed TreeNode\nexport function GetTreeNodeToLabelSpacing(): number { return bind.GetTreeNodeToLabelSpacing(); }\n// IMGUI_API bool CollapsingHeader(const char* label, ImGuiTreeNodeFlags flags = 0); // if returning 'true' the header is open. doesn't indent nor push on ID stack. user doesn't have to call TreePop().\n// IMGUI_API bool CollapsingHeader(const char* label, bool* p_open, ImGuiTreeNodeFlags flags = 0); // when 'p_open' isn't NULL, display an additional small close button on upper right of the header\nexport function CollapsingHeader(label: string, flags?: ImGuiTreeNodeFlags): boolean;\nexport function CollapsingHeader(label: string, p_open: Bind.ImScalar | Bind.ImAccess, flags?: ImGuiTreeNodeFlags): boolean;\nexport function CollapsingHeader(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.CollapsingHeader_A(label, 0);\n } else {\n if (typeof(args[0]) === \"number\") {\n const flags: ImGuiTreeNodeFlags = args[0];\n return bind.CollapsingHeader_A(label, flags);\n } else {\n const p_open: Bind.ImScalar | Bind.ImAccess = args[0];\n const flags: ImGuiTreeNodeFlags = args[1] || 0;\n const ref_open: Bind.ImScalar = Array.isArray(p_open) ? p_open : [ p_open() ];\n const ret = bind.CollapsingHeader_B(label, ref_open, flags);\n if (!Array.isArray(p_open)) { p_open(ref_open[0]); }\n return ret;\n }\n }\n}\n// IMGUI_API void SetNextItemOpen(bool is_open, ImGuiCond cond = 0); // set next TreeNode/CollapsingHeader open state.\nexport function SetNextItemOpen(is_open: boolean, cond: ImGuiCond = 0): void {\n bind.SetNextItemOpen(is_open, cond);\n}\n\n// Widgets: Selectable / Lists\n// IMGUI_API bool Selectable(const char* label, bool selected = false, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0,0)); // size.x==0.0: use remaining width, size.x>0.0: specify width. size.y==0.0: use label height, size.y>0.0: specify height\n// IMGUI_API bool Selectable(const char* label, bool* p_selected, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0,0));\nexport function Selectable(label: string, selected?: boolean, flags?: ImGuiSelectableFlags, size?: Readonly): boolean;\nexport function Selectable(label: string, p_selected: Bind.ImScalar | Bind.ImAccess, flags?: ImGuiSelectableFlags, size?: Readonly): boolean;\nexport function Selectable(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.Selectable_A(label, false, 0, ImVec2.ZERO);\n } else {\n if (typeof(args[0]) === \"boolean\") {\n const selected: boolean = args[0];\n const flags: ImGuiSelectableFlags = args[1] || 0;\n const size: Readonly = args[2] || ImVec2.ZERO;\n return bind.Selectable_A(label, selected, flags, size);\n } else {\n const p_selected: Bind.ImScalar | Bind.ImAccess = args[0];\n const flags: ImGuiSelectableFlags = args[1] || 0;\n const size: Readonly = args[2] || ImVec2.ZERO;\n const ref_selected: Bind.ImScalar = Array.isArray(p_selected) ? p_selected : [ p_selected() ];\n const ret = bind.Selectable_B(label, ref_selected, flags, size);\n if (!Array.isArray(p_selected)) { p_selected(ref_selected[0]); }\n return ret;\n }\n }\n}\n// IMGUI_API bool ListBox(const char* label, int* current_item, const char* const* items, int items_count, int height_in_items = -1);\n// IMGUI_API bool ListBox(const char* label, int* current_item, bool (*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int height_in_items = -1);\nexport type ListBoxItemGetter = (data: any, idx: number, out_text: [string]) => boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items: string[], items_count?: number, height_in_items?: number): boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_getter: ListBoxItemGetter, data: any, items_count: number, height_in_items?: number): boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, ...args: any[]): boolean {\n let ret: boolean = false;\n const _current_item: Bind.ImScalar = Array.isArray(current_item) ? current_item : [ current_item() ];\n if (Array.isArray(args[0])) {\n const items: string[] = args[0];\n const items_count: number = typeof(args[1]) === \"number\" ? args[1] : items.length;\n const height_in_items: number = typeof(args[2]) === \"number\" ? args[2] : -1;\n ret = bind.ListBox_A(label, _current_item, items, items_count, height_in_items);\n } else {\n const items_getter: ListBoxItemGetter = args[0];\n const data: any = args[1];\n const items_count: number = args[2];\n const height_in_items: number = typeof(args[3]) === \"number\" ? args[3] : -1;\n ret = bind.ListBox_B(label, _current_item, items_getter, data, items_count, height_in_items);\n }\n if (!Array.isArray(current_item)) { current_item(_current_item[0]); }\n return ret;\n}\n// IMGUI_API bool ListBoxHeader(const char* label, const ImVec2& size = ImVec2(0,0)); // use if you want to reimplement ListBox() will custom data or interactions. make sure to call ListBoxFooter() afterwards.\n// IMGUI_API bool ListBoxHeader(const char* label, int items_count, int height_in_items = -1); // \"\nexport function ListBoxHeader(label: string, size: Readonly): boolean;\nexport function ListBoxHeader(label: string, items_count: number, height_in_items?: number): boolean;\nexport function ListBoxHeader(label: string, ...args: any[]): boolean {\n if (typeof(args[0]) === \"object\") {\n const size: Readonly = args[0];\n return bind.ListBoxHeader_A(label, size);\n } else {\n const items_count: number = args[0];\n const height_in_items: number = typeof(args[1]) === \"number\" ? args[1] : -1;\n return bind.ListBoxHeader_B(label, items_count, height_in_items);\n }\n}\n// IMGUI_API void ListBoxFooter(); // terminate the scrolling region\nexport function ListBoxFooter(): void {\n bind.ListBoxFooter();\n}\n\n// Widgets: Value() Helpers. Output single value in \"name: value\" format (tip: freely declare more in your code to handle your types. you can add functions to the ImGui namespace)\n// IMGUI_API void Value(const char* prefix, bool b);\n// IMGUI_API void Value(const char* prefix, int v);\n// IMGUI_API void Value(const char* prefix, unsigned int v);\n// IMGUI_API void Value(const char* prefix, float v, const char* float_format = NULL);\nexport function Value(prefix: string, b: boolean): void;\nexport function Value(prefix: string, v: number): void;\nexport function Value(prefix: string, v: number, float_format?: string | null): void;\nexport function Value(prefix: string, v: any): void;\nexport function Value(prefix: string, ...args: any[]): void {\n if (typeof(args[0]) === \"boolean\") {\n bind.Value_A(prefix, args[0]);\n } else if (typeof(args[0]) === \"number\") {\n if (Number.isInteger(args[0])) {\n bind.Value_B(prefix, args[0]);\n } else {\n bind.Value_D(prefix, args[0], typeof(args[1]) === \"string\" ? args[1] : null);\n }\n } else {\n bind.Text(prefix + String(args[0]));\n }\n}\n\n// Tooltips\n// IMGUI_API void BeginTooltip(); // begin/append a tooltip window. to create full-featured tooltip (with any kind of contents).\nexport function BeginTooltip(): void { bind.BeginTooltip(); }\n// IMGUI_API void EndTooltip();\nexport function EndTooltip(): void { bind.EndTooltip(); }\n// IMGUI_API void SetTooltip(const char* fmt, ...) IM_FMTARGS(1); // set text tooltip under mouse-cursor, typically use with ImGui::IsItemHovered(). overidde any previous call to SetTooltip().\n// IMGUI_API void SetTooltipV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function SetTooltip(fmt: string): void {\n bind.SetTooltip(fmt);\n}\n\n// Menus\n// IMGUI_API bool BeginMainMenuBar(); // create and append to a full screen menu-bar. only call EndMainMenuBar() if this returns true!\nexport function BeginMainMenuBar(): boolean { return bind.BeginMainMenuBar(); }\n// IMGUI_API void EndMainMenuBar();\nexport function EndMainMenuBar(): void { bind.EndMainMenuBar(); }\n// IMGUI_API bool BeginMenuBar(); // append to menu-bar of current window (requires ImGuiWindowFlags_MenuBar flag set on parent window). only call EndMenuBar() if this returns true!\nexport function BeginMenuBar(): boolean { return bind.BeginMenuBar(); }\n// IMGUI_API void EndMenuBar();\nexport function EndMenuBar(): void { bind.EndMenuBar(); }\n// IMGUI_API bool BeginMenu(const char* label, bool enabled = true); // create a sub-menu entry. only call EndMenu() if this returns true!\nexport function BeginMenu(label: string, enabled: boolean = true): boolean { return bind.BeginMenu(label, enabled); }\n// IMGUI_API void EndMenu();\nexport function EndMenu(): void { bind.EndMenu(); }\n// IMGUI_API bool MenuItem(const char* label, const char* shortcut = NULL, bool selected = false, bool enabled = true); // return true when activated. shortcuts are displayed for convenience but not processed by ImGui at the moment\n// IMGUI_API bool MenuItem(const char* label, const char* shortcut, bool* p_selected, bool enabled = true); // return true when activated + toggle (*p_selected) if p_selected != NULL\nexport function MenuItem(label: string, shortcut?: string | null, selected?: boolean, enabled?: boolean): boolean;\nexport function MenuItem(label: string, shortcut: string | null, p_selected: Bind.ImScalar | Bind.ImAccess | null, enabled?: boolean): boolean;\nexport function MenuItem(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.MenuItem_A(label, null, false, true);\n } else if (args.length === 1) {\n const shortcut: string | null = args[0];\n return bind.MenuItem_A(label, shortcut, false, true);\n } else {\n const shortcut: string | null = args[0];\n if (typeof(args[1]) === \"boolean\") {\n const selected: boolean = args[1];\n const enabled: boolean = typeof(args[2]) === \"boolean\" ? args[2] : true;\n return bind.MenuItem_A(label, shortcut, selected, enabled);\n } else {\n const p_selected: Bind.ImScalar | Bind.ImAccess = args[1];\n const enabled: boolean = typeof(args[2]) === \"boolean\" ? args[2] : true;\n const ref_selected: Bind.ImScalar = Array.isArray(p_selected) ? p_selected : [ p_selected() ];\n const ret = bind.MenuItem_B(label, shortcut, ref_selected, enabled);\n if (!Array.isArray(p_selected)) { p_selected(ref_selected[0]); }\n return ret;\n }\n }\n}\n\n// Popups\n// IMGUI_API void OpenPopup(const char* str_id); // call to mark popup as open (don't call every frame!). popups are closed when user click outside, or if CloseCurrentPopup() is called within a BeginPopup()/EndPopup() block. By default, Selectable()/MenuItem() are calling CloseCurrentPopup(). Popup identifiers are relative to the current ID-stack (so OpenPopup and BeginPopup needs to be at the same level).\nexport function OpenPopup(str_id: string): void { bind.OpenPopup(str_id); }\n// IMGUI_API bool OpenPopupOnItemClick(const char* str_id = NULL, int mouse_button = 1); // helper to open popup when clicked on last item. return true when just opened.\nexport function OpenPopupOnItemClick(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.OpenPopupOnItemClick(str_id, mouse_button);\n}\n// IMGUI_API bool BeginPopup(const char* str_id); // return true if the popup is open, and you can start outputting to it. only call EndPopup() if BeginPopup() returned true!\nexport function BeginPopup(str_id: string): boolean { return bind.BeginPopup(str_id); }\n// IMGUI_API bool BeginPopupModal(const char* name, bool* p_open = NULL, ImGuiWindowFlags extra_flags = 0); // modal dialog (block interactions behind the modal window, can't close the modal window by clicking outside)\nexport function BeginPopupModal(str_id: string = \"\", p_open: Bind.ImScalar | Bind.ImAccess | null = null, extra_flags: ImGuiWindowFlags = 0): boolean {\n if (Array.isArray(p_open)) {\n return bind.BeginPopupModal(str_id, p_open, extra_flags);\n } else if (typeof(p_open) === \"function\") {\n const _p_open: Bind.ImScalar = [ p_open() ];\n const ret = bind.BeginPopupModal(str_id, _p_open, extra_flags);\n p_open(_p_open[0]);\n return ret;\n } else {\n return bind.BeginPopupModal(str_id, null, extra_flags);\n }\n}\n// IMGUI_API bool BeginPopupContextItem(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked on last item. if you can pass a NULL str_id only if the previous item had an id. If you want to use that on a non-interactive item such as Text() you need to pass in an explicit ID here. read comments in .cpp!\nexport function BeginPopupContextItem(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.BeginPopupContextItem(str_id, mouse_button);\n}\n// IMGUI_API bool BeginPopupContextWindow(const char* str_id = NULL, int mouse_button = 1, bool also_over_items = true); // helper to open and begin popup when clicked on current window.\nexport function BeginPopupContextWindow(str_id: string | null = null, mouse_button: number = 1, also_over_items: boolean = true): boolean {\n return bind.BeginPopupContextWindow(str_id, mouse_button, also_over_items);\n}\n// IMGUI_API bool BeginPopupContextVoid(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked in void (where there are no imgui windows).\nexport function BeginPopupContextVoid(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.BeginPopupContextVoid(str_id, mouse_button);\n}\n// IMGUI_API void EndPopup();\nexport function EndPopup(): void { bind.EndPopup(); }\n// IMGUI_API bool IsPopupOpen(const char* str_id); // return true if the popup is open\nexport function IsPopupOpen(str_id: string): boolean { return bind.IsPopupOpen(str_id); }\n// IMGUI_API void CloseCurrentPopup(); // close the popup we have begin-ed into. clicking on a MenuItem or Selectable automatically close the current popup.\nexport function CloseCurrentPopup(): void { bind.CloseCurrentPopup(); }\n\n// Tab Bars, Tabs\n// [BETA API] API may evolve!\n// IMGUI_API bool BeginTabBar(const char* str_id, ImGuiTabBarFlags flags = 0); // create and append into a TabBar\nexport function BeginTabBar(str_id: string, flags: ImGuiTabBarFlags = 0): boolean { return bind.BeginTabBar(str_id, flags); }\n// IMGUI_API void EndTabBar(); // only call EndTabBar() if BeginTabBar() returns true!\nexport function EndTabBar(): void { bind.EndTabBar(); }\n// IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags flags = 0);// create a Tab. Returns true if the Tab is selected.\nexport function BeginTabItem(label: string, p_open: Bind.ImScalar | Bind.ImAccess | null = null, flags: ImGuiTabItemFlags = 0): boolean {\n // return bind.BeginTabItem(label, p_open, flags);\n if (p_open === null) {\n return bind.BeginTabItem(label, null, flags);\n } else if (Array.isArray(p_open)) {\n return bind.BeginTabItem(label, p_open, flags);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n const ret = bind.BeginTabItem(label, ref_open, flags);\n p_open(ref_open[0]);\n return ret;\n }\n}\n// IMGUI_API void EndTabItem(); // only call EndTabItem() if BeginTabItem() returns true!\nexport function EndTabItem(): void { bind.EndTabItem(); }\n// IMGUI_API void SetTabItemClosed(const char* tab_or_docked_window_label); // notify TabBar or Docking system of a closed tab/window ahead (useful to reduce visual flicker on reorderable tab bars). For tab-bar: call after BeginTabBar() and before Tab submissions. Otherwise call with a window name.\nexport function SetTabItemClosed(tab_or_docked_window_label: string): void { bind.SetTabItemClosed(tab_or_docked_window_label); }\n\n// Logging/Capture: all text output from interface is captured to tty/file/clipboard. By default, tree nodes are automatically opened during logging.\n// IMGUI_API void LogToTTY(int max_depth = -1); // start logging to tty\nexport function LogToTTY(max_depth: number = -1): void {\n bind.LogToTTY(max_depth);\n}\n// IMGUI_API void LogToFile(int max_depth = -1, const char* filename = NULL); // start logging to file\nexport function LogToFile(max_depth: number = -1, filename: string | null = null): void {\n bind.LogToFile(max_depth, filename);\n}\n// IMGUI_API void LogToClipboard(int max_depth = -1); // start logging to OS clipboard\nexport function LogToClipboard(max_depth: number = -1): void {\n bind.LogToClipboard(max_depth);\n}\n// IMGUI_API void LogFinish(); // stop logging (close file, etc.)\nexport function LogFinish(): void { bind.LogFinish(); }\n// IMGUI_API void LogButtons(); // helper to display buttons for logging to tty/file/clipboard\nexport function LogButtons(): void { bind.LogButtons(); }\n// IMGUI_API void LogText(const char* fmt, ...) IM_FMTARGS(1); // pass text data straight to log (without being displayed)\nexport function LogText(fmt: string): void {\n bind.LogText(fmt);\n}\n\nconst _ImGui_DragDropPayload_data: {[key: string]: any} = {};\n// Drag and Drop\n// [BETA API] Missing Demo code. API may evolve.\n// IMGUI_API bool BeginDragDropSource(ImGuiDragDropFlags flags = 0); // call when the current item is active. If this return true, you can call SetDragDropPayload() + EndDragDropSource()\nexport function BeginDragDropSource(flags: ImGuiDragDropFlags = 0): boolean {\n return bind.BeginDragDropSource(flags);\n}\n// IMGUI_API bool SetDragDropPayload(const char* type, const void* data, size_t size, ImGuiCond cond = 0);// type is a user defined string of maximum 8 characters. Strings starting with '_' are reserved for dear imgui internal types. Data is copied and held by imgui.\nexport function SetDragDropPayload(type: string, data: T, cond: ImGuiCond = 0): boolean {\n _ImGui_DragDropPayload_data[type] = data;\n return bind.SetDragDropPayload(type, data, 0, cond);\n}\n// IMGUI_API void EndDragDropSource();\nexport function EndDragDropSource(): void {\n bind.EndDragDropSource();\n}\n// IMGUI_API bool BeginDragDropTarget(); // call after submitting an item that may receive an item. If this returns true, you can call AcceptDragDropPayload() + EndDragDropTarget()\nexport function BeginDragDropTarget(): boolean {\n return bind.BeginDragDropTarget();\n}\n// IMGUI_API const ImGuiPayload* AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags = 0); // accept contents of a given type. If ImGuiDragDropFlags_AcceptBeforeDelivery is set you can peek into the payload before the mouse button is released.\nexport function AcceptDragDropPayload(type: string, flags: ImGuiDragDropFlags = 0): ImGuiPayload | null {\n const data: T = _ImGui_DragDropPayload_data[type];\n return bind.AcceptDragDropPayload(type, flags) ? { Data: data } : null;\n}\n// IMGUI_API void EndDragDropTarget();\nexport function EndDragDropTarget(): void {\n bind.EndDragDropTarget();\n}\n\n// Clipping\n// IMGUI_API void PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect);\nexport function PushClipRect(clip_rect_min: Readonly, clip_rect_max: Readonly, intersect_with_current_clip_rect: boolean): void {\n bind.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect);\n}\n// IMGUI_API void PopClipRect();\nexport function PopClipRect(): void {\n bind.PopClipRect();\n}\n\n// Focus\n// (FIXME: Those functions will be reworked after we merge the navigation branch + have a pass at focusing/tabbing features.)\n// (Prefer using \"SetItemDefaultFocus()\" over \"if (IsWindowAppearing()) SetScrollHere()\" when applicable, to make your code more forward compatible when navigation branch is merged)\n// IMGUI_API void SetItemDefaultFocus(); // make last item the default focused item of a window (WIP navigation branch only). Pleaase use instead of SetScrollHere().\nexport function SetItemDefaultFocus(): void { bind.SetItemDefaultFocus(); }\n// IMGUI_API void SetKeyboardFocusHere(int offset = 0); // focus keyboard on the next widget. Use positive 'offset' to access sub components of a multiple component widget. Use -1 to access previous widget.\nexport function SetKeyboardFocusHere(offset: number = 0): void {\n bind.SetKeyboardFocusHere(offset);\n}\n\n// Utilities\n// IMGUI_API bool IsItemHovered(ImGuiHoveredFlags flags = 0); // is the last item hovered? (and usable, aka not blocked by a popup, etc.). See ImGuiHoveredFlags for more options.\nexport function IsItemHovered(flags: ImGuiHoveredFlags = 0): boolean {\n return bind.IsItemHovered(flags);\n}\n// IMGUI_API bool IsItemActive(); // is the last item active? (e.g. button being held, text field being edited- items that don't interact will always return false)\nexport function IsItemActive(): boolean { return bind.IsItemActive(); }\n// IMGUI_API bool IsItemEdited(); // is the last item active? (e.g. button being held, text field being edited- items that don't interact will always return false)\nexport function IsItemEdited(): boolean { return bind.IsItemEdited(); }\n// IMGUI_API bool IsItemFocused(); // is the last item focused for keyboard/gamepad navigation?\nexport function IsItemFocused(): boolean { return bind.IsItemFocused(); }\n// IMGUI_API bool IsItemClicked(int mouse_button = 0); // is the last item clicked? (e.g. button/node just clicked on)\nexport function IsItemClicked(mouse_button: number = 0): boolean {\n return bind.IsItemClicked(mouse_button);\n}\n// IMGUI_API bool IsItemVisible(); // is the last item visible? (aka not out of sight due to clipping/scrolling.)\nexport function IsItemVisible(): boolean { return bind.IsItemVisible(); }\n// IMGUI_API bool IsItemActivated(); // was the last item just made active (item was previously inactive).\nexport function IsItemActivated(): boolean { return bind.IsItemActivated(); }\n// IMGUI_API bool IsItemDeactivated(); // was the last item just made inactive (item was previously active). Useful for Undo/Redo patterns with widgets that requires continuous editing.\nexport function IsItemDeactivated(): boolean { return bind.IsItemDeactivated(); }\n// IMGUI_API bool IsItemDeactivatedAfterEdit(); // was the last item just made inactive and made a value change when it was active? (e.g. Slider/Drag moved). Useful for Undo/Redo patterns with widgets that requires continuous editing. Note that you may get false positives (some widgets such as Combo()/ListBox()/Selectable() will return true even when clicking an already selected item).\nexport function IsItemDeactivatedAfterEdit(): boolean { return bind.IsItemDeactivatedAfterEdit(); }\n// IMGUI_API bool IsAnyItemHovered();\nexport function IsAnyItemHovered(): boolean { return bind.IsAnyItemHovered(); }\n// IMGUI_API bool IsAnyItemActive();\nexport function IsAnyItemActive(): boolean { return bind.IsAnyItemActive(); }\n// IMGUI_API bool IsAnyItemFocused();\nexport function IsAnyItemFocused(): boolean { return bind.IsAnyItemFocused(); }\n// IMGUI_API ImVec2 GetItemRectMin(); // get bounding rectangle of last item, in screen space\nexport function GetItemRectMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectMin(out);\n}\n// IMGUI_API ImVec2 GetItemRectMax(); // \"\nexport function GetItemRectMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectMax(out);\n}\n// IMGUI_API ImVec2 GetItemRectSize(); // get size of last item, in screen space\nexport function GetItemRectSize(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectSize(out);\n}\n// IMGUI_API void SetItemAllowOverlap(); // allow last item to be overlapped by a subsequent item. sometimes useful with invisible buttons, selectables, etc. to catch unused area.\nexport function SetItemAllowOverlap(): void { bind.SetItemAllowOverlap(); }\n// IMGUI_API bool IsWindowFocused(ImGuiFocusedFlags flags = 0); // is current window focused? or its root/child, depending on flags. see flags for options.\nexport function IsWindowFocused(flags: ImGuiFocusedFlags = 0): boolean {\n return bind.IsWindowFocused(flags);\n}\n// IMGUI_API bool IsWindowHovered(ImGuiHoveredFlags flags = 0); // is current window hovered (and typically: not blocked by a popup/modal)? see flags for options.\nexport function IsWindowHovered(flags: ImGuiHoveredFlags = 0): boolean {\n return bind.IsWindowHovered(flags);\n}\n// IMGUI_API bool IsRectVisible(const ImVec2& size); // test if rectangle (of given size, starting from cursor position) is visible / not clipped.\n// IMGUI_API bool IsRectVisible(const ImVec2& rect_min, const ImVec2& rect_max); // test if rectangle (in screen space) is visible / not clipped. to perform coarse clipping on user's side.\nexport function IsRectVisible(size: Readonly): boolean;\nexport function IsRectVisible(rect_min: Readonly, rect_max: Readonly): boolean;\nexport function IsRectVisible(...args: any[]): boolean {\n if (args.length === 1) {\n const size: Readonly = args[0];\n return bind.IsRectVisible_A(size);\n } else {\n const rect_min: Readonly = args[0];\n const rect_max: Readonly = args[1];\n return bind.IsRectVisible_B(rect_min, rect_max);\n }\n}\n// IMGUI_API float GetTime();\nexport function GetTime(): number { return bind.GetTime(); }\n// IMGUI_API int GetFrameCount();\nexport function GetFrameCount(): number { return bind.GetFrameCount(); }\nexport function GetBackgroundDrawList(): ImDrawList {\n return new ImDrawList(bind.GetBackgroundDrawList());\n}\nexport function GetForegroundDrawList(): ImDrawList {\n return new ImDrawList(bind.GetForegroundDrawList());\n}\n// IMGUI_API ImDrawListSharedData* GetDrawListSharedData();\nexport function GetDrawListSharedData(): ImDrawListSharedData {\n return new ImDrawListSharedData(bind.GetDrawListSharedData());\n}\n// IMGUI_API const char* GetStyleColorName(ImGuiCol idx);\nexport function GetStyleColorName(idx: ImGuiCol): string { return bind.GetStyleColorName(idx); }\n// IMGUI_API ImVec2 CalcTextSize(const char* text, const char* text_end = NULL, bool hide_text_after_double_hash = false, float wrap_width = -1.0f);\nexport function CalcTextSize(text: string, text_end: number | null = null, hide_text_after_double_hash: boolean = false, wrap_width: number = -1, out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.CalcTextSize(text_end !== null ? text.substring(0, text_end) : text, hide_text_after_double_hash, wrap_width, out);\n}\n// IMGUI_API void CalcListClipping(int items_count, float items_height, int* out_items_display_start, int* out_items_display_end); // calculate coarse clipping for large list of evenly sized items. Prefer using the ImGuiListClipper higher-level helper if you can.\nexport function CalcListClipping(items_count: number, items_height: number, out_items_display_start: Bind.ImScalar, out_items_display_end: Bind.ImScalar): void {\n return bind.CalcListClipping(items_count, items_height, out_items_display_start, out_items_display_end);\n}\n\n// IMGUI_API bool BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags extra_flags = 0); // helper to create a child window / scrolling region that looks like a normal widget frame\nexport function BeginChildFrame(id: Bind.ImGuiID, size: Readonly, extra_flags: ImGuiWindowFlags = 0): boolean {\n return bind.BeginChildFrame(id, size, extra_flags);\n}\n// IMGUI_API void EndChildFrame();\nexport function EndChildFrame(): void { bind.EndChildFrame(); }\n\n// IMGUI_API ImVec4 ColorConvertU32ToFloat4(ImU32 in);\nexport function ColorConvertU32ToFloat4(in_: Bind.ImU32, out: Bind.interface_ImVec4 = new ImVec4()): typeof out {\n return bind.ColorConvertU32ToFloat4(in_, out);\n}\n// IMGUI_API ImU32 ColorConvertFloat4ToU32(const ImVec4& in);\nexport function ColorConvertFloat4ToU32(in_: Readonly): Bind.ImU32 {\n return bind.ColorConvertFloat4ToU32(in_);\n}\n// IMGUI_API void ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v);\nexport function ColorConvertRGBtoHSV(r: number, g: number, b: number, out_h: Bind.ImScalar, out_s: Bind.ImScalar, out_v: Bind.ImScalar): void { bind.ColorConvertRGBtoHSV(r, g, b, out_h, out_s, out_v); }\n// IMGUI_API void ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g, float& out_b);\nexport function ColorConvertHSVtoRGB(h: number, s: number, v: number, out_r: Bind.ImScalar, out_g: Bind.ImScalar, out_b: Bind.ImScalar): void { bind.ColorConvertHSVtoRGB(h, s, v, out_r, out_g, out_b); }\n\n// Inputs\n// IMGUI_API int GetKeyIndex(ImGuiKey imgui_key); // map ImGuiKey_* values into user's key index. == io.KeyMap[key]\nexport function GetKeyIndex(imgui_key: ImGuiKey): number {\n return bind.GetKeyIndex(imgui_key);\n}\n// IMGUI_API bool IsKeyDown(int user_key_index); // is key being held. == io.KeysDown[user_key_index]. note that imgui doesn't know the semantic of each entry of io.KeyDown[]. Use your own indices/enums according to how your backend/engine stored them into KeyDown[]!\nexport function IsKeyDown(user_key_index: number): boolean {\n return bind.IsKeyDown(user_key_index);\n}\n// IMGUI_API bool IsKeyPressed(int user_key_index, bool repeat = true); // was key pressed (went from !Down to Down). if repeat=true, uses io.KeyRepeatDelay / KeyRepeatRate\nexport function IsKeyPressed(user_key_index: number, repeat: boolean = true): boolean {\n return bind.IsKeyPressed(user_key_index, repeat);\n}\n// IMGUI_API bool IsKeyReleased(int user_key_index); // was key released (went from Down to !Down)..\nexport function IsKeyReleased(user_key_index: number): boolean {\n return bind.IsKeyReleased(user_key_index);\n}\n// IMGUI_API int GetKeyPressedAmount(int key_index, float repeat_delay, float rate); // uses provided repeat rate/delay. return a count, most often 0 or 1 but might be >1 if RepeatRate is small enough that DeltaTime > RepeatRate\nexport function GetKeyPressedAmount(user_key_index: number, repeat_delay: number, rate: number): number {\n return bind.GetKeyPressedAmount(user_key_index, repeat_delay, rate);\n}\n// IMGUI_API bool IsMouseDown(int button); // is mouse button held\nexport function IsMouseDown(button: number): boolean {\n return bind.IsMouseDown(button);\n}\n// IMGUI_API bool IsMouseClicked(int button, bool repeat = false); // did mouse button clicked (went from !Down to Down)\nexport function IsMouseClicked(button: number, repeat: boolean = false): boolean {\n return bind.IsMouseClicked(button, repeat);\n}\n// IMGUI_API bool IsMouseDoubleClicked(int button); // did mouse button double-clicked. a double-click returns false in IsMouseClicked(). uses io.MouseDoubleClickTime.\nexport function IsMouseDoubleClicked(button: number): boolean {\n return bind.IsMouseDoubleClicked(button);\n}\n// IMGUI_API bool IsMouseReleased(int button); // did mouse button released (went from Down to !Down)\nexport function IsMouseReleased(button: number): boolean {\n return bind.IsMouseReleased(button);\n}\n// IMGUI_API bool IsMouseDragging(int button = 0, float lock_threshold = -1.0f); // is mouse dragging. if lock_threshold < -1.0f uses io.MouseDraggingThreshold\nexport function IsMouseDragging(button: number = 0, lock_threshold: number = -1.0): boolean {\n return bind.IsMouseDragging(button, lock_threshold);\n}\n// IMGUI_API bool IsMouseHoveringRect(const ImVec2& r_min, const ImVec2& r_max, bool clip = true); // is mouse hovering given bounding rect (in screen space). clipped by current clipping settings. disregarding of consideration of focus/window ordering/blocked by a popup.\nexport function IsMouseHoveringRect(r_min: Readonly, r_max: Readonly, clip: boolean = true): boolean {\n return bind.IsMouseHoveringRect(r_min, r_max, clip);\n}\n// IMGUI_API bool IsMousePosValid(const ImVec2* mouse_pos = NULL); //\nexport function IsMousePosValid(mouse_pos: Readonly | null = null): boolean {\n return bind.IsMousePosValid(mouse_pos);\n}\n// IMGUI_API ImVec2 GetMousePos(); // shortcut to ImGui::GetIO().MousePos provided by user, to be consistent with other calls\nexport function GetMousePos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMousePos(out);\n}\n// IMGUI_API ImVec2 GetMousePosOnOpeningCurrentPopup(); // retrieve backup of mouse positioning at the time of opening popup we have BeginPopup() into\nexport function GetMousePosOnOpeningCurrentPopup(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMousePosOnOpeningCurrentPopup(out);\n}\n// IMGUI_API ImVec2 GetMouseDragDelta(int button = 0, float lock_threshold = -1.0f); // dragging amount since clicking. if lock_threshold < -1.0f uses io.MouseDraggingThreshold\nexport function GetMouseDragDelta(button: number = 0, lock_threshold: number = -1.0, out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMouseDragDelta(button, lock_threshold, out);\n}\n// IMGUI_API void ResetMouseDragDelta(int button = 0); //\nexport function ResetMouseDragDelta(button: number = 0): void {\n bind.ResetMouseDragDelta(button);\n}\n// IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you\nexport function GetMouseCursor(): ImGuiMouseCursor { return bind.GetMouseCursor(); }\n// IMGUI_API void SetMouseCursor(ImGuiMouseCursor type); // set desired cursor type\nexport function SetMouseCursor(type: ImGuiMouseCursor): void { bind.SetMouseCursor(type); }\n// IMGUI_API void CaptureKeyboardFromApp(bool capture = true); // manually override io.WantCaptureKeyboard flag next frame (said flag is entirely left for your application handle). e.g. force capture keyboard when your widget is being hovered.\nexport function CaptureKeyboardFromApp(capture: boolean = true) {\n return bind.CaptureKeyboardFromApp(capture);\n}\n// IMGUI_API void CaptureMouseFromApp(bool capture = true); // manually override io.WantCaptureMouse flag next frame (said flag is entirely left for your application handle).\nexport function CaptureMouseFromApp(capture: boolean = true): void {\n bind.CaptureMouseFromApp(capture);\n}\n\n// Clipboard Utilities (also see the LogToClipboard() function to capture or output text data to the clipboard)\n// IMGUI_API const char* GetClipboardText();\nexport function GetClipboardText(): string { return bind.GetClipboardText(); }\n// IMGUI_API void SetClipboardText(const char* text);\nexport function SetClipboardText(text: string): void { bind.SetClipboardText(text); }\n\n// Settings/.Ini Utilities\n// The disk functions are automatically called if io.IniFilename != NULL (default is \"imgui.ini\").\n// Set io.IniFilename to NULL to load/save manually. Read io.WantSaveIniSettings description about handling .ini saving manually.\n// IMGUI_API void LoadIniSettingsFromDisk(const char* ini_filename); // call after CreateContext() and before the first call to NewFrame(). NewFrame() automatically calls LoadIniSettingsFromDisk(io.IniFilename).\nexport function LoadIniSettingsFromDisk(ini_filename: string): void { throw new Error(); } // TODO\n// IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source.\nexport function LoadIniSettingsFromMemory(ini_data: string, ini_size: number = 0): void { bind.LoadIniSettingsFromMemory(ini_data); }\n// IMGUI_API void SaveIniSettingsToDisk(const char* ini_filename);\nexport function SaveIniSettingsToDisk(ini_filename: string): void { throw new Error(); } // TODO\n// IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings.\nexport function SaveIniSettingsToMemory(out_ini_size: Bind.ImScalar | null = null): string { return bind.SaveIniSettingsToMemory(); }\n\n// Memory Utilities\n// All those functions are not reliant on the current context.\n// If you reload the contents of imgui.cpp at runtime, you may need to call SetCurrentContext() + SetAllocatorFunctions() again.\n// IMGUI_API void SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void(*free_func)(void* ptr, void* user_data), void* user_data = NULL);\nexport function SetAllocatorFunctions(alloc_func: (sz: number, user_data: any) => number, free_func: (ptr: number, user_data: any) => void, user_data: any = null): void {\n bind.SetAllocatorFunctions(alloc_func, free_func, user_data);\n}\n// IMGUI_API void* MemAlloc(size_t sz);\nexport function MemAlloc(sz: number): void { bind.MemAlloc(sz); }\n// IMGUI_API void MemFree(void* ptr);\nexport function MemFree(ptr: any): void { bind.MemFree(ptr); }\n","(function(global){\n\n//\n// Check for native Promise and it has correct interface\n//\n\nvar NativePromise = global['Promise'];\nvar nativePromiseSupported =\n NativePromise &&\n // Some of these methods are missing from\n // Firefox/Chrome experimental implementations\n 'resolve' in NativePromise &&\n 'reject' in NativePromise &&\n 'all' in NativePromise &&\n 'race' in NativePromise &&\n // Older version of the spec had a resolver object\n // as the arg rather than a function\n (function(){\n var resolve;\n new NativePromise(function(r){ resolve = r; });\n return typeof resolve === 'function';\n })();\n\n\n//\n// export if necessary\n//\n\nif (typeof exports !== 'undefined' && exports)\n{\n // node.js\n exports.Promise = nativePromiseSupported ? NativePromise : Promise;\n exports.Polyfill = Promise;\n}\nelse\n{\n // AMD\n if (typeof define == 'function' && define.amd)\n {\n define(function(){\n return nativePromiseSupported ? NativePromise : Promise;\n });\n }\n else\n {\n // in browser add to global\n if (!nativePromiseSupported)\n global['Promise'] = Promise;\n }\n}\n\n\n//\n// Polyfill\n//\n\nvar PENDING = 'pending';\nvar SEALED = 'sealed';\nvar FULFILLED = 'fulfilled';\nvar REJECTED = 'rejected';\nvar NOOP = function(){};\n\nfunction isArray(value) {\n return Object.prototype.toString.call(value) === '[object Array]';\n}\n\n// async calls\nvar asyncSetTimer = typeof setImmediate !== 'undefined' ? setImmediate : setTimeout;\nvar asyncQueue = [];\nvar asyncTimer;\n\nfunction asyncFlush(){\n // run promise callbacks\n for (var i = 0; i < asyncQueue.length; i++)\n asyncQueue[i][0](asyncQueue[i][1]);\n\n // reset async asyncQueue\n asyncQueue = [];\n asyncTimer = false;\n}\n\nfunction asyncCall(callback, arg){\n asyncQueue.push([callback, arg]);\n\n if (!asyncTimer)\n {\n asyncTimer = true;\n asyncSetTimer(asyncFlush, 0);\n }\n}\n\n\nfunction invokeResolver(resolver, promise) {\n function resolvePromise(value) {\n resolve(promise, value);\n }\n\n function rejectPromise(reason) {\n reject(promise, reason);\n }\n\n try {\n resolver(resolvePromise, rejectPromise);\n } catch(e) {\n rejectPromise(e);\n }\n}\n\nfunction invokeCallback(subscriber){\n var owner = subscriber.owner;\n var settled = owner.state_;\n var value = owner.data_; \n var callback = subscriber[settled];\n var promise = subscriber.then;\n\n if (typeof callback === 'function')\n {\n settled = FULFILLED;\n try {\n value = callback(value);\n } catch(e) {\n reject(promise, e);\n }\n }\n\n if (!handleThenable(promise, value))\n {\n if (settled === FULFILLED)\n resolve(promise, value);\n\n if (settled === REJECTED)\n reject(promise, value);\n }\n}\n\nfunction handleThenable(promise, value) {\n var resolved;\n\n try {\n if (promise === value)\n throw new TypeError('A promises callback cannot return that same promise.');\n\n if (value && (typeof value === 'function' || typeof value === 'object'))\n {\n var then = value.then; // then should be retrived only once\n\n if (typeof then === 'function')\n {\n then.call(value, function(val){\n if (!resolved)\n {\n resolved = true;\n\n if (value !== val)\n resolve(promise, val);\n else\n fulfill(promise, val);\n }\n }, function(reason){\n if (!resolved)\n {\n resolved = true;\n\n reject(promise, reason);\n }\n });\n\n return true;\n }\n }\n } catch (e) {\n if (!resolved)\n reject(promise, e);\n\n return true;\n }\n\n return false;\n}\n\nfunction resolve(promise, value){\n if (promise === value || !handleThenable(promise, value))\n fulfill(promise, value);\n}\n\nfunction fulfill(promise, value){\n if (promise.state_ === PENDING)\n {\n promise.state_ = SEALED;\n promise.data_ = value;\n\n asyncCall(publishFulfillment, promise);\n }\n}\n\nfunction reject(promise, reason){\n if (promise.state_ === PENDING)\n {\n promise.state_ = SEALED;\n promise.data_ = reason;\n\n asyncCall(publishRejection, promise);\n }\n}\n\nfunction publish(promise) {\n var callbacks = promise.then_;\n promise.then_ = undefined;\n\n for (var i = 0; i < callbacks.length; i++) {\n invokeCallback(callbacks[i]);\n }\n}\n\nfunction publishFulfillment(promise){\n promise.state_ = FULFILLED;\n publish(promise);\n}\n\nfunction publishRejection(promise){\n promise.state_ = REJECTED;\n publish(promise);\n}\n\n/**\n* @class\n*/\nfunction Promise(resolver){\n if (typeof resolver !== 'function')\n throw new TypeError('Promise constructor takes a function argument');\n\n if (this instanceof Promise === false)\n throw new TypeError('Failed to construct \\'Promise\\': Please use the \\'new\\' operator, this object constructor cannot be called as a function.');\n\n this.then_ = [];\n\n invokeResolver(resolver, this);\n}\n\nPromise.prototype = {\n constructor: Promise,\n\n state_: PENDING,\n then_: null,\n data_: undefined,\n\n then: function(onFulfillment, onRejection){\n var subscriber = {\n owner: this,\n then: new this.constructor(NOOP),\n fulfilled: onFulfillment,\n rejected: onRejection\n };\n\n if (this.state_ === FULFILLED || this.state_ === REJECTED)\n {\n // already resolved, call callback async\n asyncCall(invokeCallback, subscriber);\n }\n else\n {\n // subscribe\n this.then_.push(subscriber);\n }\n\n return subscriber.then;\n },\n\n 'catch': function(onRejection) {\n return this.then(null, onRejection);\n }\n};\n\nPromise.all = function(promises){\n var Class = this;\n\n if (!isArray(promises))\n throw new TypeError('You must pass an array to Promise.all().');\n\n return new Class(function(resolve, reject){\n var results = [];\n var remaining = 0;\n\n function resolver(index){\n remaining++;\n return function(value){\n results[index] = value;\n if (!--remaining)\n resolve(results);\n };\n }\n\n for (var i = 0, promise; i < promises.length; i++)\n {\n promise = promises[i];\n\n if (promise && typeof promise.then === 'function')\n promise.then(resolver(i), reject);\n else\n results[i] = promise;\n }\n\n if (!remaining)\n resolve(results);\n });\n};\n\nPromise.race = function(promises){\n var Class = this;\n\n if (!isArray(promises))\n throw new TypeError('You must pass an array to Promise.race().');\n\n return new Class(function(resolve, reject) {\n for (var i = 0, promise; i < promises.length; i++)\n {\n promise = promises[i];\n\n if (promise && typeof promise.then === 'function')\n promise.then(resolve, reject);\n else\n resolve(promise);\n }\n });\n};\n\nPromise.resolve = function(value){\n var Class = this;\n\n if (value && typeof value === 'object' && value.constructor === Class)\n return value;\n\n return new Class(function(resolve){\n resolve(value);\n });\n};\n\nPromise.reject = function(reason){\n var Class = this;\n\n return new Class(function(resolve, reject){\n reject(reason);\n });\n};\n\n})(typeof window != 'undefined' ? window : typeof global != 'undefined' ? global : typeof self != 'undefined' ? self : this);\n","/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\n\n'use strict';\n/* eslint-disable no-unused-vars */\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\n\nfunction toObject(val) {\n\tif (val === null || val === undefined) {\n\t\tthrow new TypeError('Object.assign cannot be called with null or undefined');\n\t}\n\n\treturn Object(val);\n}\n\nfunction shouldUseNative() {\n\ttry {\n\t\tif (!Object.assign) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Detect buggy property enumeration order in older V8 versions.\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=4118\n\t\tvar test1 = new String('abc'); // eslint-disable-line no-new-wrappers\n\t\ttest1[5] = 'de';\n\t\tif (Object.getOwnPropertyNames(test1)[0] === '5') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test2 = {};\n\t\tfor (var i = 0; i < 10; i++) {\n\t\t\ttest2['_' + String.fromCharCode(i)] = i;\n\t\t}\n\t\tvar order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n\t\t\treturn test2[n];\n\t\t});\n\t\tif (order2.join('') !== '0123456789') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test3 = {};\n\t\t'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n\t\t\ttest3[letter] = letter;\n\t\t});\n\t\tif (Object.keys(Object.assign({}, test3)).join('') !==\n\t\t\t\t'abcdefghijklmnopqrst') {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t} catch (err) {\n\t\t// We don't expect any of the above to throw, but better to be safe.\n\t\treturn false;\n\t}\n}\n\nmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n\tvar from;\n\tvar to = toObject(target);\n\tvar symbols;\n\n\tfor (var s = 1; s < arguments.length; s++) {\n\t\tfrom = Object(arguments[s]);\n\n\t\tfor (var key in from) {\n\t\t\tif (hasOwnProperty.call(from, key)) {\n\t\t\t\tto[key] = from[key];\n\t\t\t}\n\t\t}\n\n\t\tif (getOwnPropertySymbols) {\n\t\t\tsymbols = getOwnPropertySymbols(from);\n\t\t\tfor (var i = 0; i < symbols.length; i++) {\n\t\t\t\tif (propIsEnumerable.call(from, symbols[i])) {\n\t\t\t\t\tto[symbols[i]] = from[symbols[i]];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn to;\n};\n","/*!\n * @pixi/polyfill - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/polyfill is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Polyfill } from 'es6-promise-polyfill';\nimport objectAssign from 'object-assign';\n\n// Support for IE 9 - 11 which does not include Promises\nif (!window.Promise)\n{\n window.Promise = Polyfill;\n}\n\n// References:\n\nif (!Object.assign)\n{\n Object.assign = objectAssign;\n}\n\nvar commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\n// References:\n// http://paulirish.com/2011/requestanimationframe-for-smart-animating/\n// https://gist.github.com/1579671\n// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision\n// https://gist.github.com/timhall/4078614\n// https://github.com/Financial-Times/polyfill-service/tree/master/polyfills/requestAnimationFrame\n\n// Expected to be used with Browserfiy\n// Browserify automatically detects the use of `global` and passes the\n// correct reference of `global`, `self`, and finally `window`\n\nvar ONE_FRAME_TIME = 16;\n\n// Date.now\nif (!(Date.now && Date.prototype.getTime))\n{\n Date.now = function now()\n {\n return new Date().getTime();\n };\n}\n\n// performance.now\nif (!(commonjsGlobal.performance && commonjsGlobal.performance.now))\n{\n var startTime = Date.now();\n\n if (!commonjsGlobal.performance)\n {\n commonjsGlobal.performance = {};\n }\n\n commonjsGlobal.performance.now = function () { return Date.now() - startTime; };\n}\n\n// requestAnimationFrame\nvar lastTime = Date.now();\nvar vendors = ['ms', 'moz', 'webkit', 'o'];\n\nfor (var x = 0; x < vendors.length && !commonjsGlobal.requestAnimationFrame; ++x)\n{\n var p = vendors[x];\n\n commonjsGlobal.requestAnimationFrame = commonjsGlobal[(p + \"RequestAnimationFrame\")];\n commonjsGlobal.cancelAnimationFrame = commonjsGlobal[(p + \"CancelAnimationFrame\")] || commonjsGlobal[(p + \"CancelRequestAnimationFrame\")];\n}\n\nif (!commonjsGlobal.requestAnimationFrame)\n{\n commonjsGlobal.requestAnimationFrame = function (callback) {\n if (typeof callback !== 'function')\n {\n throw new TypeError((callback + \"is not a function\"));\n }\n\n var currentTime = Date.now();\n var delay = ONE_FRAME_TIME + lastTime - currentTime;\n\n if (delay < 0)\n {\n delay = 0;\n }\n\n lastTime = currentTime;\n\n return setTimeout(function () {\n lastTime = Date.now();\n callback(performance.now());\n }, delay);\n };\n}\n\nif (!commonjsGlobal.cancelAnimationFrame)\n{\n commonjsGlobal.cancelAnimationFrame = function (id) { return clearTimeout(id); };\n}\n\n// References:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign\n\nif (!Math.sign)\n{\n Math.sign = function mathSign(x)\n {\n x = Number(x);\n\n if (x === 0 || isNaN(x))\n {\n return x;\n }\n\n return x > 0 ? 1 : -1;\n };\n}\n\n// References:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger\n\nif (!Number.isInteger)\n{\n Number.isInteger = function numberIsInteger(value)\n {\n return typeof value === 'number' && isFinite(value) && Math.floor(value) === value;\n };\n}\n\nif (!window.ArrayBuffer)\n{\n window.ArrayBuffer = Array;\n}\n\nif (!window.Float32Array)\n{\n window.Float32Array = Array;\n}\n\nif (!window.Uint32Array)\n{\n window.Uint32Array = Array;\n}\n\nif (!window.Uint16Array)\n{\n window.Uint16Array = Array;\n}\n\nif (!window.Uint8Array)\n{\n window.Uint8Array = Array;\n}\n\nif (!window.Int32Array)\n{\n window.Int32Array = Array;\n}\n//# sourceMappingURL=polyfill.es.js.map\n","(function(global) {\n var apple_phone = /iPhone/i,\n apple_ipod = /iPod/i,\n apple_tablet = /iPad/i,\n android_phone = /\\bAndroid(?:.+)Mobile\\b/i, // Match 'Android' AND 'Mobile'\n android_tablet = /Android/i,\n amazon_phone = /\\bAndroid(?:.+)SD4930UR\\b/i,\n amazon_tablet = /\\bAndroid(?:.+)(?:KF[A-Z]{2,4})\\b/i,\n windows_phone = /Windows Phone/i,\n windows_tablet = /\\bWindows(?:.+)ARM\\b/i, // Match 'Windows' AND 'ARM'\n other_blackberry = /BlackBerry/i,\n other_blackberry_10 = /BB10/i,\n other_opera = /Opera Mini/i,\n other_chrome = /\\b(CriOS|Chrome)(?:.+)Mobile/i,\n other_firefox = /Mobile(?:.+)Firefox\\b/i; // Match 'Mobile' AND 'Firefox'\n\n function match(regex, userAgent) {\n return regex.test(userAgent);\n }\n\n function isMobile(userAgent) {\n var ua =\n userAgent ||\n (typeof navigator !== 'undefined' ? navigator.userAgent : '');\n\n // Facebook mobile app's integrated browser adds a bunch of strings that\n // match everything. Strip it out if it exists.\n var tmp = ua.split('[FBAN');\n if (typeof tmp[1] !== 'undefined') {\n ua = tmp[0];\n }\n\n // Twitter mobile app's integrated browser on iPad adds a \"Twitter for\n // iPhone\" string. Same probably happens on other tablet platforms.\n // This will confuse detection so strip it out if it exists.\n tmp = ua.split('Twitter');\n if (typeof tmp[1] !== 'undefined') {\n ua = tmp[0];\n }\n\n var result = {\n apple: {\n phone: match(apple_phone, ua) && !match(windows_phone, ua),\n ipod: match(apple_ipod, ua),\n tablet:\n !match(apple_phone, ua) &&\n match(apple_tablet, ua) &&\n !match(windows_phone, ua),\n device:\n (match(apple_phone, ua) ||\n match(apple_ipod, ua) ||\n match(apple_tablet, ua)) &&\n !match(windows_phone, ua)\n },\n amazon: {\n phone: match(amazon_phone, ua),\n tablet: !match(amazon_phone, ua) && match(amazon_tablet, ua),\n device: match(amazon_phone, ua) || match(amazon_tablet, ua)\n },\n android: {\n phone:\n (!match(windows_phone, ua) && match(amazon_phone, ua)) ||\n (!match(windows_phone, ua) && match(android_phone, ua)),\n tablet:\n !match(windows_phone, ua) &&\n !match(amazon_phone, ua) &&\n !match(android_phone, ua) &&\n (match(amazon_tablet, ua) || match(android_tablet, ua)),\n device:\n (!match(windows_phone, ua) &&\n (match(amazon_phone, ua) ||\n match(amazon_tablet, ua) ||\n match(android_phone, ua) ||\n match(android_tablet, ua))) ||\n match(/\\bokhttp\\b/i, ua)\n },\n windows: {\n phone: match(windows_phone, ua),\n tablet: match(windows_tablet, ua),\n device: match(windows_phone, ua) || match(windows_tablet, ua)\n },\n other: {\n blackberry: match(other_blackberry, ua),\n blackberry10: match(other_blackberry_10, ua),\n opera: match(other_opera, ua),\n firefox: match(other_firefox, ua),\n chrome: match(other_chrome, ua),\n device:\n match(other_blackberry, ua) ||\n match(other_blackberry_10, ua) ||\n match(other_opera, ua) ||\n match(other_firefox, ua) ||\n match(other_chrome, ua)\n }\n };\n (result.any =\n result.apple.device ||\n result.android.device ||\n result.windows.device ||\n result.other.device),\n // excludes 'other' devices and ipods, targeting touchscreen phones\n (result.phone =\n result.apple.phone || result.android.phone || result.windows.phone),\n (result.tablet =\n result.apple.tablet || result.android.tablet || result.windows.tablet);\n\n return result;\n }\n\n if (\n typeof module !== 'undefined' &&\n module.exports &&\n typeof window === 'undefined'\n ) {\n // Node.js\n module.exports = isMobile;\n } else if (\n typeof module !== 'undefined' &&\n module.exports &&\n typeof window !== 'undefined'\n ) {\n // Browserify\n module.exports = isMobile();\n module.exports.isMobile = isMobile;\n } else if (typeof define === 'function' && define.amd) {\n // AMD\n define([], (global.isMobile = isMobile()));\n } else {\n global.isMobile = isMobile();\n }\n})(this);\n","/*!\n * @pixi/settings - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/settings is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport isMobile from 'ismobilejs';\nexport { default as isMobile } from 'ismobilejs';\n\n/**\n * The maximum recommended texture units to use.\n * In theory the bigger the better, and for desktop we'll use as many as we can.\n * But some mobile devices slow down if there is to many branches in the shader.\n * So in practice there seems to be a sweet spot size that varies depending on the device.\n *\n * In v4, all mobile devices were limited to 4 texture units because for this.\n * In v5, we allow all texture units to be used on modern Apple or Android devices.\n *\n * @private\n * @param {number} max\n * @returns {number}\n */\nfunction maxRecommendedTextures(max)\n{\n var allowMax = true;\n\n if (isMobile.tablet || isMobile.phone)\n {\n allowMax = false;\n\n if (isMobile.apple.device)\n {\n var match = (navigator.userAgent).match(/OS (\\d+)_(\\d+)?/);\n\n if (match)\n {\n var majorVersion = parseInt(match[1], 10);\n\n // All texture units can be used on devices that support ios 11 or above\n if (majorVersion >= 11)\n {\n allowMax = true;\n }\n }\n }\n if (isMobile.android.device)\n {\n var match$1 = (navigator.userAgent).match(/Android\\s([0-9.]*)/);\n\n if (match$1)\n {\n var majorVersion$1 = parseInt(match$1[1], 10);\n\n // All texture units can be used on devices that support Android 7 (Nougat) or above\n if (majorVersion$1 >= 7)\n {\n allowMax = true;\n }\n }\n }\n }\n\n return allowMax ? max : 4;\n}\n\n/**\n * Uploading the same buffer multiple times in a single frame can cause performance issues.\n * Apparent on iOS so only check for that at the moment\n * This check may become more complex if this issue pops up elsewhere.\n *\n * @private\n * @returns {boolean}\n */\nfunction canUploadSameBuffer()\n{\n return !isMobile.apple.device;\n}\n\n/**\n * User's customizable globals for overriding the default PIXI settings, such\n * as a renderer's default resolution, framerate, float precision, etc.\n * @example\n * // Use the native window resolution as the default resolution\n * // will support high-density displays when rendering\n * PIXI.settings.RESOLUTION = window.devicePixelRatio;\n *\n * // Disable interpolation when scaling, will make texture be pixelated\n * PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST;\n * @namespace PIXI.settings\n */\nvar settings = {\n\n /**\n * If set to true WebGL will attempt make textures mimpaped by default.\n * Mipmapping will only succeed if the base texture uploaded has power of two dimensions.\n *\n * @static\n * @name MIPMAP_TEXTURES\n * @memberof PIXI.settings\n * @type {PIXI.MIPMAP_MODES}\n * @default PIXI.MIPMAP_MODES.POW2\n */\n MIPMAP_TEXTURES: 1,\n\n /**\n * Default anisotropic filtering level of textures.\n * Usually from 0 to 16\n *\n * @static\n * @name ANISOTROPIC_LEVEL\n * @memberof PIXI.settings\n * @type {number}\n * @default 0\n */\n ANISOTROPIC_LEVEL: 0,\n\n /**\n * Default resolution / device pixel ratio of the renderer.\n *\n * @static\n * @name RESOLUTION\n * @memberof PIXI.settings\n * @type {number}\n * @default 1\n */\n RESOLUTION: 1,\n\n /**\n * Default filter resolution.\n *\n * @static\n * @name FILTER_RESOLUTION\n * @memberof PIXI.settings\n * @type {number}\n * @default 1\n */\n FILTER_RESOLUTION: 1,\n\n /**\n * The maximum textures that this device supports.\n *\n * @static\n * @name SPRITE_MAX_TEXTURES\n * @memberof PIXI.settings\n * @type {number}\n * @default 32\n */\n SPRITE_MAX_TEXTURES: maxRecommendedTextures(32),\n\n // TODO: maybe change to SPRITE.BATCH_SIZE: 2000\n // TODO: maybe add PARTICLE.BATCH_SIZE: 15000\n\n /**\n * The default sprite batch size.\n *\n * The default aims to balance desktop and mobile devices.\n *\n * @static\n * @name SPRITE_BATCH_SIZE\n * @memberof PIXI.settings\n * @type {number}\n * @default 4096\n */\n SPRITE_BATCH_SIZE: 4096,\n\n /**\n * The default render options if none are supplied to {@link PIXI.Renderer}\n * or {@link PIXI.CanvasRenderer}.\n *\n * @static\n * @name RENDER_OPTIONS\n * @memberof PIXI.settings\n * @type {object}\n * @property {HTMLCanvasElement} view=null\n * @property {number} resolution=1\n * @property {boolean} antialias=false\n * @property {boolean} forceFXAA=false\n * @property {boolean} autoDensity=false\n * @property {boolean} transparent=false\n * @property {number} backgroundColor=0x000000\n * @property {boolean} clearBeforeRender=true\n * @property {boolean} preserveDrawingBuffer=false\n * @property {number} width=800\n * @property {number} height=600\n * @property {boolean} legacy=false\n */\n RENDER_OPTIONS: {\n view: null,\n antialias: false,\n forceFXAA: false,\n autoDensity: false,\n transparent: false,\n backgroundColor: 0x000000,\n clearBeforeRender: true,\n preserveDrawingBuffer: false,\n width: 800,\n height: 600,\n legacy: false,\n },\n\n /**\n * Default Garbage Collection mode.\n *\n * @static\n * @name GC_MODE\n * @memberof PIXI.settings\n * @type {PIXI.GC_MODES}\n * @default PIXI.GC_MODES.AUTO\n */\n GC_MODE: 0,\n\n /**\n * Default Garbage Collection max idle.\n *\n * @static\n * @name GC_MAX_IDLE\n * @memberof PIXI.settings\n * @type {number}\n * @default 3600\n */\n GC_MAX_IDLE: 60 * 60,\n\n /**\n * Default Garbage Collection maximum check count.\n *\n * @static\n * @name GC_MAX_CHECK_COUNT\n * @memberof PIXI.settings\n * @type {number}\n * @default 600\n */\n GC_MAX_CHECK_COUNT: 60 * 10,\n\n /**\n * Default wrap modes that are supported by pixi.\n *\n * @static\n * @name WRAP_MODE\n * @memberof PIXI.settings\n * @type {PIXI.WRAP_MODES}\n * @default PIXI.WRAP_MODES.CLAMP\n */\n WRAP_MODE: 33071,\n\n /**\n * Default scale mode for textures.\n *\n * @static\n * @name SCALE_MODE\n * @memberof PIXI.settings\n * @type {PIXI.SCALE_MODES}\n * @default PIXI.SCALE_MODES.LINEAR\n */\n SCALE_MODE: 1,\n\n /**\n * Default specify float precision in vertex shader.\n *\n * @static\n * @name PRECISION_VERTEX\n * @memberof PIXI.settings\n * @type {PIXI.PRECISION}\n * @default PIXI.PRECISION.HIGH\n */\n PRECISION_VERTEX: 'highp',\n\n /**\n * Default specify float precision in fragment shader.\n * iOS is best set at highp due to https://github.com/pixijs/pixi.js/issues/3742\n *\n * @static\n * @name PRECISION_FRAGMENT\n * @memberof PIXI.settings\n * @type {PIXI.PRECISION}\n * @default PIXI.PRECISION.MEDIUM\n */\n PRECISION_FRAGMENT: isMobile.apple.device ? 'highp' : 'mediump',\n\n /**\n * Can we upload the same buffer in a single frame?\n *\n * @static\n * @name CAN_UPLOAD_SAME_BUFFER\n * @memberof PIXI.settings\n * @type {boolean}\n */\n CAN_UPLOAD_SAME_BUFFER: canUploadSameBuffer(),\n\n /**\n * Enables bitmap creation before image load. This feature is experimental.\n *\n * @static\n * @name CREATE_IMAGE_BITMAP\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\n CREATE_IMAGE_BITMAP: false,\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n *\n * @static\n * @constant\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\n ROUND_PIXELS: false,\n};\n\nexport { settings };\n//# sourceMappingURL=settings.es.js.map\n","'use strict';\n\nvar has = Object.prototype.hasOwnProperty\n , prefix = '~';\n\n/**\n * Constructor to create a storage for our `EE` objects.\n * An `Events` instance is a plain object whose properties are event names.\n *\n * @constructor\n * @private\n */\nfunction Events() {}\n\n//\n// We try to not inherit from `Object.prototype`. In some engines creating an\n// instance in this way is faster than calling `Object.create(null)` directly.\n// If `Object.create(null)` is not supported we prefix the event names with a\n// character to make sure that the built-in object properties are not\n// overridden or used as an attack vector.\n//\nif (Object.create) {\n Events.prototype = Object.create(null);\n\n //\n // This hack is needed because the `__proto__` property is still inherited in\n // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5.\n //\n if (!new Events().__proto__) prefix = false;\n}\n\n/**\n * Representation of a single event listener.\n *\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} [once=false] Specify if the listener is a one-time listener.\n * @constructor\n * @private\n */\nfunction EE(fn, context, once) {\n this.fn = fn;\n this.context = context;\n this.once = once || false;\n}\n\n/**\n * Add a listener for a given event.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} once Specify if the listener is a one-time listener.\n * @returns {EventEmitter}\n * @private\n */\nfunction addListener(emitter, event, fn, context, once) {\n if (typeof fn !== 'function') {\n throw new TypeError('The listener must be a function');\n }\n\n var listener = new EE(fn, context || emitter, once)\n , evt = prefix ? prefix + event : event;\n\n if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;\n else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);\n else emitter._events[evt] = [emitter._events[evt], listener];\n\n return emitter;\n}\n\n/**\n * Clear event by name.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} evt The Event name.\n * @private\n */\nfunction clearEvent(emitter, evt) {\n if (--emitter._eventsCount === 0) emitter._events = new Events();\n else delete emitter._events[evt];\n}\n\n/**\n * Minimal `EventEmitter` interface that is molded against the Node.js\n * `EventEmitter` interface.\n *\n * @constructor\n * @public\n */\nfunction EventEmitter() {\n this._events = new Events();\n this._eventsCount = 0;\n}\n\n/**\n * Return an array listing the events for which the emitter has registered\n * listeners.\n *\n * @returns {Array}\n * @public\n */\nEventEmitter.prototype.eventNames = function eventNames() {\n var names = []\n , events\n , name;\n\n if (this._eventsCount === 0) return names;\n\n for (name in (events = this._events)) {\n if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);\n }\n\n if (Object.getOwnPropertySymbols) {\n return names.concat(Object.getOwnPropertySymbols(events));\n }\n\n return names;\n};\n\n/**\n * Return the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Array} The registered listeners.\n * @public\n */\nEventEmitter.prototype.listeners = function listeners(event) {\n var evt = prefix ? prefix + event : event\n , handlers = this._events[evt];\n\n if (!handlers) return [];\n if (handlers.fn) return [handlers.fn];\n\n for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) {\n ee[i] = handlers[i].fn;\n }\n\n return ee;\n};\n\n/**\n * Return the number of listeners listening to a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Number} The number of listeners.\n * @public\n */\nEventEmitter.prototype.listenerCount = function listenerCount(event) {\n var evt = prefix ? prefix + event : event\n , listeners = this._events[evt];\n\n if (!listeners) return 0;\n if (listeners.fn) return 1;\n return listeners.length;\n};\n\n/**\n * Calls each of the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Boolean} `true` if the event had listeners, else `false`.\n * @public\n */\nEventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return false;\n\n var listeners = this._events[evt]\n , len = arguments.length\n , args\n , i;\n\n if (listeners.fn) {\n if (listeners.once) this.removeListener(event, listeners.fn, undefined, true);\n\n switch (len) {\n case 1: return listeners.fn.call(listeners.context), true;\n case 2: return listeners.fn.call(listeners.context, a1), true;\n case 3: return listeners.fn.call(listeners.context, a1, a2), true;\n case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true;\n case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;\n case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;\n }\n\n for (i = 1, args = new Array(len -1); i < len; i++) {\n args[i - 1] = arguments[i];\n }\n\n listeners.fn.apply(listeners.context, args);\n } else {\n var length = listeners.length\n , j;\n\n for (i = 0; i < length; i++) {\n if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true);\n\n switch (len) {\n case 1: listeners[i].fn.call(listeners[i].context); break;\n case 2: listeners[i].fn.call(listeners[i].context, a1); break;\n case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break;\n case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break;\n default:\n if (!args) for (j = 1, args = new Array(len -1); j < len; j++) {\n args[j - 1] = arguments[j];\n }\n\n listeners[i].fn.apply(listeners[i].context, args);\n }\n }\n }\n\n return true;\n};\n\n/**\n * Add a listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.on = function on(event, fn, context) {\n return addListener(this, event, fn, context, false);\n};\n\n/**\n * Add a one-time listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.once = function once(event, fn, context) {\n return addListener(this, event, fn, context, true);\n};\n\n/**\n * Remove the listeners of a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn Only remove the listeners that match this function.\n * @param {*} context Only remove the listeners that have this context.\n * @param {Boolean} once Only remove one-time listeners.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return this;\n if (!fn) {\n clearEvent(this, evt);\n return this;\n }\n\n var listeners = this._events[evt];\n\n if (listeners.fn) {\n if (\n listeners.fn === fn &&\n (!once || listeners.once) &&\n (!context || listeners.context === context)\n ) {\n clearEvent(this, evt);\n }\n } else {\n for (var i = 0, events = [], length = listeners.length; i < length; i++) {\n if (\n listeners[i].fn !== fn ||\n (once && !listeners[i].once) ||\n (context && listeners[i].context !== context)\n ) {\n events.push(listeners[i]);\n }\n }\n\n //\n // Reset the array, or remove it completely if we have no more listeners.\n //\n if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;\n else clearEvent(this, evt);\n }\n\n return this;\n};\n\n/**\n * Remove all listeners, or those of the specified event.\n *\n * @param {(String|Symbol)} [event] The event name.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {\n var evt;\n\n if (event) {\n evt = prefix ? prefix + event : event;\n if (this._events[evt]) clearEvent(this, evt);\n } else {\n this._events = new Events();\n this._eventsCount = 0;\n }\n\n return this;\n};\n\n//\n// Alias methods names because people roll like that.\n//\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\nEventEmitter.prototype.addListener = EventEmitter.prototype.on;\n\n//\n// Expose the prefix.\n//\nEventEmitter.prefixed = prefix;\n\n//\n// Allow `EventEmitter` to be imported as module namespace.\n//\nEventEmitter.EventEmitter = EventEmitter;\n\n//\n// Expose the module.\n//\nif ('undefined' !== typeof module) {\n module.exports = EventEmitter;\n}\n","'use strict';\n\nmodule.exports = earcut;\nmodule.exports.default = earcut;\n\nfunction earcut(data, holeIndices, dim) {\n\n dim = dim || 2;\n\n var hasHoles = holeIndices && holeIndices.length,\n outerLen = hasHoles ? holeIndices[0] * dim : data.length,\n outerNode = linkedList(data, 0, outerLen, dim, true),\n triangles = [];\n\n if (!outerNode || outerNode.next === outerNode.prev) return triangles;\n\n var minX, minY, maxX, maxY, x, y, invSize;\n\n if (hasHoles) outerNode = eliminateHoles(data, holeIndices, outerNode, dim);\n\n // if the shape is not too simple, we'll use z-order curve hash later; calculate polygon bbox\n if (data.length > 80 * dim) {\n minX = maxX = data[0];\n minY = maxY = data[1];\n\n for (var i = dim; i < outerLen; i += dim) {\n x = data[i];\n y = data[i + 1];\n if (x < minX) minX = x;\n if (y < minY) minY = y;\n if (x > maxX) maxX = x;\n if (y > maxY) maxY = y;\n }\n\n // minX, minY and invSize are later used to transform coords into integers for z-order calculation\n invSize = Math.max(maxX - minX, maxY - minY);\n invSize = invSize !== 0 ? 1 / invSize : 0;\n }\n\n earcutLinked(outerNode, triangles, dim, minX, minY, invSize);\n\n return triangles;\n}\n\n// create a circular doubly linked list from polygon points in the specified winding order\nfunction linkedList(data, start, end, dim, clockwise) {\n var i, last;\n\n if (clockwise === (signedArea(data, start, end, dim) > 0)) {\n for (i = start; i < end; i += dim) last = insertNode(i, data[i], data[i + 1], last);\n } else {\n for (i = end - dim; i >= start; i -= dim) last = insertNode(i, data[i], data[i + 1], last);\n }\n\n if (last && equals(last, last.next)) {\n removeNode(last);\n last = last.next;\n }\n\n return last;\n}\n\n// eliminate colinear or duplicate points\nfunction filterPoints(start, end) {\n if (!start) return start;\n if (!end) end = start;\n\n var p = start,\n again;\n do {\n again = false;\n\n if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) {\n removeNode(p);\n p = end = p.prev;\n if (p === p.next) break;\n again = true;\n\n } else {\n p = p.next;\n }\n } while (again || p !== end);\n\n return end;\n}\n\n// main ear slicing loop which triangulates a polygon (given as a linked list)\nfunction earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) {\n if (!ear) return;\n\n // interlink polygon nodes in z-order\n if (!pass && invSize) indexCurve(ear, minX, minY, invSize);\n\n var stop = ear,\n prev, next;\n\n // iterate through ears, slicing them one by one\n while (ear.prev !== ear.next) {\n prev = ear.prev;\n next = ear.next;\n\n if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) {\n // cut off the triangle\n triangles.push(prev.i / dim);\n triangles.push(ear.i / dim);\n triangles.push(next.i / dim);\n\n removeNode(ear);\n\n // skipping the next vertex leads to less sliver triangles\n ear = next.next;\n stop = next.next;\n\n continue;\n }\n\n ear = next;\n\n // if we looped through the whole remaining polygon and can't find any more ears\n if (ear === stop) {\n // try filtering points and slicing again\n if (!pass) {\n earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1);\n\n // if this didn't work, try curing all small self-intersections locally\n } else if (pass === 1) {\n ear = cureLocalIntersections(filterPoints(ear), triangles, dim);\n earcutLinked(ear, triangles, dim, minX, minY, invSize, 2);\n\n // as a last resort, try splitting the remaining polygon into two\n } else if (pass === 2) {\n splitEarcut(ear, triangles, dim, minX, minY, invSize);\n }\n\n break;\n }\n }\n}\n\n// check whether a polygon node forms a valid ear with adjacent nodes\nfunction isEar(ear) {\n var a = ear.prev,\n b = ear,\n c = ear.next;\n\n if (area(a, b, c) >= 0) return false; // reflex, can't be an ear\n\n // now make sure we don't have other points inside the potential ear\n var p = ear.next.next;\n\n while (p !== ear.prev) {\n if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.next;\n }\n\n return true;\n}\n\nfunction isEarHashed(ear, minX, minY, invSize) {\n var a = ear.prev,\n b = ear,\n c = ear.next;\n\n if (area(a, b, c) >= 0) return false; // reflex, can't be an ear\n\n // triangle bbox; min & max are calculated like this for speed\n var minTX = a.x < b.x ? (a.x < c.x ? a.x : c.x) : (b.x < c.x ? b.x : c.x),\n minTY = a.y < b.y ? (a.y < c.y ? a.y : c.y) : (b.y < c.y ? b.y : c.y),\n maxTX = a.x > b.x ? (a.x > c.x ? a.x : c.x) : (b.x > c.x ? b.x : c.x),\n maxTY = a.y > b.y ? (a.y > c.y ? a.y : c.y) : (b.y > c.y ? b.y : c.y);\n\n // z-order range for the current triangle bbox;\n var minZ = zOrder(minTX, minTY, minX, minY, invSize),\n maxZ = zOrder(maxTX, maxTY, minX, minY, invSize);\n\n var p = ear.prevZ,\n n = ear.nextZ;\n\n // look for points inside the triangle in both directions\n while (p && p.z >= minZ && n && n.z <= maxZ) {\n if (p !== ear.prev && p !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.prevZ;\n\n if (n !== ear.prev && n !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) &&\n area(n.prev, n, n.next) >= 0) return false;\n n = n.nextZ;\n }\n\n // look for remaining points in decreasing z-order\n while (p && p.z >= minZ) {\n if (p !== ear.prev && p !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.prevZ;\n }\n\n // look for remaining points in increasing z-order\n while (n && n.z <= maxZ) {\n if (n !== ear.prev && n !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) &&\n area(n.prev, n, n.next) >= 0) return false;\n n = n.nextZ;\n }\n\n return true;\n}\n\n// go through all polygon nodes and cure small local self-intersections\nfunction cureLocalIntersections(start, triangles, dim) {\n var p = start;\n do {\n var a = p.prev,\n b = p.next.next;\n\n if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) {\n\n triangles.push(a.i / dim);\n triangles.push(p.i / dim);\n triangles.push(b.i / dim);\n\n // remove two nodes involved\n removeNode(p);\n removeNode(p.next);\n\n p = start = b;\n }\n p = p.next;\n } while (p !== start);\n\n return filterPoints(p);\n}\n\n// try splitting polygon into two and triangulate them independently\nfunction splitEarcut(start, triangles, dim, minX, minY, invSize) {\n // look for a valid diagonal that divides the polygon into two\n var a = start;\n do {\n var b = a.next.next;\n while (b !== a.prev) {\n if (a.i !== b.i && isValidDiagonal(a, b)) {\n // split the polygon in two by the diagonal\n var c = splitPolygon(a, b);\n\n // filter colinear points around the cuts\n a = filterPoints(a, a.next);\n c = filterPoints(c, c.next);\n\n // run earcut on each half\n earcutLinked(a, triangles, dim, minX, minY, invSize);\n earcutLinked(c, triangles, dim, minX, minY, invSize);\n return;\n }\n b = b.next;\n }\n a = a.next;\n } while (a !== start);\n}\n\n// link every hole into the outer loop, producing a single-ring polygon without holes\nfunction eliminateHoles(data, holeIndices, outerNode, dim) {\n var queue = [],\n i, len, start, end, list;\n\n for (i = 0, len = holeIndices.length; i < len; i++) {\n start = holeIndices[i] * dim;\n end = i < len - 1 ? holeIndices[i + 1] * dim : data.length;\n list = linkedList(data, start, end, dim, false);\n if (list === list.next) list.steiner = true;\n queue.push(getLeftmost(list));\n }\n\n queue.sort(compareX);\n\n // process holes from left to right\n for (i = 0; i < queue.length; i++) {\n eliminateHole(queue[i], outerNode);\n outerNode = filterPoints(outerNode, outerNode.next);\n }\n\n return outerNode;\n}\n\nfunction compareX(a, b) {\n return a.x - b.x;\n}\n\n// find a bridge between vertices that connects hole with an outer ring and and link it\nfunction eliminateHole(hole, outerNode) {\n outerNode = findHoleBridge(hole, outerNode);\n if (outerNode) {\n var b = splitPolygon(outerNode, hole);\n filterPoints(b, b.next);\n }\n}\n\n// David Eberly's algorithm for finding a bridge between hole and outer polygon\nfunction findHoleBridge(hole, outerNode) {\n var p = outerNode,\n hx = hole.x,\n hy = hole.y,\n qx = -Infinity,\n m;\n\n // find a segment intersected by a ray from the hole's leftmost point to the left;\n // segment's endpoint with lesser x will be potential connection point\n do {\n if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) {\n var x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y);\n if (x <= hx && x > qx) {\n qx = x;\n if (x === hx) {\n if (hy === p.y) return p;\n if (hy === p.next.y) return p.next;\n }\n m = p.x < p.next.x ? p : p.next;\n }\n }\n p = p.next;\n } while (p !== outerNode);\n\n if (!m) return null;\n\n if (hx === qx) return m; // hole touches outer segment; pick leftmost endpoint\n\n // look for points inside the triangle of hole point, segment intersection and endpoint;\n // if there are no points found, we have a valid connection;\n // otherwise choose the point of the minimum angle with the ray as connection point\n\n var stop = m,\n mx = m.x,\n my = m.y,\n tanMin = Infinity,\n tan;\n\n p = m;\n\n do {\n if (hx >= p.x && p.x >= mx && hx !== p.x &&\n pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) {\n\n tan = Math.abs(hy - p.y) / (hx - p.x); // tangential\n\n if (locallyInside(p, hole) &&\n (tan < tanMin || (tan === tanMin && (p.x > m.x || (p.x === m.x && sectorContainsSector(m, p)))))) {\n m = p;\n tanMin = tan;\n }\n }\n\n p = p.next;\n } while (p !== stop);\n\n return m;\n}\n\n// whether sector in vertex m contains sector in vertex p in the same coordinates\nfunction sectorContainsSector(m, p) {\n return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0;\n}\n\n// interlink polygon nodes in z-order\nfunction indexCurve(start, minX, minY, invSize) {\n var p = start;\n do {\n if (p.z === null) p.z = zOrder(p.x, p.y, minX, minY, invSize);\n p.prevZ = p.prev;\n p.nextZ = p.next;\n p = p.next;\n } while (p !== start);\n\n p.prevZ.nextZ = null;\n p.prevZ = null;\n\n sortLinked(p);\n}\n\n// Simon Tatham's linked list merge sort algorithm\n// http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html\nfunction sortLinked(list) {\n var i, p, q, e, tail, numMerges, pSize, qSize,\n inSize = 1;\n\n do {\n p = list;\n list = null;\n tail = null;\n numMerges = 0;\n\n while (p) {\n numMerges++;\n q = p;\n pSize = 0;\n for (i = 0; i < inSize; i++) {\n pSize++;\n q = q.nextZ;\n if (!q) break;\n }\n qSize = inSize;\n\n while (pSize > 0 || (qSize > 0 && q)) {\n\n if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) {\n e = p;\n p = p.nextZ;\n pSize--;\n } else {\n e = q;\n q = q.nextZ;\n qSize--;\n }\n\n if (tail) tail.nextZ = e;\n else list = e;\n\n e.prevZ = tail;\n tail = e;\n }\n\n p = q;\n }\n\n tail.nextZ = null;\n inSize *= 2;\n\n } while (numMerges > 1);\n\n return list;\n}\n\n// z-order of a point given coords and inverse of the longer side of data bbox\nfunction zOrder(x, y, minX, minY, invSize) {\n // coords are transformed into non-negative 15-bit integer range\n x = 32767 * (x - minX) * invSize;\n y = 32767 * (y - minY) * invSize;\n\n x = (x | (x << 8)) & 0x00FF00FF;\n x = (x | (x << 4)) & 0x0F0F0F0F;\n x = (x | (x << 2)) & 0x33333333;\n x = (x | (x << 1)) & 0x55555555;\n\n y = (y | (y << 8)) & 0x00FF00FF;\n y = (y | (y << 4)) & 0x0F0F0F0F;\n y = (y | (y << 2)) & 0x33333333;\n y = (y | (y << 1)) & 0x55555555;\n\n return x | (y << 1);\n}\n\n// find the leftmost node of a polygon ring\nfunction getLeftmost(start) {\n var p = start,\n leftmost = start;\n do {\n if (p.x < leftmost.x || (p.x === leftmost.x && p.y < leftmost.y)) leftmost = p;\n p = p.next;\n } while (p !== start);\n\n return leftmost;\n}\n\n// check if a point lies within a convex triangle\nfunction pointInTriangle(ax, ay, bx, by, cx, cy, px, py) {\n return (cx - px) * (ay - py) - (ax - px) * (cy - py) >= 0 &&\n (ax - px) * (by - py) - (bx - px) * (ay - py) >= 0 &&\n (bx - px) * (cy - py) - (cx - px) * (by - py) >= 0;\n}\n\n// check if a diagonal between two polygon nodes is valid (lies in polygon interior)\nfunction isValidDiagonal(a, b) {\n return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && // dones't intersect other edges\n (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && // locally visible\n (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors\n equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case\n}\n\n// signed area of a triangle\nfunction area(p, q, r) {\n return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y);\n}\n\n// check if two points are equal\nfunction equals(p1, p2) {\n return p1.x === p2.x && p1.y === p2.y;\n}\n\n// check if two segments intersect\nfunction intersects(p1, q1, p2, q2) {\n var o1 = sign(area(p1, q1, p2));\n var o2 = sign(area(p1, q1, q2));\n var o3 = sign(area(p2, q2, p1));\n var o4 = sign(area(p2, q2, q1));\n\n if (o1 !== o2 && o3 !== o4) return true; // general case\n\n if (o1 === 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p1q1\n if (o2 === 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p1q1\n if (o3 === 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p2q2\n if (o4 === 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p2q2\n\n return false;\n}\n\n// for collinear points p, q, r, check if point q lies on segment pr\nfunction onSegment(p, q, r) {\n return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y);\n}\n\nfunction sign(num) {\n return num > 0 ? 1 : num < 0 ? -1 : 0;\n}\n\n// check if a polygon diagonal intersects any polygon segments\nfunction intersectsPolygon(a, b) {\n var p = a;\n do {\n if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i &&\n intersects(p, p.next, a, b)) return true;\n p = p.next;\n } while (p !== a);\n\n return false;\n}\n\n// check if a polygon diagonal is locally inside the polygon\nfunction locallyInside(a, b) {\n return area(a.prev, a, a.next) < 0 ?\n area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 :\n area(a, b, a.prev) < 0 || area(a, a.next, b) < 0;\n}\n\n// check if the middle point of a polygon diagonal is inside the polygon\nfunction middleInside(a, b) {\n var p = a,\n inside = false,\n px = (a.x + b.x) / 2,\n py = (a.y + b.y) / 2;\n do {\n if (((p.y > py) !== (p.next.y > py)) && p.next.y !== p.y &&\n (px < (p.next.x - p.x) * (py - p.y) / (p.next.y - p.y) + p.x))\n inside = !inside;\n p = p.next;\n } while (p !== a);\n\n return inside;\n}\n\n// link two polygon vertices with a bridge; if the vertices belong to the same ring, it splits polygon into two;\n// if one belongs to the outer ring and another to a hole, it merges it into a single ring\nfunction splitPolygon(a, b) {\n var a2 = new Node(a.i, a.x, a.y),\n b2 = new Node(b.i, b.x, b.y),\n an = a.next,\n bp = b.prev;\n\n a.next = b;\n b.prev = a;\n\n a2.next = an;\n an.prev = a2;\n\n b2.next = a2;\n a2.prev = b2;\n\n bp.next = b2;\n b2.prev = bp;\n\n return b2;\n}\n\n// create a node and optionally link it with previous one (in a circular doubly linked list)\nfunction insertNode(i, x, y, last) {\n var p = new Node(i, x, y);\n\n if (!last) {\n p.prev = p;\n p.next = p;\n\n } else {\n p.next = last.next;\n p.prev = last;\n last.next.prev = p;\n last.next = p;\n }\n return p;\n}\n\nfunction removeNode(p) {\n p.next.prev = p.prev;\n p.prev.next = p.next;\n\n if (p.prevZ) p.prevZ.nextZ = p.nextZ;\n if (p.nextZ) p.nextZ.prevZ = p.prevZ;\n}\n\nfunction Node(i, x, y) {\n // vertex index in coordinates array\n this.i = i;\n\n // vertex coordinates\n this.x = x;\n this.y = y;\n\n // previous and next vertex nodes in a polygon ring\n this.prev = null;\n this.next = null;\n\n // z-order curve value\n this.z = null;\n\n // previous and next nodes in z-order\n this.prevZ = null;\n this.nextZ = null;\n\n // indicates whether this is a steiner point\n this.steiner = false;\n}\n\n// return a percentage difference between the polygon area and its triangulation area;\n// used to verify correctness of triangulation\nearcut.deviation = function (data, holeIndices, dim, triangles) {\n var hasHoles = holeIndices && holeIndices.length;\n var outerLen = hasHoles ? holeIndices[0] * dim : data.length;\n\n var polygonArea = Math.abs(signedArea(data, 0, outerLen, dim));\n if (hasHoles) {\n for (var i = 0, len = holeIndices.length; i < len; i++) {\n var start = holeIndices[i] * dim;\n var end = i < len - 1 ? holeIndices[i + 1] * dim : data.length;\n polygonArea -= Math.abs(signedArea(data, start, end, dim));\n }\n }\n\n var trianglesArea = 0;\n for (i = 0; i < triangles.length; i += 3) {\n var a = triangles[i] * dim;\n var b = triangles[i + 1] * dim;\n var c = triangles[i + 2] * dim;\n trianglesArea += Math.abs(\n (data[a] - data[c]) * (data[b + 1] - data[a + 1]) -\n (data[a] - data[b]) * (data[c + 1] - data[a + 1]));\n }\n\n return polygonArea === 0 && trianglesArea === 0 ? 0 :\n Math.abs((trianglesArea - polygonArea) / polygonArea);\n};\n\nfunction signedArea(data, start, end, dim) {\n var sum = 0;\n for (var i = start, j = end - dim; i < end; i += dim) {\n sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]);\n j = i;\n }\n return sum;\n}\n\n// turn a polygon in a multi-dimensional array form (e.g. as in GeoJSON) into a form Earcut accepts\nearcut.flatten = function (data) {\n var dim = data[0][0].length,\n result = {vertices: [], holes: [], dimensions: dim},\n holeIndex = 0;\n\n for (var i = 0; i < data.length; i++) {\n for (var j = 0; j < data[i].length; j++) {\n for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]);\n }\n if (i > 0) {\n holeIndex += data[i - 1].length;\n result.holes.push(holeIndex);\n }\n }\n return result;\n};\n","/*! https://mths.be/punycode v1.4.1 by @mathias */\n\n\n/** Highest positive signed 32-bit float value */\nvar maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1\n\n/** Bootstring parameters */\nvar base = 36;\nvar tMin = 1;\nvar tMax = 26;\nvar skew = 38;\nvar damp = 700;\nvar initialBias = 72;\nvar initialN = 128; // 0x80\nvar delimiter = '-'; // '\\x2D'\n\n/** Regular expressions */\nvar regexPunycode = /^xn--/;\nvar regexNonASCII = /[^\\x20-\\x7E]/; // unprintable ASCII chars + non-ASCII chars\nvar regexSeparators = /[\\x2E\\u3002\\uFF0E\\uFF61]/g; // RFC 3490 separators\n\n/** Error messages */\nvar errors = {\n 'overflow': 'Overflow: input needs wider integers to process',\n 'not-basic': 'Illegal input >= 0x80 (not a basic code point)',\n 'invalid-input': 'Invalid input'\n};\n\n/** Convenience shortcuts */\nvar baseMinusTMin = base - tMin;\nvar floor = Math.floor;\nvar stringFromCharCode = String.fromCharCode;\n\n/*--------------------------------------------------------------------------*/\n\n/**\n * A generic error utility function.\n * @private\n * @param {String} type The error type.\n * @returns {Error} Throws a `RangeError` with the applicable error message.\n */\nfunction error(type) {\n throw new RangeError(errors[type]);\n}\n\n/**\n * A generic `Array#map` utility function.\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} callback The function that gets called for every array\n * item.\n * @returns {Array} A new array of values returned by the callback function.\n */\nfunction map(array, fn) {\n var length = array.length;\n var result = [];\n while (length--) {\n result[length] = fn(array[length]);\n }\n return result;\n}\n\n/**\n * A simple `Array#map`-like wrapper to work with domain name strings or email\n * addresses.\n * @private\n * @param {String} domain The domain name or email address.\n * @param {Function} callback The function that gets called for every\n * character.\n * @returns {Array} A new string of characters returned by the callback\n * function.\n */\nfunction mapDomain(string, fn) {\n var parts = string.split('@');\n var result = '';\n if (parts.length > 1) {\n // In email addresses, only the domain name should be punycoded. Leave\n // the local part (i.e. everything up to `@`) intact.\n result = parts[0] + '@';\n string = parts[1];\n }\n // Avoid `split(regex)` for IE8 compatibility. See #17.\n string = string.replace(regexSeparators, '\\x2E');\n var labels = string.split('.');\n var encoded = map(labels, fn).join('.');\n return result + encoded;\n}\n\n/**\n * Creates an array containing the numeric code points of each Unicode\n * character in the string. While JavaScript uses UCS-2 internally,\n * this function will convert a pair of surrogate halves (each of which\n * UCS-2 exposes as separate characters) into a single code point,\n * matching UTF-16.\n * @see `punycode.ucs2.encode`\n * @see \n * @memberOf punycode.ucs2\n * @name decode\n * @param {String} string The Unicode input string (UCS-2).\n * @returns {Array} The new array of code points.\n */\nfunction ucs2decode(string) {\n var output = [],\n counter = 0,\n length = string.length,\n value,\n extra;\n while (counter < length) {\n value = string.charCodeAt(counter++);\n if (value >= 0xD800 && value <= 0xDBFF && counter < length) {\n // high surrogate, and there is a next character\n extra = string.charCodeAt(counter++);\n if ((extra & 0xFC00) == 0xDC00) { // low surrogate\n output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000);\n } else {\n // unmatched surrogate; only append this code unit, in case the next\n // code unit is the high surrogate of a surrogate pair\n output.push(value);\n counter--;\n }\n } else {\n output.push(value);\n }\n }\n return output;\n}\n\n/**\n * Creates a string based on an array of numeric code points.\n * @see `punycode.ucs2.decode`\n * @memberOf punycode.ucs2\n * @name encode\n * @param {Array} codePoints The array of numeric code points.\n * @returns {String} The new Unicode string (UCS-2).\n */\nfunction ucs2encode(array) {\n return map(array, function(value) {\n var output = '';\n if (value > 0xFFFF) {\n value -= 0x10000;\n output += stringFromCharCode(value >>> 10 & 0x3FF | 0xD800);\n value = 0xDC00 | value & 0x3FF;\n }\n output += stringFromCharCode(value);\n return output;\n }).join('');\n}\n\n/**\n * Converts a basic code point into a digit/integer.\n * @see `digitToBasic()`\n * @private\n * @param {Number} codePoint The basic numeric code point value.\n * @returns {Number} The numeric value of a basic code point (for use in\n * representing integers) in the range `0` to `base - 1`, or `base` if\n * the code point does not represent a value.\n */\nfunction basicToDigit(codePoint) {\n if (codePoint - 48 < 10) {\n return codePoint - 22;\n }\n if (codePoint - 65 < 26) {\n return codePoint - 65;\n }\n if (codePoint - 97 < 26) {\n return codePoint - 97;\n }\n return base;\n}\n\n/**\n * Converts a digit/integer into a basic code point.\n * @see `basicToDigit()`\n * @private\n * @param {Number} digit The numeric value of a basic code point.\n * @returns {Number} The basic code point whose value (when used for\n * representing integers) is `digit`, which needs to be in the range\n * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is\n * used; else, the lowercase form is used. The behavior is undefined\n * if `flag` is non-zero and `digit` has no uppercase form.\n */\nfunction digitToBasic(digit, flag) {\n // 0..25 map to ASCII a..z or A..Z\n // 26..35 map to ASCII 0..9\n return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5);\n}\n\n/**\n * Bias adaptation function as per section 3.4 of RFC 3492.\n * https://tools.ietf.org/html/rfc3492#section-3.4\n * @private\n */\nfunction adapt(delta, numPoints, firstTime) {\n var k = 0;\n delta = firstTime ? floor(delta / damp) : delta >> 1;\n delta += floor(delta / numPoints);\n for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) {\n delta = floor(delta / baseMinusTMin);\n }\n return floor(k + (baseMinusTMin + 1) * delta / (delta + skew));\n}\n\n/**\n * Converts a Punycode string of ASCII-only symbols to a string of Unicode\n * symbols.\n * @memberOf punycode\n * @param {String} input The Punycode string of ASCII-only symbols.\n * @returns {String} The resulting string of Unicode symbols.\n */\nexport function decode(input) {\n // Don't use UCS-2\n var output = [],\n inputLength = input.length,\n out,\n i = 0,\n n = initialN,\n bias = initialBias,\n basic,\n j,\n index,\n oldi,\n w,\n k,\n digit,\n t,\n /** Cached calculation results */\n baseMinusT;\n\n // Handle the basic code points: let `basic` be the number of input code\n // points before the last delimiter, or `0` if there is none, then copy\n // the first basic code points to the output.\n\n basic = input.lastIndexOf(delimiter);\n if (basic < 0) {\n basic = 0;\n }\n\n for (j = 0; j < basic; ++j) {\n // if it's not a basic code point\n if (input.charCodeAt(j) >= 0x80) {\n error('not-basic');\n }\n output.push(input.charCodeAt(j));\n }\n\n // Main decoding loop: start just after the last delimiter if any basic code\n // points were copied; start at the beginning otherwise.\n\n for (index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */ ) {\n\n // `index` is the index of the next character to be consumed.\n // Decode a generalized variable-length integer into `delta`,\n // which gets added to `i`. The overflow checking is easier\n // if we increase `i` as we go, then subtract off its starting\n // value at the end to obtain `delta`.\n for (oldi = i, w = 1, k = base; /* no condition */ ; k += base) {\n\n if (index >= inputLength) {\n error('invalid-input');\n }\n\n digit = basicToDigit(input.charCodeAt(index++));\n\n if (digit >= base || digit > floor((maxInt - i) / w)) {\n error('overflow');\n }\n\n i += digit * w;\n t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n\n if (digit < t) {\n break;\n }\n\n baseMinusT = base - t;\n if (w > floor(maxInt / baseMinusT)) {\n error('overflow');\n }\n\n w *= baseMinusT;\n\n }\n\n out = output.length + 1;\n bias = adapt(i - oldi, out, oldi == 0);\n\n // `i` was supposed to wrap around from `out` to `0`,\n // incrementing `n` each time, so we'll fix that now:\n if (floor(i / out) > maxInt - n) {\n error('overflow');\n }\n\n n += floor(i / out);\n i %= out;\n\n // Insert `n` at position `i` of the output\n output.splice(i++, 0, n);\n\n }\n\n return ucs2encode(output);\n}\n\n/**\n * Converts a string of Unicode symbols (e.g. a domain name label) to a\n * Punycode string of ASCII-only symbols.\n * @memberOf punycode\n * @param {String} input The string of Unicode symbols.\n * @returns {String} The resulting Punycode string of ASCII-only symbols.\n */\nexport function encode(input) {\n var n,\n delta,\n handledCPCount,\n basicLength,\n bias,\n j,\n m,\n q,\n k,\n t,\n currentValue,\n output = [],\n /** `inputLength` will hold the number of code points in `input`. */\n inputLength,\n /** Cached calculation results */\n handledCPCountPlusOne,\n baseMinusT,\n qMinusT;\n\n // Convert the input in UCS-2 to Unicode\n input = ucs2decode(input);\n\n // Cache the length\n inputLength = input.length;\n\n // Initialize the state\n n = initialN;\n delta = 0;\n bias = initialBias;\n\n // Handle the basic code points\n for (j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n if (currentValue < 0x80) {\n output.push(stringFromCharCode(currentValue));\n }\n }\n\n handledCPCount = basicLength = output.length;\n\n // `handledCPCount` is the number of code points that have been handled;\n // `basicLength` is the number of basic code points.\n\n // Finish the basic string - if it is not empty - with a delimiter\n if (basicLength) {\n output.push(delimiter);\n }\n\n // Main encoding loop:\n while (handledCPCount < inputLength) {\n\n // All non-basic code points < n have been handled already. Find the next\n // larger one:\n for (m = maxInt, j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n if (currentValue >= n && currentValue < m) {\n m = currentValue;\n }\n }\n\n // Increase `delta` enough to advance the decoder's state to ,\n // but guard against overflow\n handledCPCountPlusOne = handledCPCount + 1;\n if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) {\n error('overflow');\n }\n\n delta += (m - n) * handledCPCountPlusOne;\n n = m;\n\n for (j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n\n if (currentValue < n && ++delta > maxInt) {\n error('overflow');\n }\n\n if (currentValue == n) {\n // Represent delta as a generalized variable-length integer\n for (q = delta, k = base; /* no condition */ ; k += base) {\n t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n if (q < t) {\n break;\n }\n qMinusT = q - t;\n baseMinusT = base - t;\n output.push(\n stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0))\n );\n q = floor(qMinusT / baseMinusT);\n }\n\n output.push(stringFromCharCode(digitToBasic(q, 0)));\n bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength);\n delta = 0;\n ++handledCPCount;\n }\n }\n\n ++delta;\n ++n;\n\n }\n return output.join('');\n}\n\n/**\n * Converts a Punycode string representing a domain name or an email address\n * to Unicode. Only the Punycoded parts of the input will be converted, i.e.\n * it doesn't matter if you call it on a string that has already been\n * converted to Unicode.\n * @memberOf punycode\n * @param {String} input The Punycoded domain name or email address to\n * convert to Unicode.\n * @returns {String} The Unicode representation of the given Punycode\n * string.\n */\nexport function toUnicode(input) {\n return mapDomain(input, function(string) {\n return regexPunycode.test(string) ?\n decode(string.slice(4).toLowerCase()) :\n string;\n });\n}\n\n/**\n * Converts a Unicode string representing a domain name or an email address to\n * Punycode. Only the non-ASCII parts of the domain name will be converted,\n * i.e. it doesn't matter if you call it with a domain that's already in\n * ASCII.\n * @memberOf punycode\n * @param {String} input The domain name or email address to convert, as a\n * Unicode string.\n * @returns {String} The Punycode representation of the given domain name or\n * email address.\n */\nexport function toASCII(input) {\n return mapDomain(input, function(string) {\n return regexNonASCII.test(string) ?\n 'xn--' + encode(string) :\n string;\n });\n}\nexport var version = '1.4.1';\n/**\n * An object of methods to convert from JavaScript's internal character\n * representation (UCS-2) to Unicode code points, and back.\n * @see \n * @memberOf punycode\n * @type Object\n */\n\nexport var ucs2 = {\n decode: ucs2decode,\n encode: ucs2encode\n};\nexport default {\n version: version,\n ucs2: ucs2,\n toASCII: toASCII,\n toUnicode: toUnicode,\n encode: encode,\n decode: decode\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\nimport process from 'process';\nvar formatRegExp = /%[sdj%]/g;\nexport function format(f) {\n if (!isString(f)) {\n var objects = [];\n for (var i = 0; i < arguments.length; i++) {\n objects.push(inspect(arguments[i]));\n }\n return objects.join(' ');\n }\n\n var i = 1;\n var args = arguments;\n var len = args.length;\n var str = String(f).replace(formatRegExp, function(x) {\n if (x === '%%') return '%';\n if (i >= len) return x;\n switch (x) {\n case '%s': return String(args[i++]);\n case '%d': return Number(args[i++]);\n case '%j':\n try {\n return JSON.stringify(args[i++]);\n } catch (_) {\n return '[Circular]';\n }\n default:\n return x;\n }\n });\n for (var x = args[i]; i < len; x = args[++i]) {\n if (isNull(x) || !isObject(x)) {\n str += ' ' + x;\n } else {\n str += ' ' + inspect(x);\n }\n }\n return str;\n};\n\n\n// Mark that a method should not be used.\n// Returns a modified function which warns once by default.\n// If --no-deprecation is set, then it is a no-op.\nexport function deprecate(fn, msg) {\n // Allow for deprecating things in the process of starting up.\n if (isUndefined(global.process)) {\n return function() {\n return deprecate(fn, msg).apply(this, arguments);\n };\n }\n\n if (process.noDeprecation === true) {\n return fn;\n }\n\n var warned = false;\n function deprecated() {\n if (!warned) {\n if (process.throwDeprecation) {\n throw new Error(msg);\n } else if (process.traceDeprecation) {\n console.trace(msg);\n } else {\n console.error(msg);\n }\n warned = true;\n }\n return fn.apply(this, arguments);\n }\n\n return deprecated;\n};\n\n\nvar debugs = {};\nvar debugEnviron;\nexport function debuglog(set) {\n if (isUndefined(debugEnviron))\n debugEnviron = process.env.NODE_DEBUG || '';\n set = set.toUpperCase();\n if (!debugs[set]) {\n if (new RegExp('\\\\b' + set + '\\\\b', 'i').test(debugEnviron)) {\n var pid = 0;\n debugs[set] = function() {\n var msg = format.apply(null, arguments);\n console.error('%s %d: %s', set, pid, msg);\n };\n } else {\n debugs[set] = function() {};\n }\n }\n return debugs[set];\n};\n\n\n/**\n * Echos the value of a value. Trys to print the value out\n * in the best way possible given the different types.\n *\n * @param {Object} obj The object to print out.\n * @param {Object} opts Optional options object that alters the output.\n */\n/* legacy: obj, showHidden, depth, colors*/\nexport function inspect(obj, opts) {\n // default options\n var ctx = {\n seen: [],\n stylize: stylizeNoColor\n };\n // legacy...\n if (arguments.length >= 3) ctx.depth = arguments[2];\n if (arguments.length >= 4) ctx.colors = arguments[3];\n if (isBoolean(opts)) {\n // legacy...\n ctx.showHidden = opts;\n } else if (opts) {\n // got an \"options\" object\n _extend(ctx, opts);\n }\n // set default options\n if (isUndefined(ctx.showHidden)) ctx.showHidden = false;\n if (isUndefined(ctx.depth)) ctx.depth = 2;\n if (isUndefined(ctx.colors)) ctx.colors = false;\n if (isUndefined(ctx.customInspect)) ctx.customInspect = true;\n if (ctx.colors) ctx.stylize = stylizeWithColor;\n return formatValue(ctx, obj, ctx.depth);\n}\n\n// http://en.wikipedia.org/wiki/ANSI_escape_code#graphics\ninspect.colors = {\n 'bold' : [1, 22],\n 'italic' : [3, 23],\n 'underline' : [4, 24],\n 'inverse' : [7, 27],\n 'white' : [37, 39],\n 'grey' : [90, 39],\n 'black' : [30, 39],\n 'blue' : [34, 39],\n 'cyan' : [36, 39],\n 'green' : [32, 39],\n 'magenta' : [35, 39],\n 'red' : [31, 39],\n 'yellow' : [33, 39]\n};\n\n// Don't use 'blue' not visible on cmd.exe\ninspect.styles = {\n 'special': 'cyan',\n 'number': 'yellow',\n 'boolean': 'yellow',\n 'undefined': 'grey',\n 'null': 'bold',\n 'string': 'green',\n 'date': 'magenta',\n // \"name\": intentionally not styling\n 'regexp': 'red'\n};\n\n\nfunction stylizeWithColor(str, styleType) {\n var style = inspect.styles[styleType];\n\n if (style) {\n return '\\u001b[' + inspect.colors[style][0] + 'm' + str +\n '\\u001b[' + inspect.colors[style][1] + 'm';\n } else {\n return str;\n }\n}\n\n\nfunction stylizeNoColor(str, styleType) {\n return str;\n}\n\n\nfunction arrayToHash(array) {\n var hash = {};\n\n array.forEach(function(val, idx) {\n hash[val] = true;\n });\n\n return hash;\n}\n\n\nfunction formatValue(ctx, value, recurseTimes) {\n // Provide a hook for user-specified inspect functions.\n // Check that value is an object with an inspect function on it\n if (ctx.customInspect &&\n value &&\n isFunction(value.inspect) &&\n // Filter out the util module, it's inspect function is special\n value.inspect !== inspect &&\n // Also filter out any prototype objects using the circular check.\n !(value.constructor && value.constructor.prototype === value)) {\n var ret = value.inspect(recurseTimes, ctx);\n if (!isString(ret)) {\n ret = formatValue(ctx, ret, recurseTimes);\n }\n return ret;\n }\n\n // Primitive types cannot have properties\n var primitive = formatPrimitive(ctx, value);\n if (primitive) {\n return primitive;\n }\n\n // Look up the keys of the object.\n var keys = Object.keys(value);\n var visibleKeys = arrayToHash(keys);\n\n if (ctx.showHidden) {\n keys = Object.getOwnPropertyNames(value);\n }\n\n // IE doesn't make error fields non-enumerable\n // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx\n if (isError(value)\n && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) {\n return formatError(value);\n }\n\n // Some type of object without properties can be shortcutted.\n if (keys.length === 0) {\n if (isFunction(value)) {\n var name = value.name ? ': ' + value.name : '';\n return ctx.stylize('[Function' + name + ']', 'special');\n }\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n }\n if (isDate(value)) {\n return ctx.stylize(Date.prototype.toString.call(value), 'date');\n }\n if (isError(value)) {\n return formatError(value);\n }\n }\n\n var base = '', array = false, braces = ['{', '}'];\n\n // Make Array say that they are Array\n if (isArray(value)) {\n array = true;\n braces = ['[', ']'];\n }\n\n // Make functions say that they are functions\n if (isFunction(value)) {\n var n = value.name ? ': ' + value.name : '';\n base = ' [Function' + n + ']';\n }\n\n // Make RegExps say that they are RegExps\n if (isRegExp(value)) {\n base = ' ' + RegExp.prototype.toString.call(value);\n }\n\n // Make dates with properties first say the date\n if (isDate(value)) {\n base = ' ' + Date.prototype.toUTCString.call(value);\n }\n\n // Make error with message first say the error\n if (isError(value)) {\n base = ' ' + formatError(value);\n }\n\n if (keys.length === 0 && (!array || value.length == 0)) {\n return braces[0] + base + braces[1];\n }\n\n if (recurseTimes < 0) {\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n } else {\n return ctx.stylize('[Object]', 'special');\n }\n }\n\n ctx.seen.push(value);\n\n var output;\n if (array) {\n output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);\n } else {\n output = keys.map(function(key) {\n return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array);\n });\n }\n\n ctx.seen.pop();\n\n return reduceToSingleString(output, base, braces);\n}\n\n\nfunction formatPrimitive(ctx, value) {\n if (isUndefined(value))\n return ctx.stylize('undefined', 'undefined');\n if (isString(value)) {\n var simple = '\\'' + JSON.stringify(value).replace(/^\"|\"$/g, '')\n .replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"') + '\\'';\n return ctx.stylize(simple, 'string');\n }\n if (isNumber(value))\n return ctx.stylize('' + value, 'number');\n if (isBoolean(value))\n return ctx.stylize('' + value, 'boolean');\n // For some reason typeof null is \"object\", so special case here.\n if (isNull(value))\n return ctx.stylize('null', 'null');\n}\n\n\nfunction formatError(value) {\n return '[' + Error.prototype.toString.call(value) + ']';\n}\n\n\nfunction formatArray(ctx, value, recurseTimes, visibleKeys, keys) {\n var output = [];\n for (var i = 0, l = value.length; i < l; ++i) {\n if (hasOwnProperty(value, String(i))) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n String(i), true));\n } else {\n output.push('');\n }\n }\n keys.forEach(function(key) {\n if (!key.match(/^\\d+$/)) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n key, true));\n }\n });\n return output;\n}\n\n\nfunction formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {\n var name, str, desc;\n desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] };\n if (desc.get) {\n if (desc.set) {\n str = ctx.stylize('[Getter/Setter]', 'special');\n } else {\n str = ctx.stylize('[Getter]', 'special');\n }\n } else {\n if (desc.set) {\n str = ctx.stylize('[Setter]', 'special');\n }\n }\n if (!hasOwnProperty(visibleKeys, key)) {\n name = '[' + key + ']';\n }\n if (!str) {\n if (ctx.seen.indexOf(desc.value) < 0) {\n if (isNull(recurseTimes)) {\n str = formatValue(ctx, desc.value, null);\n } else {\n str = formatValue(ctx, desc.value, recurseTimes - 1);\n }\n if (str.indexOf('\\n') > -1) {\n if (array) {\n str = str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n').substr(2);\n } else {\n str = '\\n' + str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n');\n }\n }\n } else {\n str = ctx.stylize('[Circular]', 'special');\n }\n }\n if (isUndefined(name)) {\n if (array && key.match(/^\\d+$/)) {\n return str;\n }\n name = JSON.stringify('' + key);\n if (name.match(/^\"([a-zA-Z_][a-zA-Z_0-9]*)\"$/)) {\n name = name.substr(1, name.length - 2);\n name = ctx.stylize(name, 'name');\n } else {\n name = name.replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"')\n .replace(/(^\"|\"$)/g, \"'\");\n name = ctx.stylize(name, 'string');\n }\n }\n\n return name + ': ' + str;\n}\n\n\nfunction reduceToSingleString(output, base, braces) {\n var numLinesEst = 0;\n var length = output.reduce(function(prev, cur) {\n numLinesEst++;\n if (cur.indexOf('\\n') >= 0) numLinesEst++;\n return prev + cur.replace(/\\u001b\\[\\d\\d?m/g, '').length + 1;\n }, 0);\n\n if (length > 60) {\n return braces[0] +\n (base === '' ? '' : base + '\\n ') +\n ' ' +\n output.join(',\\n ') +\n ' ' +\n braces[1];\n }\n\n return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];\n}\n\n\n// NOTE: These type checking functions intentionally don't use `instanceof`\n// because it is fragile and can be easily faked with `Object.create()`.\nexport function isArray(ar) {\n return Array.isArray(ar);\n}\n\nexport function isBoolean(arg) {\n return typeof arg === 'boolean';\n}\n\nexport function isNull(arg) {\n return arg === null;\n}\n\nexport function isNullOrUndefined(arg) {\n return arg == null;\n}\n\nexport function isNumber(arg) {\n return typeof arg === 'number';\n}\n\nexport function isString(arg) {\n return typeof arg === 'string';\n}\n\nexport function isSymbol(arg) {\n return typeof arg === 'symbol';\n}\n\nexport function isUndefined(arg) {\n return arg === void 0;\n}\n\nexport function isRegExp(re) {\n return isObject(re) && objectToString(re) === '[object RegExp]';\n}\n\nexport function isObject(arg) {\n return typeof arg === 'object' && arg !== null;\n}\n\nexport function isDate(d) {\n return isObject(d) && objectToString(d) === '[object Date]';\n}\n\nexport function isError(e) {\n return isObject(e) &&\n (objectToString(e) === '[object Error]' || e instanceof Error);\n}\n\nexport function isFunction(arg) {\n return typeof arg === 'function';\n}\n\nexport function isPrimitive(arg) {\n return arg === null ||\n typeof arg === 'boolean' ||\n typeof arg === 'number' ||\n typeof arg === 'string' ||\n typeof arg === 'symbol' || // ES6 symbol\n typeof arg === 'undefined';\n}\n\nexport function isBuffer(maybeBuf) {\n return Buffer.isBuffer(maybeBuf);\n}\n\nfunction objectToString(o) {\n return Object.prototype.toString.call(o);\n}\n\n\nfunction pad(n) {\n return n < 10 ? '0' + n.toString(10) : n.toString(10);\n}\n\n\nvar months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep',\n 'Oct', 'Nov', 'Dec'];\n\n// 26 Feb 16:19:34\nfunction timestamp() {\n var d = new Date();\n var time = [pad(d.getHours()),\n pad(d.getMinutes()),\n pad(d.getSeconds())].join(':');\n return [d.getDate(), months[d.getMonth()], time].join(' ');\n}\n\n\n// log is just a thin wrapper to console.log that prepends a timestamp\nexport function log() {\n console.log('%s - %s', timestamp(), format.apply(null, arguments));\n}\n\n\n/**\n * Inherit the prototype methods from one constructor into another.\n *\n * The Function.prototype.inherits from lang.js rewritten as a standalone\n * function (not on Function.prototype). NOTE: If this file is to be loaded\n * during bootstrapping this function needs to be rewritten using some native\n * functions as prototype setup using normal JavaScript does not work as\n * expected during bootstrapping (see mirror.js in r114903).\n *\n * @param {function} ctor Constructor function which needs to inherit the\n * prototype.\n * @param {function} superCtor Constructor function to inherit prototype from.\n */\nimport inherits from './inherits';\nexport {inherits}\n\nexport function _extend(origin, add) {\n // Don't do anything if add isn't an object\n if (!add || !isObject(add)) return origin;\n\n var keys = Object.keys(add);\n var i = keys.length;\n while (i--) {\n origin[keys[i]] = add[keys[i]];\n }\n return origin;\n};\n\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\n\nexport default {\n inherits: inherits,\n _extend: _extend,\n log: log,\n isBuffer: isBuffer,\n isPrimitive: isPrimitive,\n isFunction: isFunction,\n isError: isError,\n isDate: isDate,\n isObject: isObject,\n isRegExp: isRegExp,\n isUndefined: isUndefined,\n isSymbol: isSymbol,\n isString: isString,\n isNumber: isNumber,\n isNullOrUndefined: isNullOrUndefined,\n isNull: isNull,\n isBoolean: isBoolean,\n isArray: isArray,\n inspect: inspect,\n deprecate: deprecate,\n format: format,\n debuglog: debuglog\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n// If obj.hasOwnProperty has been overridden, then calling\n// obj.hasOwnProperty(prop) will break.\n// See: https://github.com/joyent/node/issues/1707\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\nvar isArray = Array.isArray || function (xs) {\n return Object.prototype.toString.call(xs) === '[object Array]';\n};\nfunction stringifyPrimitive(v) {\n switch (typeof v) {\n case 'string':\n return v;\n\n case 'boolean':\n return v ? 'true' : 'false';\n\n case 'number':\n return isFinite(v) ? v : '';\n\n default:\n return '';\n }\n}\n\nexport function stringify (obj, sep, eq, name) {\n sep = sep || '&';\n eq = eq || '=';\n if (obj === null) {\n obj = undefined;\n }\n\n if (typeof obj === 'object') {\n return map(objectKeys(obj), function(k) {\n var ks = encodeURIComponent(stringifyPrimitive(k)) + eq;\n if (isArray(obj[k])) {\n return map(obj[k], function(v) {\n return ks + encodeURIComponent(stringifyPrimitive(v));\n }).join(sep);\n } else {\n return ks + encodeURIComponent(stringifyPrimitive(obj[k]));\n }\n }).join(sep);\n\n }\n\n if (!name) return '';\n return encodeURIComponent(stringifyPrimitive(name)) + eq +\n encodeURIComponent(stringifyPrimitive(obj));\n};\n\nfunction map (xs, f) {\n if (xs.map) return xs.map(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n res.push(f(xs[i], i));\n }\n return res;\n}\n\nvar objectKeys = Object.keys || function (obj) {\n var res = [];\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key);\n }\n return res;\n};\n\nexport function parse(qs, sep, eq, options) {\n sep = sep || '&';\n eq = eq || '=';\n var obj = {};\n\n if (typeof qs !== 'string' || qs.length === 0) {\n return obj;\n }\n\n var regexp = /\\+/g;\n qs = qs.split(sep);\n\n var maxKeys = 1000;\n if (options && typeof options.maxKeys === 'number') {\n maxKeys = options.maxKeys;\n }\n\n var len = qs.length;\n // maxKeys <= 0 means that we should not limit keys count\n if (maxKeys > 0 && len > maxKeys) {\n len = maxKeys;\n }\n\n for (var i = 0; i < len; ++i) {\n var x = qs[i].replace(regexp, '%20'),\n idx = x.indexOf(eq),\n kstr, vstr, k, v;\n\n if (idx >= 0) {\n kstr = x.substr(0, idx);\n vstr = x.substr(idx + 1);\n } else {\n kstr = x;\n vstr = '';\n }\n\n k = decodeURIComponent(kstr);\n v = decodeURIComponent(vstr);\n\n if (!hasOwnProperty(obj, k)) {\n obj[k] = v;\n } else if (isArray(obj[k])) {\n obj[k].push(v);\n } else {\n obj[k] = [obj[k], v];\n }\n }\n\n return obj;\n};\nexport default {\n encode: stringify,\n stringify: stringify,\n decode: parse,\n parse: parse\n}\nexport {stringify as encode, parse as decode};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nimport {toASCII} from 'punycode';\nimport {isObject,isString,isNullOrUndefined,isNull} from 'util';\nimport {parse as qsParse,stringify as qsStringify} from 'querystring';\nexport {\n urlParse as parse,\n urlResolve as resolve,\n urlResolveObject as resolveObject,\n urlFormat as format\n};\nexport default {\n parse: urlParse,\n resolve: urlResolve,\n resolveObject: urlResolveObject,\n format: urlFormat,\n Url: Url\n}\nexport function Url() {\n this.protocol = null;\n this.slashes = null;\n this.auth = null;\n this.host = null;\n this.port = null;\n this.hostname = null;\n this.hash = null;\n this.search = null;\n this.query = null;\n this.pathname = null;\n this.path = null;\n this.href = null;\n}\n\n// Reference: RFC 3986, RFC 1808, RFC 2396\n\n// define these here so at least they only have to be\n// compiled once on the first module load.\nvar protocolPattern = /^([a-z0-9.+-]+:)/i,\n portPattern = /:[0-9]*$/,\n\n // Special case for a simple path URL\n simplePathPattern = /^(\\/\\/?(?!\\/)[^\\?\\s]*)(\\?[^\\s]*)?$/,\n\n // RFC 2396: characters reserved for delimiting URLs.\n // We actually just auto-escape these.\n delims = ['<', '>', '\"', '`', ' ', '\\r', '\\n', '\\t'],\n\n // RFC 2396: characters not allowed for various reasons.\n unwise = ['{', '}', '|', '\\\\', '^', '`'].concat(delims),\n\n // Allowed by RFCs, but cause of XSS attacks. Always escape these.\n autoEscape = ['\\''].concat(unwise),\n // Characters that are never ever allowed in a hostname.\n // Note that any invalid chars are also handled, but these\n // are the ones that are *expected* to be seen, so we fast-path\n // them.\n nonHostChars = ['%', '/', '?', ';', '#'].concat(autoEscape),\n hostEndingChars = ['/', '?', '#'],\n hostnameMaxLen = 255,\n hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/,\n hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/,\n // protocols that can allow \"unsafe\" and \"unwise\" chars.\n unsafeProtocol = {\n 'javascript': true,\n 'javascript:': true\n },\n // protocols that never have a hostname.\n hostlessProtocol = {\n 'javascript': true,\n 'javascript:': true\n },\n // protocols that always contain a // bit.\n slashedProtocol = {\n 'http': true,\n 'https': true,\n 'ftp': true,\n 'gopher': true,\n 'file': true,\n 'http:': true,\n 'https:': true,\n 'ftp:': true,\n 'gopher:': true,\n 'file:': true\n };\n\nfunction urlParse(url, parseQueryString, slashesDenoteHost) {\n if (url && isObject(url) && url instanceof Url) return url;\n\n var u = new Url;\n u.parse(url, parseQueryString, slashesDenoteHost);\n return u;\n}\nUrl.prototype.parse = function(url, parseQueryString, slashesDenoteHost) {\n return parse(this, url, parseQueryString, slashesDenoteHost);\n}\n\nfunction parse(self, url, parseQueryString, slashesDenoteHost) {\n if (!isString(url)) {\n throw new TypeError('Parameter \\'url\\' must be a string, not ' + typeof url);\n }\n\n // Copy chrome, IE, opera backslash-handling behavior.\n // Back slashes before the query string get converted to forward slashes\n // See: https://code.google.com/p/chromium/issues/detail?id=25916\n var queryIndex = url.indexOf('?'),\n splitter =\n (queryIndex !== -1 && queryIndex < url.indexOf('#')) ? '?' : '#',\n uSplit = url.split(splitter),\n slashRegex = /\\\\/g;\n uSplit[0] = uSplit[0].replace(slashRegex, '/');\n url = uSplit.join(splitter);\n\n var rest = url;\n\n // trim before proceeding.\n // This is to support parse stuff like \" http://foo.com \\n\"\n rest = rest.trim();\n\n if (!slashesDenoteHost && url.split('#').length === 1) {\n // Try fast path regexp\n var simplePath = simplePathPattern.exec(rest);\n if (simplePath) {\n self.path = rest;\n self.href = rest;\n self.pathname = simplePath[1];\n if (simplePath[2]) {\n self.search = simplePath[2];\n if (parseQueryString) {\n self.query = qsParse(self.search.substr(1));\n } else {\n self.query = self.search.substr(1);\n }\n } else if (parseQueryString) {\n self.search = '';\n self.query = {};\n }\n return self;\n }\n }\n\n var proto = protocolPattern.exec(rest);\n if (proto) {\n proto = proto[0];\n var lowerProto = proto.toLowerCase();\n self.protocol = lowerProto;\n rest = rest.substr(proto.length);\n }\n\n // figure out if it's got a host\n // user@server is *always* interpreted as a hostname, and url\n // resolution will treat //foo/bar as host=foo,path=bar because that's\n // how the browser resolves relative URLs.\n if (slashesDenoteHost || proto || rest.match(/^\\/\\/[^@\\/]+@[^@\\/]+/)) {\n var slashes = rest.substr(0, 2) === '//';\n if (slashes && !(proto && hostlessProtocol[proto])) {\n rest = rest.substr(2);\n self.slashes = true;\n }\n }\n var i, hec, l, p;\n if (!hostlessProtocol[proto] &&\n (slashes || (proto && !slashedProtocol[proto]))) {\n\n // there's a hostname.\n // the first instance of /, ?, ;, or # ends the host.\n //\n // If there is an @ in the hostname, then non-host chars *are* allowed\n // to the left of the last @ sign, unless some host-ending character\n // comes *before* the @-sign.\n // URLs are obnoxious.\n //\n // ex:\n // http://a@b@c/ => user:a@b host:c\n // http://a@b?@c => user:a host:c path:/?@c\n\n // v0.12 TODO(isaacs): This is not quite how Chrome does things.\n // Review our test case against browsers more comprehensively.\n\n // find the first instance of any hostEndingChars\n var hostEnd = -1;\n for (i = 0; i < hostEndingChars.length; i++) {\n hec = rest.indexOf(hostEndingChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd))\n hostEnd = hec;\n }\n\n // at this point, either we have an explicit point where the\n // auth portion cannot go past, or the last @ char is the decider.\n var auth, atSign;\n if (hostEnd === -1) {\n // atSign can be anywhere.\n atSign = rest.lastIndexOf('@');\n } else {\n // atSign must be in auth portion.\n // http://a@b/c@d => host:b auth:a path:/c@d\n atSign = rest.lastIndexOf('@', hostEnd);\n }\n\n // Now we have a portion which is definitely the auth.\n // Pull that off.\n if (atSign !== -1) {\n auth = rest.slice(0, atSign);\n rest = rest.slice(atSign + 1);\n self.auth = decodeURIComponent(auth);\n }\n\n // the host is the remaining to the left of the first non-host char\n hostEnd = -1;\n for (i = 0; i < nonHostChars.length; i++) {\n hec = rest.indexOf(nonHostChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd))\n hostEnd = hec;\n }\n // if we still have not hit it, then the entire thing is a host.\n if (hostEnd === -1)\n hostEnd = rest.length;\n\n self.host = rest.slice(0, hostEnd);\n rest = rest.slice(hostEnd);\n\n // pull out port.\n parseHost(self);\n\n // we've indicated that there is a hostname,\n // so even if it's empty, it has to be present.\n self.hostname = self.hostname || '';\n\n // if hostname begins with [ and ends with ]\n // assume that it's an IPv6 address.\n var ipv6Hostname = self.hostname[0] === '[' &&\n self.hostname[self.hostname.length - 1] === ']';\n\n // validate a little.\n if (!ipv6Hostname) {\n var hostparts = self.hostname.split(/\\./);\n for (i = 0, l = hostparts.length; i < l; i++) {\n var part = hostparts[i];\n if (!part) continue;\n if (!part.match(hostnamePartPattern)) {\n var newpart = '';\n for (var j = 0, k = part.length; j < k; j++) {\n if (part.charCodeAt(j) > 127) {\n // we replace non-ASCII char with a temporary placeholder\n // we need this to make sure size of hostname is not\n // broken by replacing non-ASCII by nothing\n newpart += 'x';\n } else {\n newpart += part[j];\n }\n }\n // we test again with ASCII char only\n if (!newpart.match(hostnamePartPattern)) {\n var validParts = hostparts.slice(0, i);\n var notHost = hostparts.slice(i + 1);\n var bit = part.match(hostnamePartStart);\n if (bit) {\n validParts.push(bit[1]);\n notHost.unshift(bit[2]);\n }\n if (notHost.length) {\n rest = '/' + notHost.join('.') + rest;\n }\n self.hostname = validParts.join('.');\n break;\n }\n }\n }\n }\n\n if (self.hostname.length > hostnameMaxLen) {\n self.hostname = '';\n } else {\n // hostnames are always lower case.\n self.hostname = self.hostname.toLowerCase();\n }\n\n if (!ipv6Hostname) {\n // IDNA Support: Returns a punycoded representation of \"domain\".\n // It only converts parts of the domain name that\n // have non-ASCII characters, i.e. it doesn't matter if\n // you call it with a domain that already is ASCII-only.\n self.hostname = toASCII(self.hostname);\n }\n\n p = self.port ? ':' + self.port : '';\n var h = self.hostname || '';\n self.host = h + p;\n self.href += self.host;\n\n // strip [ and ] from the hostname\n // the host field still retains them, though\n if (ipv6Hostname) {\n self.hostname = self.hostname.substr(1, self.hostname.length - 2);\n if (rest[0] !== '/') {\n rest = '/' + rest;\n }\n }\n }\n\n // now rest is set to the post-host stuff.\n // chop off any delim chars.\n if (!unsafeProtocol[lowerProto]) {\n\n // First, make 100% sure that any \"autoEscape\" chars get\n // escaped, even if encodeURIComponent doesn't think they\n // need to be.\n for (i = 0, l = autoEscape.length; i < l; i++) {\n var ae = autoEscape[i];\n if (rest.indexOf(ae) === -1)\n continue;\n var esc = encodeURIComponent(ae);\n if (esc === ae) {\n esc = escape(ae);\n }\n rest = rest.split(ae).join(esc);\n }\n }\n\n\n // chop off from the tail first.\n var hash = rest.indexOf('#');\n if (hash !== -1) {\n // got a fragment string.\n self.hash = rest.substr(hash);\n rest = rest.slice(0, hash);\n }\n var qm = rest.indexOf('?');\n if (qm !== -1) {\n self.search = rest.substr(qm);\n self.query = rest.substr(qm + 1);\n if (parseQueryString) {\n self.query = qsParse(self.query);\n }\n rest = rest.slice(0, qm);\n } else if (parseQueryString) {\n // no query string, but parseQueryString still requested\n self.search = '';\n self.query = {};\n }\n if (rest) self.pathname = rest;\n if (slashedProtocol[lowerProto] &&\n self.hostname && !self.pathname) {\n self.pathname = '/';\n }\n\n //to support http.request\n if (self.pathname || self.search) {\n p = self.pathname || '';\n var s = self.search || '';\n self.path = p + s;\n }\n\n // finally, reconstruct the href based on what has been validated.\n self.href = format(self);\n return self;\n}\n\n// format a parsed object into a url string\nfunction urlFormat(obj) {\n // ensure it's an object, and not a string url.\n // If it's an obj, this is a no-op.\n // this way, you can call url_format() on strings\n // to clean up potentially wonky urls.\n if (isString(obj)) obj = parse({}, obj);\n return format(obj);\n}\n\nfunction format(self) {\n var auth = self.auth || '';\n if (auth) {\n auth = encodeURIComponent(auth);\n auth = auth.replace(/%3A/i, ':');\n auth += '@';\n }\n\n var protocol = self.protocol || '',\n pathname = self.pathname || '',\n hash = self.hash || '',\n host = false,\n query = '';\n\n if (self.host) {\n host = auth + self.host;\n } else if (self.hostname) {\n host = auth + (self.hostname.indexOf(':') === -1 ?\n self.hostname :\n '[' + this.hostname + ']');\n if (self.port) {\n host += ':' + self.port;\n }\n }\n\n if (self.query &&\n isObject(self.query) &&\n Object.keys(self.query).length) {\n query = qsStringify(self.query);\n }\n\n var search = self.search || (query && ('?' + query)) || '';\n\n if (protocol && protocol.substr(-1) !== ':') protocol += ':';\n\n // only the slashedProtocols get the //. Not mailto:, xmpp:, etc.\n // unless they had them to begin with.\n if (self.slashes ||\n (!protocol || slashedProtocol[protocol]) && host !== false) {\n host = '//' + (host || '');\n if (pathname && pathname.charAt(0) !== '/') pathname = '/' + pathname;\n } else if (!host) {\n host = '';\n }\n\n if (hash && hash.charAt(0) !== '#') hash = '#' + hash;\n if (search && search.charAt(0) !== '?') search = '?' + search;\n\n pathname = pathname.replace(/[?#]/g, function(match) {\n return encodeURIComponent(match);\n });\n search = search.replace('#', '%23');\n\n return protocol + host + pathname + search + hash;\n}\n\nUrl.prototype.format = function() {\n return format(this);\n}\n\nfunction urlResolve(source, relative) {\n return urlParse(source, false, true).resolve(relative);\n}\n\nUrl.prototype.resolve = function(relative) {\n return this.resolveObject(urlParse(relative, false, true)).format();\n};\n\nfunction urlResolveObject(source, relative) {\n if (!source) return relative;\n return urlParse(source, false, true).resolveObject(relative);\n}\n\nUrl.prototype.resolveObject = function(relative) {\n if (isString(relative)) {\n var rel = new Url();\n rel.parse(relative, false, true);\n relative = rel;\n }\n\n var result = new Url();\n var tkeys = Object.keys(this);\n for (var tk = 0; tk < tkeys.length; tk++) {\n var tkey = tkeys[tk];\n result[tkey] = this[tkey];\n }\n\n // hash is always overridden, no matter what.\n // even href=\"\" will remove it.\n result.hash = relative.hash;\n\n // if the relative url is empty, then there's nothing left to do here.\n if (relative.href === '') {\n result.href = result.format();\n return result;\n }\n\n // hrefs like //foo/bar always cut to the protocol.\n if (relative.slashes && !relative.protocol) {\n // take everything except the protocol from relative\n var rkeys = Object.keys(relative);\n for (var rk = 0; rk < rkeys.length; rk++) {\n var rkey = rkeys[rk];\n if (rkey !== 'protocol')\n result[rkey] = relative[rkey];\n }\n\n //urlParse appends trailing / to urls like http://www.example.com\n if (slashedProtocol[result.protocol] &&\n result.hostname && !result.pathname) {\n result.path = result.pathname = '/';\n }\n\n result.href = result.format();\n return result;\n }\n var relPath;\n if (relative.protocol && relative.protocol !== result.protocol) {\n // if it's a known url protocol, then changing\n // the protocol does weird things\n // first, if it's not file:, then we MUST have a host,\n // and if there was a path\n // to begin with, then we MUST have a path.\n // if it is file:, then the host is dropped,\n // because that's known to be hostless.\n // anything else is assumed to be absolute.\n if (!slashedProtocol[relative.protocol]) {\n var keys = Object.keys(relative);\n for (var v = 0; v < keys.length; v++) {\n var k = keys[v];\n result[k] = relative[k];\n }\n result.href = result.format();\n return result;\n }\n\n result.protocol = relative.protocol;\n if (!relative.host && !hostlessProtocol[relative.protocol]) {\n relPath = (relative.pathname || '').split('/');\n while (relPath.length && !(relative.host = relPath.shift()));\n if (!relative.host) relative.host = '';\n if (!relative.hostname) relative.hostname = '';\n if (relPath[0] !== '') relPath.unshift('');\n if (relPath.length < 2) relPath.unshift('');\n result.pathname = relPath.join('/');\n } else {\n result.pathname = relative.pathname;\n }\n result.search = relative.search;\n result.query = relative.query;\n result.host = relative.host || '';\n result.auth = relative.auth;\n result.hostname = relative.hostname || relative.host;\n result.port = relative.port;\n // to support http.request\n if (result.pathname || result.search) {\n var p = result.pathname || '';\n var s = result.search || '';\n result.path = p + s;\n }\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n }\n\n var isSourceAbs = (result.pathname && result.pathname.charAt(0) === '/'),\n isRelAbs = (\n relative.host ||\n relative.pathname && relative.pathname.charAt(0) === '/'\n ),\n mustEndAbs = (isRelAbs || isSourceAbs ||\n (result.host && relative.pathname)),\n removeAllDots = mustEndAbs,\n srcPath = result.pathname && result.pathname.split('/') || [],\n psychotic = result.protocol && !slashedProtocol[result.protocol];\n relPath = relative.pathname && relative.pathname.split('/') || [];\n // if the url is a non-slashed url, then relative\n // links like ../.. should be able\n // to crawl up to the hostname, as well. This is strange.\n // result.protocol has already been set by now.\n // Later on, put the first path part into the host field.\n if (psychotic) {\n result.hostname = '';\n result.port = null;\n if (result.host) {\n if (srcPath[0] === '') srcPath[0] = result.host;\n else srcPath.unshift(result.host);\n }\n result.host = '';\n if (relative.protocol) {\n relative.hostname = null;\n relative.port = null;\n if (relative.host) {\n if (relPath[0] === '') relPath[0] = relative.host;\n else relPath.unshift(relative.host);\n }\n relative.host = null;\n }\n mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === '');\n }\n var authInHost;\n if (isRelAbs) {\n // it's absolute.\n result.host = (relative.host || relative.host === '') ?\n relative.host : result.host;\n result.hostname = (relative.hostname || relative.hostname === '') ?\n relative.hostname : result.hostname;\n result.search = relative.search;\n result.query = relative.query;\n srcPath = relPath;\n // fall through to the dot-handling below.\n } else if (relPath.length) {\n // it's relative\n // throw away the existing file, and take the new path instead.\n if (!srcPath) srcPath = [];\n srcPath.pop();\n srcPath = srcPath.concat(relPath);\n result.search = relative.search;\n result.query = relative.query;\n } else if (!isNullOrUndefined(relative.search)) {\n // just pull out the search.\n // like href='?foo'.\n // Put this after the other two cases because it simplifies the booleans\n if (psychotic) {\n result.hostname = result.host = srcPath.shift();\n //occationaly the auth can get stuck only in host\n //this especially happens in cases like\n //url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n authInHost = result.host && result.host.indexOf('@') > 0 ?\n result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.host = result.hostname = authInHost.shift();\n }\n }\n result.search = relative.search;\n result.query = relative.query;\n //to support http.request\n if (!isNull(result.pathname) || !isNull(result.search)) {\n result.path = (result.pathname ? result.pathname : '') +\n (result.search ? result.search : '');\n }\n result.href = result.format();\n return result;\n }\n\n if (!srcPath.length) {\n // no path at all. easy.\n // we've already handled the other stuff above.\n result.pathname = null;\n //to support http.request\n if (result.search) {\n result.path = '/' + result.search;\n } else {\n result.path = null;\n }\n result.href = result.format();\n return result;\n }\n\n // if a url ENDs in . or .., then it must get a trailing slash.\n // however, if it ends in anything else non-slashy,\n // then it must NOT get a trailing slash.\n var last = srcPath.slice(-1)[0];\n var hasTrailingSlash = (\n (result.host || relative.host || srcPath.length > 1) &&\n (last === '.' || last === '..') || last === '');\n\n // strip single dots, resolve double dots to parent dir\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = srcPath.length; i >= 0; i--) {\n last = srcPath[i];\n if (last === '.') {\n srcPath.splice(i, 1);\n } else if (last === '..') {\n srcPath.splice(i, 1);\n up++;\n } else if (up) {\n srcPath.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (!mustEndAbs && !removeAllDots) {\n for (; up--; up) {\n srcPath.unshift('..');\n }\n }\n\n if (mustEndAbs && srcPath[0] !== '' &&\n (!srcPath[0] || srcPath[0].charAt(0) !== '/')) {\n srcPath.unshift('');\n }\n\n if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) {\n srcPath.push('');\n }\n\n var isAbsolute = srcPath[0] === '' ||\n (srcPath[0] && srcPath[0].charAt(0) === '/');\n\n // put the host back\n if (psychotic) {\n result.hostname = result.host = isAbsolute ? '' :\n srcPath.length ? srcPath.shift() : '';\n //occationaly the auth can get stuck only in host\n //this especially happens in cases like\n //url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n authInHost = result.host && result.host.indexOf('@') > 0 ?\n result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.host = result.hostname = authInHost.shift();\n }\n }\n\n mustEndAbs = mustEndAbs || (result.host && srcPath.length);\n\n if (mustEndAbs && !isAbsolute) {\n srcPath.unshift('');\n }\n\n if (!srcPath.length) {\n result.pathname = null;\n result.path = null;\n } else {\n result.pathname = srcPath.join('/');\n }\n\n //to support request.http\n if (!isNull(result.pathname) || !isNull(result.search)) {\n result.path = (result.pathname ? result.pathname : '') +\n (result.search ? result.search : '');\n }\n result.auth = relative.auth || result.auth;\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n};\n\nUrl.prototype.parseHost = function() {\n return parseHost(this);\n};\n\nfunction parseHost(self) {\n var host = self.host;\n var port = portPattern.exec(host);\n if (port) {\n port = port[0];\n if (port !== ':') {\n self.port = port.substr(1);\n }\n host = host.substr(0, host.length - port.length);\n }\n if (host) self.hostname = host;\n}\n","/*!\n * @pixi/constants - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/constants is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * Different types of environments for WebGL.\n *\n * @static\n * @memberof PIXI\n * @name ENV\n * @enum {number}\n * @property {number} WEBGL_LEGACY - Used for older v1 WebGL devices. PixiJS will aim to ensure compatibility\n * with older / less advanced devices. If you experience unexplained flickering prefer this environment.\n * @property {number} WEBGL - Version 1 of WebGL\n * @property {number} WEBGL2 - Version 2 of WebGL\n */\nvar ENV = {\n WEBGL_LEGACY: 0,\n WEBGL: 1,\n WEBGL2: 2,\n};\n\n/**\n * Constant to identify the Renderer Type.\n *\n * @static\n * @memberof PIXI\n * @name RENDERER_TYPE\n * @enum {number}\n * @property {number} UNKNOWN - Unknown render type.\n * @property {number} WEBGL - WebGL render type.\n * @property {number} CANVAS - Canvas render type.\n */\nvar RENDERER_TYPE = {\n UNKNOWN: 0,\n WEBGL: 1,\n CANVAS: 2,\n};\n\n/**\n * Various blend modes supported by PIXI.\n *\n * IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes.\n * Anything else will silently act like NORMAL.\n *\n * @memberof PIXI\n * @name BLEND_MODES\n * @enum {number}\n * @property {number} NORMAL\n * @property {number} ADD\n * @property {number} MULTIPLY\n * @property {number} SCREEN\n * @property {number} OVERLAY\n * @property {number} DARKEN\n * @property {number} LIGHTEN\n * @property {number} COLOR_DODGE\n * @property {number} COLOR_BURN\n * @property {number} HARD_LIGHT\n * @property {number} SOFT_LIGHT\n * @property {number} DIFFERENCE\n * @property {number} EXCLUSION\n * @property {number} HUE\n * @property {number} SATURATION\n * @property {number} COLOR\n * @property {number} LUMINOSITY\n * @property {number} NORMAL_NPM\n * @property {number} ADD_NPM\n * @property {number} SCREEN_NPM\n * @property {number} NONE\n * @property {number} SRC_IN\n * @property {number} SRC_OUT\n * @property {number} SRC_ATOP\n * @property {number} DST_OVER\n * @property {number} DST_IN\n * @property {number} DST_OUT\n * @property {number} DST_ATOP\n * @property {number} SUBTRACT\n * @property {number} SRC_OVER\n * @property {number} ERASE\n */\nvar BLEND_MODES = {\n NORMAL: 0,\n ADD: 1,\n MULTIPLY: 2,\n SCREEN: 3,\n OVERLAY: 4,\n DARKEN: 5,\n LIGHTEN: 6,\n COLOR_DODGE: 7,\n COLOR_BURN: 8,\n HARD_LIGHT: 9,\n SOFT_LIGHT: 10,\n DIFFERENCE: 11,\n EXCLUSION: 12,\n HUE: 13,\n SATURATION: 14,\n COLOR: 15,\n LUMINOSITY: 16,\n NORMAL_NPM: 17,\n ADD_NPM: 18,\n SCREEN_NPM: 19,\n NONE: 20,\n\n SRC_OVER: 0,\n SRC_IN: 21,\n SRC_OUT: 22,\n SRC_ATOP: 23,\n DST_OVER: 24,\n DST_IN: 25,\n DST_OUT: 26,\n DST_ATOP: 27,\n ERASE: 26,\n SUBTRACT: 28,\n};\n\n/**\n * Various webgl draw modes. These can be used to specify which GL drawMode to use\n * under certain situations and renderers.\n *\n * @memberof PIXI\n * @static\n * @name DRAW_MODES\n * @enum {number}\n * @property {number} POINTS\n * @property {number} LINES\n * @property {number} LINE_LOOP\n * @property {number} LINE_STRIP\n * @property {number} TRIANGLES\n * @property {number} TRIANGLE_STRIP\n * @property {number} TRIANGLE_FAN\n */\nvar DRAW_MODES = {\n POINTS: 0,\n LINES: 1,\n LINE_LOOP: 2,\n LINE_STRIP: 3,\n TRIANGLES: 4,\n TRIANGLE_STRIP: 5,\n TRIANGLE_FAN: 6,\n};\n\n/**\n * Various GL texture/resources formats.\n *\n * @memberof PIXI\n * @static\n * @name FORMATS\n * @enum {number}\n * @property {number} RGBA=6408\n * @property {number} RGB=6407\n * @property {number} ALPHA=6406\n * @property {number} LUMINANCE=6409\n * @property {number} LUMINANCE_ALPHA=6410\n * @property {number} DEPTH_COMPONENT=6402\n * @property {number} DEPTH_STENCIL=34041\n */\nvar FORMATS = {\n RGBA: 6408,\n RGB: 6407,\n ALPHA: 6406,\n LUMINANCE: 6409,\n LUMINANCE_ALPHA: 6410,\n DEPTH_COMPONENT: 6402,\n DEPTH_STENCIL: 34041,\n};\n\n/**\n * Various GL target types.\n *\n * @memberof PIXI\n * @static\n * @name TARGETS\n * @enum {number}\n * @property {number} TEXTURE_2D=3553\n * @property {number} TEXTURE_CUBE_MAP=34067\n * @property {number} TEXTURE_2D_ARRAY=35866\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_X=34069\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_X=34070\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Y=34071\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Y=34072\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Z=34073\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Z=34074\n */\nvar TARGETS = {\n TEXTURE_2D: 3553,\n TEXTURE_CUBE_MAP: 34067,\n TEXTURE_2D_ARRAY: 35866,\n TEXTURE_CUBE_MAP_POSITIVE_X: 34069,\n TEXTURE_CUBE_MAP_NEGATIVE_X: 34070,\n TEXTURE_CUBE_MAP_POSITIVE_Y: 34071,\n TEXTURE_CUBE_MAP_NEGATIVE_Y: 34072,\n TEXTURE_CUBE_MAP_POSITIVE_Z: 34073,\n TEXTURE_CUBE_MAP_NEGATIVE_Z: 34074,\n};\n\n/**\n * Various GL data format types.\n *\n * @memberof PIXI\n * @static\n * @name TYPES\n * @enum {number}\n * @property {number} UNSIGNED_BYTE=5121\n * @property {number} UNSIGNED_SHORT=5123\n * @property {number} UNSIGNED_SHORT_5_6_5=33635\n * @property {number} UNSIGNED_SHORT_4_4_4_4=32819\n * @property {number} UNSIGNED_SHORT_5_5_5_1=32820\n * @property {number} FLOAT=5126\n * @property {number} HALF_FLOAT=36193\n */\nvar TYPES = {\n UNSIGNED_BYTE: 5121,\n UNSIGNED_SHORT: 5123,\n UNSIGNED_SHORT_5_6_5: 33635,\n UNSIGNED_SHORT_4_4_4_4: 32819,\n UNSIGNED_SHORT_5_5_5_1: 32820,\n FLOAT: 5126,\n HALF_FLOAT: 36193,\n};\n\n/**\n * The scale modes that are supported by pixi.\n *\n * The {@link PIXI.settings.SCALE_MODE} scale mode affects the default scaling mode of future operations.\n * It can be re-assigned to either LINEAR or NEAREST, depending upon suitability.\n *\n * @memberof PIXI\n * @static\n * @name SCALE_MODES\n * @enum {number}\n * @property {number} LINEAR Smooth scaling\n * @property {number} NEAREST Pixelating scaling\n */\nvar SCALE_MODES = {\n LINEAR: 1,\n NEAREST: 0,\n};\n\n/**\n * The wrap modes that are supported by pixi.\n *\n * The {@link PIXI.settings.WRAP_MODE} wrap mode affects the default wrapping mode of future operations.\n * It can be re-assigned to either CLAMP or REPEAT, depending upon suitability.\n * If the texture is non power of two then clamp will be used regardless as WebGL can\n * only use REPEAT if the texture is po2.\n *\n * This property only affects WebGL.\n *\n * @name WRAP_MODES\n * @memberof PIXI\n * @static\n * @enum {number}\n * @property {number} CLAMP - The textures uvs are clamped\n * @property {number} REPEAT - The texture uvs tile and repeat\n * @property {number} MIRRORED_REPEAT - The texture uvs tile and repeat with mirroring\n */\nvar WRAP_MODES = {\n CLAMP: 33071,\n REPEAT: 10497,\n MIRRORED_REPEAT: 33648,\n};\n\n/**\n * Mipmap filtering modes that are supported by pixi.\n *\n * The {@link PIXI.settings.MIPMAP_TEXTURES} affects default texture filtering.\n * Mipmaps are generated for a baseTexture if its `mipmap` field is `ON`,\n * or its `POW2` and texture dimensions are powers of 2.\n * Due to platform restriction, `ON` option will work like `POW2` for webgl-1.\n *\n * This property only affects WebGL.\n *\n * @name MIPMAP_MODES\n * @memberof PIXI\n * @static\n * @enum {number}\n * @property {number} OFF - No mipmaps\n * @property {number} POW2 - Generate mipmaps if texture dimensions are pow2\n * @property {number} ON - Always generate mipmaps\n */\nvar MIPMAP_MODES = {\n OFF: 0,\n POW2: 1,\n ON: 2,\n};\n\n/**\n * The gc modes that are supported by pixi.\n *\n * The {@link PIXI.settings.GC_MODE} Garbage Collection mode for PixiJS textures is AUTO\n * If set to GC_MODE, the renderer will occasionally check textures usage. If they are not\n * used for a specified period of time they will be removed from the GPU. They will of course\n * be uploaded again when they are required. This is a silent behind the scenes process that\n * should ensure that the GPU does not get filled up.\n *\n * Handy for mobile devices!\n * This property only affects WebGL.\n *\n * @name GC_MODES\n * @enum {number}\n * @static\n * @memberof PIXI\n * @property {number} AUTO - Garbage collection will happen periodically automatically\n * @property {number} MANUAL - Garbage collection will need to be called manually\n */\nvar GC_MODES = {\n AUTO: 0,\n MANUAL: 1,\n};\n\n/**\n * Constants that specify float precision in shaders.\n *\n * @name PRECISION\n * @memberof PIXI\n * @static\n * @enum {string}\n * @constant\n * @property {string} LOW='lowp'\n * @property {string} MEDIUM='mediump'\n * @property {string} HIGH='highp'\n */\nvar PRECISION = {\n LOW: 'lowp',\n MEDIUM: 'mediump',\n HIGH: 'highp',\n};\n\nexport { BLEND_MODES, DRAW_MODES, ENV, FORMATS, GC_MODES, MIPMAP_MODES, PRECISION, RENDERER_TYPE, SCALE_MODES, TARGETS, TYPES, WRAP_MODES };\n//# sourceMappingURL=constants.es.js.map\n","/*!\n * @pixi/utils - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/utils is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nexport { isMobile } from '@pixi/settings';\nexport { default as EventEmitter } from 'eventemitter3';\nexport { default as earcut } from 'earcut';\nimport _url from 'url';\nexport { default as url } from 'url';\nimport { BLEND_MODES } from '@pixi/constants';\n\n/**\n * The prefix that denotes a URL is for a retina asset.\n *\n * @static\n * @name RETINA_PREFIX\n * @memberof PIXI.settings\n * @type {RegExp}\n * @default /@([0-9\\.]+)x/\n * @example `@2x`\n */\nsettings.RETINA_PREFIX = /@([0-9\\.]+)x/;\n\n/**\n * Should the `failIfMajorPerformanceCaveat` flag be enabled as a context option used in the `isWebGLSupported` function.\n * For most scenarios this should be left as true, as otherwise the user may have a poor experience.\n * However, it can be useful to disable under certain scenarios, such as headless unit tests.\n *\n * @static\n * @name FAIL_IF_MAJOR_PERFORMANCE_CAVEAT\n * @memberof PIXI.settings\n * @type {boolean}\n * @default true\n */\nsettings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = true;\n\nvar saidHello = false;\nvar VERSION = '5.1.3';\n\n/**\n * Skips the hello message of renderers that are created after this is run.\n *\n * @function skipHello\n * @memberof PIXI.utils\n */\nfunction skipHello()\n{\n saidHello = true;\n}\n\n/**\n * Logs out the version and renderer information for this running instance of PIXI.\n * If you don't want to see this message you can run `PIXI.utils.skipHello()` before\n * creating your renderer. Keep in mind that doing that will forever make you a jerk face.\n *\n * @static\n * @function sayHello\n * @memberof PIXI.utils\n * @param {string} type - The string renderer type to log.\n */\nfunction sayHello(type)\n{\n if (saidHello)\n {\n return;\n }\n\n if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)\n {\n var args = [\n (\"\\n %c %c %c PixiJS \" + VERSION + \" - ✰ \" + type + \" ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \\n\\n\"),\n 'background: #ff66a5; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'color: #ff66a5; background: #030307; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'background: #ffc3dc; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;' ];\n\n window.console.log.apply(console, args);\n }\n else if (window.console)\n {\n window.console.log((\"PixiJS \" + VERSION + \" - \" + type + \" - http://www.pixijs.com/\"));\n }\n\n saidHello = true;\n}\n\nvar supported;\n\n/**\n * Helper for checking for WebGL support.\n *\n * @memberof PIXI.utils\n * @function isWebGLSupported\n * @return {boolean} Is WebGL supported.\n */\nfunction isWebGLSupported()\n{\n if (typeof supported === 'undefined')\n {\n supported = (function supported()\n {\n var contextOptions = {\n stencil: true,\n failIfMajorPerformanceCaveat: settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT,\n };\n\n try\n {\n if (!window.WebGLRenderingContext)\n {\n return false;\n }\n\n var canvas = document.createElement('canvas');\n var gl = canvas.getContext('webgl', contextOptions)\n || canvas.getContext('experimental-webgl', contextOptions);\n\n var success = !!(gl && gl.getContextAttributes().stencil);\n\n if (gl)\n {\n var loseContext = gl.getExtension('WEBGL_lose_context');\n\n if (loseContext)\n {\n loseContext.loseContext();\n }\n }\n\n gl = null;\n\n return success;\n }\n catch (e)\n {\n return false;\n }\n })();\n }\n\n return supported;\n}\n\n/**\n * Converts a hexadecimal color number to an [R, G, B] array of normalized floats (numbers from 0.0 to 1.0).\n *\n * @example\n * PIXI.utils.hex2rgb(0xffffff); // returns [1, 1, 1]\n * @memberof PIXI.utils\n * @function hex2rgb\n * @param {number} hex - The hexadecimal number to convert\n * @param {number[]} [out=[]] If supplied, this array will be used rather than returning a new one\n * @return {number[]} An array representing the [R, G, B] of the color where all values are floats.\n */\nfunction hex2rgb(hex, out)\n{\n out = out || [];\n\n out[0] = ((hex >> 16) & 0xFF) / 255;\n out[1] = ((hex >> 8) & 0xFF) / 255;\n out[2] = (hex & 0xFF) / 255;\n\n return out;\n}\n\n/**\n * Converts a hexadecimal color number to a string.\n *\n * @example\n * PIXI.utils.hex2string(0xffffff); // returns \"#ffffff\"\n * @memberof PIXI.utils\n * @function hex2string\n * @param {number} hex - Number in hex (e.g., `0xffffff`)\n * @return {string} The string color (e.g., `\"#ffffff\"`).\n */\nfunction hex2string(hex)\n{\n hex = hex.toString(16);\n hex = '000000'.substr(0, 6 - hex.length) + hex;\n\n return (\"#\" + hex);\n}\n\n/**\n * Converts a hexadecimal string to a hexadecimal color number.\n *\n * @example\n * PIXI.utils.string2hex(\"#ffffff\"); // returns 0xffffff\n * @memberof PIXI.utils\n * @function string2hex\n * @param {string} The string color (e.g., `\"#ffffff\"`)\n * @return {number} Number in hexadecimal.\n */\nfunction string2hex(string)\n{\n if (typeof string === 'string' && string[0] === '#')\n {\n string = string.substr(1);\n }\n\n return parseInt(string, 16);\n}\n\n/**\n * Converts a color as an [R, G, B] array of normalized floats to a hexadecimal number.\n *\n * @example\n * PIXI.utils.rgb2hex([1, 1, 1]); // returns 0xffffff\n * @memberof PIXI.utils\n * @function rgb2hex\n * @param {number[]} rgb - Array of numbers where all values are normalized floats from 0.0 to 1.0.\n * @return {number} Number in hexadecimal.\n */\nfunction rgb2hex(rgb)\n{\n return (((rgb[0] * 255) << 16) + ((rgb[1] * 255) << 8) + (rgb[2] * 255 | 0));\n}\n\n/**\n * Corrects PixiJS blend, takes premultiplied alpha into account\n *\n * @memberof PIXI.utils\n * @function mapPremultipliedBlendModes\n * @private\n * @param {Array} [array] - The array to output into.\n * @return {Array} Mapped modes.\n */\nfunction mapPremultipliedBlendModes()\n{\n var pm = [];\n var npm = [];\n\n for (var i = 0; i < 32; i++)\n {\n pm[i] = i;\n npm[i] = i;\n }\n\n pm[BLEND_MODES.NORMAL_NPM] = BLEND_MODES.NORMAL;\n pm[BLEND_MODES.ADD_NPM] = BLEND_MODES.ADD;\n pm[BLEND_MODES.SCREEN_NPM] = BLEND_MODES.SCREEN;\n\n npm[BLEND_MODES.NORMAL] = BLEND_MODES.NORMAL_NPM;\n npm[BLEND_MODES.ADD] = BLEND_MODES.ADD_NPM;\n npm[BLEND_MODES.SCREEN] = BLEND_MODES.SCREEN_NPM;\n\n var array = [];\n\n array.push(npm);\n array.push(pm);\n\n return array;\n}\n\n/**\n * maps premultiply flag and blendMode to adjusted blendMode\n * @memberof PIXI.utils\n * @const premultiplyBlendMode\n * @type {Array}\n */\nvar premultiplyBlendMode = mapPremultipliedBlendModes();\n\n/**\n * changes blendMode according to texture format\n *\n * @memberof PIXI.utils\n * @function correctBlendMode\n * @param {number} blendMode supposed blend mode\n * @param {boolean} premultiplied whether source is premultiplied\n * @returns {number} true blend mode for this texture\n */\nfunction correctBlendMode(blendMode, premultiplied)\n{\n return premultiplyBlendMode[premultiplied ? 1 : 0][blendMode];\n}\n\n/**\n * combines rgb and alpha to out array\n *\n * @memberof PIXI.utils\n * @function premultiplyRgba\n * @param {Float32Array|number[]} rgb input rgb\n * @param {number} alpha alpha param\n * @param {Float32Array} [out] output\n * @param {boolean} [premultiply=true] do premultiply it\n * @returns {Float32Array} vec4 rgba\n */\nfunction premultiplyRgba(rgb, alpha, out, premultiply)\n{\n out = out || new Float32Array(4);\n if (premultiply || premultiply === undefined)\n {\n out[0] = rgb[0] * alpha;\n out[1] = rgb[1] * alpha;\n out[2] = rgb[2] * alpha;\n }\n else\n {\n out[0] = rgb[0];\n out[1] = rgb[1];\n out[2] = rgb[2];\n }\n out[3] = alpha;\n\n return out;\n}\n\n/**\n * premultiplies tint\n *\n * @memberof PIXI.utils\n * @function premultiplyTint\n * @param {number} tint integer RGB\n * @param {number} alpha floating point alpha (0.0-1.0)\n * @returns {number} tint multiplied by alpha\n */\nfunction premultiplyTint(tint, alpha)\n{\n if (alpha === 1.0)\n {\n return (alpha * 255 << 24) + tint;\n }\n if (alpha === 0.0)\n {\n return 0;\n }\n var R = ((tint >> 16) & 0xFF);\n var G = ((tint >> 8) & 0xFF);\n var B = (tint & 0xFF);\n\n R = ((R * alpha) + 0.5) | 0;\n G = ((G * alpha) + 0.5) | 0;\n B = ((B * alpha) + 0.5) | 0;\n\n return (alpha * 255 << 24) + (R << 16) + (G << 8) + B;\n}\n\n/**\n * converts integer tint and float alpha to vec4 form, premultiplies by default\n *\n * @memberof PIXI.utils\n * @function premultiplyTintToRgba\n * @param {number} tint input tint\n * @param {number} alpha alpha param\n * @param {Float32Array} [out] output\n * @param {boolean} [premultiply=true] do premultiply it\n * @returns {Float32Array} vec4 rgba\n */\nfunction premultiplyTintToRgba(tint, alpha, out, premultiply)\n{\n out = out || new Float32Array(4);\n out[0] = ((tint >> 16) & 0xFF) / 255.0;\n out[1] = ((tint >> 8) & 0xFF) / 255.0;\n out[2] = (tint & 0xFF) / 255.0;\n if (premultiply || premultiply === undefined)\n {\n out[0] *= alpha;\n out[1] *= alpha;\n out[2] *= alpha;\n }\n out[3] = alpha;\n\n return out;\n}\n\n/**\n * Generic Mask Stack data structure\n *\n * @memberof PIXI.utils\n * @function createIndicesForQuads\n * @param {number} size - Number of quads\n * @param {Uint16Array|Uint32Array} [outBuffer] - Buffer for output, length has to be `6 * size`\n * @return {Uint16Array|Uint32Array} - Resulting index buffer\n */\nfunction createIndicesForQuads(size, outBuffer)\n{\n if ( outBuffer === void 0 ) outBuffer = null;\n\n // the total number of indices in our array, there are 6 points per quad.\n var totalIndices = size * 6;\n\n outBuffer = outBuffer || new Uint16Array(totalIndices);\n\n if (outBuffer.length !== totalIndices)\n {\n throw new Error((\"Out buffer length is incorrect, got \" + (outBuffer.length) + \" and expected \" + totalIndices));\n }\n\n // fill the indices with the quads to draw\n for (var i = 0, j = 0; i < totalIndices; i += 6, j += 4)\n {\n outBuffer[i + 0] = j + 0;\n outBuffer[i + 1] = j + 1;\n outBuffer[i + 2] = j + 2;\n outBuffer[i + 3] = j + 0;\n outBuffer[i + 4] = j + 2;\n outBuffer[i + 5] = j + 3;\n }\n\n return outBuffer;\n}\n\n/**\n * Remove items from a javascript array without generating garbage\n *\n * @function removeItems\n * @memberof PIXI.utils\n * @param {Array} arr Array to remove elements from\n * @param {number} startIdx starting index\n * @param {number} removeCount how many to remove\n */\nfunction removeItems(arr, startIdx, removeCount)\n{\n var length = arr.length;\n var i;\n\n if (startIdx >= length || removeCount === 0)\n {\n return;\n }\n\n removeCount = (startIdx + removeCount > length ? length - startIdx : removeCount);\n\n var len = length - removeCount;\n\n for (i = startIdx; i < len; ++i)\n {\n arr[i] = arr[i + removeCount];\n }\n\n arr.length = len;\n}\n\nvar nextUid = 0;\n\n/**\n * Gets the next unique identifier\n *\n * @memberof PIXI.utils\n * @function uid\n * @return {number} The next unique identifier to use.\n */\nfunction uid()\n{\n return ++nextUid;\n}\n\n/**\n * Returns sign of number\n *\n * @memberof PIXI.utils\n * @function sign\n * @param {number} n - the number to check the sign of\n * @returns {number} 0 if `n` is 0, -1 if `n` is negative, 1 if `n` is positive\n */\nfunction sign(n)\n{\n if (n === 0) { return 0; }\n\n return n < 0 ? -1 : 1;\n}\n\n// Taken from the bit-twiddle package\n\n/**\n * Rounds to next power of two.\n *\n * @function nextPow2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {number}\n */\nfunction nextPow2(v)\n{\n v += v === 0;\n --v;\n v |= v >>> 1;\n v |= v >>> 2;\n v |= v >>> 4;\n v |= v >>> 8;\n v |= v >>> 16;\n\n return v + 1;\n}\n\n/**\n * Checks if a number is a power of two.\n *\n * @function isPow2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {boolean} `true` if value is power of two\n */\nfunction isPow2(v)\n{\n return !(v & (v - 1)) && (!!v);\n}\n\n/**\n * Computes ceil of log base 2\n *\n * @function log2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {number} logarithm base 2\n */\nfunction log2(v)\n{\n var r = (v > 0xFFFF) << 4;\n\n v >>>= r;\n\n var shift = (v > 0xFF) << 3;\n\n v >>>= shift; r |= shift;\n shift = (v > 0xF) << 2;\n v >>>= shift; r |= shift;\n shift = (v > 0x3) << 1;\n v >>>= shift; r |= shift;\n\n return r | (v >> 1);\n}\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name ProgramCache\n * @memberof PIXI.utils\n * @type {Object}\n */\nvar ProgramCache = {};\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name TextureCache\n * @memberof PIXI.utils\n * @type {Object}\n */\nvar TextureCache = Object.create(null);\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name BaseTextureCache\n * @memberof PIXI.utils\n * @type {Object}\n */\n\nvar BaseTextureCache = Object.create(null);\n/**\n * Destroys all texture in the cache\n *\n * @memberof PIXI.utils\n * @function destroyTextureCache\n */\nfunction destroyTextureCache()\n{\n var key;\n\n for (key in TextureCache)\n {\n TextureCache[key].destroy();\n }\n for (key in BaseTextureCache)\n {\n BaseTextureCache[key].destroy();\n }\n}\n\n/**\n * Removes all textures from cache, but does not destroy them\n *\n * @memberof PIXI.utils\n * @function clearTextureCache\n */\nfunction clearTextureCache()\n{\n var key;\n\n for (key in TextureCache)\n {\n delete TextureCache[key];\n }\n for (key in BaseTextureCache)\n {\n delete BaseTextureCache[key];\n }\n}\n\n/**\n * Trim transparent borders from a canvas\n *\n * @memberof PIXI.utils\n * @function trimCanvas\n * @param {HTMLCanvasElement} canvas - the canvas to trim\n * @returns {object} Trim data\n */\nfunction trimCanvas(canvas)\n{\n // https://gist.github.com/remy/784508\n\n var width = canvas.width;\n var height = canvas.height;\n\n var context = canvas.getContext('2d');\n var imageData = context.getImageData(0, 0, width, height);\n var pixels = imageData.data;\n var len = pixels.length;\n\n var bound = {\n top: null,\n left: null,\n right: null,\n bottom: null,\n };\n var data = null;\n var i;\n var x;\n var y;\n\n for (i = 0; i < len; i += 4)\n {\n if (pixels[i + 3] !== 0)\n {\n x = (i / 4) % width;\n y = ~~((i / 4) / width);\n\n if (bound.top === null)\n {\n bound.top = y;\n }\n\n if (bound.left === null)\n {\n bound.left = x;\n }\n else if (x < bound.left)\n {\n bound.left = x;\n }\n\n if (bound.right === null)\n {\n bound.right = x + 1;\n }\n else if (bound.right < x)\n {\n bound.right = x + 1;\n }\n\n if (bound.bottom === null)\n {\n bound.bottom = y;\n }\n else if (bound.bottom < y)\n {\n bound.bottom = y;\n }\n }\n }\n\n if (bound.top !== null)\n {\n width = bound.right - bound.left;\n height = bound.bottom - bound.top + 1;\n data = context.getImageData(bound.left, bound.top, width, height);\n }\n\n return {\n height: height,\n width: width,\n data: data,\n };\n}\n\n/**\n * Creates a Canvas element of the given size to be used as a target for rendering to.\n *\n * @class\n * @memberof PIXI.utils\n */\nvar CanvasRenderTarget = function CanvasRenderTarget(width, height, resolution)\n{\n /**\n * The Canvas object that belongs to this CanvasRenderTarget.\n *\n * @member {HTMLCanvasElement}\n */\n this.canvas = document.createElement('canvas');\n\n /**\n * A CanvasRenderingContext2D object representing a two-dimensional rendering context.\n *\n * @member {CanvasRenderingContext2D}\n */\n this.context = this.canvas.getContext('2d');\n\n this.resolution = resolution || settings.RESOLUTION;\n\n this.resize(width, height);\n};\n\nvar prototypeAccessors = { width: { configurable: true },height: { configurable: true } };\n\n/**\n * Clears the canvas that was created by the CanvasRenderTarget class.\n *\n * @private\n */\nCanvasRenderTarget.prototype.clear = function clear ()\n{\n this.context.setTransform(1, 0, 0, 1, 0, 0);\n this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);\n};\n\n/**\n * Resizes the canvas to the specified width and height.\n *\n * @param {number} width - the new width of the canvas\n * @param {number} height - the new height of the canvas\n */\nCanvasRenderTarget.prototype.resize = function resize (width, height)\n{\n this.canvas.width = width * this.resolution;\n this.canvas.height = height * this.resolution;\n};\n\n/**\n * Destroys this canvas.\n *\n */\nCanvasRenderTarget.prototype.destroy = function destroy ()\n{\n this.context = null;\n this.canvas = null;\n};\n\n/**\n * The width of the canvas buffer in pixels.\n *\n * @member {number}\n */\nprototypeAccessors.width.get = function ()\n{\n return this.canvas.width;\n};\n\nprototypeAccessors.width.set = function (val) // eslint-disable-line require-jsdoc\n{\n this.canvas.width = val;\n};\n\n/**\n * The height of the canvas buffer in pixels.\n *\n * @member {number}\n */\nprototypeAccessors.height.get = function ()\n{\n return this.canvas.height;\n};\n\nprototypeAccessors.height.set = function (val) // eslint-disable-line require-jsdoc\n{\n this.canvas.height = val;\n};\n\nObject.defineProperties( CanvasRenderTarget.prototype, prototypeAccessors );\n\n/**\n * Regexp for data URI.\n * Based on: {@link https://github.com/ragingwind/data-uri-regex}\n *\n * @static\n * @constant {RegExp|string} DATA_URI\n * @memberof PIXI\n * @example data:image/png;base64\n */\nvar DATA_URI = /^\\s*data:(?:([\\w-]+)\\/([\\w+.-]+))?(?:;charset=([\\w-]+))?(?:;(base64))?,(.*)/i;\n\n/**\n * Typedef for decomposeDataUri return object.\n *\n * @memberof PIXI.utils\n * @typedef {object} DecomposedDataUri\n * @property {string} mediaType Media type, eg. `image`\n * @property {string} subType Sub type, eg. `png`\n * @property {string} encoding Data encoding, eg. `base64`\n * @property {string} data The actual data\n */\n\n/**\n * Split a data URI into components. Returns undefined if\n * parameter `dataUri` is not a valid data URI.\n *\n * @memberof PIXI.utils\n * @function decomposeDataUri\n * @param {string} dataUri - the data URI to check\n * @return {PIXI.utils.DecomposedDataUri|undefined} The decomposed data uri or undefined\n */\nfunction decomposeDataUri(dataUri)\n{\n var dataUriMatch = DATA_URI.exec(dataUri);\n\n if (dataUriMatch)\n {\n return {\n mediaType: dataUriMatch[1] ? dataUriMatch[1].toLowerCase() : undefined,\n subType: dataUriMatch[2] ? dataUriMatch[2].toLowerCase() : undefined,\n charset: dataUriMatch[3] ? dataUriMatch[3].toLowerCase() : undefined,\n encoding: dataUriMatch[4] ? dataUriMatch[4].toLowerCase() : undefined,\n data: dataUriMatch[5],\n };\n }\n\n return undefined;\n}\n\nvar tempAnchor;\n\n/**\n * Sets the `crossOrigin` property for this resource based on if the url\n * for this resource is cross-origin. If crossOrigin was manually set, this\n * function does nothing.\n * Nipped from the resource loader!\n *\n * @ignore\n * @param {string} url - The url to test.\n * @param {object} [loc=window.location] - The location object to test against.\n * @return {string} The crossOrigin value to use (or empty string for none).\n */\nfunction determineCrossOrigin(url, loc)\n{\n if ( loc === void 0 ) loc = window.location;\n\n // data: and javascript: urls are considered same-origin\n if (url.indexOf('data:') === 0)\n {\n return '';\n }\n\n // default is window.location\n loc = loc || window.location;\n\n if (!tempAnchor)\n {\n tempAnchor = document.createElement('a');\n }\n\n // let the browser determine the full href for the url of this resource and then\n // parse with the node url lib, we can't use the properties of the anchor element\n // because they don't work in IE9 :(\n tempAnchor.href = url;\n url = _url.parse(tempAnchor.href);\n\n var samePort = (!url.port && loc.port === '') || (url.port === loc.port);\n\n // if cross origin\n if (url.hostname !== loc.hostname || !samePort || url.protocol !== loc.protocol)\n {\n return 'anonymous';\n }\n\n return '';\n}\n\n/**\n * get the resolution / device pixel ratio of an asset by looking for the prefix\n * used by spritesheets and image urls\n *\n * @memberof PIXI.utils\n * @function getResolutionOfUrl\n * @param {string} url - the image path\n * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set.\n * @return {number} resolution / device pixel ratio of an asset\n */\nfunction getResolutionOfUrl(url, defaultValue)\n{\n var resolution = settings.RETINA_PREFIX.exec(url);\n\n if (resolution)\n {\n return parseFloat(resolution[1]);\n }\n\n return defaultValue !== undefined ? defaultValue : 1;\n}\n\n// A map of warning messages already fired\nvar warnings = {};\n\n/**\n * Helper for warning developers about deprecated features & settings.\n * A stack track for warnings is given; useful for tracking-down where\n * deprecated methods/properties/classes are being used within the code.\n *\n * @memberof PIXI.utils\n * @function deprecation\n * @param {string} version - The version where the feature became deprecated\n * @param {string} message - Message should include what is deprecated, where, and the new solution\n * @param {number} [ignoreDepth=3] - The number of steps to ignore at the top of the error stack\n * this is mostly to ignore internal deprecation calls.\n */\nfunction deprecation(version, message, ignoreDepth)\n{\n if ( ignoreDepth === void 0 ) ignoreDepth = 3;\n\n // Ignore duplicat\n if (warnings[message])\n {\n return;\n }\n\n /* eslint-disable no-console */\n var stack = new Error().stack;\n\n // Handle IE < 10 and Safari < 6\n if (typeof stack === 'undefined')\n {\n console.warn('PixiJS Deprecation Warning: ', (message + \"\\nDeprecated since v\" + version));\n }\n else\n {\n // chop off the stack trace which includes PixiJS internal calls\n stack = stack.split('\\n').splice(ignoreDepth).join('\\n');\n\n if (console.groupCollapsed)\n {\n console.groupCollapsed(\n '%cPixiJS Deprecation Warning: %c%s',\n 'color:#614108;background:#fffbe6',\n 'font-weight:normal;color:#614108;background:#fffbe6',\n (message + \"\\nDeprecated since v\" + version)\n );\n console.warn(stack);\n console.groupEnd();\n }\n else\n {\n console.warn('PixiJS Deprecation Warning: ', (message + \"\\nDeprecated since v\" + version));\n console.warn(stack);\n }\n }\n /* eslint-enable no-console */\n\n warnings[message] = true;\n}\n\n/**\n * Generalized convenience utilities for PIXI.\n * @example\n * // Extend PIXI's internal Event Emitter.\n * class MyEmitter extends PIXI.utils.EventEmitter {\n * constructor() {\n * super();\n * console.log(\"Emitter created!\");\n * }\n * }\n *\n * // Get info on current device\n * console.log(PIXI.utils.isMobile);\n *\n * // Convert hex color to string\n * console.log(PIXI.utils.hex2string(0xff00ff)); // returns: \"#ff00ff\"\n * @namespace PIXI.utils\n */\n\nexport { BaseTextureCache, CanvasRenderTarget, DATA_URI, ProgramCache, TextureCache, clearTextureCache, correctBlendMode, createIndicesForQuads, decomposeDataUri, deprecation, destroyTextureCache, determineCrossOrigin, getResolutionOfUrl, hex2rgb, hex2string, isPow2, isWebGLSupported, log2, nextPow2, premultiplyBlendMode, premultiplyRgba, premultiplyTint, premultiplyTintToRgba, removeItems, rgb2hex, sayHello, sign, skipHello, string2hex, trimCanvas, uid };\n//# sourceMappingURL=utils.es.js.map\n","/*!\n * @pixi/math - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/math is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * The Point object represents a location in a two-dimensional coordinate system, where x represents\n * the horizontal axis and y represents the vertical axis.\n *\n * @class\n * @memberof PIXI\n */\nvar Point = function Point(x, y)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n};\n\n/**\n * Creates a clone of this point\n *\n * @return {PIXI.Point} a copy of the point\n */\nPoint.prototype.clone = function clone ()\n{\n return new Point(this.x, this.y);\n};\n\n/**\n * Copies x and y from the given point\n *\n * @param {PIXI.IPoint} p - The point to copy from\n * @returns {PIXI.IPoint} Returns itself.\n */\nPoint.prototype.copyFrom = function copyFrom (p)\n{\n this.set(p.x, p.y);\n\n return this;\n};\n\n/**\n * Copies x and y into the given point\n *\n * @param {PIXI.IPoint} p - The point to copy.\n * @returns {PIXI.IPoint} Given point with values updated\n */\nPoint.prototype.copyTo = function copyTo (p)\n{\n p.set(this.x, this.y);\n\n return p;\n};\n\n/**\n * Returns true if the given point is equal to this point\n *\n * @param {PIXI.IPoint} p - The point to check\n * @returns {boolean} Whether the given point equal to this point\n */\nPoint.prototype.equals = function equals (p)\n{\n return (p.x === this.x) && (p.y === this.y);\n};\n\n/**\n * Sets the point to a new x and y position.\n * If y is omitted, both x and y will be set to x.\n *\n * @param {number} [x=0] - position of the point on the x axis\n * @param {number} [y=0] - position of the point on the y axis\n */\nPoint.prototype.set = function set (x, y)\n{\n this.x = x || 0;\n this.y = y || ((y !== 0) ? this.x : 0);\n};\n\n/**\n * The Point object represents a location in a two-dimensional coordinate system, where x represents\n * the horizontal axis and y represents the vertical axis.\n *\n * An ObservablePoint is a point that triggers a callback when the point's position is changed.\n *\n * @class\n * @memberof PIXI\n */\nvar ObservablePoint = function ObservablePoint(cb, scope, x, y)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n this._x = x;\n this._y = y;\n\n this.cb = cb;\n this.scope = scope;\n};\n\nvar prototypeAccessors = { x: { configurable: true },y: { configurable: true } };\n\n/**\n * Creates a clone of this point.\n * The callback and scope params can be overidden otherwise they will default\n * to the clone object's values.\n *\n * @override\n * @param {Function} [cb=null] - callback when changed\n * @param {object} [scope=null] - owner of callback\n * @return {PIXI.ObservablePoint} a copy of the point\n */\nObservablePoint.prototype.clone = function clone (cb, scope)\n{\n if ( cb === void 0 ) cb = null;\n if ( scope === void 0 ) scope = null;\n\n var _cb = cb || this.cb;\n var _scope = scope || this.scope;\n\n return new ObservablePoint(_cb, _scope, this._x, this._y);\n};\n\n/**\n * Sets the point to a new x and y position.\n * If y is omitted, both x and y will be set to x.\n *\n * @param {number} [x=0] - position of the point on the x axis\n * @param {number} [y=0] - position of the point on the y axis\n */\nObservablePoint.prototype.set = function set (x, y)\n{\n var _x = x || 0;\n var _y = y || ((y !== 0) ? _x : 0);\n\n if (this._x !== _x || this._y !== _y)\n {\n this._x = _x;\n this._y = _y;\n this.cb.call(this.scope);\n }\n};\n\n/**\n * Copies x and y from the given point\n *\n * @param {PIXI.IPoint} p - The point to copy from.\n * @returns {PIXI.IPoint} Returns itself.\n */\nObservablePoint.prototype.copyFrom = function copyFrom (p)\n{\n if (this._x !== p.x || this._y !== p.y)\n {\n this._x = p.x;\n this._y = p.y;\n this.cb.call(this.scope);\n }\n\n return this;\n};\n\n/**\n * Copies x and y into the given point\n *\n * @param {PIXI.IPoint} p - The point to copy.\n * @returns {PIXI.IPoint} Given point with values updated\n */\nObservablePoint.prototype.copyTo = function copyTo (p)\n{\n p.set(this._x, this._y);\n\n return p;\n};\n\n/**\n * Returns true if the given point is equal to this point\n *\n * @param {PIXI.IPoint} p - The point to check\n * @returns {boolean} Whether the given point equal to this point\n */\nObservablePoint.prototype.equals = function equals (p)\n{\n return (p.x === this._x) && (p.y === this._y);\n};\n\n/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n *\n * @member {number}\n */\nprototypeAccessors.x.get = function ()\n{\n return this._x;\n};\n\nprototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._x !== value)\n {\n this._x = value;\n this.cb.call(this.scope);\n }\n};\n\n/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n *\n * @member {number}\n */\nprototypeAccessors.y.get = function ()\n{\n return this._y;\n};\n\nprototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._y !== value)\n {\n this._y = value;\n this.cb.call(this.scope);\n }\n};\n\nObject.defineProperties( ObservablePoint.prototype, prototypeAccessors );\n\n/**\n * A number, or a string containing a number.\n * @memberof PIXI\n * @typedef {(PIXI.Point|PIXI.ObservablePoint)} IPoint\n */\n\n/**\n * Two Pi.\n *\n * @static\n * @constant {number} PI_2\n * @memberof PIXI\n */\nvar PI_2 = Math.PI * 2;\n\n/**\n * Conversion factor for converting radians to degrees.\n *\n * @static\n * @constant {number} RAD_TO_DEG\n * @memberof PIXI\n */\nvar RAD_TO_DEG = 180 / Math.PI;\n\n/**\n * Conversion factor for converting degrees to radians.\n *\n * @static\n * @constant {number} DEG_TO_RAD\n * @memberof PIXI\n */\nvar DEG_TO_RAD = Math.PI / 180;\n\n/**\n * Constants that identify shapes, mainly to prevent `instanceof` calls.\n *\n * @static\n * @constant\n * @name SHAPES\n * @memberof PIXI\n * @type {object}\n * @property {number} POLY Polygon\n * @property {number} RECT Rectangle\n * @property {number} CIRC Circle\n * @property {number} ELIP Ellipse\n * @property {number} RREC Rounded Rectangle\n */\nvar SHAPES = {\n POLY: 0,\n RECT: 1,\n CIRC: 2,\n ELIP: 3,\n RREC: 4,\n};\n\n/**\n * The PixiJS Matrix as a class makes it a lot faster.\n *\n * Here is a representation of it:\n * ```js\n * | a | c | tx|\n * | b | d | ty|\n * | 0 | 0 | 1 |\n * ```\n * @class\n * @memberof PIXI\n */\nvar Matrix = function Matrix(a, b, c, d, tx, ty)\n{\n if ( a === void 0 ) a = 1;\n if ( b === void 0 ) b = 0;\n if ( c === void 0 ) c = 0;\n if ( d === void 0 ) d = 1;\n if ( tx === void 0 ) tx = 0;\n if ( ty === void 0 ) ty = 0;\n\n /**\n * @member {number}\n * @default 1\n */\n this.a = a;\n\n /**\n * @member {number}\n * @default 0\n */\n this.b = b;\n\n /**\n * @member {number}\n * @default 0\n */\n this.c = c;\n\n /**\n * @member {number}\n * @default 1\n */\n this.d = d;\n\n /**\n * @member {number}\n * @default 0\n */\n this.tx = tx;\n\n /**\n * @member {number}\n * @default 0\n */\n this.ty = ty;\n\n this.array = null;\n};\n\nvar staticAccessors = { IDENTITY: { configurable: true },TEMP_MATRIX: { configurable: true } };\n\n/**\n * Creates a Matrix object based on the given array. The Element to Matrix mapping order is as follows:\n *\n * a = array[0]\n * b = array[1]\n * c = array[3]\n * d = array[4]\n * tx = array[2]\n * ty = array[5]\n *\n * @param {number[]} array - The array that the matrix will be populated from.\n */\nMatrix.prototype.fromArray = function fromArray (array)\n{\n this.a = array[0];\n this.b = array[1];\n this.c = array[3];\n this.d = array[4];\n this.tx = array[2];\n this.ty = array[5];\n};\n\n/**\n * sets the matrix properties\n *\n * @param {number} a - Matrix component\n * @param {number} b - Matrix component\n * @param {number} c - Matrix component\n * @param {number} d - Matrix component\n * @param {number} tx - Matrix component\n * @param {number} ty - Matrix component\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.set = function set (a, b, c, d, tx, ty)\n{\n this.a = a;\n this.b = b;\n this.c = c;\n this.d = d;\n this.tx = tx;\n this.ty = ty;\n\n return this;\n};\n\n/**\n * Creates an array from the current Matrix object.\n *\n * @param {boolean} transpose - Whether we need to transpose the matrix or not\n * @param {Float32Array} [out=new Float32Array(9)] - If provided the array will be assigned to out\n * @return {number[]} the newly created array which contains the matrix\n */\nMatrix.prototype.toArray = function toArray (transpose, out)\n{\n if (!this.array)\n {\n this.array = new Float32Array(9);\n }\n\n var array = out || this.array;\n\n if (transpose)\n {\n array[0] = this.a;\n array[1] = this.b;\n array[2] = 0;\n array[3] = this.c;\n array[4] = this.d;\n array[5] = 0;\n array[6] = this.tx;\n array[7] = this.ty;\n array[8] = 1;\n }\n else\n {\n array[0] = this.a;\n array[1] = this.c;\n array[2] = this.tx;\n array[3] = this.b;\n array[4] = this.d;\n array[5] = this.ty;\n array[6] = 0;\n array[7] = 0;\n array[8] = 1;\n }\n\n return array;\n};\n\n/**\n * Get a new position with the current transformation applied.\n * Can be used to go from a child's coordinate space to the world coordinate space. (e.g. rendering)\n *\n * @param {PIXI.Point} pos - The origin\n * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input)\n * @return {PIXI.Point} The new point, transformed through this matrix\n */\nMatrix.prototype.apply = function apply (pos, newPos)\n{\n newPos = newPos || new Point();\n\n var x = pos.x;\n var y = pos.y;\n\n newPos.x = (this.a * x) + (this.c * y) + this.tx;\n newPos.y = (this.b * x) + (this.d * y) + this.ty;\n\n return newPos;\n};\n\n/**\n * Get a new position with the inverse of the current transformation applied.\n * Can be used to go from the world coordinate space to a child's coordinate space. (e.g. input)\n *\n * @param {PIXI.Point} pos - The origin\n * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input)\n * @return {PIXI.Point} The new point, inverse-transformed through this matrix\n */\nMatrix.prototype.applyInverse = function applyInverse (pos, newPos)\n{\n newPos = newPos || new Point();\n\n var id = 1 / ((this.a * this.d) + (this.c * -this.b));\n\n var x = pos.x;\n var y = pos.y;\n\n newPos.x = (this.d * id * x) + (-this.c * id * y) + (((this.ty * this.c) - (this.tx * this.d)) * id);\n newPos.y = (this.a * id * y) + (-this.b * id * x) + (((-this.ty * this.a) + (this.tx * this.b)) * id);\n\n return newPos;\n};\n\n/**\n * Translates the matrix on the x and y.\n *\n * @param {number} x How much to translate x by\n * @param {number} y How much to translate y by\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.translate = function translate (x, y)\n{\n this.tx += x;\n this.ty += y;\n\n return this;\n};\n\n/**\n * Applies a scale transformation to the matrix.\n *\n * @param {number} x The amount to scale horizontally\n * @param {number} y The amount to scale vertically\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.scale = function scale (x, y)\n{\n this.a *= x;\n this.d *= y;\n this.c *= x;\n this.b *= y;\n this.tx *= x;\n this.ty *= y;\n\n return this;\n};\n\n/**\n * Applies a rotation transformation to the matrix.\n *\n * @param {number} angle - The angle in radians.\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.rotate = function rotate (angle)\n{\n var cos = Math.cos(angle);\n var sin = Math.sin(angle);\n\n var a1 = this.a;\n var c1 = this.c;\n var tx1 = this.tx;\n\n this.a = (a1 * cos) - (this.b * sin);\n this.b = (a1 * sin) + (this.b * cos);\n this.c = (c1 * cos) - (this.d * sin);\n this.d = (c1 * sin) + (this.d * cos);\n this.tx = (tx1 * cos) - (this.ty * sin);\n this.ty = (tx1 * sin) + (this.ty * cos);\n\n return this;\n};\n\n/**\n * Appends the given Matrix to this Matrix.\n *\n * @param {PIXI.Matrix} matrix - The matrix to append.\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.append = function append (matrix)\n{\n var a1 = this.a;\n var b1 = this.b;\n var c1 = this.c;\n var d1 = this.d;\n\n this.a = (matrix.a * a1) + (matrix.b * c1);\n this.b = (matrix.a * b1) + (matrix.b * d1);\n this.c = (matrix.c * a1) + (matrix.d * c1);\n this.d = (matrix.c * b1) + (matrix.d * d1);\n\n this.tx = (matrix.tx * a1) + (matrix.ty * c1) + this.tx;\n this.ty = (matrix.tx * b1) + (matrix.ty * d1) + this.ty;\n\n return this;\n};\n\n/**\n * Sets the matrix based on all the available properties\n *\n * @param {number} x - Position on the x axis\n * @param {number} y - Position on the y axis\n * @param {number} pivotX - Pivot on the x axis\n * @param {number} pivotY - Pivot on the y axis\n * @param {number} scaleX - Scale on the x axis\n * @param {number} scaleY - Scale on the y axis\n * @param {number} rotation - Rotation in radians\n * @param {number} skewX - Skew on the x axis\n * @param {number} skewY - Skew on the y axis\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.setTransform = function setTransform (x, y, pivotX, pivotY, scaleX, scaleY, rotation, skewX, skewY)\n{\n this.a = Math.cos(rotation + skewY) * scaleX;\n this.b = Math.sin(rotation + skewY) * scaleX;\n this.c = -Math.sin(rotation - skewX) * scaleY;\n this.d = Math.cos(rotation - skewX) * scaleY;\n\n this.tx = x - ((pivotX * this.a) + (pivotY * this.c));\n this.ty = y - ((pivotX * this.b) + (pivotY * this.d));\n\n return this;\n};\n\n/**\n * Prepends the given Matrix to this Matrix.\n *\n * @param {PIXI.Matrix} matrix - The matrix to prepend\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.prepend = function prepend (matrix)\n{\n var tx1 = this.tx;\n\n if (matrix.a !== 1 || matrix.b !== 0 || matrix.c !== 0 || matrix.d !== 1)\n {\n var a1 = this.a;\n var c1 = this.c;\n\n this.a = (a1 * matrix.a) + (this.b * matrix.c);\n this.b = (a1 * matrix.b) + (this.b * matrix.d);\n this.c = (c1 * matrix.a) + (this.d * matrix.c);\n this.d = (c1 * matrix.b) + (this.d * matrix.d);\n }\n\n this.tx = (tx1 * matrix.a) + (this.ty * matrix.c) + matrix.tx;\n this.ty = (tx1 * matrix.b) + (this.ty * matrix.d) + matrix.ty;\n\n return this;\n};\n\n/**\n * Decomposes the matrix (x, y, scaleX, scaleY, and rotation) and sets the properties on to a transform.\n *\n * @param {PIXI.Transform} transform - The transform to apply the properties to.\n * @return {PIXI.Transform} The transform with the newly applied properties\n */\nMatrix.prototype.decompose = function decompose (transform)\n{\n // sort out rotation / skew..\n var a = this.a;\n var b = this.b;\n var c = this.c;\n var d = this.d;\n\n var skewX = -Math.atan2(-c, d);\n var skewY = Math.atan2(b, a);\n\n var delta = Math.abs(skewX + skewY);\n\n if (delta < 0.00001 || Math.abs(PI_2 - delta) < 0.00001)\n {\n transform.rotation = skewY;\n transform.skew.x = transform.skew.y = 0;\n }\n else\n {\n transform.rotation = 0;\n transform.skew.x = skewX;\n transform.skew.y = skewY;\n }\n\n // next set scale\n transform.scale.x = Math.sqrt((a * a) + (b * b));\n transform.scale.y = Math.sqrt((c * c) + (d * d));\n\n // next set position\n transform.position.x = this.tx;\n transform.position.y = this.ty;\n\n return transform;\n};\n\n/**\n * Inverts this matrix\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.invert = function invert ()\n{\n var a1 = this.a;\n var b1 = this.b;\n var c1 = this.c;\n var d1 = this.d;\n var tx1 = this.tx;\n var n = (a1 * d1) - (b1 * c1);\n\n this.a = d1 / n;\n this.b = -b1 / n;\n this.c = -c1 / n;\n this.d = a1 / n;\n this.tx = ((c1 * this.ty) - (d1 * tx1)) / n;\n this.ty = -((a1 * this.ty) - (b1 * tx1)) / n;\n\n return this;\n};\n\n/**\n * Resets this Matrix to an identity (default) matrix.\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.identity = function identity ()\n{\n this.a = 1;\n this.b = 0;\n this.c = 0;\n this.d = 1;\n this.tx = 0;\n this.ty = 0;\n\n return this;\n};\n\n/**\n * Creates a new Matrix object with the same values as this one.\n *\n * @return {PIXI.Matrix} A copy of this matrix. Good for chaining method calls.\n */\nMatrix.prototype.clone = function clone ()\n{\n var matrix = new Matrix();\n\n matrix.a = this.a;\n matrix.b = this.b;\n matrix.c = this.c;\n matrix.d = this.d;\n matrix.tx = this.tx;\n matrix.ty = this.ty;\n\n return matrix;\n};\n\n/**\n * Changes the values of the given matrix to be the same as the ones in this matrix\n *\n * @param {PIXI.Matrix} matrix - The matrix to copy to.\n * @return {PIXI.Matrix} The matrix given in parameter with its values updated.\n */\nMatrix.prototype.copyTo = function copyTo (matrix)\n{\n matrix.a = this.a;\n matrix.b = this.b;\n matrix.c = this.c;\n matrix.d = this.d;\n matrix.tx = this.tx;\n matrix.ty = this.ty;\n\n return matrix;\n};\n\n/**\n * Changes the values of the matrix to be the same as the ones in given matrix\n *\n * @param {PIXI.Matrix} matrix - The matrix to copy from.\n * @return {PIXI.Matrix} this\n */\nMatrix.prototype.copyFrom = function copyFrom (matrix)\n{\n this.a = matrix.a;\n this.b = matrix.b;\n this.c = matrix.c;\n this.d = matrix.d;\n this.tx = matrix.tx;\n this.ty = matrix.ty;\n\n return this;\n};\n\n/**\n * A default (identity) matrix\n *\n * @static\n * @const\n * @member {PIXI.Matrix}\n */\nstaticAccessors.IDENTITY.get = function ()\n{\n return new Matrix();\n};\n\n/**\n * A temp matrix\n *\n * @static\n * @const\n * @member {PIXI.Matrix}\n */\nstaticAccessors.TEMP_MATRIX.get = function ()\n{\n return new Matrix();\n};\n\nObject.defineProperties( Matrix, staticAccessors );\n\n// Your friendly neighbour https://en.wikipedia.org/wiki/Dihedral_group\n\n/*\n * Transform matrix for operation n is:\n * | ux | vx |\n * | uy | vy |\n */\n\nvar ux = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1];\nvar uy = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1];\nvar vx = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1];\nvar vy = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1];\n\n/**\n * [Cayley Table]{@link https://en.wikipedia.org/wiki/Cayley_table}\n * for the composition of each rotation in the dihederal group D8.\n *\n * @type number[][]\n * @private\n */\nvar rotationCayley = [];\n\n/**\n * Matrices for each `GD8Symmetry` rotation.\n *\n * @type Matrix[]\n * @private\n */\nvar rotationMatrices = [];\n\n/*\n * Alias for {@code Math.sign}.\n */\nvar signum = Math.sign;\n\n/*\n * Initializes `rotationCayley` and `rotationMatrices`. It is called\n * only once below.\n */\nfunction init()\n{\n for (var i = 0; i < 16; i++)\n {\n var row = [];\n\n rotationCayley.push(row);\n\n for (var j = 0; j < 16; j++)\n {\n /* Multiplies rotation matrices i and j. */\n var _ux = signum((ux[i] * ux[j]) + (vx[i] * uy[j]));\n var _uy = signum((uy[i] * ux[j]) + (vy[i] * uy[j]));\n var _vx = signum((ux[i] * vx[j]) + (vx[i] * vy[j]));\n var _vy = signum((uy[i] * vx[j]) + (vy[i] * vy[j]));\n\n /* Finds rotation matrix matching the product and pushes it. */\n for (var k = 0; k < 16; k++)\n {\n if (ux[k] === _ux && uy[k] === _uy\n && vx[k] === _vx && vy[k] === _vy)\n {\n row.push(k);\n break;\n }\n }\n }\n }\n\n for (var i$1 = 0; i$1 < 16; i$1++)\n {\n var mat = new Matrix();\n\n mat.set(ux[i$1], uy[i$1], vx[i$1], vy[i$1], 0, 0);\n rotationMatrices.push(mat);\n }\n}\n\ninit();\n\n/**\n * @memberof PIXI\n * @typedef {number} GD8Symmetry\n * @see PIXI.GroupD8\n */\n\n/**\n * Implements the dihedral group D8, which is similar to\n * [group D4]{@link http://mathworld.wolfram.com/DihedralGroupD4.html};\n * D8 is the same but with diagonals, and it is used for texture\n * rotations.\n *\n * The directions the U- and V- axes after rotation\n * of an angle of `a: GD8Constant` are the vectors `(uX(a), uY(a))`\n * and `(vX(a), vY(a))`. These aren't necessarily unit vectors.\n *\n * **Origin:**
\n * This is the small part of gameofbombs.com portal system. It works.\n *\n * @see PIXI.GroupD8.E\n * @see PIXI.GroupD8.SE\n * @see PIXI.GroupD8.S\n * @see PIXI.GroupD8.SW\n * @see PIXI.GroupD8.W\n * @see PIXI.GroupD8.NW\n * @see PIXI.GroupD8.N\n * @see PIXI.GroupD8.NE\n * @author Ivan @ivanpopelyshev\n * @class\n * @memberof PIXI\n */\nvar GroupD8 = {\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 0° | East |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n E: 0,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 45°↻ | Southeast |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n SE: 1,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 90°↻ | South |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n S: 2,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 135°↻ | Southwest |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n SW: 3,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 180° | West |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n W: 4,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -135°/225°↻ | Northwest |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n NW: 5,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -90°/270°↻ | North |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n N: 6,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -45°/315°↻ | Northeast |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n NE: 7,\n\n /**\n * Reflection about Y-axis.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MIRROR_VERTICAL: 8,\n\n /**\n * Reflection about the main diagonal.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MAIN_DIAGONAL: 10,\n\n /**\n * Reflection about X-axis.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MIRROR_HORIZONTAL: 12,\n\n /**\n * Reflection about reverse diagonal.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n REVERSE_DIAGONAL: 14,\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The X-component of the U-axis\n * after rotating the axes.\n */\n uX: function (ind) { return ux[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The Y-component of the U-axis\n * after rotating the axes.\n */\n uY: function (ind) { return uy[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The X-component of the V-axis\n * after rotating the axes.\n */\n vX: function (ind) { return vx[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The Y-component of the V-axis\n * after rotating the axes.\n */\n vY: function (ind) { return vy[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotation - symmetry whose opposite\n * is needed. Only rotations have opposite symmetries while\n * reflections don't.\n * @return {PIXI.GD8Symmetry} The opposite symmetry of `rotation`\n */\n inv: function (rotation) {\n if (rotation & 8)// true only if between 8 & 15 (reflections)\n {\n return rotation & 15;// or rotation % 16\n }\n\n return (-rotation) & 7;// or (8 - rotation) % 8\n },\n\n /**\n * Composes the two D8 operations.\n *\n * Taking `^` as reflection:\n *\n * | | E=0 | S=2 | W=4 | N=6 | E^=8 | S^=10 | W^=12 | N^=14 |\n * |-------|-----|-----|-----|-----|------|-------|-------|-------|\n * | E=0 | E | S | W | N | E^ | S^ | W^ | N^ |\n * | S=2 | S | W | N | E | S^ | W^ | N^ | E^ |\n * | W=4 | W | N | E | S | W^ | N^ | E^ | S^ |\n * | N=6 | N | E | S | W | N^ | E^ | S^ | W^ |\n * | E^=8 | E^ | N^ | W^ | S^ | E | N | W | S |\n * | S^=10 | S^ | E^ | N^ | W^ | S | E | N | W |\n * | W^=12 | W^ | S^ | E^ | N^ | W | S | E | N |\n * | N^=14 | N^ | W^ | S^ | E^ | N | W | S | E |\n *\n * [This is a Cayley table]{@link https://en.wikipedia.org/wiki/Cayley_table}\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotationSecond - Second operation, which\n * is the row in the above cayley table.\n * @param {PIXI.GD8Symmetry} rotationFirst - First operation, which\n * is the column in the above cayley table.\n * @return {PIXI.GD8Symmetry} Composed operation\n */\n add: function (rotationSecond, rotationFirst) { return (\n rotationCayley[rotationSecond][rotationFirst]\n ); },\n\n /**\n * Reverse of `add`.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotationSecond - Second operation\n * @param {PIXI.GD8Symmetry} rotationFirst - First operation\n * @return {PIXI.GD8Symmetry} Result\n */\n sub: function (rotationSecond, rotationFirst) { return (\n rotationCayley[rotationSecond][GroupD8.inv(rotationFirst)]\n ); },\n\n /**\n * Adds 180 degrees to rotation, which is a commutative\n * operation.\n *\n * @memberof PIXI.GroupD8\n * @param {number} rotation - The number to rotate.\n * @returns {number} Rotated number\n */\n rotate180: function (rotation) { return rotation ^ 4; },\n\n /**\n * Checks if the rotation angle is vertical, i.e. south\n * or north. It doesn't work for reflections.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotation - The number to check.\n * @returns {boolean} Whether or not the direction is vertical\n */\n isVertical: function (rotation) { return (rotation & 3) === 2; }, // rotation % 4 === 2\n\n /**\n * Approximates the vector `V(dx,dy)` into one of the\n * eight directions provided by `GroupD8`.\n *\n * @memberof PIXI.GroupD8\n * @param {number} dx - X-component of the vector\n * @param {number} dy - Y-component of the vector\n * @return {PIXI.GD8Symmetry} Approximation of the vector into\n * one of the eight symmetries.\n */\n byDirection: function (dx, dy) {\n if (Math.abs(dx) * 2 <= Math.abs(dy))\n {\n if (dy >= 0)\n {\n return GroupD8.S;\n }\n\n return GroupD8.N;\n }\n else if (Math.abs(dy) * 2 <= Math.abs(dx))\n {\n if (dx > 0)\n {\n return GroupD8.E;\n }\n\n return GroupD8.W;\n }\n else if (dy > 0)\n {\n if (dx > 0)\n {\n return GroupD8.SE;\n }\n\n return GroupD8.SW;\n }\n else if (dx > 0)\n {\n return GroupD8.NE;\n }\n\n return GroupD8.NW;\n },\n\n /**\n * Helps sprite to compensate texture packer rotation.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.Matrix} matrix - sprite world matrix\n * @param {PIXI.GD8Symmetry} rotation - The rotation factor to use.\n * @param {number} tx - sprite anchoring\n * @param {number} ty - sprite anchoring\n */\n matrixAppendRotationInv: function (matrix, rotation, tx, ty) {\n if ( tx === void 0 ) tx = 0;\n if ( ty === void 0 ) ty = 0;\n\n // Packer used \"rotation\", we use \"inv(rotation)\"\n var mat = rotationMatrices[GroupD8.inv(rotation)];\n\n mat.tx = tx;\n mat.ty = ty;\n matrix.append(mat);\n },\n};\n\n/**\n * Transform that takes care about its versions\n *\n * @class\n * @memberof PIXI\n */\nvar Transform = function Transform()\n{\n /**\n * The world transformation matrix.\n *\n * @member {PIXI.Matrix}\n */\n this.worldTransform = new Matrix();\n\n /**\n * The local transformation matrix.\n *\n * @member {PIXI.Matrix}\n */\n this.localTransform = new Matrix();\n\n /**\n * The coordinate of the object relative to the local coordinates of the parent.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.position = new ObservablePoint(this.onChange, this, 0, 0);\n\n /**\n * The scale factor of the object.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.scale = new ObservablePoint(this.onChange, this, 1, 1);\n\n /**\n * The pivot point of the displayObject that it rotates around.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.pivot = new ObservablePoint(this.onChange, this, 0, 0);\n\n /**\n * The skew amount, on the x and y axis.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.skew = new ObservablePoint(this.updateSkew, this, 0, 0);\n\n /**\n * The rotation amount.\n *\n * @protected\n * @member {number}\n */\n this._rotation = 0;\n\n /**\n * The X-coordinate value of the normalized local X axis,\n * the first column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._cx = 1;\n\n /**\n * The Y-coordinate value of the normalized local X axis,\n * the first column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._sx = 0;\n\n /**\n * The X-coordinate value of the normalized local Y axis,\n * the second column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._cy = 0;\n\n /**\n * The Y-coordinate value of the normalized local Y axis,\n * the second column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._sy = 1;\n\n /**\n * The locally unique ID of the local transform.\n *\n * @protected\n * @member {number}\n */\n this._localID = 0;\n\n /**\n * The locally unique ID of the local transform\n * used to calculate the current local transformation matrix.\n *\n * @protected\n * @member {number}\n */\n this._currentLocalID = 0;\n\n /**\n * The locally unique ID of the world transform.\n *\n * @protected\n * @member {number}\n */\n this._worldID = 0;\n\n /**\n * The locally unique ID of the parent's world transform\n * used to calculate the current world transformation matrix.\n *\n * @protected\n * @member {number}\n */\n this._parentID = 0;\n};\n\nvar prototypeAccessors$1 = { rotation: { configurable: true } };\n\n/**\n * Called when a value changes.\n *\n * @protected\n */\nTransform.prototype.onChange = function onChange ()\n{\n this._localID++;\n};\n\n/**\n * Called when the skew or the rotation changes.\n *\n * @protected\n */\nTransform.prototype.updateSkew = function updateSkew ()\n{\n this._cx = Math.cos(this._rotation + this.skew._y);\n this._sx = Math.sin(this._rotation + this.skew._y);\n this._cy = -Math.sin(this._rotation - this.skew._x); // cos, added PI/2\n this._sy = Math.cos(this._rotation - this.skew._x); // sin, added PI/2\n\n this._localID++;\n};\n\n/**\n * Updates the local transformation matrix.\n */\nTransform.prototype.updateLocalTransform = function updateLocalTransform ()\n{\n var lt = this.localTransform;\n\n if (this._localID !== this._currentLocalID)\n {\n // get the matrix values of the displayobject based on its transform properties..\n lt.a = this._cx * this.scale._x;\n lt.b = this._sx * this.scale._x;\n lt.c = this._cy * this.scale._y;\n lt.d = this._sy * this.scale._y;\n\n lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c));\n lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d));\n this._currentLocalID = this._localID;\n\n // force an update..\n this._parentID = -1;\n }\n};\n\n/**\n * Updates the local and the world transformation matrices.\n *\n * @param {PIXI.Transform} parentTransform - The parent transform\n */\nTransform.prototype.updateTransform = function updateTransform (parentTransform)\n{\n var lt = this.localTransform;\n\n if (this._localID !== this._currentLocalID)\n {\n // get the matrix values of the displayobject based on its transform properties..\n lt.a = this._cx * this.scale._x;\n lt.b = this._sx * this.scale._x;\n lt.c = this._cy * this.scale._y;\n lt.d = this._sy * this.scale._y;\n\n lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c));\n lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d));\n this._currentLocalID = this._localID;\n\n // force an update..\n this._parentID = -1;\n }\n\n if (this._parentID !== parentTransform._worldID)\n {\n // concat the parent matrix with the objects transform.\n var pt = parentTransform.worldTransform;\n var wt = this.worldTransform;\n\n wt.a = (lt.a * pt.a) + (lt.b * pt.c);\n wt.b = (lt.a * pt.b) + (lt.b * pt.d);\n wt.c = (lt.c * pt.a) + (lt.d * pt.c);\n wt.d = (lt.c * pt.b) + (lt.d * pt.d);\n wt.tx = (lt.tx * pt.a) + (lt.ty * pt.c) + pt.tx;\n wt.ty = (lt.tx * pt.b) + (lt.ty * pt.d) + pt.ty;\n\n this._parentID = parentTransform._worldID;\n\n // update the id of the transform..\n this._worldID++;\n }\n};\n\n/**\n * Decomposes a matrix and sets the transforms properties based on it.\n *\n * @param {PIXI.Matrix} matrix - The matrix to decompose\n */\nTransform.prototype.setFromMatrix = function setFromMatrix (matrix)\n{\n matrix.decompose(this);\n this._localID++;\n};\n\n/**\n * The rotation of the object in radians.\n *\n * @member {number}\n */\nprototypeAccessors$1.rotation.get = function ()\n{\n return this._rotation;\n};\n\nprototypeAccessors$1.rotation.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._rotation !== value)\n {\n this._rotation = value;\n this.updateSkew();\n }\n};\n\nObject.defineProperties( Transform.prototype, prototypeAccessors$1 );\n\n/**\n * A default (identity) transform\n *\n * @static\n * @constant\n * @member {PIXI.Transform}\n */\nTransform.IDENTITY = new Transform();\n\n/**\n * Size object, contains width and height\n *\n * @memberof PIXI\n * @typedef {object} ISize\n * @property {number} width - Width component\n * @property {number} height - Height component\n */\n\n/**\n * Rectangle object is an area defined by its position, as indicated by its top-left corner\n * point (x, y) and by its width and its height.\n *\n * @class\n * @memberof PIXI\n */\nvar Rectangle = function Rectangle(x, y, width, height)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = Number(x);\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = Number(y);\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = Number(width);\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = Number(height);\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.RECT\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.RECT;\n};\n\nvar prototypeAccessors$2 = { left: { configurable: true },right: { configurable: true },top: { configurable: true },bottom: { configurable: true } };\nvar staticAccessors$1 = { EMPTY: { configurable: true } };\n\n/**\n * returns the left edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.left.get = function ()\n{\n return this.x;\n};\n\n/**\n * returns the right edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.right.get = function ()\n{\n return this.x + this.width;\n};\n\n/**\n * returns the top edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.top.get = function ()\n{\n return this.y;\n};\n\n/**\n * returns the bottom edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.bottom.get = function ()\n{\n return this.y + this.height;\n};\n\n/**\n * A constant empty rectangle.\n *\n * @static\n * @constant\n * @member {PIXI.Rectangle}\n */\nstaticAccessors$1.EMPTY.get = function ()\n{\n return new Rectangle(0, 0, 0, 0);\n};\n\n/**\n * Creates a clone of this Rectangle\n *\n * @return {PIXI.Rectangle} a copy of the rectangle\n */\nRectangle.prototype.clone = function clone ()\n{\n return new Rectangle(this.x, this.y, this.width, this.height);\n};\n\n/**\n * Copies another rectangle to this one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to copy from.\n * @return {PIXI.Rectangle} Returns itself.\n */\nRectangle.prototype.copyFrom = function copyFrom (rectangle)\n{\n this.x = rectangle.x;\n this.y = rectangle.y;\n this.width = rectangle.width;\n this.height = rectangle.height;\n\n return this;\n};\n\n/**\n * Copies this rectangle to another one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to copy to.\n * @return {PIXI.Rectangle} Returns given parameter.\n */\nRectangle.prototype.copyTo = function copyTo (rectangle)\n{\n rectangle.x = this.x;\n rectangle.y = this.y;\n rectangle.width = this.width;\n rectangle.height = this.height;\n\n return rectangle;\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this Rectangle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Rectangle\n */\nRectangle.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n\n if (x >= this.x && x < this.x + this.width)\n {\n if (y >= this.y && y < this.y + this.height)\n {\n return true;\n }\n }\n\n return false;\n};\n\n/**\n * Pads the rectangle making it grow in all directions.\n *\n * @param {number} paddingX - The horizontal padding amount.\n * @param {number} paddingY - The vertical padding amount.\n */\nRectangle.prototype.pad = function pad (paddingX, paddingY)\n{\n paddingX = paddingX || 0;\n paddingY = paddingY || ((paddingY !== 0) ? paddingX : 0);\n\n this.x -= paddingX;\n this.y -= paddingY;\n\n this.width += paddingX * 2;\n this.height += paddingY * 2;\n};\n\n/**\n * Fits this rectangle around the passed one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to fit.\n */\nRectangle.prototype.fit = function fit (rectangle)\n{\n var x1 = Math.max(this.x, rectangle.x);\n var x2 = Math.min(this.x + this.width, rectangle.x + rectangle.width);\n var y1 = Math.max(this.y, rectangle.y);\n var y2 = Math.min(this.y + this.height, rectangle.y + rectangle.height);\n\n this.x = x1;\n this.width = Math.max(x2 - x1, 0);\n this.y = y1;\n this.height = Math.max(y2 - y1, 0);\n};\n\n/**\n * Enlarges rectangle that way its corners lie on grid\n *\n * @param {number} [resolution=1] resolution\n * @param {number} [eps=0.001] precision\n */\nRectangle.prototype.ceil = function ceil (resolution, eps)\n{\n if ( resolution === void 0 ) resolution = 1;\n if ( eps === void 0 ) eps = 0.001;\n\n var x2 = Math.ceil((this.x + this.width - eps) * resolution) / resolution;\n var y2 = Math.ceil((this.y + this.height - eps) * resolution) / resolution;\n\n this.x = Math.floor((this.x + eps) * resolution) / resolution;\n this.y = Math.floor((this.y + eps) * resolution) / resolution;\n\n this.width = x2 - this.x;\n this.height = y2 - this.y;\n};\n\n/**\n * Enlarges this rectangle to include the passed rectangle.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to include.\n */\nRectangle.prototype.enlarge = function enlarge (rectangle)\n{\n var x1 = Math.min(this.x, rectangle.x);\n var x2 = Math.max(this.x + this.width, rectangle.x + rectangle.width);\n var y1 = Math.min(this.y, rectangle.y);\n var y2 = Math.max(this.y + this.height, rectangle.y + rectangle.height);\n\n this.x = x1;\n this.width = x2 - x1;\n this.y = y1;\n this.height = y2 - y1;\n};\n\nObject.defineProperties( Rectangle.prototype, prototypeAccessors$2 );\nObject.defineProperties( Rectangle, staticAccessors$1 );\n\n/**\n * The Circle object is used to help draw graphics and can also be used to specify a hit area for displayObjects.\n *\n * @class\n * @memberof PIXI\n */\nvar Circle = function Circle(x, y, radius)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( radius === void 0 ) radius = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.radius = radius;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.CIRC\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.CIRC;\n};\n\n/**\n * Creates a clone of this Circle instance\n *\n * @return {PIXI.Circle} a copy of the Circle\n */\nCircle.prototype.clone = function clone ()\n{\n return new Circle(this.x, this.y, this.radius);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this circle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Circle\n */\nCircle.prototype.contains = function contains (x, y)\n{\n if (this.radius <= 0)\n {\n return false;\n }\n\n var r2 = this.radius * this.radius;\n var dx = (this.x - x);\n var dy = (this.y - y);\n\n dx *= dx;\n dy *= dy;\n\n return (dx + dy <= r2);\n};\n\n/**\n* Returns the framing rectangle of the circle as a Rectangle object\n*\n* @return {PIXI.Rectangle} the framing rectangle\n*/\nCircle.prototype.getBounds = function getBounds ()\n{\n return new Rectangle(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2);\n};\n\n/**\n * The Ellipse object is used to help draw graphics and can also be used to specify a hit area for displayObjects.\n *\n * @class\n * @memberof PIXI\n */\nvar Ellipse = function Ellipse(x, y, halfWidth, halfHeight)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( halfWidth === void 0 ) halfWidth = 0;\n if ( halfHeight === void 0 ) halfHeight = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = halfWidth;\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = halfHeight;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.ELIP\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.ELIP;\n};\n\n/**\n * Creates a clone of this Ellipse instance\n *\n * @return {PIXI.Ellipse} a copy of the ellipse\n */\nEllipse.prototype.clone = function clone ()\n{\n return new Ellipse(this.x, this.y, this.width, this.height);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this ellipse\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coords are within this ellipse\n */\nEllipse.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n\n // normalize the coords to an ellipse with center 0,0\n var normx = ((x - this.x) / this.width);\n var normy = ((y - this.y) / this.height);\n\n normx *= normx;\n normy *= normy;\n\n return (normx + normy <= 1);\n};\n\n/**\n * Returns the framing rectangle of the ellipse as a Rectangle object\n *\n * @return {PIXI.Rectangle} the framing rectangle\n */\nEllipse.prototype.getBounds = function getBounds ()\n{\n return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height);\n};\n\n/**\n * A class to define a shape via user defined co-orinates.\n *\n * @class\n * @memberof PIXI\n */\nvar Polygon = function Polygon()\n{\n var points = [], len = arguments.length;\n while ( len-- ) points[ len ] = arguments[ len ];\n\n if (Array.isArray(points[0]))\n {\n points = points[0];\n }\n\n // if this is an array of points, convert it to a flat array of numbers\n if (points[0] instanceof Point)\n {\n var p = [];\n\n for (var i = 0, il = points.length; i < il; i++)\n {\n p.push(points[i].x, points[i].y);\n }\n\n points = p;\n }\n\n /**\n * An array of the points of this polygon\n *\n * @member {number[]}\n */\n this.points = points;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.POLY\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.POLY;\n\n /**\n * `false` after moveTo, `true` after `closePath`. In all other cases it is `true`.\n * @member {boolean}\n * @default true\n */\n this.closeStroke = true;\n};\n\n/**\n * Creates a clone of this polygon\n *\n * @return {PIXI.Polygon} a copy of the polygon\n */\nPolygon.prototype.clone = function clone ()\n{\n var polygon = new Polygon(this.points.slice());\n\n polygon.closeStroke = this.closeStroke;\n\n return polygon;\n};\n\n/**\n * Checks whether the x and y coordinates passed to this function are contained within this polygon\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this polygon\n */\nPolygon.prototype.contains = function contains (x, y)\n{\n var inside = false;\n\n // use some raycasting to test hits\n // https://github.com/substack/point-in-polygon/blob/master/index.js\n var length = this.points.length / 2;\n\n for (var i = 0, j = length - 1; i < length; j = i++)\n {\n var xi = this.points[i * 2];\n var yi = this.points[(i * 2) + 1];\n var xj = this.points[j * 2];\n var yj = this.points[(j * 2) + 1];\n var intersect = ((yi > y) !== (yj > y)) && (x < ((xj - xi) * ((y - yi) / (yj - yi))) + xi);\n\n if (intersect)\n {\n inside = !inside;\n }\n }\n\n return inside;\n};\n\n/**\n * The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its\n * top-left corner point (x, y) and by its width and its height and its radius.\n *\n * @class\n * @memberof PIXI\n */\nvar RoundedRectangle = function RoundedRectangle(x, y, width, height, radius)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n if ( radius === void 0 ) radius = 20;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = width;\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = height;\n\n /**\n * @member {number}\n * @default 20\n */\n this.radius = radius;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readonly\n * @default PIXI.SHAPES.RREC\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.RREC;\n};\n\n/**\n * Creates a clone of this Rounded Rectangle\n *\n * @return {PIXI.RoundedRectangle} a copy of the rounded rectangle\n */\nRoundedRectangle.prototype.clone = function clone ()\n{\n return new RoundedRectangle(this.x, this.y, this.width, this.height, this.radius);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this Rounded Rectangle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Rounded Rectangle\n */\nRoundedRectangle.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n if (x >= this.x && x <= this.x + this.width)\n {\n if (y >= this.y && y <= this.y + this.height)\n {\n if ((y >= this.y + this.radius && y <= this.y + this.height - this.radius)\n || (x >= this.x + this.radius && x <= this.x + this.width - this.radius))\n {\n return true;\n }\n var dx = x - (this.x + this.radius);\n var dy = y - (this.y + this.radius);\n var radius2 = this.radius * this.radius;\n\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dx = x - (this.x + this.width - this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dy = y - (this.y + this.height - this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dx = x - (this.x + this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n }\n }\n\n return false;\n};\n\n/**\n * Math classes and utilities mixed into PIXI namespace.\n *\n * @lends PIXI\n */\n\nexport { Circle, DEG_TO_RAD, Ellipse, GroupD8, Matrix, ObservablePoint, PI_2, Point, Polygon, RAD_TO_DEG, Rectangle, RoundedRectangle, SHAPES, Transform };\n//# sourceMappingURL=math.es.js.map\n","/*!\n * @pixi/display - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/display is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nimport { Rectangle, RAD_TO_DEG, DEG_TO_RAD, Transform } from '@pixi/math';\nimport { EventEmitter, removeItems } from '@pixi/utils';\n\n/**\n * Sets the default value for the container property 'sortableChildren'.\n * If set to true, the container will sort its children by zIndex value\n * when updateTransform() is called, or manually if sortChildren() is called.\n *\n * This actually changes the order of elements in the array, so should be treated\n * as a basic solution that is not performant compared to other solutions,\n * such as @link https://github.com/pixijs/pixi-display\n *\n * Also be aware of that this may not work nicely with the addChildAt() function,\n * as the zIndex sorting may cause the child to automatically sorted to another position.\n *\n * @static\n * @constant\n * @name SORTABLE_CHILDREN\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\nsettings.SORTABLE_CHILDREN = false;\n\n/**\n * 'Builder' pattern for bounds rectangles.\n *\n * This could be called an Axis-Aligned Bounding Box.\n * It is not an actual shape. It is a mutable thing; no 'EMPTY' or those kind of problems.\n *\n * @class\n * @memberof PIXI\n */\nvar Bounds = function Bounds()\n{\n /**\n * @member {number}\n * @default 0\n */\n this.minX = Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.minY = Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.maxX = -Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.maxY = -Infinity;\n\n this.rect = null;\n};\n\n/**\n * Checks if bounds are empty.\n *\n * @return {boolean} True if empty.\n */\nBounds.prototype.isEmpty = function isEmpty ()\n{\n return this.minX > this.maxX || this.minY > this.maxY;\n};\n\n/**\n * Clears the bounds and resets.\n *\n */\nBounds.prototype.clear = function clear ()\n{\n this.updateID++;\n\n this.minX = Infinity;\n this.minY = Infinity;\n this.maxX = -Infinity;\n this.maxY = -Infinity;\n};\n\n/**\n * Can return Rectangle.EMPTY constant, either construct new rectangle, either use your rectangle\n * It is not guaranteed that it will return tempRect\n *\n * @param {PIXI.Rectangle} rect - temporary object will be used if AABB is not empty\n * @returns {PIXI.Rectangle} A rectangle of the bounds\n */\nBounds.prototype.getRectangle = function getRectangle (rect)\n{\n if (this.minX > this.maxX || this.minY > this.maxY)\n {\n return Rectangle.EMPTY;\n }\n\n rect = rect || new Rectangle(0, 0, 1, 1);\n\n rect.x = this.minX;\n rect.y = this.minY;\n rect.width = this.maxX - this.minX;\n rect.height = this.maxY - this.minY;\n\n return rect;\n};\n\n/**\n * This function should be inlined when its possible.\n *\n * @param {PIXI.Point} point - The point to add.\n */\nBounds.prototype.addPoint = function addPoint (point)\n{\n this.minX = Math.min(this.minX, point.x);\n this.maxX = Math.max(this.maxX, point.x);\n this.minY = Math.min(this.minY, point.y);\n this.maxY = Math.max(this.maxY, point.y);\n};\n\n/**\n * Adds a quad, not transformed\n *\n * @param {Float32Array} vertices - The verts to add.\n */\nBounds.prototype.addQuad = function addQuad (vertices)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n var x = vertices[0];\n var y = vertices[1];\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[2];\n y = vertices[3];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[4];\n y = vertices[5];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[6];\n y = vertices[7];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds sprite frame, transformed.\n *\n * @param {PIXI.Transform} transform - TODO\n * @param {number} x0 - TODO\n * @param {number} y0 - TODO\n * @param {number} x1 - TODO\n * @param {number} y1 - TODO\n */\nBounds.prototype.addFrame = function addFrame (transform, x0, y0, x1, y1)\n{\n var matrix = transform.worldTransform;\n var a = matrix.a;\n var b = matrix.b;\n var c = matrix.c;\n var d = matrix.d;\n var tx = matrix.tx;\n var ty = matrix.ty;\n\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n var x = (a * x0) + (c * y0) + tx;\n var y = (b * x0) + (d * y0) + ty;\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x1) + (c * y0) + tx;\n y = (b * x1) + (d * y0) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x0) + (c * y1) + tx;\n y = (b * x0) + (d * y1) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x1) + (c * y1) + tx;\n y = (b * x1) + (d * y1) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds screen vertices from array\n *\n * @param {Float32Array} vertexData - calculated vertices\n * @param {number} beginOffset - begin offset\n * @param {number} endOffset - end offset, excluded\n */\nBounds.prototype.addVertexData = function addVertexData (vertexData, beginOffset, endOffset)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n for (var i = beginOffset; i < endOffset; i += 2)\n {\n var x = vertexData[i];\n var y = vertexData[i + 1];\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n }\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Add an array of mesh vertices\n *\n * @param {PIXI.Transform} transform - mesh transform\n * @param {Float32Array} vertices - mesh coordinates in array\n * @param {number} beginOffset - begin offset\n * @param {number} endOffset - end offset, excluded\n */\nBounds.prototype.addVertices = function addVertices (transform, vertices, beginOffset, endOffset)\n{\n var matrix = transform.worldTransform;\n var a = matrix.a;\n var b = matrix.b;\n var c = matrix.c;\n var d = matrix.d;\n var tx = matrix.tx;\n var ty = matrix.ty;\n\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n for (var i = beginOffset; i < endOffset; i += 2)\n {\n var rawX = vertices[i];\n var rawY = vertices[i + 1];\n var x = (a * rawX) + (c * rawY) + tx;\n var y = (d * rawY) + (b * rawX) + ty;\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n }\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds other Bounds\n *\n * @param {PIXI.Bounds} bounds - TODO\n */\nBounds.prototype.addBounds = function addBounds (bounds)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = bounds.minX < minX ? bounds.minX : minX;\n this.minY = bounds.minY < minY ? bounds.minY : minY;\n this.maxX = bounds.maxX > maxX ? bounds.maxX : maxX;\n this.maxY = bounds.maxY > maxY ? bounds.maxY : maxY;\n};\n\n/**\n * Adds other Bounds, masked with Bounds\n *\n * @param {PIXI.Bounds} bounds - TODO\n * @param {PIXI.Bounds} mask - TODO\n */\nBounds.prototype.addBoundsMask = function addBoundsMask (bounds, mask)\n{\n var _minX = bounds.minX > mask.minX ? bounds.minX : mask.minX;\n var _minY = bounds.minY > mask.minY ? bounds.minY : mask.minY;\n var _maxX = bounds.maxX < mask.maxX ? bounds.maxX : mask.maxX;\n var _maxY = bounds.maxY < mask.maxY ? bounds.maxY : mask.maxY;\n\n if (_minX <= _maxX && _minY <= _maxY)\n {\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = _minX < minX ? _minX : minX;\n this.minY = _minY < minY ? _minY : minY;\n this.maxX = _maxX > maxX ? _maxX : maxX;\n this.maxY = _maxY > maxY ? _maxY : maxY;\n }\n};\n\n/**\n * Adds other Bounds, masked with Rectangle\n *\n * @param {PIXI.Bounds} bounds - TODO\n * @param {PIXI.Rectangle} area - TODO\n */\nBounds.prototype.addBoundsArea = function addBoundsArea (bounds, area)\n{\n var _minX = bounds.minX > area.x ? bounds.minX : area.x;\n var _minY = bounds.minY > area.y ? bounds.minY : area.y;\n var _maxX = bounds.maxX < area.x + area.width ? bounds.maxX : (area.x + area.width);\n var _maxY = bounds.maxY < area.y + area.height ? bounds.maxY : (area.y + area.height);\n\n if (_minX <= _maxX && _minY <= _maxY)\n {\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = _minX < minX ? _minX : minX;\n this.minY = _minY < minY ? _minY : minY;\n this.maxX = _maxX > maxX ? _maxX : maxX;\n this.maxY = _maxY > maxY ? _maxY : maxY;\n }\n};\n\n// _tempDisplayObjectParent = new DisplayObject();\n\n/**\n * The base class for all objects that are rendered on the screen.\n *\n * This is an abstract class and should not be used on its own; rather it should be extended.\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar DisplayObject = /*@__PURE__*/(function (EventEmitter) {\n function DisplayObject()\n {\n EventEmitter.call(this);\n\n this.tempDisplayObjectParent = null;\n\n // TODO: need to create Transform from factory\n /**\n * World transform and local transform of this object.\n * This will become read-only later, please do not assign anything there unless you know what are you doing.\n *\n * @member {PIXI.Transform}\n */\n this.transform = new Transform();\n\n /**\n * The opacity of the object.\n *\n * @member {number}\n */\n this.alpha = 1;\n\n /**\n * The visibility of the object. If false the object will not be drawn, and\n * the updateTransform function will not be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually.\n *\n * @member {boolean}\n */\n this.visible = true;\n\n /**\n * Can this object be rendered, if false the object will not be drawn but the updateTransform\n * methods will still be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds manually.\n *\n * @member {boolean}\n */\n this.renderable = true;\n\n /**\n * The display object container that contains this display object.\n *\n * @member {PIXI.Container}\n * @readonly\n */\n this.parent = null;\n\n /**\n * The multiplied alpha of the displayObject.\n *\n * @member {number}\n * @readonly\n */\n this.worldAlpha = 1;\n\n /**\n * Which index in the children array the display component was before the previous zIndex sort.\n * Used by containers to help sort objects with the same zIndex, by using previous array index as the decider.\n *\n * @member {number}\n * @protected\n */\n this._lastSortedIndex = 0;\n\n /**\n * The zIndex of the displayObject.\n * A higher value will mean it will be rendered on top of other displayObjects within the same container.\n *\n * @member {number}\n * @protected\n */\n this._zIndex = 0;\n\n /**\n * The area the filter is applied to. This is used as more of an optimization\n * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle.\n *\n * Also works as an interaction mask.\n *\n * @member {?PIXI.Rectangle}\n */\n this.filterArea = null;\n\n /**\n * Sets the filters for the displayObject.\n * * IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer.\n * To remove filters simply set this property to `'null'`.\n *\n * @member {?PIXI.Filter[]}\n */\n this.filters = null;\n this._enabledFilters = null;\n\n /**\n * The bounds object, this is used to calculate and store the bounds of the displayObject.\n *\n * @member {PIXI.Bounds}\n * @protected\n */\n this._bounds = new Bounds();\n this._boundsID = 0;\n this._lastBoundsID = -1;\n this._boundsRect = null;\n this._localBoundsRect = null;\n\n /**\n * The original, cached mask of the object.\n *\n * @member {PIXI.Graphics|PIXI.Sprite|null}\n * @protected\n */\n this._mask = null;\n\n /**\n * Fired when this DisplayObject is added to a Container.\n *\n * @event PIXI.DisplayObject#added\n * @param {PIXI.Container} container - The container added to.\n */\n\n /**\n * Fired when this DisplayObject is removed from a Container.\n *\n * @event PIXI.DisplayObject#removed\n * @param {PIXI.Container} container - The container removed from.\n */\n\n /**\n * If the object has been destroyed via destroy(). If true, it should not be used.\n *\n * @member {boolean}\n * @protected\n */\n this._destroyed = false;\n\n /**\n * used to fast check if a sprite is.. a sprite!\n * @member {boolean}\n */\n this.isSprite = false;\n }\n\n if ( EventEmitter ) DisplayObject.__proto__ = EventEmitter;\n DisplayObject.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n DisplayObject.prototype.constructor = DisplayObject;\n\n var prototypeAccessors = { _tempDisplayObjectParent: { configurable: true },x: { configurable: true },y: { configurable: true },worldTransform: { configurable: true },localTransform: { configurable: true },position: { configurable: true },scale: { configurable: true },pivot: { configurable: true },skew: { configurable: true },rotation: { configurable: true },angle: { configurable: true },zIndex: { configurable: true },worldVisible: { configurable: true },mask: { configurable: true } };\n\n /**\n * @protected\n * @member {PIXI.DisplayObject}\n */\n DisplayObject.mixin = function mixin (source)\n {\n // in ES8/ES2017, this would be really easy:\n // Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n\n // get all the enumerable property keys\n var keys = Object.keys(source);\n\n // loop through properties\n for (var i = 0; i < keys.length; ++i)\n {\n var propertyName = keys[i];\n\n // Set the property using the property descriptor - this works for accessors and normal value properties\n Object.defineProperty(\n DisplayObject.prototype,\n propertyName,\n Object.getOwnPropertyDescriptor(source, propertyName)\n );\n }\n };\n\n prototypeAccessors._tempDisplayObjectParent.get = function ()\n {\n if (this.tempDisplayObjectParent === null)\n {\n this.tempDisplayObjectParent = new DisplayObject();\n }\n\n return this.tempDisplayObjectParent;\n };\n\n /**\n * Updates the object transform for rendering.\n *\n * TODO - Optimization pass!\n */\n DisplayObject.prototype.updateTransform = function updateTransform ()\n {\n this.transform.updateTransform(this.parent.transform);\n // multiply the alphas..\n this.worldAlpha = this.alpha * this.parent.worldAlpha;\n\n this._bounds.updateID++;\n };\n\n /**\n * Recursively updates transform of all objects from the root to this one\n * internal function for toLocal()\n */\n DisplayObject.prototype._recursivePostUpdateTransform = function _recursivePostUpdateTransform ()\n {\n if (this.parent)\n {\n this.parent._recursivePostUpdateTransform();\n this.transform.updateTransform(this.parent.transform);\n }\n else\n {\n this.transform.updateTransform(this._tempDisplayObjectParent.transform);\n }\n };\n\n /**\n * Retrieves the bounds of the displayObject as a rectangle object.\n *\n * @param {boolean} [skipUpdate] - Setting to `true` will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost.\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation.\n * @return {PIXI.Rectangle} The rectangular bounding area.\n */\n DisplayObject.prototype.getBounds = function getBounds (skipUpdate, rect)\n {\n if (!skipUpdate)\n {\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this._recursivePostUpdateTransform();\n this.updateTransform();\n }\n }\n\n if (this._boundsID !== this._lastBoundsID)\n {\n this.calculateBounds();\n this._lastBoundsID = this._boundsID;\n }\n\n if (!rect)\n {\n if (!this._boundsRect)\n {\n this._boundsRect = new Rectangle();\n }\n\n rect = this._boundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n };\n\n /**\n * Retrieves the local bounds of the displayObject as a rectangle object.\n *\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation.\n * @return {PIXI.Rectangle} The rectangular bounding area.\n */\n DisplayObject.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n var transformRef = this.transform;\n var parentRef = this.parent;\n\n this.parent = null;\n this.transform = this._tempDisplayObjectParent.transform;\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n var bounds = this.getBounds(false, rect);\n\n this.parent = parentRef;\n this.transform = transformRef;\n\n return bounds;\n };\n\n /**\n * Calculates the global position of the display object.\n *\n * @param {PIXI.IPoint} position - The world origin to calculate from.\n * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point).\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform.\n * @return {PIXI.IPoint} A point object representing the position of this object.\n */\n DisplayObject.prototype.toGlobal = function toGlobal (position, point, skipUpdate)\n {\n if ( skipUpdate === void 0 ) skipUpdate = false;\n\n if (!skipUpdate)\n {\n this._recursivePostUpdateTransform();\n\n // this parent check is for just in case the item is a root object.\n // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly\n // this is mainly to avoid a parent check in the main loop. Every little helps for performance :)\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.displayObjectUpdateTransform();\n this.parent = null;\n }\n else\n {\n this.displayObjectUpdateTransform();\n }\n }\n\n // don't need to update the lot\n return this.worldTransform.apply(position, point);\n };\n\n /**\n * Calculates the local position of the display object relative to another point.\n *\n * @param {PIXI.IPoint} position - The world origin to calculate from.\n * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from.\n * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point).\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform\n * @return {PIXI.IPoint} A point object representing the position of this object\n */\n DisplayObject.prototype.toLocal = function toLocal (position, from, point, skipUpdate)\n {\n if (from)\n {\n position = from.toGlobal(position, point, skipUpdate);\n }\n\n if (!skipUpdate)\n {\n this._recursivePostUpdateTransform();\n\n // this parent check is for just in case the item is a root object.\n // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly\n // this is mainly to avoid a parent check in the main loop. Every little helps for performance :)\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.displayObjectUpdateTransform();\n this.parent = null;\n }\n else\n {\n this.displayObjectUpdateTransform();\n }\n }\n\n // simply apply the matrix..\n return this.worldTransform.applyInverse(position, point);\n };\n\n /**\n * Renders the object using the WebGL renderer.\n *\n * @param {PIXI.Renderer} renderer - The renderer.\n */\n DisplayObject.prototype.render = function render (renderer) // eslint-disable-line no-unused-vars\n {\n // OVERWRITE;\n };\n\n /**\n * Set the parent Container of this DisplayObject.\n *\n * @param {PIXI.Container} container - The Container to add this DisplayObject to.\n * @return {PIXI.Container} The Container that this DisplayObject was added to.\n */\n DisplayObject.prototype.setParent = function setParent (container)\n {\n if (!container || !container.addChild)\n {\n throw new Error('setParent: Argument must be a Container');\n }\n\n container.addChild(this);\n\n return container;\n };\n\n /**\n * Convenience function to set the position, scale, skew and pivot at once.\n *\n * @param {number} [x=0] - The X position\n * @param {number} [y=0] - The Y position\n * @param {number} [scaleX=1] - The X scale value\n * @param {number} [scaleY=1] - The Y scale value\n * @param {number} [rotation=0] - The rotation\n * @param {number} [skewX=0] - The X skew value\n * @param {number} [skewY=0] - The Y skew value\n * @param {number} [pivotX=0] - The X pivot value\n * @param {number} [pivotY=0] - The Y pivot value\n * @return {PIXI.DisplayObject} The DisplayObject instance\n */\n DisplayObject.prototype.setTransform = function setTransform (x, y, scaleX, scaleY, rotation, skewX, skewY, pivotX, pivotY)\n {\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( scaleX === void 0 ) scaleX = 1;\n if ( scaleY === void 0 ) scaleY = 1;\n if ( rotation === void 0 ) rotation = 0;\n if ( skewX === void 0 ) skewX = 0;\n if ( skewY === void 0 ) skewY = 0;\n if ( pivotX === void 0 ) pivotX = 0;\n if ( pivotY === void 0 ) pivotY = 0;\n\n this.position.x = x;\n this.position.y = y;\n this.scale.x = !scaleX ? 1 : scaleX;\n this.scale.y = !scaleY ? 1 : scaleY;\n this.rotation = rotation;\n this.skew.x = skewX;\n this.skew.y = skewY;\n this.pivot.x = pivotX;\n this.pivot.y = pivotY;\n\n return this;\n };\n\n /**\n * Base destroy method for generic display objects. This will automatically\n * remove the display object from its parent Container as well as remove\n * all current event listeners and internal references. Do not use a DisplayObject\n * after calling `destroy()`.\n *\n */\n DisplayObject.prototype.destroy = function destroy ()\n {\n this.removeAllListeners();\n if (this.parent)\n {\n this.parent.removeChild(this);\n }\n this.transform = null;\n\n this.parent = null;\n\n this._bounds = null;\n this._currentBounds = null;\n this._mask = null;\n\n this.filterArea = null;\n\n this.interactive = false;\n this.interactiveChildren = false;\n\n this._destroyed = true;\n };\n\n /**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n * An alias to position.x\n *\n * @member {number}\n */\n prototypeAccessors.x.get = function ()\n {\n return this.position.x;\n };\n\n prototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.x = value;\n };\n\n /**\n * The position of the displayObject on the y axis relative to the local coordinates of the parent.\n * An alias to position.y\n *\n * @member {number}\n */\n prototypeAccessors.y.get = function ()\n {\n return this.position.y;\n };\n\n prototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.y = value;\n };\n\n /**\n * Current transform of the object based on world (parent) factors.\n *\n * @member {PIXI.Matrix}\n * @readonly\n */\n prototypeAccessors.worldTransform.get = function ()\n {\n return this.transform.worldTransform;\n };\n\n /**\n * Current transform of the object based on local factors: position, scale, other stuff.\n *\n * @member {PIXI.Matrix}\n * @readonly\n */\n prototypeAccessors.localTransform.get = function ()\n {\n return this.transform.localTransform;\n };\n\n /**\n * The coordinate of the object relative to the local coordinates of the parent.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.position.get = function ()\n {\n return this.transform.position;\n };\n\n prototypeAccessors.position.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.copyFrom(value);\n };\n\n /**\n * The scale factor of the object.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.scale.get = function ()\n {\n return this.transform.scale;\n };\n\n prototypeAccessors.scale.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.scale.copyFrom(value);\n };\n\n /**\n * The pivot point of the displayObject that it rotates around.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.pivot.get = function ()\n {\n return this.transform.pivot;\n };\n\n prototypeAccessors.pivot.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.pivot.copyFrom(value);\n };\n\n /**\n * The skew factor for the object in radians.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.skew.get = function ()\n {\n return this.transform.skew;\n };\n\n prototypeAccessors.skew.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.skew.copyFrom(value);\n };\n\n /**\n * The rotation of the object in radians.\n * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees.\n *\n * @member {number}\n */\n prototypeAccessors.rotation.get = function ()\n {\n return this.transform.rotation;\n };\n\n prototypeAccessors.rotation.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.rotation = value;\n };\n\n /**\n * The angle of the object in degrees.\n * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees.\n *\n * @member {number}\n */\n prototypeAccessors.angle.get = function ()\n {\n return this.transform.rotation * RAD_TO_DEG;\n };\n\n prototypeAccessors.angle.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.rotation = value * DEG_TO_RAD;\n };\n\n /**\n * The zIndex of the displayObject.\n * If a container has the sortableChildren property set to true, children will be automatically\n * sorted by zIndex value; a higher value will mean it will be moved towards the end of the array,\n * and thus rendered on top of other displayObjects within the same container.\n *\n * @member {number}\n */\n prototypeAccessors.zIndex.get = function ()\n {\n return this._zIndex;\n };\n\n prototypeAccessors.zIndex.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._zIndex = value;\n if (this.parent)\n {\n this.parent.sortDirty = true;\n }\n };\n\n /**\n * Indicates if the object is globally visible.\n *\n * @member {boolean}\n * @readonly\n */\n prototypeAccessors.worldVisible.get = function ()\n {\n var item = this;\n\n do\n {\n if (!item.visible)\n {\n return false;\n }\n\n item = item.parent;\n } while (item);\n\n return true;\n };\n\n /**\n * Sets a mask for the displayObject. A mask is an object that limits the visibility of an\n * object to the shape of the mask applied to it. In PixiJS a regular mask must be a\n * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it\n * utilities shape clipping. To remove a mask, set this property to `null`.\n *\n * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask.\n * @example\n * const graphics = new PIXI.Graphics();\n * graphics.beginFill(0xFF3300);\n * graphics.drawRect(50, 250, 100, 100);\n * graphics.endFill();\n *\n * const sprite = new PIXI.Sprite(texture);\n * sprite.mask = graphics;\n * @todo At the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask.\n *\n * @member {PIXI.Graphics|PIXI.Sprite|null}\n */\n prototypeAccessors.mask.get = function ()\n {\n return this._mask;\n };\n\n prototypeAccessors.mask.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._mask)\n {\n this._mask.renderable = true;\n this._mask.isMask = false;\n }\n\n this._mask = value;\n\n if (this._mask)\n {\n this._mask.renderable = false;\n this._mask.isMask = true;\n }\n };\n\n Object.defineProperties( DisplayObject.prototype, prototypeAccessors );\n\n return DisplayObject;\n}(EventEmitter));\n\n/**\n * DisplayObject default updateTransform, does not update children of container.\n * Will crash if there's no parent element.\n *\n * @memberof PIXI.DisplayObject#\n * @function displayObjectUpdateTransform\n */\nDisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform;\n\nfunction sortChildren(a, b)\n{\n if (a.zIndex === b.zIndex)\n {\n return a._lastSortedIndex - b._lastSortedIndex;\n }\n\n return a.zIndex - b.zIndex;\n}\n\n/**\n * A Container represents a collection of display objects.\n *\n * It is the base class of all display objects that act as a container for other objects (like Sprites).\n *\n *```js\n * let container = new PIXI.Container();\n * container.addChild(sprite);\n * ```\n *\n * @class\n * @extends PIXI.DisplayObject\n * @memberof PIXI\n */\nvar Container = /*@__PURE__*/(function (DisplayObject) {\n function Container()\n {\n DisplayObject.call(this);\n\n /**\n * The array of children of this container.\n *\n * @member {PIXI.DisplayObject[]}\n * @readonly\n */\n this.children = [];\n\n /**\n * If set to true, the container will sort its children by zIndex value\n * when updateTransform() is called, or manually if sortChildren() is called.\n *\n * This actually changes the order of elements in the array, so should be treated\n * as a basic solution that is not performant compared to other solutions,\n * such as @link https://github.com/pixijs/pixi-display\n *\n * Also be aware of that this may not work nicely with the addChildAt() function,\n * as the zIndex sorting may cause the child to automatically sorted to another position.\n *\n * @see PIXI.settings.SORTABLE_CHILDREN\n *\n * @member {boolean}\n */\n this.sortableChildren = settings.SORTABLE_CHILDREN;\n\n /**\n * Should children be sorted by zIndex at the next updateTransform call.\n * Will get automatically set to true if a new child is added, or if a child's zIndex changes.\n *\n * @member {boolean}\n */\n this.sortDirty = false;\n\n /**\n * Fired when a DisplayObject is added to this Container.\n *\n * @event PIXI.Container#childAdded\n * @param {PIXI.DisplayObject} child - The child added to the Container.\n * @param {PIXI.Container} container - The container that added the child.\n * @param {number} index - The children's index of the added child.\n */\n\n /**\n * Fired when a DisplayObject is removed from this Container.\n *\n * @event PIXI.DisplayObject#removedFrom\n * @param {PIXI.DisplayObject} child - The child removed from the Container.\n * @param {PIXI.Container} container - The container that removed removed the child.\n * @param {number} index - The former children's index of the removed child\n */\n }\n\n if ( DisplayObject ) Container.__proto__ = DisplayObject;\n Container.prototype = Object.create( DisplayObject && DisplayObject.prototype );\n Container.prototype.constructor = Container;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true } };\n\n /**\n * Overridable method that can be used by Container subclasses whenever the children array is modified\n *\n * @protected\n */\n Container.prototype.onChildrenChange = function onChildrenChange ()\n {\n /* empty */\n };\n\n /**\n * Adds one or more children to the container.\n *\n * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)`\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container\n * @return {PIXI.DisplayObject} The first child that was added.\n */\n Container.prototype.addChild = function addChild (child)\n {\n var arguments$1 = arguments;\n\n var argumentsLength = arguments.length;\n\n // if there is only one argument we can bypass looping through the them\n if (argumentsLength > 1)\n {\n // loop through the arguments property and add all children\n // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes\n for (var i = 0; i < argumentsLength; i++)\n {\n this.addChild(arguments$1[i]);\n }\n }\n else\n {\n // if the child has a parent then lets remove it as PixiJS objects can only exist in one place\n if (child.parent)\n {\n child.parent.removeChild(child);\n }\n\n child.parent = this;\n this.sortDirty = true;\n\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n\n this.children.push(child);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(this.children.length - 1);\n this.emit('childAdded', child, this, this.children.length - 1);\n child.emit('added', this);\n }\n\n return child;\n };\n\n /**\n * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown\n *\n * @param {PIXI.DisplayObject} child - The child to add\n * @param {number} index - The index to place the child in\n * @return {PIXI.DisplayObject} The child that was added.\n */\n Container.prototype.addChildAt = function addChildAt (child, index)\n {\n if (index < 0 || index > this.children.length)\n {\n throw new Error((child + \"addChildAt: The index \" + index + \" supplied is out of bounds \" + (this.children.length)));\n }\n\n if (child.parent)\n {\n child.parent.removeChild(child);\n }\n\n child.parent = this;\n this.sortDirty = true;\n\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n\n this.children.splice(index, 0, child);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('added', this);\n this.emit('childAdded', child, this, index);\n\n return child;\n };\n\n /**\n * Swaps the position of 2 Display Objects within this container.\n *\n * @param {PIXI.DisplayObject} child - First display object to swap\n * @param {PIXI.DisplayObject} child2 - Second display object to swap\n */\n Container.prototype.swapChildren = function swapChildren (child, child2)\n {\n if (child === child2)\n {\n return;\n }\n\n var index1 = this.getChildIndex(child);\n var index2 = this.getChildIndex(child2);\n\n this.children[index1] = child2;\n this.children[index2] = child;\n this.onChildrenChange(index1 < index2 ? index1 : index2);\n };\n\n /**\n * Returns the index position of a child DisplayObject instance\n *\n * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify\n * @return {number} The index position of the child display object to identify\n */\n Container.prototype.getChildIndex = function getChildIndex (child)\n {\n var index = this.children.indexOf(child);\n\n if (index === -1)\n {\n throw new Error('The supplied DisplayObject must be a child of the caller');\n }\n\n return index;\n };\n\n /**\n * Changes the position of an existing child in the display object container\n *\n * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number\n * @param {number} index - The resulting index number for the child display object\n */\n Container.prototype.setChildIndex = function setChildIndex (child, index)\n {\n if (index < 0 || index >= this.children.length)\n {\n throw new Error((\"The index \" + index + \" supplied is out of bounds \" + (this.children.length)));\n }\n\n var currentIndex = this.getChildIndex(child);\n\n removeItems(this.children, currentIndex, 1); // remove from old position\n this.children.splice(index, 0, child); // add at new position\n\n this.onChildrenChange(index);\n };\n\n /**\n * Returns the child at the specified index\n *\n * @param {number} index - The index to get the child at\n * @return {PIXI.DisplayObject} The child at the given index, if any.\n */\n Container.prototype.getChildAt = function getChildAt (index)\n {\n if (index < 0 || index >= this.children.length)\n {\n throw new Error((\"getChildAt: Index (\" + index + \") does not exist.\"));\n }\n\n return this.children[index];\n };\n\n /**\n * Removes one or more children from the container.\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove\n * @return {PIXI.DisplayObject} The first child that was removed.\n */\n Container.prototype.removeChild = function removeChild (child)\n {\n var arguments$1 = arguments;\n\n var argumentsLength = arguments.length;\n\n // if there is only one argument we can bypass looping through the them\n if (argumentsLength > 1)\n {\n // loop through the arguments property and add all children\n // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes\n for (var i = 0; i < argumentsLength; i++)\n {\n this.removeChild(arguments$1[i]);\n }\n }\n else\n {\n var index = this.children.indexOf(child);\n\n if (index === -1) { return null; }\n\n child.parent = null;\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n removeItems(this.children, index, 1);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('removed', this);\n this.emit('childRemoved', child, this, index);\n }\n\n return child;\n };\n\n /**\n * Removes a child from the specified index position.\n *\n * @param {number} index - The index to get the child from\n * @return {PIXI.DisplayObject} The child that was removed.\n */\n Container.prototype.removeChildAt = function removeChildAt (index)\n {\n var child = this.getChildAt(index);\n\n // ensure child transform will be recalculated..\n child.parent = null;\n child.transform._parentID = -1;\n removeItems(this.children, index, 1);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('removed', this);\n this.emit('childRemoved', child, this, index);\n\n return child;\n };\n\n /**\n * Removes all children from this container that are within the begin and end indexes.\n *\n * @param {number} [beginIndex=0] - The beginning position.\n * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container.\n * @returns {PIXI.DisplayObject[]} List of removed children\n */\n Container.prototype.removeChildren = function removeChildren (beginIndex, endIndex)\n {\n if ( beginIndex === void 0 ) beginIndex = 0;\n\n var begin = beginIndex;\n var end = typeof endIndex === 'number' ? endIndex : this.children.length;\n var range = end - begin;\n var removed;\n\n if (range > 0 && range <= end)\n {\n removed = this.children.splice(begin, range);\n\n for (var i = 0; i < removed.length; ++i)\n {\n removed[i].parent = null;\n if (removed[i].transform)\n {\n removed[i].transform._parentID = -1;\n }\n }\n\n this._boundsID++;\n\n this.onChildrenChange(beginIndex);\n\n for (var i$1 = 0; i$1 < removed.length; ++i$1)\n {\n removed[i$1].emit('removed', this);\n this.emit('childRemoved', removed[i$1], this, i$1);\n }\n\n return removed;\n }\n else if (range === 0 && this.children.length === 0)\n {\n return [];\n }\n\n throw new RangeError('removeChildren: numeric values are outside the acceptable range.');\n };\n\n /**\n * Sorts children by zIndex. Previous order is mantained for 2 children with the same zIndex.\n */\n Container.prototype.sortChildren = function sortChildren$1 ()\n {\n var sortRequired = false;\n\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n var child = this.children[i];\n\n child._lastSortedIndex = i;\n\n if (!sortRequired && child.zIndex !== 0)\n {\n sortRequired = true;\n }\n }\n\n if (sortRequired && this.children.length > 1)\n {\n this.children.sort(sortChildren);\n }\n\n this.sortDirty = false;\n };\n\n /**\n * Updates the transform on all children of this container for rendering\n */\n Container.prototype.updateTransform = function updateTransform ()\n {\n if (this.sortableChildren && this.sortDirty)\n {\n this.sortChildren();\n }\n\n this._boundsID++;\n\n this.transform.updateTransform(this.parent.transform);\n\n // TODO: check render flags, how to process stuff here\n this.worldAlpha = this.alpha * this.parent.worldAlpha;\n\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n var child = this.children[i];\n\n if (child.visible)\n {\n child.updateTransform();\n }\n }\n };\n\n /**\n * Recalculates the bounds of the container.\n *\n */\n Container.prototype.calculateBounds = function calculateBounds ()\n {\n this._bounds.clear();\n\n this._calculateBounds();\n\n for (var i = 0; i < this.children.length; i++)\n {\n var child = this.children[i];\n\n if (!child.visible || !child.renderable)\n {\n continue;\n }\n\n child.calculateBounds();\n\n // TODO: filter+mask, need to mask both somehow\n if (child._mask)\n {\n child._mask.calculateBounds();\n this._bounds.addBoundsMask(child._bounds, child._mask._bounds);\n }\n else if (child.filterArea)\n {\n this._bounds.addBoundsArea(child._bounds, child.filterArea);\n }\n else\n {\n this._bounds.addBounds(child._bounds);\n }\n }\n\n this._lastBoundsID = this._boundsID;\n };\n\n /**\n * Recalculates the bounds of the object. Override this to\n * calculate the bounds of the specific object (not including children).\n *\n * @protected\n */\n Container.prototype._calculateBounds = function _calculateBounds ()\n {\n // FILL IN//\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype.render = function render (renderer)\n {\n // if the object is not visible or the alpha is 0 then no need to render this element\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n // do a quick check to see if this element has a mask or a filter.\n if (this._mask || (this.filters && this.filters.length))\n {\n this.renderAdvanced(renderer);\n }\n else\n {\n this._render(renderer);\n\n // simple render children!\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n this.children[i].render(renderer);\n }\n }\n };\n\n /**\n * Render the object using the WebGL renderer and advanced features.\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype.renderAdvanced = function renderAdvanced (renderer)\n {\n renderer.batch.flush();\n\n var filters = this.filters;\n var mask = this._mask;\n\n // push filter first as we need to ensure the stencil buffer is correct for any masking\n if (filters)\n {\n if (!this._enabledFilters)\n {\n this._enabledFilters = [];\n }\n\n this._enabledFilters.length = 0;\n\n for (var i = 0; i < filters.length; i++)\n {\n if (filters[i].enabled)\n {\n this._enabledFilters.push(filters[i]);\n }\n }\n\n if (this._enabledFilters.length)\n {\n renderer.filter.push(this, this._enabledFilters);\n }\n }\n\n if (mask)\n {\n renderer.mask.push(this, this._mask);\n }\n\n // add this object to the batch, only rendered if it has a texture.\n this._render(renderer);\n\n // now loop through the children and make sure they get rendered\n for (var i$1 = 0, j = this.children.length; i$1 < j; i$1++)\n {\n this.children[i$1].render(renderer);\n }\n\n renderer.batch.flush();\n\n if (mask)\n {\n renderer.mask.pop(this, this._mask);\n }\n\n if (filters && this._enabledFilters && this._enabledFilters.length)\n {\n renderer.filter.pop();\n }\n };\n\n /**\n * To be overridden by the subclasses.\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype._render = function _render (renderer) // eslint-disable-line no-unused-vars\n {\n // this is where content itself gets rendered...\n };\n\n /**\n * Removes all internal references and listeners as well as removes children from the display list.\n * Do not use a Container after calling `destroy`.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n Container.prototype.destroy = function destroy (options)\n {\n DisplayObject.prototype.destroy.call(this);\n\n this.sortDirty = false;\n\n var destroyChildren = typeof options === 'boolean' ? options : options && options.children;\n\n var oldChildren = this.removeChildren(0, this.children.length);\n\n if (destroyChildren)\n {\n for (var i = 0; i < oldChildren.length; ++i)\n {\n oldChildren[i].destroy(options);\n }\n }\n };\n\n /**\n * The width of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this.scale.x * this.getLocalBounds().width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n var width = this.getLocalBounds().width;\n\n if (width !== 0)\n {\n this.scale.x = value / width;\n }\n else\n {\n this.scale.x = 1;\n }\n\n this._width = value;\n };\n\n /**\n * The height of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this.scale.y * this.getLocalBounds().height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n var height = this.getLocalBounds().height;\n\n if (height !== 0)\n {\n this.scale.y = value / height;\n }\n else\n {\n this.scale.y = 1;\n }\n\n this._height = value;\n };\n\n Object.defineProperties( Container.prototype, prototypeAccessors );\n\n return Container;\n}(DisplayObject));\n\n// performance increase to avoid using call.. (10x faster)\nContainer.prototype.containerUpdateTransform = Container.prototype.updateTransform;\n\nexport { Bounds, Container, DisplayObject };\n//# sourceMappingURL=display.es.js.map\n","/*!\n * @pixi/accessibility - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/accessibility is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { isMobile, removeItems } from '@pixi/utils';\nimport { DisplayObject } from '@pixi/display';\n\n/**\n * Default property values of accessible objects\n * used by {@link PIXI.accessibility.AccessibilityManager}.\n *\n * @private\n * @function accessibleTarget\n * @memberof PIXI.accessibility\n * @type {Object}\n * @example\n * function MyObject() {}\n *\n * Object.assign(\n * MyObject.prototype,\n * PIXI.accessibility.accessibleTarget\n * );\n */\nvar accessibleTarget = {\n /**\n * Flag for if the object is accessible. If true AccessibilityManager will overlay a\n * shadow div with attributes set\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n accessible: false,\n\n /**\n * Sets the title attribute of the shadow div\n * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]'\n *\n * @member {?string}\n * @memberof PIXI.DisplayObject#\n */\n accessibleTitle: null,\n\n /**\n * Sets the aria-label attribute of the shadow div\n *\n * @member {string}\n * @memberof PIXI.DisplayObject#\n */\n accessibleHint: null,\n\n /**\n * @member {number}\n * @memberof PIXI.DisplayObject#\n * @private\n * @todo Needs docs.\n */\n tabIndex: 0,\n\n /**\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n * @todo Needs docs.\n */\n _accessibleActive: false,\n\n /**\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n * @todo Needs docs.\n */\n _accessibleDiv: false,\n};\n\n// add some extra variables to the container..\nDisplayObject.mixin(accessibleTarget);\n\nvar KEY_CODE_TAB = 9;\n\nvar DIV_TOUCH_SIZE = 100;\nvar DIV_TOUCH_POS_X = 0;\nvar DIV_TOUCH_POS_Y = 0;\nvar DIV_TOUCH_ZINDEX = 2;\n\nvar DIV_HOOK_SIZE = 1;\nvar DIV_HOOK_POS_X = -1000;\nvar DIV_HOOK_POS_Y = -1000;\nvar DIV_HOOK_ZINDEX = 2;\n\n/**\n * The Accessibility manager recreates the ability to tab and have content read by screen readers.\n * This is very important as it can possibly help people with disabilities access PixiJS content.\n *\n * A DisplayObject can be made accessible just like it can be made interactive. This manager will map the\n * events as if the mouse was being used, minimizing the effort required to implement.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.accessibility`\n *\n * @class\n * @memberof PIXI.accessibility\n */\nvar AccessibilityManager = function AccessibilityManager(renderer)\n{\n /**\n * @type {?HTMLElement}\n * @private\n */\n this._hookDiv = null;\n if (isMobile.tablet || isMobile.phone)\n {\n this.createTouchHook();\n }\n\n // first we create a div that will sit over the PixiJS element. This is where the div overlays will go.\n var div = document.createElement('div');\n\n div.style.width = DIV_TOUCH_SIZE + \"px\";\n div.style.height = DIV_TOUCH_SIZE + \"px\";\n div.style.position = 'absolute';\n div.style.top = DIV_TOUCH_POS_X + \"px\";\n div.style.left = DIV_TOUCH_POS_Y + \"px\";\n div.style.zIndex = DIV_TOUCH_ZINDEX;\n\n /**\n * This is the dom element that will sit over the PixiJS element. This is where the div overlays will go.\n *\n * @type {HTMLElement}\n * @private\n */\n this.div = div;\n\n /**\n * A simple pool for storing divs.\n *\n * @type {*}\n * @private\n */\n this.pool = [];\n\n /**\n * This is a tick used to check if an object is no longer being rendered.\n *\n * @type {Number}\n * @private\n */\n this.renderId = 0;\n\n /**\n * Setting this to true will visually show the divs.\n *\n * @type {boolean}\n */\n this.debug = false;\n\n /**\n * The renderer this accessibility manager works for.\n *\n * @member {PIXI.AbstractRenderer}\n */\n this.renderer = renderer;\n\n /**\n * The array of currently active accessible items.\n *\n * @member {Array<*>}\n * @private\n */\n this.children = [];\n\n /**\n * pre-bind the functions\n *\n * @type {Function}\n * @private\n */\n this._onKeyDown = this._onKeyDown.bind(this);\n\n /**\n * pre-bind the functions\n *\n * @type {Function}\n * @private\n */\n this._onMouseMove = this._onMouseMove.bind(this);\n\n /**\n * A flag\n * @type {boolean}\n * @readonly\n */\n this.isActive = false;\n\n /**\n * A flag\n * @type {boolean}\n * @readonly\n */\n this.isMobileAccessibility = false;\n\n // let listen for tab.. once pressed we can fire up and show the accessibility layer\n window.addEventListener('keydown', this._onKeyDown, false);\n};\n\n/**\n * Creates the touch hooks.\n *\n * @private\n */\nAccessibilityManager.prototype.createTouchHook = function createTouchHook ()\n{\n var this$1 = this;\n\n var hookDiv = document.createElement('button');\n\n hookDiv.style.width = DIV_HOOK_SIZE + \"px\";\n hookDiv.style.height = DIV_HOOK_SIZE + \"px\";\n hookDiv.style.position = 'absolute';\n hookDiv.style.top = DIV_HOOK_POS_X + \"px\";\n hookDiv.style.left = DIV_HOOK_POS_Y + \"px\";\n hookDiv.style.zIndex = DIV_HOOK_ZINDEX;\n hookDiv.style.backgroundColor = '#FF0000';\n hookDiv.title = 'HOOK DIV';\n\n hookDiv.addEventListener('focus', function () {\n this$1.isMobileAccessibility = true;\n this$1.activate();\n this$1.destroyTouchHook();\n });\n\n document.body.appendChild(hookDiv);\n this._hookDiv = hookDiv;\n};\n\n/**\n * Destroys the touch hooks.\n *\n * @private\n */\nAccessibilityManager.prototype.destroyTouchHook = function destroyTouchHook ()\n{\n if (!this._hookDiv)\n {\n return;\n }\n document.body.removeChild(this._hookDiv);\n this._hookDiv = null;\n};\n\n/**\n * Activating will cause the Accessibility layer to be shown.\n * This is called when a user presses the tab key.\n *\n * @private\n */\nAccessibilityManager.prototype.activate = function activate ()\n{\n if (this.isActive)\n {\n return;\n }\n\n this.isActive = true;\n\n window.document.addEventListener('mousemove', this._onMouseMove, true);\n window.removeEventListener('keydown', this._onKeyDown, false);\n\n this.renderer.on('postrender', this.update, this);\n\n if (this.renderer.view.parentNode)\n {\n this.renderer.view.parentNode.appendChild(this.div);\n }\n};\n\n/**\n * Deactivating will cause the Accessibility layer to be hidden.\n * This is called when a user moves the mouse.\n *\n * @private\n */\nAccessibilityManager.prototype.deactivate = function deactivate ()\n{\n if (!this.isActive || this.isMobileAccessibility)\n {\n return;\n }\n\n this.isActive = false;\n\n window.document.removeEventListener('mousemove', this._onMouseMove, true);\n window.addEventListener('keydown', this._onKeyDown, false);\n\n this.renderer.off('postrender', this.update);\n\n if (this.div.parentNode)\n {\n this.div.parentNode.removeChild(this.div);\n }\n};\n\n/**\n * This recursive function will run through the scene graph and add any new accessible objects to the DOM layer.\n *\n * @private\n * @param {PIXI.Container} displayObject - The DisplayObject to check.\n */\nAccessibilityManager.prototype.updateAccessibleObjects = function updateAccessibleObjects (displayObject)\n{\n if (!displayObject.visible)\n {\n return;\n }\n\n if (displayObject.accessible && displayObject.interactive)\n {\n if (!displayObject._accessibleActive)\n {\n this.addChild(displayObject);\n }\n\n displayObject.renderId = this.renderId;\n }\n\n var children = displayObject.children;\n\n for (var i = 0; i < children.length; i++)\n {\n this.updateAccessibleObjects(children[i]);\n }\n};\n\n/**\n * Before each render this function will ensure that all divs are mapped correctly to their DisplayObjects.\n *\n * @private\n */\nAccessibilityManager.prototype.update = function update ()\n{\n if (!this.renderer.renderingToScreen)\n {\n return;\n }\n\n // update children...\n this.updateAccessibleObjects(this.renderer._lastObjectRendered);\n\n var rect = this.renderer.view.getBoundingClientRect();\n var sx = rect.width / this.renderer.width;\n var sy = rect.height / this.renderer.height;\n\n var div = this.div;\n\n div.style.left = (rect.left) + \"px\";\n div.style.top = (rect.top) + \"px\";\n div.style.width = (this.renderer.width) + \"px\";\n div.style.height = (this.renderer.height) + \"px\";\n\n for (var i = 0; i < this.children.length; i++)\n {\n var child = this.children[i];\n\n if (child.renderId !== this.renderId)\n {\n child._accessibleActive = false;\n\n removeItems(this.children, i, 1);\n this.div.removeChild(child._accessibleDiv);\n this.pool.push(child._accessibleDiv);\n child._accessibleDiv = null;\n\n i--;\n\n if (this.children.length === 0)\n {\n this.deactivate();\n }\n }\n else\n {\n // map div to display..\n div = child._accessibleDiv;\n var hitArea = child.hitArea;\n var wt = child.worldTransform;\n\n if (child.hitArea)\n {\n div.style.left = ((wt.tx + (hitArea.x * wt.a)) * sx) + \"px\";\n div.style.top = ((wt.ty + (hitArea.y * wt.d)) * sy) + \"px\";\n\n div.style.width = (hitArea.width * wt.a * sx) + \"px\";\n div.style.height = (hitArea.height * wt.d * sy) + \"px\";\n }\n else\n {\n hitArea = child.getBounds();\n\n this.capHitArea(hitArea);\n\n div.style.left = (hitArea.x * sx) + \"px\";\n div.style.top = (hitArea.y * sy) + \"px\";\n\n div.style.width = (hitArea.width * sx) + \"px\";\n div.style.height = (hitArea.height * sy) + \"px\";\n\n // update button titles and hints if they exist and they've changed\n if (div.title !== child.accessibleTitle && child.accessibleTitle !== null)\n {\n div.title = child.accessibleTitle;\n }\n if (div.getAttribute('aria-label') !== child.accessibleHint\n && child.accessibleHint !== null)\n {\n div.setAttribute('aria-label', child.accessibleHint);\n }\n }\n }\n }\n\n // increment the render id..\n this.renderId++;\n};\n\n/**\n * Adjust the hit area based on the bounds of a display object\n *\n * @param {PIXI.Rectangle} hitArea - Bounds of the child\n */\nAccessibilityManager.prototype.capHitArea = function capHitArea (hitArea)\n{\n if (hitArea.x < 0)\n {\n hitArea.width += hitArea.x;\n hitArea.x = 0;\n }\n\n if (hitArea.y < 0)\n {\n hitArea.height += hitArea.y;\n hitArea.y = 0;\n }\n\n if (hitArea.x + hitArea.width > this.renderer.width)\n {\n hitArea.width = this.renderer.width - hitArea.x;\n }\n\n if (hitArea.y + hitArea.height > this.renderer.height)\n {\n hitArea.height = this.renderer.height - hitArea.y;\n }\n};\n\n/**\n * Adds a DisplayObject to the accessibility manager\n *\n * @private\n * @param {PIXI.DisplayObject} displayObject - The child to make accessible.\n */\nAccessibilityManager.prototype.addChild = function addChild (displayObject)\n{\n //this.activate();\n\n var div = this.pool.pop();\n\n if (!div)\n {\n div = document.createElement('button');\n\n div.style.width = DIV_TOUCH_SIZE + \"px\";\n div.style.height = DIV_TOUCH_SIZE + \"px\";\n div.style.backgroundColor = this.debug ? 'rgba(255,0,0,0.5)' : 'transparent';\n div.style.position = 'absolute';\n div.style.zIndex = DIV_TOUCH_ZINDEX;\n div.style.borderStyle = 'none';\n\n // ARIA attributes ensure that button title and hint updates are announced properly\n if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)\n {\n // Chrome doesn't need aria-live to work as intended; in fact it just gets more confused.\n div.setAttribute('aria-live', 'off');\n }\n else\n {\n div.setAttribute('aria-live', 'polite');\n }\n\n if (navigator.userAgent.match(/rv:.*Gecko\\//))\n {\n // FireFox needs this to announce only the new button name\n div.setAttribute('aria-relevant', 'additions');\n }\n else\n {\n // required by IE, other browsers don't much care\n div.setAttribute('aria-relevant', 'text');\n }\n\n div.addEventListener('click', this._onClick.bind(this));\n div.addEventListener('focus', this._onFocus.bind(this));\n div.addEventListener('focusout', this._onFocusOut.bind(this));\n }\n\n if (displayObject.accessibleTitle && displayObject.accessibleTitle !== null)\n {\n div.title = displayObject.accessibleTitle;\n }\n else if (!displayObject.accessibleHint\n || displayObject.accessibleHint === null)\n {\n div.title = \"displayObject \" + (displayObject.tabIndex);\n }\n\n if (displayObject.accessibleHint\n && displayObject.accessibleHint !== null)\n {\n div.setAttribute('aria-label', displayObject.accessibleHint);\n }\n\n //\n\n displayObject._accessibleActive = true;\n displayObject._accessibleDiv = div;\n div.displayObject = displayObject;\n\n this.children.push(displayObject);\n this.div.appendChild(displayObject._accessibleDiv);\n displayObject._accessibleDiv.tabIndex = displayObject.tabIndex;\n};\n\n/**\n * Maps the div button press to pixi's InteractionManager (click)\n *\n * @private\n * @param {MouseEvent} e - The click event.\n */\nAccessibilityManager.prototype._onClick = function _onClick (e)\n{\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'click', interactionManager.eventData);\n interactionManager.dispatchEvent(e.target.displayObject, 'pointertap', interactionManager.eventData);\n interactionManager.dispatchEvent(e.target.displayObject, 'tap', interactionManager.eventData);\n};\n\n/**\n * Maps the div focus events to pixi's InteractionManager (mouseover)\n *\n * @private\n * @param {FocusEvent} e - The focus event.\n */\nAccessibilityManager.prototype._onFocus = function _onFocus (e)\n{\n if (!e.target.getAttribute('aria-live', 'off'))\n {\n e.target.setAttribute('aria-live', 'assertive');\n }\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'mouseover', interactionManager.eventData);\n};\n\n/**\n * Maps the div focus events to pixi's InteractionManager (mouseout)\n *\n * @private\n * @param {FocusEvent} e - The focusout event.\n */\nAccessibilityManager.prototype._onFocusOut = function _onFocusOut (e)\n{\n if (!e.target.getAttribute('aria-live', 'off'))\n {\n e.target.setAttribute('aria-live', 'polite');\n }\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'mouseout', interactionManager.eventData);\n};\n\n/**\n * Is called when a key is pressed\n *\n * @private\n * @param {KeyboardEvent} e - The keydown event.\n */\nAccessibilityManager.prototype._onKeyDown = function _onKeyDown (e)\n{\n if (e.keyCode !== KEY_CODE_TAB)\n {\n return;\n }\n\n this.activate();\n};\n\n/**\n * Is called when the mouse moves across the renderer element\n *\n * @private\n * @param {MouseEvent} e - The mouse event.\n */\nAccessibilityManager.prototype._onMouseMove = function _onMouseMove (e)\n{\n if (e.movementX === 0 && e.movementY === 0)\n {\n return;\n }\n\n this.deactivate();\n};\n\n/**\n * Destroys the accessibility manager\n *\n */\nAccessibilityManager.prototype.destroy = function destroy ()\n{\n this.destroyTouchHook();\n this.div = null;\n\n for (var i = 0; i < this.children.length; i++)\n {\n this.children[i].div = null;\n }\n\n window.document.removeEventListener('mousemove', this._onMouseMove, true);\n window.removeEventListener('keydown', this._onKeyDown);\n\n this.pool = null;\n this.children = null;\n this.renderer = null;\n};\n\n/**\n * This namespace contains an accessibility plugin for allowing interaction via the keyboard.\n *\n * Do not instantiate this plugin directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @namespace PIXI.accessibility\n */\n\nexport { AccessibilityManager, accessibleTarget };\n//# sourceMappingURL=accessibility.es.js.map\n","/*!\n * @pixi/runner - v5.1.1\n * Compiled Fri, 02 Aug 2019 23:20:23 UTC\n *\n * @pixi/runner is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * A Runner is a highly performant and simple alternative to signals. Best used in situations\n * where events are dispatched to many objects at high frequency (say every frame!)\n *\n *\n * like a signal..\n * ```\n * const myObject = {\n * loaded: new PIXI.Runner('loaded')\n * }\n *\n * const listener = {\n * loaded: function(){\n * // thin\n * }\n * }\n *\n * myObject.update.add(listener);\n *\n * myObject.loaded.emit();\n * ```\n *\n * Or for handling calling the same function on many items\n * ```\n * const myGame = {\n * update: new PIXI.Runner('update')\n * }\n *\n * const gameObject = {\n * update: function(time){\n * // update my gamey state\n * }\n * }\n *\n * myGame.update.add(gameObject1);\n *\n * myGame.update.emit(time);\n * ```\n * @class\n * @memberof PIXI\n */\nvar Runner = function Runner(name)\n{\n this.items = [];\n this._name = name;\n this._aliasCount = 0;\n};\n\nvar prototypeAccessors = { empty: { configurable: true },name: { configurable: true } };\n\n/**\n * Dispatch/Broadcast Runner to all listeners added to the queue.\n * @param {...any} params - optional parameters to pass to each listener\n */\nRunner.prototype.emit = function emit (a0, a1, a2, a3, a4, a5, a6, a7)\n{\n if (arguments.length > 8)\n {\n throw new Error('max arguments reached');\n }\n\n var ref = this;\n var name = ref.name;\n var items = ref.items;\n\n this._aliasCount++;\n\n for (var i = 0, len = items.length; i < len; i++)\n {\n items[i][name](a0, a1, a2, a3, a4, a5, a6, a7);\n }\n\n if (items === this.items)\n {\n this._aliasCount--;\n }\n\n return this;\n};\n\nRunner.prototype.ensureNonAliasedItems = function ensureNonAliasedItems ()\n{\n if (this._aliasCount > 0 && this.items.length > 1)\n {\n this._aliasCount = 0;\n this.items = this.items.slice(0);\n }\n};\n\n/**\n * Add a listener to the Runner\n *\n * Runners do not need to have scope or functions passed to them.\n * All that is required is to pass the listening object and ensure that it has contains a function that has the same name\n * as the name provided to the Runner when it was created.\n *\n * Eg A listener passed to this Runner will require a 'complete' function.\n *\n * ```\n * const complete = new PIXI.Runner('complete');\n * ```\n *\n * The scope used will be the object itself.\n *\n * @param {any} item - The object that will be listening.\n */\nRunner.prototype.add = function add (item)\n{\n if (item[this._name])\n {\n this.ensureNonAliasedItems();\n this.remove(item);\n this.items.push(item);\n }\n\n return this;\n};\n\n/**\n * Remove a single listener from the dispatch queue.\n * @param {any} item - The listenr that you would like to remove.\n */\nRunner.prototype.remove = function remove (item)\n{\n var index = this.items.indexOf(item);\n\n if (index !== -1)\n {\n this.ensureNonAliasedItems();\n this.items.splice(index, 1);\n }\n\n return this;\n};\n\n/**\n * Check to see if the listener is already in the Runner\n * @param {any} item - The listener that you would like to check.\n */\nRunner.prototype.contains = function contains (item)\n{\n return this.items.indexOf(item) !== -1;\n};\n\n/**\n * Remove all listeners from the Runner\n */\nRunner.prototype.removeAll = function removeAll ()\n{\n this.ensureNonAliasedItems();\n this.items.length = 0;\n\n return this;\n};\n\n/**\n * Remove all references, don't use after this.\n */\nRunner.prototype.destroy = function destroy ()\n{\n this.removeAll();\n this.items = null;\n this._name = null;\n};\n\n/**\n * `true` if there are no this Runner contains no listeners\n *\n * @member {boolean}\n * @readonly\n */\nprototypeAccessors.empty.get = function ()\n{\n return this.items.length === 0;\n};\n\n/**\n * The name of the runner.\n *\n * @member {string}\n * @readonly\n */\nprototypeAccessors.name.get = function ()\n{\n return this._name;\n};\n\nObject.defineProperties( Runner.prototype, prototypeAccessors );\n\n/**\n * Alias for `emit`\n * @memberof PIXI.Runner#\n * @method dispatch\n * @see PIXI.Runner#emit\n */\nRunner.prototype.dispatch = Runner.prototype.emit;\n\n/**\n * Alias for `emit`\n * @memberof PIXI.Runner#\n * @method run\n * @see PIXI.Runner#emit\n */\nRunner.prototype.run = Runner.prototype.emit;\n\nexport { Runner };\n//# sourceMappingURL=runner.es.js.map\n","/*!\n * @pixi/ticker - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/ticker is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\n\n/**\n * Target frames per millisecond.\n *\n * @static\n * @name TARGET_FPMS\n * @memberof PIXI.settings\n * @type {number}\n * @default 0.06\n */\nsettings.TARGET_FPMS = 0.06;\n\n/**\n * Represents the update priorities used by internal PIXI classes when registered with\n * the {@link PIXI.Ticker} object. Higher priority items are updated first and lower\n * priority items, such as render, should go later.\n *\n * @static\n * @constant\n * @name UPDATE_PRIORITY\n * @memberof PIXI\n * @type {object}\n * @property {number} INTERACTION=50 Highest priority, used for {@link PIXI.interaction.InteractionManager}\n * @property {number} HIGH=25 High priority updating, {@link PIXI.VideoBaseTexture} and {@link PIXI.AnimatedSprite}\n * @property {number} NORMAL=0 Default priority for ticker events, see {@link PIXI.Ticker#add}.\n * @property {number} LOW=-25 Low priority used for {@link PIXI.Application} rendering.\n * @property {number} UTILITY=-50 Lowest priority used for {@link PIXI.prepare.BasePrepare} utility.\n */\nvar UPDATE_PRIORITY = {\n INTERACTION: 50,\n HIGH: 25,\n NORMAL: 0,\n LOW: -25,\n UTILITY: -50,\n};\n\n/**\n * Internal class for handling the priority sorting of ticker handlers.\n *\n * @private\n * @class\n * @memberof PIXI\n */\nvar TickerListener = function TickerListener(fn, context, priority, once)\n{\n if ( context === void 0 ) context = null;\n if ( priority === void 0 ) priority = 0;\n if ( once === void 0 ) once = false;\n\n /**\n * The handler function to execute.\n * @private\n * @member {Function}\n */\n this.fn = fn;\n\n /**\n * The calling to execute.\n * @private\n * @member {*}\n */\n this.context = context;\n\n /**\n * The current priority.\n * @private\n * @member {number}\n */\n this.priority = priority;\n\n /**\n * If this should only execute once.\n * @private\n * @member {boolean}\n */\n this.once = once;\n\n /**\n * The next item in chain.\n * @private\n * @member {TickerListener}\n */\n this.next = null;\n\n /**\n * The previous item in chain.\n * @private\n * @member {TickerListener}\n */\n this.previous = null;\n\n /**\n * `true` if this listener has been destroyed already.\n * @member {boolean}\n * @private\n */\n this._destroyed = false;\n};\n\n/**\n * Simple compare function to figure out if a function and context match.\n * @private\n * @param {Function} fn - The listener function to be added for one update\n * @param {Function} context - The listener context\n * @return {boolean} `true` if the listener match the arguments\n */\nTickerListener.prototype.match = function match (fn, context)\n{\n context = context || null;\n\n return this.fn === fn && this.context === context;\n};\n\n/**\n * Emit by calling the current function.\n * @private\n * @param {number} deltaTime - time since the last emit.\n * @return {TickerListener} Next ticker\n */\nTickerListener.prototype.emit = function emit (deltaTime)\n{\n if (this.fn)\n {\n if (this.context)\n {\n this.fn.call(this.context, deltaTime);\n }\n else\n {\n this.fn(deltaTime);\n }\n }\n\n var redirect = this.next;\n\n if (this.once)\n {\n this.destroy(true);\n }\n\n // Soft-destroying should remove\n // the next reference\n if (this._destroyed)\n {\n this.next = null;\n }\n\n return redirect;\n};\n\n/**\n * Connect to the list.\n * @private\n * @param {TickerListener} previous - Input node, previous listener\n */\nTickerListener.prototype.connect = function connect (previous)\n{\n this.previous = previous;\n if (previous.next)\n {\n previous.next.previous = this;\n }\n this.next = previous.next;\n previous.next = this;\n};\n\n/**\n * Destroy and don't use after this.\n * @private\n * @param {boolean} [hard = false] `true` to remove the `next` reference, this\n * is considered a hard destroy. Soft destroy maintains the next reference.\n * @return {TickerListener} The listener to redirect while emitting or removing.\n */\nTickerListener.prototype.destroy = function destroy (hard)\n{\n if ( hard === void 0 ) hard = false;\n\n this._destroyed = true;\n this.fn = null;\n this.context = null;\n\n // Disconnect, hook up next and previous\n if (this.previous)\n {\n this.previous.next = this.next;\n }\n\n if (this.next)\n {\n this.next.previous = this.previous;\n }\n\n // Redirect to the next item\n var redirect = this.next;\n\n // Remove references\n this.next = hard ? null : redirect;\n this.previous = null;\n\n return redirect;\n};\n\n/**\n * A Ticker class that runs an update loop that other objects listen to.\n *\n * This class is composed around listeners meant for execution on the next requested animation frame.\n * Animation frames are requested only when necessary, e.g. When the ticker is started and the emitter has listeners.\n *\n * @class\n * @memberof PIXI\n */\nvar Ticker = function Ticker()\n{\n var this$1 = this;\n\n /**\n * The first listener. All new listeners added are chained on this.\n * @private\n * @type {TickerListener}\n */\n this._head = new TickerListener(null, null, Infinity);\n\n /**\n * Internal current frame request ID\n * @type {?number}\n * @private\n */\n this._requestId = null;\n\n /**\n * Internal value managed by minFPS property setter and getter.\n * This is the maximum allowed milliseconds between updates.\n * @type {number}\n * @private\n */\n this._maxElapsedMS = 100;\n\n /**\n * Internal value managed by maxFPS property setter and getter.\n * This is the minimum allowed milliseconds between updates.\n * @private\n */\n this._minElapsedMS = 0;\n\n /**\n * Whether or not this ticker should invoke the method\n * {@link PIXI.Ticker#start} automatically\n * when a listener is added.\n *\n * @member {boolean}\n * @default false\n */\n this.autoStart = false;\n\n /**\n * Scalar time value from last frame to this frame.\n * This value is capped by setting {@link PIXI.Ticker#minFPS}\n * and is scaled with {@link PIXI.Ticker#speed}.\n * **Note:** The cap may be exceeded by scaling.\n *\n * @member {number}\n * @default 1\n */\n this.deltaTime = 1;\n\n /**\n * Scaler time elapsed in milliseconds from last frame to this frame.\n * This value is capped by setting {@link PIXI.Ticker#minFPS}\n * and is scaled with {@link PIXI.Ticker#speed}.\n * **Note:** The cap may be exceeded by scaling.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n * Defaults to target frame time\n *\n * @member {number}\n * @default 16.66\n */\n this.deltaMS = 1 / settings.TARGET_FPMS;\n\n /**\n * Time elapsed in milliseconds from last frame to this frame.\n * Opposed to what the scalar {@link PIXI.Ticker#deltaTime}\n * is based, this value is neither capped nor scaled.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n * Defaults to target frame time\n *\n * @member {number}\n * @default 16.66\n */\n this.elapsedMS = 1 / settings.TARGET_FPMS;\n\n /**\n * The last time {@link PIXI.Ticker#update} was invoked.\n * This value is also reset internally outside of invoking\n * update, but only when a new animation frame is requested.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n *\n * @member {number}\n * @default -1\n */\n this.lastTime = -1;\n\n /**\n * Factor of current {@link PIXI.Ticker#deltaTime}.\n * @example\n * // Scales ticker.deltaTime to what would be\n * // the equivalent of approximately 120 FPS\n * ticker.speed = 2;\n *\n * @member {number}\n * @default 1\n */\n this.speed = 1;\n\n /**\n * Whether or not this ticker has been started.\n * `true` if {@link PIXI.Ticker#start} has been called.\n * `false` if {@link PIXI.Ticker#stop} has been called.\n * While `false`, this value may change to `true` in the\n * event of {@link PIXI.Ticker#autoStart} being `true`\n * and a listener is added.\n *\n * @member {boolean}\n * @default false\n */\n this.started = false;\n\n /**\n * If enabled, deleting is disabled.\n * @member {boolean}\n * @default false\n * @private\n */\n this._protected = false;\n\n /**\n * The last time keyframe was executed.\n * Maintains a relatively fixed interval with the previous value.\n * @member {number}\n * @default -1\n * @private\n */\n this._lastFrame = -1;\n\n /**\n * Internal tick method bound to ticker instance.\n * This is because in early 2015, Function.bind\n * is still 60% slower in high performance scenarios.\n * Also separating frame requests from update method\n * so listeners may be called at any time and with\n * any animation API, just invoke ticker.update(time).\n *\n * @private\n * @param {number} time - Time since last tick.\n */\n this._tick = function (time) {\n this$1._requestId = null;\n\n if (this$1.started)\n {\n // Invoke listeners now\n this$1.update(time);\n // Listener side effects may have modified ticker state.\n if (this$1.started && this$1._requestId === null && this$1._head.next)\n {\n this$1._requestId = requestAnimationFrame(this$1._tick);\n }\n }\n };\n};\n\nvar prototypeAccessors = { FPS: { configurable: true },minFPS: { configurable: true },maxFPS: { configurable: true } };\nvar staticAccessors = { shared: { configurable: true },system: { configurable: true } };\n\n/**\n * Conditionally requests a new animation frame.\n * If a frame has not already been requested, and if the internal\n * emitter has listeners, a new frame is requested.\n *\n * @private\n */\nTicker.prototype._requestIfNeeded = function _requestIfNeeded ()\n{\n if (this._requestId === null && this._head.next)\n {\n // ensure callbacks get correct delta\n this.lastTime = performance.now();\n this._lastFrame = this.lastTime;\n this._requestId = requestAnimationFrame(this._tick);\n }\n};\n\n/**\n * Conditionally cancels a pending animation frame.\n *\n * @private\n */\nTicker.prototype._cancelIfNeeded = function _cancelIfNeeded ()\n{\n if (this._requestId !== null)\n {\n cancelAnimationFrame(this._requestId);\n this._requestId = null;\n }\n};\n\n/**\n * Conditionally requests a new animation frame.\n * If the ticker has been started it checks if a frame has not already\n * been requested, and if the internal emitter has listeners. If these\n * conditions are met, a new frame is requested. If the ticker has not\n * been started, but autoStart is `true`, then the ticker starts now,\n * and continues with the previous conditions to request a new frame.\n *\n * @private\n */\nTicker.prototype._startIfPossible = function _startIfPossible ()\n{\n if (this.started)\n {\n this._requestIfNeeded();\n }\n else if (this.autoStart)\n {\n this.start();\n }\n};\n\n/**\n * Register a handler for tick events. Calls continuously unless\n * it is removed or the ticker is stopped.\n *\n * @param {Function} fn - The listener function to be added for updates\n * @param {*} [context] - The listener context\n * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.add = function add (fn, context, priority)\n{\n if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL;\n\n return this._addListener(new TickerListener(fn, context, priority));\n};\n\n/**\n * Add a handler for the tick event which is only execute once.\n *\n * @param {Function} fn - The listener function to be added for one update\n * @param {*} [context] - The listener context\n * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.addOnce = function addOnce (fn, context, priority)\n{\n if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL;\n\n return this._addListener(new TickerListener(fn, context, priority, true));\n};\n\n/**\n * Internally adds the event handler so that it can be sorted by priority.\n * Priority allows certain handler (user, AnimatedSprite, Interaction) to be run\n * before the rendering.\n *\n * @private\n * @param {TickerListener} listener - Current listener being added.\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype._addListener = function _addListener (listener)\n{\n // For attaching to head\n var current = this._head.next;\n var previous = this._head;\n\n // Add the first item\n if (!current)\n {\n listener.connect(previous);\n }\n else\n {\n // Go from highest to lowest priority\n while (current)\n {\n if (listener.priority > current.priority)\n {\n listener.connect(previous);\n break;\n }\n previous = current;\n current = current.next;\n }\n\n // Not yet connected\n if (!listener.previous)\n {\n listener.connect(previous);\n }\n }\n\n this._startIfPossible();\n\n return this;\n};\n\n/**\n * Removes any handlers matching the function and context parameters.\n * If no handlers are left after removing, then it cancels the animation frame.\n *\n * @param {Function} fn - The listener function to be removed\n * @param {*} [context] - The listener context to be removed\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.remove = function remove (fn, context)\n{\n var listener = this._head.next;\n\n while (listener)\n {\n // We found a match, lets remove it\n // no break to delete all possible matches\n // incase a listener was added 2+ times\n if (listener.match(fn, context))\n {\n listener = listener.destroy();\n }\n else\n {\n listener = listener.next;\n }\n }\n\n if (!this._head.next)\n {\n this._cancelIfNeeded();\n }\n\n return this;\n};\n\n/**\n * Starts the ticker. If the ticker has listeners\n * a new animation frame is requested at this point.\n */\nTicker.prototype.start = function start ()\n{\n if (!this.started)\n {\n this.started = true;\n this._requestIfNeeded();\n }\n};\n\n/**\n * Stops the ticker. If the ticker has requested\n * an animation frame it is canceled at this point.\n */\nTicker.prototype.stop = function stop ()\n{\n if (this.started)\n {\n this.started = false;\n this._cancelIfNeeded();\n }\n};\n\n/**\n * Destroy the ticker and don't use after this. Calling\n * this method removes all references to internal events.\n */\nTicker.prototype.destroy = function destroy ()\n{\n if (!this._protected)\n {\n this.stop();\n\n var listener = this._head.next;\n\n while (listener)\n {\n listener = listener.destroy(true);\n }\n\n this._head.destroy();\n this._head = null;\n }\n};\n\n/**\n * Triggers an update. An update entails setting the\n * current {@link PIXI.Ticker#elapsedMS},\n * the current {@link PIXI.Ticker#deltaTime},\n * invoking all listeners with current deltaTime,\n * and then finally setting {@link PIXI.Ticker#lastTime}\n * with the value of currentTime that was provided.\n * This method will be called automatically by animation\n * frame callbacks if the ticker instance has been started\n * and listeners are added.\n *\n * @param {number} [currentTime=performance.now()] - the current time of execution\n */\nTicker.prototype.update = function update (currentTime)\n{\n if ( currentTime === void 0 ) currentTime = performance.now();\n\n var elapsedMS;\n\n // If the difference in time is zero or negative, we ignore most of the work done here.\n // If there is no valid difference, then should be no reason to let anyone know about it.\n // A zero delta, is exactly that, nothing should update.\n //\n // The difference in time can be negative, and no this does not mean time traveling.\n // This can be the result of a race condition between when an animation frame is requested\n // on the current JavaScript engine event loop, and when the ticker's start method is invoked\n // (which invokes the internal _requestIfNeeded method). If a frame is requested before\n // _requestIfNeeded is invoked, then the callback for the animation frame the ticker requests,\n // can receive a time argument that can be less than the lastTime value that was set within\n // _requestIfNeeded. This difference is in microseconds, but this is enough to cause problems.\n //\n // This check covers this browser engine timing issue, as well as if consumers pass an invalid\n // currentTime value. This may happen if consumers opt-out of the autoStart, and update themselves.\n\n if (currentTime > this.lastTime)\n {\n // Save uncapped elapsedMS for measurement\n elapsedMS = this.elapsedMS = currentTime - this.lastTime;\n\n // cap the milliseconds elapsed used for deltaTime\n if (elapsedMS > this._maxElapsedMS)\n {\n elapsedMS = this._maxElapsedMS;\n }\n\n elapsedMS *= this.speed;\n\n // If not enough time has passed, exit the function.\n // Get ready for next frame by setting _lastFrame, but based on _minElapsedMS\n // adjustment to ensure a relatively stable interval.\n if (this._minElapsedMS)\n {\n var delta = currentTime - this._lastFrame | 0;\n\n if (delta < this._minElapsedMS)\n {\n return;\n }\n\n this._lastFrame = currentTime - (delta % this._minElapsedMS);\n }\n\n this.deltaMS = elapsedMS;\n this.deltaTime = this.deltaMS * settings.TARGET_FPMS;\n\n // Cache a local reference, in-case ticker is destroyed\n // during the emit, we can still check for head.next\n var head = this._head;\n\n // Invoke listeners added to internal emitter\n var listener = head.next;\n\n while (listener)\n {\n listener = listener.emit(this.deltaTime);\n }\n\n if (!head.next)\n {\n this._cancelIfNeeded();\n }\n }\n else\n {\n this.deltaTime = this.deltaMS = this.elapsedMS = 0;\n }\n\n this.lastTime = currentTime;\n};\n\n/**\n * The frames per second at which this ticker is running.\n * The default is approximately 60 in most modern browsers.\n * **Note:** This does not factor in the value of\n * {@link PIXI.Ticker#speed}, which is specific\n * to scaling {@link PIXI.Ticker#deltaTime}.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.FPS.get = function ()\n{\n return 1000 / this.elapsedMS;\n};\n\n/**\n * Manages the maximum amount of milliseconds allowed to\n * elapse between invoking {@link PIXI.Ticker#update}.\n * This value is used to cap {@link PIXI.Ticker#deltaTime},\n * but does not effect the measured value of {@link PIXI.Ticker#FPS}.\n * When setting this property it is clamped to a value between\n * `0` and `PIXI.settings.TARGET_FPMS * 1000`.\n *\n * @member {number}\n * @default 10\n */\nprototypeAccessors.minFPS.get = function ()\n{\n return 1000 / this._maxElapsedMS;\n};\n\nprototypeAccessors.minFPS.set = function (fps) // eslint-disable-line require-jsdoc\n{\n // Minimum must be below the maxFPS\n var minFPS = Math.min(this.maxFPS, fps);\n\n // Must be at least 0, but below 1 / settings.TARGET_FPMS\n var minFPMS = Math.min(Math.max(0, minFPS) / 1000, settings.TARGET_FPMS);\n\n this._maxElapsedMS = 1 / minFPMS;\n};\n\n/**\n * Manages the minimum amount of milliseconds required to\n * elapse between invoking {@link PIXI.Ticker#update}.\n * This will effect the measured value of {@link PIXI.Ticker#FPS}.\n * If it is set to `0`, then there is no limit; PixiJS will render as many frames as it can.\n * Otherwise it will be at least `minFPS`\n *\n * @member {number}\n * @default 0\n */\nprototypeAccessors.maxFPS.get = function ()\n{\n if (this._minElapsedMS)\n {\n return Math.round(1000 / this._minElapsedMS);\n }\n\n return 0;\n};\n\nprototypeAccessors.maxFPS.set = function (fps)\n{\n if (fps === 0)\n {\n this._minElapsedMS = 0;\n }\n else\n {\n // Max must be at least the minFPS\n var maxFPS = Math.max(this.minFPS, fps);\n\n this._minElapsedMS = 1 / (maxFPS / 1000);\n }\n};\n\n/**\n * The shared ticker instance used by {@link PIXI.AnimatedSprite} and by\n * {@link PIXI.VideoResource} to update animation frames / video textures.\n *\n * It may also be used by {@link PIXI.Application} if created with the `sharedTicker` option property set to true.\n *\n * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance.\n * Please follow the examples for usage, including how to opt-out of auto-starting the shared ticker.\n *\n * @example\n * let ticker = PIXI.Ticker.shared;\n * // Set this to prevent starting this ticker when listeners are added.\n * // By default this is true only for the PIXI.Ticker.shared instance.\n * ticker.autoStart = false;\n * // FYI, call this to ensure the ticker is stopped. It should be stopped\n * // if you have not attempted to render anything yet.\n * ticker.stop();\n * // Call this when you are ready for a running shared ticker.\n * ticker.start();\n *\n * @example\n * // You may use the shared ticker to render...\n * let renderer = PIXI.autoDetectRenderer();\n * let stage = new PIXI.Container();\n * document.body.appendChild(renderer.view);\n * ticker.add(function (time) {\n * renderer.render(stage);\n * });\n *\n * @example\n * // Or you can just update it manually.\n * ticker.autoStart = false;\n * ticker.stop();\n * function animate(time) {\n * ticker.update(time);\n * renderer.render(stage);\n * requestAnimationFrame(animate);\n * }\n * animate(performance.now());\n *\n * @member {PIXI.Ticker}\n * @static\n */\nstaticAccessors.shared.get = function ()\n{\n if (!Ticker._shared)\n {\n var shared = Ticker._shared = new Ticker();\n\n shared.autoStart = true;\n shared._protected = true;\n }\n\n return Ticker._shared;\n};\n\n/**\n * The system ticker instance used by {@link PIXI.interaction.InteractionManager} and by\n * {@link PIXI.BasePrepare} for core timing functionality that shouldn't usually need to be paused,\n * unlike the `shared` ticker which drives visual animations and rendering which may want to be paused.\n *\n * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance.\n *\n * @member {PIXI.Ticker}\n * @static\n */\nstaticAccessors.system.get = function ()\n{\n if (!Ticker._system)\n {\n var system = Ticker._system = new Ticker();\n\n system.autoStart = true;\n system._protected = true;\n }\n\n return Ticker._system;\n};\n\nObject.defineProperties( Ticker.prototype, prototypeAccessors );\nObject.defineProperties( Ticker, staticAccessors );\n\n/**\n * Middleware for for Application Ticker.\n *\n * @example\n * import {TickerPlugin} from '@pixi/ticker';\n * import {Application} from '@pixi/app';\n * Application.registerPlugin(TickerPlugin);\n *\n * @class\n * @memberof PIXI\n */\nvar TickerPlugin = function TickerPlugin () {};\n\nTickerPlugin.init = function init (options)\n{\n var this$1 = this;\n\n // Set default\n options = Object.assign({\n autoStart: true,\n sharedTicker: false,\n }, options);\n\n // Create ticker setter\n Object.defineProperty(this, 'ticker',\n {\n set: function set(ticker)\n {\n if (this._ticker)\n {\n this._ticker.remove(this.render, this);\n }\n this._ticker = ticker;\n if (ticker)\n {\n ticker.add(this.render, this, UPDATE_PRIORITY.LOW);\n }\n },\n get: function get()\n {\n return this._ticker;\n },\n });\n\n /**\n * Convenience method for stopping the render.\n *\n * @method PIXI.Application#stop\n */\n this.stop = function () {\n this$1._ticker.stop();\n };\n\n /**\n * Convenience method for starting the render.\n *\n * @method PIXI.Application#start\n */\n this.start = function () {\n this$1._ticker.start();\n };\n\n /**\n * Internal reference to the ticker.\n *\n * @type {PIXI.Ticker}\n * @name _ticker\n * @memberof PIXI.Application#\n * @private\n */\n this._ticker = null;\n\n /**\n * Ticker for doing render updates.\n *\n * @type {PIXI.Ticker}\n * @name ticker\n * @memberof PIXI.Application#\n * @default PIXI.Ticker.shared\n */\n this.ticker = options.sharedTicker ? Ticker.shared : new Ticker();\n\n // Start the rendering\n if (options.autoStart)\n {\n this.start();\n }\n};\n\n/**\n * Clean up the ticker, scoped to application.\n *\n * @static\n * @private\n */\nTickerPlugin.destroy = function destroy ()\n{\n if (this._ticker)\n {\n var oldTicker = this._ticker;\n\n this.ticker = null;\n oldTicker.destroy();\n }\n};\n\nexport { Ticker, TickerPlugin, UPDATE_PRIORITY };\n//# sourceMappingURL=ticker.es.js.map\n","/*!\n * @pixi/core - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/core is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Runner } from '@pixi/runner';\nimport { determineCrossOrigin, isPow2, BaseTextureCache, TextureCache, uid, EventEmitter, getResolutionOfUrl, nextPow2, isMobile, ProgramCache, removeItems, hex2string, hex2rgb, deprecation, isWebGLSupported, sayHello, premultiplyBlendMode, log2, premultiplyTint } from '@pixi/utils';\nimport { settings } from '@pixi/settings';\nimport { SCALE_MODES, FORMATS, TYPES, TARGETS, DRAW_MODES, ENV, PRECISION, BLEND_MODES, GC_MODES, MIPMAP_MODES, WRAP_MODES, RENDERER_TYPE } from '@pixi/constants';\nimport { Ticker } from '@pixi/ticker';\nimport { GroupD8, Rectangle, Point, Matrix } from '@pixi/math';\nimport { Container } from '@pixi/display';\n\n/**\n * Base resource class for textures that manages validation and uploading, depending on its type.\n *\n * Uploading of a base texture to the GPU is required.\n *\n * @class\n * @memberof PIXI.resources\n */\nvar Resource = function Resource(width, height)\n{\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n\n /**\n * Internal width of the resource\n * @member {number}\n * @protected\n */\n this._width = width;\n\n /**\n * Internal height of the resource\n * @member {number}\n * @protected\n */\n this._height = height;\n\n /**\n * If resource has been destroyed\n * @member {boolean}\n * @readonly\n * @default false\n */\n this.destroyed = false;\n\n /**\n * `true` if resource is created by BaseTexture\n * useful for doing cleanup with BaseTexture destroy\n * and not cleaning up resources that were created\n * externally.\n * @member {boolean}\n * @protected\n */\n this.internal = false;\n\n /**\n * Mini-runner for handling resize events\n *\n * @member {Runner}\n * @private\n */\n this.onResize = new Runner('setRealSize', 2);\n\n /**\n * Mini-runner for handling update events\n *\n * @member {Runner}\n * @private\n */\n this.onUpdate = new Runner('update');\n\n /**\n * Handle internal errors, such as loading errors\n *\n * @member {Runner}\n * @private\n */\n this.onError = new Runner('onError', 1);\n};\n\nvar prototypeAccessors = { valid: { configurable: true },width: { configurable: true },height: { configurable: true } };\n\n/**\n * Bind to a parent BaseTexture\n *\n * @param {PIXI.BaseTexture} baseTexture - Parent texture\n */\nResource.prototype.bind = function bind (baseTexture)\n{\n this.onResize.add(baseTexture);\n this.onUpdate.add(baseTexture);\n this.onError.add(baseTexture);\n\n // Call a resize immediate if we already\n // have the width and height of the resource\n if (this._width || this._height)\n {\n this.onResize.run(this._width, this._height);\n }\n};\n\n/**\n * Unbind to a parent BaseTexture\n *\n * @param {PIXI.BaseTexture} baseTexture - Parent texture\n */\nResource.prototype.unbind = function unbind (baseTexture)\n{\n this.onResize.remove(baseTexture);\n this.onUpdate.remove(baseTexture);\n this.onError.remove(baseTexture);\n};\n\n/**\n * Trigger a resize event\n * @param {number} width X dimension\n * @param {number} height Y dimension\n */\nResource.prototype.resize = function resize (width, height)\n{\n if (width !== this._width || height !== this._height)\n {\n this._width = width;\n this._height = height;\n this.onResize.run(width, height);\n }\n};\n\n/**\n * Has been validated\n * @readonly\n * @member {boolean}\n */\nprototypeAccessors.valid.get = function ()\n{\n return !!this._width && !!this._height;\n};\n\n/**\n * Has been updated trigger event\n */\nResource.prototype.update = function update ()\n{\n if (!this.destroyed)\n {\n this.onUpdate.run();\n }\n};\n\n/**\n * This can be overridden to start preloading a resource\n * or do any other prepare step.\n * @protected\n * @return {Promise} Handle the validate event\n */\nResource.prototype.load = function load ()\n{\n return Promise.resolve();\n};\n\n/**\n * The width of the resource.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.width.get = function ()\n{\n return this._width;\n};\n\n/**\n * The height of the resource.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.height.get = function ()\n{\n return this._height;\n};\n\n/**\n * Uploads the texture or returns false if it cant for some reason. Override this.\n *\n * @param {PIXI.Renderer} renderer - yeah, renderer!\n * @param {PIXI.BaseTexture} baseTexture - the texture\n * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context\n * @returns {boolean} true is success\n */\nResource.prototype.upload = function upload (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars\n{\n return false;\n};\n\n/**\n * Set the style, optional to override\n *\n * @param {PIXI.Renderer} renderer - yeah, renderer!\n * @param {PIXI.BaseTexture} baseTexture - the texture\n * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context\n * @returns {boolean} `true` is success\n */\nResource.prototype.style = function style (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars\n{\n return false;\n};\n\n/**\n * Clean up anything, this happens when destroying is ready.\n *\n * @protected\n */\nResource.prototype.dispose = function dispose ()\n{\n // override\n};\n\n/**\n * Call when destroying resource, unbind any BaseTexture object\n * before calling this method, as reference counts are maintained\n * internally.\n */\nResource.prototype.destroy = function destroy ()\n{\n if (!this.destroyed)\n {\n this.destroyed = true;\n this.dispose();\n this.onError.removeAll();\n this.onError = null;\n this.onResize.removeAll();\n this.onResize = null;\n this.onUpdate.removeAll();\n this.onUpdate = null;\n }\n};\n\nObject.defineProperties( Resource.prototype, prototypeAccessors );\n\n/**\n * Base for all the image/canvas resources\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n */\nvar BaseImageResource = /*@__PURE__*/(function (Resource) {\n function BaseImageResource(source)\n {\n var width = source.naturalWidth || source.videoWidth || source.width;\n var height = source.naturalHeight || source.videoHeight || source.height;\n\n Resource.call(this, width, height);\n\n /**\n * The source element\n * @member {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement}\n * @readonly\n */\n this.source = source;\n\n /**\n * If set to `true`, will force `texImage2D` over `texSubImage2D` for uploading.\n * Certain types of media (e.g. video) using `texImage2D` is more performant.\n * @member {boolean}\n * @default false\n * @private\n */\n this.noSubImage = false;\n }\n\n if ( Resource ) BaseImageResource.__proto__ = Resource;\n BaseImageResource.prototype = Object.create( Resource && Resource.prototype );\n BaseImageResource.prototype.constructor = BaseImageResource;\n\n /**\n * Set cross origin based detecting the url and the crossorigin\n * @protected\n * @param {HTMLElement} element - Element to apply crossOrigin\n * @param {string} url - URL to check\n * @param {boolean|string} [crossorigin=true] - Cross origin value to use\n */\n BaseImageResource.crossOrigin = function crossOrigin (element, url, crossorigin)\n {\n if (crossorigin === undefined && url.indexOf('data:') !== 0)\n {\n element.crossOrigin = determineCrossOrigin(url);\n }\n else if (crossorigin !== false)\n {\n element.crossOrigin = typeof crossorigin === 'string' ? crossorigin : 'anonymous';\n }\n };\n\n /**\n * Upload the texture to the GPU.\n * @param {PIXI.Renderer} renderer Upload to the renderer\n * @param {PIXI.BaseTexture} baseTexture Reference to parent texture\n * @param {PIXI.GLTexture} glTexture\n * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} [source] (optional)\n * @returns {boolean} true is success\n */\n BaseImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture, source)\n {\n var gl = renderer.gl;\n var width = baseTexture.realWidth;\n var height = baseTexture.realHeight;\n\n source = source || this.source;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (!this.noSubImage\n && baseTexture.target === gl.TEXTURE_2D\n && glTexture.width === width\n && glTexture.height === height)\n {\n gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, baseTexture.format, baseTexture.type, source);\n }\n else\n {\n glTexture.width = width;\n glTexture.height = height;\n\n gl.texImage2D(baseTexture.target, 0, baseTexture.format, baseTexture.format, baseTexture.type, source);\n }\n\n return true;\n };\n\n /**\n * Checks if source width/height was changed, resize can cause extra baseTexture update.\n * Triggers one update in any case.\n */\n BaseImageResource.prototype.update = function update ()\n {\n if (this.destroyed)\n {\n return;\n }\n\n var width = this.source.naturalWidth || this.source.videoWidth || this.source.width;\n var height = this.source.naturalHeight || this.source.videoHeight || this.source.height;\n\n this.resize(width, height);\n\n Resource.prototype.update.call(this);\n };\n\n /**\n * Destroy this BaseImageResource\n * @override\n * @param {PIXI.BaseTexture} [fromTexture] Optional base texture\n * @return {boolean} Destroy was successful\n */\n BaseImageResource.prototype.dispose = function dispose ()\n {\n this.source = null;\n };\n\n return BaseImageResource;\n}(Resource));\n\n/**\n * Resource type for HTMLImageElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n */\nvar ImageResource = /*@__PURE__*/(function (BaseImageResource) {\n function ImageResource(source, options)\n {\n options = options || {};\n\n if (!(source instanceof HTMLImageElement))\n {\n var imageElement = new Image();\n\n BaseImageResource.crossOrigin(imageElement, source, options.crossorigin);\n\n imageElement.src = source;\n source = imageElement;\n }\n\n BaseImageResource.call(this, source);\n\n // FireFox 68, and possibly other versions, seems like setting the HTMLImageElement#width and #height\n // to non-zero values before its loading completes if images are in a cache.\n // Because of this, need to set the `_width` and the `_height` to zero to avoid uploading incomplete images.\n // Please refer to the issue #5968 (https://github.com/pixijs/pixi.js/issues/5968).\n if (!source.complete && !!this._width && !!this._height)\n {\n this._width = 0;\n this._height = 0;\n }\n\n /**\n * URL of the image source\n * @member {string}\n */\n this.url = source.src;\n\n /**\n * When process is completed\n * @member {Promise}\n * @private\n */\n this._process = null;\n\n /**\n * If the image should be disposed after upload\n * @member {boolean}\n * @default false\n */\n this.preserveBitmap = false;\n\n /**\n * If capable, convert the image using createImageBitmap API\n * @member {boolean}\n * @default PIXI.settings.CREATE_IMAGE_BITMAP\n */\n this.createBitmap = (options.createBitmap !== undefined\n ? options.createBitmap : settings.CREATE_IMAGE_BITMAP) && !!window.createImageBitmap;\n\n /**\n * Controls texture premultiplyAlpha field\n * Copies from options\n * @member {boolean|null}\n * @readonly\n */\n this.premultiplyAlpha = options.premultiplyAlpha !== false;\n\n /**\n * The ImageBitmap element created for HTMLImageElement\n * @member {ImageBitmap}\n * @default null\n */\n this.bitmap = null;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) ImageResource.__proto__ = BaseImageResource;\n ImageResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n ImageResource.prototype.constructor = ImageResource;\n\n /**\n * returns a promise when image will be loaded and processed\n *\n * @param {boolean} [createBitmap=true] whether process image into bitmap\n * @returns {Promise}\n */\n ImageResource.prototype.load = function load (createBitmap)\n {\n var this$1 = this;\n\n if (createBitmap !== undefined)\n {\n this.createBitmap = createBitmap;\n }\n\n if (this._load)\n {\n return this._load;\n }\n\n this._load = new Promise(function (resolve) {\n this$1.url = this$1.source.src;\n var ref = this$1;\n var source = ref.source;\n\n var completed = function () {\n if (this$1.destroyed)\n {\n return;\n }\n source.onload = null;\n source.onerror = null;\n\n this$1.resize(source.width, source.height);\n this$1._load = null;\n\n if (this$1.createBitmap)\n {\n resolve(this$1.process());\n }\n else\n {\n resolve(this$1);\n }\n };\n\n if (source.complete && source.src)\n {\n completed();\n }\n else\n {\n source.onload = completed;\n source.onerror = function (event) { return this$1.onError.run(event); };\n }\n });\n\n return this._load;\n };\n\n /**\n * Called when we need to convert image into BitmapImage.\n * Can be called multiple times, real promise is cached inside.\n *\n * @returns {Promise} cached promise to fill that bitmap\n */\n ImageResource.prototype.process = function process ()\n {\n var this$1 = this;\n\n if (this._process !== null)\n {\n return this._process;\n }\n if (this.bitmap !== null || !window.createImageBitmap)\n {\n return Promise.resolve(this);\n }\n\n this._process = window.createImageBitmap(this.source,\n 0, 0, this.source.width, this.source.height,\n {\n premultiplyAlpha: this.premultiplyAlpha ? 'premultiply' : 'none',\n })\n .then(function (bitmap) {\n if (this$1.destroyed)\n {\n return Promise.reject();\n }\n this$1.bitmap = bitmap;\n this$1.update();\n this$1._process = null;\n\n return Promise.resolve(this$1);\n });\n\n return this._process;\n };\n\n /**\n * Upload the image resource to GPU.\n *\n * @param {PIXI.Renderer} renderer - Renderer to upload to\n * @param {PIXI.BaseTexture} baseTexture - BaseTexture for this resource\n * @param {PIXI.GLTexture} glTexture - GLTexture to use\n * @returns {boolean} true is success\n */\n ImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n baseTexture.premultiplyAlpha = this.premultiplyAlpha;\n\n if (!this.createBitmap)\n {\n return BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture);\n }\n if (!this.bitmap)\n {\n // yeah, ignore the output\n this.process();\n if (!this.bitmap)\n {\n return false;\n }\n }\n\n BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture, this.bitmap);\n\n if (!this.preserveBitmap)\n {\n // checks if there are other renderers that possibly need this bitmap\n\n var flag = true;\n\n for (var key in baseTexture._glTextures)\n {\n var otherTex = baseTexture._glTextures[key];\n\n if (otherTex !== glTexture && otherTex.dirtyId !== baseTexture.dirtyId)\n {\n flag = false;\n break;\n }\n }\n\n if (flag)\n {\n if (this.bitmap.close)\n {\n this.bitmap.close();\n }\n\n this.bitmap = null;\n }\n }\n\n return true;\n };\n\n /**\n * Destroys this texture\n * @override\n */\n ImageResource.prototype.dispose = function dispose ()\n {\n this.source.onload = null;\n this.source.onerror = null;\n\n BaseImageResource.prototype.dispose.call(this);\n\n if (this.bitmap)\n {\n this.bitmap.close();\n this.bitmap = null;\n }\n this._process = null;\n this._load = null;\n };\n\n return ImageResource;\n}(BaseImageResource));\n\n/**\n * Collection of installed resource types, class must extend {@link PIXI.resources.Resource}.\n * @example\n * class CustomResource extends PIXI.resources.Resource {\n * // MUST have source, options constructor signature\n * // for auto-detected resources to be created.\n * constructor(source, options) {\n * super();\n * }\n * upload(renderer, baseTexture, glTexture) {\n * // upload with GL\n * return true;\n * }\n * // used to auto-detect resource\n * static test(source, extension) {\n * return extension === 'xyz'|| source instanceof SomeClass;\n * }\n * }\n * // Install the new resource type\n * PIXI.resources.INSTALLED.push(CustomResource);\n *\n * @name PIXI.resources.INSTALLED\n * @type {Array<*>}\n * @static\n * @readonly\n */\nvar INSTALLED = [];\n\n/**\n * Create a resource element from a single source element. This\n * auto-detects which type of resource to create. All resources that\n * are auto-detectable must have a static `test` method and a constructor\n * with the arguments `(source, options?)`. Currently, the supported\n * resources for auto-detection include:\n * - {@link PIXI.resources.ImageResource}\n * - {@link PIXI.resources.CanvasResource}\n * - {@link PIXI.resources.VideoResource}\n * - {@link PIXI.resources.SVGResource}\n * - {@link PIXI.resources.BufferResource}\n * @static\n * @function PIXI.resources.autoDetectResource\n * @param {string|*} source - Resource source, this can be the URL to the resource,\n * a typed-array (for BufferResource), HTMLVideoElement, SVG data-uri\n * or any other resource that can be auto-detected. If not resource is\n * detected, it's assumed to be an ImageResource.\n * @param {object} [options] - Pass-through options to use for Resource\n * @param {number} [options.width] - Width of BufferResource or SVG rasterization\n * @param {number} [options.height] - Height of BufferResource or SVG rasterization\n * @param {boolean} [options.autoLoad=true] - Image, SVG and Video flag to start loading\n * @param {number} [options.scale=1] - SVG source scale. Overridden by width, height\n * @param {boolean} [options.createBitmap=PIXI.settings.CREATE_IMAGE_BITMAP] - Image option to create Bitmap object\n * @param {boolean} [options.crossorigin=true] - Image and Video option to set crossOrigin\n * @param {boolean} [options.autoPlay=true] - Video option to start playing video immediately\n * @param {number} [options.updateFPS=0] - Video option to update how many times a second the\n * texture should be updated from the video. Leave at 0 to update at every render\n * @return {PIXI.resources.Resource} The created resource.\n */\nfunction autoDetectResource(source, options)\n{\n if (!source)\n {\n return null;\n }\n\n var extension = '';\n\n if (typeof source === 'string')\n {\n // search for file extension: period, 3-4 chars, then ?, # or EOL\n var result = (/\\.(\\w{3,4})(?:$|\\?|#)/i).exec(source);\n\n if (result)\n {\n extension = result[1].toLowerCase();\n }\n }\n\n for (var i = INSTALLED.length - 1; i >= 0; --i)\n {\n var ResourcePlugin = INSTALLED[i];\n\n if (ResourcePlugin.test && ResourcePlugin.test(source, extension))\n {\n return new ResourcePlugin(source, options);\n }\n }\n\n // When in doubt: probably an image\n // might be appropriate to throw an error or return null\n return new ImageResource(source, options);\n}\n\n/**\n * @interface SharedArrayBuffer\n */\n\n/**\n * Buffer resource with data of typed array.\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n */\nvar BufferResource = /*@__PURE__*/(function (Resource) {\n function BufferResource(source, options)\n {\n var ref = options || {};\n var width = ref.width;\n var height = ref.height;\n\n if (!width || !height)\n {\n throw new Error('BufferResource width or height invalid');\n }\n\n Resource.call(this, width, height);\n\n /**\n * Source array\n * Cannot be ClampedUint8Array because it cant be uploaded to WebGL\n *\n * @member {Float32Array|Uint8Array|Uint32Array}\n */\n this.data = source;\n }\n\n if ( Resource ) BufferResource.__proto__ = Resource;\n BufferResource.prototype = Object.create( Resource && Resource.prototype );\n BufferResource.prototype.constructor = BufferResource;\n\n /**\n * Upload the texture to the GPU.\n * @param {PIXI.Renderer} renderer Upload to the renderer\n * @param {PIXI.BaseTexture} baseTexture Reference to parent texture\n * @param {PIXI.GLTexture} glTexture glTexture\n * @returns {boolean} true is success\n */\n BufferResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var gl = renderer.gl;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height)\n {\n gl.texSubImage2D(\n baseTexture.target,\n 0,\n 0,\n 0,\n baseTexture.width,\n baseTexture.height,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n else\n {\n glTexture.width = baseTexture.width;\n glTexture.height = baseTexture.height;\n\n gl.texImage2D(\n baseTexture.target,\n 0,\n glTexture.internalFormat,\n baseTexture.width,\n baseTexture.height,\n 0,\n baseTexture.format,\n glTexture.type,\n this.data\n );\n }\n\n return true;\n };\n\n /**\n * Destroy and don't use after this\n * @override\n */\n BufferResource.prototype.dispose = function dispose ()\n {\n this.data = null;\n };\n\n /**\n * Used to auto-detect the type of resource.\n *\n * @static\n * @param {*} source - The source object\n * @return {boolean} `true` if \n */\n BufferResource.test = function test (source)\n {\n return source instanceof Float32Array\n || source instanceof Uint8Array\n || source instanceof Uint32Array;\n };\n\n return BufferResource;\n}(Resource));\n\nvar defaultBufferOptions = {\n scaleMode: SCALE_MODES.NEAREST,\n format: FORMATS.RGBA,\n premultiplyAlpha: false,\n};\n\n/**\n * A Texture stores the information that represents an image.\n * All textures have a base texture, which contains information about the source.\n * Therefore you can have many textures all using a single BaseTexture\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n * @param {PIXI.resources.Resource|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} [resource=null]\n * The current resource to use, for things that aren't Resource objects, will be converted\n * into a Resource.\n * @param {Object} [options] - Collection of options\n * @param {PIXI.MIPMAP_MODES} [options.mipmap=PIXI.settings.MIPMAP_TEXTURES] - If mipmapping is enabled for texture\n * @param {number} [options.anisotropicLevel=PIXI.settings.ANISOTROPIC_LEVEL] - Anisotropic filtering level of texture\n * @param {PIXI.WRAP_MODES} [options.wrapMode=PIXI.settings.WRAP_MODE] - Wrap mode for textures\n * @param {PIXI.SCALE_MODES} [options.scaleMode=PIXI.settings.SCALE_MODE] - Default scale mode, linear, nearest\n * @param {PIXI.FORMATS} [options.format=PIXI.FORMATS.RGBA] - GL format type\n * @param {PIXI.TYPES} [options.type=PIXI.TYPES.UNSIGNED_BYTE] - GL data type\n * @param {PIXI.TARGETS} [options.target=PIXI.TARGETS.TEXTURE_2D] - GL texture target\n * @param {boolean} [options.premultiplyAlpha=true] - Pre multiply the image alpha\n * @param {number} [options.width=0] - Width of the texture\n * @param {number} [options.height=0] - Height of the texture\n * @param {number} [options.resolution] - Resolution of the base texture\n * @param {object} [options.resourceOptions] - Optional resource options,\n * see {@link PIXI.resources.autoDetectResource autoDetectResource}\n */\nvar BaseTexture = /*@__PURE__*/(function (EventEmitter) {\n function BaseTexture(resource, options)\n {\n if ( resource === void 0 ) resource = null;\n if ( options === void 0 ) options = null;\n\n EventEmitter.call(this);\n\n options = options || {};\n\n var premultiplyAlpha = options.premultiplyAlpha;\n var mipmap = options.mipmap;\n var anisotropicLevel = options.anisotropicLevel;\n var scaleMode = options.scaleMode;\n var width = options.width;\n var height = options.height;\n var wrapMode = options.wrapMode;\n var format = options.format;\n var type = options.type;\n var target = options.target;\n var resolution = options.resolution;\n var resourceOptions = options.resourceOptions;\n\n // Convert the resource to a Resource object\n if (resource && !(resource instanceof Resource))\n {\n resource = autoDetectResource(resource, resourceOptions);\n resource.internal = true;\n }\n\n /**\n * The width of the base texture set when the image has loaded\n *\n * @readonly\n * @member {number}\n */\n this.width = width || 0;\n\n /**\n * The height of the base texture set when the image has loaded\n *\n * @readonly\n * @member {number}\n */\n this.height = height || 0;\n\n /**\n * The resolution / device pixel ratio of the texture\n *\n * @member {number}\n * @default PIXI.settings.RESOLUTION\n */\n this.resolution = resolution || settings.RESOLUTION;\n\n /**\n * Mipmap mode of the texture, affects downscaled images\n *\n * @member {PIXI.MIPMAP_MODES}\n * @default PIXI.settings.MIPMAP_TEXTURES\n */\n this.mipmap = mipmap !== undefined ? mipmap : settings.MIPMAP_TEXTURES;\n\n /**\n * Anisotropic filtering level of texture\n *\n * @member {number}\n * @default PIXI.settings.ANISOTROPIC_LEVEL\n */\n this.anisotropicLevel = anisotropicLevel !== undefined ? anisotropicLevel : settings.ANISOTROPIC_LEVEL;\n\n /**\n * How the texture wraps\n * @member {number}\n */\n this.wrapMode = wrapMode || settings.WRAP_MODE;\n\n /**\n * The scale mode to apply when scaling this texture\n *\n * @member {PIXI.SCALE_MODES}\n * @default PIXI.settings.SCALE_MODE\n */\n this.scaleMode = scaleMode !== undefined ? scaleMode : settings.SCALE_MODE;\n\n /**\n * The pixel format of the texture\n *\n * @member {PIXI.FORMATS}\n * @default PIXI.FORMATS.RGBA\n */\n this.format = format || FORMATS.RGBA;\n\n /**\n * The type of resource data\n *\n * @member {PIXI.TYPES}\n * @default PIXI.TYPES.UNSIGNED_BYTE\n */\n this.type = type || TYPES.UNSIGNED_BYTE;\n\n /**\n * The target type\n *\n * @member {PIXI.TARGETS}\n * @default PIXI.TARGETS.TEXTURE_2D\n */\n this.target = target || TARGETS.TEXTURE_2D;\n\n /**\n * Set to true to enable pre-multiplied alpha\n *\n * @member {boolean}\n * @default true\n */\n this.premultiplyAlpha = premultiplyAlpha !== false;\n\n /**\n * Global unique identifier for this BaseTexture\n *\n * @member {string}\n * @protected\n */\n this.uid = uid();\n\n /**\n * Used by automatic texture Garbage Collection, stores last GC tick when it was bound\n *\n * @member {number}\n * @protected\n */\n this.touched = 0;\n\n /**\n * Whether or not the texture is a power of two, try to use power of two textures as much\n * as you can\n *\n * @readonly\n * @member {boolean}\n * @default false\n */\n this.isPowerOfTwo = false;\n this._refreshPOT();\n\n /**\n * The map of render context textures where this is bound\n *\n * @member {Object}\n * @private\n */\n this._glTextures = {};\n\n /**\n * Used by TextureSystem to only update texture to the GPU when needed.\n * Please call `update()` to increment it.\n *\n * @readonly\n * @member {number}\n */\n this.dirtyId = 0;\n\n /**\n * Used by TextureSystem to only update texture style when needed.\n *\n * @protected\n * @member {number}\n */\n this.dirtyStyleId = 0;\n\n /**\n * Currently default cache ID.\n *\n * @member {string}\n */\n this.cacheId = null;\n\n /**\n * Generally speaking means when resource is loaded.\n * @readonly\n * @member {boolean}\n */\n this.valid = width > 0 && height > 0;\n\n /**\n * The collection of alternative cache ids, since some BaseTextures\n * can have more than one ID, short name and longer full URL\n *\n * @member {Array}\n * @readonly\n */\n this.textureCacheIds = [];\n\n /**\n * Flag if BaseTexture has been destroyed.\n *\n * @member {boolean}\n * @readonly\n */\n this.destroyed = false;\n\n /**\n * The resource used by this BaseTexture, there can only\n * be one resource per BaseTexture, but textures can share\n * resources.\n *\n * @member {PIXI.resources.Resource}\n * @readonly\n */\n this.resource = null;\n\n /**\n * Number of the texture batch, used by multi-texture renderers\n *\n * @member {number}\n */\n this._batchEnabled = 0;\n\n /**\n * Fired when a not-immediately-available source finishes loading.\n *\n * @protected\n * @event PIXI.BaseTexture#loaded\n * @param {PIXI.BaseTexture} baseTexture - Resource loaded.\n */\n\n /**\n * Fired when a not-immediately-available source fails to load.\n *\n * @protected\n * @event PIXI.BaseTexture#error\n * @param {PIXI.BaseTexture} baseTexture - Resource errored.\n * @param {ErrorEvent} event - Load error event.\n */\n\n /**\n * Fired when BaseTexture is updated.\n *\n * @protected\n * @event PIXI.BaseTexture#loaded\n * @param {PIXI.BaseTexture} baseTexture - Resource loaded.\n */\n\n /**\n * Fired when BaseTexture is updated.\n *\n * @protected\n * @event PIXI.BaseTexture#update\n * @param {PIXI.BaseTexture} baseTexture - Instance of texture being updated.\n */\n\n /**\n * Fired when BaseTexture is destroyed.\n *\n * @protected\n * @event PIXI.BaseTexture#dispose\n * @param {PIXI.BaseTexture} baseTexture - Instance of texture being destroyed.\n */\n\n // Set the resource\n this.setResource(resource);\n }\n\n if ( EventEmitter ) BaseTexture.__proto__ = EventEmitter;\n BaseTexture.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n BaseTexture.prototype.constructor = BaseTexture;\n\n var prototypeAccessors = { realWidth: { configurable: true },realHeight: { configurable: true } };\n\n /**\n * Pixel width of the source of this texture\n *\n * @readonly\n * @member {number}\n */\n prototypeAccessors.realWidth.get = function ()\n {\n return Math.ceil((this.width * this.resolution) - 1e-4);\n };\n\n /**\n * Pixel height of the source of this texture\n *\n * @readonly\n * @member {number}\n */\n prototypeAccessors.realHeight.get = function ()\n {\n return Math.ceil((this.height * this.resolution) - 1e-4);\n };\n\n /**\n * Changes style options of BaseTexture\n *\n * @param {PIXI.SCALE_MODES} [scaleMode] - Pixi scalemode\n * @param {PIXI.MIPMAP_MODES} [mipmap] - enable mipmaps\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setStyle = function setStyle (scaleMode, mipmap)\n {\n var dirty;\n\n if (scaleMode !== undefined && scaleMode !== this.scaleMode)\n {\n this.scaleMode = scaleMode;\n dirty = true;\n }\n\n if (mipmap !== undefined && mipmap !== this.mipmap)\n {\n this.mipmap = mipmap;\n dirty = true;\n }\n\n if (dirty)\n {\n this.dirtyStyleId++;\n }\n\n return this;\n };\n\n /**\n * Changes w/h/resolution. Texture becomes valid if width and height are greater than zero.\n *\n * @param {number} width Visual width\n * @param {number} height Visual height\n * @param {number} [resolution] Optionally set resolution\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setSize = function setSize (width, height, resolution)\n {\n this.resolution = resolution || this.resolution;\n this.width = width;\n this.height = height;\n this._refreshPOT();\n this.update();\n\n return this;\n };\n\n /**\n * Sets real size of baseTexture, preserves current resolution.\n *\n * @param {number} realWidth Full rendered width\n * @param {number} realHeight Full rendered height\n * @param {number} [resolution] Optionally set resolution\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setRealSize = function setRealSize (realWidth, realHeight, resolution)\n {\n this.resolution = resolution || this.resolution;\n this.width = realWidth / this.resolution;\n this.height = realHeight / this.resolution;\n this._refreshPOT();\n this.update();\n\n return this;\n };\n\n /**\n * Refresh check for isPowerOfTwo texture based on size\n *\n * @private\n */\n BaseTexture.prototype._refreshPOT = function _refreshPOT ()\n {\n this.isPowerOfTwo = isPow2(this.realWidth) && isPow2(this.realHeight);\n };\n\n /**\n * Changes resolution\n *\n * @param {number} [resolution] res\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setResolution = function setResolution (resolution)\n {\n var oldResolution = this.resolution;\n\n if (oldResolution === resolution)\n {\n return this;\n }\n\n this.resolution = resolution;\n\n if (this.valid)\n {\n this.width = this.width * oldResolution / resolution;\n this.height = this.height * oldResolution / resolution;\n this.emit('update', this);\n }\n\n this._refreshPOT();\n\n return this;\n };\n\n /**\n * Sets the resource if it wasn't set. Throws error if resource already present\n *\n * @param {PIXI.resources.Resource} resource - that is managing this BaseTexture\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setResource = function setResource (resource)\n {\n if (this.resource === resource)\n {\n return this;\n }\n\n if (this.resource)\n {\n throw new Error('Resource can be set only once');\n }\n\n resource.bind(this);\n\n this.resource = resource;\n\n return this;\n };\n\n /**\n * Invalidates the object. Texture becomes valid if width and height are greater than zero.\n */\n BaseTexture.prototype.update = function update ()\n {\n if (!this.valid)\n {\n if (this.width > 0 && this.height > 0)\n {\n this.valid = true;\n this.emit('loaded', this);\n this.emit('update', this);\n }\n }\n else\n {\n this.dirtyId++;\n this.dirtyStyleId++;\n this.emit('update', this);\n }\n };\n\n /**\n * Handle errors with resources.\n * @private\n * @param {ErrorEvent} event - Error event emitted.\n */\n BaseTexture.prototype.onError = function onError (event)\n {\n this.emit('error', this, event);\n };\n\n /**\n * Destroys this base texture.\n * The method stops if resource doesn't want this texture to be destroyed.\n * Removes texture from all caches.\n */\n BaseTexture.prototype.destroy = function destroy ()\n {\n // remove and destroy the resource\n if (this.resource)\n {\n this.resource.unbind(this);\n // only destroy resourced created internally\n if (this.resource.internal)\n {\n this.resource.destroy();\n }\n this.resource = null;\n }\n\n if (this.cacheId)\n {\n delete BaseTextureCache[this.cacheId];\n delete TextureCache[this.cacheId];\n\n this.cacheId = null;\n }\n\n // finally let the WebGL renderer know..\n this.dispose();\n\n BaseTexture.removeFromCache(this);\n this.textureCacheIds = null;\n\n this.destroyed = true;\n };\n\n /**\n * Frees the texture from WebGL memory without destroying this texture object.\n * This means you can still use the texture later which will upload it to GPU\n * memory again.\n *\n * @fires PIXI.BaseTexture#dispose\n */\n BaseTexture.prototype.dispose = function dispose ()\n {\n this.emit('dispose', this);\n };\n\n /**\n * Helper function that creates a base texture based on the source you provide.\n * The source can be - image url, image element, canvas element. If the\n * source is an image url or an image element and not in the base texture\n * cache, it will be created and loaded.\n *\n * @static\n * @param {string|HTMLImageElement|HTMLCanvasElement|SVGElement|HTMLVideoElement} source - The\n * source to create base texture from.\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @returns {PIXI.BaseTexture} The new base texture.\n */\n BaseTexture.from = function from (source, options)\n {\n var cacheId = null;\n\n if (typeof source === 'string')\n {\n cacheId = source;\n }\n else\n {\n if (!source._pixiId)\n {\n source._pixiId = \"pixiid_\" + (uid());\n }\n\n cacheId = source._pixiId;\n }\n\n var baseTexture = BaseTextureCache[cacheId];\n\n if (!baseTexture)\n {\n baseTexture = new BaseTexture(source, options);\n baseTexture.cacheId = cacheId;\n BaseTexture.addToCache(baseTexture, cacheId);\n }\n\n return baseTexture;\n };\n\n /**\n * Create a new BaseTexture with a BufferResource from a Float32Array.\n * RGBA values are floats from 0 to 1.\n * @static\n * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data\n * is provided, a new Float32Array is created.\n * @param {number} width - Width of the resource\n * @param {number} height - Height of the resource\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.BaseTexture} The resulting new BaseTexture\n */\n BaseTexture.fromBuffer = function fromBuffer (buffer, width, height, options)\n {\n buffer = buffer || new Float32Array(width * height * 4);\n\n var resource = new BufferResource(buffer, { width: width, height: height });\n var type = buffer instanceof Float32Array ? TYPES.FLOAT : TYPES.UNSIGNED_BYTE;\n\n return new BaseTexture(resource, Object.assign(defaultBufferOptions, options || { width: width, height: height, type: type }));\n };\n\n /**\n * Adds a BaseTexture to the global BaseTextureCache. This cache is shared across the whole PIXI object.\n *\n * @static\n * @param {PIXI.BaseTexture} baseTexture - The BaseTexture to add to the cache.\n * @param {string} id - The id that the BaseTexture will be stored against.\n */\n BaseTexture.addToCache = function addToCache (baseTexture, id)\n {\n if (id)\n {\n if (baseTexture.textureCacheIds.indexOf(id) === -1)\n {\n baseTexture.textureCacheIds.push(id);\n }\n\n if (BaseTextureCache[id])\n {\n // eslint-disable-next-line no-console\n console.warn((\"BaseTexture added to the cache with an id [\" + id + \"] that already had an entry\"));\n }\n\n BaseTextureCache[id] = baseTexture;\n }\n };\n\n /**\n * Remove a BaseTexture from the global BaseTextureCache.\n *\n * @static\n * @param {string|PIXI.BaseTexture} baseTexture - id of a BaseTexture to be removed, or a BaseTexture instance itself.\n * @return {PIXI.BaseTexture|null} The BaseTexture that was removed.\n */\n BaseTexture.removeFromCache = function removeFromCache (baseTexture)\n {\n if (typeof baseTexture === 'string')\n {\n var baseTextureFromCache = BaseTextureCache[baseTexture];\n\n if (baseTextureFromCache)\n {\n var index = baseTextureFromCache.textureCacheIds.indexOf(baseTexture);\n\n if (index > -1)\n {\n baseTextureFromCache.textureCacheIds.splice(index, 1);\n }\n\n delete BaseTextureCache[baseTexture];\n\n return baseTextureFromCache;\n }\n }\n else if (baseTexture && baseTexture.textureCacheIds)\n {\n for (var i = 0; i < baseTexture.textureCacheIds.length; ++i)\n {\n delete BaseTextureCache[baseTexture.textureCacheIds[i]];\n }\n\n baseTexture.textureCacheIds.length = 0;\n\n return baseTexture;\n }\n\n return null;\n };\n\n Object.defineProperties( BaseTexture.prototype, prototypeAccessors );\n\n return BaseTexture;\n}(EventEmitter));\n\n/**\n * Global number of the texture batch, used by multi-texture renderers\n *\n * @static\n * @member {number}\n */\nBaseTexture._globalBatch = 0;\n\n/**\n * A resource that contains a number of sources.\n *\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n * @param {number|Array<*>} source - Number of items in array or the collection\n * of image URLs to use. Can also be resources, image elements, canvas, etc.\n * @param {object} [options] Options to apply to {@link PIXI.resources.autoDetectResource}\n * @param {number} [options.width] - Width of the resource\n * @param {number} [options.height] - Height of the resource\n */\nvar ArrayResource = /*@__PURE__*/(function (Resource) {\n function ArrayResource(source, options)\n {\n options = options || {};\n\n var urls;\n var length = source;\n\n if (Array.isArray(source))\n {\n urls = source;\n length = source.length;\n }\n\n Resource.call(this, options.width, options.height);\n\n /**\n * Collection of resources.\n * @member {Array}\n * @readonly\n */\n this.items = [];\n\n /**\n * Dirty IDs for each part\n * @member {Array}\n * @readonly\n */\n this.itemDirtyIds = [];\n\n for (var i = 0; i < length; i++)\n {\n var partTexture = new BaseTexture();\n\n this.items.push(partTexture);\n this.itemDirtyIds.push(-1);\n }\n\n /**\n * Number of elements in array\n *\n * @member {number}\n * @readonly\n */\n this.length = length;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (urls)\n {\n for (var i$1 = 0; i$1 < length; i$1++)\n {\n this.addResourceAt(autoDetectResource(urls[i$1], options), i$1);\n }\n }\n }\n\n if ( Resource ) ArrayResource.__proto__ = Resource;\n ArrayResource.prototype = Object.create( Resource && Resource.prototype );\n ArrayResource.prototype.constructor = ArrayResource;\n\n /**\n * Destroy this BaseImageResource\n * @override\n */\n ArrayResource.prototype.dispose = function dispose ()\n {\n for (var i = 0, len = this.length; i < len; i++)\n {\n this.items[i].destroy();\n }\n this.items = null;\n this.itemDirtyIds = null;\n this._load = null;\n };\n\n /**\n * Set a resource by ID\n *\n * @param {PIXI.resources.Resource} resource\n * @param {number} index - Zero-based index of resource to set\n * @return {PIXI.resources.ArrayResource} Instance for chaining\n */\n ArrayResource.prototype.addResourceAt = function addResourceAt (resource, index)\n {\n var baseTexture = this.items[index];\n\n if (!baseTexture)\n {\n throw new Error((\"Index \" + index + \" is out of bounds\"));\n }\n\n // Inherit the first resource dimensions\n if (resource.valid && !this.valid)\n {\n this.resize(resource.width, resource.height);\n }\n\n this.items[index].setResource(resource);\n\n return this;\n };\n\n /**\n * Set the parent base texture\n * @member {PIXI.BaseTexture}\n * @override\n */\n ArrayResource.prototype.bind = function bind (baseTexture)\n {\n Resource.prototype.bind.call(this, baseTexture);\n\n baseTexture.target = TARGETS.TEXTURE_2D_ARRAY;\n\n for (var i = 0; i < this.length; i++)\n {\n this.items[i].on('update', baseTexture.update, baseTexture);\n }\n };\n\n /**\n * Unset the parent base texture\n * @member {PIXI.BaseTexture}\n * @override\n */\n ArrayResource.prototype.unbind = function unbind (baseTexture)\n {\n Resource.prototype.unbind.call(this, baseTexture);\n\n for (var i = 0; i < this.length; i++)\n {\n this.items[i].off('update', baseTexture.update, baseTexture);\n }\n };\n\n /**\n * Load all the resources simultaneously\n * @override\n * @return {Promise} When load is resolved\n */\n ArrayResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n var resources = this.items.map(function (item) { return item.resource; });\n\n // TODO: also implement load part-by-part strategy\n var promises = resources.map(function (item) { return item.load(); });\n\n this._load = Promise.all(promises)\n .then(function () {\n var ref = resources[0];\n var width = ref.width;\n var height = ref.height;\n\n this$1.resize(width, height);\n\n return Promise.resolve(this$1);\n }\n );\n\n return this._load;\n };\n\n /**\n * Upload the resources to the GPU.\n * @param {PIXI.Renderer} renderer\n * @param {PIXI.BaseTexture} texture\n * @param {PIXI.GLTexture} glTexture\n * @returns {boolean} whether texture was uploaded\n */\n ArrayResource.prototype.upload = function upload (renderer, texture, glTexture)\n {\n var ref = this;\n var length = ref.length;\n var itemDirtyIds = ref.itemDirtyIds;\n var items = ref.items;\n var gl = renderer.gl;\n\n if (glTexture.dirtyId < 0)\n {\n gl.texImage3D(\n gl.TEXTURE_2D_ARRAY,\n 0,\n texture.format,\n this._width,\n this._height,\n length,\n 0,\n texture.format,\n texture.type,\n null\n );\n }\n\n for (var i = 0; i < length; i++)\n {\n var item = items[i];\n\n if (itemDirtyIds[i] < item.dirtyId)\n {\n itemDirtyIds[i] = item.dirtyId;\n if (item.valid)\n {\n gl.texSubImage3D(\n gl.TEXTURE_2D_ARRAY,\n 0,\n 0, // xoffset\n 0, // yoffset\n i, // zoffset\n item.resource.width,\n item.resource.height,\n 1,\n texture.format,\n texture.type,\n item.resource.source\n );\n }\n }\n }\n\n return true;\n };\n\n return ArrayResource;\n}(Resource));\n\n/**\n * @interface OffscreenCanvas\n */\n\n/**\n * Resource type for HTMLCanvasElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {HTMLCanvasElement} source - Canvas element to use\n */\nvar CanvasResource = /*@__PURE__*/(function (BaseImageResource) {\n function CanvasResource () {\n BaseImageResource.apply(this, arguments);\n }\n\n if ( BaseImageResource ) CanvasResource.__proto__ = BaseImageResource;\n CanvasResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n CanvasResource.prototype.constructor = CanvasResource;\n\n CanvasResource.test = function test (source)\n {\n var OffscreenCanvas = window.OffscreenCanvas;\n\n // Check for browsers that don't yet support OffscreenCanvas\n if (OffscreenCanvas && source instanceof OffscreenCanvas)\n {\n return true;\n }\n\n return source instanceof HTMLCanvasElement;\n };\n\n return CanvasResource;\n}(BaseImageResource));\n\n/**\n * Resource for a CubeTexture which contains six resources.\n *\n * @class\n * @extends PIXI.resources.ArrayResource\n * @memberof PIXI.resources\n * @param {Array} [source] Collection of URLs or resources\n * to use as the sides of the cube.\n * @param {object} [options] - ImageResource options\n * @param {number} [options.width] - Width of resource\n * @param {number} [options.height] - Height of resource\n */\nvar CubeResource = /*@__PURE__*/(function (ArrayResource) {\n function CubeResource(source, options)\n {\n options = options || {};\n\n ArrayResource.call(this, source, options);\n\n if (this.length !== CubeResource.SIDES)\n {\n throw new Error((\"Invalid length. Got \" + (this.length) + \", expected 6\"));\n }\n\n for (var i = 0; i < CubeResource.SIDES; i++)\n {\n this.items[i].target = TARGETS.TEXTURE_CUBE_MAP_POSITIVE_X + i;\n }\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( ArrayResource ) CubeResource.__proto__ = ArrayResource;\n CubeResource.prototype = Object.create( ArrayResource && ArrayResource.prototype );\n CubeResource.prototype.constructor = CubeResource;\n\n /**\n * Add binding\n *\n * @override\n * @param {PIXI.BaseTexture} baseTexture - parent base texture\n */\n CubeResource.prototype.bind = function bind (baseTexture)\n {\n ArrayResource.prototype.bind.call(this, baseTexture);\n\n baseTexture.target = TARGETS.TEXTURE_CUBE_MAP;\n };\n\n /**\n * Upload the resource\n *\n * @returns {boolean} true is success\n */\n CubeResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var dirty = this.itemDirtyIds;\n\n for (var i = 0; i < CubeResource.SIDES; i++)\n {\n var side = this.items[i];\n\n if (dirty[i] < side.dirtyId)\n {\n dirty[i] = side.dirtyId;\n if (side.valid)\n {\n side.resource.upload(renderer, side, glTexture);\n }\n }\n }\n\n return true;\n };\n\n return CubeResource;\n}(ArrayResource));\n\n/**\n * Number of texture sides to store for CubeResources\n *\n * @name PIXI.resources.CubeResource.SIDES\n * @static\n * @member {number}\n * @default 6\n */\nCubeResource.SIDES = 6;\n\n/**\n * Resource type for SVG elements and graphics.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {string} source - Base64 encoded SVG element or URL for SVG file.\n * @param {object} [options] - Options to use\n * @param {number} [options.scale=1] Scale to apply to SVG. Overridden by...\n * @param {number} [options.width] Rasterize SVG this wide. Aspect ratio preserved if height not specified.\n * @param {number} [options.height] Rasterize SVG this high. Aspect ratio preserved if width not specified.\n * @param {boolean} [options.autoLoad=true] Start loading right away.\n */\nvar SVGResource = /*@__PURE__*/(function (BaseImageResource) {\n function SVGResource(source, options)\n {\n options = options || {};\n\n BaseImageResource.call(this, document.createElement('canvas'));\n this._width = 0;\n this._height = 0;\n\n /**\n * Base64 encoded SVG element or URL for SVG file\n * @readonly\n * @member {string}\n */\n this.svg = source;\n\n /**\n * The source scale to apply when rasterizing on load\n * @readonly\n * @member {number}\n */\n this.scale = options.scale || 1;\n\n /**\n * A width override for rasterization on load\n * @readonly\n * @member {number}\n */\n this._overrideWidth = options.width;\n\n /**\n * A height override for rasterization on load\n * @readonly\n * @member {number}\n */\n this._overrideHeight = options.height;\n\n /**\n * Call when completely loaded\n * @private\n * @member {function}\n */\n this._resolve = null;\n\n /**\n * Cross origin value to use\n * @private\n * @member {boolean|string}\n */\n this._crossorigin = options.crossorigin;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) SVGResource.__proto__ = BaseImageResource;\n SVGResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n SVGResource.prototype.constructor = SVGResource;\n\n SVGResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n this._load = new Promise(function (resolve) {\n // Save this until after load is finished\n this$1._resolve = function () {\n this$1.resize(this$1.source.width, this$1.source.height);\n resolve(this$1);\n };\n\n // Convert SVG inline string to data-uri\n if ((/^\\]*(?:\\s(width|height)=('|\")(\\d*(?:\\.\\d+)?)(?:px)?('|\"))[^>]*(?:\\s(width|height)=('|\")(\\d*(?:\\.\\d+)?)(?:px)?('|\"))[^>]*>/i; // eslint-disable-line max-len\n\n/**\n * Resource type for HTMLVideoElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {HTMLVideoElement|object|string|Array} source - Video element to use.\n * @param {object} [options] - Options to use\n * @param {boolean} [options.autoLoad=true] - Start loading the video immediately\n * @param {boolean} [options.autoPlay=true] - Start playing video immediately\n * @param {number} [options.updateFPS=0] - How many times a second to update the texture from the video.\n * Leave at 0 to update at every render.\n * @param {boolean} [options.crossorigin=true] - Load image using cross origin\n */\nvar VideoResource = /*@__PURE__*/(function (BaseImageResource) {\n function VideoResource(source, options)\n {\n options = options || {};\n\n if (!(source instanceof HTMLVideoElement))\n {\n var videoElement = document.createElement('video');\n\n // workaround for https://github.com/pixijs/pixi.js/issues/5996\n videoElement.setAttribute('preload', 'auto');\n videoElement.setAttribute('webkit-playsinline', '');\n videoElement.setAttribute('playsinline', '');\n\n if (typeof source === 'string')\n {\n source = [source];\n }\n\n BaseImageResource.crossOrigin(videoElement, (source[0].src || source[0]), options.crossorigin);\n\n // array of objects or strings\n for (var i = 0; i < source.length; ++i)\n {\n var sourceElement = document.createElement('source');\n\n var ref = source[i];\n var src = ref.src;\n var mime = ref.mime;\n\n src = src || source[i];\n\n var baseSrc = src.split('?').shift().toLowerCase();\n var ext = baseSrc.substr(baseSrc.lastIndexOf('.') + 1);\n\n mime = mime || (\"video/\" + ext);\n\n sourceElement.src = src;\n sourceElement.type = mime;\n\n videoElement.appendChild(sourceElement);\n }\n\n // Override the source\n source = videoElement;\n }\n\n BaseImageResource.call(this, source);\n\n this.noSubImage = true;\n this._autoUpdate = true;\n this._isAutoUpdating = false;\n this._updateFPS = options.updateFPS || 0;\n this._msToNextUpdate = 0;\n\n /**\n * When set to true will automatically play videos used by this texture once\n * they are loaded. If false, it will not modify the playing state.\n *\n * @member {boolean}\n * @default true\n */\n this.autoPlay = options.autoPlay !== false;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n /**\n * Callback when completed with load.\n * @member {function}\n * @private\n */\n this._resolve = null;\n\n // Bind for listeners\n this._onCanPlay = this._onCanPlay.bind(this);\n this._onError = this._onError.bind(this);\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) VideoResource.__proto__ = BaseImageResource;\n VideoResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n VideoResource.prototype.constructor = VideoResource;\n\n var prototypeAccessors = { autoUpdate: { configurable: true },updateFPS: { configurable: true } };\n\n /**\n * Trigger updating of the texture\n *\n * @param {number} [deltaTime=0] - time delta since last tick\n */\n VideoResource.prototype.update = function update (deltaTime)\n {\n if ( deltaTime === void 0 ) deltaTime = 0;\n\n if (!this.destroyed)\n {\n // account for if video has had its playbackRate changed\n var elapsedMS = Ticker.shared.elapsedMS * this.source.playbackRate;\n\n this._msToNextUpdate = Math.floor(this._msToNextUpdate - elapsedMS);\n if (!this._updateFPS || this._msToNextUpdate <= 0)\n {\n BaseImageResource.prototype.update.call(this, deltaTime);\n this._msToNextUpdate = this._updateFPS ? Math.floor(1000 / this._updateFPS) : 0;\n }\n }\n };\n\n /**\n * Start preloading the video resource.\n *\n * @protected\n * @return {Promise} Handle the validate event\n */\n VideoResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n var source = this.source;\n\n if ((source.readyState === source.HAVE_ENOUGH_DATA || source.readyState === source.HAVE_FUTURE_DATA)\n && source.width && source.height)\n {\n source.complete = true;\n }\n\n source.addEventListener('play', this._onPlayStart.bind(this));\n source.addEventListener('pause', this._onPlayStop.bind(this));\n\n if (!this._isSourceReady())\n {\n source.addEventListener('canplay', this._onCanPlay);\n source.addEventListener('canplaythrough', this._onCanPlay);\n source.addEventListener('error', this._onError, true);\n }\n else\n {\n this._onCanPlay();\n }\n\n this._load = new Promise(function (resolve) {\n if (this$1.valid)\n {\n resolve(this$1);\n }\n else\n {\n this$1._resolve = resolve;\n\n source.load();\n }\n });\n\n return this._load;\n };\n\n /**\n * Handle video error events.\n *\n * @private\n */\n VideoResource.prototype._onError = function _onError ()\n {\n this.source.removeEventListener('error', this._onError, true);\n this.onError.run(event);\n };\n\n /**\n * Returns true if the underlying source is playing.\n *\n * @private\n * @return {boolean} True if playing.\n */\n VideoResource.prototype._isSourcePlaying = function _isSourcePlaying ()\n {\n var source = this.source;\n\n return (source.currentTime > 0 && source.paused === false && source.ended === false && source.readyState > 2);\n };\n\n /**\n * Returns true if the underlying source is ready for playing.\n *\n * @private\n * @return {boolean} True if ready.\n */\n VideoResource.prototype._isSourceReady = function _isSourceReady ()\n {\n return this.source.readyState === 3 || this.source.readyState === 4;\n };\n\n /**\n * Runs the update loop when the video is ready to play\n *\n * @private\n */\n VideoResource.prototype._onPlayStart = function _onPlayStart ()\n {\n // Just in case the video has not received its can play even yet..\n if (!this.valid)\n {\n this._onCanPlay();\n }\n\n if (!this._isAutoUpdating && this.autoUpdate)\n {\n Ticker.shared.add(this.update, this);\n this._isAutoUpdating = true;\n }\n };\n\n /**\n * Fired when a pause event is triggered, stops the update loop\n *\n * @private\n */\n VideoResource.prototype._onPlayStop = function _onPlayStop ()\n {\n if (this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n this._isAutoUpdating = false;\n }\n };\n\n /**\n * Fired when the video is loaded and ready to play\n *\n * @private\n */\n VideoResource.prototype._onCanPlay = function _onCanPlay ()\n {\n var ref = this;\n var source = ref.source;\n\n source.removeEventListener('canplay', this._onCanPlay);\n source.removeEventListener('canplaythrough', this._onCanPlay);\n\n var valid = this.valid;\n\n this.resize(source.videoWidth, source.videoHeight);\n\n // prevent multiple loaded dispatches..\n if (!valid && this._resolve)\n {\n this._resolve(this);\n this._resolve = null;\n }\n\n if (this._isSourcePlaying())\n {\n this._onPlayStart();\n }\n else if (this.autoPlay)\n {\n source.play();\n }\n };\n\n /**\n * Destroys this texture\n * @override\n */\n VideoResource.prototype.dispose = function dispose ()\n {\n if (this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n }\n\n if (this.source)\n {\n this.source.removeEventListener('error', this._onError, true);\n this.source.pause();\n this.source.src = '';\n this.source.load();\n }\n BaseImageResource.prototype.dispose.call(this);\n };\n\n /**\n * Should the base texture automatically update itself, set to true by default\n *\n * @member {boolean}\n */\n prototypeAccessors.autoUpdate.get = function ()\n {\n return this._autoUpdate;\n };\n\n prototypeAccessors.autoUpdate.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (value !== this._autoUpdate)\n {\n this._autoUpdate = value;\n\n if (!this._autoUpdate && this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n this._isAutoUpdating = false;\n }\n else if (this._autoUpdate && !this._isAutoUpdating)\n {\n Ticker.shared.add(this.update, this);\n this._isAutoUpdating = true;\n }\n }\n };\n\n /**\n * How many times a second to update the texture from the video. Leave at 0 to update at every render.\n * A lower fps can help performance, as updating the texture at 60fps on a 30ps video may not be efficient.\n *\n * @member {number}\n */\n prototypeAccessors.updateFPS.get = function ()\n {\n return this._updateFPS;\n };\n\n prototypeAccessors.updateFPS.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (value !== this._updateFPS)\n {\n this._updateFPS = value;\n }\n };\n\n /**\n * Used to auto-detect the type of resource.\n *\n * @static\n * @param {*} source - The source object\n * @param {string} extension - The extension of source, if set\n * @return {boolean} `true` if video source\n */\n VideoResource.test = function test (source, extension)\n {\n return (source instanceof HTMLVideoElement)\n || VideoResource.TYPES.indexOf(extension) > -1;\n };\n\n Object.defineProperties( VideoResource.prototype, prototypeAccessors );\n\n return VideoResource;\n}(BaseImageResource));\n\n/**\n * List of common video file extensions supported by VideoResource.\n * @constant\n * @member {Array}\n * @static\n * @readonly\n */\nVideoResource.TYPES = ['mp4', 'm4v', 'webm', 'ogg', 'ogv', 'h264', 'avi', 'mov'];\n\n/**\n * Resource type for ImageBitmap.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {ImageBitmap} source - Image element to use\n */\nvar ImageBitmapResource = /*@__PURE__*/(function (BaseImageResource) {\n function ImageBitmapResource () {\n BaseImageResource.apply(this, arguments);\n }\n\n if ( BaseImageResource ) ImageBitmapResource.__proto__ = BaseImageResource;\n ImageBitmapResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n ImageBitmapResource.prototype.constructor = ImageBitmapResource;\n\n ImageBitmapResource.test = function test (source)\n {\n return !!window.createImageBitmap && source instanceof ImageBitmap;\n };\n\n return ImageBitmapResource;\n}(BaseImageResource));\n\nINSTALLED.push(\n ImageResource,\n ImageBitmapResource,\n CanvasResource,\n VideoResource,\n SVGResource,\n BufferResource,\n CubeResource,\n ArrayResource\n);\n\nvar index = ({\n INSTALLED: INSTALLED,\n autoDetectResource: autoDetectResource,\n ArrayResource: ArrayResource,\n BufferResource: BufferResource,\n CanvasResource: CanvasResource,\n CubeResource: CubeResource,\n ImageResource: ImageResource,\n ImageBitmapResource: ImageBitmapResource,\n SVGResource: SVGResource,\n VideoResource: VideoResource,\n Resource: Resource,\n BaseImageResource: BaseImageResource\n});\n\n/**\n * System is a base class used for extending systems used by the {@link PIXI.Renderer}\n *\n * @see PIXI.Renderer#addSystem\n * @class\n * @memberof PIXI\n */\nvar System = function System(renderer)\n{\n /**\n * The renderer this manager works for.\n *\n * @member {PIXI.Renderer}\n */\n this.renderer = renderer;\n};\n\n/**\n * Generic destroy methods to be overridden by the subclass\n */\nSystem.prototype.destroy = function destroy ()\n{\n this.renderer = null;\n};\n\n/**\n * Resource type for DepthTexture.\n * @class\n * @extends PIXI.resources.BufferResource\n * @memberof PIXI.resources\n */\nvar DepthResource = /*@__PURE__*/(function (BufferResource) {\n function DepthResource () {\n BufferResource.apply(this, arguments);\n }\n\n if ( BufferResource ) DepthResource.__proto__ = BufferResource;\n DepthResource.prototype = Object.create( BufferResource && BufferResource.prototype );\n DepthResource.prototype.constructor = DepthResource;\n\n DepthResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var gl = renderer.gl;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height)\n {\n gl.texSubImage2D(\n baseTexture.target,\n 0,\n 0,\n 0,\n baseTexture.width,\n baseTexture.height,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n else\n {\n glTexture.width = baseTexture.width;\n glTexture.height = baseTexture.height;\n\n gl.texImage2D(\n baseTexture.target,\n 0,\n gl.DEPTH_COMPONENT16, // Needed for depth to render properly in webgl2.0\n baseTexture.width,\n baseTexture.height,\n 0,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n\n return true;\n };\n\n return DepthResource;\n}(BufferResource));\n\n/**\n * Frame buffer used by the BaseRenderTexture\n *\n * @class\n * @memberof PIXI\n */\nvar Framebuffer = function Framebuffer(width, height)\n{\n this.width = Math.ceil(width || 100);\n this.height = Math.ceil(height || 100);\n\n this.stencil = false;\n this.depth = false;\n\n this.dirtyId = 0;\n this.dirtyFormat = 0;\n this.dirtySize = 0;\n\n this.depthTexture = null;\n this.colorTextures = [];\n\n this.glFramebuffers = {};\n\n this.disposeRunner = new Runner('disposeFramebuffer', 2);\n};\n\nvar prototypeAccessors$1 = { colorTexture: { configurable: true } };\n\n/**\n * Reference to the colorTexture.\n *\n * @member {PIXI.Texture[]}\n * @readonly\n */\nprototypeAccessors$1.colorTexture.get = function ()\n{\n return this.colorTextures[0];\n};\n\n/**\n * Add texture to the colorTexture array\n *\n * @param {number} [index=0] - Index of the array to add the texture to\n * @param {PIXI.Texture} [texture] - Texture to add to the array\n */\nFramebuffer.prototype.addColorTexture = function addColorTexture (index, texture)\n{\n if ( index === void 0 ) index = 0;\n\n // TODO add some validation to the texture - same width / height etc?\n this.colorTextures[index] = texture || new BaseTexture(null, { scaleMode: 0,\n resolution: 1,\n mipmap: false,\n width: this.width,\n height: this.height });// || new Texture();\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Add a depth texture to the frame buffer\n *\n * @param {PIXI.Texture} [texture] - Texture to add\n */\nFramebuffer.prototype.addDepthTexture = function addDepthTexture (texture)\n{\n /* eslint-disable max-len */\n this.depthTexture = texture || new BaseTexture(new DepthResource(null, { width: this.width, height: this.height }), { scaleMode: 0,\n resolution: 1,\n width: this.width,\n height: this.height,\n mipmap: false,\n format: FORMATS.DEPTH_COMPONENT,\n type: TYPES.UNSIGNED_SHORT });// UNSIGNED_SHORT;\n /* eslint-disable max-len */\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Enable depth on the frame buffer\n */\nFramebuffer.prototype.enableDepth = function enableDepth ()\n{\n this.depth = true;\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Enable stencil on the frame buffer\n */\nFramebuffer.prototype.enableStencil = function enableStencil ()\n{\n this.stencil = true;\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Resize the frame buffer\n *\n * @param {number} width - Width of the frame buffer to resize to\n * @param {number} height - Height of the frame buffer to resize to\n */\nFramebuffer.prototype.resize = function resize (width, height)\n{\n width = Math.ceil(width);\n height = Math.ceil(height);\n\n if (width === this.width && height === this.height) { return; }\n\n this.width = width;\n this.height = height;\n\n this.dirtyId++;\n this.dirtySize++;\n\n for (var i = 0; i < this.colorTextures.length; i++)\n {\n var texture = this.colorTextures[i];\n var resolution = texture.resolution;\n\n // take into acount the fact the texture may have a different resolution..\n texture.setSize(width / resolution, height / resolution);\n }\n\n if (this.depthTexture)\n {\n var resolution$1 = this.depthTexture.resolution;\n\n this.depthTexture.setSize(width / resolution$1, height / resolution$1);\n }\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nFramebuffer.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\nObject.defineProperties( Framebuffer.prototype, prototypeAccessors$1 );\n\n/**\n * A BaseRenderTexture is a special texture that allows any PixiJS display object to be rendered to it.\n *\n * __Hint__: All DisplayObjects (i.e. Sprites) that render to a BaseRenderTexture should be preloaded\n * otherwise black rectangles will be drawn instead.\n *\n * A BaseRenderTexture takes a snapshot of any Display Object given to its render method. The position\n * and rotation of the given Display Objects is ignored. For example:\n *\n * ```js\n * let renderer = PIXI.autoDetectRenderer();\n * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 800, height: 600 });\n * let renderTexture = new PIXI.RenderTexture(baseRenderTexture);\n * let sprite = PIXI.Sprite.from(\"spinObj_01.png\");\n *\n * sprite.position.x = 800/2;\n * sprite.position.y = 600/2;\n * sprite.anchor.x = 0.5;\n * sprite.anchor.y = 0.5;\n *\n * renderer.render(sprite, renderTexture);\n * ```\n *\n * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0\n * you can clear the transform\n *\n * ```js\n *\n * sprite.setTransform()\n *\n * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 100, height: 100 });\n * let renderTexture = new PIXI.RenderTexture(baseRenderTexture);\n *\n * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture\n * ```\n *\n * @class\n * @extends PIXI.BaseTexture\n * @memberof PIXI\n */\nvar BaseRenderTexture = /*@__PURE__*/(function (BaseTexture) {\n function BaseRenderTexture(options)\n {\n if (typeof options === 'number')\n {\n /* eslint-disable prefer-rest-params */\n // Backward compatibility of signature\n var width$1 = arguments[0];\n var height$1 = arguments[1];\n var scaleMode = arguments[2];\n var resolution = arguments[3];\n\n options = { width: width$1, height: height$1, scaleMode: scaleMode, resolution: resolution };\n /* eslint-enable prefer-rest-params */\n }\n\n BaseTexture.call(this, null, options);\n\n var ref = options || {};\n var width = ref.width;\n var height = ref.height;\n\n // Set defaults\n this.mipmap = false;\n this.width = Math.ceil(width) || 100;\n this.height = Math.ceil(height) || 100;\n this.valid = true;\n\n /**\n * A reference to the canvas render target (we only need one as this can be shared across renderers)\n *\n * @protected\n * @member {object}\n */\n this._canvasRenderTarget = null;\n\n this.clearColor = [0, 0, 0, 0];\n\n this.framebuffer = new Framebuffer(this.width * this.resolution, this.height * this.resolution)\n .addColorTexture(0, this);\n\n // TODO - could this be added the systems?\n\n /**\n * The data structure for the stencil masks.\n *\n * @member {PIXI.Graphics[]}\n */\n this.stencilMaskStack = [];\n\n /**\n * The data structure for the filters.\n *\n * @member {PIXI.Graphics[]}\n */\n this.filterStack = [{}];\n }\n\n if ( BaseTexture ) BaseRenderTexture.__proto__ = BaseTexture;\n BaseRenderTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype );\n BaseRenderTexture.prototype.constructor = BaseRenderTexture;\n\n /**\n * Resizes the BaseRenderTexture.\n *\n * @param {number} width - The width to resize to.\n * @param {number} height - The height to resize to.\n */\n BaseRenderTexture.prototype.resize = function resize (width, height)\n {\n width = Math.ceil(width);\n height = Math.ceil(height);\n this.framebuffer.resize(width * this.resolution, height * this.resolution);\n };\n\n /**\n * Frees the texture and framebuffer from WebGL memory without destroying this texture object.\n * This means you can still use the texture later which will upload it to GPU\n * memory again.\n *\n * @fires PIXI.BaseTexture#dispose\n */\n BaseRenderTexture.prototype.dispose = function dispose ()\n {\n this.framebuffer.dispose();\n\n BaseTexture.prototype.dispose.call(this);\n };\n\n /**\n * Destroys this texture.\n *\n */\n BaseRenderTexture.prototype.destroy = function destroy ()\n {\n BaseTexture.prototype.destroy.call(this, true);\n\n this.framebuffer = null;\n };\n\n return BaseRenderTexture;\n}(BaseTexture));\n\n/**\n * Stores a texture's frame in UV coordinates, in\n * which everything lies in the rectangle `[(0,0), (1,0),\n * (1,1), (0,1)]`.\n *\n * | Corner | Coordinates |\n * |--------------|-------------|\n * | Top-Left | `(x0,y0)` |\n * | Top-Right | `(x1,y1)` |\n * | Bottom-Right | `(x2,y2)` |\n * | Bottom-Left | `(x3,y3)` |\n *\n * @class\n * @protected\n * @memberof PIXI\n */\nvar TextureUvs = function TextureUvs()\n{\n /**\n * X-component of top-left corner `(x0,y0)`.\n *\n * @member {number}\n */\n this.x0 = 0;\n\n /**\n * Y-component of top-left corner `(x0,y0)`.\n *\n * @member {number}\n */\n this.y0 = 0;\n\n /**\n * X-component of top-right corner `(x1,y1)`.\n *\n * @member {number}\n */\n this.x1 = 1;\n\n /**\n * Y-component of top-right corner `(x1,y1)`.\n *\n * @member {number}\n */\n this.y1 = 0;\n\n /**\n * X-component of bottom-right corner `(x2,y2)`.\n *\n * @member {number}\n */\n this.x2 = 1;\n\n /**\n * Y-component of bottom-right corner `(x2,y2)`.\n *\n * @member {number}\n */\n this.y2 = 1;\n\n /**\n * X-component of bottom-left corner `(x3,y3)`.\n *\n * @member {number}\n */\n this.x3 = 0;\n\n /**\n * Y-component of bottom-right corner `(x3,y3)`.\n *\n * @member {number}\n */\n this.y3 = 1;\n\n this.uvsFloat32 = new Float32Array(8);\n};\n\n/**\n * Sets the texture Uvs based on the given frame information.\n *\n * @protected\n * @param {PIXI.Rectangle} frame - The frame of the texture\n * @param {PIXI.Rectangle} baseFrame - The base frame of the texture\n * @param {number} rotate - Rotation of frame, see {@link PIXI.GroupD8}\n */\nTextureUvs.prototype.set = function set (frame, baseFrame, rotate)\n{\n var tw = baseFrame.width;\n var th = baseFrame.height;\n\n if (rotate)\n {\n // width and height div 2 div baseFrame size\n var w2 = frame.width / 2 / tw;\n var h2 = frame.height / 2 / th;\n\n // coordinates of center\n var cX = (frame.x / tw) + w2;\n var cY = (frame.y / th) + h2;\n\n rotate = GroupD8.add(rotate, GroupD8.NW); // NW is top-left corner\n this.x0 = cX + (w2 * GroupD8.uX(rotate));\n this.y0 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2); // rotate 90 degrees clockwise\n this.x1 = cX + (w2 * GroupD8.uX(rotate));\n this.y1 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2);\n this.x2 = cX + (w2 * GroupD8.uX(rotate));\n this.y2 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2);\n this.x3 = cX + (w2 * GroupD8.uX(rotate));\n this.y3 = cY + (h2 * GroupD8.uY(rotate));\n }\n else\n {\n this.x0 = frame.x / tw;\n this.y0 = frame.y / th;\n\n this.x1 = (frame.x + frame.width) / tw;\n this.y1 = frame.y / th;\n\n this.x2 = (frame.x + frame.width) / tw;\n this.y2 = (frame.y + frame.height) / th;\n\n this.x3 = frame.x / tw;\n this.y3 = (frame.y + frame.height) / th;\n }\n\n this.uvsFloat32[0] = this.x0;\n this.uvsFloat32[1] = this.y0;\n this.uvsFloat32[2] = this.x1;\n this.uvsFloat32[3] = this.y1;\n this.uvsFloat32[4] = this.x2;\n this.uvsFloat32[5] = this.y2;\n this.uvsFloat32[6] = this.x3;\n this.uvsFloat32[7] = this.y3;\n};\n\nvar DEFAULT_UVS = new TextureUvs();\n\n/**\n * A texture stores the information that represents an image or part of an image.\n *\n * It cannot be added to the display list directly; instead use it as the texture for a Sprite.\n * If no frame is provided for a texture, then the whole image is used.\n *\n * You can directly create a texture from an image and then reuse it multiple times like this :\n *\n * ```js\n * let texture = PIXI.Texture.from('assets/image.png');\n * let sprite1 = new PIXI.Sprite(texture);\n * let sprite2 = new PIXI.Sprite(texture);\n * ```\n *\n * If you didnt pass the texture frame to constructor, it enables `noFrame` mode:\n * it subscribes on baseTexture events, it automatically resizes at the same time as baseTexture.\n *\n * Textures made from SVGs, loaded or not, cannot be used before the file finishes processing.\n * You can check for this by checking the sprite's _textureID property.\n * ```js\n * var texture = PIXI.Texture.from('assets/image.svg');\n * var sprite1 = new PIXI.Sprite(texture);\n * //sprite1._textureID should not be undefined if the texture has finished processing the SVG file\n * ```\n * You can use a ticker or rAF to ensure your sprites load the finished textures after processing. See issue #3068.\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar Texture = /*@__PURE__*/(function (EventEmitter) {\n function Texture(baseTexture, frame, orig, trim, rotate, anchor)\n {\n EventEmitter.call(this);\n\n /**\n * Does this Texture have any frame data assigned to it?\n *\n * This mode is enabled automatically if no frame was passed inside constructor.\n *\n * In this mode texture is subscribed to baseTexture events, and fires `update` on any change.\n *\n * Beware, after loading or resize of baseTexture event can fired two times!\n * If you want more control, subscribe on baseTexture itself.\n *\n * ```js\n * texture.on('update', () => {});\n * ```\n *\n * Any assignment of `frame` switches off `noFrame` mode.\n *\n * @member {boolean}\n */\n this.noFrame = false;\n\n if (!frame)\n {\n this.noFrame = true;\n frame = new Rectangle(0, 0, 1, 1);\n }\n\n if (baseTexture instanceof Texture)\n {\n baseTexture = baseTexture.baseTexture;\n }\n\n /**\n * The base texture that this texture uses.\n *\n * @member {PIXI.BaseTexture}\n */\n this.baseTexture = baseTexture;\n\n /**\n * This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering,\n * irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases)\n *\n * @member {PIXI.Rectangle}\n */\n this._frame = frame;\n\n /**\n * This is the trimmed area of original texture, before it was put in atlas\n * Please call `updateUvs()` after you change coordinates of `trim` manually.\n *\n * @member {PIXI.Rectangle}\n */\n this.trim = trim;\n\n /**\n * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered.\n *\n * @member {boolean}\n */\n this.valid = false;\n\n /**\n * This will let a renderer know that a texture has been updated (used mainly for WebGL uv updates)\n *\n * @member {boolean}\n */\n this.requiresUpdate = false;\n\n /**\n * The WebGL UV data cache. Can be used as quad UV\n *\n * @member {PIXI.TextureUvs}\n * @protected\n */\n this._uvs = DEFAULT_UVS;\n\n /**\n * Default TextureMatrix instance for this texture\n * By default that object is not created because its heavy\n *\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = null;\n\n /**\n * This is the area of original texture, before it was put in atlas\n *\n * @member {PIXI.Rectangle}\n */\n this.orig = orig || frame;// new Rectangle(0, 0, 1, 1);\n\n this._rotate = Number(rotate || 0);\n\n if (rotate === true)\n {\n // this is old texturepacker legacy, some games/libraries are passing \"true\" for rotated textures\n this._rotate = 2;\n }\n else if (this._rotate % 2 !== 0)\n {\n throw new Error('attempt to use diamond-shaped UVs. If you are sure, set rotation manually');\n }\n\n /**\n * Anchor point that is used as default if sprite is created with this texture.\n * Changing the `defaultAnchor` at a later point of time will not update Sprite's anchor point.\n * @member {PIXI.Point}\n * @default {0,0}\n */\n this.defaultAnchor = anchor ? new Point(anchor.x, anchor.y) : new Point(0, 0);\n\n /**\n * Update ID is observed by sprites and TextureMatrix instances.\n * Call updateUvs() to increment it.\n *\n * @member {number}\n * @protected\n */\n\n this._updateID = 0;\n\n /**\n * The ids under which this Texture has been added to the texture cache. This is\n * automatically set as long as Texture.addToCache is used, but may not be set if a\n * Texture is added directly to the TextureCache array.\n *\n * @member {string[]}\n */\n this.textureCacheIds = [];\n\n if (!baseTexture.valid)\n {\n baseTexture.once('loaded', this.onBaseTextureUpdated, this);\n }\n else if (this.noFrame)\n {\n // if there is no frame we should monitor for any base texture changes..\n if (baseTexture.valid)\n {\n this.onBaseTextureUpdated(baseTexture);\n }\n }\n else\n {\n this.frame = frame;\n }\n\n if (this.noFrame)\n {\n baseTexture.on('update', this.onBaseTextureUpdated, this);\n }\n }\n\n if ( EventEmitter ) Texture.__proto__ = EventEmitter;\n Texture.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n Texture.prototype.constructor = Texture;\n\n var prototypeAccessors = { resolution: { configurable: true },frame: { configurable: true },rotate: { configurable: true },width: { configurable: true },height: { configurable: true } };\n\n /**\n * Updates this texture on the gpu.\n *\n * Calls the TextureResource update.\n *\n * If you adjusted `frame` manually, please call `updateUvs()` instead.\n *\n */\n Texture.prototype.update = function update ()\n {\n if (this.baseTexture.resource)\n {\n this.baseTexture.resource.update();\n }\n };\n\n /**\n * Called when the base texture is updated\n *\n * @protected\n * @param {PIXI.BaseTexture} baseTexture - The base texture.\n */\n Texture.prototype.onBaseTextureUpdated = function onBaseTextureUpdated (baseTexture)\n {\n if (this.noFrame)\n {\n if (!this.baseTexture.valid)\n {\n return;\n }\n\n this._frame.width = baseTexture.width;\n this._frame.height = baseTexture.height;\n this.valid = true;\n this.updateUvs();\n }\n else\n {\n // TODO this code looks confusing.. boo to abusing getters and setters!\n // if user gave us frame that has bigger size than resized texture it can be a problem\n this.frame = this._frame;\n }\n\n this.emit('update', this);\n };\n\n /**\n * Destroys this texture\n *\n * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well\n */\n Texture.prototype.destroy = function destroy (destroyBase)\n {\n if (this.baseTexture)\n {\n if (destroyBase)\n {\n var ref = this.baseTexture;\n var resource = ref.resource;\n\n // delete the texture if it exists in the texture cache..\n // this only needs to be removed if the base texture is actually destroyed too..\n if (resource && TextureCache[resource.url])\n {\n Texture.removeFromCache(resource.url);\n }\n\n this.baseTexture.destroy();\n }\n\n this.baseTexture.off('update', this.onBaseTextureUpdated, this);\n\n this.baseTexture = null;\n }\n\n this._frame = null;\n this._uvs = null;\n this.trim = null;\n this.orig = null;\n\n this.valid = false;\n\n Texture.removeFromCache(this);\n this.textureCacheIds = null;\n };\n\n /**\n * Creates a new texture object that acts the same as this one.\n *\n * @return {PIXI.Texture} The new texture\n */\n Texture.prototype.clone = function clone ()\n {\n return new Texture(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor);\n };\n\n /**\n * Updates the internal WebGL UV cache. Use it after you change `frame` or `trim` of the texture.\n * Call it after changing the frame\n */\n Texture.prototype.updateUvs = function updateUvs ()\n {\n if (this._uvs === DEFAULT_UVS)\n {\n this._uvs = new TextureUvs();\n }\n\n this._uvs.set(this._frame, this.baseTexture, this.rotate);\n\n this._updateID++;\n };\n\n /**\n * Helper function that creates a new Texture based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|PIXI.BaseTexture} source\n * Source to create texture from\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Texture} The newly created texture\n */\n Texture.from = function from (source, options)\n {\n if ( options === void 0 ) options = {};\n\n var cacheId = null;\n\n if (typeof source === 'string')\n {\n cacheId = source;\n }\n else\n {\n if (!source._pixiId)\n {\n source._pixiId = \"pixiid_\" + (uid());\n }\n\n cacheId = source._pixiId;\n }\n\n var texture = TextureCache[cacheId];\n\n if (!texture)\n {\n if (!options.resolution)\n {\n options.resolution = getResolutionOfUrl(source);\n }\n\n texture = new Texture(new BaseTexture(source, options));\n texture.baseTexture.cacheId = cacheId;\n\n BaseTexture.addToCache(texture.baseTexture, cacheId);\n Texture.addToCache(texture, cacheId);\n }\n\n // lets assume its a base texture!\n return texture;\n };\n\n /**\n * Create a new Texture with a BufferResource from a Float32Array.\n * RGBA values are floats from 0 to 1.\n * @static\n * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data\n * is provided, a new Float32Array is created.\n * @param {number} width - Width of the resource\n * @param {number} height - Height of the resource\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Texture} The resulting new BaseTexture\n */\n Texture.fromBuffer = function fromBuffer (buffer, width, height, options)\n {\n return new Texture(BaseTexture.fromBuffer(buffer, width, height, options));\n };\n\n /**\n * Create a texture from a source and add to the cache.\n *\n * @static\n * @param {HTMLImageElement|HTMLCanvasElement} source - The input source.\n * @param {String} imageUrl - File name of texture, for cache and resolving resolution.\n * @param {String} [name] - Human readable name for the texture cache. If no name is\n * specified, only `imageUrl` will be used as the cache ID.\n * @return {PIXI.Texture} Output texture\n */\n Texture.fromLoader = function fromLoader (source, imageUrl, name)\n {\n var resource = new ImageResource(source);\n\n resource.url = imageUrl;\n\n var baseTexture = new BaseTexture(resource, {\n scaleMode: settings.SCALE_MODE,\n resolution: getResolutionOfUrl(imageUrl),\n });\n\n var texture = new Texture(baseTexture);\n\n // No name, use imageUrl instead\n if (!name)\n {\n name = imageUrl;\n }\n\n // lets also add the frame to pixi's global cache for 'fromLoader' function\n BaseTexture.addToCache(texture.baseTexture, name);\n Texture.addToCache(texture, name);\n\n // also add references by url if they are different.\n if (name !== imageUrl)\n {\n BaseTexture.addToCache(texture.baseTexture, imageUrl);\n Texture.addToCache(texture, imageUrl);\n }\n\n return texture;\n };\n\n /**\n * Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object.\n *\n * @static\n * @param {PIXI.Texture} texture - The Texture to add to the cache.\n * @param {string} id - The id that the Texture will be stored against.\n */\n Texture.addToCache = function addToCache (texture, id)\n {\n if (id)\n {\n if (texture.textureCacheIds.indexOf(id) === -1)\n {\n texture.textureCacheIds.push(id);\n }\n\n if (TextureCache[id])\n {\n // eslint-disable-next-line no-console\n console.warn((\"Texture added to the cache with an id [\" + id + \"] that already had an entry\"));\n }\n\n TextureCache[id] = texture;\n }\n };\n\n /**\n * Remove a Texture from the global TextureCache.\n *\n * @static\n * @param {string|PIXI.Texture} texture - id of a Texture to be removed, or a Texture instance itself\n * @return {PIXI.Texture|null} The Texture that was removed\n */\n Texture.removeFromCache = function removeFromCache (texture)\n {\n if (typeof texture === 'string')\n {\n var textureFromCache = TextureCache[texture];\n\n if (textureFromCache)\n {\n var index = textureFromCache.textureCacheIds.indexOf(texture);\n\n if (index > -1)\n {\n textureFromCache.textureCacheIds.splice(index, 1);\n }\n\n delete TextureCache[texture];\n\n return textureFromCache;\n }\n }\n else if (texture && texture.textureCacheIds)\n {\n for (var i = 0; i < texture.textureCacheIds.length; ++i)\n {\n // Check that texture matches the one being passed in before deleting it from the cache.\n if (TextureCache[texture.textureCacheIds[i]] === texture)\n {\n delete TextureCache[texture.textureCacheIds[i]];\n }\n }\n\n texture.textureCacheIds.length = 0;\n\n return texture;\n }\n\n return null;\n };\n\n /**\n * Returns resolution of baseTexture\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.resolution.get = function ()\n {\n return this.baseTexture.resolution;\n };\n\n /**\n * The frame specifies the region of the base texture that this texture uses.\n * Please call `updateUvs()` after you change coordinates of `frame` manually.\n *\n * @member {PIXI.Rectangle}\n */\n prototypeAccessors.frame.get = function ()\n {\n return this._frame;\n };\n\n prototypeAccessors.frame.set = function (frame) // eslint-disable-line require-jsdoc\n {\n this._frame = frame;\n\n this.noFrame = false;\n\n var x = frame.x;\n var y = frame.y;\n var width = frame.width;\n var height = frame.height;\n var xNotFit = x + width > this.baseTexture.width;\n var yNotFit = y + height > this.baseTexture.height;\n\n if (xNotFit || yNotFit)\n {\n var relationship = xNotFit && yNotFit ? 'and' : 'or';\n var errorX = \"X: \" + x + \" + \" + width + \" = \" + (x + width) + \" > \" + (this.baseTexture.width);\n var errorY = \"Y: \" + y + \" + \" + height + \" = \" + (y + height) + \" > \" + (this.baseTexture.height);\n\n throw new Error('Texture Error: frame does not fit inside the base Texture dimensions: '\n + errorX + \" \" + relationship + \" \" + errorY);\n }\n\n this.valid = width && height && this.baseTexture.valid;\n\n if (!this.trim && !this.rotate)\n {\n this.orig = frame;\n }\n\n if (this.valid)\n {\n this.updateUvs();\n }\n };\n\n /**\n * Indicates whether the texture is rotated inside the atlas\n * set to 2 to compensate for texture packer rotation\n * set to 6 to compensate for spine packer rotation\n * can be used to rotate or mirror sprites\n * See {@link PIXI.GroupD8} for explanation\n *\n * @member {number}\n */\n prototypeAccessors.rotate.get = function ()\n {\n return this._rotate;\n };\n\n prototypeAccessors.rotate.set = function (rotate) // eslint-disable-line require-jsdoc\n {\n this._rotate = rotate;\n if (this.valid)\n {\n this.updateUvs();\n }\n };\n\n /**\n * The width of the Texture in pixels.\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this.orig.width;\n };\n\n /**\n * The height of the Texture in pixels.\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this.orig.height;\n };\n\n Object.defineProperties( Texture.prototype, prototypeAccessors );\n\n return Texture;\n}(EventEmitter));\n\nfunction createWhiteTexture()\n{\n var canvas = document.createElement('canvas');\n\n canvas.width = 16;\n canvas.height = 16;\n\n var context = canvas.getContext('2d');\n\n context.fillStyle = 'white';\n context.fillRect(0, 0, 16, 16);\n\n return new Texture(new BaseTexture(new CanvasResource(canvas)));\n}\n\nfunction removeAllHandlers(tex)\n{\n tex.destroy = function _emptyDestroy() { /* empty */ };\n tex.on = function _emptyOn() { /* empty */ };\n tex.once = function _emptyOnce() { /* empty */ };\n tex.emit = function _emptyEmit() { /* empty */ };\n}\n\n/**\n * An empty texture, used often to not have to create multiple empty textures.\n * Can not be destroyed.\n *\n * @static\n * @constant\n * @member {PIXI.Texture}\n */\nTexture.EMPTY = new Texture(new BaseTexture());\nremoveAllHandlers(Texture.EMPTY);\nremoveAllHandlers(Texture.EMPTY.baseTexture);\n\n/**\n * A white texture of 16x16 size, used for graphics and other things\n * Can not be destroyed.\n *\n * @static\n * @constant\n * @member {PIXI.Texture}\n */\nTexture.WHITE = createWhiteTexture();\nremoveAllHandlers(Texture.WHITE);\nremoveAllHandlers(Texture.WHITE.baseTexture);\n\n/**\n * A RenderTexture is a special texture that allows any PixiJS display object to be rendered to it.\n *\n * __Hint__: All DisplayObjects (i.e. Sprites) that render to a RenderTexture should be preloaded\n * otherwise black rectangles will be drawn instead.\n *\n * __Hint-2__: The actual memory allocation will happen on first render.\n * You shouldn't create renderTextures each frame just to delete them after, try to reuse them.\n *\n * A RenderTexture takes a snapshot of any Display Object given to its render method. For example:\n *\n * ```js\n * let renderer = PIXI.autoDetectRenderer();\n * let renderTexture = PIXI.RenderTexture.create(800, 600);\n * let sprite = PIXI.Sprite.from(\"spinObj_01.png\");\n *\n * sprite.position.x = 800/2;\n * sprite.position.y = 600/2;\n * sprite.anchor.x = 0.5;\n * sprite.anchor.y = 0.5;\n *\n * renderer.render(sprite, renderTexture);\n * ```\n *\n * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0\n * you can clear the transform\n *\n * ```js\n *\n * sprite.setTransform()\n *\n * let renderTexture = new PIXI.RenderTexture.create(100, 100);\n *\n * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture\n * ```\n *\n * @class\n * @extends PIXI.Texture\n * @memberof PIXI\n */\nvar RenderTexture = /*@__PURE__*/(function (Texture) {\n function RenderTexture(baseRenderTexture, frame)\n {\n // support for legacy..\n var _legacyRenderer = null;\n\n if (!(baseRenderTexture instanceof BaseRenderTexture))\n {\n /* eslint-disable prefer-rest-params, no-console */\n var width = arguments[1];\n var height = arguments[2];\n var scaleMode = arguments[3];\n var resolution = arguments[4];\n\n // we have an old render texture..\n console.warn((\"Please use RenderTexture.create(\" + width + \", \" + height + \") instead of the ctor directly.\"));\n _legacyRenderer = arguments[0];\n /* eslint-enable prefer-rest-params, no-console */\n\n frame = null;\n baseRenderTexture = new BaseRenderTexture({\n width: width,\n height: height,\n scaleMode: scaleMode,\n resolution: resolution,\n });\n }\n\n /**\n * The base texture object that this texture uses\n *\n * @member {PIXI.BaseTexture}\n */\n Texture.call(this, baseRenderTexture, frame);\n\n this.legacyRenderer = _legacyRenderer;\n\n /**\n * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered.\n *\n * @member {boolean}\n */\n this.valid = true;\n\n /**\n * Stores `sourceFrame` when this texture is inside current filter stack.\n * You can read it inside filters.\n *\n * @readonly\n * @member {PIXI.Rectangle}\n */\n this.filterFrame = null;\n\n /**\n * The key for pooled texture of FilterSystem\n * @protected\n * @member {string}\n */\n this.filterPoolKey = null;\n\n this.updateUvs();\n }\n\n if ( Texture ) RenderTexture.__proto__ = Texture;\n RenderTexture.prototype = Object.create( Texture && Texture.prototype );\n RenderTexture.prototype.constructor = RenderTexture;\n\n /**\n * Resizes the RenderTexture.\n *\n * @param {number} width - The width to resize to.\n * @param {number} height - The height to resize to.\n * @param {boolean} [resizeBaseTexture=true] - Should the baseTexture.width and height values be resized as well?\n */\n RenderTexture.prototype.resize = function resize (width, height, resizeBaseTexture)\n {\n if ( resizeBaseTexture === void 0 ) resizeBaseTexture = true;\n\n width = Math.ceil(width);\n height = Math.ceil(height);\n\n // TODO - could be not required..\n this.valid = (width > 0 && height > 0);\n\n this._frame.width = this.orig.width = width;\n this._frame.height = this.orig.height = height;\n\n if (resizeBaseTexture)\n {\n this.baseTexture.resize(width, height);\n }\n\n this.updateUvs();\n };\n\n /**\n * Changes the resolution of baseTexture, but does not change framebuffer size.\n *\n * @param {number} resolution - The new resolution to apply to RenderTexture\n */\n RenderTexture.prototype.setResolution = function setResolution (resolution)\n {\n var ref = this;\n var baseTexture = ref.baseTexture;\n\n if (baseTexture.resolution === resolution)\n {\n return;\n }\n\n baseTexture.setResolution(resolution);\n this.resize(baseTexture.width, baseTexture.height, false);\n };\n\n /**\n * A short hand way of creating a render texture.\n *\n * @param {object} [options] - Options\n * @param {number} [options.width=100] - The width of the render texture\n * @param {number} [options.height=100] - The height of the render texture\n * @param {number} [options.scaleMode=PIXI.settings.SCALE_MODE] - See {@link PIXI.SCALE_MODES} for possible values\n * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the texture being generated\n * @return {PIXI.RenderTexture} The new render texture\n */\n RenderTexture.create = function create (options)\n {\n // fallback, old-style: create(width, height, scaleMode, resolution)\n if (typeof options === 'number')\n {\n /* eslint-disable prefer-rest-params */\n options = {\n width: options,\n height: arguments[1],\n scaleMode: arguments[2],\n resolution: arguments[3],\n };\n /* eslint-enable prefer-rest-params */\n }\n\n return new RenderTexture(new BaseRenderTexture(options));\n };\n\n return RenderTexture;\n}(Texture));\n\n/**\n * Experimental!\n *\n * Texture pool, used by FilterSystem and plugins\n * Stores collection of temporary pow2 or screen-sized renderTextures\n *\n * If you use custom RenderTexturePool for your filters, you can use methods\n * `getFilterTexture` and `returnFilterTexture` same as in\n *\n * @class\n * @memberof PIXI\n */\nvar RenderTexturePool = function RenderTexturePool(textureOptions)\n{\n this.texturePool = {};\n this.textureOptions = textureOptions || {};\n /**\n * Allow renderTextures of the same size as screen, not just pow2\n *\n * Automatically sets to true after `setScreenSize`\n *\n * @member {boolean}\n * @default false\n */\n this.enableFullScreen = false;\n\n this._pixelsWidth = 0;\n this._pixelsHeight = 0;\n};\n\n/**\n * creates of texture with params that were specified in pool constructor\n *\n * @param {number} realWidth width of texture in pixels\n * @param {number} realHeight height of texture in pixels\n * @returns {RenderTexture}\n */\nRenderTexturePool.prototype.createTexture = function createTexture (realWidth, realHeight)\n{\n var baseRenderTexture = new BaseRenderTexture(Object.assign({\n width: realWidth,\n height: realHeight,\n resolution: 1,\n }, this.textureOptions));\n\n return new RenderTexture(baseRenderTexture);\n};\n\n/**\n * Gets a Power-of-Two render texture or fullScreen texture\n *\n * @protected\n * @param {number} minWidth - The minimum width of the render texture in real pixels.\n * @param {number} minHeight - The minimum height of the render texture in real pixels.\n * @param {number} [resolution=1] - The resolution of the render texture.\n * @return {PIXI.RenderTexture} The new render texture.\n */\nRenderTexturePool.prototype.getOptimalTexture = function getOptimalTexture (minWidth, minHeight, resolution)\n{\n if ( resolution === void 0 ) resolution = 1;\n\n var key = RenderTexturePool.SCREEN_KEY;\n\n minWidth *= resolution;\n minHeight *= resolution;\n\n if (!this.enableFullScreen || minWidth !== this._pixelsWidth || minHeight !== this._pixelsHeight)\n {\n minWidth = nextPow2(minWidth);\n minHeight = nextPow2(minHeight);\n key = ((minWidth & 0xFFFF) << 16) | (minHeight & 0xFFFF);\n }\n\n if (!this.texturePool[key])\n {\n this.texturePool[key] = [];\n }\n\n var renderTexture = this.texturePool[key].pop();\n\n if (!renderTexture)\n {\n renderTexture = this.createTexture(minWidth, minHeight);\n }\n\n renderTexture.filterPoolKey = key;\n renderTexture.setResolution(resolution);\n\n return renderTexture;\n};\n\n/**\n * Gets extra texture of the same size as input renderTexture\n *\n * `getFilterTexture(input, 0.5)` or `getFilterTexture(0.5, input)`\n *\n * @param {PIXI.RenderTexture} input renderTexture from which size and resolution will be copied\n * @param {number} [resolution] override resolution of the renderTexture\n * It overrides, it does not multiply\n * @returns {PIXI.RenderTexture}\n */\nRenderTexturePool.prototype.getFilterTexture = function getFilterTexture (input, resolution)\n{\n var filterTexture = this.getOptimalTexture(input.width, input.height, resolution || input.resolution);\n\n filterTexture.filterFrame = input.filterFrame;\n\n return filterTexture;\n};\n\n/**\n * Place a render texture back into the pool.\n * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free\n */\nRenderTexturePool.prototype.returnTexture = function returnTexture (renderTexture)\n{\n var key = renderTexture.filterPoolKey;\n\n renderTexture.filterFrame = null;\n this.texturePool[key].push(renderTexture);\n};\n\n/**\n * Alias for returnTexture, to be compliant with FilterSystem interface\n * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free\n */\nRenderTexturePool.prototype.returnFilterTexture = function returnFilterTexture (renderTexture)\n{\n this.returnTexture(renderTexture);\n};\n\n/**\n * Clears the pool\n *\n * @param {boolean} [destroyTextures=true] destroy all stored textures\n */\nRenderTexturePool.prototype.clear = function clear (destroyTextures)\n{\n destroyTextures = destroyTextures !== false;\n if (destroyTextures)\n {\n for (var i in this.texturePool)\n {\n var textures = this.texturePool[i];\n\n if (textures)\n {\n for (var j = 0; j < textures.length; j++)\n {\n textures[j].destroy(true);\n }\n }\n }\n }\n\n this.texturePool = {};\n};\n\n/**\n * If screen size was changed, drops all screen-sized textures,\n * sets new screen size, sets `enableFullScreen` to true\n *\n * Size is measured in pixels, `renderer.view` can be passed here, not `renderer.screen`\n *\n * @param {PIXI.ISize} size - Initial size of screen\n */\nRenderTexturePool.prototype.setScreenSize = function setScreenSize (size)\n{\n if (size.width === this._pixelsWidth\n && size.height === this._pixelsHeight)\n {\n return;\n }\n\n var screenKey = RenderTexturePool.SCREEN_KEY;\n var textures = this.texturePool[screenKey];\n\n this.enableFullScreen = size.width > 0 && size.height > 0;\n\n if (textures)\n {\n for (var j = 0; j < textures.length; j++)\n {\n textures[j].destroy(true);\n }\n }\n this.texturePool[screenKey] = [];\n\n this._pixelsWidth = size.width;\n this._pixelsHeight = size.height;\n};\n\n/**\n * Key that is used to store fullscreen renderTextures in a pool\n *\n * @static\n * @const {string}\n */\nRenderTexturePool.SCREEN_KEY = 'screen';\n\n/* eslint-disable max-len */\n\n/**\n * Holds the information for a single attribute structure required to render geometry.\n *\n * This does not contain the actual data, but instead has a buffer id that maps to a {@link PIXI.Buffer}\n * This can include anything from positions, uvs, normals, colors etc.\n *\n * @class\n * @memberof PIXI\n */\nvar Attribute = function Attribute(buffer, size, normalized, type, stride, start, instance)\n{\n if ( normalized === void 0 ) normalized = false;\n if ( type === void 0 ) type = 5126;\n\n this.buffer = buffer;\n this.size = size;\n this.normalized = normalized;\n this.type = type;\n this.stride = stride;\n this.start = start;\n this.instance = instance;\n};\n\n/**\n * Destroys the Attribute.\n */\nAttribute.prototype.destroy = function destroy ()\n{\n this.buffer = null;\n};\n\n/**\n * Helper function that creates an Attribute based on the information provided\n *\n * @static\n * @param {string} buffer the id of the buffer that this attribute will look for\n * @param {Number} [size=2] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2\n * @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data)\n * @param {Number} [start=0] How far into the array to start reading values (used for interleaving data)\n * @param {Boolean} [normalized=false] should the data be normalized.\n *\n * @returns {PIXI.Attribute} A new {@link PIXI.Attribute} based on the information provided\n */\nAttribute.from = function from (buffer, size, normalized, type, stride)\n{\n return new Attribute(buffer, size, normalized, type, stride);\n};\n\nvar UID = 0;\n/* eslint-disable max-len */\n\n/**\n * A wrapper for data so that it can be used and uploaded by WebGL\n *\n * @class\n * @memberof PIXI\n */\nvar Buffer = function Buffer(data, _static, index)\n{\n if ( _static === void 0 ) _static = true;\n if ( index === void 0 ) index = false;\n\n /**\n * The data in the buffer, as a typed array\n *\n * @member {ArrayBuffer| SharedArrayBuffer|ArrayBufferView}\n */\n this.data = data || new Float32Array(1);\n\n /**\n * A map of renderer IDs to webgl buffer\n *\n * @private\n * @member {object}\n */\n this._glBuffers = {};\n\n this._updateID = 0;\n\n this.index = index;\n\n this.static = _static;\n\n this.id = UID++;\n\n this.disposeRunner = new Runner('disposeBuffer', 2);\n};\n\n// TODO could explore flagging only a partial upload?\n/**\n * flags this buffer as requiring an upload to the GPU\n * @param {ArrayBuffer|SharedArrayBuffer|ArrayBufferView} [data] the data to update in the buffer.\n */\nBuffer.prototype.update = function update (data)\n{\n this.data = data || this.data;\n this._updateID++;\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nBuffer.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\n/**\n * Destroys the buffer\n */\nBuffer.prototype.destroy = function destroy ()\n{\n this.dispose();\n\n this.data = null;\n};\n\n/**\n * Helper function that creates a buffer based on an array or TypedArray\n *\n * @static\n * @param {ArrayBufferView | number[]} data the TypedArray that the buffer will store. If this is a regular Array it will be converted to a Float32Array.\n * @return {PIXI.Buffer} A new Buffer based on the data provided.\n */\nBuffer.from = function from (data)\n{\n if (data instanceof Array)\n {\n data = new Float32Array(data);\n }\n\n return new Buffer(data);\n};\n\nfunction getBufferType(array)\n{\n if (array.BYTES_PER_ELEMENT === 4)\n {\n if (array instanceof Float32Array)\n {\n return 'Float32Array';\n }\n else if (array instanceof Uint32Array)\n {\n return 'Uint32Array';\n }\n\n return 'Int32Array';\n }\n else if (array.BYTES_PER_ELEMENT === 2)\n {\n if (array instanceof Uint16Array)\n {\n return 'Uint16Array';\n }\n }\n else if (array.BYTES_PER_ELEMENT === 1)\n {\n if (array instanceof Uint8Array)\n {\n return 'Uint8Array';\n }\n }\n\n // TODO map out the rest of the array elements!\n return null;\n}\n\n/* eslint-disable object-shorthand */\nvar map = {\n Float32Array: Float32Array,\n Uint32Array: Uint32Array,\n Int32Array: Int32Array,\n Uint8Array: Uint8Array,\n};\n\nfunction interleaveTypedArrays(arrays, sizes)\n{\n var outSize = 0;\n var stride = 0;\n var views = {};\n\n for (var i = 0; i < arrays.length; i++)\n {\n stride += sizes[i];\n outSize += arrays[i].length;\n }\n\n var buffer = new ArrayBuffer(outSize * 4);\n\n var out = null;\n var littleOffset = 0;\n\n for (var i$1 = 0; i$1 < arrays.length; i$1++)\n {\n var size = sizes[i$1];\n var array = arrays[i$1];\n\n var type = getBufferType(array);\n\n if (!views[type])\n {\n views[type] = new map[type](buffer);\n }\n\n out = views[type];\n\n for (var j = 0; j < array.length; j++)\n {\n var indexStart = ((j / size | 0) * stride) + littleOffset;\n var index = j % size;\n\n out[indexStart + index] = array[j];\n }\n\n littleOffset += size;\n }\n\n return new Float32Array(buffer);\n}\n\nvar byteSizeMap = { 5126: 4, 5123: 2, 5121: 1 };\nvar UID$1 = 0;\n\n/* eslint-disable object-shorthand */\nvar map$1 = {\n Float32Array: Float32Array,\n Uint32Array: Uint32Array,\n Int32Array: Int32Array,\n Uint8Array: Uint8Array,\n Uint16Array: Uint16Array,\n};\n\n/* eslint-disable max-len */\n\n/**\n * The Geometry represents a model. It consists of two components:\n * - GeometryStyle - The structure of the model such as the attributes layout\n * - GeometryData - the data of the model - this consists of buffers.\n * This can include anything from positions, uvs, normals, colors etc.\n *\n * Geometry can be defined without passing in a style or data if required (thats how I prefer!)\n *\n * ```js\n * let geometry = new PIXI.Geometry();\n *\n * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2);\n * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1],2)\n * geometry.addIndex([0,1,2,1,3,2])\n *\n * ```\n * @class\n * @memberof PIXI\n */\nvar Geometry = function Geometry(buffers, attributes)\n{\n if ( buffers === void 0 ) buffers = [];\n if ( attributes === void 0 ) attributes = {};\n\n this.buffers = buffers;\n\n this.indexBuffer = null;\n\n this.attributes = attributes;\n\n /**\n * A map of renderer IDs to webgl VAOs\n *\n * @protected\n * @type {object}\n */\n this.glVertexArrayObjects = {};\n\n this.id = UID$1++;\n\n this.instanced = false;\n\n /**\n * Number of instances in this geometry, pass it to `GeometrySystem.draw()`\n * @member {number}\n * @default 1\n */\n this.instanceCount = 1;\n\n this.disposeRunner = new Runner('disposeGeometry', 2);\n\n /**\n * Count of existing (not destroyed) meshes that reference this geometry\n * @member {number}\n */\n this.refCount = 0;\n};\n\n/**\n*\n* Adds an attribute to the geometry\n*\n* @param {String} id - the name of the attribute (matching up to a shader)\n* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it.\n* @param {Number} [size=0] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2\n* @param {Boolean} [normalized=false] should the data be normalized.\n* @param {Number} [type=PIXI.TYPES.FLOAT] what type of number is the attribute. Check {PIXI.TYPES} to see the ones available\n* @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data)\n* @param {Number} [start=0] How far into the array to start reading values (used for interleaving data)\n*\n* @return {PIXI.Geometry} returns self, useful for chaining.\n*/\nGeometry.prototype.addAttribute = function addAttribute (id, buffer, size, normalized, type, stride, start, instance)\n{\n if ( normalized === void 0 ) normalized = false;\n if ( instance === void 0 ) instance = false;\n\n if (!buffer)\n {\n throw new Error('You must pass a buffer when creating an attribute');\n }\n\n // check if this is a buffer!\n if (!buffer.data)\n {\n // its an array!\n if (buffer instanceof Array)\n {\n buffer = new Float32Array(buffer);\n }\n\n buffer = new Buffer(buffer);\n }\n\n var ids = id.split('|');\n\n if (ids.length > 1)\n {\n for (var i = 0; i < ids.length; i++)\n {\n this.addAttribute(ids[i], buffer, size, normalized, type);\n }\n\n return this;\n }\n\n var bufferIndex = this.buffers.indexOf(buffer);\n\n if (bufferIndex === -1)\n {\n this.buffers.push(buffer);\n bufferIndex = this.buffers.length - 1;\n }\n\n this.attributes[id] = new Attribute(bufferIndex, size, normalized, type, stride, start, instance);\n\n // assuming that if there is instanced data then this will be drawn with instancing!\n this.instanced = this.instanced || instance;\n\n return this;\n};\n\n/**\n * returns the requested attribute\n *\n * @param {String} id the name of the attribute required\n * @return {PIXI.Attribute} the attribute requested.\n */\nGeometry.prototype.getAttribute = function getAttribute (id)\n{\n return this.attributes[id];\n};\n\n/**\n * returns the requested buffer\n *\n * @param {String} id the name of the buffer required\n * @return {PIXI.Buffer} the buffer requested.\n */\nGeometry.prototype.getBuffer = function getBuffer (id)\n{\n return this.buffers[this.getAttribute(id).buffer];\n};\n\n/**\n*\n* Adds an index buffer to the geometry\n* The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer.\n*\n* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it.\n* @return {PIXI.Geometry} returns self, useful for chaining.\n*/\nGeometry.prototype.addIndex = function addIndex (buffer)\n{\n if (!buffer.data)\n {\n // its an array!\n if (buffer instanceof Array)\n {\n buffer = new Uint16Array(buffer);\n }\n\n buffer = new Buffer(buffer);\n }\n\n buffer.index = true;\n this.indexBuffer = buffer;\n\n if (this.buffers.indexOf(buffer) === -1)\n {\n this.buffers.push(buffer);\n }\n\n return this;\n};\n\n/**\n * returns the index buffer\n *\n * @return {PIXI.Buffer} the index buffer.\n */\nGeometry.prototype.getIndex = function getIndex ()\n{\n return this.indexBuffer;\n};\n\n/**\n * this function modifies the structure so that all current attributes become interleaved into a single buffer\n * This can be useful if your model remains static as it offers a little performance boost\n *\n * @return {PIXI.Geometry} returns self, useful for chaining.\n */\nGeometry.prototype.interleave = function interleave ()\n{\n // a simple check to see if buffers are already interleaved..\n if (this.buffers.length === 1 || (this.buffers.length === 2 && this.indexBuffer)) { return this; }\n\n // assume already that no buffers are interleaved\n var arrays = [];\n var sizes = [];\n var interleavedBuffer = new Buffer();\n var i;\n\n for (i in this.attributes)\n {\n var attribute = this.attributes[i];\n\n var buffer = this.buffers[attribute.buffer];\n\n arrays.push(buffer.data);\n\n sizes.push((attribute.size * byteSizeMap[attribute.type]) / 4);\n\n attribute.buffer = 0;\n }\n\n interleavedBuffer.data = interleaveTypedArrays(arrays, sizes);\n\n for (i = 0; i < this.buffers.length; i++)\n {\n if (this.buffers[i] !== this.indexBuffer)\n {\n this.buffers[i].destroy();\n }\n }\n\n this.buffers = [interleavedBuffer];\n\n if (this.indexBuffer)\n {\n this.buffers.push(this.indexBuffer);\n }\n\n return this;\n};\n\nGeometry.prototype.getSize = function getSize ()\n{\n for (var i in this.attributes)\n {\n var attribute = this.attributes[i];\n var buffer = this.buffers[attribute.buffer];\n\n return buffer.data.length / ((attribute.stride / 4) || attribute.size);\n }\n\n return 0;\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nGeometry.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\n/**\n * Destroys the geometry.\n */\nGeometry.prototype.destroy = function destroy ()\n{\n this.dispose();\n\n this.buffers = null;\n this.indexBuffer.destroy();\n\n this.attributes = null;\n};\n\n/**\n * returns a clone of the geometry\n *\n * @returns {PIXI.Geometry} a new clone of this geometry\n */\nGeometry.prototype.clone = function clone ()\n{\n var geometry = new Geometry();\n\n for (var i = 0; i < this.buffers.length; i++)\n {\n geometry.buffers[i] = new Buffer(this.buffers[i].data.slice());\n }\n\n for (var i$1 in this.attributes)\n {\n var attrib = this.attributes[i$1];\n\n geometry.attributes[i$1] = new Attribute(\n attrib.buffer,\n attrib.size,\n attrib.normalized,\n attrib.type,\n attrib.stride,\n attrib.start,\n attrib.instance\n );\n }\n\n if (this.indexBuffer)\n {\n geometry.indexBuffer = geometry.buffers[this.buffers.indexOf(this.indexBuffer)];\n geometry.indexBuffer.index = true;\n }\n\n return geometry;\n};\n\n/**\n * merges an array of geometries into a new single one\n * geometry attribute styles must match for this operation to work\n *\n * @param {PIXI.Geometry[]} geometries array of geometries to merge\n * @returns {PIXI.Geometry} shiny new geometry!\n */\nGeometry.merge = function merge (geometries)\n{\n // todo add a geometry check!\n // also a size check.. cant be too big!]\n\n var geometryOut = new Geometry();\n\n var arrays = [];\n var sizes = [];\n var offsets = [];\n\n var geometry;\n\n // pass one.. get sizes..\n for (var i = 0; i < geometries.length; i++)\n {\n geometry = geometries[i];\n\n for (var j = 0; j < geometry.buffers.length; j++)\n {\n sizes[j] = sizes[j] || 0;\n sizes[j] += geometry.buffers[j].data.length;\n offsets[j] = 0;\n }\n }\n\n // build the correct size arrays..\n for (var i$1 = 0; i$1 < geometry.buffers.length; i$1++)\n {\n // TODO types!\n arrays[i$1] = new map$1[getBufferType(geometry.buffers[i$1].data)](sizes[i$1]);\n geometryOut.buffers[i$1] = new Buffer(arrays[i$1]);\n }\n\n // pass to set data..\n for (var i$2 = 0; i$2 < geometries.length; i$2++)\n {\n geometry = geometries[i$2];\n\n for (var j$1 = 0; j$1 < geometry.buffers.length; j$1++)\n {\n arrays[j$1].set(geometry.buffers[j$1].data, offsets[j$1]);\n offsets[j$1] += geometry.buffers[j$1].data.length;\n }\n }\n\n geometryOut.attributes = geometry.attributes;\n\n if (geometry.indexBuffer)\n {\n geometryOut.indexBuffer = geometryOut.buffers[geometry.buffers.indexOf(geometry.indexBuffer)];\n geometryOut.indexBuffer.index = true;\n\n var offset = 0;\n var stride = 0;\n var offset2 = 0;\n var bufferIndexToCount = 0;\n\n // get a buffer\n for (var i$3 = 0; i$3 < geometry.buffers.length; i$3++)\n {\n if (geometry.buffers[i$3] !== geometry.indexBuffer)\n {\n bufferIndexToCount = i$3;\n break;\n }\n }\n\n // figure out the stride of one buffer..\n for (var i$4 in geometry.attributes)\n {\n var attribute = geometry.attributes[i$4];\n\n if ((attribute.buffer | 0) === bufferIndexToCount)\n {\n stride += ((attribute.size * byteSizeMap[attribute.type]) / 4);\n }\n }\n\n // time to off set all indexes..\n for (var i$5 = 0; i$5 < geometries.length; i$5++)\n {\n var indexBufferData = geometries[i$5].indexBuffer.data;\n\n for (var j$2 = 0; j$2 < indexBufferData.length; j$2++)\n {\n geometryOut.indexBuffer.data[j$2 + offset2] += offset;\n }\n\n offset += geometry.buffers[bufferIndexToCount].data.length / (stride);\n offset2 += indexBufferData.length;\n }\n }\n\n return geometryOut;\n};\n\n/**\n * Helper class to create a quad\n *\n * @class\n * @memberof PIXI\n */\nvar Quad = /*@__PURE__*/(function (Geometry) {\n function Quad()\n {\n Geometry.call(this);\n\n this.addAttribute('aVertexPosition', [\n 0, 0,\n 1, 0,\n 1, 1,\n 0, 1 ])\n .addIndex([0, 1, 3, 2]);\n }\n\n if ( Geometry ) Quad.__proto__ = Geometry;\n Quad.prototype = Object.create( Geometry && Geometry.prototype );\n Quad.prototype.constructor = Quad;\n\n return Quad;\n}(Geometry));\n\n/**\n * Helper class to create a quad with uvs like in v4\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.Geometry\n */\nvar QuadUv = /*@__PURE__*/(function (Geometry) {\n function QuadUv()\n {\n Geometry.call(this);\n\n /**\n * An array of vertices\n *\n * @member {Float32Array}\n */\n this.vertices = new Float32Array([\n -1, -1,\n 1, -1,\n 1, 1,\n -1, 1 ]);\n\n /**\n * The Uvs of the quad\n *\n * @member {Float32Array}\n */\n this.uvs = new Float32Array([\n 0, 0,\n 1, 0,\n 1, 1,\n 0, 1 ]);\n\n this.vertexBuffer = new Buffer(this.vertices);\n this.uvBuffer = new Buffer(this.uvs);\n\n this.addAttribute('aVertexPosition', this.vertexBuffer)\n .addAttribute('aTextureCoord', this.uvBuffer)\n .addIndex([0, 1, 2, 0, 2, 3]);\n }\n\n if ( Geometry ) QuadUv.__proto__ = Geometry;\n QuadUv.prototype = Object.create( Geometry && Geometry.prototype );\n QuadUv.prototype.constructor = QuadUv;\n\n /**\n * Maps two Rectangle to the quad.\n *\n * @param {PIXI.Rectangle} targetTextureFrame - the first rectangle\n * @param {PIXI.Rectangle} destinationFrame - the second rectangle\n * @return {PIXI.Quad} Returns itself.\n */\n QuadUv.prototype.map = function map (targetTextureFrame, destinationFrame)\n {\n var x = 0; // destinationFrame.x / targetTextureFrame.width;\n var y = 0; // destinationFrame.y / targetTextureFrame.height;\n\n this.uvs[0] = x;\n this.uvs[1] = y;\n\n this.uvs[2] = x + (destinationFrame.width / targetTextureFrame.width);\n this.uvs[3] = y;\n\n this.uvs[4] = x + (destinationFrame.width / targetTextureFrame.width);\n this.uvs[5] = y + (destinationFrame.height / targetTextureFrame.height);\n\n this.uvs[6] = x;\n this.uvs[7] = y + (destinationFrame.height / targetTextureFrame.height);\n\n x = destinationFrame.x;\n y = destinationFrame.y;\n\n this.vertices[0] = x;\n this.vertices[1] = y;\n\n this.vertices[2] = x + destinationFrame.width;\n this.vertices[3] = y;\n\n this.vertices[4] = x + destinationFrame.width;\n this.vertices[5] = y + destinationFrame.height;\n\n this.vertices[6] = x;\n this.vertices[7] = y + destinationFrame.height;\n\n this.invalidate();\n\n return this;\n };\n\n /**\n * legacy upload method, just marks buffers dirty\n * @returns {PIXI.QuadUv} Returns itself.\n */\n QuadUv.prototype.invalidate = function invalidate ()\n {\n this.vertexBuffer._updateID++;\n this.uvBuffer._updateID++;\n\n return this;\n };\n\n return QuadUv;\n}(Geometry));\n\nvar UID$2 = 0;\n\n/**\n * Uniform group holds uniform map and some ID's for work\n *\n * @class\n * @memberof PIXI\n */\nvar UniformGroup = function UniformGroup(uniforms, _static)\n{\n /**\n * uniform values\n * @member {object}\n * @readonly\n */\n this.uniforms = uniforms;\n\n /**\n * Its a group and not a single uniforms\n * @member {boolean}\n * @readonly\n * @default true\n */\n this.group = true;\n\n // lets generate this when the shader ?\n this.syncUniforms = {};\n\n /**\n * dirty version\n * @protected\n * @member {number}\n */\n this.dirtyId = 0;\n\n /**\n * unique id\n * @protected\n * @member {number}\n */\n this.id = UID$2++;\n\n /**\n * Uniforms wont be changed after creation\n * @member {boolean}\n */\n this.static = !!_static;\n};\n\nUniformGroup.prototype.update = function update ()\n{\n this.dirtyId++;\n};\n\nUniformGroup.prototype.add = function add (name, uniforms, _static)\n{\n this.uniforms[name] = new UniformGroup(uniforms, _static);\n};\n\nUniformGroup.from = function from (uniforms, _static)\n{\n return new UniformGroup(uniforms, _static);\n};\n\n/**\n * System plugin to the renderer to manage filter states.\n *\n * @class\n * @private\n */\nvar FilterState = function FilterState()\n{\n this.renderTexture = null;\n\n /**\n * Target of the filters\n * We store for case when custom filter wants to know the element it was applied on\n * @member {PIXI.DisplayObject}\n * @private\n */\n this.target = null;\n\n /**\n * Compatibility with PixiJS v4 filters\n * @member {boolean}\n * @default false\n * @private\n */\n this.legacy = false;\n\n /**\n * Resolution of filters\n * @member {number}\n * @default 1\n * @private\n */\n this.resolution = 1;\n\n // next three fields are created only for root\n // re-assigned for everything else\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @private\n */\n this.sourceFrame = new Rectangle();\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @private\n */\n this.destinationFrame = new Rectangle();\n\n /**\n * Collection of filters\n * @member {PIXI.Filter[]}\n * @private\n */\n this.filters = [];\n};\n\n/**\n * clears the state\n * @private\n */\nFilterState.prototype.clear = function clear ()\n{\n this.target = null;\n this.filters = null;\n this.renderTexture = null;\n};\n\n/**\n * System plugin to the renderer to manage the filters.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar FilterSystem = /*@__PURE__*/(function (System) {\n function FilterSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * List of filters for the FilterSystem\n * @member {Object[]}\n * @readonly\n */\n this.defaultFilterStack = [{}];\n\n /**\n * stores a bunch of PO2 textures used for filtering\n * @member {Object}\n */\n this.texturePool = new RenderTexturePool();\n\n this.texturePool.setScreenSize(renderer.view);\n\n /**\n * a pool for storing filter states, save us creating new ones each tick\n * @member {Object[]}\n */\n this.statePool = [];\n\n /**\n * A very simple geometry used when drawing a filter effect to the screen\n * @member {PIXI.Quad}\n */\n this.quad = new Quad();\n\n /**\n * Quad UVs\n * @member {PIXI.QuadUv}\n */\n this.quadUv = new QuadUv();\n\n /**\n * Temporary rect for maths\n * @type {PIXI.Rectangle}\n */\n this.tempRect = new Rectangle();\n\n /**\n * Active state\n * @member {object}\n */\n this.activeState = {};\n\n /**\n * This uniform group is attached to filter uniforms when used\n * @member {PIXI.UniformGroup}\n * @property {PIXI.Rectangle} outputFrame\n * @property {Float32Array} inputSize\n * @property {Float32Array} inputPixel\n * @property {Float32Array} inputClamp\n * @property {Number} resolution\n * @property {Float32Array} filterArea\n * @property {Fload32Array} filterClamp\n */\n this.globalUniforms = new UniformGroup({\n outputFrame: this.tempRect,\n inputSize: new Float32Array(4),\n inputPixel: new Float32Array(4),\n inputClamp: new Float32Array(4),\n resolution: 1,\n\n // legacy variables\n filterArea: new Float32Array(4),\n filterClamp: new Float32Array(4),\n }, true);\n\n this._pixelsWidth = renderer.view.width;\n this._pixelsHeight = renderer.view.height;\n }\n\n if ( System ) FilterSystem.__proto__ = System;\n FilterSystem.prototype = Object.create( System && System.prototype );\n FilterSystem.prototype.constructor = FilterSystem;\n\n /**\n * Adds a new filter to the System.\n *\n * @param {PIXI.DisplayObject} target - The target of the filter to render.\n * @param {PIXI.Filter[]} filters - The filters to apply.\n */\n FilterSystem.prototype.push = function push (target, filters)\n {\n var renderer = this.renderer;\n var filterStack = this.defaultFilterStack;\n var state = this.statePool.pop() || new FilterState();\n\n var resolution = filters[0].resolution;\n var padding = filters[0].padding;\n var autoFit = filters[0].autoFit;\n var legacy = filters[0].legacy;\n\n for (var i = 1; i < filters.length; i++)\n {\n var filter = filters[i];\n\n // lets use the lowest resolution..\n resolution = Math.min(resolution, filter.resolution);\n // and the largest amount of padding!\n padding = Math.max(padding, filter.padding);\n // only auto fit if all filters are autofit\n autoFit = autoFit || filter.autoFit;\n\n legacy = legacy || filter.legacy;\n }\n\n if (filterStack.length === 1)\n {\n this.defaultFilterStack[0].renderTexture = renderer.renderTexture.current;\n }\n\n filterStack.push(state);\n\n state.resolution = resolution;\n\n state.legacy = legacy;\n\n state.target = target;\n\n state.sourceFrame.copyFrom(target.filterArea || target.getBounds(true));\n\n state.sourceFrame.pad(padding);\n if (autoFit)\n {\n state.sourceFrame.fit(this.renderer.renderTexture.sourceFrame);\n }\n\n // round to whole number based on resolution\n state.sourceFrame.ceil(resolution);\n\n state.renderTexture = this.getOptimalFilterTexture(state.sourceFrame.width, state.sourceFrame.height, resolution);\n state.filters = filters;\n\n state.destinationFrame.width = state.renderTexture.width;\n state.destinationFrame.height = state.renderTexture.height;\n\n state.renderTexture.filterFrame = state.sourceFrame;\n\n renderer.renderTexture.bind(state.renderTexture, state.sourceFrame);// /, state.destinationFrame);\n renderer.renderTexture.clear();\n };\n\n /**\n * Pops off the filter and applies it.\n *\n */\n FilterSystem.prototype.pop = function pop ()\n {\n var filterStack = this.defaultFilterStack;\n var state = filterStack.pop();\n var filters = state.filters;\n\n this.activeState = state;\n\n var globalUniforms = this.globalUniforms.uniforms;\n\n globalUniforms.outputFrame = state.sourceFrame;\n globalUniforms.resolution = state.resolution;\n\n var inputSize = globalUniforms.inputSize;\n var inputPixel = globalUniforms.inputPixel;\n var inputClamp = globalUniforms.inputClamp;\n\n inputSize[0] = state.destinationFrame.width;\n inputSize[1] = state.destinationFrame.height;\n inputSize[2] = 1.0 / inputSize[0];\n inputSize[3] = 1.0 / inputSize[1];\n\n inputPixel[0] = inputSize[0] * state.resolution;\n inputPixel[1] = inputSize[1] * state.resolution;\n inputPixel[2] = 1.0 / inputPixel[0];\n inputPixel[3] = 1.0 / inputPixel[1];\n\n inputClamp[0] = 0.5 * inputPixel[2];\n inputClamp[1] = 0.5 * inputPixel[3];\n inputClamp[2] = (state.sourceFrame.width * inputSize[2]) - (0.5 * inputPixel[2]);\n inputClamp[3] = (state.sourceFrame.height * inputSize[3]) - (0.5 * inputPixel[3]);\n\n // only update the rect if its legacy..\n if (state.legacy)\n {\n var filterArea = globalUniforms.filterArea;\n\n filterArea[0] = state.destinationFrame.width;\n filterArea[1] = state.destinationFrame.height;\n filterArea[2] = state.sourceFrame.x;\n filterArea[3] = state.sourceFrame.y;\n\n globalUniforms.filterClamp = globalUniforms.inputClamp;\n }\n\n this.globalUniforms.update();\n\n var lastState = filterStack[filterStack.length - 1];\n\n if (filters.length === 1)\n {\n filters[0].apply(this, state.renderTexture, lastState.renderTexture, false, state);\n\n this.returnFilterTexture(state.renderTexture);\n }\n else\n {\n var flip = state.renderTexture;\n var flop = this.getOptimalFilterTexture(\n flip.width,\n flip.height,\n state.resolution\n );\n\n flop.filterFrame = flip.filterFrame;\n\n var i = 0;\n\n for (i = 0; i < filters.length - 1; ++i)\n {\n filters[i].apply(this, flip, flop, true, state);\n\n var t = flip;\n\n flip = flop;\n flop = t;\n }\n\n filters[i].apply(this, flip, lastState.renderTexture, false, state);\n\n this.returnFilterTexture(flip);\n this.returnFilterTexture(flop);\n }\n\n state.clear();\n this.statePool.push(state);\n };\n\n /**\n * Draws a filter.\n *\n * @param {PIXI.Filter} filter - The filter to draw.\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it\n */\n FilterSystem.prototype.applyFilter = function applyFilter (filter, input, output, clear)\n {\n var renderer = this.renderer;\n\n renderer.renderTexture.bind(output, output ? output.filterFrame : null);\n\n if (clear)\n {\n // gl.disable(gl.SCISSOR_TEST);\n renderer.renderTexture.clear();\n // gl.enable(gl.SCISSOR_TEST);\n }\n\n // set the uniforms..\n filter.uniforms.uSampler = input;\n filter.uniforms.filterGlobals = this.globalUniforms;\n\n // TODO make it so that the order of this does not matter..\n // because it does at the moment cos of global uniforms.\n // they need to get resynced\n\n renderer.state.set(filter.state);\n renderer.shader.bind(filter);\n\n if (filter.legacy)\n {\n this.quadUv.map(input._frame, input.filterFrame);\n\n renderer.geometry.bind(this.quadUv);\n renderer.geometry.draw(DRAW_MODES.TRIANGLES);\n }\n else\n {\n renderer.geometry.bind(this.quad);\n renderer.geometry.draw(DRAW_MODES.TRIANGLE_STRIP);\n }\n };\n\n /**\n * Multiply _input normalized coordinates_ to this matrix to get _sprite texture normalized coordinates_.\n *\n * Use `outputMatrix * vTextureCoord` in the shader.\n *\n * @param {PIXI.Matrix} outputMatrix - The matrix to output to.\n * @param {PIXI.Sprite} sprite - The sprite to map to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n FilterSystem.prototype.calculateSpriteMatrix = function calculateSpriteMatrix (outputMatrix, sprite)\n {\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n var ref$1 = sprite._texture;\n var orig = ref$1.orig;\n var mappedMatrix = outputMatrix.set(destinationFrame.width, 0, 0,\n destinationFrame.height, sourceFrame.x, sourceFrame.y);\n var worldTransform = sprite.worldTransform.copyTo(Matrix.TEMP_MATRIX);\n\n worldTransform.invert();\n mappedMatrix.prepend(worldTransform);\n mappedMatrix.scale(1.0 / orig.width, 1.0 / orig.height);\n mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y);\n\n return mappedMatrix;\n };\n\n /**\n * Destroys this Filter System.\n */\n FilterSystem.prototype.destroy = function destroy ()\n {\n // Those textures has to be destroyed by RenderTextureSystem or FramebufferSystem\n this.texturePool.clear(false);\n };\n\n /**\n * Gets a Power-of-Two render texture or fullScreen texture\n *\n * @protected\n * @param {number} minWidth - The minimum width of the render texture in real pixels.\n * @param {number} minHeight - The minimum height of the render texture in real pixels.\n * @param {number} [resolution=1] - The resolution of the render texture.\n * @return {PIXI.RenderTexture} The new render texture.\n */\n FilterSystem.prototype.getOptimalFilterTexture = function getOptimalFilterTexture (minWidth, minHeight, resolution)\n {\n if ( resolution === void 0 ) resolution = 1;\n\n return this.texturePool.getOptimalTexture(minWidth, minHeight, resolution);\n };\n\n /**\n * Gets extra render texture to use inside current filter\n * To be compliant with older filters, you can use params in any order\n *\n * @param {PIXI.RenderTexture} [input] renderTexture from which size and resolution will be copied\n * @param {number} [resolution] override resolution of the renderTexture\n * @returns {PIXI.RenderTexture}\n */\n FilterSystem.prototype.getFilterTexture = function getFilterTexture (input, resolution)\n {\n if (typeof input === 'number')\n {\n var swap = input;\n\n input = resolution;\n resolution = swap;\n }\n\n input = input || this.activeState.renderTexture;\n\n var filterTexture = this.texturePool.getOptimalTexture(input.width, input.height, resolution || input.resolution);\n\n filterTexture.filterFrame = input.filterFrame;\n\n return filterTexture;\n };\n\n /**\n * Frees a render texture back into the pool.\n *\n * @param {PIXI.RenderTexture} renderTexture - The renderTarget to free\n */\n FilterSystem.prototype.returnFilterTexture = function returnFilterTexture (renderTexture)\n {\n this.texturePool.returnTexture(renderTexture);\n };\n\n /**\n * Empties the texture pool.\n */\n FilterSystem.prototype.emptyPool = function emptyPool ()\n {\n this.texturePool.clear(true);\n };\n\n /**\n * calls `texturePool.resize()`, affects fullScreen renderTextures\n */\n FilterSystem.prototype.resize = function resize ()\n {\n this.texturePool.setScreenSize(this.renderer.view);\n };\n\n return FilterSystem;\n}(System));\n\n/**\n * Base for a common object renderer that can be used as a\n * system renderer plugin.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI\n */\nvar ObjectRenderer = function ObjectRenderer(renderer)\n{\n /**\n * The renderer this manager works for.\n *\n * @member {PIXI.Renderer}\n */\n this.renderer = renderer;\n};\n\n/**\n * Stub method that should be used to empty the current\n * batch by rendering objects now.\n */\nObjectRenderer.prototype.flush = function flush ()\n{\n // flush!\n};\n\n/**\n * Generic destruction method that frees all resources. This\n * should be called by subclasses.\n */\nObjectRenderer.prototype.destroy = function destroy ()\n{\n this.renderer = null;\n};\n\n/**\n * Stub method that initializes any state required before\n * rendering starts. It is different from the `prerender`\n * signal, which occurs every frame, in that it is called\n * whenever an object requests _this_ renderer specifically.\n */\nObjectRenderer.prototype.start = function start ()\n{\n // set the shader..\n};\n\n/**\n * Stops the renderer. It should free up any state and\n * become dormant.\n */\nObjectRenderer.prototype.stop = function stop ()\n{\n this.flush();\n};\n\n/**\n * Keeps the object to render. It doesn't have to be\n * rendered immediately.\n *\n * @param {PIXI.DisplayObject} object - The object to render.\n */\nObjectRenderer.prototype.render = function render (object) // eslint-disable-line no-unused-vars\n{\n // render the object\n};\n\n/**\n * System plugin to the renderer to manage batching.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar BatchSystem = /*@__PURE__*/(function (System) {\n function BatchSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * An empty renderer.\n *\n * @member {PIXI.ObjectRenderer}\n */\n this.emptyRenderer = new ObjectRenderer(renderer);\n\n /**\n * The currently active ObjectRenderer.\n *\n * @member {PIXI.ObjectRenderer}\n */\n this.currentRenderer = this.emptyRenderer;\n }\n\n if ( System ) BatchSystem.__proto__ = System;\n BatchSystem.prototype = Object.create( System && System.prototype );\n BatchSystem.prototype.constructor = BatchSystem;\n\n /**\n * Changes the current renderer to the one given in parameter\n *\n * @param {PIXI.ObjectRenderer} objectRenderer - The object renderer to use.\n */\n BatchSystem.prototype.setObjectRenderer = function setObjectRenderer (objectRenderer)\n {\n if (this.currentRenderer === objectRenderer)\n {\n return;\n }\n\n this.currentRenderer.stop();\n this.currentRenderer = objectRenderer;\n\n this.currentRenderer.start();\n };\n\n /**\n * This should be called if you wish to do some custom rendering\n * It will basically render anything that may be batched up such as sprites\n */\n BatchSystem.prototype.flush = function flush ()\n {\n this.setObjectRenderer(this.emptyRenderer);\n };\n\n /**\n * Reset the system to an empty renderer\n */\n BatchSystem.prototype.reset = function reset ()\n {\n this.setObjectRenderer(this.emptyRenderer);\n };\n\n return BatchSystem;\n}(System));\n\n/**\n * The maximum support for using WebGL. If a device does not\n * support WebGL version, for instance WebGL 2, it will still\n * attempt to fallback support to WebGL 1. If you want to\n * explicitly remove feature support to target a more stable\n * baseline, prefer a lower environment.\n *\n * Due to {@link https://bugs.chromium.org/p/chromium/issues/detail?id=934823|bug in chromium}\n * we disable webgl2 by default for all non-apple mobile devices.\n *\n * @static\n * @name PREFER_ENV\n * @memberof PIXI.settings\n * @type {number}\n * @default PIXI.ENV.WEBGL2\n */\nsettings.PREFER_ENV = isMobile.any ? ENV.WEBGL : ENV.WEBGL2;\n\nvar CONTEXT_UID = 0;\n\n/**\n * System plugin to the renderer to manage the context.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar ContextSystem = /*@__PURE__*/(function (System) {\n function ContextSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Either 1 or 2 to reflect the WebGL version being used\n * @member {number}\n * @readonly\n */\n this.webGLVersion = 1;\n\n /**\n * Extensions being used\n * @member {object}\n * @readonly\n * @property {WEBGL_draw_buffers} drawBuffers - WebGL v1 extension\n * @property {WEBGL_depth_texture} depthTexture - WebGL v1 extension\n * @property {OES_texture_float} floatTexture - WebGL v1 extension\n * @property {WEBGL_lose_context} loseContext - WebGL v1 extension\n * @property {OES_vertex_array_object} vertexArrayObject - WebGL v1 extension\n * @property {EXT_texture_filter_anisotropic} anisotropicFiltering - WebGL v1 and v2 extension\n */\n this.extensions = {};\n\n // Bind functions\n this.handleContextLost = this.handleContextLost.bind(this);\n this.handleContextRestored = this.handleContextRestored.bind(this);\n\n renderer.view.addEventListener('webglcontextlost', this.handleContextLost, false);\n renderer.view.addEventListener('webglcontextrestored', this.handleContextRestored, false);\n }\n\n if ( System ) ContextSystem.__proto__ = System;\n ContextSystem.prototype = Object.create( System && System.prototype );\n ContextSystem.prototype.constructor = ContextSystem;\n\n var prototypeAccessors = { isLost: { configurable: true } };\n\n /**\n * `true` if the context is lost\n * @member {boolean}\n * @readonly\n */\n prototypeAccessors.isLost.get = function ()\n {\n return (!this.gl || this.gl.isContextLost());\n };\n\n /**\n * Handle the context change event\n * @param {WebGLRenderingContext} gl new webgl context\n */\n ContextSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n this.renderer.gl = gl;\n this.renderer.CONTEXT_UID = CONTEXT_UID++;\n\n // restore a context if it was previously lost\n if (gl.isContextLost() && gl.getExtension('WEBGL_lose_context'))\n {\n gl.getExtension('WEBGL_lose_context').restoreContext();\n }\n };\n\n /**\n * Initialize the context\n *\n * @protected\n * @param {WebGLRenderingContext} gl - WebGL context\n */\n ContextSystem.prototype.initFromContext = function initFromContext (gl)\n {\n this.gl = gl;\n this.validateContext(gl);\n this.renderer.gl = gl;\n this.renderer.CONTEXT_UID = CONTEXT_UID++;\n this.renderer.runners.contextChange.run(gl);\n };\n\n /**\n * Initialize from context options\n *\n * @protected\n * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext\n * @param {object} options - context attributes\n */\n ContextSystem.prototype.initFromOptions = function initFromOptions (options)\n {\n var gl = this.createContext(this.renderer.view, options);\n\n this.initFromContext(gl);\n };\n\n /**\n * Helper class to create a WebGL Context\n *\n * @param canvas {HTMLCanvasElement} the canvas element that we will get the context from\n * @param options {object} An options object that gets passed in to the canvas element containing the context attributes\n * @see https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement/getContext\n * @return {WebGLRenderingContext} the WebGL context\n */\n ContextSystem.prototype.createContext = function createContext (canvas, options)\n {\n var gl;\n\n if (settings.PREFER_ENV >= ENV.WEBGL2)\n {\n gl = canvas.getContext('webgl2', options);\n }\n\n if (gl)\n {\n this.webGLVersion = 2;\n }\n else\n {\n this.webGLVersion = 1;\n\n gl = canvas.getContext('webgl', options)\n || canvas.getContext('experimental-webgl', options);\n\n if (!gl)\n {\n // fail, not able to get a context\n throw new Error('This browser does not support WebGL. Try using the canvas renderer');\n }\n }\n\n this.gl = gl;\n\n this.getExtensions();\n\n return gl;\n };\n\n /**\n * Auto-populate the extensions\n *\n * @protected\n */\n ContextSystem.prototype.getExtensions = function getExtensions ()\n {\n // time to set up default extensions that Pixi uses.\n var ref = this;\n var gl = ref.gl;\n\n if (this.webGLVersion === 1)\n {\n Object.assign(this.extensions, {\n drawBuffers: gl.getExtension('WEBGL_draw_buffers'),\n depthTexture: gl.getExtension('WEBKIT_WEBGL_depth_texture'),\n loseContext: gl.getExtension('WEBGL_lose_context'),\n vertexArrayObject: gl.getExtension('OES_vertex_array_object')\n || gl.getExtension('MOZ_OES_vertex_array_object')\n || gl.getExtension('WEBKIT_OES_vertex_array_object'),\n anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'),\n uint32ElementIndex: gl.getExtension('OES_element_index_uint'),\n // Floats and half-floats\n floatTexture: gl.getExtension('OES_texture_float'),\n floatTextureLinear: gl.getExtension('OES_texture_float_linear'),\n textureHalfFloat: gl.getExtension('OES_texture_half_float'),\n textureHalfFloatLinear: gl.getExtension('OES_texture_half_float_linear'),\n });\n }\n else if (this.webGLVersion === 2)\n {\n Object.assign(this.extensions, {\n anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'),\n // Floats and half-floats\n colorBufferFloat: gl.getExtension('EXT_color_buffer_float'),\n floatTextureLinear: gl.getExtension('OES_texture_float_linear'),\n });\n }\n };\n\n /**\n * Handles a lost webgl context\n *\n * @protected\n * @param {WebGLContextEvent} event - The context lost event.\n */\n ContextSystem.prototype.handleContextLost = function handleContextLost (event)\n {\n event.preventDefault();\n };\n\n /**\n * Handles a restored webgl context\n *\n * @protected\n */\n ContextSystem.prototype.handleContextRestored = function handleContextRestored ()\n {\n this.renderer.runners.contextChange.run(this.gl);\n };\n\n ContextSystem.prototype.destroy = function destroy ()\n {\n var view = this.renderer.view;\n\n // remove listeners\n view.removeEventListener('webglcontextlost', this.handleContextLost);\n view.removeEventListener('webglcontextrestored', this.handleContextRestored);\n\n this.gl.useProgram(null);\n\n if (this.extensions.loseContext)\n {\n this.extensions.loseContext.loseContext();\n }\n };\n\n /**\n * Handle the post-render runner event\n *\n * @protected\n */\n ContextSystem.prototype.postrender = function postrender ()\n {\n this.gl.flush();\n };\n\n /**\n * Validate context\n *\n * @protected\n * @param {WebGLRenderingContext} gl - Render context\n */\n ContextSystem.prototype.validateContext = function validateContext (gl)\n {\n var attributes = gl.getContextAttributes();\n\n // this is going to be fairly simple for now.. but at least we have room to grow!\n if (!attributes.stencil)\n {\n /* eslint-disable max-len */\n\n /* eslint-disable no-console */\n console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly');\n /* eslint-enable no-console */\n\n /* eslint-enable max-len */\n }\n };\n\n Object.defineProperties( ContextSystem.prototype, prototypeAccessors );\n\n return ContextSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage framebuffers.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar FramebufferSystem = /*@__PURE__*/(function (System) {\n function FramebufferSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * A list of managed framebuffers\n * @member {PIXI.Framebuffer[]}\n * @readonly\n */\n this.managedFramebuffers = [];\n\n /**\n * Framebuffer value that shows that we don't know what is bound\n * @member {Framebuffer}\n * @readonly\n */\n this.unknownFramebuffer = new Framebuffer(10, 10);\n }\n\n if ( System ) FramebufferSystem.__proto__ = System;\n FramebufferSystem.prototype = Object.create( System && System.prototype );\n FramebufferSystem.prototype.constructor = FramebufferSystem;\n\n var prototypeAccessors = { size: { configurable: true } };\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n FramebufferSystem.prototype.contextChange = function contextChange ()\n {\n var gl = this.gl = this.renderer.gl;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n this.current = this.unknownFramebuffer;\n this.viewport = new Rectangle();\n this.hasMRT = true;\n this.writeDepthTexture = true;\n\n this.disposeAll(true);\n\n // webgl2\n if (this.renderer.context.webGLVersion === 1)\n {\n // webgl 1!\n var nativeDrawBuffersExtension = this.renderer.context.extensions.drawBuffers;\n var nativeDepthTextureExtension = this.renderer.context.extensions.depthTexture;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n nativeDrawBuffersExtension = null;\n nativeDepthTextureExtension = null;\n }\n\n if (nativeDrawBuffersExtension)\n {\n gl.drawBuffers = function (activeTextures) { return nativeDrawBuffersExtension.drawBuffersWEBGL(activeTextures); };\n }\n else\n {\n this.hasMRT = false;\n gl.drawBuffers = function () {\n // empty\n };\n }\n\n if (!nativeDepthTextureExtension)\n {\n this.writeDepthTexture = false;\n }\n }\n };\n\n /**\n * Bind a framebuffer\n *\n * @param {PIXI.Framebuffer} framebuffer\n * @param {PIXI.Rectangle} [frame] frame, default is framebuffer size\n */\n FramebufferSystem.prototype.bind = function bind (framebuffer, frame)\n {\n var ref = this;\n var gl = ref.gl;\n\n if (framebuffer)\n {\n // TODO caching layer!\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID] || this.initFramebuffer(framebuffer);\n\n if (this.current !== framebuffer)\n {\n this.current = framebuffer;\n gl.bindFramebuffer(gl.FRAMEBUFFER, fbo.framebuffer);\n }\n // make sure all textures are unbound..\n\n // now check for updates...\n if (fbo.dirtyId !== framebuffer.dirtyId)\n {\n fbo.dirtyId = framebuffer.dirtyId;\n\n if (fbo.dirtyFormat !== framebuffer.dirtyFormat)\n {\n fbo.dirtyFormat = framebuffer.dirtyFormat;\n this.updateFramebuffer(framebuffer);\n }\n else if (fbo.dirtySize !== framebuffer.dirtySize)\n {\n fbo.dirtySize = framebuffer.dirtySize;\n this.resizeFramebuffer(framebuffer);\n }\n }\n\n for (var i = 0; i < framebuffer.colorTextures.length; i++)\n {\n if (framebuffer.colorTextures[i].texturePart)\n {\n this.renderer.texture.unbind(framebuffer.colorTextures[i].texture);\n }\n else\n {\n this.renderer.texture.unbind(framebuffer.colorTextures[i]);\n }\n }\n\n if (framebuffer.depthTexture)\n {\n this.renderer.texture.unbind(framebuffer.depthTexture);\n }\n\n if (frame)\n {\n this.setViewport(frame.x, frame.y, frame.width, frame.height);\n }\n else\n {\n this.setViewport(0, 0, framebuffer.width, framebuffer.height);\n }\n }\n else\n {\n if (this.current)\n {\n this.current = null;\n gl.bindFramebuffer(gl.FRAMEBUFFER, null);\n }\n\n if (frame)\n {\n this.setViewport(frame.x, frame.y, frame.width, frame.height);\n }\n else\n {\n this.setViewport(0, 0, this.renderer.width, this.renderer.height);\n }\n }\n };\n\n /**\n * Set the WebGLRenderingContext's viewport.\n *\n * @param {Number} x - X position of viewport\n * @param {Number} y - Y position of viewport\n * @param {Number} width - Width of viewport\n * @param {Number} height - Height of viewport\n */\n FramebufferSystem.prototype.setViewport = function setViewport (x, y, width, height)\n {\n var v = this.viewport;\n\n if (v.width !== width || v.height !== height || v.x !== x || v.y !== y)\n {\n v.x = x;\n v.y = y;\n v.width = width;\n v.height = height;\n\n this.gl.viewport(x, y, width, height);\n }\n };\n\n /**\n * Get the size of the current width and height. Returns object with `width` and `height` values.\n *\n * @member {object}\n * @readonly\n */\n prototypeAccessors.size.get = function ()\n {\n if (this.current)\n {\n // TODO store temp\n return { x: 0, y: 0, width: this.current.width, height: this.current.height };\n }\n\n return { x: 0, y: 0, width: this.renderer.width, height: this.renderer.height };\n };\n\n /**\n * Clear the color of the context\n *\n * @param {Number} r - Red value from 0 to 1\n * @param {Number} g - Green value from 0 to 1\n * @param {Number} b - Blue value from 0 to 1\n * @param {Number} a - Alpha value from 0 to 1\n */\n FramebufferSystem.prototype.clear = function clear (r, g, b, a)\n {\n var ref = this;\n var gl = ref.gl;\n\n // TODO clear color can be set only one right?\n gl.clearColor(r, g, b, a);\n gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);\n };\n\n /**\n * Initialize framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.initFramebuffer = function initFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n // TODO - make this a class?\n var fbo = {\n framebuffer: gl.createFramebuffer(),\n stencil: null,\n dirtyId: 0,\n dirtyFormat: 0,\n dirtySize: 0,\n };\n\n framebuffer.glFramebuffers[this.CONTEXT_UID] = fbo;\n\n this.managedFramebuffers.push(framebuffer);\n framebuffer.disposeRunner.add(this);\n\n return fbo;\n };\n\n /**\n * Resize the framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.resizeFramebuffer = function resizeFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n if (fbo.stencil)\n {\n gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil);\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height);\n }\n\n var colorTextures = framebuffer.colorTextures;\n\n for (var i = 0; i < colorTextures.length; i++)\n {\n this.renderer.texture.bind(colorTextures[i], 0);\n }\n\n if (framebuffer.depthTexture)\n {\n this.renderer.texture.bind(framebuffer.depthTexture, 0);\n }\n };\n\n /**\n * Update the framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.updateFramebuffer = function updateFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n // bind the color texture\n var colorTextures = framebuffer.colorTextures;\n\n var count = colorTextures.length;\n\n if (!gl.drawBuffers)\n {\n count = Math.min(count, 1);\n }\n\n var activeTextures = [];\n\n for (var i = 0; i < count; i++)\n {\n var texture = framebuffer.colorTextures[i];\n\n if (texture.texturePart)\n {\n this.renderer.texture.bind(texture.texture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.COLOR_ATTACHMENT0 + i,\n gl.TEXTURE_CUBE_MAP_NEGATIVE_X + texture.side,\n texture.texture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n else\n {\n this.renderer.texture.bind(texture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.COLOR_ATTACHMENT0 + i,\n gl.TEXTURE_2D,\n texture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n\n activeTextures.push(gl.COLOR_ATTACHMENT0 + i);\n }\n\n if (activeTextures.length > 1)\n {\n gl.drawBuffers(activeTextures);\n }\n\n if (framebuffer.depthTexture)\n {\n var writeDepthTexture = this.writeDepthTexture;\n\n if (writeDepthTexture)\n {\n var depthTexture = framebuffer.depthTexture;\n\n this.renderer.texture.bind(depthTexture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.DEPTH_ATTACHMENT,\n gl.TEXTURE_2D,\n depthTexture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n }\n\n if (!fbo.stencil && (framebuffer.stencil || framebuffer.depth))\n {\n fbo.stencil = gl.createRenderbuffer();\n\n gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil);\n\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height);\n // TODO.. this is depth AND stencil?\n if (!framebuffer.depthTexture)\n { // you can't have both, so one should take priority if enabled\n gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, fbo.stencil);\n }\n }\n };\n\n /**\n * Disposes framebuffer\n * @param {PIXI.Framebuffer} framebuffer framebuffer that has to be disposed of\n * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls\n */\n FramebufferSystem.prototype.disposeFramebuffer = function disposeFramebuffer (framebuffer, contextLost)\n {\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n var gl = this.gl;\n\n if (!fbo)\n {\n return;\n }\n\n delete framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n var index = this.managedFramebuffers.indexOf(framebuffer);\n\n if (index >= 0)\n {\n this.managedFramebuffers.splice(index, 1);\n }\n\n framebuffer.disposeRunner.remove(this);\n\n if (!contextLost)\n {\n gl.deleteFramebuffer(fbo.framebuffer);\n if (fbo.stencil)\n {\n gl.deleteRenderbuffer(fbo.stencil);\n }\n }\n };\n\n /**\n * Disposes all framebuffers, but not textures bound to them\n * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls\n */\n FramebufferSystem.prototype.disposeAll = function disposeAll (contextLost)\n {\n var list = this.managedFramebuffers;\n\n this.managedFramebuffers = [];\n\n for (var i = 0; i < list.length; i++)\n {\n this.disposeFramebuffer(list[i], contextLost);\n }\n };\n\n /**\n * Forcing creation of stencil buffer for current framebuffer, if it wasn't done before.\n * Used by MaskSystem, when its time to use stencil mask for Graphics element.\n *\n * Its an alternative for public lazy `framebuffer.enableStencil`, in case we need stencil without rebind.\n *\n * @private\n */\n FramebufferSystem.prototype.forceStencil = function forceStencil ()\n {\n var framebuffer = this.current;\n\n if (!framebuffer)\n {\n return;\n }\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n if (!fbo || fbo.stencil)\n {\n return;\n }\n framebuffer.enableStencil();\n\n var w = framebuffer.width;\n var h = framebuffer.height;\n var gl = this.gl;\n var stencil = gl.createRenderbuffer();\n\n gl.bindRenderbuffer(gl.RENDERBUFFER, stencil);\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, w, h);\n\n fbo.stencil = stencil;\n gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, stencil);\n };\n\n /**\n * resets framebuffer stored state, binds screen framebuffer\n *\n * should be called before renderTexture reset()\n */\n FramebufferSystem.prototype.reset = function reset ()\n {\n this.current = this.unknownFramebuffer;\n this.viewport = new Rectangle();\n };\n\n Object.defineProperties( FramebufferSystem.prototype, prototypeAccessors );\n\n return FramebufferSystem;\n}(System));\n\nvar GLBuffer = function GLBuffer(buffer)\n{\n this.buffer = buffer;\n this.updateID = -1;\n this.byteLength = -1;\n this.refCount = 0;\n};\n\nvar byteSizeMap$1 = { 5126: 4, 5123: 2, 5121: 1 };\n\n/**\n * System plugin to the renderer to manage geometry.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar GeometrySystem = /*@__PURE__*/(function (System) {\n function GeometrySystem(renderer)\n {\n System.call(this, renderer);\n\n this._activeGeometry = null;\n this._activeVao = null;\n\n /**\n * `true` if we has `*_vertex_array_object` extension\n * @member {boolean}\n * @readonly\n */\n this.hasVao = true;\n\n /**\n * `true` if has `ANGLE_instanced_arrays` extension\n * @member {boolean}\n * @readonly\n */\n this.hasInstance = true;\n\n /**\n * `true` if support `gl.UNSIGNED_INT` in `gl.drawElements` or `gl.drawElementsInstanced`\n * @member {boolean}\n * @readonly\n */\n this.canUseUInt32ElementIndex = false;\n\n /**\n * A cache of currently bound buffer,\n * contains only two members with keys ARRAY_BUFFER and ELEMENT_ARRAY_BUFFER\n * @member {Object.}\n * @readonly\n */\n this.boundBuffers = {};\n\n /**\n * Cache for all geometries by id, used in case renderer gets destroyed or for profiling\n * @member {object}\n * @readonly\n */\n this.managedGeometries = {};\n\n /**\n * Cache for all buffers by id, used in case renderer gets destroyed or for profiling\n * @member {object}\n * @readonly\n */\n this.managedBuffers = {};\n }\n\n if ( System ) GeometrySystem.__proto__ = System;\n GeometrySystem.prototype = Object.create( System && System.prototype );\n GeometrySystem.prototype.constructor = GeometrySystem;\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n GeometrySystem.prototype.contextChange = function contextChange ()\n {\n this.disposeAll(true);\n\n var gl = this.gl = this.renderer.gl;\n var context = this.renderer.context;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n\n // webgl2\n if (!gl.createVertexArray)\n {\n // webgl 1!\n var nativeVaoExtension = this.renderer.context.extensions.vertexArrayObject;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n nativeVaoExtension = null;\n }\n\n if (nativeVaoExtension)\n {\n gl.createVertexArray = function () { return nativeVaoExtension.createVertexArrayOES(); };\n\n gl.bindVertexArray = function (vao) { return nativeVaoExtension.bindVertexArrayOES(vao); };\n\n gl.deleteVertexArray = function (vao) { return nativeVaoExtension.deleteVertexArrayOES(vao); };\n }\n else\n {\n this.hasVao = false;\n gl.createVertexArray = function () {\n // empty\n };\n\n gl.bindVertexArray = function () {\n // empty\n };\n\n gl.deleteVertexArray = function () {\n // empty\n };\n }\n }\n\n if (!gl.vertexAttribDivisor)\n {\n var instanceExt = gl.getExtension('ANGLE_instanced_arrays');\n\n if (instanceExt)\n {\n gl.vertexAttribDivisor = function (a, b) { return instanceExt.vertexAttribDivisorANGLE(a, b); };\n\n gl.drawElementsInstanced = function (a, b, c, d, e) { return instanceExt.drawElementsInstancedANGLE(a, b, c, d, e); };\n\n gl.drawArraysInstanced = function (a, b, c, d) { return instanceExt.drawArraysInstancedANGLE(a, b, c, d); };\n }\n else\n {\n this.hasInstance = false;\n }\n }\n\n this.canUseUInt32ElementIndex = context.webGLVersion === 2 || !!context.extensions.uint32ElementIndex;\n };\n\n /**\n * Binds geometry so that is can be drawn. Creating a Vao if required\n *\n * @param {PIXI.Geometry} geometry instance of geometry to bind\n * @param {PIXI.Shader} [shader] instance of shader to use vao for\n */\n GeometrySystem.prototype.bind = function bind (geometry, shader)\n {\n shader = shader || this.renderer.shader.shader;\n\n var ref = this;\n var gl = ref.gl;\n\n // not sure the best way to address this..\n // currently different shaders require different VAOs for the same geometry\n // Still mulling over the best way to solve this one..\n // will likely need to modify the shader attribute locations at run time!\n var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n\n if (!vaos)\n {\n this.managedGeometries[geometry.id] = geometry;\n geometry.disposeRunner.add(this);\n geometry.glVertexArrayObjects[this.CONTEXT_UID] = vaos = {};\n }\n\n var vao = vaos[shader.program.id] || this.initGeometryVao(geometry, shader.program);\n\n this._activeGeometry = geometry;\n\n if (this._activeVao !== vao)\n {\n this._activeVao = vao;\n\n if (this.hasVao)\n {\n gl.bindVertexArray(vao);\n }\n else\n {\n this.activateVao(geometry, shader.program);\n }\n }\n\n // TODO - optimise later!\n // don't need to loop through if nothing changed!\n // maybe look to add an 'autoupdate' to geometry?\n this.updateBuffers();\n };\n\n /**\n * Reset and unbind any active VAO and geometry\n */\n GeometrySystem.prototype.reset = function reset ()\n {\n this.unbind();\n };\n\n /**\n * Update buffers\n * @protected\n */\n GeometrySystem.prototype.updateBuffers = function updateBuffers ()\n {\n var geometry = this._activeGeometry;\n var ref = this;\n var gl = ref.gl;\n\n for (var i = 0; i < geometry.buffers.length; i++)\n {\n var buffer = geometry.buffers[i];\n\n var glBuffer = buffer._glBuffers[this.CONTEXT_UID];\n\n if (buffer._updateID !== glBuffer.updateID)\n {\n glBuffer.updateID = buffer._updateID;\n\n // TODO can cache this on buffer! maybe added a getter / setter?\n var type = buffer.index ? gl.ELEMENT_ARRAY_BUFFER : gl.ARRAY_BUFFER;\n\n // TODO this could change if the VAO changes...\n // need to come up with a better way to cache..\n // if (this.boundBuffers[type] !== glBuffer)\n // {\n // this.boundBuffers[type] = glBuffer;\n gl.bindBuffer(type, glBuffer.buffer);\n // }\n\n this._boundBuffer = glBuffer;\n\n if (glBuffer.byteLength >= buffer.data.byteLength)\n {\n // offset is always zero for now!\n gl.bufferSubData(type, 0, buffer.data);\n }\n else\n {\n var drawType = buffer.static ? gl.STATIC_DRAW : gl.DYNAMIC_DRAW;\n\n glBuffer.byteLength = buffer.data.byteLength;\n gl.bufferData(type, buffer.data, drawType);\n }\n }\n }\n };\n\n /**\n * Check compability between a geometry and a program\n * @protected\n * @param {PIXI.Geometry} geometry - Geometry instance\n * @param {PIXI.Program} program - Program instance\n */\n GeometrySystem.prototype.checkCompatibility = function checkCompatibility (geometry, program)\n {\n // geometry must have at least all the attributes that the shader requires.\n var geometryAttributes = geometry.attributes;\n var shaderAttributes = program.attributeData;\n\n for (var j in shaderAttributes)\n {\n if (!geometryAttributes[j])\n {\n throw new Error((\"shader and geometry incompatible, geometry missing the \\\"\" + j + \"\\\" attribute\"));\n }\n }\n };\n\n /**\n * Takes a geometry and program and generates a unique signature for them.\n *\n * @param {PIXI.Geometry} geometry to get signature from\n * @param {PIXI.Program} program to test geometry against\n * @returns {String} Unique signature of the geometry and program\n * @protected\n */\n GeometrySystem.prototype.getSignature = function getSignature (geometry, program)\n {\n var attribs = geometry.attributes;\n var shaderAttributes = program.attributeData;\n\n var strings = ['g', geometry.id];\n\n for (var i in attribs)\n {\n if (shaderAttributes[i])\n {\n strings.push(i);\n }\n }\n\n return strings.join('-');\n };\n\n /**\n * Creates or gets Vao with the same structure as the geometry and stores it on the geometry.\n * If vao is created, it is bound automatically.\n *\n * @protected\n * @param {PIXI.Geometry} geometry - Instance of geometry to to generate Vao for\n * @param {PIXI.Program} program - Instance of program\n */\n GeometrySystem.prototype.initGeometryVao = function initGeometryVao (geometry, program)\n {\n this.checkCompatibility(geometry, program);\n\n var gl = this.gl;\n var CONTEXT_UID = this.CONTEXT_UID;\n\n var signature = this.getSignature(geometry, program);\n\n var vaoObjectHash = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n\n var vao = vaoObjectHash[signature];\n\n if (vao)\n {\n // this will give us easy access to the vao\n vaoObjectHash[program.id] = vao;\n\n return vao;\n }\n\n var buffers = geometry.buffers;\n var attributes = geometry.attributes;\n var tempStride = {};\n var tempStart = {};\n\n for (var j in buffers)\n {\n tempStride[j] = 0;\n tempStart[j] = 0;\n }\n\n for (var j$1 in attributes)\n {\n if (!attributes[j$1].size && program.attributeData[j$1])\n {\n attributes[j$1].size = program.attributeData[j$1].size;\n }\n else if (!attributes[j$1].size)\n {\n console.warn((\"PIXI Geometry attribute '\" + j$1 + \"' size cannot be determined (likely the bound shader does not have the attribute)\")); // eslint-disable-line\n }\n\n tempStride[attributes[j$1].buffer] += attributes[j$1].size * byteSizeMap$1[attributes[j$1].type];\n }\n\n for (var j$2 in attributes)\n {\n var attribute = attributes[j$2];\n var attribSize = attribute.size;\n\n if (attribute.stride === undefined)\n {\n if (tempStride[attribute.buffer] === attribSize * byteSizeMap$1[attribute.type])\n {\n attribute.stride = 0;\n }\n else\n {\n attribute.stride = tempStride[attribute.buffer];\n }\n }\n\n if (attribute.start === undefined)\n {\n attribute.start = tempStart[attribute.buffer];\n\n tempStart[attribute.buffer] += attribSize * byteSizeMap$1[attribute.type];\n }\n }\n\n vao = gl.createVertexArray();\n\n gl.bindVertexArray(vao);\n\n // first update - and create the buffers!\n // only create a gl buffer if it actually gets\n for (var i = 0; i < buffers.length; i++)\n {\n var buffer = buffers[i];\n\n if (!buffer._glBuffers[CONTEXT_UID])\n {\n buffer._glBuffers[CONTEXT_UID] = new GLBuffer(gl.createBuffer());\n this.managedBuffers[buffer.id] = buffer;\n buffer.disposeRunner.add(this);\n }\n\n buffer._glBuffers[CONTEXT_UID].refCount++;\n }\n\n // TODO - maybe make this a data object?\n // lets wait to see if we need to first!\n\n this.activateVao(geometry, program);\n\n this._activeVao = vao;\n\n // add it to the cache!\n vaoObjectHash[program.id] = vao;\n vaoObjectHash[signature] = vao;\n\n return vao;\n };\n\n /**\n * Disposes buffer\n * @param {PIXI.Buffer} buffer buffer with data\n * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray\n */\n GeometrySystem.prototype.disposeBuffer = function disposeBuffer (buffer, contextLost)\n {\n if (!this.managedBuffers[buffer.id])\n {\n return;\n }\n\n delete this.managedBuffers[buffer.id];\n\n var glBuffer = buffer._glBuffers[this.CONTEXT_UID];\n var gl = this.gl;\n\n buffer.disposeRunner.remove(this);\n\n if (!glBuffer)\n {\n return;\n }\n\n if (!contextLost)\n {\n gl.deleteBuffer(glBuffer.buffer);\n }\n\n delete buffer._glBuffers[this.CONTEXT_UID];\n };\n\n /**\n * Disposes geometry\n * @param {PIXI.Geometry} geometry Geometry with buffers. Only VAO will be disposed\n * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray\n */\n GeometrySystem.prototype.disposeGeometry = function disposeGeometry (geometry, contextLost)\n {\n if (!this.managedGeometries[geometry.id])\n {\n return;\n }\n\n delete this.managedGeometries[geometry.id];\n\n var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n var gl = this.gl;\n var buffers = geometry.buffers;\n\n geometry.disposeRunner.remove(this);\n\n if (!vaos)\n {\n return;\n }\n\n for (var i = 0; i < buffers.length; i++)\n {\n var buf = buffers[i]._glBuffers[this.CONTEXT_UID];\n\n buf.refCount--;\n if (buf.refCount === 0 && !contextLost)\n {\n this.disposeBuffer(buffers[i], contextLost);\n }\n }\n\n if (!contextLost)\n {\n for (var vaoId in vaos)\n {\n // delete only signatures, everything else are copies\n if (vaoId[0] === 'g')\n {\n var vao = vaos[vaoId];\n\n if (this._activeVao === vao)\n {\n this.unbind();\n }\n gl.deleteVertexArray(vao);\n }\n }\n }\n\n delete geometry.glVertexArrayObjects[this.CONTEXT_UID];\n };\n\n /**\n * dispose all WebGL resources of all managed geometries and buffers\n * @param {boolean} [contextLost=false] If context was lost, we suppress `gl.delete` calls\n */\n GeometrySystem.prototype.disposeAll = function disposeAll (contextLost)\n {\n var all = Object.keys(this.managedGeometries);\n\n for (var i = 0; i < all.length; i++)\n {\n this.disposeGeometry(this.managedGeometries[all[i]], contextLost);\n }\n all = Object.keys(this.managedBuffers);\n for (var i$1 = 0; i$1 < all.length; i$1++)\n {\n this.disposeBuffer(this.managedBuffers[all[i$1]], contextLost);\n }\n };\n\n /**\n * Activate vertex array object\n *\n * @protected\n * @param {PIXI.Geometry} geometry - Geometry instance\n * @param {PIXI.Program} program - Shader program instance\n */\n GeometrySystem.prototype.activateVao = function activateVao (geometry, program)\n {\n var gl = this.gl;\n var CONTEXT_UID = this.CONTEXT_UID;\n var buffers = geometry.buffers;\n var attributes = geometry.attributes;\n\n if (geometry.indexBuffer)\n {\n // first update the index buffer if we have one..\n gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, geometry.indexBuffer._glBuffers[CONTEXT_UID].buffer);\n }\n\n var lastBuffer = null;\n\n // add a new one!\n for (var j in attributes)\n {\n var attribute = attributes[j];\n var buffer = buffers[attribute.buffer];\n var glBuffer = buffer._glBuffers[CONTEXT_UID];\n\n if (program.attributeData[j])\n {\n if (lastBuffer !== glBuffer)\n {\n gl.bindBuffer(gl.ARRAY_BUFFER, glBuffer.buffer);\n\n lastBuffer = glBuffer;\n }\n\n var location = program.attributeData[j].location;\n\n // TODO introduce state again\n // we can optimise this for older devices that have no VAOs\n gl.enableVertexAttribArray(location);\n\n gl.vertexAttribPointer(location,\n attribute.size,\n attribute.type || gl.FLOAT,\n attribute.normalized,\n attribute.stride,\n attribute.start);\n\n if (attribute.instance)\n {\n // TODO calculate instance count based of this...\n if (this.hasInstance)\n {\n gl.vertexAttribDivisor(location, 1);\n }\n else\n {\n throw new Error('geometry error, GPU Instancing is not supported on this device');\n }\n }\n }\n }\n };\n\n /**\n * Draw the geometry\n *\n * @param {Number} type - the type primitive to render\n * @param {Number} [size] - the number of elements to be rendered\n * @param {Number} [start] - Starting index\n * @param {Number} [instanceCount] - the number of instances of the set of elements to execute\n */\n GeometrySystem.prototype.draw = function draw (type, size, start, instanceCount)\n {\n var ref = this;\n var gl = ref.gl;\n var geometry = this._activeGeometry;\n\n // TODO.. this should not change so maybe cache the function?\n\n if (geometry.indexBuffer)\n {\n var byteSize = geometry.indexBuffer.data.BYTES_PER_ELEMENT;\n var glType = byteSize === 2 ? gl.UNSIGNED_SHORT : gl.UNSIGNED_INT;\n\n if (byteSize === 2 || (byteSize === 4 && this.canUseUInt32ElementIndex))\n {\n if (geometry.instanced)\n {\n /* eslint-disable max-len */\n gl.drawElementsInstanced(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize, instanceCount || 1);\n /* eslint-enable max-len */\n }\n else\n {\n /* eslint-disable max-len */\n gl.drawElements(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize);\n /* eslint-enable max-len */\n }\n }\n else\n {\n console.warn('unsupported index buffer type: uint32');\n }\n }\n else if (geometry.instanced)\n {\n // TODO need a better way to calculate size..\n gl.drawArraysInstanced(type, start, size || geometry.getSize(), instanceCount || 1);\n }\n else\n {\n gl.drawArrays(type, start, size || geometry.getSize());\n }\n\n return this;\n };\n\n /**\n * Unbind/reset everything\n * @protected\n */\n GeometrySystem.prototype.unbind = function unbind ()\n {\n this.gl.bindVertexArray(null);\n this._activeVao = null;\n this._activeGeometry = null;\n };\n\n return GeometrySystem;\n}(System));\n\n/**\n * @method compileProgram\n * @private\n * @memberof PIXI.glCore.shader\n * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram}\n * @param vertexSrc {string|string[]} The vertex shader source as an array of strings.\n * @param fragmentSrc {string|string[]} The fragment shader source as an array of strings.\n * @param attributeLocations {Object} An attribute location map that lets you manually set the attribute locations\n * @return {WebGLProgram} the shader program\n */\nfunction compileProgram(gl, vertexSrc, fragmentSrc, attributeLocations)\n{\n var glVertShader = compileShader(gl, gl.VERTEX_SHADER, vertexSrc);\n var glFragShader = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc);\n\n var program = gl.createProgram();\n\n gl.attachShader(program, glVertShader);\n gl.attachShader(program, glFragShader);\n\n // optionally, set the attributes manually for the program rather than letting WebGL decide..\n if (attributeLocations)\n {\n for (var i in attributeLocations)\n {\n gl.bindAttribLocation(program, attributeLocations[i], i);\n }\n }\n\n gl.linkProgram(program);\n\n // if linking fails, then log and cleanup\n if (!gl.getProgramParameter(program, gl.LINK_STATUS))\n {\n console.error('Pixi.js Error: Could not initialize shader.');\n console.error('gl.VALIDATE_STATUS', gl.getProgramParameter(program, gl.VALIDATE_STATUS));\n console.error('gl.getError()', gl.getError());\n\n // if there is a program info log, log it\n if (gl.getProgramInfoLog(program) !== '')\n {\n console.warn('Pixi.js Warning: gl.getProgramInfoLog()', gl.getProgramInfoLog(program));\n }\n\n gl.deleteProgram(program);\n program = null;\n }\n\n // clean up some shaders\n gl.deleteShader(glVertShader);\n gl.deleteShader(glFragShader);\n\n return program;\n}\n\n/**\n * @private\n * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram}\n * @param type {Number} the type, can be either VERTEX_SHADER or FRAGMENT_SHADER\n * @param vertexSrc {string|string[]} The vertex shader source as an array of strings.\n * @return {WebGLShader} the shader\n */\nfunction compileShader(gl, type, src)\n{\n var shader = gl.createShader(type);\n\n gl.shaderSource(shader, src);\n gl.compileShader(shader);\n\n if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS))\n {\n console.warn(src);\n console.error(gl.getShaderInfoLog(shader));\n\n return null;\n }\n\n return shader;\n}\n\n/**\n * @method defaultValue\n * @memberof PIXI.glCore.shader\n * @param type {String} Type of value\n * @param size {Number}\n * @private\n */\nfunction defaultValue(type, size)\n{\n switch (type)\n {\n case 'float':\n return 0;\n\n case 'vec2':\n return new Float32Array(2 * size);\n\n case 'vec3':\n return new Float32Array(3 * size);\n\n case 'vec4':\n return new Float32Array(4 * size);\n\n case 'int':\n case 'sampler2D':\n case 'sampler2DArray':\n return 0;\n\n case 'ivec2':\n return new Int32Array(2 * size);\n\n case 'ivec3':\n return new Int32Array(3 * size);\n\n case 'ivec4':\n return new Int32Array(4 * size);\n\n case 'bool':\n return false;\n\n case 'bvec2':\n\n return booleanArray(2 * size);\n\n case 'bvec3':\n return booleanArray(3 * size);\n\n case 'bvec4':\n return booleanArray(4 * size);\n\n case 'mat2':\n return new Float32Array([1, 0,\n 0, 1]);\n\n case 'mat3':\n return new Float32Array([1, 0, 0,\n 0, 1, 0,\n 0, 0, 1]);\n\n case 'mat4':\n return new Float32Array([1, 0, 0, 0,\n 0, 1, 0, 0,\n 0, 0, 1, 0,\n 0, 0, 0, 1]);\n }\n\n return null;\n}\n\nfunction booleanArray(size)\n{\n var array = new Array(size);\n\n for (var i = 0; i < array.length; i++)\n {\n array[i] = false;\n }\n\n return array;\n}\n\nvar unknownContext = {};\nvar context = unknownContext;\n\n/**\n * returns a little WebGL context to use for program inspection.\n *\n * @static\n * @private\n * @returns {webGL-context} a gl context to test with\n */\nfunction getTestContext()\n{\n if (context === unknownContext || context.isContextLost())\n {\n var canvas = document.createElement('canvas');\n\n var gl;\n\n if (settings.PREFER_ENV >= ENV.WEBGL2)\n {\n gl = canvas.getContext('webgl2', {});\n }\n\n if (!gl)\n {\n gl = canvas.getContext('webgl', {})\n || canvas.getContext('experimental-webgl', {});\n\n if (!gl)\n {\n // fail, not able to get a context\n gl = null;\n }\n else\n {\n // for shader testing..\n gl.getExtension('WEBGL_draw_buffers');\n }\n }\n\n context = gl;\n }\n\n return context;\n}\n\nvar maxFragmentPrecision;\n\nfunction getMaxFragmentPrecision()\n{\n if (!maxFragmentPrecision)\n {\n maxFragmentPrecision = PRECISION.MEDIUM;\n var gl = getTestContext();\n\n if (gl)\n {\n if (gl.getShaderPrecisionFormat)\n {\n var shaderFragment = gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT);\n\n maxFragmentPrecision = shaderFragment.precision ? PRECISION.HIGH : PRECISION.MEDIUM;\n }\n }\n }\n\n return maxFragmentPrecision;\n}\n\n/**\n * Sets the float precision on the shader, ensuring the device supports the request precision.\n * If the precision is already present, it just ensures that the device is able to handle it.\n *\n * @private\n * @param {string} src - The shader source\n * @param {string} requestedPrecision - The request float precision of the shader. Options are 'lowp', 'mediump' or 'highp'.\n * @param {string} maxSupportedPrecision - The maximum precision the shader supports.\n *\n * @return {string} modified shader source\n */\nfunction setPrecision(src, requestedPrecision, maxSupportedPrecision)\n{\n if (src.substring(0, 9) !== 'precision')\n {\n // no precision supplied, so PixiJS will add the requested level.\n var precision = requestedPrecision;\n\n // If highp is requested but not supported, downgrade precision to a level all devices support.\n if (requestedPrecision === PRECISION.HIGH && maxSupportedPrecision !== PRECISION.HIGH)\n {\n precision = PRECISION.MEDIUM;\n }\n\n return (\"precision \" + precision + \" float;\\n\" + src);\n }\n else if (maxSupportedPrecision !== PRECISION.HIGH && src.substring(0, 15) === 'precision highp')\n {\n // precision was supplied, but at a level this device does not support, so downgrading to mediump.\n return src.replace('precision highp', 'precision mediump');\n }\n\n return src;\n}\n\nvar GLSL_TO_SIZE = {\n float: 1,\n vec2: 2,\n vec3: 3,\n vec4: 4,\n\n int: 1,\n ivec2: 2,\n ivec3: 3,\n ivec4: 4,\n\n bool: 1,\n bvec2: 2,\n bvec3: 3,\n bvec4: 4,\n\n mat2: 4,\n mat3: 9,\n mat4: 16,\n\n sampler2D: 1,\n};\n\n/**\n * @private\n * @method mapSize\n * @memberof PIXI.glCore.shader\n * @param type {String}\n * @return {Number}\n */\nfunction mapSize(type)\n{\n return GLSL_TO_SIZE[type];\n}\n\nvar GL_TABLE = null;\n\nvar GL_TO_GLSL_TYPES = {\n FLOAT: 'float',\n FLOAT_VEC2: 'vec2',\n FLOAT_VEC3: 'vec3',\n FLOAT_VEC4: 'vec4',\n\n INT: 'int',\n INT_VEC2: 'ivec2',\n INT_VEC3: 'ivec3',\n INT_VEC4: 'ivec4',\n\n BOOL: 'bool',\n BOOL_VEC2: 'bvec2',\n BOOL_VEC3: 'bvec3',\n BOOL_VEC4: 'bvec4',\n\n FLOAT_MAT2: 'mat2',\n FLOAT_MAT3: 'mat3',\n FLOAT_MAT4: 'mat4',\n\n SAMPLER_2D: 'sampler2D',\n SAMPLER_CUBE: 'samplerCube',\n SAMPLER_2D_ARRAY: 'sampler2DArray',\n};\n\nfunction mapType(gl, type)\n{\n if (!GL_TABLE)\n {\n var typeNames = Object.keys(GL_TO_GLSL_TYPES);\n\n GL_TABLE = {};\n\n for (var i = 0; i < typeNames.length; ++i)\n {\n var tn = typeNames[i];\n\n GL_TABLE[gl[tn]] = GL_TO_GLSL_TYPES[tn];\n }\n }\n\n return GL_TABLE[type];\n}\n\n// cv = CachedValue\n// v = value\n// ud = uniformData\n// uv = uniformValue\n// l = location\nvar GLSL_TO_SINGLE_SETTERS_CACHED = {\n\n float: \"\\n if(cv !== v)\\n {\\n cv.v = v;\\n gl.uniform1f(location, v)\\n }\",\n\n vec2: \"\\n if(cv[0] !== v[0] || cv[1] !== v[1])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n gl.uniform2f(location, v[0], v[1])\\n }\",\n\n vec3: \"\\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n cv[2] = v[2];\\n\\n gl.uniform3f(location, v[0], v[1], v[2])\\n }\",\n\n vec4: 'gl.uniform4f(location, v[0], v[1], v[2], v[3])',\n\n int: 'gl.uniform1i(location, v)',\n ivec2: 'gl.uniform2i(location, v[0], v[1])',\n ivec3: 'gl.uniform3i(location, v[0], v[1], v[2])',\n ivec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])',\n\n bool: 'gl.uniform1i(location, v)',\n bvec2: 'gl.uniform2i(location, v[0], v[1])',\n bvec3: 'gl.uniform3i(location, v[0], v[1], v[2])',\n bvec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])',\n\n mat2: 'gl.uniformMatrix2fv(location, false, v)',\n mat3: 'gl.uniformMatrix3fv(location, false, v)',\n mat4: 'gl.uniformMatrix4fv(location, false, v)',\n\n sampler2D: 'gl.uniform1i(location, v)',\n samplerCube: 'gl.uniform1i(location, v)',\n sampler2DArray: 'gl.uniform1i(location, v)',\n};\n\nvar GLSL_TO_ARRAY_SETTERS = {\n\n float: \"gl.uniform1fv(location, v)\",\n\n vec2: \"gl.uniform2fv(location, v)\",\n vec3: \"gl.uniform3fv(location, v)\",\n vec4: 'gl.uniform4fv(location, v)',\n\n mat4: 'gl.uniformMatrix4fv(location, false, v)',\n mat3: 'gl.uniformMatrix3fv(location, false, v)',\n mat2: 'gl.uniformMatrix2fv(location, false, v)',\n\n int: 'gl.uniform1iv(location, v)',\n ivec2: 'gl.uniform2iv(location, v)',\n ivec3: 'gl.uniform3iv(location, v)',\n ivec4: 'gl.uniform4iv(location, v)',\n\n bool: 'gl.uniform1iv(location, v)',\n bvec2: 'gl.uniform2iv(location, v)',\n bvec3: 'gl.uniform3iv(location, v)',\n bvec4: 'gl.uniform4iv(location, v)',\n\n sampler2D: 'gl.uniform1iv(location, v)',\n samplerCube: 'gl.uniform1iv(location, v)',\n sampler2DArray: 'gl.uniform1iv(location, v)',\n};\n\nfunction generateUniformsSync(group, uniformData)\n{\n var textureCount = 0;\n var func = \"var v = null;\\n var cv = null\\n var gl = renderer.gl\";\n\n for (var i in group.uniforms)\n {\n var data = uniformData[i];\n\n if (!data)\n {\n if (group.uniforms[i].group)\n {\n func += \"\\n renderer.shader.syncUniformGroup(uv.\" + i + \");\\n \";\n }\n\n continue;\n }\n\n // TODO && uniformData[i].value !== 0 <-- do we still need this?\n if (data.type === 'float' && data.size === 1)\n {\n func += \"\\n if(uv.\" + i + \" !== ud.\" + i + \".value)\\n {\\n ud.\" + i + \".value = uv.\" + i + \"\\n gl.uniform1f(ud.\" + i + \".location, uv.\" + i + \")\\n }\\n\";\n }\n /* eslint-disable max-len */\n else if ((data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray)\n /* eslint-disable max-len */\n {\n func += \"\\n renderer.texture.bind(uv.\" + i + \", \" + textureCount + \");\\n\\n if(ud.\" + i + \".value !== \" + textureCount + \")\\n {\\n ud.\" + i + \".value = \" + textureCount + \";\\n gl.uniform1i(ud.\" + i + \".location, \" + textureCount + \");\\n; // eslint-disable-line max-len\\n }\\n\";\n\n textureCount++;\n }\n else if (data.type === 'mat3' && data.size === 1)\n {\n if (group.uniforms[i].a !== undefined)\n {\n // TODO and some smart caching dirty ids here!\n func += \"\\n gl.uniformMatrix3fv(ud.\" + i + \".location, false, uv.\" + i + \".toArray(true));\\n \\n\";\n }\n else\n {\n func += \"\\n gl.uniformMatrix3fv(ud.\" + i + \".location, false, uv.\" + i + \");\\n \\n\";\n }\n }\n else if (data.type === 'vec2' && data.size === 1)\n {\n // TODO - do we need both here?\n // maybe we can get away with only using points?\n if (group.uniforms[i].x !== undefined)\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v.x || cv[1] !== v.y)\\n {\\n cv[0] = v.x;\\n cv[1] = v.y;\\n gl.uniform2f(ud.\" + i + \".location, v.x, v.y);\\n }\\n\";\n }\n else\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v[0] || cv[1] !== v[1])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n gl.uniform2f(ud.\" + i + \".location, v[0], v[1]);\\n }\\n \\n\";\n }\n }\n else if (data.type === 'vec4' && data.size === 1)\n {\n // TODO - do we need both here?\n // maybe we can get away with only using points?\n if (group.uniforms[i].width !== undefined)\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v.x || cv[1] !== v.y || cv[2] !== v.width || cv[3] !== v.height)\\n {\\n cv[0] = v.x;\\n cv[1] = v.y;\\n cv[2] = v.width;\\n cv[3] = v.height;\\n gl.uniform4f(ud.\" + i + \".location, v.x, v.y, v.width, v.height)\\n }\\n\";\n }\n else\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2] || cv[3] !== v[3])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n cv[2] = v[2];\\n cv[3] = v[3];\\n\\n gl.uniform4f(ud.\" + i + \".location, v[0], v[1], v[2], v[3])\\n }\\n \\n\";\n }\n }\n else\n {\n var templateType = (data.size === 1) ? GLSL_TO_SINGLE_SETTERS_CACHED : GLSL_TO_ARRAY_SETTERS;\n\n var template = templateType[data.type].replace('location', (\"ud.\" + i + \".location\"));\n\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n \" + template + \";\\n\";\n }\n }\n\n return new Function('ud', 'uv', 'renderer', func); // eslint-disable-line no-new-func\n}\n\nvar fragTemplate = [\n 'precision mediump float;',\n 'void main(void){',\n 'float test = 0.1;',\n '%forloop%',\n 'gl_FragColor = vec4(0.0);',\n '}' ].join('\\n');\n\nfunction checkMaxIfStatementsInShader(maxIfs, gl)\n{\n if (maxIfs === 0)\n {\n throw new Error('Invalid value of `0` passed to `checkMaxIfStatementsInShader`');\n }\n\n var shader = gl.createShader(gl.FRAGMENT_SHADER);\n\n while (true) // eslint-disable-line no-constant-condition\n {\n var fragmentSrc = fragTemplate.replace(/%forloop%/gi, generateIfTestSrc(maxIfs));\n\n gl.shaderSource(shader, fragmentSrc);\n gl.compileShader(shader);\n\n if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS))\n {\n maxIfs = (maxIfs / 2) | 0;\n }\n else\n {\n // valid!\n break;\n }\n }\n\n return maxIfs;\n}\n\nfunction generateIfTestSrc(maxIfs)\n{\n var src = '';\n\n for (var i = 0; i < maxIfs; ++i)\n {\n if (i > 0)\n {\n src += '\\nelse ';\n }\n\n if (i < maxIfs - 1)\n {\n src += \"if(test == \" + i + \".0){}\";\n }\n }\n\n return src;\n}\n\n// Cache the result to prevent running this over and over\nvar unsafeEval;\n\n/**\n * Not all platforms allow to generate function code (e.g., `new Function`).\n * this provides the platform-level detection.\n *\n * @private\n * @returns {boolean}\n */\nfunction unsafeEvalSupported()\n{\n if (typeof unsafeEval === 'boolean')\n {\n return unsafeEval;\n }\n\n try\n {\n /* eslint-disable no-new-func */\n var func = new Function('param1', 'param2', 'param3', 'return param1[param2] === param3;');\n /* eslint-enable no-new-func */\n\n unsafeEval = func({ a: 'b' }, 'a', 'b') === true;\n }\n catch (e)\n {\n unsafeEval = false;\n }\n\n return unsafeEval;\n}\n\nvar defaultFragment = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n gl_FragColor *= texture2D(uSampler, vTextureCoord);\\n}\";\n\nvar defaultVertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void){\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n vTextureCoord = aTextureCoord;\\n}\\n\";\n\n// import * as from '../systems/shader/shader';\n\nvar UID$3 = 0;\n\nvar nameCache = {};\n\n/**\n * Helper class to create a shader program.\n *\n * @class\n * @memberof PIXI\n */\nvar Program = function Program(vertexSrc, fragmentSrc, name)\n{\n if ( name === void 0 ) name = 'pixi-shader';\n\n this.id = UID$3++;\n\n /**\n * The vertex shader.\n *\n * @member {string}\n */\n this.vertexSrc = vertexSrc || Program.defaultVertexSrc;\n\n /**\n * The fragment shader.\n *\n * @member {string}\n */\n this.fragmentSrc = fragmentSrc || Program.defaultFragmentSrc;\n\n this.vertexSrc = this.vertexSrc.trim();\n this.fragmentSrc = this.fragmentSrc.trim();\n\n if (this.vertexSrc.substring(0, 8) !== '#version')\n {\n name = name.replace(/\\s+/g, '-');\n\n if (nameCache[name])\n {\n nameCache[name]++;\n name += \"-\" + (nameCache[name]);\n }\n else\n {\n nameCache[name] = 1;\n }\n\n this.vertexSrc = \"#define SHADER_NAME \" + name + \"\\n\" + (this.vertexSrc);\n this.fragmentSrc = \"#define SHADER_NAME \" + name + \"\\n\" + (this.fragmentSrc);\n\n this.vertexSrc = setPrecision(this.vertexSrc, settings.PRECISION_VERTEX, PRECISION.HIGH);\n this.fragmentSrc = setPrecision(this.fragmentSrc, settings.PRECISION_FRAGMENT, getMaxFragmentPrecision());\n }\n\n // currently this does not extract structs only default types\n this.extractData(this.vertexSrc, this.fragmentSrc);\n\n // this is where we store shader references..\n this.glPrograms = {};\n\n this.syncUniforms = null;\n};\n\nvar staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } };\n\n/**\n * Extracts the data for a buy creating a small test program\n * or reading the src directly.\n * @protected\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n */\nProgram.prototype.extractData = function extractData (vertexSrc, fragmentSrc)\n{\n var gl = getTestContext();\n\n if (gl)\n {\n var program = compileProgram(gl, vertexSrc, fragmentSrc);\n\n this.attributeData = this.getAttributeData(program, gl);\n this.uniformData = this.getUniformData(program, gl);\n\n gl.deleteProgram(program);\n }\n else\n {\n this.uniformData = {};\n this.attributeData = {};\n }\n};\n\n/**\n * returns the attribute data from the program\n * @private\n *\n * @param {WebGLProgram} [program] - the WebGL program\n * @param {WebGLRenderingContext} [gl] - the WebGL context\n *\n * @returns {object} the attribute data for this program\n */\nProgram.prototype.getAttributeData = function getAttributeData (program, gl)\n{\n var attributes = {};\n var attributesArray = [];\n\n var totalAttributes = gl.getProgramParameter(program, gl.ACTIVE_ATTRIBUTES);\n\n for (var i = 0; i < totalAttributes; i++)\n {\n var attribData = gl.getActiveAttrib(program, i);\n var type = mapType(gl, attribData.type);\n\n /*eslint-disable */\n var data = {\n type: type,\n name: attribData.name,\n size: mapSize(type),\n location: 0,\n };\n /* eslint-enable */\n\n attributes[attribData.name] = data;\n attributesArray.push(data);\n }\n\n attributesArray.sort(function (a, b) { return (a.name > b.name) ? 1 : -1; }); // eslint-disable-line no-confusing-arrow\n\n for (var i$1 = 0; i$1 < attributesArray.length; i$1++)\n {\n attributesArray[i$1].location = i$1;\n }\n\n return attributes;\n};\n\n/**\n * returns the uniform data from the program\n * @private\n *\n * @param {webGL-program} [program] - the webgl program\n * @param {context} [gl] - the WebGL context\n *\n * @returns {object} the uniform data for this program\n */\nProgram.prototype.getUniformData = function getUniformData (program, gl)\n{\n var uniforms = {};\n\n var totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS);\n\n // TODO expose this as a prop?\n // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$');\n // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$');\n\n for (var i = 0; i < totalUniforms; i++)\n {\n var uniformData = gl.getActiveUniform(program, i);\n var name = uniformData.name.replace(/\\[.*?\\]/, '');\n\n var isArray = uniformData.name.match(/\\[.*?\\]/, '');\n var type = mapType(gl, uniformData.type);\n\n /*eslint-disable */\n uniforms[name] = {\n type: type,\n size: uniformData.size,\n isArray:isArray,\n value: defaultValue(type, uniformData.size),\n };\n /* eslint-enable */\n }\n\n return uniforms;\n};\n\n/**\n * The default vertex shader source\n *\n * @static\n * @constant\n * @member {string}\n */\nstaticAccessors.defaultVertexSrc.get = function ()\n{\n return defaultVertex;\n};\n\n/**\n * The default fragment shader source\n *\n * @static\n * @constant\n * @member {string}\n */\nstaticAccessors.defaultFragmentSrc.get = function ()\n{\n return defaultFragment;\n};\n\n/**\n * A short hand function to create a program based of a vertex and fragment shader\n * this method will also check to see if there is a cached program.\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones.\n *\n * @returns {PIXI.Program} an shiny new Pixi shader!\n */\nProgram.from = function from (vertexSrc, fragmentSrc, name)\n{\n var key = vertexSrc + fragmentSrc;\n\n var program = ProgramCache[key];\n\n if (!program)\n {\n ProgramCache[key] = program = new Program(vertexSrc, fragmentSrc, name);\n }\n\n return program;\n};\n\nObject.defineProperties( Program, staticAccessors );\n\n/**\n * A helper class for shaders\n *\n * @class\n * @memberof PIXI\n */\nvar Shader = function Shader(program, uniforms)\n{\n /**\n * Program that the shader uses\n *\n * @member {PIXI.Program}\n */\n this.program = program;\n\n // lets see whats been passed in\n // uniforms should be converted to a uniform group\n if (uniforms)\n {\n if (uniforms instanceof UniformGroup)\n {\n this.uniformGroup = uniforms;\n }\n else\n {\n this.uniformGroup = new UniformGroup(uniforms);\n }\n }\n else\n {\n this.uniformGroup = new UniformGroup({});\n }\n\n // time to build some getters and setters!\n // I guess down the line this could sort of generate an instruction list rather than use dirty ids?\n // does the trick for now though!\n for (var i in program.uniformData)\n {\n if (this.uniformGroup.uniforms[i] instanceof Array)\n {\n this.uniformGroup.uniforms[i] = new Float32Array(this.uniformGroup.uniforms[i]);\n }\n }\n};\n\nvar prototypeAccessors$2 = { uniforms: { configurable: true } };\n\n// TODO move to shader system..\nShader.prototype.checkUniformExists = function checkUniformExists (name, group)\n{\n if (group.uniforms[name])\n {\n return true;\n }\n\n for (var i in group.uniforms)\n {\n var uniform = group.uniforms[i];\n\n if (uniform.group)\n {\n if (this.checkUniformExists(name, uniform))\n {\n return true;\n }\n }\n }\n\n return false;\n};\n\nShader.prototype.destroy = function destroy ()\n{\n // usage count on programs?\n // remove if not used!\n this.uniformGroup = null;\n};\n\n/**\n * Shader uniform values, shortcut for `uniformGroup.uniforms`\n * @readonly\n * @member {object}\n */\nprototypeAccessors$2.uniforms.get = function ()\n{\n return this.uniformGroup.uniforms;\n};\n\n/**\n * A short hand function to create a shader based of a vertex and fragment shader\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones.\n *\n * @returns {PIXI.Shader} an shiny new Pixi shader!\n */\nShader.from = function from (vertexSrc, fragmentSrc, uniforms)\n{\n var program = Program.from(vertexSrc, fragmentSrc);\n\n return new Shader(program, uniforms);\n};\n\nObject.defineProperties( Shader.prototype, prototypeAccessors$2 );\n\n/* eslint-disable max-len */\n\nvar BLEND = 0;\nvar OFFSET = 1;\nvar CULLING = 2;\nvar DEPTH_TEST = 3;\nvar WINDING = 4;\n\n/**\n * This is a WebGL state, and is is passed The WebGL StateManager.\n *\n * Each mesh rendered may require WebGL to be in a different state.\n * For example you may want different blend mode or to enable polygon offsets\n *\n * @class\n * @memberof PIXI\n */\nvar State = function State()\n{\n this.data = 0;\n\n this.blendMode = BLEND_MODES.NORMAL;\n this.polygonOffset = 0;\n\n this.blend = true;\n // this.depthTest = true;\n};\n\nvar prototypeAccessors$3 = { blend: { configurable: true },offsets: { configurable: true },culling: { configurable: true },depthTest: { configurable: true },clockwiseFrontFace: { configurable: true },blendMode: { configurable: true },polygonOffset: { configurable: true } };\n\n/**\n * Activates blending of the computed fragment color values\n *\n * @member {boolean}\n */\nprototypeAccessors$3.blend.get = function ()\n{\n return !!(this.data & (1 << BLEND));\n};\n\nprototypeAccessors$3.blend.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << BLEND)) !== value)\n {\n this.data ^= (1 << BLEND);\n }\n};\n\n/**\n * Activates adding an offset to depth values of polygon's fragments\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.offsets.get = function ()\n{\n return !!(this.data & (1 << OFFSET));\n};\n\nprototypeAccessors$3.offsets.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << OFFSET)) !== value)\n {\n this.data ^= (1 << OFFSET);\n }\n};\n\n/**\n * Activates culling of polygons.\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.culling.get = function ()\n{\n return !!(this.data & (1 << CULLING));\n};\n\nprototypeAccessors$3.culling.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << CULLING)) !== value)\n {\n this.data ^= (1 << CULLING);\n }\n};\n\n/**\n * Activates depth comparisons and updates to the depth buffer.\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.depthTest.get = function ()\n{\n return !!(this.data & (1 << DEPTH_TEST));\n};\n\nprototypeAccessors$3.depthTest.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << DEPTH_TEST)) !== value)\n {\n this.data ^= (1 << DEPTH_TEST);\n }\n};\n\n/**\n * Specifies whether or not front or back-facing polygons can be culled.\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.clockwiseFrontFace.get = function ()\n{\n return !!(this.data & (1 << WINDING));\n};\n\nprototypeAccessors$3.clockwiseFrontFace.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << WINDING)) !== value)\n {\n this.data ^= (1 << WINDING);\n }\n};\n\n/**\n * The blend mode to be applied when this state is set. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n * Setting this mode to anything other than NO_BLEND will automatically switch blending on.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\nprototypeAccessors$3.blendMode.get = function ()\n{\n return this._blendMode;\n};\n\nprototypeAccessors$3.blendMode.set = function (value) // eslint-disable-line require-jsdoc\n{\n this.blend = (value !== BLEND_MODES.NONE);\n this._blendMode = value;\n};\n\n/**\n * The polygon offset. Setting this property to anything other than 0 will automatically enable polygon offset fill.\n *\n * @member {number}\n * @default 0\n */\nprototypeAccessors$3.polygonOffset.get = function ()\n{\n return this._polygonOffset;\n};\n\nprototypeAccessors$3.polygonOffset.set = function (value) // eslint-disable-line require-jsdoc\n{\n this.offsets = !!value;\n this._polygonOffset = value;\n};\n\nState.for2d = function for2d ()\n{\n var state = new State();\n\n state.depthTest = false;\n state.blend = true;\n\n return state;\n};\n\nObject.defineProperties( State.prototype, prototypeAccessors$3 );\n\nvar defaultVertex$1 = \"attribute vec2 aVertexPosition;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nuniform vec4 inputSize;\\nuniform vec4 outputFrame;\\n\\nvec4 filterVertexPosition( void )\\n{\\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\\n\\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\\n}\\n\\nvec2 filterTextureCoord( void )\\n{\\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\\n}\\n\\nvoid main(void)\\n{\\n gl_Position = filterVertexPosition();\\n vTextureCoord = filterTextureCoord();\\n}\\n\";\n\nvar defaultFragment$1 = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n gl_FragColor = texture2D(uSampler, vTextureCoord);\\n}\\n\";\n\n/**\n * Filter is a special type of WebGL shader that is applied to the screen.\n *\n * {@link http://pixijs.io/examples/#/filters/blur-filter.js Example} of the\n * {@link PIXI.filters.BlurFilter BlurFilter}.\n *\n * ### Usage\n * Filters can be applied to any DisplayObject or Container.\n * PixiJS' `FilterSystem` renders the container into temporary Framebuffer,\n * then filter renders it to the screen.\n * Multiple filters can be added to the `filters` array property and stacked on each other.\n *\n * ```\n * const filter = new PIXI.Filter(myShaderVert, myShaderFrag, { myUniform: 0.5 });\n * const container = new PIXI.Container();\n * container.filters = [filter];\n * ```\n *\n * ### Previous Version Differences\n *\n * In PixiJS **v3**, a filter was always applied to _whole screen_.\n *\n * In PixiJS **v4**, a filter can be applied _only part of the screen_.\n * Developers had to create a set of uniforms to deal with coordinates.\n *\n * In PixiJS **v5** combines _both approaches_.\n * Developers can use normal coordinates of v3 and then allow filter to use partial Framebuffers,\n * bringing those extra uniforms into account.\n *\n * Also be aware that we have changed default vertex shader, please consult\n * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}.\n *\n * ### Built-in Uniforms\n *\n * PixiJS viewport uses screen (CSS) coordinates, `(0, 0, renderer.screen.width, renderer.screen.height)`,\n * and `projectionMatrix` uniform maps it to the gl viewport.\n *\n * **uSampler**\n *\n * The most important uniform is the input texture that container was rendered into.\n * _Important note: as with all Framebuffers in PixiJS, both input and output are\n * premultiplied by alpha._\n *\n * By default, input normalized coordinates are passed to fragment shader with `vTextureCoord`.\n * Use it to sample the input.\n *\n * ```\n * const fragment = `\n * varying vec2 vTextureCoord;\n * uniform sampler2D uSampler;\n * void main(void)\n * {\n * gl_FragColor = texture2D(uSampler, vTextureCoord);\n * }\n * `;\n *\n * const myFilter = new PIXI.Filter(null, fragment);\n * ```\n *\n * This filter is just one uniform less than {@link PIXI.filters.AlphaFilter AlphaFilter}.\n *\n * **outputFrame**\n *\n * The `outputFrame` holds the rectangle where filter is applied in screen (CSS) coordinates.\n * It's the same as `renderer.screen` for a fullscreen filter.\n * Only a part of `outputFrame.zw` size of temporary Framebuffer is used,\n * `(0, 0, outputFrame.width, outputFrame.height)`,\n *\n * Filters uses this quad to normalized (0-1) space, its passed into `aVertexPosition` attribute.\n * To calculate vertex position in screen space using normalized (0-1) space:\n *\n * ```\n * vec4 filterVertexPosition( void )\n * {\n * vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n * return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n * }\n * ```\n *\n * **inputSize**\n *\n * Temporary framebuffer is different, it can be either the size of screen, either power-of-two.\n * The `inputSize.xy` are size of temporary framebuffer that holds input.\n * The `inputSize.zw` is inverted, it's a shortcut to evade division inside the shader.\n *\n * Set `inputSize.xy = outputFrame.zw` for a fullscreen filter.\n *\n * To calculate input normalized coordinate, you have to map it to filter normalized space.\n * Multiply by `outputFrame.zw` to get input coordinate.\n * Divide by `inputSize.xy` to get input normalized coordinate.\n *\n * ```\n * vec2 filterTextureCoord( void )\n * {\n * return aVertexPosition * (outputFrame.zw * inputSize.zw); // same as /inputSize.xy\n * }\n * ```\n * **resolution**\n *\n * The `resolution` is the ratio of screen (CSS) pixels to real pixels.\n *\n * **inputPixel**\n *\n * `inputPixel.xy` is the size of framebuffer in real pixels, same as `inputSize.xy * resolution`\n * `inputPixel.zw` is inverted `inputPixel.xy`.\n *\n * It's handy for filters that use neighbour pixels, like {@link PIXI.filters.FXAAFilter FXAAFilter}.\n *\n * **inputClamp**\n *\n * If you try to get info from outside of used part of Framebuffer - you'll get undefined behaviour.\n * For displacements, coordinates has to be clamped.\n *\n * The `inputClamp.xy` is left-top pixel center, you may ignore it, because we use left-top part of Framebuffer\n * `inputClamp.zw` is bottom-right pixel center.\n *\n * ```\n * vec4 color = texture2D(uSampler, clamp(modifigedTextureCoord, inputClamp.xy, inputClamp.zw))\n * ```\n * OR\n * ```\n * vec4 color = texture2D(uSampler, min(modifigedTextureCoord, inputClamp.zw))\n * ```\n *\n * ### Additional Information\n *\n * Complete documentation on Filter usage is located in the\n * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}.\n *\n * Since PixiJS only had a handful of built-in filters, additional filters can be downloaded\n * {@link https://github.com/pixijs/pixi-filters here} from the PixiJS Filters repository.\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.Shader\n */\nvar Filter = /*@__PURE__*/(function (Shader) {\n function Filter(vertexSrc, fragmentSrc, uniforms)\n {\n var program = Program.from(vertexSrc || Filter.defaultVertexSrc,\n fragmentSrc || Filter.defaultFragmentSrc);\n\n Shader.call(this, program, uniforms);\n\n /**\n * The padding of the filter. Some filters require extra space to breath such as a blur.\n * Increasing this will add extra width and height to the bounds of the object that the\n * filter is applied to.\n *\n * @member {number}\n */\n this.padding = 0;\n\n /**\n * The resolution of the filter. Setting this to be lower will lower the quality but\n * increase the performance of the filter.\n *\n * @member {number}\n */\n this.resolution = settings.FILTER_RESOLUTION;\n\n /**\n * If enabled is true the filter is applied, if false it will not.\n *\n * @member {boolean}\n */\n this.enabled = true;\n\n /**\n * If enabled, PixiJS will fit the filter area into boundaries for better performance.\n * Switch it off if it does not work for specific shader.\n *\n * @member {boolean}\n */\n this.autoFit = true;\n\n /**\n * Legacy filters use position and uvs from attributes\n * @member {boolean}\n * @readonly\n */\n this.legacy = !!this.program.attributeData.aTextureCoord;\n\n /**\n * The WebGL state the filter requires to render\n * @member {PIXI.State}\n */\n this.state = new State();\n }\n\n if ( Shader ) Filter.__proto__ = Shader;\n Filter.prototype = Object.create( Shader && Shader.prototype );\n Filter.prototype.constructor = Filter;\n\n var prototypeAccessors = { blendMode: { configurable: true } };\n var staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } };\n\n /**\n * Applies the filter\n *\n * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it\n * @param {object} [currentState] - It's current state of filter.\n * There are some useful properties in the currentState :\n * target, filters, sourceFrame, destinationFrame, renderTarget, resolution\n */\n Filter.prototype.apply = function apply (filterManager, input, output, clear, currentState)\n {\n // do as you please!\n\n filterManager.applyFilter(this, input, output, clear, currentState);\n\n // or just do a regular render..\n };\n\n /**\n * Sets the blendmode of the filter\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n */\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n prototypeAccessors.blendMode.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.state.blendMode = value;\n };\n\n /**\n * The default vertex shader source\n *\n * @static\n * @type {string}\n * @constant\n */\n staticAccessors.defaultVertexSrc.get = function ()\n {\n return defaultVertex$1;\n };\n\n /**\n * The default fragment shader source\n *\n * @static\n * @type {string}\n * @constant\n */\n staticAccessors.defaultFragmentSrc.get = function ()\n {\n return defaultFragment$1;\n };\n\n Object.defineProperties( Filter.prototype, prototypeAccessors );\n Object.defineProperties( Filter, staticAccessors );\n\n return Filter;\n}(Shader));\n\n/**\n * Used for caching shader IDs\n *\n * @static\n * @type {object}\n * @protected\n */\nFilter.SOURCE_KEY_MAP = {};\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 otherMatrix;\\n\\nvarying vec2 vMaskCoord;\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vMaskCoord;\\nvarying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform sampler2D mask;\\nuniform float alpha;\\nuniform float npmAlpha;\\nuniform vec4 maskClamp;\\n\\nvoid main(void)\\n{\\n float clip = step(3.5,\\n step(maskClamp.x, vMaskCoord.x) +\\n step(maskClamp.y, vMaskCoord.y) +\\n step(vMaskCoord.x, maskClamp.z) +\\n step(vMaskCoord.y, maskClamp.w));\\n\\n vec4 original = texture2D(uSampler, vTextureCoord);\\n vec4 masky = texture2D(mask, vMaskCoord);\\n float alphaMul = 1.0 - npmAlpha * (1.0 - masky.a);\\n\\n original *= (alphaMul * masky.r * alpha * clip);\\n\\n gl_FragColor = original;\\n}\\n\";\n\nvar tempMat = new Matrix();\n\n/**\n * Class controls uv mapping from Texture normal space to BaseTexture normal space.\n *\n * Takes `trim` and `rotate` into account. May contain clamp settings for Meshes and TilingSprite.\n *\n * Can be used in Texture `uvMatrix` field, or separately, you can use different clamp settings on the same texture.\n * If you want to add support for texture region of certain feature or filter, that's what you're looking for.\n *\n * Takes track of Texture changes through `_lastTextureID` private field.\n * Use `update()` method call to track it from outside.\n *\n * @see PIXI.Texture\n * @see PIXI.Mesh\n * @see PIXI.TilingSprite\n * @class\n * @memberof PIXI\n */\nvar TextureMatrix = function TextureMatrix(texture, clampMargin)\n{\n this._texture = texture;\n\n /**\n * Matrix operation that converts texture region coords to texture coords\n * @member {PIXI.Matrix}\n * @readonly\n */\n this.mapCoord = new Matrix();\n\n /**\n * Clamp region for normalized coords, left-top pixel center in xy , bottom-right in zw.\n * Calculated based on clampOffset.\n * @member {Float32Array}\n * @readonly\n */\n this.uClampFrame = new Float32Array(4);\n\n /**\n * Normalized clamp offset.\n * Calculated based on clampOffset.\n * @member {Float32Array}\n * @readonly\n */\n this.uClampOffset = new Float32Array(2);\n\n /**\n * Tracks Texture frame changes\n * @member {number}\n * @protected\n */\n this._updateID = -1;\n\n /**\n * Changes frame clamping\n * Works with TilingSprite and Mesh\n * Change to 1.5 if you texture has repeated right and bottom lines, that leads to smoother borders\n *\n * @default 0\n * @member {number}\n */\n this.clampOffset = 0;\n\n /**\n * Changes frame clamping\n * Works with TilingSprite and Mesh\n * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas\n *\n * @default 0.5\n * @member {number}\n */\n this.clampMargin = (typeof clampMargin === 'undefined') ? 0.5 : clampMargin;\n\n /**\n * If texture size is the same as baseTexture\n * @member {boolean}\n * @default false\n * @readonly\n */\n this.isSimple = false;\n};\n\nvar prototypeAccessors$4 = { texture: { configurable: true } };\n\n/**\n * texture property\n * @member {PIXI.Texture}\n */\nprototypeAccessors$4.texture.get = function ()\n{\n return this._texture;\n};\n\nprototypeAccessors$4.texture.set = function (value) // eslint-disable-line require-jsdoc\n{\n this._texture = value;\n this._updateID = -1;\n};\n\n/**\n * Multiplies uvs array to transform\n * @param {Float32Array} uvs mesh uvs\n * @param {Float32Array} [out=uvs] output\n * @returns {Float32Array} output\n */\nTextureMatrix.prototype.multiplyUvs = function multiplyUvs (uvs, out)\n{\n if (out === undefined)\n {\n out = uvs;\n }\n\n var mat = this.mapCoord;\n\n for (var i = 0; i < uvs.length; i += 2)\n {\n var x = uvs[i];\n var y = uvs[i + 1];\n\n out[i] = (x * mat.a) + (y * mat.c) + mat.tx;\n out[i + 1] = (x * mat.b) + (y * mat.d) + mat.ty;\n }\n\n return out;\n};\n\n/**\n * updates matrices if texture was changed\n * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case\n * @returns {boolean} whether or not it was updated\n */\nTextureMatrix.prototype.update = function update (forceUpdate)\n{\n var tex = this._texture;\n\n if (!tex || !tex.valid)\n {\n return false;\n }\n\n if (!forceUpdate\n && this._updateID === tex._updateID)\n {\n return false;\n }\n\n this._updateID = tex._updateID;\n\n var uvs = tex._uvs;\n\n this.mapCoord.set(uvs.x1 - uvs.x0, uvs.y1 - uvs.y0, uvs.x3 - uvs.x0, uvs.y3 - uvs.y0, uvs.x0, uvs.y0);\n\n var orig = tex.orig;\n var trim = tex.trim;\n\n if (trim)\n {\n tempMat.set(orig.width / trim.width, 0, 0, orig.height / trim.height,\n -trim.x / trim.width, -trim.y / trim.height);\n this.mapCoord.append(tempMat);\n }\n\n var texBase = tex.baseTexture;\n var frame = this.uClampFrame;\n var margin = this.clampMargin / texBase.resolution;\n var offset = this.clampOffset;\n\n frame[0] = (tex._frame.x + margin + offset) / texBase.width;\n frame[1] = (tex._frame.y + margin + offset) / texBase.height;\n frame[2] = (tex._frame.x + tex._frame.width - margin + offset) / texBase.width;\n frame[3] = (tex._frame.y + tex._frame.height - margin + offset) / texBase.height;\n this.uClampOffset[0] = offset / texBase.realWidth;\n this.uClampOffset[1] = offset / texBase.realHeight;\n\n this.isSimple = tex._frame.width === texBase.width\n && tex._frame.height === texBase.height\n && tex.rotate === 0;\n\n return true;\n};\n\nObject.defineProperties( TextureMatrix.prototype, prototypeAccessors$4 );\n\n/**\n * This handles a Sprite acting as a mask, as opposed to a Graphic.\n *\n * WebGL only.\n *\n * @class\n * @extends PIXI.Filter\n * @memberof PIXI\n */\nvar SpriteMaskFilter = /*@__PURE__*/(function (Filter) {\n function SpriteMaskFilter(sprite)\n {\n var maskMatrix = new Matrix();\n\n Filter.call(this, vertex, fragment);\n\n sprite.renderable = false;\n\n /**\n * Sprite mask\n * @member {PIXI.Sprite}\n */\n this.maskSprite = sprite;\n\n /**\n * Mask matrix\n * @member {PIXI.Matrix}\n */\n this.maskMatrix = maskMatrix;\n }\n\n if ( Filter ) SpriteMaskFilter.__proto__ = Filter;\n SpriteMaskFilter.prototype = Object.create( Filter && Filter.prototype );\n SpriteMaskFilter.prototype.constructor = SpriteMaskFilter;\n\n /**\n * Applies the filter\n *\n * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it.\n */\n SpriteMaskFilter.prototype.apply = function apply (filterManager, input, output, clear)\n {\n var maskSprite = this.maskSprite;\n var tex = this.maskSprite.texture;\n\n if (!tex.valid)\n {\n return;\n }\n if (!tex.transform)\n {\n // margin = 0.0, let it bleed a bit, shader code becomes easier\n // assuming that atlas textures were made with 1-pixel padding\n tex.transform = new TextureMatrix(tex, 0.0);\n }\n tex.transform.update();\n\n this.uniforms.npmAlpha = tex.baseTexture.premultiplyAlpha ? 0.0 : 1.0;\n this.uniforms.mask = tex;\n // get _normalized sprite texture coords_ and convert them to _normalized atlas texture coords_ with `prepend`\n this.uniforms.otherMatrix = filterManager.calculateSpriteMatrix(this.maskMatrix, maskSprite)\n .prepend(tex.transform.mapCoord);\n this.uniforms.alpha = maskSprite.worldAlpha;\n this.uniforms.maskClamp = tex.transform.uClampFrame;\n\n filterManager.applyFilter(this, input, output, clear);\n };\n\n return SpriteMaskFilter;\n}(Filter));\n\n/**\n * System plugin to the renderer to manage masks.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar MaskSystem = /*@__PURE__*/(function (System) {\n function MaskSystem(renderer)\n {\n System.call(this, renderer);\n\n // TODO - we don't need both!\n /**\n * `true` if current pushed masked is scissor\n * @member {boolean}\n * @readonly\n */\n this.scissor = false;\n\n /**\n * Mask data\n * @member {PIXI.Graphics}\n * @readonly\n */\n this.scissorData = null;\n\n /**\n * Target to mask\n * @member {PIXI.DisplayObject}\n * @readonly\n */\n this.scissorRenderTarget = null;\n\n /**\n * Enable scissor\n * @member {boolean}\n * @readonly\n */\n this.enableScissor = false;\n\n /**\n * Pool of used sprite mask filters\n * @member {PIXI.SpriteMaskFilter[]}\n * @readonly\n */\n this.alphaMaskPool = [];\n\n /**\n * Current index of alpha mask pool\n * @member {number}\n * @default 0\n * @readonly\n */\n this.alphaMaskIndex = 0;\n }\n\n if ( System ) MaskSystem.__proto__ = System;\n MaskSystem.prototype = Object.create( System && System.prototype );\n MaskSystem.prototype.constructor = MaskSystem;\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.DisplayObject} target - Display Object to push the mask to\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.push = function push (target, maskData)\n {\n // TODO the root check means scissor rect will not\n // be used on render textures more info here:\n // https://github.com/pixijs/pixi.js/pull/3545\n\n if (maskData.isSprite)\n {\n this.pushSpriteMask(target, maskData);\n }\n else if (this.enableScissor\n && !this.scissor\n && this.renderer._activeRenderTarget.root\n && !this.renderer.stencil.stencilMaskStack.length\n && maskData.isFastRect())\n {\n var matrix = maskData.worldTransform;\n\n var rot = Math.atan2(matrix.b, matrix.a);\n\n // use the nearest degree!\n rot = Math.round(rot * (180 / Math.PI));\n\n if (rot % 90)\n {\n this.pushStencilMask(maskData);\n }\n else\n {\n this.pushScissorMask(target, maskData);\n }\n }\n else\n {\n this.pushStencilMask(maskData);\n }\n };\n\n /**\n * Removes the last mask from the mask stack and doesn't return it.\n *\n * @param {PIXI.DisplayObject} target - Display Object to pop the mask from\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pop = function pop (target, maskData)\n {\n if (maskData.isSprite)\n {\n this.popSpriteMask(target, maskData);\n }\n else if (this.enableScissor && !this.renderer.stencil.stencilMaskStack.length)\n {\n this.popScissorMask(target, maskData);\n }\n else\n {\n this.popStencilMask(target, maskData);\n }\n };\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.RenderTexture} target - Display Object to push the sprite mask to\n * @param {PIXI.Sprite} maskData - Sprite to be used as the mask\n */\n MaskSystem.prototype.pushSpriteMask = function pushSpriteMask (target, maskData)\n {\n var alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex];\n\n if (!alphaMaskFilter)\n {\n alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex] = [new SpriteMaskFilter(maskData)];\n }\n\n alphaMaskFilter[0].resolution = this.renderer.resolution;\n alphaMaskFilter[0].maskSprite = maskData;\n\n var stashFilterArea = target.filterArea;\n\n target.filterArea = maskData.getBounds(true);\n this.renderer.filter.push(target, alphaMaskFilter);\n target.filterArea = stashFilterArea;\n\n this.alphaMaskIndex++;\n };\n\n /**\n * Removes the last filter from the filter stack and doesn't return it.\n *\n */\n MaskSystem.prototype.popSpriteMask = function popSpriteMask ()\n {\n this.renderer.filter.pop();\n this.alphaMaskIndex--;\n };\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pushStencilMask = function pushStencilMask (maskData)\n {\n this.renderer.batch.flush();\n this.renderer.stencil.pushStencil(maskData);\n };\n\n /**\n * Removes the last filter from the filter stack and doesn't return it.\n *\n */\n MaskSystem.prototype.popStencilMask = function popStencilMask ()\n {\n // this.renderer.currentRenderer.stop();\n this.renderer.stencil.popStencil();\n };\n\n /**\n *\n * @param {PIXI.DisplayObject} target - Display Object to push the mask to\n * @param {PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pushScissorMask = function pushScissorMask (target, maskData)\n {\n maskData.renderable = true;\n\n var renderTarget = this.renderer._activeRenderTarget;\n\n var bounds = maskData.getBounds();\n\n bounds.fit(renderTarget.size);\n maskData.renderable = false;\n\n this.renderer.gl.enable(this.renderer.gl.SCISSOR_TEST);\n\n var resolution = this.renderer.resolution;\n\n this.renderer.gl.scissor(\n bounds.x * resolution,\n (renderTarget.root ? renderTarget.size.height - bounds.y - bounds.height : bounds.y) * resolution,\n bounds.width * resolution,\n bounds.height * resolution\n );\n\n this.scissorRenderTarget = renderTarget;\n this.scissorData = maskData;\n this.scissor = true;\n };\n\n /**\n * Pop scissor mask\n *\n */\n MaskSystem.prototype.popScissorMask = function popScissorMask ()\n {\n this.scissorRenderTarget = null;\n this.scissorData = null;\n this.scissor = false;\n\n // must be scissor!\n var ref = this.renderer;\n var gl = ref.gl;\n\n gl.disable(gl.SCISSOR_TEST);\n };\n\n return MaskSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage stencils (used for masks).\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar StencilSystem = /*@__PURE__*/(function (System) {\n function StencilSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * The mask stack\n * @member {PIXI.Graphics[]}\n */\n this.stencilMaskStack = [];\n }\n\n if ( System ) StencilSystem.__proto__ = System;\n StencilSystem.prototype = Object.create( System && System.prototype );\n StencilSystem.prototype.constructor = StencilSystem;\n\n /**\n * Changes the mask stack that is used by this System.\n *\n * @param {PIXI.Graphics[]} stencilMaskStack - The mask stack\n */\n StencilSystem.prototype.setMaskStack = function setMaskStack (stencilMaskStack)\n {\n var gl = this.renderer.gl;\n var curStackLen = this.stencilMaskStack.length;\n\n this.stencilMaskStack = stencilMaskStack;\n if (stencilMaskStack.length !== curStackLen)\n {\n if (stencilMaskStack.length === 0)\n {\n gl.disable(gl.STENCIL_TEST);\n }\n else\n {\n gl.enable(gl.STENCIL_TEST);\n this._useCurrent();\n }\n }\n };\n\n /**\n * Applies the Mask and adds it to the current stencil stack. @alvin\n *\n * @param {PIXI.Graphics} graphics - The mask\n */\n StencilSystem.prototype.pushStencil = function pushStencil (graphics)\n {\n var gl = this.renderer.gl;\n var prevMaskCount = this.stencilMaskStack.length;\n\n if (prevMaskCount === 0)\n {\n // force use stencil texture in current framebuffer\n this.renderer.framebuffer.forceStencil();\n gl.enable(gl.STENCIL_TEST);\n }\n\n this.stencilMaskStack.push(graphics);\n\n // Increment the reference stencil value where the new mask overlaps with the old ones.\n gl.colorMask(false, false, false, false);\n gl.stencilFunc(gl.EQUAL, prevMaskCount, this._getBitwiseMask());\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.INCR);\n\n graphics.renderable = true;\n graphics.render(this.renderer);\n this.renderer.batch.flush();\n graphics.renderable = false;\n\n this._useCurrent();\n };\n\n /**\n * Removes the last mask from the stencil stack. @alvin\n */\n StencilSystem.prototype.popStencil = function popStencil ()\n {\n var gl = this.renderer.gl;\n var graphics = this.stencilMaskStack.pop();\n\n if (this.stencilMaskStack.length === 0)\n {\n // the stack is empty!\n gl.disable(gl.STENCIL_TEST);\n gl.clear(gl.STENCIL_BUFFER_BIT);\n gl.clearStencil(0);\n }\n else\n {\n // Decrement the reference stencil value where the popped mask overlaps with the other ones\n gl.colorMask(false, false, false, false);\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.DECR);\n\n graphics.renderable = true;\n graphics.render(this.renderer);\n this.renderer.batch.flush();\n graphics.renderable = false;\n\n this._useCurrent();\n }\n };\n\n /**\n * Setup renderer to use the current stencil data.\n * @private\n */\n StencilSystem.prototype._useCurrent = function _useCurrent ()\n {\n var gl = this.renderer.gl;\n\n gl.colorMask(true, true, true, true);\n gl.stencilFunc(gl.EQUAL, this.stencilMaskStack.length, this._getBitwiseMask());\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.KEEP);\n };\n\n /**\n * Fill 1s equal to the number of acitve stencil masks.\n * @private\n * @return {number} The bitwise mask.\n */\n StencilSystem.prototype._getBitwiseMask = function _getBitwiseMask ()\n {\n return (1 << this.stencilMaskStack.length) - 1;\n };\n\n /**\n * Destroys the mask stack.\n *\n */\n StencilSystem.prototype.destroy = function destroy ()\n {\n System.prototype.destroy.call(this, this);\n\n this.stencilMaskStack = null;\n };\n\n return StencilSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage the projection matrix.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\n\nvar ProjectionSystem = /*@__PURE__*/(function (System) {\n function ProjectionSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.destinationFrame = null;\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.sourceFrame = null;\n\n /**\n * Default destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.defaultFrame = null;\n\n /**\n * Project matrix\n * @member {PIXI.Matrix}\n * @readonly\n */\n this.projectionMatrix = new Matrix();\n\n /**\n * A transform that will be appended to the projection matrix\n * if null, nothing will be applied\n * @member {PIXI.Matrix}\n */\n this.transform = null;\n }\n\n if ( System ) ProjectionSystem.__proto__ = System;\n ProjectionSystem.prototype = Object.create( System && System.prototype );\n ProjectionSystem.prototype.constructor = ProjectionSystem;\n\n /**\n * Updates the projection matrix based on a projection frame (which is a rectangle)\n *\n * @param {PIXI.Rectangle} destinationFrame - The destination frame.\n * @param {PIXI.Rectangle} sourceFrame - The source frame.\n * @param {Number} resolution - Resolution\n * @param {boolean} root - If is root\n */\n ProjectionSystem.prototype.update = function update (destinationFrame, sourceFrame, resolution, root)\n {\n this.destinationFrame = destinationFrame || this.destinationFrame || this.defaultFrame;\n this.sourceFrame = sourceFrame || this.sourceFrame || destinationFrame;\n\n this.calculateProjection(this.destinationFrame, this.sourceFrame, resolution, root);\n\n if (this.transform)\n {\n this.projectionMatrix.append(this.transform);\n }\n\n var renderer = this.renderer;\n\n renderer.globalUniforms.uniforms.projectionMatrix = this.projectionMatrix;\n renderer.globalUniforms.update();\n\n // this will work for now\n // but would be sweet to stick and even on the global uniforms..\n if (renderer.shader.shader)\n {\n renderer.shader.syncUniformGroup(renderer.shader.shader.uniforms.globals);\n }\n };\n\n /**\n * Updates the projection matrix based on a projection frame (which is a rectangle)\n *\n * @param {PIXI.Rectangle} destinationFrame - The destination frame.\n * @param {PIXI.Rectangle} sourceFrame - The source frame.\n * @param {Number} resolution - Resolution\n * @param {boolean} root - If is root\n */\n ProjectionSystem.prototype.calculateProjection = function calculateProjection (destinationFrame, sourceFrame, resolution, root)\n {\n var pm = this.projectionMatrix;\n\n // I don't think we will need this line..\n // pm.identity();\n\n if (!root)\n {\n pm.a = (1 / destinationFrame.width * 2) * resolution;\n pm.d = (1 / destinationFrame.height * 2) * resolution;\n\n pm.tx = -1 - (sourceFrame.x * pm.a);\n pm.ty = -1 - (sourceFrame.y * pm.d);\n }\n else\n {\n pm.a = (1 / destinationFrame.width * 2) * resolution;\n pm.d = (-1 / destinationFrame.height * 2) * resolution;\n\n pm.tx = -1 - (sourceFrame.x * pm.a);\n pm.ty = 1 - (sourceFrame.y * pm.d);\n }\n };\n\n /**\n * Sets the transform of the active render target to the given matrix\n *\n * @param {PIXI.Matrix} matrix - The transformation matrix\n */\n ProjectionSystem.prototype.setTransform = function setTransform ()// matrix)\n {\n // this._activeRenderTarget.transform = matrix;\n };\n\n return ProjectionSystem;\n}(System));\n\nvar tempRect = new Rectangle();\n\n/**\n * System plugin to the renderer to manage render textures.\n *\n * Should be added after FramebufferSystem\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\n\nvar RenderTextureSystem = /*@__PURE__*/(function (System) {\n function RenderTextureSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * The clear background color as rgba\n * @member {number[]}\n */\n this.clearColor = renderer._backgroundColorRgba;\n\n // TODO move this property somewhere else!\n /**\n * List of masks for the StencilSystem\n * @member {PIXI.Graphics[]}\n * @readonly\n */\n this.defaultMaskStack = [];\n\n // empty render texture?\n /**\n * Render texture\n * @member {PIXI.RenderTexture}\n * @readonly\n */\n this.current = null;\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.sourceFrame = new Rectangle();\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.destinationFrame = new Rectangle();\n }\n\n if ( System ) RenderTextureSystem.__proto__ = System;\n RenderTextureSystem.prototype = Object.create( System && System.prototype );\n RenderTextureSystem.prototype.constructor = RenderTextureSystem;\n\n /**\n * Bind the current render texture\n * @param {PIXI.RenderTexture} [renderTexture] - RenderTexture to bind, by default its `null`, the screen\n * @param {PIXI.Rectangle} [sourceFrame] - part of screen that is mapped to the renderTexture\n * @param {PIXI.Rectangle} [destinationFrame] - part of renderTexture, by default it has the same size as sourceFrame\n */\n RenderTextureSystem.prototype.bind = function bind (renderTexture, sourceFrame, destinationFrame)\n {\n if ( renderTexture === void 0 ) renderTexture = null;\n\n this.current = renderTexture;\n\n var renderer = this.renderer;\n\n var resolution;\n\n if (renderTexture)\n {\n var baseTexture = renderTexture.baseTexture;\n\n resolution = baseTexture.resolution;\n\n if (!destinationFrame)\n {\n tempRect.width = baseTexture.realWidth;\n tempRect.height = baseTexture.realHeight;\n\n destinationFrame = tempRect;\n }\n\n if (!sourceFrame)\n {\n sourceFrame = destinationFrame;\n }\n\n this.renderer.framebuffer.bind(baseTexture.framebuffer, destinationFrame);\n\n this.renderer.projection.update(destinationFrame, sourceFrame, resolution, false);\n this.renderer.stencil.setMaskStack(baseTexture.stencilMaskStack);\n }\n else\n {\n resolution = this.renderer.resolution;\n\n // TODO these validation checks happen deeper down..\n // thing they can be avoided..\n if (!destinationFrame)\n {\n tempRect.width = renderer.width;\n tempRect.height = renderer.height;\n\n destinationFrame = tempRect;\n }\n\n if (!sourceFrame)\n {\n sourceFrame = destinationFrame;\n }\n\n renderer.framebuffer.bind(null, destinationFrame);\n\n // TODO store this..\n this.renderer.projection.update(destinationFrame, sourceFrame, resolution, true);\n this.renderer.stencil.setMaskStack(this.defaultMaskStack);\n }\n\n this.sourceFrame.copyFrom(sourceFrame);\n\n this.destinationFrame.x = destinationFrame.x / resolution;\n this.destinationFrame.y = destinationFrame.y / resolution;\n\n this.destinationFrame.width = destinationFrame.width / resolution;\n this.destinationFrame.height = destinationFrame.height / resolution;\n\n if (sourceFrame === destinationFrame)\n {\n this.sourceFrame.copyFrom(this.destinationFrame);\n }\n };\n\n /**\n * Erases the render texture and fills the drawing area with a colour\n *\n * @param {number[]} [clearColor] - The color as rgba, default to use the renderer backgroundColor\n * @return {PIXI.Renderer} Returns itself.\n */\n RenderTextureSystem.prototype.clear = function clear (clearColor)\n {\n if (this.current)\n {\n clearColor = clearColor || this.current.baseTexture.clearColor;\n }\n else\n {\n clearColor = clearColor || this.clearColor;\n }\n\n this.renderer.framebuffer.clear(clearColor[0], clearColor[1], clearColor[2], clearColor[3]);\n };\n\n RenderTextureSystem.prototype.resize = function resize ()// screenWidth, screenHeight)\n {\n // resize the root only!\n this.bind(null);\n };\n\n /**\n * Resets renderTexture state\n */\n RenderTextureSystem.prototype.reset = function reset ()\n {\n this.bind(null);\n };\n\n return RenderTextureSystem;\n}(System));\n\n/**\n * Helper class to create a WebGL Program\n *\n * @class\n * @memberof PIXI\n */\nvar GLProgram = function GLProgram(program, uniformData)\n{\n /**\n * The shader program\n *\n * @member {WebGLProgram}\n */\n this.program = program;\n\n /**\n * holds the uniform data which contains uniform locations\n * and current uniform values used for caching and preventing unneeded GPU commands\n * @member {Object}\n */\n this.uniformData = uniformData;\n\n /**\n * uniformGroups holds the various upload functions for the shader. Each uniform group\n * and program have a unique upload function generated.\n * @member {Object}\n */\n this.uniformGroups = {};\n};\n\n/**\n * Destroys this program\n */\nGLProgram.prototype.destroy = function destroy ()\n{\n this.uniformData = null;\n this.uniformGroups = null;\n this.program = null;\n};\n\nvar UID$4 = 0;\n\n/**\n * System plugin to the renderer to manage shaders.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar ShaderSystem = /*@__PURE__*/(function (System) {\n function ShaderSystem(renderer)\n {\n System.call(this, renderer);\n\n // Validation check that this environment support `new Function`\n this.systemCheck();\n\n /**\n * The current WebGL rendering context\n *\n * @member {WebGLRenderingContext}\n */\n this.gl = null;\n\n this.shader = null;\n this.program = null;\n\n /**\n * Cache to holds the generated functions. Stored against UniformObjects unique signature\n * @type {Object}\n * @private\n */\n this.cache = {};\n\n this.id = UID$4++;\n }\n\n if ( System ) ShaderSystem.__proto__ = System;\n ShaderSystem.prototype = Object.create( System && System.prototype );\n ShaderSystem.prototype.constructor = ShaderSystem;\n\n /**\n * Overrideable function by `@pixi/unsafe-eval` to silence\n * throwing an error if platform doesn't support unsafe-evals.\n *\n * @private\n */\n ShaderSystem.prototype.systemCheck = function systemCheck ()\n {\n if (!unsafeEvalSupported())\n {\n throw new Error('Current environment does not allow unsafe-eval, '\n + 'please use @pixi/unsafe-eval module to enable support.');\n }\n };\n\n ShaderSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n this.reset();\n };\n\n /**\n * Changes the current shader to the one given in parameter\n *\n * @param {PIXI.Shader} shader - the new shader\n * @param {boolean} dontSync - false if the shader should automatically sync its uniforms.\n * @returns {PIXI.GLProgram} the glProgram that belongs to the shader.\n */\n ShaderSystem.prototype.bind = function bind (shader, dontSync)\n {\n shader.uniforms.globals = this.renderer.globalUniforms;\n\n var program = shader.program;\n var glProgram = program.glPrograms[this.renderer.CONTEXT_UID] || this.generateShader(shader);\n\n this.shader = shader;\n\n // TODO - some current Pixi plugins bypass this.. so it not safe to use yet..\n if (this.program !== program)\n {\n this.program = program;\n this.gl.useProgram(glProgram.program);\n }\n\n if (!dontSync)\n {\n this.syncUniformGroup(shader.uniformGroup);\n }\n\n return glProgram;\n };\n\n /**\n * Uploads the uniforms values to the currently bound shader.\n *\n * @param {object} uniforms - the uniforms values that be applied to the current shader\n */\n ShaderSystem.prototype.setUniforms = function setUniforms (uniforms)\n {\n var shader = this.shader.program;\n var glProgram = shader.glPrograms[this.renderer.CONTEXT_UID];\n\n shader.syncUniforms(glProgram.uniformData, uniforms, this.renderer);\n };\n\n ShaderSystem.prototype.syncUniformGroup = function syncUniformGroup (group)\n {\n var glProgram = this.getglProgram();\n\n if (!group.static || group.dirtyId !== glProgram.uniformGroups[group.id])\n {\n glProgram.uniformGroups[group.id] = group.dirtyId;\n\n this.syncUniforms(group, glProgram);\n }\n };\n\n /**\n * Overrideable by the @pixi/unsafe-eval package to use static\n * syncUnforms instead.\n *\n * @private\n */\n ShaderSystem.prototype.syncUniforms = function syncUniforms (group, glProgram)\n {\n var syncFunc = group.syncUniforms[this.shader.program.id] || this.createSyncGroups(group);\n\n syncFunc(glProgram.uniformData, group.uniforms, this.renderer);\n };\n\n ShaderSystem.prototype.createSyncGroups = function createSyncGroups (group)\n {\n var id = this.getSignature(group, this.shader.program.uniformData);\n\n if (!this.cache[id])\n {\n this.cache[id] = generateUniformsSync(group, this.shader.program.uniformData);\n }\n\n group.syncUniforms[this.shader.program.id] = this.cache[id];\n\n return group.syncUniforms[this.shader.program.id];\n };\n\n /**\n * Takes a uniform group and data and generates a unique signature for them.\n *\n * @param {PIXI.UniformGroup} group the uniform group to get signature of\n * @param {Object} uniformData uniform information generated by the shader\n * @returns {String} Unique signature of the uniform group\n * @private\n */\n ShaderSystem.prototype.getSignature = function getSignature (group, uniformData)\n {\n var uniforms = group.uniforms;\n\n var strings = [];\n\n for (var i in uniforms)\n {\n strings.push(i);\n\n if (uniformData[i])\n {\n strings.push(uniformData[i].type);\n }\n }\n\n return strings.join('-');\n };\n\n /**\n * Returns the underlying GLShade rof the currently bound shader.\n * This can be handy for when you to have a little more control over the setting of your uniforms.\n *\n * @return {PIXI.GLProgram} the glProgram for the currently bound Shader for this context\n */\n ShaderSystem.prototype.getglProgram = function getglProgram ()\n {\n if (this.shader)\n {\n return this.shader.program.glPrograms[this.renderer.CONTEXT_UID];\n }\n\n return null;\n };\n\n /**\n * Generates a glProgram version of the Shader provided.\n *\n * @private\n * @param {PIXI.Shader} shader the shader that the glProgram will be based on.\n * @return {PIXI.GLProgram} A shiny new glProgram!\n */\n ShaderSystem.prototype.generateShader = function generateShader (shader)\n {\n var gl = this.gl;\n\n var program = shader.program;\n\n var attribMap = {};\n\n for (var i in program.attributeData)\n {\n attribMap[i] = program.attributeData[i].location;\n }\n\n var shaderProgram = compileProgram(gl, program.vertexSrc, program.fragmentSrc, attribMap);\n var uniformData = {};\n\n for (var i$1 in program.uniformData)\n {\n var data = program.uniformData[i$1];\n\n uniformData[i$1] = {\n location: gl.getUniformLocation(shaderProgram, i$1),\n value: defaultValue(data.type, data.size),\n };\n }\n\n var glProgram = new GLProgram(shaderProgram, uniformData);\n\n program.glPrograms[this.renderer.CONTEXT_UID] = glProgram;\n\n return glProgram;\n };\n\n /**\n * Resets ShaderSystem state, does not affect WebGL state\n */\n ShaderSystem.prototype.reset = function reset ()\n {\n this.program = null;\n this.shader = null;\n };\n\n /**\n * Destroys this System and removes all its textures\n */\n ShaderSystem.prototype.destroy = function destroy ()\n {\n // TODO implement destroy method for ShaderSystem\n this.destroyed = true;\n };\n\n return ShaderSystem;\n}(System));\n\n/**\n * Maps gl blend combinations to WebGL.\n *\n * @memberof PIXI\n * @function mapWebGLBlendModesToPixi\n * @private\n * @param {WebGLRenderingContext} gl - The rendering context.\n * @param {number[][]} [array=[]] - The array to output into.\n * @return {number[][]} Mapped modes.\n */\nfunction mapWebGLBlendModesToPixi(gl, array)\n{\n if ( array === void 0 ) array = [];\n\n // TODO - premultiply alpha would be different.\n // add a boolean for that!\n array[BLEND_MODES.NORMAL] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.ADD] = [gl.ONE, gl.ONE];\n array[BLEND_MODES.MULTIPLY] = [gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SCREEN] = [gl.ONE, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.OVERLAY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DARKEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.LIGHTEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR_DODGE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR_BURN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.HARD_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SOFT_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DIFFERENCE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.EXCLUSION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.HUE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SATURATION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.LUMINOSITY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.NONE] = [0, 0];\n\n // not-premultiplied blend modes\n array[BLEND_MODES.NORMAL_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.ADD_NPM] = [gl.SRC_ALPHA, gl.ONE, gl.ONE, gl.ONE];\n array[BLEND_MODES.SCREEN_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n\n // composite operations\n array[BLEND_MODES.SRC_IN] = [gl.DST_ALPHA, gl.ZERO];\n array[BLEND_MODES.SRC_OUT] = [gl.ONE_MINUS_DST_ALPHA, gl.ZERO];\n array[BLEND_MODES.SRC_ATOP] = [gl.DST_ALPHA, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DST_OVER] = [gl.ONE_MINUS_DST_ALPHA, gl.ONE];\n array[BLEND_MODES.DST_IN] = [gl.ZERO, gl.SRC_ALPHA];\n array[BLEND_MODES.DST_OUT] = [gl.ZERO, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DST_ATOP] = [gl.ONE_MINUS_DST_ALPHA, gl.SRC_ALPHA];\n\n // SUBTRACT from flash\n array[BLEND_MODES.SUBTRACT] = [gl.ONE, gl.ONE, gl.ONE, gl.ONE, gl.FUNC_REVERSE_SUBTRACT, gl.FUNC_ADD];\n\n return array;\n}\n\nvar BLEND$1 = 0;\nvar OFFSET$1 = 1;\nvar CULLING$1 = 2;\nvar DEPTH_TEST$1 = 3;\nvar WINDING$1 = 4;\n\n/**\n * System plugin to the renderer to manage WebGL state machines.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar StateSystem = /*@__PURE__*/(function (System) {\n function StateSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * GL context\n * @member {WebGLRenderingContext}\n * @readonly\n */\n this.gl = null;\n\n /**\n * State ID\n * @member {number}\n * @readonly\n */\n this.stateId = 0;\n\n /**\n * Polygon offset\n * @member {number}\n * @readonly\n */\n this.polygonOffset = 0;\n\n /**\n * Blend mode\n * @member {number}\n * @default PIXI.BLEND_MODES.NONE\n * @readonly\n */\n this.blendMode = BLEND_MODES.NONE;\n\n /**\n * Whether current blend equation is different\n * @member {boolean}\n * @protected\n */\n this._blendEq = false;\n\n /**\n * Collection of calls\n * @member {function[]}\n * @readonly\n */\n this.map = [];\n\n // map functions for when we set state..\n this.map[BLEND$1] = this.setBlend;\n this.map[OFFSET$1] = this.setOffset;\n this.map[CULLING$1] = this.setCullFace;\n this.map[DEPTH_TEST$1] = this.setDepthTest;\n this.map[WINDING$1] = this.setFrontFace;\n\n /**\n * Collection of check calls\n * @member {function[]}\n * @readonly\n */\n this.checks = [];\n\n /**\n * Default WebGL State\n * @member {PIXI.State}\n * @readonly\n */\n this.defaultState = new State();\n this.defaultState.blend = true;\n this.defaultState.depth = true;\n }\n\n if ( System ) StateSystem.__proto__ = System;\n StateSystem.prototype = Object.create( System && System.prototype );\n StateSystem.prototype.constructor = StateSystem;\n\n StateSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n\n this.blendModes = mapWebGLBlendModesToPixi(gl);\n\n this.set(this.defaultState);\n\n this.reset();\n };\n\n /**\n * Sets the current state\n *\n * @param {*} state - The state to set.\n */\n StateSystem.prototype.set = function set (state)\n {\n state = state || this.defaultState;\n\n // TODO maybe to an object check? ( this.state === state )?\n if (this.stateId !== state.data)\n {\n var diff = this.stateId ^ state.data;\n var i = 0;\n\n // order from least to most common\n while (diff)\n {\n if (diff & 1)\n {\n // state change!\n this.map[i].call(this, !!(state.data & (1 << i)));\n }\n\n diff = diff >> 1;\n i++;\n }\n\n this.stateId = state.data;\n }\n\n // based on the above settings we check for specific modes..\n // for example if blend is active we check and set the blend modes\n // or of polygon offset is active we check the poly depth.\n for (var i$1 = 0; i$1 < this.checks.length; i$1++)\n {\n this.checks[i$1](this, state);\n }\n };\n\n /**\n * Sets the state, when previous state is unknown\n *\n * @param {*} state - The state to set\n */\n StateSystem.prototype.forceState = function forceState (state)\n {\n state = state || this.defaultState;\n for (var i = 0; i < this.map.length; i++)\n {\n this.map[i].call(this, !!(state.data & (1 << i)));\n }\n for (var i$1 = 0; i$1 < this.checks.length; i$1++)\n {\n this.checks[i$1](this, state);\n }\n\n this.stateId = state.data;\n };\n\n /**\n * Enables or disabled blending.\n *\n * @param {boolean} value - Turn on or off webgl blending.\n */\n StateSystem.prototype.setBlend = function setBlend (value)\n {\n this.updateCheck(StateSystem.checkBlendMode, value);\n\n this.gl[value ? 'enable' : 'disable'](this.gl.BLEND);\n };\n\n /**\n * Enables or disable polygon offset fill\n *\n * @param {boolean} value - Turn on or off webgl polygon offset testing.\n */\n StateSystem.prototype.setOffset = function setOffset (value)\n {\n this.updateCheck(StateSystem.checkPolygonOffset, value);\n\n this.gl[value ? 'enable' : 'disable'](this.gl.POLYGON_OFFSET_FILL);\n };\n\n /**\n * Sets whether to enable or disable depth test.\n *\n * @param {boolean} value - Turn on or off webgl depth testing.\n */\n StateSystem.prototype.setDepthTest = function setDepthTest (value)\n {\n this.gl[value ? 'enable' : 'disable'](this.gl.DEPTH_TEST);\n };\n\n /**\n * Sets whether to enable or disable cull face.\n *\n * @param {boolean} value - Turn on or off webgl cull face.\n */\n StateSystem.prototype.setCullFace = function setCullFace (value)\n {\n this.gl[value ? 'enable' : 'disable'](this.gl.CULL_FACE);\n };\n\n /**\n * Sets the gl front face.\n *\n * @param {boolean} value - true is clockwise and false is counter-clockwise\n */\n StateSystem.prototype.setFrontFace = function setFrontFace (value)\n {\n this.gl.frontFace(this.gl[value ? 'CW' : 'CCW']);\n };\n\n /**\n * Sets the blend mode.\n *\n * @param {number} value - The blend mode to set to.\n */\n StateSystem.prototype.setBlendMode = function setBlendMode (value)\n {\n if (value === this.blendMode)\n {\n return;\n }\n\n this.blendMode = value;\n\n var mode = this.blendModes[value];\n var gl = this.gl;\n\n if (mode.length === 2)\n {\n gl.blendFunc(mode[0], mode[1]);\n }\n else\n {\n gl.blendFuncSeparate(mode[0], mode[1], mode[2], mode[3]);\n }\n if (mode.length === 6)\n {\n this._blendEq = true;\n gl.blendEquationSeparate(mode[4], mode[5]);\n }\n else if (this._blendEq)\n {\n this._blendEq = false;\n gl.blendEquationSeparate(gl.FUNC_ADD, gl.FUNC_ADD);\n }\n };\n\n /**\n * Sets the polygon offset.\n *\n * @param {number} value - the polygon offset\n * @param {number} scale - the polygon offset scale\n */\n StateSystem.prototype.setPolygonOffset = function setPolygonOffset (value, scale)\n {\n this.gl.polygonOffset(value, scale);\n };\n\n // used\n /**\n * Resets all the logic and disables the vaos\n */\n StateSystem.prototype.reset = function reset ()\n {\n this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false);\n\n this.forceState(0);\n\n this._blendEq = true;\n this.blendMode = -1;\n this.setBlendMode(0);\n };\n\n /**\n * checks to see which updates should be checked based on which settings have been activated.\n * For example, if blend is enabled then we should check the blend modes each time the state is changed\n * or if polygon fill is activated then we need to check if the polygon offset changes.\n * The idea is that we only check what we have too.\n *\n * @param {Function} func the checking function to add or remove\n * @param {boolean} value should the check function be added or removed.\n */\n StateSystem.prototype.updateCheck = function updateCheck (func, value)\n {\n var index = this.checks.indexOf(func);\n\n if (value && index === -1)\n {\n this.checks.push(func);\n }\n else if (!value && index !== -1)\n {\n this.checks.splice(index, 1);\n }\n };\n\n /**\n * A private little wrapper function that we call to check the blend mode.\n *\n * @static\n * @private\n * @param {PIXI.StateSystem} System the System to perform the state check on\n * @param {PIXI.State} state the state that the blendMode will pulled from\n */\n StateSystem.checkBlendMode = function checkBlendMode (system, state)\n {\n system.setBlendMode(state.blendMode);\n };\n\n /**\n * A private little wrapper function that we call to check the polygon offset.\n *\n * @static\n * @private\n * @param {PIXI.StateSystem} System the System to perform the state check on\n * @param {PIXI.State} state the state that the blendMode will pulled from\n */\n StateSystem.checkPolygonOffset = function checkPolygonOffset (system, state)\n {\n system.setPolygonOffset(state.polygonOffset, 0);\n };\n\n return StateSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage texture garbage collection on the GPU,\n * ensuring that it does not get clogged up with textures that are no longer being used.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar TextureGCSystem = /*@__PURE__*/(function (System) {\n function TextureGCSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Count\n * @member {number}\n * @readonly\n */\n this.count = 0;\n\n /**\n * Check count\n * @member {number}\n * @readonly\n */\n this.checkCount = 0;\n\n /**\n * Maximum idle time, in seconds\n * @member {number}\n * @see PIXI.settings.GC_MAX_IDLE\n */\n this.maxIdle = settings.GC_MAX_IDLE;\n\n /**\n * Maximum number of item to check\n * @member {number}\n * @see PIXI.settings.GC_MAX_CHECK_COUNT\n */\n this.checkCountMax = settings.GC_MAX_CHECK_COUNT;\n\n /**\n * Current garabage collection mode\n * @member {PIXI.GC_MODES}\n * @see PIXI.settings.GC_MODE\n */\n this.mode = settings.GC_MODE;\n }\n\n if ( System ) TextureGCSystem.__proto__ = System;\n TextureGCSystem.prototype = Object.create( System && System.prototype );\n TextureGCSystem.prototype.constructor = TextureGCSystem;\n\n /**\n * Checks to see when the last time a texture was used\n * if the texture has not been used for a specified amount of time it will be removed from the GPU\n */\n TextureGCSystem.prototype.postrender = function postrender ()\n {\n this.count++;\n\n if (this.mode === GC_MODES.MANUAL)\n {\n return;\n }\n\n this.checkCount++;\n\n if (this.checkCount > this.checkCountMax)\n {\n this.checkCount = 0;\n\n this.run();\n }\n };\n\n /**\n * Checks to see when the last time a texture was used\n * if the texture has not been used for a specified amount of time it will be removed from the GPU\n */\n TextureGCSystem.prototype.run = function run ()\n {\n var tm = this.renderer.texture;\n var managedTextures = tm.managedTextures;\n var wasRemoved = false;\n\n for (var i = 0; i < managedTextures.length; i++)\n {\n var texture = managedTextures[i];\n\n // only supports non generated textures at the moment!\n if (!texture.framebuffer && this.count - texture.touched > this.maxIdle)\n {\n tm.destroyTexture(texture, true);\n managedTextures[i] = null;\n wasRemoved = true;\n }\n }\n\n if (wasRemoved)\n {\n var j = 0;\n\n for (var i$1 = 0; i$1 < managedTextures.length; i$1++)\n {\n if (managedTextures[i$1] !== null)\n {\n managedTextures[j++] = managedTextures[i$1];\n }\n }\n\n managedTextures.length = j;\n }\n };\n\n /**\n * Removes all the textures within the specified displayObject and its children from the GPU\n *\n * @param {PIXI.DisplayObject} displayObject - the displayObject to remove the textures from.\n */\n TextureGCSystem.prototype.unload = function unload (displayObject)\n {\n var tm = this.renderer.textureSystem;\n\n // only destroy non generated textures\n if (displayObject._texture && displayObject._texture._glRenderTargets)\n {\n tm.destroyTexture(displayObject._texture);\n }\n\n for (var i = displayObject.children.length - 1; i >= 0; i--)\n {\n this.unload(displayObject.children[i]);\n }\n };\n\n return TextureGCSystem;\n}(System));\n\n/**\n * Internal texture for WebGL context\n * @class\n * @memberof PIXI\n */\nvar GLTexture = function GLTexture(texture)\n{\n /**\n * The WebGL texture\n * @member {WebGLTexture}\n */\n this.texture = texture;\n\n /**\n * Width of texture that was used in texImage2D\n * @member {number}\n */\n this.width = -1;\n\n /**\n * Height of texture that was used in texImage2D\n * @member {number}\n */\n this.height = -1;\n\n /**\n * Texture contents dirty flag\n * @member {number}\n */\n this.dirtyId = -1;\n\n /**\n * Texture style dirty flag\n * @member {number}\n */\n this.dirtyStyleId = -1;\n\n /**\n * Whether mip levels has to be generated\n * @member {boolean}\n */\n this.mipmap = false;\n\n /**\n * WrapMode copied from baseTexture\n * @member {number}\n */\n this.wrapMode = 33071;\n\n /**\n * Type copied from baseTexture\n * @member {number}\n */\n this.type = 6408;\n\n /**\n * Type copied from baseTexture\n * @member {number}\n */\n this.internalFormat = 5121;\n};\n\n/**\n * System plugin to the renderer to manage textures.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar TextureSystem = /*@__PURE__*/(function (System) {\n function TextureSystem(renderer)\n {\n System.call(this, renderer);\n\n // TODO set to max textures...\n /**\n * Bound textures\n * @member {PIXI.BaseTexture[]}\n * @readonly\n */\n this.boundTextures = [];\n /**\n * Current location\n * @member {number}\n * @readonly\n */\n this.currentLocation = -1;\n\n /**\n * List of managed textures\n * @member {PIXI.BaseTexture[]}\n * @readonly\n */\n this.managedTextures = [];\n\n /**\n * Did someone temper with textures state? We'll overwrite them when we need to unbind something.\n * @member {boolean}\n * @private\n */\n this._unknownBoundTextures = false;\n\n /**\n * BaseTexture value that shows that we don't know what is bound\n * @member {PIXI.BaseTexture}\n * @readonly\n */\n this.unknownTexture = new BaseTexture();\n }\n\n if ( System ) TextureSystem.__proto__ = System;\n TextureSystem.prototype = Object.create( System && System.prototype );\n TextureSystem.prototype.constructor = TextureSystem;\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n TextureSystem.prototype.contextChange = function contextChange ()\n {\n var gl = this.gl = this.renderer.gl;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n\n this.webGLVersion = this.renderer.context.webGLVersion;\n\n var maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS);\n\n this.boundTextures.length = maxTextures;\n\n for (var i = 0; i < maxTextures; i++)\n {\n this.boundTextures[i] = null;\n }\n\n // TODO move this.. to a nice make empty textures class..\n this.emptyTextures = {};\n\n var emptyTexture2D = new GLTexture(gl.createTexture());\n\n gl.bindTexture(gl.TEXTURE_2D, emptyTexture2D.texture);\n gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4));\n\n this.emptyTextures[gl.TEXTURE_2D] = emptyTexture2D;\n this.emptyTextures[gl.TEXTURE_CUBE_MAP] = new GLTexture(gl.createTexture());\n\n gl.bindTexture(gl.TEXTURE_CUBE_MAP, this.emptyTextures[gl.TEXTURE_CUBE_MAP].texture);\n\n for (var i$1 = 0; i$1 < 6; i$1++)\n {\n gl.texImage2D(gl.TEXTURE_CUBE_MAP_POSITIVE_X + i$1, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, null);\n }\n\n gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR);\n gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR);\n\n for (var i$2 = 0; i$2 < this.boundTextures.length; i$2++)\n {\n this.bind(null, i$2);\n }\n };\n\n /**\n * Bind a texture to a specific location\n *\n * If you want to unbind something, please use `unbind(texture)` instead of `bind(null, textureLocation)`\n *\n * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind\n * @param {number} [location=0] - Location to bind at\n */\n TextureSystem.prototype.bind = function bind (texture, location)\n {\n if ( location === void 0 ) location = 0;\n\n var ref = this;\n var gl = ref.gl;\n\n if (texture)\n {\n texture = texture.baseTexture || texture;\n\n if (texture.valid)\n {\n texture.touched = this.renderer.textureGC.count;\n\n var glTexture = texture._glTextures[this.CONTEXT_UID] || this.initTexture(texture);\n\n if (this.currentLocation !== location)\n {\n this.currentLocation = location;\n gl.activeTexture(gl.TEXTURE0 + location);\n }\n\n if (this.boundTextures[location] !== texture)\n {\n gl.bindTexture(texture.target, glTexture.texture);\n }\n\n if (glTexture.dirtyId !== texture.dirtyId)\n {\n this.updateTexture(texture);\n }\n\n this.boundTextures[location] = texture;\n }\n }\n else\n {\n if (this.currentLocation !== location)\n {\n this.currentLocation = location;\n gl.activeTexture(gl.TEXTURE0 + location);\n }\n\n gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[gl.TEXTURE_2D].texture);\n this.boundTextures[location] = null;\n }\n };\n\n /**\n * Resets texture location and bound textures\n *\n * Actual `bind(null, i)` calls will be performed at next `unbind()` call\n */\n TextureSystem.prototype.reset = function reset ()\n {\n this._unknownBoundTextures = true;\n this.currentLocation = -1;\n\n for (var i = 0; i < this.boundTextures.length; i++)\n {\n this.boundTextures[i] = this.unknownTexture;\n }\n };\n\n /**\n * Unbind a texture\n * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind\n */\n TextureSystem.prototype.unbind = function unbind (texture)\n {\n var ref = this;\n var gl = ref.gl;\n var boundTextures = ref.boundTextures;\n\n if (this._unknownBoundTextures)\n {\n this._unknownBoundTextures = false;\n // someone changed webGL state,\n // we have to be sure that our texture does not appear in multi-texture renderer samplers\n for (var i = 0; i < boundTextures.length; i++)\n {\n if (boundTextures[i] === this.unknownTexture)\n {\n this.bind(null, i);\n }\n }\n }\n\n for (var i$1 = 0; i$1 < boundTextures.length; i$1++)\n {\n if (boundTextures[i$1] === texture)\n {\n if (this.currentLocation !== i$1)\n {\n gl.activeTexture(gl.TEXTURE0 + i$1);\n this.currentLocation = i$1;\n }\n\n gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[texture.target].texture);\n boundTextures[i$1] = null;\n }\n }\n };\n\n /**\n * Initialize a texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to initialize\n */\n TextureSystem.prototype.initTexture = function initTexture (texture)\n {\n var glTexture = new GLTexture(this.gl.createTexture());\n\n // guarantee an update..\n glTexture.dirtyId = -1;\n\n texture._glTextures[this.CONTEXT_UID] = glTexture;\n\n this.managedTextures.push(texture);\n texture.on('dispose', this.destroyTexture, this);\n\n return glTexture;\n };\n\n TextureSystem.prototype.initTextureType = function initTextureType (texture, glTexture)\n {\n glTexture.internalFormat = texture.format;\n glTexture.type = texture.type;\n if (this.webGLVersion !== 2)\n {\n return;\n }\n var gl = this.renderer.gl;\n\n if (texture.type === gl.FLOAT\n && texture.format === gl.RGBA)\n {\n glTexture.internalFormat = gl.RGBA32F;\n }\n // that's WebGL1 HALF_FLOAT_OES\n // we have to convert it to WebGL HALF_FLOAT\n if (texture.type === TYPES.HALF_FLOAT)\n {\n glTexture.type = gl.HALF_FLOAT;\n }\n if (glTexture.type === gl.HALF_FLOAT\n && texture.format === gl.RGBA)\n {\n glTexture.internalFormat = gl.RGBA16F;\n }\n };\n\n /**\n * Update a texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to initialize\n */\n TextureSystem.prototype.updateTexture = function updateTexture (texture)\n {\n var glTexture = texture._glTextures[this.CONTEXT_UID];\n\n if (!glTexture)\n {\n return;\n }\n\n var renderer = this.renderer;\n\n this.initTextureType(texture, glTexture);\n\n if (texture.resource && texture.resource.upload(renderer, texture, glTexture))\n ;\n else\n {\n // default, renderTexture-like logic\n var width = texture.realWidth;\n var height = texture.realHeight;\n var gl = renderer.gl;\n\n if (glTexture.width !== width\n || glTexture.height !== height\n || glTexture.dirtyId < 0)\n {\n glTexture.width = width;\n glTexture.height = height;\n\n gl.texImage2D(texture.target, 0,\n glTexture.internalFormat,\n width,\n height,\n 0,\n texture.format,\n glTexture.type,\n null);\n }\n }\n\n // lets only update what changes..\n if (texture.dirtyStyleId !== glTexture.dirtyStyleId)\n {\n this.updateTextureStyle(texture);\n }\n glTexture.dirtyId = texture.dirtyId;\n };\n\n /**\n * Deletes the texture from WebGL\n *\n * @private\n * @param {PIXI.BaseTexture|PIXI.Texture} texture - the texture to destroy\n * @param {boolean} [skipRemove=false] - Whether to skip removing the texture from the TextureManager.\n */\n TextureSystem.prototype.destroyTexture = function destroyTexture (texture, skipRemove)\n {\n var ref = this;\n var gl = ref.gl;\n\n texture = texture.baseTexture || texture;\n\n if (texture._glTextures[this.CONTEXT_UID])\n {\n this.unbind(texture);\n\n gl.deleteTexture(texture._glTextures[this.CONTEXT_UID].texture);\n texture.off('dispose', this.destroyTexture, this);\n\n delete texture._glTextures[this.CONTEXT_UID];\n\n if (!skipRemove)\n {\n var i = this.managedTextures.indexOf(texture);\n\n if (i !== -1)\n {\n removeItems(this.managedTextures, i, 1);\n }\n }\n }\n };\n\n /**\n * Update texture style such as mipmap flag\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to update\n */\n TextureSystem.prototype.updateTextureStyle = function updateTextureStyle (texture)\n {\n var glTexture = texture._glTextures[this.CONTEXT_UID];\n\n if (!glTexture)\n {\n return;\n }\n\n if ((texture.mipmap === MIPMAP_MODES.POW2 || this.webGLVersion !== 2) && !texture.isPowerOfTwo)\n {\n glTexture.mipmap = 0;\n glTexture.wrapMode = WRAP_MODES.CLAMP;\n }\n else\n {\n glTexture.mipmap = texture.mipmap >= 1;\n glTexture.wrapMode = texture.wrapMode;\n }\n\n if (texture.resource && texture.resource.style(this.renderer, texture, glTexture))\n ;\n else\n {\n this.setStyle(texture, glTexture);\n }\n\n glTexture.dirtyStyleId = texture.dirtyStyleId;\n };\n\n /**\n * Set style for texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to update\n * @param {PIXI.GLTexture} glTexture\n */\n TextureSystem.prototype.setStyle = function setStyle (texture, glTexture)\n {\n var gl = this.gl;\n\n if (glTexture.mipmap)\n {\n gl.generateMipmap(texture.target);\n }\n\n gl.texParameteri(texture.target, gl.TEXTURE_WRAP_S, glTexture.wrapMode);\n gl.texParameteri(texture.target, gl.TEXTURE_WRAP_T, glTexture.wrapMode);\n\n if (glTexture.mipmap)\n {\n /* eslint-disable max-len */\n gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR_MIPMAP_LINEAR : gl.NEAREST_MIPMAP_NEAREST);\n /* eslint-disable max-len */\n\n var anisotropicExt = this.renderer.context.extensions.anisotropicFiltering;\n\n if (anisotropicExt && texture.anisotropicLevel > 0 && texture.scaleMode === SCALE_MODES.LINEAR)\n {\n var level = Math.min(texture.anisotropicLevel, gl.getParameter(anisotropicExt.MAX_TEXTURE_MAX_ANISOTROPY_EXT));\n\n gl.texParameterf(texture.target, anisotropicExt.TEXTURE_MAX_ANISOTROPY_EXT, level);\n }\n }\n else\n {\n gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST);\n }\n\n gl.texParameteri(texture.target, gl.TEXTURE_MAG_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST);\n };\n\n return TextureSystem;\n}(System));\n\n/**\n * Systems are individual components to the Renderer pipeline.\n * @namespace PIXI.systems\n */\n\nvar systems = ({\n FilterSystem: FilterSystem,\n BatchSystem: BatchSystem,\n ContextSystem: ContextSystem,\n FramebufferSystem: FramebufferSystem,\n GeometrySystem: GeometrySystem,\n MaskSystem: MaskSystem,\n StencilSystem: StencilSystem,\n ProjectionSystem: ProjectionSystem,\n RenderTextureSystem: RenderTextureSystem,\n ShaderSystem: ShaderSystem,\n StateSystem: StateSystem,\n TextureGCSystem: TextureGCSystem,\n TextureSystem: TextureSystem\n});\n\nvar tempMatrix = new Matrix();\n\n/**\n * The AbstractRenderer is the base for a PixiJS Renderer. It is extended by the {@link PIXI.CanvasRenderer}\n * and {@link PIXI.Renderer} which can be used for rendering a PixiJS scene.\n *\n * @abstract\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar AbstractRenderer = /*@__PURE__*/(function (EventEmitter) {\n function AbstractRenderer(system, options)\n {\n EventEmitter.call(this);\n\n // Add the default render options\n options = Object.assign({}, settings.RENDER_OPTIONS, options);\n\n // Deprecation notice for renderer roundPixels option\n if (options.roundPixels)\n {\n settings.ROUND_PIXELS = options.roundPixels;\n deprecation('5.0.0', 'Renderer roundPixels option is deprecated, please use PIXI.settings.ROUND_PIXELS', 2);\n }\n\n /**\n * The supplied constructor options.\n *\n * @member {Object}\n * @readOnly\n */\n this.options = options;\n\n /**\n * The type of the renderer.\n *\n * @member {number}\n * @default PIXI.RENDERER_TYPE.UNKNOWN\n * @see PIXI.RENDERER_TYPE\n */\n this.type = RENDERER_TYPE.UNKNOWN;\n\n /**\n * Measurements of the screen. (0, 0, screenWidth, screenHeight).\n *\n * Its safe to use as filterArea or hitArea for the whole stage.\n *\n * @member {PIXI.Rectangle}\n */\n this.screen = new Rectangle(0, 0, options.width, options.height);\n\n /**\n * The canvas element that everything is drawn to.\n *\n * @member {HTMLCanvasElement}\n */\n this.view = options.view || document.createElement('canvas');\n\n /**\n * The resolution / device pixel ratio of the renderer.\n *\n * @member {number}\n * @default 1\n */\n this.resolution = options.resolution || settings.RESOLUTION;\n\n /**\n * Whether the render view is transparent.\n *\n * @member {boolean}\n */\n this.transparent = options.transparent;\n\n /**\n * Whether CSS dimensions of canvas view should be resized to screen dimensions automatically.\n *\n * @member {boolean}\n */\n this.autoDensity = options.autoDensity || options.autoResize || false;\n // autoResize is deprecated, provides fallback support\n\n /**\n * The value of the preserveDrawingBuffer flag affects whether or not the contents of\n * the stencil buffer is retained after rendering.\n *\n * @member {boolean}\n */\n this.preserveDrawingBuffer = options.preserveDrawingBuffer;\n\n /**\n * This sets if the CanvasRenderer will clear the canvas or not before the new render pass.\n * If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every\n * frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect\n * to clear the canvas every frame. Disable this by setting this to false. For example, if\n * your game has a canvas filling background image you often don't need this set.\n *\n * @member {boolean}\n * @default\n */\n this.clearBeforeRender = options.clearBeforeRender;\n\n /**\n * The background color as a number.\n *\n * @member {number}\n * @protected\n */\n this._backgroundColor = 0x000000;\n\n /**\n * The background color as an [R, G, B] array.\n *\n * @member {number[]}\n * @protected\n */\n this._backgroundColorRgba = [0, 0, 0, 0];\n\n /**\n * The background color as a string.\n *\n * @member {string}\n * @protected\n */\n this._backgroundColorString = '#000000';\n\n this.backgroundColor = options.backgroundColor || this._backgroundColor; // run bg color setter\n\n /**\n * This temporary display object used as the parent of the currently being rendered item.\n *\n * @member {PIXI.DisplayObject}\n * @protected\n */\n this._tempDisplayObjectParent = new Container();\n\n /**\n * The last root object that the renderer tried to render.\n *\n * @member {PIXI.DisplayObject}\n * @protected\n */\n this._lastObjectRendered = this._tempDisplayObjectParent;\n\n /**\n * Collection of plugins.\n * @readonly\n * @member {object}\n */\n this.plugins = {};\n }\n\n if ( EventEmitter ) AbstractRenderer.__proto__ = EventEmitter;\n AbstractRenderer.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n AbstractRenderer.prototype.constructor = AbstractRenderer;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true },backgroundColor: { configurable: true } };\n\n /**\n * Initialize the plugins.\n *\n * @protected\n * @param {object} staticMap - The dictionary of statically saved plugins.\n */\n AbstractRenderer.prototype.initPlugins = function initPlugins (staticMap)\n {\n for (var o in staticMap)\n {\n this.plugins[o] = new (staticMap[o])(this);\n }\n };\n\n /**\n * Same as view.width, actual number of pixels in the canvas by horizontal.\n *\n * @member {number}\n * @readonly\n * @default 800\n */\n prototypeAccessors.width.get = function ()\n {\n return this.view.width;\n };\n\n /**\n * Same as view.height, actual number of pixels in the canvas by vertical.\n *\n * @member {number}\n * @readonly\n * @default 600\n */\n prototypeAccessors.height.get = function ()\n {\n return this.view.height;\n };\n\n /**\n * Resizes the screen and canvas to the specified width and height.\n * Canvas dimensions are multiplied by resolution.\n *\n * @param {number} screenWidth - The new width of the screen.\n * @param {number} screenHeight - The new height of the screen.\n */\n AbstractRenderer.prototype.resize = function resize (screenWidth, screenHeight)\n {\n this.screen.width = screenWidth;\n this.screen.height = screenHeight;\n\n this.view.width = screenWidth * this.resolution;\n this.view.height = screenHeight * this.resolution;\n\n if (this.autoDensity)\n {\n this.view.style.width = screenWidth + \"px\";\n this.view.style.height = screenHeight + \"px\";\n }\n };\n\n /**\n * Useful function that returns a texture of the display object that can then be used to create sprites\n * This can be quite useful if your displayObject is complicated and needs to be reused multiple times.\n *\n * @param {PIXI.DisplayObject} displayObject - The displayObject the object will be generated from.\n * @param {number} scaleMode - Should be one of the scaleMode consts.\n * @param {number} resolution - The resolution / device pixel ratio of the texture being generated.\n * @param {PIXI.Rectangle} [region] - The region of the displayObject, that shall be rendered,\n * if no region is specified, defaults to the local bounds of the displayObject.\n * @return {PIXI.RenderTexture} A texture of the graphics object.\n */\n AbstractRenderer.prototype.generateTexture = function generateTexture (displayObject, scaleMode, resolution, region)\n {\n region = region || displayObject.getLocalBounds();\n\n // minimum texture size is 1x1, 0x0 will throw an error\n if (region.width === 0) { region.width = 1; }\n if (region.height === 0) { region.height = 1; }\n\n var renderTexture = RenderTexture.create(region.width | 0, region.height | 0, scaleMode, resolution);\n\n tempMatrix.tx = -region.x;\n tempMatrix.ty = -region.y;\n\n this.render(displayObject, renderTexture, false, tempMatrix, !!displayObject.parent);\n\n return renderTexture;\n };\n\n /**\n * Removes everything from the renderer and optionally removes the Canvas DOM element.\n *\n * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM.\n */\n AbstractRenderer.prototype.destroy = function destroy (removeView)\n {\n for (var o in this.plugins)\n {\n this.plugins[o].destroy();\n this.plugins[o] = null;\n }\n\n if (removeView && this.view.parentNode)\n {\n this.view.parentNode.removeChild(this.view);\n }\n\n this.plugins = null;\n\n this.type = RENDERER_TYPE.UNKNOWN;\n\n this.view = null;\n\n this.screen = null;\n\n this.resolution = 0;\n\n this.transparent = false;\n\n this.autoDensity = false;\n\n this.blendModes = null;\n\n this.options = null;\n\n this.preserveDrawingBuffer = false;\n this.clearBeforeRender = false;\n\n this._backgroundColor = 0;\n this._backgroundColorRgba = null;\n this._backgroundColorString = null;\n\n this._tempDisplayObjectParent = null;\n this._lastObjectRendered = null;\n };\n\n /**\n * The background color to fill if not transparent\n *\n * @member {number}\n */\n prototypeAccessors.backgroundColor.get = function ()\n {\n return this._backgroundColor;\n };\n\n prototypeAccessors.backgroundColor.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._backgroundColor = value;\n this._backgroundColorString = hex2string(value);\n hex2rgb(value, this._backgroundColorRgba);\n };\n\n Object.defineProperties( AbstractRenderer.prototype, prototypeAccessors );\n\n return AbstractRenderer;\n}(EventEmitter));\n\n/**\n * The Renderer draws the scene and all its content onto a WebGL enabled canvas.\n *\n * This renderer should be used for browsers that support WebGL.\n *\n * This renderer works by automatically managing WebGLBatchesm, so no need for Sprite Batches or Sprite Clouds.\n * Don't forget to add the view to your DOM or you will not see anything!\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.AbstractRenderer\n */\nvar Renderer = /*@__PURE__*/(function (AbstractRenderer) {\n function Renderer(options)\n {\n if ( options === void 0 ) options = {};\n\n AbstractRenderer.call(this, 'WebGL', options);\n\n // the options will have been modified here in the super constructor with pixi's default settings..\n options = this.options;\n\n /**\n * The type of this renderer as a standardized const\n *\n * @member {number}\n * @see PIXI.RENDERER_TYPE\n */\n this.type = RENDERER_TYPE.WEBGL;\n\n /**\n * WebGL context, set by the contextSystem (this.context)\n *\n * @readonly\n * @member {WebGLRenderingContext}\n */\n this.gl = null;\n\n this.CONTEXT_UID = 0;\n\n // TODO legacy!\n\n /**\n * Internal signal instances of **runner**, these\n * are assigned to each system created.\n * @see PIXI.Runner\n * @name PIXI.Renderer#runners\n * @private\n * @type {object}\n * @readonly\n * @property {PIXI.Runner} destroy - Destroy runner\n * @property {PIXI.Runner} contextChange - Context change runner\n * @property {PIXI.Runner} reset - Reset runner\n * @property {PIXI.Runner} update - Update runner\n * @property {PIXI.Runner} postrender - Post-render runner\n * @property {PIXI.Runner} prerender - Pre-render runner\n * @property {PIXI.Runner} resize - Resize runner\n */\n this.runners = {\n destroy: new Runner('destroy'),\n contextChange: new Runner('contextChange', 1),\n reset: new Runner('reset'),\n update: new Runner('update'),\n postrender: new Runner('postrender'),\n prerender: new Runner('prerender'),\n resize: new Runner('resize', 2),\n };\n\n /**\n * Global uniforms\n * @member {PIXI.UniformGroup}\n */\n this.globalUniforms = new UniformGroup({\n projectionMatrix: new Matrix(),\n }, true);\n\n /**\n * Mask system instance\n * @member {PIXI.systems.MaskSystem} mask\n * @memberof PIXI.Renderer#\n * @readonly\n */\n this.addSystem(MaskSystem, 'mask')\n /**\n * Context system instance\n * @member {PIXI.systems.ContextSystem} context\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ContextSystem, 'context')\n /**\n * State system instance\n * @member {PIXI.systems.StateSystem} state\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(StateSystem, 'state')\n /**\n * Shader system instance\n * @member {PIXI.systems.ShaderSystem} shader\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ShaderSystem, 'shader')\n /**\n * Texture system instance\n * @member {PIXI.systems.TextureSystem} texture\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(TextureSystem, 'texture')\n /**\n * Geometry system instance\n * @member {PIXI.systems.GeometrySystem} geometry\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(GeometrySystem, 'geometry')\n /**\n * Framebuffer system instance\n * @member {PIXI.systems.FramebufferSystem} framebuffer\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(FramebufferSystem, 'framebuffer')\n /**\n * Stencil system instance\n * @member {PIXI.systems.StencilSystem} stencil\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(StencilSystem, 'stencil')\n /**\n * Projection system instance\n * @member {PIXI.systems.ProjectionSystem} projection\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ProjectionSystem, 'projection')\n /**\n * Texture garbage collector system instance\n * @member {PIXI.systems.TextureGCSystem} textureGC\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(TextureGCSystem, 'textureGC')\n /**\n * Filter system instance\n * @member {PIXI.systems.FilterSystem} filter\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(FilterSystem, 'filter')\n /**\n * RenderTexture system instance\n * @member {PIXI.systems.RenderTextureSystem} renderTexture\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(RenderTextureSystem, 'renderTexture')\n\n /**\n * Batch system instance\n * @member {PIXI.systems.BatchSystem} batch\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(BatchSystem, 'batch');\n\n this.initPlugins(Renderer.__plugins);\n\n /**\n * The options passed in to create a new WebGL context.\n */\n if (options.context)\n {\n this.context.initFromContext(options.context);\n }\n else\n {\n this.context.initFromOptions({\n alpha: this.transparent,\n antialias: options.antialias,\n premultipliedAlpha: this.transparent && this.transparent !== 'notMultiplied',\n stencil: true,\n preserveDrawingBuffer: options.preserveDrawingBuffer,\n powerPreference: this.options.powerPreference,\n });\n }\n\n /**\n * Flag if we are rendering to the screen vs renderTexture\n * @member {boolean}\n * @readonly\n * @default true\n */\n this.renderingToScreen = true;\n\n sayHello(this.context.webGLVersion === 2 ? 'WebGL 2' : 'WebGL 1');\n\n this.resize(this.options.width, this.options.height);\n }\n\n if ( AbstractRenderer ) Renderer.__proto__ = AbstractRenderer;\n Renderer.prototype = Object.create( AbstractRenderer && AbstractRenderer.prototype );\n Renderer.prototype.constructor = Renderer;\n\n /**\n * Add a new system to the renderer.\n * @param {Function} ClassRef - Class reference\n * @param {string} [name] - Property name for system, if not specified\n * will use a static `name` property on the class itself. This\n * name will be assigned as s property on the Renderer so make\n * sure it doesn't collide with properties on Renderer.\n * @return {PIXI.Renderer} Return instance of renderer\n */\n Renderer.create = function create (options)\n {\n if (isWebGLSupported())\n {\n return new Renderer(options);\n }\n\n throw new Error('WebGL unsupported in this browser, use \"pixi.js-legacy\" for fallback canvas2d support.');\n };\n\n Renderer.prototype.addSystem = function addSystem (ClassRef, name)\n {\n if (!name)\n {\n name = ClassRef.name;\n }\n\n var system = new ClassRef(this);\n\n if (this[name])\n {\n throw new Error((\"Whoops! The name \\\"\" + name + \"\\\" is already in use\"));\n }\n\n this[name] = system;\n\n for (var i in this.runners)\n {\n this.runners[i].add(system);\n }\n\n /**\n * Fired after rendering finishes.\n *\n * @event PIXI.Renderer#postrender\n */\n\n /**\n * Fired before rendering starts.\n *\n * @event PIXI.Renderer#prerender\n */\n\n /**\n * Fired when the WebGL context is set.\n *\n * @event PIXI.Renderer#context\n * @param {WebGLRenderingContext} gl - WebGL context.\n */\n\n return this;\n };\n\n /**\n * Renders the object to its WebGL view\n *\n * @param {PIXI.DisplayObject} displayObject - The object to be rendered.\n * @param {PIXI.RenderTexture} [renderTexture] - The render texture to render to.\n * @param {boolean} [clear=true] - Should the canvas be cleared before the new render.\n * @param {PIXI.Matrix} [transform] - A transform to apply to the render texture before rendering.\n * @param {boolean} [skipUpdateTransform=false] - Should we skip the update transform pass?\n */\n Renderer.prototype.render = function render (displayObject, renderTexture, clear, transform, skipUpdateTransform)\n {\n // can be handy to know!\n this.renderingToScreen = !renderTexture;\n\n this.runners.prerender.run();\n this.emit('prerender');\n\n // apply a transform at a GPU level\n this.projection.transform = transform;\n\n // no point rendering if our context has been blown up!\n if (this.context.isLost)\n {\n return;\n }\n\n if (!renderTexture)\n {\n this._lastObjectRendered = displayObject;\n }\n\n if (!skipUpdateTransform)\n {\n // update the scene graph\n var cacheParent = displayObject.parent;\n\n displayObject.parent = this._tempDisplayObjectParent;\n displayObject.updateTransform();\n displayObject.parent = cacheParent;\n // displayObject.hitArea = //TODO add a temp hit area\n }\n\n this.renderTexture.bind(renderTexture);\n this.batch.currentRenderer.start();\n\n if (clear !== undefined ? clear : this.clearBeforeRender)\n {\n this.renderTexture.clear();\n }\n\n displayObject.render(this);\n\n // apply transform..\n this.batch.currentRenderer.flush();\n\n if (renderTexture)\n {\n renderTexture.baseTexture.update();\n }\n\n this.runners.postrender.run();\n\n // reset transform after render\n this.projection.transform = null;\n\n this.emit('postrender');\n };\n\n /**\n * Resizes the WebGL view to the specified width and height.\n *\n * @param {number} screenWidth - The new width of the screen.\n * @param {number} screenHeight - The new height of the screen.\n */\n Renderer.prototype.resize = function resize (screenWidth, screenHeight)\n {\n AbstractRenderer.prototype.resize.call(this, screenWidth, screenHeight);\n\n this.runners.resize.run(screenWidth, screenHeight);\n };\n\n /**\n * Resets the WebGL state so you can render things however you fancy!\n *\n * @return {PIXI.Renderer} Returns itself.\n */\n Renderer.prototype.reset = function reset ()\n {\n this.runners.reset.run();\n\n return this;\n };\n\n /**\n * Clear the frame buffer\n */\n Renderer.prototype.clear = function clear ()\n {\n this.framebuffer.bind();\n this.framebuffer.clear();\n };\n\n /**\n * Removes everything from the renderer (event listeners, spritebatch, etc...)\n *\n * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM.\n * See: https://github.com/pixijs/pixi.js/issues/2233\n */\n Renderer.prototype.destroy = function destroy (removeView)\n {\n this.runners.destroy.run();\n\n for (var r in this.runners)\n {\n this.runners[r].destroy();\n }\n\n // call base destroy\n AbstractRenderer.prototype.destroy.call(this, removeView);\n\n // TODO nullify all the managers..\n this.gl = null;\n };\n\n /**\n * Collection of installed plugins. These are included by default in PIXI, but can be excluded\n * by creating a custom build. Consult the README for more information about creating custom\n * builds and excluding plugins.\n * @name PIXI.Renderer#plugins\n * @type {object}\n * @readonly\n * @property {PIXI.accessibility.AccessibilityManager} accessibility Support tabbing interactive elements.\n * @property {PIXI.extract.Extract} extract Extract image data from renderer.\n * @property {PIXI.interaction.InteractionManager} interaction Handles mouse, touch and pointer events.\n * @property {PIXI.prepare.Prepare} prepare Pre-render display objects.\n */\n\n /**\n * Adds a plugin to the renderer.\n *\n * @method\n * @param {string} pluginName - The name of the plugin.\n * @param {Function} ctor - The constructor function or class for the plugin.\n */\n Renderer.registerPlugin = function registerPlugin (pluginName, ctor)\n {\n Renderer.__plugins = Renderer.__plugins || {};\n Renderer.__plugins[pluginName] = ctor;\n };\n\n return Renderer;\n}(AbstractRenderer));\n\n/**\n * This helper function will automatically detect which renderer you should be using.\n * WebGL is the preferred renderer as it is a lot faster. If WebGL is not supported by\n * the browser then this function will return a canvas renderer\n *\n * @memberof PIXI\n * @function autoDetectRenderer\n * @param {object} [options] - The optional renderer parameters\n * @param {number} [options.width=800] - the width of the renderers view\n * @param {number} [options.height=600] - the height of the renderers view\n * @param {HTMLCanvasElement} [options.view] - the canvas to use as a view, optional\n * @param {boolean} [options.transparent=false] - If the render view is transparent, default false\n * @param {boolean} [options.autoDensity=false] - Resizes renderer view in CSS pixels to allow for\n * resolutions other than 1\n * @param {boolean} [options.antialias=false] - sets antialias\n * @param {boolean} [options.preserveDrawingBuffer=false] - enables drawing buffer preservation, enable this if you\n * need to call toDataUrl on the webgl context\n * @param {number} [options.backgroundColor=0x000000] - The background color of the rendered area\n * (shown if not transparent).\n * @param {boolean} [options.clearBeforeRender=true] - This sets if the renderer will clear the canvas or\n * not before the new render pass.\n * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the renderer, retina would be 2\n * @param {boolean} [options.forceCanvas=false] - prevents selection of WebGL renderer, even if such is present, this\n * option only is available when using **pixi.js-legacy** or **@pixi/canvas-renderer** modules, otherwise\n * it is ignored.\n * @param {boolean} [options.forceFXAA=false] - forces FXAA antialiasing to be used over native.\n * FXAA is faster, but may not always look as great **webgl only**\n * @param {string} [options.powerPreference] - Parameter passed to webgl context, set to \"high-performance\"\n * for devices with dual graphics card **webgl only**\n * @return {PIXI.Renderer|PIXI.CanvasRenderer} Returns WebGL renderer if available, otherwise CanvasRenderer\n */\nfunction autoDetectRenderer(options)\n{\n return Renderer.create(options);\n}\n\nvar _default = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n vTextureCoord = aTextureCoord;\\n}\";\n\nvar defaultFilter = \"attribute vec2 aVertexPosition;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nuniform vec4 inputSize;\\nuniform vec4 outputFrame;\\n\\nvec4 filterVertexPosition( void )\\n{\\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\\n\\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\\n}\\n\\nvec2 filterTextureCoord( void )\\n{\\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\\n}\\n\\nvoid main(void)\\n{\\n gl_Position = filterVertexPosition();\\n vTextureCoord = filterTextureCoord();\\n}\\n\";\n\n/**\n * A Texture that depends on six other resources.\n *\n * @class\n * @extends PIXI.BaseTexture\n * @memberof PIXI\n */\nvar CubeTexture = /*@__PURE__*/(function (BaseTexture) {\n function CubeTexture () {\n BaseTexture.apply(this, arguments);\n }\n\n if ( BaseTexture ) CubeTexture.__proto__ = BaseTexture;\n CubeTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype );\n CubeTexture.prototype.constructor = CubeTexture;\n\n CubeTexture.from = function from (resources, options)\n {\n return new CubeTexture(new CubeResource(resources, options));\n };\n\n return CubeTexture;\n}(BaseTexture));\n\n/**\n * Used by the batcher to draw batches.\n * Each one of these contains all information required to draw a bound geometry.\n *\n * @class\n * @memberof PIXI\n */\nvar BatchDrawCall = function BatchDrawCall()\n{\n this.textures = [];\n this.ids = [];\n this.blend = 0;\n this.textureCount = 0;\n this.start = 0;\n this.size = 0;\n this.type = 4;\n};\n\n/**\n * Flexible wrapper around `ArrayBuffer` that also provides\n * typed array views on demand.\n *\n * @class\n * @memberof PIXI\n */\nvar ViewableBuffer = function ViewableBuffer(size)\n{\n /**\n * Underlying `ArrayBuffer` that holds all the data\n * and is of capacity `size`.\n *\n * @member {ArrayBuffer}\n */\n this.rawBinaryData = new ArrayBuffer(size);\n\n /**\n * View on the raw binary data as a `Uint32Array`.\n *\n * @member {Uint32Array}\n */\n this.uint32View = new Uint32Array(this.rawBinaryData);\n\n /**\n * View on the raw binary data as a `Float32Array`.\n *\n * @member {Float32Array}\n */\n this.float32View = new Float32Array(this.rawBinaryData);\n};\n\nvar prototypeAccessors$5 = { int8View: { configurable: true },uint8View: { configurable: true },int16View: { configurable: true },uint16View: { configurable: true },int32View: { configurable: true } };\n\n/**\n * View on the raw binary data as a `Int8Array`.\n *\n * @member {Int8Array}\n */\nprototypeAccessors$5.int8View.get = function ()\n{\n if (!this._int8View)\n {\n this._int8View = new Int8Array(this.rawBinaryData);\n }\n\n return this._int8View;\n};\n\n/**\n * View on the raw binary data as a `Uint8Array`.\n *\n * @member {Uint8Array}\n */\nprototypeAccessors$5.uint8View.get = function ()\n{\n if (!this._uint8View)\n {\n this._uint8View = new Uint8Array(this.rawBinaryData);\n }\n\n return this._uint8View;\n};\n\n/**\n * View on the raw binary data as a `Int16Array`.\n *\n * @member {Int16Array}\n */\nprototypeAccessors$5.int16View.get = function ()\n{\n if (!this._int16View)\n {\n this._int16View = new Int16Array(this.rawBinaryData);\n }\n\n return this._int16View;\n};\n\n/**\n * View on the raw binary data as a `Uint16Array`.\n *\n * @member {Uint16Array}\n */\nprototypeAccessors$5.uint16View.get = function ()\n{\n if (!this._uint16View)\n {\n this._uint16View = new Uint16Array(this.rawBinaryData);\n }\n\n return this._uint16View;\n};\n\n/**\n * View on the raw binary data as a `Int32Array`.\n *\n * @member {Int32Array}\n */\nprototypeAccessors$5.int32View.get = function ()\n{\n if (!this._int32View)\n {\n this._int32View = new Int32Array(this.rawBinaryData);\n }\n\n return this._int32View;\n};\n\n/**\n * Returns the view of the given type.\n *\n * @param {string} type - One of `int8`, `uint8`, `int16`,\n *`uint16`, `int32`, `uint32`, and `float32`.\n * @return {object} typed array of given type\n */\nViewableBuffer.prototype.view = function view (type)\n{\n return this[(type + \"View\")];\n};\n\n/**\n * Destroys all buffer references. Do not use after calling\n * this.\n */\nViewableBuffer.prototype.destroy = function destroy ()\n{\n this.rawBinaryData = null;\n this._int8View = null;\n this._uint8View = null;\n this._int16View = null;\n this._uint16View = null;\n this._int32View = null;\n this.uint32View = null;\n this.float32View = null;\n};\n\nViewableBuffer.sizeOf = function sizeOf (type)\n{\n switch (type)\n {\n case 'int8':\n case 'uint8':\n return 1;\n case 'int16':\n case 'uint16':\n return 2;\n case 'int32':\n case 'uint32':\n case 'float32':\n return 4;\n default:\n throw new Error((type + \" isn't a valid view type\"));\n }\n};\n\nObject.defineProperties( ViewableBuffer.prototype, prototypeAccessors$5 );\n\n/**\n * Renderer dedicated to drawing and batching sprites.\n *\n * This is the default batch renderer. It buffers objects\n * with texture-based geometries and renders them in\n * batches. It uploads multiple textures to the GPU to\n * reduce to the number of draw calls.\n *\n * @class\n * @protected\n * @memberof PIXI\n * @extends PIXI.ObjectRenderer\n */\nvar AbstractBatchRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function AbstractBatchRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n /**\n * This is used to generate a shader that can\n * color each vertex based on a `aTextureId`\n * attribute that points to an texture in `uSampler`.\n *\n * This enables the objects with different textures\n * to be drawn in the same draw call.\n *\n * You can customize your shader by creating your\n * custom shader generator.\n *\n * @member {PIXI.BatchShaderGenerator}\n * @protected\n */\n this.shaderGenerator = null;\n\n /**\n * The class that represents the geometry of objects\n * that are going to be batched with this.\n *\n * @member {object}\n * @default PIXI.BatchGeometry\n * @protected\n */\n this.geometryClass = null;\n\n /**\n * Size of data being buffered per vertex in the\n * attribute buffers (in floats). By default, the\n * batch-renderer plugin uses 6:\n *\n * | aVertexPosition | 2 |\n * |-----------------|---|\n * | aTextureCoords | 2 |\n * | aColor | 1 |\n * | aTextureId | 1 |\n *\n * @member {number}\n * @readonly\n */\n this.vertexSize = null;\n\n /**\n * The WebGL state in which this renderer will work.\n *\n * @member {PIXI.State}\n * @readonly\n */\n this.state = State.for2d();\n\n /**\n * The number of bufferable objects before a flush\n * occurs automatically.\n *\n * @member {number}\n * @default settings.SPRITE_MAX_TEXTURES\n */\n this.size = 2000 * 4;// settings.SPRITE_BATCH_SIZE, 2000 is a nice balance between mobile/desktop\n\n /**\n * Total count of all vertices used by the currently\n * buffered objects.\n *\n * @member {number}\n * @private\n */\n this._vertexCount = 0;\n\n /**\n * Total count of all indices used by the currently\n * buffered objects.\n *\n * @member {number}\n * @private\n */\n this._indexCount = 0;\n\n /**\n * Buffer of objects that are yet to be rendered.\n *\n * @member {PIXI.DisplayObject[]}\n * @private\n */\n this._bufferedElements = [];\n\n /**\n * Number of elements that are buffered and are\n * waiting to be flushed.\n *\n * @member {number}\n * @private\n */\n this._bufferSize = 0;\n\n /**\n * This shader is generated by `this.shaderGenerator`.\n *\n * It is generated specifically to handle the required\n * number of textures being batched together.\n *\n * @member {PIXI.Shader}\n * @protected\n */\n this._shader = null;\n\n /**\n * Pool of `this.geometryClass` geometry objects\n * that store buffers. They are used to pass data\n * to the shader on each draw call.\n *\n * These are never re-allocated again, unless a\n * context change occurs; however, the pool may\n * be expanded if required.\n *\n * @member {PIXI.Geometry[]}\n * @private\n * @see PIXI.AbstractBatchRenderer.contextChange\n */\n this._packedGeometries = [];\n\n /**\n * Size of `this._packedGeometries`. It can be expanded\n * if more than `this._packedGeometryPoolSize` flushes\n * occur in a single frame.\n *\n * @member {number}\n * @private\n */\n this._packedGeometryPoolSize = 2;\n\n /**\n * A flush may occur multiple times in a single\n * frame. On iOS devices or when\n * `settings.CAN_UPLOAD_SAME_BUFFER` is false, the\n * batch renderer does not upload data to the same\n * `WebGLBuffer` for performance reasons.\n *\n * This is the index into `packedGeometries` that points to\n * geometry holding the most recent buffers.\n *\n * @member {number}\n * @private\n */\n this._flushId = 0;\n\n /**\n * Pool of `BatchDrawCall` objects that `flush` used\n * to create \"batches\" of the objects being rendered.\n *\n * These are never re-allocated again.\n *\n * @member BatchDrawCall[]\n * @private\n */\n this._drawCalls = [];\n\n for (var k = 0; k < this.size / 4; k++)\n { // initialize the draw-calls pool to max size.\n this._drawCalls[k] = new BatchDrawCall();\n }\n\n /**\n * Pool of `ViewableBuffer` objects that are sorted in\n * order of increasing size. The flush method uses\n * the buffer with the least size above the amount\n * it requires. These are used for passing attributes.\n *\n * The first buffer has a size of 8; each subsequent\n * buffer has double capacity of its previous.\n *\n * @member {PIXI.ViewableBuffer}\n * @private\n * @see PIXI.AbstractBatchRenderer#getAttributeBuffer\n */\n this._aBuffers = {};\n\n /**\n * Pool of `Uint16Array` objects that are sorted in\n * order of increasing size. The flush method uses\n * the buffer with the least size above the amount\n * it requires. These are used for passing indices.\n *\n * The first buffer has a size of 12; each subsequent\n * buffer has double capacity of its previous.\n *\n * @member {Uint16Array[]}\n * @private\n * @see PIXI.AbstractBatchRenderer#getIndexBuffer\n */\n this._iBuffers = {};\n\n /**\n * Maximum number of textures that can be uploaded to\n * the GPU under the current context. It is initialized\n * properly in `this.contextChange`.\n *\n * @member {number}\n * @see PIXI.AbstractBatchRenderer#contextChange\n * @readonly\n */\n this.MAX_TEXTURES = 1;\n\n this.renderer.on('prerender', this.onPrerender, this);\n renderer.runners.contextChange.add(this);\n }\n\n if ( ObjectRenderer ) AbstractBatchRenderer.__proto__ = ObjectRenderer;\n AbstractBatchRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n AbstractBatchRenderer.prototype.constructor = AbstractBatchRenderer;\n\n /**\n * Handles the `contextChange` signal.\n *\n * It calculates `this.MAX_TEXTURES` and allocating the\n * packed-geometry object pool.\n */\n AbstractBatchRenderer.prototype.contextChange = function contextChange ()\n {\n var gl = this.renderer.gl;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n this.MAX_TEXTURES = 1;\n }\n else\n {\n // step 1: first check max textures the GPU can handle.\n this.MAX_TEXTURES = Math.min(\n gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS),\n settings.SPRITE_MAX_TEXTURES);\n\n // step 2: check the maximum number of if statements the shader can have too..\n this.MAX_TEXTURES = checkMaxIfStatementsInShader(\n this.MAX_TEXTURES, gl);\n }\n\n this._shader = this.shaderGenerator.generateShader(this.MAX_TEXTURES);\n\n // we use the second shader as the first one depending on your browser\n // may omit aTextureId as it is not used by the shader so is optimized out.\n for (var i = 0; i < this._packedGeometryPoolSize; i++)\n {\n /* eslint-disable max-len */\n this._packedGeometries[i] = new (this.geometryClass)();\n }\n };\n\n /**\n * Handles the `prerender` signal.\n *\n * It ensures that flushes start from the first geometry\n * object again.\n */\n AbstractBatchRenderer.prototype.onPrerender = function onPrerender ()\n {\n this._flushId = 0;\n };\n\n /**\n * Buffers the \"batchable\" object. It need not be rendered\n * immediately.\n *\n * @param {PIXI.Sprite} sprite - the sprite to render when\n * using this spritebatch\n */\n AbstractBatchRenderer.prototype.render = function render (element)\n {\n if (!element._texture.valid)\n {\n return;\n }\n\n if (this._vertexCount + (element.vertexData.length / 2) > this.size)\n {\n this.flush();\n }\n\n this._vertexCount += element.vertexData.length / 2;\n this._indexCount += element.indices.length;\n this._bufferedElements[this._bufferSize++] = element;\n };\n\n /**\n * Renders the content _now_ and empties the current batch.\n */\n AbstractBatchRenderer.prototype.flush = function flush ()\n {\n if (this._vertexCount === 0)\n {\n return;\n }\n\n var attributeBuffer = this.getAttributeBuffer(this._vertexCount);\n var indexBuffer = this.getIndexBuffer(this._indexCount);\n var gl = this.renderer.gl;\n\n var ref = this;\n var elements = ref._bufferedElements;\n var drawCalls = ref._drawCalls;\n var MAX_TEXTURES = ref.MAX_TEXTURES;\n var packedGeometries = ref._packedGeometries;\n var vertexSize = ref.vertexSize;\n\n var touch = this.renderer.textureGC.count;\n\n var index = 0;\n var _indexCount = 0;\n\n var nextTexture;\n var currentTexture;\n var textureCount = 0;\n\n var currentGroup = drawCalls[0];\n var groupCount = 0;\n\n var blendMode = -1;// blend-mode of previous element/sprite/object!\n\n currentGroup.textureCount = 0;\n currentGroup.start = 0;\n currentGroup.blend = blendMode;\n\n var TICK = ++BaseTexture._globalBatch;\n var i;\n\n for (i = 0; i < this._bufferSize; ++i)\n {\n var sprite = elements[i];\n\n elements[i] = null;\n nextTexture = sprite._texture.baseTexture;\n\n var spriteBlendMode = premultiplyBlendMode[\n nextTexture.premultiplyAlpha ? 1 : 0][sprite.blendMode];\n\n if (blendMode !== spriteBlendMode)\n {\n blendMode = spriteBlendMode;\n\n // force the batch to break!\n currentTexture = null;\n textureCount = MAX_TEXTURES;\n TICK++;\n }\n\n if (currentTexture !== nextTexture)\n {\n currentTexture = nextTexture;\n\n if (nextTexture._batchEnabled !== TICK)\n {\n if (textureCount === MAX_TEXTURES)\n {\n TICK++;\n\n textureCount = 0;\n\n currentGroup.size = _indexCount - currentGroup.start;\n\n currentGroup = drawCalls[groupCount++];\n currentGroup.textureCount = 0;\n currentGroup.blend = blendMode;\n currentGroup.start = _indexCount;\n }\n\n nextTexture.touched = touch;\n nextTexture._batchEnabled = TICK;\n nextTexture._id = textureCount;\n\n currentGroup.textures[currentGroup.textureCount++] = nextTexture;\n textureCount++;\n }\n }\n\n this.packInterleavedGeometry(sprite, attributeBuffer,\n indexBuffer, index, _indexCount);\n\n // push a graphics..\n index += (sprite.vertexData.length / 2) * vertexSize;\n _indexCount += sprite.indices.length;\n }\n\n BaseTexture._globalBatch = TICK;\n currentGroup.size = _indexCount - currentGroup.start;\n\n if (!settings.CAN_UPLOAD_SAME_BUFFER)\n { /* Usually on iOS devices, where the browser doesn't\n like uploads to the same buffer in a single frame. */\n if (this._packedGeometryPoolSize <= this._flushId)\n {\n this._packedGeometryPoolSize++;\n packedGeometries[this._flushId] = new (this.geometryClass)();\n }\n\n packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0);\n packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0);\n\n this.renderer.geometry.bind(packedGeometries[this._flushId]);\n this.renderer.geometry.updateBuffers();\n this._flushId++;\n }\n else\n {\n // lets use the faster option, always use buffer number 0\n packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0);\n packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0);\n\n this.renderer.geometry.updateBuffers();\n }\n\n var textureSystem = this.renderer.texture;\n var stateSystem = this.renderer.state;\n\n // Upload textures and do the draw calls\n for (i = 0; i < groupCount; i++)\n {\n var group = drawCalls[i];\n var groupTextureCount = group.textureCount;\n\n for (var j = 0; j < groupTextureCount; j++)\n {\n textureSystem.bind(group.textures[j], j);\n group.textures[j] = null;\n }\n\n stateSystem.setBlendMode(group.blend);\n gl.drawElements(group.type, group.size, gl.UNSIGNED_SHORT, group.start * 2);\n }\n\n // reset elements for the next flush\n this._bufferSize = 0;\n this._vertexCount = 0;\n this._indexCount = 0;\n };\n\n /**\n * Starts a new sprite batch.\n */\n AbstractBatchRenderer.prototype.start = function start ()\n {\n this.renderer.state.set(this.state);\n\n this.renderer.shader.bind(this._shader);\n\n if (settings.CAN_UPLOAD_SAME_BUFFER)\n {\n // bind buffer #0, we don't need others\n this.renderer.geometry.bind(this._packedGeometries[this._flushId]);\n }\n };\n\n /**\n * Stops and flushes the current batch.\n */\n AbstractBatchRenderer.prototype.stop = function stop ()\n {\n this.flush();\n };\n\n /**\n * Destroys this `AbstractBatchRenderer`. It cannot be used again.\n */\n AbstractBatchRenderer.prototype.destroy = function destroy ()\n {\n for (var i = 0; i < this._packedGeometryPoolSize; i++)\n {\n if (this._packedGeometries[i])\n {\n this._packedGeometries[i].destroy();\n }\n }\n\n this.renderer.off('prerender', this.onPrerender, this);\n\n this._aBuffers = null;\n this._iBuffers = null;\n this._packedGeometries = null;\n this._drawCalls = null;\n\n if (this._shader)\n {\n this._shader.destroy();\n this._shader = null;\n }\n\n ObjectRenderer.prototype.destroy.call(this);\n };\n\n /**\n * Fetches an attribute buffer from `this._aBuffers` that\n * can hold atleast `size` floats.\n *\n * @param {number} size - minimum capacity required\n * @return {ViewableBuffer} - buffer than can hold atleast `size` floats\n * @private\n */\n AbstractBatchRenderer.prototype.getAttributeBuffer = function getAttributeBuffer (size)\n {\n // 8 vertices is enough for 2 quads\n var roundedP2 = nextPow2(Math.ceil(size / 8));\n var roundedSizeIndex = log2(roundedP2);\n var roundedSize = roundedP2 * 8;\n\n if (this._aBuffers.length <= roundedSizeIndex)\n {\n this._iBuffers.length = roundedSizeIndex + 1;\n }\n\n var buffer = this._aBuffers[roundedSize];\n\n if (!buffer)\n {\n this._aBuffers[roundedSize] = buffer = new ViewableBuffer(roundedSize * this.vertexSize * 4);\n }\n\n return buffer;\n };\n\n /**\n * Fetches an index buffer from `this._iBuffers` that can\n * has atleast `size` capacity.\n *\n * @param {number} size - minimum required capacity\n * @return {Uint16Array} - buffer that can fit `size`\n * indices.\n * @private\n */\n AbstractBatchRenderer.prototype.getIndexBuffer = function getIndexBuffer (size)\n {\n // 12 indices is enough for 2 quads\n var roundedP2 = nextPow2(Math.ceil(size / 12));\n var roundedSizeIndex = log2(roundedP2);\n var roundedSize = roundedP2 * 12;\n\n if (this._iBuffers.length <= roundedSizeIndex)\n {\n this._iBuffers.length = roundedSizeIndex + 1;\n }\n\n var buffer = this._iBuffers[roundedSizeIndex];\n\n if (!buffer)\n {\n this._iBuffers[roundedSizeIndex] = buffer = new Uint16Array(roundedSize);\n }\n\n return buffer;\n };\n\n /**\n * Takes the four batching parameters of `element`, interleaves\n * and pushes them into the batching attribute/index buffers given.\n *\n * It uses these properties: `vertexData` `uvs`, `textureId` and\n * `indicies`. It also uses the \"tint\" of the base-texture, if\n * present.\n *\n * @param {PIXI.Sprite} element - element being rendered\n * @param {PIXI.ViewableBuffer} attributeBuffer - attribute buffer.\n * @param {Uint16Array} indexBuffer - index buffer\n * @param {number} aIndex - number of floats already in the attribute buffer\n * @param {number} iIndex - number of indices already in `indexBuffer`\n */\n AbstractBatchRenderer.prototype.packInterleavedGeometry = function packInterleavedGeometry (element, attributeBuffer, indexBuffer, aIndex, iIndex)\n {\n var uint32View = attributeBuffer.uint32View;\n var float32View = attributeBuffer.float32View;\n\n var packedVertices = aIndex / this.vertexSize;\n var uvs = element.uvs;\n var indicies = element.indices;\n var vertexData = element.vertexData;\n var textureId = element._texture.baseTexture._id;\n\n var alpha = Math.min(element.worldAlpha, 1.0);\n var argb = (alpha < 1.0\n && element._texture.baseTexture.premultiplyAlpha)\n ? premultiplyTint(element._tintRGB, alpha)\n : element._tintRGB + (alpha * 255 << 24);\n\n // lets not worry about tint! for now..\n for (var i = 0; i < vertexData.length; i += 2)\n {\n float32View[aIndex++] = vertexData[i];\n float32View[aIndex++] = vertexData[i + 1];\n float32View[aIndex++] = uvs[i];\n float32View[aIndex++] = uvs[i + 1];\n uint32View[aIndex++] = argb;\n float32View[aIndex++] = textureId;\n }\n\n for (var i$1 = 0; i$1 < indicies.length; i$1++)\n {\n indexBuffer[iIndex++] = packedVertices + indicies[i$1];\n }\n };\n\n return AbstractBatchRenderer;\n}(ObjectRenderer));\n\n/**\n * Helper that generates batching multi-texture shader. Use it with your new BatchRenderer\n *\n * @class\n * @memberof PIXI\n */\nvar BatchShaderGenerator = function BatchShaderGenerator(vertexSrc, fragTemplate)\n{\n /**\n * Reference to the vertex shader source.\n *\n * @member {string}\n */\n this.vertexSrc = vertexSrc;\n\n /**\n * Reference to the fragement shader template. Must contain \"%count%\" and \"%forloop%\".\n *\n * @member {string}\n */\n this.fragTemplate = fragTemplate;\n\n this.programCache = {};\n this.defaultGroupCache = {};\n\n if (fragTemplate.indexOf('%count%') < 0)\n {\n throw new Error('Fragment template must contain \"%count%\".');\n }\n\n if (fragTemplate.indexOf('%forloop%') < 0)\n {\n throw new Error('Fragment template must contain \"%forloop%\".');\n }\n};\n\nBatchShaderGenerator.prototype.generateShader = function generateShader (maxTextures)\n{\n if (!this.programCache[maxTextures])\n {\n var sampleValues = new Int32Array(maxTextures);\n\n for (var i = 0; i < maxTextures; i++)\n {\n sampleValues[i] = i;\n }\n\n this.defaultGroupCache[maxTextures] = UniformGroup.from({ uSamplers: sampleValues }, true);\n\n var fragmentSrc = this.fragTemplate;\n\n fragmentSrc = fragmentSrc.replace(/%count%/gi, (\"\" + maxTextures));\n fragmentSrc = fragmentSrc.replace(/%forloop%/gi, this.generateSampleSrc(maxTextures));\n\n this.programCache[maxTextures] = new Program(this.vertexSrc, fragmentSrc);\n }\n\n var uniforms = {\n tint: new Float32Array([1, 1, 1, 1]),\n translationMatrix: new Matrix(),\n default: this.defaultGroupCache[maxTextures],\n };\n\n return new Shader(this.programCache[maxTextures], uniforms);\n};\n\nBatchShaderGenerator.prototype.generateSampleSrc = function generateSampleSrc (maxTextures)\n{\n var src = '';\n\n src += '\\n';\n src += '\\n';\n\n for (var i = 0; i < maxTextures; i++)\n {\n if (i > 0)\n {\n src += '\\nelse ';\n }\n\n if (i < maxTextures - 1)\n {\n src += \"if(vTextureId < \" + i + \".5)\";\n }\n\n src += '\\n{';\n src += \"\\n\\tcolor = texture2D(uSamplers[\" + i + \"], vTextureCoord);\";\n src += '\\n}';\n }\n\n src += '\\n';\n src += '\\n';\n\n return src;\n};\n\n/**\n * Geometry used to batch standard PIXI content (e.g. Mesh, Sprite, Graphics objects).\n *\n * @class\n * @memberof PIXI\n */\nvar BatchGeometry = /*@__PURE__*/(function (Geometry) {\n function BatchGeometry(_static)\n {\n if ( _static === void 0 ) _static = false;\n\n Geometry.call(this);\n\n /**\n * Buffer used for position, color, texture IDs\n *\n * @member {PIXI.Buffer}\n * @protected\n */\n this._buffer = new Buffer(null, _static, false);\n\n /**\n * Index buffer data\n *\n * @member {PIXI.Buffer}\n * @protected\n */\n this._indexBuffer = new Buffer(null, _static, true);\n\n this.addAttribute('aVertexPosition', this._buffer, 2, false, TYPES.FLOAT)\n .addAttribute('aTextureCoord', this._buffer, 2, false, TYPES.FLOAT)\n .addAttribute('aColor', this._buffer, 4, true, TYPES.UNSIGNED_BYTE)\n .addAttribute('aTextureId', this._buffer, 1, true, TYPES.FLOAT)\n .addIndex(this._indexBuffer);\n }\n\n if ( Geometry ) BatchGeometry.__proto__ = Geometry;\n BatchGeometry.prototype = Object.create( Geometry && Geometry.prototype );\n BatchGeometry.prototype.constructor = BatchGeometry;\n\n return BatchGeometry;\n}(Geometry));\n\nvar defaultVertex$2 = \"precision highp float;\\nattribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\nattribute vec4 aColor;\\nattribute float aTextureId;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform vec4 tint;\\n\\nvarying vec2 vTextureCoord;\\nvarying vec4 vColor;\\nvarying float vTextureId;\\n\\nvoid main(void){\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vTextureId = aTextureId;\\n vColor = aColor * tint;\\n}\\n\";\n\nvar defaultFragment$2 = \"varying vec2 vTextureCoord;\\nvarying vec4 vColor;\\nvarying float vTextureId;\\nuniform sampler2D uSamplers[%count%];\\n\\nvoid main(void){\\n vec4 color;\\n %forloop%\\n gl_FragColor = color * vColor;\\n}\\n\";\n\n/**\n * @class\n * @memberof PIXI\n * @hideconstructor\n */\nvar BatchPluginFactory = function BatchPluginFactory () {};\n\nvar staticAccessors$1 = { defaultVertexSrc: { configurable: true },defaultFragmentTemplate: { configurable: true } };\n\nBatchPluginFactory.create = function create (options)\n{\n var ref = Object.assign({\n vertex: defaultVertex$2,\n fragment: defaultFragment$2,\n geometryClass: BatchGeometry,\n vertexSize: 6,\n }, options);\n var vertex = ref.vertex;\n var fragment = ref.fragment;\n var vertexSize = ref.vertexSize;\n var geometryClass = ref.geometryClass;\n\n return /*@__PURE__*/(function (AbstractBatchRenderer) {\n function BatchPlugin(renderer)\n {\n AbstractBatchRenderer.call(this, renderer);\n\n this.shaderGenerator = new BatchShaderGenerator(vertex, fragment);\n this.geometryClass = geometryClass;\n this.vertexSize = vertexSize;\n }\n\n if ( AbstractBatchRenderer ) BatchPlugin.__proto__ = AbstractBatchRenderer;\n BatchPlugin.prototype = Object.create( AbstractBatchRenderer && AbstractBatchRenderer.prototype );\n BatchPlugin.prototype.constructor = BatchPlugin;\n\n return BatchPlugin;\n }(AbstractBatchRenderer));\n};\n\n/**\n * The default vertex shader source\n *\n * @static\n * @type {string}\n * @constant\n */\nstaticAccessors$1.defaultVertexSrc.get = function ()\n{\n return defaultVertex$2;\n};\n\n/**\n * The default fragment shader source\n *\n * @static\n * @type {string}\n * @constant\n */\nstaticAccessors$1.defaultFragmentTemplate.get = function ()\n{\n return defaultFragment$2;\n};\n\nObject.defineProperties( BatchPluginFactory, staticAccessors$1 );\n\n// Setup the default BatchRenderer plugin, this is what\n// we'll actually export at the root level\nvar BatchRenderer = BatchPluginFactory.create();\n\nexport { AbstractBatchRenderer, AbstractRenderer, Attribute, BaseRenderTexture, BaseTexture, BatchDrawCall, BatchGeometry, BatchPluginFactory, BatchRenderer, BatchShaderGenerator, Buffer, CubeTexture, Filter, Framebuffer, GLProgram, BaseTexture as GLTexture, Geometry, ObjectRenderer, Program, Quad, QuadUv, RenderTexture, RenderTexturePool, Renderer, Shader, SpriteMaskFilter, State, System, Texture, TextureMatrix, TextureUvs, UniformGroup, ViewableBuffer, autoDetectRenderer, checkMaxIfStatementsInShader, defaultFilter as defaultFilterVertex, _default as defaultVertex, index as resources, systems };\n//# sourceMappingURL=core.es.js.map\n","/*!\n * @pixi/extract - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/extract is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { RenderTexture } from '@pixi/core';\nimport { CanvasRenderTarget } from '@pixi/utils';\nimport { Rectangle } from '@pixi/math';\n\nvar TEMP_RECT = new Rectangle();\nvar BYTES_PER_PIXEL = 4;\n\n/**\n * The extract manager provides functionality to export content from the renderers.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.extract`\n *\n * @class\n * @memberof PIXI.extract\n */\nvar Extract = function Extract(renderer)\n{\n this.renderer = renderer;\n /**\n * Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture\n *\n * @member {PIXI.extract.Extract} extract\n * @memberof PIXI.Renderer#\n * @see PIXI.extract.Extract\n */\n renderer.extract = this;\n};\n\n/**\n * Will return a HTML Image of the target\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @param {string} [format] - Image format, e.g. \"image/jpeg\" or \"image/webp\".\n * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92.\n * @return {HTMLImageElement} HTML Image of the target\n */\nExtract.prototype.image = function image (target, format, quality)\n{\n var image = new Image();\n\n image.src = this.base64(target, format, quality);\n\n return image;\n};\n\n/**\n * Will return a a base64 encoded string of this target. It works by calling\n * `Extract.getCanvas` and then running toDataURL on that.\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @param {string} [format] - Image format, e.g. \"image/jpeg\" or \"image/webp\".\n * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92.\n * @return {string} A base64 encoded string of the texture.\n */\nExtract.prototype.base64 = function base64 (target, format, quality)\n{\n return this.canvas(target).toDataURL(format, quality);\n};\n\n/**\n * Creates a Canvas element, renders this target to it and then returns it.\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @return {HTMLCanvasElement} A Canvas element with the texture rendered on.\n */\nExtract.prototype.canvas = function canvas (target)\n{\n var renderer = this.renderer;\n var resolution;\n var frame;\n var flipY = false;\n var renderTexture;\n var generated = false;\n\n if (target)\n {\n if (target instanceof RenderTexture)\n {\n renderTexture = target;\n }\n else\n {\n renderTexture = this.renderer.generateTexture(target);\n generated = true;\n }\n }\n\n if (renderTexture)\n {\n resolution = renderTexture.baseTexture.resolution;\n frame = renderTexture.frame;\n flipY = false;\n renderer.renderTexture.bind(renderTexture);\n }\n else\n {\n resolution = this.renderer.resolution;\n\n flipY = true;\n\n frame = TEMP_RECT;\n frame.width = this.renderer.width;\n frame.height = this.renderer.height;\n\n renderer.renderTexture.bind(null);\n }\n\n var width = Math.floor(frame.width * resolution);\n var height = Math.floor(frame.height * resolution);\n\n var canvasBuffer = new CanvasRenderTarget(width, height, 1);\n\n var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height);\n\n // read pixels to the array\n var gl = renderer.gl;\n\n gl.readPixels(\n frame.x * resolution,\n frame.y * resolution,\n width,\n height,\n gl.RGBA,\n gl.UNSIGNED_BYTE,\n webglPixels\n );\n\n // add the pixels to the canvas\n var canvasData = canvasBuffer.context.getImageData(0, 0, width, height);\n\n Extract.arrayPostDivide(webglPixels, canvasData.data);\n\n canvasBuffer.context.putImageData(canvasData, 0, 0);\n\n // pulling pixels\n if (flipY)\n {\n canvasBuffer.context.scale(1, -1);\n canvasBuffer.context.drawImage(canvasBuffer.canvas, 0, -height);\n }\n\n if (generated)\n {\n renderTexture.destroy(true);\n }\n\n // send the canvas back..\n return canvasBuffer.canvas;\n};\n\n/**\n * Will return a one-dimensional array containing the pixel data of the entire texture in RGBA\n * order, with integer values between 0 and 255 (included).\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @return {Uint8Array} One-dimensional array containing the pixel data of the entire texture\n */\nExtract.prototype.pixels = function pixels (target)\n{\n var renderer = this.renderer;\n var resolution;\n var frame;\n var renderTexture;\n var generated = false;\n\n if (target)\n {\n if (target instanceof RenderTexture)\n {\n renderTexture = target;\n }\n else\n {\n renderTexture = this.renderer.generateTexture(target);\n generated = true;\n }\n }\n\n if (renderTexture)\n {\n resolution = renderTexture.baseTexture.resolution;\n frame = renderTexture.frame;\n\n // bind the buffer\n renderer.renderTexture.bind(renderTexture);\n }\n else\n {\n resolution = renderer.resolution;\n\n frame = TEMP_RECT;\n frame.width = renderer.width;\n frame.height = renderer.height;\n\n renderer.renderTexture.bind(null);\n }\n\n var width = frame.width * resolution;\n var height = frame.height * resolution;\n\n var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height);\n\n // read pixels to the array\n var gl = renderer.gl;\n\n gl.readPixels(\n frame.x * resolution,\n frame.y * resolution,\n width,\n height,\n gl.RGBA,\n gl.UNSIGNED_BYTE,\n webglPixels\n );\n\n if (generated)\n {\n renderTexture.destroy(true);\n }\n\n Extract.arrayPostDivide(webglPixels, webglPixels);\n\n return webglPixels;\n};\n\n/**\n * Destroys the extract\n *\n */\nExtract.prototype.destroy = function destroy ()\n{\n this.renderer.extract = null;\n this.renderer = null;\n};\n\n/**\n * Takes premultiplied pixel data and produces regular pixel data\n *\n * @private\n * @param pixels {number[] | Uint8Array | Uint8ClampedArray} array of pixel data\n * @param out {number[] | Uint8Array | Uint8ClampedArray} output array\n */\nExtract.arrayPostDivide = function arrayPostDivide (pixels, out)\n{\n for (var i = 0; i < pixels.length; i += 4)\n {\n var alpha = out[i + 3] = pixels[i + 3];\n\n if (alpha !== 0)\n {\n out[i] = Math.round(Math.min(pixels[i] * 255.0 / alpha, 255.0));\n out[i + 1] = Math.round(Math.min(pixels[i + 1] * 255.0 / alpha, 255.0));\n out[i + 2] = Math.round(Math.min(pixels[i + 2] * 255.0 / alpha, 255.0));\n }\n else\n {\n out[i] = pixels[i];\n out[i + 1] = pixels[i + 1];\n out[i + 2] = pixels[i + 2];\n }\n }\n};\n\n/**\n * This namespace provides renderer-specific plugins for exporting content from a renderer.\n * For instance, these plugins can be used for saving an Image, Canvas element or for exporting the raw image data (pixels).\n *\n * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @example\n * // Create a new app (will auto-add extract plugin to renderer)\n * const app = new PIXI.Application();\n *\n * // Draw a red circle\n * const graphics = new PIXI.Graphics()\n * .beginFill(0xFF0000)\n * .drawCircle(0, 0, 50);\n *\n * // Render the graphics as an HTMLImageElement\n * const image = app.renderer.plugins.extract.image(graphics);\n * document.body.appendChild(image);\n * @namespace PIXI.extract\n */\n\nexport { Extract };\n//# sourceMappingURL=extract.es.js.map\n","/*!\n * @pixi/interaction - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/interaction is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Point } from '@pixi/math';\nimport { Ticker, UPDATE_PRIORITY } from '@pixi/ticker';\nimport { DisplayObject } from '@pixi/display';\nimport { EventEmitter } from '@pixi/utils';\n\n/**\n * Holds all information related to an Interaction event\n *\n * @class\n * @memberof PIXI.interaction\n */\nvar InteractionData = function InteractionData()\n{\n /**\n * This point stores the global coords of where the touch/mouse event happened\n *\n * @member {PIXI.Point}\n */\n this.global = new Point();\n\n /**\n * The target Sprite that was interacted with\n *\n * @member {PIXI.Sprite}\n */\n this.target = null;\n\n /**\n * When passed to an event handler, this will be the original DOM Event that was captured\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent\n * @see https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent\n * @member {MouseEvent|TouchEvent|PointerEvent}\n */\n this.originalEvent = null;\n\n /**\n * Unique identifier for this interaction\n *\n * @member {number}\n */\n this.identifier = null;\n\n /**\n * Indicates whether or not the pointer device that created the event is the primary pointer.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary\n * @type {Boolean}\n */\n this.isPrimary = false;\n\n /**\n * Indicates which button was pressed on the mouse or pointer device to trigger the event.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button\n * @type {number}\n */\n this.button = 0;\n\n /**\n * Indicates which buttons are pressed on the mouse or pointer device when the event is triggered.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/buttons\n * @type {number}\n */\n this.buttons = 0;\n\n /**\n * The width of the pointer's contact along the x-axis, measured in CSS pixels.\n * radiusX of TouchEvents will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width\n * @type {number}\n */\n this.width = 0;\n\n /**\n * The height of the pointer's contact along the y-axis, measured in CSS pixels.\n * radiusY of TouchEvents will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height\n * @type {number}\n */\n this.height = 0;\n\n /**\n * The angle, in degrees, between the pointer device and the screen.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX\n * @type {number}\n */\n this.tiltX = 0;\n\n /**\n * The angle, in degrees, between the pointer device and the screen.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY\n * @type {number}\n */\n this.tiltY = 0;\n\n /**\n * The type of pointer that triggered the event.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType\n * @type {string}\n */\n this.pointerType = null;\n\n /**\n * Pressure applied by the pointing device during the event. A Touch's force property\n * will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure\n * @type {number}\n */\n this.pressure = 0;\n\n /**\n * From TouchEvents (not PointerEvents triggered by touches), the rotationAngle of the Touch.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle\n * @type {number}\n */\n this.rotationAngle = 0;\n\n /**\n * Twist of a stylus pointer.\n * @see https://w3c.github.io/pointerevents/#pointerevent-interface\n * @type {number}\n */\n this.twist = 0;\n\n /**\n * Barrel pressure on a stylus pointer.\n * @see https://w3c.github.io/pointerevents/#pointerevent-interface\n * @type {number}\n */\n this.tangentialPressure = 0;\n};\n\nvar prototypeAccessors = { pointerId: { configurable: true } };\n\n/**\n * The unique identifier of the pointer. It will be the same as `identifier`.\n * @readonly\n * @member {number}\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId\n */\nprototypeAccessors.pointerId.get = function ()\n{\n return this.identifier;\n};\n\n/**\n * This will return the local coordinates of the specified displayObject for this InteractionData\n *\n * @param {PIXI.DisplayObject} displayObject - The DisplayObject that you would like the local\n * coords off\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional (otherwise\n * will create a new point)\n * @param {PIXI.Point} [globalPos] - A Point object containing your custom global coords, optional\n * (otherwise will use the current global coords)\n * @return {PIXI.Point} A point containing the coordinates of the InteractionData position relative\n * to the DisplayObject\n */\nInteractionData.prototype.getLocalPosition = function getLocalPosition (displayObject, point, globalPos)\n{\n return displayObject.worldTransform.applyInverse(globalPos || this.global, point);\n};\n\n/**\n * Copies properties from normalized event data.\n *\n * @param {Touch|MouseEvent|PointerEvent} event The normalized event data\n */\nInteractionData.prototype.copyEvent = function copyEvent (event)\n{\n // isPrimary should only change on touchstart/pointerdown, so we don't want to overwrite\n // it with \"false\" on later events when our shim for it on touch events might not be\n // accurate\n if (event.isPrimary)\n {\n this.isPrimary = true;\n }\n this.button = event.button;\n // event.buttons is not available in all browsers (ie. Safari), but it does have a non-standard\n // event.which property instead, which conveys the same information.\n this.buttons = Number.isInteger(event.buttons) ? event.buttons : event.which;\n this.width = event.width;\n this.height = event.height;\n this.tiltX = event.tiltX;\n this.tiltY = event.tiltY;\n this.pointerType = event.pointerType;\n this.pressure = event.pressure;\n this.rotationAngle = event.rotationAngle;\n this.twist = event.twist || 0;\n this.tangentialPressure = event.tangentialPressure || 0;\n};\n\n/**\n * Resets the data for pooling.\n */\nInteractionData.prototype.reset = function reset ()\n{\n // isPrimary is the only property that we really need to reset - everything else is\n // guaranteed to be overwritten\n this.isPrimary = false;\n};\n\nObject.defineProperties( InteractionData.prototype, prototypeAccessors );\n\n/**\n * Event class that mimics native DOM events.\n *\n * @class\n * @memberof PIXI.interaction\n */\nvar InteractionEvent = function InteractionEvent()\n{\n /**\n * Whether this event will continue propagating in the tree.\n *\n * Remaining events for the {@link stopsPropagatingAt} object\n * will still be dispatched.\n *\n * @member {boolean}\n */\n this.stopped = false;\n\n /**\n * At which object this event stops propagating.\n *\n * @private\n * @member {PIXI.DisplayObject}\n */\n this.stopsPropagatingAt = null;\n\n /**\n * Whether we already reached the element we want to\n * stop propagating at. This is important for delayed events,\n * where we start over deeper in the tree again.\n *\n * @private\n * @member {boolean}\n */\n this.stopPropagationHint = false;\n\n /**\n * The object which caused this event to be dispatched.\n * For listener callback see {@link PIXI.interaction.InteractionEvent.currentTarget}.\n *\n * @member {PIXI.DisplayObject}\n */\n this.target = null;\n\n /**\n * The object whose event listener’s callback is currently being invoked.\n *\n * @member {PIXI.DisplayObject}\n */\n this.currentTarget = null;\n\n /**\n * Type of the event\n *\n * @member {string}\n */\n this.type = null;\n\n /**\n * InteractionData related to this event\n *\n * @member {PIXI.interaction.InteractionData}\n */\n this.data = null;\n};\n\n/**\n * Prevents event from reaching any objects other than the current object.\n *\n */\nInteractionEvent.prototype.stopPropagation = function stopPropagation ()\n{\n this.stopped = true;\n this.stopPropagationHint = true;\n this.stopsPropagatingAt = this.currentTarget;\n};\n\n/**\n * Resets the event.\n */\nInteractionEvent.prototype.reset = function reset ()\n{\n this.stopped = false;\n this.stopsPropagatingAt = null;\n this.stopPropagationHint = false;\n this.currentTarget = null;\n this.target = null;\n};\n\n/**\n * DisplayObjects with the {@link PIXI.interaction.interactiveTarget} mixin use this class to track interactions\n *\n * @class\n * @private\n * @memberof PIXI.interaction\n */\nvar InteractionTrackingData = function InteractionTrackingData(pointerId)\n{\n this._pointerId = pointerId;\n this._flags = InteractionTrackingData.FLAGS.NONE;\n};\n\nvar prototypeAccessors$1 = { pointerId: { configurable: true },flags: { configurable: true },none: { configurable: true },over: { configurable: true },rightDown: { configurable: true },leftDown: { configurable: true } };\n\n/**\n *\n * @private\n * @param {number} flag - The interaction flag to set\n * @param {boolean} yn - Should the flag be set or unset\n */\nInteractionTrackingData.prototype._doSet = function _doSet (flag, yn)\n{\n if (yn)\n {\n this._flags = this._flags | flag;\n }\n else\n {\n this._flags = this._flags & (~flag);\n }\n};\n\n/**\n * Unique pointer id of the event\n *\n * @readonly\n * @private\n * @member {number}\n */\nprototypeAccessors$1.pointerId.get = function ()\n{\n return this._pointerId;\n};\n\n/**\n * State of the tracking data, expressed as bit flags\n *\n * @private\n * @member {number}\n */\nprototypeAccessors$1.flags.get = function ()\n{\n return this._flags;\n};\n\nprototypeAccessors$1.flags.set = function (flags) // eslint-disable-line require-jsdoc\n{\n this._flags = flags;\n};\n\n/**\n * Is the tracked event inactive (not over or down)?\n *\n * @private\n * @member {number}\n */\nprototypeAccessors$1.none.get = function ()\n{\n return this._flags === this.constructor.FLAGS.NONE;\n};\n\n/**\n * Is the tracked event over the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.over.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.OVER) !== 0;\n};\n\nprototypeAccessors$1.over.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.OVER, yn);\n};\n\n/**\n * Did the right mouse button come down in the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.rightDown.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.RIGHT_DOWN) !== 0;\n};\n\nprototypeAccessors$1.rightDown.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.RIGHT_DOWN, yn);\n};\n\n/**\n * Did the left mouse button come down in the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.leftDown.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.LEFT_DOWN) !== 0;\n};\n\nprototypeAccessors$1.leftDown.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.LEFT_DOWN, yn);\n};\n\nObject.defineProperties( InteractionTrackingData.prototype, prototypeAccessors$1 );\n\nInteractionTrackingData.FLAGS = Object.freeze({\n NONE: 0,\n OVER: 1 << 0,\n LEFT_DOWN: 1 << 1,\n RIGHT_DOWN: 1 << 2,\n});\n\n/**\n * Interface for classes that represent a hit area.\n *\n * It is implemented by the following classes:\n * - {@link PIXI.Circle}\n * - {@link PIXI.Ellipse}\n * - {@link PIXI.Polygon}\n * - {@link PIXI.RoundedRectangle}\n *\n * @interface IHitArea\n * @memberof PIXI\n */\n\n/**\n * Checks whether the x and y coordinates given are contained within this area\n *\n * @method\n * @name contains\n * @memberof PIXI.IHitArea#\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this area\n */\n\n/**\n * Default property values of interactive objects\n * Used by {@link PIXI.interaction.InteractionManager} to automatically give all DisplayObjects these properties\n *\n * @private\n * @name interactiveTarget\n * @type {Object}\n * @memberof PIXI.interaction\n * @example\n * function MyObject() {}\n *\n * Object.assign(\n * DisplayObject.prototype,\n * PIXI.interaction.interactiveTarget\n * );\n */\nvar interactiveTarget = {\n\n /**\n * Enable interaction events for the DisplayObject. Touch, pointer and mouse\n * events will not be emitted unless `interactive` is set to `true`.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.on('tap', (event) => {\n * //handle event\n * });\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n interactive: false,\n\n /**\n * Determines if the children to the displayObject can be clicked/touched\n * Setting this to false allows PixiJS to bypass a recursive `hitTest` function\n *\n * @member {boolean}\n * @memberof PIXI.Container#\n */\n interactiveChildren: true,\n\n /**\n * Interaction shape. Children will be hit first, then this shape will be checked.\n * Setting this will cause this shape to be checked in hit tests rather than the displayObject's bounds.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.hitArea = new PIXI.Rectangle(0, 0, 100, 100);\n * @member {PIXI.IHitArea}\n * @memberof PIXI.DisplayObject#\n */\n hitArea: null,\n\n /**\n * If enabled, the mouse cursor use the pointer behavior when hovered over the displayObject if it is interactive\n * Setting this changes the 'cursor' property to `'pointer'`.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.buttonMode = true;\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n get buttonMode()\n {\n return this.cursor === 'pointer';\n },\n set buttonMode(value)\n {\n if (value)\n {\n this.cursor = 'pointer';\n }\n else if (this.cursor === 'pointer')\n {\n this.cursor = null;\n }\n },\n\n /**\n * This defines what cursor mode is used when the mouse cursor\n * is hovered over the displayObject.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.cursor = 'wait';\n * @see https://developer.mozilla.org/en/docs/Web/CSS/cursor\n *\n * @member {string}\n * @memberof PIXI.DisplayObject#\n */\n cursor: null,\n\n /**\n * Internal set of all active pointers, by identifier\n *\n * @member {Map}\n * @memberof PIXI.DisplayObject#\n * @private\n */\n get trackedPointers()\n {\n if (this._trackedPointers === undefined) { this._trackedPointers = {}; }\n\n return this._trackedPointers;\n },\n\n /**\n * Map of all tracked pointers, by identifier. Use trackedPointers to access.\n *\n * @private\n * @type {Map}\n */\n _trackedPointers: undefined,\n};\n\n// Mix interactiveTarget into DisplayObject.prototype,\n// after deprecation has been handled\nDisplayObject.mixin(interactiveTarget);\n\nvar MOUSE_POINTER_ID = 1;\n\n// helpers for hitTest() - only used inside hitTest()\nvar hitTestEvent = {\n target: null,\n data: {\n global: null,\n },\n};\n\n/**\n * The interaction manager deals with mouse, touch and pointer events.\n *\n * Any DisplayObject can be interactive if its `interactive` property is set to true.\n *\n * This manager also supports multitouch.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.interaction`\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI.interaction\n */\nvar InteractionManager = /*@__PURE__*/(function (EventEmitter) {\n function InteractionManager(renderer, options)\n {\n EventEmitter.call(this);\n\n options = options || {};\n\n /**\n * The renderer this interaction manager works for.\n *\n * @member {PIXI.AbstractRenderer}\n */\n this.renderer = renderer;\n\n /**\n * Should default browser actions automatically be prevented.\n * Does not apply to pointer events for backwards compatibility\n * preventDefault on pointer events stops mouse events from firing\n * Thus, for every pointer event, there will always be either a mouse of touch event alongside it.\n *\n * @member {boolean}\n * @default true\n */\n this.autoPreventDefault = options.autoPreventDefault !== undefined ? options.autoPreventDefault : true;\n\n /**\n * Frequency in milliseconds that the mousemove, mouseover & mouseout interaction events will be checked.\n *\n * @member {number}\n * @default 10\n */\n this.interactionFrequency = options.interactionFrequency || 10;\n\n /**\n * The mouse data\n *\n * @member {PIXI.interaction.InteractionData}\n */\n this.mouse = new InteractionData();\n this.mouse.identifier = MOUSE_POINTER_ID;\n\n // setting the mouse to start off far off screen will mean that mouse over does\n // not get called before we even move the mouse.\n this.mouse.global.set(-999999);\n\n /**\n * Actively tracked InteractionData\n *\n * @private\n * @member {Object.}\n */\n this.activeInteractionData = {};\n this.activeInteractionData[MOUSE_POINTER_ID] = this.mouse;\n\n /**\n * Pool of unused InteractionData\n *\n * @private\n * @member {PIXI.interaction.InteractionData[]}\n */\n this.interactionDataPool = [];\n\n /**\n * An event data object to handle all the event tracking/dispatching\n *\n * @member {object}\n */\n this.eventData = new InteractionEvent();\n\n /**\n * The DOM element to bind to.\n *\n * @protected\n * @member {HTMLElement}\n */\n this.interactionDOMElement = null;\n\n /**\n * This property determines if mousemove and touchmove events are fired only when the cursor\n * is over the object.\n * Setting to true will make things work more in line with how the DOM version works.\n * Setting to false can make things easier for things like dragging\n * It is currently set to false as this is how PixiJS used to work. This will be set to true in\n * future versions of pixi.\n *\n * @member {boolean}\n * @default false\n */\n this.moveWhenInside = false;\n\n /**\n * Have events been attached to the dom element?\n *\n * @protected\n * @member {boolean}\n */\n this.eventsAdded = false;\n\n /**\n * Is the mouse hovering over the renderer?\n *\n * @protected\n * @member {boolean}\n */\n this.mouseOverRenderer = false;\n\n /**\n * Does the device support touch events\n * https://www.w3.org/TR/touch-events/\n *\n * @readonly\n * @member {boolean}\n */\n this.supportsTouchEvents = 'ontouchstart' in window;\n\n /**\n * Does the device support pointer events\n * https://www.w3.org/Submission/pointer-events/\n *\n * @readonly\n * @member {boolean}\n */\n this.supportsPointerEvents = !!window.PointerEvent;\n\n // this will make it so that you don't have to call bind all the time\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerUp = this.onPointerUp.bind(this);\n this.processPointerUp = this.processPointerUp.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerCancel = this.onPointerCancel.bind(this);\n this.processPointerCancel = this.processPointerCancel.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerDown = this.onPointerDown.bind(this);\n this.processPointerDown = this.processPointerDown.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerMove = this.onPointerMove.bind(this);\n this.processPointerMove = this.processPointerMove.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerOut = this.onPointerOut.bind(this);\n this.processPointerOverOut = this.processPointerOverOut.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerOver = this.onPointerOver.bind(this);\n\n /**\n * Dictionary of how different cursor modes are handled. Strings are handled as CSS cursor\n * values, objects are handled as dictionaries of CSS values for interactionDOMElement,\n * and functions are called instead of changing the CSS.\n * Default CSS cursor values are provided for 'default' and 'pointer' modes.\n * @member {Object.}\n */\n this.cursorStyles = {\n default: 'inherit',\n pointer: 'pointer',\n };\n\n /**\n * The mode of the cursor that is being used.\n * The value of this is a key from the cursorStyles dictionary.\n *\n * @member {string}\n */\n this.currentCursorMode = null;\n\n /**\n * Internal cached let.\n *\n * @private\n * @member {string}\n */\n this.cursor = null;\n\n /**\n * Internal cached let.\n *\n * @private\n * @member {PIXI.Point}\n */\n this._tempPoint = new Point();\n\n /**\n * The current resolution / device pixel ratio.\n *\n * @member {number}\n * @default 1\n */\n this.resolution = 1;\n\n /**\n * Delayed pointer events. Used to guarantee correct ordering of over/out events.\n *\n * @private\n * @member {Array}\n */\n this.delayedEvents = [];\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed on the display\n * object.\n *\n * @event PIXI.interaction.InteractionManager#mousedown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * on the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released over the display\n * object.\n *\n * @event PIXI.interaction.InteractionManager#mouseup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * over the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed and released on\n * the display object.\n *\n * @event PIXI.interaction.InteractionManager#click\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * and released on the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightclick\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released outside the\n * display object that initially registered a\n * [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown}.\n *\n * @event PIXI.interaction.InteractionManager#mouseupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * outside the display object that initially registered a\n * [rightdown]{@link PIXI.interaction.InteractionManager#event:rightdown}.\n *\n * @event PIXI.interaction.InteractionManager#rightupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved while over the display object\n *\n * @event PIXI.interaction.InteractionManager#mousemove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved onto the display object\n *\n * @event PIXI.interaction.InteractionManager#mouseover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved off the display object\n *\n * @event PIXI.interaction.InteractionManager#mouseout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed on the display object.\n *\n * @event PIXI.interaction.InteractionManager#pointerdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released over the display object.\n * Not always fired when some buttons are held down while others are released. In those cases,\n * use [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown} and\n * [mouseup]{@link PIXI.interaction.InteractionManager#event:mouseup} instead.\n *\n * @event PIXI.interaction.InteractionManager#pointerup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a pointer event\n *\n * @event PIXI.interaction.InteractionManager#pointercancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed and released on the display object.\n *\n * @event PIXI.interaction.InteractionManager#pointertap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released outside the display object that initially\n * registered a [pointerdown]{@link PIXI.interaction.InteractionManager#event:pointerdown}.\n *\n * @event PIXI.interaction.InteractionManager#pointerupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved while over the display object\n *\n * @event PIXI.interaction.InteractionManager#pointermove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved onto the display object\n *\n * @event PIXI.interaction.InteractionManager#pointerover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved off the display object\n *\n * @event PIXI.interaction.InteractionManager#pointerout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed on the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchstart\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed from the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchend\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a touch\n *\n * @event PIXI.interaction.InteractionManager#touchcancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed and removed from the display object.\n *\n * @event PIXI.interaction.InteractionManager#tap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed outside of the display object that initially\n * registered a [touchstart]{@link PIXI.interaction.InteractionManager#event:touchstart}.\n *\n * @event PIXI.interaction.InteractionManager#touchendoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is moved along the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchmove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed on the display.\n * object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mousedown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * on the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released over the display\n * object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * over the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed and released on\n * the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#click\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * and released on the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightclick\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released outside the\n * display object that initially registered a\n * [mousedown]{@link PIXI.DisplayObject#event:mousedown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * outside the display object that initially registered a\n * [rightdown]{@link PIXI.DisplayObject#event:rightdown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved while over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mousemove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved onto the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved off the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a pointer event.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointercancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed and released on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointertap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released outside the display object that initially\n * registered a [pointerdown]{@link PIXI.DisplayObject#event:pointerdown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved while over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointermove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved onto the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved off the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchstart\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed from the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchend\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a touch.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchcancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed and removed from the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#tap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed outside of the display object that initially\n * registered a [touchstart]{@link PIXI.DisplayObject#event:touchstart}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchendoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is moved along the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchmove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n this.setTargetElement(this.renderer.view, this.renderer.resolution);\n }\n\n if ( EventEmitter ) InteractionManager.__proto__ = EventEmitter;\n InteractionManager.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n InteractionManager.prototype.constructor = InteractionManager;\n\n /**\n * Hit tests a point against the display tree, returning the first interactive object that is hit.\n *\n * @param {PIXI.Point} globalPoint - A point to hit test with, in global space.\n * @param {PIXI.Container} [root] - The root display object to start from. If omitted, defaults\n * to the last rendered root of the associated renderer.\n * @return {PIXI.DisplayObject} The hit display object, if any.\n */\n InteractionManager.prototype.hitTest = function hitTest (globalPoint, root)\n {\n // clear the target for our hit test\n hitTestEvent.target = null;\n // assign the global point\n hitTestEvent.data.global = globalPoint;\n // ensure safety of the root\n if (!root)\n {\n root = this.renderer._lastObjectRendered;\n }\n // run the hit test\n this.processInteractive(hitTestEvent, root, null, true);\n // return our found object - it'll be null if we didn't hit anything\n\n return hitTestEvent.target;\n };\n\n /**\n * Sets the DOM element which will receive mouse/touch events. This is useful for when you have\n * other DOM elements on top of the renderers Canvas element. With this you'll be bale to delegate\n * another DOM element to receive those events.\n *\n * @param {HTMLElement} element - the DOM element which will receive mouse and touch events.\n * @param {number} [resolution=1] - The resolution / device pixel ratio of the new element (relative to the canvas).\n */\n InteractionManager.prototype.setTargetElement = function setTargetElement (element, resolution)\n {\n if ( resolution === void 0 ) resolution = 1;\n\n this.removeEvents();\n\n this.interactionDOMElement = element;\n\n this.resolution = resolution;\n\n this.addEvents();\n };\n\n /**\n * Registers all the DOM events\n *\n * @private\n */\n InteractionManager.prototype.addEvents = function addEvents ()\n {\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n Ticker.system.add(this.update, this, UPDATE_PRIORITY.INTERACTION);\n\n if (window.navigator.msPointerEnabled)\n {\n this.interactionDOMElement.style['-ms-content-zooming'] = 'none';\n this.interactionDOMElement.style['-ms-touch-action'] = 'none';\n }\n else if (this.supportsPointerEvents)\n {\n this.interactionDOMElement.style['touch-action'] = 'none';\n }\n\n /**\n * These events are added first, so that if pointer events are normalized, they are fired\n * in the same order as non-normalized events. ie. pointer event 1st, mouse / touch 2nd\n */\n if (this.supportsPointerEvents)\n {\n window.document.addEventListener('pointermove', this.onPointerMove, true);\n this.interactionDOMElement.addEventListener('pointerdown', this.onPointerDown, true);\n // pointerout is fired in addition to pointerup (for touch events) and pointercancel\n // we already handle those, so for the purposes of what we do in onPointerOut, we only\n // care about the pointerleave event\n this.interactionDOMElement.addEventListener('pointerleave', this.onPointerOut, true);\n this.interactionDOMElement.addEventListener('pointerover', this.onPointerOver, true);\n window.addEventListener('pointercancel', this.onPointerCancel, true);\n window.addEventListener('pointerup', this.onPointerUp, true);\n }\n else\n {\n window.document.addEventListener('mousemove', this.onPointerMove, true);\n this.interactionDOMElement.addEventListener('mousedown', this.onPointerDown, true);\n this.interactionDOMElement.addEventListener('mouseout', this.onPointerOut, true);\n this.interactionDOMElement.addEventListener('mouseover', this.onPointerOver, true);\n window.addEventListener('mouseup', this.onPointerUp, true);\n }\n\n // always look directly for touch events so that we can provide original data\n // In a future version we should change this to being just a fallback and rely solely on\n // PointerEvents whenever available\n if (this.supportsTouchEvents)\n {\n this.interactionDOMElement.addEventListener('touchstart', this.onPointerDown, true);\n this.interactionDOMElement.addEventListener('touchcancel', this.onPointerCancel, true);\n this.interactionDOMElement.addEventListener('touchend', this.onPointerUp, true);\n this.interactionDOMElement.addEventListener('touchmove', this.onPointerMove, true);\n }\n\n this.eventsAdded = true;\n };\n\n /**\n * Removes all the DOM events that were previously registered\n *\n * @private\n */\n InteractionManager.prototype.removeEvents = function removeEvents ()\n {\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n Ticker.system.remove(this.update, this);\n\n if (window.navigator.msPointerEnabled)\n {\n this.interactionDOMElement.style['-ms-content-zooming'] = '';\n this.interactionDOMElement.style['-ms-touch-action'] = '';\n }\n else if (this.supportsPointerEvents)\n {\n this.interactionDOMElement.style['touch-action'] = '';\n }\n\n if (this.supportsPointerEvents)\n {\n window.document.removeEventListener('pointermove', this.onPointerMove, true);\n this.interactionDOMElement.removeEventListener('pointerdown', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('pointerleave', this.onPointerOut, true);\n this.interactionDOMElement.removeEventListener('pointerover', this.onPointerOver, true);\n window.removeEventListener('pointercancel', this.onPointerCancel, true);\n window.removeEventListener('pointerup', this.onPointerUp, true);\n }\n else\n {\n window.document.removeEventListener('mousemove', this.onPointerMove, true);\n this.interactionDOMElement.removeEventListener('mousedown', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('mouseout', this.onPointerOut, true);\n this.interactionDOMElement.removeEventListener('mouseover', this.onPointerOver, true);\n window.removeEventListener('mouseup', this.onPointerUp, true);\n }\n\n if (this.supportsTouchEvents)\n {\n this.interactionDOMElement.removeEventListener('touchstart', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('touchcancel', this.onPointerCancel, true);\n this.interactionDOMElement.removeEventListener('touchend', this.onPointerUp, true);\n this.interactionDOMElement.removeEventListener('touchmove', this.onPointerMove, true);\n }\n\n this.interactionDOMElement = null;\n\n this.eventsAdded = false;\n };\n\n /**\n * Updates the state of interactive objects.\n * Invoked by a throttled ticker update from {@link PIXI.Ticker.system}.\n *\n * @param {number} deltaTime - time delta since last tick\n */\n InteractionManager.prototype.update = function update (deltaTime)\n {\n this._deltaTime += deltaTime;\n\n if (this._deltaTime < this.interactionFrequency)\n {\n return;\n }\n\n this._deltaTime = 0;\n\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n // if the user move the mouse this check has already been done using the mouse move!\n if (this.didMove)\n {\n this.didMove = false;\n\n return;\n }\n\n this.cursor = null;\n\n // Resets the flag as set by a stopPropagation call. This flag is usually reset by a user interaction of any kind,\n // but there was a scenario of a display object moving under a static mouse cursor.\n // In this case, mouseover and mouseevents would not pass the flag test in dispatchEvent function\n for (var k in this.activeInteractionData)\n {\n // eslint-disable-next-line no-prototype-builtins\n if (this.activeInteractionData.hasOwnProperty(k))\n {\n var interactionData = this.activeInteractionData[k];\n\n if (interactionData.originalEvent && interactionData.pointerType !== 'touch')\n {\n var interactionEvent = this.configureInteractionEventForDOMEvent(\n this.eventData,\n interactionData.originalEvent,\n interactionData\n );\n\n this.processInteractive(\n interactionEvent,\n this.renderer._lastObjectRendered,\n this.processPointerOverOut,\n true\n );\n }\n }\n }\n\n this.setCursorMode(this.cursor);\n };\n\n /**\n * Sets the current cursor mode, handling any callbacks or CSS style changes.\n *\n * @param {string} mode - cursor mode, a key from the cursorStyles dictionary\n */\n InteractionManager.prototype.setCursorMode = function setCursorMode (mode)\n {\n mode = mode || 'default';\n // if the mode didn't actually change, bail early\n if (this.currentCursorMode === mode)\n {\n return;\n }\n this.currentCursorMode = mode;\n var style = this.cursorStyles[mode];\n\n // only do things if there is a cursor style for it\n if (style)\n {\n switch (typeof style)\n {\n case 'string':\n // string styles are handled as cursor CSS\n this.interactionDOMElement.style.cursor = style;\n break;\n case 'function':\n // functions are just called, and passed the cursor mode\n style(mode);\n break;\n case 'object':\n // if it is an object, assume that it is a dictionary of CSS styles,\n // apply it to the interactionDOMElement\n Object.assign(this.interactionDOMElement.style, style);\n break;\n }\n }\n else if (typeof mode === 'string' && !Object.prototype.hasOwnProperty.call(this.cursorStyles, mode))\n {\n // if it mode is a string (not a Symbol) and cursorStyles doesn't have any entry\n // for the mode, then assume that the dev wants it to be CSS for the cursor.\n this.interactionDOMElement.style.cursor = mode;\n }\n };\n\n /**\n * Dispatches an event on the display object that was interacted with\n *\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question\n * @param {string} eventString - the name of the event (e.g, mousedown)\n * @param {object} eventData - the event data object\n * @private\n */\n InteractionManager.prototype.dispatchEvent = function dispatchEvent (displayObject, eventString, eventData)\n {\n // Even if the event was stopped, at least dispatch any remaining events\n // for the same display object.\n if (!eventData.stopPropagationHint || displayObject === eventData.stopsPropagatingAt)\n {\n eventData.currentTarget = displayObject;\n eventData.type = eventString;\n\n displayObject.emit(eventString, eventData);\n\n if (displayObject[eventString])\n {\n displayObject[eventString](eventData);\n }\n }\n };\n\n /**\n * Puts a event on a queue to be dispatched later. This is used to guarantee correct\n * ordering of over/out events.\n *\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question\n * @param {string} eventString - the name of the event (e.g, mousedown)\n * @param {object} eventData - the event data object\n * @private\n */\n InteractionManager.prototype.delayDispatchEvent = function delayDispatchEvent (displayObject, eventString, eventData)\n {\n this.delayedEvents.push({ displayObject: displayObject, eventString: eventString, eventData: eventData });\n };\n\n /**\n * Maps x and y coords from a DOM object and maps them correctly to the PixiJS view. The\n * resulting value is stored in the point. This takes into account the fact that the DOM\n * element could be scaled and positioned anywhere on the screen.\n *\n * @param {PIXI.Point} point - the point that the result will be stored in\n * @param {number} x - the x coord of the position to map\n * @param {number} y - the y coord of the position to map\n */\n InteractionManager.prototype.mapPositionToPoint = function mapPositionToPoint (point, x, y)\n {\n var rect;\n\n // IE 11 fix\n if (!this.interactionDOMElement.parentElement)\n {\n rect = { x: 0, y: 0, width: 0, height: 0 };\n }\n else\n {\n rect = this.interactionDOMElement.getBoundingClientRect();\n }\n\n var resolutionMultiplier = 1.0 / this.resolution;\n\n point.x = ((x - rect.left) * (this.interactionDOMElement.width / rect.width)) * resolutionMultiplier;\n point.y = ((y - rect.top) * (this.interactionDOMElement.height / rect.height)) * resolutionMultiplier;\n };\n\n /**\n * This function is provides a neat way of crawling through the scene graph and running a\n * specified function on all interactive objects it finds. It will also take care of hit\n * testing the interactive objects and passes the hit across in the function.\n *\n * @protected\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - event containing the point that\n * is tested for collision\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the displayObject\n * that will be hit test (recursively crawls its children)\n * @param {Function} [func] - the function that will be called on each interactive object. The\n * interactionEvent, displayObject and hit will be passed to the function\n * @param {boolean} [hitTest] - this indicates if the objects inside should be hit test against the point\n * @param {boolean} [interactive] - Whether the displayObject is interactive\n * @param {boolean} [skipDelayed] - Whether to process delayed events before returning. This is\n * used to avoid processing them too early during recursive calls.\n * @return {boolean} returns true if the displayObject hit the point\n */\n InteractionManager.prototype.processInteractive = function processInteractive (interactionEvent, displayObject, func, hitTest, interactive, skipDelayed)\n {\n if (!displayObject || !displayObject.visible)\n {\n return false;\n }\n\n var point = interactionEvent.data.global;\n\n // Took a little while to rework this function correctly! But now it is done and nice and optimized! ^_^\n //\n // This function will now loop through all objects and then only hit test the objects it HAS\n // to, not all of them. MUCH faster..\n // An object will be hit test if the following is true:\n //\n // 1: It is interactive.\n // 2: It belongs to a parent that is interactive AND one of the parents children have not already been hit.\n //\n // As another little optimization once an interactive object has been hit we can carry on\n // through the scenegraph, but we know that there will be no more hits! So we can avoid extra hit tests\n // A final optimization is that an object is not hit test directly if a child has already been hit.\n\n interactive = displayObject.interactive || interactive;\n\n var hit = false;\n var interactiveParent = interactive;\n\n // Flag here can set to false if the event is outside the parents hitArea or mask\n var hitTestChildren = true;\n\n // If there is a hitArea, no need to test against anything else if the pointer is not within the hitArea\n // There is also no longer a need to hitTest children.\n if (displayObject.hitArea)\n {\n if (hitTest)\n {\n displayObject.worldTransform.applyInverse(point, this._tempPoint);\n if (!displayObject.hitArea.contains(this._tempPoint.x, this._tempPoint.y))\n {\n hitTest = false;\n hitTestChildren = false;\n }\n else\n {\n hit = true;\n }\n }\n interactiveParent = false;\n }\n // If there is a mask, no need to hitTest against anything else if the pointer is not within the mask.\n // We still want to hitTestChildren, however, to ensure a mouseout can still be generated.\n // https://github.com/pixijs/pixi.js/issues/5135\n else if (displayObject._mask)\n {\n if (hitTest)\n {\n if (!(displayObject._mask.containsPoint && displayObject._mask.containsPoint(point)))\n {\n hitTest = false;\n }\n }\n }\n\n // ** FREE TIP **! If an object is not interactive or has no buttons in it\n // (such as a game scene!) set interactiveChildren to false for that displayObject.\n // This will allow PixiJS to completely ignore and bypass checking the displayObjects children.\n if (hitTestChildren && displayObject.interactiveChildren && displayObject.children)\n {\n var children = displayObject.children;\n\n for (var i = children.length - 1; i >= 0; i--)\n {\n var child = children[i];\n\n // time to get recursive.. if this function will return if something is hit..\n var childHit = this.processInteractive(interactionEvent, child, func, hitTest, interactiveParent, true);\n\n if (childHit)\n {\n // its a good idea to check if a child has lost its parent.\n // this means it has been removed whilst looping so its best\n if (!child.parent)\n {\n continue;\n }\n\n // we no longer need to hit test any more objects in this container as we we\n // now know the parent has been hit\n interactiveParent = false;\n\n // If the child is interactive , that means that the object hit was actually\n // interactive and not just the child of an interactive object.\n // This means we no longer need to hit test anything else. We still need to run\n // through all objects, but we don't need to perform any hit tests.\n\n if (childHit)\n {\n if (interactionEvent.target)\n {\n hitTest = false;\n }\n hit = true;\n }\n }\n }\n }\n\n // no point running this if the item is not interactive or does not have an interactive parent.\n if (interactive)\n {\n // if we are hit testing (as in we have no hit any objects yet)\n // We also don't need to worry about hit testing if once of the displayObjects children\n // has already been hit - but only if it was interactive, otherwise we need to keep\n // looking for an interactive child, just in case we hit one\n if (hitTest && !interactionEvent.target)\n {\n // already tested against hitArea if it is defined\n if (!displayObject.hitArea && displayObject.containsPoint)\n {\n if (displayObject.containsPoint(point))\n {\n hit = true;\n }\n }\n }\n\n if (displayObject.interactive)\n {\n if (hit && !interactionEvent.target)\n {\n interactionEvent.target = displayObject;\n }\n\n if (func)\n {\n func(interactionEvent, displayObject, !!hit);\n }\n }\n }\n\n var delayedEvents = this.delayedEvents;\n\n if (delayedEvents.length && !skipDelayed)\n {\n // Reset the propagation hint, because we start deeper in the tree again.\n interactionEvent.stopPropagationHint = false;\n\n var delayedLen = delayedEvents.length;\n\n this.delayedEvents = [];\n\n for (var i$1 = 0; i$1 < delayedLen; i$1++)\n {\n var ref = delayedEvents[i$1];\n var displayObject$1 = ref.displayObject;\n var eventString = ref.eventString;\n var eventData = ref.eventData;\n\n // When we reach the object we wanted to stop propagating at,\n // set the propagation hint.\n if (eventData.stopsPropagatingAt === displayObject$1)\n {\n eventData.stopPropagationHint = true;\n }\n\n this.dispatchEvent(displayObject$1, eventString, eventData);\n }\n }\n\n return hit;\n };\n\n /**\n * Is called when the pointer button is pressed down on the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being pressed down\n */\n InteractionManager.prototype.onPointerDown = function onPointerDown (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n /**\n * No need to prevent default on natural pointer events, as there are no side effects\n * Normalized events, however, may have the double mousedown/touchstart issue on the native android browser,\n * so still need to be prevented.\n */\n\n // Guaranteed that there will be at least one event in events, and all events must have the same pointer type\n\n if (this.autoPreventDefault && events[0].isNormalized)\n {\n var cancelable = originalEvent.cancelable || !('cancelable' in originalEvent);\n\n if (cancelable)\n {\n originalEvent.preventDefault();\n }\n }\n\n var eventLen = events.length;\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerDown, true);\n\n this.emit('pointerdown', interactionEvent);\n if (event.pointerType === 'touch')\n {\n this.emit('touchstart', interactionEvent);\n }\n // emit a mouse event for \"pen\" pointers, the way a browser would emit a fallback event\n else if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n var isRightButton = event.button === 2;\n\n this.emit(isRightButton ? 'rightdown' : 'mousedown', this.eventData);\n }\n }\n };\n\n /**\n * Processes the result of the pointer down check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerDown = function processPointerDown (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n var id = interactionEvent.data.identifier;\n\n if (hit)\n {\n if (!displayObject.trackedPointers[id])\n {\n displayObject.trackedPointers[id] = new InteractionTrackingData(id);\n }\n this.dispatchEvent(displayObject, 'pointerdown', interactionEvent);\n\n if (data.pointerType === 'touch')\n {\n this.dispatchEvent(displayObject, 'touchstart', interactionEvent);\n }\n else if (data.pointerType === 'mouse' || data.pointerType === 'pen')\n {\n var isRightButton = data.button === 2;\n\n if (isRightButton)\n {\n displayObject.trackedPointers[id].rightDown = true;\n }\n else\n {\n displayObject.trackedPointers[id].leftDown = true;\n }\n\n this.dispatchEvent(displayObject, isRightButton ? 'rightdown' : 'mousedown', interactionEvent);\n }\n }\n };\n\n /**\n * Is called when the pointer button is released on the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being released\n * @param {boolean} cancelled - true if the pointer is cancelled\n * @param {Function} func - Function passed to {@link processInteractive}\n */\n InteractionManager.prototype.onPointerComplete = function onPointerComplete (originalEvent, cancelled, func)\n {\n var events = this.normalizeToPointerData(originalEvent);\n\n var eventLen = events.length;\n\n // if the event wasn't targeting our canvas, then consider it to be pointerupoutside\n // in all cases (unless it was a pointercancel)\n var eventAppend = originalEvent.target !== this.interactionDOMElement ? 'outside' : '';\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n // perform hit testing for events targeting our canvas or cancel events\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, func, cancelled || !eventAppend);\n\n this.emit(cancelled ? 'pointercancel' : (\"pointerup\" + eventAppend), interactionEvent);\n\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n var isRightButton = event.button === 2;\n\n this.emit(isRightButton ? (\"rightup\" + eventAppend) : (\"mouseup\" + eventAppend), interactionEvent);\n }\n else if (event.pointerType === 'touch')\n {\n this.emit(cancelled ? 'touchcancel' : (\"touchend\" + eventAppend), interactionEvent);\n this.releaseInteractionDataForPointerId(event.pointerId, interactionData);\n }\n }\n };\n\n /**\n * Is called when the pointer button is cancelled\n *\n * @private\n * @param {PointerEvent} event - The DOM event of a pointer button being released\n */\n InteractionManager.prototype.onPointerCancel = function onPointerCancel (event)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && event.pointerType === 'touch') { return; }\n\n this.onPointerComplete(event, true, this.processPointerCancel);\n };\n\n /**\n * Processes the result of the pointer cancel check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n */\n InteractionManager.prototype.processPointerCancel = function processPointerCancel (interactionEvent, displayObject)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n if (displayObject.trackedPointers[id] !== undefined)\n {\n delete displayObject.trackedPointers[id];\n this.dispatchEvent(displayObject, 'pointercancel', interactionEvent);\n\n if (data.pointerType === 'touch')\n {\n this.dispatchEvent(displayObject, 'touchcancel', interactionEvent);\n }\n }\n };\n\n /**\n * Is called when the pointer button is released on the renderer element\n *\n * @private\n * @param {PointerEvent} event - The DOM event of a pointer button being released\n */\n InteractionManager.prototype.onPointerUp = function onPointerUp (event)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && event.pointerType === 'touch') { return; }\n\n this.onPointerComplete(event, false, this.processPointerUp);\n };\n\n /**\n * Processes the result of the pointer up check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerUp = function processPointerUp (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n var trackingData = displayObject.trackedPointers[id];\n\n var isTouch = data.pointerType === 'touch';\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n // need to track mouse down status in the mouse block so that we can emit\n // event in a later block\n var isMouseTap = false;\n\n // Mouse only\n if (isMouse)\n {\n var isRightButton = data.button === 2;\n\n var flags = InteractionTrackingData.FLAGS;\n\n var test = isRightButton ? flags.RIGHT_DOWN : flags.LEFT_DOWN;\n\n var isDown = trackingData !== undefined && (trackingData.flags & test);\n\n if (hit)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightup' : 'mouseup', interactionEvent);\n\n if (isDown)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightclick' : 'click', interactionEvent);\n // because we can confirm that the mousedown happened on this object, flag for later emit of pointertap\n isMouseTap = true;\n }\n }\n else if (isDown)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightupoutside' : 'mouseupoutside', interactionEvent);\n }\n // update the down state of the tracking data\n if (trackingData)\n {\n if (isRightButton)\n {\n trackingData.rightDown = false;\n }\n else\n {\n trackingData.leftDown = false;\n }\n }\n }\n\n // Pointers and Touches, and Mouse\n if (hit)\n {\n this.dispatchEvent(displayObject, 'pointerup', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchend', interactionEvent); }\n\n if (trackingData)\n {\n // emit pointertap if not a mouse, or if the mouse block decided it was a tap\n if (!isMouse || isMouseTap)\n {\n this.dispatchEvent(displayObject, 'pointertap', interactionEvent);\n }\n if (isTouch)\n {\n this.dispatchEvent(displayObject, 'tap', interactionEvent);\n // touches are no longer over (if they ever were) when we get the touchend\n // so we should ensure that we don't keep pretending that they are\n trackingData.over = false;\n }\n }\n }\n else if (trackingData)\n {\n this.dispatchEvent(displayObject, 'pointerupoutside', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchendoutside', interactionEvent); }\n }\n // Only remove the tracking data if there is no over/down state still associated with it\n if (trackingData && trackingData.none)\n {\n delete displayObject.trackedPointers[id];\n }\n };\n\n /**\n * Is called when the pointer moves across the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer moving\n */\n InteractionManager.prototype.onPointerMove = function onPointerMove (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n if (events[0].pointerType === 'mouse' || events[0].pointerType === 'pen')\n {\n this.didMove = true;\n\n this.cursor = null;\n }\n\n var eventLen = events.length;\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerMove, true);\n\n this.emit('pointermove', interactionEvent);\n if (event.pointerType === 'touch') { this.emit('touchmove', interactionEvent); }\n if (event.pointerType === 'mouse' || event.pointerType === 'pen') { this.emit('mousemove', interactionEvent); }\n }\n\n if (events[0].pointerType === 'mouse')\n {\n this.setCursorMode(this.cursor);\n\n // TODO BUG for parents interactive object (border order issue)\n }\n };\n\n /**\n * Processes the result of the pointer move check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerMove = function processPointerMove (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var isTouch = data.pointerType === 'touch';\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n\n if (isMouse)\n {\n this.processPointerOverOut(interactionEvent, displayObject, hit);\n }\n\n if (!this.moveWhenInside || hit)\n {\n this.dispatchEvent(displayObject, 'pointermove', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchmove', interactionEvent); }\n if (isMouse) { this.dispatchEvent(displayObject, 'mousemove', interactionEvent); }\n }\n };\n\n /**\n * Is called when the pointer is moved out of the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer being moved out\n */\n InteractionManager.prototype.onPointerOut = function onPointerOut (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n // Only mouse and pointer can call onPointerOut, so events will always be length 1\n var event = events[0];\n\n if (event.pointerType === 'mouse')\n {\n this.mouseOverRenderer = false;\n this.setCursorMode(null);\n }\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = event;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerOverOut, false);\n\n this.emit('pointerout', interactionEvent);\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n this.emit('mouseout', interactionEvent);\n }\n else\n {\n // we can get touchleave events after touchend, so we want to make sure we don't\n // introduce memory leaks\n this.releaseInteractionDataForPointerId(interactionData.identifier);\n }\n };\n\n /**\n * Processes the result of the pointer over/out check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerOverOut = function processPointerOverOut (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n\n var trackingData = displayObject.trackedPointers[id];\n\n // if we just moused over the display object, then we need to track that state\n if (hit && !trackingData)\n {\n trackingData = displayObject.trackedPointers[id] = new InteractionTrackingData(id);\n }\n\n if (trackingData === undefined) { return; }\n\n if (hit && this.mouseOverRenderer)\n {\n if (!trackingData.over)\n {\n trackingData.over = true;\n this.delayDispatchEvent(displayObject, 'pointerover', interactionEvent);\n if (isMouse)\n {\n this.delayDispatchEvent(displayObject, 'mouseover', interactionEvent);\n }\n }\n\n // only change the cursor if it has not already been changed (by something deeper in the\n // display tree)\n if (isMouse && this.cursor === null)\n {\n this.cursor = displayObject.cursor;\n }\n }\n else if (trackingData.over)\n {\n trackingData.over = false;\n this.dispatchEvent(displayObject, 'pointerout', this.eventData);\n if (isMouse)\n {\n this.dispatchEvent(displayObject, 'mouseout', interactionEvent);\n }\n // if there is no mouse down information for the pointer, then it is safe to delete\n if (trackingData.none)\n {\n delete displayObject.trackedPointers[id];\n }\n }\n };\n\n /**\n * Is called when the pointer is moved into the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being moved into the renderer view\n */\n InteractionManager.prototype.onPointerOver = function onPointerOver (originalEvent)\n {\n var events = this.normalizeToPointerData(originalEvent);\n\n // Only mouse and pointer can call onPointerOver, so events will always be length 1\n var event = events[0];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = event;\n\n if (event.pointerType === 'mouse')\n {\n this.mouseOverRenderer = true;\n }\n\n this.emit('pointerover', interactionEvent);\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n this.emit('mouseover', interactionEvent);\n }\n };\n\n /**\n * Get InteractionData for a given pointerId. Store that data as well\n *\n * @private\n * @param {PointerEvent} event - Normalized pointer event, output from normalizeToPointerData\n * @return {PIXI.interaction.InteractionData} - Interaction data for the given pointer identifier\n */\n InteractionManager.prototype.getInteractionDataForPointerId = function getInteractionDataForPointerId (event)\n {\n var pointerId = event.pointerId;\n\n var interactionData;\n\n if (pointerId === MOUSE_POINTER_ID || event.pointerType === 'mouse')\n {\n interactionData = this.mouse;\n }\n else if (this.activeInteractionData[pointerId])\n {\n interactionData = this.activeInteractionData[pointerId];\n }\n else\n {\n interactionData = this.interactionDataPool.pop() || new InteractionData();\n interactionData.identifier = pointerId;\n this.activeInteractionData[pointerId] = interactionData;\n }\n // copy properties from the event, so that we can make sure that touch/pointer specific\n // data is available\n interactionData.copyEvent(event);\n\n return interactionData;\n };\n\n /**\n * Return unused InteractionData to the pool, for a given pointerId\n *\n * @private\n * @param {number} pointerId - Identifier from a pointer event\n */\n InteractionManager.prototype.releaseInteractionDataForPointerId = function releaseInteractionDataForPointerId (pointerId)\n {\n var interactionData = this.activeInteractionData[pointerId];\n\n if (interactionData)\n {\n delete this.activeInteractionData[pointerId];\n interactionData.reset();\n this.interactionDataPool.push(interactionData);\n }\n };\n\n /**\n * Configure an InteractionEvent to wrap a DOM PointerEvent and InteractionData\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The event to be configured\n * @param {PointerEvent} pointerEvent - The DOM event that will be paired with the InteractionEvent\n * @param {PIXI.interaction.InteractionData} interactionData - The InteractionData that will be paired\n * with the InteractionEvent\n * @return {PIXI.interaction.InteractionEvent} the interaction event that was passed in\n */\n InteractionManager.prototype.configureInteractionEventForDOMEvent = function configureInteractionEventForDOMEvent (interactionEvent, pointerEvent, interactionData)\n {\n interactionEvent.data = interactionData;\n\n this.mapPositionToPoint(interactionData.global, pointerEvent.clientX, pointerEvent.clientY);\n\n // Not really sure why this is happening, but it's how a previous version handled things\n if (pointerEvent.pointerType === 'touch')\n {\n pointerEvent.globalX = interactionData.global.x;\n pointerEvent.globalY = interactionData.global.y;\n }\n\n interactionData.originalEvent = pointerEvent;\n interactionEvent.reset();\n\n return interactionEvent;\n };\n\n /**\n * Ensures that the original event object contains all data that a regular pointer event would have\n *\n * @private\n * @param {TouchEvent|MouseEvent|PointerEvent} event - The original event data from a touch or mouse event\n * @return {PointerEvent[]} An array containing a single normalized pointer event, in the case of a pointer\n * or mouse event, or a multiple normalized pointer events if there are multiple changed touches\n */\n InteractionManager.prototype.normalizeToPointerData = function normalizeToPointerData (event)\n {\n var normalizedEvents = [];\n\n if (this.supportsTouchEvents && event instanceof TouchEvent)\n {\n for (var i = 0, li = event.changedTouches.length; i < li; i++)\n {\n var touch = event.changedTouches[i];\n\n if (typeof touch.button === 'undefined') { touch.button = event.touches.length ? 1 : 0; }\n if (typeof touch.buttons === 'undefined') { touch.buttons = event.touches.length ? 1 : 0; }\n if (typeof touch.isPrimary === 'undefined')\n {\n touch.isPrimary = event.touches.length === 1 && event.type === 'touchstart';\n }\n if (typeof touch.width === 'undefined') { touch.width = touch.radiusX || 1; }\n if (typeof touch.height === 'undefined') { touch.height = touch.radiusY || 1; }\n if (typeof touch.tiltX === 'undefined') { touch.tiltX = 0; }\n if (typeof touch.tiltY === 'undefined') { touch.tiltY = 0; }\n if (typeof touch.pointerType === 'undefined') { touch.pointerType = 'touch'; }\n if (typeof touch.pointerId === 'undefined') { touch.pointerId = touch.identifier || 0; }\n if (typeof touch.pressure === 'undefined') { touch.pressure = touch.force || 0.5; }\n if (typeof touch.twist === 'undefined') { touch.twist = 0; }\n if (typeof touch.tangentialPressure === 'undefined') { touch.tangentialPressure = 0; }\n // TODO: Remove these, as layerX/Y is not a standard, is deprecated, has uneven\n // support, and the fill ins are not quite the same\n // offsetX/Y might be okay, but is not the same as clientX/Y when the canvas's top\n // left is not 0,0 on the page\n if (typeof touch.layerX === 'undefined') { touch.layerX = touch.offsetX = touch.clientX; }\n if (typeof touch.layerY === 'undefined') { touch.layerY = touch.offsetY = touch.clientY; }\n\n // mark the touch as normalized, just so that we know we did it\n touch.isNormalized = true;\n\n normalizedEvents.push(touch);\n }\n }\n // apparently PointerEvent subclasses MouseEvent, so yay\n else if (event instanceof MouseEvent && (!this.supportsPointerEvents || !(event instanceof window.PointerEvent)))\n {\n if (typeof event.isPrimary === 'undefined') { event.isPrimary = true; }\n if (typeof event.width === 'undefined') { event.width = 1; }\n if (typeof event.height === 'undefined') { event.height = 1; }\n if (typeof event.tiltX === 'undefined') { event.tiltX = 0; }\n if (typeof event.tiltY === 'undefined') { event.tiltY = 0; }\n if (typeof event.pointerType === 'undefined') { event.pointerType = 'mouse'; }\n if (typeof event.pointerId === 'undefined') { event.pointerId = MOUSE_POINTER_ID; }\n if (typeof event.pressure === 'undefined') { event.pressure = 0.5; }\n if (typeof event.twist === 'undefined') { event.twist = 0; }\n if (typeof event.tangentialPressure === 'undefined') { event.tangentialPressure = 0; }\n\n // mark the mouse event as normalized, just so that we know we did it\n event.isNormalized = true;\n\n normalizedEvents.push(event);\n }\n else\n {\n normalizedEvents.push(event);\n }\n\n return normalizedEvents;\n };\n\n /**\n * Destroys the interaction manager\n *\n */\n InteractionManager.prototype.destroy = function destroy ()\n {\n this.removeEvents();\n\n this.removeAllListeners();\n\n this.renderer = null;\n\n this.mouse = null;\n\n this.eventData = null;\n\n this.interactionDOMElement = null;\n\n this.onPointerDown = null;\n this.processPointerDown = null;\n\n this.onPointerUp = null;\n this.processPointerUp = null;\n\n this.onPointerCancel = null;\n this.processPointerCancel = null;\n\n this.onPointerMove = null;\n this.processPointerMove = null;\n\n this.onPointerOut = null;\n this.processPointerOverOut = null;\n\n this.onPointerOver = null;\n\n this._tempPoint = null;\n };\n\n return InteractionManager;\n}(EventEmitter));\n\n/**\n * This namespace contains a renderer plugin for handling mouse, pointer, and touch events.\n *\n * Do not instantiate this plugin directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @namespace PIXI.interaction\n */\n\nexport { InteractionData, InteractionEvent, InteractionManager, InteractionTrackingData, interactiveTarget };\n//# sourceMappingURL=interaction.es.js.map\n","/*!\n * @pixi/graphics - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/graphics is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture, BaseTexture, BatchDrawCall, BatchGeometry, UniformGroup, Shader, State } from '@pixi/core';\nimport { SHAPES, Point, PI_2, Polygon, Rectangle, RoundedRectangle, Circle, Ellipse, Matrix } from '@pixi/math';\nimport { earcut, premultiplyTint, hex2rgb } from '@pixi/utils';\nimport { Bounds, Container } from '@pixi/display';\nimport { WRAP_MODES, DRAW_MODES, BLEND_MODES } from '@pixi/constants';\n\n/**\n * Graphics curves resolution settings. If `adaptive` flag is set to `true`,\n * the resolution is calculated based on the curve's length to ensure better visual quality.\n * Adaptive draw works with `bezierCurveTo` and `quadraticCurveTo`.\n *\n * @static\n * @constant\n * @memberof PIXI\n * @name GRAPHICS_CURVES\n * @type {object}\n * @property {boolean} adaptive=false - flag indicating if the resolution should be adaptive\n * @property {number} maxLength=10 - maximal length of a single segment of the curve (if adaptive = false, ignored)\n * @property {number} minSegments=8 - minimal number of segments in the curve (if adaptive = false, ignored)\n * @property {number} maxSegments=2048 - maximal number of segments in the curve (if adaptive = false, ignored)\n */\nvar GRAPHICS_CURVES = {\n adaptive: true,\n maxLength: 10,\n minSegments: 8,\n maxSegments: 2048,\n _segmentsCount: function _segmentsCount(length, defaultSegments)\n {\n if ( defaultSegments === void 0 ) defaultSegments = 20;\n\n if (!this.adaptive)\n {\n return defaultSegments;\n }\n\n var result = Math.ceil(length / this.maxLength);\n\n if (result < this.minSegments)\n {\n result = this.minSegments;\n }\n else if (result > this.maxSegments)\n {\n result = this.maxSegments;\n }\n\n return result;\n },\n};\n\n/**\n * Fill style object for Graphics.\n *\n * @class\n * @memberof PIXI\n */\nvar FillStyle = function FillStyle()\n{\n this.reset();\n};\n\n/**\n * Clones the object\n *\n * @return {PIXI.FillStyle}\n */\nFillStyle.prototype.clone = function clone ()\n{\n var obj = new FillStyle();\n\n obj.color = this.color;\n obj.alpha = this.alpha;\n obj.texture = this.texture;\n obj.matrix = this.matrix;\n obj.visible = this.visible;\n\n return obj;\n};\n\n/**\n * Reset\n */\nFillStyle.prototype.reset = function reset ()\n{\n /**\n * The hex color value used when coloring the Graphics object.\n *\n * @member {number}\n * @default 1\n */\n this.color = 0xFFFFFF;\n\n /**\n * The alpha value used when filling the Graphics object.\n *\n * @member {number}\n * @default 1\n */\n this.alpha = 1;\n\n /**\n * The texture to be used for the fill.\n *\n * @member {string}\n * @default 0\n */\n this.texture = Texture.WHITE;\n\n /**\n * The transform aplpied to the texture.\n *\n * @member {string}\n * @default 0\n */\n this.matrix = null;\n\n /**\n * If the current fill is visible.\n *\n * @member {boolean}\n * @default false\n */\n this.visible = false;\n};\n\n/**\n * Destroy and don't use after this\n */\nFillStyle.prototype.destroy = function destroy ()\n{\n this.texture = null;\n this.matrix = null;\n};\n\n/**\n * A class to contain data useful for Graphics objects\n *\n * @class\n * @memberof PIXI\n */\nvar GraphicsData = function GraphicsData(shape, fillStyle, lineStyle, matrix)\n{\n if ( fillStyle === void 0 ) fillStyle = null;\n if ( lineStyle === void 0 ) lineStyle = null;\n if ( matrix === void 0 ) matrix = null;\n\n /**\n * The shape object to draw.\n * @member {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle}\n */\n this.shape = shape;\n\n /**\n * The style of the line.\n * @member {PIXI.LineStyle}\n */\n this.lineStyle = lineStyle;\n\n /**\n * The style of the fill.\n * @member {PIXI.FillStyle}\n */\n this.fillStyle = fillStyle;\n\n /**\n * The transform matrix.\n * @member {PIXI.Matrix}\n */\n this.matrix = matrix;\n\n /**\n * The type of the shape, see the Const.Shapes file for all the existing types,\n * @member {number}\n */\n this.type = shape.type;\n\n /**\n * The collection of points.\n * @member {number[]}\n */\n this.points = [];\n\n /**\n * The collection of holes.\n * @member {PIXI.GraphicsData[]}\n */\n this.holes = [];\n};\n\n/**\n * Creates a new GraphicsData object with the same values as this one.\n *\n * @return {PIXI.GraphicsData} Cloned GraphicsData object\n */\nGraphicsData.prototype.clone = function clone ()\n{\n return new GraphicsData(\n this.shape,\n this.fillStyle,\n this.lineStyle,\n this.matrix\n );\n};\n\n/**\n * Destroys the Graphics data.\n */\nGraphicsData.prototype.destroy = function destroy ()\n{\n this.shape = null;\n this.holes.length = 0;\n this.holes = null;\n this.points.length = 0;\n this.points = null;\n this.lineStyle = null;\n this.fillStyle = null;\n};\n\n/**\n * Builds a circle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object to draw\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildCircle = {\n\n build: function build(graphicsData)\n {\n // need to convert points to a nice regular data\n var circleData = graphicsData.shape;\n var points = graphicsData.points;\n var x = circleData.x;\n var y = circleData.y;\n var width;\n var height;\n\n points.length = 0;\n\n // TODO - bit hacky??\n if (graphicsData.type === SHAPES.CIRC)\n {\n width = circleData.radius;\n height = circleData.radius;\n }\n else\n {\n width = circleData.width;\n height = circleData.height;\n }\n\n if (width === 0 || height === 0)\n {\n return;\n }\n\n var totalSegs = Math.floor(30 * Math.sqrt(circleData.radius))\n || Math.floor(15 * Math.sqrt(circleData.width + circleData.height));\n\n totalSegs /= 2.3;\n\n var seg = (Math.PI * 2) / totalSegs;\n\n for (var i = 0; i < totalSegs; i++)\n {\n points.push(\n x + (Math.sin(-seg * i) * width),\n y + (Math.cos(-seg * i) * height)\n );\n }\n\n points.push(\n points[0],\n points[1]\n );\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n var vertPos = verts.length / 2;\n var center = vertPos;\n\n verts.push(graphicsData.shape.x, graphicsData.shape.y);\n\n for (var i = 0; i < points.length; i += 2)\n {\n verts.push(points[i], points[i + 1]);\n\n // add some uvs\n indices.push(vertPos++, center, vertPos);\n }\n },\n};\n\n/**\n * Builds a line to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildLine (graphicsData, graphicsGeometry)\n{\n if (graphicsData.lineStyle.native)\n {\n buildNativeLine(graphicsData, graphicsGeometry);\n }\n else\n {\n buildLine$1(graphicsData, graphicsGeometry);\n }\n}\n\n/**\n * Builds a line to draw using the polygon method.\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildLine$1(graphicsData, graphicsGeometry)\n{\n var shape = graphicsData.shape;\n var points = graphicsData.points || shape.points.slice();\n var eps = graphicsGeometry.closePointEps;\n\n if (points.length === 0)\n {\n return;\n }\n // if the line width is an odd number add 0.5 to align to a whole pixel\n // commenting this out fixes #711 and #1620\n // if (graphicsData.lineWidth%2)\n // {\n // for (i = 0; i < points.length; i++)\n // {\n // points[i] += 0.5;\n // }\n // }\n\n var style = graphicsData.lineStyle;\n\n // get first and last point.. figure out the middle!\n var firstPoint = new Point(points[0], points[1]);\n var lastPoint = new Point(points[points.length - 2], points[points.length - 1]);\n var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke;\n var closedPath = Math.abs(firstPoint.x - lastPoint.x) < eps\n && Math.abs(firstPoint.y - lastPoint.y) < eps;\n\n // if the first point is the last point - gonna have issues :)\n if (closedShape)\n {\n // need to clone as we are going to slightly modify the shape..\n points = points.slice();\n\n if (closedPath)\n {\n points.pop();\n points.pop();\n lastPoint.set(points[points.length - 2], points[points.length - 1]);\n }\n\n var midPointX = lastPoint.x + ((firstPoint.x - lastPoint.x) * 0.5);\n var midPointY = lastPoint.y + ((firstPoint.y - lastPoint.y) * 0.5);\n\n points.unshift(midPointX, midPointY);\n points.push(midPointX, midPointY);\n }\n\n var verts = graphicsGeometry.points;\n var length = points.length / 2;\n var indexCount = points.length;\n var indexStart = verts.length / 2;\n\n // DRAW the Line\n var width = style.width / 2;\n\n // sort color\n var p1x = points[0];\n var p1y = points[1];\n var p2x = points[2];\n var p2y = points[3];\n var p3x = 0;\n var p3y = 0;\n\n var perpx = -(p1y - p2y);\n var perpy = p1x - p2x;\n var perp2x = 0;\n var perp2y = 0;\n var perp3x = 0;\n var perp3y = 0;\n\n var dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n var ratio = style.alignment;// 0.5;\n var r1 = (1 - ratio) * 2;\n var r2 = ratio * 2;\n\n // start\n verts.push(\n p1x - (perpx * r1),\n p1y - (perpy * r1));\n\n verts.push(\n p1x + (perpx * r2),\n p1y + (perpy * r2));\n\n for (var i = 1; i < length - 1; ++i)\n {\n p1x = points[(i - 1) * 2];\n p1y = points[((i - 1) * 2) + 1];\n\n p2x = points[i * 2];\n p2y = points[(i * 2) + 1];\n\n p3x = points[(i + 1) * 2];\n p3y = points[((i + 1) * 2) + 1];\n\n perpx = -(p1y - p2y);\n perpy = p1x - p2x;\n\n dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n perp2x = -(p2y - p3y);\n perp2y = p2x - p3x;\n\n dist = Math.sqrt((perp2x * perp2x) + (perp2y * perp2y));\n perp2x /= dist;\n perp2y /= dist;\n perp2x *= width;\n perp2y *= width;\n\n var a1 = (-perpy + p1y) - (-perpy + p2y);\n var b1 = (-perpx + p2x) - (-perpx + p1x);\n var c1 = ((-perpx + p1x) * (-perpy + p2y)) - ((-perpx + p2x) * (-perpy + p1y));\n var a2 = (-perp2y + p3y) - (-perp2y + p2y);\n var b2 = (-perp2x + p2x) - (-perp2x + p3x);\n var c2 = ((-perp2x + p3x) * (-perp2y + p2y)) - ((-perp2x + p2x) * (-perp2y + p3y));\n\n var denom = (a1 * b2) - (a2 * b1);\n\n if (Math.abs(denom) < 0.1)\n {\n denom += 10.1;\n verts.push(\n p2x - (perpx * r1),\n p2y - (perpy * r1));\n\n verts.push(\n p2x + (perpx * r2),\n p2y + (perpy * r2));\n\n continue;\n }\n\n var px = ((b1 * c2) - (b2 * c1)) / denom;\n var py = ((a2 * c1) - (a1 * c2)) / denom;\n var pdist = ((px - p2x) * (px - p2x)) + ((py - p2y) * (py - p2y));\n\n if (pdist > (196 * width * width))\n {\n perp3x = perpx - perp2x;\n perp3y = perpy - perp2y;\n\n dist = Math.sqrt((perp3x * perp3x) + (perp3y * perp3y));\n perp3x /= dist;\n perp3y /= dist;\n perp3x *= width;\n perp3y *= width;\n\n verts.push(p2x - (perp3x * r1), p2y - (perp3y * r1));\n\n verts.push(p2x + (perp3x * r2), p2y + (perp3y * r2));\n\n verts.push(p2x - (perp3x * r2 * r1), p2y - (perp3y * r1));\n\n indexCount++;\n }\n else\n {\n verts.push(p2x + ((px - p2x) * r1), p2y + ((py - p2y) * r1));\n\n verts.push(p2x - ((px - p2x) * r2), p2y - ((py - p2y) * r2));\n }\n }\n\n p1x = points[(length - 2) * 2];\n p1y = points[((length - 2) * 2) + 1];\n\n p2x = points[(length - 1) * 2];\n p2y = points[((length - 1) * 2) + 1];\n\n perpx = -(p1y - p2y);\n perpy = p1x - p2x;\n\n dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n verts.push(p2x - (perpx * r1), p2y - (perpy * r1));\n\n verts.push(p2x + (perpx * r2), p2y + (perpy * r2));\n\n var indices = graphicsGeometry.indices;\n\n // indices.push(indexStart);\n\n for (var i$1 = 0; i$1 < indexCount - 2; ++i$1)\n {\n indices.push(indexStart, indexStart + 1, indexStart + 2);\n\n indexStart++;\n }\n}\n\n/**\n * Builds a line to draw using the gl.drawArrays(gl.LINES) method\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildNativeLine(graphicsData, graphicsGeometry)\n{\n var i = 0;\n\n var shape = graphicsData.shape;\n var points = graphicsData.points || shape.points;\n var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke;\n\n if (points.length === 0) { return; }\n\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n var length = points.length / 2;\n\n var startIndex = verts.length / 2;\n var currentIndex = startIndex;\n\n verts.push(points[0], points[1]);\n\n for (i = 1; i < length; i++)\n {\n verts.push(points[i * 2], points[(i * 2) + 1]);\n indices.push(currentIndex, currentIndex + 1);\n\n currentIndex++;\n }\n\n if (closedShape)\n {\n indices.push(currentIndex, startIndex);\n }\n}\n\n/**\n * Builds a polygon to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildPoly = {\n\n build: function build(graphicsData)\n {\n graphicsData.points = graphicsData.shape.points.slice();\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var holes = graphicsData.holes;\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n if (points.length >= 6)\n {\n var holeArray = [];\n // Process holes..\n\n for (var i = 0; i < holes.length; i++)\n {\n var hole = holes[i];\n\n holeArray.push(points.length / 2);\n points = points.concat(hole.points);\n }\n\n // sort color\n var triangles = earcut(points, holeArray, 2);\n\n if (!triangles)\n {\n return;\n }\n\n var vertPos = verts.length / 2;\n\n for (var i$1 = 0; i$1 < triangles.length; i$1 += 3)\n {\n indices.push(triangles[i$1] + vertPos);\n indices.push(triangles[i$1 + 1] + vertPos);\n indices.push(triangles[i$1 + 2] + vertPos);\n }\n\n for (var i$2 = 0; i$2 < points.length; i$2++)\n {\n verts.push(points[i$2]);\n }\n }\n },\n};\n\n/**\n * Builds a rectangle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildRectangle = {\n\n build: function build(graphicsData)\n {\n // --- //\n // need to convert points to a nice regular data\n //\n var rectData = graphicsData.shape;\n var x = rectData.x;\n var y = rectData.y;\n var width = rectData.width;\n var height = rectData.height;\n\n var points = graphicsData.points;\n\n points.length = 0;\n\n points.push(x, y,\n x + width, y,\n x + width, y + height,\n x, y + height);\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var verts = graphicsGeometry.points;\n\n var vertPos = verts.length / 2;\n\n verts.push(points[0], points[1],\n points[2], points[3],\n points[6], points[7],\n points[4], points[5]);\n\n graphicsGeometry.indices.push(vertPos, vertPos + 1, vertPos + 2,\n vertPos + 1, vertPos + 2, vertPos + 3);\n },\n};\n\n/**\n * Builds a rounded rectangle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildRoundedRectangle = {\n\n build: function build(graphicsData)\n {\n var rrectData = graphicsData.shape;\n var points = graphicsData.points;\n var x = rrectData.x;\n var y = rrectData.y;\n var width = rrectData.width;\n var height = rrectData.height;\n\n var radius = rrectData.radius;\n\n points.length = 0;\n\n quadraticBezierCurve(x, y + radius,\n x, y,\n x + radius, y,\n points);\n quadraticBezierCurve(x + width - radius,\n y, x + width, y,\n x + width, y + radius,\n points);\n quadraticBezierCurve(x + width, y + height - radius,\n x + width, y + height,\n x + width - radius, y + height,\n points);\n quadraticBezierCurve(x + radius, y + height,\n x, y + height,\n x, y + height - radius,\n points);\n\n // this tiny number deals with the issue that occurs when points overlap and earcut fails to triangulate the item.\n // TODO - fix this properly, this is not very elegant.. but it works for now.\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n var vecPos = verts.length / 2;\n\n var triangles = earcut(points, null, 2);\n\n for (var i = 0, j = triangles.length; i < j; i += 3)\n {\n indices.push(triangles[i] + vecPos);\n // indices.push(triangles[i] + vecPos);\n indices.push(triangles[i + 1] + vecPos);\n // indices.push(triangles[i + 2] + vecPos);\n indices.push(triangles[i + 2] + vecPos);\n }\n\n for (var i$1 = 0, j$1 = points.length; i$1 < j$1; i$1++)\n {\n verts.push(points[i$1], points[++i$1]);\n }\n },\n};\n\n/**\n * Calculate a single point for a quadratic bezier curve.\n * Utility function used by quadraticBezierCurve.\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {number} n1 - first number\n * @param {number} n2 - second number\n * @param {number} perc - percentage\n * @return {number} the result\n *\n */\nfunction getPt(n1, n2, perc)\n{\n var diff = n2 - n1;\n\n return n1 + (diff * perc);\n}\n\n/**\n * Calculate the points for a quadratic bezier curve. (helper function..)\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {number} fromX - Origin point x\n * @param {number} fromY - Origin point x\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} [out=[]] - The output array to add points into. If not passed, a new array is created.\n * @return {number[]} an array of points\n */\nfunction quadraticBezierCurve(fromX, fromY, cpX, cpY, toX, toY, out)\n{\n if ( out === void 0 ) out = [];\n\n var n = 20;\n var points = out;\n\n var xa = 0;\n var ya = 0;\n var xb = 0;\n var yb = 0;\n var x = 0;\n var y = 0;\n\n for (var i = 0, j = 0; i <= n; ++i)\n {\n j = i / n;\n\n // The Green Line\n xa = getPt(fromX, cpX, j);\n ya = getPt(fromY, cpY, j);\n xb = getPt(cpX, toX, j);\n yb = getPt(cpY, toY, j);\n\n // The Black Dot\n x = getPt(xa, xb, j);\n y = getPt(ya, yb, j);\n\n points.push(x, y);\n }\n\n return points;\n}\n\nvar BATCH_POOL = [];\nvar DRAW_CALL_POOL = [];\nvar tmpPoint = new Point();\n\n/**\n * Map of fill commands for each shape type.\n *\n * @member {Object}\n * @private\n */\nvar fillCommands = {};\n\nfillCommands[SHAPES.POLY] = buildPoly;\nfillCommands[SHAPES.CIRC] = buildCircle;\nfillCommands[SHAPES.ELIP] = buildCircle;\nfillCommands[SHAPES.RECT] = buildRectangle;\nfillCommands[SHAPES.RREC] = buildRoundedRectangle;\n\n/**\n * A little internal structure to hold interim batch objects.\n *\n * @private\n */\nvar BatchPart = function BatchPart()\n{\n this.style = null;\n this.size = 0;\n this.start = 0;\n this.attribStart = 0;\n this.attribSize = 0;\n};\n\n/**\n * The Graphics class contains methods used to draw primitive shapes such as lines, circles and\n * rectangles to the display, and to color and fill them.\n *\n * GraphicsGeometry is designed to not be continually updating the geometry since it's expensive\n * to re-tesselate using **earcut**. Consider using {@link PIXI.Mesh} for this use-case, it's much faster.\n *\n * @class\n * @extends PIXI.BatchGeometry\n * @memberof PIXI\n */\nvar GraphicsGeometry = /*@__PURE__*/(function (BatchGeometry) {\n function GraphicsGeometry()\n {\n BatchGeometry.call(this);\n\n /**\n * An array of points to draw, 2 numbers per point\n *\n * @member {number[]}\n * @protected\n */\n this.points = [];\n\n /**\n * The collection of colors\n *\n * @member {number[]}\n * @protected\n */\n this.colors = [];\n\n /**\n * The UVs collection\n *\n * @member {number[]}\n * @protected\n */\n this.uvs = [];\n\n /**\n * The indices of the vertices\n *\n * @member {number[]}\n * @protected\n */\n this.indices = [];\n\n /**\n * Reference to the texture IDs.\n *\n * @member {number[]}\n * @protected\n */\n this.textureIds = [];\n\n /**\n * The collection of drawn shapes.\n *\n * @member {PIXI.GraphicsData[]}\n * @protected\n */\n this.graphicsData = [];\n\n /**\n * Used to detect if the graphics object has changed.\n *\n * @member {number}\n * @protected\n */\n this.dirty = 0;\n\n /**\n * Batches need to regenerated if the geometry is updated.\n *\n * @member {number}\n * @protected\n */\n this.batchDirty = -1;\n\n /**\n * Used to check if the cache is dirty.\n *\n * @member {number}\n * @protected\n */\n this.cacheDirty = -1;\n\n /**\n * Used to detect if we cleared the graphicsData.\n *\n * @member {number}\n * @default 0\n * @protected\n */\n this.clearDirty = 0;\n\n /**\n * List of current draw calls drived from the batches.\n *\n * @member {object[]}\n * @protected\n */\n this.drawCalls = [];\n\n /**\n * Intermediate abstract format sent to batch system.\n * Can be converted to drawCalls or to batchable objects.\n *\n * @member {object[]}\n * @protected\n */\n this.batches = [];\n\n /**\n * Index of the last batched shape in the stack of calls.\n *\n * @member {number}\n * @protected\n */\n this.shapeIndex = 0;\n\n /**\n * Cached bounds.\n *\n * @member {PIXI.Bounds}\n * @protected\n */\n this._bounds = new Bounds();\n\n /**\n * The bounds dirty flag.\n *\n * @member {number}\n * @protected\n */\n this.boundsDirty = -1;\n\n /**\n * Padding to add to the bounds.\n *\n * @member {number}\n * @default 0\n */\n this.boundsPadding = 0;\n\n this.batchable = false;\n\n this.indicesUint16 = null;\n\n this.uvsFloat32 = null;\n\n /**\n * Minimal distance between points that are considered different.\n * Affects line tesselation.\n *\n * @member {number}\n */\n this.closePointEps = 1e-4;\n }\n\n if ( BatchGeometry ) GraphicsGeometry.__proto__ = BatchGeometry;\n GraphicsGeometry.prototype = Object.create( BatchGeometry && BatchGeometry.prototype );\n GraphicsGeometry.prototype.constructor = GraphicsGeometry;\n\n var prototypeAccessors = { bounds: { configurable: true } };\n\n /**\n * Get the current bounds of the graphic geometry.\n *\n * @member {PIXI.Bounds}\n * @readonly\n */\n prototypeAccessors.bounds.get = function ()\n {\n if (this.boundsDirty !== this.dirty)\n {\n this.boundsDirty = this.dirty;\n this.calculateBounds();\n }\n\n return this._bounds;\n };\n\n /**\n * Call if you changed graphicsData manually.\n * Empties all batch buffers.\n */\n GraphicsGeometry.prototype.invalidate = function invalidate ()\n {\n this.boundsDirty = -1;\n this.dirty++;\n this.batchDirty++;\n this.shapeIndex = 0;\n\n this.points.length = 0;\n this.colors.length = 0;\n this.uvs.length = 0;\n this.indices.length = 0;\n this.textureIds.length = 0;\n\n for (var i = 0; i < this.drawCalls.length; i++)\n {\n this.drawCalls[i].textures.length = 0;\n DRAW_CALL_POOL.push(this.drawCalls[i]);\n }\n\n this.drawCalls.length = 0;\n\n for (var i$1 = 0; i$1 < this.batches.length; i$1++)\n {\n var batch = this.batches[i$1];\n\n batch.start = 0;\n batch.attribStart = 0;\n batch.style = null;\n BATCH_POOL.push(batch);\n }\n\n this.batches.length = 0;\n };\n\n /**\n * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings.\n *\n * @return {PIXI.GraphicsGeometry} This GraphicsGeometry object. Good for chaining method calls\n */\n GraphicsGeometry.prototype.clear = function clear ()\n {\n if (this.graphicsData.length > 0)\n {\n this.invalidate();\n this.clearDirty++;\n this.graphicsData.length = 0;\n }\n\n return this;\n };\n\n /**\n * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw.\n * @param {PIXI.FillStyle} fillStyle - Defines style of the fill.\n * @param {PIXI.LineStyle} lineStyle - Defines style of the lines.\n * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape.\n * @return {PIXI.GraphicsGeometry} Returns geometry for chaining.\n */\n GraphicsGeometry.prototype.drawShape = function drawShape (shape, fillStyle, lineStyle, matrix)\n {\n var data = new GraphicsData(shape, fillStyle, lineStyle, matrix);\n\n this.graphicsData.push(data);\n this.dirty++;\n\n return this;\n };\n\n /**\n * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw.\n * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape.\n * @return {PIXI.GraphicsGeometry} Returns geometry for chaining.\n */\n GraphicsGeometry.prototype.drawHole = function drawHole (shape, matrix)\n {\n if (!this.graphicsData.length)\n {\n return null;\n }\n\n var data = new GraphicsData(shape, null, null, matrix);\n\n var lastShape = this.graphicsData[this.graphicsData.length - 1];\n\n data.lineStyle = lastShape.lineStyle;\n\n lastShape.holes.push(data);\n\n this.dirty++;\n\n return this;\n };\n\n /**\n * Destroys the Graphics object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n GraphicsGeometry.prototype.destroy = function destroy (options)\n {\n BatchGeometry.prototype.destroy.call(this, options);\n\n // destroy each of the GraphicsData objects\n for (var i = 0; i < this.graphicsData.length; ++i)\n {\n this.graphicsData[i].destroy();\n }\n\n this.points.length = 0;\n this.points = null;\n this.colors.length = 0;\n this.colors = null;\n this.uvs.length = 0;\n this.uvs = null;\n this.indices.length = 0;\n this.indices = null;\n this.indexBuffer.destroy();\n this.indexBuffer = null;\n this.graphicsData.length = 0;\n this.graphicsData = null;\n this.drawCalls.length = 0;\n this.drawCalls = null;\n this.batches.length = 0;\n this.batches = null;\n this._bounds = null;\n };\n\n /**\n * Check to see if a point is contained within this geometry.\n *\n * @param {PIXI.Point} point - Point to check if it's contained.\n * @return {Boolean} `true` if the point is contained within geometry.\n */\n GraphicsGeometry.prototype.containsPoint = function containsPoint (point)\n {\n var graphicsData = this.graphicsData;\n\n for (var i = 0; i < graphicsData.length; ++i)\n {\n var data = graphicsData[i];\n\n if (!data.fillStyle.visible)\n {\n continue;\n }\n\n // only deal with fills..\n if (data.shape)\n {\n if (data.matrix)\n {\n data.matrix.applyInverse(point, tmpPoint);\n }\n else\n {\n tmpPoint.copyFrom(point);\n }\n\n if (data.shape.contains(tmpPoint.x, tmpPoint.y))\n {\n if (data.holes)\n {\n for (var i$1 = 0; i$1 < data.holes.length; i$1++)\n {\n var hole = data.holes[i$1];\n\n if (hole.shape.contains(tmpPoint.x, tmpPoint.y))\n {\n return false;\n }\n }\n }\n\n return true;\n }\n }\n }\n\n return false;\n };\n\n /**\n * Generates intermediate batch data. Either gets converted to drawCalls\n * or used to convert to batch objects directly by the Graphics object.\n */\n GraphicsGeometry.prototype.updateBatches = function updateBatches ()\n {\n if (this.dirty === this.cacheDirty) { return; }\n if (this.graphicsData.length === 0)\n {\n this.batchable = true;\n\n return;\n }\n\n if (this.dirty !== this.cacheDirty)\n {\n for (var i = 0; i < this.graphicsData.length; i++)\n {\n var data = this.graphicsData[i];\n\n if (data.fillStyle && !data.fillStyle.texture.baseTexture.valid) { return; }\n if (data.lineStyle && !data.lineStyle.texture.baseTexture.valid) { return; }\n }\n }\n\n this.cacheDirty = this.dirty;\n\n var uvs = this.uvs;\n\n var batchPart = null;\n var currentTexture = null;\n var currentColor = 0;\n var currentNative = false;\n\n if (this.batches.length > 0)\n {\n batchPart = this.batches[this.batches.length - 1];\n\n var style = batchPart.style;\n\n currentTexture = style.texture.baseTexture;\n currentColor = style.color + style.alpha;\n currentNative = !!style.native;\n }\n\n for (var i$1 = this.shapeIndex; i$1 < this.graphicsData.length; i$1++)\n {\n this.shapeIndex++;\n\n var data$1 = this.graphicsData[i$1];\n var command = fillCommands[data$1.type];\n\n var fillStyle = data$1.fillStyle;\n var lineStyle = data$1.lineStyle;\n\n // build out the shapes points..\n command.build(data$1);\n\n if (data$1.matrix)\n {\n this.transformPoints(data$1.points, data$1.matrix);\n }\n\n for (var j = 0; j < 2; j++)\n {\n var style$1 = (j === 0) ? fillStyle : lineStyle;\n\n if (!style$1.visible) { continue; }\n\n var nextTexture = style$1.texture.baseTexture;\n\n var index$1 = this.indices.length;\n var attribIndex = this.points.length / 2;\n\n // close batch if style is different\n if (batchPart\n && (currentTexture !== nextTexture\n || currentColor !== (style$1.color + style$1.alpha)\n || currentNative !== !!style$1.native))\n {\n batchPart.size = index$1 - batchPart.start;\n batchPart.attribSize = attribIndex - batchPart.attribStart;\n\n if (batchPart.size > 0)\n {\n batchPart = null;\n }\n }\n // spawn new batch if its first batch or previous was closed\n if (!batchPart)\n {\n batchPart = BATCH_POOL.pop() || new BatchPart();\n this.batches.push(batchPart);\n nextTexture.wrapMode = WRAP_MODES.REPEAT;\n currentTexture = nextTexture;\n currentColor = style$1.color + style$1.alpha;\n currentNative = style$1.native;\n\n batchPart.style = style$1;\n batchPart.start = index$1;\n batchPart.attribStart = attribIndex;\n }\n\n var start = this.points.length / 2;\n\n if (j === 0)\n {\n if (data$1.holes.length)\n {\n this.processHoles(data$1.holes);\n\n buildPoly.triangulate(data$1, this);\n }\n else\n {\n command.triangulate(data$1, this);\n }\n }\n else\n {\n buildLine(data$1, this);\n\n for (var i$2 = 0; i$2 < data$1.holes.length; i$2++)\n {\n buildLine(data$1.holes[i$2], this);\n }\n }\n\n var size = (this.points.length / 2) - start;\n\n this.addUvs(this.points, uvs, style$1.texture, start, size, style$1.matrix);\n }\n }\n\n var index = this.indices.length;\n var attrib = this.points.length / 2;\n\n if (!batchPart)\n {\n // there are no visible styles in GraphicsData\n // its possible that someone wants Graphics just for the bounds\n this.batchable = true;\n\n return;\n }\n\n batchPart.size = index - batchPart.start;\n batchPart.attribSize = attrib - batchPart.attribStart;\n this.indicesUint16 = new Uint16Array(this.indices);\n\n // TODO make this a const..\n this.batchable = this.isBatchable();\n\n if (this.batchable)\n {\n this.batchDirty++;\n\n this.uvsFloat32 = new Float32Array(this.uvs);\n\n // offset the indices so that it works with the batcher...\n for (var i$3 = 0; i$3 < this.batches.length; i$3++)\n {\n var batch = this.batches[i$3];\n\n for (var j$1 = 0; j$1 < batch.size; j$1++)\n {\n var index$2 = batch.start + j$1;\n\n this.indicesUint16[index$2] = this.indicesUint16[index$2] - batch.attribStart;\n }\n }\n }\n else\n {\n this.buildDrawCalls();\n }\n };\n\n /**\n * Checks to see if this graphics geometry can be batched.\n * Currently it needs to be small enough and not contain any native lines.\n * @protected\n */\n GraphicsGeometry.prototype.isBatchable = function isBatchable ()\n {\n var batches = this.batches;\n\n for (var i = 0; i < batches.length; i++)\n {\n if (batches[i].style.native)\n {\n return false;\n }\n }\n\n return (this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2);\n };\n\n /**\n * Converts intermediate batches data to drawCalls.\n * @protected\n */\n GraphicsGeometry.prototype.buildDrawCalls = function buildDrawCalls ()\n {\n var TICK = ++BaseTexture._globalBatch;\n\n for (var i = 0; i < this.drawCalls.length; i++)\n {\n this.drawCalls[i].textures.length = 0;\n DRAW_CALL_POOL.push(this.drawCalls[i]);\n }\n\n this.drawCalls.length = 0;\n\n var uvs = this.uvs;\n var colors = this.colors;\n var textureIds = this.textureIds;\n\n var currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall();\n\n currentGroup.textureCount = 0;\n currentGroup.start = 0;\n currentGroup.size = 0;\n currentGroup.type = DRAW_MODES.TRIANGLES;\n\n var textureCount = 0;\n var currentTexture = null;\n var textureId = 0;\n var native = false;\n var drawMode = DRAW_MODES.TRIANGLES;\n\n var index = 0;\n\n this.drawCalls.push(currentGroup);\n\n // TODO - this can be simplified\n for (var i$1 = 0; i$1 < this.batches.length; i$1++)\n {\n var data = this.batches[i$1];\n\n // TODO add some full on MAX_TEXTURE CODE..\n var MAX_TEXTURES = 8;\n\n var style = data.style;\n\n var nextTexture = style.texture.baseTexture;\n\n if (native !== !!style.native)\n {\n native = style.native;\n drawMode = native ? DRAW_MODES.LINES : DRAW_MODES.TRIANGLES;\n\n // force the batch to break!\n currentTexture = null;\n textureCount = MAX_TEXTURES;\n TICK++;\n }\n\n if (currentTexture !== nextTexture)\n {\n currentTexture = nextTexture;\n\n if (nextTexture._batchEnabled !== TICK)\n {\n if (textureCount === MAX_TEXTURES)\n {\n TICK++;\n\n textureCount = 0;\n\n if (currentGroup.size > 0)\n {\n currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall();\n this.drawCalls.push(currentGroup);\n }\n\n currentGroup.start = index;\n currentGroup.size = 0;\n currentGroup.textureCount = 0;\n currentGroup.type = drawMode;\n }\n\n // TODO add this to the render part..\n nextTexture.touched = 1;// touch;\n nextTexture._batchEnabled = TICK;\n nextTexture._id = textureCount;\n nextTexture.wrapMode = 10497;\n\n currentGroup.textures[currentGroup.textureCount++] = nextTexture;\n textureCount++;\n }\n }\n\n currentGroup.size += data.size;\n index += data.size;\n\n textureId = nextTexture._id;\n\n this.addColors(colors, style.color, style.alpha, data.attribSize);\n this.addTextureIds(textureIds, textureId, data.attribSize);\n }\n\n BaseTexture._globalBatch = TICK;\n\n // upload..\n // merge for now!\n var verts = this.points;\n\n // verts are 2 positions.. so we * by 3 as there are 6 properties.. then 4 cos its bytes\n var glPoints = new ArrayBuffer(verts.length * 3 * 4);\n var f32 = new Float32Array(glPoints);\n var u32 = new Uint32Array(glPoints);\n\n var p = 0;\n\n for (var i$2 = 0; i$2 < verts.length / 2; i$2++)\n {\n f32[p++] = verts[i$2 * 2];\n f32[p++] = verts[(i$2 * 2) + 1];\n\n f32[p++] = uvs[i$2 * 2];\n f32[p++] = uvs[(i$2 * 2) + 1];\n\n u32[p++] = colors[i$2];\n\n f32[p++] = textureIds[i$2];\n }\n\n this._buffer.update(glPoints);\n this._indexBuffer.update(this.indicesUint16);\n };\n\n /**\n * Process the holes data.\n *\n * @param {PIXI.GraphicsData[]} holes - Holes to render\n * @protected\n */\n GraphicsGeometry.prototype.processHoles = function processHoles (holes)\n {\n for (var i = 0; i < holes.length; i++)\n {\n var hole = holes[i];\n\n var command = fillCommands[hole.type];\n\n command.build(hole);\n\n if (hole.matrix)\n {\n this.transformPoints(hole.points, hole.matrix);\n }\n }\n };\n\n /**\n * Update the local bounds of the object. Expensive to use performance-wise.\n * @protected\n */\n GraphicsGeometry.prototype.calculateBounds = function calculateBounds ()\n {\n var minX = Infinity;\n var maxX = -Infinity;\n\n var minY = Infinity;\n var maxY = -Infinity;\n\n if (this.graphicsData.length)\n {\n var shape = null;\n var x = 0;\n var y = 0;\n var w = 0;\n var h = 0;\n\n for (var i = 0; i < this.graphicsData.length; i++)\n {\n var data = this.graphicsData[i];\n\n var type = data.type;\n var lineWidth = data.lineStyle ? data.lineStyle.width : 0;\n\n shape = data.shape;\n\n if (type === SHAPES.RECT || type === SHAPES.RREC)\n {\n x = shape.x - (lineWidth / 2);\n y = shape.y - (lineWidth / 2);\n w = shape.width + lineWidth;\n h = shape.height + lineWidth;\n\n minX = x < minX ? x : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y < minY ? y : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else if (type === SHAPES.CIRC)\n {\n x = shape.x;\n y = shape.y;\n w = shape.radius + (lineWidth / 2);\n h = shape.radius + (lineWidth / 2);\n\n minX = x - w < minX ? x - w : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y - h < minY ? y - h : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else if (type === SHAPES.ELIP)\n {\n x = shape.x;\n y = shape.y;\n w = shape.width + (lineWidth / 2);\n h = shape.height + (lineWidth / 2);\n\n minX = x - w < minX ? x - w : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y - h < minY ? y - h : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else\n {\n // POLY\n var points = shape.points;\n var x2 = 0;\n var y2 = 0;\n var dx = 0;\n var dy = 0;\n var rw = 0;\n var rh = 0;\n var cx = 0;\n var cy = 0;\n\n for (var j = 0; j + 2 < points.length; j += 2)\n {\n x = points[j];\n y = points[j + 1];\n x2 = points[j + 2];\n y2 = points[j + 3];\n dx = Math.abs(x2 - x);\n dy = Math.abs(y2 - y);\n h = lineWidth;\n w = Math.sqrt((dx * dx) + (dy * dy));\n\n if (w < 1e-9)\n {\n continue;\n }\n\n rw = ((h / w * dy) + dx) / 2;\n rh = ((h / w * dx) + dy) / 2;\n cx = (x2 + x) / 2;\n cy = (y2 + y) / 2;\n\n minX = cx - rw < minX ? cx - rw : minX;\n maxX = cx + rw > maxX ? cx + rw : maxX;\n\n minY = cy - rh < minY ? cy - rh : minY;\n maxY = cy + rh > maxY ? cy + rh : maxY;\n }\n }\n }\n }\n else\n {\n minX = 0;\n maxX = 0;\n minY = 0;\n maxY = 0;\n }\n\n var padding = this.boundsPadding;\n\n this._bounds.minX = minX - padding;\n this._bounds.maxX = maxX + padding;\n\n this._bounds.minY = minY - padding;\n this._bounds.maxY = maxY + padding;\n };\n\n /**\n * Transform points using matrix.\n *\n * @protected\n * @param {number[]} points - Points to transform\n * @param {PIXI.Matrix} matrix - Transform matrix\n */\n GraphicsGeometry.prototype.transformPoints = function transformPoints (points, matrix)\n {\n for (var i = 0; i < points.length / 2; i++)\n {\n var x = points[(i * 2)];\n var y = points[(i * 2) + 1];\n\n points[(i * 2)] = (matrix.a * x) + (matrix.c * y) + matrix.tx;\n points[(i * 2) + 1] = (matrix.b * x) + (matrix.d * y) + matrix.ty;\n }\n };\n\n /**\n * Add colors.\n *\n * @protected\n * @param {number[]} colors - List of colors to add to\n * @param {number} color - Color to add\n * @param {number} alpha - Alpha to use\n * @param {number} size - Number of colors to add\n */\n GraphicsGeometry.prototype.addColors = function addColors (colors, color, alpha, size)\n {\n // TODO use the premultiply bits Ivan added\n var rgb = (color >> 16) + (color & 0xff00) + ((color & 0xff) << 16);\n\n var rgba = premultiplyTint(rgb, alpha);\n\n while (size-- > 0)\n {\n colors.push(rgba);\n }\n };\n\n /**\n * Add texture id that the shader/fragment wants to use.\n *\n * @protected\n * @param {number[]} textureIds\n * @param {number} id\n * @param {number} size\n */\n GraphicsGeometry.prototype.addTextureIds = function addTextureIds (textureIds, id, size)\n {\n while (size-- > 0)\n {\n textureIds.push(id);\n }\n };\n\n /**\n * Generates the UVs for a shape.\n *\n * @protected\n * @param {number[]} verts - Vertices\n * @param {number[]} uvs - UVs\n * @param {PIXI.Texture} texture - Reference to Texture\n * @param {number} start - Index buffer start index.\n * @param {number} size - The size/length for index buffer.\n * @param {PIXI.Matrix} [matrix] - Optional transform for all points.\n */\n GraphicsGeometry.prototype.addUvs = function addUvs (verts, uvs, texture, start, size, matrix)\n {\n var index = 0;\n var uvsStart = uvs.length;\n var frame = texture.frame;\n\n while (index < size)\n {\n var x = verts[(start + index) * 2];\n var y = verts[((start + index) * 2) + 1];\n\n if (matrix)\n {\n var nx = (matrix.a * x) + (matrix.c * y) + matrix.tx;\n\n y = (matrix.b * x) + (matrix.d * y) + matrix.ty;\n x = nx;\n }\n\n index++;\n\n uvs.push(x / frame.width, y / frame.height);\n }\n\n var baseTexture = texture.baseTexture;\n\n if (frame.width < baseTexture.width\n || frame.height < baseTexture.height)\n {\n this.adjustUvs(uvs, texture, uvsStart, size);\n }\n };\n\n /**\n * Modify uvs array according to position of texture region\n * Does not work with rotated or trimmed textures\n * @param {number[]} uvs array\n * @param {PIXI.Texture} texture region\n * @param {number} start starting index for uvs\n * @param {number} size how many points to adjust\n */\n GraphicsGeometry.prototype.adjustUvs = function adjustUvs (uvs, texture, start, size)\n {\n var baseTexture = texture.baseTexture;\n var eps = 1e-6;\n var finish = start + (size * 2);\n var frame = texture.frame;\n var scaleX = frame.width / baseTexture.width;\n var scaleY = frame.height / baseTexture.height;\n var offsetX = frame.x / frame.width;\n var offsetY = frame.y / frame.height;\n var minX = Math.floor(uvs[start] + eps);\n var minY = Math.floor(uvs[start + 1] + eps);\n\n for (var i = start + 2; i < finish; i += 2)\n {\n minX = Math.min(minX, Math.floor(uvs[i] + eps));\n minY = Math.min(minY, Math.floor(uvs[i + 1] + eps));\n }\n offsetX -= minX;\n offsetY -= minY;\n for (var i$1 = start; i$1 < finish; i$1 += 2)\n {\n uvs[i$1] = (uvs[i$1] + offsetX) * scaleX;\n uvs[i$1 + 1] = (uvs[i$1 + 1] + offsetY) * scaleY;\n }\n };\n\n Object.defineProperties( GraphicsGeometry.prototype, prototypeAccessors );\n\n return GraphicsGeometry;\n}(BatchGeometry));\n\n/**\n * The maximum number of points to consider an object \"batchable\",\n * able to be batched by the renderer's batch system.\n *\n * @memberof PIXI.GraphicsGeometry\n * @static\n * @member {number} BATCHABLE_SIZE\n * @default 100\n */\nGraphicsGeometry.BATCHABLE_SIZE = 100;\n\n/**\n * Represents the line style for Graphics.\n * @memberof PIXI\n * @class\n * @extends PIXI.FillStyle\n */\nvar LineStyle = /*@__PURE__*/(function (FillStyle) {\n function LineStyle () {\n FillStyle.apply(this, arguments);\n }\n\n if ( FillStyle ) LineStyle.__proto__ = FillStyle;\n LineStyle.prototype = Object.create( FillStyle && FillStyle.prototype );\n LineStyle.prototype.constructor = LineStyle;\n\n LineStyle.prototype.clone = function clone ()\n {\n var obj = new LineStyle();\n\n obj.color = this.color;\n obj.alpha = this.alpha;\n obj.texture = this.texture;\n obj.matrix = this.matrix;\n obj.visible = this.visible;\n obj.width = this.width;\n obj.alignment = this.alignment;\n obj.native = this.native;\n\n return obj;\n };\n /**\n * Reset the line style to default.\n */\n LineStyle.prototype.reset = function reset ()\n {\n FillStyle.prototype.reset.call(this);\n\n // Override default line style color\n this.color = 0x0;\n\n /**\n * The width (thickness) of any lines drawn.\n *\n * @member {number}\n * @default 0\n */\n this.width = 0;\n\n /**\n * The alignment of any lines drawn (0.5 = middle, 1 = outter, 0 = inner).\n *\n * @member {number}\n * @default 0\n */\n this.alignment = 0.5;\n\n /**\n * If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n *\n * @member {boolean}\n * @default false\n */\n this.native = false;\n };\n\n return LineStyle;\n}(FillStyle));\n\n/**\n * Utilities for bezier curves\n * @class\n * @private\n */\nvar BezierUtils = function BezierUtils () {};\n\nBezierUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY)\n{\n var n = 10;\n var result = 0.0;\n var t = 0.0;\n var t2 = 0.0;\n var t3 = 0.0;\n var nt = 0.0;\n var nt2 = 0.0;\n var nt3 = 0.0;\n var x = 0.0;\n var y = 0.0;\n var dx = 0.0;\n var dy = 0.0;\n var prevX = fromX;\n var prevY = fromY;\n\n for (var i = 1; i <= n; ++i)\n {\n t = i / n;\n t2 = t * t;\n t3 = t2 * t;\n nt = (1.0 - t);\n nt2 = nt * nt;\n nt3 = nt2 * nt;\n\n x = (nt3 * fromX) + (3.0 * nt2 * t * cpX) + (3.0 * nt * t2 * cpX2) + (t3 * toX);\n y = (nt3 * fromY) + (3.0 * nt2 * t * cpY) + (3 * nt * t2 * cpY2) + (t3 * toY);\n dx = prevX - x;\n dy = prevY - y;\n prevX = x;\n prevY = y;\n\n result += Math.sqrt((dx * dx) + (dy * dy));\n }\n\n return result;\n};\n\n/**\n * Calculate the points for a bezier curve and then draws it.\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} cpX2 - Second Control point x\n * @param {number} cpY2 - Second Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} points - Path array to push points into\n */\nBezierUtils.curveTo = function curveTo (cpX, cpY, cpX2, cpY2, toX, toY, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n points.length -= 2;\n\n var n = GRAPHICS_CURVES._segmentsCount(\n BezierUtils.curveLength(fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY)\n );\n\n var dt = 0;\n var dt2 = 0;\n var dt3 = 0;\n var t2 = 0;\n var t3 = 0;\n\n points.push(fromX, fromY);\n\n for (var i = 1, j = 0; i <= n; ++i)\n {\n j = i / n;\n\n dt = (1 - j);\n dt2 = dt * dt;\n dt3 = dt2 * dt;\n\n t2 = j * j;\n t3 = t2 * j;\n\n points.push(\n (dt3 * fromX) + (3 * dt2 * j * cpX) + (3 * dt * t2 * cpX2) + (t3 * toX),\n (dt3 * fromY) + (3 * dt2 * j * cpY) + (3 * dt * t2 * cpY2) + (t3 * toY)\n );\n }\n};\n\n/**\n * Utilities for quadratic curves\n * @class\n * @private\n */\nvar QuadraticUtils = function QuadraticUtils () {};\n\nQuadraticUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, toX, toY)\n{\n var ax = fromX - (2.0 * cpX) + toX;\n var ay = fromY - (2.0 * cpY) + toY;\n var bx = (2.0 * cpX) - (2.0 * fromX);\n var by = (2.0 * cpY) - (2.0 * fromY);\n var a = 4.0 * ((ax * ax) + (ay * ay));\n var b = 4.0 * ((ax * bx) + (ay * by));\n var c = (bx * bx) + (by * by);\n\n var s = 2.0 * Math.sqrt(a + b + c);\n var a2 = Math.sqrt(a);\n var a32 = 2.0 * a * a2;\n var c2 = 2.0 * Math.sqrt(c);\n var ba = b / a2;\n\n return (\n (a32 * s)\n + (a2 * b * (s - c2))\n + (\n ((4.0 * c * a) - (b * b))\n * Math.log(((2.0 * a2) + ba + s) / (ba + c2))\n )\n ) / (4.0 * a32);\n};\n\n/**\n * Calculate the points for a quadratic bezier curve and then draws it.\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * @private\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} points - Points to add segments to.\n */\nQuadraticUtils.curveTo = function curveTo (cpX, cpY, toX, toY, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n var n = GRAPHICS_CURVES._segmentsCount(\n QuadraticUtils.curveLength(fromX, fromY, cpX, cpY, toX, toY)\n );\n\n var xa = 0;\n var ya = 0;\n\n for (var i = 1; i <= n; ++i)\n {\n var j = i / n;\n\n xa = fromX + ((cpX - fromX) * j);\n ya = fromY + ((cpY - fromY) * j);\n\n points.push(xa + (((cpX + ((toX - cpX) * j)) - xa) * j),\n ya + (((cpY + ((toY - cpY) * j)) - ya) * j));\n }\n};\n\n/**\n * Utilities for arc curves\n * @class\n * @private\n */\nvar ArcUtils = function ArcUtils () {};\n\nArcUtils.curveTo = function curveTo (x1, y1, x2, y2, radius, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n var a1 = fromY - y1;\n var b1 = fromX - x1;\n var a2 = y2 - y1;\n var b2 = x2 - x1;\n var mm = Math.abs((a1 * b2) - (b1 * a2));\n\n if (mm < 1.0e-8 || radius === 0)\n {\n if (points[points.length - 2] !== x1 || points[points.length - 1] !== y1)\n {\n points.push(x1, y1);\n }\n\n return null;\n }\n\n var dd = (a1 * a1) + (b1 * b1);\n var cc = (a2 * a2) + (b2 * b2);\n var tt = (a1 * a2) + (b1 * b2);\n var k1 = radius * Math.sqrt(dd) / mm;\n var k2 = radius * Math.sqrt(cc) / mm;\n var j1 = k1 * tt / dd;\n var j2 = k2 * tt / cc;\n var cx = (k1 * b2) + (k2 * b1);\n var cy = (k1 * a2) + (k2 * a1);\n var px = b1 * (k2 + j1);\n var py = a1 * (k2 + j1);\n var qx = b2 * (k1 + j2);\n var qy = a2 * (k1 + j2);\n var startAngle = Math.atan2(py - cy, px - cx);\n var endAngle = Math.atan2(qy - cy, qx - cx);\n\n return {\n cx: (cx + x1),\n cy: (cy + y1),\n radius: radius,\n startAngle: startAngle,\n endAngle: endAngle,\n anticlockwise: (b1 * a2 > b2 * a1),\n };\n};\n\n/**\n * The arc method creates an arc/curve (used to create circles, or parts of circles).\n *\n * @private\n * @param {number} startX - Start x location of arc\n * @param {number} startY - Start y location of arc\n * @param {number} cx - The x-coordinate of the center of the circle\n * @param {number} cy - The y-coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position\n * of the arc's circle)\n * @param {number} endAngle - The ending angle, in radians\n * @param {boolean} anticlockwise - Specifies whether the drawing should be\n * counter-clockwise or clockwise. False is default, and indicates clockwise, while true\n * indicates counter-clockwise.\n * @param {number} n - Number of segments\n * @param {number[]} points - Collection of points to add to\n */\nArcUtils.arc = function arc (startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points)\n{\n var sweep = endAngle - startAngle;\n var n = GRAPHICS_CURVES._segmentsCount(\n Math.abs(sweep) * radius,\n Math.ceil(Math.abs(sweep) / PI_2) * 40\n );\n\n var theta = (sweep) / (n * 2);\n var theta2 = theta * 2;\n var cTheta = Math.cos(theta);\n var sTheta = Math.sin(theta);\n var segMinus = n - 1;\n var remainder = (segMinus % 1) / segMinus;\n\n for (var i = 0; i <= segMinus; ++i)\n {\n var real = i + (remainder * i);\n var angle = ((theta) + startAngle + (theta2 * real));\n var c = Math.cos(angle);\n var s = -Math.sin(angle);\n\n points.push(\n (((cTheta * c) + (sTheta * s)) * radius) + cx,\n (((cTheta * -s) + (sTheta * c)) * radius) + cy\n );\n }\n};\n\n/**\n * Draw a star shape with an arbitrary number of points.\n *\n * @class\n * @extends PIXI.Polygon\n * @memberof PIXI\n * @param {number} x - Center X position of the star\n * @param {number} y - Center Y position of the star\n * @param {number} points - The number of points of the star, must be > 1\n * @param {number} radius - The outer radius of the star\n * @param {number} [innerRadius] - The inner radius between points, default half `radius`\n * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\nvar Star = /*@__PURE__*/(function (Polygon) {\n function Star(x, y, points, radius, innerRadius, rotation)\n {\n innerRadius = innerRadius || radius / 2;\n\n var startAngle = (-1 * Math.PI / 2) + rotation;\n var len = points * 2;\n var delta = PI_2 / len;\n var polygon = [];\n\n for (var i = 0; i < len; i++)\n {\n var r = i % 2 ? innerRadius : radius;\n var angle = (i * delta) + startAngle;\n\n polygon.push(\n x + (r * Math.cos(angle)),\n y + (r * Math.sin(angle))\n );\n }\n\n Polygon.call(this, polygon);\n }\n\n if ( Polygon ) Star.__proto__ = Polygon;\n Star.prototype = Object.create( Polygon && Polygon.prototype );\n Star.prototype.constructor = Star;\n\n return Star;\n}(Polygon));\n\nvar temp = new Float32Array(3);\n\n// a default shaders map used by graphics..\nvar DEFAULT_SHADERS = {};\n\n/**\n * The Graphics class contains methods used to draw primitive shapes such as lines, circles and\n * rectangles to the display, and to color and fill them.\n *\n * Note that because Graphics can share a GraphicsGeometry with other instances,\n * it is necessary to call `destroy()` to properly dereference the underlying\n * GraphicsGeometry and avoid a memory leak. Alternatively, keep using the same\n * Graphics instance and call `clear()` between redraws.\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Graphics = /*@__PURE__*/(function (Container) {\n function Graphics(geometry)\n {\n if ( geometry === void 0 ) geometry = null;\n\n Container.call(this);\n /**\n * Includes vertex positions, face indices, normals, colors, UVs, and\n * custom attributes within buffers, reducing the cost of passing all\n * this data to the GPU. Can be shared between multiple Mesh or Graphics objects.\n * @member {PIXI.GraphicsGeometry}\n * @readonly\n */\n this.geometry = geometry || new GraphicsGeometry();\n\n this.geometry.refCount++;\n\n /**\n * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU.\n * Can be shared between multiple Graphics objects.\n * @member {PIXI.Shader}\n */\n this.shader = null;\n\n /**\n * Represents the WebGL state the Graphics required to render, excludes shader and geometry. E.g.,\n * blend mode, culling, depth testing, direction of rendering triangles, backface, etc.\n * @member {PIXI.State}\n */\n this.state = State.for2d();\n\n /**\n * Current fill style\n *\n * @member {PIXI.FillStyle}\n * @protected\n */\n this._fillStyle = new FillStyle();\n\n /**\n * Current line style\n *\n * @member {PIXI.LineStyle}\n * @protected\n */\n this._lineStyle = new LineStyle();\n\n /**\n * Current shape transform matrix.\n *\n * @member {PIXI.Matrix}\n * @protected\n */\n this._matrix = null;\n\n /**\n * Current hole mode is enabled.\n *\n * @member {boolean}\n * @default false\n * @protected\n */\n this._holeMode = false;\n\n /**\n * Current path\n *\n * @member {PIXI.Polygon}\n * @protected\n */\n this.currentPath = null;\n\n /**\n * When cacheAsBitmap is set to true the graphics object will be rendered as if it was a sprite.\n * This is useful if your graphics element does not change often, as it will speed up the rendering\n * of the object in exchange for taking up texture memory. It is also useful if you need the graphics\n * object to be anti-aliased, because it will be rendered using canvas. This is not recommended if\n * you are constantly redrawing the graphics element.\n *\n * @name cacheAsBitmap\n * @member {boolean}\n * @memberof PIXI.Graphics#\n * @default false\n */\n\n /**\n * A collections of batches! These can be drawn by the renderer batch system.\n *\n * @protected\n * @member {object[]}\n */\n this.batches = [];\n\n /**\n * Update dirty for limiting calculating tints for batches.\n *\n * @protected\n * @member {number}\n * @default -1\n */\n this.batchTint = -1;\n\n /**\n * Copy of the object vertex data.\n *\n * @protected\n * @member {Float32Array}\n */\n this.vertexData = null;\n\n this._transformID = -1;\n this.batchDirty = -1;\n\n /**\n * Renderer plugin for batching\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = 'batch';\n\n // Set default\n this.tint = 0xFFFFFF;\n this.blendMode = BLEND_MODES.NORMAL;\n }\n\n if ( Container ) Graphics.__proto__ = Container;\n Graphics.prototype = Object.create( Container && Container.prototype );\n Graphics.prototype.constructor = Graphics;\n\n var prototypeAccessors = { blendMode: { configurable: true },tint: { configurable: true },fill: { configurable: true },line: { configurable: true } };\n\n /**\n * Creates a new Graphics object with the same values as this one.\n * Note that the only the properties of the object are cloned, not its transform (position,scale,etc)\n *\n * @return {PIXI.Graphics} A clone of the graphics object\n */\n Graphics.prototype.clone = function clone ()\n {\n this.finishPoly();\n\n return new Graphics(this.geometry);\n };\n\n /**\n * The blend mode to be applied to the graphic shape. Apply a value of\n * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL;\n * @see PIXI.BLEND_MODES\n */\n prototypeAccessors.blendMode.set = function (value)\n {\n this.state.blendMode = value;\n };\n\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n /**\n * The tint applied to the graphic shape. This is a hex value. A value of\n * 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n prototypeAccessors.tint.set = function (value)\n {\n this._tint = value;\n };\n\n /**\n * The current fill style.\n *\n * @member {PIXI.FillStyle}\n * @readonly\n */\n prototypeAccessors.fill.get = function ()\n {\n return this._fillStyle;\n };\n\n /**\n * The current line style.\n *\n * @member {PIXI.LineStyle}\n * @readonly\n */\n prototypeAccessors.line.get = function ()\n {\n return this._lineStyle;\n };\n\n /**\n * Specifies the line style used for subsequent calls to Graphics methods such as the lineTo()\n * method or the drawCircle() method.\n *\n * @param {number} [width=0] - width of the line to draw, will update the objects stored style\n * @param {number} [color=0] - color of the line to draw, will update the objects stored style\n * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style\n * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter)\n * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineStyle = function lineStyle (width, color, alpha, alignment, native)\n {\n if ( width === void 0 ) width = 0;\n if ( color === void 0 ) color = 0;\n if ( alpha === void 0 ) alpha = 1;\n if ( alignment === void 0 ) alignment = 0.5;\n if ( native === void 0 ) native = false;\n\n this.lineTextureStyle(width, Texture.WHITE, color, alpha, null, alignment, native);\n\n return this;\n };\n\n /**\n * Like line style but support texture for line fill.\n *\n * @param {number} [width=0] - width of the line to draw, will update the objects stored style\n * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to use\n * @param {number} [color=0] - color of the line to draw, will update the objects stored style\n * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style\n * @param {PIXI.Matrix} [matrix=null] Texture matrix to transform texture\n * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter)\n * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineTextureStyle = function lineTextureStyle (width, texture, color, alpha,\n matrix, alignment, native)\n {\n if ( width === void 0 ) width = 0;\n if ( texture === void 0 ) texture = Texture.WHITE;\n if ( color === void 0 ) color = 0xFFFFFF;\n if ( alpha === void 0 ) alpha = 1;\n if ( matrix === void 0 ) matrix = null;\n if ( alignment === void 0 ) alignment = 0.5;\n if ( native === void 0 ) native = false;\n\n if (this.currentPath)\n {\n this.startPoly();\n }\n\n var visible = width > 0 && alpha > 0;\n\n if (!visible)\n {\n this._lineStyle.reset();\n }\n else\n {\n if (matrix)\n {\n matrix = matrix.clone();\n matrix.invert();\n }\n\n Object.assign(this._lineStyle, {\n color: color,\n width: width,\n alpha: alpha,\n matrix: matrix,\n texture: texture,\n alignment: alignment,\n native: native,\n visible: visible,\n });\n }\n\n return this;\n };\n\n /**\n * Start a polygon object internally\n * @protected\n */\n Graphics.prototype.startPoly = function startPoly ()\n {\n if (this.currentPath)\n {\n var points = this.currentPath.points;\n var len = this.currentPath.points.length;\n\n if (len > 2)\n {\n this.drawShape(this.currentPath);\n this.currentPath = new Polygon();\n this.currentPath.closeStroke = false;\n this.currentPath.points.push(points[len - 2], points[len - 1]);\n }\n }\n else\n {\n this.currentPath = new Polygon();\n this.currentPath.closeStroke = false;\n }\n };\n\n /**\n * Finish the polygon object.\n * @protected\n */\n Graphics.prototype.finishPoly = function finishPoly ()\n {\n if (this.currentPath)\n {\n if (this.currentPath.points.length > 2)\n {\n this.drawShape(this.currentPath);\n this.currentPath = null;\n }\n else\n {\n this.currentPath.points.length = 0;\n }\n }\n };\n\n /**\n * Moves the current drawing position to x, y.\n *\n * @param {number} x - the X coordinate to move to\n * @param {number} y - the Y coordinate to move to\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.moveTo = function moveTo (x, y)\n {\n this.startPoly();\n this.currentPath.points[0] = x;\n this.currentPath.points[1] = y;\n\n return this;\n };\n\n /**\n * Draws a line using the current line style from the current drawing position to (x, y);\n * The current drawing position is then set to (x, y).\n *\n * @param {number} x - the X coordinate to draw to\n * @param {number} y - the Y coordinate to draw to\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineTo = function lineTo (x, y)\n {\n if (!this.currentPath)\n {\n this.moveTo(0, 0);\n }\n\n // remove duplicates..\n var points = this.currentPath.points;\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n if (fromX !== x || fromY !== y)\n {\n points.push(x, y);\n }\n\n return this;\n };\n\n /**\n * Initialize the curve\n *\n * @protected\n * @param {number} [x=0]\n * @param {number} [y=0]\n */\n Graphics.prototype._initCurve = function _initCurve (x, y)\n {\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n if (this.currentPath)\n {\n if (this.currentPath.points.length === 0)\n {\n this.currentPath.points = [x, y];\n }\n }\n else\n {\n this.moveTo(x, y);\n }\n };\n\n /**\n * Calculate the points for a quadratic bezier curve and then draws it.\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.quadraticCurveTo = function quadraticCurveTo (cpX, cpY, toX, toY)\n {\n this._initCurve();\n\n var points = this.currentPath.points;\n\n if (points.length === 0)\n {\n this.moveTo(0, 0);\n }\n\n QuadraticUtils.curveTo(cpX, cpY, toX, toY, points);\n\n return this;\n };\n\n /**\n * Calculate the points for a bezier curve and then draws it.\n *\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} cpX2 - Second Control point x\n * @param {number} cpY2 - Second Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.bezierCurveTo = function bezierCurveTo (cpX, cpY, cpX2, cpY2, toX, toY)\n {\n this._initCurve();\n\n BezierUtils.curveTo(cpX, cpY, cpX2, cpY2, toX, toY, this.currentPath.points);\n\n return this;\n };\n\n /**\n * The arcTo() method creates an arc/curve between two tangents on the canvas.\n *\n * \"borrowed\" from https://code.google.com/p/fxcanvas/ - thanks google!\n *\n * @param {number} x1 - The x-coordinate of the first tangent point of the arc\n * @param {number} y1 - The y-coordinate of the first tangent point of the arc\n * @param {number} x2 - The x-coordinate of the end of the arc\n * @param {number} y2 - The y-coordinate of the end of the arc\n * @param {number} radius - The radius of the arc\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.arcTo = function arcTo (x1, y1, x2, y2, radius)\n {\n this._initCurve(x1, y1);\n\n var points = this.currentPath.points;\n\n var result = ArcUtils.curveTo(x1, y1, x2, y2, radius, points);\n\n if (result)\n {\n var cx = result.cx;\n var cy = result.cy;\n var radius$1 = result.radius;\n var startAngle = result.startAngle;\n var endAngle = result.endAngle;\n var anticlockwise = result.anticlockwise;\n\n this.arc(cx, cy, radius$1, startAngle, endAngle, anticlockwise);\n }\n\n return this;\n };\n\n /**\n * The arc method creates an arc/curve (used to create circles, or parts of circles).\n *\n * @param {number} cx - The x-coordinate of the center of the circle\n * @param {number} cy - The y-coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position\n * of the arc's circle)\n * @param {number} endAngle - The ending angle, in radians\n * @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be\n * counter-clockwise or clockwise. False is default, and indicates clockwise, while true\n * indicates counter-clockwise.\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.arc = function arc (cx, cy, radius, startAngle, endAngle, anticlockwise)\n {\n if ( anticlockwise === void 0 ) anticlockwise = false;\n\n if (startAngle === endAngle)\n {\n return this;\n }\n\n if (!anticlockwise && endAngle <= startAngle)\n {\n endAngle += PI_2;\n }\n else if (anticlockwise && startAngle <= endAngle)\n {\n startAngle += PI_2;\n }\n\n var sweep = endAngle - startAngle;\n\n if (sweep === 0)\n {\n return this;\n }\n\n var startX = cx + (Math.cos(startAngle) * radius);\n var startY = cy + (Math.sin(startAngle) * radius);\n var eps = this.geometry.closePointEps;\n\n // If the currentPath exists, take its points. Otherwise call `moveTo` to start a path.\n var points = this.currentPath ? this.currentPath.points : null;\n\n if (points)\n {\n // TODO: make a better fix.\n\n // We check how far our start is from the last existing point\n var xDiff = Math.abs(points[points.length - 2] - startX);\n var yDiff = Math.abs(points[points.length - 1] - startY);\n\n if (xDiff < eps && yDiff < eps)\n ;\n else\n {\n points.push(startX, startY);\n }\n }\n else\n {\n this.moveTo(startX, startY);\n points = this.currentPath.points;\n }\n\n ArcUtils.arc(startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points);\n\n return this;\n };\n\n /**\n * Specifies a simple one-color fill that subsequent calls to other Graphics methods\n * (such as lineTo() or drawCircle()) use when drawing.\n *\n * @param {number} [color=0] - the color of the fill\n * @param {number} [alpha=1] - the alpha of the fill\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.beginFill = function beginFill (color, alpha)\n {\n if ( color === void 0 ) color = 0;\n if ( alpha === void 0 ) alpha = 1;\n\n return this.beginTextureFill(Texture.WHITE, color, alpha);\n };\n\n /**\n * Begin the texture fill\n *\n * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to fill\n * @param {number} [color=0xffffff] - Background to fill behind texture\n * @param {number} [alpha=1] - Alpha of fill\n * @param {PIXI.Matrix} [matrix=null] - Transform matrix\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.beginTextureFill = function beginTextureFill (texture, color, alpha, matrix)\n {\n if ( texture === void 0 ) texture = Texture.WHITE;\n if ( color === void 0 ) color = 0xFFFFFF;\n if ( alpha === void 0 ) alpha = 1;\n if ( matrix === void 0 ) matrix = null;\n\n if (this.currentPath)\n {\n this.startPoly();\n }\n\n var visible = alpha > 0;\n\n if (!visible)\n {\n this._fillStyle.reset();\n }\n else\n {\n if (matrix)\n {\n matrix = matrix.clone();\n matrix.invert();\n }\n\n Object.assign(this._fillStyle, {\n color: color,\n alpha: alpha,\n texture: texture,\n matrix: matrix,\n visible: visible,\n });\n }\n\n return this;\n };\n\n /**\n * Applies a fill to the lines and shapes that were added since the last call to the beginFill() method.\n *\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.endFill = function endFill ()\n {\n this.finishPoly();\n\n this._fillStyle.reset();\n\n return this;\n };\n\n /**\n * Draws a rectangle shape.\n *\n * @param {number} x - The X coord of the top-left of the rectangle\n * @param {number} y - The Y coord of the top-left of the rectangle\n * @param {number} width - The width of the rectangle\n * @param {number} height - The height of the rectangle\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawRect = function drawRect (x, y, width, height)\n {\n return this.drawShape(new Rectangle(x, y, width, height));\n };\n\n /**\n * Draw a rectangle shape with rounded/beveled corners.\n *\n * @param {number} x - The X coord of the top-left of the rectangle\n * @param {number} y - The Y coord of the top-left of the rectangle\n * @param {number} width - The width of the rectangle\n * @param {number} height - The height of the rectangle\n * @param {number} radius - Radius of the rectangle corners\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawRoundedRect = function drawRoundedRect (x, y, width, height, radius)\n {\n return this.drawShape(new RoundedRectangle(x, y, width, height, radius));\n };\n\n /**\n * Draws a circle.\n *\n * @param {number} x - The X coordinate of the center of the circle\n * @param {number} y - The Y coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawCircle = function drawCircle (x, y, radius)\n {\n return this.drawShape(new Circle(x, y, radius));\n };\n\n /**\n * Draws an ellipse.\n *\n * @param {number} x - The X coordinate of the center of the ellipse\n * @param {number} y - The Y coordinate of the center of the ellipse\n * @param {number} width - The half width of the ellipse\n * @param {number} height - The half height of the ellipse\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawEllipse = function drawEllipse (x, y, width, height)\n {\n return this.drawShape(new Ellipse(x, y, width, height));\n };\n\n /**\n * Draws a polygon using the given path.\n *\n * @param {number[]|PIXI.Point[]|PIXI.Polygon} path - The path data used to construct the polygon.\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawPolygon = function drawPolygon (path)\n {\n var arguments$1 = arguments;\n\n // prevents an argument assignment deopt\n // see section 3.1: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments\n var points = path;\n\n var closeStroke = true;// !!this._fillStyle;\n\n // check if data has points..\n if (points.points)\n {\n closeStroke = points.closeStroke;\n points = points.points;\n }\n\n if (!Array.isArray(points))\n {\n // prevents an argument leak deopt\n // see section 3.2: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments\n points = new Array(arguments.length);\n\n for (var i = 0; i < points.length; ++i)\n {\n points[i] = arguments$1[i]; // eslint-disable-line prefer-rest-params\n }\n }\n\n var shape = new Polygon(points);\n\n shape.closeStroke = closeStroke;\n\n this.drawShape(shape);\n\n return this;\n };\n\n /**\n * Draw any shape.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - Shape to draw\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawShape = function drawShape (shape)\n {\n if (!this._holeMode)\n {\n this.geometry.drawShape(\n shape,\n this._fillStyle.clone(),\n this._lineStyle.clone(),\n this._matrix\n );\n }\n else\n {\n this.geometry.drawHole(shape, this._matrix);\n }\n\n return this;\n };\n\n /**\n * Draw a star shape with an arbitrary number of points.\n *\n * @param {number} x - Center X position of the star\n * @param {number} y - Center Y position of the star\n * @param {number} points - The number of points of the star, must be > 1\n * @param {number} radius - The outer radius of the star\n * @param {number} [innerRadius] - The inner radius between points, default half `radius`\n * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawStar = function drawStar (x, y, points, radius, innerRadius, rotation)\n {\n if ( rotation === void 0 ) rotation = 0;\n\n return this.drawPolygon(new Star(x, y, points, radius, innerRadius, rotation));\n };\n\n /**\n * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings.\n *\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.clear = function clear ()\n {\n this.geometry.clear();\n this._lineStyle.reset();\n this._fillStyle.reset();\n\n this._matrix = null;\n this._holeMode = false;\n this.currentPath = null;\n\n return this;\n };\n\n /**\n * True if graphics consists of one rectangle, and thus, can be drawn like a Sprite and\n * masked with gl.scissor.\n *\n * @returns {boolean} True if only 1 rect.\n */\n Graphics.prototype.isFastRect = function isFastRect ()\n {\n // will fix this!\n return false;\n // this.graphicsData.length === 1\n // && this.graphicsData[0].shape.type === SHAPES.RECT\n // && !this.graphicsData[0].lineWidth;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._render = function _render (renderer)\n {\n this.finishPoly();\n\n var geometry = this.geometry;\n\n // batch part..\n // batch it!\n geometry.updateBatches();\n\n if (geometry.batchable)\n {\n if (this.batchDirty !== geometry.batchDirty)\n {\n this._populateBatches();\n }\n\n this._renderBatched(renderer);\n }\n else\n {\n // no batching...\n renderer.batch.flush();\n\n this._renderDirect(renderer);\n }\n };\n\n /**\n * Populating batches for rendering\n *\n * @protected\n */\n Graphics.prototype._populateBatches = function _populateBatches ()\n {\n var geometry = this.geometry;\n var blendMode = this.blendMode;\n\n this.batches = [];\n this.batchTint = -1;\n this._transformID = -1;\n this.batchDirty = geometry.batchDirty;\n\n this.vertexData = new Float32Array(geometry.points);\n\n for (var i = 0, l = geometry.batches.length; i < l; i++)\n {\n var gI = geometry.batches[i];\n var color = gI.style.color;\n var vertexData = new Float32Array(this.vertexData.buffer,\n gI.attribStart * 4 * 2,\n gI.attribSize * 2);\n\n var uvs = new Float32Array(geometry.uvsFloat32.buffer,\n gI.attribStart * 4 * 2,\n gI.attribSize * 2);\n\n var indices = new Uint16Array(geometry.indicesUint16.buffer,\n gI.start * 2,\n gI.size);\n\n var batch = {\n vertexData: vertexData,\n blendMode: blendMode,\n indices: indices,\n uvs: uvs,\n _batchRGB: hex2rgb(color),\n _tintRGB: color,\n _texture: gI.style.texture,\n alpha: gI.style.alpha,\n worldAlpha: 1 };\n\n this.batches[i] = batch;\n }\n };\n\n /**\n * Renders the batches using the BathedRenderer plugin\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._renderBatched = function _renderBatched (renderer)\n {\n if (!this.batches.length)\n {\n return;\n }\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n\n this.calculateVertices();\n this.calculateTints();\n\n for (var i = 0, l = this.batches.length; i < l; i++)\n {\n var batch = this.batches[i];\n\n batch.worldAlpha = this.worldAlpha * batch.alpha;\n\n renderer.plugins[this.pluginName].render(batch);\n }\n };\n\n /**\n * Renders the graphics direct\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._renderDirect = function _renderDirect (renderer)\n {\n var shader = this._resolveDirectShader(renderer);\n\n var geometry = this.geometry;\n var tint = this.tint;\n var worldAlpha = this.worldAlpha;\n var uniforms = shader.uniforms;\n var drawCalls = geometry.drawCalls;\n\n // lets set the transfomr\n uniforms.translationMatrix = this.transform.worldTransform;\n\n // and then lets set the tint..\n uniforms.tint[0] = (((tint >> 16) & 0xFF) / 255) * worldAlpha;\n uniforms.tint[1] = (((tint >> 8) & 0xFF) / 255) * worldAlpha;\n uniforms.tint[2] = ((tint & 0xFF) / 255) * worldAlpha;\n uniforms.tint[3] = worldAlpha;\n\n // the first draw call, we can set the uniforms of the shader directly here.\n\n // this means that we can tack advantage of the sync function of pixi!\n // bind and sync uniforms..\n // there is a way to optimise this..\n renderer.shader.bind(shader);\n renderer.geometry.bind(geometry, shader);\n\n // set state..\n renderer.state.set(this.state);\n\n // then render the rest of them...\n for (var i = 0, l = drawCalls.length; i < l; i++)\n {\n this._renderDrawCallDirect(renderer, geometry.drawCalls[i]);\n }\n };\n\n /**\n * Renders specific DrawCall\n *\n * @param {PIXI.Renderer} renderer\n * @param {PIXI.BatchDrawCall} drawCall\n */\n Graphics.prototype._renderDrawCallDirect = function _renderDrawCallDirect (renderer, drawCall)\n {\n var groupTextureCount = drawCall.textureCount;\n\n for (var j = 0; j < groupTextureCount; j++)\n {\n renderer.texture.bind(drawCall.textures[j], j);\n }\n\n renderer.geometry.draw(drawCall.type, drawCall.size, drawCall.start);\n };\n\n /**\n * Resolves shader for direct rendering\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._resolveDirectShader = function _resolveDirectShader (renderer)\n {\n var shader = this.shader;\n\n var pluginName = this.pluginName;\n\n if (!shader)\n {\n // if there is no shader here, we can use the default shader.\n // and that only gets created if we actually need it..\n // but may be more than one plugins for graphics\n if (!DEFAULT_SHADERS[pluginName])\n {\n var sampleValues = new Int32Array(16);\n\n for (var i = 0; i < 16; i++)\n {\n sampleValues[i] = i;\n }\n\n var uniforms = {\n tint: new Float32Array([1, 1, 1, 1]),\n translationMatrix: new Matrix(),\n default: UniformGroup.from({ uSamplers: sampleValues }, true),\n };\n\n var program = renderer.plugins[pluginName]._shader.program;\n\n DEFAULT_SHADERS[pluginName] = new Shader(program, uniforms);\n }\n\n shader = DEFAULT_SHADERS[pluginName];\n }\n\n return shader;\n };\n\n /**\n * Retrieves the bounds of the graphic shape as a rectangle object\n *\n * @protected\n */\n Graphics.prototype._calculateBounds = function _calculateBounds ()\n {\n this.finishPoly();\n var lb = this.geometry.bounds;\n\n this._bounds.addFrame(this.transform, lb.minX, lb.minY, lb.maxX, lb.maxY);\n };\n\n /**\n * Tests if a point is inside this graphics object\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */\n Graphics.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, Graphics._TEMP_POINT);\n\n return this.geometry.containsPoint(Graphics._TEMP_POINT);\n };\n\n /**\n * Recalcuate the tint by applying tin to batches using Graphics tint.\n * @protected\n */\n Graphics.prototype.calculateTints = function calculateTints ()\n {\n if (this.batchTint !== this.tint)\n {\n this.batchTint = this.tint;\n\n var tintRGB = hex2rgb(this.tint, temp);\n\n for (var i = 0; i < this.batches.length; i++)\n {\n var batch = this.batches[i];\n\n var batchTint = batch._batchRGB;\n\n var r = (tintRGB[0] * batchTint[0]) * 255;\n var g = (tintRGB[1] * batchTint[1]) * 255;\n var b = (tintRGB[2] * batchTint[2]) * 255;\n\n // TODO Ivan, can this be done in one go?\n var color = (r << 16) + (g << 8) + (b | 0);\n\n batch._tintRGB = (color >> 16)\n + (color & 0xff00)\n + ((color & 0xff) << 16);\n }\n }\n };\n\n /**\n * If there's a transform update or a change to the shape of the\n * geometry, recaculate the vertices.\n * @protected\n */\n Graphics.prototype.calculateVertices = function calculateVertices ()\n {\n if (this._transformID === this.transform._worldID)\n {\n return;\n }\n\n this._transformID = this.transform._worldID;\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var data = this.geometry.points;// batch.vertexDataOriginal;\n var vertexData = this.vertexData;\n\n var count = 0;\n\n for (var i = 0; i < data.length; i += 2)\n {\n var x = data[i];\n var y = data[i + 1];\n\n vertexData[count++] = (a * x) + (c * y) + tx;\n vertexData[count++] = (d * y) + (b * x) + ty;\n }\n };\n\n /**\n * Closes the current path.\n *\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.closePath = function closePath ()\n {\n var currentPath = this.currentPath;\n\n if (currentPath)\n {\n // we don't need to add extra point in the end because buildLine will take care of that\n currentPath.closeStroke = true;\n }\n\n return this;\n };\n\n /**\n * Apply a matrix to the positional data.\n *\n * @param {PIXI.Matrix} matrix - Matrix to use for transform current shape.\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.setMatrix = function setMatrix (matrix)\n {\n this._matrix = matrix;\n\n return this;\n };\n\n /**\n * Begin adding holes to the last draw shape\n * IMPORTANT: holes must be fully inside a shape to work\n * Also weirdness ensues if holes overlap!\n * Ellipses, Circles, Rectangles and Rounded Rectangles cannot be holes or host for holes in CanvasRenderer,\n * please use `moveTo` `lineTo`, `quadraticCurveTo` if you rely on pixi-legacy bundle.\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.beginHole = function beginHole ()\n {\n this.finishPoly();\n this._holeMode = true;\n\n return this;\n };\n\n /**\n * End adding holes to the last draw shape\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.endHole = function endHole ()\n {\n this.finishPoly();\n this._holeMode = false;\n\n return this;\n };\n\n /**\n * Destroys the Graphics object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n Graphics.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.geometry.refCount--;\n if (this.geometry.refCount === 0)\n {\n this.geometry.dispose();\n }\n\n this._matrix = null;\n this.currentPath = null;\n this._lineStyle.destroy();\n this._lineStyle = null;\n this._fillStyle.destroy();\n this._fillStyle = null;\n this.geometry = null;\n this.shader = null;\n this.vertexData = null;\n this.batches.length = 0;\n this.batches = null;\n\n Container.prototype.destroy.call(this, options);\n };\n\n Object.defineProperties( Graphics.prototype, prototypeAccessors );\n\n return Graphics;\n}(Container));\n\n/**\n * Temporary point to use for containsPoint\n *\n * @static\n * @private\n * @member {PIXI.Point}\n */\nGraphics._TEMP_POINT = new Point();\n\nexport { FillStyle, GRAPHICS_CURVES, Graphics, GraphicsData, GraphicsGeometry, LineStyle };\n//# sourceMappingURL=graphics.es.js.map\n","/*!\n * @pixi/sprite - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/sprite is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Point, Rectangle, ObservablePoint } from '@pixi/math';\nimport { sign } from '@pixi/utils';\nimport { Texture } from '@pixi/core';\nimport { BLEND_MODES } from '@pixi/constants';\nimport { Container } from '@pixi/display';\nimport { settings } from '@pixi/settings';\n\nvar tempPoint = new Point();\nvar indices = new Uint16Array([0, 1, 2, 0, 2, 3]);\n\n/**\n * The Sprite object is the base for all textured objects that are rendered to the screen\n*\n * A sprite can be created directly from an image like this:\n *\n * ```js\n * let sprite = PIXI.Sprite.from('assets/image.png');\n * ```\n *\n * The more efficient way to create sprites is using a {@link PIXI.Spritesheet},\n * as swapping base textures when rendering to the screen is inefficient.\n *\n * ```js\n * PIXI.Loader.shared.add(\"assets/spritesheet.json\").load(setup);\n *\n * function setup() {\n * let sheet = PIXI.Loader.shared.resources[\"assets/spritesheet.json\"].spritesheet;\n * let sprite = new PIXI.Sprite(sheet.textures[\"image.png\"]);\n * ...\n * }\n * ```\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Sprite = /*@__PURE__*/(function (Container) {\n function Sprite(texture)\n {\n Container.call(this);\n\n /**\n * The anchor point defines the normalized coordinates\n * in the texture that map to the position of this\n * sprite.\n *\n * By default, this is `(0,0)` (or `texture.defaultAnchor`\n * if you have modified that), which means the position\n * `(x,y)` of this `Sprite` will be the top-left corner.\n *\n * Note: Updating `texture.defaultAnchor` after\n * constructing a `Sprite` does _not_ update its anchor.\n *\n * {@link https://docs.cocos2d-x.org/cocos2d-x/en/sprites/manipulation.html}\n *\n * @default `texture.defaultAnchor`\n * @member {PIXI.ObservablePoint}\n * @private\n */\n this._anchor = new ObservablePoint(\n this._onAnchorUpdate,\n this,\n (texture ? texture.defaultAnchor.x : 0),\n (texture ? texture.defaultAnchor.y : 0)\n );\n\n /**\n * The texture that the sprite is using\n *\n * @private\n * @member {PIXI.Texture}\n */\n this._texture = null;\n\n /**\n * The width of the sprite (this is initially set by the texture)\n *\n * @private\n * @member {number}\n */\n this._width = 0;\n\n /**\n * The height of the sprite (this is initially set by the texture)\n *\n * @private\n * @member {number}\n */\n this._height = 0;\n\n /**\n * The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @private\n * @member {number}\n * @default 0xFFFFFF\n */\n this._tint = null;\n this._tintRGB = null;\n this.tint = 0xFFFFFF;\n\n /**\n * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * The shader that will be used to render the sprite. Set to null to remove a current shader.\n *\n * @member {PIXI.Filter|PIXI.Shader}\n */\n this.shader = null;\n\n /**\n * Cached tint value so we can tell when the tint is changed.\n * Value is used for 2d CanvasRenderer.\n *\n * @protected\n * @member {number}\n * @default 0xFFFFFF\n */\n this._cachedTint = 0xFFFFFF;\n\n /**\n * this is used to store the uvs data of the sprite, assigned at the same time\n * as the vertexData in calculateVertices()\n *\n * @private\n * @member {Float32Array}\n */\n this.uvs = null;\n\n // call texture setter\n this.texture = texture || Texture.EMPTY;\n\n /**\n * this is used to store the vertex data of the sprite (basically a quad)\n *\n * @private\n * @member {Float32Array}\n */\n this.vertexData = new Float32Array(8);\n\n /**\n * This is used to calculate the bounds of the object IF it is a trimmed sprite\n *\n * @private\n * @member {Float32Array}\n */\n this.vertexTrimmedData = null;\n\n this._transformID = -1;\n this._textureID = -1;\n\n this._transformTrimmedID = -1;\n this._textureTrimmedID = -1;\n\n // Batchable stuff..\n // TODO could make this a mixin?\n this.indices = indices;\n this.size = 4;\n this.start = 0;\n\n /**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_render' & '_renderCanvas' methods.\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = 'batch';\n\n /**\n * used to fast check if a sprite is.. a sprite!\n * @member {boolean}\n */\n this.isSprite = true;\n\n /**\n * Internal roundPixels field\n *\n * @member {boolean}\n * @private\n */\n this._roundPixels = settings.ROUND_PIXELS;\n }\n\n if ( Container ) Sprite.__proto__ = Container;\n Sprite.prototype = Object.create( Container && Container.prototype );\n Sprite.prototype.constructor = Sprite;\n\n var prototypeAccessors = { roundPixels: { configurable: true },width: { configurable: true },height: { configurable: true },anchor: { configurable: true },tint: { configurable: true },texture: { configurable: true } };\n\n /**\n * When the texture is updated, this event will fire to update the scale and frame\n *\n * @private\n */\n Sprite.prototype._onTextureUpdate = function _onTextureUpdate ()\n {\n this._textureID = -1;\n this._textureTrimmedID = -1;\n this._cachedTint = 0xFFFFFF;\n\n // so if _width is 0 then width was not set..\n if (this._width)\n {\n this.scale.x = sign(this.scale.x) * this._width / this._texture.orig.width;\n }\n\n if (this._height)\n {\n this.scale.y = sign(this.scale.y) * this._height / this._texture.orig.height;\n }\n };\n\n /**\n * Called when the anchor position updates.\n *\n * @private\n */\n Sprite.prototype._onAnchorUpdate = function _onAnchorUpdate ()\n {\n this._transformID = -1;\n this._transformTrimmedID = -1;\n };\n\n /**\n * calculates worldTransform * vertices, store it in vertexData\n */\n Sprite.prototype.calculateVertices = function calculateVertices ()\n {\n var texture = this._texture;\n\n if (this._transformID === this.transform._worldID && this._textureID === texture._updateID)\n {\n return;\n }\n\n // update texture UV here, because base texture can be changed without calling `_onTextureUpdate`\n if (this._textureID !== texture._updateID)\n {\n this.uvs = this._texture._uvs.uvsFloat32;\n }\n\n this._transformID = this.transform._worldID;\n this._textureID = texture._updateID;\n\n // set the vertex data\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n var vertexData = this.vertexData;\n var trim = texture.trim;\n var orig = texture.orig;\n var anchor = this._anchor;\n\n var w0 = 0;\n var w1 = 0;\n var h0 = 0;\n var h1 = 0;\n\n if (trim)\n {\n // if the sprite is trimmed and is not a tilingsprite then we need to add the extra\n // space before transforming the sprite coords.\n w1 = trim.x - (anchor._x * orig.width);\n w0 = w1 + trim.width;\n\n h1 = trim.y - (anchor._y * orig.height);\n h0 = h1 + trim.height;\n }\n else\n {\n w1 = -anchor._x * orig.width;\n w0 = w1 + orig.width;\n\n h1 = -anchor._y * orig.height;\n h0 = h1 + orig.height;\n }\n\n // xy\n vertexData[0] = (a * w1) + (c * h1) + tx;\n vertexData[1] = (d * h1) + (b * w1) + ty;\n\n // xy\n vertexData[2] = (a * w0) + (c * h1) + tx;\n vertexData[3] = (d * h1) + (b * w0) + ty;\n\n // xy\n vertexData[4] = (a * w0) + (c * h0) + tx;\n vertexData[5] = (d * h0) + (b * w0) + ty;\n\n // xy\n vertexData[6] = (a * w1) + (c * h0) + tx;\n vertexData[7] = (d * h0) + (b * w1) + ty;\n\n if (this._roundPixels)\n {\n for (var i = 0; i < 8; i++)\n {\n vertexData[i] = Math.round(vertexData[i]);\n }\n }\n };\n\n /**\n * calculates worldTransform * vertices for a non texture with a trim. store it in vertexTrimmedData\n * This is used to ensure that the true width and height of a trimmed texture is respected\n */\n Sprite.prototype.calculateTrimmedVertices = function calculateTrimmedVertices ()\n {\n if (!this.vertexTrimmedData)\n {\n this.vertexTrimmedData = new Float32Array(8);\n }\n else if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID)\n {\n return;\n }\n\n this._transformTrimmedID = this.transform._worldID;\n this._textureTrimmedID = this._texture._updateID;\n\n // lets do some special trim code!\n var texture = this._texture;\n var vertexData = this.vertexTrimmedData;\n var orig = texture.orig;\n var anchor = this._anchor;\n\n // lets calculate the new untrimmed bounds..\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var w1 = -anchor._x * orig.width;\n var w0 = w1 + orig.width;\n\n var h1 = -anchor._y * orig.height;\n var h0 = h1 + orig.height;\n\n // xy\n vertexData[0] = (a * w1) + (c * h1) + tx;\n vertexData[1] = (d * h1) + (b * w1) + ty;\n\n // xy\n vertexData[2] = (a * w0) + (c * h1) + tx;\n vertexData[3] = (d * h1) + (b * w0) + ty;\n\n // xy\n vertexData[4] = (a * w0) + (c * h0) + tx;\n vertexData[5] = (d * h0) + (b * w0) + ty;\n\n // xy\n vertexData[6] = (a * w1) + (c * h0) + tx;\n vertexData[7] = (d * h0) + (b * w1) + ty;\n };\n\n /**\n *\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The webgl renderer to use.\n */\n Sprite.prototype._render = function _render (renderer)\n {\n this.calculateVertices();\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n renderer.plugins[this.pluginName].render(this);\n };\n\n /**\n * Updates the bounds of the sprite.\n *\n * @protected\n */\n Sprite.prototype._calculateBounds = function _calculateBounds ()\n {\n var trim = this._texture.trim;\n var orig = this._texture.orig;\n\n // First lets check to see if the current texture has a trim..\n if (!trim || (trim.width === orig.width && trim.height === orig.height))\n {\n // no trim! lets use the usual calculations..\n this.calculateVertices();\n this._bounds.addQuad(this.vertexData);\n }\n else\n {\n // lets calculate a special trimmed bounds...\n this.calculateTrimmedVertices();\n this._bounds.addQuad(this.vertexTrimmedData);\n }\n };\n\n /**\n * Gets the local bounds of the sprite object.\n *\n * @param {PIXI.Rectangle} [rect] - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n Sprite.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n // we can do a fast local bounds if the sprite has no children!\n if (this.children.length === 0)\n {\n this._bounds.minX = this._texture.orig.width * -this._anchor._x;\n this._bounds.minY = this._texture.orig.height * -this._anchor._y;\n this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x);\n this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y);\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n }\n\n return Container.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * Tests if a point is inside this sprite\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */\n Sprite.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, tempPoint);\n\n var width = this._texture.orig.width;\n var height = this._texture.orig.height;\n var x1 = -width * this.anchor.x;\n var y1 = 0;\n\n if (tempPoint.x >= x1 && tempPoint.x < x1 + width)\n {\n y1 = -height * this.anchor.y;\n\n if (tempPoint.y >= y1 && tempPoint.y < y1 + height)\n {\n return true;\n }\n }\n\n return false;\n };\n\n /**\n * Destroys this sprite and optionally its texture and children\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well\n */\n Sprite.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this._texture.off('update', this._onTextureUpdate, this);\n\n this._anchor = null;\n\n var destroyTexture = typeof options === 'boolean' ? options : options && options.texture;\n\n if (destroyTexture)\n {\n var destroyBaseTexture = typeof options === 'boolean' ? options : options && options.baseTexture;\n\n this._texture.destroy(!!destroyBaseTexture);\n }\n\n this._texture = null;\n this.shader = null;\n };\n\n // some helper functions..\n\n /**\n * Helper function that creates a new sprite based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source Source to create texture from\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Sprite} The newly created sprite\n */\n Sprite.from = function from (source, options)\n {\n var texture = (source instanceof Texture)\n ? source\n : Texture.from(source, options);\n\n return new Sprite(texture);\n };\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n prototypeAccessors.roundPixels.set = function (value)\n {\n if (this._roundPixels !== value)\n {\n this._transformID = -1;\n }\n this._roundPixels = value;\n };\n\n prototypeAccessors.roundPixels.get = function ()\n {\n return this._roundPixels;\n };\n\n /**\n * The width of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return Math.abs(this.scale.x) * this._texture.orig.width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n var s = sign(this.scale.x) || 1;\n\n this.scale.x = s * value / this._texture.orig.width;\n this._width = value;\n };\n\n /**\n * The height of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return Math.abs(this.scale.y) * this._texture.orig.height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n var s = sign(this.scale.y) || 1;\n\n this.scale.y = s * value / this._texture.orig.height;\n this._height = value;\n };\n\n /**\n * The anchor sets the origin point of the text. The default value is taken from the {@link PIXI.Texture|Texture}\n * and passed to the constructor.\n *\n * The default is `(0,0)`, this means the text's origin is the top left.\n *\n * Setting the anchor to `(0.5,0.5)` means the text's origin is centered.\n *\n * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner.\n *\n * If you pass only single parameter, it will set both x and y to the same value as shown in the example below.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.anchor.set(0.5); // This will set the origin to center. (0.5) is same as (0.5, 0.5).\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.anchor.get = function ()\n {\n return this._anchor;\n };\n\n prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._anchor.copyFrom(value);\n };\n\n /**\n * The tint applied to the sprite. This is a hex value.\n * A value of 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._tint = value;\n this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16);\n };\n\n /**\n * The texture that the sprite is using\n *\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this._texture;\n };\n\n prototypeAccessors.texture.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._texture === value)\n {\n return;\n }\n\n this._texture = value || Texture.EMPTY;\n this._cachedTint = 0xFFFFFF;\n\n this._textureID = -1;\n this._textureTrimmedID = -1;\n\n if (value)\n {\n // wait for the texture to load\n if (value.baseTexture.valid)\n {\n this._onTextureUpdate();\n }\n else\n {\n value.once('update', this._onTextureUpdate, this);\n }\n }\n };\n\n Object.defineProperties( Sprite.prototype, prototypeAccessors );\n\n return Sprite;\n}(Container));\n\nexport { Sprite };\n//# sourceMappingURL=sprite.es.js.map\n","/*!\n * @pixi/text - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/text is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Sprite } from '@pixi/sprite';\nimport { Texture } from '@pixi/core';\nimport { settings } from '@pixi/settings';\nimport { Rectangle } from '@pixi/math';\nimport { hex2string, hex2rgb, string2hex, trimCanvas, sign } from '@pixi/utils';\n\n/**\n * Constants that define the type of gradient on text.\n *\n * @static\n * @constant\n * @name TEXT_GRADIENT\n * @memberof PIXI\n * @type {object}\n * @property {number} LINEAR_VERTICAL Vertical gradient\n * @property {number} LINEAR_HORIZONTAL Linear gradient\n */\nvar TEXT_GRADIENT = {\n LINEAR_VERTICAL: 0,\n LINEAR_HORIZONTAL: 1,\n};\n\n// disabling eslint for now, going to rewrite this in v5\n\nvar defaultStyle = {\n align: 'left',\n breakWords: false,\n dropShadow: false,\n dropShadowAlpha: 1,\n dropShadowAngle: Math.PI / 6,\n dropShadowBlur: 0,\n dropShadowColor: 'black',\n dropShadowDistance: 5,\n fill: 'black',\n fillGradientType: TEXT_GRADIENT.LINEAR_VERTICAL,\n fillGradientStops: [],\n fontFamily: 'Arial',\n fontSize: 26,\n fontStyle: 'normal',\n fontVariant: 'normal',\n fontWeight: 'normal',\n letterSpacing: 0,\n lineHeight: 0,\n lineJoin: 'miter',\n miterLimit: 10,\n padding: 0,\n stroke: 'black',\n strokeThickness: 0,\n textBaseline: 'alphabetic',\n trim: false,\n whiteSpace: 'pre',\n wordWrap: false,\n wordWrapWidth: 100,\n leading: 0,\n};\n\nvar genericFontFamilies = [\n 'serif',\n 'sans-serif',\n 'monospace',\n 'cursive',\n 'fantasy',\n 'system-ui' ];\n\n/**\n * A TextStyle Object contains information to decorate a Text objects.\n *\n * An instance can be shared between multiple Text objects; then changing the style will update all text objects using it.\n *\n * A tool can be used to generate a text style [here](https://pixijs.io/pixi-text-style).\n *\n * @class\n * @memberof PIXI\n */\nvar TextStyle = function TextStyle(style)\n{\n this.styleID = 0;\n\n this.reset();\n\n deepCopyProperties(this, style, style);\n};\n\nvar prototypeAccessors = { align: { configurable: true },breakWords: { configurable: true },dropShadow: { configurable: true },dropShadowAlpha: { configurable: true },dropShadowAngle: { configurable: true },dropShadowBlur: { configurable: true },dropShadowColor: { configurable: true },dropShadowDistance: { configurable: true },fill: { configurable: true },fillGradientType: { configurable: true },fillGradientStops: { configurable: true },fontFamily: { configurable: true },fontSize: { configurable: true },fontStyle: { configurable: true },fontVariant: { configurable: true },fontWeight: { configurable: true },letterSpacing: { configurable: true },lineHeight: { configurable: true },leading: { configurable: true },lineJoin: { configurable: true },miterLimit: { configurable: true },padding: { configurable: true },stroke: { configurable: true },strokeThickness: { configurable: true },textBaseline: { configurable: true },trim: { configurable: true },whiteSpace: { configurable: true },wordWrap: { configurable: true },wordWrapWidth: { configurable: true } };\n\n/**\n * Creates a new TextStyle object with the same values as this one.\n * Note that the only the properties of the object are cloned.\n *\n * @return {PIXI.TextStyle} New cloned TextStyle object\n */\nTextStyle.prototype.clone = function clone ()\n{\n var clonedProperties = {};\n\n deepCopyProperties(clonedProperties, this, defaultStyle);\n\n return new TextStyle(clonedProperties);\n};\n\n/**\n * Resets all properties to the defaults specified in TextStyle.prototype._default\n */\nTextStyle.prototype.reset = function reset ()\n{\n deepCopyProperties(this, defaultStyle, defaultStyle);\n};\n\n/**\n * Alignment for multiline text ('left', 'center' or 'right'), does not affect single line text\n *\n * @member {string}\n */\nprototypeAccessors.align.get = function ()\n{\n return this._align;\n};\nprototypeAccessors.align.set = function (align) // eslint-disable-line require-jsdoc\n{\n if (this._align !== align)\n {\n this._align = align;\n this.styleID++;\n }\n};\n\n/**\n * Indicates if lines can be wrapped within words, it needs wordWrap to be set to true\n *\n * @member {boolean}\n */\nprototypeAccessors.breakWords.get = function ()\n{\n return this._breakWords;\n};\nprototypeAccessors.breakWords.set = function (breakWords) // eslint-disable-line require-jsdoc\n{\n if (this._breakWords !== breakWords)\n {\n this._breakWords = breakWords;\n this.styleID++;\n }\n};\n\n/**\n * Set a drop shadow for the text\n *\n * @member {boolean}\n */\nprototypeAccessors.dropShadow.get = function ()\n{\n return this._dropShadow;\n};\nprototypeAccessors.dropShadow.set = function (dropShadow) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadow !== dropShadow)\n {\n this._dropShadow = dropShadow;\n this.styleID++;\n }\n};\n\n/**\n * Set alpha for the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowAlpha.get = function ()\n{\n return this._dropShadowAlpha;\n};\nprototypeAccessors.dropShadowAlpha.set = function (dropShadowAlpha) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowAlpha !== dropShadowAlpha)\n {\n this._dropShadowAlpha = dropShadowAlpha;\n this.styleID++;\n }\n};\n\n/**\n * Set a angle of the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowAngle.get = function ()\n{\n return this._dropShadowAngle;\n};\nprototypeAccessors.dropShadowAngle.set = function (dropShadowAngle) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowAngle !== dropShadowAngle)\n {\n this._dropShadowAngle = dropShadowAngle;\n this.styleID++;\n }\n};\n\n/**\n * Set a shadow blur radius\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowBlur.get = function ()\n{\n return this._dropShadowBlur;\n};\nprototypeAccessors.dropShadowBlur.set = function (dropShadowBlur) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowBlur !== dropShadowBlur)\n {\n this._dropShadowBlur = dropShadowBlur;\n this.styleID++;\n }\n};\n\n/**\n * A fill style to be used on the dropshadow e.g 'red', '#00FF00'\n *\n * @member {string|number}\n */\nprototypeAccessors.dropShadowColor.get = function ()\n{\n return this._dropShadowColor;\n};\nprototypeAccessors.dropShadowColor.set = function (dropShadowColor) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(dropShadowColor);\n if (this._dropShadowColor !== outputColor)\n {\n this._dropShadowColor = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * Set a distance of the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowDistance.get = function ()\n{\n return this._dropShadowDistance;\n};\nprototypeAccessors.dropShadowDistance.set = function (dropShadowDistance) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowDistance !== dropShadowDistance)\n {\n this._dropShadowDistance = dropShadowDistance;\n this.styleID++;\n }\n};\n\n/**\n * A canvas fillstyle that will be used on the text e.g 'red', '#00FF00'.\n * Can be an array to create a gradient eg ['#000000','#FFFFFF']\n * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle|MDN}\n *\n * @member {string|string[]|number|number[]|CanvasGradient|CanvasPattern}\n */\nprototypeAccessors.fill.get = function ()\n{\n return this._fill;\n};\nprototypeAccessors.fill.set = function (fill) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(fill);\n if (this._fill !== outputColor)\n {\n this._fill = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * If fill is an array of colours to create a gradient, this can change the type/direction of the gradient.\n * See {@link PIXI.TEXT_GRADIENT}\n *\n * @member {number}\n */\nprototypeAccessors.fillGradientType.get = function ()\n{\n return this._fillGradientType;\n};\nprototypeAccessors.fillGradientType.set = function (fillGradientType) // eslint-disable-line require-jsdoc\n{\n if (this._fillGradientType !== fillGradientType)\n {\n this._fillGradientType = fillGradientType;\n this.styleID++;\n }\n};\n\n/**\n * If fill is an array of colours to create a gradient, this array can set the stop points\n * (numbers between 0 and 1) for the color, overriding the default behaviour of evenly spacing them.\n *\n * @member {number[]}\n */\nprototypeAccessors.fillGradientStops.get = function ()\n{\n return this._fillGradientStops;\n};\nprototypeAccessors.fillGradientStops.set = function (fillGradientStops) // eslint-disable-line require-jsdoc\n{\n if (!areArraysEqual(this._fillGradientStops,fillGradientStops))\n {\n this._fillGradientStops = fillGradientStops;\n this.styleID++;\n }\n};\n\n/**\n * The font family\n *\n * @member {string|string[]}\n */\nprototypeAccessors.fontFamily.get = function ()\n{\n return this._fontFamily;\n};\nprototypeAccessors.fontFamily.set = function (fontFamily) // eslint-disable-line require-jsdoc\n{\n if (this.fontFamily !== fontFamily)\n {\n this._fontFamily = fontFamily;\n this.styleID++;\n }\n};\n\n/**\n * The font size\n * (as a number it converts to px, but as a string, equivalents are '26px','20pt','160%' or '1.6em')\n *\n * @member {number|string}\n */\nprototypeAccessors.fontSize.get = function ()\n{\n return this._fontSize;\n};\nprototypeAccessors.fontSize.set = function (fontSize) // eslint-disable-line require-jsdoc\n{\n if (this._fontSize !== fontSize)\n {\n this._fontSize = fontSize;\n this.styleID++;\n }\n};\n\n/**\n * The font style\n * ('normal', 'italic' or 'oblique')\n *\n * @member {string}\n */\nprototypeAccessors.fontStyle.get = function ()\n{\n return this._fontStyle;\n};\nprototypeAccessors.fontStyle.set = function (fontStyle) // eslint-disable-line require-jsdoc\n{\n if (this._fontStyle !== fontStyle)\n {\n this._fontStyle = fontStyle;\n this.styleID++;\n }\n};\n\n/**\n * The font variant\n * ('normal' or 'small-caps')\n *\n * @member {string}\n */\nprototypeAccessors.fontVariant.get = function ()\n{\n return this._fontVariant;\n};\nprototypeAccessors.fontVariant.set = function (fontVariant) // eslint-disable-line require-jsdoc\n{\n if (this._fontVariant !== fontVariant)\n {\n this._fontVariant = fontVariant;\n this.styleID++;\n }\n};\n\n/**\n * The font weight\n * ('normal', 'bold', 'bolder', 'lighter' and '100', '200', '300', '400', '500', '600', '700', 800' or '900')\n *\n * @member {string}\n */\nprototypeAccessors.fontWeight.get = function ()\n{\n return this._fontWeight;\n};\nprototypeAccessors.fontWeight.set = function (fontWeight) // eslint-disable-line require-jsdoc\n{\n if (this._fontWeight !== fontWeight)\n {\n this._fontWeight = fontWeight;\n this.styleID++;\n }\n};\n\n/**\n * The amount of spacing between letters, default is 0\n *\n * @member {number}\n */\nprototypeAccessors.letterSpacing.get = function ()\n{\n return this._letterSpacing;\n};\nprototypeAccessors.letterSpacing.set = function (letterSpacing) // eslint-disable-line require-jsdoc\n{\n if (this._letterSpacing !== letterSpacing)\n {\n this._letterSpacing = letterSpacing;\n this.styleID++;\n }\n};\n\n/**\n * The line height, a number that represents the vertical space that a letter uses\n *\n * @member {number}\n */\nprototypeAccessors.lineHeight.get = function ()\n{\n return this._lineHeight;\n};\nprototypeAccessors.lineHeight.set = function (lineHeight) // eslint-disable-line require-jsdoc\n{\n if (this._lineHeight !== lineHeight)\n {\n this._lineHeight = lineHeight;\n this.styleID++;\n }\n};\n\n/**\n * The space between lines\n *\n * @member {number}\n */\nprototypeAccessors.leading.get = function ()\n{\n return this._leading;\n};\nprototypeAccessors.leading.set = function (leading) // eslint-disable-line require-jsdoc\n{\n if (this._leading !== leading)\n {\n this._leading = leading;\n this.styleID++;\n }\n};\n\n/**\n * The lineJoin property sets the type of corner created, it can resolve spiked text issues.\n * Default is 'miter' (creates a sharp corner).\n *\n * @member {string}\n */\nprototypeAccessors.lineJoin.get = function ()\n{\n return this._lineJoin;\n};\nprototypeAccessors.lineJoin.set = function (lineJoin) // eslint-disable-line require-jsdoc\n{\n if (this._lineJoin !== lineJoin)\n {\n this._lineJoin = lineJoin;\n this.styleID++;\n }\n};\n\n/**\n * The miter limit to use when using the 'miter' lineJoin mode\n * This can reduce or increase the spikiness of rendered text.\n *\n * @member {number}\n */\nprototypeAccessors.miterLimit.get = function ()\n{\n return this._miterLimit;\n};\nprototypeAccessors.miterLimit.set = function (miterLimit) // eslint-disable-line require-jsdoc\n{\n if (this._miterLimit !== miterLimit)\n {\n this._miterLimit = miterLimit;\n this.styleID++;\n }\n};\n\n/**\n * Occasionally some fonts are cropped. Adding some padding will prevent this from happening\n * by adding padding to all sides of the text.\n *\n * @member {number}\n */\nprototypeAccessors.padding.get = function ()\n{\n return this._padding;\n};\nprototypeAccessors.padding.set = function (padding) // eslint-disable-line require-jsdoc\n{\n if (this._padding !== padding)\n {\n this._padding = padding;\n this.styleID++;\n }\n};\n\n/**\n * A canvas fillstyle that will be used on the text stroke\n * e.g 'blue', '#FCFF00'\n *\n * @member {string|number}\n */\nprototypeAccessors.stroke.get = function ()\n{\n return this._stroke;\n};\nprototypeAccessors.stroke.set = function (stroke) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(stroke);\n if (this._stroke !== outputColor)\n {\n this._stroke = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * A number that represents the thickness of the stroke.\n * Default is 0 (no stroke)\n *\n * @member {number}\n */\nprototypeAccessors.strokeThickness.get = function ()\n{\n return this._strokeThickness;\n};\nprototypeAccessors.strokeThickness.set = function (strokeThickness) // eslint-disable-line require-jsdoc\n{\n if (this._strokeThickness !== strokeThickness)\n {\n this._strokeThickness = strokeThickness;\n this.styleID++;\n }\n};\n\n/**\n * The baseline of the text that is rendered.\n *\n * @member {string}\n */\nprototypeAccessors.textBaseline.get = function ()\n{\n return this._textBaseline;\n};\nprototypeAccessors.textBaseline.set = function (textBaseline) // eslint-disable-line require-jsdoc\n{\n if (this._textBaseline !== textBaseline)\n {\n this._textBaseline = textBaseline;\n this.styleID++;\n }\n};\n\n/**\n * Trim transparent borders\n *\n * @member {boolean}\n */\nprototypeAccessors.trim.get = function ()\n{\n return this._trim;\n};\nprototypeAccessors.trim.set = function (trim) // eslint-disable-line require-jsdoc\n{\n if (this._trim !== trim)\n {\n this._trim = trim;\n this.styleID++;\n }\n};\n\n/**\n * How newlines and spaces should be handled.\n * Default is 'pre' (preserve, preserve).\n *\n * value | New lines | Spaces\n * --- | --- | ---\n * 'normal' | Collapse | Collapse\n * 'pre' | Preserve | Preserve\n * 'pre-line' | Preserve | Collapse\n *\n * @member {string}\n */\nprototypeAccessors.whiteSpace.get = function ()\n{\n return this._whiteSpace;\n};\nprototypeAccessors.whiteSpace.set = function (whiteSpace) // eslint-disable-line require-jsdoc\n{\n if (this._whiteSpace !== whiteSpace)\n {\n this._whiteSpace = whiteSpace;\n this.styleID++;\n }\n};\n\n/**\n * Indicates if word wrap should be used\n *\n * @member {boolean}\n */\nprototypeAccessors.wordWrap.get = function ()\n{\n return this._wordWrap;\n};\nprototypeAccessors.wordWrap.set = function (wordWrap) // eslint-disable-line require-jsdoc\n{\n if (this._wordWrap !== wordWrap)\n {\n this._wordWrap = wordWrap;\n this.styleID++;\n }\n};\n\n/**\n * The width at which text will wrap, it needs wordWrap to be set to true\n *\n * @member {number}\n */\nprototypeAccessors.wordWrapWidth.get = function ()\n{\n return this._wordWrapWidth;\n};\nprototypeAccessors.wordWrapWidth.set = function (wordWrapWidth) // eslint-disable-line require-jsdoc\n{\n if (this._wordWrapWidth !== wordWrapWidth)\n {\n this._wordWrapWidth = wordWrapWidth;\n this.styleID++;\n }\n};\n\n/**\n * Generates a font style string to use for `TextMetrics.measureFont()`.\n *\n * @return {string} Font style string, for passing to `TextMetrics.measureFont()`\n */\nTextStyle.prototype.toFontString = function toFontString ()\n{\n // build canvas api font setting from individual components. Convert a numeric this.fontSize to px\n var fontSizeString = (typeof this.fontSize === 'number') ? ((this.fontSize) + \"px\") : this.fontSize;\n\n // Clean-up fontFamily property by quoting each font name\n // this will support font names with spaces\n var fontFamilies = this.fontFamily;\n\n if (!Array.isArray(this.fontFamily))\n {\n fontFamilies = this.fontFamily.split(',');\n }\n\n for (var i = fontFamilies.length - 1; i >= 0; i--)\n {\n // Trim any extra white-space\n var fontFamily = fontFamilies[i].trim();\n\n // Check if font already contains strings\n if (!(/([\\\"\\'])[^\\'\\\"]+\\1/).test(fontFamily) && genericFontFamilies.indexOf(fontFamily) < 0)\n {\n fontFamily = \"\\\"\" + fontFamily + \"\\\"\";\n }\n fontFamilies[i] = fontFamily;\n }\n\n return ((this.fontStyle) + \" \" + (this.fontVariant) + \" \" + (this.fontWeight) + \" \" + fontSizeString + \" \" + (fontFamilies.join(',')));\n};\n\nObject.defineProperties( TextStyle.prototype, prototypeAccessors );\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * @private\n * @param {number|number[]} color\n * @return {string} The color as a string.\n */\nfunction getSingleColor(color)\n{\n if (typeof color === 'number')\n {\n return hex2string(color);\n }\n else if ( typeof color === 'string' )\n {\n if ( color.indexOf('0x') === 0 )\n {\n color = color.replace('0x', '#');\n }\n }\n\n return color;\n}\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * This version can also convert array of colors\n * @private\n * @param {number|number[]} color\n * @return {string} The color as a string.\n */\nfunction getColor(color)\n{\n if (!Array.isArray(color))\n {\n return getSingleColor(color);\n }\n else\n {\n for (var i = 0; i < color.length; ++i)\n {\n color[i] = getSingleColor(color[i]);\n }\n\n return color;\n }\n}\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * This version can also convert array of colors\n * @private\n * @param {Array} array1 First array to compare\n * @param {Array} array2 Second array to compare\n * @return {boolean} Do the arrays contain the same values in the same order\n */\nfunction areArraysEqual(array1, array2)\n{\n if (!Array.isArray(array1) || !Array.isArray(array2))\n {\n return false;\n }\n\n if (array1.length !== array2.length)\n {\n return false;\n }\n\n for (var i = 0; i < array1.length; ++i)\n {\n if (array1[i] !== array2[i])\n {\n return false;\n }\n }\n\n return true;\n}\n\n/**\n * Utility function to ensure that object properties are copied by value, and not by reference\n * @private\n * @param {Object} target Target object to copy properties into\n * @param {Object} source Source object for the properties to copy\n * @param {string} propertyObj Object containing properties names we want to loop over\n */\nfunction deepCopyProperties(target, source, propertyObj) {\n for (var prop in propertyObj) {\n if (Array.isArray(source[prop])) {\n target[prop] = source[prop].slice();\n } else {\n target[prop] = source[prop];\n }\n }\n}\n\n/**\n * The TextMetrics object represents the measurement of a block of text with a specified style.\n *\n * ```js\n * let style = new PIXI.TextStyle({fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'})\n * let textMetrics = PIXI.TextMetrics.measureText('Your text', style)\n * ```\n *\n * @class\n * @memberof PIXI\n */\nvar TextMetrics = function TextMetrics(text, style, width, height, lines, lineWidths, lineHeight, maxLineWidth, fontProperties)\n{\n /**\n * The text that was measured\n *\n * @member {string}\n */\n this.text = text;\n\n /**\n * The style that was measured\n *\n * @member {PIXI.TextStyle}\n */\n this.style = style;\n\n /**\n * The measured width of the text\n *\n * @member {number}\n */\n this.width = width;\n\n /**\n * The measured height of the text\n *\n * @member {number}\n */\n this.height = height;\n\n /**\n * An array of lines of the text broken by new lines and wrapping is specified in style\n *\n * @member {string[]}\n */\n this.lines = lines;\n\n /**\n * An array of the line widths for each line matched to `lines`\n *\n * @member {number[]}\n */\n this.lineWidths = lineWidths;\n\n /**\n * The measured line height for this style\n *\n * @member {number}\n */\n this.lineHeight = lineHeight;\n\n /**\n * The maximum line width for all measured lines\n *\n * @member {number}\n */\n this.maxLineWidth = maxLineWidth;\n\n /**\n * The font properties object from TextMetrics.measureFont\n *\n * @member {PIXI.IFontMetrics}\n */\n this.fontProperties = fontProperties;\n};\n\n/**\n * Measures the supplied string of text and returns a Rectangle.\n *\n * @param {string} text - the text to measure.\n * @param {PIXI.TextStyle} style - the text style to use for measuring\n * @param {boolean} [wordWrap] - optional override for if word-wrap should be applied to the text.\n * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring.\n * @return {PIXI.TextMetrics} measured width and height of the text.\n */\nTextMetrics.measureText = function measureText (text, style, wordWrap, canvas)\n{\n if ( canvas === void 0 ) canvas = TextMetrics._canvas;\n\n wordWrap = (wordWrap === undefined || wordWrap === null) ? style.wordWrap : wordWrap;\n var font = style.toFontString();\n var fontProperties = TextMetrics.measureFont(font);\n\n // fallback in case UA disallow canvas data extraction\n // (toDataURI, getImageData functions)\n if (fontProperties.fontSize === 0)\n {\n fontProperties.fontSize = style.fontSize;\n fontProperties.ascent = style.fontSize;\n }\n\n var context = canvas.getContext('2d');\n\n context.font = font;\n\n var outputText = wordWrap ? TextMetrics.wordWrap(text, style, canvas) : text;\n var lines = outputText.split(/(?:\\r\\n|\\r|\\n)/);\n var lineWidths = new Array(lines.length);\n var maxLineWidth = 0;\n\n for (var i = 0; i < lines.length; i++)\n {\n var lineWidth = context.measureText(lines[i]).width + ((lines[i].length - 1) * style.letterSpacing);\n\n lineWidths[i] = lineWidth;\n maxLineWidth = Math.max(maxLineWidth, lineWidth);\n }\n var width = maxLineWidth + style.strokeThickness;\n\n if (style.dropShadow)\n {\n width += style.dropShadowDistance;\n }\n\n var lineHeight = style.lineHeight || fontProperties.fontSize + style.strokeThickness;\n var height = Math.max(lineHeight, fontProperties.fontSize + style.strokeThickness)\n + ((lines.length - 1) * (lineHeight + style.leading));\n\n if (style.dropShadow)\n {\n height += style.dropShadowDistance;\n }\n\n return new TextMetrics(\n text,\n style,\n width,\n height,\n lines,\n lineWidths,\n lineHeight + style.leading,\n maxLineWidth,\n fontProperties\n );\n};\n\n/**\n * Applies newlines to a string to have it optimally fit into the horizontal\n * bounds set by the Text object's wordWrapWidth property.\n *\n * @private\n * @param {string} text - String to apply word wrapping to\n * @param {PIXI.TextStyle} style - the style to use when wrapping\n * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring.\n * @return {string} New string with new lines applied where required\n */\nTextMetrics.wordWrap = function wordWrap (text, style, canvas)\n{\n if ( canvas === void 0 ) canvas = TextMetrics._canvas;\n\n var context = canvas.getContext('2d');\n\n var width = 0;\n var line = '';\n var lines = '';\n\n var cache = {};\n var letterSpacing = style.letterSpacing;\n var whiteSpace = style.whiteSpace;\n\n // How to handle whitespaces\n var collapseSpaces = TextMetrics.collapseSpaces(whiteSpace);\n var collapseNewlines = TextMetrics.collapseNewlines(whiteSpace);\n\n // whether or not spaces may be added to the beginning of lines\n var canPrependSpaces = !collapseSpaces;\n\n // There is letterSpacing after every char except the last one\n // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!\n // so for convenience the above needs to be compared to width + 1 extra letterSpace\n // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!_\n // ________________________________________________\n // And then the final space is simply no appended to each line\n var wordWrapWidth = style.wordWrapWidth + letterSpacing;\n\n // break text into words, spaces and newline chars\n var tokens = TextMetrics.tokenize(text);\n\n for (var i = 0; i < tokens.length; i++)\n {\n // get the word, space or newlineChar\n var token = tokens[i];\n\n // if word is a new line\n if (TextMetrics.isNewline(token))\n {\n // keep the new line\n if (!collapseNewlines)\n {\n lines += TextMetrics.addLine(line);\n canPrependSpaces = !collapseSpaces;\n line = '';\n width = 0;\n continue;\n }\n\n // if we should collapse new lines\n // we simply convert it into a space\n token = ' ';\n }\n\n // if we should collapse repeated whitespaces\n if (collapseSpaces)\n {\n // check both this and the last tokens for spaces\n var currIsBreakingSpace = TextMetrics.isBreakingSpace(token);\n var lastIsBreakingSpace = TextMetrics.isBreakingSpace(line[line.length - 1]);\n\n if (currIsBreakingSpace && lastIsBreakingSpace)\n {\n continue;\n }\n }\n\n // get word width from cache if possible\n var tokenWidth = TextMetrics.getFromCache(token, letterSpacing, cache, context);\n\n // word is longer than desired bounds\n if (tokenWidth > wordWrapWidth)\n {\n // if we are not already at the beginning of a line\n if (line !== '')\n {\n // start newlines for overflow words\n lines += TextMetrics.addLine(line);\n line = '';\n width = 0;\n }\n\n // break large word over multiple lines\n if (TextMetrics.canBreakWords(token, style.breakWords))\n {\n // break word into characters\n var characters = token.split('');\n\n // loop the characters\n for (var j = 0; j < characters.length; j++)\n {\n var char = characters[j];\n\n var k = 1;\n // we are not at the end of the token\n\n while (characters[j + k])\n {\n var nextChar = characters[j + k];\n var lastChar = char[char.length - 1];\n\n // should not split chars\n if (!TextMetrics.canBreakChars(lastChar, nextChar, token, j, style.breakWords))\n {\n // combine chars & move forward one\n char += nextChar;\n }\n else\n {\n break;\n }\n\n k++;\n }\n\n j += char.length - 1;\n\n var characterWidth = TextMetrics.getFromCache(char, letterSpacing, cache, context);\n\n if (characterWidth + width > wordWrapWidth)\n {\n lines += TextMetrics.addLine(line);\n canPrependSpaces = false;\n line = '';\n width = 0;\n }\n\n line += char;\n width += characterWidth;\n }\n }\n\n // run word out of the bounds\n else\n {\n // if there are words in this line already\n // finish that line and start a new one\n if (line.length > 0)\n {\n lines += TextMetrics.addLine(line);\n line = '';\n width = 0;\n }\n\n var isLastToken = i === tokens.length - 1;\n\n // give it its own line if it's not the end\n lines += TextMetrics.addLine(token, !isLastToken);\n canPrependSpaces = false;\n line = '';\n width = 0;\n }\n }\n\n // word could fit\n else\n {\n // word won't fit because of existing words\n // start a new line\n if (tokenWidth + width > wordWrapWidth)\n {\n // if its a space we don't want it\n canPrependSpaces = false;\n\n // add a new line\n lines += TextMetrics.addLine(line);\n\n // start a new line\n line = '';\n width = 0;\n }\n\n // don't add spaces to the beginning of lines\n if (line.length > 0 || !TextMetrics.isBreakingSpace(token) || canPrependSpaces)\n {\n // add the word to the current line\n line += token;\n\n // update width counter\n width += tokenWidth;\n }\n }\n }\n\n lines += TextMetrics.addLine(line, false);\n\n return lines;\n};\n\n/**\n * Convienience function for logging each line added during the wordWrap\n * method\n *\n * @private\n * @param {string} line - The line of text to add\n * @param {boolean} newLine - Add new line character to end\n * @return {string} A formatted line\n */\nTextMetrics.addLine = function addLine (line, newLine)\n{\n if ( newLine === void 0 ) newLine = true;\n\n line = TextMetrics.trimRight(line);\n\n line = (newLine) ? (line + \"\\n\") : line;\n\n return line;\n};\n\n/**\n * Gets & sets the widths of calculated characters in a cache object\n *\n * @private\n * @param {string} key The key\n * @param {number} letterSpacing The letter spacing\n * @param {object} cache The cache\n * @param {CanvasRenderingContext2D} context The canvas context\n * @return {number} The from cache.\n */\nTextMetrics.getFromCache = function getFromCache (key, letterSpacing, cache, context)\n{\n var width = cache[key];\n\n if (width === undefined)\n {\n var spacing = ((key.length) * letterSpacing);\n\n width = context.measureText(key).width + spacing;\n cache[key] = width;\n }\n\n return width;\n};\n\n/**\n * Determines whether we should collapse breaking spaces\n *\n * @private\n * @param {string} whiteSpace The TextStyle property whiteSpace\n * @return {boolean} should collapse\n */\nTextMetrics.collapseSpaces = function collapseSpaces (whiteSpace)\n{\n return (whiteSpace === 'normal' || whiteSpace === 'pre-line');\n};\n\n/**\n * Determines whether we should collapse newLine chars\n *\n * @private\n * @param {string} whiteSpace The white space\n * @return {boolean} should collapse\n */\nTextMetrics.collapseNewlines = function collapseNewlines (whiteSpace)\n{\n return (whiteSpace === 'normal');\n};\n\n/**\n * trims breaking whitespaces from string\n *\n * @private\n * @param {string} text The text\n * @return {string} trimmed string\n */\nTextMetrics.trimRight = function trimRight (text)\n{\n if (typeof text !== 'string')\n {\n return '';\n }\n\n for (var i = text.length - 1; i >= 0; i--)\n {\n var char = text[i];\n\n if (!TextMetrics.isBreakingSpace(char))\n {\n break;\n }\n\n text = text.slice(0, -1);\n }\n\n return text;\n};\n\n/**\n * Determines if char is a newline.\n *\n * @private\n * @param {string} char The character\n * @return {boolean} True if newline, False otherwise.\n */\nTextMetrics.isNewline = function isNewline (char)\n{\n if (typeof char !== 'string')\n {\n return false;\n }\n\n return (TextMetrics._newlines.indexOf(char.charCodeAt(0)) >= 0);\n};\n\n/**\n * Determines if char is a breaking whitespace.\n *\n * @private\n * @param {string} char The character\n * @return {boolean} True if whitespace, False otherwise.\n */\nTextMetrics.isBreakingSpace = function isBreakingSpace (char)\n{\n if (typeof char !== 'string')\n {\n return false;\n }\n\n return (TextMetrics._breakingSpaces.indexOf(char.charCodeAt(0)) >= 0);\n};\n\n/**\n * Splits a string into words, breaking-spaces and newLine characters\n *\n * @private\n * @param {string} text The text\n * @return {string[]} A tokenized array\n */\nTextMetrics.tokenize = function tokenize (text)\n{\n var tokens = [];\n var token = '';\n\n if (typeof text !== 'string')\n {\n return tokens;\n }\n\n for (var i = 0; i < text.length; i++)\n {\n var char = text[i];\n\n if (TextMetrics.isBreakingSpace(char) || TextMetrics.isNewline(char))\n {\n if (token !== '')\n {\n tokens.push(token);\n token = '';\n }\n\n tokens.push(char);\n\n continue;\n }\n\n token += char;\n }\n\n if (token !== '')\n {\n tokens.push(token);\n }\n\n return tokens;\n};\n\n/**\n * This method exists to be easily overridden\n * It allows one to customise which words should break\n * Examples are if the token is CJK or numbers.\n * It must return a boolean.\n *\n * @private\n * @param {string} token The token\n * @param {boolean} breakWords The style attr break words\n * @return {boolean} whether to break word or not\n */\nTextMetrics.canBreakWords = function canBreakWords (token, breakWords)\n{\n return breakWords;\n};\n\n/**\n * This method exists to be easily overridden\n * It allows one to determine whether a pair of characters\n * should be broken by newlines\n * For example certain characters in CJK langs or numbers.\n * It must return a boolean.\n *\n * @private\n * @param {string} char The character\n * @param {string} nextChar The next character\n * @param {string} token The token/word the characters are from\n * @param {number} index The index in the token of the char\n * @param {boolean} breakWords The style attr break words\n * @return {boolean} whether to break word or not\n */\nTextMetrics.canBreakChars = function canBreakChars (char, nextChar, token, index, breakWords) // eslint-disable-line no-unused-vars\n{\n return true;\n};\n\n/**\n * Calculates the ascent, descent and fontSize of a given font-style\n *\n * @static\n * @param {string} font - String representing the style of the font\n * @return {PIXI.IFontMetrics} Font properties object\n */\nTextMetrics.measureFont = function measureFont (font)\n{\n // as this method is used for preparing assets, don't recalculate things if we don't need to\n if (TextMetrics._fonts[font])\n {\n return TextMetrics._fonts[font];\n }\n\n var properties = {};\n\n var canvas = TextMetrics._canvas;\n var context = TextMetrics._context;\n\n context.font = font;\n\n var metricsString = TextMetrics.METRICS_STRING + TextMetrics.BASELINE_SYMBOL;\n var width = Math.ceil(context.measureText(metricsString).width);\n var baseline = Math.ceil(context.measureText(TextMetrics.BASELINE_SYMBOL).width);\n var height = 2 * baseline;\n\n baseline = baseline * TextMetrics.BASELINE_MULTIPLIER | 0;\n\n canvas.width = width;\n canvas.height = height;\n\n context.fillStyle = '#f00';\n context.fillRect(0, 0, width, height);\n\n context.font = font;\n\n context.textBaseline = 'alphabetic';\n context.fillStyle = '#000';\n context.fillText(metricsString, 0, baseline);\n\n var imagedata = context.getImageData(0, 0, width, height).data;\n var pixels = imagedata.length;\n var line = width * 4;\n\n var i = 0;\n var idx = 0;\n var stop = false;\n\n // ascent. scan from top to bottom until we find a non red pixel\n for (i = 0; i < baseline; ++i)\n {\n for (var j = 0; j < line; j += 4)\n {\n if (imagedata[idx + j] !== 255)\n {\n stop = true;\n break;\n }\n }\n if (!stop)\n {\n idx += line;\n }\n else\n {\n break;\n }\n }\n\n properties.ascent = baseline - i;\n\n idx = pixels - line;\n stop = false;\n\n // descent. scan from bottom to top until we find a non red pixel\n for (i = height; i > baseline; --i)\n {\n for (var j$1 = 0; j$1 < line; j$1 += 4)\n {\n if (imagedata[idx + j$1] !== 255)\n {\n stop = true;\n break;\n }\n }\n\n if (!stop)\n {\n idx -= line;\n }\n else\n {\n break;\n }\n }\n\n properties.descent = i - baseline;\n properties.fontSize = properties.ascent + properties.descent;\n\n TextMetrics._fonts[font] = properties;\n\n return properties;\n};\n\n/**\n * Clear font metrics in metrics cache.\n *\n * @static\n * @param {string} [font] - font name. If font name not set then clear cache for all fonts.\n */\nTextMetrics.clearMetrics = function clearMetrics (font)\n{\n if ( font === void 0 ) font = '';\n\n if (font)\n {\n delete TextMetrics._fonts[font];\n }\n else\n {\n TextMetrics._fonts = {};\n }\n};\n\n/**\n * Internal return object for {@link PIXI.TextMetrics.measureFont `TextMetrics.measureFont`}.\n *\n * @typedef {object} FontMetrics\n * @property {number} ascent - The ascent distance\n * @property {number} descent - The descent distance\n * @property {number} fontSize - Font size from ascent to descent\n * @memberof PIXI.TextMetrics\n * @private\n */\n\nvar canvas = (function () {\n try\n {\n // OffscreenCanvas2D measureText can be up to 40% faster.\n var c = new OffscreenCanvas(0, 0);\n\n return c.getContext('2d') ? c : document.createElement('canvas');\n }\n catch (ex)\n {\n return document.createElement('canvas');\n }\n})();\n\ncanvas.width = canvas.height = 10;\n\n/**\n * Cached canvas element for measuring text\n *\n * @memberof PIXI.TextMetrics\n * @type {HTMLCanvasElement}\n * @private\n */\nTextMetrics._canvas = canvas;\n\n/**\n * Cache for context to use.\n *\n * @memberof PIXI.TextMetrics\n * @type {CanvasRenderingContext2D}\n * @private\n */\nTextMetrics._context = canvas.getContext('2d');\n\n/**\n * Cache of {@see PIXI.TextMetrics.FontMetrics} objects.\n *\n * @memberof PIXI.TextMetrics\n * @type {Object}\n * @private\n */\nTextMetrics._fonts = {};\n\n/**\n * String used for calculate font metrics.\n * These characters are all tall to help calculate the height required for text.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name METRICS_STRING\n * @type {string}\n * @default |ÉqÅ\n */\nTextMetrics.METRICS_STRING = '|ÉqÅ';\n\n/**\n * Baseline symbol for calculate font metrics.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name BASELINE_SYMBOL\n * @type {string}\n * @default M\n */\nTextMetrics.BASELINE_SYMBOL = 'M';\n\n/**\n * Baseline multiplier for calculate font metrics.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name BASELINE_MULTIPLIER\n * @type {number}\n * @default 1.4\n */\nTextMetrics.BASELINE_MULTIPLIER = 1.4;\n\n/**\n * Cache of new line chars.\n *\n * @memberof PIXI.TextMetrics\n * @type {number[]}\n * @private\n */\nTextMetrics._newlines = [\n 0x000A, // line feed\n 0x000D ];\n\n/**\n * Cache of breaking spaces.\n *\n * @memberof PIXI.TextMetrics\n * @type {number[]}\n * @private\n */\nTextMetrics._breakingSpaces = [\n 0x0009, // character tabulation\n 0x0020, // space\n 0x2000, // en quad\n 0x2001, // em quad\n 0x2002, // en space\n 0x2003, // em space\n 0x2004, // three-per-em space\n 0x2005, // four-per-em space\n 0x2006, // six-per-em space\n 0x2008, // punctuation space\n 0x2009, // thin space\n 0x200A, // hair space\n 0x205F, // medium mathematical space\n 0x3000 ];\n\n/**\n * A number, or a string containing a number.\n *\n * @memberof PIXI\n * @typedef IFontMetrics\n * @property {number} ascent - Font ascent\n * @property {number} descent - Font descent\n * @property {number} fontSize - Font size\n */\n\n/* eslint max-depth: [2, 8] */\n\nvar defaultDestroyOptions = {\n texture: true,\n children: false,\n baseTexture: true,\n};\n\n/**\n * A Text Object will create a line or multiple lines of text.\n *\n * The text is created using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API).\n *\n * The primary advantage of this class over BitmapText is that you have great control over the style of the next,\n * which you can change at runtime.\n *\n * The primary disadvantages is that each piece of text has it's own texture, which can use more memory.\n * When text changes, this texture has to be re-generated and re-uploaded to the GPU, taking up time.\n *\n * To split a line you can use '\\n' in your text string, or, on the `style` object,\n * change its `wordWrap` property to true and and give the `wordWrapWidth` property a value.\n *\n * A Text can be created directly from a string and a style object,\n * which can be generated [here](https://pixijs.io/pixi-text-style).\n *\n * ```js\n * let text = new PIXI.Text('This is a PixiJS text',{fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'});\n * ```\n *\n * @class\n * @extends PIXI.Sprite\n * @memberof PIXI\n */\nvar Text = /*@__PURE__*/(function (Sprite) {\n function Text(text, style, canvas)\n {\n canvas = canvas || document.createElement('canvas');\n\n canvas.width = 3;\n canvas.height = 3;\n\n var texture = Texture.from(canvas);\n\n texture.orig = new Rectangle();\n texture.trim = new Rectangle();\n\n Sprite.call(this, texture);\n\n /**\n * The canvas element that everything is drawn to\n *\n * @member {HTMLCanvasElement}\n */\n this.canvas = canvas;\n\n /**\n * The canvas 2d context that everything is drawn with\n * @member {CanvasRenderingContext2D}\n */\n this.context = this.canvas.getContext('2d');\n\n /**\n * The resolution / device pixel ratio of the canvas.\n * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually.\n * @member {number}\n * @default 1\n */\n this._resolution = settings.RESOLUTION;\n this._autoResolution = true;\n\n /**\n * Private tracker for the current text.\n *\n * @member {string}\n * @private\n */\n this._text = null;\n\n /**\n * Private tracker for the current style.\n *\n * @member {object}\n * @private\n */\n this._style = null;\n /**\n * Private listener to track style changes.\n *\n * @member {Function}\n * @private\n */\n this._styleListener = null;\n\n /**\n * Private tracker for the current font.\n *\n * @member {string}\n * @private\n */\n this._font = '';\n\n this.text = text;\n this.style = style;\n\n this.localStyleID = -1;\n }\n\n if ( Sprite ) Text.__proto__ = Sprite;\n Text.prototype = Object.create( Sprite && Sprite.prototype );\n Text.prototype.constructor = Text;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true },style: { configurable: true },text: { configurable: true },resolution: { configurable: true } };\n\n /**\n * Renders text and updates it when needed.\n *\n * @private\n * @param {boolean} respectDirty - Whether to abort updating the text if the Text isn't dirty and the function is called.\n */\n Text.prototype.updateText = function updateText (respectDirty)\n {\n var style = this._style;\n\n // check if style has changed..\n if (this.localStyleID !== style.styleID)\n {\n this.dirty = true;\n this.localStyleID = style.styleID;\n }\n\n if (!this.dirty && respectDirty)\n {\n return;\n }\n\n this._font = this._style.toFontString();\n\n var context = this.context;\n var measured = TextMetrics.measureText(this._text || ' ', this._style, this._style.wordWrap, this.canvas);\n var width = measured.width;\n var height = measured.height;\n var lines = measured.lines;\n var lineHeight = measured.lineHeight;\n var lineWidths = measured.lineWidths;\n var maxLineWidth = measured.maxLineWidth;\n var fontProperties = measured.fontProperties;\n\n this.canvas.width = Math.ceil((Math.max(1, width) + (style.padding * 2)) * this._resolution);\n this.canvas.height = Math.ceil((Math.max(1, height) + (style.padding * 2)) * this._resolution);\n\n context.scale(this._resolution, this._resolution);\n\n context.clearRect(0, 0, this.canvas.width, this.canvas.height);\n\n context.font = this._font;\n context.lineWidth = style.strokeThickness;\n context.textBaseline = style.textBaseline;\n context.lineJoin = style.lineJoin;\n context.miterLimit = style.miterLimit;\n\n var linePositionX;\n var linePositionY;\n\n // require 2 passes if a shadow; the first to draw the drop shadow, the second to draw the text\n var passesCount = style.dropShadow ? 2 : 1;\n\n // For v4, we drew text at the colours of the drop shadow underneath the normal text. This gave the correct zIndex,\n // but features such as alpha and shadowblur did not look right at all, since we were using actual text as a shadow.\n //\n // For v5.0.0, we moved over to just use the canvas API for drop shadows, which made them look much nicer and more\n // visually please, but now because the stroke is drawn and then the fill, drop shadows would appear on both the fill\n // and the stroke; and fill drop shadows would appear over the top of the stroke.\n //\n // For v5.1.1, the new route is to revert to v4 style of drawing text first to get the drop shadows underneath normal\n // text, but instead drawing text in the correct location, we'll draw it off screen (-paddingY), and then adjust the\n // drop shadow so only that appears on screen (+paddingY). Now we'll have the correct draw order of the shadow\n // beneath the text, whilst also having the proper text shadow styling.\n for (var i = 0; i < passesCount; ++i)\n {\n var isShadowPass = style.dropShadow && i === 0;\n var dsOffsetText = isShadowPass ? height * 2 : 0; // we only want the drop shadow, so put text way off-screen\n var dsOffsetShadow = dsOffsetText * this.resolution;\n\n if (isShadowPass)\n {\n // On Safari, text with gradient and drop shadows together do not position correctly\n // if the scale of the canvas is not 1: https://bugs.webkit.org/show_bug.cgi?id=197689\n // Therefore we'll set the styles to be a plain black whilst generating this drop shadow\n context.fillStyle = 'black';\n context.strokeStyle = 'black';\n\n var dropShadowColor = style.dropShadowColor;\n var rgb = hex2rgb(typeof dropShadowColor === 'number' ? dropShadowColor : string2hex(dropShadowColor));\n\n context.shadowColor = \"rgba(\" + (rgb[0] * 255) + \",\" + (rgb[1] * 255) + \",\" + (rgb[2] * 255) + \",\" + (style.dropShadowAlpha) + \")\";\n context.shadowBlur = style.dropShadowBlur;\n context.shadowOffsetX = Math.cos(style.dropShadowAngle) * style.dropShadowDistance;\n context.shadowOffsetY = (Math.sin(style.dropShadowAngle) * style.dropShadowDistance) + dsOffsetShadow;\n }\n else\n {\n // set canvas text styles\n context.fillStyle = this._generateFillStyle(style, lines);\n context.strokeStyle = style.stroke;\n\n context.shadowColor = 0;\n context.shadowBlur = 0;\n context.shadowOffsetX = 0;\n context.shadowOffsetY = 0;\n }\n\n // draw lines line by line\n for (var i$1 = 0; i$1 < lines.length; i$1++)\n {\n linePositionX = style.strokeThickness / 2;\n linePositionY = ((style.strokeThickness / 2) + (i$1 * lineHeight)) + fontProperties.ascent;\n\n if (style.align === 'right')\n {\n linePositionX += maxLineWidth - lineWidths[i$1];\n }\n else if (style.align === 'center')\n {\n linePositionX += (maxLineWidth - lineWidths[i$1]) / 2;\n }\n\n if (style.stroke && style.strokeThickness)\n {\n this.drawLetterSpacing(\n lines[i$1],\n linePositionX + style.padding,\n linePositionY + style.padding - dsOffsetText,\n true\n );\n }\n\n if (style.fill)\n {\n this.drawLetterSpacing(\n lines[i$1],\n linePositionX + style.padding,\n linePositionY + style.padding - dsOffsetText\n );\n }\n }\n }\n\n this.updateTexture();\n };\n\n /**\n * Render the text with letter-spacing.\n * @param {string} text - The text to draw\n * @param {number} x - Horizontal position to draw the text\n * @param {number} y - Vertical position to draw the text\n * @param {boolean} [isStroke=false] - Is this drawing for the outside stroke of the\n * text? If not, it's for the inside fill\n * @private\n */\n Text.prototype.drawLetterSpacing = function drawLetterSpacing (text, x, y, isStroke)\n {\n if ( isStroke === void 0 ) isStroke = false;\n\n var style = this._style;\n\n // letterSpacing of 0 means normal\n var letterSpacing = style.letterSpacing;\n\n if (letterSpacing === 0)\n {\n if (isStroke)\n {\n this.context.strokeText(text, x, y);\n }\n else\n {\n this.context.fillText(text, x, y);\n }\n\n return;\n }\n\n var currentPosition = x;\n\n // Using Array.from correctly splits characters whilst keeping emoji together.\n // This is not supported on IE as it requires ES6, so regular text splitting occurs.\n // This also doesn't account for emoji that are multiple emoji put together to make something else.\n // Handling all of this would require a big library itself.\n // https://medium.com/@giltayar/iterating-over-emoji-characters-the-es6-way-f06e4589516\n // https://github.com/orling/grapheme-splitter\n var stringArray = Array.from ? Array.from(text) : text.split('');\n var previousWidth = this.context.measureText(text).width;\n var currentWidth = 0;\n\n for (var i = 0; i < stringArray.length; ++i)\n {\n var currentChar = stringArray[i];\n\n if (isStroke)\n {\n this.context.strokeText(currentChar, currentPosition, y);\n }\n else\n {\n this.context.fillText(currentChar, currentPosition, y);\n }\n currentWidth = this.context.measureText(text.substring(i + 1)).width;\n currentPosition += previousWidth - currentWidth + letterSpacing;\n previousWidth = currentWidth;\n }\n };\n\n /**\n * Updates texture size based on canvas size\n *\n * @private\n */\n Text.prototype.updateTexture = function updateTexture ()\n {\n var canvas = this.canvas;\n\n if (this._style.trim)\n {\n var trimmed = trimCanvas(canvas);\n\n if (trimmed.data)\n {\n canvas.width = trimmed.width;\n canvas.height = trimmed.height;\n this.context.putImageData(trimmed.data, 0, 0);\n }\n }\n\n var texture = this._texture;\n var style = this._style;\n var padding = style.trim ? 0 : style.padding;\n var baseTexture = texture.baseTexture;\n\n texture.trim.width = texture._frame.width = Math.ceil(canvas.width / this._resolution);\n texture.trim.height = texture._frame.height = Math.ceil(canvas.height / this._resolution);\n texture.trim.x = -padding;\n texture.trim.y = -padding;\n\n texture.orig.width = texture._frame.width - (padding * 2);\n texture.orig.height = texture._frame.height - (padding * 2);\n\n // call sprite onTextureUpdate to update scale if _width or _height were set\n this._onTextureUpdate();\n\n baseTexture.setRealSize(canvas.width, canvas.height, this._resolution);\n\n this.dirty = false;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @private\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Text.prototype._render = function _render (renderer)\n {\n if (this._autoResolution && this._resolution !== renderer.resolution)\n {\n this._resolution = renderer.resolution;\n this.dirty = true;\n }\n\n this.updateText(true);\n\n Sprite.prototype._render.call(this, renderer);\n };\n\n /**\n * Gets the local bounds of the text object.\n *\n * @param {PIXI.Rectangle} rect - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n Text.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n this.updateText(true);\n\n return Sprite.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * calculates the bounds of the Text as a rectangle. The bounds calculation takes the worldTransform into account.\n * @protected\n */\n Text.prototype._calculateBounds = function _calculateBounds ()\n {\n this.updateText(true);\n this.calculateVertices();\n // if we have already done this on THIS frame.\n this._bounds.addQuad(this.vertexData);\n };\n\n /**\n * Method to be called upon a TextStyle change.\n * @private\n */\n Text.prototype._onStyleChange = function _onStyleChange ()\n {\n this.dirty = true;\n };\n\n /**\n * Generates the fill style. Can automatically generate a gradient based on the fill style being an array\n *\n * @private\n * @param {object} style - The style.\n * @param {string[]} lines - The lines of text.\n * @return {string|number|CanvasGradient} The fill style\n */\n Text.prototype._generateFillStyle = function _generateFillStyle (style, lines)\n {\n if (!Array.isArray(style.fill))\n {\n return style.fill;\n }\n else if (style.fill.length === 1)\n {\n return style.fill[0];\n }\n\n // the gradient will be evenly spaced out according to how large the array is.\n // ['#FF0000', '#00FF00', '#0000FF'] would created stops at 0.25, 0.5 and 0.75\n var gradient;\n var totalIterations;\n var currentIteration;\n var stop;\n\n var width = Math.ceil(this.canvas.width / this._resolution);\n var height = Math.ceil(this.canvas.height / this._resolution);\n\n // make a copy of the style settings, so we can manipulate them later\n var fill = style.fill.slice();\n var fillGradientStops = style.fillGradientStops.slice();\n\n // wanting to evenly distribute the fills. So an array of 4 colours should give fills of 0.25, 0.5 and 0.75\n if (!fillGradientStops.length)\n {\n var lengthPlus1 = fill.length + 1;\n\n for (var i = 1; i < lengthPlus1; ++i)\n {\n fillGradientStops.push(i / lengthPlus1);\n }\n }\n\n // stop the bleeding of the last gradient on the line above to the top gradient of the this line\n // by hard defining the first gradient colour at point 0, and last gradient colour at point 1\n fill.unshift(style.fill[0]);\n fillGradientStops.unshift(0);\n\n fill.push(style.fill[style.fill.length - 1]);\n fillGradientStops.push(1);\n\n if (style.fillGradientType === TEXT_GRADIENT.LINEAR_VERTICAL)\n {\n // start the gradient at the top center of the canvas, and end at the bottom middle of the canvas\n gradient = this.context.createLinearGradient(width / 2, 0, width / 2, height);\n\n // we need to repeat the gradient so that each individual line of text has the same vertical gradient effect\n // ['#FF0000', '#00FF00', '#0000FF'] over 2 lines would create stops at 0.125, 0.25, 0.375, 0.625, 0.75, 0.875\n totalIterations = (fill.length + 1) * lines.length;\n currentIteration = 0;\n for (var i$1 = 0; i$1 < lines.length; i$1++)\n {\n currentIteration += 1;\n for (var j = 0; j < fill.length; j++)\n {\n if (typeof fillGradientStops[j] === 'number')\n {\n stop = (fillGradientStops[j] / lines.length) + (i$1 / lines.length);\n }\n else\n {\n stop = currentIteration / totalIterations;\n }\n gradient.addColorStop(stop, fill[j]);\n currentIteration++;\n }\n }\n }\n else\n {\n // start the gradient at the center left of the canvas, and end at the center right of the canvas\n gradient = this.context.createLinearGradient(0, height / 2, width, height / 2);\n\n // can just evenly space out the gradients in this case, as multiple lines makes no difference\n // to an even left to right gradient\n totalIterations = fill.length + 1;\n currentIteration = 1;\n\n for (var i$2 = 0; i$2 < fill.length; i$2++)\n {\n if (typeof fillGradientStops[i$2] === 'number')\n {\n stop = fillGradientStops[i$2];\n }\n else\n {\n stop = currentIteration / totalIterations;\n }\n gradient.addColorStop(stop, fill[i$2]);\n currentIteration++;\n }\n }\n\n return gradient;\n };\n\n /**\n * Destroys this text object.\n * Note* Unlike a Sprite, a Text object will automatically destroy its baseTexture and texture as\n * the majority of the time the texture will not be shared with any other Sprites.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their\n * destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=true] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=true] - Should it destroy the base texture of the sprite as well\n */\n Text.prototype.destroy = function destroy (options)\n {\n if (typeof options === 'boolean')\n {\n options = { children: options };\n }\n\n options = Object.assign({}, defaultDestroyOptions, options);\n\n Sprite.prototype.destroy.call(this, options);\n\n // make sure to reset the the context and canvas.. dont want this hanging around in memory!\n this.context = null;\n this.canvas = null;\n\n this._style = null;\n };\n\n /**\n * The width of the Text, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n this.updateText(true);\n\n return Math.abs(this.scale.x) * this._texture.orig.width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.updateText(true);\n\n var s = sign(this.scale.x) || 1;\n\n this.scale.x = s * value / this._texture.orig.width;\n this._width = value;\n };\n\n /**\n * The height of the Text, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n this.updateText(true);\n\n return Math.abs(this.scale.y) * this._texture.orig.height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.updateText(true);\n\n var s = sign(this.scale.y) || 1;\n\n this.scale.y = s * value / this._texture.orig.height;\n this._height = value;\n };\n\n /**\n * Set the style of the text. Set up an event listener to listen for changes on the style\n * object and mark the text as dirty.\n *\n * @member {object|PIXI.TextStyle}\n */\n prototypeAccessors.style.get = function ()\n {\n return this._style;\n };\n\n prototypeAccessors.style.set = function (style) // eslint-disable-line require-jsdoc\n {\n style = style || {};\n\n if (style instanceof TextStyle)\n {\n this._style = style;\n }\n else\n {\n this._style = new TextStyle(style);\n }\n\n this.localStyleID = -1;\n this.dirty = true;\n };\n\n /**\n * Set the copy for the text object. To split a line you can use '\\n'.\n *\n * @member {string}\n */\n prototypeAccessors.text.get = function ()\n {\n return this._text;\n };\n\n prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc\n {\n text = String(text === null || text === undefined ? '' : text);\n\n if (this._text === text)\n {\n return;\n }\n this._text = text;\n this.dirty = true;\n };\n\n /**\n * The resolution / device pixel ratio of the canvas.\n * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually.\n * @member {number}\n * @default 1\n */\n prototypeAccessors.resolution.get = function ()\n {\n return this._resolution;\n };\n\n prototypeAccessors.resolution.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._autoResolution = false;\n\n if (this._resolution === value)\n {\n return;\n }\n\n this._resolution = value;\n this.dirty = true;\n };\n\n Object.defineProperties( Text.prototype, prototypeAccessors );\n\n return Text;\n}(Sprite));\n\nexport { TEXT_GRADIENT, Text, TextMetrics, TextStyle };\n//# sourceMappingURL=text.es.js.map\n","/*!\n * @pixi/prepare - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/prepare is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nimport { Texture, BaseTexture } from '@pixi/core';\nimport { Graphics } from '@pixi/graphics';\nimport { Ticker, UPDATE_PRIORITY } from '@pixi/ticker';\nimport { Container } from '@pixi/display';\nimport { Text, TextStyle, TextMetrics } from '@pixi/text';\n\n/**\n * Default number of uploads per frame using prepare plugin.\n *\n * @static\n * @memberof PIXI.settings\n * @name UPLOADS_PER_FRAME\n * @type {number}\n * @default 4\n */\nsettings.UPLOADS_PER_FRAME = 4;\n\n/**\n * CountLimiter limits the number of items handled by a {@link PIXI.prepare.BasePrepare} to a specified\n * number of items per frame.\n *\n * @class\n * @memberof PIXI.prepare\n */\nvar CountLimiter = function CountLimiter(maxItemsPerFrame)\n{\n /**\n * The maximum number of items that can be prepared each frame.\n * @type {number}\n * @private\n */\n this.maxItemsPerFrame = maxItemsPerFrame;\n /**\n * The number of items that can be prepared in the current frame.\n * @type {number}\n * @private\n */\n this.itemsLeft = 0;\n};\n\n/**\n * Resets any counting properties to start fresh on a new frame.\n */\nCountLimiter.prototype.beginFrame = function beginFrame ()\n{\n this.itemsLeft = this.maxItemsPerFrame;\n};\n\n/**\n * Checks to see if another item can be uploaded. This should only be called once per item.\n * @return {boolean} If the item is allowed to be uploaded.\n */\nCountLimiter.prototype.allowedToUpload = function allowedToUpload ()\n{\n return this.itemsLeft-- > 0;\n};\n\n/**\n * The prepare manager provides functionality to upload content to the GPU.\n *\n * BasePrepare handles basic queuing functionality and is extended by\n * {@link PIXI.prepare.Prepare} and {@link PIXI.prepare.CanvasPrepare}\n * to provide preparation capabilities specific to their respective renderers.\n *\n * @example\n * // Create a sprite\n * const sprite = PIXI.Sprite.from('something.png');\n *\n * // Load object into GPU\n * app.renderer.plugins.prepare.upload(sprite, () => {\n *\n * //Texture(s) has been uploaded to GPU\n * app.stage.addChild(sprite);\n *\n * })\n *\n * @abstract\n * @class\n * @memberof PIXI.prepare\n */\nvar BasePrepare = function BasePrepare(renderer)\n{\n var this$1 = this;\n\n /**\n * The limiter to be used to control how quickly items are prepared.\n * @type {PIXI.prepare.CountLimiter|PIXI.prepare.TimeLimiter}\n */\n this.limiter = new CountLimiter(settings.UPLOADS_PER_FRAME);\n\n /**\n * Reference to the renderer.\n * @type {PIXI.AbstractRenderer}\n * @protected\n */\n this.renderer = renderer;\n\n /**\n * The only real difference between CanvasPrepare and Prepare is what they pass\n * to upload hooks. That different parameter is stored here.\n * @type {PIXI.prepare.CanvasPrepare|PIXI.Renderer}\n * @protected\n */\n this.uploadHookHelper = null;\n\n /**\n * Collection of items to uploads at once.\n * @type {Array<*>}\n * @private\n */\n this.queue = [];\n\n /**\n * Collection of additional hooks for finding assets.\n * @type {Array}\n * @private\n */\n this.addHooks = [];\n\n /**\n * Collection of additional hooks for processing assets.\n * @type {Array}\n * @private\n */\n this.uploadHooks = [];\n\n /**\n * Callback to call after completed.\n * @type {Array}\n * @private\n */\n this.completes = [];\n\n /**\n * If prepare is ticking (running).\n * @type {boolean}\n * @private\n */\n this.ticking = false;\n\n /**\n * 'bound' call for prepareItems().\n * @type {Function}\n * @private\n */\n this.delayedTick = function () {\n // unlikely, but in case we were destroyed between tick() and delayedTick()\n if (!this$1.queue)\n {\n return;\n }\n this$1.prepareItems();\n };\n\n // hooks to find the correct texture\n this.registerFindHook(findText);\n this.registerFindHook(findTextStyle);\n this.registerFindHook(findMultipleBaseTextures);\n this.registerFindHook(findBaseTexture);\n this.registerFindHook(findTexture);\n\n // upload hooks\n this.registerUploadHook(drawText);\n this.registerUploadHook(calculateTextStyle);\n};\n\n/**\n * Upload all the textures and graphics to the GPU.\n *\n * @param {Function|PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text} item -\n * Either the container or display object to search for items to upload, the items to upload themselves,\n * or the callback function, if items have been added using `prepare.add`.\n * @param {Function} [done] - Optional callback when all queued uploads have completed\n */\nBasePrepare.prototype.upload = function upload (item, done)\n{\n if (typeof item === 'function')\n {\n done = item;\n item = null;\n }\n\n // If a display object, search for items\n // that we could upload\n if (item)\n {\n this.add(item);\n }\n\n // Get the items for upload from the display\n if (this.queue.length)\n {\n if (done)\n {\n this.completes.push(done);\n }\n\n if (!this.ticking)\n {\n this.ticking = true;\n Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY);\n }\n }\n else if (done)\n {\n done();\n }\n};\n\n/**\n * Handle tick update\n *\n * @private\n */\nBasePrepare.prototype.tick = function tick ()\n{\n setTimeout(this.delayedTick, 0);\n};\n\n/**\n * Actually prepare items. This is handled outside of the tick because it will take a while\n * and we do NOT want to block the current animation frame from rendering.\n *\n * @private\n */\nBasePrepare.prototype.prepareItems = function prepareItems ()\n{\n this.limiter.beginFrame();\n // Upload the graphics\n while (this.queue.length && this.limiter.allowedToUpload())\n {\n var item = this.queue[0];\n var uploaded = false;\n\n if (item && !item._destroyed)\n {\n for (var i = 0, len = this.uploadHooks.length; i < len; i++)\n {\n if (this.uploadHooks[i](this.uploadHookHelper, item))\n {\n this.queue.shift();\n uploaded = true;\n break;\n }\n }\n }\n\n if (!uploaded)\n {\n this.queue.shift();\n }\n }\n\n // We're finished\n if (!this.queue.length)\n {\n this.ticking = false;\n\n var completes = this.completes.slice(0);\n\n this.completes.length = 0;\n\n for (var i$1 = 0, len$1 = completes.length; i$1 < len$1; i$1++)\n {\n completes[i$1]();\n }\n }\n else\n {\n // if we are not finished, on the next rAF do this again\n Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY);\n }\n};\n\n/**\n * Adds hooks for finding items.\n *\n * @param {Function} addHook - Function call that takes two parameters: `item:*, queue:Array`\n * function must return `true` if it was able to add item to the queue.\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.registerFindHook = function registerFindHook (addHook)\n{\n if (addHook)\n {\n this.addHooks.push(addHook);\n }\n\n return this;\n};\n\n/**\n * Adds hooks for uploading items.\n *\n * @param {Function} uploadHook - Function call that takes two parameters: `prepare:CanvasPrepare, item:*` and\n * function must return `true` if it was able to handle upload of item.\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.registerUploadHook = function registerUploadHook (uploadHook)\n{\n if (uploadHook)\n {\n this.uploadHooks.push(uploadHook);\n }\n\n return this;\n};\n\n/**\n * Manually add an item to the uploading queue.\n *\n * @param {PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text|*} item - Object to\n * add to the queue\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.add = function add (item)\n{\n // Add additional hooks for finding elements on special\n // types of objects that\n for (var i = 0, len = this.addHooks.length; i < len; i++)\n {\n if (this.addHooks[i](item, this.queue))\n {\n break;\n }\n }\n\n // Get children recursively\n if (item instanceof Container)\n {\n for (var i$1 = item.children.length - 1; i$1 >= 0; i$1--)\n {\n this.add(item.children[i$1]);\n }\n }\n\n return this;\n};\n\n/**\n * Destroys the plugin, don't use after this.\n *\n */\nBasePrepare.prototype.destroy = function destroy ()\n{\n if (this.ticking)\n {\n Ticker.system.remove(this.tick, this);\n }\n this.ticking = false;\n this.addHooks = null;\n this.uploadHooks = null;\n this.renderer = null;\n this.completes = null;\n this.queue = null;\n this.limiter = null;\n this.uploadHookHelper = null;\n};\n\n/**\n * Built-in hook to find multiple textures from objects like AnimatedSprites.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findMultipleBaseTextures(item, queue)\n{\n var result = false;\n\n // Objects with multiple textures\n if (item && item._textures && item._textures.length)\n {\n for (var i = 0; i < item._textures.length; i++)\n {\n if (item._textures[i] instanceof Texture)\n {\n var baseTexture = item._textures[i].baseTexture;\n\n if (queue.indexOf(baseTexture) === -1)\n {\n queue.push(baseTexture);\n result = true;\n }\n }\n }\n }\n\n return result;\n}\n\n/**\n * Built-in hook to find BaseTextures from Sprites.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findBaseTexture(item, queue)\n{\n // Objects with textures, like Sprites/Text\n if (item instanceof BaseTexture)\n {\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find textures from objects.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findTexture(item, queue)\n{\n if (item._texture && item._texture instanceof Texture)\n {\n var texture = item._texture.baseTexture;\n\n if (queue.indexOf(texture) === -1)\n {\n queue.push(texture);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to draw PIXI.Text to its texture.\n *\n * @private\n * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction drawText(helper, item)\n{\n if (item instanceof Text)\n {\n // updating text will return early if it is not dirty\n item.updateText(true);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to calculate a text style for a PIXI.Text object.\n *\n * @private\n * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction calculateTextStyle(helper, item)\n{\n if (item instanceof TextStyle)\n {\n var font = item.toFontString();\n\n TextMetrics.measureFont(font);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find Text objects.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Text object was found.\n */\nfunction findText(item, queue)\n{\n if (item instanceof Text)\n {\n // push the text style to prepare it - this can be really expensive\n if (queue.indexOf(item.style) === -1)\n {\n queue.push(item.style);\n }\n // also push the text object so that we can render it (to canvas/texture) if needed\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n // also push the Text's texture for upload to GPU\n var texture = item._texture.baseTexture;\n\n if (queue.indexOf(texture) === -1)\n {\n queue.push(texture);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find TextStyle objects.\n *\n * @private\n * @param {PIXI.TextStyle} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.TextStyle object was found.\n */\nfunction findTextStyle(item, queue)\n{\n if (item instanceof TextStyle)\n {\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * The prepare manager provides functionality to upload content to the GPU.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.prepare`\n *\n * @class\n * @extends PIXI.prepare.BasePrepare\n * @memberof PIXI.prepare\n */\nvar Prepare = /*@__PURE__*/(function (BasePrepare) {\n function Prepare(renderer)\n {\n BasePrepare.call(this, renderer);\n\n this.uploadHookHelper = this.renderer;\n\n // Add textures and graphics to upload\n this.registerFindHook(findGraphics);\n this.registerUploadHook(uploadBaseTextures);\n this.registerUploadHook(uploadGraphics);\n }\n\n if ( BasePrepare ) Prepare.__proto__ = BasePrepare;\n Prepare.prototype = Object.create( BasePrepare && BasePrepare.prototype );\n Prepare.prototype.constructor = Prepare;\n\n return Prepare;\n}(BasePrepare));\n/**\n * Built-in hook to upload PIXI.Texture objects to the GPU.\n *\n * @private\n * @param {PIXI.Renderer} renderer - instance of the webgl renderer\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction uploadBaseTextures(renderer, item)\n{\n if (item instanceof BaseTexture)\n {\n // if the texture already has a GL texture, then the texture has been prepared or rendered\n // before now. If the texture changed, then the changer should be calling texture.update() which\n // reuploads the texture without need for preparing it again\n if (!item._glTextures[renderer.CONTEXT_UID])\n {\n renderer.texture.bind(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to upload PIXI.Graphics to the GPU.\n *\n * @private\n * @param {PIXI.Renderer} renderer - instance of the webgl renderer\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction uploadGraphics(renderer, item)\n{\n if (item instanceof Graphics)\n {\n // if the item is not dirty and already has webgl data, then it got prepared or rendered\n // before now and we shouldn't waste time updating it again\n if (item.dirty || item.clearDirty || !item._webGL[renderer.plugins.graphics.CONTEXT_UID])\n {\n renderer.plugins.graphics.updateGraphics(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find graphics.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Graphics object was found.\n */\nfunction findGraphics(item, queue)\n{\n if (item instanceof Graphics)\n {\n queue.push(item);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * TimeLimiter limits the number of items handled by a {@link PIXI.BasePrepare} to a specified\n * number of milliseconds per frame.\n *\n * @class\n * @memberof PIXI.prepare\n */\nvar TimeLimiter = function TimeLimiter(maxMilliseconds)\n{\n /**\n * The maximum milliseconds that can be spent preparing items each frame.\n * @type {number}\n * @private\n */\n this.maxMilliseconds = maxMilliseconds;\n /**\n * The start time of the current frame.\n * @type {number}\n * @private\n */\n this.frameStart = 0;\n};\n\n/**\n * Resets any counting properties to start fresh on a new frame.\n */\nTimeLimiter.prototype.beginFrame = function beginFrame ()\n{\n this.frameStart = Date.now();\n};\n\n/**\n * Checks to see if another item can be uploaded. This should only be called once per item.\n * @return {boolean} If the item is allowed to be uploaded.\n */\nTimeLimiter.prototype.allowedToUpload = function allowedToUpload ()\n{\n return Date.now() - this.frameStart < this.maxMilliseconds;\n};\n\n/**\n * The prepare namespace provides renderer-specific plugins for pre-rendering DisplayObjects. These plugins are useful for\n * asynchronously preparing and uploading to the GPU assets, textures, graphics waiting to be displayed.\n *\n * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @example\n * // Create a new application\n * const app = new PIXI.Application();\n * document.body.appendChild(app.view);\n *\n * // Don't start rendering right away\n * app.stop();\n *\n * // create a display object\n * const rect = new PIXI.Graphics()\n * .beginFill(0x00ff00)\n * .drawRect(40, 40, 200, 200);\n *\n * // Add to the stage\n * app.stage.addChild(rect);\n *\n * // Don't start rendering until the graphic is uploaded to the GPU\n * app.renderer.plugins.prepare.upload(app.stage, () => {\n * app.start();\n * });\n * @namespace PIXI.prepare\n */\n\nexport { BasePrepare, CountLimiter, Prepare, TimeLimiter };\n//# sourceMappingURL=prepare.es.js.map\n","/*!\n * @pixi/app - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/app is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Container } from '@pixi/display';\nimport { autoDetectRenderer } from '@pixi/core';\n\n/**\n * Convenience class to create a new PIXI application.\n *\n * This class automatically creates the renderer, ticker and root container.\n *\n * @example\n * // Create the application\n * const app = new PIXI.Application();\n *\n * // Add the view to the DOM\n * document.body.appendChild(app.view);\n *\n * // ex, add display objects\n * app.stage.addChild(PIXI.Sprite.from('something.png'));\n *\n * @class\n * @memberof PIXI\n */\nvar Application = function Application(options)\n{\n var this$1 = this;\n\n // The default options\n options = Object.assign({\n forceCanvas: false,\n }, options);\n\n /**\n * WebGL renderer if available, otherwise CanvasRenderer.\n * @member {PIXI.Renderer|PIXI.CanvasRenderer}\n */\n this.renderer = autoDetectRenderer(options);\n\n /**\n * The root display container that's rendered.\n * @member {PIXI.Container}\n */\n this.stage = new Container();\n\n // install plugins here\n Application._plugins.forEach(function (plugin) {\n plugin.init.call(this$1, options);\n });\n};\n\nvar prototypeAccessors = { view: { configurable: true },screen: { configurable: true } };\n\n/**\n * Register a middleware plugin for the application\n * @static\n * @param {PIXI.Application.Plugin} plugin - Plugin being installed\n */\nApplication.registerPlugin = function registerPlugin (plugin)\n{\n Application._plugins.push(plugin);\n};\n\n/**\n * Render the current stage.\n */\nApplication.prototype.render = function render ()\n{\n this.renderer.render(this.stage);\n};\n\n/**\n * Reference to the renderer's canvas element.\n * @member {HTMLCanvasElement}\n * @readonly\n */\nprototypeAccessors.view.get = function ()\n{\n return this.renderer.view;\n};\n\n/**\n * Reference to the renderer's screen rectangle. Its safe to use as `filterArea` or `hitArea` for the whole screen.\n * @member {PIXI.Rectangle}\n * @readonly\n */\nprototypeAccessors.screen.get = function ()\n{\n return this.renderer.screen;\n};\n\n/**\n * Destroy and don't use after this.\n * @param {Boolean} [removeView=false] Automatically remove canvas from DOM.\n * @param {object|boolean} [stageOptions] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [stageOptions.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'stageOptions' will be passed on to those calls.\n * @param {boolean} [stageOptions.texture=false] - Only used for child Sprites if stageOptions.children is set\n * to true. Should it destroy the texture of the child sprite\n * @param {boolean} [stageOptions.baseTexture=false] - Only used for child Sprites if stageOptions.children is set\n * to true. Should it destroy the base texture of the child sprite\n */\nApplication.prototype.destroy = function destroy (removeView, stageOptions)\n{\n var this$1 = this;\n\n // Destroy plugins in the opposite order\n // which they were constructed\n var plugins = Application._plugins.slice(0);\n\n plugins.reverse();\n plugins.forEach(function (plugin) {\n plugin.destroy.call(this$1);\n });\n\n this.stage.destroy(stageOptions);\n this.stage = null;\n\n this.renderer.destroy(removeView);\n this.renderer = null;\n\n this._options = null;\n};\n\nObject.defineProperties( Application.prototype, prototypeAccessors );\n\n/**\n * @memberof PIXI.Application\n * @typedef {object} Plugin\n * @property {function} init - Called when Application is constructed, scoped to Application instance.\n * Passes in `options` as the only argument, which are Application constructor options.\n * @property {function} destroy - Called when destroying Application, scoped to Application instance\n */\n\n/**\n * Collection of installed plugins.\n * @static\n * @private\n * @type {PIXI.Application.Plugin[]}\n */\nApplication._plugins = [];\n\n/**\n * Middleware for for Application's resize functionality\n * @private\n * @class\n */\nvar ResizePlugin = function ResizePlugin () {};\n\nResizePlugin.init = function init (options)\n{\n var this$1 = this;\n\n /**\n * The element or window to resize the application to.\n * @type {Window|HTMLElement}\n * @name resizeTo\n * @memberof PIXI.Application#\n */\n Object.defineProperty(this, 'resizeTo',\n {\n set: function set(dom)\n {\n window.removeEventListener('resize', this.resize);\n this._resizeTo = dom;\n if (dom)\n {\n window.addEventListener('resize', this.resize);\n this.resize();\n }\n },\n get: function get()\n {\n return this._resizeTo;\n },\n });\n\n /**\n * If `resizeTo` is set, calling this function\n * will resize to the width and height of that element.\n * @method PIXI.Application#resize\n */\n this.resize = function () {\n if (this$1._resizeTo)\n {\n // Resize to the window\n if (this$1._resizeTo === window)\n {\n this$1.renderer.resize(\n window.innerWidth,\n window.innerHeight\n );\n }\n // Resize to other HTML entities\n else\n {\n this$1.renderer.resize(\n this$1._resizeTo.clientWidth,\n this$1._resizeTo.clientHeight\n );\n }\n }\n };\n\n // On resize\n this._resizeTo = null;\n this.resizeTo = options.resizeTo || null;\n};\n\n/**\n * Clean up the ticker, scoped to application\n * @static\n * @private\n */\nResizePlugin.destroy = function destroy ()\n{\n this.resizeTo = null;\n this.resize = null;\n};\n\nApplication.registerPlugin(ResizePlugin);\n\nexport { Application };\n//# sourceMappingURL=app.es.js.map\n","'use strict'\n\nmodule.exports = function parseURI (str, opts) {\n opts = opts || {}\n\n var o = {\n key: ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'],\n q: {\n name: 'queryKey',\n parser: /(?:^|&)([^&=]*)=?([^&]*)/g\n },\n parser: {\n strict: /^(?:([^:\\/?#]+):)?(?:\\/\\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\\/?#]*)(?::(\\d*))?))?((((?:[^?#\\/]*\\/)*)([^?#]*))(?:\\?([^#]*))?(?:#(.*))?)/,\n loose: /^(?:(?![^:@]+:[^:@\\/]*@)([^:\\/?#.]+):)?(?:\\/\\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\\/?#]*)(?::(\\d*))?)(((\\/(?:[^?#](?![^?#\\/]*\\.[^?#\\/.]+(?:[?#]|$)))*\\/?)?([^?#\\/]*))(?:\\?([^#]*))?(?:#(.*))?)/\n }\n }\n\n var m = o.parser[opts.strictMode ? 'strict' : 'loose'].exec(str)\n var uri = {}\n var i = 14\n\n while (i--) uri[o.key[i]] = m[i] || ''\n\n uri[o.q.name] = {}\n uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) {\n if ($1) uri[o.q.name][$1] = $2\n })\n\n return uri\n}\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\n\nvar _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }\n\nvar MiniSignalBinding = (function () {\n function MiniSignalBinding(fn, once, thisArg) {\n if (once === undefined) once = false;\n\n _classCallCheck(this, MiniSignalBinding);\n\n this._fn = fn;\n this._once = once;\n this._thisArg = thisArg;\n this._next = this._prev = this._owner = null;\n }\n\n _createClass(MiniSignalBinding, [{\n key: 'detach',\n value: function detach() {\n if (this._owner === null) return false;\n this._owner.detach(this);\n return true;\n }\n }]);\n\n return MiniSignalBinding;\n})();\n\nfunction _addMiniSignalBinding(self, node) {\n if (!self._head) {\n self._head = node;\n self._tail = node;\n } else {\n self._tail._next = node;\n node._prev = self._tail;\n self._tail = node;\n }\n\n node._owner = self;\n\n return node;\n}\n\nvar MiniSignal = (function () {\n function MiniSignal() {\n _classCallCheck(this, MiniSignal);\n\n this._head = this._tail = undefined;\n }\n\n _createClass(MiniSignal, [{\n key: 'handlers',\n value: function handlers() {\n var exists = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0];\n\n var node = this._head;\n\n if (exists) return !!node;\n\n var ee = [];\n\n while (node) {\n ee.push(node);\n node = node._next;\n }\n\n return ee;\n }\n }, {\n key: 'has',\n value: function has(node) {\n if (!(node instanceof MiniSignalBinding)) {\n throw new Error('MiniSignal#has(): First arg must be a MiniSignalBinding object.');\n }\n\n return node._owner === this;\n }\n }, {\n key: 'dispatch',\n value: function dispatch() {\n var node = this._head;\n\n if (!node) return false;\n\n while (node) {\n if (node._once) this.detach(node);\n node._fn.apply(node._thisArg, arguments);\n node = node._next;\n }\n\n return true;\n }\n }, {\n key: 'add',\n value: function add(fn) {\n var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];\n\n if (typeof fn !== 'function') {\n throw new Error('MiniSignal#add(): First arg must be a Function.');\n }\n return _addMiniSignalBinding(this, new MiniSignalBinding(fn, false, thisArg));\n }\n }, {\n key: 'once',\n value: function once(fn) {\n var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];\n\n if (typeof fn !== 'function') {\n throw new Error('MiniSignal#once(): First arg must be a Function.');\n }\n return _addMiniSignalBinding(this, new MiniSignalBinding(fn, true, thisArg));\n }\n }, {\n key: 'detach',\n value: function detach(node) {\n if (!(node instanceof MiniSignalBinding)) {\n throw new Error('MiniSignal#detach(): First arg must be a MiniSignalBinding object.');\n }\n if (node._owner !== this) return this;\n\n if (node._prev) node._prev._next = node._next;\n if (node._next) node._next._prev = node._prev;\n\n if (node === this._head) {\n this._head = node._next;\n if (node._next === null) {\n this._tail = null;\n }\n } else if (node === this._tail) {\n this._tail = node._prev;\n this._tail._next = null;\n }\n\n node._owner = null;\n return this;\n }\n }, {\n key: 'detachAll',\n value: function detachAll() {\n var node = this._head;\n if (!node) return this;\n\n this._head = this._tail = null;\n\n while (node) {\n node._owner = null;\n node = node._next;\n }\n return this;\n }\n }]);\n\n return MiniSignal;\n})();\n\nMiniSignal.MiniSignalBinding = MiniSignalBinding;\n\nexports['default'] = MiniSignal;\nmodule.exports = exports['default'];\n","/*!\n * resource-loader - v3.0.1\n * https://github.com/pixijs/pixi-sound\n * Compiled Tue, 02 Jul 2019 14:06:18 UTC\n *\n * resource-loader is licensed under the MIT license.\n * http://www.opensource.org/licenses/mit-license\n */\nimport parseUri from 'parse-uri';\nimport Signal from 'mini-signals';\n\n/**\n * Smaller version of the async library constructs.\n *\n * @namespace async\n */\n\n/**\n * Noop function\n *\n * @ignore\n * @function\n * @memberof async\n */\nfunction _noop() {}\n/* empty */\n\n/**\n * Iterates an array in series.\n *\n * @memberof async\n * @function eachSeries\n * @param {Array.<*>} array - Array to iterate.\n * @param {function} iterator - Function to call for each element.\n * @param {function} callback - Function to call when done, or on error.\n * @param {boolean} [deferNext=false] - Break synchronous each loop by calling next with a setTimeout of 1.\n */\n\n\nfunction eachSeries(array, iterator, callback, deferNext) {\n var i = 0;\n var len = array.length;\n\n (function next(err) {\n if (err || i === len) {\n if (callback) {\n callback(err);\n }\n\n return;\n }\n\n if (deferNext) {\n setTimeout(function () {\n iterator(array[i++], next);\n }, 1);\n } else {\n iterator(array[i++], next);\n }\n })();\n}\n/**\n * Ensures a function is only called once.\n *\n * @ignore\n * @memberof async\n * @param {function} fn - The function to wrap.\n * @return {function} The wrapping function.\n */\n\nfunction onlyOnce(fn) {\n return function onceWrapper() {\n if (fn === null) {\n throw new Error('Callback was already called.');\n }\n\n var callFn = fn;\n fn = null;\n callFn.apply(this, arguments);\n };\n}\n/**\n * Async queue implementation,\n *\n * @memberof async\n * @function queue\n * @param {function} worker - The worker function to call for each task.\n * @param {number} concurrency - How many workers to run in parrallel.\n * @return {*} The async queue object.\n */\n\n\nfunction queue(worker, concurrency) {\n if (concurrency == null) {\n // eslint-disable-line no-eq-null,eqeqeq\n concurrency = 1;\n } else if (concurrency === 0) {\n throw new Error('Concurrency must not be zero');\n }\n\n var workers = 0;\n var q = {\n _tasks: [],\n concurrency: concurrency,\n saturated: _noop,\n unsaturated: _noop,\n buffer: concurrency / 4,\n empty: _noop,\n drain: _noop,\n error: _noop,\n started: false,\n paused: false,\n push: function push(data, callback) {\n _insert(data, false, callback);\n },\n kill: function kill() {\n workers = 0;\n q.drain = _noop;\n q.started = false;\n q._tasks = [];\n },\n unshift: function unshift(data, callback) {\n _insert(data, true, callback);\n },\n process: function process() {\n while (!q.paused && workers < q.concurrency && q._tasks.length) {\n var task = q._tasks.shift();\n\n if (q._tasks.length === 0) {\n q.empty();\n }\n\n workers += 1;\n\n if (workers === q.concurrency) {\n q.saturated();\n }\n\n worker(task.data, onlyOnce(_next(task)));\n }\n },\n length: function length() {\n return q._tasks.length;\n },\n running: function running() {\n return workers;\n },\n idle: function idle() {\n return q._tasks.length + workers === 0;\n },\n pause: function pause() {\n if (q.paused === true) {\n return;\n }\n\n q.paused = true;\n },\n resume: function resume() {\n if (q.paused === false) {\n return;\n }\n\n q.paused = false; // Need to call q.process once per concurrent\n // worker to preserve full concurrency after pause\n\n for (var w = 1; w <= q.concurrency; w++) {\n q.process();\n }\n }\n };\n\n function _insert(data, insertAtFront, callback) {\n if (callback != null && typeof callback !== 'function') {\n // eslint-disable-line no-eq-null,eqeqeq\n throw new Error('task callback must be a function');\n }\n\n q.started = true;\n\n if (data == null && q.idle()) {\n // eslint-disable-line no-eq-null,eqeqeq\n // call drain immediately if there are no tasks\n setTimeout(function () {\n return q.drain();\n }, 1);\n return;\n }\n\n var item = {\n data: data,\n callback: typeof callback === 'function' ? callback : _noop\n };\n\n if (insertAtFront) {\n q._tasks.unshift(item);\n } else {\n q._tasks.push(item);\n }\n\n setTimeout(function () {\n return q.process();\n }, 1);\n }\n\n function _next(task) {\n return function next() {\n workers -= 1;\n task.callback.apply(task, arguments);\n\n if (arguments[0] != null) {\n // eslint-disable-line no-eq-null,eqeqeq\n q.error(arguments[0], task.data);\n }\n\n if (workers <= q.concurrency - q.buffer) {\n q.unsaturated();\n }\n\n if (q.idle()) {\n q.drain();\n }\n\n q.process();\n };\n }\n\n return q;\n}\n\nvar async = ({\n eachSeries: eachSeries,\n queue: queue\n});\n\n// a simple in-memory cache for resources\nvar cache = {};\n/**\n * A simple in-memory cache for resource.\n *\n * @memberof middleware\n * @function caching\n * @example\n * import { Loader, middleware } from 'resource-loader';\n * const loader = new Loader();\n * loader.use(middleware.caching);\n * @param {Resource} resource - Current Resource\n * @param {function} next - Callback when complete\n */\n\nfunction caching(resource, next) {\n var _this = this;\n\n // if cached, then set data and complete the resource\n if (cache[resource.url]) {\n resource.data = cache[resource.url];\n resource.complete(); // marks resource load complete and stops processing before middlewares\n } // if not cached, wait for complete and store it in the cache.\n else {\n resource.onComplete.once(function () {\n return cache[_this.url] = _this.data;\n });\n }\n\n next();\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nvar useXdr = !!(window.XDomainRequest && !('withCredentials' in new XMLHttpRequest()));\nvar tempAnchor = null; // some status constants\n\nvar STATUS_NONE = 0;\nvar STATUS_OK = 200;\nvar STATUS_EMPTY = 204;\nvar STATUS_IE_BUG_EMPTY = 1223;\nvar STATUS_TYPE_OK = 2; // noop\n\nfunction _noop$1() {}\n/* empty */\n\n/**\n * Manages the state and loading of a resource and all child resources.\n *\n * @class\n */\n\n\nvar Resource =\n/*#__PURE__*/\nfunction () {\n /**\n * Sets the load type to be used for a specific extension.\n *\n * @static\n * @param {string} extname - The extension to set the type for, e.g. \"png\" or \"fnt\"\n * @param {Resource.LOAD_TYPE} loadType - The load type to set it to.\n */\n Resource.setExtensionLoadType = function setExtensionLoadType(extname, loadType) {\n setExtMap(Resource._loadTypeMap, extname, loadType);\n }\n /**\n * Sets the load type to be used for a specific extension.\n *\n * @static\n * @param {string} extname - The extension to set the type for, e.g. \"png\" or \"fnt\"\n * @param {Resource.XHR_RESPONSE_TYPE} xhrType - The xhr type to set it to.\n */\n ;\n\n Resource.setExtensionXhrType = function setExtensionXhrType(extname, xhrType) {\n setExtMap(Resource._xhrTypeMap, extname, xhrType);\n }\n /**\n * @param {string} name - The name of the resource to load.\n * @param {string|string[]} url - The url for this resource, for audio/video loads you can pass\n * an array of sources.\n * @param {object} [options] - The options for the load.\n * @param {string|boolean} [options.crossOrigin] - Is this request cross-origin? Default is to\n * determine automatically.\n * @param {number} [options.timeout=0] - A timeout in milliseconds for the load. If the load takes\n * longer than this time it is cancelled and the load is considered a failure. If this value is\n * set to `0` then there is no explicit timeout.\n * @param {Resource.LOAD_TYPE} [options.loadType=Resource.LOAD_TYPE.XHR] - How should this resource\n * be loaded?\n * @param {Resource.XHR_RESPONSE_TYPE} [options.xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How\n * should the data being loaded be interpreted when using XHR?\n * @param {Resource.IMetadata} [options.metadata] - Extra configuration for middleware and the Resource object.\n */\n ;\n\n function Resource(name, url, options) {\n if (typeof name !== 'string' || typeof url !== 'string') {\n throw new Error('Both name and url are required for constructing a resource.');\n }\n\n options = options || {};\n /**\n * The state flags of this resource.\n *\n * @private\n * @member {number}\n */\n\n this._flags = 0; // set data url flag, needs to be set early for some _determineX checks to work.\n\n this._setFlag(Resource.STATUS_FLAGS.DATA_URL, url.indexOf('data:') === 0);\n /**\n * The name of this resource.\n *\n * @readonly\n * @member {string}\n */\n\n\n this.name = name;\n /**\n * The url used to load this resource.\n *\n * @readonly\n * @member {string}\n */\n\n this.url = url;\n /**\n * The extension used to load this resource.\n *\n * @readonly\n * @member {string}\n */\n\n this.extension = this._getExtension();\n /**\n * The data that was loaded by the resource.\n *\n * @member {any}\n */\n\n this.data = null;\n /**\n * Is this request cross-origin? If unset, determined automatically.\n *\n * @member {string}\n */\n\n this.crossOrigin = options.crossOrigin === true ? 'anonymous' : options.crossOrigin;\n /**\n * A timeout in milliseconds for the load. If the load takes longer than this time\n * it is cancelled and the load is considered a failure. If this value is set to `0`\n * then there is no explicit timeout.\n *\n * @member {number}\n */\n\n this.timeout = options.timeout || 0;\n /**\n * The method of loading to use for this resource.\n *\n * @member {Resource.LOAD_TYPE}\n */\n\n this.loadType = options.loadType || this._determineLoadType();\n /**\n * The type used to load the resource via XHR. If unset, determined automatically.\n *\n * @member {string}\n */\n\n this.xhrType = options.xhrType;\n /**\n * Extra info for middleware, and controlling specifics about how the resource loads.\n *\n * Note that if you pass in a `loadElement`, the Resource class takes ownership of it.\n * Meaning it will modify it as it sees fit.\n *\n * @member {Resource.IMetadata}\n */\n\n this.metadata = options.metadata || {};\n /**\n * The error that occurred while loading (if any).\n *\n * @readonly\n * @member {Error}\n */\n\n this.error = null;\n /**\n * The XHR object that was used to load this resource. This is only set\n * when `loadType` is `Resource.LOAD_TYPE.XHR`.\n *\n * @readonly\n * @member {XMLHttpRequest}\n */\n\n this.xhr = null;\n /**\n * The child resources this resource owns.\n *\n * @readonly\n * @member {Resource[]}\n */\n\n this.children = [];\n /**\n * The resource type.\n *\n * @readonly\n * @member {Resource.TYPE}\n */\n\n this.type = Resource.TYPE.UNKNOWN;\n /**\n * The progress chunk owned by this resource.\n *\n * @readonly\n * @member {number}\n */\n\n this.progressChunk = 0;\n /**\n * The `dequeue` method that will be used a storage place for the async queue dequeue method\n * used privately by the loader.\n *\n * @private\n * @member {function}\n */\n\n this._dequeue = _noop$1;\n /**\n * Used a storage place for the on load binding used privately by the loader.\n *\n * @private\n * @member {function}\n */\n\n this._onLoadBinding = null;\n /**\n * The timer for element loads to check if they timeout.\n *\n * @private\n * @member {number}\n */\n\n this._elementTimer = 0;\n /**\n * The `complete` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundComplete = this.complete.bind(this);\n /**\n * The `_onError` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnError = this._onError.bind(this);\n /**\n * The `_onProgress` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnProgress = this._onProgress.bind(this);\n /**\n * The `_onTimeout` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnTimeout = this._onTimeout.bind(this); // xhr callbacks\n\n this._boundXhrOnError = this._xhrOnError.bind(this);\n this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this);\n this._boundXhrOnAbort = this._xhrOnAbort.bind(this);\n this._boundXhrOnLoad = this._xhrOnLoad.bind(this);\n /**\n * Dispatched when the resource beings to load.\n *\n * The callback looks like {@link Resource.OnStartSignal}.\n *\n * @member {Signal}\n */\n\n this.onStart = new Signal();\n /**\n * Dispatched each time progress of this resource load updates.\n * Not all resources types and loader systems can support this event\n * so sometimes it may not be available. If the resource\n * is being loaded on a modern browser, using XHR, and the remote server\n * properly sets Content-Length headers, then this will be available.\n *\n * The callback looks like {@link Resource.OnProgressSignal}.\n *\n * @member {Signal}\n */\n\n this.onProgress = new Signal();\n /**\n * Dispatched once this resource has loaded, if there was an error it will\n * be in the `error` property.\n *\n * The callback looks like {@link Resource.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onComplete = new Signal();\n /**\n * Dispatched after this resource has had all the *after* middleware run on it.\n *\n * The callback looks like {@link Resource.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onAfterMiddleware = new Signal();\n }\n /**\n * When the resource starts to load.\n *\n * @memberof Resource\n * @callback OnStartSignal\n * @param {Resource} resource - The resource that the event happened on.\n */\n\n /**\n * When the resource reports loading progress.\n *\n * @memberof Resource\n * @callback OnProgressSignal\n * @param {Resource} resource - The resource that the event happened on.\n * @param {number} percentage - The progress of the load in the range [0, 1].\n */\n\n /**\n * When the resource finishes loading.\n *\n * @memberof Resource\n * @callback OnCompleteSignal\n * @param {Resource} resource - The resource that the event happened on.\n */\n\n /**\n * @memberof Resource\n * @typedef {object} IMetadata\n * @property {HTMLImageElement|HTMLAudioElement|HTMLVideoElement} [loadElement=null] - The\n * element to use for loading, instead of creating one.\n * @property {boolean} [skipSource=false] - Skips adding source(s) to the load element. This\n * is useful if you want to pass in a `loadElement` that you already added load sources to.\n * @property {string|string[]} [mimeType] - The mime type to use for the source element\n * of a video/audio elment. If the urls are an array, you can pass this as an array as well\n * where each index is the mime type to use for the corresponding url index.\n */\n\n /**\n * Stores whether or not this url is a data url.\n *\n * @readonly\n * @member {boolean}\n */\n\n\n var _proto = Resource.prototype;\n\n /**\n * Marks the resource as complete.\n *\n */\n _proto.complete = function complete() {\n this._clearEvents();\n\n this._finish();\n }\n /**\n * Aborts the loading of this resource, with an optional message.\n *\n * @param {string} message - The message to use for the error\n */\n ;\n\n _proto.abort = function abort(message) {\n // abort can be called multiple times, ignore subsequent calls.\n if (this.error) {\n return;\n } // store error\n\n\n this.error = new Error(message); // clear events before calling aborts\n\n this._clearEvents(); // abort the actual loading\n\n\n if (this.xhr) {\n this.xhr.abort();\n } else if (this.xdr) {\n this.xdr.abort();\n } else if (this.data) {\n // single source\n if (this.data.src) {\n this.data.src = Resource.EMPTY_GIF;\n } // multi-source\n else {\n while (this.data.firstChild) {\n this.data.removeChild(this.data.firstChild);\n }\n }\n } // done now.\n\n\n this._finish();\n }\n /**\n * Kicks off loading of this resource. This method is asynchronous.\n *\n * @param {Resource.OnCompleteSignal} [cb] - Optional callback to call once the resource is loaded.\n */\n ;\n\n _proto.load = function load(cb) {\n var _this = this;\n\n if (this.isLoading) {\n return;\n }\n\n if (this.isComplete) {\n if (cb) {\n setTimeout(function () {\n return cb(_this);\n }, 1);\n }\n\n return;\n } else if (cb) {\n this.onComplete.once(cb);\n }\n\n this._setFlag(Resource.STATUS_FLAGS.LOADING, true);\n\n this.onStart.dispatch(this); // if unset, determine the value\n\n if (this.crossOrigin === false || typeof this.crossOrigin !== 'string') {\n this.crossOrigin = this._determineCrossOrigin(this.url);\n }\n\n switch (this.loadType) {\n case Resource.LOAD_TYPE.IMAGE:\n this.type = Resource.TYPE.IMAGE;\n\n this._loadElement('image');\n\n break;\n\n case Resource.LOAD_TYPE.AUDIO:\n this.type = Resource.TYPE.AUDIO;\n\n this._loadSourceElement('audio');\n\n break;\n\n case Resource.LOAD_TYPE.VIDEO:\n this.type = Resource.TYPE.VIDEO;\n\n this._loadSourceElement('video');\n\n break;\n\n case Resource.LOAD_TYPE.XHR:\n /* falls through */\n\n default:\n if (useXdr && this.crossOrigin) {\n this._loadXdr();\n } else {\n this._loadXhr();\n }\n\n break;\n }\n }\n /**\n * Checks if the flag is set.\n *\n * @private\n * @param {number} flag - The flag to check.\n * @return {boolean} True if the flag is set.\n */\n ;\n\n _proto._hasFlag = function _hasFlag(flag) {\n return (this._flags & flag) !== 0;\n }\n /**\n * (Un)Sets the flag.\n *\n * @private\n * @param {number} flag - The flag to (un)set.\n * @param {boolean} value - Whether to set or (un)set the flag.\n */\n ;\n\n _proto._setFlag = function _setFlag(flag, value) {\n this._flags = value ? this._flags | flag : this._flags & ~flag;\n }\n /**\n * Clears all the events from the underlying loading source.\n *\n * @private\n */\n ;\n\n _proto._clearEvents = function _clearEvents() {\n clearTimeout(this._elementTimer);\n\n if (this.data && this.data.removeEventListener) {\n this.data.removeEventListener('error', this._boundOnError, false);\n this.data.removeEventListener('load', this._boundComplete, false);\n this.data.removeEventListener('progress', this._boundOnProgress, false);\n this.data.removeEventListener('canplaythrough', this._boundComplete, false);\n }\n\n if (this.xhr) {\n if (this.xhr.removeEventListener) {\n this.xhr.removeEventListener('error', this._boundXhrOnError, false);\n this.xhr.removeEventListener('timeout', this._boundXhrOnTimeout, false);\n this.xhr.removeEventListener('abort', this._boundXhrOnAbort, false);\n this.xhr.removeEventListener('progress', this._boundOnProgress, false);\n this.xhr.removeEventListener('load', this._boundXhrOnLoad, false);\n } else {\n this.xhr.onerror = null;\n this.xhr.ontimeout = null;\n this.xhr.onprogress = null;\n this.xhr.onload = null;\n }\n }\n }\n /**\n * Finalizes the load.\n *\n * @private\n */\n ;\n\n _proto._finish = function _finish() {\n if (this.isComplete) {\n throw new Error('Complete called again for an already completed resource.');\n }\n\n this._setFlag(Resource.STATUS_FLAGS.COMPLETE, true);\n\n this._setFlag(Resource.STATUS_FLAGS.LOADING, false);\n\n this.onComplete.dispatch(this);\n }\n /**\n * Loads this resources using an element that has a single source,\n * like an HTMLImageElement.\n *\n * @private\n * @param {string} type - The type of element to use.\n */\n ;\n\n _proto._loadElement = function _loadElement(type) {\n if (this.metadata.loadElement) {\n this.data = this.metadata.loadElement;\n } else if (type === 'image' && typeof window.Image !== 'undefined') {\n this.data = new Image();\n } else {\n this.data = document.createElement(type);\n }\n\n if (this.crossOrigin) {\n this.data.crossOrigin = this.crossOrigin;\n }\n\n if (!this.metadata.skipSource) {\n this.data.src = this.url;\n }\n\n this.data.addEventListener('error', this._boundOnError, false);\n this.data.addEventListener('load', this._boundComplete, false);\n this.data.addEventListener('progress', this._boundOnProgress, false);\n\n if (this.timeout) {\n this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout);\n }\n }\n /**\n * Loads this resources using an element that has multiple sources,\n * like an HTMLAudioElement or HTMLVideoElement.\n *\n * @private\n * @param {string} type - The type of element to use.\n */\n ;\n\n _proto._loadSourceElement = function _loadSourceElement(type) {\n if (this.metadata.loadElement) {\n this.data = this.metadata.loadElement;\n } else if (type === 'audio' && typeof window.Audio !== 'undefined') {\n this.data = new Audio();\n } else {\n this.data = document.createElement(type);\n }\n\n if (this.data === null) {\n this.abort(\"Unsupported element: \" + type);\n return;\n }\n\n if (this.crossOrigin) {\n this.data.crossOrigin = this.crossOrigin;\n }\n\n if (!this.metadata.skipSource) {\n // support for CocoonJS Canvas+ runtime, lacks document.createElement('source')\n if (navigator.isCocoonJS) {\n this.data.src = Array.isArray(this.url) ? this.url[0] : this.url;\n } else if (Array.isArray(this.url)) {\n var mimeTypes = this.metadata.mimeType;\n\n for (var i = 0; i < this.url.length; ++i) {\n this.data.appendChild(this._createSource(type, this.url[i], Array.isArray(mimeTypes) ? mimeTypes[i] : mimeTypes));\n }\n } else {\n var _mimeTypes = this.metadata.mimeType;\n this.data.appendChild(this._createSource(type, this.url, Array.isArray(_mimeTypes) ? _mimeTypes[0] : _mimeTypes));\n }\n }\n\n this.data.addEventListener('error', this._boundOnError, false);\n this.data.addEventListener('load', this._boundComplete, false);\n this.data.addEventListener('progress', this._boundOnProgress, false);\n this.data.addEventListener('canplaythrough', this._boundComplete, false);\n this.data.load();\n\n if (this.timeout) {\n this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout);\n }\n }\n /**\n * Loads this resources using an XMLHttpRequest.\n *\n * @private\n */\n ;\n\n _proto._loadXhr = function _loadXhr() {\n // if unset, determine the value\n if (typeof this.xhrType !== 'string') {\n this.xhrType = this._determineXhrType();\n }\n\n var xhr = this.xhr = new XMLHttpRequest(); // set the request type and url\n\n xhr.open('GET', this.url, true);\n xhr.timeout = this.timeout; // load json as text and parse it ourselves. We do this because some browsers\n // *cough* safari *cough* can't deal with it.\n\n if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON || this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) {\n xhr.responseType = Resource.XHR_RESPONSE_TYPE.TEXT;\n } else {\n xhr.responseType = this.xhrType;\n }\n\n xhr.addEventListener('error', this._boundXhrOnError, false);\n xhr.addEventListener('timeout', this._boundXhrOnTimeout, false);\n xhr.addEventListener('abort', this._boundXhrOnAbort, false);\n xhr.addEventListener('progress', this._boundOnProgress, false);\n xhr.addEventListener('load', this._boundXhrOnLoad, false);\n xhr.send();\n }\n /**\n * Loads this resources using an XDomainRequest. This is here because we need to support IE9 (gross).\n *\n * @private\n */\n ;\n\n _proto._loadXdr = function _loadXdr() {\n // if unset, determine the value\n if (typeof this.xhrType !== 'string') {\n this.xhrType = this._determineXhrType();\n }\n\n var xdr = this.xhr = new XDomainRequest(); // eslint-disable-line no-undef\n // XDomainRequest has a few quirks. Occasionally it will abort requests\n // A way to avoid this is to make sure ALL callbacks are set even if not used\n // More info here: http://stackoverflow.com/questions/15786966/xdomainrequest-aborts-post-on-ie-9\n\n xdr.timeout = this.timeout || 5000; // XDR needs a timeout value or it breaks in IE9\n\n xdr.onerror = this._boundXhrOnError;\n xdr.ontimeout = this._boundXhrOnTimeout;\n xdr.onprogress = this._boundOnProgress;\n xdr.onload = this._boundXhrOnLoad;\n xdr.open('GET', this.url, true); // Note: The xdr.send() call is wrapped in a timeout to prevent an\n // issue with the interface where some requests are lost if multiple\n // XDomainRequests are being sent at the same time.\n // Some info here: https://github.com/photonstorm/phaser/issues/1248\n\n setTimeout(function () {\n return xdr.send();\n }, 1);\n }\n /**\n * Creates a source used in loading via an element.\n *\n * @private\n * @param {string} type - The element type (video or audio).\n * @param {string} url - The source URL to load from.\n * @param {string} [mime] - The mime type of the video\n * @return {HTMLSourceElement} The source element.\n */\n ;\n\n _proto._createSource = function _createSource(type, url, mime) {\n if (!mime) {\n mime = type + \"/\" + this._getExtension(url);\n }\n\n var source = document.createElement('source');\n source.src = url;\n source.type = mime;\n return source;\n }\n /**\n * Called if a load errors out.\n *\n * @param {Event} event - The error event from the element that emits it.\n * @private\n */\n ;\n\n _proto._onError = function _onError(event) {\n this.abort(\"Failed to load element using: \" + event.target.nodeName);\n }\n /**\n * Called if a load progress event fires for an element or xhr/xdr.\n *\n * @private\n * @param {XMLHttpRequestProgressEvent|Event} event - Progress event.\n */\n ;\n\n _proto._onProgress = function _onProgress(event) {\n if (event && event.lengthComputable) {\n this.onProgress.dispatch(this, event.loaded / event.total);\n }\n }\n /**\n * Called if a timeout event fires for an element.\n *\n * @private\n */\n ;\n\n _proto._onTimeout = function _onTimeout() {\n this.abort(\"Load timed out.\");\n }\n /**\n * Called if an error event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnError = function _xhrOnError() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request failed. Status: \" + xhr.status + \", text: \\\"\" + xhr.statusText + \"\\\"\");\n }\n /**\n * Called if an error event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnTimeout = function _xhrOnTimeout() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request timed out.\");\n }\n /**\n * Called if an abort event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnAbort = function _xhrOnAbort() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request was aborted by the user.\");\n }\n /**\n * Called when data successfully loads from an xhr/xdr request.\n *\n * @private\n * @param {XMLHttpRequestLoadEvent|Event} event - Load event\n */\n ;\n\n _proto._xhrOnLoad = function _xhrOnLoad() {\n var xhr = this.xhr;\n var text = '';\n var status = typeof xhr.status === 'undefined' ? STATUS_OK : xhr.status; // XDR has no `.status`, assume 200.\n // responseText is accessible only if responseType is '' or 'text' and on older browsers\n\n if (xhr.responseType === '' || xhr.responseType === 'text' || typeof xhr.responseType === 'undefined') {\n text = xhr.responseText;\n } // status can be 0 when using the `file://` protocol so we also check if a response is set.\n // If it has a response, we assume 200; otherwise a 0 status code with no contents is an aborted request.\n\n\n if (status === STATUS_NONE && (text.length > 0 || xhr.responseType === Resource.XHR_RESPONSE_TYPE.BUFFER)) {\n status = STATUS_OK;\n } // handle IE9 bug: http://stackoverflow.com/questions/10046972/msie-returns-status-code-of-1223-for-ajax-request\n else if (status === STATUS_IE_BUG_EMPTY) {\n status = STATUS_EMPTY;\n }\n\n var statusType = status / 100 | 0;\n\n if (statusType === STATUS_TYPE_OK) {\n // if text, just return it\n if (this.xhrType === Resource.XHR_RESPONSE_TYPE.TEXT) {\n this.data = text;\n this.type = Resource.TYPE.TEXT;\n } // if json, parse into json object\n else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON) {\n try {\n this.data = JSON.parse(text);\n this.type = Resource.TYPE.JSON;\n } catch (e) {\n this.abort(\"Error trying to parse loaded json: \" + e);\n return;\n }\n } // if xml, parse into an xml document or div element\n else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) {\n try {\n if (window.DOMParser) {\n var domparser = new DOMParser();\n this.data = domparser.parseFromString(text, 'text/xml');\n } else {\n var div = document.createElement('div');\n div.innerHTML = text;\n this.data = div;\n }\n\n this.type = Resource.TYPE.XML;\n } catch (e) {\n this.abort(\"Error trying to parse loaded xml: \" + e);\n return;\n }\n } // other types just return the response\n else {\n this.data = xhr.response || text;\n }\n } else {\n this.abort(\"[\" + xhr.status + \"] \" + xhr.statusText + \": \" + xhr.responseURL);\n return;\n }\n\n this.complete();\n }\n /**\n * Sets the `crossOrigin` property for this resource based on if the url\n * for this resource is cross-origin. If crossOrigin was manually set, this\n * function does nothing.\n *\n * @private\n * @param {string} url - The url to test.\n * @param {object} [loc=window.location] - The location object to test against.\n * @return {string} The crossOrigin value to use (or empty string for none).\n */\n ;\n\n _proto._determineCrossOrigin = function _determineCrossOrigin(url, loc) {\n // data: and javascript: urls are considered same-origin\n if (url.indexOf('data:') === 0) {\n return '';\n } // A sandboxed iframe without the 'allow-same-origin' attribute will have a special\n // origin designed not to match window.location.origin, and will always require\n // crossOrigin requests regardless of whether the location matches.\n\n\n if (window.origin !== window.location.origin) {\n return 'anonymous';\n } // default is window.location\n\n\n loc = loc || window.location;\n\n if (!tempAnchor) {\n tempAnchor = document.createElement('a');\n } // let the browser determine the full href for the url of this resource and then\n // parse with the node url lib, we can't use the properties of the anchor element\n // because they don't work in IE9 :(\n\n\n tempAnchor.href = url;\n url = parseUri(tempAnchor.href, {\n strictMode: true\n });\n var samePort = !url.port && loc.port === '' || url.port === loc.port;\n var protocol = url.protocol ? url.protocol + \":\" : ''; // if cross origin\n\n if (url.host !== loc.hostname || !samePort || protocol !== loc.protocol) {\n return 'anonymous';\n }\n\n return '';\n }\n /**\n * Determines the responseType of an XHR request based on the extension of the\n * resource being loaded.\n *\n * @private\n * @return {Resource.XHR_RESPONSE_TYPE} The responseType to use.\n */\n ;\n\n _proto._determineXhrType = function _determineXhrType() {\n return Resource._xhrTypeMap[this.extension] || Resource.XHR_RESPONSE_TYPE.TEXT;\n }\n /**\n * Determines the loadType of a resource based on the extension of the\n * resource being loaded.\n *\n * @private\n * @return {Resource.LOAD_TYPE} The loadType to use.\n */\n ;\n\n _proto._determineLoadType = function _determineLoadType() {\n return Resource._loadTypeMap[this.extension] || Resource.LOAD_TYPE.XHR;\n }\n /**\n * Extracts the extension (sans '.') of the file being loaded by the resource.\n *\n * @private\n * @return {string} The extension.\n */\n ;\n\n _proto._getExtension = function _getExtension() {\n var url = this.url;\n var ext = '';\n\n if (this.isDataUrl) {\n var slashIndex = url.indexOf('/');\n ext = url.substring(slashIndex + 1, url.indexOf(';', slashIndex));\n } else {\n var queryStart = url.indexOf('?');\n var hashStart = url.indexOf('#');\n var index = Math.min(queryStart > -1 ? queryStart : url.length, hashStart > -1 ? hashStart : url.length);\n url = url.substring(0, index);\n ext = url.substring(url.lastIndexOf('.') + 1);\n }\n\n return ext.toLowerCase();\n }\n /**\n * Determines the mime type of an XHR request based on the responseType of\n * resource being loaded.\n *\n * @private\n * @param {Resource.XHR_RESPONSE_TYPE} type - The type to get a mime type for.\n * @return {string} The mime type to use.\n */\n ;\n\n _proto._getMimeFromXhrType = function _getMimeFromXhrType(type) {\n switch (type) {\n case Resource.XHR_RESPONSE_TYPE.BUFFER:\n return 'application/octet-binary';\n\n case Resource.XHR_RESPONSE_TYPE.BLOB:\n return 'application/blob';\n\n case Resource.XHR_RESPONSE_TYPE.DOCUMENT:\n return 'application/xml';\n\n case Resource.XHR_RESPONSE_TYPE.JSON:\n return 'application/json';\n\n case Resource.XHR_RESPONSE_TYPE.DEFAULT:\n case Resource.XHR_RESPONSE_TYPE.TEXT:\n /* falls through */\n\n default:\n return 'text/plain';\n }\n };\n\n _createClass(Resource, [{\n key: \"isDataUrl\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.DATA_URL);\n }\n /**\n * Describes if this resource has finished loading. Is true when the resource has completely\n * loaded.\n *\n * @readonly\n * @member {boolean}\n */\n\n }, {\n key: \"isComplete\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.COMPLETE);\n }\n /**\n * Describes if this resource is currently loading. Is true when the resource starts loading,\n * and is false again when complete.\n *\n * @readonly\n * @member {boolean}\n */\n\n }, {\n key: \"isLoading\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.LOADING);\n }\n }]);\n\n return Resource;\n}();\n/**\n * The types of resources a resource could represent.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\n\nResource.STATUS_FLAGS = {\n NONE: 0,\n DATA_URL: 1 << 0,\n COMPLETE: 1 << 1,\n LOADING: 1 << 2\n};\n/**\n * The types of resources a resource could represent.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\nResource.TYPE = {\n UNKNOWN: 0,\n JSON: 1,\n XML: 2,\n IMAGE: 3,\n AUDIO: 4,\n VIDEO: 5,\n TEXT: 6\n};\n/**\n * The types of loading a resource can use.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\nResource.LOAD_TYPE = {\n /** Uses XMLHttpRequest to load the resource. */\n XHR: 1,\n\n /** Uses an `Image` object to load the resource. */\n IMAGE: 2,\n\n /** Uses an `Audio` object to load the resource. */\n AUDIO: 3,\n\n /** Uses a `Video` object to load the resource. */\n VIDEO: 4\n};\n/**\n * The XHR ready states, used internally.\n *\n * @static\n * @readonly\n * @enum {string}\n */\n\nResource.XHR_RESPONSE_TYPE = {\n /** string */\n DEFAULT: 'text',\n\n /** ArrayBuffer */\n BUFFER: 'arraybuffer',\n\n /** Blob */\n BLOB: 'blob',\n\n /** Document */\n DOCUMENT: 'document',\n\n /** Object */\n JSON: 'json',\n\n /** String */\n TEXT: 'text'\n};\nResource._loadTypeMap = {\n // images\n gif: Resource.LOAD_TYPE.IMAGE,\n png: Resource.LOAD_TYPE.IMAGE,\n bmp: Resource.LOAD_TYPE.IMAGE,\n jpg: Resource.LOAD_TYPE.IMAGE,\n jpeg: Resource.LOAD_TYPE.IMAGE,\n tif: Resource.LOAD_TYPE.IMAGE,\n tiff: Resource.LOAD_TYPE.IMAGE,\n webp: Resource.LOAD_TYPE.IMAGE,\n tga: Resource.LOAD_TYPE.IMAGE,\n svg: Resource.LOAD_TYPE.IMAGE,\n 'svg+xml': Resource.LOAD_TYPE.IMAGE,\n // for SVG data urls\n // audio\n mp3: Resource.LOAD_TYPE.AUDIO,\n ogg: Resource.LOAD_TYPE.AUDIO,\n wav: Resource.LOAD_TYPE.AUDIO,\n // videos\n mp4: Resource.LOAD_TYPE.VIDEO,\n webm: Resource.LOAD_TYPE.VIDEO\n};\nResource._xhrTypeMap = {\n // xml\n xhtml: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n html: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n htm: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n xml: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n tmx: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n svg: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n // This was added to handle Tiled Tileset XML, but .tsx is also a TypeScript React Component.\n // Since it is way less likely for people to be loading TypeScript files instead of Tiled files,\n // this should probably be fine.\n tsx: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n // images\n gif: Resource.XHR_RESPONSE_TYPE.BLOB,\n png: Resource.XHR_RESPONSE_TYPE.BLOB,\n bmp: Resource.XHR_RESPONSE_TYPE.BLOB,\n jpg: Resource.XHR_RESPONSE_TYPE.BLOB,\n jpeg: Resource.XHR_RESPONSE_TYPE.BLOB,\n tif: Resource.XHR_RESPONSE_TYPE.BLOB,\n tiff: Resource.XHR_RESPONSE_TYPE.BLOB,\n webp: Resource.XHR_RESPONSE_TYPE.BLOB,\n tga: Resource.XHR_RESPONSE_TYPE.BLOB,\n // json\n json: Resource.XHR_RESPONSE_TYPE.JSON,\n // text\n text: Resource.XHR_RESPONSE_TYPE.TEXT,\n txt: Resource.XHR_RESPONSE_TYPE.TEXT,\n // fonts\n ttf: Resource.XHR_RESPONSE_TYPE.BUFFER,\n otf: Resource.XHR_RESPONSE_TYPE.BUFFER\n}; // We can't set the `src` attribute to empty string, so on abort we set it to this 1px transparent gif\n\nResource.EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==';\n/**\n * Quick helper to set a value on one of the extension maps. Ensures there is no\n * dot at the start of the extension.\n *\n * @ignore\n * @param {object} map - The map to set on.\n * @param {string} extname - The extension (or key) to set.\n * @param {number} val - The value to set.\n */\n\nfunction setExtMap(map, extname, val) {\n if (extname && extname.indexOf('.') === 0) {\n extname = extname.substring(1);\n }\n\n if (!extname) {\n return;\n }\n\n map[extname] = val;\n}\n/**\n * Quick helper to get string xhr type.\n *\n * @ignore\n * @param {XMLHttpRequest|XDomainRequest} xhr - The request to check.\n * @return {string} The type.\n */\n\n\nfunction reqType(xhr) {\n return xhr.toString().replace('object ', '');\n}\n\nvar _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\n/**\n * Encodes binary into base64.\n *\n * @function encodeBinary\n * @param {string} input The input data to encode.\n * @returns {string} The encoded base64 string\n */\n\nfunction encodeBinary(input) {\n var output = '';\n var inx = 0;\n\n while (inx < input.length) {\n // Fill byte buffer array\n var bytebuffer = [0, 0, 0];\n var encodedCharIndexes = [0, 0, 0, 0];\n\n for (var jnx = 0; jnx < bytebuffer.length; ++jnx) {\n if (inx < input.length) {\n // throw away high-order byte, as documented at:\n // https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data\n bytebuffer[jnx] = input.charCodeAt(inx++) & 0xff;\n } else {\n bytebuffer[jnx] = 0;\n }\n } // Get each encoded character, 6 bits at a time\n // index 1: first 6 bits\n\n\n encodedCharIndexes[0] = bytebuffer[0] >> 2; // index 2: second 6 bits (2 least significant bits from input byte 1 + 4 most significant bits from byte 2)\n\n encodedCharIndexes[1] = (bytebuffer[0] & 0x3) << 4 | bytebuffer[1] >> 4; // index 3: third 6 bits (4 least significant bits from input byte 2 + 2 most significant bits from byte 3)\n\n encodedCharIndexes[2] = (bytebuffer[1] & 0x0f) << 2 | bytebuffer[2] >> 6; // index 3: forth 6 bits (6 least significant bits from input byte 3)\n\n encodedCharIndexes[3] = bytebuffer[2] & 0x3f; // Determine whether padding happened, and adjust accordingly\n\n var paddingBytes = inx - (input.length - 1);\n\n switch (paddingBytes) {\n case 2:\n // Set last 2 characters to padding char\n encodedCharIndexes[3] = 64;\n encodedCharIndexes[2] = 64;\n break;\n\n case 1:\n // Set last character to padding char\n encodedCharIndexes[3] = 64;\n break;\n\n default:\n break;\n // No padding - proceed\n } // Now we will grab each appropriate character out of our keystring\n // based on our index array and append it to the output string\n\n\n for (var _jnx = 0; _jnx < encodedCharIndexes.length; ++_jnx) {\n output += _keyStr.charAt(encodedCharIndexes[_jnx]);\n }\n }\n\n return output;\n}\n\nvar Url = window.URL || window.webkitURL;\n/**\n * A middleware for transforming XHR loaded Blobs into more useful objects\n *\n * @memberof middleware\n * @function parsing\n * @example\n * import { Loader, middleware } from 'resource-loader';\n * const loader = new Loader();\n * loader.use(middleware.parsing);\n * @param {Resource} resource - Current Resource\n * @param {function} next - Callback when complete\n */\n\nfunction parsing(resource, next) {\n if (!resource.data) {\n next();\n return;\n } // if this was an XHR load of a blob\n\n\n if (resource.xhr && resource.xhrType === Resource.XHR_RESPONSE_TYPE.BLOB) {\n // if there is no blob support we probably got a binary string back\n if (!window.Blob || typeof resource.data === 'string') {\n var type = resource.xhr.getResponseHeader('content-type'); // this is an image, convert the binary string into a data url\n\n if (type && type.indexOf('image') === 0) {\n resource.data = new Image();\n resource.data.src = \"data:\" + type + \";base64,\" + encodeBinary(resource.xhr.responseText);\n resource.type = Resource.TYPE.IMAGE; // wait until the image loads and then callback\n\n resource.data.onload = function () {\n resource.data.onload = null;\n next();\n }; // next will be called on load\n\n\n return;\n }\n } // if content type says this is an image, then we should transform the blob into an Image object\n else if (resource.data.type.indexOf('image') === 0) {\n var src = Url.createObjectURL(resource.data);\n resource.blob = resource.data;\n resource.data = new Image();\n resource.data.src = src;\n resource.type = Resource.TYPE.IMAGE; // cleanup the no longer used blob after the image loads\n // TODO: Is this correct? Will the image be invalid after revoking?\n\n resource.data.onload = function () {\n Url.revokeObjectURL(src);\n resource.data.onload = null;\n next();\n }; // next will be called on load.\n\n\n return;\n }\n }\n\n next();\n}\n\n/**\n * @namespace middleware\n */\n\nvar index = ({\n caching: caching,\n parsing: parsing\n});\n\nvar MAX_PROGRESS = 100;\nvar rgxExtractUrlHash = /(#[\\w-]+)?$/;\n/**\n * Manages the state and loading of multiple resources to load.\n *\n * @class\n */\n\nvar Loader =\n/*#__PURE__*/\nfunction () {\n /**\n * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader.\n * @param {number} [concurrency=10] - The number of resources to load concurrently.\n */\n function Loader(baseUrl, concurrency) {\n var _this = this;\n\n if (baseUrl === void 0) {\n baseUrl = '';\n }\n\n if (concurrency === void 0) {\n concurrency = 10;\n }\n\n /**\n * The base url for all resources loaded by this loader.\n *\n * @member {string}\n */\n this.baseUrl = baseUrl;\n /**\n * The progress percent of the loader going through the queue.\n *\n * @member {number}\n * @default 0\n */\n\n this.progress = 0;\n /**\n * Loading state of the loader, true if it is currently loading resources.\n *\n * @member {boolean}\n * @default false\n */\n\n this.loading = false;\n /**\n * A querystring to append to every URL added to the loader.\n *\n * This should be a valid query string *without* the question-mark (`?`). The loader will\n * also *not* escape values for you. Make sure to escape your parameters with\n * [`encodeURIComponent`](https://mdn.io/encodeURIComponent) before assigning this property.\n *\n * @example\n * const loader = new Loader();\n *\n * loader.defaultQueryString = 'user=me&password=secret';\n *\n * // This will request 'image.png?user=me&password=secret'\n * loader.add('image.png').load();\n *\n * loader.reset();\n *\n * // This will request 'image.png?v=1&user=me&password=secret'\n * loader.add('iamge.png?v=1').load();\n *\n * @member {string}\n * @default ''\n */\n\n this.defaultQueryString = '';\n /**\n * The middleware to run before loading each resource.\n *\n * @private\n * @member {function[]}\n */\n\n this._beforeMiddleware = [];\n /**\n * The middleware to run after loading each resource.\n *\n * @private\n * @member {function[]}\n */\n\n this._afterMiddleware = [];\n /**\n * The tracks the resources we are currently completing parsing for.\n *\n * @private\n * @member {Resource[]}\n */\n\n this._resourcesParsing = [];\n /**\n * The `_loadResource` function bound with this object context.\n *\n * @private\n * @member {function}\n * @param {Resource} r - The resource to load\n * @param {Function} d - The dequeue function\n * @return {undefined}\n */\n\n this._boundLoadResource = function (r, d) {\n return _this._loadResource(r, d);\n };\n /**\n * The resources waiting to be loaded.\n *\n * @private\n * @member {Resource[]}\n */\n\n\n this._queue = queue(this._boundLoadResource, concurrency);\n\n this._queue.pause();\n /**\n * All the resources for this loader keyed by name.\n *\n * @member {object}\n */\n\n\n this.resources = {};\n /**\n * Dispatched once per loaded or errored resource.\n *\n * The callback looks like {@link Loader.OnProgressSignal}.\n *\n * @member {Signal}\n */\n\n this.onProgress = new Signal();\n /**\n * Dispatched once per errored resource.\n *\n * The callback looks like {@link Loader.OnErrorSignal}.\n *\n * @member {Signal}\n */\n\n this.onError = new Signal();\n /**\n * Dispatched once per loaded resource.\n *\n * The callback looks like {@link Loader.OnLoadSignal}.\n *\n * @member {Signal}\n */\n\n this.onLoad = new Signal();\n /**\n * Dispatched when the loader begins to process the queue.\n *\n * The callback looks like {@link Loader.OnStartSignal}.\n *\n * @member {Signal}\n */\n\n this.onStart = new Signal();\n /**\n * Dispatched when the queued resources all load.\n *\n * The callback looks like {@link Loader.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onComplete = new Signal(); // Add default before middleware\n\n for (var i = 0; i < Loader._defaultBeforeMiddleware.length; ++i) {\n this.pre(Loader._defaultBeforeMiddleware[i]);\n } // Add default after middleware\n\n\n for (var _i = 0; _i < Loader._defaultAfterMiddleware.length; ++_i) {\n this.use(Loader._defaultAfterMiddleware[_i]);\n }\n }\n /**\n * When the progress changes the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnProgressSignal\n * @param {Loader} loader - The loader the progress is advancing on.\n * @param {Resource} resource - The resource that has completed or failed to cause the progress to advance.\n */\n\n /**\n * When an error occurrs the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnErrorSignal\n * @param {Loader} loader - The loader the error happened in.\n * @param {Resource} resource - The resource that caused the error.\n */\n\n /**\n * When a load completes the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnLoadSignal\n * @param {Loader} loader - The loader that laoded the resource.\n * @param {Resource} resource - The resource that has completed loading.\n */\n\n /**\n * When the loader starts loading resources it dispatches this callback.\n *\n * @memberof Loader\n * @callback OnStartSignal\n * @param {Loader} loader - The loader that has started loading resources.\n */\n\n /**\n * When the loader completes loading resources it dispatches this callback.\n *\n * @memberof Loader\n * @callback OnCompleteSignal\n * @param {Loader} loader - The loader that has finished loading resources.\n */\n\n /**\n * Options for a call to `.add()`.\n *\n * @see Loader#add\n *\n * @typedef {object} IAddOptions\n * @property {string} [name] - The name of the resource to load, if not passed the url is used.\n * @property {string} [key] - Alias for `name`.\n * @property {string} [url] - The url for this resource, relative to the baseUrl of this loader.\n * @property {string|boolean} [crossOrigin] - Is this request cross-origin? Default is to\n * determine automatically.\n * @property {number} [timeout=0] - A timeout in milliseconds for the load. If the load takes\n * longer than this time it is cancelled and the load is considered a failure. If this value is\n * set to `0` then there is no explicit timeout.\n * @property {Resource.LOAD_TYPE} [loadType=Resource.LOAD_TYPE.XHR] - How should this resource\n * be loaded?\n * @property {Resource.XHR_RESPONSE_TYPE} [xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How\n * should the data being loaded be interpreted when using XHR?\n * @property {Resource.OnCompleteSignal} [onComplete] - Callback to add an an onComplete signal istener.\n * @property {Resource.OnCompleteSignal} [callback] - Alias for `onComplete`.\n * @property {Resource.IMetadata} [metadata] - Extra configuration for middleware and the Resource object.\n */\n\n /* eslint-disable require-jsdoc,valid-jsdoc */\n\n /**\n * Adds a resource (or multiple resources) to the loader queue.\n *\n * This function can take a wide variety of different parameters. The only thing that is always\n * required the url to load. All the following will work:\n *\n * ```js\n * loader\n * // normal param syntax\n * .add('key', 'http://...', function () {})\n * .add('http://...', function () {})\n * .add('http://...')\n *\n * // object syntax\n * .add({\n * name: 'key2',\n * url: 'http://...'\n * }, function () {})\n * .add({\n * url: 'http://...'\n * }, function () {})\n * .add({\n * name: 'key3',\n * url: 'http://...'\n * onComplete: function () {}\n * })\n * .add({\n * url: 'https://...',\n * onComplete: function () {},\n * crossOrigin: true\n * })\n *\n * // you can also pass an array of objects or urls or both\n * .add([\n * { name: 'key4', url: 'http://...', onComplete: function () {} },\n * { url: 'http://...', onComplete: function () {} },\n * 'http://...'\n * ])\n *\n * // and you can use both params and options\n * .add('key', 'http://...', { crossOrigin: true }, function () {})\n * .add('http://...', { crossOrigin: true }, function () {});\n * ```\n *\n * @function\n * @variation 1\n * @param {string} name - The name of the resource to load.\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 2\n * @param {string} name - The name of the resource to load.\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {IAddOptions} [options] - The options for the load.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 3\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 4\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {IAddOptions} [options] - The options for the load.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 5\n * @param {IAddOptions} options - The options for the load. This object must contain a `url` property.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 6\n * @param {Array} resources - An array of resources to load, where each is\n * either an object with the options or a string url. If you pass an object, it must contain a `url` property.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n\n var _proto = Loader.prototype;\n\n _proto.add = function add(name, url, options, cb) {\n // special case of an array of objects or urls\n if (Array.isArray(name)) {\n for (var i = 0; i < name.length; ++i) {\n this.add(name[i]);\n }\n\n return this;\n } // if an object is passed instead of params\n\n\n if (typeof name === 'object') {\n cb = url || name.callback || name.onComplete;\n options = name;\n url = name.url;\n name = name.name || name.key || name.url;\n } // case where no name is passed shift all args over by one.\n\n\n if (typeof url !== 'string') {\n cb = options;\n options = url;\n url = name;\n } // now that we shifted make sure we have a proper url.\n\n\n if (typeof url !== 'string') {\n throw new Error('No url passed to add resource to loader.');\n } // options are optional so people might pass a function and no options\n\n\n if (typeof options === 'function') {\n cb = options;\n options = null;\n } // if loading already you can only add resources that have a parent.\n\n\n if (this.loading && (!options || !options.parentResource)) {\n throw new Error('Cannot add resources while the loader is running.');\n } // check if resource already exists.\n\n\n if (this.resources[name]) {\n throw new Error(\"Resource named \\\"\" + name + \"\\\" already exists.\");\n } // add base url if this isn't an absolute url\n\n\n url = this._prepareUrl(url); // create the store the resource\n\n this.resources[name] = new Resource(name, url, options);\n\n if (typeof cb === 'function') {\n this.resources[name].onAfterMiddleware.once(cb);\n } // if actively loading, make sure to adjust progress chunks for that parent and its children\n\n\n if (this.loading) {\n var parent = options.parentResource;\n var incompleteChildren = [];\n\n for (var _i2 = 0; _i2 < parent.children.length; ++_i2) {\n if (!parent.children[_i2].isComplete) {\n incompleteChildren.push(parent.children[_i2]);\n }\n }\n\n var fullChunk = parent.progressChunk * (incompleteChildren.length + 1); // +1 for parent\n\n var eachChunk = fullChunk / (incompleteChildren.length + 2); // +2 for parent & new child\n\n parent.children.push(this.resources[name]);\n parent.progressChunk = eachChunk;\n\n for (var _i3 = 0; _i3 < incompleteChildren.length; ++_i3) {\n incompleteChildren[_i3].progressChunk = eachChunk;\n }\n\n this.resources[name].progressChunk = eachChunk;\n } // add the resource to the queue\n\n\n this._queue.push(this.resources[name]);\n\n return this;\n }\n /* eslint-enable require-jsdoc,valid-jsdoc */\n\n /**\n * Sets up a middleware function that will run *before* the\n * resource is loaded.\n *\n * @param {function} fn - The middleware function to register.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.pre = function pre(fn) {\n this._beforeMiddleware.push(fn);\n\n return this;\n }\n /**\n * Sets up a middleware function that will run *after* the\n * resource is loaded.\n *\n * @param {function} fn - The middleware function to register.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.use = function use(fn) {\n this._afterMiddleware.push(fn);\n\n return this;\n }\n /**\n * Resets the queue of the loader to prepare for a new load.\n *\n * @return {this} Returns itself.\n */\n ;\n\n _proto.reset = function reset() {\n this.progress = 0;\n this.loading = false;\n\n this._queue.kill();\n\n this._queue.pause(); // abort all resource loads\n\n\n for (var k in this.resources) {\n var res = this.resources[k];\n\n if (res._onLoadBinding) {\n res._onLoadBinding.detach();\n }\n\n if (res.isLoading) {\n res.abort();\n }\n }\n\n this.resources = {};\n return this;\n }\n /**\n * Starts loading the queued resources.\n *\n * @param {function} [cb] - Optional callback that will be bound to the `complete` event.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.load = function load(cb) {\n // register complete callback if they pass one\n if (typeof cb === 'function') {\n this.onComplete.once(cb);\n } // if the queue has already started we are done here\n\n\n if (this.loading) {\n return this;\n }\n\n if (this._queue.idle()) {\n this._onStart();\n\n this._onComplete();\n } else {\n // distribute progress chunks\n var numTasks = this._queue._tasks.length;\n var chunk = MAX_PROGRESS / numTasks;\n\n for (var i = 0; i < this._queue._tasks.length; ++i) {\n this._queue._tasks[i].data.progressChunk = chunk;\n } // notify we are starting\n\n\n this._onStart(); // start loading\n\n\n this._queue.resume();\n }\n\n return this;\n }\n /**\n * The number of resources to load concurrently.\n *\n * @member {number}\n * @default 10\n */\n ;\n\n /**\n * Prepares a url for usage based on the configuration of this object\n *\n * @private\n * @param {string} url - The url to prepare.\n * @return {string} The prepared url.\n */\n _proto._prepareUrl = function _prepareUrl(url) {\n var parsedUrl = parseUri(url, {\n strictMode: true\n });\n var result; // absolute url, just use it as is.\n\n if (parsedUrl.protocol || !parsedUrl.path || url.indexOf('//') === 0) {\n result = url;\n } // if baseUrl doesn't end in slash and url doesn't start with slash, then add a slash inbetween\n else if (this.baseUrl.length && this.baseUrl.lastIndexOf('/') !== this.baseUrl.length - 1 && url.charAt(0) !== '/') {\n result = this.baseUrl + \"/\" + url;\n } else {\n result = this.baseUrl + url;\n } // if we need to add a default querystring, there is a bit more work\n\n\n if (this.defaultQueryString) {\n var hash = rgxExtractUrlHash.exec(result)[0];\n result = result.substr(0, result.length - hash.length);\n\n if (result.indexOf('?') !== -1) {\n result += \"&\" + this.defaultQueryString;\n } else {\n result += \"?\" + this.defaultQueryString;\n }\n\n result += hash;\n }\n\n return result;\n }\n /**\n * Loads a single resource.\n *\n * @private\n * @param {Resource} resource - The resource to load.\n * @param {function} dequeue - The function to call when we need to dequeue this item.\n */\n ;\n\n _proto._loadResource = function _loadResource(resource, dequeue) {\n var _this2 = this;\n\n resource._dequeue = dequeue; // run before middleware\n\n eachSeries(this._beforeMiddleware, function (fn, next) {\n fn.call(_this2, resource, function () {\n // if the before middleware marks the resource as complete,\n // break and don't process any more before middleware\n next(resource.isComplete ? {} : null);\n });\n }, function () {\n if (resource.isComplete) {\n _this2._onLoad(resource);\n } else {\n resource._onLoadBinding = resource.onComplete.once(_this2._onLoad, _this2);\n resource.load();\n }\n }, true);\n }\n /**\n * Called once loading has started.\n *\n * @private\n */\n ;\n\n _proto._onStart = function _onStart() {\n this.progress = 0;\n this.loading = true;\n this.onStart.dispatch(this);\n }\n /**\n * Called once each resource has loaded.\n *\n * @private\n */\n ;\n\n _proto._onComplete = function _onComplete() {\n this.progress = MAX_PROGRESS;\n this.loading = false;\n this.onComplete.dispatch(this, this.resources);\n }\n /**\n * Called each time a resources is loaded.\n *\n * @private\n * @param {Resource} resource - The resource that was loaded\n */\n ;\n\n _proto._onLoad = function _onLoad(resource) {\n var _this3 = this;\n\n resource._onLoadBinding = null; // remove this resource from the async queue, and add it to our list of resources that are being parsed\n\n this._resourcesParsing.push(resource);\n\n resource._dequeue(); // run all the after middleware for this resource\n\n\n eachSeries(this._afterMiddleware, function (fn, next) {\n fn.call(_this3, resource, next);\n }, function () {\n resource.onAfterMiddleware.dispatch(resource);\n _this3.progress = Math.min(MAX_PROGRESS, _this3.progress + resource.progressChunk);\n\n _this3.onProgress.dispatch(_this3, resource);\n\n if (resource.error) {\n _this3.onError.dispatch(resource.error, _this3, resource);\n } else {\n _this3.onLoad.dispatch(_this3, resource);\n }\n\n _this3._resourcesParsing.splice(_this3._resourcesParsing.indexOf(resource), 1); // do completion check\n\n\n if (_this3._queue.idle() && _this3._resourcesParsing.length === 0) {\n _this3._onComplete();\n }\n }, true);\n };\n\n _createClass(Loader, [{\n key: \"concurrency\",\n get: function get() {\n return this._queue.concurrency;\n } // eslint-disable-next-line require-jsdoc\n ,\n set: function set(concurrency) {\n this._queue.concurrency = concurrency;\n }\n }]);\n\n return Loader;\n}();\n/**\n * A default array of middleware to run before loading each resource.\n * Each of these middlewares are added to any new Loader instances when they are created.\n *\n * @private\n * @member {function[]}\n */\n\n\nLoader._defaultBeforeMiddleware = [];\n/**\n * A default array of middleware to run after loading each resource.\n * Each of these middlewares are added to any new Loader instances when they are created.\n *\n * @private\n * @member {function[]}\n */\n\nLoader._defaultAfterMiddleware = [];\n/**\n * Sets up a middleware function that will run *before* the\n * resource is loaded.\n *\n * @static\n * @param {function} fn - The middleware function to register.\n * @return {Loader} Returns itself.\n */\n\nLoader.pre = function LoaderPreStatic(fn) {\n Loader._defaultBeforeMiddleware.push(fn);\n\n return Loader;\n};\n/**\n * Sets up a middleware function that will run *after* the\n * resource is loaded.\n *\n * @static\n * @param {function} fn - The middleware function to register.\n * @return {Loader} Returns itself.\n */\n\n\nLoader.use = function LoaderUseStatic(fn) {\n Loader._defaultAfterMiddleware.push(fn);\n\n return Loader;\n};\n\nexport { Loader, Resource, async, encodeBinary, index as middleware };\n//# sourceMappingURL=resource-loader.esm.js.map\n","/*!\n * @pixi/loaders - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/loaders is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Resource, Loader as Loader$1, middleware } from 'resource-loader';\nimport { EventEmitter } from '@pixi/utils';\nimport { Texture } from '@pixi/core';\n\n/**\n * Loader plugin for handling Texture resources.\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar TextureLoader = function TextureLoader () {};\n\nTextureLoader.use = function use (resource, next)\n{\n // create a new texture if the data is an Image object\n if (resource.data && resource.type === Resource.TYPE.IMAGE)\n {\n resource.texture = Texture.fromLoader(\n resource.data,\n resource.url,\n resource.name\n );\n }\n next();\n};\n\n/**\n * The new loader, extends Resource Loader by Chad Engler: https://github.com/englercj/resource-loader\n *\n * ```js\n * const loader = PIXI.Loader.shared; // PixiJS exposes a premade instance for you to use.\n * //or\n * const loader = new PIXI.Loader(); // you can also create your own if you want\n *\n * const sprites = {};\n *\n * // Chainable `add` to enqueue a resource\n * loader.add('bunny', 'data/bunny.png')\n * .add('spaceship', 'assets/spritesheet.json');\n * loader.add('scoreFont', 'assets/score.fnt');\n *\n * // Chainable `pre` to add a middleware that runs for each resource, *before* loading that resource.\n * // This is useful to implement custom caching modules (using filesystem, indexeddb, memory, etc).\n * loader.pre(cachingMiddleware);\n *\n * // Chainable `use` to add a middleware that runs for each resource, *after* loading that resource.\n * // This is useful to implement custom parsing modules (like spritesheet parsers, spine parser, etc).\n * loader.use(parsingMiddleware);\n *\n * // The `load` method loads the queue of resources, and calls the passed in callback called once all\n * // resources have loaded.\n * loader.load((loader, resources) => {\n * // resources is an object where the key is the name of the resource loaded and the value is the resource object.\n * // They have a couple default properties:\n * // - `url`: The URL that the resource was loaded from\n * // - `error`: The error that happened when trying to load (if any)\n * // - `data`: The raw data that was loaded\n * // also may contain other properties based on the middleware that runs.\n * sprites.bunny = new PIXI.TilingSprite(resources.bunny.texture);\n * sprites.spaceship = new PIXI.TilingSprite(resources.spaceship.texture);\n * sprites.scoreFont = new PIXI.TilingSprite(resources.scoreFont.texture);\n * });\n *\n * // throughout the process multiple signals can be dispatched.\n * loader.onProgress.add(() => {}); // called once per loaded/errored file\n * loader.onError.add(() => {}); // called once per errored file\n * loader.onLoad.add(() => {}); // called once per loaded file\n * loader.onComplete.add(() => {}); // called once when the queued resources all load.\n * ```\n *\n * @see https://github.com/englercj/resource-loader\n *\n * @class Loader\n * @memberof PIXI\n * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader.\n * @param {number} [concurrency=10] - The number of resources to load concurrently.\n */\nvar Loader = /*@__PURE__*/(function (ResourceLoader) {\n function Loader(baseUrl, concurrency)\n {\n var this$1 = this;\n\n ResourceLoader.call(this, baseUrl, concurrency);\n EventEmitter.call(this);\n\n for (var i = 0; i < Loader._plugins.length; ++i)\n {\n var plugin = Loader._plugins[i];\n var pre = plugin.pre;\n var use = plugin.use;\n\n if (pre)\n {\n this.pre(pre);\n }\n\n if (use)\n {\n this.use(use);\n }\n }\n\n // Compat layer, translate the new v2 signals into old v1 events.\n this.onStart.add(function (l) { return this$1.emit('start', l); });\n this.onProgress.add(function (l, r) { return this$1.emit('progress', l, r); });\n this.onError.add(function (e, l, r) { return this$1.emit('error', e, l, r); });\n this.onLoad.add(function (l, r) { return this$1.emit('load', l, r); });\n this.onComplete.add(function (l, r) { return this$1.emit('complete', l, r); });\n\n /**\n * If this loader cannot be destroyed.\n * @member {boolean}\n * @default false\n * @private\n */\n this._protected = false;\n }\n\n if ( ResourceLoader ) Loader.__proto__ = ResourceLoader;\n Loader.prototype = Object.create( ResourceLoader && ResourceLoader.prototype );\n Loader.prototype.constructor = Loader;\n\n var staticAccessors = { shared: { configurable: true } };\n\n /**\n * Destroy the loader, removes references.\n * @private\n */\n Loader.prototype.destroy = function destroy ()\n {\n if (!this._protected)\n {\n this.removeAllListeners();\n this.reset();\n }\n };\n\n /**\n * A premade instance of the loader that can be used to load resources.\n * @name shared\n * @type {PIXI.Loader}\n * @static\n * @memberof PIXI.Loader\n */\n staticAccessors.shared.get = function ()\n {\n var shared = Loader._shared;\n\n if (!shared)\n {\n shared = new Loader();\n shared._protected = true;\n Loader._shared = shared;\n }\n\n return shared;\n };\n\n Object.defineProperties( Loader, staticAccessors );\n\n return Loader;\n}(Loader$1));\n\n// Copy EE3 prototype (mixin)\nObject.assign(Loader.prototype, EventEmitter.prototype);\n\n/**\n * Collection of all installed `use` middleware for Loader.\n *\n * @static\n * @member {Array} _plugins\n * @memberof PIXI.Loader\n * @private\n */\nLoader._plugins = [];\n\n/**\n * Adds a Loader plugin for the global shared loader and all\n * new Loader instances created.\n *\n * @static\n * @method registerPlugin\n * @memberof PIXI.Loader\n * @param {PIXI.ILoaderPlugin} plugin - The plugin to add\n * @return {PIXI.Loader} Reference to PIXI.Loader for chaining\n */\nLoader.registerPlugin = function registerPlugin(plugin)\n{\n Loader._plugins.push(plugin);\n\n if (plugin.add)\n {\n plugin.add();\n }\n\n return Loader;\n};\n\n// parse any blob into more usable objects (e.g. Image)\nLoader.registerPlugin({ use: middleware.parsing });\n\n// parse any Image objects into textures\nLoader.registerPlugin(TextureLoader);\n\n/**\n * Plugin to be installed for handling specific Loader resources.\n *\n * @memberof PIXI\n * @typedef ILoaderPlugin\n * @property {function} [add] - Function to call immediate after registering plugin.\n * @property {PIXI.Loader.loaderMiddleware} [pre] - Middleware function to run before load, the\n * arguments for this are `(resource, next)`\n * @property {PIXI.Loader.loaderMiddleware} [use] - Middleware function to run after load, the\n * arguments for this are `(resource, next)`\n */\n\n/**\n * @memberof PIXI.Loader\n * @callback loaderMiddleware\n * @param {PIXI.LoaderResource} resource\n * @param {function} next\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onStart\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onProgress\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onError\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onLoad\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onComplete\n */\n\n/**\n * Application plugin for supporting loader option. Installing the LoaderPlugin\n * is not necessary if using **pixi.js** or **pixi.js-legacy**.\n * @example\n * import {AppLoaderPlugin} from '@pixi/loaders';\n * import {Application} from '@pixi/app';\n * Application.registerPlugin(AppLoaderPlugin);\n * @class\n * @memberof PIXI\n */\nvar AppLoaderPlugin = function AppLoaderPlugin () {};\n\nAppLoaderPlugin.init = function init (options)\n{\n options = Object.assign({\n sharedLoader: false,\n }, options);\n\n /**\n * Loader instance to help with asset loading.\n * @name PIXI.Application#loader\n * @type {PIXI.Loader}\n * @readonly\n */\n this.loader = options.sharedLoader ? Loader.shared : new Loader();\n};\n\n/**\n * Called when application destroyed\n * @private\n */\nAppLoaderPlugin.destroy = function destroy ()\n{\n if (this.loader)\n {\n this.loader.destroy();\n this.loader = null;\n }\n};\n\n/**\n * Reference to **{@link https://github.com/englercj/resource-loader\n * resource-loader}**'s Resource class.\n * @see http://englercj.github.io/resource-loader/Resource.html\n * @class LoaderResource\n * @memberof PIXI\n */\nvar LoaderResource = Resource;\n\nexport { AppLoaderPlugin, Loader, LoaderResource, TextureLoader };\n//# sourceMappingURL=loaders.es.js.map\n","/*!\n * @pixi/particles - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/particles is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { BLEND_MODES, TYPES } from '@pixi/constants';\nimport { hex2rgb, createIndicesForQuads, correctBlendMode, premultiplyRgba, premultiplyTint } from '@pixi/utils';\nimport { Container } from '@pixi/display';\nimport { Geometry, Buffer, ObjectRenderer, Shader } from '@pixi/core';\nimport { Matrix } from '@pixi/math';\n\n/**\n * The ParticleContainer class is a really fast version of the Container built solely for speed,\n * so use when you need a lot of sprites or particles.\n *\n * The tradeoff of the ParticleContainer is that most advanced functionality will not work.\n * ParticleContainer implements the basic object transform (position, scale, rotation)\n * and some advanced functionality like tint (as of v4.5.6).\n *\n * Other more advanced functionality like masking, children, filters, etc will not work on sprites in this batch.\n *\n * It's extremely easy to use:\n * ```js\n * let container = new ParticleContainer();\n *\n * for (let i = 0; i < 100; ++i)\n * {\n * let sprite = PIXI.Sprite.from(\"myImage.png\");\n * container.addChild(sprite);\n * }\n * ```\n *\n * And here you have a hundred sprites that will be rendered at the speed of light.\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar ParticleContainer = /*@__PURE__*/(function (Container) {\n function ParticleContainer(maxSize, properties, batchSize, autoResize)\n {\n if ( maxSize === void 0 ) maxSize = 1500;\n if ( batchSize === void 0 ) batchSize = 16384;\n if ( autoResize === void 0 ) autoResize = false;\n\n Container.call(this);\n\n // Making sure the batch size is valid\n // 65535 is max vertex index in the index buffer (see ParticleRenderer)\n // so max number of particles is 65536 / 4 = 16384\n var maxBatchSize = 16384;\n\n if (batchSize > maxBatchSize)\n {\n batchSize = maxBatchSize;\n }\n\n /**\n * Set properties to be dynamic (true) / static (false)\n *\n * @member {boolean[]}\n * @private\n */\n this._properties = [false, true, false, false, false];\n\n /**\n * @member {number}\n * @private\n */\n this._maxSize = maxSize;\n\n /**\n * @member {number}\n * @private\n */\n this._batchSize = batchSize;\n\n /**\n * @member {Array}\n * @private\n */\n this._buffers = null;\n\n /**\n * for every batch stores _updateID corresponding to the last change in that batch\n * @member {number[]}\n * @private\n */\n this._bufferUpdateIDs = [];\n\n /**\n * when child inserted, removed or changes position this number goes up\n * @member {number[]}\n * @private\n */\n this._updateID = 0;\n\n /**\n * @member {boolean}\n *\n */\n this.interactiveChildren = false;\n\n /**\n * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL`\n * to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * If true, container allocates more batches in case there are more than `maxSize` particles.\n * @member {boolean}\n * @default false\n */\n this.autoResize = autoResize;\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * Default to true here as performance is usually the priority for particles.\n *\n * @member {boolean}\n * @default true\n */\n this.roundPixels = true;\n\n /**\n * The texture used to render the children.\n *\n * @readonly\n * @member {PIXI.BaseTexture}\n */\n this.baseTexture = null;\n\n this.setProperties(properties);\n\n /**\n * The tint applied to the container.\n * This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @private\n * @member {number}\n * @default 0xFFFFFF\n */\n this._tint = 0;\n this.tintRgb = new Float32Array(4);\n this.tint = 0xFFFFFF;\n }\n\n if ( Container ) ParticleContainer.__proto__ = Container;\n ParticleContainer.prototype = Object.create( Container && Container.prototype );\n ParticleContainer.prototype.constructor = ParticleContainer;\n\n var prototypeAccessors = { tint: { configurable: true } };\n\n /**\n * Sets the private properties array to dynamic / static based on the passed properties object\n *\n * @param {object} properties - The properties to be uploaded\n */\n ParticleContainer.prototype.setProperties = function setProperties (properties)\n {\n if (properties)\n {\n this._properties[0] = 'vertices' in properties || 'scale' in properties\n ? !!properties.vertices || !!properties.scale : this._properties[0];\n this._properties[1] = 'position' in properties ? !!properties.position : this._properties[1];\n this._properties[2] = 'rotation' in properties ? !!properties.rotation : this._properties[2];\n this._properties[3] = 'uvs' in properties ? !!properties.uvs : this._properties[3];\n this._properties[4] = 'tint' in properties || 'alpha' in properties\n ? !!properties.tint || !!properties.alpha : this._properties[4];\n }\n };\n\n /**\n * Updates the object transform for rendering\n *\n * @private\n */\n ParticleContainer.prototype.updateTransform = function updateTransform ()\n {\n // TODO don't need to!\n this.displayObjectUpdateTransform();\n // PIXI.Container.prototype.updateTransform.call( this );\n };\n\n /**\n * The tint applied to the container. This is a hex value.\n * A value of 0xFFFFFF will remove any tint effect.\n ** IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer.\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._tint = value;\n hex2rgb(value, this.tintRgb);\n };\n\n /**\n * Renders the container using the WebGL renderer\n *\n * @private\n * @param {PIXI.Renderer} renderer - The webgl renderer\n */\n ParticleContainer.prototype.render = function render (renderer)\n {\n var this$1 = this;\n\n if (!this.visible || this.worldAlpha <= 0 || !this.children.length || !this.renderable)\n {\n return;\n }\n\n if (!this.baseTexture)\n {\n this.baseTexture = this.children[0]._texture.baseTexture;\n if (!this.baseTexture.valid)\n {\n this.baseTexture.once('update', function () { return this$1.onChildrenChange(0); });\n }\n }\n\n renderer.batch.setObjectRenderer(renderer.plugins.particle);\n renderer.plugins.particle.render(this);\n };\n\n /**\n * Set the flag that static data should be updated to true\n *\n * @private\n * @param {number} smallestChildIndex - The smallest child index\n */\n ParticleContainer.prototype.onChildrenChange = function onChildrenChange (smallestChildIndex)\n {\n var bufferIndex = Math.floor(smallestChildIndex / this._batchSize);\n\n while (this._bufferUpdateIDs.length < bufferIndex)\n {\n this._bufferUpdateIDs.push(0);\n }\n this._bufferUpdateIDs[bufferIndex] = ++this._updateID;\n };\n\n ParticleContainer.prototype.dispose = function dispose ()\n {\n if (this._buffers)\n {\n for (var i = 0; i < this._buffers.length; ++i)\n {\n this._buffers[i].destroy();\n }\n\n this._buffers = null;\n }\n };\n\n /**\n * Destroys the container\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their\n * destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n ParticleContainer.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.dispose();\n\n this._properties = null;\n this._buffers = null;\n this._bufferUpdateIDs = null;\n };\n\n Object.defineProperties( ParticleContainer.prototype, prototypeAccessors );\n\n return ParticleContainer;\n}(Container));\n\n/**\n * @author Mat Groves\n *\n * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/\n * for creating the original PixiJS version!\n * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that\n * they now share 4 bytes on the vertex buffer\n *\n * Heavily inspired by LibGDX's ParticleBuffer:\n * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleBuffer.java\n */\n\n/**\n * The particle buffer manages the static and dynamic buffers for a particle container.\n *\n * @class\n * @private\n * @memberof PIXI\n */\nvar ParticleBuffer = function ParticleBuffer(properties, dynamicPropertyFlags, size)\n{\n this.geometry = new Geometry();\n\n this.indexBuffer = null;\n\n /**\n * The number of particles the buffer can hold\n *\n * @private\n * @member {number}\n */\n this.size = size;\n\n /**\n * A list of the properties that are dynamic.\n *\n * @private\n * @member {object[]}\n */\n this.dynamicProperties = [];\n\n /**\n * A list of the properties that are static.\n *\n * @private\n * @member {object[]}\n */\n this.staticProperties = [];\n\n for (var i = 0; i < properties.length; ++i)\n {\n var property = properties[i];\n\n // Make copy of properties object so that when we edit the offset it doesn't\n // change all other instances of the object literal\n property = {\n attributeName: property.attributeName,\n size: property.size,\n uploadFunction: property.uploadFunction,\n type: property.type || TYPES.FLOAT,\n offset: property.offset,\n };\n\n if (dynamicPropertyFlags[i])\n {\n this.dynamicProperties.push(property);\n }\n else\n {\n this.staticProperties.push(property);\n }\n }\n\n this.staticStride = 0;\n this.staticBuffer = null;\n this.staticData = null;\n this.staticDataUint32 = null;\n\n this.dynamicStride = 0;\n this.dynamicBuffer = null;\n this.dynamicData = null;\n this.dynamicDataUint32 = null;\n\n this._updateID = 0;\n\n this.initBuffers();\n};\n\n/**\n * Sets up the renderer context and necessary buffers.\n *\n * @private\n */\nParticleBuffer.prototype.initBuffers = function initBuffers ()\n{\n var geometry = this.geometry;\n\n var dynamicOffset = 0;\n\n /**\n * Holds the indices of the geometry (quads) to draw\n *\n * @member {Uint16Array}\n * @private\n */\n this.indexBuffer = new Buffer(createIndicesForQuads(this.size), true, true);\n geometry.addIndex(this.indexBuffer);\n\n this.dynamicStride = 0;\n\n for (var i = 0; i < this.dynamicProperties.length; ++i)\n {\n var property = this.dynamicProperties[i];\n\n property.offset = dynamicOffset;\n dynamicOffset += property.size;\n this.dynamicStride += property.size;\n }\n\n var dynBuffer = new ArrayBuffer(this.size * this.dynamicStride * 4 * 4);\n\n this.dynamicData = new Float32Array(dynBuffer);\n this.dynamicDataUint32 = new Uint32Array(dynBuffer);\n this.dynamicBuffer = new Buffer(this.dynamicData, false, false);\n\n // static //\n var staticOffset = 0;\n\n this.staticStride = 0;\n\n for (var i$1 = 0; i$1 < this.staticProperties.length; ++i$1)\n {\n var property$1 = this.staticProperties[i$1];\n\n property$1.offset = staticOffset;\n staticOffset += property$1.size;\n this.staticStride += property$1.size;\n }\n\n var statBuffer = new ArrayBuffer(this.size * this.staticStride * 4 * 4);\n\n this.staticData = new Float32Array(statBuffer);\n this.staticDataUint32 = new Uint32Array(statBuffer);\n this.staticBuffer = new Buffer(this.staticData, true, false);\n\n for (var i$2 = 0; i$2 < this.dynamicProperties.length; ++i$2)\n {\n var property$2 = this.dynamicProperties[i$2];\n\n geometry.addAttribute(\n property$2.attributeName,\n this.dynamicBuffer,\n 0,\n property$2.type === TYPES.UNSIGNED_BYTE,\n property$2.type,\n this.dynamicStride * 4,\n property$2.offset * 4\n );\n }\n\n for (var i$3 = 0; i$3 < this.staticProperties.length; ++i$3)\n {\n var property$3 = this.staticProperties[i$3];\n\n geometry.addAttribute(\n property$3.attributeName,\n this.staticBuffer,\n 0,\n property$3.type === TYPES.UNSIGNED_BYTE,\n property$3.type,\n this.staticStride * 4,\n property$3.offset * 4\n );\n }\n};\n\n/**\n * Uploads the dynamic properties.\n *\n * @private\n * @param {PIXI.DisplayObject[]} children - The children to upload.\n * @param {number} startIndex - The index to start at.\n * @param {number} amount - The number to upload.\n */\nParticleBuffer.prototype.uploadDynamic = function uploadDynamic (children, startIndex, amount)\n{\n for (var i = 0; i < this.dynamicProperties.length; i++)\n {\n var property = this.dynamicProperties[i];\n\n property.uploadFunction(children, startIndex, amount,\n property.type === TYPES.UNSIGNED_BYTE ? this.dynamicDataUint32 : this.dynamicData,\n this.dynamicStride, property.offset);\n }\n\n this.dynamicBuffer._updateID++;\n};\n\n/**\n * Uploads the static properties.\n *\n * @private\n * @param {PIXI.DisplayObject[]} children - The children to upload.\n * @param {number} startIndex - The index to start at.\n * @param {number} amount - The number to upload.\n */\nParticleBuffer.prototype.uploadStatic = function uploadStatic (children, startIndex, amount)\n{\n for (var i = 0; i < this.staticProperties.length; i++)\n {\n var property = this.staticProperties[i];\n\n property.uploadFunction(children, startIndex, amount,\n property.type === TYPES.UNSIGNED_BYTE ? this.staticDataUint32 : this.staticData,\n this.staticStride, property.offset);\n }\n\n this.staticBuffer._updateID++;\n};\n\n/**\n * Destroys the ParticleBuffer.\n *\n * @private\n */\nParticleBuffer.prototype.destroy = function destroy ()\n{\n this.indexBuffer = null;\n\n this.dynamicProperties = null;\n // this.dynamicBuffer.destroy();\n this.dynamicBuffer = null;\n this.dynamicData = null;\n this.dynamicDataUint32 = null;\n\n this.staticProperties = null;\n // this.staticBuffer.destroy();\n this.staticBuffer = null;\n this.staticData = null;\n this.staticDataUint32 = null;\n // all buffers are destroyed inside geometry\n this.geometry.destroy();\n};\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\nattribute vec4 aColor;\\n\\nattribute vec2 aPositionCoord;\\nattribute float aRotation;\\n\\nuniform mat3 translationMatrix;\\nuniform vec4 uColor;\\n\\nvarying vec2 vTextureCoord;\\nvarying vec4 vColor;\\n\\nvoid main(void){\\n float x = (aVertexPosition.x) * cos(aRotation) - (aVertexPosition.y) * sin(aRotation);\\n float y = (aVertexPosition.x) * sin(aRotation) + (aVertexPosition.y) * cos(aRotation);\\n\\n vec2 v = vec2(x, y);\\n v = v + aPositionCoord;\\n\\n gl_Position = vec4((translationMatrix * vec3(v, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vColor = aColor * uColor;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\nvarying vec4 vColor;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n vec4 color = texture2D(uSampler, vTextureCoord) * vColor;\\n gl_FragColor = color;\\n}\";\n\n/**\n * @author Mat Groves\n *\n * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/\n * for creating the original PixiJS version!\n * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that they now\n * share 4 bytes on the vertex buffer\n *\n * Heavily inspired by LibGDX's ParticleRenderer:\n * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleRenderer.java\n */\n\n/**\n * Renderer for Particles that is designer for speed over feature set.\n *\n * @class\n * @memberof PIXI\n */\nvar ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function ParticleRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n // 65535 is max vertex index in the index buffer (see ParticleRenderer)\n // so max number of particles is 65536 / 4 = 16384\n // and max number of element in the index buffer is 16384 * 6 = 98304\n // Creating a full index buffer, overhead is 98304 * 2 = 196Ko\n // let numIndices = 98304;\n\n /**\n * The default shader that is used if a sprite doesn't have a more specific one.\n *\n * @member {PIXI.Shader}\n */\n this.shader = null;\n\n this.properties = null;\n\n this.tempMatrix = new Matrix();\n\n this.properties = [\n // verticesData\n {\n attributeName: 'aVertexPosition',\n size: 2,\n uploadFunction: this.uploadVertices,\n offset: 0,\n },\n // positionData\n {\n attributeName: 'aPositionCoord',\n size: 2,\n uploadFunction: this.uploadPosition,\n offset: 0,\n },\n // rotationData\n {\n attributeName: 'aRotation',\n size: 1,\n uploadFunction: this.uploadRotation,\n offset: 0,\n },\n // uvsData\n {\n attributeName: 'aTextureCoord',\n size: 2,\n uploadFunction: this.uploadUvs,\n offset: 0,\n },\n // tintData\n {\n attributeName: 'aColor',\n size: 1,\n type: TYPES.UNSIGNED_BYTE,\n uploadFunction: this.uploadTint,\n offset: 0,\n } ];\n\n this.shader = Shader.from(vertex, fragment, {});\n }\n\n if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer;\n ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n ParticleRenderer.prototype.constructor = ParticleRenderer;\n\n /**\n * Renders the particle container object.\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n */\n ParticleRenderer.prototype.render = function render (container)\n {\n var children = container.children;\n var maxSize = container._maxSize;\n var batchSize = container._batchSize;\n var renderer = this.renderer;\n var totalChildren = children.length;\n\n if (totalChildren === 0)\n {\n return;\n }\n else if (totalChildren > maxSize && !container.autoResize)\n {\n totalChildren = maxSize;\n }\n\n var buffers = container._buffers;\n\n if (!buffers)\n {\n buffers = container._buffers = this.generateBuffers(container);\n }\n\n var baseTexture = children[0]._texture.baseTexture;\n\n // if the uvs have not updated then no point rendering just yet!\n this.renderer.state.setBlendMode(correctBlendMode(container.blendMode, baseTexture.premultiplyAlpha));\n\n var gl = renderer.gl;\n\n var m = container.worldTransform.copyTo(this.tempMatrix);\n\n m.prepend(renderer.globalUniforms.uniforms.projectionMatrix);\n\n this.shader.uniforms.translationMatrix = m.toArray(true);\n\n this.shader.uniforms.uColor = premultiplyRgba(container.tintRgb,\n container.worldAlpha, this.shader.uniforms.uColor, baseTexture.premultiplyAlpha);\n\n this.shader.uniforms.uSampler = baseTexture;\n\n this.renderer.shader.bind(this.shader);\n\n var updateStatic = false;\n\n // now lets upload and render the buffers..\n for (var i = 0, j = 0; i < totalChildren; i += batchSize, j += 1)\n {\n var amount = (totalChildren - i);\n\n if (amount > batchSize)\n {\n amount = batchSize;\n }\n\n if (j >= buffers.length)\n {\n buffers.push(this._generateOneMoreBuffer(container));\n }\n\n var buffer = buffers[j];\n\n // we always upload the dynamic\n buffer.uploadDynamic(children, i, amount);\n\n var bid = container._bufferUpdateIDs[j] || 0;\n\n updateStatic = updateStatic || (buffer._updateID < bid);\n // we only upload the static content when we have to!\n if (updateStatic)\n {\n buffer._updateID = container._updateID;\n buffer.uploadStatic(children, i, amount);\n }\n\n // bind the buffer\n renderer.geometry.bind(buffer.geometry);\n gl.drawElements(gl.TRIANGLES, amount * 6, gl.UNSIGNED_SHORT, 0);\n }\n };\n\n /**\n * Creates one particle buffer for each child in the container we want to render and updates internal properties\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n * @return {PIXI.ParticleBuffer[]} The buffers\n * @private\n */\n ParticleRenderer.prototype.generateBuffers = function generateBuffers (container)\n {\n var buffers = [];\n var size = container._maxSize;\n var batchSize = container._batchSize;\n var dynamicPropertyFlags = container._properties;\n\n for (var i = 0; i < size; i += batchSize)\n {\n buffers.push(new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize));\n }\n\n return buffers;\n };\n\n /**\n * Creates one more particle buffer, because container has autoResize feature\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n * @return {PIXI.ParticleBuffer} generated buffer\n * @private\n */\n ParticleRenderer.prototype._generateOneMoreBuffer = function _generateOneMoreBuffer (container)\n {\n var batchSize = container._batchSize;\n var dynamicPropertyFlags = container._properties;\n\n return new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize);\n };\n\n /**\n * Uploads the vertices.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their vertices uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadVertices = function uploadVertices (children, startIndex, amount, array, stride, offset)\n {\n var w0 = 0;\n var w1 = 0;\n var h0 = 0;\n var h1 = 0;\n\n for (var i = 0; i < amount; ++i)\n {\n var sprite = children[startIndex + i];\n var texture = sprite._texture;\n var sx = sprite.scale.x;\n var sy = sprite.scale.y;\n var trim = texture.trim;\n var orig = texture.orig;\n\n if (trim)\n {\n // if the sprite is trimmed and is not a tilingsprite then we need to add the\n // extra space before transforming the sprite coords..\n w1 = trim.x - (sprite.anchor.x * orig.width);\n w0 = w1 + trim.width;\n\n h1 = trim.y - (sprite.anchor.y * orig.height);\n h0 = h1 + trim.height;\n }\n else\n {\n w0 = (orig.width) * (1 - sprite.anchor.x);\n w1 = (orig.width) * -sprite.anchor.x;\n\n h0 = orig.height * (1 - sprite.anchor.y);\n h1 = orig.height * -sprite.anchor.y;\n }\n\n array[offset] = w1 * sx;\n array[offset + 1] = h1 * sy;\n\n array[offset + stride] = w0 * sx;\n array[offset + stride + 1] = h1 * sy;\n\n array[offset + (stride * 2)] = w0 * sx;\n array[offset + (stride * 2) + 1] = h0 * sy;\n\n array[offset + (stride * 3)] = w1 * sx;\n array[offset + (stride * 3) + 1] = h0 * sy;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the position.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their positions uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadPosition = function uploadPosition (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; i++)\n {\n var spritePosition = children[startIndex + i].position;\n\n array[offset] = spritePosition.x;\n array[offset + 1] = spritePosition.y;\n\n array[offset + stride] = spritePosition.x;\n array[offset + stride + 1] = spritePosition.y;\n\n array[offset + (stride * 2)] = spritePosition.x;\n array[offset + (stride * 2) + 1] = spritePosition.y;\n\n array[offset + (stride * 3)] = spritePosition.x;\n array[offset + (stride * 3) + 1] = spritePosition.y;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the rotiation.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadRotation = function uploadRotation (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; i++)\n {\n var spriteRotation = children[startIndex + i].rotation;\n\n array[offset] = spriteRotation;\n array[offset + stride] = spriteRotation;\n array[offset + (stride * 2)] = spriteRotation;\n array[offset + (stride * 3)] = spriteRotation;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the Uvs\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadUvs = function uploadUvs (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; ++i)\n {\n var textureUvs = children[startIndex + i]._texture._uvs;\n\n if (textureUvs)\n {\n array[offset] = textureUvs.x0;\n array[offset + 1] = textureUvs.y0;\n\n array[offset + stride] = textureUvs.x1;\n array[offset + stride + 1] = textureUvs.y1;\n\n array[offset + (stride * 2)] = textureUvs.x2;\n array[offset + (stride * 2) + 1] = textureUvs.y2;\n\n array[offset + (stride * 3)] = textureUvs.x3;\n array[offset + (stride * 3) + 1] = textureUvs.y3;\n\n offset += stride * 4;\n }\n else\n {\n // TODO you know this can be easier!\n array[offset] = 0;\n array[offset + 1] = 0;\n\n array[offset + stride] = 0;\n array[offset + stride + 1] = 0;\n\n array[offset + (stride * 2)] = 0;\n array[offset + (stride * 2) + 1] = 0;\n\n array[offset + (stride * 3)] = 0;\n array[offset + (stride * 3) + 1] = 0;\n\n offset += stride * 4;\n }\n }\n };\n\n /**\n * Uploads the tint.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadTint = function uploadTint (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; ++i)\n {\n var sprite = children[startIndex + i];\n var premultiplied = sprite._texture.baseTexture.premultiplyAlpha;\n var alpha = sprite.alpha;\n // we dont call extra function if alpha is 1.0, that's faster\n var argb = alpha < 1.0 && premultiplied ? premultiplyTint(sprite._tintRGB, alpha)\n : sprite._tintRGB + (alpha * 255 << 24);\n\n array[offset] = argb;\n array[offset + stride] = argb;\n array[offset + (stride * 2)] = argb;\n array[offset + (stride * 3)] = argb;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Destroys the ParticleRenderer.\n */\n ParticleRenderer.prototype.destroy = function destroy ()\n {\n ObjectRenderer.prototype.destroy.call(this);\n\n if (this.shader)\n {\n this.shader.destroy();\n this.shader = null;\n }\n\n this.tempMatrix = null;\n };\n\n return ParticleRenderer;\n}(ObjectRenderer));\n\nexport { ParticleContainer, ParticleRenderer };\n//# sourceMappingURL=particles.es.js.map\n","/*!\n * @pixi/spritesheet - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/spritesheet is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Rectangle } from '@pixi/math';\nimport { Texture } from '@pixi/core';\nimport { getResolutionOfUrl, url } from '@pixi/utils';\nimport { LoaderResource } from '@pixi/loaders';\n\n/**\n * Utility class for maintaining reference to a collection\n * of Textures on a single Spritesheet.\n *\n * To access a sprite sheet from your code pass its JSON data file to Pixi's loader:\n *\n * ```js\n * PIXI.Loader.shared.add(\"images/spritesheet.json\").load(setup);\n *\n * function setup() {\n * let sheet = PIXI.Loader.shared.resources[\"images/spritesheet.json\"].spritesheet;\n * ...\n * }\n * ```\n * With the `sheet.textures` you can create Sprite objects,`sheet.animations` can be used to create an AnimatedSprite.\n *\n * Sprite sheets can be packed using tools like {@link https://codeandweb.com/texturepacker|TexturePacker},\n * {@link https://renderhjs.net/shoebox/|Shoebox} or {@link https://github.com/krzysztof-o/spritesheet.js|Spritesheet.js}.\n * Default anchor points (see {@link PIXI.Texture#defaultAnchor}) and grouping of animation sprites are currently only\n * supported by TexturePacker.\n *\n * @class\n * @memberof PIXI\n */\nvar Spritesheet = function Spritesheet(baseTexture, data, resolutionFilename)\n{\n if ( resolutionFilename === void 0 ) resolutionFilename = null;\n\n /**\n * Reference to ths source texture\n * @type {PIXI.BaseTexture}\n */\n this.baseTexture = baseTexture;\n\n /**\n * A map containing all textures of the sprite sheet.\n * Can be used to create a {@link PIXI.Sprite|Sprite}:\n * ```js\n * new PIXI.Sprite(sheet.textures[\"image.png\"]);\n * ```\n * @member {Object}\n */\n this.textures = {};\n\n /**\n * A map containing the textures for each animation.\n * Can be used to create an {@link PIXI.AnimatedSprite|AnimatedSprite}:\n * ```js\n * new PIXI.AnimatedSprite(sheet.animations[\"anim_name\"])\n * ```\n * @member {Object}\n */\n this.animations = {};\n\n /**\n * Reference to the original JSON data.\n * @type {Object}\n */\n this.data = data;\n\n /**\n * The resolution of the spritesheet.\n * @type {number}\n */\n this.resolution = this._updateResolution(\n resolutionFilename\n || (this.baseTexture.resource ? this.baseTexture.resource.url : null)\n );\n\n /**\n * Map of spritesheet frames.\n * @type {Object}\n * @private\n */\n this._frames = this.data.frames;\n\n /**\n * Collection of frame names.\n * @type {string[]}\n * @private\n */\n this._frameKeys = Object.keys(this._frames);\n\n /**\n * Current batch index being processed.\n * @type {number}\n * @private\n */\n this._batchIndex = 0;\n\n /**\n * Callback when parse is completed.\n * @type {Function}\n * @private\n */\n this._callback = null;\n};\n\nvar staticAccessors = { BATCH_SIZE: { configurable: true } };\n\n/**\n * Generate the resolution from the filename or fallback\n * to the meta.scale field of the JSON data.\n *\n * @private\n * @param {string} resolutionFilename - The filename to use for resolving\n * the default resolution.\n * @return {number} Resolution to use for spritesheet.\n */\nstaticAccessors.BATCH_SIZE.get = function ()\n{\n return 1000;\n};\n\nSpritesheet.prototype._updateResolution = function _updateResolution (resolutionFilename)\n{\n var scale = this.data.meta.scale;\n\n // Use a defaultValue of `null` to check if a url-based resolution is set\n var resolution = getResolutionOfUrl(resolutionFilename, null);\n\n // No resolution found via URL\n if (resolution === null)\n {\n // Use the scale value or default to 1\n resolution = scale !== undefined ? parseFloat(scale) : 1;\n }\n\n // For non-1 resolutions, update baseTexture\n if (resolution !== 1)\n {\n this.baseTexture.setResolution(resolution);\n }\n\n return resolution;\n};\n\n/**\n * Parser spritesheet from loaded data. This is done asynchronously\n * to prevent creating too many Texture within a single process.\n *\n * @param {Function} callback - Callback when complete returns\n * a map of the Textures for this spritesheet.\n */\nSpritesheet.prototype.parse = function parse (callback)\n{\n this._batchIndex = 0;\n this._callback = callback;\n\n if (this._frameKeys.length <= Spritesheet.BATCH_SIZE)\n {\n this._processFrames(0);\n this._processAnimations();\n this._parseComplete();\n }\n else\n {\n this._nextBatch();\n }\n};\n\n/**\n * Process a batch of frames\n *\n * @private\n * @param {number} initialFrameIndex - The index of frame to start.\n */\nSpritesheet.prototype._processFrames = function _processFrames (initialFrameIndex)\n{\n var frameIndex = initialFrameIndex;\n var maxFrames = Spritesheet.BATCH_SIZE;\n\n while (frameIndex - initialFrameIndex < maxFrames && frameIndex < this._frameKeys.length)\n {\n var i = this._frameKeys[frameIndex];\n var data = this._frames[i];\n var rect = data.frame;\n\n if (rect)\n {\n var frame = null;\n var trim = null;\n var sourceSize = data.trimmed !== false && data.sourceSize\n ? data.sourceSize : data.frame;\n\n var orig = new Rectangle(\n 0,\n 0,\n Math.floor(sourceSize.w) / this.resolution,\n Math.floor(sourceSize.h) / this.resolution\n );\n\n if (data.rotated)\n {\n frame = new Rectangle(\n Math.floor(rect.x) / this.resolution,\n Math.floor(rect.y) / this.resolution,\n Math.floor(rect.h) / this.resolution,\n Math.floor(rect.w) / this.resolution\n );\n }\n else\n {\n frame = new Rectangle(\n Math.floor(rect.x) / this.resolution,\n Math.floor(rect.y) / this.resolution,\n Math.floor(rect.w) / this.resolution,\n Math.floor(rect.h) / this.resolution\n );\n }\n\n // Check to see if the sprite is trimmed\n if (data.trimmed !== false && data.spriteSourceSize)\n {\n trim = new Rectangle(\n Math.floor(data.spriteSourceSize.x) / this.resolution,\n Math.floor(data.spriteSourceSize.y) / this.resolution,\n Math.floor(rect.w) / this.resolution,\n Math.floor(rect.h) / this.resolution\n );\n }\n\n this.textures[i] = new Texture(\n this.baseTexture,\n frame,\n orig,\n trim,\n data.rotated ? 2 : 0,\n data.anchor\n );\n\n // lets also add the frame to pixi's global cache for 'from' and 'fromLoader' functions\n Texture.addToCache(this.textures[i], i);\n }\n\n frameIndex++;\n }\n};\n\n/**\n * Parse animations config\n *\n * @private\n */\nSpritesheet.prototype._processAnimations = function _processAnimations ()\n{\n var animations = this.data.animations || {};\n\n for (var animName in animations)\n {\n this.animations[animName] = [];\n for (var i = 0; i < animations[animName].length; i++)\n {\n var frameName = animations[animName][i];\n\n this.animations[animName].push(this.textures[frameName]);\n }\n }\n};\n\n/**\n * The parse has completed.\n *\n * @private\n */\nSpritesheet.prototype._parseComplete = function _parseComplete ()\n{\n var callback = this._callback;\n\n this._callback = null;\n this._batchIndex = 0;\n callback.call(this, this.textures);\n};\n\n/**\n * Begin the next batch of textures.\n *\n * @private\n */\nSpritesheet.prototype._nextBatch = function _nextBatch ()\n{\n var this$1 = this;\n\n this._processFrames(this._batchIndex * Spritesheet.BATCH_SIZE);\n this._batchIndex++;\n setTimeout(function () {\n if (this$1._batchIndex * Spritesheet.BATCH_SIZE < this$1._frameKeys.length)\n {\n this$1._nextBatch();\n }\n else\n {\n this$1._processAnimations();\n this$1._parseComplete();\n }\n }, 0);\n};\n\n/**\n * Destroy Spritesheet and don't use after this.\n *\n * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well\n */\nSpritesheet.prototype.destroy = function destroy (destroyBase)\n{\n if ( destroyBase === void 0 ) destroyBase = false;\n\n for (var i in this.textures)\n {\n this.textures[i].destroy();\n }\n this._frames = null;\n this._frameKeys = null;\n this.data = null;\n this.textures = null;\n if (destroyBase)\n {\n this.baseTexture.destroy();\n }\n this.baseTexture = null;\n};\n\nObject.defineProperties( Spritesheet, staticAccessors );\n\n/**\n * {@link PIXI.Loader Loader} middleware for loading texture atlases that have been created with\n * TexturePacker or similar JSON-based spritesheet.\n *\n * This middleware automatically generates Texture resources.\n *\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar SpritesheetLoader = function SpritesheetLoader () {};\n\nSpritesheetLoader.use = function use (resource, next)\n{\n var imageResourceName = (resource.name) + \"_image\";\n\n // skip if no data, its not json, it isn't spritesheet data, or the image resource already exists\n if (!resource.data\n || resource.type !== LoaderResource.TYPE.JSON\n || !resource.data.frames\n || this.resources[imageResourceName]\n )\n {\n next();\n\n return;\n }\n\n var loadOptions = {\n crossOrigin: resource.crossOrigin,\n metadata: resource.metadata.imageMetadata,\n parentResource: resource,\n };\n\n var resourcePath = SpritesheetLoader.getResourcePath(resource, this.baseUrl);\n\n // load the image for this sheet\n this.add(imageResourceName, resourcePath, loadOptions, function onImageLoad(res)\n {\n if (res.error)\n {\n next(res.error);\n\n return;\n }\n\n var spritesheet = new Spritesheet(\n res.texture.baseTexture,\n resource.data,\n resource.url\n );\n\n spritesheet.parse(function () {\n resource.spritesheet = spritesheet;\n resource.textures = spritesheet.textures;\n next();\n });\n });\n};\n\n/**\n * Get the spritesheets root path\n * @param {PIXI.LoaderResource} resource - Resource to check path\n * @param {string} baseUrl - Base root url\n */\nSpritesheetLoader.getResourcePath = function getResourcePath (resource, baseUrl)\n{\n // Prepend url path unless the resource image is a data url\n if (resource.isDataUrl)\n {\n return resource.data.meta.image;\n }\n\n return url.resolve(resource.url.replace(baseUrl, ''), resource.data.meta.image);\n};\n\nexport { Spritesheet, SpritesheetLoader };\n//# sourceMappingURL=spritesheet.es.js.map\n","/*!\n * @pixi/sprite-tiling - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/sprite-tiling is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture, TextureMatrix, ObjectRenderer, Shader, QuadUv } from '@pixi/core';\nimport { Point, Rectangle, Transform, Matrix } from '@pixi/math';\nimport { TextureCache, premultiplyTintToRgba, correctBlendMode } from '@pixi/utils';\nimport { Sprite } from '@pixi/sprite';\nimport { WRAP_MODES } from '@pixi/constants';\n\nvar tempPoint = new Point();\n\n/**\n * A tiling sprite is a fast way of rendering a tiling image\n *\n * @class\n * @extends PIXI.Sprite\n * @memberof PIXI\n */\nvar TilingSprite = /*@__PURE__*/(function (Sprite) {\n function TilingSprite(texture, width, height)\n {\n if ( width === void 0 ) width = 100;\n if ( height === void 0 ) height = 100;\n\n Sprite.call(this, texture);\n\n /**\n * Tile transform\n *\n * @member {PIXI.Transform}\n */\n this.tileTransform = new Transform();\n\n // /// private\n\n /**\n * The with of the tiling sprite\n *\n * @member {number}\n * @private\n */\n this._width = width;\n\n /**\n * The height of the tiling sprite\n *\n * @member {number}\n * @private\n */\n this._height = height;\n\n /**\n * Canvas pattern\n *\n * @type {CanvasPattern}\n * @private\n */\n this._canvasPattern = null;\n\n /**\n * matrix that is applied to UV to get the coords in Texture normalized space to coords in BaseTexture space\n *\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = texture.uvMatrix || new TextureMatrix(texture);\n\n /**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_render' method.\n *\n * @member {string}\n * @default 'tilingSprite'\n */\n this.pluginName = 'tilingSprite';\n\n /**\n * Whether or not anchor affects uvs\n *\n * @member {boolean}\n * @default false\n */\n this.uvRespectAnchor = false;\n }\n\n if ( Sprite ) TilingSprite.__proto__ = Sprite;\n TilingSprite.prototype = Object.create( Sprite && Sprite.prototype );\n TilingSprite.prototype.constructor = TilingSprite;\n\n var prototypeAccessors = { clampMargin: { configurable: true },tileScale: { configurable: true },tilePosition: { configurable: true },width: { configurable: true },height: { configurable: true } };\n /**\n * Changes frame clamping in corresponding textureTransform, shortcut\n * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas\n *\n * @default 0.5\n * @member {number}\n */\n prototypeAccessors.clampMargin.get = function ()\n {\n return this.uvMatrix.clampMargin;\n };\n\n prototypeAccessors.clampMargin.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uvMatrix.clampMargin = value;\n this.uvMatrix.update(true);\n };\n\n /**\n * The scaling of the image that is being tiled\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.tileScale.get = function ()\n {\n return this.tileTransform.scale;\n };\n\n prototypeAccessors.tileScale.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.tileTransform.scale.copyFrom(value);\n };\n\n /**\n * The offset of the image that is being tiled\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.tilePosition.get = function ()\n {\n return this.tileTransform.position;\n };\n\n prototypeAccessors.tilePosition.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.tileTransform.position.copyFrom(value);\n };\n\n /**\n * @private\n */\n TilingSprite.prototype._onTextureUpdate = function _onTextureUpdate ()\n {\n if (this.uvMatrix)\n {\n this.uvMatrix.texture = this._texture;\n }\n this._cachedTint = 0xFFFFFF;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n TilingSprite.prototype._render = function _render (renderer)\n {\n // tweak our texture temporarily..\n var texture = this._texture;\n\n if (!texture || !texture.valid)\n {\n return;\n }\n\n this.tileTransform.updateLocalTransform();\n this.uvMatrix.update();\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n renderer.plugins[this.pluginName].render(this);\n };\n\n /**\n * Updates the bounds of the tiling sprite.\n *\n * @protected\n */\n TilingSprite.prototype._calculateBounds = function _calculateBounds ()\n {\n var minX = this._width * -this._anchor._x;\n var minY = this._height * -this._anchor._y;\n var maxX = this._width * (1 - this._anchor._x);\n var maxY = this._height * (1 - this._anchor._y);\n\n this._bounds.addFrame(this.transform, minX, minY, maxX, maxY);\n };\n\n /**\n * Gets the local bounds of the sprite object.\n *\n * @param {PIXI.Rectangle} rect - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n TilingSprite.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n // we can do a fast local bounds if the sprite has no children!\n if (this.children.length === 0)\n {\n this._bounds.minX = this._width * -this._anchor._x;\n this._bounds.minY = this._height * -this._anchor._y;\n this._bounds.maxX = this._width * (1 - this._anchor._x);\n this._bounds.maxY = this._height * (1 - this._anchor._y);\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n }\n\n return Sprite.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * Checks if a point is inside this tiling sprite.\n *\n * @param {PIXI.Point} point - the point to check\n * @return {boolean} Whether or not the sprite contains the point.\n */\n TilingSprite.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, tempPoint);\n\n var width = this._width;\n var height = this._height;\n var x1 = -width * this.anchor._x;\n\n if (tempPoint.x >= x1 && tempPoint.x < x1 + width)\n {\n var y1 = -height * this.anchor._y;\n\n if (tempPoint.y >= y1 && tempPoint.y < y1 + height)\n {\n return true;\n }\n }\n\n return false;\n };\n\n /**\n * Destroys this sprite and optionally its texture and children\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well\n */\n TilingSprite.prototype.destroy = function destroy (options)\n {\n Sprite.prototype.destroy.call(this, options);\n\n this.tileTransform = null;\n this.uvMatrix = null;\n };\n\n /**\n * Helper function that creates a new tiling sprite based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source - Source to create texture from\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @return {PIXI.TilingSprite} The newly created texture\n */\n TilingSprite.from = function from (source, width, height)\n {\n return new TilingSprite(Texture.from(source), width, height);\n };\n\n /**\n * Helper function that creates a tiling sprite that will use a texture from the TextureCache based on the frameId\n * The frame ids are created when a Texture packer file has been loaded\n *\n * @static\n * @param {string} frameId - The frame Id of the texture in the cache\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @return {PIXI.TilingSprite} A new TilingSprite using a texture from the texture cache matching the frameId\n */\n TilingSprite.fromFrame = function fromFrame (frameId, width, height)\n {\n var texture = TextureCache[frameId];\n\n if (!texture)\n {\n throw new Error((\"The frameId \\\"\" + frameId + \"\\\" does not exist in the texture cache \" + (this)));\n }\n\n return new TilingSprite(texture, width, height);\n };\n\n /**\n * Helper function that creates a sprite that will contain a texture based on an image url\n * If the image is not in the texture cache it will be loaded\n *\n * @static\n * @param {string} imageId - The image url of the texture\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @param {Object} [options] - See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.TilingSprite} A new TilingSprite using a texture from the texture cache matching the image id\n */\n TilingSprite.fromImage = function fromImage (imageId, width, height, options)\n {\n // Fallback support for crossorigin, scaleMode parameters\n if (options && typeof options !== 'object')\n {\n options = {\n scaleMode: arguments[4],\n resourceOptions: {\n crossorigin: arguments[3],\n },\n };\n }\n\n return new TilingSprite(Texture.from(imageId, options), width, height);\n };\n\n /**\n * The width of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this._width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._width = value;\n };\n\n /**\n * The height of the TilingSprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this._height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._height = value;\n };\n\n Object.defineProperties( TilingSprite.prototype, prototypeAccessors );\n\n return TilingSprite;\n}(Sprite));\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform mat3 uTransform;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = (uTransform * vec3(aTextureCoord, 1.0)).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform vec4 uColor;\\nuniform mat3 uMapCoord;\\nuniform vec4 uClampFrame;\\nuniform vec2 uClampOffset;\\n\\nvoid main(void)\\n{\\n vec2 coord = mod(vTextureCoord - uClampOffset, vec2(1.0, 1.0)) + uClampOffset;\\n coord = (uMapCoord * vec3(coord, 1.0)).xy;\\n coord = clamp(coord, uClampFrame.xy, uClampFrame.zw);\\n\\n vec4 sample = texture2D(uSampler, coord);\\n gl_FragColor = sample * uColor;\\n}\\n\";\n\nvar fragmentSimple = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform vec4 uColor;\\n\\nvoid main(void)\\n{\\n vec4 sample = texture2D(uSampler, vTextureCoord);\\n gl_FragColor = sample * uColor;\\n}\\n\";\n\nvar tempMat = new Matrix();\n\n/**\n * WebGL renderer plugin for tiling sprites\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.ObjectRenderer\n */\nvar TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function TilingSpriteRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n var uniforms = { globals: this.renderer.globalUniforms };\n\n this.shader = Shader.from(vertex, fragment, uniforms);\n\n this.simpleShader = Shader.from(vertex, fragmentSimple, uniforms);\n\n this.quad = new QuadUv();\n }\n\n if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer;\n TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer;\n\n /**\n *\n * @param {PIXI.TilingSprite} ts tilingSprite to be rendered\n */\n TilingSpriteRenderer.prototype.render = function render (ts)\n {\n var renderer = this.renderer;\n var quad = this.quad;\n\n var vertices = quad.vertices;\n\n vertices[0] = vertices[6] = (ts._width) * -ts.anchor.x;\n vertices[1] = vertices[3] = ts._height * -ts.anchor.y;\n\n vertices[2] = vertices[4] = (ts._width) * (1.0 - ts.anchor.x);\n vertices[5] = vertices[7] = ts._height * (1.0 - ts.anchor.y);\n\n if (ts.uvRespectAnchor)\n {\n vertices = quad.uvs;\n\n vertices[0] = vertices[6] = -ts.anchor.x;\n vertices[1] = vertices[3] = -ts.anchor.y;\n\n vertices[2] = vertices[4] = 1.0 - ts.anchor.x;\n vertices[5] = vertices[7] = 1.0 - ts.anchor.y;\n }\n\n quad.invalidate();\n\n var tex = ts._texture;\n var baseTex = tex.baseTexture;\n var lt = ts.tileTransform.localTransform;\n var uv = ts.uvMatrix;\n var isSimple = baseTex.isPowerOfTwo\n && tex.frame.width === baseTex.width && tex.frame.height === baseTex.height;\n\n // auto, force repeat wrapMode for big tiling textures\n if (isSimple)\n {\n if (!baseTex._glTextures[renderer.CONTEXT_UID])\n {\n if (baseTex.wrapMode === WRAP_MODES.CLAMP)\n {\n baseTex.wrapMode = WRAP_MODES.REPEAT;\n }\n }\n else\n {\n isSimple = baseTex.wrapMode !== WRAP_MODES.CLAMP;\n }\n }\n\n var shader = isSimple ? this.simpleShader : this.shader;\n\n var w = tex.width;\n var h = tex.height;\n var W = ts._width;\n var H = ts._height;\n\n tempMat.set(lt.a * w / W,\n lt.b * w / H,\n lt.c * h / W,\n lt.d * h / H,\n lt.tx / W,\n lt.ty / H);\n\n // that part is the same as above:\n // tempMat.identity();\n // tempMat.scale(tex.width, tex.height);\n // tempMat.prepend(lt);\n // tempMat.scale(1.0 / ts._width, 1.0 / ts._height);\n\n tempMat.invert();\n if (isSimple)\n {\n tempMat.prepend(uv.mapCoord);\n }\n else\n {\n shader.uniforms.uMapCoord = uv.mapCoord.toArray(true);\n shader.uniforms.uClampFrame = uv.uClampFrame;\n shader.uniforms.uClampOffset = uv.uClampOffset;\n }\n\n shader.uniforms.uTransform = tempMat.toArray(true);\n shader.uniforms.uColor = premultiplyTintToRgba(ts.tint, ts.worldAlpha,\n shader.uniforms.uColor, baseTex.premultiplyAlpha);\n shader.uniforms.translationMatrix = ts.transform.worldTransform.toArray(true);\n shader.uniforms.uSampler = tex;\n\n renderer.shader.bind(shader);\n renderer.geometry.bind(quad);// , renderer.shader.getGLShader());\n\n renderer.state.setBlendMode(correctBlendMode(ts.blendMode, baseTex.premultiplyAlpha));\n renderer.geometry.draw(this.renderer.gl.TRIANGLES, 6, 0);\n };\n\n return TilingSpriteRenderer;\n}(ObjectRenderer));\n\nexport { TilingSprite, TilingSpriteRenderer };\n//# sourceMappingURL=sprite-tiling.es.js.map\n","/*!\n * @pixi/text-bitmap - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/text-bitmap is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture } from '@pixi/core';\nimport { Container } from '@pixi/display';\nimport { Point, Rectangle, ObservablePoint } from '@pixi/math';\nimport { settings } from '@pixi/settings';\nimport { Sprite } from '@pixi/sprite';\nimport { removeItems, getResolutionOfUrl } from '@pixi/utils';\nimport { LoaderResource } from '@pixi/loaders';\n\n/**\n * A BitmapText object will create a line or multiple lines of text using bitmap font.\n *\n * The primary advantage of this class over Text is that all of your textures are pre-generated and loading,\n * meaning that rendering is fast, and changing text has no performance implications.\n *\n * The primary disadvantage is that you need to preload the bitmap font assets, and thus the styling is set in stone.\n * Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters.\n *\n * To split a line you can use '\\n', '\\r' or '\\r\\n' in your string.\n *\n * You can generate the fnt files using\n * http://www.angelcode.com/products/bmfont/ for Windows or\n * http://www.bmglyph.com/ for Mac.\n *\n * A BitmapText can only be created when the font is loaded.\n *\n * ```js\n * // in this case the font is in a file called 'desyrel.fnt'\n * let bitmapText = new PIXI.BitmapText(\"text using a fancy font!\", {font: \"35px Desyrel\", align: \"right\"});\n * ```\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar BitmapText = /*@__PURE__*/(function (Container) {\n function BitmapText(text, style)\n {\n var this$1 = this;\n if ( style === void 0 ) style = {};\n\n Container.call(this);\n\n /**\n * Private tracker for the width of the overall text\n *\n * @member {number}\n * @private\n */\n this._textWidth = 0;\n\n /**\n * Private tracker for the height of the overall text\n *\n * @member {number}\n * @private\n */\n this._textHeight = 0;\n\n /**\n * Private tracker for the letter sprite pool.\n *\n * @member {PIXI.Sprite[]}\n * @private\n */\n this._glyphs = [];\n\n /**\n * Private tracker for the current style.\n *\n * @member {object}\n * @private\n */\n this._font = {\n tint: style.tint !== undefined ? style.tint : 0xFFFFFF,\n align: style.align || 'left',\n name: null,\n size: 0,\n };\n\n /**\n * Private tracker for the current font.\n *\n * @member {object}\n * @private\n */\n this.font = style.font; // run font setter\n\n /**\n * Private tracker for the current text.\n *\n * @member {string}\n * @private\n */\n this._text = text;\n\n /**\n * The max width of this bitmap text in pixels. If the text provided is longer than the\n * value provided, line breaks will be automatically inserted in the last whitespace.\n * Disable by setting value to 0\n *\n * @member {number}\n * @private\n */\n this._maxWidth = 0;\n\n /**\n * The max line height. This is useful when trying to use the total height of the Text,\n * ie: when trying to vertically align.\n *\n * @member {number}\n * @private\n */\n this._maxLineHeight = 0;\n\n /**\n * Letter spacing. This is useful for setting the space between characters.\n * @member {number}\n * @private\n */\n this._letterSpacing = 0;\n\n /**\n * Text anchor. read-only\n *\n * @member {PIXI.ObservablePoint}\n * @private\n */\n this._anchor = new ObservablePoint(function () { this$1.dirty = true; }, this, 0, 0);\n\n /**\n * The dirty state of this object.\n *\n * @member {boolean}\n */\n this.dirty = false;\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n this.roundPixels = settings.ROUND_PIXELS;\n\n this.updateText();\n }\n\n if ( Container ) BitmapText.__proto__ = Container;\n BitmapText.prototype = Object.create( Container && Container.prototype );\n BitmapText.prototype.constructor = BitmapText;\n\n var prototypeAccessors = { tint: { configurable: true },align: { configurable: true },anchor: { configurable: true },font: { configurable: true },text: { configurable: true },maxWidth: { configurable: true },maxLineHeight: { configurable: true },textWidth: { configurable: true },letterSpacing: { configurable: true },textHeight: { configurable: true } };\n\n /**\n * Renders text and updates it when needed\n *\n * @private\n */\n BitmapText.prototype.updateText = function updateText ()\n {\n var data = BitmapText.fonts[this._font.name];\n var scale = this._font.size / data.size;\n var pos = new Point();\n var chars = [];\n var lineWidths = [];\n var text = this._text.replace(/(?:\\r\\n|\\r)/g, '\\n') || ' ';\n var textLength = text.length;\n var maxWidth = this._maxWidth * data.size / this._font.size;\n\n var prevCharCode = null;\n var lastLineWidth = 0;\n var maxLineWidth = 0;\n var line = 0;\n var lastBreakPos = -1;\n var lastBreakWidth = 0;\n var spacesRemoved = 0;\n var maxLineHeight = 0;\n\n for (var i = 0; i < textLength; i++)\n {\n var charCode = text.charCodeAt(i);\n var char = text.charAt(i);\n\n if ((/(?:\\s)/).test(char))\n {\n lastBreakPos = i;\n lastBreakWidth = lastLineWidth;\n }\n\n if (char === '\\r' || char === '\\n')\n {\n lineWidths.push(lastLineWidth);\n maxLineWidth = Math.max(maxLineWidth, lastLineWidth);\n ++line;\n ++spacesRemoved;\n\n pos.x = 0;\n pos.y += data.lineHeight;\n prevCharCode = null;\n continue;\n }\n\n var charData = data.chars[charCode];\n\n if (!charData)\n {\n continue;\n }\n\n if (prevCharCode && charData.kerning[prevCharCode])\n {\n pos.x += charData.kerning[prevCharCode];\n }\n\n chars.push({\n texture: charData.texture,\n line: line,\n charCode: charCode,\n position: new Point(pos.x + charData.xOffset + (this._letterSpacing / 2), pos.y + charData.yOffset),\n });\n pos.x += charData.xAdvance + this._letterSpacing;\n lastLineWidth = pos.x;\n maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height));\n prevCharCode = charCode;\n\n if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth)\n {\n ++spacesRemoved;\n removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos);\n i = lastBreakPos;\n lastBreakPos = -1;\n\n lineWidths.push(lastBreakWidth);\n maxLineWidth = Math.max(maxLineWidth, lastBreakWidth);\n line++;\n\n pos.x = 0;\n pos.y += data.lineHeight;\n prevCharCode = null;\n }\n }\n\n var lastChar = text.charAt(text.length - 1);\n\n if (lastChar !== '\\r' && lastChar !== '\\n')\n {\n if ((/(?:\\s)/).test(lastChar))\n {\n lastLineWidth = lastBreakWidth;\n }\n\n lineWidths.push(lastLineWidth);\n maxLineWidth = Math.max(maxLineWidth, lastLineWidth);\n }\n\n var lineAlignOffsets = [];\n\n for (var i$1 = 0; i$1 <= line; i$1++)\n {\n var alignOffset = 0;\n\n if (this._font.align === 'right')\n {\n alignOffset = maxLineWidth - lineWidths[i$1];\n }\n else if (this._font.align === 'center')\n {\n alignOffset = (maxLineWidth - lineWidths[i$1]) / 2;\n }\n\n lineAlignOffsets.push(alignOffset);\n }\n\n var lenChars = chars.length;\n var tint = this.tint;\n\n for (var i$2 = 0; i$2 < lenChars; i$2++)\n {\n var c = this._glyphs[i$2]; // get the next glyph sprite\n\n if (c)\n {\n c.texture = chars[i$2].texture;\n }\n else\n {\n c = new Sprite(chars[i$2].texture);\n c.roundPixels = this.roundPixels;\n this._glyphs.push(c);\n }\n\n c.position.x = (chars[i$2].position.x + lineAlignOffsets[chars[i$2].line]) * scale;\n c.position.y = chars[i$2].position.y * scale;\n c.scale.x = c.scale.y = scale;\n c.tint = tint;\n\n if (!c.parent)\n {\n this.addChild(c);\n }\n }\n\n // remove unnecessary children.\n for (var i$3 = lenChars; i$3 < this._glyphs.length; ++i$3)\n {\n this.removeChild(this._glyphs[i$3]);\n }\n\n this._textWidth = maxLineWidth * scale;\n this._textHeight = (pos.y + data.lineHeight) * scale;\n\n // apply anchor\n if (this.anchor.x !== 0 || this.anchor.y !== 0)\n {\n for (var i$4 = 0; i$4 < lenChars; i$4++)\n {\n this._glyphs[i$4].x -= this._textWidth * this.anchor.x;\n this._glyphs[i$4].y -= this._textHeight * this.anchor.y;\n }\n }\n this._maxLineHeight = maxLineHeight * scale;\n };\n\n /**\n * Updates the transform of this object\n *\n * @private\n */\n BitmapText.prototype.updateTransform = function updateTransform ()\n {\n this.validate();\n this.containerUpdateTransform();\n };\n\n /**\n * Validates text before calling parent's getLocalBounds\n *\n * @return {PIXI.Rectangle} The rectangular bounding area\n */\n BitmapText.prototype.getLocalBounds = function getLocalBounds ()\n {\n this.validate();\n\n return Container.prototype.getLocalBounds.call(this);\n };\n\n /**\n * Updates text when needed\n *\n * @private\n */\n BitmapText.prototype.validate = function validate ()\n {\n if (this.dirty)\n {\n this.updateText();\n this.dirty = false;\n }\n };\n\n /**\n * The tint of the BitmapText object.\n *\n * @member {number}\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._font.tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._font.tint = (typeof value === 'number' && value >= 0) ? value : 0xFFFFFF;\n\n this.dirty = true;\n };\n\n /**\n * The alignment of the BitmapText object.\n *\n * @member {string}\n * @default 'left'\n */\n prototypeAccessors.align.get = function ()\n {\n return this._font.align;\n };\n\n prototypeAccessors.align.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._font.align = value || 'left';\n\n this.dirty = true;\n };\n\n /**\n * The anchor sets the origin point of the text.\n *\n * The default is `(0,0)`, this means the text's origin is the top left.\n *\n * Setting the anchor to `(0.5,0.5)` means the text's origin is centered.\n *\n * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner.\n *\n * @member {PIXI.Point | number}\n */\n prototypeAccessors.anchor.get = function ()\n {\n return this._anchor;\n };\n\n prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (typeof value === 'number')\n {\n this._anchor.set(value);\n }\n else\n {\n this._anchor.copyFrom(value);\n }\n };\n\n /**\n * The font descriptor of the BitmapText object.\n *\n * @member {object}\n */\n prototypeAccessors.font.get = function ()\n {\n return this._font;\n };\n\n prototypeAccessors.font.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (!value)\n {\n return;\n }\n\n if (typeof value === 'string')\n {\n value = value.split(' ');\n\n this._font.name = value.length === 1 ? value[0] : value.slice(1).join(' ');\n this._font.size = value.length >= 2 ? parseInt(value[0], 10) : BitmapText.fonts[this._font.name].size;\n }\n else\n {\n this._font.name = value.name;\n this._font.size = typeof value.size === 'number' ? value.size : parseInt(value.size, 10);\n }\n\n this.dirty = true;\n };\n\n /**\n * The text of the BitmapText object.\n *\n * @member {string}\n */\n prototypeAccessors.text.get = function ()\n {\n return this._text;\n };\n\n prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc\n {\n text = String(text === null || text === undefined ? '' : text);\n\n if (this._text === text)\n {\n return;\n }\n this._text = text;\n this.dirty = true;\n };\n\n /**\n * The max width of this bitmap text in pixels. If the text provided is longer than the\n * value provided, line breaks will be automatically inserted in the last whitespace.\n * Disable by setting the value to 0.\n *\n * @member {number}\n */\n prototypeAccessors.maxWidth.get = function ()\n {\n return this._maxWidth;\n };\n\n prototypeAccessors.maxWidth.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._maxWidth === value)\n {\n return;\n }\n this._maxWidth = value;\n this.dirty = true;\n };\n\n /**\n * The max line height. This is useful when trying to use the total height of the Text,\n * i.e. when trying to vertically align.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.maxLineHeight.get = function ()\n {\n this.validate();\n\n return this._maxLineHeight;\n };\n\n /**\n * The width of the overall text, different from fontSize,\n * which is defined in the style object.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.textWidth.get = function ()\n {\n this.validate();\n\n return this._textWidth;\n };\n\n /**\n * Additional space between characters.\n *\n * @member {number}\n */\n prototypeAccessors.letterSpacing.get = function ()\n {\n return this._letterSpacing;\n };\n\n prototypeAccessors.letterSpacing.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._letterSpacing !== value)\n {\n this._letterSpacing = value;\n this.dirty = true;\n }\n };\n\n /**\n * The height of the overall text, different from fontSize,\n * which is defined in the style object.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.textHeight.get = function ()\n {\n this.validate();\n\n return this._textHeight;\n };\n\n /**\n * Register a bitmap font with data and a texture.\n *\n * @static\n * @param {XMLDocument} xml - The XML document data.\n * @param {Object.|PIXI.Texture|PIXI.Texture[]} textures - List of textures for each page.\n * If providing an object, the key is the `` element's `file` attribute in the FNT file.\n * @return {Object} Result font object with font, size, lineHeight and char fields.\n */\n BitmapText.registerFont = function registerFont (xml, textures)\n {\n var data = {};\n var info = xml.getElementsByTagName('info')[0];\n var common = xml.getElementsByTagName('common')[0];\n var pages = xml.getElementsByTagName('page');\n var res = getResolutionOfUrl(pages[0].getAttribute('file'), settings.RESOLUTION);\n var pagesTextures = {};\n\n data.font = info.getAttribute('face');\n data.size = parseInt(info.getAttribute('size'), 10);\n data.lineHeight = parseInt(common.getAttribute('lineHeight'), 10) / res;\n data.chars = {};\n\n // Single texture, convert to list\n if (textures instanceof Texture)\n {\n textures = [textures];\n }\n\n // Convert the input Texture, Textures or object\n // into a page Texture lookup by \"id\"\n for (var i = 0; i < pages.length; i++)\n {\n var id = pages[i].getAttribute('id');\n var file = pages[i].getAttribute('file');\n\n pagesTextures[id] = textures instanceof Array ? textures[i] : textures[file];\n }\n\n // parse letters\n var letters = xml.getElementsByTagName('char');\n\n for (var i$1 = 0; i$1 < letters.length; i$1++)\n {\n var letter = letters[i$1];\n var charCode = parseInt(letter.getAttribute('id'), 10);\n var page = letter.getAttribute('page') || 0;\n var textureRect = new Rectangle(\n (parseInt(letter.getAttribute('x'), 10) / res) + (pagesTextures[page].frame.x / res),\n (parseInt(letter.getAttribute('y'), 10) / res) + (pagesTextures[page].frame.y / res),\n parseInt(letter.getAttribute('width'), 10) / res,\n parseInt(letter.getAttribute('height'), 10) / res\n );\n\n data.chars[charCode] = {\n xOffset: parseInt(letter.getAttribute('xoffset'), 10) / res,\n yOffset: parseInt(letter.getAttribute('yoffset'), 10) / res,\n xAdvance: parseInt(letter.getAttribute('xadvance'), 10) / res,\n kerning: {},\n texture: new Texture(pagesTextures[page].baseTexture, textureRect),\n page: page,\n };\n }\n\n // parse kernings\n var kernings = xml.getElementsByTagName('kerning');\n\n for (var i$2 = 0; i$2 < kernings.length; i$2++)\n {\n var kerning = kernings[i$2];\n var first = parseInt(kerning.getAttribute('first'), 10) / res;\n var second = parseInt(kerning.getAttribute('second'), 10) / res;\n var amount = parseInt(kerning.getAttribute('amount'), 10) / res;\n\n if (data.chars[second])\n {\n data.chars[second].kerning[first] = amount;\n }\n }\n\n // I'm leaving this as a temporary fix so we can test the bitmap fonts in v3\n // but it's very likely to change\n BitmapText.fonts[data.font] = data;\n\n return data;\n };\n\n Object.defineProperties( BitmapText.prototype, prototypeAccessors );\n\n return BitmapText;\n}(Container));\n\nBitmapText.fonts = {};\n\n/**\n * {@link PIXI.Loader Loader} middleware for loading\n * bitmap-based fonts suitable for using with {@link PIXI.BitmapText}.\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar BitmapFontLoader = function BitmapFontLoader () {};\n\nBitmapFontLoader.parse = function parse (resource, texture)\n{\n resource.bitmapFont = BitmapText.registerFont(resource.data, texture);\n};\n\n/**\n * Called when the plugin is installed.\n *\n * @see PIXI.Loader.registerPlugin\n */\nBitmapFontLoader.add = function add ()\n{\n LoaderResource.setExtensionXhrType('fnt', LoaderResource.XHR_RESPONSE_TYPE.DOCUMENT);\n};\n\n/**\n * Replacement for NodeJS's path.dirname\n * @private\n * @param {string} url Path to get directory for\n */\nBitmapFontLoader.dirname = function dirname (url)\n{\n var dir = url\n .replace(/\\/$/, '') // replace trailing slash\n .replace(/\\/[^\\/]*$/, ''); // remove everything after the last\n\n // File request is relative, use current directory\n if (dir === url)\n {\n return '.';\n }\n // Started with a slash\n else if (dir === '')\n {\n return '/';\n }\n\n return dir;\n};\n\n/**\n * Called after a resource is loaded.\n * @see PIXI.Loader.loaderMiddleware\n * @param {PIXI.LoaderResource} resource\n * @param {function} next\n */\nBitmapFontLoader.use = function use (resource, next)\n{\n // skip if no data or not xml data\n if (!resource.data || resource.type !== LoaderResource.TYPE.XML)\n {\n next();\n\n return;\n }\n\n // skip if not bitmap font data, using some silly duck-typing\n if (resource.data.getElementsByTagName('page').length === 0\n || resource.data.getElementsByTagName('info').length === 0\n || resource.data.getElementsByTagName('info')[0].getAttribute('face') === null\n )\n {\n next();\n\n return;\n }\n\n var xmlUrl = !resource.isDataUrl ? BitmapFontLoader.dirname(resource.url) : '';\n\n if (resource.isDataUrl)\n {\n if (xmlUrl === '.')\n {\n xmlUrl = '';\n }\n\n if (this.baseUrl && xmlUrl)\n {\n // if baseurl has a trailing slash then add one to xmlUrl so the replace works below\n if (this.baseUrl.charAt(this.baseUrl.length - 1) === '/')\n {\n xmlUrl += '/';\n }\n }\n }\n\n // remove baseUrl from xmlUrl\n xmlUrl = xmlUrl.replace(this.baseUrl, '');\n\n // if there is an xmlUrl now, it needs a trailing slash. Ensure that it does if the string isn't empty.\n if (xmlUrl && xmlUrl.charAt(xmlUrl.length - 1) !== '/')\n {\n xmlUrl += '/';\n }\n\n var pages = resource.data.getElementsByTagName('page');\n var textures = {};\n\n // Handle completed, when the number of textures\n // load is the same number as references in the fnt file\n var completed = function (page) {\n textures[page.metadata.pageFile] = page.texture;\n\n if (Object.keys(textures).length === pages.length)\n {\n BitmapFontLoader.parse(resource, textures);\n next();\n }\n };\n\n for (var i = 0; i < pages.length; ++i)\n {\n var pageFile = pages[i].getAttribute('file');\n var url = xmlUrl + pageFile;\n var exists = false;\n\n // incase the image is loaded outside\n // using the same loader, resource will be available\n for (var name in this.resources)\n {\n var bitmapResource = this.resources[name];\n\n if (bitmapResource.url === url)\n {\n bitmapResource.metadata.pageFile = pageFile;\n if (bitmapResource.texture)\n {\n completed(bitmapResource);\n }\n else\n {\n bitmapResource.onAfterMiddleware.add(completed);\n }\n exists = true;\n break;\n }\n }\n\n // texture is not loaded, we'll attempt to add\n // it to the load and add the texture to the list\n if (!exists)\n {\n // Standard loading options for images\n var options = {\n crossOrigin: resource.crossOrigin,\n loadType: LoaderResource.LOAD_TYPE.IMAGE,\n metadata: Object.assign(\n { pageFile: pageFile },\n resource.metadata.imageMetadata\n ),\n parentResource: resource,\n };\n\n this.add(url, options, completed);\n }\n }\n};\n\nexport { BitmapFontLoader, BitmapText };\n//# sourceMappingURL=text-bitmap.es.js.map\n","/*!\n * @pixi/filter-color-matrix - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/filter-color-matrix is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Filter, defaultFilterVertex } from '@pixi/core';\n\nvar fragment = \"varying vec2 vTextureCoord;\\nuniform sampler2D uSampler;\\nuniform float m[20];\\nuniform float uAlpha;\\n\\nvoid main(void)\\n{\\n vec4 c = texture2D(uSampler, vTextureCoord);\\n\\n if (uAlpha == 0.0) {\\n gl_FragColor = c;\\n return;\\n }\\n\\n // Un-premultiply alpha before applying the color matrix. See issue #3539.\\n if (c.a > 0.0) {\\n c.rgb /= c.a;\\n }\\n\\n vec4 result;\\n\\n result.r = (m[0] * c.r);\\n result.r += (m[1] * c.g);\\n result.r += (m[2] * c.b);\\n result.r += (m[3] * c.a);\\n result.r += m[4];\\n\\n result.g = (m[5] * c.r);\\n result.g += (m[6] * c.g);\\n result.g += (m[7] * c.b);\\n result.g += (m[8] * c.a);\\n result.g += m[9];\\n\\n result.b = (m[10] * c.r);\\n result.b += (m[11] * c.g);\\n result.b += (m[12] * c.b);\\n result.b += (m[13] * c.a);\\n result.b += m[14];\\n\\n result.a = (m[15] * c.r);\\n result.a += (m[16] * c.g);\\n result.a += (m[17] * c.b);\\n result.a += (m[18] * c.a);\\n result.a += m[19];\\n\\n vec3 rgb = mix(c.rgb, result.rgb, uAlpha);\\n\\n // Premultiply alpha again.\\n rgb *= result.a;\\n\\n gl_FragColor = vec4(rgb, result.a);\\n}\\n\";\n\n/**\n * The ColorMatrixFilter class lets you apply a 5x4 matrix transformation on the RGBA\n * color and alpha values of every pixel on your displayObject to produce a result\n * with a new set of RGBA color and alpha values. It's pretty powerful!\n *\n * ```js\n * let colorMatrix = new PIXI.filters.ColorMatrixFilter();\n * container.filters = [colorMatrix];\n * colorMatrix.contrast(2);\n * ```\n * @author Clément Chenebault \n * @class\n * @extends PIXI.Filter\n * @memberof PIXI.filters\n */\nvar ColorMatrixFilter = /*@__PURE__*/(function (Filter) {\n function ColorMatrixFilter()\n {\n var uniforms = {\n m: new Float32Array([1, 0, 0, 0, 0,\n 0, 1, 0, 0, 0,\n 0, 0, 1, 0, 0,\n 0, 0, 0, 1, 0]),\n uAlpha: 1,\n };\n\n Filter.call(this, defaultFilterVertex, fragment, uniforms);\n\n this.alpha = 1;\n }\n\n if ( Filter ) ColorMatrixFilter.__proto__ = Filter;\n ColorMatrixFilter.prototype = Object.create( Filter && Filter.prototype );\n ColorMatrixFilter.prototype.constructor = ColorMatrixFilter;\n\n var prototypeAccessors = { matrix: { configurable: true },alpha: { configurable: true } };\n\n /**\n * Transforms current matrix and set the new one\n *\n * @param {number[]} matrix - 5x4 matrix\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype._loadMatrix = function _loadMatrix (matrix, multiply)\n {\n if ( multiply === void 0 ) multiply = false;\n\n var newMatrix = matrix;\n\n if (multiply)\n {\n this._multiply(newMatrix, this.uniforms.m, matrix);\n newMatrix = this._colorMatrix(newMatrix);\n }\n\n // set the new matrix\n this.uniforms.m = newMatrix;\n };\n\n /**\n * Multiplies two mat5's\n *\n * @private\n * @param {number[]} out - 5x4 matrix the receiving matrix\n * @param {number[]} a - 5x4 matrix the first operand\n * @param {number[]} b - 5x4 matrix the second operand\n * @returns {number[]} 5x4 matrix\n */\n ColorMatrixFilter.prototype._multiply = function _multiply (out, a, b)\n {\n // Red Channel\n out[0] = (a[0] * b[0]) + (a[1] * b[5]) + (a[2] * b[10]) + (a[3] * b[15]);\n out[1] = (a[0] * b[1]) + (a[1] * b[6]) + (a[2] * b[11]) + (a[3] * b[16]);\n out[2] = (a[0] * b[2]) + (a[1] * b[7]) + (a[2] * b[12]) + (a[3] * b[17]);\n out[3] = (a[0] * b[3]) + (a[1] * b[8]) + (a[2] * b[13]) + (a[3] * b[18]);\n out[4] = (a[0] * b[4]) + (a[1] * b[9]) + (a[2] * b[14]) + (a[3] * b[19]) + a[4];\n\n // Green Channel\n out[5] = (a[5] * b[0]) + (a[6] * b[5]) + (a[7] * b[10]) + (a[8] * b[15]);\n out[6] = (a[5] * b[1]) + (a[6] * b[6]) + (a[7] * b[11]) + (a[8] * b[16]);\n out[7] = (a[5] * b[2]) + (a[6] * b[7]) + (a[7] * b[12]) + (a[8] * b[17]);\n out[8] = (a[5] * b[3]) + (a[6] * b[8]) + (a[7] * b[13]) + (a[8] * b[18]);\n out[9] = (a[5] * b[4]) + (a[6] * b[9]) + (a[7] * b[14]) + (a[8] * b[19]) + a[9];\n\n // Blue Channel\n out[10] = (a[10] * b[0]) + (a[11] * b[5]) + (a[12] * b[10]) + (a[13] * b[15]);\n out[11] = (a[10] * b[1]) + (a[11] * b[6]) + (a[12] * b[11]) + (a[13] * b[16]);\n out[12] = (a[10] * b[2]) + (a[11] * b[7]) + (a[12] * b[12]) + (a[13] * b[17]);\n out[13] = (a[10] * b[3]) + (a[11] * b[8]) + (a[12] * b[13]) + (a[13] * b[18]);\n out[14] = (a[10] * b[4]) + (a[11] * b[9]) + (a[12] * b[14]) + (a[13] * b[19]) + a[14];\n\n // Alpha Channel\n out[15] = (a[15] * b[0]) + (a[16] * b[5]) + (a[17] * b[10]) + (a[18] * b[15]);\n out[16] = (a[15] * b[1]) + (a[16] * b[6]) + (a[17] * b[11]) + (a[18] * b[16]);\n out[17] = (a[15] * b[2]) + (a[16] * b[7]) + (a[17] * b[12]) + (a[18] * b[17]);\n out[18] = (a[15] * b[3]) + (a[16] * b[8]) + (a[17] * b[13]) + (a[18] * b[18]);\n out[19] = (a[15] * b[4]) + (a[16] * b[9]) + (a[17] * b[14]) + (a[18] * b[19]) + a[19];\n\n return out;\n };\n\n /**\n * Create a Float32 Array and normalize the offset component to 0-1\n *\n * @private\n * @param {number[]} matrix - 5x4 matrix\n * @return {number[]} 5x4 matrix with all values between 0-1\n */\n ColorMatrixFilter.prototype._colorMatrix = function _colorMatrix (matrix)\n {\n // Create a Float32 Array and normalize the offset component to 0-1\n var m = new Float32Array(matrix);\n\n m[4] /= 255;\n m[9] /= 255;\n m[14] /= 255;\n m[19] /= 255;\n\n return m;\n };\n\n /**\n * Adjusts brightness\n *\n * @param {number} b - value of the brigthness (0-1, where 0 is black)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.brightness = function brightness (b, multiply)\n {\n var matrix = [\n b, 0, 0, 0, 0,\n 0, b, 0, 0, 0,\n 0, 0, b, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the matrices in grey scales\n *\n * @param {number} scale - value of the grey (0-1, where 0 is black)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.greyscale = function greyscale (scale, multiply)\n {\n var matrix = [\n scale, scale, scale, 0, 0,\n scale, scale, scale, 0, 0,\n scale, scale, scale, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the black and white matrice.\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.blackAndWhite = function blackAndWhite (multiply)\n {\n var matrix = [\n 0.3, 0.6, 0.1, 0, 0,\n 0.3, 0.6, 0.1, 0, 0,\n 0.3, 0.6, 0.1, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the hue property of the color\n *\n * @param {number} rotation - in degrees\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.hue = function hue (rotation, multiply)\n {\n rotation = (rotation || 0) / 180 * Math.PI;\n\n var cosR = Math.cos(rotation);\n var sinR = Math.sin(rotation);\n var sqrt = Math.sqrt;\n\n /* a good approximation for hue rotation\n This matrix is far better than the versions with magic luminance constants\n formerly used here, but also used in the starling framework (flash) and known from this\n old part of the internet: quasimondo.com/archives/000565.php\n\n This new matrix is based on rgb cube rotation in space. Look here for a more descriptive\n implementation as a shader not a general matrix:\n https://github.com/evanw/glfx.js/blob/58841c23919bd59787effc0333a4897b43835412/src/filters/adjust/huesaturation.js\n\n This is the source for the code:\n see http://stackoverflow.com/questions/8507885/shift-hue-of-an-rgb-color/8510751#8510751\n */\n\n var w = 1 / 3;\n var sqrW = sqrt(w); // weight is\n\n var a00 = cosR + ((1.0 - cosR) * w);\n var a01 = (w * (1.0 - cosR)) - (sqrW * sinR);\n var a02 = (w * (1.0 - cosR)) + (sqrW * sinR);\n\n var a10 = (w * (1.0 - cosR)) + (sqrW * sinR);\n var a11 = cosR + (w * (1.0 - cosR));\n var a12 = (w * (1.0 - cosR)) - (sqrW * sinR);\n\n var a20 = (w * (1.0 - cosR)) - (sqrW * sinR);\n var a21 = (w * (1.0 - cosR)) + (sqrW * sinR);\n var a22 = cosR + (w * (1.0 - cosR));\n\n var matrix = [\n a00, a01, a02, 0, 0,\n a10, a11, a12, 0, 0,\n a20, a21, a22, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the contrast matrix, increase the separation between dark and bright\n * Increase contrast : shadows darker and highlights brighter\n * Decrease contrast : bring the shadows up and the highlights down\n *\n * @param {number} amount - value of the contrast (0-1)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.contrast = function contrast (amount, multiply)\n {\n var v = (amount || 0) + 1;\n var o = -0.5 * (v - 1);\n\n var matrix = [\n v, 0, 0, 0, o,\n 0, v, 0, 0, o,\n 0, 0, v, 0, o,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the saturation matrix, increase the separation between colors\n * Increase saturation : increase contrast, brightness, and sharpness\n *\n * @param {number} amount - The saturation amount (0-1)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.saturate = function saturate (amount, multiply)\n {\n if ( amount === void 0 ) amount = 0;\n\n var x = (amount * 2 / 3) + 1;\n var y = ((x - 1) * -0.5);\n\n var matrix = [\n x, y, y, 0, 0,\n y, x, y, 0, 0,\n y, y, x, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Desaturate image (remove color)\n *\n * Call the saturate function\n *\n */\n ColorMatrixFilter.prototype.desaturate = function desaturate () // eslint-disable-line no-unused-vars\n {\n this.saturate(-1);\n };\n\n /**\n * Negative image (inverse of classic rgb matrix)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.negative = function negative (multiply)\n {\n var matrix = [\n -1, 0, 0, 1, 0,\n 0, -1, 0, 1, 0,\n 0, 0, -1, 1, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Sepia image\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.sepia = function sepia (multiply)\n {\n var matrix = [\n 0.393, 0.7689999, 0.18899999, 0, 0,\n 0.349, 0.6859999, 0.16799999, 0, 0,\n 0.272, 0.5339999, 0.13099999, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Color motion picture process invented in 1916 (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.technicolor = function technicolor (multiply)\n {\n var matrix = [\n 1.9125277891456083, -0.8545344976951645, -0.09155508482755585, 0, 11.793603434377337,\n -0.3087833385928097, 1.7658908555458428, -0.10601743074722245, 0, -70.35205161461398,\n -0.231103377548616, -0.7501899197440212, 1.847597816108189, 0, 30.950940869491138,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Polaroid filter\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.polaroid = function polaroid (multiply)\n {\n var matrix = [\n 1.438, -0.062, -0.062, 0, 0,\n -0.122, 1.378, -0.122, 0, 0,\n -0.016, -0.016, 1.483, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Filter who transforms : Red -> Blue and Blue -> Red\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.toBGR = function toBGR (multiply)\n {\n var matrix = [\n 0, 0, 1, 0, 0,\n 0, 1, 0, 0, 0,\n 1, 0, 0, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Color reversal film introduced by Eastman Kodak in 1935. (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.kodachrome = function kodachrome (multiply)\n {\n var matrix = [\n 1.1285582396593525, -0.3967382283601348, -0.03992559172921793, 0, 63.72958762196502,\n -0.16404339962244616, 1.0835251566291304, -0.05498805115633132, 0, 24.732407896706203,\n -0.16786010706155763, -0.5603416277695248, 1.6014850761964943, 0, 35.62982807460946,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Brown delicious browni filter (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.browni = function browni (multiply)\n {\n var matrix = [\n 0.5997023498159715, 0.34553243048391263, -0.2708298674538042, 0, 47.43192855600873,\n -0.037703249837783157, 0.8609577587992641, 0.15059552388459913, 0, -36.96841498319127,\n 0.24113635128153335, -0.07441037908422492, 0.44972182064877153, 0, -7.562075277591283,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Vintage filter (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.vintage = function vintage (multiply)\n {\n var matrix = [\n 0.6279345635605994, 0.3202183420819367, -0.03965408211312453, 0, 9.651285835294123,\n 0.02578397704808868, 0.6441188644374771, 0.03259127616149294, 0, 7.462829176470591,\n 0.0466055556782719, -0.0851232987247891, 0.5241648018700465, 0, 5.159190588235296,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * We don't know exactly what it does, kind of gradient map, but funny to play with!\n *\n * @param {number} desaturation - Tone values.\n * @param {number} toned - Tone values.\n * @param {string} lightColor - Tone values, example: `0xFFE580`\n * @param {string} darkColor - Tone values, example: `0xFFE580`\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.colorTone = function colorTone (desaturation, toned, lightColor, darkColor, multiply)\n {\n desaturation = desaturation || 0.2;\n toned = toned || 0.15;\n lightColor = lightColor || 0xFFE580;\n darkColor = darkColor || 0x338000;\n\n var lR = ((lightColor >> 16) & 0xFF) / 255;\n var lG = ((lightColor >> 8) & 0xFF) / 255;\n var lB = (lightColor & 0xFF) / 255;\n\n var dR = ((darkColor >> 16) & 0xFF) / 255;\n var dG = ((darkColor >> 8) & 0xFF) / 255;\n var dB = (darkColor & 0xFF) / 255;\n\n var matrix = [\n 0.3, 0.59, 0.11, 0, 0,\n lR, lG, lB, desaturation, 0,\n dR, dG, dB, toned, 0,\n lR - dR, lG - dG, lB - dB, 0, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Night effect\n *\n * @param {number} intensity - The intensity of the night effect.\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.night = function night (intensity, multiply)\n {\n intensity = intensity || 0.1;\n var matrix = [\n intensity * (-2.0), -intensity, 0, 0, 0,\n -intensity, 0, intensity, 0, 0,\n 0, intensity, intensity * 2.0, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Predator effect\n *\n * Erase the current matrix by setting a new indepent one\n *\n * @param {number} amount - how much the predator feels his future victim\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.predator = function predator (amount, multiply)\n {\n var matrix = [\n // row 1\n 11.224130630493164 * amount,\n -4.794486999511719 * amount,\n -2.8746118545532227 * amount,\n 0 * amount,\n 0.40342438220977783 * amount,\n // row 2\n -3.6330697536468506 * amount,\n 9.193157196044922 * amount,\n -2.951810836791992 * amount,\n 0 * amount,\n -1.316135048866272 * amount,\n // row 3\n -3.2184197902679443 * amount,\n -4.2375030517578125 * amount,\n 7.476448059082031 * amount,\n 0 * amount,\n 0.8044459223747253 * amount,\n // row 4\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * LSD effect\n *\n * Multiply the current matrix\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.lsd = function lsd (multiply)\n {\n var matrix = [\n 2, -0.4, 0.5, 0, 0,\n -0.5, 2, -0.4, 0, 0,\n -0.4, -0.5, 3, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Erase the current matrix by setting the default one\n *\n */\n ColorMatrixFilter.prototype.reset = function reset ()\n {\n var matrix = [\n 1, 0, 0, 0, 0,\n 0, 1, 0, 0, 0,\n 0, 0, 1, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, false);\n };\n\n /**\n * The matrix of the color matrix filter\n *\n * @member {number[]}\n * @default [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]\n */\n prototypeAccessors.matrix.get = function ()\n {\n return this.uniforms.m;\n };\n\n prototypeAccessors.matrix.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uniforms.m = value;\n };\n\n /**\n * The opacity value to use when mixing the original and resultant colors.\n *\n * When the value is 0, the original color is used without modification.\n * When the value is 1, the result color is used.\n * When in the range (0, 1) the color is interpolated between the original and result by this amount.\n *\n * @member {number}\n * @default 1\n */\n prototypeAccessors.alpha.get = function ()\n {\n return this.uniforms.uAlpha;\n };\n\n prototypeAccessors.alpha.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uniforms.uAlpha = value;\n };\n\n Object.defineProperties( ColorMatrixFilter.prototype, prototypeAccessors );\n\n return ColorMatrixFilter;\n}(Filter));\n\n// Americanized alias\nColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale;\n\nexport { ColorMatrixFilter };\n//# sourceMappingURL=filter-color-matrix.es.js.map\n","/*!\n * @pixi/mixin-cache-as-bitmap - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/mixin-cache-as-bitmap is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { RenderTexture, BaseTexture, Texture } from '@pixi/core';\nimport { Sprite } from '@pixi/sprite';\nimport { DisplayObject } from '@pixi/display';\nimport { Matrix } from '@pixi/math';\nimport { uid } from '@pixi/utils';\nimport { settings } from '@pixi/settings';\n\nvar _tempMatrix = new Matrix();\n\nDisplayObject.prototype._cacheAsBitmap = false;\nDisplayObject.prototype._cacheData = false;\n\n// figured theres no point adding ALL the extra variables to prototype.\n// this model can hold the information needed. This can also be generated on demand as\n// most objects are not cached as bitmaps.\n/**\n * @class\n * @ignore\n */\nvar CacheData = function CacheData()\n{\n this.textureCacheId = null;\n\n this.originalRender = null;\n this.originalRenderCanvas = null;\n this.originalCalculateBounds = null;\n this.originalGetLocalBounds = null;\n\n this.originalUpdateTransform = null;\n this.originalHitTest = null;\n this.originalDestroy = null;\n this.originalMask = null;\n this.originalFilterArea = null;\n this.sprite = null;\n};\n\nObject.defineProperties(DisplayObject.prototype, {\n /**\n * Set this to true if you want this display object to be cached as a bitmap.\n * This basically takes a snap shot of the display object as it is at that moment. It can\n * provide a performance benefit for complex static displayObjects.\n * To remove simply set this property to `false`\n *\n * IMPORTANT GOTCHA - Make sure that all your textures are preloaded BEFORE setting this property to true\n * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n cacheAsBitmap: {\n get: function get()\n {\n return this._cacheAsBitmap;\n },\n set: function set(value)\n {\n if (this._cacheAsBitmap === value)\n {\n return;\n }\n\n this._cacheAsBitmap = value;\n\n var data;\n\n if (value)\n {\n if (!this._cacheData)\n {\n this._cacheData = new CacheData();\n }\n\n data = this._cacheData;\n\n data.originalRender = this.render;\n data.originalRenderCanvas = this.renderCanvas;\n\n data.originalUpdateTransform = this.updateTransform;\n data.originalCalculateBounds = this.calculateBounds;\n data.originalGetLocalBounds = this.getLocalBounds;\n\n data.originalDestroy = this.destroy;\n\n data.originalContainsPoint = this.containsPoint;\n\n data.originalMask = this._mask;\n data.originalFilterArea = this.filterArea;\n\n this.render = this._renderCached;\n this.renderCanvas = this._renderCachedCanvas;\n\n this.destroy = this._cacheAsBitmapDestroy;\n }\n else\n {\n data = this._cacheData;\n\n if (data.sprite)\n {\n this._destroyCachedDisplayObject();\n }\n\n this.render = data.originalRender;\n this.renderCanvas = data.originalRenderCanvas;\n this.calculateBounds = data.originalCalculateBounds;\n this.getLocalBounds = data.originalGetLocalBounds;\n\n this.destroy = data.originalDestroy;\n\n this.updateTransform = data.originalUpdateTransform;\n this.containsPoint = data.originalContainsPoint;\n\n this._mask = data.originalMask;\n this.filterArea = data.originalFilterArea;\n }\n },\n },\n});\n\n/**\n * Renders a cached version of the sprite with WebGL\n *\n * @private\n * @function _renderCached\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._renderCached = function _renderCached(renderer)\n{\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n this._initCachedDisplayObject(renderer);\n\n this._cacheData.sprite.transform._worldID = this.transform._worldID;\n this._cacheData.sprite.worldAlpha = this.worldAlpha;\n this._cacheData.sprite._render(renderer);\n};\n\n/**\n * Prepares the WebGL renderer to cache the sprite\n *\n * @private\n * @function _initCachedDisplayObject\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._initCachedDisplayObject = function _initCachedDisplayObject(renderer)\n{\n if (this._cacheData && this._cacheData.sprite)\n {\n return;\n }\n\n // make sure alpha is set to 1 otherwise it will get rendered as invisible!\n var cacheAlpha = this.alpha;\n\n this.alpha = 1;\n\n // first we flush anything left in the renderer (otherwise it would get rendered to the cached texture)\n renderer.batch.flush();\n // this.filters= [];\n\n // next we find the dimensions of the untransformed object\n // this function also calls updatetransform on all its children as part of the measuring.\n // This means we don't need to update the transform again in this function\n // TODO pass an object to clone too? saves having to create a new one each time!\n var bounds = this.getLocalBounds().clone();\n\n // add some padding!\n if (this.filters)\n {\n var padding = this.filters[0].padding;\n\n bounds.pad(padding);\n }\n\n bounds.ceil(settings.RESOLUTION);\n\n // for now we cache the current renderTarget that the WebGL renderer is currently using.\n // this could be more elegant..\n var cachedRenderTexture = renderer.renderTexture.current;\n var cachedSourceFrame = renderer.renderTexture.sourceFrame;\n var cachedProjectionTransform = renderer.projection.transform;\n\n // We also store the filter stack - I will definitely look to change how this works a little later down the line.\n // const stack = renderer.filterManager.filterStack;\n\n // this renderTexture will be used to store the cached DisplayObject\n var renderTexture = RenderTexture.create(bounds.width, bounds.height);\n\n var textureCacheId = \"cacheAsBitmap_\" + (uid());\n\n this._cacheData.textureCacheId = textureCacheId;\n\n BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId);\n Texture.addToCache(renderTexture, textureCacheId);\n\n // need to set //\n var m = _tempMatrix;\n\n m.tx = -bounds.x;\n m.ty = -bounds.y;\n\n // reset\n this.transform.worldTransform.identity();\n\n // set all properties to there original so we can render to a texture\n this.render = this._cacheData.originalRender;\n\n renderer.render(this, renderTexture, true, m, true);\n\n // now restore the state be setting the new properties\n renderer.projection.transform = cachedProjectionTransform;\n renderer.renderTexture.bind(cachedRenderTexture, cachedSourceFrame);\n\n // renderer.filterManager.filterStack = stack;\n\n this.render = this._renderCached;\n // the rest is the same as for Canvas\n this.updateTransform = this.displayObjectUpdateTransform;\n this.calculateBounds = this._calculateCachedBounds;\n this.getLocalBounds = this._getCachedLocalBounds;\n\n this._mask = null;\n this.filterArea = null;\n\n // create our cached sprite\n var cachedSprite = new Sprite(renderTexture);\n\n cachedSprite.transform.worldTransform = this.transform.worldTransform;\n cachedSprite.anchor.x = -(bounds.x / bounds.width);\n cachedSprite.anchor.y = -(bounds.y / bounds.height);\n cachedSprite.alpha = cacheAlpha;\n cachedSprite._bounds = this._bounds;\n\n this._cacheData.sprite = cachedSprite;\n\n this.transform._parentID = -1;\n // restore the transform of the cached sprite to avoid the nasty flicker..\n if (!this.parent)\n {\n this.parent = renderer._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this.updateTransform();\n }\n\n // map the hit test..\n this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite);\n};\n\n/**\n * Renders a cached version of the sprite with canvas\n *\n * @private\n * @function _renderCachedCanvas\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._renderCachedCanvas = function _renderCachedCanvas(renderer)\n{\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n this._initCachedDisplayObjectCanvas(renderer);\n\n this._cacheData.sprite.worldAlpha = this.worldAlpha;\n this._cacheData.sprite._renderCanvas(renderer);\n};\n\n// TODO this can be the same as the WebGL version.. will need to do a little tweaking first though..\n/**\n * Prepares the Canvas renderer to cache the sprite\n *\n * @private\n * @function _initCachedDisplayObjectCanvas\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._initCachedDisplayObjectCanvas = function _initCachedDisplayObjectCanvas(renderer)\n{\n if (this._cacheData && this._cacheData.sprite)\n {\n return;\n }\n\n // get bounds actually transforms the object for us already!\n var bounds = this.getLocalBounds();\n\n var cacheAlpha = this.alpha;\n\n this.alpha = 1;\n\n var cachedRenderTarget = renderer.context;\n\n bounds.ceil(settings.RESOLUTION);\n\n var renderTexture = RenderTexture.create(bounds.width, bounds.height);\n\n var textureCacheId = \"cacheAsBitmap_\" + (uid());\n\n this._cacheData.textureCacheId = textureCacheId;\n\n BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId);\n Texture.addToCache(renderTexture, textureCacheId);\n\n // need to set //\n var m = _tempMatrix;\n\n this.transform.localTransform.copyTo(m);\n m.invert();\n\n m.tx -= bounds.x;\n m.ty -= bounds.y;\n\n // m.append(this.transform.worldTransform.)\n // set all properties to there original so we can render to a texture\n this.renderCanvas = this._cacheData.originalRenderCanvas;\n\n // renderTexture.render(this, m, true);\n renderer.render(this, renderTexture, true, m, false);\n\n // now restore the state be setting the new properties\n renderer.context = cachedRenderTarget;\n\n this.renderCanvas = this._renderCachedCanvas;\n // the rest is the same as for WebGL\n this.updateTransform = this.displayObjectUpdateTransform;\n this.calculateBounds = this._calculateCachedBounds;\n this.getLocalBounds = this._getCachedLocalBounds;\n\n this._mask = null;\n this.filterArea = null;\n\n // create our cached sprite\n var cachedSprite = new Sprite(renderTexture);\n\n cachedSprite.transform.worldTransform = this.transform.worldTransform;\n cachedSprite.anchor.x = -(bounds.x / bounds.width);\n cachedSprite.anchor.y = -(bounds.y / bounds.height);\n cachedSprite.alpha = cacheAlpha;\n cachedSprite._bounds = this._bounds;\n\n this._cacheData.sprite = cachedSprite;\n\n this.transform._parentID = -1;\n // restore the transform of the cached sprite to avoid the nasty flicker..\n if (!this.parent)\n {\n this.parent = renderer._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this.updateTransform();\n }\n\n // map the hit test..\n this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite);\n};\n\n/**\n * Calculates the bounds of the cached sprite\n *\n * @private\n */\nDisplayObject.prototype._calculateCachedBounds = function _calculateCachedBounds()\n{\n this._bounds.clear();\n this._cacheData.sprite.transform._worldID = this.transform._worldID;\n this._cacheData.sprite._calculateBounds();\n this._lastBoundsID = this._boundsID;\n};\n\n/**\n * Gets the bounds of the cached sprite.\n *\n * @private\n * @return {Rectangle} The local bounds.\n */\nDisplayObject.prototype._getCachedLocalBounds = function _getCachedLocalBounds()\n{\n return this._cacheData.sprite.getLocalBounds();\n};\n\n/**\n * Destroys the cached sprite.\n *\n * @private\n */\nDisplayObject.prototype._destroyCachedDisplayObject = function _destroyCachedDisplayObject()\n{\n this._cacheData.sprite._texture.destroy(true);\n this._cacheData.sprite = null;\n\n BaseTexture.removeFromCache(this._cacheData.textureCacheId);\n Texture.removeFromCache(this._cacheData.textureCacheId);\n\n this._cacheData.textureCacheId = null;\n};\n\n/**\n * Destroys the cached object.\n *\n * @private\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value.\n * Used when destroying containers, see the Container.destroy method.\n */\nDisplayObject.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy(options)\n{\n this.cacheAsBitmap = false;\n this.destroy(options);\n};\n//# sourceMappingURL=mixin-cache-as-bitmap.es.js.map\n","/*!\n * @pixi/mixin-get-child-by-name - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/mixin-get-child-by-name is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { DisplayObject, Container } from '@pixi/display';\n\n/**\n * The instance name of the object.\n *\n * @memberof PIXI.DisplayObject#\n * @member {string} name\n */\nDisplayObject.prototype.name = null;\n\n/**\n * Returns the display object in the container.\n *\n * @method getChildByName\n * @memberof PIXI.Container#\n * @param {string} name - Instance name.\n * @return {PIXI.DisplayObject} The child with the specified name.\n */\nContainer.prototype.getChildByName = function getChildByName(name)\n{\n for (var i = 0; i < this.children.length; i++)\n {\n if (this.children[i].name === name)\n {\n return this.children[i];\n }\n }\n\n return null;\n};\n//# sourceMappingURL=mixin-get-child-by-name.es.js.map\n","/*!\n * @pixi/mixin-get-global-position - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/mixin-get-global-position is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { DisplayObject } from '@pixi/display';\nimport { Point } from '@pixi/math';\n\n/**\n * Returns the global position of the displayObject. Does not depend on object scale, rotation and pivot.\n *\n * @method getGlobalPosition\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Point} [point=new PIXI.Point()] - The point to write the global value to.\n * @param {boolean} [skipUpdate=false] - Setting to true will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost.\n * @return {PIXI.Point} The updated point.\n */\nDisplayObject.prototype.getGlobalPosition = function getGlobalPosition(point, skipUpdate)\n{\n if ( point === void 0 ) point = new Point();\n if ( skipUpdate === void 0 ) skipUpdate = false;\n\n if (this.parent)\n {\n this.parent.toGlobal(this.position, point, skipUpdate);\n }\n else\n {\n point.x = this.position.x;\n point.y = this.position.y;\n }\n\n return point;\n};\n//# sourceMappingURL=mixin-get-global-position.es.js.map\n","/*!\n * @pixi/mesh - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/mesh is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { State, Shader, Program, TextureMatrix, Geometry, Buffer } from '@pixi/core';\nimport { Point, Polygon, Matrix } from '@pixi/math';\nimport { DRAW_MODES, BLEND_MODES, TYPES } from '@pixi/constants';\nimport { Container } from '@pixi/display';\nimport { settings } from '@pixi/settings';\nimport { premultiplyTintToRgba } from '@pixi/utils';\n\n/**\n * Class controls cache for UV mapping from Texture normal space to BaseTexture normal space.\n *\n * @class\n * @memberof PIXI\n */\nvar MeshBatchUvs = function MeshBatchUvs(uvBuffer, uvMatrix)\n{\n /**\n * Buffer with normalized UV's\n * @member {PIXI.Buffer}\n */\n this.uvBuffer = uvBuffer;\n\n /**\n * Material UV matrix\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = uvMatrix;\n\n /**\n * UV Buffer data\n * @member {Float32Array}\n * @readonly\n */\n this.data = null;\n\n this._bufferUpdateId = -1;\n\n this._textureUpdateId = -1;\n\n this._updateID = 0;\n};\n\n/**\n * updates\n *\n * @param {boolean} forceUpdate - force the update\n */\nMeshBatchUvs.prototype.update = function update (forceUpdate)\n{\n if (!forceUpdate\n && this._bufferUpdateId === this.uvBuffer._updateID\n && this._textureUpdateId === this.uvMatrix._updateID)\n {\n return;\n }\n\n this._bufferUpdateId = this.uvBuffer._updateID;\n this._textureUpdateId = this.uvMatrix._updateID;\n\n var data = this.uvBuffer.data;\n\n if (!this.data || this.data.length !== data.length)\n {\n this.data = new Float32Array(data.length);\n }\n\n this.uvMatrix.multiplyUvs(data, this.data);\n\n this._updateID++;\n};\n\nvar tempPoint = new Point();\nvar tempPolygon = new Polygon();\n\n/**\n * Base mesh class.\n *\n * This class empowers you to have maximum flexibility to render any kind of WebGL visuals you can think of.\n * This class assumes a certain level of WebGL knowledge.\n * If you know a bit this should abstract enough away to make you life easier!\n *\n * Pretty much ALL WebGL can be broken down into the following:\n * - Geometry - The structure and data for the mesh. This can include anything from positions, uvs, normals, colors etc..\n * - Shader - This is the shader that PixiJS will render the geometry with (attributes in the shader must match the geometry)\n * - State - This is the state of WebGL required to render the mesh.\n *\n * Through a combination of the above elements you can render anything you want, 2D or 3D!\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Mesh = /*@__PURE__*/(function (Container) {\n function Mesh(geometry, shader, state, drawMode)// vertices, uvs, indices, drawMode)\n {\n if ( drawMode === void 0 ) drawMode = DRAW_MODES.TRIANGLES;\n\n Container.call(this);\n\n /**\n * Includes vertex positions, face indices, normals, colors, UVs, and\n * custom attributes within buffers, reducing the cost of passing all\n * this data to the GPU. Can be shared between multiple Mesh objects.\n * @member {PIXI.Geometry}\n * @readonly\n */\n this.geometry = geometry;\n\n geometry.refCount++;\n\n /**\n * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU.\n * Can be shared between multiple Mesh objects.\n * @member {PIXI.Shader|PIXI.MeshMaterial}\n */\n this.shader = shader;\n\n /**\n * Represents the WebGL state the Mesh required to render, excludes shader and geometry. E.g.,\n * blend mode, culling, depth testing, direction of rendering triangles, backface, etc.\n * @member {PIXI.State}\n */\n this.state = state || State.for2d();\n\n /**\n * The way the Mesh should be drawn, can be any of the {@link PIXI.DRAW_MODES} constants.\n *\n * @member {number}\n * @see PIXI.DRAW_MODES\n */\n this.drawMode = drawMode;\n\n /**\n * Typically the index of the IndexBuffer where to start drawing.\n * @member {number}\n * @default 0\n */\n this.start = 0;\n\n /**\n * How much of the geometry to draw, by default `0` renders everything.\n * @member {number}\n * @default 0\n */\n this.size = 0;\n\n /**\n * thease are used as easy access for batching\n * @member {Float32Array}\n * @private\n */\n this.uvs = null;\n\n /**\n * thease are used as easy access for batching\n * @member {Uint16Array}\n * @private\n */\n this.indices = null;\n\n /**\n * this is the caching layer used by the batcher\n * @member {Float32Array}\n * @private\n */\n this.vertexData = new Float32Array(1);\n\n /**\n * If geometry is changed used to decide to re-transform\n * the vertexData.\n * @member {number}\n * @private\n */\n this.vertexDirty = 0;\n\n this._transformID = -1;\n\n // Inherited from DisplayMode, set defaults\n this.tint = 0xFFFFFF;\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * Internal roundPixels field\n *\n * @member {boolean}\n * @private\n */\n this._roundPixels = settings.ROUND_PIXELS;\n\n /**\n * Batched UV's are cached for atlas textures\n * @member {PIXI.MeshBatchUvs}\n * @private\n */\n this.batchUvs = null;\n }\n\n if ( Container ) Mesh.__proto__ = Container;\n Mesh.prototype = Object.create( Container && Container.prototype );\n Mesh.prototype.constructor = Mesh;\n\n var prototypeAccessors = { uvBuffer: { configurable: true },verticesBuffer: { configurable: true },material: { configurable: true },blendMode: { configurable: true },roundPixels: { configurable: true },tint: { configurable: true },texture: { configurable: true } };\n\n /**\n * To change mesh uv's, change its uvBuffer data and increment its _updateID.\n * @member {PIXI.Buffer}\n * @readonly\n */\n prototypeAccessors.uvBuffer.get = function ()\n {\n return this.geometry.buffers[1];\n };\n\n /**\n * To change mesh vertices, change its uvBuffer data and increment its _updateID.\n * Incrementing _updateID is optional because most of Mesh objects do it anyway.\n * @member {PIXI.Buffer}\n * @readonly\n */\n prototypeAccessors.verticesBuffer.get = function ()\n {\n return this.geometry.buffers[0];\n };\n\n /**\n * Alias for {@link PIXI.Mesh#shader}.\n * @member {PIXI.Shader|PIXI.MeshMaterial}\n */\n prototypeAccessors.material.set = function (value)\n {\n this.shader = value;\n };\n\n prototypeAccessors.material.get = function ()\n {\n return this.shader;\n };\n\n /**\n * The blend mode to be applied to the Mesh. Apply a value of\n * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL;\n * @see PIXI.BLEND_MODES\n */\n prototypeAccessors.blendMode.set = function (value)\n {\n this.state.blendMode = value;\n };\n\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n prototypeAccessors.roundPixels.set = function (value)\n {\n if (this._roundPixels !== value)\n {\n this._transformID = -1;\n }\n this._roundPixels = value;\n };\n\n prototypeAccessors.roundPixels.get = function ()\n {\n return this._roundPixels;\n };\n\n /**\n * The multiply tint applied to the Mesh. This is a hex value. A value of\n * `0xFFFFFF` will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this.shader.tint;\n };\n\n prototypeAccessors.tint.set = function (value)\n {\n this.shader.tint = value;\n };\n\n /**\n * The texture that the Mesh uses.\n *\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this.shader.texture;\n };\n\n prototypeAccessors.texture.set = function (value)\n {\n this.shader.texture = value;\n };\n\n /**\n * Standard renderer draw.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._render = function _render (renderer)\n {\n // set properties for batching..\n // TODO could use a different way to grab verts?\n var vertices = this.geometry.buffers[0].data;\n\n // TODO benchmark check for attribute size..\n if (this.shader.batchable && this.drawMode === DRAW_MODES.TRIANGLES && vertices.length < Mesh.BATCHABLE_SIZE * 2)\n {\n this._renderToBatch(renderer);\n }\n else\n {\n this._renderDefault(renderer);\n }\n };\n\n /**\n * Standard non-batching way of rendering.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._renderDefault = function _renderDefault (renderer)\n {\n var shader = this.shader;\n\n shader.alpha = this.worldAlpha;\n if (shader.update)\n {\n shader.update();\n }\n\n renderer.batch.flush();\n\n if (shader.program.uniformData.translationMatrix)\n {\n shader.uniforms.translationMatrix = this.transform.worldTransform.toArray(true);\n }\n\n // bind and sync uniforms..\n renderer.shader.bind(shader);\n\n // set state..\n renderer.state.set(this.state);\n\n // bind the geometry...\n renderer.geometry.bind(this.geometry, shader);\n\n // then render it\n renderer.geometry.draw(this.drawMode, this.size, this.start, this.geometry.instanceCount);\n };\n\n /**\n * Rendering by using the Batch system.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._renderToBatch = function _renderToBatch (renderer)\n {\n var geometry = this.geometry;\n\n if (this.shader.uvMatrix)\n {\n this.shader.uvMatrix.update();\n this.calculateUvs();\n }\n\n // set properties for batching..\n this.calculateVertices();\n this.indices = geometry.indexBuffer.data;\n this._tintRGB = this.shader._tintRGB;\n this._texture = this.shader.texture;\n\n var pluginName = this.material.pluginName;\n\n renderer.batch.setObjectRenderer(renderer.plugins[pluginName]);\n renderer.plugins[pluginName].render(this);\n };\n\n /**\n * Updates vertexData field based on transform and vertices\n */\n Mesh.prototype.calculateVertices = function calculateVertices ()\n {\n var geometry = this.geometry;\n var vertices = geometry.buffers[0].data;\n\n if (geometry.vertexDirtyId === this.vertexDirty && this._transformID === this.transform._worldID)\n {\n return;\n }\n\n this._transformID = this.transform._worldID;\n\n if (this.vertexData.length !== vertices.length)\n {\n this.vertexData = new Float32Array(vertices.length);\n }\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var vertexData = this.vertexData;\n\n for (var i = 0; i < vertexData.length / 2; i++)\n {\n var x = vertices[(i * 2)];\n var y = vertices[(i * 2) + 1];\n\n vertexData[(i * 2)] = (a * x) + (c * y) + tx;\n vertexData[(i * 2) + 1] = (b * x) + (d * y) + ty;\n }\n\n if (this._roundPixels)\n {\n for (var i$1 = 0; i$1 < vertexData.length; i$1++)\n {\n vertexData[i$1] = Math.round(vertexData[i$1]);\n }\n }\n\n this.vertexDirty = geometry.vertexDirtyId;\n };\n\n /**\n * Updates uv field based on from geometry uv's or batchUvs\n */\n Mesh.prototype.calculateUvs = function calculateUvs ()\n {\n var geomUvs = this.geometry.buffers[1];\n\n if (!this.shader.uvMatrix.isSimple)\n {\n if (!this.batchUvs)\n {\n this.batchUvs = new MeshBatchUvs(geomUvs, this.shader.uvMatrix);\n }\n this.batchUvs.update();\n this.uvs = this.batchUvs.data;\n }\n else\n {\n this.uvs = geomUvs.data;\n }\n };\n\n /**\n * Updates the bounds of the mesh as a rectangle. The bounds calculation takes the worldTransform into account.\n * there must be a aVertexPosition attribute present in the geometry for bounds to be calculated correctly.\n *\n * @protected\n */\n Mesh.prototype._calculateBounds = function _calculateBounds ()\n {\n this.calculateVertices();\n\n this._bounds.addVertexData(this.vertexData, 0, this.vertexData.length);\n };\n\n /**\n * Tests if a point is inside this mesh. Works only for PIXI.DRAW_MODES.TRIANGLES.\n *\n * @param {PIXI.Point} point the point to test\n * @return {boolean} the result of the test\n */\n Mesh.prototype.containsPoint = function containsPoint (point)\n {\n if (!this.getBounds().contains(point.x, point.y))\n {\n return false;\n }\n\n this.worldTransform.applyInverse(point, tempPoint);\n\n var vertices = this.geometry.getBuffer('aVertexPosition').data;\n\n var points = tempPolygon.points;\n var indices = this.geometry.getIndex().data;\n var len = indices.length;\n var step = this.drawMode === 4 ? 3 : 1;\n\n for (var i = 0; i + 2 < len; i += step)\n {\n var ind0 = indices[i] * 2;\n var ind1 = indices[i + 1] * 2;\n var ind2 = indices[i + 2] * 2;\n\n points[0] = vertices[ind0];\n points[1] = vertices[ind0 + 1];\n points[2] = vertices[ind1];\n points[3] = vertices[ind1 + 1];\n points[4] = vertices[ind2];\n points[5] = vertices[ind2 + 1];\n\n if (tempPolygon.contains(tempPoint.x, tempPoint.y))\n {\n return true;\n }\n }\n\n return false;\n };\n /**\n * Destroys the Mesh object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n */\n Mesh.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.geometry.refCount--;\n if (this.geometry.refCount === 0)\n {\n this.geometry.dispose();\n }\n\n this.geometry = null;\n this.shader = null;\n this.state = null;\n this.uvs = null;\n this.indices = null;\n this.vertexData = null;\n };\n\n Object.defineProperties( Mesh.prototype, prototypeAccessors );\n\n return Mesh;\n}(Container));\n\n/**\n * The maximum number of vertices to consider batchable. Generally, the complexity\n * of the geometry.\n * @memberof PIXI.Mesh\n * @static\n * @member {number} BATCHABLE_SIZE\n */\nMesh.BATCHABLE_SIZE = 100;\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform mat3 uTextureMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = (uTextureMatrix * vec3(aTextureCoord, 1.0)).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\nuniform vec4 uColor;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void)\\n{\\n gl_FragColor = texture2D(uSampler, vTextureCoord) * uColor;\\n}\\n\";\n\n/**\n * Slightly opinionated default shader for PixiJS 2D objects.\n * @class\n * @memberof PIXI\n * @extends PIXI.Shader\n */\nvar MeshMaterial = /*@__PURE__*/(function (Shader) {\n function MeshMaterial(uSampler, options)\n {\n var uniforms = {\n uSampler: uSampler,\n alpha: 1,\n uTextureMatrix: Matrix.IDENTITY,\n uColor: new Float32Array([1, 1, 1, 1]),\n };\n\n // Set defaults\n options = Object.assign({\n tint: 0xFFFFFF,\n alpha: 1,\n pluginName: 'batch',\n }, options);\n\n if (options.uniforms)\n {\n Object.assign(uniforms, options.uniforms);\n }\n\n Shader.call(this, options.program || Program.from(vertex, fragment), uniforms);\n\n /**\n * Only do update if tint or alpha changes.\n * @member {boolean}\n * @private\n * @default false\n */\n this._colorDirty = false;\n\n /**\n * TextureMatrix instance for this Mesh, used to track Texture changes\n *\n * @member {PIXI.TextureMatrix}\n * @readonly\n */\n this.uvMatrix = new TextureMatrix(uSampler);\n\n /**\n * `true` if shader can be batch with the renderer's batch system.\n * @member {boolean}\n * @default true\n */\n this.batchable = options.program === undefined;\n\n /**\n * Renderer plugin for batching\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = options.pluginName;\n\n this.tint = options.tint;\n this.alpha = options.alpha;\n }\n\n if ( Shader ) MeshMaterial.__proto__ = Shader;\n MeshMaterial.prototype = Object.create( Shader && Shader.prototype );\n MeshMaterial.prototype.constructor = MeshMaterial;\n\n var prototypeAccessors = { texture: { configurable: true },alpha: { configurable: true },tint: { configurable: true } };\n\n /**\n * Reference to the texture being rendered.\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this.uniforms.uSampler;\n };\n prototypeAccessors.texture.set = function (value)\n {\n if (this.uniforms.uSampler !== value)\n {\n this.uniforms.uSampler = value;\n this.uvMatrix.texture = value;\n }\n };\n\n /**\n * This gets automatically set by the object using this.\n *\n * @default 1\n * @member {number}\n */\n prototypeAccessors.alpha.set = function (value)\n {\n if (value === this._alpha) { return; }\n\n this._alpha = value;\n this._colorDirty = true;\n };\n prototypeAccessors.alpha.get = function ()\n {\n return this._alpha;\n };\n\n /**\n * Multiply tint for the material.\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.set = function (value)\n {\n if (value === this._tint) { return; }\n\n this._tint = value;\n this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16);\n this._colorDirty = true;\n };\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n /**\n * Gets called automatically by the Mesh. Intended to be overridden for custom\n * MeshMaterial objects.\n */\n MeshMaterial.prototype.update = function update ()\n {\n if (this._colorDirty)\n {\n this._colorDirty = false;\n var baseTexture = this.texture.baseTexture;\n\n premultiplyTintToRgba(this._tint, this._alpha, this.uniforms.uColor, baseTexture.premultiplyAlpha);\n }\n if (this.uvMatrix.update())\n {\n this.uniforms.uTextureMatrix = this.uvMatrix.mapCoord;\n }\n };\n\n Object.defineProperties( MeshMaterial.prototype, prototypeAccessors );\n\n return MeshMaterial;\n}(Shader));\n\n/**\n * Standard 2D geometry used in PixiJS.\n *\n * Geometry can be defined without passing in a style or data if required.\n *\n * ```js\n * const geometry = new PIXI.Geometry();\n *\n * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2);\n * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1], 2);\n * geometry.addIndex([0,1,2,1,3,2]);\n *\n * ```\n * @class\n * @memberof PIXI\n * @extends PIXI.Geometry\n */\nvar MeshGeometry = /*@__PURE__*/(function (Geometry) {\n function MeshGeometry(vertices, uvs, index)\n {\n Geometry.call(this);\n\n var verticesBuffer = new Buffer(vertices);\n var uvsBuffer = new Buffer(uvs, true);\n var indexBuffer = new Buffer(index, true, true);\n\n this.addAttribute('aVertexPosition', verticesBuffer, 2, false, TYPES.FLOAT)\n .addAttribute('aTextureCoord', uvsBuffer, 2, false, TYPES.FLOAT)\n .addIndex(indexBuffer);\n\n /**\n * Dirty flag to limit update calls on Mesh. For example,\n * limiting updates on a single Mesh instance with a shared Geometry\n * within the render loop.\n * @private\n * @member {number}\n * @default -1\n */\n this._updateId = -1;\n }\n\n if ( Geometry ) MeshGeometry.__proto__ = Geometry;\n MeshGeometry.prototype = Object.create( Geometry && Geometry.prototype );\n MeshGeometry.prototype.constructor = MeshGeometry;\n\n var prototypeAccessors = { vertexDirtyId: { configurable: true } };\n\n /**\n * If the vertex position is updated.\n * @member {number}\n * @readonly\n * @private\n */\n prototypeAccessors.vertexDirtyId.get = function ()\n {\n return this.buffers[0]._updateID;\n };\n\n Object.defineProperties( MeshGeometry.prototype, prototypeAccessors );\n\n return MeshGeometry;\n}(Geometry));\n\nexport { Mesh, MeshBatchUvs, MeshGeometry, MeshMaterial };\n//# sourceMappingURL=mesh.es.js.map\n","/*!\n * pixi.js - v5.1.4\n * Compiled Sat, 21 Sep 2019 07:35:21 UTC\n *\n * pixi.js is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport '@pixi/polyfill';\nimport { AccessibilityManager } from '@pixi/accessibility';\nimport * as accessibility from '@pixi/accessibility';\nexport { accessibility };\nimport { Extract } from '@pixi/extract';\nimport * as extract from '@pixi/extract';\nexport { extract };\nimport { InteractionManager } from '@pixi/interaction';\nimport * as interaction from '@pixi/interaction';\nexport { interaction };\nimport { Prepare } from '@pixi/prepare';\nimport * as prepare from '@pixi/prepare';\nexport { prepare };\nimport { deprecation } from '@pixi/utils';\nimport * as utils from '@pixi/utils';\nexport { utils };\nimport { Application } from '@pixi/app';\nexport * from '@pixi/app';\nimport { Renderer, BatchRenderer } from '@pixi/core';\nexport * from '@pixi/core';\nimport { Loader, AppLoaderPlugin } from '@pixi/loaders';\nexport * from '@pixi/loaders';\nimport { ParticleRenderer } from '@pixi/particles';\nexport * from '@pixi/particles';\nimport { SpritesheetLoader } from '@pixi/spritesheet';\nexport * from '@pixi/spritesheet';\nimport { TilingSpriteRenderer } from '@pixi/sprite-tiling';\nexport * from '@pixi/sprite-tiling';\nimport { BitmapFontLoader } from '@pixi/text-bitmap';\nexport * from '@pixi/text-bitmap';\nimport { TickerPlugin } from '@pixi/ticker';\nexport * from '@pixi/ticker';\nimport { AlphaFilter } from '@pixi/filter-alpha';\nimport { BlurFilter, BlurFilterPass } from '@pixi/filter-blur';\nimport { ColorMatrixFilter } from '@pixi/filter-color-matrix';\nimport { DisplacementFilter } from '@pixi/filter-displacement';\nimport { FXAAFilter } from '@pixi/filter-fxaa';\nimport { NoiseFilter } from '@pixi/filter-noise';\nimport '@pixi/mixin-cache-as-bitmap';\nimport '@pixi/mixin-get-child-by-name';\nimport '@pixi/mixin-get-global-position';\nexport * from '@pixi/constants';\nexport * from '@pixi/display';\nexport * from '@pixi/graphics';\nexport * from '@pixi/math';\nexport * from '@pixi/mesh';\nexport * from '@pixi/mesh-extras';\nexport * from '@pixi/runner';\nexport * from '@pixi/sprite';\nexport * from '@pixi/sprite-animated';\nexport * from '@pixi/text';\nexport * from '@pixi/settings';\n\nvar v5 = '5.0.0';\n\n/**\n * Deprecations (backward compatibilities) are automatically applied for browser bundles\n * in the UMD module format. If using Webpack or Rollup, you'll need to apply these\n * deprecations manually by doing something like this:\n * @example\n * import * as PIXI from 'pixi.js';\n * PIXI.useDeprecated(); // MUST be bound to namespace\n * @memberof PIXI\n * @function useDeprecated\n */\nfunction useDeprecated()\n{\n var PIXI = this;\n\n Object.defineProperties(PIXI, {\n /**\n * @constant {RegExp|string} SVG_SIZE\n * @memberof PIXI\n * @see PIXI.resources.SVGResource.SVG_SIZE\n * @deprecated since 5.0.0\n */\n SVG_SIZE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.utils.SVG_SIZE property has moved to PIXI.resources.SVGResource.SVG_SIZE');\n\n return PIXI.SVGResource.SVG_SIZE;\n },\n },\n\n /**\n * @class PIXI.TransformStatic\n * @deprecated since 5.0.0\n * @see PIXI.Transform\n */\n TransformStatic: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TransformStatic class has been removed, use PIXI.Transform');\n\n return PIXI.Transform;\n },\n },\n\n /**\n * @class PIXI.TransformBase\n * @deprecated since 5.0.0\n * @see PIXI.Transform\n */\n TransformBase: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TransformBase class has been removed, use PIXI.Transform');\n\n return PIXI.Transform;\n },\n },\n\n /**\n * Constants that specify the transform type.\n *\n * @static\n * @constant\n * @name TRANSFORM_MODE\n * @memberof PIXI\n * @enum {number}\n * @deprecated since 5.0.0\n * @property {number} STATIC\n * @property {number} DYNAMIC\n */\n TRANSFORM_MODE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TRANSFORM_MODE property has been removed');\n\n return { STATIC: 0, DYNAMIC: 1 };\n },\n },\n\n /**\n * @class PIXI.WebGLRenderer\n * @see PIXI.Renderer\n * @deprecated since 5.0.0\n */\n WebGLRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.WebGLRenderer class has moved to PIXI.Renderer');\n\n return PIXI.Renderer;\n },\n },\n\n /**\n * @class PIXI.CanvasRenderTarget\n * @see PIXI.utils.CanvasRenderTarget\n * @deprecated since 5.0.0\n */\n CanvasRenderTarget: {\n get: function get()\n {\n deprecation(v5, 'PIXI.CanvasRenderTarget class has moved to PIXI.utils.CanvasRenderTarget');\n\n return PIXI.utils.CanvasRenderTarget;\n },\n },\n\n /**\n * @memberof PIXI\n * @name loader\n * @type {PIXI.Loader}\n * @see PIXI.Loader.shared\n * @deprecated since 5.0.0\n */\n loader: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loader instance has moved to PIXI.Loader.shared');\n\n return PIXI.Loader.shared;\n },\n },\n\n /**\n * @class PIXI.FilterManager\n * @see PIXI.systems.FilterSystem\n * @deprecated since 5.0.0\n */\n FilterManager: {\n get: function get()\n {\n deprecation(v5, 'PIXI.FilterManager class has moved to PIXI.systems.FilterSystem');\n\n return PIXI.systems.FilterSystem;\n },\n },\n\n /**\n * @namespace PIXI.CanvasTinter\n * @see PIXI.canvasUtils\n * @deprecated since 5.2.0\n */\n CanvasTinter: {\n get: function get()\n {\n deprecation('5.2.0', 'PIXI.CanvasTinter namespace has moved to PIXI.canvasUtils');\n\n return PIXI.canvasUtils;\n },\n },\n\n /**\n * @namespace PIXI.GroupD8\n * @see PIXI.groupD8\n * @deprecated since 5.2.0\n */\n GroupD8: {\n get: function get()\n {\n deprecation('5.2.0', 'PIXI.GroupD8 namespace has moved to PIXI.groupD8');\n\n return PIXI.groupD8;\n },\n },\n });\n\n /**\n * This namespace has been removed. All classes previous nested\n * under this namespace have been moved to the top-level `PIXI` object.\n * @namespace PIXI.extras\n * @deprecated since 5.0.0\n */\n PIXI.extras = {};\n\n Object.defineProperties(PIXI.extras, {\n /**\n * @class PIXI.extras.TilingSprite\n * @see PIXI.TilingSprite\n * @deprecated since 5.0.0\n */\n TilingSprite: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.TilingSprite class has moved to PIXI.TilingSprite');\n\n return PIXI.TilingSprite;\n },\n },\n /**\n * @class PIXI.extras.TilingSpriteRenderer\n * @see PIXI.TilingSpriteRenderer\n * @deprecated since 5.0.0\n */\n TilingSpriteRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.TilingSpriteRenderer class has moved to PIXI.TilingSpriteRenderer');\n\n return PIXI.TilingSpriteRenderer;\n },\n },\n /**\n * @class PIXI.extras.AnimatedSprite\n * @see PIXI.AnimatedSprite\n * @deprecated since 5.0.0\n */\n AnimatedSprite: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.AnimatedSprite class has moved to PIXI.AnimatedSprite');\n\n return PIXI.AnimatedSprite;\n },\n },\n /**\n * @class PIXI.extras.BitmapText\n * @see PIXI.BitmapText\n * @deprecated since 5.0.0\n */\n BitmapText: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.BitmapText class has moved to PIXI.BitmapText');\n\n return PIXI.BitmapText;\n },\n },\n });\n\n Object.defineProperties(PIXI.utils, {\n /**\n * @function PIXI.utils.getSvgSize\n * @see PIXI.resources.SVGResource.getSize\n * @deprecated since 5.0.0\n */\n getSvgSize: {\n get: function get()\n {\n deprecation(v5, 'PIXI.utils.getSvgSize function has moved to PIXI.resources.SVGResource.getSize');\n\n return PIXI.SVGResource.getSize;\n },\n },\n });\n\n /**\n * All classes on this namespace have moved to the high-level `PIXI` object.\n * @namespace PIXI.mesh\n * @deprecated since 5.0.0\n */\n PIXI.mesh = {};\n\n Object.defineProperties(PIXI.mesh, {\n /**\n * @class PIXI.mesh.Mesh\n * @see PIXI.SimpleMesh\n * @deprecated since 5.0.0\n */\n Mesh: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Mesh class has moved to PIXI.SimpleMesh');\n\n return PIXI.SimpleMesh;\n },\n },\n /**\n * @class PIXI.mesh.NineSlicePlane\n * @see PIXI.NineSlicePlane\n * @deprecated since 5.0.0\n */\n NineSlicePlane: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.NineSlicePlane class has moved to PIXI.NineSlicePlane');\n\n return PIXI.NineSlicePlane;\n },\n },\n /**\n * @class PIXI.mesh.Plane\n * @see PIXI.SimplePlane\n * @deprecated since 5.0.0\n */\n Plane: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Plane class has moved to PIXI.SimplePlane');\n\n return PIXI.SimplePlane;\n },\n },\n /**\n * @class PIXI.mesh.Rope\n * @see PIXI.SimpleRope\n * @deprecated since 5.0.0\n */\n Rope: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Rope class has moved to PIXI.SimpleRope');\n\n return PIXI.SimpleRope;\n },\n },\n /**\n * @class PIXI.mesh.RawMesh\n * @see PIXI.Mesh\n * @deprecated since 5.0.0\n */\n RawMesh: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.RawMesh class has moved to PIXI.Mesh');\n\n return PIXI.Mesh;\n },\n },\n /**\n * @class PIXI.mesh.CanvasMeshRenderer\n * @see PIXI.CanvasMeshRenderer\n * @deprecated since 5.0.0\n */\n CanvasMeshRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.CanvasMeshRenderer class has moved to PIXI.CanvasMeshRenderer');\n\n return PIXI.CanvasMeshRenderer;\n },\n },\n /**\n * @class PIXI.mesh.MeshRenderer\n * @see PIXI.MeshRenderer\n * @deprecated since 5.0.0\n */\n MeshRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.MeshRenderer class has moved to PIXI.MeshRenderer');\n\n return PIXI.MeshRenderer;\n },\n },\n });\n\n /**\n * This namespace has been removed and items have been moved to\n * the top-level `PIXI` object.\n * @namespace PIXI.particles\n * @deprecated since 5.0.0\n */\n PIXI.particles = {};\n\n Object.defineProperties(PIXI.particles, {\n /**\n * @class PIXI.particles.ParticleContainer\n * @deprecated since 5.0.0\n * @see PIXI.ParticleContainer\n */\n ParticleContainer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.particles.ParticleContainer class has moved to PIXI.ParticleContainer');\n\n return PIXI.ParticleContainer;\n },\n },\n /**\n * @class PIXI.particles.ParticleRenderer\n * @deprecated since 5.0.0\n * @see PIXI.ParticleRenderer\n */\n ParticleRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.particles.ParticleRenderer class has moved to PIXI.ParticleRenderer');\n\n return PIXI.ParticleRenderer;\n },\n },\n });\n\n /**\n * This namespace has been removed and items have been moved to\n * the top-level `PIXI` object.\n * @namespace PIXI.ticker\n * @deprecated since 5.0.0\n */\n PIXI.ticker = {};\n\n Object.defineProperties(PIXI.ticker, {\n /**\n * @class PIXI.ticker.Ticker\n * @deprecated since 5.0.0\n * @see PIXI.Ticker\n */\n Ticker: {\n get: function get()\n {\n deprecation(v5, 'PIXI.ticker.Ticker class has moved to PIXI.Ticker');\n\n return PIXI.Ticker;\n },\n },\n /**\n * @name PIXI.ticker.shared\n * @type {PIXI.Ticker}\n * @deprecated since 5.0.0\n * @see PIXI.Ticker.shared\n */\n shared: {\n get: function get()\n {\n deprecation(v5, 'PIXI.ticker.shared instance has moved to PIXI.Ticker.shared');\n\n return PIXI.Ticker.shared;\n },\n },\n });\n\n /**\n * All classes on this namespace have moved to the high-level `PIXI` object.\n * @namespace PIXI.loaders\n * @deprecated since 5.0.0\n */\n PIXI.loaders = {};\n\n Object.defineProperties(PIXI.loaders, {\n /**\n * @class PIXI.loaders.Loader\n * @see PIXI.Loader\n * @deprecated since 5.0.0\n */\n Loader: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.Loader class has moved to PIXI.Loader');\n\n return PIXI.Loader;\n },\n },\n /**\n * @class PIXI.loaders.Resource\n * @see PIXI.LoaderResource\n * @deprecated since 5.0.0\n */\n Resource: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.Resource class has moved to PIXI.LoaderResource');\n\n return PIXI.LoaderResource;\n },\n },\n /**\n * @function PIXI.loaders.bitmapFontParser\n * @see PIXI.BitmapFontLoader.use\n * @deprecated since 5.0.0\n */\n bitmapFontParser: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.bitmapFontParser function has moved to PIXI.BitmapFontLoader.use');\n\n return PIXI.BitmapFontLoader.use;\n },\n },\n /**\n * @function PIXI.loaders.parseBitmapFontData\n * @see PIXI.BitmapFontLoader.parse\n * @deprecated since 5.0.0\n */\n parseBitmapFontData: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.parseBitmapFontData function has moved to PIXI.BitmapFontLoader.parse');\n\n return PIXI.BitmapFontLoader.parse;\n },\n },\n /**\n * @function PIXI.loaders.spritesheetParser\n * @see PIXI.SpritesheetLoader.use\n * @deprecated since 5.0.0\n */\n spritesheetParser: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.spritesheetParser function has moved to PIXI.SpritesheetLoader.use');\n\n return PIXI.SpritesheetLoader.use;\n },\n },\n /**\n * @function PIXI.loaders.getResourcePath\n * @see PIXI.SpritesheetLoader.getResourcePath\n * @deprecated since 5.0.0\n */\n getResourcePath: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.getResourcePath property has moved to PIXI.SpritesheetLoader.getResourcePath');\n\n return PIXI.SpritesheetLoader.getResourcePath;\n },\n },\n });\n\n /**\n * @function PIXI.loaders.Loader.addPixiMiddleware\n * @see PIXI.Loader.registerPlugin\n * @deprecated since 5.0.0\n * @param {function} middleware\n */\n PIXI.Loader.addPixiMiddleware = function addPixiMiddleware(middleware)\n {\n deprecation(v5,\n 'PIXI.loaders.Loader.addPixiMiddleware function is deprecated, use PIXI.loaders.Loader.registerPlugin'\n );\n\n return PIXI.loaders.Loader.registerPlugin({ use: middleware() });\n };\n\n /**\n * @class PIXI.extract.WebGLExtract\n * @deprecated since 5.0.0\n * @see PIXI.extract.Extract\n */\n Object.defineProperty(PIXI.extract, 'WebGLExtract', {\n get: function get()\n {\n deprecation(v5, 'PIXI.extract.WebGLExtract method has moved to PIXI.extract.Extract');\n\n return PIXI.extract.Extract;\n },\n });\n\n /**\n * @class PIXI.prepare.WebGLPrepare\n * @deprecated since 5.0.0\n * @see PIXI.prepare.Prepare\n */\n Object.defineProperty(PIXI.prepare, 'WebGLPrepare', {\n get: function get()\n {\n deprecation(v5, 'PIXI.prepare.WebGLPrepare class has moved to PIXI.prepare.Prepare');\n\n return PIXI.prepare.Prepare;\n },\n });\n\n /**\n * @method PIXI.Container#_renderWebGL\n * @private\n * @deprecated since 5.0.0\n * @see PIXI.Container#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype._renderWebGL = function _renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container._renderWebGL method has moved to PIXI.Container._render');\n\n this._render(renderer);\n };\n\n /**\n * @method PIXI.Container#renderWebGL\n * @deprecated since 5.0.0\n * @see PIXI.Container#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype.renderWebGL = function renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container.renderWebGL method has moved to PIXI.Container.render');\n\n this.render(renderer);\n };\n\n /**\n * @method PIXI.DisplayObject#renderWebGL\n * @deprecated since 5.0.0\n * @see PIXI.DisplayObject#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.DisplayObject.prototype.renderWebGL = function renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.DisplayObject.renderWebGL method has moved to PIXI.DisplayObject.render');\n\n this.render(renderer);\n };\n\n /**\n * @method PIXI.Container#renderAdvancedWebGL\n * @deprecated since 5.0.0\n * @see PIXI.Container#renderAdvanced\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype.renderAdvancedWebGL = function renderAdvancedWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container.renderAdvancedWebGL method has moved to PIXI.Container.renderAdvanced');\n\n this.renderAdvanced(renderer);\n };\n\n Object.defineProperties(PIXI.settings, {\n /**\n * Default transform type.\n *\n * @static\n * @deprecated since 5.0.0\n * @memberof PIXI.settings\n * @type {PIXI.TRANSFORM_MODE}\n * @default PIXI.TRANSFORM_MODE.STATIC\n */\n TRANSFORM_MODE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.settings.TRANSFORM_MODE property has been removed');\n\n return 0;\n },\n set: function set()\n {\n deprecation(v5, 'PIXI.settings.TRANSFORM_MODE property has been removed');\n },\n },\n });\n\n var BaseTexture = PIXI.BaseTexture;\n\n /**\n * @method loadSource\n * @memberof PIXI.BaseTexture#\n * @deprecated since 5.0.0\n */\n BaseTexture.prototype.loadSource = function loadSource(image)\n {\n deprecation(v5, 'PIXI.BaseTexture.loadSource method has been deprecated');\n\n var resource = PIXI.resources.autoDetectResource(image);\n\n resource.internal = true;\n\n this.setResource(resource);\n this.update();\n };\n\n Object.defineProperties(BaseTexture.prototype, {\n /**\n * @name PIXI.BaseTexture#hasLoaded\n * @type {boolean}\n * @deprecated since 5.0.0\n * @readonly\n * @see PIXI.BaseTexture#valid\n */\n hasLoaded: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.hasLoaded property has been removed, use PIXI.BaseTexture.valid');\n\n return this.valid;\n },\n },\n /**\n * @name PIXI.BaseTexture#imageUrl\n * @type {string}\n * @deprecated since 5.0.0\n * @see PIXI.resource.ImageResource#url\n */\n imageUrl: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.imageUrl property has been removed, use PIXI.BaseTexture.resource.url');\n\n return this.resource && this.resource.url;\n },\n\n set: function set(imageUrl)\n {\n deprecation(v5, 'PIXI.BaseTexture.imageUrl property has been removed, use PIXI.BaseTexture.resource.url');\n\n if (this.resource)\n {\n this.resource.url = imageUrl;\n }\n },\n },\n /**\n * @name PIXI.BaseTexture#source\n * @type {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement}\n * @deprecated since 5.0.0\n * @readonly\n * @see PIXI.resources.BaseImageResource#source\n */\n source: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.source property has been moved, use `PIXI.BaseTexture.resource.source`');\n\n return this.resource && this.resource.source;\n },\n set: function set(source)\n {\n deprecation(v5, 'PIXI.BaseTexture.source property has been moved, use `PIXI.BaseTexture.resource.source` '\n + 'if you want to set HTMLCanvasElement. Otherwise, create new BaseTexture.');\n\n if (this.resource)\n {\n this.resource.source = source;\n }\n },\n },\n });\n\n /**\n * @method fromImage\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromImage = function fromImage(canvas, crossorigin, scaleMode, scale)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromImage method has been replaced with PIXI.BaseTexture.from');\n\n var resourceOptions = { scale: scale, crossorigin: crossorigin };\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode, resourceOptions: resourceOptions });\n };\n\n /**\n * @method fromCanvas\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromCanvas = function fromCanvas(canvas, scaleMode)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromCanvas method has been replaced with PIXI.BaseTexture.from');\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode });\n };\n\n /**\n * @method fromSVG\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromSVG = function fromSVG(canvas, crossorigin, scaleMode, scale)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromSVG method has been replaced with PIXI.BaseTexture.from');\n\n var resourceOptions = { scale: scale, crossorigin: crossorigin };\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode, resourceOptions: resourceOptions });\n };\n\n /**\n * @method PIXI.Point#copy\n * @deprecated since 5.0.0\n * @see PIXI.Point#copyFrom\n */\n PIXI.Point.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Point.copy method has been replaced with PIXI.Point.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.ObservablePoint#copy\n * @deprecated since 5.0.0\n * @see PIXI.ObservablePoint#copyFrom\n */\n PIXI.ObservablePoint.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.ObservablePoint.copy method has been replaced with PIXI.ObservablePoint.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.Rectangle#copy\n * @deprecated since 5.0.0\n * @see PIXI.Rectangle#copyFrom\n */\n PIXI.Rectangle.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Rectangle.copy method has been replaced with PIXI.Rectangle.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.Matrix#copy\n * @deprecated since 5.0.0\n * @see PIXI.Matrix#copyTo\n */\n PIXI.Matrix.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Matrix.copy method has been replaced with PIXI.Matrix.copyTo');\n\n return this.copyTo(p);\n };\n\n /**\n * @method PIXI.systems.StateSystem#setState\n * @deprecated since 5.1.0\n * @see PIXI.systems.StateSystem#set\n */\n PIXI.systems.StateSystem.prototype.setState = function setState(s)\n {\n deprecation('v5.1.0', 'StateSystem.setState has been renamed to StateSystem.set');\n\n return this.set(s);\n };\n\n Object.assign(PIXI.systems.FilterSystem.prototype, {\n /**\n * @method PIXI.FilterManager#getRenderTarget\n * @deprecated since 5.0.0\n * @see PIXI.systems.FilterSystem#getFilterTexture\n */\n getRenderTarget: function getRenderTarget(clear, resolution)\n {\n deprecation(v5,\n 'PIXI.FilterManager.getRenderTarget method has been replaced with PIXI.systems.FilterSystem#getFilterTexture'\n );\n\n return this.getFilterTexture(resolution);\n },\n\n /**\n * @method PIXI.FilterManager#returnRenderTarget\n * @deprecated since 5.0.0\n * @see PIXI.systems.FilterSystem#returnFilterTexture\n */\n returnRenderTarget: function returnRenderTarget(renderTexture)\n {\n deprecation(v5,\n 'PIXI.FilterManager.returnRenderTarget method has been replaced with '\n + 'PIXI.systems.FilterSystem.returnFilterTexture'\n );\n\n this.returnFilterTexture(renderTexture);\n },\n\n /**\n * @method PIXI.systems.FilterSystem#calculateScreenSpaceMatrix\n * @deprecated since 5.0.0\n * @param {PIXI.Matrix} outputMatrix - the matrix to output to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n calculateScreenSpaceMatrix: function calculateScreenSpaceMatrix(outputMatrix)\n {\n deprecation(v5, 'PIXI.systems.FilterSystem.calculateScreenSpaceMatrix method is removed, '\n + 'use `(vTextureCoord * inputSize.xy) + outputFrame.xy` instead');\n\n var mappedMatrix = outputMatrix.identity();\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n\n mappedMatrix.translate(sourceFrame.x / destinationFrame.width, sourceFrame.y / destinationFrame.height);\n mappedMatrix.scale(destinationFrame.width, destinationFrame.height);\n\n return mappedMatrix;\n },\n\n /**\n * @method PIXI.systems.FilterSystem#calculateNormalizedScreenSpaceMatrix\n * @deprecated since 5.0.0\n * @param {PIXI.Matrix} outputMatrix - The matrix to output to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n calculateNormalizedScreenSpaceMatrix: function calculateNormalizedScreenSpaceMatrix(outputMatrix)\n {\n deprecation(v5, 'PIXI.systems.FilterManager.calculateNormalizedScreenSpaceMatrix method is removed, '\n + 'use `((vTextureCoord * inputSize.xy) + outputFrame.xy) / outputFrame.zw` instead.');\n\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n var mappedMatrix = outputMatrix.identity();\n\n mappedMatrix.translate(sourceFrame.x / destinationFrame.width, sourceFrame.y / destinationFrame.height);\n\n var translateScaleX = (destinationFrame.width / sourceFrame.width);\n var translateScaleY = (destinationFrame.height / sourceFrame.height);\n\n mappedMatrix.scale(translateScaleX, translateScaleY);\n\n return mappedMatrix;\n },\n });\n\n Object.defineProperties(PIXI.RenderTexture.prototype, {\n /**\n * @name PIXI.RenderTexture#sourceFrame\n * @type {PIXI.Rectangle}\n * @deprecated since 5.0.0\n * @readonly\n */\n sourceFrame: {\n get: function get()\n {\n deprecation(v5, 'PIXI.RenderTexture.sourceFrame property has been removed');\n\n return this.filterFrame;\n },\n },\n /**\n * @name PIXI.RenderTexture#size\n * @type {PIXI.Rectangle}\n * @deprecated since 5.0.0\n * @readonly\n */\n size: {\n get: function get()\n {\n deprecation(v5, 'PIXI.RenderTexture.size property has been removed');\n\n return this._frame;\n },\n },\n });\n\n /**\n * @class BlurXFilter\n * @memberof PIXI.filters\n * @deprecated since 5.0.0\n * @see PIXI.filters.BlurFilterPass\n */\n var BlurXFilter = /*@__PURE__*/(function (superclass) {\n function BlurXFilter(strength, quality, resolution, kernelSize)\n {\n deprecation(v5, 'PIXI.filters.BlurXFilter class is deprecated, use PIXI.filters.BlurFilterPass');\n\n superclass.call(this, true, strength, quality, resolution, kernelSize);\n }\n\n if ( superclass ) BlurXFilter.__proto__ = superclass;\n BlurXFilter.prototype = Object.create( superclass && superclass.prototype );\n BlurXFilter.prototype.constructor = BlurXFilter;\n\n return BlurXFilter;\n }(PIXI.filters.BlurFilterPass));\n\n /**\n * @class BlurYFilter\n * @memberof PIXI.filters\n * @deprecated since 5.0.0\n * @see PIXI.filters.BlurFilterPass\n */\n var BlurYFilter = /*@__PURE__*/(function (superclass) {\n function BlurYFilter(strength, quality, resolution, kernelSize)\n {\n deprecation(v5, 'PIXI.filters.BlurYFilter class is deprecated, use PIXI.filters.BlurFilterPass');\n\n superclass.call(this, false, strength, quality, resolution, kernelSize);\n }\n\n if ( superclass ) BlurYFilter.__proto__ = superclass;\n BlurYFilter.prototype = Object.create( superclass && superclass.prototype );\n BlurYFilter.prototype.constructor = BlurYFilter;\n\n return BlurYFilter;\n }(PIXI.filters.BlurFilterPass));\n\n Object.assign(PIXI.filters, {\n BlurXFilter: BlurXFilter,\n BlurYFilter: BlurYFilter,\n });\n\n var Sprite = PIXI.Sprite;\n var Texture = PIXI.Texture;\n var Graphics = PIXI.Graphics;\n\n // Support for pixi.js-legacy bifurcation\n // give users a friendly assist to use legacy\n if (!Graphics.prototype.generateCanvasTexture)\n {\n Graphics.prototype.generateCanvasTexture = function generateCanvasTexture()\n {\n deprecation(v5, 'PIXI.Graphics.generateCanvasTexture method is only available in \"pixi.js-legacy\"');\n };\n }\n\n /**\n * @deprecated since 5.0.0\n * @member {PIXI.Graphics} PIXI.Graphics#graphicsData\n * @see PIXI.Graphics#geometry\n * @readonly\n */\n Object.defineProperty(PIXI.Graphics.prototype, 'graphicsData', {\n get: function get()\n {\n deprecation(v5, 'PIXI.Graphics.graphicsData property is deprecated, use PIXI.Graphics.geometry.graphicsData');\n\n return this.geometry.graphicsData;\n },\n });\n\n // Use these to deprecate all the Sprite from* methods\n function spriteFrom(name, source, crossorigin, scaleMode)\n {\n deprecation(v5, (\"PIXI.Sprite.\" + name + \" method is deprecated, use PIXI.Sprite.from\"));\n\n return Sprite.from(source, {\n resourceOptions: {\n scale: scaleMode,\n crossorigin: crossorigin,\n },\n });\n }\n\n /**\n * @deprecated since 5.0.0\n * @see PIXI.Sprite.from\n * @method PIXI.Sprite.fromImage\n * @return {PIXI.Sprite}\n */\n Sprite.fromImage = spriteFrom.bind(null, 'fromImage');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromSVG\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromSVG = spriteFrom.bind(null, 'fromSVG');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromCanvas\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromCanvas = spriteFrom.bind(null, 'fromCanvas');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromVideo\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromVideo = spriteFrom.bind(null, 'fromVideo');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromFrame\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromFrame = spriteFrom.bind(null, 'fromFrame');\n\n // Use these to deprecate all the Texture from* methods\n function textureFrom(name, source, crossorigin, scaleMode)\n {\n deprecation(v5, (\"PIXI.Texture.\" + name + \" method is deprecated, use PIXI.Texture.from\"));\n\n return Texture.from(source, {\n resourceOptions: {\n scale: scaleMode,\n crossorigin: crossorigin,\n },\n });\n }\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromImage\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromImage = textureFrom.bind(null, 'fromImage');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromSVG\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromSVG = textureFrom.bind(null, 'fromSVG');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromCanvas\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromCanvas = textureFrom.bind(null, 'fromCanvas');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromVideo\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromVideo = textureFrom.bind(null, 'fromVideo');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromFrame\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromFrame = textureFrom.bind(null, 'fromFrame');\n\n /**\n * @deprecated since 5.0.0\n * @member {boolean} PIXI.AbstractRenderer#autoResize\n * @see PIXI.AbstractRenderer#autoDensity\n */\n Object.defineProperty(PIXI.AbstractRenderer.prototype, 'autoResize', {\n get: function get()\n {\n deprecation(v5, 'PIXI.AbstractRenderer.autoResize property is deprecated, '\n + 'use PIXI.AbstractRenderer.autoDensity');\n\n return this.autoDensity;\n },\n set: function set(value)\n {\n deprecation(v5, 'PIXI.AbstractRenderer.autoResize property is deprecated, '\n + 'use PIXI.AbstractRenderer.autoDensity');\n\n this.autoDensity = value;\n },\n });\n\n /**\n * @deprecated since 5.0.0\n * @member {PIXI.systems.TextureSystem} PIXI.Renderer#textureManager\n * @see PIXI.Renderer#texture\n */\n Object.defineProperty(PIXI.Renderer.prototype, 'textureManager', {\n get: function get()\n {\n deprecation(v5, 'PIXI.Renderer.textureManager property is deprecated, use PIXI.Renderer.texture');\n\n return this.texture;\n },\n });\n\n /**\n * @namespace PIXI.utils.mixins\n * @deprecated since 5.0.0\n */\n PIXI.utils.mixins = {\n /**\n * @memberof PIXI.utils.mixins\n * @function mixin\n * @deprecated since 5.0.0\n */\n mixin: function mixin()\n {\n deprecation(v5, 'PIXI.utils.mixins.mixin function is no longer available');\n },\n /**\n * @memberof PIXI.utils.mixins\n * @function delayMixin\n * @deprecated since 5.0.0\n */\n delayMixin: function delayMixin()\n {\n deprecation(v5, 'PIXI.utils.mixins.delayMixin function is no longer available');\n },\n /**\n * @memberof PIXI.utils.mixins\n * @function performMixins\n * @deprecated since 5.0.0\n */\n performMixins: function performMixins()\n {\n deprecation(v5, 'PIXI.utils.mixins.performMixins function is no longer available');\n },\n };\n}\n\n// Install renderer plugins\nRenderer.registerPlugin('accessibility', AccessibilityManager);\nRenderer.registerPlugin('extract', Extract);\nRenderer.registerPlugin('interaction', InteractionManager);\nRenderer.registerPlugin('particle', ParticleRenderer);\nRenderer.registerPlugin('prepare', Prepare);\nRenderer.registerPlugin('batch', BatchRenderer);\nRenderer.registerPlugin('tilingSprite', TilingSpriteRenderer);\n\nLoader.registerPlugin(BitmapFontLoader);\nLoader.registerPlugin(SpritesheetLoader);\n\nApplication.registerPlugin(TickerPlugin);\nApplication.registerPlugin(AppLoaderPlugin);\n\n/**\n * String of the current PIXI version.\n *\n * @static\n * @constant\n * @memberof PIXI\n * @name VERSION\n * @type {string}\n */\nvar VERSION = '5.1.4';\n\n/**\n * @namespace PIXI\n */\n\n/**\n * This namespace contains WebGL-only display filters that can be applied\n * to DisplayObjects using the {@link PIXI.DisplayObject#filters filters} property.\n *\n * Since PixiJS only had a handful of built-in filters, additional filters\n * can be downloaded {@link https://github.com/pixijs/pixi-filters here} from the\n * PixiJS Filters repository.\n *\n * All filters must extend {@link PIXI.Filter}.\n *\n * @example\n * // Create a new application\n * const app = new PIXI.Application();\n *\n * // Draw a green rectangle\n * const rect = new PIXI.Graphics()\n * .beginFill(0x00ff00)\n * .drawRect(40, 40, 200, 200);\n *\n * // Add a blur filter\n * rect.filters = [new PIXI.filters.BlurFilter()];\n *\n * // Display rectangle\n * app.stage.addChild(rect);\n * document.body.appendChild(app.view);\n * @namespace PIXI.filters\n */\nvar filters = {\n AlphaFilter: AlphaFilter,\n BlurFilter: BlurFilter,\n BlurFilterPass: BlurFilterPass,\n ColorMatrixFilter: ColorMatrixFilter,\n DisplacementFilter: DisplacementFilter,\n FXAAFilter: FXAAFilter,\n NoiseFilter: NoiseFilter,\n};\n\nexport { VERSION, filters, useDeprecated };\n//# sourceMappingURL=pixi.es.js.map\n","import { ImVec4 } from \"imgui-js\";\n\nexport function fromConstructor(constr: any):((params: any[]) => any)\n{\n return constr as unknown as ((params: any[]) => any)\n}\n\nexport function vec2col(v: ImVec4): number\n{\n return (((v.x * 255) & 0xFF) << 16) +\n (((v.y * 255) & 0xFF) << 8) +\n (((v.z * 255) & 0xFF) << 0);\n}\n","import * as ImGui from \"imgui-js\";\nimport { ImVec2 } from \"imgui-js\";\nimport * as PIXI from \"pixi.js\";\nimport * as U from \"./utils\";\n\nlet clipboard_text: string = \"\";\n\nconst contexts: ImGui.ImGuiContext[] = [];\nconst contextIOs: ImGui.ImGuiIO[] = [];\nlet isFirstWindow: boolean = true;\n\nclass ImGuiImplInternalRenderer extends PIXI.ObjectRenderer\n{\n constructor(r: PIXI.Renderer)\n {\n super(r);\n }\n render(owner: PIXI.DisplayObject): void\n {\n if (!(owner instanceof ImGuiWindowLayer)) return;\n\n const window: ImGuiWindow = (owner as ImGuiWindowLayer).window;\n\n const io: ImGui.ImGuiIO = window.io;\n const draw_data: ImGui.ImDrawData = ImGui.GetDrawData();\n if (draw_data === null) { throw new Error(); }\n\n gl || console.log(draw_data);\n\n // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates)\n const fb_width: number = io.DisplaySize.x * io.DisplayFramebufferScale.x;\n const fb_height: number = io.DisplaySize.y * io.DisplayFramebufferScale.y;\n if (fb_width === 0 || fb_height === 0) {\n return;\n }\n draw_data.ScaleClipRects(io.DisplayFramebufferScale);\n\n // Backup GL state\n const last_program: WebGLProgram | null = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null;\n const last_active_texture: GLenum | null = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null;\n gl && gl.activeTexture(gl.TEXTURE0);\n const last_texture0: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null;\n const last_vertex_array: WebGLVertexArrayObject | null = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null;\n const last_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null;\n const last_element_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null;\n // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode);\n const last_viewport: Int32Array | null = gl && gl.getParameter(gl.VIEWPORT) || null;\n const last_scissor_box: Int32Array | null = gl && gl.getParameter(gl.SCISSOR_BOX) || null;\n const last_blend_src_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null;\n const last_blend_dst_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_RGB) || null;\n const last_blend_src_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null;\n const last_blend_dst_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null;\n const last_blend_equation_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null;\n const last_blend_equation_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null;\n const last_enable_blend: GLboolean | null = gl && gl.getParameter(gl.BLEND) || null;\n const last_enable_cull_face: GLboolean | null = gl && gl.getParameter(gl.CULL_FACE) || null;\n const last_enable_depth_test: GLboolean | null = gl && gl.getParameter(gl.DEPTH_TEST) || null;\n const last_enable_scissor_test: GLboolean | null = gl && gl.getParameter(gl.SCISSOR_TEST) || null;\n\n gl.clearColor(0, 0, 0, 0);\n gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);\n \n gl && gl.bindVertexArray(g_VaoHandle);\n\n // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill\n gl && gl.enable(gl.BLEND);\n gl && gl.blendEquation(gl.FUNC_ADD);\n gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE);\n gl && gl.disable(gl.CULL_FACE);\n gl && gl.disable(gl.DEPTH_TEST);\n gl && gl.enable(gl.SCISSOR_TEST);\n // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);\n\n // Setup viewport, orthographic projection matrix\n // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps.\n gl && gl.viewport(0, 0, fb_width, fb_height);\n const L: number = draw_data.DisplayPos.x;\n const R: number = draw_data.DisplayPos.x + draw_data.DisplaySize.x;\n const T: number = draw_data.DisplayPos.y;\n const B: number = draw_data.DisplayPos.y + draw_data.DisplaySize.y;\n // we actually flip the bottom and top here to match with PIXI's texture usage\n const ortho_projection: Float32Array = new Float32Array([\n 2.0 / (R - L), 0.0, 0.0, 0.0,\n 0.0, 2.0 / (B - T), 0.0, 0.0,\n 0.0, 0.0, -1.0, 0.0,\n (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0,\n ]);\n gl && gl.useProgram(g_ShaderHandle);\n gl && gl.uniform1i(g_AttribLocationTex, 0);\n gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection);\n\n // Render command lists\n gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle);\n gl && gl.enableVertexAttribArray(g_AttribLocationPosition);\n gl && gl.enableVertexAttribArray(g_AttribLocationUV);\n gl && gl.enableVertexAttribArray(g_AttribLocationColor);\n\n gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertPosOffset);\n gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertUVOffset);\n gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImGui.ImDrawVertSize, ImGui.ImDrawVertColOffset);\n\n // Draw\n const pos = draw_data.DisplayPos;\n const idx_buffer_type: GLenum = gl && ((ImGui.ImDrawIdxSize === 4) ? gl.UNSIGNED_INT : gl.UNSIGNED_SHORT) || 0;\n draw_data.IterateDrawLists((draw_list: ImGui.ImDrawList): void => {\n gl || console.log(draw_list);\n gl || console.log(\"VtxBuffer.length\", draw_list.VtxBuffer.length);\n gl || console.log(\"IdxBuffer.length\", draw_list.IdxBuffer.length);\n \n let idx_buffer_offset: number = 0;\n\n gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle);\n gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW);\n gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle);\n gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW);\n\n draw_list.IterateDrawCmds((draw_cmd: ImGui.ImDrawCmd): void => {\n gl || console.log(draw_cmd);\n gl || console.log(\"ElemCount\", draw_cmd.ElemCount);\n gl || console.log(\"ClipRect\", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y);\n gl || console.log(\"TextureId\", draw_cmd.TextureId);\n if (!gl) {\n console.log(\"i: pos.x pos.y uv.x uv.y col\");\n for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) {\n const view: ImGui.ImDrawVert = new ImGui.ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImGui.ImDrawVertSize);\n console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${(\"00000000\" + view.col[0].toString(16)).substr(-8)}`);\n }\n }\n\n if (draw_cmd.UserCallback !== null) {\n // User callback (registered via ImDrawList::AddCallback)\n draw_cmd.UserCallback(draw_list, draw_cmd);\n } else {\n const clip_rect = new ImGui.ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y);\n if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) {\n // Apply scissor/clipping rectangle\n gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y);\n\n // Bind texture, Draw\n gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId);\n gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset);\n }\n }\n\n idx_buffer_offset += draw_cmd.ElemCount * ImGui.ImDrawIdxSize;\n });\n });\n\n // Restore modified GL state\n \n gl && (last_program !== null) && gl.useProgram(last_program);\n gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0);\n gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture);\n gl && gl.disableVertexAttribArray(g_AttribLocationPosition);\n gl && gl.disableVertexAttribArray(g_AttribLocationUV);\n gl && gl.disableVertexAttribArray(g_AttribLocationColor);\n gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array);\n gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer);\n gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer);\n gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]);\n gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]);\n gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha);\n gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha);\n gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND));\n gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE));\n gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST));\n gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST));\n // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]);\n }\n}\n\nlet gl: WebGL2RenderingContext = null;\nlet app: PIXI.Application = null;\n\nclass ImGuiWindowLayer extends PIXI.Sprite\n{\n public readonly window: ImGuiWindow;\n constructor(window: ImGuiWindow, tex:PIXI.RenderTexture)\n {\n super();\n this.pluginName = \"imgui_renderer\";\n this.window = window;\n }\n}\n\nexport class ImGuiWindow extends PIXI.Container\n{\n public readonly ctx: ImGui.ImGuiContext;\n public readonly io: ImGui.ImGuiIO;\n private sizeX: number;\n private sizeY: number;\n public getSizeX(): number { return this.sizeX; }\n public getSizeY(): number { return this.sizeY; }\n\n private baseTex: PIXI.BaseRenderTexture = new PIXI.BaseRenderTexture({scaleMode: PIXI.SCALE_MODES.LINEAR, resolution: 1, type: PIXI.TYPES.FLOAT, format: PIXI.FORMATS.RGBA});\n private tex: PIXI.RenderTexture = new PIXI.RenderTexture(this.baseTex);\n \n private surface: PIXI.Sprite = new PIXI.Sprite(this.tex);\n private imgui: ImGuiWindowLayer = new ImGuiWindowLayer(this, this.tex);\n \n private update: (dt: number) => void;\n constructor(sizeX: number, sizeY: number, update: (dt: number) => void)\n {\n super();\n\n this.ctx = ImGui.CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts);\n ImGui.SetCurrentContext(this.ctx);\n this.io = ImGui.GetIO();\n\n contexts.push(this.ctx);\n contextIOs.push(this.io);\n\n if (contexts.length == 1)\n {\n CreateFontsTexture();\n }\n\n if (typeof(window) !== \"undefined\") {\n ImGui.LoadIniSettingsFromMemory(window.localStorage.getItem(\"imgui.ini\") || \"\");\n }\n\n if (typeof(navigator) !== \"undefined\") {\n this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null;\n }\n\n this.io.SetClipboardTextFn = (user_data: any, text: string): void => {\n clipboard_text = text;\n // console.log(`set clipboard_text: \"${clipboard_text}\"`);\n if (typeof navigator !== \"undefined\" && typeof (navigator as any).clipboard !== \"undefined\") {\n // console.log(`clipboard.writeText: \"${clipboard_text}\"`);\n (navigator as any).clipboard.writeText(clipboard_text).then((): void => {\n // console.log(`clipboard.writeText: \"${clipboard_text}\" done.`);\n });\n }\n };\n this.io.GetClipboardTextFn = (user_data: any): string => {\n // if (typeof navigator !== \"undefined\" && typeof (navigator as any).clipboard !== \"undefined\") {\n // console.log(`clipboard.readText: \"${clipboard_text}\"`);\n // (navigator as any).clipboard.readText().then((text: string): void => {\n // clipboard_text = text;\n // console.log(`clipboard.readText: \"${clipboard_text}\" done.`);\n // });\n // }\n // console.log(`get clipboard_text: \"${clipboard_text}\"`);\n return clipboard_text;\n };\n this.io.ClipboardUserData = null;\n\n // Setup back-end capabilities flags\n this.io.BackendFlags |= ImGui.BackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional)\n\n // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array.\n this.io.KeyMap[ImGui.Key.Tab] = 9;\n this.io.KeyMap[ImGui.Key.LeftArrow] = 37;\n this.io.KeyMap[ImGui.Key.RightArrow] = 39;\n this.io.KeyMap[ImGui.Key.UpArrow] = 38;\n this.io.KeyMap[ImGui.Key.DownArrow] = 40;\n this.io.KeyMap[ImGui.Key.PageUp] = 33;\n this.io.KeyMap[ImGui.Key.PageDown] = 34;\n this.io.KeyMap[ImGui.Key.Home] = 36;\n this.io.KeyMap[ImGui.Key.End] = 35;\n this.io.KeyMap[ImGui.Key.Insert] = 45;\n this.io.KeyMap[ImGui.Key.Delete] = 46;\n this.io.KeyMap[ImGui.Key.Backspace] = 8;\n this.io.KeyMap[ImGui.Key.Space] = 32;\n this.io.KeyMap[ImGui.Key.Enter] = 13;\n this.io.KeyMap[ImGui.Key.Escape] = 27;\n this.io.KeyMap[ImGui.Key.A] = 65;\n this.io.KeyMap[ImGui.Key.C] = 67;\n this.io.KeyMap[ImGui.Key.V] = 86;\n this.io.KeyMap[ImGui.Key.X] = 88;\n this.io.KeyMap[ImGui.Key.Y] = 89;\n this.io.KeyMap[ImGui.Key.Z] = 90;\n\n this.update = update;\n this.resize(sizeX, sizeY);\n this.imgui.pluginName = 'imgui_renderer';\n this.addChild(this.surface);\n app.renderer.plugins.interaction.addListener(\"mousedown\", this.mouseDown.bind(this));\n app.renderer.plugins.interaction.addListener(\"mouseup\", this.mouseUp.bind(this));\n app.ticker.add(this.updateInternal.bind(this));\n\n this.interactive = false;\n this.interactiveChildren = true;\n\n this.surface.interactive = false;\n }\n withContext(cb: () => void)\n {\n ImGui.SetCurrentContext(this.ctx);\n cb();\n }\n mouseDown(e: PIXI.interaction.InteractionEvent): void\n {\n if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface)\n {\n this.io.MouseDown[mouse_button_map[0]] = true;\n }\n }\n mouseUp(e: PIXI.interaction.InteractionEvent): void\n {\n if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface)\n {\n this.io.MouseDown[mouse_button_map[0]] = false;\n }\n }\n resize(sizeX: number, sizeY: number)\n {\n this.sizeX = sizeX;\n this.sizeY = sizeY;\n this.baseTex.resize(sizeX, sizeY);\n this.tex.frame = new PIXI.Rectangle(0, 0, this.baseTex.width, this.baseTex.height);\n }\n updateInternal(deltaTime: number)\n {\n const dt: number = deltaTime * 1 / (1000 * PIXI.settings.TARGET_FPMS);\n\n ImGui.SetCurrentContext(this.ctx);\n\n if (this.io.WantSaveIniSettings) {\n this.io.WantSaveIniSettings = false;\n if (typeof(window) !== \"undefined\") {\n window.localStorage.setItem(\"imgui.ini\", ImGui.SaveIniSettingsToMemory());\n }\n }\n\n this.io.DisplaySize.x = this.sizeX;\n this.io.DisplaySize.y = this.sizeY;\n this.io.DisplayFramebufferScale.x = 1;\n this.io.DisplayFramebufferScale.y = 1;\n\n this.io.DeltaTime = dt;\n\n let localPos: PIXI.Point = this.toLocal(app.renderer.plugins.interaction.mouse.global);\n if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY)\n {\n localPos = new PIXI.Point(-Number.MAX_VALUE, -Number.MAX_VALUE);\n }\n this.io.MousePos.x = localPos.x;\n this.io.MousePos.y = localPos.y;\n\n if (this.io.WantSetMousePos) {\n console.log(\"TODO: MousePos\", this.io.MousePos.x, this.io.MousePos.y);\n }\n\n if (typeof(document) !== \"undefined\") {\n if (this.io.MouseDrawCursor) {\n document.body.style.cursor = \"none\";\n } else {\n switch (ImGui.GetMouseCursor()) {\n case ImGui.MouseCursor.None: document.body.style.cursor = \"none\"; break;\n default: case ImGui.MouseCursor.Arrow: document.body.style.cursor = \"default\"; break;\n case ImGui.MouseCursor.TextInput: document.body.style.cursor = \"text\"; break; // When hovering over InputText, etc.\n case ImGui.MouseCursor.ResizeAll: document.body.style.cursor = \"move\"; break; // Unused\n case ImGui.MouseCursor.ResizeNS: document.body.style.cursor = \"ns-resize\"; break; // When hovering over an horizontal border\n case ImGui.MouseCursor.ResizeEW: document.body.style.cursor = \"ew-resize\"; break; // When hovering over a vertical border or a column\n case ImGui.MouseCursor.ResizeNESW: document.body.style.cursor = \"nesw-resize\"; break; // When hovering over the bottom-left corner of a window\n case ImGui.MouseCursor.ResizeNWSE: document.body.style.cursor = \"nwse-resize\"; break; // When hovering over the bottom-right corner of a window\n case ImGui.MouseCursor.Hand: document.body.style.cursor = \"move\"; break;\n }\n }\n }\n\n // Gamepad navigation mapping [BETA]\n for (let i = 0; i < this.io.NavInputs.length; ++i) {\n this.io.NavInputs[i] = 0.0;\n }\n if (this.io.ConfigFlags & ImGui.ConfigFlags.NavEnableGamepad) {\n // Update gamepad inputs\n const gamepads: (Gamepad | null)[] = (typeof(navigator) !== \"undefined\" && typeof(navigator.getGamepads) === \"function\") ? navigator.getGamepads() : [];\n for (let i = 0; i < gamepads.length; ++i) {\n const gamepad: Gamepad | null = gamepads[i];\n if (!gamepad) { continue; }\n const buttons_count: number = gamepad.buttons.length;\n const axes_count: number = gamepad.axes.length;\n const MAP_BUTTON = function(NAV_NO: number, BUTTON_NO: number): void {\n if (!gamepad) { return; }\n if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed)\n this.io.NavInputs[NAV_NO] = 1.0;\n }\n const MAP_ANALOG = function(NAV_NO: number, AXIS_NO: number, V0: number, V1: number): void {\n if (!gamepad) { return; }\n let v: number = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0;\n v = (v - V0) / (V1 - V0);\n if (v > 1.0) v = 1.0;\n if (this.io.NavInputs[NAV_NO] < v) this.io.NavInputs[NAV_NO] = v;\n }\n // TODO: map input based on vendor and product id\n // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id\n const match: RegExpMatchArray | null = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/);\n const match_chrome: RegExpMatchArray | null = gamepad.id.match(/^.*\\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\\).*$/);\n const vendor: string = (match && match[1]) || (match_chrome && match_chrome[1]) || \"0000\";\n const product: string = (match && match[2]) || (match_chrome && match_chrome[2]) || \"0000\";\n switch (vendor + product) {\n case \"046dc216\": // Logitech Logitech Dual Action (Vendor: 046d Product: c216)\n MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 2); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 0); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_ANALOG(ImGui.NavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left\n MAP_ANALOG(ImGui.NavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right\n MAP_ANALOG(ImGui.NavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up\n MAP_ANALOG(ImGui.NavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n case \"046dc21d\": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d)\n MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left\n MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right\n MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up\n MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_ANALOG(ImGui.NavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT\n MAP_ANALOG(ImGui.NavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n case \"2dc86001\": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001)\n case \"2dc86101\": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101)\n MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 0); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 4); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_ANALOG(ImGui.NavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left\n MAP_ANALOG(ImGui.NavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right\n MAP_ANALOG(ImGui.NavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up\n MAP_ANALOG(ImGui.NavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 6); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 7); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 8); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 9); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n default: // standard gamepad: https://w3c.github.io/gamepad/#remapping\n MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left\n MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right\n MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up\n MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n }\n }\n }\n\n ImGui.NewFrame();\n\n this.update(dt);\n\n ImGui.EndFrame();\n ImGui.Render();\n\n app.renderer.render(this.imgui, this.tex);\n\n this.surface.interactive = this.io.WantCaptureMouse;\n }\n}\n\nlet canvas: HTMLCanvasElement | null = null;\n\n//export let gl: WebGL2RenderingContext | null = null;\nlet g_ShaderHandle: WebGLProgram | null = null;\nlet g_VertHandle: WebGLShader | null = null;\nlet g_FragHandle: WebGLShader | null = null;\nlet g_AttribLocationTex: WebGLUniformLocation | null = null;\nlet g_AttribLocationProjMtx: WebGLUniformLocation | null = null;\nlet g_AttribLocationPosition: GLint = -1;\nlet g_AttribLocationUV: GLint = -1;\nlet g_AttribLocationColor: GLint = -1;\nlet g_VaoHandle: WebGLVertexArrayObject = null;\nlet g_VboHandle: WebGLBuffer | null = null;\nlet g_ElementsHandle: WebGLBuffer | null = null;\nlet g_FontTexture: WebGLTexture | null = null;\n\nfunction document_on_copy(event: ClipboardEvent): void {\n if (event.clipboardData) {\n event.clipboardData.setData(\"text/plain\", clipboard_text);\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction document_on_cut(event: ClipboardEvent): void {\n if (event.clipboardData) {\n event.clipboardData.setData(\"text/plain\", clipboard_text);\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction document_on_paste(event: ClipboardEvent): void {\n if (event.clipboardData) {\n clipboard_text = event.clipboardData.getData(\"text/plain\");\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction window_on_gamepadconnected(event: any /* GamepadEvent */): void {\n console.log(\"Gamepad connected at index %d: %s. %d buttons, %d axes.\",\n event.gamepad.index, event.gamepad.id,\n event.gamepad.buttons.length, event.gamepad.axes.length);\n}\n\nfunction window_on_gamepaddisconnected(event: any /* GamepadEvent */): void {\n console.log(\"Gamepad disconnected at index %d: %s.\",\n event.gamepad.index, event.gamepad.id);\n}\n\nfunction canvas_on_blur(event: FocusEvent): void {\n for (var io of contextIOs)\n {\n io.KeyCtrl = false;\n io.KeyShift = false;\n io.KeyAlt = false;\n io.KeySuper = false;\n for (let i = 0; i < io.KeysDown.length; ++i) {\n io.KeysDown[i] = false;\n }\n for (let i = 0; i < io.MouseDown.length; ++i) {\n io.MouseDown[i] = false;\n }\n }\n}\n\nfunction canvas_on_keydown(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.KeyCtrl = event.ctrlKey;\n io.KeyShift = event.shiftKey;\n io.KeyAlt = event.altKey;\n io.KeySuper = event.metaKey;\n ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown));\n io.KeysDown[event.keyCode] = true;\n // forward to the keypress event\n if (/*io.WantCaptureKeyboard ||*/ event.key === \"Tab\") {\n event.preventDefault();\n }\n }\n}\n\nfunction canvas_on_keyup(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.KeyCtrl = event.ctrlKey;\n io.KeyShift = event.shiftKey;\n io.KeyAlt = event.altKey;\n io.KeySuper = event.metaKey;\n ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown));\n io.KeysDown[event.keyCode] = false;\n if (io.WantCaptureKeyboard) {\n event.preventDefault();\n }\n }\n}\n\nfunction canvas_on_keypress(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.AddInputCharacter(event.charCode);\n if (io.WantCaptureKeyboard) {\n event.preventDefault();\n }\n }\n}\n\n// MouseEvent.button\n// A number representing a given button:\n// 0: Main button pressed, usually the left button or the un-initialized state\n// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present)\n// 2: Secondary button pressed, usually the right button\n// 3: Fourth button, typically the Browser Back button\n// 4: Fifth button, typically the Browser Forward button\nconst mouse_button_map: number[] = [ 0, 2, 1, 3, 4 ];\n\nfunction canvas_on_contextmenu(event: Event): void {\n for (var io of contextIOs)\n {\n if (io.WantCaptureMouse) { event.preventDefault(); }\n }\n}\n\nfunction canvas_on_wheel(event: WheelEvent): void {\n for (var io of contextIOs)\n {\n let scale: number = 1.0;\n switch (event.deltaMode) {\n case event.DOM_DELTA_PIXEL: scale = 0.01; break;\n case event.DOM_DELTA_LINE: scale = 0.2; break;\n case event.DOM_DELTA_PAGE: scale = 1.0; break;\n }\n io.MouseWheelH = event.deltaX * scale;\n io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text.\n if (io.WantCaptureMouse) {\n event.preventDefault();\n }\n }\n}\n\nexport function PrePIXIInit(): void\n{\n PIXI.Renderer.registerPlugin(\"imgui_renderer\", U.fromConstructor(ImGuiImplInternalRenderer));\n}\n\nexport function Init(_app: PIXI.Application): void {\n // Setup Dear ImGui binding\n ImGui.IMGUI_CHECKVERSION();\n\n if (typeof(document) !== \"undefined\") {\n document.body.addEventListener(\"copy\", document_on_copy);\n document.body.addEventListener(\"cut\", document_on_cut);\n document.body.addEventListener(\"paste\", document_on_paste);\n }\n\n if (typeof(window) !== \"undefined\") {\n window.addEventListener(\"gamepadconnected\", window_on_gamepadconnected);\n window.addEventListener(\"gamepaddisconnected\", window_on_gamepaddisconnected);\n }\n\n app = _app;\n gl = (app.renderer as any).gl;\n canvas = app.view;\n\n gl.getExtension(\"EXT_color_buffer_float\");\n\n if (canvas !== null) {\n canvas.style.touchAction = \"none\"; // Disable browser handling of all panning and zooming gestures.\n canvas.addEventListener(\"blur\", canvas_on_blur);\n canvas.addEventListener(\"keydown\", canvas_on_keydown);\n canvas.addEventListener(\"keyup\", canvas_on_keyup);\n canvas.addEventListener(\"keypress\", canvas_on_keypress);\n canvas.addEventListener(\"contextmenu\", canvas_on_contextmenu);\n canvas.addEventListener(\"wheel\", canvas_on_wheel);\n }\n\n CreateDeviceObjects();\n}\n\nexport function Shutdown(): void {\n DestroyDeviceObjects();\n\n if (canvas !== null) {\n canvas.removeEventListener(\"blur\", canvas_on_blur);\n canvas.removeEventListener(\"keydown\", canvas_on_keydown);\n canvas.removeEventListener(\"keyup\", canvas_on_keyup);\n canvas.removeEventListener(\"keypress\", canvas_on_keypress);\n canvas.removeEventListener(\"contextmenu\", canvas_on_contextmenu);\n canvas.removeEventListener(\"wheel\", canvas_on_wheel);\n }\n\n app = null;\n canvas = null;\n\n if (typeof(window) !== \"undefined\") {\n window.removeEventListener(\"gamepadconnected\", window_on_gamepadconnected);\n window.removeEventListener(\"gamepaddisconnected\", window_on_gamepaddisconnected);\n }\n\n if (typeof(document) !== \"undefined\") {\n document.body.removeEventListener(\"copy\", document_on_copy);\n document.body.removeEventListener(\"cut\", document_on_cut);\n document.body.removeEventListener(\"paste\", document_on_paste);\n }\n}\n\nfunction CreateFontsTexture(): void {\n const io = ImGui.GetIO();\n\n // Backup GL state\n const last_texture: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D);\n\n // Build texture atlas\n // const width: number = 256;\n // const height: number = 256;\n // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff);\n const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory.\n // console.log(`font texture ${width} x ${height} @ ${pixels.length}`);\n\n // Upload texture to graphics system\n g_FontTexture = gl && gl.createTexture();\n gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture);\n gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);\n gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR);\n // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2\n gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels);\n\n // Store our identifier\n io.Fonts.TexID = g_FontTexture || { foo: \"bar\" };\n // console.log(\"font texture id\", g_FontTexture);\n\n // Restore modified GL state\n gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture);\n}\n\nfunction DestroyFontsTexture(): void {\n const io = ImGui.GetIO();\n io.Fonts.TexID = null;\n gl && gl.deleteTexture(g_FontTexture); g_FontTexture = null;\n}\n\nfunction CreateDeviceObjects(): void {\n const vertex_shader: string[] = [\n \"#version 300 es\",\n \"uniform mat4 ProjMtx;\",\n \"in vec2 Position;\",\n \"in vec2 UV;\",\n \"in vec4 Color;\",\n \"out vec2 Frag_UV;\",\n \"out vec4 Frag_Color;\",\n \"void main() {\",\n \"\tFrag_UV = UV;\",\n \"\tFrag_Color = Color;\",\n \"\tgl_Position = ProjMtx * vec4(Position.xy,0,1);\",\n \"}\",\n ];\n\n const fragment_shader: string[] = [\n \"#version 300 es\",\n \"precision mediump float;\", // WebGL requires precision specifiers\n \"uniform sampler2D Texture;\",\n \"in vec2 Frag_UV;\",\n \"in vec4 Frag_Color;\",\n \"out vec4 OutColor;\",\n \"void main() {\",\n \"\tOutColor = Frag_Color * texture(Texture, Frag_UV);\",\n \"}\",\n ];\n\n g_ShaderHandle = gl && gl.createProgram();\n g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER);\n g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER);\n gl && gl.shaderSource(g_VertHandle as WebGLShader, vertex_shader.join(\"\\n\"));\n gl && gl.shaderSource(g_FragHandle as WebGLShader, fragment_shader.join(\"\\n\"));\n gl && gl.compileShader(g_VertHandle as WebGLShader);\n gl && gl.compileShader(g_FragHandle as WebGLShader);\n gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_VertHandle as WebGLShader);\n gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_FragHandle as WebGLShader);\n gl && gl.linkProgram(g_ShaderHandle as WebGLProgram);\n\n g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, \"Texture\");\n g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, \"ProjMtx\");\n g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"Position\") || 0;\n g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"UV\") || 0;\n g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"Color\") || 0;\n\n g_VaoHandle = gl && gl.createVertexArray();\n g_VboHandle = gl && gl.createBuffer();\n g_ElementsHandle = gl && gl.createBuffer();\n\n}\n\nfunction DestroyDeviceObjects(): void {\n DestroyFontsTexture();\n\n gl && gl.deleteVertexArray(g_VaoHandle); g_VaoHandle = null;\n gl && gl.deleteBuffer(g_VboHandle); g_VboHandle = null;\n gl && gl.deleteBuffer(g_ElementsHandle); g_ElementsHandle = null;\n\n g_AttribLocationTex = null;\n g_AttribLocationProjMtx = null;\n g_AttribLocationPosition = -1;\n g_AttribLocationUV = -1;\n g_AttribLocationColor = -1;\n\n gl && gl.deleteProgram(g_ShaderHandle); g_ShaderHandle = null;\n gl && gl.deleteShader(g_VertHandle); g_VertHandle = null;\n gl && gl.deleteShader(g_FragHandle); g_FragHandle = null;\n}\n"],"names":["require","global","this","Polyfill","commonjsGlobal","delimiter","hasOwnProperty","map","parse","qsParse","qsStringify","sign","url","_url","prototypeAccessors","prototypeAccessors$1","EventEmitter","staticAccessors","Buffer","map$1","prototypeAccessors$2","prototypeAccessors$3","prototypeAccessors$4","prototypeAccessors$5","staticAccessors$1","earcut","tempAnchor","Resource","Url","Loader","Loader$1","middleware","vertex","fragment","tempPoint","tempMat","defaultFilterVertex","PIXI.ObjectRenderer","ImGui.GetDrawData","ImGui.ImDrawVertSize","ImGui.ImDrawVertPosOffset","ImGui.ImDrawVertUVOffset","ImGui.ImDrawVertColOffset","ImGui.ImDrawVert","ImGui.ImVec4","ImGui.ImDrawIdxSize","PIXI.Sprite","PIXI.Container","PIXI.BaseRenderTexture","PIXI.SCALE_MODES","PIXI.TYPES","PIXI.FORMATS","PIXI.RenderTexture","ImGui.CreateContext","ImGui.SetCurrentContext","ImGui.GetIO","ImGui.LoadIniSettingsFromMemory","ImGui.BackendFlags","ImGui.Key","PIXI.Rectangle","PIXI.settings","ImGui.SaveIniSettingsToMemory","PIXI.Point","ImGui.GetMouseCursor","ImGui.MouseCursor","ImGui.ConfigFlags","ImGui.NavInput","ImGui.NewFrame","ImGui.EndFrame","ImGui.Render","canvas","ImGui.IM_ASSERT","ImGui.IM_ARRAYSIZE","PIXI.Renderer","U.fromConstructor","ImGui.IMGUI_CHECKVERSION"],"mappings":";;;;;;;;;;;;;;;;;;AAAA,iBAAe,EAAE,CAAC;;ACAlB;;;;;;;;;;;;;;;;;;;;;;;;;AAyBA,SAAS,cAAc,CAAC,KAAK,EAAE,cAAc,EAAE;;EAE7C,IAAI,EAAE,GAAG,CAAC,CAAC;EACX,KAAK,IAAI,CAAC,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE;IAC1C,IAAI,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IACpB,IAAI,IAAI,KAAK,GAAG,EAAE;MAChB,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;KACpB,MAAM,IAAI,IAAI,KAAK,IAAI,EAAE;MACxB,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;MACnB,EAAE,EAAE,CAAC;KACN,MAAM,IAAI,EAAE,EAAE;MACb,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;MACnB,EAAE,EAAE,CAAC;KACN;GACF;;;EAGD,IAAI,cAAc,EAAE;IAClB,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE;MACf,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;KACrB;GACF;;EAED,OAAO,KAAK,CAAC;CACd;;;;AAID,IAAI,WAAW;IACX,+DAA+D,CAAC;AACpE,IAAI,SAAS,GAAG,SAAS,QAAQ,EAAE;EACjC,OAAO,WAAW,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;CAC5C,CAAC;;;;AAIF,AAAO,SAAS,OAAO,GAAG;EACxB,IAAI,YAAY,GAAG,EAAE;MACjB,gBAAgB,GAAG,KAAK,CAAC;;EAE7B,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,EAAE,CAAC,EAAE,EAAE;IACpE,IAAI,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,SAAS,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;;;IAGzC,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;MAC5B,MAAM,IAAI,SAAS,CAAC,2CAA2C,CAAC,CAAC;KAClE,MAAM,IAAI,CAAC,IAAI,EAAE;MAChB,SAAS;KACV;;IAED,YAAY,GAAG,IAAI,GAAG,GAAG,GAAG,YAAY,CAAC;IACzC,gBAAgB,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC;GAC3C;;;;;;EAMD,YAAY,GAAG,cAAc,CAAC,MAAM,CAAC,YAAY,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,SAAS,CAAC,EAAE;IACxE,OAAO,CAAC,CAAC,CAAC,CAAC;GACZ,CAAC,EAAE,CAAC,gBAAgB,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;EAEjC,OAAO,CAAC,CAAC,gBAAgB,GAAG,GAAG,GAAG,EAAE,IAAI,YAAY,KAAK,GAAG,CAAC;CAC9D,AACD;;;AAGA,AAAO,SAAS,SAAS,CAAC,IAAI,EAAE;EAC9B,IAAI,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;MACjC,aAAa,GAAG,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC;;;EAG7C,IAAI,GAAG,cAAc,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,SAAS,CAAC,EAAE;IACxD,OAAO,CAAC,CAAC,CAAC,CAAC;GACZ,CAAC,EAAE,CAAC,cAAc,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;EAE/B,IAAI,CAAC,IAAI,IAAI,CAAC,cAAc,EAAE;IAC5B,IAAI,GAAG,GAAG,CAAC;GACZ;EACD,IAAI,IAAI,IAAI,aAAa,EAAE;IACzB,IAAI,IAAI,GAAG,CAAC;GACb;;EAED,OAAO,CAAC,cAAc,GAAG,GAAG,GAAG,EAAE,IAAI,IAAI,CAAC;CAC3C,AACD;;AAEA,AAAO,SAAS,UAAU,CAAC,IAAI,EAAE;EAC/B,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC;CAC/B;;;AAGD,AAAO,SAAS,IAAI,GAAG;EACrB,IAAI,KAAK,GAAG,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC;EACrD,OAAO,SAAS,CAAC,MAAM,CAAC,KAAK,EAAE,SAAS,CAAC,EAAE,KAAK,EAAE;IAChD,IAAI,OAAO,CAAC,KAAK,QAAQ,EAAE;MACzB,MAAM,IAAI,SAAS,CAAC,wCAAwC,CAAC,CAAC;KAC/D;IACD,OAAO,CAAC,CAAC;GACV,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;CACf;;;;;AAKD,AAAO,SAAS,QAAQ,CAAC,IAAI,EAAE,EAAE,EAAE;EACjC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;EAC/B,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;;EAE3B,SAAS,IAAI,CAAC,GAAG,EAAE;IACjB,IAAI,KAAK,GAAG,CAAC,CAAC;IACd,OAAO,KAAK,GAAG,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,EAAE;MAClC,IAAI,GAAG,CAAC,KAAK,CAAC,KAAK,EAAE,EAAE,MAAM;KAC9B;;IAED,IAAI,GAAG,GAAG,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC;IACzB,OAAO,GAAG,IAAI,CAAC,EAAE,GAAG,EAAE,EAAE;MACtB,IAAI,GAAG,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,MAAM;KAC5B;;IAED,IAAI,KAAK,GAAG,GAAG,EAAE,OAAO,EAAE,CAAC;IAC3B,OAAO,GAAG,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,GAAG,KAAK,GAAG,CAAC,CAAC,CAAC;GAC1C;;EAED,IAAI,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;EACtC,IAAI,OAAO,GAAG,IAAI,CAAC,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;;EAElC,IAAI,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,MAAM,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC;EACxD,IAAI,eAAe,GAAG,MAAM,CAAC;EAC7B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE,EAAE;IAC/B,IAAI,SAAS,CAAC,CAAC,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,EAAE;MAC/B,eAAe,GAAG,CAAC,CAAC;MACpB,MAAM;KACP;GACF;;EAED,IAAI,WAAW,GAAG,EAAE,CAAC;EACrB,KAAK,IAAI,CAAC,GAAG,eAAe,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;IACvD,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;GACxB;;EAED,WAAW,GAAG,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC;;EAEjE,OAAO,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;CAC9B;;AAED,AAAO,IAAI,GAAG,GAAG,GAAG,CAAC;AACrB,AAAO,IAAI,SAAS,GAAG,GAAG,CAAC;;AAE3B,AAAO,SAAS,OAAO,CAAC,IAAI,EAAE;EAC5B,IAAI,MAAM,GAAG,SAAS,CAAC,IAAI,CAAC;MACxB,IAAI,GAAG,MAAM,CAAC,CAAC,CAAC;MAChB,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;EAEpB,IAAI,CAAC,IAAI,IAAI,CAAC,GAAG,EAAE;;IAEjB,OAAO,GAAG,CAAC;GACZ;;EAED,IAAI,GAAG,EAAE;;IAEP,GAAG,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC,EAAE,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;GACrC;;EAED,OAAO,IAAI,GAAG,GAAG,CAAC;CACnB;;AAED,AAAO,SAAS,QAAQ,CAAC,IAAI,EAAE,GAAG,EAAE;EAClC,IAAI,CAAC,GAAG,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;;EAE3B,IAAI,GAAG,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,KAAK,GAAG,EAAE;IAC5C,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC;GACxC;EACD,OAAO,CAAC,CAAC;CACV;;;AAGD,AAAO,SAAS,OAAO,CAAC,IAAI,EAAE;EAC5B,OAAO,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;CAC3B;AACD,iBAAe;EACb,OAAO,EAAE,OAAO;EAChB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,OAAO;EAChB,GAAG,EAAE,GAAG;EACR,SAAS,EAAE,SAAS;EACpB,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,IAAI;EACV,UAAU,EAAE,UAAU;EACtB,SAAS,EAAE,SAAS;EACpB,OAAO,EAAE,OAAO;CACjB,CAAC;AACF,SAAS,MAAM,EAAE,EAAE,EAAE,CAAC,EAAE;IACpB,IAAI,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;IACnC,IAAI,GAAG,GAAG,EAAE,CAAC;IACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QAChC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;KACxC;IACD,OAAO,GAAG,CAAC;CACd;;;AAGD,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG;IAChC,UAAU,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,OAAO,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,GAAG,CAAC,EAAE;IAC5D,UAAU,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE;QACvB,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,GAAG,GAAG,CAAC,MAAM,GAAG,KAAK,CAAC;QAC1C,OAAO,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;KACjC;CACJ;;;ACxOD,IAAI,MAAM,GAAG,CAAC,WAAW;EACvB,IAAI,UAAU,GAAG,OAAO,QAAQ,KAAK,WAAW,IAAI,QAAQ,CAAC,aAAa,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG,GAAG,SAAS,CAAC;EACpH;AACF,SAAS,MAAM,EAAE;EACf,MAAM,GAAG,MAAM,IAAI,EAAE,CAAC;;AAExB,IAAI,MAAM,CAAC,OAAO,MAAM,GAAG,WAAW,CAAC,MAAM,CAAC,EAAE,CAAC,IAAI,eAAe,CAAC,EAAE,CAAC,IAAI,GAAG,CAAC,IAAI,GAAG,IAAI,MAAM,CAAC,CAAC,GAAG,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,GAAG,EAAC,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,gBAAgB,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,MAAM,CAAC,OAAO,CAAC,CAAC,MAAM,OAAO,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,IAAI,kBAAkB,CAAC,KAAK,CAAC,IAAI,qBAAqB,CAAC,KAAK,CAAC,IAAI,mBAAmB,CAAC,KAAK,CAAC,IAAI,oBAAoB,CAAC,KAAK,CAAC,IAAI,oBAAoB,CAAC,KAAK,CAAC,kBAAkB,CAAC,OAAO,MAAM,GAAG,QAAQ,CAAC,qBAAqB,CAAC,OAAO,aAAa,GAAG,UAAU,CAAC,oBAAoB,CAAC,OAAO,OAAO,GAAG,QAAQ,EAAE,OAAOA,eAAO,GAAG,UAAU,CAAC,mBAAmB,CAAC,oBAAoB,EAAE,CAAC,kBAAkB,EAAE,CAAC,qBAAqB,CAAC,oBAAoB,CAAC,CAAC,kBAAkB,EAAE,CAAC,mBAAmB,EAAE,CAAC,qBAAqB,CAAC,IAAI,eAAe,CAAC,EAAE,CAAC,SAAS,UAAU,CAAC,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,OAAO,MAAM,CAAC,YAAY,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,IAAI,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,CAAC,GAAG,mBAAmB,CAAC,CAAC,eAAe,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,IAAI,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,UAAU,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,IAAI,GAAG,CAAC,GAAG,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,UAAa,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,UAAe,CAAC,QAAQ,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,QAAQ,EAAC,CAAC,OAAO,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,SAAS,UAAU,CAAC,QAAQ,CAAC,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,IAAI,UAAU,CAAC,GAAG,EAAC,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,OAAO,GAAG,CAAC,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,EAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,mBAAmB,CAAC,SAAS,EAAE,CAAC,CAAC,GAAG,EAAE,EAAE,YAAY,UAAU,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,oBAAoB,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,MAAM,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,MAAM,EAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,UAAU,CAAC,OAAM,4BAA4B,EAAC,CAAC,KAAK,GAAG,oBAAoB,CAAC,CAAC,GAAG,OAAO,IAAI,EAAE,WAAW,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,OAAO,gBAAgB,CAAC,IAAI,CAAC,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,EAAC,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,OAAO,IAAI,CAAC,GAAG,OAAO,UAAU,GAAG,UAAU,CAAC,CAAC,OAAO,IAAI,UAAU,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,OAAO,IAAI,GAAG,QAAQ,CAAC,CAAC,OAAO,IAAI,CAAC,CAAC,GAAG,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,WAAU,CAAC,KAAK,GAAG,OAAO,SAAS,EAAE,WAAW,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,UAAS,CAAC,GAAG,OAAO,IAAI,GAAG,UAAU,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,MAAM,CAAC,CAAC,IAAI,CAAC,MAAM,EAAC,EAAC,CAAC,CAAC,KAAK,GAAG,kBAAkB,EAAE,qBAAqB,CAAC,CAAC,GAAG,qBAAqB,CAAC,CAAC,eAAe,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAI,CAAC,KAAK,GAAG,QAAQ,CAAC,aAAa,CAAC,CAAC,eAAe,CAAC,QAAQ,CAAC,aAAa,CAAC,IAAG,CAAC,GAAG,UAAU,CAAC,CAAC,eAAe,CAAC,WAAU,CAAC,GAAG,eAAe,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,eAAe,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,CAAC,eAAe,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,EAAC,CAAC,IAAI,CAAC,eAAe,CAAC,GAAE,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,GAAG,CAAC,IAAI,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,OAAO,GAAG,CAAC,YAAY,CAAC,MAAM,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,OAAO,gBAAgB,CAAC,IAAI,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,qBAAqB,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,SAAS,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,GAAG,CAAC,IAAI,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,OAAO,IAAI,UAAU,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,OAAO,IAAI,CAAC,MAAM,GAAG,CAAC,EAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,SAAS,SAAS,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,GAAG,CAAC,IAAI,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC,aAAa,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,UAAU,EAAE,CAAC,GAAG,GAAG,CAAC,MAAM,EAAE,GAAG,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,EAAE,GAAG,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,OAAO,GAAE,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,SAAS,KAAK,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAK,EAAC,CAAC,AAAM,IAAI,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,GAAG,OAAO,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,KAAK,GAAG,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,OAAO,QAAQ,GAAG,WAAW,CAAC,QAAQ,CAAC,OAAO,OAAO,GAAG,WAAW,EAAE,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,GAAG,CAAC,CAAC,IAAI,GAAG,IAAI,eAAe,CAAC,CAAC,GAAG,eAAe,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,eAAe,CAAC,GAAG,EAAC,CAAC,CAAC,eAAe,CAAC,SAAS,CAAC,IAAI,eAAe,CAAC,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,CAAC,AAAe,IAAI,WAAW,CAAC,SAAS,KAAK,CAAC,CAAC,AAAc,CAAC,CAAC,GAAG,OAAO,WAAW,GAAG,QAAQ,CAAC,CAAC,GAAG,CAAC,iCAAiC,EAAC,CAAC,IAAI,UAAU,CAAC,IAAI,SAAS,CAAC,IAAI,KAAK,CAAC,KAAK,CAAC,AAAiB,SAAS,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,IAAI,EAAC,CAAC,CAAC,IAAI,WAAW,CAAC,OAAO,WAAW,GAAG,WAAW,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,SAAS,iBAAiB,CAAC,OAAO,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,cAAc,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,MAAM,OAAO,CAAC,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC,EAAE,EAAE,OAAO,CAAC,QAAQ,EAAE,WAAW,CAAC,CAAC,OAAO,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,EAAE,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,MAAM,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,GAAG,CAAC,CAAC,GAAG,EAAE,MAAM,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAE,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,GAAE,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,MAAM,CAAC,YAAY,CAAC,EAAE,EAAC,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAAC,YAAY,CAAC,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,IAAI,EAAC,CAAC,CAAC,CAAC,OAAO,GAAG,CAAC,SAAS,YAAY,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,MAAM,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,EAAE,CAAC,SAAS,iBAAiB,CAAC,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,GAAG,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,QAAQ,CAAC,MAAM,CAAC,IAAI,MAAM,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,KAAK,CAAC,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,KAAI,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,GAAG,MAAM,EAAE,MAAM,CAAC,MAAM,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,EAAC,CAAC,KAAK,GAAG,CAAC,EAAE,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAE,CAAC,KAAK,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAE,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAE,CAAC,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,MAAM,CAAC,QAAQ,CAAC,SAAS,YAAY,CAAC,GAAG,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,OAAO,iBAAiB,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,SAAS,eAAe,CAAC,GAAG,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,EAAE,GAAG,CAAC,KAAK,GAAG,CAAC,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,KAAK,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,KAAK,GAAG,EAAE,EAAC,CAAC,OAAO,GAAG,CAAC,IAAI,YAAY,CAAC,OAAO,WAAW,GAAG,WAAW,CAAC,IAAI,WAAW,CAAC,UAAU,CAAC,CAAC,SAAS,CAAC,IAAI,cAAc,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,SAAS,uBAAuB,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,IAAI,SAAS,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,IAAI,YAAY,CAAC,MAAM,EAAC,CAAC,IAAI,YAAY,CAAC,OAAO,CAAC,cAAc,CAAC,KAAK,CAAC,IAAI,WAAW,CAAC,OAAO,CAAC,IAAI,oBAAoB,CAAC,MAAM,CAAC,cAAc,CAAC,EAAE,QAAQ,CAAC,GAAG,oBAAoB,CAAC,WAAW,CAAC,GAAG,CAAC,sDAAsD,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAC,CAAC,IAAI,CAAC,GAAG,OAAO,WAAW,GAAG,QAAQ,EAAE,OAAO,WAAW,CAAC,MAAM,GAAG,UAAU,CAAC,CAAC,UAAU,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,oBAAoB,CAAC,cAAc,CAAC,SAAS,CAAC,oBAAoB,CAAC,cAAc,CAAC,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC,OAAM,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,WAAW,CAAC,oBAAoB,EAAC,CAAC,CAAC,uBAAuB,EAAE,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC,YAAY,CAAC,SAAS,oBAAoB,CAAC,SAAS,CAAC,CAAC,MAAM,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,QAAQ,CAAC,SAAS,CAAC,KAAK,EAAE,CAAC,GAAG,OAAO,QAAQ,EAAE,UAAU,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,OAAO,IAAI,GAAG,QAAQ,CAAC,CAAC,GAAG,QAAQ,CAAC,GAAG,GAAG,SAAS,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,IAAI,EAAC,CAAC,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,GAAG,SAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAC,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,EAAE,CAAC,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,aAAa,CAAC,EAAE,CAAC,IAAI,kBAAkB,CAAC,KAAK,CAAC,SAAS,MAAM,EAAE,CAAC,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,OAAO,MAAM,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,CAAC,WAAW,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,EAAC,CAAC,CAAC,oBAAoB,CAAC,YAAY,EAAC,CAAC,SAAS,iBAAiB,EAAE,CAAC,GAAG,kBAAkB,CAAC,OAAO,kBAAkB,CAAC,IAAI,CAAC,oBAAoB,CAAC,UAAU,EAAC,CAAC,SAAS,OAAO,EAAE,CAAC,oBAAoB,CAAC,UAAU,EAAC,CAAC,SAAS,OAAO,EAAE,CAAC,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,OAAO,MAAM,CAAC,SAAS,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,KAAK,EAAE,EAAC,CAAC,CAAC,oBAAoB,CAAC,aAAa,EAAC,CAAC,SAAS,WAAW,CAAC,EAAE,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,EAAE,EAAC,CAAC,SAAS,YAAY,CAAC,EAAE,CAAC,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE,EAAC,CAAC,IAAI,eAAe,CAAC,CAAC,CAAC,IAAI,oBAAoB,CAAC,IAAI,CAAC,IAAI,qBAAqB,CAAC,IAAI,CAAC,SAAS,gBAAgB,CAAC,EAAE,CAAC,CAAC,eAAe,EAAE,CAAC,GAAG,MAAM,CAAC,wBAAwB,CAAC,CAAC,CAAC,MAAM,CAAC,wBAAwB,CAAC,CAAC,eAAe,EAAC,CAAC,CAAC,SAAS,mBAAmB,CAAC,EAAE,CAAC,CAAC,eAAe,EAAE,CAAC,GAAG,MAAM,CAAC,wBAAwB,CAAC,CAAC,CAAC,MAAM,CAAC,wBAAwB,CAAC,CAAC,eAAe,EAAC,CAAC,GAAG,eAAe,EAAE,CAAC,CAAC,CAAC,GAAG,oBAAoB,GAAG,IAAI,CAAC,CAAC,aAAa,CAAC,oBAAoB,CAAC,CAAC,oBAAoB,CAAC,KAAI,CAAC,GAAG,qBAAqB,CAAC,CAAC,IAAI,QAAQ,CAAC,qBAAqB,CAAC,qBAAqB,CAAC,IAAI,CAAC,QAAQ,GAAE,CAAC,CAAC,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,EAAE,CAAC,IAAI,aAAa,CAAC,uCAAuC,CAAC,SAAS,SAAS,CAAC,QAAQ,CAAC,CAAC,OAAO,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,IAAI,cAAc,CAAC,mo2fAAmo2f,CAAC,GAAG,CAAC,SAAS,CAAC,cAAc,CAAC,CAAC,CAAC,cAAc,CAAC,UAAU,CAAC,cAAc,EAAC,CAAC,SAAS,SAAS,EAAE,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,OAAO,IAAI,UAAU,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,IAAI,MAAM,CAAC,iBAAiB,CAAC,cAAc,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,OAAO,MAAM,CAAC,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,OAAO,MAAM,CAAC,YAAY,CAAC,CAAC,cAAc,CAAC,CAAC,IAAI,CAAC,KAAK,iDAAiD,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,EAAC,CAAC,CAAC,SAAS,gBAAgB,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,kBAAkB,EAAE,qBAAqB,CAAC,EAAE,OAAO,KAAK,GAAG,UAAU,CAAC,CAAC,OAAO,KAAK,CAAC,cAAc,CAAC,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,QAAQ,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,sCAAsC,CAAC,cAAc,CAAC,GAAG,CAAC,OAAO,QAAQ,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,SAAS,EAAE,CAAC,CAAC,CAAC,OAAO,IAAI,OAAO,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,SAAS,EAAE,EAAC,CAAC,CAAC,CAAC,SAAS,UAAU,CAAC,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,aAAa,CAAC,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC,CAAC,SAAS,eAAe,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,IAAI,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,mBAAmB,CAAC,AAAkB,EAAC,CAAC,gBAAgB,CAAC,AAAkB,CAAC,CAAC,SAAS,yBAAyB,CAAC,MAAM,CAAC,CAAC,eAAe,CAAC,MAAM,CAAC,UAAU,CAAC,EAAC,CAAC,SAAS,sBAAsB,CAAC,QAAQ,CAAC,CAAC,OAAO,gBAAgB,EAAE,CAAC,IAAI,CAAC,SAAS,MAAM,CAAC,CAAC,OAAO,WAAW,CAAC,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,SAAS,MAAM,CAAC,CAAC,GAAG,CAAC,yCAAyC,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,MAAM,EAAC,CAAC,CAAC,CAAC,SAAS,gBAAgB,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,YAAY,CAAC,EAAE,OAAO,WAAW,CAAC,oBAAoB,GAAG,UAAU,EAAE,CAAC,SAAS,CAAC,cAAc,CAAC,EAAE,OAAO,KAAK,GAAG,UAAU,CAAC,CAAC,OAAO,WAAW,CAAC,oBAAoB,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,yBAAyB,CAAC,SAAS,MAAM,CAAC,CAAC,GAAG,CAAC,iCAAiC,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,2CAA2C,CAAC,CAAC,sBAAsB,CAAC,yBAAyB,EAAC,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,sBAAsB,CAAC,yBAAyB,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,iBAAiB,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,MAAM,CAAC,iBAAiB,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,qDAAqD,CAAC,CAAC,CAAC,CAAC,OAAO,KAAK,CAAC,CAAC,gBAAgB,EAAE,CAAC,OAAM,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,SAAS,MAAM,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,SAAS,CAAC,IAAI,WAAW,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC,eAAe,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,IAAI,OAAO,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,OAAO,OAAO,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,GAAE,CAAC,CAAC,CAAC,CAAC,SAAS,yBAAyB,CAAC,IAAI,CAAC,CAAC,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC,AAAu4B,SAAS,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,AAAwS,MAAM,GAAG,CAAC,SAAS,OAAO,EAAE,EAAE,AAAqvC,IAAI,QAAQ,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC,SAAS,MAAM,CAAC,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC,EAAE,IAAI,GAAG,EAAE,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,EAAE,iBAAiB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,EAAC,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,SAAS,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,GAAG,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,GAAG,CAAC,YAAY,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,CAAC,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,OAAO,GAAG,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,QAAQ,CAAC,GAAG,GAAE,CAAC,CAAC,CAAC,SAAS,aAAa,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,QAAQ,CAAC,eAAe,EAAE,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,WAAW,EAAE,EAAE,CAAC,YAAY,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,aAAa,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,QAAQ,CAAC,eAAe,EAAE,CAAC,GAAG,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,OAAO,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,WAAW,EAAE,EAAE,CAAC,YAAY,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,aAAa,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,SAAS,CAAC,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAC,CAAC,GAAG,EAAE,IAAG,CAAC,OAAO,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,WAAW,EAAE,EAAE,CAAC,YAAY,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,CAAC,GAAG,MAAM,CAAC,mBAAmB,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,mBAAmB,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,KAAK,CAAC,SAAS,aAAa,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,WAAW,EAAE,EAAE,CAAC,YAAY,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,QAAQ,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,IAAI,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,OAAO,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,WAAW,EAAE,EAAE,CAAC,YAAY,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,YAAY,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,WAAW,EAAE,EAAE,CAAC,YAAY,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,QAAQ,CAAC,eAAe,EAAE,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,WAAW,EAAE,EAAE,CAAC,YAAY,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,SAAS,EAAE,EAAE,SAAS,gBAAgB,CAAC,IAAI,CAAC,CAAC,OAAO,IAAI,EAAE,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,QAAQ,MAAM,IAAI,SAAS,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,qBAAqB,EAAE,CAAC,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,EAAC,CAAC,gBAAgB,CAAC,MAAK,CAAC,IAAI,gBAAgB,CAAC,SAAS,CAAC,SAAS,gBAAgB,CAAC,GAAG,CAAC,CAAC,IAAI,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAC,CAAC,OAAO,GAAG,CAAC,IAAI,oBAAoB,CAAC,EAAE,CAAC,IAAI,eAAe,CAAC,EAAE,CAAC,IAAI,gBAAgB,CAAC,EAAE,CAAC,IAAI,MAAM,CAAC,EAAE,CAAC,IAAI,MAAM,CAAC,EAAE,CAAC,SAAS,qBAAqB,CAAC,IAAI,CAAC,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,CAAC,OAAM,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC,OAAM,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,IAAI,CAAC,CAAC,SAAS,mBAAmB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC,OAAO,IAAI,QAAQ,CAAC,MAAM,CAAC,kBAAkB,CAAC,IAAI,CAAC,QAAQ,CAAC,mBAAmB,CAAC,2CAA2C,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,WAAW,CAAC,aAAa,CAAC,SAAS,CAAC,CAAC,IAAI,UAAU,CAAC,mBAAmB,CAAC,SAAS,CAAC,SAAS,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,GAAG,KAAK,GAAG,SAAS,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,oBAAoB,CAAC,EAAE,EAAC,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,SAAS,CAAC,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,SAAS,CAAC,CAAC,UAAU,CAAC,SAAS,CAAC,WAAW,CAAC,UAAU,CAAC,UAAU,CAAC,SAAS,CAAC,QAAQ,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,UAAU,CAAC,IAAI,YAAY,CAAC,SAAS,CAAC,SAAS,iBAAiB,CAAC,OAAO,CAAC,CAAC,MAAM,IAAI,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,aAAa,CAAC,SAAS,CAAC,SAAS,kBAAkB,CAAC,OAAO,CAAC,CAAC,MAAM,IAAI,aAAa,CAAC,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,OAAO,CAAC,cAAc,CAAC,iBAAiB,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,SAAS,IAAI,CAAC,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,eAAc,CAAC,CAAC,CAAC,SAAS,UAAU,CAAC,cAAc,CAAC,CAAC,IAAI,gBAAgB,CAAC,iBAAiB,CAAC,cAAc,CAAC,CAAC,GAAG,gBAAgB,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,kBAAkB,CAAC,iCAAiC,EAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,EAAC,CAAC,CAAC,IAAI,cAAc,CAAC,IAAI,KAAK,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,IAAI,iBAAiB,CAAC,EAAE,CAAC,IAAI,UAAU,CAAC,CAAC,CAAC,cAAc,CAAC,OAAO,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,eAAe,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC,EAAE,EAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,oBAAoB,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC,CAAC,oBAAoB,CAAC,EAAE,CAAC,CAAC,GAAE,CAAC,oBAAoB,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC,EAAE,UAAU,CAAC,GAAG,UAAU,GAAG,iBAAiB,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC,cAAc,EAAC,CAAC,CAAC,EAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,iBAAiB,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC,cAAc,EAAC,CAAC,CAAC,SAAS,YAAY,CAAC,OAAO,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,GAAG,EAAE,gBAAgB,GAAG,kBAAkB,CAAC,CAAC,CAAC,MAAM,IAAI,SAAS,CAAC,yDAAyD,CAAC,CAAC,IAAI,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,iBAAiB,CAAC,QAAQ,CAAC,IAAI,CAAC,+CAA+C,EAAC,CAAC,GAAG,eAAe,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,4BAA4B,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,iBAAiB,CAAC,wBAAwB,CAAC,IAAI,CAAC,SAAS,EAAC,CAAC,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC,kBAAkB,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,CAAC,GAAG,oBAAoB,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,oBAAoB,CAAC,OAAO,CAAC,CAAC,OAAO,oBAAoB,CAAC,OAAO,CAAC,CAAC,SAAS,CAAC,OAAO,CAAC,SAAS,EAAE,CAAC,CAAC,EAAE,GAAE,CAAC,EAAC,CAAC,CAAC,SAAS,sBAAsB,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,IAAI,KAAK,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,SAAS,EAAE,CAAC,CAAC,OAAM,CAAC,CAAC,EAAE,CAAC,CAAC,YAAY,CAAC,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,sBAAsB,CAAC,SAAS,OAAO,CAAC,CAAC,IAAI,IAAI,CAAC,GAAG,IAAI,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,MAAK,CAAC,KAAK,GAAG,IAAI,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,OAAM,CAAC,KAAK,GAAG,IAAI,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,OAAM,CAAC,IAAI,CAAC,MAAM,IAAI,SAAS,CAAC,6BAA6B,CAAC,IAAI,CAAC,CAAC,OAAO,IAAI,CAAC,cAAc,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,kBAAkB,CAAC,IAAI,CAAC,EAAC,CAAC,SAAS,qBAAqB,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,IAAI,YAAY,WAAW,CAAC,CAAC,CAAC,OAAO,KAAK,CAAC,GAAG,EAAE,KAAK,YAAY,WAAW,CAAC,CAAC,CAAC,OAAO,KAAK,CAAC,IAAI,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,UAAU,CAAC,KAAK,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,MAAM,SAAS,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,SAAS,CAAC,UAAS,CAAC,MAAM,UAAU,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,UAAU,CAAC,UAAU,CAAC,UAAS,CAAC,OAAO,SAAS,GAAG,UAAU,EAAE,IAAI,GAAG,KAAK,CAAC,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,eAAe,CAAC,uBAAuB,CAAC,CAAC,CAAC,uBAAuB,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2BAA2B,CAAC,GAAG,CAAC,CAAC,SAAS,mBAAmB,CAAC,MAAM,CAAC,CAAC,OAAO,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,iBAAiB,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC,2BAA2B,EAAC,CAAC,IAAI,iBAAiB,CAAC,KAAK,CAAC,SAAS,eAAe,CAAC,MAAM,CAAC,EAAE,SAAS,aAAa,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,YAAY,CAAC,aAAa,CAAC,EAAE,CAAC,QAAQ,EAAC,CAAC,IAAI,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,aAAa,CAAC,EAAE,CAAC,GAAG,EAAC,CAAC,CAAC,SAAS,kBAAkB,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC,IAAI,QAAQ,CAAC,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,QAAQ,CAAC,CAAC,aAAa,CAAC,EAAE,EAAC,CAAC,CAAC,SAAS,eAAe,CAAC,MAAM,CAAC,CAAC,GAAG,WAAW,GAAG,OAAO,iBAAiB,CAAC,CAAC,eAAe,CAAC,SAAS,MAAM,CAAC,CAAC,OAAO,MAAM,CAAC,CAAC,OAAO,MAAM,CAAC,iBAAiB,CAAC,IAAI,iBAAiB,CAAC,SAAS,IAAI,CAAC,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,0BAA0B,CAAC,EAAE,CAAC,GAAG,EAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,EAAE,EAAC,CAAC,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC,SAAS,MAAM,CAAC,CAAC,iBAAiB,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,OAAO,MAAM,CAAC,CAAC,eAAe,CAAC,SAAS,MAAM,CAAC,CAAC,iBAAiB,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,EAAC,CAAC,CAAC,OAAO,eAAe,CAAC,MAAM,CAAC,CAAC,SAAS,iBAAiB,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,2BAA2B,CAAC,IAAI,EAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC,uBAAuB,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,KAAK,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,eAAe,CAAC,KAAK,CAAC,OAAO,KAAK,CAAC,CAAC,SAAS,kBAAkB,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,2BAA2B,CAAC,IAAI,EAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC,eAAe,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,uBAAuB,CAAC,CAAC,iBAAiB,CAAC,uCAAuC,EAAC,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC,kBAAkB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,uBAAuB,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,QAAQ,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,UAAS,CAAC,CAAC,SAAS,qBAAqB,EAAE,CAAC,OAAM,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,aAAa,CAAC,SAAS,CAAC,IAAI,aAAa,CAAC,EAAE,CAAC,SAAS,mBAAmB,EAAE,CAAC,MAAM,aAAa,CAAC,MAAM,CAAC,CAAC,IAAI,GAAG,CAAC,aAAa,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,eAAe,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,CAAC,GAAE,CAAC,CAAC,SAAS,uBAAuB,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,2BAA2B,CAAC,IAAI,EAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC,eAAe,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,uBAAuB,CAAC,CAAC,iBAAiB,CAAC,uCAAuC,EAAC,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,aAAa,CAAC,MAAM,GAAG,CAAC,EAAE,aAAa,CAAC,CAAC,aAAa,CAAC,mBAAmB,EAAC,CAAC,IAAI,CAAC,EAAE,CAAC,eAAe,CAAC,IAAI,CAAC,OAAO,IAAI,CAAC,SAAS,gBAAgB,EAAE,CAAC,WAAW,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC,qBAAqB,CAAC,WAAW,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,iBAAiB,CAAC,WAAW,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,kBAAkB,CAAC,WAAW,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC,qBAAqB,CAAC,WAAW,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC,wBAAuB,CAAC,SAAS,WAAW,EAAE,EAAE,IAAI,kBAAkB,CAAC,EAAE,CAAC,SAAS,mBAAmB,CAAC,KAAK,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,GAAG,SAAS,GAAG,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,CAAC,IAAI,QAAQ,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,cAAc,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,iBAAiB,CAAC,YAAY,CAAC,SAAS,CAAC,gDAAgD,CAAC,SAAS,CAAC,MAAM,CAAC,sBAAsB,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,IAAI,EAAC,CAAC,OAAO,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,EAAE,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,SAAQ,CAAC,CAAC,SAAS,kBAAkB,CAAC,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,GAAG,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,SAAS,GAAG,YAAY,EAAE,SAAS,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,aAAa,EAAE,SAAS,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC,CAAC,iBAAiB,CAAC,+BAA+B,CAAC,IAAI,CAAC,SAAS,EAAC,CAAC,mBAAmB,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC,CAAC,iBAAiB,CAAC,sFAAsF,CAAC,YAAY,CAAC,IAAI,EAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC,MAAK,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,SAAS,GAAG,YAAY,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,YAAY,CAAC,aAAY,CAAC,CAAC,CAAC,SAAS,eAAe,CAAC,IAAI,CAAC,WAAW,CAAC,iBAAiB,CAAC,aAAa,CAAC,SAAS,CAAC,aAAa,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,oBAAoB,CAAC,GAAE,CAAC,SAAS,aAAa,CAAC,GAAG,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC,MAAM,QAAQ,GAAG,YAAY,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,iBAAiB,CAAC,+BAA+B,CAAC,YAAY,CAAC,IAAI,CAAC,uBAAuB,CAAC,QAAQ,CAAC,IAAI,EAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,UAAS,CAAC,OAAO,GAAG,CAAC,SAAS,mCAAmC,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,iBAAiB,CAAC,sBAAsB,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,iBAAiB,CAAC,eAAe,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,iBAAiB,CAAC,kDAAkD,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,GAAG,CAAC,aAAa,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,OAAO,GAAG,CAAC,SAAS,wBAAwB,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,GAAG,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,iBAAiB,CAAC,sBAAsB,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,cAAc,EAAE,CAAC,GAAG,WAAW,GAAG,IAAI,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,aAAa,CAAC,GAAG,EAAC,CAAC,OAAO,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,iBAAiB,CAAC,eAAe,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,iBAAiB,CAAC,kDAAkD,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,iBAAiB,CAAC,kCAAkC,EAAE,MAAM,CAAC,EAAE,CAAC,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,GAAG,CAAC,aAAa,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC,GAAG,SAAS,GAAG,MAAM,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC,iBAAiB,CAAC,iDAAiD,EAAC,CAAC,OAAO,IAAI,CAAC,aAAa,EAAE,KAAK,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC,YAAY,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,SAAQ,CAAC,IAAI,CAAC,iBAAiB,CAAC,kCAAkC,EAAE,MAAM,CAAC,EAAE,CAAC,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,MAAM,KAAK,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,QAAQ,CAAC,MAAM,KAAK,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC,YAAY,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,SAAQ,CAAC,IAAI,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,gBAAgB,CAAC,UAAU,CAAC,YAAY,CAAC,QAAQ,CAAC,GAAE,CAAC,CAAC,CAAC,CAAC,GAAG,WAAW,GAAG,IAAI,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,aAAa,CAAC,GAAG,EAAC,CAAC,CAAC,MAAM,QAAQ,iBAAiB,CAAC,6BAA6B,EAAC,CAAC,CAAC,OAAO,GAAG,CAAC,SAAS,sCAAsC,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,iBAAiB,CAAC,sBAAsB,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,iBAAiB,CAAC,eAAe,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,iBAAiB,CAAC,kDAAkD,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,iBAAiB,CAAC,kCAAkC,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,GAAG,CAAC,aAAa,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,OAAO,GAAG,CAAC,SAAS,0BAA0B,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,CAAC,cAAc,CAAC,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,4BAA4B,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,aAAa,CAAC,GAAG,EAAC,CAAC,OAAO,GAAG,CAAC,SAAS,4BAA4B,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,GAAG,EAAC,CAAC,CAAC,SAAS,8BAA8B,CAAC,MAAM,CAAC,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAE,CAAC,CAAC,SAAS,eAAe,CAAC,GAAG,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC,GAAG,QAAQ,GAAG,YAAY,CAAC,CAAC,OAAO,GAAG,CAAC,GAAG,SAAS,GAAG,YAAY,CAAC,SAAS,CAAC,CAAC,OAAO,IAAI,CAAC,IAAI,EAAE,CAAC,eAAe,CAAC,GAAG,CAAC,QAAQ,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,OAAO,IAAI,CAAC,OAAO,YAAY,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,SAAS,yBAAyB,EAAE,CAAC,OAAO,MAAM,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,MAAM,CAAC,SAAS,yBAAyB,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,IAAI,mBAAmB,CAAC,CAAC,GAAG,mBAAmB,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,EAAC,CAAC,CAAC,OAAO,EAAE,CAAC,SAAS,gBAAgB,CAAC,EAAE,CAAC,CAAC,aAAa,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,MAAM,EAAE,aAAa,CAAC,CAAC,aAAa,CAAC,mBAAmB,EAAC,CAAC,CAAC,SAAS,WAAW,EAAE,CAAC,MAAM,CAAC,2BAA2B,CAAC,CAAC,yBAAyB,CAAC,MAAM,CAAC,2BAA2B,CAAC,CAAC,yBAAyB,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC,mBAAmB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,iBAAgB,CAAC,IAAI,mBAAmB,CAAC,EAAE,CAAC,SAAS,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,GAAG,SAAS,CAAC,CAAC,iBAAiB,CAAC,6BAA6B,EAAC,CAAC,MAAM,MAAM,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,UAAS,CAAC,OAAO,GAAG,CAAC,SAAS,oBAAoB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,OAAO,mBAAmB,CAAC,GAAG,CAAC,CAAC,SAAS,eAAe,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,kBAAkB,CAAC,0CAA0C,EAAC,CAAC,IAAI,eAAe,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,WAAW,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,eAAe,GAAG,WAAW,CAAC,CAAC,kBAAkB,CAAC,kDAAkD,EAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,eAAe,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,8BAA8B,CAAC,GAAG,CAAC,CAAC,IAAI,UAAU,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,OAAO,IAAI,CAAC,IAAI,kBAAkB,CAAC,oBAAoB,CAAC,IAAI,CAAC,eAAe,CAAC,UAAU,CAAC,CAAC,GAAG,SAAS,GAAG,kBAAkB,CAAC,CAAC,GAAG,CAAC,GAAG,kBAAkB,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,kBAAkB,CAAC,EAAE,CAAC,GAAG,CAAC,UAAU,CAAC,kBAAkB,CAAC,EAAE,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,kBAAkB,CAAC,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,kBAAkB,CAAC,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,SAAS,iBAAiB,EAAE,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,eAAe,CAAC,iBAAiB,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,UAAU,CAAC,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,eAAe,CAAC,iBAAiB,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,IAAI,CAAC,eAAe,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC,IAAI,uBAAuB,CAAC,kBAAkB,CAAC,UAAU,CAAC,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAC,OAAO,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,uBAAuB,CAAC,iBAAgB,CAAC,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,YAAW,CAAC,IAAI,EAAE,CAAC,eAAe,CAAC,UAAU,CAAC,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,OAAO,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC,OAAO,eAAe,CAAC,MAAM,CAAC,eAAe,CAAC,iBAAiB,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,eAAe,CAAC,MAAM,CAAC,eAAe,CAAC,iBAAiB,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,sBAAsB,EAAE,CAAC,iBAAiB,CAAC,SAAS,CAAC,UAAU,CAAC,4BAA4B,CAAC,iBAAiB,CAAC,SAAS,CAAC,UAAU,CAAC,4BAA4B,CAAC,iBAAiB,CAAC,SAAS,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,iBAAiB,CAAC,SAAS,CAAC,sBAAsB,CAAC,CAAC,0BAA0B,CAAC,iBAAiB,CAAC,SAAS,CAAC,cAAc,CAAC,CAAC,8BAA8B,CAAC,iBAAiB,CAAC,SAAS,CAAC,cAAc,CAAC,CAAC,+BAA8B,CAAC,SAAS,iBAAiB,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,OAAO,CAAC,cAAc,CAAC,WAAW,CAAC,aAAa,CAAC,aAAa,CAAC,cAAc,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,eAAe,CAAC,eAAe,CAAC,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,cAAc,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,IAAI,CAAC,cAAc,CAAC,cAAc,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,GAAG,CAAC,cAAc,EAAE,eAAe,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,mCAAmC,CAAC,IAAI,CAAC,kBAAkB,CAAC,KAAI,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,sCAAsC,CAAC,IAAI,CAAC,kBAAkB,CAAC,KAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,yBAAwB,CAAC,CAAC,SAAS,mBAAmB,CAAC,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,kBAAkB,CAAC,qCAAqC,EAAC,CAAC,GAAG,SAAS,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,aAAa,EAAE,SAAS,GAAG,YAAY,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC,MAAK,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,aAAY,CAAC,CAAC,SAAS,uBAAuB,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC,SAAS,CAAC,gBAAgB,CAAC,SAAS,CAAC,CAAC,SAAS,aAAa,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAC,CAAC,IAAI,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,IAAI,EAAE,gCAAgC,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,OAAO,IAAI,QAAQ,CAAC,SAAS,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,IAAI,EAAE,CAAC,GAAG,MAAM,CAAC,iBAAiB,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAC,WAAW,EAAC,CAAC,KAAK,GAAG,OAAO,cAAc,GAAG,WAAW,CAAC,CAAC,EAAE,CAAC,cAAc,CAAC,WAAW,EAAC,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,MAAM,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,GAAG,EAAE,GAAG,SAAS,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,UAAU,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,GAAG,SAAS,CAAC,CAAC,iBAAiB,CAAC,oCAAoC,CAAC,SAAS,EAAC,CAAC,CAAC,EAAE,CAAC,aAAa,CAAC,EAAE,EAAC,CAAC,GAAG,OAAO,EAAE,GAAG,UAAU,CAAC,CAAC,iBAAiB,CAAC,0CAA0C,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,EAAC,CAAC,OAAO,EAAE,CAAC,IAAI,gBAAgB,CAAC,SAAS,CAAC,SAAS,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,GAAG,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,CAAC,SAAS,qBAAqB,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,IAAI,YAAY,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,EAAE,CAAC,SAAS,KAAK,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,eAAe,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,gBAAgB,CAAC,IAAI,CAAC,CAAC,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,KAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,MAAM,IAAI,gBAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,uBAAuB,CAAC,OAAO,CAAC,cAAc,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,sBAAsB,CAAC,aAAa,CAAC,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,QAAQ,CAAC,IAAI,CAAC,mBAAmB,CAAC,aAAa,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,aAAa,CAAC,uBAAuB,CAAC,sBAAsB,CAAC,aAAa,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,MAAM,CAAC,uBAAuB,CAAC,eAAe,CAAC,MAAM,EAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,QAAQ,CAAC,uBAAuB,CAAC,iBAAiB,CAAC,QAAQ,EAAC,CAAC,aAAa,CAAC,uBAAuB,CAAC,mBAAmB,CAAC,aAAa,CAAC,CAAC,IAAI,iBAAiB,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC,kBAAkB,CAAC,iBAAiB,CAAC,UAAU,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,gBAAgB,CAAC,EAAC,CAAC,CAAC,CAAC,6BAA6B,CAAC,CAAC,OAAO,CAAC,cAAc,CAAC,mBAAmB,CAAC,CAAC,gBAAgB,CAAC,CAAC,gBAAgB,CAAC,CAAC,EAAE,CAAC,SAAS,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,IAAI,aAAa,CAAC,GAAG,gBAAgB,CAAC,CAAC,SAAS,CAAC,IAAI,CAAC,eAAe,CAAC,aAAa,CAAC,SAAS,CAAC,kBAAiB,CAAC,IAAI,CAAC,aAAa,CAAC,WAAW,CAAC,UAAS,CAAC,IAAI,WAAW,CAAC,mBAAmB,CAAC,iBAAiB,CAAC,UAAU,CAAC,GAAG,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,GAAG,iBAAiB,CAAC,CAAC,MAAM,IAAI,YAAY,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC,GAAG,SAAS,GAAG,eAAe,CAAC,gBAAgB,CAAC,CAAC,MAAM,IAAI,YAAY,CAAC,IAAI,CAAC,gCAAgC,CAAC,CAAC,IAAI,IAAI,CAAC,eAAe,CAAC,gBAAgB,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,CAAC,MAAM,IAAI,YAAY,CAAC,0BAA0B,CAAC,IAAI,CAAC,sCAAsC,CAAC,SAAS,CAAC,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,IAAI,CAAC,eAAe,CAAC,gBAAgB,CAAC,CAAC,QAAQ,EAAE,CAAC,uBAAuB,CAAC,CAAC,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,SAAS,CAAC,iBAAiB,CAAC,IAAI,eAAe,CAAC,IAAI,eAAe,CAAC,IAAI,CAAC,WAAW,CAAC,iBAAiB,CAAC,aAAa,CAAC,SAAS,CAAC,aAAa,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,IAAI,kBAAkB,CAAC,IAAI,iBAAiB,CAAC,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,IAAI,gBAAgB,CAAC,IAAI,iBAAiB,CAAC,IAAI,CAAC,GAAG,CAAC,eAAe,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,IAAI,qBAAqB,CAAC,IAAI,iBAAiB,CAAC,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,qBAAqB,CAAC,CAAC,mBAAmB,CAAC,iBAAiB,CAAC,WAAW,CAAC,CAAC,OAAM,CAAC,kBAAkB,CAAC,gBAAgB,CAAC,qBAAqB,CAAC,CAAC,EAAC,CAAC,SAAS,mBAAmB,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,IAAI,KAAK,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,YAAY,EAAE,CAAC,EAAE,CAAC,CAAC,EAAC,CAAC,OAAO,KAAK,CAAC,SAAS,cAAc,CAAC,WAAW,CAAC,CAAC,MAAM,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,GAAG,CAAC,WAAW,CAAC,GAAG,EAAE,CAAC,IAAI,GAAG,CAAC,WAAW,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,GAAG,EAAC,CAAC,CAAC,SAAS,mCAAmC,CAAC,YAAY,CAAC,QAAQ,CAAC,eAAe,CAAC,gBAAgB,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,IAAI,WAAW,CAAC,mBAAmB,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC,OAAO,CAAC,uBAAuB,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC,6BAA6B,CAAC,EAAE,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,SAAS,CAAC,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,cAAc,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,SAAS,GAAG,SAAS,CAAC,eAAe,CAAC,gBAAgB,CAAC,CAAC,SAAS,CAAC,eAAe,CAAC,gBAAgB,CAAC,GAAE,CAAC,GAAG,SAAS,GAAG,SAAS,CAAC,eAAe,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,YAAY,CAAC,6EAA6E,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC,SAAS,CAAC,IAAI,CAAC,qGAAqG,CAAC,CAAC,SAAS,CAAC,eAAe,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,kBAAkB,EAAE,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,SAAS,CAAC,IAAI,CAAC,uBAAuB,CAAC,WAAW,EAAC,CAAC,CAAC,6BAA6B,CAAC,EAAE,CAAC,WAAW,CAAC,SAAS,QAAQ,CAAC,CAAC,SAAS,CAAC,eAAe,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,gBAAgB,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,iBAAiB,CAAC,SAAS,CAAC,eAAe,CAAC,SAAS,CAAC,MAAM,CAAC,uBAAuB,EAAE,QAAQ,CAAC,CAAC,CAAC,EAAC,CAAC,IAAI,WAAW,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAC,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC,OAAO,QAAQ,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,OAAM,EAAE,CAAC,CAAC,CAAC,OAAM,EAAE,CAAC,EAAC,CAAC,SAAS,IAAI,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC,GAAG,EAAE,WAAW,YAAY,QAAQ,CAAC,CAAC,CAAC,MAAM,IAAI,SAAS,CAAC,oCAAoC,CAAC,OAAO,WAAW,CAAC,0BAA0B,CAAC,CAAC,IAAI,KAAK,CAAC,mBAAmB,CAAC,WAAW,CAAC,IAAI,EAAE,qBAAqB,CAAC,UAAU,EAAE,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,WAAW,CAAC,SAAS,CAAC,IAAI,GAAG,CAAC,IAAI,KAAK,CAAC,IAAI,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC,OAAO,CAAC,YAAY,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,SAAS,oBAAoB,CAAC,SAAS,CAAC,QAAQ,CAAC,SAAS,CAAC,cAAc,CAAC,aAAa,CAAC,CAAC,IAAI,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,iBAAiB,CAAC,gFAAgF,EAAC,CAAC,IAAI,iBAAiB,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,IAAI,EAAE,SAAS,GAAG,IAAI,CAAC,IAAI,oBAAoB,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,kBAAkB,GAAG,SAAS,CAAC,CAAC,oBAAoB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,QAAQ,CAAC,EAAE,CAAC,IAAI,aAAa,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC,CAAC,aAAa,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC,CAAC,QAAO,CAAC,IAAI,aAAa,CAAC,kBAAkB,CAAC,qBAAqB,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,OAAO,CAAC,2BAA2B,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,8BAA8B,CAAC,SAAS,CAAC,4DAA4D,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,aAAa,CAAC,KAAK,CAAC,GAAG,oBAAoB,CAAC,CAAC,aAAa,EAAE,0BAAyB,CAAC,IAAI,SAAS,CAAC,oBAAoB,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,KAAK,CAAC,CAAC,mBAAmB,CAAC,SAAS,CAAC,IAAI,CAAC,gBAAgB,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC,IAAI,KAAK,CAAC,CAAC,iBAAiB,CAAC,cAAc,CAAC,aAAa,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,iBAAiB,CAAC,CAAC,aAAa,EAAE,wCAAwC,CAAC,SAAS,CAAC,aAAY,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,aAAa,EAAE,SAAS,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAC,cAAc,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAC,CAAC,GAAG,iBAAiB,CAAC,CAAC,aAAa,CAAC,WAAW,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,cAAa,CAAC,aAAa,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,EAAE,EAAE,YAAY,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,aAAa,CAAC,MAAM,CAAC,GAAG,oBAAoB,CAAC,CAAC,aAAa,EAAE,iCAAgC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,kBAAkB,GAAG,IAAI,CAAC,CAAC,aAAa,EAAE,SAAS,CAAC,QAAQ,CAAC,SAAS,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,kBAAkB,EAAC,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,aAAa,EAAE,uCAAuC,CAAC,gBAAe,CAAC,AAAM,aAAa,EAAE,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,IAAI,eAAe,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,eAAe,CAAC,SAAS,gCAAgC,CAAC,YAAY,CAAC,UAAU,CAAC,QAAQ,CAAC,eAAe,CAAC,gBAAgB,CAAC,UAAU,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,IAAI,WAAW,CAAC,mBAAmB,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,gBAAgB,CAAC,UAAU,CAAC,CAAC,UAAU,CAAC,uBAAuB,CAAC,gBAAgB,CAAC,UAAU,CAAC,CAAC,6BAA6B,CAAC,EAAE,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,SAAS,CAAC,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,aAAa,CAAC,CAAC,SAAS,CAAC,eAAe,CAAC,oBAAoB,CAAC,IAAI,CAAC,UAAU,EAAC,CAAC,SAAS,mBAAmB,EAAE,CAAC,qBAAqB,CAAC,cAAc,CAAC,SAAS,CAAC,uBAAuB,CAAC,WAAW,EAAC,CAAC,IAAI,KAAK,CAAC,SAAS,CAAC,eAAe,CAAC,iBAAiB,CAAC,IAAI,MAAM,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,GAAG,SAAS,GAAG,MAAM,EAAE,SAAS,GAAG,MAAM,CAAC,aAAa,EAAE,MAAM,CAAC,SAAS,GAAG,SAAS,CAAC,IAAI,EAAE,MAAM,CAAC,QAAQ,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,mBAAmB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,mBAAmB,CAAC,SAAS,CAAC,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,oBAAmB,CAAC,IAAI,CAAC,mBAAmB,CAAC,KAAK,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,oBAAmB,CAAC,6BAA6B,CAAC,EAAE,CAAC,WAAW,CAAC,SAAS,QAAQ,CAAC,CAAC,IAAI,cAAc,CAAC,oBAAoB,CAAC,SAAS,CAAC,QAAQ,CAAC,SAAS,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,GAAG,SAAS,GAAG,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,CAAC,cAAc,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,eAAc,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,eAAc,CAAC,OAAM,EAAE,CAAC,CAAC,CAAC,OAAM,EAAE,CAAC,EAAC,CAAC,SAAS,YAAY,CAAC,KAAK,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,GAAG,EAAE,KAAK,YAAY,MAAM,CAAC,CAAC,CAAC,iBAAiB,CAAC,SAAS,CAAC,wBAAwB,CAAC,KAAK,EAAC,CAAC,GAAG,EAAE,KAAK,YAAY,SAAS,CAAC,eAAe,CAAC,WAAW,CAAC,CAAC,CAAC,iBAAiB,CAAC,SAAS,CAAC,oCAAoC,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,EAAC,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,iBAAiB,CAAC,wCAAwC,CAAC,SAAS,CAAC,oBAAoB,EAAC,CAAC,OAAO,aAAa,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,SAAS,CAAC,eAAe,CAAC,CAAC,SAAS,gCAAgC,CAAC,SAAS,CAAC,SAAS,CAAC,gBAAgB,CAAC,eAAe,CAAC,MAAM,CAAC,aAAa,CAAC,kBAAkB,CAAC,eAAe,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,SAAS,CAAC,gBAAgB,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,uBAAuB,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,6BAA6B,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,SAAS,CAAC,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,SAAS,CAAC,uBAAuB,CAAC,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,EAAC,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,SAAS,CAAC,uBAAuB,CAAC,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,EAAC,EAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC,iBAAiB,CAAC,SAAS,CAAC,0BAA0B,EAAC,EAAC,CAAC,MAAM,CAAC,cAAc,CAAC,SAAS,CAAC,eAAe,CAAC,iBAAiB,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,6BAA6B,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,SAAS,KAAK,CAAC,CAAC,IAAI,gBAAgB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,GAAG,CAAC,YAAY,CAAC,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,OAAO,gBAAgB,CAAC,cAAc,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,MAAM,CAAC,uBAAuB,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,IAAI,kBAAkB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,YAAY,CAAC,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,IAAI,WAAW,CAAC,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,CAAC,kBAAkB,CAAC,YAAY,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC,WAAW,EAAC,EAAC,CAAC,MAAM,CAAC,cAAc,CAAC,SAAS,CAAC,eAAe,CAAC,iBAAiB,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,OAAM,EAAE,CAAC,CAAC,CAAC,OAAM,EAAE,CAAC,EAAC,CAAC,SAAS,0BAA0B,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,6BAA6B,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,KAAK,CAAC,CAAC,OAAM,EAAE,CAAC,EAAC,CAAC,IAAI,eAAe,CAAC,EAAE,CAAC,IAAI,kBAAkB,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,cAAc,CAAC,MAAM,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,EAAE,CAAC,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,CAAC,QAAQ,CAAC,CAAC,kBAAkB,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,eAAe,CAAC,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC,SAAS,mBAAmB,EAAE,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,kBAAkB,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,kBAAkB,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,EAAE,MAAK,CAAC,CAAC,OAAO,KAAK,CAAC,SAAS,eAAe,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,kBAAkB,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,kBAAkB,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,OAAO,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,IAAI,CAAC,SAAS,UAAU,EAAE,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC,mBAAmB,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,gBAAe,CAAC,SAAS,gBAAgB,CAAC,KAAK,CAAC,CAAC,OAAO,KAAK,EAAE,KAAK,SAAS,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,IAAI,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,EAAE,CAAC,kBAAkB,CAAC,MAAM,CAAC,kBAAkB,CAAC,MAAM,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,OAAO,MAAM,CAAC,CAAC,CAAC,SAAS,uBAAuB,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,SAAS,MAAM,CAAC,CAAC,IAAI,EAAE,CAAC,kBAAkB,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,YAAY,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,CAAC,OAAO,gBAAgB,CAAC,KAAK,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,sBAAsB,CAAC,0BAA0B,CAAC,kBAAkB,CAAC,IAAI,CAAC,EAAC,CAAC,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC,OAAM,MAAM,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,GAAG,QAAQ,EAAE,CAAC,GAAG,OAAO,EAAE,CAAC,GAAG,UAAU,CAAC,CAAC,OAAO,CAAC,CAAC,QAAQ,EAAE,CAAC,IAAI,CAAC,OAAM,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,yBAAyB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,KAAK,EAAE,KAAK,CAAC,CAAC,OAAO,SAAS,OAAO,CAAC,CAAC,OAAO,IAAI,CAAC,cAAc,CAAC,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,SAAS,OAAO,CAAC,CAAC,OAAO,IAAI,CAAC,cAAc,CAAC,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,MAAM,IAAI,SAAS,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,uBAAuB,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,SAAS,KAAK,CAAC,CAAC,OAAO,KAAK,CAAC,CAAC,YAAY,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,CAAC,GAAG,OAAO,KAAK,GAAG,QAAQ,EAAE,OAAO,KAAK,GAAG,SAAS,CAAC,CAAC,MAAM,IAAI,SAAS,CAAC,kBAAkB,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,OAAO,KAAK,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,sBAAsB,CAAC,yBAAyB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,kBAAkB,CAAC,IAAI,CAAC,EAAC,CAAC,SAAS,0BAA0B,CAAC,IAAI,CAAC,QAAQ,CAAC,eAAe,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,QAAQ,CAAC,mBAAmB,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,UAAU,CAAC,uBAAuB,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,kBAAkB,CAAC,IAAI,CAAC,UAAU,CAAC,qBAAqB,CAAC,cAAc,CAAC,IAAI,CAAC,uBAAuB,CAAC,QAAQ,EAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,6BAA6B,CAAC,EAAE,CAAC,QAAQ,CAAC,SAAS,QAAQ,CAAC,CAAC,IAAI,gBAAgB,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,mBAAmB,CAAC,IAAI,CAAC,oBAAoB,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,OAAM,EAAE,CAAC,EAAC,CAAC,SAAS,2BAA2B,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,OAAO,KAAK,EAAE,KAAK,CAAC,CAAC,OAAO,MAAM,CAAC,SAAS,iBAAiB,CAAC,OAAO,CAAC,CAAC,OAAO,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,iBAAiB,CAAC,OAAO,CAAC,CAAC,OAAO,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,MAAM,CAAC,SAAS,kBAAkB,CAAC,OAAO,CAAC,CAAC,OAAO,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,kBAAkB,CAAC,OAAO,CAAC,CAAC,OAAO,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,MAAM,CAAC,SAAS,kBAAkB,CAAC,OAAO,CAAC,CAAC,OAAO,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,kBAAkB,CAAC,OAAO,CAAC,CAAC,OAAO,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,QAAQ,MAAM,IAAI,SAAS,CAAC,wBAAwB,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,yBAAyB,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,GAAG,QAAQ,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,WAAU,CAAC,IAAI,KAAK,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,IAAI,YAAY,CAAC,SAAS,KAAK,CAAC,CAAC,OAAO,KAAK,CAAC,CAAC,GAAG,QAAQ,GAAG,CAAC,CAAC,CAAC,IAAI,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,SAAS,KAAK,CAAC,CAAC,OAAO,KAAK,EAAE,QAAQ,GAAG,QAAQ,EAAC,CAAC,IAAI,cAAc,CAAC,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,YAAY,CAAC,aAAa,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,YAAY,CAAC,YAAY,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,CAAC,GAAG,OAAO,KAAK,GAAG,QAAQ,EAAE,OAAO,KAAK,GAAG,SAAS,CAAC,CAAC,MAAM,IAAI,SAAS,CAAC,kBAAkB,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC,MAAM,IAAI,SAAS,CAAC,oBAAoB,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,uDAAuD,CAAC,IAAI,CAAC,uCAAuC,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,OAAO,cAAc,CAAC,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,sBAAsB,CAAC,2BAA2B,CAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,GAAG,CAAC,CAAC,CAAC,kBAAkB,CAAC,IAAI,CAAC,EAAC,CAAC,SAAS,6BAA6B,CAAC,OAAO,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,SAAS,CAAC,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,UAAU,CAAC,WAAW,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC,IAAI,EAAE,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,SAAS,gBAAgB,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,IAAI,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,IAAI,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,CAAC,CAAC,sBAAsB,CAAC,gBAAgB,CAAC,CAAC,CAAC,4BAA4B,CAAC,IAAI,CAAC,EAAC,CAAC,SAAS,4BAA4B,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,IAAI,eAAe,CAAC,IAAI,GAAG,aAAa,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,SAAS,KAAK,CAAC,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,GAAG,eAAe,CAAC,CAAC,IAAI,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAC,CAAC,IAAI,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,YAAY,CAAC,cAAc,CAAC,CAAC,GAAG,GAAG,GAAG,SAAS,CAAC,GAAG,CAAC,aAAa,CAAC,IAAI,CAAC,GAAG,EAAE,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,cAAa,CAAC,cAAc,CAAC,cAAc,CAAC,EAAC,CAAC,CAAC,GAAG,WAAW,EAAE,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,YAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,EAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,OAAO,GAAG,CAAC,CAAC,YAAY,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,YAAY,WAAW,CAAC,CAAC,KAAK,CAAC,IAAI,UAAU,CAAC,KAAK,EAAC,CAAC,IAAI,SAAS,CAAC,IAAI,mBAAmB,CAAC,OAAO,KAAK,GAAG,QAAQ,CAAC,GAAG,EAAE,mBAAmB,EAAE,KAAK,YAAY,UAAU,EAAE,KAAK,YAAY,iBAAiB,EAAE,KAAK,YAAY,SAAS,CAAC,CAAC,CAAC,iBAAiB,CAAC,uCAAuC,EAAC,CAAC,GAAG,eAAe,EAAE,mBAAmB,CAAC,CAAC,SAAS,CAAC,UAAU,CAAC,OAAO,eAAe,CAAC,KAAK,CAAC,EAAC,CAAC,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC,OAAO,KAAK,CAAC,MAAM,EAAC,CAAC,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,eAAe,EAAE,mBAAmB,CAAC,CAAC,YAAY,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAC,CAAC,IAAI,CAAC,GAAG,mBAAmB,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,QAAQ,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,iBAAiB,CAAC,wDAAwD,EAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAQ,CAAC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAC,CAAC,CAAC,CAAC,GAAG,WAAW,GAAG,IAAI,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,EAAC,CAAC,OAAO,GAAG,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,sBAAsB,CAAC,0BAA0B,CAAC,kBAAkB,CAAC,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,EAAC,CAAC,CAAC,EAAC,CAAC,SAAS,6BAA6B,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,IAAI,OAAO,CAAC,KAAK,CAAC,GAAG,QAAQ,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,OAAO,OAAO,CAAC,CAAC,KAAK,CAAC,EAAC,CAAC,KAAK,GAAG,QAAQ,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,OAAO,OAAO,CAAC,CAAC,KAAK,CAAC,EAAC,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,SAAS,KAAK,CAAC,CAAC,IAAI,IAAI,CAAC,OAAO,EAAE,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC,IAAI,KAAK,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,EAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,YAAY,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,CAAC,IAAI,IAAI,CAAC,OAAO,EAAE,CAAC,IAAI,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,KAAK,CAAC,GAAG,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,EAAC,CAAC,GAAG,WAAW,GAAG,IAAI,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,EAAC,CAAC,OAAO,GAAG,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,sBAAsB,CAAC,0BAA0B,CAAC,kBAAkB,CAAC,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,EAAC,CAAC,CAAC,EAAC,CAAC,SAAS,sBAAsB,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,cAAc,CAAC,UAAU,CAAC,OAAO,SAAS,CAAC,CAAC,YAAY,CAAC,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,OAAO,SAAS,CAAC,CAAC,EAAC,CAAC,SAAS,aAAa,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,iBAAiB,CAAC,mCAAmC,CAAC,MAAM,EAAC,CAAC,OAAO,kBAAkB,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,SAAS,qBAAqB,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,IAAI,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,CAAC,iBAAiB,CAAC,SAAS,CAAC,oBAAoB,CAAC,WAAW,CAAC,OAAO,CAAC,EAAC,CAAC,OAAO,IAAI,CAAC,SAAS,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC,qBAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,IAAI,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,gBAAgB,CAAC,WAAW,CAAC,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,UAAU,CAAC,YAAY,CAAC,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,SAAS,mBAAmB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,qBAAqB,CAAC,MAAM,CAAC,CAAC,QAAQ,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,EAAC,CAAC,OAAO,CAAC,CAAC,SAAS,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,IAAI,KAAK,CAAC,mBAAmB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,gBAAgB,EAAC,CAAC,IAAI,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,OAAO,gBAAgB,CAAC,EAAE,CAAC,CAAC,IAAI,aAAa,CAAC,EAAE,CAAC,SAAS,iBAAiB,CAAC,OAAO,CAAC,CAAC,IAAI,MAAM,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,GAAG,MAAM,GAAG,SAAS,CAAC,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,OAAO,MAAM,CAAC,CAAC,IAAI,mBAAmB,CAAC,EAAE,CAAC,SAAS,wBAAwB,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,mBAAmB,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC,iBAAiB,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,SAAS,uBAAuB,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,CAAC,mBAAmB,CAAC,MAAM,CAAC,mBAAmB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,OAAO,EAAE,CAAC,SAAS,yBAAyB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,IAAI,KAAK,CAAC,mBAAmB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,IAAI,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,CAAC,SAAS,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,QAAQ,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAC,CAAC,IAAI,YAAY,CAAC,qBAAqB,CAAC,eAAe,CAAC,aAAa,CAAC,CAAC,IAAI,YAAY,CAAC,kBAAkB,CAAC,YAAY,CAAC,uCAAuC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE,aAAa,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,4BAA4B,EAAE,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,gBAAgB,EAAC,CAAC,YAAY,EAAE,4BAA4B,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,YAAY,EAAE,aAAa,CAAC,CAAC,CAAC,mBAAmB,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,YAAY,EAAE,oDAAmD,CAAC,YAAY,EAAE,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,IAAI,eAAe,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,OAAO,uBAAuB,CAAC,eAAe,CAAC,CAAC,SAAS,oBAAoB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,OAAO,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,cAAc,CAAC,MAAM,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,kBAAkB,CAAC,MAAM,CAAC,CAAC,QAAQ,EAAE,EAAC,CAAC,CAAC,SAAS,iBAAiB,EAAE,CAAC,OAAO,gBAAgB,CAAC,EAAE,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,OAAO,gBAAgB,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,kBAAkB,EAAE,CAAC,OAAO,gBAAgB,CAAC,EAAE,CAAC,CAAC,SAAS,uBAAuB,CAAC,MAAM,CAAC,CAAC,IAAI,WAAW,CAAC,kBAAkB,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC,cAAc,CAAC,MAAM,EAAC,CAAC,SAAS,oBAAoB,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,MAAK,CAAC,SAAS,uBAAuB,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,OAAO,KAAK,GAAG,MAAM,CAAC,SAAS,kBAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,gBAAgB,CAAC,CAAC,CAAC,CAAC,SAAS,cAAc,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,OAAO,gBAAgB,CAAC,OAAO,MAAM,CAAC,CAAC,SAAS,MAAM,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,GAAE,CAAC,SAAS,yBAAyB,EAAE,CAAC,OAAO,KAAK,CAAC,MAAM,CAAC,SAAS,sBAAsB,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,IAAI,EAAC,CAAC,SAAS,uBAAuB,CAAC,aAAa,CAAC,CAAC,KAAK,CAAC,KAAK,EAAC,CAAC,SAAS,uBAAuB,CAAC,aAAa,CAAC,CAAC,uBAAuB,CAAC,AAAa,EAAC,CAAC,qBAAqB,EAAE,CAAC,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,gBAAgB,EAAE,CAAC,sBAAsB,EAAE,CAAC,WAAW,EAAE,CAAC,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,UAAU,EAAE,CAAC,AAAqB,SAAS,gBAAgB,CAAC,KAAK,CAAC,CAAC,IAAI,GAAG,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,CAAC,AAAwH,GAAG,EAAE,IAAG,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,CAAC,EAAC,CAAC,OAAO,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,YAAY,CAAC,OAAO,IAAI,GAAG,UAAU,CAAC,IAAI,CAAC,SAAS,KAAK,CAAC,CAAC,IAAI,MAAM,CAAC,mEAAmE,CAAC,IAAI,MAAM,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,qBAAqB,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,EAAC,CAAC,GAAG,IAAI,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,EAAC,CAAC,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,MAAM,EAAE,OAAO,MAAM,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,GAAG,OAAO,mBAAmB,GAAG,SAAS,EAAE,mBAAmB,CAAC,CAAC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,EAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,QAAQ,EAAC,CAAC,OAAO,IAAI,UAAU,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,GAAG,CAAC,IAAI,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,IAAI,UAAU,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,EAAC,CAAC,OAAO,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC,CAAC,SAAS,iBAAiB,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,kBAAkB,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,EAAE,CAAC,IAAI,aAAa,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,yBAAyB,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,sBAAsB,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,mCAAmC,CAAC,GAAG,CAAC,gCAAgC,CAAC,GAAG,CAAC,gCAAgC,CAAC,GAAG,CAAC,0BAA0B,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,0BAA0B,CAAC,GAAG,CAAC,yBAAyB,CAAC,GAAG,CAAC,6BAA6B,CAAC,GAAG,CAAC,4BAA4B,CAAC,GAAG,CAAC,6BAA6B,CAAC,GAAG,CAAC,sBAAsB,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,wBAAwB,CAAC,GAAG,CAAC,cAAc,CAAC,GAAG,CAAC,yBAAyB,CAAC,GAAG,CAAC,oBAAoB,CAAC,GAAG,CAAC,cAAc,CAAC,GAAG,CAAC,iBAAiB,CAAC,GAAG,CAAC,mBAAmB,CAAC,GAAG,CAAC,kBAAkB,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,oBAAoB,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,kBAAkB,CAAC,GAAG,CAAC,cAAc,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,yBAAyB,CAAC,GAAG,CAAC,sBAAsB,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,YAAY,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,OAAO,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,kBAAkB,CAAC,MAAM,CAAC,oBAAoB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,mBAAmB,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,kBAAkB,CAAC,MAAM,CAAC,oBAAoB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,kBAAkB,CAAC,MAAM,CAAC,oBAAoB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,mBAAmB,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,kBAAkB,CAAC,MAAM,CAAC,oBAAoB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,mBAAmB,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,oBAAoB,CAAC,MAAM,CAAC,sBAAsB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,qBAAqB,CAAC,MAAM,CAAC,uBAAuB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAC,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,sBAAsB,CAAC,CAAC,MAAM,CAAC,sBAAsB,CAAC,CAAC,UAAU,CAAC,GAAG,GAAG,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,EAAC,EAAC,CAAC,OAAO,MAAM,CAAC,CAAC,SAAS,UAAU,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,OAAO,CAAC,+BAA+B,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,OAAM,CAAC,UAAU,CAAC,SAAS,CAAC,IAAI,KAAK,CAAC,UAAU,CAAC,SAAS,CAAC,WAAW,CAAC,UAAU,CAAC,qBAAqB,CAAC,SAAS,SAAS,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,qBAAqB,CAAC,UAAS,CAAC,CAAC,SAAS,GAAG,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,WAAW,CAAC,CAAC,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,eAAe,CAAC,CAAC,CAAC,OAAO,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC,OAAO,SAAS,KAAK,EAAE,CAAC,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC,OAAO,MAAM,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,OAAO,iBAAiB,EAAE,CAAC,OAAO,EAAE,CAAC,GAAG,MAAM,CAAC,sBAAsB,CAAC,CAAC,MAAM,CAAC,sBAAsB,CAAC,EAAE,CAAC,OAAO,GAAE,CAAC,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,YAAY,CAAC,CAAC,UAAU,CAAC,UAAU,CAAC,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,EAAE,EAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,GAAE,CAAC,CAAC,CAAC,EAAC,CAAC,IAAI,CAAC,KAAK,GAAE,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,SAAS,KAAK,CAAC,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,IAAI,EAAC,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,EAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAE,CAAC,KAAK,CAAC,IAAI,CAAC,AAAa,KAAK,QAAQ,CAAC,IAAI,CAAC,8CAA8C,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,OAAO,MAAM,CAAC,SAAS,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,GAAG,EAAE,GAAE,CAAC,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;;;EAGpqjkB,OAAO,MAAM;CACd;EACC;CACD,GAAG,CAAC;AACL,AACM,cAAc,GAAG,MAAM,CAAC,AAIG;;;ACTjC,IAAI,IAAiB,CAAC;AACtB,AA8EO,MAAM,aAAa,GAAW,MAAM,CAAC;AAC5C,AAEA;AACA,SAAgB,kBAAkB,KAAc,OAAO,8BAA8B,CAAC,aAAa,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC,aAAa,CAAC,CAAC,EAAE;AAEzN,SAAgB,SAAS,CAAC,KAAuB,IAAU,IAAI,CAAC,KAAK,EAAE;IAAE,MAAM,IAAI,KAAK,EAAE,CAAC;CAAE,EAAE;AAE/F,SAAgB,YAAY,CAAC,IAAqC;IAC9D,IAAI,IAAI,YAAY,cAAc,EAAE;QAChC,OAAO,IAAI,CAAC,IAAI,CAAC;KACpB;SAAM;QACH,OAAO,IAAI,CAAC,MAAM,CAAC;KACtB;CACJ;AAED,MAAa,cAAc;IACvB,YAAmB,IAAY,EAAS,SAAiB,EAAE;QAAxC,SAAI,GAAJ,IAAI,CAAQ;QAAS,WAAM,GAAN,MAAM,CAAa;KAAI;CAClE;AAUD,AAEA,IAAY,gBAiCX;AAjCD,WAAY,gBAAgB;IACxB,uDAA0B,CAAA;IAC1B,mEAA+B,CAAA;IAC/B,+DAA+B,CAAA;IAC/B,2DAA+B,CAAA;IAC/B,qEAA+B,CAAA;IAC/B,kFAA+B,CAAA;IAC/B,oEAA+B,CAAA;IAC/B,gFAA+B,CAAA;IAC/B,yEAA+B,CAAA;IAC/B,+EAA+B,CAAA;IAC/B,2EAA+B,CAAA;IAC/B,gEAAgC,CAAA;IAChC,wFAAgC,CAAA;IAChC,sFAAgC,CAAA;IAChC,4FAAgC,CAAA;IAChC,iGAAgC,CAAA;IAChC,qGAAkC,CAAA;IAClC,+FAAgC,CAAA;IAChC,0EAAgC,CAAA;IAChC,wEAAgC,CAAA;IAChC,mFAAgC,CAAA;IAChC,8DAAiD,CAAA;IACjD,wEAAyE,CAAA;IACzE,oEAAiE,CAAA;;IAGjE,6EAAgC,CAAA;IAChC,4EAAgC,CAAA;IAChC,oEAAgC,CAAA;IAChC,gEAAgC,CAAA;IAChC,iEAAgC,CAAA;IAChC,yEAAgC,CAAA;CACnC,EAjCW,gBAAgB,KAAhB,gBAAgB,QAiC3B;AAED,AAEA,IAAY,mBAwBX;AAxBD,WAAY,mBAAmB;IAC3B,6DAAuB,CAAA;IACvB,6EAA4B,CAAA;IAC5B,qFAA4B,CAAA;IAC5B,iFAA4B,CAAA;IAC5B,6EAA4B,CAAA;IAC5B,gFAA4B,CAAA;IAC5B,sFAA4B,CAAA;IAC5B,0FAA4B,CAAA;IAC5B,qFAA4B,CAAA;IAC5B,mFAA4B,CAAA;IAC5B,2FAA4B,CAAA;IAC5B,kFAA6B,CAAA;IAC7B,8FAA6B,CAAA;IAC7B,4FAA6B,CAAA;IAC7B,wFAA6B,CAAA;IAC7B,yEAA6B,CAAA;IAC7B,yEAA6B,CAAA;IAC7B,6EAA6B,CAAA;IAC7B,wFAA6B,CAAA;IAC7B,sFAA6B,CAAA;;IAE7B,6EAA6B,CAAA;IAC7B,mFAA6B,CAAA;CAChC,EAxBW,mBAAmB,KAAnB,mBAAmB,QAwB9B;AAED,AAEA,IAAY,kBAiBX;AAjBD,WAAY,kBAAkB;IAC1B,2DAAwB,CAAA;IACxB,mEAA6B,CAAA;IAC7B,+DAA6B,CAAA;IAC7B,mFAA6B,CAAA;IAC7B,mFAA6B,CAAA;IAC7B,kFAA6B,CAAA;IAC7B,0EAA6B,CAAA;IAC7B,sFAA6B,CAAA;IAC7B,2EAA6B,CAAA;IAC7B,6DAA6B,CAAA;IAC7B,iEAA6B,CAAA;IAC7B,8EAA8B,CAAA;;;IAG9B,8FAA8B,CAAA;IAC9B,oFAAkE,CAAA;CACrE,EAjBW,kBAAkB,KAAlB,kBAAkB,QAiB7B;AAED,AAEA,IAAY,oBAMX;AAND,WAAY,oBAAoB;IAC5B,+DAAsB,CAAA;IACtB,qFAA2B,CAAA;IAC3B,mFAA2B,CAAA;IAC3B,uFAA2B,CAAA;IAC3B,uEAA2B,CAAA;CAC9B,EANW,oBAAoB,KAApB,oBAAoB,QAM/B;AAED,AAEA,IAAY,eAUX;AAVD,WAAY,eAAe;IACvB,qDAA2B,CAAA;IAC3B,yEAAgC,CAAA;IAChC,mEAAgC,CAAA;IAChC,uEAAgC,CAAA;IAChC,mEAAgC,CAAA;IAChC,wEAAgC,CAAA;IAChC,wEAAgC,CAAA;IAChC,gEAAgC,CAAA;IAChC,oEAAmF,CAAA;CACtF,EAVW,eAAe,KAAf,eAAe,QAU1B;AAED,AAEA,IAAY,gBAYX;AAZD,WAAY,gBAAgB;IACxB,uDAAkC,CAAA;IAClC,qEAAuC,CAAA;IACvC,iFAAuC,CAAA;IACvC,mFAAuC,CAAA;IACvC,uGAAuC,CAAA;IACvC,kGAAuC,CAAA;IACvC,kEAAuC,CAAA;IACvC,8FAAuC,CAAA;IACvC,uFAAuC,CAAA;IACvC,qFAA8E,CAAA;IAC9E,0FAAwD,CAAA;CAC3D,EAZW,gBAAgB,KAAhB,gBAAgB,QAY3B;AAAA,AAID,IAAY,iBAOX;AAPD,WAAY,iBAAiB;IAEzB,6FAAmD,CAAA;IACnD,mHAAwD,CAAA;IACxD,2GAAwD,CAAA;IACxD,6IAAwD,CAAA;IACxD,qGAAwD,CAAA;CAC3D,EAPW,iBAAiB,KAAjB,iBAAiB,QAO5B;AAAA,AAID,IAAY,iBAMX;AAND,WAAY,iBAAiB;IACzB,yDAAiC,CAAA;IACjC,yEAAsC,CAAA;IACtC,qEAAsC,CAAA;IACtC,mEAAsC,CAAA;IACtC,uFAAyD,CAAA;CAC5D,EANW,iBAAiB,KAAjB,iBAAiB,QAM5B;AAED,AAEA,IAAY,iBAYX;AAZD,WAAY,iBAAiB;IACzB,yDAAiC,CAAA;IACjC,yEAAsC,CAAA;IACtC,qEAAsC,CAAA;IACtC,mEAAsC,CAAA;IACtC,+FAAsC,CAAA;;IAEtC,0GAAsC,CAAA;IACtC,wFAAsC,CAAA;IACtC,qFAAsC,CAAA;IACtC,mEAA4G,CAAA;IAC5G,uFAAyD,CAAA;CAC5D,EAZW,iBAAiB,KAAjB,iBAAiB,QAY5B;AAED,AAEA,IAAY,kBAcX;AAdD,WAAY,kBAAkB;;IAE1B,2DAAgC,CAAA;IAChC,+FAAqC,CAAA;IACrC,2FAAqC,CAAA;IACrC,mGAAqC,CAAA;IACrC,qFAAqC,CAAA;IACrC,4EAAqC,CAAA;IACrC,kGAAqC,CAAA;;IAErC,8FAAsC,CAAA;IACtC,oGAAsC,CAAA;IACtC,kGAAsC,CAAA;IACtC,kFAA6E,CAAA;CAChF,EAdW,kBAAkB,KAAlB,kBAAkB,QAc7B;AAED,AAMA,IAAY,aAYX;AAZD,WAAY,aAAa;IACrB,6CAAE,CAAA;IACF,6CAAE,CAAA;IACF,+CAAG,CAAA;IACH,+CAAG,CAAA;IACH,+CAAG,CAAA;IACH,+CAAG,CAAA;IACH,+CAAG,CAAA;IACH,+CAAG,CAAA;IACH,mDAAK,CAAA;IACL,qDAAM,CAAA;IACN,oDAAK,CAAA;CACR,EAZW,aAAa,KAAb,aAAa,QAYxB;AAED,AAEA,IAAY,QAOX;AAPD,WAAY,QAAQ;IAChB,wCAAY,CAAA;IACZ,uCAAW,CAAA;IACX,yCAAW,CAAA;IACX,mCAAW,CAAA;IACX,uCAAW,CAAA;IACX,yCAAK,CAAA;CACR,EAPW,QAAQ,KAAR,QAAQ,QAOnB;AAED,AAEA,IAAY,QAuBX;AAvBD,WAAY,QAAQ;IAChB,qCAAG,CAAA;IACH,iDAAS,CAAA;IACT,mDAAU,CAAA;IACV,6CAAO,CAAA;IACP,iDAAS,CAAA;IACT,2CAAM,CAAA;IACN,+CAAQ,CAAA;IACR,uCAAI,CAAA;IACJ,qCAAG,CAAA;IACH,2CAAM,CAAA;IACN,4CAAM,CAAA;IACN,kDAAS,CAAA;IACT,0CAAK,CAAA;IACL,0CAAK,CAAA;IACL,4CAAM,CAAA;IACN,kCAAC,CAAA;IACD,kCAAC,CAAA;IACD,kCAAC,CAAA;IACD,kCAAC,CAAA;IACD,kCAAC,CAAA;IACD,kCAAC,CAAA;IACD,0CAAK,CAAA;CACR,EAvBW,QAAQ,KAAR,QAAQ,QAuBnB;AAED,AAKA,IAAY,aA8BX;AA9BD,WAAY,aAAa;;IAGrB,yDAAQ,CAAA;IACR,qDAAM,CAAA;IACN,mDAAK,CAAA;IACL,iDAAI,CAAA;IACJ,yDAAQ,CAAA;IACR,2DAAS,CAAA;IACT,qDAAM,CAAA;IACN,yDAAQ,CAAA;IACR,6DAAU,CAAA;IACV,+DAAW,CAAA;IACX,0DAAQ,CAAA;IACR,8DAAU,CAAA;IACV,4DAAS,CAAA;IACT,4DAAS,CAAA;IACT,4DAAS,CAAA;IACT,4DAAS,CAAA;;;IAIT,0DAAQ,CAAA;IACR,wDAAO,CAAA;IACP,0DAAQ,CAAA;IACR,4DAAS,CAAA;IACT,sDAAM,CAAA;IACN,0DAAQ,CAAA;IACR,oDAAK,CAAA;IACL,sEAAyB,CAAA;CAC5B,EA9BW,aAAa,KAAb,aAAa,QA8BxB;AAED,AAEA,IAAY,gBAYX;AAZD,WAAY,gBAAgB;IAExB,uDAAwB,CAAA;IACxB,iFAA6B,CAAA;IAC7B,+EAA6B,CAAA;IAC7B,uFAA6B,CAAA;IAC7B,uFAA6B,CAAA;IAC7B,8DAA6B,CAAA;IAC7B,sFAA6B,CAAA;IAE7B,iEAA8B,CAAA;IAC9B,+EAA8B,CAAA;CACjC,EAZW,gBAAgB,KAAhB,gBAAgB,QAY3B;AAED,AAEA,IAAY,QAkDX;AAlDD,WAAY,QAAQ;IAChB,uCAAI,CAAA;IACJ,uDAAY,CAAA;IACZ,+CAAQ,CAAA;IACR,6CAAO,CAAA;IACP,6CAAO,CAAA;IACP,2CAAM,CAAA;IACN,uDAAY,CAAA;IACZ,6CAAO,CAAA;IACP,2DAAc,CAAA;IACd,yDAAa,CAAA;IACb,8CAAO,CAAA;IACP,0DAAa,CAAA;IACb,gEAAgB,CAAA;IAChB,kDAAS,CAAA;IACT,sDAAW,CAAA;IACX,0DAAa,CAAA;IACb,wEAAoB,CAAA;IACpB,sEAAmB,CAAA;IACnB,kDAAS,CAAA;IACT,oDAAU,CAAA;IACV,gEAAgB,CAAA;IAChB,4CAAM,CAAA;IACN,0DAAa,CAAA;IACb,wDAAY,CAAA;IACZ,4CAAM,CAAA;IACN,0DAAa,CAAA;IACb,wDAAY,CAAA;IACZ,kDAAS,CAAA;IACT,gEAAgB,CAAA;IAChB,8DAAe,CAAA;IACf,oDAAU,CAAA;IACV,kEAAiB,CAAA;IACjB,gEAAgB,CAAA;IAChB,sCAAG,CAAA;IACH,oDAAU,CAAA;IACV,kDAAS,CAAA;IACT,wDAAY,CAAA;IACZ,oEAAkB,CAAA;IAClB,kDAAS,CAAA;IACT,gEAAgB,CAAA;IAChB,0DAAa,CAAA;IACb,wEAAoB,CAAA;IACpB,4DAAc,CAAA;IACd,4DAAc,CAAA;IACd,wDAAY,CAAA;IACZ,0EAAqB,CAAA;IACrB,kEAAiB,CAAA;IACjB,gEAAgB,CAAA;IAChB,0CAAK,CAAA;CACR,EAlDW,QAAQ,KAAR,QAAQ,QAkDnB;AAED,AAIA,IAAY,aA2BX;AA3BD,WAAY,aAAa;;IAErB,mDAAK,CAAA;IACL,mEAAa,CAAA;IACb,qEAAc,CAAA;IACd,yEAAgB,CAAA;IAChB,mEAAa,CAAA;IACb,yEAAgB,CAAA;;IAEhB,mEAAa,CAAA;IACb,uEAAe,CAAA;IACf,mEAAa,CAAA;IACb,uEAAe,CAAA;IACf,kEAAY,CAAA;IACZ,oEAAa,CAAA;IACb,wEAAe,CAAA;IACf,gEAAW,CAAA;IACX,0EAAgB,CAAA;IAChB,oEAAa,CAAA;IACb,oEAAa,CAAA;IACb,4EAAiB,CAAA;IACjB,gEAAW,CAAA;IACX,kEAAY,CAAA;IACZ,gEAAW,CAAA;IACX,wEAAe,CAAA;IACf,gFAAmB,CAAA;IACnB,sDAAM,CAAA;IAAE,oDAAc,CAAA;CACzB,EA3BW,aAAa,KAAb,aAAa,QA2BxB;AAED,AAEA,IAAY,iBAMX;AAND,WAAY,iBAAiB;IACzB,yDAAyB,CAAA;IACzB,qEAA8B,CAAA;IAC9B,+EAA8B,CAAA;IAC9B,6EAA8B,CAAA;IAC9B,yFAA8B,CAAA;CACjC,EANW,iBAAiB,KAAjB,iBAAiB,QAM5B;AAED,AAEA,IAAY,mBAmCX;AAnCD,WAAY,mBAAmB;IAC3B,6DAAmB,CAAA;IACnB,mEAAwB,CAAA;IACxB,qEAAwB,CAAA;IACxB,uEAAwB,CAAA;IACxB,kFAAwB,CAAA;IACxB,sEAAwB,CAAA;IACxB,wEAAwB,CAAA;IACxB,qEAAwB,CAAA;IACxB,iFAAwB,CAAA;IACxB,2EAAwB,CAAA;;IAExB,yEAAyB,CAAA;IACzB,kFAAyB,CAAA;IACzB,0FAAyB,CAAA;IACzB,gEAAyB,CAAA;IACzB,+EAAyB,CAAA;IACzB,+EAAyB,CAAA;IACzB,+EAAyB,CAAA;IACzB,qEAAyB,CAAA;IACzB,sEAAyB,CAAA;IACzB,oFAAyB,CAAA;IACzB,wFAAyB,CAAA;IACzB,6EAAyB,CAAA;IACzB,6EAAyB,CAAA;;;IAIzB,2FAAwD,CAAA;;IAGxD,mFAAkD,CAAA;IAClD,sFAA6B,CAAA;IAC7B,mFAA6C,CAAA;IAC7C,iFAAmC,CAAA;CACtC,EAnCW,mBAAmB,KAAnB,mBAAmB,QAmC9B;AAED,AAEA,IAAY,gBAWX;AAXD,WAAY,gBAAgB;IACxB,wDAAS,CAAA;IACT,yDAAS,CAAA;IACT,iEAAS,CAAA;IACT,iEAAS,CAAA;IACT,+DAAQ,CAAA;IACR,+DAAQ,CAAA;IACR,mEAAU,CAAA;IACV,mEAAU,CAAA;IACV,uDAAI,CAAA;IACJ,2DAAM,CAAA;IAAE,yDAAc,CAAA;CACzB,EAXW,gBAAgB,KAAhB,gBAAgB,QAW3B;AAED,AAGA,IAAY,SAKX;AALD,WAAY,SAAS;IACjB,6CAAsB,CAAA;IACtB,yCAAsB,CAAA;IACtB,yDAAsB,CAAA;IACtB,mDAAsB,CAAA;CACzB,EALW,SAAS,KAAT,SAAS,QAKpB;AAED,AACA,IAAY,iBAWX;AAXD,WAAY,iBAAiB;IAEzB,+DAAkB,CAAA;IAClB,iEAAkB,CAAA;IAClB,+DAAkB,CAAA;IAClB,iEAAkB,CAAA;IAClB,uDAA8B,CAAA;IAC9B,wDAA8B,CAAA;IAC9B,yDAA6B,CAAA;IAC7B,4DAA+B,CAAA;IAC/B,wDAAe,CAAA;CAClB,EAXW,iBAAiB,KAAjB,iBAAiB,QAW5B;AAED,AACA,IAAY,eAKX;AALD,WAAY,eAAe;IAEvB,qDAAoB,CAAA;IACpB,6EAAyB,CAAA;IACzB,2EAAyB,CAAA;CAC5B,EALW,eAAe,KAAf,eAAe,QAK1B;AAOD,MAAa,MAAM;IAMf,YAAmB,IAAY,GAAG,EAAS,IAAY,GAAG;QAAvC,MAAC,GAAD,CAAC,CAAc;QAAS,MAAC,GAAD,CAAC,CAAc;KAAI;IAEvD,GAAG,CAAC,CAAS,EAAE,CAAS;QAC3B,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;QACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;QACX,OAAO,IAAI,CAAC;KACf;IAEM,IAAI,CAAC,KAAsC;QAC9C,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QACjB,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QACjB,OAAO,IAAI,CAAC;KACf;IAEM,MAAM,CAAC,KAAsC;QAChD,IAAI,IAAI,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,EAAE;YAAE,OAAO,KAAK,CAAC;SAAE;QACzC,IAAI,IAAI,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,EAAE;YAAE,OAAO,KAAK,CAAC;SAAE;QACzC,OAAO,IAAI,CAAC;KACf;;AAvBsB,WAAI,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;AAC9C,WAAI,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;AAC9C,aAAM,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;AAChD,aAAM,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;AA0B3E,MAAa,MAAM;IAUf,YAAmB,IAAY,GAAG,EAAS,IAAY,GAAG,EAAS,IAAY,GAAG,EAAS,IAAY,GAAG;QAAvF,MAAC,GAAD,CAAC,CAAc;QAAS,MAAC,GAAD,CAAC,CAAc;QAAS,MAAC,GAAD,CAAC,CAAc;QAAS,MAAC,GAAD,CAAC,CAAc;KAAI;IAEvG,GAAG,CAAC,CAAS,EAAE,CAAS,EAAE,CAAS,EAAE,CAAS;QACjD,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;QACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;QACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;QACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;QACX,OAAO,IAAI,CAAC;KACf;IAEM,IAAI,CAAC,KAAsC;QAC9C,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QACjB,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QACjB,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QACjB,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QACjB,OAAO,IAAI,CAAC;KACf;IAEM,MAAM,CAAC,KAAsC;QAChD,IAAI,IAAI,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,EAAE;YAAE,OAAO,KAAK,CAAC;SAAE;QACzC,IAAI,IAAI,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,EAAE;YAAE,OAAO,KAAK,CAAC;SAAE;QACzC,IAAI,IAAI,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,EAAE;YAAE,OAAO,KAAK,CAAC;SAAE;QACzC,IAAI,IAAI,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,EAAE;YAAE,OAAO,KAAK,CAAC;SAAE;QACzC,OAAO,IAAI,CAAC;KACf;;AAjCsB,WAAI,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AACxD,WAAI,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AACxD,aAAM,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AAC1D,aAAM,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AAC1D,aAAM,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AAC1D,aAAM,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AAC1D,YAAK,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AACzD,YAAK,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;;;;;;AAmCpF,MAAa,QAAY,SAAQ,KAAQ;IAAzC;;QAGW,SAAI,GAAQ,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KA4D3B;IA7DG,IAAW,IAAI,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,EAAE;IAE1C,KAAK,KAAc,OAAO,IAAI,CAAC,MAAM,KAAK,CAAC,CAAC,EAAE;IAC9C,KAAK,KAAW,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE;IAClC,QAAQ,KAAoB,OAAO,IAAI,CAAC,GAAG,EAAE,CAAC,EAAE;IAChD,SAAS,CAAC,KAAQ,IAAU,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE;CAwDzD;AAED,AAkaA;;;AAGA,MAAa,SAAS;IAElB,YAA4B,MAAgC;QAAhC,WAAM,GAAN,MAAM,CAA0B;;QAe5C,iBAAY,GAA0B,IAAI,CAAC;;QAE3C,qBAAgB,GAAQ,IAAI,CAAC;KAjBmB;;IAGhE,IAAI,SAAS,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;;IAEzD,IAAI,QAAQ,KAAsC,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE;;IAEhF,IAAI,SAAS;QACT,OAAO,YAAY,CAAC,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;KACzD;;IAED,IAAI,SAAS,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;;IAEzD,IAAI,SAAS,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;CAO5D;;;;;;;AAQD,AAAO,MAAM,aAAa,GAAW,CAAC,CAAC;;;AAKvC,AAAO,MAAM,cAAc,GAAW,EAAE,CAAC;AACzC,AAAO,MAAM,mBAAmB,GAAW,CAAC,CAAC;AAC7C,AAAO,MAAM,kBAAkB,GAAW,CAAC,CAAC;AAC5C,AAAO,MAAM,mBAAmB,GAAW,EAAE,CAAC;AAC9C,MAAa,UAAU;IASnB,YAAY,MAAmB,EAAE,aAAqB,CAAC;QACnD,IAAI,CAAC,GAAG,GAAG,IAAI,YAAY,CAAC,MAAM,EAAE,UAAU,GAAG,IAAI,CAAC,mBAAmB,EAAE,CAAC,CAAC,CAAC;QAC9E,IAAI,CAAC,EAAE,GAAG,IAAI,YAAY,CAAC,MAAM,EAAE,UAAU,GAAG,IAAI,CAAC,kBAAkB,EAAE,CAAC,CAAC,CAAC;QAC5E,IAAI,CAAC,GAAG,GAAG,IAAI,WAAW,CAAC,MAAM,EAAE,UAAU,GAAG,IAAI,CAAC,mBAAmB,EAAE,CAAC,CAAC,CAAC;KAChF;CACJ;AACD,AAqBA;;;;;;AAMA,MAAa,UAAU;IAEnB,YAA4B,MAAiC;QAAjC,WAAM,GAAN,MAAM,CAA2B;KAAI;IAE1D,eAAe,CAAC,QAA0D;QAC7E,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,QAAkC,EAAE,SAAiB;YAC9E,QAAQ,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,CAAC;SAChD,CAAC,CAAC;KACN;;;;IAKD,IAAI,SAAS,KAAiB,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;;IAE7D,IAAI,SAAS,KAAiB,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;;IAE7D,IAAI,KAAK,KAAsB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE;IAC1D,IAAI,KAAK,CAAC,KAAsB,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,KAAK,CAAC,EAAE;;;;;;;;;;;;;;;;IAkBzD,YAAY,CAAC,aAA8C,EAAE,aAA8C,EAAE,mCAA4C,KAAK;QACjK,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,aAAa,EAAE,aAAa,EAAE,gCAAgC,CAAC,CAAC;KAC5F;;IAEM,sBAAsB,KAAW,IAAI,CAAC,MAAM,CAAC,sBAAsB,EAAE,CAAC,EAAE;;IAExE,WAAW,KAAW,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE,CAAC,EAAE;;IAElD,aAAa,CAAC,UAAuB;QACxC,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,YAAY,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC,CAAC;KAClE;;IAEM,YAAY,KAAW,IAAI,CAAC,MAAM,CAAC,YAAY,EAAE,CAAC,EAAE;;IAEpD,cAAc,CAAC,MAA6B,IAAI,MAAM,EAAE;QAC3D,OAAO,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;KAC1C;;IAEM,cAAc,CAAC,MAA6B,IAAI,MAAM,EAAE;QAC3D,OAAO,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;KAC1C;;;IAIM,OAAO,CAAC,CAAkC,EAAE,CAAkC,EAAE,GAAe,EAAE,YAAoB,GAAG;QAC3H,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,SAAS,CAAC,CAAC;KAC7C;;IAEM,OAAO,CAAC,CAAkC,EAAE,CAAkC,EAAE,GAAe,EAAE,WAAmB,GAAG,EAAE,yBAA4C,iBAAiB,CAAC,GAAG,EAAE,YAAoB,GAAG;QACtN,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,sBAAsB,EAAE,SAAS,CAAC,CAAC;KAC/E;;IAEM,aAAa,CAAC,CAAkC,EAAE,CAAkC,EAAE,GAAe,EAAE,WAAmB,GAAG,EAAE,yBAA4C,iBAAiB,CAAC,GAAG;QACnM,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,sBAAsB,CAAC,CAAC;KAC1E;;IAEM,uBAAuB,CAAC,CAAkC,EAAE,CAAkC,EAAE,YAAwB,EAAE,aAAyB,EAAE,aAAyB,EAAE,YAAwB;QAC3M,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,CAAC,EAAE,CAAC,EAAE,YAAY,EAAE,aAAa,EAAE,aAAa,EAAE,YAAY,CAAC,CAAC;KACvG;;IAEM,OAAO,CAAC,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,GAAe,EAAE,YAAoB,GAAG;QACnM,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,SAAS,CAAC,CAAC;KACnD;;IAEM,aAAa,CAAC,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,GAAe;QAChL,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC;KAC9C;;IAEM,WAAW,CAAC,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,GAAe,EAAE,YAAoB,GAAG;QACnK,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,SAAS,CAAC,CAAC;KACpD;;IAEM,iBAAiB,CAAC,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,GAAe;QAChJ,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC;KAC/C;;IAEM,SAAS,CAAC,MAAuC,EAAE,MAAc,EAAE,GAAe,EAAE,eAAuB,EAAE,EAAE,YAAoB,GAAG;QACzI,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,YAAY,EAAE,SAAS,CAAC,CAAC;KACvE;;IAEM,eAAe,CAAC,MAAuC,EAAE,MAAc,EAAE,GAAe,EAAE,eAAuB,EAAE;QACtH,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,YAAY,CAAC,CAAC;KAClE;IAKM,OAAO,CAAC,GAAG,IAAW;QACzB,IAAI,IAAI,CAAC,CAAC,CAAC,YAAY,MAAM,EAAE;YAC3B,MAAM,IAAI,GAAW,IAAI,CAAC,CAAC,CAAC,CAAC;YAC7B,MAAM,SAAS,GAAW,IAAI,CAAC,CAAC,CAAC,CAAC;YAClC,MAAM,GAAG,GAAoC,IAAI,CAAC,CAAC,CAAC,CAAC;YACrD,MAAM,GAAG,GAAe,IAAI,CAAC,CAAC,CAAC,CAAC;YAChC,MAAM,UAAU,GAAW,IAAI,CAAC,CAAC,CAAC,CAAC;YACnC,MAAM,QAAQ,GAAkB,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC;YAChD,MAAM,UAAU,GAAW,IAAI,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;YACzC,MAAM,kBAAkB,GAA2C,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC;YACnF,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,EAAE,SAAS,EAAE,GAAG,EAAE,GAAG,EAAE,QAAQ,KAAK,IAAI,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,CAAC,GAAG,UAAU,EAAE,UAAU,EAAE,kBAAkB,CAAC,CAAC;SAC/J;aAAM;YACH,MAAM,GAAG,GAAoC,IAAI,CAAC,CAAC,CAAC,CAAC;YACrD,MAAM,GAAG,GAAe,IAAI,CAAC,CAAC,CAAC,CAAC;YAChC,MAAM,UAAU,GAAW,IAAI,CAAC,CAAC,CAAC,CAAC;YACnC,MAAM,QAAQ,GAAkB,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC;YAChD,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE,GAAG,EAAE,QAAQ,KAAK,IAAI,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,CAAC,GAAG,UAAU,CAAC,CAAC;SACvG;KACJ;;IAEM,QAAQ,CAAC,eAAmC,EAAE,CAAkC,EAAE,CAAkC,EAAE,OAAwC,MAAM,CAAC,IAAI,EAAE,OAAwC,MAAM,CAAC,IAAI,EAAE,MAAkB,UAAU;QAC/P,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAAC,UAAU,CAAC,eAAe,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC;KACzF;;IAEM,YAAY,CAAC,eAAmC,EAAE,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,OAAwC,MAAM,CAAC,IAAI,EAAE,OAAwC,MAAM,CAAC,MAAM,EAAE,OAAwC,MAAM,CAAC,IAAI,EAAE,OAAwC,MAAM,CAAC,MAAM,EAAE,MAAkB,UAAU;QACzb,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,YAAY,CAAC,UAAU,CAAC,eAAe,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC;KAC/G;;IAEM,eAAe,CAAC,eAAmC,EAAE,CAAkC,EAAE,CAAkC,EAAE,IAAqC,EAAE,IAAqC,EAAE,GAAe,EAAE,QAAgB,EAAE,mBAAsC,iBAAiB,CAAC,GAAG;QAC5S,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,YAAY,CAAC,UAAU,CAAC,eAAe,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,QAAQ,EAAE,gBAAgB,CAAC,CAAC;KAC5H;;IAEM,WAAW,CAAC,MAA8C,EAAE,UAAkB,EAAE,GAAe,EAAE,MAAe,EAAE,SAAiB;QACtI,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,EAAE,MAAM,EAAE,SAAS,CAAC,CAAC;KACvE;;IAEM,mBAAmB,CAAC,MAA8C,EAAE,UAAkB,EAAE,GAAe;QAC1G,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,CAAC,CAAC;KAC5D;;IAEM,cAAc,CAAC,IAAqC,EAAE,GAAoC,EAAE,GAAoC,EAAE,IAAqC,EAAE,GAAe,EAAE,YAAoB,GAAG,EAAE,eAAuB,CAAC;QAC9O,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,SAAS,EAAE,YAAY,CAAC,CAAC;KAClF;;;IAIM,SAAS,KAAW,IAAI,CAAC,MAAM,CAAC,SAAS,EAAE,CAAC,EAAE;;IAE9C,UAAU,CAAC,GAAoC,IAAU,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,EAAE;;IAEvF,wBAAwB,CAAC,GAAoC,IAAU,IAAI,CAAC,MAAM,CAAC,wBAAwB,CAAC,GAAG,CAAC,CAAC,EAAE;;IAEnH,cAAc,CAAC,GAAe,IAAU,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,EAAE;;IAE1E,UAAU,CAAC,GAAe,EAAE,MAAe,EAAE,YAAoB,GAAG,IAAU,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,CAAC,CAAC,EAAE;;IAE/H,SAAS,CAAC,MAAuC,EAAE,MAAc,EAAE,KAAa,EAAE,KAAa,EAAE,eAAuB,EAAE,IAAU,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC,EAAE;;IAExM,aAAa,CAAC,MAAuC,EAAE,MAAc,EAAE,WAAmB,EAAE,WAAmB,IAAU,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE,WAAW,CAAC,CAAC,EAAE;;IAE/L,iBAAiB,CAAC,EAAmC,EAAE,EAAmC,EAAE,EAAmC,EAAE,eAAuB,CAAC,IAAU,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,YAAY,CAAC,CAAC,EAAE;;IAE7N,QAAQ,CAAC,QAAyC,EAAE,QAAyC,EAAE,WAAmB,GAAG,EAAE,yBAA4C,iBAAiB,CAAC,GAAG,IAAU,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,sBAAsB,CAAC,CAAC,EAAE;;;;;IAM/Q,aAAa,CAAC,cAAsB,IAAU,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,cAAc,CAAC,CAAC,EAAE;;IAE1F,aAAa,KAAW,IAAI,CAAC,MAAM,CAAC,aAAa,EAAE,CAAC,EAAE;;IAEtD,kBAAkB,CAAC,aAAqB,IAAU,IAAI,CAAC,MAAM,CAAC,kBAAkB,CAAC,aAAa,CAAC,CAAC,EAAE;;;IAIlG,WAAW,CAAC,QAAwB,EAAE,aAAkB;QAC3D,MAAM,SAAS,GAAwB,CAAC,WAAgD,EAAE,QAA4C;YAClI,QAAQ,CAAC,IAAI,UAAU,CAAC,WAAW,CAAC,EAAE,IAAI,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC;SAClE,CAAC;QACF,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC;KACrD;;IAEM,UAAU,KAAW,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC,EAAE;;;;IAKhD,KAAK,KAAW,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,EAAE;;IAEtC,eAAe,KAAW,IAAI,CAAC,MAAM,CAAC,eAAe,EAAE,CAAC,EAAE;;IAE1D,WAAW,CAAC,SAAiB,EAAE,SAAiB,IAAU,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC,EAAE;;IAE1G,QAAQ,CAAC,CAAkC,EAAE,CAAkC,EAAE,GAAe,IAAU,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC,EAAE;;IAE5I,UAAU,CAAC,CAAkC,EAAE,CAAkC,EAAE,IAAqC,EAAE,IAAqC,EAAE,GAAe,IAAU,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE;;IAE1O,UAAU,CAAC,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,IAAqC,EAAE,IAAqC,EAAE,IAAqC,EAAE,IAAqC,EAAE,GAAe,IAAU,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE;;IAElZ,YAAY,CAAC,GAAoC,EAAE,EAAmC,EAAE,GAAe,IAAU,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,EAAE,EAAE,EAAE,GAAG,CAAC,CAAC,EAAE;;IAE1J,YAAY,CAAC,GAAc,IAAU,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC,EAAE;;IAErE,OAAO,CAAC,GAAoC,EAAE,EAAmC,EAAE,GAAe,IAAU,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,EAAE,GAAG,CAAC,CAAC,EAAE;;IAEhJ,cAAc,KAAW,IAAI,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC,EAAE;;IAExD,eAAe,KAAW,IAAI,CAAC,MAAM,CAAC,eAAe,EAAE,CAAC,EAAE;CACpE;;AAGD,MAAa,UAAU;IAEnB,YAA4B,MAAiC;QAAjC,WAAM,GAAN,MAAM,CAA2B;KAAI;IAE1D,gBAAgB,CAAC,QAAyC;QAC7D,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,SAAoC;YAC9D,QAAQ,CAAC,IAAI,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC;SACvC,CAAC,CAAC;KACN;;IAGD,IAAI,KAAK,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE;;;IAGlD,IAAI,aAAa,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE;;IAEjE,IAAI,aAAa,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE;;IAEjE,IAAI,aAAa,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE;;IAEjE,IAAI,UAAU,KAAsC,OAAO,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE;;IAEpF,IAAI,WAAW,KAAsC,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE;;IAEtF,IAAI,gBAAgB,KAAsC,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,EAAE;;;;IAKzF,iBAAiB,KAAW,IAAI,CAAC,MAAM,CAAC,iBAAiB,EAAE,CAAC,EAAE;;IAE9D,cAAc,CAAC,QAAyC;QAC3D,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC;KACxC;CACJ;AAED,MAAa,mBAAmB;IAAhC;;;QAII,aAAQ,GAAoB,IAAI,CAAC;;QAEjC,yBAAoB,GAAY,IAAI,CAAC;;QAErC,WAAM,GAAW,CAAC,CAAC;;QAEnB,eAAU,GAAW,CAAC,CAAC;;QAEvB,gBAAW,GAAW,CAAC,CAAC;QACxB,gBAAW,GAAW,CAAC,CAAC;;QAExB,eAAU,GAAY,KAAK,CAAC;;QAE5B,sBAAiB,GAAW,IAAI,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;QAE7C,gBAAW,GAAW,IAAI,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;QAEvC,gBAAW,GAAkB,IAAI,CAAC;;QAElC,qBAAgB,GAAW,CAAC,CAAC;;QAE7B,qBAAgB,GAAW,MAAM,CAAC,SAAS,CAAC;;QAE5C,cAAS,GAAY,KAAK,CAAC;;QAE3B,oBAAe,GAAW,CAAC,CAAC;;QAE5B,uBAAkB,GAAW,GAAG,CAAC;;;QAIjC,SAAI,GAAW,EAAE,CAAC;;QAElB,YAAO,GAAiC,IAAI,CAAC;;KAGhD;CAAA;AAED,MAAa,YAAY;IACrB,YAA4B,WAAwC,IAAI,mBAAmB,EAAE;QAAjE,aAAQ,GAAR,QAAQ,CAAyD;KAAI;;;IAIjG,IAAI,QAAQ,KAAsB,OAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;;IAElE,IAAI,oBAAoB,KAAc,OAAO,IAAI,CAAC,QAAQ,CAAC,oBAAoB,CAAC,EAAE;;IAElF,IAAI,MAAM,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;;IAErD,IAAI,UAAU,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,EAAE;;IAE7D,IAAI,WAAW,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE;IAC/D,IAAI,WAAW,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE;;IAE/D,IAAI,UAAU,KAAc,OAAO,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,EAAE;;IAE9D,IAAI,iBAAiB,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,iBAAiB,CAAC,EAAE;;IAE3E,IAAI,WAAW,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE;;IAE/D,IAAI,WAAW,KAAoB,OAAO,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE;;IAEtE,IAAI,gBAAgB,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,gBAAgB,CAAC,EAAE;;IAEzE,IAAI,gBAAgB,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,gBAAgB,CAAC,EAAE;;IAEzE,IAAI,SAAS,KAAc,OAAO,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,EAAE;;IAE5D,IAAI,eAAe,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,eAAe,CAAC,EAAE;;IAEvE,IAAI,kBAAkB,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,kBAAkB,CAAC,EAAE;;;IAI7E,IAAI,IAAI,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;IACjD,IAAI,IAAI,CAAC,KAAa,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;;IAEvD,IAAI,OAAO;QACP,MAAM,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC;QACnC,OAAO,IAAI,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC;KACnC;CAGJ;;AAGD,MAAa,kBAAkB;IAA/B;;QAGI,cAAS,GAAW,CAAC,CAAC;;QAEtB,aAAQ,GAAW,GAAG,CAAC;;QAEvB,OAAE,GAAW,GAAG,CAAC;QACjB,OAAE,GAAW,GAAG,CAAC;QACjB,OAAE,GAAW,GAAG,CAAC;QACjB,OAAE,GAAW,GAAG,CAAC;;QAEjB,OAAE,GAAW,GAAG,CAAC;QACjB,OAAE,GAAW,GAAG,CAAC;QACjB,OAAE,GAAW,GAAG,CAAC;QACjB,OAAE,GAAW,GAAG,CAAC;KACpB;CAAA;AAED,MAAa,WAAW;IACpB,YAA4B,WAAuC,IAAI,kBAAkB,EAAE;QAA/D,aAAQ,GAAR,QAAQ,CAAuD;KAAI;;IAE/F,IAAI,SAAS,KAAc,OAAO,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,EAAE;;IAE5D,IAAI,QAAQ,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;;;IAEzD,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;IAC7C,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;IAC7C,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;IAC7C,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;;IAE7C,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;IAC7C,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;IAC7C,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;IAC7C,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;CAChD;AAED,AAAA,IAAY,gBAKX;AALD,WAAY,gBAAgB;IAExB,uDAAsB,CAAA;IACtB,mFAA2B,CAAA;IAC3B,2EAA2B,CAAA;CAC9B,EALW,gBAAgB,KAAhB,gBAAgB,QAK3B;;;;;;;;;AAUD,MAAa,WAAW;IAEpB,YAA4B,MAAkC;QAAlC,WAAM,GAAN,MAAM,CAA4B;KAAI;;;;;IAM3D,cAAc,CAAC,WAA+C,IAAI;QACrE,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC;KAC3D;;;IAGM,oBAAoB,CAAC,IAAiB,EAAE,WAAmB,EAAE,WAAgC,IAAI,EAAE,eAA8B,IAAI;QACxI,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,IAAI,UAAU,CAAC,IAAI,CAAC,EAAE,WAAW,EAAE,QAAQ,IAAI,QAAQ,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC,CAAC;KACvI;;;;IAIM,YAAY,KAAW,IAAI,CAAC,MAAM,CAAC,YAAY,EAAE,CAAC,EAAE;;IAEpD,cAAc,KAAW,IAAI,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC,EAAE;;IAExD,UAAU,KAAW,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC,EAAE;;IAEhD,KAAK,KAAW,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,EAAE;;;;;;IAOtC,KAAK,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,EAAE;;IAEhD,OAAO,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,EAAE;;IAEpD,kBAAkB;QACrB,OAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,EAAE,CAAC;KAC3C;;IAEM,kBAAkB;QACrB,OAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,EAAE,CAAC;KAC3C;;IAEM,QAAQ,CAAC,EAAsB,IAAU,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC,EAAE;;;;;;;IASlE,qBAAqB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,qBAAqB,EAAE,CAAC,EAAE;;IAE/E,oBAAoB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,EAAE,CAAC,EAAE;;IAE7E,sBAAsB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,sBAAsB,EAAE,CAAC,EAAE;;IAEjF,yBAAyB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,yBAAyB,EAAE,CAAC,EAAE;;IAEvF,qCAAqC,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,qCAAqC,EAAE,CAAC,EAAE;;IAE/G,sBAAsB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,sBAAsB,EAAE,CAAC,EAAE;;IAEjF,kBAAkB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,EAAE,CAAC,EAAE;;IAEzE,wBAAwB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,wBAAwB,EAAE,CAAC,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA2CrF,IAAI,MAAM,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE;IACpD,IAAI,MAAM,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,KAAK,CAAC,EAAE;;IAE1D,IAAI,KAAK,KAAuB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE;IAC3D,IAAI,KAAK,CAAC,KAAuB,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,KAAK,CAAC,EAAE;;IAEjE,IAAI,KAAK;QACL,OAAO,YAAY,CAAC,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;KACrD;IACD,IAAI,KAAK,CAAC,KAAyB;QAC/B,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,YAAY,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;KACtD;;IAED,IAAI,eAAe,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,EAAE;IACrE,IAAI,eAAe,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,eAAe,GAAG,KAAK,CAAC,EAAE;;IAE3E,IAAI,eAAe,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,EAAE;IACrE,IAAI,eAAe,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,eAAe,GAAG,KAAK,CAAC,EAAE;;;;;;IAO3E,IAAI,QAAQ,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE;;IAEvD,IAAI,SAAS,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;;IAEzD,IAAI,UAAU,KAAsC,OAAO,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE;;IAEpF,IAAI,eAAe,KAAsC,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,EAAE;;IAE9F,IAAI,KAAK;QACL,MAAM,KAAK,GAAqB,IAAI,QAAQ,EAAU,CAAC;QACvD,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,IAA2B;YACjD,KAAK,CAAC,IAAI,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;SAChC,CAAC,CAAC;QACH,OAAO,KAAK,CAAC;KAChB;CAIJ;;;AAID,MAAa,MAAM;IAEf,YAA4B,MAA6B;QAA7B,WAAM,GAAN,MAAM,CAAuB;KAAI;;;IAI7D,IAAI,QAAQ,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE;;IAEvD,IAAI,KAAK,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE;IACjD,IAAI,KAAK,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,KAAK,CAAC,EAAE;;IAEvD,IAAI,aAAa,KAA4B,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE;;IAEhF,IAAI,MAAM;QACN,MAAM,MAAM,GAAG,IAAI,QAAQ,EAAe,CAAC;QAC3C,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,KAAiC;YACxD,MAAM,CAAC,IAAI,CAAC,IAAI,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC;SACvC,CAAC,CAAC;QACH,OAAO,MAAM,CAAC;KACjB;;;;;;IAMD,IAAI,aAAa;QACb,MAAM,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC;QACxC,OAAO,KAAK,IAAI,IAAI,WAAW,CAAC,KAAK,CAAC,CAAC;KAC1C;IACD,IAAI,aAAa,CAAC,KAAyB;QACvC,IAAI,CAAC,MAAM,CAAC,aAAa,GAAG,KAAK,IAAI,KAAK,CAAC,QAAsC,CAAC;KACrF;;IAED,IAAI,gBAAgB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,EAAE;;IAEvE,IAAI,YAAY,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,EAAE;;;IAI/D,IAAI,eAAe,KAAa,OAAO,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE;;IAEhE,IAAI,UAAU;QACV,MAAM,QAAQ,GAAmB,EAAE,CAAC;QACpC,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,GAAgC;YAC3D,QAAQ,CAAC,IAAI,CAAC,IAAI,YAAY,CAAC,GAAG,CAAC,CAAC,CAAC;SACxC,CAAC,CAAC;QACH,OAAO,QAAQ,CAAC;KACnB;;IAED,IAAI,cAAc,KAAyB,OAAO,IAAI,CAAC,EAAE;;IAEzD,IAAI,MAAM,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE;IACnD,IAAI,OAAO,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE;;IAErD,IAAI,mBAAmB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,EAAE;;;;;IAMtE,eAAe,KAAW,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,EAAE,CAAC,EAAE;;IAEjE,gBAAgB,KAAW,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,CAAC,EAAE;;IAEnE,SAAS,CAAC,CAAS;QACtB,MAAM,KAAK,GAAgD,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;QACpF,OAAO,KAAK,IAAI,IAAI,WAAW,CAAC,KAAK,CAAC,CAAC;KAC1C;;IAEM,mBAAmB,CAAC,CAAS;QAChC,MAAM,KAAK,GAAgD,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAAC;QAC9F,OAAO,KAAK,IAAI,IAAI,WAAW,CAAC,KAAK,CAAC,CAAC;KAC1C;;IAEM,eAAe,CAAC,CAAS,IAAU,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE;;IAE3E,cAAc,CAAC,CAAS,IAAY,OAAO,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE;;IAE3E,QAAQ,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC,EAAE;;IAEtD,YAAY,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,YAAY,EAAE,CAAC,EAAE;;;;IAK7D,aAAa,CAAC,IAAY,EAAE,SAAiB,EAAE,UAAkB,EAAE,UAAkB,EAAE,WAA0B,IAAI,EAAE,YAA0C,IAAI;QACxK,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,IAAI,EAAE,SAAS,EAAE,UAAU,EAAE,QAAQ,KAAK,IAAI,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,CAAC,GAAG,UAAU,EAAE,SAAS,EAAE,IAAI,MAAM,EAAE,CAAC,CAAC;KAC9J;;IAEM,qBAAqB,CAAC,KAAa,EAAE,IAAY,EAAE,WAA0B,IAAI,EAAE,UAAkB;QACxG,OAAO,IAAI,CAAC,MAAM,CAAC,qBAAqB,CAAC,KAAK,EAAE,QAAQ,KAAK,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC,CAAC;KACvH;;IAEM,UAAU,CAAC,SAAqB,EAAE,IAAY,EAAE,GAAoC,EAAE,GAAe,EAAE,CAAe;QACzH,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;KAC/D;;IAEM,UAAU,CAAC,SAAqB,EAAE,IAAY,EAAE,GAAoC,EAAE,GAAe,EAAE,SAA0C,EAAE,UAAkB,EAAE,WAA0B,IAAI,EAAE,aAAqB,GAAG,EAAE,gBAAyB,KAAK,KAAU;CAUnR;AAED,AAwJA;;AAEA,MAAa,OAAO;IAEhB,YAA4B,MAA8B;QAA9B,WAAM,GAAN,MAAM,CAAwB;;QAoCnD,WAAM,GAAa,IAAI,KAAK,CAAC,EAAE,EAAE;YACpC,GAAG,EAAE,CAAC,MAAgB,EAAE,GAAgB;gBACpC,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,QAAQ,CAAC,KAAK,CAAC;iBAAE;gBAChD,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aACjD;YACD,GAAG,EAAE,CAAC,MAAgB,EAAE,GAAgB,EAAE,KAAa;gBACnD,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC;aACxD;SACJ,CAAC,CAAC;;QA8FI,cAAS,GAAc,IAAI,KAAK,CAAC,EAAE,EAAE;YACxC,GAAG,EAAE,CAAC,MAAiB,EAAE,GAAgB;gBACrC,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,CAAC,CAAC;iBAAE;gBACnC,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aACpD;YACD,GAAG,EAAE,CAAC,MAAiB,EAAE,GAAgB,EAAE,KAAc;gBACrD,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC;aAC3D;SACJ,CAAC,CAAC;;QAkBI,aAAQ,GAAc,IAAI,KAAK,CAAC,EAAE,EAAE;YACvC,GAAG,EAAE,CAAC,MAAiB,EAAE,GAAgB;gBACrC,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,GAAG,CAAC;iBAAE;gBACrC,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aACnD;YACD,GAAG,EAAE,CAAC,MAAiB,EAAE,GAAgB,EAAE,KAAc;gBACrD,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC;aAC1D;SACJ,CAAC,CAAC;;QAEI,cAAS,GAAa,IAAI,KAAK,CAAC,EAAE,EAAE;YACvC,GAAG,EAAE,CAAC,MAAgB,EAAE,GAAgB;gBACpC,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,aAAa,CAAC,KAAK,CAAC;iBAAE;gBACrD,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aACpD;YACD,GAAG,EAAE,CAAC,MAAgB,EAAE,GAAgB,EAAE,KAAa;gBACnD,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC;aAC3D;SACJ,CAAC,CAAC;;;;;;QAiDI,oBAAe,GAA2C,IAAI,KAAK,CAAC,EAAE,EAAE;YAC3E,GAAG,EAAE,CAAC,MAA8C,EAAE,GAAgB;gBAClE,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,CAAC,CAAC;iBAAE;gBACnC,OAAO,IAAI,CAAC,MAAM,CAAC,sBAAsB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aAC1D;SACJ,CAAC,CAAC;;;;;;;QAOI,sBAAiB,GAAa,IAAI,KAAK,CAAC,EAAE,EAAE;YAC/C,GAAG,EAAE,CAAC,MAAgB,EAAE,GAAgB;gBACpC,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,CAAC,CAAC;iBAAE;gBACnC,OAAO,IAAI,CAAC,MAAM,CAAC,wBAAwB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aAC5D;SACJ,CAAC,CAAC;;;;;QAKI,qBAAgB,GAAa,IAAI,KAAK,CAAC,EAAE,EAAE;YAC9C,GAAG,EAAE,CAAC,MAAgB,EAAE,GAAgB;gBACpC,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,GAAG,CAAC;iBAAE;gBACrC,OAAO,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aAC3D;SACJ,CAAC,CAAC;;;QAGI,0BAAqB,GAAa,IAAI,KAAK,CAAC,EAAE,EAAE;YACnD,GAAG,EAAE,CAAC,MAAgB,EAAE,GAAgB;gBACpC,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,aAAa,CAAC,KAAK,CAAC;iBAAE;gBACrD,OAAO,IAAI,CAAC,MAAM,CAAC,4BAA4B,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aAChE;SACJ,CAAC,CAAC;KA1Q2D;;;;;IAO9D,IAAI,WAAW,KAAuB,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE;IACvE,IAAI,WAAW,CAAC,KAAuB,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,GAAG,KAAK,CAAC,EAAE;;IAE7E,IAAI,YAAY,KAAwB,OAAO,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,EAAE;IAC1E,IAAI,YAAY,CAAC,KAAwB,IAAI,IAAI,CAAC,MAAM,CAAC,YAAY,GAAG,KAAK,CAAC,EAAE;;IAEhF,IAAI,WAAW,KAA4B,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE;;IAE5E,IAAI,SAAS,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;IACzD,IAAI,SAAS,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,SAAS,GAAG,KAAK,CAAC,EAAE;;IAE/D,IAAI,aAAa,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE;IACjE,IAAI,aAAa,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,aAAa,GAAG,KAAK,CAAC,EAAE;;IAEvE,IAAI,WAAW,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE;IAC7D,IAAI,WAAW,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,GAAG,KAAK,CAAC,EAAE;;IAEnE,IAAI,WAAW,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE;IAC7D,IAAI,WAAW,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,GAAG,KAAK,CAAC,EAAE;;IAEnE,IAAI,oBAAoB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,EAAE;IAC/E,IAAI,oBAAoB,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,oBAAoB,GAAG,KAAK,CAAC,EAAE;;IAErF,IAAI,uBAAuB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,EAAE;IACrF,IAAI,uBAAuB,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,uBAAuB,GAAG,KAAK,CAAC,EAAE;;IAE3F,IAAI,kBAAkB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,CAAC,EAAE;IAC3E,IAAI,kBAAkB,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,kBAAkB,GAAG,KAAK,CAAC,EAAE;;IAYjF,IAAI,cAAc,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,EAAE;IACnE,IAAI,cAAc,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,cAAc,GAAG,KAAK,CAAC,EAAE;;IAEzE,IAAI,aAAa,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE;IACjE,IAAI,aAAa,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,aAAa,GAAG,KAAK,CAAC,EAAE;;IAEvE,IAAI,QAAQ,KAAU,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE;IACpD,IAAI,QAAQ,CAAC,KAAU,IAAI,IAAI,CAAC,MAAM,CAAC,QAAQ,GAAG,KAAK,CAAC,EAAE;;IAG1D,IAAI,KAAK,KAAkB,OAAO,IAAI,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE;;IAEvE,IAAI,eAAe,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,EAAE;IACrE,IAAI,eAAe,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,eAAe,GAAG,KAAK,CAAC,EAAE;;IAE3E,IAAI,oBAAoB,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,EAAE;IAChF,IAAI,oBAAoB,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,oBAAoB,GAAG,KAAK,CAAC,EAAE;;IAEtF,IAAI,WAAW;QACX,MAAM,IAAI,GAAiC,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC;QACnE,OAAO,CAAC,IAAI,KAAK,IAAI,IAAI,IAAI,GAAG,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC;KACpD;IACD,IAAI,WAAW,CAAC,KAAoB;QAChC,IAAI,CAAC,MAAM,CAAC,WAAW,GAAG,KAAK,IAAI,KAAK,CAAC,MAAM,CAAC;KACnD;;IAED,IAAI,uBAAuB,KAA4B,OAAO,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,EAAE;;;IAIpG,IAAI,qBAAqB,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,qBAAqB,CAAC,EAAE;IAClF,IAAI,qBAAqB,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,qBAAqB,GAAG,KAAK,CAAC,EAAE;;IAExF,IAAI,0BAA0B,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,0BAA0B,CAAC,EAAE;IAC5F,IAAI,0BAA0B,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,0BAA0B,GAAG,KAAK,CAAC,EAAE;;IAElG,IAAI,4BAA4B,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,4BAA4B,CAAC,EAAE;IAChG,IAAI,4BAA4B,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,4BAA4B,GAAG,KAAK,CAAC,EAAE;;IAEtG,IAAI,iCAAiC,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,iCAAiC,CAAC,EAAE;IAC1G,IAAI,iCAAiC,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,iCAAiC,GAAG,KAAK,CAAC,EAAE;;;;;;IAQhH,IAAI,mBAAmB,KAAoB,OAAO,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,EAAE;IACpF,IAAI,mBAAmB,CAAC,KAAoB,IAAI,IAAI,CAAC,MAAM,CAAC,mBAAmB,GAAG,KAAK,CAAC,EAAE;;IAE1F,IAAI,mBAAmB,KAAoB,OAAO,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,EAAE;IACpF,IAAI,mBAAmB,CAAC,KAAoB,IAAI,IAAI,CAAC,MAAM,CAAC,mBAAmB,GAAG,KAAK,CAAC,EAAE;;IAE1F,IAAI,uBAAuB,KAAoB,OAAO,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,EAAE;IAC5F,IAAI,uBAAuB,CAAC,KAAoB,IAAI,IAAI,CAAC,MAAM,CAAC,uBAAuB,GAAG,KAAK,CAAC,EAAE;;IAElG,IAAI,uBAAuB,KAAoB,OAAO,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,EAAE;IAC5F,IAAI,uBAAuB,CAAC,KAAoB,IAAI,IAAI,CAAC,MAAM,CAAC,uBAAuB,GAAG,KAAK,CAAC,EAAE;;IAElG,IAAI,uBAAuB,KAAoB,OAAO,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,EAAE;IAC5F,IAAI,uBAAuB,CAAC,KAAoB,IAAI,IAAI,CAAC,MAAM,CAAC,uBAAuB,GAAG,KAAK,CAAC,EAAE;;;;IAKlG,IAAI,kBAAkB,KAA0C,OAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,CAAC,EAAE;IACxG,IAAI,kBAAkB,CAAC,KAA0C,IAAI,IAAI,CAAC,MAAM,CAAC,kBAAkB,GAAG,KAAK,CAAC,EAAE;;IAE9G,IAAI,kBAAkB,KAAsD,OAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,CAAC,EAAE;IACpH,IAAI,kBAAkB,CAAC,KAAsD,IAAI,IAAI,CAAC,MAAM,CAAC,kBAAkB,GAAG,KAAK,CAAC,EAAE;;IAE1H,IAAI,iBAAiB,KAAU,OAAO,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,EAAE;IACtE,IAAI,iBAAiB,CAAC,KAAU,IAAI,IAAI,CAAC,MAAM,CAAC,iBAAiB,GAAG,KAAK,CAAC,EAAE;;;;;;;;;;;;;IAiB5E,IAAI,QAAQ,KAA4B,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE;;IAYtE,IAAW,UAAU,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE;IAClE,IAAW,UAAU,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,UAAU,GAAG,KAAK,CAAC,EAAE;;IAExE,IAAW,WAAW,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE;IACpE,IAAW,WAAW,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,GAAG,KAAK,CAAC,EAAE;;IAE1E,IAAI,eAAe,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,EAAE;IAAC,IAAI,eAAe,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,eAAe,GAAG,KAAK,CAAC,EAAE;;IAEnJ,IAAI,OAAO,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE;IAAC,IAAI,OAAO,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,GAAG,KAAK,CAAC,EAAE;;IAEnH,IAAI,QAAQ,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE;IAAC,IAAI,QAAQ,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,QAAQ,GAAG,KAAK,CAAC,EAAE;;IAEvH,IAAI,MAAM,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE;IAAC,IAAI,MAAM,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,KAAK,CAAC,EAAE;;IAE/G,IAAI,QAAQ,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE;IAAC,IAAI,QAAQ,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,QAAQ,GAAG,KAAK,CAAC,EAAE;;;IAwBhH,iBAAiB,CAAC,CAAS,IAAU,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE;;IAExE,sBAAsB,CAAC,UAAkB,IAAU,IAAI,CAAC,MAAM,CAAC,sBAAsB,CAAC,UAAU,CAAC,CAAC,EAAE;;IAEpG,oBAAoB,KAAW,IAAI,CAAC,MAAM,CAAC,oBAAoB,EAAE,CAAC,EAAE;;;;;IAO3E,IAAI,gBAAgB,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,EAAE;IAAC,IAAI,gBAAgB,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,gBAAgB,GAAG,KAAK,CAAC,EAAE;;IAEvJ,IAAI,mBAAmB,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,EAAE;IAAC,IAAI,mBAAmB,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,mBAAmB,GAAG,KAAK,CAAC,EAAE;;IAEnK,IAAI,aAAa,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE;IAAC,IAAI,aAAa,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,aAAa,GAAG,KAAK,CAAC,EAAE;;IAE3I,IAAI,eAAe,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,EAAE;IAAC,IAAI,eAAe,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,eAAe,GAAG,KAAK,CAAC,EAAE;;IAEnJ,IAAI,mBAAmB,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,EAAE;IAAC,IAAI,mBAAmB,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,mBAAmB,GAAG,KAAK,CAAC,EAAE;;IAEnK,IAAI,SAAS,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;IAAC,IAAI,SAAS,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,SAAS,GAAG,KAAK,CAAC,EAAE;;IAE3H,IAAI,UAAU,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE;IAAC,IAAI,UAAU,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,UAAU,GAAG,KAAK,CAAC,EAAE;;IAE/H,IAAI,SAAS,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;;IAEzD,IAAI,qBAAqB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,qBAAqB,CAAC,EAAE;;IAEjF,IAAI,oBAAoB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,EAAE;;IAE/E,IAAI,oBAAoB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,EAAE;;IAE/E,IAAI,oBAAoB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,EAAE;;IAE/E,IAAI,wBAAwB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,wBAAwB,CAAC,EAAE;;IAEvF,IAAI,UAAU,KAAsC,OAAO,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE;CA+CvF;AAED,MAAM,aAAa,GAA8B,EAAE,CAAC;;;;AAKpD,MAAa,YAAY;IAoBrB,YAA4B,MAA6B;QAA7B,WAAM,GAAN,MAAM,CAAuB;KAAI;IAlBtD,OAAO,UAAU,CAAC,KAAa;QAClC,OAAO,aAAa,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC;KACvC;IACM,OAAO,UAAU,CAAC,OAA2B;QAChD,IAAI,KAAK,GAAG,aAAa,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QAC3C,IAAI,KAAK,KAAK,CAAC,CAAC,EAAE;YACd,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;gBAC3C,IAAI,aAAa,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE;oBAC3B,aAAa,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC;oBAC3B,OAAO,CAAC,CAAC;iBACZ;aACJ;YACD,KAAK,GAAG,aAAa,CAAC,MAAM,CAAC;YAC7B,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;SAC/B;QACD,OAAO,KAAK,CAAC;KAChB;;AAjBa,wBAAW,GAAwB,IAAI,CAAC;;AAsB1D,SAAgB,aAAa,CAAC,oBAAwC,IAAI;IACtE,MAAM,GAAG,GAAiB,IAAI,YAAY,CAAC,IAAI,CAAC,aAAa,CAAC,iBAAiB,GAAG,iBAAiB,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC;IACpH,IAAI,YAAY,CAAC,WAAW,KAAK,IAAI,EAAE;QACnC,YAAY,CAAC,WAAW,GAAG,GAAG,CAAC;KAClC;IACD,OAAO,GAAG,CAAC;CACd;AACD,AAaA;AACA,SAAgB,iBAAiB,CAAC,GAAwB;IACtD,IAAI,CAAC,iBAAiB,CAAC,CAAC,GAAG,KAAK,IAAI,IAAI,IAAI,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC;IAC3D,YAAY,CAAC,WAAW,GAAG,GAAG,CAAC;CAClC;;AAGD,SAAgB,8BAA8B,CAAC,WAAmB,EAAE,KAAa,EAAE,QAAgB,EAAE,OAAe,EAAE,OAAe,EAAE,YAAoB,EAAE,WAAmB;IAC5K,OAAO,IAAI,CAAC,8BAA8B,CAAC,WAAW,EAAE,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,WAAW,CAAC,CAAC;CACzH;;;AAID,SAAgB,KAAK,KAAc,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,CAAC,EAAE;AACtE,AAEA;AACA,SAAgB,QAAQ,KAAW,IAAI,CAAC,QAAQ,EAAE,CAAC,EAAE;;AAErD,SAAgB,QAAQ,KAAW,IAAI,CAAC,QAAQ,EAAE,CAAC,EAAE;;AAErD,SAAgB,MAAM,KAAW,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE;;AAEjD,SAAgB,WAAW;IACvB,MAAM,SAAS,GAAqC,IAAI,CAAC,WAAW,EAAE,CAAC;IACvE,OAAO,CAAC,SAAS,KAAK,IAAI,IAAI,IAAI,GAAG,IAAI,UAAU,CAAC,SAAS,CAAC,CAAC;CAClE;AAED,AAyhDA;AACA,SAAgB,cAAc,KAAuB,OAAO,IAAI,CAAC,cAAc,EAAE,CAAC,EAAE;AACpF,AAsBA;AACA,SAAgB,yBAAyB,CAAC,QAAgB,EAAE,WAAmB,CAAC,IAAU,IAAI,CAAC,yBAAyB,CAAC,QAAQ,CAAC,CAAC,EAAE;AACrI,AAEA;AACA,SAAgB,uBAAuB,CAAC,eAA6C,IAAI,IAAY,OAAO,IAAI,CAAC,uBAAuB,EAAE,CAAC,EAAE;;;ACp5H7I,CAAC,SAAS,MAAM,CAAC;;;;;;AAMjB,IAAI,aAAa,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AACtC,IAAI,sBAAsB;EACxB,aAAa;;;EAGb,SAAS,IAAI,aAAa;EAC1B,QAAQ,IAAI,aAAa;EACzB,KAAK,IAAI,aAAa;EACtB,MAAM,IAAI,aAAa;;;EAGvB,CAAC,UAAU;IACT,IAAI,OAAO,CAAC;IACZ,IAAI,aAAa,CAAC,SAAS,CAAC,CAAC,EAAE,OAAO,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;IAC/C,OAAO,OAAO,OAAO,KAAK,UAAU,CAAC;GACtC,GAAG,CAAC;;;;;;;AAOP,IAAI,CAAkC,OAAO;AAC7C;;EAEE,eAAe,GAAG,sBAAsB,GAAG,aAAa,GAAG,OAAO,CAAC;EACnE,gBAAgB,GAAG,OAAO,CAAC;CAC5B;;AAED;;EAEE,AAOA;;IAEE,IAAI,CAAC,sBAAsB;MACzB,MAAM,CAAC,SAAS,CAAC,GAAG,OAAO,CAAC;GAC/B;CACF;;;;;;;AAOD,IAAI,OAAO,GAAG,SAAS,CAAC;AACxB,IAAI,MAAM,GAAG,QAAQ,CAAC;AACtB,IAAI,SAAS,GAAG,WAAW,CAAC;AAC5B,IAAI,QAAQ,GAAG,UAAU,CAAC;AAC1B,IAAI,IAAI,GAAG,UAAU,EAAE,CAAC;;AAExB,SAAS,OAAO,CAAC,KAAK,EAAE;EACtB,OAAO,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,gBAAgB,CAAC;CACnE;;;AAGD,IAAI,aAAa,GAAG,OAAO,YAAY,KAAK,WAAW,GAAG,YAAY,GAAG,UAAU,CAAC;AACpF,IAAI,UAAU,GAAG,EAAE,CAAC;AACpB,IAAI,UAAU,CAAC;;AAEf,SAAS,UAAU,EAAE;;EAEnB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE;IACxC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;;;EAGrC,UAAU,GAAG,EAAE,CAAC;EAChB,UAAU,GAAG,KAAK,CAAC;CACpB;;AAED,SAAS,SAAS,CAAC,QAAQ,EAAE,GAAG,CAAC;EAC/B,UAAU,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC;;EAEjC,IAAI,CAAC,UAAU;EACf;IACE,UAAU,GAAG,IAAI,CAAC;IAClB,aAAa,CAAC,UAAU,EAAE,CAAC,CAAC,CAAC;GAC9B;CACF;;;AAGD,SAAS,cAAc,CAAC,QAAQ,EAAE,OAAO,EAAE;EACzC,SAAS,cAAc,CAAC,KAAK,EAAE;IAC7B,OAAO,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;GACzB;;EAED,SAAS,aAAa,CAAC,MAAM,EAAE;IAC7B,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;GACzB;;EAED,IAAI;IACF,QAAQ,CAAC,cAAc,EAAE,aAAa,CAAC,CAAC;GACzC,CAAC,MAAM,CAAC,EAAE;IACT,aAAa,CAAC,CAAC,CAAC,CAAC;GAClB;CACF;;AAED,SAAS,cAAc,CAAC,UAAU,CAAC;EACjC,IAAI,KAAK,GAAG,UAAU,CAAC,KAAK,CAAC;EAC7B,IAAI,OAAO,GAAG,KAAK,CAAC,MAAM,CAAC;EAC3B,IAAI,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;EACxB,IAAI,QAAQ,GAAG,UAAU,CAAC,OAAO,CAAC,CAAC;EACnC,IAAI,OAAO,GAAG,UAAU,CAAC,IAAI,CAAC;;EAE9B,IAAI,OAAO,QAAQ,KAAK,UAAU;EAClC;IACE,OAAO,GAAG,SAAS,CAAC;IACpB,IAAI;MACF,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;KACzB,CAAC,MAAM,CAAC,EAAE;MACT,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;KACpB;GACF;;EAED,IAAI,CAAC,cAAc,CAAC,OAAO,EAAE,KAAK,CAAC;EACnC;IACE,IAAI,OAAO,KAAK,SAAS;MACvB,OAAO,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;;IAE1B,IAAI,OAAO,KAAK,QAAQ;MACtB,MAAM,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;GAC1B;CACF;;AAED,SAAS,cAAc,CAAC,OAAO,EAAE,KAAK,EAAE;EACtC,IAAI,QAAQ,CAAC;;EAEb,IAAI;IACF,IAAI,OAAO,KAAK,KAAK;MACnB,MAAM,IAAI,SAAS,CAAC,sDAAsD,CAAC,CAAC;;IAE9E,IAAI,KAAK,KAAK,OAAO,KAAK,KAAK,UAAU,IAAI,OAAO,KAAK,KAAK,QAAQ,CAAC;IACvE;MACE,IAAI,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC;;MAEtB,IAAI,OAAO,IAAI,KAAK,UAAU;MAC9B;QACE,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,SAAS,GAAG,CAAC;UAC5B,IAAI,CAAC,QAAQ;UACb;YACE,QAAQ,GAAG,IAAI,CAAC;;YAEhB,IAAI,KAAK,KAAK,GAAG;cACf,OAAO,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;;cAEtB,OAAO,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;WACzB;SACF,EAAE,SAAS,MAAM,CAAC;UACjB,IAAI,CAAC,QAAQ;UACb;YACE,QAAQ,GAAG,IAAI,CAAC;;YAEhB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;WACzB;SACF,CAAC,CAAC;;QAEH,OAAO,IAAI,CAAC;OACb;KACF;GACF,CAAC,OAAO,CAAC,EAAE;IACV,IAAI,CAAC,QAAQ;MACX,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;;IAErB,OAAO,IAAI,CAAC;GACb;;EAED,OAAO,KAAK,CAAC;CACd;;AAED,SAAS,OAAO,CAAC,OAAO,EAAE,KAAK,CAAC;EAC9B,IAAI,OAAO,KAAK,KAAK,IAAI,CAAC,cAAc,CAAC,OAAO,EAAE,KAAK,CAAC;IACtD,OAAO,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;CAC3B;;AAED,SAAS,OAAO,CAAC,OAAO,EAAE,KAAK,CAAC;EAC9B,IAAI,OAAO,CAAC,MAAM,KAAK,OAAO;EAC9B;IACE,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC;IACxB,OAAO,CAAC,KAAK,GAAG,KAAK,CAAC;;IAEtB,SAAS,CAAC,kBAAkB,EAAE,OAAO,CAAC,CAAC;GACxC;CACF;;AAED,SAAS,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC;EAC9B,IAAI,OAAO,CAAC,MAAM,KAAK,OAAO;EAC9B;IACE,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC;IACxB,OAAO,CAAC,KAAK,GAAG,MAAM,CAAC;;IAEvB,SAAS,CAAC,gBAAgB,EAAE,OAAO,CAAC,CAAC;GACtC;CACF;;AAED,SAAS,OAAO,CAAC,OAAO,EAAE;EACxB,IAAI,SAAS,GAAG,OAAO,CAAC,KAAK,CAAC;EAC9B,OAAO,CAAC,KAAK,GAAG,SAAS,CAAC;;EAE1B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;IACzC,cAAc,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;GAC9B;CACF;;AAED,SAAS,kBAAkB,CAAC,OAAO,CAAC;EAClC,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;EAC3B,OAAO,CAAC,OAAO,CAAC,CAAC;CAClB;;AAED,SAAS,gBAAgB,CAAC,OAAO,CAAC;EAChC,OAAO,CAAC,MAAM,GAAG,QAAQ,CAAC;EAC1B,OAAO,CAAC,OAAO,CAAC,CAAC;CAClB;;;;;AAKD,SAAS,OAAO,CAAC,QAAQ,CAAC;EACxB,IAAI,OAAO,QAAQ,KAAK,UAAU;IAChC,MAAM,IAAI,SAAS,CAAC,+CAA+C,CAAC,CAAC;;EAEvE,IAAI,IAAI,YAAY,OAAO,KAAK,KAAK;IACnC,MAAM,IAAI,SAAS,CAAC,2HAA2H,CAAC,CAAC;;EAEnJ,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;;EAEhB,cAAc,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;CAChC;;AAED,OAAO,CAAC,SAAS,GAAG;EAClB,WAAW,EAAE,OAAO;;EAEpB,MAAM,EAAE,OAAO;EACf,KAAK,EAAE,IAAI;EACX,KAAK,EAAE,SAAS;;EAEhB,IAAI,EAAE,SAAS,aAAa,EAAE,WAAW,CAAC;IACxC,IAAI,UAAU,GAAG;MACf,KAAK,EAAE,IAAI;MACX,IAAI,EAAE,IAAI,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC;MAChC,SAAS,EAAE,aAAa;MACxB,QAAQ,EAAE,WAAW;KACtB,CAAC;;IAEF,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,IAAI,IAAI,CAAC,MAAM,KAAK,QAAQ;IACzD;;MAEE,SAAS,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;KACvC;;IAED;;MAEE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;KAC7B;;IAED,OAAO,UAAU,CAAC,IAAI,CAAC;GACxB;;EAED,OAAO,EAAE,SAAS,WAAW,EAAE;IAC7B,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC;GACrC;CACF,CAAC;;AAEF,OAAO,CAAC,GAAG,GAAG,SAAS,QAAQ,CAAC;EAC9B,IAAI,KAAK,GAAG,IAAI,CAAC;;EAEjB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACpB,MAAM,IAAI,SAAS,CAAC,0CAA0C,CAAC,CAAC;;EAElE,OAAO,IAAI,KAAK,CAAC,SAAS,OAAO,EAAE,MAAM,CAAC;IACxC,IAAI,OAAO,GAAG,EAAE,CAAC;IACjB,IAAI,SAAS,GAAG,CAAC,CAAC;;IAElB,SAAS,QAAQ,CAAC,KAAK,CAAC;MACtB,SAAS,EAAE,CAAC;MACZ,OAAO,SAAS,KAAK,CAAC;QACpB,OAAO,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC;QACvB,IAAI,CAAC,EAAE,SAAS;UACd,OAAO,CAAC,OAAO,CAAC,CAAC;OACpB,CAAC;KACH;;IAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,OAAO,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;IACjD;MACE,OAAO,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;;MAEtB,IAAI,OAAO,IAAI,OAAO,OAAO,CAAC,IAAI,KAAK,UAAU;QAC/C,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;;QAElC,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC;KACxB;;IAED,IAAI,CAAC,SAAS;MACZ,OAAO,CAAC,OAAO,CAAC,CAAC;GACpB,CAAC,CAAC;CACJ,CAAC;;AAEF,OAAO,CAAC,IAAI,GAAG,SAAS,QAAQ,CAAC;EAC/B,IAAI,KAAK,GAAG,IAAI,CAAC;;EAEjB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACpB,MAAM,IAAI,SAAS,CAAC,2CAA2C,CAAC,CAAC;;EAEnE,OAAO,IAAI,KAAK,CAAC,SAAS,OAAO,EAAE,MAAM,EAAE;IACzC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,OAAO,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;IACjD;MACE,OAAO,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;;MAEtB,IAAI,OAAO,IAAI,OAAO,OAAO,CAAC,IAAI,KAAK,UAAU;QAC/C,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;;QAE9B,OAAO,CAAC,OAAO,CAAC,CAAC;KACpB;GACF,CAAC,CAAC;CACJ,CAAC;;AAEF,OAAO,CAAC,OAAO,GAAG,SAAS,KAAK,CAAC;EAC/B,IAAI,KAAK,GAAG,IAAI,CAAC;;EAEjB,IAAI,KAAK,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,CAAC,WAAW,KAAK,KAAK;IACnE,OAAO,KAAK,CAAC;;EAEf,OAAO,IAAI,KAAK,CAAC,SAAS,OAAO,CAAC;IAChC,OAAO,CAAC,KAAK,CAAC,CAAC;GAChB,CAAC,CAAC;CACJ,CAAC;;AAEF,OAAO,CAAC,MAAM,GAAG,SAAS,MAAM,CAAC;EAC/B,IAAI,KAAK,GAAG,IAAI,CAAC;;EAEjB,OAAO,IAAI,KAAK,CAAC,SAAS,OAAO,EAAE,MAAM,CAAC;IACxC,MAAM,CAAC,MAAM,CAAC,CAAC;GAChB,CAAC,CAAC;CACJ,CAAC;;CAED,EAAE,OAAO,MAAM,IAAI,WAAW,GAAG,MAAM,GAAG,OAAOC,cAAM,IAAI,WAAW,GAAGA,cAAM,GAAG,OAAO,IAAI,IAAI,WAAW,GAAG,IAAI,GAAGC,cAAI,CAAC,CAAC;;;;;ACzV7H;;;;;;AAQA,IAAI,qBAAqB,GAAG,MAAM,CAAC,qBAAqB,CAAC;AACzD,IAAI,cAAc,GAAG,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC;AACrD,IAAI,gBAAgB,GAAG,MAAM,CAAC,SAAS,CAAC,oBAAoB,CAAC;;AAE7D,SAAS,QAAQ,CAAC,GAAG,EAAE;CACtB,IAAI,GAAG,KAAK,IAAI,IAAI,GAAG,KAAK,SAAS,EAAE;EACtC,MAAM,IAAI,SAAS,CAAC,uDAAuD,CAAC,CAAC;EAC7E;;CAED,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;CACnB;;AAED,SAAS,eAAe,GAAG;CAC1B,IAAI;EACH,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE;GACnB,OAAO,KAAK,CAAC;GACb;;;;;EAKD,IAAI,KAAK,GAAG,IAAI,MAAM,CAAC,KAAK,CAAC,CAAC;EAC9B,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;EAChB,IAAI,MAAM,CAAC,mBAAmB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;GACjD,OAAO,KAAK,CAAC;GACb;;;EAGD,IAAI,KAAK,GAAG,EAAE,CAAC;EACf,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE;GAC5B,KAAK,CAAC,GAAG,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;GACxC;EACD,IAAI,MAAM,GAAG,MAAM,CAAC,mBAAmB,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE;GAC/D,OAAO,KAAK,CAAC,CAAC,CAAC,CAAC;GAChB,CAAC,CAAC;EACH,IAAI,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,KAAK,YAAY,EAAE;GACrC,OAAO,KAAK,CAAC;GACb;;;EAGD,IAAI,KAAK,GAAG,EAAE,CAAC;EACf,sBAAsB,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,OAAO,CAAC,UAAU,MAAM,EAAE;GAC1D,KAAK,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC;GACvB,CAAC,CAAC;EACH,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC;IAChD,sBAAsB,EAAE;GACzB,OAAO,KAAK,CAAC;GACb;;EAED,OAAO,IAAI,CAAC;EACZ,CAAC,OAAO,GAAG,EAAE;;EAEb,OAAO,KAAK,CAAC;EACb;CACD;;AAED,gBAAc,GAAG,eAAe,EAAE,GAAG,MAAM,CAAC,MAAM,GAAG,UAAU,MAAM,EAAE,MAAM,EAAE;CAC9E,IAAI,IAAI,CAAC;CACT,IAAI,EAAE,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC;CAC1B,IAAI,OAAO,CAAC;;CAEZ,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;EAC1C,IAAI,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;;EAE5B,KAAK,IAAI,GAAG,IAAI,IAAI,EAAE;GACrB,IAAI,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE;IACnC,EAAE,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;IACpB;GACD;;EAED,IAAI,qBAAqB,EAAE;GAC1B,OAAO,GAAG,qBAAqB,CAAC,IAAI,CAAC,CAAC;GACtC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;IACxC,IAAI,gBAAgB,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE;KAC5C,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC;KAClC;IACD;GACD;EACD;;CAED,OAAO,EAAE,CAAC;CACV,CAAC;;ACzFF;;;;;;;AAOA,AAEA;;AAEA,IAAI,CAAC,MAAM,CAAC,OAAO;AACnB;IACI,MAAM,CAAC,OAAO,GAAGC,SAAQ,CAAC;CAC7B;;;;AAID,IAAI,CAAC,MAAM,CAAC,MAAM;AAClB;IACI,MAAM,CAAC,MAAM,GAAG,YAAY,CAAC;CAChC;;AAED,IAAIC,gBAAc,GAAG,OAAO,UAAU,KAAK,WAAW,GAAG,UAAU,GAAG,OAAO,MAAM,KAAK,WAAW,GAAG,MAAM,GAAG,OAAO,MAAM,KAAK,WAAW,GAAG,MAAM,GAAG,OAAO,IAAI,KAAK,WAAW,GAAG,IAAI,GAAG,EAAE,CAAC;;;;;;;;;;;;;AAahM,IAAI,cAAc,GAAG,EAAE,CAAC;;;AAGxB,IAAI,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC;AACzC;IACI,IAAI,CAAC,GAAG,GAAG,SAAS,GAAG;IACvB;QACI,OAAO,IAAI,IAAI,EAAE,CAAC,OAAO,EAAE,CAAC;KAC/B,CAAC;CACL;;;AAGD,IAAI,EAAEA,gBAAc,CAAC,WAAW,IAAIA,gBAAc,CAAC,WAAW,CAAC,GAAG,CAAC;AACnE;IACI,IAAI,SAAS,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;;IAE3B,IAAI,CAACA,gBAAc,CAAC,WAAW;IAC/B;QACIA,gBAAc,CAAC,WAAW,GAAG,EAAE,CAAC;KACnC;;IAEDA,gBAAc,CAAC,WAAW,CAAC,GAAG,GAAG,YAAY,EAAE,OAAO,IAAI,CAAC,GAAG,EAAE,GAAG,SAAS,CAAC,EAAE,CAAC;CACnF;;;AAGD,IAAI,QAAQ,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;AAC1B,IAAI,OAAO,GAAG,CAAC,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,GAAG,CAAC,CAAC;;AAE3C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,IAAI,CAACA,gBAAc,CAAC,qBAAqB,EAAE,EAAE,CAAC;AAChF;IACI,IAAI,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;;IAEnBA,gBAAc,CAAC,qBAAqB,GAAGA,gBAAc,EAAE,CAAC,GAAG,uBAAuB,EAAE,CAAC;IACrFA,gBAAc,CAAC,oBAAoB,GAAGA,gBAAc,EAAE,CAAC,GAAG,sBAAsB,EAAE,IAAIA,gBAAc,EAAE,CAAC,GAAG,6BAA6B,EAAE,CAAC;CAC7I;;AAED,IAAI,CAACA,gBAAc,CAAC,qBAAqB;AACzC;IACIA,gBAAc,CAAC,qBAAqB,GAAG,UAAU,QAAQ,EAAE;QACvD,IAAI,OAAO,QAAQ,KAAK,UAAU;QAClC;YACI,MAAM,IAAI,SAAS,EAAE,QAAQ,GAAG,mBAAmB,EAAE,CAAC;SACzD;;QAED,IAAI,WAAW,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;QAC7B,IAAI,KAAK,GAAG,cAAc,GAAG,QAAQ,GAAG,WAAW,CAAC;;QAEpD,IAAI,KAAK,GAAG,CAAC;QACb;YACI,KAAK,GAAG,CAAC,CAAC;SACb;;QAED,QAAQ,GAAG,WAAW,CAAC;;QAEvB,OAAO,UAAU,CAAC,YAAY;YAC1B,QAAQ,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;YACtB,QAAQ,CAAC,WAAW,CAAC,GAAG,EAAE,CAAC,CAAC;SAC/B,EAAE,KAAK,CAAC,CAAC;KACb,CAAC;CACL;;AAED,IAAI,CAACA,gBAAc,CAAC,oBAAoB;AACxC;IACIA,gBAAc,CAAC,oBAAoB,GAAG,UAAU,EAAE,EAAE,EAAE,OAAO,YAAY,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC;CACpF;;;;;AAKD,IAAI,CAAC,IAAI,CAAC,IAAI;AACd;IACI,IAAI,CAAC,IAAI,GAAG,SAAS,QAAQ,CAAC,CAAC;IAC/B;QACI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;QAEd,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC;QACvB;YACI,OAAO,CAAC,CAAC;SACZ;;QAED,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;KACzB,CAAC;CACL;;;;;AAKD,IAAI,CAAC,MAAM,CAAC,SAAS;AACrB;IACI,MAAM,CAAC,SAAS,GAAG,SAAS,eAAe,CAAC,KAAK;IACjD;QACI,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,QAAQ,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,KAAK,CAAC;KACtF,CAAC;CACL;;AAED,IAAI,CAAC,MAAM,CAAC,WAAW;AACvB;IACI,MAAM,CAAC,WAAW,GAAG,KAAK,CAAC;CAC9B;;AAED,IAAI,CAAC,MAAM,CAAC,YAAY;AACxB;IACI,MAAM,CAAC,YAAY,GAAG,KAAK,CAAC;CAC/B;;AAED,IAAI,CAAC,MAAM,CAAC,WAAW;AACvB;IACI,MAAM,CAAC,WAAW,GAAG,KAAK,CAAC;CAC9B;;AAED,IAAI,CAAC,MAAM,CAAC,WAAW;AACvB;IACI,MAAM,CAAC,WAAW,GAAG,KAAK,CAAC;CAC9B;;AAED,IAAI,CAAC,MAAM,CAAC,UAAU;AACtB;IACI,MAAM,CAAC,UAAU,GAAG,KAAK,CAAC;CAC7B;;AAED,IAAI,CAAC,MAAM,CAAC,UAAU;AACtB;IACI,MAAM,CAAC,UAAU,GAAG,KAAK,CAAC;CAC7B;;;AC/JD,CAAC,SAAS,MAAM,EAAE;EAChB,IAAI,WAAW,GAAG,SAAS;IACzB,UAAU,GAAG,OAAO;IACpB,YAAY,GAAG,OAAO;IACtB,aAAa,GAAG,0BAA0B;IAC1C,cAAc,GAAG,UAAU;IAC3B,YAAY,GAAG,4BAA4B;IAC3C,aAAa,GAAG,oCAAoC;IACpD,aAAa,GAAG,gBAAgB;IAChC,cAAc,GAAG,uBAAuB;IACxC,gBAAgB,GAAG,aAAa;IAChC,mBAAmB,GAAG,OAAO;IAC7B,WAAW,GAAG,aAAa;IAC3B,YAAY,GAAG,+BAA+B;IAC9C,aAAa,GAAG,wBAAwB,CAAC;;EAE3C,SAAS,KAAK,CAAC,KAAK,EAAE,SAAS,EAAE;IAC/B,OAAO,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;GAC9B;;EAED,SAAS,QAAQ,CAAC,SAAS,EAAE;IAC3B,IAAI,EAAE;MACJ,SAAS;OACR,OAAO,SAAS,KAAK,WAAW,GAAG,SAAS,CAAC,SAAS,GAAG,EAAE,CAAC,CAAC;;;;IAIhE,IAAI,GAAG,GAAG,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IAC5B,IAAI,OAAO,GAAG,CAAC,CAAC,CAAC,KAAK,WAAW,EAAE;MACjC,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;KACb;;;;;IAKD,GAAG,GAAG,EAAE,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;IAC1B,IAAI,OAAO,GAAG,CAAC,CAAC,CAAC,KAAK,WAAW,EAAE;MACjC,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;KACb;;IAED,IAAI,MAAM,GAAG;MACX,KAAK,EAAE;QACL,KAAK,EAAE,KAAK,CAAC,WAAW,EAAE,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;QAC1D,IAAI,EAAE,KAAK,CAAC,UAAU,EAAE,EAAE,CAAC;QAC3B,MAAM;UACJ,CAAC,KAAK,CAAC,WAAW,EAAE,EAAE,CAAC;UACvB,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;UACvB,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;QAC3B,MAAM;UACJ,CAAC,KAAK,CAAC,WAAW,EAAE,EAAE,CAAC;YACrB,KAAK,CAAC,UAAU,EAAE,EAAE,CAAC;YACrB,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;UACzB,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;OAC5B;MACD,MAAM,EAAE;QACN,KAAK,EAAE,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;QAC9B,MAAM,EAAE,CAAC,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC,IAAI,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;QAC5D,MAAM,EAAE,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC,IAAI,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;OAC5D;MACD,OAAO,EAAE;QACP,KAAK;UACH,CAAC,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC,IAAI,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;WACpD,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC,IAAI,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC,CAAC;QACzD,MAAM;UACJ,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;UACzB,CAAC,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;UACxB,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;WACxB,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC,IAAI,KAAK,CAAC,cAAc,EAAE,EAAE,CAAC,CAAC;QACzD,MAAM;UACJ,CAAC,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;aACvB,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;cACtB,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;cACxB,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;cACxB,KAAK,CAAC,cAAc,EAAE,EAAE,CAAC,CAAC;UAC9B,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;OAC3B;MACD,OAAO,EAAE;QACP,KAAK,EAAE,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;QAC/B,MAAM,EAAE,KAAK,CAAC,cAAc,EAAE,EAAE,CAAC;QACjC,MAAM,EAAE,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC,IAAI,KAAK,CAAC,cAAc,EAAE,EAAE,CAAC;OAC9D;MACD,KAAK,EAAE;QACL,UAAU,EAAE,KAAK,CAAC,gBAAgB,EAAE,EAAE,CAAC;QACvC,YAAY,EAAE,KAAK,CAAC,mBAAmB,EAAE,EAAE,CAAC;QAC5C,KAAK,EAAE,KAAK,CAAC,WAAW,EAAE,EAAE,CAAC;QAC7B,OAAO,EAAE,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;QACjC,MAAM,EAAE,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;QAC/B,MAAM;UACJ,KAAK,CAAC,gBAAgB,EAAE,EAAE,CAAC;UAC3B,KAAK,CAAC,mBAAmB,EAAE,EAAE,CAAC;UAC9B,KAAK,CAAC,WAAW,EAAE,EAAE,CAAC;UACtB,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;UACxB,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;OAC1B;KACF,CAAC;IACF,CAAC,MAAM,CAAC,GAAG;MACT,MAAM,CAAC,KAAK,CAAC,MAAM;MACnB,MAAM,CAAC,OAAO,CAAC,MAAM;MACrB,MAAM,CAAC,OAAO,CAAC,MAAM;MACrB,MAAM,CAAC,KAAK,CAAC,MAAM;;OAElB,MAAM,CAAC,KAAK;QACX,MAAM,CAAC,KAAK,CAAC,KAAK,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK;OACnE,MAAM,CAAC,MAAM;QACZ,MAAM,CAAC,KAAK,CAAC,MAAM,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;IAE3E,OAAO,MAAM,CAAC;GACf;;EAED;IACE;IACA,MAAM,CAAC,OAAO;IACd,OAAO,MAAM,KAAK,WAAW;IAC7B;;IAEA,cAAc,GAAG,QAAQ,CAAC;GAC3B,MAAM;IACL;IACA,MAAM,CAAC,OAAO;IACd,OAAO,MAAM,KAAK,WAAW;IAC7B;;IAEA,cAAc,GAAG,QAAQ,EAAE,CAAC;IAC5B,uBAAuB,GAAG,QAAQ,CAAC;GACpC,MAAM,AAGA;IACL,MAAM,CAAC,QAAQ,GAAG,QAAQ,EAAE,CAAC;GAC9B;CACF,EAAEF,cAAI,CAAC,CAAC;;;;AClIT;;;;;;;AAOA,AAEA;;;;;;;;;;;;;;AAcA,SAAS,sBAAsB,CAAC,GAAG;AACnC;IACI,IAAI,QAAQ,GAAG,IAAI,CAAC;;IAEpB,IAAI,QAAQ,CAAC,MAAM,IAAI,QAAQ,CAAC,KAAK;IACrC;QACI,QAAQ,GAAG,KAAK,CAAC;;QAEjB,IAAI,QAAQ,CAAC,KAAK,CAAC,MAAM;QACzB;YACI,IAAI,KAAK,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,KAAK,CAAC,iBAAiB,CAAC,CAAC;;YAE3D,IAAI,KAAK;YACT;gBACI,IAAI,YAAY,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;;;gBAG1C,IAAI,YAAY,IAAI,EAAE;gBACtB;oBACI,QAAQ,GAAG,IAAI,CAAC;iBACnB;aACJ;SACJ;QACD,IAAI,QAAQ,CAAC,OAAO,CAAC,MAAM;QAC3B;YACI,IAAI,OAAO,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,KAAK,CAAC,oBAAoB,CAAC,CAAC;;YAEhE,IAAI,OAAO;YACX;gBACI,IAAI,cAAc,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;;;gBAG9C,IAAI,cAAc,IAAI,CAAC;gBACvB;oBACI,QAAQ,GAAG,IAAI,CAAC;iBACnB;aACJ;SACJ;KACJ;;IAED,OAAO,QAAQ,GAAG,GAAG,GAAG,CAAC,CAAC;CAC7B;;;;;;;;;;AAUD,SAAS,mBAAmB;AAC5B;IACI,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC;CACjC;;;;;;;;;;;;;;AAcD,IAAI,QAAQ,GAAG;;;;;;;;;;;;IAYX,eAAe,EAAE,CAAC;;;;;;;;;;;;IAYlB,iBAAiB,EAAE,CAAC;;;;;;;;;;;IAWpB,UAAU,EAAE,CAAC;;;;;;;;;;;IAWb,iBAAiB,EAAE,CAAC;;;;;;;;;;;IAWpB,mBAAmB,EAAE,sBAAsB,CAAC,EAAE,CAAC;;;;;;;;;;;;;;;;IAgB/C,iBAAiB,EAAE,IAAI;;;;;;;;;;;;;;;;;;;;;;;IAuBvB,cAAc,EAAE;QACZ,IAAI,EAAE,IAAI;QACV,SAAS,EAAE,KAAK;QAChB,SAAS,EAAE,KAAK;QAChB,WAAW,EAAE,KAAK;QAClB,WAAW,EAAE,KAAK;QAClB,eAAe,EAAE,QAAQ;QACzB,iBAAiB,EAAE,IAAI;QACvB,qBAAqB,EAAE,KAAK;QAC5B,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,GAAG;QACX,MAAM,EAAE,KAAK;KAChB;;;;;;;;;;;IAWD,OAAO,EAAE,CAAC;;;;;;;;;;;IAWV,WAAW,EAAE,EAAE,GAAG,EAAE;;;;;;;;;;;IAWpB,kBAAkB,EAAE,EAAE,GAAG,EAAE;;;;;;;;;;;IAW3B,SAAS,EAAE,KAAK;;;;;;;;;;;IAWhB,UAAU,EAAE,CAAC;;;;;;;;;;;IAWb,gBAAgB,EAAE,OAAO;;;;;;;;;;;;IAYzB,kBAAkB,EAAE,QAAQ,CAAC,KAAK,CAAC,MAAM,GAAG,OAAO,GAAG,SAAS;;;;;;;;;;IAU/D,sBAAsB,EAAE,mBAAmB,EAAE;;;;;;;;;;;IAW7C,mBAAmB,EAAE,KAAK;;;;;;;;;;;;;IAa1B,YAAY,EAAE,KAAK;CACtB,CAAC;;;ACxTF;AAEA,IAAI,GAAG,GAAG,MAAM,CAAC,SAAS,CAAC,cAAc;IACrC,MAAM,GAAG,GAAG,CAAC;;;;;;;;;AASjB,SAAS,MAAM,GAAG,EAAE;;;;;;;;;AASpB,IAAI,MAAM,CAAC,MAAM,EAAE;EACjB,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;;;;;EAMvC,IAAI,CAAC,IAAI,MAAM,EAAE,CAAC,SAAS,EAAE,MAAM,GAAG,KAAK,CAAC;CAC7C;;;;;;;;;;;AAWD,SAAS,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE;EAC7B,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;EACb,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;EACvB,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,KAAK,CAAC;CAC3B;;;;;;;;;;;;;AAaD,SAAS,WAAW,CAAC,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE;EACtD,IAAI,OAAO,EAAE,KAAK,UAAU,EAAE;IAC5B,MAAM,IAAI,SAAS,CAAC,iCAAiC,CAAC,CAAC;GACxD;;EAED,IAAI,QAAQ,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,OAAO,IAAI,OAAO,EAAE,IAAI,CAAC;MAC/C,GAAG,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,CAAC;;EAE1C,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,QAAQ,EAAE,OAAO,CAAC,YAAY,EAAE,CAAC;OAC9E,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;OAClE,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,QAAQ,CAAC,CAAC;;EAE7D,OAAO,OAAO,CAAC;CAChB;;;;;;;;;AASD,SAAS,UAAU,CAAC,OAAO,EAAE,GAAG,EAAE;EAChC,IAAI,EAAE,OAAO,CAAC,YAAY,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;OAC5D,OAAO,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;CAClC;;;;;;;;;AASD,SAAS,YAAY,GAAG;EACtB,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;EAC5B,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;CACvB;;;;;;;;;AASD,YAAY,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,GAAG;EACxD,IAAI,KAAK,GAAG,EAAE;MACV,MAAM;MACN,IAAI,CAAC;;EAET,IAAI,IAAI,CAAC,YAAY,KAAK,CAAC,EAAE,OAAO,KAAK,CAAC;;EAE1C,KAAK,IAAI,KAAK,MAAM,GAAG,IAAI,CAAC,OAAO,GAAG;IACpC,IAAI,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;GACvE;;EAED,IAAI,MAAM,CAAC,qBAAqB,EAAE;IAChC,OAAO,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,qBAAqB,CAAC,MAAM,CAAC,CAAC,CAAC;GAC3D;;EAED,OAAO,KAAK,CAAC;CACd,CAAC;;;;;;;;;AASF,YAAY,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,CAAC,KAAK,EAAE;EAC3D,IAAI,GAAG,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK;MACrC,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;;EAEjC,IAAI,CAAC,QAAQ,EAAE,OAAO,EAAE,CAAC;EACzB,IAAI,QAAQ,CAAC,EAAE,EAAE,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;;EAEtC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,EAAE,GAAG,IAAI,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;IAClE,EAAE,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;GACxB;;EAED,OAAO,EAAE,CAAC;CACX,CAAC;;;;;;;;;AASF,YAAY,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,CAAC,KAAK,EAAE;EACnE,IAAI,GAAG,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK;MACrC,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;;EAElC,IAAI,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;EACzB,IAAI,SAAS,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;EAC3B,OAAO,SAAS,CAAC,MAAM,CAAC;CACzB,CAAC;;;;;;;;;AASF,YAAY,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;EACrE,IAAI,GAAG,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,CAAC;;EAE1C,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,OAAO,KAAK,CAAC;;EAErC,IAAI,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC;MAC7B,GAAG,GAAG,SAAS,CAAC,MAAM;MACtB,IAAI;MACJ,CAAC,CAAC;;EAEN,IAAI,SAAS,CAAC,EAAE,EAAE;IAChB,IAAI,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,KAAK,EAAE,SAAS,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,CAAC,CAAC;;IAE9E,QAAQ,GAAG;MACT,KAAK,CAAC,EAAE,OAAO,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC;MAC1D,KAAK,CAAC,EAAE,OAAO,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,EAAE,EAAE,CAAC,EAAE,IAAI,CAAC;MAC9D,KAAK,CAAC,EAAE,OAAO,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,CAAC;MAClE,KAAK,CAAC,EAAE,OAAO,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,CAAC;MACtE,KAAK,CAAC,EAAE,OAAO,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,CAAC;MAC1E,KAAK,CAAC,EAAE,OAAO,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,CAAC;KAC/E;;IAED,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;MAClD,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;KAC5B;;IAED,SAAS,CAAC,EAAE,CAAC,KAAK,CAAC,SAAS,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;GAC7C,MAAM;IACL,IAAI,MAAM,GAAG,SAAS,CAAC,MAAM;QACzB,CAAC,CAAC;;IAEN,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE,EAAE;MAC3B,IAAI,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,CAAC,CAAC;;MAEpF,QAAQ,GAAG;QACT,KAAK,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM;QAC1D,KAAK,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM;QAC9D,KAAK,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM;QAClE,KAAK,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM;QACtE;UACE,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC7D,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;WAC5B;;UAED,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;OACrD;KACF;GACF;;EAED,OAAO,IAAI,CAAC;CACb,CAAC;;;;;;;;;;;AAWF,YAAY,CAAC,SAAS,CAAC,EAAE,GAAG,SAAS,EAAE,CAAC,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE;EAC1D,OAAO,WAAW,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE,KAAK,CAAC,CAAC;CACrD,CAAC;;;;;;;;;;;AAWF,YAAY,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE;EAC9D,OAAO,WAAW,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC;CACpD,CAAC;;;;;;;;;;;;AAYF,YAAY,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,CAAC,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE;EACxF,IAAI,GAAG,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,CAAC;;EAE1C,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,OAAO,IAAI,CAAC;EACpC,IAAI,CAAC,EAAE,EAAE;IACP,UAAU,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IACtB,OAAO,IAAI,CAAC;GACb;;EAED,IAAI,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;;EAElC,IAAI,SAAS,CAAC,EAAE,EAAE;IAChB;MACE,SAAS,CAAC,EAAE,KAAK,EAAE;OAClB,CAAC,IAAI,IAAI,SAAS,CAAC,IAAI,CAAC;OACxB,CAAC,OAAO,IAAI,SAAS,CAAC,OAAO,KAAK,OAAO,CAAC;MAC3C;MACA,UAAU,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;KACvB;GACF,MAAM;IACL,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,EAAE,EAAE,MAAM,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE,EAAE;MACvE;QACE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE;SACrB,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;SAC3B,OAAO,IAAI,SAAS,CAAC,CAAC,CAAC,CAAC,OAAO,KAAK,OAAO,CAAC;QAC7C;QACA,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;OAC3B;KACF;;;;;IAKD,IAAI,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,MAAM,KAAK,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC;SAC3E,UAAU,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;GAC5B;;EAED,OAAO,IAAI,CAAC;CACb,CAAC;;;;;;;;;AASF,YAAY,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,CAAC,KAAK,EAAE;EAC7E,IAAI,GAAG,CAAC;;EAER,IAAI,KAAK,EAAE;IACT,GAAG,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,CAAC;IACtC,IAAI,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,UAAU,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;GAC9C,MAAM;IACL,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;IAC5B,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;GACvB;;EAED,OAAO,IAAI,CAAC;CACb,CAAC;;;;;AAKF,YAAY,CAAC,SAAS,CAAC,GAAG,GAAG,YAAY,CAAC,SAAS,CAAC,cAAc,CAAC;AACnE,YAAY,CAAC,SAAS,CAAC,WAAW,GAAG,YAAY,CAAC,SAAS,CAAC,EAAE,CAAC;;;;;AAK/D,YAAY,CAAC,QAAQ,GAAG,MAAM,CAAC;;;;;AAK/B,YAAY,CAAC,YAAY,GAAG,YAAY,CAAC;;;;;AAKzC,AAAmC;EACjC,cAAc,GAAG,YAAY,CAAC;CAC/B;;;AC7UD,YAAc,GAAG,MAAM,CAAC;AACxB,aAAsB,GAAG,MAAM,CAAC;;AAEhC,SAAS,MAAM,CAAC,IAAI,EAAE,WAAW,EAAE,GAAG,EAAE;;IAEpC,GAAG,GAAG,GAAG,IAAI,CAAC,CAAC;;IAEf,IAAI,QAAQ,GAAG,WAAW,IAAI,WAAW,CAAC,MAAM;QAC5C,QAAQ,GAAG,QAAQ,GAAG,WAAW,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,MAAM;QACxD,SAAS,GAAG,UAAU,CAAC,IAAI,EAAE,CAAC,EAAE,QAAQ,EAAE,GAAG,EAAE,IAAI,CAAC;QACpD,SAAS,GAAG,EAAE,CAAC;;IAEnB,IAAI,CAAC,SAAS,IAAI,SAAS,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,EAAE,OAAO,SAAS,CAAC;;IAEtE,IAAI,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC;;IAE1C,IAAI,QAAQ,EAAE,SAAS,GAAG,cAAc,CAAC,IAAI,EAAE,WAAW,EAAE,SAAS,EAAE,GAAG,CAAC,CAAC;;;IAG5E,IAAI,IAAI,CAAC,MAAM,GAAG,EAAE,GAAG,GAAG,EAAE;QACxB,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;QACtB,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;;QAEtB,KAAK,IAAI,CAAC,GAAG,GAAG,EAAE,CAAC,GAAG,QAAQ,EAAE,CAAC,IAAI,GAAG,EAAE;YACtC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;YACZ,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YAChB,IAAI,CAAC,GAAG,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC;YACvB,IAAI,CAAC,GAAG,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC;YACvB,IAAI,CAAC,GAAG,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC;YACvB,IAAI,CAAC,GAAG,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC;SAC1B;;;QAGD,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,GAAG,IAAI,EAAE,IAAI,GAAG,IAAI,CAAC,CAAC;QAC7C,OAAO,GAAG,OAAO,KAAK,CAAC,GAAG,CAAC,GAAG,OAAO,GAAG,CAAC,CAAC;KAC7C;;IAED,YAAY,CAAC,SAAS,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;;IAE7D,OAAO,SAAS,CAAC;CACpB;;;AAGD,SAAS,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,SAAS,EAAE;IAClD,IAAI,CAAC,EAAE,IAAI,CAAC;;IAEZ,IAAI,SAAS,MAAM,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,GAAG,CAAC,CAAC,EAAE;QACvD,KAAK,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,IAAI,GAAG,EAAE,IAAI,GAAG,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;KACvF,MAAM;QACH,KAAK,CAAC,GAAG,GAAG,GAAG,GAAG,EAAE,CAAC,IAAI,KAAK,EAAE,CAAC,IAAI,GAAG,EAAE,IAAI,GAAG,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;KAC9F;;IAED,IAAI,IAAI,IAAI,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,EAAE;QACjC,UAAU,CAAC,IAAI,CAAC,CAAC;QACjB,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;KACpB;;IAED,OAAO,IAAI,CAAC;CACf;;;AAGD,SAAS,YAAY,CAAC,KAAK,EAAE,GAAG,EAAE;IAC9B,IAAI,CAAC,KAAK,EAAE,OAAO,KAAK,CAAC;IACzB,IAAI,CAAC,GAAG,EAAE,GAAG,GAAG,KAAK,CAAC;;IAEtB,IAAI,CAAC,GAAG,KAAK;QACT,KAAK,CAAC;IACV,GAAG;QACC,KAAK,GAAG,KAAK,CAAC;;QAEd,IAAI,CAAC,CAAC,CAAC,OAAO,KAAK,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE;YACpE,UAAU,CAAC,CAAC,CAAC,CAAC;YACd,CAAC,GAAG,GAAG,GAAG,CAAC,CAAC,IAAI,CAAC;YACjB,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,EAAE,MAAM;YACxB,KAAK,GAAG,IAAI,CAAC;;SAEhB,MAAM;YACH,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;SACd;KACJ,QAAQ,KAAK,IAAI,CAAC,KAAK,GAAG,EAAE;;IAE7B,OAAO,GAAG,CAAC;CACd;;;AAGD,SAAS,YAAY,CAAC,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE;IAClE,IAAI,CAAC,GAAG,EAAE,OAAO;;;IAGjB,IAAI,CAAC,IAAI,IAAI,OAAO,EAAE,UAAU,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;;IAE3D,IAAI,IAAI,GAAG,GAAG;QACV,IAAI,EAAE,IAAI,CAAC;;;IAGf,OAAO,GAAG,CAAC,IAAI,KAAK,GAAG,CAAC,IAAI,EAAE;QAC1B,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;QAChB,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;;QAEhB,IAAI,OAAO,GAAG,WAAW,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,GAAG,KAAK,CAAC,GAAG,CAAC,EAAE;;YAE9D,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;YAC7B,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;YAC5B,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;;YAE7B,UAAU,CAAC,GAAG,CAAC,CAAC;;;YAGhB,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC;YAChB,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;YAEjB,SAAS;SACZ;;QAED,GAAG,GAAG,IAAI,CAAC;;;QAGX,IAAI,GAAG,KAAK,IAAI,EAAE;;YAEd,IAAI,CAAC,IAAI,EAAE;gBACP,YAAY,CAAC,YAAY,CAAC,GAAG,CAAC,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC;;;aAG3E,MAAM,IAAI,IAAI,KAAK,CAAC,EAAE;gBACnB,GAAG,GAAG,sBAAsB,CAAC,YAAY,CAAC,GAAG,CAAC,EAAE,SAAS,EAAE,GAAG,CAAC,CAAC;gBAChE,YAAY,CAAC,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC;;;aAG7D,MAAM,IAAI,IAAI,KAAK,CAAC,EAAE;gBACnB,WAAW,CAAC,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;aACzD;;YAED,MAAM;SACT;KACJ;CACJ;;;AAGD,SAAS,KAAK,CAAC,GAAG,EAAE;IAChB,IAAI,CAAC,GAAG,GAAG,CAAC,IAAI;QACZ,CAAC,GAAG,GAAG;QACP,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC;;IAEjB,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,EAAE,OAAO,KAAK,CAAC;;;IAGrC,IAAI,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC;;IAEtB,OAAO,CAAC,KAAK,GAAG,CAAC,IAAI,EAAE;QACnB,IAAI,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvD,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,OAAO,KAAK,CAAC;QAC/C,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd;;IAED,OAAO,IAAI,CAAC;CACf;;AAED,SAAS,WAAW,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE;IAC3C,IAAI,CAAC,GAAG,GAAG,CAAC,IAAI;QACZ,CAAC,GAAG,GAAG;QACP,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC;;IAEjB,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,EAAE,OAAO,KAAK,CAAC;;;IAGrC,IAAI,KAAK,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QACrE,KAAK,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QACrE,KAAK,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QACrE,KAAK,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;IAG1E,IAAI,IAAI,GAAG,MAAM,CAAC,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC;QAChD,IAAI,GAAG,MAAM,CAAC,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;;IAErD,IAAI,CAAC,GAAG,GAAG,CAAC,KAAK;QACb,CAAC,GAAG,GAAG,CAAC,KAAK,CAAC;;;IAGlB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE;QACzC,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI;YAChC,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvD,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,OAAO,KAAK,CAAC;QAC/C,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;;QAEZ,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI;YAChC,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvD,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,OAAO,KAAK,CAAC;QAC/C,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;KACf;;;IAGD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE;QACrB,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI;YAChC,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvD,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,OAAO,KAAK,CAAC;QAC/C,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;KACf;;;IAGD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE;QACrB,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI;YAChC,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvD,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,OAAO,KAAK,CAAC;QAC/C,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;KACf;;IAED,OAAO,IAAI,CAAC;CACf;;;AAGD,SAAS,sBAAsB,CAAC,KAAK,EAAE,SAAS,EAAE,GAAG,EAAE;IACnD,IAAI,CAAC,GAAG,KAAK,CAAC;IACd,GAAG;QACC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI;YACV,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;;QAEpB,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,UAAU,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE;;YAE5F,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;YAC1B,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;YAC1B,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;;;YAG1B,UAAU,CAAC,CAAC,CAAC,CAAC;YACd,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;YAEnB,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;SACjB;QACD,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,KAAK,EAAE;;IAEtB,OAAO,YAAY,CAAC,CAAC,CAAC,CAAC;CAC1B;;;AAGD,SAAS,WAAW,CAAC,KAAK,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE;;IAE7D,IAAI,CAAC,GAAG,KAAK,CAAC;IACd,GAAG;QACC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;QACpB,OAAO,CAAC,KAAK,CAAC,CAAC,IAAI,EAAE;YACjB,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE;;gBAEtC,IAAI,CAAC,GAAG,YAAY,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;;gBAG3B,CAAC,GAAG,YAAY,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC;gBAC5B,CAAC,GAAG,YAAY,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC;;;gBAG5B,YAAY,CAAC,CAAC,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;gBACrD,YAAY,CAAC,CAAC,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;gBACrD,OAAO;aACV;YACD,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;SACd;QACD,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,KAAK,EAAE;CACzB;;;AAGD,SAAS,cAAc,CAAC,IAAI,EAAE,WAAW,EAAE,SAAS,EAAE,GAAG,EAAE;IACvD,IAAI,KAAK,GAAG,EAAE;QACV,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,IAAI,CAAC;;IAE7B,KAAK,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;QAChD,KAAK,GAAG,WAAW,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;QAC7B,GAAG,GAAG,CAAC,GAAG,GAAG,GAAG,CAAC,GAAG,WAAW,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC;QAC3D,IAAI,GAAG,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;QAChD,IAAI,IAAI,KAAK,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QAC5C,KAAK,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;KACjC;;IAED,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;;;IAGrB,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QAC/B,aAAa,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;QACnC,SAAS,GAAG,YAAY,CAAC,SAAS,EAAE,SAAS,CAAC,IAAI,CAAC,CAAC;KACvD;;IAED,OAAO,SAAS,CAAC;CACpB;;AAED,SAAS,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE;IACpB,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACpB;;;AAGD,SAAS,aAAa,CAAC,IAAI,EAAE,SAAS,EAAE;IACpC,SAAS,GAAG,cAAc,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;IAC5C,IAAI,SAAS,EAAE;QACX,IAAI,CAAC,GAAG,YAAY,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;QACtC,YAAY,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC;KAC3B;CACJ;;;AAGD,SAAS,cAAc,CAAC,IAAI,EAAE,SAAS,EAAE;IACrC,IAAI,CAAC,GAAG,SAAS;QACb,EAAE,GAAG,IAAI,CAAC,CAAC;QACX,EAAE,GAAG,IAAI,CAAC,CAAC;QACX,EAAE,GAAG,CAAC,QAAQ;QACd,CAAC,CAAC;;;;IAIN,GAAG;QACC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE;YACjD,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;YAC/D,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,EAAE,EAAE;gBACnB,EAAE,GAAG,CAAC,CAAC;gBACP,IAAI,CAAC,KAAK,EAAE,EAAE;oBACV,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC;oBACzB,IAAI,EAAE,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC;iBACtC;gBACD,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;aACnC;SACJ;QACD,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,SAAS,EAAE;;IAE1B,IAAI,CAAC,CAAC,EAAE,OAAO,IAAI,CAAC;;IAEpB,IAAI,EAAE,KAAK,EAAE,EAAE,OAAO,CAAC,CAAC;;;;;;IAMxB,IAAI,IAAI,GAAG,CAAC;QACR,EAAE,GAAG,CAAC,CAAC,CAAC;QACR,EAAE,GAAG,CAAC,CAAC,CAAC;QACR,MAAM,GAAG,QAAQ;QACjB,GAAG,CAAC;;IAER,CAAC,GAAG,CAAC,CAAC;;IAEN,GAAG;QACC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC;gBAChC,eAAe,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE;;YAErF,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;YAEtC,IAAI,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC;iBACrB,GAAG,GAAG,MAAM,KAAK,GAAG,KAAK,MAAM,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,oBAAoB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE;gBAClG,CAAC,GAAG,CAAC,CAAC;gBACN,MAAM,GAAG,GAAG,CAAC;aAChB;SACJ;;QAED,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,IAAI,EAAE;;IAErB,OAAO,CAAC,CAAC;CACZ;;;AAGD,SAAS,oBAAoB,CAAC,CAAC,EAAE,CAAC,EAAE;IAChC,OAAO,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;CACrE;;;AAGD,SAAS,UAAU,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE;IAC5C,IAAI,CAAC,GAAG,KAAK,CAAC;IACd,GAAG;QACC,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;QAC9D,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC;QACjB,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC;QACjB,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,KAAK,EAAE;;IAEtB,CAAC,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC;IACrB,CAAC,CAAC,KAAK,GAAG,IAAI,CAAC;;IAEf,UAAU,CAAC,CAAC,CAAC,CAAC;CACjB;;;;AAID,SAAS,UAAU,CAAC,IAAI,EAAE;IACtB,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,KAAK;QACzC,MAAM,GAAG,CAAC,CAAC;;IAEf,GAAG;QACC,CAAC,GAAG,IAAI,CAAC;QACT,IAAI,GAAG,IAAI,CAAC;QACZ,IAAI,GAAG,IAAI,CAAC;QACZ,SAAS,GAAG,CAAC,CAAC;;QAEd,OAAO,CAAC,EAAE;YACN,SAAS,EAAE,CAAC;YACZ,CAAC,GAAG,CAAC,CAAC;YACN,KAAK,GAAG,CAAC,CAAC;YACV,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE,EAAE;gBACzB,KAAK,EAAE,CAAC;gBACR,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;gBACZ,IAAI,CAAC,CAAC,EAAE,MAAM;aACjB;YACD,KAAK,GAAG,MAAM,CAAC;;YAEf,OAAO,KAAK,GAAG,CAAC,KAAK,KAAK,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE;;gBAElC,IAAI,KAAK,KAAK,CAAC,KAAK,KAAK,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE;oBAClD,CAAC,GAAG,CAAC,CAAC;oBACN,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;oBACZ,KAAK,EAAE,CAAC;iBACX,MAAM;oBACH,CAAC,GAAG,CAAC,CAAC;oBACN,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;oBACZ,KAAK,EAAE,CAAC;iBACX;;gBAED,IAAI,IAAI,EAAE,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;qBACpB,IAAI,GAAG,CAAC,CAAC;;gBAEd,CAAC,CAAC,KAAK,GAAG,IAAI,CAAC;gBACf,IAAI,GAAG,CAAC,CAAC;aACZ;;YAED,CAAC,GAAG,CAAC,CAAC;SACT;;QAED,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;QAClB,MAAM,IAAI,CAAC,CAAC;;KAEf,QAAQ,SAAS,GAAG,CAAC,EAAE;;IAExB,OAAO,IAAI,CAAC;CACf;;;AAGD,SAAS,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE;;IAEvC,CAAC,GAAG,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,OAAO,CAAC;IACjC,CAAC,GAAG,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,OAAO,CAAC;;IAEjC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;IAChC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;IAChC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;IAChC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;;IAEhC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;IAChC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;IAChC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;IAChC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;;IAEhC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;CACvB;;;AAGD,SAAS,WAAW,CAAC,KAAK,EAAE;IACxB,IAAI,CAAC,GAAG,KAAK;QACT,QAAQ,GAAG,KAAK,CAAC;IACrB,GAAG;QACC,IAAI,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,EAAE,QAAQ,GAAG,CAAC,CAAC;QAC/E,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,KAAK,EAAE;;IAEtB,OAAO,QAAQ,CAAC;CACnB;;;AAGD,SAAS,eAAe,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;IACrD,OAAO,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC;WAClD,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC;WAClD,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC;CAC7D;;;AAGD,SAAS,eAAe,CAAC,CAAC,EAAE,CAAC,EAAE;IAC3B,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,EAAE,CAAC,CAAC;YAC/D,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,YAAY,CAAC,CAAC,EAAE,CAAC,CAAC;aAC/D,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;YAC/C,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;CACvF;;;AAGD,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE;IACnB,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;CAChE;;;AAGD,SAAS,MAAM,CAAC,EAAE,EAAE,EAAE,EAAE;IACpB,OAAO,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;CACzC;;;AAGD,SAAS,UAAU,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;IAChC,IAAI,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;IAChC,IAAI,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;IAChC,IAAI,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;IAChC,IAAI,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;;IAEhC,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,OAAO,IAAI,CAAC;;IAExC,IAAI,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,OAAO,IAAI,CAAC;IACnD,IAAI,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,OAAO,IAAI,CAAC;IACnD,IAAI,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,OAAO,IAAI,CAAC;IACnD,IAAI,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,OAAO,IAAI,CAAC;;IAEnD,OAAO,KAAK,CAAC;CAChB;;;AAGD,SAAS,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE;IACxB,OAAO,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;CAC3H;;AAED,SAAS,IAAI,CAAC,GAAG,EAAE;IACf,OAAO,GAAG,GAAG,CAAC,GAAG,CAAC,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;CACzC;;;AAGD,SAAS,iBAAiB,CAAC,CAAC,EAAE,CAAC,EAAE;IAC7B,IAAI,CAAC,GAAG,CAAC,CAAC;IACV,GAAG;QACC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;gBAC9D,UAAU,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,OAAO,IAAI,CAAC;QACjD,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,CAAC,EAAE;;IAElB,OAAO,KAAK,CAAC;CAChB;;;AAGD,SAAS,aAAa,CAAC,CAAC,EAAE,CAAC,EAAE;IACzB,OAAO,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC;QAC9B,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC;QAClD,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC;CACxD;;;AAGD,SAAS,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE;IACxB,IAAI,CAAC,GAAG,CAAC;QACL,MAAM,GAAG,KAAK;QACd,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC;QACpB,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;IACzB,GAAG;QACC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;iBAC/C,EAAE,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;YACjE,MAAM,GAAG,CAAC,MAAM,CAAC;QACrB,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,CAAC,EAAE;;IAElB,OAAO,MAAM,CAAC;CACjB;;;;AAID,SAAS,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE;IACxB,IAAI,EAAE,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;QAC5B,EAAE,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;QAC5B,EAAE,GAAG,CAAC,CAAC,IAAI;QACX,EAAE,GAAG,CAAC,CAAC,IAAI,CAAC;;IAEhB,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC;IACX,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC;;IAEX,EAAE,CAAC,IAAI,GAAG,EAAE,CAAC;IACb,EAAE,CAAC,IAAI,GAAG,EAAE,CAAC;;IAEb,EAAE,CAAC,IAAI,GAAG,EAAE,CAAC;IACb,EAAE,CAAC,IAAI,GAAG,EAAE,CAAC;;IAEb,EAAE,CAAC,IAAI,GAAG,EAAE,CAAC;IACb,EAAE,CAAC,IAAI,GAAG,EAAE,CAAC;;IAEb,OAAO,EAAE,CAAC;CACb;;;AAGD,SAAS,UAAU,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE;IAC/B,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;IAE1B,IAAI,CAAC,IAAI,EAAE;QACP,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC;QACX,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC;;KAEd,MAAM;QACH,CAAC,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACnB,CAAC,CAAC,IAAI,GAAG,IAAI,CAAC;QACd,IAAI,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;QACnB,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;KACjB;IACD,OAAO,CAAC,CAAC;CACZ;;AAED,SAAS,UAAU,CAAC,CAAC,EAAE;IACnB,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC;IACrB,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC;;IAErB,IAAI,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC;IACrC,IAAI,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC;CACxC;;AAED,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE;;IAEnB,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;IAGX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;IAGX,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;IAGjB,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC;;;IAGd,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;IAGlB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;CACxB;;;;AAID,MAAM,CAAC,SAAS,GAAG,UAAU,IAAI,EAAE,WAAW,EAAE,GAAG,EAAE,SAAS,EAAE;IAC5D,IAAI,QAAQ,GAAG,WAAW,IAAI,WAAW,CAAC,MAAM,CAAC;IACjD,IAAI,QAAQ,GAAG,QAAQ,GAAG,WAAW,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC;;IAE7D,IAAI,WAAW,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC,EAAE,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC;IAC/D,IAAI,QAAQ,EAAE;QACV,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACpD,IAAI,KAAK,GAAG,WAAW,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;YACjC,IAAI,GAAG,GAAG,CAAC,GAAG,GAAG,GAAG,CAAC,GAAG,WAAW,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC;YAC/D,WAAW,IAAI,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC;SAC9D;KACJ;;IAED,IAAI,aAAa,GAAG,CAAC,CAAC;IACtB,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,EAAE;QACtC,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;QAC3B,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC;QAC/B,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC;QAC/B,aAAa,IAAI,IAAI,CAAC,GAAG;YACrB,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YACjD,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;KAC1D;;IAED,OAAO,WAAW,KAAK,CAAC,IAAI,aAAa,KAAK,CAAC,GAAG,CAAC;QAC/C,IAAI,CAAC,GAAG,CAAC,CAAC,aAAa,GAAG,WAAW,IAAI,WAAW,CAAC,CAAC;CAC7D,CAAC;;AAEF,SAAS,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE;IACvC,IAAI,GAAG,GAAG,CAAC,CAAC;IACZ,KAAK,IAAI,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,GAAG,GAAG,GAAG,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,IAAI,GAAG,EAAE;QAClD,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QACzD,CAAC,GAAG,CAAC,CAAC;KACT;IACD,OAAO,GAAG,CAAC;CACd;;;AAGD,MAAM,CAAC,OAAO,GAAG,UAAU,IAAI,EAAE;IAC7B,IAAI,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM;QACvB,MAAM,GAAG,CAAC,QAAQ,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,UAAU,EAAE,GAAG,CAAC;QACnD,SAAS,GAAG,CAAC,CAAC;;IAElB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QAClC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACrC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;SACrE;QACD,IAAI,CAAC,GAAG,CAAC,EAAE;YACP,SAAS,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC;YAChC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SAChC;KACJ;IACD,OAAO,MAAM,CAAC;CACjB,CAAC;;;ACnqBF;;;;AAIA,IAAI,MAAM,GAAG,UAAU,CAAC;;;AAGxB,IAAI,IAAI,GAAG,EAAE,CAAC;AACd,IAAI,IAAI,GAAG,CAAC,CAAC;AACb,IAAI,IAAI,GAAG,EAAE,CAAC;AACd,IAAI,IAAI,GAAG,EAAE,CAAC;AACd,IAAI,IAAI,GAAG,GAAG,CAAC;AACf,IAAI,WAAW,GAAG,EAAE,CAAC;AACrB,IAAI,QAAQ,GAAG,GAAG,CAAC;AACnB,IAAIG,WAAS,GAAG,GAAG,CAAC;AACpB,AAGA,IAAI,aAAa,GAAG,cAAc,CAAC;AACnC,IAAI,eAAe,GAAG,2BAA2B,CAAC;;;AAGlD,IAAI,MAAM,GAAG;EACX,UAAU,EAAE,iDAAiD;EAC7D,WAAW,EAAE,gDAAgD;EAC7D,eAAe,EAAE,eAAe;CACjC,CAAC;;;AAGF,IAAI,aAAa,GAAG,IAAI,GAAG,IAAI,CAAC;AAChC,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;AACvB,IAAI,kBAAkB,GAAG,MAAM,CAAC,YAAY,CAAC;;;;;;;;;;AAU7C,SAAS,KAAK,CAAC,IAAI,EAAE;EACnB,MAAM,IAAI,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;CACpC;;;;;;;;;;AAUD,SAAS,GAAG,CAAC,KAAK,EAAE,EAAE,EAAE;EACtB,IAAI,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;EAC1B,IAAI,MAAM,GAAG,EAAE,CAAC;EAChB,OAAO,MAAM,EAAE,EAAE;IACf,MAAM,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;GACpC;EACD,OAAO,MAAM,CAAC;CACf;;;;;;;;;;;;AAYD,SAAS,SAAS,CAAC,MAAM,EAAE,EAAE,EAAE;EAC7B,IAAI,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;EAC9B,IAAI,MAAM,GAAG,EAAE,CAAC;EAChB,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE;;;IAGpB,MAAM,GAAG,KAAK,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;IACxB,MAAM,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;GACnB;;EAED,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,eAAe,EAAE,MAAM,CAAC,CAAC;EACjD,IAAI,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;EAC/B,IAAI,OAAO,GAAG,GAAG,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;EACxC,OAAO,MAAM,GAAG,OAAO,CAAC;CACzB;;;;;;;;;;;;;;;AAeD,SAAS,UAAU,CAAC,MAAM,EAAE;EAC1B,IAAI,MAAM,GAAG,EAAE;IACb,OAAO,GAAG,CAAC;IACX,MAAM,GAAG,MAAM,CAAC,MAAM;IACtB,KAAK;IACL,KAAK,CAAC;EACR,OAAO,OAAO,GAAG,MAAM,EAAE;IACvB,KAAK,GAAG,MAAM,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC;IACrC,IAAI,KAAK,IAAI,MAAM,IAAI,KAAK,IAAI,MAAM,IAAI,OAAO,GAAG,MAAM,EAAE;;MAE1D,KAAK,GAAG,MAAM,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC;MACrC,IAAI,CAAC,KAAK,GAAG,MAAM,KAAK,MAAM,EAAE;QAC9B,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,GAAG,KAAK,KAAK,EAAE,KAAK,KAAK,GAAG,KAAK,CAAC,GAAG,OAAO,CAAC,CAAC;OAClE,MAAM;;;QAGL,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACnB,OAAO,EAAE,CAAC;OACX;KACF,MAAM;MACL,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KACpB;GACF;EACD,OAAO,MAAM,CAAC;CACf;AACD,AA2CA;;;;;;;;;;;;AAYA,SAAS,YAAY,CAAC,KAAK,EAAE,IAAI,EAAE;;;EAGjC,OAAO,KAAK,GAAG,EAAE,GAAG,EAAE,IAAI,KAAK,GAAG,EAAE,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;CAC5D;;;;;;;AAOD,SAAS,KAAK,CAAC,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE;EAC1C,IAAI,CAAC,GAAG,CAAC,CAAC;EACV,KAAK,GAAG,SAAS,GAAG,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC,GAAG,KAAK,IAAI,CAAC,CAAC;EACrD,KAAK,IAAI,KAAK,CAAC,KAAK,GAAG,SAAS,CAAC,CAAC;EAClC,gCAAgC,KAAK,GAAG,aAAa,GAAG,IAAI,IAAI,CAAC,EAAE,CAAC,IAAI,IAAI,EAAE;IAC5E,KAAK,GAAG,KAAK,CAAC,KAAK,GAAG,aAAa,CAAC,CAAC;GACtC;EACD,OAAO,KAAK,CAAC,CAAC,GAAG,CAAC,aAAa,GAAG,CAAC,IAAI,KAAK,IAAI,KAAK,GAAG,IAAI,CAAC,CAAC,CAAC;CAChE;AACD,AAqGA;;;;;;;;AAQA,AAAO,SAAS,MAAM,CAAC,KAAK,EAAE;EAC5B,IAAI,CAAC;IACH,KAAK;IACL,cAAc;IACd,WAAW;IACX,IAAI;IACJ,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,YAAY;IACZ,MAAM,GAAG,EAAE;;IAEX,WAAW;;IAEX,qBAAqB;IACrB,UAAU;IACV,OAAO,CAAC;;;EAGV,KAAK,GAAG,UAAU,CAAC,KAAK,CAAC,CAAC;;;EAG1B,WAAW,GAAG,KAAK,CAAC,MAAM,CAAC;;;EAG3B,CAAC,GAAG,QAAQ,CAAC;EACb,KAAK,GAAG,CAAC,CAAC;EACV,IAAI,GAAG,WAAW,CAAC;;;EAGnB,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,EAAE,CAAC,EAAE;IAChC,YAAY,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IACxB,IAAI,YAAY,GAAG,IAAI,EAAE;MACvB,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,YAAY,CAAC,CAAC,CAAC;KAC/C;GACF;;EAED,cAAc,GAAG,WAAW,GAAG,MAAM,CAAC,MAAM,CAAC;;;;;;EAM7C,IAAI,WAAW,EAAE;IACf,MAAM,CAAC,IAAI,CAACA,WAAS,CAAC,CAAC;GACxB;;;EAGD,OAAO,cAAc,GAAG,WAAW,EAAE;;;;IAInC,KAAK,CAAC,GAAG,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,EAAE,CAAC,EAAE;MAC5C,YAAY,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;MACxB,IAAI,YAAY,IAAI,CAAC,IAAI,YAAY,GAAG,CAAC,EAAE;QACzC,CAAC,GAAG,YAAY,CAAC;OAClB;KACF;;;;IAID,qBAAqB,GAAG,cAAc,GAAG,CAAC,CAAC;IAC3C,IAAI,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC,CAAC,MAAM,GAAG,KAAK,IAAI,qBAAqB,CAAC,EAAE;MAC3D,KAAK,CAAC,UAAU,CAAC,CAAC;KACnB;;IAED,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,qBAAqB,CAAC;IACzC,CAAC,GAAG,CAAC,CAAC;;IAEN,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,EAAE,CAAC,EAAE;MAChC,YAAY,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;;MAExB,IAAI,YAAY,GAAG,CAAC,IAAI,EAAE,KAAK,GAAG,MAAM,EAAE;QACxC,KAAK,CAAC,UAAU,CAAC,CAAC;OACnB;;MAED,IAAI,YAAY,IAAI,CAAC,EAAE;;QAErB,KAAK,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,IAAI,uBAAuB,CAAC,IAAI,IAAI,EAAE;UACxD,CAAC,GAAG,CAAC,IAAI,IAAI,GAAG,IAAI,IAAI,CAAC,IAAI,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;UAC5D,IAAI,CAAC,GAAG,CAAC,EAAE;YACT,MAAM;WACP;UACD,OAAO,GAAG,CAAC,GAAG,CAAC,CAAC;UAChB,UAAU,GAAG,IAAI,GAAG,CAAC,CAAC;UACtB,MAAM,CAAC,IAAI;YACT,kBAAkB,CAAC,YAAY,CAAC,CAAC,GAAG,OAAO,GAAG,UAAU,EAAE,CAAC,CAAC,CAAC;WAC9D,CAAC;UACF,CAAC,GAAG,KAAK,CAAC,OAAO,GAAG,UAAU,CAAC,CAAC;SACjC;;QAED,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QACpD,IAAI,GAAG,KAAK,CAAC,KAAK,EAAE,qBAAqB,EAAE,cAAc,IAAI,WAAW,CAAC,CAAC;QAC1E,KAAK,GAAG,CAAC,CAAC;QACV,EAAE,cAAc,CAAC;OAClB;KACF;;IAED,EAAE,KAAK,CAAC;IACR,EAAE,CAAC,CAAC;;GAEL;EACD,OAAO,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;CACxB;AACD,AAmBA;;;;;;;;;;;;AAYA,AAAO,SAAS,OAAO,CAAC,KAAK,EAAE;EAC7B,OAAO,SAAS,CAAC,KAAK,EAAE,SAAS,MAAM,EAAE;IACvC,OAAO,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC;MAC/B,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;MACvB,MAAM,CAAC;GACV,CAAC,CAAC;CACJ;;ACrcD;AACA,AAqcA;AACA,AAAO,SAAS,MAAM,CAAC,GAAG,EAAE;EAC1B,OAAO,GAAG,KAAK,IAAI,CAAC;CACrB;;AAED,AAAO,SAAS,iBAAiB,CAAC,GAAG,EAAE;EACrC,OAAO,GAAG,IAAI,IAAI,CAAC;CACpB;AACD,AAIA;AACA,AAAO,SAAS,QAAQ,CAAC,GAAG,EAAE;EAC5B,OAAO,OAAO,GAAG,KAAK,QAAQ,CAAC;CAChC;AACD,AAYA;AACA,AAAO,SAAS,QAAQ,CAAC,GAAG,EAAE;EAC5B,OAAO,OAAO,GAAG,KAAK,QAAQ,IAAI,GAAG,KAAK,IAAI,CAAC;CAChD;;ACreD;;;;;;;;;;;;;;;;;;;;;;;;;AAyBA,SAASC,gBAAc,CAAC,GAAG,EAAE,IAAI,EAAE;EACjC,OAAO,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;CACxD;AACD,IAAI,OAAO,GAAG,KAAK,CAAC,OAAO,IAAI,UAAU,EAAE,EAAE;EAC3C,OAAO,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,KAAK,gBAAgB,CAAC;CAChE,CAAC;AACF,SAAS,kBAAkB,CAAC,CAAC,EAAE;EAC7B,QAAQ,OAAO,CAAC;IACd,KAAK,QAAQ;MACX,OAAO,CAAC,CAAC;;IAEX,KAAK,SAAS;MACZ,OAAO,CAAC,GAAG,MAAM,GAAG,OAAO,CAAC;;IAE9B,KAAK,QAAQ;MACX,OAAO,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC;;IAE9B;MACE,OAAO,EAAE,CAAC;GACb;CACF;;AAED,AAAO,SAAS,SAAS,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE;EAC7C,GAAG,GAAG,GAAG,IAAI,GAAG,CAAC;EACjB,EAAE,GAAG,EAAE,IAAI,GAAG,CAAC;EACf,IAAI,GAAG,KAAK,IAAI,EAAE;IAChB,GAAG,GAAG,SAAS,CAAC;GACjB;;EAED,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;IAC3B,OAAOC,KAAG,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,SAAS,CAAC,EAAE;MACtC,IAAI,EAAE,GAAG,kBAAkB,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC;MACxD,IAAI,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE;QACnB,OAAOA,KAAG,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,EAAE;UAC7B,OAAO,EAAE,GAAG,kBAAkB,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC;SACvD,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;OACd,MAAM;QACL,OAAO,EAAE,GAAG,kBAAkB,CAAC,kBAAkB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;OAC5D;KACF,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;GAEd;;EAED,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,CAAC;EACrB,OAAO,kBAAkB,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE;SACjD,kBAAkB,CAAC,kBAAkB,CAAC,GAAG,CAAC,CAAC,CAAC;CACpD,AACD;AACA,SAASA,KAAG,EAAE,EAAE,EAAE,CAAC,EAAE;EACnB,IAAI,EAAE,CAAC,GAAG,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;EAC7B,IAAI,GAAG,GAAG,EAAE,CAAC;EACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;IAClC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;GACvB;EACD,OAAO,GAAG,CAAC;CACZ;;AAED,IAAI,UAAU,GAAG,MAAM,CAAC,IAAI,IAAI,UAAU,GAAG,EAAE;EAC7C,IAAI,GAAG,GAAG,EAAE,CAAC;EACb,KAAK,IAAI,GAAG,IAAI,GAAG,EAAE;IACnB,IAAI,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;GACnE;EACD,OAAO,GAAG,CAAC;CACZ,CAAC;;AAEF,AAAO,SAAS,KAAK,CAAC,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE;EAC1C,GAAG,GAAG,GAAG,IAAI,GAAG,CAAC;EACjB,EAAE,GAAG,EAAE,IAAI,GAAG,CAAC;EACf,IAAI,GAAG,GAAG,EAAE,CAAC;;EAEb,IAAI,OAAO,EAAE,KAAK,QAAQ,IAAI,EAAE,CAAC,MAAM,KAAK,CAAC,EAAE;IAC7C,OAAO,GAAG,CAAC;GACZ;;EAED,IAAI,MAAM,GAAG,KAAK,CAAC;EACnB,EAAE,GAAG,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;;EAEnB,IAAI,OAAO,GAAG,IAAI,CAAC;EACnB,IAAI,OAAO,IAAI,OAAO,OAAO,CAAC,OAAO,KAAK,QAAQ,EAAE;IAClD,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;GAC3B;;EAED,IAAI,GAAG,GAAG,EAAE,CAAC,MAAM,CAAC;;EAEpB,IAAI,OAAO,GAAG,CAAC,IAAI,GAAG,GAAG,OAAO,EAAE;IAChC,GAAG,GAAG,OAAO,CAAC;GACf;;EAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE;IAC5B,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC;QAChC,GAAG,GAAG,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC;QACnB,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC;;IAErB,IAAI,GAAG,IAAI,CAAC,EAAE;MACZ,IAAI,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;MACxB,IAAI,GAAG,CAAC,CAAC,MAAM,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;KAC1B,MAAM;MACL,IAAI,GAAG,CAAC,CAAC;MACT,IAAI,GAAG,EAAE,CAAC;KACX;;IAED,CAAC,GAAG,kBAAkB,CAAC,IAAI,CAAC,CAAC;IAC7B,CAAC,GAAG,kBAAkB,CAAC,IAAI,CAAC,CAAC;;IAE7B,IAAI,CAACD,gBAAc,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE;MAC3B,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;KACZ,MAAM,IAAI,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE;MAC1B,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;KAChB,MAAM;MACL,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;KACtB;GACF;;EAED,OAAO,GAAG,CAAC;CACZ;;AC3ID;AACA,AA8BA,UAAe;EACb,KAAK,EAAE,QAAQ;EACf,OAAO,EAAE,UAAU;EACnB,aAAa,EAAE,gBAAgB;EAC/B,MAAM,EAAE,SAAS;EACjB,GAAG,EAAE,GAAG;EACT;AACD,AAAO,SAAS,GAAG,GAAG;EACpB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;EACrB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;EACpB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;EACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;EACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;EACjB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;EACrB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;EACjB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;EACnB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;EAClB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;EACrB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;EACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CAClB;;;;;;AAMD,IAAI,eAAe,GAAG,mBAAmB;EACvC,WAAW,GAAG,UAAU;;;EAGxB,iBAAiB,GAAG,oCAAoC;;;;EAIxD,MAAM,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC;;;EAGpD,MAAM,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC;;;EAGvD,UAAU,GAAG,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC;;;;;EAKlC,YAAY,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC;EAC3D,eAAe,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC;EACjC,cAAc,GAAG,GAAG;EACpB,mBAAmB,GAAG,wBAAwB;EAC9C,iBAAiB,GAAG,8BAA8B;;EAElD,cAAc,GAAG;IACf,YAAY,EAAE,IAAI;IAClB,aAAa,EAAE,IAAI;GACpB;;EAED,gBAAgB,GAAG;IACjB,YAAY,EAAE,IAAI;IAClB,aAAa,EAAE,IAAI;GACpB;;EAED,eAAe,GAAG;IAChB,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,IAAI;IACb,KAAK,EAAE,IAAI;IACX,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,IAAI;IACb,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,SAAS,EAAE,IAAI;IACf,OAAO,EAAE,IAAI;GACd,CAAC;;AAEJ,SAAS,QAAQ,CAAC,GAAG,EAAE,gBAAgB,EAAE,iBAAiB,EAAE;EAC1D,IAAI,GAAG,IAAI,QAAQ,CAAC,GAAG,CAAC,IAAI,GAAG,YAAY,GAAG,EAAE,OAAO,GAAG,CAAC;;EAE3D,IAAI,CAAC,GAAG,IAAI,GAAG,CAAC;EAChB,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,gBAAgB,EAAE,iBAAiB,CAAC,CAAC;EAClD,OAAO,CAAC,CAAC;CACV;AACD,GAAG,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,GAAG,EAAE,gBAAgB,EAAE,iBAAiB,EAAE;EACvE,OAAOE,OAAK,CAAC,IAAI,EAAE,GAAG,EAAE,gBAAgB,EAAE,iBAAiB,CAAC,CAAC;EAC9D;;AAED,SAASA,OAAK,CAAC,IAAI,EAAE,GAAG,EAAE,gBAAgB,EAAE,iBAAiB,EAAE;EAC7D,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;IAClB,MAAM,IAAI,SAAS,CAAC,0CAA0C,GAAG,OAAO,GAAG,CAAC,CAAC;GAC9E;;;;;EAKD,IAAI,UAAU,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC;IAC/B,QAAQ;IACR,CAAC,UAAU,KAAK,CAAC,CAAC,IAAI,UAAU,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,GAAG,GAAG,GAAG;IAChE,MAAM,GAAG,GAAG,CAAC,KAAK,CAAC,QAAQ,CAAC;IAC5B,UAAU,GAAG,KAAK,CAAC;EACrB,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC;EAC/C,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;;EAE5B,IAAI,IAAI,GAAG,GAAG,CAAC;;;;EAIf,IAAI,GAAG,IAAI,CAAC,IAAI,EAAE,CAAC;;EAEnB,IAAI,CAAC,iBAAiB,IAAI,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,KAAK,CAAC,EAAE;;IAErD,IAAI,UAAU,GAAG,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAC9C,IAAI,UAAU,EAAE;MACd,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;MACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;MACjB,IAAI,CAAC,QAAQ,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;MAC9B,IAAI,UAAU,CAAC,CAAC,CAAC,EAAE;QACjB,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;QAC5B,IAAI,gBAAgB,EAAE;UACpB,IAAI,CAAC,KAAK,GAAGC,KAAO,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;SAC7C,MAAM;UACL,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;SACpC;OACF,MAAM,IAAI,gBAAgB,EAAE;QAC3B,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC;QACjB,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;OACjB;MACD,OAAO,IAAI,CAAC;KACb;GACF;;EAED,IAAI,KAAK,GAAG,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;EACvC,IAAI,KAAK,EAAE;IACT,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IACjB,IAAI,UAAU,GAAG,KAAK,CAAC,WAAW,EAAE,CAAC;IACrC,IAAI,CAAC,QAAQ,GAAG,UAAU,CAAC;IAC3B,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;GAClC;;;;;;EAMD,IAAI,iBAAiB,IAAI,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,sBAAsB,CAAC,EAAE;IACpE,IAAI,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,IAAI,CAAC;IACzC,IAAI,OAAO,IAAI,EAAE,KAAK,IAAI,gBAAgB,CAAC,KAAK,CAAC,CAAC,EAAE;MAClD,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;MACtB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;KACrB;GACF;EACD,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,CAAC;EACjB,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC;KACzB,OAAO,KAAK,KAAK,IAAI,CAAC,eAAe,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE;;;;;;;;;;;;;;;;;;IAkBjD,IAAI,OAAO,GAAG,CAAC,CAAC,CAAC;IACjB,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,eAAe,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;MAC3C,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC;MACvC,IAAI,GAAG,KAAK,CAAC,CAAC,KAAK,OAAO,KAAK,CAAC,CAAC,IAAI,GAAG,GAAG,OAAO,CAAC;QACjD,OAAO,GAAG,GAAG,CAAC;KACjB;;;;IAID,IAAI,IAAI,EAAE,MAAM,CAAC;IACjB,IAAI,OAAO,KAAK,CAAC,CAAC,EAAE;;MAElB,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;KAChC,MAAM;;;MAGL,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;KACzC;;;;IAID,IAAI,MAAM,KAAK,CAAC,CAAC,EAAE;MACjB,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;MAC7B,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;MAC9B,IAAI,CAAC,IAAI,GAAG,kBAAkB,CAAC,IAAI,CAAC,CAAC;KACtC;;;IAGD,OAAO,GAAG,CAAC,CAAC,CAAC;IACb,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,YAAY,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;MACxC,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC;MACpC,IAAI,GAAG,KAAK,CAAC,CAAC,KAAK,OAAO,KAAK,CAAC,CAAC,IAAI,GAAG,GAAG,OAAO,CAAC;QACjD,OAAO,GAAG,GAAG,CAAC;KACjB;;IAED,IAAI,OAAO,KAAK,CAAC,CAAC;MAChB,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC;;IAExB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC;IACnC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;;;IAG3B,SAAS,CAAC,IAAI,CAAC,CAAC;;;;IAIhB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,IAAI,EAAE,CAAC;;;;IAIpC,IAAI,YAAY,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,GAAG;MACzC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,GAAG,CAAC;;;IAGlD,IAAI,CAAC,YAAY,EAAE;MACjB,IAAI,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;MAC1C,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;QAC5C,IAAI,IAAI,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;QACxB,IAAI,CAAC,IAAI,EAAE,SAAS;QACpB,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,EAAE;UACpC,IAAI,OAAO,GAAG,EAAE,CAAC;UACjB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;YAC3C,IAAI,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,GAAG,EAAE;;;;cAI5B,OAAO,IAAI,GAAG,CAAC;aAChB,MAAM;cACL,OAAO,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC;aACpB;WACF;;UAED,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,mBAAmB,CAAC,EAAE;YACvC,IAAI,UAAU,GAAG,SAAS,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;YACvC,IAAI,OAAO,GAAG,SAAS,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YACrC,IAAI,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC;YACxC,IAAI,GAAG,EAAE;cACP,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;cACxB,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;aACzB;YACD,IAAI,OAAO,CAAC,MAAM,EAAE;cAClB,IAAI,GAAG,GAAG,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;aACvC;YACD,IAAI,CAAC,QAAQ,GAAG,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YACrC,MAAM;WACP;SACF;OACF;KACF;;IAED,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,cAAc,EAAE;MACzC,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;KACpB,MAAM;;MAEL,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,EAAE,CAAC;KAC7C;;IAED,IAAI,CAAC,YAAY,EAAE;;;;;MAKjB,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;KACxC;;IAED,CAAC,GAAG,IAAI,CAAC,IAAI,GAAG,GAAG,GAAG,IAAI,CAAC,IAAI,GAAG,EAAE,CAAC;IACrC,IAAI,CAAC,GAAG,IAAI,CAAC,QAAQ,IAAI,EAAE,CAAC;IAC5B,IAAI,CAAC,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC;IAClB,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,CAAC;;;;IAIvB,IAAI,YAAY,EAAE;MAChB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;MAClE,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;QACnB,IAAI,GAAG,GAAG,GAAG,IAAI,CAAC;OACnB;KACF;GACF;;;;EAID,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,EAAE;;;;;IAK/B,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;MAC7C,IAAI,EAAE,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;MACvB,IAAI,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;QACzB,SAAS;MACX,IAAI,GAAG,GAAG,kBAAkB,CAAC,EAAE,CAAC,CAAC;MACjC,IAAI,GAAG,KAAK,EAAE,EAAE;QACd,GAAG,GAAG,MAAM,CAAC,EAAE,CAAC,CAAC;OAClB;MACD,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KACjC;GACF;;;;EAID,IAAI,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;EAC7B,IAAI,IAAI,KAAK,CAAC,CAAC,EAAE;;IAEf,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IAC9B,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;GAC5B;EACD,IAAI,EAAE,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;EAC3B,IAAI,EAAE,KAAK,CAAC,CAAC,EAAE;IACb,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IAC9B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC;IACjC,IAAI,gBAAgB,EAAE;MACpB,IAAI,CAAC,KAAK,GAAGA,KAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAClC;IACD,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;GAC1B,MAAM,IAAI,gBAAgB,EAAE;;IAE3B,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC;IACjB,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;GACjB;EACD,IAAI,IAAI,EAAE,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;EAC/B,IAAI,eAAe,CAAC,UAAU,CAAC;IAC7B,IAAI,CAAC,QAAQ,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE;IACjC,IAAI,CAAC,QAAQ,GAAG,GAAG,CAAC;GACrB;;;EAGD,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,MAAM,EAAE;IAChC,CAAC,GAAG,IAAI,CAAC,QAAQ,IAAI,EAAE,CAAC;IACxB,IAAI,CAAC,GAAG,IAAI,CAAC,MAAM,IAAI,EAAE,CAAC;IAC1B,IAAI,CAAC,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC;GACnB;;;EAGD,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC;EACzB,OAAO,IAAI,CAAC;CACb;;;AAGD,SAAS,SAAS,CAAC,GAAG,EAAE;;;;;EAKtB,IAAI,QAAQ,CAAC,GAAG,CAAC,EAAE,GAAG,GAAGD,OAAK,CAAC,EAAE,EAAE,GAAG,CAAC,CAAC;EACxC,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;CACpB;;AAED,SAAS,MAAM,CAAC,IAAI,EAAE;EACpB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,IAAI,EAAE,CAAC;EAC3B,IAAI,IAAI,EAAE;IACR,IAAI,GAAG,kBAAkB,CAAC,IAAI,CAAC,CAAC;IAChC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACjC,IAAI,IAAI,GAAG,CAAC;GACb;;EAED,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,IAAI,EAAE;IAChC,QAAQ,GAAG,IAAI,CAAC,QAAQ,IAAI,EAAE;IAC9B,IAAI,GAAG,IAAI,CAAC,IAAI,IAAI,EAAE;IACtB,IAAI,GAAG,KAAK;IACZ,KAAK,GAAG,EAAE,CAAC;;EAEb,IAAI,IAAI,CAAC,IAAI,EAAE;IACb,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;GACzB,MAAM,IAAI,IAAI,CAAC,QAAQ,EAAE;IACxB,IAAI,GAAG,IAAI,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;MAC9C,IAAI,CAAC,QAAQ;MACb,GAAG,GAAG,IAAI,CAAC,QAAQ,GAAG,GAAG,CAAC,CAAC;IAC7B,IAAI,IAAI,CAAC,IAAI,EAAE;MACb,IAAI,IAAI,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC;KACzB;GACF;;EAED,IAAI,IAAI,CAAC,KAAK;IACZ,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;IACpB,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,MAAM,EAAE;IAChC,KAAK,GAAGE,SAAW,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;GACjC;;EAED,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,KAAK,KAAK,KAAK,GAAG,GAAG,KAAK,CAAC,CAAC,IAAI,EAAE,CAAC;;EAE3D,IAAI,QAAQ,IAAI,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE,QAAQ,IAAI,GAAG,CAAC;;;;EAI7D,IAAI,IAAI,CAAC,OAAO;IACd,CAAC,CAAC,QAAQ,IAAI,eAAe,CAAC,QAAQ,CAAC,KAAK,IAAI,KAAK,KAAK,EAAE;IAC5D,IAAI,GAAG,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC,CAAC;IAC3B,IAAI,QAAQ,IAAI,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE,QAAQ,GAAG,GAAG,GAAG,QAAQ,CAAC;GACvE,MAAM,IAAI,CAAC,IAAI,EAAE;IAChB,IAAI,GAAG,EAAE,CAAC;GACX;;EAED,IAAI,IAAI,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE,IAAI,GAAG,GAAG,GAAG,IAAI,CAAC;EACtD,IAAI,MAAM,IAAI,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE,MAAM,GAAG,GAAG,GAAG,MAAM,CAAC;;EAE9D,QAAQ,GAAG,QAAQ,CAAC,OAAO,CAAC,OAAO,EAAE,SAAS,KAAK,EAAE;IACnD,OAAO,kBAAkB,CAAC,KAAK,CAAC,CAAC;GAClC,CAAC,CAAC;EACH,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;;EAEpC,OAAO,QAAQ,GAAG,IAAI,GAAG,QAAQ,GAAG,MAAM,GAAG,IAAI,CAAC;CACnD;;AAED,GAAG,CAAC,SAAS,CAAC,MAAM,GAAG,WAAW;EAChC,OAAO,MAAM,CAAC,IAAI,CAAC,CAAC;EACrB;;AAED,SAAS,UAAU,CAAC,MAAM,EAAE,QAAQ,EAAE;EACpC,OAAO,QAAQ,CAAC,MAAM,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;CACxD;;AAED,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,QAAQ,EAAE;EACzC,OAAO,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,QAAQ,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CACrE,CAAC;;AAEF,SAAS,gBAAgB,CAAC,MAAM,EAAE,QAAQ,EAAE;EAC1C,IAAI,CAAC,MAAM,EAAE,OAAO,QAAQ,CAAC;EAC7B,OAAO,QAAQ,CAAC,MAAM,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;CAC9D;;AAED,GAAG,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,QAAQ,EAAE;EAC/C,IAAI,QAAQ,CAAC,QAAQ,CAAC,EAAE;IACtB,IAAI,GAAG,GAAG,IAAI,GAAG,EAAE,CAAC;IACpB,GAAG,CAAC,KAAK,CAAC,QAAQ,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;IACjC,QAAQ,GAAG,GAAG,CAAC;GAChB;;EAED,IAAI,MAAM,GAAG,IAAI,GAAG,EAAE,CAAC;EACvB,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;EAC9B,KAAK,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,GAAG,KAAK,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE;IACxC,IAAI,IAAI,GAAG,KAAK,CAAC,EAAE,CAAC,CAAC;IACrB,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC;GAC3B;;;;EAID,MAAM,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;;;EAG5B,IAAI,QAAQ,CAAC,IAAI,KAAK,EAAE,EAAE;IACxB,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;IAC9B,OAAO,MAAM,CAAC;GACf;;;EAGD,IAAI,QAAQ,CAAC,OAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE;;IAE1C,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;IAClC,KAAK,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,GAAG,KAAK,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE;MACxC,IAAI,IAAI,GAAG,KAAK,CAAC,EAAE,CAAC,CAAC;MACrB,IAAI,IAAI,KAAK,UAAU;QACrB,MAAM,CAAC,IAAI,CAAC,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC;KACjC;;;IAGD,IAAI,eAAe,CAAC,MAAM,CAAC,QAAQ,CAAC;MAClC,MAAM,CAAC,QAAQ,IAAI,CAAC,MAAM,CAAC,QAAQ,EAAE;MACrC,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,QAAQ,GAAG,GAAG,CAAC;KACrC;;IAED,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;IAC9B,OAAO,MAAM,CAAC;GACf;EACD,IAAI,OAAO,CAAC;EACZ,IAAI,QAAQ,CAAC,QAAQ,IAAI,QAAQ,CAAC,QAAQ,KAAK,MAAM,CAAC,QAAQ,EAAE;;;;;;;;;IAS9D,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;MACvC,IAAI,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;MACjC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QACpC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;QAChB,MAAM,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;OACzB;MACD,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;MAC9B,OAAO,MAAM,CAAC;KACf;;IAED,MAAM,CAAC,QAAQ,GAAG,QAAQ,CAAC,QAAQ,CAAC;IACpC,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,gBAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;MAC1D,OAAO,GAAG,CAAC,QAAQ,CAAC,QAAQ,IAAI,EAAE,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;MAC/C,OAAO,OAAO,CAAC,MAAM,IAAI,EAAE,QAAQ,CAAC,IAAI,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;MAC7D,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC,IAAI,GAAG,EAAE,CAAC;MACvC,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,QAAQ,CAAC,QAAQ,GAAG,EAAE,CAAC;MAC/C,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;MAC3C,IAAI,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;MAC5C,MAAM,CAAC,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KACrC,MAAM;MACL,MAAM,CAAC,QAAQ,GAAG,QAAQ,CAAC,QAAQ,CAAC;KACrC;IACD,MAAM,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;IAChC,MAAM,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;IAC9B,MAAM,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,IAAI,EAAE,CAAC;IAClC,MAAM,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;IAC5B,MAAM,CAAC,QAAQ,GAAG,QAAQ,CAAC,QAAQ,IAAI,QAAQ,CAAC,IAAI,CAAC;IACrD,MAAM,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;;IAE5B,IAAI,MAAM,CAAC,QAAQ,IAAI,MAAM,CAAC,MAAM,EAAE;MACpC,IAAI,CAAC,GAAG,MAAM,CAAC,QAAQ,IAAI,EAAE,CAAC;MAC9B,IAAI,CAAC,GAAG,MAAM,CAAC,MAAM,IAAI,EAAE,CAAC;MAC5B,MAAM,CAAC,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC;KACrB;IACD,MAAM,CAAC,OAAO,GAAG,MAAM,CAAC,OAAO,IAAI,QAAQ,CAAC,OAAO,CAAC;IACpD,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;IAC9B,OAAO,MAAM,CAAC;GACf;;EAED,IAAI,WAAW,IAAI,MAAM,CAAC,QAAQ,IAAI,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC;IACtE,QAAQ;MACN,QAAQ,CAAC,IAAI;MACb,QAAQ,CAAC,QAAQ,IAAI,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG;KACzD;IACD,UAAU,IAAI,QAAQ,IAAI,WAAW;OAClC,MAAM,CAAC,IAAI,IAAI,QAAQ,CAAC,QAAQ,CAAC,CAAC;IACrC,aAAa,GAAG,UAAU;IAC1B,OAAO,GAAG,MAAM,CAAC,QAAQ,IAAI,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,EAAE;IAC7D,SAAS,GAAG,MAAM,CAAC,QAAQ,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;EACnE,OAAO,GAAG,QAAQ,CAAC,QAAQ,IAAI,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;;;;;;EAMlE,IAAI,SAAS,EAAE;IACb,MAAM,CAAC,QAAQ,GAAG,EAAE,CAAC;IACrB,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;IACnB,IAAI,MAAM,CAAC,IAAI,EAAE;MACf,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,IAAI,CAAC;WAC3C,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;KACnC;IACD,MAAM,CAAC,IAAI,GAAG,EAAE,CAAC;IACjB,IAAI,QAAQ,CAAC,QAAQ,EAAE;MACrB,QAAQ,CAAC,QAAQ,GAAG,IAAI,CAAC;MACzB,QAAQ,CAAC,IAAI,GAAG,IAAI,CAAC;MACrB,IAAI,QAAQ,CAAC,IAAI,EAAE;QACjB,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,IAAI,CAAC;aAC7C,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;OACrC;MACD,QAAQ,CAAC,IAAI,GAAG,IAAI,CAAC;KACtB;IACD,UAAU,GAAG,UAAU,KAAK,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC;GACrE;EACD,IAAI,UAAU,CAAC;EACf,IAAI,QAAQ,EAAE;;IAEZ,MAAM,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC,IAAI,KAAK,EAAE;MAClD,QAAQ,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;IAC9B,MAAM,CAAC,QAAQ,GAAG,CAAC,QAAQ,CAAC,QAAQ,IAAI,QAAQ,CAAC,QAAQ,KAAK,EAAE;MAC9D,QAAQ,CAAC,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC;IACtC,MAAM,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;IAChC,MAAM,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;IAC9B,OAAO,GAAG,OAAO,CAAC;;GAEnB,MAAM,IAAI,OAAO,CAAC,MAAM,EAAE;;;IAGzB,IAAI,CAAC,OAAO,EAAE,OAAO,GAAG,EAAE,CAAC;IAC3B,OAAO,CAAC,GAAG,EAAE,CAAC;IACd,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAClC,MAAM,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;IAChC,MAAM,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;GAC/B,MAAM,IAAI,CAAC,iBAAiB,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;;;;IAI9C,IAAI,SAAS,EAAE;MACb,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC,IAAI,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC;;;;MAIhD,UAAU,GAAG,MAAM,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC;QACtD,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;MACjC,IAAI,UAAU,EAAE;QACd,MAAM,CAAC,IAAI,GAAG,UAAU,CAAC,KAAK,EAAE,CAAC;QACjC,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,QAAQ,GAAG,UAAU,CAAC,KAAK,EAAE,CAAC;OACpD;KACF;IACD,MAAM,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;IAChC,MAAM,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;;IAE9B,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE;MACtD,MAAM,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC,QAAQ,GAAG,EAAE;SAClD,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;KACxC;IACD,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;IAC9B,OAAO,MAAM,CAAC;GACf;;EAED,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE;;;IAGnB,MAAM,CAAC,QAAQ,GAAG,IAAI,CAAC;;IAEvB,IAAI,MAAM,CAAC,MAAM,EAAE;MACjB,MAAM,CAAC,IAAI,GAAG,GAAG,GAAG,MAAM,CAAC,MAAM,CAAC;KACnC,MAAM;MACL,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;KACpB;IACD,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;IAC9B,OAAO,MAAM,CAAC;GACf;;;;;EAKD,IAAI,IAAI,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;EAChC,IAAI,gBAAgB;IAClB,CAAC,MAAM,CAAC,IAAI,IAAI,QAAQ,CAAC,IAAI,IAAI,OAAO,CAAC,MAAM,GAAG,CAAC;KAClD,IAAI,KAAK,GAAG,IAAI,IAAI,KAAK,IAAI,CAAC,IAAI,IAAI,KAAK,EAAE,CAAC,CAAC;;;;EAIlD,IAAI,EAAE,GAAG,CAAC,CAAC;EACX,KAAK,IAAI,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE;IACxC,IAAI,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;IAClB,IAAI,IAAI,KAAK,GAAG,EAAE;MAChB,OAAO,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;KACtB,MAAM,IAAI,IAAI,KAAK,IAAI,EAAE;MACxB,OAAO,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;MACrB,EAAE,EAAE,CAAC;KACN,MAAM,IAAI,EAAE,EAAE;MACb,OAAO,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;MACrB,EAAE,EAAE,CAAC;KACN;GACF;;;EAGD,IAAI,CAAC,UAAU,IAAI,CAAC,aAAa,EAAE;IACjC,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE;MACf,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;KACvB;GACF;;EAED,IAAI,UAAU,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE;KAChC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC,EAAE;IAC/C,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;GACrB;;EAED,IAAI,gBAAgB,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC,EAAE;IAC9D,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;GAClB;;EAED,IAAI,UAAU,GAAG,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE;KAC/B,OAAO,CAAC,CAAC,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC;;;EAG/C,IAAI,SAAS,EAAE;IACb,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC,IAAI,GAAG,UAAU,GAAG,EAAE;MAC7C,OAAO,CAAC,MAAM,GAAG,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,CAAC;;;;IAIxC,UAAU,GAAG,MAAM,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC;MACtD,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;IACjC,IAAI,UAAU,EAAE;MACd,MAAM,CAAC,IAAI,GAAG,UAAU,CAAC,KAAK,EAAE,CAAC;MACjC,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,QAAQ,GAAG,UAAU,CAAC,KAAK,EAAE,CAAC;KACpD;GACF;;EAED,UAAU,GAAG,UAAU,KAAK,MAAM,CAAC,IAAI,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC;;EAE3D,IAAI,UAAU,IAAI,CAAC,UAAU,EAAE;IAC7B,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;GACrB;;EAED,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE;IACnB,MAAM,CAAC,QAAQ,GAAG,IAAI,CAAC;IACvB,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;GACpB,MAAM;IACL,MAAM,CAAC,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;GACrC;;;EAGD,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE;IACtD,MAAM,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC,QAAQ,GAAG,EAAE;OAClD,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;GACxC;EACD,MAAM,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC;EAC3C,MAAM,CAAC,OAAO,GAAG,MAAM,CAAC,OAAO,IAAI,QAAQ,CAAC,OAAO,CAAC;EACpD,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;EAC9B,OAAO,MAAM,CAAC;CACf,CAAC;;AAEF,GAAG,CAAC,SAAS,CAAC,SAAS,GAAG,WAAW;EACnC,OAAO,SAAS,CAAC,IAAI,CAAC,CAAC;CACxB,CAAC;;AAEF,SAAS,SAAS,CAAC,IAAI,EAAE;EACvB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;EACrB,IAAI,IAAI,GAAG,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;EAClC,IAAI,IAAI,EAAE;IACR,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;IACf,IAAI,IAAI,KAAK,GAAG,EAAE;MAChB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;KAC5B;IACD,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;GAClD;EACD,IAAI,IAAI,EAAE,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;CAChC;;ACxuBD;;;;;;;;;;;;;;;;;;;AAmBA,IAAI,GAAG,GAAG;IACN,YAAY,EAAE,CAAC;IACf,KAAK,EAAE,CAAC;IACR,MAAM,EAAE,CAAC;CACZ,CAAC;;;;;;;;;;;;;AAaF,IAAI,aAAa,GAAG;IAChB,OAAO,KAAK,CAAC;IACb,KAAK,OAAO,CAAC;IACb,MAAM,MAAM,CAAC;CAChB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2CF,IAAI,WAAW,GAAG;IACd,MAAM,UAAU,CAAC;IACjB,GAAG,aAAa,CAAC;IACjB,QAAQ,QAAQ,CAAC;IACjB,MAAM,UAAU,CAAC;IACjB,OAAO,SAAS,CAAC;IACjB,MAAM,UAAU,CAAC;IACjB,OAAO,SAAS,CAAC;IACjB,WAAW,KAAK,CAAC;IACjB,UAAU,MAAM,CAAC;IACjB,UAAU,MAAM,CAAC;IACjB,UAAU,MAAM,EAAE;IAClB,UAAU,MAAM,EAAE;IAClB,SAAS,OAAO,EAAE;IAClB,GAAG,aAAa,EAAE;IAClB,UAAU,MAAM,EAAE;IAClB,KAAK,WAAW,EAAE;IAClB,UAAU,MAAM,EAAE;IAClB,UAAU,MAAM,EAAE;IAClB,OAAO,SAAS,EAAE;IAClB,UAAU,MAAM,EAAE;IAClB,IAAI,YAAY,EAAE;;IAElB,QAAQ,QAAQ,CAAC;IACjB,MAAM,UAAU,EAAE;IAClB,OAAO,SAAS,EAAE;IAClB,QAAQ,QAAQ,EAAE;IAClB,QAAQ,QAAQ,EAAE;IAClB,MAAM,UAAU,EAAE;IAClB,OAAO,SAAS,EAAE;IAClB,QAAQ,QAAQ,EAAE;IAClB,KAAK,WAAW,EAAE;IAClB,QAAQ,QAAQ,EAAE;CACrB,CAAC;;;;;;;;;;;;;;;;;;AAkBF,IAAI,UAAU,GAAG;IACb,MAAM,UAAU,CAAC;IACjB,KAAK,WAAW,CAAC;IACjB,SAAS,OAAO,CAAC;IACjB,UAAU,MAAM,CAAC;IACjB,SAAS,OAAO,CAAC;IACjB,cAAc,EAAE,CAAC;IACjB,YAAY,IAAI,CAAC;CACpB,CAAC;;;;;;;;;;;;;;;;;AAiBF,IAAI,OAAO,GAAG;IACV,IAAI,cAAc,IAAI;IACtB,GAAG,eAAe,IAAI;IACtB,KAAK,aAAa,IAAI;IACtB,SAAS,SAAS,IAAI;IACtB,eAAe,GAAG,IAAI;IACtB,eAAe,GAAG,IAAI;IACtB,aAAa,KAAK,KAAK;CAC1B,CAAC;;;;;;;;;;;;;;;;;;;AAmBF,IAAI,OAAO,GAAG;IACV,UAAU,EAAE,IAAI;IAChB,gBAAgB,EAAE,KAAK;IACvB,gBAAgB,EAAE,KAAK;IACvB,2BAA2B,EAAE,KAAK;IAClC,2BAA2B,EAAE,KAAK;IAClC,2BAA2B,EAAE,KAAK;IAClC,2BAA2B,EAAE,KAAK;IAClC,2BAA2B,EAAE,KAAK;IAClC,2BAA2B,EAAE,KAAK;CACrC,CAAC;;;;;;;;;;;;;;;;;AAiBF,IAAI,KAAK,GAAG;IACR,aAAa,EAAE,IAAI;IACnB,cAAc,EAAE,IAAI;IACpB,oBAAoB,EAAE,KAAK;IAC3B,sBAAsB,EAAE,KAAK;IAC7B,sBAAsB,EAAE,KAAK;IAC7B,KAAK,EAAE,IAAI;IACX,UAAU,EAAE,KAAK;CACpB,CAAC;;;;;;;;;;;;;;;AAeF,IAAI,WAAW,GAAG;IACd,MAAM,MAAM,CAAC;IACb,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;;;;;;;;;;;;;;AAoBF,IAAI,UAAU,GAAG;IACb,KAAK,YAAY,KAAK;IACtB,MAAM,WAAW,KAAK;IACtB,eAAe,EAAE,KAAK;CACzB,CAAC;;;;;;;;;;;;;;;;;;;;AAoBF,IAAI,YAAY,GAAG;IACf,GAAG,EAAE,CAAC;IACN,IAAI,EAAE,CAAC;IACP,EAAE,EAAE,CAAC;CACR,CAAC;;;;;;;;;;;;;;;;;;;;;AAqBF,IAAI,QAAQ,GAAG;IACX,IAAI,YAAY,CAAC;IACjB,MAAM,UAAU,CAAC;CACpB,CAAC;;;;;;;;;;;;;;AAcF,IAAI,SAAS,GAAG;IACZ,GAAG,EAAE,MAAM;IACX,MAAM,EAAE,SAAS;IACjB,IAAI,EAAE,OAAO;CAChB,CAAC;;ACzUF;;;;;;;AAOA,AAOA;;;;;;;;;;;AAWA,QAAQ,CAAC,aAAa,GAAG,cAAc,CAAC;;;;;;;;;;;;;AAaxC,QAAQ,CAAC,gCAAgC,GAAG,IAAI,CAAC;;AAEjD,IAAI,SAAS,GAAG,KAAK,CAAC;AACtB,IAAI,OAAO,GAAG,OAAO,CAAC;AACtB,AAWA;;;;;;;;;;;AAWA,SAAS,QAAQ,CAAC,IAAI;AACtB;IACI,IAAI,SAAS;IACb;QACI,OAAO;KACV;;IAED,IAAI,SAAS,CAAC,SAAS,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;IAC5D;QACI,IAAI,IAAI,GAAG;aACN,qBAAqB,GAAG,OAAO,GAAG,OAAO,GAAG,IAAI,GAAG,wDAAwD;YAC5G,qCAAqC;YACrC,qCAAqC;YACrC,qDAAqD;YACrD,qCAAqC;YACrC,qCAAqC;YACrC,qCAAqC;YACrC,kDAAkD;YAClD,kDAAkD;YAClD,kDAAkD,EAAE,CAAC;;QAEzD,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;KAC3C;SACI,IAAI,MAAM,CAAC,OAAO;IACvB;QACI,MAAM,CAAC,OAAO,CAAC,GAAG,EAAE,SAAS,GAAG,OAAO,GAAG,KAAK,GAAG,IAAI,GAAG,2BAA2B,EAAE,CAAC;KAC1F;;IAED,SAAS,GAAG,IAAI,CAAC;CACpB;;AAED,IAAI,SAAS,CAAC;;;;;;;;;AASd,SAAS,gBAAgB;AACzB;IACI,IAAI,OAAO,SAAS,KAAK,WAAW;IACpC;QACI,SAAS,GAAG,CAAC,SAAS,SAAS;QAC/B;YACI,IAAI,cAAc,GAAG;gBACjB,OAAO,EAAE,IAAI;gBACb,4BAA4B,EAAE,QAAQ,CAAC,gCAAgC;aAC1E,CAAC;;YAEF;YACA;gBACI,IAAI,CAAC,MAAM,CAAC,qBAAqB;gBACjC;oBACI,OAAO,KAAK,CAAC;iBAChB;;gBAED,IAAI,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;gBAC9C,IAAI,EAAE,GAAG,MAAM,CAAC,UAAU,CAAC,OAAO,EAAE,cAAc,CAAC;uBAC5C,MAAM,CAAC,UAAU,CAAC,oBAAoB,EAAE,cAAc,CAAC,CAAC;;gBAE/D,IAAI,OAAO,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,CAAC,oBAAoB,EAAE,CAAC,OAAO,CAAC,CAAC;;gBAE1D,IAAI,EAAE;gBACN;oBACI,IAAI,WAAW,GAAG,EAAE,CAAC,YAAY,CAAC,oBAAoB,CAAC,CAAC;;oBAExD,IAAI,WAAW;oBACf;wBACI,WAAW,CAAC,WAAW,EAAE,CAAC;qBAC7B;iBACJ;;gBAED,EAAE,GAAG,IAAI,CAAC;;gBAEV,OAAO,OAAO,CAAC;aAClB;YACD,OAAO,CAAC;YACR;gBACI,OAAO,KAAK,CAAC;aAChB;SACJ,GAAG,CAAC;KACR;;IAED,OAAO,SAAS,CAAC;CACpB;;;;;;;;;;;;;AAaD,SAAS,OAAO,CAAC,GAAG,EAAE,GAAG;AACzB;IACI,GAAG,GAAG,GAAG,IAAI,EAAE,CAAC;;IAEhB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,IAAI,IAAI,IAAI,GAAG,CAAC;IACpC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI,IAAI,IAAI,GAAG,CAAC;IACnC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,GAAG,IAAI,IAAI,GAAG,CAAC;;IAE5B,OAAO,GAAG,CAAC;CACd;;;;;;;;;;;;AAYD,SAAS,UAAU,CAAC,GAAG;AACvB;IACI,GAAG,GAAG,GAAG,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;IACvB,GAAG,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,GAAG,GAAG,CAAC;;IAE/C,QAAQ,GAAG,GAAG,GAAG,EAAE;CACtB;;;;;;;;;;;;AAYD,SAAS,UAAU,CAAC,MAAM;AAC1B;IACI,IAAI,OAAO,MAAM,KAAK,QAAQ,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG;IACnD;QACI,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;KAC7B;;IAED,OAAO,QAAQ,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;CAC/B;AACD,AAeA;;;;;;;;;;AAUA,SAAS,0BAA0B;AACnC;IACI,IAAI,EAAE,GAAG,EAAE,CAAC;IACZ,IAAI,GAAG,GAAG,EAAE,CAAC;;IAEb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;IAC3B;QACI,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QACV,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;KACd;;IAED,EAAE,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,WAAW,CAAC,MAAM,CAAC;IAChD,EAAE,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,WAAW,CAAC,GAAG,CAAC;IAC1C,EAAE,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,WAAW,CAAC,MAAM,CAAC;;IAEhD,GAAG,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,WAAW,CAAC,UAAU,CAAC;IACjD,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,WAAW,CAAC,OAAO,CAAC;IAC3C,GAAG,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,WAAW,CAAC,UAAU,CAAC;;IAEjD,IAAI,KAAK,GAAG,EAAE,CAAC;;IAEf,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;IAChB,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;;IAEf,OAAO,KAAK,CAAC;CAChB;;;;;;;;AAQD,IAAI,oBAAoB,GAAG,0BAA0B,EAAE,CAAC;;;;;;;;;;;AAWxD,SAAS,gBAAgB,CAAC,SAAS,EAAE,aAAa;AAClD;IACI,OAAO,oBAAoB,CAAC,aAAa,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;CACjE;;;;;;;;;;;;;AAaD,SAAS,eAAe,CAAC,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,WAAW;AACrD;IACI,GAAG,GAAG,GAAG,IAAI,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;IACjC,IAAI,WAAW,IAAI,WAAW,KAAK,SAAS;IAC5C;QACI,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;QACxB,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;QACxB,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;KAC3B;;IAED;QACI,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;QAChB,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;QAChB,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;KACnB;IACD,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;;IAEf,OAAO,GAAG,CAAC;CACd;;;;;;;;;;;AAWD,SAAS,eAAe,CAAC,IAAI,EAAE,KAAK;AACpC;IACI,IAAI,KAAK,KAAK,GAAG;IACjB;QACI,OAAO,CAAC,KAAK,GAAG,GAAG,IAAI,EAAE,IAAI,IAAI,CAAC;KACrC;IACD,IAAI,KAAK,KAAK,GAAG;IACjB;QACI,OAAO,CAAC,CAAC;KACZ;IACD,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC,CAAC;IAC9B,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC;IAC7B,IAAI,CAAC,IAAI,IAAI,GAAG,IAAI,CAAC,CAAC;;IAEtB,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,GAAG,IAAI,CAAC,CAAC;IAC5B,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,GAAG,IAAI,CAAC,CAAC;IAC5B,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,GAAG,IAAI,CAAC,CAAC;;IAE5B,OAAO,CAAC,KAAK,GAAG,GAAG,IAAI,EAAE,KAAK,CAAC,IAAI,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;CACzD;;;;;;;;;;;;;AAaD,SAAS,qBAAqB,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,WAAW;AAC5D;IACI,GAAG,GAAG,GAAG,IAAI,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;IACjC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,IAAI,KAAK,CAAC;IACvC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,KAAK,CAAC;IACtC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,GAAG,IAAI,IAAI,KAAK,CAAC;IAC/B,IAAI,WAAW,IAAI,WAAW,KAAK,SAAS;IAC5C;QACI,GAAG,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC;QAChB,GAAG,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC;QAChB,GAAG,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC;KACnB;IACD,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;;IAEf,OAAO,GAAG,CAAC;CACd;;;;;;;;;;;AAWD,SAAS,qBAAqB,CAAC,IAAI,EAAE,SAAS;AAC9C;IACI,KAAK,SAAS,KAAK,KAAK,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC;;;IAG7C,IAAI,YAAY,GAAG,IAAI,GAAG,CAAC,CAAC;;IAE5B,SAAS,GAAG,SAAS,IAAI,IAAI,WAAW,CAAC,YAAY,CAAC,CAAC;;IAEvD,IAAI,SAAS,CAAC,MAAM,KAAK,YAAY;IACrC;QACI,MAAM,IAAI,KAAK,EAAE,sCAAsC,IAAI,SAAS,CAAC,MAAM,CAAC,GAAG,gBAAgB,GAAG,YAAY,EAAE,CAAC;KACpH;;;IAGD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,YAAY,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC;IACvD;QACI,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QACzB,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QACzB,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QACzB,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QACzB,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QACzB,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;KAC5B;;IAED,OAAO,SAAS,CAAC;CACpB;;;;;;;;;;;AAWD,SAAS,WAAW,CAAC,GAAG,EAAE,QAAQ,EAAE,WAAW;AAC/C;IACI,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;IACxB,IAAI,CAAC,CAAC;;IAEN,IAAI,QAAQ,IAAI,MAAM,IAAI,WAAW,KAAK,CAAC;IAC3C;QACI,OAAO;KACV;;IAED,WAAW,IAAI,QAAQ,GAAG,WAAW,GAAG,MAAM,GAAG,MAAM,GAAG,QAAQ,GAAG,WAAW,CAAC,CAAC;;IAElF,IAAI,GAAG,GAAG,MAAM,GAAG,WAAW,CAAC;;IAE/B,KAAK,CAAC,GAAG,QAAQ,EAAE,CAAC,GAAG,GAAG,EAAE,EAAE,CAAC;IAC/B;QACI,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,WAAW,CAAC,CAAC;KACjC;;IAED,GAAG,CAAC,MAAM,GAAG,GAAG,CAAC;CACpB;;AAED,IAAI,OAAO,GAAG,CAAC,CAAC;;;;;;;;;AAShB,SAAS,GAAG;AACZ;IACI,OAAO,EAAE,OAAO,CAAC;CACpB;;;;;;;;;;AAUD,SAASC,MAAI,CAAC,CAAC;AACf;IACI,IAAI,CAAC,KAAK,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC,EAAE;;IAE1B,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;CACzB;;;;;;;;;;;;AAYD,SAAS,QAAQ,CAAC,CAAC;AACnB;IACI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IACb,EAAE,CAAC,CAAC;IACJ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IACb,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IACb,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IACb,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IACb,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC;;IAEd,OAAO,CAAC,GAAG,CAAC,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,MAAM,CAAC,CAAC;AACjB;IACI,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;CAClC;;;;;;;;;;AAUD,SAAS,IAAI,CAAC,CAAC;AACf;IACI,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,KAAK,CAAC,CAAC;;IAE1B,CAAC,MAAM,CAAC,CAAC;;IAET,IAAI,KAAK,GAAG,CAAC,CAAC,GAAG,IAAI,KAAK,CAAC,CAAC;;IAE5B,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC;IACzB,KAAK,GAAG,CAAC,CAAC,GAAG,GAAG,KAAK,CAAC,CAAC;IACvB,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC;IACzB,KAAK,GAAG,CAAC,CAAC,GAAG,GAAG,KAAK,CAAC,CAAC;IACvB,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC;;IAEzB,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;CACvB;;;;;;;;;;AAUD,IAAI,YAAY,GAAG,EAAE,CAAC;;;;;;;;;;AAUtB,IAAI,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;;;;;;;;;;AAWvC,IAAI,gBAAgB,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;AAC3C,AAuCA;;;;;;;;;AASA,SAAS,UAAU,CAAC,MAAM;AAC1B;;;IAGI,IAAI,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC;IACzB,IAAI,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;;IAE3B,IAAI,OAAO,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;IACtC,IAAI,SAAS,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAC1D,IAAI,MAAM,GAAG,SAAS,CAAC,IAAI,CAAC;IAC5B,IAAI,GAAG,GAAG,MAAM,CAAC,MAAM,CAAC;;IAExB,IAAI,KAAK,GAAG;QACR,GAAG,EAAE,IAAI;QACT,IAAI,EAAE,IAAI;QACV,KAAK,EAAE,IAAI;QACX,MAAM,EAAE,IAAI;KACf,CAAC;IACF,IAAI,IAAI,GAAG,IAAI,CAAC;IAChB,IAAI,CAAC,CAAC;IACN,IAAI,CAAC,CAAC;IACN,IAAI,CAAC,CAAC;;IAEN,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC;IAC3B;QACI,IAAI,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;QACvB;YACI,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,KAAK,CAAC;YACpB,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,IAAI,KAAK,CAAC,CAAC;;YAExB,IAAI,KAAK,CAAC,GAAG,KAAK,IAAI;YACtB;gBACI,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC;aACjB;;YAED,IAAI,KAAK,CAAC,IAAI,KAAK,IAAI;YACvB;gBACI,KAAK,CAAC,IAAI,GAAG,CAAC,CAAC;aAClB;iBACI,IAAI,CAAC,GAAG,KAAK,CAAC,IAAI;YACvB;gBACI,KAAK,CAAC,IAAI,GAAG,CAAC,CAAC;aAClB;;YAED,IAAI,KAAK,CAAC,KAAK,KAAK,IAAI;YACxB;gBACI,KAAK,CAAC,KAAK,GAAG,CAAC,GAAG,CAAC,CAAC;aACvB;iBACI,IAAI,KAAK,CAAC,KAAK,GAAG,CAAC;YACxB;gBACI,KAAK,CAAC,KAAK,GAAG,CAAC,GAAG,CAAC,CAAC;aACvB;;YAED,IAAI,KAAK,CAAC,MAAM,KAAK,IAAI;YACzB;gBACI,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;aACpB;iBACI,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC;YACzB;gBACI,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;aACpB;SACJ;KACJ;;IAED,IAAI,KAAK,CAAC,GAAG,KAAK,IAAI;IACtB;QACI,KAAK,GAAG,KAAK,CAAC,KAAK,GAAG,KAAK,CAAC,IAAI,CAAC;QACjC,MAAM,GAAG,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC;QACtC,IAAI,GAAG,OAAO,CAAC,YAAY,CAAC,KAAK,CAAC,IAAI,EAAE,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;KACrE;;IAED,OAAO;QACH,MAAM,EAAE,MAAM;QACd,KAAK,EAAE,KAAK;QACZ,IAAI,EAAE,IAAI;KACb,CAAC;CACL;;;;;;;;AAQD,IAAI,kBAAkB,GAAG,SAAS,kBAAkB,CAAC,KAAK,EAAE,MAAM,EAAE,UAAU;AAC9E;;;;;;IAMI,IAAI,CAAC,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;;;;;;IAO/C,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;IAE5C,IAAI,CAAC,UAAU,GAAG,UAAU,IAAI,QAAQ,CAAC,UAAU,CAAC;;IAEpD,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;CAC9B,CAAC;;AAEF,IAAI,kBAAkB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;AAO1F,kBAAkB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACnD;IACI,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IAC5C,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;CACvE,CAAC;;;;;;;;AAQF,kBAAkB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,KAAK,EAAE,MAAM;AACpE;IACI,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC;IAC5C,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,UAAU,CAAC;CACjD,CAAC;;;;;;AAMF,kBAAkB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AACvD;IACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;CACtB,CAAC;;;;;;;AAOF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;AAC/B;IACI,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;CAC5B,CAAC;;AAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,GAAG;AAC5C;IACI,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,GAAG,CAAC;CAC3B,CAAC;;;;;;;AAOF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;CAC7B,CAAC;;AAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,GAAG;AAC7C;IACI,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,GAAG,CAAC;CAC5B,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;AAC5E,AAiDA;AACA,IAAI,UAAU,CAAC;;;;;;;;;;;;;AAaf,SAAS,oBAAoB,CAACC,KAAG,EAAE,GAAG;AACtC;IACI,KAAK,GAAG,KAAK,KAAK,CAAC,GAAG,GAAG,GAAG,MAAM,CAAC,QAAQ,CAAC;;;IAG5C,IAAIA,KAAG,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC;IAC9B;QACI,OAAO,EAAE,CAAC;KACb;;;IAGD,GAAG,GAAG,GAAG,IAAI,MAAM,CAAC,QAAQ,CAAC;;IAE7B,IAAI,CAAC,UAAU;IACf;QACI,UAAU,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;KAC5C;;;;;IAKD,UAAU,CAAC,IAAI,GAAGA,KAAG,CAAC;IACtBA,KAAG,GAAGC,GAAI,CAAC,KAAK,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;IAElC,IAAI,QAAQ,GAAG,CAAC,CAACD,KAAG,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,KAAK,EAAE,MAAMA,KAAG,CAAC,IAAI,KAAK,GAAG,CAAC,IAAI,CAAC,CAAC;;;IAGzE,IAAIA,KAAG,CAAC,QAAQ,KAAK,GAAG,CAAC,QAAQ,IAAI,CAAC,QAAQ,IAAIA,KAAG,CAAC,QAAQ,KAAK,GAAG,CAAC,QAAQ;IAC/E;QACI,OAAO,WAAW,CAAC;KACtB;;IAED,OAAO,EAAE,CAAC;CACb;;;;;;;;;;;;AAYD,SAAS,kBAAkB,CAAC,GAAG,EAAE,YAAY;AAC7C;IACI,IAAI,UAAU,GAAG,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;IAElD,IAAI,UAAU;IACd;QACI,OAAO,UAAU,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;KACpC;;IAED,OAAO,YAAY,KAAK,SAAS,GAAG,YAAY,GAAG,CAAC,CAAC;CACxD;;;AAGD,IAAI,QAAQ,GAAG,EAAE,CAAC;;;;;;;;;;;;;;AAclB,SAAS,WAAW,CAAC,OAAO,EAAE,OAAO,EAAE,WAAW;AAClD;IACI,KAAK,WAAW,KAAK,KAAK,CAAC,GAAG,WAAW,GAAG,CAAC,CAAC;;;IAG9C,IAAI,QAAQ,CAAC,OAAO,CAAC;IACrB;QACI,OAAO;KACV;;;IAGD,IAAI,KAAK,GAAG,IAAI,KAAK,EAAE,CAAC,KAAK,CAAC;;;IAG9B,IAAI,OAAO,KAAK,KAAK,WAAW;IAChC;QACI,OAAO,CAAC,IAAI,CAAC,8BAA8B,GAAG,OAAO,GAAG,sBAAsB,GAAG,OAAO,EAAE,CAAC;KAC9F;;IAED;;QAEI,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAEzD,IAAI,OAAO,CAAC,cAAc;QAC1B;YACI,OAAO,CAAC,cAAc;gBAClB,oCAAoC;gBACpC,kCAAkC;gBAClC,qDAAqD;iBACpD,OAAO,GAAG,sBAAsB,GAAG,OAAO;aAC9C,CAAC;YACF,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACpB,OAAO,CAAC,QAAQ,EAAE,CAAC;SACtB;;QAED;YACI,OAAO,CAAC,IAAI,CAAC,8BAA8B,GAAG,OAAO,GAAG,sBAAsB,GAAG,OAAO,EAAE,CAAC;YAC3F,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SACvB;KACJ;;;IAGD,QAAQ,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC;CAC5B;;AC/7BD;;;;;;;;;;;;;;AAcA,IAAI,KAAK,GAAG,SAAS,KAAK,CAAC,CAAC,EAAE,CAAC;AAC/B;IACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;;;;;;IAM1B,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;CACd,CAAC;;;;;;;AAOF,KAAK,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACtC;IACI,OAAO,IAAI,KAAK,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;CACpC,CAAC;;;;;;;;AAQF,KAAK,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC;AAC/C;IACI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;;IAEnB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,KAAK,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,CAAC;AAC3C;IACI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;;IAEtB,OAAO,CAAC,CAAC;CACZ,CAAC;;;;;;;;AAQF,KAAK,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,CAAC;AAC3C;IACI,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,CAAC;CAC/C,CAAC;;;;;;;;;AASF,KAAK,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;AACxC;IACI,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;IAChB,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;CAC1C,CAAC;;;;;;;;;;;AAWF,IAAI,eAAe,GAAG,SAAS,eAAe,CAAC,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC;AAC9D;IACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;;IAE1B,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;IACZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;IAEZ,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;IACb,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;CACtB,CAAC;;AAEF,IAAIE,oBAAkB,GAAG,EAAE,CAAC,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;;;;AAYjF,eAAe,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,EAAE,EAAE,KAAK;AAC3D;QACQ,KAAK,EAAE,KAAK,KAAK,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC;QAC/B,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC;;IAEzC,IAAI,GAAG,GAAG,EAAE,IAAI,IAAI,CAAC,EAAE,CAAC;IACxB,IAAI,MAAM,GAAG,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC;;IAEjC,OAAO,IAAI,eAAe,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC;CAC7D,CAAC;;;;;;;;;AASF,eAAe,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;AAClD;IACI,IAAI,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC;;IAEnC,IAAI,IAAI,CAAC,EAAE,KAAK,EAAE,IAAI,IAAI,CAAC,EAAE,KAAK,EAAE;IACpC;QACI,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAC5B;CACJ,CAAC;;;;;;;;AAQF,eAAe,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC;AACzD;IACI,IAAI,IAAI,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC;IACtC;QACI,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC;QACd,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC;QACd,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAC5B;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,eAAe,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,CAAC;AACrD;IACI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC;;IAExB,OAAO,CAAC,CAAC;CACZ,CAAC;;;;;;;;AAQF,eAAe,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,CAAC;AACrD;IACI,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,EAAE,CAAC,CAAC;CACjD,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG;AAC3B;IACI,OAAO,IAAI,CAAC,EAAE,CAAC;CAClB,CAAC;;AAEFA,oBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG,UAAU,KAAK;AAC1C;IACI,IAAI,IAAI,CAAC,EAAE,KAAK,KAAK;IACrB;QACI,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC;QAChB,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAC5B;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG;AAC3B;IACI,OAAO,IAAI,CAAC,EAAE,CAAC;CAClB,CAAC;;AAEFA,oBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG,UAAU,KAAK;AAC1C;IACI,IAAI,IAAI,CAAC,EAAE,KAAK,KAAK;IACrB;QACI,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC;QAChB,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAC5B;CACJ,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,eAAe,CAAC,SAAS,EAAEA,oBAAkB,EAAE,CAAC;;;;;;;;;;;;;;;AAezE,IAAI,IAAI,GAAG,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;;;AASvB,IAAI,UAAU,GAAG,GAAG,GAAG,IAAI,CAAC,EAAE,CAAC;;;;;;;;;AAS/B,IAAI,UAAU,GAAG,IAAI,CAAC,EAAE,GAAG,GAAG,CAAC;;;;;;;;;;;;;;;;AAgB/B,IAAI,MAAM,GAAG;IACT,IAAI,EAAE,CAAC;IACP,IAAI,EAAE,CAAC;IACP,IAAI,EAAE,CAAC;IACP,IAAI,EAAE,CAAC;IACP,IAAI,EAAE,CAAC;CACV,CAAC;;;;;;;;;;;;;;AAcF,IAAI,MAAM,GAAG,SAAS,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE;AAC/C;IACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,EAAE,KAAK,KAAK,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;IAC5B,KAAK,EAAE,KAAK,KAAK,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;;;;;;IAM5B,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;;;;;;IAMb,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;;IAEb,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;CACrB,CAAC;;AAEF,IAAI,eAAe,GAAG,EAAE,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,WAAW,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;;;;;;AAc/F,MAAM,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,KAAK;AACtD;IACI,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IACnB,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;CACtB,CAAC;;;;;;;;;;;;;;AAcF,MAAM,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE;AACvD;IACI,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;IACb,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;;IAEb,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;AASF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,SAAS,EAAE,GAAG;AAC3D;IACI,IAAI,CAAC,IAAI,CAAC,KAAK;IACf;QACI,IAAI,CAAC,KAAK,GAAG,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;KACpC;;IAED,IAAI,KAAK,GAAG,GAAG,IAAI,IAAI,CAAC,KAAK,CAAC;;IAE9B,IAAI,SAAS;IACb;QACI,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QACb,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QACb,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;QACnB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;QACnB,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;KAChB;;IAED;QACI,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;QACnB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;QACnB,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QACb,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QACb,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;KAChB;;IAED,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;;;;AAUF,MAAM,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,GAAG,EAAE,MAAM;AACpD;IACI,MAAM,GAAG,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;;IAE/B,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;IACd,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;;IAEd,MAAM,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IACjD,MAAM,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;;IAEjD,OAAO,MAAM,CAAC;CACjB,CAAC;;;;;;;;;;AAUF,MAAM,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,GAAG,EAAE,MAAM;AAClE;IACI,MAAM,GAAG,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;;IAE/B,IAAI,EAAE,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;;IAEtD,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;IACd,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;;IAEd,MAAM,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,CAAC,KAAK,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;IACrG,MAAM,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,CAAC,KAAK,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;;IAEtG,OAAO,MAAM,CAAC;CACjB,CAAC;;;;;;;;;AASF,MAAM,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,CAAC,EAAE,CAAC;AACrD;IACI,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC;IACb,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC;;IAEb,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;AASF,MAAM,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,CAAC,EAAE,CAAC;AAC7C;IACI,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC;IACZ,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC;IACZ,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC;IACZ,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC;IACZ,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC;IACb,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC;;IAEb,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,KAAK;AAChD;IACI,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;IAC1B,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;;IAE1B,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,GAAG,GAAG,IAAI,CAAC,EAAE,CAAC;;IAElB,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,IAAI,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;IACrC,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,IAAI,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;IACrC,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,IAAI,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;IACrC,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,IAAI,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;IACrC,IAAI,CAAC,EAAE,GAAG,CAAC,GAAG,GAAG,GAAG,KAAK,IAAI,CAAC,EAAE,GAAG,GAAG,CAAC,CAAC;IACxC,IAAI,CAAC,EAAE,GAAG,CAAC,GAAG,GAAG,GAAG,KAAK,IAAI,CAAC,EAAE,GAAG,GAAG,CAAC,CAAC;;IAExC,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,MAAM;AACjD;IACI,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;;IAEhB,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,KAAK,MAAM,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC;IAC3C,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,KAAK,MAAM,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC;IAC3C,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,KAAK,MAAM,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC;IAC3C,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,KAAK,MAAM,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC;;IAE3C,IAAI,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,KAAK,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IACxD,IAAI,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,KAAK,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;;IAExD,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;;;;;;;;AAgBF,MAAM,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK;AACnH;IACI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,QAAQ,GAAG,KAAK,CAAC,GAAG,MAAM,CAAC;IAC7C,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,QAAQ,GAAG,KAAK,CAAC,GAAG,MAAM,CAAC;IAC7C,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,QAAQ,GAAG,KAAK,CAAC,GAAG,MAAM,CAAC;IAC9C,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,QAAQ,GAAG,KAAK,CAAC,GAAG,MAAM,CAAC;;IAE7C,IAAI,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC,KAAK,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;IACtD,IAAI,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC,KAAK,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;;IAEtD,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,MAAM;AACnD;IACI,IAAI,GAAG,GAAG,IAAI,CAAC,EAAE,CAAC;;IAElB,IAAI,MAAM,CAAC,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,CAAC,KAAK,CAAC;IACxE;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;QAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;;QAEhB,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;QAC/C,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;QAC/C,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;QAC/C,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;KAClD;;IAED,IAAI,CAAC,EAAE,GAAG,CAAC,GAAG,GAAG,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,EAAE,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC;IAC9D,IAAI,CAAC,EAAE,GAAG,CAAC,GAAG,GAAG,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,EAAE,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC;;IAE9D,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,SAAS;AAC1D;;IAEI,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IACf,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IACf,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IACf,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;;IAEf,IAAI,KAAK,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IAC/B,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;IAE7B,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,GAAG,KAAK,CAAC,CAAC;;IAEpC,IAAI,KAAK,GAAG,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,IAAI,GAAG,KAAK,CAAC,GAAG,OAAO;IACvD;QACI,SAAS,CAAC,QAAQ,GAAG,KAAK,CAAC;QAC3B,SAAS,CAAC,IAAI,CAAC,CAAC,GAAG,SAAS,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;KAC3C;;IAED;QACI,SAAS,CAAC,QAAQ,GAAG,CAAC,CAAC;QACvB,SAAS,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC;QACzB,SAAS,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC;KAC5B;;;IAGD,SAAS,CAAC,KAAK,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;IACjD,SAAS,CAAC,KAAK,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;;;IAGjD,SAAS,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC/B,SAAS,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;;IAE/B,OAAO,SAAS,CAAC;CACpB,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;AACzC;IACI,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,GAAG,GAAG,IAAI,CAAC,EAAE,CAAC;IAClB,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;;IAE9B,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;IAChB,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC;IACjB,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC;IACjB,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;IAChB,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,KAAK,EAAE,GAAG,GAAG,CAAC,IAAI,CAAC,CAAC;IAC5C,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,KAAK,EAAE,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;;IAE7C,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ;AAC7C;IACI,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;IACZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;IAEZ,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACvC;IACI,IAAI,MAAM,GAAG,IAAI,MAAM,EAAE,CAAC;;IAE1B,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;IACpB,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;;IAEpB,OAAO,MAAM,CAAC;CACjB,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,MAAM;AACjD;IACI,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;IACpB,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;;IAEpB,OAAO,MAAM,CAAC;CACjB,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,MAAM;AACrD;IACI,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;IACpB,IAAI,CAAC,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;;IAEpB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;AASF,eAAe,CAAC,QAAQ,CAAC,GAAG,GAAG;AAC/B;IACI,OAAO,IAAI,MAAM,EAAE,CAAC;CACvB,CAAC;;;;;;;;;AASF,eAAe,CAAC,WAAW,CAAC,GAAG,GAAG;AAClC;IACI,OAAO,IAAI,MAAM,EAAE,CAAC;CACvB,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,MAAM,EAAE,eAAe,EAAE,CAAC;;;;;;;;;;AAUnD,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;AAChE,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;AAChE,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;AAChE,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;;;;;;;;;AAShE,IAAI,cAAc,GAAG,EAAE,CAAC;;;;;;;;AAQxB,IAAI,gBAAgB,GAAG,EAAE,CAAC;;;;;AAK1B,IAAI,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC;;;;;;AAMvB,SAAS,IAAI;AACb;IACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;IAC3B;QACI,IAAI,GAAG,GAAG,EAAE,CAAC;;QAEb,cAAc,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;QAEzB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;QAC3B;;YAEI,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;YACpD,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;YACpD,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;YACpD,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;;;YAGpD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;YAC3B;gBACI,IAAI,EAAE,CAAC,CAAC,CAAC,KAAK,GAAG,IAAI,EAAE,CAAC,CAAC,CAAC,KAAK,GAAG;yBACzB,EAAE,CAAC,CAAC,CAAC,KAAK,GAAG,IAAI,EAAE,CAAC,CAAC,CAAC,KAAK,GAAG;gBACvC;oBACI,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;oBACZ,MAAM;iBACT;aACJ;SACJ;KACJ;;IAED,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE;IACjC;QACI,IAAI,GAAG,GAAG,IAAI,MAAM,EAAE,CAAC;;QAEvB,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QAClD,gBAAgB,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KAC9B;CACJ;;AAED,IAAI,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiCP,IAAI,OAAO,GAAG;;;;;;;;IAQV,CAAC,EAAE,CAAC;;;;;;;;;IASJ,EAAE,EAAE,CAAC;;;;;;;;;IASL,CAAC,EAAE,CAAC;;;;;;;;;IASJ,EAAE,EAAE,CAAC;;;;;;;;;IASL,CAAC,EAAE,CAAC;;;;;;;;;IASJ,EAAE,EAAE,CAAC;;;;;;;;;IASL,CAAC,EAAE,CAAC;;;;;;;;;IASJ,EAAE,EAAE,CAAC;;;;;;;IAOL,eAAe,EAAE,CAAC;;;;;;;IAOlB,aAAa,EAAE,EAAE;;;;;;;IAOjB,iBAAiB,EAAE,EAAE;;;;;;;IAOrB,gBAAgB,EAAE,EAAE;;;;;;;;IAQpB,EAAE,EAAE,UAAU,GAAG,EAAE,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE;;;;;;;;IAQtC,EAAE,EAAE,UAAU,GAAG,EAAE,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE;;;;;;;;IAQtC,EAAE,EAAE,UAAU,GAAG,EAAE,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE;;;;;;;;IAQtC,EAAE,EAAE,UAAU,GAAG,EAAE,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE;;;;;;;;;IAStC,GAAG,EAAE,UAAU,QAAQ,EAAE;QACrB,IAAI,QAAQ,GAAG,CAAC;QAChB;YACI,OAAO,QAAQ,GAAG,EAAE,CAAC;SACxB;;QAED,OAAO,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC;KAC1B;;;;;;;;;;;;;;;;;;;;;;;;;;IA0BD,GAAG,EAAE,UAAU,cAAc,EAAE,aAAa,EAAE,EAAE;QAC5C,cAAc,CAAC,cAAc,CAAC,CAAC,aAAa,CAAC;MAC/C,EAAE;;;;;;;;;;IAUJ,GAAG,EAAE,UAAU,cAAc,EAAE,aAAa,EAAE,EAAE;QAC5C,cAAc,CAAC,cAAc,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;MAC5D,EAAE;;;;;;;;;;IAUJ,SAAS,EAAE,UAAU,QAAQ,EAAE,EAAE,OAAO,QAAQ,GAAG,CAAC,CAAC,EAAE;;;;;;;;;;IAUvD,UAAU,EAAE,UAAU,QAAQ,EAAE,EAAE,OAAO,CAAC,QAAQ,GAAG,CAAC,MAAM,CAAC,CAAC,EAAE;;;;;;;;;;;;IAYhE,WAAW,EAAE,UAAU,EAAE,EAAE,EAAE,EAAE;QAC3B,IAAI,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;QACpC;YACI,IAAI,EAAE,IAAI,CAAC;YACX;gBACI,OAAO,OAAO,CAAC,CAAC,CAAC;aACpB;;YAED,OAAO,OAAO,CAAC,CAAC,CAAC;SACpB;aACI,IAAI,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;QACzC;YACI,IAAI,EAAE,GAAG,CAAC;YACV;gBACI,OAAO,OAAO,CAAC,CAAC,CAAC;aACpB;;YAED,OAAO,OAAO,CAAC,CAAC,CAAC;SACpB;aACI,IAAI,EAAE,GAAG,CAAC;QACf;YACI,IAAI,EAAE,GAAG,CAAC;YACV;gBACI,OAAO,OAAO,CAAC,EAAE,CAAC;aACrB;;YAED,OAAO,OAAO,CAAC,EAAE,CAAC;SACrB;aACI,IAAI,EAAE,GAAG,CAAC;QACf;YACI,OAAO,OAAO,CAAC,EAAE,CAAC;SACrB;;QAED,OAAO,OAAO,CAAC,EAAE,CAAC;KACrB;;;;;;;;;;;IAWD,uBAAuB,EAAE,UAAU,MAAM,EAAE,QAAQ,EAAE,EAAE,EAAE,EAAE,EAAE;QACzD,KAAK,EAAE,KAAK,KAAK,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;QAC5B,KAAK,EAAE,KAAK,KAAK,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;;;QAG5B,IAAI,GAAG,GAAG,gBAAgB,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,CAAC;;QAElD,GAAG,CAAC,EAAE,GAAG,EAAE,CAAC;QACZ,GAAG,CAAC,EAAE,GAAG,EAAE,CAAC;QACZ,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;KACtB;CACJ,CAAC;;;;;;;;AAQF,IAAI,SAAS,GAAG,SAAS,SAAS;AAClC;;;;;;IAMI,IAAI,CAAC,cAAc,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;IAOnC,IAAI,CAAC,cAAc,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;IAOnC,IAAI,CAAC,QAAQ,GAAG,IAAI,eAAe,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;;;;;;IAO/D,IAAI,CAAC,KAAK,GAAG,IAAI,eAAe,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;;;;;;IAO5D,IAAI,CAAC,KAAK,GAAG,IAAI,eAAe,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;;;;;;IAO5D,IAAI,CAAC,IAAI,GAAG,IAAI,eAAe,CAAC,IAAI,CAAC,UAAU,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;;;;;;;IAQ7D,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;;;;;;;;;IASnB,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;;;;;;;;;IASb,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;;;;;;;;;IASb,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;;;;;;;;;IASb,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;;;;;;;;IAQb,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;;;;;;;;;IASlB,IAAI,CAAC,eAAe,GAAG,CAAC,CAAC;;;;;;;;IAQzB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;;;;;;;;;IASlB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;CACtB,CAAC;;AAEF,IAAIC,sBAAoB,GAAG,EAAE,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;AAOhE,SAAS,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ;AAChD;IACI,IAAI,CAAC,QAAQ,EAAE,CAAC;CACnB,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;AACpD;IACI,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACnD,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACnD,IAAI,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACpD,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;;IAEnD,IAAI,CAAC,QAAQ,EAAE,CAAC;CACnB,CAAC;;;;;AAKF,SAAS,CAAC,SAAS,CAAC,oBAAoB,GAAG,SAAS,oBAAoB;AACxE;IACI,IAAI,EAAE,GAAG,IAAI,CAAC,cAAc,CAAC;;IAE7B,IAAI,IAAI,CAAC,QAAQ,KAAK,IAAI,CAAC,eAAe;IAC1C;;QAEI,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QAChC,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QAChC,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QAChC,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;;QAEhC,EAAE,CAAC,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QAC7E,EAAE,CAAC,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QAC7E,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,QAAQ,CAAC;;;QAGrC,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;KACvB;CACJ,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,eAAe;AAC/E;IACI,IAAI,EAAE,GAAG,IAAI,CAAC,cAAc,CAAC;;IAE7B,IAAI,IAAI,CAAC,QAAQ,KAAK,IAAI,CAAC,eAAe;IAC1C;;QAEI,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QAChC,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QAChC,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QAChC,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;;QAEhC,EAAE,CAAC,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QAC7E,EAAE,CAAC,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QAC7E,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,QAAQ,CAAC;;;QAGrC,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;KACvB;;IAED,IAAI,IAAI,CAAC,SAAS,KAAK,eAAe,CAAC,QAAQ;IAC/C;;QAEI,IAAI,EAAE,GAAG,eAAe,CAAC,cAAc,CAAC;QACxC,IAAI,EAAE,GAAG,IAAI,CAAC,cAAc,CAAC;;QAE7B,EAAE,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;QACrC,EAAE,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;QACrC,EAAE,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;QACrC,EAAE,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;QACrC,EAAE,CAAC,EAAE,GAAG,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QAChD,EAAE,CAAC,EAAE,GAAG,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;;QAEhD,IAAI,CAAC,SAAS,GAAG,eAAe,CAAC,QAAQ,CAAC;;;QAG1C,IAAI,CAAC,QAAQ,EAAE,CAAC;KACnB;CACJ,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,MAAM;AAClE;IACI,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;IACvB,IAAI,CAAC,QAAQ,EAAE,CAAC;CACnB,CAAC;;;;;;;AAOFA,sBAAoB,CAAC,QAAQ,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,SAAS,CAAC;CACzB,CAAC;;AAEFA,sBAAoB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,KAAK;AACnD;IACI,IAAI,IAAI,CAAC,SAAS,KAAK,KAAK;IAC5B;QACI,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QACvB,IAAI,CAAC,UAAU,EAAE,CAAC;KACrB;CACJ,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,SAAS,CAAC,SAAS,EAAEA,sBAAoB,EAAE,CAAC;;;;;;;;;AASrE,SAAS,CAAC,QAAQ,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;;;;;;;;;;;;AAkBrC,IAAI,SAAS,GAAG,SAAS,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM;AACtD;IACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;IAClC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;;;;;;IAMpC,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;;;;;IAMnB,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;;;;;IAMnB,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC;;;;;;IAM3B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;IAU7B,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;CAC3B,CAAC;;AAEF,IAAI,oBAAoB,GAAG,EAAE,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,GAAG,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;AACrJ,IAAI,iBAAiB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;AAO1D,oBAAoB,CAAC,IAAI,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,IAAI,CAAC,CAAC,CAAC;CACjB,CAAC;;;;;;;AAOF,oBAAoB,CAAC,KAAK,CAAC,GAAG,GAAG;AACjC;IACI,OAAO,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC;CAC9B,CAAC;;;;;;;AAOF,oBAAoB,CAAC,GAAG,CAAC,GAAG,GAAG;AAC/B;IACI,OAAO,IAAI,CAAC,CAAC,CAAC;CACjB,CAAC;;;;;;;AAOF,oBAAoB,CAAC,MAAM,CAAC,GAAG,GAAG;AAClC;IACI,OAAO,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC;CAC/B,CAAC;;;;;;;;;AASF,iBAAiB,CAAC,KAAK,CAAC,GAAG,GAAG;AAC9B;IACI,OAAO,IAAI,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;CACpC,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC1C;IACI,OAAO,IAAI,SAAS,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;CACjE,CAAC;;;;;;;;AAQF,SAAS,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,SAAS;AAC3D;IACI,IAAI,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC;IACrB,IAAI,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC;IACrB,IAAI,CAAC,KAAK,GAAG,SAAS,CAAC,KAAK,CAAC;IAC7B,IAAI,CAAC,MAAM,GAAG,SAAS,CAAC,MAAM,CAAC;;IAE/B,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,SAAS,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,SAAS;AACvD;IACI,SAAS,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IACrB,SAAS,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IACrB,SAAS,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;IAC7B,SAAS,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;;IAE/B,OAAO,SAAS,CAAC;CACpB,CAAC;;;;;;;;;AASF,SAAS,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC,EAAE,CAAC;AACtD;IACI,IAAI,IAAI,CAAC,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,MAAM,IAAI,CAAC;IACvC;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK;IAC1C;QACI,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM;QAC3C;YACI,OAAO,IAAI,CAAC;SACf;KACJ;;IAED,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;;AAQF,SAAS,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,QAAQ,EAAE,QAAQ;AAC1D;IACI,QAAQ,GAAG,QAAQ,IAAI,CAAC,CAAC;IACzB,QAAQ,GAAG,QAAQ,KAAK,CAAC,QAAQ,KAAK,CAAC,IAAI,QAAQ,GAAG,CAAC,CAAC,CAAC;;IAEzD,IAAI,CAAC,CAAC,IAAI,QAAQ,CAAC;IACnB,IAAI,CAAC,CAAC,IAAI,QAAQ,CAAC;;IAEnB,IAAI,CAAC,KAAK,IAAI,QAAQ,GAAG,CAAC,CAAC;IAC3B,IAAI,CAAC,MAAM,IAAI,QAAQ,GAAG,CAAC,CAAC;CAC/B,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,SAAS;AACjD;IACI,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;IACvC,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC,GAAG,SAAS,CAAC,KAAK,CAAC,CAAC;IACtE,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;IACvC,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC;;IAExE,IAAI,CAAC,CAAC,GAAG,EAAE,CAAC;IACZ,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC;IAClC,IAAI,CAAC,CAAC,GAAG,EAAE,CAAC;IACZ,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC;CACtC,CAAC;;;;;;;;AAQF,SAAS,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,UAAU,EAAE,GAAG;AACzD;QACQ,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC;QAC5C,KAAK,GAAG,KAAK,KAAK,CAAC,GAAG,GAAG,GAAG,KAAK,CAAC;;IAEtC,IAAI,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,GAAG,GAAG,IAAI,UAAU,CAAC,GAAG,UAAU,CAAC;IAC1E,IAAI,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,GAAG,GAAG,IAAI,UAAU,CAAC,GAAG,UAAU,CAAC;;IAE3E,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,GAAG,IAAI,UAAU,CAAC,GAAG,UAAU,CAAC;IAC9D,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,GAAG,IAAI,UAAU,CAAC,GAAG,UAAU,CAAC;;IAE9D,IAAI,CAAC,KAAK,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IACzB,IAAI,CAAC,MAAM,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;CAC7B,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,SAAS;AACzD;IACI,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;IACvC,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC,GAAG,SAAS,CAAC,KAAK,CAAC,CAAC;IACtE,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;IACvC,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC;;IAExE,IAAI,CAAC,CAAC,GAAG,EAAE,CAAC;IACZ,IAAI,CAAC,KAAK,GAAG,EAAE,GAAG,EAAE,CAAC;IACrB,IAAI,CAAC,CAAC,GAAG,EAAE,CAAC;IACZ,IAAI,CAAC,MAAM,GAAG,EAAE,GAAG,EAAE,CAAC;CACzB,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,SAAS,CAAC,SAAS,EAAE,oBAAoB,EAAE,CAAC;AACrE,MAAM,CAAC,gBAAgB,EAAE,SAAS,EAAE,iBAAiB,EAAE,CAAC;;;;;;;;AAQxD,IAAI,MAAM,GAAG,SAAS,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,MAAM;AACzC;IACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;;;;;;IAMpC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;;;;;IAUrB,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;CAC3B,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACvC;IACI,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;CAClD,CAAC;;;;;;;;;AASF,MAAM,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC,EAAE,CAAC;AACnD;IACI,IAAI,IAAI,CAAC,MAAM,IAAI,CAAC;IACpB;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,IAAI,EAAE,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;IACnC,IAAI,EAAE,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;IACtB,IAAI,EAAE,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;;IAEtB,EAAE,IAAI,EAAE,CAAC;IACT,EAAE,IAAI,EAAE,CAAC;;IAET,QAAQ,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE;CAC1B,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;AAC/C;IACI,OAAO,IAAI,SAAS,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,GAAG,CAAC,EAAE,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;CACtG,CAAC;;;;;;;;AAQF,IAAI,OAAO,GAAG,SAAS,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,SAAS,EAAE,UAAU;AAC1D;IACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,SAAS,KAAK,KAAK,CAAC,GAAG,SAAS,GAAG,CAAC,CAAC;IAC1C,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC;;;;;;IAM5C,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,KAAK,GAAG,SAAS,CAAC;;;;;;IAMvB,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC;;;;;;;;;;IAUzB,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;CAC3B,CAAC;;;;;;;AAOF,OAAO,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACxC;IACI,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;CAC/D,CAAC;;;;;;;;;AASF,OAAO,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC,EAAE,CAAC;AACpD;IACI,IAAI,IAAI,CAAC,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,MAAM,IAAI,CAAC;IACvC;QACI,OAAO,KAAK,CAAC;KAChB;;;IAGD,IAAI,KAAK,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC;IACxC,IAAI,KAAK,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC;;IAEzC,KAAK,IAAI,KAAK,CAAC;IACf,KAAK,IAAI,KAAK,CAAC;;IAEf,QAAQ,KAAK,GAAG,KAAK,IAAI,CAAC,EAAE;CAC/B,CAAC;;;;;;;AAOF,OAAO,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;AAChD;IACI,OAAO,IAAI,SAAS,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;CAC5F,CAAC;;;;;;;;AAQF,IAAI,OAAO,GAAG,SAAS,OAAO;AAC9B;IACI,IAAI,MAAM,GAAG,EAAE,EAAE,GAAG,GAAG,SAAS,CAAC,MAAM,CAAC;IACxC,QAAQ,GAAG,EAAE,GAAG,MAAM,EAAE,GAAG,EAAE,GAAG,SAAS,EAAE,GAAG,EAAE,CAAC;;IAEjD,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;IAC5B;QACI,MAAM,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;KACtB;;;IAGD,IAAI,MAAM,CAAC,CAAC,CAAC,YAAY,KAAK;IAC9B;QACI,IAAI,CAAC,GAAG,EAAE,CAAC;;QAEX,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;QAC/C;YACI,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;SACpC;;QAED,MAAM,GAAG,CAAC,CAAC;KACd;;;;;;;IAOD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;;;;;IAUrB,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;;;;;;;IAOxB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;CAC3B,CAAC;;;;;;;AAOF,OAAO,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACxC;IACI,IAAI,OAAO,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC;;IAE/C,OAAO,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;;IAEvC,OAAO,OAAO,CAAC;CAClB,CAAC;;;;;;;;;AASF,OAAO,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC,EAAE,CAAC;AACpD;IACI,IAAI,MAAM,GAAG,KAAK,CAAC;;;;IAInB,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;IAEpC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE;IACnD;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;QAC5B,IAAI,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;QAClC,IAAI,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;QAC5B,IAAI,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;QAClC,IAAI,SAAS,GAAG,CAAC,CAAC,EAAE,GAAG,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;;QAE3F,IAAI,SAAS;QACb;YACI,MAAM,GAAG,CAAC,MAAM,CAAC;SACpB;KACJ;;IAED,OAAO,MAAM,CAAC;CACjB,CAAC;;;;;;;;;AASF,IAAI,gBAAgB,GAAG,SAAS,gBAAgB,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;AAC5E;IACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;IAClC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;IACpC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,EAAE,CAAC;;;;;;IAMrC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;IAMnB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;IAMrB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;;;;;IAUrB,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;CAC3B,CAAC;;;;;;;AAOF,gBAAgB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACjD;IACI,OAAO,IAAI,gBAAgB,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;CACrF,CAAC;;;;;;;;;AASF,gBAAgB,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC,EAAE,CAAC;AAC7D;IACI,IAAI,IAAI,CAAC,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,MAAM,IAAI,CAAC;IACvC;QACI,OAAO,KAAK,CAAC;KAChB;IACD,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK;IAC3C;QACI,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM;QAC5C;YACI,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM;gBACrE,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;YACxE;gBACI,OAAO,IAAI,CAAC;aACf;YACD,IAAI,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;YACpC,IAAI,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;YACpC,IAAI,OAAO,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;;YAExC,IAAI,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,OAAO;YACpC;gBACI,OAAO,IAAI,CAAC;aACf;YACD,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;YAC7C,IAAI,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,OAAO;YACpC;gBACI,OAAO,IAAI,CAAC;aACf;YACD,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;YAC9C,IAAI,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,OAAO;YACpC;gBACI,OAAO,IAAI,CAAC;aACf;YACD,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;YAChC,IAAI,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,OAAO;YACpC;gBACI,OAAO,IAAI,CAAC;aACf;SACJ;KACJ;;IAED,OAAO,KAAK,CAAC;CAChB,CAAC;;AC7iEF;;;;;;;AAOA,AAGA;;;;;;;;;;;;;;;;;;;;AAoBA,QAAQ,CAAC,iBAAiB,GAAG,KAAK,CAAC;;;;;;;;;;;AAWnC,IAAI,MAAM,GAAG,SAAS,MAAM;AAC5B;;;;;IAKI,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;;;;;;IAMrB,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;;;;;;IAMrB,IAAI,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC;;;;;;IAMtB,IAAI,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC;;IAEtB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CACpB,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC3C;IACI,OAAO,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;CACzD,CAAC;;;;;;AAMF,MAAM,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACvC;IACI,IAAI,CAAC,QAAQ,EAAE,CAAC;;IAEhB,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;IACrB,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;IACrB,IAAI,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC;CACzB,CAAC;;;;;;;;;AASF,MAAM,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,IAAI;AAC3D;IACI,IAAI,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI;IAClD;QACI,OAAO,SAAS,CAAC,KAAK,CAAC;KAC1B;;IAED,IAAI,GAAG,IAAI,IAAI,IAAI,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;IAEzC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC;IACnB,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC;IACnB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACnC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;IAEpC,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,KAAK;AACpD;IACI,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;IACzC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;IACzC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;IACzC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;CAC5C,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,QAAQ;AACrD;IACI,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;IAErB,IAAI,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IACpB,IAAI,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;;IAEpB,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAChB,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAChB,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAChB,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAChB,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAChB,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAChB,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CACpB,CAAC;;;;;;;;;;;AAWF,MAAM,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,SAAS,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACxE;IACI,IAAI,MAAM,GAAG,SAAS,CAAC,cAAc,CAAC;IACtC,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;IACnB,IAAI,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;;IAEnB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;IAErB,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;IACjC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;IAEjC,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;IAC7B,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;IAC7B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;IAC7B,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;IAC7B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;IAC7B,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;IAC7B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CACpB,CAAC;;;;;;;;;AASF,MAAM,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,UAAU,EAAE,WAAW,EAAE,SAAS;AAC3F;IACI,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;IAErB,KAAK,IAAI,CAAC,GAAG,WAAW,EAAE,CAAC,GAAG,SAAS,EAAE,CAAC,IAAI,CAAC;IAC/C;QACI,IAAI,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;QACtB,IAAI,CAAC,GAAG,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;;QAE1B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;QAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;QAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;QAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;KAC9B;;IAED,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CACpB,CAAC;;;;;;;;;;AAUF,MAAM,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS;AAChG;IACI,IAAI,MAAM,GAAG,SAAS,CAAC,cAAc,CAAC;IACtC,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;IACnB,IAAI,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;;IAEnB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;IAErB,KAAK,IAAI,CAAC,GAAG,WAAW,EAAE,CAAC,GAAG,SAAS,EAAE,CAAC,IAAI,CAAC;IAC/C;QACI,IAAI,IAAI,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;QACvB,IAAI,IAAI,GAAG,QAAQ,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;QAC3B,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,KAAK,CAAC,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;QACrC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,KAAK,CAAC,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;;QAErC,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;QAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;QAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;QAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;KAC9B;;IAED,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CACpB,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,MAAM;AACvD;IACI,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;IAErB,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;IACpD,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;IACpD,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;IACpD,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;CACvD,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,MAAM,EAAE,IAAI;AACrE;IACI,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IAC9D,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IAC9D,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IAC9D,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;IAE9D,IAAI,KAAK,IAAI,KAAK,IAAI,KAAK,IAAI,KAAK;IACpC;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;QAErB,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;QACxC,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;QACxC,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;QACxC,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;KAC3C;CACJ,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,MAAM,EAAE,IAAI;AACrE;IACI,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC;IACxD,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC;IACxD,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,IAAI,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;IACpF,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,IAAI,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;;IAEtF,IAAI,KAAK,IAAI,KAAK,IAAI,KAAK,IAAI,KAAK;IACpC;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;QAErB,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;QACxC,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;QACxC,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;QACxC,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;KAC3C;CACJ,CAAC;;;;;;;;;;;;;AAaF,IAAI,aAAa,iBAAiB,UAAU,YAAY,EAAE;IACtD,SAAS,aAAa;IACtB;QACI,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAExB,IAAI,CAAC,uBAAuB,GAAG,IAAI,CAAC;;;;;;;;;QASpC,IAAI,CAAC,SAAS,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;QAOjC,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;;;QAUf,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;;;;QAUpB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;;;;;;;QAQvB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;;QAQnB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;;;;;;;;QASpB,IAAI,CAAC,gBAAgB,GAAG,CAAC,CAAC;;;;;;;;;QAS1B,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;;;;QAUjB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;;;;;;;;QASvB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;;;;;;;;QAQ5B,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;QAC5B,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;QACnB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC,CAAC;QACxB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QACxB,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;;;;;;;;QAQ7B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;QAsBlB,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;;;;;;QAMxB,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;KACzB;;IAED,KAAK,YAAY,GAAG,aAAa,CAAC,SAAS,GAAG,YAAY,CAAC;IAC3D,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,YAAY,IAAI,YAAY,CAAC,SAAS,EAAE,CAAC;IAClF,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;IAEpD,IAAI,kBAAkB,GAAG,EAAE,wBAAwB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,cAAc,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,cAAc,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,YAAY,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;IAM1e,aAAa,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,MAAM;IAC5C;;;;;QAKI,IAAI,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;;QAG/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC;QACpC;YACI,IAAI,YAAY,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;;;YAG3B,MAAM,CAAC,cAAc;gBACjB,aAAa,CAAC,SAAS;gBACvB,YAAY;gBACZ,MAAM,CAAC,wBAAwB,CAAC,MAAM,EAAE,YAAY,CAAC;aACxD,CAAC;SACL;KACJ,CAAC;;IAEF,kBAAkB,CAAC,wBAAwB,CAAC,GAAG,GAAG;IAClD;QACI,IAAI,IAAI,CAAC,uBAAuB,KAAK,IAAI;QACzC;YACI,IAAI,CAAC,uBAAuB,GAAG,IAAI,aAAa,EAAE,CAAC;SACtD;;QAED,OAAO,IAAI,CAAC,uBAAuB,CAAC;KACvC,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;IAClE;QACI,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;;QAEtD,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC;;QAEtD,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC;KAC3B,CAAC;;;;;;IAMF,aAAa,CAAC,SAAS,CAAC,6BAA6B,GAAG,SAAS,6BAA6B;IAC9F;QACI,IAAI,IAAI,CAAC,MAAM;QACf;YACI,IAAI,CAAC,MAAM,CAAC,6BAA6B,EAAE,CAAC;YAC5C,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;SACzD;;QAED;YACI,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,IAAI,CAAC,wBAAwB,CAAC,SAAS,CAAC,CAAC;SAC3E;KACJ,CAAC;;;;;;;;;;;IAWF,aAAa,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,UAAU,EAAE,IAAI;IACxE;QACI,IAAI,CAAC,UAAU;QACf;YACI,IAAI,CAAC,IAAI,CAAC,MAAM;YAChB;gBACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,wBAAwB,CAAC;gBAC5C,IAAI,CAAC,eAAe,EAAE,CAAC;gBACvB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;aACtB;;YAED;gBACI,IAAI,CAAC,6BAA6B,EAAE,CAAC;gBACrC,IAAI,CAAC,eAAe,EAAE,CAAC;aAC1B;SACJ;;QAED,IAAI,IAAI,CAAC,SAAS,KAAK,IAAI,CAAC,aAAa;QACzC;YACI,IAAI,CAAC,eAAe,EAAE,CAAC;YACvB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,SAAS,CAAC;SACvC;;QAED,IAAI,CAAC,IAAI;QACT;YACI,IAAI,CAAC,IAAI,CAAC,WAAW;YACrB;gBACI,IAAI,CAAC,WAAW,GAAG,IAAI,SAAS,EAAE,CAAC;aACtC;;YAED,IAAI,GAAG,IAAI,CAAC,WAAW,CAAC;SAC3B;;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;KAC1C,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,IAAI;IACtE;QACI,IAAI,YAAY,GAAG,IAAI,CAAC,SAAS,CAAC;QAClC,IAAI,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC;;QAE5B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,wBAAwB,CAAC,SAAS,CAAC;;QAEzD,IAAI,CAAC,IAAI;QACT;YACI,IAAI,CAAC,IAAI,CAAC,gBAAgB;YAC1B;gBACI,IAAI,CAAC,gBAAgB,GAAG,IAAI,SAAS,EAAE,CAAC;aAC3C;;YAED,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC;SAChC;;QAED,IAAI,MAAM,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC;;QAEzC,IAAI,CAAC,MAAM,GAAG,SAAS,CAAC;QACxB,IAAI,CAAC,SAAS,GAAG,YAAY,CAAC;;QAE9B,OAAO,MAAM,CAAC;KACjB,CAAC;;;;;;;;;;;IAWF,aAAa,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,UAAU;IACjF;QACI,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,KAAK,CAAC;;QAEhD,IAAI,CAAC,UAAU;QACf;YACI,IAAI,CAAC,6BAA6B,EAAE,CAAC;;;;;YAKrC,IAAI,CAAC,IAAI,CAAC,MAAM;YAChB;gBACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,wBAAwB,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;aACtB;;YAED;gBACI,IAAI,CAAC,4BAA4B,EAAE,CAAC;aACvC;SACJ;;;QAGD,OAAO,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;KACrD,CAAC;;;;;;;;;;;;IAYF,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,UAAU;IACrF;QACI,IAAI,IAAI;QACR;YACI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,KAAK,EAAE,UAAU,CAAC,CAAC;SACzD;;QAED,IAAI,CAAC,UAAU;QACf;YACI,IAAI,CAAC,6BAA6B,EAAE,CAAC;;;;;YAKrC,IAAI,CAAC,IAAI,CAAC,MAAM;YAChB;gBACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,wBAAwB,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;aACtB;;YAED;gBACI,IAAI,CAAC,4BAA4B,EAAE,CAAC;aACvC;SACJ;;;QAGD,OAAO,IAAI,CAAC,cAAc,CAAC,YAAY,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;KAC5D,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ;IAC1D;;KAEC,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,SAAS;IACjE;QACI,IAAI,CAAC,SAAS,IAAI,CAAC,SAAS,CAAC,QAAQ;QACrC;YACI,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;SAC9D;;QAED,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;;QAEzB,OAAO,SAAS,CAAC;KACpB,CAAC;;;;;;;;;;;;;;;;IAgBF,aAAa,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;IAC1H;QACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QAC1B,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;QACpC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;QACpC,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,CAAC,CAAC;QACxC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;QACpC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;;QAEpC,IAAI,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,CAAC;QACpB,IAAI,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,CAAC;QACpB,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,GAAG,MAAM,CAAC;QACpC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,GAAG,MAAM,CAAC;QACpC,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC;QACpB,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC;QACpB,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,MAAM,CAAC;QACtB,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,MAAM,CAAC;;QAEtB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;IASF,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAClD;QACI,IAAI,CAAC,kBAAkB,EAAE,CAAC;QAC1B,IAAI,IAAI,CAAC,MAAM;QACf;YACI,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;SACjC;QACD,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;;QAEtB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;QAEnB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC;QAC3B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;QAElB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;QAEvB,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;QACzB,IAAI,CAAC,mBAAmB,GAAG,KAAK,CAAC;;QAEjC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;KAC1B,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG;IAC3B;QACI,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;KAC1B,CAAC;;IAEF,kBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG,UAAU,KAAK;IAC1C;QACI,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,GAAG,KAAK,CAAC;KACrC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG;IAC3B;QACI,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;KAC1B,CAAC;;IAEF,kBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG,UAAU,KAAK;IAC1C;QACI,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,GAAG,KAAK,CAAC;KACrC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,cAAc,CAAC,GAAG,GAAG;IACxC;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,cAAc,CAAC;KACxC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,cAAc,CAAC,GAAG,GAAG;IACxC;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,cAAc,CAAC;KACxC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG;IAClC;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC;KAClC,CAAC;;IAEF,kBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,KAAK;IACjD;QACI,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;KAC3C,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC;KAC/B,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;KACxC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC;KAC/B,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;KACxC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC;KAC9B,CAAC;;IAEF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,KAAK;IAC7C;QACI,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;KACvC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG;IAClC;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC;KAClC,CAAC;;IAEF,kBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,KAAK;IACjD;QACI,IAAI,CAAC,SAAS,CAAC,QAAQ,GAAG,KAAK,CAAC;KACnC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,QAAQ,GAAG,UAAU,CAAC;KAC/C,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,CAAC,SAAS,CAAC,QAAQ,GAAG,KAAK,GAAG,UAAU,CAAC;KAChD,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,OAAO,CAAC;KACvB,CAAC;;IAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,KAAK;IAC/C;QACI,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;QACrB,IAAI,IAAI,CAAC,MAAM;QACf;YACI,IAAI,CAAC,MAAM,CAAC,SAAS,GAAG,IAAI,CAAC;SAChC;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,YAAY,CAAC,GAAG,GAAG;IACtC;QACI,IAAI,IAAI,GAAG,IAAI,CAAC;;QAEhB;QACA;YACI,IAAI,CAAC,IAAI,CAAC,OAAO;YACjB;gBACI,OAAO,KAAK,CAAC;aAChB;;YAED,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC;SACtB,QAAQ,IAAI,EAAE;;QAEf,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;;;;;;;;;IAqBF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;IAEF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,KAAK;IAC7C;QACI,IAAI,IAAI,CAAC,KAAK;QACd;YACI,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,IAAI,CAAC;YAC7B,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC;SAC7B;;QAED,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;QAEnB,IAAI,IAAI,CAAC,KAAK;QACd;YACI,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,KAAK,CAAC;YAC9B,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC;SAC5B;KACJ,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,aAAa,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAEvE,OAAO,aAAa,CAAC;CACxB,CAACC,aAAY,CAAC,CAAC,CAAC;;;;;;;;;AASjB,aAAa,CAAC,SAAS,CAAC,4BAA4B,GAAG,aAAa,CAAC,SAAS,CAAC,eAAe,CAAC;;AAE/F,SAAS,YAAY,CAAC,CAAC,EAAE,CAAC;AAC1B;IACI,IAAI,CAAC,CAAC,MAAM,KAAK,CAAC,CAAC,MAAM;IACzB;QACI,OAAO,CAAC,CAAC,gBAAgB,GAAG,CAAC,CAAC,gBAAgB,CAAC;KAClD;;IAED,OAAO,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,MAAM,CAAC;CAC9B;;;;;;;;;;;;;;;;AAgBD,IAAI,SAAS,iBAAiB,UAAU,aAAa,EAAE;IACnD,SAAS,SAAS;IAClB;QACI,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;QAQzB,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;;;;;;;;;;;;;;;;;QAiBnB,IAAI,CAAC,gBAAgB,GAAG,QAAQ,CAAC,iBAAiB,CAAC;;;;;;;;QAQnD,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;;;;;;;;;;;;;;;;;;KAmB1B;;IAED,KAAK,aAAa,GAAG,SAAS,CAAC,SAAS,GAAG,aAAa,CAAC;IACzD,SAAS,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,aAAa,IAAI,aAAa,CAAC,SAAS,EAAE,CAAC;IAChF,SAAS,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,CAAC;;IAE5C,IAAI,kBAAkB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;IAO1F,SAAS,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IAChE;;KAEC,CAAC;;;;;;;;;;IAUF,SAAS,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,KAAK;IACvD;QACI,IAAI,WAAW,GAAG,SAAS,CAAC;;QAE5B,IAAI,eAAe,GAAG,SAAS,CAAC,MAAM,CAAC;;;QAGvC,IAAI,eAAe,GAAG,CAAC;QACvB;;;YAGI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,eAAe,EAAE,CAAC,EAAE;YACxC;gBACI,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC;aACjC;SACJ;;QAED;;YAEI,IAAI,KAAK,CAAC,MAAM;YAChB;gBACI,KAAK,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;aACnC;;YAED,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC;YACpB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;;;YAGtB,KAAK,CAAC,SAAS,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;;YAE/B,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;;;YAG1B,IAAI,CAAC,SAAS,EAAE,CAAC;;;YAGjB,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;YAChD,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;YAC/D,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;SAC7B;;QAED,OAAO,KAAK,CAAC;KAChB,CAAC;;;;;;;;;IASF,SAAS,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,KAAK,EAAE,KAAK;IAClE;QACI,IAAI,KAAK,GAAG,CAAC,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM;QAC7C;YACI,MAAM,IAAI,KAAK,EAAE,KAAK,GAAG,wBAAwB,GAAG,KAAK,GAAG,6BAA6B,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC;SACxH;;QAED,IAAI,KAAK,CAAC,MAAM;QAChB;YACI,KAAK,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;SACnC;;QAED,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;;;QAGtB,KAAK,CAAC,SAAS,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;;QAE/B,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,EAAE,KAAK,CAAC,CAAC;;;QAGtC,IAAI,CAAC,SAAS,EAAE,CAAC;;;QAGjB,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;QAC7B,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QAC1B,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;;QAE5C,OAAO,KAAK,CAAC;KAChB,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,KAAK,EAAE,MAAM;IACvE;QACI,IAAI,KAAK,KAAK,MAAM;QACpB;YACI,OAAO;SACV;;QAED,IAAI,MAAM,GAAG,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;QACvC,IAAI,MAAM,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;;QAExC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC;QAC/B,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC;QAC9B,IAAI,CAAC,gBAAgB,CAAC,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC,CAAC;KAC5D,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,KAAK;IACjE;QACI,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;;QAEzC,IAAI,KAAK,KAAK,CAAC,CAAC;QAChB;YACI,MAAM,IAAI,KAAK,CAAC,0DAA0D,CAAC,CAAC;SAC/E;;QAED,OAAO,KAAK,CAAC;KAChB,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,KAAK,EAAE,KAAK;IACxE;QACI,IAAI,KAAK,GAAG,CAAC,IAAI,KAAK,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM;QAC9C;YACI,MAAM,IAAI,KAAK,EAAE,YAAY,GAAG,KAAK,GAAG,6BAA6B,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC;SACpG;;QAED,IAAI,YAAY,GAAG,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;;QAE7C,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE,YAAY,EAAE,CAAC,CAAC,CAAC;QAC5C,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,EAAE,KAAK,CAAC,CAAC;;QAEtC,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;KAChC,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,KAAK;IAC3D;QACI,IAAI,KAAK,GAAG,CAAC,IAAI,KAAK,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM;QAC9C;YACI,MAAM,IAAI,KAAK,EAAE,qBAAqB,GAAG,KAAK,GAAG,mBAAmB,EAAE,CAAC;SAC1E;;QAED,OAAO,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;KAC/B,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,KAAK;IAC7D;QACI,IAAI,WAAW,GAAG,SAAS,CAAC;;QAE5B,IAAI,eAAe,GAAG,SAAS,CAAC,MAAM,CAAC;;;QAGvC,IAAI,eAAe,GAAG,CAAC;QACvB;;;YAGI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,eAAe,EAAE,CAAC,EAAE;YACxC;gBACI,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC;aACpC;SACJ;;QAED;YACI,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;;YAEzC,IAAI,KAAK,KAAK,CAAC,CAAC,EAAE,EAAE,OAAO,IAAI,CAAC,EAAE;;YAElC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC;;YAEpB,KAAK,CAAC,SAAS,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;YAC/B,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC;;;YAGrC,IAAI,CAAC,SAAS,EAAE,CAAC;;;YAGjB,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;YAC7B,KAAK,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;YAC5B,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;SACjD;;QAED,OAAO,KAAK,CAAC;KAChB,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,KAAK;IACjE;QACI,IAAI,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;;;QAGnC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC;QACpB,KAAK,CAAC,SAAS,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;QAC/B,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC;;;QAGrC,IAAI,CAAC,SAAS,EAAE,CAAC;;;QAGjB,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;QAC7B,KAAK,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;QAC5B,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;;QAE9C,OAAO,KAAK,CAAC;KAChB,CAAC;;;;;;;;;IASF,SAAS,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,UAAU,EAAE,QAAQ;IAClF;QACI,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC;;QAE5C,IAAI,KAAK,GAAG,UAAU,CAAC;QACvB,IAAI,GAAG,GAAG,OAAO,QAAQ,KAAK,QAAQ,GAAG,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC;QACzE,IAAI,KAAK,GAAG,GAAG,GAAG,KAAK,CAAC;QACxB,IAAI,OAAO,CAAC;;QAEZ,IAAI,KAAK,GAAG,CAAC,IAAI,KAAK,IAAI,GAAG;QAC7B;YACI,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;;YAE7C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC;YACvC;gBACI,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,IAAI,CAAC;gBACzB,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS;gBACxB;oBACI,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;iBACvC;aACJ;;YAED,IAAI,CAAC,SAAS,EAAE,CAAC;;YAEjB,IAAI,CAAC,gBAAgB,CAAC,UAAU,CAAC,CAAC;;YAElC,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,EAAE,EAAE,GAAG;YAC7C;gBACI,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;gBACnC,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE,OAAO,CAAC,GAAG,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC;aACtD;;YAED,OAAO,OAAO,CAAC;SAClB;aACI,IAAI,KAAK,KAAK,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,KAAK,CAAC;QAClD;YACI,OAAO,EAAE,CAAC;SACb;;QAED,MAAM,IAAI,UAAU,CAAC,kEAAkE,CAAC,CAAC;KAC5F,CAAC;;;;;IAKF,SAAS,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,cAAc;IAC1D;QACI,IAAI,YAAY,GAAG,KAAK,CAAC;;QAEzB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC;QACpD;YACI,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;;YAE7B,KAAK,CAAC,gBAAgB,GAAG,CAAC,CAAC;;YAE3B,IAAI,CAAC,YAAY,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC;YACvC;gBACI,YAAY,GAAG,IAAI,CAAC;aACvB;SACJ;;QAED,IAAI,YAAY,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC;QAC5C;YACI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;SACpC;;QAED,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;KAC1B,CAAC;;;;;IAKF,SAAS,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;IAC9D;QACI,IAAI,IAAI,CAAC,gBAAgB,IAAI,IAAI,CAAC,SAAS;QAC3C;YACI,IAAI,CAAC,YAAY,EAAE,CAAC;SACvB;;QAED,IAAI,CAAC,SAAS,EAAE,CAAC;;QAEjB,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;;;QAGtD,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC;;QAEtD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC;QACpD;YACI,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;;YAE7B,IAAI,KAAK,CAAC,OAAO;YACjB;gBACI,KAAK,CAAC,eAAe,EAAE,CAAC;aAC3B;SACJ;KACJ,CAAC;;;;;;IAMF,SAAS,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;IAC9D;QACI,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC;;QAErB,IAAI,CAAC,gBAAgB,EAAE,CAAC;;QAExB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;QAC7C;YACI,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;;YAE7B,IAAI,CAAC,KAAK,CAAC,OAAO,IAAI,CAAC,KAAK,CAAC,UAAU;YACvC;gBACI,SAAS;aACZ;;YAED,KAAK,CAAC,eAAe,EAAE,CAAC;;;YAGxB,IAAI,KAAK,CAAC,KAAK;YACf;gBACI,KAAK,CAAC,KAAK,CAAC,eAAe,EAAE,CAAC;gBAC9B,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,KAAK,CAAC,OAAO,EAAE,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;aAClE;iBACI,IAAI,KAAK,CAAC,UAAU;YACzB;gBACI,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,KAAK,CAAC,OAAO,EAAE,KAAK,CAAC,UAAU,CAAC,CAAC;aAC/D;;YAED;gBACI,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;aACzC;SACJ;;QAED,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,SAAS,CAAC;KACvC,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IAChE;;KAEC,CAAC;;;;;;;IAOF,SAAS,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ;IACtD;;QAEI,IAAI,CAAC,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,UAAU,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU;QAC7D;YACI,OAAO;SACV;;;QAGD,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;QACvD;YACI,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC;SACjC;;QAED;YACI,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;;;YAGvB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC;YACpD;gBACI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;aACrC;SACJ;KACJ,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,QAAQ;IACtE;QACI,QAAQ,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;;QAEvB,IAAI,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC3B,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;;;QAGtB,IAAI,OAAO;QACX;YACI,IAAI,CAAC,IAAI,CAAC,eAAe;YACzB;gBACI,IAAI,CAAC,eAAe,GAAG,EAAE,CAAC;aAC7B;;YAED,IAAI,CAAC,eAAe,CAAC,MAAM,GAAG,CAAC,CAAC;;YAEhC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;YACvC;gBACI,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO;gBACtB;oBACI,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC;iBACzC;aACJ;;YAED,IAAI,IAAI,CAAC,eAAe,CAAC,MAAM;YAC/B;gBACI,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,eAAe,CAAC,CAAC;aACpD;SACJ;;QAED,IAAI,IAAI;QACR;YACI,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC;SACxC;;;QAGD,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;;;QAGvB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,GAAG,GAAG,CAAC,EAAE,GAAG,EAAE;QAC1D;YACI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;SACvC;;QAED,QAAQ,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;;QAEvB,IAAI,IAAI;QACR;YACI,QAAQ,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC;SACvC;;QAED,IAAI,OAAO,IAAI,IAAI,CAAC,eAAe,IAAI,IAAI,CAAC,eAAe,CAAC,MAAM;QAClE;YACI,QAAQ,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC;SACzB;KACJ,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,QAAQ;IACxD;;KAEC,CAAC;;;;;;;;;;;;;;;IAeF,SAAS,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,OAAO;IACvD;QACI,aAAa,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAE3C,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;QAEvB,IAAI,eAAe,GAAG,OAAO,OAAO,KAAK,SAAS,GAAG,OAAO,GAAG,OAAO,IAAI,OAAO,CAAC,QAAQ,CAAC;;QAE3F,IAAI,WAAW,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;;QAE/D,IAAI,eAAe;QACnB;YACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,MAAM,EAAE,EAAE,CAAC;YAC3C;gBACI,WAAW,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;aACnC;SACJ;KACJ,CAAC;;;;;;;IAOF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,CAAC,KAAK,CAAC;KACrD,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,KAAK,GAAG,IAAI,CAAC,cAAc,EAAE,CAAC,KAAK,CAAC;;QAExC,IAAI,KAAK,KAAK,CAAC;QACf;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,GAAG,KAAK,CAAC;SAChC;;QAED;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC;SACpB;;QAED,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;KACvB,CAAC;;;;;;;IAOF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,CAAC,MAAM,CAAC;KACtD,CAAC;;IAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,KAAK;IAC/C;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,cAAc,EAAE,CAAC,MAAM,CAAC;;QAE1C,IAAI,MAAM,KAAK,CAAC;QAChB;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,GAAG,MAAM,CAAC;SACjC;;QAED;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC;SACpB;;QAED,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;KACxB,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,SAAS,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAEnE,OAAO,SAAS,CAAC;CACpB,CAAC,aAAa,CAAC,CAAC,CAAC;;;AAGlB,SAAS,CAAC,SAAS,CAAC,wBAAwB,GAAG,SAAS,CAAC,SAAS,CAAC,eAAe,CAAC;;ACpwDnF;;;;;;;AAOA,AAEA;;;;;;;;;;;;;;;;;AAiBA,IAAI,gBAAgB,GAAG;;;;;;;;IAQnB,UAAU,EAAE,KAAK;;;;;;;;;IASjB,eAAe,EAAE,IAAI;;;;;;;;IAQrB,cAAc,EAAE,IAAI;;;;;;;;IAQpB,QAAQ,EAAE,CAAC;;;;;;;IAOX,iBAAiB,EAAE,KAAK;;;;;;;IAOxB,cAAc,EAAE,KAAK;CACxB,CAAC;;;AAGF,aAAa,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;;AAEtC,IAAI,YAAY,GAAG,CAAC,CAAC;;AAErB,IAAI,cAAc,GAAG,GAAG,CAAC;AACzB,IAAI,eAAe,GAAG,CAAC,CAAC;AACxB,IAAI,eAAe,GAAG,CAAC,CAAC;AACxB,IAAI,gBAAgB,GAAG,CAAC,CAAC;;AAEzB,IAAI,aAAa,GAAG,CAAC,CAAC;AACtB,IAAI,cAAc,GAAG,CAAC,IAAI,CAAC;AAC3B,IAAI,cAAc,GAAG,CAAC,IAAI,CAAC;AAC3B,IAAI,eAAe,GAAG,CAAC,CAAC;;;;;;;;;;;;;;AAcxB,IAAI,oBAAoB,GAAG,SAAS,oBAAoB,CAAC,QAAQ;AACjE;;;;;IAKI,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;IACrB,IAAI,QAAQ,CAAC,MAAM,IAAI,QAAQ,CAAC,KAAK;IACrC;QACI,IAAI,CAAC,eAAe,EAAE,CAAC;KAC1B;;;IAGD,IAAI,GAAG,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;;IAExC,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,cAAc,GAAG,IAAI,CAAC;IACxC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,cAAc,GAAG,IAAI,CAAC;IACzC,GAAG,CAAC,KAAK,CAAC,QAAQ,GAAG,UAAU,CAAC;IAChC,GAAG,CAAC,KAAK,CAAC,GAAG,GAAG,eAAe,GAAG,IAAI,CAAC;IACvC,GAAG,CAAC,KAAK,CAAC,IAAI,GAAG,eAAe,GAAG,IAAI,CAAC;IACxC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,gBAAgB,CAAC;;;;;;;;IAQpC,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;;;;;;;;IAQf,IAAI,CAAC,IAAI,GAAG,EAAE,CAAC;;;;;;;;IAQf,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;;;;;;;IAOlB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;;IAOnB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;;;;;;;;IAQzB,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;;;;;;;;IAQnB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;IAQ7C,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;IAOjD,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;;;;;;;IAOtB,IAAI,CAAC,qBAAqB,GAAG,KAAK,CAAC;;;IAGnC,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,IAAI,CAAC,UAAU,EAAE,KAAK,CAAC,CAAC;CAC9D,CAAC;;;;;;;AAOF,oBAAoB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;AACzE;QACQ,IAAI,MAAM,GAAG,IAAI,CAAC;;IAEtB,IAAI,OAAO,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;IAE/C,OAAO,CAAC,KAAK,CAAC,KAAK,GAAG,aAAa,GAAG,IAAI,CAAC;IAC3C,OAAO,CAAC,KAAK,CAAC,MAAM,GAAG,aAAa,GAAG,IAAI,CAAC;IAC5C,OAAO,CAAC,KAAK,CAAC,QAAQ,GAAG,UAAU,CAAC;IACpC,OAAO,CAAC,KAAK,CAAC,GAAG,GAAG,cAAc,GAAG,IAAI,CAAC;IAC1C,OAAO,CAAC,KAAK,CAAC,IAAI,GAAG,cAAc,GAAG,IAAI,CAAC;IAC3C,OAAO,CAAC,KAAK,CAAC,MAAM,GAAG,eAAe,CAAC;IACvC,OAAO,CAAC,KAAK,CAAC,eAAe,GAAG,SAAS,CAAC;IAC1C,OAAO,CAAC,KAAK,GAAG,UAAU,CAAC;;IAE3B,OAAO,CAAC,gBAAgB,CAAC,OAAO,EAAE,YAAY;QAC1C,MAAM,CAAC,qBAAqB,GAAG,IAAI,CAAC;QACpC,MAAM,CAAC,QAAQ,EAAE,CAAC;QAClB,MAAM,CAAC,gBAAgB,EAAE,CAAC;KAC7B,CAAC,CAAC;;IAEH,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;IACnC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;CAC3B,CAAC;;;;;;;AAOF,oBAAoB,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;AAC3E;IACI,IAAI,CAAC,IAAI,CAAC,QAAQ;IAClB;QACI,OAAO;KACV;IACD,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;IACzC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;CACxB,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ;AAC3D;IACI,IAAI,IAAI,CAAC,QAAQ;IACjB;QACI,OAAO;KACV;;IAED,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;IAErB,MAAM,CAAC,QAAQ,CAAC,gBAAgB,CAAC,WAAW,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;IACvE,MAAM,CAAC,mBAAmB,CAAC,SAAS,EAAE,IAAI,CAAC,UAAU,EAAE,KAAK,CAAC,CAAC;;IAE9D,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;;IAElD,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU;IACjC;QACI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KACvD;CACJ,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;AAC/D;IACI,IAAI,CAAC,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,qBAAqB;IAChD;QACI,OAAO;KACV;;IAED,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;;IAEtB,MAAM,CAAC,QAAQ,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;IAC1E,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,IAAI,CAAC,UAAU,EAAE,KAAK,CAAC,CAAC;;IAE3D,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;;IAE7C,IAAI,IAAI,CAAC,GAAG,CAAC,UAAU;IACvB;QACI,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KAC7C;CACJ,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,uBAAuB,GAAG,SAAS,uBAAuB,EAAE,aAAa;AACxG;IACI,IAAI,CAAC,aAAa,CAAC,OAAO;IAC1B;QACI,OAAO;KACV;;IAED,IAAI,aAAa,CAAC,UAAU,IAAI,aAAa,CAAC,WAAW;IACzD;QACI,IAAI,CAAC,aAAa,CAAC,iBAAiB;QACpC;YACI,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC;SAChC;;QAED,aAAa,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;KAC1C;;IAED,IAAI,QAAQ,GAAG,aAAa,CAAC,QAAQ,CAAC;;IAEtC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;IACxC;QACI,IAAI,CAAC,uBAAuB,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;KAC7C;CACJ,CAAC;;;;;;;AAOF,oBAAoB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;AACvD;IACI,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,iBAAiB;IACpC;QACI,OAAO;KACV;;;IAGD,IAAI,CAAC,uBAAuB,CAAC,IAAI,CAAC,QAAQ,CAAC,mBAAmB,CAAC,CAAC;;IAEhE,IAAI,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,qBAAqB,EAAE,CAAC;IACtD,IAAI,EAAE,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC;IAC1C,IAAI,EAAE,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC;;IAE5C,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;;IAEnB,GAAG,CAAC,KAAK,CAAC,IAAI,GAAG,CAAC,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC;IACpC,GAAG,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAClC,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,IAAI,IAAI,CAAC;IAC/C,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,IAAI,IAAI,CAAC;;IAEjD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;IAC7C;QACI,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;;QAE7B,IAAI,KAAK,CAAC,QAAQ,KAAK,IAAI,CAAC,QAAQ;QACpC;YACI,KAAK,CAAC,iBAAiB,GAAG,KAAK,CAAC;;YAEhC,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;YACjC,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;YAC3C,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;YACrC,KAAK,CAAC,cAAc,GAAG,IAAI,CAAC;;YAE5B,CAAC,EAAE,CAAC;;YAEJ,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,KAAK,CAAC;YAC9B;gBACI,IAAI,CAAC,UAAU,EAAE,CAAC;aACrB;SACJ;;QAED;;YAEI,GAAG,GAAG,KAAK,CAAC,cAAc,CAAC;YAC3B,IAAI,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC;YAC5B,IAAI,EAAE,GAAG,KAAK,CAAC,cAAc,CAAC;;YAE9B,IAAI,KAAK,CAAC,OAAO;YACjB;gBACI,GAAG,CAAC,KAAK,CAAC,IAAI,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,OAAO,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,IAAI,CAAC;gBAC5D,GAAG,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,OAAO,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,IAAI,CAAC;;gBAE3D,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,CAAC,OAAO,CAAC,KAAK,GAAG,EAAE,CAAC,CAAC,GAAG,EAAE,IAAI,IAAI,CAAC;gBACrD,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC,GAAG,EAAE,IAAI,IAAI,CAAC;aAC1D;;YAED;gBACI,OAAO,GAAG,KAAK,CAAC,SAAS,EAAE,CAAC;;gBAE5B,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;;gBAEzB,GAAG,CAAC,KAAK,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,IAAI,IAAI,CAAC;gBACzC,GAAG,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,IAAI,IAAI,CAAC;;gBAExC,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,CAAC,OAAO,CAAC,KAAK,GAAG,EAAE,IAAI,IAAI,CAAC;gBAC9C,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,MAAM,GAAG,EAAE,IAAI,IAAI,CAAC;;;gBAGhD,IAAI,GAAG,CAAC,KAAK,KAAK,KAAK,CAAC,eAAe,IAAI,KAAK,CAAC,eAAe,KAAK,IAAI;gBACzE;oBACI,GAAG,CAAC,KAAK,GAAG,KAAK,CAAC,eAAe,CAAC;iBACrC;gBACD,IAAI,GAAG,CAAC,YAAY,CAAC,YAAY,CAAC,KAAK,KAAK,CAAC,cAAc;uBACpD,KAAK,CAAC,cAAc,KAAK,IAAI;gBACpC;oBACI,GAAG,CAAC,YAAY,CAAC,YAAY,EAAE,KAAK,CAAC,cAAc,CAAC,CAAC;iBACxD;aACJ;SACJ;KACJ;;;IAGD,IAAI,CAAC,QAAQ,EAAE,CAAC;CACnB,CAAC;;;;;;;AAOF,oBAAoB,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,OAAO;AACxE;IACI,IAAI,OAAO,CAAC,CAAC,GAAG,CAAC;IACjB;QACI,OAAO,CAAC,KAAK,IAAI,OAAO,CAAC,CAAC,CAAC;QAC3B,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC;KACjB;;IAED,IAAI,OAAO,CAAC,CAAC,GAAG,CAAC;IACjB;QACI,OAAO,CAAC,MAAM,IAAI,OAAO,CAAC,CAAC,CAAC;QAC5B,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC;KACjB;;IAED,IAAI,OAAO,CAAC,CAAC,GAAG,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK;IACnD;QACI,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,GAAG,OAAO,CAAC,CAAC,CAAC;KACnD;;IAED,IAAI,OAAO,CAAC,CAAC,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM;IACrD;QACI,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;KACrD;CACJ,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,aAAa;AAC1E;;;IAGI,IAAI,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;;IAE1B,IAAI,CAAC,GAAG;IACR;QACI,GAAG,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;QAEvC,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,cAAc,GAAG,IAAI,CAAC;QACxC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,cAAc,GAAG,IAAI,CAAC;QACzC,GAAG,CAAC,KAAK,CAAC,eAAe,GAAG,IAAI,CAAC,KAAK,GAAG,mBAAmB,GAAG,aAAa,CAAC;QAC7E,GAAG,CAAC,KAAK,CAAC,QAAQ,GAAG,UAAU,CAAC;QAChC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,gBAAgB,CAAC;QACpC,GAAG,CAAC,KAAK,CAAC,WAAW,GAAG,MAAM,CAAC;;;QAG/B,IAAI,SAAS,CAAC,SAAS,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;QAC5D;;YAEI,GAAG,CAAC,YAAY,CAAC,WAAW,EAAE,KAAK,CAAC,CAAC;SACxC;;QAED;YACI,GAAG,CAAC,YAAY,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC;SAC3C;;QAED,IAAI,SAAS,CAAC,SAAS,CAAC,KAAK,CAAC,cAAc,CAAC;QAC7C;;YAEI,GAAG,CAAC,YAAY,CAAC,eAAe,EAAE,WAAW,CAAC,CAAC;SAClD;;QAED;;YAEI,GAAG,CAAC,YAAY,CAAC,eAAe,EAAE,MAAM,CAAC,CAAC;SAC7C;;QAED,GAAG,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;QACxD,GAAG,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;QACxD,GAAG,CAAC,gBAAgB,CAAC,UAAU,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;KACjE;;IAED,IAAI,aAAa,CAAC,eAAe,IAAI,aAAa,CAAC,eAAe,KAAK,IAAI;IAC3E;QACI,GAAG,CAAC,KAAK,GAAG,aAAa,CAAC,eAAe,CAAC;KAC7C;SACI,IAAI,CAAC,aAAa,CAAC,cAAc;gBAC1B,aAAa,CAAC,cAAc,KAAK,IAAI;IACjD;QACI,GAAG,CAAC,KAAK,GAAG,gBAAgB,IAAI,aAAa,CAAC,QAAQ,CAAC,CAAC;KAC3D;;IAED,IAAI,aAAa,CAAC,cAAc;WACzB,aAAa,CAAC,cAAc,KAAK,IAAI;IAC5C;QACI,GAAG,CAAC,YAAY,CAAC,YAAY,EAAE,aAAa,CAAC,cAAc,CAAC,CAAC;KAChE;;;;IAID,aAAa,CAAC,iBAAiB,GAAG,IAAI,CAAC;IACvC,aAAa,CAAC,cAAc,GAAG,GAAG,CAAC;IACnC,GAAG,CAAC,aAAa,GAAG,aAAa,CAAC;;IAElC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;IAClC,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,aAAa,CAAC,cAAc,CAAC,CAAC;IACnD,aAAa,CAAC,cAAc,CAAC,QAAQ,GAAG,aAAa,CAAC,QAAQ,CAAC;CAClE,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC;AAC9D;IACI,IAAI,kBAAkB,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC;;IAE3D,kBAAkB,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,OAAO,EAAE,kBAAkB,CAAC,SAAS,CAAC,CAAC;IAChG,kBAAkB,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,YAAY,EAAE,kBAAkB,CAAC,SAAS,CAAC,CAAC;IACrG,kBAAkB,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,KAAK,EAAE,kBAAkB,CAAC,SAAS,CAAC,CAAC;CACjG,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC;AAC9D;IACI,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,WAAW,EAAE,KAAK,CAAC;IAC9C;QACI,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;KACnD;IACD,IAAI,kBAAkB,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC;;IAE3D,kBAAkB,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,WAAW,EAAE,kBAAkB,CAAC,SAAS,CAAC,CAAC;CACvG,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,CAAC;AACpE;IACI,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,WAAW,EAAE,KAAK,CAAC;IAC9C;QACI,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC;KAChD;IACD,IAAI,kBAAkB,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC;;IAE3D,kBAAkB,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,UAAU,EAAE,kBAAkB,CAAC,SAAS,CAAC,CAAC;CACtG,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,CAAC;AAClE;IACI,IAAI,CAAC,CAAC,OAAO,KAAK,YAAY;IAC9B;QACI,OAAO;KACV;;IAED,IAAI,CAAC,QAAQ,EAAE,CAAC;CACnB,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,CAAC;AACtE;IACI,IAAI,CAAC,CAAC,SAAS,KAAK,CAAC,IAAI,CAAC,CAAC,SAAS,KAAK,CAAC;IAC1C;QACI,OAAO;KACV;;IAED,IAAI,CAAC,UAAU,EAAE,CAAC;CACrB,CAAC;;;;;;AAMF,oBAAoB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AACzD;IACI,IAAI,CAAC,gBAAgB,EAAE,CAAC;IACxB,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC;;IAEhB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;IAC7C;QACI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,IAAI,CAAC;KAC/B;;IAED,MAAM,CAAC,QAAQ,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;IAC1E,MAAM,CAAC,mBAAmB,CAAC,SAAS,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;;IAEvD,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;IACrB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;CACxB,CAAC;;ACxnBF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgDA,IAAI,MAAM,GAAG,SAAS,MAAM,CAAC,IAAI;AACjC;IACI,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;IAChB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;CACxB,CAAC;;AAEF,IAAIF,oBAAkB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;AAMxF,MAAM,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACrE;IACI,IAAI,SAAS,CAAC,MAAM,GAAG,CAAC;IACxB;QACI,MAAM,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC;KAC5C;;IAED,IAAI,GAAG,GAAG,IAAI,CAAC;QACX,IAAI,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;QACpB,IAAI,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC;;IAE1B,IAAI,CAAC,WAAW,EAAE,CAAC;;IAEnB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE;IAChD;QACI,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;KAClD;;IAED,IAAI,KAAK,KAAK,IAAI,CAAC,KAAK;IACxB;QACI,IAAI,CAAC,WAAW,EAAE,CAAC;KACtB;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;AAEF,MAAM,CAAC,SAAS,CAAC,qBAAqB,GAAG,SAAS,qBAAqB;AACvE;IACI,IAAI,IAAI,CAAC,WAAW,GAAG,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC;IACjD;QACI,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;QACrB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;KACpC;CACJ,CAAC;;;;;;;;;;;;;;;;;;;AAmBF,MAAM,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,IAAI;AACzC;IACI,IAAI,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC;IACpB;QACI,IAAI,CAAC,qBAAqB,EAAE,CAAC;QAC7B,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QAClB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACzB;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;AAMF,MAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,IAAI;AAC/C;IACI,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;;IAErC,IAAI,KAAK,KAAK,CAAC,CAAC;IAChB;QACI,IAAI,CAAC,qBAAqB,EAAE,CAAC;QAC7B,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;KAC/B;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;AAMF,MAAM,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,IAAI;AACnD;IACI,OAAO,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;CAC1C,CAAC;;;;;AAKF,MAAM,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;AAC/C;IACI,IAAI,CAAC,qBAAqB,EAAE,CAAC;IAC7B,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;;IAEtB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;AAKF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC3C;IACI,IAAI,CAAC,SAAS,EAAE,CAAC;IACjB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;CACrB,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;AAC/B;IACI,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,KAAK,CAAC,CAAC;CAClC,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;AAC9B;IACI,OAAO,IAAI,CAAC,KAAK,CAAC;CACrB,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,MAAM,CAAC,SAAS,EAAEA,oBAAkB,EAAE,CAAC;;;;;;;;AAQhE,MAAM,CAAC,SAAS,CAAC,QAAQ,GAAG,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC;;;;;;;;AAQlD,MAAM,CAAC,SAAS,CAAC,GAAG,GAAG,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC;;AClN7C;;;;;;;AAOA,AACA;;;;;;;;;;AAUA,QAAQ,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;;;;;;;;;;;;AAkB5B,IAAI,eAAe,GAAG;IAClB,WAAW,EAAE,EAAE;IACf,IAAI,EAAE,EAAE;IACR,MAAM,EAAE,CAAC;IACT,GAAG,EAAE,CAAC,EAAE;IACR,OAAO,EAAE,CAAC,EAAE;CACf,CAAC;;;;;;;;;AASF,IAAI,cAAc,GAAG,SAAS,cAAc,CAAC,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI;AACxE;IACI,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,IAAI,CAAC;IACzC,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,CAAC,CAAC;IACxC,KAAK,IAAI,KAAK,KAAK,CAAC,GAAG,IAAI,GAAG,KAAK,CAAC;;;;;;;IAOpC,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;;;;;;;IAOb,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;;;;;;IAOvB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;;;;;;;IAOzB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;IAOjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;IAOjB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;;;;;IAOrB,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;CAC3B,CAAC;;;;;;;;;AASF,cAAc,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,EAAE,EAAE,OAAO;AAC5D;IACI,OAAO,GAAG,OAAO,IAAI,IAAI,CAAC;;IAE1B,OAAO,IAAI,CAAC,EAAE,KAAK,EAAE,IAAI,IAAI,CAAC,OAAO,KAAK,OAAO,CAAC;CACrD,CAAC;;;;;;;;AAQF,cAAc,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,SAAS;AACxD;IACI,IAAI,IAAI,CAAC,EAAE;IACX;QACI,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;SACzC;;QAED;YACI,IAAI,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC;SACtB;KACJ;;IAED,IAAI,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC;;IAEzB,IAAI,IAAI,CAAC,IAAI;IACb;QACI,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;KACtB;;;;IAID,IAAI,IAAI,CAAC,UAAU;IACnB;QACI,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;KACpB;;IAED,OAAO,QAAQ,CAAC;CACnB,CAAC;;;;;;;AAOF,cAAc,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,QAAQ;AAC7D;IACI,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;IACzB,IAAI,QAAQ,CAAC,IAAI;IACjB;QACI,QAAQ,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;KACjC;IACD,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;IAC1B,QAAQ,CAAC,IAAI,GAAG,IAAI,CAAC;CACxB,CAAC;;;;;;;;;AASF,cAAc,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,IAAI;AACzD;QACQ,KAAK,IAAI,KAAK,KAAK,CAAC,GAAG,IAAI,GAAG,KAAK,CAAC;;IAExC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;IACf,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;IAGpB,IAAI,IAAI,CAAC,QAAQ;IACjB;QACI,IAAI,CAAC,QAAQ,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;KAClC;;IAED,IAAI,IAAI,CAAC,IAAI;IACb;QACI,IAAI,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;KACtC;;;IAGD,IAAI,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC;;;IAGzB,IAAI,CAAC,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,QAAQ,CAAC;IACnC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;IAErB,OAAO,QAAQ,CAAC;CACnB,CAAC;;;;;;;;;;;AAWF,IAAI,MAAM,GAAG,SAAS,MAAM;AAC5B;IACI,IAAI,MAAM,GAAG,IAAI,CAAC;;;;;;;IAOlB,IAAI,CAAC,KAAK,GAAG,IAAI,cAAc,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;IAOtD,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;;;;;;;IAQvB,IAAI,CAAC,aAAa,GAAG,GAAG,CAAC;;;;;;;IAOzB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;;;;;;;;;IAUvB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;;;;;;;;;;IAWvB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;;;;;;;;;;;;;;IAcnB,IAAI,CAAC,OAAO,GAAG,CAAC,GAAG,QAAQ,CAAC,WAAW,CAAC;;;;;;;;;;;;;IAaxC,IAAI,CAAC,SAAS,GAAG,CAAC,GAAG,QAAQ,CAAC,WAAW,CAAC;;;;;;;;;;;;IAY1C,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC,CAAC;;;;;;;;;;;;IAYnB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;;;;;;IAaf,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;;;;;;;IAQrB,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;;;;;;;;;IASxB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;;;;;;;;;;;;;IAarB,IAAI,CAAC,KAAK,GAAG,UAAU,IAAI,EAAE;QACzB,MAAM,CAAC,UAAU,GAAG,IAAI,CAAC;;QAEzB,IAAI,MAAM,CAAC,OAAO;QAClB;;YAEI,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;YAEpB,IAAI,MAAM,CAAC,OAAO,IAAI,MAAM,CAAC,UAAU,KAAK,IAAI,IAAI,MAAM,CAAC,KAAK,CAAC,IAAI;YACrE;gBACI,MAAM,CAAC,UAAU,GAAG,qBAAqB,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;aAC3D;SACJ;KACJ,CAAC;CACL,CAAC;;AAEF,IAAIA,oBAAkB,GAAG,EAAE,GAAG,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;AACvH,IAAIG,iBAAe,GAAG,EAAE,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;AASxF,MAAM,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;AAC7D;IACI,IAAI,IAAI,CAAC,UAAU,KAAK,IAAI,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI;IAC/C;;QAEI,IAAI,CAAC,QAAQ,GAAG,WAAW,CAAC,GAAG,EAAE,CAAC;QAClC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC;QAChC,IAAI,CAAC,UAAU,GAAG,qBAAqB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KACvD;CACJ,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;AAC3D;IACI,IAAI,IAAI,CAAC,UAAU,KAAK,IAAI;IAC5B;QACI,oBAAoB,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QACtC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;KAC1B;CACJ,CAAC;;;;;;;;;;;;AAYF,MAAM,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;AAC7D;IACI,IAAI,IAAI,CAAC,OAAO;IAChB;QACI,IAAI,CAAC,gBAAgB,EAAE,CAAC;KAC3B;SACI,IAAI,IAAI,CAAC,SAAS;IACvB;QACI,IAAI,CAAC,KAAK,EAAE,CAAC;KAChB;CACJ,CAAC;;;;;;;;;;;AAWF,MAAM,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,QAAQ;AAC1D;QACQ,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,eAAe,CAAC,MAAM,CAAC;;IAEjE,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,cAAc,CAAC,EAAE,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC,CAAC;CACvE,CAAC;;;;;;;;;;AAUF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,QAAQ;AAClE;QACQ,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,eAAe,CAAC,MAAM,CAAC;;IAEjE,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,cAAc,CAAC,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC,CAAC;CAC7E,CAAC;;;;;;;;;;;AAWF,MAAM,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,QAAQ;AAC/D;;IAEI,IAAI,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;IAC9B,IAAI,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC;;;IAG1B,IAAI,CAAC,OAAO;IACZ;QACI,QAAQ,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;KAC9B;;IAED;;QAEI,OAAO,OAAO;QACd;YACI,IAAI,QAAQ,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ;YACxC;gBACI,QAAQ,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;gBAC3B,MAAM;aACT;YACD,QAAQ,GAAG,OAAO,CAAC;YACnB,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC;SAC1B;;;QAGD,IAAI,CAAC,QAAQ,CAAC,QAAQ;QACtB;YACI,QAAQ,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;SAC9B;KACJ;;IAED,IAAI,CAAC,gBAAgB,EAAE,CAAC;;IAExB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;;AAUF,MAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,EAAE,EAAE,OAAO;AACtD;IACI,IAAI,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;;IAE/B,OAAO,QAAQ;IACf;;;;QAII,IAAI,QAAQ,CAAC,KAAK,CAAC,EAAE,EAAE,OAAO,CAAC;QAC/B;YACI,QAAQ,GAAG,QAAQ,CAAC,OAAO,EAAE,CAAC;SACjC;;QAED;YACI,QAAQ,GAAG,QAAQ,CAAC,IAAI,CAAC;SAC5B;KACJ;;IAED,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI;IACpB;QACI,IAAI,CAAC,eAAe,EAAE,CAAC;KAC1B;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;AAMF,MAAM,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACvC;IACI,IAAI,CAAC,IAAI,CAAC,OAAO;IACjB;QACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,gBAAgB,EAAE,CAAC;KAC3B;CACJ,CAAC;;;;;;AAMF,MAAM,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;AACrC;IACI,IAAI,IAAI,CAAC,OAAO;IAChB;QACI,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;QACrB,IAAI,CAAC,eAAe,EAAE,CAAC;KAC1B;CACJ,CAAC;;;;;;AAMF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC3C;IACI,IAAI,CAAC,IAAI,CAAC,UAAU;IACpB;QACI,IAAI,CAAC,IAAI,EAAE,CAAC;;QAEZ,IAAI,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;;QAE/B,OAAO,QAAQ;QACf;YACI,QAAQ,GAAG,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;SACrC;;QAED,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC;QACrB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB;CACJ,CAAC;;;;;;;;;;;;;;;AAeF,MAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,WAAW;AACtD;QACQ,KAAK,WAAW,KAAK,KAAK,CAAC,GAAG,WAAW,GAAG,WAAW,CAAC,GAAG,EAAE,CAAC;;IAElE,IAAI,SAAS,CAAC;;;;;;;;;;;;;;;;;IAiBd,IAAI,WAAW,GAAG,IAAI,CAAC,QAAQ;IAC/B;;QAEI,SAAS,GAAG,IAAI,CAAC,SAAS,GAAG,WAAW,GAAG,IAAI,CAAC,QAAQ,CAAC;;;QAGzD,IAAI,SAAS,GAAG,IAAI,CAAC,aAAa;QAClC;YACI,SAAS,GAAG,IAAI,CAAC,aAAa,CAAC;SAClC;;QAED,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC;;;;;QAKxB,IAAI,IAAI,CAAC,aAAa;QACtB;YACI,IAAI,KAAK,GAAG,WAAW,GAAG,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;YAE9C,IAAI,KAAK,GAAG,IAAI,CAAC,aAAa;YAC9B;gBACI,OAAO;aACV;;YAED,IAAI,CAAC,UAAU,GAAG,WAAW,IAAI,KAAK,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC;SAChE;;QAED,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC;QACzB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,OAAO,GAAG,QAAQ,CAAC,WAAW,CAAC;;;;QAIrD,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;;;QAGtB,IAAI,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC;;QAEzB,OAAO,QAAQ;QACf;YACI,QAAQ,GAAG,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SAC5C;;QAED,IAAI,CAAC,IAAI,CAAC,IAAI;QACd;YACI,IAAI,CAAC,eAAe,EAAE,CAAC;SAC1B;KACJ;;IAED;QACI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;KACtD;;IAED,IAAI,CAAC,QAAQ,GAAG,WAAW,CAAC;CAC/B,CAAC;;;;;;;;;;;;AAYFH,oBAAkB,CAAC,GAAG,CAAC,GAAG,GAAG;AAC7B;IACI,OAAO,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC;CAChC,CAAC;;;;;;;;;;;;;AAaFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC;CACpC,CAAC;;AAEFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,GAAG;AAC7C;;IAEI,IAAI,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;IAGxC,IAAI,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC,WAAW,CAAC,CAAC;;IAEzE,IAAI,CAAC,aAAa,GAAG,CAAC,GAAG,OAAO,CAAC;CACpC,CAAC;;;;;;;;;;;;AAYFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;AAChC;IACI,IAAI,IAAI,CAAC,aAAa;IACtB;QACI,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC;KAChD;;IAED,OAAO,CAAC,CAAC;CACZ,CAAC;;AAEFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,GAAG;AAC7C;IACI,IAAI,GAAG,KAAK,CAAC;IACb;QACI,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;KAC1B;;IAED;;QAEI,IAAI,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;QAExC,IAAI,CAAC,aAAa,GAAG,CAAC,IAAI,MAAM,GAAG,IAAI,CAAC,CAAC;KAC5C;CACJ,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6CFG,iBAAe,CAAC,MAAM,CAAC,GAAG,GAAG;AAC7B;IACI,IAAI,CAAC,MAAM,CAAC,OAAO;IACnB;QACI,IAAI,MAAM,GAAG,MAAM,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;QAE3C,MAAM,CAAC,SAAS,GAAG,IAAI,CAAC;QACxB,MAAM,CAAC,UAAU,GAAG,IAAI,CAAC;KAC5B;;IAED,OAAO,MAAM,CAAC,OAAO,CAAC;CACzB,CAAC;;;;;;;;;;;;AAYFA,iBAAe,CAAC,MAAM,CAAC,GAAG,GAAG;AAC7B;IACI,IAAI,CAAC,MAAM,CAAC,OAAO;IACnB;QACI,IAAI,MAAM,GAAG,MAAM,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;QAE3C,MAAM,CAAC,SAAS,GAAG,IAAI,CAAC;QACxB,MAAM,CAAC,UAAU,GAAG,IAAI,CAAC;KAC5B;;IAED,OAAO,MAAM,CAAC,OAAO,CAAC;CACzB,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,MAAM,CAAC,SAAS,EAAEH,oBAAkB,EAAE,CAAC;AAChE,MAAM,CAAC,gBAAgB,EAAE,MAAM,EAAEG,iBAAe,EAAE,CAAC;;;;;;;;;;;;;AAanD,IAAI,YAAY,GAAG,SAAS,YAAY,IAAI,EAAE,CAAC;;AAE/C,YAAY,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,OAAO;AAC1C;QACQ,IAAI,MAAM,GAAG,IAAI,CAAC;;;IAGtB,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC;QACpB,SAAS,EAAE,IAAI;QACf,YAAY,EAAE,KAAK;KACtB,EAAE,OAAO,CAAC,CAAC;;;IAGZ,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,QAAQ;QAChC;YACI,GAAG,EAAE,SAAS,GAAG,CAAC,MAAM;YACxB;gBACI,IAAI,IAAI,CAAC,OAAO;gBAChB;oBACI,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;iBAC1C;gBACD,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;gBACtB,IAAI,MAAM;gBACV;oBACI,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,EAAE,eAAe,CAAC,GAAG,CAAC,CAAC;iBACtD;aACJ;YACD,GAAG,EAAE,SAAS,GAAG;YACjB;gBACI,OAAO,IAAI,CAAC,OAAO,CAAC;aACvB;SACJ,CAAC,CAAC;;;;;;;IAOP,IAAI,CAAC,IAAI,GAAG,YAAY;QACpB,MAAM,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC;KACzB,CAAC;;;;;;;IAOF,IAAI,CAAC,KAAK,GAAG,YAAY;QACrB,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC;KAC1B,CAAC;;;;;;;;;;IAUF,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;;;;IAUpB,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,YAAY,GAAG,MAAM,CAAC,MAAM,GAAG,IAAI,MAAM,EAAE,CAAC;;;IAGlE,IAAI,OAAO,CAAC,SAAS;IACrB;QACI,IAAI,CAAC,KAAK,EAAE,CAAC;KAChB;CACJ,CAAC;;;;;;;;AAQF,YAAY,CAAC,OAAO,GAAG,SAAS,OAAO;AACvC;IACI,IAAI,IAAI,CAAC,OAAO;IAChB;QACI,IAAI,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC;;QAE7B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,SAAS,CAAC,OAAO,EAAE,CAAC;KACvB;CACJ,CAAC;;ACv7BF;;;;;;;AAOA,AAOA;;;;;;;;;AASA,IAAI,QAAQ,GAAG,SAAS,QAAQ,CAAC,KAAK,EAAE,MAAM;AAC9C;IACI,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;IAClC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;;;;;;;IAOpC,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;;;;;;;IAOpB,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;;;;;;;;IAQtB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;;;;;;;;;IAUvB,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;;;;;;;;IAQtB,IAAI,CAAC,QAAQ,GAAG,IAAI,MAAM,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC;;;;;;;;IAQ7C,IAAI,CAAC,QAAQ,GAAG,IAAI,MAAM,CAAC,QAAQ,CAAC,CAAC;;;;;;;;IAQrC,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC;CAC3C,CAAC;;AAEF,IAAIH,oBAAkB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;AAOxH,QAAQ,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,WAAW;AACpD;IACI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IAC/B,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IAC/B,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;;;;IAI9B,IAAI,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,OAAO;IAC/B;QACI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;KAChD;CACJ,CAAC;;;;;;;AAOF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,WAAW;AACxD;IACI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;IAClC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;IAClC,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;CACpC,CAAC;;;;;;;AAOF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,KAAK,EAAE,MAAM;AAC1D;IACI,IAAI,KAAK,KAAK,IAAI,CAAC,MAAM,IAAI,MAAM,KAAK,IAAI,CAAC,OAAO;IACpD;QACI,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACpB,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;QACtB,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;KACpC;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;AAC/B;IACI,OAAO,CAAC,CAAC,IAAI,CAAC,MAAM,IAAI,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC;CAC1C,CAAC;;;;;AAKF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;AAC3C;IACI,IAAI,CAAC,IAAI,CAAC,SAAS;IACnB;QACI,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC;KACvB;CACJ,CAAC;;;;;;;;AAQF,QAAQ,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;AACvC;IACI,OAAO,OAAO,CAAC,OAAO,EAAE,CAAC;CAC5B,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;AAC/B;IACI,OAAO,IAAI,CAAC,MAAM,CAAC;CACtB,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,IAAI,CAAC,OAAO,CAAC;CACvB,CAAC;;;;;;;;;;AAUF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS;AAC7E;IACI,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;;;;AAUF,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS;AAC3E;IACI,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;AAOF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC7C;;CAEC,CAAC;;;;;;;AAOF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC7C;IACI,IAAI,CAAC,IAAI,CAAC,SAAS;IACnB;QACI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;QACtB,IAAI,CAAC,OAAO,EAAE,CAAC;QACf,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,CAAC;QACzB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,QAAQ,CAAC,SAAS,EAAE,CAAC;QAC1B,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QACrB,IAAI,CAAC,QAAQ,CAAC,SAAS,EAAE,CAAC;QAC1B,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;KACxB;CACJ,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,QAAQ,CAAC,SAAS,EAAEA,oBAAkB,EAAE,CAAC;;;;;;;;AAQlE,IAAI,iBAAiB,iBAAiB,UAAU,QAAQ,EAAE;IACtD,SAAS,iBAAiB,CAAC,MAAM;IACjC;QACI,IAAI,KAAK,GAAG,MAAM,CAAC,YAAY,IAAI,MAAM,CAAC,UAAU,IAAI,MAAM,CAAC,KAAK,CAAC;QACrE,IAAI,MAAM,GAAG,MAAM,CAAC,aAAa,IAAI,MAAM,CAAC,WAAW,IAAI,MAAM,CAAC,MAAM,CAAC;;QAEzE,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;;;;;;;QAOnC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;;;;QASrB,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;KAC3B;;IAED,KAAK,QAAQ,GAAG,iBAAiB,CAAC,SAAS,GAAG,QAAQ,CAAC;IACvD,iBAAiB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,QAAQ,IAAI,QAAQ,CAAC,SAAS,EAAE,CAAC;IAC9E,iBAAiB,CAAC,SAAS,CAAC,WAAW,GAAG,iBAAiB,CAAC;;;;;;;;;IAS5D,iBAAiB,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,OAAO,EAAE,GAAG,EAAE,WAAW;IAC/E;QACI,IAAI,WAAW,KAAK,SAAS,IAAI,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC;QAC3D;YACI,OAAO,CAAC,WAAW,GAAG,oBAAoB,CAAC,GAAG,CAAC,CAAC;SACnD;aACI,IAAI,WAAW,KAAK,KAAK;QAC9B;YACI,OAAO,CAAC,WAAW,GAAG,OAAO,WAAW,KAAK,QAAQ,GAAG,WAAW,GAAG,WAAW,CAAC;SACrF;KACJ,CAAC;;;;;;;;;;IAUF,iBAAiB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM;IAC9F;QACI,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;QACrB,IAAI,KAAK,GAAG,WAAW,CAAC,SAAS,CAAC;QAClC,IAAI,MAAM,GAAG,WAAW,CAAC,UAAU,CAAC;;QAEpC,MAAM,GAAG,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC;;QAE/B,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,8BAA8B,EAAE,WAAW,CAAC,gBAAgB,CAAC,CAAC;;QAEhF,IAAI,CAAC,IAAI,CAAC,UAAU;eACb,WAAW,CAAC,MAAM,KAAK,EAAE,CAAC,UAAU;eACpC,SAAS,CAAC,KAAK,KAAK,KAAK;eACzB,SAAS,CAAC,MAAM,KAAK,MAAM;QAClC;YACI,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC,UAAU,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,WAAW,CAAC,MAAM,EAAE,WAAW,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;SAC1F;;QAED;YACI,SAAS,CAAC,KAAK,GAAG,KAAK,CAAC;YACxB,SAAS,CAAC,MAAM,GAAG,MAAM,CAAC;;YAE1B,EAAE,CAAC,UAAU,CAAC,WAAW,CAAC,MAAM,EAAE,CAAC,EAAE,WAAW,CAAC,MAAM,EAAE,WAAW,CAAC,MAAM,EAAE,WAAW,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;SAC1G;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,iBAAiB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;IACpD;QACI,IAAI,IAAI,CAAC,SAAS;QAClB;YACI,OAAO;SACV;;QAED,IAAI,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,YAAY,IAAI,IAAI,CAAC,MAAM,CAAC,UAAU,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;QACpF,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,aAAa,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;;QAExF,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;;QAE3B,QAAQ,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACxC,CAAC;;;;;;;;IAQF,iBAAiB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACtD;QACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;KACtB,CAAC;;IAEF,OAAO,iBAAiB,CAAC;CAC5B,CAAC,QAAQ,CAAC,CAAC,CAAC;;;;;;;;AAQb,IAAI,aAAa,iBAAiB,UAAU,iBAAiB,EAAE;IAC3D,SAAS,aAAa,CAAC,MAAM,EAAE,OAAO;IACtC;QACI,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;QAExB,IAAI,EAAE,MAAM,YAAY,gBAAgB,CAAC;QACzC;YACI,IAAI,YAAY,GAAG,IAAI,KAAK,EAAE,CAAC;;YAE/B,iBAAiB,CAAC,WAAW,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,WAAW,CAAC,CAAC;;YAEzE,YAAY,CAAC,GAAG,GAAG,MAAM,CAAC;YAC1B,MAAM,GAAG,YAAY,CAAC;SACzB;;QAED,iBAAiB,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;;;;;;QAMrC,IAAI,CAAC,MAAM,CAAC,QAAQ,IAAI,CAAC,CAAC,IAAI,CAAC,MAAM,IAAI,CAAC,CAAC,IAAI,CAAC,OAAO;QACvD;YACI,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;YAChB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;SACpB;;;;;;QAMD,IAAI,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,CAAC;;;;;;;QAOtB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;;;;;QAOrB,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;;;;;;;QAO5B,IAAI,CAAC,YAAY,GAAG,CAAC,OAAO,CAAC,YAAY,KAAK,SAAS;cACjD,OAAO,CAAC,YAAY,GAAG,QAAQ,CAAC,mBAAmB,KAAK,CAAC,CAAC,MAAM,CAAC,iBAAiB,CAAC;;;;;;;;QAQzF,IAAI,CAAC,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,KAAK,KAAK,CAAC;;;;;;;QAO3D,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;;QAQnB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;QAElB,IAAI,OAAO,CAAC,QAAQ,KAAK,KAAK;QAC9B;YACI,IAAI,CAAC,IAAI,EAAE,CAAC;SACf;KACJ;;IAED,KAAK,iBAAiB,GAAG,aAAa,CAAC,SAAS,GAAG,iBAAiB,CAAC;IACrE,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,iBAAiB,IAAI,iBAAiB,CAAC,SAAS,EAAE,CAAC;IAC5F,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;;;;;;;IAQpD,aAAa,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,YAAY;IAC1D;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,IAAI,YAAY,KAAK,SAAS;QAC9B;YACI,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;SACpC;;QAED,IAAI,IAAI,CAAC,KAAK;QACd;YACI,OAAO,IAAI,CAAC,KAAK,CAAC;SACrB;;QAED,IAAI,CAAC,KAAK,GAAG,IAAI,OAAO,CAAC,UAAU,OAAO,EAAE;YACxC,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC;YAC/B,IAAI,GAAG,GAAG,MAAM,CAAC;YACjB,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;;YAExB,IAAI,SAAS,GAAG,YAAY;gBACxB,IAAI,MAAM,CAAC,SAAS;gBACpB;oBACI,OAAO;iBACV;gBACD,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC;gBACrB,MAAM,CAAC,OAAO,GAAG,IAAI,CAAC;;gBAEtB,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;gBAC3C,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC;;gBAEpB,IAAI,MAAM,CAAC,YAAY;gBACvB;oBACI,OAAO,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC;iBAC7B;;gBAED;oBACI,OAAO,CAAC,MAAM,CAAC,CAAC;iBACnB;aACJ,CAAC;;YAEF,IAAI,MAAM,CAAC,QAAQ,IAAI,MAAM,CAAC,GAAG;YACjC;gBACI,SAAS,EAAE,CAAC;aACf;;YAED;gBACI,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC;gBAC1B,MAAM,CAAC,OAAO,GAAG,UAAU,KAAK,EAAE,EAAE,OAAO,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC;aAC3E;SACJ,CAAC,CAAC;;QAEH,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAClD;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,IAAI,IAAI,CAAC,QAAQ,KAAK,IAAI;QAC1B;YACI,OAAO,IAAI,CAAC,QAAQ,CAAC;SACxB;QACD,IAAI,IAAI,CAAC,MAAM,KAAK,IAAI,IAAI,CAAC,MAAM,CAAC,iBAAiB;QACrD;YACI,OAAO,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;SAChC;;QAED,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC,iBAAiB,CAAC,IAAI,CAAC,MAAM;YAChD,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM;YAC3C;gBACI,gBAAgB,EAAE,IAAI,CAAC,gBAAgB,GAAG,aAAa,GAAG,MAAM;aACnE,CAAC;aACD,IAAI,CAAC,UAAU,MAAM,EAAE;gBACpB,IAAI,MAAM,CAAC,SAAS;gBACpB;oBACI,OAAO,OAAO,CAAC,MAAM,EAAE,CAAC;iBAC3B;gBACD,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC;gBACvB,MAAM,CAAC,MAAM,EAAE,CAAC;gBAChB,MAAM,CAAC,QAAQ,GAAG,IAAI,CAAC;;gBAEvB,OAAO,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;aAClC,CAAC,CAAC;;QAEP,OAAO,IAAI,CAAC,QAAQ,CAAC;KACxB,CAAC;;;;;;;;;;IAUF,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS;IAClF;QACI,WAAW,CAAC,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC;;QAErD,IAAI,CAAC,IAAI,CAAC,YAAY;QACtB;YACI,OAAO,iBAAiB,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS,CAAC,CAAC;SAC1F;QACD,IAAI,CAAC,IAAI,CAAC,MAAM;QAChB;;YAEI,IAAI,CAAC,OAAO,EAAE,CAAC;YACf,IAAI,CAAC,IAAI,CAAC,MAAM;YAChB;gBACI,OAAO,KAAK,CAAC;aAChB;SACJ;;QAED,iBAAiB,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;;QAE7F,IAAI,CAAC,IAAI,CAAC,cAAc;QACxB;;;YAGI,IAAI,IAAI,GAAG,IAAI,CAAC;;YAEhB,KAAK,IAAI,GAAG,IAAI,WAAW,CAAC,WAAW;YACvC;gBACI,IAAI,QAAQ,GAAG,WAAW,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;;gBAE5C,IAAI,QAAQ,KAAK,SAAS,IAAI,QAAQ,CAAC,OAAO,KAAK,WAAW,CAAC,OAAO;gBACtE;oBACI,IAAI,GAAG,KAAK,CAAC;oBACb,MAAM;iBACT;aACJ;;YAED,IAAI,IAAI;YACR;gBACI,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK;gBACrB;oBACI,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;iBACvB;;gBAED,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;aACtB;SACJ;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAClD;QACI,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC;QAC1B,IAAI,CAAC,MAAM,CAAC,OAAO,GAAG,IAAI,CAAC;;QAE3B,iBAAiB,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAE/C,IAAI,IAAI,CAAC,MAAM;QACf;YACI,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;YACpB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;SACtB;QACD,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QACrB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;IAEF,OAAO,aAAa,CAAC;CACxB,CAAC,iBAAiB,CAAC,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA4BtB,IAAI,SAAS,GAAG,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+BnB,SAAS,kBAAkB,CAAC,MAAM,EAAE,OAAO;AAC3C;IACI,IAAI,CAAC,MAAM;IACX;QACI,OAAO,IAAI,CAAC;KACf;;IAED,IAAI,SAAS,GAAG,EAAE,CAAC;;IAEnB,IAAI,OAAO,MAAM,KAAK,QAAQ;IAC9B;;QAEI,IAAI,MAAM,GAAG,CAAC,wBAAwB,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;;QAErD,IAAI,MAAM;QACV;YACI,SAAS,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;SACvC;KACJ;;IAED,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC;IAC9C;QACI,IAAI,cAAc,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;QAElC,IAAI,cAAc,CAAC,IAAI,IAAI,cAAc,CAAC,IAAI,CAAC,MAAM,EAAE,SAAS,CAAC;QACjE;YACI,OAAO,IAAI,cAAc,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;SAC9C;KACJ;;;;IAID,OAAO,IAAI,aAAa,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CAC7C;;;;;;;;;;;;AAYD,IAAI,cAAc,iBAAiB,UAAU,QAAQ,EAAE;IACnD,SAAS,cAAc,CAAC,MAAM,EAAE,OAAO;IACvC;QACI,IAAI,GAAG,GAAG,OAAO,IAAI,EAAE,CAAC;QACxB,IAAI,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC;QACtB,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;;QAExB,IAAI,CAAC,KAAK,IAAI,CAAC,MAAM;QACrB;YACI,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;SAC7D;;QAED,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;;;;;;;;QAQnC,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC;KACtB;;IAED,KAAK,QAAQ,GAAG,cAAc,CAAC,SAAS,GAAG,QAAQ,CAAC;IACpD,cAAc,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,QAAQ,IAAI,QAAQ,CAAC,SAAS,EAAE,CAAC;IAC3E,cAAc,CAAC,SAAS,CAAC,WAAW,GAAG,cAAc,CAAC;;;;;;;;;IAStD,cAAc,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS;IACnF;QACI,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;;QAErB,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,8BAA8B,EAAE,WAAW,CAAC,gBAAgB,CAAC,CAAC;;QAEhF,IAAI,SAAS,CAAC,KAAK,KAAK,WAAW,CAAC,KAAK,IAAI,SAAS,CAAC,MAAM,KAAK,WAAW,CAAC,MAAM;QACpF;YACI,EAAE,CAAC,aAAa;gBACZ,WAAW,CAAC,MAAM;gBAClB,CAAC;gBACD,CAAC;gBACD,CAAC;gBACD,WAAW,CAAC,KAAK;gBACjB,WAAW,CAAC,MAAM;gBAClB,WAAW,CAAC,MAAM;gBAClB,WAAW,CAAC,IAAI;gBAChB,IAAI,CAAC,IAAI;aACZ,CAAC;SACL;;QAED;YACI,SAAS,CAAC,KAAK,GAAG,WAAW,CAAC,KAAK,CAAC;YACpC,SAAS,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM,CAAC;;YAEtC,EAAE,CAAC,UAAU;gBACT,WAAW,CAAC,MAAM;gBAClB,CAAC;gBACD,SAAS,CAAC,cAAc;gBACxB,WAAW,CAAC,KAAK;gBACjB,WAAW,CAAC,MAAM;gBAClB,CAAC;gBACD,WAAW,CAAC,MAAM;gBAClB,SAAS,CAAC,IAAI;gBACd,IAAI,CAAC,IAAI;aACZ,CAAC;SACL;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,cAAc,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACnD;QACI,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;KACpB,CAAC;;;;;;;;;IASF,cAAc,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM;IAC3C;QACI,OAAO,MAAM,YAAY,YAAY;eAC9B,MAAM,YAAY,UAAU;eAC5B,MAAM,YAAY,WAAW,CAAC;KACxC,CAAC;;IAEF,OAAO,cAAc,CAAC;CACzB,CAAC,QAAQ,CAAC,CAAC,CAAC;;AAEb,IAAI,oBAAoB,GAAG;IACvB,SAAS,EAAE,WAAW,CAAC,OAAO;IAC9B,MAAM,EAAE,OAAO,CAAC,IAAI;IACpB,gBAAgB,EAAE,KAAK;CAC1B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA4BF,IAAI,WAAW,iBAAiB,UAAU,YAAY,EAAE;IACpD,SAAS,WAAW,CAAC,QAAQ,EAAE,OAAO;IACtC;QACI,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,IAAI,CAAC;QAC3C,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,IAAI,CAAC;;QAEzC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAExB,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;QAExB,IAAI,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,CAAC;QAChD,IAAI,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;QAC5B,IAAI,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,CAAC;QAChD,IAAI,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC;QAClC,IAAI,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;QAC1B,IAAI,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;QAC5B,IAAI,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;QAChC,IAAI,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;QAC5B,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;QACxB,IAAI,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;QAC5B,IAAI,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC;QACpC,IAAI,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;;;QAG9C,IAAI,QAAQ,IAAI,EAAE,QAAQ,YAAY,QAAQ,CAAC;QAC/C;YACI,QAAQ,GAAG,kBAAkB,CAAC,QAAQ,EAAE,eAAe,CAAC,CAAC;YACzD,QAAQ,CAAC,QAAQ,GAAG,IAAI,CAAC;SAC5B;;;;;;;;QAQD,IAAI,CAAC,KAAK,GAAG,KAAK,IAAI,CAAC,CAAC;;;;;;;;QAQxB,IAAI,CAAC,MAAM,GAAG,MAAM,IAAI,CAAC,CAAC;;;;;;;;QAQ1B,IAAI,CAAC,UAAU,GAAG,UAAU,IAAI,QAAQ,CAAC,UAAU,CAAC;;;;;;;;QAQpD,IAAI,CAAC,MAAM,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,GAAG,QAAQ,CAAC,eAAe,CAAC;;;;;;;;QAQvE,IAAI,CAAC,gBAAgB,GAAG,gBAAgB,KAAK,SAAS,GAAG,gBAAgB,GAAG,QAAQ,CAAC,iBAAiB,CAAC;;;;;;QAMvG,IAAI,CAAC,QAAQ,GAAG,QAAQ,IAAI,QAAQ,CAAC,SAAS,CAAC;;;;;;;;QAQ/C,IAAI,CAAC,SAAS,GAAG,SAAS,KAAK,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC,UAAU,CAAC;;;;;;;;QAQ3E,IAAI,CAAC,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,IAAI,CAAC;;;;;;;;QAQrC,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,KAAK,CAAC,aAAa,CAAC;;;;;;;;QAQxC,IAAI,CAAC,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,UAAU,CAAC;;;;;;;;QAQ3C,IAAI,CAAC,gBAAgB,GAAG,gBAAgB,KAAK,KAAK,CAAC;;;;;;;;QAQnD,IAAI,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;;;;;;;;QAQjB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;;;;QAUjB,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC;QAC1B,IAAI,CAAC,WAAW,EAAE,CAAC;;;;;;;;QAQnB,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;;;;;;;;;QAStB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;;QAQjB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;;;;;;;QAOtB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;QAOpB,IAAI,CAAC,KAAK,GAAG,KAAK,GAAG,CAAC,IAAI,MAAM,GAAG,CAAC,CAAC;;;;;;;;;QASrC,IAAI,CAAC,eAAe,GAAG,EAAE,CAAC;;;;;;;;QAQ1B,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;;;;;;;;;QAUvB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;;;;;QAOrB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA4CvB,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;KAC9B;;IAED,KAAK,YAAY,GAAG,WAAW,CAAC,SAAS,GAAG,YAAY,CAAC;IACzD,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,YAAY,IAAI,YAAY,CAAC,SAAS,EAAE,CAAC;IAChF,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,WAAW,CAAC;;IAEhD,IAAI,kBAAkB,GAAG,EAAE,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;IAQlG,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG;IACnC;QACI,OAAO,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,UAAU,IAAI,IAAI,CAAC,CAAC;KAC3D,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;IACpC;QACI,OAAO,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,UAAU,IAAI,IAAI,CAAC,CAAC;KAC5D,CAAC;;;;;;;;;IASF,WAAW,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,SAAS,EAAE,MAAM;IACrE;QACI,IAAI,KAAK,CAAC;;QAEV,IAAI,SAAS,KAAK,SAAS,IAAI,SAAS,KAAK,IAAI,CAAC,SAAS;QAC3D;YACI,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;YAC3B,KAAK,GAAG,IAAI,CAAC;SAChB;;QAED,IAAI,MAAM,KAAK,SAAS,IAAI,MAAM,KAAK,IAAI,CAAC,MAAM;QAClD;YACI,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;YACrB,KAAK,GAAG,IAAI,CAAC;SAChB;;QAED,IAAI,KAAK;QACT;YACI,IAAI,CAAC,YAAY,EAAE,CAAC;SACvB;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;IAUF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,UAAU;IAC3E;QACI,IAAI,CAAC,UAAU,GAAG,UAAU,IAAI,IAAI,CAAC,UAAU,CAAC;QAChD,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,WAAW,EAAE,CAAC;QACnB,IAAI,CAAC,MAAM,EAAE,CAAC;;QAEd,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;IAUF,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,SAAS,EAAE,UAAU,EAAE,UAAU;IAC3F;QACI,IAAI,CAAC,UAAU,GAAG,UAAU,IAAI,IAAI,CAAC,UAAU,CAAC;QAChD,IAAI,CAAC,KAAK,GAAG,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC;QACzC,IAAI,CAAC,MAAM,GAAG,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;QAC3C,IAAI,CAAC,WAAW,EAAE,CAAC;QACnB,IAAI,CAAC,MAAM,EAAE,CAAC;;QAEd,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;IACxD;QACI,IAAI,CAAC,YAAY,GAAG,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;KACzE,CAAC;;;;;;;;IAQF,WAAW,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,UAAU;IACxE;QACI,IAAI,aAAa,GAAG,IAAI,CAAC,UAAU,CAAC;;QAEpC,IAAI,aAAa,KAAK,UAAU;QAChC;YACI,OAAO,IAAI,CAAC;SACf;;QAED,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;;QAE7B,IAAI,IAAI,CAAC,KAAK;QACd;YACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,GAAG,aAAa,GAAG,UAAU,CAAC;YACrD,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,GAAG,aAAa,GAAG,UAAU,CAAC;YACvD,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;SAC7B;;QAED,IAAI,CAAC,WAAW,EAAE,CAAC;;QAEnB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;IAQF,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,QAAQ;IAClE;QACI,IAAI,IAAI,CAAC,QAAQ,KAAK,QAAQ;QAC9B;YACI,OAAO,IAAI,CAAC;SACf;;QAED,IAAI,IAAI,CAAC,QAAQ;QACjB;YACI,MAAM,IAAI,KAAK,CAAC,+BAA+B,CAAC,CAAC;SACpD;;QAED,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAEpB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;;QAEzB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;IAKF,WAAW,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;IAC9C;QACI,IAAI,CAAC,IAAI,CAAC,KAAK;QACf;YACI,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC;YACrC;gBACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;gBAClB,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;gBAC1B,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;aAC7B;SACJ;;QAED;YACI,IAAI,CAAC,OAAO,EAAE,CAAC;YACf,IAAI,CAAC,YAAY,EAAE,CAAC;YACpB,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;SAC7B;KACJ,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,KAAK;IACvD;QACI,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;KACnC,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAChD;;QAEI,IAAI,IAAI,CAAC,QAAQ;QACjB;YACI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;YAE3B,IAAI,IAAI,CAAC,QAAQ,CAAC,QAAQ;YAC1B;gBACI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC;aAC3B;YACD,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;SACxB;;QAED,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,OAAO,gBAAgB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;YACtC,OAAO,YAAY,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;;YAElC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;SACvB;;;QAGD,IAAI,CAAC,OAAO,EAAE,CAAC;;QAEf,WAAW,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;QAClC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;;QAE5B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;KACzB,CAAC;;;;;;;;;IASF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAChD;QACI,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;KAC9B,CAAC;;;;;;;;;;;;;;IAcF,WAAW,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,OAAO;IACjD;QACI,IAAI,OAAO,GAAG,IAAI,CAAC;;QAEnB,IAAI,OAAO,MAAM,KAAK,QAAQ;QAC9B;YACI,OAAO,GAAG,MAAM,CAAC;SACpB;;QAED;YACI,IAAI,CAAC,MAAM,CAAC,OAAO;YACnB;gBACI,MAAM,CAAC,OAAO,GAAG,SAAS,IAAI,GAAG,EAAE,CAAC,CAAC;aACxC;;YAED,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC;SAC5B;;QAED,IAAI,WAAW,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;;QAE5C,IAAI,CAAC,WAAW;QAChB;YACI,WAAW,GAAG,IAAI,WAAW,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;YAC/C,WAAW,CAAC,OAAO,GAAG,OAAO,CAAC;YAC9B,WAAW,CAAC,UAAU,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;SAChD;;QAED,OAAO,WAAW,CAAC;KACtB,CAAC;;;;;;;;;;;;;IAaF,WAAW,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO;IAC5E;QACI,MAAM,GAAG,MAAM,IAAI,IAAI,YAAY,CAAC,KAAK,GAAG,MAAM,GAAG,CAAC,CAAC,CAAC;;QAExD,IAAI,QAAQ,GAAG,IAAI,cAAc,CAAC,MAAM,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;QAC5E,IAAI,IAAI,GAAG,MAAM,YAAY,YAAY,GAAG,KAAK,CAAC,KAAK,GAAG,KAAK,CAAC,aAAa,CAAC;;QAE9E,OAAO,IAAI,WAAW,CAAC,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;KAClI,CAAC;;;;;;;;;IASF,WAAW,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,WAAW,EAAE,EAAE;IAC7D;QACI,IAAI,EAAE;QACN;YACI,IAAI,WAAW,CAAC,eAAe,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;YAClD;gBACI,WAAW,CAAC,eAAe,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;aACxC;;YAED,IAAI,gBAAgB,CAAC,EAAE,CAAC;YACxB;;gBAEI,OAAO,CAAC,IAAI,EAAE,6CAA6C,GAAG,EAAE,GAAG,6BAA6B,EAAE,CAAC;aACtG;;YAED,gBAAgB,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC;SACtC;KACJ,CAAC;;;;;;;;;IASF,WAAW,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,WAAW;IACnE;QACI,IAAI,OAAO,WAAW,KAAK,QAAQ;QACnC;YACI,IAAI,oBAAoB,GAAG,gBAAgB,CAAC,WAAW,CAAC,CAAC;;YAEzD,IAAI,oBAAoB;YACxB;gBACI,IAAI,KAAK,GAAG,oBAAoB,CAAC,eAAe,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;;gBAEtE,IAAI,KAAK,GAAG,CAAC,CAAC;gBACd;oBACI,oBAAoB,CAAC,eAAe,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;iBACzD;;gBAED,OAAO,gBAAgB,CAAC,WAAW,CAAC,CAAC;;gBAErC,OAAO,oBAAoB,CAAC;aAC/B;SACJ;aACI,IAAI,WAAW,IAAI,WAAW,CAAC,eAAe;QACnD;YACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,eAAe,CAAC,MAAM,EAAE,EAAE,CAAC;YAC3D;gBACI,OAAO,gBAAgB,CAAC,WAAW,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC;aAC3D;;YAED,WAAW,CAAC,eAAe,CAAC,MAAM,GAAG,CAAC,CAAC;;YAEvC,OAAO,WAAW,CAAC;SACtB;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,WAAW,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAErE,OAAO,WAAW,CAAC;CACtB,CAACE,aAAY,CAAC,CAAC,CAAC;;;;;;;;AAQjB,WAAW,CAAC,YAAY,GAAG,CAAC,CAAC;;;;;;;;;;;;;;AAc7B,IAAI,aAAa,iBAAiB,UAAU,QAAQ,EAAE;IAClD,SAAS,aAAa,CAAC,MAAM,EAAE,OAAO;IACtC;QACI,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;QAExB,IAAI,IAAI,CAAC;QACT,IAAI,MAAM,GAAG,MAAM,CAAC;;QAEpB,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC;QACzB;YACI,IAAI,GAAG,MAAM,CAAC;YACd,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;SAC1B;;QAED,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;QAOnD,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;;;;;;;QAOhB,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;;QAEvB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE;QAC/B;YACI,IAAI,WAAW,GAAG,IAAI,WAAW,EAAE,CAAC;;YAEpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;YAC7B,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SAC9B;;;;;;;;QAQD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;;;QAQrB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;QAElB,IAAI,IAAI;QACR;YACI,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,EAAE,GAAG,EAAE;YACrC;gBACI,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,OAAO,CAAC,EAAE,GAAG,CAAC,CAAC;aACnE;SACJ;KACJ;;IAED,KAAK,QAAQ,GAAG,aAAa,CAAC,SAAS,GAAG,QAAQ,CAAC;IACnD,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,QAAQ,IAAI,QAAQ,CAAC,SAAS,EAAE,CAAC;IAC1E,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;;;;;IAMpD,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAClD;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE;QAC/C;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;SAC3B;QACD,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;QAClB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;QACzB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;;;IASF,aAAa,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,QAAQ,EAAE,KAAK;IAC/E;QACI,IAAI,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;;QAEpC,IAAI,CAAC,WAAW;QAChB;YACI,MAAM,IAAI,KAAK,EAAE,QAAQ,GAAG,KAAK,GAAG,mBAAmB,EAAE,CAAC;SAC7D;;;QAGD,IAAI,QAAQ,CAAC,KAAK,IAAI,CAAC,IAAI,CAAC,KAAK;QACjC;YACI,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;SAChD;;QAED,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;;QAExC,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,WAAW;IACzD;QACI,QAAQ,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC;;QAEhD,WAAW,CAAC,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC;;QAE9C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE;QACpC;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;SAC/D;KACJ,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,WAAW;IAC7D;QACI,QAAQ,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC;;QAElD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE;QACpC;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;SAChE;KACJ,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;IAC5C;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,IAAI,IAAI,CAAC,KAAK;QACd;YACI,OAAO,IAAI,CAAC,KAAK,CAAC;SACrB;;QAED,IAAI,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,UAAU,IAAI,EAAE,EAAE,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;;;QAG1E,IAAI,QAAQ,GAAG,SAAS,CAAC,GAAG,CAAC,UAAU,IAAI,EAAE,EAAE,OAAO,IAAI,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC;;QAEtE,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC;aAC7B,IAAI,CAAC,YAAY;gBACd,IAAI,GAAG,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;gBACvB,IAAI,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC;gBACtB,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;;gBAExB,MAAM,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;;gBAE7B,OAAO,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;aAClC;aACA,CAAC;;QAEN,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;;;;;;;;IASF,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ,EAAE,OAAO,EAAE,SAAS;IAC9E;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;QACxB,IAAI,YAAY,GAAG,GAAG,CAAC,YAAY,CAAC;QACpC,IAAI,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC;QACtB,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;;QAErB,IAAI,SAAS,CAAC,OAAO,GAAG,CAAC;QACzB;YACI,EAAE,CAAC,UAAU;gBACT,EAAE,CAAC,gBAAgB;gBACnB,CAAC;gBACD,OAAO,CAAC,MAAM;gBACd,IAAI,CAAC,MAAM;gBACX,IAAI,CAAC,OAAO;gBACZ,MAAM;gBACN,CAAC;gBACD,OAAO,CAAC,MAAM;gBACd,OAAO,CAAC,IAAI;gBACZ,IAAI;aACP,CAAC;SACL;;QAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE;QAC/B;YACI,IAAI,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;;YAEpB,IAAI,YAAY,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,OAAO;YAClC;gBACI,YAAY,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC;gBAC/B,IAAI,IAAI,CAAC,KAAK;gBACd;oBACI,EAAE,CAAC,aAAa;wBACZ,EAAE,CAAC,gBAAgB;wBACnB,CAAC;wBACD,CAAC;wBACD,CAAC;wBACD,CAAC;wBACD,IAAI,CAAC,QAAQ,CAAC,KAAK;wBACnB,IAAI,CAAC,QAAQ,CAAC,MAAM;wBACpB,CAAC;wBACD,OAAO,CAAC,MAAM;wBACd,OAAO,CAAC,IAAI;wBACZ,IAAI,CAAC,QAAQ,CAAC,MAAM;qBACvB,CAAC;iBACL;aACJ;SACJ;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;IAEF,OAAO,aAAa,CAAC;CACxB,CAAC,QAAQ,CAAC,CAAC,CAAC;;;;;;;;;;;;;AAab,IAAI,cAAc,iBAAiB,UAAU,iBAAiB,EAAE;IAC5D,SAAS,cAAc,IAAI;QACvB,iBAAiB,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;KAC5C;;IAED,KAAK,iBAAiB,GAAG,cAAc,CAAC,SAAS,GAAG,iBAAiB,CAAC;IACtE,cAAc,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,iBAAiB,IAAI,iBAAiB,CAAC,SAAS,EAAE,CAAC;IAC7F,cAAc,CAAC,SAAS,CAAC,WAAW,GAAG,cAAc,CAAC;;IAEtD,cAAc,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM;IAC3C;QACI,IAAI,eAAe,GAAG,MAAM,CAAC,eAAe,CAAC;;;QAG7C,IAAI,eAAe,IAAI,MAAM,YAAY,eAAe;QACxD;YACI,OAAO,IAAI,CAAC;SACf;;QAED,OAAO,MAAM,YAAY,iBAAiB,CAAC;KAC9C,CAAC;;IAEF,OAAO,cAAc,CAAC;CACzB,CAAC,iBAAiB,CAAC,CAAC,CAAC;;;;;;;;;;;;;;AActB,IAAI,YAAY,iBAAiB,UAAU,aAAa,EAAE;IACtD,SAAS,YAAY,CAAC,MAAM,EAAE,OAAO;IACrC;QACI,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;QAExB,aAAa,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC;;QAE1C,IAAI,IAAI,CAAC,MAAM,KAAK,YAAY,CAAC,KAAK;QACtC;YACI,MAAM,IAAI,KAAK,EAAE,sBAAsB,IAAI,IAAI,CAAC,MAAM,CAAC,GAAG,cAAc,EAAE,CAAC;SAC9E;;QAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,YAAY,CAAC,KAAK,EAAE,CAAC,EAAE;QAC3C;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,OAAO,CAAC,2BAA2B,GAAG,CAAC,CAAC;SAClE;;QAED,IAAI,OAAO,CAAC,QAAQ,KAAK,KAAK;QAC9B;YACI,IAAI,CAAC,IAAI,EAAE,CAAC;SACf;KACJ;;IAED,KAAK,aAAa,GAAG,YAAY,CAAC,SAAS,GAAG,aAAa,CAAC;IAC5D,YAAY,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,aAAa,IAAI,aAAa,CAAC,SAAS,EAAE,CAAC;IACnF,YAAY,CAAC,SAAS,CAAC,WAAW,GAAG,YAAY,CAAC;;;;;;;;IAQlD,YAAY,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,WAAW;IACxD;QACI,aAAa,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC;;QAErD,WAAW,CAAC,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC;KACjD,CAAC;;;;;;;IAOF,YAAY,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS;IACjF;QACI,IAAI,KAAK,GAAG,IAAI,CAAC,YAAY,CAAC;;QAE9B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,YAAY,CAAC,KAAK,EAAE,CAAC,EAAE;QAC3C;YACI,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;;YAEzB,IAAI,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,OAAO;YAC3B;gBACI,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC;gBACxB,IAAI,IAAI,CAAC,KAAK;gBACd;oBACI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,QAAQ,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC;iBACnD;aACJ;SACJ;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;IAEF,OAAO,YAAY,CAAC;CACvB,CAAC,aAAa,CAAC,CAAC,CAAC;;;;;;;;;;AAUlB,YAAY,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;;;;;;;AAcvB,IAAI,WAAW,iBAAiB,UAAU,iBAAiB,EAAE;IACzD,SAAS,WAAW,CAAC,MAAM,EAAE,OAAO;IACpC;QACI,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;QAExB,iBAAiB,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC,CAAC;QAC/D,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;QAChB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;QAOjB,IAAI,CAAC,GAAG,GAAG,MAAM,CAAC;;;;;;;QAOlB,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,IAAI,CAAC,CAAC;;;;;;;QAOhC,IAAI,CAAC,cAAc,GAAG,OAAO,CAAC,KAAK,CAAC;;;;;;;QAOpC,IAAI,CAAC,eAAe,GAAG,OAAO,CAAC,MAAM,CAAC;;;;;;;QAOtC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;;;;;QAOrB,IAAI,CAAC,YAAY,GAAG,OAAO,CAAC,WAAW,CAAC;;;;;;;;QAQxC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;QAElB,IAAI,OAAO,CAAC,QAAQ,KAAK,KAAK;QAC9B;YACI,IAAI,CAAC,IAAI,EAAE,CAAC;SACf;KACJ;;IAED,KAAK,iBAAiB,GAAG,WAAW,CAAC,SAAS,GAAG,iBAAiB,CAAC;IACnE,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,iBAAiB,IAAI,iBAAiB,CAAC,SAAS,EAAE,CAAC;IAC1F,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,WAAW,CAAC;;IAEhD,WAAW,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;IAC1C;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,IAAI,IAAI,CAAC,KAAK;QACd;YACI,OAAO,IAAI,CAAC,KAAK,CAAC;SACrB;;QAED,IAAI,CAAC,KAAK,GAAG,IAAI,OAAO,CAAC,UAAU,OAAO,EAAE;;YAExC,MAAM,CAAC,QAAQ,GAAG,YAAY;gBAC1B,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;gBACzD,OAAO,CAAC,MAAM,CAAC,CAAC;aACnB,CAAC;;;YAGF,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;YACtC;gBACI,IAAI,CAAC,IAAI;gBACT;oBACI,MAAM,IAAI,KAAK,CAAC,mDAAmD,CAAC,CAAC;iBACxE;gBACD,MAAM,CAAC,GAAG,GAAG,4BAA4B,IAAI,IAAI,CAAC,QAAQ,CAAC,kBAAkB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;aAChG;;YAED,MAAM,CAAC,QAAQ,EAAE,CAAC;SACrB,CAAC,CAAC;;QAEH,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ;IAClD;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,IAAI,SAAS,GAAG,IAAI,KAAK,EAAE,CAAC;;QAE5B,iBAAiB,CAAC,WAAW,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,YAAY,CAAC,CAAC;QACtE,SAAS,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;;QAEzB,SAAS,CAAC,OAAO,GAAG,UAAU,KAAK,EAAE;YACjC,SAAS,CAAC,OAAO,GAAG,IAAI,CAAC;YACzB,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;SAC7B,CAAC;;QAEF,SAAS,CAAC,MAAM,GAAG,YAAY;YAC3B,IAAI,QAAQ,GAAG,SAAS,CAAC,KAAK,CAAC;YAC/B,IAAI,SAAS,GAAG,SAAS,CAAC,MAAM,CAAC;;YAEjC,IAAI,CAAC,QAAQ,IAAI,CAAC,SAAS;YAC3B;gBACI,MAAM,IAAI,KAAK,CAAC,sFAAsF,CAAC,CAAC;aAC3G;;;YAGD,IAAI,KAAK,GAAG,QAAQ,GAAG,MAAM,CAAC,KAAK,CAAC;YACpC,IAAI,MAAM,GAAG,SAAS,GAAG,MAAM,CAAC,KAAK,CAAC;;YAEtC,IAAI,MAAM,CAAC,cAAc,IAAI,MAAM,CAAC,eAAe;YACnD;gBACI,KAAK,GAAG,MAAM,CAAC,cAAc,IAAI,MAAM,CAAC,eAAe,GAAG,SAAS,GAAG,QAAQ,CAAC;gBAC/E,MAAM,GAAG,MAAM,CAAC,eAAe,IAAI,MAAM,CAAC,cAAc,GAAG,QAAQ,GAAG,SAAS,CAAC;aACnF;YACD,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YAC1B,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;;;YAG5B,IAAI,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;;YAE3B,MAAM,CAAC,KAAK,GAAG,KAAK,CAAC;YACrB,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC;YACvB,MAAM,CAAC,OAAO,GAAG,SAAS,IAAI,GAAG,EAAE,CAAC,CAAC;;;YAGrC,MAAM;iBACD,UAAU,CAAC,IAAI,CAAC;iBAChB,SAAS,CAAC,SAAS,EAAE,CAAC,EAAE,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;;YAE1E,MAAM,CAAC,QAAQ,EAAE,CAAC;YAClB,MAAM,CAAC,QAAQ,GAAG,IAAI,CAAC;SAC1B,CAAC;KACL,CAAC;;;;;;;;;IASF,WAAW,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,SAAS;IACjD;QACI,IAAI,SAAS,GAAG,WAAW,CAAC,QAAQ,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QACrD,IAAI,IAAI,GAAG,EAAE,CAAC;;QAEd,IAAI,SAAS;QACb;YACI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;YAC1D,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;SAC7D;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAChD;QACI,iBAAiB,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC/C,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QACrB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;KAC5B,CAAC;;;;;;;;;IASF,WAAW,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,SAAS;IACnD;;QAEI,OAAO,SAAS,KAAK,KAAK;;gBAElB,OAAO,MAAM,KAAK,QAAQ,IAAI,MAAM,CAAC,OAAO,CAAC,2BAA2B,CAAC,KAAK,CAAC,CAAC;;gBAEhF,OAAO,MAAM,KAAK,QAAQ,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;KACvE,CAAC;;IAEF,OAAO,WAAW,CAAC;CACtB,CAAC,iBAAiB,CAAC,CAAC,CAAC;;;;;;;;;;AAUtB,WAAW,CAAC,QAAQ,GAAG,iIAAiI,CAAC;;;;;;;;;;;;;;;AAezJ,IAAI,aAAa,iBAAiB,UAAU,iBAAiB,EAAE;IAC3D,SAAS,aAAa,CAAC,MAAM,EAAE,OAAO;IACtC;QACI,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;QAExB,IAAI,EAAE,MAAM,YAAY,gBAAgB,CAAC;QACzC;YACI,IAAI,YAAY,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;;;YAGnD,YAAY,CAAC,YAAY,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;YAC7C,YAAY,CAAC,YAAY,CAAC,oBAAoB,EAAE,EAAE,CAAC,CAAC;YACpD,YAAY,CAAC,YAAY,CAAC,aAAa,EAAE,EAAE,CAAC,CAAC;;YAE7C,IAAI,OAAO,MAAM,KAAK,QAAQ;YAC9B;gBACI,MAAM,GAAG,CAAC,MAAM,CAAC,CAAC;aACrB;;YAED,iBAAiB,CAAC,WAAW,CAAC,YAAY,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;;;YAG/F,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,EAAE,CAAC;YACtC;gBACI,IAAI,aAAa,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;gBAErD,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;gBACpB,IAAI,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC;gBAClB,IAAI,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;;gBAEpB,GAAG,GAAG,GAAG,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC;;gBAEvB,IAAI,OAAO,GAAG,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,CAAC,WAAW,EAAE,CAAC;gBACnD,IAAI,GAAG,GAAG,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;;gBAEvD,IAAI,GAAG,IAAI,KAAK,QAAQ,GAAG,GAAG,CAAC,CAAC;;gBAEhC,aAAa,CAAC,GAAG,GAAG,GAAG,CAAC;gBACxB,aAAa,CAAC,IAAI,GAAG,IAAI,CAAC;;gBAE1B,YAAY,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC;aAC3C;;;YAGD,MAAM,GAAG,YAAY,CAAC;SACzB;;QAED,iBAAiB,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;;QAErC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;QACvB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QACxB,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QAC7B,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC,SAAS,IAAI,CAAC,CAAC;QACzC,IAAI,CAAC,eAAe,GAAG,CAAC,CAAC;;;;;;;;;QASzB,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,KAAK,KAAK,CAAC;;;;;;;;QAQ3C,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;;;;;QAOlB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;QAGrB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC7C,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAEzC,IAAI,OAAO,CAAC,QAAQ,KAAK,KAAK;QAC9B;YACI,IAAI,CAAC,IAAI,EAAE,CAAC;SACf;KACJ;;IAED,KAAK,iBAAiB,GAAG,aAAa,CAAC,SAAS,GAAG,iBAAiB,CAAC;IACrE,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,iBAAiB,IAAI,iBAAiB,CAAC,SAAS,EAAE,CAAC;IAC5F,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;IAEpD,IAAI,kBAAkB,GAAG,EAAE,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;IAOlG,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,SAAS;IAC3D;QACI,KAAK,SAAS,KAAK,KAAK,CAAC,GAAG,SAAS,GAAG,CAAC,CAAC;;QAE1C,IAAI,CAAC,IAAI,CAAC,SAAS;QACnB;;YAEI,IAAI,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC;;YAEnE,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,eAAe,GAAG,SAAS,CAAC,CAAC;YACpE,IAAI,CAAC,IAAI,CAAC,UAAU,IAAI,IAAI,CAAC,eAAe,IAAI,CAAC;YACjD;gBACI,iBAAiB,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;gBACzD,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;aACnF;SACJ;KACJ,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;IAC5C;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,IAAI,IAAI,CAAC,KAAK;QACd;YACI,OAAO,IAAI,CAAC,KAAK,CAAC;SACrB;;QAED,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;;QAEzB,IAAI,CAAC,MAAM,CAAC,UAAU,KAAK,MAAM,CAAC,gBAAgB,IAAI,MAAM,CAAC,UAAU,KAAK,MAAM,CAAC,gBAAgB;eAC5F,MAAM,CAAC,KAAK,IAAI,MAAM,CAAC,MAAM;QACpC;YACI,MAAM,CAAC,QAAQ,GAAG,IAAI,CAAC;SAC1B;;QAED,MAAM,CAAC,gBAAgB,CAAC,MAAM,EAAE,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;QAC9D,MAAM,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;;QAE9D,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE;QAC1B;YACI,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;YACpD,MAAM,CAAC,gBAAgB,CAAC,gBAAgB,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;YAC3D,MAAM,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;SACzD;;QAED;YACI,IAAI,CAAC,UAAU,EAAE,CAAC;SACrB;;QAED,IAAI,CAAC,KAAK,GAAG,IAAI,OAAO,CAAC,UAAU,OAAO,EAAE;YACxC,IAAI,MAAM,CAAC,KAAK;YAChB;gBACI,OAAO,CAAC,MAAM,CAAC,CAAC;aACnB;;YAED;gBACI,MAAM,CAAC,QAAQ,GAAG,OAAO,CAAC;;gBAE1B,MAAM,CAAC,IAAI,EAAE,CAAC;aACjB;SACJ,CAAC,CAAC;;QAEH,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ;IACpD;QACI,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,OAAO,EAAE,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;QAC9D,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;KAC3B,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IACpE;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;;QAEzB,QAAQ,MAAM,CAAC,WAAW,GAAG,CAAC,IAAI,MAAM,CAAC,MAAM,KAAK,KAAK,IAAI,MAAM,CAAC,KAAK,KAAK,KAAK,IAAI,MAAM,CAAC,UAAU,GAAG,CAAC,EAAE;KACjH,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;IAChE;QACI,OAAO,IAAI,CAAC,MAAM,CAAC,UAAU,KAAK,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,UAAU,KAAK,CAAC,CAAC;KACvE,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY;IAC5D;;QAEI,IAAI,CAAC,IAAI,CAAC,KAAK;QACf;YACI,IAAI,CAAC,UAAU,EAAE,CAAC;SACrB;;QAED,IAAI,CAAC,IAAI,CAAC,eAAe,IAAI,IAAI,CAAC,UAAU;QAC5C;YACI,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;SAC/B;KACJ,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;IAC1D;QACI,IAAI,IAAI,CAAC,eAAe;QACxB;YACI,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;SAChC;KACJ,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IACxD;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;;QAExB,MAAM,CAAC,mBAAmB,CAAC,SAAS,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;QACvD,MAAM,CAAC,mBAAmB,CAAC,gBAAgB,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;;QAE9D,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;;QAEvB,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,WAAW,CAAC,CAAC;;;QAGnD,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,QAAQ;QAC3B;YACI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;YACpB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;SACxB;;QAED,IAAI,IAAI,CAAC,gBAAgB,EAAE;QAC3B;YACI,IAAI,CAAC,YAAY,EAAE,CAAC;SACvB;aACI,IAAI,IAAI,CAAC,QAAQ;QACtB;YACI,MAAM,CAAC,IAAI,EAAE,CAAC;SACjB;KACJ,CAAC;;;;;;IAMF,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAClD;QACI,IAAI,IAAI,CAAC,eAAe;QACxB;YACI,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;SAC3C;;QAED,IAAI,IAAI,CAAC,MAAM;QACf;YACI,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,OAAO,EAAE,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;YAC9D,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;YACpB,IAAI,CAAC,MAAM,CAAC,GAAG,GAAG,EAAE,CAAC;YACrB,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC;SACtB;QACD,iBAAiB,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KAClD,CAAC;;;;;;;IAOF,kBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;IACpC;QACI,OAAO,IAAI,CAAC,WAAW,CAAC;KAC3B,CAAC;;IAEF,kBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,KAAK;IACnD;QACI,IAAI,KAAK,KAAK,IAAI,CAAC,WAAW;QAC9B;YACI,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;;YAEzB,IAAI,CAAC,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC,eAAe;YAC7C;gBACI,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;gBACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;aAChC;iBACI,IAAI,IAAI,CAAC,WAAW,IAAI,CAAC,IAAI,CAAC,eAAe;YAClD;gBACI,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;gBACrC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;aAC/B;SACJ;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG;IACnC;QACI,OAAO,IAAI,CAAC,UAAU,CAAC;KAC1B,CAAC;;IAEF,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG,UAAU,KAAK;IAClD;QACI,IAAI,KAAK,KAAK,IAAI,CAAC,UAAU;QAC7B;YACI,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;SAC3B;KACJ,CAAC;;;;;;;;;;IAUF,aAAa,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,SAAS;IACrD;QACI,OAAO,CAAC,MAAM,YAAY,gBAAgB;eACnC,aAAa,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC;KACtD,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,aAAa,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAEvE,OAAO,aAAa,CAAC;CACxB,CAAC,iBAAiB,CAAC,CAAC,CAAC;;;;;;;;;AAStB,aAAa,CAAC,KAAK,GAAG,CAAC,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;;;;;;;;;AASjF,IAAI,mBAAmB,iBAAiB,UAAU,iBAAiB,EAAE;IACjE,SAAS,mBAAmB,IAAI;QAC5B,iBAAiB,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;KAC5C;;IAED,KAAK,iBAAiB,GAAG,mBAAmB,CAAC,SAAS,GAAG,iBAAiB,CAAC;IAC3E,mBAAmB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,iBAAiB,IAAI,iBAAiB,CAAC,SAAS,EAAE,CAAC;IAClG,mBAAmB,CAAC,SAAS,CAAC,WAAW,GAAG,mBAAmB,CAAC;;IAEhE,mBAAmB,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM;IAChD;QACI,OAAO,CAAC,CAAC,MAAM,CAAC,iBAAiB,IAAI,MAAM,YAAY,WAAW,CAAC;KACtE,CAAC;;IAEF,OAAO,mBAAmB,CAAC;CAC9B,CAAC,iBAAiB,CAAC,CAAC,CAAC;;AAEtB,SAAS,CAAC,IAAI;IACV,aAAa;IACb,mBAAmB;IACnB,cAAc;IACd,aAAa;IACb,WAAW;IACX,cAAc;IACd,YAAY;IACZ,aAAa;CAChB,CAAC;AACF,AAeA;;;;;;;;AAQA,IAAI,MAAM,GAAG,SAAS,MAAM,CAAC,QAAQ;AACrC;;;;;;IAMI,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;CAC5B,CAAC;;;;;AAKF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC3C;IACI,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;CACxB,CAAC;;;;;;;;AAQF,IAAI,aAAa,iBAAiB,UAAU,cAAc,EAAE;IACxD,SAAS,aAAa,IAAI;QACtB,cAAc,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;KACzC;;IAED,KAAK,cAAc,GAAG,aAAa,CAAC,SAAS,GAAG,cAAc,CAAC;IAC/D,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,cAAc,IAAI,cAAc,CAAC,SAAS,EAAE,CAAC;IACtF,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;IAEpD,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS;IAClF;QACI,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;;QAErB,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,8BAA8B,EAAE,WAAW,CAAC,gBAAgB,CAAC,CAAC;;QAEhF,IAAI,SAAS,CAAC,KAAK,KAAK,WAAW,CAAC,KAAK,IAAI,SAAS,CAAC,MAAM,KAAK,WAAW,CAAC,MAAM;QACpF;YACI,EAAE,CAAC,aAAa;gBACZ,WAAW,CAAC,MAAM;gBAClB,CAAC;gBACD,CAAC;gBACD,CAAC;gBACD,WAAW,CAAC,KAAK;gBACjB,WAAW,CAAC,MAAM;gBAClB,WAAW,CAAC,MAAM;gBAClB,WAAW,CAAC,IAAI;gBAChB,IAAI,CAAC,IAAI;aACZ,CAAC;SACL;;QAED;YACI,SAAS,CAAC,KAAK,GAAG,WAAW,CAAC,KAAK,CAAC;YACpC,SAAS,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM,CAAC;;YAEtC,EAAE,CAAC,UAAU;gBACT,WAAW,CAAC,MAAM;gBAClB,CAAC;gBACD,EAAE,CAAC,iBAAiB;gBACpB,WAAW,CAAC,KAAK;gBACjB,WAAW,CAAC,MAAM;gBAClB,CAAC;gBACD,WAAW,CAAC,MAAM;gBAClB,WAAW,CAAC,IAAI;gBAChB,IAAI,CAAC,IAAI;aACZ,CAAC;SACL;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;IAEF,OAAO,aAAa,CAAC;CACxB,CAAC,cAAc,CAAC,CAAC,CAAC;;;;;;;;AAQnB,IAAI,WAAW,GAAG,SAAS,WAAW,CAAC,KAAK,EAAE,MAAM;AACpD;IACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,GAAG,CAAC,CAAC;IACrC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,IAAI,GAAG,CAAC,CAAC;;IAEvC,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;IACrB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;IAEnB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;IACjB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;IACrB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;;IAEnB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;IACzB,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;;IAExB,IAAI,CAAC,cAAc,GAAG,EAAE,CAAC;;IAEzB,IAAI,CAAC,aAAa,GAAG,IAAI,MAAM,CAAC,oBAAoB,EAAE,CAAC,CAAC,CAAC;CAC5D,CAAC;;AAEF,IAAID,sBAAoB,GAAG,EAAE,YAAY,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;AAQpEA,sBAAoB,CAAC,YAAY,CAAC,GAAG,GAAG;AACxC;IACI,OAAO,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;CAChC,CAAC;;;;;;;;AAQF,WAAW,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,KAAK,EAAE,OAAO;AAChF;QACQ,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;;;IAGtC,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,GAAG,OAAO,IAAI,IAAI,WAAW,CAAC,IAAI,EAAE,EAAE,SAAS,EAAE,CAAC;QACvE,UAAU,EAAE,CAAC;QACb,MAAM,EAAE,KAAK;QACb,KAAK,EAAE,IAAI,CAAC,KAAK;QACjB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC;;IAE3B,IAAI,CAAC,OAAO,EAAE,CAAC;IACf,IAAI,CAAC,WAAW,EAAE,CAAC;;IAEnB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;AAOF,WAAW,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,OAAO;AACzE;;IAEI,IAAI,CAAC,YAAY,GAAG,OAAO,IAAI,IAAI,WAAW,CAAC,IAAI,aAAa,CAAC,IAAI,EAAE,EAAE,KAAK,EAAE,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,SAAS,EAAE,CAAC;QAC9H,UAAU,EAAE,CAAC;QACb,KAAK,EAAE,IAAI,CAAC,KAAK;QACjB,MAAM,EAAE,IAAI,CAAC,MAAM;QACnB,MAAM,EAAE,KAAK;QACb,MAAM,EAAE,OAAO,CAAC,eAAe;QAC/B,IAAI,EAAE,KAAK,CAAC,cAAc,EAAE,CAAC,CAAC;;IAElC,IAAI,CAAC,OAAO,EAAE,CAAC;IACf,IAAI,CAAC,WAAW,EAAE,CAAC;;IAEnB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;AAKF,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;AACxD;IACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;IAElB,IAAI,CAAC,OAAO,EAAE,CAAC;IACf,IAAI,CAAC,WAAW,EAAE,CAAC;;IAEnB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;AAKF,WAAW,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;AAC5D;IACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;IAEpB,IAAI,CAAC,OAAO,EAAE,CAAC;IACf,IAAI,CAAC,WAAW,EAAE,CAAC;;IAEnB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,WAAW,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,KAAK,EAAE,MAAM;AAC7D;IACI,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IACzB,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;IAE3B,IAAI,KAAK,KAAK,IAAI,CAAC,KAAK,IAAI,MAAM,KAAK,IAAI,CAAC,MAAM,EAAE,EAAE,OAAO,EAAE;;IAE/D,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;IACnB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;IAErB,IAAI,CAAC,OAAO,EAAE,CAAC;IACf,IAAI,CAAC,SAAS,EAAE,CAAC;;IAEjB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE;IAClD;QACI,IAAI,OAAO,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;QACpC,IAAI,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC;;;QAGpC,OAAO,CAAC,OAAO,CAAC,KAAK,GAAG,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,CAAC;KAC5D;;IAED,IAAI,IAAI,CAAC,YAAY;IACrB;QACI,IAAI,YAAY,GAAG,IAAI,CAAC,YAAY,CAAC,UAAU,CAAC;;QAEhD,IAAI,CAAC,YAAY,CAAC,OAAO,CAAC,KAAK,GAAG,YAAY,EAAE,MAAM,GAAG,YAAY,CAAC,CAAC;KAC1E;CACJ,CAAC;;;;;AAKF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAChD;IACI,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;CACvC,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,WAAW,CAAC,SAAS,EAAEA,sBAAoB,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0CvE,IAAI,iBAAiB,iBAAiB,UAAU,WAAW,EAAE;IACzD,SAAS,iBAAiB,CAAC,OAAO;IAClC;QACI,IAAI,OAAO,OAAO,KAAK,QAAQ;QAC/B;;;YAGI,IAAI,OAAO,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;YAC3B,IAAI,QAAQ,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;YAC5B,IAAI,SAAS,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7B,IAAI,UAAU,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;YAE9B,OAAO,GAAG,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,SAAS,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC;;SAEhG;;QAED,WAAW,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;;QAEtC,IAAI,GAAG,GAAG,OAAO,IAAI,EAAE,CAAC;QACxB,IAAI,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC;QACtB,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;;;QAGxB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACpB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,CAAC;QACrC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,GAAG,CAAC;QACvC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;;;;;;QAQlB,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC;;QAEhC,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;QAE/B,IAAI,CAAC,WAAW,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,UAAU,CAAC;aAC1F,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;;;;;;;;;QAS9B,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC;;;;;;;QAO3B,IAAI,CAAC,WAAW,GAAG,CAAC,EAAE,CAAC,CAAC;KAC3B;;IAED,KAAK,WAAW,GAAG,iBAAiB,CAAC,SAAS,GAAG,WAAW,CAAC;IAC7D,iBAAiB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,WAAW,IAAI,WAAW,CAAC,SAAS,EAAE,CAAC;IACpF,iBAAiB,CAAC,SAAS,CAAC,WAAW,GAAG,iBAAiB,CAAC;;;;;;;;IAQ5D,iBAAiB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,KAAK,EAAE,MAAM;IACnE;QACI,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACzB,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC3B,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC;KAC9E,CAAC;;;;;;;;;IASF,iBAAiB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACtD;QACI,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC;;QAE3B,WAAW,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KAC5C,CAAC;;;;;;IAMF,iBAAiB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACtD;QACI,WAAW,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;;QAE/C,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;KAC3B,CAAC;;IAEF,OAAO,iBAAiB,CAAC;CAC5B,CAAC,WAAW,CAAC,CAAC,CAAC;;;;;;;;;;;;;;;;;;AAkBhB,IAAI,UAAU,GAAG,SAAS,UAAU;AACpC;;;;;;IAMI,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;IAOZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;IAOZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;IAOZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;IAOZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;IAOZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;IAOZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;IAOZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;IAEZ,IAAI,CAAC,UAAU,GAAG,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;CACzC,CAAC;;;;;;;;;;AAUF,UAAU,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM;AACjE;IACI,IAAI,EAAE,GAAG,SAAS,CAAC,KAAK,CAAC;IACzB,IAAI,EAAE,GAAG,SAAS,CAAC,MAAM,CAAC;;IAE1B,IAAI,MAAM;IACV;;QAEI,IAAI,EAAE,GAAG,KAAK,CAAC,KAAK,GAAG,CAAC,GAAG,EAAE,CAAC;QAC9B,IAAI,EAAE,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,GAAG,EAAE,CAAC;;;QAG/B,IAAI,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,CAAC;QAC7B,IAAI,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,CAAC;;QAE7B,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC,CAAC;QACzC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;QACzC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;;QAEzC,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;QAChC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;QACzC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;;QAEzC,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;QAChC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;QACzC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;;QAEzC,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;QAChC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;QACzC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;KAC5C;;IAED;QACI,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC,CAAC,GAAG,EAAE,CAAC;QACvB,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC,CAAC,GAAG,EAAE,CAAC;;QAEvB,IAAI,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC,KAAK,IAAI,EAAE,CAAC;QACvC,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC,CAAC,GAAG,EAAE,CAAC;;QAEvB,IAAI,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC,KAAK,IAAI,EAAE,CAAC;QACvC,IAAI,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC,MAAM,IAAI,EAAE,CAAC;;QAExC,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC,CAAC,GAAG,EAAE,CAAC;QACvB,IAAI,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC,MAAM,IAAI,EAAE,CAAC;KAC3C;;IAED,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC7B,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC7B,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC7B,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC7B,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC7B,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC7B,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC7B,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;CAChC,CAAC;;AAEF,IAAI,WAAW,GAAG,IAAI,UAAU,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgCnC,IAAI,OAAO,iBAAiB,UAAU,YAAY,EAAE;IAChD,SAAS,OAAO,CAAC,WAAW,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM;IAC/D;QACI,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;QAoBxB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;QAErB,IAAI,CAAC,KAAK;QACV;YACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;YACpB,KAAK,GAAG,IAAI,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;SACrC;;QAED,IAAI,WAAW,YAAY,OAAO;QAClC;YACI,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;SACzC;;;;;;;QAOD,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;;;;;;;;QAQ/B,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;;;;;;;;QAQpB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;QAOjB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;;QAOnB,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;;;;;;;;QAQ5B,IAAI,CAAC,IAAI,GAAG,WAAW,CAAC;;;;;;;;QAQxB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;;;;;QAOrB,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,KAAK,CAAC;;QAE1B,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC,MAAM,IAAI,CAAC,CAAC,CAAC;;QAEnC,IAAI,MAAM,KAAK,IAAI;QACnB;;YAEI,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;SACpB;aACI,IAAI,IAAI,CAAC,OAAO,GAAG,CAAC,KAAK,CAAC;QAC/B;YACI,MAAM,IAAI,KAAK,CAAC,2EAA2E,CAAC,CAAC;SAChG;;;;;;;;QAQD,IAAI,CAAC,aAAa,GAAG,MAAM,GAAG,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,IAAI,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;;;;;;;;;QAU9E,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;;;;;;;;;QASnB,IAAI,CAAC,eAAe,GAAG,EAAE,CAAC;;QAE1B,IAAI,CAAC,WAAW,CAAC,KAAK;QACtB;YACI,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,oBAAoB,EAAE,IAAI,CAAC,CAAC;SAC/D;aACI,IAAI,IAAI,CAAC,OAAO;QACrB;;YAEI,IAAI,WAAW,CAAC,KAAK;YACrB;gBACI,IAAI,CAAC,oBAAoB,CAAC,WAAW,CAAC,CAAC;aAC1C;SACJ;;QAED;YACI,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;SACtB;;QAED,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,WAAW,CAAC,EAAE,CAAC,QAAQ,EAAE,IAAI,CAAC,oBAAoB,EAAE,IAAI,CAAC,CAAC;SAC7D;KACJ;;IAED,KAAK,YAAY,GAAG,OAAO,CAAC,SAAS,GAAG,YAAY,CAAC;IACrD,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,YAAY,IAAI,YAAY,CAAC,SAAS,EAAE,CAAC;IAC5E,OAAO,CAAC,SAAS,CAAC,WAAW,GAAG,OAAO,CAAC;;IAExC,IAAI,kBAAkB,GAAG,EAAE,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;;IAU1L,OAAO,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;IAC1C;QACI,IAAI,IAAI,CAAC,WAAW,CAAC,QAAQ;QAC7B;YACI,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC;SACtC;KACJ,CAAC;;;;;;;;IAQF,OAAO,CAAC,SAAS,CAAC,oBAAoB,GAAG,SAAS,oBAAoB,EAAE,WAAW;IACnF;QACI,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK;YAC3B;gBACI,OAAO;aACV;;YAED,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,WAAW,CAAC,KAAK,CAAC;YACtC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM,CAAC;YACxC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;YAClB,IAAI,CAAC,SAAS,EAAE,CAAC;SACpB;;QAED;;;YAGI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;SAC5B;;QAED,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;KAC7B,CAAC;;;;;;;IAOF,OAAO,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,WAAW;IACzD;QACI,IAAI,IAAI,CAAC,WAAW;QACpB;YACI,IAAI,WAAW;YACf;gBACI,IAAI,GAAG,GAAG,IAAI,CAAC,WAAW,CAAC;gBAC3B,IAAI,QAAQ,GAAG,GAAG,CAAC,QAAQ,CAAC;;;;gBAI5B,IAAI,QAAQ,IAAI,YAAY,CAAC,QAAQ,CAAC,GAAG,CAAC;gBAC1C;oBACI,OAAO,CAAC,eAAe,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;iBACzC;;gBAED,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC;aAC9B;;YAED,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,QAAQ,EAAE,IAAI,CAAC,oBAAoB,EAAE,IAAI,CAAC,CAAC;;YAEhE,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;SAC3B;;QAED,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;QAEjB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;QAEnB,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;QAC9B,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;KAC/B,CAAC;;;;;;;IAOF,OAAO,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACxC;QACI,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,aAAa,CAAC,CAAC;KAC3G,CAAC;;;;;;IAMF,OAAO,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;IAChD;QACI,IAAI,IAAI,CAAC,IAAI,KAAK,WAAW;QAC7B;YACI,IAAI,CAAC,IAAI,GAAG,IAAI,UAAU,EAAE,CAAC;SAChC;;QAED,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;;QAE1D,IAAI,CAAC,SAAS,EAAE,CAAC;KACpB,CAAC;;;;;;;;;;;;IAYF,OAAO,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,OAAO;IAC7C;QACI,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,EAAE,CAAC;;QAEvC,IAAI,OAAO,GAAG,IAAI,CAAC;;QAEnB,IAAI,OAAO,MAAM,KAAK,QAAQ;QAC9B;YACI,OAAO,GAAG,MAAM,CAAC;SACpB;;QAED;YACI,IAAI,CAAC,MAAM,CAAC,OAAO;YACnB;gBACI,MAAM,CAAC,OAAO,GAAG,SAAS,IAAI,GAAG,EAAE,CAAC,CAAC;aACxC;;YAED,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC;SAC5B;;QAED,IAAI,OAAO,GAAG,YAAY,CAAC,OAAO,CAAC,CAAC;;QAEpC,IAAI,CAAC,OAAO;QACZ;YACI,IAAI,CAAC,OAAO,CAAC,UAAU;YACvB;gBACI,OAAO,CAAC,UAAU,GAAG,kBAAkB,CAAC,MAAM,CAAC,CAAC;aACnD;;YAED,OAAO,GAAG,IAAI,OAAO,CAAC,IAAI,WAAW,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;YACxD,OAAO,CAAC,WAAW,CAAC,OAAO,GAAG,OAAO,CAAC;;YAEtC,WAAW,CAAC,UAAU,CAAC,OAAO,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;YACrD,OAAO,CAAC,UAAU,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;SACxC;;;QAGD,OAAO,OAAO,CAAC;KAClB,CAAC;;;;;;;;;;;;;IAaF,OAAO,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO;IACxE;QACI,OAAO,IAAI,OAAO,CAAC,WAAW,CAAC,UAAU,CAAC,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;KAC9E,CAAC;;;;;;;;;;;;IAYF,OAAO,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI;IAChE;QACI,IAAI,QAAQ,GAAG,IAAI,aAAa,CAAC,MAAM,CAAC,CAAC;;QAEzC,QAAQ,CAAC,GAAG,GAAG,QAAQ,CAAC;;QAExB,IAAI,WAAW,GAAG,IAAI,WAAW,CAAC,QAAQ,EAAE;YACxC,SAAS,EAAE,QAAQ,CAAC,UAAU;YAC9B,UAAU,EAAE,kBAAkB,CAAC,QAAQ,CAAC;SAC3C,CAAC,CAAC;;QAEH,IAAI,OAAO,GAAG,IAAI,OAAO,CAAC,WAAW,CAAC,CAAC;;;QAGvC,IAAI,CAAC,IAAI;QACT;YACI,IAAI,GAAG,QAAQ,CAAC;SACnB;;;QAGD,WAAW,CAAC,UAAU,CAAC,OAAO,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;QAClD,OAAO,CAAC,UAAU,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;;;QAGlC,IAAI,IAAI,KAAK,QAAQ;QACrB;YACI,WAAW,CAAC,UAAU,CAAC,OAAO,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC;YACtD,OAAO,CAAC,UAAU,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;SACzC;;QAED,OAAO,OAAO,CAAC;KAClB,CAAC;;;;;;;;;IASF,OAAO,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,OAAO,EAAE,EAAE;IACrD;QACI,IAAI,EAAE;QACN;YACI,IAAI,OAAO,CAAC,eAAe,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;YAC9C;gBACI,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;aACpC;;YAED,IAAI,YAAY,CAAC,EAAE,CAAC;YACpB;;gBAEI,OAAO,CAAC,IAAI,EAAE,yCAAyC,GAAG,EAAE,GAAG,6BAA6B,EAAE,CAAC;aAClG;;YAED,YAAY,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC;SAC9B;KACJ,CAAC;;;;;;;;;IASF,OAAO,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,OAAO;IAC3D;QACI,IAAI,OAAO,OAAO,KAAK,QAAQ;QAC/B;YACI,IAAI,gBAAgB,GAAG,YAAY,CAAC,OAAO,CAAC,CAAC;;YAE7C,IAAI,gBAAgB;YACpB;gBACI,IAAI,KAAK,GAAG,gBAAgB,CAAC,eAAe,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;;gBAE9D,IAAI,KAAK,GAAG,CAAC,CAAC;gBACd;oBACI,gBAAgB,CAAC,eAAe,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;iBACrD;;gBAED,OAAO,YAAY,CAAC,OAAO,CAAC,CAAC;;gBAE7B,OAAO,gBAAgB,CAAC;aAC3B;SACJ;aACI,IAAI,OAAO,IAAI,OAAO,CAAC,eAAe;QAC3C;YACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,eAAe,CAAC,MAAM,EAAE,EAAE,CAAC;YACvD;;gBAEI,IAAI,YAAY,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,KAAK,OAAO;gBACxD;oBACI,OAAO,YAAY,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC;iBACnD;aACJ;;YAED,OAAO,CAAC,eAAe,CAAC,MAAM,GAAG,CAAC,CAAC;;YAEnC,OAAO,OAAO,CAAC;SAClB;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;IACpC;QACI,OAAO,IAAI,CAAC,WAAW,CAAC,UAAU,CAAC;KACtC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,MAAM,CAAC;KACtB,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;;QAEpB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;QAErB,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QAChB,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QAChB,IAAI,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;QACxB,IAAI,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;QAC1B,IAAI,OAAO,GAAG,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC;QACjD,IAAI,OAAO,GAAG,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC;;QAEnD,IAAI,OAAO,IAAI,OAAO;QACtB;YACI,IAAI,YAAY,GAAG,OAAO,IAAI,OAAO,GAAG,KAAK,GAAG,IAAI,CAAC;YACrD,IAAI,MAAM,GAAG,KAAK,GAAG,CAAC,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,IAAI,CAAC,GAAG,KAAK,CAAC,GAAG,KAAK,IAAI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;YAChG,IAAI,MAAM,GAAG,KAAK,GAAG,CAAC,GAAG,KAAK,GAAG,MAAM,GAAG,KAAK,IAAI,CAAC,GAAG,MAAM,CAAC,GAAG,KAAK,IAAI,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;;YAEnG,MAAM,IAAI,KAAK,CAAC,wEAAwE;kBAClF,MAAM,GAAG,GAAG,GAAG,YAAY,GAAG,GAAG,GAAG,MAAM,CAAC,CAAC;SACrD;;QAED,IAAI,CAAC,KAAK,GAAG,KAAK,IAAI,MAAM,IAAI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC;;QAEvD,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM;QAC9B;YACI,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC;SACrB;;QAED,IAAI,IAAI,CAAC,KAAK;QACd;YACI,IAAI,CAAC,SAAS,EAAE,CAAC;SACpB;KACJ,CAAC;;;;;;;;;;;IAWF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,OAAO,CAAC;KACvB,CAAC;;IAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,MAAM;IAChD;QACI,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;QACtB,IAAI,IAAI,CAAC,KAAK;QACd;YACI,IAAI,CAAC,SAAS,EAAE,CAAC;SACpB;KACJ,CAAC;;;;;;;IAOF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC;KAC1B,CAAC;;;;;;;IAOF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC;KAC3B,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,OAAO,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAEjE,OAAO,OAAO,CAAC;CAClB,CAACC,aAAY,CAAC,CAAC,CAAC;;AAEjB,SAAS,kBAAkB;AAC3B;IACI,IAAI,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;IAE9C,MAAM,CAAC,KAAK,GAAG,EAAE,CAAC;IAClB,MAAM,CAAC,MAAM,GAAG,EAAE,CAAC;;IAEnB,IAAI,OAAO,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;IAEtC,OAAO,CAAC,SAAS,GAAG,OAAO,CAAC;IAC5B,OAAO,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;;IAE/B,OAAO,IAAI,OAAO,CAAC,IAAI,WAAW,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;CACnE;;AAED,SAAS,iBAAiB,CAAC,GAAG;AAC9B;IACI,GAAG,CAAC,OAAO,GAAG,SAAS,aAAa,GAAG,eAAe,CAAC;IACvD,GAAG,CAAC,EAAE,GAAG,SAAS,QAAQ,GAAG,eAAe,CAAC;IAC7C,GAAG,CAAC,IAAI,GAAG,SAAS,UAAU,GAAG,eAAe,CAAC;IACjD,GAAG,CAAC,IAAI,GAAG,SAAS,UAAU,GAAG,eAAe,CAAC;CACpD;;;;;;;;;;AAUD,OAAO,CAAC,KAAK,GAAG,IAAI,OAAO,CAAC,IAAI,WAAW,EAAE,CAAC,CAAC;AAC/C,iBAAiB,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;AACjC,iBAAiB,CAAC,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;;;;;;;;;;AAU7C,OAAO,CAAC,KAAK,GAAG,kBAAkB,EAAE,CAAC;AACrC,iBAAiB,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;AACjC,iBAAiB,CAAC,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0C7C,IAAI,aAAa,iBAAiB,UAAU,OAAO,EAAE;IACjD,SAAS,aAAa,CAAC,iBAAiB,EAAE,KAAK;IAC/C;;QAEI,IAAI,eAAe,GAAG,IAAI,CAAC;;QAE3B,IAAI,EAAE,iBAAiB,YAAY,iBAAiB,CAAC;QACrD;;YAEI,IAAI,KAAK,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;YACzB,IAAI,MAAM,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;YAC1B,IAAI,SAAS,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7B,IAAI,UAAU,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;;YAG9B,OAAO,CAAC,IAAI,EAAE,kCAAkC,GAAG,KAAK,GAAG,IAAI,GAAG,MAAM,GAAG,iCAAiC,EAAE,CAAC;YAC/G,eAAe,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;;YAG/B,KAAK,GAAG,IAAI,CAAC;YACb,iBAAiB,GAAG,IAAI,iBAAiB,CAAC;gBACtC,KAAK,EAAE,KAAK;gBACZ,MAAM,EAAE,MAAM;gBACd,SAAS,EAAE,SAAS;gBACpB,UAAU,EAAE,UAAU;aACzB,CAAC,CAAC;SACN;;;;;;;QAOD,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,iBAAiB,EAAE,KAAK,CAAC,CAAC;;QAE7C,IAAI,CAAC,cAAc,GAAG,eAAe,CAAC;;;;;;;QAOtC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;;;;;;;QASlB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;QAOxB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;;QAE1B,IAAI,CAAC,SAAS,EAAE,CAAC;KACpB;;IAED,KAAK,OAAO,GAAG,aAAa,CAAC,SAAS,GAAG,OAAO,CAAC;IACjD,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,IAAI,OAAO,CAAC,SAAS,EAAE,CAAC;IACxE,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;;;;;;;;IASpD,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,iBAAiB;IAClF;QACI,KAAK,iBAAiB,KAAK,KAAK,CAAC,GAAG,iBAAiB,GAAG,IAAI,CAAC;;QAE7D,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACzB,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;;QAG3B,IAAI,CAAC,KAAK,IAAI,KAAK,GAAG,CAAC,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC;;QAEvC,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QAC5C,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;QAE/C,IAAI,iBAAiB;QACrB;YACI,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;SAC1C;;QAED,IAAI,CAAC,SAAS,EAAE,CAAC;KACpB,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,UAAU;IAC1E;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,WAAW,GAAG,GAAG,CAAC,WAAW,CAAC;;QAElC,IAAI,WAAW,CAAC,UAAU,KAAK,UAAU;QACzC;YACI,OAAO;SACV;;QAED,WAAW,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC;QACtC,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;KAC7D,CAAC;;;;;;;;;;;;IAYF,aAAa,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,OAAO;IAC/C;;QAEI,IAAI,OAAO,OAAO,KAAK,QAAQ;QAC/B;;YAEI,OAAO,GAAG;gBACN,KAAK,EAAE,OAAO;gBACd,MAAM,EAAE,SAAS,CAAC,CAAC,CAAC;gBACpB,SAAS,EAAE,SAAS,CAAC,CAAC,CAAC;gBACvB,UAAU,EAAE,SAAS,CAAC,CAAC,CAAC;aAC3B,CAAC;;SAEL;;QAED,OAAO,IAAI,aAAa,CAAC,IAAI,iBAAiB,CAAC,OAAO,CAAC,CAAC,CAAC;KAC5D,CAAC;;IAEF,OAAO,aAAa,CAAC;CACxB,CAAC,OAAO,CAAC,CAAC,CAAC;;;;;;;;;;;;;;AAcZ,IAAI,iBAAiB,GAAG,SAAS,iBAAiB,CAAC,cAAc;AACjE;IACI,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;IACtB,IAAI,CAAC,cAAc,GAAG,cAAc,IAAI,EAAE,CAAC;;;;;;;;;IAS3C,IAAI,CAAC,gBAAgB,GAAG,KAAK,CAAC;;IAE9B,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;IACtB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;CAC1B,CAAC;;;;;;;;;AASF,iBAAiB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,SAAS,EAAE,UAAU;AACzF;IACI,IAAI,iBAAiB,GAAG,IAAI,iBAAiB,CAAC,MAAM,CAAC,MAAM,CAAC;QACxD,KAAK,EAAE,SAAS;QAChB,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,CAAC;KAChB,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC;;IAEzB,OAAO,IAAI,aAAa,CAAC,iBAAiB,CAAC,CAAC;CAC/C,CAAC;;;;;;;;;;;AAWF,iBAAiB,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU;AAC3G;QACQ,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC;;IAEhD,IAAI,GAAG,GAAG,iBAAiB,CAAC,UAAU,CAAC;;IAEvC,QAAQ,IAAI,UAAU,CAAC;IACvB,SAAS,IAAI,UAAU,CAAC;;IAExB,IAAI,CAAC,IAAI,CAAC,gBAAgB,IAAI,QAAQ,KAAK,IAAI,CAAC,YAAY,IAAI,SAAS,KAAK,IAAI,CAAC,aAAa;IAChG;QACI,QAAQ,GAAG,QAAQ,CAAC,QAAQ,CAAC,CAAC;QAC9B,SAAS,GAAG,QAAQ,CAAC,SAAS,CAAC,CAAC;QAChC,GAAG,GAAG,CAAC,CAAC,QAAQ,GAAG,MAAM,KAAK,EAAE,KAAK,SAAS,GAAG,MAAM,CAAC,CAAC;KAC5D;;IAED,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC;IAC1B;QACI,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC;KAC9B;;IAED,IAAI,aAAa,GAAG,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,CAAC;;IAEhD,IAAI,CAAC,aAAa;IAClB;QACI,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC,QAAQ,EAAE,SAAS,CAAC,CAAC;KAC3D;;IAED,aAAa,CAAC,aAAa,GAAG,GAAG,CAAC;IAClC,aAAa,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC;;IAExC,OAAO,aAAa,CAAC;CACxB,CAAC;;;;;;;;;;;;AAYF,iBAAiB,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,KAAK,EAAE,UAAU;AAC3F;IACI,IAAI,aAAa,GAAG,IAAI,CAAC,iBAAiB,CAAC,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,MAAM,EAAE,UAAU,IAAI,KAAK,CAAC,UAAU,CAAC,CAAC;;IAEtG,aAAa,CAAC,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC;;IAE9C,OAAO,aAAa,CAAC;CACxB,CAAC;;;;;;AAMF,iBAAiB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,aAAa;AACjF;IACI,IAAI,GAAG,GAAG,aAAa,CAAC,aAAa,CAAC;;IAEtC,aAAa,CAAC,WAAW,GAAG,IAAI,CAAC;IACjC,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;CAC7C,CAAC;;;;;;AAMF,iBAAiB,CAAC,SAAS,CAAC,mBAAmB,GAAG,SAAS,mBAAmB,EAAE,aAAa;AAC7F;IACI,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,CAAC;CACrC,CAAC;;;;;;;AAOF,iBAAiB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,eAAe;AACnE;IACI,eAAe,GAAG,eAAe,KAAK,KAAK,CAAC;IAC5C,IAAI,eAAe;IACnB;QACI,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,WAAW;QAC9B;YACI,IAAI,QAAQ,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;;YAEnC,IAAI,QAAQ;YACZ;gBACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;gBACxC;oBACI,QAAQ,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;iBAC7B;aACJ;SACJ;KACJ;;IAED,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;CACzB,CAAC;;;;;;;;;;AAUF,iBAAiB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,IAAI;AACxE;IACI,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI,CAAC,YAAY;WAC7B,IAAI,CAAC,MAAM,KAAK,IAAI,CAAC,aAAa;IACzC;QACI,OAAO;KACV;;IAED,IAAI,SAAS,GAAG,iBAAiB,CAAC,UAAU,CAAC;IAC7C,IAAI,QAAQ,GAAG,IAAI,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC;;IAE3C,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;;IAE1D,IAAI,QAAQ;IACZ;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;QACxC;YACI,QAAQ,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;SAC7B;KACJ;IACD,IAAI,CAAC,WAAW,CAAC,SAAS,CAAC,GAAG,EAAE,CAAC;;IAEjC,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,KAAK,CAAC;IAC/B,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,MAAM,CAAC;CACpC,CAAC;;;;;;;;AAQF,iBAAiB,CAAC,UAAU,GAAG,QAAQ,CAAC;;;;;;;;;;;;;AAaxC,IAAI,SAAS,GAAG,SAAS,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ;AAC1F;IACI,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,KAAK,CAAC;IAChD,KAAK,IAAI,KAAK,KAAK,CAAC,GAAG,IAAI,GAAG,IAAI,CAAC;;IAEnC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACrB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;IAC7B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACrB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;IACnB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;CAC5B,CAAC;;;;;AAKF,SAAS,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC9C;IACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;CACtB,CAAC;;;;;;;;;;;;;;AAcF,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM;AACtE;IACI,OAAO,IAAI,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;CAChE,CAAC;;AAEF,IAAI,GAAG,GAAG,CAAC,CAAC;;;;;;;;;AASZ,IAAIE,QAAM,GAAG,SAAS,MAAM,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK;AACjD;IACI,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,IAAI,CAAC;IACzC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,KAAK,CAAC;;;;;;;IAOtC,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;;;;;;;;IAQxC,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;;IAErB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;;IAEnB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;IAEnB,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC;;IAEtB,IAAI,CAAC,EAAE,GAAG,GAAG,EAAE,CAAC;;IAEhB,IAAI,CAAC,aAAa,GAAG,IAAI,MAAM,CAAC,eAAe,EAAE,CAAC,CAAC,CAAC;CACvD,CAAC;;;;;;;AAOFA,QAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,IAAI;AAC/C;IACI,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,IAAI,CAAC,IAAI,CAAC;IAC9B,IAAI,CAAC,SAAS,EAAE,CAAC;CACpB,CAAC;;;;;AAKFA,QAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC3C;IACI,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;CACvC,CAAC;;;;;AAKFA,QAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC3C;IACI,IAAI,CAAC,OAAO,EAAE,CAAC;;IAEf,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CACpB,CAAC;;;;;;;;;AASFA,QAAM,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,IAAI;AACjC;IACI,IAAI,IAAI,YAAY,KAAK;IACzB;QACI,IAAI,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,CAAC;KACjC;;IAED,OAAO,IAAIA,QAAM,CAAC,IAAI,CAAC,CAAC;CAC3B,CAAC;;AAEF,SAAS,aAAa,CAAC,KAAK;AAC5B;IACI,IAAI,KAAK,CAAC,iBAAiB,KAAK,CAAC;IACjC;QACI,IAAI,KAAK,YAAY,YAAY;QACjC;YACI,OAAO,cAAc,CAAC;SACzB;aACI,IAAI,KAAK,YAAY,WAAW;QACrC;YACI,OAAO,aAAa,CAAC;SACxB;;QAED,OAAO,YAAY,CAAC;KACvB;SACI,IAAI,KAAK,CAAC,iBAAiB,KAAK,CAAC;IACtC;QACI,IAAI,KAAK,YAAY,WAAW;QAChC;YACI,OAAO,aAAa,CAAC;SACxB;KACJ;SACI,IAAI,KAAK,CAAC,iBAAiB,KAAK,CAAC;IACtC;QACI,IAAI,KAAK,YAAY,UAAU;QAC/B;YACI,OAAO,YAAY,CAAC;SACvB;KACJ;;;IAGD,OAAO,IAAI,CAAC;CACf;;;AAGD,IAAIX,KAAG,GAAG;IACN,YAAY,EAAE,YAAY;IAC1B,WAAW,EAAE,WAAW;IACxB,UAAU,EAAE,UAAU;IACtB,UAAU,EAAE,UAAU;CACzB,CAAC;;AAEF,SAAS,qBAAqB,CAAC,MAAM,EAAE,KAAK;AAC5C;IACI,IAAI,OAAO,GAAG,CAAC,CAAC;IAChB,IAAI,MAAM,GAAG,CAAC,CAAC;IACf,IAAI,KAAK,GAAG,EAAE,CAAC;;IAEf,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,EAAE;IACtC;QACI,MAAM,IAAI,KAAK,CAAC,CAAC,CAAC,CAAC;QACnB,OAAO,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;KAC/B;;IAED,IAAI,MAAM,GAAG,IAAI,WAAW,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC;;IAE1C,IAAI,GAAG,GAAG,IAAI,CAAC;IACf,IAAI,YAAY,GAAG,CAAC,CAAC;;IAErB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,EAAE;IAC5C;QACI,IAAI,IAAI,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC;QACtB,IAAI,KAAK,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;;QAExB,IAAI,IAAI,GAAG,aAAa,CAAC,KAAK,CAAC,CAAC;;QAEhC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;QAChB;YACI,KAAK,CAAC,IAAI,CAAC,GAAG,IAAIA,KAAG,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC;SACvC;;QAED,GAAG,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC;;QAElB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE;QACrC;YACI,IAAI,UAAU,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC,IAAI,MAAM,IAAI,YAAY,CAAC;YAC1D,IAAI,KAAK,GAAG,CAAC,GAAG,IAAI,CAAC;;YAErB,GAAG,CAAC,UAAU,GAAG,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;SACtC;;QAED,YAAY,IAAI,IAAI,CAAC;KACxB;;IAED,OAAO,IAAI,YAAY,CAAC,MAAM,CAAC,CAAC;CACnC;;AAED,IAAI,WAAW,GAAG,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC;AAChD,IAAI,KAAK,GAAG,CAAC,CAAC;;;AAGd,IAAIY,OAAK,GAAG;IACR,YAAY,EAAE,YAAY;IAC1B,WAAW,EAAE,WAAW;IACxB,UAAU,EAAE,UAAU;IACtB,UAAU,EAAE,UAAU;IACtB,WAAW,EAAE,WAAW;CAC3B,CAAC;;;;;;;;;;;;;;;;;;;;;;;AAuBF,IAAI,QAAQ,GAAG,SAAS,QAAQ,CAAC,OAAO,EAAE,UAAU;AACpD;IACI,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,EAAE,CAAC;IACvC,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,EAAE,CAAC;;IAE7C,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;IAEvB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;IAExB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;;;;;;;;IAQ7B,IAAI,CAAC,oBAAoB,GAAG,EAAE,CAAC;;IAE/B,IAAI,CAAC,EAAE,GAAG,KAAK,EAAE,CAAC;;IAElB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;;;;;;IAOvB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;IAEvB,IAAI,CAAC,aAAa,GAAG,IAAI,MAAM,CAAC,iBAAiB,EAAE,CAAC,CAAC,CAAC;;;;;;IAMtD,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;CACrB,CAAC;;;;;;;;;;;;;;;;AAgBF,QAAQ,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ;AACpH;QACQ,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,KAAK,CAAC;QAChD,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,KAAK,CAAC;;IAEhD,IAAI,CAAC,MAAM;IACX;QACI,MAAM,IAAI,KAAK,CAAC,mDAAmD,CAAC,CAAC;KACxE;;;IAGD,IAAI,CAAC,MAAM,CAAC,IAAI;IAChB;;QAEI,IAAI,MAAM,YAAY,KAAK;QAC3B;YACI,MAAM,GAAG,IAAI,YAAY,CAAC,MAAM,CAAC,CAAC;SACrC;;QAED,MAAM,GAAG,IAAID,QAAM,CAAC,MAAM,CAAC,CAAC;KAC/B;;IAED,IAAI,GAAG,GAAG,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;;IAExB,IAAI,GAAG,CAAC,MAAM,GAAG,CAAC;IAClB;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,EAAE;QACnC;YACI,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC;SAC7D;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,IAAI,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;IAE/C,IAAI,WAAW,KAAK,CAAC,CAAC;IACtB;QACI,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC1B,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;KACzC;;IAED,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,GAAG,IAAI,SAAS,CAAC,WAAW,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,CAAC,CAAC;;;IAGlG,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,IAAI,QAAQ,CAAC;;IAE5C,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,QAAQ,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,EAAE;AAC3D;IACI,OAAO,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;CAC9B,CAAC;;;;;;;;AAQF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,EAAE;AACrD;IACI,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC;CACrD,CAAC;;;;;;;;;;AAUF,QAAQ,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,MAAM;AACvD;IACI,IAAI,CAAC,MAAM,CAAC,IAAI;IAChB;;QAEI,IAAI,MAAM,YAAY,KAAK;QAC3B;YACI,MAAM,GAAG,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC;SACpC;;QAED,MAAM,GAAG,IAAIA,QAAM,CAAC,MAAM,CAAC,CAAC;KAC/B;;IAED,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,WAAW,GAAG,MAAM,CAAC;;IAE1B,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IACvC;QACI,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;KAC7B;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;AAOF,QAAQ,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ;AAC/C;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;;;;;;;;AAQF,QAAQ,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;AACnD;;IAEI,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,KAAK,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,IAAI,IAAI,CAAC,WAAW,CAAC,EAAE,EAAE,OAAO,IAAI,CAAC,EAAE;;;IAGlG,IAAI,MAAM,GAAG,EAAE,CAAC;IAChB,IAAI,KAAK,GAAG,EAAE,CAAC;IACf,IAAI,iBAAiB,GAAG,IAAIA,QAAM,EAAE,CAAC;IACrC,IAAI,CAAC,CAAC;;IAEN,KAAK,CAAC,IAAI,IAAI,CAAC,UAAU;IACzB;QACI,IAAI,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;;QAEnC,IAAI,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;;QAE5C,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;QAEzB,KAAK,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,IAAI,GAAG,WAAW,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;;QAE/D,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;KACxB;;IAED,iBAAiB,CAAC,IAAI,GAAG,qBAAqB,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;;IAE9D,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;IACxC;QACI,IAAI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,WAAW;QACxC;YACI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;SAC7B;KACJ;;IAED,IAAI,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;;IAEnC,IAAI,IAAI,CAAC,WAAW;IACpB;QACI,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;KACvC;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;AAEF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC7C;IACI,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,UAAU;IAC7B;QACI,IAAI,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;QACnC,IAAI,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;;QAE5C,OAAO,MAAM,CAAC,IAAI,CAAC,MAAM,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,KAAK,SAAS,CAAC,IAAI,CAAC,CAAC;KAC1E;;IAED,OAAO,CAAC,CAAC;CACZ,CAAC;;;;;AAKF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC7C;IACI,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;CACvC,CAAC;;;;;AAKF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC7C;IACI,IAAI,CAAC,OAAO,EAAE,CAAC;;IAEf,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC;;IAE3B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;CAC1B,CAAC;;;;;;;AAOF,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACzC;IACI,IAAI,QAAQ,GAAG,IAAI,QAAQ,EAAE,CAAC;;IAE9B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;IAC5C;QACI,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,IAAIA,QAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,CAAC;KAClE;;IAED,KAAK,IAAI,GAAG,IAAI,IAAI,CAAC,UAAU;IAC/B;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;;QAElC,QAAQ,CAAC,UAAU,CAAC,GAAG,CAAC,GAAG,IAAI,SAAS;YACpC,MAAM,CAAC,MAAM;YACb,MAAM,CAAC,IAAI;YACX,MAAM,CAAC,UAAU;YACjB,MAAM,CAAC,IAAI;YACX,MAAM,CAAC,MAAM;YACb,MAAM,CAAC,KAAK;YACZ,MAAM,CAAC,QAAQ;SAClB,CAAC;KACL;;IAED,IAAI,IAAI,CAAC,WAAW;IACpB;QACI,QAAQ,CAAC,WAAW,GAAG,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;QAChF,QAAQ,CAAC,WAAW,CAAC,KAAK,GAAG,IAAI,CAAC;KACrC;;IAED,OAAO,QAAQ,CAAC;CACnB,CAAC;;;;;;;;;AASF,QAAQ,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,UAAU;AAC3C;;;;IAII,IAAI,WAAW,GAAG,IAAI,QAAQ,EAAE,CAAC;;IAEjC,IAAI,MAAM,GAAG,EAAE,CAAC;IAChB,IAAI,KAAK,GAAG,EAAE,CAAC;IACf,IAAI,OAAO,GAAG,EAAE,CAAC;;IAEjB,IAAI,QAAQ,CAAC;;;IAGb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE;IAC1C;QACI,QAAQ,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;;QAEzB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;QAChD;YACI,KAAK,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;YACzB,KAAK,CAAC,CAAC,CAAC,IAAI,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;YAC5C,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;SAClB;KACJ;;;IAGD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE;IACtD;;QAEI,MAAM,CAAC,GAAG,CAAC,GAAG,IAAIC,OAAK,CAAC,aAAa,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;QAC/E,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,IAAID,QAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;KACtD;;;IAGD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,GAAG,EAAE;IAChD;QACI,QAAQ,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;;QAE3B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE;QACtD;YACI,MAAM,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC;YAC1D,OAAO,CAAC,GAAG,CAAC,IAAI,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;SACrD;KACJ;;IAED,WAAW,CAAC,UAAU,GAAG,QAAQ,CAAC,UAAU,CAAC;;IAE7C,IAAI,QAAQ,CAAC,WAAW;IACxB;QACI,WAAW,CAAC,WAAW,GAAG,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC,CAAC;QAC9F,WAAW,CAAC,WAAW,CAAC,KAAK,GAAG,IAAI,CAAC;;QAErC,IAAI,MAAM,GAAG,CAAC,CAAC;QACf,IAAI,MAAM,GAAG,CAAC,CAAC;QACf,IAAI,OAAO,GAAG,CAAC,CAAC;QAChB,IAAI,kBAAkB,GAAG,CAAC,CAAC;;;QAG3B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE;QACtD;YACI,IAAI,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,QAAQ,CAAC,WAAW;YAClD;gBACI,kBAAkB,GAAG,GAAG,CAAC;gBACzB,MAAM;aACT;SACJ;;;QAGD,KAAK,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU;QACnC;YACI,IAAI,SAAS,GAAG,QAAQ,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;;YAEzC,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,MAAM,kBAAkB;YACjD;gBACI,MAAM,KAAK,CAAC,SAAS,CAAC,IAAI,GAAG,WAAW,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;aAClE;SACJ;;;QAGD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,GAAG,EAAE;QAChD;YACI,IAAI,eAAe,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC;;YAEvD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE;YACrD;gBACI,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,GAAG,GAAG,OAAO,CAAC,IAAI,MAAM,CAAC;aACzD;;YAED,MAAM,IAAI,QAAQ,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,IAAI,CAAC,MAAM,IAAI,MAAM,CAAC,CAAC;YACtE,OAAO,IAAI,eAAe,CAAC,MAAM,CAAC;SACrC;KACJ;;IAED,OAAO,WAAW,CAAC;CACtB,CAAC;;;;;;;;AAQF,IAAI,IAAI,iBAAiB,UAAU,QAAQ,EAAE;IACzC,SAAS,IAAI;IACb;QACI,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAEpB,IAAI,CAAC,YAAY,CAAC,iBAAiB,EAAE;YACjC,CAAC,EAAE,CAAC;YACJ,CAAC,EAAE,CAAC;YACJ,CAAC,EAAE,CAAC;YACJ,CAAC,EAAE,CAAC,EAAE,CAAC;aACN,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;KAC/B;;IAED,KAAK,QAAQ,GAAG,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;IAC1C,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,QAAQ,IAAI,QAAQ,CAAC,SAAS,EAAE,CAAC;IACjE,IAAI,CAAC,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC;;IAElC,OAAO,IAAI,CAAC;CACf,CAAC,QAAQ,CAAC,CAAC,CAAC;;;;;;;;;AASb,IAAI,MAAM,iBAAiB,UAAU,QAAQ,EAAE;IAC3C,SAAS,MAAM;IACf;QACI,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;QAOpB,IAAI,CAAC,QAAQ,GAAG,IAAI,YAAY,CAAC;YAC7B,CAAC,CAAC,EAAE,CAAC,CAAC;YACN,CAAC,EAAE,CAAC,CAAC;YACL,CAAC,EAAE,CAAC;YACJ,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;;;;;;;QAOb,IAAI,CAAC,GAAG,GAAG,IAAI,YAAY,CAAC;YACxB,CAAC,EAAE,CAAC;YACJ,CAAC,EAAE,CAAC;YACJ,CAAC,EAAE,CAAC;YACJ,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;;QAEZ,IAAI,CAAC,YAAY,GAAG,IAAIA,QAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAC9C,IAAI,CAAC,QAAQ,GAAG,IAAIA,QAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;QAErC,IAAI,CAAC,YAAY,CAAC,iBAAiB,EAAE,IAAI,CAAC,YAAY,CAAC;aAClD,YAAY,CAAC,eAAe,EAAE,IAAI,CAAC,QAAQ,CAAC;aAC5C,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;KACrC;;IAED,KAAK,QAAQ,GAAG,MAAM,CAAC,SAAS,GAAG,QAAQ,CAAC;IAC5C,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,QAAQ,IAAI,QAAQ,CAAC,SAAS,EAAE,CAAC;IACnE,MAAM,CAAC,SAAS,CAAC,WAAW,GAAG,MAAM,CAAC;;;;;;;;;IAStC,MAAM,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,kBAAkB,EAAE,gBAAgB;IACzE;QACI,IAAI,CAAC,GAAG,CAAC,CAAC;QACV,IAAI,CAAC,GAAG,CAAC,CAAC;;QAEV,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QAChB,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;;QAEhB,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,gBAAgB,CAAC,KAAK,GAAG,kBAAkB,CAAC,KAAK,CAAC,CAAC;QACtE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;;QAEhB,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,gBAAgB,CAAC,KAAK,GAAG,kBAAkB,CAAC,KAAK,CAAC,CAAC;QACtE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,gBAAgB,CAAC,MAAM,GAAG,kBAAkB,CAAC,MAAM,CAAC,CAAC;;QAExE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QAChB,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,gBAAgB,CAAC,MAAM,GAAG,kBAAkB,CAAC,MAAM,CAAC,CAAC;;QAExE,CAAC,GAAG,gBAAgB,CAAC,CAAC,CAAC;QACvB,CAAC,GAAG,gBAAgB,CAAC,CAAC,CAAC;;QAEvB,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QACrB,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;;QAErB,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,gBAAgB,CAAC,KAAK,CAAC;QAC9C,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;;QAErB,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,gBAAgB,CAAC,KAAK,CAAC;QAC9C,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,gBAAgB,CAAC,MAAM,CAAC;;QAE/C,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QACrB,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,gBAAgB,CAAC,MAAM,CAAC;;QAE/C,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,MAAM,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IACjD;QACI,IAAI,CAAC,YAAY,CAAC,SAAS,EAAE,CAAC;QAC9B,IAAI,CAAC,QAAQ,CAAC,SAAS,EAAE,CAAC;;QAE1B,OAAO,IAAI,CAAC;KACf,CAAC;;IAEF,OAAO,MAAM,CAAC;CACjB,CAAC,QAAQ,CAAC,CAAC,CAAC;;AAEb,IAAI,KAAK,GAAG,CAAC,CAAC;;;;;;;;AAQd,IAAI,YAAY,GAAG,SAAS,YAAY,CAAC,QAAQ,EAAE,OAAO;AAC1D;;;;;;IAMI,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;;;;;;;;IAQzB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;IAGlB,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;;;;;;;IAOvB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;IAOjB,IAAI,CAAC,EAAE,GAAG,KAAK,EAAE,CAAC;;;;;;IAMlB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,OAAO,CAAC;CAC3B,CAAC;;AAEF,YAAY,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;AAC/C;IACI,IAAI,CAAC,OAAO,EAAE,CAAC;CAClB,CAAC;;AAEF,YAAY,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO;AAClE;IACI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,IAAI,YAAY,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;CAC7D,CAAC;;AAEF,YAAY,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,QAAQ,EAAE,OAAO;AACpD;IACI,OAAO,IAAI,YAAY,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;CAC9C,CAAC;;;;;;;;AAQF,IAAI,WAAW,GAAG,SAAS,WAAW;AACtC;IACI,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;;;;;;;;IAQ1B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;;IAQnB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;;;;;;;;IAQpB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;;;;;;;;;IAUpB,IAAI,CAAC,WAAW,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;IAOnC,IAAI,CAAC,gBAAgB,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;IAOxC,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;CACrB,CAAC;;;;;;AAMF,WAAW,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC5C;IACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;IACnB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;CAC7B,CAAC;;;;;;;;;AASF,IAAI,YAAY,iBAAiB,UAAU,MAAM,EAAE;IAC/C,SAAS,YAAY,CAAC,QAAQ;IAC9B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;QAO5B,IAAI,CAAC,kBAAkB,GAAG,CAAC,EAAE,CAAC,CAAC;;;;;;QAM/B,IAAI,CAAC,WAAW,GAAG,IAAI,iBAAiB,EAAE,CAAC;;QAE3C,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;;;;;;QAM9C,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;;;;;;QAMpB,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;;;;;;QAMvB,IAAI,CAAC,MAAM,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;QAM3B,IAAI,CAAC,QAAQ,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;QAMhC,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;;;;;;;;;;;;;QAatB,IAAI,CAAC,cAAc,GAAG,IAAI,YAAY,CAAC;YACnC,WAAW,EAAE,IAAI,CAAC,QAAQ;YAC1B,SAAS,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC;YAC9B,UAAU,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC;YAC/B,UAAU,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC;YAC/B,UAAU,EAAE,CAAC;;;YAGb,UAAU,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC;YAC/B,WAAW,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC;SACnC,EAAE,IAAI,CAAC,CAAC;;QAET,IAAI,CAAC,YAAY,GAAG,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;QACxC,IAAI,CAAC,aAAa,GAAG,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC;KAC7C;;IAED,KAAK,MAAM,GAAG,YAAY,CAAC,SAAS,GAAG,MAAM,CAAC;IAC9C,YAAY,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACrE,YAAY,CAAC,SAAS,CAAC,WAAW,GAAG,YAAY,CAAC;;;;;;;;IAQlD,YAAY,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,OAAO;IAC5D;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;QAC7B,IAAI,WAAW,GAAG,IAAI,CAAC,kBAAkB,CAAC;QAC1C,IAAI,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC,GAAG,EAAE,IAAI,IAAI,WAAW,EAAE,CAAC;;QAEtD,IAAI,UAAU,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC;QACvC,IAAI,OAAO,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC;QACjC,IAAI,OAAO,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC;QACjC,IAAI,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;;QAE/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;QACvC;YACI,IAAI,MAAM,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC;;;YAGzB,UAAU,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC;;YAErD,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC;;YAE5C,OAAO,GAAG,OAAO,IAAI,MAAM,CAAC,OAAO,CAAC;;YAEpC,MAAM,GAAG,MAAM,IAAI,MAAM,CAAC,MAAM,CAAC;SACpC;;QAED,IAAI,WAAW,CAAC,MAAM,KAAK,CAAC;QAC5B;YACI,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,aAAa,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAC;SAC7E;;QAED,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;;QAExB,KAAK,CAAC,UAAU,GAAG,UAAU,CAAC;;QAE9B,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC;;QAEtB,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC;;QAEtB,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,MAAM,CAAC,UAAU,IAAI,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC;;QAExE,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;QAC/B,IAAI,OAAO;QACX;YACI,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,WAAW,CAAC,CAAC;SAClE;;;QAGD,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;;QAEnC,KAAK,CAAC,aAAa,GAAG,IAAI,CAAC,uBAAuB,CAAC,KAAK,CAAC,WAAW,CAAC,KAAK,EAAE,KAAK,CAAC,WAAW,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;QAClH,KAAK,CAAC,OAAO,GAAG,OAAO,CAAC;;QAExB,KAAK,CAAC,gBAAgB,CAAC,KAAK,GAAG,KAAK,CAAC,aAAa,CAAC,KAAK,CAAC;QACzD,KAAK,CAAC,gBAAgB,CAAC,MAAM,GAAG,KAAK,CAAC,aAAa,CAAC,MAAM,CAAC;;QAE3D,KAAK,CAAC,aAAa,CAAC,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC;;QAEpD,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,KAAK,CAAC,aAAa,EAAE,KAAK,CAAC,WAAW,CAAC,CAAC;QACpE,QAAQ,CAAC,aAAa,CAAC,KAAK,EAAE,CAAC;KAClC,CAAC;;;;;;IAMF,YAAY,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG;IACzC;QACI,IAAI,WAAW,GAAG,IAAI,CAAC,kBAAkB,CAAC;QAC1C,IAAI,KAAK,GAAG,WAAW,CAAC,GAAG,EAAE,CAAC;QAC9B,IAAI,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC;;QAE5B,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;;QAEzB,IAAI,cAAc,GAAG,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC;;QAElD,cAAc,CAAC,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC;QAC/C,cAAc,CAAC,UAAU,GAAG,KAAK,CAAC,UAAU,CAAC;;QAE7C,IAAI,SAAS,GAAG,cAAc,CAAC,SAAS,CAAC;QACzC,IAAI,UAAU,GAAG,cAAc,CAAC,UAAU,CAAC;QAC3C,IAAI,UAAU,GAAG,cAAc,CAAC,UAAU,CAAC;;QAE3C,SAAS,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,gBAAgB,CAAC,KAAK,CAAC;QAC5C,SAAS,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,gBAAgB,CAAC,MAAM,CAAC;QAC7C,SAAS,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;QAClC,SAAS,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;QAElC,UAAU,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,UAAU,CAAC;QAChD,UAAU,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,UAAU,CAAC;QAChD,UAAU,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;QACpC,UAAU,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;;QAEpC,UAAU,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;QACpC,UAAU,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;QACpC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,WAAW,CAAC,KAAK,GAAG,SAAS,CAAC,CAAC,CAAC,KAAK,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;QACjF,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,WAAW,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC,CAAC,KAAK,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGlF,IAAI,KAAK,CAAC,MAAM;QAChB;YACI,IAAI,UAAU,GAAG,cAAc,CAAC,UAAU,CAAC;;YAE3C,UAAU,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,gBAAgB,CAAC,KAAK,CAAC;YAC7C,UAAU,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,gBAAgB,CAAC,MAAM,CAAC;YAC9C,UAAU,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC;YACpC,UAAU,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC;;YAEpC,cAAc,CAAC,WAAW,GAAG,cAAc,CAAC,UAAU,CAAC;SAC1D;;QAED,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC;;QAE7B,IAAI,SAAS,GAAG,WAAW,CAAC,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;QAEpD,IAAI,OAAO,CAAC,MAAM,KAAK,CAAC;QACxB;YACI,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,KAAK,CAAC,aAAa,EAAE,SAAS,CAAC,aAAa,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;;YAEnF,IAAI,CAAC,mBAAmB,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;SACjD;;QAED;YACI,IAAI,IAAI,GAAG,KAAK,CAAC,aAAa,CAAC;YAC/B,IAAI,IAAI,GAAG,IAAI,CAAC,uBAAuB;gBACnC,IAAI,CAAC,KAAK;gBACV,IAAI,CAAC,MAAM;gBACX,KAAK,CAAC,UAAU;aACnB,CAAC;;YAEF,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;;YAEpC,IAAI,CAAC,GAAG,CAAC,CAAC;;YAEV,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE,EAAE,CAAC;YACvC;gBACI,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;;gBAEhD,IAAI,CAAC,GAAG,IAAI,CAAC;;gBAEb,IAAI,GAAG,IAAI,CAAC;gBACZ,IAAI,GAAG,CAAC,CAAC;aACZ;;YAED,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,EAAE,SAAS,CAAC,aAAa,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;;YAEpE,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAC;YAC/B,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAC;SAClC;;QAED,KAAK,CAAC,KAAK,EAAE,CAAC;QACd,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAC9B,CAAC;;;;;;;;;;IAUF,YAAY,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK;IACvF;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;;QAE7B,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;;QAExE,IAAI,KAAK;QACT;;YAEI,QAAQ,CAAC,aAAa,CAAC,KAAK,EAAE,CAAC;;SAElC;;;QAGD,MAAM,CAAC,QAAQ,CAAC,QAAQ,GAAG,KAAK,CAAC;QACjC,MAAM,CAAC,QAAQ,CAAC,aAAa,GAAG,IAAI,CAAC,cAAc,CAAC;;;;;;QAMpD,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QACjC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;QAE7B,IAAI,MAAM,CAAC,MAAM;QACjB;YACI,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,EAAE,KAAK,CAAC,WAAW,CAAC,CAAC;;YAEjD,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YACpC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC;SAChD;;QAED;YACI,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YAClC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC;SACrD;KACJ,CAAC;;;;;;;;;;;IAWF,YAAY,CAAC,SAAS,CAAC,qBAAqB,GAAG,SAAS,qBAAqB,EAAE,YAAY,EAAE,MAAM;IACnG;QACI,IAAI,GAAG,GAAG,IAAI,CAAC,WAAW,CAAC;QAC3B,IAAI,WAAW,GAAG,GAAG,CAAC,WAAW,CAAC;QAClC,IAAI,gBAAgB,GAAG,GAAG,CAAC,gBAAgB,CAAC;QAC5C,IAAI,KAAK,GAAG,MAAM,CAAC,QAAQ,CAAC;QAC5B,IAAI,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC;QACtB,IAAI,YAAY,GAAG,YAAY,CAAC,GAAG,CAAC,gBAAgB,CAAC,KAAK,EAAE,CAAC,EAAE,CAAC;YAC5D,gBAAgB,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC;QAC3D,IAAI,cAAc,GAAG,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;;QAEtE,cAAc,CAAC,MAAM,EAAE,CAAC;QACxB,YAAY,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;QACrC,YAAY,CAAC,KAAK,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;QACxD,YAAY,CAAC,SAAS,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;;QAEzD,OAAO,YAAY,CAAC;KACvB,CAAC;;;;;IAKF,YAAY,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACjD;;QAEI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;KACjC,CAAC;;;;;;;;;;;IAWF,YAAY,CAAC,SAAS,CAAC,uBAAuB,GAAG,SAAS,uBAAuB,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU;IAClH;QACI,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC;;QAE5C,OAAO,IAAI,CAAC,WAAW,CAAC,iBAAiB,CAAC,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC;KAC9E,CAAC;;;;;;;;;;IAUF,YAAY,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,KAAK,EAAE,UAAU;IACtF;QACI,IAAI,OAAO,KAAK,KAAK,QAAQ;QAC7B;YACI,IAAI,IAAI,GAAG,KAAK,CAAC;;YAEjB,KAAK,GAAG,UAAU,CAAC;YACnB,UAAU,GAAG,IAAI,CAAC;SACrB;;QAED,KAAK,GAAG,KAAK,IAAI,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC;;QAEhD,IAAI,aAAa,GAAG,IAAI,CAAC,WAAW,CAAC,iBAAiB,CAAC,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,MAAM,EAAE,UAAU,IAAI,KAAK,CAAC,UAAU,CAAC,CAAC;;QAElH,aAAa,CAAC,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC;;QAE9C,OAAO,aAAa,CAAC;KACxB,CAAC;;;;;;;IAOF,YAAY,CAAC,SAAS,CAAC,mBAAmB,GAAG,SAAS,mBAAmB,EAAE,aAAa;IACxF;QACI,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,aAAa,CAAC,CAAC;KACjD,CAAC;;;;;IAKF,YAAY,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;IACrD;QACI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;KAChC,CAAC;;;;;IAKF,YAAY,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;IAC/C;QACI,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;KACtD,CAAC;;IAEF,OAAO,YAAY,CAAC;CACvB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;;AAUX,IAAI,cAAc,GAAG,SAAS,cAAc,CAAC,QAAQ;AACrD;;;;;;IAMI,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;CAC5B,CAAC;;;;;;AAMF,cAAc,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC/C;;CAEC,CAAC;;;;;;AAMF,cAAc,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AACnD;IACI,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;CACxB,CAAC;;;;;;;;AAQF,cAAc,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC/C;;CAEC,CAAC;;;;;;AAMF,cAAc,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;AAC7C;IACI,IAAI,CAAC,KAAK,EAAE,CAAC;CAChB,CAAC;;;;;;;;AAQF,cAAc,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,MAAM;AACzD;;CAEC,CAAC;;;;;;;;;AASF,IAAI,WAAW,iBAAiB,UAAU,MAAM,EAAE;IAC9C,SAAS,WAAW,CAAC,QAAQ;IAC7B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;QAO5B,IAAI,CAAC,aAAa,GAAG,IAAI,cAAc,CAAC,QAAQ,CAAC,CAAC;;;;;;;QAOlD,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,aAAa,CAAC;KAC7C;;IAED,KAAK,MAAM,GAAG,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC;IAC7C,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACpE,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,WAAW,CAAC;;;;;;;IAOhD,WAAW,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,cAAc;IACpF;QACI,IAAI,IAAI,CAAC,eAAe,KAAK,cAAc;QAC3C;YACI,OAAO;SACV;;QAED,IAAI,CAAC,eAAe,CAAC,IAAI,EAAE,CAAC;QAC5B,IAAI,CAAC,eAAe,GAAG,cAAc,CAAC;;QAEtC,IAAI,CAAC,eAAe,CAAC,KAAK,EAAE,CAAC;KAChC,CAAC;;;;;;IAMF,WAAW,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC5C;QACI,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KAC9C,CAAC;;;;;IAKF,WAAW,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC5C;QACI,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KAC9C,CAAC;;IAEF,OAAO,WAAW,CAAC;CACtB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;;;;;;;;;;AAkBX,QAAQ,CAAC,UAAU,GAAG,QAAQ,CAAC,GAAG,GAAG,GAAG,CAAC,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC;;AAE5D,IAAI,WAAW,GAAG,CAAC,CAAC;;;;;;;;;AASpB,IAAI,aAAa,iBAAiB,UAAU,MAAM,EAAE;IAChD,SAAS,aAAa,CAAC,QAAQ;IAC/B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;QAO5B,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;;;;;;;;;;;;;QAatB,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;;;QAGrB,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC3D,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAEnE,QAAQ,CAAC,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,IAAI,CAAC,iBAAiB,EAAE,KAAK,CAAC,CAAC;QAClF,QAAQ,CAAC,IAAI,CAAC,gBAAgB,CAAC,sBAAsB,EAAE,IAAI,CAAC,qBAAqB,EAAE,KAAK,CAAC,CAAC;KAC7F;;IAED,KAAK,MAAM,GAAG,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC;IAC/C,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACtE,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;IAEpD,IAAI,kBAAkB,GAAG,EAAE,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;IAO5D,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,QAAQ,CAAC,IAAI,CAAC,EAAE,IAAI,IAAI,CAAC,EAAE,CAAC,aAAa,EAAE,EAAE;KAChD,CAAC;;;;;;IAMF,aAAa,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,EAAE;IAClE;QACI,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,QAAQ,CAAC,EAAE,GAAG,EAAE,CAAC;QACtB,IAAI,CAAC,QAAQ,CAAC,WAAW,GAAG,WAAW,EAAE,CAAC;;;QAG1C,IAAI,EAAE,CAAC,aAAa,EAAE,IAAI,EAAE,CAAC,YAAY,CAAC,oBAAoB,CAAC;QAC/D;YACI,EAAE,CAAC,YAAY,CAAC,oBAAoB,CAAC,CAAC,cAAc,EAAE,CAAC;SAC1D;KACJ,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,EAAE;IACtE;QACI,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC;QACzB,IAAI,CAAC,QAAQ,CAAC,EAAE,GAAG,EAAE,CAAC;QACtB,IAAI,CAAC,QAAQ,CAAC,WAAW,GAAG,WAAW,EAAE,CAAC;QAC1C,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,aAAa,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;KAC/C,CAAC;;;;;;;;;IASF,aAAa,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,OAAO;IAC3E;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;;QAEzD,IAAI,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC;KAC5B,CAAC;;;;;;;;;;IAUF,aAAa,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,MAAM,EAAE,OAAO;IAC/E;QACI,IAAI,EAAE,CAAC;;QAEP,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,CAAC,MAAM;QACrC;YACI,EAAE,GAAG,MAAM,CAAC,UAAU,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;SAC7C;;QAED,IAAI,EAAE;QACN;YACI,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;SACzB;;QAED;YACI,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;;YAEtB,EAAE,GAAG,MAAM,CAAC,UAAU,CAAC,OAAO,EAAE,OAAO,CAAC;eACrC,MAAM,CAAC,UAAU,CAAC,oBAAoB,EAAE,OAAO,CAAC,CAAC;;YAEpD,IAAI,CAAC,EAAE;YACP;;gBAEI,MAAM,IAAI,KAAK,CAAC,oEAAoE,CAAC,CAAC;aACzF;SACJ;;QAED,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;;QAEb,IAAI,CAAC,aAAa,EAAE,CAAC;;QAErB,OAAO,EAAE,CAAC;KACb,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IAC9D;;QAEI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,IAAI,IAAI,CAAC,YAAY,KAAK,CAAC;QAC3B;YACI,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE;gBAC3B,WAAW,EAAE,EAAE,CAAC,YAAY,CAAC,oBAAoB,CAAC;gBAClD,YAAY,EAAE,EAAE,CAAC,YAAY,CAAC,4BAA4B,CAAC;gBAC3D,WAAW,EAAE,EAAE,CAAC,YAAY,CAAC,oBAAoB,CAAC;gBAClD,iBAAiB,EAAE,EAAE,CAAC,YAAY,CAAC,yBAAyB,CAAC;uBACtD,EAAE,CAAC,YAAY,CAAC,6BAA6B,CAAC;uBAC9C,EAAE,CAAC,YAAY,CAAC,gCAAgC,CAAC;gBACxD,oBAAoB,EAAE,EAAE,CAAC,YAAY,CAAC,gCAAgC,CAAC;gBACvE,kBAAkB,EAAE,EAAE,CAAC,YAAY,CAAC,wBAAwB,CAAC;;gBAE7D,YAAY,EAAE,EAAE,CAAC,YAAY,CAAC,mBAAmB,CAAC;gBAClD,kBAAkB,EAAE,EAAE,CAAC,YAAY,CAAC,0BAA0B,CAAC;gBAC/D,gBAAgB,EAAE,EAAE,CAAC,YAAY,CAAC,wBAAwB,CAAC;gBAC3D,sBAAsB,EAAE,EAAE,CAAC,YAAY,CAAC,+BAA+B,CAAC;aAC3E,CAAC,CAAC;SACN;aACI,IAAI,IAAI,CAAC,YAAY,KAAK,CAAC;QAChC;YACI,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE;gBAC3B,oBAAoB,EAAE,EAAE,CAAC,YAAY,CAAC,gCAAgC,CAAC;;gBAEvE,gBAAgB,EAAE,EAAE,CAAC,YAAY,CAAC,wBAAwB,CAAC;gBAC3D,kBAAkB,EAAE,EAAE,CAAC,YAAY,CAAC,0BAA0B,CAAC;aAClE,CAAC,CAAC;SACN;KACJ,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,KAAK;IAC7E;QACI,KAAK,CAAC,cAAc,EAAE,CAAC;KAC1B,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,qBAAqB,GAAG,SAAS,qBAAqB;IAC9E;QACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;KACpD,CAAC;;IAEF,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAClD;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC;;;QAG9B,IAAI,CAAC,mBAAmB,CAAC,kBAAkB,EAAE,IAAI,CAAC,iBAAiB,CAAC,CAAC;QACrE,IAAI,CAAC,mBAAmB,CAAC,sBAAsB,EAAE,IAAI,CAAC,qBAAqB,CAAC,CAAC;;QAE7E,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEzB,IAAI,IAAI,CAAC,UAAU,CAAC,WAAW;QAC/B;YACI,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,WAAW,EAAE,CAAC;SAC7C;KACJ,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IACxD;QACI,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC;KACnB,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,EAAE;IACtE;QACI,IAAI,UAAU,GAAG,EAAE,CAAC,oBAAoB,EAAE,CAAC;;;QAG3C,IAAI,CAAC,UAAU,CAAC,OAAO;QACvB;;;;YAII,OAAO,CAAC,IAAI,CAAC,uFAAuF,CAAC,CAAC;;;;SAIzG;KACJ,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,aAAa,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAEvE,OAAO,aAAa,CAAC;CACxB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;AASX,IAAI,iBAAiB,iBAAiB,UAAU,MAAM,EAAE;IACpD,SAAS,iBAAiB,CAAC,QAAQ;IACnC;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;QAO5B,IAAI,CAAC,mBAAmB,GAAG,EAAE,CAAC;;;;;;;QAO9B,IAAI,CAAC,kBAAkB,GAAG,IAAI,WAAW,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;KACrD;;IAED,KAAK,MAAM,GAAG,iBAAiB,CAAC,SAAS,GAAG,MAAM,CAAC;IACnD,iBAAiB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IAC1E,iBAAiB,CAAC,SAAS,CAAC,WAAW,GAAG,iBAAiB,CAAC;;IAE5D,IAAI,kBAAkB,GAAG,EAAE,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;IAK1D,iBAAiB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IAClE;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;;QAEpC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;QAC7C,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,kBAAkB,CAAC;QACvC,IAAI,CAAC,QAAQ,GAAG,IAAI,SAAS,EAAE,CAAC;QAChC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;;QAE9B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;;QAGtB,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,YAAY,KAAK,CAAC;QAC5C;;YAEI,IAAI,0BAA0B,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,WAAW,CAAC;YAC9E,IAAI,2BAA2B,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC;;YAEhF,IAAI,QAAQ,CAAC,UAAU,KAAK,GAAG,CAAC,YAAY;YAC5C;gBACI,0BAA0B,GAAG,IAAI,CAAC;gBAClC,2BAA2B,GAAG,IAAI,CAAC;aACtC;;YAED,IAAI,0BAA0B;YAC9B;gBACI,EAAE,CAAC,WAAW,GAAG,UAAU,cAAc,EAAE,EAAE,OAAO,0BAA0B,CAAC,gBAAgB,CAAC,cAAc,CAAC,CAAC,EAAE,CAAC;aACtH;;YAED;gBACI,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;gBACpB,EAAE,CAAC,WAAW,GAAG,YAAY;;iBAE5B,CAAC;aACL;;YAED,IAAI,CAAC,2BAA2B;YAChC;gBACI,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;aAClC;SACJ;KACJ,CAAC;;;;;;;;IAQF,iBAAiB,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,WAAW,EAAE,KAAK;IACpE;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,IAAI,WAAW;QACf;;;YAGI,IAAI,GAAG,GAAG,WAAW,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,CAAC;;YAE5F,IAAI,IAAI,CAAC,OAAO,KAAK,WAAW;YAChC;gBACI,IAAI,CAAC,OAAO,GAAG,WAAW,CAAC;gBAC3B,EAAE,CAAC,eAAe,CAAC,EAAE,CAAC,WAAW,EAAE,GAAG,CAAC,WAAW,CAAC,CAAC;aACvD;;;;YAID,IAAI,GAAG,CAAC,OAAO,KAAK,WAAW,CAAC,OAAO;YACvC;gBACI,GAAG,CAAC,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC;;gBAElC,IAAI,GAAG,CAAC,WAAW,KAAK,WAAW,CAAC,WAAW;gBAC/C;oBACI,GAAG,CAAC,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;oBAC1C,IAAI,CAAC,iBAAiB,CAAC,WAAW,CAAC,CAAC;iBACvC;qBACI,IAAI,GAAG,CAAC,SAAS,KAAK,WAAW,CAAC,SAAS;gBAChD;oBACI,GAAG,CAAC,SAAS,GAAG,WAAW,CAAC,SAAS,CAAC;oBACtC,IAAI,CAAC,iBAAiB,CAAC,WAAW,CAAC,CAAC;iBACvC;aACJ;;YAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE;YACzD;gBACI,IAAI,WAAW,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,WAAW;gBAC5C;oBACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;iBACtE;;gBAED;oBACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC;iBAC9D;aACJ;;YAED,IAAI,WAAW,CAAC,YAAY;YAC5B;gBACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC;aAC1D;;YAED,IAAI,KAAK;YACT;gBACI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;aACjE;;YAED;gBACI,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,CAAC,EAAE,WAAW,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;aACjE;SACJ;;QAED;YACI,IAAI,IAAI,CAAC,OAAO;YAChB;gBACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;gBACpB,EAAE,CAAC,eAAe,CAAC,EAAE,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;aAC5C;;YAED,IAAI,KAAK;YACT;gBACI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;aACjE;;YAED;gBACI,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;aACrE;SACJ;KACJ,CAAC;;;;;;;;;;IAUF,iBAAiB,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM;IACnF;QACI,IAAI,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC;;QAEtB,IAAI,CAAC,CAAC,KAAK,KAAK,KAAK,IAAI,CAAC,CAAC,MAAM,KAAK,MAAM,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC;QACtE;YACI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;YACR,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;YACR,CAAC,CAAC,KAAK,GAAG,KAAK,CAAC;YAChB,CAAC,CAAC,MAAM,GAAG,MAAM,CAAC;;YAElB,IAAI,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;SACzC;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,IAAI,IAAI,CAAC,OAAO;QAChB;;YAEI,OAAO,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC;SACjF;;QAED,OAAO,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC;KACnF,CAAC;;;;;;;;;;IAUF,iBAAiB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;IAC9D;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;;QAGhB,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QAC1B,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,gBAAgB,GAAG,EAAE,CAAC,gBAAgB,CAAC,CAAC;KACvD,CAAC;;;;;;;;IAQF,iBAAiB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,WAAW;IACnF;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;;QAGhB,IAAI,GAAG,GAAG;YACN,WAAW,EAAE,EAAE,CAAC,iBAAiB,EAAE;YACnC,OAAO,EAAE,IAAI;YACb,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,CAAC;YACd,SAAS,EAAE,CAAC;SACf,CAAC;;QAEF,WAAW,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,GAAG,CAAC;;QAEnD,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAC3C,WAAW,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;;QAEpC,OAAO,GAAG,CAAC;KACd,CAAC;;;;;;;;IAQF,iBAAiB,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,WAAW;IACvF;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,IAAI,GAAG,GAAG,WAAW,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;QAEvD,IAAI,GAAG,CAAC,OAAO;QACf;YACI,EAAE,CAAC,gBAAgB,CAAC,EAAE,CAAC,YAAY,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;YAClD,EAAE,CAAC,mBAAmB,CAAC,EAAE,CAAC,YAAY,EAAE,EAAE,CAAC,aAAa,EAAE,WAAW,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;SACpG;;QAED,IAAI,aAAa,GAAG,WAAW,CAAC,aAAa,CAAC;;QAE9C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE;QAC7C;YACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SACnD;;QAED,IAAI,WAAW,CAAC,YAAY;QAC5B;YACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,YAAY,EAAE,CAAC,CAAC,CAAC;SAC3D;KACJ,CAAC;;;;;;;;IAQF,iBAAiB,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,WAAW;IACvF;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,IAAI,GAAG,GAAG,WAAW,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;;QAGvD,IAAI,aAAa,GAAG,WAAW,CAAC,aAAa,CAAC;;QAE9C,IAAI,KAAK,GAAG,aAAa,CAAC,MAAM,CAAC;;QAEjC,IAAI,CAAC,EAAE,CAAC,WAAW;QACnB;YACI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;SAC9B;;QAED,IAAI,cAAc,GAAG,EAAE,CAAC;;QAExB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE;QAC9B;YACI,IAAI,OAAO,GAAG,WAAW,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;;YAE3C,IAAI,OAAO,CAAC,WAAW;YACvB;gBACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;;gBAE/C,EAAE,CAAC,oBAAoB,CAAC,EAAE,CAAC,WAAW;oBAClC,EAAE,CAAC,iBAAiB,GAAG,CAAC;oBACxB,EAAE,CAAC,2BAA2B,GAAG,OAAO,CAAC,IAAI;oBAC7C,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,OAAO;oBACrD,CAAC,CAAC,CAAC;aACV;;YAED;gBACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;;gBAEvC,EAAE,CAAC,oBAAoB,CAAC,EAAE,CAAC,WAAW;oBAClC,EAAE,CAAC,iBAAiB,GAAG,CAAC;oBACxB,EAAE,CAAC,UAAU;oBACb,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,OAAO;oBAC7C,CAAC,CAAC,CAAC;aACV;;YAED,cAAc,CAAC,IAAI,CAAC,EAAE,CAAC,iBAAiB,GAAG,CAAC,CAAC,CAAC;SACjD;;QAED,IAAI,cAAc,CAAC,MAAM,GAAG,CAAC;QAC7B;YACI,EAAE,CAAC,WAAW,CAAC,cAAc,CAAC,CAAC;SAClC;;QAED,IAAI,WAAW,CAAC,YAAY;QAC5B;YACI,IAAI,iBAAiB,GAAG,IAAI,CAAC,iBAAiB,CAAC;;YAE/C,IAAI,iBAAiB;YACrB;gBACI,IAAI,YAAY,GAAG,WAAW,CAAC,YAAY,CAAC;;gBAE5C,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC,CAAC,CAAC;;gBAE5C,EAAE,CAAC,oBAAoB,CAAC,EAAE,CAAC,WAAW;oBAClC,EAAE,CAAC,gBAAgB;oBACnB,EAAE,CAAC,UAAU;oBACb,YAAY,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,OAAO;oBAClD,CAAC,CAAC,CAAC;aACV;SACJ;;QAED,IAAI,CAAC,GAAG,CAAC,OAAO,KAAK,WAAW,CAAC,OAAO,IAAI,WAAW,CAAC,KAAK,CAAC;QAC9D;YACI,GAAG,CAAC,OAAO,GAAG,EAAE,CAAC,kBAAkB,EAAE,CAAC;;YAEtC,EAAE,CAAC,gBAAgB,CAAC,EAAE,CAAC,YAAY,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;;YAElD,EAAE,CAAC,mBAAmB,CAAC,EAAE,CAAC,YAAY,EAAE,EAAE,CAAC,aAAa,EAAE,WAAW,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;;YAEjG,IAAI,CAAC,WAAW,CAAC,YAAY;YAC7B;gBACI,EAAE,CAAC,uBAAuB,CAAC,EAAE,CAAC,WAAW,EAAE,EAAE,CAAC,wBAAwB,EAAE,EAAE,CAAC,YAAY,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;aACzG;SACJ;KACJ,CAAC;;;;;;;IAOF,iBAAiB,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,WAAW,EAAE,WAAW;IACtG;QACI,IAAI,GAAG,GAAG,WAAW,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QACvD,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;;QAEjB,IAAI,CAAC,GAAG;QACR;YACI,OAAO;SACV;;QAED,OAAO,WAAW,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;QAEpD,IAAI,KAAK,GAAG,IAAI,CAAC,mBAAmB,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;;QAE1D,IAAI,KAAK,IAAI,CAAC;QACd;YACI,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;SAC7C;;QAED,WAAW,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;QAEvC,IAAI,CAAC,WAAW;QAChB;YACI,EAAE,CAAC,iBAAiB,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;YACtC,IAAI,GAAG,CAAC,OAAO;YACf;gBACI,EAAE,CAAC,kBAAkB,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;aACtC;SACJ;KACJ,CAAC;;;;;;IAMF,iBAAiB,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,WAAW;IACzE;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,mBAAmB,CAAC;;QAEpC,IAAI,CAAC,mBAAmB,GAAG,EAAE,CAAC;;QAE9B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE;QACpC;YACI,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC;SACjD;KACJ,CAAC;;;;;;;;;;IAUF,iBAAiB,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY;IAChE;QACI,IAAI,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC;;QAE/B,IAAI,CAAC,WAAW;QAChB;YACI,OAAO;SACV;;QAED,IAAI,GAAG,GAAG,WAAW,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;QAEvD,IAAI,CAAC,GAAG,IAAI,GAAG,CAAC,OAAO;QACvB;YACI,OAAO;SACV;QACD,WAAW,CAAC,aAAa,EAAE,CAAC;;QAE5B,IAAI,CAAC,GAAG,WAAW,CAAC,KAAK,CAAC;QAC1B,IAAI,CAAC,GAAG,WAAW,CAAC,MAAM,CAAC;QAC3B,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;QACjB,IAAI,OAAO,GAAG,EAAE,CAAC,kBAAkB,EAAE,CAAC;;QAEtC,EAAE,CAAC,gBAAgB,CAAC,EAAE,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC;QAC9C,EAAE,CAAC,mBAAmB,CAAC,EAAE,CAAC,YAAY,EAAE,EAAE,CAAC,aAAa,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;QAEhE,GAAG,CAAC,OAAO,GAAG,OAAO,CAAC;QACtB,EAAE,CAAC,uBAAuB,CAAC,EAAE,CAAC,WAAW,EAAE,EAAE,CAAC,wBAAwB,EAAE,EAAE,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC;KACrG,CAAC;;;;;;;IAOF,iBAAiB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAClD;QACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,kBAAkB,CAAC;QACvC,IAAI,CAAC,QAAQ,GAAG,IAAI,SAAS,EAAE,CAAC;KACnC,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,iBAAiB,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAE3E,OAAO,iBAAiB,CAAC;CAC5B,CAAC,MAAM,CAAC,CAAC,CAAC;;AAEX,IAAI,QAAQ,GAAG,SAAS,QAAQ,CAAC,MAAM;AACvC;IACI,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACrB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC,CAAC;IACnB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;IACrB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;CACrB,CAAC;;AAEF,IAAI,aAAa,GAAG,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC;;;;;;;;;AASlD,IAAI,cAAc,iBAAiB,UAAU,MAAM,EAAE;IACjD,SAAS,cAAc,CAAC,QAAQ;IAChC;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;QAE5B,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;QAC5B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;;;;;;QAOvB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;QAOnB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;QAOxB,IAAI,CAAC,wBAAwB,GAAG,KAAK,CAAC;;;;;;;;QAQtC,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;;;;;;;QAOvB,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;;;;;;;QAO5B,IAAI,CAAC,cAAc,GAAG,EAAE,CAAC;KAC5B;;IAED,KAAK,MAAM,GAAG,cAAc,CAAC,SAAS,GAAG,MAAM,CAAC;IAChD,cAAc,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACvE,cAAc,CAAC,SAAS,CAAC,WAAW,GAAG,cAAc,CAAC;;;;;IAKtD,cAAc,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IAC/D;QACI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;QACpC,IAAI,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC;;QAEpC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;;;QAG7C,IAAI,CAAC,EAAE,CAAC,iBAAiB;QACzB;;YAEI,IAAI,kBAAkB,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,iBAAiB,CAAC;;YAE5E,IAAI,QAAQ,CAAC,UAAU,KAAK,GAAG,CAAC,YAAY;YAC5C;gBACI,kBAAkB,GAAG,IAAI,CAAC;aAC7B;;YAED,IAAI,kBAAkB;YACtB;gBACI,EAAE,CAAC,iBAAiB,GAAG,YAAY,EAAE,OAAO,kBAAkB,CAAC,oBAAoB,EAAE,CAAC,EAAE,CAAC;;gBAEzF,EAAE,CAAC,eAAe,GAAG,UAAU,GAAG,EAAE,EAAE,OAAO,kBAAkB,CAAC,kBAAkB,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;;gBAE3F,EAAE,CAAC,iBAAiB,GAAG,UAAU,GAAG,EAAE,EAAE,OAAO,kBAAkB,CAAC,oBAAoB,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;aAClG;;YAED;gBACI,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;gBACpB,EAAE,CAAC,iBAAiB,GAAG,YAAY;;iBAElC,CAAC;;gBAEF,EAAE,CAAC,eAAe,GAAG,YAAY;;iBAEhC,CAAC;;gBAEF,EAAE,CAAC,iBAAiB,GAAG,YAAY;;iBAElC,CAAC;aACL;SACJ;;QAED,IAAI,CAAC,EAAE,CAAC,mBAAmB;QAC3B;YACI,IAAI,WAAW,GAAG,EAAE,CAAC,YAAY,CAAC,wBAAwB,CAAC,CAAC;;YAE5D,IAAI,WAAW;YACf;gBACI,EAAE,CAAC,mBAAmB,GAAG,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,WAAW,CAAC,wBAAwB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;;gBAEhG,EAAE,CAAC,qBAAqB,GAAG,UAAU,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,WAAW,CAAC,0BAA0B,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;;gBAEtH,EAAE,CAAC,mBAAmB,GAAG,UAAU,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,WAAW,CAAC,wBAAwB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;aAC/G;;YAED;gBACI,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;aAC5B;SACJ;;QAED,IAAI,CAAC,wBAAwB,GAAG,OAAO,CAAC,YAAY,KAAK,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,kBAAkB,CAAC;KACzG,CAAC;;;;;;;;IAQF,cAAc,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,QAAQ,EAAE,MAAM;IAC/D;QACI,MAAM,GAAG,MAAM,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC;;QAE/C,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;;;;;QAMhB,IAAI,IAAI,GAAG,QAAQ,CAAC,oBAAoB,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;QAE3D,IAAI,CAAC,IAAI;QACT;YACI,IAAI,CAAC,iBAAiB,CAAC,QAAQ,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC;YAC/C,QAAQ,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;YACjC,QAAQ,CAAC,oBAAoB,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,IAAI,GAAG,EAAE,CAAC;SAC/D;;QAED,IAAI,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,eAAe,CAAC,QAAQ,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC;;QAEpF,IAAI,CAAC,eAAe,GAAG,QAAQ,CAAC;;QAEhC,IAAI,IAAI,CAAC,UAAU,KAAK,GAAG;QAC3B;YACI,IAAI,CAAC,UAAU,GAAG,GAAG,CAAC;;YAEtB,IAAI,IAAI,CAAC,MAAM;YACf;gBACI,EAAE,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC;aAC3B;;YAED;gBACI,IAAI,CAAC,WAAW,CAAC,QAAQ,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC;aAC9C;SACJ;;;;;QAKD,IAAI,CAAC,aAAa,EAAE,CAAC;KACxB,CAAC;;;;;IAKF,cAAc,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC/C;QACI,IAAI,CAAC,MAAM,EAAE,CAAC;KACjB,CAAC;;;;;;IAMF,cAAc,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IAC/D;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,eAAe,CAAC;QACpC,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;QAChD;YACI,IAAI,MAAM,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;;YAEjC,IAAI,QAAQ,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;YAEnD,IAAI,MAAM,CAAC,SAAS,KAAK,QAAQ,CAAC,QAAQ;YAC1C;gBACI,QAAQ,CAAC,QAAQ,GAAG,MAAM,CAAC,SAAS,CAAC;;;gBAGrC,IAAI,IAAI,GAAG,MAAM,CAAC,KAAK,GAAG,EAAE,CAAC,oBAAoB,GAAG,EAAE,CAAC,YAAY,CAAC;;;;;;;gBAOpE,EAAE,CAAC,UAAU,CAAC,IAAI,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;;;gBAGrC,IAAI,CAAC,YAAY,GAAG,QAAQ,CAAC;;gBAE7B,IAAI,QAAQ,CAAC,UAAU,IAAI,MAAM,CAAC,IAAI,CAAC,UAAU;gBACjD;;oBAEI,EAAE,CAAC,aAAa,CAAC,IAAI,EAAE,CAAC,EAAE,MAAM,CAAC,IAAI,CAAC,CAAC;iBAC1C;;gBAED;oBACI,IAAI,QAAQ,GAAG,MAAM,CAAC,MAAM,GAAG,EAAE,CAAC,WAAW,GAAG,EAAE,CAAC,YAAY,CAAC;;oBAEhE,QAAQ,CAAC,UAAU,GAAG,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC;oBAC7C,EAAE,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;iBAC9C;aACJ;SACJ;KACJ,CAAC;;;;;;;;IAQF,cAAc,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,QAAQ,EAAE,OAAO;IAC5F;;QAEI,IAAI,kBAAkB,GAAG,QAAQ,CAAC,UAAU,CAAC;QAC7C,IAAI,gBAAgB,GAAG,OAAO,CAAC,aAAa,CAAC;;QAE7C,KAAK,IAAI,CAAC,IAAI,gBAAgB;QAC9B;YACI,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC;YAC1B;gBACI,MAAM,IAAI,KAAK,EAAE,2DAA2D,GAAG,CAAC,GAAG,cAAc,EAAE,CAAC;aACvG;SACJ;KACJ,CAAC;;;;;;;;;;IAUF,cAAc,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,QAAQ,EAAE,OAAO;IAChF;QACI,IAAI,OAAO,GAAG,QAAQ,CAAC,UAAU,CAAC;QAClC,IAAI,gBAAgB,GAAG,OAAO,CAAC,aAAa,CAAC;;QAE7C,IAAI,OAAO,GAAG,CAAC,GAAG,EAAE,QAAQ,CAAC,EAAE,CAAC,CAAC;;QAEjC,KAAK,IAAI,CAAC,IAAI,OAAO;QACrB;YACI,IAAI,gBAAgB,CAAC,CAAC,CAAC;YACvB;gBACI,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;aACnB;SACJ;;QAED,OAAO,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KAC5B,CAAC;;;;;;;;;;IAUF,cAAc,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,QAAQ,EAAE,OAAO;IACtF;QACI,IAAI,CAAC,kBAAkB,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;;QAE3C,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;QACjB,IAAI,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;;QAEnC,IAAI,SAAS,GAAG,IAAI,CAAC,YAAY,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;;QAErD,IAAI,aAAa,GAAG,QAAQ,CAAC,oBAAoB,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;QAEpE,IAAI,GAAG,GAAG,aAAa,CAAC,SAAS,CAAC,CAAC;;QAEnC,IAAI,GAAG;QACP;;YAEI,aAAa,CAAC,OAAO,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC;;YAEhC,OAAO,GAAG,CAAC;SACd;;QAED,IAAI,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC;QAC/B,IAAI,UAAU,GAAG,QAAQ,CAAC,UAAU,CAAC;QACrC,IAAI,UAAU,GAAG,EAAE,CAAC;QACpB,IAAI,SAAS,GAAG,EAAE,CAAC;;QAEnB,KAAK,IAAI,CAAC,IAAI,OAAO;QACrB;YACI,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;YAClB,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;SACpB;;QAED,KAAK,IAAI,GAAG,IAAI,UAAU;QAC1B;YACI,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,IAAI,IAAI,OAAO,CAAC,aAAa,CAAC,GAAG,CAAC;YACvD;gBACI,UAAU,CAAC,GAAG,CAAC,CAAC,IAAI,GAAG,OAAO,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;aAC1D;iBACI,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,IAAI;YAC9B;gBACI,OAAO,CAAC,IAAI,EAAE,2BAA2B,GAAG,GAAG,GAAG,mFAAmF,EAAE,CAAC;aAC3I;;YAED,UAAU,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,IAAI,GAAG,aAAa,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC;SACpG;;QAED,KAAK,IAAI,GAAG,IAAI,UAAU;QAC1B;YACI,IAAI,SAAS,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;YAChC,IAAI,UAAU,GAAG,SAAS,CAAC,IAAI,CAAC;;YAEhC,IAAI,SAAS,CAAC,MAAM,KAAK,SAAS;YAClC;gBACI,IAAI,UAAU,CAAC,SAAS,CAAC,MAAM,CAAC,KAAK,UAAU,GAAG,aAAa,CAAC,SAAS,CAAC,IAAI,CAAC;gBAC/E;oBACI,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;iBACxB;;gBAED;oBACI,SAAS,CAAC,MAAM,GAAG,UAAU,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;iBACnD;aACJ;;YAED,IAAI,SAAS,CAAC,KAAK,KAAK,SAAS;YACjC;gBACI,SAAS,CAAC,KAAK,GAAG,SAAS,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;;gBAE9C,SAAS,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,UAAU,GAAG,aAAa,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;aAC7E;SACJ;;QAED,GAAG,GAAG,EAAE,CAAC,iBAAiB,EAAE,CAAC;;QAE7B,EAAE,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC;;;;QAIxB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;QACvC;YACI,IAAI,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;;YAExB,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC;YACnC;gBACI,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC,GAAG,IAAI,QAAQ,CAAC,EAAE,CAAC,YAAY,EAAE,CAAC,CAAC;gBACjE,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC;gBACxC,MAAM,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;aAClC;;YAED,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,QAAQ,EAAE,CAAC;SAC7C;;;;;QAKD,IAAI,CAAC,WAAW,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;;QAEpC,IAAI,CAAC,UAAU,GAAG,GAAG,CAAC;;;QAGtB,aAAa,CAAC,OAAO,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC;QAChC,aAAa,CAAC,SAAS,CAAC,GAAG,GAAG,CAAC;;QAE/B,OAAO,GAAG,CAAC;KACd,CAAC;;;;;;;IAOF,cAAc,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,MAAM,EAAE,WAAW;IACpF;QACI,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,EAAE,CAAC;QACnC;YACI,OAAO;SACV;;QAED,OAAO,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;;QAEtC,IAAI,QAAQ,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QACnD,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;;QAEjB,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;QAElC,IAAI,CAAC,QAAQ;QACb;YACI,OAAO;SACV;;QAED,IAAI,CAAC,WAAW;QAChB;YACI,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;SACpC;;QAED,OAAO,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;KAC9C,CAAC;;;;;;;IAOF,cAAc,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,QAAQ,EAAE,WAAW;IAC1F;QACI,IAAI,CAAC,IAAI,CAAC,iBAAiB,CAAC,QAAQ,CAAC,EAAE,CAAC;QACxC;YACI,OAAO;SACV;;QAED,OAAO,IAAI,CAAC,iBAAiB,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;;QAE3C,IAAI,IAAI,GAAG,QAAQ,CAAC,oBAAoB,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAC3D,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;QACjB,IAAI,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC;;QAE/B,QAAQ,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;QAEpC,IAAI,CAAC,IAAI;QACT;YACI,OAAO;SACV;;QAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;QACvC;YACI,IAAI,GAAG,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;YAElD,GAAG,CAAC,QAAQ,EAAE,CAAC;YACf,IAAI,GAAG,CAAC,QAAQ,KAAK,CAAC,IAAI,CAAC,WAAW;YACtC;gBACI,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC;aAC/C;SACJ;;QAED,IAAI,CAAC,WAAW;QAChB;YACI,KAAK,IAAI,KAAK,IAAI,IAAI;YACtB;;gBAEI,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,GAAG;gBACpB;oBACI,IAAI,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;;oBAEtB,IAAI,IAAI,CAAC,UAAU,KAAK,GAAG;oBAC3B;wBACI,IAAI,CAAC,MAAM,EAAE,CAAC;qBACjB;oBACD,EAAE,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC;iBAC7B;aACJ;SACJ;;QAED,OAAO,QAAQ,CAAC,oBAAoB,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;KAC1D,CAAC;;;;;;IAMF,cAAc,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,WAAW;IACtE;QACI,IAAI,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;;QAE9C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,EAAE;QACnC;YACI,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC;SACrE;QACD,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;QACvC,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,MAAM,EAAE,GAAG,EAAE;QACzC;YACI,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC;SAClE;KACJ,CAAC;;;;;;;;;IASF,cAAc,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,QAAQ,EAAE,OAAO;IAC9E;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;QACjB,IAAI,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;QACnC,IAAI,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC;QAC/B,IAAI,UAAU,GAAG,QAAQ,CAAC,UAAU,CAAC;;QAErC,IAAI,QAAQ,CAAC,WAAW;QACxB;;YAEI,EAAE,CAAC,UAAU,CAAC,EAAE,CAAC,oBAAoB,EAAE,QAAQ,CAAC,WAAW,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,MAAM,CAAC,CAAC;SAC/F;;QAED,IAAI,UAAU,GAAG,IAAI,CAAC;;;QAGtB,KAAK,IAAI,CAAC,IAAI,UAAU;QACxB;YACI,IAAI,SAAS,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;YAC9B,IAAI,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;YACvC,IAAI,QAAQ,GAAG,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC;;YAE9C,IAAI,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;YAC5B;gBACI,IAAI,UAAU,KAAK,QAAQ;gBAC3B;oBACI,EAAE,CAAC,UAAU,CAAC,EAAE,CAAC,YAAY,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;;oBAEhD,UAAU,GAAG,QAAQ,CAAC;iBACzB;;gBAED,IAAI,QAAQ,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC;;;;gBAIjD,EAAE,CAAC,uBAAuB,CAAC,QAAQ,CAAC,CAAC;;gBAErC,EAAE,CAAC,mBAAmB,CAAC,QAAQ;oBAC3B,SAAS,CAAC,IAAI;oBACd,SAAS,CAAC,IAAI,IAAI,EAAE,CAAC,KAAK;oBAC1B,SAAS,CAAC,UAAU;oBACpB,SAAS,CAAC,MAAM;oBAChB,SAAS,CAAC,KAAK,CAAC,CAAC;;gBAErB,IAAI,SAAS,CAAC,QAAQ;gBACtB;;oBAEI,IAAI,IAAI,CAAC,WAAW;oBACpB;wBACI,EAAE,CAAC,mBAAmB,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC;qBACvC;;oBAED;wBACI,MAAM,IAAI,KAAK,CAAC,gEAAgE,CAAC,CAAC;qBACrF;iBACJ;aACJ;SACJ;KACJ,CAAC;;;;;;;;;;IAUF,cAAc,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,aAAa;IAC/E;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;QAChB,IAAI,QAAQ,GAAG,IAAI,CAAC,eAAe,CAAC;;;;QAIpC,IAAI,QAAQ,CAAC,WAAW;QACxB;YACI,IAAI,QAAQ,GAAG,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,iBAAiB,CAAC;YAC3D,IAAI,MAAM,GAAG,QAAQ,KAAK,CAAC,GAAG,EAAE,CAAC,cAAc,GAAG,EAAE,CAAC,YAAY,CAAC;;YAElE,IAAI,QAAQ,KAAK,CAAC,KAAK,QAAQ,KAAK,CAAC,IAAI,IAAI,CAAC,wBAAwB,CAAC;YACvE;gBACI,IAAI,QAAQ,CAAC,SAAS;gBACtB;;oBAEI,EAAE,CAAC,qBAAqB,CAAC,IAAI,EAAE,IAAI,IAAI,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,KAAK,IAAI,CAAC,IAAI,QAAQ,EAAE,aAAa,IAAI,CAAC,CAAC,CAAC;;iBAEjI;;gBAED;;oBAEI,EAAE,CAAC,YAAY,CAAC,IAAI,EAAE,IAAI,IAAI,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,KAAK,IAAI,CAAC,IAAI,QAAQ,CAAC,CAAC;;iBAEpG;aACJ;;YAED;gBACI,OAAO,CAAC,IAAI,CAAC,uCAAuC,CAAC,CAAC;aACzD;SACJ;aACI,IAAI,QAAQ,CAAC,SAAS;QAC3B;;YAEI,EAAE,CAAC,mBAAmB,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,IAAI,QAAQ,CAAC,OAAO,EAAE,EAAE,aAAa,IAAI,CAAC,CAAC,CAAC;SACvF;;QAED;YACI,EAAE,CAAC,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,IAAI,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC;SAC1D;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,cAAc,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;IACjD;QACI,IAAI,CAAC,EAAE,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;QAC9B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;QACvB,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;KAC/B,CAAC;;IAEF,OAAO,cAAc,CAAC;CACzB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;;;;AAYX,SAAS,cAAc,CAAC,EAAE,EAAE,SAAS,EAAE,WAAW,EAAE,kBAAkB;AACtE;IACI,IAAI,YAAY,GAAG,aAAa,CAAC,EAAE,EAAE,EAAE,CAAC,aAAa,EAAE,SAAS,CAAC,CAAC;IAClE,IAAI,YAAY,GAAG,aAAa,CAAC,EAAE,EAAE,EAAE,CAAC,eAAe,EAAE,WAAW,CAAC,CAAC;;IAEtE,IAAI,OAAO,GAAG,EAAE,CAAC,aAAa,EAAE,CAAC;;IAEjC,EAAE,CAAC,YAAY,CAAC,OAAO,EAAE,YAAY,CAAC,CAAC;IACvC,EAAE,CAAC,YAAY,CAAC,OAAO,EAAE,YAAY,CAAC,CAAC;;;IAGvC,IAAI,kBAAkB;IACtB;QACI,KAAK,IAAI,CAAC,IAAI,kBAAkB;QAChC;YACI,EAAE,CAAC,kBAAkB,CAAC,OAAO,EAAE,kBAAkB,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SAC5D;KACJ;;IAED,EAAE,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;;;IAGxB,IAAI,CAAC,EAAE,CAAC,mBAAmB,CAAC,OAAO,EAAE,EAAE,CAAC,WAAW,CAAC;IACpD;QACI,OAAO,CAAC,KAAK,CAAC,6CAA6C,CAAC,CAAC;QAC7D,OAAO,CAAC,KAAK,CAAC,oBAAoB,EAAE,EAAE,CAAC,mBAAmB,CAAC,OAAO,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,CAAC;QACzF,OAAO,CAAC,KAAK,CAAC,eAAe,EAAE,EAAE,CAAC,QAAQ,EAAE,CAAC,CAAC;;;QAG9C,IAAI,EAAE,CAAC,iBAAiB,CAAC,OAAO,CAAC,KAAK,EAAE;QACxC;YACI,OAAO,CAAC,IAAI,CAAC,yCAAyC,EAAE,EAAE,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC,CAAC;SAC1F;;QAED,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;QAC1B,OAAO,GAAG,IAAI,CAAC;KAClB;;;IAGD,EAAE,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC;IAC9B,EAAE,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC;;IAE9B,OAAO,OAAO,CAAC;CAClB;;;;;;;;;AASD,SAAS,aAAa,CAAC,EAAE,EAAE,IAAI,EAAE,GAAG;AACpC;IACI,IAAI,MAAM,GAAG,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;;IAEnC,EAAE,CAAC,YAAY,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC7B,EAAE,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;;IAEzB,IAAI,CAAC,EAAE,CAAC,kBAAkB,CAAC,MAAM,EAAE,EAAE,CAAC,cAAc,CAAC;IACrD;QACI,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QAClB,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAC,CAAC;;QAE3C,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,MAAM,CAAC;CACjB;;;;;;;;;AASD,SAAS,YAAY,CAAC,IAAI,EAAE,IAAI;AAChC;IACI,QAAQ,IAAI;;QAER,KAAK,OAAO;YACR,OAAO,CAAC,CAAC;;QAEb,KAAK,MAAM;YACP,OAAO,IAAI,YAAY,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAEtC,KAAK,MAAM;YACP,OAAO,IAAI,YAAY,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAEtC,KAAK,MAAM;YACP,OAAO,IAAI,YAAY,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAEtC,KAAK,KAAK,CAAC;QACX,KAAK,WAAW,CAAC;QACjB,KAAK,gBAAgB;YACjB,OAAO,CAAC,CAAC;;QAEb,KAAK,OAAO;YACR,OAAO,IAAI,UAAU,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAEpC,KAAK,OAAO;YACR,OAAO,IAAI,UAAU,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAEpC,KAAK,OAAO;YACR,OAAO,IAAI,UAAU,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAEpC,KAAK,MAAM;YACP,OAAO,KAAK,CAAC;;QAEjB,KAAK,OAAO;;YAER,OAAO,YAAY,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAElC,KAAK,OAAO;YACR,OAAO,YAAY,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAElC,KAAK,OAAO;YACR,OAAO,YAAY,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAElC,KAAK,MAAM;YACP,OAAO,IAAI,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC;gBACzB,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;;QAEf,KAAK,MAAM;YACP,OAAO,IAAI,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC;gBAC5B,CAAC,EAAE,CAAC,EAAE,CAAC;gBACP,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;;QAElB,KAAK,MAAM;YACP,OAAO,IAAI,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;gBAC/B,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;gBACV,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;gBACV,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;KACxB;;IAED,OAAO,IAAI,CAAC;CACf;;AAED,SAAS,YAAY,CAAC,IAAI;AAC1B;IACI,IAAI,KAAK,GAAG,IAAI,KAAK,CAAC,IAAI,CAAC,CAAC;;IAE5B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE;IACrC;QACI,KAAK,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;KACpB;;IAED,OAAO,KAAK,CAAC;CAChB;;AAED,IAAI,cAAc,GAAG,EAAE,CAAC;AACxB,IAAI,OAAO,GAAG,cAAc,CAAC;;;;;;;;;AAS7B,SAAS,cAAc;AACvB;IACI,IAAI,OAAO,KAAK,cAAc,IAAI,OAAO,CAAC,aAAa,EAAE;IACzD;QACI,IAAI,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;QAE9C,IAAI,EAAE,CAAC;;QAEP,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,CAAC,MAAM;QACrC;YACI,EAAE,GAAG,MAAM,CAAC,UAAU,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;SACxC;;QAED,IAAI,CAAC,EAAE;QACP;YACI,EAAE,GAAG,MAAM,CAAC,UAAU,CAAC,OAAO,EAAE,EAAE,CAAC;eAChC,MAAM,CAAC,UAAU,CAAC,oBAAoB,EAAE,EAAE,CAAC,CAAC;;YAE/C,IAAI,CAAC,EAAE;YACP;;gBAEI,EAAE,GAAG,IAAI,CAAC;aACb;;YAED;;gBAEI,EAAE,CAAC,YAAY,CAAC,oBAAoB,CAAC,CAAC;aACzC;SACJ;;QAED,OAAO,GAAG,EAAE,CAAC;KAChB;;IAED,OAAO,OAAO,CAAC;CAClB;;AAED,IAAI,oBAAoB,CAAC;;AAEzB,SAAS,uBAAuB;AAChC;IACI,IAAI,CAAC,oBAAoB;IACzB;QACI,oBAAoB,GAAG,SAAS,CAAC,MAAM,CAAC;QACxC,IAAI,EAAE,GAAG,cAAc,EAAE,CAAC;;QAE1B,IAAI,EAAE;QACN;YACI,IAAI,EAAE,CAAC,wBAAwB;YAC/B;gBACI,IAAI,cAAc,GAAG,EAAE,CAAC,wBAAwB,CAAC,EAAE,CAAC,eAAe,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC;;gBAEpF,oBAAoB,GAAG,cAAc,CAAC,SAAS,GAAG,SAAS,CAAC,IAAI,GAAG,SAAS,CAAC,MAAM,CAAC;aACvF;SACJ;KACJ;;IAED,OAAO,oBAAoB,CAAC;CAC/B;;;;;;;;;;;;;AAaD,SAAS,YAAY,CAAC,GAAG,EAAE,kBAAkB,EAAE,qBAAqB;AACpE;IACI,IAAI,GAAG,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,WAAW;IACvC;;QAEI,IAAI,SAAS,GAAG,kBAAkB,CAAC;;;QAGnC,IAAI,kBAAkB,KAAK,SAAS,CAAC,IAAI,IAAI,qBAAqB,KAAK,SAAS,CAAC,IAAI;QACrF;YACI,SAAS,GAAG,SAAS,CAAC,MAAM,CAAC;SAChC;;QAED,QAAQ,YAAY,GAAG,SAAS,GAAG,WAAW,GAAG,GAAG,EAAE;KACzD;SACI,IAAI,qBAAqB,KAAK,SAAS,CAAC,IAAI,IAAI,GAAG,CAAC,SAAS,CAAC,CAAC,EAAE,EAAE,CAAC,KAAK,iBAAiB;IAC/F;;QAEI,OAAO,GAAG,CAAC,OAAO,CAAC,iBAAiB,EAAE,mBAAmB,CAAC,CAAC;KAC9D;;IAED,OAAO,GAAG,CAAC;CACd;;AAED,IAAI,YAAY,GAAG;IACf,KAAK,KAAK,CAAC;IACX,IAAI,MAAM,CAAC;IACX,IAAI,MAAM,CAAC;IACX,IAAI,MAAM,CAAC;;IAEX,GAAG,OAAO,CAAC;IACX,KAAK,KAAK,CAAC;IACX,KAAK,KAAK,CAAC;IACX,KAAK,KAAK,CAAC;;IAEX,IAAI,MAAM,CAAC;IACX,KAAK,KAAK,CAAC;IACX,KAAK,KAAK,CAAC;IACX,KAAK,KAAK,CAAC;;IAEX,IAAI,MAAM,CAAC;IACX,IAAI,MAAM,CAAC;IACX,IAAI,MAAM,EAAE;;IAEZ,SAAS,GAAG,CAAC;CAChB,CAAC;;;;;;;;;AASF,SAAS,OAAO,CAAC,IAAI;AACrB;IACI,OAAO,YAAY,CAAC,IAAI,CAAC,CAAC;CAC7B;;AAED,IAAI,QAAQ,GAAG,IAAI,CAAC;;AAEpB,IAAI,gBAAgB,GAAG;IACnB,KAAK,QAAQ,OAAO;IACpB,UAAU,GAAG,MAAM;IACnB,UAAU,GAAG,MAAM;IACnB,UAAU,GAAG,MAAM;;IAEnB,GAAG,UAAU,KAAK;IAClB,QAAQ,KAAK,OAAO;IACpB,QAAQ,KAAK,OAAO;IACpB,QAAQ,KAAK,OAAO;;IAEpB,IAAI,SAAS,MAAM;IACnB,SAAS,IAAI,OAAO;IACpB,SAAS,IAAI,OAAO;IACpB,SAAS,IAAI,OAAO;;IAEpB,UAAU,GAAG,MAAM;IACnB,UAAU,GAAG,MAAM;IACnB,UAAU,GAAG,MAAM;;IAEnB,UAAU,GAAG,WAAW;IACxB,YAAY,GAAG,aAAa;IAC5B,gBAAgB,GAAG,gBAAgB;CACtC,CAAC;;AAEF,SAAS,OAAO,CAAC,EAAE,EAAE,IAAI;AACzB;IACI,IAAI,CAAC,QAAQ;IACb;QACI,IAAI,SAAS,GAAG,MAAM,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;;QAE9C,QAAQ,GAAG,EAAE,CAAC;;QAEd,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,EAAE,CAAC;QACzC;YACI,IAAI,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;YAEtB,QAAQ,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,GAAG,gBAAgB,CAAC,EAAE,CAAC,CAAC;SAC3C;KACJ;;IAED,OAAO,QAAQ,CAAC,IAAI,CAAC,CAAC;CACzB;;;;;;;AAOD,IAAI,6BAA6B,GAAG;;IAEhC,KAAK,EAAE,wFAAwF;;IAE/F,IAAI,EAAE,oJAAoJ;;IAE1J,IAAI,EAAE,qMAAqM;;IAE3M,IAAI,MAAM,gDAAgD;;IAE1D,GAAG,OAAO,2BAA2B;IACrC,KAAK,KAAK,oCAAoC;IAC9C,KAAK,KAAK,0CAA0C;IACpD,KAAK,KAAK,gDAAgD;;IAE1D,IAAI,MAAM,2BAA2B;IACrC,KAAK,KAAK,oCAAoC;IAC9C,KAAK,KAAK,0CAA0C;IACpD,KAAK,KAAK,gDAAgD;;IAE1D,IAAI,MAAM,yCAAyC;IACnD,IAAI,MAAM,yCAAyC;IACnD,IAAI,MAAM,yCAAyC;;IAEnD,SAAS,OAAO,2BAA2B;IAC3C,WAAW,KAAK,2BAA2B;IAC3C,cAAc,EAAE,2BAA2B;CAC9C,CAAC;;AAEF,IAAI,qBAAqB,GAAG;;IAExB,KAAK,KAAK,4BAA4B;;IAEtC,IAAI,MAAM,4BAA4B;IACtC,IAAI,MAAM,4BAA4B;IACtC,IAAI,MAAM,4BAA4B;;IAEtC,IAAI,MAAM,yCAAyC;IACnD,IAAI,MAAM,yCAAyC;IACnD,IAAI,MAAM,yCAAyC;;IAEnD,GAAG,OAAO,4BAA4B;IACtC,KAAK,KAAK,4BAA4B;IACtC,KAAK,KAAK,4BAA4B;IACtC,KAAK,KAAK,4BAA4B;;IAEtC,IAAI,MAAM,4BAA4B;IACtC,KAAK,KAAK,4BAA4B;IACtC,KAAK,KAAK,4BAA4B;IACtC,KAAK,KAAK,4BAA4B;;IAEtC,SAAS,OAAO,4BAA4B;IAC5C,WAAW,KAAK,4BAA4B;IAC5C,cAAc,EAAE,4BAA4B;CAC/C,CAAC;;AAEF,SAAS,oBAAoB,CAAC,KAAK,EAAE,WAAW;AAChD;IACI,IAAI,YAAY,GAAG,CAAC,CAAC;IACrB,IAAI,IAAI,GAAG,4DAA4D,CAAC;;IAExE,KAAK,IAAI,CAAC,IAAI,KAAK,CAAC,QAAQ;IAC5B;QACI,IAAI,IAAI,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;;QAE1B,IAAI,CAAC,IAAI;QACT;YACI,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,KAAK;YAC3B;gBACI,IAAI,IAAI,4DAA4D,GAAG,CAAC,GAAG,sBAAsB,CAAC;aACrG;;YAED,SAAS;SACZ;;;QAGD,IAAI,IAAI,CAAC,IAAI,KAAK,OAAO,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC;QAC5C;YACI,IAAI,IAAI,sBAAsB,GAAG,CAAC,GAAG,UAAU,GAAG,CAAC,GAAG,6CAA6C,GAAG,CAAC,GAAG,cAAc,GAAG,CAAC,GAAG,oCAAoC,GAAG,CAAC,GAAG,gBAAgB,GAAG,CAAC,GAAG,oBAAoB,CAAC;SACzN;;aAEI,IAAI,CAAC,IAAI,CAAC,IAAI,KAAK,WAAW,IAAI,IAAI,CAAC,IAAI,KAAK,aAAa,IAAI,IAAI,CAAC,IAAI,KAAK,gBAAgB,KAAK,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO;;QAEzI;YACI,IAAI,IAAI,yCAAyC,GAAG,CAAC,GAAG,IAAI,GAAG,YAAY,GAAG,0BAA0B,GAAG,CAAC,GAAG,aAAa,GAAG,YAAY,GAAG,uCAAuC,GAAG,CAAC,GAAG,WAAW,GAAG,YAAY,GAAG,qCAAqC,GAAG,CAAC,GAAG,aAAa,GAAG,YAAY,GAAG,uDAAuD,CAAC;;YAE5V,YAAY,EAAE,CAAC;SAClB;aACI,IAAI,IAAI,CAAC,IAAI,KAAK,MAAM,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC;QAChD;YACI,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,SAAS;YACrC;;gBAEI,IAAI,IAAI,2CAA2C,GAAG,CAAC,GAAG,uBAAuB,GAAG,CAAC,GAAG,sCAAsC,CAAC;aAClI;;YAED;gBACI,IAAI,IAAI,2CAA2C,GAAG,CAAC,GAAG,uBAAuB,GAAG,CAAC,GAAG,wBAAwB,CAAC;aACpH;SACJ;aACI,IAAI,IAAI,CAAC,IAAI,KAAK,MAAM,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC;QAChD;;;YAGI,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,SAAS;YACrC;gBACI,IAAI,IAAI,4BAA4B,GAAG,CAAC,GAAG,kCAAkC,GAAG,CAAC,GAAG,sLAAsL,GAAG,CAAC,GAAG,4CAA4C,CAAC;aACjU;;YAED;gBACI,IAAI,IAAI,4BAA4B,GAAG,CAAC,GAAG,kCAAkC,GAAG,CAAC,GAAG,0LAA0L,GAAG,CAAC,GAAG,gEAAgE,CAAC;aACzV;SACJ;aACI,IAAI,IAAI,CAAC,IAAI,KAAK,MAAM,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC;QAChD;;;YAGI,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,KAAK,KAAK,SAAS;YACzC;gBACI,IAAI,IAAI,4BAA4B,GAAG,CAAC,GAAG,kCAAkC,GAAG,CAAC,GAAG,8SAA8S,GAAG,CAAC,GAAG,8DAA8D,CAAC;aAC3c;;YAED;gBACI,IAAI,IAAI,4BAA4B,GAAG,CAAC,GAAG,kCAAkC,GAAG,CAAC,GAAG,sSAAsS,GAAG,CAAC,GAAG,2EAA2E,CAAC;aAChd;SACJ;;QAED;YACI,IAAI,YAAY,GAAG,CAAC,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,6BAA6B,GAAG,qBAAqB,CAAC;;YAE7F,IAAI,QAAQ,IAAI,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,UAAU,GAAG,KAAK,GAAG,CAAC,GAAG,WAAW,EAAE,CAAC;;YAEvF,IAAI,IAAI,wBAAwB,GAAG,CAAC,GAAG,8BAA8B,GAAG,CAAC,GAAG,iBAAiB,GAAG,QAAQ,GAAG,KAAK,CAAC;SACpH;KACJ;;IAED,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC;CACrD;;AAED,IAAI,YAAY,GAAG;IACf,0BAA0B;IAC1B,kBAAkB;IAClB,mBAAmB;IACnB,WAAW;IACX,2BAA2B;IAC3B,GAAG,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;AAErB,SAAS,4BAA4B,CAAC,MAAM,EAAE,EAAE;AAChD;IACI,IAAI,MAAM,KAAK,CAAC;IAChB;QACI,MAAM,IAAI,KAAK,CAAC,+DAA+D,CAAC,CAAC;KACpF;;IAED,IAAI,MAAM,GAAG,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC,eAAe,CAAC,CAAC;;IAEjD,OAAO,IAAI;IACX;QACI,IAAI,WAAW,GAAG,YAAY,CAAC,OAAO,CAAC,aAAa,EAAE,iBAAiB,CAAC,MAAM,CAAC,CAAC,CAAC;;QAEjF,EAAE,CAAC,YAAY,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;QACrC,EAAE,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;;QAEzB,IAAI,CAAC,EAAE,CAAC,kBAAkB,CAAC,MAAM,EAAE,EAAE,CAAC,cAAc,CAAC;QACrD;YACI,MAAM,GAAG,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC;SAC7B;;QAED;;YAEI,MAAM;SACT;KACJ;;IAED,OAAO,MAAM,CAAC;CACjB;;AAED,SAAS,iBAAiB,CAAC,MAAM;AACjC;IACI,IAAI,GAAG,GAAG,EAAE,CAAC;;IAEb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,EAAE,CAAC;IAC/B;QACI,IAAI,CAAC,GAAG,CAAC;QACT;YACI,GAAG,IAAI,SAAS,CAAC;SACpB;;QAED,IAAI,CAAC,GAAG,MAAM,GAAG,CAAC;QAClB;YACI,GAAG,IAAI,aAAa,GAAG,CAAC,GAAG,OAAO,CAAC;SACtC;KACJ;;IAED,OAAO,GAAG,CAAC;CACd;;;AAGD,IAAI,UAAU,CAAC;;;;;;;;;AASf,SAAS,mBAAmB;AAC5B;IACI,IAAI,OAAO,UAAU,KAAK,SAAS;IACnC;QACI,OAAO,UAAU,CAAC;KACrB;;IAED;IACA;;QAEI,IAAI,IAAI,GAAG,IAAI,QAAQ,CAAC,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,mCAAmC,CAAC,CAAC;;;QAG3F,UAAU,GAAG,IAAI,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,GAAG,EAAE,GAAG,CAAC,KAAK,IAAI,CAAC;KACpD;IACD,OAAO,CAAC;IACR;QACI,UAAU,GAAG,KAAK,CAAC;KACtB;;IAED,OAAO,UAAU,CAAC;CACrB;;AAED,IAAI,eAAe,GAAG,2IAA2I,CAAC;;AAElK,IAAI,aAAa,GAAG,mRAAmR,CAAC;;;;AAIxS,IAAI,KAAK,GAAG,CAAC,CAAC;;AAEd,IAAI,SAAS,GAAG,EAAE,CAAC;;;;;;;;AAQnB,IAAI,OAAO,GAAG,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE,IAAI;AAC3D;IACI,KAAK,IAAI,KAAK,KAAK,CAAC,GAAG,IAAI,GAAG,aAAa,CAAC;;IAE5C,IAAI,CAAC,EAAE,GAAG,KAAK,EAAE,CAAC;;;;;;;IAOlB,IAAI,CAAC,SAAS,GAAG,SAAS,IAAI,OAAO,CAAC,gBAAgB,CAAC;;;;;;;IAOvD,IAAI,CAAC,WAAW,GAAG,WAAW,IAAI,OAAO,CAAC,kBAAkB,CAAC;;IAE7D,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,CAAC;IACvC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC;;IAE3C,IAAI,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,UAAU;IACjD;QACI,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;QAEjC,IAAI,SAAS,CAAC,IAAI,CAAC;QACnB;YACI,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC;YAClB,IAAI,IAAI,GAAG,IAAI,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC;SACnC;;QAED;YACI,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;SACvB;;QAED,IAAI,CAAC,SAAS,GAAG,sBAAsB,GAAG,IAAI,GAAG,IAAI,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC;QACzE,IAAI,CAAC,WAAW,GAAG,sBAAsB,GAAG,IAAI,GAAG,IAAI,IAAI,IAAI,CAAC,WAAW,CAAC,CAAC;;QAE7E,IAAI,CAAC,SAAS,GAAG,YAAY,CAAC,IAAI,CAAC,SAAS,EAAE,QAAQ,CAAC,gBAAgB,EAAE,SAAS,CAAC,IAAI,CAAC,CAAC;QACzF,IAAI,CAAC,WAAW,GAAG,YAAY,CAAC,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC,kBAAkB,EAAE,uBAAuB,EAAE,CAAC,CAAC;KAC7G;;;IAGD,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC;;;IAGnD,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;;IAErB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;CAC5B,CAAC;;AAEF,IAAID,iBAAe,GAAG,EAAE,gBAAgB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,kBAAkB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;;AAU9G,OAAO,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,SAAS,EAAE,WAAW;AAC5E;IACI,IAAI,EAAE,GAAG,cAAc,EAAE,CAAC;;IAE1B,IAAI,EAAE;IACN;QACI,IAAI,OAAO,GAAG,cAAc,CAAC,EAAE,EAAE,SAAS,EAAE,WAAW,CAAC,CAAC;;QAEzD,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,gBAAgB,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;QACxD,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;;QAEpD,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;KAC7B;;IAED;QACI,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;QACtB,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;KAC3B;CACJ,CAAC;;;;;;;;;;;AAWF,OAAO,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,OAAO,EAAE,EAAE;AAC3E;IACI,IAAI,UAAU,GAAG,EAAE,CAAC;IACpB,IAAI,eAAe,GAAG,EAAE,CAAC;;IAEzB,IAAI,eAAe,GAAG,EAAE,CAAC,mBAAmB,CAAC,OAAO,EAAE,EAAE,CAAC,iBAAiB,CAAC,CAAC;;IAE5E,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,eAAe,EAAE,CAAC,EAAE;IACxC;QACI,IAAI,UAAU,GAAG,EAAE,CAAC,eAAe,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;QAChD,IAAI,IAAI,GAAG,OAAO,CAAC,EAAE,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;;;QAGxC,IAAI,IAAI,GAAG;YACP,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,UAAU,CAAC,IAAI;YACrB,IAAI,EAAE,OAAO,CAAC,IAAI,CAAC;YACnB,QAAQ,EAAE,CAAC;SACd,CAAC;;;QAGF,UAAU,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;QACnC,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KAC9B;;IAED,eAAe,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;;IAE7E,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE;IACrD;QACI,eAAe,CAAC,GAAG,CAAC,CAAC,QAAQ,GAAG,GAAG,CAAC;KACvC;;IAED,OAAO,UAAU,CAAC;CACrB,CAAC;;;;;;;;;;;AAWF,OAAO,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,OAAO,EAAE,EAAE;AACvE;IACI,IAAI,QAAQ,GAAG,EAAE,CAAC;;IAElB,IAAI,aAAa,GAAG,EAAE,CAAC,mBAAmB,CAAC,OAAO,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC;;;;;;IAMxE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,EAAE,CAAC,EAAE;IACtC;QACI,IAAI,WAAW,GAAG,EAAE,CAAC,gBAAgB,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;QAClD,IAAI,IAAI,GAAG,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;;QAEnD,IAAI,OAAO,GAAG,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;QACpD,IAAI,IAAI,GAAG,OAAO,CAAC,EAAE,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;;;QAGzC,QAAQ,CAAC,IAAI,CAAC,GAAG;YACb,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,WAAW,CAAC,IAAI;YACtB,OAAO,CAAC,OAAO;YACf,KAAK,EAAE,YAAY,CAAC,IAAI,EAAE,WAAW,CAAC,IAAI,CAAC;SAC9C,CAAC;;KAEL;;IAED,OAAO,QAAQ,CAAC;CACnB,CAAC;;;;;;;;;AASFA,iBAAe,CAAC,gBAAgB,CAAC,GAAG,GAAG;AACvC;IACI,OAAO,aAAa,CAAC;CACxB,CAAC;;;;;;;;;AASFA,iBAAe,CAAC,kBAAkB,CAAC,GAAG,GAAG;AACzC;IACI,OAAO,eAAe,CAAC;CAC1B,CAAC;;;;;;;;;;;;AAYF,OAAO,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,SAAS,EAAE,WAAW,EAAE,IAAI;AAC1D;IACI,IAAI,GAAG,GAAG,SAAS,GAAG,WAAW,CAAC;;IAElC,IAAI,OAAO,GAAG,YAAY,CAAC,GAAG,CAAC,CAAC;;IAEhC,IAAI,CAAC,OAAO;IACZ;QACI,YAAY,CAAC,GAAG,CAAC,GAAG,OAAO,GAAG,IAAI,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE,IAAI,CAAC,CAAC;KAC3E;;IAED,OAAO,OAAO,CAAC;CAClB,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,OAAO,EAAEA,iBAAe,EAAE,CAAC;;;;;;;;AAQpD,IAAI,MAAM,GAAG,SAAS,MAAM,CAAC,OAAO,EAAE,QAAQ;AAC9C;;;;;;IAMI,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;;;IAIvB,IAAI,QAAQ;IACZ;QACI,IAAI,QAAQ,YAAY,YAAY;QACpC;YACI,IAAI,CAAC,YAAY,GAAG,QAAQ,CAAC;SAChC;;QAED;YACI,IAAI,CAAC,YAAY,GAAG,IAAI,YAAY,CAAC,QAAQ,CAAC,CAAC;SAClD;KACJ;;IAED;QACI,IAAI,CAAC,YAAY,GAAG,IAAI,YAAY,CAAC,EAAE,CAAC,CAAC;KAC5C;;;;;IAKD,KAAK,IAAI,CAAC,IAAI,OAAO,CAAC,WAAW;IACjC;QACI,IAAI,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC,CAAC,YAAY,KAAK;QAClD;YACI,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;SACnF;KACJ;CACJ,CAAC;;AAEF,IAAIG,sBAAoB,GAAG,EAAE,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;AAGhE,MAAM,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,IAAI,EAAE,KAAK;AAC9E;IACI,IAAI,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC;IACxB;QACI,OAAO,IAAI,CAAC;KACf;;IAED,KAAK,IAAI,CAAC,IAAI,KAAK,CAAC,QAAQ;IAC5B;QACI,IAAI,OAAO,GAAG,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;;QAEhC,IAAI,OAAO,CAAC,KAAK;QACjB;YACI,IAAI,IAAI,CAAC,kBAAkB,CAAC,IAAI,EAAE,OAAO,CAAC;YAC1C;gBACI,OAAO,IAAI,CAAC;aACf;SACJ;KACJ;;IAED,OAAO,KAAK,CAAC;CAChB,CAAC;;AAEF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC3C;;;IAGI,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;CAC5B,CAAC;;;;;;;AAOFA,sBAAoB,CAAC,QAAQ,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC;CACrC,CAAC;;;;;;;;;;;AAWF,MAAM,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,SAAS,EAAE,WAAW,EAAE,QAAQ;AAC7D;IACI,IAAI,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,SAAS,EAAE,WAAW,CAAC,CAAC;;IAEnD,OAAO,IAAI,MAAM,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;CACxC,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,MAAM,CAAC,SAAS,EAAEA,sBAAoB,EAAE,CAAC;;;;AAIlE,IAAI,KAAK,GAAG,CAAC,CAAC;AACd,IAAI,MAAM,GAAG,CAAC,CAAC;AACf,IAAI,OAAO,GAAG,CAAC,CAAC;AAChB,IAAI,UAAU,GAAG,CAAC,CAAC;AACnB,IAAI,OAAO,GAAG,CAAC,CAAC;;;;;;;;;;;AAWhB,IAAI,KAAK,GAAG,SAAS,KAAK;AAC1B;IACI,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;;IAEd,IAAI,CAAC,SAAS,GAAG,WAAW,CAAC,MAAM,CAAC;IACpC,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;IAEvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;CAErB,CAAC;;AAEF,IAAIC,sBAAoB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,OAAO,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,OAAO,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,kBAAkB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,aAAa,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;AAOlRA,sBAAoB,CAAC,KAAK,CAAC,GAAG,GAAG;AACjC;IACI,OAAO,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC;CACvC,CAAC;;AAEFA,sBAAoB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;AAChD;IACI,IAAI,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC,CAAC,KAAK,KAAK;IAC1C;QACI,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,CAAC;KAC7B;CACJ,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,OAAO,CAAC,GAAG,GAAG;AACnC;IACI,OAAO,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC;CACxC,CAAC;;AAEFA,sBAAoB,CAAC,OAAO,CAAC,GAAG,GAAG,UAAU,KAAK;AAClD;IACI,IAAI,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,MAAM,CAAC,CAAC,KAAK,KAAK;IAC3C;QACI,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,MAAM,CAAC,CAAC;KAC9B;CACJ,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,OAAO,CAAC,GAAG,GAAG;AACnC;IACI,OAAO,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC;CACzC,CAAC;;AAEFA,sBAAoB,CAAC,OAAO,CAAC,GAAG,GAAG,UAAU,KAAK;AAClD;IACI,IAAI,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,OAAO,CAAC,CAAC,KAAK,KAAK;IAC5C;QACI,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,OAAO,CAAC,CAAC;KAC/B;CACJ,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG;AACrC;IACI,OAAO,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,UAAU,CAAC,CAAC,CAAC;CAC5C,CAAC;;AAEFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG,UAAU,KAAK;AACpD;IACI,IAAI,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,UAAU,CAAC,CAAC,KAAK,KAAK;IAC/C;QACI,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,UAAU,CAAC,CAAC;KAClC;CACJ,CAAC;;;;;;;AAOFA,sBAAoB,CAAC,kBAAkB,CAAC,GAAG,GAAG;AAC9C;IACI,OAAO,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC;CACzC,CAAC;;AAEFA,sBAAoB,CAAC,kBAAkB,CAAC,GAAG,GAAG,UAAU,KAAK;AAC7D;IACI,IAAI,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,OAAO,CAAC,CAAC,KAAK,KAAK;IAC5C;QACI,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,OAAO,CAAC,CAAC;KAC/B;CACJ,CAAC;;;;;;;;;;AAUFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG;AACrC;IACI,OAAO,IAAI,CAAC,UAAU,CAAC;CAC1B,CAAC;;AAEFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG,UAAU,KAAK;AACpD;IACI,IAAI,CAAC,KAAK,IAAI,KAAK,KAAK,WAAW,CAAC,IAAI,CAAC,CAAC;IAC1C,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;CAC3B,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,aAAa,CAAC,GAAG,GAAG;AACzC;IACI,OAAO,IAAI,CAAC,cAAc,CAAC;CAC9B,CAAC;;AAEFA,sBAAoB,CAAC,aAAa,CAAC,GAAG,GAAG,UAAU,KAAK;AACxD;IACI,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC;IACvB,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;CAC/B,CAAC;;AAEF,KAAK,CAAC,KAAK,GAAG,SAAS,KAAK;AAC5B;IACI,IAAI,KAAK,GAAG,IAAI,KAAK,EAAE,CAAC;;IAExB,KAAK,CAAC,SAAS,GAAG,KAAK,CAAC;IACxB,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC;;IAEnB,OAAO,KAAK,CAAC;CAChB,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,KAAK,CAAC,SAAS,EAAEA,sBAAoB,EAAE,CAAC;;AAEjE,IAAI,eAAe,GAAG,8jBAA8jB,CAAC;;AAErlB,IAAI,iBAAiB,GAAG,4IAA4I,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0IrK,IAAI,MAAM,iBAAiB,UAAU,MAAM,EAAE;IACzC,SAAS,MAAM,CAAC,SAAS,EAAE,WAAW,EAAE,QAAQ;IAChD;QACI,IAAI,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,SAAS,IAAI,MAAM,CAAC,gBAAgB;YAC3D,WAAW,IAAI,MAAM,CAAC,kBAAkB,CAAC,CAAC;;QAE9C,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;;;;;;;;;QASrC,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;;QAQjB,IAAI,CAAC,UAAU,GAAG,QAAQ,CAAC,iBAAiB,CAAC;;;;;;;QAO7C,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;;QAQpB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;QAOpB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,aAAa,CAAC;;;;;;QAMzD,IAAI,CAAC,KAAK,GAAG,IAAI,KAAK,EAAE,CAAC;KAC5B;;IAED,KAAK,MAAM,GAAG,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC;IACxC,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IAC/D,MAAM,CAAC,SAAS,CAAC,WAAW,GAAG,MAAM,CAAC;;IAEtC,IAAI,kBAAkB,GAAG,EAAE,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;IAC/D,IAAI,eAAe,GAAG,EAAE,gBAAgB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,kBAAkB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;;;;;IAa9G,MAAM,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,aAAa,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,YAAY;IAC1F;;;QAGI,aAAa,CAAC,WAAW,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC;;;KAGvE,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG;IACnC;QACI,OAAO,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC;KAC/B,CAAC;;IAEF,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG,UAAU,KAAK;IAClD;QACI,IAAI,CAAC,KAAK,CAAC,SAAS,GAAG,KAAK,CAAC;KAChC,CAAC;;;;;;;;;IASF,eAAe,CAAC,gBAAgB,CAAC,GAAG,GAAG;IACvC;QACI,OAAO,eAAe,CAAC;KAC1B,CAAC;;;;;;;;;IASF,eAAe,CAAC,kBAAkB,CAAC,GAAG,GAAG;IACzC;QACI,OAAO,iBAAiB,CAAC;KAC5B,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,MAAM,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;IAChE,MAAM,CAAC,gBAAgB,EAAE,MAAM,EAAE,eAAe,EAAE,CAAC;;IAEnD,OAAO,MAAM,CAAC;CACjB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;AASX,MAAM,CAAC,cAAc,GAAG,EAAE,CAAC;;AAE3B,IAAI,MAAM,GAAG,iZAAiZ,CAAC;;AAE/Z,IAAI,QAAQ,GAAG,opBAAopB,CAAC;;AAEpqB,IAAI,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;;;;;;;;;;;AAmB3B,IAAI,aAAa,GAAG,SAAS,aAAa,CAAC,OAAO,EAAE,WAAW;AAC/D;IACI,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;;;;;;;IAOxB,IAAI,CAAC,QAAQ,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;IAQ7B,IAAI,CAAC,WAAW,GAAG,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;;;;;;;;IAQvC,IAAI,CAAC,YAAY,GAAG,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;;;;;;;IAOxC,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;;;;;;;;;;IAUpB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;;;;;;;;;;IAUrB,IAAI,CAAC,WAAW,GAAG,CAAC,OAAO,WAAW,KAAK,WAAW,IAAI,GAAG,GAAG,WAAW,CAAC;;;;;;;;IAQ5E,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;CACzB,CAAC;;AAEF,IAAIC,sBAAoB,GAAG,EAAE,OAAO,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;AAM/DA,sBAAoB,CAAC,OAAO,CAAC,GAAG,GAAG;AACnC;IACI,OAAO,IAAI,CAAC,QAAQ,CAAC;CACxB,CAAC;;AAEFA,sBAAoB,CAAC,OAAO,CAAC,GAAG,GAAG,UAAU,KAAK;AAClD;IACI,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;IACtB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;CACvB,CAAC;;;;;;;;AAQF,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,GAAG,EAAE,GAAG;AACpE;IACI,IAAI,GAAG,KAAK,SAAS;IACrB;QACI,GAAG,GAAG,GAAG,CAAC;KACb;;IAED,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC;;IAExB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC;IACtC;QACI,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;QACf,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;;QAEnB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,EAAE,CAAC;QAC5C,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,EAAE,CAAC;KACnD;;IAED,OAAO,GAAG,CAAC;CACd,CAAC;;;;;;;AAOF,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,WAAW;AAC7D;IACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC;;IAExB,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK;IACtB;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,IAAI,CAAC,WAAW;WACT,IAAI,CAAC,SAAS,KAAK,GAAG,CAAC,SAAS;IACvC;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,IAAI,CAAC,SAAS,GAAG,GAAG,CAAC,SAAS,CAAC;;IAE/B,IAAI,GAAG,GAAG,GAAG,CAAC,IAAI,CAAC;;IAEnB,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,EAAE,CAAC,CAAC;;IAEtG,IAAI,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;IACpB,IAAI,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;;IAEpB,IAAI,IAAI;IACR;QACI,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM;YAChE,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;QACjD,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;KACjC;;IAED,IAAI,OAAO,GAAG,GAAG,CAAC,WAAW,CAAC;IAC9B,IAAI,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC;IAC7B,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW,GAAG,OAAO,CAAC,UAAU,CAAC;IACnD,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC;;IAE9B,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,KAAK,CAAC;IAC5D,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,MAAM,CAAC;IAC7D,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,KAAK,GAAG,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,KAAK,CAAC;IAC/E,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,MAAM,GAAG,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,MAAM,CAAC;IACjF,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,GAAG,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC;IAClD,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,GAAG,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC;;IAEnD,IAAI,CAAC,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC,KAAK,KAAK,OAAO,CAAC,KAAK;WAC3C,GAAG,CAAC,MAAM,CAAC,MAAM,KAAK,OAAO,CAAC,MAAM;WACpC,GAAG,CAAC,MAAM,KAAK,CAAC,CAAC;;IAExB,OAAO,IAAI,CAAC;CACf,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,aAAa,CAAC,SAAS,EAAEA,sBAAoB,EAAE,CAAC;;;;;;;;;;;AAWzE,IAAI,gBAAgB,iBAAiB,UAAU,MAAM,EAAE;IACnD,SAAS,gBAAgB,CAAC,MAAM;IAChC;QACI,IAAI,UAAU,GAAG,IAAI,MAAM,EAAE,CAAC;;QAE9B,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC;;QAEpC,MAAM,CAAC,UAAU,GAAG,KAAK,CAAC;;;;;;QAM1B,IAAI,CAAC,UAAU,GAAG,MAAM,CAAC;;;;;;QAMzB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;KAChC;;IAED,KAAK,MAAM,GAAG,gBAAgB,CAAC,SAAS,GAAG,MAAM,CAAC;IAClD,gBAAgB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACzE,gBAAgB,CAAC,SAAS,CAAC,WAAW,GAAG,gBAAgB,CAAC;;;;;;;;;;IAU1D,gBAAgB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,aAAa,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK;IACtF;QACI,IAAI,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;QACjC,IAAI,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC;;QAElC,IAAI,CAAC,GAAG,CAAC,KAAK;QACd;YACI,OAAO;SACV;QACD,IAAI,CAAC,GAAG,CAAC,SAAS;QAClB;;;YAGI,GAAG,CAAC,SAAS,GAAG,IAAI,aAAa,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;SAC/C;QACD,GAAG,CAAC,SAAS,CAAC,MAAM,EAAE,CAAC;;QAEvB,IAAI,CAAC,QAAQ,CAAC,QAAQ,GAAG,GAAG,CAAC,WAAW,CAAC,gBAAgB,GAAG,GAAG,GAAG,GAAG,CAAC;QACtE,IAAI,CAAC,QAAQ,CAAC,IAAI,GAAG,GAAG,CAAC;;QAEzB,IAAI,CAAC,QAAQ,CAAC,WAAW,GAAG,aAAa,CAAC,qBAAqB,CAAC,IAAI,CAAC,UAAU,EAAE,UAAU,CAAC;aACvF,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC;QACrC,IAAI,CAAC,QAAQ,CAAC,KAAK,GAAG,UAAU,CAAC,UAAU,CAAC;QAC5C,IAAI,CAAC,QAAQ,CAAC,SAAS,GAAG,GAAG,CAAC,SAAS,CAAC,WAAW,CAAC;;QAEpD,aAAa,CAAC,WAAW,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;KACzD,CAAC;;IAEF,OAAO,gBAAgB,CAAC;CAC3B,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;AASX,IAAI,UAAU,iBAAiB,UAAU,MAAM,EAAE;IAC7C,SAAS,UAAU,CAAC,QAAQ;IAC5B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;;QAQ5B,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;;;;;;QAOrB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;QAOxB,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC;;;;;;;QAOhC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;;;;;;;QAO3B,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;;;;;;;;QAQxB,IAAI,CAAC,cAAc,GAAG,CAAC,CAAC;KAC3B;;IAED,KAAK,MAAM,GAAG,UAAU,CAAC,SAAS,GAAG,MAAM,CAAC;IAC5C,UAAU,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACnE,UAAU,CAAC,SAAS,CAAC,WAAW,GAAG,UAAU,CAAC;;;;;;;;IAQ9C,UAAU,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,QAAQ;IAC3D;;;;;QAKI,IAAI,QAAQ,CAAC,QAAQ;QACrB;YACI,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;SACzC;aACI,IAAI,IAAI,CAAC,aAAa;eACpB,CAAC,IAAI,CAAC,OAAO;eACb,IAAI,CAAC,QAAQ,CAAC,mBAAmB,CAAC,IAAI;eACtC,CAAC,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,gBAAgB,CAAC,MAAM;eAC9C,QAAQ,CAAC,UAAU,EAAE;QAC5B;YACI,IAAI,MAAM,GAAG,QAAQ,CAAC,cAAc,CAAC;;YAErC,IAAI,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC;;;YAGzC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,IAAI,GAAG,GAAG,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC;;YAExC,IAAI,GAAG,GAAG,EAAE;YACZ;gBACI,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC;aAClC;;YAED;gBACI,IAAI,CAAC,eAAe,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aAC1C;SACJ;;QAED;YACI,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC;SAClC;KACJ,CAAC;;;;;;;;IAQF,UAAU,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,MAAM,EAAE,QAAQ;IACzD;QACI,IAAI,QAAQ,CAAC,QAAQ;QACrB;YACI,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;SACxC;aACI,IAAI,IAAI,CAAC,aAAa,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,gBAAgB,CAAC,MAAM;QAC7E;YACI,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;SACzC;;QAED;YACI,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;SACzC;KACJ,CAAC;;;;;;;;IAQF,UAAU,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,MAAM,EAAE,QAAQ;IAC/E;QACI,IAAI,eAAe,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;;QAE9D,IAAI,CAAC,eAAe;QACpB;YACI,eAAe,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,IAAI,gBAAgB,CAAC,QAAQ,CAAC,CAAC,CAAC;SAChG;;QAED,eAAe,CAAC,CAAC,CAAC,CAAC,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC;QACzD,eAAe,CAAC,CAAC,CAAC,CAAC,UAAU,GAAG,QAAQ,CAAC;;QAEzC,IAAI,eAAe,GAAG,MAAM,CAAC,UAAU,CAAC;;QAExC,MAAM,CAAC,UAAU,GAAG,QAAQ,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;QAC7C,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;QACnD,MAAM,CAAC,UAAU,GAAG,eAAe,CAAC;;QAEpC,IAAI,CAAC,cAAc,EAAE,CAAC;KACzB,CAAC;;;;;;IAMF,UAAU,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IAC3D;QACI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC;QAC3B,IAAI,CAAC,cAAc,EAAE,CAAC;KACzB,CAAC;;;;;;;IAOF,UAAU,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,QAAQ;IACzE;QACI,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;QAC5B,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;KAC/C,CAAC;;;;;;IAMF,UAAU,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;IAC7D;;QAEI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC;KACtC,CAAC;;;;;;;IAOF,UAAU,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,MAAM,EAAE,QAAQ;IACjF;QACI,QAAQ,CAAC,UAAU,GAAG,IAAI,CAAC;;QAE3B,IAAI,YAAY,GAAG,IAAI,CAAC,QAAQ,CAAC,mBAAmB,CAAC;;QAErD,IAAI,MAAM,GAAG,QAAQ,CAAC,SAAS,EAAE,CAAC;;QAElC,MAAM,CAAC,GAAG,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;QAC9B,QAAQ,CAAC,UAAU,GAAG,KAAK,CAAC;;QAE5B,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC;;QAEvD,IAAI,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC;;QAE1C,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,OAAO;YACpB,MAAM,CAAC,CAAC,GAAG,UAAU;YACrB,CAAC,YAAY,CAAC,IAAI,GAAG,YAAY,CAAC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC,IAAI,UAAU;YACjG,MAAM,CAAC,KAAK,GAAG,UAAU;YACzB,MAAM,CAAC,MAAM,GAAG,UAAU;SAC7B,CAAC;;QAEF,IAAI,CAAC,mBAAmB,GAAG,YAAY,CAAC;QACxC,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC;QAC5B,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;KACvB,CAAC;;;;;;IAMF,UAAU,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;IAC7D;QACI,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC;QAChC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QACxB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;;QAGrB,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC;QACxB,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC;KAC/B,CAAC;;IAEF,OAAO,UAAU,CAAC;CACrB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;AASX,IAAI,aAAa,iBAAiB,UAAU,MAAM,EAAE;IAChD,SAAS,aAAa,CAAC,QAAQ;IAC/B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;QAM5B,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC;KAC9B;;IAED,KAAK,MAAM,GAAG,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC;IAC/C,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACtE,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;;;;;;IAOpD,aAAa,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,gBAAgB;IAC9E;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC1B,IAAI,WAAW,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC;;QAE/C,IAAI,CAAC,gBAAgB,GAAG,gBAAgB,CAAC;QACzC,IAAI,gBAAgB,CAAC,MAAM,KAAK,WAAW;QAC3C;YACI,IAAI,gBAAgB,CAAC,MAAM,KAAK,CAAC;YACjC;gBACI,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC;aAC/B;;YAED;gBACI,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC;gBAC3B,IAAI,CAAC,WAAW,EAAE,CAAC;aACtB;SACJ;KACJ,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,QAAQ;IACpE;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC1B,IAAI,aAAa,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC;;QAEjD,IAAI,aAAa,KAAK,CAAC;QACvB;;YAEI,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,YAAY,EAAE,CAAC;YACzC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC;SAC9B;;QAED,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;;;QAGrC,EAAE,CAAC,SAAS,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;QACzC,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,aAAa,EAAE,IAAI,CAAC,eAAe,EAAE,CAAC,CAAC;QAChE,EAAE,CAAC,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC;;QAExC,QAAQ,CAAC,UAAU,GAAG,IAAI,CAAC;QAC3B,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAC/B,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;QAC5B,QAAQ,CAAC,UAAU,GAAG,KAAK,CAAC;;QAE5B,IAAI,CAAC,WAAW,EAAE,CAAC;KACtB,CAAC;;;;;IAKF,aAAa,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IACxD;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC1B,IAAI,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAC,GAAG,EAAE,CAAC;;QAE3C,IAAI,IAAI,CAAC,gBAAgB,CAAC,MAAM,KAAK,CAAC;QACtC;;YAEI,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC;YAC5B,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAAC,CAAC;YAChC,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;SACtB;;QAED;;YAEI,EAAE,CAAC,SAAS,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;YACzC,EAAE,CAAC,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC;;YAExC,QAAQ,CAAC,UAAU,GAAG,IAAI,CAAC;YAC3B,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;YAC/B,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;YAC5B,QAAQ,CAAC,UAAU,GAAG,KAAK,CAAC;;YAE5B,IAAI,CAAC,WAAW,EAAE,CAAC;SACtB;KACJ,CAAC;;;;;;IAMF,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;IAC1D;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;;QAE1B,EAAE,CAAC,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;QACrC,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,IAAI,CAAC,eAAe,EAAE,CAAC,CAAC;QAC/E,EAAE,CAAC,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC;KAC3C,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;IAClE;QACI,OAAO,CAAC,CAAC,IAAI,IAAI,CAAC,gBAAgB,CAAC,MAAM,IAAI,CAAC,CAAC;KAClD,CAAC;;;;;;IAMF,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAClD;QACI,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;;QAE1C,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;KAChC,CAAC;;IAEF,OAAO,aAAa,CAAC;CACxB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;;AAUX,IAAI,gBAAgB,iBAAiB,UAAU,MAAM,EAAE;IACnD,SAAS,gBAAgB,CAAC,QAAQ;IAClC;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;QAO5B,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;;;;;;;QAO7B,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;QAOxB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;;;;;;;QAOzB,IAAI,CAAC,gBAAgB,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;QAOrC,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;KACzB;;IAED,KAAK,MAAM,GAAG,gBAAgB,CAAC,SAAS,GAAG,MAAM,CAAC;IAClD,gBAAgB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACzE,gBAAgB,CAAC,SAAS,CAAC,WAAW,GAAG,gBAAgB,CAAC;;;;;;;;;;IAU1D,gBAAgB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,gBAAgB,EAAE,WAAW,EAAE,UAAU,EAAE,IAAI;IACpG;QACI,IAAI,CAAC,gBAAgB,GAAG,gBAAgB,IAAI,IAAI,CAAC,gBAAgB,IAAI,IAAI,CAAC,YAAY,CAAC;QACvF,IAAI,CAAC,WAAW,GAAG,WAAW,IAAI,IAAI,CAAC,WAAW,IAAI,gBAAgB,CAAC;;QAEvE,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC,WAAW,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC;;QAEpF,IAAI,IAAI,CAAC,SAAS;QAClB;YACI,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SAChD;;QAED,IAAI,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC;;QAE9B,QAAQ,CAAC,cAAc,CAAC,QAAQ,CAAC,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC;QAC1E,QAAQ,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC;;;;QAIjC,IAAI,QAAQ,CAAC,MAAM,CAAC,MAAM;QAC1B;YACI,QAAQ,CAAC,MAAM,CAAC,gBAAgB,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC;SAC7E;KACJ,CAAC;;;;;;;;;;IAUF,gBAAgB,CAAC,SAAS,CAAC,mBAAmB,GAAG,SAAS,mBAAmB,EAAE,gBAAgB,EAAE,WAAW,EAAE,UAAU,EAAE,IAAI;IAC9H;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,gBAAgB,CAAC;;;;;QAK/B,IAAI,CAAC,IAAI;QACT;YACI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,gBAAgB,CAAC,KAAK,GAAG,CAAC,IAAI,UAAU,CAAC;YACrD,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,gBAAgB,CAAC,MAAM,GAAG,CAAC,IAAI,UAAU,CAAC;;YAEtD,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;YACpC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;SACvC;;QAED;YACI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,gBAAgB,CAAC,KAAK,GAAG,CAAC,IAAI,UAAU,CAAC;YACrD,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,gBAAgB,CAAC,MAAM,GAAG,CAAC,IAAI,UAAU,CAAC;;YAEvD,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;YACpC,EAAE,CAAC,EAAE,GAAG,CAAC,IAAI,WAAW,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;SACtC;KACJ,CAAC;;;;;;;IAOF,gBAAgB,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY;IAC/D;;KAEC,CAAC;;IAEF,OAAO,gBAAgB,CAAC;CAC3B,CAAC,MAAM,CAAC,CAAC,CAAC;;AAEX,IAAI,QAAQ,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;;;;;;AAY/B,IAAI,mBAAmB,iBAAiB,UAAU,MAAM,EAAE;IACtD,SAAS,mBAAmB,CAAC,QAAQ;IACrC;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;QAM5B,IAAI,CAAC,UAAU,GAAG,QAAQ,CAAC,oBAAoB,CAAC;;;;;;;;QAQhD,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC;;;;;;;;QAQ3B,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;QAOpB,IAAI,CAAC,WAAW,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;QAOnC,IAAI,CAAC,gBAAgB,GAAG,IAAI,SAAS,EAAE,CAAC;KAC3C;;IAED,KAAK,MAAM,GAAG,mBAAmB,CAAC,SAAS,GAAG,MAAM,CAAC;IACrD,mBAAmB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IAC5E,mBAAmB,CAAC,SAAS,CAAC,WAAW,GAAG,mBAAmB,CAAC;;;;;;;;IAQhE,mBAAmB,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,aAAa,EAAE,WAAW,EAAE,gBAAgB;IAChG;QACI,KAAK,aAAa,KAAK,KAAK,CAAC,GAAG,aAAa,GAAG,IAAI,CAAC;;QAErD,IAAI,CAAC,OAAO,GAAG,aAAa,CAAC;;QAE7B,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;;QAE7B,IAAI,UAAU,CAAC;;QAEf,IAAI,aAAa;QACjB;YACI,IAAI,WAAW,GAAG,aAAa,CAAC,WAAW,CAAC;;YAE5C,UAAU,GAAG,WAAW,CAAC,UAAU,CAAC;;YAEpC,IAAI,CAAC,gBAAgB;YACrB;gBACI,QAAQ,CAAC,KAAK,GAAG,WAAW,CAAC,SAAS,CAAC;gBACvC,QAAQ,CAAC,MAAM,GAAG,WAAW,CAAC,UAAU,CAAC;;gBAEzC,gBAAgB,GAAG,QAAQ,CAAC;aAC/B;;YAED,IAAI,CAAC,WAAW;YAChB;gBACI,WAAW,GAAG,gBAAgB,CAAC;aAClC;;YAED,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,WAAW,EAAE,gBAAgB,CAAC,CAAC;;YAE1E,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,MAAM,CAAC,gBAAgB,EAAE,WAAW,EAAE,UAAU,EAAE,KAAK,CAAC,CAAC;YAClF,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAAC;SACpE;;QAED;YACI,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC;;;;YAItC,IAAI,CAAC,gBAAgB;YACrB;gBACI,QAAQ,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;gBAChC,QAAQ,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;;gBAElC,gBAAgB,GAAG,QAAQ,CAAC;aAC/B;;YAED,IAAI,CAAC,WAAW;YAChB;gBACI,WAAW,GAAG,gBAAgB,CAAC;aAClC;;YAED,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;;;YAGlD,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,MAAM,CAAC,gBAAgB,EAAE,WAAW,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC;YACjF,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;SAC7D;;QAED,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;;QAEvC,IAAI,CAAC,gBAAgB,CAAC,CAAC,GAAG,gBAAgB,CAAC,CAAC,GAAG,UAAU,CAAC;QAC1D,IAAI,CAAC,gBAAgB,CAAC,CAAC,GAAG,gBAAgB,CAAC,CAAC,GAAG,UAAU,CAAC;;QAE1D,IAAI,CAAC,gBAAgB,CAAC,KAAK,GAAG,gBAAgB,CAAC,KAAK,GAAG,UAAU,CAAC;QAClE,IAAI,CAAC,gBAAgB,CAAC,MAAM,GAAG,gBAAgB,CAAC,MAAM,GAAG,UAAU,CAAC;;QAEpE,IAAI,WAAW,KAAK,gBAAgB;QACpC;YACI,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;SACpD;KACJ,CAAC;;;;;;;;IAQF,mBAAmB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,UAAU;IAChE;QACI,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,UAAU,GAAG,UAAU,IAAI,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,UAAU,CAAC;SAClE;;QAED;YACI,UAAU,GAAG,UAAU,IAAI,IAAI,CAAC,UAAU,CAAC;SAC9C;;QAED,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;KAC/F,CAAC;;IAEF,mBAAmB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;IACtD;;QAEI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACnB,CAAC;;;;;IAKF,mBAAmB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACpD;QACI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACnB,CAAC;;IAEF,OAAO,mBAAmB,CAAC;CAC9B,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;AAQX,IAAI,SAAS,GAAG,SAAS,SAAS,CAAC,OAAO,EAAE,WAAW;AACvD;;;;;;IAMI,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;;;;;;IAOvB,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;;;;;;;IAO/B,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;CAC3B,CAAC;;;;;AAKF,SAAS,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC9C;IACI,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;IACxB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;CACvB,CAAC;;AAEF,IAAI,KAAK,GAAG,CAAC,CAAC;;;;;;;;;AASd,IAAI,YAAY,iBAAiB,UAAU,MAAM,EAAE;IAC/C,SAAS,YAAY,CAAC,QAAQ;IAC9B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;QAG5B,IAAI,CAAC,WAAW,EAAE,CAAC;;;;;;;QAOnB,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;;QAEf,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;QAOpB,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;;QAEhB,IAAI,CAAC,EAAE,GAAG,KAAK,EAAE,CAAC;KACrB;;IAED,KAAK,MAAM,GAAG,YAAY,CAAC,SAAS,GAAG,MAAM,CAAC;IAC9C,YAAY,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACrE,YAAY,CAAC,SAAS,CAAC,WAAW,GAAG,YAAY,CAAC;;;;;;;;IAQlD,YAAY,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;IACzD;QACI,IAAI,CAAC,mBAAmB,EAAE;QAC1B;YACI,MAAM,IAAI,KAAK,CAAC,kDAAkD;kBAC5D,wDAAwD,CAAC,CAAC;SACnE;KACJ,CAAC;;IAEF,YAAY,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,EAAE;IACjE;QACI,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,KAAK,EAAE,CAAC;KAChB,CAAC;;;;;;;;;IASF,YAAY,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,QAAQ;IAC7D;QACI,MAAM,CAAC,QAAQ,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC;;QAEvD,IAAI,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC;QAC7B,IAAI,SAAS,GAAG,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC;;QAE7F,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;QAGrB,IAAI,IAAI,CAAC,OAAO,KAAK,OAAO;QAC5B;YACI,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;YACvB,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;SACzC;;QAED,IAAI,CAAC,QAAQ;QACb;YACI,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;SAC9C;;QAED,OAAO,SAAS,CAAC;KACpB,CAAC;;;;;;;IAOF,YAAY,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,QAAQ;IACnE;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC;QACjC,IAAI,SAAS,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;;QAE7D,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,WAAW,EAAE,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;KACvE,CAAC;;IAEF,YAAY,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,KAAK;IAC1E;QACI,IAAI,SAAS,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;;QAEpC,IAAI,CAAC,KAAK,CAAC,MAAM,IAAI,KAAK,CAAC,OAAO,KAAK,SAAS,CAAC,aAAa,CAAC,KAAK,CAAC,EAAE,CAAC;QACxE;YACI,SAAS,CAAC,aAAa,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,OAAO,CAAC;;YAElD,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;SACvC;KACJ,CAAC;;;;;;;;IAQF,YAAY,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,KAAK,EAAE,SAAS;IAC7E;QACI,IAAI,QAAQ,GAAG,KAAK,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;;QAE1F,QAAQ,CAAC,SAAS,CAAC,WAAW,EAAE,KAAK,CAAC,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;KAClE,CAAC;;IAEF,YAAY,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,KAAK;IAC1E;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;;QAEnE,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QACnB;YACI,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,oBAAoB,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;SACjF;;QAED,KAAK,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;;QAE5D,OAAO,KAAK,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;KACrD,CAAC;;;;;;;;;;IAUF,YAAY,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,KAAK,EAAE,WAAW;IAC/E;QACI,IAAI,QAAQ,GAAG,KAAK,CAAC,QAAQ,CAAC;;QAE9B,IAAI,OAAO,GAAG,EAAE,CAAC;;QAEjB,KAAK,IAAI,CAAC,IAAI,QAAQ;QACtB;YACI,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;;YAEhB,IAAI,WAAW,CAAC,CAAC,CAAC;YAClB;gBACI,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;aACrC;SACJ;;QAED,OAAO,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KAC5B,CAAC;;;;;;;;IAQF,YAAY,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY;IAC3D;QACI,IAAI,IAAI,CAAC,MAAM;QACf;YACI,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;SACpE;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;IASF,YAAY,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,MAAM;IACvE;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;;QAEjB,IAAI,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC;;QAE7B,IAAI,SAAS,GAAG,EAAE,CAAC;;QAEnB,KAAK,IAAI,CAAC,IAAI,OAAO,CAAC,aAAa;QACnC;YACI,SAAS,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC;SACpD;;QAED,IAAI,aAAa,GAAG,cAAc,CAAC,EAAE,EAAE,OAAO,CAAC,SAAS,EAAE,OAAO,CAAC,WAAW,EAAE,SAAS,CAAC,CAAC;QAC1F,IAAI,WAAW,GAAG,EAAE,CAAC;;QAErB,KAAK,IAAI,GAAG,IAAI,OAAO,CAAC,WAAW;QACnC;YACI,IAAI,IAAI,GAAG,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;;YAEpC,WAAW,CAAC,GAAG,CAAC,GAAG;gBACf,QAAQ,EAAE,EAAE,CAAC,kBAAkB,CAAC,aAAa,EAAE,GAAG,CAAC;gBACnD,KAAK,EAAE,YAAY,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC;aAC5C,CAAC;SACL;;QAED,IAAI,SAAS,GAAG,IAAI,SAAS,CAAC,aAAa,EAAE,WAAW,CAAC,CAAC;;QAE1D,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC;;QAE1D,OAAO,SAAS,CAAC;KACpB,CAAC;;;;;IAKF,YAAY,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC7C;QACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;KACtB,CAAC;;;;;IAKF,YAAY,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACjD;;QAEI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;KACzB,CAAC;;IAEF,OAAO,YAAY,CAAC;CACvB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;;;;AAYX,SAAS,wBAAwB,CAAC,EAAE,EAAE,KAAK;AAC3C;IACI,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,EAAE,CAAC;;;;IAInC,KAAK,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC7D,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC;IAC1C,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,SAAS,EAAE,EAAE,CAAC,mBAAmB,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACrG,KAAK,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC7F,KAAK,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC9D,KAAK,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC7D,KAAK,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC9D,KAAK,CAAC,WAAW,CAAC,WAAW,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAClE,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACjE,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACjE,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACjE,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACjE,KAAK,CAAC,WAAW,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAChE,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC1D,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACjE,KAAK,CAAC,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC5D,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACjE,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;;IAGjC,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,SAAS,EAAE,EAAE,CAAC,mBAAmB,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACvG,KAAK,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,SAAS,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC;IACpE,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,SAAS,EAAE,EAAE,CAAC,mBAAmB,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;;;IAGvG,KAAK,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,SAAS,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC;IACpD,KAAK,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,mBAAmB,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC;IAC/D,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,SAAS,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACrE,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,mBAAmB,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC;IAC/D,KAAK,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC;IACpD,KAAK,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC/D,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,mBAAmB,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC;;;IAGrE,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,qBAAqB,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC;;IAEtG,OAAO,KAAK,CAAC;CAChB;;AAED,IAAI,OAAO,GAAG,CAAC,CAAC;AAChB,IAAI,QAAQ,GAAG,CAAC,CAAC;AACjB,IAAI,SAAS,GAAG,CAAC,CAAC;AAClB,IAAI,YAAY,GAAG,CAAC,CAAC;AACrB,IAAI,SAAS,GAAG,CAAC,CAAC;;;;;;;;;AASlB,IAAI,WAAW,iBAAiB,UAAU,MAAM,EAAE;IAC9C,SAAS,WAAW,CAAC,QAAQ;IAC7B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;QAO5B,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;;;;;;;QAOf,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;QAOjB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;;;;;;;QAQvB,IAAI,CAAC,SAAS,GAAG,WAAW,CAAC,IAAI,CAAC;;;;;;;QAOlC,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;;;;;;;QAOtB,IAAI,CAAC,GAAG,GAAG,EAAE,CAAC;;;QAGd,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC;QAClC,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,SAAS,CAAC;QACpC,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC;QACvC,IAAI,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC;QAC3C,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC;;;;;;;QAOxC,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC;;;;;;;QAOjB,IAAI,CAAC,YAAY,GAAG,IAAI,KAAK,EAAE,CAAC;QAChC,IAAI,CAAC,YAAY,CAAC,KAAK,GAAG,IAAI,CAAC;QAC/B,IAAI,CAAC,YAAY,CAAC,KAAK,GAAG,IAAI,CAAC;KAClC;;IAED,KAAK,MAAM,GAAG,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC;IAC7C,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACpE,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,WAAW,CAAC;;IAEhD,WAAW,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,EAAE;IAChE;QACI,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;;QAEb,IAAI,CAAC,UAAU,GAAG,wBAAwB,CAAC,EAAE,CAAC,CAAC;;QAE/C,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;;QAE5B,IAAI,CAAC,KAAK,EAAE,CAAC;KAChB,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,KAAK;IAC/C;QACI,KAAK,GAAG,KAAK,IAAI,IAAI,CAAC,YAAY,CAAC;;;QAGnC,IAAI,IAAI,CAAC,OAAO,KAAK,KAAK,CAAC,IAAI;QAC/B;YACI,IAAI,IAAI,GAAG,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC,IAAI,CAAC;YACrC,IAAI,CAAC,GAAG,CAAC,CAAC;;;YAGV,OAAO,IAAI;YACX;gBACI,IAAI,IAAI,GAAG,CAAC;gBACZ;;oBAEI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;iBACrD;;gBAED,IAAI,GAAG,IAAI,IAAI,CAAC,CAAC;gBACjB,CAAC,EAAE,CAAC;aACP;;YAED,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC,IAAI,CAAC;SAC7B;;;;;QAKD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,EAAE;QACjD;YACI,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;SACjC;KACJ,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,KAAK;IAC7D;QACI,KAAK,GAAG,KAAK,IAAI,IAAI,CAAC,YAAY,CAAC;QACnC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,EAAE;QACxC;YACI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SACrD;QACD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,EAAE;QACjD;YACI,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;SACjC;;QAED,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC,IAAI,CAAC;KAC7B,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,KAAK;IACzD;QACI,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,cAAc,EAAE,KAAK,CAAC,CAAC;;QAEpD,IAAI,CAAC,EAAE,CAAC,KAAK,GAAG,QAAQ,GAAG,SAAS,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;KACxD,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,KAAK;IAC3D;QACI,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,kBAAkB,EAAE,KAAK,CAAC,CAAC;;QAExD,IAAI,CAAC,EAAE,CAAC,KAAK,GAAG,QAAQ,GAAG,SAAS,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,mBAAmB,CAAC,CAAC;KACtE,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,KAAK;IACjE;QACI,IAAI,CAAC,EAAE,CAAC,KAAK,GAAG,QAAQ,GAAG,SAAS,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC;KAC7D,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,KAAK;IAC/D;QACI,IAAI,CAAC,EAAE,CAAC,KAAK,GAAG,QAAQ,GAAG,SAAS,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC;KAC5D,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,KAAK;IACjE;QACI,IAAI,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,KAAK,GAAG,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC;KACpD,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,KAAK;IACjE;QACI,IAAI,KAAK,KAAK,IAAI,CAAC,SAAS;QAC5B;YACI,OAAO;SACV;;QAED,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;QAEvB,IAAI,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;QAClC,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;;QAEjB,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC;QACrB;YACI,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SAClC;;QAED;YACI,EAAE,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SAC5D;QACD,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC;QACrB;YACI,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;YACrB,EAAE,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SAC9C;aACI,IAAI,IAAI,CAAC,QAAQ;QACtB;YACI,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;YACtB,EAAE,CAAC,qBAAqB,CAAC,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC;SACtD;KACJ,CAAC;;;;;;;;IAQF,WAAW,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,KAAK,EAAE,KAAK;IAChF;QACI,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;KACvC,CAAC;;;;;;IAMF,WAAW,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC5C;QACI,IAAI,CAAC,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE,CAAC,mBAAmB,EAAE,KAAK,CAAC,CAAC;;QAExD,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;;QAEnB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QACrB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;QACpB,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;KACxB,CAAC;;;;;;;;;;;IAWF,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,IAAI,EAAE,KAAK;IACrE;QACI,IAAI,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;;QAEtC,IAAI,KAAK,IAAI,KAAK,KAAK,CAAC,CAAC;QACzB;YACI,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SAC1B;aACI,IAAI,CAAC,KAAK,IAAI,KAAK,KAAK,CAAC,CAAC;QAC/B;YACI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;SAChC;KACJ,CAAC;;;;;;;;;;IAUF,WAAW,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,MAAM,EAAE,KAAK;IACnE;QACI,MAAM,CAAC,YAAY,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;KACxC,CAAC;;;;;;;;;;IAUF,WAAW,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,MAAM,EAAE,KAAK;IAC3E;QACI,MAAM,CAAC,gBAAgB,CAAC,KAAK,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC;KACnD,CAAC;;IAEF,OAAO,WAAW,CAAC;CACtB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;;AAUX,IAAI,eAAe,iBAAiB,UAAU,MAAM,EAAE;IAClD,SAAS,eAAe,CAAC,QAAQ;IACjC;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;QAO5B,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;QAOf,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;;;;;;QAOpB,IAAI,CAAC,OAAO,GAAG,QAAQ,CAAC,WAAW,CAAC;;;;;;;QAOpC,IAAI,CAAC,aAAa,GAAG,QAAQ,CAAC,kBAAkB,CAAC;;;;;;;QAOjD,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,OAAO,CAAC;KAChC;;IAED,KAAK,MAAM,GAAG,eAAe,CAAC,SAAS,GAAG,MAAM,CAAC;IACjD,eAAe,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACxE,eAAe,CAAC,SAAS,CAAC,WAAW,GAAG,eAAe,CAAC;;;;;;IAMxD,eAAe,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IAC1D;QACI,IAAI,CAAC,KAAK,EAAE,CAAC;;QAEb,IAAI,IAAI,CAAC,IAAI,KAAK,QAAQ,CAAC,MAAM;QACjC;YACI,OAAO;SACV;;QAED,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,IAAI,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,aAAa;QACxC;YACI,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;YAEpB,IAAI,CAAC,GAAG,EAAE,CAAC;SACd;KACJ,CAAC;;;;;;IAMF,eAAe,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG;IAC5C;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC;QAC/B,IAAI,eAAe,IAAI,EAAE,CAAC,eAAe,CAAC;QAC1C,IAAI,UAAU,GAAG,KAAK,CAAC;;QAEvB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,eAAe,CAAC,MAAM,EAAE,CAAC,EAAE;QAC/C;YACI,IAAI,OAAO,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;;;YAGjC,IAAI,CAAC,OAAO,CAAC,WAAW,IAAI,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO;YACvE;gBACI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;gBACjC,eAAe,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;gBAC1B,UAAU,GAAG,IAAI,CAAC;aACrB;SACJ;;QAED,IAAI,UAAU;QACd;YACI,IAAI,CAAC,GAAG,CAAC,CAAC;;YAEV,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE;YACrD;gBACI,IAAI,eAAe,CAAC,GAAG,CAAC,KAAK,IAAI;gBACjC;oBACI,eAAe,CAAC,CAAC,EAAE,CAAC,GAAG,eAAe,CAAC,GAAG,CAAC,CAAC;iBAC/C;aACJ;;YAED,eAAe,CAAC,MAAM,GAAG,CAAC,CAAC;SAC9B;KACJ,CAAC;;;;;;;IAOF,eAAe,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,aAAa;IACjE;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC;;;QAGrC,IAAI,aAAa,CAAC,QAAQ,IAAI,aAAa,CAAC,QAAQ,CAAC,gBAAgB;QACrE;YACI,EAAE,CAAC,cAAc,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;SAC7C;;QAED,KAAK,IAAI,CAAC,GAAG,aAAa,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;QAC3D;YACI,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;SAC1C;KACJ,CAAC;;IAEF,OAAO,eAAe,CAAC;CAC1B,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;AAOX,IAAI,SAAS,GAAG,SAAS,SAAS,CAAC,OAAO;AAC1C;;;;;IAKI,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;;;;;IAMvB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC;;;;;;IAMhB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;;;;;IAMjB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC;;;;;;IAMlB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;;;;;;IAMvB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;;;;;;IAMpB,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;;;;;;IAMtB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;IAMjB,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC;CAC9B,CAAC;;;;;;;;;AASF,IAAI,aAAa,iBAAiB,UAAU,MAAM,EAAE;IAChD,SAAS,aAAa,CAAC,QAAQ;IAC/B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;;QAQ5B,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;;;;;;QAMxB,IAAI,CAAC,eAAe,GAAG,CAAC,CAAC,CAAC;;;;;;;QAO1B,IAAI,CAAC,eAAe,GAAG,EAAE,CAAC;;;;;;;QAO1B,IAAI,CAAC,qBAAqB,GAAG,KAAK,CAAC;;;;;;;QAOnC,IAAI,CAAC,cAAc,GAAG,IAAI,WAAW,EAAE,CAAC;KAC3C;;IAED,KAAK,MAAM,GAAG,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC;IAC/C,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACtE,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;;;;IAKpD,aAAa,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IAC9D;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;;QAEpC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;;QAE7C,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC;;QAEvD,IAAI,WAAW,GAAG,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC,uBAAuB,CAAC,CAAC;;QAE9D,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,WAAW,CAAC;;QAExC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,CAAC,EAAE;QACpC;YACI,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;SAChC;;;QAGD,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;;QAExB,IAAI,cAAc,GAAG,IAAI,SAAS,CAAC,EAAE,CAAC,aAAa,EAAE,CAAC,CAAC;;QAEvD,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,UAAU,EAAE,cAAc,CAAC,OAAO,CAAC,CAAC;QACtD,EAAE,CAAC,UAAU,CAAC,EAAE,CAAC,UAAU,EAAE,CAAC,EAAE,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,aAAa,EAAE,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;;QAEhG,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,UAAU,CAAC,GAAG,cAAc,CAAC;QACnD,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,gBAAgB,CAAC,GAAG,IAAI,SAAS,CAAC,EAAE,CAAC,aAAa,EAAE,CAAC,CAAC;;QAE5E,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,gBAAgB,EAAE,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,gBAAgB,CAAC,CAAC,OAAO,CAAC,CAAC;;QAErF,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC,EAAE,GAAG,EAAE;QAChC;YACI,EAAE,CAAC,UAAU,CAAC,EAAE,CAAC,2BAA2B,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;SAC7G;;QAED,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC,gBAAgB,EAAE,EAAE,CAAC,kBAAkB,EAAE,EAAE,CAAC,MAAM,CAAC,CAAC;QACxE,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC,gBAAgB,EAAE,EAAE,CAAC,kBAAkB,EAAE,EAAE,CAAC,MAAM,CAAC,CAAC;;QAExE,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE;QACxD;YACI,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;SACxB;KACJ,CAAC;;;;;;;;;;IAUF,aAAa,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,OAAO,EAAE,QAAQ;IAC/D;QACI,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,CAAC,CAAC;;QAExC,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,IAAI,OAAO;QACX;YACI,OAAO,GAAG,OAAO,CAAC,WAAW,IAAI,OAAO,CAAC;;YAEzC,IAAI,OAAO,CAAC,KAAK;YACjB;gBACI,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,KAAK,CAAC;;gBAEhD,IAAI,SAAS,GAAG,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;;gBAEnF,IAAI,IAAI,CAAC,eAAe,KAAK,QAAQ;gBACrC;oBACI,IAAI,CAAC,eAAe,GAAG,QAAQ,CAAC;oBAChC,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC,QAAQ,GAAG,QAAQ,CAAC,CAAC;iBAC5C;;gBAED,IAAI,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,KAAK,OAAO;gBAC5C;oBACI,EAAE,CAAC,WAAW,CAAC,OAAO,CAAC,MAAM,EAAE,SAAS,CAAC,OAAO,CAAC,CAAC;iBACrD;;gBAED,IAAI,SAAS,CAAC,OAAO,KAAK,OAAO,CAAC,OAAO;gBACzC;oBACI,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;iBAC/B;;gBAED,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,GAAG,OAAO,CAAC;aAC1C;SACJ;;QAED;YACI,IAAI,IAAI,CAAC,eAAe,KAAK,QAAQ;YACrC;gBACI,IAAI,CAAC,eAAe,GAAG,QAAQ,CAAC;gBAChC,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC,QAAQ,GAAG,QAAQ,CAAC,CAAC;aAC5C;;YAED,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,UAAU,EAAE,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,CAAC;YACzE,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC;SACvC;KACJ,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC9C;QACI,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC;QAClC,IAAI,CAAC,eAAe,GAAG,CAAC,CAAC,CAAC;;QAE1B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE;QAClD;YACI,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC;SAC/C;KACJ,CAAC;;;;;;IAMF,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,OAAO;IACzD;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;QAChB,IAAI,aAAa,GAAG,GAAG,CAAC,aAAa,CAAC;;QAEtC,IAAI,IAAI,CAAC,qBAAqB;QAC9B;YACI,IAAI,CAAC,qBAAqB,GAAG,KAAK,CAAC;;;YAGnC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE;YAC7C;gBACI,IAAI,aAAa,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,cAAc;gBAC5C;oBACI,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;iBACtB;aACJ;SACJ;;QAED,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE;QACnD;YACI,IAAI,aAAa,CAAC,GAAG,CAAC,KAAK,OAAO;YAClC;gBACI,IAAI,IAAI,CAAC,eAAe,KAAK,GAAG;gBAChC;oBACI,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC,QAAQ,GAAG,GAAG,CAAC,CAAC;oBACpC,IAAI,CAAC,eAAe,GAAG,GAAG,CAAC;iBAC9B;;gBAED,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,UAAU,EAAE,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC;gBAC1E,aAAa,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;aAC7B;SACJ;KACJ,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,OAAO;IACnE;QACI,IAAI,SAAS,GAAG,IAAI,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,aAAa,EAAE,CAAC,CAAC;;;QAGvD,SAAS,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC;;QAEvB,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC;;QAElD,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACnC,OAAO,CAAC,EAAE,CAAC,SAAS,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC;;QAEjD,OAAO,SAAS,CAAC;KACpB,CAAC;;IAEF,aAAa,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,OAAO,EAAE,SAAS;IACtF;QACI,SAAS,CAAC,cAAc,GAAG,OAAO,CAAC,MAAM,CAAC;QAC1C,SAAS,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;QAC9B,IAAI,IAAI,CAAC,YAAY,KAAK,CAAC;QAC3B;YACI,OAAO;SACV;QACD,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;;QAE1B,IAAI,OAAO,CAAC,IAAI,KAAK,EAAE,CAAC,KAAK;eACtB,OAAO,CAAC,MAAM,KAAK,EAAE,CAAC,IAAI;QACjC;YACI,SAAS,CAAC,cAAc,GAAG,EAAE,CAAC,OAAO,CAAC;SACzC;;;QAGD,IAAI,OAAO,CAAC,IAAI,KAAK,KAAK,CAAC,UAAU;QACrC;YACI,SAAS,CAAC,IAAI,GAAG,EAAE,CAAC,UAAU,CAAC;SAClC;QACD,IAAI,SAAS,CAAC,IAAI,KAAK,EAAE,CAAC,UAAU;eAC7B,OAAO,CAAC,MAAM,KAAK,EAAE,CAAC,IAAI;QACjC;YACI,SAAS,CAAC,cAAc,GAAG,EAAE,CAAC,OAAO,CAAC;SACzC;KACJ,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,OAAO;IACvE;QACI,IAAI,SAAS,GAAG,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;QAEtD,IAAI,CAAC,SAAS;QACd;YACI,OAAO;SACV;;QAED,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;;QAE7B,IAAI,CAAC,eAAe,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;;QAEzC,IAAI,OAAO,CAAC,QAAQ,IAAI,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC,QAAQ,EAAE,OAAO,EAAE,SAAS,CAAC;QAC7E,CAAC;;QAED;;YAEI,IAAI,KAAK,GAAG,OAAO,CAAC,SAAS,CAAC;YAC9B,IAAI,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC;YAChC,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;;YAErB,IAAI,SAAS,CAAC,KAAK,KAAK,KAAK;mBACtB,SAAS,CAAC,MAAM,KAAK,MAAM;mBAC3B,SAAS,CAAC,OAAO,GAAG,CAAC;YAC5B;gBACI,SAAS,CAAC,KAAK,GAAG,KAAK,CAAC;gBACxB,SAAS,CAAC,MAAM,GAAG,MAAM,CAAC;;gBAE1B,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC;oBAC3B,SAAS,CAAC,cAAc;oBACxB,KAAK;oBACL,MAAM;oBACN,CAAC;oBACD,OAAO,CAAC,MAAM;oBACd,SAAS,CAAC,IAAI;oBACd,IAAI,CAAC,CAAC;aACb;SACJ;;;QAGD,IAAI,OAAO,CAAC,YAAY,KAAK,SAAS,CAAC,YAAY;QACnD;YACI,IAAI,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;SACpC;QACD,SAAS,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;KACvC,CAAC;;;;;;;;;IASF,aAAa,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,OAAO,EAAE,UAAU;IACrF;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,OAAO,GAAG,OAAO,CAAC,WAAW,IAAI,OAAO,CAAC;;QAEzC,IAAI,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC;QACzC;YACI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;;YAErB,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,OAAO,CAAC,CAAC;YAChE,OAAO,CAAC,GAAG,CAAC,SAAS,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC;;YAElD,OAAO,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;YAE7C,IAAI,CAAC,UAAU;YACf;gBACI,IAAI,CAAC,GAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;;gBAE9C,IAAI,CAAC,KAAK,CAAC,CAAC;gBACZ;oBACI,WAAW,CAAC,IAAI,CAAC,eAAe,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;iBAC3C;aACJ;SACJ;KACJ,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,OAAO;IACjF;QACI,IAAI,SAAS,GAAG,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;QAEtD,IAAI,CAAC,SAAS;QACd;YACI,OAAO;SACV;;QAED,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,YAAY,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,YAAY;QAC9F;YACI,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;YACrB,SAAS,CAAC,QAAQ,GAAG,UAAU,CAAC,KAAK,CAAC;SACzC;;QAED;YACI,SAAS,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM,IAAI,CAAC,CAAC;YACvC,SAAS,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;SACzC;;QAED,IAAI,OAAO,CAAC,QAAQ,IAAI,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,EAAE,SAAS,CAAC;QACjF,CAAC;;QAED;YACI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;SACrC;;QAED,SAAS,CAAC,YAAY,GAAG,OAAO,CAAC,YAAY,CAAC;KACjD,CAAC;;;;;;;;;IASF,aAAa,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,OAAO,EAAE,SAAS;IACxE;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;;QAEjB,IAAI,SAAS,CAAC,MAAM;QACpB;YACI,EAAE,CAAC,cAAc,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;SACrC;;QAED,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,cAAc,EAAE,SAAS,CAAC,QAAQ,CAAC,CAAC;QACxE,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,cAAc,EAAE,SAAS,CAAC,QAAQ,CAAC,CAAC;;QAExE,IAAI,SAAS,CAAC,MAAM;QACpB;;YAEI,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,kBAAkB,EAAE,OAAO,CAAC,SAAS,GAAG,EAAE,CAAC,oBAAoB,GAAG,EAAE,CAAC,sBAAsB,CAAC,CAAC;;;YAGjI,IAAI,cAAc,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,oBAAoB,CAAC;;YAE3E,IAAI,cAAc,IAAI,OAAO,CAAC,gBAAgB,GAAG,CAAC,IAAI,OAAO,CAAC,SAAS,KAAK,WAAW,CAAC,MAAM;YAC9F;gBACI,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,gBAAgB,EAAE,EAAE,CAAC,YAAY,CAAC,cAAc,CAAC,8BAA8B,CAAC,CAAC,CAAC;;gBAE/G,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,MAAM,EAAE,cAAc,CAAC,0BAA0B,EAAE,KAAK,CAAC,CAAC;aACtF;SACJ;;QAED;YACI,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,kBAAkB,EAAE,OAAO,CAAC,SAAS,GAAG,EAAE,CAAC,MAAM,GAAG,EAAE,CAAC,OAAO,CAAC,CAAC;SACvG;;QAED,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,kBAAkB,EAAE,OAAO,CAAC,SAAS,GAAG,EAAE,CAAC,MAAM,GAAG,EAAE,CAAC,OAAO,CAAC,CAAC;KACvG,CAAC;;IAEF,OAAO,aAAa,CAAC;CACxB,CAAC,MAAM,CAAC,CAAC,CAAC;AACX,AAqBA;AACA,IAAI,UAAU,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;;;AAW9B,IAAI,gBAAgB,iBAAiB,UAAU,YAAY,EAAE;IACzD,SAAS,gBAAgB,CAAC,MAAM,EAAE,OAAO;IACzC;QACI,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;QAGxB,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,CAAC,cAAc,EAAE,OAAO,CAAC,CAAC;;;QAG9D,IAAI,OAAO,CAAC,WAAW;QACvB;YACI,QAAQ,CAAC,YAAY,GAAG,OAAO,CAAC,WAAW,CAAC;YAC5C,WAAW,CAAC,OAAO,EAAE,kFAAkF,EAAE,CAAC,CAAC,CAAC;SAC/G;;;;;;;;QAQD,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;;;;;;;;QASvB,IAAI,CAAC,IAAI,GAAG,aAAa,CAAC,OAAO,CAAC;;;;;;;;;QASlC,IAAI,CAAC,MAAM,GAAG,IAAI,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;QAOjE,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,IAAI,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;;;;;;;QAQ7D,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,CAAC;;;;;;;QAO5D,IAAI,CAAC,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC;;;;;;;QAOvC,IAAI,CAAC,WAAW,GAAG,OAAO,CAAC,WAAW,IAAI,OAAO,CAAC,UAAU,IAAI,KAAK,CAAC;;;;;;;;;QAStE,IAAI,CAAC,qBAAqB,GAAG,OAAO,CAAC,qBAAqB,CAAC;;;;;;;;;;;;QAY3D,IAAI,CAAC,iBAAiB,GAAG,OAAO,CAAC,iBAAiB,CAAC;;;;;;;;QAQnD,IAAI,CAAC,gBAAgB,GAAG,QAAQ,CAAC;;;;;;;;QAQjC,IAAI,CAAC,oBAAoB,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;;;;;;;QAQzC,IAAI,CAAC,sBAAsB,GAAG,SAAS,CAAC;;QAExC,IAAI,CAAC,eAAe,GAAG,OAAO,CAAC,eAAe,IAAI,IAAI,CAAC,gBAAgB,CAAC;;;;;;;;QAQxE,IAAI,CAAC,wBAAwB,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;;QAQhD,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC,wBAAwB,CAAC;;;;;;;QAOzD,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;KACrB;;IAED,KAAK,YAAY,GAAG,gBAAgB,CAAC,SAAS,GAAG,YAAY,CAAC;IAC9D,gBAAgB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,YAAY,IAAI,YAAY,CAAC,SAAS,EAAE,CAAC;IACrF,gBAAgB,CAAC,SAAS,CAAC,WAAW,GAAG,gBAAgB,CAAC;;IAE1D,IAAI,kBAAkB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,eAAe,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;IAQlI,gBAAgB,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,SAAS;IACxE;QACI,KAAK,IAAI,CAAC,IAAI,SAAS;QACvB;YACI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;SAC9C;KACJ,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC;KAC1B,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC;KAC3B,CAAC;;;;;;;;;IASF,gBAAgB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,WAAW,EAAE,YAAY;IAC9E;QACI,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,WAAW,CAAC;QAChC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,YAAY,CAAC;;QAElC,IAAI,CAAC,IAAI,CAAC,KAAK,GAAG,WAAW,GAAG,IAAI,CAAC,UAAU,CAAC;QAChD,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,YAAY,GAAG,IAAI,CAAC,UAAU,CAAC;;QAElD,IAAI,IAAI,CAAC,WAAW;QACpB;YACI,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,WAAW,GAAG,IAAI,CAAC;YAC3C,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,YAAY,GAAG,IAAI,CAAC;SAChD;KACJ,CAAC;;;;;;;;;;;;;IAaF,gBAAgB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,aAAa,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM;IACnH;QACI,MAAM,GAAG,MAAM,IAAI,aAAa,CAAC,cAAc,EAAE,CAAC;;;QAGlD,IAAI,MAAM,CAAC,KAAK,KAAK,CAAC,EAAE,EAAE,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;QAC7C,IAAI,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,EAAE,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE;;QAE/C,IAAI,aAAa,GAAG,aAAa,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,GAAG,CAAC,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC;;QAErG,UAAU,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC;QAC1B,UAAU,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC;;QAE1B,IAAI,CAAC,MAAM,CAAC,aAAa,EAAE,aAAa,EAAE,KAAK,EAAE,UAAU,EAAE,CAAC,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;;QAErF,OAAO,aAAa,CAAC;KACxB,CAAC;;;;;;;IAOF,gBAAgB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,UAAU;IACjE;QACI,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,OAAO;QAC1B;YACI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;YAC1B,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;SAC1B;;QAED,IAAI,UAAU,IAAI,IAAI,CAAC,IAAI,CAAC,UAAU;QACtC;YACI,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SAC/C;;QAED,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;QAEpB,IAAI,CAAC,IAAI,GAAG,aAAa,CAAC,OAAO,CAAC;;QAElC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;QAEjB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;QAEnB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;QAEpB,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;;QAEzB,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;;QAEzB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;QAEvB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;QAEpB,IAAI,CAAC,qBAAqB,GAAG,KAAK,CAAC;QACnC,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;;QAE/B,IAAI,CAAC,gBAAgB,GAAG,CAAC,CAAC;QAC1B,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC;QACjC,IAAI,CAAC,sBAAsB,GAAG,IAAI,CAAC;;QAEnC,IAAI,CAAC,wBAAwB,GAAG,IAAI,CAAC;QACrC,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC;KACnC,CAAC;;;;;;;IAOF,kBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG;IACzC;QACI,OAAO,IAAI,CAAC,gBAAgB,CAAC;KAChC,CAAC;;IAEF,kBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG,UAAU,KAAK;IACxD;QACI,IAAI,CAAC,gBAAgB,GAAG,KAAK,CAAC;QAC9B,IAAI,CAAC,sBAAsB,GAAG,UAAU,CAAC,KAAK,CAAC,CAAC;QAChD,OAAO,CAAC,KAAK,EAAE,IAAI,CAAC,oBAAoB,CAAC,CAAC;KAC7C,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,gBAAgB,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAE1E,OAAO,gBAAgB,CAAC;CAC3B,CAACN,aAAY,CAAC,CAAC,CAAC;;;;;;;;;;;;;;AAcjB,IAAI,QAAQ,iBAAiB,UAAU,gBAAgB,EAAE;IACrD,SAAS,QAAQ,CAAC,OAAO;IACzB;QACI,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,EAAE,CAAC;;QAEvC,gBAAgB,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;;;QAG9C,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;;;;;;;;QAQvB,IAAI,CAAC,IAAI,GAAG,aAAa,CAAC,KAAK,CAAC;;;;;;;;QAQhC,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;;QAEf,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;QAoBrB,IAAI,CAAC,OAAO,GAAG;YACX,OAAO,EAAE,IAAI,MAAM,CAAC,SAAS,CAAC;YAC9B,aAAa,EAAE,IAAI,MAAM,CAAC,eAAe,EAAE,CAAC,CAAC;YAC7C,KAAK,EAAE,IAAI,MAAM,CAAC,OAAO,CAAC;YAC1B,MAAM,EAAE,IAAI,MAAM,CAAC,QAAQ,CAAC;YAC5B,UAAU,EAAE,IAAI,MAAM,CAAC,YAAY,CAAC;YACpC,SAAS,EAAE,IAAI,MAAM,CAAC,WAAW,CAAC;YAClC,MAAM,EAAE,IAAI,MAAM,CAAC,QAAQ,EAAE,CAAC,CAAC;SAClC,CAAC;;;;;;QAMF,IAAI,CAAC,cAAc,GAAG,IAAI,YAAY,CAAC;YACnC,gBAAgB,EAAE,IAAI,MAAM,EAAE;SACjC,EAAE,IAAI,CAAC,CAAC;;;;;;;;QAQT,IAAI,CAAC,SAAS,CAAC,UAAU,EAAE,MAAM,CAAC;;;;;;;aAO7B,SAAS,CAAC,aAAa,EAAE,SAAS,CAAC;;;;;;;aAOnC,SAAS,CAAC,WAAW,EAAE,OAAO,CAAC;;;;;;;aAO/B,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC;;;;;;;aAOjC,SAAS,CAAC,aAAa,EAAE,SAAS,CAAC;;;;;;;aAOnC,SAAS,CAAC,cAAc,EAAE,UAAU,CAAC;;;;;;;aAOrC,SAAS,CAAC,iBAAiB,EAAE,aAAa,CAAC;;;;;;;aAO3C,SAAS,CAAC,aAAa,EAAE,SAAS,CAAC;;;;;;;aAOnC,SAAS,CAAC,gBAAgB,EAAE,YAAY,CAAC;;;;;;;aAOzC,SAAS,CAAC,eAAe,EAAE,WAAW,CAAC;;;;;;;aAOvC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC;;;;;;;aAOjC,SAAS,CAAC,mBAAmB,EAAE,eAAe,CAAC;;;;;;;;aAQ/C,SAAS,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;;QAErC,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;;;;;QAKrC,IAAI,OAAO,CAAC,OAAO;QACnB;YACI,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;SACjD;;QAED;YACI,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC;gBACzB,KAAK,EAAE,IAAI,CAAC,WAAW;gBACvB,SAAS,EAAE,OAAO,CAAC,SAAS;gBAC5B,kBAAkB,EAAE,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC,WAAW,KAAK,eAAe;gBAC5E,OAAO,EAAE,IAAI;gBACb,qBAAqB,EAAE,OAAO,CAAC,qBAAqB;gBACpD,eAAe,EAAE,IAAI,CAAC,OAAO,CAAC,eAAe;aAChD,CAAC,CAAC;SACN;;;;;;;;QAQD,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;;QAE9B,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,KAAK,CAAC,GAAG,SAAS,GAAG,SAAS,CAAC,CAAC;;QAElE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;KACxD;;IAED,KAAK,gBAAgB,GAAG,QAAQ,CAAC,SAAS,GAAG,gBAAgB,CAAC;IAC9D,QAAQ,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,gBAAgB,IAAI,gBAAgB,CAAC,SAAS,EAAE,CAAC;IACrF,QAAQ,CAAC,SAAS,CAAC,WAAW,GAAG,QAAQ,CAAC;;;;;;;;;;;IAW1C,QAAQ,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,OAAO;IAC1C;QACI,IAAI,gBAAgB,EAAE;QACtB;YACI,OAAO,IAAI,QAAQ,CAAC,OAAO,CAAC,CAAC;SAChC;;QAED,MAAM,IAAI,KAAK,CAAC,wFAAwF,CAAC,CAAC;KAC7G,CAAC;;IAEF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,QAAQ,EAAE,IAAI;IACjE;QACI,IAAI,CAAC,IAAI;QACT;YACI,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;SACxB;;QAED,IAAI,MAAM,GAAG,IAAI,QAAQ,CAAC,IAAI,CAAC,CAAC;;QAEhC,IAAI,IAAI,CAAC,IAAI,CAAC;QACd;YACI,MAAM,IAAI,KAAK,EAAE,qBAAqB,GAAG,IAAI,GAAG,sBAAsB,EAAE,CAAC;SAC5E;;QAED,IAAI,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC;;QAEpB,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,OAAO;QAC1B;YACI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;SAC/B;;;;;;;;;;;;;;;;;;;;;QAqBD,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;IAWF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,aAAa,EAAE,aAAa,EAAE,KAAK,EAAE,SAAS,EAAE,mBAAmB;IAChH;;QAEI,IAAI,CAAC,iBAAiB,GAAG,CAAC,aAAa,CAAC;;QAExC,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,EAAE,CAAC;QAC7B,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;;QAGvB,IAAI,CAAC,UAAU,CAAC,SAAS,GAAG,SAAS,CAAC;;;QAGtC,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM;QACvB;YACI,OAAO;SACV;;QAED,IAAI,CAAC,aAAa;QAClB;YACI,IAAI,CAAC,mBAAmB,GAAG,aAAa,CAAC;SAC5C;;QAED,IAAI,CAAC,mBAAmB;QACxB;;YAEI,IAAI,WAAW,GAAG,aAAa,CAAC,MAAM,CAAC;;YAEvC,aAAa,CAAC,MAAM,GAAG,IAAI,CAAC,wBAAwB,CAAC;YACrD,aAAa,CAAC,eAAe,EAAE,CAAC;YAChC,aAAa,CAAC,MAAM,GAAG,WAAW,CAAC;;SAEtC;;QAED,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;QACvC,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,KAAK,EAAE,CAAC;;QAEnC,IAAI,KAAK,KAAK,SAAS,GAAG,KAAK,GAAG,IAAI,CAAC,iBAAiB;QACxD;YACI,IAAI,CAAC,aAAa,CAAC,KAAK,EAAE,CAAC;SAC9B;;QAED,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;;QAG3B,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,KAAK,EAAE,CAAC;;QAEnC,IAAI,aAAa;QACjB;YACI,aAAa,CAAC,WAAW,CAAC,MAAM,EAAE,CAAC;SACtC;;QAED,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC;;;QAG9B,IAAI,CAAC,UAAU,CAAC,SAAS,GAAG,IAAI,CAAC;;QAEjC,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;KAC3B,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,WAAW,EAAE,YAAY;IACtE;QACI,gBAAgB,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,WAAW,EAAE,YAAY,CAAC,CAAC;;QAExE,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,CAAC;KACtD,CAAC;;;;;;;IAOF,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACzC;QACI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC;;QAEzB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;IAKF,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACzC;QACI,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC;QACxB,IAAI,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC;KAC5B,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,UAAU;IACzD;QACI,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC;;QAE3B,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,OAAO;QAC1B;YACI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;SAC7B;;;QAGD,gBAAgB,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;;;QAG1D,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;KAClB,CAAC;;;;;;;;;;;;;;;;;;;;;;IAsBF,QAAQ,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,UAAU,EAAE,IAAI;IACnE;QACI,QAAQ,CAAC,SAAS,GAAG,QAAQ,CAAC,SAAS,IAAI,EAAE,CAAC;QAC9C,QAAQ,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;KACzC,CAAC;;IAEF,OAAO,QAAQ,CAAC;CACnB,CAAC,gBAAgB,CAAC,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiCrB,SAAS,kBAAkB,CAAC,OAAO;AACnC;IACI,OAAO,QAAQ,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;CACnC;AACD,AAEA;AACA,IAAI,aAAa,GAAG,8jBAA8jB,CAAC;AACnlB,AAwBA;;;;;;;;AAQA,IAAI,aAAa,GAAG,SAAS,aAAa;AAC1C;IACI,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;IACnB,IAAI,CAAC,GAAG,GAAG,EAAE,CAAC;IACd,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;IACf,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;IACtB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;IACf,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;IACd,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;CACjB,CAAC;;;;;;;;;AASF,IAAI,cAAc,GAAG,SAAS,cAAc,CAAC,IAAI;AACjD;;;;;;;IAOI,IAAI,CAAC,aAAa,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,CAAC;;;;;;;IAO3C,IAAI,CAAC,UAAU,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;;;;;;;IAOtD,IAAI,CAAC,WAAW,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;CAC3D,CAAC;;AAEF,IAAIO,sBAAoB,GAAG,EAAE,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;AAOzMA,sBAAoB,CAAC,QAAQ,CAAC,GAAG,GAAG;AACpC;IACI,IAAI,CAAC,IAAI,CAAC,SAAS;IACnB;QACI,IAAI,CAAC,SAAS,GAAG,IAAI,SAAS,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KACtD;;IAED,OAAO,IAAI,CAAC,SAAS,CAAC;CACzB,CAAC;;;;;;;AAOFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG;AACrC;IACI,IAAI,CAAC,IAAI,CAAC,UAAU;IACpB;QACI,IAAI,CAAC,UAAU,GAAG,IAAI,UAAU,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KACxD;;IAED,OAAO,IAAI,CAAC,UAAU,CAAC;CAC1B,CAAC;;;;;;;AAOFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG;AACrC;IACI,IAAI,CAAC,IAAI,CAAC,UAAU;IACpB;QACI,IAAI,CAAC,UAAU,GAAG,IAAI,UAAU,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KACxD;;IAED,OAAO,IAAI,CAAC,UAAU,CAAC;CAC1B,CAAC;;;;;;;AAOFA,sBAAoB,CAAC,UAAU,CAAC,GAAG,GAAG;AACtC;IACI,IAAI,CAAC,IAAI,CAAC,WAAW;IACrB;QACI,IAAI,CAAC,WAAW,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KAC1D;;IAED,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;;;;;;;AAOFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG;AACrC;IACI,IAAI,CAAC,IAAI,CAAC,UAAU;IACpB;QACI,IAAI,CAAC,UAAU,GAAG,IAAI,UAAU,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KACxD;;IAED,OAAO,IAAI,CAAC,UAAU,CAAC;CAC1B,CAAC;;;;;;;;;AASF,cAAc,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,IAAI;AACnD;IACI,OAAO,IAAI,EAAE,IAAI,GAAG,MAAM,EAAE,CAAC;CAChC,CAAC;;;;;;AAMF,cAAc,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AACnD;IACI,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;IACxB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;CAC3B,CAAC;;AAEF,cAAc,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,IAAI;AAC7C;IACI,QAAQ,IAAI;;QAER,KAAK,MAAM,CAAC;QACZ,KAAK,OAAO;YACR,OAAO,CAAC,CAAC;QACb,KAAK,OAAO,CAAC;QACb,KAAK,QAAQ;YACT,OAAO,CAAC,CAAC;QACb,KAAK,OAAO,CAAC;QACb,KAAK,QAAQ,CAAC;QACd,KAAK,SAAS;YACV,OAAO,CAAC,CAAC;QACb;YACI,MAAM,IAAI,KAAK,EAAE,IAAI,GAAG,0BAA0B,EAAE,CAAC;KAC5D;CACJ,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,cAAc,CAAC,SAAS,EAAEA,sBAAoB,EAAE,CAAC;;;;;;;;;;;;;;;AAe1E,IAAI,qBAAqB,iBAAiB,UAAU,cAAc,EAAE;IAChE,SAAS,qBAAqB,CAAC,QAAQ;IACvC;QACI,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;;;;;;;;;;QAgBpC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;;;;;;;;;;QAU5B,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;;;;;;;;;;;;;;;;QAgB1B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;;;;;;;QAQvB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,EAAE,CAAC;;;;;;;;;QAS3B,IAAI,CAAC,IAAI,GAAG,IAAI,GAAG,CAAC,CAAC;;;;;;;;;QASrB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;;;;;;;;;QAStB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;;;;;;;;QAQrB,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;;;;;;;;;QAS5B,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;;;;;;;;;;;QAWrB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;;;;;;;;;QAepB,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;;;;;;;;;;QAU5B,IAAI,CAAC,uBAAuB,GAAG,CAAC,CAAC;;;;;;;;;;;;;;;QAejC,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;;;;;;;;;;;QAWlB,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;;QAErB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,IAAI,GAAG,CAAC,EAAE,CAAC,EAAE;QACtC;YACI,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,aAAa,EAAE,CAAC;SAC5C;;;;;;;;;;;;;;;QAeD,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;;;;;;;;;;;;;;;QAepB,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;;;;;;;;;;;QAWpB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;;QAEtB,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,WAAW,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;QACtD,QAAQ,CAAC,OAAO,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;KAC5C;;IAED,KAAK,cAAc,GAAG,qBAAqB,CAAC,SAAS,GAAG,cAAc,CAAC;IACvE,qBAAqB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,cAAc,IAAI,cAAc,CAAC,SAAS,EAAE,CAAC;IAC9F,qBAAqB,CAAC,SAAS,CAAC,WAAW,GAAG,qBAAqB,CAAC;;;;;;;;IAQpE,qBAAqB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IACtE;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;;QAE1B,IAAI,QAAQ,CAAC,UAAU,KAAK,GAAG,CAAC,YAAY;QAC5C;YACI,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;SACzB;;QAED;;YAEI,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,GAAG;gBACxB,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC,uBAAuB,CAAC;gBAC3C,QAAQ,CAAC,mBAAmB,CAAC,CAAC;;;YAGlC,IAAI,CAAC,YAAY,GAAG,4BAA4B;gBAC5C,IAAI,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC;SAC9B;;QAED,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,eAAe,CAAC,cAAc,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;;;;QAItE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,uBAAuB,EAAE,CAAC,EAAE;QACrD;;YAEI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,CAAC,aAAa,GAAG,CAAC;SAC1D;KACJ,CAAC;;;;;;;;IAQF,qBAAqB,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;IAClE;QACI,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;KACrB,CAAC;;;;;;;;;IASF,qBAAqB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,OAAO;IACjE;QACI,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK;QAC3B;YACI,OAAO;SACV;;QAED,IAAI,IAAI,CAAC,YAAY,IAAI,OAAO,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI;QACnE;YACI,IAAI,CAAC,KAAK,EAAE,CAAC;SAChB;;QAED,IAAI,CAAC,YAAY,IAAI,OAAO,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,CAAC;QACnD,IAAI,CAAC,WAAW,IAAI,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC;QAC3C,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC,GAAG,OAAO,CAAC;KACxD,CAAC;;;;;IAKF,qBAAqB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACtD;QACI,IAAI,IAAI,CAAC,YAAY,KAAK,CAAC;QAC3B;YACI,OAAO;SACV;;QAED,IAAI,eAAe,GAAG,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QACjE,IAAI,WAAW,GAAG,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QACxD,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;;QAE1B,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,QAAQ,GAAG,GAAG,CAAC,iBAAiB,CAAC;QACrC,IAAI,SAAS,GAAG,GAAG,CAAC,UAAU,CAAC;QAC/B,IAAI,YAAY,GAAG,GAAG,CAAC,YAAY,CAAC;QACpC,IAAI,gBAAgB,GAAG,GAAG,CAAC,iBAAiB,CAAC;QAC7C,IAAI,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC;;QAEhC,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,KAAK,CAAC;;QAE1C,IAAI,KAAK,GAAG,CAAC,CAAC;QACd,IAAI,WAAW,GAAG,CAAC,CAAC;;QAEpB,IAAI,WAAW,CAAC;QAChB,IAAI,cAAc,CAAC;QACnB,IAAI,YAAY,GAAG,CAAC,CAAC;;QAErB,IAAI,YAAY,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;QAChC,IAAI,UAAU,GAAG,CAAC,CAAC;;QAEnB,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;;QAEnB,YAAY,CAAC,YAAY,GAAG,CAAC,CAAC;QAC9B,YAAY,CAAC,KAAK,GAAG,CAAC,CAAC;QACvB,YAAY,CAAC,KAAK,GAAG,SAAS,CAAC;;QAE/B,IAAI,IAAI,GAAG,EAAE,WAAW,CAAC,YAAY,CAAC;QACtC,IAAI,CAAC,CAAC;;QAEN,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,WAAW,EAAE,EAAE,CAAC;QACrC;YACI,IAAI,MAAM,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;;YAEzB,QAAQ,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;YACnB,WAAW,GAAG,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC;;YAE1C,IAAI,eAAe,GAAG,oBAAoB;gBACtC,WAAW,CAAC,gBAAgB,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;;YAE5D,IAAI,SAAS,KAAK,eAAe;YACjC;gBACI,SAAS,GAAG,eAAe,CAAC;;;gBAG5B,cAAc,GAAG,IAAI,CAAC;gBACtB,YAAY,GAAG,YAAY,CAAC;gBAC5B,IAAI,EAAE,CAAC;aACV;;YAED,IAAI,cAAc,KAAK,WAAW;YAClC;gBACI,cAAc,GAAG,WAAW,CAAC;;gBAE7B,IAAI,WAAW,CAAC,aAAa,KAAK,IAAI;gBACtC;oBACI,IAAI,YAAY,KAAK,YAAY;oBACjC;wBACI,IAAI,EAAE,CAAC;;wBAEP,YAAY,GAAG,CAAC,CAAC;;wBAEjB,YAAY,CAAC,IAAI,GAAG,WAAW,GAAG,YAAY,CAAC,KAAK,CAAC;;wBAErD,YAAY,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC,CAAC;wBACvC,YAAY,CAAC,YAAY,GAAG,CAAC,CAAC;wBAC9B,YAAY,CAAC,KAAK,GAAG,SAAS,CAAC;wBAC/B,YAAY,CAAC,KAAK,GAAG,WAAW,CAAC;qBACpC;;oBAED,WAAW,CAAC,OAAO,GAAG,KAAK,CAAC;oBAC5B,WAAW,CAAC,aAAa,GAAG,IAAI,CAAC;oBACjC,WAAW,CAAC,GAAG,GAAG,YAAY,CAAC;;oBAE/B,YAAY,CAAC,QAAQ,CAAC,YAAY,CAAC,YAAY,EAAE,CAAC,GAAG,WAAW,CAAC;oBACjE,YAAY,EAAE,CAAC;iBAClB;aACJ;;YAED,IAAI,CAAC,uBAAuB,CAAC,MAAM,EAAE,eAAe;gBAChD,WAAW,EAAE,KAAK,EAAE,WAAW,CAAC,CAAC;;;YAGrC,KAAK,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,IAAI,UAAU,CAAC;YACrD,WAAW,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC;SACxC;;QAED,WAAW,CAAC,YAAY,GAAG,IAAI,CAAC;QAChC,YAAY,CAAC,IAAI,GAAG,WAAW,GAAG,YAAY,CAAC,KAAK,CAAC;;QAErD,IAAI,CAAC,QAAQ,CAAC,sBAAsB;QACpC;;YAEI,IAAI,IAAI,CAAC,uBAAuB,IAAI,IAAI,CAAC,QAAQ;YACjD;gBACI,IAAI,CAAC,uBAAuB,EAAE,CAAC;gBAC/B,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,KAAK,IAAI,CAAC,aAAa,GAAG,CAAC;aAChE;;YAED,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC;YACjF,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC;;YAEpE,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;YAC7D,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,aAAa,EAAE,CAAC;YACvC,IAAI,CAAC,QAAQ,EAAE,CAAC;SACnB;;QAED;;YAEI,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC;YACjF,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC;;YAEpE,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,aAAa,EAAE,CAAC;SAC1C;;QAED,IAAI,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC;QAC1C,IAAI,WAAW,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC;;;QAGtC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,EAAE,CAAC,EAAE;QAC/B;YACI,IAAI,KAAK,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;YACzB,IAAI,iBAAiB,GAAG,KAAK,CAAC,YAAY,CAAC;;YAE3C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,iBAAiB,EAAE,CAAC,EAAE;YAC1C;gBACI,aAAa,CAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;gBACzC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;aAC5B;;YAED,WAAW,CAAC,YAAY,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YACtC,EAAE,CAAC,YAAY,CAAC,KAAK,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,cAAc,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC;SAC/E;;;QAGD,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;QACrB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;QACtB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;KACxB,CAAC;;;;;IAKF,qBAAqB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACtD;QACI,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;;QAEpC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;;QAExC,IAAI,QAAQ,CAAC,sBAAsB;QACnC;;YAEI,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;SACtE;KACJ,CAAC;;;;;IAKF,qBAAqB,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;IACpD;QACI,IAAI,CAAC,KAAK,EAAE,CAAC;KAChB,CAAC;;;;;IAKF,qBAAqB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAC1D;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,uBAAuB,EAAE,CAAC,EAAE;QACrD;YACI,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;YAC7B;gBACI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;aACvC;SACJ;;QAED,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,WAAW,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;;QAEvD,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;QACtB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;QACtB,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;QAC9B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;QAEvB,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC;YACvB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;SACvB;;QAED,cAAc,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KAC/C,CAAC;;;;;;;;;;IAUF,qBAAqB,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,IAAI;IACtF;;QAEI,IAAI,SAAS,GAAG,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC;QAC9C,IAAI,gBAAgB,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC;QACvC,IAAI,WAAW,GAAG,SAAS,GAAG,CAAC,CAAC;;QAEhC,IAAI,IAAI,CAAC,SAAS,CAAC,MAAM,IAAI,gBAAgB;QAC7C;YACI,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,gBAAgB,GAAG,CAAC,CAAC;SAChD;;QAED,IAAI,MAAM,GAAG,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC;;QAEzC,IAAI,CAAC,MAAM;QACX;YACI,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,GAAG,MAAM,GAAG,IAAI,cAAc,CAAC,WAAW,GAAG,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;SAChG;;QAED,OAAO,MAAM,CAAC;KACjB,CAAC;;;;;;;;;;;IAWF,qBAAqB,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,IAAI;IAC9E;;QAEI,IAAI,SAAS,GAAG,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,CAAC;QAC/C,IAAI,gBAAgB,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC;QACvC,IAAI,WAAW,GAAG,SAAS,GAAG,EAAE,CAAC;;QAEjC,IAAI,IAAI,CAAC,SAAS,CAAC,MAAM,IAAI,gBAAgB;QAC7C;YACI,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,gBAAgB,GAAG,CAAC,CAAC;SAChD;;QAED,IAAI,MAAM,GAAG,IAAI,CAAC,SAAS,CAAC,gBAAgB,CAAC,CAAC;;QAE9C,IAAI,CAAC,MAAM;QACX;YACI,IAAI,CAAC,SAAS,CAAC,gBAAgB,CAAC,GAAG,MAAM,GAAG,IAAI,WAAW,CAAC,WAAW,CAAC,CAAC;SAC5E;;QAED,OAAO,MAAM,CAAC;KACjB,CAAC;;;;;;;;;;;;;;;;IAgBF,qBAAqB,CAAC,SAAS,CAAC,uBAAuB,GAAG,SAAS,uBAAuB,EAAE,OAAO,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM;IACjJ;QACI,IAAI,UAAU,GAAG,eAAe,CAAC,UAAU,CAAC;QAC5C,IAAI,WAAW,GAAG,eAAe,CAAC,WAAW,CAAC;;QAE9C,IAAI,cAAc,GAAG,MAAM,GAAG,IAAI,CAAC,UAAU,CAAC;QAC9C,IAAI,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC;QACtB,IAAI,QAAQ,GAAG,OAAO,CAAC,OAAO,CAAC;QAC/B,IAAI,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC;QACpC,IAAI,SAAS,GAAG,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,GAAG,CAAC;;QAEjD,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC;QAC9C,IAAI,IAAI,GAAG,CAAC,KAAK,GAAG,GAAG;aAClB,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,gBAAgB;cAC5C,eAAe,CAAC,OAAO,CAAC,QAAQ,EAAE,KAAK,CAAC;cACxC,OAAO,CAAC,QAAQ,IAAI,KAAK,GAAG,GAAG,IAAI,EAAE,CAAC,CAAC;;;QAG7C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC;QAC7C;YACI,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;YACtC,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YAC1C,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;YAC/B,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YACnC,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,CAAC;YAC5B,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,SAAS,CAAC;SACrC;;QAED,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAC,MAAM,EAAE,GAAG,EAAE;QAC9C;YACI,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,cAAc,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC;SAC1D;KACJ,CAAC;;IAEF,OAAO,qBAAqB,CAAC;CAChC,CAAC,cAAc,CAAC,CAAC,CAAC;;;;;;;;AAQnB,IAAI,oBAAoB,GAAG,SAAS,oBAAoB,CAAC,SAAS,EAAE,YAAY;AAChF;;;;;;IAMI,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;;;;;;;IAO3B,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;;IAEjC,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;IACvB,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;;IAE5B,IAAI,YAAY,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,CAAC;IACvC;QACI,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;KAChE;;IAED,IAAI,YAAY,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC;IACzC;QACI,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;KAClE;CACJ,CAAC;;AAEF,oBAAoB,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,WAAW;AACpF;IACI,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,WAAW,CAAC;IACnC;QACI,IAAI,YAAY,GAAG,IAAI,UAAU,CAAC,WAAW,CAAC,CAAC;;QAE/C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,CAAC,EAAE;QACpC;YACI,YAAY,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;SACvB;;QAED,IAAI,CAAC,iBAAiB,CAAC,WAAW,CAAC,GAAG,YAAY,CAAC,IAAI,CAAC,EAAE,SAAS,EAAE,YAAY,EAAE,EAAE,IAAI,CAAC,CAAC;;QAE3F,IAAI,WAAW,GAAG,IAAI,CAAC,YAAY,CAAC;;QAEpC,WAAW,GAAG,WAAW,CAAC,OAAO,CAAC,WAAW,GAAG,EAAE,GAAG,WAAW,EAAE,CAAC;QACnE,WAAW,GAAG,WAAW,CAAC,OAAO,CAAC,aAAa,EAAE,IAAI,CAAC,iBAAiB,CAAC,WAAW,CAAC,CAAC,CAAC;;QAEtF,IAAI,CAAC,YAAY,CAAC,WAAW,CAAC,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC,SAAS,EAAE,WAAW,CAAC,CAAC;KAC7E;;IAED,IAAI,QAAQ,GAAG;QACX,IAAI,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QACpC,iBAAiB,EAAE,IAAI,MAAM,EAAE;QAC/B,OAAO,EAAE,IAAI,CAAC,iBAAiB,CAAC,WAAW,CAAC;KAC/C,CAAC;;IAEF,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,WAAW,CAAC,EAAE,QAAQ,CAAC,CAAC;CAC/D,CAAC;;AAEF,oBAAoB,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,WAAW;AAC1F;IACI,IAAI,GAAG,GAAG,EAAE,CAAC;;IAEb,GAAG,IAAI,IAAI,CAAC;IACZ,GAAG,IAAI,IAAI,CAAC;;IAEZ,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,CAAC,EAAE;IACpC;QACI,IAAI,CAAC,GAAG,CAAC;QACT;YACI,GAAG,IAAI,SAAS,CAAC;SACpB;;QAED,IAAI,CAAC,GAAG,WAAW,GAAG,CAAC;QACvB;YACI,GAAG,IAAI,kBAAkB,GAAG,CAAC,GAAG,KAAK,CAAC;SACzC;;QAED,GAAG,IAAI,KAAK,CAAC;QACb,GAAG,IAAI,kCAAkC,GAAG,CAAC,GAAG,oBAAoB,CAAC;QACrE,GAAG,IAAI,KAAK,CAAC;KAChB;;IAED,GAAG,IAAI,IAAI,CAAC;IACZ,GAAG,IAAI,IAAI,CAAC;;IAEZ,OAAO,GAAG,CAAC;CACd,CAAC;;;;;;;;AAQF,IAAI,aAAa,iBAAiB,UAAU,QAAQ,EAAE;IAClD,SAAS,aAAa,CAAC,OAAO;IAC9B;QACI,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,KAAK,CAAC;;QAE1C,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;QAQpB,IAAI,CAAC,OAAO,GAAG,IAAIL,QAAM,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,CAAC,CAAC;;;;;;;;QAQhD,IAAI,CAAC,YAAY,GAAG,IAAIA,QAAM,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC;;QAEpD,IAAI,CAAC,YAAY,CAAC,iBAAiB,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC;aACpE,YAAY,CAAC,eAAe,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC;aAClE,YAAY,CAAC,QAAQ,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC,aAAa,CAAC;aAClE,YAAY,CAAC,YAAY,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC,KAAK,CAAC;aAC9D,QAAQ,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;KACpC;;IAED,KAAK,QAAQ,GAAG,aAAa,CAAC,SAAS,GAAG,QAAQ,CAAC;IACnD,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,QAAQ,IAAI,QAAQ,CAAC,SAAS,EAAE,CAAC;IAC1E,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;IAEpD,OAAO,aAAa,CAAC;CACxB,CAAC,QAAQ,CAAC,CAAC,CAAC;;AAEb,IAAI,eAAe,GAAG,yhBAAyhB,CAAC;;AAEhjB,IAAI,iBAAiB,GAAG,kNAAkN,CAAC;;;;;;;AAO3O,IAAI,kBAAkB,GAAG,SAAS,kBAAkB,IAAI,EAAE,CAAC;;AAE3D,IAAIM,mBAAiB,GAAG,EAAE,gBAAgB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,uBAAuB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;AAErH,kBAAkB,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,OAAO;AACpD;IACI,IAAI,GAAG,GAAG,MAAM,CAAC,MAAM,CAAC;QACpB,MAAM,EAAE,eAAe;QACvB,QAAQ,EAAE,iBAAiB;QAC3B,aAAa,EAAE,aAAa;QAC5B,UAAU,EAAE,CAAC;KAChB,EAAE,OAAO,CAAC,CAAC;QACR,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;QACxB,IAAI,QAAQ,GAAG,GAAG,CAAC,QAAQ,CAAC;QAC5B,IAAI,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC;QAChC,IAAI,aAAa,GAAG,GAAG,CAAC,aAAa,CAAC;;IAE1C,qBAAqB,UAAU,qBAAqB,EAAE;YAC9C,SAAS,WAAW,CAAC,QAAQ;QACjC;YACI,qBAAqB,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;YAE3C,IAAI,CAAC,eAAe,GAAG,IAAI,oBAAoB,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;YAClE,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;YACnC,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;SAChC;;YAEG,KAAK,qBAAqB,GAAG,WAAW,CAAC,SAAS,GAAG,qBAAqB,CAAC;YAC3E,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,qBAAqB,IAAI,qBAAqB,CAAC,SAAS,EAAE,CAAC;YAClG,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,WAAW,CAAC;;YAEhD,OAAO,WAAW,CAAC;SACtB,CAAC,qBAAqB,CAAC,EAAE;CACjC,CAAC;;;;;;;;;AASFA,mBAAiB,CAAC,gBAAgB,CAAC,GAAG,GAAG;AACzC;IACI,OAAO,eAAe,CAAC;CAC1B,CAAC;;;;;;;;;AASFA,mBAAiB,CAAC,uBAAuB,CAAC,GAAG,GAAG;AAChD;IACI,OAAO,iBAAiB,CAAC;CAC5B,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,EAAEA,mBAAiB,EAAE,CAAC;;;;AAIjE,IAAI,aAAa,GAAG,kBAAkB,CAAC,MAAM,EAAE,CAAC;;AChpYhD;;;;;;;AAOA,AAGA;AACA,IAAI,SAAS,GAAG,IAAI,SAAS,EAAE,CAAC;AAChC,IAAI,eAAe,GAAG,CAAC,CAAC;;;;;;;;;;AAUxB,IAAI,OAAO,GAAG,SAAS,OAAO,CAAC,QAAQ;AACvC;IACI,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;;;;;;;;IAQzB,QAAQ,CAAC,OAAO,GAAG,IAAI,CAAC;CAC3B,CAAC;;;;;;;;;;;AAWF,OAAO,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO;AACjE;IACI,IAAI,KAAK,GAAG,IAAI,KAAK,EAAE,CAAC;;IAExB,KAAK,CAAC,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC;;IAEjD,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;;;;;;AAYF,OAAO,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO;AACnE;IACI,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACzD,CAAC;;;;;;;;;AASF,OAAO,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,MAAM;AAClD;IACI,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;IAC7B,IAAI,UAAU,CAAC;IACf,IAAI,KAAK,CAAC;IACV,IAAI,KAAK,GAAG,KAAK,CAAC;IAClB,IAAI,aAAa,CAAC;IAClB,IAAI,SAAS,GAAG,KAAK,CAAC;;IAEtB,IAAI,MAAM;IACV;QACI,IAAI,MAAM,YAAY,aAAa;QACnC;YACI,aAAa,GAAG,MAAM,CAAC;SAC1B;;QAED;YACI,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;YACtD,SAAS,GAAG,IAAI,CAAC;SACpB;KACJ;;IAED,IAAI,aAAa;IACjB;QACI,UAAU,GAAG,aAAa,CAAC,WAAW,CAAC,UAAU,CAAC;QAClD,KAAK,GAAG,aAAa,CAAC,KAAK,CAAC;QAC5B,KAAK,GAAG,KAAK,CAAC;QACd,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KAC9C;;IAED;QACI,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC;;QAEtC,KAAK,GAAG,IAAI,CAAC;;QAEb,KAAK,GAAG,SAAS,CAAC;QAClB,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC;QAClC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC;;QAEpC,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACrC;;IAED,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,GAAG,UAAU,CAAC,CAAC;IACjD,IAAI,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,UAAU,CAAC,CAAC;;IAEnD,IAAI,YAAY,GAAG,IAAI,kBAAkB,CAAC,KAAK,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC;;IAE5D,IAAI,WAAW,GAAG,IAAI,UAAU,CAAC,eAAe,GAAG,KAAK,GAAG,MAAM,CAAC,CAAC;;;IAGnE,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;;IAErB,EAAE,CAAC,UAAU;QACT,KAAK,CAAC,CAAC,GAAG,UAAU;QACpB,KAAK,CAAC,CAAC,GAAG,UAAU;QACpB,KAAK;QACL,MAAM;QACN,EAAE,CAAC,IAAI;QACP,EAAE,CAAC,aAAa;QAChB,WAAW;KACd,CAAC;;;IAGF,IAAI,UAAU,GAAG,YAAY,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;;IAExE,OAAO,CAAC,eAAe,CAAC,WAAW,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;;IAEtD,YAAY,CAAC,OAAO,CAAC,YAAY,CAAC,UAAU,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;;IAGpD,IAAI,KAAK;IACT;QACI,YAAY,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;QAClC,YAAY,CAAC,OAAO,CAAC,SAAS,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;KACnE;;IAED,IAAI,SAAS;IACb;QACI,aAAa,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;KAC/B;;;IAGD,OAAO,YAAY,CAAC,MAAM,CAAC;CAC9B,CAAC;;;;;;;;;;AAUF,OAAO,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,MAAM;AAClD;IACI,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;IAC7B,IAAI,UAAU,CAAC;IACf,IAAI,KAAK,CAAC;IACV,IAAI,aAAa,CAAC;IAClB,IAAI,SAAS,GAAG,KAAK,CAAC;;IAEtB,IAAI,MAAM;IACV;QACI,IAAI,MAAM,YAAY,aAAa;QACnC;YACI,aAAa,GAAG,MAAM,CAAC;SAC1B;;QAED;YACI,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;YACtD,SAAS,GAAG,IAAI,CAAC;SACpB;KACJ;;IAED,IAAI,aAAa;IACjB;QACI,UAAU,GAAG,aAAa,CAAC,WAAW,CAAC,UAAU,CAAC;QAClD,KAAK,GAAG,aAAa,CAAC,KAAK,CAAC;;;QAG5B,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KAC9C;;IAED;QACI,UAAU,GAAG,QAAQ,CAAC,UAAU,CAAC;;QAEjC,KAAK,GAAG,SAAS,CAAC;QAClB,KAAK,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;QAC7B,KAAK,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;;QAE/B,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACrC;;IAED,IAAI,KAAK,GAAG,KAAK,CAAC,KAAK,GAAG,UAAU,CAAC;IACrC,IAAI,MAAM,GAAG,KAAK,CAAC,MAAM,GAAG,UAAU,CAAC;;IAEvC,IAAI,WAAW,GAAG,IAAI,UAAU,CAAC,eAAe,GAAG,KAAK,GAAG,MAAM,CAAC,CAAC;;;IAGnE,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;;IAErB,EAAE,CAAC,UAAU;QACT,KAAK,CAAC,CAAC,GAAG,UAAU;QACpB,KAAK,CAAC,CAAC,GAAG,UAAU;QACpB,KAAK;QACL,MAAM;QACN,EAAE,CAAC,IAAI;QACP,EAAE,CAAC,aAAa;QAChB,WAAW;KACd,CAAC;;IAEF,IAAI,SAAS;IACb;QACI,aAAa,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;KAC/B;;IAED,OAAO,CAAC,eAAe,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;;IAElD,OAAO,WAAW,CAAC;CACtB,CAAC;;;;;;AAMF,OAAO,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC5C;IACI,IAAI,CAAC,QAAQ,CAAC,OAAO,GAAG,IAAI,CAAC;IAC7B,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;CACxB,CAAC;;;;;;;;;AASF,OAAO,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,MAAM,EAAE,GAAG;AAC/D;IACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC;IACzC;QACI,IAAI,KAAK,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;;QAEvC,IAAI,KAAK,KAAK,CAAC;QACf;YACI,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,KAAK,GAAG,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC;YAChE,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,GAAG,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC;YACxE,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,GAAG,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC;SAC3E;;QAED;YACI,GAAG,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;YACnB,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YAC3B,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;SAC9B;KACJ;CACJ,CAAC;;AChRF;;;;;;;AAOA,AAIA;;;;;;;AAOA,IAAI,eAAe,GAAG,SAAS,eAAe;AAC9C;;;;;;IAMI,IAAI,CAAC,MAAM,GAAG,IAAI,KAAK,EAAE,CAAC;;;;;;;IAO1B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;;;;IAUnB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;;;;;;;IAO1B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;;;;;;IAOvB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;;;;;;IAOvB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;;;;;;;IAOhB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;;IAQjB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;IAQf,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;;;;;;;IAOhB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;IAOf,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;IAOf,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;;IAQxB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;;;;;;;IAOlB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;;;;;;IAOvB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;IAOf,IAAI,CAAC,kBAAkB,GAAG,CAAC,CAAC;CAC/B,CAAC;;AAEF,IAAIV,oBAAkB,GAAG,EAAE,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;AAQ/DA,oBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG;AACnC;IACI,OAAO,IAAI,CAAC,UAAU,CAAC;CAC1B,CAAC;;;;;;;;;;;;;;AAcF,eAAe,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,aAAa,EAAE,KAAK,EAAE,SAAS;AACvG;IACI,OAAO,aAAa,CAAC,cAAc,CAAC,YAAY,CAAC,SAAS,IAAI,IAAI,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;CACrF,CAAC;;;;;;;AAOF,eAAe,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,KAAK;AAC/D;;;;IAII,IAAI,KAAK,CAAC,SAAS;IACnB;QACI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;KACzB;IACD,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;;;IAG3B,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,OAAO,GAAG,KAAK,CAAC,KAAK,CAAC;IAC7E,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;IACzB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;IAC3B,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;IACzB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;IACzB,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC;IACrC,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC,QAAQ,CAAC;IAC/B,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC,aAAa,CAAC;IACzC,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC;IAC9B,IAAI,CAAC,kBAAkB,GAAG,KAAK,CAAC,kBAAkB,IAAI,CAAC,CAAC;CAC3D,CAAC;;;;;AAKF,eAAe,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAChD;;;IAGI,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;CAC1B,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,eAAe,CAAC,SAAS,EAAEA,oBAAkB,EAAE,CAAC;;;;;;;;AAQzE,IAAI,gBAAgB,GAAG,SAAS,gBAAgB;AAChD;;;;;;;;;IASI,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;;;;;;;IAQrB,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC;;;;;;;;;;IAU/B,IAAI,CAAC,mBAAmB,GAAG,KAAK,CAAC;;;;;;;;IAQjC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;IAOnB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;;;;;;;IAO1B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;IAOjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CACpB,CAAC;;;;;;AAMF,gBAAgB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;AACrE;IACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC;IAChC,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC,aAAa,CAAC;CAChD,CAAC;;;;;AAKF,gBAAgB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACjD;IACI,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;IACrB,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC;IAC/B,IAAI,CAAC,mBAAmB,GAAG,KAAK,CAAC;IACjC,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;CACtB,CAAC;;;;;;;;;AASF,IAAI,uBAAuB,GAAG,SAAS,uBAAuB,CAAC,SAAS;AACxE;IACI,IAAI,CAAC,UAAU,GAAG,SAAS,CAAC;IAC5B,IAAI,CAAC,MAAM,GAAG,uBAAuB,CAAC,KAAK,CAAC,IAAI,CAAC;CACpD,CAAC;;AAEF,IAAIC,sBAAoB,GAAG,EAAE,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;AAQ5N,uBAAuB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,IAAI,EAAE,EAAE;AACpE;IACI,IAAI,EAAE;IACN;QACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;KACpC;;IAED;QACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,IAAI,CAAC,IAAI,CAAC,CAAC;KACvC;CACJ,CAAC;;;;;;;;;AASFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG;AACrC;IACI,OAAO,IAAI,CAAC,UAAU,CAAC;CAC1B,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,KAAK,CAAC,GAAG,GAAG;AACjC;IACI,OAAO,IAAI,CAAC,MAAM,CAAC;CACtB,CAAC;;AAEFA,sBAAoB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;AAChD;IACI,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;CACvB,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,IAAI,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,IAAI,CAAC,MAAM,KAAK,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC;CACtD,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,IAAI,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,CAAC;CAC5D,CAAC;;AAEFA,sBAAoB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,EAAE;AAC5C;IACI,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;CAChD,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG;AACrC;IACI,OAAO,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,UAAU,MAAM,CAAC,CAAC;CAClE,CAAC;;AAEFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG,UAAU,EAAE;AACjD;IACI,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;CACtD,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,QAAQ,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,SAAS,MAAM,CAAC,CAAC;CACjE,CAAC;;AAEFA,sBAAoB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,EAAE;AAChD;IACI,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;CACrD,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,uBAAuB,CAAC,SAAS,EAAEA,sBAAoB,EAAE,CAAC;;AAEnF,uBAAuB,CAAC,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC;IAC1C,IAAI,EAAE,CAAC;IACP,IAAI,EAAE,CAAC,IAAI,CAAC;IACZ,SAAS,EAAE,CAAC,IAAI,CAAC;IACjB,UAAU,EAAE,CAAC,IAAI,CAAC;CACrB,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0CH,IAAI,iBAAiB,GAAG;;;;;;;;;;;;;;;IAepB,WAAW,EAAE,KAAK;;;;;;;;;IASlB,mBAAmB,EAAE,IAAI;;;;;;;;;;;;;IAazB,OAAO,EAAE,IAAI;;;;;;;;;;;;;IAab,IAAI,UAAU;IACd;QACI,OAAO,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC;KACpC;IACD,IAAI,UAAU,CAAC,KAAK;IACpB;QACI,IAAI,KAAK;QACT;YACI,IAAI,CAAC,MAAM,GAAG,SAAS,CAAC;SAC3B;aACI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS;QAClC;YACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;SACtB;KACJ;;;;;;;;;;;;;;;IAeD,MAAM,EAAE,IAAI;;;;;;;;;IASZ,IAAI,eAAe;IACnB;QACI,IAAI,IAAI,CAAC,gBAAgB,KAAK,SAAS,EAAE,EAAE,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC,EAAE;;QAExE,OAAO,IAAI,CAAC,gBAAgB,CAAC;KAChC;;;;;;;;IAQD,gBAAgB,EAAE,SAAS;CAC9B,CAAC;;;;AAIF,aAAa,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC;;AAEvC,IAAI,gBAAgB,GAAG,CAAC,CAAC;;;AAGzB,IAAI,YAAY,GAAG;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF,MAAM,EAAE,IAAI;KACf;CACJ,CAAC;;;;;;;;;;;;;;;AAeF,IAAI,kBAAkB,iBAAiB,UAAU,YAAY,EAAE;IAC3D,SAAS,kBAAkB,CAAC,QAAQ,EAAE,OAAO;IAC7C;QACI,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAExB,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;;;;;;QAOxB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;;;;;;;;;;;QAWzB,IAAI,CAAC,kBAAkB,GAAG,OAAO,CAAC,kBAAkB,KAAK,SAAS,GAAG,OAAO,CAAC,kBAAkB,GAAG,IAAI,CAAC;;;;;;;;QAQvG,IAAI,CAAC,oBAAoB,GAAG,OAAO,CAAC,oBAAoB,IAAI,EAAE,CAAC;;;;;;;QAO/D,IAAI,CAAC,KAAK,GAAG,IAAI,eAAe,EAAE,CAAC;QACnC,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,gBAAgB,CAAC;;;;QAIzC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC;;;;;;;;QAQ/B,IAAI,CAAC,qBAAqB,GAAG,EAAE,CAAC;QAChC,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC;;;;;;;;QAQ1D,IAAI,CAAC,mBAAmB,GAAG,EAAE,CAAC;;;;;;;QAO9B,IAAI,CAAC,SAAS,GAAG,IAAI,gBAAgB,EAAE,CAAC;;;;;;;;QAQxC,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC;;;;;;;;;;;;;QAalC,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;;;;;;;;QAQ5B,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;;;;;;;;QAQzB,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;;;;;;;;;QAS/B,IAAI,CAAC,mBAAmB,GAAG,cAAc,IAAI,MAAM,CAAC;;;;;;;;;QASpD,IAAI,CAAC,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC;;;;;;;;QAQnD,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC/C,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;QAMzD,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACvD,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC,oBAAoB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;QAMjE,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACnD,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;QAM7D,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACnD,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;QAM7D,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACjD,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;QAMnE,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;;QASnD,IAAI,CAAC,YAAY,GAAG;YAChB,OAAO,EAAE,SAAS;YAClB,OAAO,EAAE,SAAS;SACrB,CAAC;;;;;;;;QAQF,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;;;;;;;;QAQ9B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;;QAQnB,IAAI,CAAC,UAAU,GAAG,IAAI,KAAK,EAAE,CAAC;;;;;;;;QAQ9B,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;;;;;;;QAQpB,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA8YxB,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC;KACvE;;IAED,KAAK,YAAY,GAAG,kBAAkB,CAAC,SAAS,GAAG,YAAY,CAAC;IAChE,kBAAkB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,YAAY,IAAI,YAAY,CAAC,SAAS,EAAE,CAAC;IACvF,kBAAkB,CAAC,SAAS,CAAC,WAAW,GAAG,kBAAkB,CAAC;;;;;;;;;;IAU9D,kBAAkB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,WAAW,EAAE,IAAI;IAC1E;;QAEI,YAAY,CAAC,MAAM,GAAG,IAAI,CAAC;;QAE3B,YAAY,CAAC,IAAI,CAAC,MAAM,GAAG,WAAW,CAAC;;QAEvC,IAAI,CAAC,IAAI;QACT;YACI,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,mBAAmB,CAAC;SAC5C;;QAED,IAAI,CAAC,kBAAkB,CAAC,YAAY,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;;;QAGxD,OAAO,YAAY,CAAC,MAAM,CAAC;KAC9B,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,OAAO,EAAE,UAAU;IAC9F;QACI,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC;;QAE5C,IAAI,CAAC,YAAY,EAAE,CAAC;;QAEpB,IAAI,CAAC,qBAAqB,GAAG,OAAO,CAAC;;QAErC,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;;QAE7B,IAAI,CAAC,SAAS,EAAE,CAAC;KACpB,CAAC;;;;;;;IAOF,kBAAkB,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;IAC3D;QACI,IAAI,CAAC,IAAI,CAAC,qBAAqB;QAC/B;YACI,OAAO;SACV;;QAED,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,EAAE,eAAe,CAAC,WAAW,CAAC,CAAC;;QAElE,IAAI,MAAM,CAAC,SAAS,CAAC,gBAAgB;QACrC;YACI,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,qBAAqB,CAAC,GAAG,MAAM,CAAC;YACjE,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,kBAAkB,CAAC,GAAG,MAAM,CAAC;SACjE;aACI,IAAI,IAAI,CAAC,qBAAqB;QACnC;YACI,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,cAAc,CAAC,GAAG,MAAM,CAAC;SAC7D;;;;;;QAMD,IAAI,IAAI,CAAC,qBAAqB;QAC9B;YACI,MAAM,CAAC,QAAQ,CAAC,gBAAgB,CAAC,aAAa,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YAC1E,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,aAAa,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;;;;YAIrF,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,cAAc,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;YACrF,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,aAAa,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACrF,MAAM,CAAC,gBAAgB,CAAC,eAAe,EAAE,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;YACrE,MAAM,CAAC,gBAAgB,CAAC,WAAW,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;SAChE;;QAED;YACI,MAAM,CAAC,QAAQ,CAAC,gBAAgB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACxE,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACnF,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,UAAU,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;YACjF,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACnF,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;SAC9D;;;;;QAKD,IAAI,IAAI,CAAC,mBAAmB;QAC5B;YACI,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,YAAY,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACpF,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,aAAa,EAAE,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;YACvF,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,UAAU,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;YAChF,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;SACtF;;QAED,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;KAC3B,CAAC;;;;;;;IAOF,kBAAkB,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY;IACjE;QACI,IAAI,CAAC,IAAI,CAAC,qBAAqB;QAC/B;YACI,OAAO;SACV;;QAED,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;;QAExC,IAAI,MAAM,CAAC,SAAS,CAAC,gBAAgB;QACrC;YACI,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,qBAAqB,CAAC,GAAG,EAAE,CAAC;YAC7D,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,kBAAkB,CAAC,GAAG,EAAE,CAAC;SAC7D;aACI,IAAI,IAAI,CAAC,qBAAqB;QACnC;YACI,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,cAAc,CAAC,GAAG,EAAE,CAAC;SACzD;;QAED,IAAI,IAAI,CAAC,qBAAqB;QAC9B;YACI,MAAM,CAAC,QAAQ,CAAC,mBAAmB,CAAC,aAAa,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YAC7E,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,aAAa,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACxF,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,cAAc,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;YACxF,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,aAAa,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACxF,MAAM,CAAC,mBAAmB,CAAC,eAAe,EAAE,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;YACxE,MAAM,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;SACnE;;QAED;YACI,MAAM,CAAC,QAAQ,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YAC3E,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACtF,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,UAAU,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;YACpF,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACtF,MAAM,CAAC,mBAAmB,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;SACjE;;QAED,IAAI,IAAI,CAAC,mBAAmB;QAC5B;YACI,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,YAAY,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACvF,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,aAAa,EAAE,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;YAC1F,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,UAAU,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;YACnF,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;SACzF;;QAED,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC;;QAElC,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;KAC5B,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,SAAS;IAChE;QACI,IAAI,CAAC,UAAU,IAAI,SAAS,CAAC;;QAE7B,IAAI,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,oBAAoB;QAC/C;YACI,OAAO;SACV;;QAED,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;QAEpB,IAAI,CAAC,IAAI,CAAC,qBAAqB;QAC/B;YACI,OAAO;SACV;;;QAGD,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;YAErB,OAAO;SACV;;QAED,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;QAKnB,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,qBAAqB;QACxC;;YAEI,IAAI,IAAI,CAAC,qBAAqB,CAAC,cAAc,CAAC,CAAC,CAAC;YAChD;gBACI,IAAI,eAAe,GAAG,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,CAAC;;gBAEpD,IAAI,eAAe,CAAC,aAAa,IAAI,eAAe,CAAC,WAAW,KAAK,OAAO;gBAC5E;oBACI,IAAI,gBAAgB,GAAG,IAAI,CAAC,oCAAoC;wBAC5D,IAAI,CAAC,SAAS;wBACd,eAAe,CAAC,aAAa;wBAC7B,eAAe;qBAClB,CAAC;;oBAEF,IAAI,CAAC,kBAAkB;wBACnB,gBAAgB;wBAChB,IAAI,CAAC,QAAQ,CAAC,mBAAmB;wBACjC,IAAI,CAAC,qBAAqB;wBAC1B,IAAI;qBACP,CAAC;iBACL;aACJ;SACJ;;QAED,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;KACnC,CAAC;;;;;;;IAOF,kBAAkB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,IAAI;IACzE;QACI,IAAI,GAAG,IAAI,IAAI,SAAS,CAAC;;QAEzB,IAAI,IAAI,CAAC,iBAAiB,KAAK,IAAI;QACnC;YACI,OAAO;SACV;QACD,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;QAC9B,IAAI,KAAK,GAAG,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;;;QAGpC,IAAI,KAAK;QACT;YACI,QAAQ,OAAO,KAAK;;gBAEhB,KAAK,QAAQ;;oBAET,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC;oBAChD,MAAM;gBACV,KAAK,UAAU;;oBAEX,KAAK,CAAC,IAAI,CAAC,CAAC;oBACZ,MAAM;gBACV,KAAK,QAAQ;;;oBAGT,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,qBAAqB,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;oBACvD,MAAM;aACb;SACJ;aACI,IAAI,OAAO,IAAI,KAAK,QAAQ,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC;QACnG;;;YAGI,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC;SAClD;KACJ,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,aAAa,EAAE,WAAW,EAAE,SAAS;IAC1G;;;QAGI,IAAI,CAAC,SAAS,CAAC,mBAAmB,IAAI,aAAa,KAAK,SAAS,CAAC,kBAAkB;QACpF;YACI,SAAS,CAAC,aAAa,GAAG,aAAa,CAAC;YACxC,SAAS,CAAC,IAAI,GAAG,WAAW,CAAC;;YAE7B,aAAa,CAAC,IAAI,CAAC,WAAW,EAAE,SAAS,CAAC,CAAC;;YAE3C,IAAI,aAAa,CAAC,WAAW,CAAC;YAC9B;gBACI,aAAa,CAAC,WAAW,CAAC,CAAC,SAAS,CAAC,CAAC;aACzC;SACJ;KACJ,CAAC;;;;;;;;;;;IAWF,kBAAkB,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,aAAa,EAAE,WAAW,EAAE,SAAS;IACpH;QACI,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,EAAE,aAAa,EAAE,aAAa,EAAE,WAAW,EAAE,WAAW,EAAE,SAAS,EAAE,SAAS,EAAE,CAAC,CAAC;KAC7G,CAAC;;;;;;;;;;;IAWF,kBAAkB,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC;IAC1F;QACI,IAAI,IAAI,CAAC;;;QAGT,IAAI,CAAC,IAAI,CAAC,qBAAqB,CAAC,aAAa;QAC7C;YACI,IAAI,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,CAAC;SAC9C;;QAED;YACI,IAAI,GAAG,IAAI,CAAC,qBAAqB,CAAC,qBAAqB,EAAE,CAAC;SAC7D;;QAED,IAAI,oBAAoB,GAAG,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC;;QAEjD,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,qBAAqB,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,oBAAoB,CAAC;QACrG,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,KAAK,IAAI,CAAC,qBAAqB,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,oBAAoB,CAAC;KACzG,CAAC;;;;;;;;;;;;;;;;;;;;IAoBF,kBAAkB,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,gBAAgB,EAAE,aAAa,EAAE,IAAI,EAAE,OAAO,EAAE,WAAW,EAAE,WAAW;IACvJ;QACI,IAAI,CAAC,aAAa,IAAI,CAAC,aAAa,CAAC,OAAO;QAC5C;YACI,OAAO,KAAK,CAAC;SAChB;;QAED,IAAI,KAAK,GAAG,gBAAgB,CAAC,IAAI,CAAC,MAAM,CAAC;;;;;;;;;;;;;;;QAezC,WAAW,GAAG,aAAa,CAAC,WAAW,IAAI,WAAW,CAAC;;QAEvD,IAAI,GAAG,GAAG,KAAK,CAAC;QAChB,IAAI,iBAAiB,GAAG,WAAW,CAAC;;;QAGpC,IAAI,eAAe,GAAG,IAAI,CAAC;;;;QAI3B,IAAI,aAAa,CAAC,OAAO;QACzB;YACI,IAAI,OAAO;YACX;gBACI,aAAa,CAAC,cAAc,CAAC,YAAY,CAAC,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;gBAClE,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;gBACzE;oBACI,OAAO,GAAG,KAAK,CAAC;oBAChB,eAAe,GAAG,KAAK,CAAC;iBAC3B;;gBAED;oBACI,GAAG,GAAG,IAAI,CAAC;iBACd;aACJ;YACD,iBAAiB,GAAG,KAAK,CAAC;SAC7B;;;;aAII,IAAI,aAAa,CAAC,KAAK;QAC5B;YACI,IAAI,OAAO;YACX;gBACI,IAAI,EAAE,aAAa,CAAC,KAAK,CAAC,aAAa,IAAI,aAAa,CAAC,KAAK,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;gBACpF;oBACI,OAAO,GAAG,KAAK,CAAC;iBACnB;aACJ;SACJ;;;;;QAKD,IAAI,eAAe,IAAI,aAAa,CAAC,mBAAmB,IAAI,aAAa,CAAC,QAAQ;QAClF;YACI,IAAI,QAAQ,GAAG,aAAa,CAAC,QAAQ,CAAC;;YAEtC,KAAK,IAAI,CAAC,GAAG,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;YAC7C;gBACI,IAAI,KAAK,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;;;gBAGxB,IAAI,QAAQ,GAAG,IAAI,CAAC,kBAAkB,CAAC,gBAAgB,EAAE,KAAK,EAAE,IAAI,EAAE,OAAO,EAAE,iBAAiB,EAAE,IAAI,CAAC,CAAC;;gBAExG,IAAI,QAAQ;gBACZ;;;oBAGI,IAAI,CAAC,KAAK,CAAC,MAAM;oBACjB;wBACI,SAAS;qBACZ;;;;oBAID,iBAAiB,GAAG,KAAK,CAAC;;;;;;;oBAO1B,IAAI,QAAQ;oBACZ;wBACI,IAAI,gBAAgB,CAAC,MAAM;wBAC3B;4BACI,OAAO,GAAG,KAAK,CAAC;yBACnB;wBACD,GAAG,GAAG,IAAI,CAAC;qBACd;iBACJ;aACJ;SACJ;;;QAGD,IAAI,WAAW;QACf;;;;;YAKI,IAAI,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM;YACvC;;gBAEI,IAAI,CAAC,aAAa,CAAC,OAAO,IAAI,aAAa,CAAC,aAAa;gBACzD;oBACI,IAAI,aAAa,CAAC,aAAa,CAAC,KAAK,CAAC;oBACtC;wBACI,GAAG,GAAG,IAAI,CAAC;qBACd;iBACJ;aACJ;;YAED,IAAI,aAAa,CAAC,WAAW;YAC7B;gBACI,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM;gBACnC;oBACI,gBAAgB,CAAC,MAAM,GAAG,aAAa,CAAC;iBAC3C;;gBAED,IAAI,IAAI;gBACR;oBACI,IAAI,CAAC,gBAAgB,EAAE,aAAa,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC;iBAChD;aACJ;SACJ;;QAED,IAAI,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC;;QAEvC,IAAI,aAAa,CAAC,MAAM,IAAI,CAAC,WAAW;QACxC;;YAEI,gBAAgB,CAAC,mBAAmB,GAAG,KAAK,CAAC;;YAE7C,IAAI,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC;;YAEtC,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;;YAExB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,EAAE,GAAG,EAAE;YACzC;gBACI,IAAI,GAAG,GAAG,aAAa,CAAC,GAAG,CAAC,CAAC;gBAC7B,IAAI,eAAe,GAAG,GAAG,CAAC,aAAa,CAAC;gBACxC,IAAI,WAAW,GAAG,GAAG,CAAC,WAAW,CAAC;gBAClC,IAAI,SAAS,GAAG,GAAG,CAAC,SAAS,CAAC;;;;gBAI9B,IAAI,SAAS,CAAC,kBAAkB,KAAK,eAAe;gBACpD;oBACI,SAAS,CAAC,mBAAmB,GAAG,IAAI,CAAC;iBACxC;;gBAED,IAAI,CAAC,aAAa,CAAC,eAAe,EAAE,WAAW,EAAE,SAAS,CAAC,CAAC;aAC/D;SACJ;;QAED,OAAO,GAAG,CAAC;KACd,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,aAAa;IAClF;;QAEI,IAAI,IAAI,CAAC,mBAAmB,IAAI,aAAa,CAAC,WAAW,KAAK,OAAO,EAAE,EAAE,OAAO,EAAE;;QAElF,IAAI,MAAM,GAAG,IAAI,CAAC,sBAAsB,CAAC,aAAa,CAAC,CAAC;;;;;;;;;;QAUxD,IAAI,IAAI,CAAC,kBAAkB,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,YAAY;QACrD;YACI,IAAI,UAAU,GAAG,aAAa,CAAC,UAAU,IAAI,EAAE,YAAY,IAAI,aAAa,CAAC,CAAC;;YAE9E,IAAI,UAAU;YACd;gBACI,aAAa,CAAC,cAAc,EAAE,CAAC;aAClC;SACJ;;QAED,IAAI,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC;;QAE7B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,EAAE,CAAC,EAAE;QACjC;YACI,IAAI,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;YAEtB,IAAI,eAAe,GAAG,IAAI,CAAC,8BAA8B,CAAC,KAAK,CAAC,CAAC;;YAEjE,IAAI,gBAAgB,GAAG,IAAI,CAAC,oCAAoC,CAAC,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,eAAe,CAAC,CAAC;;YAEzG,gBAAgB,CAAC,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;;YAEpD,IAAI,CAAC,kBAAkB,CAAC,gBAAgB,EAAE,IAAI,CAAC,QAAQ,CAAC,mBAAmB,EAAE,IAAI,CAAC,kBAAkB,EAAE,IAAI,CAAC,CAAC;;YAE5G,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,gBAAgB,CAAC,CAAC;YAC3C,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO;YACjC;gBACI,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,gBAAgB,CAAC,CAAC;aAC7C;;iBAEI,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,IAAI,KAAK,CAAC,WAAW,KAAK,KAAK;YACrE;gBACI,IAAI,aAAa,GAAG,KAAK,CAAC,MAAM,KAAK,CAAC,CAAC;;gBAEvC,IAAI,CAAC,IAAI,CAAC,aAAa,GAAG,WAAW,GAAG,WAAW,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;aACxE;SACJ;KACJ,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,gBAAgB,EAAE,aAAa,EAAE,GAAG;IACnH;QACI,IAAI,IAAI,GAAG,gBAAgB,CAAC,IAAI,CAAC;QACjC,IAAI,EAAE,GAAG,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC;;QAE1C,IAAI,GAAG;QACP;YACI,IAAI,CAAC,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC;YACtC;gBACI,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,GAAG,IAAI,uBAAuB,CAAC,EAAE,CAAC,CAAC;aACvE;YACD,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,aAAa,EAAE,gBAAgB,CAAC,CAAC;;YAEnE,IAAI,IAAI,CAAC,WAAW,KAAK,OAAO;YAChC;gBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,YAAY,EAAE,gBAAgB,CAAC,CAAC;aACrE;iBACI,IAAI,IAAI,CAAC,WAAW,KAAK,OAAO,IAAI,IAAI,CAAC,WAAW,KAAK,KAAK;YACnE;gBACI,IAAI,aAAa,GAAG,IAAI,CAAC,MAAM,KAAK,CAAC,CAAC;;gBAEtC,IAAI,aAAa;gBACjB;oBACI,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;iBACtD;;gBAED;oBACI,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC,QAAQ,GAAG,IAAI,CAAC;iBACrD;;gBAED,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,aAAa,GAAG,WAAW,GAAG,WAAW,EAAE,gBAAgB,CAAC,CAAC;aAClG;SACJ;KACJ,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,aAAa,EAAE,SAAS,EAAE,IAAI;IAC3G;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,sBAAsB,CAAC,aAAa,CAAC,CAAC;;QAExD,IAAI,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC;;;;QAI7B,IAAI,WAAW,GAAG,aAAa,CAAC,MAAM,KAAK,IAAI,CAAC,qBAAqB,GAAG,SAAS,GAAG,EAAE,CAAC;;QAEvF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,EAAE,CAAC,EAAE;QACjC;YACI,IAAI,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;YAEtB,IAAI,eAAe,GAAG,IAAI,CAAC,8BAA8B,CAAC,KAAK,CAAC,CAAC;;YAEjE,IAAI,gBAAgB,GAAG,IAAI,CAAC,oCAAoC,CAAC,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,eAAe,CAAC,CAAC;;YAEzG,gBAAgB,CAAC,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;;;YAGpD,IAAI,CAAC,kBAAkB,CAAC,gBAAgB,EAAE,IAAI,CAAC,QAAQ,CAAC,mBAAmB,EAAE,IAAI,EAAE,SAAS,IAAI,CAAC,WAAW,CAAC,CAAC;;YAE9G,IAAI,CAAC,IAAI,CAAC,SAAS,GAAG,eAAe,IAAI,WAAW,GAAG,WAAW,CAAC,EAAE,gBAAgB,CAAC,CAAC;;YAEvF,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,IAAI,KAAK,CAAC,WAAW,KAAK,KAAK;YAChE;gBACI,IAAI,aAAa,GAAG,KAAK,CAAC,MAAM,KAAK,CAAC,CAAC;;gBAEvC,IAAI,CAAC,IAAI,CAAC,aAAa,IAAI,SAAS,GAAG,WAAW,KAAK,SAAS,GAAG,WAAW,CAAC,EAAE,gBAAgB,CAAC,CAAC;aACtG;iBACI,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO;YACtC;gBACI,IAAI,CAAC,IAAI,CAAC,SAAS,GAAG,aAAa,IAAI,UAAU,GAAG,WAAW,CAAC,EAAE,gBAAgB,CAAC,CAAC;gBACpF,IAAI,CAAC,kCAAkC,CAAC,KAAK,CAAC,SAAS,EAAE,eAAe,CAAC,CAAC;aAC7E;SACJ;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,KAAK;IAC9E;;QAEI,IAAI,IAAI,CAAC,mBAAmB,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,EAAE,EAAE,OAAO,EAAE;;QAE1E,IAAI,CAAC,iBAAiB,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC,oBAAoB,CAAC,CAAC;KAClE,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,SAAS,CAAC,oBAAoB,GAAG,SAAS,oBAAoB,EAAE,gBAAgB,EAAE,aAAa;IAClH;QACI,IAAI,IAAI,GAAG,gBAAgB,CAAC,IAAI,CAAC;;QAEjC,IAAI,EAAE,GAAG,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC;;QAE1C,IAAI,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,KAAK,SAAS;QACnD;YACI,OAAO,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC;YACzC,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,eAAe,EAAE,gBAAgB,CAAC,CAAC;;YAErE,IAAI,IAAI,CAAC,WAAW,KAAK,OAAO;YAChC;gBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,aAAa,EAAE,gBAAgB,CAAC,CAAC;aACtE;SACJ;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,KAAK;IACtE;;QAEI,IAAI,IAAI,CAAC,mBAAmB,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,EAAE,EAAE,OAAO,EAAE;;QAE1E,IAAI,CAAC,iBAAiB,CAAC,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,gBAAgB,CAAC,CAAC;KAC/D,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,gBAAgB,EAAE,aAAa,EAAE,GAAG;IAC/G;QACI,IAAI,IAAI,GAAG,gBAAgB,CAAC,IAAI,CAAC;;QAEjC,IAAI,EAAE,GAAG,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC;;QAE1C,IAAI,YAAY,GAAG,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC;;QAErD,IAAI,OAAO,GAAG,IAAI,CAAC,WAAW,KAAK,OAAO,CAAC;;QAE3C,IAAI,OAAO,IAAI,IAAI,CAAC,WAAW,KAAK,OAAO,IAAI,IAAI,CAAC,WAAW,KAAK,KAAK,CAAC,CAAC;;;QAG3E,IAAI,UAAU,GAAG,KAAK,CAAC;;;QAGvB,IAAI,OAAO;QACX;YACI,IAAI,aAAa,GAAG,IAAI,CAAC,MAAM,KAAK,CAAC,CAAC;;YAEtC,IAAI,KAAK,GAAG,uBAAuB,CAAC,KAAK,CAAC;;YAE1C,IAAI,IAAI,GAAG,aAAa,GAAG,KAAK,CAAC,UAAU,GAAG,KAAK,CAAC,SAAS,CAAC;;YAE9D,IAAI,MAAM,GAAG,YAAY,KAAK,SAAS,KAAK,YAAY,CAAC,KAAK,GAAG,IAAI,CAAC,CAAC;;YAEvE,IAAI,GAAG;YACP;gBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,aAAa,GAAG,SAAS,GAAG,SAAS,EAAE,gBAAgB,CAAC,CAAC;;gBAE3F,IAAI,MAAM;gBACV;oBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,aAAa,GAAG,YAAY,GAAG,OAAO,EAAE,gBAAgB,CAAC,CAAC;;oBAE5F,UAAU,GAAG,IAAI,CAAC;iBACrB;aACJ;iBACI,IAAI,MAAM;YACf;gBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,aAAa,GAAG,gBAAgB,GAAG,gBAAgB,EAAE,gBAAgB,CAAC,CAAC;aAC5G;;YAED,IAAI,YAAY;YAChB;gBACI,IAAI,aAAa;gBACjB;oBACI,YAAY,CAAC,SAAS,GAAG,KAAK,CAAC;iBAClC;;gBAED;oBACI,YAAY,CAAC,QAAQ,GAAG,KAAK,CAAC;iBACjC;aACJ;SACJ;;;QAGD,IAAI,GAAG;QACP;YACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,CAAC;YACjE,IAAI,OAAO,EAAE,EAAE,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,UAAU,EAAE,gBAAgB,CAAC,CAAC,EAAE;;YAEjF,IAAI,YAAY;YAChB;;gBAEI,IAAI,CAAC,OAAO,IAAI,UAAU;gBAC1B;oBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,YAAY,EAAE,gBAAgB,CAAC,CAAC;iBACrE;gBACD,IAAI,OAAO;gBACX;oBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,KAAK,EAAE,gBAAgB,CAAC,CAAC;;;oBAG3D,YAAY,CAAC,IAAI,GAAG,KAAK,CAAC;iBAC7B;aACJ;SACJ;aACI,IAAI,YAAY;QACrB;YACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,kBAAkB,EAAE,gBAAgB,CAAC,CAAC;YACxE,IAAI,OAAO,EAAE,EAAE,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,iBAAiB,EAAE,gBAAgB,CAAC,CAAC,EAAE;SAC3F;;QAED,IAAI,YAAY,IAAI,YAAY,CAAC,IAAI;QACrC;YACI,OAAO,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC;SAC5C;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,aAAa;IAClF;;QAEI,IAAI,IAAI,CAAC,mBAAmB,IAAI,aAAa,CAAC,WAAW,KAAK,OAAO,EAAE,EAAE,OAAO,EAAE;;QAElF,IAAI,MAAM,GAAG,IAAI,CAAC,sBAAsB,CAAC,aAAa,CAAC,CAAC;;QAExD,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,KAAK,OAAO,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,KAAK,KAAK;QACxE;YACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;YAEpB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;SACtB;;QAED,IAAI,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC;;QAE7B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,EAAE,CAAC,EAAE;QACjC;YACI,IAAI,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;YAEtB,IAAI,eAAe,GAAG,IAAI,CAAC,8BAA8B,CAAC,KAAK,CAAC,CAAC;;YAEjE,IAAI,gBAAgB,GAAG,IAAI,CAAC,oCAAoC,CAAC,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,eAAe,CAAC,CAAC;;YAEzG,gBAAgB,CAAC,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;;YAEpD,IAAI,CAAC,kBAAkB,CAAC,gBAAgB,EAAE,IAAI,CAAC,QAAQ,CAAC,mBAAmB,EAAE,IAAI,CAAC,kBAAkB,EAAE,IAAI,CAAC,CAAC;;YAE5G,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,gBAAgB,CAAC,CAAC;YAC3C,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,EAAE,EAAE,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,gBAAgB,CAAC,CAAC,EAAE;YAChF,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,IAAI,KAAK,CAAC,WAAW,KAAK,KAAK,EAAE,EAAE,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,gBAAgB,CAAC,CAAC,EAAE;SAClH;;QAED,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,KAAK,OAAO;QACrC;YACI,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;;SAGnC;KACJ,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,gBAAgB,EAAE,aAAa,EAAE,GAAG;IACnH;QACI,IAAI,IAAI,GAAG,gBAAgB,CAAC,IAAI,CAAC;;QAEjC,IAAI,OAAO,GAAG,IAAI,CAAC,WAAW,KAAK,OAAO,CAAC;;QAE3C,IAAI,OAAO,IAAI,IAAI,CAAC,WAAW,KAAK,OAAO,IAAI,IAAI,CAAC,WAAW,KAAK,KAAK,CAAC,CAAC;;QAE3E,IAAI,OAAO;QACX;YACI,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,EAAE,aAAa,EAAE,GAAG,CAAC,CAAC;SACpE;;QAED,IAAI,CAAC,IAAI,CAAC,cAAc,IAAI,GAAG;QAC/B;YACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,aAAa,EAAE,gBAAgB,CAAC,CAAC;YACnE,IAAI,OAAO,EAAE,EAAE,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,CAAC,EAAE;YAClF,IAAI,OAAO,EAAE,EAAE,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,CAAC,EAAE;SACrF;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,aAAa;IAChF;;QAEI,IAAI,IAAI,CAAC,mBAAmB,IAAI,aAAa,CAAC,WAAW,KAAK,OAAO,EAAE,EAAE,OAAO,EAAE;;QAElF,IAAI,MAAM,GAAG,IAAI,CAAC,sBAAsB,CAAC,aAAa,CAAC,CAAC;;;QAGxD,IAAI,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;QAEtB,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO;QACjC;YACI,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;YAC/B,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;SAC5B;;QAED,IAAI,eAAe,GAAG,IAAI,CAAC,8BAA8B,CAAC,KAAK,CAAC,CAAC;;QAEjE,IAAI,gBAAgB,GAAG,IAAI,CAAC,oCAAoC,CAAC,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,eAAe,CAAC,CAAC;;QAEzG,gBAAgB,CAAC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;;QAE5C,IAAI,CAAC,kBAAkB,CAAC,gBAAgB,EAAE,IAAI,CAAC,QAAQ,CAAC,mBAAmB,EAAE,IAAI,CAAC,qBAAqB,EAAE,KAAK,CAAC,CAAC;;QAEhH,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,gBAAgB,CAAC,CAAC;QAC1C,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,IAAI,KAAK,CAAC,WAAW,KAAK,KAAK;QAChE;YACI,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,gBAAgB,CAAC,CAAC;SAC3C;;QAED;;;YAGI,IAAI,CAAC,kCAAkC,CAAC,eAAe,CAAC,UAAU,CAAC,CAAC;SACvE;KACJ,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,qBAAqB,GAAG,SAAS,qBAAqB,EAAE,gBAAgB,EAAE,aAAa,EAAE,GAAG;IACzH;QACI,IAAI,IAAI,GAAG,gBAAgB,CAAC,IAAI,CAAC;;QAEjC,IAAI,EAAE,GAAG,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC;;QAE1C,IAAI,OAAO,IAAI,IAAI,CAAC,WAAW,KAAK,OAAO,IAAI,IAAI,CAAC,WAAW,KAAK,KAAK,CAAC,CAAC;;QAE3E,IAAI,YAAY,GAAG,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC;;;QAGrD,IAAI,GAAG,IAAI,CAAC,YAAY;QACxB;YACI,YAAY,GAAG,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,GAAG,IAAI,uBAAuB,CAAC,EAAE,CAAC,CAAC;SACtF;;QAED,IAAI,YAAY,KAAK,SAAS,EAAE,EAAE,OAAO,EAAE;;QAE3C,IAAI,GAAG,IAAI,IAAI,CAAC,iBAAiB;QACjC;YACI,IAAI,CAAC,YAAY,CAAC,IAAI;YACtB;gBACI,YAAY,CAAC,IAAI,GAAG,IAAI,CAAC;gBACzB,IAAI,CAAC,kBAAkB,CAAC,aAAa,EAAE,aAAa,EAAE,gBAAgB,CAAC,CAAC;gBACxE,IAAI,OAAO;gBACX;oBACI,IAAI,CAAC,kBAAkB,CAAC,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,CAAC;iBACzE;aACJ;;;;YAID,IAAI,OAAO,IAAI,IAAI,CAAC,MAAM,KAAK,IAAI;YACnC;gBACI,IAAI,CAAC,MAAM,GAAG,aAAa,CAAC,MAAM,CAAC;aACtC;SACJ;aACI,IAAI,YAAY,CAAC,IAAI;QAC1B;YACI,YAAY,CAAC,IAAI,GAAG,KAAK,CAAC;YAC1B,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,YAAY,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;YAChE,IAAI,OAAO;YACX;gBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,UAAU,EAAE,gBAAgB,CAAC,CAAC;aACnE;;YAED,IAAI,YAAY,CAAC,IAAI;YACrB;gBACI,OAAO,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC;aAC5C;SACJ;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,aAAa;IAClF;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,sBAAsB,CAAC,aAAa,CAAC,CAAC;;;QAGxD,IAAI,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;QAEtB,IAAI,eAAe,GAAG,IAAI,CAAC,8BAA8B,CAAC,KAAK,CAAC,CAAC;;QAEjE,IAAI,gBAAgB,GAAG,IAAI,CAAC,oCAAoC,CAAC,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,eAAe,CAAC,CAAC;;QAEzG,gBAAgB,CAAC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;;QAE5C,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO;QACjC;YACI,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;SACjC;;QAED,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,gBAAgB,CAAC,CAAC;QAC3C,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,IAAI,KAAK,CAAC,WAAW,KAAK,KAAK;QAChE;YACI,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,gBAAgB,CAAC,CAAC;SAC5C;KACJ,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,SAAS,CAAC,8BAA8B,GAAG,SAAS,8BAA8B,EAAE,KAAK;IAC5G;QACI,IAAI,SAAS,GAAG,KAAK,CAAC,SAAS,CAAC;;QAEhC,IAAI,eAAe,CAAC;;QAEpB,IAAI,SAAS,KAAK,gBAAgB,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO;QACnE;YACI,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC;SAChC;aACI,IAAI,IAAI,CAAC,qBAAqB,CAAC,SAAS,CAAC;QAC9C;YACI,eAAe,GAAG,IAAI,CAAC,qBAAqB,CAAC,SAAS,CAAC,CAAC;SAC3D;;QAED;YACI,eAAe,GAAG,IAAI,CAAC,mBAAmB,CAAC,GAAG,EAAE,IAAI,IAAI,eAAe,EAAE,CAAC;YAC1E,eAAe,CAAC,UAAU,GAAG,SAAS,CAAC;YACvC,IAAI,CAAC,qBAAqB,CAAC,SAAS,CAAC,GAAG,eAAe,CAAC;SAC3D;;;QAGD,eAAe,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;;QAEjC,OAAO,eAAe,CAAC;KAC1B,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,kCAAkC,GAAG,SAAS,kCAAkC,EAAE,SAAS;IACxH;QACI,IAAI,eAAe,GAAG,IAAI,CAAC,qBAAqB,CAAC,SAAS,CAAC,CAAC;;QAE5D,IAAI,eAAe;QACnB;YACI,OAAO,IAAI,CAAC,qBAAqB,CAAC,SAAS,CAAC,CAAC;YAC7C,eAAe,CAAC,KAAK,EAAE,CAAC;YACxB,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;SAClD;KACJ,CAAC;;;;;;;;;;;;IAYF,kBAAkB,CAAC,SAAS,CAAC,oCAAoC,GAAG,SAAS,oCAAoC,EAAE,gBAAgB,EAAE,YAAY,EAAE,eAAe;IAClK;QACI,gBAAgB,CAAC,IAAI,GAAG,eAAe,CAAC;;QAExC,IAAI,CAAC,kBAAkB,CAAC,eAAe,CAAC,MAAM,EAAE,YAAY,CAAC,OAAO,EAAE,YAAY,CAAC,OAAO,CAAC,CAAC;;;QAG5F,IAAI,YAAY,CAAC,WAAW,KAAK,OAAO;QACxC;YACI,YAAY,CAAC,OAAO,GAAG,eAAe,CAAC,MAAM,CAAC,CAAC,CAAC;YAChD,YAAY,CAAC,OAAO,GAAG,eAAe,CAAC,MAAM,CAAC,CAAC,CAAC;SACnD;;QAED,eAAe,CAAC,aAAa,GAAG,YAAY,CAAC;QAC7C,gBAAgB,CAAC,KAAK,EAAE,CAAC;;QAEzB,OAAO,gBAAgB,CAAC;KAC3B,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,sBAAsB,GAAG,SAAS,sBAAsB,EAAE,KAAK;IAC5F;QACI,IAAI,gBAAgB,GAAG,EAAE,CAAC;;QAE1B,IAAI,IAAI,CAAC,mBAAmB,IAAI,KAAK,YAAY,UAAU;QAC3D;YACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;YAC7D;gBACI,IAAI,KAAK,GAAG,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC;;gBAEpC,IAAI,OAAO,KAAK,CAAC,MAAM,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,GAAG,CAAC,CAAC,EAAE;gBACzF,IAAI,OAAO,KAAK,CAAC,OAAO,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,GAAG,CAAC,CAAC,EAAE;gBAC3F,IAAI,OAAO,KAAK,CAAC,SAAS,KAAK,WAAW;gBAC1C;oBACI,KAAK,CAAC,SAAS,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,IAAI,KAAK,CAAC,IAAI,KAAK,YAAY,CAAC;iBAC/E;gBACD,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,EAAE;gBAC7E,IAAI,OAAO,KAAK,CAAC,MAAM,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,EAAE;gBAC/E,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;gBAC5D,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;gBAC5D,IAAI,OAAO,KAAK,CAAC,WAAW,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,WAAW,GAAG,OAAO,CAAC,EAAE;gBAC9E,IAAI,OAAO,KAAK,CAAC,SAAS,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,SAAS,GAAG,KAAK,CAAC,UAAU,IAAI,CAAC,CAAC,EAAE;gBACxF,IAAI,OAAO,KAAK,CAAC,QAAQ,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,QAAQ,GAAG,KAAK,CAAC,KAAK,IAAI,GAAG,CAAC,EAAE;gBACnF,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;gBAC5D,IAAI,OAAO,KAAK,CAAC,kBAAkB,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,kBAAkB,GAAG,CAAC,CAAC,EAAE;;;;;gBAKtF,IAAI,OAAO,KAAK,CAAC,MAAM,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,EAAE;gBAC1F,IAAI,OAAO,KAAK,CAAC,MAAM,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,EAAE;;;gBAG1F,KAAK,CAAC,YAAY,GAAG,IAAI,CAAC;;gBAE1B,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;aAChC;SACJ;;aAEI,IAAI,KAAK,YAAY,UAAU,KAAK,CAAC,IAAI,CAAC,qBAAqB,IAAI,EAAE,KAAK,YAAY,MAAM,CAAC,YAAY,CAAC,CAAC;QAChH;YACI,IAAI,OAAO,KAAK,CAAC,SAAS,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,SAAS,GAAG,IAAI,CAAC,EAAE;YACvE,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;YAC5D,IAAI,OAAO,KAAK,CAAC,MAAM,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE;YAC9D,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;YAC5D,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;YAC5D,IAAI,OAAO,KAAK,CAAC,WAAW,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,WAAW,GAAG,OAAO,CAAC,EAAE;YAC9E,IAAI,OAAO,KAAK,CAAC,SAAS,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,SAAS,GAAG,gBAAgB,CAAC,EAAE;YACnF,IAAI,OAAO,KAAK,CAAC,QAAQ,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,QAAQ,GAAG,GAAG,CAAC,EAAE;YACpE,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;YAC5D,IAAI,OAAO,KAAK,CAAC,kBAAkB,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,kBAAkB,GAAG,CAAC,CAAC,EAAE;;;YAGtF,KAAK,CAAC,YAAY,GAAG,IAAI,CAAC;;YAE1B,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SAChC;;QAED;YACI,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SAChC;;QAED,OAAO,gBAAgB,CAAC;KAC3B,CAAC;;;;;;IAMF,kBAAkB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACvD;QACI,IAAI,CAAC,YAAY,EAAE,CAAC;;QAEpB,IAAI,CAAC,kBAAkB,EAAE,CAAC;;QAE1B,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;QAErB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;QAElB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;;QAEtB,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC;;QAElC,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;QAC1B,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC;;QAE/B,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QACxB,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;;QAE7B,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;QAC5B,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC;;QAEjC,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;QAC1B,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC;;QAE/B,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;QACzB,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC;;QAElC,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;;QAE1B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;KAC1B,CAAC;;IAEF,OAAO,kBAAkB,CAAC;CAC7B,CAACC,aAAY,CAAC,CAAC,CAAC;;ACx5EjB;;;;;;;AAOA,AAKA;;;;;;;;;;;;;;;;AAgBA,IAAI,eAAe,GAAG;IAClB,QAAQ,EAAE,IAAI;IACd,SAAS,EAAE,EAAE;IACb,WAAW,EAAE,CAAC;IACd,WAAW,EAAE,IAAI;IACjB,cAAc,EAAE,SAAS,cAAc,CAAC,MAAM,EAAE,eAAe;IAC/D;QACI,KAAK,eAAe,KAAK,KAAK,CAAC,GAAG,eAAe,GAAG,EAAE,CAAC;;QAEvD,IAAI,CAAC,IAAI,CAAC,QAAQ;QAClB;YACI,OAAO,eAAe,CAAC;SAC1B;;QAED,IAAI,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC;;QAEhD,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW;QAC7B;YACI,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC;SAC7B;aACI,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW;QAClC;YACI,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC;SAC7B;;QAED,OAAO,MAAM,CAAC;KACjB;CACJ,CAAC;;;;;;;;AAQF,IAAI,SAAS,GAAG,SAAS,SAAS;AAClC;IACI,IAAI,CAAC,KAAK,EAAE,CAAC;CAChB,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC1C;IACI,IAAI,GAAG,GAAG,IAAI,SAAS,EAAE,CAAC;;IAE1B,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;IACvB,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;IACvB,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;IAC3B,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;IACzB,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;;IAE3B,OAAO,GAAG,CAAC;CACd,CAAC;;;;;AAKF,SAAS,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC1C;;;;;;;IAOI,IAAI,CAAC,KAAK,GAAG,QAAQ,CAAC;;;;;;;;IAQtB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;IAQf,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,KAAK,CAAC;;;;;;;;IAQ7B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;;IAQnB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;CACxB,CAAC;;;;;AAKF,SAAS,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC9C;IACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;CACtB,CAAC;;;;;;;;AAQF,IAAI,YAAY,GAAG,SAAS,YAAY,CAAC,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM;AAC5E;IACI,KAAK,SAAS,KAAK,KAAK,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC;IAC7C,KAAK,SAAS,KAAK,KAAK,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC;IAC7C,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC;;;;;;IAMvC,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;IAMnB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;;;;;;IAM3B,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;;;;;;IAM3B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;IAMrB,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC;;;;;;IAMvB,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC;;;;;;IAMjB,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;CACnB,CAAC;;;;;;;AAOF,YAAY,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC7C;IACI,OAAO,IAAI,YAAY;QACnB,IAAI,CAAC,KAAK;QACV,IAAI,CAAC,SAAS;QACd,IAAI,CAAC,SAAS;QACd,IAAI,CAAC,MAAM;KACd,CAAC;CACL,CAAC;;;;;AAKF,YAAY,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AACjD;IACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;IACtB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;IACvB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;IACnB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;CACzB,CAAC;;;;;;;;;;;;;AAaF,IAAI,WAAW,GAAG;;IAEd,KAAK,EAAE,SAAS,KAAK,CAAC,YAAY;IAClC;;QAEI,IAAI,UAAU,GAAG,YAAY,CAAC,KAAK,CAAC;QACpC,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;QACjC,IAAI,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC;QACrB,IAAI,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC;QACrB,IAAI,KAAK,CAAC;QACV,IAAI,MAAM,CAAC;;QAEX,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;;QAGlB,IAAI,YAAY,CAAC,IAAI,KAAK,MAAM,CAAC,IAAI;QACrC;YACI,KAAK,GAAG,UAAU,CAAC,MAAM,CAAC;YAC1B,MAAM,GAAG,UAAU,CAAC,MAAM,CAAC;SAC9B;;QAED;YACI,KAAK,GAAG,UAAU,CAAC,KAAK,CAAC;YACzB,MAAM,GAAG,UAAU,CAAC,MAAM,CAAC;SAC9B;;QAED,IAAI,KAAK,KAAK,CAAC,IAAI,MAAM,KAAK,CAAC;QAC/B;YACI,OAAO;SACV;;QAED,IAAI,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;eACtD,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC;;QAExE,SAAS,IAAI,GAAG,CAAC;;QAEjB,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,IAAI,SAAS,CAAC;;QAEpC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE;QAClC;YACI,MAAM,CAAC,IAAI;gBACP,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC;gBAChC,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC;aACpC,CAAC;SACL;;QAED,MAAM,CAAC,IAAI;YACP,MAAM,CAAC,CAAC,CAAC;YACT,MAAM,CAAC,CAAC,CAAC;SACZ,CAAC;KACL;;IAED,WAAW,EAAE,SAAS,WAAW,CAAC,YAAY,EAAE,gBAAgB;IAChE;QACI,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;QACjC,IAAI,KAAK,GAAG,gBAAgB,CAAC,MAAM,CAAC;QACpC,IAAI,OAAO,GAAG,gBAAgB,CAAC,OAAO,CAAC;;QAEvC,IAAI,OAAO,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;QAC/B,IAAI,MAAM,GAAG,OAAO,CAAC;;QAErB,KAAK,CAAC,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,EAAE,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;;QAEvD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC;QACzC;YACI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;;;YAGrC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC;SAC5C;KACJ;CACJ,CAAC;;;;;;;;;;;;AAYF,SAAS,SAAS,EAAE,YAAY,EAAE,gBAAgB;AAClD;IACI,IAAI,YAAY,CAAC,SAAS,CAAC,MAAM;IACjC;QACI,eAAe,CAAC,YAAY,EAAE,gBAAgB,CAAC,CAAC;KACnD;;IAED;QACI,WAAW,CAAC,YAAY,EAAE,gBAAgB,CAAC,CAAC;KAC/C;CACJ;;;;;;;;;;;;AAYD,SAAS,WAAW,CAAC,YAAY,EAAE,gBAAgB;AACnD;IACI,IAAI,KAAK,GAAG,YAAY,CAAC,KAAK,CAAC;IAC/B,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;IACzD,IAAI,GAAG,GAAG,gBAAgB,CAAC,aAAa,CAAC;;IAEzC,IAAI,MAAM,CAAC,MAAM,KAAK,CAAC;IACvB;QACI,OAAO;KACV;;;;;;;;;;;IAWD,IAAI,KAAK,GAAG,YAAY,CAAC,SAAS,CAAC;;;IAGnC,IAAI,UAAU,GAAG,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;IACjD,IAAI,SAAS,GAAG,IAAI,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;IAChF,IAAI,WAAW,GAAG,KAAK,CAAC,IAAI,KAAK,MAAM,CAAC,IAAI,IAAI,KAAK,CAAC,WAAW,CAAC;IAClE,IAAI,UAAU,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,GAAG,GAAG;WACpD,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;;;IAGlD,IAAI,WAAW;IACf;;QAEI,MAAM,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC;;QAExB,IAAI,UAAU;QACd;YACI,MAAM,CAAC,GAAG,EAAE,CAAC;YACb,MAAM,CAAC,GAAG,EAAE,CAAC;YACb,SAAS,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;SACvE;;QAED,IAAI,SAAS,GAAG,SAAS,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC;QACnE,IAAI,SAAS,GAAG,SAAS,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC;;QAEnE,MAAM,CAAC,OAAO,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;QACrC,MAAM,CAAC,IAAI,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;KACrC;;IAED,IAAI,KAAK,GAAG,gBAAgB,CAAC,MAAM,CAAC;IACpC,IAAI,MAAM,GAAG,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;IAC/B,IAAI,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC;IAC/B,IAAI,UAAU,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;;;IAGlC,IAAI,KAAK,GAAG,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC;;;IAG5B,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;IACpB,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;IACpB,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;IACpB,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;IACpB,IAAI,GAAG,GAAG,CAAC,CAAC;IACZ,IAAI,GAAG,GAAG,CAAC,CAAC;;IAEZ,IAAI,KAAK,GAAG,EAAE,GAAG,GAAG,GAAG,CAAC,CAAC;IACzB,IAAI,KAAK,GAAG,GAAG,GAAG,GAAG,CAAC;IACtB,IAAI,MAAM,GAAG,CAAC,CAAC;IACf,IAAI,MAAM,GAAG,CAAC,CAAC;IACf,IAAI,MAAM,GAAG,CAAC,CAAC;IACf,IAAI,MAAM,GAAG,CAAC,CAAC;;IAEf,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,KAAK,GAAG,KAAK,KAAK,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC;;IAExD,KAAK,IAAI,IAAI,CAAC;IACd,KAAK,IAAI,IAAI,CAAC;IACd,KAAK,IAAI,KAAK,CAAC;IACf,KAAK,IAAI,KAAK,CAAC;;IAEf,IAAI,KAAK,GAAG,KAAK,CAAC,SAAS,CAAC;IAC5B,IAAI,EAAE,GAAG,CAAC,CAAC,GAAG,KAAK,IAAI,CAAC,CAAC;IACzB,IAAI,EAAE,GAAG,KAAK,GAAG,CAAC,CAAC;;;IAGnB,KAAK,CAAC,IAAI;QACN,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC;QAClB,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC;;IAExB,KAAK,CAAC,IAAI;QACN,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC;QAClB,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC;;IAExB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,GAAG,CAAC,EAAE,EAAE,CAAC;IACnC;QACI,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;QAC1B,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;;QAEhC,GAAG,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;QACpB,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;;QAE1B,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;QAC1B,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;;QAEhC,KAAK,GAAG,EAAE,GAAG,GAAG,GAAG,CAAC,CAAC;QACrB,KAAK,GAAG,GAAG,GAAG,GAAG,CAAC;;QAElB,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,KAAK,GAAG,KAAK,KAAK,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC;QACpD,KAAK,IAAI,IAAI,CAAC;QACd,KAAK,IAAI,IAAI,CAAC;QACd,KAAK,IAAI,KAAK,CAAC;QACf,KAAK,IAAI,KAAK,CAAC;;QAEf,MAAM,GAAG,EAAE,GAAG,GAAG,GAAG,CAAC,CAAC;QACtB,MAAM,GAAG,GAAG,GAAG,GAAG,CAAC;;QAEnB,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,MAAM,GAAG,MAAM,KAAK,MAAM,GAAG,MAAM,CAAC,CAAC,CAAC;QACxD,MAAM,IAAI,IAAI,CAAC;QACf,MAAM,IAAI,IAAI,CAAC;QACf,MAAM,IAAI,KAAK,CAAC;QAChB,MAAM,IAAI,KAAK,CAAC;;QAEhB,IAAI,EAAE,GAAG,CAAC,CAAC,KAAK,GAAG,GAAG,KAAK,CAAC,KAAK,GAAG,GAAG,CAAC,CAAC;QACzC,IAAI,EAAE,GAAG,CAAC,CAAC,KAAK,GAAG,GAAG,KAAK,CAAC,KAAK,GAAG,GAAG,CAAC,CAAC;QACzC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,GAAG,GAAG,KAAK,CAAC,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC,CAAC,KAAK,GAAG,GAAG,KAAK,CAAC,KAAK,GAAG,GAAG,CAAC,CAAC,CAAC;QAC/E,IAAI,EAAE,GAAG,CAAC,CAAC,MAAM,GAAG,GAAG,KAAK,CAAC,MAAM,GAAG,GAAG,CAAC,CAAC;QAC3C,IAAI,EAAE,GAAG,CAAC,CAAC,MAAM,GAAG,GAAG,KAAK,CAAC,MAAM,GAAG,GAAG,CAAC,CAAC;QAC3C,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC,MAAM,GAAG,GAAG,KAAK,CAAC,MAAM,GAAG,GAAG,CAAC,KAAK,CAAC,CAAC,MAAM,GAAG,GAAG,KAAK,CAAC,MAAM,GAAG,GAAG,CAAC,CAAC,CAAC;;QAEnF,IAAI,KAAK,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;;QAElC,IAAI,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,GAAG;QACzB;YACI,KAAK,IAAI,IAAI,CAAC;YACd,KAAK,CAAC,IAAI;gBACN,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC;gBAClB,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC;;YAExB,KAAK,CAAC,IAAI;gBACN,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC;gBAClB,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC;;YAExB,SAAS;SACZ;;QAED,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,KAAK,CAAC;QACzC,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,KAAK,CAAC;QACzC,IAAI,KAAK,GAAG,CAAC,CAAC,EAAE,GAAG,GAAG,KAAK,EAAE,GAAG,GAAG,CAAC,KAAK,CAAC,EAAE,GAAG,GAAG,KAAK,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC;;QAElE,IAAI,KAAK,IAAI,GAAG,GAAG,KAAK,GAAG,KAAK,CAAC;QACjC;YACI,MAAM,GAAG,KAAK,GAAG,MAAM,CAAC;YACxB,MAAM,GAAG,KAAK,GAAG,MAAM,CAAC;;YAExB,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,MAAM,GAAG,MAAM,KAAK,MAAM,GAAG,MAAM,CAAC,CAAC,CAAC;YACxD,MAAM,IAAI,IAAI,CAAC;YACf,MAAM,IAAI,IAAI,CAAC;YACf,MAAM,IAAI,KAAK,CAAC;YAChB,MAAM,IAAI,KAAK,CAAC;;YAEhB,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,MAAM,GAAG,EAAE,CAAC,EAAE,GAAG,IAAI,MAAM,GAAG,EAAE,CAAC,CAAC,CAAC;;YAErD,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,MAAM,GAAG,EAAE,CAAC,EAAE,GAAG,IAAI,MAAM,GAAG,EAAE,CAAC,CAAC,CAAC;;YAErD,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,MAAM,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,IAAI,MAAM,GAAG,EAAE,CAAC,CAAC,CAAC;;YAE1D,UAAU,EAAE,CAAC;SAChB;;QAED;YACI,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,EAAE,GAAG,GAAG,IAAI,EAAE,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,GAAG,GAAG,IAAI,EAAE,CAAC,CAAC,CAAC;;YAE7D,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,EAAE,GAAG,GAAG,IAAI,EAAE,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,GAAG,GAAG,IAAI,EAAE,CAAC,CAAC,CAAC;SAChE;KACJ;;IAED,GAAG,GAAG,MAAM,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;IAC/B,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;;IAErC,GAAG,GAAG,MAAM,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;IAC/B,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;;IAErC,KAAK,GAAG,EAAE,GAAG,GAAG,GAAG,CAAC,CAAC;IACrB,KAAK,GAAG,GAAG,GAAG,GAAG,CAAC;;IAElB,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,KAAK,GAAG,KAAK,KAAK,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC;IACpD,KAAK,IAAI,IAAI,CAAC;IACd,KAAK,IAAI,IAAI,CAAC;IACd,KAAK,IAAI,KAAK,CAAC;IACf,KAAK,IAAI,KAAK,CAAC;;IAEf,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,EAAE,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC;;IAEnD,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,EAAE,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC;;IAEnD,IAAI,OAAO,GAAG,gBAAgB,CAAC,OAAO,CAAC;;;;IAIvC,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,GAAG,CAAC,EAAE,EAAE,GAAG;IAC7C;QACI,OAAO,CAAC,IAAI,CAAC,UAAU,EAAE,UAAU,GAAG,CAAC,EAAE,UAAU,GAAG,CAAC,CAAC,CAAC;;QAEzD,UAAU,EAAE,CAAC;KAChB;CACJ;;;;;;;;;;;;AAYD,SAAS,eAAe,CAAC,YAAY,EAAE,gBAAgB;AACvD;IACI,IAAI,CAAC,GAAG,CAAC,CAAC;;IAEV,IAAI,KAAK,GAAG,YAAY,CAAC,KAAK,CAAC;IAC/B,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC;IACjD,IAAI,WAAW,GAAG,KAAK,CAAC,IAAI,KAAK,MAAM,CAAC,IAAI,IAAI,KAAK,CAAC,WAAW,CAAC;;IAElE,IAAI,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,EAAE,OAAO,EAAE;;IAEpC,IAAI,KAAK,GAAG,gBAAgB,CAAC,MAAM,CAAC;IACpC,IAAI,OAAO,GAAG,gBAAgB,CAAC,OAAO,CAAC;IACvC,IAAI,MAAM,GAAG,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;IAE/B,IAAI,UAAU,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;IAClC,IAAI,YAAY,GAAG,UAAU,CAAC;;IAE9B,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;;IAEjC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE;IAC3B;QACI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAC/C,OAAO,CAAC,IAAI,CAAC,YAAY,EAAE,YAAY,GAAG,CAAC,CAAC,CAAC;;QAE7C,YAAY,EAAE,CAAC;KAClB;;IAED,IAAI,WAAW;IACf;QACI,OAAO,CAAC,IAAI,CAAC,YAAY,EAAE,UAAU,CAAC,CAAC;KAC1C;CACJ;;;;;;;;;;;;;AAaD,IAAI,SAAS,GAAG;;IAEZ,KAAK,EAAE,SAAS,KAAK,CAAC,YAAY;IAClC;QACI,YAAY,CAAC,MAAM,GAAG,YAAY,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;KAC3D;;IAED,WAAW,EAAE,SAAS,WAAW,CAAC,YAAY,EAAE,gBAAgB;IAChE;QACI,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;QACjC,IAAI,KAAK,GAAG,YAAY,CAAC,KAAK,CAAC;QAC/B,IAAI,KAAK,GAAG,gBAAgB,CAAC,MAAM,CAAC;QACpC,IAAI,OAAO,GAAG,gBAAgB,CAAC,OAAO,CAAC;;QAEvC,IAAI,MAAM,CAAC,MAAM,IAAI,CAAC;QACtB;YACI,IAAI,SAAS,GAAG,EAAE,CAAC;;;YAGnB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE;YACrC;gBACI,IAAI,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;;gBAEpB,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;gBAClC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;aACvC;;;YAGD,IAAI,SAAS,GAAGS,QAAM,CAAC,MAAM,EAAE,SAAS,EAAE,CAAC,CAAC,CAAC;;YAE7C,IAAI,CAAC,SAAS;YACd;gBACI,OAAO;aACV;;YAED,IAAI,OAAO,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;;YAE/B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,SAAS,CAAC,MAAM,EAAE,GAAG,IAAI,CAAC;YAClD;gBACI,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,CAAC;gBACvC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC;gBAC3C,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC;aAC9C;;YAED,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,EAAE;YAC5C;gBACI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aAC3B;SACJ;KACJ;CACJ,CAAC;;;;;;;;;;;;;AAaF,IAAI,cAAc,GAAG;;IAEjB,KAAK,EAAE,SAAS,KAAK,CAAC,YAAY;IAClC;;;;QAII,IAAI,QAAQ,GAAG,YAAY,CAAC,KAAK,CAAC;QAClC,IAAI,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC;QACnB,IAAI,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC;QACnB,IAAI,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;QAC3B,IAAI,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;;QAE7B,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;;QAEjC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;QAElB,MAAM,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC;YACZ,CAAC,GAAG,KAAK,EAAE,CAAC;YACZ,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,MAAM;YACrB,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,CAAC;KACtB;;IAED,WAAW,EAAE,SAAS,WAAW,CAAC,YAAY,EAAE,gBAAgB;IAChE;QACI,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;QACjC,IAAI,KAAK,GAAG,gBAAgB,CAAC,MAAM,CAAC;;QAEpC,IAAI,OAAO,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;;QAE/B,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC;YAC3B,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC;YACpB,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC;YACpB,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;;QAE1B,gBAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,OAAO,GAAG,CAAC,EAAE,OAAO,GAAG,CAAC;YAC3D,OAAO,GAAG,CAAC,EAAE,OAAO,GAAG,CAAC,EAAE,OAAO,GAAG,CAAC,CAAC,CAAC;KAC9C;CACJ,CAAC;;;;;;;;;;;;;AAaF,IAAI,qBAAqB,GAAG;;IAExB,KAAK,EAAE,SAAS,KAAK,CAAC,YAAY;IAClC;QACI,IAAI,SAAS,GAAG,YAAY,CAAC,KAAK,CAAC;QACnC,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;QACjC,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC;QACpB,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC;QACpB,IAAI,KAAK,GAAG,SAAS,CAAC,KAAK,CAAC;QAC5B,IAAI,MAAM,GAAG,SAAS,CAAC,MAAM,CAAC;;QAE9B,IAAI,MAAM,GAAG,SAAS,CAAC,MAAM,CAAC;;QAE9B,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;QAElB,oBAAoB,CAAC,CAAC,EAAE,CAAC,GAAG,MAAM;YAC9B,CAAC,EAAE,CAAC;YACJ,CAAC,GAAG,MAAM,EAAE,CAAC;YACb,MAAM,CAAC,CAAC;QACZ,oBAAoB,CAAC,CAAC,GAAG,KAAK,GAAG,MAAM;YACnC,CAAC,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC;YACf,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,MAAM;YACrB,MAAM,CAAC,CAAC;QACZ,oBAAoB,CAAC,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,MAAM,GAAG,MAAM;YAC/C,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,MAAM;YACrB,CAAC,GAAG,KAAK,GAAG,MAAM,EAAE,CAAC,GAAG,MAAM;YAC9B,MAAM,CAAC,CAAC;QACZ,oBAAoB,CAAC,CAAC,GAAG,MAAM,EAAE,CAAC,GAAG,MAAM;YACvC,CAAC,EAAE,CAAC,GAAG,MAAM;YACb,CAAC,EAAE,CAAC,GAAG,MAAM,GAAG,MAAM;YACtB,MAAM,CAAC,CAAC;;;;KAIf;;IAED,WAAW,EAAE,SAAS,WAAW,CAAC,YAAY,EAAE,gBAAgB;IAChE;QACI,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;;QAEjC,IAAI,KAAK,GAAG,gBAAgB,CAAC,MAAM,CAAC;QACpC,IAAI,OAAO,GAAG,gBAAgB,CAAC,OAAO,CAAC;;QAEvC,IAAI,MAAM,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;;QAE9B,IAAI,SAAS,GAAGA,QAAM,CAAC,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;;QAExC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC;QACnD;YACI,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC;;YAEpC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC;;YAExC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC;SAC3C;;QAED,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,GAAG,GAAG,EAAE,GAAG,EAAE;QACvD;YACI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,MAAM,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC;SAC1C;KACJ;CACJ,CAAC;;;;;;;;;;;;;;;AAeF,SAAS,KAAK,CAAC,EAAE,EAAE,EAAE,EAAE,IAAI;AAC3B;IACI,IAAI,IAAI,GAAG,EAAE,GAAG,EAAE,CAAC;;IAEnB,OAAO,EAAE,IAAI,IAAI,GAAG,IAAI,CAAC,CAAC;CAC7B;;;;;;;;;;;;;;;;;;;AAmBD,SAAS,oBAAoB,CAAC,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG;AACnE;IACI,KAAK,GAAG,KAAK,KAAK,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;;IAE/B,IAAI,CAAC,GAAG,EAAE,CAAC;IACX,IAAI,MAAM,GAAG,GAAG,CAAC;;IAEjB,IAAI,EAAE,GAAG,CAAC,CAAC;IACX,IAAI,EAAE,GAAG,CAAC,CAAC;IACX,IAAI,EAAE,GAAG,CAAC,CAAC;IACX,IAAI,EAAE,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,GAAG,CAAC,CAAC;IACV,IAAI,CAAC,GAAG,CAAC,CAAC;;IAEV,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC;IAClC;QACI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;;;QAGV,EAAE,GAAG,KAAK,CAAC,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;QAC1B,EAAE,GAAG,KAAK,CAAC,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;QAC1B,EAAE,GAAG,KAAK,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;QACxB,EAAE,GAAG,KAAK,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;;;QAGxB,CAAC,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;QACrB,CAAC,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;;QAErB,MAAM,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;KACrB;;IAED,OAAO,MAAM,CAAC;CACjB;;AAED,IAAI,UAAU,GAAG,EAAE,CAAC;AACpB,IAAI,cAAc,GAAG,EAAE,CAAC;AACxB,IAAI,QAAQ,GAAG,IAAI,KAAK,EAAE,CAAC;;;;;;;;AAQ3B,IAAI,YAAY,GAAG,EAAE,CAAC;;AAEtB,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,SAAS,CAAC;AACtC,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,WAAW,CAAC;AACxC,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,WAAW,CAAC;AACxC,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,cAAc,CAAC;AAC3C,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,qBAAqB,CAAC;;;;;;;AAOlD,IAAI,SAAS,GAAG,SAAS,SAAS;AAClC;IACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;IACd,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;IACf,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;IACrB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;CACvB,CAAC;;;;;;;;;;;;;AAaF,IAAI,gBAAgB,iBAAiB,UAAU,aAAa,EAAE;IAC1D,SAAS,gBAAgB;IACzB;QACI,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;QAQzB,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC;;;;;;;;QAQjB,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC;;;;;;;;QAQjB,IAAI,CAAC,GAAG,GAAG,EAAE,CAAC;;;;;;;;QAQd,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;;;;;;;;QAQlB,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;;;;;;;;QAQrB,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;;;;;;;;QAQvB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;QAQf,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;;;;;;;;QAQrB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;;;;;;;;;QASrB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;;;;;;;QAQpB,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;;;;;;;;;QASpB,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;;;;;;;;QAQlB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;;;;;;;QAQpB,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;QAQ5B,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC,CAAC;;;;;;;;QAQtB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;QAEvB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;QAEvB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;;QAE1B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;;;;;;;QAQvB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;KAC7B;;IAED,KAAK,aAAa,GAAG,gBAAgB,CAAC,SAAS,GAAG,aAAa,CAAC;IAChE,gBAAgB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,aAAa,IAAI,aAAa,CAAC,SAAS,EAAE,CAAC;IACvF,gBAAgB,CAAC,SAAS,CAAC,WAAW,GAAG,gBAAgB,CAAC;;IAE1D,IAAI,kBAAkB,GAAG,EAAE,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;IAQ5D,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,IAAI,IAAI,CAAC,WAAW,KAAK,IAAI,CAAC,KAAK;QACnC;YACI,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC;YAC9B,IAAI,CAAC,eAAe,EAAE,CAAC;SAC1B;;QAED,OAAO,IAAI,CAAC,OAAO,CAAC;KACvB,CAAC;;;;;;IAMF,gBAAgB,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IAC3D;QACI,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC,CAAC;QACtB,IAAI,CAAC,KAAK,EAAE,CAAC;QACb,IAAI,CAAC,UAAU,EAAE,CAAC;QAClB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;QAEpB,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;QACvB,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;QACvB,IAAI,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC;QACpB,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;QACxB,IAAI,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,CAAC;;QAE3B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE;QAC9C;YACI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC;YACtC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;SAC1C;;QAED,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;;QAE1B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE;QAClD;YACI,IAAI,KAAK,IAAI,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;;YAE/B,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC;YAChB,KAAK,CAAC,WAAW,GAAG,CAAC,CAAC;YACtB,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC;YACnB,UAAU,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SAC1B;;QAED,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;KAC3B,CAAC;;;;;;;IAOF,gBAAgB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACjD;QACI,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,GAAG,CAAC;QAChC;YACI,IAAI,CAAC,UAAU,EAAE,CAAC;YAClB,IAAI,CAAC,UAAU,EAAE,CAAC;YAClB,IAAI,CAAC,YAAY,CAAC,MAAM,GAAG,CAAC,CAAC;SAChC;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;IAWF,gBAAgB,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM;IAC9F;QACI,IAAI,IAAI,GAAG,IAAI,YAAY,CAAC,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC;;QAEjE,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC7B,IAAI,CAAC,KAAK,EAAE,CAAC;;QAEb,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;IASF,gBAAgB,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,KAAK,EAAE,MAAM;IACtE;QACI,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,MAAM;QAC7B;YACI,OAAO,IAAI,CAAC;SACf;;QAED,IAAI,IAAI,GAAG,IAAI,YAAY,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;;QAEvD,IAAI,SAAS,GAAG,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,YAAY,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;QAEhE,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC,SAAS,CAAC;;QAErC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAE3B,IAAI,CAAC,KAAK,EAAE,CAAC;;QAEb,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;;IAcF,gBAAgB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,OAAO;IAC9D;QACI,aAAa,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;;;QAGpD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,EAAE,CAAC;QACjD;YACI,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;SAClC;;QAED,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;QACvB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;QACvB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC;QACpB,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC;QAChB,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;QACxB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC;QAC3B,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QACxB,IAAI,CAAC,YAAY,CAAC,MAAM,GAAG,CAAC,CAAC;QAC7B,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;QACzB,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;QAC1B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;QACtB,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;QACxB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;KACvB,CAAC;;;;;;;;IAQF,gBAAgB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,KAAK;IACxE;QACI,IAAI,YAAY,GAAG,IAAI,CAAC,YAAY,CAAC;;QAErC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,YAAY,CAAC,MAAM,EAAE,EAAE,CAAC;QAC5C;YACI,IAAI,IAAI,GAAG,YAAY,CAAC,CAAC,CAAC,CAAC;;YAE3B,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO;YAC3B;gBACI,SAAS;aACZ;;;YAGD,IAAI,IAAI,CAAC,KAAK;YACd;gBACI,IAAI,IAAI,CAAC,MAAM;gBACf;oBACI,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;iBAC7C;;gBAED;oBACI,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;iBAC5B;;gBAED,IAAI,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC;gBAC/C;oBACI,IAAI,IAAI,CAAC,KAAK;oBACd;wBACI,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,GAAG,EAAE;wBAChD;4BACI,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;;4BAE3B,IAAI,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC;4BAC/C;gCACI,OAAO,KAAK,CAAC;6BAChB;yBACJ;qBACJ;;oBAED,OAAO,IAAI,CAAC;iBACf;aACJ;SACJ;;QAED,OAAO,KAAK,CAAC;KAChB,CAAC;;;;;;IAMF,gBAAgB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IACjE;QACI,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI,CAAC,UAAU,EAAE,EAAE,OAAO,EAAE;QAC/C,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,KAAK,CAAC;QAClC;YACI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;;YAEtB,OAAO;SACV;;QAED,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI,CAAC,UAAU;QAClC;YACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,EAAE;YACjD;gBACI,IAAI,IAAI,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;;gBAEhC,IAAI,IAAI,CAAC,SAAS,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,WAAW,CAAC,KAAK,EAAE,EAAE,OAAO,EAAE;gBAC5E,IAAI,IAAI,CAAC,SAAS,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,WAAW,CAAC,KAAK,EAAE,EAAE,OAAO,EAAE;aAC/E;SACJ;;QAED,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC;;QAE7B,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;;QAEnB,IAAI,SAAS,GAAG,IAAI,CAAC;QACrB,IAAI,cAAc,GAAG,IAAI,CAAC;QAC1B,IAAI,YAAY,GAAG,CAAC,CAAC;QACrB,IAAI,aAAa,GAAG,KAAK,CAAC;;QAE1B,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC;QAC3B;YACI,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;YAElD,IAAI,KAAK,GAAG,SAAS,CAAC,KAAK,CAAC;;YAE5B,cAAc,GAAG,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC;YAC3C,YAAY,GAAG,KAAK,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;YACzC,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC;SAClC;;QAED,KAAK,IAAI,GAAG,GAAG,IAAI,CAAC,UAAU,EAAE,GAAG,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,GAAG,EAAE;QACrE;YACI,IAAI,CAAC,UAAU,EAAE,CAAC;;YAElB,IAAI,MAAM,GAAG,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC;YACpC,IAAI,OAAO,GAAG,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;YAExC,IAAI,SAAS,GAAG,MAAM,CAAC,SAAS,CAAC;YACjC,IAAI,SAAS,GAAG,MAAM,CAAC,SAAS,CAAC;;;YAGjC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;;YAEtB,IAAI,MAAM,CAAC,MAAM;YACjB;gBACI,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;aACtD;;YAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE;YAC1B;gBACI,IAAI,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,SAAS,GAAG,SAAS,CAAC;;gBAEhD,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,SAAS,EAAE;;gBAEnC,IAAI,WAAW,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC;;gBAE9C,IAAI,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;gBAClC,IAAI,WAAW,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;;gBAGzC,IAAI,SAAS;wBACL,cAAc,KAAK,WAAW;uBAC/B,YAAY,MAAM,OAAO,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;uBAChD,aAAa,KAAK,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC;gBAC1C;oBACI,SAAS,CAAC,IAAI,GAAG,OAAO,GAAG,SAAS,CAAC,KAAK,CAAC;oBAC3C,SAAS,CAAC,UAAU,GAAG,WAAW,GAAG,SAAS,CAAC,WAAW,CAAC;;oBAE3D,IAAI,SAAS,CAAC,IAAI,GAAG,CAAC;oBACtB;wBACI,SAAS,GAAG,IAAI,CAAC;qBACpB;iBACJ;;gBAED,IAAI,CAAC,SAAS;gBACd;oBACI,SAAS,GAAG,UAAU,CAAC,GAAG,EAAE,IAAI,IAAI,SAAS,EAAE,CAAC;oBAChD,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;oBAC7B,WAAW,CAAC,QAAQ,GAAG,UAAU,CAAC,MAAM,CAAC;oBACzC,cAAc,GAAG,WAAW,CAAC;oBAC7B,YAAY,GAAG,OAAO,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;oBAC7C,aAAa,GAAG,OAAO,CAAC,MAAM,CAAC;;oBAE/B,SAAS,CAAC,KAAK,GAAG,OAAO,CAAC;oBAC1B,SAAS,CAAC,KAAK,GAAG,OAAO,CAAC;oBAC1B,SAAS,CAAC,WAAW,GAAG,WAAW,CAAC;iBACvC;;gBAED,IAAI,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;gBAEnC,IAAI,CAAC,KAAK,CAAC;gBACX;oBACI,IAAI,MAAM,CAAC,KAAK,CAAC,MAAM;oBACvB;wBACI,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;wBAEhC,SAAS,CAAC,WAAW,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;qBACvC;;oBAED;wBACI,OAAO,CAAC,WAAW,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;qBACrC;iBACJ;;gBAED;oBACI,SAAS,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;;oBAExB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,KAAK,CAAC,MAAM,EAAE,GAAG,EAAE;oBAClD;wBACI,SAAS,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,CAAC,CAAC;qBACtC;iBACJ;;gBAED,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,IAAI,KAAK,CAAC;;gBAE5C,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,EAAE,OAAO,CAAC,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC;aAC/E;SACJ;;QAED,IAAI,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;QAChC,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;QAEpC,IAAI,CAAC,SAAS;QACd;;;YAGI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;;YAEtB,OAAO;SACV;;QAED,SAAS,CAAC,IAAI,GAAG,KAAK,GAAG,SAAS,CAAC,KAAK,CAAC;QACzC,SAAS,CAAC,UAAU,GAAG,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC;QACtD,IAAI,CAAC,aAAa,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;;;QAGnD,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,WAAW,EAAE,CAAC;;QAEpC,IAAI,IAAI,CAAC,SAAS;QAClB;YACI,IAAI,CAAC,UAAU,EAAE,CAAC;;YAElB,IAAI,CAAC,UAAU,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;;YAG7C,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE;YAClD;gBACI,IAAI,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;;gBAE9B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,IAAI,EAAE,GAAG,EAAE;gBACzC;oBACI,IAAI,OAAO,GAAG,KAAK,CAAC,KAAK,GAAG,GAAG,CAAC;;oBAEhC,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,WAAW,CAAC;iBACjF;aACJ;SACJ;;QAED;YACI,IAAI,CAAC,cAAc,EAAE,CAAC;SACzB;KACJ,CAAC;;;;;;;IAOF,gBAAgB,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;IAC7D;QACI,IAAI,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;;QAE3B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;QACvC;YACI,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM;YAC3B;gBACI,OAAO,KAAK,CAAC;aAChB;SACJ;;QAED,QAAQ,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,gBAAgB,CAAC,cAAc,GAAG,CAAC,EAAE;KACrE,CAAC;;;;;;IAMF,gBAAgB,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;IACnE;QACI,IAAI,IAAI,GAAG,EAAE,WAAW,CAAC,YAAY,CAAC;;QAEtC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE;QAC9C;YACI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC;YACtC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;SAC1C;;QAED,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;;QAE1B,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;QACnB,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;QACzB,IAAI,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;;QAEjC,IAAI,YAAY,IAAI,cAAc,CAAC,GAAG,EAAE,IAAI,IAAI,aAAa,EAAE,CAAC;;QAEhE,YAAY,CAAC,YAAY,GAAG,CAAC,CAAC;QAC9B,YAAY,CAAC,KAAK,GAAG,CAAC,CAAC;QACvB,YAAY,CAAC,IAAI,GAAG,CAAC,CAAC;QACtB,YAAY,CAAC,IAAI,GAAG,UAAU,CAAC,SAAS,CAAC;;QAEzC,IAAI,YAAY,GAAG,CAAC,CAAC;QACrB,IAAI,cAAc,GAAG,IAAI,CAAC;QAC1B,IAAI,SAAS,GAAG,CAAC,CAAC;QAClB,IAAI,MAAM,GAAG,KAAK,CAAC;QACnB,IAAI,QAAQ,GAAG,UAAU,CAAC,SAAS,CAAC;;QAEpC,IAAI,KAAK,GAAG,CAAC,CAAC;;QAEd,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;;;QAGlC,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE;QAClD;YACI,IAAI,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;;;YAG7B,IAAI,YAAY,GAAG,CAAC,CAAC;;YAErB,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;;YAEvB,IAAI,WAAW,GAAG,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC;;YAE5C,IAAI,MAAM,KAAK,CAAC,CAAC,KAAK,CAAC,MAAM;YAC7B;gBACI,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;gBACtB,QAAQ,GAAG,MAAM,GAAG,UAAU,CAAC,KAAK,GAAG,UAAU,CAAC,SAAS,CAAC;;;gBAG5D,cAAc,GAAG,IAAI,CAAC;gBACtB,YAAY,GAAG,YAAY,CAAC;gBAC5B,IAAI,EAAE,CAAC;aACV;;YAED,IAAI,cAAc,KAAK,WAAW;YAClC;gBACI,cAAc,GAAG,WAAW,CAAC;;gBAE7B,IAAI,WAAW,CAAC,aAAa,KAAK,IAAI;gBACtC;oBACI,IAAI,YAAY,KAAK,YAAY;oBACjC;wBACI,IAAI,EAAE,CAAC;;wBAEP,YAAY,GAAG,CAAC,CAAC;;wBAEjB,IAAI,YAAY,CAAC,IAAI,GAAG,CAAC;wBACzB;4BACI,YAAY,GAAG,cAAc,CAAC,GAAG,EAAE,IAAI,IAAI,aAAa,EAAE,CAAC;4BAC3D,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;yBACrC;;wBAED,YAAY,CAAC,KAAK,GAAG,KAAK,CAAC;wBAC3B,YAAY,CAAC,IAAI,GAAG,CAAC,CAAC;wBACtB,YAAY,CAAC,YAAY,GAAG,CAAC,CAAC;wBAC9B,YAAY,CAAC,IAAI,GAAG,QAAQ,CAAC;qBAChC;;;oBAGD,WAAW,CAAC,OAAO,GAAG,CAAC,CAAC;oBACxB,WAAW,CAAC,aAAa,GAAG,IAAI,CAAC;oBACjC,WAAW,CAAC,GAAG,GAAG,YAAY,CAAC;oBAC/B,WAAW,CAAC,QAAQ,GAAG,KAAK,CAAC;;oBAE7B,YAAY,CAAC,QAAQ,CAAC,YAAY,CAAC,YAAY,EAAE,CAAC,GAAG,WAAW,CAAC;oBACjE,YAAY,EAAE,CAAC;iBAClB;aACJ;;YAED,YAAY,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,CAAC;YAC/B,KAAK,IAAI,IAAI,CAAC,IAAI,CAAC;;YAEnB,SAAS,GAAG,WAAW,CAAC,GAAG,CAAC;;YAE5B,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;YAClE,IAAI,CAAC,aAAa,CAAC,UAAU,EAAE,SAAS,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;SAC9D;;QAED,WAAW,CAAC,YAAY,GAAG,IAAI,CAAC;;;;QAIhC,IAAI,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;;;QAGxB,IAAI,QAAQ,GAAG,IAAI,WAAW,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;QACrD,IAAI,GAAG,GAAG,IAAI,YAAY,CAAC,QAAQ,CAAC,CAAC;QACrC,IAAI,GAAG,GAAG,IAAI,WAAW,CAAC,QAAQ,CAAC,CAAC;;QAEpC,IAAI,CAAC,GAAG,CAAC,CAAC;;QAEV,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,GAAG,EAAE;QAC/C;YACI,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;YAC1B,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;;YAEhC,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;YACxB,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;;YAE9B,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;;YAEvB,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;SAC9B;;QAED,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QAC9B,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KAChD,CAAC;;;;;;;;IAQF,gBAAgB,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,KAAK;IACtE;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE;QACrC;YACI,IAAI,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;;YAEpB,IAAI,OAAO,GAAG,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;YAEtC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;;YAEpB,IAAI,IAAI,CAAC,MAAM;YACf;gBACI,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;aAClD;SACJ;KACJ,CAAC;;;;;;IAMF,gBAAgB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;IACrE;QACI,IAAI,IAAI,GAAG,QAAQ,CAAC;QACpB,IAAI,IAAI,GAAG,CAAC,QAAQ,CAAC;;QAErB,IAAI,IAAI,GAAG,QAAQ,CAAC;QACpB,IAAI,IAAI,GAAG,CAAC,QAAQ,CAAC;;QAErB,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM;QAC5B;YACI,IAAI,KAAK,GAAG,IAAI,CAAC;YACjB,IAAI,CAAC,GAAG,CAAC,CAAC;YACV,IAAI,CAAC,GAAG,CAAC,CAAC;YACV,IAAI,CAAC,GAAG,CAAC,CAAC;YACV,IAAI,CAAC,GAAG,CAAC,CAAC;;YAEV,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,EAAE;YACjD;gBACI,IAAI,IAAI,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;;gBAEhC,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;gBACrB,IAAI,SAAS,GAAG,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,GAAG,CAAC,CAAC;;gBAE1D,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;;gBAEnB,IAAI,IAAI,KAAK,MAAM,CAAC,IAAI,IAAI,IAAI,KAAK,MAAM,CAAC,IAAI;gBAChD;oBACI,CAAC,GAAG,KAAK,CAAC,CAAC,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;oBAC9B,CAAC,GAAG,KAAK,CAAC,CAAC,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;oBAC9B,CAAC,GAAG,KAAK,CAAC,KAAK,GAAG,SAAS,CAAC;oBAC5B,CAAC,GAAG,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC;;oBAE7B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;oBAC3B,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;;oBAEnC,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;oBAC3B,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;iBACtC;qBACI,IAAI,IAAI,KAAK,MAAM,CAAC,IAAI;gBAC7B;oBACI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;oBACZ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;oBACZ,CAAC,GAAG,KAAK,CAAC,MAAM,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;oBACnC,CAAC,GAAG,KAAK,CAAC,MAAM,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;;oBAEnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;oBACnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;;oBAEnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;oBACnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;iBACtC;qBACI,IAAI,IAAI,KAAK,MAAM,CAAC,IAAI;gBAC7B;oBACI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;oBACZ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;oBACZ,CAAC,GAAG,KAAK,CAAC,KAAK,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;oBAClC,CAAC,GAAG,KAAK,CAAC,MAAM,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;;oBAEnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;oBACnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;;oBAEnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;oBACnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;iBACtC;;gBAED;;oBAEI,IAAI,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;oBAC1B,IAAI,EAAE,GAAG,CAAC,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,CAAC;;oBAEX,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC;oBAC7C;wBACI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;wBACd,CAAC,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;wBAClB,EAAE,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;wBACnB,EAAE,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;wBACnB,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC;wBACtB,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC;wBACtB,CAAC,GAAG,SAAS,CAAC;wBACd,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;;wBAErC,IAAI,CAAC,GAAG,IAAI;wBACZ;4BACI,SAAS;yBACZ;;wBAED,EAAE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;wBAC7B,EAAE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;wBAC7B,EAAE,GAAG,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC;wBAClB,EAAE,GAAG,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC;;wBAElB,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC;wBACvC,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC;;wBAEvC,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC;wBACvC,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC;qBAC1C;iBACJ;aACJ;SACJ;;QAED;YACI,IAAI,GAAG,CAAC,CAAC;YACT,IAAI,GAAG,CAAC,CAAC;YACT,IAAI,GAAG,CAAC,CAAC;YACT,IAAI,GAAG,CAAC,CAAC;SACZ;;QAED,IAAI,OAAO,GAAG,IAAI,CAAC,aAAa,CAAC;;QAEjC,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,GAAG,OAAO,CAAC;QACnC,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,GAAG,OAAO,CAAC;;QAEnC,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,GAAG,OAAO,CAAC;QACnC,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,GAAG,OAAO,CAAC;KACtC,CAAC;;;;;;;;;IASF,gBAAgB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,MAAM,EAAE,MAAM;IACrF;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,EAAE;QAC1C;YACI,IAAI,CAAC,GAAG,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC;YACxB,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;;YAE5B,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,KAAK,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC;YAC9D,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,KAAK,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC;SACrE;KACJ,CAAC;;;;;;;;;;;IAWF,gBAAgB,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI;IACrF;;QAEI,IAAI,GAAG,GAAG,CAAC,KAAK,IAAI,EAAE,KAAK,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,GAAG,IAAI,KAAK,EAAE,CAAC,CAAC;;QAEpE,IAAI,IAAI,IAAI,eAAe,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;;QAExC,OAAO,IAAI,EAAE,GAAG,CAAC;QACjB;YACI,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SACrB;KACJ,CAAC;;;;;;;;;;IAUF,gBAAgB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,UAAU,EAAE,EAAE,EAAE,IAAI;IACvF;QACI,OAAO,IAAI,EAAE,GAAG,CAAC;QACjB;YACI,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;SACvB;KACJ,CAAC;;;;;;;;;;;;;IAaF,gBAAgB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM;IAC7F;QACI,IAAI,KAAK,GAAG,CAAC,CAAC;QACd,IAAI,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC;QAC1B,IAAI,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;;QAE1B,OAAO,KAAK,GAAG,IAAI;QACnB;YACI,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,KAAK,GAAG,KAAK,IAAI,CAAC,CAAC,CAAC;YACnC,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,GAAG,KAAK,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;;YAEzC,IAAI,MAAM;YACV;gBACI,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,KAAK,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC;;gBAErD,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,KAAK,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC;gBAChD,CAAC,GAAG,EAAE,CAAC;aACV;;YAED,KAAK,EAAE,CAAC;;YAER,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,KAAK,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC;SAC/C;;QAED,IAAI,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC;;QAEtC,IAAI,KAAK,CAAC,KAAK,GAAG,WAAW,CAAC,KAAK;eAC5B,KAAK,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM;QACxC;YACI,IAAI,CAAC,SAAS,CAAC,GAAG,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC;SAChD;KACJ,CAAC;;;;;;;;;;IAUF,gBAAgB,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,GAAG,EAAE,OAAO,EAAE,KAAK,EAAE,IAAI;IACpF;QACI,IAAI,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC;QACtC,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,MAAM,GAAG,KAAK,IAAI,IAAI,GAAG,CAAC,CAAC,CAAC;QAChC,IAAI,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;QAC1B,IAAI,MAAM,GAAG,KAAK,CAAC,KAAK,GAAG,WAAW,CAAC,KAAK,CAAC;QAC7C,IAAI,MAAM,GAAG,KAAK,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM,CAAC;QAC/C,IAAI,OAAO,GAAG,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC,KAAK,CAAC;QACpC,IAAI,OAAO,GAAG,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC;QACrC,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC;QACxC,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;;QAE5C,KAAK,IAAI,CAAC,GAAG,KAAK,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,IAAI,CAAC;QAC1C;YACI,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;YAChD,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;SACvD;QACD,OAAO,IAAI,IAAI,CAAC;QAChB,OAAO,IAAI,IAAI,CAAC;QAChB,KAAK,IAAI,GAAG,GAAG,KAAK,EAAE,GAAG,GAAG,MAAM,EAAE,GAAG,IAAI,CAAC;QAC5C;YACI,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,OAAO,IAAI,MAAM,CAAC;YACzC,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,OAAO,IAAI,MAAM,CAAC;SACpD;KACJ,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,gBAAgB,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAE1E,OAAO,gBAAgB,CAAC;CAC3B,CAAC,aAAa,CAAC,CAAC,CAAC;;;;;;;;;;;AAWlB,gBAAgB,CAAC,cAAc,GAAG,GAAG,CAAC;;;;;;;;AAQtC,IAAI,SAAS,iBAAiB,UAAU,SAAS,EAAE;IAC/C,SAAS,SAAS,IAAI;QAClB,SAAS,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;KACpC;;IAED,KAAK,SAAS,GAAG,SAAS,CAAC,SAAS,GAAG,SAAS,CAAC;IACjD,SAAS,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,SAAS,IAAI,SAAS,CAAC,SAAS,EAAE,CAAC;IACxE,SAAS,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,CAAC;;IAE5C,SAAS,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC1C;QACI,IAAI,GAAG,GAAG,IAAI,SAAS,EAAE,CAAC;;QAE1B,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;QACvB,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;QACvB,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC3B,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;QACzB,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC3B,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;QACvB,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC;QAC/B,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;;QAEzB,OAAO,GAAG,CAAC;KACd,CAAC;;;;IAIF,SAAS,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC1C;QACI,SAAS,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;QAGrC,IAAI,CAAC,KAAK,GAAG,GAAG,CAAC;;;;;;;;QAQjB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;QAQf,IAAI,CAAC,SAAS,GAAG,GAAG,CAAC;;;;;;;;QAQrB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;KACvB,CAAC;;IAEF,OAAO,SAAS,CAAC;CACpB,CAAC,SAAS,CAAC,CAAC,CAAC;;;;;;;AAOd,IAAI,WAAW,GAAG,SAAS,WAAW,IAAI,EAAE,CAAC;;AAE7C,WAAW,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG;AAC5F;IACI,IAAI,CAAC,GAAG,EAAE,CAAC;IACX,IAAI,MAAM,GAAG,GAAG,CAAC;IACjB,IAAI,CAAC,GAAG,GAAG,CAAC;IACZ,IAAI,EAAE,GAAG,GAAG,CAAC;IACb,IAAI,EAAE,GAAG,GAAG,CAAC;IACb,IAAI,EAAE,GAAG,GAAG,CAAC;IACb,IAAI,GAAG,GAAG,GAAG,CAAC;IACd,IAAI,GAAG,GAAG,GAAG,CAAC;IACd,IAAI,CAAC,GAAG,GAAG,CAAC;IACZ,IAAI,CAAC,GAAG,GAAG,CAAC;IACZ,IAAI,EAAE,GAAG,GAAG,CAAC;IACb,IAAI,EAAE,GAAG,GAAG,CAAC;IACb,IAAI,KAAK,GAAG,KAAK,CAAC;IAClB,IAAI,KAAK,GAAG,KAAK,CAAC;;IAElB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC;IAC3B;QACI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QACV,EAAE,GAAG,CAAC,GAAG,CAAC,CAAC;QACX,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QACZ,EAAE,IAAI,GAAG,GAAG,CAAC,CAAC,CAAC;QACf,GAAG,GAAG,EAAE,GAAG,EAAE,CAAC;QACd,GAAG,GAAG,GAAG,GAAG,EAAE,CAAC;;QAEf,CAAC,GAAG,CAAC,GAAG,GAAG,KAAK,KAAK,GAAG,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,IAAI,GAAG,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,IAAI,EAAE,GAAG,GAAG,CAAC,CAAC;QAChF,CAAC,GAAG,CAAC,GAAG,GAAG,KAAK,KAAK,GAAG,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,IAAI,EAAE,GAAG,GAAG,CAAC,CAAC;QAC9E,EAAE,GAAG,KAAK,GAAG,CAAC,CAAC;QACf,EAAE,GAAG,KAAK,GAAG,CAAC,CAAC;QACf,KAAK,GAAG,CAAC,CAAC;QACV,KAAK,GAAG,CAAC,CAAC;;QAEV,MAAM,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;KAC9C;;IAED,OAAO,MAAM,CAAC;CACjB,CAAC;;;;;;;;;;;;;;;;AAgBF,WAAW,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM;AAC9E;IACI,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;IACtC,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;IAEtC,MAAM,CAAC,MAAM,IAAI,CAAC,CAAC;;IAEnB,IAAI,CAAC,GAAG,eAAe,CAAC,cAAc;QAClC,WAAW,CAAC,WAAW,CAAC,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC;KACxE,CAAC;;IAEF,IAAI,EAAE,GAAG,CAAC,CAAC;IACX,IAAI,GAAG,GAAG,CAAC,CAAC;IACZ,IAAI,GAAG,GAAG,CAAC,CAAC;IACZ,IAAI,EAAE,GAAG,CAAC,CAAC;IACX,IAAI,EAAE,GAAG,CAAC,CAAC;;IAEX,MAAM,CAAC,IAAI,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;;IAE1B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC;IAClC;QACI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;;QAEV,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;QACb,GAAG,GAAG,EAAE,GAAG,EAAE,CAAC;QACd,GAAG,GAAG,GAAG,GAAG,EAAE,CAAC;;QAEf,EAAE,GAAG,CAAC,GAAG,CAAC,CAAC;QACX,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;;QAEZ,MAAM,CAAC,IAAI;YACP,CAAC,GAAG,GAAG,KAAK,KAAK,CAAC,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,IAAI,EAAE,GAAG,GAAG,CAAC;YACvE,CAAC,GAAG,GAAG,KAAK,KAAK,CAAC,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,IAAI,EAAE,GAAG,GAAG,CAAC;SAC1E,CAAC;KACL;CACJ,CAAC;;;;;;;AAOF,IAAI,cAAc,GAAG,SAAS,cAAc,IAAI,EAAE,CAAC;;AAEnD,cAAc,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG;AACnF;IACI,IAAI,EAAE,GAAG,KAAK,IAAI,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC;IACnC,IAAI,EAAE,GAAG,KAAK,IAAI,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC;IACnC,IAAI,EAAE,GAAG,CAAC,GAAG,GAAG,GAAG,KAAK,GAAG,GAAG,KAAK,CAAC,CAAC;IACrC,IAAI,EAAE,GAAG,CAAC,GAAG,GAAG,GAAG,KAAK,GAAG,GAAG,KAAK,CAAC,CAAC;IACrC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;IACtC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;IACtC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;;IAE9B,IAAI,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;IACnC,IAAI,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IACtB,IAAI,GAAG,GAAG,GAAG,GAAG,CAAC,GAAG,EAAE,CAAC;IACvB,IAAI,EAAE,GAAG,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAC5B,IAAI,EAAE,GAAG,CAAC,GAAG,EAAE,CAAC;;IAEhB,OAAO;QACH,CAAC,GAAG,GAAG,CAAC;eACD,EAAE,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;;gBAEjB,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;iBACvB,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,CAAC,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;aAC/C;SACJ,GAAG,GAAG,GAAG,CAAC,CAAC;CACnB,CAAC;;;;;;;;;;;;;AAaF,cAAc,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM;AACrE;IACI,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;IACtC,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;IAEtC,IAAI,CAAC,GAAG,eAAe,CAAC,cAAc;QAClC,cAAc,CAAC,WAAW,CAAC,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC;KAC/D,CAAC;;IAEF,IAAI,EAAE,GAAG,CAAC,CAAC;IACX,IAAI,EAAE,GAAG,CAAC,CAAC;;IAEX,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC;IAC3B;QACI,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;;QAEd,EAAE,GAAG,KAAK,IAAI,CAAC,GAAG,GAAG,KAAK,IAAI,CAAC,CAAC,CAAC;QACjC,EAAE,GAAG,KAAK,IAAI,CAAC,GAAG,GAAG,KAAK,IAAI,CAAC,CAAC,CAAC;;QAEjC,MAAM,CAAC,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;YACnD,EAAE,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;KACpD;CACJ,CAAC;;;;;;;AAOF,IAAI,QAAQ,GAAG,SAAS,QAAQ,IAAI,EAAE,CAAC;;AAEvC,QAAQ,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM;AACnE;IACI,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;IACtC,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;IAEtC,IAAI,EAAE,GAAG,KAAK,GAAG,EAAE,CAAC;IACpB,IAAI,EAAE,GAAG,KAAK,GAAG,EAAE,CAAC;IACpB,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;IACjB,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;IACjB,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;;IAEzC,IAAI,EAAE,GAAG,MAAM,IAAI,MAAM,KAAK,CAAC;IAC/B;QACI,IAAI,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,EAAE,IAAI,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,EAAE;QACxE;YACI,MAAM,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;SACvB;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,IAAI,EAAE,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;IAC/B,IAAI,EAAE,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;IAC/B,IAAI,EAAE,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;IAC/B,IAAI,EAAE,GAAG,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC;IACrC,IAAI,EAAE,GAAG,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC;IACrC,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;IACtB,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;IACtB,IAAI,EAAE,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;IAC/B,IAAI,EAAE,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;IAC/B,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC;IACxB,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC;IACxB,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC;IACxB,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC;IACxB,IAAI,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC;IAC9C,IAAI,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC;;IAE5C,OAAO;QACH,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;QACb,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;QACb,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,UAAU;QACtB,QAAQ,EAAE,QAAQ;QAClB,aAAa,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;KACrC,CAAC;CACL,CAAC;;;;;;;;;;;;;;;;;;;;AAoBF,QAAQ,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM;AACxG;IACI,IAAI,KAAK,GAAG,QAAQ,GAAG,UAAU,CAAC;IAClC,IAAI,CAAC,GAAG,eAAe,CAAC,cAAc;QAClC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,MAAM;QACxB,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,GAAG,EAAE;KACzC,CAAC;;IAEF,IAAI,KAAK,GAAG,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;IAC9B,IAAI,MAAM,GAAG,KAAK,GAAG,CAAC,CAAC;IACvB,IAAI,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;IAC7B,IAAI,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;IAC7B,IAAI,QAAQ,GAAG,CAAC,GAAG,CAAC,CAAC;IACrB,IAAI,SAAS,GAAG,CAAC,QAAQ,GAAG,CAAC,IAAI,QAAQ,CAAC;;IAE1C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,QAAQ,EAAE,EAAE,CAAC;IAClC;QACI,IAAI,IAAI,GAAG,CAAC,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;QAC/B,IAAI,KAAK,IAAI,CAAC,KAAK,IAAI,UAAU,IAAI,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC;QACrD,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;QACxB,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;;QAEzB,MAAM,CAAC,IAAI;YACP,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,KAAK,MAAM,GAAG,CAAC,CAAC,IAAI,MAAM,IAAI,EAAE;YAC7C,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,MAAM,GAAG,CAAC,CAAC,IAAI,MAAM,IAAI,EAAE;SACjD,CAAC;KACL;CACJ,CAAC;;;;;;;;;;;;;;;;AAgBF,IAAI,IAAI,iBAAiB,UAAU,OAAO,EAAE;IACxC,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE,QAAQ;IACzD;QACI,WAAW,GAAG,WAAW,IAAI,MAAM,GAAG,CAAC,CAAC;;QAExC,IAAI,UAAU,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,GAAG,CAAC,IAAI,QAAQ,CAAC;QAC/C,IAAI,GAAG,GAAG,MAAM,GAAG,CAAC,CAAC;QACrB,IAAI,KAAK,GAAG,IAAI,GAAG,GAAG,CAAC;QACvB,IAAI,OAAO,GAAG,EAAE,CAAC;;QAEjB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE;QAC5B;YACI,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,WAAW,GAAG,MAAM,CAAC;YACrC,IAAI,KAAK,GAAG,CAAC,CAAC,GAAG,KAAK,IAAI,UAAU,CAAC;;YAErC,OAAO,CAAC,IAAI;gBACR,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;gBACzB,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;aAC5B,CAAC;SACL;;QAED,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;KAC/B;;IAED,KAAK,OAAO,GAAG,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC;IACxC,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,IAAI,OAAO,CAAC,SAAS,EAAE,CAAC;IAC/D,IAAI,CAAC,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC;;IAElC,OAAO,IAAI,CAAC;CACf,CAAC,OAAO,CAAC,CAAC,CAAC;;AAEZ,IAAI,IAAI,GAAG,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;;;AAG/B,IAAI,eAAe,GAAG,EAAE,CAAC;;;;;;;;;;;;;;;AAezB,IAAI,QAAQ,iBAAiB,UAAU,SAAS,EAAE;IAC9C,SAAS,QAAQ,CAAC,QAAQ;IAC1B;QACI,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,IAAI,CAAC;;QAE3C,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;QAQrB,IAAI,CAAC,QAAQ,GAAG,QAAQ,IAAI,IAAI,gBAAgB,EAAE,CAAC;;QAEnD,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC;;;;;;;QAOzB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;QAOnB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,EAAE,CAAC;;;;;;;;QAQ3B,IAAI,CAAC,UAAU,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;;QAQlC,IAAI,CAAC,UAAU,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;;QAQlC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;;;QASpB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;;;;;;;QAQvB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;QAqBxB,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;;;;;;;;;QASlB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;;;;;;;;QAQpB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;QAEvB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;QACvB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;;;;;;;;QAQrB,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC;;;QAG1B,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;QACrB,IAAI,CAAC,SAAS,GAAG,WAAW,CAAC,MAAM,CAAC;KACvC;;IAED,KAAK,SAAS,GAAG,QAAQ,CAAC,SAAS,GAAG,SAAS,CAAC;IAChD,QAAQ,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,SAAS,IAAI,SAAS,CAAC,SAAS,EAAE,CAAC;IACvE,QAAQ,CAAC,SAAS,CAAC,WAAW,GAAG,QAAQ,CAAC;;IAE1C,IAAI,kBAAkB,GAAG,EAAE,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;IAQtJ,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACzC;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,OAAO,IAAI,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;KACtC,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG,UAAU,KAAK;IAClD;QACI,IAAI,CAAC,KAAK,CAAC,SAAS,GAAG,KAAK,CAAC;KAChC,CAAC;;IAEF,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG;IACnC;QACI,OAAO,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC;KAC/B,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;IACF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,KAAK;IAC7C;QACI,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;KACtB,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,UAAU,CAAC;KAC1B,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,UAAU,CAAC;KAC1B,CAAC;;;;;;;;;;;;;IAaF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM;IACzF;QACI,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,SAAS,KAAK,KAAK,CAAC,GAAG,SAAS,GAAG,GAAG,CAAC;QAC5C,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,KAAK,CAAC;;QAExC,IAAI,CAAC,gBAAgB,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC;;QAEnF,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;;IAcF,QAAQ,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,KAAK;QACzF,MAAM,EAAE,SAAS,EAAE,MAAM;IAC7B;QACI,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,OAAO,CAAC,KAAK,CAAC;QAClD,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,QAAQ,CAAC;QACzC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC;QACvC,KAAK,SAAS,KAAK,KAAK,CAAC,GAAG,SAAS,GAAG,GAAG,CAAC;QAC5C,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,KAAK,CAAC;;QAExC,IAAI,IAAI,CAAC,WAAW;QACpB;YACI,IAAI,CAAC,SAAS,EAAE,CAAC;SACpB;;QAED,IAAI,OAAO,GAAG,KAAK,GAAG,CAAC,IAAI,KAAK,GAAG,CAAC,CAAC;;QAErC,IAAI,CAAC,OAAO;QACZ;YACI,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC;SAC3B;;QAED;YACI,IAAI,MAAM;YACV;gBACI,MAAM,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC;gBACxB,MAAM,CAAC,MAAM,EAAE,CAAC;aACnB;;YAED,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE;gBAC3B,KAAK,EAAE,KAAK;gBACZ,KAAK,EAAE,KAAK;gBACZ,KAAK,EAAE,KAAK;gBACZ,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE,OAAO;gBAChB,SAAS,EAAE,SAAS;gBACpB,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE,OAAO;aACnB,CAAC,CAAC;SACN;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;IACjD;QACI,IAAI,IAAI,CAAC,WAAW;QACpB;YACI,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC;YACrC,IAAI,GAAG,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,CAAC;;YAEzC,IAAI,GAAG,GAAG,CAAC;YACX;gBACI,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;gBACjC,IAAI,CAAC,WAAW,GAAG,IAAI,OAAO,EAAE,CAAC;gBACjC,IAAI,CAAC,WAAW,CAAC,WAAW,GAAG,KAAK,CAAC;gBACrC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;aAClE;SACJ;;QAED;YACI,IAAI,CAAC,WAAW,GAAG,IAAI,OAAO,EAAE,CAAC;YACjC,IAAI,CAAC,WAAW,CAAC,WAAW,GAAG,KAAK,CAAC;SACxC;KACJ,CAAC;;;;;;IAMF,QAAQ,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IACnD;QACI,IAAI,IAAI,CAAC,WAAW;QACpB;YACI,IAAI,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC;YACtC;gBACI,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;gBACjC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;aAC3B;;YAED;gBACI,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;aACtC;SACJ;KACJ,CAAC;;;;;;;;;IASF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,CAAC,EAAE,CAAC;IACjD;QACI,IAAI,CAAC,SAAS,EAAE,CAAC;QACjB,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QAC/B,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;;QAE/B,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;IAUF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,CAAC,EAAE,CAAC;IACjD;QACI,IAAI,CAAC,IAAI,CAAC,WAAW;QACrB;YACI,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SACrB;;;QAGD,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC;QACrC,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;QACtC,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;QAEtC,IAAI,KAAK,KAAK,CAAC,IAAI,KAAK,KAAK,CAAC;QAC9B;YACI,MAAM,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SACrB;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;IASF,QAAQ,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,CAAC,EAAE,CAAC;IACzD;QACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;;QAE1B,IAAI,IAAI,CAAC,WAAW;QACpB;YACI,IAAI,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,KAAK,CAAC;YACxC;gBACI,IAAI,CAAC,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;aACpC;SACJ;;QAED;YACI,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SACrB;KACJ,CAAC;;;;;;;;;;;;IAYF,QAAQ,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG;IACnF;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC;;QAErC,IAAI,MAAM,CAAC,MAAM,KAAK,CAAC;QACvB;YACI,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SACrB;;QAED,cAAc,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,CAAC,CAAC;;QAEnD,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;IAaF,QAAQ,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG;IACzF;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,WAAW,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;;QAE7E,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;;IAcF,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM;IACjE;QACI,IAAI,CAAC,UAAU,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;;QAExB,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC;;QAErC,IAAI,MAAM,GAAG,QAAQ,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;;QAE9D,IAAI,MAAM;QACV;YACI,IAAI,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;YACnB,IAAI,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;YACnB,IAAI,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC;YAC7B,IAAI,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;YACnC,IAAI,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC;YAC/B,IAAI,aAAa,GAAG,MAAM,CAAC,aAAa,CAAC;;YAEzC,IAAI,CAAC,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,QAAQ,EAAE,UAAU,EAAE,QAAQ,EAAE,aAAa,CAAC,CAAC;SACnE;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;;;;IAgBF,QAAQ,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,aAAa;IAC1F;QACI,KAAK,aAAa,KAAK,KAAK,CAAC,GAAG,aAAa,GAAG,KAAK,CAAC;;QAEtD,IAAI,UAAU,KAAK,QAAQ;QAC3B;YACI,OAAO,IAAI,CAAC;SACf;;QAED,IAAI,CAAC,aAAa,IAAI,QAAQ,IAAI,UAAU;QAC5C;YACI,QAAQ,IAAI,IAAI,CAAC;SACpB;aACI,IAAI,aAAa,IAAI,UAAU,IAAI,QAAQ;QAChD;YACI,UAAU,IAAI,IAAI,CAAC;SACtB;;QAED,IAAI,KAAK,GAAG,QAAQ,GAAG,UAAU,CAAC;;QAElC,IAAI,KAAK,KAAK,CAAC;QACf;YACI,OAAO,IAAI,CAAC;SACf;;QAED,IAAI,MAAM,GAAG,EAAE,IAAI,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,MAAM,CAAC,CAAC;QAClD,IAAI,MAAM,GAAG,EAAE,IAAI,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,MAAM,CAAC,CAAC;QAClD,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC;;;QAGtC,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC;;QAE/D,IAAI,MAAM;QACV;;;;YAII,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC;YACzD,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC;;YAEzD,IAAI,KAAK,GAAG,GAAG,IAAI,KAAK,GAAG,GAAG;YAC9B,CAAC;;YAED;gBACI,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;aAC/B;SACJ;;QAED;YACI,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;YAC5B,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC;SACpC;;QAED,QAAQ,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,CAAC,CAAC;;QAE1F,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;IAUF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,KAAK,EAAE,KAAK;IAC/D;QACI,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;;QAElC,OAAO,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;KAC7D,CAAC;;;;;;;;;;;IAWF,QAAQ,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM;IAC9F;QACI,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,OAAO,CAAC,KAAK,CAAC;QAClD,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,QAAQ,CAAC;QACzC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC;;QAEvC,IAAI,IAAI,CAAC,WAAW;QACpB;YACI,IAAI,CAAC,SAAS,EAAE,CAAC;SACpB;;QAED,IAAI,OAAO,GAAG,KAAK,GAAG,CAAC,CAAC;;QAExB,IAAI,CAAC,OAAO;QACZ;YACI,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC;SAC3B;;QAED;YACI,IAAI,MAAM;YACV;gBACI,MAAM,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC;gBACxB,MAAM,CAAC,MAAM,EAAE,CAAC;aACnB;;YAED,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE;gBAC3B,KAAK,EAAE,KAAK;gBACZ,KAAK,EAAE,KAAK;gBACZ,OAAO,EAAE,OAAO;gBAChB,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE,OAAO;aACnB,CAAC,CAAC;SACN;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;IAOF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAC7C;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC;;QAExB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;IAWF,QAAQ,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM;IACpE;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC;KAC7D,CAAC;;;;;;;;;;;;IAYF,QAAQ,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;IAC1F;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,gBAAgB,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC;KAC5E,CAAC;;;;;;;;;;IAUF,QAAQ,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM;IACjE;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC;KACnD,CAAC;;;;;;;;;;;IAWF,QAAQ,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM;IAC1E;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC;KAC3D,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,IAAI;IAC3D;QACI,IAAI,WAAW,GAAG,SAAS,CAAC;;;;QAI5B,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,IAAI,WAAW,GAAG,IAAI,CAAC;;;QAGvB,IAAI,MAAM,CAAC,MAAM;QACjB;YACI,WAAW,GAAG,MAAM,CAAC,WAAW,CAAC;YACjC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;SAC1B;;QAED,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC;QAC1B;;;YAGI,MAAM,GAAG,IAAI,KAAK,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;;YAErC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,EAAE,CAAC;YACtC;gBACI,MAAM,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;aAC9B;SACJ;;QAED,IAAI,KAAK,GAAG,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC;;QAEhC,KAAK,CAAC,WAAW,GAAG,WAAW,CAAC;;QAEhC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;;QAEtB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,KAAK;IACxD;QACI,IAAI,CAAC,IAAI,CAAC,SAAS;QACnB;YACI,IAAI,CAAC,QAAQ,CAAC,SAAS;gBACnB,KAAK;gBACL,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE;gBACvB,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE;gBACvB,IAAI,CAAC,OAAO;aACf,CAAC;SACL;;QAED;YACI,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;SAC/C;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;IAaF,QAAQ,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE,QAAQ;IAC5F;QACI,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,CAAC,CAAC;;QAExC,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE,QAAQ,CAAC,CAAC,CAAC;KAClF,CAAC;;;;;;;IAOF,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACzC;QACI,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC;QACxB,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC;;QAExB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QACvB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;QAExB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IACnD;;QAEI,OAAO,KAAK,CAAC;;;;KAIhB,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,QAAQ;IACvD;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;;;;QAI7B,QAAQ,CAAC,aAAa,EAAE,CAAC;;QAEzB,IAAI,QAAQ,CAAC,SAAS;QACtB;YACI,IAAI,IAAI,CAAC,UAAU,KAAK,QAAQ,CAAC,UAAU;YAC3C;gBACI,IAAI,CAAC,gBAAgB,EAAE,CAAC;aAC3B;;YAED,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC;SACjC;;QAED;;YAEI,QAAQ,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;;YAEvB,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;SAChC;KACJ,CAAC;;;;;;;IAOF,QAAQ,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IAC/D;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;QAC7B,IAAI,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC;;QAE/B,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;QAClB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;QACpB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;QACvB,IAAI,CAAC,UAAU,GAAG,QAAQ,CAAC,UAAU,CAAC;;QAEtC,IAAI,CAAC,UAAU,GAAG,IAAI,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;;QAEpD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE;QACvD;YACI,IAAI,EAAE,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;YAC7B,IAAI,KAAK,GAAG,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC;YAC3B,IAAI,UAAU,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM;gBACpD,EAAE,CAAC,WAAW,GAAG,CAAC,GAAG,CAAC;gBACtB,EAAE,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;;YAEvB,IAAI,GAAG,GAAG,IAAI,YAAY,CAAC,QAAQ,CAAC,UAAU,CAAC,MAAM;gBACjD,EAAE,CAAC,WAAW,GAAG,CAAC,GAAG,CAAC;gBACtB,EAAE,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;;YAEvB,IAAI,OAAO,GAAG,IAAI,WAAW,CAAC,QAAQ,CAAC,aAAa,CAAC,MAAM;gBACvD,EAAE,CAAC,KAAK,GAAG,CAAC;gBACZ,EAAE,CAAC,IAAI,CAAC,CAAC;;YAEb,IAAI,KAAK,GAAG;gBACR,UAAU,EAAE,UAAU;gBACtB,SAAS,EAAE,SAAS;gBACpB,OAAO,EAAE,OAAO;gBAChB,GAAG,EAAE,GAAG;gBACR,SAAS,EAAE,OAAO,CAAC,KAAK,CAAC;gBACzB,QAAQ,EAAE,KAAK;gBACf,QAAQ,EAAE,EAAE,CAAC,KAAK,CAAC,OAAO;gBAC1B,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK;gBACrB,UAAU,EAAE,CAAC,EAAE,CAAC;;YAEpB,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;SAC3B;KACJ,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,QAAQ;IACrE;QACI,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM;QACxB;YACI,OAAO;SACV;;QAED,QAAQ,CAAC,KAAK,CAAC,iBAAiB,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;;QAEpE,IAAI,CAAC,iBAAiB,EAAE,CAAC;QACzB,IAAI,CAAC,cAAc,EAAE,CAAC;;QAEtB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE;QACnD;YACI,IAAI,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;;YAE5B,KAAK,CAAC,UAAU,GAAG,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC,KAAK,CAAC;;YAEjD,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;SACnD;KACJ,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,QAAQ;IACnE;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,oBAAoB,CAAC,QAAQ,CAAC,CAAC;;QAEjD,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;QAC7B,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACrB,IAAI,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;QACjC,IAAI,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC;QAC/B,IAAI,SAAS,GAAG,QAAQ,CAAC,SAAS,CAAC;;;QAGnC,QAAQ,CAAC,iBAAiB,GAAG,IAAI,CAAC,SAAS,CAAC,cAAc,CAAC;;;QAG3D,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,IAAI,GAAG,IAAI,UAAU,CAAC;QAC9D,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,GAAG,IAAI,UAAU,CAAC;QAC7D,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,GAAG,IAAI,IAAI,GAAG,IAAI,UAAU,CAAC;QACtD,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC;;;;;;;QAO9B,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC7B,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;;;QAGzC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;;;QAG/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE;QAChD;YACI,IAAI,CAAC,qBAAqB,CAAC,QAAQ,EAAE,QAAQ,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;SAC/D;KACJ,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,qBAAqB,GAAG,SAAS,qBAAqB,EAAE,QAAQ,EAAE,QAAQ;IAC7F;QACI,IAAI,iBAAiB,GAAG,QAAQ,CAAC,YAAY,CAAC;;QAE9C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,iBAAiB,EAAE,CAAC,EAAE;QAC1C;YACI,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SAClD;;QAED,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC;KACxE,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,oBAAoB,GAAG,SAAS,oBAAoB,EAAE,QAAQ;IACjF;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;;QAEzB,IAAI,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;;QAEjC,IAAI,CAAC,MAAM;QACX;;;;YAII,IAAI,CAAC,eAAe,CAAC,UAAU,CAAC;YAChC;gBACI,IAAI,YAAY,GAAG,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC;;gBAEtC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;gBAC3B;oBACI,YAAY,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;iBACvB;;gBAED,IAAI,QAAQ,GAAG;oBACX,IAAI,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;oBACpC,iBAAiB,EAAE,IAAI,MAAM,EAAE;oBAC/B,OAAO,EAAE,YAAY,CAAC,IAAI,CAAC,EAAE,SAAS,EAAE,YAAY,EAAE,EAAE,IAAI,CAAC;iBAChE,CAAC;;gBAEF,IAAI,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC;;gBAE3D,eAAe,CAAC,UAAU,CAAC,GAAG,IAAI,MAAM,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;aAC/D;;YAED,MAAM,GAAG,eAAe,CAAC,UAAU,CAAC,CAAC;SACxC;;QAED,OAAO,MAAM,CAAC;KACjB,CAAC;;;;;;;IAOF,QAAQ,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IAC/D;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;QAClB,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC;;QAE9B,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC;KAC7E,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,KAAK;IAChE;QACI,IAAI,CAAC,cAAc,CAAC,YAAY,CAAC,KAAK,EAAE,QAAQ,CAAC,WAAW,CAAC,CAAC;;QAE9D,OAAO,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;KAC5D,CAAC;;;;;;IAMF,QAAQ,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;IAC3D;QACI,IAAI,IAAI,CAAC,SAAS,KAAK,IAAI,CAAC,IAAI;QAChC;YACI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC;;YAE3B,IAAI,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;;YAEvC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;YAC5C;gBACI,IAAI,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;;gBAE5B,IAAI,SAAS,GAAG,KAAK,CAAC,SAAS,CAAC;;gBAEhC,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC;gBAC1C,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC;gBAC1C,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC;;;gBAG1C,IAAI,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;;gBAE3C,KAAK,CAAC,QAAQ,GAAG,CAAC,KAAK,IAAI,EAAE;2BAClB,KAAK,GAAG,MAAM,CAAC;2BACf,CAAC,KAAK,GAAG,IAAI,KAAK,EAAE,CAAC,CAAC;aACpC;SACJ;KACJ,CAAC;;;;;;;IAOF,QAAQ,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB;IACjE;QACI,IAAI,IAAI,CAAC,YAAY,KAAK,IAAI,CAAC,SAAS,CAAC,QAAQ;QACjD;YACI,OAAO;SACV;;QAED,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC;;QAE5C,IAAI,EAAE,GAAG,IAAI,CAAC,SAAS,CAAC,cAAc,CAAC;QACvC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;QACf,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;;QAEf,IAAI,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC;QAChC,IAAI,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;;QAEjC,IAAI,KAAK,GAAG,CAAC,CAAC;;QAEd,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC;QACvC;YACI,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;YAChB,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;;YAEpB,UAAU,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,CAAC;YAC7C,UAAU,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,CAAC;SAChD;KACJ,CAAC;;;;;;;IAOF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;IACjD;QACI,IAAI,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;;QAEnC,IAAI,WAAW;QACf;;YAEI,WAAW,CAAC,WAAW,GAAG,IAAI,CAAC;SAClC;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,MAAM;IACzD;QACI,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;;QAEtB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;IAUF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;IACjD;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;QAClB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;;QAEtB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAC7C;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;QAClB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;QAEvB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;;IAcF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,OAAO;IACtD;QACI,SAAS,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;;QAEhD,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC;QACzB,IAAI,IAAI,CAAC,QAAQ,CAAC,QAAQ,KAAK,CAAC;QAChC;YACI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC;SAC3B;;QAED,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QACxB,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC;QAC1B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;QACvB,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC;QAC1B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;QACvB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;QACvB,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;QACxB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;QAEpB,SAAS,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;KACnD,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,QAAQ,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAElE,OAAO,QAAQ,CAAC;CACnB,CAAC,SAAS,CAAC,CAAC,CAAC;;;;;;;;;AASd,QAAQ,CAAC,WAAW,GAAG,IAAI,KAAK,EAAE,CAAC;;ACz7GnC;;;;;;;AAOA,AAMA;AACA,IAAI,SAAS,GAAG,IAAI,KAAK,EAAE,CAAC;AAC5B,IAAI,OAAO,GAAG,IAAI,WAAW,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA4BlD,IAAI,MAAM,iBAAiB,UAAU,SAAS,EAAE;IAC5C,SAAS,MAAM,CAAC,OAAO;IACvB;QACI,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;QAoBrB,IAAI,CAAC,OAAO,GAAG,IAAI,eAAe;YAC9B,IAAI,CAAC,eAAe;YACpB,IAAI;aACH,OAAO,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC,GAAG,CAAC;aACrC,OAAO,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC,GAAG,CAAC;SACzC,CAAC;;;;;;;;QAQF,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;;;;;;QAQrB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;;;;;;;;QAQhB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;;;QASjB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;QAClB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QACrB,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;;;;;;;;;QASrB,IAAI,CAAC,SAAS,GAAG,WAAW,CAAC,MAAM,CAAC;;;;;;;QAOpC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;;;;QAUnB,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC;;;;;;;;;QAS5B,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC;;;QAGhB,IAAI,CAAC,OAAO,GAAG,OAAO,IAAI,OAAO,CAAC,KAAK,CAAC;;;;;;;;QAQxC,IAAI,CAAC,UAAU,GAAG,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;;;;;;;;QAQtC,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;;QAE9B,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;QACvB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;;QAErB,IAAI,CAAC,mBAAmB,GAAG,CAAC,CAAC,CAAC;QAC9B,IAAI,CAAC,iBAAiB,GAAG,CAAC,CAAC,CAAC;;;;QAI5B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;QACd,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;;QASf,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC;;;;;;QAM1B,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;;;;;;QAQrB,IAAI,CAAC,YAAY,GAAG,QAAQ,CAAC,YAAY,CAAC;KAC7C;;IAED,KAAK,SAAS,GAAG,MAAM,CAAC,SAAS,GAAG,SAAS,CAAC;IAC9C,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,SAAS,IAAI,SAAS,CAAC,SAAS,EAAE,CAAC;IACrE,MAAM,CAAC,SAAS,CAAC,WAAW,GAAG,MAAM,CAAC;;IAEtC,IAAI,kBAAkB,GAAG,EAAE,WAAW,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,OAAO,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;IAO1N,MAAM,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IAC7D;QACI,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;QACrB,IAAI,CAAC,iBAAiB,GAAG,CAAC,CAAC,CAAC;QAC5B,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC;;;QAG5B,IAAI,IAAI,CAAC,MAAM;QACf;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,GAAGd,MAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;SAC9E;;QAED,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,GAAGA,MAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC;SAChF;KACJ,CAAC;;;;;;;IAOF,MAAM,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;IAC3D;QACI,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;QACvB,IAAI,CAAC,mBAAmB,GAAG,CAAC,CAAC,CAAC;KACjC,CAAC;;;;;IAKF,MAAM,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB;IAC/D;QACI,IAAI,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC;;QAE5B,IAAI,IAAI,CAAC,YAAY,KAAK,IAAI,CAAC,SAAS,CAAC,QAAQ,IAAI,IAAI,CAAC,UAAU,KAAK,OAAO,CAAC,SAAS;QAC1F;YACI,OAAO;SACV;;;QAGD,IAAI,IAAI,CAAC,UAAU,KAAK,OAAO,CAAC,SAAS;QACzC;YACI,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC;SAC5C;;QAED,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC;QAC5C,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC,SAAS,CAAC;;;;QAIpC,IAAI,EAAE,GAAG,IAAI,CAAC,SAAS,CAAC,cAAc,CAAC;QACvC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;QACf,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;QACf,IAAI,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;QACjC,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;QACxB,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;QACxB,IAAI,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC;;QAE1B,IAAI,EAAE,GAAG,CAAC,CAAC;QACX,IAAI,EAAE,GAAG,CAAC,CAAC;QACX,IAAI,EAAE,GAAG,CAAC,CAAC;QACX,IAAI,EAAE,GAAG,CAAC,CAAC;;QAEX,IAAI,IAAI;QACR;;;YAGI,EAAE,GAAG,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;YACvC,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;;YAErB,EAAE,GAAG,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;YACxC,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC;SACzB;;QAED;YACI,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;YAC7B,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;;YAErB,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC;YAC9B,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC;SACzB;;;QAGD,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;;QAGzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;;QAGzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;;QAGzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;QAEzC,IAAI,IAAI,CAAC,YAAY;QACrB;YACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE;YAC1B;gBACI,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;aAC7C;SACJ;KACJ,CAAC;;;;;;IAMF,MAAM,CAAC,SAAS,CAAC,wBAAwB,GAAG,SAAS,wBAAwB;IAC7E;QACI,IAAI,CAAC,IAAI,CAAC,iBAAiB;QAC3B;YACI,IAAI,CAAC,iBAAiB,GAAG,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;SAChD;aACI,IAAI,IAAI,CAAC,mBAAmB,KAAK,IAAI,CAAC,SAAS,CAAC,QAAQ,IAAI,IAAI,CAAC,iBAAiB,KAAK,IAAI,CAAC,QAAQ,CAAC,SAAS;QACnH;YACI,OAAO;SACV;;QAED,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC;QACnD,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC;;;QAGjD,IAAI,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC;QAC5B,IAAI,UAAU,GAAG,IAAI,CAAC,iBAAiB,CAAC;QACxC,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;QACxB,IAAI,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC;;;QAG1B,IAAI,EAAE,GAAG,IAAI,CAAC,SAAS,CAAC,cAAc,CAAC;QACvC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;QACf,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;;QAEf,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;QACjC,IAAI,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;;QAEzB,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC;QAClC,IAAI,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC;;;QAG1B,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;;QAGzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;;QAGzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;;QAGzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;KAC5C,CAAC;;;;;;;;;IASF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,QAAQ;IACrD;QACI,IAAI,CAAC,iBAAiB,EAAE,CAAC;;QAEzB,QAAQ,CAAC,KAAK,CAAC,iBAAiB,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;QACpE,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;KAClD,CAAC;;;;;;;IAOF,MAAM,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IAC7D;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC;QAC9B,IAAI,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC;;;QAG9B,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,KAAK,KAAK,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,MAAM,KAAK,IAAI,CAAC,MAAM,CAAC;QACvE;;YAEI,IAAI,CAAC,iBAAiB,EAAE,CAAC;YACzB,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;SACzC;;QAED;;YAEI,IAAI,CAAC,wBAAwB,EAAE,CAAC;YAChC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;SAChD;KACJ,CAAC;;;;;;;;IAQF,MAAM,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,IAAI;IAC/D;;QAEI,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,KAAK,CAAC;QAC9B;YACI,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC;YAChE,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC;YACjE,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;YACrE,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,IAAI,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;;YAEtE,IAAI,CAAC,IAAI;YACT;gBACI,IAAI,CAAC,IAAI,CAAC,gBAAgB;gBAC1B;oBACI,IAAI,CAAC,gBAAgB,GAAG,IAAI,SAAS,EAAE,CAAC;iBAC3C;;gBAED,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC;aAChC;;YAED,OAAO,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;SAC1C;;QAED,OAAO,SAAS,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;KAC9D,CAAC;;;;;;;;IAQF,MAAM,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,KAAK;IAC9D;QACI,IAAI,CAAC,cAAc,CAAC,YAAY,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;;QAEnD,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;QACrC,IAAI,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC;QACvC,IAAI,EAAE,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;QAChC,IAAI,EAAE,GAAG,CAAC,CAAC;;QAEX,IAAI,SAAS,CAAC,CAAC,IAAI,EAAE,IAAI,SAAS,CAAC,CAAC,GAAG,EAAE,GAAG,KAAK;QACjD;YACI,EAAE,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;;YAE7B,IAAI,SAAS,CAAC,CAAC,IAAI,EAAE,IAAI,SAAS,CAAC,CAAC,GAAG,EAAE,GAAG,MAAM;YAClD;gBACI,OAAO,IAAI,CAAC;aACf;SACJ;;QAED,OAAO,KAAK,CAAC;KAChB,CAAC;;;;;;;;;;;;IAYF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,OAAO;IACpD;QACI,SAAS,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;;QAEhD,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,EAAE,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC,CAAC;;QAEzD,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;QAEpB,IAAI,cAAc,GAAG,OAAO,OAAO,KAAK,SAAS,GAAG,OAAO,GAAG,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC;;QAEzF,IAAI,cAAc;QAClB;YACI,IAAI,kBAAkB,GAAG,OAAO,OAAO,KAAK,SAAS,GAAG,OAAO,GAAG,OAAO,IAAI,OAAO,CAAC,WAAW,CAAC;;YAEjG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,kBAAkB,CAAC,CAAC;SAC/C;;QAED,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;KACtB,CAAC;;;;;;;;;;;;;IAaF,MAAM,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,OAAO;IAC5C;QACI,IAAI,OAAO,GAAG,CAAC,MAAM,YAAY,OAAO;cAClC,MAAM;cACN,OAAO,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;;QAEpC,OAAO,IAAI,MAAM,CAAC,OAAO,CAAC,CAAC;KAC9B,CAAC;;;;;;;;;;;IAWF,kBAAkB,CAAC,WAAW,CAAC,GAAG,GAAG,UAAU,KAAK;IACpD;QACI,IAAI,IAAI,CAAC,YAAY,KAAK,KAAK;QAC/B;YACI,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;SAC1B;QACD,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC;KAC7B,CAAC;;IAEF,kBAAkB,CAAC,WAAW,CAAC,GAAG,GAAG;IACrC;QACI,OAAO,IAAI,CAAC,YAAY,CAAC;KAC5B,CAAC;;;;;;;IAOF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;KAC5D,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,CAAC,GAAGA,MAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;QAEhC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;QACpD,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;KACvB,CAAC;;;;;;;IAOF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC;KAC7D,CAAC;;IAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,KAAK;IAC/C;QACI,IAAI,CAAC,GAAGA,MAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;QAEhC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC;QACrD,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;KACxB,CAAC;;;;;;;;;;;;;;;;;;;;IAoBF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,OAAO,CAAC;KACvB,CAAC;;IAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,KAAK;IAC/C;QACI,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;KAChC,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;IAEF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,KAAK;IAC7C;QACI,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,QAAQ,GAAG,CAAC,KAAK,IAAI,EAAE,KAAK,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,GAAG,IAAI,KAAK,EAAE,CAAC,CAAC;KAC7E,CAAC;;;;;;;IAOF,kBAAkB,CAAC,OAAO,CAAC,GAAG,GAAG;IACjC;QACI,OAAO,IAAI,CAAC,QAAQ,CAAC;KACxB,CAAC;;IAEF,kBAAkB,CAAC,OAAO,CAAC,GAAG,GAAG,UAAU,KAAK;IAChD;QACI,IAAI,IAAI,CAAC,QAAQ,KAAK,KAAK;QAC3B;YACI,OAAO;SACV;;QAED,IAAI,CAAC,QAAQ,GAAG,KAAK,IAAI,OAAO,CAAC,KAAK,CAAC;QACvC,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC;;QAE5B,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;QACrB,IAAI,CAAC,iBAAiB,GAAG,CAAC,CAAC,CAAC;;QAE5B,IAAI,KAAK;QACT;;YAEI,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK;YAC3B;gBACI,IAAI,CAAC,gBAAgB,EAAE,CAAC;aAC3B;;YAED;gBACI,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC,CAAC;aACrD;SACJ;KACJ,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,MAAM,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAEhE,OAAO,MAAM,CAAC;CACjB,CAAC,SAAS,CAAC,CAAC,CAAC;;AClqBd;;;;;;;AAOA,AAKA;;;;;;;;;;;;AAYA,IAAI,aAAa,GAAG;IAChB,eAAe,EAAE,CAAC;IAClB,iBAAiB,EAAE,CAAC;CACvB,CAAC;;;;AAIF,IAAI,YAAY,GAAG;IACf,KAAK,EAAE,MAAM;IACb,UAAU,EAAE,KAAK;IACjB,UAAU,EAAE,KAAK;IACjB,eAAe,EAAE,CAAC;IAClB,eAAe,EAAE,IAAI,CAAC,EAAE,GAAG,CAAC;IAC5B,cAAc,EAAE,CAAC;IACjB,eAAe,EAAE,OAAO;IACxB,kBAAkB,EAAE,CAAC;IACrB,IAAI,EAAE,OAAO;IACb,gBAAgB,EAAE,aAAa,CAAC,eAAe;IAC/C,iBAAiB,EAAE,EAAE;IACrB,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,EAAE;IACZ,SAAS,EAAE,QAAQ;IACnB,WAAW,EAAE,QAAQ;IACrB,UAAU,EAAE,QAAQ;IACpB,aAAa,EAAE,CAAC;IAChB,UAAU,EAAE,CAAC;IACb,QAAQ,EAAE,OAAO;IACjB,UAAU,EAAE,EAAE;IACd,OAAO,EAAE,CAAC;IACV,MAAM,EAAE,OAAO;IACf,eAAe,EAAE,CAAC;IAClB,YAAY,EAAE,YAAY;IAC1B,IAAI,EAAE,KAAK;IACX,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,KAAK;IACf,aAAa,EAAE,GAAG;IAClB,OAAO,EAAE,CAAC;CACb,CAAC;;AAEF,IAAI,mBAAmB,GAAG;IACtB,OAAO;IACP,YAAY;IACZ,WAAW;IACX,SAAS;IACT,SAAS;IACT,WAAW,EAAE,CAAC;;;;;;;;;;;;AAYlB,IAAI,SAAS,GAAG,SAAS,SAAS,CAAC,KAAK;AACxC;IACI,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;IAEjB,IAAI,CAAC,KAAK,EAAE,CAAC;;IAEb,kBAAkB,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;CAC1C,CAAC;;AAEF,IAAIG,oBAAkB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,eAAe,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,eAAe,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,cAAc,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,eAAe,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,kBAAkB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,gBAAgB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,iBAAiB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,WAAW,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,aAAa,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,OAAO,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,OAAO,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,eAAe,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,YAAY,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,aAAa,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;AAQxiC,SAAS,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC1C;IACI,IAAI,gBAAgB,GAAG,EAAE,CAAC;;IAE1B,kBAAkB,CAAC,gBAAgB,EAAE,IAAI,EAAE,YAAY,CAAC,CAAC;;IAEzD,OAAO,IAAI,SAAS,CAAC,gBAAgB,CAAC,CAAC;CAC1C,CAAC;;;;;AAKF,SAAS,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC1C;IACI,kBAAkB,CAAC,IAAI,EAAE,YAAY,EAAE,YAAY,CAAC,CAAC;CACxD,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;AAC/B;IACI,OAAO,IAAI,CAAC,MAAM,CAAC;CACtB,CAAC;AACFA,oBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;AAC9C;IACI,IAAI,IAAI,CAAC,MAAM,KAAK,KAAK;IACzB;QACI,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACpB,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;AACFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,UAAU;AACxD;IACI,IAAI,IAAI,CAAC,WAAW,KAAK,UAAU;IACnC;QACI,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;QAC9B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;AACFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,UAAU;AACxD;IACI,IAAI,IAAI,CAAC,WAAW,KAAK,UAAU;IACnC;QACI,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;QAC9B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG;AACzC;IACI,OAAO,IAAI,CAAC,gBAAgB,CAAC;CAChC,CAAC;AACFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG,UAAU,eAAe;AAClE;IACI,IAAI,IAAI,CAAC,gBAAgB,KAAK,eAAe;IAC7C;QACI,IAAI,CAAC,gBAAgB,GAAG,eAAe,CAAC;QACxC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG;AACzC;IACI,OAAO,IAAI,CAAC,gBAAgB,CAAC;CAChC,CAAC;AACFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG,UAAU,eAAe;AAClE;IACI,IAAI,IAAI,CAAC,gBAAgB,KAAK,eAAe;IAC7C;QACI,IAAI,CAAC,gBAAgB,GAAG,eAAe,CAAC;QACxC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,cAAc,CAAC,GAAG,GAAG;AACxC;IACI,OAAO,IAAI,CAAC,eAAe,CAAC;CAC/B,CAAC;AACFA,oBAAkB,CAAC,cAAc,CAAC,GAAG,GAAG,UAAU,cAAc;AAChE;IACI,IAAI,IAAI,CAAC,eAAe,KAAK,cAAc;IAC3C;QACI,IAAI,CAAC,eAAe,GAAG,cAAc,CAAC;QACtC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG;AACzC;IACI,OAAO,IAAI,CAAC,gBAAgB,CAAC;CAChC,CAAC;AACFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG,UAAU,eAAe;AAClE;IACI,IAAI,WAAW,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC;IAC5C,IAAI,IAAI,CAAC,gBAAgB,KAAK,WAAW;IACzC;QACI,IAAI,CAAC,gBAAgB,GAAG,WAAW,CAAC;QACpC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,kBAAkB,CAAC,GAAG,GAAG;AAC5C;IACI,OAAO,IAAI,CAAC,mBAAmB,CAAC;CACnC,CAAC;AACFA,oBAAkB,CAAC,kBAAkB,CAAC,GAAG,GAAG,UAAU,kBAAkB;AACxE;IACI,IAAI,IAAI,CAAC,mBAAmB,KAAK,kBAAkB;IACnD;QACI,IAAI,CAAC,mBAAmB,GAAG,kBAAkB,CAAC;QAC9C,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;;AASFA,oBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;AAC9B;IACI,OAAO,IAAI,CAAC,KAAK,CAAC;CACrB,CAAC;AACFA,oBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,IAAI;AAC5C;IACI,IAAI,WAAW,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC;IACjC,IAAI,IAAI,CAAC,KAAK,KAAK,WAAW;IAC9B;QACI,IAAI,CAAC,KAAK,GAAG,WAAW,CAAC;QACzB,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,gBAAgB,CAAC,GAAG,GAAG;AAC1C;IACI,OAAO,IAAI,CAAC,iBAAiB,CAAC;CACjC,CAAC;AACFA,oBAAkB,CAAC,gBAAgB,CAAC,GAAG,GAAG,UAAU,gBAAgB;AACpE;IACI,IAAI,IAAI,CAAC,iBAAiB,KAAK,gBAAgB;IAC/C;QACI,IAAI,CAAC,iBAAiB,GAAG,gBAAgB,CAAC;QAC1C,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,iBAAiB,CAAC,GAAG,GAAG;AAC3C;IACI,OAAO,IAAI,CAAC,kBAAkB,CAAC;CAClC,CAAC;AACFA,oBAAkB,CAAC,iBAAiB,CAAC,GAAG,GAAG,UAAU,iBAAiB;AACtE;IACI,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,kBAAkB,CAAC,iBAAiB,CAAC;IAC9D;QACI,IAAI,CAAC,kBAAkB,GAAG,iBAAiB,CAAC;QAC5C,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;AACFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,UAAU;AACxD;IACI,IAAI,IAAI,CAAC,UAAU,KAAK,UAAU;IAClC;QACI,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;QAC9B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG;AAClC;IACI,OAAO,IAAI,CAAC,SAAS,CAAC;CACzB,CAAC;AACFA,oBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,QAAQ;AACpD;IACI,IAAI,IAAI,CAAC,SAAS,KAAK,QAAQ;IAC/B;QACI,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;QAC1B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG;AACnC;IACI,OAAO,IAAI,CAAC,UAAU,CAAC;CAC1B,CAAC;AACFA,oBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG,UAAU,SAAS;AACtD;IACI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS;IACjC;QACI,IAAI,CAAC,UAAU,GAAG,SAAS,CAAC;QAC5B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,WAAW,CAAC,GAAG,GAAG;AACrC;IACI,OAAO,IAAI,CAAC,YAAY,CAAC;CAC5B,CAAC;AACFA,oBAAkB,CAAC,WAAW,CAAC,GAAG,GAAG,UAAU,WAAW;AAC1D;IACI,IAAI,IAAI,CAAC,YAAY,KAAK,WAAW;IACrC;QACI,IAAI,CAAC,YAAY,GAAG,WAAW,CAAC;QAChC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;AACFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,UAAU;AACxD;IACI,IAAI,IAAI,CAAC,WAAW,KAAK,UAAU;IACnC;QACI,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;QAC9B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,aAAa,CAAC,GAAG,GAAG;AACvC;IACI,OAAO,IAAI,CAAC,cAAc,CAAC;CAC9B,CAAC;AACFA,oBAAkB,CAAC,aAAa,CAAC,GAAG,GAAG,UAAU,aAAa;AAC9D;IACI,IAAI,IAAI,CAAC,cAAc,KAAK,aAAa;IACzC;QACI,IAAI,CAAC,cAAc,GAAG,aAAa,CAAC;QACpC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;AACFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,UAAU;AACxD;IACI,IAAI,IAAI,CAAC,WAAW,KAAK,UAAU;IACnC;QACI,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;QAC9B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,OAAO,CAAC,GAAG,GAAG;AACjC;IACI,OAAO,IAAI,CAAC,QAAQ,CAAC;CACxB,CAAC;AACFA,oBAAkB,CAAC,OAAO,CAAC,GAAG,GAAG,UAAU,OAAO;AAClD;IACI,IAAI,IAAI,CAAC,QAAQ,KAAK,OAAO;IAC7B;QACI,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;QACxB,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG;AAClC;IACI,OAAO,IAAI,CAAC,SAAS,CAAC;CACzB,CAAC;AACFA,oBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,QAAQ;AACpD;IACI,IAAI,IAAI,CAAC,SAAS,KAAK,QAAQ;IAC/B;QACI,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;QAC1B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;AACFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,UAAU;AACxD;IACI,IAAI,IAAI,CAAC,WAAW,KAAK,UAAU;IACnC;QACI,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;QAC9B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,OAAO,CAAC,GAAG,GAAG;AACjC;IACI,OAAO,IAAI,CAAC,QAAQ,CAAC;CACxB,CAAC;AACFA,oBAAkB,CAAC,OAAO,CAAC,GAAG,GAAG,UAAU,OAAO;AAClD;IACI,IAAI,IAAI,CAAC,QAAQ,KAAK,OAAO;IAC7B;QACI,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;QACxB,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,IAAI,CAAC,OAAO,CAAC;CACvB,CAAC;AACFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,MAAM;AAChD;IACI,IAAI,WAAW,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC;IACnC,IAAI,IAAI,CAAC,OAAO,KAAK,WAAW;IAChC;QACI,IAAI,CAAC,OAAO,GAAG,WAAW,CAAC;QAC3B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG;AACzC;IACI,OAAO,IAAI,CAAC,gBAAgB,CAAC;CAChC,CAAC;AACFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG,UAAU,eAAe;AAClE;IACI,IAAI,IAAI,CAAC,gBAAgB,KAAK,eAAe;IAC7C;QACI,IAAI,CAAC,gBAAgB,GAAG,eAAe,CAAC;QACxC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,YAAY,CAAC,GAAG,GAAG;AACtC;IACI,OAAO,IAAI,CAAC,aAAa,CAAC;CAC7B,CAAC;AACFA,oBAAkB,CAAC,YAAY,CAAC,GAAG,GAAG,UAAU,YAAY;AAC5D;IACI,IAAI,IAAI,CAAC,aAAa,KAAK,YAAY;IACvC;QACI,IAAI,CAAC,aAAa,GAAG,YAAY,CAAC;QAClC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;AAC9B;IACI,OAAO,IAAI,CAAC,KAAK,CAAC;CACrB,CAAC;AACFA,oBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,IAAI;AAC5C;IACI,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI;IACvB;QACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;QAClB,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;;;;;;;AAcFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;AACFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,UAAU;AACxD;IACI,IAAI,IAAI,CAAC,WAAW,KAAK,UAAU;IACnC;QACI,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;QAC9B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG;AAClC;IACI,OAAO,IAAI,CAAC,SAAS,CAAC;CACzB,CAAC;AACFA,oBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,QAAQ;AACpD;IACI,IAAI,IAAI,CAAC,SAAS,KAAK,QAAQ;IAC/B;QACI,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;QAC1B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,aAAa,CAAC,GAAG,GAAG;AACvC;IACI,OAAO,IAAI,CAAC,cAAc,CAAC;CAC9B,CAAC;AACFA,oBAAkB,CAAC,aAAa,CAAC,GAAG,GAAG,UAAU,aAAa;AAC9D;IACI,IAAI,IAAI,CAAC,cAAc,KAAK,aAAa;IACzC;QACI,IAAI,CAAC,cAAc,GAAG,aAAa,CAAC;QACpC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY;AACxD;;IAEI,IAAI,cAAc,GAAG,CAAC,OAAO,IAAI,CAAC,QAAQ,KAAK,QAAQ,KAAK,CAAC,IAAI,CAAC,QAAQ,IAAI,IAAI,IAAI,IAAI,CAAC,QAAQ,CAAC;;;;IAIpG,IAAI,YAAY,GAAG,IAAI,CAAC,UAAU,CAAC;;IAEnC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC;IACnC;QACI,YAAY,GAAG,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;KAC7C;;IAED,KAAK,IAAI,CAAC,GAAG,YAAY,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;IACjD;;QAEI,IAAI,UAAU,GAAG,YAAY,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC;;;QAGxC,IAAI,CAAC,CAAC,oBAAoB,EAAE,IAAI,CAAC,UAAU,CAAC,IAAI,mBAAmB,CAAC,OAAO,CAAC,UAAU,CAAC,GAAG,CAAC;QAC3F;YACI,UAAU,GAAG,IAAI,GAAG,UAAU,GAAG,IAAI,CAAC;SACzC;QACD,YAAY,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC;KAChC;;IAED,QAAQ,CAAC,IAAI,CAAC,SAAS,IAAI,GAAG,IAAI,IAAI,CAAC,WAAW,CAAC,GAAG,GAAG,IAAI,IAAI,CAAC,UAAU,CAAC,GAAG,GAAG,GAAG,cAAc,GAAG,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE;CAC1I,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,SAAS,CAAC,SAAS,EAAEA,oBAAkB,EAAE,CAAC;;;;;;;;AAQnE,SAAS,cAAc,CAAC,KAAK;AAC7B;IACI,IAAI,OAAO,KAAK,KAAK,QAAQ;IAC7B;QACI,OAAO,UAAU,CAAC,KAAK,CAAC,CAAC;KAC5B;SACI,KAAK,OAAO,KAAK,KAAK,QAAQ;IACnC;QACI,KAAK,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC;QAC9B;YACI,KAAK,GAAG,KAAK,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;SACpC;KACJ;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;AASD,SAAS,QAAQ,CAAC,KAAK;AACvB;IACI,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC;IACzB;QACI,OAAO,cAAc,CAAC,KAAK,CAAC,CAAC;KAChC;;IAED;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,EAAE,CAAC;QACrC;YACI,KAAK,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;SACvC;;QAED,OAAO,KAAK,CAAC;KAChB;CACJ;;;;;;;;;;AAUD,SAAS,cAAc,CAAC,MAAM,EAAE,MAAM;AACtC;IACI,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC;IACpD;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,IAAI,MAAM,CAAC,MAAM,KAAK,MAAM,CAAC,MAAM;IACnC;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,EAAE,CAAC;IACtC;QACI,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,MAAM,CAAC,CAAC,CAAC;QAC3B;YACI,OAAO,KAAK,CAAC;SAChB;KACJ;;IAED,OAAO,IAAI,CAAC;CACf;;;;;;;;;AASD,SAAS,kBAAkB,CAAC,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE;IACrD,KAAK,IAAI,IAAI,IAAI,WAAW,EAAE;QAC1B,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,EAAE;YAC7B,MAAM,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,CAAC;SACvC,MAAM;YACH,MAAM,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC;SAC/B;KACJ;CACJ;;;;;;;;;;;;;AAaD,IAAI,WAAW,GAAG,SAAS,WAAW,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,YAAY,EAAE,cAAc;AAC9H;;;;;;IAMI,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;IAOjB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;;IAOnB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;;IAOnB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;;IAOrB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;;IAOnB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;;;;;;;IAO7B,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;;;;;;;IAO7B,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;;;;;;;IAOjC,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;CACxC,CAAC;;;;;;;;;;;AAWF,WAAW,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM;AAC7E;QACQ,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC;;IAE1D,QAAQ,GAAG,CAAC,QAAQ,KAAK,SAAS,IAAI,QAAQ,KAAK,IAAI,IAAI,KAAK,CAAC,QAAQ,GAAG,QAAQ,CAAC;IACrF,IAAI,IAAI,GAAG,KAAK,CAAC,YAAY,EAAE,CAAC;IAChC,IAAI,cAAc,GAAG,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;;;;IAInD,IAAI,cAAc,CAAC,QAAQ,KAAK,CAAC;IACjC;QACI,cAAc,CAAC,QAAQ,GAAG,KAAK,CAAC,QAAQ,CAAC;QACzC,cAAc,CAAC,MAAM,GAAG,KAAK,CAAC,QAAQ,CAAC;KAC1C;;IAED,IAAI,OAAO,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;IAEtC,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC;;IAEpB,IAAI,UAAU,GAAG,QAAQ,GAAG,WAAW,CAAC,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,CAAC,GAAG,IAAI,CAAC;IAC7E,IAAI,KAAK,GAAG,UAAU,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;IAC/C,IAAI,UAAU,GAAG,IAAI,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACzC,IAAI,YAAY,GAAG,CAAC,CAAC;;IAErB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE;IACrC;QACI,IAAI,SAAS,GAAG,OAAO,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,KAAK,CAAC,aAAa,CAAC,CAAC;;QAEpG,UAAU,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC;QAC1B,YAAY,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,SAAS,CAAC,CAAC;KACpD;IACD,IAAI,KAAK,GAAG,YAAY,GAAG,KAAK,CAAC,eAAe,CAAC;;IAEjD,IAAI,KAAK,CAAC,UAAU;IACpB;QACI,KAAK,IAAI,KAAK,CAAC,kBAAkB,CAAC;KACrC;;IAED,IAAI,UAAU,GAAG,KAAK,CAAC,UAAU,IAAI,cAAc,CAAC,QAAQ,GAAG,KAAK,CAAC,eAAe,CAAC;IACrF,IAAI,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,EAAE,cAAc,CAAC,QAAQ,GAAG,KAAK,CAAC,eAAe,CAAC;WAC3E,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,KAAK,UAAU,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;;IAE1D,IAAI,KAAK,CAAC,UAAU;IACpB;QACI,MAAM,IAAI,KAAK,CAAC,kBAAkB,CAAC;KACtC;;IAED,OAAO,IAAI,WAAW;QAClB,IAAI;QACJ,KAAK;QACL,KAAK;QACL,MAAM;QACN,KAAK;QACL,UAAU;QACV,UAAU,GAAG,KAAK,CAAC,OAAO;QAC1B,YAAY;QACZ,cAAc;KACjB,CAAC;CACL,CAAC;;;;;;;;;;;;AAYF,WAAW,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM;AAC7D;QACQ,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC;;IAE1D,IAAI,OAAO,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;IAEtC,IAAI,KAAK,GAAG,CAAC,CAAC;IACd,IAAI,IAAI,GAAG,EAAE,CAAC;IACd,IAAI,KAAK,GAAG,EAAE,CAAC;;IAEf,IAAI,KAAK,GAAG,EAAE,CAAC;IACf,IAAI,aAAa,GAAG,KAAK,CAAC,aAAa,CAAC;QACpC,IAAI,UAAU,GAAG,KAAK,CAAC,UAAU,CAAC;;;IAGtC,IAAI,cAAc,GAAG,WAAW,CAAC,cAAc,CAAC,UAAU,CAAC,CAAC;IAC5D,IAAI,gBAAgB,GAAG,WAAW,CAAC,gBAAgB,CAAC,UAAU,CAAC,CAAC;;;IAGhE,IAAI,gBAAgB,GAAG,CAAC,cAAc,CAAC;;;;;;;;IAQvC,IAAI,aAAa,GAAG,KAAK,CAAC,aAAa,GAAG,aAAa,CAAC;;;IAGxD,IAAI,MAAM,GAAG,WAAW,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;;IAExC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,EAAE;IACtC;;QAEI,IAAI,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;;QAGtB,IAAI,WAAW,CAAC,SAAS,CAAC,KAAK,CAAC;QAChC;;YAEI,IAAI,CAAC,gBAAgB;YACrB;gBACI,KAAK,IAAI,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;gBACnC,gBAAgB,GAAG,CAAC,cAAc,CAAC;gBACnC,IAAI,GAAG,EAAE,CAAC;gBACV,KAAK,GAAG,CAAC,CAAC;gBACV,SAAS;aACZ;;;;YAID,KAAK,GAAG,GAAG,CAAC;SACf;;;QAGD,IAAI,cAAc;QAClB;;YAEI,IAAI,mBAAmB,GAAG,WAAW,CAAC,eAAe,CAAC,KAAK,CAAC,CAAC;YAC7D,IAAI,mBAAmB,GAAG,WAAW,CAAC,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;;YAE7E,IAAI,mBAAmB,IAAI,mBAAmB;YAC9C;gBACI,SAAS;aACZ;SACJ;;;QAGD,IAAI,UAAU,GAAG,WAAW,CAAC,YAAY,CAAC,KAAK,EAAE,aAAa,EAAE,KAAK,EAAE,OAAO,CAAC,CAAC;;;QAGhF,IAAI,UAAU,GAAG,aAAa;QAC9B;;YAEI,IAAI,IAAI,KAAK,EAAE;YACf;;gBAEI,KAAK,IAAI,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;gBACnC,IAAI,GAAG,EAAE,CAAC;gBACV,KAAK,GAAG,CAAC,CAAC;aACb;;;YAGD,IAAI,WAAW,CAAC,aAAa,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC;YACtD;;gBAEI,IAAI,UAAU,GAAG,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;;;gBAGjC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE;gBAC1C;oBACI,IAAI,IAAI,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;;oBAEzB,IAAI,CAAC,GAAG,CAAC,CAAC;;;oBAGV,OAAO,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC;oBACxB;wBACI,IAAI,QAAQ,GAAG,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;wBACjC,IAAI,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;;wBAGrC,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC;wBAC9E;;4BAEI,IAAI,IAAI,QAAQ,CAAC;yBACpB;;wBAED;4BACI,MAAM;yBACT;;wBAED,CAAC,EAAE,CAAC;qBACP;;oBAED,CAAC,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;;oBAErB,IAAI,cAAc,GAAG,WAAW,CAAC,YAAY,CAAC,IAAI,EAAE,aAAa,EAAE,KAAK,EAAE,OAAO,CAAC,CAAC;;oBAEnF,IAAI,cAAc,GAAG,KAAK,GAAG,aAAa;oBAC1C;wBACI,KAAK,IAAI,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;wBACnC,gBAAgB,GAAG,KAAK,CAAC;wBACzB,IAAI,GAAG,EAAE,CAAC;wBACV,KAAK,GAAG,CAAC,CAAC;qBACb;;oBAED,IAAI,IAAI,IAAI,CAAC;oBACb,KAAK,IAAI,cAAc,CAAC;iBAC3B;aACJ;;;;YAID;;;gBAGI,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC;gBACnB;oBACI,KAAK,IAAI,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;oBACnC,IAAI,GAAG,EAAE,CAAC;oBACV,KAAK,GAAG,CAAC,CAAC;iBACb;;gBAED,IAAI,WAAW,GAAG,CAAC,KAAK,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;;gBAG1C,KAAK,IAAI,WAAW,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,WAAW,CAAC,CAAC;gBAClD,gBAAgB,GAAG,KAAK,CAAC;gBACzB,IAAI,GAAG,EAAE,CAAC;gBACV,KAAK,GAAG,CAAC,CAAC;aACb;SACJ;;;;QAID;;;YAGI,IAAI,UAAU,GAAG,KAAK,GAAG,aAAa;YACtC;;gBAEI,gBAAgB,GAAG,KAAK,CAAC;;;gBAGzB,KAAK,IAAI,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;;;gBAGnC,IAAI,GAAG,EAAE,CAAC;gBACV,KAAK,GAAG,CAAC,CAAC;aACb;;;YAGD,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,WAAW,CAAC,eAAe,CAAC,KAAK,CAAC,IAAI,gBAAgB;YAC9E;;gBAEI,IAAI,IAAI,KAAK,CAAC;;;gBAGd,KAAK,IAAI,UAAU,CAAC;aACvB;SACJ;KACJ;;IAED,KAAK,IAAI,WAAW,CAAC,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;;IAE1C,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;;;;;AAWF,WAAW,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,IAAI,EAAE,OAAO;AACrD;QACQ,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,IAAI,CAAC;;IAE7C,IAAI,GAAG,WAAW,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;;IAEnC,IAAI,GAAG,CAAC,OAAO,KAAK,IAAI,GAAG,IAAI,IAAI,IAAI,CAAC;;IAExC,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;;;;AAYF,WAAW,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,GAAG,EAAE,aAAa,EAAE,KAAK,EAAE,OAAO;AACpF;IACI,IAAI,KAAK,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC;;IAEvB,IAAI,KAAK,KAAK,SAAS;IACvB;QACI,IAAI,OAAO,IAAI,CAAC,GAAG,CAAC,MAAM,IAAI,aAAa,CAAC,CAAC;;QAE7C,KAAK,GAAG,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,KAAK,GAAG,OAAO,CAAC;QACjD,KAAK,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;KACtB;;IAED,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;;;AASF,WAAW,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,UAAU;AAChE;IACI,QAAQ,UAAU,KAAK,QAAQ,IAAI,UAAU,KAAK,UAAU,EAAE;CACjE,CAAC;;;;;;;;;AASF,WAAW,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,UAAU;AACpE;IACI,QAAQ,UAAU,KAAK,QAAQ,EAAE;CACpC,CAAC;;;;;;;;;AASF,WAAW,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,IAAI;AAChD;IACI,IAAI,OAAO,IAAI,KAAK,QAAQ;IAC5B;QACI,OAAO,EAAE,CAAC;KACb;;IAED,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;IACzC;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;;QAEnB,IAAI,CAAC,WAAW,CAAC,eAAe,CAAC,IAAI,CAAC;QACtC;YACI,MAAM;SACT;;QAED,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;KAC5B;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;AASF,WAAW,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,IAAI;AAChD;IACI,IAAI,OAAO,IAAI,KAAK,QAAQ;IAC5B;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,QAAQ,WAAW,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE;CACnE,CAAC;;;;;;;;;AASF,WAAW,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,IAAI;AAC5D;IACI,IAAI,OAAO,IAAI,KAAK,QAAQ;IAC5B;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,QAAQ,WAAW,CAAC,eAAe,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE;CACzE,CAAC;;;;;;;;;AASF,WAAW,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,IAAI;AAC9C;IACI,IAAI,MAAM,GAAG,EAAE,CAAC;IAChB,IAAI,KAAK,GAAG,EAAE,CAAC;;IAEf,IAAI,OAAO,IAAI,KAAK,QAAQ;IAC5B;QACI,OAAO,MAAM,CAAC;KACjB;;IAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE;IACpC;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;;QAEnB,IAAI,WAAW,CAAC,eAAe,CAAC,IAAI,CAAC,IAAI,WAAW,CAAC,SAAS,CAAC,IAAI,CAAC;QACpE;YACI,IAAI,KAAK,KAAK,EAAE;YAChB;gBACI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;gBACnB,KAAK,GAAG,EAAE,CAAC;aACd;;YAED,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;YAElB,SAAS;SACZ;;QAED,KAAK,IAAI,IAAI,CAAC;KACjB;;IAED,IAAI,KAAK,KAAK,EAAE;IAChB;QACI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KACtB;;IAED,OAAO,MAAM,CAAC;CACjB,CAAC;;;;;;;;;;;;;AAaF,WAAW,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,KAAK,EAAE,UAAU;AACrE;IACI,OAAO,UAAU,CAAC;CACrB,CAAC;;;;;;;;;;;;;;;;;AAiBF,WAAW,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK,EAAE,UAAU;AAC5F;IACI,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;AASF,WAAW,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,IAAI;AACpD;;IAEI,IAAI,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC;IAC5B;QACI,OAAO,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;KACnC;;IAED,IAAI,UAAU,GAAG,EAAE,CAAC;;IAEpB,IAAI,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC;IACjC,IAAI,OAAO,GAAG,WAAW,CAAC,QAAQ,CAAC;;IAEnC,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC;;IAEpB,IAAI,aAAa,GAAG,WAAW,CAAC,cAAc,GAAG,WAAW,CAAC,eAAe,CAAC;IAC7E,IAAI,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,KAAK,CAAC,CAAC;IAChE,IAAI,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,WAAW,CAAC,eAAe,CAAC,CAAC,KAAK,CAAC,CAAC;IACjF,IAAI,MAAM,GAAG,CAAC,GAAG,QAAQ,CAAC;;IAE1B,QAAQ,GAAG,QAAQ,GAAG,WAAW,CAAC,mBAAmB,GAAG,CAAC,CAAC;;IAE1D,MAAM,CAAC,KAAK,GAAG,KAAK,CAAC;IACrB,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC;;IAEvB,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC;IAC3B,OAAO,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;;IAEtC,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC;;IAEpB,OAAO,CAAC,YAAY,GAAG,YAAY,CAAC;IACpC,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC;IAC3B,OAAO,CAAC,QAAQ,CAAC,aAAa,EAAE,CAAC,EAAE,QAAQ,CAAC,CAAC;;IAE7C,IAAI,SAAS,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC;IAC/D,IAAI,MAAM,GAAG,SAAS,CAAC,MAAM,CAAC;IAC9B,IAAI,IAAI,GAAG,KAAK,GAAG,CAAC,CAAC;;IAErB,IAAI,CAAC,GAAG,CAAC,CAAC;IACV,IAAI,GAAG,GAAG,CAAC,CAAC;IACZ,IAAI,IAAI,GAAG,KAAK,CAAC;;;IAGjB,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,EAAE,EAAE,CAAC;IAC7B;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,IAAI,CAAC;QAChC;YACI,IAAI,SAAS,CAAC,GAAG,GAAG,CAAC,CAAC,KAAK,GAAG;YAC9B;gBACI,IAAI,GAAG,IAAI,CAAC;gBACZ,MAAM;aACT;SACJ;QACD,IAAI,CAAC,IAAI;QACT;YACI,GAAG,IAAI,IAAI,CAAC;SACf;;QAED;YACI,MAAM;SACT;KACJ;;IAED,UAAU,CAAC,MAAM,GAAG,QAAQ,GAAG,CAAC,CAAC;;IAEjC,GAAG,GAAG,MAAM,GAAG,IAAI,CAAC;IACpB,IAAI,GAAG,KAAK,CAAC;;;IAGb,KAAK,CAAC,GAAG,MAAM,EAAE,CAAC,GAAG,QAAQ,EAAE,EAAE,CAAC;IAClC;QACI,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,EAAE,GAAG,IAAI,CAAC;QACtC;YACI,IAAI,SAAS,CAAC,GAAG,GAAG,GAAG,CAAC,KAAK,GAAG;YAChC;gBACI,IAAI,GAAG,IAAI,CAAC;gBACZ,MAAM;aACT;SACJ;;QAED,IAAI,CAAC,IAAI;QACT;YACI,GAAG,IAAI,IAAI,CAAC;SACf;;QAED;YACI,MAAM;SACT;KACJ;;IAED,UAAU,CAAC,OAAO,GAAG,CAAC,GAAG,QAAQ,CAAC;IAClC,UAAU,CAAC,QAAQ,GAAG,UAAU,CAAC,MAAM,GAAG,UAAU,CAAC,OAAO,CAAC;;IAE7D,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,UAAU,CAAC;;IAEtC,OAAO,UAAU,CAAC;CACrB,CAAC;;;;;;;;AAQF,WAAW,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,IAAI;AACtD;QACQ,KAAK,IAAI,KAAK,KAAK,CAAC,GAAG,IAAI,GAAG,EAAE,CAAC;;IAErC,IAAI,IAAI;IACR;QACI,OAAO,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;KACnC;;IAED;QACI,WAAW,CAAC,MAAM,GAAG,EAAE,CAAC;KAC3B;CACJ,CAAC;;;;;;;;;;;;;AAaF,IAAI,MAAM,GAAG,CAAC,YAAY;IACtB;IACA;;QAEI,IAAI,CAAC,GAAG,IAAI,eAAe,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;QAElC,OAAO,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;KACpE;IACD,OAAO,EAAE;IACT;QACI,OAAO,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;KAC3C;CACJ,GAAG,CAAC;;AAEL,MAAM,CAAC,KAAK,GAAG,MAAM,CAAC,MAAM,GAAG,EAAE,CAAC;;;;;;;;;AASlC,WAAW,CAAC,OAAO,GAAG,MAAM,CAAC;;;;;;;;;AAS7B,WAAW,CAAC,QAAQ,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;;;;;;;;AAS/C,WAAW,CAAC,MAAM,GAAG,EAAE,CAAC;;;;;;;;;;;;AAYxB,WAAW,CAAC,cAAc,GAAG,MAAM,CAAC;;;;;;;;;;;AAWpC,WAAW,CAAC,eAAe,GAAG,GAAG,CAAC;;;;;;;;;;;AAWlC,WAAW,CAAC,mBAAmB,GAAG,GAAG,CAAC;;;;;;;;;AAStC,WAAW,CAAC,SAAS,GAAG;IACpB,MAAM;IACN,MAAM,EAAE,CAAC;;;;;;;;;AASb,WAAW,CAAC,eAAe,GAAG;IAC1B,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM,EAAE,CAAC;;;;;;;;;;;;;;AAcb,IAAI,qBAAqB,GAAG;IACxB,OAAO,EAAE,IAAI;IACb,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,IAAI;CACpB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2BF,IAAI,IAAI,iBAAiB,UAAU,MAAM,EAAE;IACvC,SAAS,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM;IACjC;QACI,MAAM,GAAG,MAAM,IAAI,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;QAEpD,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC;QACjB,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;QAElB,IAAI,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;QAEnC,OAAO,CAAC,IAAI,GAAG,IAAI,SAAS,EAAE,CAAC;QAC/B,OAAO,CAAC,IAAI,GAAG,IAAI,SAAS,EAAE,CAAC;;QAE/B,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;;;;;;;QAO3B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;QAMrB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;;;;;;;QAQ5C,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC,UAAU,CAAC;QACvC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;;;;;;;;QAQ5B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;;;;;;QAQlB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;QAOnB,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC;;;;;;;;QAQ3B,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;;QAEhB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;QAEnB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;KAC1B;;IAED,KAAK,MAAM,GAAG,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC;IACtC,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IAC7D,IAAI,CAAC,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC;;IAElC,IAAI,kBAAkB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;IAQxL,IAAI,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,YAAY;IAC7D;QACI,IAAI,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;;;QAGxB,IAAI,IAAI,CAAC,YAAY,KAAK,KAAK,CAAC,OAAO;QACvC;YACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;YAClB,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC,OAAO,CAAC;SACrC;;QAED,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,YAAY;QAC/B;YACI,OAAO;SACV;;QAED,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,YAAY,EAAE,CAAC;;QAExC,IAAI,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC3B,IAAI,QAAQ,GAAG,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,IAAI,GAAG,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;QAC1G,IAAI,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;QAC3B,IAAI,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;QAC7B,IAAI,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;QAC3B,IAAI,UAAU,GAAG,QAAQ,CAAC,UAAU,CAAC;QACrC,IAAI,UAAU,GAAG,QAAQ,CAAC,UAAU,CAAC;QACrC,IAAI,YAAY,GAAG,QAAQ,CAAC,YAAY,CAAC;QACzC,IAAI,cAAc,GAAG,QAAQ,CAAC,cAAc,CAAC;;QAE7C,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,KAAK,CAAC,OAAO,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,WAAW,CAAC,CAAC;QAC7F,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,IAAI,KAAK,CAAC,OAAO,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,WAAW,CAAC,CAAC;;QAE/F,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC;;QAElD,OAAO,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;;QAE/D,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;QAC1B,OAAO,CAAC,SAAS,GAAG,KAAK,CAAC,eAAe,CAAC;QAC1C,OAAO,CAAC,YAAY,GAAG,KAAK,CAAC,YAAY,CAAC;QAC1C,OAAO,CAAC,QAAQ,GAAG,KAAK,CAAC,QAAQ,CAAC;QAClC,OAAO,CAAC,UAAU,GAAG,KAAK,CAAC,UAAU,CAAC;;QAEtC,IAAI,aAAa,CAAC;QAClB,IAAI,aAAa,CAAC;;;QAGlB,IAAI,WAAW,GAAG,KAAK,CAAC,UAAU,GAAG,CAAC,GAAG,CAAC,CAAC;;;;;;;;;;;;;QAa3C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,EAAE,CAAC;QACpC;YACI,IAAI,YAAY,GAAG,KAAK,CAAC,UAAU,IAAI,CAAC,KAAK,CAAC,CAAC;YAC/C,IAAI,YAAY,GAAG,YAAY,GAAG,MAAM,GAAG,CAAC,GAAG,CAAC,CAAC;YACjD,IAAI,cAAc,GAAG,YAAY,GAAG,IAAI,CAAC,UAAU,CAAC;;YAEpD,IAAI,YAAY;YAChB;;;;gBAII,OAAO,CAAC,SAAS,GAAG,OAAO,CAAC;gBAC5B,OAAO,CAAC,WAAW,GAAG,OAAO,CAAC;;gBAE9B,IAAI,eAAe,GAAG,KAAK,CAAC,eAAe,CAAC;gBAC5C,IAAI,GAAG,GAAG,OAAO,CAAC,OAAO,eAAe,KAAK,QAAQ,GAAG,eAAe,GAAG,UAAU,CAAC,eAAe,CAAC,CAAC,CAAC;;gBAEvG,OAAO,CAAC,WAAW,GAAG,OAAO,IAAI,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,GAAG,IAAI,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,GAAG,IAAI,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,GAAG,IAAI,KAAK,CAAC,eAAe,CAAC,GAAG,GAAG,CAAC;gBACnI,OAAO,CAAC,UAAU,GAAG,KAAK,CAAC,cAAc,CAAC;gBAC1C,OAAO,CAAC,aAAa,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,kBAAkB,CAAC;gBACnF,OAAO,CAAC,aAAa,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,kBAAkB,IAAI,cAAc,CAAC;aACzG;;YAED;;gBAEI,OAAO,CAAC,SAAS,GAAG,IAAI,CAAC,kBAAkB,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;gBAC1D,OAAO,CAAC,WAAW,GAAG,KAAK,CAAC,MAAM,CAAC;;gBAEnC,OAAO,CAAC,WAAW,GAAG,CAAC,CAAC;gBACxB,OAAO,CAAC,UAAU,GAAG,CAAC,CAAC;gBACvB,OAAO,CAAC,aAAa,GAAG,CAAC,CAAC;gBAC1B,OAAO,CAAC,aAAa,GAAG,CAAC,CAAC;aAC7B;;;YAGD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,GAAG,EAAE;YAC3C;gBACI,aAAa,GAAG,KAAK,CAAC,eAAe,GAAG,CAAC,CAAC;gBAC1C,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,eAAe,GAAG,CAAC,KAAK,GAAG,GAAG,UAAU,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC;;gBAE3F,IAAI,KAAK,CAAC,KAAK,KAAK,OAAO;gBAC3B;oBACI,aAAa,IAAI,YAAY,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;iBACnD;qBACI,IAAI,KAAK,CAAC,KAAK,KAAK,QAAQ;gBACjC;oBACI,aAAa,IAAI,CAAC,YAAY,GAAG,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;iBACzD;;gBAED,IAAI,KAAK,CAAC,MAAM,IAAI,KAAK,CAAC,eAAe;gBACzC;oBACI,IAAI,CAAC,iBAAiB;wBAClB,KAAK,CAAC,GAAG,CAAC;wBACV,aAAa,GAAG,KAAK,CAAC,OAAO;wBAC7B,aAAa,GAAG,KAAK,CAAC,OAAO,GAAG,YAAY;wBAC5C,IAAI;qBACP,CAAC;iBACL;;gBAED,IAAI,KAAK,CAAC,IAAI;gBACd;oBACI,IAAI,CAAC,iBAAiB;wBAClB,KAAK,CAAC,GAAG,CAAC;wBACV,aAAa,GAAG,KAAK,CAAC,OAAO;wBAC7B,aAAa,GAAG,KAAK,CAAC,OAAO,GAAG,YAAY;qBAC/C,CAAC;iBACL;aACJ;SACJ;;QAED,IAAI,CAAC,aAAa,EAAE,CAAC;KACxB,CAAC;;;;;;;;;;;IAWF,IAAI,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,EAAE,QAAQ;IACnF;QACI,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,KAAK,CAAC;;QAE5C,IAAI,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;;;QAGxB,IAAI,aAAa,GAAG,KAAK,CAAC,aAAa,CAAC;;QAExC,IAAI,aAAa,KAAK,CAAC;QACvB;YACI,IAAI,QAAQ;YACZ;gBACI,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;aACvC;;YAED;gBACI,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;aACrC;;YAED,OAAO;SACV;;QAED,IAAI,eAAe,GAAG,CAAC,CAAC;;;;;;;;QAQxB,IAAI,WAAW,GAAG,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;QACjE,IAAI,aAAa,GAAG,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC;QACzD,IAAI,YAAY,GAAG,CAAC,CAAC;;QAErB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,MAAM,EAAE,EAAE,CAAC;QAC3C;YACI,IAAI,WAAW,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;;YAEjC,IAAI,QAAQ;YACZ;gBACI,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,WAAW,EAAE,eAAe,EAAE,CAAC,CAAC,CAAC;aAC5D;;YAED;gBACI,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,WAAW,EAAE,eAAe,EAAE,CAAC,CAAC,CAAC;aAC1D;YACD,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC;YACrE,eAAe,IAAI,aAAa,GAAG,YAAY,GAAG,aAAa,CAAC;YAChE,aAAa,GAAG,YAAY,CAAC;SAChC;KACJ,CAAC;;;;;;;IAOF,IAAI,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IACrD;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;;QAEzB,IAAI,IAAI,CAAC,MAAM,CAAC,IAAI;QACpB;YACI,IAAI,OAAO,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC;;YAEjC,IAAI,OAAO,CAAC,IAAI;YAChB;gBACI,MAAM,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;gBAC7B,MAAM,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;gBAC/B,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;aACjD;SACJ;;QAED,IAAI,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC;QAC5B,IAAI,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;QACxB,IAAI,OAAO,GAAG,KAAK,CAAC,IAAI,GAAG,CAAC,GAAG,KAAK,CAAC,OAAO,CAAC;QAC7C,IAAI,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC;;QAEtC,OAAO,CAAC,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC;QACvF,OAAO,CAAC,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC;QAC1F,OAAO,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC;QAC1B,OAAO,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC;;QAE1B,OAAO,CAAC,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,KAAK,IAAI,OAAO,GAAG,CAAC,CAAC,CAAC;QAC1D,OAAO,CAAC,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,IAAI,OAAO,GAAG,CAAC,CAAC,CAAC;;;QAG5D,IAAI,CAAC,gBAAgB,EAAE,CAAC;;QAExB,WAAW,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC;;QAEvE,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;KACtB,CAAC;;;;;;;;IAQF,IAAI,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,QAAQ;IACnD;QACI,IAAI,IAAI,CAAC,eAAe,IAAI,IAAI,CAAC,WAAW,KAAK,QAAQ,CAAC,UAAU;QACpE;YACI,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC,UAAU,CAAC;YACvC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;SACrB;;QAED,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;KACjD,CAAC;;;;;;;;IAQF,IAAI,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,IAAI;IAC7D;QACI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,OAAO,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;KAC3D,CAAC;;;;;;IAMF,IAAI,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IAC3D;QACI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,iBAAiB,EAAE,CAAC;;QAEzB,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;KACzC,CAAC;;;;;;IAMF,IAAI,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;IACvD;QACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;;;;IAUF,IAAI,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,KAAK,EAAE,KAAK;IAC7E;QACI,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC;QAC9B;YACI,OAAO,KAAK,CAAC,IAAI,CAAC;SACrB;aACI,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC;QAChC;YACI,OAAO,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;SACxB;;;;QAID,IAAI,QAAQ,CAAC;QACb,IAAI,eAAe,CAAC;QACpB,IAAI,gBAAgB,CAAC;QACrB,IAAI,IAAI,CAAC;;QAET,IAAI,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC;QAC5D,IAAI,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC;;;QAG9D,IAAI,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC;QAC9B,IAAI,iBAAiB,GAAG,KAAK,CAAC,iBAAiB,CAAC,KAAK,EAAE,CAAC;;;QAGxD,IAAI,CAAC,iBAAiB,CAAC,MAAM;QAC7B;YACI,IAAI,WAAW,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;;YAElC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,EAAE,CAAC;YACpC;gBACI,iBAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,WAAW,CAAC,CAAC;aAC3C;SACJ;;;;QAID,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;QAC5B,iBAAiB,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;;QAE7B,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;QAC7C,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;;QAE1B,IAAI,KAAK,CAAC,gBAAgB,KAAK,aAAa,CAAC,eAAe;QAC5D;;YAEI,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,oBAAoB,CAAC,KAAK,GAAG,CAAC,EAAE,CAAC,EAAE,KAAK,GAAG,CAAC,EAAE,MAAM,CAAC,CAAC;;;;YAI9E,eAAe,GAAG,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC;YACnD,gBAAgB,GAAG,CAAC,CAAC;YACrB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,GAAG,EAAE;YAC3C;gBACI,gBAAgB,IAAI,CAAC,CAAC;gBACtB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE;gBACpC;oBACI,IAAI,OAAO,iBAAiB,CAAC,CAAC,CAAC,KAAK,QAAQ;oBAC5C;wBACI,IAAI,GAAG,CAAC,iBAAiB,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,MAAM,KAAK,GAAG,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC;qBACvE;;oBAED;wBACI,IAAI,GAAG,gBAAgB,GAAG,eAAe,CAAC;qBAC7C;oBACD,QAAQ,CAAC,YAAY,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;oBACrC,gBAAgB,EAAE,CAAC;iBACtB;aACJ;SACJ;;QAED;;YAEI,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,EAAE,MAAM,GAAG,CAAC,EAAE,KAAK,EAAE,MAAM,GAAG,CAAC,CAAC,CAAC;;;;YAI/E,eAAe,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;YAClC,gBAAgB,GAAG,CAAC,CAAC;;YAErB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,EAAE,GAAG,EAAE;YAC1C;gBACI,IAAI,OAAO,iBAAiB,CAAC,GAAG,CAAC,KAAK,QAAQ;gBAC9C;oBACI,IAAI,GAAG,iBAAiB,CAAC,GAAG,CAAC,CAAC;iBACjC;;gBAED;oBACI,IAAI,GAAG,gBAAgB,GAAG,eAAe,CAAC;iBAC7C;gBACD,QAAQ,CAAC,YAAY,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;gBACvC,gBAAgB,EAAE,CAAC;aACtB;SACJ;;QAED,OAAO,QAAQ,CAAC;KACnB,CAAC;;;;;;;;;;;;;;IAcF,IAAI,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,OAAO;IAClD;QACI,IAAI,OAAO,OAAO,KAAK,SAAS;QAChC;YACI,OAAO,GAAG,EAAE,QAAQ,EAAE,OAAO,EAAE,CAAC;SACnC;;QAED,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAC;;QAE5D,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;;;QAG7C,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;QAEnB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;KACtB,CAAC;;;;;;;IAOF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,OAAO,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;KAC5D,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,IAAI,CAAC,GAAGH,MAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;QAEhC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;QACpD,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;KACvB,CAAC;;;;;;;IAOF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,OAAO,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC;KAC7D,CAAC;;IAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,KAAK;IAC/C;QACI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,IAAI,CAAC,GAAGA,MAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;QAEhC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC;QACrD,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;KACxB,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,MAAM,CAAC;KACtB,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,KAAK,GAAG,KAAK,IAAI,EAAE,CAAC;;QAEpB,IAAI,KAAK,YAAY,SAAS;QAC9B;YACI,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;SACvB;;QAED;YACI,IAAI,CAAC,MAAM,GAAG,IAAI,SAAS,CAAC,KAAK,CAAC,CAAC;SACtC;;QAED,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;IAOF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;IAEF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,IAAI;IAC5C;QACI,IAAI,GAAG,MAAM,CAAC,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC;;QAE/D,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI;QACvB;YACI,OAAO;SACV;QACD,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;QAClB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;IACpC;QACI,OAAO,IAAI,CAAC,WAAW,CAAC;KAC3B,CAAC;;IAEF,kBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,KAAK;IACnD;QACI,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;;QAE7B,IAAI,IAAI,CAAC,WAAW,KAAK,KAAK;QAC9B;YACI,OAAO;SACV;;QAED,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;QACzB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,IAAI,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAE9D,OAAO,IAAI,CAAC;CACf,CAAC,MAAM,CAAC,CAAC,CAAC;;ACluEX;;;;;;;AAOA,AAMA;;;;;;;;;;AAUA,QAAQ,CAAC,iBAAiB,GAAG,CAAC,CAAC;;;;;;;;;AAS/B,IAAI,YAAY,GAAG,SAAS,YAAY,CAAC,gBAAgB;AACzD;;;;;;IAMI,IAAI,CAAC,gBAAgB,GAAG,gBAAgB,CAAC;;;;;;IAMzC,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;CACtB,CAAC;;;;;AAKF,YAAY,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;AACvD;IACI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC;CAC1C,CAAC;;;;;;AAMF,YAAY,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;AACjE;IACI,OAAO,IAAI,CAAC,SAAS,EAAE,GAAG,CAAC,CAAC;CAC/B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;AAyBF,IAAI,WAAW,GAAG,SAAS,WAAW,CAAC,QAAQ;AAC/C;IACI,IAAI,MAAM,GAAG,IAAI,CAAC;;;;;;IAMlB,IAAI,CAAC,OAAO,GAAG,IAAI,YAAY,CAAC,QAAQ,CAAC,iBAAiB,CAAC,CAAC;;;;;;;IAO5D,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;;;;;;;;IAQzB,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;;;;;;;IAO7B,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;;;;;;;IAOhB,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;;;;;;;IAOnB,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;;;;;;;IAOtB,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;;;;;;;IAOpB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;;;;;;IAOrB,IAAI,CAAC,WAAW,GAAG,YAAY;;QAE3B,IAAI,CAAC,MAAM,CAAC,KAAK;QACjB;YACI,OAAO;SACV;QACD,MAAM,CAAC,YAAY,EAAE,CAAC;KACzB,CAAC;;;IAGF,IAAI,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC;IAChC,IAAI,CAAC,gBAAgB,CAAC,aAAa,CAAC,CAAC;IACrC,IAAI,CAAC,gBAAgB,CAAC,wBAAwB,CAAC,CAAC;IAChD,IAAI,CAAC,gBAAgB,CAAC,eAAe,CAAC,CAAC;IACvC,IAAI,CAAC,gBAAgB,CAAC,WAAW,CAAC,CAAC;;;IAGnC,IAAI,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC;IAClC,IAAI,CAAC,kBAAkB,CAAC,kBAAkB,CAAC,CAAC;CAC/C,CAAC;;;;;;;;;;AAUF,WAAW,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,IAAI,EAAE,IAAI;AAC1D;IACI,IAAI,OAAO,IAAI,KAAK,UAAU;IAC9B;QACI,IAAI,GAAG,IAAI,CAAC;QACZ,IAAI,GAAG,IAAI,CAAC;KACf;;;;IAID,IAAI,IAAI;IACR;QACI,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;KAClB;;;IAGD,IAAI,IAAI,CAAC,KAAK,CAAC,MAAM;IACrB;QACI,IAAI,IAAI;QACR;YACI,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SAC7B;;QAED,IAAI,CAAC,IAAI,CAAC,OAAO;QACjB;YACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;YACpB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,eAAe,CAAC,OAAO,CAAC,CAAC;SACnE;KACJ;SACI,IAAI,IAAI;IACb;QACI,IAAI,EAAE,CAAC;KACV;CACJ,CAAC;;;;;;;AAOF,WAAW,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;AAC1C;IACI,UAAU,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC;CACnC,CAAC;;;;;;;;AAQF,WAAW,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY;AAC1D;IACI,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC;;IAE1B,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,IAAI,IAAI,CAAC,OAAO,CAAC,eAAe,EAAE;IAC1D;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACzB,IAAI,QAAQ,GAAG,KAAK,CAAC;;QAErB,IAAI,IAAI,IAAI,CAAC,IAAI,CAAC,UAAU;QAC5B;YACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE;YAC3D;gBACI,IAAI,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC;gBACpD;oBACI,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;oBACnB,QAAQ,GAAG,IAAI,CAAC;oBAChB,MAAM;iBACT;aACJ;SACJ;;QAED,IAAI,CAAC,QAAQ;QACb;YACI,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;SACtB;KACJ;;;IAGD,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM;IACtB;QACI,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;QAErB,IAAI,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;;QAExC,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;;QAE1B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC,MAAM,EAAE,GAAG,GAAG,KAAK,EAAE,GAAG,EAAE;QAC9D;YACI,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC;SACpB;KACJ;;IAED;;QAEI,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,eAAe,CAAC,OAAO,CAAC,CAAC;KACnE;CACJ,CAAC;;;;;;;;;AASF,WAAW,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,OAAO;AAC3E;IACI,IAAI,OAAO;IACX;QACI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;KAC/B;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;AASF,WAAW,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,UAAU;AAClF;IACI,IAAI,UAAU;IACd;QACI,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;KACrC;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;AASF,WAAW,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,IAAI;AAC9C;;;IAGI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE;IACxD;QACI,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC;QACtC;YACI,MAAM;SACT;KACJ;;;IAGD,IAAI,IAAI,YAAY,SAAS;IAC7B;QACI,KAAK,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,GAAG,EAAE;QACxD;YACI,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC;SAChC;KACJ;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;AAMF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAChD;IACI,IAAI,IAAI,CAAC,OAAO;IAChB;QACI,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;KACzC;IACD,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;IACrB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;IACrB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;IACxB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;IACrB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;CAChC,CAAC;;;;;;;;;;AAUF,SAAS,wBAAwB,CAAC,IAAI,EAAE,KAAK;AAC7C;IACI,IAAI,MAAM,GAAG,KAAK,CAAC;;;IAGnB,IAAI,IAAI,IAAI,IAAI,CAAC,SAAS,IAAI,IAAI,CAAC,SAAS,CAAC,MAAM;IACnD;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE;QAC9C;YACI,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,YAAY,OAAO;YACxC;gBACI,IAAI,WAAW,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC;;gBAEhD,IAAI,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;gBACrC;oBACI,KAAK,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;oBACxB,MAAM,GAAG,IAAI,CAAC;iBACjB;aACJ;SACJ;KACJ;;IAED,OAAO,MAAM,CAAC;CACjB;;;;;;;;;;AAUD,SAAS,eAAe,CAAC,IAAI,EAAE,KAAK;AACpC;;IAEI,IAAI,IAAI,YAAY,WAAW;IAC/B;QACI,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC9B;YACI,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SACpB;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,WAAW,CAAC,IAAI,EAAE,KAAK;AAChC;IACI,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,YAAY,OAAO;IACrD;QACI,IAAI,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;;QAExC,IAAI,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;QACjC;YACI,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;SACvB;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,QAAQ,CAAC,MAAM,EAAE,IAAI;AAC9B;IACI,IAAI,IAAI,YAAY,IAAI;IACxB;;QAEI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,kBAAkB,CAAC,MAAM,EAAE,IAAI;AACxC;IACI,IAAI,IAAI,YAAY,SAAS;IAC7B;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;;QAE/B,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;;QAE9B,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,QAAQ,CAAC,IAAI,EAAE,KAAK;AAC7B;IACI,IAAI,IAAI,YAAY,IAAI;IACxB;;QAEI,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;QACpC;YACI,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SAC1B;;QAED,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC9B;YACI,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SACpB;;QAED,IAAI,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;;QAExC,IAAI,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;QACjC;YACI,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;SACvB;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,aAAa,CAAC,IAAI,EAAE,KAAK;AAClC;IACI,IAAI,IAAI,YAAY,SAAS;IAC7B;QACI,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC9B;YACI,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SACpB;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;;AAWD,IAAI,OAAO,iBAAiB,UAAU,WAAW,EAAE;IAC/C,SAAS,OAAO,CAAC,QAAQ;IACzB;QACI,WAAW,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;QAEjC,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,QAAQ,CAAC;;;QAGtC,IAAI,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAC;QACpC,IAAI,CAAC,kBAAkB,CAAC,kBAAkB,CAAC,CAAC;QAC5C,IAAI,CAAC,kBAAkB,CAAC,cAAc,CAAC,CAAC;KAC3C;;IAED,KAAK,WAAW,GAAG,OAAO,CAAC,SAAS,GAAG,WAAW,CAAC;IACnD,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,WAAW,IAAI,WAAW,CAAC,SAAS,EAAE,CAAC;IAC1E,OAAO,CAAC,SAAS,CAAC,WAAW,GAAG,OAAO,CAAC;;IAExC,OAAO,OAAO,CAAC;CAClB,CAAC,WAAW,CAAC,CAAC,CAAC;;;;;;;;;AAShB,SAAS,kBAAkB,CAAC,QAAQ,EAAE,IAAI;AAC1C;IACI,IAAI,IAAI,YAAY,WAAW;IAC/B;;;;QAII,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,WAAW,CAAC;QAC3C;YACI,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SAC/B;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,cAAc,CAAC,QAAQ,EAAE,IAAI;AACtC;IACI,IAAI,IAAI,YAAY,QAAQ;IAC5B;;;QAGI,IAAI,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,UAAU,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC;QACxF;YACI,QAAQ,CAAC,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;SAClD;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,YAAY,CAAC,IAAI,EAAE,KAAK;AACjC;IACI,IAAI,IAAI,YAAY,QAAQ;IAC5B;QACI,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAEjB,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;ACxoBD;;;;;;;AAOA,AAEA;;;;;;;;;;;;;;;;;;;AAmBA,IAAI,WAAW,GAAG,SAAS,WAAW,CAAC,OAAO;AAC9C;IACI,IAAI,MAAM,GAAG,IAAI,CAAC;;;IAGlB,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC;QACpB,WAAW,EAAE,KAAK;KACrB,EAAE,OAAO,CAAC,CAAC;;;;;;IAMZ,IAAI,CAAC,QAAQ,GAAG,kBAAkB,CAAC,OAAO,CAAC,CAAC;;;;;;IAM5C,IAAI,CAAC,KAAK,GAAG,IAAI,SAAS,EAAE,CAAC;;;IAG7B,WAAW,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,MAAM,EAAE;QAC3C,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KACrC,CAAC,CAAC;CACN,CAAC;;AAEF,IAAIG,oBAAkB,GAAG,EAAE,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;AAOzF,WAAW,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,MAAM;AAC5D;IACI,WAAW,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;CACrC,CAAC;;;;;AAKF,WAAW,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;AAC9C;IACI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;CACpC,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;AAC9B;IACI,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC;CAC7B,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC;CAC/B,CAAC;;;;;;;;;;;;;;AAcF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,UAAU,EAAE,YAAY;AAC1E;QACQ,IAAI,MAAM,GAAG,IAAI,CAAC;;;;IAItB,IAAI,OAAO,GAAG,WAAW,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;;IAE5C,OAAO,CAAC,OAAO,EAAE,CAAC;IAClB,OAAO,CAAC,OAAO,CAAC,UAAU,MAAM,EAAE;QAC9B,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;KAC/B,CAAC,CAAC;;IAEH,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;IACjC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;IAElB,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;IAClC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;IAErB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;CACxB,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,WAAW,CAAC,SAAS,EAAEA,oBAAkB,EAAE,CAAC;;;;;;;;;;;;;;;;AAgBrE,WAAW,CAAC,QAAQ,GAAG,EAAE,CAAC;;;;;;;AAO1B,IAAI,YAAY,GAAG,SAAS,YAAY,IAAI,EAAE,CAAC;;AAE/C,YAAY,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,OAAO;AAC1C;QACQ,IAAI,MAAM,GAAG,IAAI,CAAC;;;;;;;;IAQtB,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,UAAU;QAClC;YACI,GAAG,EAAE,SAAS,GAAG,CAAC,GAAG;YACrB;gBACI,MAAM,CAAC,mBAAmB,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;gBAClD,IAAI,CAAC,SAAS,GAAG,GAAG,CAAC;gBACrB,IAAI,GAAG;gBACP;oBACI,MAAM,CAAC,gBAAgB,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;oBAC/C,IAAI,CAAC,MAAM,EAAE,CAAC;iBACjB;aACJ;YACD,GAAG,EAAE,SAAS,GAAG;YACjB;gBACI,OAAO,IAAI,CAAC,SAAS,CAAC;aACzB;SACJ,CAAC,CAAC;;;;;;;IAOP,IAAI,CAAC,MAAM,GAAG,YAAY;QACtB,IAAI,MAAM,CAAC,SAAS;QACpB;;YAEI,IAAI,MAAM,CAAC,SAAS,KAAK,MAAM;YAC/B;gBACI,MAAM,CAAC,QAAQ,CAAC,MAAM;oBAClB,MAAM,CAAC,UAAU;oBACjB,MAAM,CAAC,WAAW;iBACrB,CAAC;aACL;;;YAGD;gBACI,MAAM,CAAC,QAAQ,CAAC,MAAM;oBAClB,MAAM,CAAC,SAAS,CAAC,WAAW;oBAC5B,MAAM,CAAC,SAAS,CAAC,YAAY;iBAChC,CAAC;aACL;SACJ;KACJ,CAAC;;;IAGF,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,IAAI,IAAI,CAAC;CAC5C,CAAC;;;;;;;AAOF,YAAY,CAAC,OAAO,GAAG,SAAS,OAAO;AACvC;IACI,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;IACrB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;CACtB,CAAC;;AAEF,WAAW,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC;;AC/NzC,YAAc,GAAG,SAAS,QAAQ,EAAE,GAAG,EAAE,IAAI,EAAE;EAC7C,IAAI,GAAG,IAAI,IAAI,GAAE;;EAEjB,IAAI,CAAC,GAAG;IACN,GAAG,EAAE,CAAC,QAAQ,EAAE,UAAU,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,EAAE,OAAO,EAAE,QAAQ,CAAC;IACpJ,CAAC,EAAE;MACD,IAAI,EAAE,UAAU;MAChB,MAAM,EAAE,2BAA2B;KACpC;IACD,MAAM,EAAE;MACN,MAAM,EAAE,yIAAyI;MACjJ,KAAK,EAAE,kMAAkM;KAC1M;IACF;;EAED,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,GAAG,QAAQ,GAAG,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,EAAC;EAChE,IAAI,GAAG,GAAG,GAAE;EACZ,IAAI,CAAC,GAAG,GAAE;;EAEV,OAAO,CAAC,EAAE,EAAE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,GAAE;;EAEtC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,GAAE;EAClB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,UAAU,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;IACvD,IAAI,EAAE,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,GAAE;GAC/B,EAAC;;EAEF,OAAO,GAAG;CACX;;;AC7BD;AAEA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE;EAC3C,KAAK,EAAE,IAAI;CACZ,CAAC,CAAC;;AAEH,IAAI,YAAY,GAAG,CAAC,YAAY,EAAE,SAAS,gBAAgB,CAAC,MAAM,EAAE,KAAK,EAAE,EAAE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,EAAE,IAAI,UAAU,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,UAAU,GAAG,UAAU,CAAC,UAAU,IAAI,KAAK,CAAC,CAAC,UAAU,CAAC,YAAY,GAAG,IAAI,CAAC,CAAC,IAAI,OAAO,IAAI,UAAU,EAAE,UAAU,CAAC,QAAQ,GAAG,IAAI,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,UAAU,CAAC,GAAG,EAAE,UAAU,CAAC,CAAC,EAAE,EAAE,CAAC,OAAO,UAAU,WAAW,EAAE,UAAU,EAAE,WAAW,EAAE,EAAE,IAAI,UAAU,EAAE,gBAAgB,CAAC,WAAW,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC,IAAI,WAAW,EAAE,gBAAgB,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC,CAAC,OAAO,WAAW,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC;;AAEtjB,SAAS,eAAe,CAAC,QAAQ,EAAE,WAAW,EAAE,EAAE,IAAI,EAAE,QAAQ,YAAY,WAAW,CAAC,EAAE,EAAE,MAAM,IAAI,SAAS,CAAC,mCAAmC,CAAC,CAAC,EAAE,EAAE;;AAEzJ,IAAI,iBAAiB,GAAG,CAAC,YAAY;EACnC,SAAS,iBAAiB,CAAC,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE;IAC5C,IAAI,IAAI,KAAK,SAAS,EAAE,IAAI,GAAG,KAAK,CAAC;;IAErC,eAAe,CAAC,IAAI,EAAE,iBAAiB,CAAC,CAAC;;IAEzC,IAAI,CAAC,GAAG,GAAG,EAAE,CAAC;IACd,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;IACxB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;GAC9C;;EAED,YAAY,CAAC,iBAAiB,EAAE,CAAC;IAC/B,GAAG,EAAE,QAAQ;IACb,KAAK,EAAE,SAAS,MAAM,GAAG;MACvB,IAAI,IAAI,CAAC,MAAM,KAAK,IAAI,EAAE,OAAO,KAAK,CAAC;MACvC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;MACzB,OAAO,IAAI,CAAC;KACb;GACF,CAAC,CAAC,CAAC;;EAEJ,OAAO,iBAAiB,CAAC;CAC1B,GAAG,CAAC;;AAEL,SAAS,qBAAqB,CAAC,IAAI,EAAE,IAAI,EAAE;EACzC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE;IACf,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;GACnB,MAAM;IACL,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC;IACxB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;IACxB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;GACnB;;EAED,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;EAEnB,OAAO,IAAI,CAAC;CACb;;AAED,IAAI,UAAU,GAAG,CAAC,YAAY;EAC5B,SAAS,UAAU,GAAG;IACpB,eAAe,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;;IAElC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,GAAG,SAAS,CAAC;GACrC;;EAED,YAAY,CAAC,UAAU,EAAE,CAAC;IACxB,GAAG,EAAE,UAAU;IACf,KAAK,EAAE,SAAS,QAAQ,GAAG;MACzB,IAAI,MAAM,GAAG,SAAS,CAAC,MAAM,IAAI,CAAC,IAAI,SAAS,CAAC,CAAC,CAAC,KAAK,SAAS,GAAG,KAAK,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;MAExF,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;;MAEtB,IAAI,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC;;MAE1B,IAAI,EAAE,GAAG,EAAE,CAAC;;MAEZ,OAAO,IAAI,EAAE;QACX,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACd,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;OACnB;;MAED,OAAO,EAAE,CAAC;KACX;GACF,EAAE;IACD,GAAG,EAAE,KAAK;IACV,KAAK,EAAE,SAAS,GAAG,CAAC,IAAI,EAAE;MACxB,IAAI,EAAE,IAAI,YAAY,iBAAiB,CAAC,EAAE;QACxC,MAAM,IAAI,KAAK,CAAC,iEAAiE,CAAC,CAAC;OACpF;;MAED,OAAO,IAAI,CAAC,MAAM,KAAK,IAAI,CAAC;KAC7B;GACF,EAAE;IACD,GAAG,EAAE,UAAU;IACf,KAAK,EAAE,SAAS,QAAQ,GAAG;MACzB,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;;MAEtB,IAAI,CAAC,IAAI,EAAE,OAAO,KAAK,CAAC;;MAExB,OAAO,IAAI,EAAE;QACX,IAAI,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QAClC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,SAAS,CAAC,CAAC;QACzC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;OACnB;;MAED,OAAO,IAAI,CAAC;KACb;GACF,EAAE;IACD,GAAG,EAAE,KAAK;IACV,KAAK,EAAE,SAAS,GAAG,CAAC,EAAE,EAAE;MACtB,IAAI,OAAO,GAAG,SAAS,CAAC,MAAM,IAAI,CAAC,IAAI,SAAS,CAAC,CAAC,CAAC,KAAK,SAAS,GAAG,IAAI,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;MAExF,IAAI,OAAO,EAAE,KAAK,UAAU,EAAE;QAC5B,MAAM,IAAI,KAAK,CAAC,iDAAiD,CAAC,CAAC;OACpE;MACD,OAAO,qBAAqB,CAAC,IAAI,EAAE,IAAI,iBAAiB,CAAC,EAAE,EAAE,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC;KAC/E;GACF,EAAE;IACD,GAAG,EAAE,MAAM;IACX,KAAK,EAAE,SAAS,IAAI,CAAC,EAAE,EAAE;MACvB,IAAI,OAAO,GAAG,SAAS,CAAC,MAAM,IAAI,CAAC,IAAI,SAAS,CAAC,CAAC,CAAC,KAAK,SAAS,GAAG,IAAI,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;MAExF,IAAI,OAAO,EAAE,KAAK,UAAU,EAAE;QAC5B,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAC;OACrE;MACD,OAAO,qBAAqB,CAAC,IAAI,EAAE,IAAI,iBAAiB,CAAC,EAAE,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC;KAC9E;GACF,EAAE;IACD,GAAG,EAAE,QAAQ;IACb,KAAK,EAAE,SAAS,MAAM,CAAC,IAAI,EAAE;MAC3B,IAAI,EAAE,IAAI,YAAY,iBAAiB,CAAC,EAAE;QACxC,MAAM,IAAI,KAAK,CAAC,oEAAoE,CAAC,CAAC;OACvF;MACD,IAAI,IAAI,CAAC,MAAM,KAAK,IAAI,EAAE,OAAO,IAAI,CAAC;;MAEtC,IAAI,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;MAC9C,IAAI,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;;MAE9C,IAAI,IAAI,KAAK,IAAI,CAAC,KAAK,EAAE;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;QACxB,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI,EAAE;UACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;SACnB;OACF,MAAM,IAAI,IAAI,KAAK,IAAI,CAAC,KAAK,EAAE;QAC9B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;QACxB,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC;OACzB;;MAED,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;MACnB,OAAO,IAAI,CAAC;KACb;GACF,EAAE;IACD,GAAG,EAAE,WAAW;IAChB,KAAK,EAAE,SAAS,SAAS,GAAG;MAC1B,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;MACtB,IAAI,CAAC,IAAI,EAAE,OAAO,IAAI,CAAC;;MAEvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;MAE/B,OAAO,IAAI,EAAE;QACX,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;OACnB;MACD,OAAO,IAAI,CAAC;KACb;GACF,CAAC,CAAC,CAAC;;EAEJ,OAAO,UAAU,CAAC;CACnB,GAAG,CAAC;;AAEL,UAAU,CAAC,iBAAiB,GAAG,iBAAiB,CAAC;;AAEjD,OAAO,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC;AAChC,cAAc,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC;;;;;ACpKpC;;;;;;;;AAQA,AAEA;;;;;;;;;;;;;;AAcA,SAAS,KAAK,GAAG,EAAE;;;;;;;;;;;;;;;AAenB,SAAS,UAAU,CAAC,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE;EACxD,IAAI,CAAC,GAAG,CAAC,CAAC;EACV,IAAI,GAAG,GAAG,KAAK,CAAC,MAAM,CAAC;;EAEvB,CAAC,SAAS,IAAI,CAAC,GAAG,EAAE;IAClB,IAAI,GAAG,IAAI,CAAC,KAAK,GAAG,EAAE;MACpB,IAAI,QAAQ,EAAE;QACZ,QAAQ,CAAC,GAAG,CAAC,CAAC;OACf;;MAED,OAAO;KACR;;IAED,IAAI,SAAS,EAAE;MACb,UAAU,CAAC,YAAY;QACrB,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,CAAC;OAC5B,EAAE,CAAC,CAAC,CAAC;KACP,MAAM;MACL,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,CAAC;KAC5B;GACF,GAAG,CAAC;CACN;;;;;;;;;;AAUD,SAAS,QAAQ,CAAC,EAAE,EAAE;EACpB,OAAO,SAAS,WAAW,GAAG;IAC5B,IAAI,EAAE,KAAK,IAAI,EAAE;MACf,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAC;KACjD;;IAED,IAAI,MAAM,GAAG,EAAE,CAAC;IAChB,EAAE,GAAG,IAAI,CAAC;IACV,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;GAC/B,CAAC;CACH;;;;;;;;;;;;AAYD,SAAS,KAAK,CAAC,MAAM,EAAE,WAAW,EAAE;EAClC,IAAI,WAAW,IAAI,IAAI,EAAE;;IAEvB,WAAW,GAAG,CAAC,CAAC;GACjB,MAAM,IAAI,WAAW,KAAK,CAAC,EAAE;IAC5B,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAC;GACjD;;EAED,IAAI,OAAO,GAAG,CAAC,CAAC;EAChB,IAAI,CAAC,GAAG;IACN,MAAM,EAAE,EAAE;IACV,WAAW,EAAE,WAAW;IACxB,SAAS,EAAE,KAAK;IAChB,WAAW,EAAE,KAAK;IAClB,MAAM,EAAE,WAAW,GAAG,CAAC;IACvB,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE,KAAK;IACZ,OAAO,EAAE,KAAK;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE,SAAS,IAAI,CAAC,IAAI,EAAE,QAAQ,EAAE;MAClC,OAAO,CAAC,IAAI,EAAE,KAAK,EAAE,QAAQ,CAAC,CAAC;KAChC;IACD,IAAI,EAAE,SAAS,IAAI,GAAG;MACpB,OAAO,GAAG,CAAC,CAAC;MACZ,CAAC,CAAC,KAAK,GAAG,KAAK,CAAC;MAChB,CAAC,CAAC,OAAO,GAAG,KAAK,CAAC;MAClB,CAAC,CAAC,MAAM,GAAG,EAAE,CAAC;KACf;IACD,OAAO,EAAE,SAAS,OAAO,CAAC,IAAI,EAAE,QAAQ,EAAE;MACxC,OAAO,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAC;KAC/B;IACD,OAAO,EAAE,SAAS,OAAO,GAAG;MAC1B,OAAO,CAAC,CAAC,CAAC,MAAM,IAAI,OAAO,GAAG,CAAC,CAAC,WAAW,IAAI,CAAC,CAAC,MAAM,CAAC,MAAM,EAAE;QAC9D,IAAI,IAAI,GAAG,CAAC,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;;QAE5B,IAAI,CAAC,CAAC,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE;UACzB,CAAC,CAAC,KAAK,EAAE,CAAC;SACX;;QAED,OAAO,IAAI,CAAC,CAAC;;QAEb,IAAI,OAAO,KAAK,CAAC,CAAC,WAAW,EAAE;UAC7B,CAAC,CAAC,SAAS,EAAE,CAAC;SACf;;QAED,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;OAC1C;KACF;IACD,MAAM,EAAE,SAAS,MAAM,GAAG;MACxB,OAAO,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC;KACxB;IACD,OAAO,EAAE,SAAS,OAAO,GAAG;MAC1B,OAAO,OAAO,CAAC;KAChB;IACD,IAAI,EAAE,SAAS,IAAI,GAAG;MACpB,OAAO,CAAC,CAAC,MAAM,CAAC,MAAM,GAAG,OAAO,KAAK,CAAC,CAAC;KACxC;IACD,KAAK,EAAE,SAAS,KAAK,GAAG;MACtB,IAAI,CAAC,CAAC,MAAM,KAAK,IAAI,EAAE;QACrB,OAAO;OACR;;MAED,CAAC,CAAC,MAAM,GAAG,IAAI,CAAC;KACjB;IACD,MAAM,EAAE,SAAS,MAAM,GAAG;MACxB,IAAI,CAAC,CAAC,MAAM,KAAK,KAAK,EAAE;QACtB,OAAO;OACR;;MAED,CAAC,CAAC,MAAM,GAAG,KAAK,CAAC;;;MAGjB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,CAAC,EAAE,EAAE;QACvC,CAAC,CAAC,OAAO,EAAE,CAAC;OACb;KACF;GACF,CAAC;;EAEF,SAAS,OAAO,CAAC,IAAI,EAAE,aAAa,EAAE,QAAQ,EAAE;IAC9C,IAAI,QAAQ,IAAI,IAAI,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;;MAEtD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;KACrD;;IAED,CAAC,CAAC,OAAO,GAAG,IAAI,CAAC;;IAEjB,IAAI,IAAI,IAAI,IAAI,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE;;;MAG5B,UAAU,CAAC,YAAY;QACrB,OAAO,CAAC,CAAC,KAAK,EAAE,CAAC;OAClB,EAAE,CAAC,CAAC,CAAC;MACN,OAAO;KACR;;IAED,IAAI,IAAI,GAAG;MACT,IAAI,EAAE,IAAI;MACV,QAAQ,EAAE,OAAO,QAAQ,KAAK,UAAU,GAAG,QAAQ,GAAG,KAAK;KAC5D,CAAC;;IAEF,IAAI,aAAa,EAAE;MACjB,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB,MAAM;MACL,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACrB;;IAED,UAAU,CAAC,YAAY;MACrB,OAAO,CAAC,CAAC,OAAO,EAAE,CAAC;KACpB,EAAE,CAAC,CAAC,CAAC;GACP;;EAED,SAAS,KAAK,CAAC,IAAI,EAAE;IACnB,OAAO,SAAS,IAAI,GAAG;MACrB,OAAO,IAAI,CAAC,CAAC;MACb,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;;MAErC,IAAI,SAAS,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE;;QAExB,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;OAClC;;MAED,IAAI,OAAO,IAAI,CAAC,CAAC,WAAW,GAAG,CAAC,CAAC,MAAM,EAAE;QACvC,CAAC,CAAC,WAAW,EAAE,CAAC;OACjB;;MAED,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE;QACZ,CAAC,CAAC,KAAK,EAAE,CAAC;OACX;;MAED,CAAC,CAAC,OAAO,EAAE,CAAC;KACb,CAAC;GACH;;EAED,OAAO,CAAC,CAAC;CACV;AACD,AAKA;;AAEA,IAAI,KAAK,GAAG,EAAE,CAAC;;;;;;;;;;;;;;AAcf,SAAS,OAAO,CAAC,QAAQ,EAAE,IAAI,EAAE;EAC/B,IAAI,KAAK,GAAG,IAAI,CAAC;;;EAGjB,IAAI,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;IACvB,QAAQ,CAAC,IAAI,GAAG,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;IACpC,QAAQ,CAAC,QAAQ,EAAE,CAAC;GACrB;OACI;MACD,QAAQ,CAAC,UAAU,CAAC,IAAI,CAAC,YAAY;QACnC,OAAO,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC,IAAI,CAAC;OACtC,CAAC,CAAC;KACJ;;EAEH,IAAI,EAAE,CAAC;CACR;;AAED,SAAS,iBAAiB,CAAC,MAAM,EAAE,KAAK,EAAE;EACxC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;IACrC,IAAI,UAAU,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAC1B,UAAU,CAAC,UAAU,GAAG,UAAU,CAAC,UAAU,IAAI,KAAK,CAAC;IACvD,UAAU,CAAC,YAAY,GAAG,IAAI,CAAC;IAC/B,IAAI,OAAO,IAAI,UAAU,EAAE,UAAU,CAAC,QAAQ,GAAG,IAAI,CAAC;IACtD,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,UAAU,CAAC,GAAG,EAAE,UAAU,CAAC,CAAC;GAC3D;CACF;;AAED,SAAS,YAAY,CAAC,WAAW,EAAE,UAAU,EAAE,WAAW,EAAE;EAC1D,IAAI,UAAU,EAAE,iBAAiB,CAAC,WAAW,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC;EACrE,IAAI,WAAW,EAAE,iBAAiB,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;EAC7D,OAAO,WAAW,CAAC;CACpB;;AAED,IAAI,MAAM,GAAG,CAAC,EAAE,MAAM,CAAC,cAAc,IAAI,EAAE,iBAAiB,IAAI,IAAI,cAAc,EAAE,CAAC,CAAC,CAAC;AACvF,IAAIY,YAAU,GAAG,IAAI,CAAC;;AAEtB,IAAI,WAAW,GAAG,CAAC,CAAC;AACpB,IAAI,SAAS,GAAG,GAAG,CAAC;AACpB,IAAI,YAAY,GAAG,GAAG,CAAC;AACvB,IAAI,mBAAmB,GAAG,IAAI,CAAC;AAC/B,IAAI,cAAc,GAAG,CAAC,CAAC;;AAEvB,SAAS,OAAO,GAAG,EAAE;;;;;;;;;;AAUrB,IAAIC,UAAQ;;AAEZ,YAAY;;;;;;;;EAQV,QAAQ,CAAC,oBAAoB,GAAG,SAAS,oBAAoB,CAAC,OAAO,EAAE,QAAQ,EAAE;IAC/E,SAAS,CAAC,QAAQ,CAAC,YAAY,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;GACrD;;;;;;;;GAQA;;EAED,QAAQ,CAAC,mBAAmB,GAAG,SAAS,mBAAmB,CAAC,OAAO,EAAE,OAAO,EAAE;IAC5E,SAAS,CAAC,QAAQ,CAAC,WAAW,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;GACnD;;;;;;;;;;;;;;;;;GAiBA;;EAED,SAAS,QAAQ,CAAC,IAAI,EAAE,GAAG,EAAE,OAAO,EAAE;IACpC,IAAI,OAAO,IAAI,KAAK,QAAQ,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;MACvD,MAAM,IAAI,KAAK,CAAC,6DAA6D,CAAC,CAAC;KAChF;;IAED,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;;;;;;;IAQxB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;;IAEhB,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,QAAQ,EAAE,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC;;;;;;;;;IAS1E,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;;IAQjB,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;;;;;;;;IAQf,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,aAAa,EAAE,CAAC;;;;;;;IAOtC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;IAOjB,IAAI,CAAC,WAAW,GAAG,OAAO,CAAC,WAAW,KAAK,IAAI,GAAG,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC;;;;;;;;;IASpF,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,IAAI,CAAC,CAAC;;;;;;;IAOpC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,IAAI,IAAI,CAAC,kBAAkB,EAAE,CAAC;;;;;;;IAO9D,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;;;;;;;;;;IAU/B,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,IAAI,EAAE,CAAC;;;;;;;;IAQvC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;;;;;;;IASlB,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC;;;;;;;;IAQhB,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;;;;;;;;IAQnB,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC;;;;;;;;IAQlC,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;;;;;;;;IASvB,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;;;;;;;;IAQxB,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC;;;;;;;;IAQ3B,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;;;;;;;IAQvB,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;IAQ/C,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;IAQ9C,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;IAQpD,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;IAElD,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACpD,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACxD,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACpD,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;;IASlD,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;;;;;IAa5B,IAAI,CAAC,UAAU,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;;IAU/B,IAAI,CAAC,UAAU,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;IAS/B,IAAI,CAAC,iBAAiB,GAAG,IAAI,MAAM,EAAE,CAAC;GACvC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8CD,IAAI,MAAM,GAAG,QAAQ,CAAC,SAAS,CAAC;;;;;;EAMhC,MAAM,CAAC,QAAQ,GAAG,SAAS,QAAQ,GAAG;IACpC,IAAI,CAAC,YAAY,EAAE,CAAC;;IAEpB,IAAI,CAAC,OAAO,EAAE,CAAC;GAChB;;;;;;GAMA;;EAED,MAAM,CAAC,KAAK,GAAG,SAAS,KAAK,CAAC,OAAO,EAAE;;IAErC,IAAI,IAAI,CAAC,KAAK,EAAE;MACd,OAAO;KACR;;;IAGD,IAAI,CAAC,KAAK,GAAG,IAAI,KAAK,CAAC,OAAO,CAAC,CAAC;;IAEhC,IAAI,CAAC,YAAY,EAAE,CAAC;;;IAGpB,IAAI,IAAI,CAAC,GAAG,EAAE;MACZ,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC;KAClB,MAAM,IAAI,IAAI,CAAC,GAAG,EAAE;MACnB,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC;KAClB,MAAM,IAAI,IAAI,CAAC,IAAI,EAAE;;MAEpB,IAAI,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;QACjB,IAAI,CAAC,IAAI,CAAC,GAAG,GAAG,QAAQ,CAAC,SAAS,CAAC;OACpC;WACI;UACD,OAAO,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE;YAC3B,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;WAC7C;SACF;KACJ;;;IAGD,IAAI,CAAC,OAAO,EAAE,CAAC;GAChB;;;;;;GAMA;;EAED,MAAM,CAAC,IAAI,GAAG,SAAS,IAAI,CAAC,EAAE,EAAE;IAC9B,IAAI,KAAK,GAAG,IAAI,CAAC;;IAEjB,IAAI,IAAI,CAAC,SAAS,EAAE;MAClB,OAAO;KACR;;IAED,IAAI,IAAI,CAAC,UAAU,EAAE;MACnB,IAAI,EAAE,EAAE;QACN,UAAU,CAAC,YAAY;UACrB,OAAO,EAAE,CAAC,KAAK,CAAC,CAAC;SAClB,EAAE,CAAC,CAAC,CAAC;OACP;;MAED,OAAO;KACR,MAAM,IAAI,EAAE,EAAE;MACb,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;KAC1B;;IAED,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;;IAEnD,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;;IAE5B,IAAI,IAAI,CAAC,WAAW,KAAK,KAAK,IAAI,OAAO,IAAI,CAAC,WAAW,KAAK,QAAQ,EAAE;MACtE,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KACzD;;IAED,QAAQ,IAAI,CAAC,QAAQ;MACnB,KAAK,QAAQ,CAAC,SAAS,CAAC,KAAK;QAC3B,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;;QAEhC,IAAI,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;;QAE3B,MAAM;;MAER,KAAK,QAAQ,CAAC,SAAS,CAAC,KAAK;QAC3B,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;;QAEhC,IAAI,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;;QAEjC,MAAM;;MAER,KAAK,QAAQ,CAAC,SAAS,CAAC,KAAK;QAC3B,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;;QAEhC,IAAI,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;;QAEjC,MAAM;;MAER,KAAK,QAAQ,CAAC,SAAS,CAAC,GAAG,CAAC;;;MAG5B;QACE,IAAI,MAAM,IAAI,IAAI,CAAC,WAAW,EAAE;UAC9B,IAAI,CAAC,QAAQ,EAAE,CAAC;SACjB,MAAM;UACL,IAAI,CAAC,QAAQ,EAAE,CAAC;SACjB;;QAED,MAAM;KACT;GACF;;;;;;;;GAQA;;EAED,MAAM,CAAC,QAAQ,GAAG,SAAS,QAAQ,CAAC,IAAI,EAAE;IACxC,OAAO,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,MAAM,CAAC,CAAC;GACnC;;;;;;;;GAQA;;EAED,MAAM,CAAC,QAAQ,GAAG,SAAS,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE;IAC/C,IAAI,CAAC,MAAM,GAAG,KAAK,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC;GAChE;;;;;;GAMA;;EAED,MAAM,CAAC,YAAY,GAAG,SAAS,YAAY,GAAG;IAC5C,YAAY,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;;IAEjC,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,CAAC,mBAAmB,EAAE;MAC9C,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,OAAO,EAAE,IAAI,CAAC,aAAa,EAAE,KAAK,CAAC,CAAC;MAClE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,EAAE,KAAK,CAAC,CAAC;MAClE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,UAAU,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;MACxE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,EAAE,IAAI,CAAC,cAAc,EAAE,KAAK,CAAC,CAAC;KAC7E;;IAED,IAAI,IAAI,CAAC,GAAG,EAAE;MACZ,IAAI,IAAI,CAAC,GAAG,CAAC,mBAAmB,EAAE;QAChC,IAAI,CAAC,GAAG,CAAC,mBAAmB,CAAC,OAAO,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;QACpE,IAAI,CAAC,GAAG,CAAC,mBAAmB,CAAC,SAAS,EAAE,IAAI,CAAC,kBAAkB,EAAE,KAAK,CAAC,CAAC;QACxE,IAAI,CAAC,GAAG,CAAC,mBAAmB,CAAC,OAAO,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;QACpE,IAAI,CAAC,GAAG,CAAC,mBAAmB,CAAC,UAAU,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;QACvE,IAAI,CAAC,GAAG,CAAC,mBAAmB,CAAC,MAAM,EAAE,IAAI,CAAC,eAAe,EAAE,KAAK,CAAC,CAAC;OACnE,MAAM;QACL,IAAI,CAAC,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC;QACxB,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC;QAC1B,IAAI,CAAC,GAAG,CAAC,UAAU,GAAG,IAAI,CAAC;QAC3B,IAAI,CAAC,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC;OACxB;KACF;GACF;;;;;;GAMA;;EAED,MAAM,CAAC,OAAO,GAAG,SAAS,OAAO,GAAG;IAClC,IAAI,IAAI,CAAC,UAAU,EAAE;MACnB,MAAM,IAAI,KAAK,CAAC,0DAA0D,CAAC,CAAC;KAC7E;;IAED,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;;IAEpD,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;;IAEpD,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;GAChC;;;;;;;;GAQA;;EAED,MAAM,CAAC,YAAY,GAAG,SAAS,YAAY,CAAC,IAAI,EAAE;IAChD,IAAI,IAAI,CAAC,QAAQ,CAAC,WAAW,EAAE;MAC7B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;KACvC,MAAM,IAAI,IAAI,KAAK,OAAO,IAAI,OAAO,MAAM,CAAC,KAAK,KAAK,WAAW,EAAE;MAClE,IAAI,CAAC,IAAI,GAAG,IAAI,KAAK,EAAE,CAAC;KACzB,MAAM;MACL,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;KAC1C;;IAED,IAAI,IAAI,CAAC,WAAW,EAAE;MACpB,IAAI,CAAC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;KAC1C;;IAED,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE;MAC7B,IAAI,CAAC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;KAC1B;;IAED,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,aAAa,EAAE,KAAK,CAAC,CAAC;IAC/D,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,EAAE,KAAK,CAAC,CAAC;IAC/D,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,UAAU,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;;IAErE,IAAI,IAAI,CAAC,OAAO,EAAE;MAChB,IAAI,CAAC,aAAa,GAAG,UAAU,CAAC,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;KACrE;GACF;;;;;;;;GAQA;;EAED,MAAM,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,CAAC,IAAI,EAAE;IAC5D,IAAI,IAAI,CAAC,QAAQ,CAAC,WAAW,EAAE;MAC7B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;KACvC,MAAM,IAAI,IAAI,KAAK,OAAO,IAAI,OAAO,MAAM,CAAC,KAAK,KAAK,WAAW,EAAE;MAClE,IAAI,CAAC,IAAI,GAAG,IAAI,KAAK,EAAE,CAAC;KACzB,MAAM;MACL,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;KAC1C;;IAED,IAAI,IAAI,CAAC,IAAI,KAAK,IAAI,EAAE;MACtB,IAAI,CAAC,KAAK,CAAC,uBAAuB,GAAG,IAAI,CAAC,CAAC;MAC3C,OAAO;KACR;;IAED,IAAI,IAAI,CAAC,WAAW,EAAE;MACpB,IAAI,CAAC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;KAC1C;;IAED,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE;;MAE7B,IAAI,SAAS,CAAC,UAAU,EAAE;QACxB,IAAI,CAAC,IAAI,CAAC,GAAG,GAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC;OAClE,MAAM,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE;QAClC,IAAI,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC;;QAEvC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;UACxC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC;SACnH;OACF,MAAM;QACL,IAAI,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC;QACxC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,EAAE,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC;OACnH;KACF;;IAED,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,aAAa,EAAE,KAAK,CAAC,CAAC;IAC/D,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,EAAE,KAAK,CAAC,CAAC;IAC/D,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,UAAU,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;IACrE,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,gBAAgB,EAAE,IAAI,CAAC,cAAc,EAAE,KAAK,CAAC,CAAC;IACzE,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;;IAEjB,IAAI,IAAI,CAAC,OAAO,EAAE;MAChB,IAAI,CAAC,aAAa,GAAG,UAAU,CAAC,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;KACrE;GACF;;;;;;GAMA;;EAED,MAAM,CAAC,QAAQ,GAAG,SAAS,QAAQ,GAAG;;IAEpC,IAAI,OAAO,IAAI,CAAC,OAAO,KAAK,QAAQ,EAAE;MACpC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,iBAAiB,EAAE,CAAC;KACzC;;IAED,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,cAAc,EAAE,CAAC;;IAE1C,GAAG,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IAChC,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;;;IAG3B,IAAI,IAAI,CAAC,OAAO,KAAK,QAAQ,CAAC,iBAAiB,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,QAAQ,CAAC,iBAAiB,CAAC,QAAQ,EAAE;MAC5G,GAAG,CAAC,YAAY,GAAG,QAAQ,CAAC,iBAAiB,CAAC,IAAI,CAAC;KACpD,MAAM;MACL,GAAG,CAAC,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC;KACjC;;IAED,GAAG,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;IAC5D,GAAG,CAAC,gBAAgB,CAAC,SAAS,EAAE,IAAI,CAAC,kBAAkB,EAAE,KAAK,CAAC,CAAC;IAChE,GAAG,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;IAC5D,GAAG,CAAC,gBAAgB,CAAC,UAAU,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;IAC/D,GAAG,CAAC,gBAAgB,CAAC,MAAM,EAAE,IAAI,CAAC,eAAe,EAAE,KAAK,CAAC,CAAC;IAC1D,GAAG,CAAC,IAAI,EAAE,CAAC;GACZ;;;;;;GAMA;;EAED,MAAM,CAAC,QAAQ,GAAG,SAAS,QAAQ,GAAG;;IAEpC,IAAI,OAAO,IAAI,CAAC,OAAO,KAAK,QAAQ,EAAE;MACpC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,iBAAiB,EAAE,CAAC;KACzC;;IAED,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,cAAc,EAAE,CAAC;;;;;IAK1C,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC;;IAEnC,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC;IACpC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,kBAAkB,CAAC;IACxC,GAAG,CAAC,UAAU,GAAG,IAAI,CAAC,gBAAgB,CAAC;IACvC,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,eAAe,CAAC;IAClC,GAAG,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;;;;;IAKhC,UAAU,CAAC,YAAY;MACrB,OAAO,GAAG,CAAC,IAAI,EAAE,CAAC;KACnB,EAAE,CAAC,CAAC,CAAC;GACP;;;;;;;;;;GAUA;;EAED,MAAM,CAAC,aAAa,GAAG,SAAS,aAAa,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE;IAC7D,IAAI,CAAC,IAAI,EAAE;MACT,IAAI,GAAG,IAAI,GAAG,GAAG,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;KAC7C;;IAED,IAAI,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;IAC9C,MAAM,CAAC,GAAG,GAAG,GAAG,CAAC;IACjB,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;IACnB,OAAO,MAAM,CAAC;GACf;;;;;;;GAOA;;EAED,MAAM,CAAC,QAAQ,GAAG,SAAS,QAAQ,CAAC,KAAK,EAAE;IACzC,IAAI,CAAC,KAAK,CAAC,gCAAgC,GAAG,KAAK,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;GACtE;;;;;;;GAOA;;EAED,MAAM,CAAC,WAAW,GAAG,SAAS,WAAW,CAAC,KAAK,EAAE;IAC/C,IAAI,KAAK,IAAI,KAAK,CAAC,gBAAgB,EAAE;MACnC,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,IAAI,EAAE,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC;KAC5D;GACF;;;;;;GAMA;;EAED,MAAM,CAAC,UAAU,GAAG,SAAS,UAAU,GAAG;IACxC,IAAI,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC;GAC/B;;;;;;GAMA;;EAED,MAAM,CAAC,WAAW,GAAG,SAAS,WAAW,GAAG;IAC1C,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;IACnB,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,2BAA2B,GAAG,GAAG,CAAC,MAAM,GAAG,YAAY,GAAG,GAAG,CAAC,UAAU,GAAG,IAAI,CAAC,CAAC;GAC5G;;;;;;GAMA;;EAED,MAAM,CAAC,aAAa,GAAG,SAAS,aAAa,GAAG;IAC9C,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;IACnB,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,qBAAqB,CAAC,CAAC;GAClD;;;;;;GAMA;;EAED,MAAM,CAAC,WAAW,GAAG,SAAS,WAAW,GAAG;IAC1C,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;IACnB,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,mCAAmC,CAAC,CAAC;GAChE;;;;;;;GAOA;;EAED,MAAM,CAAC,UAAU,GAAG,SAAS,UAAU,GAAG;IACxC,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;IACnB,IAAI,IAAI,GAAG,EAAE,CAAC;IACd,IAAI,MAAM,GAAG,OAAO,GAAG,CAAC,MAAM,KAAK,WAAW,GAAG,SAAS,GAAG,GAAG,CAAC,MAAM,CAAC;;;IAGxE,IAAI,GAAG,CAAC,YAAY,KAAK,EAAE,IAAI,GAAG,CAAC,YAAY,KAAK,MAAM,IAAI,OAAO,GAAG,CAAC,YAAY,KAAK,WAAW,EAAE;MACrG,IAAI,GAAG,GAAG,CAAC,YAAY,CAAC;KACzB;;;;IAID,IAAI,MAAM,KAAK,WAAW,KAAK,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,GAAG,CAAC,YAAY,KAAK,QAAQ,CAAC,iBAAiB,CAAC,MAAM,CAAC,EAAE;MACzG,MAAM,GAAG,SAAS,CAAC;KACpB;SACI,IAAI,MAAM,KAAK,mBAAmB,EAAE;QACrC,MAAM,GAAG,YAAY,CAAC;OACvB;;IAEH,IAAI,UAAU,GAAG,MAAM,GAAG,GAAG,GAAG,CAAC,CAAC;;IAElC,IAAI,UAAU,KAAK,cAAc,EAAE;;MAEjC,IAAI,IAAI,CAAC,OAAO,KAAK,QAAQ,CAAC,iBAAiB,CAAC,IAAI,EAAE;QACpD,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC;OAChC;WACI,IAAI,IAAI,CAAC,OAAO,KAAK,QAAQ,CAAC,iBAAiB,CAAC,IAAI,EAAE;UACvD,IAAI;YACF,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YAC7B,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC;WAChC,CAAC,OAAO,CAAC,EAAE;YACV,IAAI,CAAC,KAAK,CAAC,qCAAqC,GAAG,CAAC,CAAC,CAAC;YACtD,OAAO;WACR;SACF;aACI,IAAI,IAAI,CAAC,OAAO,KAAK,QAAQ,CAAC,iBAAiB,CAAC,QAAQ,EAAE;YAC3D,IAAI;cACF,IAAI,MAAM,CAAC,SAAS,EAAE;gBACpB,IAAI,SAAS,GAAG,IAAI,SAAS,EAAE,CAAC;gBAChC,IAAI,CAAC,IAAI,GAAG,SAAS,CAAC,eAAe,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;eACzD,MAAM;gBACL,IAAI,GAAG,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;gBACxC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC;gBACrB,IAAI,CAAC,IAAI,GAAG,GAAG,CAAC;eACjB;;cAED,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,GAAG,CAAC;aAC/B,CAAC,OAAO,CAAC,EAAE;cACV,IAAI,CAAC,KAAK,CAAC,oCAAoC,GAAG,CAAC,CAAC,CAAC;cACrD,OAAO;aACR;WACF;eACI;cACD,IAAI,CAAC,IAAI,GAAG,GAAG,CAAC,QAAQ,IAAI,IAAI,CAAC;aAClC;KACR,MAAM;MACL,IAAI,CAAC,KAAK,CAAC,GAAG,GAAG,GAAG,CAAC,MAAM,GAAG,IAAI,GAAG,GAAG,CAAC,UAAU,GAAG,IAAI,GAAG,GAAG,CAAC,WAAW,CAAC,CAAC;MAC9E,OAAO;KACR;;IAED,IAAI,CAAC,QAAQ,EAAE,CAAC;GACjB;;;;;;;;;;;GAWA;;EAED,MAAM,CAAC,qBAAqB,GAAG,SAAS,qBAAqB,CAAC,GAAG,EAAE,GAAG,EAAE;;IAEtE,IAAI,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;MAC9B,OAAO,EAAE,CAAC;KACX;;;;;IAKD,IAAI,MAAM,CAAC,MAAM,KAAK,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE;MAC5C,OAAO,WAAW,CAAC;KACpB;;;IAGD,GAAG,GAAG,GAAG,IAAI,MAAM,CAAC,QAAQ,CAAC;;IAE7B,IAAI,CAACD,YAAU,EAAE;MACfA,YAAU,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;KAC1C;;;;;IAKDA,YAAU,CAAC,IAAI,GAAG,GAAG,CAAC;IACtB,GAAG,GAAG,QAAQ,CAACA,YAAU,CAAC,IAAI,EAAE;MAC9B,UAAU,EAAE,IAAI;KACjB,CAAC,CAAC;IACH,IAAI,QAAQ,GAAG,CAAC,GAAG,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,KAAK,EAAE,IAAI,GAAG,CAAC,IAAI,KAAK,GAAG,CAAC,IAAI,CAAC;IACrE,IAAI,QAAQ,GAAG,GAAG,CAAC,QAAQ,GAAG,GAAG,CAAC,QAAQ,GAAG,GAAG,GAAG,EAAE,CAAC;;IAEtD,IAAI,GAAG,CAAC,IAAI,KAAK,GAAG,CAAC,QAAQ,IAAI,CAAC,QAAQ,IAAI,QAAQ,KAAK,GAAG,CAAC,QAAQ,EAAE;MACvE,OAAO,WAAW,CAAC;KACpB;;IAED,OAAO,EAAE,CAAC;GACX;;;;;;;;GAQA;;EAED,MAAM,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,GAAG;IACtD,OAAO,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,QAAQ,CAAC,iBAAiB,CAAC,IAAI,CAAC;GAChF;;;;;;;;GAQA;;EAED,MAAM,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,GAAG;IACxD,OAAO,QAAQ,CAAC,YAAY,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,QAAQ,CAAC,SAAS,CAAC,GAAG,CAAC;GACxE;;;;;;;GAOA;;EAED,MAAM,CAAC,aAAa,GAAG,SAAS,aAAa,GAAG;IAC9C,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;IACnB,IAAI,GAAG,GAAG,EAAE,CAAC;;IAEb,IAAI,IAAI,CAAC,SAAS,EAAE;MAClB,IAAI,UAAU,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;MAClC,GAAG,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,GAAG,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC,GAAG,EAAE,UAAU,CAAC,CAAC,CAAC;KACnE,MAAM;MACL,IAAI,UAAU,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;MAClC,IAAI,SAAS,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;MACjC,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,GAAG,CAAC,CAAC,GAAG,UAAU,GAAG,GAAG,CAAC,MAAM,EAAE,SAAS,GAAG,CAAC,CAAC,GAAG,SAAS,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC;MACzG,GAAG,GAAG,GAAG,CAAC,SAAS,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC;MAC9B,GAAG,GAAG,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;KAC/C;;IAED,OAAO,GAAG,CAAC,WAAW,EAAE,CAAC;GAC1B;;;;;;;;;GASA;;EAED,MAAM,CAAC,mBAAmB,GAAG,SAAS,mBAAmB,CAAC,IAAI,EAAE;IAC9D,QAAQ,IAAI;MACV,KAAK,QAAQ,CAAC,iBAAiB,CAAC,MAAM;QACpC,OAAO,0BAA0B,CAAC;;MAEpC,KAAK,QAAQ,CAAC,iBAAiB,CAAC,IAAI;QAClC,OAAO,kBAAkB,CAAC;;MAE5B,KAAK,QAAQ,CAAC,iBAAiB,CAAC,QAAQ;QACtC,OAAO,iBAAiB,CAAC;;MAE3B,KAAK,QAAQ,CAAC,iBAAiB,CAAC,IAAI;QAClC,OAAO,kBAAkB,CAAC;;MAE5B,KAAK,QAAQ,CAAC,iBAAiB,CAAC,OAAO,CAAC;MACxC,KAAK,QAAQ,CAAC,iBAAiB,CAAC,IAAI,CAAC;;;MAGrC;QACE,OAAO,YAAY,CAAC;KACvB;GACF,CAAC;;EAEF,YAAY,CAAC,QAAQ,EAAE,CAAC;IACtB,GAAG,EAAE,WAAW;IAChB,GAAG,EAAE,SAAS,GAAG,GAAG;MAClB,OAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;KACtD;;;;;;;;;GASF,EAAE;IACD,GAAG,EAAE,YAAY;IACjB,GAAG,EAAE,SAAS,GAAG,GAAG;MAClB,OAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;KACtD;;;;;;;;;GASF,EAAE;IACD,GAAG,EAAE,WAAW;IAChB,GAAG,EAAE,SAAS,GAAG,GAAG;MAClB,OAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;KACrD;GACF,CAAC,CAAC,CAAC;;EAEJ,OAAO,QAAQ,CAAC;CACjB,EAAE,CAAC;;;;;;;;;;AAUJC,UAAQ,CAAC,YAAY,GAAG;EACtB,IAAI,EAAE,CAAC;EACP,QAAQ,EAAE,CAAC,IAAI,CAAC;EAChB,QAAQ,EAAE,CAAC,IAAI,CAAC;EAChB,OAAO,EAAE,CAAC,IAAI,CAAC;CAChB,CAAC;;;;;;;;;AASFA,UAAQ,CAAC,IAAI,GAAG;EACd,OAAO,EAAE,CAAC;EACV,IAAI,EAAE,CAAC;EACP,GAAG,EAAE,CAAC;EACN,KAAK,EAAE,CAAC;EACR,KAAK,EAAE,CAAC;EACR,KAAK,EAAE,CAAC;EACR,IAAI,EAAE,CAAC;CACR,CAAC;;;;;;;;;AASFA,UAAQ,CAAC,SAAS,GAAG;;EAEnB,GAAG,EAAE,CAAC;;;EAGN,KAAK,EAAE,CAAC;;;EAGR,KAAK,EAAE,CAAC;;;EAGR,KAAK,EAAE,CAAC;CACT,CAAC;;;;;;;;;AASFA,UAAQ,CAAC,iBAAiB,GAAG;;EAE3B,OAAO,EAAE,MAAM;;;EAGf,MAAM,EAAE,aAAa;;;EAGrB,IAAI,EAAE,MAAM;;;EAGZ,QAAQ,EAAE,UAAU;;;EAGpB,IAAI,EAAE,MAAM;;;EAGZ,IAAI,EAAE,MAAM;CACb,CAAC;AACFA,UAAQ,CAAC,YAAY,GAAG;;EAEtB,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,IAAI,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC9B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,IAAI,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC9B,IAAI,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC9B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,SAAS,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;;;EAGnC,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;;EAE7B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,IAAI,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;CAC/B,CAAC;AACFA,UAAQ,CAAC,WAAW,GAAG;;EAErB,KAAK,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,QAAQ;EAC1C,IAAI,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,QAAQ;EACzC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,QAAQ;EACxC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,QAAQ;EACxC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,QAAQ;EACxC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,QAAQ;;;;EAIxC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,QAAQ;;EAExC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACpC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACpC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACpC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACpC,IAAI,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACrC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACpC,IAAI,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACrC,IAAI,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACrC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;;EAEpC,IAAI,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;;EAErC,IAAI,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACrC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;;EAEpC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,MAAM;EACtC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,MAAM;CACvC,CAAC;;AAEFA,UAAQ,CAAC,SAAS,GAAG,oFAAoF,CAAC;;;;;;;;;;;AAW1G,SAAS,SAAS,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE;EACpC,IAAI,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE;IACzC,OAAO,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;GAChC;;EAED,IAAI,CAAC,OAAO,EAAE;IACZ,OAAO;GACR;;EAED,GAAG,CAAC,OAAO,CAAC,GAAG,GAAG,CAAC;CACpB;;;;;;;;;;AAUD,SAAS,OAAO,CAAC,GAAG,EAAE;EACpB,OAAO,GAAG,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;CAC9C;;AAED,IAAI,OAAO,GAAG,mEAAmE,CAAC;;;;;;;;;AASlF,SAAS,YAAY,CAAC,KAAK,EAAE;EAC3B,IAAI,MAAM,GAAG,EAAE,CAAC;EAChB,IAAI,GAAG,GAAG,CAAC,CAAC;;EAEZ,OAAO,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE;;IAEzB,IAAI,UAAU,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IAC3B,IAAI,kBAAkB,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;IAEtC,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,EAAE,GAAG,EAAE;MAChD,IAAI,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE;;;QAGtB,UAAU,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC,GAAG,IAAI,CAAC;OAClD,MAAM;QACL,UAAU,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;OACrB;KACF;;;;IAID,kBAAkB,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;IAE3C,kBAAkB,CAAC,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,GAAG,KAAK,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;IAExE,kBAAkB,CAAC,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,KAAK,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;IAEzE,kBAAkB,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;;IAE7C,IAAI,YAAY,GAAG,GAAG,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;IAE5C,QAAQ,YAAY;MAClB,KAAK,CAAC;;QAEJ,kBAAkB,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC;QAC3B,kBAAkB,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC;QAC3B,MAAM;;MAER,KAAK,CAAC;;QAEJ,kBAAkB,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC;QAC3B,MAAM;;MAER;QACE,MAAM;;KAET;;;;IAID,KAAK,IAAI,IAAI,GAAG,CAAC,EAAE,IAAI,GAAG,kBAAkB,CAAC,MAAM,EAAE,EAAE,IAAI,EAAE;MAC3D,MAAM,IAAI,OAAO,CAAC,MAAM,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAC;KACpD;GACF;;EAED,OAAO,MAAM,CAAC;CACf;;AAED,IAAIC,KAAG,GAAG,MAAM,CAAC,GAAG,IAAI,MAAM,CAAC,SAAS,CAAC;;;;;;;;;;;;;;AAczC,SAAS,OAAO,CAAC,QAAQ,EAAE,IAAI,EAAE;EAC/B,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE;IAClB,IAAI,EAAE,CAAC;IACP,OAAO;GACR;;;EAGD,IAAI,QAAQ,CAAC,GAAG,IAAI,QAAQ,CAAC,OAAO,KAAKD,UAAQ,CAAC,iBAAiB,CAAC,IAAI,EAAE;;IAExE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,OAAO,QAAQ,CAAC,IAAI,KAAK,QAAQ,EAAE;MACrD,IAAI,IAAI,GAAG,QAAQ,CAAC,GAAG,CAAC,iBAAiB,CAAC,cAAc,CAAC,CAAC;;MAE1D,IAAI,IAAI,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;QACvC,QAAQ,CAAC,IAAI,GAAG,IAAI,KAAK,EAAE,CAAC;QAC5B,QAAQ,CAAC,IAAI,CAAC,GAAG,GAAG,OAAO,GAAG,IAAI,GAAG,UAAU,GAAG,YAAY,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;QAC1F,QAAQ,CAAC,IAAI,GAAGA,UAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;;QAEpC,QAAQ,CAAC,IAAI,CAAC,MAAM,GAAG,YAAY;UACjC,QAAQ,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;UAC5B,IAAI,EAAE,CAAC;SACR,CAAC;;;QAGF,OAAO;OACR;KACF;SACI,IAAI,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;QAChD,IAAI,GAAG,GAAGC,KAAG,CAAC,eAAe,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;QAC7C,QAAQ,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;QAC9B,QAAQ,CAAC,IAAI,GAAG,IAAI,KAAK,EAAE,CAAC;QAC5B,QAAQ,CAAC,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;QACxB,QAAQ,CAAC,IAAI,GAAGD,UAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;;;QAGpC,QAAQ,CAAC,IAAI,CAAC,MAAM,GAAG,YAAY;UACjCC,KAAG,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC;UACzB,QAAQ,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;UAC5B,IAAI,EAAE,CAAC;SACR,CAAC;;;QAGF,OAAO;OACR;GACJ;;EAED,IAAI,EAAE,CAAC;CACR;;;;;;AAMD,IAAI,KAAK,IAAI;IACT,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,OAAO;CACnB,CAAC,CAAC;;AAEH,IAAI,YAAY,GAAG,GAAG,CAAC;AACvB,IAAI,iBAAiB,GAAG,aAAa,CAAC;;;;;;;AAOtC,IAAI,MAAM;;AAEV,YAAY;;;;;EAKV,SAAS,MAAM,CAAC,OAAO,EAAE,WAAW,EAAE;IACpC,IAAI,KAAK,GAAG,IAAI,CAAC;;IAEjB,IAAI,OAAO,KAAK,KAAK,CAAC,EAAE;MACtB,OAAO,GAAG,EAAE,CAAC;KACd;;IAED,IAAI,WAAW,KAAK,KAAK,CAAC,EAAE;MAC1B,WAAW,GAAG,EAAE,CAAC;KAClB;;;;;;;IAOD,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;;;;;;;IAQvB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;;;;;;;;IAQlB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;IAyBrB,IAAI,CAAC,kBAAkB,GAAG,EAAE,CAAC;;;;;;;;IAQ7B,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;;;;;;;;IAQ5B,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC;;;;;;;;IAQ3B,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;;;;;;;;;;;IAW5B,IAAI,CAAC,kBAAkB,GAAG,UAAU,CAAC,EAAE,CAAC,EAAE;MACxC,OAAO,KAAK,CAAC,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;KAClC,CAAC;;;;;;;;;IASF,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC,IAAI,CAAC,kBAAkB,EAAE,WAAW,CAAC,CAAC;;IAE1D,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;;;;;;;;IAQpB,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;;;;;;;;;IASpB,IAAI,CAAC,UAAU,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;IAS/B,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;IAS5B,IAAI,CAAC,MAAM,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;IAS3B,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;IAS5B,IAAI,CAAC,UAAU,GAAG,IAAI,MAAM,EAAE,CAAC;;IAE/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,wBAAwB,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;MAC/D,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC;KAC9C;;;IAGD,KAAK,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,GAAG,MAAM,CAAC,uBAAuB,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE;MACjE,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,uBAAuB,CAAC,EAAE,CAAC,CAAC,CAAC;KAC9C;GACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsKD,IAAI,MAAM,GAAG,MAAM,CAAC,SAAS,CAAC;;EAE9B,MAAM,CAAC,GAAG,GAAG,SAAS,GAAG,CAAC,IAAI,EAAE,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE;;IAEhD,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;MACvB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;QACpC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;OACnB;;MAED,OAAO,IAAI,CAAC;KACb;;;IAGD,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;MAC5B,EAAE,GAAG,GAAG,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,UAAU,CAAC;MAC7C,OAAO,GAAG,IAAI,CAAC;MACf,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;MACf,IAAI,GAAG,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,GAAG,CAAC;KAC1C;;;IAGD,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;MAC3B,EAAE,GAAG,OAAO,CAAC;MACb,OAAO,GAAG,GAAG,CAAC;MACd,GAAG,GAAG,IAAI,CAAC;KACZ;;;IAGD,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;MAC3B,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;KAC7D;;;IAGD,IAAI,OAAO,OAAO,KAAK,UAAU,EAAE;MACjC,EAAE,GAAG,OAAO,CAAC;MACb,OAAO,GAAG,IAAI,CAAC;KAChB;;;IAGD,IAAI,IAAI,CAAC,OAAO,KAAK,CAAC,OAAO,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,EAAE;MACzD,MAAM,IAAI,KAAK,CAAC,mDAAmD,CAAC,CAAC;KACtE;;;IAGD,IAAI,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE;MACxB,MAAM,IAAI,KAAK,CAAC,mBAAmB,GAAG,IAAI,GAAG,oBAAoB,CAAC,CAAC;KACpE;;;IAGD,GAAG,GAAG,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;;IAE5B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,IAAID,UAAQ,CAAC,IAAI,EAAE,GAAG,EAAE,OAAO,CAAC,CAAC;;IAExD,IAAI,OAAO,EAAE,KAAK,UAAU,EAAE;MAC5B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,iBAAiB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;KACjD;;;IAGD,IAAI,IAAI,CAAC,OAAO,EAAE;MAChB,IAAI,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC;MACpC,IAAI,kBAAkB,GAAG,EAAE,CAAC;;MAE5B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,EAAE,GAAG,EAAE;QACrD,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,UAAU,EAAE;UACpC,kBAAkB,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC;SAC/C;OACF;;MAED,IAAI,SAAS,GAAG,MAAM,CAAC,aAAa,IAAI,kBAAkB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;MAEvE,IAAI,SAAS,GAAG,SAAS,IAAI,kBAAkB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;MAE5D,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC;MAC3C,MAAM,CAAC,aAAa,GAAG,SAAS,CAAC;;MAEjC,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,kBAAkB,CAAC,MAAM,EAAE,EAAE,GAAG,EAAE;QACxD,kBAAkB,CAAC,GAAG,CAAC,CAAC,aAAa,GAAG,SAAS,CAAC;OACnD;;MAED,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,aAAa,GAAG,SAAS,CAAC;KAChD;;;IAGD,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC;;IAEvC,OAAO,IAAI,CAAC;GACb;;;;;;;;;;GAUA;;EAED,MAAM,CAAC,GAAG,GAAG,SAAS,GAAG,CAAC,EAAE,EAAE;IAC5B,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;;IAEhC,OAAO,IAAI,CAAC;GACb;;;;;;;;GAQA;;EAED,MAAM,CAAC,GAAG,GAAG,SAAS,GAAG,CAAC,EAAE,EAAE;IAC5B,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;;IAE/B,OAAO,IAAI,CAAC;GACb;;;;;;GAMA;;EAED,MAAM,CAAC,KAAK,GAAG,SAAS,KAAK,GAAG;IAC9B,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;IAClB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;IAErB,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC;;IAEnB,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;;;IAGpB,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,SAAS,EAAE;MAC5B,IAAI,GAAG,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;;MAE5B,IAAI,GAAG,CAAC,cAAc,EAAE;QACtB,GAAG,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC;OAC7B;;MAED,IAAI,GAAG,CAAC,SAAS,EAAE;QACjB,GAAG,CAAC,KAAK,EAAE,CAAC;OACb;KACF;;IAED,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;IACpB,OAAO,IAAI,CAAC;GACb;;;;;;;GAOA;;EAED,MAAM,CAAC,IAAI,GAAG,SAAS,IAAI,CAAC,EAAE,EAAE;;IAE9B,IAAI,OAAO,EAAE,KAAK,UAAU,EAAE;MAC5B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;KAC1B;;;IAGD,IAAI,IAAI,CAAC,OAAO,EAAE;MAChB,OAAO,IAAI,CAAC;KACb;;IAED,IAAI,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,EAAE;MACtB,IAAI,CAAC,QAAQ,EAAE,CAAC;;MAEhB,IAAI,CAAC,WAAW,EAAE,CAAC;KACpB,MAAM;;MAEL,IAAI,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC;MACzC,IAAI,KAAK,GAAG,YAAY,GAAG,QAAQ,CAAC;;MAEpC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;QAClD,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;OAClD;;;MAGD,IAAI,CAAC,QAAQ,EAAE,CAAC;;;MAGhB,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC;KACtB;;IAED,OAAO,IAAI,CAAC;GACb;;;;;;;GAOA;;;;;;;;;EASD,MAAM,CAAC,WAAW,GAAG,SAAS,WAAW,CAAC,GAAG,EAAE;IAC7C,IAAI,SAAS,GAAG,QAAQ,CAAC,GAAG,EAAE;MAC5B,UAAU,EAAE,IAAI;KACjB,CAAC,CAAC;IACH,IAAI,MAAM,CAAC;;IAEX,IAAI,SAAS,CAAC,QAAQ,IAAI,CAAC,SAAS,CAAC,IAAI,IAAI,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;MACpE,MAAM,GAAG,GAAG,CAAC;KACd;SACI,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,IAAI,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC,KAAK,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;QAChH,MAAM,GAAG,IAAI,CAAC,OAAO,GAAG,GAAG,GAAG,GAAG,CAAC;OACnC,MAAM;QACL,MAAM,GAAG,IAAI,CAAC,OAAO,GAAG,GAAG,CAAC;OAC7B;;;IAGH,IAAI,IAAI,CAAC,kBAAkB,EAAE;MAC3B,IAAI,IAAI,GAAG,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;MAC7C,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;;MAEvD,IAAI,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;QAC9B,MAAM,IAAI,GAAG,GAAG,IAAI,CAAC,kBAAkB,CAAC;OACzC,MAAM;QACL,MAAM,IAAI,GAAG,GAAG,IAAI,CAAC,kBAAkB,CAAC;OACzC;;MAED,MAAM,IAAI,IAAI,CAAC;KAChB;;IAED,OAAO,MAAM,CAAC;GACf;;;;;;;;GAQA;;EAED,MAAM,CAAC,aAAa,GAAG,SAAS,aAAa,CAAC,QAAQ,EAAE,OAAO,EAAE;IAC/D,IAAI,MAAM,GAAG,IAAI,CAAC;;IAElB,QAAQ,CAAC,QAAQ,GAAG,OAAO,CAAC;;IAE5B,UAAU,CAAC,IAAI,CAAC,iBAAiB,EAAE,UAAU,EAAE,EAAE,IAAI,EAAE;MACrD,EAAE,CAAC,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE,YAAY;;;QAGpC,IAAI,CAAC,QAAQ,CAAC,UAAU,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC;OACvC,CAAC,CAAC;KACJ,EAAE,YAAY;MACb,IAAI,QAAQ,CAAC,UAAU,EAAE;QACvB,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;OAC1B,MAAM;QACL,QAAQ,CAAC,cAAc,GAAG,QAAQ,CAAC,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;QAC3E,QAAQ,CAAC,IAAI,EAAE,CAAC;OACjB;KACF,EAAE,IAAI,CAAC,CAAC;GACV;;;;;;GAMA;;EAED,MAAM,CAAC,QAAQ,GAAG,SAAS,QAAQ,GAAG;IACpC,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;IAClB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;GAC7B;;;;;;GAMA;;EAED,MAAM,CAAC,WAAW,GAAG,SAAS,WAAW,GAAG;IAC1C,IAAI,CAAC,QAAQ,GAAG,YAAY,CAAC;IAC7B,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;IACrB,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;GAChD;;;;;;;GAOA;;EAED,MAAM,CAAC,OAAO,GAAG,SAAS,OAAO,CAAC,QAAQ,EAAE;IAC1C,IAAI,MAAM,GAAG,IAAI,CAAC;;IAElB,QAAQ,CAAC,cAAc,GAAG,IAAI,CAAC;;IAE/B,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;;IAEtC,QAAQ,CAAC,QAAQ,EAAE,CAAC;;;IAGpB,UAAU,CAAC,IAAI,CAAC,gBAAgB,EAAE,UAAU,EAAE,EAAE,IAAI,EAAE;MACpD,EAAE,CAAC,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC;KACjC,EAAE,YAAY;MACb,QAAQ,CAAC,iBAAiB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;MAC9C,MAAM,CAAC,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,MAAM,CAAC,QAAQ,GAAG,QAAQ,CAAC,aAAa,CAAC,CAAC;;MAEnF,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;;MAE7C,IAAI,QAAQ,CAAC,KAAK,EAAE;QAClB,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC;OAC3D,MAAM;QACL,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;OAC1C;;MAED,MAAM,CAAC,iBAAiB,CAAC,MAAM,CAAC,MAAM,CAAC,iBAAiB,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC;;;MAG/E,IAAI,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,IAAI,MAAM,CAAC,iBAAiB,CAAC,MAAM,KAAK,CAAC,EAAE;QACjE,MAAM,CAAC,WAAW,EAAE,CAAC;OACtB;KACF,EAAE,IAAI,CAAC,CAAC;GACV,CAAC;;EAEF,YAAY,CAAC,MAAM,EAAE,CAAC;IACpB,GAAG,EAAE,aAAa;IAClB,GAAG,EAAE,SAAS,GAAG,GAAG;MAClB,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC;KAChC;;IAED,GAAG,EAAE,SAAS,GAAG,CAAC,WAAW,EAAE;MAC7B,IAAI,CAAC,MAAM,CAAC,WAAW,GAAG,WAAW,CAAC;KACvC;GACF,CAAC,CAAC,CAAC;;EAEJ,OAAO,MAAM,CAAC;CACf,EAAE,CAAC;;;;;;;;;;AAUJ,MAAM,CAAC,wBAAwB,GAAG,EAAE,CAAC;;;;;;;;;AASrC,MAAM,CAAC,uBAAuB,GAAG,EAAE,CAAC;;;;;;;;;;AAUpC,MAAM,CAAC,GAAG,GAAG,SAAS,eAAe,CAAC,EAAE,EAAE;EACxC,MAAM,CAAC,wBAAwB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;;EAEzC,OAAO,MAAM,CAAC;CACf,CAAC;;;;;;;;;;;AAWF,MAAM,CAAC,GAAG,GAAG,SAAS,eAAe,CAAC,EAAE,EAAE;EACxC,MAAM,CAAC,uBAAuB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;;EAExC,OAAO,MAAM,CAAC;CACf,CAAC;;AC/xEF;;;;;;;AAOA,AAGA;;;;;;;AAOA,IAAI,aAAa,GAAG,SAAS,aAAa,IAAI,EAAE,CAAC;;AAEjD,aAAa,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,QAAQ,EAAE,IAAI;AAChD;;IAEI,IAAI,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC,IAAI,KAAKA,UAAQ,CAAC,IAAI,CAAC,KAAK;IAC1D;QACI,QAAQ,CAAC,OAAO,GAAG,OAAO,CAAC,UAAU;YACjC,QAAQ,CAAC,IAAI;YACb,QAAQ,CAAC,GAAG;YACZ,QAAQ,CAAC,IAAI;SAChB,CAAC;KACL;IACD,IAAI,EAAE,CAAC;CACV,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqDF,IAAIE,QAAM,iBAAiB,UAAU,cAAc,EAAE;IACjD,SAAS,MAAM,CAAC,OAAO,EAAE,WAAW;IACpC;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,WAAW,CAAC,CAAC;QAChDb,aAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAExB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,EAAE,CAAC;QAC/C;YACI,IAAI,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;YAChC,IAAI,GAAG,GAAG,MAAM,CAAC,GAAG,CAAC;YACrB,IAAI,GAAG,GAAG,MAAM,CAAC,GAAG,CAAC;;YAErB,IAAI,GAAG;YACP;gBACI,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;aACjB;;YAED,IAAI,GAAG;YACP;gBACI,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;aACjB;SACJ;;;QAGD,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,EAAE,OAAO,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;QACnE,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;QAC/E,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;QAC/E,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;QACvE,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;;;;;;;;QAQ/E,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;KAC3B;;IAED,KAAK,cAAc,GAAG,MAAM,CAAC,SAAS,GAAG,cAAc,CAAC;IACxD,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,cAAc,IAAI,cAAc,CAAC,SAAS,EAAE,CAAC;IAC/E,MAAM,CAAC,SAAS,CAAC,WAAW,GAAG,MAAM,CAAC;;IAEtC,IAAI,eAAe,GAAG,EAAE,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;IAMzD,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAC3C;QACI,IAAI,CAAC,IAAI,CAAC,UAAU;QACpB;YACI,IAAI,CAAC,kBAAkB,EAAE,CAAC;YAC1B,IAAI,CAAC,KAAK,EAAE,CAAC;SAChB;KACJ,CAAC;;;;;;;;;IASF,eAAe,CAAC,MAAM,CAAC,GAAG,GAAG;IAC7B;QACI,IAAI,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC;;QAE5B,IAAI,CAAC,MAAM;QACX;YACI,MAAM,GAAG,IAAI,MAAM,EAAE,CAAC;YACtB,MAAM,CAAC,UAAU,GAAG,IAAI,CAAC;YACzB,MAAM,CAAC,OAAO,GAAG,MAAM,CAAC;SAC3B;;QAED,OAAO,MAAM,CAAC;KACjB,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,MAAM,EAAE,eAAe,EAAE,CAAC;;IAEnD,OAAO,MAAM,CAAC;CACjB,CAACc,MAAQ,CAAC,CAAC,CAAC;;;AAGb,MAAM,CAAC,MAAM,CAACD,QAAM,CAAC,SAAS,EAAEb,aAAY,CAAC,SAAS,CAAC,CAAC;;;;;;;;;;AAUxDa,QAAM,CAAC,QAAQ,GAAG,EAAE,CAAC;;;;;;;;;;;;AAYrBA,QAAM,CAAC,cAAc,GAAG,SAAS,cAAc,CAAC,MAAM;AACtD;IACIA,QAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;IAE7B,IAAI,MAAM,CAAC,GAAG;IACd;QACI,MAAM,CAAC,GAAG,EAAE,CAAC;KAChB;;IAED,OAAOA,QAAM,CAAC;CACjB,CAAC;;;AAGFA,QAAM,CAAC,cAAc,CAAC,EAAE,GAAG,EAAEE,KAAU,CAAC,OAAO,EAAE,CAAC,CAAC;;;AAGnDF,QAAM,CAAC,cAAc,CAAC,aAAa,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwDrC,IAAI,eAAe,GAAG,SAAS,eAAe,IAAI,EAAE,CAAC;;AAErD,eAAe,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,OAAO;AAC7C;IACI,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC;QACpB,YAAY,EAAE,KAAK;KACtB,EAAE,OAAO,CAAC,CAAC;;;;;;;;IAQZ,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,YAAY,GAAGA,QAAM,CAAC,MAAM,GAAG,IAAIA,QAAM,EAAE,CAAC;CACrE,CAAC;;;;;;AAMF,eAAe,CAAC,OAAO,GAAG,SAAS,OAAO;AAC1C;IACI,IAAI,IAAI,CAAC,MAAM;IACf;QACI,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;QACtB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;KACtB;CACJ,CAAC;;;;;;;;;AASF,IAAI,cAAc,GAAGF,UAAQ,CAAC;;AC9S9B;;;;;;;AAOA,AAiSA;;;;;;;;;;;;;;;;;;;;AAoBA,IAAI,cAAc,GAAG,SAAS,cAAc,CAAC,UAAU,EAAE,oBAAoB,EAAE,IAAI;AACnF;IACI,IAAI,CAAC,QAAQ,GAAG,IAAI,QAAQ,EAAE,CAAC;;IAE/B,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;;IAQxB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;;IAQjB,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;;;;;;;;IAQ5B,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC;;IAE3B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,EAAE,CAAC;IAC1C;QACI,IAAI,QAAQ,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;;;;QAI7B,QAAQ,GAAG;YACP,aAAa,EAAE,QAAQ,CAAC,aAAa;YACrC,IAAI,EAAE,QAAQ,CAAC,IAAI;YACnB,cAAc,EAAE,QAAQ,CAAC,cAAc;YACvC,IAAI,EAAE,QAAQ,CAAC,IAAI,IAAI,KAAK,CAAC,KAAK;YAClC,MAAM,EAAE,QAAQ,CAAC,MAAM;SAC1B,CAAC;;QAEF,IAAI,oBAAoB,CAAC,CAAC,CAAC;QAC3B;YACI,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;SACzC;;QAED;YACI,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;SACxC;KACJ;;IAED,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;IACtB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;IACzB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;;IAE7B,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;IACvB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;IACxB,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;;IAE9B,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;;IAEnB,IAAI,CAAC,WAAW,EAAE,CAAC;CACtB,CAAC;;;;;;;AAOF,cAAc,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;AAC3D;IACI,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;;IAE7B,IAAI,aAAa,GAAG,CAAC,CAAC;;;;;;;;IAQtB,IAAI,CAAC,WAAW,GAAG,IAAIT,QAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;IAC5E,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;IAEpC,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;IAEvB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,iBAAiB,CAAC,MAAM,EAAE,EAAE,CAAC;IACtD;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;;QAEzC,QAAQ,CAAC,MAAM,GAAG,aAAa,CAAC;QAChC,aAAa,IAAI,QAAQ,CAAC,IAAI,CAAC;QAC/B,IAAI,CAAC,aAAa,IAAI,QAAQ,CAAC,IAAI,CAAC;KACvC;;IAED,IAAI,SAAS,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,aAAa,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;;IAExE,IAAI,CAAC,WAAW,GAAG,IAAI,YAAY,CAAC,SAAS,CAAC,CAAC;IAC/C,IAAI,CAAC,iBAAiB,GAAG,IAAI,WAAW,CAAC,SAAS,CAAC,CAAC;IACpD,IAAI,CAAC,aAAa,GAAG,IAAIA,QAAM,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;;;IAGhE,IAAI,YAAY,GAAG,CAAC,CAAC;;IAErB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;;IAEtB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,EAAE,GAAG;IAC3D;QACI,IAAI,UAAU,GAAG,IAAI,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC;;QAE5C,UAAU,CAAC,MAAM,GAAG,YAAY,CAAC;QACjC,YAAY,IAAI,UAAU,CAAC,IAAI,CAAC;QAChC,IAAI,CAAC,YAAY,IAAI,UAAU,CAAC,IAAI,CAAC;KACxC;;IAED,IAAI,UAAU,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,YAAY,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;;IAExE,IAAI,CAAC,UAAU,GAAG,IAAI,YAAY,CAAC,UAAU,CAAC,CAAC;IAC/C,IAAI,CAAC,gBAAgB,GAAG,IAAI,WAAW,CAAC,UAAU,CAAC,CAAC;IACpD,IAAI,CAAC,YAAY,GAAG,IAAIA,QAAM,CAAC,IAAI,CAAC,UAAU,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;;IAE7D,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,iBAAiB,CAAC,MAAM,EAAE,EAAE,GAAG;IAC5D;QACI,IAAI,UAAU,GAAG,IAAI,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC;;QAE7C,QAAQ,CAAC,YAAY;YACjB,UAAU,CAAC,aAAa;YACxB,IAAI,CAAC,aAAa;YAClB,CAAC;YACD,UAAU,CAAC,IAAI,KAAK,KAAK,CAAC,aAAa;YACvC,UAAU,CAAC,IAAI;YACf,IAAI,CAAC,aAAa,GAAG,CAAC;YACtB,UAAU,CAAC,MAAM,GAAG,CAAC;SACxB,CAAC;KACL;;IAED,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,EAAE,GAAG;IAC3D;QACI,IAAI,UAAU,GAAG,IAAI,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC;;QAE5C,QAAQ,CAAC,YAAY;YACjB,UAAU,CAAC,aAAa;YACxB,IAAI,CAAC,YAAY;YACjB,CAAC;YACD,UAAU,CAAC,IAAI,KAAK,KAAK,CAAC,aAAa;YACvC,UAAU,CAAC,IAAI;YACf,IAAI,CAAC,YAAY,GAAG,CAAC;YACrB,UAAU,CAAC,MAAM,GAAG,CAAC;SACxB,CAAC;KACL;CACJ,CAAC;;;;;;;;;;AAUF,cAAc,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM;AAC7F;IACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,iBAAiB,CAAC,MAAM,EAAE,CAAC,EAAE;IACtD;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;;QAEzC,QAAQ,CAAC,cAAc,CAAC,QAAQ,EAAE,UAAU,EAAE,MAAM;YAChD,QAAQ,CAAC,IAAI,KAAK,KAAK,CAAC,aAAa,GAAG,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,WAAW;YACjF,IAAI,CAAC,aAAa,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;KAC5C;;IAED,IAAI,CAAC,aAAa,CAAC,SAAS,EAAE,CAAC;CAClC,CAAC;;;;;;;;;;AAUF,cAAc,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM;AAC3F;IACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,CAAC,EAAE;IACrD;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC;;QAExC,QAAQ,CAAC,cAAc,CAAC,QAAQ,EAAE,UAAU,EAAE,MAAM;YAChD,QAAQ,CAAC,IAAI,KAAK,KAAK,CAAC,aAAa,GAAG,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,UAAU;YAC/E,IAAI,CAAC,YAAY,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;KAC3C;;IAED,IAAI,CAAC,YAAY,CAAC,SAAS,EAAE,CAAC;CACjC,CAAC;;;;;;;AAOF,cAAc,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AACnD;IACI,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;IAExB,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;;IAE9B,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;IACxB,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;;IAE9B,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;;IAE7B,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;IACzB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;;IAE7B,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC;CAC3B,CAAC;;AAEF,IAAIc,QAAM,GAAG,+pBAA+pB,CAAC;;AAE7qB,IAAIC,UAAQ,GAAG,mMAAmM,CAAC;;;;;;;;;;;;;;;;;;;;AAoBnN,IAAI,gBAAgB,iBAAiB,UAAU,cAAc,EAAE;IAC3D,SAAS,gBAAgB,CAAC,QAAQ;IAClC;QACI,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;;;;;;;QAapC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;QAEnB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;QAEvB,IAAI,CAAC,UAAU,GAAG,IAAI,MAAM,EAAE,CAAC;;QAE/B,IAAI,CAAC,UAAU,GAAG;;YAEd;gBACI,aAAa,EAAE,iBAAiB;gBAChC,IAAI,EAAE,CAAC;gBACP,cAAc,EAAE,IAAI,CAAC,cAAc;gBACnC,MAAM,EAAE,CAAC;aACZ;;YAED;gBACI,aAAa,EAAE,gBAAgB;gBAC/B,IAAI,EAAE,CAAC;gBACP,cAAc,EAAE,IAAI,CAAC,cAAc;gBACnC,MAAM,EAAE,CAAC;aACZ;;YAED;gBACI,aAAa,EAAE,WAAW;gBAC1B,IAAI,EAAE,CAAC;gBACP,cAAc,EAAE,IAAI,CAAC,cAAc;gBACnC,MAAM,EAAE,CAAC;aACZ;;YAED;gBACI,aAAa,EAAE,eAAe;gBAC9B,IAAI,EAAE,CAAC;gBACP,cAAc,EAAE,IAAI,CAAC,SAAS;gBAC9B,MAAM,EAAE,CAAC;aACZ;;YAED;gBACI,aAAa,EAAE,QAAQ;gBACvB,IAAI,EAAE,CAAC;gBACP,IAAI,EAAE,KAAK,CAAC,aAAa;gBACzB,cAAc,EAAE,IAAI,CAAC,UAAU;gBAC/B,MAAM,EAAE,CAAC;aACZ,EAAE,CAAC;;QAER,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,IAAI,CAACD,QAAM,EAAEC,UAAQ,EAAE,EAAE,CAAC,CAAC;KACnD;;IAED,KAAK,cAAc,GAAG,gBAAgB,CAAC,SAAS,GAAG,cAAc,CAAC;IAClE,gBAAgB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,cAAc,IAAI,cAAc,CAAC,SAAS,EAAE,CAAC;IACzF,gBAAgB,CAAC,SAAS,CAAC,WAAW,GAAG,gBAAgB,CAAC;;;;;;;IAO1D,gBAAgB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,SAAS;IAC9D;QACI,IAAI,QAAQ,GAAG,SAAS,CAAC,QAAQ,CAAC;QAClC,IAAI,OAAO,GAAG,SAAS,CAAC,QAAQ,CAAC;QACjC,IAAI,SAAS,GAAG,SAAS,CAAC,UAAU,CAAC;QACrC,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;QAC7B,IAAI,aAAa,GAAG,QAAQ,CAAC,MAAM,CAAC;;QAEpC,IAAI,aAAa,KAAK,CAAC;QACvB;YACI,OAAO;SACV;aACI,IAAI,aAAa,GAAG,OAAO,IAAI,CAAC,SAAS,CAAC,UAAU;QACzD;YACI,aAAa,GAAG,OAAO,CAAC;SAC3B;;QAED,IAAI,OAAO,GAAG,SAAS,CAAC,QAAQ,CAAC;;QAEjC,IAAI,CAAC,OAAO;QACZ;YACI,OAAO,GAAG,SAAS,CAAC,QAAQ,GAAG,IAAI,CAAC,eAAe,CAAC,SAAS,CAAC,CAAC;SAClE;;QAED,IAAI,WAAW,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,WAAW,CAAC;;;QAGnD,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,YAAY,CAAC,gBAAgB,CAAC,SAAS,CAAC,SAAS,EAAE,WAAW,CAAC,gBAAgB,CAAC,CAAC,CAAC;;QAEtG,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;;QAErB,IAAI,CAAC,GAAG,SAAS,CAAC,cAAc,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;;QAEzD,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAC,QAAQ,CAAC,gBAAgB,CAAC,CAAC;;QAE7D,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,iBAAiB,GAAG,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;;QAEzD,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,GAAG,eAAe,CAAC,SAAS,CAAC,OAAO;YAC3D,SAAS,CAAC,UAAU,EAAE,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,WAAW,CAAC,gBAAgB,CAAC,CAAC;;QAErF,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,GAAG,WAAW,CAAC;;QAE5C,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;QAEvC,IAAI,YAAY,GAAG,KAAK,CAAC;;;QAGzB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,EAAE,CAAC,IAAI,SAAS,EAAE,CAAC,IAAI,CAAC;QAChE;YACI,IAAI,MAAM,IAAI,aAAa,GAAG,CAAC,CAAC,CAAC;;YAEjC,IAAI,MAAM,GAAG,SAAS;YACtB;gBACI,MAAM,GAAG,SAAS,CAAC;aACtB;;YAED,IAAI,CAAC,IAAI,OAAO,CAAC,MAAM;YACvB;gBACI,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,sBAAsB,CAAC,SAAS,CAAC,CAAC,CAAC;aACxD;;YAED,IAAI,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;;;YAGxB,MAAM,CAAC,aAAa,CAAC,QAAQ,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;;YAE1C,IAAI,GAAG,GAAG,SAAS,CAAC,gBAAgB,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;YAE7C,YAAY,GAAG,YAAY,KAAK,MAAM,CAAC,SAAS,GAAG,GAAG,CAAC,CAAC;;YAExD,IAAI,YAAY;YAChB;gBACI,MAAM,CAAC,SAAS,GAAG,SAAS,CAAC,SAAS,CAAC;gBACvC,MAAM,CAAC,YAAY,CAAC,QAAQ,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;aAC5C;;;YAGD,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;YACxC,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,GAAG,CAAC,EAAE,EAAE,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC;SACnE;KACJ,CAAC;;;;;;;;;IASF,gBAAgB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,SAAS;IAChF;QACI,IAAI,OAAO,GAAG,EAAE,CAAC;QACjB,IAAI,IAAI,GAAG,SAAS,CAAC,QAAQ,CAAC;QAC9B,IAAI,SAAS,GAAG,SAAS,CAAC,UAAU,CAAC;QACrC,IAAI,oBAAoB,GAAG,SAAS,CAAC,WAAW,CAAC;;QAEjD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,IAAI,SAAS;QACxC;YACI,OAAO,CAAC,IAAI,CAAC,IAAI,cAAc,CAAC,IAAI,CAAC,UAAU,EAAE,oBAAoB,EAAE,SAAS,CAAC,CAAC,CAAC;SACtF;;QAED,OAAO,OAAO,CAAC;KAClB,CAAC;;;;;;;;;IASF,gBAAgB,CAAC,SAAS,CAAC,sBAAsB,GAAG,SAAS,sBAAsB,EAAE,SAAS;IAC9F;QACI,IAAI,SAAS,GAAG,SAAS,CAAC,UAAU,CAAC;QACrC,IAAI,oBAAoB,GAAG,SAAS,CAAC,WAAW,CAAC;;QAEjD,OAAO,IAAI,cAAc,CAAC,IAAI,CAAC,UAAU,EAAE,oBAAoB,EAAE,SAAS,CAAC,CAAC;KAC/E,CAAC;;;;;;;;;;;;IAYF,gBAAgB,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;IACxH;QACI,IAAI,EAAE,GAAG,CAAC,CAAC;QACX,IAAI,EAAE,GAAG,CAAC,CAAC;QACX,IAAI,EAAE,GAAG,CAAC,CAAC;QACX,IAAI,EAAE,GAAG,CAAC,CAAC;;QAEX,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,EAAE,CAAC;QAC/B;YACI,IAAI,MAAM,GAAG,QAAQ,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;YACtC,IAAI,OAAO,GAAG,MAAM,CAAC,QAAQ,CAAC;YAC9B,IAAI,EAAE,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;YACxB,IAAI,EAAE,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;YACxB,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;YACxB,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;;YAExB,IAAI,IAAI;YACR;;;gBAGI,EAAE,GAAG,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;gBAC7C,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;;gBAErB,EAAE,GAAG,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;gBAC9C,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC;aACzB;;YAED;gBACI,EAAE,GAAG,CAAC,IAAI,CAAC,KAAK,KAAK,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC1C,EAAE,GAAG,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC;;gBAErC,EAAE,GAAG,IAAI,CAAC,MAAM,IAAI,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;gBACzC,EAAE,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC;aACvC;;YAED,KAAK,CAAC,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;YACxB,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;;YAE5B,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;YACjC,KAAK,CAAC,MAAM,GAAG,MAAM,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;;YAErC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;YACvC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;;YAE3C,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;YACvC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;;YAE3C,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC;SACxB;KACJ,CAAC;;;;;;;;;;;;IAYF,gBAAgB,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;IACxH;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE;QAC/B;YACI,IAAI,cAAc,GAAG,QAAQ,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC;;YAEvD,KAAK,CAAC,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;YACjC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;;YAErC,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;YAC1C,KAAK,CAAC,MAAM,GAAG,MAAM,GAAG,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;;YAE9C,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;YAChD,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;;YAEpD,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;YAChD,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;;YAEpD,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC;SACxB;KACJ,CAAC;;;;;;;;;;;;IAYF,gBAAgB,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;IACxH;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE;QAC/B;YACI,IAAI,cAAc,GAAG,QAAQ,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC;;YAEvD,KAAK,CAAC,MAAM,CAAC,GAAG,cAAc,CAAC;YAC/B,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,cAAc,CAAC;YACxC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC;YAC9C,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC;;YAE9C,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC;SACxB;KACJ,CAAC;;;;;;;;;;;;IAYF,gBAAgB,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;IAC9G;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,EAAE,CAAC;QAC/B;YACI,IAAI,UAAU,GAAG,QAAQ,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC;;YAExD,IAAI,UAAU;YACd;gBACI,KAAK,CAAC,MAAM,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;gBAC9B,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;;gBAElC,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;gBACvC,KAAK,CAAC,MAAM,GAAG,MAAM,GAAG,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;;gBAE3C,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;gBAC7C,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;;gBAEjD,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;gBAC7C,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;;gBAEjD,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC;aACxB;;YAED;;gBAEI,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;gBAClB,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;;gBAEtB,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;gBAC3B,KAAK,CAAC,MAAM,GAAG,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;;gBAE/B,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;gBACjC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;;gBAErC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;gBACjC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;;gBAErC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC;aACxB;SACJ;KACJ,CAAC;;;;;;;;;;;;IAYF,gBAAgB,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;IAChH;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,EAAE,CAAC;QAC/B;YACI,IAAI,MAAM,GAAG,QAAQ,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;YACtC,IAAI,aAAa,GAAG,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC,gBAAgB,CAAC;YACjE,IAAI,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC;;YAEzB,IAAI,IAAI,GAAG,KAAK,GAAG,GAAG,IAAI,aAAa,GAAG,eAAe,CAAC,MAAM,CAAC,QAAQ,EAAE,KAAK,CAAC;kBAC3E,MAAM,CAAC,QAAQ,IAAI,KAAK,GAAG,GAAG,IAAI,EAAE,CAAC,CAAC;;YAE5C,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;YACrB,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,IAAI,CAAC;YAC9B,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;YACpC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;;YAEpC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC;SACxB;KACJ,CAAC;;;;;IAKF,gBAAgB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACrD;QACI,cAAc,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAE5C,IAAI,IAAI,CAAC,MAAM;QACf;YACI,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;YACtB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;SACtB;;QAED,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;KAC1B,CAAC;;IAEF,OAAO,gBAAgB,CAAC;CAC3B,CAAC,cAAc,CAAC,CAAC,CAAC;;AC38BnB;;;;;;;AAOA,AAIA;;;;;;;;;;;;;;;;;;;;;;;;;AAyBA,IAAI,WAAW,GAAG,SAAS,WAAW,CAAC,WAAW,EAAE,IAAI,EAAE,kBAAkB;AAC5E;IACI,KAAK,kBAAkB,KAAK,KAAK,CAAC,GAAG,kBAAkB,GAAG,IAAI,CAAC;;;;;;IAM/D,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;;;;;;;;;;IAU/B,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;;;;;;;;;;IAUnB,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;;;;;;IAMrB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;IAMjB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,iBAAiB;QACpC,kBAAkB;YACd,IAAI,CAAC,WAAW,CAAC,QAAQ,GAAG,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,GAAG,IAAI,CAAC;KACxE,CAAC;;;;;;;IAOF,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC;;;;;;;IAOhC,IAAI,CAAC,UAAU,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;;;;;;;IAO5C,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;;;;;;;IAOrB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;CACzB,CAAC;;AAEF,IAAIhB,iBAAe,GAAG,EAAE,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;;;AAW7DA,iBAAe,CAAC,UAAU,CAAC,GAAG,GAAG;AACjC;IACI,OAAO,IAAI,CAAC;CACf,CAAC;;AAEF,WAAW,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,kBAAkB;AACxF;IACI,IAAI,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC;;;IAGjC,IAAI,UAAU,GAAG,kBAAkB,CAAC,kBAAkB,EAAE,IAAI,CAAC,CAAC;;;IAG9D,IAAI,UAAU,KAAK,IAAI;IACvB;;QAEI,UAAU,GAAG,KAAK,KAAK,SAAS,GAAG,UAAU,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;KAC5D;;;IAGD,IAAI,UAAU,KAAK,CAAC;IACpB;QACI,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC;KAC9C;;IAED,OAAO,UAAU,CAAC;CACrB,CAAC;;;;;;;;;AASF,WAAW,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,QAAQ;AACtD;IACI,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;IACrB,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;;IAE1B,IAAI,IAAI,CAAC,UAAU,CAAC,MAAM,IAAI,WAAW,CAAC,UAAU;IACpD;QACI,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC;QACvB,IAAI,CAAC,kBAAkB,EAAE,CAAC;QAC1B,IAAI,CAAC,cAAc,EAAE,CAAC;KACzB;;IAED;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;KACrB;CACJ,CAAC;;;;;;;;AAQF,WAAW,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,iBAAiB;AACjF;IACI,IAAI,UAAU,GAAG,iBAAiB,CAAC;IACnC,IAAI,SAAS,GAAG,WAAW,CAAC,UAAU,CAAC;;IAEvC,OAAO,UAAU,GAAG,iBAAiB,GAAG,SAAS,IAAI,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,MAAM;IACxF;QACI,IAAI,CAAC,GAAG,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;QACpC,IAAI,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;QAC3B,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;;QAEtB,IAAI,IAAI;QACR;YACI,IAAI,KAAK,GAAG,IAAI,CAAC;YACjB,IAAI,IAAI,GAAG,IAAI,CAAC;YAChB,IAAI,UAAU,GAAG,IAAI,CAAC,OAAO,KAAK,KAAK,IAAI,IAAI,CAAC,UAAU;kBACpD,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC;;YAEnC,IAAI,IAAI,GAAG,IAAI,SAAS;gBACpB,CAAC;gBACD,CAAC;gBACD,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;gBAC1C,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;aAC7C,CAAC;;YAEF,IAAI,IAAI,CAAC,OAAO;YAChB;gBACI,KAAK,GAAG,IAAI,SAAS;oBACjB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;iBACvC,CAAC;aACL;;YAED;gBACI,KAAK,GAAG,IAAI,SAAS;oBACjB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;iBACvC,CAAC;aACL;;;YAGD,IAAI,IAAI,CAAC,OAAO,KAAK,KAAK,IAAI,IAAI,CAAC,gBAAgB;YACnD;gBACI,IAAI,GAAG,IAAI,SAAS;oBAChB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACrD,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACrD,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;iBACvC,CAAC;aACL;;YAED,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,IAAI,OAAO;gBAC1B,IAAI,CAAC,WAAW;gBAChB,KAAK;gBACL,IAAI;gBACJ,IAAI;gBACJ,IAAI,CAAC,OAAO,GAAG,CAAC,GAAG,CAAC;gBACpB,IAAI,CAAC,MAAM;aACd,CAAC;;;YAGF,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SAC3C;;QAED,UAAU,EAAE,CAAC;KAChB;CACJ,CAAC;;;;;;;AAOF,WAAW,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB;AACtE;IACI,IAAI,UAAU,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,IAAI,EAAE,CAAC;;IAE5C,KAAK,IAAI,QAAQ,IAAI,UAAU;IAC/B;QACI,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC;QAC/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,QAAQ,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE;QACpD;YACI,IAAI,SAAS,GAAG,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;;YAExC,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC,CAAC;SAC5D;KACJ;CACJ,CAAC;;;;;;;AAOF,WAAW,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;AAC9D;IACI,IAAI,QAAQ,GAAG,IAAI,CAAC,SAAS,CAAC;;IAE9B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;IACrB,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;CACtC,CAAC;;;;;;;AAOF,WAAW,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;AACtD;QACQ,IAAI,MAAM,GAAG,IAAI,CAAC;;IAEtB,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC,UAAU,CAAC,CAAC;IAC/D,IAAI,CAAC,WAAW,EAAE,CAAC;IACnB,UAAU,CAAC,YAAY;QACnB,IAAI,MAAM,CAAC,WAAW,GAAG,WAAW,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC,MAAM;QAC1E;YACI,MAAM,CAAC,UAAU,EAAE,CAAC;SACvB;;QAED;YACI,MAAM,CAAC,kBAAkB,EAAE,CAAC;YAC5B,MAAM,CAAC,cAAc,EAAE,CAAC;SAC3B;KACJ,EAAE,CAAC,CAAC,CAAC;CACT,CAAC;;;;;;;AAOF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,WAAW;AAC7D;QACQ,KAAK,WAAW,KAAK,KAAK,CAAC,GAAG,WAAW,GAAG,KAAK,CAAC;;IAEtD,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,QAAQ;IAC3B;QACI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;KAC9B;IACD,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;IACrB,IAAI,WAAW;IACf;QACI,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC;KAC9B;IACD,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;CAC3B,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,WAAW,EAAEA,iBAAe,EAAE,CAAC;;;;;;;;;;;;AAYxD,IAAI,iBAAiB,GAAG,SAAS,iBAAiB,IAAI,EAAE,CAAC;;AAEzD,iBAAiB,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,QAAQ,EAAE,IAAI;AACpD;IACI,IAAI,iBAAiB,GAAG,CAAC,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC;;;IAGnD,IAAI,CAAC,QAAQ,CAAC,IAAI;WACX,QAAQ,CAAC,IAAI,KAAK,cAAc,CAAC,IAAI,CAAC,IAAI;WAC1C,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM;WACrB,IAAI,CAAC,SAAS,CAAC,iBAAiB,CAAC;;IAExC;QACI,IAAI,EAAE,CAAC;;QAEP,OAAO;KACV;;IAED,IAAI,WAAW,GAAG;QACd,WAAW,EAAE,QAAQ,CAAC,WAAW;QACjC,QAAQ,EAAE,QAAQ,CAAC,QAAQ,CAAC,aAAa;QACzC,cAAc,EAAE,QAAQ;KAC3B,CAAC;;IAEF,IAAI,YAAY,GAAG,iBAAiB,CAAC,eAAe,CAAC,QAAQ,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;;;IAG7E,IAAI,CAAC,GAAG,CAAC,iBAAiB,EAAE,YAAY,EAAE,WAAW,EAAE,SAAS,WAAW,CAAC,GAAG;IAC/E;QACI,IAAI,GAAG,CAAC,KAAK;QACb;YACI,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;;YAEhB,OAAO;SACV;;QAED,IAAI,WAAW,GAAG,IAAI,WAAW;YAC7B,GAAG,CAAC,OAAO,CAAC,WAAW;YACvB,QAAQ,CAAC,IAAI;YACb,QAAQ,CAAC,GAAG;SACf,CAAC;;QAEF,WAAW,CAAC,KAAK,CAAC,YAAY;YAC1B,QAAQ,CAAC,WAAW,GAAG,WAAW,CAAC;YACnC,QAAQ,CAAC,QAAQ,GAAG,WAAW,CAAC,QAAQ,CAAC;YACzC,IAAI,EAAE,CAAC;SACV,CAAC,CAAC;KACN,CAAC,CAAC;CACN,CAAC;;;;;;;AAOF,iBAAiB,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,QAAQ,EAAE,OAAO;AAC/E;;IAEI,IAAI,QAAQ,CAAC,SAAS;IACtB;QACI,OAAO,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC;KACnC;;IAED,OAAO,GAAG,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,EAAE,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;CACnF,CAAC;;AC1ZF;;;;;;;AAOA,AAKA;AACA,IAAIiB,WAAS,GAAG,IAAI,KAAK,EAAE,CAAC;AAC5B,AAgWA;AACA,IAAIF,QAAM,GAAG,qYAAqY,CAAC;;AAEnZ,IAAIC,UAAQ,GAAG,kdAAkd,CAAC;;AAEle,IAAI,cAAc,GAAG,yMAAyM,CAAC;;AAE/N,IAAIE,SAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;AAS3B,IAAI,oBAAoB,iBAAiB,UAAU,cAAc,EAAE;IAC/D,SAAS,oBAAoB,CAAC,QAAQ;IACtC;QACI,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;QAEpC,IAAI,QAAQ,GAAG,EAAE,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,cAAc,EAAE,CAAC;;QAEzD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,IAAI,CAACH,QAAM,EAAEC,UAAQ,EAAE,QAAQ,CAAC,CAAC;;QAEtD,IAAI,CAAC,YAAY,GAAG,MAAM,CAAC,IAAI,CAACD,QAAM,EAAE,cAAc,EAAE,QAAQ,CAAC,CAAC;;QAElE,IAAI,CAAC,IAAI,GAAG,IAAI,MAAM,EAAE,CAAC;KAC5B;;IAED,KAAK,cAAc,GAAG,oBAAoB,CAAC,SAAS,GAAG,cAAc,CAAC;IACtE,oBAAoB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,cAAc,IAAI,cAAc,CAAC,SAAS,EAAE,CAAC;IAC7F,oBAAoB,CAAC,SAAS,CAAC,WAAW,GAAG,oBAAoB,CAAC;;;;;;IAMlE,oBAAoB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,EAAE;IAC3D;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;QAC7B,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;QAErB,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;;QAE7B,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,MAAM,IAAI,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;QACvD,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,OAAO,GAAG,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;;QAEtD,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,MAAM,KAAK,GAAG,GAAG,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;QAC9D,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,OAAO,IAAI,GAAG,GAAG,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;;QAE7D,IAAI,EAAE,CAAC,eAAe;QACtB;YACI,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC;;YAEpB,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;YACzC,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;;YAEzC,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;YAC9C,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;SACjD;;QAED,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,IAAI,GAAG,GAAG,EAAE,CAAC,QAAQ,CAAC;QACtB,IAAI,OAAO,GAAG,GAAG,CAAC,WAAW,CAAC;QAC9B,IAAI,EAAE,GAAG,EAAE,CAAC,aAAa,CAAC,cAAc,CAAC;QACzC,IAAI,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC;QACrB,IAAI,QAAQ,GAAG,OAAO,CAAC,YAAY;eAC5B,GAAG,CAAC,KAAK,CAAC,KAAK,KAAK,OAAO,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC;;;QAGhF,IAAI,QAAQ;QACZ;YACI,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,QAAQ,CAAC,WAAW,CAAC;YAC9C;gBACI,IAAI,OAAO,CAAC,QAAQ,KAAK,UAAU,CAAC,KAAK;gBACzC;oBACI,OAAO,CAAC,QAAQ,GAAG,UAAU,CAAC,MAAM,CAAC;iBACxC;aACJ;;YAED;gBACI,QAAQ,GAAG,OAAO,CAAC,QAAQ,KAAK,UAAU,CAAC,KAAK,CAAC;aACpD;SACJ;;QAED,IAAI,MAAM,GAAG,QAAQ,GAAG,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,MAAM,CAAC;;QAExD,IAAI,CAAC,GAAG,GAAG,CAAC,KAAK,CAAC;QAClB,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC;QACnB,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;QAClB,IAAI,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;;QAEnBG,SAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;YACpB,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;YACZ,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;YACZ,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;YACZ,EAAE,CAAC,EAAE,GAAG,CAAC;YACT,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC;;;;;;;;QAQfA,SAAO,CAAC,MAAM,EAAE,CAAC;QACjB,IAAI,QAAQ;QACZ;YACIA,SAAO,CAAC,OAAO,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC;SAChC;;QAED;YACI,MAAM,CAAC,QAAQ,CAAC,SAAS,GAAG,EAAE,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;YACtD,MAAM,CAAC,QAAQ,CAAC,WAAW,GAAG,EAAE,CAAC,WAAW,CAAC;YAC7C,MAAM,CAAC,QAAQ,CAAC,YAAY,GAAG,EAAE,CAAC,YAAY,CAAC;SAClD;;QAED,MAAM,CAAC,QAAQ,CAAC,UAAU,GAAGA,SAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QACnD,MAAM,CAAC,QAAQ,CAAC,MAAM,GAAG,qBAAqB,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,UAAU;YACjE,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC,gBAAgB,CAAC,CAAC;QACtD,MAAM,CAAC,QAAQ,CAAC,iBAAiB,GAAG,EAAE,CAAC,SAAS,CAAC,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAC9E,MAAM,CAAC,QAAQ,CAAC,QAAQ,GAAG,GAAG,CAAC;;QAE/B,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC7B,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAE7B,QAAQ,CAAC,KAAK,CAAC,YAAY,CAAC,gBAAgB,CAAC,EAAE,CAAC,SAAS,EAAE,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;QACtF,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,SAAS,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;KAC5D,CAAC;;IAEF,OAAO,oBAAoB,CAAC;CAC/B,CAAC,cAAc,CAAC,CAAC,CAAC;;ACnfnB;;;;;;;AAOA,AAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2BA,IAAI,UAAU,iBAAiB,UAAU,SAAS,EAAE;IAChD,SAAS,UAAU,CAAC,IAAI,EAAE,KAAK;IAC/B;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;QAClB,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,EAAE,CAAC;;QAEnC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;QAQrB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;;;;;;;QAQpB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;;;;;;;;QAQrB,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;;;;;;;;QAQlB,IAAI,CAAC,KAAK,GAAG;YACT,IAAI,EAAE,KAAK,CAAC,IAAI,KAAK,SAAS,GAAG,KAAK,CAAC,IAAI,GAAG,QAAQ;YACtD,KAAK,EAAE,KAAK,CAAC,KAAK,IAAI,MAAM;YAC5B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,CAAC;SACV,CAAC;;;;;;;;QAQF,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC;;;;;;;;QAQvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;;;;;;;;QAUlB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;;;;;;;;;QASnB,IAAI,CAAC,cAAc,GAAG,CAAC,CAAC;;;;;;;QAOxB,IAAI,CAAC,cAAc,GAAG,CAAC,CAAC;;;;;;;;QAQxB,IAAI,CAAC,OAAO,GAAG,IAAI,eAAe,CAAC,YAAY,EAAE,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;;;;;;QAOrF,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;;;;;;QAWnB,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC,YAAY,CAAC;;QAEzC,IAAI,CAAC,UAAU,EAAE,CAAC;KACrB;;IAED,KAAK,SAAS,GAAG,UAAU,CAAC,SAAS,GAAG,SAAS,CAAC;IAClD,UAAU,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,SAAS,IAAI,SAAS,CAAC,SAAS,EAAE,CAAC;IACzE,UAAU,CAAC,SAAS,CAAC,WAAW,GAAG,UAAU,CAAC;;IAE9C,IAAI,kBAAkB,GAAG,EAAE,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,aAAa,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,aAAa,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;IAOnW,UAAU,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IACrD;QACI,IAAI,IAAI,GAAG,UAAU,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAC7C,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACxC,IAAI,GAAG,GAAG,IAAI,KAAK,EAAE,CAAC;QACtB,IAAI,KAAK,GAAG,EAAE,CAAC;QACf,IAAI,UAAU,GAAG,EAAE,CAAC;QACpB,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,cAAc,EAAE,IAAI,CAAC,IAAI,GAAG,CAAC;QAC3D,IAAI,UAAU,GAAG,IAAI,CAAC,MAAM,CAAC;QAC7B,IAAI,QAAQ,GAAG,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;;QAE5D,IAAI,YAAY,GAAG,IAAI,CAAC;QACxB,IAAI,aAAa,GAAG,CAAC,CAAC;QACtB,IAAI,YAAY,GAAG,CAAC,CAAC;QACrB,IAAI,IAAI,GAAG,CAAC,CAAC;QACb,IAAI,YAAY,GAAG,CAAC,CAAC,CAAC;QACtB,IAAI,cAAc,GAAG,CAAC,CAAC;QACvB,IAAI,aAAa,GAAG,CAAC,CAAC;QACtB,IAAI,aAAa,GAAG,CAAC,CAAC;;QAEtB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,EAAE,CAAC,EAAE;QACnC;YACI,IAAI,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;YAClC,IAAI,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;;YAE1B,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,IAAI,CAAC;YACzB;gBACI,YAAY,GAAG,CAAC,CAAC;gBACjB,cAAc,GAAG,aAAa,CAAC;aAClC;;YAED,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,IAAI;YAClC;gBACI,UAAU,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;gBAC/B,YAAY,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,aAAa,CAAC,CAAC;gBACrD,EAAE,IAAI,CAAC;gBACP,EAAE,aAAa,CAAC;;gBAEhB,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;gBACV,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,UAAU,CAAC;gBACzB,YAAY,GAAG,IAAI,CAAC;gBACpB,SAAS;aACZ;;YAED,IAAI,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;;YAEpC,IAAI,CAAC,QAAQ;YACb;gBACI,SAAS;aACZ;;YAED,IAAI,YAAY,IAAI,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC;YAClD;gBACI,GAAG,CAAC,CAAC,IAAI,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;aAC3C;;YAED,KAAK,CAAC,IAAI,CAAC;gBACP,OAAO,EAAE,QAAQ,CAAC,OAAO;gBACzB,IAAI,EAAE,IAAI;gBACV,QAAQ,EAAE,QAAQ;gBAClB,QAAQ,EAAE,IAAI,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,QAAQ,CAAC,OAAO,IAAI,IAAI,CAAC,cAAc,GAAG,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC;aACtG,CAAC,CAAC;YACH,GAAG,CAAC,CAAC,IAAI,QAAQ,CAAC,QAAQ,GAAG,IAAI,CAAC,cAAc,CAAC;YACjD,aAAa,GAAG,GAAG,CAAC,CAAC,CAAC;YACtB,aAAa,GAAG,IAAI,CAAC,GAAG,CAAC,aAAa,GAAG,QAAQ,CAAC,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC;YACtF,YAAY,GAAG,QAAQ,CAAC;;YAExB,IAAI,YAAY,KAAK,CAAC,CAAC,IAAI,QAAQ,GAAG,CAAC,IAAI,GAAG,CAAC,CAAC,GAAG,QAAQ;YAC3D;gBACI,EAAE,aAAa,CAAC;gBAChB,WAAW,CAAC,KAAK,EAAE,CAAC,GAAG,YAAY,GAAG,aAAa,EAAE,CAAC,GAAG,CAAC,GAAG,YAAY,CAAC,CAAC;gBAC3E,CAAC,GAAG,YAAY,CAAC;gBACjB,YAAY,GAAG,CAAC,CAAC,CAAC;;gBAElB,UAAU,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;gBAChC,YAAY,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,cAAc,CAAC,CAAC;gBACtD,IAAI,EAAE,CAAC;;gBAEP,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;gBACV,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,UAAU,CAAC;gBACzB,YAAY,GAAG,IAAI,CAAC;aACvB;SACJ;;QAED,IAAI,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;QAE5C,IAAI,QAAQ,KAAK,IAAI,IAAI,QAAQ,KAAK,IAAI;QAC1C;YACI,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC;YAC7B;gBACI,aAAa,GAAG,cAAc,CAAC;aAClC;;YAED,UAAU,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;YAC/B,YAAY,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,aAAa,CAAC,CAAC;SACxD;;QAED,IAAI,gBAAgB,GAAG,EAAE,CAAC;;QAE1B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,IAAI,IAAI,EAAE,GAAG,EAAE;QACpC;YACI,IAAI,WAAW,GAAG,CAAC,CAAC;;YAEpB,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,KAAK,OAAO;YAChC;gBACI,WAAW,GAAG,YAAY,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;aAChD;iBACI,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,KAAK,QAAQ;YACtC;gBACI,WAAW,GAAG,CAAC,YAAY,GAAG,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;aACtD;;YAED,gBAAgB,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;SACtC;;QAED,IAAI,QAAQ,GAAG,KAAK,CAAC,MAAM,CAAC;QAC5B,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;QAErB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,EAAE,GAAG,EAAE;QACvC;YACI,IAAI,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;;YAE1B,IAAI,CAAC;YACL;gBACI,CAAC,CAAC,OAAO,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC;aAClC;;YAED;gBACI,CAAC,GAAG,IAAI,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC;gBACnC,CAAC,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;gBACjC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;aACxB;;YAED,CAAC,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,GAAG,gBAAgB,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,KAAK,CAAC;YACnF,CAAC,CAAC,QAAQ,CAAC,CAAC,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,GAAG,KAAK,CAAC;YAC7C,CAAC,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC;YAC9B,CAAC,CAAC,IAAI,GAAG,IAAI,CAAC;;YAEd,IAAI,CAAC,CAAC,CAAC,MAAM;YACb;gBACI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;aACpB;SACJ;;;QAGD,KAAK,IAAI,GAAG,GAAG,QAAQ,EAAE,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,GAAG;QACzD;YACI,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC;SACvC;;QAED,IAAI,CAAC,UAAU,GAAG,YAAY,GAAG,KAAK,CAAC;QACvC,IAAI,CAAC,WAAW,GAAG,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU,IAAI,KAAK,CAAC;;;QAGrD,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC;QAC9C;YACI,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,EAAE,GAAG,EAAE;YACvC;gBACI,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;gBACvD,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;aAC3D;SACJ;QACD,IAAI,CAAC,cAAc,GAAG,aAAa,GAAG,KAAK,CAAC;KAC/C,CAAC;;;;;;;IAOF,UAAU,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;IAC/D;QACI,IAAI,CAAC,QAAQ,EAAE,CAAC;QAChB,IAAI,CAAC,wBAAwB,EAAE,CAAC;KACnC,CAAC;;;;;;;IAOF,UAAU,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;IAC7D;QACI,IAAI,CAAC,QAAQ,EAAE,CAAC;;QAEhB,OAAO,SAAS,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACxD,CAAC;;;;;;;IAOF,UAAU,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ;IACjD;QACI,IAAI,IAAI,CAAC,KAAK;QACd;YACI,IAAI,CAAC,UAAU,EAAE,CAAC;YAClB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;SACtB;KACJ,CAAC;;;;;;;IAOF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;KAC1B,CAAC;;IAEF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,KAAK;IAC7C;QACI,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,CAAC,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,IAAI,CAAC,IAAI,KAAK,GAAG,QAAQ,CAAC;;QAE/E,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC;KAC3B,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,KAAK,IAAI,MAAM,CAAC;;QAEnC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;;;;;;;IAaF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,OAAO,CAAC;KACvB,CAAC;;IAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,KAAK;IAC/C;QACI,IAAI,OAAO,KAAK,KAAK,QAAQ;QAC7B;YACI,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;SAC3B;;QAED;YACI,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;SAChC;KACJ,CAAC;;;;;;;IAOF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;IAEF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,KAAK;IAC7C;QACI,IAAI,CAAC,KAAK;QACV;YACI,OAAO;SACV;;QAED,IAAI,OAAO,KAAK,KAAK,QAAQ;QAC7B;YACI,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;;YAEzB,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,MAAM,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YAC3E,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,MAAM,IAAI,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,UAAU,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC;SACzG;;QAED;YACI,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC;YAC7B,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ,GAAG,KAAK,CAAC,IAAI,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;SAC5F;;QAED,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;IAOF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;IAEF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,IAAI;IAC5C;QACI,IAAI,GAAG,MAAM,CAAC,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC;;QAE/D,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI;QACvB;YACI,OAAO;SACV;QACD,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;QAClB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG;IAClC;QACI,OAAO,IAAI,CAAC,SAAS,CAAC;KACzB,CAAC;;IAEF,kBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,KAAK;IACjD;QACI,IAAI,IAAI,CAAC,SAAS,KAAK,KAAK;QAC5B;YACI,OAAO;SACV;QACD,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,aAAa,CAAC,GAAG,GAAG;IACvC;QACI,IAAI,CAAC,QAAQ,EAAE,CAAC;;QAEhB,OAAO,IAAI,CAAC,cAAc,CAAC;KAC9B,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG;IACnC;QACI,IAAI,CAAC,QAAQ,EAAE,CAAC;;QAEhB,OAAO,IAAI,CAAC,UAAU,CAAC;KAC1B,CAAC;;;;;;;IAOF,kBAAkB,CAAC,aAAa,CAAC,GAAG,GAAG;IACvC;QACI,OAAO,IAAI,CAAC,cAAc,CAAC;KAC9B,CAAC;;IAEF,kBAAkB,CAAC,aAAa,CAAC,GAAG,GAAG,UAAU,KAAK;IACtD;QACI,IAAI,IAAI,CAAC,cAAc,KAAK,KAAK;QACjC;YACI,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;YAC5B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;SACrB;KACJ,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;IACpC;QACI,IAAI,CAAC,QAAQ,EAAE,CAAC;;QAEhB,OAAO,IAAI,CAAC,WAAW,CAAC;KAC3B,CAAC;;;;;;;;;;;IAWF,UAAU,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,GAAG,EAAE,QAAQ;IAC9D;QACI,IAAI,IAAI,GAAG,EAAE,CAAC;QACd,IAAI,IAAI,GAAG,GAAG,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;QAC/C,IAAI,MAAM,GAAG,GAAG,CAAC,oBAAoB,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;QACnD,IAAI,KAAK,GAAG,GAAG,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC;QAC7C,IAAI,GAAG,GAAG,kBAAkB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,EAAE,QAAQ,CAAC,UAAU,CAAC,CAAC;QACjF,IAAI,aAAa,GAAG,EAAE,CAAC;;QAEvB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;QACtC,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC,CAAC;QACpD,IAAI,CAAC,UAAU,GAAG,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,YAAY,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG,CAAC;QACxE,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;;;QAGhB,IAAI,QAAQ,YAAY,OAAO;QAC/B;YACI,QAAQ,GAAG,CAAC,QAAQ,CAAC,CAAC;SACzB;;;;QAID,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE;QACrC;YACI,IAAI,EAAE,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;;YAEzC,aAAa,CAAC,EAAE,CAAC,GAAG,QAAQ,YAAY,KAAK,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC;SAChF;;;QAGD,IAAI,OAAO,GAAG,GAAG,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC;;QAE/C,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE;QAC7C;YACI,IAAI,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC;YAC1B,IAAI,QAAQ,GAAG,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC;YACvD,IAAI,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;YAC5C,IAAI,WAAW,GAAG,IAAI,SAAS;gBAC3B,CAAC,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG,KAAK,aAAa,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,GAAG,GAAG,CAAC;gBACpF,CAAC,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG,KAAK,aAAa,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,GAAG,GAAG,CAAC;gBACpF,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,OAAO,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG;gBAChD,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG;aACpD,CAAC;;YAEF,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG;gBACnB,OAAO,EAAE,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG;gBAC3D,OAAO,EAAE,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG;gBAC3D,QAAQ,EAAE,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,UAAU,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG;gBAC7D,OAAO,EAAE,EAAE;gBACX,OAAO,EAAE,IAAI,OAAO,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,WAAW,CAAC;gBAClE,IAAI,EAAE,IAAI;aACb,CAAC;SACL;;;QAGD,IAAI,QAAQ,GAAG,GAAG,CAAC,oBAAoB,CAAC,SAAS,CAAC,CAAC;;QAEnD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAC,MAAM,EAAE,GAAG,EAAE;QAC9C;YACI,IAAI,OAAO,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC;YAC5B,IAAI,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG,CAAC;YAC9D,IAAI,MAAM,GAAG,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG,CAAC;YAChE,IAAI,MAAM,GAAG,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG,CAAC;;YAEhE,IAAI,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC;YACtB;gBACI,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,MAAM,CAAC;aAC9C;SACJ;;;;QAID,UAAU,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;;QAEnC,OAAO,IAAI,CAAC;KACf,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,UAAU,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAEpE,OAAO,UAAU,CAAC;CACrB,CAAC,SAAS,CAAC,CAAC,CAAC;;AAEd,UAAU,CAAC,KAAK,GAAG,EAAE,CAAC;;;;;;;;;AAStB,IAAI,gBAAgB,GAAG,SAAS,gBAAgB,IAAI,EAAE,CAAC;;AAEvD,gBAAgB,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,QAAQ,EAAE,OAAO;AAC1D;IACI,QAAQ,CAAC,UAAU,GAAG,UAAU,CAAC,YAAY,CAAC,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;CACzE,CAAC;;;;;;;AAOF,gBAAgB,CAAC,GAAG,GAAG,SAAS,GAAG;AACnC;IACI,cAAc,CAAC,mBAAmB,CAAC,KAAK,EAAE,cAAc,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAC;CACxF,CAAC;;;;;;;AAOF,gBAAgB,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,GAAG;AAChD;IACI,IAAI,GAAG,GAAG,GAAG;SACR,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC;SAClB,OAAO,CAAC,WAAW,EAAE,EAAE,CAAC,CAAC;;;IAG9B,IAAI,GAAG,KAAK,GAAG;IACf;QACI,OAAO,GAAG,CAAC;KACd;;SAEI,IAAI,GAAG,KAAK,EAAE;IACnB;QACI,OAAO,GAAG,CAAC;KACd;;IAED,OAAO,GAAG,CAAC;CACd,CAAC;;;;;;;;AAQF,gBAAgB,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,QAAQ,EAAE,IAAI;AACnD;;IAEI,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC,IAAI,KAAK,cAAc,CAAC,IAAI,CAAC,GAAG;IAC/D;QACI,IAAI,EAAE,CAAC;;QAEP,OAAO;KACV;;;IAGD,IAAI,QAAQ,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC,MAAM,KAAK,CAAC;WACpD,QAAQ,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC,MAAM,KAAK,CAAC;WACvD,QAAQ,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,KAAK,IAAI;;IAElF;QACI,IAAI,EAAE,CAAC;;QAEP,OAAO;KACV;;IAED,IAAI,MAAM,GAAG,CAAC,QAAQ,CAAC,SAAS,GAAG,gBAAgB,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC;;IAE/E,IAAI,QAAQ,CAAC,SAAS;IACtB;QACI,IAAI,MAAM,KAAK,GAAG;QAClB;YACI,MAAM,GAAG,EAAE,CAAC;SACf;;QAED,IAAI,IAAI,CAAC,OAAO,IAAI,MAAM;QAC1B;;YAEI,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,GAAG;YACxD;gBACI,MAAM,IAAI,GAAG,CAAC;aACjB;SACJ;KACJ;;;IAGD,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;;;IAG1C,IAAI,MAAM,IAAI,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,GAAG;IACtD;QACI,MAAM,IAAI,GAAG,CAAC;KACjB;;IAED,IAAI,KAAK,GAAG,QAAQ,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC;IACvD,IAAI,QAAQ,GAAG,EAAE,CAAC;;;;IAIlB,IAAI,SAAS,GAAG,UAAU,IAAI,EAAE;QAC5B,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC;;QAEhD,IAAI,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,MAAM,KAAK,KAAK,CAAC,MAAM;QACjD;YACI,gBAAgB,CAAC,KAAK,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;YAC3C,IAAI,EAAE,CAAC;SACV;KACJ,CAAC;;IAEF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,EAAE,CAAC;IACrC;QACI,IAAI,QAAQ,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;QAC7C,IAAI,GAAG,GAAG,MAAM,GAAG,QAAQ,CAAC;QAC5B,IAAI,MAAM,GAAG,KAAK,CAAC;;;;QAInB,KAAK,IAAI,IAAI,IAAI,IAAI,CAAC,SAAS;QAC/B;YACI,IAAI,cAAc,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;;YAE1C,IAAI,cAAc,CAAC,GAAG,KAAK,GAAG;YAC9B;gBACI,cAAc,CAAC,QAAQ,CAAC,QAAQ,GAAG,QAAQ,CAAC;gBAC5C,IAAI,cAAc,CAAC,OAAO;gBAC1B;oBACI,SAAS,CAAC,cAAc,CAAC,CAAC;iBAC7B;;gBAED;oBACI,cAAc,CAAC,iBAAiB,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;iBACnD;gBACD,MAAM,GAAG,IAAI,CAAC;gBACd,MAAM;aACT;SACJ;;;;QAID,IAAI,CAAC,MAAM;QACX;;YAEI,IAAI,OAAO,GAAG;gBACV,WAAW,EAAE,QAAQ,CAAC,WAAW;gBACjC,QAAQ,EAAE,cAAc,CAAC,SAAS,CAAC,KAAK;gBACxC,QAAQ,EAAE,MAAM,CAAC,MAAM;oBACnB,EAAE,QAAQ,EAAE,QAAQ,EAAE;oBACtB,QAAQ,CAAC,QAAQ,CAAC,aAAa;iBAClC;gBACD,cAAc,EAAE,QAAQ;aAC3B,CAAC;;YAEF,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,OAAO,EAAE,SAAS,CAAC,CAAC;SACrC;KACJ;CACJ,CAAC;;AC9zBF;;;;;;;AAOA,AACA;AACA,IAAIF,UAAQ,GAAG,msCAAmsC,CAAC;;;;;;;;;;;;;;;;;AAiBntC,IAAI,iBAAiB,iBAAiB,UAAU,MAAM,EAAE;IACpD,SAAS,iBAAiB;IAC1B;QACI,IAAI,QAAQ,GAAG;YACX,CAAC,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;gBAC9B,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;gBACb,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;gBACb,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;YACnB,MAAM,EAAE,CAAC;SACZ,CAAC;;QAEF,MAAM,CAAC,IAAI,CAAC,IAAI,EAAEG,aAAmB,EAAEH,UAAQ,EAAE,QAAQ,CAAC,CAAC;;QAE3D,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;KAClB;;IAED,KAAK,MAAM,GAAG,iBAAiB,CAAC,SAAS,GAAG,MAAM,CAAC;IACnD,iBAAiB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IAC1E,iBAAiB,CAAC,SAAS,CAAC,WAAW,GAAG,iBAAiB,CAAC;;IAE5D,IAAI,kBAAkB,GAAG,EAAE,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;IAS1F,iBAAiB,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,MAAM,EAAE,QAAQ;IAChF;QACI,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,KAAK,CAAC;;QAE5C,IAAI,SAAS,GAAG,MAAM,CAAC;;QAEvB,IAAI,QAAQ;QACZ;YACI,IAAI,CAAC,SAAS,CAAC,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;YACnD,SAAS,GAAG,IAAI,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;SAC5C;;;QAGD,IAAI,CAAC,QAAQ,CAAC,CAAC,GAAG,SAAS,CAAC;KAC/B,CAAC;;;;;;;;;;;IAWF,iBAAiB,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;IACrE;;QAEI,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGhF,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGhF,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;;;QAGtF,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAA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"} \ No newline at end of file diff --git a/imgui_impl.ts b/imgui_impl.ts new file mode 100644 index 0000000..a5dad20 --- /dev/null +++ b/imgui_impl.ts @@ -0,0 +1,797 @@ +import * as ImGui from "imgui-js"; +import { ImVec2 } from "imgui-js"; +import * as PIXI from "pixi.js"; +import * as U from "./utils"; + +let clipboard_text: string = ""; + +const contexts: ImGui.ImGuiContext[] = []; +const contextIOs: ImGui.ImGuiIO[] = []; +let isFirstWindow: boolean = true; + +class ImGuiImplInternalRenderer extends PIXI.ObjectRenderer +{ + constructor(r: PIXI.Renderer) + { + super(r); + } + render(owner: PIXI.DisplayObject): void + { + if (!(owner instanceof ImGuiWindowLayer)) return; + + const window: ImGuiWindow = (owner as ImGuiWindowLayer).window; + + const io: ImGui.ImGuiIO = window.io; + const draw_data: ImGui.ImDrawData = ImGui.GetDrawData(); + if (draw_data === null) { throw new Error(); } + + gl || console.log(draw_data); + + // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) + const fb_width: number = io.DisplaySize.x * io.DisplayFramebufferScale.x; + const fb_height: number = io.DisplaySize.y * io.DisplayFramebufferScale.y; + if (fb_width === 0 || fb_height === 0) { + return; + } + draw_data.ScaleClipRects(io.DisplayFramebufferScale); + + // Backup GL state + const last_program: WebGLProgram | null = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null; + const last_active_texture: GLenum | null = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null; + gl && gl.activeTexture(gl.TEXTURE0); + const last_texture0: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null; + const last_vertex_array: WebGLVertexArrayObject | null = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null; + const last_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null; + const last_element_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null; + // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode); + const last_viewport: Int32Array | null = gl && gl.getParameter(gl.VIEWPORT) || null; + const last_scissor_box: Int32Array | null = gl && gl.getParameter(gl.SCISSOR_BOX) || null; + const last_blend_src_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null; + const last_blend_dst_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_RGB) || null; + const last_blend_src_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null; + const last_blend_dst_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null; + const last_blend_equation_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null; + const last_blend_equation_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null; + const last_enable_blend: GLboolean | null = gl && gl.getParameter(gl.BLEND) || null; + const last_enable_cull_face: GLboolean | null = gl && gl.getParameter(gl.CULL_FACE) || null; + const last_enable_depth_test: GLboolean | null = gl && gl.getParameter(gl.DEPTH_TEST) || null; + const last_enable_scissor_test: GLboolean | null = gl && gl.getParameter(gl.SCISSOR_TEST) || null; + + gl.clearColor(0, 0, 0, 0); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + + gl && gl.bindVertexArray(g_VaoHandle); + + // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill + gl && gl.enable(gl.BLEND); + gl && gl.blendEquation(gl.FUNC_ADD); + gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE); + gl && gl.disable(gl.CULL_FACE); + gl && gl.disable(gl.DEPTH_TEST); + gl && gl.enable(gl.SCISSOR_TEST); + // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + + // Setup viewport, orthographic projection matrix + // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps. + gl && gl.viewport(0, 0, fb_width, fb_height); + const L: number = draw_data.DisplayPos.x; + const R: number = draw_data.DisplayPos.x + draw_data.DisplaySize.x; + const T: number = draw_data.DisplayPos.y; + const B: number = draw_data.DisplayPos.y + draw_data.DisplaySize.y; + // we actually flip the bottom and top here to match with PIXI's texture usage + const ortho_projection: Float32Array = new Float32Array([ + 2.0 / (R - L), 0.0, 0.0, 0.0, + 0.0, 2.0 / (B - T), 0.0, 0.0, + 0.0, 0.0, -1.0, 0.0, + (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0, + ]); + gl && gl.useProgram(g_ShaderHandle); + gl && gl.uniform1i(g_AttribLocationTex, 0); + gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection); + + // Render command lists + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.enableVertexAttribArray(g_AttribLocationPosition); + gl && gl.enableVertexAttribArray(g_AttribLocationUV); + gl && gl.enableVertexAttribArray(g_AttribLocationColor); + + gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertPosOffset); + gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertUVOffset); + gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImGui.ImDrawVertSize, ImGui.ImDrawVertColOffset); + + // Draw + const pos = draw_data.DisplayPos; + const idx_buffer_type: GLenum = gl && ((ImGui.ImDrawIdxSize === 4) ? gl.UNSIGNED_INT : gl.UNSIGNED_SHORT) || 0; + draw_data.IterateDrawLists((draw_list: ImGui.ImDrawList): void => { + gl || console.log(draw_list); + gl || console.log("VtxBuffer.length", draw_list.VtxBuffer.length); + gl || console.log("IdxBuffer.length", draw_list.IdxBuffer.length); + + let idx_buffer_offset: number = 0; + + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW); + gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle); + gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW); + + draw_list.IterateDrawCmds((draw_cmd: ImGui.ImDrawCmd): void => { + gl || console.log(draw_cmd); + gl || console.log("ElemCount", draw_cmd.ElemCount); + gl || console.log("ClipRect", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y); + gl || console.log("TextureId", draw_cmd.TextureId); + if (!gl) { + console.log("i: pos.x pos.y uv.x uv.y col"); + for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) { + const view: ImGui.ImDrawVert = new ImGui.ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImGui.ImDrawVertSize); + console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${("00000000" + view.col[0].toString(16)).substr(-8)}`); + } + } + + if (draw_cmd.UserCallback !== null) { + // User callback (registered via ImDrawList::AddCallback) + draw_cmd.UserCallback(draw_list, draw_cmd); + } else { + const clip_rect = new ImGui.ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y); + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) { + // Apply scissor/clipping rectangle + gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y); + + // Bind texture, Draw + gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId); + gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset); + } + } + + idx_buffer_offset += draw_cmd.ElemCount * ImGui.ImDrawIdxSize; + }); + }); + + // Restore modified GL state + + gl && (last_program !== null) && gl.useProgram(last_program); + gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0); + gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture); + gl && gl.disableVertexAttribArray(g_AttribLocationPosition); + gl && gl.disableVertexAttribArray(g_AttribLocationUV); + gl && gl.disableVertexAttribArray(g_AttribLocationColor); + gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array); + gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer); + gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer); + gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]); + gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]); + gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha); + gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); + gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND)); + gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE)); + gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST)); + gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST)); + // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]); + } +} + +let gl: WebGL2RenderingContext = null; +let app: PIXI.Application = null; + +class ImGuiWindowLayer extends PIXI.Sprite +{ + public readonly window: ImGuiWindow; + constructor(window: ImGuiWindow, tex:PIXI.RenderTexture) + { + super(); + this.pluginName = "imgui_renderer"; + this.window = window; + } +} + +export class ImGuiWindow extends PIXI.Container +{ + public readonly ctx: ImGui.ImGuiContext; + public readonly io: ImGui.ImGuiIO; + private sizeX: number; + private sizeY: number; + public getSizeX(): number { return this.sizeX; } + public getSizeY(): number { return this.sizeY; } + + private baseTex: PIXI.BaseRenderTexture = new PIXI.BaseRenderTexture({scaleMode: PIXI.SCALE_MODES.LINEAR, resolution: 1, type: PIXI.TYPES.FLOAT, format: PIXI.FORMATS.RGBA}); + private tex: PIXI.RenderTexture = new PIXI.RenderTexture(this.baseTex); + + private surface: PIXI.Sprite = new PIXI.Sprite(this.tex); + private imgui: ImGuiWindowLayer = new ImGuiWindowLayer(this, this.tex); + + private update: (dt: number) => void; + constructor(sizeX: number, sizeY: number, update: (dt: number) => void) + { + super(); + + this.ctx = ImGui.CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts); + ImGui.SetCurrentContext(this.ctx); + this.io = ImGui.GetIO(); + + contexts.push(this.ctx); + contextIOs.push(this.io); + + if (contexts.length == 1) + { + CreateFontsTexture(); + } + + if (typeof(window) !== "undefined") { + ImGui.LoadIniSettingsFromMemory(window.localStorage.getItem("imgui.ini") || ""); + } + + if (typeof(navigator) !== "undefined") { + this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null; + } + + this.io.SetClipboardTextFn = (user_data: any, text: string): void => { + clipboard_text = text; + // console.log(`set clipboard_text: "${clipboard_text}"`); + if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.writeText: "${clipboard_text}"`); + (navigator as any).clipboard.writeText(clipboard_text).then((): void => { + // console.log(`clipboard.writeText: "${clipboard_text}" done.`); + }); + } + }; + this.io.GetClipboardTextFn = (user_data: any): string => { + // if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.readText: "${clipboard_text}"`); + // (navigator as any).clipboard.readText().then((text: string): void => { + // clipboard_text = text; + // console.log(`clipboard.readText: "${clipboard_text}" done.`); + // }); + // } + // console.log(`get clipboard_text: "${clipboard_text}"`); + return clipboard_text; + }; + this.io.ClipboardUserData = null; + + // Setup back-end capabilities flags + this.io.BackendFlags |= ImGui.BackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional) + + // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array. + this.io.KeyMap[ImGui.Key.Tab] = 9; + this.io.KeyMap[ImGui.Key.LeftArrow] = 37; + this.io.KeyMap[ImGui.Key.RightArrow] = 39; + this.io.KeyMap[ImGui.Key.UpArrow] = 38; + this.io.KeyMap[ImGui.Key.DownArrow] = 40; + this.io.KeyMap[ImGui.Key.PageUp] = 33; + this.io.KeyMap[ImGui.Key.PageDown] = 34; + this.io.KeyMap[ImGui.Key.Home] = 36; + this.io.KeyMap[ImGui.Key.End] = 35; + this.io.KeyMap[ImGui.Key.Insert] = 45; + this.io.KeyMap[ImGui.Key.Delete] = 46; + this.io.KeyMap[ImGui.Key.Backspace] = 8; + this.io.KeyMap[ImGui.Key.Space] = 32; + this.io.KeyMap[ImGui.Key.Enter] = 13; + this.io.KeyMap[ImGui.Key.Escape] = 27; + this.io.KeyMap[ImGui.Key.A] = 65; + this.io.KeyMap[ImGui.Key.C] = 67; + this.io.KeyMap[ImGui.Key.V] = 86; + this.io.KeyMap[ImGui.Key.X] = 88; + this.io.KeyMap[ImGui.Key.Y] = 89; + this.io.KeyMap[ImGui.Key.Z] = 90; + + this.update = update; + this.resize(sizeX, sizeY); + this.imgui.pluginName = 'imgui_renderer'; + this.addChild(this.surface); + app.renderer.plugins.interaction.addListener("mousedown", this.mouseDown.bind(this)); + app.renderer.plugins.interaction.addListener("mouseup", this.mouseUp.bind(this)); + app.ticker.add(this.updateInternal.bind(this)); + + this.interactive = false; + this.interactiveChildren = true; + + this.surface.interactive = false; + } + withContext(cb: () => void) + { + ImGui.SetCurrentContext(this.ctx); + cb(); + } + mouseDown(e: PIXI.interaction.InteractionEvent): void + { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) + { + this.io.MouseDown[mouse_button_map[0]] = true; + } + } + mouseUp(e: PIXI.interaction.InteractionEvent): void + { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) + { + this.io.MouseDown[mouse_button_map[0]] = false; + } + } + resize(sizeX: number, sizeY: number) + { + this.sizeX = sizeX; + this.sizeY = sizeY; + this.baseTex.resize(sizeX, sizeY); + this.tex.frame = new PIXI.Rectangle(0, 0, this.baseTex.width, this.baseTex.height); + } + updateInternal(deltaTime: number) + { + const dt: number = deltaTime * 1 / (1000 * PIXI.settings.TARGET_FPMS); + + ImGui.SetCurrentContext(this.ctx); + + if (this.io.WantSaveIniSettings) { + this.io.WantSaveIniSettings = false; + if (typeof(window) !== "undefined") { + window.localStorage.setItem("imgui.ini", ImGui.SaveIniSettingsToMemory()); + } + } + + this.io.DisplaySize.x = this.sizeX; + this.io.DisplaySize.y = this.sizeY; + this.io.DisplayFramebufferScale.x = 1; + this.io.DisplayFramebufferScale.y = 1; + + this.io.DeltaTime = dt; + + let localPos: PIXI.Point = this.toLocal(app.renderer.plugins.interaction.mouse.global); + if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY) + { + localPos = new PIXI.Point(-Number.MAX_VALUE, -Number.MAX_VALUE); + } + this.io.MousePos.x = localPos.x; + this.io.MousePos.y = localPos.y; + + if (this.io.WantSetMousePos) { + console.log("TODO: MousePos", this.io.MousePos.x, this.io.MousePos.y); + } + + if (typeof(document) !== "undefined") { + if (this.io.MouseDrawCursor) { + document.body.style.cursor = "none"; + } else { + switch (ImGui.GetMouseCursor()) { + case ImGui.MouseCursor.None: document.body.style.cursor = "none"; break; + default: case ImGui.MouseCursor.Arrow: document.body.style.cursor = "default"; break; + case ImGui.MouseCursor.TextInput: document.body.style.cursor = "text"; break; // When hovering over InputText, etc. + case ImGui.MouseCursor.ResizeAll: document.body.style.cursor = "move"; break; // Unused + case ImGui.MouseCursor.ResizeNS: document.body.style.cursor = "ns-resize"; break; // When hovering over an horizontal border + case ImGui.MouseCursor.ResizeEW: document.body.style.cursor = "ew-resize"; break; // When hovering over a vertical border or a column + case ImGui.MouseCursor.ResizeNESW: document.body.style.cursor = "nesw-resize"; break; // When hovering over the bottom-left corner of a window + case ImGui.MouseCursor.ResizeNWSE: document.body.style.cursor = "nwse-resize"; break; // When hovering over the bottom-right corner of a window + case ImGui.MouseCursor.Hand: document.body.style.cursor = "move"; break; + } + } + } + + // Gamepad navigation mapping [BETA] + for (let i = 0; i < this.io.NavInputs.length; ++i) { + this.io.NavInputs[i] = 0.0; + } + if (this.io.ConfigFlags & ImGui.ConfigFlags.NavEnableGamepad) { + // Update gamepad inputs + const gamepads: (Gamepad | null)[] = (typeof(navigator) !== "undefined" && typeof(navigator.getGamepads) === "function") ? navigator.getGamepads() : []; + for (let i = 0; i < gamepads.length; ++i) { + const gamepad: Gamepad | null = gamepads[i]; + if (!gamepad) { continue; } + const buttons_count: number = gamepad.buttons.length; + const axes_count: number = gamepad.axes.length; + const MAP_BUTTON = function(NAV_NO: number, BUTTON_NO: number): void { + if (!gamepad) { return; } + if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed) + this.io.NavInputs[NAV_NO] = 1.0; + } + const MAP_ANALOG = function(NAV_NO: number, AXIS_NO: number, V0: number, V1: number): void { + if (!gamepad) { return; } + let v: number = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0; + v = (v - V0) / (V1 - V0); + if (v > 1.0) v = 1.0; + if (this.io.NavInputs[NAV_NO] < v) this.io.NavInputs[NAV_NO] = v; + } + // TODO: map input based on vendor and product id + // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id + const match: RegExpMatchArray | null = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/); + const match_chrome: RegExpMatchArray | null = gamepad.id.match(/^.*\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\).*$/); + const vendor: string = (match && match[1]) || (match_chrome && match_chrome[1]) || "0000"; + const product: string = (match && match[2]) || (match_chrome && match_chrome[2]) || "0000"; + switch (vendor + product) { + case "046dc216": // Logitech Logitech Dual Action (Vendor: 046d Product: c216) + MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 2); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 0); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGui.NavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGui.NavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGui.NavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGui.NavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + case "046dc21d": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d) + MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_ANALOG(ImGui.NavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT + MAP_ANALOG(ImGui.NavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + case "2dc86001": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001) + case "2dc86101": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101) + MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 0); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 4); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGui.NavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGui.NavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGui.NavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGui.NavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 6); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 7); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 8); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 9); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + default: // standard gamepad: https://w3c.github.io/gamepad/#remapping + MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + } + } + } + + ImGui.NewFrame(); + + this.update(dt); + + ImGui.EndFrame(); + ImGui.Render(); + + app.renderer.render(this.imgui, this.tex); + + this.surface.interactive = this.io.WantCaptureMouse; + } +} + +let canvas: HTMLCanvasElement | null = null; + +//export let gl: WebGL2RenderingContext | null = null; +let g_ShaderHandle: WebGLProgram | null = null; +let g_VertHandle: WebGLShader | null = null; +let g_FragHandle: WebGLShader | null = null; +let g_AttribLocationTex: WebGLUniformLocation | null = null; +let g_AttribLocationProjMtx: WebGLUniformLocation | null = null; +let g_AttribLocationPosition: GLint = -1; +let g_AttribLocationUV: GLint = -1; +let g_AttribLocationColor: GLint = -1; +let g_VaoHandle: WebGLVertexArrayObject = null; +let g_VboHandle: WebGLBuffer | null = null; +let g_ElementsHandle: WebGLBuffer | null = null; +let g_FontTexture: WebGLTexture | null = null; + +function document_on_copy(event: ClipboardEvent): void { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function document_on_cut(event: ClipboardEvent): void { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function document_on_paste(event: ClipboardEvent): void { + if (event.clipboardData) { + clipboard_text = event.clipboardData.getData("text/plain"); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function window_on_gamepadconnected(event: any /* GamepadEvent */): void { + console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.", + event.gamepad.index, event.gamepad.id, + event.gamepad.buttons.length, event.gamepad.axes.length); +} + +function window_on_gamepaddisconnected(event: any /* GamepadEvent */): void { + console.log("Gamepad disconnected at index %d: %s.", + event.gamepad.index, event.gamepad.id); +} + +function canvas_on_blur(event: FocusEvent): void { + for (var io of contextIOs) + { + io.KeyCtrl = false; + io.KeyShift = false; + io.KeyAlt = false; + io.KeySuper = false; + for (let i = 0; i < io.KeysDown.length; ++i) { + io.KeysDown[i] = false; + } + for (let i = 0; i < io.MouseDown.length; ++i) { + io.MouseDown[i] = false; + } + } +} + +function canvas_on_keydown(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = true; + // forward to the keypress event + if (/*io.WantCaptureKeyboard ||*/ event.key === "Tab") { + event.preventDefault(); + } + } +} + +function canvas_on_keyup(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = false; + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} + +function canvas_on_keypress(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.AddInputCharacter(event.charCode); + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} + +// MouseEvent.button +// A number representing a given button: +// 0: Main button pressed, usually the left button or the un-initialized state +// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present) +// 2: Secondary button pressed, usually the right button +// 3: Fourth button, typically the Browser Back button +// 4: Fifth button, typically the Browser Forward button +const mouse_button_map: number[] = [ 0, 2, 1, 3, 4 ]; + +function canvas_on_contextmenu(event: Event): void { + for (var io of contextIOs) + { + if (io.WantCaptureMouse) { event.preventDefault(); } + } +} + +function canvas_on_wheel(event: WheelEvent): void { + for (var io of contextIOs) + { + let scale: number = 1.0; + switch (event.deltaMode) { + case event.DOM_DELTA_PIXEL: scale = 0.01; break; + case event.DOM_DELTA_LINE: scale = 0.2; break; + case event.DOM_DELTA_PAGE: scale = 1.0; break; + } + io.MouseWheelH = event.deltaX * scale; + io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text. + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} + +export function PrePIXIInit(): void +{ + PIXI.Renderer.registerPlugin("imgui_renderer", U.fromConstructor(ImGuiImplInternalRenderer)); +} + +export function Init(_app: PIXI.Application): void { + // Setup Dear ImGui binding + ImGui.IMGUI_CHECKVERSION(); + + if (typeof(document) !== "undefined") { + document.body.addEventListener("copy", document_on_copy); + document.body.addEventListener("cut", document_on_cut); + document.body.addEventListener("paste", document_on_paste); + } + + if (typeof(window) !== "undefined") { + window.addEventListener("gamepadconnected", window_on_gamepadconnected); + window.addEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + + app = _app; + gl = (app.renderer as any).gl; + canvas = app.view; + + gl.getExtension("EXT_color_buffer_float"); + + if (canvas !== null) { + canvas.style.touchAction = "none"; // Disable browser handling of all panning and zooming gestures. + canvas.addEventListener("blur", canvas_on_blur); + canvas.addEventListener("keydown", canvas_on_keydown); + canvas.addEventListener("keyup", canvas_on_keyup); + canvas.addEventListener("keypress", canvas_on_keypress); + canvas.addEventListener("contextmenu", canvas_on_contextmenu); + canvas.addEventListener("wheel", canvas_on_wheel); + } + + CreateDeviceObjects(); +} + +export function Shutdown(): void { + DestroyDeviceObjects(); + + if (canvas !== null) { + canvas.removeEventListener("blur", canvas_on_blur); + canvas.removeEventListener("keydown", canvas_on_keydown); + canvas.removeEventListener("keyup", canvas_on_keyup); + canvas.removeEventListener("keypress", canvas_on_keypress); + canvas.removeEventListener("contextmenu", canvas_on_contextmenu); + canvas.removeEventListener("wheel", canvas_on_wheel); + } + + app = null; + canvas = null; + + if (typeof(window) !== "undefined") { + window.removeEventListener("gamepadconnected", window_on_gamepadconnected); + window.removeEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + + if (typeof(document) !== "undefined") { + document.body.removeEventListener("copy", document_on_copy); + document.body.removeEventListener("cut", document_on_cut); + document.body.removeEventListener("paste", document_on_paste); + } +} + +function CreateFontsTexture(): void { + const io = ImGui.GetIO(); + + // Backup GL state + const last_texture: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D); + + // Build texture atlas + // const width: number = 256; + // const height: number = 256; + // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff); + const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory. + // console.log(`font texture ${width} x ${height} @ ${pixels.length}`); + + // Upload texture to graphics system + g_FontTexture = gl && gl.createTexture(); + gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2 + gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels); + + // Store our identifier + io.Fonts.TexID = g_FontTexture || { foo: "bar" }; + // console.log("font texture id", g_FontTexture); + + // Restore modified GL state + gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture); +} + +function DestroyFontsTexture(): void { + const io = ImGui.GetIO(); + io.Fonts.TexID = null; + gl && gl.deleteTexture(g_FontTexture); g_FontTexture = null; +} + +function CreateDeviceObjects(): void { + const vertex_shader: string[] = [ + "#version 300 es", + "uniform mat4 ProjMtx;", + "in vec2 Position;", + "in vec2 UV;", + "in vec4 Color;", + "out vec2 Frag_UV;", + "out vec4 Frag_Color;", + "void main() {", + " Frag_UV = UV;", + " Frag_Color = Color;", + " gl_Position = ProjMtx * vec4(Position.xy,0,1);", + "}", + ]; + + const fragment_shader: string[] = [ + "#version 300 es", + "precision mediump float;", // WebGL requires precision specifiers + "uniform sampler2D Texture;", + "in vec2 Frag_UV;", + "in vec4 Frag_Color;", + "out vec4 OutColor;", + "void main() {", + " OutColor = Frag_Color * texture(Texture, Frag_UV);", + "}", + ]; + + g_ShaderHandle = gl && gl.createProgram(); + g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER); + g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER); + gl && gl.shaderSource(g_VertHandle as WebGLShader, vertex_shader.join("\n")); + gl && gl.shaderSource(g_FragHandle as WebGLShader, fragment_shader.join("\n")); + gl && gl.compileShader(g_VertHandle as WebGLShader); + gl && gl.compileShader(g_FragHandle as WebGLShader); + gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_VertHandle as WebGLShader); + gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_FragHandle as WebGLShader); + gl && gl.linkProgram(g_ShaderHandle as WebGLProgram); + + g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, "Texture"); + g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, "ProjMtx"); + g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "Position") || 0; + g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "UV") || 0; + g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "Color") || 0; + + g_VaoHandle = gl && gl.createVertexArray(); + g_VboHandle = gl && gl.createBuffer(); + g_ElementsHandle = gl && gl.createBuffer(); + +} + +function DestroyDeviceObjects(): void { + DestroyFontsTexture(); + + gl && gl.deleteVertexArray(g_VaoHandle); g_VaoHandle = null; + gl && gl.deleteBuffer(g_VboHandle); g_VboHandle = null; + gl && gl.deleteBuffer(g_ElementsHandle); g_ElementsHandle = null; + + g_AttribLocationTex = null; + g_AttribLocationProjMtx = null; + g_AttribLocationPosition = -1; + g_AttribLocationUV = -1; + g_AttribLocationColor = -1; + + gl && gl.deleteProgram(g_ShaderHandle); g_ShaderHandle = null; + gl && gl.deleteShader(g_VertHandle); g_VertHandle = null; + gl && gl.deleteShader(g_FragHandle); g_FragHandle = null; +} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..08ec8c9 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1639 @@ +{ + "name": "imgui-js-pixi", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@pixi/accessibility": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/accessibility/-/accessibility-5.1.5.tgz", + "integrity": "sha512-xHgcVN6sDqqpkcgk+yJ5s6tCf7ZW2YZVop7bQL9avuJaP6I/0mbwUN3evWonQ4QNO6SF8V/QXOc3ZmEdkYILPA==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/app": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/app/-/app-5.1.5.tgz", + "integrity": "sha512-BxcNAulUXVkTpOqS5gjorO2d3+wksmBfn0VFGdiq7Elbv3v0s8wCwGOlOSMJoAjYSPXz8H8t3dw8NHxqxpI53A==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3" + } + }, + "@pixi/constants": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@pixi/constants/-/constants-5.1.0.tgz", + "integrity": "sha512-86cogDvjF9yNvmxeizwkIhA0Kl2z3gUSWMf2daYx903dzyje7fwkzRrKLnqDUn6vSAxRXiska0DMJhwYsIC29w==" + }, + "@pixi/core": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/core/-/core-5.1.5.tgz", + "integrity": "sha512-pt7JTgRyGyOm1VNGhYqAjdIggQ5SjGpctLEBFwPlZDOTeEjJ85NADwCvN/E9ToIW7Gv/1urrNKsoVGlADcV6vw==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/runner": "^5.1.1", + "@pixi/settings": "^5.1.3", + "@pixi/ticker": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/display": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/display/-/display-5.1.3.tgz", + "integrity": "sha512-zQJfwH9tSilEfpajVJKM2bavIXBFMokscXyFIdokBSjLQL22mgEyR0mHZ3u6OECUa0PEVUA64eePv6KmPZ+bJQ==", + "requires": { + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/extract": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/extract/-/extract-5.1.5.tgz", + "integrity": "sha512-sn13RxtWpqZq05K9IJxF/00ddMsiDlpQAwEwA8fQIsMSbt6lBTm1fa0u/nZqQjRhJk72Q+41h4LXEhZEMMowAg==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/filter-alpha": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-alpha/-/filter-alpha-5.1.5.tgz", + "integrity": "sha512-Jb5e7lybvMOXjdTOEN883h2N5Qe5rLNdTmPxOoK43RR+LQMk8D/Iw3zWpQ1oIwpJFiUkgwn0CmO5YaK6STh34w==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/filter-blur": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-blur/-/filter-blur-5.1.5.tgz", + "integrity": "sha512-9eSJtg8kLwKrNnJmg2c1vlOcP0PYhvZdUk97D2+HrE0j1BZTJ2OxHb26UJSiMU0kBCUomtuFvCiNtFT2GCWbjg==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/settings": "^5.1.3" + } + }, + "@pixi/filter-color-matrix": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-color-matrix/-/filter-color-matrix-5.1.5.tgz", + "integrity": "sha512-zhg8FE22WA7sH1mhvjjSaWav7BXFbU63usdh9pVNv2Hd7cuDtO9x8aLy+RqGozqENfYHzRUlTdKrNdl5QEbYMg==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/filter-displacement": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-displacement/-/filter-displacement-5.1.5.tgz", + "integrity": "sha512-/ZzlTT+jFQTwg57jj6kl4lH+0Z3iwtp+tDXdYcusNDe44hZn9Wd+IzZkS/LCeay40cY4JPRrXznVwlZ6AiBsHQ==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0" + } + }, + "@pixi/filter-fxaa": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-fxaa/-/filter-fxaa-5.1.5.tgz", + "integrity": "sha512-Zg2pSBpb0pxJozWraNrHUC97C3gSjK+NSaMGBN6NpfaGcn+/xaZjFBwwYDeTpHAw6IDV+3Ln+z7D5h9pPEliKg==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/filter-noise": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-noise/-/filter-noise-5.1.5.tgz", + "integrity": "sha512-/HGr9dxvBVc+qRJ/JU/6ZHz3BshnUwCTgEfQtxJmo2I6lqn9cWoiL4q+iKk9QkGmLtLNip77zc0KveYN01eh/g==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/graphics": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/graphics/-/graphics-5.1.5.tgz", + "integrity": "sha512-u9uq/6ylS5oRCsWaTi0uOCuAimAvaXJ57ATKT/nylHRXv+GfbPoMJAHpqTWx8HojK7P6PBUJCenPa0BFVcq9gg==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/interaction": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/interaction/-/interaction-5.1.5.tgz", + "integrity": "sha512-N8SONgHZZuDLPAL3LvfMTfgRsD6084KJA9VbwJ6Ujvm95NwSInNC2HRB6uXsSYTC4I1bMcRhot3CjZkB5BEURA==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/ticker": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/loaders": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/loaders/-/loaders-5.1.5.tgz", + "integrity": "sha512-jcuJMMGIr7/o8HKtVL9YzUTQQGk4K4uNQylUbhnNDFVuJcVzuBwD/TCWJ/+2Y879vBzipXdhCw7JLA4F8w6bkg==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/utils": "^5.1.3", + "resource-loader": "^3.0.1" + } + }, + "@pixi/math": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@pixi/math/-/math-5.1.0.tgz", + "integrity": "sha512-Vf9W4SgYRRQMdSq8tFViKKKGCU3iklf0RDzd+wzp4gezOxe3m0PLB7XKwvVrP1hRjUh49zIAL9JBpYREPS1EMw==" + }, + "@pixi/mesh": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/mesh/-/mesh-5.1.5.tgz", + "integrity": "sha512-gWBwBkIV0Dj0nA+a/ymtv4oQOium3oiehKdhSynQZj9C+pwd3YUSJGjHWs4b+TIQxZm2RHEsSSw4gCw/Ih1cuw==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/mesh-extras": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/mesh-extras/-/mesh-extras-5.1.5.tgz", + "integrity": "sha512-aMjTD3kBf2h31ijYapapQOJIoQuO26i4pP7P4ux886FE8E48QSc3edXZzULq2Rc5ZdWMPUFYnd8AJ6F8dw/ocQ==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/mesh": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/mixin-cache-as-bitmap": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/mixin-cache-as-bitmap/-/mixin-cache-as-bitmap-5.1.5.tgz", + "integrity": "sha512-XRVTz5nOgj7wUFXXIixTlg+2oynNerebUwjkw11mnr+HNP3vMmt2O8ZtXEyij2VXNMuDmbYo8/O53FI+81CnAQ==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/mixin-get-child-by-name": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/mixin-get-child-by-name/-/mixin-get-child-by-name-5.1.3.tgz", + "integrity": "sha512-0nvNfcQAeND9iuzQr0AYCxINDaXQx5Kft8Fauu0T4LKbYAchO0qzuSpv7L+cD4LvKdvGQyxHHWP6u4wQ9yuKrg==", + "requires": { + "@pixi/display": "^5.1.3" + } + }, + "@pixi/mixin-get-global-position": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/mixin-get-global-position/-/mixin-get-global-position-5.1.3.tgz", + "integrity": "sha512-dgIUjjIDnI/wrNXt+ROWdv0syQeV5hlt/TJot/ULXw6HnBoDDmXqcKzIp38o3Ei6n2eQ0CUVbKYGd668tdk5EQ==", + "requires": { + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0" + } + }, + "@pixi/particles": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/particles/-/particles-5.1.5.tgz", + "integrity": "sha512-eIYd1wKyuzBL/re3EuyhUjXNRe8fkqbUgpeevV2e7tIoFcyK3g3cT4E1ajTv+7IIAvj2505xRJ3dxcAxLDzd6g==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/polyfill": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@pixi/polyfill/-/polyfill-5.1.0.tgz", + "integrity": "sha512-8M3nYCO0a599fsdLW7wv9SBYriMqS1QckKAkRuN2JualRuK/GjxZjm5Vcbcwc1gGONRUKZroH12CuPyTcU2HnQ==", + "requires": { + "es6-promise-polyfill": "^1.2.0", + "object-assign": "^4.1.1" + } + }, + "@pixi/prepare": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/prepare/-/prepare-5.1.5.tgz", + "integrity": "sha512-0Gq6whHFuLYy3uUVoVmRnVWMZU4Z0WSs7+BYGWrDqxlOqfuZ6ZS4SSEjzcUUvyCK8MWisEn7O3EnDRYFr+3K5g==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/graphics": "^5.1.5", + "@pixi/settings": "^5.1.3", + "@pixi/text": "^5.1.5", + "@pixi/ticker": "^5.1.3" + } + }, + "@pixi/runner": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@pixi/runner/-/runner-5.1.1.tgz", + "integrity": "sha512-cOkWsRZlEgOB4IuiUW0PvU0JDMNpNTtyLeECg4DwIDYW4uQ0033zaZFSsN0EOeX0TFkpBmaJsgEIwpmw32VU0w==" + }, + "@pixi/settings": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/settings/-/settings-5.1.3.tgz", + "integrity": "sha512-goYjVYuklNMFWFq54J7u4eYVe+qmLe6AQP+b+hF+Kskw7tSXrAVTHROqrEiqPqKSCL9umorOi6T/ZTXhk8i4Wg==", + "requires": { + "ismobilejs": "^0.5.1" + } + }, + "@pixi/sprite": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/sprite/-/sprite-5.1.5.tgz", + "integrity": "sha512-a8M5P7xarbYMut3YKIb5I4hr94c0/VA18jV/eOhtyOKOsS5jkjul5WGssnIyR73aQp7iaNGWfh7FD+BiWCLzXQ==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/sprite-animated": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/sprite-animated/-/sprite-animated-5.1.5.tgz", + "integrity": "sha512-jsxqmWpDpjy7BoqVFpPWNvIeJ6yePQ0/uTyvzhKZBM8ihZVFJMa1+C4IFQpQYUCp9rlZHG6og4UzAHlwceQb+A==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/sprite": "^5.1.5", + "@pixi/ticker": "^5.1.3" + } + }, + "@pixi/sprite-tiling": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/sprite-tiling/-/sprite-tiling-5.1.5.tgz", + "integrity": "sha512-9P0jyAA9I8hrDnN04rABxxs09Knb2AZr+Ky2yvWAUngumoMmIEbc/JtW9R8ich72uTBcl8Ax+bTz520wB36HpA==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/spritesheet": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/spritesheet/-/spritesheet-5.1.5.tgz", + "integrity": "sha512-kZBiI/eYRKoNxOTI9h4tl13oGdCaFkH/cOI0MZ0st0Dos6clB5OJStJ19bEe/Ik1Yt7NxGCCuFLLa3WKhQ5idQ==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/loaders": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/text": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/text/-/text-5.1.5.tgz", + "integrity": "sha512-8pKWuyccdWrZgvssyPUrOdn7CMeetRTpM8W51KYwU8gla6tnddMj3TaBW56dXRdtddadDc2KdGtDYPOuonHOfA==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/text-bitmap": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/text-bitmap/-/text-bitmap-5.1.5.tgz", + "integrity": "sha512-Qvnq35MdDWjW9JwJsLcVpnTX4ApW52zLMeMezuTtN+QrfsXmYXRE+SOeBERccbGmyxcM2yIKIItiqS2eFvlzRw==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/loaders": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/ticker": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/ticker/-/ticker-5.1.3.tgz", + "integrity": "sha512-IuJTMTfdboR6049b+HnSClGj7Lz5gObVoxuMc3flY493XAvrQk4XrBo57QDlVOdjVBiDW0gZ9DlUr1lwNFI7zQ==", + "requires": { + "@pixi/settings": "^5.1.3" + } + }, + "@pixi/utils": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/utils/-/utils-5.1.3.tgz", + "integrity": "sha512-w2ULIc97p1tnAZ7L0aSClDeIpuCYrauOKbnWYG8C8zTVfHWFKAHVamvzYnVaeXw4CN9jwERK/JYY/y2VFZXHuw==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/settings": "^5.1.3", + "earcut": "^2.1.5", + "eventemitter3": "^3.1.0", + "url": "^0.11.0" + } + }, + "@types/emscripten": { + "version": "1.38.0", + "resolved": "https://registry.npmjs.org/@types/emscripten/-/emscripten-1.38.0.tgz", + "integrity": "sha512-qfuBbl9hC0ybmW9s8SDORPgg+LdPV+KRpB8AMdTRqxuQZR4G5T7ozIAVUJLO26N7SFSM1zvDVuZ9+qOX7qt/EQ==" + }, + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "dev": true + }, + "@types/node": { + "version": "12.7.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.7.8.tgz", + "integrity": "sha512-FMdVn84tJJdV+xe+53sYiZS4R5yn1mAIxfj+DVoNiQjTYz1+OYmjwEZr1ev9nU0axXwda0QDbYl06QHanRVH3A==" + }, + "@types/resolve": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz", + "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/systemjs": { + "version": "0.20.6", + "resolved": "https://registry.npmjs.org/@types/systemjs/-/systemjs-0.20.6.tgz", + "integrity": "sha512-p3yv9sBBJXi3noUG216BpUI7VtVBUAvBIfZNTiDROUY31YBfsFHM4DreS7XMekN8IjtX0ysvCnm6r3WnirnNeA==" + }, + "abstract-leveldown": { + "version": "0.12.4", + "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-0.12.4.tgz", + "integrity": "sha1-KeGOYy5g5OIh1YECR4UqY9ey5BA=", + "dev": true, + "requires": { + "xtend": "~3.0.0" + }, + "dependencies": { + "xtend": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz", + "integrity": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=", + "dev": true + } + } + }, + "acorn": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.0.tgz", + "integrity": "sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==", + "dev": true + }, + "asn1.js": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", + "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "bl": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/bl/-/bl-0.8.2.tgz", + "integrity": "sha1-yba8oI0bwuoA/Ir7Txpf0eHGbk4=", + "dev": true, + "requires": { + "readable-stream": "~1.0.26" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "bn.js": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", + "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==", + "dev": true + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-fs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browserify-fs/-/browserify-fs-1.0.0.tgz", + "integrity": "sha1-8HWqinKdTRcW0GZiDjhvzBMRqW8=", + "dev": true, + "requires": { + "level-filesystem": "^1.0.1", + "level-js": "^2.1.3", + "levelup": "^0.18.2" + } + }, + "browserify-rsa": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", + "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", + "dev": true, + "requires": { + "bn.js": "^4.1.1", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.2", + "elliptic": "^6.0.0", + "inherits": "^2.0.1", + "parse-asn1": "^5.0.0" + } + }, + "buffer-es6": { + "version": "4.9.3", + "resolved": "https://registry.npmjs.org/buffer-es6/-/buffer-es6-4.9.3.tgz", + "integrity": "sha1-8mNHuC33b9N+GLy1KIxJcM/VxAQ=", + "dev": true + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true + }, + "builtin-modules": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz", + "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==", + "dev": true + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "clone": { + "version": "0.1.19", + "resolved": "https://registry.npmjs.org/clone/-/clone-0.1.19.tgz", + "integrity": "sha1-YT+2hjmyaklKxTJT4Vsaa9iK2oU=", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "create-ecdh": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", + "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.0.0" + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "deferred-leveldown": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-0.2.0.tgz", + "integrity": "sha1-LO8fER4cV4cNi7uK8mUOWHzS9bQ=", + "dev": true, + "requires": { + "abstract-leveldown": "~0.12.1" + } + }, + "des.js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", + "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "earcut": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.1.tgz", + "integrity": "sha512-5jIMi2RB3HtGPHcYd9Yyl0cczo84y+48lgKPxMijliNQaKAHEZJbdzLmKmdxG/mCdS/YD9DQ1gihL8mxzR0F9w==" + }, + "elliptic": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.1.tgz", + "integrity": "sha512-xvJINNLbTeWQjrl6X+7eQCrIy/YPv5XCpKW6kB5mKvtnGILoLDcySuwomfdzt0BMdLNVnuRNTuzKNHj0bva1Cg==", + "dev": true, + "requires": { + "bn.js": "^4.4.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + } + }, + "errno": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", + "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "es6-promise-polyfill": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/es6-promise-polyfill/-/es6-promise-polyfill-1.2.0.tgz", + "integrity": "sha1-84kl8jyz4+jObNqP93T867sJDN4=" + }, + "estree-walker": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", + "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==", + "dev": true + }, + "eventemitter3": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", + "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==" + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "find-cache-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.0.0.tgz", + "integrity": "sha512-t7ulV1fmbxh5G9l/492O1p5+EBbr3uwpt6odhFTMc+nWyhmbloe+ja9BZ8pIBtqFWhOmCWVjx+pTW4zDkFoclw==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.0", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "foreach": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", + "dev": true + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fwd-stream": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/fwd-stream/-/fwd-stream-1.0.4.tgz", + "integrity": "sha1-7Sgcq+1G/uz5Ie4y3ExQs3KsfPo=", + "dev": true, + "requires": { + "readable-stream": "~1.0.26-4" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "graceful-fs": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", + "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==", + "dev": true + }, + "hash-base": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", + "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "idb-wrapper": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/idb-wrapper/-/idb-wrapper-1.7.2.tgz", + "integrity": "sha512-zfNREywMuf0NzDo9mVsL0yegjsirJxHpKHvWcyRozIqQy89g0a3U+oBPOCN4cc0oCiOuYgZHimzaW/R46G1Mpg==", + "dev": true + }, + "imgui-js": { + "version": "git+https://git.mhack.io/git/mark/imgui-js.git#9536ecad287eb76812087cd3fee1aaacb448c027", + "from": "git+https://git.mhack.io/git/mark/imgui-js.git", + "requires": { + "@types/emscripten": "^1.38.0", + "@types/node": "^12.6.7", + "@types/systemjs": "^0.20.6", + "pixi.js": "file:node_modules/imgui-js/pixi.js/bundles/pixi.js/pixi.js-5.1.4.tgz" + } + }, + "indexof": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", + "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", + "dev": true + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "is": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/is/-/is-0.2.7.tgz", + "integrity": "sha1-OzSixI81mXLzUEKEkZOucmS2NWI=", + "dev": true + }, + "is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=", + "dev": true + }, + "is-object": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-0.1.2.tgz", + "integrity": "sha1-AO+8CIFsM8/ErIJR0TLhDcZQmNc=", + "dev": true + }, + "is-reference": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.1.4.tgz", + "integrity": "sha512-uJA/CDPO3Tao3GTrxYn6AwkM4nUPJiGGYu5+cB8qbC7WGFlrKZbiRo7SFKxUAEpFUfiHofWCXBUNhvYJMh+6zw==", + "dev": true, + "requires": { + "@types/estree": "0.0.39" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isbuffer": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/isbuffer/-/isbuffer-0.0.0.tgz", + "integrity": "sha1-OMFG2d9Si4v5sHAcPUPPEt8/w5s=", + "dev": true + }, + "ismobilejs": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/ismobilejs/-/ismobilejs-0.5.2.tgz", + "integrity": "sha512-ta9UdV60xVZk/ZafFtSFslQaE76SvNkcs1r73d2PVR21zVzx9xuYv9tNe4MxA1NN7WoeCc2RjGot3Bz1eHDx3Q==" + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "level-blobs": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/level-blobs/-/level-blobs-0.1.7.tgz", + "integrity": "sha1-mrm5e7mfHtv594o0M+Ie1WOGva8=", + "dev": true, + "requires": { + "level-peek": "1.0.6", + "once": "^1.3.0", + "readable-stream": "^1.0.26-4" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "level-filesystem": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/level-filesystem/-/level-filesystem-1.2.0.tgz", + "integrity": "sha1-oArKmRnEpN+v3KaoEI0iWq3/Y7M=", + "dev": true, + "requires": { + "concat-stream": "^1.4.4", + "errno": "^0.1.1", + "fwd-stream": "^1.0.4", + "level-blobs": "^0.1.7", + "level-peek": "^1.0.6", + "level-sublevel": "^5.2.0", + "octal": "^1.0.0", + "once": "^1.3.0", + "xtend": "^2.2.0" + } + }, + "level-fix-range": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/level-fix-range/-/level-fix-range-1.0.2.tgz", + "integrity": "sha1-vxW5Fa422EcMgh6IPd95zRZCCCg=", + "dev": true + }, + "level-hooks": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/level-hooks/-/level-hooks-4.5.0.tgz", + "integrity": "sha1-G5rmGSKTDzMF0aYfxNg8gQLA3ZM=", + "dev": true, + "requires": { + "string-range": "~1.2" + } + }, + "level-js": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/level-js/-/level-js-2.2.4.tgz", + "integrity": "sha1-vAVfQYBjXUSJtWHJSG+jcOjBFpc=", + "dev": true, + "requires": { + "abstract-leveldown": "~0.12.0", + "idb-wrapper": "^1.5.0", + "isbuffer": "~0.0.0", + "ltgt": "^2.1.2", + "typedarray-to-buffer": "~1.0.0", + "xtend": "~2.1.2" + }, + "dependencies": { + "object-keys": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz", + "integrity": "sha1-KKaq50KN0sOpLz2V8hM13SBOAzY=", + "dev": true + }, + "xtend": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", + "integrity": "sha1-bv7MKk2tjmlixJAbM3znuoe10os=", + "dev": true, + "requires": { + "object-keys": "~0.4.0" + } + } + } + }, + "level-peek": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/level-peek/-/level-peek-1.0.6.tgz", + "integrity": "sha1-vsUccqgu5GTTNkNMfIdsP8vM538=", + "dev": true, + "requires": { + "level-fix-range": "~1.0.2" + } + }, + "level-sublevel": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/level-sublevel/-/level-sublevel-5.2.3.tgz", + "integrity": "sha1-dEwSxy0ucr543eO5tc2E1iGRQTo=", + "dev": true, + "requires": { + "level-fix-range": "2.0", + "level-hooks": ">=4.4.0 <5", + "string-range": "~1.2.1", + "xtend": "~2.0.4" + }, + "dependencies": { + "level-fix-range": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/level-fix-range/-/level-fix-range-2.0.0.tgz", + "integrity": "sha1-xBfWIVlEIVGhnZojZ4aPFyTC1Ug=", + "dev": true, + "requires": { + "clone": "~0.1.9" + } + }, + "xtend": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.0.6.tgz", + "integrity": "sha1-XqZXptukRwacLlnFihE4ywxebO4=", + "dev": true, + "requires": { + "is-object": "~0.1.2", + "object-keys": "~0.2.0" + } + } + } + }, + "levelup": { + "version": "0.18.6", + "resolved": "https://registry.npmjs.org/levelup/-/levelup-0.18.6.tgz", + "integrity": "sha1-5qAcsIlhbI7MApHCqb0/DETj5es=", + "dev": true, + "requires": { + "bl": "~0.8.1", + "deferred-leveldown": "~0.2.0", + "errno": "~0.1.1", + "prr": "~0.0.0", + "readable-stream": "~1.0.26", + "semver": "~2.3.1", + "xtend": "~3.0.0" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "prr": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz", + "integrity": "sha1-GoS4WQgyVQFBGFPQCB7j+obikmo=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + }, + "xtend": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz", + "integrity": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=", + "dev": true + } + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "ltgt": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ltgt/-/ltgt-2.2.1.tgz", + "integrity": "sha1-81ypHEk/e3PaDgdJUwTxezH4fuU=", + "dev": true + }, + "magic-string": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.4.tgz", + "integrity": "sha512-oycWO9nEVAP2RVPbIoDoA4Y7LFIJ3xRYov93gAyJhZkET1tNuB0u7uWkZS2LpBWTJUWnmau/To8ECWRC+jKNfw==", + "dev": true, + "requires": { + "sourcemap-codec": "^1.4.4" + } + }, + "make-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.0.0.tgz", + "integrity": "sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + } + }, + "mini-signals": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mini-signals/-/mini-signals-1.2.0.tgz", + "integrity": "sha1-RbCAE8X65RokqhqTXNMXye1yHXQ=" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-keys": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.2.0.tgz", + "integrity": "sha1-zd7AKZiwkb5CvxA1rjLknxy26mc=", + "dev": true, + "requires": { + "foreach": "~2.0.1", + "indexof": "~0.0.1", + "is": "~0.2.6" + } + }, + "octal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/octal/-/octal-1.0.0.tgz", + "integrity": "sha1-Y+cWKmjvvrniE1iNWOmJ0eXEUws=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "p-limit": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", + "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "parse-asn1": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz", + "integrity": "sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==", + "dev": true, + "requires": { + "asn1.js": "^4.0.0", + "browserify-aes": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-uri": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-uri/-/parse-uri-1.0.0.tgz", + "integrity": "sha1-KHLcwi8aeXrN4Vg9igrClVLdrCA=" + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "dev": true + }, + "pbkdf2": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", + "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", + "dev": true, + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "pixi.js": { + "version": "file:node_modules/imgui-js/pixi.js/bundles/pixi.js/pixi.js-5.1.4.tgz", + "integrity": "sha512-qBtJPyfiH/b2powvEEnQoiBdoT0xQTg5LQ08CESsBJk4kFX6NE2u+KQv6WYfl5j/1pRHVvtrWhwPeJTbfp9SpQ==", + "requires": { + "@pixi/accessibility": "^5.1.4", + "@pixi/app": "^5.1.4", + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.4", + "@pixi/display": "^5.1.3", + "@pixi/extract": "^5.1.4", + "@pixi/filter-alpha": "^5.1.4", + "@pixi/filter-blur": "^5.1.4", + "@pixi/filter-color-matrix": "^5.1.4", + "@pixi/filter-displacement": "^5.1.4", + "@pixi/filter-fxaa": "^5.1.4", + "@pixi/filter-noise": "^5.1.4", + "@pixi/graphics": "^5.1.4", + "@pixi/interaction": "^5.1.4", + "@pixi/loaders": "^5.1.4", + "@pixi/math": "^5.1.0", + "@pixi/mesh": "^5.1.4", + "@pixi/mesh-extras": "^5.1.4", + "@pixi/mixin-cache-as-bitmap": "^5.1.4", + "@pixi/mixin-get-child-by-name": "^5.1.3", + "@pixi/mixin-get-global-position": "^5.1.3", + "@pixi/particles": "^5.1.4", + "@pixi/polyfill": "^5.1.0", + "@pixi/prepare": "^5.1.4", + "@pixi/runner": "^5.1.1", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.4", + "@pixi/sprite-animated": "^5.1.4", + "@pixi/sprite-tiling": "^5.1.4", + "@pixi/spritesheet": "^5.1.4", + "@pixi/text": "^5.1.4", + "@pixi/text-bitmap": "^5.1.4", + "@pixi/ticker": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "process-es6": { + "version": "0.11.6", + "resolved": "https://registry.npmjs.org/process-es6/-/process-es6-0.11.6.tgz", + "integrity": "sha1-xrs4n5qVH4K9TrFpYAEFvS/5x3g=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "resolve": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz", + "integrity": "sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "resource-loader": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/resource-loader/-/resource-loader-3.0.1.tgz", + "integrity": "sha512-fBuCRbEHdLCI1eglzQhUv9Rrdcmqkydr1r6uHE2cYHvRBrcLXeSmbE/qI/urFt8rPr/IGxir3BUwM5kUK8XoyA==", + "requires": { + "mini-signals": "^1.2.0", + "parse-uri": "^1.0.0" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "rollup": { + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-1.22.0.tgz", + "integrity": "sha512-x4l4ZrV/Mr/x/jvFTmwROdEAhbZjx16yDRTVSKWh/i4oJDuW2dVEbECT853mybYCz7BAitU8ElGlhx7dNjw3qQ==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/node": "*", + "acorn": "^7.1.0" + } + }, + "rollup-plugin-commonjs": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-commonjs/-/rollup-plugin-commonjs-10.1.0.tgz", + "integrity": "sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q==", + "dev": true, + "requires": { + "estree-walker": "^0.6.1", + "is-reference": "^1.1.2", + "magic-string": "^0.25.2", + "resolve": "^1.11.0", + "rollup-pluginutils": "^2.8.1" + } + }, + "rollup-plugin-node-builtins": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-node-builtins/-/rollup-plugin-node-builtins-2.1.2.tgz", + "integrity": "sha1-JKH+1KQyV7a2Q3HYq8bOGrFFl+k=", + "dev": true, + "requires": { + "browserify-fs": "^1.0.0", + "buffer-es6": "^4.9.2", + "crypto-browserify": "^3.11.0", + "process-es6": "^0.11.2" + } + }, + "rollup-plugin-node-resolve": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-5.2.0.tgz", + "integrity": "sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw==", + "dev": true, + "requires": { + "@types/resolve": "0.0.8", + "builtin-modules": "^3.1.0", + "is-module": "^1.0.0", + "resolve": "^1.11.1", + "rollup-pluginutils": "^2.8.1" + } + }, + "rollup-plugin-typescript2": { + "version": "0.24.3", + "resolved": "https://registry.npmjs.org/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.24.3.tgz", + "integrity": "sha512-D7yovQlhnRoz7pG/RF0ni+koxgzEShwfAGuOq6OVqKzcATHOvmUt2ePeYVdc9N0adcW1PcTzklUEM0oNWE/POw==", + "dev": true, + "requires": { + "find-cache-dir": "^3.0.0", + "fs-extra": "8.1.0", + "resolve": "1.12.0", + "rollup-pluginutils": "2.8.1", + "tslib": "1.10.0" + }, + "dependencies": { + "rollup-pluginutils": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz", + "integrity": "sha512-J5oAoysWar6GuZo0s+3bZ6sVZAC0pfqKz68De7ZgDi5z63jOVZn1uJL/+z1jeKHNbGII8kAyHF5q8LnxSX5lQg==", + "dev": true, + "requires": { + "estree-walker": "^0.6.1" + } + } + } + }, + "rollup-pluginutils": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", + "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", + "dev": true, + "requires": { + "estree-walker": "^0.6.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "semver": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-2.3.2.tgz", + "integrity": "sha1-uYSPJdbPNjMwc+ye+IVtQvEjPlI=", + "dev": true + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "sourcemap-codec": { + "version": "1.4.6", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.6.tgz", + "integrity": "sha512-1ZooVLYFxC448piVLBbtOxFcXwnymH9oUF8nRd3CuYDVvkRBxRl6pB4Mtas5a4drtL+E8LDgFkQNcgIw6tc8Hg==", + "dev": true + }, + "string-range": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/string-range/-/string-range-1.2.2.tgz", + "integrity": "sha1-qJPtNH5yKZvIO++78qaSqNI51d0=", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "tslib": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", + "dev": true + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, + "typedarray-to-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-1.0.4.tgz", + "integrity": "sha1-m7i6DoQfs/TPH+fCRenz+opf6Zw=", + "dev": true + }, + "typescript": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.6.3.tgz", + "integrity": "sha512-N7bceJL1CtRQ2RiG0AQME13ksR7DiuQh/QehubYcghzv20tnh+MQnQIuJddTmsbqYj+dztchykemz0zFzlvdQw==", + "dev": true + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "xtend": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.2.0.tgz", + "integrity": "sha1-7vax8ZjByN6vrYsXZaBNrUoBxak=", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..2a48002 --- /dev/null +++ b/package.json @@ -0,0 +1,27 @@ +{ + "name": "imgui-js-pixi", + "version": "1.0.0", + "description": "imgui bindings for PIXI renderer", + "main": "imgui_impl.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "dist": "rollup -c" + }, + "repository": { + "type": "git", + "url": "https://git.mhack.io/git/mark/imgui-js-pixi.git" + }, + "author": "Mark Bavis", + "license": "ISC", + "dependencies": { + "imgui-js": "git+https://git.mhack.io/git/mark/imgui-js.git" + }, + "devDependencies": { + "rollup": "^1.22.0", + "rollup-plugin-commonjs": "^10.1.0", + "rollup-plugin-node-builtins": "^2.1.2", + "rollup-plugin-node-resolve": "^5.2.0", + "rollup-plugin-typescript2": "^0.24.3", + "typescript": "^3.6.3" + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..583e8ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +tsconfig.tsbuildinfo +*.swp +node_modules +nohup.out +.rpt2_cache diff --git a/imgui_impl.js b/imgui_impl.js new file mode 100644 index 0000000..0f4a8ec --- /dev/null +++ b/imgui_impl.js @@ -0,0 +1,41080 @@ +'use strict'; + +Object.defineProperty(exports, '__esModule', { value: true }); + +var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +function commonjsRequire () { + throw new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs'); +} + +function unwrapExports (x) { + return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x; +} + +function createCommonjsModule(fn, module) { + return module = { exports: {} }, fn(module, module.exports), module.exports; +} + +var require$$0 = {}; + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +// resolves . and .. elements in a path array with directory names there +// must be no slashes, empty elements, or device names (c:\) in the array +// (so also no leading and trailing slashes - it does not distinguish +// relative and absolute paths) +function normalizeArray(parts, allowAboveRoot) { + // if the path tries to go above the root, `up` ends up > 0 + 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 the path is allowed to go above the root, restore leading ..s + if (allowAboveRoot) { + for (; up--; up) { + parts.unshift('..'); + } + } + + return parts; +} + +// Split a filename into [root, dir, basename, ext], unix version +// 'root' is just a slash, or nothing. +var splitPathRe = + /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; +var splitPath = function(filename) { + return splitPathRe.exec(filename).slice(1); +}; + +// path.resolve([from ...], to) +// posix version +function resolve() { + var resolvedPath = '', + resolvedAbsolute = false; + + for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { + var path = (i >= 0) ? arguments[i] : '/'; + + // Skip empty and invalid entries + if (typeof path !== 'string') { + throw new TypeError('Arguments to path.resolve must be strings'); + } else if (!path) { + continue; + } + + resolvedPath = path + '/' + resolvedPath; + resolvedAbsolute = path.charAt(0) === '/'; + } + + // At this point the path should be resolved to a full absolute path, but + // handle relative paths to be safe (might happen when process.cwd() fails) + + // Normalize the path + resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) { + return !!p; + }), !resolvedAbsolute).join('/'); + + return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; +} +// path.normalize(path) +// posix version +function normalize(path) { + var isPathAbsolute = isAbsolute(path), + trailingSlash = substr(path, -1) === '/'; + + // Normalize the path + path = normalizeArray(filter(path.split('/'), function(p) { + return !!p; + }), !isPathAbsolute).join('/'); + + if (!path && !isPathAbsolute) { + path = '.'; + } + if (path && trailingSlash) { + path += '/'; + } + + return (isPathAbsolute ? '/' : '') + path; +} +// posix version +function isAbsolute(path) { + return path.charAt(0) === '/'; +} + +// posix version +function join() { + var paths = Array.prototype.slice.call(arguments, 0); + return normalize(filter(paths, function(p, index) { + if (typeof p !== 'string') { + throw new TypeError('Arguments to path.join must be strings'); + } + return p; + }).join('/')); +} + + +// path.relative(from, to) +// posix version +function relative(from, to) { + from = resolve(from).substr(1); + to = 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('/'); +} + +var sep = '/'; +var delimiter = ':'; + +function dirname(path) { + var result = splitPath(path), + root = result[0], + dir = result[1]; + + if (!root && !dir) { + // No dirname whatsoever + return '.'; + } + + if (dir) { + // It has a dirname, strip trailing slash + dir = dir.substr(0, dir.length - 1); + } + + return root + dir; +} + +function basename(path, ext) { + var f = splitPath(path)[2]; + // TODO: make this comparison case-insensitive on windows? + if (ext && f.substr(-1 * ext.length) === ext) { + f = f.substr(0, f.length - ext.length); + } + return f; +} + + +function extname(path) { + return splitPath(path)[3]; +} +var require$$1 = { + extname: extname, + basename: basename, + dirname: dirname, + sep: sep, + delimiter: delimiter, + relative: relative, + join: join, + isAbsolute: isAbsolute, + normalize: normalize, + resolve: resolve +}; +function filter (xs, f) { + if (xs.filter) return xs.filter(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + if (f(xs[i], i, xs)) res.push(xs[i]); + } + return res; +} + +// String.prototype.substr - negative index don't work in IE8 +var substr = 'ab'.substr(-1) === 'b' ? + function (str, start, len) { return str.substr(start, len) } : + function (str, start, len) { + if (start < 0) start = str.length + start; + return str.substr(start, len); + } +; + +var bindImgui = createCommonjsModule(function (module, exports) { +var Module = (function() { + var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; + return ( +function(Module) { + Module = Module || {}; + +var Module=typeof Module!=="undefined"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key];}}Module["arguments"]=[];Module["thisProgram"]="./this.program";Module["quit"]=function(status,toThrow){throw toThrow};Module["preRun"]=[];Module["postRun"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window==="object";ENVIRONMENT_IS_WORKER=typeof importScripts==="function";ENVIRONMENT_HAS_NODE=typeof process==="object"&&typeof commonjsRequire==="function";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}else{return scriptDirectory+path}}if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+"/";var nodeFS;var nodePath;Module["read"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require$$0;if(!nodePath)nodePath=require$$1;filename=nodePath["normalize"](filename);ret=nodeFS["readFileSync"](filename);}return binary?ret:ret.toString()};Module["readBinary"]=function readBinary(filename){var ret=Module["read"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret);}assert(ret.buffer);return ret};if(process["argv"].length>1){Module["thisProgram"]=process["argv"][1].replace(/\\/g,"/");}Module["arguments"]=process["argv"].slice(2);process["on"]("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process["on"]("unhandledRejection",abort);Module["quit"]=function(status){process["exit"](status);};Module["inspect"]=function(){return "[Emscripten Module object]"};}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){Module["read"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)};}Module["readBinary"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer==="function"){return new Uint8Array(readbuffer(f))}data=read(f,"binary");assert(typeof data==="object");return data};if(typeof scriptArgs!="undefined"){Module["arguments"]=scriptArgs;}else if(typeof arguments!="undefined"){Module["arguments"]=arguments;}if(typeof quit==="function"){Module["quit"]=function(status){quit(status);};}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href;}else if(document.currentScript){scriptDirectory=document.currentScript.src;}if(_scriptDir){scriptDirectory=_scriptDir;}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf("/")+1);}else{scriptDirectory="";}Module["read"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module["readBinary"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}};}Module["readAsync"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror();};xhr.onerror=onerror;xhr.send(null);};Module["setWindowTitle"]=function(title){document.title=title;};}var out=Module["print"]||(typeof console!=="undefined"?console.log.bind(console):typeof print!=="undefined"?print:null);var err=Module["printErr"]||(typeof printErr!=="undefined"?printErr:typeof console!=="undefined"&&console.warn.bind(console)||out);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key];}}moduleOverrides=undefined;var asm2wasmImports={"f64-rem":function(x,y){return x%y},"debugger":function(){debugger}};var functionPointers=new Array(0);var setTempRet0=function(value){};if(typeof WebAssembly!=="object"){err("no native wasm support detected");}var wasmMemory;var wasmTable;var ABORT=false;function assert(condition,text){if(!condition){abort("Assertion failed: "+text);}}var UTF8Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf8"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str="";while(idx>10,56320|ch&1023);}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023;}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u;}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63;}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4;}return len}var UTF16Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf-16le"):undefined;var WASM_PAGE_SIZE=65536;var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferViews(){Module["HEAP8"]=HEAP8=new Int8Array(buffer);Module["HEAP16"]=HEAP16=new Int16Array(buffer);Module["HEAP32"]=HEAP32=new Int32Array(buffer);Module["HEAPU8"]=HEAPU8=new Uint8Array(buffer);Module["HEAPU16"]=HEAPU16=new Uint16Array(buffer);Module["HEAPU32"]=HEAPU32=new Uint32Array(buffer);Module["HEAPF32"]=HEAPF32=new Float32Array(buffer);Module["HEAPF64"]=HEAPF64=new Float64Array(buffer);}var DYNAMIC_BASE=5315584,DYNAMICTOP_PTR=72672;var TOTAL_STACK=5242880;var INITIAL_TOTAL_MEMORY=Module["TOTAL_MEMORY"]||16777216;if(INITIAL_TOTAL_MEMORY>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback();continue}var func=callback.func;if(typeof func==="number"){if(callback.arg===undefined){Module["dynCall_v"](func);}else{Module["dynCall_vi"](func,callback.arg);}}else{func(callback.arg===undefined?null:callback.arg);}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;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 ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__);}function preMain(){callRuntimeCallbacks(__ATMAIN__);}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 addOnPostRun(cb){__ATPOSTRUN__.unshift(cb);}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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();}}}Module["preloadedImages"]={};Module["preloadedAudios"]={};var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile="data:application/octet-stream;base64,AGFzbQEAAAAB2AyxAWACf38Bf2ACf38AYAJ8fAF8YAF/AX9gAX8AYAN/f38Bf2AEf39/fwBgA39/fwBgAn9/AX1gBH9/f38Bf2AEf399fwBgAn99AX9gA399fQF/YAZ9fX1/f38AYAR/fX9/AGAFf39/fX8AYAABfGADf31/AGAFf39/f38Bf2AIf39/f39/f38Bf2AHf39/f39/fwF/YAZ/f39/f38Bf2AGf398fH9/AX9gCX9/f39/f39/fwF/YAN9f38AYAl/f39/f39/f38AYAZ/f39/f38AYAJ/fQBgAX8BfWAAAX9gAn19AGABfQBgAAF9YAAAYAN/f30Bf2AGf39/fX9/AGAIf399fX1/f38AYAR/fX99AX9gBn9/fX9/fwBgBX9/f399AGAHf39/f31/fQBgBn9/f399fwBgB39/f39/f38AYAd/f39/f399AGAGf39/f399AGAFf39/f38AYAZ/f31/f30AYAV/f31/fwBgCH9/fX9/f31/AGALf39/f39/f39/f38AYAl/f39/f39/fX8AYAh/f39/f399fwBgBH9/f30AYAZ/f319fX8AYAp/f39/f39/f39/AGADf399AGAGf3x/f39/AX9gA39+fwF+YAF/AXxgA39/fwF9YAR/f319AX9gCH9/fX19f39/AX9gBH9/fX8Bf2AFf399f30Bf2AHf39/fHx/fwF/YAR/f399AX9gBX9/f31/AX9gBn9/f31/fwF/YAp/f39/f39/f39/AX9gA399fQBgB399fX1/f38AYAd/f399fX1/AGAHf39/fX9/fQBgB39/f31/f38AYAl/f399f39/fX8AYAd/f39/f31/AGAIf39/f399f30AYAh/f39/f39/fQBgCH9/f39/f39/AGAKf39/f39/f399fwBgDH9/f39/f39/f39/fwBgDX9/f39/f39/f39/f38AYAN/f3wAYAN/f38BfGABfQF9YAJ9fQF9YAV/fX19fQBgBH9/fX0AYAJ/fQF9YAR9fX19AX9gBX9/f319AGADfX19AX1gAn19AX9gBH19fX0BfWALf319fX19fX19fX8AYAl/f31/f39/fX8AYAp/f31/f39/f31/AGAFf31/f30Bf2AIf399fX9/f38AYAt/f319fX19fX19fQBgCH9/f39/fX1/AGAHf39/fX1/fwBgBX9/fX9/AX9gCH9/f399fX9/AGAHf39/fX19fQBgCn9/fX19fX19fX8AYAx/f319fX19fX19fX8AYAd/fX19fX19AGAEf31/fwF/YAh/f399f39/fQF/YAV/fX9/fwF/YAV/fX5+fwF/YAZ/fX19f30Bf2AGf318fH99AX9gAn98AXxgAn9+AX5gCX9/f399f39/fQF/YAd/f319fX99AX9gCX9/f319fX9/fQF/YAZ/f31/f38Bf2AIf39/fX9/f38Bf2AKf39/f39/f31/fwF/YAl/f39/f399f38Bf2AJf39/fn5/fX9/AX9gCX9/f319f31/fwF/YAl/f398fH99f38Bf2AFfHx8fX0BfWADfHx9AXxgA3x8fAF8YAV9fX19fQF9YAN+fn4BfWADfn5+AX5gBX5+fn19AX1gBX9/f319AX1gB39/f39/f30Bf2AIf39/f39/f30Bf2AGf399fX99AX9gB39/f319f30Bf2AGf399fX9/AX9gB39/f31/fX8AYAl/f39/f399fX8AYAd/f39/fX1/AGAEf319fQF9YAZ/f39/f30Bf2AHf399f39/fQF/YAJ/fgBgAn9/AX5gA35/fwF/YAJ+fwF/YAJ8fwF8YAV/f39/fwF8YAZ/f39/f38BfGACfX8BfWABfAF9YAJ9fwF/YAN/f34AYAF/AX5gAn9/AXxgBH9/f38BfWAHf398f39/fwF/YAV/f399fQF/YAl/f399fX1/f38Bf2AGf39/fX99AX9gCH9/f398fH9/AX9gBX9/f399AX9gBn9/f399fwF/YAd/f39/fX9/AX9gC39/f39/f39/f39/AX9gCX9/f319fX9/fwBgCH9/f399fX1/AGAHf39/f31/fwBgCH9/f399f399AGAIf39/f31/f38AYAp/f39/fX9/f31/AGAJf39/f39/fX99AGAJf39/f39/f399AGALf39/f39/f39/fX8AAvQDNwNlbnYBYgA2A2VudgFjAE4DZW52AWQAGgNlbnYBZQAEA2VudgFmAAADZW52AWcAUQNlbnYBaABTA2VudgFpAAcDZW52AWoAAANlbnYBawAtA2VudgFsACEDZW52AW0ABwNlbnYBbgAAA2VudgFvAAYDZW52AXAAAANlbnYBcQAaA2VudgFyAAQDZW52AXMABANlbnYBdAAEA2VudgF1AAAI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/AYLC0H89gEoAgAhASAAQZypBCgCACABQf8BcUHyBmoRAQALWgEDfyMEIQIjBEEQaiQEIAJBmKkEKAIAIgNBsCtqIABBBHRqIgApAgA3AgAgAiAAKQIINwIIIAIgAioCDCADQZAqaioCACABlJQ4AgwgAhChAyEEIAIkBCAECxYAIAAgASkCADcCACAAIAIpAgA3AggLBgBBNBADCwwAIAAgASAAIAFdGwvGAwEDfyACQYDAAE4EQCAAIAEgAhAjGiAADwsgACEEIAAgAmohAyAAQQNxIAFBA3FGBEADQCAAQQNxBEAgAkUEQCAEDwsgACABLAAAOgAAIABBAWohACABQQFqIQEgAkEBayECDAELCyADQXxxIgJBQGohBQNAIAAgBUwEQCAAIAEoAgA2AgAgACABKAIENgIEIAAgASgCCDYCCCAAIAEoAgw2AgwgACABKAIQNgIQIAAgASgCFDYCFCAAIAEoAhg2AhggACABKAIcNgIcIAAgASgCIDYCICAAIAEoAiQ2AiQgACABKAIoNgIoIAAgASgCLDYCLCAAIAEoAjA2AjAgACABKAI0NgI0IAAgASgCODYCOCAAIAEoAjw2AjwgAEFAayEAIAFBQGshAQwBCwsDQCAAIAJIBEAgACABKAIANgIAIABBBGohACABQQRqIQEMAQsLBSADQQRrIQIDQCAAIAJIBEAgACABLAAAOgAAIAAgASwAAToAASAAIAEsAAI6AAIgACABLAADOgADIABBBGohACABQQRqIQEMAQsLCwNAIAAgA0gEQCAAIAEsAAA6AAAgAEEBaiEAIAFBAWohAQwBCwsgBAsSACAAQbT4ATYCACAAQQRqED4LKgAgACgCEBBbBEBBACEABSAAQQRqIgAsAAtBAEgEQCAAKAIAIQALCyAACxIAIAAgARDpECAAQcD4ATYCAAsQACAALQABIAAtAABBCHRyCyoBAX8jBCEBIwRBEGokBCABIAA2AgBBBBA/IgAgASgCADYCACABJAQgAAslAQF/IAEoAgAhAiAAQgA3AgAgAEEANgIIIAAgAUEEaiACEJMBCwgAQQwQA0EACwcAIABBBGoLJwEBfyAAKAIIIgEEQCAAQQA2AgQgAEEANgIAIAEQQSAAQQA2AggLCw0AIAAoAgggAUECdGoLFgAgACABKgIAIAKUIAEqAgQgApQQMgspAQJ/An8jBCEDIwRBEGokBCAAQQFBgP4BQcvWAkGEASABEAIgAwskBAs+AQF/QZipBCgCACIBBEAgASABKAL8BkEBajYC/AYLQfj2ASgCACEBIABBnKkEKAIAIAFB/wBxQbQBahEAAAuJDgEJfyAARQRADwtBrKoEKAIAIQQgAEF4aiIBIABBfGooAgAiAEF4cSIDaiEFIABBAXEEfyABIQIgAwUCfyABKAIAIQIgAEEDcUUEQA8LIAEgAmsiACAESQRADwsgAiADaiEDQbCqBCgCACAARgRAIAUoAgQiAUEDcUEDRwRAIAAhASAAIQIgAwwCC0GkqgQgAzYCACAFIAFBfnE2AgQgACADQQFyNgIEIAAgA2ogAzYCAA8LIAJBA3YhBCACQYACSQRAIAAoAggiASAAKAIMIgJGBEBBnKoEQZyqBCgCAEEBIAR0QX9zcTYCAAUgASACNgIMIAIgATYCCAsgACEBIAAhAiADDAELIAAoAhghByAAKAIMIgEgAEYEQAJAIABBEGoiAkEEaiIEKAIAIgEEQCAEIQIFIAIoAgAiAUUEQEEAIQEMAgsLA0ACQCABQRRqIgQoAgAiBkUEQCABQRBqIgQoAgAiBkUNAQsgBCECIAYhAQwBCwsgAkEANgIACwUgACgCCCICIAE2AgwgASACNgIICyAHBH8gACgCHCICQQJ0QcysBGoiBCgCACAARgRAIAQgATYCACABRQRAQaCqBEGgqgQoAgBBASACdEF/c3E2AgAgACEBIAAhAiADDAMLBSAHQRBqIgIgB0EUaiACKAIAIABGGyABNgIAIAFFBEAgACEBIAAhAiADDAMLCyABIAc2AhggACgCECICBEAgASACNgIQIAIgATYCGAsgACgCFCICBEAgASACNgIUIAIgATYCGAsgACEBIAAhAiADBSAAIQEgACECIAMLCwshACABIAVPBEAPCyAFKAIEIghBAXFFBEAPCyAIQQJxBEAgBSAIQX5xNgIEIAIgAEEBcjYCBCAAIAFqIAA2AgAgACEDBUG0qgQoAgAgBUYEQEGoqgRBqKoEKAIAIABqIgA2AgBBtKoEIAI2AgAgAiAAQQFyNgIEIAJBsKoEKAIARwRADwtBsKoEQQA2AgBBpKoEQQA2AgAPC0GwqgQoAgAgBUYEQEGkqgRBpKoEKAIAIABqIgA2AgBBsKoEIAE2AgAgAiAAQQFyNgIEIAAgAWogADYCAA8LIAhBA3YhBiAIQYACSQRAIAUoAggiAyAFKAIMIgRGBEBBnKoEQZyqBCgCAEEBIAZ0QX9zcTYCAAUgAyAENgIMIAQgAzYCCAsFAkAgBSgCGCEJIAUoAgwiAyAFRgRAAkAgBUEQaiIEQQRqIgYoAgAiAwRAIAYhBAUgBCgCACIDRQRAQQAhAwwCCwsDQAJAIANBFGoiBigCACIHRQRAIANBEGoiBigCACIHRQ0BCyAGIQQgByEDDAELCyAEQQA2AgALBSAFKAIIIgQgAzYCDCADIAQ2AggLIAkEQCAFKAIcIgRBAnRBzKwEaiIGKAIAIAVGBEAgBiADNgIAIANFBEBBoKoEQaCqBCgCAEEBIAR0QX9zcTYCAAwDCwUgCUEQaiIEIAlBFGogBCgCACAFRhsgAzYCACADRQ0CCyADIAk2AhggBSgCECIEBEAgAyAENgIQIAQgAzYCGAsgBSgCFCIEBEAgAyAENgIUIAQgAzYCGAsLCwsgAiAIQXhxIABqIgNBAXI2AgQgASADaiADNgIAQbCqBCgCACACRgRAQaSqBCADNgIADwsLIANBA3YhASADQYACSQRAIAFBA3RBxKoEaiEAQZyqBCgCACIDQQEgAXQiAXEEfyAAQQhqIgEhAyABKAIABUGcqgQgASADcjYCACAAQQhqIQMgAAshASADIAI2AgAgASACNgIMIAIgATYCCCACIAA2AgwPCyADQQh2IgAEfyADQf///wdLBH9BHwUgACAAQYD+P2pBEHZBCHEiBHQiAUGA4B9qQRB2QQRxIQAgASAAdCIGQYCAD2pBEHZBAnEhASADQQ4gACAEciABcmsgBiABdEEPdmoiAEEHanZBAXEgAEEBdHILBUEACyIBQQJ0QcysBGohACACIAE2AhwgAkEANgIUIAJBADYCEEGgqgQoAgAiBEEBIAF0IgZxBEACQCAAKAIAIgAoAgRBeHEgA0YEQCAAIQEFAkAgA0EAQRkgAUEBdmsgAUEfRht0IQQDQCAAQRBqIARBH3ZBAnRqIgYoAgAiAQRAIARBAXQhBCABKAIEQXhxIANGDQIgASEADAELCyAGIAI2AgAgAiAANgIYIAIgAjYCDCACIAI2AggMAgsLIAEoAggiACACNgIMIAEgAjYCCCACIAA2AgggAiABNgIMIAJBADYCGAsFQaCqBCAEIAZyNgIAIAAgAjYCACACIAA2AhggAiACNgIMIAIgAjYCCAtBvKoEQbyqBCgCAEF/aiIANgIAIAAEQA8LQeStBCEAA0AgACgCACIBQQhqIQAgAQ0AC0G8qgRBfzYCAAsNACAAKAIIIAFBHGxqCw0AIAFBAnQgAGoqAgALMQEBfyMEIQMjBEEQaiQEIAEoAgAhASADIAIQdyAAIAEgAygCABAIEF8gAxAxIAMkBAshACAAKAIEIgAEfyAAIABBAm1qBUEICyIAIAEgACABShsLzwECBH8BfgJAAkAgACkDcCIFQgBSBEAgACkDeCAFWQ0BCyAAEPsLIgFBAEgNACAAKAIIIQICQAJAIAApA3AiBUIAUQRAIAIhAwwBBSACIQMgBSAAKQN4fSIFIAIgACgCBCIEa6xVDQEgACAEIAWnQX9qajYCaAsMAQsgACACNgJoCyADBEAgACAAKQN4IANBAWogACgCBCIAa6x8NwN4BSAAKAIEIQALIABBf2oiAC0AACABRwRAIAAgAToAAAsMAQsgAEEANgJoQX8hAQsgAQsgAEMAAAAAQwAAgD8gACAAQwAAgD9eGyAAQwAAAABdGwsKACAAKAIAQQJGC44BAQN/AkACQCAAIgJBA3FFDQAgAiEBA0ACQCAALAAARQRAIAEhAAwBCyAAQQFqIgAiAUEDcQ0BDAILCwwBCwNAIABBBGohASAAKAIAIgNBgIGChHhxQYCBgoR4cyADQf/9+3dqcUUEQCABIQAMAQsLIANB/wFxBEADQCAAQQFqIgAsAAANAAsLCyAAIAJrCxUAIAAgASACEDIgAEEIaiADIAQQMgsbACABQQAgAEHAA2oQcCgCABC7ASIAELQCIAALCQAgACABNgIACxAAQZipBCgCAEGUM2ooAgAL4gEBAn9BmKkEKAIAIgRBlDNqKAIAIQMgAQRAAkAgAyADKAK4AiADKALAAnI2AsACIARBpDVqKAIAIAFHBEAgBEGANmosAABFDQELIARBoDVqKAIAIgQoAvgFIAMoAvgFRgRAIAMgBEcEQCAEKAIIIAMoAghyQYCAgARxRQ0CCyADIAIgACACGyABEOYQCwsLIAMgATYCjAIgAyAAKQIANwKUAiADIAApAgg3ApwCIANBADYCkAIgACABEK0FBH9BAAUgACAAQQhqQQEQhQMEQCADIAMoApACQQFyNgKQAgtBAQsLBgAgAKiyCw0AIABB1ABqIAEQmgILFAAgASACIAAgACACXhsgACABXRsLEQBBACAAQQRqIAAoAggQWxsLIQAgAEP//39/Q///f38QMiAAQQhqQ///f/9D//9//xAyCxAAIAAoAggiAARAIAAQQQsLFwAgAEEANgIEIABBADYCACAAQQA2AggLIQEBfyMEIQIjBEEQaiQEIAIgATYCACAAIAIQ2gIgAiQEC5gCAQR/IAAgAmohBCABQf8BcSEDIAJBwwBOBEADQCAAQQNxBEAgACADOgAAIABBAWohAAwBCwsgA0EIdCADciADQRB0ciADQRh0ciEBIARBfHEiBUFAaiEGA0AgACAGTARAIAAgATYCACAAIAE2AgQgACABNgIIIAAgATYCDCAAIAE2AhAgACABNgIUIAAgATYCGCAAIAE2AhwgACABNgIgIAAgATYCJCAAIAE2AiggACABNgIsIAAgATYCMCAAIAE2AjQgACABNgI4IAAgATYCPCAAQUBrIQAMAQsLA0AgACAFSARAIAAgATYCACAAQQRqIQAMAQsLCwNAIAAgBEgEQCAAIAM6AAAgAEEBaiEADAELCyAEIAJrC58BAQN/EDwiAiwAf0UEQEGYqQQoAgAhBCABQwAAAABdIQMgAEMAAAAAXARAIAIqArQDQwAAAAAgASADGyACKgIMIAIqAliTIACSkpIhACACKgK4AyEBBSADBEAgBEHUKmoqAgAhAQsgAioC0AEhAAsgAiABIACSOALIASACIAIoAtQBNgLMASACIAIpAvQBNwLoASACIAIoAvwBNgLwAQsLqwECA38BfSMEIQUjBEEQaiQEQZipBCgCACEGIAMEQCABIAIQkAEhAgsgBSEDIAZBsDFqKAIAIQcgBkG0MWoqAgAhCCABIAJGBEAgAEMAAAAAIAgQMgUgAyAHIAhD//9/fyAEIAEgAkEAEJoDIAMqAgAiBEMAAAAAXgRAIAMgBCAIIAcqAgCVkyIEOAIACyADIARDMzNzP5KosjgCACAAIAMpAwA3AgALIAUkBAsnAEGYqQQoAgBBNGogAEECdGooAgAiAEF/SgR/IAAgARD2AgVBAAsLNQECfyMEIQMjBEEQaiQEAn8gACgCACEEIAMgARB3IAQLIAMoAgAgAigCABALIAMQMSADJAQL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KAIIRgRAIAEQ4QELIAEgACABKAIAEPIFIgI2AgAgASACNgIIIAAgARCCAQwFCyABEOEBIAFBADYCCCABQQA2AgAgAUEAOgAPDAQLIAEQ4QEgASAAKAIsIgI2AgggASACNgIAIAFBADoADwwDCyAAKAIsIQQgACABEIIBIAEQ4QEgASwAEARAIAEgBDYCACAEIQIFIAEoAgAiAiAESARAA0ACQAJ/IAAgAhDiAUH//wNxQQpGIQwgASgCACECIAwLDQAgASACQQFqIgI2AgAgAiAESA0BCwsLCyABIAI2AgggAUEAOgAPDAILQQMhAwwBCyAFQYCADEgEQCAFQY2ABGsEQEEDIQMMAgsgASgCBCABKAIIRgRAIAEgACABKAIAEPIFNgIAIAAgARCCAQUgACABELgECwwBCwJAAkACQCAFQYCADGsOAgIAAQsgARDhASABIAEoAghBAWo2AgggACABEIIBIAEgASgCCDYCACABQQA6AA8MAgtBAyEDDAELIAAgARCCASABEOEBIAEoAggiAkEASgRAIAEgAkF/aiICNgIICyABIAI2AgAgAUEAOgAPCyADQQNGBEBBACAFIAVB//8DShsiAkEASgRAAkAgBiACOwEAIAJBCkYEQCABLAAQDQELAkACQCABLAAMRQ0AIAEoAgQgASgCCEcNACABKAIAIgIgACgCLE4NACAAIQUgAUEYaiACQQFBARC5BCIEBEAgBCAFIAIQ4gE7AQALIAAgASgCAEEBENkDIAAgASgCACAGQQEQkgMEQCABIAEoAgBBAWo2AgAgAUEAOgAPCwwBCyAAIAEQkwMgACABKAIAIAZBARCSAwRAIAEgASgCAEEBEPcFIAEgASgCAEEBajYCACABQQA6AA8LCwsLBSADQckARgRAIAEoAgQgASgCCEYEQCABKAIAIgIgACgCLEgEQCAAIAEgAkEBENoDCwUgACABEJMDCyABQQA6AA8FIANBzgBGBEAgASgCBCABKAIIRgRAIAAgARCCASABKAIAIgJBAEoEQCAAIAEgAkF/akEBENoDIAEgASgCAEF/ajYCAAsFIAAgARCTAwsgAUEAOgAPCwsLIAkkBAtIAQF/IAFBGGogAiADQQAQuQQiBEEARyADQQBKcQRAQQAhAQNAIAFBAXQgBGogACABIAJqEOIBOwEAIAFBAWoiASADRw0ACwsLkwEBAn8gAEGAHGpB4wA7AQAgAEGIHGpB5wc2AgAgAEH+G2oiAi4BAEHjAEYEQCAAEPYFCyABQecHSgR/IAJBADsBACAAQYQcakEANgIAQQAFIAEgAEGEHGoiAygCAGpB5wdKBEADQCAAEPYFIAEgAygCAGpB5wdKDQALCyACIAIuAQAiAUEBajsBACABQQR0IABqCwtcACAAIAEQggEgACABEJMDIAAgASgCACACIAMQkgMEQCABIAEoAgAgAxD3BSABIAMgASgCAGo2AgAgAUEAOgAPBSABQZYcaiIALgEAIgEEQCAAIAFBf2o7AQALCwtNAQJ/QQEhAwNAAkAgACECA0ACQCACQQFqIQACQCACLAAADgsDAAAAAAAAAAAAAQALIAAhAgwBCwsgA0EBaiEDDAELCyABIAI2AgAgAwteAQJ/IwQhBCMEQSBqJAQgBCEFIAEsABAEQCAFIABBABD2ASAFKgIMIQMLIAEoAgQgASgCCEYEQCABIAEoAgA2AgQLIAEgACACIAMQ9QUiADYCCCABIAA2AgAgBCQEC1QBAn8jBCEEIwRBIGokBCAEIQUgASwAEARAIAUgAEEAEPYBIAUqAgwhAwsgASAAIAIgAxD1BSIANgIAIAEgADYCBCABIAA2AgggAUEAOgAPIAQkBAs9AQF/IAAQ2AIiAiwAAEElRgR/IAIQ5QgiACwAAAR/IAEgAiAAQQFqIAJrQSAQuAEQ9gQgAQUgAgsFIAALC4ABAgJ/AX4gAEEBaiAAIAAsAABBLUYiAxsiAEEBaiAAIAAsAABBK0YbIgAsAAAiAkFQakEYdEEYdUH/AXFBCkgEQANAIAJBUGqsIARCCn58IQQgAEEBaiIALAAAIgJBUGpBGHRBGHVB/wFxQQpIDQALCyABQgAgBH0gBCADGzcDAAvNBgMKfwF9BHwjBCELIwRBEGokBEGYqQQoAgAhBiACIANiIglBAXMiDCABQwAAAABcciADIAKhIhFEAAAA4P//70djIg1BAXNyRQRAIBEgBkH01wBqKgIAu6K2IQELIAshCAJAAkAgBkHgM2oiCigCACIHQQFHDQACQEEAEJUBBEAgBkHECGoqAgBDAACAP14EQCAGQYAHakEAEFYiECAQQwrXIzyUIAYsAIoCRRsiECAQQwAAIEGUIAYsAIkCRRshEAwCCwsgCigCACEHDAELDAELIAdBAkYEQCAEEOMDIQcgCEEDQQVDzczMPUMAACBBEJIBIAhBABBWIRAgASAHENkCEDkhAQsLIBAgAZQhAQJ/IAZBxDNqLAAAIQ4gCQR/IAFDAAAAAF0gACsDACISIAJlcSABQwAAAABeIBIgA2ZxcgVBAAshCiAOC0EARyEIAn8CQCANIAVDAACAP1wgCXFxIgkEfyABQwAAAABdBEAgBkHw1wBqIgcqAgBDAAAAAF4NAgsgAUMAAAAAXgR/IAZB8NcAaioCAEMAAAAAXQVBAAsFQQALIAggCnJyBEAgBkHw1wBqIQcMAQsgAUMAAAAAXARAIAZB8NcAaiIIIAEgCCoCAJI4AgAgBkHs1wBqIgdBAToAAAVBACAGQezXAGoiBywAAEUNAhoLIAArAwAhEiAJBEAgBCARIBIgAqEgEaNEAAAAAAAA8D8gBbujIhMQ4gMiFCAGQfDXAGoiBCoCALsgEaOgthBaIAUQgwG7oiACoBDBBCESIAdBADoAACASIAKhIBGjIBMQ4gMgFKG2IQUgBCAEKgIAIAWTOAIAIAArAwAhEwUgBCASIAZB8NcAaiIEKgIAu6AQwQQhEiAHQQA6AAAgBCAEKgIAIBIgACsDACITobaTOAIACyATRAAAAAAAAAAAIBIgEkQAAAAAAAAAAGEbIhFhIAxyRQRAIAIgESARIBNkRSABQwAAAABdRXJBAXJFIBEgAmNyGyICIANkBHwgAwUgAiADIAIgE2NFIAFDAAAAAF5FckEBchsLIRELIBMgEWEEf0EABSAAIBE5AwBBAQsMAQsgB0MAAAAAOAIAIAZB7NcAakEAOgAAQQALIQ8gCyQEIA8LpwYCCn8EfSMEIQsjBEEQaiQEQZipBCgCACEGIAIgA1wiCUEBcyIMIAFDAAAAAFxyIAMgApMiEUP//39/XSINQQFzckUEQCARIAZB9NcAaioCAJQhAQsgCyEIAkACQCAGQeAzaiIKKAIAIgdBAUcNAAJAQQAQlQEEQCAGQcQIaioCAEMAAIA/XgRAIAZBgAdqQQAQViIQIBBDCtcjPJQgBiwAigJFGyIQIBBDAAAgQZQgBiwAiQJFGyEQDAILCyAKKAIAIQcMAQsMAQsgB0ECRgRAIAQQ4wMhByAIQQNBBUPNzMw9QwAAIEEQkgEgCEEAEFYhECABIAcQ2QIQOSEBCwsgECABlCEQAn8gBkHEM2osAAAhDiAJBH8gEEMAAAAAXSAAKgIAIgEgAl9xIBBDAAAAAF4gASADYHFyBUEACyEKIA4LQQBHIQgCfwJAIA0gBUMAAIA/XCAJcXEiCQR/IBBDAAAAAF0EQCAGQfDXAGoiByoCAEMAAAAAXg0CCyAQQwAAAABeBH8gBkHw1wBqKgIAQwAAAABdBUEACwVBAAsgCCAKcnIEQCAGQfDXAGohBwwBCyAQQwAAAABcBEAgBkHw1wBqIgggECAIKgIAkjgCACAGQezXAGoiB0EBOgAABUEAIAZB7NcAaiIHLAAARQ0CGgsgACoCACEBIAkEfSAEIBEgASACkyARlUMAAIA/IAWVIhIQgwEiEyAGQfDXAGoiBCoCACARlZIQWiAFEIMBlCACkhDABCEBIAdBADoAACABIAKTIBGVIBIQgwEgE5MFIAQgASAGQfDXAGoiBCoCAJIQwAQhASAHQQA6AAAgASAAKgIAkwshBSAEIAQqAgAgBZM4AgAgACoCACIFQwAAAAAgASABQwAAAABbGyIBWyAMcgRAIAEhAgUCQCACIAEgASAFXkUgEEMAAAAAXUVyQQFyRSABIAJdchsiAiADXkUEQCACIAVdRSAQQwAAAABeRXJBAXINAQsgAyECCwsgBSACWwR/QQAFIAAgAjgCAEEBCwwBCyAHQwAAAAA4AgAgBkHs1wBqQQA6AABBAAshDyALJAQgDwu3BAMIfwJ+AX0jBCEIIwRBEGokBEGYqQQoAgAhBSACIANSIglBAXMiCiABQwAAAABcckUEQCAFQfTXAGoqAgAgAyACfbWUIQELIAghBgJAAkAgBUHgM2oiCygCACIHQQFHDQACQEEAEJUBBEAgBUHECGoqAgBDAACAP14EQCAFQYAHakEAEFYiDyAPQwrXIzyUIAUsAIoCRRsiDyAPQwAAIEGUIAUsAIkCRRshDwwCCwsgCygCACEHDAELDAELIAdBAkYEQCAGQQNBBUPNzMw9QwAAIEEQkgEgBkEAEFYhDyABQQAQ2QIQOSEBCwsgDyABlCEBIAVBxDNqLAAAQQBHIQYCfwJAIAkEfyAAKQMAIg0gAlggAUMAAAAAXXEgDSADWiABQwAAAABecXIFQQALIAZyBEAgBUHw1wBqIQAMAQsgAUMAAAAAXARAIAVB8NcAaiIGIAEgBioCAJI4AgAgBUHs1wBqIgdBAToAAAVBACAFQezXAGoiBywAAEUNAhoLIAQgACkDACAFQfDXAGoiBCoCAK98EOEDIQ0gB0EAOgAAIAQgBCoCACANIAApAwAiDn20kzgCACANIA5RIApyRQRAIAIgDSABQwAAAABdRSANIA5YckUgDSACVHIbIgIgA1gEfiACIAMgAUMAAAAAXkUgAiAOWnIbBSADCyENCyANIA5RBH9BAAUgACANNwMAQQELDAELIABDAAAAADgCACAFQezXAGpBADoAAEEACyEMIAgkBCAMC7cEAwh/An4BfSMEIQgjBEEQaiQEQZipBCgCACEFIAIgA1IiCUEBcyIKIAFDAAAAAFxyRQRAIAVB9NcAaioCACADIAJ9tJQhAQsgCCEGAkACQCAFQeAzaiILKAIAIgdBAUcNAAJAQQAQlQEEQCAFQcQIaioCAEMAAIA/XgRAIAVBgAdqQQAQViIPIA9DCtcjPJQgBSwAigJFGyIPIA9DAAAgQZQgBSwAiQJFGyEPDAILCyALKAIAIQcMAQsMAQsgB0ECRgRAIAZBA0EFQ83MzD1DAAAgQRCSASAGQQAQViEPIAFBABDZAhA5IQELCyAPIAGUIQEgBUHEM2osAABBAEchBgJ/AkAgCQR/IAApAwAiDSACVyABQwAAAABdcSANIANZIAFDAAAAAF5xcgVBAAsgBnIEQCAFQfDXAGohAAwBCyABQwAAAABcBEAgBUHw1wBqIgYgASAGKgIAkjgCACAFQezXAGoiB0EBOgAABUEAIAVB7NcAaiIHLAAARQ0CGgsgBCAAKQMAIAVB8NcAaiIEKgIArnwQ4QMhDSAHQQA6AAAgBCAEKgIAIA0gACkDACIOfbSTOAIAIA0gDlEgCnJFBEAgAiANIAFDAAAAAF1FIA0gDldyRSANIAJTchsiAiADVwR+IAIgAyABQwAAAABeRSACIA5ZchsFIAMLIQ0LIA0gDlEEf0EABSAAIA03AwBBAQsMAQsgAEMAAAAAOAIAIAVB7NcAakEAOgAAQQALIQwgCCQEIAwLtAQCCH8BfSMEIQgjBEEQaiQEQZipBCgCACEGIAIgA0ciCUEBcyIKIAFDAAAAAFxyRQRAIAZB9NcAaioCACADIAJrs5QhAQsgCCEFAkACQCAGQeAzaiILKAIAIgdBAUcNAAJAQQAQlQEEQCAGQcQIaioCAEMAAIA/XgRAIAZBgAdqQQAQViINIA1DCtcjPJQgBiwAigJFGyINIA1DAAAgQZQgBiwAiQJFGyENDAILCyALKAIAIQcMAQsMAQsgB0ECRgRAIAVBA0EFQ83MzD1DAAAgQRCSASAFQQAQViENIAFBABDZAhA5IQELCyANIAGUIQEgBkHEM2osAABBAEchBQJ/AkAgCQR/IAAoAgAiByACTSABQwAAAABdcSAHIANPIAFDAAAAAF5xcgVBAAsgBXIEQCAGQfDXAGohAAwBCyABQwAAAABcBEAgBkHw1wBqIgUgASAFKgIAkjgCACAGQezXAGoiB0EBOgAABUEAIAZB7NcAaiIHLAAARQ0CGgsgBCAAKAIAIAZB8NcAaiIFKgIAqWoQ4AMhBCAHQQA6AAAgBSAFKgIAIAQgACgCACIFa7KTOAIAIAQgBUYgCnJFBEACQCACIAQgAUMAAAAAXUUgBCAFTXJFIAQgAklyGyIEIANNBEAgAUMAAAAAXkUgBCAFT3INAQsgAyEECwsgBCAFRgR/QQAFIAAgBDYCAEEBCwwBCyAAQwAAAAA4AgAgBkHs1wBqQQA6AABBAAshDCAIJAQgDAu0BAIIfwF9IwQhCCMEQRBqJARBmKkEKAIAIQYgAiADRyIJQQFzIgogAUMAAAAAXHJFBEAgBkH01wBqKgIAIAMgAmuylCEBCyAIIQUCQAJAIAZB4DNqIgsoAgAiB0EBRw0AAkBBABCVAQRAIAZBxAhqKgIAQwAAgD9eBEAgBkGAB2pBABBWIg0gDUMK1yM8lCAGLACKAkUbIg0gDUMAACBBlCAGLACJAkUbIQ0MAgsLIAsoAgAhBwwBCwwBCyAHQQJGBEAgBUEDQQVDzczMPUMAACBBEJIBIAVBABBWIQ0gAUEAENkCEDkhAQsLIA0gAZQhASAGQcQzaiwAAEEARyEFAn8CQCAJBH8gACgCACIHIAJMIAFDAAAAAF1xIAcgA04gAUMAAAAAXnFyBUEACyAFcgRAIAZB8NcAaiEADAELIAFDAAAAAFwEQCAGQfDXAGoiBSABIAUqAgCSOAIAIAZB7NcAaiIHQQE6AAAFQQAgBkHs1wBqIgcsAABFDQIaCyAEIAAoAgAgBkHw1wBqIgUqAgCoahDgAyEEIAdBADoAACAFIAUqAgAgBCAAKAIAIgVrspM4AgAgBCAFRiAKckUEQAJAIAIgBCABQwAAAABdRSAEIAVMckUgBCACSHIbIgQgA0wEQCABQwAAAABeRSAEIAVOcg0BCyADIQQLCyAEIAVGBH9BAAUgACAENgIAQQELDAELIABDAAAAADgCACAGQezXAGpBADoAAEEACyEMIAgkBCAMC6MDAQJ/IABBmKkEKAIAIghBtDNqIgkoAgBGBEACQAJAAkAgCEHgM2ooAgBBAWsOAgABAgsgCCwA+AENARByDAELIAAgCEGwNWooAgBGBEAgCEHEM2osAABFBEAQcgsLCwsgACAJKAIARgR/An8CQAJAAkACQAJAAkACQCABDgYAAQIDBAUGCyACIAMgBAR/IAQoAgAFQYCAgIB4CyAFBH8gBSgCAAVB/////wcLIAYQ+AgMBgsgAiADIAQEfyAEKAIABUEACyAFBH8gBSgCAAVBfwsgBhD3CAwFCyACIAMgBAR+IAQpAwAFQoCAgICAgICAgH8LIAUEfiAFKQMABUL///////////8ACyAGEPYIDAQLIAIgAyAEBH4gBCkDAAVCAAsgBQR+IAUpAwAFQn8LIAYQ9QgMAwsgAiADIAQEfSAEKgIABUP//3//CyAFBH0gBSoCAAVD//9/fwsgBiAHEPQIDAILIAIgAyAEBHwgBCsDAAVE////////7/8LIAUEfCAFKwMABUT////////vfwsgBiAHEPMIDAELQQALBUEACwuzAgEGfyMEIQcjBEEgaiQEQZipBCgCACEIIAdBEGoiBUEANgIAIAEoAgAiBEF/SiAEIAJIcQRAQQAgBCAFQekCEQUAGgsgB0EIaiEGIAchBCADQX9HBEAgCEHENGooAgBFBEAgBkMAAAAAQwAAAAAQMiAEQ///f38gAxD7BRAyIAYgBEEAEK8DCwsgACAFKAIAQQAQ/AUEQCACQQBKBEBBACEDQQAhAANAIAMQ0AEgASgCACEFAn9BACADIAZB6QIRBQAEfyAGKAIABSAGQdidAjYCAEHYnQILIQkgBEMAAAAAQwAAAAAQMiAJCyADIAVGIgVBACAEEK8BBEAgASADNgIAQQEhAAsgBQRAEPMECxB5IANBAWoiAyACRw0ACwVBACEACxDIAQVBACEACyAHJAQgAAsFABDIAQvvAQIIfwJ9IwQhAyMEQTBqJAQgAyEFIANBGGohACADQRBqIQIgA0EIaiEEEDwiASwAf0UEQEGYqQQoAgAhBiABKgLMASIIIAEqAuwBkiEJIAIgASoCyAEgCBAyIAQgASoCyAFDAACAP5IgCRAyIAAgAiAEEEMgAiAAEHZDAAAAABAyIAJDAAAAABCpASAAQQBBABBhBEACfyABKAL0BCEHIAIgACoCACAAKgIEEDIgBCAAKgIAIAAqAgwQMiAHCyACIARBG0MAAIA/EEJDAACAPxDFASAGQczYAGosAAAEQEHInQIgBRCmAwsLCyADJAQLfQEFfyMEIQIjBEEQaiQEIAIhABA8IgEsAH9FBEBBmKkEKAIAIQMgASgC4AIhBCABQQE2AuACIAEqAuwBQwAAAABeBEAgAEMAAAAAQwAAAAAQMgUgAEMAAAAAIANBtDFqKgIAEDILIABDAAAAABCpASABIAQ2AuACCyACJAQL6wECCX8BfSMEIQAjBEEwaiQEIABBIGohASAAQRBqIQIgACEDIABBCGohBhA8IgcsAH9FBEBBmKkEKAIAIgRBtDFqIggqAgAhCSAEQcQqaiEFIAMgCSAHKgLsASAJIARByCpqKgIAQwAAAECUkhBFIAkQOSIJEDIgASAHQcgBaiIEIAMQNSACIAQgARBDIAJDAAAAABB8IAJBAEEAEGEEQCADIAUqAgAgCCoCAEMAAAA/lJIgCUMAAAA/lBAyIAYgAiADEDUgASAGKQIANwIAIAEQsgQLQwAAAAAgBSoCAEMAAABAlBBrCyAAJAQLkgQCDH8CfSMEIQMjBEGAAWokBCADQfAAaiEFIAMhBiADQdAAaiEKIANByABqIQggA0E4aiEEIANB6ABqIQkgA0HgAGohCyADQdgAaiEMEDwiDSwAf0UEQEGYqQQoAgAhByAIIA0pAsgBNwMAIAMgASkCADcDMBC+ASEPIAdBtDFqKgIAIAdByCpqIgEqAgBDAAAAQJSSIRAgBSADKQIwNwIAIAkgBSAPIBAQyQMgBiAIIAkQNSAEIAggBhBDIAQgASoCABB8IARBAEEAEGEEQCAAEFohACADIAQpAwA3AyggAyAEQQhqIgEpAwA3AyBBB0MAAIA/EEIhCCAHQcwqaiIOKgIAIQ8gBiADKQIoNwIAIAUgAykCIDcCACAGIAUgCEEBIA8QrAEgBSAHQdAqaioCAIwiDyAPEDIgBCAFENACIAUgBCoCACABKgIAIAAQfyAEKgIMEDIgDSgC9AQgBEEoQwAAgD8QQiAAIA4qAgAQiwkgAkUEQCAKIABDAADIQpRDCtcjPJK7OQMAIAZBIEGgnQIgChBzGiAGIQILIAkgAkEAQQBDAACAvxBsIAkqAgAiAEMAAAAAXgRAIAsgBSoCACAHQdQqaioCAJIgBCoCACABKgIAIACTIAdB3CpqKgIAkxBkIAQqAgQQMiAMQwAAAABDAAAAPxAyIAsgASACQQAgCSAMIAQQrQELCwsgAyQEC9ADAg5/AX0jBCEHIwRB4ABqJAQgB0HIAGohCyAHQUBrIQwgB0EgaiEIIAdBEGohCSAHQTBqIQogB0EoaiENIAdB0ABqIRAgByEREDwiDiwAfwR/QQAFQZipBCgCACESIAAQ0AEgDkGJnQIQXiEPEHkgBEF/SgRAIAggBLIiFSAVEDIFIAggEkHEKmopAgA3AwALIAwgDkHIAWoiBCABEDUgCiAIEOUDIAsgDCAKEDUgCSAEIAsQQyALIAQgCBA1IA0gBCAIEDUgDCANIAEQNSAKIAsgDBBDIAlDAAAAABB8IAkgD0EAEGEEfyAJIA8gDSAQQQAQkQEhE0EVQRYgDSwAAEUiARtBFyAQLAAARSABchtDAACAPxBCIQEgCSAPQQEQlwEgByAJKQMANwMIIBEgCSkDCDcDACAIKgIAIAgqAgQQRUMAAAAAIBJBzCpqKgIAEGQhFSAMIAcpAgg3AgAgCyARKQIANwIAIAwgCyABQQEgFRCsASAFKgIMQwAAAABeBEAgDigC9AQgCiAKQQhqIgEgBRDkAUMAAAAAQQ8QdQUgCkEIaiEBCyAOKAL0BCAAIAogASACIAMgBhDkARD8ASATBUEACwshFCAHJAQgFAu7AgEJfyMEIQgjBEEwaiQEIAhBIGohBiAIQRhqIQcgCEEQaiELIAhBCGohDCAIIQ0QPCIKLAB/RQRAIAcgCkHIAWoiCSABEDUgBiAJIAcQQyAFKgIMQwAAAABeBEAgB0MAAABAQwAAAEAQMiAGIAcqAgAgBioCCJI4AgggBiAHKgIEIAYqAgySOAIMCyAGQwAAAAAQfCAGQQBBABBhBEAgCigC9AQhCSAGQQhqIQEgBSoCDEMAAAAAXgRAIAkgBiABIAUQ5AFDAAAAAEEPQwAAgD8QpAECfyAKKAL0BCEOIAtDAACAP0MAAIA/EDIgByAGIAsQNSANQwAAgD9DAACAPxAyIAwgASANEEAgDgsgACAHIAwgAiADIAQQ5AEQ/AEFIAkgACAGIAEgAiADIAQQ5AEQ/AELCwsgCCQEC9UCAg1/AX0jBCECIwRBQGskBCACIQpBmKkEKAIAIgRBlDNqKAIAIQggAkEYaiIFIARBtDFqIgsqAgAiDyAPEDIgAkEgaiIGIAEgBRA1IAJBEGoiCSAEQcQqaiIMEOUDIAJBOGoiAyAGIAkQNSACQShqIgcgASADEEMgByAAQQAQYRogByAAIAYgBUEAEJEBIQ5BFUEWIAYsAABFIgAbQRcgBSwAAEUgAHIbQwAAgD8QQiEBIAYsAAAgBSwAAHJB/wFxBEACfyAIKAL0BCENIAkgBxDmAyAKQwAAAABDAAAAvxAyIAMgCSAKEDUgDQsgAyALKgIAQwAAAD+UQwAAgD+SIAFBCRCVAgsgAkEIaiIBIAcgDBA1QQFBAyAILAB9GyEAIAMgASkCADcCACADIABDAACAPxDRAhDzAgRAQQBDAACAvxCQBARAIAgQwAcLCyACJAQgDgs+AgN/AX0jBCECIwRBEGokBCACEP4BIgUgBRAyIAJBCGoiAyACKQIANwIAIAAgASADQQAQwwQhBCACJAQgBAuCAwIMfwN9IwQhAiMEQUBrJAQgAkEwaiEDIAJBKGohByACQRhqIQUgAiEEIAJBEGohCiACQQhqIQsQPCIILAB/RQRAQZipBCgCACIGQdzcAGoiDEGBGCAAIAEQvAIgBkHc3ABqaiENIAcgDCANQQBDAACAvxBsQwAAAAAgCCoC8AEQOSEQIAZBxCpqIQkgCCoC7AEgBkG0MWoiASoCACIOIAZByCpqKgIAQwAAAECUkhBFIA4QOSEPIAQgDiAHKgIAIg5DAAAAAF4EfSAOIAkqAgBDAAAAQJSSBUMAAAAAC5IgDyAHKgIEEDkQMiADIAhByAFqIgAgBBA1IAUgACADEEMgBUMAAAAAEHwgBUEAQQAQYQRAIAQgCSoCACABKgIAQwAAAD+UkiAPQwAAAD+UEDIgCiAFIAQQNSADIAopAgA3AgAgAxCyBCAEIAEqAgAgCSoCAEMAAABAlJIgEBAyIAsgBSAEEDUgAyALKQIANwIAIAMgDCANQQAQrgELCyACJAQL/AICC38BfSMEIQIjBEHQAGokBCACQUBrIQMgAkE4aiEEIAJBKGohBSACQRhqIQYgAkEIaiELIAIhCSACQRBqIQwQPCIHLAB/RQRAQZipBCgCACEIEL4BIQ0gBCAAQQBBAUMAAIC/EGwgBiANIAQqAgQgCEHIKmoiCioCAEMAAABAlJIQMiADIAdByAFqIgcgBhA1IAUgByADEEMgCSANIAQqAgBDAAAAAF4EfSAIQdwqaioCAAVDAAAAAAuSIAoqAgBDAAAAQJQQMiALIAcgCRA1IAMgCyAEEDUgBiAHIAMQQyAGIAoqAgAQfCAGQQBBABBhBEAgCEHc3ABqIglBgRhBwswCIAEQvAIgCEHc3ABqaiEBIANDAAAAAEMAAAA/EDIgBSAFQQhqIAkgAUEAIANBABCtASAEKgIAQwAAAABeBEAgDCAFKgIIIAhB3CpqKgIAkiAFKgIEIAoqAgCSEDIgAyAMKQIANwIAIAMgAEEAQQEQrgELCwsgAiQECyEBAX8jBCECIwRBEGokBCACIAE2AgAgACACEIUJIAIkBAs7AEGYqQQoAgBBlDNqKAIAKgLwAkMAAAAAXQRAQwAAAAAQ4AZBwswCIAAQ2gIQ3wYFQcLMAiAAENoCCwsfAQF/IwQhASMEQRBqJAQgASAANgIAIAEQhwkgASQECzgBAX8jBCEBIwRBEGokBCABIAA2AgBBAEGYqQQoAgBBwCtqEIICQcLMAiABENoCQQEQogIgASQEC6UBAgR/BH0jBCEDIwRBEGokBCADQQhqIQQgAyEFIAEgASoCBCAAKAIoKAIIIgYqAgwgBioCSJJDAAAAP5JDAACAv5KospIiBzgCBCABKgIAIQggB0MAAIA/kiEJQQAhAQNAIAQgAbJDAAAAQJQgCJIiCiAHEDIgBSAKQwAAgD+SIAkQMiAAIAQgBSACQwAAAABBDxB1IAFBAWoiAUEDRw0ACyADJAQLjgYCB38EfSMEIQgjBEEwaiQEIAhBIGohBiAIQRBqIQcgCCIFQRhqIglDAAAAADgCACAFQQhqIgogAzgCACADQwAAAABcBEBDAAAAACADXgRAIAkoAgAhCyAJIAooAgA2AgAgCiALNgIAIAkqAgAhDSAKKgIAIQMLIAYgASoCACABKgIIIA0QfyABKgIEEDIgByABKgIAIAEqAgggAxB/IAEqAgwQMiAEQwAAAABbBEAgACAGIAcgAkMAAAAAQQ8QdQVDAACAP0MAAIA/IAEqAgggASoCACIOk0MAAAA/lCABKgIMIAEqAgSTQwAAAD+UEEVDAACAv5JDAAAAACAEEGQiDJUiDSAGKgIAIgMgDpOUkxDoAyEPQwAAgD8gDSAHKgIAIA6TlJMQ6AMhBCADIA4gDJIQOSEDIA8gBFsEQCAFIAMgByoCBBAyIAAgBRBjIAUgAyAGKgIEEDIgACAFEGMFIA9DAAAAAFsgBEPbD8k/W3EEQCAFIAMgByoCBCAMkxAyIAAgBSAMQQNBBhDGASAFIAMgDCAGKgIEkhAyIAAgBSAMQQZBCRDGAQUgBSADIAcqAgQgDJMQMiAAIAUgDEPbD0lAIASTQ9sPSUAgD5NBAxCXAiAFIAMgDCAGKgIEkhAyIAAgBSAMIA9D2w9JQJIgBEPbD0lAkkEDEJcCCwsgByoCACIEIAwgASoCAJJeBEACQEMAAIA/IA0gASoCCCIDIASTlJMQ6AMhDkMAAIA/IA0gAyAGKgIAk5STEOgDIQ0gBCADIAyTEEUhAyAOIA1bBEAgBSADIAYqAgQQMiAAIAUQYyAFIAMgByoCBBAyIAAgBRBjDAELIA5DAAAAAFsgDUPbD8k/W3EEQCAFIAMgDCAGKgIEkhAyIAAgBSAMQQlBDBDGASAFIAMgByoCBCAMkxAyIAAgBSAMQQBBAxDGAQUgBSADIAwgBioCBJIQMiAAIAUgDCANjCAOjEEDEJcCIAUgAyAHKgIEIAyTEDIgACAFIAwgDiANQQMQlwILCwsgACACEIECCwsgCCQEC1kBA38jBCEFIwRBEGokBCAFIQMCQAJAIAAgARCeAyIEIAAQnQNGDQAgBCgCACABRw0AIAQgAjYCBAwBCyADIAE2AgAgAyACNgIEIAAgBCADEMcEGgsgBSQEC/UDAQ9/IwQhBCMEQfAAaiQEIARB6ABqIQcgBEHgAGohCiAEIQggBEHYAGohBSAEQdAAaiEGIARByABqIQsgBEFAayEMIARBOGohDSAEQTBqIQ4gBEEoaiEPIARBIGohECADQX9HBEAgACgCKCgCCCgCRCERIAcQOiAKEDogCEEgaiESIAghCQNAIAkQOiAJQQhqIgkgEkcNAAsgESADIAcgCiAIIAhBEGoiCRCSCQRAIAEgASoCACAHKgIAkzgCACABIAEqAgQgByoCBJM4AgQgACARKAIIIgMQmAIgC0MAAIA/QwAAAAAQMiAGIAsgAhBRIAUgASAGEDUgD0MAAIA/QwAAAAAQMiAOIA8gAhBRIA0gASAOEDUgECAKIAIQUSAMIA0gEBA1IAAgAyAFIAwgCSAIQRhqIgdBgICAgAMQ/AEgC0MAAABAQwAAAAAQMiAGIAsgAhBRIAUgASAGEDUgD0MAAABAQwAAAAAQMiAOIA8gAhBRIA0gASAOEDUgECAKIAIQUSAMIA0gEBA1IAAgAyAFIAwgCSAHQYCAgIADEPwBIAYgCiACEFEgBSABIAYQNSAAIAMgASAFIAkgB0GAgIB4EPwBIAYgCiACEFEgBSABIAYQNSAAIAMgASAFIAggCEEIakF/EPwBIAAQ5QILCyAEJAQLkQICBX8CfSMEIQYjBEEgaiQEIAZBGGohByAGQRBqIQggBkEIaiEJIAYhCgJAAkAgBUEQdEEQdUEJaw4YAQEAAAEAAAAAAAAAAAAAAAAAAAAAAAABAAsgACAFEOECIgUEQCACQwAAAABgBH0gAiAAKgIAlQVDAACAPwshAiADIAAqAgggAyoCAKiykiILOAIAIAMgACoCDCADKgIEqLKSIgw4AgQgAUEGQQQQsAEgByALIAIgBSoCCJSSIAwgAiAFKgIMlJIQMiAIIAsgAiAFKgIQlJIgDCACIAUqAhSUkhAyIAkgBSoCGCAFKgIcEDIgCiAFKgIgIAUqAiQQMiABIAcgCCAJIAogBBDzAwsLIAYkBAsOACAAIAE7ATwgABDQBAs7AEHg4wMuAQBFBEBB4OMDQdCBASkDADcDAEHo4wNB2IEBKQMANwMAQfCoAUGaD0Hw4wMQhAYLQeDjAws7AEGwlQMuAQBFBEBBsJUDQdCBASkDADcDAEG4lQNB2IEBKQMANwMAQeCBAUHEE0HAlQMQhAYLQbCVAwuVAgIHfwF+IwQhCSMEQSBqJAQgCUEYaiEHIAlBCGohCCAJIgZBEGohCiABQQdLBH9BAAUgACgCBEECcQR/QQAFIAggAEFAayAAKAJYEFUiCy8BCLIgCy8BCrIQMiAHIAFBGGxB8P8AaiAIEDUgCCABQRhsQfj/AGopAwAiDTcDACADIA03AgAgAiABQRhsQYCAAWopAwA3AgAgBiAHIABBJGoiABCgAiAEIAYpAwA3AgAgCiAHIAgQNSAGIAogABCgAiAEIAYpAwA3AgggByAHKgIAQwAA2kKSOAIAIAYgByAAEKACIAUgBikDADcCACAKIAcgCBA1IAYgCiAAEKACIAUgBikDADcCCEEBCwshDCAJJAQgDAvsAQEHfyMEIQkjBEEQaiQEIAkhBSAAKAIYIgYEQCAGIQUFIAVBADYCACAAIAVBAEEAQQAQnwYgBSgCACIHBEAgACAAKAIgIAAoAhxBAnRsEFMiBjYCGCAGIQUgACgCHCAAKAIgbCIIQQBKBEADQCAHQQFqIQogBkEEaiELIAYgBy0AAEEYdEH///8HcjYCACAIQX9qIQcgCEEBSgRAIAshBiAHIQggCiEHDAELCwsFIAAoAhghBQsLIAEgBTYCACACBEAgAiAAKAIcNgIACyADBEAgAyAAKAIgNgIACyAEBEAgBEEENgIACyAJJAQLoAQBAn8gACwAACIBQf8BcSECAkAgAUH/AXFBH0oEQCABQQBIBEBBrKkEKAIAIAAtAAFrQX9qIAJBgX9qENsCIABBAmohAAwCCyABQf8BcUE/SgR/QaypBCgCAEH//wAgAC0AASACQQh0cmtqIAAtAAJBAWoQ2wIgAEEDagUgAEEBaiACQWFqEMYEIAAgAC0AAEFiamoLIQAFIAFB/wFxQRdKBEBBrKkEKAIAQf//3wAgAC0AAiACQRB0ciAALQABQQh0cmtqIAAtAANBAWoQ2wIgAEEEaiEADAILIAFB/wFxQQ9KBEBBrKkEKAIAQf//PyAALQACIAJBEHRyIAAtAAFBCHRya2ogAC0ABCAALQADQQh0ckEBahDbAiAAQQVqIQAMAgsgAUH/AXFBB0oEQCAAQQJqIAAtAAEgAkEIdHJBgXBqEMYEIAAgAC0AASAALQAAQQh0ckGDcGpqIQAMAgsCQAJAAkACQCABQQRrDgQCAwEAAwsgAEEDaiAALQACIAAtAAFBCHRyQQFqEMYEIAAgAC0AAiAALQABQQh0ckEEamohAAwEC0GsqQQoAgAgAC0AAyAALQABQRB0ciAALQACQQh0ckF/c2ogAC0ABEEBahDbAiAAQQVqIQAMAwtBrKkEKAIAIAAtAAMgAC0AAUEQdHIgAC0AAkEIdHJBf3NqIAAtAAUgAC0ABEEIdHJBAWoQ2wIgAEEGaiEACwsLIAALTQEDfyAAKAIEIAFIBEAgAUH0AGwQUyECIABBCGoiAygCACIEBEAgAiAEIAAoAgBB9ABsEEYaIAMoAgAQQQsgAyACNgIAIAAgATYCBAsL3gEBAX8gACgCACICIAAoAgRGBEAgACAAIAJBAWoQWBCVCSAAKAIAIQILIAAoAgggAkH0AGxqIgIgASkCADcCACACIAEpAgg3AgggAiABKQIQNwIQIAIgASkCGDcCGCACIAEpAiA3AiAgAiABKQIoNwIoIAIgASkCMDcCMCACIAEpAjg3AjggAkFAayABQUBrKQIANwIAIAIgASkCSDcCSCACIAEpAlA3AlAgAiABKQJYNwJYIAIgASkCYDcCYCACIAEpAmg3AmggAiABKAJwNgJwIAAgACgCAEEBajYCAAu+AQEFfyMEIQMjBEEQaiQEIAMhAiAAQTRqIQUgASwAPARAIAUQfhoFQdgAEFMhBCADIAMsAAQ6AAUgBBCFBiACIAQ2AgAgBSACEHgLIABBzABqIgIgARCWCSACKAIIIAIoAgBBf2pB9ABsaiICKAJwRQRAIAIgBRBwKAIANgJwCyACLAAIRQRAIAIgAigCBBBTIgQ2AgAgAkEBOgAIIAQgASgCACACKAIEEEYaCyAAEO8DIAIoAnAhBiADJAQgBgurAQEBfyABLQADIAEtAABBGHQgAS0AAUEQdHJyIAEtAAJBCHRyQYCA8L0FRgRAIAEtAAcgAS0ABEEYdCABLQAFQRB0cnIgAS0ABkEIdHJFBEAgARCHBiECQaCpBCABNgIAQaSpBCAAIAJqIgI2AgBBqKkEIAA2AgBBrKkEIAA2AgAgAUEQaiEAA0AgABCUCSIBIABGQaypBCgCACACS3JFBEAgASEADAELCwsLC+kBAQV/IwQhBiMEQYABaiQEIAYhBSABEIcGIgcQUyIIIAEQmAkgAwRAIAUgAykCADcCACAFIAMpAgg3AgggBSADKQIQNwIQIAUgAykCGDcCGCAFIAMpAiA3AiAgBSADKQIoNwIoIAUgAykCMDcCMCAFIAMpAjg3AjggBUFAayADQUBrKQIANwIAIAUgAykCSDcCSCAFIAMpAlA3AlAgBSADKQJYNwJYIAUgAykCYDcCYCAFIAMpAmg3AmggBSADKAJwNgJwBSAFEN8CCyAFQQE6AAggACAIIAcgAiAFIAQQhgYhCSAGJAQgCQuKAQECf0GgIiEBQaAiLAAAIgIEQANAIAAgAhCbAyABLAABEJsDIAEsAAIQmwMgASwAAxCbAyABLAAEEJsDQdUAbGpB1QBsakHVAGxqQdUAbGoiAjoAACAAIAJBCHY6AAEgACACQRB2OgACIAAgAkEYdjoAAyAAQQRqIQAgAUEFaiIBLAAAIgINAAsLCy4BAn9BoCIQXEEEakEFbUECdBBTIgQQmgkgACAEIAEgAiADEJkJIQUgBBBBIAULaAECfyMEIQEjBEEQaiQEIABBEGoiAhA6IABBfzYCACAAQQA7AQYgAEEAOwEEIABBfzsBCiAAQX87AQggAEMAAAAAOAIMIAFDAAAAAEMAAAAAEDIgAiABKQMANwIAIABBADYCGCABJAQLTQEDfyAAKAIEIAFIBEAgAUHEAWwQUyECIABBCGoiAygCACIEBEAgAiAEIAAoAgBBxAFsEEYaIAMoAgAQQQsgAyACNgIAIAAgATYCBAsLugIAAn8CQAJAAkACQAJAIAAsAAAOdQMEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQCBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAQQLIAAsAAENAyAALAACDQMgACwAAw0DQQEMBAsCQAJAIAAsAAFB8gBrDggBBAQEBAQEAAQLIAAsAAJB8ABHDQMgACwAA0ExRw0DQQEMBAsgACwAAkH1AEcNAiAALAADQeUARw0CQQEMAwsgACwAAUHUAEcNASAALAACQdQARw0BIAAsAANBzwBHDQFBAQwCCyAALAABQQFHDQAgACwAAg0AIAAsAAMNAEEBDAELQQALC6ABAQF/IAAQngkEfyABQQBHQR90QR91BSAALAAAQfQARgR/IAAsAAFB9ABGBH8gACwAAkHjAEYEfyAALAADQeYARgR/An8gAEEEahDDASICQYCACEgEf0F/IAJBgIAEaw0BBUF/IAJBgIAIaw0BCxogAEEIahDDASABSgR/IABBDGogAUECdGoQwwEFQX8LCwVBfwsFQX8LBUF/CwVBfwsLC8MIARJ/IwQhBiMEQeAAaiQEIAZBQGshCCAGQTRqIQQgBkEoaiEHIAZBJGohCiAGQSBqIQsgBkEQaiEMIAZBDGohDSAGQRRqIQ4gBiEFIAAgATYCBCAAIAI2AgggBkHMAGoiA0EAQQAQ+QEgACADKQIANwI0IAAgAygCCDYCPCABIAJBr5wCEOMBIQkgACABIAJBtJwCEOMBIg82AhAgACABIAJBuZwCEOMBIhA2AhQgACABIAJBvpwCEOMBIhE2AhggACABIAJBw5wCEOMBIhI2AhwgACABIAJByJwCEOMBIhM2AiAgACABIAJBzZwCEOMBNgIkIAAgASACQdKcAhDjATYCKCATRSASRSAJRSAQRXJycgR/QQAFAn8gEQRAQQAgD0UNARoFAkAgCkECNgIAIAtBADYCACAMQQA2AgAgDUEANgIAIAEgAkHXnAIQ4wEiDwRAAkAgA0EAQQAQ+QEgACADKQIANwJkIAAgAygCCDYCbCADQQBBABD5ASAAIAMpAgA3AnAgACADKAIINgJ4IAMgASAPakGAgICAAhD5ASAAIAMpAgA3AjQgACADKAIINgI8IAQgACkCNDcCACAEIAAoAjw2AgggBEECEJICIAQgBBCjAUH/AXEQ+AEgAyAEELoCIA4gBBC6AiADIA4pAgA3AgAgAyAOKAIINgIIIAcgA0EAEOsDIAMgBBC6AiADIAQQugIgACADKQIANwJMIAAgAygCCDYCVCAHQRFBASALEN0CIAdBhgJBASAKEN0CIAdBpAJBASAMEN0CIAdBpQJBASANEN0CIAggBCkCADcCACAIIAQoAgg2AgggAyAHKQIANwIAIAMgBygCCDYCCCAFIAggAxCMBiAAIAUpAgA3AlggACAFKAIINgJgIAsoAgAiB0UgCigCAEECR3JFBEAgDCgCACIIBEAgDSgCACIFRQ0CIAQgCBD4ASADIAQQugIgACADKQIANwJkIAAgAygCCDYCbCADIAQgBSAEKAIIIAVrENwCIAAgAykCADcCcCAAIAMoAgg2AngLIAQgBxD4ASADIAQQugIgAEFAayIFIAMpAgA3AgAgBSADKAIINgIIDAMLCwtBAAwCCwsgACABIAJB3JwCEOMBIgIEfyABIAJqQQRqEEpB//8DcQVB//8DCzYCDCABIAlqQQJqEEoiAkH//wNxIQQgAEEANgIsIAJB//8DcQR/IAlBBGohB0EAIQJBACEFA0ACQAJAAkAgASAHIAVBA3RqaiIDEEpBEHRBEHUOBAECAgACCwJAIANBAmoQSkEQdEEQdUEBaw4KAAICAgICAgICAAILIAAgA0EEahDDASAJaiICNgIsDAELIAAgA0EEahDDASAJaiICNgIsCyAFQQFqIgUgBEcNAAsgAgR/IAAgASAAKAIUakEyahBKQf//A3E2AjBBAQVBAAsFQQALCwshFCAGJAQgFAuhAQECfyMEIQcjBEEwaiQEIAciBkIANwIEIAZCADcCDCAGQgA3AhQgBkIANwIcIAZCADcCJCAGQQA2AiwgBkEBNgIAIAAgASAGEMwEIQAgAgRAIAIgBigCGEEAIAAbNgIACyADBEAgAyAGKAIgQQAgABs2AgALIAQEQCAEIAYoAhxBACAAGzYCAAsgBQRAIAUgBigCJEEAIAAbNgIACyAHJAQLpAEAIAAoAjwEfyAAIAEgAiADIAQgBRChCUEBBSAAIAEQiwYiAUEASAR/QQAFIAIEQCACIAAoAgQgAWpBAmoQSkEQdEEQdTYCAAsgAwRAIAMgACgCBCABakEEahBKQRB0QRB1NgIACyAEBEAgBCAAKAIEIAFqQQZqEEpBEHRBEHU2AgALIAUEQCAFIAAoAgQgAWpBCGoQSkEQdEEQdTYCAAtBAQsLC74BAQJ/IARBf2ohBiAEQQFKBH8DfyAFQQN0IANqIAVBAWoiBUEDdCADajYCBCAFIAZHDQAgBgsFQQALQQN0IANqQQA2AgQgAEEBNgIMIABBADYCECAAIAM2AhwgACAAQSBqNgIYIAAgATYCACAAIAI2AgQgACAENgIUIAAgACgCFCICIAAoAgBBf2pqIAJtNgIIIABBADsBICAAQQA7ASIgACAAQShqNgIkIAAgATsBKCAAQX87ASogAEEANgIsC5cEAQx/IwQhDyMEQRBqJAQgDyEMIAFBGGoiBygCACIKLwEAIgUgASgCCCIEIAJBf2pqIgIgAiAEb2siC2ogASgCAEoEf0EAIQVBgICAgAQhAkGAgICABCEEQQAFQYCAgIAEIQJBgICAgAQhBCAHIQYDQCAKIAUgCyAMEIkGIQUgASgCEARAIAMgBWogASgCBEwEQAJAIAUgBEgEfyAMKAIABSAEIAVGIAwoAgAiCSACSHEEfyAJBQwCCwshAiAGIQggBSEECwsFIAYgCCAFIARIIgYbIQggBSAEIAYbIQQLIApBBGoiBigCACIKLwEAIgUgC2ogASgCAEwNAAsgCAR/IAgiBSgCAC8BAAVBACEFQQALCyEIIAEoAhBBAUYEQCALIAcoAgAiCS8BAEoEfyAJIQYDfyALIAYoAgQiBi8BAEoEfwwBBSAGCwsFIAkLIg4EQCAEIQYgByEKA38gDi8BACALayENA0AgDSAJQQRqIgQoAgAiBy8BAE4EQCAHIQkgBCEKDAELCyADIAkgDSALIAwQiQYiB2ogASgCBE4gByAGSnIEfyAFBQJ/IAcgBkggDCgCACIEIAJIcgRAIAQhAgUgBSACIARGIA0gCEhxRQ0BGgsgDSEIIAchBiAKCwshBCAOKAIEIg4EfyAEIQUMAQUgBCEFIAYLCyEECwsgACAFNgIIIAAgCDYCACAAIAQ2AgQgDyQECxkAQX8gACgCDCIAIAEoAgwiAUogACABSBsLhQIBA38gACABIAIgAxCkCQJAAkAgACgCCCIERQ0AIAMgACgCBGoiAyABKAIESg0AIAEoAhwiBUUNACAFIAAoAgAiADsBACAFIAM7AQIgASAFKAIENgIcIAAgBCgCACIDLwEASgRAIANBBGoiAyEEIAMoAgAhAwsgBCAFNgIAIAAgAmohBiADQQRqIgQoAgAiAARAAkAgAyECIAQhAwNAIAYgAC8BAEgEQCACIQAMAgsgAyABKAIcNgIAIAEgAjYCHCAAQQRqIgMoAgAiBARAIAAhAiAEIQAMAQsLCwUgAyEACyAFIAA2AgQgBiAALwEASgRAIAAgBjsBAAsMAQsgAEEANgIICwtFAQJ/IAAvAQYiAiABLwEGIgNKBH9BfwUgAiADSAR/QQEFQX8gAC8BBCIAIAEvAQQiAUggAEH//wNxIAFB//8DcUobCwsLUwEDfyMEIQMjBEEQaiQEIAMhBAJAAkAgACABEJ4DIgIgABCdA0YNACACKAIAIAFHDQAMAQsgBCABQX8QoQEgACACIAQQxwQhAgsgAyQEIAJBBGoLYAEBfyAAEMgEQf8BcUEeRgRAAkAgAEEBEJICIAAoAgQgACgCCEgEQANAIAAQowFB/wFxIgFBD3FBD0YgAUHwAXFB8AFGcg0CIAAoAgQgACgCCEgNAAsLCwUgABDKBBoLC7ABAQR/IAFBABD4AQJAAkAgASgCBCIDIAEoAghODQADQAJAIAEQyARB/wFxQRtKBH8DQCABEKkJIAEQyARB/wFxQRtKDQALIAEoAgQFIAMLIQUgARCjASIGQf8BcSEEIAZB/wFxQQxGBEAgARCjAUH/AXFBgAJyIQQLIAIgBEYNACABKAIEIgMgASgCCEgNAQwCCwsgACABIAMgBSADaxDcAgwBCyAAIAFBAEEAENwCCwssAQF/IAAgARCeAyICIAAQnQNGBH9BAAUgASACKAIARgR/IAIoAgQFQQALCwt9AQR/IwQhBCMEQRBqJAQgBCEDIAJBgIACQesIAn9B6wAhBiABQQAQ+AEgBgsgAUECEMQBIgVB1wlKGyAFQeuIAkobaiICQX9KIAIgBUhxBEAgAyABKQIANwIAIAMgASgCCDYCCCAAIAMgAhDrAwUgAEEAQQAQ+QELIAQkBAvMAgEKfyMEIQUjBEFAayQEIAVBMGohBCAFQSRqIQggBUEYaiEHIAUhCSAFQQxqIgMgAUHwAGoiBikCADcCACADIAYoAgg2AgggA0EAEPgBAn8CQAJAAkAgAxCjAUEYdEEYdQ4EAAICAQILIAMgAhCSAiADEKMBQf8BcQwCCyADQQIQxAEhCiADQQIQxAEhBiAKQQBMDQADQAJAIAMQowEhDCAGIAJMIANBAhDEASIGIAJKcQ0AIAtBAWoiCyAKSA0BDAILCyAMQf8BcQwBCyAEQQBBABD5AUF/CyECIAcgAUE0aiIGKQIANwIAIAcgBigCCDYCCCAEIAFB5ABqIgEpAgA3AgAgBCABKAIINgIIIAkgBCACEOsDIAggBykCADcCACAIIAcoAgg2AgggBCAJKQIANwIAIAQgCSgCCDYCCCAAIAggBBCMBiAFJAQLwAEBBH8jBCEFIwRB4ABqJAQgBUEwaiIDQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANBADYCLCADQQE2AgAgBSIEQgA3AgAgBEIANwIIIARCADcCECAEQgA3AhggBEIANwIgIARCADcCKAJ/AkAgACABIAMQzARFDQAgAiADKAIsQQ5sEFMiAzYCACAEIAM2AiggACABIAQQzARFDQAgBCgCLAwBCyACQQA2AgBBAAshBiAFJAQgBgu2DgIVfwp9IwQhESMEQRBqJAQgESEPIAAoAgQhAyAAIAEQiwYhASACQQA2AgAgAUEASARAQQAhAQUCQCABIANqIgMQSiIBQRB0QRB1QQBKBEAgA0EKaiIWIAFBEHRBEHVBAXQiEGoiBhBKIQEgBkF+ahBKQf//A3EiEiAQQQFyakEObBBTIghFBEBBACEBDAILIBJBAWohCkEAIQNBACEAIAZBAmogAUH//wNxaiEBA0AgA0H/AXEEQCADQX9qQRh0QRh1IQMFIAFBAWohBiABLAAAIgBBCHEEfyAGLAAAIQMgAUECagVBACEDIAYLIQELIAUgEGpBDmwgCGogADoADCAFQQFqIgUgCkcNAAtBACEFQQAhAwNAIAUgEGoiBkEObCAIai0ADCIEQQJxBEAgAUEBaiEAQQAgAS0AACIBayABIARBEHFFGyADaiEDBSAEQRBxBH8gAQUgAS0AASABLQAAQQh0ckEQdEEQdSADaiEDIAFBAmoLIQALIAZBDmwgCGogAzsBACAFQQFqIgUgCkcEQCAAIQEMAQsLQQAhBUEAIQEDQCAFIBBqIgZBDmwgCGotAAwiBEEEcQRAIABBAWohA0EAIAAtAAAiAGsgACAEQSBxRRsgAWohAQUgBEEgcQR/IAAFIAAtAAEgAC0AAEEIdHJBEHRBEHUgAWohASAAQQJqCyEDCyAGQQ5sIAhqIAE7AQIgBUEBaiIFIApHBEAgAyEADAELC0EAIQBBACEBQQAhA0EAIQoDQCAAIBBqIgRBDmwgCGosAAwhFCAEQQ5sIAhqLgEAIQUgBEEObCAIai4BAiEGIAAgE0YEfyAABEAgCCAHIA0gFSAOIAogASADIAwgCxCKBiEHCyAUQQFxIg8EQCAFIQ4gBiEKBSAEQQFqIgFBDmwgCGouAQAhDiABQQ5sIAhqLAAMQQFxBH8gAEEBaiEAIAYhAyABQQ5sIAhqLgECIQogBQUgBSAOakEBdSEOIAYiAyABQQ5sIAhqLgECakEBdSEKIAULIQELIAdBDmwgCGpBASAOIApBAEEAEPoBIAwhBSALIQYgFiAJQQF0ahBKQf//A3FBAWohEyAHQQFqIQcgD0EBcyEVQQAhDSAJQQFqBQJ/IA1BAEchBCAHQQFqIQ8gB0EObCAIaiENIBRBAXFFBEAgBEUEQEEBIQ0gCQwCCyANQQMgBSAMakEBdSAGIAtqQQF1IAwgCxD6ASAPIQdBASENIAkMAQsgBARAIA1BAyAFIAYgDCALEPoBBSANQQIgBSAGQQBBABD6AQsgCyEGIA8hB0EAIQ0gDCEFIAkLCyEEIABBAWohCSAAIBJIBEAgBSEMIAYhCyAJIQAgBCEJDAELCyAIIAcgDSAVIA4gCiABIAMgBSAGEIoGIQEgCCEDBSABQf//A3FB//8DRgRAAkAgA0EKaiEJQQAhAQNAAkAgD0EANgIAAn8gCRBKIRcgCUECahBKIQMgCUEEaiELIBcLQf//A3EiDEECcQR/IAxBAXEEfyALEEpBEHRBEHWyIR0gCUEGahBKQRB0QRB1siEeIAlBCGoFIAssAACyIR0gCSwABbIhHiAJQQZqCwVDAAAAACEdQwAAAAAhHiALCyEEIAxBCHEEfyAEEEpBEHRBEHWyQwAAgDiUIhghGUMAAAAAIRpDAAAAACEbIARBAmoFAn8gDEHAAHEEQCAEEEpBEHRBEHWyQwAAgDiUIRlDAAAAACEaQwAAAAAhGyAEQQJqEEpBEHRBEHWyQwAAgDiUIRggBEEEagwBCyAMQYABcQR/IAQQSkEQdEEQdbJDAACAOJQhGSAEQQJqEEpBEHRBEHWyQwAAgDiUIRogBEEEahBKQRB0QRB1skMAAIA4lCEbIARBBmoQSkEQdEEQdbJDAACAOJQhGCAEQQhqBUMAAIA/IRlDAAAAACEaQwAAAAAhG0MAAIA/IRggBAsLCyEJIBogGpQgGSAZlJKRISAgGCAYlCAbIBuUkpEhISAAIANB//8DcSAPEJEGIgtBAEoEQCAPKAIAIQdBACEDA0AgA0EObCAHaiIELgEAsiEcIAQgICAdIBkgHJQgGyADQQ5sIAdqIgQuAQKyIh+UkpKUqDsBACAEICEgHiAaIByUIBggH5SSkpSoOwECIANBDmwgB2oiBC4BBLIhHCAEICAgHSAZIByUIBsgA0EObCAHaiIELgEGsiIflJKSlKg7AQQgBCAhIB4gGiAclCAYIB+UkpKUqDsBBiADQQFqIgMgC0cNAAsgASALaiIEQQ5sEFMiA0UNASABQQBKBEAgAyAOIAFBDmwQRhoLIAFBDmwgA2ogByALQQ5sEEYaIAoEQCAGEEELIAcQQSADIQUgAyEGIAMhDiAEIQEFIAohAwsgDEEgcUUNAiADIQoMAQsLIAoEQCAFEEELIAcQQUEAIQEMAwsFQQAhAUEAIQMLCyACIAM2AgALCyARJAQgAQuGAgIIfwF9IwQhBiMEQRBqJAQgBiEEIAFBAUoEQEEBIQMDQCADQRRsIABqKAIAIQkgA0EUbCAAaioCBCEKIAQgA0EUbCAAaiICKQIINwIAIAQgAigCEDYCCCADIQIDQCAKIAJBf2oiBUEUbCAAaioCBF0EQCACQRRsIABqIgcgBUEUbCAAaiIIKQIANwIAIAcgCCkCCDcCCCAHIAgoAhA2AhAgAkEBSgR/IAUhAgwCBSAFCyECCwsgAiADRwRAIAJBFGwgAGogCTYCACACQRRsIABqIAo4AgQgAkEUbCAAaiICIAQpAgA3AgggAiAEKAIINgIQCyADQQFqIgMgAUcNAAsLIAYkBAt3AQJ/IAAoAgQiAQRAIAAgASgCADYCBAUCfyAAKAIIIgEEQCABQX9qIQIgACgCACEBBUEAQcS1AxBTIgFFDQEaIAEgACgCADYCACAAIAE2AgAgAEHQDzYCCEHPDyECCyAAIAI2AgggAUEEaiACQRxsagshAQsgAQsnAQF/IAAoAgAiAARAA0AgACgCACEBIAAQQSABBEAgASEADAELCwsLzAgCCH8LfSAEQwAAgD+SIREgAwRAIAKyIRYgAkEASiEKIAFBfGohCQNAIAMqAgQhDSADKgIIIhRDAAAAAFsEQCANIBZdBEAgDUMAAAAAYARAIAAgDagiBSADIA0gBCANIBEQiwEgCSAFQQFqIAMgDSAEIA0gERCLAQUgCUEAIAMgDSAEIA0gERCLAQsLBQJAIAMqAgwhEiADKgIUIg4gBF4hBSAOIAQgBRshEyADKgIYIg8gEV0hBiAPIBEgBhshFSANIBQgDiAEk5SSIA0gBRsiDkMAAAAAYCANIBQgDyAEk5SSIBQgDZIiECAGGyIPQwAAAABgcQRAIA4gFl0gDyAWXXEEQCAOqCIGIA+oIgdGBEAgBkECdCAAaiIFIAUqAgAgFSATkyINQwAAgD8gDiAGsiIOkyAPIA6TkkMAAAA/lJMgAyoCEJSUkjgCACAGQQJ0IAFqIgUgBSoCACANIAMqAhCUkjgCAAwDCyAOIA9eBEAgByEFIBKMIRIgESAVIASTkyEUIBEgEyAEk5MhFSAQIQ0gDiEQIA8hDgUgBiEFIAchBiATIRQgDyEQCyAFQQJ0IABqIgcgByoCAEMAAIA/IA4gBbKTQwAAgD+SQwAAAD+UkyADKgIQIg8gEiAFQQFqIgeyIA2TlCAEkiITIBSTlCIOlJI4AgAgEiAPlCENIAYgB0oEQCANQwAAAD+UIRcgByEFA0AgBUECdCAAaiIIIBcgDpIgCCoCAJI4AgAgDSAOkiEOIAVBAWoiBSAGRw0ACwsgBkECdCAAaiIFIA9DAACAPyAQIAayk0MAAAAAkkMAAAA/lJOUIBUgEiAGIAdrspQgE5KTlCAOkiAFKgIAkjgCACAGQQJ0IAFqIgUgFSAUkyAPlCAFKgIAkjgCAAwCCwsgCgRAQQAhBQNAIAWyIg4gDZMgFJUgBJIhEiAFQQFqIgayIg8gDZMgFJUgBJIhEyANIA5dIgcgECAPXiIIcQRAIAAgBSADIA0gBCAOIBIQiwEgACAFIAMgDiASIA8gExCLASAAIAUgAyAPIBMgECAREIsBBQJAIBAgDl0iCyANIA9eIgxxBEAgACAFIAMgDSAEIA8gExCLASAAIAUgAyAPIBMgDiASEIsBIAAgBSADIA4gEiAQIBEQiwEMAQsgByAQIA5ecQRAIAAgBSADIA0gBCAOIBIQiwEgACAFIAMgDiASIBAgERCLAQwBCyALIA0gDl5xBEAgACAFIAMgDSAEIA4gEhCLASAAIAUgAyAOIBIgECAREIsBDAELIAggDSAPXXEEQCAAIAUgAyANIAQgDyATEIsBIAAgBSADIA8gEyAQIBEQiwEMAQsgDCAQIA9dcQRAIAAgBSADIA0gBCAPIBMQiwEgACAFIAMgDyATIBAgERCLAQUgACAFIAMgDSAEIBAgERCLAQsLCyACIAZHBEAgBiEFDAELCwsLCyADKAIAIgMNAAsLC5EBAQR9IAAQsQkhACABKgIIIAEqAgAiBpMgASoCDCIHIAEqAgQiBZOVIQQgAARAIAAgBDgCCCAAQwAAgD8gBJVDAAAAACAEQwAAAABcGzgCDCAAIAYgAyAFkyAElJIgArKTOAIEIABDAACAP0MAAIC/IAEoAhAbOAIQIAAgBTgCFCAAIAc4AhggAEEANgIACyAAC+EEAgt/A30jBCEJIwRBoARqJAQgCSEMIAlBiARqIgZCADcCACAGQQA2AgggCUGEBGoiB0EANgIAIAAoAgAiCEHAAEoEQCAIQQN0QQRyEFMhBSAAKAIAIQgFIAwhBQsgCEECdCAFaiEKIAJBFGwgAWogBCAAKAIEIgJqskMAAIA/kjgCBCACQQBKBEAgCkEEaiEPQQAhAiAEIQsDQCALsiERIAVBACAIQQJ0EGoaIApBACAAKAIAQQJ0QQRqEGoaIAIEQCAHIQQDQCACKgIYIBFfBEAgBCACKAIANgIAIAJDAAAAADgCECACIAYoAgQ2AgAgBiACNgIEBSACIQQLIAQoAgAiAg0ACwsgASoCBCIQIBFDAACAP5IiEl8EQAN/IBAgASoCDFwEQCAGIAEgAyARELQJIgIEQCACIAcoAgA2AgAgByACNgIACwsgAUEUaiECIAEqAhgiECASXwR/IAIhAQwBBSACCwshAQsgBygCACICBEAgBSAPIAAoAgAgAiARELMJCyAAKAIAIgJBAEoEQEEAIQJDAAAAACEQA38gACgCDCACIAAoAgggDWxqaiACQQJ0IAVqKgIAIBAgAkECdCAKaioCAJIiEJKLQwAAf0OUQwAAAD+SqCIEQf8BIARB/wFIGzoAACACQQFqIgIgACgCACIESA0AIAQLIQILIAcoAgAiDgRAIA4hBANAIAQgBCoCCCAEKgIEkjgCBCAEKAIAIgQNAAsLIAtBAWohCyANQQFqIg0gACgCBEgEQCACIQggDiECDAELCwsgBhCyCSAFIAxHBEAgBRBBCyAJJAQLkQMCC38CfSAFjCETIANBAEoiCwR/A0AgCEECdCACaigCACAJaiEJIAhBAWoiCCADRw0ACyAJQRRsQRRqBUEUCxBTIgoEQCALBEBBACEIA0AgEEEDdCABaiENIBFBAnQgAmoiEigCACIOQQBKBEAgDkF/aiIPQQN0IA1qKgIEIQUgDiEJQQAhCwNAIAUgC0EDdCANaioCBCIUXARAIAhBFGwgCmogBSAUXiIJNgIQIAhBFGwgCmogDyALIAkbQQN0IA1qIgwqAgAgBJRDAAAAAJI4AgAgCEEUbCAKaiAMKgIEIBOUQwAAAACSOAIEIAhBFGwgCmogCyAPIAkbQQN0IA1qIgwqAgAgBJRDAAAAAJI4AgggCEEUbCAKaiAMKgIEIBOUQwAAAACSOAIMIAhBAWohCCASKAIAIQkLIAtBAWoiDCAJSARAIAshDyAUIQUgDCELDAELCwsgDiAQaiEQIBFBAWoiESADRw0ACwVBACEICyAKIAgQzQQgCiAIELAJIAAgCiAIIAYgBxC1CSAKEEELC4wFAgp/An0jBCENIwRBEGokBCANIgdBADYCACACIAKUIRAgAUEASiIOBEACQANAIAhBDmwgAGosAAxBAUYgBmohBiAIQQFqIgggAUcNAAsgBCAGNgIAIAYEQCADIAZBAnQQUyIGNgIAIAZFBEAgBEEANgIADAILQQAhBgNAAkAgC0EBRgRAIAcoAgBBA3QQUyIJRQ0BCyAHQQA2AgAgDgR/QQAhBUF/IQhDAAAAACECQwAAAAAhDwNAIAVBDmwgAGohCgJAAkACQAJAAkAgBUEObCAAaiwADEEBaw4EAAECAwQLIAhBf0oEQCADKAIAIAhBAnRqIAcoAgAgBms2AgALIAouAQCyIQIgBUEObCAAai4BArIhDyAHIAcoAgAiBkEBajYCACAJIAYgAiAPEOwDIAhBAWohCAwDCyAKLgEAsiECIAVBDmwgAGouAQKyIQ8gByAHKAIAIgpBAWo2AgAgCSAKIAIgDxDsAwwCCyAJIAcgAiAPIAVBDmwgAGouAQSyIAVBDmwgAGouAQayIAouAQCyIAVBDmwgAGoiDC4BArIgEEEAEI8GIAouAQCyIQIgDC4BArIhDwwBCyAJIAcgAiAPIAVBDmwgAGouAQSyIAVBDmwgAGouAQayIAVBDmwgAGouAQiyIAVBDmwgAGouAQqyIAouAQCyIAVBDmwgAGoiDC4BArIgEEEAEI4GIAouAQCyIQIgDC4BArIhDwsgBUEBaiIFIAFHDQALIAcoAgAFQX8hCEEACyEFIAMoAgAgCEECdGogBSAGazYCACALQQFqIgtBAkkNAQwDCwtBABBBIAMoAgAQQSADQQA2AgAgBEEANgIAC0EAIQkLBSAEQQA2AgALIA0kBCAJC2sBA38jBCEHIwRBEGokBCAHQQRqIghBADYCACAHIglBADYCACABIAJDMzOzPiAEIAMgAyAEXhuVIAcgCBC3CSIBBEAgACABIAkoAgAiACAIKAIAIAMgBCAFIAYQtgkgABBBIAEQQQsgByQEC6UFAQl/IwQhDCMEQRBqJAQgDCIGQgA3AwAgAUEASgRAIAIgBGtBAEghCyACQQFqIARrIQcgACEKA0AgBkEAIAQQahoCfwJAAkACQAJAAkAgBEECaw4EAAECAwQLIAsEf0EAIQVBAAVBACEAQQAhBQN/IAAgA2wgCmoiCCwAACIJQf8BcSAAQQdxIAZqLQAAayAFaiEFIABBAmpBB3EgBmogCToAACAIIAVBAXY6AAAgAEEBaiIAIAdHDQAgBwsLDAQLIAsEf0EAIQVBAAVBACEAQQAhBQN/IAAgA2wgCmoiCCwAACIJQf8BcSAAQQdxIAZqLQAAayAFaiEFIABBA2pBB3EgBmogCToAACAIIAVBA246AAAgAEEBaiIAIAdHDQAgBwsLDAMLIAsEf0EAIQVBAAVBACEAQQAhBQN/IAAgA2wgCmoiCCwAACIJQf8BcSAAQQdxIAZqLQAAayAFaiEFIABBBGpBB3EgBmogCToAACAIIAVBAnY6AAAgAEEBaiIAIAdHDQAgBwsLDAILIAsEf0EAIQVBAAVBACEAQQAhBQN/IAAgA2wgCmoiCCwAACIJQf8BcSAAQQdxIAZqLQAAayAFaiEFIABBBWpBB3EgBmogCToAACAIIAVBBW46AAAgAEEBaiIAIAdHDQAgBwsLDAELIAsEf0EAIQVBAAVBACEAQQAhBQN/IAAgA2wgCmoiCCwAACIJQf8BcSAAQQdxIAZqLQAAayAFaiEFIAAgBGpBB3EgBmogCToAACAIIAUgBG46AAAgAEEBaiIAIAdHDQAgBwsLCyIAIAJIBEADQCAAIANsIApqIAUgAEEHcSAGai0AAGsiBSAEbjoAACAAQQFqIgAgAkcNAAsLIApBAWohCiANQQFqIg0gAUcNAAsLIAwkBAuTBQEJfyMEIQwjBEEQaiQEIAwiBkIANwMAIAJBAEoEQCABIARrQQBIIQsgAUEBaiAEayEHIAAhCgNAIAZBACAEEGoaAn8CQAJAAkACQAJAIARBAmsOBAABAgMECyALBH9BACEFQQAFQQAhAEEAIQUDfyAAIApqIggsAAAiCUH/AXEgAEEHcSAGai0AAGsgBWohBSAAQQJqQQdxIAZqIAk6AAAgCCAFQQF2OgAAIABBAWoiACAHRw0AIAcLCwwECyALBH9BACEFQQAFQQAhAEEAIQUDfyAAIApqIggsAAAiCUH/AXEgAEEHcSAGai0AAGsgBWohBSAAQQNqQQdxIAZqIAk6AAAgCCAFQQNuOgAAIABBAWoiACAHRw0AIAcLCwwDCyALBH9BACEFQQAFQQAhAEEAIQUDfyAAIApqIggsAAAiCUH/AXEgAEEHcSAGai0AAGsgBWohBSAAQQRqQQdxIAZqIAk6AAAgCCAFQQJ2OgAAIABBAWoiACAHRw0AIAcLCwwCCyALBH9BACEFQQAFQQAhAEEAIQUDfyAAIApqIggsAAAiCUH/AXEgAEEHcSAGai0AAGsgBWohBSAAQQVqQQdxIAZqIAk6AAAgCCAFQQVuOgAAIABBAWoiACAHRw0AIAcLCwwBCyALBH9BACEFQQAFQQAhAEEAIQUDfyAAIApqIggsAAAiCUH/AXEgAEEHcSAGai0AAGsgBWohBSAAIARqQQdxIAZqIAk6AAAgCCAFIARuOgAAIABBAWoiACAHRw0AIAcLCwsiACABSARAA0AgACAKaiAFIABBB3EgBmotAABrIgUgBG46AAAgAEEBaiIAIAFHDQALCyADIApqIQogDUEBaiINIAJHDQALCyAMJAQLkAEBBH8jBCEIIwRBIGokBCAAIAcgCEEQaiIJEJEGIQogACAHIAUgBiAIQRhqIgcgCEEUaiILQQBBABDRBCAIIgAgATYCDCAIIAI2AgAgCCADNgIEIAggBDYCCCACRSADRXIEQCAJKAIAIQAFIAAgCSgCACIAIAogBSAGIAcoAgAgCygCABC4CQsgABBBIAgkBAu6AQEDfyACQQBHIQYgACgCBCIEIAAoAhxqQSJqEEpB//8DcSIFIAFKBEAgBgRAIAIgBCAAKAIgaiABQQJ0ahBKQRB0QRB1NgIACyADBEAgAyAEIAAoAiBqIAFBAnRqQQJqEEpBEHRBEHU2AgALBSAGBEAgAiAEIAAoAiBqIAVBAnRBfGpqEEpBEHRBEHU2AgALIAMEQCADIAQgACgCIGogBUECdGogASAFa0EBdGoQSkEQdEEQdTYCAAsLC1ABAX8gACgCBCABSARAIAAgACABEFgQ4AQLIAAoAgAiAyABSARAA0AgACgCCCADQQF0aiACLgEAOwEAIANBAWoiAyABRw0ACwsgACABNgIAC1ABAX8gACgCBCABSARAIAAgACABEFgQhQILIAAoAgAiAyABSARAA0AgACgCCCADQQJ0aiACKAIANgIAIANBAWoiAyABRw0ACwsgACABNgIAC0sBA38gACgCBCABSARAIAFBKGwQUyECIABBCGoiAygCACIEBEAgAiAEIAAoAgBBKGwQRhogAygCABBBCyADIAI2AgAgACABNgIECwtNAQN/IwQhAyMEQRBqJAQgAyECIABBKGoiBCgCACABSARAIAJDAACAvzgCACAAQRxqIAEgAhC+CSACQX87AQAgBCABIAIQvQkLIAMkBAtwAQF/IwQhBCMEQRBqJAQgARCTBiAEIAAqAiQgAS8BCLKUIAAqAiggAS8BCrKUEDIgAiAEKQMANwIAIAQgACoCJCABLwEIIAEvAQRqspQgACoCKCABLwEKIAEvAQZqspQQMiADIAQpAwA3AgAgBCQEC8oCAQp/IwQhBSMEQRBqJAQgAEFAayAAKAJYEFUiAxCTBiAAKAIcIQYgACgCBEECcQRAIAAoAhQgBiADLwEIIAYgA0EKaiIBLwEAbGoiAmoiBEEBampBfzoAACAAKAIUIARqQX86AAAgACgCFCACQQFqakF/OgAAIAAoAhQgAmpBfzoAAAUgA0EKaiEIA38gASECQQAhBwNAIAMvAQggB2ogBiAILwEAIARqbGoiCSAAKAIUaiACQbALaiwAACIKQS5GQR90QR91OgAAIAAoAhQgCUHtAGpqIApB2ABGQR90QR91OgAAIAJBAWohAiAHQQFqIgdB7ABHDQALIAFB7ABqIQEgBEEBaiIEQRtHDQAgCAshAQsgBSAAKgIkIAMvAQiyQwAAAD+SlCAAKgIoIAEvAQCyQwAAAD+SlBAyIAAgBSkDADcCLCAFJAQLgQICBn8CfSMEIQUjBEEQaiQEIAVBCGohAyAFIQQgABDCCSAAQUBrIgYoAgBBAEoEQANAIAYgAhBVIgEoAhgEQCABKAIAQYCABE0EQCADEDogBBA6IAAgASADIAQQwQkgASgCGCABKAIAQf//A3EgASoCECIHIAEqAhQiCCAHIAEvAQSykiAIIAEvAQaykiADKgIAIAMqAgQgBCoCACAEKgIEIAEqAgwQlgYLCyACQQFqIgIgBigCAEgNAAsLIABBNGoiAigCAEEASgRAQQAhAANAIAIgABBQKAIALABQBEAgAiAAEFAoAgAQ0AQLIABBAWoiACACKAIASA0ACwsgBSQEC9QBAQJ9IAYgBCoCACADQRxsIABqKgIIkjgCACAGIAUqAgAgA0EcbCAAaioCDJI4AgQgBiAEKgIAIANBHGwgAGoqAhSSOAIQIAYgBSoCACADQRxsIABqKgIYkjgCFCAGQwAAgD8gAbKVIgcgA0EcbCAAai8BALKUOAIIIAZDAACAPyACspUiCCADQRxsIABqLwECspQ4AgwgBiAHIANBHGwgAGovAQSylDgCGCAGIAggA0EcbCAAai8BBrKUOAIcIAQgA0EcbCAAaioCECAEKgIAkjgCAAtGACACLAA8RQRAIAEQ7gMgASACKAIQNgIAIAFBQGsgAjYCACABIAA2AkQgASADOAJIIAEgBDgCTAsgASABLgE+QQFqOwE+C2IAIAEEQCABIAAoAgQgACgCHGpBBGoQSkEQdEEQdTYCAAsgAgRAIAIgACgCBCAAKAIcakEGahBKQRB0QRB1NgIACyADBEAgAyAAKAIEIAAoAhxqQQhqEEpBEHRBEHU2AgALC2wBAX8gBUEASgRAIARBAEohByABIAJqIAMgBmxqIQEDQCAHBEBBACECA0AgASACaiIDIAAgAy0AAGosAAA6AAAgAkEBaiICIARHDQALCyAFQX9qIQIgASAGaiEBIAVBAUoEQCACIQUMAQsLCwsvAQJ/A0AgACACaiACsyABlKkiA0H/ASADQf8BSRs6AAAgAkEBaiICQYACRw0ACwuzBgIUfwV9IwQhCiMEQSBqJAQgACgCGCERIAAoAhwhEiACKgIAIhhDAAAAAF4EfSABIBgQ0gQFIAEgGIwQmAYLIRggCkEUaiEOIApBEGohEyAKQQxqIQ8gCkEIaiEQIApBBGohFCAKIRUgACACLQAUIgQiBTYCGCAAIAItABUiByIGNgIcQwAAgD8gBLKVIRlDAACAPyAHspUhGiAFEJIGIRsgBhCSBiEcIAIoAgwiBUEASgRAQQAhBEEAIQcDQCAHQQR0IANqKAIMBEAgAigCECEFIAEgAigCCCIGBH8gBEECdCAGaigCAAUgAigCBCAEagsQ1AQhCyAHQQR0IANqIgYgACgCFCIIIAYvAQhqOwEIIAdBBHQgA2oiCSAIIAkvAQpqOwEKIAdBBHQgA2oiDCAMLwEEIAhrOwEEIAdBBHQgA2oiDSANLwEGIAhrOwEGIAEgCyAOIBMQvAkgASALIBggACgCGLOUIBggACgCHLOUIA8gECAUIBUQ0QQgASAAKAIgIAYvAQhqIAAoAhAiCCAJLwEKbGogDC8BBEEBIAAoAhgiFmtqIA0vAQZBASAAKAIcIhdraiAIIBggFrOUIBggF7OUIAsQuwkgACgCGCILQQFLBEAgACgCICAGLwEIaiAAKAIQIgggCS8BCmxqIAwvAQQgDS8BBiAIIAsQugkLIAAoAhwiC0EBSwRAIAAoAiAgBi8BCGogACgCECIIIAkvAQpsaiAMLwEEIA0vAQYgCCALELkJCyAEQRxsIAVqIAYuAQgiBjsBACAEQRxsIAVqIAkuAQoiCTsBAiAEQRxsIAVqIAwvAQQiDCAGQf//A3FqOwEEIARBHGwgBWogDS8BBiIGIAlB//8DcWo7AQYgBEEcbCAFaiAYIA4oAgCylDgCECAEQRxsIAVqIBsgGSAPKAIAIgmylJI4AgggBEEcbCAFaiAcIBogECgCACINspSSOAIMIARBHGwgBWogGyAZIAkgDGqylJI4AhQgBEEcbCAFaiAcIBogBiANarKUkjgCGCACKAIMIQULIAdBAWohByAEQQFqIgQgBUgNAAsLIAAgETYCGCAAIBI2AhwgCiQECzIAIABBf2oiACAAQQF1ciIAIABBAnVyIgAgAEEEdXIiACAAQQh1ciIAIABBEHVyQQFqC7sCAQV/IwQhBiMEQRBqJAQgBiICEGggAiAAQUBrIgQoAgAQmgYgAigCCEEAIAIQmQYQahogBCgCAEEASgRAA0AgBCADEFUuAQQhBSACIAMQzwEgBTsBBCAEIAMQVS4BBiEFIAIgAxDPASAFOwEGIANBAWoiAyAEKAIASA0ACwsgASACQQAQzwEgAigCABCXBiACKAIAQQBKBEBBACEBA0AgAiABEM8BKAIMBEAgAiABEM8BLgEIIQMgBCABEFUgAzsBCCACIAEQzwEuAQohAyAEIAEQVSADOwEKIAIgARDPAS4BBCAEIAEQVS4BBEYEQCACIAEQzwEaIAQgARBVGgsgACAAKAIgIAIgARDPAS8BCiACIAEQzwEvAQZqELoBNgIgCyABQQFqIgEgAigCAEgNAAsLIAIQZyAGJAQLkQEBBX9BMBBTIgNFIgYgASACayIFQQN0EFMiBEUiB3IEQCAGRQRAIAMQQQsgB0UEQCAEEEELBSAAQQA2AgAgACABNgIIIABBgIACNgIMIABBADYCICAAIAM2AgQgACAENgIkIAAgAjYCFCAAIAE2AhAgAEEBNgIYIABBATYCHCADIAVBgIACIAJrIAQgBRCjCQsLiwEBB38jBCEDIwRBEGokBCADIQQgACgCCCICIAAoAgggACgCAEECdGoiBUkEQCACIQYgAiEAA0AgACgCACIHBEAgACAGa0EDdCEIQQAhAgNAIAdBASACdHEEQCAEIAIgCGo2AgAgASAEEHgLIAJBAWoiAkEgRw0ACwsgAEEEaiIAIAVJDQALCyADJAQLMQAgACgCWEF/TARAIAAgACgCBEECcQR/IABBAkECEIgGBSAAQdkBQRsQiAYLNgJYCwsHACAAEJ0GC78BAQJ/IwQhASMEQRBqJAQgAEEkahA6IABBLGoQOiAAQTRqEGggAEFAayICQQA2AgQgAkEANgIAIAJBADYCCCAAQQA2AlAgAEEANgJMIABBADYCVCAAQQA6AAAgAEEANgIEIABBADYCCCAAQQA2AgwgAEEBNgIQIABCADcCFCAAQgA3AhwgAUMAAAAAQwAAAAAQMiAAIAEpAwA3AiQgAUMAAAAAQwAAAAAQMiAAIAEpAwA3AiwgAEF/NgJYIAEkBAuPAgIGfwJ9IwQhCSMEQRBqJAQgCSIIQQhqIgcgBCADEEBDAACAPyAHKgIAIg0gDZQgByoCBCINIA2UkpUhDiAAKAIgIgAgAkEUbGohBCABIAJIBEAgBUH/AXEhAiAGQf8BcSEKIAVBCHZB/wFxIQsgBkEIdkH/AXEhDCAFQRB2Qf8BcSEFIAZBEHZB/wFxIQYgAUEUbCAAaiEAA0AgCCAAIAMQQCAAIAIgCiAOIAgqAgAgByoCAJQgCCoCBCAHKgIElJKUQwAAAABDAACAPxBkIg0Q4AIgCyAMIA0Q4AJBCHRyIAUgBiANEOACQRB0ciAAKAIQQYCAgHhxcjYCECAAQRRqIgAgBEkNAAsLIAkkBAu0AQIGfwJ9IwQhBiMEQRBqJAQgBiEEIAAoAggiAkEASgRAA0AgACgCBCAFQQJ0aigCACIHKAIAQQBKBEBBACECA0AgBCAHIAIQpQYiAyoCBCABKgIAIgiUIAMqAgggASoCBCIJlCAIIAMqAgyUIAkgAyoCEJQQNiADIAQpAgA3AgQgAyAEKQIINwIMIAJBAWoiAiAHKAIASA0ACyAAKAIIIQILIAVBAWoiBSACSA0ACwsgBiQEC+kBAQh/IwQhByMEQRBqJAQgByIDEGggAEEANgIMIABBADYCECAAKAIIQQBKBEADQCAAKAIEIARBAnRqKAIAIgFBDGoiAhB+RQRAIAMgAigCABD3AyABQRhqIQUgAigCAEEASgRAQQAhAQNAIAUgAiABEJQCLwEAEPoDIQYgAyABEPoDIgggBikCADcCACAIIAYpAgg3AgggCCAGKAIQNgIQIAFBAWoiASACKAIASA0ACwsgBSADEJAHIAJBABDAASAAIAUoAgAgACgCEGo2AhALIARBAWoiBCAAKAIISA0ACwsgAxBnIAckBAu+AQEBfyAGQYCAgAhPBEACQCAIQQ9xRSAHQwAAAABfcgRAIAAgASACIAMgBCAFIAYQ/AEMAQsgAEHIAGoiCRB+RQRAIAEgCRBwKAIARgRAIAAoAhghASAAIAIgAyAHIAgQoAMgACAGEIECIAAgASAAKAIYIAIgAyAEIAUQpAYMAgsLIAAgARCYAiAAKAIYIQEgACACIAMgByAIEKADIAAgBhCBAiAAIAEgACgCGCACIAMgBCAFEKQGIAAQ5QILCwt7AQF/IApBgICACE8EQAJAIABByABqIgsQfkUEQCABIAsQcCgCAEYEQCAAQQZBBBCwASAAIAIgAyAEIAUgBiAHIAggCSAKENoEDAILCyAAIAEQmAIgAEEGQQQQsAEgACACIAMgBCAFIAYgByAIIAkgChDaBCAAEOUCCwsLggsCDX8OfSMEIRAjBEEQaiQEIAdFBEAgBhBcIAZqIQcLIBAhDyADIAAqAgggAyoCAKiykiIZOAIAIAMgACoCDCADKgIEqLKSIhc4AgQgFyAFKgIMIhheRQRAIAIgACoCACIClSEdIAhDAAAAAF4iESAXIAIgHZQiJJIiAiAFKgIEIhpdRXJBAXMgByAGS3EEQCAHIQwDQCAGQQogDCAGaxDpASIGQQFqIAcgBhsiBiAHSSAkIAKSIhcgGl1xBEAgFyECDAELCwUgFyECCyARIAciCyAGIg1rQZHOAEhyBH8gBwUgBiAHSSACIBhdcQR/IAYhDCACIRcDfyAMQQogCyAMaxDpASIMQQFqIAcgDBsiDCAHSSAkIBeSIhcgGF1xBH8MAQUgDAsLBSAGCwsiDiAGRwRAIAFBDGoiEigCACEUIAEgDiANayIHQQZsIhUgB0ECdBCwASABKAI0IQsgASgCOCEHIAYgDkkEQAJAIAYhDSABKAIwIQwgCyEGIBkhFwNAAkAgDSELIBMhCiAXIRkgAiEYA0ACQCARRQRAIA0hCyAXIRkMAQsgCkUEQCAAIB0gCyAOIAggGSADKgIAk5MQ1wQiCkEBaiAKIAogC0YbIQoLIAsgCkkEQCAKIRMgGCECDAELIAMqAgAhGSALIA5JBEADQCALQQFqIAsgCywAACILEOICIgogC0EKRnIbIQsgCiALIA5JcQ0ACwsgJCAYkiEYIAsgDk8NBEEAIQoMAQsLIA8gCywAACIKIg02AgAgCkF/SgR/IAtBAWoFAn8gDyALIA4QpgIhFiAPKAIAIg1FDQIgFgsgC2oLIgsgDkkCfwJAIA1BIE8NAAJ/AkACQCANQQprDgQBAwMAAwsgGSEXQQYMAQsgAyoCACEXQQdBBiAkIAKSIgIgBSoCDF4bCwwBCyAAIA1B//8DcRDhAiIKBEACQCAdIAoqAgSUIRcCQCANQQlrIg0EQCANQRdHDQELDAELIBkgHSAKKgIQlJIhGyACIB0gCioCDJSSIRggAiAdIAoqAhSUkiEcIBkgHSAKKgIIlJIiGiAFKgIIIiBfBEAgGyAFKgIAIiFgBEAgCioCGCEeIAoqAhwhHyAKKgIgISIgCioCJCEjIAkEQAJAIBogIV0EQCAeQwAAgD8gGyAhkyAbIBqTlZMgIiAek5SSIR4gISEaCyAYIAUqAgQiIV0EQCAfICMgH5NDAACAPyAcICGTIBwgGJOVk5SSIR8gISEYCyAbICBeBEAgHiAgIBqTIBsgGpOVICIgHpOUkiEiICAhGwsgHCAFKgIMIiBeBEAgHyAjIB+TICAgGJMgHCAYk5WUkiEjICAhHAsgGCAcYEUNACAZIBeSIRdBBgwGCwsgByAMQf//A3EiDTsBACAHIAxBAWo7AQIgByAMQQJqQf//A3EiCjsBBCAHIA07AQYgByAKOwEIIAcgDEEDajsBCiAGIBo4AgAgBiAYOAIEIAYgBDYCECAGIB44AgggBiAfOAIMIAYgGzgCFCAGIBg4AhggBiAENgIkIAYgIjgCHCAGIB84AiAgBiAbOAIoIAYgHDgCLCAGIAQ2AjggBiAiOAIwIAYgIzgCNCAGIBo4AjwgBkFAayAcOAIAIAYgBDYCTCAGIB44AkQgBiAjOAJIIAdBDGohByAMQQRqIQwgBkHQAGohBgsLCwVDAAAAACEXCyAZIBeSIRdBAAtBB0dxBEAgCyENDAILCwsLBSALIQYLIAFBGGoiACAGIAEoAiBrQRRtEPcDIBIgByABKAIUa0EBdRDAASASKAIAIQMgASABKAIAQX9qEKUGIgQgBCgCACADIBQgFWprajYCACABIAY2AjQgASAHNgI4IAEgACgCADYCMAsLIBAkBAsrACAFQYCAgAhPBEAgACABEGMgACACIAMgBCAHEKcGIAAgBUEAIAYQjwILCywAIAVBgICACE8EQCAAIAEQYyAAIAIQYyAAIAMQYyAAIAQQYyAAIAUQgQILCzAAIAVBgICACE8EQCAAIAEQYyAAIAIQYyAAIAMQYyAAIAQQYyAAIAVBASAGEI8CCwtVAQF/IAAoAgAiAiAAKAIERgRAIAAgACACQQFqEFgQ3gQgACgCACECCyAAKAIIIAJBBHRqIgIgASkCADcCACACIAEpAgg3AgggACAAKAIAQQFqNgIAC9cBAgR/AX0jBCEDIwRBEGokBCADIQIgABA6IABBFGoQ9wEgAEGEAWohBCAAQSRqIQEDQCABEDogAUEIaiIBIARHDQALIABBADYCCCAAQwAAAAA4AgwgAEMAAAAAOAIQIAJDAAAAxkMAAADGQwAAAEZDAAAARhA2IAAgAikCADcCFCAAIAIpAgg3AhxBACEBA0AgAiABskMAAABAlEPbD0lAlEMAAEBBlSIFEPkCIAUQ+AIQMiAAQSRqIAFBA3RqIAIpAwA3AgAgAUEBaiIBQQxHDQALIAMkBAs2ACAAQYABSQR/QQEFIABBgBBJBH9BAgVBAEEEQQMgAEGAeHEiAEGAsANGGyAAQYC4A0YbCwsLphIBB38jBCEBIwRBEGokBCAARQRAEMcCIQALIAFDAAAAAEMAAAAAQwAAAABDAACAPxA2IABBoAFqIgIgASkCADcCACACIAEpAgg3AgggAUOamRk/Q5qZGT9DmpkZP0MAAIA/EDYgAEGwAWoiAiABKQIANwIAIAIgASkCCDcCCCABQ9ejcD9D16NwP0PXo3A/QwAAgD8QNiAAQcABaiICIAEpAgA3AgAgAiABKQIINwIIIAFDAAAAAEMAAAAAQwAAAABDAAAAABA2IABB0AFqIgIgASkCADcCACACIAEpAgg3AgggAUMAAIA/QwAAgD9DAACAP0NI4Xo/EDYgAEHgAWoiAiABKQIANwIAIAIgASkCCDcCCCABQwAAAABDAAAAAEMAAAAAQ5qZmT4QNiAAQfABaiICIAEpAgA3AgAgAiABKQIINwIIIAFDAAAAAEMAAAAAQwAAAABDAAAAABA2IABBgAJqIgIgASkCADcCACACIAEpAgg3AgggAUMAAIA/QwAAgD9DAACAP0MAAIA/EDYgAEGQAmoiAiABKQIANwIAIAIgASkCCDcCCCABQ7gehT5DPQoXP0NI4Xo/Q83MzD4QNiAAQaACaiICIAEpAgA3AgAgAiABKQIINwIIIAFDuB6FPkM9Chc/Q0jhej9DH4UrPxA2IABBsAJqIgIgASkCADcCACACIAEpAgg3AgggAUOPwnU/Q4/CdT9Dj8J1P0MAAIA/EDYgAEHAAmoiBiABKQIANwIAIAYgASkCCDcCCCABQ4XrUT9DhetRP0OF61E/QwAAgD8QNiAAQdACaiIHIAEpAgA3AgAgByABKQIINwIIIAFDAACAP0MAAIA/QwAAgD9DXI8CPxA2IABB4AJqIgIgASkCADcCACACIAEpAgg3AgggAUP2KFw/Q/YoXD9D9ihcP0MAAIA/EDYgAEHwAmoiAiABKQIANwIAIAIgASkCCDcCCCABQ0jhej9DSOF6P0NI4Xo/QxSuBz8QNiAAQYADaiICIAEpAgA3AgAgAiABKQIINwIIIAFD16MwP0PXozA/Q9ejMD9DzcxMPxA2IABBkANqIgIgASkCADcCACACIAEpAgg3AgggAUNI4fo+Q0jh+j5DSOH6PkPNzEw/EDYgAEGgA2oiAiABKQIANwIAIAIgASkCCDcCCCABQ0jh+j5DSOH6PkNI4fo+QwAAgD8QNiAAQbADaiICIAEpAgA3AgAgAiABKQIINwIIIAFDuB6FPkM9Chc/Q0jhej9DAACAPxA2IABBwANqIgIgASkCADcCACACIAEpAgg3AgggAUO4HoU+Qz0KFz9DSOF6P0MUrkc/EDYgAEHQA2oiAiABKQIANwIAIAIgASkCCDcCCCABQx+F6z5DcT0KP0PNzEw/Q5qZGT8QNiAAQeADaiICIAEpAgA3AgAgAiABKQIINwIIIAFDuB6FPkM9Chc/Q0jhej9DzczMPhA2IABB8ANqIgIgASkCADcCACACIAEpAgg3AgggAUO4HoU+Qz0KFz9DSOF6P0MAAIA/EDYgAEGABGoiAiABKQIANwIAIAIgASkCCDcCCCABQ4/CdT1DFK4HP0NI4Xo/QwAAgD8QNiAAQZAEaiICIAEpAgA3AgAgAiABKQIINwIIIAFDuB6FPkM9Chc/Q0jhej9DUriePhA2IABBoARqIgMgASkCADcCACADIAEpAgg3AgggAUO4HoU+Qz0KFz9DSOF6P0PNzEw/EDYgAEGwBGoiBCABKQIANwIAIAQgASkCCDcCCCABQ7gehT5DPQoXP0NI4Xo/QwAAgD8QNiAAQcAEaiIFIAEpAgA3AgAgBSABKQIINwIIIAFDFK7HPkMUrsc+QxSuxz5DAACAPxA2IABB0ARqIgIgASkCADcCACACIAEpAgg3AgggAUMpXA8+Q65H4T5DzcxMP0MUrkc/EDYgAEHgBGoiAiABKQIANwIAIAIgASkCCDcCCCABQylcDz5DrkfhPkPNzEw/QwAAgD8QNiAAQfAEaiICIAEpAgA3AgAgAiABKQIINwIIIAFDzcxMP0PNzEw/Q83MTD9DKVwPPxA2IABBgAVqIgIgASkCADcCACACIAEpAgg3AgggAUO4HoU+Qz0KFz9DSOF6P0MfhSs/EDYgAEGQBWoiAiABKQIANwIAIAIgASkCCDcCCCABQ7gehT5DPQoXP0NI4Xo/QzMzcz8QNiAAQaAFaiICIAEpAgA3AgAgAiABKQIINwIIIAEgAyAHQ2ZmZj8QxwEgAEGwBWoiAyABKQIANwIAIAMgASkCCDcCCCAAQcAFaiICIAQpAgA3AgAgAiAEKQIINwIIIAEgBSAHQ5qZGT8QxwEgAEHQBWoiBSABKQIANwIAIAUgASkCCDcCCCABIAMgBkPNzEw/EMcBIABB4AVqIgIgASkCADcCACACIAEpAgg3AgggASAFIAZDzczMPhDHASAAQfAFaiICIAEpAgA3AgAgAiABKQIINwIIIAFDFK7HPkMUrsc+QxSuxz5DAACAPxA2IABBgAZqIgIgASkCADcCACACIAEpAgg3AgggAUMAAIA/Q/Yo3D5DMzOzPkMAAIA/EDYgAEGQBmoiAiABKQIANwIAIAIgASkCCDcCCCABQ2ZmZj9DMzMzP0MAAAAAQwAAgD8QNiAAQaAGaiICIAEpAgA3AgAgAiABKQIINwIIIAFDAACAP0NmZuY+QwAAAABDAACAPxA2IABBsAZqIgIgASkCADcCACACIAEpAgg3AgggAUO4HoU+Qz0KFz9DSOF6P0MzM7M+EDYgAEHABmoiAiABKQIANwIAIAIgASkCCDcCCCABQ7gehT5DPQoXP0NI4Xo/QzMzcz8QNiAAQdAGaiICIAEpAgA3AgAgAiABKQIINwIIIABB4AZqIgIgBCkCADcCACACIAQpAgg3AgggAUMzMzM/QzMzMz9DMzMzP0MzMzM/EDYgAEHwBmoiAiABKQIANwIAIAIgASkCCDcCCCABQ83MTD5DzcxMPkPNzEw+Q83MTD4QNiAAQYAHaiICIAEpAgA3AgAgAiABKQIINwIIIAFDzcxMPkPNzEw+Q83MTD5DMzOzPhA2IABBkAdqIgAgASkCADcCACAAIAEpAgg3AgggASQEC6YSAQd/IwQhASMEQRBqJAQgAEUEQBDHAiEACyABQ2ZmZj9DZmZmP0NmZmY/QwAAgD8QNiAAQaABaiICIAEpAgA3AgAgAiABKQIINwIIIAFDmpkZP0OamRk/Q5qZGT9DAACAPxA2IABBsAFqIgIgASkCADcCACACIAEpAgg3AgggAUMAAAAAQwAAAABDAAAAAEMzMzM/EDYgAEHAAWoiAiABKQIANwIAIAIgASkCCDcCCCABQwAAAABDAAAAAEMAAAAAQwAAAAAQNiAAQdABaiICIAEpAgA3AgAgAiABKQIINwIIIAFDrkfhPUOuR+E9QylcDz5DH4VrPxA2IABB4AFqIgIgASkCADcCACACIAEpAgg3AgggAUMAAAA/QwAAAD9DAAAAP0MAAAA/EDYgAEHwAWoiAiABKQIANwIAIAIgASkCCDcCCCABQwAAAABDAAAAAEMAAAAAQwAAAAAQNiAAQYACaiICIAEpAgA3AgAgAiABKQIINwIIIAFD9ijcPkP2KNw+Q/Yo3D5DFK7HPhA2IABBkAJqIgIgASkCADcCACACIAEpAgg3AgggAUPXo/A+Q9ej8D5D16MwP0PNzMw+EDYgAEGgAmoiAiABKQIANwIAIAIgASkCCDcCCCABQz0K1z5DhevRPkMK1yM/Q9ejMD8QNiAAQbACaiICIAEpAgA3AgAgAiABKQIINwIIIAFDcT2KPkNxPYo+Q3E9Cj9D4XpUPxA2IABBwAJqIgYgASkCADcCACAGIAEpAgg3AgggAUMK16M+QwrXoz5DrkchP0NSuF4/EDYgAEHQAmoiByABKQIANwIAIAcgASkCCDcCCCABQ83MzD5DzczMPkPNzEw/Q83MTD4QNiAAQeACaiICIAEpAgA3AgAgAiABKQIINwIIIAFDzczMPkPNzMw+Q83MDD9DzcxMPxA2IABB8AJqIgIgASkCADcCACACIAEpAgg3AgggAUPNzEw+QwAAgD5DmpmZPkOamRk/EDYgAEGAA2oiAiABKQIANwIAIAIgASkCCDcCCCABQ83MzD5DzczMPkPNzEw/Q5qZmT4QNiAAQZADaiICIAEpAgA3AgAgAiABKQIINwIIIAFDzczMPkPNzMw+Q83MTD9DzczMPhA2IABBoANqIgIgASkCADcCACACIAEpAgg3AgggAUOF69E+QxSuxz5DzcxMP0OamRk/EDYgAEGwA2oiAiABKQIANwIAIAIgASkCCDcCCCABQ2ZmZj9DZmZmP0NmZmY/QwAAAD8QNiAAQcADaiICIAEpAgA3AgAgAiABKQIINwIIIAFDAACAP0MAAIA/QwAAgD9DmpmZPhA2IABB0ANqIgIgASkCADcCACACIAEpAgg3AgggAUOF69E+QxSuxz5DzcxMP0OamRk/EDYgAEHgA2oiAiABKQIANwIAIAIgASkCCDcCCCABQzMzsz5DzczMPkP2KBw/Q1K4Hj8QNiAAQfADaiICIAEpAgA3AgAgAiABKQIINwIIIAFDzczMPkOPwvU+Q4/CNT9DcT1KPxA2IABBgARqIgIgASkCADcCACACIAEpAgg3AgggAUMfhes+Q3E9Cj9DzcxMP0MAAIA/EDYgAEGQBGoiAiABKQIANwIAIAIgASkCCDcCCCABQ83MzD5DzczMPkNmZmY/Q2Zm5j4QNiAAQaAEaiIDIAEpAgA3AgAgAyABKQIINwIIIAFDZmbmPkNmZuY+Q2ZmZj9DzcxMPxA2IABBsARqIgQgASkCADcCACAEIAEpAgg3AgggAUMUrgc/QxSuBz9DUrheP0PNzEw/EDYgAEHABGoiBSABKQIANwIAIAUgASkCCDcCCCABQwAAAD9DAAAAP0MAAAA/QwAAgD8QNiAAQdAEaiICIAEpAgA3AgAgAiABKQIINwIIIAFDmpkZP0OamRk/QzMzMz9DAACAPxA2IABB4ARqIgIgASkCADcCACACIAEpAgg3AgggAUMzMzM/QzMzMz9DZmZmP0MAAIA/EDYgAEHwBGoiAiABKQIANwIAIAIgASkCCDcCCCABQwAAgD9DAACAP0MAAIA/QwrXIz4QNiAAQYAFaiICIAEpAgA3AgAgAiABKQIINwIIIAFDFK5HP0OF61E/QwAAgD9DmpkZPxA2IABBkAVqIgIgASkCADcCACACIAEpAgg3AgggAUMUrkc/Q4XrUT9DAACAP0NmZmY/EDYgAEGgBWoiAiABKQIANwIAIAIgASkCCDcCCCABIAMgB0PNzEw/EMcBIABBsAVqIgMgASkCADcCACADIAEpAgg3AgggAEHABWoiAiAEKQIANwIAIAIgBCkCCDcCCCABIAUgB0OamRk/EMcBIABB0AVqIgUgASkCADcCACAFIAEpAgg3AgggASADIAZDzcxMPxDHASAAQeAFaiICIAEpAgA3AgAgAiABKQIINwIIIAEgBSAGQ83MzD4QxwEgAEHwBWoiAiABKQIANwIAIAIgASkCCDcCCCABQwAAgD9DAACAP0MAAIA/QwAAgD8QNiAAQYAGaiICIAEpAgA3AgAgAiABKQIINwIIIAFDZmZmP0MzMzM/QwAAAABDAACAPxA2IABBkAZqIgIgASkCADcCACACIAEpAgg3AgggAUNmZmY/QzMzMz9DAAAAAEMAAIA/EDYgAEGgBmoiAiABKQIANwIAIAIgASkCCDcCCCABQwAAgD9DmpkZP0MAAAAAQwAAgD8QNiAAQbAGaiICIAEpAgA3AgAgAiABKQIINwIIIAFDAAAAAEMAAAAAQwAAgD9DMzOzPhA2IABBwAZqIgIgASkCADcCACACIAEpAgg3AgggAUMAAIA/QwAAgD9DAAAAAENmZmY/EDYgAEHQBmoiAiABKQIANwIAIAIgASkCCDcCCCAAQeAGaiICIAQpAgA3AgAgAiAEKQIINwIIIAFDAACAP0MAAIA/QwAAgD9DMzMzPxA2IABB8AZqIgIgASkCADcCACACIAEpAgg3AgggAUPNzEw/Q83MTD9DzcxMP0PNzEw+EDYgAEGAB2oiAiABKQIANwIAIAIgASkCCDcCCCABQ83MTD5DzcxMPkPNzEw+QzMzsz4QNiAAQZAHaiIAIAEpAgA3AgAgACABKQIINwIIIAEkBAsDAAELSwEDfyAAKAIEIAFIBEAgAUEMbBBTIQIgAEEIaiIDKAIAIgQEQCACIAQgACgCAEEMbBBGGiADKAIAEEELIAMgAjYCACAAIAE2AgQLC0sBA38gACgCBCABSARAIAFBMGwQUyECIABBCGoiAygCACIEBEAgAiAEIAAoAgBBMGwQRhogAygCABBBCyADIAI2AgAgACABNgIECwuYAQECfyABIAAoAghrQRhtIQMgACgCACIBIAAoAgRGBEAgACAAIAFBAWoQWBD5AyAAKAIAIQELIAEgA0oEQCAAKAIIIANBGGxqIgRBGGogBCABIANrQRhsELMBGgsgACgCCCADQRhsaiIBIAIpAgA3AgAgASACKQIINwIIIAEgAikCEDcCECAAIAAoAgBBAWo2AgAgACgCCBoLXwEBfyAAKAIAIgIgACgCBEYEQCAAIAAgAkEBahBYEPkDIAAoAgAhAgsgACgCCCACQRhsaiICIAEpAgA3AgAgAiABKQIINwIIIAIgASkCEDcCECAAIAAoAgBBAWo2AgALxwIBAX8gAEHU2ABqEGcgAEHA2ABqKAIIIgEEQCABEEELIABBtNgAaigCCCIBBEAgARBBCyAAQajYAGoQZyAAQYTYAGoQZyAAQfzWAGoQ1QQgAEGMOmoiAUEcahBnIAFBEGoQZyABQQRqEGcgAEGAOmooAggiAQRAIAEQQQsgAEH0OWooAggiAQRAIAEQQQsgAEHYOWoiARD2CSABQQxqEGcgASgCCCIBBEAgARBBCyAAQcQ5aigCCCIBBEAgARBBCyAAQdw3ahC4BSAAQcA3ahD3CSAAQZw3ahCbBCAAQag0ahBnIABBnDRqEGcgAEGQNGoQZyAAQYQ0aigCCCIBBEAgARBBCyAAQfgzaigCCCIBBEAgARBBCyAAQYQzahBnIABB+DJqEGcgAEHsMmoQZyAAQeAyahBnIABB1DJqEGcgAEEIahC8BgtgAQF9IAAqAgAgASoCACICXgRAIAAgAjgCAAsgACoCBCABKgIEIgJeBEAgACACOAIECyAAKgIIIAEqAgAiAl0EQCAAIAI4AggLIAAqAgwgASoCBCICXQRAIAAgAjgCDAsL8QEBAX8gAkGAAUkEfyAAIAI6AABBAQUCfyACQYAQSQRAQQAgAUECSA0BGiAAIAJBBnZBwAFqOgAAIAAgAkE/cUGAAXI6AAFBAgwBCwJAIAJBgHhxQYCwA2siAwRAIANBgAhHDQFBAAwCC0EAIAFBBEgNARogACACQRJ2QfABajoAACAAIAJBDHZBP3FBgAFyOgABIAAgAkEGdkE/cUGAAXI6AAIgACACQT9xQYABcjoAA0EEDAELQQAgAUEDSA0AGiAAIAJBDHZB4AFqOgAAIAAgAkEGdkE/cUGAAXI6AAEgACACQT9xQYABcjoAAkEDCwsLOgAgAEEANgIMIABCADcCACAAQQA7AQggAEEBNgIQIABCADcCFCAAQgA3AhwgAEIANwIkIABBLGoQTwtLAQN/IAAoAgQgAUgEQCABQThsEFMhAiAAQQhqIgMoAgAiBARAIAIgBCAAKAIAQThsEEYaIAMoAgAQQQsgAyACNgIAIAAgATYCBAsLhwEBAX8gACgCACICIAAoAgRGBEAgACAAIAJBAWoQWBDoCSAAKAIAIQILIAAoAgggAkE4bGoiAiABKQIANwIAIAIgASkCCDcCCCACIAEpAhA3AhAgAiABKQIYNwIYIAIgASkCIDcCICACIAEpAig3AiggAiABKQIwNwIwIAAgACgCAEEBajYCAAs9AQF/IAAoAggiAUGAgIAgcQR/QdeTAgUCfyABQYAIcQRAQd+TAiAAKAIAQd+jAhCHAkUNARoLQe+TAgsLC08BA39BmKkEKAIAQeAyaiIDKAIAIgJBAEoEQAJAA38gACADIAJBf2oiARBQKAIARg0BIAJBAUoEfyABIQIMAQVBfwsLIQELBUF/IQELIAELQgAgACABKgIAIAAqAgCSOAIAIAAgASoCBCAAKgIEkjgCBCAAIAEqAgAgACoCCJI4AgggACABKgIEIAAqAgySOAIMC9sCAgV/AX1BmKkEKAIAIgJBpDZqIgMoAgBBf0YEQCACQaA1aigCACIBBEAgASgCCEGAgBBxRQRAIAJB3DVqKAIARQRAIAJB9DVqKAIARQRAIAIoAkgiBBDoASAAQQRxQQBHcSACKAJMIgUQ6AEgAEEIcUEAR3FzBEACQCABKAK8AkUEQCABLADFAgRAIARBARD2AgRAIAEgASoCXCABQfwDahCNAZMQvQIMAwsgBUEBEPYCRQ0CIAEgASoCXCABQfwDahCNAZIQvQIMAgsLQwAAAAAgAUH8A2oQjQEgARDlAZMgAUGIBmoQjQGSEDkhBiACKAJIQQEQ9gIEQCADQQM2AgAgAkGsNmpBAjYCACACQZw2akEwNgIAIAaMIQYMAQsgAigCTEEBEPYCBEAgA0ECNgIAIAJBrDZqQQM2AgAgAkGcNmpBMDYCAAVDAAAAACEGCwsLCwsLCwsgBgv1CgMKfwF+An0jBCEHIwRBEGokBCAHQQhqIQYgByEFQZipBCgCACEAEP8CBEAgAEHcNWpBADYCAAUgAEHcNWoiBCgCAEUhAQJAAkAgAEHgNWoiAygCAAR/IAEEfyAAQew1aiIBKgIAIAAqAhhDAAAgQZSTQwAAAAAQOSELIAEgCzgCACAAQdg3aioCAEMAAAAAX0UgC0MAAAAAX0VyDQIgA0EANgIADAIFQQALBSABBH8MAgVBAAsLIQEMAQtBA0EBEJkCIQEgBCgCAAR/QQAFIAAsAIgCBH9BAEEBEG0EfyAAKAIIQQFxQQBHBUEACwVBAAsLIQILIAEgAnIEQAJAIABBoDVqKAIAIgFFBEAgAEHgMmooAgBBf2pBgYCAgHhBfxDiBCIBRQ0BCyADIAE2AgAgBCABNgIAIABB7DVqQwAAAAA4AgAgAEHoNWpDAAAAADgCACAAQfA1aiACQQFzQQFxOgAAIABBxDVqQQNBBCACGzYCAAsLIAAqAhggAEHoNWoiAioCAJIhCyACIAs4AgAgBCgCAARAAkAgAEHENWoiAygCACIBQQRGBEACQCAAQew1aiIBKgIAIQwgASAMIAtDzcxMvpJDzcxMPZUQWhA5OAIAQQxBBBCZAkEBcUENQQQQmQJBAXFrIggEQCAIELUGIAFDAACAPzgCAAtBAxCMAQRAIAQoAgBFBEBBACECQQAhAQwECyADKAIAIQEMAQsgAEHwNWoiAi0AACABKgIAQwAAgD9dcSIDIQEgAiABOgAAAn8CQCADRQ0AIABBoDVqKAIABH9BACECQQEFIAFB/wFxRQ0BQQAhAkEACwwBCyAEKAIAIQJBAAshASAEQQA2AgAMAgsLIAFBA0YEfyAAQew1aiIBKgIAIQsgASALIAIqAgBDzcxMvpJDzcxMPZUQWhA5OAIAQQBBARBtBEBBAUF/IAAsAIkCGxC1BgsgACwAiAIEQEEAIQIFIAQoAgAhAgtBAAVBACECQQALIQELBUEAIQJBACEBCwJAAkAgAEG0M2ooAgBFDQAgAEHFM2osAAANAAwBC0EQQQIQmQIEQCABIABB8AFqEJUBIABBiAdqEJUBc0EBc3IhAQsLIAQoAgAiAwRAIAMoAghBBHFFBEAgBhA6AkACQAJ9AkAgAEHENWoiCCgCACIDQQNGBEAgACwAiQINASAFQQFBAEMAAAAAQwAAAAAQkgEgBiAFKQMANwMAIAgoAgAhAwsgA0EERw0AIAVBBEEAQwAAAABDAAAAABCSASAGIAUpAwAiCjcDACAKp74MAQsgBioCAAtDAAAAAFwNACAGKgIEQwAAAABcDQAMAQsgBSAGIAAqAhhDAABIRJQgACoCpAEgACoCqAEQRZQQYhBRIAQoAgAoAvAFQQxqIAUQtgIgAEH/NWpBAToAACAEKAIAEIIDCwsLIAIEQAJAAkAgAEGgNWooAgAiBUUNACACIAUoAvAFRw0ADAELIABB/jVqQQA6AAAgAEH/NWpBAToAACACEIkEIgIQmQUgAhB0IAIoAoAGRQRAIAJBABCLBAsgAigCvAJBAkYEQCAAQfQ1akEBNgIACwsgBEEANgIACyABBEAgAEGgNWoiAygCACICBEACfwJAIAIoArwCQQJxIgUEfyAAQf41akEAOgAAIABB/zVqQQE6AAAMAQUgAiEBA0AgASgCCEGAgICoAXFBgICACEYEQCABKALsBSIBKAK8AkECcUUNAQsLAn8gASACRgR/IAUFIAEQdCABIAI2AvwFIAMoAgAoArwCQQJxCyEJIABB/jVqQQA6AAAgAEH/NWpBAToAACAJCw0BQQALDAELIABB9DVqKAIAQQFzCxC4BgsLCyAHJAQLRQEBfyAABEACQCAAIQEDQCABKAIIQYCAgKgBcUGAgIAIRgRAIAEoAuwFIgFFDQIMAQsLIAAgAUcEQCABIAA2AvwFCwsLC6IEAg1/An0jBCEEIwRBQGskBCAEQTBqIQcgBEEoaiEDIARBIGohBiAEQRBqIQkgBEEIaiEKIAQhCwJAAkBBmKkEKAIAIgBBsDZqIgEoAgBFIgVFDQAgAEH4NmooAgANACAAQaQ1aigCAARAIABB/jVqQQA6AAAgAEH/NWpBAToAAAsMAQsgAEH4NmoiAiABIAUbIQEgAEGcNmooAgBBIHEEQCAAQdQ2aiIFKAIAIggEQCABIAUgCCAAQaQ1aigCAEYbIQELCyABIAJGBEAgAiEBBSACKAIABEAgAEGgNWooAgAgAEH8NmooAgAoAuwFRgRAAkAgAEGAN2oqAgAiDSABKgIIIg5dRQRAIA0gDlwNASAAQYQ3aioCACABKgIMXUUNAQsgAiEBCwsLCyAAQfQ1aiIIKAIABEAgAUEUaiEFIAFBBGohAgUgAyABQRRqIgUgAUEEaiICKAIAQQxqEDUgBiABQRxqIAIoAgBBDGoQNSAHIAMgBhBDIAIoAgAgBxC2BiADIAIoAgBBABDqBiAGIAIoAgBB2ABqIAMQQCAFIAYQ7AkgAigCACIDKAIIQYCAgAhxBEACfyADKALsBSEMIAogByAGEDUgCyAHQQhqIAYQNSAJIAogCxBDIAwLIAkQtgYLCxByIABBoDVqIAIoAgA2AgAgASgCACAIKAIAIAUQqgQgAEG8NWogASgCADYCACAAQZg2akEAOgAACyAEJAQLYwEBfSAAQQJJBH8gASABKgIEIAJBBGoiACoCACACKgIMIgMQZDgCBCAAIQIgAUEMagUgASABKgIAIAIqAgAgAioCCCIDEGQ4AgAgAUEIagsiACAAKgIAIAIqAgAgAxBkOAIACycBAn8jBCECIwRBEGokBCACQQA2AgAgAiAAIAEQpgIhAyACJAQgAwt0AQN/IwQhAiMEQSBqJAQgAiABKQIINwMQIAJBGGoiAyACKQIQNwIAIAJBCGoiBCAAIAEgAxDqAiAAIAQpAwA3AgAgAiABKQIINwMAIAMgAikCADcCACAEIABBCGoiACABIAMQ6gIgACAEKQMANwIAIAIkBAuEAQECfyAAKAIIIQQgACgCACIDIAAoAgRGBEAgACAAIANBAWoQWBCFAiAAKAIAIQMLIAMgASAEa0ECdSIBSgRAIAAoAgggAUECdGoiBEEEaiAEIAMgAWtBAnQQswEaCyAAKAIIIAFBAnRqIAIoAgA2AgAgACAAKAIAQQFqNgIAIAAoAggaC1cBA38gACgCACICKAIIIgNBgICAIHEgASgCACIBKAIIIgRBgICAIHFrIgBFBEAgA0GAgIAQcSAEQYCAgBBxayIARQRAIAIuAYYBIAEuAYYBayEACwsgAAtoAQR/An8gAEEMaiICKAIAQQBKBH8DfyACKAIIIAFBA3RqKAIEIgNBf0cEQCAAIAMQ5gIoAggiAwRAIAMQQQsLIAFBAWoiASACKAIASA0AIAALBSAACyEEIAIQTyAECxBPIABBADYCGAsoAQJ/IABBGGohAQNAIAFBdGoiASgCCCICBEAgAhBBCyAAIAFHDQALCyEAIABBBGoQaCAAQRBqEGggAEEcahBoIABBAEHwHBBqGgsvAQF/IABBGGohAQNAIABBADYCBCAAQQA2AgAgAEEANgIIIABBDGoiACABRw0ACwv3AQIHfwF+IwQhASMEQRBqJAQgAEEcaiIDEDogAEEkaiIEEDogAEEsaiIFEDogAEE0aiIGEDogAEFAayICEGYgAEHcAGoiBxA6IABCADcCACAAQgA3AgggAEIANwIQIABBADYCGCABQwAAAABDAAAAABAyIAUgASkDACIINwIAIAQgCDcCACADIAg3AgAgAUMAAAAAQwAAAAAQMiAGIAEpAwA3AgAgAEEAOgA8IAEQZiACIAEpAgA3AgAgAiABKQIINwIIIABBADYCUCAAQQA2AlQgAEP//39/OAJYIAFDAAAAAEMAAAAAEDIgByABKQMANwIAIAEkBAsGACAAEFQLBwAgABDJAQuXAgEFfyMEIQMjBEGgAmokBCADQZACaiEEIAAoAgAhAkGPnAJBmq4EIAAoAiAQwwdBfmpIGyEFIANBgAJqIgEgAjYCACABIAU2AgQgA0GAAkH8mwIgARBzGiADQYgCaiIBIAM2AgAgAEHCzAIgARDSAgRAIAAoAgBBAEoEQEEAIQEDQCAAIAEQVSICENABQZucAhDEBARAIAAgAkF/ENEDC0MAAAAAQwAAAEAQa0GLowIQxAQEQCAAIAJBARDRAwtDAAAAAEMAAIC/EGtBKkEgIAIoAgAiAiAAKAIQRhshBSAEIAE2AgAgBCAFNgIEIAQgAjYCCEGdnAIgBBBpEHkgAUEBaiIBIAAoAgBIDQALCxC3AQsgAyQEC/YMAxp/AX0BfCMEIQIjBEGgAmokBCACQZACaiEMIAJBgAJqIQogAkH4AWohEyACQfABaiEPIAJB6AFqIRAgAkHgAWohESACQdgBaiEUIAJB0AFqIRIgAkHIAWohFSACQcABaiEWIAJBuAFqIRcgAkGgAWohBSACQYgBaiEJIAJBgAFqIRggAkH4AGohGSACIQ0gAkHoAGohAyACQeAAaiEOIAJB2ABqIQggAkHQAGohCyACQcgAaiEEIAJBOGohASACQShqIQYgAkEgaiEHQZSMAiAAQQAQ6wEEQBDDAyEAIAdBhqQCNgIAQaOMAiAHEGkgBkMAAHpEIAAqAuAGIhuVuzkDACAGIBu7OQMIQbGMAiAGEGkgACgC6AYiBkEDbSEHIAEgACgC5AY2AgAgASAGNgIEIAEgBzYCCEHejAIgARBpIAAoAuwGIQEgBCAAKALwBjYCACAEIAE2AgRBhY0CIAQQaSALIAAoAvQGNgIAQaSNAiALEGlBs40CQaKMAhDkAxpB6I0CQZmuBBDkAxoQuAJBmKkEKAIAIgFB1DJqIgZBho4CEL8GIAggAUHAN2oiBCgCADYCAEGOjgJBl44CIAgQ1AIEQCAEKAIAQQBKBEBBACEAA0BBACAEIAAQUCgCABC+BiAAQQFqIgAgBCgCAEgNAAsLELcBCyAOIAFBnDRqIgQoAgA2AgBBrY4CQbSOAiAOENQCBEAgBCgCAEEASgRAQQAhAANAIAQgABB6KAIEIQggBCAAEHooAgAhGiAIBH9B5Y4CQZquBCAIKAIIIgdBgICACHEbIQtB8o4CQZquBCAHQYCAgIABcRshByAIKAIABUGargQhC0GargQhB0HgjgILIQggAyAaNgIAIAMgCDYCBCADIAs2AgggAyAHNgIMQcCOAiADEKABIABBAWoiACAEKAIASA0ACwsQtwELIA0gAUHYOWoiAygCADYCAEH9jgJBhY8CIA0Q1AIEQCADKAIAQQBKBEBBACEAA0AgAyAAEOYCEP0JIABBAWoiACADKAIASA0ACwsQtwELQZOPAhDUBQRAIBkgAUGYM2ooAgAiAAR/IAAoAgAFQeCOAgs2AgBByI8CIBkQaSAYIAFBnDNqKAIAIgAEfyAAKAIABUHgjgILNgIAQdyPAiAYEGkgAUGoM2ooAgAhACABQawzaioCALshHCABQaQzai0AACEDIAkgAUGgM2ooAgA2AgAgCSAANgIEIAkgHDkDCCAJIAM2AhBB9I8CIAkQaSABQbgzaigCACEAIAFBwDNqKgIAuyEcIAFBxTNqLQAAIQkgAUHgM2ooAgBBAnRBgAlqKAIAIQMgBSABQbQzaigCADYCACAFIAA2AgQgBSAcOQMIIAUgCTYCECAFIAM2AhRBqpACIAUQaSAXIAFB2DNqKAIAIgAEfyAAKAIABUHgjgILNgIAQeuQAiAXEGkgFiABQfQzaigCACIABH8gACgCAAVB4I4CCzYCAEGAkQIgFhBpIBUgAUGgNWooAgAiAAR/IAAoAgAFQeCOAgs2AgBBk5ECIBUQaSABQfQ1aigCACEAIBIgAUGkNWooAgA2AgAgEiAANgIEQaORAiASEGkgFCABQcQ1aigCAEECdEGACWooAgA2AgBBv5ECIBQQaSABLQDmBiEAIBEgAS0A5QY2AgAgESAANgIEQdKRAiAREGkgAUG0NWooAgAhACAQIAFBqDVqKAIANgIAIBAgADYCBEHwkQIgEBBpIAFB/zVqLQAAIQAgDyABQf41ai0AADYCACAPIAA2AgRBmpICIA8QaSATIAFB3DVqKAIAIgAEfyAAKAIABUHgjgILNgIAQcySAiATEGkgAUHsOGooAgAhACABQeg4aigCACEFIAogAUHUOGotAAA2AgAgCiAANgIEIAogAUH4OGo2AgggCiAFNgIMQeWSAiAKEGkQtwELIAEsAIgCRUGZrgQsAABFckUEQCAGKAIAQQBKBEBBACEAA0AgBiAAEFAoAgAiASgCCEGAgIAIcUUEQCABLAB7BEAgDCABLgGIATYCACANQSBB550CIAwQcxoQrgNDAAAAQJQhGxC9BiEFIA4gGyAbEDIgDCABQQxqIgEgDhA1IAUgASAMQcjJkXtDAAAAAEEPEHUgBUEAIBsgAUF/IA1BAEMAAAAAQQAQ/QELCyAAQQFqIgAgBigCAEgNAAsLCwsQ1QEgAiQEC0YBAX8gACgCACICIAAoAgRGBEAgACAAIAJBAWoQWBCXAyAAKAIAIQILIAAoAgggAmogASwAADoAACAAIAAoAgBBAWo2AgALxwECA38BfiABQQBHIgQEQCABQQA2AgALIABBjowCEOoEIgIEQAJAIAJBAhCRB0UEQCACKAJMGiACENoLIgVC/////wdVBH9BiKoEQcsANgIAQX8FIAWnCyIDQX9HBEAgAkEAEJEHRQRAIAMQUyIARQRAIAIQwwIaQQAhAAwECyAAIAMgAhDYCyADRwRAIAIQwwIaIAAQQUEAIQAMBAsgAhDDAhogBEUNAyABIAM2AgAMAwsLCyACEMMCGkEAIQALBUEAIQALIAALaQEDfwJ/QZipBCgCACEDIABBAEEAELsBIQIgAwtBtNgAaiIBKAIAQQBKBH8Cf0EAIQADQCACIAEgABCcASgCBEcEQCAAQQFqIgAgASgCAEgEQAwCBUEADAMLAAsLIAEgABCcAQsFQQALC10CA38BfiMEIQEjBEEQaiQEIABBCGoiAhA6IABBEGoiAxA6IABBADYCACAAQQA2AgQgAUMAAAAAQwAAAAAQMiADIAEpAwAiBDcCACACIAQ3AgAgAEEAOgAYIAEkBAvvAQEHfyMEIQIjBEEQaiQEQZipBCgCACEDQYTAAhC9ASACIgBDAAAAAEMAAAAAEDICf0HgiwIgABCZAyEGQwAAAABDAACAvxBrIABDAAAAAEMAAAAAEDJB64sCIAAQmQMhBUMAAAAAQwAAgL8QayAAQwAAAABDAAAAABAyQfeLAiAAEJkDIQBDAAAAAEMAAIC/EGtDAACgQhDOAUEAEOIGQYiMAiADQeTYAGoiAUEAQQlBABDdBRoQ7gIQigEQeSAGCwRAIAEoAgAQxQYLIAUEQCABKAIAIAMoAiQQxAYLIAAEQCABKAIAEMMGCyACJAQLTwEBfyACQQFzQQFxIQICQAJAEDwoArwDIgNFDQACQCAAIAMoAhBGBEAgAygCBCACRg0BCxDmBgwBCwwBCyAAQQFHBEAgASAAIAIQhwoLCwtpAgF/AX1BmKkEKAIAIgIqAvABIAJB0DNqKgIAk0MAAIBAkiACQZQzaigCACoCDJMgAUF/ahD/ASACQfAqaiICKgIAkhA5IQMgACgCBEEEcQRAIAMgAUEBahD/ASACKgIAkxBFIQMLIAMLoAEBA38jBCEEIwRBQGskBCAEIQICQAJAIABB4ARqIgMoAgBBAEwNAEEAIQADQCADIAAQqwQoAgAgAUcEQCAAQQFqIgAgAygCAE4NAgwBCwsgAyAAEKsEIQAMAQsgAkEANgIwIAJBADYCLCACQQA2AjQgAhDnCSADIAIQ6QkgAhD1ByADKAIIIAMoAgBBf2pBOGxqIgAgATYCAAsgBCQEIAALgAUCCH8EfSMEIQgjBEEgaiQEQZipBCgCACEFEDwhA0HH5oiJASABQcfmiIkBaiAAQQBHIgYbENABIAMgAEG2iwIgBhsQXiEAEHkgAyAAEIYKIgRBADYCDCAEIAE2AhAgBCACNgIEIAMgBDYCvAMgAyoCNCILQwAAAABcBEAgA0EMaiIAKgIAIQwFIANBDGoiACoCACILIQwgAyoChAQgC5MhCwsgBCADKgKwAyINIAVB1CpqKgIAkyIOOAIUIAQgCyADKgJYkyAOQwAAgD+SEDk4AhggBCADKALMASICNgIkIAQgAygC4AE2AiggBCACNgIgIAQgAjYCHCADQwAAAAA4ArgDIAMgDSAMkkMAAAAAkqiyOALIASAIIQUgBCAEQSxqIgYoAgAiAkUgAiABQQFqIgdGcgR/IAIFIAYiAigCBEEASARAIAIgAkEAEFgQpwMLIAJBADYCACAGKAIAC0UiAjoACAJAAkAgAkUNACAGIAcQpwMgAUEATgRAIAGyIQtBACECA0AgBUEMahBmIAVDAAAAADgCBCAFQwAAAAA4AgAgBUEANgIIIAUgArIgC5U4AgAgBiAFEIAEIAJBAWoiAiAHRw0ACwwBCwwBCyABQQBKBEAgA0HMA2ohCUEAIQIDQAJ/IAYgAhBVIQogBSAAKgIAQwAAAD+SIAIQ/wGSQwAAgL+SEGJD//9//yAAKgIAQwAAAD+SIAJBAWoiAhD/AZJDAACAv5IQYkP//39/EF0gCgtBDGoiByAFKQIANwIAIAcgBSkCCDcCCCAHIAkQtQIgASACRw0ACwsLIAMoAvQEIAQoAhAQqgYQ6QJBfxDvBENmZiY/lBDOASAIJAQLKwEBfxBgIQIgAEEASARAIAIoArwDKAIMIQALIABBAWogABD/ASABkhDtBAtXAgJ/AX0gAUEASARAIAAoAgwhAQsgAEEsaiIDIAFBAWoQVSEEIAIEfyAEKgIEIQUgAyABEFVBBGoFIAQqAgAhBSADIAEQVQshASAAIAUgASoCAJMQ7gQLFwEBfxBgKAK8AyIABH8gACgCEAVBAQsLFwEBfxBgKAK8AyIABH8gACgCDAVBAAsLtAIBB38jBCEDIwRBEGokBCADIQQQPCIALAB/RQRAIAAoArwDBEBBmKkEKAIAIQYQigEQ6gEgACgCvAMiASABKgIgIAAqAswBEDk4AiAgASABKAIMQQFqIgI2AgwgAiABKAIQSARAIABBuANqIgUgAhD/ASAAQbADaiICKgIAkyAGQdQqaioCAJI4AgAgACgC9AQgASgCDBD0AyABKAIcIQEFIABBuANqIgVDAAAAADgCACAAKAL0BEEAEPQDIAFBADYCDCABIAEoAiAiATYCHCAAQbADaiECCyAAIAAqAgwgAioCAJIgBSoCAJKosjgCyAEgACABNgLMASAEQwAAAABDAAAAABAyIAAgBCkDADcC6AEgAEMAAAAAOALwARDpAkF/EO8EQ2ZmJj+UEM4BCwsgAyQECzsAQZipBCgCAEGUM2ooAgAgAEGpiwIgABsQXiEAIAEQ9QIEQEEEEPUERQRAIAAQ7QILCyAAQcECEKoDC0gAQZipBCgCAEGUM2ooAgAgAEGaiwIgABsQXiEAIAEQ9QIEQEEIEPUEBEACQCACRQRAEPMGDQELIAAQ7QILCwsgAEHBAhCqAwtFAQF/QZipBCgCAEGUM2ooAgAhAiAABH8gAiAAEF4FIAIoAowCCyEAIAEQ9QIEQEEIEIsCBEAgABDtAgsLIABBwQIQqgMLwQEBBH8gACECAkACQANAAkACQAJAIAIsAAAOIQAEBAQEBAQEBAEEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAQQLIAIhAQwBCyACQQFqIQIMAQsLDAELIAIhAQNAIAFBAWoiASwAAA0ACyABIAJLBEADfyABQX9qIgMsAABBCWsiBARAIARBF0cNAwsgAyACSwR/IAMhAQwBBSADCwshAQsLIAEgAmshASAAIAJHBEAgACACIAEQswEaCyAAIAFqQQA6AAALuwICBX8BfSMEIQUjBEEQaiQEIAUhASAAQZipBCgCACICQaA1aigCAEYEQBCCBARAIAJBoDZqKAIARQRAIAJB9DVqKAIARQRAIAEgACkCiAY3AgAgASAAKQKQBjcCCCACQaQ2aiIEKAIAIgNBAXIEQCADIQIFIAEgACoCHCAAKgIsEDkgACoCWJMiBjgCCCABIAY4AgBBAEEAIgIgARCBBCAEKAIAIQMLIANBAUdBAXJFBEAgASAAKgJYjCIGOAIIIAEgBjgCAEEBIAIgARCBBCAEKAIAIQMLIANBAkYEfyABIAAqAiAgACoCMBA5IAAqAlyTIgY4AgwgASAGOAIEQQIgAiABEIEEIAQoAgAFIAMLQQNGBEAgASAAKgJcjCIGOAIMIAEgBjgCBEEDIAIgARCBBAsLCwsLIAUkBAu+AQEGfyMEIQMjBEEQaiQEIANBCGohBSADIQZBmKkEKAIAIgRBtDRqIQcgBEGUM2ooAgAgABBeEKwDBH8CfyAHKAIARQRAIAUgBEEQakMAAAA/EFEgBkMAAAA/QwAAAD8QMiAFQQggBhCcAgsgACABIAJBoIKA4AByEOsBRQRAEMgBQQAMAQsgAQR/IAEsAAAEf0EBBRDIASAEQag0aigCAEEBEOsCQQALBUEBCwsFIAcQigRBAAshCCADJAQgCAs/AQN/QZipBCgCACIBQZw0aiICKAIAIAFBqDRqKAIAIgNKBH8gAiADEHooAgAgAUGUM2ooAgAgABBeRgVBAAsLMQEEfyMEIQIjBEEQaiQEAn8QYEHMA2ohBCACIAAgARBDIAQLIAIQywIhBSACJAQgBQs/AQR/IwQhASMEQSBqJAQgARBgIgJByAFqIgMgABA1IAFBCGoiACADIAEQQyACQcwDaiAAEMsCIQQgASQEIAQLJAEBfxA8IgEgASgCqAYgAEEBamo2ArgGIAFB/////wc2ArwGCycBAX8QPCIBEL8BIACSIQAgASAAIAEQ0QGSOAJkIAFDAAAAADgCbAsXAQF/EDwiASAAOAJgIAFDAAAAADgCaAsTAEGYqQQoAgBBlDNqKAIAEIAFCxMAQZipBCgCAEGUM2ooAgAqAlwLEwBBmKkEKAIAQZQzaigCACoCWAtJAQJ/IAFBAEciBAR/IAEoAgAFIAAQXEEBagsgAhBcQQFqIgNJBEAgABBBIAMQUyEAIAQEQCABIAM2AgALCyAAIAIgAxBGGiAACy4BAX8QPCIBKgIMIAEqAliTIACSIQAgASAAOALIASABIAEqAuABIAAQOTgC4AELWgEDfyMEIQEjBEEQaiQEIAFBCGoiAxA8IgJBDGogAkHYAGoQQCABIAMgABA1IAJByAFqIgAgASkDADcCACABIAJB4AFqIgIgABCmASACIAEpAwA3AgAgASQECxgBAX8QYCIAKgLIASAAKgIMkyAAKgJYkgswAQJ/IwQhASMEQRBqJAQgARBgIgJByAFqIAJBDGoQQCAAIAEgAkHYAGoQNSABJAQLMgECf0GYqQQoAgAhARA8IgIgADgC7AQgAUHIMWogAhDlASIAOAIAIAFBtDFqIAA4AgALLgEBf0GYqQQoAgAiAEHYKmoqAgAgAEG0MWoqAgAgAEHIKmoqAgBDAAAAQJSSkgsKABBgQYwEahB2CyMCAX8CfSMEIQAjBEEQaiQEIAAQ8AIgACoCACECIAAkBCACCxIAQZipBCgCAEHINGpBATYCAAspAQF/QZipBCgCACICQfA0aiAAQQFxOgAAIAJBwDRqIAFBASABGzYCAAsLABBgLACAAUEARwsKABBgLAB9QQBHCxMAQZipBCgCAEGUM2ooAgAqAhgLEwBBmKkEKAIAQZQzaigCACoCFAuzAQEBf0GYqQQoAgAhASAAQQRxBH8gAUGgNWooAgBBAEcFAn8CQAJAAkACQCAAQQNxQQFrDgMCAQADC0EAIAFBoDVqKAIAIgBFDQMaIAAoAvAFIAFBlDNqKAIAKALwBUYMAwsgAUGgNWooAgAgAUGUM2ooAgAoAvAFRgwCC0EAIAFBoDVqKAIAIgBFDQEaIAAgAUGUM2ooAgAQlwUMAQsgAUGgNWooAgAgAUGUM2ooAgBGCwsL8QMAAn8CQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCAADjAAAQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiMkJSYnKCkqKywtLi8wC0H5swIMMAtBnbQCDC8LQa+GAgwuC0G4hgIMLQtBwIYCDCwLQciGAgwrC0HPhgIMKgtB3IYCDCkLQeSGAgwoC0HzhgIMJwtBgYcCDCYLQYmHAgwlC0GXhwIMJAtBqIcCDCMLQbKHAgwiC0G+hwIMIQtBzIcCDCALQeGHAgwfC0H1hwIMHgtB/4cCDB0LQYqIAgwcC0GEtQIMGwtBm4gCDBoLQamIAgwZC0G2iAIMGAtBvYgCDBcLQcuIAgwWC0GfsAIMFQtB2IgCDBQLQemIAgwTC0H5iAIMEgtBhIkCDBELQZaJAgwQC0GniQIMDwtBq4kCDA4LQbaJAgwNC0HAiQIMDAtBzYkCDAsLQfi1AgwKC0HgiQIMCQtBgrYCDAgLQfGJAgwHC0GGigIMBgtBlYoCDAULQaSKAgwEC0GxigIMAwtBx4oCDAILQdmKAgwBC0HqigILC3gBBH8jBCECIwRBMGokBEGYqQQoAgAhBCACQRBqIgMQ3gYgAyAANgIAIANBBGoiBSAEQbAraiAAQQR0aiIAKQIANwIAIAUgACkCCDcCCCAEQfgzaiADEN0GIAIgARCsBiAAIAIpAgA3AgAgACACKQIINwIIIAIkBAsJAEECIAAQ7wILlQEBAn9BmKkEKAIAQdQyaiICEHAoAgAiASAARwRAIAEoAvAFIABHBEAgAigCACIBQQFKBEACQCABQX5qIQEDQCACIAEQUCgCACAARwRAIAFBAEwNAiABQX9qIQEMAQsLIAIgARBQIAIgAUEBahBQIAIoAgAgAWtBAnRBfGoQswEaIAIgAigCAEF/ahBQIAA2AgALCwsLC4cBAQJ/QZipBCgCAEHgMmoiAhBwKAIAIABHBEAgAigCACIBQQFKBEACQCABQX5qIQEDQCACIAEQUCgCACAARwRAIAFBAEwNAiABQX9qIQEMAQsLIAIgARBQIAIgAUEBahBQIAIoAgAgAWtBAnRBfGoQswEaIAIgAigCAEF/ahBQIAA2AgALCwsLqgECA38DfSMEIQUjBEEgaiQEIAVBEGoiBiABIAIgBBCDBSAFQQhqIgcgAiADIAQQgwUgBSICIAMgASAEEIMFIAVBGGoiASAEIAYQQCABEJ0CIQggASAEIAcQQCABEJ0CIQkgASAEIAUQQCAIIAkgARCdAhBFEEUiCiAIWwRAIAAgBikDADcCAAUgCiAJWwRAIAAgBykDADcCAAUgACACKQMANwIACwsgBSQEC50BAgJ/BX0jBCEHIwRBIGokBCAHQRBqIgggASAAEEAgB0EIaiIBIAIgABBAIAcgAyAAEEAgCCoCACIMIAEqAgQiCpQgASoCACILIAgqAgQiDZSTIQkgBSAKIAcqAgAiCpQgCyAHKgIEIguUkyAJlTgCACAGIAwgC5QgDSAKlJMgCZUiCTgCACAEQwAAgD8gBSoCAJMgCZM4AgAgByQEC5IMAxt/AX4DfSMEIQcjBEHwAGokBCAHQUBrIQYgB0HoAGohESAHQThqIQ8gB0EwaiEJIAdBIGohDSAHQRBqIQogB0EIaiELIAchCCAHQdgAaiETIAdB0ABqIRQgB0HIAGohFSAHQeAAaiEWQZipBCgCACEFIAAoAghBwgBxRQRAIAAoApABQQBMBEAgACgClAFBAEwEQCAALAB7BEAgBSwAvwFFIRIgBUG0MWoqAgAiIUPNzKw/lCAhQ83MTD6UIAAqAkRDAACAP5KSEDmoskMAAEA/lKiyISFDAAAAAEMAAIBAIBIbISIgEUP//39/Q///f38QMiAPQ///f39D//9/fxAyQbuTAhC9ASADQQBKBEAgAEEMaiEXIABBFGohGyANQQhqIRggDUEEaiEZIA1BDGohGiAFQdA4aiEcIAVB8AFqIR0gBUHQM2ohHiAhjCEjA0AgBiAXIBsQNSAJIBcgBiAMQRhsQYAIaiIQEJ4CIAogDEEYbEGICGoiDiAiEFEgBiAJIAoQQCAIIA4gIRBRIAsgCSAIEDUgDSAGIAsQQyANKgIAIBgqAgBeBEAgDSAYEPADCyAZKgIAIBoqAgBeBEAgGSAaEPADCyANIAAgDBCLAyAKIAtBoMAAEJEBGiALLAAAIh8gCiwAAHJB/wFxBEAgHEEGIAxBAXFrNgIACwJAAkAgHwRAIAxFIAUsAOUHQQBHcQRAIAcgASkCADcDGCAGIAcpAhg3AgAgCCAAIAYQ8gIgDyAIKQMANwMAEHIgCywAACEOIAosAAAhEAwCBSAIIB0gHhBAIBQgDiAiEFEgFSAOICMQUSATIBQgFSAQEJ4CIAYgCCATEDUgACAGIBAgESAPELsGCwsgCywAACIOIAosAAAiEHJB/wFxRSAMQQBHcUUNAAwBCyAMQQJ0IARqQSBBH0EeIBBB/wFxGyAOQf8BcRtDAACAPxBCNgIACyAMQQFqIgwgA0cNAAsLQQBBBCASGyEQIBJFBEAgBUGsM2ohEiAFQdA4aiEDIAVB1DNqIQwgBUHQM2ohDkEAIQEDQCANIAAgASAhQwAAgEAQ6QYgDSAAIAFBBGoQiwMgBiAJQSAQkQEaAkACQCAGLAAABEAgCSwAAEUiEyASKgIAQwrXIz1eRXFFBEAgAyABQQFxQQNqNgIAIBNFDQILBSAJLAAABEAgAyABQQFxQQNqNgIADAILCwwBCyACIAE2AgAgCiAAKQIMNwMAIAsQOgJAAkACQAJAAkAgAUH/////B3EOBAABAgMECyAIQwAAAABDAAAAABAyIAsgCCkDADcDACAKIAUqAvQBIAwqAgCTQwAAgECSOAIEDAMLIAhDAACAP0MAAAAAEDIgCyAIKQMANwMAIAogBSoC8AEgDioCAJNDAACAQJI4AgAMAgsgCEMAAAAAQwAAgD8QMiALIAgpAwA3AwAgCiAFKgL0ASAMKgIAk0MAAIBAkjgCBAwBCyAIQwAAAABDAAAAABAyIAsgCCkDADcDACAKIAUqAvABIA4qAgCTQwAAgECSOAIACyAAIAogCyARIA8QuwYLIAFBAWoiASAQSQ0ACwsQeSAFQdw1aigCACIBBEAgACABKALwBUYEQCAJEDoCQAJAAn0CQCAFQcQ1aiICKAIAIgFBA0YEQCAFLACJAkUNASAGQQFBAEMAAAAAQwAAAAAQkgEgCSAGKQMANwMAIAIoAgAhAQsgAUEERw0AIAZBAkEAQwAAAABDAAAAABCSASAJIAYpAwAiIDcDACAgp74MAQsgCSoCAAtDAAAAAFwNACAJKgIEQwAAAABcDQAMAQsgCSAFKgIYQwAAFkSUIAUqAqQBIAUqAqgBEEWUEGIQqAMgBUHwNWpBADoAACAFQf81akEBOgAAIARBIEMAAIA/EEI2AgAgFiAAQRxqIAkQNSAGIBYpAgA3AgAgDSAAIAYQ8gIgDyANKQMANwMACwsLIA8qAgBD//9/f1wEQCAAIA8pAwA3AhwgABCCAwsgESoCAEP//39/XARAIAYgERCZASAAIAYpAwA3AgwgABCCAwsgACAAKQIcNwIUCwsLCyAHJAQL4AMDB38BfgF9IwQhCCMEQRBqJARBmKkEKAIAIQZBwAYQUyEEIAgiAyADLAAMOgAAIAQgBiAAEM0SIANBCGoiBSAENgIAIAQgAjYCCCAGQYQzaiAEKAIEIAQQjAkgA0MAAHBCQwAAcEIQMiAEIAMpAwA3AgwgAkGAAnFFBEAgBCgCBBDoBCIHBEAgBkHA2ABqIAcQ/QMhBCAFKAIAIgAgBDYC8AQgAEEEQQAQ/wQgAyAHQQhqEJkBIAUoAgAiACADKQMANwIMIAAgBywAGDoAfSAHQRBqIgAQnQJDrMUnN14EQCADIAAQmQEgASADKQMANwIACwsLIAMgARCZASAFKAIAIgAgAykDACIKNwIkIAAgCjcCHCAAIAo3AhQgACAAKQIMNwLgASAKQiCIp74hCyAAIAJBwABxBH8gAEECNgKUASAAQQI2ApABQQAFIAqnvkMAAAAAXwRAIABBAjYCkAELIAtDAAAAAF8EQCAAQQI2ApQBCyAAKAKQAUEASgR/QQEFIAAoApQBQQBKCws6AJgBIAZB4DJqIAUQeCAGQdQyaiEBIAJBgMAAcQRAIAUhACABKAIABEAgASABKAIIIAAQ9AkFIAEgABB4CwUgASAFEHgLIAUoAgAhCSAIJAQgCQulAQEBfyAAIAI2AuwFIAAgADYC+AUgACAANgL0BSAAIAA2AvAFIAJBAEciAyABQYCAgBhxQYCAgAhGcQRAIAAgAigC8AU2AvAFCyABQYCAgChxRSADIAFBgICAwABxRXFBAXNyRQRAIAAgAigC9AU2AvQFCyAAKAIIQYCAgARxBEAgACEBA0AgASgC7AUiAiIBKAIIQYCAgARxDQALIAAgAjYC+AULC0ABAn8jBCECIwRBIGokBCACQQhqIgMgARDvBiACIAEgAxDuBiACQRBqIgMgAikCADcCACAAIAEgAxDyAiACJAQLBQAQswMLDgAQYCgCkAJBBHFBAEcLJAEBf0GYqQQoAgAiAEGkNWooAgAEfyAAQf41aiwAAEUFQQALCxMAQZipBCgCAEG0M2ooAgBBAEcLFAAgAEEAELYDBH9BABCLAgVBAAsLQAEBf0GYqQQoAgAhABD0BgR/IABByDNqLAAABH9BAQUgAEG0M2ooAgAEf0EABSAAQcYzaiwAAEEARwsLBUEACwsWAEGYqQQoAgBB0NwAaiAAQQFxNgIACxYAQZipBCgCAEHU3ABqIABBAXE2AgALEgBBmKkEKAIAQdA4aiAANgIACxAAQZipBCgCAEHQOGooAgALIAEBf0GYqQQoAgAiAUGQB2ogAEEDdGogASkC8AE3AgALcgEBf0GYqQQoAgAhAyACQwAAAABdBEAgAyoCMCECCwJAAkAgASADQfgBamosAABFDQAgA0HECGogAUECdGoqAgAgAiAClGBFDQAgACADQfABaiADQZAHaiABQQN0ahBADAELIABDAAAAAEMAAAAAEDILCykBAX4gASACrSADrUIghoQgBCAAQQFxQYQEahE5ACIFQiCIpxAgIAWnCwcAQc8AEAMLBwBBywAQAwsHAEHIABADCwcAQcYAEAMLBwBBxQAQAws7AQF/IABBmKkEKAIAIgBBqDRqKAIAIgFBAEoEfyAAQZw0aiABQX9qEHpBHGoFIABB8AFqCykCADcCAAsHAEHDABADCwcAQcIAEAMLBwBBwQAQAwsGAEE/EAMLBgBBOxADCwYAQToQAwsGAEE5EAMLBgBBOBADCwYAQTYQAwsGAEEzEAMLBgBBMhADCwYAQTEQAwsGAEEwEAMLFgAgAEGYqQQoAgBB5QdqaiwAAEEARwsGAEEuEAMLBgBBLRADCwYAQSkQAwsGAEEoEAMLBgBBJxADCwYAQSQQAwsIAEEfEANCAAsIAEEeEANBAAsIAEEbEANBAAsIAEEXEANBAAsIAEEWEANBAAsIAEEVEANBAAsIAEEUEANBAAsIAEESEANBAAsyAQJ/QZipBCgCACEBA38Cf0EBIAAgAUH4AWpqLAAADQAaIABBAWoiAEEFSQ0BQQALCwsIAEEREANBAAsIAEEQEANBAAsIAEEPEANBAAsIAEEOEANBAAsIAEENEANBAAsIAEELEANBAAsIAEEKEANBAAsIAEEJEANBAAsIAEEIEANBAAs+AQF/IABBAEgEf0EABUGYqQQoAgAiAUHYGGogAEECdGoqAgBDAAAAAGAEfyAAIAFBjAJqaiwAAEUFQQALCwsLAEEDEANDAAAAAAsPAEEBEANEAAAAAAAAAAALDwBBABADRAAAAAAAAAAACyYAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAMIABBAXFBoAtqEVAACyQAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAAQQNxQZwLahExAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBA3FBmAtqETYACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBlAtqERkACyIAIAEgAiADIAQgBSAGIAcgCCAJIAogAEEBcUGSC2oRTwALHgAgASACIAMgBCAFIAYgByAIIABBA3FBjgtqEU4ACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBigtqETIACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQYgLahFNAAscACABIAIgAyAEIAUgBiAHIABBB3FBgAtqESoACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQf4KahEzAAscACABIAIgAyAEIAUgBiAHIABBA3FB+gpqESsACxoAIAEgAiADIAQgBSAGIABBD3FB6gpqERoACw0AIABB+ClqQQAQwAELHgAgASACIAMgBCAFIAYgByAIIABBAXFB6ApqEUwACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHmCmoRSwALGgAgASACIAMgBCAFIAYgAEEDcUHiCmoRLAALGAAgASACIAMgBCAFIABBD3FB0gpqES0ACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHQCmoRKAALGgAgASACIAMgBCAFIAYgAEEDcUHMCmoRKQALGAAgASACIAMgBCAFIABBA3FByApqEScACxYAIAEgAiADIAQgAEEfcUGoCmoRBgALIAAgASACIAMgBCAFIAYgByAIIAkgAEEBcUGmCmoRSgALHAAgASACIAMgBCAFIAYgByAAQQFxQaQKahFJAAscACABIAIgAyAEIAUgBiAHIABBAXFBogpqEUgACxoAIAEgAiADIAQgBSAGIABBA3FBngpqESMACxgAIAEgAiADIAQgBSAAQQNxQZoKahEPAAscACABIAIgAyAEIAUgBiAHIABBAXFBmApqEUcACxYAIAEgAiADIAQgAEEDcUGUCmoRNAALFQAgASACIAMgAEH/AHFBlAlqEQcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQZIJahEwAAsaACABIAIgAyAEIAUgBiAAQQFxQZAJahEmAAsaACABIAIgAyAEIAUgBiAAQQFxQY4JahEuAAsYACABIAIgAyAEIAUgAEEDcUGKCWoRLwALFgAgASACIAMgBCAAQQNxQYYJahEKAAseACABIAIgAyAEIAUgBiAHIAggAEEBcUGECWoRJAALGgAgASACIAMgBCAFIAYgAEEBcUGCCWoRNQALFAAgASACIAMgAEEPcUHyCGoRNwALFgAgASACIAMgBCAAQQNxQe4GahEOAAsUACABIAIgAyAAQQFxQewGahERAAscACABIAIgAyAEIAUgBiAHIABBAXFB6gZqEUYACxQAIAEgAiADIABBAXFB6AZqEUUACxQAIAEgAiADIABBAXFB3gRqERgACxoAIAEgAiADIAQgBSAGIABBA3FB2gRqEQ0ACxUAQZipBCgCAEE0aiAAQQJ0aigCAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBAXFBggRqEUQACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBB3FB+gNqERcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQ9xQeoDahETAAscACABIAIgAyAEIAUgBiAHIABBD3FB2gNqERQACxoAIAEgAiADIAQgBSAGIABBH3FBugNqERUACxgAIAEgAiADIAQgBSAAQQ9xQaoDahESAAsWACABIAIgAyAEIABBH3FBigNqEQkACxoAIAEgAiADIAQgBSAGIABBAXFBiANqEUMACxgAIAEgAiADIAQgBSAAQQFxQYYDahFCAAsWACABIAIgAyAEIABBAXFBhANqEUEACxwAIAEgAiADIAQgBSAGIAcgAEEBcUGCA2oRQAALGAAgASACIAMgBCAFIABBAXFBwAJqET8ACxYAIAEgAiADIAQgAEEBcUG+AmoRPgALHgAgASACIAMgBCAFIAYgByAIIABBAXFBvAJqET0ACxYAIAEgAiADIAQgAEEBcUG6AmoRPAALFAAgASACIAMgAEEDcUG2AmoRIgALGgAgASACIAMgBCAFIAYgAEEBcUG0AmoRFgALFgAgASACIAMgBCAAQQFxQbIBahElAAsUACABIAIgAyAAQQFxQbABahEMAAsaACABIAIgAyAEIAUgBiAAQQFxQawBahE4AAsUACABIAIgAyAAQQNxQcgAahE7AAsRACABIAIgAEEfcUEoahEIAAsPACABIABBA3FBJGoRHAALDQAgAEEfcUEEahEgAAsPACABIABBAXFBAmoROgALCgAgAEEBcREQAAvSAQEGfyMEIQMjBEEQaiQEEMMDIQIgAUEBOgAAIAEgACgCACIEQQBKBH8gACgCCAVBAAs2AgQgASAENgIIIAFBADYCDCABQQA2AhAgA0MAAAAAQwAAAAAQMiABIAMpAwA3AhQgASACKQIINwIcIAAoAgAiBEEASgRAIAAoAgghBiABKAIMIQUgASgCECECQQAhAANAIABBAnQgBmooAgAiBygCGCACaiECIAUgBygCDGohBSAAQQFqIgAgBEgNAAsgASACNgIQIAEgBTYCDAsgAyQEC24BAn8gACABKAIIEIUBBEAgASACIAMQhwUFAkAgAEEQaiAAKAIMIgRBA3RqIQUgAEEQaiABIAIgAxCGByAEQQFKBEAgAEEYaiEAA0AgACABIAIgAxCGByABLAA2DQIgAEEIaiIAIAVJDQALCwsLC7kEAQN/IAAgASgCCBCFAQRAIAEgAiADEIYFBQJAIAAgASgCABCFAUUEQCAAKAIMIQUgAEEQaiABIAIgAyAEEJMEIAVBAUwNASAAQRBqIAVBA3RqIQYgAEEYaiEFIAAoAggiAEECcUUEQCABKAIkQQFHBEAgAEEBcUUEQANAIAEsADYNBSABKAIkQQFGDQUgBSABIAIgAyAEEJMEIAVBCGoiBSAGSQ0ADAUACwALA0AgASwANg0EIAEoAiRBAUYEQCABKAIYQQFGDQULIAUgASACIAMgBBCTBCAFQQhqIgUgBkkNAAsMAwsLA0AgASwANg0CIAUgASACIAMgBBCTBCAFQQhqIgUgBkkNAAsMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIABBEGogACgCDEEDdGohBkEAIQMgAEEQaiEHIAECfwJAA0ACQCAHIAZPDQAgAUEAOgA0IAFBADoANSAHIAEgAiACQQEgBBCEBSABLAA2DQAgASwANQRAAn8gASwANEUEQCAAKAIIQQFxBEBBAQwCBUEBIQMMBAsACyABKAIYQQFGDQQgACgCCEECcUUNBEEBIQVBAQshAwsgB0EIaiEHDAELCyAFRQRAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAw0DQQQMBAsLCyADDQBBBAwBC0EDCzYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwvhAQEEfyAAIAEoAggQhQEEQCABIAIgAyAEEIUFBSABLAA0IQcgASwANSEIIABBEGogACgCDCIGQQN0aiEJIAFBADoANCABQQA6ADUgAEEQaiABIAIgAyAEIAUQhAUgBkEBSgRAAkAgAEEYaiEGA0AgASwANg0BIAEsADQEQCABKAIYQQFGDQIgACgCCEECcUUNAgUgASwANQRAIAAoAghBAXFFDQMLCyABQQA6ADQgAUEAOgA1IAYgASACIAMgBCAFEIQFIAZBCGoiBiAJSQ0ACwsLIAEgBzoANCABIAg6ADULC9gCAQR/IwQhBSMEQUBrJAQgBSEDIAIgAigCACgCADYCACAAIAEiBBCFAQR/QQEFIARBgPYBEIUBCwR/QQEFIAEEfyABQcj1ARCUBCIBBH8gASgCCCAAKAIIQX9zcQR/QQAFIAAoAgwgASgCDBCFAQR/QQEFIAAoAgxB6PUBEIUBBH9BAQUgACgCDCIABH8gAEHg9AEQlAQiBAR/IAEoAgwiAAR/IABB4PQBEJQEIgAEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyAANgIAIAMgBDYCCCADQX82AgwgA0EBNgIwIAAgAyACKAIAQQEgACgCACgCHEEfcUGoCmoRBgAgAygCGEEBRgR/IAIgAygCEDYCAEEBBUEACwVBAAsFQQALBUEACwVBAAsLCwsFQQALBUEACwshBiAFJAQgBgsJACAAIAEQhQELLAEBfyAAKAIAQXRqIgAoAgghASAAIAFBf2o2AgggAUF/akEASARAIAAQVAsLBwAgACgCBAtLAQJ/IwQhASMEQRBqJAQgASECIAAQVAJ/QRZBkK4EKAIAIgAoAgRBzpWaEkcNABogAEEANgIAQQALBEBB94oDIAIQwgIFIAEkBAsLRQEDfyMEIQAjBEEQaiQEIAAhAkEIEMkBIgFBADYCACABQc6VmhI2AgRBkK4EIAE2AgBBAARAQcWKAyACEMICBSAAJAQLCz4BAX8gACABKAIIEIUBBEAgASACIAMQhwUFIAAoAggiACgCACgCHCEEIAAgASACIAMgBEEfcUGoCmoRBgALC6QCAQF/IAAgASgCCBCFAQRAIAEgAiADEIYFBQJAIAAgASgCABCFAUUEQCAAKAIIIgAoAgAoAhghBSAAIAEgAiADIAQgBUEPcUHSCmoRLQAMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIAFBADoANCABQQA6ADUgACgCCCIAKAIAKAIUIQMgACABIAIgAkEBIAQgA0EPcUHqCmoRGgAgAQJ/AkAgASwANQR/IAEsADQNAUEBBUEACyEAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAA0CQQQMAwsLIAANAEEEDAELQQMLNgIsDAILCyADQQFGBEAgAUEBNgIgCwsLC0QBAX8gACABKAIIEIUBBEAgASACIAMgBBCFBQUgACgCCCIAKAIAKAIUIQYgACABIAIgAyAEIAUgBkEPcUHqCmoRGgALCxgAIAAgASgCCBCFAQRAIAEgAiADEIcFCwuPAQAgACABKAIIEIUBBEAgASACIAMQhgUFIAAgASgCABCFAQRAAkAgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASACNgIUIAEgASgCKEEBajYCKCABKAIkQQFGBEAgASgCGEECRgRAIAFBAToANgsLIAFBBDYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwsLGgAgACABKAIIEIUBBEAgASACIAMgBBCFBQsLyQEBA38jBCEEIwRBQGskBCAEIQMgACABEIUBBH9BAQUgAQR/IAFB4PQBEJQEIgEEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyABNgIAIAMgADYCCCADQX82AgwgA0EBNgIwIAEoAgAoAhwhACABIAMgAigCAEEBIABBH3FBqApqEQYAIAMoAhhBAUYEfyACIAMoAhA2AgBBAQVBAAsFQQALBUEACwshBSAEJAQgBQt4AQN/IwQhASMEQRBqJAQgASEAAn9BAEGMrgQoAgBB37femgFGDQAaQbMEESEAQYyuBEHft96aATYCAEEACwRAQZSKAyAAEMICBQJ/An9BAEGQrgQoAgAiACgCBEHOlZoSRw0AGiAAKAIACyECIAEkBCACCw8LQQALowICB38BfiMEIQIjBEEwaiQEIAJBGGohASACQRBqIQMgAiEEIAJBJGohBRDLCyIABEAgACgCACIABEAgACkDMCIHQoB+g0KA1qyZ9MiT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AgAhBCAAEIoCIAAoAiAQtgcgBAsQigILCyAAQdQyaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAwRAIAMQjRIgAxBBCyABQQFqIgEgAigCAEgNAAsLIAIQTyAAQeAyahBPIABB7DJqEE8gAEGUM2pBADYCACAAQfgyahBPIABBhDNqEE8gAEGgNWpBADYCACAAQZgzakEANgIAIABBnDNqQQA2AgAgAEHcM2pBADYCACAAQdgzakEANgIAIABB9DNqQQA2AgAgAEH4M2oQTyAAQYQ0ahBPIABBkDRqEE8gAEGcNGoQTyAAQag0ahBPIABBwDdqIQJBACEBA0AgAUEMbCACahBPIAFBAWoiAUECRw0ACyAAQdw3ahDdBCAAQYTYAGoQTyAAQZA6ahBPIABBnDpqEE8gAEGoOmoQTyAAQcDYAGoiAigCAEEASgRAQQAhAQNAIAIgARBVKAIAEPYHIAFBAWoiASACKAIASA0ACwsgAhBPIABBtNgAahBPIABB0NgAaiICKAIAIgFBzIECKAIARiABRXJFBEAgARDDAhogAkEANgIACyAAQdTYAGoQTyAAQQA6AAALCwsAIAAQngUgABBUC00BAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACQYz8ATYCACACIAE2AgggAhCvBSAAIAJBBGoQ5AMhAyACEJ4FIAIkBCADCwsAIAAQnwUgABBUC08BAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADQfT7ATYCACADIAE2AgggAxDGByAAIANBBGogAhCABiEEIAMQnwUgAyQEIAQLMwAgAEGYqQQoAgAgABsiABCxD0GYqQQoAgAgAEYEQEEAEIoCCyAABEAgABDkCSAAEEELC1QBAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQygEgACACIAMQTiIAKAIARhC5AiIBBEAgACACNgIACyABIQQgAxC0ASADJAQgBAtWAgJ/An0jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQcSABQQhqIgIgAEE8aiAAQUBrIAEQywcgAhA9IQQgAhAxIAEQMSABJAQgBAsHACABELgPC4kBAgJ/An0jBCEJIwRBMGokBEGwqQQoAgAiCkE8aiABEIgBIApBQGsg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QYAHaiIKEDogAEGwB2ohAyAAQYgHaiEBA0AgARA6IAFBCGoiASADRw0ACyAAQbwIaiEDIABBlAhqIQEDQCABEDogAUEIaiIBIANHDQALIABB+ClqEGggAEEAQYgqEGoaIAJDAACAv0MAAIC/EDIgBSACKQMANwIAIABDiYiIPDgCECAAQwAAoEA4AhQgAEHmhQI2AhggAEHwhQI2AhwgAEOamZk+OAIgIABDAADAQDgCJCAAQSxqIgFCfzcCACABQn83AgggAUJ/NwIQIAFCfzcCGCABQn83AiAgAUJ/NwIoIAFCfzcCMCABQn83AjggAUFAa0J/NwIAIAFCfzcCSCABQX82AlAgAEMAAIA+OAKAASAAQ83MTD04AoQBIABBADYCiAEgAEEANgKMASAAQwAAgD84ApABIABBADYCmAEgAEEAOgCUASACQwAAgD9DAACAPxAyIAYgAikDADcCACACQwAAAABDAAAAABAyIAggAikDACILNwIAIAcgCzcCACAAQQA6ALUBIABBAToAtgEgAEEBOgC3ASAAQQA6ALgBIABCADcCvAEgAEIANwLEASAAQQA2AswBIABBAzYC0AEgAEECNgLUASAAQQA2AtgBIABBAzYC3AEgAEEANgLgASACQ///f/9D//9//xAyIAkgAikDADcCACACQ///f/9D//9//xAyIAogAikDADcCACAAQwAAwEA4AihBACEBA0AgAEGACGogAUECdGpDAACAvzgCACAAQewHaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEFRw0AC0EAIQEDQCAAQdAYaiABQQJ0akMAAIC/OAIAIABB0AhqIAFBAnRqQwAAgL84AgAgAUEBaiIBQYAERw0AC0EAIQEDQCAAQdAoaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEVRw0ACyAEJAQLNAECfyMEIQQjBEEQaiQEIARBCGoiBSABIAIQwgogBCADEG8gACAFIAQQgQEgBBAxIAQkBAtCAQJ/IwQhBCMEQRBqJAQgBCADEDQgBEEEaiIDIAEgAiAEIABBA3FBhglqEQoAIAMQfSEFIAMQMSAEEDEgBCQEIAULKwEBfxDVByIBQZquBCABGyEBIABCADcCACAAQQA2AgggACABIAEQXBCTAQsxAQF/IwQhASMEQRBqJAQgASAAEJ8BIAEoAgAgASABLAAL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C0EASAR/IAAoAgAFIAALIAEQqwgLGAAgACwAC0EASAR/IAAoAgAFIAALEJMKCwkAIAAgARDiEAsqAQJ/An8jBCEBIwRBEGokBEHEvgJBBEHAywFBicsCQRJBFxACIAELJAQLCwAgACABIAIQ4BALCQAgACABEN8QCwsAIAAgASACEN4QCxgAIAAsAAtBAEgEfyAAKAIABSAACxCpAwsJACAAIAEQ3BALGAAgACwAC0EASAR/IAAoAgAFIAALEKsDCyoBAn8CfyMEIQEjBEEQaiQEQem9AkEFQdDLAUG7zAJBDUELEAIgAQskBAsNACAAIAEgAiADENsQCyoBAn8CfyMEIQEjBEEQaiQEQd69AkEFQfDLAUG7zAJBDEEKEAIgAQskBAsNACAAIAEgAiADENoQCxoAIAAsAAtBAEgEfyAAKAIABSAACyABEK8ICwcAIAAQ2RALKgECfwJ/IwQhASMEQRBqJARB6bwCQQRBkMwBQd3NAkECQQEQAiABCyQECwsAIAAgASACENcQCyoBAn8CfyMEIQEjBEEQaiQEQeG8AkEDQez4AUHjzQJBEUEdEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHZvAJBA0H4+AFB480CQRBBHBACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB0bwCQQNBhPkBQePNAkEPQRsQAiABCyQECxoAIAAsAAtBAEgEfyAAKAIABSAACyABELUICyoBAn8CfyMEIQEjBEEQaiQEQbO8AkEEQaDMAUGJywJBEUEVEAIgAQskBAscACAALAALQQBIBH8gACgCAAUgAAsgASACEM8FCwkAIAAgARDVEAsRACAAIAEgAiADIAQgBRDUEAsqAQJ/An8jBCEBIwRBEGokBEGPvAJBBkGwzAFB6M0CQRFBBhACIAELJAQLDwAgACABIAIgAyAEEM0QCw0AIAAgASACIAMQyhALKgECfwJ/IwQhASMEQRBqJARB9bsCQQVB0MwBQbvMAkELQQgQAiABCyQECw0AIAAgASACIAMQyBALCwAgACABIAIQxxALNQEBfyAALAALQQBIBEAgACgCACEACxA8IgIsAH8Ef0EABSACIAAQXiABQRpyIABBABDTAgsLBwAgABC9CAsYACAALAALQQBIBH8gACgCAAUgAAsQvggLKgECfwJ/IwQhASMEQRBqJARB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AAtBAEgEfyAAKAIABSAACyABELkCCyoBAn8CfyMEIQEjBEEQaiQEQc61AkEEQfDSAUGJywJBDkEJEAIgAQskBAsLACAAIAEgAhC1DwsJACAAIAEQsw8LKgECfwJ/IwQhASMEQRBqJARBubUCQQhBgNMBQYfRAkEEQQEQAiABCyQECxMAIAAgASACIAMgBCAFIAYQrw8LKgECfwJ/IwQhASMEQRBqJARBs7UCQQdBoNMBQZ/TAkEBQQQQAiABCyQECxEAIAAgASACIAMgBCAFEK0PCwkAIAAgARCsDwsaACAALAALQQBIBH8gACgCAAUgAAsgARCDCQsYACAALAALQQBIBH8gACgCAAUgAAsQxAQLCQAgACABEKkPC6cEAgF/AX4jBCEBIwRBEGokBCAAEDogAEEIahA6IABBEGoQOiAAQRhqEDogAEEgahA6IABBLGoQOiAAQcwAahBmIABB3ABqEGYgAEGAAWoQOiAAQYgBahBoIABBADYCsAEgAEEANgKsASAAQQA2ArQBIABBuAFqEGggAEHEAWoQaCAAQQA2AtQBIABBADYC0AEgAEEANgLYASAAQegBahDnAiAAQewBahDnAiAAQfABahDnAiABQwAAAABDAAAAABAyIAAgASkDACICNwIYIAAgAjcCECAAIAI3AgggACACNwIAIAFDAAAAAEMAAAAAEDIgACABKQMAIgI3AiwgACACNwIgIABDAAAAADgCNCAAQwAAAAA4AiggAEMAAIC/OAI4IABCADcCPCAAQgA3AkQgARBmIAAgASkCADcCXCAAIAEpAgg3AmQgACABKQIANwJMIAAgASkCCDcCVCAAQQA2AnggAEEANgJ0IABBADYCbCAAQQE2AnAgAEEAOgB8IABBADoAfSAAQQA6AH4gAUMAAAAAQwAAAAAQMiAAIAEpAwA3AoABIABBADYClAEgAEEBNgKcASAAQQE2ApgBIABDAAAAADgCpAEgAEEANgKgASAAQwAAgL84AqgBIABCADcC3AEgAEEANgLkASABEOcCIAAgASgCADYC6AEgARDnAiAAIAEoAgA2AuwBIAEQ5wIgACABKAIANgLwASAAQQA2AvQBIAEkBAsaACAALAALQQBIBH8gACgCAAUgAAtBABC5AQsHACAAEKAPC9AHAgV/AX4jBCEFIwRBEGokBCAFIQMgAEEMahA6IABBFGoQOiAAQRxqEDogAEEkahA6IABBLGoQOiAAQTRqEDogAEE8ahA6IABB2ABqEDogAEHgAGoQOiAAQegAahA6IABB8ABqEDogAEG4AWoQOiAAQcABahA6IABByAFqEMoSIABBwANqIgYiBEEANgIEIARBADYCACAEQQA2AgggAEHMA2oQZiAAQdwDahBmIABB7ANqEGYgAEH8A2oQZiAAQYwEahBmIABBpARqEN4DIABB1ARqEGggAEEANgLkBCAAQQA2AuAEIABBADYC6AQgAEH4BGoiByABQbwxahD4ByAAQagGaiEEIABBiAZqIQEDQCABEGYgAUEQaiIBIARHDQALIAAgAhDaBjYCACAAQQRqIgEgAkEAQQAQuwE2AgAgBiABEHggAEEANgIIIANDAAAAAEMAAAAAEDIgACADKQMANwIMIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AhwgACAINwIUIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AjQgACAINwIsIANDAAAAAEMAAAAAEDIgACADKQMANwI8IABDAAAAADgCRCAAQwAAAAA4AkggACACEFxBAWo2AkwgACAAQf6FAhBeNgJQIABBADYCVCADQwAAAABDAAAAABAyIAAgAykDADcCWCADQ///f39D//9/fxAyIAAgAykDADcCYCADQwAAAD9DAAAAPxAyIAAgAykDADcCaCADQwAAAABDAAAAABAyIAAgAykDADcCcCAAQQA7AYQBIABCADcCeCAAQQA7AYABIABBADoAggEgAEF/OwGGASAAQX87AYgBIABBADYCjAEgAEF/NgKUASAAQX82ApABIABBADoAmAEgAEEANgKcASAAQX82AqABIABBADYCqAEgAEEANgKkASAAQQ82ArQBIABBDzYCsAEgAEEPNgKsASADQ///f39D//9/fxAyIAAgAykDACIINwLAASAAIAg3ArgBIABBfzYCnAQgAEMAAAAAOAKgBCAAQwAAgD84AuwEIABBfzYC8AQgACAHNgL0BCAAIAAoAgA2AqQFIABBADYChAYgAEEANgKABiAAQgA3AuwFIABCADcC9AUgAxBmIAAgAykCADcCmAYgACADKQIINwKgBiAAIAMpAgA3AogGIAAgAykCCDcCkAYgAEEANgL8BSAAQX82AqwGIABBfzYCqAYgAEH/////BzYCtAYgAEH/////BzYCsAYgAEH/////BzYCvAYgAEH/////BzYCuAYgBSQECwcAIAAQnw8LKgECfwJ/IwQhASMEQRBqJARB5rICQQRBwNMBQfHJAkEJQQYQAiABCyQECwsAIAAgASACEJsPCx4BAX8jBCEBIwRBEGokBCABIAAQNyABEIcEIAEkBAsJACAAIAEQmg8LCQAgACABEJkPCx4BAX8jBCEBIwRBEGokBCABIAAQNyABEJ4KIAEkBAsJACAAIAEQmA8LHgEBfyMEIQEjBEEQaiQEIAEgABA3IAEQ/gUgASQECyoBAn8CfyMEIQEjBEEQaiQEQfuuAkECQfD8AUHayQJBH0EGEAIgAQskBAsHACAAEM4ECwcAIAAQlQ8LKgECfwJ/IwQhASMEQRBqJARB364CQQNBgP0BQZrLAkEbQQcQAiABCyQECwoAIAAgARA9EEILCQAgACABEJMPCy0BAX8jBCEBIwRBEGokBCABQZipBCgCAEGwMWooAgA2AgAgACABEIMDIAEkBAsqAQJ/An8jBCEBIwRBEGokBEGirgJBAkGM/QFB2skCQR1BERACIAELJAQLCQAgACABEJIPCwkAIAAgARCRDwsJACAAIAEQjw8LBQAQ4wYLBwAgABCODwsHACAAEIwPCyMAIwQhACMEQRBqJAQgAEHh1AI2AgBB4tMCIAAQugMgACQECywAIAAsAAtBAEgEQCAAKAIAIQALIAAEQCAAEKECIgAEQCAAEHQLBUEAEHQLCyoBAn8CfyMEIQEjBEEQaiQEQaisAkEEQdDTAUHxyQJBCEEFEAIgAQskBAsmACAALAALQQBIBH8gACgCAAUgAAsQoQIiAARAIAAgASACEPsECwsLACAAIAEgAhCKDwsLACAAIAEgAhCIDwsSAEGYqQQoAgBBlDNqKAIAEHQLFwBBmKkEKAIAQZQzaigCACAAIAEQ+wQLLgEBfyMEIQIjBEEQaiQEIAIgABA3QZipBCgCAEGUM2ooAgAgAiABEP0EIAIkBAsiAQF/IwQhAiMEQRBqJAQgAiAAEDcQYCACIAEQvwMgAiQECzkBAX8jBCEBIwRBEGokBCABIAAQN0GYqQQoAgAiAEHoNGogASkCADcCACAAQbw0akEBNgIAIAEkBAsqAQJ/An8jBCEBIwRBEGokBEHTqgJBBUHw0wFB6tUCQQRBBRACIAELJAQLCwAgACABIAIQhg8LIAEBfyMEIQIjBEEQaiQEIAIgABA3IAIgARCaBCACJAQLKgECfwJ/IwQhASMEQRBqJARBsKoCQQRBkNQBQfHJAkEGQQIQAiABCyQECwsAIAAgASACEIAPCwkAIAAgARD/DgsJACAAIAEQ/g4LJQEBfyMEIQEjBEEQaiQEIAEQPCgC9AQ2AgAgACABEOQHIAEkBAsJACAAIAEQ/Q4LCQAgACABEPwOCwkAIAAgARD6DgsJACAAIAEQ+A4LKgECfwJ/IwQhASMEQRBqJARBhKgCQQVBoNQBQbvMAkEHQQEQAiABCyQECw0AIAAgASACIAMQ9g4LCwAgACABIAIQ9Q4LBwAgABDdCQsHACAAEN4JCwcAIAAQsAYLHwAgAEIANwIAIABBADYCCCAAQYakAkGGpAIQXBCTAQsIABCVCBCDDAsLgP4CUgBBgggLE4A/AACAPwAAgL8AAIC/AAAAAAMAQZ4ICw+APwAAgD8AAIC/AwAAAAYAQboIC1iAPwAAgD8GAAAACQAAAAAAgD8AAAAAAACAvwAAgD8JAAAADAAAAAMAAAABAAAAAAAAAAIAAAABAAAAAwAAAAIAAAAAAAAAoocAAKeHAACthwAAsYcAAL2HAEGgCQuFAgQAAAABAAAAAAAAAAQAAAACAAAABAAAAAQAAAABAAAADAAAAAQAAAABAAAAEAAAAAQAAAACAAAAFAAAAAQAAAACAAAAHAAAAAQAAAABAAAAJAAAAAQAAAABAAAAKAAAAAQAAAABAAAALAAAAAQAAAABAAAAMAAAAAQAAAACAAAANAAAAAQAAAABAAAAPAAAAAQAAAABAAAAQAAAAAQAAAACAAAARAAAAAQAAAACAAAATAAAAAQAAAABAAAAXAAAAAQAAAABAAAAZAAAAAQAAAABAAAAaAAAAAQAAAABAAAAbAAAAAQAAAABAAAAcAAAAAQAAAABAAAAdAAAAAQAAAACAAAAfABBsAsL5BYuLi0gICAgICAgICAtWFhYWFhYWC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWFhYWFhYWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtICAgICBYWCAgICAgICAgICAuLi0gICAgICAgICAtWC4uLi4uWC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWC4uLi4uWCAgICAgICAgICAtICAgICAgICAgIFguLi4uLlgtICAgIFguLlggICAgICAgICAtLS0gICAgICAgICAtWFhYLlhYWC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtWC4uLi5YICAgICAgICAgICAtICAgICAgICAgICBYLi4uLlgtICAgIFguLlggICAgICAgICBYICAgICAgICAgICAtICBYLlggIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtWC4uLlggICAgICAgICAgICAtICAgICAgICAgICAgWC4uLlgtICAgIFguLlggICAgICAgICBYWCAgICAgICAgICAtICBYLlggIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtWC4uWC5YICAgICAgICAgICAtICAgICAgICAgICBYLlguLlgtICAgIFguLlggICAgICAgICBYLlggICAgICAgICAtICBYLlggIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtWC5YIFguWCAgICAgICAgICAtICAgICAgICAgIFguWCBYLlgtICAgIFguLlhYWCAgICAgICBYLi5YICAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWFggICBYLlggICAgICAgICAtICAgICAgICAgWC5YICAgWFgtICAgIFguLlguLlhYWCAgICBYLi4uWCAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgWC5YICAgICAgICAtICAgICAgICBYLlggICAgICAtICAgIFguLlguLlguLlhYICBYLi4uLlggICAgICAtICBYLlggIC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgIFguWCAgICAgICAtICAgICAgIFguWCAgICAgICAtICAgIFguLlguLlguLlguWCBYLi4uLi5YICAgICAtICBYLlggIC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICBYLlggICAgICAtICAgICAgWC5YICAgICAgICAtWFhYIFguLlguLlguLlguLlhYLi4uLi4uWCAgICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgWC5YICAgWFgtWFggICBYLlggICAgICAgICAtWC4uWFguLi4uLi4uLlguLlhYLi4uLi4uLlggICAtICBYLlggIC0gICBYLlggICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgIFguWCBYLlgtWC5YIFguWCAgICAgICAgICAtWC4uLlguLi4uLi4uLi4uLlhYLi4uLi4uLi5YICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgICBYLlguLlgtWC4uWC5YICAgICAgICAgICAtIFguLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uWCAtWFhYLlhYWC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICAgICAgWC4uLlgtWC4uLlggICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uLlgtWC4uLi4uWC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgICAgICBYLi4uLlgtWC4uLi5YICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uWFhYWFgtWFhYWFhYWC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgICAgIFguLi4uLlgtWC4uLi4uWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uLlhYLi4uWC4uWCAgICAtLS0tLS0tLS0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtWFhYWFhYWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uWCBYLi5YIFguLlggICAtICAgICAgIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tICAgIFguLi4uLi4uLi4uWCBYLlggIFguLlggICAtICAgICAgIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAtICAgIFguLi4uLi4uLi4uWCBYWCAgICBYLi5YICAtICAgICAgIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICBYLi5YICAgICAgICAgIC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICAgWFggICAgICAgICAgIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAtICAgICBYWFhYWFhYWFhYICAtLS0tLS0tLS0tLS0gICAgICAgIC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0gICAgICAgICAgICAgICAgICAgIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAQaAiC8xdN10pIyMjIyMjI2hWMHFzJy8jIyNbKSwjIy9sOiQjUTY+IyM1W240Mj5jLVRIYC0+PiMvZT4xMU5OVj1CdigqOi5GP3V1IyhnUlUubzBYR0hgJHZoTEcxaHh0OT9XYCMsNUxzQ3AjLWk+LnIkPCQ2cEQ+TGInOzlDcmM2dGdYbUtWZVUyY0Q0RW8zUi8yKj5dYihNQzskalBmWS47aF5gSVdNOTxMaDJUbFMrZi1zJG82UTxCV0hgWWlVLnhmTHEkTjskMGlSL0dYOlUoamNXMnAvVypxPy1xbW5VQ0k7akhTQWlGV00uUiprVUBDPUdIP2E5d3A4ZiRlLi00XlFnMSlRLUdMKGxmKHIvN0dyUmd3ViVNUz1DI2A4TkQ+UW8jdCdYIyh2I1k5dzAjMUQkQ0lmO1cnI3BXVVBYT3V4WHVVKEg5TSgxPHEtVUUzMSNeLVYnOElSVW83UWYuL0w+PUtlJCQnNUYlKV0wXiMwWEBVLmE8cjpRTHRGc0xjTDYjI2xPaikjLlk1PC1SJktnTHdxSmZMZ04mO1E/Z0leI0RZMnVMaUBeck1sOXQ9Y1dxNiMjd2VnPiRGQmpWUVRTRGdFS25JUzdFTTk+Wlk5dzAjTDs+PiNNeCY0TXZ0Ly9MW01rQSNXQGxLLk4nWzAjN1JMXyYjdytGJUh0RzlNI1hMYE4mLixHTTRQZzstPG5MRU5odng+LVZzTS5NMHJKZkxIMmVUTWAqb0pNSFJDYE5rZmltTTJKLFctalhTOilyMHdLI0BGZ2UkVT5gdydON0cjJCNmQiMkRV4kIzo5OmhrK2VPZS0tNngpRjcqRSU/NzYlXkdNSGVQVy1aNWwnJkdpRiMkOTU2OnJTP2RBI2ZpSzopWXIrYCYjMGpAJ0RiRyYjXiRQRy5MbCtETmE8WENNS0VWKk4pTE4vTipiPSVRNnBpYS1YZzhJJDxNUiYsVmRKZSQ8KDdHO0NrbCcmaEY7OyQ8Xz1YKGIuUlMlJSkjIyNNUEJ1dUUxVjp2JmNYJiMybSMoJmNWXWBrOU9oTE1ibiVzJEcyLEIkQmZEM1gqc3A1I2wsJFIjXXhfWDF4S1glYjVVKltyNWlNZlVvOVVgTjk5aEcpdG0rL1VzOXBHKVhQdWA8MHMtKVdUdChnQ1J4SWcoJTZzZmg9a3RNS24zaik8NjxiNVNrXy8wKF5dQWFOIyhwL0w+JlZaPjFpJWgxUzl1NW9AWWFhVyRlK2I8VFdGbi9aOk9oKEN4MiRsTkVvTl5lKSNDRllAQEk7Qk9RKnNSd1p0WnhSY1U3dVc2Q1hvdzBpKD8kUVtjak9kW1A0ZCldPlJPUE9weFRPN1N0d2kxOjppQjFxKUNfPWRWMjZKOzIsXTdvcCRddVFyQF9WNyRxXiVsUXd0dUhZXT1EWCxuM0wjMFBIRE80Zjk+ZENATz5IQnVLUHBQKkUsTitiM0wjbHBSL01yVEVILklBUWsuYT5EWy5lO21jLnhdSXAuUEheJy9hcVVPLyQxV3hMb1cwW2lMQTxRVDs1SEtEK0BxUSdOUSgzX1BMaEU0OFIucUFQU3dRMC9XSz9aLFt4Py1KO2pRVFdBMFhAS0ooX1k4Ti06L003NDovLVpwS3JVc3M/ZCNkWnFdREFia1UqSnFrTCtud1hAQDQ3YDU+dz00aCg5LmBHQ1JVeEhQZVJgNU1qb2woZFVXeFphKD5TVHJQa3JKaVd4YDVVN0YjLmcqanJvaEdnYGNnOmxTVHZFWS9FVl83SDRROVtaJWNudjtKUVlaNXEubDdaZWFzOkhPSVpPQj9HPE5hbGQkcXNdQF1MPEo3YlIqPmd2Ols3TUkyaykuJzIoJDVGTlAmRVEoLClVXVddK2ZoMTgudnNhaTAwKTtEM0A0a3U1UD9EUDhhSnQrO3FVTV09K2InOEA7bVZpQkt4MERFWy1hdUdsODpQSiZEaitNNk9DXU9eKCgjI11gMGkpZHJUOy03WGA9LUgzW2lnVW5QRy1OWmxvLiNrQGgjPU9yayRtPmE+JC0/VG0kVVYoPyNQNllZIycvIyMjeGU3cS43M3JJMypwUC8kMT5zOSlXLEpyTTdTTl0nLzRDI3YkVWAwI1YuWzA+eFFzSCRmRW1QTWdZMnU3S2goRyVzaUlmTFNvUytNSzJlVE0kPTUsTThwYEEuO19SJSN1W0sjJHg0QUc4LmtLL0hTQj09LSdJZS9RVHRHPy0uKl5OLTRCL1pNXzNZbFFDNyhwN3EpJl0oYDZfYykkLypKTChMLV4oXSR3SU1gZFB0T2RHQSxVMzp3Mk0tMDxxLV1MXz9eKTF2dycuLE1Sc3FWci5MO2FOJiMvRWdKKVBCY1stZj4rV29tWDJ1N2xxTTJpRXVtTVRjc0Y/LWFUPVotOTdVRW5YZ2xFbjFLLWJuRU9gZ3VGdChjJT07QW1fUXNAakxvb0kmTlg7XTAjajQjRjE0O2dsOC1HUXBnd2hycTgnPWxfZi1iNDknVU9xa0x1Ny0jI29EWTJMKHRlK01jaCZnTFl0SixNRXRKZkxoJ3gnTT0kQ1MtWlolUF04Ylo+I1M/WVkjJVEmcSczXkZ3Jj9EKVVETnJvY00zQTc2Ly9vTD8jaDdnbDg1W3FXL05ET2slMTZpajsrOjFhJ2lOSWRiLW91OC5QKncsdjUjRUkkVFdTPlBvdC1SKkgnLVNFcEE6ZylmK08kJSVga0EjRz04Uk1tRzEmT2A+dG84YkNdVCYkLG4uTG9PPjI5c3AzZHQtNTJVJVZNI3E3J0RIcGcrI1o5JUhbSzxMJWEyRS1ncldWTTNAMj0tazIydExdNCQjIzZXZSc4VUpDS0VbZF89JXdJOyc2WC1Hc0xYNGpeU2dKJCMjUip3LHZQM3dLI2lpVyYjKmheRCZSP2pwNysvdSYjKEFQIyNYVThjJGZTWVctSjk1Xy1EcFtnOXdjTyYjTS1oMU9jSmxjLSp2cHcweFVYJiNPUUZLTlhAUUknSW9QcDduYixRVS8vTVEmWkRrS1ApWDxXU1ZMKDY4dVZsJiNjJ1swIyhzMVgmeG0kWSVCNypLOmVEQTMyM2o5OThHWGJBI3B3TXMtamdEJDlRSVNCLUFfKGFONHhvRk1eQEM1OEQwK1ErcTNuMCMzVTFJbkRqRjY4Mi1Tak1YSkspKGgkaHh1YV9LXXVsOTIlJ0JPVSYjQlJSaC1zbGc4S0RscjolTDcxS2E6LkE7JVlVTGpEUG1MPExZczhpI1h3Sk9ZYUtQS2MxaDonOUtlLGcpYiksNzg9STM5Qjt4aVkkYmdHdy0mLlppOUluWER1WWElRypmMkJxN21uOV4jcDF2diUjKFdpLTsvWjVobzsjMjo7JWQmI3g5djY4QzVnP250WDBYKXBUYDslcEIzcTdtZ0dOKTMlKFA4blRkNUw3R2VBLUdMQCslSjN1MjooWWY+ZXRgZTspZiNLbTgmK0RDJEk0Nj4jS3JdXXUtWz05OXR0czEucWIjcTcyZzFXSk84MXErZU4nMDMnZU0+JjFYeFktY2FFbk9qJTJuOCkpLD9JTFI1Xi5JYm48LVgtTXE3W2E4MkxxOkYmI2NlK1M5d3NDSyp4YDU2OUU4ZXcnSGVdaDpzSVsyTE0kW2d1a2EzWlJkNjp0JUlHOjskJVlpSjpOcT0/ZUF3Oy86bm5EcTAoQ1ljTXBHKXFMTjQkIyMmSjxqJFVwSzxRNGExXU11cFdeLXNqXyQlW0hLJSdGIyMjI1FSWko6OlkzRUdsNCdAJUZraUFPZyNwWyMjT2BndWtUZkJIYWdMPExIdyVxJk9WMCMjRj02LzpjaEltMEBlQ1A4WF06a0ZJJWhsOGhnT0BSY0JoUy1AUWIkJSttPWhQRExnKiVLOGxuKHdjZjMvJ0RXLSQubFI/bltuQ0gtZVhPT05USmxoOi5SWUYlMydwNnNxOlVJTUE5NDUmXkhGUzg3QCRFUDJpRzwtbENPJCVjYHVLR0QzckMkeDBCTDhhRm4tLWBrZSUjSE1QJ3ZoMS9SJk9fSjkndW0sLjx0eFtAJXdzSmsmYlVUMmAwdU12N2dnI3FwL2lqLkw1NidobDsuczVDVXJ4ak9NNy0jIy5sK0F1J0EmTzotVDcyTF1QYCY9O2N0cCdYU2NYKnJVLj4tWFR0LCVPVlU0KVMxK1ItI2RnMC9Obj9LdTFeMGYkQipQOlJvd3dtLWAwUEtqWURETSczXWQzOVZaSEVsNCwuaiddUGstTS5oXiY6MEZBQ20kbWFxLSZzZ3cwdDcvNiheeHRrJUx1SDg4RmotZWttPkdBI18+NTY4eDYoT0ZSbC1JWnBgJmIsX1AnJE08Sm5xNzlWc0pXL21XUypQVWlxNzY7XS9OTV8+aExieGZjJG1qYCxPOyYlVzJtYFpoOi8pVWV0dzphSiVdSzloOlRjRl11Xy1TajksVkszTS4qJyYwRFtDYV1KOWdwOCxrQVddJSg/QSVSJGY8LT5adHMnXmtuPS1eQGM0JS1wWTZxSSVKJTFJR3hmTFU5Q1A4Y2JQbFh2KTtDPWIpLDwybU92UDh1cCxVVmYzODM5YWNBV0FXLVc/I2FvL14jJUtZbzhmUlVMTmQyLj4lbV1VSzpuJXIkJ3N3XUo7NXBBb09fIzJtTzNuLCc9SDUoZXRIZypgK1JMZ3Y+PTRVOGd1RCRJJUQ6Vz4tcjVWKiVqKlc6S3Zlai5McCQ8TS1TR1onOitRX2srdXZPU0xpRW8oPGFEL0s8Q0NjYCdMeD4nPzsrK08nPigpakxSLV51NjhQSG04WkZXZStlajhoOjlyNkwqMC8vYyZpSCZSOHBSYkEjS2ptJXVwVjFnOmFfI1VyN0Z1QSModFJoIy5ZNUsrQD8zPC04bTAkUEVuO0o6cmg2P0k2dUc8LWB3TVUnaXJjcDBMYUVfT3RsTWImMSM2VC4jRkRLdSMxTHcldSUrR00rWCdlP1lMZmpNW1ZPME1idUZwNzs+USYjV0lvKTBARiVxN2MjNFhBWE4tVSZWQjxIRkYqcUwoJC9WLDsoa1haZWpXT2A8WzU/P2V3WSgqOT0ld0RjOyx1PCc5dDNXLShIMXRoMytHXXVjUV1rTHM3ZGYoJC8qSkxdQCp0N0J1X0czXzdtcDc8aWFRak9ALmtMZzt4M0IwbHFwN0hmLF5aZTctIyNAL2M1OE1vKDM7a25wMCUpQTc/LVcrZUknbzgpYjxuS253J0hvOEM9WT5wcUI+MGllJmpoWls/aUxSQEBfQXZBLWlRQyg9a3NSWlJWcDdgLj0rTnBCQyVyaCYzXVI6OFhEbUU1XlY4Tyh4PDxhRy8xTiQjRlgkMFY1WTZ4J2FFckkzSSQ3eCVFYHY8LUJZLCklLT9Qc2YqbD8lQzMubU0oPS9NMDpKeEcnPzdXaEglbydhPC04MGcwTkJ4b08oR0g8ZE1dbi4rJXFAakg/Zi5Vc0oyR2dzJjQ8LWU0NyZLbCtmLy85QGBiKz8uVGVOXyZCOFNzP3Y7XlRyaztmI1l2SmtsJnckXT4tK2s/Jyg8Uzo2OHRxKldvRGZadSc7bU0/OFhbbWE4VyUqYC09O0QuKG5jNy87KWc6VDE9XkokJkJSVigtbFRtTkI2eHFCW0AwKm8uZXJNKjxTV0ZddTI9c3QtKig2dj5eXShILmFSRVpTaSwjMTpbSVhhWkZPbTwtdWkjcVVxMiQjI1JpO3U3NU9LIyhSdGFXLUstRmBTK2NGXXVOYC1LTVElclAvWHJpLkxSY0IjIz1ZTDNCZ00vM01EP0BmJjEnQlctKUp1PEwyNWdsOHVoVm0xaEwkIyMqOCMjIydBMy9Ma0tXKyhecldYPzVXXzhnKWEobSZLOFA+I2JtbVdDTWtrJiNUUmBDLDVkPmcpRjt0LDQ6QF9sOEcvNWg0dlVkJSYlOTUwOlZYRCdRZFdvWS1GJEJ0VXdtZmUkWXFMJzgoUFdYKFA/XkBQbzMkIyNgTVNzP0RXQlovUz4rNCU+ZlgsVld2L3cnS0RgTFA1SWJIO3JUVj5uM2NFSzhVI2JYXWwtL1YrXmxqMzt2bE1iJls1WVE4I3Bla1g5SlAzWFVDNzJMLCw/K05pJmNvN0Fwbk8qNU5LLCgoVy1pOiQsa3AnVURBTyhHMFNxN01WakpzYkl1KSdaLCpbPmJyNWZYXjpGUEFXci1tMktnTDxMVU4wOThrVEYmI2x2bzU4PS92akRvOy47KUthKmhMUiMvaz1yS2J4dVZgPlFfbk42Jzh1VEcmIzFUNWcpdUx2Ojg3M1VwVExnSCsjRmdwSCdfbzE3ODBQaDhLbXhRSjgjSDcyTDRANzY4QFRtJlFoNENCLzVPdm1BJixRJlFiVW9pJGFfJTNNMDFIKTR4N0leJktRVmd0Rm5WKztbUGM+W200ay8vLF0xPyNgVllbSnIqMyYmc2xSZkxpVlpKOl0/PUszU3c9WyQ9dVJCPzN4azQ4QGFlZzxaJzwkIzRIKTYsPmUwalQ2J04jKHElLk89PzJTXXUqKG08LVY4SicoMSlHXVs2OGhXJDUncVtHQyY1amBURT9tJ2VzRkdOUk0paixmZlo/LXF4ODstPmc0dCo6Q0lQL1tRYXA3LzknIygxc2FvN3ctLnFOVWRrSil0Q0YmI0JeO3hHdm4ycjlGRVBGRkZjTEAuaUZOa1R2ZSRtJSNRdlFTOFVAKTJaKzNLOkFLTTVpc1o4OCtkS1EpVzY+SiVDTDxLRT5gLmQqKEJgLW44RDlvSzxVcF1jJFgkKCwpTThadDcvW3Jka3FUZ2wtMGN1R012Jz8+LVhWMXFbJy01aydjQVo2OWU7RF8/JFpQUCZzXis3XSkkKiQjQFFZaTksNVAmIzlyKyQlQ0U9Njg+SzhyMD1kU0MlJShAcDcubTdqaWxRMDInMC1WV0FnPGEvJyczdS49NEwkWSk2ay9LOl9bMz0manZMPEwwQy8yJ3Y6XjstRElCVyxCNEU2ODprWjslPzgoUThCSD1rTzY1Qlc/eFNHJiNAdVUsRFMqLD8uKyhvKCMxdkNTOCNDSEY+VGxHVydiKVRxN1ZUOXFeKl4kJC46Jk5AQCQmKVdIdFBtKjVfck8wJmUlSyYjLTMwaihFNCMnWmIuby8oVHBtJD5LJ2ZAW1B2RmwsaGZJTlROVTZ1JzBwYW83JVhVcDldNS4+JWhgOF89VllieHVlbC5OVFNzSmZMYWNGdTNCJ2xRU3UvbTYtT3FlbThUK29FLS0kMGEva111ajlFd3NHPiV2ZVIqaHZeQkZwUWo6SycjU0osc0ItJyNdKGouTGc5MnJUdy0qbiVALzszOXJySkYsbCNxViVPcnRCZUM2Lyw7cUIzZWJOV1s/LEhxajJMLjFOUCZHalVSPTFEOFFhUzNVcCZAKjl3UD8rbG83Yj9AJSdrNGBwMFokMjIlSzMraUNaaj9YSk40Tm0mK1lGXXVALVckVSVWRVEvLCw+PiMpRDxoI2ApaDA6PFE2OTA5dWErJlZVJW4yOmNHM0ZKLSVAQmotRGdMcmBIdyZIQUtqS2pzZUs8L3hLVCopQixOOVgzXWtyYzEydCdwZ1RWKEx2LXRMW3hnXyU9TV9xN2FeeD83VWJkPiMlOGNZI1laPz0sYFdkeHUvYWUmI3c2KVI4OXRJIzZAcycoNkJmN2EmP1M9XlpJX2tTJmFpYCY9dEU3MkxfRCw7XlIpN1skczxFaCNjJilxLk1YSSUjdjlST2E1RlpPJXNGN3E3TndiJiNwdFVKOmFxSmUkU2w2OCUuRCMjI0VDPjw/LWFGJiNSTlF2Pm84bEtOJTUvJCh2ZGZxNytlYkEjdTFwXW92VUtXJlklcV0nPiQxQC1beGZuJDdaVHA3bU0sRyxLbzdhJkd1JUdbUk14SnNbME1NJXdjaS5MRkRLKSg8Y2BROE4pakVJRiorP1AyYThnJSkkcV1vMmFIOEMmPFNpYkMvcSwoZTp2Oy1iIzZbJE50RFo4NEplMktOdkIjJFA1P3RRM250KDBkPWouTFFmLi9MbDMzKyg7cTNMLXc9OGRYJCNXRiZ1SUpALWJmST4lOl9pMkI1Q3NSOCY5WiYjPW1QRW5tMGZgPCZjKVFMNXVKIyV1JWxKaitELXI7Qm9GJiM0RG9TOTdoNWcpRSNvOiZTNHdlREYsOV5Ib2VgaCpMK19hKk5yTFctMXBHXyYyVWRCODZlJUIvOj0+KU40eGVXLip3ZnQtOyQnNTgtRVNxcjxiP1VJKF8lQFtQNDY+I1VgJzZBUV1tJjYvYFo+I1M/WVkjVmM7cjdVMiYzMjZkPXcmSCMjIyM/VFpgKjQ/Ji5NSz9MUDhWeGc+JFtRWGMlUUp2OTIuKERiKkIpZ2IqQk05ZE0qaEpNQW8qYyYjYjB2PVBqZXJdJGdHJkpYRGYtPidTdHZVNzUwNWw5JEFGdmdZUkleJjxeYjY4P2ojcTlRWDRTTSdSTyMmc0wxSU0uckpmTFVBajIyMV1kIyNEVz1tODN1NTsnYll4LCpTbDBoTChXOzskZG9CJk8vVFE6KFpeeEJkTGpMPExuaTsnJ1guYCQjOCsxR0Q6ayRZVVdzYm44b2doNnJ4WjJaOV0lbmQrPlYjKjhVXzcyTGgrMlE4Q2owaTo2aHAmJEMvOnAoSEs+VDhZW2dIUTRgNCknJEFiKE5vZiVWJzhoTCYjPE5FZHRnKG4nPVMxQShRMS9JJjQoWyVkTWAsSXUnMTpfaEw+U2ZEMDcmNkQ8ZnA4ZEhNNy9nK3RsUE45SipyS2FQY3QmPyd1QkNlbV5qbiU5X0spPCxDNUszcz01ZyZHbUpiKltTWXE3SztUUkxHQ3NNLSQkO1MlOllAcjdBSzBwcHJwTDxMcmgscTdlLyVLV0s6NTBJXittJ3ZpYDM/JVpwKzwtZCskTC1TdjpALm8xOW4kczAmMzk7a247UyVCU3EqJDNXb0pTQ0x3ZVZbYVonTVFJak88NztYLVg7JitkTUx2dSNeVXNHRUM5V0VjW1god0k3IzIuKEYwalYqZVpmPC1RdjNKLWMrSjVBbHJCIyRwKEg2OEx2RUEncTNuMCNtLFtgKjhGdClGY1lnRXVkXUNXZm02OCwoYUxBJEBFRlRnTFhvQnEvVVBscDc6ZFsvO3JfaXg9OlRGYFM1SC1iPExJJkhZKEs9aCMpXUxrJEsxNGxWZm06eCRIPDNeUWw8TWAkT2hhcEJua3VwJ0QjTCRQYl9gTipnXTJlO1gvRHRnLGJzaiZLIzJbLTppWXInX3dnSClOVUlSOGExbiNTP1llaidoOF41OFViWmQrXkZLRCpUQDs2QTdhUUNbSzhkLSh2NkdJJHg6VDwmJ0dwNVVmPkBNLipKOjskLXJ2MjknTV04cU12LXRMcCwnODg2aWFDPUhiKllKb0tKLChqJUs9SGBLLnY5SGdncUJJaVp1J1F2QlQuIz0pMHVrcnVWJi4pMz0oXjFgbypQajQ8LTxhTigoXjcoJyNaMHdLIzVHWEA3dV1bYCpTXjQzOTMzQTRybF1bYCpPNENnTEVsXXYkMVEzQWVGMzdkYlhrLC4pdmojeCdkYDtxZ2JRUiVGVywyKD9MTz1zJVNjNjglTlAnIyNBb3RsOHg9QkUjajFVRChbMyRNKF1VSTJMWDNScEtOQDsvI2YnZi8mX210JkYpWGRGPDl0NClRYS4qa1RMd1EnKFRUQjkueEgnPiNNSitnTHE5LSMjQEh1WlBOMF11Omg3LlQuLkc6OyQvVXNqKFQ3YFE4dFQ3MkxuWWw8LXF4ODstSFY3US0mWGR4JTFhLGhDPTB1K0hsc1Y+bnVJUUwtNTxOPylOQlMpUU4qX0ksPyYpMidJTSVMM0kpWCgoZS9kbDImOCc8TTpeI00qUStbVC5YcmkuTFlTM3YlZkZgNjhoO2ItWFsvRW4nQ1IucTdFKXAnL2tsZTJITSx1O14lT0tDLU4rTGwlRjlDRjxOZideI3QyTCw7MjdXOjBPQDYjI1U2Vzc6JHJKZkxXSGokIyl3b3FCZWZJWi5QSzxiKnQ3ZWQ7cCpfbTs0RXhLI2hAJl0+Xz5Aa1hRdE1hY2ZELm0tVkFiODtJUmVNMyR3ZjAnJ2hyYSpzbzU2OCdJcCZ2UnM4NDknTVJZU3AlOnQ6aDVxU2d3cEVyJEI+USw7cyhDIyQpYHN2UXVGJCMjLUQsIyMsZzY4QDJbVDsuWFNkTjlRZSlycHQuX0stIzV3RilzUCcjI3AjQzBjJS1HYiVoZCs8LWonQWkqeCYmSE1rVF1DJ09TbCMjNVJHW0pYYUhOO2QndUEjeC5fVTsuYFBVQChaM2R0NHIxNTJAOnYsJ1IuU2ondyMwPC07a1BJKUZmSiYjQVlKJiMvLyk+LWs9bT0qWG5LJD49KTcyTF0wSSU+Lkc2OTBhOiQjIzwsKTs/OzcyIz94OStkO15WJzk7allAOyliciNxXllRcHg6WCNUZSRaXic9LT1iR2hMZjpENiZiTndaOS1aRCNuXjlIaExNcjVHOyddZCY2J3dZbVRGbUw8TEQpRl4lW3RDJzg7KzlFI0MkZyUjNVk+cTl3ST5QKDltSVs+a0MtZWtMQy9SJkNIK3MnQjtLLU02JEVCJWlzMDA6K0E0Wzd4a3MuTHJOazAmRSl3SUxZRkAyTCcwTmIkK3B2PCgyLjc2OC9GclkmaCReM2kmQCtHJUpUJzwtLHZgMztfKUk5TV5BRV1DTj9DbDJBWmcrJTRpVHBUMzxuLSYlSCViPEZEajJNPGhIPSZFaDwyTGVuJGIqYVRYPS04UXhOKWsxMUlNMWNeaiU5czxMPE5GU28pQj8rPC0oR3hzRixeLUVoQCQ0ZFhoTiQrI3J4SzgnamUnRDdrYGU7KTJwWXdQQSdfcDkmQF4xOG1sMV5bQGc0dCpbSk9hKls9UXA3KHFKX29PTF4oJzdmQiZIcS06c2Ysc05qOHhxXj4kVTRPXUdLeCdtOSliQHA3WXN2SzN3XllSLUNkUSo6SXI8KCR1JikjKCY/TDlSZzNIKTRmaUVwXmlJOU84S25UaixdSD9EKnI3J007UHdaOUswRV5rJi1jcEk7LnAvNl92d29GTVY8LT4jJVhpLkx4Vm5yVSg0JjgvUCs6aExTS2okI1UlXTQ5dCdJOnJnTWknRkxAYTowWS11QVszOScsKHZibWEqaFUlPC1TUkZgVHQ6NTQyUl9WViRwQFtwOERWW0EsPzE4MzlGV2RGPFRkZEY8OUFoLTYmOXRXb0RsaF0mMVNwR01xPlRpMU8qSCYjKEFMOFtfUCUuTT52Xi0pKXFPVCpGNUNxMGBZZSUrJEI2aTo3QDBJWDxOK1QrME1sTUJQUSpWaj5Tc0Q8VTRKSFk4a0QyKTJmVS9NIyRlLilUNCxfPThoTGltWyYpOz9Va0snLXg/Jyg6c2lJZkw8JHBGTWBpPD8lVyhtR0RITSU+aVdQLCMjUGAlL0w8ZVhpOkBaOUMuN289QChwWGRBTy9OTFE4bFBsK0hQT1FhOHdEOD1eR2xQYThUS0kxQ2poc0NUU0xKTScvV2w+LVMocXclc2YvQCUjQjY7L1U3S111WmJpXk9jXjJuPGJoUG1Va013PiV0PCknbUVWRScnbmBXbkpyYSReVEt2WDVCPjtfYVNFSycsKGh3YTA6aTRHPy5CY2kuKFhbP2IqKCQsPS1uPC5RJWAoWD0/K0BBbSpKczAmPTNiaDhLXW1MPExvTnMnNiwnODVgMD90LydfVTU5QF1kZEY8I0xkRjxlV2RGPE91Ti80NXJZPC1MQCYjK2ZtPjY5PUxiLE9jWlYvKTtUVG04Vkk7PyVPdEo8KGI0bXE3TTY6dT9LUmRGPGdSQDJMPUZOVS08YlsoOWMvTUwzbTtaWyRvRjNnKUdBV3FwQVJjPTxST3U3Y0w1bDstW0FdJS8rZnNkO2wjU2FmVC9mKlddMD1PJyQoVGI8WykqQGU3NzVSLTpZb2IlZyo+bCo6eFA/WWIuNSkld19JPzd1azVKQytGUyhtI2knay4nYTBpKTk8N2InZnMnNTlocSQqNVVodiMjcGleOCtoSUVCRmBudm9gOydsMC5eUzE8LXdVSzIvQ29oNThLS2hMak09U08qcmZPYCtxQ2BXLU9uLj1BSjU2Pj5pMkAyTEg2QTomNXFgPzlJM0BAJzA0JnAyL0xWYSpULTQ8LWkzO005VXZaZCtONz5iKmVJd2c6Q0MpYzw+bk8mIzxJR2U7X18udGhqWmw8JXcoV2syeG1wNFFASSNJOSxERl11Ny1QPS4tXzpZSl1hU0BWPzYqQygpZE9wNzpXTCxiJjNSZy8uY21NOSZyXj4kKD4uWi1JJkooUTBIZDVRJTdDby1iYC1jPE4oNnJAaXArQXVySzxtODZRSXRoKiN2Oy1PQnFpK0w3d0RFLUlyOEtbJ20rRERTTHdLJi8uPy1WJVVfJTM6cUtOdSRfYipCLWtwN05hRCdRZFdRUEtZcVtAPlApaEk7Kl9GXXVgUmJbLmo4X1EvPCY+dXUrVnNIJHNNOVRBJT8pKHZtSjgwKSxQN0U+KXRqRCUyTD0tdCNmS1slYHY9UTg8RmZOa2dnXm9JYmFoKiM4L1F0JEYmOksqLShOLycrMXZNQix1KCktYS5WVVUqI1tlJWdBQU8oUz5XbEEyKTtTYT5nWG04WUJgMWRASyNuXTc2LWEkVSxtRjxmWF1pZHFkKTwzLF1KN0ptVzRgNl11a3M9NC03MkwoakVrKzpiSjBNXnEtOERtX1o/MG9sUDFDOVNhJkhbZCZjJG9vUVVqXUV4ZCozWk1ALVdHVzIlcycsQi1fTSU+JVVsOiMvJ3hvRk05UVgtJC5RTic+WyUkWiR1RjZwQTZLaTJPNTo4dyp2UDE8LTFgW0csKS1tIz4wYFAmI2ViIy4zaSlydEI2MShvJyQ/WDNCPC9SOTA7ZVpdJU5jcTstVGxdI0Y+MlFmdF5hZV81dEtMOU1VZTliKnNMRVE5NUMmYD1HP0BNaj13aConM0U+PS08KUd0Kkl3KSdRRzpgQEl3T2Y3Jl0xaSdTMDFCK0V2L05hYyM5Uzs9O1lRcGdfNlVgKmtWWTM5eEssWy82QWo3OicxQm0tXzFFWWZhMStvJm80aHA3S05fUShPbElvQFMlO2pWZG4wJzE8VmM1Mj11YDNeby1uMSdnNHY1OEhqJjZfdDckIyM/TSljPCRiZ1FfJ1NZKCgteGtBI1koLHAnSDlySVZZLWIsJyViQ1BGNy5KPFVwXiwoZFUxVlkqNSNXa1RVPmgxOXcsV1FoTEkpM1MjZiQyKGViLGpyKmI7M1Z3XSo3TkglJGM0VnMsZUQ5PlhXOD9OXW8rKCpwZ0MlLzcyTFYtdTxIcCwzQGVeOVVCMUorYWs5LVROL21oS1BnK0FKWWQkTWx2QUZfakNLKi5PLV4oNjNhZE1ULT5XJWlld1M4VzZtMnJ0Q3BvJ1JTMVI4ND1AcGFUS3QpPj0lJjFbKSp2cCd1K3gsVnJ3TjsmXWt1TzlKRGJnPXBPJEoqLmpWZTt1J20wZHI5bCw8KndNSypPZT1nOGxWX0tFQkZrTydvVV1ePVstNzkyI29rLClpXWxSOHFRMm9BOHdjUkNaXjd3L05qaDs/LnN0WD9RMT5TMXE0Qm4kKUsxPC1yR2RPJyRXci5MYy5DRykkLypKTDR0TlIvLFNWTzMsYVV3J0RKTjopU3M7d0duOUEzMmlqdyVGTCtaMEZuLlU5O3JlU3EpYm1JMzJVPT01QUx1RyYjVmYxMzk4L3BWbzEqYy0oYVkxNjhvPGBKc1Niay0sMU47JD4wOk9VYXMoMzo4Wjk3MkxTZkY4ZWI9Yy07PlNQdzcuNmhuM21gOV5Ya24oci5xU1swO1QlJlFjPStTVFJ4WCdxMUJOazMmKmV1MjsmOHEkJng+USNRN15UZis2PChkJVpWbWoyYkRpJS4zTDJuKzRXJyRQaURERylnLHIlKz8sJEA/dW91NXRTZTJhTl9BUVUqPGhgZS1HSTcpP09LMkEuZDdfYyk/d1E1QVNAREwzciM3ZlNrZ2w2LSsrRDonQSx1cTdTdmxCJHBjcEgncTNuMCNfJWRZI3hDcHItbDxGME5SQC0jI0ZFVjZOVEY2IyMkbDg0TjF3P0FPPidJQU9VUlEjI1ZeRnYtWEZiR003RmwoTjwzRGhMR0YlcS4xckMkIzpUX18mUGk2OCUweGlfJltxRkooNzdqXyZKV29GLlY3MzUmVCxbUio6eEZSKks1Pj4jYGJXLT80TmVfJjZOZV8mNk5lXyZuYGtyLSNHSmNNNlg7dU02WDt1TSguYS4uXjJUa0wlb1IoIzt1LlQlZkFyJTR0SjgmPjwxPUdIWl8rbTkvI0gxRl5SI1NDIypOPUJBOShEP3ZbVWlGWT4+XjhwLEtLRi5XXUwyOXVMa0xsdS8rNFQ8WG9JQiZoeD1UMVBjRGFCJjtISCstQUZyPyhtOUhaVilGS1M4SkN3O1NEPTZbXi9EWlVMYEVVRGZdR0dsRyY+dyQpRi4vXm4zK3JsbytEQjs1c0lZR05rK2kxdC02OUpnLS0wcGFvN1NtI0spcGRIVyY7THVETkhASD4jL1gtVEkoO1A+IyxHYz4jMFN1PiM0YDE/IzhsQz8jPHhVPyNALmk/I0Q6JUAjSEY3QCNMUklAI1BfW0AjVGtuQCNYdypBI10tPUEjYTlPQSNkPEYmIyo7RyMjLkdZIyMyU2wjIzZgKCQjOmw6JCM+eEwkI0IuYCQjRjpyJCNKRi4lI05SQCUjUl9SJSNWa2UlI1p3dyUjXy00JiMzXlJoJVNmbHItaydNUy5vPy41L3NXZWwvd3BFTTAlMycvMSlLXmYxLWQ+RzIxJnYoMzU+VmAzOVY3QTQ9b254NEExT1k1RUkwOzZJYmdyNk0kSFM3UTwpNThDNXcsO1dvQSojWyVUKiNgMWcqI2Q9IysjaEk1KyNsVUcrI3BiWSsjdG5sKyN4JCksIyYxOywjKj1NLCMuSWAsIzJVciwjNmIuLSM7d1tII2lRdEEjbV4wQiNxakJCI3V2VEIjIy1oQiMnOSRDIytFNkMjL1FIQyMzXlpDIzdqbUMjO3YpRCM/LDxEI0M4TkQjR0RhRCNLUHNEI09dL0UjZzFBNSNLQSoxI2dDMTcjTUdkOyM4KDAyI0wtZDMjcldNNCNIZ2ExIyw8dzAjVC5qPCNPIycyI0NZTjEjcWFeOiNfNG0zI29ALz0jZUc4PSN0OEo1I2ArNzgjNHVJLSNtM0IyI1NCWzgjUTBAOCNpWyo5I2lPbjgjMU5tOyNec045I3FoPDkjOj14LSNQO0syIyQlWDkjYkMrLiNSZzs8I21OPS4jTVRGLiNSWk8uIzI/KTQjWSMoLyNbKTEvI2I7TC8jZEFVLyMwU3Y7I2xZJDAjbmAtMCNzZjYwIyhGMjQjd3JIMCMlL2UwI1RtRDwjJUpTTUZvdmU6Q1RCRVhJOjxlaDJnKUIsM2gyXkczaTsjZDNqRD4pNGtNWUQ0bFZ1YDRtYDomNW5pVUE1QChBNUJBMV1QQkI6eGxCQ0M9MkNETFhNQ0VVdGlDZiYwZzIndE4/UEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQLXFla0NgLjlrRWdeK0Yka3dWaUZKVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVvLF48LTI4WkknTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cDs3cS0jbExZSTp4dkQ9IwBB9v8ACwpAQAAAQEEAAJhBAEGKgAELugFQQQAAAAAAAOBAAACAQQAAgD8AAABBAAD4QQAAAAAAALhBAAC4QQAAMEEAADBBAACoQQAAAAAAABBBAAC4QQAAgEAAADBBAABcQgAAkEEAALhBAAAQQQAAMEEAAIBAAACSQgAAAAAAAIhBAACIQQAAAEEAAABBAABcQgAAAAAAAIhBAACIQQAAAEEAAABBAAC2QgAAAAAAAIhBAACwQQAAoEAAAAAAIAD/AAAw/zDwMf8xAP/v/wBOr58AQdCBAQuXJyAA/wAAMP8w8DH/MQD/7/8AAAEAAgAEAAEAAQABAAEAAgABAAMAAgABAAIAAgABAAEAAQABAAEABQACAAEAAgADAAMAAwACAAIABAABAAEAAQACAAEABQACAAMAAQACAAEAAgABAAEAAgABAAEAAgACAAEABAABAAEAAQABAAUACgABAAIAEwACAAEAAgABAAIAAQACAAEAAgABAAUAAQAGAAMAAgABAAIAAgABAAEAAQAEAAgABQABAAEABAABAAEAAwABAAIAAQAFAAEAAgABAAEAAQAKAAEAAQAFAAIABAAGAAEABAACAAIAAgAMAAIAAQABAAYAAQABAAEABAABAAEABAAGAAUAAQAEAAIAAgAEAAoABwABAAEABAACAAQAAgABAAQAAwAGAAoADAAFAAcAAgAOAAIACQABAAEABgAHAAoABAAHAA0AAQAFAAQACAAEAAEAAQACABwABQAGAAEAAQAFAAIABQAUAAIAAgAJAAgACwACAAkAEQABAAgABgAIABsABAAGAAkAFAALABsABgBEAAIAAgABAAEAAQACAAEAAgACAAcABgALAAMAAwABAAEAAwABAAIAAQABAAEAAQABAAMAAQABAAgAAwAEAAEABQAHAAIAAQAEAAQACAAEAAIAAQACAAEAAQAEAAUABgADAAYAAgAMAAMAAQADAAkAAgAEAAMABAABAAUAAwADAAEAAwAHAAEABQABAAEAAQABAAIAAwAEAAUAAgADAAIABgABAAEAAgABAAcAAQAHAAMABAAFAA8AAgACAAEABQADABYAEwACAAEAAQABAAEAAgAFAAEAAQABAAYAAQABAAwACAACAAkAEgAWAAQAAQABAAUAAQAQAAEAAgAHAAoADwABAAEABgACAAQAAQACAAQAAQAGAAEAAQADAAIABAABAAYABAAFAAEAAgABAAEAAgABAAoAAwABAAMAAgABAAkAAwACAAUABwACABMABAADAAYAAQABAAEAAQABAAQAAwACAAEAAQABAAIABQADAAEAAQABAAIAAgABAAEAAgABAAEAAgABAAMAAQABAAEAAwAHAAEABAABAAEAAgABAAEAAgABAAIABAAEAAMACAABAAEAAQACAAEAAwAFAAEAAwABAAMABAAGAAIAAgAOAAQABgAGAAsACQABAA8AAwABABwABQACAAUABQADAAEAAwAEAAUABAAGAA4AAwACAAMABQAVAAIABwAUAAoAAQACABMAAgAEABwAHAACAAMAAgABAA4ABAABABoAHAAqAAwAKAADADQATwAFAA4AEQADAAIAAgALAAMABAAGAAMAAQAIAAIAFwAEAAUACAAKAAQAAgAHAAMABQABAAEABgADAAEAAgACAAIABQAcAAEAAQAHAAcAFAAFAAMAHQADABEAGgABAAgABAAbAAMABgALABcABQADAAQABgANABgAEAAGAAUACgAZACMABwADAAIAAwADAA4AAwAGAAIABgABAAQAAgADAAgAAgABAAEAAwADAAMABAABAAEADQACAAIABAAFAAIAAQAOAA4AAQACAAIAAQAEAAUAAgADAAEADgADAAwAAwARAAIAEAAFAAEAAgABAAgACQADABMABAACAAIABAARABkAFQAUABwASwABAAoAHQBnAAQAAQACAAEAAQAEAAIABAABAAIAAwAYAAIAAgACAAEAAQACAAEAAwAIAAEAAQABAAIAAQABAAMAAQABAAEABgABAAUAAwABAAEAAQADAAQAAQABAAUAAgABAAUABgANAAkAEAABAAEAAQABAAMAAgADAAIABAAFAAIABQACAAIAAwAHAA0ABwACAAIAAQABAAEAAQACAAMAAwACAAEABgAEAAkAAgABAA4AAgAOAAIAAQASAAMABAAOAAQACwApAA8AFwAPABcAsAABAAMABAABAAEAAQABAAUAAwABAAIAAwAHAAMAAQABAAIAAQACAAQABAAGAAIABAABAAkABwABAAoABQAIABAAHQABAAEAAgACAAMAAQADAAUAAgAEAAUABAABAAEAAgACAAMAAwAHAAEABgAKAAEAEQABACwABAAGAAIAAQABAAYABQAEAAIACgABAAYACQACAAgAAQAYAAEAAgANAAcACAAIAAIAAQAEAAEAAwABAAMAAwAFAAIABQAKAAkABAAJAAwAAgABAAYAAQAKAAEAAQAHAAcABAAKAAgAAwABAA0ABAADAAEABgABAAMABQACAAEAAgARABAABQACABAABgABAAQAAgABAAMAAwAGAAgABQALAAsAAQADAAMAAgAEAAYACgAJAAUABwAEAAcABAAHAAEAAQAEAAIAAQADAAYACAAHAAEABgALAAUABQADABgACQAEAAIABwANAAUAAQAIAFIAEAA9AAEAAQABAAQAAgACABAACgADAAgAAQABAAYABAACAAEAAwABAAEAAQAEAAMACAAEAAIAAgABAAEAAQABAAEABgADAAUAAQABAAQABgAJAAIAAQABAAEAAgABAAcAAgABAAYAAQAFAAQABAADAAEACAABAAMAAwABAAMAAgACAAIAAgADAAEABgABAAIAAQACAAEAAwAHAAEACAACAAEAAgABAAUAAgAFAAMABQAKAAEAAgABAAEAAwACAAUACwADAAkAAwAFAAEAAQAFAAkAAQACAAEABQAHAAkACQAIAAEAAwADAAMABgAIAAIAAwACAAEAAQAgAAYAAQACAA8ACQADAAcADQABAAMACgANAAIADgABAA0ACgACAAEAAwAKAAQADwACAA8ADwAKAAEAAwAJAAYACQAgABkAGgAvAAcAAwACAAMAAQAGAAMABAADAAIACAAFAAQAAQAJAAQAAgACABMACgAGAAIAAwAIAAEAAgACAAQAAgABAAkABAAEAAQABgAEAAgACQACAAMAAQABAAEAAQADAAUABQABAAMACAAEAAYAAgABAAQADAABAAUAAwAHAA0AAgAFAAgAAQAGAAEAAgAFAA4ABgABAAUAAgAEAAgADwAFAAEAFwAGAD4AAgAKAAEAAQAIAAEAAgACAAoABAACAAIACQACAAEAAQADAAIAAwABAAUAAwADAAIAAQADAAgAAQABAAEACwADAAEAAQAEAAMABwABAA4AAQACAAMADAAFAAIABQABAAYABwAFAAcADgALAAEAAwABAAgACQAMAAIAAQALAAgABAAEAAIABgAKAAkADQABAAEAAwABAAUAAQADAAIABAAEAAEAEgACAAMADgALAAQAHQAEAAIABwABAAMADQAJAAIAAgAFAAMABQAUAAcAEAAIAAUASAAiAAYABAAWAAwADAAcAC0AJAAJAAcAJwAJAL8AAQABAAEABAALAAgABAAJAAIAAwAWAAEAAQABAAEABAARAAEABwAHAAEACwAfAAoAAgAEAAgAAgADAAIAAQAEAAIAEAAEACAAAgADABMADQAEAAkAAQAFAAIADgAIAAEAAQADAAYAEwAGAAUAAQAQAAYAAgAKAAgABQABAAIAAwABAAUABQABAAsABgAGAAEAAwADAAIABgADAAgAAQABAAQACgAHAAUABwAHAAUACAAJAAIAAQADAAQAAQABAAMAAQADAAMAAgAGABAAAQAEAAYAAwABAAoABgABAAMADwACAAkAAgAKABkADQAJABAABgACAAIACgALAAQAAwAJAAEAAgAGAAYABQAEAB4AKAABAAoABwAMAA4AIQAGAAMABgAHAAMAAQADAAEACwAOAAQACQAFAAwACwAxABIAMwAfAIwAHwACAAIAAQAFAAEACAABAAoAAQAEAAQAAwAYAAEACgABAAMABgAGABAAAwAEAAUAAgABAAQAAgA5AAoABgAWAAIAFgADAAcAFgAGAAoACwAkABIAEAAhACQAAgAFAAUAAQABAAEABAAKAAEABAANAAIABwAFAAIACQADAAQAAQAHACsAAwAHAAMACQAOAAcACQABAAsAAQABAAMABwAEABIADQABAA4AAQADAAYACgBJAAIAAgAeAAYAAQALABIAEwANABYAAwAuACoAJQBZAAcAAwAQACIAAgACAAMACQABAAcAAQABAAEAAgACAAQACgAHAAMACgADAAkABQAcAAkAAgAGAA0ABwADAAEAAwAKAAIABwACAAsAAwAGABUANgBVAAIAAQAEAAIAAgABACcAAwAVAAIAAgAFAAEAAQABAAQAAQABAAMABAAPAAEAAwACAAQABAACAAMACAACABQAAQAIAAcADQAEAAEAGgAGAAIACQAiAAQAFQA0AAoABAAEAAEABQAMAAIACwABAAcAAgAeAAwALAACAB4AAQABAAMABgAQAAkAEQAnAFIAAgACABgABwABAAcAAwAQAAkADgAsAAIAAQACAAEAAgADAAUAAgAEAAEABgAHAAUAAwACAAYAAQALAAUACwACAAEAEgATAAgAAQADABgAHQACAAEAAwAFAAIAAgABAA0ABgAFAAEALgALAAMABQABAAEABQAIAAIACgAGAAwABgADAAcACwACAAQAEAANAAIABQABAAEAAgACAAUAAgAcAAUAAgAXAAoACAAEAAQAFgAnAF8AJgAIAA4ACQAFAAEADQAFAAQAAwANAAwACwABAAkAAQAbACUAAgAFAAQABAA/ANMAXwACAAIAAgABAAMABQACAAEAAQACAAIAAQABAAEAAwACAAQAAQACAAEAAQAFAAIAAgABAAEAAgADAAEAAwABAAEAAQADAAEABAACAAEAAwAGAAEAAQADAAcADwAFAAMAAgAFAAMACQALAAQAAgAWAAEABgADAAgABwABAAQAHAAEABAAAwADABkABAAEABsAGwABAAQAAQACAAIABwABAAMABQACABwACAACAA4AAQAIAAYAEAAZAAMAAwADAA4AAwADAAEAAQACAAEABAAGAAMACAAEAAEAAQABAAIAAwAGAAoABgACAAMAEgADAAIABQAFAAQAAwABAAUAAgAFAAQAFwAHAAYADAAGAAQAEQALAAkABQABAAEACgAFAAwAAQABAAsAGgAhAAcAAwAGAAEAEQAHAAEABQAMAAEACwACAAQAAQAIAA4AEQAXAAEAAgABAAcACAAQAAsACQAGAAUAAgAGAAQAEAACAAgADgABAAsACAAJAAEAAQABAAkAGQAEAAsAEwAHAAIADwACAAwACAA0AAcABQATAAIAEAAEACQACAABABAACAAYABoABAAGAAIACQAFAAQAJAADABwADAAZAA8AJQAbABEADAA7ACYABQAgAH8AAQACAAkAEQAOAAQAAQACAAEAAQAIAAsAMgAEAA4AAgATABAABAARAAUABAAFABoADAAtAAIAFwAtAGgAHgAMAAgAAwAKAAIAAgADAAMAAQAEABQABwACAAkABgAPAAIAFAABAAMAEAAEAAsADwAGAIYAAgAFADsAAQACAAIAAgABAAkAEQADABoAiQAKANMAOwABAAIABAABAAQAAQABAAEAAgAGAAIAAwABAAEAAgADAAIAAwABAAMABAAEAAIAAwADAAEABAADAAEABwACAAIAAwABAAIAAQADAAMAAwACAAIAAwACAAEAAwAOAAYAAQADAAIACQAGAA8AGwAJACIAkQABAAEAAgABAAEAAQABAAIAAQABAAEAAQACAAIAAgADAAEAAgABAAEAAQACAAMABQAIAAMABQACAAQAAQADAAIAAgACAAwABAABAAEAAQAKAAQABQABABQABAAQAAEADwAJAAUADAACAAkAAgAFAAQAAgAaABMABwABABoABAAeAAwADwAqAAEABgAIAKwAAQABAAQAAgABAAEACwACAAIABAACAAEAAgABAAoACAABAAIAAQAEAAUAAQACAAUAAQAIAAQAAQADAAQAAgABAAYAAgABAAMABAABAAIAAQABAAEAAQAMAAUABwACAAQAAwABAAEAAQADAAMABgABAAIAAgADAAMAAwACAAEAAgAMAA4ACwAGAAYABAAMAAIACAABAAcACgABACMABwAEAA0ADwAEAAMAFwAVABwANAAFABoABQAGAAEABwAKAAIABwA1AAMAAgABAAEAAQACAKMAFAIBAAoACwABAAMAAwAEAAgAAgAIAAYAAgACABcAFgAEAAIAAgAEAAIAAQADAAEAAwADAAUACQAIAAIAAQACAAgAAQAKAAIADAAVABQADwBpAAIAAwABAAEAAwACAAMAAQABAAIABQABAAQADwALABMAAQABAAEAAQAFAAQABQABAAEAAgAFAAMABQAMAAEAAgAFAAEACwABAAEADwAJAAEABAAFAAMAGgAIAAIAAQADAAEAAQAPABMAAgAMAAEAAgAFAAIABwACABMAAgAUAAYAGgAHAAUAAgACAAcAIgAVAA0ARgACAIAAAQABAAIAAQABAAIAAQABAAMAAgACAAIADwABAAQAAQADAAQAKgAKAAYAAQAxAFUACAABAAIAAQABAAQABAACAAMABgABAAUABwAEAAMA0wAEAAEAAgABAAIABQABAAIABAACAAIABgAFAAYACgADAAQAMABkAAYAAgAQACgBBQAbAIMBAgACAAMABwAQAAgABQAmAA8AJwAVAAkACgADAAcAOwANABsAFQAvAAUAFQAGAEHyqAELsR4BAAIABAABAAEAAQABAAIAAQAGAAIAAgABAAgABQAHAAsAAQACAAoACgAIAAIABAAUAAIACwAIAAIAAQACAAEABgACAAEABwAFAAMABwABAAEADQAHAAkAAQAEAAYAAQACAAEACgABAAEACQACAAIABAAFAAYADgABAAEACQADABIABQAEAAIAAgAKAAcAAQABAAEAAwACAAQAAwAXAAIACgAMAAIADgACAAQADQABAAYACgADAAEABwANAAYABAANAAUAAgADABEAAgACAAUABwAGAAQAAQAHAA4AEAAGAA0ACQAPAAEAAQAHABAABAAHAAEAEwAJAAIABwAPAAIABgAFAA0AGQAEAA4ADQALABkAAQABAAEAAgABAAIAAgADAAoACwADAAMAAQABAAQABAACAAEABAAJAAEABAADAAUABQACAAcADAALAA8ABwAQAAQABQAQAAIAAQABAAYAAwADAAEAAQACAAcABgAGAAcAAQAEAAcABgABAAEAAgABAAwAAwADAAkABQAIAAEACwABAAIAAwASABQABAABAAMABgABAAcAAwAFAAUABwACAAIADAADAAEABAACAAMAAgADAAsACAAHAAQAEQABAAkAGQABAAEABAACAAIABAABAAIABwABAAEAAQADAAEAAgAGABAAAQACAAEAAQADAAwAFAACAAUAFAAIAAcABgACAAEAAQABAAEABgACAAEAAgAKAAEAAQAGAAEAAwABAAIAAQAEAAEADAAEAAEAAwABAAEAAQABAAEACgAEAAcABQANAAEADwABAAEAHgALAAkAAQAPACYADgABACAAEQAUAAEACQAfAAIAFQAJAAQAMQAWAAIAAQANAAEACwAtACMAKwA3AAwAEwBTAAEAAwACAAMADQACAAEABwADABIAAwANAAgAAQAIABIABQADAAcAGQAYAAkAGAAoAAMAEQAYAAIAAQAGAAIAAwAQAA8ABgAHAAMADAABAAkABwADAAMAAwAPABUABQAQAAQABQAMAAsACwADAAYAAwACAB8AAwACAAEAAQAXAAYABgABAAQAAgAGAAUAAgABAAEAAwADABYAAgAGAAIAAwARAAMAAgAEAAUAAQAJAAUAAQABAAYADwAMAAMAEQACAA4AAgAIAAEAFwAQAAQAAgAXAAgADwAXABQADAAZABMALwALABUAQQAuAAQAAwABAAUABgABAAIABQAaAAIAAQABAAMACwABAAEAAQACAAEAAgADAAEAAQAKAAIAAwABAAEAAQADAAYAAwACAAIABgAGAAkAAgACAAIABgACAAUACgACAAQAAQACAAEAAgACAAMAAQABAAMAAQACAAkAFwAJAAIAAQABAAEAAQAFAAMAAgABAAoACQAGAAEACgACAB8AGQADAAcABQAoAAEADwAGABEABwAbALQAAQADAAIAAgABAAEAAQAGAAMACgAHAAEAAwAGABEACAAGAAIAAgABAAMABQAFAAgAEAAOAA8AAQABAAQAAQACAAEAAQABAAMAAgAHAAUABgACAAUACgABAAQAAgAJAAEAAQALAAYAAQAsAAEAAwAHAAkABQABAAMAAQABAAoABwABAAoABAACAAcAFQAPAAcAAgAFAAEACAADAAQAAQADAAEABgABAAQAAgABAAQACgAIAAEABAAFAAEABQAKAAIABwABAAoAAQABAAMABAALAAoAHQAEAAcAAwAFAAIAAwAhAAUAAgATAAMAAQAEAAIABgAfAAsAAQADAAMAAwABAAgACgAJAAwACwAMAAgAAwAOAAgABgALAAEABAApAAMAAQACAAcADQABAAUABgACAAYADAAMABYABQAJAAQACAAJAAkAIgAGABgAAQABABQACQAJAAMABAABAAcAAgACAAIABgACABwABQADAAYAAQAEAAYABwAEAAIAAQAEAAIADQAGAAQABAADAAEACAAIAAMAAgABAAUAAQACAAIAAwABAAsACwAHAAMABgAKAAgABgAQABAAFgAHAAwABgAVAAUABAAGAAYAAwAGAAEAAwACAAEAAgAIAB0AAQAKAAEABgANAAYABgATAB8AAQANAAQABAAWABEAGgAhAAoABAAPAAwAGQAGAEMACgACAAMAAQAGAAoAAgAGAAIACQABAAkABAAEAAEAAgAQAAIABQAJAAIAAwAIAAEACAADAAkABAAIAAYABAAIAAsAAwACAAEAAQADABoAAQAHAAUAAQALAAEABQADAAUAAgANAAYAJwAFAAEABQACAAsABgAKAAUAAQAPAAUAAwAGABMAFQAWAAIABAABAAYAAQAIAAEABAAIAAIABAACAAIACQACAAEAAQABAAQAAwAGAAMADAAHAAEADgACAAQACgACAA0AAQARAAcAAwACAAEAAwACAA0ABwAOAAwAAwABAB0AAgAIAAkADwAOAAkADgABAAMAAQAGAAUACQALAAMAJgArABQABwAHAAgABQAPAAwAEwAPAFEACAAHAAEABQBJAA0AJQAcAAgACAABAA8AEgAUAKUAHAABAAYACwAIAAQADgAHAA8AAQADAAMABgAEAAEABwAOAAEAAQALAB4AAQAFAAEABAAOAAEABAACAAcANAACAAYAHQADAAEACQABABUAAwAFAAEAGgADAAsADgALAAEAEQAFAAEAAgABAAMAAgAIAAEAAgAJAAwAAQABAAIAAwAIAAMAGAAMAAcABwAFABEAAwADAAMAAQAXAAoABAAEAAYAAwABABAAEQAWAAMACgAVABAAEAAGAAQACgACAAEAAQACAAgACAAGAAUAAwADAAMAJwAZAA8AAQABABAABgAHABkADwAGAAYADAABABYADQABAAQACQAFAAwAAgAJAAEADAAcAAgAAwAFAAoAFgA8AAEAAgAoAAQAPQA/AAQAAQANAAwAAQAEAB8ADAABAA4AWQAFABAABgAdAA4AAgAFADEAEgASAAUAHQAhAC8AAQARAAEAEwAMAAIACQAHACcADAADAAcADAAnAAMAAQAuAAQADAADAAgACQAFAB8ADwASAAMAAgACAEIAEwANABEABQADAC4AfAANADkAIgACAAUABAAFAAgAAQABAAEABAADAAEAEQAFAAMABQADAAEACAAFAAYAAwAbAAMAGgAHAAwABwACABEAAwAHABIATgAQAAQAJAABAAIAAQAGAAIAAQAnABEABwAEAA0ABAAEAAQAAQAKAAQAAgAEAAYAAwAKAAEAEwABABoAAgAEACEAAgBJAC8ABwADAAgAAgAEAA8AEgABAB0AAgApAA4AAQAVABAAKQAHACcAGQANACwAAgACAAoAAQANAAcAAQAHAAMABQAUAAQACAACADEAAQAKAAYAAQAGAAcACgAHAAsAEAADAAwAFAAEAAoAAwABAAIACwACABwACQACAAQABwACAA8AAQAbAAEAHAARAAQABQAKAAcAAwAYAAoACwAGABoAAwACAAcAAgACADEAEAAKABAADwAEAAUAGwA9AB4ADgAmABYAAgAHAAUAAQADAAwAFwAYABEAEQADAAMAAgAEAAEABgACAAcABQABAAEABQABAAEACQAEAAEAAwAGAAEACAACAAgABAAOAAMABQALAAQAAQADACAAAQATAAQAAQANAAsABQACAAEACAAGAAgAAQAGAAUADQADABcACwAFAAMAEAADAAkACgABABgAAwDGADQABAACAAIABQAOAAUABAAWAAUAFAAEAAsABgApAAEABQACAAIACwAFAAIAHAAjAAgAFgADABIAAwAKAAcABQADAAQAAQAFAAMACAAJAAMABgACABAAFgAEAAUABQADAAMAEgAXAAIABgAXAAUAGwAIAAEAIQACAAwAKwAQAAUAAgADAAYAAQAUAAQAAgAJAAcAAQALAAIACgADAA4AHwAJAAMAGQASABQAAgAFAAUAGgAOAAEACwARAAwAKAATAAkABgAfAFMAAgAHAAkAEwBOAAwADgAVAEwADABxAE8AIgAEAAEAAQA9ABIAVQAKAAIAAgANAB8ACwAyAAYAIQCfALMABgAGAAcABAAEAAIABAACAAUACAAHABQAIAAWAAEAAwAKAAYABwAcAAUACgAJAAIATQATAA0AAgAFAAEABAAEAAcABAANAAMACQAfABEAAwAaAAIABgAGAAUABAABAAcACwADAAQAAgABAAYAAgAUAAQAAQAJAAIABgADAAcAAQABAAEAFAACAAMAAQAGAAIAAwAGAAIABAAIAAEABQANAAgABAALABcAAQAKAAYAAgABAAMAFQACAAIABAAYAB8ABAAKAAoAAgAFAMAADwAEABAABwAJADMAAQACAAEAAQAFAAEAAQACAAEAAwAFAAMAAQADAAQAAQADAAEAAwADAAkACAABAAIAAgACAAQABAASAAwAXAACAAoABAADAA4ABQAZABAAKgAEAA4ABAACABUABQB+AB4AHwACAAEABQANAAMAFgAFAAYABgAUAAwAAQAOAAwAVwADABMAAQAIAAIACQAJAAMAAwAXAAIAAwAHAAYAAwABAAIAAwAJAAEAAwABAAYAAwACAAEAAwALAAMAAQAGAAoAAwACAAMAAQACAAEABQABAAEACwADAAYABAABAAcAAgABAAIABQAFACIABAAOABIABAATAAcABQAIAAIABgBPAAEABQACAA4ACAACAAkAAgABACQAHAAQAAQAAQABAAEAAgAMAAYAKgAnABAAFwAHAA8ADwADAAIADAAHABUAQAAGAAkAHAAIAAwAAwADACkAOwAYADMANwA5ACYBCQAJAAIABgACAA8AAQACAA0AJgBaAAkACQAJAAMACwAHAAEAAQABAAUABgADAAIAAQACAAIAAwAIAAEABAAEAAEABQAHAAEABAADABQABAAJAAEAAQABAAUABQARAAEABQACAAYAAgAEAAEABAAFAAcAAwASAAsACwAgAAcABQAEAAcACwB/AAgABAADAAMAAQAKAAEAAQAGABUADgABABAAAQAHAAEAAwAGAAkAQQAzAAQAAwANAAMACgABAAEADAAJABUAbgADABMAGAABAAEACgA+AAQAAQAdACoATgAcABQAEgBSAAYAAwAPAAYAVAA6AP0ADwCbAAgBDwAVAAkADgAHADoAKAAnAEGwxwELECAA/wAABC8F4C3/LUCmn6YAQdLHAQsmgD/NzMw9CtcjPG8SgzoXt9E4rMUnN703hjWVv9Yzd8wrMl9wiTAAQYDIAQtGBAAAAOeOAADnjgAABAAAAPGOAADxjgAACAAAAPSOAAD0jgAACAAAAPmOAAD5jgAABAAAAOqOAADqjgAACAAAAOqOAADtjgBB0MgBC5IC/5AAAAORAAAHkQAAC5EAAMGQAADBkAAAwZAAAMGQAADHkAAAz5AAANeQAADfkAAA55AAAO+QAAD3kAAA35AAAJOQAACTkAAAk5AAAJOQAACXkAAAnZAAAKOQAACpkAAAr5AAALWQAAC7kAAAqZAAAP8AAP///wD/AP8A/wD///8AAP///wD///8AAP8AAAAA6HoAANB0AADQdAAA0HQAANB0AAA4ewAAWHsAANB0AAAIewAA0HQAANB0AAAIewAAOHsAADh7AABYewAAWHsAAOh6AABYewAAWHsAAFh7AADQdAAA0HQAANB0AAAAAAAACHsAAEB7AAAIdQAAOHsAAOh6AAA4ewAAWHsAANB0AADQdABB8MoBCxLQdAAA2HQAAAh7AABYewAA0HQAQZDLAQsi6HoAANB0AADQdAAACHsAAAh7AADYdAAA0HQAAFB7AAA4ewBBwMsBCyIIewAA0HQAADh7AAAIewAACHsAANh0AADQdAAA0HQAAAh7AEHwywELEgh7AADYdAAA0HQAAAh7AAAIewBBkMwBCzboegAA2HQAAFh7AADQdAAACHsAANh0AAA4ewAAOHsAAAh7AADYdAAA0HQAANB0AAA4ewAAOHsAQdDMAQsSCHsAANh0AAAIewAAOHsAANB0AEHwzAELMgh7AAA4ewAAOHsAANh0AAAIewAA2HQAADh7AADYdAAACHsAANh0AADQdAAAOHsAANB0AEGwzQELIgh7AADYdAAA0HQAADh7AADQdAAA0HQAANB0AADQdAAA0HQAQeDNAQs2CHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AAA4ewAAOHsAANB0AEGgzgELEgh7AADYdAAA0HQAANB0AADQdABBwM4BC3YIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAAAAAAAAh7AADYdAAAOHsAANB0AADQdAAA0HQAANB0AAA4ewAACHsAANh0AADQdAAAYHsAAGB7AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AAA4ewAAOHsAADh7AEHAzwELEgh7AADYdAAA0HQAANB0AAA4ewBB4M8BC4IBCHsAANh0AADQdAAA0HQAANB0AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AABQewAA0HQAADh7AADQdAAA0HQAAAh7AADYdAAA0HQAAFB7AAA4ewAA0HQAANB0AAAAAAAACHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AADQdABB8NABCyIIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AEGg0QELRgh7AADYdAAA0HQAANB0AAA4ewAAOHsAANB0AAAAAAAACHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQfDRAQt2CHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AADQdAAA0HQAADh7AAA4ewAAAAAAAOh6AABYewAA0HQAANB0AADoegAA2HQAANB0AADQdAAAOHsAADh7AADQdAAA0HQAANB0AADQdABB8NIBC5IBCHsAANh0AADQdAAAQHsAAAh7AADQdAAA0HQAANB0AADQdAAAOHsAANB0AADQdAAA6HoAANB0AADQdAAA0HQAANB0AADQdAAA0HQAAAAAAADoegAAOHsAANB0AAAIewAA6HoAANh0AAAIewAAOHsAAOh6AADYdAAA0HQAADh7AADoegAA0HQAANB0AADQdAAA0HQAQZDUAQsi6HoAANB0AAA4ewAA0HQAAAh7AADQdAAA0HQAAAh7AAA4ewBBwNQBC4YBCHsAANh0AADQdAAAOHsAAAh7AADYdAAAUHsAAFB7AABQewAAUHsAAFB7AAAAAAAACHsAAFh2AAA4ewAA0HQAAAh7AACYdgAAOHsAAFh7AAAIewAAmHYAADh7AAAIewAACHsAAJh2AAA4ewAAOHsAANB0AADIdgAA0HQAAFh7AADQdAAA0HQAQdDVAQsy6HoAACB2AADQdAAAWHsAANB0AABAewAAMHsAAAAAAAA4ewAAIHYAAFh7AADYdAAAWHsAQZDWAQti0HQAACB2AABYewAAWHsAAFh7AADYdAAA0HQAANB0AADoegAAQHUAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAQYDXAQs26HoAADB1AAA4ewAAOHsAAOh6AABAdQAA0HQAANB0AADoegAAQHUAANB0AADQdAAAWHsAADh7AEHA1wELFuh6AABAdQAA0HQAANB0AADQdAAAOHsAQeDXAQsW6HoAAEB1AADQdAAAWHsAADh7AAA4ewBBgNgBCzLoegAAQHUAANB0AABYewAAWHsAAFh7AAA4ewAAAAAAAOh6AABAdQAAQHsAAAh7AABYewBBwNgBCyLoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHw2AELEuh6AABAdQAA0HQAADh7AABAewBBkNkBC0boegAAQHUAANB0AAA4ewAAQHsAAAh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHg2QELcuh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAA6HoAAEB1AADQdAAAWHsAANB0AABAewAA2HQAAFh7AADQdABB4NoBCxLoegAAQHUAANB0AABAewAA2HQAQYDbAQsW6HoAAEB1AADQdAAAWHsAAEB7AAA4ewBBoNsBCzboegAAQHUAANB0AABYewAAQHsAADh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAAQHsAQeDbAQvWAeh6AABAdQAA0HQAANB0AADQdAAAQHsAAFh7AAAAAAAA6HoAAEB1AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAQHsAAEB7AABAewAA6HoAAEB1AADQdAAA0HQAAEB7AABYewAAOHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAAFh7AAA4ewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAWHsAQcDdAQsS6HoAAEB1AADQdAAA0HQAAAh7AEHg3QELRuh6AADgdwAAOHsAAFh7AADoegAA+HUAADh7AADYdAAA6HoAAOh1AAA4ewAAOHsAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQbDeAQvhA9B0AADQdAAA0HQAANB0AAACAADAAwAAwAQAAMAFAADABgAAwAcAAMAIAADACQAAwAoAAMALAADADAAAwA0AAMAOAADADwAAwBAAAMARAADAEgAAwBMAAMAUAADAFQAAwBYAAMAXAADAGAAAwBkAAMAaAADAGwAAwBwAAMAdAADAHgAAwB8AAMAAAACzAQAAwwIAAMMDAADDBAAAwwUAAMMGAADDBwAAwwgAAMMJAADDCgAAwwsAAMMMAADDDQAA0w4AAMMPAADDAAAMuwEADMMCAAzDAwAMwwQADNMAAAAA/////////////////////////////////////////////////////////////////wABAgMEBQYHCAn/////////CgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiP///////8KCwwNDg8QERITFBUWFxgZGhscHR4fICEiI/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AQaDiAQsYEQAKABEREQAAAAAFAAAAAAAACQAAAAALAEHA4gELIREADwoREREDCgcAARMJCwsAAAkGCwAACwAGEQAAABEREQBB8eIBCwELAEH64gELGBEACgoREREACgAAAgAJCwAAAAkACwAACwBBq+MBCwEMAEG34wELFQwAAAAADAAAAAAJDAAAAAAADAAADABB5eMBCwEOAEHx4wELFQ0AAAAEDQAAAAAJDgAAAAAADgAADgBBn+QBCwEQAEGr5AELHg8AAAAADwAAAAAJEAAAAAAAEAAAEAAAEgAAABISEgBB4uQBCw4SAAAAEhISAAAAAAAACQBBk+UBCwELAEGf5QELFQoAAAAACgAAAAAJCwAAAAAACwAACwBBzeUBCwEMAEHZ5QEL3gIMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYKAAAAZAAAAOgDAAAQJwAAoIYBAEBCDwCAlpgAAOH1BQMAAAAEAAAABAAAAAYAAACD+aIARE5uAPwpFQDRVycA3TT1AGLbwAA8mZUAQZBDAGNR/gC73qsAt2HFADpuJADSTUIASQbgAAnqLgAcktEA6x3+ACmxHADoPqcA9TWCAES7LgCc6YQAtCZwAEF+XwDWkTkAU4M5AJz0OQCLX4QAKPm9APgfOwDe/5cAD5gFABEv7wAKWosAbR9tAM9+NgAJyycARk+3AJ5mPwAt6l8Auid1AOXrxwA9e/EA9zkHAJJSigD7a+oAH7FfAAhdjQAwA1YAe/xGAPCrawAgvM8ANvSaAOOpHQBeYZEACBvmAIWZZQCgFF8AjUBoAIDY/wAnc00ABgYxAMpWFQDJqHMAe+JgAGuMwABBw+gBC21A+yH5PwAAAAAtRHQ+AAAAgJhG+DwAAABgUcx4OwAAAICDG/A5AAAAQCAlejgAAACAIoLjNgAAAAAd82k1OGPtPtoPST9emHs/2g/JP2k3rDFoISIztA8UM2ghojMAAAAAAADwPwAAAAAAAPg/AEG46QELCAbQ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aXZlAFBsb3RMaW5lc0hvdmVyZWQAUGxvdEhpc3RvZ3JhbUhvdmVyZWQAVGV4dFNlbGVjdGVkQmcARHJhZ0Ryb3BUYXJnZXQATmF2SGlnaGxpZ2h0AE5hdldpbmRvd2luZ0hpZ2hsaWdodABOYXZXaW5kb3dpbmdEaW1CZwBNb2RhbFdpbmRvd0RpbUJnAFVua25vd24AIyNUb29sdGlwXyUwMmQAIyNNZW51XyUwMmQAIyNQb3B1cF8lMDh4AHdpbmRvd19jb250ZXh0AHZvaWRfY29udGV4dABjb2x1bW5zACNTb3VyY2VFeHRlcm4ACiUqcyUuKnMAICUuKnMAYWIACgBMb2cgVG8gVFRZAExvZyBUbyBGaWxlAExvZyBUbyBDbGlwYm9hcmQARGVwdGgAcmIAd3QASW1HdWkgTWV0cmljcwABRGVhciBJbUd1aSAlcwBBcHBsaWNhdGlvbiBhdmVyYWdlICUuM2YgbXMvZnJhbWUgKCUuMWYgRlBTKQAlZCB2ZXJ0aWNlcywgJWQgaW5kaWNlcyAoJWQgdHJpYW5nbGVzKQAlZCBhY3RpdmUgd2luZG93cyAoJWQgdmlzaWJsZSkAJWQgYWxsb2NhdGlvbnMAU2hvdyBjbGlwcGluZyByZWN0YW5nbGVzIHdoZW4gaG92ZXJpbmcgZHJhdyBjb21tYW5kcwBDdHJsIHNob3dzIHdpbmRvdyBiZWdpbiBvcmRlcgBXaW5kb3dzAERyYXdMaXN0AEFjdGl2ZSBEcmF3TGlzdHMgKCVkKQBQb3B1cHMAUG9wdXBzICglZCkAUG9wdXBJRDogJTA4eCwgV2luZG93OiAnJXMnJXMlcwBOVUxMACBDaGlsZFdpbmRvdwAgQ2hpbGRNZW51AFRhYkJhcnMAVGFiIEJhcnMgKCVkKQBJbnRlcm5hbCBzdGF0ZQBOb25lAE1vdXNlAE5hdgBOYXZLZXlib2FyZABOYXZHYW1lcGFkAEhvdmVyZWRXaW5kb3c6ICclcycASG92ZXJlZFJvb3RXaW5kb3c6ICclcycASG92ZXJlZElkOiAweCUwOFgvMHglMDhYICglLjJmIHNlYyksIEFsbG93T3ZlcmxhcDogJWQAQWN0aXZlSWQ6IDB4JTA4WC8weCUwOFggKCUuMmYgc2VjKSwgQWxsb3dPdmVybGFwOiAlZCwgU291cmNlOiAlcwBBY3RpdmVJZFdpbmRvdzogJyVzJwBNb3ZpbmdXaW5kb3c6ICclcycATmF2V2luZG93OiAnJXMnAE5hdklkOiAweCUwOFgsIE5hdkxheWVyOiAlZABOYXZJbnB1dFNvdXJjZTogJXMATmF2QWN0aXZlOiAlZCwgTmF2VmlzaWJsZTogJWQATmF2QWN0aXZhdGVJZDogMHglMDhYLCBOYXZJbnB1dElkOiAweCUwOFgATmF2RGlzYWJsZUhpZ2hsaWdodDogJWQsIE5hdkRpc2FibGVNb3VzZUhvdmVyOiAlZABOYXZXaW5kb3dpbmdUYXJnZXQ6ICclcycARHJhZ0Ryb3A6ICVkLCBTb3VyY2VJZCA9IDB4JTA4WCwgUGF5bG9hZCAiJXMiICglZCBieXRlcykAIyNPdmVybGF5ACVzLyVzXyUwOFgAJXMvJTA4WAAjUkVTSVpFACMjI05hdldpbmRvd2luZ0xpc3QAKFBvcHVwKQAoTWFpbiBtZW51IGJhcikAKFVudGl0bGVkKQBQb3M9JWYsJWYAU2l6ZT0lZiwlZgBDb2xsYXBzZWQ9JWQAIyMjAFslc11bJXNdCgBQb3M9JWQsJWQKAFNpemU9JWQsJWQKAENvbGxhcHNlZD0lZAoAJXMgKCVkKQAlcyAnJXMnLCAlZCBAIDB4JXAAUG9zOiAoJS4xZiwlLjFmKSwgU2l6ZTogKCUuMWYsJS4xZiksIFNpemVDb250ZW50cyAoJS4xZiwlLjFmKQBGbGFnczogMHglMDhYICglcyVzJXMlcyVzJXMlcyVzJXMuLikAQ2hpbGQgAFRvb2x0aXAgAFBvcHVwIABNb2RhbCAAQ2hpbGRNZW51IABOb1NhdmVkU2V0dGluZ3MgAE5vTW91c2VJbnB1dHMATm9OYXZJbnB1dHMAQWx3YXlzQXV0b1Jlc2l6ZQBTY3JvbGw6ICglLjJmLyUuMmYsJS4yZi8lLjJmKQBBY3RpdmU6ICVkLyVkLCBXcml0ZUFjY2Vzc2VkOiAlZCwgQmVnaW5PcmRlcldpdGhpbkNvbnRleHQ6ICVkAEFwcGVhcmluZzogJWQsIEhpZGRlbjogJWQgKFJlZyAlZCBSZXNpemUgJWQpLCBTa2lwSXRlbXM6ICVkAE5hdkxhc3RJZHM6IDB4JTA4WCwweCUwOFgs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bnRDb250ZXh0AERlYnVnQ2hlY2tWZXJzaW9uQW5kRGF0YUxheW91dABHZXRJTwBHZXRTdHlsZQBHZXREcmF3RGF0YQBOZXdGcmFtZQBSZW5kZXIARW5kRnJhbWUAU2hvd0RlbW9XaW5kb3cAU2hvd0Fib3V0V2luZG93AFNob3dNZXRyaWNzV2luZG93AFNob3dTdHlsZUVkaXRvcgBTaG93U3R5bGVTZWxlY3RvcgBTaG93Rm9udFNlbGVjdG9yAFNob3dVc2VyR3VpZGUAR2V0VmVyc2lvbgBTdHlsZUNvbG9yc0RhcmsAU3R5bGVDb2xvcnNDbGFzc2ljAFN0eWxlQ29sb3JzTGlnaHQAQmVnaW4ARW5kAEJlZ2luQ2hpbGQARW5kQ2hpbGQAR2V0Q29udGVudFJlZ2lvbk1heABHZXRDb250ZW50UmVnaW9uQXZhaWwAR2V0Q29udGVudFJlZ2lvbkF2YWlsV2lkdGgAR2V0V2luZG93Q29udGVudFJlZ2lvbk1pbgBHZXRXaW5kb3dDb250ZW50UmVnaW9uTWF4AEdldFdpbmRvd0NvbnRlbnRSZWdpb25XaWR0aABHZXRXaW5kb3dEcmF3TGlzdABHZXRXaW5kb3dQb3MAR2V0V2luZG93U2l6ZQBHZXRXaW5kb3dXaWR0aABHZXRXaW5kb3dIZWlnaHQASXNXaW5kb3dDb2xsYXBzZWQASXNXaW5kb3dBcHBlYXJpbmcAU2V0V2luZG93Rm9udFNjYWxlAFNldE5leHRXaW5kb3dQb3MAU2V0TmV4dFdpbmRvd1NpemUAU2V0TmV4dFdpbmRvd1NpemVDb25zdHJhaW50cwBTZXROZXh0V2luZG93Q29udGVudFNpemUAU2V0TmV4dFdpbmRvd0NvbGxhcHNlZABTZXROZXh0V2luZG93Rm9jdXMAU2V0TmV4dFdpbmRvd0JnQWxwaGEAU2V0V2luZG93UG9zAFNldFdpbmRvd1NpemUAU2V0V2luZG93Q29sbGFwc2VkAFNldFdpbmRvd0ZvY3VzAFNldFdpbmRvd05hbWVQb3MAU2V0V2luZG93TmFtZVNpemUAU2V0V2luZG93TmFtZUNvbGxhcHNlZABTZXRXaW5kb3dOYW1lRm9jdXMAR2V0U2Nyb2xsWABHZXRTY3JvbGxZAEdldFNjcm9sbE1heFgAR2V0U2Nyb2xsTWF4WQBTZXRTY3JvbGxYAFNldFNjcm9sbFkAU2V0U2Nyb2xsSGVyZVkAU2V0U2Nyb2xsRnJvbVBvc1kAU2V0U3RhdGVTdG9yYWdlAEdldFN0YXRlU3RvcmFnZQBQdXNoRm9udABQb3BGb250AFB1c2hTdHlsZUNvbG9yAFBvcFN0eWxlQ29sb3IAUHVzaFN0eWxlVmFyAFBvcFN0eWxlVmFyAEdldFN0eWxlQ29sb3JWZWM0AEdldEZvbnQAR2V0Rm9udFNpemUAR2V0Rm9udFRleFV2V2hpdGVQaXhlbABHZXRDb2xvclUzMl9BAEdldENvbG9yVTMyX0IAR2V0Q29sb3JVMzJfQwBQdXNoSXRlbVdpZHRoAFBvcEl0ZW1XaWR0aABDYWxjSXRlbVdpZHRoAFB1c2hUZXh0V3JhcFBvcwBQb3BUZXh0V3JhcFBvcwBQdXNoQWxsb3dLZXlib2FyZEZvY3VzAFBvcEFsbG93S2V5Ym9hcmRGb2N1cwBQdXNoQnV0dG9uUmVwZWF0AFBvcEJ1dHRvblJlcGVhdABTZXBhcmF0b3IAU2FtZUxpbmUATmV3TGluZQBTcGFjaW5nAER1bW15AEluZGVudABVbmluZGVudABCZWdpbkdyb3VwAEVuZEdyb3VwAEdldEN1cnNvclBvcwBHZXRDdXJzb3JQb3NYAEdldEN1cnNvclBvc1kAU2V0Q3Vyc29yUG9zAFNldEN1cnNvclBvc1gAU2V0Q3Vyc29yUG9zWQBHZXRDdXJzb3JTdGFydFBvcwBHZXRDdXJzb3JTY3JlZW5Qb3MAU2V0Q3Vyc29yU2NyZWVuUG9zAEFsaWduVGV4dFRvRnJhbWVQYWRkaW5nAEdldFRleHRMaW5lSGVpZ2h0AEdldFRleHRMaW5lSGVpZ2h0V2l0aFNwYWNpbmcAR2V0RnJhbWVIZWlnaHQAR2V0RnJhbWVIZWlnaHRXaXRoU3BhY2luZwBDb2x1bW5zAE5leHRDb2x1bW4AR2V0Q29sdW1uSW5kZXgAR2V0Q29sdW1uV2lkdGgAU2V0Q29sdW1uV2lkdGgAR2V0Q29sdW1uT2Zmc2V0AFNldENvbHVtbk9mZnNldABHZXRDb2x1bW5zQ291bnQAUHVzaElEAFBvcElEAEdldElEAFRleHRVbmZvcm1hdHRlZABUZXh0AFRleHRWAFRleHRDb2xvcmVkAFRleHRDb2xvcmVkVgBUZXh0RGlzYWJsZWQAVGV4dERpc2FibGVkVgBUZXh0V3JhcHBlZABUZXh0V3JhcHBlZFYATGFiZWxUZXh0AExhYmVsVGV4dFYAQnVsbGV0VGV4dABCdWxsZXRUZXh0VgBCdWxsZXQAQnV0dG9uAFNtYWxsQnV0dG9uAEFycm93QnV0dG9uAEludmlzaWJsZUJ1dHRvbgBJbWFnZQBJbWFnZUJ1dHRvbgBDaGVja2JveABDaGVja2JveEZsYWdzAFJhZGlvQnV0dG9uX0EAUmFkaW9CdXR0b25fQgBQbG90TGluZXMAUGxvdEhpc3RvZ3JhbQBQcm9ncmVzc0JhcgBCZWdpbkNvbWJvAEVuZENvbWJvAENvbWJvAERyYWdGbG9hdABEcmFnRmxvYXQyAERyYWdGbG9hdDMARHJhZ0Zsb2F0NABEcmFnRmxvYXRSYW5nZTIARHJhZ0ludABEcmFnSW50MgBEcmFnSW50MwBEcmFnSW50NABEcmFnSW50UmFuZ2UyAERyYWdTY2FsYXIASW5wdXRUZXh0AElucHV0VGV4dE11bHRpbGluZQBJbnB1dEZsb2F0AElucHV0RmxvYXQyAElucHV0RmxvYXQzAElucHV0RmxvYXQ0AElucHV0SW50AElucHV0SW50MgBJbnB1dEludDMASW5wdXRJbnQ0AElucHV0RG91YmxlAElucHV0U2NhbGFyAFNsaWRlckZsb2F0AFNsaWRlckZsb2F0MgBTbGlkZXJGbG9hdDMAU2xpZGVyRmxvYXQ0AFNsaWRlckFuZ2xlAFNsaWRlckludABTbGlkZXJJbnQyAFNsaWRlckludDMAU2xpZGVySW50NABTbGlkZXJTY2FsYXIAVlNsaWRlckZsb2F0AFZTbGlkZXJJbnQAVlNsaWRlclNjYWxhcgBDb2xvckVkaXQzAENvbG9yRWRpdDQAQ29sb3JQaWNrZXIzAENvbG9yUGlja2VyNABDb2xvckJ1dHRvbgBTZXRDb2xvckVkaXRPcHRpb25zAFRyZWVOb2RlX0EAVHJlZU5vZGVfQgBUcmVlTm9kZV9DAFRyZWVOb2RlRXhfQQBUcmVlTm9kZUV4X0IAVHJlZU5vZGVFeF9DAFRyZWVQdXNoX0EAVHJlZVB1c2hfQgBUcmVlUG9wAFRyZWVBZHZhbmNlVG9MYWJlbFBvcwBHZXRUcmVlTm9kZVRvTGFiZWxTcGFjaW5nAFNldE5leHRUcmVlTm9kZU9wZW4AQ29sbGFwc2luZ0hlYWRlcl9BAENvbGxhcHNpbmdIZWFkZXJfQgBTZWxlY3RhYmxlX0EAU2VsZWN0YWJsZV9CAExpc3RCb3hfQQBMaXN0Qm94X0IATGlzdEJveEhlYWRlcl9BAExpc3RCb3hIZWFkZXJfQgBMaXN0Qm94Rm9vdGVyAFZhbHVlX0EAVmFsdWVfQgBWYWx1ZV9DAFZhbHVlX0QAU2V0VG9vbHRpcABCZWdpblRvb2x0aXAARW5kVG9vbHRpcABCZWdpbk1haW5NZW51QmFyAEVuZE1haW5NZW51QmFyAEJlZ2luTWVudUJhcgBFbmRNZW51QmFyAEJlZ2luTWVudQBFbmRNZW51AE1lbnVJdGVtX0EATWVudUl0ZW1fQgBPcGVuUG9wdXAAT3BlblBvcHVwT25JdGVtQ2xpY2sAQmVnaW5Qb3B1cABCZWdpblBvcHVwTW9kYWwAQmVnaW5Qb3B1cENvbnRleHRJdGVtAEJlZ2luUG9wdXBDb250ZXh0V2luZG93AEJlZ2luUG9wdXBDb250ZXh0Vm9pZABFbmRQb3B1cABJc1BvcHVwT3BlbgBDbG9zZUN1cnJlbnRQb3B1cABCZWdpblRhYkJhcgBFbmRUYWJCYXIAQmVnaW5UYWJJdGVtAEVuZFRhYkl0ZW0AU2V0VGFiSXRlbUNsb3NlZABMb2dUb1RUWQBMb2dUb0ZpbGUATG9nVG9DbGlwYm9hcmQATG9nRmluaXNoAExvZ0J1dHRvbnMATG9nVGV4dABCZWdpbkRyYWdEcm9wU291cmNlAFNldERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFNvdXJjZQBCZWdpbkRyYWdEcm9wVGFyZ2V0AEFjY2VwdERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFRhcmdldABHZXREcmFnRHJvcFBheWxvYWQAUHVzaENsaXBSZWN0AFBvcENsaXBSZWN0AFNldEl0ZW1EZWZhdWx0Rm9jdXMAU2V0S2V5Ym9hcmRGb2N1c0hlcmUASXNJdGVtSG92ZXJlZABJc0l0ZW1BY3RpdmUASXNJdGVtRWRpdGVkAElzSXRlbUZvY3VzZWQASXNJdGVtQ2xpY2tlZABJc0l0ZW1WaXNpYmxlAElzSXRlbURlYWN0aXZhdGVkAElzSXRlbURlYWN0aXZhdGVkQWZ0ZXJFZGl0AElzQW55SXRlbUhvdmVyZWQASXNBbnlJdGVtQWN0aXZlAElzQW55SXRlbUZvY3VzZWQAR2V0SXRlbVJlY3RNaW4AR2V0SXRlbVJlY3RNYXgAR2V0SXRlbVJlY3RTaXplAFNldEl0ZW1BbGxvd092ZXJsYXAASXNXaW5kb3dGb2N1c2VkAElzV2luZG93SG92ZXJlZABJc1JlY3RWaXNpYmxlX0EASXNSZWN0VmlzaWJsZV9CAEdldFRpbWUAR2V0RnJhbWVDb3VudABHZXRPdmVybGF5RHJhd0xpc3QAR2V0RHJhd0xpc3RTaGFyZWREYXRhAEdldFN0eWxlQ29sb3JOYW1lAENhbGNUZXh0U2l6ZQBDYWxjTGlzdENsaXBwaW5nAEJlZ2luQ2hpbGRGcmFtZQBFbmRDaGlsZEZyYW1lAENvbG9yQ29udmVydFUzMlRvRmxvYXQ0AENvbG9yQ29udmVydEZsb2F0NFRvVTMyAENvbG9yQ29udmVydFJHQnRvSFNWAENvbG9yQ29udmVydEhTVnRvUkdCAEdldEtleUluZGV4AElzS2V5RG93bgBJc0tleVByZXNzZWQASXNLZXlSZWxlYXNlZABHZXRLZXlQcmVzc2VkQW1vdW50AElzTW91c2VEb3duAElzQW55TW91c2VEb3duAElzTW91c2VDbGlja2VkAElzTW91c2VEb3VibGVDbGlja2VkAElzTW91c2VSZWxlYXNlZABJc01vdXNlRHJhZ2dpbmcASXNNb3VzZUhvdmVyaW5nUmVjdABJc01vdXNlUG9zVmFsaWQAR2V0TW91c2VQb3MAR2V0TW91c2VQb3NPbk9wZW5pbmdDdXJyZW50UG9wdXAAR2V0TW91c2VEcmFnRGVsdGEAUmVzZXRNb3VzZURyYWdEZWx0YQBHZXRNb3VzZUN1cnNvcgBTZXRNb3VzZUN1cnNvcgBDYXB0dXJlS2V5Ym9hcmRGcm9tQXBwAENhcHR1cmVNb3VzZUZyb21BcHAAR2V0Q2xpcGJvYXJkVGV4dABTZXRDbGlwYm9hcmRUZXh0AExvYWRJbmlTZXR0aW5nc0Zyb21NZW1vcnkAU2F2ZUluaVNldHRpbmdzVG9NZW1vcnkAU2V0QWxsb2NhdG9yRnVuY3Rpb25zAE1lbUFsbG9jAE1lbUZyZWUAaWlpAE4xMGVtc2NyaXB0ZW4zdmFsRQB2aWlpaQBOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TXzExY2hhcl90cmFpdHNJY0VFTlNfOWFsbG9jYXRvckljRUVFRQBOU3QzX18yMjFfX2Jhc2ljX3N0cmluZ19jb21tb25JTGIxRUVFAGlpaWZpAHgAeQAyM2ltcG9ydF9tYXliZV9udWxsX3ZhbHVlSTZJbVZlYzJFAGlpaWlpAGlpaWYAaWlpZmYAaWlpaQAxMmFjY2Vzc192YWx1ZUlmTG0xRUUAdmlmZmZpaWkAegB3ADZJbVZlYzIAdmlpZmlpADEyYWNjZXNzX3ZhbHVlSWlMbTFFRQBpaWlpZmkAUDIwSW1EcmF3TGlzdFNoYXJlZERhdGEAMjBJbURyYXdMaXN0U2hhcmVkRGF0YQBQMTBJbURyYXdMaXN0ADEwSW1EcmF3TGlzdABkaQBpaWlpaWkAJXMAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TMF8xMWNoYXJfdHJhaXRzSWNFRU5TMF85YWxsb2NhdG9ySWNFRUVFRQAyNGltcG9ydF9tYXliZV9udWxsX3N0cmluZwAyM2FjY2Vzc19tYXliZV9udWxsX3ZhbHVlSWJMbTFFRQB2aWlmaQB2aWlpAGlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJZkxtNEVFADIzYWNjZXNzX21heWJlX251bGxfdmFsdWVJZkxtNEVFADEyYWNjZXNzX3ZhbHVlSWZMbTNFRQBpaWlpaWlpaWlpAHNldABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lkRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlkRQBsZW5ndGgAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lmRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlmRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lqRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlqRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lpRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlpRQBpaWlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJaUxtNEVFADEyYWNjZXNzX3ZhbHVlSWlMbTNFRQAxMmFjY2Vzc192YWx1ZUlpTG0yRUUAJS4wZiBkZWcAMTJhY2Nlc3NfdmFsdWVJZkxtMkVFAGlpaWlpaWlpAGlpaWlkZGlpADEyYWNjZXNzX3ZhbHVlSWRMbTFFRQBQMjZJbUd1aUlucHV0VGV4dENhbGxiYWNrRGF0YQAyNkltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAGlpaWlpaWlpaWlpAHZpZmlpAHZpaWlpaWlpaWlpADEyYWNjZXNzX3ZhbHVlSWpMbTFFRQAxMmFjY2Vzc192YWx1ZUliTG0xRUUAdmlpaWlpaWkAbnVtYmVyAHZpaWYAZmlpAGlpAHZpaQBQNkltRm9udAA2SW1Gb250AFBLNkltVmVjNAA2SW1WZWM0AFRPRE86ICVzCgBhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoZW1zY3JpcHRlbjo6dmFsKSBjb25zdAB2aWZmAHZpaWlpaQBQMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAdmlmAGZpAHN0cmluZwBQMTBJbUd1aVN0eWxlADEwSW1HdWlTdHlsZQB2aQBQMTBJbURyYXdEYXRhADEwSW1EcmF3RGF0YQBQN0ltR3VpSU8AN0ltR3VpSU8AUDE2V3JhcEltR3VpQ29udGV4dAAxNldyYXBJbUd1aUNvbnRleHQAUDExSW1Gb250QXRsYXMAMTFJbUZvbnRBdGxhcwBJbUd1aVN0eWxlAEFscGhhAFdpbmRvd1BhZGRpbmcAV2luZG93Um91bmRpbmcAV2luZG93Qm9yZGVyU2l6ZQBXaW5kb3dNaW5TaXplAFdpbmRvd1RpdGxlQWxpZ24AQ2hpbGRSb3VuZGluZwBDaGlsZEJvcmRlclNpemUAUG9wdXBSb3VuZGluZwBQb3B1cEJvcmRlclNpemUARnJhbWVQYWRkaW5nAEZyYW1lUm91bmRpbmcARnJhbWVCb3JkZXJTaXplAEl0ZW1TcGFjaW5nAEl0ZW1Jbm5lclNwYWNpbmcAVG91Y2hFeHRyYVBhZGRpbmcASW5kZW50U3BhY2luZwBDb2x1bW5zTWluU3BhY2luZwBTY3JvbGxiYXJTaXplAFNjcm9sbGJhclJvdW5kaW5nAEdyYWJNaW5TaXplAEdyYWJSb3VuZGluZwBUYWJSb3VuZGluZwBUYWJCb3JkZXJTaXplAEJ1dHRvblRleHRBbGlnbgBEaXNwbGF5V2luZG93UGFkZGluZwBEaXNwbGF5U2FmZUFyZWFQYWRkaW5nAE1vdXNlQ3Vyc29yU2NhbGUAQW50aUFsaWFzZWRMaW5lcwBBbnRpQWxpYXNlZEZpbGwAQ3VydmVUZXNzZWxsYXRpb25Ub2wAX2dldEF0X0NvbG9ycwBfc2V0QXRfQ29sb3JzAFNjYWxlQWxsU2l6ZXMAUDZJbVZlYzQAUEs2SW1WZWMyAHYAUEsxMEltR3VpU3R5bGUASW1HdWlJTwBDb25maWdGbGFncwBCYWNrZW5kRmxhZ3MARGlzcGxheVNpemUARGVsdGFUaW1lAEluaVNhdmluZ1JhdGUASW5pRmlsZW5hbWUATG9nRmlsZW5hbWUATW91c2VEb3VibGVDbGlja1RpbWUATW91c2VEb3VibGVDbGlja01heERpc3QATW91c2VEcmFnVGhyZXNob2xkAF9nZXRBdF9LZXlNYXAAX3NldEF0X0tleU1hcABLZXlSZXBlYXREZWxheQBLZXlSZXBlYXRSYXRlAFVzZXJEYXRhAEZvbnRzAEZvbnRHbG9iYWxTY2FsZQBGb250QWxsb3dVc2VyU2NhbGluZwBGb250RGVmYXVsdABEaXNwbGF5RnJhbWVidWZmZXJTY2FsZQBEaXNwbGF5VmlzaWJsZU1pbgBEaXNwbGF5VmlzaWJsZU1heABNb3VzZURyYXdDdXJzb3IAQ29uZmlnTWFjT1NYQmVoYXZpb3JzAENvbmZpZ0lucHV0VGV4dEN1cnNvckJsaW5rAENvbmZpZ1dpbmRvd3NSZXNpemVGcm9tRWRnZXMAQ29uZmlnV2luZG93c01vdmVGcm9tVGl0bGVCYXJPbmx5AEdldENsaXBib2FyZFRleHRGbgBTZXRDbGlwYm9hcmRUZXh0Rm4AQ2xpcGJvYXJkVXNlckRhdGEATW91c2VQb3MAX2dldEF0X01vdXNlRG93bgBfc2V0QXRfTW91c2VEb3duAE1vdXNlV2hlZWwAS2V5Q3RybABLZXlTaGlmdABLZXlBbHQAS2V5U3VwZXIAX2dldEF0X0tleXNEb3duAF9zZXRBdF9LZXlzRG93bgBfZ2V0QXRfTmF2SW5wdXRzAF9zZXRBdF9OYXZJbnB1dHMAQWRkSW5wdXRDaGFyYWN0ZXIAQWRkSW5wdXRDaGFyYWN0ZXJzVVRGOABDbGVhcklucHV0Q2hhcmFjdGVycwBXYW50Q2FwdHVyZU1vdXNlAFdhbnRDYXB0dXJlS2V5Ym9hcmQAV2FudFRleHRJbnB1dABXYW50U2V0TW91c2VQb3MAV2FudFNhdmVJbmlTZXR0aW5ncwBOYXZBY3RpdmUATmF2VmlzaWJsZQBGcmFtZXJhdGUATWV0cmljc1JlbmRlclZlcnRpY2VzAE1ldHJpY3NSZW5kZXJJbmRpY2VzAE1ldHJpY3NSZW5kZXJXaW5kb3dzAE1ldHJpY3NBY3RpdmVXaW5kb3dzAE1ldHJpY3NBY3RpdmVBbGxvY2F0aW9ucwBNb3VzZURlbHRhAF9nZXRBdF9Nb3VzZUNsaWNrZWRQb3MAX2dldEF0X01vdXNlRG93bkR1cmF0aW9uAF9nZXRBdF9LZXlzRG93bkR1cmF0aW9uAF9nZXRBdF9OYXZJbnB1dHNEb3duRHVyYXRpb24AUEs3SW1HdWlJTwBpaWlpZgBmaWlpAEltRm9udEF0bGFzAEFkZEZvbnREZWZhdWx0AEFkZEZvbnRGcm9tTWVtb3J5VFRGAENsZWFyVGV4RGF0YQBDbGVhcklucHV0RGF0YQBDbGVhckZvbnRzAENsZWFyAEJ1aWxkAElzQnVpbHQAR2V0VGV4RGF0YUFzQWxwaGE4AEdldFRleERhdGFBc1JHQkEzMgBHZXRHbHlwaFJhbmdlc0RlZmF1bHQAR2V0R2x5cGhSYW5nZXNLb3JlYW4AR2V0R2x5cGhSYW5nZXNKYXBhbmVzZQBHZXRHbHlwaFJhbmdlc0NoaW5lc2VGdWxsAEdldEdseXBoUmFuZ2VzQ2hpbmVzZVNpbXBsaWZpZWRDb21tb24AR2V0R2x5cGhSYW5nZXNDeXJpbGxpYwBHZXRHbHlwaFJhbmdlc1RoYWkATG9ja2VkAEZsYWdzAFRleElEAFRleERlc2lyZWRXaWR0aABUZXhHbHlwaFBhZGRpbmcAVGV4V2lkdGgAVGV4SGVpZ2h0AFRleFV2U2NhbGUAVGV4VXZXaGl0ZVBpeGVsAEl0ZXJhdGVGb250cwBwaXhlbHMAd2lkdGgAaGVpZ2h0AGJ5dGVzX3Blcl9waXhlbABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0loRUUAaWlpaWZpaQBGb250RGF0YQBidWZmZXIAYnl0ZU9mZnNldABieXRlTGVuZ3RoAFRPRE86IEZvbnREYXRhICV6dSAlenUKAEZvbnREYXRhT3duZWRCeUF0bGFzAEZvbnRObwBTaXplUGl4ZWxzAE92ZXJzYW1wbGVIAE92ZXJzYW1wbGVWAFBpeGVsU25hcEgAR2x5cGhFeHRyYVNwYWNpbmcAR2x5cGhPZmZzZXQAR2x5cGhSYW5nZXMAR2x5cGhNaW5BZHZhbmNlWABHbHlwaE1heEFkdmFuY2VYAE1lcmdlTW9kZQBSYXN0ZXJpemVyRmxhZ3MAUmFzdGVyaXplck11bHRpcGx5AE5hbWUAUEsxMUltRm9udEF0bGFzAEltRm9udABGb250U2l6ZQBTY2FsZQBEaXNwbGF5T2Zmc2V0AEl0ZXJhdGVHbHlwaHMARmFsbGJhY2tHbHlwaABGYWxsYmFja0FkdmFuY2VYAEZhbGxiYWNrQ2hhcgBDb25maWdEYXRhQ291bnQASXRlcmF0ZUNvbmZpZ0RhdGEAQXNjZW50AERlc2NlbnQATWV0cmljc1RvdGFsU3VyZmFjZQBDbGVhck91dHB1dERhdGEAQnVpbGRMb29rdXBUYWJsZQBGaW5kR2x5cGgARmluZEdseXBoTm9GYWxsYmFjawBTZXRGYWxsYmFja0NoYXIAR2V0Q2hhckFkdmFuY2UASXNMb2FkZWQAR2V0RGVidWdOYW1lAENhbGNUZXh0U2l6ZUEAQ2FsY1dvcmRXcmFwUG9zaXRpb25BAFJlbmRlckNoYXIAdmlpaWZpaWkAaWlpZmlmAGlpaWZmZmlpaQA8dW5rbm93bj4AUEs2SW1Gb250AFBLMTFJbUZvbnRHbHlwaAAxMUltRm9udEdseXBoAFAxMkltRm9udENvbmZpZwAxMkltRm9udENvbmZpZwBQMTFJbUZvbnRHbHlwaABJbUZvbnRDb25maWcARHN0Rm9udABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShJbUZvbnRDb25maWcgJiwgZW1zY3JpcHRlbjo6dmFsKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShjb25zdCBJbUZvbnRDb25maWcgJikgY29uc3QAUEsxMkltRm9udENvbmZpZwBJbUZvbnRHbHlwaABDb2RlcG9pbnQAQWR2YW5jZVgAWDAAWTAAWDEAWTEAVTAAVjAAVTEAVjEASW1EcmF3RGF0YQBJdGVyYXRlRHJhd0xpc3RzAFZhbGlkAENtZExpc3RzQ291bnQAVG90YWxJZHhDb3VudABUb3RhbFZ0eENvdW50AERpc3BsYXlQb3MARGVJbmRleEFsbEJ1ZmZlcnMAU2NhbGVDbGlwUmVjdHMAUEsxMEltRHJhd0RhdGEAUEsxMEltRHJhd0xpc3QASW1EcmF3TGlzdABJdGVyYXRlRHJhd0NtZHMASWR4QnVmZmVyAFZ0eEJ1ZmZlcgBQdXNoQ2xpcFJlY3RGdWxsU2NyZWVuAFB1c2hUZXh0dXJlSUQAUG9wVGV4dHVyZUlEAEdldENsaXBSZWN0TWluAEdldENsaXBSZWN0TWF4AEFkZExpbmUAQWRkUmVjdABBZGRSZWN0RmlsbGVkAEFkZFJlY3RGaWxsZWRNdWx0aUNvbG9yAEFkZFF1YWQAQWRkUXVhZEZpbGxlZABBZGRUcmlhbmdsZQBBZGRUcmlhbmdsZUZpbGxlZABBZGRDaXJjbGUAQWRkQ2lyY2xlRmlsbGVkAEFkZFRleHRfQQBBZGRUZXh0X0IAQWRkSW1hZ2UAQWRkSW1hZ2VRdWFkAEFkZEltYWdlUm91bmRlZABBZGRQb2x5bGluZQBBZGRDb252ZXhQb2x5RmlsbGVkAEFkZEJlemllckN1cnZlAFBhdGhDbGVhcgBQYXRoTGluZVRvAFBhdGhMaW5lVG9NZXJnZUR1cGxpY2F0ZQBQYXRoRmlsbENvbnZleABQYXRoU3Ryb2tlAFBhdGhBcmNUbwBQYXRoQXJjVG9GYXN0AFBhdGhCZXppZXJDdXJ2ZVRvAFBhdGhSZWN0AENoYW5uZWxzU3BsaXQAQ2hhbm5lbHNNZXJnZQBDaGFubmVsc1NldEN1cnJlbnQAQWRkQ2FsbGJhY2sAQWRkRHJhd0NtZABDbGVhckZyZWVNZW1vcnkAUHJpbVJlc2VydmUAUHJpbVJlY3QAUHJpbVJlY3RVVgBQcmltUXVhZFVWAFByaW1Xcml0ZVZ0eABQcmltV3JpdGVJZHgAUHJpbVZ0eABVcGRhdGVDbGlwUmVjdABVcGRhdGVUZXh0dXJlSUQAdmlpaWlpaWlpaWlpAHZpaWlpZmkAdmlpaWZmZmkAdmlpaWlmAHZpaWlpaWlpZmkAdmlpaWlpaWlpZmkAdmlpaWlpaWlpaWlpaQB2aWlpZmlpaWZpADIzaW1wb3J0X21heWJlX251bGxfdmFsdWVJNkltVmVjNEUAdmlpaWZpaQB2aWlpZmlpZgB2aWlpaWlpAHZpaWlpaWlmAHZpaWlpaWlpZgB2aWlpaWlpaWkAdmlpaWlpZmkAdmlpaWlpZmlmAHZpaWlpaWYATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJY0VFAFBLOUltRHJhd0NtZAA5SW1EcmF3Q21kAEltRHJhd0NtZABFbGVtQ291bnQAQ2xpcFJlY3QAVGV4dHVyZUlkAFA5SW1EcmF3Q21kAEltR3VpTGlzdENsaXBwZXIAU3RhcnRQb3NZAEl0ZW1zSGVpZ2h0AEl0ZW1zQ291bnQAU3RlcE5vAERpc3BsYXlTdGFydABEaXNwbGF5RW5kAFN0ZXAAUDE2SW1HdWlMaXN0Q2xpcHBlcgAxNkltR3VpTGlzdENsaXBwZXIAdmlpaWYAUEsxNkltR3VpTGlzdENsaXBwZXIASW1HdWlTaXplQ2FsbGJhY2tEYXRhAFBvcwBDdXJyZW50U2l6ZQBEZXNpcmVkU2l6ZQBQSzIxSW1HdWlTaXplQ2FsbGJhY2tEYXRhAEltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAEV2ZW50RmxhZwBFdmVudENoYXIARXZlbnRLZXkAQnVmAEJ1ZlRleHRMZW4AQnVmU2l6ZQBCdWZEaXJ0eQBDdXJzb3JQb3MAU2VsZWN0aW9uU3RhcnQAU2VsZWN0aW9uRW5kAERlbGV0ZUNoYXJzAEluc2VydENoYXJzAEhhc1NlbGVjdGlvbgBQSzI2SW1HdWlJbnB1dFRleHRDYWxsYmFja0RhdGEASW1WZWM0AFNldABDb3B5AEVxdWFscwBJbVZlYzIAUDZJbVZlYzIAV3JhcEltR3VpQ29udGV4dABQSzE2V3JhcEltR3VpQ29udGV4dABtYWxsaW5mbwBhcmVuYQBvcmRibGtzAHNtYmxrcwBoYmxrcwBoYmxraGQAdXNtYmxrcwBmc21ibGtzAHVvcmRibGtzAGZvcmRibGtzAGtlZXBjb3N0AHZvaWQAYm9vbABzdGQ6OnN0cmluZwBzdGQ6OmJhc2ljX3N0cmluZzx1bnNpZ25lZCBjaGFyPgBzdGQ6OndzdHJpbmcAZW1zY3JpcHRlbjo6dmFsAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgc2hvcnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgaW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludDE2X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQzMl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZyBkb3VibGU+AE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SWVFRQBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxkb3VibGU+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBsb25nPgBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0ltRUUAZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZz4ATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJbEVFAE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SXRFRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lzRUUATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJYUVFAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGNoYXI+AE5TdDNfXzIxMmJhc2ljX3N0cmluZ0l3TlNfMTFjaGFyX3RyYWl0c0l3RUVOU185YWxsb2NhdG9ySXdFRUVFAE5TdDNfXzIxMmJhc2ljX3N0cmluZ0loTlNfMTFjaGFyX3RyYWl0c0loRUVOU185YWxsb2NhdG9ySWhFRUVFAGRvdWJsZQBmbG9hdAB1bnNpZ25lZCBsb25nAGxvbmcAdW5zaWduZWQgaW50AGludAB1bnNpZ25lZCBzaG9ydABzaG9ydAB1bnNpZ25lZCBjaGFyAHNpZ25lZCBjaGFyAGNoYXIAAAECBAcDBgUALSsgICAwWDB4AChudWxsKQAtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBOQU4ALgBpbmZpbml0eQBuYW4AcndhAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXM6ICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXMAdGVybWluYXRpbmcgd2l0aCAlcyBmb3JlaWduIGV4Y2VwdGlvbgB0ZXJtaW5hdGluZwB1bmNhdWdodABTdDlleGNlcHRpb24ATjEwX19jeHhhYml2MTE2X19zaGltX3R5cGVfaW5mb0UAU3Q5dHlwZV9pbmZvAE4xMF9fY3h4YWJpdjEyMF9fc2lfY2xhc3NfdHlwZV9pbmZvRQBOMTBfX2N4eGFiaXYxMTdfX2NsYXNzX3R5cGVfaW5mb0UAcHRocmVhZF9vbmNlIGZhaWx1cmUgaW4gX19jeGFfZ2V0X2dsb2JhbHNfZmFzdCgpAGNhbm5vdCBjcmVhdGUgcHRocmVhZCBrZXkgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAY2Fubm90IHplcm8gb3V0IHRocmVhZCB2YWx1ZSBmb3IgX19jeGFfZ2V0X2dsb2JhbHMoKQB0ZXJtaW5hdGVfaGFuZGxlciB1bmV4cGVjdGVkbHkgcmV0dXJuZWQAU3QxMWxvZ2ljX2Vycm9yAFN0MTJsZW5ndGhfZXJyb3IATjEwX19jeHhhYml2MTE5X19wb2ludGVyX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19wYmFzZV90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjEyM19fZnVuZGFtZW50YWxfdHlwZV9pbmZvRQB2AFB2AERuAGIAYwBoAGEAcwB0AGkAagBsAG0AZgBkAE4xMF9fY3h4YWJpdjEyMV9fdm1pX2NsYXNzX3R5cGVfaW5mb0U=";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile);}function getBinary(){try{if(Module["wasmBinary"]){return new Uint8Array(Module["wasmBinary"])}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(Module["readBinary"]){return Module["readBinary"](wasmBinaryFile)}else{throw"both async and sync fetching of the wasm failed"}}catch(err){abort(err);}}function getBinaryPromise(){if(!Module["wasmBinary"]&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch==="function"){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()})}return new Promise(function(resolve,reject){resolve(getBinary());})}function createWasm(env){var info={"env":env,"global":{"NaN":NaN,Infinity:Infinity},"global.Math":Math,"asm2wasm":asm2wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;removeRunDependency();}addRunDependency();function receiveInstantiatedSource(output){receiveInstance(output["instance"]);}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason);})}function instantiateAsync(){if(!Module["wasmBinary"]&&typeof WebAssembly.instantiateStreaming==="function"&&!isDataURI(wasmBinaryFile)&&typeof fetch==="function"){return WebAssembly.instantiateStreaming(fetch(wasmBinaryFile,{credentials:"same-origin"}),info).then(receiveInstantiatedSource,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");instantiateArrayBuffer(receiveInstantiatedSource);})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module["instantiateWasm"]){try{return Module["instantiateWasm"](info,receiveInstance)}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}}instantiateAsync();return {}}Module["asm"]=function(global,env,providedBuffer){env["memory"]=wasmMemory;env["table"]=wasmTable=new WebAssembly.Table({"initial":1442,"maximum":1442,"element":"anyfunc"});env["__memory_base"]=1024;env["__table_base"]=0;var exports=createWasm(env);return exports};__ATINIT__.push({func:function(){globalCtors();}});function ___cxa_allocate_exception(size){return _malloc(size)}function ___cxa_throw(ptr,type,destructor){throw ptr}function ___lock(){}var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0;}else{buffer.push(curr);}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get();}};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall145(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();return SYSCALLS.doReadv(stream,iov,iovcnt)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j>2]=value;return value}function ___syscall221(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___unlock(){}function getShiftFromSize(size){switch(size){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError("Unknown type size: "+size)}}function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<256;++i){codes[i]=String.fromCharCode(i);}embind_charCodes=codes;}var embind_charCodes=undefined;function readLatin1String(ptr){var ret="";var c=ptr;while(HEAPU8[c]){ret+=embind_charCodes[HEAPU8[c++]];}return ret}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return "_unknown"}name=name.replace(/[^a-zA-Z0-9_]/g,"$");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return "_"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return new Function("body","return function "+name+"() {\n"+' "use strict";'+" return body.apply(this, arguments);\n"+"};\n")(body)}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+"\n"+stack.replace(/^Error(:[^\n]*)?\n/,"");}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+": "+this.message}};return errorClass}var BindingError=undefined;function throwBindingError(message){throw new BindingError(message)}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes;});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError("Mismatched type converter count");}for(var i=0;i>shift])},destructorFunction:null});}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass;}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass;}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return {count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+" instance already deleted");}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr);}else{$$.ptrType.registeredClass.rawDestructor($$.ptr);}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$);}}function attachFinalizer(handle){if("undefined"===typeof FinalizationGroup){attachFinalizer=function(handle){return handle};return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn("object already deleted: "+$$.ptr);}else{releaseClassHandle($$);}}});attachFinalizer=function(handle){finalizationGroup.register(handle,handle.$$,handle.$$);return handle};detachFinalizer=function(handle){finalizationGroup.unregister(handle.$$);};return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined;}}function ClassHandle_isDeleted(){return !this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj["delete"]();}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes);}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype["isAliasOf"]=ClassHandle_isAliasOf;ClassHandle.prototype["clone"]=ClassHandle_clone;ClassHandle.prototype["delete"]=ClassHandle_delete;ClassHandle.prototype["isDeleted"]=ClassHandle_isDeleted;ClassHandle.prototype["deleteLater"]=ClassHandle_deleteLater;}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError("Function '"+humanName+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+proto[methodName].overloadTable+")!");}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc;}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError("Cannot register public name '"+name+"' twice");}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError("Cannot register multiple overloads of a function with the same number of arguments ("+numArguments+")!");}Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments;}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[];}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError("Expected null or instance of "+desiredClass.name+", got an instance of "+ptrClass.name);}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass;}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr);}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError("Passing raw pointer to smart pointer is illegal");}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{var clonedHandle=handle["clone"]();ptr=this.rawShare(ptr,__emval_register(function(){clonedHandle["delete"]();}));if(destructors!==null){destructors.push(this.rawDestructor,ptr);}}break;default:throwBindingError("Unsupporting sharing policy");}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+handle.$$.ptrType.name+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function simpleReadValueFromPointer(pointer){return this["fromWireType"](HEAPU32[pointer>>2])}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr);}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr);}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle["delete"]();}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k]);}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes);}}function init_embind(){Module["getInheritedInstanceCount"]=getInheritedInstanceCount;Module["getLiveInheritedInstances"]=getLiveInheritedInstances;Module["flushPendingDeletes"]=flushPendingDeletes;Module["setDelayFunction"]=setDelayFunction;}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError("ptr should not be undefined");}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass;}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError("makeClassHandle requires ptr and ptrType");}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError("Both smartPtrType and smartPtr must be specified");}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance["clone"]()}else{var rv=registeredInstance["clone"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType;}else{toType=registeredPointerRecord.pointerType;}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype["argPackAdvance"]=8;RegisteredPointer.prototype["readValueFromPointer"]=simpleReadValueFromPointer;RegisteredPointer.prototype["deleteObject"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype["fromWireType"]=RegisteredPointer_fromWireType;}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this["toWireType"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}else{this["toWireType"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}}else{this["toWireType"]=genericPointerToWireType;}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError("Replacing nonexistant public symbol");}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;Module[name].argCount=numArguments;}}function embind__requireFunction(signature,rawFunction){signature=readLatin1String(signature);function makeDynCaller(dynCall){var args=[];for(var i=1;i>2)+i]);}return array}function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr);}}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName="constructor "+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[];}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError("Cannot register multiple constructors with identical number of parameters ("+(argCount-1)+") for class '"+classType.name+"'! Overload resolution is currently only performed using the parameter count, not actual type info!")}classType.registeredClass.constructor_body[argCount-1]=function unboundTypeHandler(){throwUnboundTypeError("Cannot construct "+classType.name+" due to unbound types",rawArgTypes);};whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){classType.registeredClass.constructor_body[argCount-1]=function constructor_body(){if(arguments.length!==argCount-1){throwBindingError(humanName+" called with "+arguments.length+" arguments, expected "+(argCount-1));}var destructors=[];var args=new Array(argCount);args[0]=rawConstructor;for(var i=1;i0?", ":"")+argsListWired;}invokerFnBody+=(returns?"var rv = ":"")+"invoker(fn"+(argsListWired.length>0?", ":"")+argsListWired+");\n";if(needsDestructorStack){invokerFnBody+="runDestructors(destructors);\n";}else{for(var i=isClassMethodFunc?1:2;i4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle);}}function count_emval_handles(){var count=0;for(var i=5;i>2])};case 3:return function(pointer){return this["fromWireType"](HEAPF64[pointer>>3])};default:throw new TypeError("Unknown float type: "+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":function(value){return value},"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}return value},"argPackAdvance":8,"readValueFromPointer":floatReadValueFromPointer(name,shift),destructorFunction:null});}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError("Cannot call "+name+" due to unbound types",argTypes);},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return []});}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError("Unknown integer type: "+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295;}var shift=getShiftFromSize(size);var fromWireType=function(value){return value};if(minRange===0){var bitshift=32-8*size;fromWireType=function(value){return value<>>bitshift};}var isUnsignedType=name.indexOf("unsigned")!=-1;registerType(primitiveType,{name:name,"fromWireType":fromWireType,"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}if(valuemaxRange){throw new TypeError('Passing a number "'+_embind_repr(value)+'" from JS side to C/C++ side to an argument of type "'+name+'", which is outside the valid range ['+minRange+", "+maxRange+"]!")}return isUnsignedType?value>>>0:value|0},"argPackAdvance":8,"readValueFromPointer":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null});}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(heap["buffer"],data,size)}name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":decodeMemoryView,"argPackAdvance":8,"readValueFromPointer":decodeMemoryView},{ignoreDuplicateRegistrations:true});}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name==="std::string";registerType(rawType,{name:name,"fromWireType":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var endChar=HEAPU8[value+4+length];var endCharSwap=0;if(endChar!=0){endCharSwap=endChar;HEAPU8[value+4+length]=0;}var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(HEAPU8[currentBytePtr]==0){var stringSegment=UTF8ToString(decodeStartPtr);if(str===undefined)str=stringSegment;else{str+=String.fromCharCode(0);str+=stringSegment;}decodeStartPtr=currentBytePtr+1;}}if(endCharSwap!=0)HEAPU8[value+4+length]=endCharSwap;}else{var a=new Array(length);for(var i=0;i>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1);}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError("String has UTF-16 code units that do not fit in 8 bits");}HEAPU8[ptr+4+i]=charCode;}}else{for(var i=0;i>2];var a=new Array(length);var start=value+4>>shift;for(var i=0;i>2]=length;var start=ptr+4>>shift;for(var i=0;i>2]=rd;return returnType["toWireType"](destructors,handle)}function __emval_lookupTypes(argCount,argTypes,argWireTypes){var a=new Array(argCount);for(var i=0;i>2)+i],"parameter "+i);}return a}function __emval_call(handle,argCount,argTypes,argv){handle=requireHandle(handle);var types=__emval_lookupTypes(argCount,argTypes);var args=new Array(argCount);for(var i=0;i4){emval_handle_array[handle].refcount+=1;}}function __emval_new_array(){return __emval_register([])}function __emval_new_cstring(v){return __emval_register(getStringOrSymbol(v))}function __emval_new_object(){return __emval_register({})}function __emval_run_destructors(handle){var destructors=emval_handle_array[handle].value;runDestructors(destructors);__emval_decref(handle);}function __emval_set_property(handle,key,value){handle=requireHandle(handle);key=requireHandle(key);value=requireHandle(value);handle[key]=value;}function __emval_strictly_equals(first,second){first=requireHandle(first);second=requireHandle(second);return first===second}function __emval_take_value(type,argv){type=requireRegisteredType(type,"_emval_take_value");var v=type["readValueFromPointer"](argv);return __emval_register(v)}function __emval_typeof(handle){handle=requireHandle(handle);return __emval_register(typeof handle)}function _abort(){Module["abort"]();}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest);}function abortOnCannotGrowMemory(requestedSize){abort("OOM");}function _emscripten_resize_heap(requestedSize){abortOnCannotGrowMemory();}embind_init_charCodes();BindingError=Module["BindingError"]=extendError(Error,"BindingError");InternalError=Module["InternalError"]=extendError(Error,"InternalError");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module["UnboundTypeError"]=extendError(Error,"UnboundTypeError");init_emval();function intArrayToString(array){var ret=[];for(var i=0;i255){chr&=255;}ret.push(String.fromCharCode(chr));}return ret.join("")}var decodeBase64=typeof atob==="function"?atob:function(input){var keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2);}if(enc4!==64){output=output+String.fromCharCode(chr3);}}while(i0){return}preRun();if(runDependencies>0)return;if(Module["calledRun"])return;function doRun(){if(Module["calledRun"])return;Module["calledRun"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun();}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("");},1);doRun();},1);}else{doRun();}}Module["run"]=run;function abort(what){if(Module["onAbort"]){Module["onAbort"](what);}if(what!==undefined){out(what);err(what);what=JSON.stringify(what);}else{what="";}ABORT=true;throw"abort("+what+"). Build with -s ASSERTIONS=1 for more info."}Module["abort"]=abort;if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()();}}Module["noExitRuntime"]=true;run(); + + + return Module +} +); +})(); +module.exports = Module; +}); + +let bind; +const IMGUI_VERSION = "1.71"; // bind.IMGUI_VERSION; +// #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert)) +function IMGUI_CHECKVERSION() { return DebugCheckVersionAndDataLayout(IMGUI_VERSION, bind.ImGuiIOSize, bind.ImGuiStyleSize, bind.ImVec2Size, bind.ImVec4Size, bind.ImDrawVertSize, bind.ImDrawIdxSize); } +function IM_ASSERT(_EXPR) { if (!_EXPR) { + throw new Error(); +} } +function IM_ARRAYSIZE(_ARR) { + if (_ARR instanceof ImStringBuffer) { + return _ARR.size; + } + else { + return _ARR.length; + } +} +class ImStringBuffer { + constructor(size, buffer = "") { + this.size = size; + this.buffer = buffer; + } +} +var ImGuiWindowFlags; +(function (ImGuiWindowFlags) { + ImGuiWindowFlags[ImGuiWindowFlags["None"] = 0] = "None"; + ImGuiWindowFlags[ImGuiWindowFlags["NoTitleBar"] = 1] = "NoTitleBar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoResize"] = 2] = "NoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMove"] = 4] = "NoMove"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollbar"] = 8] = "NoScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollWithMouse"] = 16] = "NoScrollWithMouse"; + ImGuiWindowFlags[ImGuiWindowFlags["NoCollapse"] = 32] = "NoCollapse"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysAutoResize"] = 64] = "AlwaysAutoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBackground"] = 128] = "NoBackground"; + ImGuiWindowFlags[ImGuiWindowFlags["NoSavedSettings"] = 256] = "NoSavedSettings"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMouseInputs"] = 512] = "NoMouseInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["MenuBar"] = 1024] = "MenuBar"; + ImGuiWindowFlags[ImGuiWindowFlags["HorizontalScrollbar"] = 2048] = "HorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoFocusOnAppearing"] = 4096] = "NoFocusOnAppearing"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBringToFrontOnFocus"] = 8192] = "NoBringToFrontOnFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysVerticalScrollbar"] = 16384] = "AlwaysVerticalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysHorizontalScrollbar"] = 32768] = "AlwaysHorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysUseWindowPadding"] = 65536] = "AlwaysUseWindowPadding"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavInputs"] = 262144] = "NoNavInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavFocus"] = 524288] = "NoNavFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["UnsavedDocument"] = 1048576] = "UnsavedDocument"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNav"] = 786432] = "NoNav"; + ImGuiWindowFlags[ImGuiWindowFlags["NoDecoration"] = 43] = "NoDecoration"; + ImGuiWindowFlags[ImGuiWindowFlags["NoInputs"] = 786944] = "NoInputs"; + // [Internal] + ImGuiWindowFlags[ImGuiWindowFlags["NavFlattened"] = 8388608] = "NavFlattened"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildWindow"] = 16777216] = "ChildWindow"; + ImGuiWindowFlags[ImGuiWindowFlags["Tooltip"] = 33554432] = "Tooltip"; + ImGuiWindowFlags[ImGuiWindowFlags["Popup"] = 67108864] = "Popup"; + ImGuiWindowFlags[ImGuiWindowFlags["Modal"] = 134217728] = "Modal"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildMenu"] = 268435456] = "ChildMenu"; +})(ImGuiWindowFlags || (ImGuiWindowFlags = {})); +var ImGuiInputTextFlags; +(function (ImGuiInputTextFlags) { + ImGuiInputTextFlags[ImGuiInputTextFlags["None"] = 0] = "None"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsDecimal"] = 1] = "CharsDecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsHexadecimal"] = 2] = "CharsHexadecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsUppercase"] = 4] = "CharsUppercase"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsNoBlank"] = 8] = "CharsNoBlank"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AutoSelectAll"] = 16] = "AutoSelectAll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["EnterReturnsTrue"] = 32] = "EnterReturnsTrue"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCompletion"] = 64] = "CallbackCompletion"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackHistory"] = 128] = "CallbackHistory"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackAlways"] = 256] = "CallbackAlways"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCharFilter"] = 512] = "CallbackCharFilter"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AllowTabInput"] = 1024] = "AllowTabInput"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CtrlEnterForNewLine"] = 2048] = "CtrlEnterForNewLine"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoHorizontalScroll"] = 4096] = "NoHorizontalScroll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AlwaysInsertMode"] = 8192] = "AlwaysInsertMode"; + ImGuiInputTextFlags[ImGuiInputTextFlags["ReadOnly"] = 16384] = "ReadOnly"; + ImGuiInputTextFlags[ImGuiInputTextFlags["Password"] = 32768] = "Password"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoUndoRedo"] = 65536] = "NoUndoRedo"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsScientific"] = 131072] = "CharsScientific"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackResize"] = 262144] = "CallbackResize"; + // [Internal] + ImGuiInputTextFlags[ImGuiInputTextFlags["Multiline"] = 1048576] = "Multiline"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoMarkEdited"] = 2097152] = "NoMarkEdited"; +})(ImGuiInputTextFlags || (ImGuiInputTextFlags = {})); +var ImGuiTreeNodeFlags; +(function (ImGuiTreeNodeFlags) { + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["None"] = 0] = "None"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Selected"] = 1] = "Selected"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Framed"] = 2] = "Framed"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["AllowItemOverlap"] = 4] = "AllowItemOverlap"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoTreePushOnOpen"] = 8] = "NoTreePushOnOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoAutoOpenOnLog"] = 16] = "NoAutoOpenOnLog"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["DefaultOpen"] = 32] = "DefaultOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnDoubleClick"] = 64] = "OpenOnDoubleClick"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnArrow"] = 128] = "OpenOnArrow"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Leaf"] = 256] = "Leaf"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Bullet"] = 512] = "Bullet"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["FramePadding"] = 1024] = "FramePadding"; + //SpanAllAvailWidth = 1 << 11, // FIXME: TODO: Extend hit box horizontally even if not framed + //NoScrollOnOpen = 1 << 12, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NavLeftJumpsBackHere"] = 8192] = "NavLeftJumpsBackHere"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["CollapsingHeader"] = 26] = "CollapsingHeader"; +})(ImGuiTreeNodeFlags || (ImGuiTreeNodeFlags = {})); +var ImGuiSelectableFlags; +(function (ImGuiSelectableFlags) { + ImGuiSelectableFlags[ImGuiSelectableFlags["None"] = 0] = "None"; + ImGuiSelectableFlags[ImGuiSelectableFlags["DontClosePopups"] = 1] = "DontClosePopups"; + ImGuiSelectableFlags[ImGuiSelectableFlags["SpanAllColumns"] = 2] = "SpanAllColumns"; + ImGuiSelectableFlags[ImGuiSelectableFlags["AllowDoubleClick"] = 4] = "AllowDoubleClick"; + ImGuiSelectableFlags[ImGuiSelectableFlags["Disabled"] = 8] = "Disabled"; // Cannot be selected, display greyed out text +})(ImGuiSelectableFlags || (ImGuiSelectableFlags = {})); +var ImGuiComboFlags; +(function (ImGuiComboFlags) { + ImGuiComboFlags[ImGuiComboFlags["None"] = 0] = "None"; + ImGuiComboFlags[ImGuiComboFlags["PopupAlignLeft"] = 1] = "PopupAlignLeft"; + ImGuiComboFlags[ImGuiComboFlags["HeightSmall"] = 2] = "HeightSmall"; + ImGuiComboFlags[ImGuiComboFlags["HeightRegular"] = 4] = "HeightRegular"; + ImGuiComboFlags[ImGuiComboFlags["HeightLarge"] = 8] = "HeightLarge"; + ImGuiComboFlags[ImGuiComboFlags["HeightLargest"] = 16] = "HeightLargest"; + ImGuiComboFlags[ImGuiComboFlags["NoArrowButton"] = 32] = "NoArrowButton"; + ImGuiComboFlags[ImGuiComboFlags["NoPreview"] = 64] = "NoPreview"; + ImGuiComboFlags[ImGuiComboFlags["HeightMask_"] = 30] = "HeightMask_"; +})(ImGuiComboFlags || (ImGuiComboFlags = {})); +var ImGuiTabBarFlags; +(function (ImGuiTabBarFlags) { + ImGuiTabBarFlags[ImGuiTabBarFlags["None"] = 0] = "None"; + ImGuiTabBarFlags[ImGuiTabBarFlags["Reorderable"] = 1] = "Reorderable"; + ImGuiTabBarFlags[ImGuiTabBarFlags["AutoSelectNewTabs"] = 2] = "AutoSelectNewTabs"; + ImGuiTabBarFlags[ImGuiTabBarFlags["TabListPopupButton"] = 4] = "TabListPopupButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoCloseWithMiddleMouseButton"] = 8] = "NoCloseWithMiddleMouseButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTabListScrollingButtons"] = 16] = "NoTabListScrollingButtons"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTooltip"] = 32] = "NoTooltip"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyResizeDown"] = 64] = "FittingPolicyResizeDown"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyScroll"] = 128] = "FittingPolicyScroll"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyMask_"] = 192] = "FittingPolicyMask_"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyDefault_"] = 64] = "FittingPolicyDefault_"; +})(ImGuiTabBarFlags || (ImGuiTabBarFlags = {})); +var ImGuiTabItemFlags; +(function (ImGuiTabItemFlags) { + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_None"] = 0] = "ImGuiTabItemFlags_None"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_UnsavedDocument"] = 1] = "ImGuiTabItemFlags_UnsavedDocument"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_SetSelected"] = 2] = "ImGuiTabItemFlags_SetSelected"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"] = 4] = "ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoPushId"] = 8] = "ImGuiTabItemFlags_NoPushId"; // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem() +})(ImGuiTabItemFlags || (ImGuiTabItemFlags = {})); +var ImGuiFocusedFlags; +(function (ImGuiFocusedFlags) { + ImGuiFocusedFlags[ImGuiFocusedFlags["None"] = 0] = "None"; + ImGuiFocusedFlags[ImGuiFocusedFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiFocusedFlags || (ImGuiFocusedFlags = {})); +var ImGuiHoveredFlags; +(function (ImGuiHoveredFlags) { + ImGuiHoveredFlags[ImGuiHoveredFlags["None"] = 0] = "None"; + ImGuiHoveredFlags[ImGuiHoveredFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByPopup"] = 8] = "AllowWhenBlockedByPopup"; + //AllowWhenBlockedByModal = 1 << 4, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet. + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByActiveItem"] = 32] = "AllowWhenBlockedByActiveItem"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenOverlapped"] = 64] = "AllowWhenOverlapped"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenDisabled"] = 128] = "AllowWhenDisabled"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RectOnly"] = 104] = "RectOnly"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiHoveredFlags || (ImGuiHoveredFlags = {})); +var ImGuiDragDropFlags; +(function (ImGuiDragDropFlags) { + // BeginDragDropSource() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["None"] = 0] = "None"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoPreviewTooltip"] = 1] = "SourceNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoDisableHover"] = 2] = "SourceNoDisableHover"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoHoldToOpenOthers"] = 4] = "SourceNoHoldToOpenOthers"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAllowNullID"] = 8] = "SourceAllowNullID"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceExtern"] = 16] = "SourceExtern"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAutoExpirePayload"] = 32] = "SourceAutoExpirePayload"; + // AcceptDragDropPayload() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptBeforeDelivery"] = 1024] = "AcceptBeforeDelivery"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoDrawDefaultRect"] = 2048] = "AcceptNoDrawDefaultRect"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoPreviewTooltip"] = 4096] = "AcceptNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptPeekOnly"] = 3072] = "AcceptPeekOnly"; +})(ImGuiDragDropFlags || (ImGuiDragDropFlags = {})); +var ImGuiDataType; +(function (ImGuiDataType) { + ImGuiDataType[ImGuiDataType["S8"] = 0] = "S8"; + ImGuiDataType[ImGuiDataType["U8"] = 1] = "U8"; + ImGuiDataType[ImGuiDataType["S16"] = 2] = "S16"; + ImGuiDataType[ImGuiDataType["U16"] = 3] = "U16"; + ImGuiDataType[ImGuiDataType["S32"] = 4] = "S32"; + ImGuiDataType[ImGuiDataType["U32"] = 5] = "U32"; + ImGuiDataType[ImGuiDataType["S64"] = 6] = "S64"; + ImGuiDataType[ImGuiDataType["U64"] = 7] = "U64"; + ImGuiDataType[ImGuiDataType["Float"] = 8] = "Float"; + ImGuiDataType[ImGuiDataType["Double"] = 9] = "Double"; + ImGuiDataType[ImGuiDataType["COUNT"] = 10] = "COUNT"; +})(ImGuiDataType || (ImGuiDataType = {})); +var ImGuiDir; +(function (ImGuiDir) { + ImGuiDir[ImGuiDir["None"] = -1] = "None"; + ImGuiDir[ImGuiDir["Left"] = 0] = "Left"; + ImGuiDir[ImGuiDir["Right"] = 1] = "Right"; + ImGuiDir[ImGuiDir["Up"] = 2] = "Up"; + ImGuiDir[ImGuiDir["Down"] = 3] = "Down"; + ImGuiDir[ImGuiDir["COUNT"] = 4] = "COUNT"; +})(ImGuiDir || (ImGuiDir = {})); +var ImGuiKey; +(function (ImGuiKey) { + ImGuiKey[ImGuiKey["Tab"] = 0] = "Tab"; + ImGuiKey[ImGuiKey["LeftArrow"] = 1] = "LeftArrow"; + ImGuiKey[ImGuiKey["RightArrow"] = 2] = "RightArrow"; + ImGuiKey[ImGuiKey["UpArrow"] = 3] = "UpArrow"; + ImGuiKey[ImGuiKey["DownArrow"] = 4] = "DownArrow"; + ImGuiKey[ImGuiKey["PageUp"] = 5] = "PageUp"; + ImGuiKey[ImGuiKey["PageDown"] = 6] = "PageDown"; + ImGuiKey[ImGuiKey["Home"] = 7] = "Home"; + ImGuiKey[ImGuiKey["End"] = 8] = "End"; + ImGuiKey[ImGuiKey["Insert"] = 9] = "Insert"; + ImGuiKey[ImGuiKey["Delete"] = 10] = "Delete"; + ImGuiKey[ImGuiKey["Backspace"] = 11] = "Backspace"; + ImGuiKey[ImGuiKey["Space"] = 12] = "Space"; + ImGuiKey[ImGuiKey["Enter"] = 13] = "Enter"; + ImGuiKey[ImGuiKey["Escape"] = 14] = "Escape"; + ImGuiKey[ImGuiKey["A"] = 15] = "A"; + ImGuiKey[ImGuiKey["C"] = 16] = "C"; + ImGuiKey[ImGuiKey["V"] = 17] = "V"; + ImGuiKey[ImGuiKey["X"] = 18] = "X"; + ImGuiKey[ImGuiKey["Y"] = 19] = "Y"; + ImGuiKey[ImGuiKey["Z"] = 20] = "Z"; + ImGuiKey[ImGuiKey["COUNT"] = 21] = "COUNT"; +})(ImGuiKey || (ImGuiKey = {})); +var ImGuiNavInput; +(function (ImGuiNavInput) { + // Gamepad Mapping + ImGuiNavInput[ImGuiNavInput["Activate"] = 0] = "Activate"; + ImGuiNavInput[ImGuiNavInput["Cancel"] = 1] = "Cancel"; + ImGuiNavInput[ImGuiNavInput["Input"] = 2] = "Input"; + ImGuiNavInput[ImGuiNavInput["Menu"] = 3] = "Menu"; + ImGuiNavInput[ImGuiNavInput["DpadLeft"] = 4] = "DpadLeft"; + ImGuiNavInput[ImGuiNavInput["DpadRight"] = 5] = "DpadRight"; + ImGuiNavInput[ImGuiNavInput["DpadUp"] = 6] = "DpadUp"; + ImGuiNavInput[ImGuiNavInput["DpadDown"] = 7] = "DpadDown"; + ImGuiNavInput[ImGuiNavInput["LStickLeft"] = 8] = "LStickLeft"; + ImGuiNavInput[ImGuiNavInput["LStickRight"] = 9] = "LStickRight"; + ImGuiNavInput[ImGuiNavInput["LStickUp"] = 10] = "LStickUp"; + ImGuiNavInput[ImGuiNavInput["LStickDown"] = 11] = "LStickDown"; + ImGuiNavInput[ImGuiNavInput["FocusPrev"] = 12] = "FocusPrev"; + ImGuiNavInput[ImGuiNavInput["FocusNext"] = 13] = "FocusNext"; + ImGuiNavInput[ImGuiNavInput["TweakSlow"] = 14] = "TweakSlow"; + ImGuiNavInput[ImGuiNavInput["TweakFast"] = 15] = "TweakFast"; + // [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them. + // Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) may be directly reading from io.KeyDown[] instead of io.NavInputs[]. + ImGuiNavInput[ImGuiNavInput["KeyMenu_"] = 16] = "KeyMenu_"; + ImGuiNavInput[ImGuiNavInput["KeyTab_"] = 17] = "KeyTab_"; + ImGuiNavInput[ImGuiNavInput["KeyLeft_"] = 18] = "KeyLeft_"; + ImGuiNavInput[ImGuiNavInput["KeyRight_"] = 19] = "KeyRight_"; + ImGuiNavInput[ImGuiNavInput["KeyUp_"] = 20] = "KeyUp_"; + ImGuiNavInput[ImGuiNavInput["KeyDown_"] = 21] = "KeyDown_"; + ImGuiNavInput[ImGuiNavInput["COUNT"] = 22] = "COUNT"; + ImGuiNavInput[ImGuiNavInput["InternalStart_"] = 16] = "InternalStart_"; +})(ImGuiNavInput || (ImGuiNavInput = {})); +var ImGuiConfigFlags; +(function (ImGuiConfigFlags) { + ImGuiConfigFlags[ImGuiConfigFlags["None"] = 0] = "None"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableKeyboard"] = 1] = "NavEnableKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableGamepad"] = 2] = "NavEnableGamepad"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableSetMousePos"] = 4] = "NavEnableSetMousePos"; + ImGuiConfigFlags[ImGuiConfigFlags["NavNoCaptureKeyboard"] = 8] = "NavNoCaptureKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouse"] = 16] = "NoMouse"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouseCursorChange"] = 32] = "NoMouseCursorChange"; + ImGuiConfigFlags[ImGuiConfigFlags["IsSRGB"] = 1048576] = "IsSRGB"; + ImGuiConfigFlags[ImGuiConfigFlags["IsTouchScreen"] = 2097152] = "IsTouchScreen"; // Application is using a touch screen instead of a mouse. +})(ImGuiConfigFlags || (ImGuiConfigFlags = {})); +var ImGuiCol; +(function (ImGuiCol) { + ImGuiCol[ImGuiCol["Text"] = 0] = "Text"; + ImGuiCol[ImGuiCol["TextDisabled"] = 1] = "TextDisabled"; + ImGuiCol[ImGuiCol["WindowBg"] = 2] = "WindowBg"; + ImGuiCol[ImGuiCol["ChildBg"] = 3] = "ChildBg"; + ImGuiCol[ImGuiCol["PopupBg"] = 4] = "PopupBg"; + ImGuiCol[ImGuiCol["Border"] = 5] = "Border"; + ImGuiCol[ImGuiCol["BorderShadow"] = 6] = "BorderShadow"; + ImGuiCol[ImGuiCol["FrameBg"] = 7] = "FrameBg"; + ImGuiCol[ImGuiCol["FrameBgHovered"] = 8] = "FrameBgHovered"; + ImGuiCol[ImGuiCol["FrameBgActive"] = 9] = "FrameBgActive"; + ImGuiCol[ImGuiCol["TitleBg"] = 10] = "TitleBg"; + ImGuiCol[ImGuiCol["TitleBgActive"] = 11] = "TitleBgActive"; + ImGuiCol[ImGuiCol["TitleBgCollapsed"] = 12] = "TitleBgCollapsed"; + ImGuiCol[ImGuiCol["MenuBarBg"] = 13] = "MenuBarBg"; + ImGuiCol[ImGuiCol["ScrollbarBg"] = 14] = "ScrollbarBg"; + ImGuiCol[ImGuiCol["ScrollbarGrab"] = 15] = "ScrollbarGrab"; + ImGuiCol[ImGuiCol["ScrollbarGrabHovered"] = 16] = "ScrollbarGrabHovered"; + ImGuiCol[ImGuiCol["ScrollbarGrabActive"] = 17] = "ScrollbarGrabActive"; + ImGuiCol[ImGuiCol["CheckMark"] = 18] = "CheckMark"; + ImGuiCol[ImGuiCol["SliderGrab"] = 19] = "SliderGrab"; + ImGuiCol[ImGuiCol["SliderGrabActive"] = 20] = "SliderGrabActive"; + ImGuiCol[ImGuiCol["Button"] = 21] = "Button"; + ImGuiCol[ImGuiCol["ButtonHovered"] = 22] = "ButtonHovered"; + ImGuiCol[ImGuiCol["ButtonActive"] = 23] = "ButtonActive"; + ImGuiCol[ImGuiCol["Header"] = 24] = "Header"; + ImGuiCol[ImGuiCol["HeaderHovered"] = 25] = "HeaderHovered"; + ImGuiCol[ImGuiCol["HeaderActive"] = 26] = "HeaderActive"; + ImGuiCol[ImGuiCol["Separator"] = 27] = "Separator"; + ImGuiCol[ImGuiCol["SeparatorHovered"] = 28] = "SeparatorHovered"; + ImGuiCol[ImGuiCol["SeparatorActive"] = 29] = "SeparatorActive"; + ImGuiCol[ImGuiCol["ResizeGrip"] = 30] = "ResizeGrip"; + ImGuiCol[ImGuiCol["ResizeGripHovered"] = 31] = "ResizeGripHovered"; + ImGuiCol[ImGuiCol["ResizeGripActive"] = 32] = "ResizeGripActive"; + ImGuiCol[ImGuiCol["Tab"] = 33] = "Tab"; + ImGuiCol[ImGuiCol["TabHovered"] = 34] = "TabHovered"; + ImGuiCol[ImGuiCol["TabActive"] = 35] = "TabActive"; + ImGuiCol[ImGuiCol["TabUnfocused"] = 36] = "TabUnfocused"; + ImGuiCol[ImGuiCol["TabUnfocusedActive"] = 37] = "TabUnfocusedActive"; + ImGuiCol[ImGuiCol["PlotLines"] = 38] = "PlotLines"; + ImGuiCol[ImGuiCol["PlotLinesHovered"] = 39] = "PlotLinesHovered"; + ImGuiCol[ImGuiCol["PlotHistogram"] = 40] = "PlotHistogram"; + ImGuiCol[ImGuiCol["PlotHistogramHovered"] = 41] = "PlotHistogramHovered"; + ImGuiCol[ImGuiCol["TextSelectedBg"] = 42] = "TextSelectedBg"; + ImGuiCol[ImGuiCol["DragDropTarget"] = 43] = "DragDropTarget"; + ImGuiCol[ImGuiCol["NavHighlight"] = 44] = "NavHighlight"; + ImGuiCol[ImGuiCol["NavWindowingHighlight"] = 45] = "NavWindowingHighlight"; + ImGuiCol[ImGuiCol["NavWindowingDimBg"] = 46] = "NavWindowingDimBg"; + ImGuiCol[ImGuiCol["ModalWindowDimBg"] = 47] = "ModalWindowDimBg"; + ImGuiCol[ImGuiCol["COUNT"] = 48] = "COUNT"; +})(ImGuiCol || (ImGuiCol = {})); +var ImGuiStyleVar; +(function (ImGuiStyleVar) { + // Enum name ......................// Member in ImGuiStyle structure (see ImGuiStyle for descriptions) + ImGuiStyleVar[ImGuiStyleVar["Alpha"] = 0] = "Alpha"; + ImGuiStyleVar[ImGuiStyleVar["WindowPadding"] = 1] = "WindowPadding"; + ImGuiStyleVar[ImGuiStyleVar["WindowRounding"] = 2] = "WindowRounding"; + ImGuiStyleVar[ImGuiStyleVar["WindowBorderSize"] = 3] = "WindowBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowMinSize"] = 4] = "WindowMinSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowTitleAlign"] = 5] = "WindowTitleAlign"; + // WindowMenuButtonPosition, // ImGuiDir WindowMenuButtonPosition + ImGuiStyleVar[ImGuiStyleVar["ChildRounding"] = 6] = "ChildRounding"; + ImGuiStyleVar[ImGuiStyleVar["ChildBorderSize"] = 7] = "ChildBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["PopupRounding"] = 8] = "PopupRounding"; + ImGuiStyleVar[ImGuiStyleVar["PopupBorderSize"] = 9] = "PopupBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["FramePadding"] = 10] = "FramePadding"; + ImGuiStyleVar[ImGuiStyleVar["FrameRounding"] = 11] = "FrameRounding"; + ImGuiStyleVar[ImGuiStyleVar["FrameBorderSize"] = 12] = "FrameBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["ItemSpacing"] = 13] = "ItemSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ItemInnerSpacing"] = 14] = "ItemInnerSpacing"; + ImGuiStyleVar[ImGuiStyleVar["IndentSpacing"] = 15] = "IndentSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarSize"] = 16] = "ScrollbarSize"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarRounding"] = 17] = "ScrollbarRounding"; + ImGuiStyleVar[ImGuiStyleVar["GrabMinSize"] = 18] = "GrabMinSize"; + ImGuiStyleVar[ImGuiStyleVar["GrabRounding"] = 19] = "GrabRounding"; + ImGuiStyleVar[ImGuiStyleVar["TabRounding"] = 20] = "TabRounding"; + ImGuiStyleVar[ImGuiStyleVar["ButtonTextAlign"] = 21] = "ButtonTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["SelectableTextAlign"] = 22] = "SelectableTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["Count_"] = 23] = "Count_"; + ImGuiStyleVar[ImGuiStyleVar["COUNT"] = 23] = "COUNT"; +})(ImGuiStyleVar || (ImGuiStyleVar = {})); +var ImGuiBackendFlags; +(function (ImGuiBackendFlags) { + ImGuiBackendFlags[ImGuiBackendFlags["None"] = 0] = "None"; + ImGuiBackendFlags[ImGuiBackendFlags["HasGamepad"] = 1] = "HasGamepad"; + ImGuiBackendFlags[ImGuiBackendFlags["HasMouseCursors"] = 2] = "HasMouseCursors"; + ImGuiBackendFlags[ImGuiBackendFlags["HasSetMousePos"] = 4] = "HasSetMousePos"; + ImGuiBackendFlags[ImGuiBackendFlags["RendererHasVtxOffset"] = 8] = "RendererHasVtxOffset"; +})(ImGuiBackendFlags || (ImGuiBackendFlags = {})); +var ImGuiColorEditFlags; +(function (ImGuiColorEditFlags) { + ImGuiColorEditFlags[ImGuiColorEditFlags["None"] = 0] = "None"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoAlpha"] = 2] = "NoAlpha"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoPicker"] = 4] = "NoPicker"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoOptions"] = 8] = "NoOptions"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSmallPreview"] = 16] = "NoSmallPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoInputs"] = 32] = "NoInputs"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoTooltip"] = 64] = "NoTooltip"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoLabel"] = 128] = "NoLabel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSidePreview"] = 256] = "NoSidePreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoDragDrop"] = 512] = "NoDragDrop"; + // User Options (right-click on widget to change some of them). You can set application defaults using SetColorEditOptions(). The idea is that you probably don't want to override them in most of your calls, let the user choose and/or call SetColorEditOptions() during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaBar"] = 65536] = "AlphaBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreview"] = 131072] = "AlphaPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreviewHalf"] = 262144] = "AlphaPreviewHalf"; + ImGuiColorEditFlags[ImGuiColorEditFlags["HDR"] = 524288] = "HDR"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayRGB"] = 1048576] = "DisplayRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHSV"] = 2097152] = "DisplayHSV"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHex"] = 4194304] = "DisplayHex"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Uint8"] = 8388608] = "Uint8"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Float"] = 16777216] = "Float"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueBar"] = 33554432] = "PickerHueBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueWheel"] = 67108864] = "PickerHueWheel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputRGB"] = 134217728] = "InputRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputHSV"] = 268435456] = "InputHSV"; + // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to + // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["_OptionsDefault"] = 177209344] = "_OptionsDefault"; + // [Internal] Masks + ImGuiColorEditFlags[ImGuiColorEditFlags["_DisplayMask"] = 7340032] = "_DisplayMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_DataTypeMask"] = 25165824] = "_DataTypeMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_PickerMask"] = 100663296] = "_PickerMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_InputMask"] = 402653184] = "_InputMask"; +})(ImGuiColorEditFlags || (ImGuiColorEditFlags = {})); +var ImGuiMouseCursor; +(function (ImGuiMouseCursor) { + ImGuiMouseCursor[ImGuiMouseCursor["None"] = -1] = "None"; + ImGuiMouseCursor[ImGuiMouseCursor["Arrow"] = 0] = "Arrow"; + ImGuiMouseCursor[ImGuiMouseCursor["TextInput"] = 1] = "TextInput"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeAll"] = 2] = "ResizeAll"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNS"] = 3] = "ResizeNS"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeEW"] = 4] = "ResizeEW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNESW"] = 5] = "ResizeNESW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNWSE"] = 6] = "ResizeNWSE"; + ImGuiMouseCursor[ImGuiMouseCursor["Hand"] = 7] = "Hand"; + ImGuiMouseCursor[ImGuiMouseCursor["Count_"] = 8] = "Count_"; + ImGuiMouseCursor[ImGuiMouseCursor["COUNT"] = 8] = "COUNT"; +})(ImGuiMouseCursor || (ImGuiMouseCursor = {})); +var ImGuiCond; +(function (ImGuiCond) { + ImGuiCond[ImGuiCond["Always"] = 1] = "Always"; + ImGuiCond[ImGuiCond["Once"] = 2] = "Once"; + ImGuiCond[ImGuiCond["FirstUseEver"] = 4] = "FirstUseEver"; + ImGuiCond[ImGuiCond["Appearing"] = 8] = "Appearing"; +})(ImGuiCond || (ImGuiCond = {})); +var ImDrawCornerFlags; +(function (ImDrawCornerFlags) { + ImDrawCornerFlags[ImDrawCornerFlags["TopLeft"] = 1] = "TopLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["TopRight"] = 2] = "TopRight"; + ImDrawCornerFlags[ImDrawCornerFlags["BotLeft"] = 4] = "BotLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["BotRight"] = 8] = "BotRight"; + ImDrawCornerFlags[ImDrawCornerFlags["Top"] = 3] = "Top"; + ImDrawCornerFlags[ImDrawCornerFlags["Bot"] = 12] = "Bot"; + ImDrawCornerFlags[ImDrawCornerFlags["Left"] = 5] = "Left"; + ImDrawCornerFlags[ImDrawCornerFlags["Right"] = 10] = "Right"; + ImDrawCornerFlags[ImDrawCornerFlags["All"] = 15] = "All"; +})(ImDrawCornerFlags || (ImDrawCornerFlags = {})); +var ImDrawListFlags; +(function (ImDrawListFlags) { + ImDrawListFlags[ImDrawListFlags["None"] = 0] = "None"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedLines"] = 1] = "AntiAliasedLines"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedFill"] = 2] = "AntiAliasedFill"; +})(ImDrawListFlags || (ImDrawListFlags = {})); +class ImVec2 { + constructor(x = 0.0, y = 0.0) { + this.x = x; + this.y = y; + } + Set(x, y) { + this.x = x; + this.y = y; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + return true; + } +} +ImVec2.ZERO = new ImVec2(0.0, 0.0); +ImVec2.UNIT = new ImVec2(1.0, 1.0); +ImVec2.UNIT_X = new ImVec2(1.0, 0.0); +ImVec2.UNIT_Y = new ImVec2(0.0, 1.0); +class ImVec4 { + constructor(x = 0.0, y = 0.0, z = 0.0, w = 1.0) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + } + Set(x, y, z, w) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + this.z = other.z; + this.w = other.w; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + if (this.z !== other.z) { + return false; + } + if (this.w !== other.w) { + return false; + } + return true; + } +} +ImVec4.ZERO = new ImVec4(0.0, 0.0, 0.0, 0.0); +ImVec4.UNIT = new ImVec4(1.0, 1.0, 1.0, 1.0); +ImVec4.UNIT_X = new ImVec4(1.0, 0.0, 0.0, 0.0); +ImVec4.UNIT_Y = new ImVec4(0.0, 1.0, 0.0, 0.0); +ImVec4.UNIT_Z = new ImVec4(0.0, 0.0, 1.0, 0.0); +ImVec4.UNIT_W = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.BLACK = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.WHITE = new ImVec4(1.0, 1.0, 1.0, 1.0); +//----------------------------------------------------------------------------- +// Helpers +//----------------------------------------------------------------------------- +// Lightweight std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug). +// Our implementation does NOT call C++ constructors/destructors. This is intentional and we do not require it. Do not use this class as a straight std::vector replacement in your code! +class ImVector extends Array { + constructor() { + super(...arguments); + this.Data = this; + // public: + // int Size; + // int Capacity; + // T* Data; + // typedef T value_type; + // typedef value_type* iterator; + // typedef const value_type* const_iterator; + // inline ImVector() { Size = Capacity = 0; Data = NULL; } + // inline ~ImVector() { if (Data) ImGui::MemFree(Data); } + // inline bool empty() const { return Size == 0; } + // inline int size() const { return Size; } + // inline int capacity() const { return Capacity; } + // inline value_type& operator[](int i) { IM_ASSERT(i < Size); return Data[i]; } + // inline const value_type& operator[](int i) const { IM_ASSERT(i < Size); return Data[i]; } + // inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } } + // inline iterator begin() { return Data; } + // inline const_iterator begin() const { return Data; } + // inline iterator end() { return Data + Size; } + // inline const_iterator end() const { return Data + Size; } + // inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; } + // inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; } + // inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; } + // inline int _grow_capacity(int size) const { int new_capacity = Capacity ? (Capacity + Capacity/2) : 8; return new_capacity > size ? new_capacity : size; } + // inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; } + // inline void resize(int new_size, const T& v){ if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) Data[n] = v; Size = new_size; } + // inline void reserve(int new_capacity) + // { + // if (new_capacity <= Capacity) + // return; + // T* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T)); + // if (Data) + // memcpy(new_data, Data, (size_t)Size * sizeof(T)); + // ImGui::MemFree(Data); + // Data = new_data; + // Capacity = new_capacity; + // } + // inline void push_back(const value_type& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); Data[Size++] = v; } + // inline void pop_back() { IM_ASSERT(Size > 0); Size--; } + // inline void push_front(const value_type& v) { if (Size == 0) push_back(v); else insert(Data, v); } + // inline iterator erase(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; } + // inline iterator erase(const_iterator it, const_iterator it_last){ IM_ASSERT(it >= Data && it < Data+Size && it_last > it && it_last <= Data+Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - count) * sizeof(value_type)); Size -= (int)count; return Data + off; } + // inline iterator erase_unsorted(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; if (it < Data+Size-1) memcpy(Data + off, Data + Size - 1, sizeof(value_type)); Size--; return Data + off; } + // inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= Data && it <= Data+Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; } + // inline bool contains(const value_type& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; } + } + get Size() { return this.length; } + empty() { return this.length === 0; } + clear() { this.length = 0; } + pop_back() { return this.pop(); } + push_back(value) { this.push(value); } +} +// Typically, 1 command = 1 GPU draw call (unless command is a callback) +// Pre 1.71 back-ends will typically ignore the VtxOffset/IdxOffset fields. When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset' +// is enabled, those fields allow us to render meshes larger than 64K vertices while keeping 16-bits indices. +class ImDrawCmd { + constructor(native) { + this.native = native; + // ImDrawCallback UserCallback; // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally. + this.UserCallback = null; // TODO + // void* UserCallbackData; // The draw callback code can access this. + this.UserCallbackData = null; // TODO + } + // unsigned int ElemCount; // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[]. + get ElemCount() { return this.native.ElemCount; } + // ImVec4 ClipRect; // Clipping rectangle (x1, y1, x2, y2) + get ClipRect() { return this.native.ClipRect; } + // ImTextureID TextureId; // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas. + get TextureId() { + return ImGuiContext.getTexture(this.native.TextureId); + } + // unsigned int VtxOffset; // Start offset in vertex buffer. Pre-1.71 or without ImGuiBackendFlags_RendererHasVtxOffset: always 0. With ImGuiBackendFlags_RendererHasVtxOffset: may be >0 to support meshes larger than 64K vertices with 16-bits indices. + get VtxOffset() { return this.native.VtxOffset; } + // unsigned int IdxOffset; // Start offset in index buffer. Always equal to sum of ElemCount drawn so far. + get IdxOffset() { return this.native.IdxOffset; } +} +// Vertex index +// (to allow large meshes with 16-bits indices: set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset in the renderer back-end) +// (to use 32-bits indices: override with '#define ImDrawIdx unsigned int' in imconfig.h) +// #ifndef ImDrawIdx +// typedef unsigned short ImDrawIdx; +// #endif +const ImDrawIdxSize = 2; // bind.ImDrawIdxSize; +// Vertex layout +// #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT +const ImDrawVertSize = 20; // bind.ImDrawVertSize; +const ImDrawVertPosOffset = 0; // bind.ImDrawVertPosOffset; +const ImDrawVertUVOffset = 8; // bind.ImDrawVertUVOffset; +const ImDrawVertColOffset = 16; // bind.ImDrawVertColOffset; +class ImDrawVert { + constructor(buffer, byteOffset = 0) { + this.pos = new Float32Array(buffer, byteOffset + bind.ImDrawVertPosOffset, 2); + this.uv = new Float32Array(buffer, byteOffset + bind.ImDrawVertUVOffset, 2); + this.col = new Uint32Array(buffer, byteOffset + bind.ImDrawVertColOffset, 1); + } +} +// Draw command list +// This is the low-level list of polygons that ImGui functions are filling. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering. +// Each ImGui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to access the current window draw list and draw custom primitives. +// You can interleave normal ImGui:: calls and adding primitives to the current draw list. +// All positions are generally in pixel coordinates (top-left at (0,0), bottom-right at io.DisplaySize), however you are totally free to apply whatever transformation matrix to want to the data (if you apply such transformation you'll want to apply it to ClipRect as well) +// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects. +class ImDrawList { + constructor(native) { + this.native = native; + } + IterateDrawCmds(callback) { + this.native.IterateDrawCmds((draw_cmd, ElemStart) => { + callback(new ImDrawCmd(draw_cmd), ElemStart); + }); + } + // This is what you have to render + // ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback. + // ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those + get IdxBuffer() { return this.native.IdxBuffer; } + // ImVector VtxBuffer; // Vertex buffer. + get VtxBuffer() { return this.native.VtxBuffer; } + // ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive. + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // [Internal, used while building lists] + // const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context) + // const char* _OwnerName; // Pointer to owner window's name for debugging + // unsigned int _VtxCurrentIdx; // [Internal] == VtxBuffer.Size + // ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImVector _ClipRectStack; // [Internal] + // ImVector _TextureIdStack; // [Internal] + // ImVector _Path; // [Internal] current path building + // int _ChannelsCurrent; // [Internal] current channel number (0) + // int _ChannelsCount; // [Internal] number of active channels (1+) + // ImVector _Channels; // [Internal] draw channels for columns API (not resized down so _ChannelsCount may be smaller than _Channels.Size) + // ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clear(); } + // ~ImDrawList() { ClearFreeMemory(); } + // IMGUI_API void PushClipRect(ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling) + PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect = false) { + this.native.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect); + } + // IMGUI_API void PushClipRectFullScreen(); + PushClipRectFullScreen() { this.native.PushClipRectFullScreen(); } + // IMGUI_API void PopClipRect(); + PopClipRect() { this.native.PopClipRect(); } + // IMGUI_API void PushTextureID(ImTextureID texture_id); + PushTextureID(texture_id) { + this.native.PushTextureID(ImGuiContext.setTexture(texture_id)); + } + // IMGUI_API void PopTextureID(); + PopTextureID() { this.native.PopTextureID(); } + // inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); } + GetClipRectMin(out = new ImVec2()) { + return this.native.GetClipRectMin(out); + } + // inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); } + GetClipRectMax(out = new ImVec2()) { + return this.native.GetClipRectMax(out); + } + // Primitives + // IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness = 1.0f); + AddLine(a, b, col, thickness = 1.0) { + this.native.AddLine(a, b, col, thickness); + } + // IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All, float thickness = 1.0f); // a: upper-left, b: lower-right, rounding_corners_flags: 4-bits corresponding to which corner to round + AddRect(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All, thickness = 1.0) { + this.native.AddRect(a, b, col, rounding, rounding_corners_flags, thickness); + } + // IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); // a: upper-left, b: lower-right + AddRectFilled(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { + this.native.AddRectFilled(a, b, col, rounding, rounding_corners_flags); + } + // IMGUI_API void AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left); + AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left) { + this.native.AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left); + } + // IMGUI_API void AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness = 1.0f); + AddQuad(a, b, c, d, col, thickness = 1.0) { + this.native.AddQuad(a, b, c, d, col, thickness); + } + // IMGUI_API void AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col); + AddQuadFilled(a, b, c, d, col) { + this.native.AddQuadFilled(a, b, c, d, col); + } + // IMGUI_API void AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness = 1.0f); + AddTriangle(a, b, c, col, thickness = 1.0) { + this.native.AddTriangle(a, b, c, col, thickness); + } + // IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col); + AddTriangleFilled(a, b, c, col) { + this.native.AddTriangleFilled(a, b, c, col); + } + // IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f); + AddCircle(centre, radius, col, num_segments = 12, thickness = 1.0) { + this.native.AddCircle(centre, radius, col, num_segments, thickness); + } + // IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12); + AddCircleFilled(centre, radius, col, num_segments = 12) { + this.native.AddCircleFilled(centre, radius, col, num_segments); + } + AddText(...args) { + if (args[0] instanceof ImFont) { + const font = args[0]; + const font_size = args[1]; + const pos = args[2]; + const col = args[3]; + const text_begin = args[4]; + const text_end = args[5] || null; + const wrap_width = args[6] = 0.0; + const cpu_fine_clip_rect = args[7] || null; + this.native.AddText_B(font.native, font_size, pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin, wrap_width, cpu_fine_clip_rect); + } + else { + const pos = args[0]; + const col = args[1]; + const text_begin = args[2]; + const text_end = args[3] || null; + this.native.AddText_A(pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin); + } + } + // IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,1), ImU32 col = 0xFFFFFFFF); + AddImage(user_texture_id, a, b, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT, col = 0xFFFFFFFF) { + this.native.AddImage(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col); + } + // IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,0), const ImVec2& uv_c = ImVec2(1,1), const ImVec2& uv_d = ImVec2(0,1), ImU32 col = 0xFFFFFFFF); + AddImageQuad(user_texture_id, a, b, c, d, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT_X, uv_c = ImVec2.UNIT, uv_d = ImVec2.UNIT_Y, col = 0xFFFFFFFF) { + this.native.AddImageQuad(ImGuiContext.setTexture(user_texture_id), a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); + } + // IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col, float rounding, int rounding_corners = ImDrawCornerFlags_All); + AddImageRounded(user_texture_id, a, b, uv_a, uv_b, col, rounding, rounding_corners = ImDrawCornerFlags.All) { + this.native.AddImageRounded(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col, rounding, rounding_corners); + } + // IMGUI_API void AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness); + AddPolyline(points, num_points, col, closed, thickness) { + this.native.AddPolyline(points, num_points, col, closed, thickness); + } + // IMGUI_API void AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col); + AddConvexPolyFilled(points, num_points, col) { + this.native.AddConvexPolyFilled(points, num_points, col); + } + // IMGUI_API void AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments = 0); + AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness = 1.0, num_segments = 0) { + this.native.AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments); + } + // Stateful path API, add points then finish with PathFill() or PathStroke() + // inline void PathClear() { _Path.resize(0); } + PathClear() { this.native.PathClear(); } + // inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); } + PathLineTo(pos) { this.native.PathLineTo(pos); } + // inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path[_Path.Size-1], &pos, 8) != 0) _Path.push_back(pos); } + PathLineToMergeDuplicate(pos) { this.native.PathLineToMergeDuplicate(pos); } + // inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); PathClear(); } + PathFillConvex(col) { this.native.PathFillConvex(col); } + // inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness); PathClear(); } + PathStroke(col, closed, thickness = 1.0) { this.native.PathStroke(col, closed, thickness); } + // IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_segments = 10); + PathArcTo(centre, radius, a_min, a_max, num_segments = 10) { this.native.PathArcTo(centre, radius, a_min, a_max, num_segments); } + // IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle + PathArcToFast(centre, radius, a_min_of_12, a_max_of_12) { this.native.PathArcToFast(centre, radius, a_min_of_12, a_max_of_12); } + // IMGUI_API void PathBezierCurveTo(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, int num_segments = 0); + PathBezierCurveTo(p1, p2, p3, num_segments = 0) { this.native.PathBezierCurveTo(p1, p2, p3, num_segments); } + // IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); + PathRect(rect_min, rect_max, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { this.native.PathRect(rect_min, rect_max, rounding, rounding_corners_flags); } + // Channels + // - Use to simulate layers. By switching channels to can render out-of-order (e.g. submit foreground primitives before background primitives) + // - Use to minimize draw calls (e.g. if going back-and-forth between multiple non-overlapping clipping rectangles, prefer to append into separate channels then merge at the end) + // IMGUI_API void ChannelsSplit(int channels_count); + ChannelsSplit(channels_count) { this.native.ChannelsSplit(channels_count); } + // IMGUI_API void ChannelsMerge(); + ChannelsMerge() { this.native.ChannelsMerge(); } + // IMGUI_API void ChannelsSetCurrent(int channel_index); + ChannelsSetCurrent(channel_index) { this.native.ChannelsSetCurrent(channel_index); } + // Advanced + // IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles. + AddCallback(callback, callback_data) { + const _callback = (parent_list, draw_cmd) => { + callback(new ImDrawList(parent_list), new ImDrawCmd(draw_cmd)); + }; + this.native.AddCallback(_callback, callback_data); + } + // IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible + AddDrawCmd() { this.native.AddDrawCmd(); } + // Internal helpers + // NB: all primitives needs to be reserved via PrimReserve() beforehand! + // IMGUI_API void Clear(); + Clear() { this.native.Clear(); } + // IMGUI_API void ClearFreeMemory(); + ClearFreeMemory() { this.native.ClearFreeMemory(); } + // IMGUI_API void PrimReserve(int idx_count, int vtx_count); + PrimReserve(idx_count, vtx_count) { this.native.PrimReserve(idx_count, vtx_count); } + // IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles) + PrimRect(a, b, col) { this.native.PrimRect(a, b, col); } + // IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col); + PrimRectUV(a, b, uv_a, uv_b, col) { this.native.PrimRectUV(a, b, uv_a, uv_b, col); } + // IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col); + PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col) { this.native.PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); } + // inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; } + PrimWriteVtx(pos, uv, col) { this.native.PrimWriteVtx(pos, uv, col); } + // inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; } + PrimWriteIdx(idx) { this.native.PrimWriteIdx(idx); } + // inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); } + PrimVtx(pos, uv, col) { this.native.PrimVtx(pos, uv, col); } + // IMGUI_API void UpdateClipRect(); + UpdateClipRect() { this.native.UpdateClipRect(); } + // IMGUI_API void UpdateTextureID(); + UpdateTextureID() { this.native.UpdateTextureID(); } +} +// All draw data to render an ImGui frame +class ImDrawData { + constructor(native) { + this.native = native; + } + IterateDrawLists(callback) { + this.native.IterateDrawLists((draw_list) => { + callback(new ImDrawList(draw_list)); + }); + } + // bool Valid; // Only valid after Render() is called and before the next NewFrame() is called. + get Valid() { return this.native.Valid; } + // ImDrawList** CmdLists; + // int CmdListsCount; + get CmdListsCount() { return this.native.CmdListsCount; } + // int TotalIdxCount; // For convenience, sum of all cmd_lists idx_buffer.Size + get TotalIdxCount() { return this.native.TotalIdxCount; } + // int TotalVtxCount; // For convenience, sum of all cmd_lists vtx_buffer.Size + get TotalVtxCount() { return this.native.TotalVtxCount; } + // ImVec2 DisplayPos; // Upper-left position of the viewport to render (== upper-left of the orthogonal projection matrix to use) + get DisplayPos() { return this.native.DisplayPos; } + // ImVec2 DisplaySize; // Size of the viewport to render (== io.DisplaySize for the main viewport) (DisplayPos + DisplaySize == lower-right of the orthogonal projection matrix to use) + get DisplaySize() { return this.native.DisplaySize; } + // ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display. + get FramebufferScale() { return this.native.FramebufferScale; } + // Functions + // ImDrawData() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCount = 0; } + // IMGUI_API void DeIndexAllBuffers(); // For backward compatibility or convenience: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering! + DeIndexAllBuffers() { this.native.DeIndexAllBuffers(); } + // IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than ImGui expects, or if there is a difference between your window resolution and framebuffer resolution. + ScaleClipRects(fb_scale) { + this.native.ScaleClipRects(fb_scale); + } +} +class script_ImFontConfig { + constructor() { + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + this.FontData = null; + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + this.FontDataOwnedByAtlas = true; + // int FontNo; // 0 // Index of font within TTF/OTF file + this.FontNo = 0; + // float SizePixels; // // Size in pixels for rasterizer. + this.SizePixels = 0; + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + this.OversampleH = 3; + this.OversampleV = 1; + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + this.PixelSnapH = false; + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + this.GlyphExtraSpacing = new ImVec2(0, 0); + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + this.GlyphOffset = new ImVec2(0, 0); + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + this.GlyphRanges = null; + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + this.GlyphMinAdvanceX = 0; + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + this.GlyphMaxAdvanceX = Number.MAX_VALUE; + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + this.MergeMode = false; + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + this.RasterizerFlags = 0; + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + this.RasterizerMultiply = 1.0; + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + this.Name = ""; + // ImFont* DstFont; + this.DstFont = null; + // IMGUI_API ImFontConfig(); + } +} +class ImFontConfig { + constructor(internal = new script_ImFontConfig()) { + this.internal = internal; + } + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + get FontData() { return this.internal.FontData; } + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + get FontDataOwnedByAtlas() { return this.internal.FontDataOwnedByAtlas; } + // int FontNo; // 0 // Index of font within TTF/OTF file + get FontNo() { return this.internal.FontNo; } + // float SizePixels; // // Size in pixels for rasterizer. + get SizePixels() { return this.internal.SizePixels; } + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + get OversampleH() { return this.internal.OversampleH; } + get OversampleV() { return this.internal.OversampleV; } + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + get PixelSnapH() { return this.internal.PixelSnapH; } + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + get GlyphExtraSpacing() { return this.internal.GlyphExtraSpacing; } + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + get GlyphOffset() { return this.internal.GlyphOffset; } + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + get GlyphRanges() { return this.internal.GlyphRanges; } + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + get GlyphMinAdvanceX() { return this.internal.GlyphMinAdvanceX; } + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + get GlyphMaxAdvanceX() { return this.internal.GlyphMaxAdvanceX; } + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + get MergeMode() { return this.internal.MergeMode; } + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + get RasterizerFlags() { return this.internal.RasterizerFlags; } + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + get RasterizerMultiply() { return this.internal.RasterizerMultiply; } + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + get Name() { return this.internal.Name; } + set Name(value) { this.internal.Name = value; } + // ImFont* DstFont; + get DstFont() { + const font = this.internal.DstFont; + return font && new ImFont(font); + } +} +// struct ImFontGlyph +class script_ImFontGlyph { + constructor() { + // ImWchar Codepoint; // 0x0000..0xFFFF + this.Codepoint = 0; + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + this.AdvanceX = 0.0; + // float X0, Y0, X1, Y1; // Glyph corners + this.X0 = 0.0; + this.Y0 = 0.0; + this.X1 = 1.0; + this.Y1 = 1.0; + // float U0, V0, U1, V1; // Texture coordinates + this.U0 = 0.0; + this.V0 = 0.0; + this.U1 = 1.0; + this.V1 = 1.0; + } +} +class ImFontGlyph { + constructor(internal = new script_ImFontGlyph()) { + this.internal = internal; + } + // ImWchar Codepoint; // 0x0000..0xFFFF + get Codepoint() { return this.internal.Codepoint; } + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + get AdvanceX() { return this.internal.AdvanceX; } + ; + // float X0, Y0, X1, Y1; // Glyph corners + get X0() { return this.internal.X0; } + ; + get Y0() { return this.internal.Y0; } + ; + get X1() { return this.internal.X1; } + ; + get Y1() { return this.internal.Y1; } + ; + // float U0, V0, U1, V1; // Texture coordinates + get U0() { return this.internal.U0; } + ; + get V0() { return this.internal.V0; } + ; + get U1() { return this.internal.U1; } + ; + get V1() { return this.internal.V1; } + ; +} +var ImFontAtlasFlags; +(function (ImFontAtlasFlags) { + ImFontAtlasFlags[ImFontAtlasFlags["None"] = 0] = "None"; + ImFontAtlasFlags[ImFontAtlasFlags["NoPowerOfTwoHeight"] = 1] = "NoPowerOfTwoHeight"; + ImFontAtlasFlags[ImFontAtlasFlags["NoMouseCursors"] = 2] = "NoMouseCursors"; +})(ImFontAtlasFlags || (ImFontAtlasFlags = {})); +// Load and rasterize multiple TTF/OTF fonts into a same texture. +// Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering. +// We also add custom graphic data into the texture that serves for ImGui. +// 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you. +// 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data. +// 3. Upload the pixels data into a texture within your graphics system. +// 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture. +// IMPORTANT: If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the ImFont is build (when calling GetTextData*** or Build()). We only copy the pointer, not the data. +class ImFontAtlas { + constructor(native) { + this.native = native; + } + // IMGUI_API ImFontAtlas(); + // IMGUI_API ~ImFontAtlas(); + // IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg); + // IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL); + AddFontDefault(font_cfg = null) { + return new ImFont(this.native.AddFontDefault(font_cfg)); + } + // IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); + // IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after Build(). Set font_cfg->FontDataOwnedByAtlas to false to keep ownership. + AddFontFromMemoryTTF(data, size_pixels, font_cfg = null, glyph_ranges = null) { + return new ImFont(this.native.AddFontFromMemoryTTF(new Uint8Array(data), size_pixels, font_cfg && font_cfg.internal, glyph_ranges)); + } + // IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp. + // IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter. + // IMGUI_API void ClearTexData(); // Clear the CPU-side texture data. Saves RAM once the texture has been copied to graphics memory. + ClearTexData() { this.native.ClearTexData(); } + // IMGUI_API void ClearInputData(); // Clear the input TTF data (inc sizes, glyph ranges) + ClearInputData() { this.native.ClearInputData(); } + // IMGUI_API void ClearFonts(); // Clear the ImGui-side font data (glyphs storage, UV coordinates) + ClearFonts() { this.native.ClearFonts(); } + // IMGUI_API void Clear(); // Clear all + Clear() { this.native.Clear(); } + // Build atlas, retrieve pixel data. + // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID(). + // RGBA32 format is provided for convenience and compatibility, but note that unless you use CustomRect to draw color data, the RGB pixels emitted from Fonts will all be white (~75% of waste). + // Pitch = Width * BytesPerPixels + // IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions. + Build() { return this.native.Build(); } + // IMGUI_API bool IsBuilt() { return Fonts.Size > 0 && (TexPixelsAlpha8 != NULL || TexPixelsRGBA32 != NULL); } + IsBuilt() { return this.native.IsBuilt(); } + // IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel + GetTexDataAsAlpha8() { + return this.native.GetTexDataAsAlpha8(); + } + // IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel + GetTexDataAsRGBA32() { + return this.native.GetTexDataAsRGBA32(); + } + // void SetTexID(ImTextureID id) { TexID = id; } + SetTexID(id) { this.TexID = id; } + //------------------------------------------- + // Glyph Ranges + //------------------------------------------- + // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list) + // NB: Make sure that your string are UTF-8 and NOT in your local code page. In C++11, you can create UTF-8 string literal using the u8"Hello world" syntax. See FAQ for details. + // IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin + GetGlyphRangesDefault() { return this.native.GetGlyphRangesDefault(); } + // IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters + GetGlyphRangesKorean() { return this.native.GetGlyphRangesKorean(); } + // IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs + GetGlyphRangesJapanese() { return this.native.GetGlyphRangesJapanese(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs + GetGlyphRangesChineseFull() { return this.native.GetGlyphRangesChineseFull(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese + GetGlyphRangesChineseSimplifiedCommon() { return this.native.GetGlyphRangesChineseSimplifiedCommon(); } + // IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters + GetGlyphRangesCyrillic() { return this.native.GetGlyphRangesCyrillic(); } + // IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters + GetGlyphRangesThai() { return this.native.GetGlyphRangesThai(); } + // IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters + GetGlyphRangesVietnamese() { return this.native.GetGlyphRangesVietnamese(); } + // Helpers to build glyph ranges from text data. Feed your application strings/characters to it then call BuildRanges(). + // struct GlyphRangesBuilder + // { + // ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used) + // GlyphRangesBuilder() { UsedChars.resize(0x10000 / 8); memset(UsedChars.Data, 0, 0x10000 / 8); } + // bool GetBit(int n) const { return (UsedChars[n >> 3] & (1 << (n & 7))) != 0; } + // void SetBit(int n) { UsedChars[n >> 3] |= 1 << (n & 7); } // Set bit 'c' in the array + // void AddChar(ImWchar c) { SetBit(c); } // Add character + // IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added) + // IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault) to force add all of ASCII/Latin+Ext + // IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges + // }; + //------------------------------------------- + // Custom Rectangles/Glyphs API + //------------------------------------------- + // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. After calling Build(), you can query the rectangle position and render your pixels. + // You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs. + // struct CustomRect + // { + // unsigned int ID; // Input // User ID. Use <0x10000 to map into a font glyph, >=0x10000 for other/internal/custom texture data. + // unsigned short Width, Height; // Input // Desired rectangle dimension + // unsigned short X, Y; // Output // Packed position in Atlas + // float GlyphAdvanceX; // Input // For custom font glyphs only (ID<0x10000): glyph xadvance + // ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph display offset + // ImFont* Font; // Input // For custom font glyphs only (ID<0x10000): target font + // CustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); Font = NULL; } + // bool IsPacked() const { return X != 0xFFFF; } + // }; + // IMGUI_API int AddCustomRectRegular(unsigned int id, int width, int height); // Id needs to be >= 0x10000. Id >= 0x80000000 are reserved for ImGui and ImDrawList + // IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0,0)); // Id needs to be < 0x10000 to register a rectangle to map into a specific font. + // IMGUI_API void CalcCustomRectUV(const CustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max); + // const CustomRect* GetCustomRectByIndex(int index) const { if (index < 0) return NULL; return &CustomRects[index]; } + //------------------------------------------- + // Members + //------------------------------------------- + // bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert. + get Locked() { return this.native.Locked; } + set Locked(value) { this.native.Locked = value; } + // ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_) + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure. + get TexID() { + return ImGuiContext.getTexture(this.native.TexID); + } + set TexID(value) { + this.native.TexID = ImGuiContext.setTexture(value); + } + // int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height. + get TexDesiredWidth() { return this.native.TexDesiredWidth; } + set TexDesiredWidth(value) { this.native.TexDesiredWidth = value; } + // int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1. + get TexGlyphPadding() { return this.native.TexGlyphPadding; } + set TexGlyphPadding(value) { this.native.TexGlyphPadding = value; } + // [Internal] + // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you. + // unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight + // unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4 + // int TexWidth; // Texture width calculated during Build(). + get TexWidth() { return this.native.TexWidth; } + // int TexHeight; // Texture height calculated during Build(). + get TexHeight() { return this.native.TexHeight; } + // ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight) + get TexUvScale() { return this.native.TexUvScale; } + // ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel + get TexUvWhitePixel() { return this.native.TexUvWhitePixel; } + // ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font. + get Fonts() { + const fonts = new ImVector(); + this.native.IterateFonts((font) => { + fonts.push(new ImFont(font)); + }); + return fonts; + } +} +// Font runtime data and rendering +// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32(). +class ImFont { + constructor(native) { + this.native = native; + } + // Members: Hot ~62/78 bytes + // float FontSize; // // Height of characters, set during loading (don't change after loading) + get FontSize() { return this.native.FontSize; } + // float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale() + get Scale() { return this.native.Scale; } + set Scale(value) { this.native.Scale = value; } + // ImVec2 DisplayOffset; // = (0.f,1.f) // Offset font rendering by xx pixels + get DisplayOffset() { return this.native.DisplayOffset; } + // ImVector Glyphs; // // All glyphs. + get Glyphs() { + const glyphs = new ImVector(); + this.native.IterateGlyphs((glyph) => { + glyphs.push(new ImFontGlyph(glyph)); // TODO: wrap native + }); + return glyphs; + } + // ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI). + // get IndexAdvanceX(): any { return this.native.IndexAdvanceX; } + // ImVector IndexLookup; // // Sparse. Index glyphs by Unicode code-point. + // get IndexLookup(): any { return this.native.IndexLookup; } + // const ImFontGlyph* FallbackGlyph; // == FindGlyph(FontFallbackChar) + get FallbackGlyph() { + const glyph = this.native.FallbackGlyph; + return glyph && new ImFontGlyph(glyph); + } + set FallbackGlyph(value) { + this.native.FallbackGlyph = value && value.internal; + } + // float FallbackAdvanceX; // == FallbackGlyph->AdvanceX + get FallbackAdvanceX() { return this.native.FallbackAdvanceX; } + // ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found. Only set via SetFallbackChar() + get FallbackChar() { return this.native.FallbackChar; } + // Members: Cold ~18/26 bytes + // short ConfigDataCount; // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont. + get ConfigDataCount() { return this.ConfigData.length; } + // ImFontConfig* ConfigData; // // Pointer within ContainerAtlas->ConfigData + get ConfigData() { + const cfg_data = []; + this.native.IterateConfigData((cfg) => { + cfg_data.push(new ImFontConfig(cfg)); + }); + return cfg_data; + } + // ImFontAtlas* ContainerAtlas; // // What we has been loaded into + get ContainerAtlas() { return null; } + // float Ascent, Descent; // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize] + get Ascent() { return this.native.Ascent; } + get Descent() { return this.native.Descent; } + // int MetricsTotalSurface;// // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs) + get MetricsTotalSurface() { return this.native.MetricsTotalSurface; } + // Methods + // IMGUI_API ImFont(); + // IMGUI_API ~ImFont(); + // IMGUI_API void ClearOutputData(); + ClearOutputData() { return this.native.ClearOutputData(); } + // IMGUI_API void BuildLookupTable(); + BuildLookupTable() { return this.native.BuildLookupTable(); } + // IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const; + FindGlyph(c) { + const glyph = this.native.FindGlyph(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const; + FindGlyphNoFallback(c) { + const glyph = this.native.FindGlyphNoFallback(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API void SetFallbackChar(ImWchar c); + SetFallbackChar(c) { return this.native.SetFallbackChar(c); } + // float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; } + GetCharAdvance(c) { return this.native.GetCharAdvance(c); } + // bool IsLoaded() const { return ContainerAtlas != NULL; } + IsLoaded() { return this.native.IsLoaded(); } + // const char* GetDebugName() const { return ConfigData ? ConfigData->Name : ""; } + GetDebugName() { return this.native.GetDebugName(); } + // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable. + // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable. + // IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8 + CalcTextSizeA(size, max_width, wrap_width, text_begin, text_end = null, remaining = null) { + return this.native.CalcTextSizeA(size, max_width, wrap_width, text_end !== null ? text_begin.substring(0, text_end) : text_begin, remaining, new ImVec2()); + } + // IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const; + CalcWordWrapPositionA(scale, text, text_end = null, wrap_width) { + return this.native.CalcWordWrapPositionA(scale, text_end !== null ? text.substring(0, text_end) : text, wrap_width); + } + // IMGUI_API void RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, unsigned short c) const; + RenderChar(draw_list, size, pos, col, c) { + this.native.RenderChar(draw_list.native, size, pos, col, c); + } + // IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const; + RenderText(draw_list, size, pos, col, clip_rect, text_begin, text_end = null, wrap_width = 0.0, cpu_fine_clip = false) { } +} +// This is where your app communicate with Dear ImGui. Access via ImGui::GetIO(). +// Read 'Programmer guide' section in .cpp file for general usage. +class ImGuiIO { + constructor(native) { + this.native = native; + // int KeyMap[ImGuiKey_COUNT]; // // Map of indices into the KeysDown[512] entries array + this.KeyMap = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiKey.COUNT; + } + return this.native._getAt_KeyMap(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeyMap(Number(key), value); + }, + }); + // bool MouseDown[5]; // Mouse buttons: left, right, middle + extras. ImGui itself mostly only uses left button (BeginPopupContext** are using right button). Others buttons allows us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API. + this.MouseDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_MouseDown(Number(key), value); + }, + }); + // bool KeysDown[512]; // Keyboard keys that are pressed (in whatever storage order you naturally have access to keyboard data) + this.KeysDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeysDown(Number(key), value); + }, + }); + // float NavInputs[ImGuiNavInput_COUNT]; // Gamepad inputs (keyboard keys will be auto-mapped and be written here by ImGui::NewFrame) + this.NavInputs = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputs(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_NavInputs(Number(key), value); + }, + }); + //------------------------------------------------------------------ + // [Internal] ImGui will maintain those fields. Forward compatibility not guaranteed! + //------------------------------------------------------------------ + // ImVec2 MousePosPrev; // Previous mouse position temporary storage (nb: not for public use, set to MousePos in NewFrame()) + // ImVec2 MouseClickedPos[5]; // Position at time of clicking + this.MouseClickedPos = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseClickedPos(Number(key)); + }, + }); + // float MouseClickedTime[5]; // Time of last click (used to figure out double-click) + // bool MouseClicked[5]; // Mouse button went from !Down to Down + // bool MouseDoubleClicked[5]; // Has mouse button been double-clicked? + // bool MouseReleased[5]; // Mouse button went from Down to !Down + // bool MouseDownOwned[5]; // Track if button was clicked inside a window. We don't request mouse capture from the application if click started outside ImGui bounds. + // float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked) + this.MouseDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDownDuration(Number(key)); + }, + }); + // float MouseDownDurationPrev[5]; // Previous time the mouse button has been down + // ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point + // float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point + // float KeysDownDuration[512]; // Duration the keyboard key has been down (0.0f == just pressed) + this.KeysDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDownDuration(Number(key)); + }, + }); + // float KeysDownDurationPrev[512]; // Previous duration the key has been down + // float NavInputsDownDuration[ImGuiNavInput_COUNT]; + this.NavInputsDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputsDownDuration(Number(key)); + }, + }); + } + //------------------------------------------------------------------ + // Settings (fill once) // Default value: + //------------------------------------------------------------------ + // ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc. + get ConfigFlags() { return this.native.ConfigFlags; } + set ConfigFlags(value) { this.native.ConfigFlags = value; } + // ImGuiBackendFlags BackendFlags; // = 0 // Set ImGuiBackendFlags_ enum. Set by imgui_impl_xxx files or custom back-end to communicate features supported by the back-end. + get BackendFlags() { return this.native.BackendFlags; } + set BackendFlags(value) { this.native.BackendFlags = value; } + // ImVec2 DisplaySize; // // Display size, in pixels. For clamping windows positions. + get DisplaySize() { return this.native.DisplaySize; } + // float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds. + get DeltaTime() { return this.native.DeltaTime; } + set DeltaTime(value) { this.native.DeltaTime = value; } + // float IniSavingRate; // = 5.0f // Maximum time between saving positions/sizes to .ini file, in seconds. + get IniSavingRate() { return this.native.IniSavingRate; } + set IniSavingRate(value) { this.native.IniSavingRate = value; } + // const char* IniFilename; // = "imgui.ini" // Path to .ini file. NULL to disable .ini saving. + get IniFilename() { return this.native.IniFilename; } + set IniFilename(value) { this.native.IniFilename = value; } + // const char* LogFilename; // = "imgui_log.txt" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified). + get LogFilename() { return this.native.LogFilename; } + set LogFilename(value) { this.native.LogFilename = value; } + // float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds. + get MouseDoubleClickTime() { return this.native.MouseDoubleClickTime; } + set MouseDoubleClickTime(value) { this.native.MouseDoubleClickTime = value; } + // float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels. + get MouseDoubleClickMaxDist() { return this.native.MouseDoubleClickMaxDist; } + set MouseDoubleClickMaxDist(value) { this.native.MouseDoubleClickMaxDist = value; } + // float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging + get MouseDragThreshold() { return this.native.MouseDragThreshold; } + set MouseDragThreshold(value) { this.native.MouseDragThreshold = value; } + // float KeyRepeatDelay; // = 0.250f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.). + get KeyRepeatDelay() { return this.native.KeyRepeatDelay; } + set KeyRepeatDelay(value) { this.native.KeyRepeatDelay = value; } + // float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds. + get KeyRepeatRate() { return this.native.KeyRepeatRate; } + set KeyRepeatRate(value) { this.native.KeyRepeatRate = value; } + // void* UserData; // = NULL // Store your own data for retrieval by callbacks. + get UserData() { return this.native.UserData; } + set UserData(value) { this.native.UserData = value; } + // ImFontAtlas* Fonts; // // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array. + get Fonts() { return new ImFontAtlas(this.native.Fonts); } + // float FontGlobalScale; // = 1.0f // Global scale all fonts + get FontGlobalScale() { return this.native.FontGlobalScale; } + set FontGlobalScale(value) { this.native.FontGlobalScale = value; } + // bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel. + get FontAllowUserScaling() { return this.native.FontAllowUserScaling; } + set FontAllowUserScaling(value) { this.native.FontAllowUserScaling = value; } + // ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0]. + get FontDefault() { + const font = this.native.FontDefault; + return (font === null) ? null : new ImFont(font); + } + set FontDefault(value) { + this.native.FontDefault = value && value.native; + } + // ImVec2 DisplayFramebufferScale; // = (1.0f,1.0f) // For retina display or other situations where window coordinates are different from framebuffer coordinates. User storage only, presently not used by ImGui. + get DisplayFramebufferScale() { return this.native.DisplayFramebufferScale; } + // Miscellaneous configuration options + // bool OptMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl + get ConfigMacOSXBehaviors() { return this.native.ConfigMacOSXBehaviors; } + set ConfigMacOSXBehaviors(value) { this.native.ConfigMacOSXBehaviors = value; } + // bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor, for users who consider it annoying. + get ConfigInputTextCursorBlink() { return this.native.ConfigInputTextCursorBlink; } + set ConfigInputTextCursorBlink(value) { this.native.ConfigInputTextCursorBlink = value; } + // bool ConfigWindowsResizeFromEdges; // = false // [BETA] Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be the ImGuiWindowFlags_ResizeFromAnySide flag) + get ConfigWindowsResizeFromEdges() { return this.native.ConfigWindowsResizeFromEdges; } + set ConfigWindowsResizeFromEdges(value) { this.native.ConfigWindowsResizeFromEdges = value; } + // bool ConfigWindowsMoveFromTitleBarOnly;// = false // [BETA] Set to true to only allow moving windows when clicked+dragged from the title bar. Windows without a title bar are not affected. + get ConfigWindowsMoveFromTitleBarOnly() { return this.native.ConfigWindowsMoveFromTitleBarOnly; } + set ConfigWindowsMoveFromTitleBarOnly(value) { this.native.ConfigWindowsMoveFromTitleBarOnly = value; } + //------------------------------------------------------------------ + // Settings (User Functions) + //------------------------------------------------------------------ + // Optional: Platform/Renderer back-end name (informational only! will be displayed in About Window) + User data for back-end/wrappers to store their own stuff. + // const char* BackendPlatformName; // = NULL + get BackendPlatformName() { return this.native.BackendPlatformName; } + set BackendPlatformName(value) { this.native.BackendPlatformName = value; } + // const char* BackendRendererName; // = NULL + get BackendRendererName() { return this.native.BackendRendererName; } + set BackendRendererName(value) { this.native.BackendRendererName = value; } + // void* BackendPlatformUserData; // = NULL + get BackendPlatformUserData() { return this.native.BackendPlatformUserData; } + set BackendPlatformUserData(value) { this.native.BackendPlatformUserData = value; } + // void* BackendRendererUserData; // = NULL + get BackendRendererUserData() { return this.native.BackendRendererUserData; } + set BackendRendererUserData(value) { this.native.BackendRendererUserData = value; } + // void* BackendLanguageUserData; // = NULL + get BackendLanguageUserData() { return this.native.BackendLanguageUserData; } + set BackendLanguageUserData(value) { this.native.BackendLanguageUserData = value; } + // Optional: access OS clipboard + // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures) + // const char* (*GetClipboardTextFn)(void* user_data); + get GetClipboardTextFn() { return this.native.GetClipboardTextFn; } + set GetClipboardTextFn(value) { this.native.GetClipboardTextFn = value; } + // void (*SetClipboardTextFn)(void* user_data, const char* text); + get SetClipboardTextFn() { return this.native.SetClipboardTextFn; } + set SetClipboardTextFn(value) { this.native.SetClipboardTextFn = value; } + // void* ClipboardUserData; + get ClipboardUserData() { return this.native.ClipboardUserData; } + set ClipboardUserData(value) { this.native.ClipboardUserData = value; } + // Optional: override memory allocations. MemFreeFn() may be called with a NULL pointer. + // (default to posix malloc/free) + // void* (*MemAllocFn)(size_t sz); + // void (*MemFreeFn)(void* ptr); + // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME in Windows) + // (default to use native imm32 api on Windows) + // void (*ImeSetInputScreenPosFn)(int x, int y); + // void* ImeWindowHandle; // (Windows) Set this to your HWND to get automatic IME cursor positioning. + //------------------------------------------------------------------ + // Input - Fill before calling NewFrame() + //------------------------------------------------------------------ + // ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX,-FLT_MAX) if mouse is unavailable (on another screen, etc.) + get MousePos() { return this.native.MousePos; } + // float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text. + get MouseWheel() { return this.native.MouseWheel; } + set MouseWheel(value) { this.native.MouseWheel = value; } + // float MouseWheelH; // Mouse wheel (Horizontal). Most users don't have a mouse with an horizontal wheel, may not be filled by all back-ends. + get MouseWheelH() { return this.native.MouseWheelH; } + set MouseWheelH(value) { this.native.MouseWheelH = value; } + // bool MouseDrawCursor; // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor). + get MouseDrawCursor() { return this.native.MouseDrawCursor; } + set MouseDrawCursor(value) { this.native.MouseDrawCursor = value; } + // bool KeyCtrl; // Keyboard modifier pressed: Control + get KeyCtrl() { return this.native.KeyCtrl; } + set KeyCtrl(value) { this.native.KeyCtrl = value; } + // bool KeyShift; // Keyboard modifier pressed: Shift + get KeyShift() { return this.native.KeyShift; } + set KeyShift(value) { this.native.KeyShift = value; } + // bool KeyAlt; // Keyboard modifier pressed: Alt + get KeyAlt() { return this.native.KeyAlt; } + set KeyAlt(value) { this.native.KeyAlt = value; } + // bool KeySuper; // Keyboard modifier pressed: Cmd/Super/Windows + get KeySuper() { return this.native.KeySuper; } + set KeySuper(value) { this.native.KeySuper = value; } + // Functions + // IMGUI_API void AddInputCharacter(ImWchar c); // Add new character into InputCharacters[] + AddInputCharacter(c) { this.native.AddInputCharacter(c); } + // IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Add new characters into InputCharacters[] from an UTF-8 string + AddInputCharactersUTF8(utf8_chars) { this.native.AddInputCharactersUTF8(utf8_chars); } + // inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Clear the text input buffer manually + ClearInputCharacters() { this.native.ClearInputCharacters(); } + //------------------------------------------------------------------ + // Output - Retrieve after calling NewFrame() + //------------------------------------------------------------------ + // bool WantCaptureMouse; // When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. This is set by ImGui when it wants to use your mouse (e.g. unclicked mouse is hovering a window, or a widget is active). + get WantCaptureMouse() { return this.native.WantCaptureMouse; } + set WantCaptureMouse(value) { this.native.WantCaptureMouse = value; } + // bool WantCaptureKeyboard; // When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. This is set by ImGui when it wants to use your keyboard inputs. + get WantCaptureKeyboard() { return this.native.WantCaptureKeyboard; } + set WantCaptureKeyboard(value) { this.native.WantCaptureKeyboard = value; } + // bool WantTextInput; // Mobile/console: when io.WantTextInput is true, you may display an on-screen keyboard. This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active). + get WantTextInput() { return this.native.WantTextInput; } + set WantTextInput(value) { this.native.WantTextInput = value; } + // bool WantSetMousePos; // [BETA-NAV] MousePos has been altered, back-end should reposition mouse on next frame. Set only when 'NavMovesMouse=true'. + get WantSetMousePos() { return this.native.WantSetMousePos; } + set WantSetMousePos(value) { this.native.WantSetMousePos = value; } + // bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. IMPORTANT: You need to clear io.WantSaveIniSettings yourself. + get WantSaveIniSettings() { return this.native.WantSaveIniSettings; } + set WantSaveIniSettings(value) { this.native.WantSaveIniSettings = value; } + // bool NavActive; // Directional navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag. + get NavActive() { return this.native.NavActive; } + set NavActive(value) { this.native.NavActive = value; } + // bool NavVisible; // Directional navigation is visible and allowed (will handle ImGuiKey_NavXXX events). + get NavVisible() { return this.native.NavVisible; } + set NavVisible(value) { this.native.NavVisible = value; } + // float Framerate; // Application framerate estimation, in frame per second. Solely for convenience. Rolling average estimation based on IO.DeltaTime over 120 frames + get Framerate() { return this.native.Framerate; } + // int MetricsRenderVertices; // Vertices output during last call to Render() + get MetricsRenderVertices() { return this.native.MetricsRenderVertices; } + // int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3 + get MetricsRenderIndices() { return this.native.MetricsRenderIndices; } + // int MetricsRenderWindows; // Number of visible windows + get MetricsRenderWindows() { return this.native.MetricsRenderWindows; } + // int MetricsActiveWindows; // Number of visible root windows (exclude child windows) + get MetricsActiveWindows() { return this.native.MetricsActiveWindows; } + // int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts. + get MetricsActiveAllocations() { return this.native.MetricsActiveAllocations; } + // ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta. + get MouseDelta() { return this.native.MouseDelta; } +} +const _texturesById = []; +// Context creation and access, if you want to use multiple context, share context between modules (e.g. DLL). +// All contexts share a same ImFontAtlas by default. If you want different font atlas, you can new() them and overwrite the GetIO().Fonts variable of an ImGui context. +// All those functions are not reliant on the current context. +class ImGuiContext { + constructor(native) { + this.native = native; + } + static getTexture(index) { + return _texturesById[index] || null; + } + static setTexture(texture) { + let index = _texturesById.indexOf(texture); + if (index === -1) { + for (let i = 0; i < _texturesById.length; ++i) { + if (_texturesById[i] === null) { + _texturesById[i] = texture; + return i; + } + } + index = _texturesById.length; + _texturesById.push(texture); + } + return index; + } +} +ImGuiContext.current_ctx = null; +// IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL); +function CreateContext(shared_font_atlas = null) { + const ctx = new ImGuiContext(bind.CreateContext(shared_font_atlas ? shared_font_atlas.native : null)); + if (ImGuiContext.current_ctx === null) { + ImGuiContext.current_ctx = ctx; + } + return ctx; +} +// IMGUI_API void SetCurrentContext(ImGuiContext* ctx); +function SetCurrentContext(ctx) { + bind.SetCurrentContext((ctx === null) ? null : ctx.native); + ImGuiContext.current_ctx = ctx; +} +// IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert); +function DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx) { + return bind.DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx); +} +// Main +// IMGUI_API ImGuiIO& GetIO(); +function GetIO() { return new ImGuiIO(bind.GetIO()); } +// IMGUI_API void NewFrame(); // start a new ImGui frame, you can submit any command from this point until Render()/EndFrame(). +function NewFrame() { bind.NewFrame(); } +// IMGUI_API void EndFrame(); // ends the ImGui frame. automatically called by Render(), so most likely don't need to ever call that yourself directly. If you don't need to render you may call EndFrame() but you'll have wasted CPU already. If you don't need to render, better to not create any imgui windows instead! +function EndFrame() { bind.EndFrame(); } +// IMGUI_API void Render(); // ends the ImGui frame, finalize the draw data, then call your io.RenderDrawListsFn() function if set. +function Render() { bind.Render(); } +// IMGUI_API ImDrawData* GetDrawData(); // same value as passed to your io.RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame() +function GetDrawData() { + const draw_data = bind.GetDrawData(); + return (draw_data === null) ? null : new ImDrawData(draw_data); +} +// IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you +function GetMouseCursor() { return bind.GetMouseCursor(); } +// IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source. +function LoadIniSettingsFromMemory(ini_data, ini_size = 0) { bind.LoadIniSettingsFromMemory(ini_data); } +// IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings. +function SaveIniSettingsToMemory(out_ini_size = null) { return bind.SaveIniSettingsToMemory(); } + +var promise = createCommonjsModule(function (module, exports) { +(function(global){ + +// +// Check for native Promise and it has correct interface +// + +var NativePromise = global['Promise']; +var nativePromiseSupported = + NativePromise && + // Some of these methods are missing from + // Firefox/Chrome experimental implementations + 'resolve' in NativePromise && + 'reject' in NativePromise && + 'all' in NativePromise && + 'race' in NativePromise && + // Older version of the spec had a resolver object + // as the arg rather than a function + (function(){ + var resolve; + new NativePromise(function(r){ resolve = r; }); + return typeof resolve === 'function'; + })(); + + +// +// export if necessary +// + +if ( exports) +{ + // node.js + exports.Promise = nativePromiseSupported ? NativePromise : Promise; + exports.Polyfill = Promise; +} +else +{ + // AMD + { + // in browser add to global + if (!nativePromiseSupported) + global['Promise'] = Promise; + } +} + + +// +// Polyfill +// + +var PENDING = 'pending'; +var SEALED = 'sealed'; +var FULFILLED = 'fulfilled'; +var REJECTED = 'rejected'; +var NOOP = function(){}; + +function isArray(value) { + return Object.prototype.toString.call(value) === '[object Array]'; +} + +// async calls +var asyncSetTimer = typeof setImmediate !== 'undefined' ? setImmediate : setTimeout; +var asyncQueue = []; +var asyncTimer; + +function asyncFlush(){ + // run promise callbacks + for (var i = 0; i < asyncQueue.length; i++) + asyncQueue[i][0](asyncQueue[i][1]); + + // reset async asyncQueue + asyncQueue = []; + asyncTimer = false; +} + +function asyncCall(callback, arg){ + asyncQueue.push([callback, arg]); + + if (!asyncTimer) + { + asyncTimer = true; + asyncSetTimer(asyncFlush, 0); + } +} + + +function invokeResolver(resolver, promise) { + function resolvePromise(value) { + resolve(promise, value); + } + + function rejectPromise(reason) { + reject(promise, reason); + } + + try { + resolver(resolvePromise, rejectPromise); + } catch(e) { + rejectPromise(e); + } +} + +function invokeCallback(subscriber){ + var owner = subscriber.owner; + var settled = owner.state_; + var value = owner.data_; + var callback = subscriber[settled]; + var promise = subscriber.then; + + if (typeof callback === 'function') + { + settled = FULFILLED; + try { + value = callback(value); + } catch(e) { + reject(promise, e); + } + } + + if (!handleThenable(promise, value)) + { + if (settled === FULFILLED) + resolve(promise, value); + + if (settled === REJECTED) + reject(promise, value); + } +} + +function handleThenable(promise, value) { + var resolved; + + try { + if (promise === value) + throw new TypeError('A promises callback cannot return that same promise.'); + + if (value && (typeof value === 'function' || typeof value === 'object')) + { + var then = value.then; // then should be retrived only once + + if (typeof then === 'function') + { + then.call(value, function(val){ + if (!resolved) + { + resolved = true; + + if (value !== val) + resolve(promise, val); + else + fulfill(promise, val); + } + }, function(reason){ + if (!resolved) + { + resolved = true; + + reject(promise, reason); + } + }); + + return true; + } + } + } catch (e) { + if (!resolved) + reject(promise, e); + + return true; + } + + return false; +} + +function resolve(promise, value){ + if (promise === value || !handleThenable(promise, value)) + fulfill(promise, value); +} + +function fulfill(promise, value){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = value; + + asyncCall(publishFulfillment, promise); + } +} + +function reject(promise, reason){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = reason; + + asyncCall(publishRejection, promise); + } +} + +function publish(promise) { + var callbacks = promise.then_; + promise.then_ = undefined; + + for (var i = 0; i < callbacks.length; i++) { + invokeCallback(callbacks[i]); + } +} + +function publishFulfillment(promise){ + promise.state_ = FULFILLED; + publish(promise); +} + +function publishRejection(promise){ + promise.state_ = REJECTED; + publish(promise); +} + +/** +* @class +*/ +function Promise(resolver){ + if (typeof resolver !== 'function') + throw new TypeError('Promise constructor takes a function argument'); + + if (this instanceof Promise === false) + throw new TypeError('Failed to construct \'Promise\': Please use the \'new\' operator, this object constructor cannot be called as a function.'); + + this.then_ = []; + + invokeResolver(resolver, this); +} + +Promise.prototype = { + constructor: Promise, + + state_: PENDING, + then_: null, + data_: undefined, + + then: function(onFulfillment, onRejection){ + var subscriber = { + owner: this, + then: new this.constructor(NOOP), + fulfilled: onFulfillment, + rejected: onRejection + }; + + if (this.state_ === FULFILLED || this.state_ === REJECTED) + { + // already resolved, call callback async + asyncCall(invokeCallback, subscriber); + } + else + { + // subscribe + this.then_.push(subscriber); + } + + return subscriber.then; + }, + + 'catch': function(onRejection) { + return this.then(null, onRejection); + } +}; + +Promise.all = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.all().'); + + return new Class(function(resolve, reject){ + var results = []; + var remaining = 0; + + function resolver(index){ + remaining++; + return function(value){ + results[index] = value; + if (!--remaining) + resolve(results); + }; + } + + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolver(i), reject); + else + results[i] = promise; + } + + if (!remaining) + resolve(results); + }); +}; + +Promise.race = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.race().'); + + return new Class(function(resolve, reject) { + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolve, reject); + else + resolve(promise); + } + }); +}; + +Promise.resolve = function(value){ + var Class = this; + + if (value && typeof value === 'object' && value.constructor === Class) + return value; + + return new Class(function(resolve){ + resolve(value); + }); +}; + +Promise.reject = function(reason){ + var Class = this; + + return new Class(function(resolve, reject){ + reject(reason); + }); +}; + +})(typeof window != 'undefined' ? window : typeof commonjsGlobal != 'undefined' ? commonjsGlobal : typeof self != 'undefined' ? self : commonjsGlobal); +}); +var promise_1 = promise.Promise; +var promise_2 = promise.Polyfill; + +/* +object-assign +(c) Sindre Sorhus +@license MIT +*/ +/* eslint-disable no-unused-vars */ +var getOwnPropertySymbols = Object.getOwnPropertySymbols; +var hasOwnProperty = Object.prototype.hasOwnProperty; +var propIsEnumerable = Object.prototype.propertyIsEnumerable; + +function toObject(val) { + if (val === null || val === undefined) { + throw new TypeError('Object.assign cannot be called with null or undefined'); + } + + return Object(val); +} + +function shouldUseNative() { + try { + if (!Object.assign) { + return false; + } + + // Detect buggy property enumeration order in older V8 versions. + + // https://bugs.chromium.org/p/v8/issues/detail?id=4118 + var test1 = new String('abc'); // eslint-disable-line no-new-wrappers + test1[5] = 'de'; + if (Object.getOwnPropertyNames(test1)[0] === '5') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test2 = {}; + for (var i = 0; i < 10; i++) { + test2['_' + String.fromCharCode(i)] = i; + } + var order2 = Object.getOwnPropertyNames(test2).map(function (n) { + return test2[n]; + }); + if (order2.join('') !== '0123456789') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test3 = {}; + 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { + test3[letter] = letter; + }); + if (Object.keys(Object.assign({}, test3)).join('') !== + 'abcdefghijklmnopqrst') { + return false; + } + + return true; + } catch (err) { + // We don't expect any of the above to throw, but better to be safe. + return false; + } +} + +var objectAssign = shouldUseNative() ? Object.assign : function (target, source) { + var from; + var to = toObject(target); + var symbols; + + for (var s = 1; s < arguments.length; s++) { + from = Object(arguments[s]); + + for (var key in from) { + if (hasOwnProperty.call(from, key)) { + to[key] = from[key]; + } + } + + if (getOwnPropertySymbols) { + symbols = getOwnPropertySymbols(from); + for (var i = 0; i < symbols.length; i++) { + if (propIsEnumerable.call(from, symbols[i])) { + to[symbols[i]] = from[symbols[i]]; + } + } + } + } + + return to; +}; + +/*! + * @pixi/polyfill - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/polyfill is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Support for IE 9 - 11 which does not include Promises +if (!window.Promise) +{ + window.Promise = promise_2; +} + +// References: + +if (!Object.assign) +{ + Object.assign = objectAssign; +} + +var commonjsGlobal$1 = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +// References: +// http://paulirish.com/2011/requestanimationframe-for-smart-animating/ +// https://gist.github.com/1579671 +// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision +// https://gist.github.com/timhall/4078614 +// https://github.com/Financial-Times/polyfill-service/tree/master/polyfills/requestAnimationFrame + +// Expected to be used with Browserfiy +// Browserify automatically detects the use of `global` and passes the +// correct reference of `global`, `self`, and finally `window` + +var ONE_FRAME_TIME = 16; + +// Date.now +if (!(Date.now && Date.prototype.getTime)) +{ + Date.now = function now() + { + return new Date().getTime(); + }; +} + +// performance.now +if (!(commonjsGlobal$1.performance && commonjsGlobal$1.performance.now)) +{ + var startTime = Date.now(); + + if (!commonjsGlobal$1.performance) + { + commonjsGlobal$1.performance = {}; + } + + commonjsGlobal$1.performance.now = function () { return Date.now() - startTime; }; +} + +// requestAnimationFrame +var lastTime = Date.now(); +var vendors = ['ms', 'moz', 'webkit', 'o']; + +for (var x = 0; x < vendors.length && !commonjsGlobal$1.requestAnimationFrame; ++x) +{ + var p = vendors[x]; + + commonjsGlobal$1.requestAnimationFrame = commonjsGlobal$1[(p + "RequestAnimationFrame")]; + commonjsGlobal$1.cancelAnimationFrame = commonjsGlobal$1[(p + "CancelAnimationFrame")] || commonjsGlobal$1[(p + "CancelRequestAnimationFrame")]; +} + +if (!commonjsGlobal$1.requestAnimationFrame) +{ + commonjsGlobal$1.requestAnimationFrame = function (callback) { + if (typeof callback !== 'function') + { + throw new TypeError((callback + "is not a function")); + } + + var currentTime = Date.now(); + var delay = ONE_FRAME_TIME + lastTime - currentTime; + + if (delay < 0) + { + delay = 0; + } + + lastTime = currentTime; + + return setTimeout(function () { + lastTime = Date.now(); + callback(performance.now()); + }, delay); + }; +} + +if (!commonjsGlobal$1.cancelAnimationFrame) +{ + commonjsGlobal$1.cancelAnimationFrame = function (id) { return clearTimeout(id); }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign + +if (!Math.sign) +{ + Math.sign = function mathSign(x) + { + x = Number(x); + + if (x === 0 || isNaN(x)) + { + return x; + } + + return x > 0 ? 1 : -1; + }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger + +if (!Number.isInteger) +{ + Number.isInteger = function numberIsInteger(value) + { + return typeof value === 'number' && isFinite(value) && Math.floor(value) === value; + }; +} + +if (!window.ArrayBuffer) +{ + window.ArrayBuffer = Array; +} + +if (!window.Float32Array) +{ + window.Float32Array = Array; +} + +if (!window.Uint32Array) +{ + window.Uint32Array = Array; +} + +if (!window.Uint16Array) +{ + window.Uint16Array = Array; +} + +if (!window.Uint8Array) +{ + window.Uint8Array = Array; +} + +if (!window.Int32Array) +{ + window.Int32Array = Array; +} + +var isMobile = createCommonjsModule(function (module) { +(function(global) { + var apple_phone = /iPhone/i, + apple_ipod = /iPod/i, + apple_tablet = /iPad/i, + android_phone = /\bAndroid(?:.+)Mobile\b/i, // Match 'Android' AND 'Mobile' + android_tablet = /Android/i, + amazon_phone = /\bAndroid(?:.+)SD4930UR\b/i, + amazon_tablet = /\bAndroid(?:.+)(?:KF[A-Z]{2,4})\b/i, + windows_phone = /Windows Phone/i, + windows_tablet = /\bWindows(?:.+)ARM\b/i, // Match 'Windows' AND 'ARM' + other_blackberry = /BlackBerry/i, + other_blackberry_10 = /BB10/i, + other_opera = /Opera Mini/i, + other_chrome = /\b(CriOS|Chrome)(?:.+)Mobile/i, + other_firefox = /Mobile(?:.+)Firefox\b/i; // Match 'Mobile' AND 'Firefox' + + function match(regex, userAgent) { + return regex.test(userAgent); + } + + function isMobile(userAgent) { + var ua = + userAgent || + (typeof navigator !== 'undefined' ? navigator.userAgent : ''); + + // Facebook mobile app's integrated browser adds a bunch of strings that + // match everything. Strip it out if it exists. + var tmp = ua.split('[FBAN'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + // Twitter mobile app's integrated browser on iPad adds a "Twitter for + // iPhone" string. Same probably happens on other tablet platforms. + // This will confuse detection so strip it out if it exists. + tmp = ua.split('Twitter'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + var result = { + apple: { + phone: match(apple_phone, ua) && !match(windows_phone, ua), + ipod: match(apple_ipod, ua), + tablet: + !match(apple_phone, ua) && + match(apple_tablet, ua) && + !match(windows_phone, ua), + device: + (match(apple_phone, ua) || + match(apple_ipod, ua) || + match(apple_tablet, ua)) && + !match(windows_phone, ua) + }, + amazon: { + phone: match(amazon_phone, ua), + tablet: !match(amazon_phone, ua) && match(amazon_tablet, ua), + device: match(amazon_phone, ua) || match(amazon_tablet, ua) + }, + android: { + phone: + (!match(windows_phone, ua) && match(amazon_phone, ua)) || + (!match(windows_phone, ua) && match(android_phone, ua)), + tablet: + !match(windows_phone, ua) && + !match(amazon_phone, ua) && + !match(android_phone, ua) && + (match(amazon_tablet, ua) || match(android_tablet, ua)), + device: + (!match(windows_phone, ua) && + (match(amazon_phone, ua) || + match(amazon_tablet, ua) || + match(android_phone, ua) || + match(android_tablet, ua))) || + match(/\bokhttp\b/i, ua) + }, + windows: { + phone: match(windows_phone, ua), + tablet: match(windows_tablet, ua), + device: match(windows_phone, ua) || match(windows_tablet, ua) + }, + other: { + blackberry: match(other_blackberry, ua), + blackberry10: match(other_blackberry_10, ua), + opera: match(other_opera, ua), + firefox: match(other_firefox, ua), + chrome: match(other_chrome, ua), + device: + match(other_blackberry, ua) || + match(other_blackberry_10, ua) || + match(other_opera, ua) || + match(other_firefox, ua) || + match(other_chrome, ua) + } + }; + (result.any = + result.apple.device || + result.android.device || + result.windows.device || + result.other.device), + // excludes 'other' devices and ipods, targeting touchscreen phones + (result.phone = + result.apple.phone || result.android.phone || result.windows.phone), + (result.tablet = + result.apple.tablet || result.android.tablet || result.windows.tablet); + + return result; + } + + if ( + + module.exports && + typeof window === 'undefined' + ) { + // Node.js + module.exports = isMobile; + } else if ( + + module.exports && + typeof window !== 'undefined' + ) { + // Browserify + module.exports = isMobile(); + module.exports.isMobile = isMobile; + } else { + global.isMobile = isMobile(); + } +})(commonjsGlobal); +}); +var isMobile_1 = isMobile.isMobile; + +/*! + * @pixi/settings - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/settings is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The maximum recommended texture units to use. + * In theory the bigger the better, and for desktop we'll use as many as we can. + * But some mobile devices slow down if there is to many branches in the shader. + * So in practice there seems to be a sweet spot size that varies depending on the device. + * + * In v4, all mobile devices were limited to 4 texture units because for this. + * In v5, we allow all texture units to be used on modern Apple or Android devices. + * + * @private + * @param {number} max + * @returns {number} + */ +function maxRecommendedTextures(max) +{ + var allowMax = true; + + if (isMobile.tablet || isMobile.phone) + { + allowMax = false; + + if (isMobile.apple.device) + { + var match = (navigator.userAgent).match(/OS (\d+)_(\d+)?/); + + if (match) + { + var majorVersion = parseInt(match[1], 10); + + // All texture units can be used on devices that support ios 11 or above + if (majorVersion >= 11) + { + allowMax = true; + } + } + } + if (isMobile.android.device) + { + var match$1 = (navigator.userAgent).match(/Android\s([0-9.]*)/); + + if (match$1) + { + var majorVersion$1 = parseInt(match$1[1], 10); + + // All texture units can be used on devices that support Android 7 (Nougat) or above + if (majorVersion$1 >= 7) + { + allowMax = true; + } + } + } + } + + return allowMax ? max : 4; +} + +/** + * Uploading the same buffer multiple times in a single frame can cause performance issues. + * Apparent on iOS so only check for that at the moment + * This check may become more complex if this issue pops up elsewhere. + * + * @private + * @returns {boolean} + */ +function canUploadSameBuffer() +{ + return !isMobile.apple.device; +} + +/** + * User's customizable globals for overriding the default PIXI settings, such + * as a renderer's default resolution, framerate, float precision, etc. + * @example + * // Use the native window resolution as the default resolution + * // will support high-density displays when rendering + * PIXI.settings.RESOLUTION = window.devicePixelRatio; + * + * // Disable interpolation when scaling, will make texture be pixelated + * PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST; + * @namespace PIXI.settings + */ +var settings = { + + /** + * If set to true WebGL will attempt make textures mimpaped by default. + * Mipmapping will only succeed if the base texture uploaded has power of two dimensions. + * + * @static + * @name MIPMAP_TEXTURES + * @memberof PIXI.settings + * @type {PIXI.MIPMAP_MODES} + * @default PIXI.MIPMAP_MODES.POW2 + */ + MIPMAP_TEXTURES: 1, + + /** + * Default anisotropic filtering level of textures. + * Usually from 0 to 16 + * + * @static + * @name ANISOTROPIC_LEVEL + * @memberof PIXI.settings + * @type {number} + * @default 0 + */ + ANISOTROPIC_LEVEL: 0, + + /** + * Default resolution / device pixel ratio of the renderer. + * + * @static + * @name RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + RESOLUTION: 1, + + /** + * Default filter resolution. + * + * @static + * @name FILTER_RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + FILTER_RESOLUTION: 1, + + /** + * The maximum textures that this device supports. + * + * @static + * @name SPRITE_MAX_TEXTURES + * @memberof PIXI.settings + * @type {number} + * @default 32 + */ + SPRITE_MAX_TEXTURES: maxRecommendedTextures(32), + + // TODO: maybe change to SPRITE.BATCH_SIZE: 2000 + // TODO: maybe add PARTICLE.BATCH_SIZE: 15000 + + /** + * The default sprite batch size. + * + * The default aims to balance desktop and mobile devices. + * + * @static + * @name SPRITE_BATCH_SIZE + * @memberof PIXI.settings + * @type {number} + * @default 4096 + */ + SPRITE_BATCH_SIZE: 4096, + + /** + * The default render options if none are supplied to {@link PIXI.Renderer} + * or {@link PIXI.CanvasRenderer}. + * + * @static + * @name RENDER_OPTIONS + * @memberof PIXI.settings + * @type {object} + * @property {HTMLCanvasElement} view=null + * @property {number} resolution=1 + * @property {boolean} antialias=false + * @property {boolean} forceFXAA=false + * @property {boolean} autoDensity=false + * @property {boolean} transparent=false + * @property {number} backgroundColor=0x000000 + * @property {boolean} clearBeforeRender=true + * @property {boolean} preserveDrawingBuffer=false + * @property {number} width=800 + * @property {number} height=600 + * @property {boolean} legacy=false + */ + RENDER_OPTIONS: { + view: null, + antialias: false, + forceFXAA: false, + autoDensity: false, + transparent: false, + backgroundColor: 0x000000, + clearBeforeRender: true, + preserveDrawingBuffer: false, + width: 800, + height: 600, + legacy: false, + }, + + /** + * Default Garbage Collection mode. + * + * @static + * @name GC_MODE + * @memberof PIXI.settings + * @type {PIXI.GC_MODES} + * @default PIXI.GC_MODES.AUTO + */ + GC_MODE: 0, + + /** + * Default Garbage Collection max idle. + * + * @static + * @name GC_MAX_IDLE + * @memberof PIXI.settings + * @type {number} + * @default 3600 + */ + GC_MAX_IDLE: 60 * 60, + + /** + * Default Garbage Collection maximum check count. + * + * @static + * @name GC_MAX_CHECK_COUNT + * @memberof PIXI.settings + * @type {number} + * @default 600 + */ + GC_MAX_CHECK_COUNT: 60 * 10, + + /** + * Default wrap modes that are supported by pixi. + * + * @static + * @name WRAP_MODE + * @memberof PIXI.settings + * @type {PIXI.WRAP_MODES} + * @default PIXI.WRAP_MODES.CLAMP + */ + WRAP_MODE: 33071, + + /** + * Default scale mode for textures. + * + * @static + * @name SCALE_MODE + * @memberof PIXI.settings + * @type {PIXI.SCALE_MODES} + * @default PIXI.SCALE_MODES.LINEAR + */ + SCALE_MODE: 1, + + /** + * Default specify float precision in vertex shader. + * + * @static + * @name PRECISION_VERTEX + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.HIGH + */ + PRECISION_VERTEX: 'highp', + + /** + * Default specify float precision in fragment shader. + * iOS is best set at highp due to https://github.com/pixijs/pixi.js/issues/3742 + * + * @static + * @name PRECISION_FRAGMENT + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.MEDIUM + */ + PRECISION_FRAGMENT: isMobile.apple.device ? 'highp' : 'mediump', + + /** + * Can we upload the same buffer in a single frame? + * + * @static + * @name CAN_UPLOAD_SAME_BUFFER + * @memberof PIXI.settings + * @type {boolean} + */ + CAN_UPLOAD_SAME_BUFFER: canUploadSameBuffer(), + + /** + * Enables bitmap creation before image load. This feature is experimental. + * + * @static + * @name CREATE_IMAGE_BITMAP + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + CREATE_IMAGE_BITMAP: false, + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * + * @static + * @constant + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + ROUND_PIXELS: false, +}; + +var eventemitter3 = createCommonjsModule(function (module) { + +var has = Object.prototype.hasOwnProperty + , prefix = '~'; + +/** + * Constructor to create a storage for our `EE` objects. + * An `Events` instance is a plain object whose properties are event names. + * + * @constructor + * @private + */ +function Events() {} + +// +// We try to not inherit from `Object.prototype`. In some engines creating an +// instance in this way is faster than calling `Object.create(null)` directly. +// If `Object.create(null)` is not supported we prefix the event names with a +// character to make sure that the built-in object properties are not +// overridden or used as an attack vector. +// +if (Object.create) { + Events.prototype = Object.create(null); + + // + // This hack is needed because the `__proto__` property is still inherited in + // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5. + // + if (!new Events().__proto__) prefix = false; +} + +/** + * Representation of a single event listener. + * + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} [once=false] Specify if the listener is a one-time listener. + * @constructor + * @private + */ +function EE(fn, context, once) { + this.fn = fn; + this.context = context; + this.once = once || false; +} + +/** + * Add a listener for a given event. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} once Specify if the listener is a one-time listener. + * @returns {EventEmitter} + * @private + */ +function addListener(emitter, event, fn, context, once) { + if (typeof fn !== 'function') { + throw new TypeError('The listener must be a function'); + } + + var listener = new EE(fn, context || emitter, once) + , evt = prefix ? prefix + event : event; + + if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++; + else if (!emitter._events[evt].fn) emitter._events[evt].push(listener); + else emitter._events[evt] = [emitter._events[evt], listener]; + + return emitter; +} + +/** + * Clear event by name. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} evt The Event name. + * @private + */ +function clearEvent(emitter, evt) { + if (--emitter._eventsCount === 0) emitter._events = new Events(); + else delete emitter._events[evt]; +} + +/** + * Minimal `EventEmitter` interface that is molded against the Node.js + * `EventEmitter` interface. + * + * @constructor + * @public + */ +function EventEmitter() { + this._events = new Events(); + this._eventsCount = 0; +} + +/** + * Return an array listing the events for which the emitter has registered + * listeners. + * + * @returns {Array} + * @public + */ +EventEmitter.prototype.eventNames = function eventNames() { + var names = [] + , events + , name; + + if (this._eventsCount === 0) return names; + + for (name in (events = this._events)) { + if (has.call(events, name)) names.push(prefix ? name.slice(1) : name); + } + + if (Object.getOwnPropertySymbols) { + return names.concat(Object.getOwnPropertySymbols(events)); + } + + return names; +}; + +/** + * Return the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Array} The registered listeners. + * @public + */ +EventEmitter.prototype.listeners = function listeners(event) { + var evt = prefix ? prefix + event : event + , handlers = this._events[evt]; + + if (!handlers) return []; + if (handlers.fn) return [handlers.fn]; + + for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) { + ee[i] = handlers[i].fn; + } + + return ee; +}; + +/** + * Return the number of listeners listening to a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Number} The number of listeners. + * @public + */ +EventEmitter.prototype.listenerCount = function listenerCount(event) { + var evt = prefix ? prefix + event : event + , listeners = this._events[evt]; + + if (!listeners) return 0; + if (listeners.fn) return 1; + return listeners.length; +}; + +/** + * Calls each of the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Boolean} `true` if the event had listeners, else `false`. + * @public + */ +EventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return false; + + var listeners = this._events[evt] + , len = arguments.length + , args + , i; + + if (listeners.fn) { + if (listeners.once) this.removeListener(event, listeners.fn, undefined, true); + + switch (len) { + case 1: return listeners.fn.call(listeners.context), true; + case 2: return listeners.fn.call(listeners.context, a1), true; + case 3: return listeners.fn.call(listeners.context, a1, a2), true; + case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true; + case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true; + case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true; + } + + for (i = 1, args = new Array(len -1); i < len; i++) { + args[i - 1] = arguments[i]; + } + + listeners.fn.apply(listeners.context, args); + } else { + var length = listeners.length + , j; + + for (i = 0; i < length; i++) { + if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true); + + switch (len) { + case 1: listeners[i].fn.call(listeners[i].context); break; + case 2: listeners[i].fn.call(listeners[i].context, a1); break; + case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break; + case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break; + default: + if (!args) for (j = 1, args = new Array(len -1); j < len; j++) { + args[j - 1] = arguments[j]; + } + + listeners[i].fn.apply(listeners[i].context, args); + } + } + } + + return true; +}; + +/** + * Add a listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.on = function on(event, fn, context) { + return addListener(this, event, fn, context, false); +}; + +/** + * Add a one-time listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.once = function once(event, fn, context) { + return addListener(this, event, fn, context, true); +}; + +/** + * Remove the listeners of a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn Only remove the listeners that match this function. + * @param {*} context Only remove the listeners that have this context. + * @param {Boolean} once Only remove one-time listeners. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return this; + if (!fn) { + clearEvent(this, evt); + return this; + } + + var listeners = this._events[evt]; + + if (listeners.fn) { + if ( + listeners.fn === fn && + (!once || listeners.once) && + (!context || listeners.context === context) + ) { + clearEvent(this, evt); + } + } else { + for (var i = 0, events = [], length = listeners.length; i < length; i++) { + if ( + listeners[i].fn !== fn || + (once && !listeners[i].once) || + (context && listeners[i].context !== context) + ) { + events.push(listeners[i]); + } + } + + // + // Reset the array, or remove it completely if we have no more listeners. + // + if (events.length) this._events[evt] = events.length === 1 ? events[0] : events; + else clearEvent(this, evt); + } + + return this; +}; + +/** + * Remove all listeners, or those of the specified event. + * + * @param {(String|Symbol)} [event] The event name. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeAllListeners = function removeAllListeners(event) { + var evt; + + if (event) { + evt = prefix ? prefix + event : event; + if (this._events[evt]) clearEvent(this, evt); + } else { + this._events = new Events(); + this._eventsCount = 0; + } + + return this; +}; + +// +// Alias methods names because people roll like that. +// +EventEmitter.prototype.off = EventEmitter.prototype.removeListener; +EventEmitter.prototype.addListener = EventEmitter.prototype.on; + +// +// Expose the prefix. +// +EventEmitter.prefixed = prefix; + +// +// Allow `EventEmitter` to be imported as module namespace. +// +EventEmitter.EventEmitter = EventEmitter; + +// +// Expose the module. +// +{ + module.exports = EventEmitter; +} +}); + +var earcut_1 = earcut; +var default_1 = earcut; + +function earcut(data, holeIndices, dim) { + + dim = dim || 2; + + var hasHoles = holeIndices && holeIndices.length, + outerLen = hasHoles ? holeIndices[0] * dim : data.length, + outerNode = linkedList(data, 0, outerLen, dim, true), + triangles = []; + + if (!outerNode || outerNode.next === outerNode.prev) return triangles; + + var minX, minY, maxX, maxY, x, y, invSize; + + if (hasHoles) outerNode = eliminateHoles(data, holeIndices, outerNode, dim); + + // if the shape is not too simple, we'll use z-order curve hash later; calculate polygon bbox + if (data.length > 80 * dim) { + minX = maxX = data[0]; + minY = maxY = data[1]; + + for (var i = dim; i < outerLen; i += dim) { + x = data[i]; + y = data[i + 1]; + if (x < minX) minX = x; + if (y < minY) minY = y; + if (x > maxX) maxX = x; + if (y > maxY) maxY = y; + } + + // minX, minY and invSize are later used to transform coords into integers for z-order calculation + invSize = Math.max(maxX - minX, maxY - minY); + invSize = invSize !== 0 ? 1 / invSize : 0; + } + + earcutLinked(outerNode, triangles, dim, minX, minY, invSize); + + return triangles; +} + +// create a circular doubly linked list from polygon points in the specified winding order +function linkedList(data, start, end, dim, clockwise) { + var i, last; + + if (clockwise === (signedArea(data, start, end, dim) > 0)) { + for (i = start; i < end; i += dim) last = insertNode(i, data[i], data[i + 1], last); + } else { + for (i = end - dim; i >= start; i -= dim) last = insertNode(i, data[i], data[i + 1], last); + } + + if (last && equals(last, last.next)) { + removeNode(last); + last = last.next; + } + + return last; +} + +// eliminate colinear or duplicate points +function filterPoints(start, end) { + if (!start) return start; + if (!end) end = start; + + var p = start, + again; + do { + again = false; + + if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) { + removeNode(p); + p = end = p.prev; + if (p === p.next) break; + again = true; + + } else { + p = p.next; + } + } while (again || p !== end); + + return end; +} + +// main ear slicing loop which triangulates a polygon (given as a linked list) +function earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) { + if (!ear) return; + + // interlink polygon nodes in z-order + if (!pass && invSize) indexCurve(ear, minX, minY, invSize); + + var stop = ear, + prev, next; + + // iterate through ears, slicing them one by one + while (ear.prev !== ear.next) { + prev = ear.prev; + next = ear.next; + + if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) { + // cut off the triangle + triangles.push(prev.i / dim); + triangles.push(ear.i / dim); + triangles.push(next.i / dim); + + removeNode(ear); + + // skipping the next vertex leads to less sliver triangles + ear = next.next; + stop = next.next; + + continue; + } + + ear = next; + + // if we looped through the whole remaining polygon and can't find any more ears + if (ear === stop) { + // try filtering points and slicing again + if (!pass) { + earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1); + + // if this didn't work, try curing all small self-intersections locally + } else if (pass === 1) { + ear = cureLocalIntersections(filterPoints(ear), triangles, dim); + earcutLinked(ear, triangles, dim, minX, minY, invSize, 2); + + // as a last resort, try splitting the remaining polygon into two + } else if (pass === 2) { + splitEarcut(ear, triangles, dim, minX, minY, invSize); + } + + break; + } + } +} + +// check whether a polygon node forms a valid ear with adjacent nodes +function isEar(ear) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // now make sure we don't have other points inside the potential ear + var p = ear.next.next; + + while (p !== ear.prev) { + if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.next; + } + + return true; +} + +function isEarHashed(ear, minX, minY, invSize) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // triangle bbox; min & max are calculated like this for speed + var minTX = a.x < b.x ? (a.x < c.x ? a.x : c.x) : (b.x < c.x ? b.x : c.x), + minTY = a.y < b.y ? (a.y < c.y ? a.y : c.y) : (b.y < c.y ? b.y : c.y), + maxTX = a.x > b.x ? (a.x > c.x ? a.x : c.x) : (b.x > c.x ? b.x : c.x), + maxTY = a.y > b.y ? (a.y > c.y ? a.y : c.y) : (b.y > c.y ? b.y : c.y); + + // z-order range for the current triangle bbox; + var minZ = zOrder(minTX, minTY, minX, minY, invSize), + maxZ = zOrder(maxTX, maxTY, minX, minY, invSize); + + var p = ear.prevZ, + n = ear.nextZ; + + // look for points inside the triangle in both directions + while (p && p.z >= minZ && n && n.z <= maxZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + // look for remaining points in decreasing z-order + while (p && p.z >= minZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + } + + // look for remaining points in increasing z-order + while (n && n.z <= maxZ) { + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + return true; +} + +// go through all polygon nodes and cure small local self-intersections +function cureLocalIntersections(start, triangles, dim) { + var p = start; + do { + var a = p.prev, + b = p.next.next; + + if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) { + + triangles.push(a.i / dim); + triangles.push(p.i / dim); + triangles.push(b.i / dim); + + // remove two nodes involved + removeNode(p); + removeNode(p.next); + + p = start = b; + } + p = p.next; + } while (p !== start); + + return filterPoints(p); +} + +// try splitting polygon into two and triangulate them independently +function splitEarcut(start, triangles, dim, minX, minY, invSize) { + // look for a valid diagonal that divides the polygon into two + var a = start; + do { + var b = a.next.next; + while (b !== a.prev) { + if (a.i !== b.i && isValidDiagonal(a, b)) { + // split the polygon in two by the diagonal + var c = splitPolygon(a, b); + + // filter colinear points around the cuts + a = filterPoints(a, a.next); + c = filterPoints(c, c.next); + + // run earcut on each half + earcutLinked(a, triangles, dim, minX, minY, invSize); + earcutLinked(c, triangles, dim, minX, minY, invSize); + return; + } + b = b.next; + } + a = a.next; + } while (a !== start); +} + +// link every hole into the outer loop, producing a single-ring polygon without holes +function eliminateHoles(data, holeIndices, outerNode, dim) { + var queue = [], + i, len, start, end, list; + + for (i = 0, len = holeIndices.length; i < len; i++) { + start = holeIndices[i] * dim; + end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + list = linkedList(data, start, end, dim, false); + if (list === list.next) list.steiner = true; + queue.push(getLeftmost(list)); + } + + queue.sort(compareX); + + // process holes from left to right + for (i = 0; i < queue.length; i++) { + eliminateHole(queue[i], outerNode); + outerNode = filterPoints(outerNode, outerNode.next); + } + + return outerNode; +} + +function compareX(a, b) { + return a.x - b.x; +} + +// find a bridge between vertices that connects hole with an outer ring and and link it +function eliminateHole(hole, outerNode) { + outerNode = findHoleBridge(hole, outerNode); + if (outerNode) { + var b = splitPolygon(outerNode, hole); + filterPoints(b, b.next); + } +} + +// David Eberly's algorithm for finding a bridge between hole and outer polygon +function findHoleBridge(hole, outerNode) { + var p = outerNode, + hx = hole.x, + hy = hole.y, + qx = -Infinity, + m; + + // find a segment intersected by a ray from the hole's leftmost point to the left; + // segment's endpoint with lesser x will be potential connection point + do { + if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) { + var x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y); + if (x <= hx && x > qx) { + qx = x; + if (x === hx) { + if (hy === p.y) return p; + if (hy === p.next.y) return p.next; + } + m = p.x < p.next.x ? p : p.next; + } + } + p = p.next; + } while (p !== outerNode); + + if (!m) return null; + + if (hx === qx) return m; // hole touches outer segment; pick leftmost endpoint + + // look for points inside the triangle of hole point, segment intersection and endpoint; + // if there are no points found, we have a valid connection; + // otherwise choose the point of the minimum angle with the ray as connection point + + var stop = m, + mx = m.x, + my = m.y, + tanMin = Infinity, + tan; + + p = m; + + do { + if (hx >= p.x && p.x >= mx && hx !== p.x && + pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) { + + tan = Math.abs(hy - p.y) / (hx - p.x); // tangential + + if (locallyInside(p, hole) && + (tan < tanMin || (tan === tanMin && (p.x > m.x || (p.x === m.x && sectorContainsSector(m, p)))))) { + m = p; + tanMin = tan; + } + } + + p = p.next; + } while (p !== stop); + + return m; +} + +// whether sector in vertex m contains sector in vertex p in the same coordinates +function sectorContainsSector(m, p) { + return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0; +} + +// interlink polygon nodes in z-order +function indexCurve(start, minX, minY, invSize) { + var p = start; + do { + if (p.z === null) p.z = zOrder(p.x, p.y, minX, minY, invSize); + p.prevZ = p.prev; + p.nextZ = p.next; + p = p.next; + } while (p !== start); + + p.prevZ.nextZ = null; + p.prevZ = null; + + sortLinked(p); +} + +// Simon Tatham's linked list merge sort algorithm +// http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html +function sortLinked(list) { + var i, p, q, e, tail, numMerges, pSize, qSize, + inSize = 1; + + do { + p = list; + list = null; + tail = null; + numMerges = 0; + + while (p) { + numMerges++; + q = p; + pSize = 0; + for (i = 0; i < inSize; i++) { + pSize++; + q = q.nextZ; + if (!q) break; + } + qSize = inSize; + + while (pSize > 0 || (qSize > 0 && q)) { + + if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) { + e = p; + p = p.nextZ; + pSize--; + } else { + e = q; + q = q.nextZ; + qSize--; + } + + if (tail) tail.nextZ = e; + else list = e; + + e.prevZ = tail; + tail = e; + } + + p = q; + } + + tail.nextZ = null; + inSize *= 2; + + } while (numMerges > 1); + + return list; +} + +// z-order of a point given coords and inverse of the longer side of data bbox +function zOrder(x, y, minX, minY, invSize) { + // coords are transformed into non-negative 15-bit integer range + x = 32767 * (x - minX) * invSize; + y = 32767 * (y - minY) * invSize; + + x = (x | (x << 8)) & 0x00FF00FF; + x = (x | (x << 4)) & 0x0F0F0F0F; + x = (x | (x << 2)) & 0x33333333; + x = (x | (x << 1)) & 0x55555555; + + y = (y | (y << 8)) & 0x00FF00FF; + y = (y | (y << 4)) & 0x0F0F0F0F; + y = (y | (y << 2)) & 0x33333333; + y = (y | (y << 1)) & 0x55555555; + + return x | (y << 1); +} + +// find the leftmost node of a polygon ring +function getLeftmost(start) { + var p = start, + leftmost = start; + do { + if (p.x < leftmost.x || (p.x === leftmost.x && p.y < leftmost.y)) leftmost = p; + p = p.next; + } while (p !== start); + + return leftmost; +} + +// check if a point lies within a convex triangle +function pointInTriangle(ax, ay, bx, by, cx, cy, px, py) { + return (cx - px) * (ay - py) - (ax - px) * (cy - py) >= 0 && + (ax - px) * (by - py) - (bx - px) * (ay - py) >= 0 && + (bx - px) * (cy - py) - (cx - px) * (by - py) >= 0; +} + +// check if a diagonal between two polygon nodes is valid (lies in polygon interior) +function isValidDiagonal(a, b) { + return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && // dones't intersect other edges + (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && // locally visible + (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors + equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case +} + +// signed area of a triangle +function area(p, q, r) { + return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y); +} + +// check if two points are equal +function equals(p1, p2) { + return p1.x === p2.x && p1.y === p2.y; +} + +// check if two segments intersect +function intersects(p1, q1, p2, q2) { + var o1 = sign(area(p1, q1, p2)); + var o2 = sign(area(p1, q1, q2)); + var o3 = sign(area(p2, q2, p1)); + var o4 = sign(area(p2, q2, q1)); + + if (o1 !== o2 && o3 !== o4) return true; // general case + + if (o1 === 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p1q1 + if (o2 === 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p1q1 + if (o3 === 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p2q2 + if (o4 === 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p2q2 + + return false; +} + +// for collinear points p, q, r, check if point q lies on segment pr +function onSegment(p, q, r) { + return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y); +} + +function sign(num) { + return num > 0 ? 1 : num < 0 ? -1 : 0; +} + +// check if a polygon diagonal intersects any polygon segments +function intersectsPolygon(a, b) { + var p = a; + do { + if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i && + intersects(p, p.next, a, b)) return true; + p = p.next; + } while (p !== a); + + return false; +} + +// check if a polygon diagonal is locally inside the polygon +function locallyInside(a, b) { + return area(a.prev, a, a.next) < 0 ? + area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 : + area(a, b, a.prev) < 0 || area(a, a.next, b) < 0; +} + +// check if the middle point of a polygon diagonal is inside the polygon +function middleInside(a, b) { + var p = a, + inside = false, + px = (a.x + b.x) / 2, + py = (a.y + b.y) / 2; + do { + if (((p.y > py) !== (p.next.y > py)) && p.next.y !== p.y && + (px < (p.next.x - p.x) * (py - p.y) / (p.next.y - p.y) + p.x)) + inside = !inside; + p = p.next; + } while (p !== a); + + return inside; +} + +// link two polygon vertices with a bridge; if the vertices belong to the same ring, it splits polygon into two; +// if one belongs to the outer ring and another to a hole, it merges it into a single ring +function splitPolygon(a, b) { + var a2 = new Node(a.i, a.x, a.y), + b2 = new Node(b.i, b.x, b.y), + an = a.next, + bp = b.prev; + + a.next = b; + b.prev = a; + + a2.next = an; + an.prev = a2; + + b2.next = a2; + a2.prev = b2; + + bp.next = b2; + b2.prev = bp; + + return b2; +} + +// create a node and optionally link it with previous one (in a circular doubly linked list) +function insertNode(i, x, y, last) { + var p = new Node(i, x, y); + + if (!last) { + p.prev = p; + p.next = p; + + } else { + p.next = last.next; + p.prev = last; + last.next.prev = p; + last.next = p; + } + return p; +} + +function removeNode(p) { + p.next.prev = p.prev; + p.prev.next = p.next; + + if (p.prevZ) p.prevZ.nextZ = p.nextZ; + if (p.nextZ) p.nextZ.prevZ = p.prevZ; +} + +function Node(i, x, y) { + // vertex index in coordinates array + this.i = i; + + // vertex coordinates + this.x = x; + this.y = y; + + // previous and next vertex nodes in a polygon ring + this.prev = null; + this.next = null; + + // z-order curve value + this.z = null; + + // previous and next nodes in z-order + this.prevZ = null; + this.nextZ = null; + + // indicates whether this is a steiner point + this.steiner = false; +} + +// return a percentage difference between the polygon area and its triangulation area; +// used to verify correctness of triangulation +earcut.deviation = function (data, holeIndices, dim, triangles) { + var hasHoles = holeIndices && holeIndices.length; + var outerLen = hasHoles ? holeIndices[0] * dim : data.length; + + var polygonArea = Math.abs(signedArea(data, 0, outerLen, dim)); + if (hasHoles) { + for (var i = 0, len = holeIndices.length; i < len; i++) { + var start = holeIndices[i] * dim; + var end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + polygonArea -= Math.abs(signedArea(data, start, end, dim)); + } + } + + var trianglesArea = 0; + for (i = 0; i < triangles.length; i += 3) { + var a = triangles[i] * dim; + var b = triangles[i + 1] * dim; + var c = triangles[i + 2] * dim; + trianglesArea += Math.abs( + (data[a] - data[c]) * (data[b + 1] - data[a + 1]) - + (data[a] - data[b]) * (data[c + 1] - data[a + 1])); + } + + return polygonArea === 0 && trianglesArea === 0 ? 0 : + Math.abs((trianglesArea - polygonArea) / polygonArea); +}; + +function signedArea(data, start, end, dim) { + var sum = 0; + for (var i = start, j = end - dim; i < end; i += dim) { + sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]); + j = i; + } + return sum; +} + +// turn a polygon in a multi-dimensional array form (e.g. as in GeoJSON) into a form Earcut accepts +earcut.flatten = function (data) { + var dim = data[0][0].length, + result = {vertices: [], holes: [], dimensions: dim}, + holeIndex = 0; + + for (var i = 0; i < data.length; i++) { + for (var j = 0; j < data[i].length; j++) { + for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]); + } + if (i > 0) { + holeIndex += data[i - 1].length; + result.holes.push(holeIndex); + } + } + return result; +}; +earcut_1.default = default_1; + +/*! https://mths.be/punycode v1.4.1 by @mathias */ + + +/** Highest positive signed 32-bit float value */ +var maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1 + +/** Bootstring parameters */ +var base = 36; +var tMin = 1; +var tMax = 26; +var skew = 38; +var damp = 700; +var initialBias = 72; +var initialN = 128; // 0x80 +var delimiter$1 = '-'; // '\x2D' +var regexNonASCII = /[^\x20-\x7E]/; // unprintable ASCII chars + non-ASCII chars +var regexSeparators = /[\x2E\u3002\uFF0E\uFF61]/g; // RFC 3490 separators + +/** Error messages */ +var errors = { + 'overflow': 'Overflow: input needs wider integers to process', + 'not-basic': 'Illegal input >= 0x80 (not a basic code point)', + 'invalid-input': 'Invalid input' +}; + +/** Convenience shortcuts */ +var baseMinusTMin = base - tMin; +var floor = Math.floor; +var stringFromCharCode = String.fromCharCode; + +/*--------------------------------------------------------------------------*/ + +/** + * A generic error utility function. + * @private + * @param {String} type The error type. + * @returns {Error} Throws a `RangeError` with the applicable error message. + */ +function error(type) { + throw new RangeError(errors[type]); +} + +/** + * A generic `Array#map` utility function. + * @private + * @param {Array} array The array to iterate over. + * @param {Function} callback The function that gets called for every array + * item. + * @returns {Array} A new array of values returned by the callback function. + */ +function map(array, fn) { + var length = array.length; + var result = []; + while (length--) { + result[length] = fn(array[length]); + } + return result; +} + +/** + * A simple `Array#map`-like wrapper to work with domain name strings or email + * addresses. + * @private + * @param {String} domain The domain name or email address. + * @param {Function} callback The function that gets called for every + * character. + * @returns {Array} A new string of characters returned by the callback + * function. + */ +function mapDomain(string, fn) { + var parts = string.split('@'); + var result = ''; + if (parts.length > 1) { + // In email addresses, only the domain name should be punycoded. Leave + // the local part (i.e. everything up to `@`) intact. + result = parts[0] + '@'; + string = parts[1]; + } + // Avoid `split(regex)` for IE8 compatibility. See #17. + string = string.replace(regexSeparators, '\x2E'); + var labels = string.split('.'); + var encoded = map(labels, fn).join('.'); + return result + encoded; +} + +/** + * Creates an array containing the numeric code points of each Unicode + * character in the string. While JavaScript uses UCS-2 internally, + * this function will convert a pair of surrogate halves (each of which + * UCS-2 exposes as separate characters) into a single code point, + * matching UTF-16. + * @see `punycode.ucs2.encode` + * @see + * @memberOf punycode.ucs2 + * @name decode + * @param {String} string The Unicode input string (UCS-2). + * @returns {Array} The new array of code points. + */ +function ucs2decode(string) { + var output = [], + counter = 0, + length = string.length, + value, + extra; + while (counter < length) { + value = string.charCodeAt(counter++); + if (value >= 0xD800 && value <= 0xDBFF && counter < length) { + // high surrogate, and there is a next character + extra = string.charCodeAt(counter++); + if ((extra & 0xFC00) == 0xDC00) { // low surrogate + output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000); + } else { + // unmatched surrogate; only append this code unit, in case the next + // code unit is the high surrogate of a surrogate pair + output.push(value); + counter--; + } + } else { + output.push(value); + } + } + return output; +} + +/** + * Converts a digit/integer into a basic code point. + * @see `basicToDigit()` + * @private + * @param {Number} digit The numeric value of a basic code point. + * @returns {Number} The basic code point whose value (when used for + * representing integers) is `digit`, which needs to be in the range + * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is + * used; else, the lowercase form is used. The behavior is undefined + * if `flag` is non-zero and `digit` has no uppercase form. + */ +function digitToBasic(digit, flag) { + // 0..25 map to ASCII a..z or A..Z + // 26..35 map to ASCII 0..9 + return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5); +} + +/** + * Bias adaptation function as per section 3.4 of RFC 3492. + * https://tools.ietf.org/html/rfc3492#section-3.4 + * @private + */ +function adapt(delta, numPoints, firstTime) { + var k = 0; + delta = firstTime ? floor(delta / damp) : delta >> 1; + delta += floor(delta / numPoints); + for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) { + delta = floor(delta / baseMinusTMin); + } + return floor(k + (baseMinusTMin + 1) * delta / (delta + skew)); +} + +/** + * Converts a string of Unicode symbols (e.g. a domain name label) to a + * Punycode string of ASCII-only symbols. + * @memberOf punycode + * @param {String} input The string of Unicode symbols. + * @returns {String} The resulting Punycode string of ASCII-only symbols. + */ +function encode(input) { + var n, + delta, + handledCPCount, + basicLength, + bias, + j, + m, + q, + k, + t, + currentValue, + output = [], + /** `inputLength` will hold the number of code points in `input`. */ + inputLength, + /** Cached calculation results */ + handledCPCountPlusOne, + baseMinusT, + qMinusT; + + // Convert the input in UCS-2 to Unicode + input = ucs2decode(input); + + // Cache the length + inputLength = input.length; + + // Initialize the state + n = initialN; + delta = 0; + bias = initialBias; + + // Handle the basic code points + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue < 0x80) { + output.push(stringFromCharCode(currentValue)); + } + } + + handledCPCount = basicLength = output.length; + + // `handledCPCount` is the number of code points that have been handled; + // `basicLength` is the number of basic code points. + + // Finish the basic string - if it is not empty - with a delimiter + if (basicLength) { + output.push(delimiter$1); + } + + // Main encoding loop: + while (handledCPCount < inputLength) { + + // All non-basic code points < n have been handled already. Find the next + // larger one: + for (m = maxInt, j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue >= n && currentValue < m) { + m = currentValue; + } + } + + // Increase `delta` enough to advance the decoder's state to , + // but guard against overflow + handledCPCountPlusOne = handledCPCount + 1; + if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) { + error('overflow'); + } + + delta += (m - n) * handledCPCountPlusOne; + n = m; + + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + + if (currentValue < n && ++delta > maxInt) { + error('overflow'); + } + + if (currentValue == n) { + // Represent delta as a generalized variable-length integer + for (q = delta, k = base; /* no condition */ ; k += base) { + t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias); + if (q < t) { + break; + } + qMinusT = q - t; + baseMinusT = base - t; + output.push( + stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0)) + ); + q = floor(qMinusT / baseMinusT); + } + + output.push(stringFromCharCode(digitToBasic(q, 0))); + bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength); + delta = 0; + ++handledCPCount; + } + } + + ++delta; + ++n; + + } + return output.join(''); +} + +/** + * Converts a Unicode string representing a domain name or an email address to + * Punycode. Only the non-ASCII parts of the domain name will be converted, + * i.e. it doesn't matter if you call it with a domain that's already in + * ASCII. + * @memberOf punycode + * @param {String} input The domain name or email address to convert, as a + * Unicode string. + * @returns {String} The Punycode representation of the given domain name or + * email address. + */ +function toASCII(input) { + return mapDomain(input, function(string) { + return regexNonASCII.test(string) ? + 'xn--' + encode(string) : + string; + }); +} + +// Copyright Joyent, Inc. and other Node contributors. + +function isNull(arg) { + return arg === null; +} + +function isNullOrUndefined(arg) { + return arg == null; +} + +function isString(arg) { + return typeof arg === 'string'; +} + +function isObject(arg) { + return typeof arg === 'object' && arg !== null; +} + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + + +// If obj.hasOwnProperty has been overridden, then calling +// obj.hasOwnProperty(prop) will break. +// See: https://github.com/joyent/node/issues/1707 +function hasOwnProperty$1(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop); +} +var isArray = Array.isArray || function (xs) { + return Object.prototype.toString.call(xs) === '[object Array]'; +}; +function stringifyPrimitive(v) { + switch (typeof v) { + case 'string': + return v; + + case 'boolean': + return v ? 'true' : 'false'; + + case 'number': + return isFinite(v) ? v : ''; + + default: + return ''; + } +} + +function stringify (obj, sep, eq, name) { + sep = sep || '&'; + eq = eq || '='; + if (obj === null) { + obj = undefined; + } + + if (typeof obj === 'object') { + return map$1(objectKeys(obj), function(k) { + var ks = encodeURIComponent(stringifyPrimitive(k)) + eq; + if (isArray(obj[k])) { + return map$1(obj[k], function(v) { + return ks + encodeURIComponent(stringifyPrimitive(v)); + }).join(sep); + } else { + return ks + encodeURIComponent(stringifyPrimitive(obj[k])); + } + }).join(sep); + + } + + if (!name) return ''; + return encodeURIComponent(stringifyPrimitive(name)) + eq + + encodeURIComponent(stringifyPrimitive(obj)); +} +function map$1 (xs, f) { + if (xs.map) return xs.map(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + res.push(f(xs[i], i)); + } + return res; +} + +var objectKeys = Object.keys || function (obj) { + var res = []; + for (var key in obj) { + if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key); + } + return res; +}; + +function parse(qs, sep, eq, options) { + sep = sep || '&'; + eq = eq || '='; + var obj = {}; + + if (typeof qs !== 'string' || qs.length === 0) { + return obj; + } + + var regexp = /\+/g; + qs = qs.split(sep); + + var maxKeys = 1000; + if (options && typeof options.maxKeys === 'number') { + maxKeys = options.maxKeys; + } + + var len = qs.length; + // maxKeys <= 0 means that we should not limit keys count + if (maxKeys > 0 && len > maxKeys) { + len = maxKeys; + } + + for (var i = 0; i < len; ++i) { + var x = qs[i].replace(regexp, '%20'), + idx = x.indexOf(eq), + kstr, vstr, k, v; + + if (idx >= 0) { + kstr = x.substr(0, idx); + vstr = x.substr(idx + 1); + } else { + kstr = x; + vstr = ''; + } + + k = decodeURIComponent(kstr); + v = decodeURIComponent(vstr); + + if (!hasOwnProperty$1(obj, k)) { + obj[k] = v; + } else if (isArray(obj[k])) { + obj[k].push(v); + } else { + obj[k] = [obj[k], v]; + } + } + + return obj; +} + +// Copyright Joyent, Inc. and other Node contributors. +var url = { + parse: urlParse, + resolve: urlResolve, + resolveObject: urlResolveObject, + format: urlFormat, + Url: Url +}; +function Url() { + this.protocol = null; + this.slashes = null; + this.auth = null; + this.host = null; + this.port = null; + this.hostname = null; + this.hash = null; + this.search = null; + this.query = null; + this.pathname = null; + this.path = null; + this.href = null; +} + +// Reference: RFC 3986, RFC 1808, RFC 2396 + +// define these here so at least they only have to be +// compiled once on the first module load. +var protocolPattern = /^([a-z0-9.+-]+:)/i, + portPattern = /:[0-9]*$/, + + // Special case for a simple path URL + simplePathPattern = /^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/, + + // RFC 2396: characters reserved for delimiting URLs. + // We actually just auto-escape these. + delims = ['<', '>', '"', '`', ' ', '\r', '\n', '\t'], + + // RFC 2396: characters not allowed for various reasons. + unwise = ['{', '}', '|', '\\', '^', '`'].concat(delims), + + // Allowed by RFCs, but cause of XSS attacks. Always escape these. + autoEscape = ['\''].concat(unwise), + // Characters that are never ever allowed in a hostname. + // Note that any invalid chars are also handled, but these + // are the ones that are *expected* to be seen, so we fast-path + // them. + nonHostChars = ['%', '/', '?', ';', '#'].concat(autoEscape), + hostEndingChars = ['/', '?', '#'], + hostnameMaxLen = 255, + hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/, + hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/, + // protocols that can allow "unsafe" and "unwise" chars. + unsafeProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that never have a hostname. + hostlessProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that always contain a // bit. + slashedProtocol = { + 'http': true, + 'https': true, + 'ftp': true, + 'gopher': true, + 'file': true, + 'http:': true, + 'https:': true, + 'ftp:': true, + 'gopher:': true, + 'file:': true + }; + +function urlParse(url, parseQueryString, slashesDenoteHost) { + if (url && isObject(url) && url instanceof Url) return url; + + var u = new Url; + u.parse(url, parseQueryString, slashesDenoteHost); + return u; +} +Url.prototype.parse = function(url, parseQueryString, slashesDenoteHost) { + return parse$1(this, url, parseQueryString, slashesDenoteHost); +}; + +function parse$1(self, url, parseQueryString, slashesDenoteHost) { + if (!isString(url)) { + throw new TypeError('Parameter \'url\' must be a string, not ' + typeof url); + } + + // Copy chrome, IE, opera backslash-handling behavior. + // Back slashes before the query string get converted to forward slashes + // See: https://code.google.com/p/chromium/issues/detail?id=25916 + var queryIndex = url.indexOf('?'), + splitter = + (queryIndex !== -1 && queryIndex < url.indexOf('#')) ? '?' : '#', + uSplit = url.split(splitter), + slashRegex = /\\/g; + uSplit[0] = uSplit[0].replace(slashRegex, '/'); + url = uSplit.join(splitter); + + var rest = url; + + // trim before proceeding. + // This is to support parse stuff like " http://foo.com \n" + rest = rest.trim(); + + if (!slashesDenoteHost && url.split('#').length === 1) { + // Try fast path regexp + var simplePath = simplePathPattern.exec(rest); + if (simplePath) { + self.path = rest; + self.href = rest; + self.pathname = simplePath[1]; + if (simplePath[2]) { + self.search = simplePath[2]; + if (parseQueryString) { + self.query = parse(self.search.substr(1)); + } else { + self.query = self.search.substr(1); + } + } else if (parseQueryString) { + self.search = ''; + self.query = {}; + } + return self; + } + } + + var proto = protocolPattern.exec(rest); + if (proto) { + proto = proto[0]; + var lowerProto = proto.toLowerCase(); + self.protocol = lowerProto; + rest = rest.substr(proto.length); + } + + // figure out if it's got a host + // user@server is *always* interpreted as a hostname, and url + // resolution will treat //foo/bar as host=foo,path=bar because that's + // how the browser resolves relative URLs. + if (slashesDenoteHost || proto || rest.match(/^\/\/[^@\/]+@[^@\/]+/)) { + var slashes = rest.substr(0, 2) === '//'; + if (slashes && !(proto && hostlessProtocol[proto])) { + rest = rest.substr(2); + self.slashes = true; + } + } + var i, hec, l, p; + if (!hostlessProtocol[proto] && + (slashes || (proto && !slashedProtocol[proto]))) { + + // there's a hostname. + // the first instance of /, ?, ;, or # ends the host. + // + // If there is an @ in the hostname, then non-host chars *are* allowed + // to the left of the last @ sign, unless some host-ending character + // comes *before* the @-sign. + // URLs are obnoxious. + // + // ex: + // http://a@b@c/ => user:a@b host:c + // http://a@b?@c => user:a host:c path:/?@c + + // v0.12 TODO(isaacs): This is not quite how Chrome does things. + // Review our test case against browsers more comprehensively. + + // find the first instance of any hostEndingChars + var hostEnd = -1; + for (i = 0; i < hostEndingChars.length; i++) { + hec = rest.indexOf(hostEndingChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + + // at this point, either we have an explicit point where the + // auth portion cannot go past, or the last @ char is the decider. + var auth, atSign; + if (hostEnd === -1) { + // atSign can be anywhere. + atSign = rest.lastIndexOf('@'); + } else { + // atSign must be in auth portion. + // http://a@b/c@d => host:b auth:a path:/c@d + atSign = rest.lastIndexOf('@', hostEnd); + } + + // Now we have a portion which is definitely the auth. + // Pull that off. + if (atSign !== -1) { + auth = rest.slice(0, atSign); + rest = rest.slice(atSign + 1); + self.auth = decodeURIComponent(auth); + } + + // the host is the remaining to the left of the first non-host char + hostEnd = -1; + for (i = 0; i < nonHostChars.length; i++) { + hec = rest.indexOf(nonHostChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + // if we still have not hit it, then the entire thing is a host. + if (hostEnd === -1) + hostEnd = rest.length; + + self.host = rest.slice(0, hostEnd); + rest = rest.slice(hostEnd); + + // pull out port. + parseHost(self); + + // we've indicated that there is a hostname, + // so even if it's empty, it has to be present. + self.hostname = self.hostname || ''; + + // if hostname begins with [ and ends with ] + // assume that it's an IPv6 address. + var ipv6Hostname = self.hostname[0] === '[' && + self.hostname[self.hostname.length - 1] === ']'; + + // validate a little. + if (!ipv6Hostname) { + var hostparts = self.hostname.split(/\./); + for (i = 0, l = hostparts.length; i < l; i++) { + var part = hostparts[i]; + if (!part) continue; + if (!part.match(hostnamePartPattern)) { + var newpart = ''; + for (var j = 0, k = part.length; j < k; j++) { + if (part.charCodeAt(j) > 127) { + // we replace non-ASCII char with a temporary placeholder + // we need this to make sure size of hostname is not + // broken by replacing non-ASCII by nothing + newpart += 'x'; + } else { + newpart += part[j]; + } + } + // we test again with ASCII char only + if (!newpart.match(hostnamePartPattern)) { + var validParts = hostparts.slice(0, i); + var notHost = hostparts.slice(i + 1); + var bit = part.match(hostnamePartStart); + if (bit) { + validParts.push(bit[1]); + notHost.unshift(bit[2]); + } + if (notHost.length) { + rest = '/' + notHost.join('.') + rest; + } + self.hostname = validParts.join('.'); + break; + } + } + } + } + + if (self.hostname.length > hostnameMaxLen) { + self.hostname = ''; + } else { + // hostnames are always lower case. + self.hostname = self.hostname.toLowerCase(); + } + + if (!ipv6Hostname) { + // IDNA Support: Returns a punycoded representation of "domain". + // It only converts parts of the domain name that + // have non-ASCII characters, i.e. it doesn't matter if + // you call it with a domain that already is ASCII-only. + self.hostname = toASCII(self.hostname); + } + + p = self.port ? ':' + self.port : ''; + var h = self.hostname || ''; + self.host = h + p; + self.href += self.host; + + // strip [ and ] from the hostname + // the host field still retains them, though + if (ipv6Hostname) { + self.hostname = self.hostname.substr(1, self.hostname.length - 2); + if (rest[0] !== '/') { + rest = '/' + rest; + } + } + } + + // now rest is set to the post-host stuff. + // chop off any delim chars. + if (!unsafeProtocol[lowerProto]) { + + // First, make 100% sure that any "autoEscape" chars get + // escaped, even if encodeURIComponent doesn't think they + // need to be. + for (i = 0, l = autoEscape.length; i < l; i++) { + var ae = autoEscape[i]; + if (rest.indexOf(ae) === -1) + continue; + var esc = encodeURIComponent(ae); + if (esc === ae) { + esc = escape(ae); + } + rest = rest.split(ae).join(esc); + } + } + + + // chop off from the tail first. + var hash = rest.indexOf('#'); + if (hash !== -1) { + // got a fragment string. + self.hash = rest.substr(hash); + rest = rest.slice(0, hash); + } + var qm = rest.indexOf('?'); + if (qm !== -1) { + self.search = rest.substr(qm); + self.query = rest.substr(qm + 1); + if (parseQueryString) { + self.query = parse(self.query); + } + rest = rest.slice(0, qm); + } else if (parseQueryString) { + // no query string, but parseQueryString still requested + self.search = ''; + self.query = {}; + } + if (rest) self.pathname = rest; + if (slashedProtocol[lowerProto] && + self.hostname && !self.pathname) { + self.pathname = '/'; + } + + //to support http.request + if (self.pathname || self.search) { + p = self.pathname || ''; + var s = self.search || ''; + self.path = p + s; + } + + // finally, reconstruct the href based on what has been validated. + self.href = format(self); + return self; +} + +// format a parsed object into a url string +function urlFormat(obj) { + // ensure it's an object, and not a string url. + // If it's an obj, this is a no-op. + // this way, you can call url_format() on strings + // to clean up potentially wonky urls. + if (isString(obj)) obj = parse$1({}, obj); + return format(obj); +} + +function format(self) { + var auth = self.auth || ''; + if (auth) { + auth = encodeURIComponent(auth); + auth = auth.replace(/%3A/i, ':'); + auth += '@'; + } + + var protocol = self.protocol || '', + pathname = self.pathname || '', + hash = self.hash || '', + host = false, + query = ''; + + if (self.host) { + host = auth + self.host; + } else if (self.hostname) { + host = auth + (self.hostname.indexOf(':') === -1 ? + self.hostname : + '[' + this.hostname + ']'); + if (self.port) { + host += ':' + self.port; + } + } + + if (self.query && + isObject(self.query) && + Object.keys(self.query).length) { + query = stringify(self.query); + } + + var search = self.search || (query && ('?' + query)) || ''; + + if (protocol && protocol.substr(-1) !== ':') protocol += ':'; + + // only the slashedProtocols get the //. Not mailto:, xmpp:, etc. + // unless they had them to begin with. + if (self.slashes || + (!protocol || slashedProtocol[protocol]) && host !== false) { + host = '//' + (host || ''); + if (pathname && pathname.charAt(0) !== '/') pathname = '/' + pathname; + } else if (!host) { + host = ''; + } + + if (hash && hash.charAt(0) !== '#') hash = '#' + hash; + if (search && search.charAt(0) !== '?') search = '?' + search; + + pathname = pathname.replace(/[?#]/g, function(match) { + return encodeURIComponent(match); + }); + search = search.replace('#', '%23'); + + return protocol + host + pathname + search + hash; +} + +Url.prototype.format = function() { + return format(this); +}; + +function urlResolve(source, relative) { + return urlParse(source, false, true).resolve(relative); +} + +Url.prototype.resolve = function(relative) { + return this.resolveObject(urlParse(relative, false, true)).format(); +}; + +function urlResolveObject(source, relative) { + if (!source) return relative; + return urlParse(source, false, true).resolveObject(relative); +} + +Url.prototype.resolveObject = function(relative) { + if (isString(relative)) { + var rel = new Url(); + rel.parse(relative, false, true); + relative = rel; + } + + var result = new Url(); + var tkeys = Object.keys(this); + for (var tk = 0; tk < tkeys.length; tk++) { + var tkey = tkeys[tk]; + result[tkey] = this[tkey]; + } + + // hash is always overridden, no matter what. + // even href="" will remove it. + result.hash = relative.hash; + + // if the relative url is empty, then there's nothing left to do here. + if (relative.href === '') { + result.href = result.format(); + return result; + } + + // hrefs like //foo/bar always cut to the protocol. + if (relative.slashes && !relative.protocol) { + // take everything except the protocol from relative + var rkeys = Object.keys(relative); + for (var rk = 0; rk < rkeys.length; rk++) { + var rkey = rkeys[rk]; + if (rkey !== 'protocol') + result[rkey] = relative[rkey]; + } + + //urlParse appends trailing / to urls like http://www.example.com + if (slashedProtocol[result.protocol] && + result.hostname && !result.pathname) { + result.path = result.pathname = '/'; + } + + result.href = result.format(); + return result; + } + var relPath; + if (relative.protocol && relative.protocol !== result.protocol) { + // if it's a known url protocol, then changing + // the protocol does weird things + // first, if it's not file:, then we MUST have a host, + // and if there was a path + // to begin with, then we MUST have a path. + // if it is file:, then the host is dropped, + // because that's known to be hostless. + // anything else is assumed to be absolute. + if (!slashedProtocol[relative.protocol]) { + var keys = Object.keys(relative); + for (var v = 0; v < keys.length; v++) { + var k = keys[v]; + result[k] = relative[k]; + } + result.href = result.format(); + return result; + } + + result.protocol = relative.protocol; + if (!relative.host && !hostlessProtocol[relative.protocol]) { + relPath = (relative.pathname || '').split('/'); + while (relPath.length && !(relative.host = relPath.shift())); + if (!relative.host) relative.host = ''; + if (!relative.hostname) relative.hostname = ''; + if (relPath[0] !== '') relPath.unshift(''); + if (relPath.length < 2) relPath.unshift(''); + result.pathname = relPath.join('/'); + } else { + result.pathname = relative.pathname; + } + result.search = relative.search; + result.query = relative.query; + result.host = relative.host || ''; + result.auth = relative.auth; + result.hostname = relative.hostname || relative.host; + result.port = relative.port; + // to support http.request + if (result.pathname || result.search) { + var p = result.pathname || ''; + var s = result.search || ''; + result.path = p + s; + } + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; + } + + var isSourceAbs = (result.pathname && result.pathname.charAt(0) === '/'), + isRelAbs = ( + relative.host || + relative.pathname && relative.pathname.charAt(0) === '/' + ), + mustEndAbs = (isRelAbs || isSourceAbs || + (result.host && relative.pathname)), + removeAllDots = mustEndAbs, + srcPath = result.pathname && result.pathname.split('/') || [], + psychotic = result.protocol && !slashedProtocol[result.protocol]; + relPath = relative.pathname && relative.pathname.split('/') || []; + // if the url is a non-slashed url, then relative + // links like ../.. should be able + // to crawl up to the hostname, as well. This is strange. + // result.protocol has already been set by now. + // Later on, put the first path part into the host field. + if (psychotic) { + result.hostname = ''; + result.port = null; + if (result.host) { + if (srcPath[0] === '') srcPath[0] = result.host; + else srcPath.unshift(result.host); + } + result.host = ''; + if (relative.protocol) { + relative.hostname = null; + relative.port = null; + if (relative.host) { + if (relPath[0] === '') relPath[0] = relative.host; + else relPath.unshift(relative.host); + } + relative.host = null; + } + mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === ''); + } + var authInHost; + if (isRelAbs) { + // it's absolute. + result.host = (relative.host || relative.host === '') ? + relative.host : result.host; + result.hostname = (relative.hostname || relative.hostname === '') ? + relative.hostname : result.hostname; + result.search = relative.search; + result.query = relative.query; + srcPath = relPath; + // fall through to the dot-handling below. + } else if (relPath.length) { + // it's relative + // throw away the existing file, and take the new path instead. + if (!srcPath) srcPath = []; + srcPath.pop(); + srcPath = srcPath.concat(relPath); + result.search = relative.search; + result.query = relative.query; + } else if (!isNullOrUndefined(relative.search)) { + // just pull out the search. + // like href='?foo'. + // Put this after the other two cases because it simplifies the booleans + if (psychotic) { + result.hostname = result.host = srcPath.shift(); + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + result.search = relative.search; + result.query = relative.query; + //to support http.request + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.href = result.format(); + return result; + } + + if (!srcPath.length) { + // no path at all. easy. + // we've already handled the other stuff above. + result.pathname = null; + //to support http.request + if (result.search) { + result.path = '/' + result.search; + } else { + result.path = null; + } + result.href = result.format(); + return result; + } + + // if a url ENDs in . or .., then it must get a trailing slash. + // however, if it ends in anything else non-slashy, + // then it must NOT get a trailing slash. + var last = srcPath.slice(-1)[0]; + var hasTrailingSlash = ( + (result.host || relative.host || srcPath.length > 1) && + (last === '.' || last === '..') || last === ''); + + // strip single dots, resolve double dots to parent dir + // if the path tries to go above the root, `up` ends up > 0 + var up = 0; + for (var i = srcPath.length; i >= 0; i--) { + last = srcPath[i]; + if (last === '.') { + srcPath.splice(i, 1); + } else if (last === '..') { + srcPath.splice(i, 1); + up++; + } else if (up) { + srcPath.splice(i, 1); + up--; + } + } + + // if the path is allowed to go above the root, restore leading ..s + if (!mustEndAbs && !removeAllDots) { + for (; up--; up) { + srcPath.unshift('..'); + } + } + + if (mustEndAbs && srcPath[0] !== '' && + (!srcPath[0] || srcPath[0].charAt(0) !== '/')) { + srcPath.unshift(''); + } + + if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) { + srcPath.push(''); + } + + var isAbsolute = srcPath[0] === '' || + (srcPath[0] && srcPath[0].charAt(0) === '/'); + + // put the host back + if (psychotic) { + result.hostname = result.host = isAbsolute ? '' : + srcPath.length ? srcPath.shift() : ''; + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + + mustEndAbs = mustEndAbs || (result.host && srcPath.length); + + if (mustEndAbs && !isAbsolute) { + srcPath.unshift(''); + } + + if (!srcPath.length) { + result.pathname = null; + result.path = null; + } else { + result.pathname = srcPath.join('/'); + } + + //to support request.http + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.auth = relative.auth || result.auth; + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; +}; + +Url.prototype.parseHost = function() { + return parseHost(this); +}; + +function parseHost(self) { + var host = self.host; + var port = portPattern.exec(host); + if (port) { + port = port[0]; + if (port !== ':') { + self.port = port.substr(1); + } + host = host.substr(0, host.length - port.length); + } + if (host) self.hostname = host; +} + +/*! + * @pixi/constants - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/constants is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * Different types of environments for WebGL. + * + * @static + * @memberof PIXI + * @name ENV + * @enum {number} + * @property {number} WEBGL_LEGACY - Used for older v1 WebGL devices. PixiJS will aim to ensure compatibility + * with older / less advanced devices. If you experience unexplained flickering prefer this environment. + * @property {number} WEBGL - Version 1 of WebGL + * @property {number} WEBGL2 - Version 2 of WebGL + */ +var ENV = { + WEBGL_LEGACY: 0, + WEBGL: 1, + WEBGL2: 2, +}; + +/** + * Constant to identify the Renderer Type. + * + * @static + * @memberof PIXI + * @name RENDERER_TYPE + * @enum {number} + * @property {number} UNKNOWN - Unknown render type. + * @property {number} WEBGL - WebGL render type. + * @property {number} CANVAS - Canvas render type. + */ +var RENDERER_TYPE = { + UNKNOWN: 0, + WEBGL: 1, + CANVAS: 2, +}; + +/** + * Various blend modes supported by PIXI. + * + * IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes. + * Anything else will silently act like NORMAL. + * + * @memberof PIXI + * @name BLEND_MODES + * @enum {number} + * @property {number} NORMAL + * @property {number} ADD + * @property {number} MULTIPLY + * @property {number} SCREEN + * @property {number} OVERLAY + * @property {number} DARKEN + * @property {number} LIGHTEN + * @property {number} COLOR_DODGE + * @property {number} COLOR_BURN + * @property {number} HARD_LIGHT + * @property {number} SOFT_LIGHT + * @property {number} DIFFERENCE + * @property {number} EXCLUSION + * @property {number} HUE + * @property {number} SATURATION + * @property {number} COLOR + * @property {number} LUMINOSITY + * @property {number} NORMAL_NPM + * @property {number} ADD_NPM + * @property {number} SCREEN_NPM + * @property {number} NONE + * @property {number} SRC_IN + * @property {number} SRC_OUT + * @property {number} SRC_ATOP + * @property {number} DST_OVER + * @property {number} DST_IN + * @property {number} DST_OUT + * @property {number} DST_ATOP + * @property {number} SUBTRACT + * @property {number} SRC_OVER + * @property {number} ERASE + */ +var BLEND_MODES = { + NORMAL: 0, + ADD: 1, + MULTIPLY: 2, + SCREEN: 3, + OVERLAY: 4, + DARKEN: 5, + LIGHTEN: 6, + COLOR_DODGE: 7, + COLOR_BURN: 8, + HARD_LIGHT: 9, + SOFT_LIGHT: 10, + DIFFERENCE: 11, + EXCLUSION: 12, + HUE: 13, + SATURATION: 14, + COLOR: 15, + LUMINOSITY: 16, + NORMAL_NPM: 17, + ADD_NPM: 18, + SCREEN_NPM: 19, + NONE: 20, + + SRC_OVER: 0, + SRC_IN: 21, + SRC_OUT: 22, + SRC_ATOP: 23, + DST_OVER: 24, + DST_IN: 25, + DST_OUT: 26, + DST_ATOP: 27, + ERASE: 26, + SUBTRACT: 28, +}; + +/** + * Various webgl draw modes. These can be used to specify which GL drawMode to use + * under certain situations and renderers. + * + * @memberof PIXI + * @static + * @name DRAW_MODES + * @enum {number} + * @property {number} POINTS + * @property {number} LINES + * @property {number} LINE_LOOP + * @property {number} LINE_STRIP + * @property {number} TRIANGLES + * @property {number} TRIANGLE_STRIP + * @property {number} TRIANGLE_FAN + */ +var DRAW_MODES = { + POINTS: 0, + LINES: 1, + LINE_LOOP: 2, + LINE_STRIP: 3, + TRIANGLES: 4, + TRIANGLE_STRIP: 5, + TRIANGLE_FAN: 6, +}; + +/** + * Various GL texture/resources formats. + * + * @memberof PIXI + * @static + * @name FORMATS + * @enum {number} + * @property {number} RGBA=6408 + * @property {number} RGB=6407 + * @property {number} ALPHA=6406 + * @property {number} LUMINANCE=6409 + * @property {number} LUMINANCE_ALPHA=6410 + * @property {number} DEPTH_COMPONENT=6402 + * @property {number} DEPTH_STENCIL=34041 + */ +var FORMATS = { + RGBA: 6408, + RGB: 6407, + ALPHA: 6406, + LUMINANCE: 6409, + LUMINANCE_ALPHA: 6410, + DEPTH_COMPONENT: 6402, + DEPTH_STENCIL: 34041, +}; + +/** + * Various GL target types. + * + * @memberof PIXI + * @static + * @name TARGETS + * @enum {number} + * @property {number} TEXTURE_2D=3553 + * @property {number} TEXTURE_CUBE_MAP=34067 + * @property {number} TEXTURE_2D_ARRAY=35866 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_X=34069 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_X=34070 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Y=34071 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Y=34072 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Z=34073 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Z=34074 + */ +var TARGETS = { + TEXTURE_2D: 3553, + TEXTURE_CUBE_MAP: 34067, + TEXTURE_2D_ARRAY: 35866, + TEXTURE_CUBE_MAP_POSITIVE_X: 34069, + TEXTURE_CUBE_MAP_NEGATIVE_X: 34070, + TEXTURE_CUBE_MAP_POSITIVE_Y: 34071, + TEXTURE_CUBE_MAP_NEGATIVE_Y: 34072, + TEXTURE_CUBE_MAP_POSITIVE_Z: 34073, + TEXTURE_CUBE_MAP_NEGATIVE_Z: 34074, +}; + +/** + * Various GL data format types. + * + * @memberof PIXI + * @static + * @name TYPES + * @enum {number} + * @property {number} UNSIGNED_BYTE=5121 + * @property {number} UNSIGNED_SHORT=5123 + * @property {number} UNSIGNED_SHORT_5_6_5=33635 + * @property {number} UNSIGNED_SHORT_4_4_4_4=32819 + * @property {number} UNSIGNED_SHORT_5_5_5_1=32820 + * @property {number} FLOAT=5126 + * @property {number} HALF_FLOAT=36193 + */ +var TYPES = { + UNSIGNED_BYTE: 5121, + UNSIGNED_SHORT: 5123, + UNSIGNED_SHORT_5_6_5: 33635, + UNSIGNED_SHORT_4_4_4_4: 32819, + UNSIGNED_SHORT_5_5_5_1: 32820, + FLOAT: 5126, + HALF_FLOAT: 36193, +}; + +/** + * The scale modes that are supported by pixi. + * + * The {@link PIXI.settings.SCALE_MODE} scale mode affects the default scaling mode of future operations. + * It can be re-assigned to either LINEAR or NEAREST, depending upon suitability. + * + * @memberof PIXI + * @static + * @name SCALE_MODES + * @enum {number} + * @property {number} LINEAR Smooth scaling + * @property {number} NEAREST Pixelating scaling + */ +var SCALE_MODES = { + LINEAR: 1, + NEAREST: 0, +}; + +/** + * The wrap modes that are supported by pixi. + * + * The {@link PIXI.settings.WRAP_MODE} wrap mode affects the default wrapping mode of future operations. + * It can be re-assigned to either CLAMP or REPEAT, depending upon suitability. + * If the texture is non power of two then clamp will be used regardless as WebGL can + * only use REPEAT if the texture is po2. + * + * This property only affects WebGL. + * + * @name WRAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} CLAMP - The textures uvs are clamped + * @property {number} REPEAT - The texture uvs tile and repeat + * @property {number} MIRRORED_REPEAT - The texture uvs tile and repeat with mirroring + */ +var WRAP_MODES = { + CLAMP: 33071, + REPEAT: 10497, + MIRRORED_REPEAT: 33648, +}; + +/** + * Mipmap filtering modes that are supported by pixi. + * + * The {@link PIXI.settings.MIPMAP_TEXTURES} affects default texture filtering. + * Mipmaps are generated for a baseTexture if its `mipmap` field is `ON`, + * or its `POW2` and texture dimensions are powers of 2. + * Due to platform restriction, `ON` option will work like `POW2` for webgl-1. + * + * This property only affects WebGL. + * + * @name MIPMAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} OFF - No mipmaps + * @property {number} POW2 - Generate mipmaps if texture dimensions are pow2 + * @property {number} ON - Always generate mipmaps + */ +var MIPMAP_MODES = { + OFF: 0, + POW2: 1, + ON: 2, +}; + +/** + * The gc modes that are supported by pixi. + * + * The {@link PIXI.settings.GC_MODE} Garbage Collection mode for PixiJS textures is AUTO + * If set to GC_MODE, the renderer will occasionally check textures usage. If they are not + * used for a specified period of time they will be removed from the GPU. They will of course + * be uploaded again when they are required. This is a silent behind the scenes process that + * should ensure that the GPU does not get filled up. + * + * Handy for mobile devices! + * This property only affects WebGL. + * + * @name GC_MODES + * @enum {number} + * @static + * @memberof PIXI + * @property {number} AUTO - Garbage collection will happen periodically automatically + * @property {number} MANUAL - Garbage collection will need to be called manually + */ +var GC_MODES = { + AUTO: 0, + MANUAL: 1, +}; + +/** + * Constants that specify float precision in shaders. + * + * @name PRECISION + * @memberof PIXI + * @static + * @enum {string} + * @constant + * @property {string} LOW='lowp' + * @property {string} MEDIUM='mediump' + * @property {string} HIGH='highp' + */ +var PRECISION = { + LOW: 'lowp', + MEDIUM: 'mediump', + HIGH: 'highp', +}; + +/*! + * @pixi/utils - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/utils is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The prefix that denotes a URL is for a retina asset. + * + * @static + * @name RETINA_PREFIX + * @memberof PIXI.settings + * @type {RegExp} + * @default /@([0-9\.]+)x/ + * @example `@2x` + */ +settings.RETINA_PREFIX = /@([0-9\.]+)x/; + +/** + * Should the `failIfMajorPerformanceCaveat` flag be enabled as a context option used in the `isWebGLSupported` function. + * For most scenarios this should be left as true, as otherwise the user may have a poor experience. + * However, it can be useful to disable under certain scenarios, such as headless unit tests. + * + * @static + * @name FAIL_IF_MAJOR_PERFORMANCE_CAVEAT + * @memberof PIXI.settings + * @type {boolean} + * @default true + */ +settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = true; + +var saidHello = false; +var VERSION = '5.1.3'; + +/** + * Logs out the version and renderer information for this running instance of PIXI. + * If you don't want to see this message you can run `PIXI.utils.skipHello()` before + * creating your renderer. Keep in mind that doing that will forever make you a jerk face. + * + * @static + * @function sayHello + * @memberof PIXI.utils + * @param {string} type - The string renderer type to log. + */ +function sayHello(type) +{ + if (saidHello) + { + return; + } + + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + var args = [ + ("\n %c %c %c PixiJS " + VERSION + " - ✰ " + type + " ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \n\n"), + 'background: #ff66a5; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff66a5; background: #030307; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'background: #ffc3dc; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;' ]; + + window.console.log.apply(console, args); + } + else if (window.console) + { + window.console.log(("PixiJS " + VERSION + " - " + type + " - http://www.pixijs.com/")); + } + + saidHello = true; +} + +var supported; + +/** + * Helper for checking for WebGL support. + * + * @memberof PIXI.utils + * @function isWebGLSupported + * @return {boolean} Is WebGL supported. + */ +function isWebGLSupported() +{ + if (typeof supported === 'undefined') + { + supported = (function supported() + { + var contextOptions = { + stencil: true, + failIfMajorPerformanceCaveat: settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT, + }; + + try + { + if (!window.WebGLRenderingContext) + { + return false; + } + + var canvas = document.createElement('canvas'); + var gl = canvas.getContext('webgl', contextOptions) + || canvas.getContext('experimental-webgl', contextOptions); + + var success = !!(gl && gl.getContextAttributes().stencil); + + if (gl) + { + var loseContext = gl.getExtension('WEBGL_lose_context'); + + if (loseContext) + { + loseContext.loseContext(); + } + } + + gl = null; + + return success; + } + catch (e) + { + return false; + } + })(); + } + + return supported; +} + +/** + * Converts a hexadecimal color number to an [R, G, B] array of normalized floats (numbers from 0.0 to 1.0). + * + * @example + * PIXI.utils.hex2rgb(0xffffff); // returns [1, 1, 1] + * @memberof PIXI.utils + * @function hex2rgb + * @param {number} hex - The hexadecimal number to convert + * @param {number[]} [out=[]] If supplied, this array will be used rather than returning a new one + * @return {number[]} An array representing the [R, G, B] of the color where all values are floats. + */ +function hex2rgb(hex, out) +{ + out = out || []; + + out[0] = ((hex >> 16) & 0xFF) / 255; + out[1] = ((hex >> 8) & 0xFF) / 255; + out[2] = (hex & 0xFF) / 255; + + return out; +} + +/** + * Converts a hexadecimal color number to a string. + * + * @example + * PIXI.utils.hex2string(0xffffff); // returns "#ffffff" + * @memberof PIXI.utils + * @function hex2string + * @param {number} hex - Number in hex (e.g., `0xffffff`) + * @return {string} The string color (e.g., `"#ffffff"`). + */ +function hex2string(hex) +{ + hex = hex.toString(16); + hex = '000000'.substr(0, 6 - hex.length) + hex; + + return ("#" + hex); +} + +/** + * Converts a hexadecimal string to a hexadecimal color number. + * + * @example + * PIXI.utils.string2hex("#ffffff"); // returns 0xffffff + * @memberof PIXI.utils + * @function string2hex + * @param {string} The string color (e.g., `"#ffffff"`) + * @return {number} Number in hexadecimal. + */ +function string2hex(string) +{ + if (typeof string === 'string' && string[0] === '#') + { + string = string.substr(1); + } + + return parseInt(string, 16); +} + +/** + * Corrects PixiJS blend, takes premultiplied alpha into account + * + * @memberof PIXI.utils + * @function mapPremultipliedBlendModes + * @private + * @param {Array} [array] - The array to output into. + * @return {Array} Mapped modes. + */ +function mapPremultipliedBlendModes() +{ + var pm = []; + var npm = []; + + for (var i = 0; i < 32; i++) + { + pm[i] = i; + npm[i] = i; + } + + pm[BLEND_MODES.NORMAL_NPM] = BLEND_MODES.NORMAL; + pm[BLEND_MODES.ADD_NPM] = BLEND_MODES.ADD; + pm[BLEND_MODES.SCREEN_NPM] = BLEND_MODES.SCREEN; + + npm[BLEND_MODES.NORMAL] = BLEND_MODES.NORMAL_NPM; + npm[BLEND_MODES.ADD] = BLEND_MODES.ADD_NPM; + npm[BLEND_MODES.SCREEN] = BLEND_MODES.SCREEN_NPM; + + var array = []; + + array.push(npm); + array.push(pm); + + return array; +} + +/** + * maps premultiply flag and blendMode to adjusted blendMode + * @memberof PIXI.utils + * @const premultiplyBlendMode + * @type {Array} + */ +var premultiplyBlendMode = mapPremultipliedBlendModes(); + +/** + * changes blendMode according to texture format + * + * @memberof PIXI.utils + * @function correctBlendMode + * @param {number} blendMode supposed blend mode + * @param {boolean} premultiplied whether source is premultiplied + * @returns {number} true blend mode for this texture + */ +function correctBlendMode(blendMode, premultiplied) +{ + return premultiplyBlendMode[premultiplied ? 1 : 0][blendMode]; +} + +/** + * combines rgb and alpha to out array + * + * @memberof PIXI.utils + * @function premultiplyRgba + * @param {Float32Array|number[]} rgb input rgb + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyRgba(rgb, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + if (premultiply || premultiply === undefined) + { + out[0] = rgb[0] * alpha; + out[1] = rgb[1] * alpha; + out[2] = rgb[2] * alpha; + } + else + { + out[0] = rgb[0]; + out[1] = rgb[1]; + out[2] = rgb[2]; + } + out[3] = alpha; + + return out; +} + +/** + * premultiplies tint + * + * @memberof PIXI.utils + * @function premultiplyTint + * @param {number} tint integer RGB + * @param {number} alpha floating point alpha (0.0-1.0) + * @returns {number} tint multiplied by alpha + */ +function premultiplyTint(tint, alpha) +{ + if (alpha === 1.0) + { + return (alpha * 255 << 24) + tint; + } + if (alpha === 0.0) + { + return 0; + } + var R = ((tint >> 16) & 0xFF); + var G = ((tint >> 8) & 0xFF); + var B = (tint & 0xFF); + + R = ((R * alpha) + 0.5) | 0; + G = ((G * alpha) + 0.5) | 0; + B = ((B * alpha) + 0.5) | 0; + + return (alpha * 255 << 24) + (R << 16) + (G << 8) + B; +} + +/** + * converts integer tint and float alpha to vec4 form, premultiplies by default + * + * @memberof PIXI.utils + * @function premultiplyTintToRgba + * @param {number} tint input tint + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyTintToRgba(tint, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + out[0] = ((tint >> 16) & 0xFF) / 255.0; + out[1] = ((tint >> 8) & 0xFF) / 255.0; + out[2] = (tint & 0xFF) / 255.0; + if (premultiply || premultiply === undefined) + { + out[0] *= alpha; + out[1] *= alpha; + out[2] *= alpha; + } + out[3] = alpha; + + return out; +} + +/** + * Generic Mask Stack data structure + * + * @memberof PIXI.utils + * @function createIndicesForQuads + * @param {number} size - Number of quads + * @param {Uint16Array|Uint32Array} [outBuffer] - Buffer for output, length has to be `6 * size` + * @return {Uint16Array|Uint32Array} - Resulting index buffer + */ +function createIndicesForQuads(size, outBuffer) +{ + if ( outBuffer === void 0 ) outBuffer = null; + + // the total number of indices in our array, there are 6 points per quad. + var totalIndices = size * 6; + + outBuffer = outBuffer || new Uint16Array(totalIndices); + + if (outBuffer.length !== totalIndices) + { + throw new Error(("Out buffer length is incorrect, got " + (outBuffer.length) + " and expected " + totalIndices)); + } + + // fill the indices with the quads to draw + for (var i = 0, j = 0; i < totalIndices; i += 6, j += 4) + { + outBuffer[i + 0] = j + 0; + outBuffer[i + 1] = j + 1; + outBuffer[i + 2] = j + 2; + outBuffer[i + 3] = j + 0; + outBuffer[i + 4] = j + 2; + outBuffer[i + 5] = j + 3; + } + + return outBuffer; +} + +/** + * Remove items from a javascript array without generating garbage + * + * @function removeItems + * @memberof PIXI.utils + * @param {Array} arr Array to remove elements from + * @param {number} startIdx starting index + * @param {number} removeCount how many to remove + */ +function removeItems(arr, startIdx, removeCount) +{ + var length = arr.length; + var i; + + if (startIdx >= length || removeCount === 0) + { + return; + } + + removeCount = (startIdx + removeCount > length ? length - startIdx : removeCount); + + var len = length - removeCount; + + for (i = startIdx; i < len; ++i) + { + arr[i] = arr[i + removeCount]; + } + + arr.length = len; +} + +var nextUid = 0; + +/** + * Gets the next unique identifier + * + * @memberof PIXI.utils + * @function uid + * @return {number} The next unique identifier to use. + */ +function uid() +{ + return ++nextUid; +} + +/** + * Returns sign of number + * + * @memberof PIXI.utils + * @function sign + * @param {number} n - the number to check the sign of + * @returns {number} 0 if `n` is 0, -1 if `n` is negative, 1 if `n` is positive + */ +function sign$1(n) +{ + if (n === 0) { return 0; } + + return n < 0 ? -1 : 1; +} + +// Taken from the bit-twiddle package + +/** + * Rounds to next power of two. + * + * @function nextPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} + */ +function nextPow2(v) +{ + v += v === 0; + --v; + v |= v >>> 1; + v |= v >>> 2; + v |= v >>> 4; + v |= v >>> 8; + v |= v >>> 16; + + return v + 1; +} + +/** + * Checks if a number is a power of two. + * + * @function isPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {boolean} `true` if value is power of two + */ +function isPow2(v) +{ + return !(v & (v - 1)) && (!!v); +} + +/** + * Computes ceil of log base 2 + * + * @function log2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} logarithm base 2 + */ +function log2(v) +{ + var r = (v > 0xFFFF) << 4; + + v >>>= r; + + var shift = (v > 0xFF) << 3; + + v >>>= shift; r |= shift; + shift = (v > 0xF) << 2; + v >>>= shift; r |= shift; + shift = (v > 0x3) << 1; + v >>>= shift; r |= shift; + + return r | (v >> 1); +} + +/** + * @todo Describe property usage + * + * @static + * @name ProgramCache + * @memberof PIXI.utils + * @type {Object} + */ +var ProgramCache = {}; + +/** + * @todo Describe property usage + * + * @static + * @name TextureCache + * @memberof PIXI.utils + * @type {Object} + */ +var TextureCache = Object.create(null); + +/** + * @todo Describe property usage + * + * @static + * @name BaseTextureCache + * @memberof PIXI.utils + * @type {Object} + */ + +var BaseTextureCache = Object.create(null); + +/** + * Trim transparent borders from a canvas + * + * @memberof PIXI.utils + * @function trimCanvas + * @param {HTMLCanvasElement} canvas - the canvas to trim + * @returns {object} Trim data + */ +function trimCanvas(canvas) +{ + // https://gist.github.com/remy/784508 + + var width = canvas.width; + var height = canvas.height; + + var context = canvas.getContext('2d'); + var imageData = context.getImageData(0, 0, width, height); + var pixels = imageData.data; + var len = pixels.length; + + var bound = { + top: null, + left: null, + right: null, + bottom: null, + }; + var data = null; + var i; + var x; + var y; + + for (i = 0; i < len; i += 4) + { + if (pixels[i + 3] !== 0) + { + x = (i / 4) % width; + y = ~~((i / 4) / width); + + if (bound.top === null) + { + bound.top = y; + } + + if (bound.left === null) + { + bound.left = x; + } + else if (x < bound.left) + { + bound.left = x; + } + + if (bound.right === null) + { + bound.right = x + 1; + } + else if (bound.right < x) + { + bound.right = x + 1; + } + + if (bound.bottom === null) + { + bound.bottom = y; + } + else if (bound.bottom < y) + { + bound.bottom = y; + } + } + } + + if (bound.top !== null) + { + width = bound.right - bound.left; + height = bound.bottom - bound.top + 1; + data = context.getImageData(bound.left, bound.top, width, height); + } + + return { + height: height, + width: width, + data: data, + }; +} + +/** + * Creates a Canvas element of the given size to be used as a target for rendering to. + * + * @class + * @memberof PIXI.utils + */ +var CanvasRenderTarget = function CanvasRenderTarget(width, height, resolution) +{ + /** + * The Canvas object that belongs to this CanvasRenderTarget. + * + * @member {HTMLCanvasElement} + */ + this.canvas = document.createElement('canvas'); + + /** + * A CanvasRenderingContext2D object representing a two-dimensional rendering context. + * + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + this.resolution = resolution || settings.RESOLUTION; + + this.resize(width, height); +}; + +var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + +/** + * Clears the canvas that was created by the CanvasRenderTarget class. + * + * @private + */ +CanvasRenderTarget.prototype.clear = function clear () +{ + this.context.setTransform(1, 0, 0, 1, 0, 0); + this.context.clearRect(0, 0, this.canvas.width, this.canvas.height); +}; + +/** + * Resizes the canvas to the specified width and height. + * + * @param {number} width - the new width of the canvas + * @param {number} height - the new height of the canvas + */ +CanvasRenderTarget.prototype.resize = function resize (width, height) +{ + this.canvas.width = width * this.resolution; + this.canvas.height = height * this.resolution; +}; + +/** + * Destroys this canvas. + * + */ +CanvasRenderTarget.prototype.destroy = function destroy () +{ + this.context = null; + this.canvas = null; +}; + +/** + * The width of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.width.get = function () +{ + return this.canvas.width; +}; + +prototypeAccessors.width.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.width = val; +}; + +/** + * The height of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.height.get = function () +{ + return this.canvas.height; +}; + +prototypeAccessors.height.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.height = val; +}; + +Object.defineProperties( CanvasRenderTarget.prototype, prototypeAccessors ); + +var tempAnchor; + +/** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * Nipped from the resource loader! + * + * @ignore + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ +function determineCrossOrigin(url$1, loc) +{ + if ( loc === void 0 ) loc = window.location; + + // data: and javascript: urls are considered same-origin + if (url$1.indexOf('data:') === 0) + { + return ''; + } + + // default is window.location + loc = loc || window.location; + + if (!tempAnchor) + { + tempAnchor = document.createElement('a'); + } + + // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + tempAnchor.href = url$1; + url$1 = url.parse(tempAnchor.href); + + var samePort = (!url$1.port && loc.port === '') || (url$1.port === loc.port); + + // if cross origin + if (url$1.hostname !== loc.hostname || !samePort || url$1.protocol !== loc.protocol) + { + return 'anonymous'; + } + + return ''; +} + +/** + * get the resolution / device pixel ratio of an asset by looking for the prefix + * used by spritesheets and image urls + * + * @memberof PIXI.utils + * @function getResolutionOfUrl + * @param {string} url - the image path + * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set. + * @return {number} resolution / device pixel ratio of an asset + */ +function getResolutionOfUrl(url, defaultValue) +{ + var resolution = settings.RETINA_PREFIX.exec(url); + + if (resolution) + { + return parseFloat(resolution[1]); + } + + return defaultValue !== undefined ? defaultValue : 1; +} + +// A map of warning messages already fired +var warnings = {}; + +/** + * Helper for warning developers about deprecated features & settings. + * A stack track for warnings is given; useful for tracking-down where + * deprecated methods/properties/classes are being used within the code. + * + * @memberof PIXI.utils + * @function deprecation + * @param {string} version - The version where the feature became deprecated + * @param {string} message - Message should include what is deprecated, where, and the new solution + * @param {number} [ignoreDepth=3] - The number of steps to ignore at the top of the error stack + * this is mostly to ignore internal deprecation calls. + */ +function deprecation(version, message, ignoreDepth) +{ + if ( ignoreDepth === void 0 ) ignoreDepth = 3; + + // Ignore duplicat + if (warnings[message]) + { + return; + } + + /* eslint-disable no-console */ + var stack = new Error().stack; + + // Handle IE < 10 and Safari < 6 + if (typeof stack === 'undefined') + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + } + else + { + // chop off the stack trace which includes PixiJS internal calls + stack = stack.split('\n').splice(ignoreDepth).join('\n'); + + if (console.groupCollapsed) + { + console.groupCollapsed( + '%cPixiJS Deprecation Warning: %c%s', + 'color:#614108;background:#fffbe6', + 'font-weight:normal;color:#614108;background:#fffbe6', + (message + "\nDeprecated since v" + version) + ); + console.warn(stack); + console.groupEnd(); + } + else + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + console.warn(stack); + } + } + /* eslint-enable no-console */ + + warnings[message] = true; +} + +/*! + * @pixi/math - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/math is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * @class + * @memberof PIXI + */ +var Point = function Point(x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; +}; + +/** + * Creates a clone of this point + * + * @return {PIXI.Point} a copy of the point + */ +Point.prototype.clone = function clone () +{ + return new Point(this.x, this.y); +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from + * @returns {PIXI.IPoint} Returns itself. + */ +Point.prototype.copyFrom = function copyFrom (p) +{ + this.set(p.x, p.y); + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +Point.prototype.copyTo = function copyTo (p) +{ + p.set(this.x, this.y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +Point.prototype.equals = function equals (p) +{ + return (p.x === this.x) && (p.y === this.y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +Point.prototype.set = function set (x, y) +{ + this.x = x || 0; + this.y = y || ((y !== 0) ? this.x : 0); +}; + +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * An ObservablePoint is a point that triggers a callback when the point's position is changed. + * + * @class + * @memberof PIXI + */ +var ObservablePoint = function ObservablePoint(cb, scope, x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + this._x = x; + this._y = y; + + this.cb = cb; + this.scope = scope; +}; + +var prototypeAccessors$1 = { x: { configurable: true },y: { configurable: true } }; + +/** + * Creates a clone of this point. + * The callback and scope params can be overidden otherwise they will default + * to the clone object's values. + * + * @override + * @param {Function} [cb=null] - callback when changed + * @param {object} [scope=null] - owner of callback + * @return {PIXI.ObservablePoint} a copy of the point + */ +ObservablePoint.prototype.clone = function clone (cb, scope) +{ + if ( cb === void 0 ) cb = null; + if ( scope === void 0 ) scope = null; + + var _cb = cb || this.cb; + var _scope = scope || this.scope; + + return new ObservablePoint(_cb, _scope, this._x, this._y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +ObservablePoint.prototype.set = function set (x, y) +{ + var _x = x || 0; + var _y = y || ((y !== 0) ? _x : 0); + + if (this._x !== _x || this._y !== _y) + { + this._x = _x; + this._y = _y; + this.cb.call(this.scope); + } +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from. + * @returns {PIXI.IPoint} Returns itself. + */ +ObservablePoint.prototype.copyFrom = function copyFrom (p) +{ + if (this._x !== p.x || this._y !== p.y) + { + this._x = p.x; + this._y = p.y; + this.cb.call(this.scope); + } + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +ObservablePoint.prototype.copyTo = function copyTo (p) +{ + p.set(this._x, this._y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +ObservablePoint.prototype.equals = function equals (p) +{ + return (p.x === this._x) && (p.y === this._y); +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.x.get = function () +{ + return this._x; +}; + +prototypeAccessors$1.x.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._x !== value) + { + this._x = value; + this.cb.call(this.scope); + } +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.y.get = function () +{ + return this._y; +}; + +prototypeAccessors$1.y.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._y !== value) + { + this._y = value; + this.cb.call(this.scope); + } +}; + +Object.defineProperties( ObservablePoint.prototype, prototypeAccessors$1 ); + +/** + * A number, or a string containing a number. + * @memberof PIXI + * @typedef {(PIXI.Point|PIXI.ObservablePoint)} IPoint + */ + +/** + * Two Pi. + * + * @static + * @constant {number} PI_2 + * @memberof PIXI + */ +var PI_2 = Math.PI * 2; + +/** + * Conversion factor for converting radians to degrees. + * + * @static + * @constant {number} RAD_TO_DEG + * @memberof PIXI + */ +var RAD_TO_DEG = 180 / Math.PI; + +/** + * Conversion factor for converting degrees to radians. + * + * @static + * @constant {number} DEG_TO_RAD + * @memberof PIXI + */ +var DEG_TO_RAD = Math.PI / 180; + +/** + * Constants that identify shapes, mainly to prevent `instanceof` calls. + * + * @static + * @constant + * @name SHAPES + * @memberof PIXI + * @type {object} + * @property {number} POLY Polygon + * @property {number} RECT Rectangle + * @property {number} CIRC Circle + * @property {number} ELIP Ellipse + * @property {number} RREC Rounded Rectangle + */ +var SHAPES = { + POLY: 0, + RECT: 1, + CIRC: 2, + ELIP: 3, + RREC: 4, +}; + +/** + * The PixiJS Matrix as a class makes it a lot faster. + * + * Here is a representation of it: + * ```js + * | a | c | tx| + * | b | d | ty| + * | 0 | 0 | 1 | + * ``` + * @class + * @memberof PIXI + */ +var Matrix = function Matrix(a, b, c, d, tx, ty) +{ + if ( a === void 0 ) a = 1; + if ( b === void 0 ) b = 0; + if ( c === void 0 ) c = 0; + if ( d === void 0 ) d = 1; + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + /** + * @member {number} + * @default 1 + */ + this.a = a; + + /** + * @member {number} + * @default 0 + */ + this.b = b; + + /** + * @member {number} + * @default 0 + */ + this.c = c; + + /** + * @member {number} + * @default 1 + */ + this.d = d; + + /** + * @member {number} + * @default 0 + */ + this.tx = tx; + + /** + * @member {number} + * @default 0 + */ + this.ty = ty; + + this.array = null; +}; + +var staticAccessors = { IDENTITY: { configurable: true },TEMP_MATRIX: { configurable: true } }; + +/** + * Creates a Matrix object based on the given array. The Element to Matrix mapping order is as follows: + * + * a = array[0] + * b = array[1] + * c = array[3] + * d = array[4] + * tx = array[2] + * ty = array[5] + * + * @param {number[]} array - The array that the matrix will be populated from. + */ +Matrix.prototype.fromArray = function fromArray (array) +{ + this.a = array[0]; + this.b = array[1]; + this.c = array[3]; + this.d = array[4]; + this.tx = array[2]; + this.ty = array[5]; +}; + +/** + * sets the matrix properties + * + * @param {number} a - Matrix component + * @param {number} b - Matrix component + * @param {number} c - Matrix component + * @param {number} d - Matrix component + * @param {number} tx - Matrix component + * @param {number} ty - Matrix component + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.set = function set (a, b, c, d, tx, ty) +{ + this.a = a; + this.b = b; + this.c = c; + this.d = d; + this.tx = tx; + this.ty = ty; + + return this; +}; + +/** + * Creates an array from the current Matrix object. + * + * @param {boolean} transpose - Whether we need to transpose the matrix or not + * @param {Float32Array} [out=new Float32Array(9)] - If provided the array will be assigned to out + * @return {number[]} the newly created array which contains the matrix + */ +Matrix.prototype.toArray = function toArray (transpose, out) +{ + if (!this.array) + { + this.array = new Float32Array(9); + } + + var array = out || this.array; + + if (transpose) + { + array[0] = this.a; + array[1] = this.b; + array[2] = 0; + array[3] = this.c; + array[4] = this.d; + array[5] = 0; + array[6] = this.tx; + array[7] = this.ty; + array[8] = 1; + } + else + { + array[0] = this.a; + array[1] = this.c; + array[2] = this.tx; + array[3] = this.b; + array[4] = this.d; + array[5] = this.ty; + array[6] = 0; + array[7] = 0; + array[8] = 1; + } + + return array; +}; + +/** + * Get a new position with the current transformation applied. + * Can be used to go from a child's coordinate space to the world coordinate space. (e.g. rendering) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, transformed through this matrix + */ +Matrix.prototype.apply = function apply (pos, newPos) +{ + newPos = newPos || new Point(); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.a * x) + (this.c * y) + this.tx; + newPos.y = (this.b * x) + (this.d * y) + this.ty; + + return newPos; +}; + +/** + * Get a new position with the inverse of the current transformation applied. + * Can be used to go from the world coordinate space to a child's coordinate space. (e.g. input) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, inverse-transformed through this matrix + */ +Matrix.prototype.applyInverse = function applyInverse (pos, newPos) +{ + newPos = newPos || new Point(); + + var id = 1 / ((this.a * this.d) + (this.c * -this.b)); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.d * id * x) + (-this.c * id * y) + (((this.ty * this.c) - (this.tx * this.d)) * id); + newPos.y = (this.a * id * y) + (-this.b * id * x) + (((-this.ty * this.a) + (this.tx * this.b)) * id); + + return newPos; +}; + +/** + * Translates the matrix on the x and y. + * + * @param {number} x How much to translate x by + * @param {number} y How much to translate y by + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.translate = function translate (x, y) +{ + this.tx += x; + this.ty += y; + + return this; +}; + +/** + * Applies a scale transformation to the matrix. + * + * @param {number} x The amount to scale horizontally + * @param {number} y The amount to scale vertically + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.scale = function scale (x, y) +{ + this.a *= x; + this.d *= y; + this.c *= x; + this.b *= y; + this.tx *= x; + this.ty *= y; + + return this; +}; + +/** + * Applies a rotation transformation to the matrix. + * + * @param {number} angle - The angle in radians. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.rotate = function rotate (angle) +{ + var cos = Math.cos(angle); + var sin = Math.sin(angle); + + var a1 = this.a; + var c1 = this.c; + var tx1 = this.tx; + + this.a = (a1 * cos) - (this.b * sin); + this.b = (a1 * sin) + (this.b * cos); + this.c = (c1 * cos) - (this.d * sin); + this.d = (c1 * sin) + (this.d * cos); + this.tx = (tx1 * cos) - (this.ty * sin); + this.ty = (tx1 * sin) + (this.ty * cos); + + return this; +}; + +/** + * Appends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to append. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.append = function append (matrix) +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + + this.a = (matrix.a * a1) + (matrix.b * c1); + this.b = (matrix.a * b1) + (matrix.b * d1); + this.c = (matrix.c * a1) + (matrix.d * c1); + this.d = (matrix.c * b1) + (matrix.d * d1); + + this.tx = (matrix.tx * a1) + (matrix.ty * c1) + this.tx; + this.ty = (matrix.tx * b1) + (matrix.ty * d1) + this.ty; + + return this; +}; + +/** + * Sets the matrix based on all the available properties + * + * @param {number} x - Position on the x axis + * @param {number} y - Position on the y axis + * @param {number} pivotX - Pivot on the x axis + * @param {number} pivotY - Pivot on the y axis + * @param {number} scaleX - Scale on the x axis + * @param {number} scaleY - Scale on the y axis + * @param {number} rotation - Rotation in radians + * @param {number} skewX - Skew on the x axis + * @param {number} skewY - Skew on the y axis + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.setTransform = function setTransform (x, y, pivotX, pivotY, scaleX, scaleY, rotation, skewX, skewY) +{ + this.a = Math.cos(rotation + skewY) * scaleX; + this.b = Math.sin(rotation + skewY) * scaleX; + this.c = -Math.sin(rotation - skewX) * scaleY; + this.d = Math.cos(rotation - skewX) * scaleY; + + this.tx = x - ((pivotX * this.a) + (pivotY * this.c)); + this.ty = y - ((pivotX * this.b) + (pivotY * this.d)); + + return this; +}; + +/** + * Prepends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to prepend + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.prepend = function prepend (matrix) +{ + var tx1 = this.tx; + + if (matrix.a !== 1 || matrix.b !== 0 || matrix.c !== 0 || matrix.d !== 1) + { + var a1 = this.a; + var c1 = this.c; + + this.a = (a1 * matrix.a) + (this.b * matrix.c); + this.b = (a1 * matrix.b) + (this.b * matrix.d); + this.c = (c1 * matrix.a) + (this.d * matrix.c); + this.d = (c1 * matrix.b) + (this.d * matrix.d); + } + + this.tx = (tx1 * matrix.a) + (this.ty * matrix.c) + matrix.tx; + this.ty = (tx1 * matrix.b) + (this.ty * matrix.d) + matrix.ty; + + return this; +}; + +/** + * Decomposes the matrix (x, y, scaleX, scaleY, and rotation) and sets the properties on to a transform. + * + * @param {PIXI.Transform} transform - The transform to apply the properties to. + * @return {PIXI.Transform} The transform with the newly applied properties + */ +Matrix.prototype.decompose = function decompose (transform) +{ + // sort out rotation / skew.. + var a = this.a; + var b = this.b; + var c = this.c; + var d = this.d; + + var skewX = -Math.atan2(-c, d); + var skewY = Math.atan2(b, a); + + var delta = Math.abs(skewX + skewY); + + if (delta < 0.00001 || Math.abs(PI_2 - delta) < 0.00001) + { + transform.rotation = skewY; + transform.skew.x = transform.skew.y = 0; + } + else + { + transform.rotation = 0; + transform.skew.x = skewX; + transform.skew.y = skewY; + } + + // next set scale + transform.scale.x = Math.sqrt((a * a) + (b * b)); + transform.scale.y = Math.sqrt((c * c) + (d * d)); + + // next set position + transform.position.x = this.tx; + transform.position.y = this.ty; + + return transform; +}; + +/** + * Inverts this matrix + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.invert = function invert () +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + var tx1 = this.tx; + var n = (a1 * d1) - (b1 * c1); + + this.a = d1 / n; + this.b = -b1 / n; + this.c = -c1 / n; + this.d = a1 / n; + this.tx = ((c1 * this.ty) - (d1 * tx1)) / n; + this.ty = -((a1 * this.ty) - (b1 * tx1)) / n; + + return this; +}; + +/** + * Resets this Matrix to an identity (default) matrix. + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.identity = function identity () +{ + this.a = 1; + this.b = 0; + this.c = 0; + this.d = 1; + this.tx = 0; + this.ty = 0; + + return this; +}; + +/** + * Creates a new Matrix object with the same values as this one. + * + * @return {PIXI.Matrix} A copy of this matrix. Good for chaining method calls. + */ +Matrix.prototype.clone = function clone () +{ + var matrix = new Matrix(); + + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the given matrix to be the same as the ones in this matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy to. + * @return {PIXI.Matrix} The matrix given in parameter with its values updated. + */ +Matrix.prototype.copyTo = function copyTo (matrix) +{ + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the matrix to be the same as the ones in given matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy from. + * @return {PIXI.Matrix} this + */ +Matrix.prototype.copyFrom = function copyFrom (matrix) +{ + this.a = matrix.a; + this.b = matrix.b; + this.c = matrix.c; + this.d = matrix.d; + this.tx = matrix.tx; + this.ty = matrix.ty; + + return this; +}; + +/** + * A default (identity) matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.IDENTITY.get = function () +{ + return new Matrix(); +}; + +/** + * A temp matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.TEMP_MATRIX.get = function () +{ + return new Matrix(); +}; + +Object.defineProperties( Matrix, staticAccessors ); + +// Your friendly neighbour https://en.wikipedia.org/wiki/Dihedral_group + +/* + * Transform matrix for operation n is: + * | ux | vx | + * | uy | vy | + */ + +var ux = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1]; +var uy = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vx = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vy = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1]; + +/** + * [Cayley Table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * for the composition of each rotation in the dihederal group D8. + * + * @type number[][] + * @private + */ +var rotationCayley = []; + +/** + * Matrices for each `GD8Symmetry` rotation. + * + * @type Matrix[] + * @private + */ +var rotationMatrices = []; + +/* + * Alias for {@code Math.sign}. + */ +var signum = Math.sign; + +/* + * Initializes `rotationCayley` and `rotationMatrices`. It is called + * only once below. + */ +function init() +{ + for (var i = 0; i < 16; i++) + { + var row = []; + + rotationCayley.push(row); + + for (var j = 0; j < 16; j++) + { + /* Multiplies rotation matrices i and j. */ + var _ux = signum((ux[i] * ux[j]) + (vx[i] * uy[j])); + var _uy = signum((uy[i] * ux[j]) + (vy[i] * uy[j])); + var _vx = signum((ux[i] * vx[j]) + (vx[i] * vy[j])); + var _vy = signum((uy[i] * vx[j]) + (vy[i] * vy[j])); + + /* Finds rotation matrix matching the product and pushes it. */ + for (var k = 0; k < 16; k++) + { + if (ux[k] === _ux && uy[k] === _uy + && vx[k] === _vx && vy[k] === _vy) + { + row.push(k); + break; + } + } + } + } + + for (var i$1 = 0; i$1 < 16; i$1++) + { + var mat = new Matrix(); + + mat.set(ux[i$1], uy[i$1], vx[i$1], vy[i$1], 0, 0); + rotationMatrices.push(mat); + } +} + +init(); + +/** + * @memberof PIXI + * @typedef {number} GD8Symmetry + * @see PIXI.GroupD8 + */ + +/** + * Implements the dihedral group D8, which is similar to + * [group D4]{@link http://mathworld.wolfram.com/DihedralGroupD4.html}; + * D8 is the same but with diagonals, and it is used for texture + * rotations. + * + * The directions the U- and V- axes after rotation + * of an angle of `a: GD8Constant` are the vectors `(uX(a), uY(a))` + * and `(vX(a), vY(a))`. These aren't necessarily unit vectors. + * + * **Origin:**
+ * This is the small part of gameofbombs.com portal system. It works. + * + * @see PIXI.GroupD8.E + * @see PIXI.GroupD8.SE + * @see PIXI.GroupD8.S + * @see PIXI.GroupD8.SW + * @see PIXI.GroupD8.W + * @see PIXI.GroupD8.NW + * @see PIXI.GroupD8.N + * @see PIXI.GroupD8.NE + * @author Ivan @ivanpopelyshev + * @class + * @memberof PIXI + */ +var GroupD8 = { + /** + * | Rotation | Direction | + * |----------|-----------| + * | 0° | East | + * + * @constant {PIXI.GD8Symmetry} + */ + E: 0, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 45°↻ | Southeast | + * + * @constant {PIXI.GD8Symmetry} + */ + SE: 1, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 90°↻ | South | + * + * @constant {PIXI.GD8Symmetry} + */ + S: 2, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 135°↻ | Southwest | + * + * @constant {PIXI.GD8Symmetry} + */ + SW: 3, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 180° | West | + * + * @constant {PIXI.GD8Symmetry} + */ + W: 4, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -135°/225°↻ | Northwest | + * + * @constant {PIXI.GD8Symmetry} + */ + NW: 5, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -90°/270°↻ | North | + * + * @constant {PIXI.GD8Symmetry} + */ + N: 6, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -45°/315°↻ | Northeast | + * + * @constant {PIXI.GD8Symmetry} + */ + NE: 7, + + /** + * Reflection about Y-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_VERTICAL: 8, + + /** + * Reflection about the main diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + MAIN_DIAGONAL: 10, + + /** + * Reflection about X-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_HORIZONTAL: 12, + + /** + * Reflection about reverse diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + REVERSE_DIAGONAL: 14, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the U-axis + * after rotating the axes. + */ + uX: function (ind) { return ux[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the U-axis + * after rotating the axes. + */ + uY: function (ind) { return uy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the V-axis + * after rotating the axes. + */ + vX: function (ind) { return vx[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the V-axis + * after rotating the axes. + */ + vY: function (ind) { return vy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - symmetry whose opposite + * is needed. Only rotations have opposite symmetries while + * reflections don't. + * @return {PIXI.GD8Symmetry} The opposite symmetry of `rotation` + */ + inv: function (rotation) { + if (rotation & 8)// true only if between 8 & 15 (reflections) + { + return rotation & 15;// or rotation % 16 + } + + return (-rotation) & 7;// or (8 - rotation) % 8 + }, + + /** + * Composes the two D8 operations. + * + * Taking `^` as reflection: + * + * | | E=0 | S=2 | W=4 | N=6 | E^=8 | S^=10 | W^=12 | N^=14 | + * |-------|-----|-----|-----|-----|------|-------|-------|-------| + * | E=0 | E | S | W | N | E^ | S^ | W^ | N^ | + * | S=2 | S | W | N | E | S^ | W^ | N^ | E^ | + * | W=4 | W | N | E | S | W^ | N^ | E^ | S^ | + * | N=6 | N | E | S | W | N^ | E^ | S^ | W^ | + * | E^=8 | E^ | N^ | W^ | S^ | E | N | W | S | + * | S^=10 | S^ | E^ | N^ | W^ | S | E | N | W | + * | W^=12 | W^ | S^ | E^ | N^ | W | S | E | N | + * | N^=14 | N^ | W^ | S^ | E^ | N | W | S | E | + * + * [This is a Cayley table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation, which + * is the row in the above cayley table. + * @param {PIXI.GD8Symmetry} rotationFirst - First operation, which + * is the column in the above cayley table. + * @return {PIXI.GD8Symmetry} Composed operation + */ + add: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][rotationFirst] + ); }, + + /** + * Reverse of `add`. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation + * @param {PIXI.GD8Symmetry} rotationFirst - First operation + * @return {PIXI.GD8Symmetry} Result + */ + sub: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][GroupD8.inv(rotationFirst)] + ); }, + + /** + * Adds 180 degrees to rotation, which is a commutative + * operation. + * + * @memberof PIXI.GroupD8 + * @param {number} rotation - The number to rotate. + * @returns {number} Rotated number + */ + rotate180: function (rotation) { return rotation ^ 4; }, + + /** + * Checks if the rotation angle is vertical, i.e. south + * or north. It doesn't work for reflections. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - The number to check. + * @returns {boolean} Whether or not the direction is vertical + */ + isVertical: function (rotation) { return (rotation & 3) === 2; }, // rotation % 4 === 2 + + /** + * Approximates the vector `V(dx,dy)` into one of the + * eight directions provided by `GroupD8`. + * + * @memberof PIXI.GroupD8 + * @param {number} dx - X-component of the vector + * @param {number} dy - Y-component of the vector + * @return {PIXI.GD8Symmetry} Approximation of the vector into + * one of the eight symmetries. + */ + byDirection: function (dx, dy) { + if (Math.abs(dx) * 2 <= Math.abs(dy)) + { + if (dy >= 0) + { + return GroupD8.S; + } + + return GroupD8.N; + } + else if (Math.abs(dy) * 2 <= Math.abs(dx)) + { + if (dx > 0) + { + return GroupD8.E; + } + + return GroupD8.W; + } + else if (dy > 0) + { + if (dx > 0) + { + return GroupD8.SE; + } + + return GroupD8.SW; + } + else if (dx > 0) + { + return GroupD8.NE; + } + + return GroupD8.NW; + }, + + /** + * Helps sprite to compensate texture packer rotation. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.Matrix} matrix - sprite world matrix + * @param {PIXI.GD8Symmetry} rotation - The rotation factor to use. + * @param {number} tx - sprite anchoring + * @param {number} ty - sprite anchoring + */ + matrixAppendRotationInv: function (matrix, rotation, tx, ty) { + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + // Packer used "rotation", we use "inv(rotation)" + var mat = rotationMatrices[GroupD8.inv(rotation)]; + + mat.tx = tx; + mat.ty = ty; + matrix.append(mat); + }, +}; + +/** + * Transform that takes care about its versions + * + * @class + * @memberof PIXI + */ +var Transform = function Transform() +{ + /** + * The world transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.worldTransform = new Matrix(); + + /** + * The local transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.localTransform = new Matrix(); + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * + * @member {PIXI.ObservablePoint} + */ + this.position = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The scale factor of the object. + * + * @member {PIXI.ObservablePoint} + */ + this.scale = new ObservablePoint(this.onChange, this, 1, 1); + + /** + * The pivot point of the displayObject that it rotates around. + * + * @member {PIXI.ObservablePoint} + */ + this.pivot = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The skew amount, on the x and y axis. + * + * @member {PIXI.ObservablePoint} + */ + this.skew = new ObservablePoint(this.updateSkew, this, 0, 0); + + /** + * The rotation amount. + * + * @protected + * @member {number} + */ + this._rotation = 0; + + /** + * The X-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cx = 1; + + /** + * The Y-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sx = 0; + + /** + * The X-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cy = 0; + + /** + * The Y-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sy = 1; + + /** + * The locally unique ID of the local transform. + * + * @protected + * @member {number} + */ + this._localID = 0; + + /** + * The locally unique ID of the local transform + * used to calculate the current local transformation matrix. + * + * @protected + * @member {number} + */ + this._currentLocalID = 0; + + /** + * The locally unique ID of the world transform. + * + * @protected + * @member {number} + */ + this._worldID = 0; + + /** + * The locally unique ID of the parent's world transform + * used to calculate the current world transformation matrix. + * + * @protected + * @member {number} + */ + this._parentID = 0; +}; + +var prototypeAccessors$1$1 = { rotation: { configurable: true } }; + +/** + * Called when a value changes. + * + * @protected + */ +Transform.prototype.onChange = function onChange () +{ + this._localID++; +}; + +/** + * Called when the skew or the rotation changes. + * + * @protected + */ +Transform.prototype.updateSkew = function updateSkew () +{ + this._cx = Math.cos(this._rotation + this.skew._y); + this._sx = Math.sin(this._rotation + this.skew._y); + this._cy = -Math.sin(this._rotation - this.skew._x); // cos, added PI/2 + this._sy = Math.cos(this._rotation - this.skew._x); // sin, added PI/2 + + this._localID++; +}; + +/** + * Updates the local transformation matrix. + */ +Transform.prototype.updateLocalTransform = function updateLocalTransform () +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } +}; + +/** + * Updates the local and the world transformation matrices. + * + * @param {PIXI.Transform} parentTransform - The parent transform + */ +Transform.prototype.updateTransform = function updateTransform (parentTransform) +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } + + if (this._parentID !== parentTransform._worldID) + { + // concat the parent matrix with the objects transform. + var pt = parentTransform.worldTransform; + var wt = this.worldTransform; + + wt.a = (lt.a * pt.a) + (lt.b * pt.c); + wt.b = (lt.a * pt.b) + (lt.b * pt.d); + wt.c = (lt.c * pt.a) + (lt.d * pt.c); + wt.d = (lt.c * pt.b) + (lt.d * pt.d); + wt.tx = (lt.tx * pt.a) + (lt.ty * pt.c) + pt.tx; + wt.ty = (lt.tx * pt.b) + (lt.ty * pt.d) + pt.ty; + + this._parentID = parentTransform._worldID; + + // update the id of the transform.. + this._worldID++; + } +}; + +/** + * Decomposes a matrix and sets the transforms properties based on it. + * + * @param {PIXI.Matrix} matrix - The matrix to decompose + */ +Transform.prototype.setFromMatrix = function setFromMatrix (matrix) +{ + matrix.decompose(this); + this._localID++; +}; + +/** + * The rotation of the object in radians. + * + * @member {number} + */ +prototypeAccessors$1$1.rotation.get = function () +{ + return this._rotation; +}; + +prototypeAccessors$1$1.rotation.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._rotation !== value) + { + this._rotation = value; + this.updateSkew(); + } +}; + +Object.defineProperties( Transform.prototype, prototypeAccessors$1$1 ); + +/** + * A default (identity) transform + * + * @static + * @constant + * @member {PIXI.Transform} + */ +Transform.IDENTITY = new Transform(); + +/** + * Size object, contains width and height + * + * @memberof PIXI + * @typedef {object} ISize + * @property {number} width - Width component + * @property {number} height - Height component + */ + +/** + * Rectangle object is an area defined by its position, as indicated by its top-left corner + * point (x, y) and by its width and its height. + * + * @class + * @memberof PIXI + */ +var Rectangle = function Rectangle(x, y, width, height) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = Number(x); + + /** + * @member {number} + * @default 0 + */ + this.y = Number(y); + + /** + * @member {number} + * @default 0 + */ + this.width = Number(width); + + /** + * @member {number} + * @default 0 + */ + this.height = Number(height); + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.RECT + * @see PIXI.SHAPES + */ + this.type = SHAPES.RECT; +}; + +var prototypeAccessors$2 = { left: { configurable: true },right: { configurable: true },top: { configurable: true },bottom: { configurable: true } }; +var staticAccessors$1 = { EMPTY: { configurable: true } }; + +/** + * returns the left edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.left.get = function () +{ + return this.x; +}; + +/** + * returns the right edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.right.get = function () +{ + return this.x + this.width; +}; + +/** + * returns the top edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.top.get = function () +{ + return this.y; +}; + +/** + * returns the bottom edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.bottom.get = function () +{ + return this.y + this.height; +}; + +/** + * A constant empty rectangle. + * + * @static + * @constant + * @member {PIXI.Rectangle} + */ +staticAccessors$1.EMPTY.get = function () +{ + return new Rectangle(0, 0, 0, 0); +}; + +/** + * Creates a clone of this Rectangle + * + * @return {PIXI.Rectangle} a copy of the rectangle + */ +Rectangle.prototype.clone = function clone () +{ + return new Rectangle(this.x, this.y, this.width, this.height); +}; + +/** + * Copies another rectangle to this one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy from. + * @return {PIXI.Rectangle} Returns itself. + */ +Rectangle.prototype.copyFrom = function copyFrom (rectangle) +{ + this.x = rectangle.x; + this.y = rectangle.y; + this.width = rectangle.width; + this.height = rectangle.height; + + return this; +}; + +/** + * Copies this rectangle to another one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy to. + * @return {PIXI.Rectangle} Returns given parameter. + */ +Rectangle.prototype.copyTo = function copyTo (rectangle) +{ + rectangle.x = this.x; + rectangle.y = this.y; + rectangle.width = this.width; + rectangle.height = this.height; + + return rectangle; +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rectangle + */ +Rectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + if (x >= this.x && x < this.x + this.width) + { + if (y >= this.y && y < this.y + this.height) + { + return true; + } + } + + return false; +}; + +/** + * Pads the rectangle making it grow in all directions. + * + * @param {number} paddingX - The horizontal padding amount. + * @param {number} paddingY - The vertical padding amount. + */ +Rectangle.prototype.pad = function pad (paddingX, paddingY) +{ + paddingX = paddingX || 0; + paddingY = paddingY || ((paddingY !== 0) ? paddingX : 0); + + this.x -= paddingX; + this.y -= paddingY; + + this.width += paddingX * 2; + this.height += paddingY * 2; +}; + +/** + * Fits this rectangle around the passed one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to fit. + */ +Rectangle.prototype.fit = function fit (rectangle) +{ + var x1 = Math.max(this.x, rectangle.x); + var x2 = Math.min(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.max(this.y, rectangle.y); + var y2 = Math.min(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = Math.max(x2 - x1, 0); + this.y = y1; + this.height = Math.max(y2 - y1, 0); +}; + +/** + * Enlarges rectangle that way its corners lie on grid + * + * @param {number} [resolution=1] resolution + * @param {number} [eps=0.001] precision + */ +Rectangle.prototype.ceil = function ceil (resolution, eps) +{ + if ( resolution === void 0 ) resolution = 1; + if ( eps === void 0 ) eps = 0.001; + + var x2 = Math.ceil((this.x + this.width - eps) * resolution) / resolution; + var y2 = Math.ceil((this.y + this.height - eps) * resolution) / resolution; + + this.x = Math.floor((this.x + eps) * resolution) / resolution; + this.y = Math.floor((this.y + eps) * resolution) / resolution; + + this.width = x2 - this.x; + this.height = y2 - this.y; +}; + +/** + * Enlarges this rectangle to include the passed rectangle. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to include. + */ +Rectangle.prototype.enlarge = function enlarge (rectangle) +{ + var x1 = Math.min(this.x, rectangle.x); + var x2 = Math.max(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.min(this.y, rectangle.y); + var y2 = Math.max(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = x2 - x1; + this.y = y1; + this.height = y2 - y1; +}; + +Object.defineProperties( Rectangle.prototype, prototypeAccessors$2 ); +Object.defineProperties( Rectangle, staticAccessors$1 ); + +/** + * The Circle object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Circle = function Circle(x, y, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( radius === void 0 ) radius = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.CIRC + * @see PIXI.SHAPES + */ + this.type = SHAPES.CIRC; +}; + +/** + * Creates a clone of this Circle instance + * + * @return {PIXI.Circle} a copy of the Circle + */ +Circle.prototype.clone = function clone () +{ + return new Circle(this.x, this.y, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this circle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Circle + */ +Circle.prototype.contains = function contains (x, y) +{ + if (this.radius <= 0) + { + return false; + } + + var r2 = this.radius * this.radius; + var dx = (this.x - x); + var dy = (this.y - y); + + dx *= dx; + dy *= dy; + + return (dx + dy <= r2); +}; + +/** +* Returns the framing rectangle of the circle as a Rectangle object +* +* @return {PIXI.Rectangle} the framing rectangle +*/ +Circle.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2); +}; + +/** + * The Ellipse object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Ellipse = function Ellipse(x, y, halfWidth, halfHeight) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( halfWidth === void 0 ) halfWidth = 0; + if ( halfHeight === void 0 ) halfHeight = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = halfWidth; + + /** + * @member {number} + * @default 0 + */ + this.height = halfHeight; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.ELIP + * @see PIXI.SHAPES + */ + this.type = SHAPES.ELIP; +}; + +/** + * Creates a clone of this Ellipse instance + * + * @return {PIXI.Ellipse} a copy of the ellipse + */ +Ellipse.prototype.clone = function clone () +{ + return new Ellipse(this.x, this.y, this.width, this.height); +}; + +/** + * Checks whether the x and y coordinates given are contained within this ellipse + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coords are within this ellipse + */ +Ellipse.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + // normalize the coords to an ellipse with center 0,0 + var normx = ((x - this.x) / this.width); + var normy = ((y - this.y) / this.height); + + normx *= normx; + normy *= normy; + + return (normx + normy <= 1); +}; + +/** + * Returns the framing rectangle of the ellipse as a Rectangle object + * + * @return {PIXI.Rectangle} the framing rectangle + */ +Ellipse.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height); +}; + +/** + * A class to define a shape via user defined co-orinates. + * + * @class + * @memberof PIXI + */ +var Polygon = function Polygon() +{ + var points = [], len = arguments.length; + while ( len-- ) points[ len ] = arguments[ len ]; + + if (Array.isArray(points[0])) + { + points = points[0]; + } + + // if this is an array of points, convert it to a flat array of numbers + if (points[0] instanceof Point) + { + var p = []; + + for (var i = 0, il = points.length; i < il; i++) + { + p.push(points[i].x, points[i].y); + } + + points = p; + } + + /** + * An array of the points of this polygon + * + * @member {number[]} + */ + this.points = points; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.POLY + * @see PIXI.SHAPES + */ + this.type = SHAPES.POLY; + + /** + * `false` after moveTo, `true` after `closePath`. In all other cases it is `true`. + * @member {boolean} + * @default true + */ + this.closeStroke = true; +}; + +/** + * Creates a clone of this polygon + * + * @return {PIXI.Polygon} a copy of the polygon + */ +Polygon.prototype.clone = function clone () +{ + var polygon = new Polygon(this.points.slice()); + + polygon.closeStroke = this.closeStroke; + + return polygon; +}; + +/** + * Checks whether the x and y coordinates passed to this function are contained within this polygon + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this polygon + */ +Polygon.prototype.contains = function contains (x, y) +{ + var inside = false; + + // use some raycasting to test hits + // https://github.com/substack/point-in-polygon/blob/master/index.js + var length = this.points.length / 2; + + for (var i = 0, j = length - 1; i < length; j = i++) + { + var xi = this.points[i * 2]; + var yi = this.points[(i * 2) + 1]; + var xj = this.points[j * 2]; + var yj = this.points[(j * 2) + 1]; + var intersect = ((yi > y) !== (yj > y)) && (x < ((xj - xi) * ((y - yi) / (yj - yi))) + xi); + + if (intersect) + { + inside = !inside; + } + } + + return inside; +}; + +/** + * The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its + * top-left corner point (x, y) and by its width and its height and its radius. + * + * @class + * @memberof PIXI + */ +var RoundedRectangle = function RoundedRectangle(x, y, width, height, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + if ( radius === void 0 ) radius = 20; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = width; + + /** + * @member {number} + * @default 0 + */ + this.height = height; + + /** + * @member {number} + * @default 20 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readonly + * @default PIXI.SHAPES.RREC + * @see PIXI.SHAPES + */ + this.type = SHAPES.RREC; +}; + +/** + * Creates a clone of this Rounded Rectangle + * + * @return {PIXI.RoundedRectangle} a copy of the rounded rectangle + */ +RoundedRectangle.prototype.clone = function clone () +{ + return new RoundedRectangle(this.x, this.y, this.width, this.height, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rounded Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rounded Rectangle + */ +RoundedRectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + if (x >= this.x && x <= this.x + this.width) + { + if (y >= this.y && y <= this.y + this.height) + { + if ((y >= this.y + this.radius && y <= this.y + this.height - this.radius) + || (x >= this.x + this.radius && x <= this.x + this.width - this.radius)) + { + return true; + } + var dx = x - (this.x + this.radius); + var dy = y - (this.y + this.radius); + var radius2 = this.radius * this.radius; + + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.width - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dy = y - (this.y + this.height - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + } + } + + return false; +}; + +/*! + * @pixi/display - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/display is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Sets the default value for the container property 'sortableChildren'. + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @static + * @constant + * @name SORTABLE_CHILDREN + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ +settings.SORTABLE_CHILDREN = false; + +/** + * 'Builder' pattern for bounds rectangles. + * + * This could be called an Axis-Aligned Bounding Box. + * It is not an actual shape. It is a mutable thing; no 'EMPTY' or those kind of problems. + * + * @class + * @memberof PIXI + */ +var Bounds = function Bounds() +{ + /** + * @member {number} + * @default 0 + */ + this.minX = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.minY = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxX = -Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxY = -Infinity; + + this.rect = null; +}; + +/** + * Checks if bounds are empty. + * + * @return {boolean} True if empty. + */ +Bounds.prototype.isEmpty = function isEmpty () +{ + return this.minX > this.maxX || this.minY > this.maxY; +}; + +/** + * Clears the bounds and resets. + * + */ +Bounds.prototype.clear = function clear () +{ + this.updateID++; + + this.minX = Infinity; + this.minY = Infinity; + this.maxX = -Infinity; + this.maxY = -Infinity; +}; + +/** + * Can return Rectangle.EMPTY constant, either construct new rectangle, either use your rectangle + * It is not guaranteed that it will return tempRect + * + * @param {PIXI.Rectangle} rect - temporary object will be used if AABB is not empty + * @returns {PIXI.Rectangle} A rectangle of the bounds + */ +Bounds.prototype.getRectangle = function getRectangle (rect) +{ + if (this.minX > this.maxX || this.minY > this.maxY) + { + return Rectangle.EMPTY; + } + + rect = rect || new Rectangle(0, 0, 1, 1); + + rect.x = this.minX; + rect.y = this.minY; + rect.width = this.maxX - this.minX; + rect.height = this.maxY - this.minY; + + return rect; +}; + +/** + * This function should be inlined when its possible. + * + * @param {PIXI.Point} point - The point to add. + */ +Bounds.prototype.addPoint = function addPoint (point) +{ + this.minX = Math.min(this.minX, point.x); + this.maxX = Math.max(this.maxX, point.x); + this.minY = Math.min(this.minY, point.y); + this.maxY = Math.max(this.maxY, point.y); +}; + +/** + * Adds a quad, not transformed + * + * @param {Float32Array} vertices - The verts to add. + */ +Bounds.prototype.addQuad = function addQuad (vertices) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = vertices[0]; + var y = vertices[1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[2]; + y = vertices[3]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[4]; + y = vertices[5]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[6]; + y = vertices[7]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds sprite frame, transformed. + * + * @param {PIXI.Transform} transform - TODO + * @param {number} x0 - TODO + * @param {number} y0 - TODO + * @param {number} x1 - TODO + * @param {number} y1 - TODO + */ +Bounds.prototype.addFrame = function addFrame (transform, x0, y0, x1, y1) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = (a * x0) + (c * y0) + tx; + var y = (b * x0) + (d * y0) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y0) + tx; + y = (b * x1) + (d * y0) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x0) + (c * y1) + tx; + y = (b * x0) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y1) + tx; + y = (b * x1) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds screen vertices from array + * + * @param {Float32Array} vertexData - calculated vertices + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertexData = function addVertexData (vertexData, beginOffset, endOffset) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var x = vertexData[i]; + var y = vertexData[i + 1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Add an array of mesh vertices + * + * @param {PIXI.Transform} transform - mesh transform + * @param {Float32Array} vertices - mesh coordinates in array + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertices = function addVertices (transform, vertices, beginOffset, endOffset) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var rawX = vertices[i]; + var rawY = vertices[i + 1]; + var x = (a * rawX) + (c * rawY) + tx; + var y = (d * rawY) + (b * rawX) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds other Bounds + * + * @param {PIXI.Bounds} bounds - TODO + */ +Bounds.prototype.addBounds = function addBounds (bounds) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = bounds.minX < minX ? bounds.minX : minX; + this.minY = bounds.minY < minY ? bounds.minY : minY; + this.maxX = bounds.maxX > maxX ? bounds.maxX : maxX; + this.maxY = bounds.maxY > maxY ? bounds.maxY : maxY; +}; + +/** + * Adds other Bounds, masked with Bounds + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Bounds} mask - TODO + */ +Bounds.prototype.addBoundsMask = function addBoundsMask (bounds, mask) +{ + var _minX = bounds.minX > mask.minX ? bounds.minX : mask.minX; + var _minY = bounds.minY > mask.minY ? bounds.minY : mask.minY; + var _maxX = bounds.maxX < mask.maxX ? bounds.maxX : mask.maxX; + var _maxY = bounds.maxY < mask.maxY ? bounds.maxY : mask.maxY; + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +/** + * Adds other Bounds, masked with Rectangle + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Rectangle} area - TODO + */ +Bounds.prototype.addBoundsArea = function addBoundsArea (bounds, area) +{ + var _minX = bounds.minX > area.x ? bounds.minX : area.x; + var _minY = bounds.minY > area.y ? bounds.minY : area.y; + var _maxX = bounds.maxX < area.x + area.width ? bounds.maxX : (area.x + area.width); + var _maxY = bounds.maxY < area.y + area.height ? bounds.maxY : (area.y + area.height); + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +// _tempDisplayObjectParent = new DisplayObject(); + +/** + * The base class for all objects that are rendered on the screen. + * + * This is an abstract class and should not be used on its own; rather it should be extended. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var DisplayObject = /*@__PURE__*/(function (EventEmitter) { + function DisplayObject() + { + EventEmitter.call(this); + + this.tempDisplayObjectParent = null; + + // TODO: need to create Transform from factory + /** + * World transform and local transform of this object. + * This will become read-only later, please do not assign anything there unless you know what are you doing. + * + * @member {PIXI.Transform} + */ + this.transform = new Transform(); + + /** + * The opacity of the object. + * + * @member {number} + */ + this.alpha = 1; + + /** + * The visibility of the object. If false the object will not be drawn, and + * the updateTransform function will not be called. + * + * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually. + * + * @member {boolean} + */ + this.visible = true; + + /** + * Can this object be rendered, if false the object will not be drawn but the updateTransform + * methods will still be called. + * + * Only affects recursive calls from parent. You can ask for bounds manually. + * + * @member {boolean} + */ + this.renderable = true; + + /** + * The display object container that contains this display object. + * + * @member {PIXI.Container} + * @readonly + */ + this.parent = null; + + /** + * The multiplied alpha of the displayObject. + * + * @member {number} + * @readonly + */ + this.worldAlpha = 1; + + /** + * Which index in the children array the display component was before the previous zIndex sort. + * Used by containers to help sort objects with the same zIndex, by using previous array index as the decider. + * + * @member {number} + * @protected + */ + this._lastSortedIndex = 0; + + /** + * The zIndex of the displayObject. + * A higher value will mean it will be rendered on top of other displayObjects within the same container. + * + * @member {number} + * @protected + */ + this._zIndex = 0; + + /** + * The area the filter is applied to. This is used as more of an optimization + * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle. + * + * Also works as an interaction mask. + * + * @member {?PIXI.Rectangle} + */ + this.filterArea = null; + + /** + * Sets the filters for the displayObject. + * * IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer. + * To remove filters simply set this property to `'null'`. + * + * @member {?PIXI.Filter[]} + */ + this.filters = null; + this._enabledFilters = null; + + /** + * The bounds object, this is used to calculate and store the bounds of the displayObject. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + this._boundsID = 0; + this._lastBoundsID = -1; + this._boundsRect = null; + this._localBoundsRect = null; + + /** + * The original, cached mask of the object. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + * @protected + */ + this._mask = null; + + /** + * Fired when this DisplayObject is added to a Container. + * + * @event PIXI.DisplayObject#added + * @param {PIXI.Container} container - The container added to. + */ + + /** + * Fired when this DisplayObject is removed from a Container. + * + * @event PIXI.DisplayObject#removed + * @param {PIXI.Container} container - The container removed from. + */ + + /** + * If the object has been destroyed via destroy(). If true, it should not be used. + * + * @member {boolean} + * @protected + */ + this._destroyed = false; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = false; + } + + if ( EventEmitter ) DisplayObject.__proto__ = EventEmitter; + DisplayObject.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + DisplayObject.prototype.constructor = DisplayObject; + + var prototypeAccessors = { _tempDisplayObjectParent: { configurable: true },x: { configurable: true },y: { configurable: true },worldTransform: { configurable: true },localTransform: { configurable: true },position: { configurable: true },scale: { configurable: true },pivot: { configurable: true },skew: { configurable: true },rotation: { configurable: true },angle: { configurable: true },zIndex: { configurable: true },worldVisible: { configurable: true },mask: { configurable: true } }; + + /** + * @protected + * @member {PIXI.DisplayObject} + */ + DisplayObject.mixin = function mixin (source) + { + // in ES8/ES2017, this would be really easy: + // Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); + + // get all the enumerable property keys + var keys = Object.keys(source); + + // loop through properties + for (var i = 0; i < keys.length; ++i) + { + var propertyName = keys[i]; + + // Set the property using the property descriptor - this works for accessors and normal value properties + Object.defineProperty( + DisplayObject.prototype, + propertyName, + Object.getOwnPropertyDescriptor(source, propertyName) + ); + } + }; + + prototypeAccessors._tempDisplayObjectParent.get = function () + { + if (this.tempDisplayObjectParent === null) + { + this.tempDisplayObjectParent = new DisplayObject(); + } + + return this.tempDisplayObjectParent; + }; + + /** + * Updates the object transform for rendering. + * + * TODO - Optimization pass! + */ + DisplayObject.prototype.updateTransform = function updateTransform () + { + this.transform.updateTransform(this.parent.transform); + // multiply the alphas.. + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + this._bounds.updateID++; + }; + + /** + * Recursively updates transform of all objects from the root to this one + * internal function for toLocal() + */ + DisplayObject.prototype._recursivePostUpdateTransform = function _recursivePostUpdateTransform () + { + if (this.parent) + { + this.parent._recursivePostUpdateTransform(); + this.transform.updateTransform(this.parent.transform); + } + else + { + this.transform.updateTransform(this._tempDisplayObjectParent.transform); + } + }; + + /** + * Retrieves the bounds of the displayObject as a rectangle object. + * + * @param {boolean} [skipUpdate] - Setting to `true` will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getBounds = function getBounds (skipUpdate, rect) + { + if (!skipUpdate) + { + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this._recursivePostUpdateTransform(); + this.updateTransform(); + } + } + + if (this._boundsID !== this._lastBoundsID) + { + this.calculateBounds(); + this._lastBoundsID = this._boundsID; + } + + if (!rect) + { + if (!this._boundsRect) + { + this._boundsRect = new Rectangle(); + } + + rect = this._boundsRect; + } + + return this._bounds.getRectangle(rect); + }; + + /** + * Retrieves the local bounds of the displayObject as a rectangle object. + * + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getLocalBounds = function getLocalBounds (rect) + { + var transformRef = this.transform; + var parentRef = this.parent; + + this.parent = null; + this.transform = this._tempDisplayObjectParent.transform; + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + var bounds = this.getBounds(false, rect); + + this.parent = parentRef; + this.transform = transformRef; + + return bounds; + }; + + /** + * Calculates the global position of the display object. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform. + * @return {PIXI.IPoint} A point object representing the position of this object. + */ + DisplayObject.prototype.toGlobal = function toGlobal (position, point, skipUpdate) + { + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // don't need to update the lot + return this.worldTransform.apply(position, point); + }; + + /** + * Calculates the local position of the display object relative to another point. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform + * @return {PIXI.IPoint} A point object representing the position of this object + */ + DisplayObject.prototype.toLocal = function toLocal (position, from, point, skipUpdate) + { + if (from) + { + position = from.toGlobal(position, point, skipUpdate); + } + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // simply apply the matrix.. + return this.worldTransform.applyInverse(position, point); + }; + + /** + * Renders the object using the WebGL renderer. + * + * @param {PIXI.Renderer} renderer - The renderer. + */ + DisplayObject.prototype.render = function render (renderer) // eslint-disable-line no-unused-vars + { + // OVERWRITE; + }; + + /** + * Set the parent Container of this DisplayObject. + * + * @param {PIXI.Container} container - The Container to add this DisplayObject to. + * @return {PIXI.Container} The Container that this DisplayObject was added to. + */ + DisplayObject.prototype.setParent = function setParent (container) + { + if (!container || !container.addChild) + { + throw new Error('setParent: Argument must be a Container'); + } + + container.addChild(this); + + return container; + }; + + /** + * Convenience function to set the position, scale, skew and pivot at once. + * + * @param {number} [x=0] - The X position + * @param {number} [y=0] - The Y position + * @param {number} [scaleX=1] - The X scale value + * @param {number} [scaleY=1] - The Y scale value + * @param {number} [rotation=0] - The rotation + * @param {number} [skewX=0] - The X skew value + * @param {number} [skewY=0] - The Y skew value + * @param {number} [pivotX=0] - The X pivot value + * @param {number} [pivotY=0] - The Y pivot value + * @return {PIXI.DisplayObject} The DisplayObject instance + */ + DisplayObject.prototype.setTransform = function setTransform (x, y, scaleX, scaleY, rotation, skewX, skewY, pivotX, pivotY) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( scaleX === void 0 ) scaleX = 1; + if ( scaleY === void 0 ) scaleY = 1; + if ( rotation === void 0 ) rotation = 0; + if ( skewX === void 0 ) skewX = 0; + if ( skewY === void 0 ) skewY = 0; + if ( pivotX === void 0 ) pivotX = 0; + if ( pivotY === void 0 ) pivotY = 0; + + this.position.x = x; + this.position.y = y; + this.scale.x = !scaleX ? 1 : scaleX; + this.scale.y = !scaleY ? 1 : scaleY; + this.rotation = rotation; + this.skew.x = skewX; + this.skew.y = skewY; + this.pivot.x = pivotX; + this.pivot.y = pivotY; + + return this; + }; + + /** + * Base destroy method for generic display objects. This will automatically + * remove the display object from its parent Container as well as remove + * all current event listeners and internal references. Do not use a DisplayObject + * after calling `destroy()`. + * + */ + DisplayObject.prototype.destroy = function destroy () + { + this.removeAllListeners(); + if (this.parent) + { + this.parent.removeChild(this); + } + this.transform = null; + + this.parent = null; + + this._bounds = null; + this._currentBounds = null; + this._mask = null; + + this.filterArea = null; + + this.interactive = false; + this.interactiveChildren = false; + + this._destroyed = true; + }; + + /** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * An alias to position.x + * + * @member {number} + */ + prototypeAccessors.x.get = function () + { + return this.position.x; + }; + + prototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.x = value; + }; + + /** + * The position of the displayObject on the y axis relative to the local coordinates of the parent. + * An alias to position.y + * + * @member {number} + */ + prototypeAccessors.y.get = function () + { + return this.position.y; + }; + + prototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.y = value; + }; + + /** + * Current transform of the object based on world (parent) factors. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.worldTransform.get = function () + { + return this.transform.worldTransform; + }; + + /** + * Current transform of the object based on local factors: position, scale, other stuff. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.localTransform.get = function () + { + return this.transform.localTransform; + }; + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.position.get = function () + { + return this.transform.position; + }; + + prototypeAccessors.position.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.copyFrom(value); + }; + + /** + * The scale factor of the object. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.scale.get = function () + { + return this.transform.scale; + }; + + prototypeAccessors.scale.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.scale.copyFrom(value); + }; + + /** + * The pivot point of the displayObject that it rotates around. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.pivot.get = function () + { + return this.transform.pivot; + }; + + prototypeAccessors.pivot.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.pivot.copyFrom(value); + }; + + /** + * The skew factor for the object in radians. + * Assignment by value since pixi-v4. + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.skew.get = function () + { + return this.transform.skew; + }; + + prototypeAccessors.skew.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.skew.copyFrom(value); + }; + + /** + * The rotation of the object in radians. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.rotation.get = function () + { + return this.transform.rotation; + }; + + prototypeAccessors.rotation.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value; + }; + + /** + * The angle of the object in degrees. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.angle.get = function () + { + return this.transform.rotation * RAD_TO_DEG; + }; + + prototypeAccessors.angle.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value * DEG_TO_RAD; + }; + + /** + * The zIndex of the displayObject. + * If a container has the sortableChildren property set to true, children will be automatically + * sorted by zIndex value; a higher value will mean it will be moved towards the end of the array, + * and thus rendered on top of other displayObjects within the same container. + * + * @member {number} + */ + prototypeAccessors.zIndex.get = function () + { + return this._zIndex; + }; + + prototypeAccessors.zIndex.set = function (value) // eslint-disable-line require-jsdoc + { + this._zIndex = value; + if (this.parent) + { + this.parent.sortDirty = true; + } + }; + + /** + * Indicates if the object is globally visible. + * + * @member {boolean} + * @readonly + */ + prototypeAccessors.worldVisible.get = function () + { + var item = this; + + do + { + if (!item.visible) + { + return false; + } + + item = item.parent; + } while (item); + + return true; + }; + + /** + * Sets a mask for the displayObject. A mask is an object that limits the visibility of an + * object to the shape of the mask applied to it. In PixiJS a regular mask must be a + * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it + * utilities shape clipping. To remove a mask, set this property to `null`. + * + * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask. + * @example + * const graphics = new PIXI.Graphics(); + * graphics.beginFill(0xFF3300); + * graphics.drawRect(50, 250, 100, 100); + * graphics.endFill(); + * + * const sprite = new PIXI.Sprite(texture); + * sprite.mask = graphics; + * @todo At the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + */ + prototypeAccessors.mask.get = function () + { + return this._mask; + }; + + prototypeAccessors.mask.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._mask) + { + this._mask.renderable = true; + this._mask.isMask = false; + } + + this._mask = value; + + if (this._mask) + { + this._mask.renderable = false; + this._mask.isMask = true; + } + }; + + Object.defineProperties( DisplayObject.prototype, prototypeAccessors ); + + return DisplayObject; +}(eventemitter3)); + +/** + * DisplayObject default updateTransform, does not update children of container. + * Will crash if there's no parent element. + * + * @memberof PIXI.DisplayObject# + * @function displayObjectUpdateTransform + */ +DisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform; + +function sortChildren(a, b) +{ + if (a.zIndex === b.zIndex) + { + return a._lastSortedIndex - b._lastSortedIndex; + } + + return a.zIndex - b.zIndex; +} + +/** + * A Container represents a collection of display objects. + * + * It is the base class of all display objects that act as a container for other objects (like Sprites). + * + *```js + * let container = new PIXI.Container(); + * container.addChild(sprite); + * ``` + * + * @class + * @extends PIXI.DisplayObject + * @memberof PIXI + */ +var Container = /*@__PURE__*/(function (DisplayObject) { + function Container() + { + DisplayObject.call(this); + + /** + * The array of children of this container. + * + * @member {PIXI.DisplayObject[]} + * @readonly + */ + this.children = []; + + /** + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @see PIXI.settings.SORTABLE_CHILDREN + * + * @member {boolean} + */ + this.sortableChildren = settings.SORTABLE_CHILDREN; + + /** + * Should children be sorted by zIndex at the next updateTransform call. + * Will get automatically set to true if a new child is added, or if a child's zIndex changes. + * + * @member {boolean} + */ + this.sortDirty = false; + + /** + * Fired when a DisplayObject is added to this Container. + * + * @event PIXI.Container#childAdded + * @param {PIXI.DisplayObject} child - The child added to the Container. + * @param {PIXI.Container} container - The container that added the child. + * @param {number} index - The children's index of the added child. + */ + + /** + * Fired when a DisplayObject is removed from this Container. + * + * @event PIXI.DisplayObject#removedFrom + * @param {PIXI.DisplayObject} child - The child removed from the Container. + * @param {PIXI.Container} container - The container that removed removed the child. + * @param {number} index - The former children's index of the removed child + */ + } + + if ( DisplayObject ) Container.__proto__ = DisplayObject; + Container.prototype = Object.create( DisplayObject && DisplayObject.prototype ); + Container.prototype.constructor = Container; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + + /** + * Overridable method that can be used by Container subclasses whenever the children array is modified + * + * @protected + */ + Container.prototype.onChildrenChange = function onChildrenChange () + { + /* empty */ + }; + + /** + * Adds one or more children to the container. + * + * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)` + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container + * @return {PIXI.DisplayObject} The first child that was added. + */ + Container.prototype.addChild = function addChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.addChild(arguments$1[i]); + } + } + else + { + // if the child has a parent then lets remove it as PixiJS objects can only exist in one place + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.push(child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(this.children.length - 1); + this.emit('childAdded', child, this, this.children.length - 1); + child.emit('added', this); + } + + return child; + }; + + /** + * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown + * + * @param {PIXI.DisplayObject} child - The child to add + * @param {number} index - The index to place the child in + * @return {PIXI.DisplayObject} The child that was added. + */ + Container.prototype.addChildAt = function addChildAt (child, index) + { + if (index < 0 || index > this.children.length) + { + throw new Error((child + "addChildAt: The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.splice(index, 0, child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('added', this); + this.emit('childAdded', child, this, index); + + return child; + }; + + /** + * Swaps the position of 2 Display Objects within this container. + * + * @param {PIXI.DisplayObject} child - First display object to swap + * @param {PIXI.DisplayObject} child2 - Second display object to swap + */ + Container.prototype.swapChildren = function swapChildren (child, child2) + { + if (child === child2) + { + return; + } + + var index1 = this.getChildIndex(child); + var index2 = this.getChildIndex(child2); + + this.children[index1] = child2; + this.children[index2] = child; + this.onChildrenChange(index1 < index2 ? index1 : index2); + }; + + /** + * Returns the index position of a child DisplayObject instance + * + * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify + * @return {number} The index position of the child display object to identify + */ + Container.prototype.getChildIndex = function getChildIndex (child) + { + var index = this.children.indexOf(child); + + if (index === -1) + { + throw new Error('The supplied DisplayObject must be a child of the caller'); + } + + return index; + }; + + /** + * Changes the position of an existing child in the display object container + * + * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number + * @param {number} index - The resulting index number for the child display object + */ + Container.prototype.setChildIndex = function setChildIndex (child, index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + var currentIndex = this.getChildIndex(child); + + removeItems(this.children, currentIndex, 1); // remove from old position + this.children.splice(index, 0, child); // add at new position + + this.onChildrenChange(index); + }; + + /** + * Returns the child at the specified index + * + * @param {number} index - The index to get the child at + * @return {PIXI.DisplayObject} The child at the given index, if any. + */ + Container.prototype.getChildAt = function getChildAt (index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("getChildAt: Index (" + index + ") does not exist.")); + } + + return this.children[index]; + }; + + /** + * Removes one or more children from the container. + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove + * @return {PIXI.DisplayObject} The first child that was removed. + */ + Container.prototype.removeChild = function removeChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.removeChild(arguments$1[i]); + } + } + else + { + var index = this.children.indexOf(child); + + if (index === -1) { return null; } + + child.parent = null; + // ensure child transform will be recalculated + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + } + + return child; + }; + + /** + * Removes a child from the specified index position. + * + * @param {number} index - The index to get the child from + * @return {PIXI.DisplayObject} The child that was removed. + */ + Container.prototype.removeChildAt = function removeChildAt (index) + { + var child = this.getChildAt(index); + + // ensure child transform will be recalculated.. + child.parent = null; + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + + return child; + }; + + /** + * Removes all children from this container that are within the begin and end indexes. + * + * @param {number} [beginIndex=0] - The beginning position. + * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container. + * @returns {PIXI.DisplayObject[]} List of removed children + */ + Container.prototype.removeChildren = function removeChildren (beginIndex, endIndex) + { + if ( beginIndex === void 0 ) beginIndex = 0; + + var begin = beginIndex; + var end = typeof endIndex === 'number' ? endIndex : this.children.length; + var range = end - begin; + var removed; + + if (range > 0 && range <= end) + { + removed = this.children.splice(begin, range); + + for (var i = 0; i < removed.length; ++i) + { + removed[i].parent = null; + if (removed[i].transform) + { + removed[i].transform._parentID = -1; + } + } + + this._boundsID++; + + this.onChildrenChange(beginIndex); + + for (var i$1 = 0; i$1 < removed.length; ++i$1) + { + removed[i$1].emit('removed', this); + this.emit('childRemoved', removed[i$1], this, i$1); + } + + return removed; + } + else if (range === 0 && this.children.length === 0) + { + return []; + } + + throw new RangeError('removeChildren: numeric values are outside the acceptable range.'); + }; + + /** + * Sorts children by zIndex. Previous order is mantained for 2 children with the same zIndex. + */ + Container.prototype.sortChildren = function sortChildren$1 () + { + var sortRequired = false; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + child._lastSortedIndex = i; + + if (!sortRequired && child.zIndex !== 0) + { + sortRequired = true; + } + } + + if (sortRequired && this.children.length > 1) + { + this.children.sort(sortChildren); + } + + this.sortDirty = false; + }; + + /** + * Updates the transform on all children of this container for rendering + */ + Container.prototype.updateTransform = function updateTransform () + { + if (this.sortableChildren && this.sortDirty) + { + this.sortChildren(); + } + + this._boundsID++; + + this.transform.updateTransform(this.parent.transform); + + // TODO: check render flags, how to process stuff here + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + if (child.visible) + { + child.updateTransform(); + } + } + }; + + /** + * Recalculates the bounds of the container. + * + */ + Container.prototype.calculateBounds = function calculateBounds () + { + this._bounds.clear(); + + this._calculateBounds(); + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (!child.visible || !child.renderable) + { + continue; + } + + child.calculateBounds(); + + // TODO: filter+mask, need to mask both somehow + if (child._mask) + { + child._mask.calculateBounds(); + this._bounds.addBoundsMask(child._bounds, child._mask._bounds); + } + else if (child.filterArea) + { + this._bounds.addBoundsArea(child._bounds, child.filterArea); + } + else + { + this._bounds.addBounds(child._bounds); + } + } + + this._lastBoundsID = this._boundsID; + }; + + /** + * Recalculates the bounds of the object. Override this to + * calculate the bounds of the specific object (not including children). + * + * @protected + */ + Container.prototype._calculateBounds = function _calculateBounds () + { + // FILL IN// + }; + + /** + * Renders the object using the WebGL renderer + * + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.render = function render (renderer) + { + // if the object is not visible or the alpha is 0 then no need to render this element + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + // do a quick check to see if this element has a mask or a filter. + if (this._mask || (this.filters && this.filters.length)) + { + this.renderAdvanced(renderer); + } + else + { + this._render(renderer); + + // simple render children! + for (var i = 0, j = this.children.length; i < j; ++i) + { + this.children[i].render(renderer); + } + } + }; + + /** + * Render the object using the WebGL renderer and advanced features. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.renderAdvanced = function renderAdvanced (renderer) + { + renderer.batch.flush(); + + var filters = this.filters; + var mask = this._mask; + + // push filter first as we need to ensure the stencil buffer is correct for any masking + if (filters) + { + if (!this._enabledFilters) + { + this._enabledFilters = []; + } + + this._enabledFilters.length = 0; + + for (var i = 0; i < filters.length; i++) + { + if (filters[i].enabled) + { + this._enabledFilters.push(filters[i]); + } + } + + if (this._enabledFilters.length) + { + renderer.filter.push(this, this._enabledFilters); + } + } + + if (mask) + { + renderer.mask.push(this, this._mask); + } + + // add this object to the batch, only rendered if it has a texture. + this._render(renderer); + + // now loop through the children and make sure they get rendered + for (var i$1 = 0, j = this.children.length; i$1 < j; i$1++) + { + this.children[i$1].render(renderer); + } + + renderer.batch.flush(); + + if (mask) + { + renderer.mask.pop(this, this._mask); + } + + if (filters && this._enabledFilters && this._enabledFilters.length) + { + renderer.filter.pop(); + } + }; + + /** + * To be overridden by the subclasses. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype._render = function _render (renderer) // eslint-disable-line no-unused-vars + { + // this is where content itself gets rendered... + }; + + /** + * Removes all internal references and listeners as well as removes children from the display list. + * Do not use a Container after calling `destroy`. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Container.prototype.destroy = function destroy (options) + { + DisplayObject.prototype.destroy.call(this); + + this.sortDirty = false; + + var destroyChildren = typeof options === 'boolean' ? options : options && options.children; + + var oldChildren = this.removeChildren(0, this.children.length); + + if (destroyChildren) + { + for (var i = 0; i < oldChildren.length; ++i) + { + oldChildren[i].destroy(options); + } + } + }; + + /** + * The width of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.scale.x * this.getLocalBounds().width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var width = this.getLocalBounds().width; + + if (width !== 0) + { + this.scale.x = value / width; + } + else + { + this.scale.x = 1; + } + + this._width = value; + }; + + /** + * The height of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.scale.y * this.getLocalBounds().height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var height = this.getLocalBounds().height; + + if (height !== 0) + { + this.scale.y = value / height; + } + else + { + this.scale.y = 1; + } + + this._height = value; + }; + + Object.defineProperties( Container.prototype, prototypeAccessors ); + + return Container; +}(DisplayObject)); + +// performance increase to avoid using call.. (10x faster) +Container.prototype.containerUpdateTransform = Container.prototype.updateTransform; + +/*! + * @pixi/accessibility - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/accessibility is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default property values of accessible objects + * used by {@link PIXI.accessibility.AccessibilityManager}. + * + * @private + * @function accessibleTarget + * @memberof PIXI.accessibility + * @type {Object} + * @example + * function MyObject() {} + * + * Object.assign( + * MyObject.prototype, + * PIXI.accessibility.accessibleTarget + * ); + */ +var accessibleTarget = { + /** + * Flag for if the object is accessible. If true AccessibilityManager will overlay a + * shadow div with attributes set + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + accessible: false, + + /** + * Sets the title attribute of the shadow div + * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]' + * + * @member {?string} + * @memberof PIXI.DisplayObject# + */ + accessibleTitle: null, + + /** + * Sets the aria-label attribute of the shadow div + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + accessibleHint: null, + + /** + * @member {number} + * @memberof PIXI.DisplayObject# + * @private + * @todo Needs docs. + */ + tabIndex: 0, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleActive: false, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleDiv: false, +}; + +// add some extra variables to the container.. +DisplayObject.mixin(accessibleTarget); + +var KEY_CODE_TAB = 9; + +var DIV_TOUCH_SIZE = 100; +var DIV_TOUCH_POS_X = 0; +var DIV_TOUCH_POS_Y = 0; +var DIV_TOUCH_ZINDEX = 2; + +var DIV_HOOK_SIZE = 1; +var DIV_HOOK_POS_X = -1000; +var DIV_HOOK_POS_Y = -1000; +var DIV_HOOK_ZINDEX = 2; + +/** + * The Accessibility manager recreates the ability to tab and have content read by screen readers. + * This is very important as it can possibly help people with disabilities access PixiJS content. + * + * A DisplayObject can be made accessible just like it can be made interactive. This manager will map the + * events as if the mouse was being used, minimizing the effort required to implement. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.accessibility` + * + * @class + * @memberof PIXI.accessibility + */ +var AccessibilityManager = function AccessibilityManager(renderer) +{ + /** + * @type {?HTMLElement} + * @private + */ + this._hookDiv = null; + if (isMobile.tablet || isMobile.phone) + { + this.createTouchHook(); + } + + // first we create a div that will sit over the PixiJS element. This is where the div overlays will go. + var div = document.createElement('div'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.position = 'absolute'; + div.style.top = DIV_TOUCH_POS_X + "px"; + div.style.left = DIV_TOUCH_POS_Y + "px"; + div.style.zIndex = DIV_TOUCH_ZINDEX; + + /** + * This is the dom element that will sit over the PixiJS element. This is where the div overlays will go. + * + * @type {HTMLElement} + * @private + */ + this.div = div; + + /** + * A simple pool for storing divs. + * + * @type {*} + * @private + */ + this.pool = []; + + /** + * This is a tick used to check if an object is no longer being rendered. + * + * @type {Number} + * @private + */ + this.renderId = 0; + + /** + * Setting this to true will visually show the divs. + * + * @type {boolean} + */ + this.debug = false; + + /** + * The renderer this accessibility manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * The array of currently active accessible items. + * + * @member {Array<*>} + * @private + */ + this.children = []; + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onKeyDown = this._onKeyDown.bind(this); + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onMouseMove = this._onMouseMove.bind(this); + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isActive = false; + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isMobileAccessibility = false; + + // let listen for tab.. once pressed we can fire up and show the accessibility layer + window.addEventListener('keydown', this._onKeyDown, false); +}; + +/** + * Creates the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.createTouchHook = function createTouchHook () +{ + var this$1 = this; + + var hookDiv = document.createElement('button'); + + hookDiv.style.width = DIV_HOOK_SIZE + "px"; + hookDiv.style.height = DIV_HOOK_SIZE + "px"; + hookDiv.style.position = 'absolute'; + hookDiv.style.top = DIV_HOOK_POS_X + "px"; + hookDiv.style.left = DIV_HOOK_POS_Y + "px"; + hookDiv.style.zIndex = DIV_HOOK_ZINDEX; + hookDiv.style.backgroundColor = '#FF0000'; + hookDiv.title = 'HOOK DIV'; + + hookDiv.addEventListener('focus', function () { + this$1.isMobileAccessibility = true; + this$1.activate(); + this$1.destroyTouchHook(); + }); + + document.body.appendChild(hookDiv); + this._hookDiv = hookDiv; +}; + +/** + * Destroys the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.destroyTouchHook = function destroyTouchHook () +{ + if (!this._hookDiv) + { + return; + } + document.body.removeChild(this._hookDiv); + this._hookDiv = null; +}; + +/** + * Activating will cause the Accessibility layer to be shown. + * This is called when a user presses the tab key. + * + * @private + */ +AccessibilityManager.prototype.activate = function activate () +{ + if (this.isActive) + { + return; + } + + this.isActive = true; + + window.document.addEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown, false); + + this.renderer.on('postrender', this.update, this); + + if (this.renderer.view.parentNode) + { + this.renderer.view.parentNode.appendChild(this.div); + } +}; + +/** + * Deactivating will cause the Accessibility layer to be hidden. + * This is called when a user moves the mouse. + * + * @private + */ +AccessibilityManager.prototype.deactivate = function deactivate () +{ + if (!this.isActive || this.isMobileAccessibility) + { + return; + } + + this.isActive = false; + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.addEventListener('keydown', this._onKeyDown, false); + + this.renderer.off('postrender', this.update); + + if (this.div.parentNode) + { + this.div.parentNode.removeChild(this.div); + } +}; + +/** + * This recursive function will run through the scene graph and add any new accessible objects to the DOM layer. + * + * @private + * @param {PIXI.Container} displayObject - The DisplayObject to check. + */ +AccessibilityManager.prototype.updateAccessibleObjects = function updateAccessibleObjects (displayObject) +{ + if (!displayObject.visible) + { + return; + } + + if (displayObject.accessible && displayObject.interactive) + { + if (!displayObject._accessibleActive) + { + this.addChild(displayObject); + } + + displayObject.renderId = this.renderId; + } + + var children = displayObject.children; + + for (var i = 0; i < children.length; i++) + { + this.updateAccessibleObjects(children[i]); + } +}; + +/** + * Before each render this function will ensure that all divs are mapped correctly to their DisplayObjects. + * + * @private + */ +AccessibilityManager.prototype.update = function update () +{ + if (!this.renderer.renderingToScreen) + { + return; + } + + // update children... + this.updateAccessibleObjects(this.renderer._lastObjectRendered); + + var rect = this.renderer.view.getBoundingClientRect(); + var sx = rect.width / this.renderer.width; + var sy = rect.height / this.renderer.height; + + var div = this.div; + + div.style.left = (rect.left) + "px"; + div.style.top = (rect.top) + "px"; + div.style.width = (this.renderer.width) + "px"; + div.style.height = (this.renderer.height) + "px"; + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (child.renderId !== this.renderId) + { + child._accessibleActive = false; + + removeItems(this.children, i, 1); + this.div.removeChild(child._accessibleDiv); + this.pool.push(child._accessibleDiv); + child._accessibleDiv = null; + + i--; + + if (this.children.length === 0) + { + this.deactivate(); + } + } + else + { + // map div to display.. + div = child._accessibleDiv; + var hitArea = child.hitArea; + var wt = child.worldTransform; + + if (child.hitArea) + { + div.style.left = ((wt.tx + (hitArea.x * wt.a)) * sx) + "px"; + div.style.top = ((wt.ty + (hitArea.y * wt.d)) * sy) + "px"; + + div.style.width = (hitArea.width * wt.a * sx) + "px"; + div.style.height = (hitArea.height * wt.d * sy) + "px"; + } + else + { + hitArea = child.getBounds(); + + this.capHitArea(hitArea); + + div.style.left = (hitArea.x * sx) + "px"; + div.style.top = (hitArea.y * sy) + "px"; + + div.style.width = (hitArea.width * sx) + "px"; + div.style.height = (hitArea.height * sy) + "px"; + + // update button titles and hints if they exist and they've changed + if (div.title !== child.accessibleTitle && child.accessibleTitle !== null) + { + div.title = child.accessibleTitle; + } + if (div.getAttribute('aria-label') !== child.accessibleHint + && child.accessibleHint !== null) + { + div.setAttribute('aria-label', child.accessibleHint); + } + } + } + } + + // increment the render id.. + this.renderId++; +}; + +/** + * Adjust the hit area based on the bounds of a display object + * + * @param {PIXI.Rectangle} hitArea - Bounds of the child + */ +AccessibilityManager.prototype.capHitArea = function capHitArea (hitArea) +{ + if (hitArea.x < 0) + { + hitArea.width += hitArea.x; + hitArea.x = 0; + } + + if (hitArea.y < 0) + { + hitArea.height += hitArea.y; + hitArea.y = 0; + } + + if (hitArea.x + hitArea.width > this.renderer.width) + { + hitArea.width = this.renderer.width - hitArea.x; + } + + if (hitArea.y + hitArea.height > this.renderer.height) + { + hitArea.height = this.renderer.height - hitArea.y; + } +}; + +/** + * Adds a DisplayObject to the accessibility manager + * + * @private + * @param {PIXI.DisplayObject} displayObject - The child to make accessible. + */ +AccessibilityManager.prototype.addChild = function addChild (displayObject) +{ + //this.activate(); + + var div = this.pool.pop(); + + if (!div) + { + div = document.createElement('button'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.backgroundColor = this.debug ? 'rgba(255,0,0,0.5)' : 'transparent'; + div.style.position = 'absolute'; + div.style.zIndex = DIV_TOUCH_ZINDEX; + div.style.borderStyle = 'none'; + + // ARIA attributes ensure that button title and hint updates are announced properly + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + // Chrome doesn't need aria-live to work as intended; in fact it just gets more confused. + div.setAttribute('aria-live', 'off'); + } + else + { + div.setAttribute('aria-live', 'polite'); + } + + if (navigator.userAgent.match(/rv:.*Gecko\//)) + { + // FireFox needs this to announce only the new button name + div.setAttribute('aria-relevant', 'additions'); + } + else + { + // required by IE, other browsers don't much care + div.setAttribute('aria-relevant', 'text'); + } + + div.addEventListener('click', this._onClick.bind(this)); + div.addEventListener('focus', this._onFocus.bind(this)); + div.addEventListener('focusout', this._onFocusOut.bind(this)); + } + + if (displayObject.accessibleTitle && displayObject.accessibleTitle !== null) + { + div.title = displayObject.accessibleTitle; + } + else if (!displayObject.accessibleHint + || displayObject.accessibleHint === null) + { + div.title = "displayObject " + (displayObject.tabIndex); + } + + if (displayObject.accessibleHint + && displayObject.accessibleHint !== null) + { + div.setAttribute('aria-label', displayObject.accessibleHint); + } + + // + + displayObject._accessibleActive = true; + displayObject._accessibleDiv = div; + div.displayObject = displayObject; + + this.children.push(displayObject); + this.div.appendChild(displayObject._accessibleDiv); + displayObject._accessibleDiv.tabIndex = displayObject.tabIndex; +}; + +/** + * Maps the div button press to pixi's InteractionManager (click) + * + * @private + * @param {MouseEvent} e - The click event. + */ +AccessibilityManager.prototype._onClick = function _onClick (e) +{ + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'click', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'pointertap', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'tap', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseover) + * + * @private + * @param {FocusEvent} e - The focus event. + */ +AccessibilityManager.prototype._onFocus = function _onFocus (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'assertive'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseover', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseout) + * + * @private + * @param {FocusEvent} e - The focusout event. + */ +AccessibilityManager.prototype._onFocusOut = function _onFocusOut (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'polite'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseout', interactionManager.eventData); +}; + +/** + * Is called when a key is pressed + * + * @private + * @param {KeyboardEvent} e - The keydown event. + */ +AccessibilityManager.prototype._onKeyDown = function _onKeyDown (e) +{ + if (e.keyCode !== KEY_CODE_TAB) + { + return; + } + + this.activate(); +}; + +/** + * Is called when the mouse moves across the renderer element + * + * @private + * @param {MouseEvent} e - The mouse event. + */ +AccessibilityManager.prototype._onMouseMove = function _onMouseMove (e) +{ + if (e.movementX === 0 && e.movementY === 0) + { + return; + } + + this.deactivate(); +}; + +/** + * Destroys the accessibility manager + * + */ +AccessibilityManager.prototype.destroy = function destroy () +{ + this.destroyTouchHook(); + this.div = null; + + for (var i = 0; i < this.children.length; i++) + { + this.children[i].div = null; + } + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown); + + this.pool = null; + this.children = null; + this.renderer = null; +}; + +/*! + * @pixi/runner - v5.1.1 + * Compiled Fri, 02 Aug 2019 23:20:23 UTC + * + * @pixi/runner is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * A Runner is a highly performant and simple alternative to signals. Best used in situations + * where events are dispatched to many objects at high frequency (say every frame!) + * + * + * like a signal.. + * ``` + * const myObject = { + * loaded: new PIXI.Runner('loaded') + * } + * + * const listener = { + * loaded: function(){ + * // thin + * } + * } + * + * myObject.update.add(listener); + * + * myObject.loaded.emit(); + * ``` + * + * Or for handling calling the same function on many items + * ``` + * const myGame = { + * update: new PIXI.Runner('update') + * } + * + * const gameObject = { + * update: function(time){ + * // update my gamey state + * } + * } + * + * myGame.update.add(gameObject1); + * + * myGame.update.emit(time); + * ``` + * @class + * @memberof PIXI + */ +var Runner = function Runner(name) +{ + this.items = []; + this._name = name; + this._aliasCount = 0; +}; + +var prototypeAccessors$3 = { empty: { configurable: true },name: { configurable: true } }; + +/** + * Dispatch/Broadcast Runner to all listeners added to the queue. + * @param {...any} params - optional parameters to pass to each listener + */ +Runner.prototype.emit = function emit (a0, a1, a2, a3, a4, a5, a6, a7) +{ + if (arguments.length > 8) + { + throw new Error('max arguments reached'); + } + + var ref = this; + var name = ref.name; + var items = ref.items; + + this._aliasCount++; + + for (var i = 0, len = items.length; i < len; i++) + { + items[i][name](a0, a1, a2, a3, a4, a5, a6, a7); + } + + if (items === this.items) + { + this._aliasCount--; + } + + return this; +}; + +Runner.prototype.ensureNonAliasedItems = function ensureNonAliasedItems () +{ + if (this._aliasCount > 0 && this.items.length > 1) + { + this._aliasCount = 0; + this.items = this.items.slice(0); + } +}; + +/** + * Add a listener to the Runner + * + * Runners do not need to have scope or functions passed to them. + * All that is required is to pass the listening object and ensure that it has contains a function that has the same name + * as the name provided to the Runner when it was created. + * + * Eg A listener passed to this Runner will require a 'complete' function. + * + * ``` + * const complete = new PIXI.Runner('complete'); + * ``` + * + * The scope used will be the object itself. + * + * @param {any} item - The object that will be listening. + */ +Runner.prototype.add = function add (item) +{ + if (item[this._name]) + { + this.ensureNonAliasedItems(); + this.remove(item); + this.items.push(item); + } + + return this; +}; + +/** + * Remove a single listener from the dispatch queue. + * @param {any} item - The listenr that you would like to remove. + */ +Runner.prototype.remove = function remove (item) +{ + var index = this.items.indexOf(item); + + if (index !== -1) + { + this.ensureNonAliasedItems(); + this.items.splice(index, 1); + } + + return this; +}; + +/** + * Check to see if the listener is already in the Runner + * @param {any} item - The listener that you would like to check. + */ +Runner.prototype.contains = function contains (item) +{ + return this.items.indexOf(item) !== -1; +}; + +/** + * Remove all listeners from the Runner + */ +Runner.prototype.removeAll = function removeAll () +{ + this.ensureNonAliasedItems(); + this.items.length = 0; + + return this; +}; + +/** + * Remove all references, don't use after this. + */ +Runner.prototype.destroy = function destroy () +{ + this.removeAll(); + this.items = null; + this._name = null; +}; + +/** + * `true` if there are no this Runner contains no listeners + * + * @member {boolean} + * @readonly + */ +prototypeAccessors$3.empty.get = function () +{ + return this.items.length === 0; +}; + +/** + * The name of the runner. + * + * @member {string} + * @readonly + */ +prototypeAccessors$3.name.get = function () +{ + return this._name; +}; + +Object.defineProperties( Runner.prototype, prototypeAccessors$3 ); + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method dispatch + * @see PIXI.Runner#emit + */ +Runner.prototype.dispatch = Runner.prototype.emit; + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method run + * @see PIXI.Runner#emit + */ +Runner.prototype.run = Runner.prototype.emit; + +/*! + * @pixi/ticker - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/ticker is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Target frames per millisecond. + * + * @static + * @name TARGET_FPMS + * @memberof PIXI.settings + * @type {number} + * @default 0.06 + */ +settings.TARGET_FPMS = 0.06; + +/** + * Represents the update priorities used by internal PIXI classes when registered with + * the {@link PIXI.Ticker} object. Higher priority items are updated first and lower + * priority items, such as render, should go later. + * + * @static + * @constant + * @name UPDATE_PRIORITY + * @memberof PIXI + * @type {object} + * @property {number} INTERACTION=50 Highest priority, used for {@link PIXI.interaction.InteractionManager} + * @property {number} HIGH=25 High priority updating, {@link PIXI.VideoBaseTexture} and {@link PIXI.AnimatedSprite} + * @property {number} NORMAL=0 Default priority for ticker events, see {@link PIXI.Ticker#add}. + * @property {number} LOW=-25 Low priority used for {@link PIXI.Application} rendering. + * @property {number} UTILITY=-50 Lowest priority used for {@link PIXI.prepare.BasePrepare} utility. + */ +var UPDATE_PRIORITY = { + INTERACTION: 50, + HIGH: 25, + NORMAL: 0, + LOW: -25, + UTILITY: -50, +}; + +/** + * Internal class for handling the priority sorting of ticker handlers. + * + * @private + * @class + * @memberof PIXI + */ +var TickerListener = function TickerListener(fn, context, priority, once) +{ + if ( context === void 0 ) context = null; + if ( priority === void 0 ) priority = 0; + if ( once === void 0 ) once = false; + + /** + * The handler function to execute. + * @private + * @member {Function} + */ + this.fn = fn; + + /** + * The calling to execute. + * @private + * @member {*} + */ + this.context = context; + + /** + * The current priority. + * @private + * @member {number} + */ + this.priority = priority; + + /** + * If this should only execute once. + * @private + * @member {boolean} + */ + this.once = once; + + /** + * The next item in chain. + * @private + * @member {TickerListener} + */ + this.next = null; + + /** + * The previous item in chain. + * @private + * @member {TickerListener} + */ + this.previous = null; + + /** + * `true` if this listener has been destroyed already. + * @member {boolean} + * @private + */ + this._destroyed = false; +}; + +/** + * Simple compare function to figure out if a function and context match. + * @private + * @param {Function} fn - The listener function to be added for one update + * @param {Function} context - The listener context + * @return {boolean} `true` if the listener match the arguments + */ +TickerListener.prototype.match = function match (fn, context) +{ + context = context || null; + + return this.fn === fn && this.context === context; +}; + +/** + * Emit by calling the current function. + * @private + * @param {number} deltaTime - time since the last emit. + * @return {TickerListener} Next ticker + */ +TickerListener.prototype.emit = function emit (deltaTime) +{ + if (this.fn) + { + if (this.context) + { + this.fn.call(this.context, deltaTime); + } + else + { + this.fn(deltaTime); + } + } + + var redirect = this.next; + + if (this.once) + { + this.destroy(true); + } + + // Soft-destroying should remove + // the next reference + if (this._destroyed) + { + this.next = null; + } + + return redirect; +}; + +/** + * Connect to the list. + * @private + * @param {TickerListener} previous - Input node, previous listener + */ +TickerListener.prototype.connect = function connect (previous) +{ + this.previous = previous; + if (previous.next) + { + previous.next.previous = this; + } + this.next = previous.next; + previous.next = this; +}; + +/** + * Destroy and don't use after this. + * @private + * @param {boolean} [hard = false] `true` to remove the `next` reference, this + * is considered a hard destroy. Soft destroy maintains the next reference. + * @return {TickerListener} The listener to redirect while emitting or removing. + */ +TickerListener.prototype.destroy = function destroy (hard) +{ + if ( hard === void 0 ) hard = false; + + this._destroyed = true; + this.fn = null; + this.context = null; + + // Disconnect, hook up next and previous + if (this.previous) + { + this.previous.next = this.next; + } + + if (this.next) + { + this.next.previous = this.previous; + } + + // Redirect to the next item + var redirect = this.next; + + // Remove references + this.next = hard ? null : redirect; + this.previous = null; + + return redirect; +}; + +/** + * A Ticker class that runs an update loop that other objects listen to. + * + * This class is composed around listeners meant for execution on the next requested animation frame. + * Animation frames are requested only when necessary, e.g. When the ticker is started and the emitter has listeners. + * + * @class + * @memberof PIXI + */ +var Ticker = function Ticker() +{ + var this$1 = this; + + /** + * The first listener. All new listeners added are chained on this. + * @private + * @type {TickerListener} + */ + this._head = new TickerListener(null, null, Infinity); + + /** + * Internal current frame request ID + * @type {?number} + * @private + */ + this._requestId = null; + + /** + * Internal value managed by minFPS property setter and getter. + * This is the maximum allowed milliseconds between updates. + * @type {number} + * @private + */ + this._maxElapsedMS = 100; + + /** + * Internal value managed by maxFPS property setter and getter. + * This is the minimum allowed milliseconds between updates. + * @private + */ + this._minElapsedMS = 0; + + /** + * Whether or not this ticker should invoke the method + * {@link PIXI.Ticker#start} automatically + * when a listener is added. + * + * @member {boolean} + * @default false + */ + this.autoStart = false; + + /** + * Scalar time value from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * + * @member {number} + * @default 1 + */ + this.deltaTime = 1; + + /** + * Scaler time elapsed in milliseconds from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.deltaMS = 1 / settings.TARGET_FPMS; + + /** + * Time elapsed in milliseconds from last frame to this frame. + * Opposed to what the scalar {@link PIXI.Ticker#deltaTime} + * is based, this value is neither capped nor scaled. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.elapsedMS = 1 / settings.TARGET_FPMS; + + /** + * The last time {@link PIXI.Ticker#update} was invoked. + * This value is also reset internally outside of invoking + * update, but only when a new animation frame is requested. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * + * @member {number} + * @default -1 + */ + this.lastTime = -1; + + /** + * Factor of current {@link PIXI.Ticker#deltaTime}. + * @example + * // Scales ticker.deltaTime to what would be + * // the equivalent of approximately 120 FPS + * ticker.speed = 2; + * + * @member {number} + * @default 1 + */ + this.speed = 1; + + /** + * Whether or not this ticker has been started. + * `true` if {@link PIXI.Ticker#start} has been called. + * `false` if {@link PIXI.Ticker#stop} has been called. + * While `false`, this value may change to `true` in the + * event of {@link PIXI.Ticker#autoStart} being `true` + * and a listener is added. + * + * @member {boolean} + * @default false + */ + this.started = false; + + /** + * If enabled, deleting is disabled. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + + /** + * The last time keyframe was executed. + * Maintains a relatively fixed interval with the previous value. + * @member {number} + * @default -1 + * @private + */ + this._lastFrame = -1; + + /** + * Internal tick method bound to ticker instance. + * This is because in early 2015, Function.bind + * is still 60% slower in high performance scenarios. + * Also separating frame requests from update method + * so listeners may be called at any time and with + * any animation API, just invoke ticker.update(time). + * + * @private + * @param {number} time - Time since last tick. + */ + this._tick = function (time) { + this$1._requestId = null; + + if (this$1.started) + { + // Invoke listeners now + this$1.update(time); + // Listener side effects may have modified ticker state. + if (this$1.started && this$1._requestId === null && this$1._head.next) + { + this$1._requestId = requestAnimationFrame(this$1._tick); + } + } + }; +}; + +var prototypeAccessors$4 = { FPS: { configurable: true },minFPS: { configurable: true },maxFPS: { configurable: true } }; +var staticAccessors$2 = { shared: { configurable: true },system: { configurable: true } }; + +/** + * Conditionally requests a new animation frame. + * If a frame has not already been requested, and if the internal + * emitter has listeners, a new frame is requested. + * + * @private + */ +Ticker.prototype._requestIfNeeded = function _requestIfNeeded () +{ + if (this._requestId === null && this._head.next) + { + // ensure callbacks get correct delta + this.lastTime = performance.now(); + this._lastFrame = this.lastTime; + this._requestId = requestAnimationFrame(this._tick); + } +}; + +/** + * Conditionally cancels a pending animation frame. + * + * @private + */ +Ticker.prototype._cancelIfNeeded = function _cancelIfNeeded () +{ + if (this._requestId !== null) + { + cancelAnimationFrame(this._requestId); + this._requestId = null; + } +}; + +/** + * Conditionally requests a new animation frame. + * If the ticker has been started it checks if a frame has not already + * been requested, and if the internal emitter has listeners. If these + * conditions are met, a new frame is requested. If the ticker has not + * been started, but autoStart is `true`, then the ticker starts now, + * and continues with the previous conditions to request a new frame. + * + * @private + */ +Ticker.prototype._startIfPossible = function _startIfPossible () +{ + if (this.started) + { + this._requestIfNeeded(); + } + else if (this.autoStart) + { + this.start(); + } +}; + +/** + * Register a handler for tick events. Calls continuously unless + * it is removed or the ticker is stopped. + * + * @param {Function} fn - The listener function to be added for updates + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.add = function add (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority)); +}; + +/** + * Add a handler for the tick event which is only execute once. + * + * @param {Function} fn - The listener function to be added for one update + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.addOnce = function addOnce (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority, true)); +}; + +/** + * Internally adds the event handler so that it can be sorted by priority. + * Priority allows certain handler (user, AnimatedSprite, Interaction) to be run + * before the rendering. + * + * @private + * @param {TickerListener} listener - Current listener being added. + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype._addListener = function _addListener (listener) +{ + // For attaching to head + var current = this._head.next; + var previous = this._head; + + // Add the first item + if (!current) + { + listener.connect(previous); + } + else + { + // Go from highest to lowest priority + while (current) + { + if (listener.priority > current.priority) + { + listener.connect(previous); + break; + } + previous = current; + current = current.next; + } + + // Not yet connected + if (!listener.previous) + { + listener.connect(previous); + } + } + + this._startIfPossible(); + + return this; +}; + +/** + * Removes any handlers matching the function and context parameters. + * If no handlers are left after removing, then it cancels the animation frame. + * + * @param {Function} fn - The listener function to be removed + * @param {*} [context] - The listener context to be removed + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.remove = function remove (fn, context) +{ + var listener = this._head.next; + + while (listener) + { + // We found a match, lets remove it + // no break to delete all possible matches + // incase a listener was added 2+ times + if (listener.match(fn, context)) + { + listener = listener.destroy(); + } + else + { + listener = listener.next; + } + } + + if (!this._head.next) + { + this._cancelIfNeeded(); + } + + return this; +}; + +/** + * Starts the ticker. If the ticker has listeners + * a new animation frame is requested at this point. + */ +Ticker.prototype.start = function start () +{ + if (!this.started) + { + this.started = true; + this._requestIfNeeded(); + } +}; + +/** + * Stops the ticker. If the ticker has requested + * an animation frame it is canceled at this point. + */ +Ticker.prototype.stop = function stop () +{ + if (this.started) + { + this.started = false; + this._cancelIfNeeded(); + } +}; + +/** + * Destroy the ticker and don't use after this. Calling + * this method removes all references to internal events. + */ +Ticker.prototype.destroy = function destroy () +{ + if (!this._protected) + { + this.stop(); + + var listener = this._head.next; + + while (listener) + { + listener = listener.destroy(true); + } + + this._head.destroy(); + this._head = null; + } +}; + +/** + * Triggers an update. An update entails setting the + * current {@link PIXI.Ticker#elapsedMS}, + * the current {@link PIXI.Ticker#deltaTime}, + * invoking all listeners with current deltaTime, + * and then finally setting {@link PIXI.Ticker#lastTime} + * with the value of currentTime that was provided. + * This method will be called automatically by animation + * frame callbacks if the ticker instance has been started + * and listeners are added. + * + * @param {number} [currentTime=performance.now()] - the current time of execution + */ +Ticker.prototype.update = function update (currentTime) +{ + if ( currentTime === void 0 ) currentTime = performance.now(); + + var elapsedMS; + + // If the difference in time is zero or negative, we ignore most of the work done here. + // If there is no valid difference, then should be no reason to let anyone know about it. + // A zero delta, is exactly that, nothing should update. + // + // The difference in time can be negative, and no this does not mean time traveling. + // This can be the result of a race condition between when an animation frame is requested + // on the current JavaScript engine event loop, and when the ticker's start method is invoked + // (which invokes the internal _requestIfNeeded method). If a frame is requested before + // _requestIfNeeded is invoked, then the callback for the animation frame the ticker requests, + // can receive a time argument that can be less than the lastTime value that was set within + // _requestIfNeeded. This difference is in microseconds, but this is enough to cause problems. + // + // This check covers this browser engine timing issue, as well as if consumers pass an invalid + // currentTime value. This may happen if consumers opt-out of the autoStart, and update themselves. + + if (currentTime > this.lastTime) + { + // Save uncapped elapsedMS for measurement + elapsedMS = this.elapsedMS = currentTime - this.lastTime; + + // cap the milliseconds elapsed used for deltaTime + if (elapsedMS > this._maxElapsedMS) + { + elapsedMS = this._maxElapsedMS; + } + + elapsedMS *= this.speed; + + // If not enough time has passed, exit the function. + // Get ready for next frame by setting _lastFrame, but based on _minElapsedMS + // adjustment to ensure a relatively stable interval. + if (this._minElapsedMS) + { + var delta = currentTime - this._lastFrame | 0; + + if (delta < this._minElapsedMS) + { + return; + } + + this._lastFrame = currentTime - (delta % this._minElapsedMS); + } + + this.deltaMS = elapsedMS; + this.deltaTime = this.deltaMS * settings.TARGET_FPMS; + + // Cache a local reference, in-case ticker is destroyed + // during the emit, we can still check for head.next + var head = this._head; + + // Invoke listeners added to internal emitter + var listener = head.next; + + while (listener) + { + listener = listener.emit(this.deltaTime); + } + + if (!head.next) + { + this._cancelIfNeeded(); + } + } + else + { + this.deltaTime = this.deltaMS = this.elapsedMS = 0; + } + + this.lastTime = currentTime; +}; + +/** + * The frames per second at which this ticker is running. + * The default is approximately 60 in most modern browsers. + * **Note:** This does not factor in the value of + * {@link PIXI.Ticker#speed}, which is specific + * to scaling {@link PIXI.Ticker#deltaTime}. + * + * @member {number} + * @readonly + */ +prototypeAccessors$4.FPS.get = function () +{ + return 1000 / this.elapsedMS; +}; + +/** + * Manages the maximum amount of milliseconds allowed to + * elapse between invoking {@link PIXI.Ticker#update}. + * This value is used to cap {@link PIXI.Ticker#deltaTime}, + * but does not effect the measured value of {@link PIXI.Ticker#FPS}. + * When setting this property it is clamped to a value between + * `0` and `PIXI.settings.TARGET_FPMS * 1000`. + * + * @member {number} + * @default 10 + */ +prototypeAccessors$4.minFPS.get = function () +{ + return 1000 / this._maxElapsedMS; +}; + +prototypeAccessors$4.minFPS.set = function (fps) // eslint-disable-line require-jsdoc +{ + // Minimum must be below the maxFPS + var minFPS = Math.min(this.maxFPS, fps); + + // Must be at least 0, but below 1 / settings.TARGET_FPMS + var minFPMS = Math.min(Math.max(0, minFPS) / 1000, settings.TARGET_FPMS); + + this._maxElapsedMS = 1 / minFPMS; +}; + +/** + * Manages the minimum amount of milliseconds required to + * elapse between invoking {@link PIXI.Ticker#update}. + * This will effect the measured value of {@link PIXI.Ticker#FPS}. + * If it is set to `0`, then there is no limit; PixiJS will render as many frames as it can. + * Otherwise it will be at least `minFPS` + * + * @member {number} + * @default 0 + */ +prototypeAccessors$4.maxFPS.get = function () +{ + if (this._minElapsedMS) + { + return Math.round(1000 / this._minElapsedMS); + } + + return 0; +}; + +prototypeAccessors$4.maxFPS.set = function (fps) +{ + if (fps === 0) + { + this._minElapsedMS = 0; + } + else + { + // Max must be at least the minFPS + var maxFPS = Math.max(this.minFPS, fps); + + this._minElapsedMS = 1 / (maxFPS / 1000); + } +}; + +/** + * The shared ticker instance used by {@link PIXI.AnimatedSprite} and by + * {@link PIXI.VideoResource} to update animation frames / video textures. + * + * It may also be used by {@link PIXI.Application} if created with the `sharedTicker` option property set to true. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * Please follow the examples for usage, including how to opt-out of auto-starting the shared ticker. + * + * @example + * let ticker = PIXI.Ticker.shared; + * // Set this to prevent starting this ticker when listeners are added. + * // By default this is true only for the PIXI.Ticker.shared instance. + * ticker.autoStart = false; + * // FYI, call this to ensure the ticker is stopped. It should be stopped + * // if you have not attempted to render anything yet. + * ticker.stop(); + * // Call this when you are ready for a running shared ticker. + * ticker.start(); + * + * @example + * // You may use the shared ticker to render... + * let renderer = PIXI.autoDetectRenderer(); + * let stage = new PIXI.Container(); + * document.body.appendChild(renderer.view); + * ticker.add(function (time) { + * renderer.render(stage); + * }); + * + * @example + * // Or you can just update it manually. + * ticker.autoStart = false; + * ticker.stop(); + * function animate(time) { + * ticker.update(time); + * renderer.render(stage); + * requestAnimationFrame(animate); + * } + * animate(performance.now()); + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.shared.get = function () +{ + if (!Ticker._shared) + { + var shared = Ticker._shared = new Ticker(); + + shared.autoStart = true; + shared._protected = true; + } + + return Ticker._shared; +}; + +/** + * The system ticker instance used by {@link PIXI.interaction.InteractionManager} and by + * {@link PIXI.BasePrepare} for core timing functionality that shouldn't usually need to be paused, + * unlike the `shared` ticker which drives visual animations and rendering which may want to be paused. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.system.get = function () +{ + if (!Ticker._system) + { + var system = Ticker._system = new Ticker(); + + system.autoStart = true; + system._protected = true; + } + + return Ticker._system; +}; + +Object.defineProperties( Ticker.prototype, prototypeAccessors$4 ); +Object.defineProperties( Ticker, staticAccessors$2 ); + +/** + * Middleware for for Application Ticker. + * + * @example + * import {TickerPlugin} from '@pixi/ticker'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(TickerPlugin); + * + * @class + * @memberof PIXI + */ +var TickerPlugin = function TickerPlugin () {}; + +TickerPlugin.init = function init (options) +{ + var this$1 = this; + + // Set default + options = Object.assign({ + autoStart: true, + sharedTicker: false, + }, options); + + // Create ticker setter + Object.defineProperty(this, 'ticker', + { + set: function set(ticker) + { + if (this._ticker) + { + this._ticker.remove(this.render, this); + } + this._ticker = ticker; + if (ticker) + { + ticker.add(this.render, this, UPDATE_PRIORITY.LOW); + } + }, + get: function get() + { + return this._ticker; + }, + }); + + /** + * Convenience method for stopping the render. + * + * @method PIXI.Application#stop + */ + this.stop = function () { + this$1._ticker.stop(); + }; + + /** + * Convenience method for starting the render. + * + * @method PIXI.Application#start + */ + this.start = function () { + this$1._ticker.start(); + }; + + /** + * Internal reference to the ticker. + * + * @type {PIXI.Ticker} + * @name _ticker + * @memberof PIXI.Application# + * @private + */ + this._ticker = null; + + /** + * Ticker for doing render updates. + * + * @type {PIXI.Ticker} + * @name ticker + * @memberof PIXI.Application# + * @default PIXI.Ticker.shared + */ + this.ticker = options.sharedTicker ? Ticker.shared : new Ticker(); + + // Start the rendering + if (options.autoStart) + { + this.start(); + } +}; + +/** + * Clean up the ticker, scoped to application. + * + * @static + * @private + */ +TickerPlugin.destroy = function destroy () +{ + if (this._ticker) + { + var oldTicker = this._ticker; + + this.ticker = null; + oldTicker.destroy(); + } +}; + +/*! + * @pixi/core - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/core is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Base resource class for textures that manages validation and uploading, depending on its type. + * + * Uploading of a base texture to the GPU is required. + * + * @class + * @memberof PIXI.resources + */ +var Resource = function Resource(width, height) +{ + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * Internal width of the resource + * @member {number} + * @protected + */ + this._width = width; + + /** + * Internal height of the resource + * @member {number} + * @protected + */ + this._height = height; + + /** + * If resource has been destroyed + * @member {boolean} + * @readonly + * @default false + */ + this.destroyed = false; + + /** + * `true` if resource is created by BaseTexture + * useful for doing cleanup with BaseTexture destroy + * and not cleaning up resources that were created + * externally. + * @member {boolean} + * @protected + */ + this.internal = false; + + /** + * Mini-runner for handling resize events + * + * @member {Runner} + * @private + */ + this.onResize = new Runner('setRealSize', 2); + + /** + * Mini-runner for handling update events + * + * @member {Runner} + * @private + */ + this.onUpdate = new Runner('update'); + + /** + * Handle internal errors, such as loading errors + * + * @member {Runner} + * @private + */ + this.onError = new Runner('onError', 1); +}; + +var prototypeAccessors$5 = { valid: { configurable: true },width: { configurable: true },height: { configurable: true } }; + +/** + * Bind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.bind = function bind (baseTexture) +{ + this.onResize.add(baseTexture); + this.onUpdate.add(baseTexture); + this.onError.add(baseTexture); + + // Call a resize immediate if we already + // have the width and height of the resource + if (this._width || this._height) + { + this.onResize.run(this._width, this._height); + } +}; + +/** + * Unbind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.unbind = function unbind (baseTexture) +{ + this.onResize.remove(baseTexture); + this.onUpdate.remove(baseTexture); + this.onError.remove(baseTexture); +}; + +/** + * Trigger a resize event + * @param {number} width X dimension + * @param {number} height Y dimension + */ +Resource.prototype.resize = function resize (width, height) +{ + if (width !== this._width || height !== this._height) + { + this._width = width; + this._height = height; + this.onResize.run(width, height); + } +}; + +/** + * Has been validated + * @readonly + * @member {boolean} + */ +prototypeAccessors$5.valid.get = function () +{ + return !!this._width && !!this._height; +}; + +/** + * Has been updated trigger event + */ +Resource.prototype.update = function update () +{ + if (!this.destroyed) + { + this.onUpdate.run(); + } +}; + +/** + * This can be overridden to start preloading a resource + * or do any other prepare step. + * @protected + * @return {Promise} Handle the validate event + */ +Resource.prototype.load = function load () +{ + return Promise.resolve(); +}; + +/** + * The width of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.width.get = function () +{ + return this._width; +}; + +/** + * The height of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.height.get = function () +{ + return this._height; +}; + +/** + * Uploads the texture or returns false if it cant for some reason. Override this. + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} true is success + */ +Resource.prototype.upload = function upload (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Set the style, optional to override + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} `true` is success + */ +Resource.prototype.style = function style (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Clean up anything, this happens when destroying is ready. + * + * @protected + */ +Resource.prototype.dispose = function dispose () +{ + // override +}; + +/** + * Call when destroying resource, unbind any BaseTexture object + * before calling this method, as reference counts are maintained + * internally. + */ +Resource.prototype.destroy = function destroy () +{ + if (!this.destroyed) + { + this.destroyed = true; + this.dispose(); + this.onError.removeAll(); + this.onError = null; + this.onResize.removeAll(); + this.onResize = null; + this.onUpdate.removeAll(); + this.onUpdate = null; + } +}; + +Object.defineProperties( Resource.prototype, prototypeAccessors$5 ); + +/** + * Base for all the image/canvas resources + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BaseImageResource = /*@__PURE__*/(function (Resource) { + function BaseImageResource(source) + { + var width = source.naturalWidth || source.videoWidth || source.width; + var height = source.naturalHeight || source.videoHeight || source.height; + + Resource.call(this, width, height); + + /** + * The source element + * @member {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} + * @readonly + */ + this.source = source; + + /** + * If set to `true`, will force `texImage2D` over `texSubImage2D` for uploading. + * Certain types of media (e.g. video) using `texImage2D` is more performant. + * @member {boolean} + * @default false + * @private + */ + this.noSubImage = false; + } + + if ( Resource ) BaseImageResource.__proto__ = Resource; + BaseImageResource.prototype = Object.create( Resource && Resource.prototype ); + BaseImageResource.prototype.constructor = BaseImageResource; + + /** + * Set cross origin based detecting the url and the crossorigin + * @protected + * @param {HTMLElement} element - Element to apply crossOrigin + * @param {string} url - URL to check + * @param {boolean|string} [crossorigin=true] - Cross origin value to use + */ + BaseImageResource.crossOrigin = function crossOrigin (element, url, crossorigin) + { + if (crossorigin === undefined && url.indexOf('data:') !== 0) + { + element.crossOrigin = determineCrossOrigin(url); + } + else if (crossorigin !== false) + { + element.crossOrigin = typeof crossorigin === 'string' ? crossorigin : 'anonymous'; + } + }; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture + * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} [source] (optional) + * @returns {boolean} true is success + */ + BaseImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture, source) + { + var gl = renderer.gl; + var width = baseTexture.realWidth; + var height = baseTexture.realHeight; + + source = source || this.source; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (!this.noSubImage + && baseTexture.target === gl.TEXTURE_2D + && glTexture.width === width + && glTexture.height === height) + { + gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, baseTexture.format, baseTexture.type, source); + } + else + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(baseTexture.target, 0, baseTexture.format, baseTexture.format, baseTexture.type, source); + } + + return true; + }; + + /** + * Checks if source width/height was changed, resize can cause extra baseTexture update. + * Triggers one update in any case. + */ + BaseImageResource.prototype.update = function update () + { + if (this.destroyed) + { + return; + } + + var width = this.source.naturalWidth || this.source.videoWidth || this.source.width; + var height = this.source.naturalHeight || this.source.videoHeight || this.source.height; + + this.resize(width, height); + + Resource.prototype.update.call(this); + }; + + /** + * Destroy this BaseImageResource + * @override + * @param {PIXI.BaseTexture} [fromTexture] Optional base texture + * @return {boolean} Destroy was successful + */ + BaseImageResource.prototype.dispose = function dispose () + { + this.source = null; + }; + + return BaseImageResource; +}(Resource)); + +/** + * Resource type for HTMLImageElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + */ +var ImageResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLImageElement)) + { + var imageElement = new Image(); + + BaseImageResource.crossOrigin(imageElement, source, options.crossorigin); + + imageElement.src = source; + source = imageElement; + } + + BaseImageResource.call(this, source); + + // FireFox 68, and possibly other versions, seems like setting the HTMLImageElement#width and #height + // to non-zero values before its loading completes if images are in a cache. + // Because of this, need to set the `_width` and the `_height` to zero to avoid uploading incomplete images. + // Please refer to the issue #5968 (https://github.com/pixijs/pixi.js/issues/5968). + if (!source.complete && !!this._width && !!this._height) + { + this._width = 0; + this._height = 0; + } + + /** + * URL of the image source + * @member {string} + */ + this.url = source.src; + + /** + * When process is completed + * @member {Promise} + * @private + */ + this._process = null; + + /** + * If the image should be disposed after upload + * @member {boolean} + * @default false + */ + this.preserveBitmap = false; + + /** + * If capable, convert the image using createImageBitmap API + * @member {boolean} + * @default PIXI.settings.CREATE_IMAGE_BITMAP + */ + this.createBitmap = (options.createBitmap !== undefined + ? options.createBitmap : settings.CREATE_IMAGE_BITMAP) && !!window.createImageBitmap; + + /** + * Controls texture premultiplyAlpha field + * Copies from options + * @member {boolean|null} + * @readonly + */ + this.premultiplyAlpha = options.premultiplyAlpha !== false; + + /** + * The ImageBitmap element created for HTMLImageElement + * @member {ImageBitmap} + * @default null + */ + this.bitmap = null; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) ImageResource.__proto__ = BaseImageResource; + ImageResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageResource.prototype.constructor = ImageResource; + + /** + * returns a promise when image will be loaded and processed + * + * @param {boolean} [createBitmap=true] whether process image into bitmap + * @returns {Promise} + */ + ImageResource.prototype.load = function load (createBitmap) + { + var this$1 = this; + + if (createBitmap !== undefined) + { + this.createBitmap = createBitmap; + } + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + this$1.url = this$1.source.src; + var ref = this$1; + var source = ref.source; + + var completed = function () { + if (this$1.destroyed) + { + return; + } + source.onload = null; + source.onerror = null; + + this$1.resize(source.width, source.height); + this$1._load = null; + + if (this$1.createBitmap) + { + resolve(this$1.process()); + } + else + { + resolve(this$1); + } + }; + + if (source.complete && source.src) + { + completed(); + } + else + { + source.onload = completed; + source.onerror = function (event) { return this$1.onError.run(event); }; + } + }); + + return this._load; + }; + + /** + * Called when we need to convert image into BitmapImage. + * Can be called multiple times, real promise is cached inside. + * + * @returns {Promise} cached promise to fill that bitmap + */ + ImageResource.prototype.process = function process () + { + var this$1 = this; + + if (this._process !== null) + { + return this._process; + } + if (this.bitmap !== null || !window.createImageBitmap) + { + return Promise.resolve(this); + } + + this._process = window.createImageBitmap(this.source, + 0, 0, this.source.width, this.source.height, + { + premultiplyAlpha: this.premultiplyAlpha ? 'premultiply' : 'none', + }) + .then(function (bitmap) { + if (this$1.destroyed) + { + return Promise.reject(); + } + this$1.bitmap = bitmap; + this$1.update(); + this$1._process = null; + + return Promise.resolve(this$1); + }); + + return this._process; + }; + + /** + * Upload the image resource to GPU. + * + * @param {PIXI.Renderer} renderer - Renderer to upload to + * @param {PIXI.BaseTexture} baseTexture - BaseTexture for this resource + * @param {PIXI.GLTexture} glTexture - GLTexture to use + * @returns {boolean} true is success + */ + ImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + baseTexture.premultiplyAlpha = this.premultiplyAlpha; + + if (!this.createBitmap) + { + return BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture); + } + if (!this.bitmap) + { + // yeah, ignore the output + this.process(); + if (!this.bitmap) + { + return false; + } + } + + BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture, this.bitmap); + + if (!this.preserveBitmap) + { + // checks if there are other renderers that possibly need this bitmap + + var flag = true; + + for (var key in baseTexture._glTextures) + { + var otherTex = baseTexture._glTextures[key]; + + if (otherTex !== glTexture && otherTex.dirtyId !== baseTexture.dirtyId) + { + flag = false; + break; + } + } + + if (flag) + { + if (this.bitmap.close) + { + this.bitmap.close(); + } + + this.bitmap = null; + } + } + + return true; + }; + + /** + * Destroys this texture + * @override + */ + ImageResource.prototype.dispose = function dispose () + { + this.source.onload = null; + this.source.onerror = null; + + BaseImageResource.prototype.dispose.call(this); + + if (this.bitmap) + { + this.bitmap.close(); + this.bitmap = null; + } + this._process = null; + this._load = null; + }; + + return ImageResource; +}(BaseImageResource)); + +/** + * Collection of installed resource types, class must extend {@link PIXI.resources.Resource}. + * @example + * class CustomResource extends PIXI.resources.Resource { + * // MUST have source, options constructor signature + * // for auto-detected resources to be created. + * constructor(source, options) { + * super(); + * } + * upload(renderer, baseTexture, glTexture) { + * // upload with GL + * return true; + * } + * // used to auto-detect resource + * static test(source, extension) { + * return extension === 'xyz'|| source instanceof SomeClass; + * } + * } + * // Install the new resource type + * PIXI.resources.INSTALLED.push(CustomResource); + * + * @name PIXI.resources.INSTALLED + * @type {Array<*>} + * @static + * @readonly + */ +var INSTALLED = []; + +/** + * Create a resource element from a single source element. This + * auto-detects which type of resource to create. All resources that + * are auto-detectable must have a static `test` method and a constructor + * with the arguments `(source, options?)`. Currently, the supported + * resources for auto-detection include: + * - {@link PIXI.resources.ImageResource} + * - {@link PIXI.resources.CanvasResource} + * - {@link PIXI.resources.VideoResource} + * - {@link PIXI.resources.SVGResource} + * - {@link PIXI.resources.BufferResource} + * @static + * @function PIXI.resources.autoDetectResource + * @param {string|*} source - Resource source, this can be the URL to the resource, + * a typed-array (for BufferResource), HTMLVideoElement, SVG data-uri + * or any other resource that can be auto-detected. If not resource is + * detected, it's assumed to be an ImageResource. + * @param {object} [options] - Pass-through options to use for Resource + * @param {number} [options.width] - Width of BufferResource or SVG rasterization + * @param {number} [options.height] - Height of BufferResource or SVG rasterization + * @param {boolean} [options.autoLoad=true] - Image, SVG and Video flag to start loading + * @param {number} [options.scale=1] - SVG source scale. Overridden by width, height + * @param {boolean} [options.createBitmap=PIXI.settings.CREATE_IMAGE_BITMAP] - Image option to create Bitmap object + * @param {boolean} [options.crossorigin=true] - Image and Video option to set crossOrigin + * @param {boolean} [options.autoPlay=true] - Video option to start playing video immediately + * @param {number} [options.updateFPS=0] - Video option to update how many times a second the + * texture should be updated from the video. Leave at 0 to update at every render + * @return {PIXI.resources.Resource} The created resource. + */ +function autoDetectResource(source, options) +{ + if (!source) + { + return null; + } + + var extension = ''; + + if (typeof source === 'string') + { + // search for file extension: period, 3-4 chars, then ?, # or EOL + var result = (/\.(\w{3,4})(?:$|\?|#)/i).exec(source); + + if (result) + { + extension = result[1].toLowerCase(); + } + } + + for (var i = INSTALLED.length - 1; i >= 0; --i) + { + var ResourcePlugin = INSTALLED[i]; + + if (ResourcePlugin.test && ResourcePlugin.test(source, extension)) + { + return new ResourcePlugin(source, options); + } + } + + // When in doubt: probably an image + // might be appropriate to throw an error or return null + return new ImageResource(source, options); +} + +/** + * @interface SharedArrayBuffer + */ + +/** + * Buffer resource with data of typed array. + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BufferResource = /*@__PURE__*/(function (Resource) { + function BufferResource(source, options) + { + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + if (!width || !height) + { + throw new Error('BufferResource width or height invalid'); + } + + Resource.call(this, width, height); + + /** + * Source array + * Cannot be ClampedUint8Array because it cant be uploaded to WebGL + * + * @member {Float32Array|Uint8Array|Uint32Array} + */ + this.data = source; + } + + if ( Resource ) BufferResource.__proto__ = Resource; + BufferResource.prototype = Object.create( Resource && Resource.prototype ); + BufferResource.prototype.constructor = BufferResource; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture glTexture + * @returns {boolean} true is success + */ + BufferResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + glTexture.internalFormat, + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + glTexture.type, + this.data + ); + } + + return true; + }; + + /** + * Destroy and don't use after this + * @override + */ + BufferResource.prototype.dispose = function dispose () + { + this.data = null; + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @return {boolean} `true` if + */ + BufferResource.test = function test (source) + { + return source instanceof Float32Array + || source instanceof Uint8Array + || source instanceof Uint32Array; + }; + + return BufferResource; +}(Resource)); + +var defaultBufferOptions = { + scaleMode: SCALE_MODES.NEAREST, + format: FORMATS.RGBA, + premultiplyAlpha: false, +}; + +/** + * A Texture stores the information that represents an image. + * All textures have a base texture, which contains information about the source. + * Therefore you can have many textures all using a single BaseTexture + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + * @param {PIXI.resources.Resource|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} [resource=null] + * The current resource to use, for things that aren't Resource objects, will be converted + * into a Resource. + * @param {Object} [options] - Collection of options + * @param {PIXI.MIPMAP_MODES} [options.mipmap=PIXI.settings.MIPMAP_TEXTURES] - If mipmapping is enabled for texture + * @param {number} [options.anisotropicLevel=PIXI.settings.ANISOTROPIC_LEVEL] - Anisotropic filtering level of texture + * @param {PIXI.WRAP_MODES} [options.wrapMode=PIXI.settings.WRAP_MODE] - Wrap mode for textures + * @param {PIXI.SCALE_MODES} [options.scaleMode=PIXI.settings.SCALE_MODE] - Default scale mode, linear, nearest + * @param {PIXI.FORMATS} [options.format=PIXI.FORMATS.RGBA] - GL format type + * @param {PIXI.TYPES} [options.type=PIXI.TYPES.UNSIGNED_BYTE] - GL data type + * @param {PIXI.TARGETS} [options.target=PIXI.TARGETS.TEXTURE_2D] - GL texture target + * @param {boolean} [options.premultiplyAlpha=true] - Pre multiply the image alpha + * @param {number} [options.width=0] - Width of the texture + * @param {number} [options.height=0] - Height of the texture + * @param {number} [options.resolution] - Resolution of the base texture + * @param {object} [options.resourceOptions] - Optional resource options, + * see {@link PIXI.resources.autoDetectResource autoDetectResource} + */ +var BaseTexture = /*@__PURE__*/(function (EventEmitter) { + function BaseTexture(resource, options) + { + if ( resource === void 0 ) resource = null; + if ( options === void 0 ) options = null; + + EventEmitter.call(this); + + options = options || {}; + + var premultiplyAlpha = options.premultiplyAlpha; + var mipmap = options.mipmap; + var anisotropicLevel = options.anisotropicLevel; + var scaleMode = options.scaleMode; + var width = options.width; + var height = options.height; + var wrapMode = options.wrapMode; + var format = options.format; + var type = options.type; + var target = options.target; + var resolution = options.resolution; + var resourceOptions = options.resourceOptions; + + // Convert the resource to a Resource object + if (resource && !(resource instanceof Resource)) + { + resource = autoDetectResource(resource, resourceOptions); + resource.internal = true; + } + + /** + * The width of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.width = width || 0; + + /** + * The height of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.height = height || 0; + + /** + * The resolution / device pixel ratio of the texture + * + * @member {number} + * @default PIXI.settings.RESOLUTION + */ + this.resolution = resolution || settings.RESOLUTION; + + /** + * Mipmap mode of the texture, affects downscaled images + * + * @member {PIXI.MIPMAP_MODES} + * @default PIXI.settings.MIPMAP_TEXTURES + */ + this.mipmap = mipmap !== undefined ? mipmap : settings.MIPMAP_TEXTURES; + + /** + * Anisotropic filtering level of texture + * + * @member {number} + * @default PIXI.settings.ANISOTROPIC_LEVEL + */ + this.anisotropicLevel = anisotropicLevel !== undefined ? anisotropicLevel : settings.ANISOTROPIC_LEVEL; + + /** + * How the texture wraps + * @member {number} + */ + this.wrapMode = wrapMode || settings.WRAP_MODE; + + /** + * The scale mode to apply when scaling this texture + * + * @member {PIXI.SCALE_MODES} + * @default PIXI.settings.SCALE_MODE + */ + this.scaleMode = scaleMode !== undefined ? scaleMode : settings.SCALE_MODE; + + /** + * The pixel format of the texture + * + * @member {PIXI.FORMATS} + * @default PIXI.FORMATS.RGBA + */ + this.format = format || FORMATS.RGBA; + + /** + * The type of resource data + * + * @member {PIXI.TYPES} + * @default PIXI.TYPES.UNSIGNED_BYTE + */ + this.type = type || TYPES.UNSIGNED_BYTE; + + /** + * The target type + * + * @member {PIXI.TARGETS} + * @default PIXI.TARGETS.TEXTURE_2D + */ + this.target = target || TARGETS.TEXTURE_2D; + + /** + * Set to true to enable pre-multiplied alpha + * + * @member {boolean} + * @default true + */ + this.premultiplyAlpha = premultiplyAlpha !== false; + + /** + * Global unique identifier for this BaseTexture + * + * @member {string} + * @protected + */ + this.uid = uid(); + + /** + * Used by automatic texture Garbage Collection, stores last GC tick when it was bound + * + * @member {number} + * @protected + */ + this.touched = 0; + + /** + * Whether or not the texture is a power of two, try to use power of two textures as much + * as you can + * + * @readonly + * @member {boolean} + * @default false + */ + this.isPowerOfTwo = false; + this._refreshPOT(); + + /** + * The map of render context textures where this is bound + * + * @member {Object} + * @private + */ + this._glTextures = {}; + + /** + * Used by TextureSystem to only update texture to the GPU when needed. + * Please call `update()` to increment it. + * + * @readonly + * @member {number} + */ + this.dirtyId = 0; + + /** + * Used by TextureSystem to only update texture style when needed. + * + * @protected + * @member {number} + */ + this.dirtyStyleId = 0; + + /** + * Currently default cache ID. + * + * @member {string} + */ + this.cacheId = null; + + /** + * Generally speaking means when resource is loaded. + * @readonly + * @member {boolean} + */ + this.valid = width > 0 && height > 0; + + /** + * The collection of alternative cache ids, since some BaseTextures + * can have more than one ID, short name and longer full URL + * + * @member {Array} + * @readonly + */ + this.textureCacheIds = []; + + /** + * Flag if BaseTexture has been destroyed. + * + * @member {boolean} + * @readonly + */ + this.destroyed = false; + + /** + * The resource used by this BaseTexture, there can only + * be one resource per BaseTexture, but textures can share + * resources. + * + * @member {PIXI.resources.Resource} + * @readonly + */ + this.resource = null; + + /** + * Number of the texture batch, used by multi-texture renderers + * + * @member {number} + */ + this._batchEnabled = 0; + + /** + * Fired when a not-immediately-available source finishes loading. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when a not-immediately-available source fails to load. + * + * @protected + * @event PIXI.BaseTexture#error + * @param {PIXI.BaseTexture} baseTexture - Resource errored. + * @param {ErrorEvent} event - Load error event. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#update + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being updated. + */ + + /** + * Fired when BaseTexture is destroyed. + * + * @protected + * @event PIXI.BaseTexture#dispose + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being destroyed. + */ + + // Set the resource + this.setResource(resource); + } + + if ( EventEmitter ) BaseTexture.__proto__ = EventEmitter; + BaseTexture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + BaseTexture.prototype.constructor = BaseTexture; + + var prototypeAccessors = { realWidth: { configurable: true },realHeight: { configurable: true } }; + + /** + * Pixel width of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realWidth.get = function () + { + return Math.ceil((this.width * this.resolution) - 1e-4); + }; + + /** + * Pixel height of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realHeight.get = function () + { + return Math.ceil((this.height * this.resolution) - 1e-4); + }; + + /** + * Changes style options of BaseTexture + * + * @param {PIXI.SCALE_MODES} [scaleMode] - Pixi scalemode + * @param {PIXI.MIPMAP_MODES} [mipmap] - enable mipmaps + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setStyle = function setStyle (scaleMode, mipmap) + { + var dirty; + + if (scaleMode !== undefined && scaleMode !== this.scaleMode) + { + this.scaleMode = scaleMode; + dirty = true; + } + + if (mipmap !== undefined && mipmap !== this.mipmap) + { + this.mipmap = mipmap; + dirty = true; + } + + if (dirty) + { + this.dirtyStyleId++; + } + + return this; + }; + + /** + * Changes w/h/resolution. Texture becomes valid if width and height are greater than zero. + * + * @param {number} width Visual width + * @param {number} height Visual height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setSize = function setSize (width, height, resolution) + { + this.resolution = resolution || this.resolution; + this.width = width; + this.height = height; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Sets real size of baseTexture, preserves current resolution. + * + * @param {number} realWidth Full rendered width + * @param {number} realHeight Full rendered height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setRealSize = function setRealSize (realWidth, realHeight, resolution) + { + this.resolution = resolution || this.resolution; + this.width = realWidth / this.resolution; + this.height = realHeight / this.resolution; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Refresh check for isPowerOfTwo texture based on size + * + * @private + */ + BaseTexture.prototype._refreshPOT = function _refreshPOT () + { + this.isPowerOfTwo = isPow2(this.realWidth) && isPow2(this.realHeight); + }; + + /** + * Changes resolution + * + * @param {number} [resolution] res + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResolution = function setResolution (resolution) + { + var oldResolution = this.resolution; + + if (oldResolution === resolution) + { + return this; + } + + this.resolution = resolution; + + if (this.valid) + { + this.width = this.width * oldResolution / resolution; + this.height = this.height * oldResolution / resolution; + this.emit('update', this); + } + + this._refreshPOT(); + + return this; + }; + + /** + * Sets the resource if it wasn't set. Throws error if resource already present + * + * @param {PIXI.resources.Resource} resource - that is managing this BaseTexture + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResource = function setResource (resource) + { + if (this.resource === resource) + { + return this; + } + + if (this.resource) + { + throw new Error('Resource can be set only once'); + } + + resource.bind(this); + + this.resource = resource; + + return this; + }; + + /** + * Invalidates the object. Texture becomes valid if width and height are greater than zero. + */ + BaseTexture.prototype.update = function update () + { + if (!this.valid) + { + if (this.width > 0 && this.height > 0) + { + this.valid = true; + this.emit('loaded', this); + this.emit('update', this); + } + } + else + { + this.dirtyId++; + this.dirtyStyleId++; + this.emit('update', this); + } + }; + + /** + * Handle errors with resources. + * @private + * @param {ErrorEvent} event - Error event emitted. + */ + BaseTexture.prototype.onError = function onError (event) + { + this.emit('error', this, event); + }; + + /** + * Destroys this base texture. + * The method stops if resource doesn't want this texture to be destroyed. + * Removes texture from all caches. + */ + BaseTexture.prototype.destroy = function destroy () + { + // remove and destroy the resource + if (this.resource) + { + this.resource.unbind(this); + // only destroy resourced created internally + if (this.resource.internal) + { + this.resource.destroy(); + } + this.resource = null; + } + + if (this.cacheId) + { + delete BaseTextureCache[this.cacheId]; + delete TextureCache[this.cacheId]; + + this.cacheId = null; + } + + // finally let the WebGL renderer know.. + this.dispose(); + + BaseTexture.removeFromCache(this); + this.textureCacheIds = null; + + this.destroyed = true; + }; + + /** + * Frees the texture from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseTexture.prototype.dispose = function dispose () + { + this.emit('dispose', this); + }; + + /** + * Helper function that creates a base texture based on the source you provide. + * The source can be - image url, image element, canvas element. If the + * source is an image url or an image element and not in the base texture + * cache, it will be created and loaded. + * + * @static + * @param {string|HTMLImageElement|HTMLCanvasElement|SVGElement|HTMLVideoElement} source - The + * source to create base texture from. + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @returns {PIXI.BaseTexture} The new base texture. + */ + BaseTexture.from = function from (source, options) + { + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var baseTexture = BaseTextureCache[cacheId]; + + if (!baseTexture) + { + baseTexture = new BaseTexture(source, options); + baseTexture.cacheId = cacheId; + BaseTexture.addToCache(baseTexture, cacheId); + } + + return baseTexture; + }; + + /** + * Create a new BaseTexture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.BaseTexture} The resulting new BaseTexture + */ + BaseTexture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + buffer = buffer || new Float32Array(width * height * 4); + + var resource = new BufferResource(buffer, { width: width, height: height }); + var type = buffer instanceof Float32Array ? TYPES.FLOAT : TYPES.UNSIGNED_BYTE; + + return new BaseTexture(resource, Object.assign(defaultBufferOptions, options || { width: width, height: height, type: type })); + }; + + /** + * Adds a BaseTexture to the global BaseTextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.BaseTexture} baseTexture - The BaseTexture to add to the cache. + * @param {string} id - The id that the BaseTexture will be stored against. + */ + BaseTexture.addToCache = function addToCache (baseTexture, id) + { + if (id) + { + if (baseTexture.textureCacheIds.indexOf(id) === -1) + { + baseTexture.textureCacheIds.push(id); + } + + if (BaseTextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("BaseTexture added to the cache with an id [" + id + "] that already had an entry")); + } + + BaseTextureCache[id] = baseTexture; + } + }; + + /** + * Remove a BaseTexture from the global BaseTextureCache. + * + * @static + * @param {string|PIXI.BaseTexture} baseTexture - id of a BaseTexture to be removed, or a BaseTexture instance itself. + * @return {PIXI.BaseTexture|null} The BaseTexture that was removed. + */ + BaseTexture.removeFromCache = function removeFromCache (baseTexture) + { + if (typeof baseTexture === 'string') + { + var baseTextureFromCache = BaseTextureCache[baseTexture]; + + if (baseTextureFromCache) + { + var index = baseTextureFromCache.textureCacheIds.indexOf(baseTexture); + + if (index > -1) + { + baseTextureFromCache.textureCacheIds.splice(index, 1); + } + + delete BaseTextureCache[baseTexture]; + + return baseTextureFromCache; + } + } + else if (baseTexture && baseTexture.textureCacheIds) + { + for (var i = 0; i < baseTexture.textureCacheIds.length; ++i) + { + delete BaseTextureCache[baseTexture.textureCacheIds[i]]; + } + + baseTexture.textureCacheIds.length = 0; + + return baseTexture; + } + + return null; + }; + + Object.defineProperties( BaseTexture.prototype, prototypeAccessors ); + + return BaseTexture; +}(eventemitter3)); + +/** + * Global number of the texture batch, used by multi-texture renderers + * + * @static + * @member {number} + */ +BaseTexture._globalBatch = 0; + +/** + * A resource that contains a number of sources. + * + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + * @param {number|Array<*>} source - Number of items in array or the collection + * of image URLs to use. Can also be resources, image elements, canvas, etc. + * @param {object} [options] Options to apply to {@link PIXI.resources.autoDetectResource} + * @param {number} [options.width] - Width of the resource + * @param {number} [options.height] - Height of the resource + */ +var ArrayResource = /*@__PURE__*/(function (Resource) { + function ArrayResource(source, options) + { + options = options || {}; + + var urls; + var length = source; + + if (Array.isArray(source)) + { + urls = source; + length = source.length; + } + + Resource.call(this, options.width, options.height); + + /** + * Collection of resources. + * @member {Array} + * @readonly + */ + this.items = []; + + /** + * Dirty IDs for each part + * @member {Array} + * @readonly + */ + this.itemDirtyIds = []; + + for (var i = 0; i < length; i++) + { + var partTexture = new BaseTexture(); + + this.items.push(partTexture); + this.itemDirtyIds.push(-1); + } + + /** + * Number of elements in array + * + * @member {number} + * @readonly + */ + this.length = length; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (urls) + { + for (var i$1 = 0; i$1 < length; i$1++) + { + this.addResourceAt(autoDetectResource(urls[i$1], options), i$1); + } + } + } + + if ( Resource ) ArrayResource.__proto__ = Resource; + ArrayResource.prototype = Object.create( Resource && Resource.prototype ); + ArrayResource.prototype.constructor = ArrayResource; + + /** + * Destroy this BaseImageResource + * @override + */ + ArrayResource.prototype.dispose = function dispose () + { + for (var i = 0, len = this.length; i < len; i++) + { + this.items[i].destroy(); + } + this.items = null; + this.itemDirtyIds = null; + this._load = null; + }; + + /** + * Set a resource by ID + * + * @param {PIXI.resources.Resource} resource + * @param {number} index - Zero-based index of resource to set + * @return {PIXI.resources.ArrayResource} Instance for chaining + */ + ArrayResource.prototype.addResourceAt = function addResourceAt (resource, index) + { + var baseTexture = this.items[index]; + + if (!baseTexture) + { + throw new Error(("Index " + index + " is out of bounds")); + } + + // Inherit the first resource dimensions + if (resource.valid && !this.valid) + { + this.resize(resource.width, resource.height); + } + + this.items[index].setResource(resource); + + return this; + }; + + /** + * Set the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.bind = function bind (baseTexture) + { + Resource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_2D_ARRAY; + + for (var i = 0; i < this.length; i++) + { + this.items[i].on('update', baseTexture.update, baseTexture); + } + }; + + /** + * Unset the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.unbind = function unbind (baseTexture) + { + Resource.prototype.unbind.call(this, baseTexture); + + for (var i = 0; i < this.length; i++) + { + this.items[i].off('update', baseTexture.update, baseTexture); + } + }; + + /** + * Load all the resources simultaneously + * @override + * @return {Promise} When load is resolved + */ + ArrayResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var resources = this.items.map(function (item) { return item.resource; }); + + // TODO: also implement load part-by-part strategy + var promises = resources.map(function (item) { return item.load(); }); + + this._load = Promise.all(promises) + .then(function () { + var ref = resources[0]; + var width = ref.width; + var height = ref.height; + + this$1.resize(width, height); + + return Promise.resolve(this$1); + } + ); + + return this._load; + }; + + /** + * Upload the resources to the GPU. + * @param {PIXI.Renderer} renderer + * @param {PIXI.BaseTexture} texture + * @param {PIXI.GLTexture} glTexture + * @returns {boolean} whether texture was uploaded + */ + ArrayResource.prototype.upload = function upload (renderer, texture, glTexture) + { + var ref = this; + var length = ref.length; + var itemDirtyIds = ref.itemDirtyIds; + var items = ref.items; + var gl = renderer.gl; + + if (glTexture.dirtyId < 0) + { + gl.texImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + texture.format, + this._width, + this._height, + length, + 0, + texture.format, + texture.type, + null + ); + } + + for (var i = 0; i < length; i++) + { + var item = items[i]; + + if (itemDirtyIds[i] < item.dirtyId) + { + itemDirtyIds[i] = item.dirtyId; + if (item.valid) + { + gl.texSubImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + 0, // xoffset + 0, // yoffset + i, // zoffset + item.resource.width, + item.resource.height, + 1, + texture.format, + texture.type, + item.resource.source + ); + } + } + } + + return true; + }; + + return ArrayResource; +}(Resource)); + +/** + * @interface OffscreenCanvas + */ + +/** + * Resource type for HTMLCanvasElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLCanvasElement} source - Canvas element to use + */ +var CanvasResource = /*@__PURE__*/(function (BaseImageResource) { + function CanvasResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) CanvasResource.__proto__ = BaseImageResource; + CanvasResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + CanvasResource.prototype.constructor = CanvasResource; + + CanvasResource.test = function test (source) + { + var OffscreenCanvas = window.OffscreenCanvas; + + // Check for browsers that don't yet support OffscreenCanvas + if (OffscreenCanvas && source instanceof OffscreenCanvas) + { + return true; + } + + return source instanceof HTMLCanvasElement; + }; + + return CanvasResource; +}(BaseImageResource)); + +/** + * Resource for a CubeTexture which contains six resources. + * + * @class + * @extends PIXI.resources.ArrayResource + * @memberof PIXI.resources + * @param {Array} [source] Collection of URLs or resources + * to use as the sides of the cube. + * @param {object} [options] - ImageResource options + * @param {number} [options.width] - Width of resource + * @param {number} [options.height] - Height of resource + */ +var CubeResource = /*@__PURE__*/(function (ArrayResource) { + function CubeResource(source, options) + { + options = options || {}; + + ArrayResource.call(this, source, options); + + if (this.length !== CubeResource.SIDES) + { + throw new Error(("Invalid length. Got " + (this.length) + ", expected 6")); + } + + for (var i = 0; i < CubeResource.SIDES; i++) + { + this.items[i].target = TARGETS.TEXTURE_CUBE_MAP_POSITIVE_X + i; + } + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( ArrayResource ) CubeResource.__proto__ = ArrayResource; + CubeResource.prototype = Object.create( ArrayResource && ArrayResource.prototype ); + CubeResource.prototype.constructor = CubeResource; + + /** + * Add binding + * + * @override + * @param {PIXI.BaseTexture} baseTexture - parent base texture + */ + CubeResource.prototype.bind = function bind (baseTexture) + { + ArrayResource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_CUBE_MAP; + }; + + /** + * Upload the resource + * + * @returns {boolean} true is success + */ + CubeResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var dirty = this.itemDirtyIds; + + for (var i = 0; i < CubeResource.SIDES; i++) + { + var side = this.items[i]; + + if (dirty[i] < side.dirtyId) + { + dirty[i] = side.dirtyId; + if (side.valid) + { + side.resource.upload(renderer, side, glTexture); + } + } + } + + return true; + }; + + return CubeResource; +}(ArrayResource)); + +/** + * Number of texture sides to store for CubeResources + * + * @name PIXI.resources.CubeResource.SIDES + * @static + * @member {number} + * @default 6 + */ +CubeResource.SIDES = 6; + +/** + * Resource type for SVG elements and graphics. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {string} source - Base64 encoded SVG element or URL for SVG file. + * @param {object} [options] - Options to use + * @param {number} [options.scale=1] Scale to apply to SVG. Overridden by... + * @param {number} [options.width] Rasterize SVG this wide. Aspect ratio preserved if height not specified. + * @param {number} [options.height] Rasterize SVG this high. Aspect ratio preserved if width not specified. + * @param {boolean} [options.autoLoad=true] Start loading right away. + */ +var SVGResource = /*@__PURE__*/(function (BaseImageResource) { + function SVGResource(source, options) + { + options = options || {}; + + BaseImageResource.call(this, document.createElement('canvas')); + this._width = 0; + this._height = 0; + + /** + * Base64 encoded SVG element or URL for SVG file + * @readonly + * @member {string} + */ + this.svg = source; + + /** + * The source scale to apply when rasterizing on load + * @readonly + * @member {number} + */ + this.scale = options.scale || 1; + + /** + * A width override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideWidth = options.width; + + /** + * A height override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideHeight = options.height; + + /** + * Call when completely loaded + * @private + * @member {function} + */ + this._resolve = null; + + /** + * Cross origin value to use + * @private + * @member {boolean|string} + */ + this._crossorigin = options.crossorigin; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) SVGResource.__proto__ = BaseImageResource; + SVGResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + SVGResource.prototype.constructor = SVGResource; + + SVGResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + // Save this until after load is finished + this$1._resolve = function () { + this$1.resize(this$1.source.width, this$1.source.height); + resolve(this$1); + }; + + // Convert SVG inline string to data-uri + if ((/^\]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*>/i; // eslint-disable-line max-len + +/** + * Resource type for HTMLVideoElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLVideoElement|object|string|Array} source - Video element to use. + * @param {object} [options] - Options to use + * @param {boolean} [options.autoLoad=true] - Start loading the video immediately + * @param {boolean} [options.autoPlay=true] - Start playing video immediately + * @param {number} [options.updateFPS=0] - How many times a second to update the texture from the video. + * Leave at 0 to update at every render. + * @param {boolean} [options.crossorigin=true] - Load image using cross origin + */ +var VideoResource = /*@__PURE__*/(function (BaseImageResource) { + function VideoResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLVideoElement)) + { + var videoElement = document.createElement('video'); + + // workaround for https://github.com/pixijs/pixi.js/issues/5996 + videoElement.setAttribute('preload', 'auto'); + videoElement.setAttribute('webkit-playsinline', ''); + videoElement.setAttribute('playsinline', ''); + + if (typeof source === 'string') + { + source = [source]; + } + + BaseImageResource.crossOrigin(videoElement, (source[0].src || source[0]), options.crossorigin); + + // array of objects or strings + for (var i = 0; i < source.length; ++i) + { + var sourceElement = document.createElement('source'); + + var ref = source[i]; + var src = ref.src; + var mime = ref.mime; + + src = src || source[i]; + + var baseSrc = src.split('?').shift().toLowerCase(); + var ext = baseSrc.substr(baseSrc.lastIndexOf('.') + 1); + + mime = mime || ("video/" + ext); + + sourceElement.src = src; + sourceElement.type = mime; + + videoElement.appendChild(sourceElement); + } + + // Override the source + source = videoElement; + } + + BaseImageResource.call(this, source); + + this.noSubImage = true; + this._autoUpdate = true; + this._isAutoUpdating = false; + this._updateFPS = options.updateFPS || 0; + this._msToNextUpdate = 0; + + /** + * When set to true will automatically play videos used by this texture once + * they are loaded. If false, it will not modify the playing state. + * + * @member {boolean} + * @default true + */ + this.autoPlay = options.autoPlay !== false; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + /** + * Callback when completed with load. + * @member {function} + * @private + */ + this._resolve = null; + + // Bind for listeners + this._onCanPlay = this._onCanPlay.bind(this); + this._onError = this._onError.bind(this); + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) VideoResource.__proto__ = BaseImageResource; + VideoResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + VideoResource.prototype.constructor = VideoResource; + + var prototypeAccessors = { autoUpdate: { configurable: true },updateFPS: { configurable: true } }; + + /** + * Trigger updating of the texture + * + * @param {number} [deltaTime=0] - time delta since last tick + */ + VideoResource.prototype.update = function update (deltaTime) + { + if ( deltaTime === void 0 ) deltaTime = 0; + + if (!this.destroyed) + { + // account for if video has had its playbackRate changed + var elapsedMS = Ticker.shared.elapsedMS * this.source.playbackRate; + + this._msToNextUpdate = Math.floor(this._msToNextUpdate - elapsedMS); + if (!this._updateFPS || this._msToNextUpdate <= 0) + { + BaseImageResource.prototype.update.call(this, deltaTime); + this._msToNextUpdate = this._updateFPS ? Math.floor(1000 / this._updateFPS) : 0; + } + } + }; + + /** + * Start preloading the video resource. + * + * @protected + * @return {Promise} Handle the validate event + */ + VideoResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var source = this.source; + + if ((source.readyState === source.HAVE_ENOUGH_DATA || source.readyState === source.HAVE_FUTURE_DATA) + && source.width && source.height) + { + source.complete = true; + } + + source.addEventListener('play', this._onPlayStart.bind(this)); + source.addEventListener('pause', this._onPlayStop.bind(this)); + + if (!this._isSourceReady()) + { + source.addEventListener('canplay', this._onCanPlay); + source.addEventListener('canplaythrough', this._onCanPlay); + source.addEventListener('error', this._onError, true); + } + else + { + this._onCanPlay(); + } + + this._load = new Promise(function (resolve) { + if (this$1.valid) + { + resolve(this$1); + } + else + { + this$1._resolve = resolve; + + source.load(); + } + }); + + return this._load; + }; + + /** + * Handle video error events. + * + * @private + */ + VideoResource.prototype._onError = function _onError () + { + this.source.removeEventListener('error', this._onError, true); + this.onError.run(event); + }; + + /** + * Returns true if the underlying source is playing. + * + * @private + * @return {boolean} True if playing. + */ + VideoResource.prototype._isSourcePlaying = function _isSourcePlaying () + { + var source = this.source; + + return (source.currentTime > 0 && source.paused === false && source.ended === false && source.readyState > 2); + }; + + /** + * Returns true if the underlying source is ready for playing. + * + * @private + * @return {boolean} True if ready. + */ + VideoResource.prototype._isSourceReady = function _isSourceReady () + { + return this.source.readyState === 3 || this.source.readyState === 4; + }; + + /** + * Runs the update loop when the video is ready to play + * + * @private + */ + VideoResource.prototype._onPlayStart = function _onPlayStart () + { + // Just in case the video has not received its can play even yet.. + if (!this.valid) + { + this._onCanPlay(); + } + + if (!this._isAutoUpdating && this.autoUpdate) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + }; + + /** + * Fired when a pause event is triggered, stops the update loop + * + * @private + */ + VideoResource.prototype._onPlayStop = function _onPlayStop () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + }; + + /** + * Fired when the video is loaded and ready to play + * + * @private + */ + VideoResource.prototype._onCanPlay = function _onCanPlay () + { + var ref = this; + var source = ref.source; + + source.removeEventListener('canplay', this._onCanPlay); + source.removeEventListener('canplaythrough', this._onCanPlay); + + var valid = this.valid; + + this.resize(source.videoWidth, source.videoHeight); + + // prevent multiple loaded dispatches.. + if (!valid && this._resolve) + { + this._resolve(this); + this._resolve = null; + } + + if (this._isSourcePlaying()) + { + this._onPlayStart(); + } + else if (this.autoPlay) + { + source.play(); + } + }; + + /** + * Destroys this texture + * @override + */ + VideoResource.prototype.dispose = function dispose () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + } + + if (this.source) + { + this.source.removeEventListener('error', this._onError, true); + this.source.pause(); + this.source.src = ''; + this.source.load(); + } + BaseImageResource.prototype.dispose.call(this); + }; + + /** + * Should the base texture automatically update itself, set to true by default + * + * @member {boolean} + */ + prototypeAccessors.autoUpdate.get = function () + { + return this._autoUpdate; + }; + + prototypeAccessors.autoUpdate.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._autoUpdate) + { + this._autoUpdate = value; + + if (!this._autoUpdate && this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + else if (this._autoUpdate && !this._isAutoUpdating) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + } + }; + + /** + * How many times a second to update the texture from the video. Leave at 0 to update at every render. + * A lower fps can help performance, as updating the texture at 60fps on a 30ps video may not be efficient. + * + * @member {number} + */ + prototypeAccessors.updateFPS.get = function () + { + return this._updateFPS; + }; + + prototypeAccessors.updateFPS.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._updateFPS) + { + this._updateFPS = value; + } + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @param {string} extension - The extension of source, if set + * @return {boolean} `true` if video source + */ + VideoResource.test = function test (source, extension) + { + return (source instanceof HTMLVideoElement) + || VideoResource.TYPES.indexOf(extension) > -1; + }; + + Object.defineProperties( VideoResource.prototype, prototypeAccessors ); + + return VideoResource; +}(BaseImageResource)); + +/** + * List of common video file extensions supported by VideoResource. + * @constant + * @member {Array} + * @static + * @readonly + */ +VideoResource.TYPES = ['mp4', 'm4v', 'webm', 'ogg', 'ogv', 'h264', 'avi', 'mov']; + +/** + * Resource type for ImageBitmap. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {ImageBitmap} source - Image element to use + */ +var ImageBitmapResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageBitmapResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) ImageBitmapResource.__proto__ = BaseImageResource; + ImageBitmapResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageBitmapResource.prototype.constructor = ImageBitmapResource; + + ImageBitmapResource.test = function test (source) + { + return !!window.createImageBitmap && source instanceof ImageBitmap; + }; + + return ImageBitmapResource; +}(BaseImageResource)); + +INSTALLED.push( + ImageResource, + ImageBitmapResource, + CanvasResource, + VideoResource, + SVGResource, + BufferResource, + CubeResource, + ArrayResource +); + +/** + * System is a base class used for extending systems used by the {@link PIXI.Renderer} + * + * @see PIXI.Renderer#addSystem + * @class + * @memberof PIXI + */ +var System = function System(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Generic destroy methods to be overridden by the subclass + */ +System.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Resource type for DepthTexture. + * @class + * @extends PIXI.resources.BufferResource + * @memberof PIXI.resources + */ +var DepthResource = /*@__PURE__*/(function (BufferResource) { + function DepthResource () { + BufferResource.apply(this, arguments); + } + + if ( BufferResource ) DepthResource.__proto__ = BufferResource; + DepthResource.prototype = Object.create( BufferResource && BufferResource.prototype ); + DepthResource.prototype.constructor = DepthResource; + + DepthResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + gl.DEPTH_COMPONENT16, // Needed for depth to render properly in webgl2.0 + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + baseTexture.type, + this.data + ); + } + + return true; + }; + + return DepthResource; +}(BufferResource)); + +/** + * Frame buffer used by the BaseRenderTexture + * + * @class + * @memberof PIXI + */ +var Framebuffer = function Framebuffer(width, height) +{ + this.width = Math.ceil(width || 100); + this.height = Math.ceil(height || 100); + + this.stencil = false; + this.depth = false; + + this.dirtyId = 0; + this.dirtyFormat = 0; + this.dirtySize = 0; + + this.depthTexture = null; + this.colorTextures = []; + + this.glFramebuffers = {}; + + this.disposeRunner = new Runner('disposeFramebuffer', 2); +}; + +var prototypeAccessors$1$2 = { colorTexture: { configurable: true } }; + +/** + * Reference to the colorTexture. + * + * @member {PIXI.Texture[]} + * @readonly + */ +prototypeAccessors$1$2.colorTexture.get = function () +{ + return this.colorTextures[0]; +}; + +/** + * Add texture to the colorTexture array + * + * @param {number} [index=0] - Index of the array to add the texture to + * @param {PIXI.Texture} [texture] - Texture to add to the array + */ +Framebuffer.prototype.addColorTexture = function addColorTexture (index, texture) +{ + if ( index === void 0 ) index = 0; + + // TODO add some validation to the texture - same width / height etc? + this.colorTextures[index] = texture || new BaseTexture(null, { scaleMode: 0, + resolution: 1, + mipmap: false, + width: this.width, + height: this.height });// || new Texture(); + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Add a depth texture to the frame buffer + * + * @param {PIXI.Texture} [texture] - Texture to add + */ +Framebuffer.prototype.addDepthTexture = function addDepthTexture (texture) +{ + /* eslint-disable max-len */ + this.depthTexture = texture || new BaseTexture(new DepthResource(null, { width: this.width, height: this.height }), { scaleMode: 0, + resolution: 1, + width: this.width, + height: this.height, + mipmap: false, + format: FORMATS.DEPTH_COMPONENT, + type: TYPES.UNSIGNED_SHORT });// UNSIGNED_SHORT; + /* eslint-disable max-len */ + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable depth on the frame buffer + */ +Framebuffer.prototype.enableDepth = function enableDepth () +{ + this.depth = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable stencil on the frame buffer + */ +Framebuffer.prototype.enableStencil = function enableStencil () +{ + this.stencil = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Resize the frame buffer + * + * @param {number} width - Width of the frame buffer to resize to + * @param {number} height - Height of the frame buffer to resize to + */ +Framebuffer.prototype.resize = function resize (width, height) +{ + width = Math.ceil(width); + height = Math.ceil(height); + + if (width === this.width && height === this.height) { return; } + + this.width = width; + this.height = height; + + this.dirtyId++; + this.dirtySize++; + + for (var i = 0; i < this.colorTextures.length; i++) + { + var texture = this.colorTextures[i]; + var resolution = texture.resolution; + + // take into acount the fact the texture may have a different resolution.. + texture.setSize(width / resolution, height / resolution); + } + + if (this.depthTexture) + { + var resolution$1 = this.depthTexture.resolution; + + this.depthTexture.setSize(width / resolution$1, height / resolution$1); + } +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Framebuffer.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +Object.defineProperties( Framebuffer.prototype, prototypeAccessors$1$2 ); + +/** + * A BaseRenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a BaseRenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * A BaseRenderTexture takes a snapshot of any Display Object given to its render method. The position + * and rotation of the given Display Objects is ignored. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 800, height: 600 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 100, height: 100 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.BaseTexture + * @memberof PIXI + */ +var BaseRenderTexture = /*@__PURE__*/(function (BaseTexture) { + function BaseRenderTexture(options) + { + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + // Backward compatibility of signature + var width$1 = arguments[0]; + var height$1 = arguments[1]; + var scaleMode = arguments[2]; + var resolution = arguments[3]; + + options = { width: width$1, height: height$1, scaleMode: scaleMode, resolution: resolution }; + /* eslint-enable prefer-rest-params */ + } + + BaseTexture.call(this, null, options); + + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + // Set defaults + this.mipmap = false; + this.width = Math.ceil(width) || 100; + this.height = Math.ceil(height) || 100; + this.valid = true; + + /** + * A reference to the canvas render target (we only need one as this can be shared across renderers) + * + * @protected + * @member {object} + */ + this._canvasRenderTarget = null; + + this.clearColor = [0, 0, 0, 0]; + + this.framebuffer = new Framebuffer(this.width * this.resolution, this.height * this.resolution) + .addColorTexture(0, this); + + // TODO - could this be added the systems? + + /** + * The data structure for the stencil masks. + * + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + + /** + * The data structure for the filters. + * + * @member {PIXI.Graphics[]} + */ + this.filterStack = [{}]; + } + + if ( BaseTexture ) BaseRenderTexture.__proto__ = BaseTexture; + BaseRenderTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype ); + BaseRenderTexture.prototype.constructor = BaseRenderTexture; + + /** + * Resizes the BaseRenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + */ + BaseRenderTexture.prototype.resize = function resize (width, height) + { + width = Math.ceil(width); + height = Math.ceil(height); + this.framebuffer.resize(width * this.resolution, height * this.resolution); + }; + + /** + * Frees the texture and framebuffer from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseRenderTexture.prototype.dispose = function dispose () + { + this.framebuffer.dispose(); + + BaseTexture.prototype.dispose.call(this); + }; + + /** + * Destroys this texture. + * + */ + BaseRenderTexture.prototype.destroy = function destroy () + { + BaseTexture.prototype.destroy.call(this, true); + + this.framebuffer = null; + }; + + return BaseRenderTexture; +}(BaseTexture)); + +/** + * Stores a texture's frame in UV coordinates, in + * which everything lies in the rectangle `[(0,0), (1,0), + * (1,1), (0,1)]`. + * + * | Corner | Coordinates | + * |--------------|-------------| + * | Top-Left | `(x0,y0)` | + * | Top-Right | `(x1,y1)` | + * | Bottom-Right | `(x2,y2)` | + * | Bottom-Left | `(x3,y3)` | + * + * @class + * @protected + * @memberof PIXI + */ +var TextureUvs = function TextureUvs() +{ + /** + * X-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.x0 = 0; + + /** + * Y-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.y0 = 0; + + /** + * X-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.x1 = 1; + + /** + * Y-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.y1 = 0; + + /** + * X-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.x2 = 1; + + /** + * Y-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.y2 = 1; + + /** + * X-component of bottom-left corner `(x3,y3)`. + * + * @member {number} + */ + this.x3 = 0; + + /** + * Y-component of bottom-right corner `(x3,y3)`. + * + * @member {number} + */ + this.y3 = 1; + + this.uvsFloat32 = new Float32Array(8); +}; + +/** + * Sets the texture Uvs based on the given frame information. + * + * @protected + * @param {PIXI.Rectangle} frame - The frame of the texture + * @param {PIXI.Rectangle} baseFrame - The base frame of the texture + * @param {number} rotate - Rotation of frame, see {@link PIXI.GroupD8} + */ +TextureUvs.prototype.set = function set (frame, baseFrame, rotate) +{ + var tw = baseFrame.width; + var th = baseFrame.height; + + if (rotate) + { + // width and height div 2 div baseFrame size + var w2 = frame.width / 2 / tw; + var h2 = frame.height / 2 / th; + + // coordinates of center + var cX = (frame.x / tw) + w2; + var cY = (frame.y / th) + h2; + + rotate = GroupD8.add(rotate, GroupD8.NW); // NW is top-left corner + this.x0 = cX + (w2 * GroupD8.uX(rotate)); + this.y0 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); // rotate 90 degrees clockwise + this.x1 = cX + (w2 * GroupD8.uX(rotate)); + this.y1 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x2 = cX + (w2 * GroupD8.uX(rotate)); + this.y2 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x3 = cX + (w2 * GroupD8.uX(rotate)); + this.y3 = cY + (h2 * GroupD8.uY(rotate)); + } + else + { + this.x0 = frame.x / tw; + this.y0 = frame.y / th; + + this.x1 = (frame.x + frame.width) / tw; + this.y1 = frame.y / th; + + this.x2 = (frame.x + frame.width) / tw; + this.y2 = (frame.y + frame.height) / th; + + this.x3 = frame.x / tw; + this.y3 = (frame.y + frame.height) / th; + } + + this.uvsFloat32[0] = this.x0; + this.uvsFloat32[1] = this.y0; + this.uvsFloat32[2] = this.x1; + this.uvsFloat32[3] = this.y1; + this.uvsFloat32[4] = this.x2; + this.uvsFloat32[5] = this.y2; + this.uvsFloat32[6] = this.x3; + this.uvsFloat32[7] = this.y3; +}; + +var DEFAULT_UVS = new TextureUvs(); + +/** + * A texture stores the information that represents an image or part of an image. + * + * It cannot be added to the display list directly; instead use it as the texture for a Sprite. + * If no frame is provided for a texture, then the whole image is used. + * + * You can directly create a texture from an image and then reuse it multiple times like this : + * + * ```js + * let texture = PIXI.Texture.from('assets/image.png'); + * let sprite1 = new PIXI.Sprite(texture); + * let sprite2 = new PIXI.Sprite(texture); + * ``` + * + * If you didnt pass the texture frame to constructor, it enables `noFrame` mode: + * it subscribes on baseTexture events, it automatically resizes at the same time as baseTexture. + * + * Textures made from SVGs, loaded or not, cannot be used before the file finishes processing. + * You can check for this by checking the sprite's _textureID property. + * ```js + * var texture = PIXI.Texture.from('assets/image.svg'); + * var sprite1 = new PIXI.Sprite(texture); + * //sprite1._textureID should not be undefined if the texture has finished processing the SVG file + * ``` + * You can use a ticker or rAF to ensure your sprites load the finished textures after processing. See issue #3068. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var Texture = /*@__PURE__*/(function (EventEmitter) { + function Texture(baseTexture, frame, orig, trim, rotate, anchor) + { + EventEmitter.call(this); + + /** + * Does this Texture have any frame data assigned to it? + * + * This mode is enabled automatically if no frame was passed inside constructor. + * + * In this mode texture is subscribed to baseTexture events, and fires `update` on any change. + * + * Beware, after loading or resize of baseTexture event can fired two times! + * If you want more control, subscribe on baseTexture itself. + * + * ```js + * texture.on('update', () => {}); + * ``` + * + * Any assignment of `frame` switches off `noFrame` mode. + * + * @member {boolean} + */ + this.noFrame = false; + + if (!frame) + { + this.noFrame = true; + frame = new Rectangle(0, 0, 1, 1); + } + + if (baseTexture instanceof Texture) + { + baseTexture = baseTexture.baseTexture; + } + + /** + * The base texture that this texture uses. + * + * @member {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering, + * irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases) + * + * @member {PIXI.Rectangle} + */ + this._frame = frame; + + /** + * This is the trimmed area of original texture, before it was put in atlas + * Please call `updateUvs()` after you change coordinates of `trim` manually. + * + * @member {PIXI.Rectangle} + */ + this.trim = trim; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = false; + + /** + * This will let a renderer know that a texture has been updated (used mainly for WebGL uv updates) + * + * @member {boolean} + */ + this.requiresUpdate = false; + + /** + * The WebGL UV data cache. Can be used as quad UV + * + * @member {PIXI.TextureUvs} + * @protected + */ + this._uvs = DEFAULT_UVS; + + /** + * Default TextureMatrix instance for this texture + * By default that object is not created because its heavy + * + * @member {PIXI.TextureMatrix} + */ + this.uvMatrix = null; + + /** + * This is the area of original texture, before it was put in atlas + * + * @member {PIXI.Rectangle} + */ + this.orig = orig || frame;// new Rectangle(0, 0, 1, 1); + + this._rotate = Number(rotate || 0); + + if (rotate === true) + { + // this is old texturepacker legacy, some games/libraries are passing "true" for rotated textures + this._rotate = 2; + } + else if (this._rotate % 2 !== 0) + { + throw new Error('attempt to use diamond-shaped UVs. If you are sure, set rotation manually'); + } + + /** + * Anchor point that is used as default if sprite is created with this texture. + * Changing the `defaultAnchor` at a later point of time will not update Sprite's anchor point. + * @member {PIXI.Point} + * @default {0,0} + */ + this.defaultAnchor = anchor ? new Point(anchor.x, anchor.y) : new Point(0, 0); + + /** + * Update ID is observed by sprites and TextureMatrix instances. + * Call updateUvs() to increment it. + * + * @member {number} + * @protected + */ + + this._updateID = 0; + + /** + * The ids under which this Texture has been added to the texture cache. This is + * automatically set as long as Texture.addToCache is used, but may not be set if a + * Texture is added directly to the TextureCache array. + * + * @member {string[]} + */ + this.textureCacheIds = []; + + if (!baseTexture.valid) + { + baseTexture.once('loaded', this.onBaseTextureUpdated, this); + } + else if (this.noFrame) + { + // if there is no frame we should monitor for any base texture changes.. + if (baseTexture.valid) + { + this.onBaseTextureUpdated(baseTexture); + } + } + else + { + this.frame = frame; + } + + if (this.noFrame) + { + baseTexture.on('update', this.onBaseTextureUpdated, this); + } + } + + if ( EventEmitter ) Texture.__proto__ = EventEmitter; + Texture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + Texture.prototype.constructor = Texture; + + var prototypeAccessors = { resolution: { configurable: true },frame: { configurable: true },rotate: { configurable: true },width: { configurable: true },height: { configurable: true } }; + + /** + * Updates this texture on the gpu. + * + * Calls the TextureResource update. + * + * If you adjusted `frame` manually, please call `updateUvs()` instead. + * + */ + Texture.prototype.update = function update () + { + if (this.baseTexture.resource) + { + this.baseTexture.resource.update(); + } + }; + + /** + * Called when the base texture is updated + * + * @protected + * @param {PIXI.BaseTexture} baseTexture - The base texture. + */ + Texture.prototype.onBaseTextureUpdated = function onBaseTextureUpdated (baseTexture) + { + if (this.noFrame) + { + if (!this.baseTexture.valid) + { + return; + } + + this._frame.width = baseTexture.width; + this._frame.height = baseTexture.height; + this.valid = true; + this.updateUvs(); + } + else + { + // TODO this code looks confusing.. boo to abusing getters and setters! + // if user gave us frame that has bigger size than resized texture it can be a problem + this.frame = this._frame; + } + + this.emit('update', this); + }; + + /** + * Destroys this texture + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ + Texture.prototype.destroy = function destroy (destroyBase) + { + if (this.baseTexture) + { + if (destroyBase) + { + var ref = this.baseTexture; + var resource = ref.resource; + + // delete the texture if it exists in the texture cache.. + // this only needs to be removed if the base texture is actually destroyed too.. + if (resource && TextureCache[resource.url]) + { + Texture.removeFromCache(resource.url); + } + + this.baseTexture.destroy(); + } + + this.baseTexture.off('update', this.onBaseTextureUpdated, this); + + this.baseTexture = null; + } + + this._frame = null; + this._uvs = null; + this.trim = null; + this.orig = null; + + this.valid = false; + + Texture.removeFromCache(this); + this.textureCacheIds = null; + }; + + /** + * Creates a new texture object that acts the same as this one. + * + * @return {PIXI.Texture} The new texture + */ + Texture.prototype.clone = function clone () + { + return new Texture(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor); + }; + + /** + * Updates the internal WebGL UV cache. Use it after you change `frame` or `trim` of the texture. + * Call it after changing the frame + */ + Texture.prototype.updateUvs = function updateUvs () + { + if (this._uvs === DEFAULT_UVS) + { + this._uvs = new TextureUvs(); + } + + this._uvs.set(this._frame, this.baseTexture, this.rotate); + + this._updateID++; + }; + + /** + * Helper function that creates a new Texture based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|PIXI.BaseTexture} source + * Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The newly created texture + */ + Texture.from = function from (source, options) + { + if ( options === void 0 ) options = {}; + + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var texture = TextureCache[cacheId]; + + if (!texture) + { + if (!options.resolution) + { + options.resolution = getResolutionOfUrl(source); + } + + texture = new Texture(new BaseTexture(source, options)); + texture.baseTexture.cacheId = cacheId; + + BaseTexture.addToCache(texture.baseTexture, cacheId); + Texture.addToCache(texture, cacheId); + } + + // lets assume its a base texture! + return texture; + }; + + /** + * Create a new Texture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The resulting new BaseTexture + */ + Texture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + return new Texture(BaseTexture.fromBuffer(buffer, width, height, options)); + }; + + /** + * Create a texture from a source and add to the cache. + * + * @static + * @param {HTMLImageElement|HTMLCanvasElement} source - The input source. + * @param {String} imageUrl - File name of texture, for cache and resolving resolution. + * @param {String} [name] - Human readable name for the texture cache. If no name is + * specified, only `imageUrl` will be used as the cache ID. + * @return {PIXI.Texture} Output texture + */ + Texture.fromLoader = function fromLoader (source, imageUrl, name) + { + var resource = new ImageResource(source); + + resource.url = imageUrl; + + var baseTexture = new BaseTexture(resource, { + scaleMode: settings.SCALE_MODE, + resolution: getResolutionOfUrl(imageUrl), + }); + + var texture = new Texture(baseTexture); + + // No name, use imageUrl instead + if (!name) + { + name = imageUrl; + } + + // lets also add the frame to pixi's global cache for 'fromLoader' function + BaseTexture.addToCache(texture.baseTexture, name); + Texture.addToCache(texture, name); + + // also add references by url if they are different. + if (name !== imageUrl) + { + BaseTexture.addToCache(texture.baseTexture, imageUrl); + Texture.addToCache(texture, imageUrl); + } + + return texture; + }; + + /** + * Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.Texture} texture - The Texture to add to the cache. + * @param {string} id - The id that the Texture will be stored against. + */ + Texture.addToCache = function addToCache (texture, id) + { + if (id) + { + if (texture.textureCacheIds.indexOf(id) === -1) + { + texture.textureCacheIds.push(id); + } + + if (TextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("Texture added to the cache with an id [" + id + "] that already had an entry")); + } + + TextureCache[id] = texture; + } + }; + + /** + * Remove a Texture from the global TextureCache. + * + * @static + * @param {string|PIXI.Texture} texture - id of a Texture to be removed, or a Texture instance itself + * @return {PIXI.Texture|null} The Texture that was removed + */ + Texture.removeFromCache = function removeFromCache (texture) + { + if (typeof texture === 'string') + { + var textureFromCache = TextureCache[texture]; + + if (textureFromCache) + { + var index = textureFromCache.textureCacheIds.indexOf(texture); + + if (index > -1) + { + textureFromCache.textureCacheIds.splice(index, 1); + } + + delete TextureCache[texture]; + + return textureFromCache; + } + } + else if (texture && texture.textureCacheIds) + { + for (var i = 0; i < texture.textureCacheIds.length; ++i) + { + // Check that texture matches the one being passed in before deleting it from the cache. + if (TextureCache[texture.textureCacheIds[i]] === texture) + { + delete TextureCache[texture.textureCacheIds[i]]; + } + } + + texture.textureCacheIds.length = 0; + + return texture; + } + + return null; + }; + + /** + * Returns resolution of baseTexture + * + * @member {number} + * @readonly + */ + prototypeAccessors.resolution.get = function () + { + return this.baseTexture.resolution; + }; + + /** + * The frame specifies the region of the base texture that this texture uses. + * Please call `updateUvs()` after you change coordinates of `frame` manually. + * + * @member {PIXI.Rectangle} + */ + prototypeAccessors.frame.get = function () + { + return this._frame; + }; + + prototypeAccessors.frame.set = function (frame) // eslint-disable-line require-jsdoc + { + this._frame = frame; + + this.noFrame = false; + + var x = frame.x; + var y = frame.y; + var width = frame.width; + var height = frame.height; + var xNotFit = x + width > this.baseTexture.width; + var yNotFit = y + height > this.baseTexture.height; + + if (xNotFit || yNotFit) + { + var relationship = xNotFit && yNotFit ? 'and' : 'or'; + var errorX = "X: " + x + " + " + width + " = " + (x + width) + " > " + (this.baseTexture.width); + var errorY = "Y: " + y + " + " + height + " = " + (y + height) + " > " + (this.baseTexture.height); + + throw new Error('Texture Error: frame does not fit inside the base Texture dimensions: ' + + errorX + " " + relationship + " " + errorY); + } + + this.valid = width && height && this.baseTexture.valid; + + if (!this.trim && !this.rotate) + { + this.orig = frame; + } + + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * Indicates whether the texture is rotated inside the atlas + * set to 2 to compensate for texture packer rotation + * set to 6 to compensate for spine packer rotation + * can be used to rotate or mirror sprites + * See {@link PIXI.GroupD8} for explanation + * + * @member {number} + */ + prototypeAccessors.rotate.get = function () + { + return this._rotate; + }; + + prototypeAccessors.rotate.set = function (rotate) // eslint-disable-line require-jsdoc + { + this._rotate = rotate; + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * The width of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.orig.width; + }; + + /** + * The height of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.orig.height; + }; + + Object.defineProperties( Texture.prototype, prototypeAccessors ); + + return Texture; +}(eventemitter3)); + +function createWhiteTexture() +{ + var canvas = document.createElement('canvas'); + + canvas.width = 16; + canvas.height = 16; + + var context = canvas.getContext('2d'); + + context.fillStyle = 'white'; + context.fillRect(0, 0, 16, 16); + + return new Texture(new BaseTexture(new CanvasResource(canvas))); +} + +function removeAllHandlers(tex) +{ + tex.destroy = function _emptyDestroy() { /* empty */ }; + tex.on = function _emptyOn() { /* empty */ }; + tex.once = function _emptyOnce() { /* empty */ }; + tex.emit = function _emptyEmit() { /* empty */ }; +} + +/** + * An empty texture, used often to not have to create multiple empty textures. + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.EMPTY = new Texture(new BaseTexture()); +removeAllHandlers(Texture.EMPTY); +removeAllHandlers(Texture.EMPTY.baseTexture); + +/** + * A white texture of 16x16 size, used for graphics and other things + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.WHITE = createWhiteTexture(); +removeAllHandlers(Texture.WHITE); +removeAllHandlers(Texture.WHITE.baseTexture); + +/** + * A RenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a RenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * __Hint-2__: The actual memory allocation will happen on first render. + * You shouldn't create renderTextures each frame just to delete them after, try to reuse them. + * + * A RenderTexture takes a snapshot of any Display Object given to its render method. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let renderTexture = PIXI.RenderTexture.create(800, 600); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let renderTexture = new PIXI.RenderTexture.create(100, 100); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.Texture + * @memberof PIXI + */ +var RenderTexture = /*@__PURE__*/(function (Texture) { + function RenderTexture(baseRenderTexture, frame) + { + // support for legacy.. + var _legacyRenderer = null; + + if (!(baseRenderTexture instanceof BaseRenderTexture)) + { + /* eslint-disable prefer-rest-params, no-console */ + var width = arguments[1]; + var height = arguments[2]; + var scaleMode = arguments[3]; + var resolution = arguments[4]; + + // we have an old render texture.. + console.warn(("Please use RenderTexture.create(" + width + ", " + height + ") instead of the ctor directly.")); + _legacyRenderer = arguments[0]; + /* eslint-enable prefer-rest-params, no-console */ + + frame = null; + baseRenderTexture = new BaseRenderTexture({ + width: width, + height: height, + scaleMode: scaleMode, + resolution: resolution, + }); + } + + /** + * The base texture object that this texture uses + * + * @member {PIXI.BaseTexture} + */ + Texture.call(this, baseRenderTexture, frame); + + this.legacyRenderer = _legacyRenderer; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = true; + + /** + * Stores `sourceFrame` when this texture is inside current filter stack. + * You can read it inside filters. + * + * @readonly + * @member {PIXI.Rectangle} + */ + this.filterFrame = null; + + /** + * The key for pooled texture of FilterSystem + * @protected + * @member {string} + */ + this.filterPoolKey = null; + + this.updateUvs(); + } + + if ( Texture ) RenderTexture.__proto__ = Texture; + RenderTexture.prototype = Object.create( Texture && Texture.prototype ); + RenderTexture.prototype.constructor = RenderTexture; + + /** + * Resizes the RenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + * @param {boolean} [resizeBaseTexture=true] - Should the baseTexture.width and height values be resized as well? + */ + RenderTexture.prototype.resize = function resize (width, height, resizeBaseTexture) + { + if ( resizeBaseTexture === void 0 ) resizeBaseTexture = true; + + width = Math.ceil(width); + height = Math.ceil(height); + + // TODO - could be not required.. + this.valid = (width > 0 && height > 0); + + this._frame.width = this.orig.width = width; + this._frame.height = this.orig.height = height; + + if (resizeBaseTexture) + { + this.baseTexture.resize(width, height); + } + + this.updateUvs(); + }; + + /** + * Changes the resolution of baseTexture, but does not change framebuffer size. + * + * @param {number} resolution - The new resolution to apply to RenderTexture + */ + RenderTexture.prototype.setResolution = function setResolution (resolution) + { + var ref = this; + var baseTexture = ref.baseTexture; + + if (baseTexture.resolution === resolution) + { + return; + } + + baseTexture.setResolution(resolution); + this.resize(baseTexture.width, baseTexture.height, false); + }; + + /** + * A short hand way of creating a render texture. + * + * @param {object} [options] - Options + * @param {number} [options.width=100] - The width of the render texture + * @param {number} [options.height=100] - The height of the render texture + * @param {number} [options.scaleMode=PIXI.settings.SCALE_MODE] - See {@link PIXI.SCALE_MODES} for possible values + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the texture being generated + * @return {PIXI.RenderTexture} The new render texture + */ + RenderTexture.create = function create (options) + { + // fallback, old-style: create(width, height, scaleMode, resolution) + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + options = { + width: options, + height: arguments[1], + scaleMode: arguments[2], + resolution: arguments[3], + }; + /* eslint-enable prefer-rest-params */ + } + + return new RenderTexture(new BaseRenderTexture(options)); + }; + + return RenderTexture; +}(Texture)); + +/** + * Experimental! + * + * Texture pool, used by FilterSystem and plugins + * Stores collection of temporary pow2 or screen-sized renderTextures + * + * If you use custom RenderTexturePool for your filters, you can use methods + * `getFilterTexture` and `returnFilterTexture` same as in + * + * @class + * @memberof PIXI + */ +var RenderTexturePool = function RenderTexturePool(textureOptions) +{ + this.texturePool = {}; + this.textureOptions = textureOptions || {}; + /** + * Allow renderTextures of the same size as screen, not just pow2 + * + * Automatically sets to true after `setScreenSize` + * + * @member {boolean} + * @default false + */ + this.enableFullScreen = false; + + this._pixelsWidth = 0; + this._pixelsHeight = 0; +}; + +/** + * creates of texture with params that were specified in pool constructor + * + * @param {number} realWidth width of texture in pixels + * @param {number} realHeight height of texture in pixels + * @returns {RenderTexture} + */ +RenderTexturePool.prototype.createTexture = function createTexture (realWidth, realHeight) +{ + var baseRenderTexture = new BaseRenderTexture(Object.assign({ + width: realWidth, + height: realHeight, + resolution: 1, + }, this.textureOptions)); + + return new RenderTexture(baseRenderTexture); +}; + +/** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ +RenderTexturePool.prototype.getOptimalTexture = function getOptimalTexture (minWidth, minHeight, resolution) +{ + if ( resolution === void 0 ) resolution = 1; + + var key = RenderTexturePool.SCREEN_KEY; + + minWidth *= resolution; + minHeight *= resolution; + + if (!this.enableFullScreen || minWidth !== this._pixelsWidth || minHeight !== this._pixelsHeight) + { + minWidth = nextPow2(minWidth); + minHeight = nextPow2(minHeight); + key = ((minWidth & 0xFFFF) << 16) | (minHeight & 0xFFFF); + } + + if (!this.texturePool[key]) + { + this.texturePool[key] = []; + } + + var renderTexture = this.texturePool[key].pop(); + + if (!renderTexture) + { + renderTexture = this.createTexture(minWidth, minHeight); + } + + renderTexture.filterPoolKey = key; + renderTexture.setResolution(resolution); + + return renderTexture; +}; + +/** + * Gets extra texture of the same size as input renderTexture + * + * `getFilterTexture(input, 0.5)` or `getFilterTexture(0.5, input)` + * + * @param {PIXI.RenderTexture} input renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * It overrides, it does not multiply + * @returns {PIXI.RenderTexture} + */ +RenderTexturePool.prototype.getFilterTexture = function getFilterTexture (input, resolution) +{ + var filterTexture = this.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; +}; + +/** + * Place a render texture back into the pool. + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnTexture = function returnTexture (renderTexture) +{ + var key = renderTexture.filterPoolKey; + + renderTexture.filterFrame = null; + this.texturePool[key].push(renderTexture); +}; + +/** + * Alias for returnTexture, to be compliant with FilterSystem interface + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) +{ + this.returnTexture(renderTexture); +}; + +/** + * Clears the pool + * + * @param {boolean} [destroyTextures=true] destroy all stored textures + */ +RenderTexturePool.prototype.clear = function clear (destroyTextures) +{ + destroyTextures = destroyTextures !== false; + if (destroyTextures) + { + for (var i in this.texturePool) + { + var textures = this.texturePool[i]; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + } + } + + this.texturePool = {}; +}; + +/** + * If screen size was changed, drops all screen-sized textures, + * sets new screen size, sets `enableFullScreen` to true + * + * Size is measured in pixels, `renderer.view` can be passed here, not `renderer.screen` + * + * @param {PIXI.ISize} size - Initial size of screen + */ +RenderTexturePool.prototype.setScreenSize = function setScreenSize (size) +{ + if (size.width === this._pixelsWidth + && size.height === this._pixelsHeight) + { + return; + } + + var screenKey = RenderTexturePool.SCREEN_KEY; + var textures = this.texturePool[screenKey]; + + this.enableFullScreen = size.width > 0 && size.height > 0; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + this.texturePool[screenKey] = []; + + this._pixelsWidth = size.width; + this._pixelsHeight = size.height; +}; + +/** + * Key that is used to store fullscreen renderTextures in a pool + * + * @static + * @const {string} + */ +RenderTexturePool.SCREEN_KEY = 'screen'; + +/* eslint-disable max-len */ + +/** + * Holds the information for a single attribute structure required to render geometry. + * + * This does not contain the actual data, but instead has a buffer id that maps to a {@link PIXI.Buffer} + * This can include anything from positions, uvs, normals, colors etc. + * + * @class + * @memberof PIXI + */ +var Attribute = function Attribute(buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( type === void 0 ) type = 5126; + + this.buffer = buffer; + this.size = size; + this.normalized = normalized; + this.type = type; + this.stride = stride; + this.start = start; + this.instance = instance; +}; + +/** + * Destroys the Attribute. + */ +Attribute.prototype.destroy = function destroy () +{ + this.buffer = null; +}; + +/** + * Helper function that creates an Attribute based on the information provided + * + * @static + * @param {string} buffer the id of the buffer that this attribute will look for + * @param {Number} [size=2] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 + * @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) + * @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) + * @param {Boolean} [normalized=false] should the data be normalized. + * + * @returns {PIXI.Attribute} A new {@link PIXI.Attribute} based on the information provided + */ +Attribute.from = function from (buffer, size, normalized, type, stride) +{ + return new Attribute(buffer, size, normalized, type, stride); +}; + +var UID = 0; +/* eslint-disable max-len */ + +/** + * A wrapper for data so that it can be used and uploaded by WebGL + * + * @class + * @memberof PIXI + */ +var Buffer$1 = function Buffer(data, _static, index) +{ + if ( _static === void 0 ) _static = true; + if ( index === void 0 ) index = false; + + /** + * The data in the buffer, as a typed array + * + * @member {ArrayBuffer| SharedArrayBuffer|ArrayBufferView} + */ + this.data = data || new Float32Array(1); + + /** + * A map of renderer IDs to webgl buffer + * + * @private + * @member {object} + */ + this._glBuffers = {}; + + this._updateID = 0; + + this.index = index; + + this.static = _static; + + this.id = UID++; + + this.disposeRunner = new Runner('disposeBuffer', 2); +}; + +// TODO could explore flagging only a partial upload? +/** + * flags this buffer as requiring an upload to the GPU + * @param {ArrayBuffer|SharedArrayBuffer|ArrayBufferView} [data] the data to update in the buffer. + */ +Buffer$1.prototype.update = function update (data) +{ + this.data = data || this.data; + this._updateID++; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Buffer$1.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the buffer + */ +Buffer$1.prototype.destroy = function destroy () +{ + this.dispose(); + + this.data = null; +}; + +/** + * Helper function that creates a buffer based on an array or TypedArray + * + * @static + * @param {ArrayBufferView | number[]} data the TypedArray that the buffer will store. If this is a regular Array it will be converted to a Float32Array. + * @return {PIXI.Buffer} A new Buffer based on the data provided. + */ +Buffer$1.from = function from (data) +{ + if (data instanceof Array) + { + data = new Float32Array(data); + } + + return new Buffer$1(data); +}; + +function getBufferType(array) +{ + if (array.BYTES_PER_ELEMENT === 4) + { + if (array instanceof Float32Array) + { + return 'Float32Array'; + } + else if (array instanceof Uint32Array) + { + return 'Uint32Array'; + } + + return 'Int32Array'; + } + else if (array.BYTES_PER_ELEMENT === 2) + { + if (array instanceof Uint16Array) + { + return 'Uint16Array'; + } + } + else if (array.BYTES_PER_ELEMENT === 1) + { + if (array instanceof Uint8Array) + { + return 'Uint8Array'; + } + } + + // TODO map out the rest of the array elements! + return null; +} + +/* eslint-disable object-shorthand */ +var map$2 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, +}; + +function interleaveTypedArrays(arrays, sizes) +{ + var outSize = 0; + var stride = 0; + var views = {}; + + for (var i = 0; i < arrays.length; i++) + { + stride += sizes[i]; + outSize += arrays[i].length; + } + + var buffer = new ArrayBuffer(outSize * 4); + + var out = null; + var littleOffset = 0; + + for (var i$1 = 0; i$1 < arrays.length; i$1++) + { + var size = sizes[i$1]; + var array = arrays[i$1]; + + var type = getBufferType(array); + + if (!views[type]) + { + views[type] = new map$2[type](buffer); + } + + out = views[type]; + + for (var j = 0; j < array.length; j++) + { + var indexStart = ((j / size | 0) * stride) + littleOffset; + var index = j % size; + + out[indexStart + index] = array[j]; + } + + littleOffset += size; + } + + return new Float32Array(buffer); +} + +var byteSizeMap = { 5126: 4, 5123: 2, 5121: 1 }; +var UID$1 = 0; + +/* eslint-disable object-shorthand */ +var map$1$1 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, + Uint16Array: Uint16Array, +}; + +/* eslint-disable max-len */ + +/** + * The Geometry represents a model. It consists of two components: + * - GeometryStyle - The structure of the model such as the attributes layout + * - GeometryData - the data of the model - this consists of buffers. + * This can include anything from positions, uvs, normals, colors etc. + * + * Geometry can be defined without passing in a style or data if required (thats how I prefer!) + * + * ```js + * let geometry = new PIXI.Geometry(); + * + * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2); + * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1],2) + * geometry.addIndex([0,1,2,1,3,2]) + * + * ``` + * @class + * @memberof PIXI + */ +var Geometry = function Geometry(buffers, attributes) +{ + if ( buffers === void 0 ) buffers = []; + if ( attributes === void 0 ) attributes = {}; + + this.buffers = buffers; + + this.indexBuffer = null; + + this.attributes = attributes; + + /** + * A map of renderer IDs to webgl VAOs + * + * @protected + * @type {object} + */ + this.glVertexArrayObjects = {}; + + this.id = UID$1++; + + this.instanced = false; + + /** + * Number of instances in this geometry, pass it to `GeometrySystem.draw()` + * @member {number} + * @default 1 + */ + this.instanceCount = 1; + + this.disposeRunner = new Runner('disposeGeometry', 2); + + /** + * Count of existing (not destroyed) meshes that reference this geometry + * @member {number} + */ + this.refCount = 0; +}; + +/** +* +* Adds an attribute to the geometry +* +* @param {String} id - the name of the attribute (matching up to a shader) +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it. +* @param {Number} [size=0] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 +* @param {Boolean} [normalized=false] should the data be normalized. +* @param {Number} [type=PIXI.TYPES.FLOAT] what type of number is the attribute. Check {PIXI.TYPES} to see the ones available +* @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) +* @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) +* +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addAttribute = function addAttribute (id, buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( instance === void 0 ) instance = false; + + if (!buffer) + { + throw new Error('You must pass a buffer when creating an attribute'); + } + + // check if this is a buffer! + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Float32Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + var ids = id.split('|'); + + if (ids.length > 1) + { + for (var i = 0; i < ids.length; i++) + { + this.addAttribute(ids[i], buffer, size, normalized, type); + } + + return this; + } + + var bufferIndex = this.buffers.indexOf(buffer); + + if (bufferIndex === -1) + { + this.buffers.push(buffer); + bufferIndex = this.buffers.length - 1; + } + + this.attributes[id] = new Attribute(bufferIndex, size, normalized, type, stride, start, instance); + + // assuming that if there is instanced data then this will be drawn with instancing! + this.instanced = this.instanced || instance; + + return this; +}; + +/** + * returns the requested attribute + * + * @param {String} id the name of the attribute required + * @return {PIXI.Attribute} the attribute requested. + */ +Geometry.prototype.getAttribute = function getAttribute (id) +{ + return this.attributes[id]; +}; + +/** + * returns the requested buffer + * + * @param {String} id the name of the buffer required + * @return {PIXI.Buffer} the buffer requested. + */ +Geometry.prototype.getBuffer = function getBuffer (id) +{ + return this.buffers[this.getAttribute(id).buffer]; +}; + +/** +* +* Adds an index buffer to the geometry +* The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer. +* +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it. +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addIndex = function addIndex (buffer) +{ + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Uint16Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + buffer.index = true; + this.indexBuffer = buffer; + + if (this.buffers.indexOf(buffer) === -1) + { + this.buffers.push(buffer); + } + + return this; +}; + +/** + * returns the index buffer + * + * @return {PIXI.Buffer} the index buffer. + */ +Geometry.prototype.getIndex = function getIndex () +{ + return this.indexBuffer; +}; + +/** + * this function modifies the structure so that all current attributes become interleaved into a single buffer + * This can be useful if your model remains static as it offers a little performance boost + * + * @return {PIXI.Geometry} returns self, useful for chaining. + */ +Geometry.prototype.interleave = function interleave () +{ + // a simple check to see if buffers are already interleaved.. + if (this.buffers.length === 1 || (this.buffers.length === 2 && this.indexBuffer)) { return this; } + + // assume already that no buffers are interleaved + var arrays = []; + var sizes = []; + var interleavedBuffer = new Buffer$1(); + var i; + + for (i in this.attributes) + { + var attribute = this.attributes[i]; + + var buffer = this.buffers[attribute.buffer]; + + arrays.push(buffer.data); + + sizes.push((attribute.size * byteSizeMap[attribute.type]) / 4); + + attribute.buffer = 0; + } + + interleavedBuffer.data = interleaveTypedArrays(arrays, sizes); + + for (i = 0; i < this.buffers.length; i++) + { + if (this.buffers[i] !== this.indexBuffer) + { + this.buffers[i].destroy(); + } + } + + this.buffers = [interleavedBuffer]; + + if (this.indexBuffer) + { + this.buffers.push(this.indexBuffer); + } + + return this; +}; + +Geometry.prototype.getSize = function getSize () +{ + for (var i in this.attributes) + { + var attribute = this.attributes[i]; + var buffer = this.buffers[attribute.buffer]; + + return buffer.data.length / ((attribute.stride / 4) || attribute.size); + } + + return 0; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Geometry.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the geometry. + */ +Geometry.prototype.destroy = function destroy () +{ + this.dispose(); + + this.buffers = null; + this.indexBuffer.destroy(); + + this.attributes = null; +}; + +/** + * returns a clone of the geometry + * + * @returns {PIXI.Geometry} a new clone of this geometry + */ +Geometry.prototype.clone = function clone () +{ + var geometry = new Geometry(); + + for (var i = 0; i < this.buffers.length; i++) + { + geometry.buffers[i] = new Buffer$1(this.buffers[i].data.slice()); + } + + for (var i$1 in this.attributes) + { + var attrib = this.attributes[i$1]; + + geometry.attributes[i$1] = new Attribute( + attrib.buffer, + attrib.size, + attrib.normalized, + attrib.type, + attrib.stride, + attrib.start, + attrib.instance + ); + } + + if (this.indexBuffer) + { + geometry.indexBuffer = geometry.buffers[this.buffers.indexOf(this.indexBuffer)]; + geometry.indexBuffer.index = true; + } + + return geometry; +}; + +/** + * merges an array of geometries into a new single one + * geometry attribute styles must match for this operation to work + * + * @param {PIXI.Geometry[]} geometries array of geometries to merge + * @returns {PIXI.Geometry} shiny new geometry! + */ +Geometry.merge = function merge (geometries) +{ + // todo add a geometry check! + // also a size check.. cant be too big!] + + var geometryOut = new Geometry(); + + var arrays = []; + var sizes = []; + var offsets = []; + + var geometry; + + // pass one.. get sizes.. + for (var i = 0; i < geometries.length; i++) + { + geometry = geometries[i]; + + for (var j = 0; j < geometry.buffers.length; j++) + { + sizes[j] = sizes[j] || 0; + sizes[j] += geometry.buffers[j].data.length; + offsets[j] = 0; + } + } + + // build the correct size arrays.. + for (var i$1 = 0; i$1 < geometry.buffers.length; i$1++) + { + // TODO types! + arrays[i$1] = new map$1$1[getBufferType(geometry.buffers[i$1].data)](sizes[i$1]); + geometryOut.buffers[i$1] = new Buffer$1(arrays[i$1]); + } + + // pass to set data.. + for (var i$2 = 0; i$2 < geometries.length; i$2++) + { + geometry = geometries[i$2]; + + for (var j$1 = 0; j$1 < geometry.buffers.length; j$1++) + { + arrays[j$1].set(geometry.buffers[j$1].data, offsets[j$1]); + offsets[j$1] += geometry.buffers[j$1].data.length; + } + } + + geometryOut.attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + geometryOut.indexBuffer = geometryOut.buffers[geometry.buffers.indexOf(geometry.indexBuffer)]; + geometryOut.indexBuffer.index = true; + + var offset = 0; + var stride = 0; + var offset2 = 0; + var bufferIndexToCount = 0; + + // get a buffer + for (var i$3 = 0; i$3 < geometry.buffers.length; i$3++) + { + if (geometry.buffers[i$3] !== geometry.indexBuffer) + { + bufferIndexToCount = i$3; + break; + } + } + + // figure out the stride of one buffer.. + for (var i$4 in geometry.attributes) + { + var attribute = geometry.attributes[i$4]; + + if ((attribute.buffer | 0) === bufferIndexToCount) + { + stride += ((attribute.size * byteSizeMap[attribute.type]) / 4); + } + } + + // time to off set all indexes.. + for (var i$5 = 0; i$5 < geometries.length; i$5++) + { + var indexBufferData = geometries[i$5].indexBuffer.data; + + for (var j$2 = 0; j$2 < indexBufferData.length; j$2++) + { + geometryOut.indexBuffer.data[j$2 + offset2] += offset; + } + + offset += geometry.buffers[bufferIndexToCount].data.length / (stride); + offset2 += indexBufferData.length; + } + } + + return geometryOut; +}; + +/** + * Helper class to create a quad + * + * @class + * @memberof PIXI + */ +var Quad = /*@__PURE__*/(function (Geometry) { + function Quad() + { + Geometry.call(this); + + this.addAttribute('aVertexPosition', [ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]) + .addIndex([0, 1, 3, 2]); + } + + if ( Geometry ) Quad.__proto__ = Geometry; + Quad.prototype = Object.create( Geometry && Geometry.prototype ); + Quad.prototype.constructor = Quad; + + return Quad; +}(Geometry)); + +/** + * Helper class to create a quad with uvs like in v4 + * + * @class + * @memberof PIXI + * @extends PIXI.Geometry + */ +var QuadUv = /*@__PURE__*/(function (Geometry) { + function QuadUv() + { + Geometry.call(this); + + /** + * An array of vertices + * + * @member {Float32Array} + */ + this.vertices = new Float32Array([ + -1, -1, + 1, -1, + 1, 1, + -1, 1 ]); + + /** + * The Uvs of the quad + * + * @member {Float32Array} + */ + this.uvs = new Float32Array([ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]); + + this.vertexBuffer = new Buffer$1(this.vertices); + this.uvBuffer = new Buffer$1(this.uvs); + + this.addAttribute('aVertexPosition', this.vertexBuffer) + .addAttribute('aTextureCoord', this.uvBuffer) + .addIndex([0, 1, 2, 0, 2, 3]); + } + + if ( Geometry ) QuadUv.__proto__ = Geometry; + QuadUv.prototype = Object.create( Geometry && Geometry.prototype ); + QuadUv.prototype.constructor = QuadUv; + + /** + * Maps two Rectangle to the quad. + * + * @param {PIXI.Rectangle} targetTextureFrame - the first rectangle + * @param {PIXI.Rectangle} destinationFrame - the second rectangle + * @return {PIXI.Quad} Returns itself. + */ + QuadUv.prototype.map = function map (targetTextureFrame, destinationFrame) + { + var x = 0; // destinationFrame.x / targetTextureFrame.width; + var y = 0; // destinationFrame.y / targetTextureFrame.height; + + this.uvs[0] = x; + this.uvs[1] = y; + + this.uvs[2] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[3] = y; + + this.uvs[4] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[5] = y + (destinationFrame.height / targetTextureFrame.height); + + this.uvs[6] = x; + this.uvs[7] = y + (destinationFrame.height / targetTextureFrame.height); + + x = destinationFrame.x; + y = destinationFrame.y; + + this.vertices[0] = x; + this.vertices[1] = y; + + this.vertices[2] = x + destinationFrame.width; + this.vertices[3] = y; + + this.vertices[4] = x + destinationFrame.width; + this.vertices[5] = y + destinationFrame.height; + + this.vertices[6] = x; + this.vertices[7] = y + destinationFrame.height; + + this.invalidate(); + + return this; + }; + + /** + * legacy upload method, just marks buffers dirty + * @returns {PIXI.QuadUv} Returns itself. + */ + QuadUv.prototype.invalidate = function invalidate () + { + this.vertexBuffer._updateID++; + this.uvBuffer._updateID++; + + return this; + }; + + return QuadUv; +}(Geometry)); + +var UID$2 = 0; + +/** + * Uniform group holds uniform map and some ID's for work + * + * @class + * @memberof PIXI + */ +var UniformGroup = function UniformGroup(uniforms, _static) +{ + /** + * uniform values + * @member {object} + * @readonly + */ + this.uniforms = uniforms; + + /** + * Its a group and not a single uniforms + * @member {boolean} + * @readonly + * @default true + */ + this.group = true; + + // lets generate this when the shader ? + this.syncUniforms = {}; + + /** + * dirty version + * @protected + * @member {number} + */ + this.dirtyId = 0; + + /** + * unique id + * @protected + * @member {number} + */ + this.id = UID$2++; + + /** + * Uniforms wont be changed after creation + * @member {boolean} + */ + this.static = !!_static; +}; + +UniformGroup.prototype.update = function update () +{ + this.dirtyId++; +}; + +UniformGroup.prototype.add = function add (name, uniforms, _static) +{ + this.uniforms[name] = new UniformGroup(uniforms, _static); +}; + +UniformGroup.from = function from (uniforms, _static) +{ + return new UniformGroup(uniforms, _static); +}; + +/** + * System plugin to the renderer to manage filter states. + * + * @class + * @private + */ +var FilterState = function FilterState() +{ + this.renderTexture = null; + + /** + * Target of the filters + * We store for case when custom filter wants to know the element it was applied on + * @member {PIXI.DisplayObject} + * @private + */ + this.target = null; + + /** + * Compatibility with PixiJS v4 filters + * @member {boolean} + * @default false + * @private + */ + this.legacy = false; + + /** + * Resolution of filters + * @member {number} + * @default 1 + * @private + */ + this.resolution = 1; + + // next three fields are created only for root + // re-assigned for everything else + + /** + * Source frame + * @member {PIXI.Rectangle} + * @private + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @private + */ + this.destinationFrame = new Rectangle(); + + /** + * Collection of filters + * @member {PIXI.Filter[]} + * @private + */ + this.filters = []; +}; + +/** + * clears the state + * @private + */ +FilterState.prototype.clear = function clear () +{ + this.target = null; + this.filters = null; + this.renderTexture = null; +}; + +/** + * System plugin to the renderer to manage the filters. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var FilterSystem = /*@__PURE__*/(function (System) { + function FilterSystem(renderer) + { + System.call(this, renderer); + + /** + * List of filters for the FilterSystem + * @member {Object[]} + * @readonly + */ + this.defaultFilterStack = [{}]; + + /** + * stores a bunch of PO2 textures used for filtering + * @member {Object} + */ + this.texturePool = new RenderTexturePool(); + + this.texturePool.setScreenSize(renderer.view); + + /** + * a pool for storing filter states, save us creating new ones each tick + * @member {Object[]} + */ + this.statePool = []; + + /** + * A very simple geometry used when drawing a filter effect to the screen + * @member {PIXI.Quad} + */ + this.quad = new Quad(); + + /** + * Quad UVs + * @member {PIXI.QuadUv} + */ + this.quadUv = new QuadUv(); + + /** + * Temporary rect for maths + * @type {PIXI.Rectangle} + */ + this.tempRect = new Rectangle(); + + /** + * Active state + * @member {object} + */ + this.activeState = {}; + + /** + * This uniform group is attached to filter uniforms when used + * @member {PIXI.UniformGroup} + * @property {PIXI.Rectangle} outputFrame + * @property {Float32Array} inputSize + * @property {Float32Array} inputPixel + * @property {Float32Array} inputClamp + * @property {Number} resolution + * @property {Float32Array} filterArea + * @property {Fload32Array} filterClamp + */ + this.globalUniforms = new UniformGroup({ + outputFrame: this.tempRect, + inputSize: new Float32Array(4), + inputPixel: new Float32Array(4), + inputClamp: new Float32Array(4), + resolution: 1, + + // legacy variables + filterArea: new Float32Array(4), + filterClamp: new Float32Array(4), + }, true); + + this._pixelsWidth = renderer.view.width; + this._pixelsHeight = renderer.view.height; + } + + if ( System ) FilterSystem.__proto__ = System; + FilterSystem.prototype = Object.create( System && System.prototype ); + FilterSystem.prototype.constructor = FilterSystem; + + /** + * Adds a new filter to the System. + * + * @param {PIXI.DisplayObject} target - The target of the filter to render. + * @param {PIXI.Filter[]} filters - The filters to apply. + */ + FilterSystem.prototype.push = function push (target, filters) + { + var renderer = this.renderer; + var filterStack = this.defaultFilterStack; + var state = this.statePool.pop() || new FilterState(); + + var resolution = filters[0].resolution; + var padding = filters[0].padding; + var autoFit = filters[0].autoFit; + var legacy = filters[0].legacy; + + for (var i = 1; i < filters.length; i++) + { + var filter = filters[i]; + + // lets use the lowest resolution.. + resolution = Math.min(resolution, filter.resolution); + // and the largest amount of padding! + padding = Math.max(padding, filter.padding); + // only auto fit if all filters are autofit + autoFit = autoFit || filter.autoFit; + + legacy = legacy || filter.legacy; + } + + if (filterStack.length === 1) + { + this.defaultFilterStack[0].renderTexture = renderer.renderTexture.current; + } + + filterStack.push(state); + + state.resolution = resolution; + + state.legacy = legacy; + + state.target = target; + + state.sourceFrame.copyFrom(target.filterArea || target.getBounds(true)); + + state.sourceFrame.pad(padding); + if (autoFit) + { + state.sourceFrame.fit(this.renderer.renderTexture.sourceFrame); + } + + // round to whole number based on resolution + state.sourceFrame.ceil(resolution); + + state.renderTexture = this.getOptimalFilterTexture(state.sourceFrame.width, state.sourceFrame.height, resolution); + state.filters = filters; + + state.destinationFrame.width = state.renderTexture.width; + state.destinationFrame.height = state.renderTexture.height; + + state.renderTexture.filterFrame = state.sourceFrame; + + renderer.renderTexture.bind(state.renderTexture, state.sourceFrame);// /, state.destinationFrame); + renderer.renderTexture.clear(); + }; + + /** + * Pops off the filter and applies it. + * + */ + FilterSystem.prototype.pop = function pop () + { + var filterStack = this.defaultFilterStack; + var state = filterStack.pop(); + var filters = state.filters; + + this.activeState = state; + + var globalUniforms = this.globalUniforms.uniforms; + + globalUniforms.outputFrame = state.sourceFrame; + globalUniforms.resolution = state.resolution; + + var inputSize = globalUniforms.inputSize; + var inputPixel = globalUniforms.inputPixel; + var inputClamp = globalUniforms.inputClamp; + + inputSize[0] = state.destinationFrame.width; + inputSize[1] = state.destinationFrame.height; + inputSize[2] = 1.0 / inputSize[0]; + inputSize[3] = 1.0 / inputSize[1]; + + inputPixel[0] = inputSize[0] * state.resolution; + inputPixel[1] = inputSize[1] * state.resolution; + inputPixel[2] = 1.0 / inputPixel[0]; + inputPixel[3] = 1.0 / inputPixel[1]; + + inputClamp[0] = 0.5 * inputPixel[2]; + inputClamp[1] = 0.5 * inputPixel[3]; + inputClamp[2] = (state.sourceFrame.width * inputSize[2]) - (0.5 * inputPixel[2]); + inputClamp[3] = (state.sourceFrame.height * inputSize[3]) - (0.5 * inputPixel[3]); + + // only update the rect if its legacy.. + if (state.legacy) + { + var filterArea = globalUniforms.filterArea; + + filterArea[0] = state.destinationFrame.width; + filterArea[1] = state.destinationFrame.height; + filterArea[2] = state.sourceFrame.x; + filterArea[3] = state.sourceFrame.y; + + globalUniforms.filterClamp = globalUniforms.inputClamp; + } + + this.globalUniforms.update(); + + var lastState = filterStack[filterStack.length - 1]; + + if (filters.length === 1) + { + filters[0].apply(this, state.renderTexture, lastState.renderTexture, false, state); + + this.returnFilterTexture(state.renderTexture); + } + else + { + var flip = state.renderTexture; + var flop = this.getOptimalFilterTexture( + flip.width, + flip.height, + state.resolution + ); + + flop.filterFrame = flip.filterFrame; + + var i = 0; + + for (i = 0; i < filters.length - 1; ++i) + { + filters[i].apply(this, flip, flop, true, state); + + var t = flip; + + flip = flop; + flop = t; + } + + filters[i].apply(this, flip, lastState.renderTexture, false, state); + + this.returnFilterTexture(flip); + this.returnFilterTexture(flop); + } + + state.clear(); + this.statePool.push(state); + }; + + /** + * Draws a filter. + * + * @param {PIXI.Filter} filter - The filter to draw. + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + */ + FilterSystem.prototype.applyFilter = function applyFilter (filter, input, output, clear) + { + var renderer = this.renderer; + + renderer.renderTexture.bind(output, output ? output.filterFrame : null); + + if (clear) + { + // gl.disable(gl.SCISSOR_TEST); + renderer.renderTexture.clear(); + // gl.enable(gl.SCISSOR_TEST); + } + + // set the uniforms.. + filter.uniforms.uSampler = input; + filter.uniforms.filterGlobals = this.globalUniforms; + + // TODO make it so that the order of this does not matter.. + // because it does at the moment cos of global uniforms. + // they need to get resynced + + renderer.state.set(filter.state); + renderer.shader.bind(filter); + + if (filter.legacy) + { + this.quadUv.map(input._frame, input.filterFrame); + + renderer.geometry.bind(this.quadUv); + renderer.geometry.draw(DRAW_MODES.TRIANGLES); + } + else + { + renderer.geometry.bind(this.quad); + renderer.geometry.draw(DRAW_MODES.TRIANGLE_STRIP); + } + }; + + /** + * Multiply _input normalized coordinates_ to this matrix to get _sprite texture normalized coordinates_. + * + * Use `outputMatrix * vTextureCoord` in the shader. + * + * @param {PIXI.Matrix} outputMatrix - The matrix to output to. + * @param {PIXI.Sprite} sprite - The sprite to map to. + * @return {PIXI.Matrix} The mapped matrix. + */ + FilterSystem.prototype.calculateSpriteMatrix = function calculateSpriteMatrix (outputMatrix, sprite) + { + var ref = this.activeState; + var sourceFrame = ref.sourceFrame; + var destinationFrame = ref.destinationFrame; + var ref$1 = sprite._texture; + var orig = ref$1.orig; + var mappedMatrix = outputMatrix.set(destinationFrame.width, 0, 0, + destinationFrame.height, sourceFrame.x, sourceFrame.y); + var worldTransform = sprite.worldTransform.copyTo(Matrix.TEMP_MATRIX); + + worldTransform.invert(); + mappedMatrix.prepend(worldTransform); + mappedMatrix.scale(1.0 / orig.width, 1.0 / orig.height); + mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y); + + return mappedMatrix; + }; + + /** + * Destroys this Filter System. + */ + FilterSystem.prototype.destroy = function destroy () + { + // Those textures has to be destroyed by RenderTextureSystem or FramebufferSystem + this.texturePool.clear(false); + }; + + /** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ + FilterSystem.prototype.getOptimalFilterTexture = function getOptimalFilterTexture (minWidth, minHeight, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + return this.texturePool.getOptimalTexture(minWidth, minHeight, resolution); + }; + + /** + * Gets extra render texture to use inside current filter + * To be compliant with older filters, you can use params in any order + * + * @param {PIXI.RenderTexture} [input] renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * @returns {PIXI.RenderTexture} + */ + FilterSystem.prototype.getFilterTexture = function getFilterTexture (input, resolution) + { + if (typeof input === 'number') + { + var swap = input; + + input = resolution; + resolution = swap; + } + + input = input || this.activeState.renderTexture; + + var filterTexture = this.texturePool.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; + }; + + /** + * Frees a render texture back into the pool. + * + * @param {PIXI.RenderTexture} renderTexture - The renderTarget to free + */ + FilterSystem.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) + { + this.texturePool.returnTexture(renderTexture); + }; + + /** + * Empties the texture pool. + */ + FilterSystem.prototype.emptyPool = function emptyPool () + { + this.texturePool.clear(true); + }; + + /** + * calls `texturePool.resize()`, affects fullScreen renderTextures + */ + FilterSystem.prototype.resize = function resize () + { + this.texturePool.setScreenSize(this.renderer.view); + }; + + return FilterSystem; +}(System)); + +/** + * Base for a common object renderer that can be used as a + * system renderer plugin. + * + * @class + * @extends PIXI.System + * @memberof PIXI + */ +var ObjectRenderer = function ObjectRenderer(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Stub method that should be used to empty the current + * batch by rendering objects now. + */ +ObjectRenderer.prototype.flush = function flush () +{ + // flush! +}; + +/** + * Generic destruction method that frees all resources. This + * should be called by subclasses. + */ +ObjectRenderer.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Stub method that initializes any state required before + * rendering starts. It is different from the `prerender` + * signal, which occurs every frame, in that it is called + * whenever an object requests _this_ renderer specifically. + */ +ObjectRenderer.prototype.start = function start () +{ + // set the shader.. +}; + +/** + * Stops the renderer. It should free up any state and + * become dormant. + */ +ObjectRenderer.prototype.stop = function stop () +{ + this.flush(); +}; + +/** + * Keeps the object to render. It doesn't have to be + * rendered immediately. + * + * @param {PIXI.DisplayObject} object - The object to render. + */ +ObjectRenderer.prototype.render = function render (object) // eslint-disable-line no-unused-vars +{ + // render the object +}; + +/** + * System plugin to the renderer to manage batching. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var BatchSystem = /*@__PURE__*/(function (System) { + function BatchSystem(renderer) + { + System.call(this, renderer); + + /** + * An empty renderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.emptyRenderer = new ObjectRenderer(renderer); + + /** + * The currently active ObjectRenderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.currentRenderer = this.emptyRenderer; + } + + if ( System ) BatchSystem.__proto__ = System; + BatchSystem.prototype = Object.create( System && System.prototype ); + BatchSystem.prototype.constructor = BatchSystem; + + /** + * Changes the current renderer to the one given in parameter + * + * @param {PIXI.ObjectRenderer} objectRenderer - The object renderer to use. + */ + BatchSystem.prototype.setObjectRenderer = function setObjectRenderer (objectRenderer) + { + if (this.currentRenderer === objectRenderer) + { + return; + } + + this.currentRenderer.stop(); + this.currentRenderer = objectRenderer; + + this.currentRenderer.start(); + }; + + /** + * This should be called if you wish to do some custom rendering + * It will basically render anything that may be batched up such as sprites + */ + BatchSystem.prototype.flush = function flush () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + /** + * Reset the system to an empty renderer + */ + BatchSystem.prototype.reset = function reset () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + return BatchSystem; +}(System)); + +/** + * The maximum support for using WebGL. If a device does not + * support WebGL version, for instance WebGL 2, it will still + * attempt to fallback support to WebGL 1. If you want to + * explicitly remove feature support to target a more stable + * baseline, prefer a lower environment. + * + * Due to {@link https://bugs.chromium.org/p/chromium/issues/detail?id=934823|bug in chromium} + * we disable webgl2 by default for all non-apple mobile devices. + * + * @static + * @name PREFER_ENV + * @memberof PIXI.settings + * @type {number} + * @default PIXI.ENV.WEBGL2 + */ +settings.PREFER_ENV = isMobile.any ? ENV.WEBGL : ENV.WEBGL2; + +var CONTEXT_UID = 0; + +/** + * System plugin to the renderer to manage the context. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var ContextSystem = /*@__PURE__*/(function (System) { + function ContextSystem(renderer) + { + System.call(this, renderer); + + /** + * Either 1 or 2 to reflect the WebGL version being used + * @member {number} + * @readonly + */ + this.webGLVersion = 1; + + /** + * Extensions being used + * @member {object} + * @readonly + * @property {WEBGL_draw_buffers} drawBuffers - WebGL v1 extension + * @property {WEBGL_depth_texture} depthTexture - WebGL v1 extension + * @property {OES_texture_float} floatTexture - WebGL v1 extension + * @property {WEBGL_lose_context} loseContext - WebGL v1 extension + * @property {OES_vertex_array_object} vertexArrayObject - WebGL v1 extension + * @property {EXT_texture_filter_anisotropic} anisotropicFiltering - WebGL v1 and v2 extension + */ + this.extensions = {}; + + // Bind functions + this.handleContextLost = this.handleContextLost.bind(this); + this.handleContextRestored = this.handleContextRestored.bind(this); + + renderer.view.addEventListener('webglcontextlost', this.handleContextLost, false); + renderer.view.addEventListener('webglcontextrestored', this.handleContextRestored, false); + } + + if ( System ) ContextSystem.__proto__ = System; + ContextSystem.prototype = Object.create( System && System.prototype ); + ContextSystem.prototype.constructor = ContextSystem; + + var prototypeAccessors = { isLost: { configurable: true } }; + + /** + * `true` if the context is lost + * @member {boolean} + * @readonly + */ + prototypeAccessors.isLost.get = function () + { + return (!this.gl || this.gl.isContextLost()); + }; + + /** + * Handle the context change event + * @param {WebGLRenderingContext} gl new webgl context + */ + ContextSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + + // restore a context if it was previously lost + if (gl.isContextLost() && gl.getExtension('WEBGL_lose_context')) + { + gl.getExtension('WEBGL_lose_context').restoreContext(); + } + }; + + /** + * Initialize the context + * + * @protected + * @param {WebGLRenderingContext} gl - WebGL context + */ + ContextSystem.prototype.initFromContext = function initFromContext (gl) + { + this.gl = gl; + this.validateContext(gl); + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + this.renderer.runners.contextChange.run(gl); + }; + + /** + * Initialize from context options + * + * @protected + * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext + * @param {object} options - context attributes + */ + ContextSystem.prototype.initFromOptions = function initFromOptions (options) + { + var gl = this.createContext(this.renderer.view, options); + + this.initFromContext(gl); + }; + + /** + * Helper class to create a WebGL Context + * + * @param canvas {HTMLCanvasElement} the canvas element that we will get the context from + * @param options {object} An options object that gets passed in to the canvas element containing the context attributes + * @see https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement/getContext + * @return {WebGLRenderingContext} the WebGL context + */ + ContextSystem.prototype.createContext = function createContext (canvas, options) + { + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', options); + } + + if (gl) + { + this.webGLVersion = 2; + } + else + { + this.webGLVersion = 1; + + gl = canvas.getContext('webgl', options) + || canvas.getContext('experimental-webgl', options); + + if (!gl) + { + // fail, not able to get a context + throw new Error('This browser does not support WebGL. Try using the canvas renderer'); + } + } + + this.gl = gl; + + this.getExtensions(); + + return gl; + }; + + /** + * Auto-populate the extensions + * + * @protected + */ + ContextSystem.prototype.getExtensions = function getExtensions () + { + // time to set up default extensions that Pixi uses. + var ref = this; + var gl = ref.gl; + + if (this.webGLVersion === 1) + { + Object.assign(this.extensions, { + drawBuffers: gl.getExtension('WEBGL_draw_buffers'), + depthTexture: gl.getExtension('WEBKIT_WEBGL_depth_texture'), + loseContext: gl.getExtension('WEBGL_lose_context'), + vertexArrayObject: gl.getExtension('OES_vertex_array_object') + || gl.getExtension('MOZ_OES_vertex_array_object') + || gl.getExtension('WEBKIT_OES_vertex_array_object'), + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + uint32ElementIndex: gl.getExtension('OES_element_index_uint'), + // Floats and half-floats + floatTexture: gl.getExtension('OES_texture_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + textureHalfFloat: gl.getExtension('OES_texture_half_float'), + textureHalfFloatLinear: gl.getExtension('OES_texture_half_float_linear'), + }); + } + else if (this.webGLVersion === 2) + { + Object.assign(this.extensions, { + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + // Floats and half-floats + colorBufferFloat: gl.getExtension('EXT_color_buffer_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + }); + } + }; + + /** + * Handles a lost webgl context + * + * @protected + * @param {WebGLContextEvent} event - The context lost event. + */ + ContextSystem.prototype.handleContextLost = function handleContextLost (event) + { + event.preventDefault(); + }; + + /** + * Handles a restored webgl context + * + * @protected + */ + ContextSystem.prototype.handleContextRestored = function handleContextRestored () + { + this.renderer.runners.contextChange.run(this.gl); + }; + + ContextSystem.prototype.destroy = function destroy () + { + var view = this.renderer.view; + + // remove listeners + view.removeEventListener('webglcontextlost', this.handleContextLost); + view.removeEventListener('webglcontextrestored', this.handleContextRestored); + + this.gl.useProgram(null); + + if (this.extensions.loseContext) + { + this.extensions.loseContext.loseContext(); + } + }; + + /** + * Handle the post-render runner event + * + * @protected + */ + ContextSystem.prototype.postrender = function postrender () + { + this.gl.flush(); + }; + + /** + * Validate context + * + * @protected + * @param {WebGLRenderingContext} gl - Render context + */ + ContextSystem.prototype.validateContext = function validateContext (gl) + { + var attributes = gl.getContextAttributes(); + + // this is going to be fairly simple for now.. but at least we have room to grow! + if (!attributes.stencil) + { + /* eslint-disable max-len */ + + /* eslint-disable no-console */ + console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly'); + /* eslint-enable no-console */ + + /* eslint-enable max-len */ + } + }; + + Object.defineProperties( ContextSystem.prototype, prototypeAccessors ); + + return ContextSystem; +}(System)); + +/** + * System plugin to the renderer to manage framebuffers. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var FramebufferSystem = /*@__PURE__*/(function (System) { + function FramebufferSystem(renderer) + { + System.call(this, renderer); + + /** + * A list of managed framebuffers + * @member {PIXI.Framebuffer[]} + * @readonly + */ + this.managedFramebuffers = []; + + /** + * Framebuffer value that shows that we don't know what is bound + * @member {Framebuffer} + * @readonly + */ + this.unknownFramebuffer = new Framebuffer(10, 10); + } + + if ( System ) FramebufferSystem.__proto__ = System; + FramebufferSystem.prototype = Object.create( System && System.prototype ); + FramebufferSystem.prototype.constructor = FramebufferSystem; + + var prototypeAccessors = { size: { configurable: true } }; + + /** + * Sets up the renderer context and necessary buffers. + */ + FramebufferSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + this.hasMRT = true; + this.writeDepthTexture = true; + + this.disposeAll(true); + + // webgl2 + if (this.renderer.context.webGLVersion === 1) + { + // webgl 1! + var nativeDrawBuffersExtension = this.renderer.context.extensions.drawBuffers; + var nativeDepthTextureExtension = this.renderer.context.extensions.depthTexture; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeDrawBuffersExtension = null; + nativeDepthTextureExtension = null; + } + + if (nativeDrawBuffersExtension) + { + gl.drawBuffers = function (activeTextures) { return nativeDrawBuffersExtension.drawBuffersWEBGL(activeTextures); }; + } + else + { + this.hasMRT = false; + gl.drawBuffers = function () { + // empty + }; + } + + if (!nativeDepthTextureExtension) + { + this.writeDepthTexture = false; + } + } + }; + + /** + * Bind a framebuffer + * + * @param {PIXI.Framebuffer} framebuffer + * @param {PIXI.Rectangle} [frame] frame, default is framebuffer size + */ + FramebufferSystem.prototype.bind = function bind (framebuffer, frame) + { + var ref = this; + var gl = ref.gl; + + if (framebuffer) + { + // TODO caching layer! + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID] || this.initFramebuffer(framebuffer); + + if (this.current !== framebuffer) + { + this.current = framebuffer; + gl.bindFramebuffer(gl.FRAMEBUFFER, fbo.framebuffer); + } + // make sure all textures are unbound.. + + // now check for updates... + if (fbo.dirtyId !== framebuffer.dirtyId) + { + fbo.dirtyId = framebuffer.dirtyId; + + if (fbo.dirtyFormat !== framebuffer.dirtyFormat) + { + fbo.dirtyFormat = framebuffer.dirtyFormat; + this.updateFramebuffer(framebuffer); + } + else if (fbo.dirtySize !== framebuffer.dirtySize) + { + fbo.dirtySize = framebuffer.dirtySize; + this.resizeFramebuffer(framebuffer); + } + } + + for (var i = 0; i < framebuffer.colorTextures.length; i++) + { + if (framebuffer.colorTextures[i].texturePart) + { + this.renderer.texture.unbind(framebuffer.colorTextures[i].texture); + } + else + { + this.renderer.texture.unbind(framebuffer.colorTextures[i]); + } + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.unbind(framebuffer.depthTexture); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, framebuffer.width, framebuffer.height); + } + } + else + { + if (this.current) + { + this.current = null; + gl.bindFramebuffer(gl.FRAMEBUFFER, null); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, this.renderer.width, this.renderer.height); + } + } + }; + + /** + * Set the WebGLRenderingContext's viewport. + * + * @param {Number} x - X position of viewport + * @param {Number} y - Y position of viewport + * @param {Number} width - Width of viewport + * @param {Number} height - Height of viewport + */ + FramebufferSystem.prototype.setViewport = function setViewport (x, y, width, height) + { + var v = this.viewport; + + if (v.width !== width || v.height !== height || v.x !== x || v.y !== y) + { + v.x = x; + v.y = y; + v.width = width; + v.height = height; + + this.gl.viewport(x, y, width, height); + } + }; + + /** + * Get the size of the current width and height. Returns object with `width` and `height` values. + * + * @member {object} + * @readonly + */ + prototypeAccessors.size.get = function () + { + if (this.current) + { + // TODO store temp + return { x: 0, y: 0, width: this.current.width, height: this.current.height }; + } + + return { x: 0, y: 0, width: this.renderer.width, height: this.renderer.height }; + }; + + /** + * Clear the color of the context + * + * @param {Number} r - Red value from 0 to 1 + * @param {Number} g - Green value from 0 to 1 + * @param {Number} b - Blue value from 0 to 1 + * @param {Number} a - Alpha value from 0 to 1 + */ + FramebufferSystem.prototype.clear = function clear (r, g, b, a) + { + var ref = this; + var gl = ref.gl; + + // TODO clear color can be set only one right? + gl.clearColor(r, g, b, a); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + }; + + /** + * Initialize framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.initFramebuffer = function initFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + // TODO - make this a class? + var fbo = { + framebuffer: gl.createFramebuffer(), + stencil: null, + dirtyId: 0, + dirtyFormat: 0, + dirtySize: 0, + }; + + framebuffer.glFramebuffers[this.CONTEXT_UID] = fbo; + + this.managedFramebuffers.push(framebuffer); + framebuffer.disposeRunner.add(this); + + return fbo; + }; + + /** + * Resize the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.resizeFramebuffer = function resizeFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (fbo.stencil) + { + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + } + + var colorTextures = framebuffer.colorTextures; + + for (var i = 0; i < colorTextures.length; i++) + { + this.renderer.texture.bind(colorTextures[i], 0); + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.bind(framebuffer.depthTexture, 0); + } + }; + + /** + * Update the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.updateFramebuffer = function updateFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + // bind the color texture + var colorTextures = framebuffer.colorTextures; + + var count = colorTextures.length; + + if (!gl.drawBuffers) + { + count = Math.min(count, 1); + } + + var activeTextures = []; + + for (var i = 0; i < count; i++) + { + var texture = framebuffer.colorTextures[i]; + + if (texture.texturePart) + { + this.renderer.texture.bind(texture.texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_CUBE_MAP_NEGATIVE_X + texture.side, + texture.texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + else + { + this.renderer.texture.bind(texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_2D, + texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + + activeTextures.push(gl.COLOR_ATTACHMENT0 + i); + } + + if (activeTextures.length > 1) + { + gl.drawBuffers(activeTextures); + } + + if (framebuffer.depthTexture) + { + var writeDepthTexture = this.writeDepthTexture; + + if (writeDepthTexture) + { + var depthTexture = framebuffer.depthTexture; + + this.renderer.texture.bind(depthTexture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.DEPTH_ATTACHMENT, + gl.TEXTURE_2D, + depthTexture._glTextures[this.CONTEXT_UID].texture, + 0); + } + } + + if (!fbo.stencil && (framebuffer.stencil || framebuffer.depth)) + { + fbo.stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + // TODO.. this is depth AND stencil? + if (!framebuffer.depthTexture) + { // you can't have both, so one should take priority if enabled + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, fbo.stencil); + } + } + }; + + /** + * Disposes framebuffer + * @param {PIXI.Framebuffer} framebuffer framebuffer that has to be disposed of + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeFramebuffer = function disposeFramebuffer (framebuffer, contextLost) + { + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + var gl = this.gl; + + if (!fbo) + { + return; + } + + delete framebuffer.glFramebuffers[this.CONTEXT_UID]; + + var index = this.managedFramebuffers.indexOf(framebuffer); + + if (index >= 0) + { + this.managedFramebuffers.splice(index, 1); + } + + framebuffer.disposeRunner.remove(this); + + if (!contextLost) + { + gl.deleteFramebuffer(fbo.framebuffer); + if (fbo.stencil) + { + gl.deleteRenderbuffer(fbo.stencil); + } + } + }; + + /** + * Disposes all framebuffers, but not textures bound to them + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeAll = function disposeAll (contextLost) + { + var list = this.managedFramebuffers; + + this.managedFramebuffers = []; + + for (var i = 0; i < list.length; i++) + { + this.disposeFramebuffer(list[i], contextLost); + } + }; + + /** + * Forcing creation of stencil buffer for current framebuffer, if it wasn't done before. + * Used by MaskSystem, when its time to use stencil mask for Graphics element. + * + * Its an alternative for public lazy `framebuffer.enableStencil`, in case we need stencil without rebind. + * + * @private + */ + FramebufferSystem.prototype.forceStencil = function forceStencil () + { + var framebuffer = this.current; + + if (!framebuffer) + { + return; + } + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (!fbo || fbo.stencil) + { + return; + } + framebuffer.enableStencil(); + + var w = framebuffer.width; + var h = framebuffer.height; + var gl = this.gl; + var stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, w, h); + + fbo.stencil = stencil; + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, stencil); + }; + + /** + * resets framebuffer stored state, binds screen framebuffer + * + * should be called before renderTexture reset() + */ + FramebufferSystem.prototype.reset = function reset () + { + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + }; + + Object.defineProperties( FramebufferSystem.prototype, prototypeAccessors ); + + return FramebufferSystem; +}(System)); + +var GLBuffer = function GLBuffer(buffer) +{ + this.buffer = buffer; + this.updateID = -1; + this.byteLength = -1; + this.refCount = 0; +}; + +var byteSizeMap$1 = { 5126: 4, 5123: 2, 5121: 1 }; + +/** + * System plugin to the renderer to manage geometry. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var GeometrySystem = /*@__PURE__*/(function (System) { + function GeometrySystem(renderer) + { + System.call(this, renderer); + + this._activeGeometry = null; + this._activeVao = null; + + /** + * `true` if we has `*_vertex_array_object` extension + * @member {boolean} + * @readonly + */ + this.hasVao = true; + + /** + * `true` if has `ANGLE_instanced_arrays` extension + * @member {boolean} + * @readonly + */ + this.hasInstance = true; + + /** + * `true` if support `gl.UNSIGNED_INT` in `gl.drawElements` or `gl.drawElementsInstanced` + * @member {boolean} + * @readonly + */ + this.canUseUInt32ElementIndex = false; + + /** + * A cache of currently bound buffer, + * contains only two members with keys ARRAY_BUFFER and ELEMENT_ARRAY_BUFFER + * @member {Object.} + * @readonly + */ + this.boundBuffers = {}; + + /** + * Cache for all geometries by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedGeometries = {}; + + /** + * Cache for all buffers by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedBuffers = {}; + } + + if ( System ) GeometrySystem.__proto__ = System; + GeometrySystem.prototype = Object.create( System && System.prototype ); + GeometrySystem.prototype.constructor = GeometrySystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + GeometrySystem.prototype.contextChange = function contextChange () + { + this.disposeAll(true); + + var gl = this.gl = this.renderer.gl; + var context = this.renderer.context; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + // webgl2 + if (!gl.createVertexArray) + { + // webgl 1! + var nativeVaoExtension = this.renderer.context.extensions.vertexArrayObject; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeVaoExtension = null; + } + + if (nativeVaoExtension) + { + gl.createVertexArray = function () { return nativeVaoExtension.createVertexArrayOES(); }; + + gl.bindVertexArray = function (vao) { return nativeVaoExtension.bindVertexArrayOES(vao); }; + + gl.deleteVertexArray = function (vao) { return nativeVaoExtension.deleteVertexArrayOES(vao); }; + } + else + { + this.hasVao = false; + gl.createVertexArray = function () { + // empty + }; + + gl.bindVertexArray = function () { + // empty + }; + + gl.deleteVertexArray = function () { + // empty + }; + } + } + + if (!gl.vertexAttribDivisor) + { + var instanceExt = gl.getExtension('ANGLE_instanced_arrays'); + + if (instanceExt) + { + gl.vertexAttribDivisor = function (a, b) { return instanceExt.vertexAttribDivisorANGLE(a, b); }; + + gl.drawElementsInstanced = function (a, b, c, d, e) { return instanceExt.drawElementsInstancedANGLE(a, b, c, d, e); }; + + gl.drawArraysInstanced = function (a, b, c, d) { return instanceExt.drawArraysInstancedANGLE(a, b, c, d); }; + } + else + { + this.hasInstance = false; + } + } + + this.canUseUInt32ElementIndex = context.webGLVersion === 2 || !!context.extensions.uint32ElementIndex; + }; + + /** + * Binds geometry so that is can be drawn. Creating a Vao if required + * + * @param {PIXI.Geometry} geometry instance of geometry to bind + * @param {PIXI.Shader} [shader] instance of shader to use vao for + */ + GeometrySystem.prototype.bind = function bind (geometry, shader) + { + shader = shader || this.renderer.shader.shader; + + var ref = this; + var gl = ref.gl; + + // not sure the best way to address this.. + // currently different shaders require different VAOs for the same geometry + // Still mulling over the best way to solve this one.. + // will likely need to modify the shader attribute locations at run time! + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + if (!vaos) + { + this.managedGeometries[geometry.id] = geometry; + geometry.disposeRunner.add(this); + geometry.glVertexArrayObjects[this.CONTEXT_UID] = vaos = {}; + } + + var vao = vaos[shader.program.id] || this.initGeometryVao(geometry, shader.program); + + this._activeGeometry = geometry; + + if (this._activeVao !== vao) + { + this._activeVao = vao; + + if (this.hasVao) + { + gl.bindVertexArray(vao); + } + else + { + this.activateVao(geometry, shader.program); + } + } + + // TODO - optimise later! + // don't need to loop through if nothing changed! + // maybe look to add an 'autoupdate' to geometry? + this.updateBuffers(); + }; + + /** + * Reset and unbind any active VAO and geometry + */ + GeometrySystem.prototype.reset = function reset () + { + this.unbind(); + }; + + /** + * Update buffers + * @protected + */ + GeometrySystem.prototype.updateBuffers = function updateBuffers () + { + var geometry = this._activeGeometry; + var ref = this; + var gl = ref.gl; + + for (var i = 0; i < geometry.buffers.length; i++) + { + var buffer = geometry.buffers[i]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + + if (buffer._updateID !== glBuffer.updateID) + { + glBuffer.updateID = buffer._updateID; + + // TODO can cache this on buffer! maybe added a getter / setter? + var type = buffer.index ? gl.ELEMENT_ARRAY_BUFFER : gl.ARRAY_BUFFER; + + // TODO this could change if the VAO changes... + // need to come up with a better way to cache.. + // if (this.boundBuffers[type] !== glBuffer) + // { + // this.boundBuffers[type] = glBuffer; + gl.bindBuffer(type, glBuffer.buffer); + // } + + this._boundBuffer = glBuffer; + + if (glBuffer.byteLength >= buffer.data.byteLength) + { + // offset is always zero for now! + gl.bufferSubData(type, 0, buffer.data); + } + else + { + var drawType = buffer.static ? gl.STATIC_DRAW : gl.DYNAMIC_DRAW; + + glBuffer.byteLength = buffer.data.byteLength; + gl.bufferData(type, buffer.data, drawType); + } + } + } + }; + + /** + * Check compability between a geometry and a program + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Program instance + */ + GeometrySystem.prototype.checkCompatibility = function checkCompatibility (geometry, program) + { + // geometry must have at least all the attributes that the shader requires. + var geometryAttributes = geometry.attributes; + var shaderAttributes = program.attributeData; + + for (var j in shaderAttributes) + { + if (!geometryAttributes[j]) + { + throw new Error(("shader and geometry incompatible, geometry missing the \"" + j + "\" attribute")); + } + } + }; + + /** + * Takes a geometry and program and generates a unique signature for them. + * + * @param {PIXI.Geometry} geometry to get signature from + * @param {PIXI.Program} program to test geometry against + * @returns {String} Unique signature of the geometry and program + * @protected + */ + GeometrySystem.prototype.getSignature = function getSignature (geometry, program) + { + var attribs = geometry.attributes; + var shaderAttributes = program.attributeData; + + var strings = ['g', geometry.id]; + + for (var i in attribs) + { + if (shaderAttributes[i]) + { + strings.push(i); + } + } + + return strings.join('-'); + }; + + /** + * Creates or gets Vao with the same structure as the geometry and stores it on the geometry. + * If vao is created, it is bound automatically. + * + * @protected + * @param {PIXI.Geometry} geometry - Instance of geometry to to generate Vao for + * @param {PIXI.Program} program - Instance of program + */ + GeometrySystem.prototype.initGeometryVao = function initGeometryVao (geometry, program) + { + this.checkCompatibility(geometry, program); + + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + + var signature = this.getSignature(geometry, program); + + var vaoObjectHash = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + var vao = vaoObjectHash[signature]; + + if (vao) + { + // this will give us easy access to the vao + vaoObjectHash[program.id] = vao; + + return vao; + } + + var buffers = geometry.buffers; + var attributes = geometry.attributes; + var tempStride = {}; + var tempStart = {}; + + for (var j in buffers) + { + tempStride[j] = 0; + tempStart[j] = 0; + } + + for (var j$1 in attributes) + { + if (!attributes[j$1].size && program.attributeData[j$1]) + { + attributes[j$1].size = program.attributeData[j$1].size; + } + else if (!attributes[j$1].size) + { + console.warn(("PIXI Geometry attribute '" + j$1 + "' size cannot be determined (likely the bound shader does not have the attribute)")); // eslint-disable-line + } + + tempStride[attributes[j$1].buffer] += attributes[j$1].size * byteSizeMap$1[attributes[j$1].type]; + } + + for (var j$2 in attributes) + { + var attribute = attributes[j$2]; + var attribSize = attribute.size; + + if (attribute.stride === undefined) + { + if (tempStride[attribute.buffer] === attribSize * byteSizeMap$1[attribute.type]) + { + attribute.stride = 0; + } + else + { + attribute.stride = tempStride[attribute.buffer]; + } + } + + if (attribute.start === undefined) + { + attribute.start = tempStart[attribute.buffer]; + + tempStart[attribute.buffer] += attribSize * byteSizeMap$1[attribute.type]; + } + } + + vao = gl.createVertexArray(); + + gl.bindVertexArray(vao); + + // first update - and create the buffers! + // only create a gl buffer if it actually gets + for (var i = 0; i < buffers.length; i++) + { + var buffer = buffers[i]; + + if (!buffer._glBuffers[CONTEXT_UID]) + { + buffer._glBuffers[CONTEXT_UID] = new GLBuffer(gl.createBuffer()); + this.managedBuffers[buffer.id] = buffer; + buffer.disposeRunner.add(this); + } + + buffer._glBuffers[CONTEXT_UID].refCount++; + } + + // TODO - maybe make this a data object? + // lets wait to see if we need to first! + + this.activateVao(geometry, program); + + this._activeVao = vao; + + // add it to the cache! + vaoObjectHash[program.id] = vao; + vaoObjectHash[signature] = vao; + + return vao; + }; + + /** + * Disposes buffer + * @param {PIXI.Buffer} buffer buffer with data + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeBuffer = function disposeBuffer (buffer, contextLost) + { + if (!this.managedBuffers[buffer.id]) + { + return; + } + + delete this.managedBuffers[buffer.id]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + var gl = this.gl; + + buffer.disposeRunner.remove(this); + + if (!glBuffer) + { + return; + } + + if (!contextLost) + { + gl.deleteBuffer(glBuffer.buffer); + } + + delete buffer._glBuffers[this.CONTEXT_UID]; + }; + + /** + * Disposes geometry + * @param {PIXI.Geometry} geometry Geometry with buffers. Only VAO will be disposed + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeGeometry = function disposeGeometry (geometry, contextLost) + { + if (!this.managedGeometries[geometry.id]) + { + return; + } + + delete this.managedGeometries[geometry.id]; + + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + var gl = this.gl; + var buffers = geometry.buffers; + + geometry.disposeRunner.remove(this); + + if (!vaos) + { + return; + } + + for (var i = 0; i < buffers.length; i++) + { + var buf = buffers[i]._glBuffers[this.CONTEXT_UID]; + + buf.refCount--; + if (buf.refCount === 0 && !contextLost) + { + this.disposeBuffer(buffers[i], contextLost); + } + } + + if (!contextLost) + { + for (var vaoId in vaos) + { + // delete only signatures, everything else are copies + if (vaoId[0] === 'g') + { + var vao = vaos[vaoId]; + + if (this._activeVao === vao) + { + this.unbind(); + } + gl.deleteVertexArray(vao); + } + } + } + + delete geometry.glVertexArrayObjects[this.CONTEXT_UID]; + }; + + /** + * dispose all WebGL resources of all managed geometries and buffers + * @param {boolean} [contextLost=false] If context was lost, we suppress `gl.delete` calls + */ + GeometrySystem.prototype.disposeAll = function disposeAll (contextLost) + { + var all = Object.keys(this.managedGeometries); + + for (var i = 0; i < all.length; i++) + { + this.disposeGeometry(this.managedGeometries[all[i]], contextLost); + } + all = Object.keys(this.managedBuffers); + for (var i$1 = 0; i$1 < all.length; i$1++) + { + this.disposeBuffer(this.managedBuffers[all[i$1]], contextLost); + } + }; + + /** + * Activate vertex array object + * + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Shader program instance + */ + GeometrySystem.prototype.activateVao = function activateVao (geometry, program) + { + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + var buffers = geometry.buffers; + var attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + // first update the index buffer if we have one.. + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, geometry.indexBuffer._glBuffers[CONTEXT_UID].buffer); + } + + var lastBuffer = null; + + // add a new one! + for (var j in attributes) + { + var attribute = attributes[j]; + var buffer = buffers[attribute.buffer]; + var glBuffer = buffer._glBuffers[CONTEXT_UID]; + + if (program.attributeData[j]) + { + if (lastBuffer !== glBuffer) + { + gl.bindBuffer(gl.ARRAY_BUFFER, glBuffer.buffer); + + lastBuffer = glBuffer; + } + + var location = program.attributeData[j].location; + + // TODO introduce state again + // we can optimise this for older devices that have no VAOs + gl.enableVertexAttribArray(location); + + gl.vertexAttribPointer(location, + attribute.size, + attribute.type || gl.FLOAT, + attribute.normalized, + attribute.stride, + attribute.start); + + if (attribute.instance) + { + // TODO calculate instance count based of this... + if (this.hasInstance) + { + gl.vertexAttribDivisor(location, 1); + } + else + { + throw new Error('geometry error, GPU Instancing is not supported on this device'); + } + } + } + } + }; + + /** + * Draw the geometry + * + * @param {Number} type - the type primitive to render + * @param {Number} [size] - the number of elements to be rendered + * @param {Number} [start] - Starting index + * @param {Number} [instanceCount] - the number of instances of the set of elements to execute + */ + GeometrySystem.prototype.draw = function draw (type, size, start, instanceCount) + { + var ref = this; + var gl = ref.gl; + var geometry = this._activeGeometry; + + // TODO.. this should not change so maybe cache the function? + + if (geometry.indexBuffer) + { + var byteSize = geometry.indexBuffer.data.BYTES_PER_ELEMENT; + var glType = byteSize === 2 ? gl.UNSIGNED_SHORT : gl.UNSIGNED_INT; + + if (byteSize === 2 || (byteSize === 4 && this.canUseUInt32ElementIndex)) + { + if (geometry.instanced) + { + /* eslint-disable max-len */ + gl.drawElementsInstanced(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize, instanceCount || 1); + /* eslint-enable max-len */ + } + else + { + /* eslint-disable max-len */ + gl.drawElements(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize); + /* eslint-enable max-len */ + } + } + else + { + console.warn('unsupported index buffer type: uint32'); + } + } + else if (geometry.instanced) + { + // TODO need a better way to calculate size.. + gl.drawArraysInstanced(type, start, size || geometry.getSize(), instanceCount || 1); + } + else + { + gl.drawArrays(type, start, size || geometry.getSize()); + } + + return this; + }; + + /** + * Unbind/reset everything + * @protected + */ + GeometrySystem.prototype.unbind = function unbind () + { + this.gl.bindVertexArray(null); + this._activeVao = null; + this._activeGeometry = null; + }; + + return GeometrySystem; +}(System)); + +/** + * @method compileProgram + * @private + * @memberof PIXI.glCore.shader + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @param fragmentSrc {string|string[]} The fragment shader source as an array of strings. + * @param attributeLocations {Object} An attribute location map that lets you manually set the attribute locations + * @return {WebGLProgram} the shader program + */ +function compileProgram(gl, vertexSrc, fragmentSrc, attributeLocations) +{ + var glVertShader = compileShader(gl, gl.VERTEX_SHADER, vertexSrc); + var glFragShader = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc); + + var program = gl.createProgram(); + + gl.attachShader(program, glVertShader); + gl.attachShader(program, glFragShader); + + // optionally, set the attributes manually for the program rather than letting WebGL decide.. + if (attributeLocations) + { + for (var i in attributeLocations) + { + gl.bindAttribLocation(program, attributeLocations[i], i); + } + } + + gl.linkProgram(program); + + // if linking fails, then log and cleanup + if (!gl.getProgramParameter(program, gl.LINK_STATUS)) + { + console.error('Pixi.js Error: Could not initialize shader.'); + console.error('gl.VALIDATE_STATUS', gl.getProgramParameter(program, gl.VALIDATE_STATUS)); + console.error('gl.getError()', gl.getError()); + + // if there is a program info log, log it + if (gl.getProgramInfoLog(program) !== '') + { + console.warn('Pixi.js Warning: gl.getProgramInfoLog()', gl.getProgramInfoLog(program)); + } + + gl.deleteProgram(program); + program = null; + } + + // clean up some shaders + gl.deleteShader(glVertShader); + gl.deleteShader(glFragShader); + + return program; +} + +/** + * @private + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param type {Number} the type, can be either VERTEX_SHADER or FRAGMENT_SHADER + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @return {WebGLShader} the shader + */ +function compileShader(gl, type, src) +{ + var shader = gl.createShader(type); + + gl.shaderSource(shader, src); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + console.warn(src); + console.error(gl.getShaderInfoLog(shader)); + + return null; + } + + return shader; +} + +/** + * @method defaultValue + * @memberof PIXI.glCore.shader + * @param type {String} Type of value + * @param size {Number} + * @private + */ +function defaultValue(type, size) +{ + switch (type) + { + case 'float': + return 0; + + case 'vec2': + return new Float32Array(2 * size); + + case 'vec3': + return new Float32Array(3 * size); + + case 'vec4': + return new Float32Array(4 * size); + + case 'int': + case 'sampler2D': + case 'sampler2DArray': + return 0; + + case 'ivec2': + return new Int32Array(2 * size); + + case 'ivec3': + return new Int32Array(3 * size); + + case 'ivec4': + return new Int32Array(4 * size); + + case 'bool': + return false; + + case 'bvec2': + + return booleanArray(2 * size); + + case 'bvec3': + return booleanArray(3 * size); + + case 'bvec4': + return booleanArray(4 * size); + + case 'mat2': + return new Float32Array([1, 0, + 0, 1]); + + case 'mat3': + return new Float32Array([1, 0, 0, + 0, 1, 0, + 0, 0, 1]); + + case 'mat4': + return new Float32Array([1, 0, 0, 0, + 0, 1, 0, 0, + 0, 0, 1, 0, + 0, 0, 0, 1]); + } + + return null; +} + +function booleanArray(size) +{ + var array = new Array(size); + + for (var i = 0; i < array.length; i++) + { + array[i] = false; + } + + return array; +} + +var unknownContext = {}; +var context = unknownContext; + +/** + * returns a little WebGL context to use for program inspection. + * + * @static + * @private + * @returns {webGL-context} a gl context to test with + */ +function getTestContext() +{ + if (context === unknownContext || context.isContextLost()) + { + var canvas = document.createElement('canvas'); + + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', {}); + } + + if (!gl) + { + gl = canvas.getContext('webgl', {}) + || canvas.getContext('experimental-webgl', {}); + + if (!gl) + { + // fail, not able to get a context + gl = null; + } + else + { + // for shader testing.. + gl.getExtension('WEBGL_draw_buffers'); + } + } + + context = gl; + } + + return context; +} + +var maxFragmentPrecision; + +function getMaxFragmentPrecision() +{ + if (!maxFragmentPrecision) + { + maxFragmentPrecision = PRECISION.MEDIUM; + var gl = getTestContext(); + + if (gl) + { + if (gl.getShaderPrecisionFormat) + { + var shaderFragment = gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT); + + maxFragmentPrecision = shaderFragment.precision ? PRECISION.HIGH : PRECISION.MEDIUM; + } + } + } + + return maxFragmentPrecision; +} + +/** + * Sets the float precision on the shader, ensuring the device supports the request precision. + * If the precision is already present, it just ensures that the device is able to handle it. + * + * @private + * @param {string} src - The shader source + * @param {string} requestedPrecision - The request float precision of the shader. Options are 'lowp', 'mediump' or 'highp'. + * @param {string} maxSupportedPrecision - The maximum precision the shader supports. + * + * @return {string} modified shader source + */ +function setPrecision(src, requestedPrecision, maxSupportedPrecision) +{ + if (src.substring(0, 9) !== 'precision') + { + // no precision supplied, so PixiJS will add the requested level. + var precision = requestedPrecision; + + // If highp is requested but not supported, downgrade precision to a level all devices support. + if (requestedPrecision === PRECISION.HIGH && maxSupportedPrecision !== PRECISION.HIGH) + { + precision = PRECISION.MEDIUM; + } + + return ("precision " + precision + " float;\n" + src); + } + else if (maxSupportedPrecision !== PRECISION.HIGH && src.substring(0, 15) === 'precision highp') + { + // precision was supplied, but at a level this device does not support, so downgrading to mediump. + return src.replace('precision highp', 'precision mediump'); + } + + return src; +} + +var GLSL_TO_SIZE = { + float: 1, + vec2: 2, + vec3: 3, + vec4: 4, + + int: 1, + ivec2: 2, + ivec3: 3, + ivec4: 4, + + bool: 1, + bvec2: 2, + bvec3: 3, + bvec4: 4, + + mat2: 4, + mat3: 9, + mat4: 16, + + sampler2D: 1, +}; + +/** + * @private + * @method mapSize + * @memberof PIXI.glCore.shader + * @param type {String} + * @return {Number} + */ +function mapSize(type) +{ + return GLSL_TO_SIZE[type]; +} + +var GL_TABLE = null; + +var GL_TO_GLSL_TYPES = { + FLOAT: 'float', + FLOAT_VEC2: 'vec2', + FLOAT_VEC3: 'vec3', + FLOAT_VEC4: 'vec4', + + INT: 'int', + INT_VEC2: 'ivec2', + INT_VEC3: 'ivec3', + INT_VEC4: 'ivec4', + + BOOL: 'bool', + BOOL_VEC2: 'bvec2', + BOOL_VEC3: 'bvec3', + BOOL_VEC4: 'bvec4', + + FLOAT_MAT2: 'mat2', + FLOAT_MAT3: 'mat3', + FLOAT_MAT4: 'mat4', + + SAMPLER_2D: 'sampler2D', + SAMPLER_CUBE: 'samplerCube', + SAMPLER_2D_ARRAY: 'sampler2DArray', +}; + +function mapType(gl, type) +{ + if (!GL_TABLE) + { + var typeNames = Object.keys(GL_TO_GLSL_TYPES); + + GL_TABLE = {}; + + for (var i = 0; i < typeNames.length; ++i) + { + var tn = typeNames[i]; + + GL_TABLE[gl[tn]] = GL_TO_GLSL_TYPES[tn]; + } + } + + return GL_TABLE[type]; +} + +// cv = CachedValue +// v = value +// ud = uniformData +// uv = uniformValue +// l = location +var GLSL_TO_SINGLE_SETTERS_CACHED = { + + float: "\n if(cv !== v)\n {\n cv.v = v;\n gl.uniform1f(location, v)\n }", + + vec2: "\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(location, v[0], v[1])\n }", + + vec3: "\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n\n gl.uniform3f(location, v[0], v[1], v[2])\n }", + + vec4: 'gl.uniform4f(location, v[0], v[1], v[2], v[3])', + + int: 'gl.uniform1i(location, v)', + ivec2: 'gl.uniform2i(location, v[0], v[1])', + ivec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + ivec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + bool: 'gl.uniform1i(location, v)', + bvec2: 'gl.uniform2i(location, v[0], v[1])', + bvec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + bvec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + mat2: 'gl.uniformMatrix2fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat4: 'gl.uniformMatrix4fv(location, false, v)', + + sampler2D: 'gl.uniform1i(location, v)', + samplerCube: 'gl.uniform1i(location, v)', + sampler2DArray: 'gl.uniform1i(location, v)', +}; + +var GLSL_TO_ARRAY_SETTERS = { + + float: "gl.uniform1fv(location, v)", + + vec2: "gl.uniform2fv(location, v)", + vec3: "gl.uniform3fv(location, v)", + vec4: 'gl.uniform4fv(location, v)', + + mat4: 'gl.uniformMatrix4fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat2: 'gl.uniformMatrix2fv(location, false, v)', + + int: 'gl.uniform1iv(location, v)', + ivec2: 'gl.uniform2iv(location, v)', + ivec3: 'gl.uniform3iv(location, v)', + ivec4: 'gl.uniform4iv(location, v)', + + bool: 'gl.uniform1iv(location, v)', + bvec2: 'gl.uniform2iv(location, v)', + bvec3: 'gl.uniform3iv(location, v)', + bvec4: 'gl.uniform4iv(location, v)', + + sampler2D: 'gl.uniform1iv(location, v)', + samplerCube: 'gl.uniform1iv(location, v)', + sampler2DArray: 'gl.uniform1iv(location, v)', +}; + +function generateUniformsSync(group, uniformData) +{ + var textureCount = 0; + var func = "var v = null;\n var cv = null\n var gl = renderer.gl"; + + for (var i in group.uniforms) + { + var data = uniformData[i]; + + if (!data) + { + if (group.uniforms[i].group) + { + func += "\n renderer.shader.syncUniformGroup(uv." + i + ");\n "; + } + + continue; + } + + // TODO && uniformData[i].value !== 0 <-- do we still need this? + if (data.type === 'float' && data.size === 1) + { + func += "\n if(uv." + i + " !== ud." + i + ".value)\n {\n ud." + i + ".value = uv." + i + "\n gl.uniform1f(ud." + i + ".location, uv." + i + ")\n }\n"; + } + /* eslint-disable max-len */ + else if ((data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray) + /* eslint-disable max-len */ + { + func += "\n renderer.texture.bind(uv." + i + ", " + textureCount + ");\n\n if(ud." + i + ".value !== " + textureCount + ")\n {\n ud." + i + ".value = " + textureCount + ";\n gl.uniform1i(ud." + i + ".location, " + textureCount + ");\n; // eslint-disable-line max-len\n }\n"; + + textureCount++; + } + else if (data.type === 'mat3' && data.size === 1) + { + if (group.uniforms[i].a !== undefined) + { + // TODO and some smart caching dirty ids here! + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ".toArray(true));\n \n"; + } + else + { + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ");\n \n"; + } + } + else if (data.type === 'vec2' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].x !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n gl.uniform2f(ud." + i + ".location, v.x, v.y);\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(ud." + i + ".location, v[0], v[1]);\n }\n \n"; + } + } + else if (data.type === 'vec4' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].width !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y || cv[2] !== v.width || cv[3] !== v.height)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n cv[2] = v.width;\n cv[3] = v.height;\n gl.uniform4f(ud." + i + ".location, v.x, v.y, v.width, v.height)\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2] || cv[3] !== v[3])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n cv[3] = v[3];\n\n gl.uniform4f(ud." + i + ".location, v[0], v[1], v[2], v[3])\n }\n \n"; + } + } + else + { + var templateType = (data.size === 1) ? GLSL_TO_SINGLE_SETTERS_CACHED : GLSL_TO_ARRAY_SETTERS; + + var template = templateType[data.type].replace('location', ("ud." + i + ".location")); + + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n " + template + ";\n"; + } + } + + return new Function('ud', 'uv', 'renderer', func); // eslint-disable-line no-new-func +} + +var fragTemplate = [ + 'precision mediump float;', + 'void main(void){', + 'float test = 0.1;', + '%forloop%', + 'gl_FragColor = vec4(0.0);', + '}' ].join('\n'); + +function checkMaxIfStatementsInShader(maxIfs, gl) +{ + if (maxIfs === 0) + { + throw new Error('Invalid value of `0` passed to `checkMaxIfStatementsInShader`'); + } + + var shader = gl.createShader(gl.FRAGMENT_SHADER); + + while (true) // eslint-disable-line no-constant-condition + { + var fragmentSrc = fragTemplate.replace(/%forloop%/gi, generateIfTestSrc(maxIfs)); + + gl.shaderSource(shader, fragmentSrc); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + maxIfs = (maxIfs / 2) | 0; + } + else + { + // valid! + break; + } + } + + return maxIfs; +} + +function generateIfTestSrc(maxIfs) +{ + var src = ''; + + for (var i = 0; i < maxIfs; ++i) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxIfs - 1) + { + src += "if(test == " + i + ".0){}"; + } + } + + return src; +} + +// Cache the result to prevent running this over and over +var unsafeEval; + +/** + * Not all platforms allow to generate function code (e.g., `new Function`). + * this provides the platform-level detection. + * + * @private + * @returns {boolean} + */ +function unsafeEvalSupported() +{ + if (typeof unsafeEval === 'boolean') + { + return unsafeEval; + } + + try + { + /* eslint-disable no-new-func */ + var func = new Function('param1', 'param2', 'param3', 'return param1[param2] === param3;'); + /* eslint-enable no-new-func */ + + unsafeEval = func({ a: 'b' }, 'a', 'b') === true; + } + catch (e) + { + unsafeEval = false; + } + + return unsafeEval; +} + +var defaultFragment = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor *= texture2D(uSampler, vTextureCoord);\n}"; + +var defaultVertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n vTextureCoord = aTextureCoord;\n}\n"; + +// import * as from '../systems/shader/shader'; + +var UID$3 = 0; + +var nameCache = {}; + +/** + * Helper class to create a shader program. + * + * @class + * @memberof PIXI + */ +var Program = function Program(vertexSrc, fragmentSrc, name) +{ + if ( name === void 0 ) name = 'pixi-shader'; + + this.id = UID$3++; + + /** + * The vertex shader. + * + * @member {string} + */ + this.vertexSrc = vertexSrc || Program.defaultVertexSrc; + + /** + * The fragment shader. + * + * @member {string} + */ + this.fragmentSrc = fragmentSrc || Program.defaultFragmentSrc; + + this.vertexSrc = this.vertexSrc.trim(); + this.fragmentSrc = this.fragmentSrc.trim(); + + if (this.vertexSrc.substring(0, 8) !== '#version') + { + name = name.replace(/\s+/g, '-'); + + if (nameCache[name]) + { + nameCache[name]++; + name += "-" + (nameCache[name]); + } + else + { + nameCache[name] = 1; + } + + this.vertexSrc = "#define SHADER_NAME " + name + "\n" + (this.vertexSrc); + this.fragmentSrc = "#define SHADER_NAME " + name + "\n" + (this.fragmentSrc); + + this.vertexSrc = setPrecision(this.vertexSrc, settings.PRECISION_VERTEX, PRECISION.HIGH); + this.fragmentSrc = setPrecision(this.fragmentSrc, settings.PRECISION_FRAGMENT, getMaxFragmentPrecision()); + } + + // currently this does not extract structs only default types + this.extractData(this.vertexSrc, this.fragmentSrc); + + // this is where we store shader references.. + this.glPrograms = {}; + + this.syncUniforms = null; +}; + +var staticAccessors$3 = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + +/** + * Extracts the data for a buy creating a small test program + * or reading the src directly. + * @protected + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + */ +Program.prototype.extractData = function extractData (vertexSrc, fragmentSrc) +{ + var gl = getTestContext(); + + if (gl) + { + var program = compileProgram(gl, vertexSrc, fragmentSrc); + + this.attributeData = this.getAttributeData(program, gl); + this.uniformData = this.getUniformData(program, gl); + + gl.deleteProgram(program); + } + else + { + this.uniformData = {}; + this.attributeData = {}; + } +}; + +/** + * returns the attribute data from the program + * @private + * + * @param {WebGLProgram} [program] - the WebGL program + * @param {WebGLRenderingContext} [gl] - the WebGL context + * + * @returns {object} the attribute data for this program + */ +Program.prototype.getAttributeData = function getAttributeData (program, gl) +{ + var attributes = {}; + var attributesArray = []; + + var totalAttributes = gl.getProgramParameter(program, gl.ACTIVE_ATTRIBUTES); + + for (var i = 0; i < totalAttributes; i++) + { + var attribData = gl.getActiveAttrib(program, i); + var type = mapType(gl, attribData.type); + + /*eslint-disable */ + var data = { + type: type, + name: attribData.name, + size: mapSize(type), + location: 0, + }; + /* eslint-enable */ + + attributes[attribData.name] = data; + attributesArray.push(data); + } + + attributesArray.sort(function (a, b) { return (a.name > b.name) ? 1 : -1; }); // eslint-disable-line no-confusing-arrow + + for (var i$1 = 0; i$1 < attributesArray.length; i$1++) + { + attributesArray[i$1].location = i$1; + } + + return attributes; +}; + +/** + * returns the uniform data from the program + * @private + * + * @param {webGL-program} [program] - the webgl program + * @param {context} [gl] - the WebGL context + * + * @returns {object} the uniform data for this program + */ +Program.prototype.getUniformData = function getUniformData (program, gl) +{ + var uniforms = {}; + + var totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS); + + // TODO expose this as a prop? + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + + for (var i = 0; i < totalUniforms; i++) + { + var uniformData = gl.getActiveUniform(program, i); + var name = uniformData.name.replace(/\[.*?\]/, ''); + + var isArray = uniformData.name.match(/\[.*?\]/, ''); + var type = mapType(gl, uniformData.type); + + /*eslint-disable */ + uniforms[name] = { + type: type, + size: uniformData.size, + isArray:isArray, + value: defaultValue(type, uniformData.size), + }; + /* eslint-enable */ + } + + return uniforms; +}; + +/** + * The default vertex shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultVertexSrc.get = function () +{ + return defaultVertex; +}; + +/** + * The default fragment shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultFragmentSrc.get = function () +{ + return defaultFragment; +}; + +/** + * A short hand function to create a program based of a vertex and fragment shader + * this method will also check to see if there is a cached program. + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Program} an shiny new Pixi shader! + */ +Program.from = function from (vertexSrc, fragmentSrc, name) +{ + var key = vertexSrc + fragmentSrc; + + var program = ProgramCache[key]; + + if (!program) + { + ProgramCache[key] = program = new Program(vertexSrc, fragmentSrc, name); + } + + return program; +}; + +Object.defineProperties( Program, staticAccessors$3 ); + +/** + * A helper class for shaders + * + * @class + * @memberof PIXI + */ +var Shader = function Shader(program, uniforms) +{ + /** + * Program that the shader uses + * + * @member {PIXI.Program} + */ + this.program = program; + + // lets see whats been passed in + // uniforms should be converted to a uniform group + if (uniforms) + { + if (uniforms instanceof UniformGroup) + { + this.uniformGroup = uniforms; + } + else + { + this.uniformGroup = new UniformGroup(uniforms); + } + } + else + { + this.uniformGroup = new UniformGroup({}); + } + + // time to build some getters and setters! + // I guess down the line this could sort of generate an instruction list rather than use dirty ids? + // does the trick for now though! + for (var i in program.uniformData) + { + if (this.uniformGroup.uniforms[i] instanceof Array) + { + this.uniformGroup.uniforms[i] = new Float32Array(this.uniformGroup.uniforms[i]); + } + } +}; + +var prototypeAccessors$2$1 = { uniforms: { configurable: true } }; + +// TODO move to shader system.. +Shader.prototype.checkUniformExists = function checkUniformExists (name, group) +{ + if (group.uniforms[name]) + { + return true; + } + + for (var i in group.uniforms) + { + var uniform = group.uniforms[i]; + + if (uniform.group) + { + if (this.checkUniformExists(name, uniform)) + { + return true; + } + } + } + + return false; +}; + +Shader.prototype.destroy = function destroy () +{ + // usage count on programs? + // remove if not used! + this.uniformGroup = null; +}; + +/** + * Shader uniform values, shortcut for `uniformGroup.uniforms` + * @readonly + * @member {object} + */ +prototypeAccessors$2$1.uniforms.get = function () +{ + return this.uniformGroup.uniforms; +}; + +/** + * A short hand function to create a shader based of a vertex and fragment shader + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Shader} an shiny new Pixi shader! + */ +Shader.from = function from (vertexSrc, fragmentSrc, uniforms) +{ + var program = Program.from(vertexSrc, fragmentSrc); + + return new Shader(program, uniforms); +}; + +Object.defineProperties( Shader.prototype, prototypeAccessors$2$1 ); + +/* eslint-disable max-len */ + +var BLEND = 0; +var OFFSET = 1; +var CULLING = 2; +var DEPTH_TEST = 3; +var WINDING = 4; + +/** + * This is a WebGL state, and is is passed The WebGL StateManager. + * + * Each mesh rendered may require WebGL to be in a different state. + * For example you may want different blend mode or to enable polygon offsets + * + * @class + * @memberof PIXI + */ +var State = function State() +{ + this.data = 0; + + this.blendMode = BLEND_MODES.NORMAL; + this.polygonOffset = 0; + + this.blend = true; + // this.depthTest = true; +}; + +var prototypeAccessors$3$1 = { blend: { configurable: true },offsets: { configurable: true },culling: { configurable: true },depthTest: { configurable: true },clockwiseFrontFace: { configurable: true },blendMode: { configurable: true },polygonOffset: { configurable: true } }; + +/** + * Activates blending of the computed fragment color values + * + * @member {boolean} + */ +prototypeAccessors$3$1.blend.get = function () +{ + return !!(this.data & (1 << BLEND)); +}; + +prototypeAccessors$3$1.blend.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << BLEND)) !== value) + { + this.data ^= (1 << BLEND); + } +}; + +/** + * Activates adding an offset to depth values of polygon's fragments + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.offsets.get = function () +{ + return !!(this.data & (1 << OFFSET)); +}; + +prototypeAccessors$3$1.offsets.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << OFFSET)) !== value) + { + this.data ^= (1 << OFFSET); + } +}; + +/** + * Activates culling of polygons. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.culling.get = function () +{ + return !!(this.data & (1 << CULLING)); +}; + +prototypeAccessors$3$1.culling.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << CULLING)) !== value) + { + this.data ^= (1 << CULLING); + } +}; + +/** + * Activates depth comparisons and updates to the depth buffer. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.depthTest.get = function () +{ + return !!(this.data & (1 << DEPTH_TEST)); +}; + +prototypeAccessors$3$1.depthTest.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << DEPTH_TEST)) !== value) + { + this.data ^= (1 << DEPTH_TEST); + } +}; + +/** + * Specifies whether or not front or back-facing polygons can be culled. + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.clockwiseFrontFace.get = function () +{ + return !!(this.data & (1 << WINDING)); +}; + +prototypeAccessors$3$1.clockwiseFrontFace.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << WINDING)) !== value) + { + this.data ^= (1 << WINDING); + } +}; + +/** + * The blend mode to be applied when this state is set. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * Setting this mode to anything other than NO_BLEND will automatically switch blending on. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ +prototypeAccessors$3$1.blendMode.get = function () +{ + return this._blendMode; +}; + +prototypeAccessors$3$1.blendMode.set = function (value) // eslint-disable-line require-jsdoc +{ + this.blend = (value !== BLEND_MODES.NONE); + this._blendMode = value; +}; + +/** + * The polygon offset. Setting this property to anything other than 0 will automatically enable polygon offset fill. + * + * @member {number} + * @default 0 + */ +prototypeAccessors$3$1.polygonOffset.get = function () +{ + return this._polygonOffset; +}; + +prototypeAccessors$3$1.polygonOffset.set = function (value) // eslint-disable-line require-jsdoc +{ + this.offsets = !!value; + this._polygonOffset = value; +}; + +State.for2d = function for2d () +{ + var state = new State(); + + state.depthTest = false; + state.blend = true; + + return state; +}; + +Object.defineProperties( State.prototype, prototypeAccessors$3$1 ); + +var defaultVertex$1 = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +var defaultFragment$1 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor = texture2D(uSampler, vTextureCoord);\n}\n"; + +/** + * Filter is a special type of WebGL shader that is applied to the screen. + * + * {@link http://pixijs.io/examples/#/filters/blur-filter.js Example} of the + * {@link PIXI.filters.BlurFilter BlurFilter}. + * + * ### Usage + * Filters can be applied to any DisplayObject or Container. + * PixiJS' `FilterSystem` renders the container into temporary Framebuffer, + * then filter renders it to the screen. + * Multiple filters can be added to the `filters` array property and stacked on each other. + * + * ``` + * const filter = new PIXI.Filter(myShaderVert, myShaderFrag, { myUniform: 0.5 }); + * const container = new PIXI.Container(); + * container.filters = [filter]; + * ``` + * + * ### Previous Version Differences + * + * In PixiJS **v3**, a filter was always applied to _whole screen_. + * + * In PixiJS **v4**, a filter can be applied _only part of the screen_. + * Developers had to create a set of uniforms to deal with coordinates. + * + * In PixiJS **v5** combines _both approaches_. + * Developers can use normal coordinates of v3 and then allow filter to use partial Framebuffers, + * bringing those extra uniforms into account. + * + * Also be aware that we have changed default vertex shader, please consult + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * ### Built-in Uniforms + * + * PixiJS viewport uses screen (CSS) coordinates, `(0, 0, renderer.screen.width, renderer.screen.height)`, + * and `projectionMatrix` uniform maps it to the gl viewport. + * + * **uSampler** + * + * The most important uniform is the input texture that container was rendered into. + * _Important note: as with all Framebuffers in PixiJS, both input and output are + * premultiplied by alpha._ + * + * By default, input normalized coordinates are passed to fragment shader with `vTextureCoord`. + * Use it to sample the input. + * + * ``` + * const fragment = ` + * varying vec2 vTextureCoord; + * uniform sampler2D uSampler; + * void main(void) + * { + * gl_FragColor = texture2D(uSampler, vTextureCoord); + * } + * `; + * + * const myFilter = new PIXI.Filter(null, fragment); + * ``` + * + * This filter is just one uniform less than {@link PIXI.filters.AlphaFilter AlphaFilter}. + * + * **outputFrame** + * + * The `outputFrame` holds the rectangle where filter is applied in screen (CSS) coordinates. + * It's the same as `renderer.screen` for a fullscreen filter. + * Only a part of `outputFrame.zw` size of temporary Framebuffer is used, + * `(0, 0, outputFrame.width, outputFrame.height)`, + * + * Filters uses this quad to normalized (0-1) space, its passed into `aVertexPosition` attribute. + * To calculate vertex position in screen space using normalized (0-1) space: + * + * ``` + * vec4 filterVertexPosition( void ) + * { + * vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy; + * return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0); + * } + * ``` + * + * **inputSize** + * + * Temporary framebuffer is different, it can be either the size of screen, either power-of-two. + * The `inputSize.xy` are size of temporary framebuffer that holds input. + * The `inputSize.zw` is inverted, it's a shortcut to evade division inside the shader. + * + * Set `inputSize.xy = outputFrame.zw` for a fullscreen filter. + * + * To calculate input normalized coordinate, you have to map it to filter normalized space. + * Multiply by `outputFrame.zw` to get input coordinate. + * Divide by `inputSize.xy` to get input normalized coordinate. + * + * ``` + * vec2 filterTextureCoord( void ) + * { + * return aVertexPosition * (outputFrame.zw * inputSize.zw); // same as /inputSize.xy + * } + * ``` + * **resolution** + * + * The `resolution` is the ratio of screen (CSS) pixels to real pixels. + * + * **inputPixel** + * + * `inputPixel.xy` is the size of framebuffer in real pixels, same as `inputSize.xy * resolution` + * `inputPixel.zw` is inverted `inputPixel.xy`. + * + * It's handy for filters that use neighbour pixels, like {@link PIXI.filters.FXAAFilter FXAAFilter}. + * + * **inputClamp** + * + * If you try to get info from outside of used part of Framebuffer - you'll get undefined behaviour. + * For displacements, coordinates has to be clamped. + * + * The `inputClamp.xy` is left-top pixel center, you may ignore it, because we use left-top part of Framebuffer + * `inputClamp.zw` is bottom-right pixel center. + * + * ``` + * vec4 color = texture2D(uSampler, clamp(modifigedTextureCoord, inputClamp.xy, inputClamp.zw)) + * ``` + * OR + * ``` + * vec4 color = texture2D(uSampler, min(modifigedTextureCoord, inputClamp.zw)) + * ``` + * + * ### Additional Information + * + * Complete documentation on Filter usage is located in the + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * Since PixiJS only had a handful of built-in filters, additional filters can be downloaded + * {@link https://github.com/pixijs/pixi-filters here} from the PixiJS Filters repository. + * + * @class + * @memberof PIXI + * @extends PIXI.Shader + */ +var Filter = /*@__PURE__*/(function (Shader) { + function Filter(vertexSrc, fragmentSrc, uniforms) + { + var program = Program.from(vertexSrc || Filter.defaultVertexSrc, + fragmentSrc || Filter.defaultFragmentSrc); + + Shader.call(this, program, uniforms); + + /** + * The padding of the filter. Some filters require extra space to breath such as a blur. + * Increasing this will add extra width and height to the bounds of the object that the + * filter is applied to. + * + * @member {number} + */ + this.padding = 0; + + /** + * The resolution of the filter. Setting this to be lower will lower the quality but + * increase the performance of the filter. + * + * @member {number} + */ + this.resolution = settings.FILTER_RESOLUTION; + + /** + * If enabled is true the filter is applied, if false it will not. + * + * @member {boolean} + */ + this.enabled = true; + + /** + * If enabled, PixiJS will fit the filter area into boundaries for better performance. + * Switch it off if it does not work for specific shader. + * + * @member {boolean} + */ + this.autoFit = true; + + /** + * Legacy filters use position and uvs from attributes + * @member {boolean} + * @readonly + */ + this.legacy = !!this.program.attributeData.aTextureCoord; + + /** + * The WebGL state the filter requires to render + * @member {PIXI.State} + */ + this.state = new State(); + } + + if ( Shader ) Filter.__proto__ = Shader; + Filter.prototype = Object.create( Shader && Shader.prototype ); + Filter.prototype.constructor = Filter; + + var prototypeAccessors = { blendMode: { configurable: true } }; + var staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + * @param {object} [currentState] - It's current state of filter. + * There are some useful properties in the currentState : + * target, filters, sourceFrame, destinationFrame, renderTarget, resolution + */ + Filter.prototype.apply = function apply (filterManager, input, output, clear, currentState) + { + // do as you please! + + filterManager.applyFilter(this, input, output, clear, currentState); + + // or just do a regular render.. + }; + + /** + * Sets the blendmode of the filter + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + */ + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + prototypeAccessors.blendMode.set = function (value) // eslint-disable-line require-jsdoc + { + this.state.blendMode = value; + }; + + /** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultVertexSrc.get = function () + { + return defaultVertex$1; + }; + + /** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultFragmentSrc.get = function () + { + return defaultFragment$1; + }; + + Object.defineProperties( Filter.prototype, prototypeAccessors ); + Object.defineProperties( Filter, staticAccessors ); + + return Filter; +}(Shader)); + +/** + * Used for caching shader IDs + * + * @static + * @type {object} + * @protected + */ +Filter.SOURCE_KEY_MAP = {}; + +var vertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 otherMatrix;\n\nvarying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\n}\n"; + +var fragment = "varying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform sampler2D mask;\nuniform float alpha;\nuniform float npmAlpha;\nuniform vec4 maskClamp;\n\nvoid main(void)\n{\n float clip = step(3.5,\n step(maskClamp.x, vMaskCoord.x) +\n step(maskClamp.y, vMaskCoord.y) +\n step(vMaskCoord.x, maskClamp.z) +\n step(vMaskCoord.y, maskClamp.w));\n\n vec4 original = texture2D(uSampler, vTextureCoord);\n vec4 masky = texture2D(mask, vMaskCoord);\n float alphaMul = 1.0 - npmAlpha * (1.0 - masky.a);\n\n original *= (alphaMul * masky.r * alpha * clip);\n\n gl_FragColor = original;\n}\n"; + +var tempMat = new Matrix(); + +/** + * Class controls uv mapping from Texture normal space to BaseTexture normal space. + * + * Takes `trim` and `rotate` into account. May contain clamp settings for Meshes and TilingSprite. + * + * Can be used in Texture `uvMatrix` field, or separately, you can use different clamp settings on the same texture. + * If you want to add support for texture region of certain feature or filter, that's what you're looking for. + * + * Takes track of Texture changes through `_lastTextureID` private field. + * Use `update()` method call to track it from outside. + * + * @see PIXI.Texture + * @see PIXI.Mesh + * @see PIXI.TilingSprite + * @class + * @memberof PIXI + */ +var TextureMatrix = function TextureMatrix(texture, clampMargin) +{ + this._texture = texture; + + /** + * Matrix operation that converts texture region coords to texture coords + * @member {PIXI.Matrix} + * @readonly + */ + this.mapCoord = new Matrix(); + + /** + * Clamp region for normalized coords, left-top pixel center in xy , bottom-right in zw. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampFrame = new Float32Array(4); + + /** + * Normalized clamp offset. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampOffset = new Float32Array(2); + + /** + * Tracks Texture frame changes + * @member {number} + * @protected + */ + this._updateID = -1; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to 1.5 if you texture has repeated right and bottom lines, that leads to smoother borders + * + * @default 0 + * @member {number} + */ + this.clampOffset = 0; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas + * + * @default 0.5 + * @member {number} + */ + this.clampMargin = (typeof clampMargin === 'undefined') ? 0.5 : clampMargin; + + /** + * If texture size is the same as baseTexture + * @member {boolean} + * @default false + * @readonly + */ + this.isSimple = false; +}; + +var prototypeAccessors$4$1 = { texture: { configurable: true } }; + +/** + * texture property + * @member {PIXI.Texture} + */ +prototypeAccessors$4$1.texture.get = function () +{ + return this._texture; +}; + +prototypeAccessors$4$1.texture.set = function (value) // eslint-disable-line require-jsdoc +{ + this._texture = value; + this._updateID = -1; +}; + +/** + * Multiplies uvs array to transform + * @param {Float32Array} uvs mesh uvs + * @param {Float32Array} [out=uvs] output + * @returns {Float32Array} output + */ +TextureMatrix.prototype.multiplyUvs = function multiplyUvs (uvs, out) +{ + if (out === undefined) + { + out = uvs; + } + + var mat = this.mapCoord; + + for (var i = 0; i < uvs.length; i += 2) + { + var x = uvs[i]; + var y = uvs[i + 1]; + + out[i] = (x * mat.a) + (y * mat.c) + mat.tx; + out[i + 1] = (x * mat.b) + (y * mat.d) + mat.ty; + } + + return out; +}; + +/** + * updates matrices if texture was changed + * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case + * @returns {boolean} whether or not it was updated + */ +TextureMatrix.prototype.update = function update (forceUpdate) +{ + var tex = this._texture; + + if (!tex || !tex.valid) + { + return false; + } + + if (!forceUpdate + && this._updateID === tex._updateID) + { + return false; + } + + this._updateID = tex._updateID; + + var uvs = tex._uvs; + + this.mapCoord.set(uvs.x1 - uvs.x0, uvs.y1 - uvs.y0, uvs.x3 - uvs.x0, uvs.y3 - uvs.y0, uvs.x0, uvs.y0); + + var orig = tex.orig; + var trim = tex.trim; + + if (trim) + { + tempMat.set(orig.width / trim.width, 0, 0, orig.height / trim.height, + -trim.x / trim.width, -trim.y / trim.height); + this.mapCoord.append(tempMat); + } + + var texBase = tex.baseTexture; + var frame = this.uClampFrame; + var margin = this.clampMargin / texBase.resolution; + var offset = this.clampOffset; + + frame[0] = (tex._frame.x + margin + offset) / texBase.width; + frame[1] = (tex._frame.y + margin + offset) / texBase.height; + frame[2] = (tex._frame.x + tex._frame.width - margin + offset) / texBase.width; + frame[3] = (tex._frame.y + tex._frame.height - margin + offset) / texBase.height; + this.uClampOffset[0] = offset / texBase.realWidth; + this.uClampOffset[1] = offset / texBase.realHeight; + + this.isSimple = tex._frame.width === texBase.width + && tex._frame.height === texBase.height + && tex.rotate === 0; + + return true; +}; + +Object.defineProperties( TextureMatrix.prototype, prototypeAccessors$4$1 ); + +/** + * This handles a Sprite acting as a mask, as opposed to a Graphic. + * + * WebGL only. + * + * @class + * @extends PIXI.Filter + * @memberof PIXI + */ +var SpriteMaskFilter = /*@__PURE__*/(function (Filter) { + function SpriteMaskFilter(sprite) + { + var maskMatrix = new Matrix(); + + Filter.call(this, vertex, fragment); + + sprite.renderable = false; + + /** + * Sprite mask + * @member {PIXI.Sprite} + */ + this.maskSprite = sprite; + + /** + * Mask matrix + * @member {PIXI.Matrix} + */ + this.maskMatrix = maskMatrix; + } + + if ( Filter ) SpriteMaskFilter.__proto__ = Filter; + SpriteMaskFilter.prototype = Object.create( Filter && Filter.prototype ); + SpriteMaskFilter.prototype.constructor = SpriteMaskFilter; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it. + */ + SpriteMaskFilter.prototype.apply = function apply (filterManager, input, output, clear) + { + var maskSprite = this.maskSprite; + var tex = this.maskSprite.texture; + + if (!tex.valid) + { + return; + } + if (!tex.transform) + { + // margin = 0.0, let it bleed a bit, shader code becomes easier + // assuming that atlas textures were made with 1-pixel padding + tex.transform = new TextureMatrix(tex, 0.0); + } + tex.transform.update(); + + this.uniforms.npmAlpha = tex.baseTexture.premultiplyAlpha ? 0.0 : 1.0; + this.uniforms.mask = tex; + // get _normalized sprite texture coords_ and convert them to _normalized atlas texture coords_ with `prepend` + this.uniforms.otherMatrix = filterManager.calculateSpriteMatrix(this.maskMatrix, maskSprite) + .prepend(tex.transform.mapCoord); + this.uniforms.alpha = maskSprite.worldAlpha; + this.uniforms.maskClamp = tex.transform.uClampFrame; + + filterManager.applyFilter(this, input, output, clear); + }; + + return SpriteMaskFilter; +}(Filter)); + +/** + * System plugin to the renderer to manage masks. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var MaskSystem = /*@__PURE__*/(function (System) { + function MaskSystem(renderer) + { + System.call(this, renderer); + + // TODO - we don't need both! + /** + * `true` if current pushed masked is scissor + * @member {boolean} + * @readonly + */ + this.scissor = false; + + /** + * Mask data + * @member {PIXI.Graphics} + * @readonly + */ + this.scissorData = null; + + /** + * Target to mask + * @member {PIXI.DisplayObject} + * @readonly + */ + this.scissorRenderTarget = null; + + /** + * Enable scissor + * @member {boolean} + * @readonly + */ + this.enableScissor = false; + + /** + * Pool of used sprite mask filters + * @member {PIXI.SpriteMaskFilter[]} + * @readonly + */ + this.alphaMaskPool = []; + + /** + * Current index of alpha mask pool + * @member {number} + * @default 0 + * @readonly + */ + this.alphaMaskIndex = 0; + } + + if ( System ) MaskSystem.__proto__ = System; + MaskSystem.prototype = Object.create( System && System.prototype ); + MaskSystem.prototype.constructor = MaskSystem; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.push = function push (target, maskData) + { + // TODO the root check means scissor rect will not + // be used on render textures more info here: + // https://github.com/pixijs/pixi.js/pull/3545 + + if (maskData.isSprite) + { + this.pushSpriteMask(target, maskData); + } + else if (this.enableScissor + && !this.scissor + && this.renderer._activeRenderTarget.root + && !this.renderer.stencil.stencilMaskStack.length + && maskData.isFastRect()) + { + var matrix = maskData.worldTransform; + + var rot = Math.atan2(matrix.b, matrix.a); + + // use the nearest degree! + rot = Math.round(rot * (180 / Math.PI)); + + if (rot % 90) + { + this.pushStencilMask(maskData); + } + else + { + this.pushScissorMask(target, maskData); + } + } + else + { + this.pushStencilMask(maskData); + } + }; + + /** + * Removes the last mask from the mask stack and doesn't return it. + * + * @param {PIXI.DisplayObject} target - Display Object to pop the mask from + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pop = function pop (target, maskData) + { + if (maskData.isSprite) + { + this.popSpriteMask(target, maskData); + } + else if (this.enableScissor && !this.renderer.stencil.stencilMaskStack.length) + { + this.popScissorMask(target, maskData); + } + else + { + this.popStencilMask(target, maskData); + } + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.RenderTexture} target - Display Object to push the sprite mask to + * @param {PIXI.Sprite} maskData - Sprite to be used as the mask + */ + MaskSystem.prototype.pushSpriteMask = function pushSpriteMask (target, maskData) + { + var alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex]; + + if (!alphaMaskFilter) + { + alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex] = [new SpriteMaskFilter(maskData)]; + } + + alphaMaskFilter[0].resolution = this.renderer.resolution; + alphaMaskFilter[0].maskSprite = maskData; + + var stashFilterArea = target.filterArea; + + target.filterArea = maskData.getBounds(true); + this.renderer.filter.push(target, alphaMaskFilter); + target.filterArea = stashFilterArea; + + this.alphaMaskIndex++; + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popSpriteMask = function popSpriteMask () + { + this.renderer.filter.pop(); + this.alphaMaskIndex--; + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushStencilMask = function pushStencilMask (maskData) + { + this.renderer.batch.flush(); + this.renderer.stencil.pushStencil(maskData); + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popStencilMask = function popStencilMask () + { + // this.renderer.currentRenderer.stop(); + this.renderer.stencil.popStencil(); + }; + + /** + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushScissorMask = function pushScissorMask (target, maskData) + { + maskData.renderable = true; + + var renderTarget = this.renderer._activeRenderTarget; + + var bounds = maskData.getBounds(); + + bounds.fit(renderTarget.size); + maskData.renderable = false; + + this.renderer.gl.enable(this.renderer.gl.SCISSOR_TEST); + + var resolution = this.renderer.resolution; + + this.renderer.gl.scissor( + bounds.x * resolution, + (renderTarget.root ? renderTarget.size.height - bounds.y - bounds.height : bounds.y) * resolution, + bounds.width * resolution, + bounds.height * resolution + ); + + this.scissorRenderTarget = renderTarget; + this.scissorData = maskData; + this.scissor = true; + }; + + /** + * Pop scissor mask + * + */ + MaskSystem.prototype.popScissorMask = function popScissorMask () + { + this.scissorRenderTarget = null; + this.scissorData = null; + this.scissor = false; + + // must be scissor! + var ref = this.renderer; + var gl = ref.gl; + + gl.disable(gl.SCISSOR_TEST); + }; + + return MaskSystem; +}(System)); + +/** + * System plugin to the renderer to manage stencils (used for masks). + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StencilSystem = /*@__PURE__*/(function (System) { + function StencilSystem(renderer) + { + System.call(this, renderer); + + /** + * The mask stack + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + } + + if ( System ) StencilSystem.__proto__ = System; + StencilSystem.prototype = Object.create( System && System.prototype ); + StencilSystem.prototype.constructor = StencilSystem; + + /** + * Changes the mask stack that is used by this System. + * + * @param {PIXI.Graphics[]} stencilMaskStack - The mask stack + */ + StencilSystem.prototype.setMaskStack = function setMaskStack (stencilMaskStack) + { + var gl = this.renderer.gl; + var curStackLen = this.stencilMaskStack.length; + + this.stencilMaskStack = stencilMaskStack; + if (stencilMaskStack.length !== curStackLen) + { + if (stencilMaskStack.length === 0) + { + gl.disable(gl.STENCIL_TEST); + } + else + { + gl.enable(gl.STENCIL_TEST); + this._useCurrent(); + } + } + }; + + /** + * Applies the Mask and adds it to the current stencil stack. @alvin + * + * @param {PIXI.Graphics} graphics - The mask + */ + StencilSystem.prototype.pushStencil = function pushStencil (graphics) + { + var gl = this.renderer.gl; + var prevMaskCount = this.stencilMaskStack.length; + + if (prevMaskCount === 0) + { + // force use stencil texture in current framebuffer + this.renderer.framebuffer.forceStencil(); + gl.enable(gl.STENCIL_TEST); + } + + this.stencilMaskStack.push(graphics); + + // Increment the reference stencil value where the new mask overlaps with the old ones. + gl.colorMask(false, false, false, false); + gl.stencilFunc(gl.EQUAL, prevMaskCount, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.INCR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + }; + + /** + * Removes the last mask from the stencil stack. @alvin + */ + StencilSystem.prototype.popStencil = function popStencil () + { + var gl = this.renderer.gl; + var graphics = this.stencilMaskStack.pop(); + + if (this.stencilMaskStack.length === 0) + { + // the stack is empty! + gl.disable(gl.STENCIL_TEST); + gl.clear(gl.STENCIL_BUFFER_BIT); + gl.clearStencil(0); + } + else + { + // Decrement the reference stencil value where the popped mask overlaps with the other ones + gl.colorMask(false, false, false, false); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.DECR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + } + }; + + /** + * Setup renderer to use the current stencil data. + * @private + */ + StencilSystem.prototype._useCurrent = function _useCurrent () + { + var gl = this.renderer.gl; + + gl.colorMask(true, true, true, true); + gl.stencilFunc(gl.EQUAL, this.stencilMaskStack.length, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.KEEP); + }; + + /** + * Fill 1s equal to the number of acitve stencil masks. + * @private + * @return {number} The bitwise mask. + */ + StencilSystem.prototype._getBitwiseMask = function _getBitwiseMask () + { + return (1 << this.stencilMaskStack.length) - 1; + }; + + /** + * Destroys the mask stack. + * + */ + StencilSystem.prototype.destroy = function destroy () + { + System.prototype.destroy.call(this, this); + + this.stencilMaskStack = null; + }; + + return StencilSystem; +}(System)); + +/** + * System plugin to the renderer to manage the projection matrix. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var ProjectionSystem = /*@__PURE__*/(function (System) { + function ProjectionSystem(renderer) + { + System.call(this, renderer); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = null; + + /** + * Default destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.defaultFrame = null; + + /** + * Project matrix + * @member {PIXI.Matrix} + * @readonly + */ + this.projectionMatrix = new Matrix(); + + /** + * A transform that will be appended to the projection matrix + * if null, nothing will be applied + * @member {PIXI.Matrix} + */ + this.transform = null; + } + + if ( System ) ProjectionSystem.__proto__ = System; + ProjectionSystem.prototype = Object.create( System && System.prototype ); + ProjectionSystem.prototype.constructor = ProjectionSystem; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.update = function update (destinationFrame, sourceFrame, resolution, root) + { + this.destinationFrame = destinationFrame || this.destinationFrame || this.defaultFrame; + this.sourceFrame = sourceFrame || this.sourceFrame || destinationFrame; + + this.calculateProjection(this.destinationFrame, this.sourceFrame, resolution, root); + + if (this.transform) + { + this.projectionMatrix.append(this.transform); + } + + var renderer = this.renderer; + + renderer.globalUniforms.uniforms.projectionMatrix = this.projectionMatrix; + renderer.globalUniforms.update(); + + // this will work for now + // but would be sweet to stick and even on the global uniforms.. + if (renderer.shader.shader) + { + renderer.shader.syncUniformGroup(renderer.shader.shader.uniforms.globals); + } + }; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.calculateProjection = function calculateProjection (destinationFrame, sourceFrame, resolution, root) + { + var pm = this.projectionMatrix; + + // I don't think we will need this line.. + // pm.identity(); + + if (!root) + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = -1 - (sourceFrame.y * pm.d); + } + else + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (-1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = 1 - (sourceFrame.y * pm.d); + } + }; + + /** + * Sets the transform of the active render target to the given matrix + * + * @param {PIXI.Matrix} matrix - The transformation matrix + */ + ProjectionSystem.prototype.setTransform = function setTransform ()// matrix) + { + // this._activeRenderTarget.transform = matrix; + }; + + return ProjectionSystem; +}(System)); + +var tempRect = new Rectangle(); + +/** + * System plugin to the renderer to manage render textures. + * + * Should be added after FramebufferSystem + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var RenderTextureSystem = /*@__PURE__*/(function (System) { + function RenderTextureSystem(renderer) + { + System.call(this, renderer); + + /** + * The clear background color as rgba + * @member {number[]} + */ + this.clearColor = renderer._backgroundColorRgba; + + // TODO move this property somewhere else! + /** + * List of masks for the StencilSystem + * @member {PIXI.Graphics[]} + * @readonly + */ + this.defaultMaskStack = []; + + // empty render texture? + /** + * Render texture + * @member {PIXI.RenderTexture} + * @readonly + */ + this.current = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = new Rectangle(); + } + + if ( System ) RenderTextureSystem.__proto__ = System; + RenderTextureSystem.prototype = Object.create( System && System.prototype ); + RenderTextureSystem.prototype.constructor = RenderTextureSystem; + + /** + * Bind the current render texture + * @param {PIXI.RenderTexture} [renderTexture] - RenderTexture to bind, by default its `null`, the screen + * @param {PIXI.Rectangle} [sourceFrame] - part of screen that is mapped to the renderTexture + * @param {PIXI.Rectangle} [destinationFrame] - part of renderTexture, by default it has the same size as sourceFrame + */ + RenderTextureSystem.prototype.bind = function bind (renderTexture, sourceFrame, destinationFrame) + { + if ( renderTexture === void 0 ) renderTexture = null; + + this.current = renderTexture; + + var renderer = this.renderer; + + var resolution; + + if (renderTexture) + { + var baseTexture = renderTexture.baseTexture; + + resolution = baseTexture.resolution; + + if (!destinationFrame) + { + tempRect.width = baseTexture.realWidth; + tempRect.height = baseTexture.realHeight; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + this.renderer.framebuffer.bind(baseTexture.framebuffer, destinationFrame); + + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, false); + this.renderer.stencil.setMaskStack(baseTexture.stencilMaskStack); + } + else + { + resolution = this.renderer.resolution; + + // TODO these validation checks happen deeper down.. + // thing they can be avoided.. + if (!destinationFrame) + { + tempRect.width = renderer.width; + tempRect.height = renderer.height; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + renderer.framebuffer.bind(null, destinationFrame); + + // TODO store this.. + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, true); + this.renderer.stencil.setMaskStack(this.defaultMaskStack); + } + + this.sourceFrame.copyFrom(sourceFrame); + + this.destinationFrame.x = destinationFrame.x / resolution; + this.destinationFrame.y = destinationFrame.y / resolution; + + this.destinationFrame.width = destinationFrame.width / resolution; + this.destinationFrame.height = destinationFrame.height / resolution; + + if (sourceFrame === destinationFrame) + { + this.sourceFrame.copyFrom(this.destinationFrame); + } + }; + + /** + * Erases the render texture and fills the drawing area with a colour + * + * @param {number[]} [clearColor] - The color as rgba, default to use the renderer backgroundColor + * @return {PIXI.Renderer} Returns itself. + */ + RenderTextureSystem.prototype.clear = function clear (clearColor) + { + if (this.current) + { + clearColor = clearColor || this.current.baseTexture.clearColor; + } + else + { + clearColor = clearColor || this.clearColor; + } + + this.renderer.framebuffer.clear(clearColor[0], clearColor[1], clearColor[2], clearColor[3]); + }; + + RenderTextureSystem.prototype.resize = function resize ()// screenWidth, screenHeight) + { + // resize the root only! + this.bind(null); + }; + + /** + * Resets renderTexture state + */ + RenderTextureSystem.prototype.reset = function reset () + { + this.bind(null); + }; + + return RenderTextureSystem; +}(System)); + +/** + * Helper class to create a WebGL Program + * + * @class + * @memberof PIXI + */ +var GLProgram = function GLProgram(program, uniformData) +{ + /** + * The shader program + * + * @member {WebGLProgram} + */ + this.program = program; + + /** + * holds the uniform data which contains uniform locations + * and current uniform values used for caching and preventing unneeded GPU commands + * @member {Object} + */ + this.uniformData = uniformData; + + /** + * uniformGroups holds the various upload functions for the shader. Each uniform group + * and program have a unique upload function generated. + * @member {Object} + */ + this.uniformGroups = {}; +}; + +/** + * Destroys this program + */ +GLProgram.prototype.destroy = function destroy () +{ + this.uniformData = null; + this.uniformGroups = null; + this.program = null; +}; + +var UID$4 = 0; + +/** + * System plugin to the renderer to manage shaders. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var ShaderSystem = /*@__PURE__*/(function (System) { + function ShaderSystem(renderer) + { + System.call(this, renderer); + + // Validation check that this environment support `new Function` + this.systemCheck(); + + /** + * The current WebGL rendering context + * + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.shader = null; + this.program = null; + + /** + * Cache to holds the generated functions. Stored against UniformObjects unique signature + * @type {Object} + * @private + */ + this.cache = {}; + + this.id = UID$4++; + } + + if ( System ) ShaderSystem.__proto__ = System; + ShaderSystem.prototype = Object.create( System && System.prototype ); + ShaderSystem.prototype.constructor = ShaderSystem; + + /** + * Overrideable function by `@pixi/unsafe-eval` to silence + * throwing an error if platform doesn't support unsafe-evals. + * + * @private + */ + ShaderSystem.prototype.systemCheck = function systemCheck () + { + if (!unsafeEvalSupported()) + { + throw new Error('Current environment does not allow unsafe-eval, ' + + 'please use @pixi/unsafe-eval module to enable support.'); + } + }; + + ShaderSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.reset(); + }; + + /** + * Changes the current shader to the one given in parameter + * + * @param {PIXI.Shader} shader - the new shader + * @param {boolean} dontSync - false if the shader should automatically sync its uniforms. + * @returns {PIXI.GLProgram} the glProgram that belongs to the shader. + */ + ShaderSystem.prototype.bind = function bind (shader, dontSync) + { + shader.uniforms.globals = this.renderer.globalUniforms; + + var program = shader.program; + var glProgram = program.glPrograms[this.renderer.CONTEXT_UID] || this.generateShader(shader); + + this.shader = shader; + + // TODO - some current Pixi plugins bypass this.. so it not safe to use yet.. + if (this.program !== program) + { + this.program = program; + this.gl.useProgram(glProgram.program); + } + + if (!dontSync) + { + this.syncUniformGroup(shader.uniformGroup); + } + + return glProgram; + }; + + /** + * Uploads the uniforms values to the currently bound shader. + * + * @param {object} uniforms - the uniforms values that be applied to the current shader + */ + ShaderSystem.prototype.setUniforms = function setUniforms (uniforms) + { + var shader = this.shader.program; + var glProgram = shader.glPrograms[this.renderer.CONTEXT_UID]; + + shader.syncUniforms(glProgram.uniformData, uniforms, this.renderer); + }; + + ShaderSystem.prototype.syncUniformGroup = function syncUniformGroup (group) + { + var glProgram = this.getglProgram(); + + if (!group.static || group.dirtyId !== glProgram.uniformGroups[group.id]) + { + glProgram.uniformGroups[group.id] = group.dirtyId; + + this.syncUniforms(group, glProgram); + } + }; + + /** + * Overrideable by the @pixi/unsafe-eval package to use static + * syncUnforms instead. + * + * @private + */ + ShaderSystem.prototype.syncUniforms = function syncUniforms (group, glProgram) + { + var syncFunc = group.syncUniforms[this.shader.program.id] || this.createSyncGroups(group); + + syncFunc(glProgram.uniformData, group.uniforms, this.renderer); + }; + + ShaderSystem.prototype.createSyncGroups = function createSyncGroups (group) + { + var id = this.getSignature(group, this.shader.program.uniformData); + + if (!this.cache[id]) + { + this.cache[id] = generateUniformsSync(group, this.shader.program.uniformData); + } + + group.syncUniforms[this.shader.program.id] = this.cache[id]; + + return group.syncUniforms[this.shader.program.id]; + }; + + /** + * Takes a uniform group and data and generates a unique signature for them. + * + * @param {PIXI.UniformGroup} group the uniform group to get signature of + * @param {Object} uniformData uniform information generated by the shader + * @returns {String} Unique signature of the uniform group + * @private + */ + ShaderSystem.prototype.getSignature = function getSignature (group, uniformData) + { + var uniforms = group.uniforms; + + var strings = []; + + for (var i in uniforms) + { + strings.push(i); + + if (uniformData[i]) + { + strings.push(uniformData[i].type); + } + } + + return strings.join('-'); + }; + + /** + * Returns the underlying GLShade rof the currently bound shader. + * This can be handy for when you to have a little more control over the setting of your uniforms. + * + * @return {PIXI.GLProgram} the glProgram for the currently bound Shader for this context + */ + ShaderSystem.prototype.getglProgram = function getglProgram () + { + if (this.shader) + { + return this.shader.program.glPrograms[this.renderer.CONTEXT_UID]; + } + + return null; + }; + + /** + * Generates a glProgram version of the Shader provided. + * + * @private + * @param {PIXI.Shader} shader the shader that the glProgram will be based on. + * @return {PIXI.GLProgram} A shiny new glProgram! + */ + ShaderSystem.prototype.generateShader = function generateShader (shader) + { + var gl = this.gl; + + var program = shader.program; + + var attribMap = {}; + + for (var i in program.attributeData) + { + attribMap[i] = program.attributeData[i].location; + } + + var shaderProgram = compileProgram(gl, program.vertexSrc, program.fragmentSrc, attribMap); + var uniformData = {}; + + for (var i$1 in program.uniformData) + { + var data = program.uniformData[i$1]; + + uniformData[i$1] = { + location: gl.getUniformLocation(shaderProgram, i$1), + value: defaultValue(data.type, data.size), + }; + } + + var glProgram = new GLProgram(shaderProgram, uniformData); + + program.glPrograms[this.renderer.CONTEXT_UID] = glProgram; + + return glProgram; + }; + + /** + * Resets ShaderSystem state, does not affect WebGL state + */ + ShaderSystem.prototype.reset = function reset () + { + this.program = null; + this.shader = null; + }; + + /** + * Destroys this System and removes all its textures + */ + ShaderSystem.prototype.destroy = function destroy () + { + // TODO implement destroy method for ShaderSystem + this.destroyed = true; + }; + + return ShaderSystem; +}(System)); + +/** + * Maps gl blend combinations to WebGL. + * + * @memberof PIXI + * @function mapWebGLBlendModesToPixi + * @private + * @param {WebGLRenderingContext} gl - The rendering context. + * @param {number[][]} [array=[]] - The array to output into. + * @return {number[][]} Mapped modes. + */ +function mapWebGLBlendModesToPixi(gl, array) +{ + if ( array === void 0 ) array = []; + + // TODO - premultiply alpha would be different. + // add a boolean for that! + array[BLEND_MODES.NORMAL] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD] = [gl.ONE, gl.ONE]; + array[BLEND_MODES.MULTIPLY] = [gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SCREEN] = [gl.ONE, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.OVERLAY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DARKEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LIGHTEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_DODGE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_BURN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HARD_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SOFT_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DIFFERENCE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.EXCLUSION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HUE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SATURATION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LUMINOSITY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.NONE] = [0, 0]; + + // not-premultiplied blend modes + array[BLEND_MODES.NORMAL_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD_NPM] = [gl.SRC_ALPHA, gl.ONE, gl.ONE, gl.ONE]; + array[BLEND_MODES.SCREEN_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + + // composite operations + array[BLEND_MODES.SRC_IN] = [gl.DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_OUT] = [gl.ONE_MINUS_DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_ATOP] = [gl.DST_ALPHA, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_OVER] = [gl.ONE_MINUS_DST_ALPHA, gl.ONE]; + array[BLEND_MODES.DST_IN] = [gl.ZERO, gl.SRC_ALPHA]; + array[BLEND_MODES.DST_OUT] = [gl.ZERO, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_ATOP] = [gl.ONE_MINUS_DST_ALPHA, gl.SRC_ALPHA]; + + // SUBTRACT from flash + array[BLEND_MODES.SUBTRACT] = [gl.ONE, gl.ONE, gl.ONE, gl.ONE, gl.FUNC_REVERSE_SUBTRACT, gl.FUNC_ADD]; + + return array; +} + +var BLEND$1 = 0; +var OFFSET$1 = 1; +var CULLING$1 = 2; +var DEPTH_TEST$1 = 3; +var WINDING$1 = 4; + +/** + * System plugin to the renderer to manage WebGL state machines. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StateSystem = /*@__PURE__*/(function (System) { + function StateSystem(renderer) + { + System.call(this, renderer); + + /** + * GL context + * @member {WebGLRenderingContext} + * @readonly + */ + this.gl = null; + + /** + * State ID + * @member {number} + * @readonly + */ + this.stateId = 0; + + /** + * Polygon offset + * @member {number} + * @readonly + */ + this.polygonOffset = 0; + + /** + * Blend mode + * @member {number} + * @default PIXI.BLEND_MODES.NONE + * @readonly + */ + this.blendMode = BLEND_MODES.NONE; + + /** + * Whether current blend equation is different + * @member {boolean} + * @protected + */ + this._blendEq = false; + + /** + * Collection of calls + * @member {function[]} + * @readonly + */ + this.map = []; + + // map functions for when we set state.. + this.map[BLEND$1] = this.setBlend; + this.map[OFFSET$1] = this.setOffset; + this.map[CULLING$1] = this.setCullFace; + this.map[DEPTH_TEST$1] = this.setDepthTest; + this.map[WINDING$1] = this.setFrontFace; + + /** + * Collection of check calls + * @member {function[]} + * @readonly + */ + this.checks = []; + + /** + * Default WebGL State + * @member {PIXI.State} + * @readonly + */ + this.defaultState = new State(); + this.defaultState.blend = true; + this.defaultState.depth = true; + } + + if ( System ) StateSystem.__proto__ = System; + StateSystem.prototype = Object.create( System && System.prototype ); + StateSystem.prototype.constructor = StateSystem; + + StateSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + + this.blendModes = mapWebGLBlendModesToPixi(gl); + + this.set(this.defaultState); + + this.reset(); + }; + + /** + * Sets the current state + * + * @param {*} state - The state to set. + */ + StateSystem.prototype.set = function set (state) + { + state = state || this.defaultState; + + // TODO maybe to an object check? ( this.state === state )? + if (this.stateId !== state.data) + { + var diff = this.stateId ^ state.data; + var i = 0; + + // order from least to most common + while (diff) + { + if (diff & 1) + { + // state change! + this.map[i].call(this, !!(state.data & (1 << i))); + } + + diff = diff >> 1; + i++; + } + + this.stateId = state.data; + } + + // based on the above settings we check for specific modes.. + // for example if blend is active we check and set the blend modes + // or of polygon offset is active we check the poly depth. + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + }; + + /** + * Sets the state, when previous state is unknown + * + * @param {*} state - The state to set + */ + StateSystem.prototype.forceState = function forceState (state) + { + state = state || this.defaultState; + for (var i = 0; i < this.map.length; i++) + { + this.map[i].call(this, !!(state.data & (1 << i))); + } + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + + this.stateId = state.data; + }; + + /** + * Enables or disabled blending. + * + * @param {boolean} value - Turn on or off webgl blending. + */ + StateSystem.prototype.setBlend = function setBlend (value) + { + this.updateCheck(StateSystem.checkBlendMode, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.BLEND); + }; + + /** + * Enables or disable polygon offset fill + * + * @param {boolean} value - Turn on or off webgl polygon offset testing. + */ + StateSystem.prototype.setOffset = function setOffset (value) + { + this.updateCheck(StateSystem.checkPolygonOffset, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.POLYGON_OFFSET_FILL); + }; + + /** + * Sets whether to enable or disable depth test. + * + * @param {boolean} value - Turn on or off webgl depth testing. + */ + StateSystem.prototype.setDepthTest = function setDepthTest (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.DEPTH_TEST); + }; + + /** + * Sets whether to enable or disable cull face. + * + * @param {boolean} value - Turn on or off webgl cull face. + */ + StateSystem.prototype.setCullFace = function setCullFace (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.CULL_FACE); + }; + + /** + * Sets the gl front face. + * + * @param {boolean} value - true is clockwise and false is counter-clockwise + */ + StateSystem.prototype.setFrontFace = function setFrontFace (value) + { + this.gl.frontFace(this.gl[value ? 'CW' : 'CCW']); + }; + + /** + * Sets the blend mode. + * + * @param {number} value - The blend mode to set to. + */ + StateSystem.prototype.setBlendMode = function setBlendMode (value) + { + if (value === this.blendMode) + { + return; + } + + this.blendMode = value; + + var mode = this.blendModes[value]; + var gl = this.gl; + + if (mode.length === 2) + { + gl.blendFunc(mode[0], mode[1]); + } + else + { + gl.blendFuncSeparate(mode[0], mode[1], mode[2], mode[3]); + } + if (mode.length === 6) + { + this._blendEq = true; + gl.blendEquationSeparate(mode[4], mode[5]); + } + else if (this._blendEq) + { + this._blendEq = false; + gl.blendEquationSeparate(gl.FUNC_ADD, gl.FUNC_ADD); + } + }; + + /** + * Sets the polygon offset. + * + * @param {number} value - the polygon offset + * @param {number} scale - the polygon offset scale + */ + StateSystem.prototype.setPolygonOffset = function setPolygonOffset (value, scale) + { + this.gl.polygonOffset(value, scale); + }; + + // used + /** + * Resets all the logic and disables the vaos + */ + StateSystem.prototype.reset = function reset () + { + this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false); + + this.forceState(0); + + this._blendEq = true; + this.blendMode = -1; + this.setBlendMode(0); + }; + + /** + * checks to see which updates should be checked based on which settings have been activated. + * For example, if blend is enabled then we should check the blend modes each time the state is changed + * or if polygon fill is activated then we need to check if the polygon offset changes. + * The idea is that we only check what we have too. + * + * @param {Function} func the checking function to add or remove + * @param {boolean} value should the check function be added or removed. + */ + StateSystem.prototype.updateCheck = function updateCheck (func, value) + { + var index = this.checks.indexOf(func); + + if (value && index === -1) + { + this.checks.push(func); + } + else if (!value && index !== -1) + { + this.checks.splice(index, 1); + } + }; + + /** + * A private little wrapper function that we call to check the blend mode. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkBlendMode = function checkBlendMode (system, state) + { + system.setBlendMode(state.blendMode); + }; + + /** + * A private little wrapper function that we call to check the polygon offset. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkPolygonOffset = function checkPolygonOffset (system, state) + { + system.setPolygonOffset(state.polygonOffset, 0); + }; + + return StateSystem; +}(System)); + +/** + * System plugin to the renderer to manage texture garbage collection on the GPU, + * ensuring that it does not get clogged up with textures that are no longer being used. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var TextureGCSystem = /*@__PURE__*/(function (System) { + function TextureGCSystem(renderer) + { + System.call(this, renderer); + + /** + * Count + * @member {number} + * @readonly + */ + this.count = 0; + + /** + * Check count + * @member {number} + * @readonly + */ + this.checkCount = 0; + + /** + * Maximum idle time, in seconds + * @member {number} + * @see PIXI.settings.GC_MAX_IDLE + */ + this.maxIdle = settings.GC_MAX_IDLE; + + /** + * Maximum number of item to check + * @member {number} + * @see PIXI.settings.GC_MAX_CHECK_COUNT + */ + this.checkCountMax = settings.GC_MAX_CHECK_COUNT; + + /** + * Current garabage collection mode + * @member {PIXI.GC_MODES} + * @see PIXI.settings.GC_MODE + */ + this.mode = settings.GC_MODE; + } + + if ( System ) TextureGCSystem.__proto__ = System; + TextureGCSystem.prototype = Object.create( System && System.prototype ); + TextureGCSystem.prototype.constructor = TextureGCSystem; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.postrender = function postrender () + { + this.count++; + + if (this.mode === GC_MODES.MANUAL) + { + return; + } + + this.checkCount++; + + if (this.checkCount > this.checkCountMax) + { + this.checkCount = 0; + + this.run(); + } + }; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.run = function run () + { + var tm = this.renderer.texture; + var managedTextures = tm.managedTextures; + var wasRemoved = false; + + for (var i = 0; i < managedTextures.length; i++) + { + var texture = managedTextures[i]; + + // only supports non generated textures at the moment! + if (!texture.framebuffer && this.count - texture.touched > this.maxIdle) + { + tm.destroyTexture(texture, true); + managedTextures[i] = null; + wasRemoved = true; + } + } + + if (wasRemoved) + { + var j = 0; + + for (var i$1 = 0; i$1 < managedTextures.length; i$1++) + { + if (managedTextures[i$1] !== null) + { + managedTextures[j++] = managedTextures[i$1]; + } + } + + managedTextures.length = j; + } + }; + + /** + * Removes all the textures within the specified displayObject and its children from the GPU + * + * @param {PIXI.DisplayObject} displayObject - the displayObject to remove the textures from. + */ + TextureGCSystem.prototype.unload = function unload (displayObject) + { + var tm = this.renderer.textureSystem; + + // only destroy non generated textures + if (displayObject._texture && displayObject._texture._glRenderTargets) + { + tm.destroyTexture(displayObject._texture); + } + + for (var i = displayObject.children.length - 1; i >= 0; i--) + { + this.unload(displayObject.children[i]); + } + }; + + return TextureGCSystem; +}(System)); + +/** + * Internal texture for WebGL context + * @class + * @memberof PIXI + */ +var GLTexture = function GLTexture(texture) +{ + /** + * The WebGL texture + * @member {WebGLTexture} + */ + this.texture = texture; + + /** + * Width of texture that was used in texImage2D + * @member {number} + */ + this.width = -1; + + /** + * Height of texture that was used in texImage2D + * @member {number} + */ + this.height = -1; + + /** + * Texture contents dirty flag + * @member {number} + */ + this.dirtyId = -1; + + /** + * Texture style dirty flag + * @member {number} + */ + this.dirtyStyleId = -1; + + /** + * Whether mip levels has to be generated + * @member {boolean} + */ + this.mipmap = false; + + /** + * WrapMode copied from baseTexture + * @member {number} + */ + this.wrapMode = 33071; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.type = 6408; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.internalFormat = 5121; +}; + +/** + * System plugin to the renderer to manage textures. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var TextureSystem = /*@__PURE__*/(function (System) { + function TextureSystem(renderer) + { + System.call(this, renderer); + + // TODO set to max textures... + /** + * Bound textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.boundTextures = []; + /** + * Current location + * @member {number} + * @readonly + */ + this.currentLocation = -1; + + /** + * List of managed textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.managedTextures = []; + + /** + * Did someone temper with textures state? We'll overwrite them when we need to unbind something. + * @member {boolean} + * @private + */ + this._unknownBoundTextures = false; + + /** + * BaseTexture value that shows that we don't know what is bound + * @member {PIXI.BaseTexture} + * @readonly + */ + this.unknownTexture = new BaseTexture(); + } + + if ( System ) TextureSystem.__proto__ = System; + TextureSystem.prototype = Object.create( System && System.prototype ); + TextureSystem.prototype.constructor = TextureSystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + TextureSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + this.webGLVersion = this.renderer.context.webGLVersion; + + var maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS); + + this.boundTextures.length = maxTextures; + + for (var i = 0; i < maxTextures; i++) + { + this.boundTextures[i] = null; + } + + // TODO move this.. to a nice make empty textures class.. + this.emptyTextures = {}; + + var emptyTexture2D = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_2D, emptyTexture2D.texture); + gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4)); + + this.emptyTextures[gl.TEXTURE_2D] = emptyTexture2D; + this.emptyTextures[gl.TEXTURE_CUBE_MAP] = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_CUBE_MAP, this.emptyTextures[gl.TEXTURE_CUBE_MAP].texture); + + for (var i$1 = 0; i$1 < 6; i$1++) + { + gl.texImage2D(gl.TEXTURE_CUBE_MAP_POSITIVE_X + i$1, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, null); + } + + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + + for (var i$2 = 0; i$2 < this.boundTextures.length; i$2++) + { + this.bind(null, i$2); + } + }; + + /** + * Bind a texture to a specific location + * + * If you want to unbind something, please use `unbind(texture)` instead of `bind(null, textureLocation)` + * + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + * @param {number} [location=0] - Location to bind at + */ + TextureSystem.prototype.bind = function bind (texture, location) + { + if ( location === void 0 ) location = 0; + + var ref = this; + var gl = ref.gl; + + if (texture) + { + texture = texture.baseTexture || texture; + + if (texture.valid) + { + texture.touched = this.renderer.textureGC.count; + + var glTexture = texture._glTextures[this.CONTEXT_UID] || this.initTexture(texture); + + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + if (this.boundTextures[location] !== texture) + { + gl.bindTexture(texture.target, glTexture.texture); + } + + if (glTexture.dirtyId !== texture.dirtyId) + { + this.updateTexture(texture); + } + + this.boundTextures[location] = texture; + } + } + else + { + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[gl.TEXTURE_2D].texture); + this.boundTextures[location] = null; + } + }; + + /** + * Resets texture location and bound textures + * + * Actual `bind(null, i)` calls will be performed at next `unbind()` call + */ + TextureSystem.prototype.reset = function reset () + { + this._unknownBoundTextures = true; + this.currentLocation = -1; + + for (var i = 0; i < this.boundTextures.length; i++) + { + this.boundTextures[i] = this.unknownTexture; + } + }; + + /** + * Unbind a texture + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + */ + TextureSystem.prototype.unbind = function unbind (texture) + { + var ref = this; + var gl = ref.gl; + var boundTextures = ref.boundTextures; + + if (this._unknownBoundTextures) + { + this._unknownBoundTextures = false; + // someone changed webGL state, + // we have to be sure that our texture does not appear in multi-texture renderer samplers + for (var i = 0; i < boundTextures.length; i++) + { + if (boundTextures[i] === this.unknownTexture) + { + this.bind(null, i); + } + } + } + + for (var i$1 = 0; i$1 < boundTextures.length; i$1++) + { + if (boundTextures[i$1] === texture) + { + if (this.currentLocation !== i$1) + { + gl.activeTexture(gl.TEXTURE0 + i$1); + this.currentLocation = i$1; + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[texture.target].texture); + boundTextures[i$1] = null; + } + } + }; + + /** + * Initialize a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.initTexture = function initTexture (texture) + { + var glTexture = new GLTexture(this.gl.createTexture()); + + // guarantee an update.. + glTexture.dirtyId = -1; + + texture._glTextures[this.CONTEXT_UID] = glTexture; + + this.managedTextures.push(texture); + texture.on('dispose', this.destroyTexture, this); + + return glTexture; + }; + + TextureSystem.prototype.initTextureType = function initTextureType (texture, glTexture) + { + glTexture.internalFormat = texture.format; + glTexture.type = texture.type; + if (this.webGLVersion !== 2) + { + return; + } + var gl = this.renderer.gl; + + if (texture.type === gl.FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA32F; + } + // that's WebGL1 HALF_FLOAT_OES + // we have to convert it to WebGL HALF_FLOAT + if (texture.type === TYPES.HALF_FLOAT) + { + glTexture.type = gl.HALF_FLOAT; + } + if (glTexture.type === gl.HALF_FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA16F; + } + }; + + /** + * Update a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.updateTexture = function updateTexture (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + var renderer = this.renderer; + + this.initTextureType(texture, glTexture); + + if (texture.resource && texture.resource.upload(renderer, texture, glTexture)) + ; + else + { + // default, renderTexture-like logic + var width = texture.realWidth; + var height = texture.realHeight; + var gl = renderer.gl; + + if (glTexture.width !== width + || glTexture.height !== height + || glTexture.dirtyId < 0) + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(texture.target, 0, + glTexture.internalFormat, + width, + height, + 0, + texture.format, + glTexture.type, + null); + } + } + + // lets only update what changes.. + if (texture.dirtyStyleId !== glTexture.dirtyStyleId) + { + this.updateTextureStyle(texture); + } + glTexture.dirtyId = texture.dirtyId; + }; + + /** + * Deletes the texture from WebGL + * + * @private + * @param {PIXI.BaseTexture|PIXI.Texture} texture - the texture to destroy + * @param {boolean} [skipRemove=false] - Whether to skip removing the texture from the TextureManager. + */ + TextureSystem.prototype.destroyTexture = function destroyTexture (texture, skipRemove) + { + var ref = this; + var gl = ref.gl; + + texture = texture.baseTexture || texture; + + if (texture._glTextures[this.CONTEXT_UID]) + { + this.unbind(texture); + + gl.deleteTexture(texture._glTextures[this.CONTEXT_UID].texture); + texture.off('dispose', this.destroyTexture, this); + + delete texture._glTextures[this.CONTEXT_UID]; + + if (!skipRemove) + { + var i = this.managedTextures.indexOf(texture); + + if (i !== -1) + { + removeItems(this.managedTextures, i, 1); + } + } + } + }; + + /** + * Update texture style such as mipmap flag + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + */ + TextureSystem.prototype.updateTextureStyle = function updateTextureStyle (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + if ((texture.mipmap === MIPMAP_MODES.POW2 || this.webGLVersion !== 2) && !texture.isPowerOfTwo) + { + glTexture.mipmap = 0; + glTexture.wrapMode = WRAP_MODES.CLAMP; + } + else + { + glTexture.mipmap = texture.mipmap >= 1; + glTexture.wrapMode = texture.wrapMode; + } + + if (texture.resource && texture.resource.style(this.renderer, texture, glTexture)) + ; + else + { + this.setStyle(texture, glTexture); + } + + glTexture.dirtyStyleId = texture.dirtyStyleId; + }; + + /** + * Set style for texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + * @param {PIXI.GLTexture} glTexture + */ + TextureSystem.prototype.setStyle = function setStyle (texture, glTexture) + { + var gl = this.gl; + + if (glTexture.mipmap) + { + gl.generateMipmap(texture.target); + } + + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_S, glTexture.wrapMode); + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_T, glTexture.wrapMode); + + if (glTexture.mipmap) + { + /* eslint-disable max-len */ + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR_MIPMAP_LINEAR : gl.NEAREST_MIPMAP_NEAREST); + /* eslint-disable max-len */ + + var anisotropicExt = this.renderer.context.extensions.anisotropicFiltering; + + if (anisotropicExt && texture.anisotropicLevel > 0 && texture.scaleMode === SCALE_MODES.LINEAR) + { + var level = Math.min(texture.anisotropicLevel, gl.getParameter(anisotropicExt.MAX_TEXTURE_MAX_ANISOTROPY_EXT)); + + gl.texParameterf(texture.target, anisotropicExt.TEXTURE_MAX_ANISOTROPY_EXT, level); + } + } + else + { + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + } + + gl.texParameteri(texture.target, gl.TEXTURE_MAG_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + }; + + return TextureSystem; +}(System)); + +var tempMatrix = new Matrix(); + +/** + * The AbstractRenderer is the base for a PixiJS Renderer. It is extended by the {@link PIXI.CanvasRenderer} + * and {@link PIXI.Renderer} which can be used for rendering a PixiJS scene. + * + * @abstract + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var AbstractRenderer = /*@__PURE__*/(function (EventEmitter) { + function AbstractRenderer(system, options) + { + EventEmitter.call(this); + + // Add the default render options + options = Object.assign({}, settings.RENDER_OPTIONS, options); + + // Deprecation notice for renderer roundPixels option + if (options.roundPixels) + { + settings.ROUND_PIXELS = options.roundPixels; + deprecation('5.0.0', 'Renderer roundPixels option is deprecated, please use PIXI.settings.ROUND_PIXELS', 2); + } + + /** + * The supplied constructor options. + * + * @member {Object} + * @readOnly + */ + this.options = options; + + /** + * The type of the renderer. + * + * @member {number} + * @default PIXI.RENDERER_TYPE.UNKNOWN + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.UNKNOWN; + + /** + * Measurements of the screen. (0, 0, screenWidth, screenHeight). + * + * Its safe to use as filterArea or hitArea for the whole stage. + * + * @member {PIXI.Rectangle} + */ + this.screen = new Rectangle(0, 0, options.width, options.height); + + /** + * The canvas element that everything is drawn to. + * + * @member {HTMLCanvasElement} + */ + this.view = options.view || document.createElement('canvas'); + + /** + * The resolution / device pixel ratio of the renderer. + * + * @member {number} + * @default 1 + */ + this.resolution = options.resolution || settings.RESOLUTION; + + /** + * Whether the render view is transparent. + * + * @member {boolean} + */ + this.transparent = options.transparent; + + /** + * Whether CSS dimensions of canvas view should be resized to screen dimensions automatically. + * + * @member {boolean} + */ + this.autoDensity = options.autoDensity || options.autoResize || false; + // autoResize is deprecated, provides fallback support + + /** + * The value of the preserveDrawingBuffer flag affects whether or not the contents of + * the stencil buffer is retained after rendering. + * + * @member {boolean} + */ + this.preserveDrawingBuffer = options.preserveDrawingBuffer; + + /** + * This sets if the CanvasRenderer will clear the canvas or not before the new render pass. + * If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every + * frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect + * to clear the canvas every frame. Disable this by setting this to false. For example, if + * your game has a canvas filling background image you often don't need this set. + * + * @member {boolean} + * @default + */ + this.clearBeforeRender = options.clearBeforeRender; + + /** + * The background color as a number. + * + * @member {number} + * @protected + */ + this._backgroundColor = 0x000000; + + /** + * The background color as an [R, G, B] array. + * + * @member {number[]} + * @protected + */ + this._backgroundColorRgba = [0, 0, 0, 0]; + + /** + * The background color as a string. + * + * @member {string} + * @protected + */ + this._backgroundColorString = '#000000'; + + this.backgroundColor = options.backgroundColor || this._backgroundColor; // run bg color setter + + /** + * This temporary display object used as the parent of the currently being rendered item. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._tempDisplayObjectParent = new Container(); + + /** + * The last root object that the renderer tried to render. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._lastObjectRendered = this._tempDisplayObjectParent; + + /** + * Collection of plugins. + * @readonly + * @member {object} + */ + this.plugins = {}; + } + + if ( EventEmitter ) AbstractRenderer.__proto__ = EventEmitter; + AbstractRenderer.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + AbstractRenderer.prototype.constructor = AbstractRenderer; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },backgroundColor: { configurable: true } }; + + /** + * Initialize the plugins. + * + * @protected + * @param {object} staticMap - The dictionary of statically saved plugins. + */ + AbstractRenderer.prototype.initPlugins = function initPlugins (staticMap) + { + for (var o in staticMap) + { + this.plugins[o] = new (staticMap[o])(this); + } + }; + + /** + * Same as view.width, actual number of pixels in the canvas by horizontal. + * + * @member {number} + * @readonly + * @default 800 + */ + prototypeAccessors.width.get = function () + { + return this.view.width; + }; + + /** + * Same as view.height, actual number of pixels in the canvas by vertical. + * + * @member {number} + * @readonly + * @default 600 + */ + prototypeAccessors.height.get = function () + { + return this.view.height; + }; + + /** + * Resizes the screen and canvas to the specified width and height. + * Canvas dimensions are multiplied by resolution. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + AbstractRenderer.prototype.resize = function resize (screenWidth, screenHeight) + { + this.screen.width = screenWidth; + this.screen.height = screenHeight; + + this.view.width = screenWidth * this.resolution; + this.view.height = screenHeight * this.resolution; + + if (this.autoDensity) + { + this.view.style.width = screenWidth + "px"; + this.view.style.height = screenHeight + "px"; + } + }; + + /** + * Useful function that returns a texture of the display object that can then be used to create sprites + * This can be quite useful if your displayObject is complicated and needs to be reused multiple times. + * + * @param {PIXI.DisplayObject} displayObject - The displayObject the object will be generated from. + * @param {number} scaleMode - Should be one of the scaleMode consts. + * @param {number} resolution - The resolution / device pixel ratio of the texture being generated. + * @param {PIXI.Rectangle} [region] - The region of the displayObject, that shall be rendered, + * if no region is specified, defaults to the local bounds of the displayObject. + * @return {PIXI.RenderTexture} A texture of the graphics object. + */ + AbstractRenderer.prototype.generateTexture = function generateTexture (displayObject, scaleMode, resolution, region) + { + region = region || displayObject.getLocalBounds(); + + // minimum texture size is 1x1, 0x0 will throw an error + if (region.width === 0) { region.width = 1; } + if (region.height === 0) { region.height = 1; } + + var renderTexture = RenderTexture.create(region.width | 0, region.height | 0, scaleMode, resolution); + + tempMatrix.tx = -region.x; + tempMatrix.ty = -region.y; + + this.render(displayObject, renderTexture, false, tempMatrix, !!displayObject.parent); + + return renderTexture; + }; + + /** + * Removes everything from the renderer and optionally removes the Canvas DOM element. + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + */ + AbstractRenderer.prototype.destroy = function destroy (removeView) + { + for (var o in this.plugins) + { + this.plugins[o].destroy(); + this.plugins[o] = null; + } + + if (removeView && this.view.parentNode) + { + this.view.parentNode.removeChild(this.view); + } + + this.plugins = null; + + this.type = RENDERER_TYPE.UNKNOWN; + + this.view = null; + + this.screen = null; + + this.resolution = 0; + + this.transparent = false; + + this.autoDensity = false; + + this.blendModes = null; + + this.options = null; + + this.preserveDrawingBuffer = false; + this.clearBeforeRender = false; + + this._backgroundColor = 0; + this._backgroundColorRgba = null; + this._backgroundColorString = null; + + this._tempDisplayObjectParent = null; + this._lastObjectRendered = null; + }; + + /** + * The background color to fill if not transparent + * + * @member {number} + */ + prototypeAccessors.backgroundColor.get = function () + { + return this._backgroundColor; + }; + + prototypeAccessors.backgroundColor.set = function (value) // eslint-disable-line require-jsdoc + { + this._backgroundColor = value; + this._backgroundColorString = hex2string(value); + hex2rgb(value, this._backgroundColorRgba); + }; + + Object.defineProperties( AbstractRenderer.prototype, prototypeAccessors ); + + return AbstractRenderer; +}(eventemitter3)); + +/** + * The Renderer draws the scene and all its content onto a WebGL enabled canvas. + * + * This renderer should be used for browsers that support WebGL. + * + * This renderer works by automatically managing WebGLBatchesm, so no need for Sprite Batches or Sprite Clouds. + * Don't forget to add the view to your DOM or you will not see anything! + * + * @class + * @memberof PIXI + * @extends PIXI.AbstractRenderer + */ +var Renderer = /*@__PURE__*/(function (AbstractRenderer) { + function Renderer(options) + { + if ( options === void 0 ) options = {}; + + AbstractRenderer.call(this, 'WebGL', options); + + // the options will have been modified here in the super constructor with pixi's default settings.. + options = this.options; + + /** + * The type of this renderer as a standardized const + * + * @member {number} + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.WEBGL; + + /** + * WebGL context, set by the contextSystem (this.context) + * + * @readonly + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.CONTEXT_UID = 0; + + // TODO legacy! + + /** + * Internal signal instances of **runner**, these + * are assigned to each system created. + * @see PIXI.Runner + * @name PIXI.Renderer#runners + * @private + * @type {object} + * @readonly + * @property {PIXI.Runner} destroy - Destroy runner + * @property {PIXI.Runner} contextChange - Context change runner + * @property {PIXI.Runner} reset - Reset runner + * @property {PIXI.Runner} update - Update runner + * @property {PIXI.Runner} postrender - Post-render runner + * @property {PIXI.Runner} prerender - Pre-render runner + * @property {PIXI.Runner} resize - Resize runner + */ + this.runners = { + destroy: new Runner('destroy'), + contextChange: new Runner('contextChange', 1), + reset: new Runner('reset'), + update: new Runner('update'), + postrender: new Runner('postrender'), + prerender: new Runner('prerender'), + resize: new Runner('resize', 2), + }; + + /** + * Global uniforms + * @member {PIXI.UniformGroup} + */ + this.globalUniforms = new UniformGroup({ + projectionMatrix: new Matrix(), + }, true); + + /** + * Mask system instance + * @member {PIXI.systems.MaskSystem} mask + * @memberof PIXI.Renderer# + * @readonly + */ + this.addSystem(MaskSystem, 'mask') + /** + * Context system instance + * @member {PIXI.systems.ContextSystem} context + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ContextSystem, 'context') + /** + * State system instance + * @member {PIXI.systems.StateSystem} state + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StateSystem, 'state') + /** + * Shader system instance + * @member {PIXI.systems.ShaderSystem} shader + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ShaderSystem, 'shader') + /** + * Texture system instance + * @member {PIXI.systems.TextureSystem} texture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureSystem, 'texture') + /** + * Geometry system instance + * @member {PIXI.systems.GeometrySystem} geometry + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(GeometrySystem, 'geometry') + /** + * Framebuffer system instance + * @member {PIXI.systems.FramebufferSystem} framebuffer + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FramebufferSystem, 'framebuffer') + /** + * Stencil system instance + * @member {PIXI.systems.StencilSystem} stencil + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StencilSystem, 'stencil') + /** + * Projection system instance + * @member {PIXI.systems.ProjectionSystem} projection + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ProjectionSystem, 'projection') + /** + * Texture garbage collector system instance + * @member {PIXI.systems.TextureGCSystem} textureGC + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureGCSystem, 'textureGC') + /** + * Filter system instance + * @member {PIXI.systems.FilterSystem} filter + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FilterSystem, 'filter') + /** + * RenderTexture system instance + * @member {PIXI.systems.RenderTextureSystem} renderTexture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(RenderTextureSystem, 'renderTexture') + + /** + * Batch system instance + * @member {PIXI.systems.BatchSystem} batch + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(BatchSystem, 'batch'); + + this.initPlugins(Renderer.__plugins); + + /** + * The options passed in to create a new WebGL context. + */ + if (options.context) + { + this.context.initFromContext(options.context); + } + else + { + this.context.initFromOptions({ + alpha: this.transparent, + antialias: options.antialias, + premultipliedAlpha: this.transparent && this.transparent !== 'notMultiplied', + stencil: true, + preserveDrawingBuffer: options.preserveDrawingBuffer, + powerPreference: this.options.powerPreference, + }); + } + + /** + * Flag if we are rendering to the screen vs renderTexture + * @member {boolean} + * @readonly + * @default true + */ + this.renderingToScreen = true; + + sayHello(this.context.webGLVersion === 2 ? 'WebGL 2' : 'WebGL 1'); + + this.resize(this.options.width, this.options.height); + } + + if ( AbstractRenderer ) Renderer.__proto__ = AbstractRenderer; + Renderer.prototype = Object.create( AbstractRenderer && AbstractRenderer.prototype ); + Renderer.prototype.constructor = Renderer; + + /** + * Add a new system to the renderer. + * @param {Function} ClassRef - Class reference + * @param {string} [name] - Property name for system, if not specified + * will use a static `name` property on the class itself. This + * name will be assigned as s property on the Renderer so make + * sure it doesn't collide with properties on Renderer. + * @return {PIXI.Renderer} Return instance of renderer + */ + Renderer.create = function create (options) + { + if (isWebGLSupported()) + { + return new Renderer(options); + } + + throw new Error('WebGL unsupported in this browser, use "pixi.js-legacy" for fallback canvas2d support.'); + }; + + Renderer.prototype.addSystem = function addSystem (ClassRef, name) + { + if (!name) + { + name = ClassRef.name; + } + + var system = new ClassRef(this); + + if (this[name]) + { + throw new Error(("Whoops! The name \"" + name + "\" is already in use")); + } + + this[name] = system; + + for (var i in this.runners) + { + this.runners[i].add(system); + } + + /** + * Fired after rendering finishes. + * + * @event PIXI.Renderer#postrender + */ + + /** + * Fired before rendering starts. + * + * @event PIXI.Renderer#prerender + */ + + /** + * Fired when the WebGL context is set. + * + * @event PIXI.Renderer#context + * @param {WebGLRenderingContext} gl - WebGL context. + */ + + return this; + }; + + /** + * Renders the object to its WebGL view + * + * @param {PIXI.DisplayObject} displayObject - The object to be rendered. + * @param {PIXI.RenderTexture} [renderTexture] - The render texture to render to. + * @param {boolean} [clear=true] - Should the canvas be cleared before the new render. + * @param {PIXI.Matrix} [transform] - A transform to apply to the render texture before rendering. + * @param {boolean} [skipUpdateTransform=false] - Should we skip the update transform pass? + */ + Renderer.prototype.render = function render (displayObject, renderTexture, clear, transform, skipUpdateTransform) + { + // can be handy to know! + this.renderingToScreen = !renderTexture; + + this.runners.prerender.run(); + this.emit('prerender'); + + // apply a transform at a GPU level + this.projection.transform = transform; + + // no point rendering if our context has been blown up! + if (this.context.isLost) + { + return; + } + + if (!renderTexture) + { + this._lastObjectRendered = displayObject; + } + + if (!skipUpdateTransform) + { + // update the scene graph + var cacheParent = displayObject.parent; + + displayObject.parent = this._tempDisplayObjectParent; + displayObject.updateTransform(); + displayObject.parent = cacheParent; + // displayObject.hitArea = //TODO add a temp hit area + } + + this.renderTexture.bind(renderTexture); + this.batch.currentRenderer.start(); + + if (clear !== undefined ? clear : this.clearBeforeRender) + { + this.renderTexture.clear(); + } + + displayObject.render(this); + + // apply transform.. + this.batch.currentRenderer.flush(); + + if (renderTexture) + { + renderTexture.baseTexture.update(); + } + + this.runners.postrender.run(); + + // reset transform after render + this.projection.transform = null; + + this.emit('postrender'); + }; + + /** + * Resizes the WebGL view to the specified width and height. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + Renderer.prototype.resize = function resize (screenWidth, screenHeight) + { + AbstractRenderer.prototype.resize.call(this, screenWidth, screenHeight); + + this.runners.resize.run(screenWidth, screenHeight); + }; + + /** + * Resets the WebGL state so you can render things however you fancy! + * + * @return {PIXI.Renderer} Returns itself. + */ + Renderer.prototype.reset = function reset () + { + this.runners.reset.run(); + + return this; + }; + + /** + * Clear the frame buffer + */ + Renderer.prototype.clear = function clear () + { + this.framebuffer.bind(); + this.framebuffer.clear(); + }; + + /** + * Removes everything from the renderer (event listeners, spritebatch, etc...) + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + * See: https://github.com/pixijs/pixi.js/issues/2233 + */ + Renderer.prototype.destroy = function destroy (removeView) + { + this.runners.destroy.run(); + + for (var r in this.runners) + { + this.runners[r].destroy(); + } + + // call base destroy + AbstractRenderer.prototype.destroy.call(this, removeView); + + // TODO nullify all the managers.. + this.gl = null; + }; + + /** + * Collection of installed plugins. These are included by default in PIXI, but can be excluded + * by creating a custom build. Consult the README for more information about creating custom + * builds and excluding plugins. + * @name PIXI.Renderer#plugins + * @type {object} + * @readonly + * @property {PIXI.accessibility.AccessibilityManager} accessibility Support tabbing interactive elements. + * @property {PIXI.extract.Extract} extract Extract image data from renderer. + * @property {PIXI.interaction.InteractionManager} interaction Handles mouse, touch and pointer events. + * @property {PIXI.prepare.Prepare} prepare Pre-render display objects. + */ + + /** + * Adds a plugin to the renderer. + * + * @method + * @param {string} pluginName - The name of the plugin. + * @param {Function} ctor - The constructor function or class for the plugin. + */ + Renderer.registerPlugin = function registerPlugin (pluginName, ctor) + { + Renderer.__plugins = Renderer.__plugins || {}; + Renderer.__plugins[pluginName] = ctor; + }; + + return Renderer; +}(AbstractRenderer)); + +/** + * This helper function will automatically detect which renderer you should be using. + * WebGL is the preferred renderer as it is a lot faster. If WebGL is not supported by + * the browser then this function will return a canvas renderer + * + * @memberof PIXI + * @function autoDetectRenderer + * @param {object} [options] - The optional renderer parameters + * @param {number} [options.width=800] - the width of the renderers view + * @param {number} [options.height=600] - the height of the renderers view + * @param {HTMLCanvasElement} [options.view] - the canvas to use as a view, optional + * @param {boolean} [options.transparent=false] - If the render view is transparent, default false + * @param {boolean} [options.autoDensity=false] - Resizes renderer view in CSS pixels to allow for + * resolutions other than 1 + * @param {boolean} [options.antialias=false] - sets antialias + * @param {boolean} [options.preserveDrawingBuffer=false] - enables drawing buffer preservation, enable this if you + * need to call toDataUrl on the webgl context + * @param {number} [options.backgroundColor=0x000000] - The background color of the rendered area + * (shown if not transparent). + * @param {boolean} [options.clearBeforeRender=true] - This sets if the renderer will clear the canvas or + * not before the new render pass. + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the renderer, retina would be 2 + * @param {boolean} [options.forceCanvas=false] - prevents selection of WebGL renderer, even if such is present, this + * option only is available when using **pixi.js-legacy** or **@pixi/canvas-renderer** modules, otherwise + * it is ignored. + * @param {boolean} [options.forceFXAA=false] - forces FXAA antialiasing to be used over native. + * FXAA is faster, but may not always look as great **webgl only** + * @param {string} [options.powerPreference] - Parameter passed to webgl context, set to "high-performance" + * for devices with dual graphics card **webgl only** + * @return {PIXI.Renderer|PIXI.CanvasRenderer} Returns WebGL renderer if available, otherwise CanvasRenderer + */ +function autoDetectRenderer(options) +{ + return Renderer.create(options); +} + +var defaultFilter = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +/** + * Used by the batcher to draw batches. + * Each one of these contains all information required to draw a bound geometry. + * + * @class + * @memberof PIXI + */ +var BatchDrawCall = function BatchDrawCall() +{ + this.textures = []; + this.ids = []; + this.blend = 0; + this.textureCount = 0; + this.start = 0; + this.size = 0; + this.type = 4; +}; + +/** + * Flexible wrapper around `ArrayBuffer` that also provides + * typed array views on demand. + * + * @class + * @memberof PIXI + */ +var ViewableBuffer = function ViewableBuffer(size) +{ + /** + * Underlying `ArrayBuffer` that holds all the data + * and is of capacity `size`. + * + * @member {ArrayBuffer} + */ + this.rawBinaryData = new ArrayBuffer(size); + + /** + * View on the raw binary data as a `Uint32Array`. + * + * @member {Uint32Array} + */ + this.uint32View = new Uint32Array(this.rawBinaryData); + + /** + * View on the raw binary data as a `Float32Array`. + * + * @member {Float32Array} + */ + this.float32View = new Float32Array(this.rawBinaryData); +}; + +var prototypeAccessors$5$1 = { int8View: { configurable: true },uint8View: { configurable: true },int16View: { configurable: true },uint16View: { configurable: true },int32View: { configurable: true } }; + +/** + * View on the raw binary data as a `Int8Array`. + * + * @member {Int8Array} + */ +prototypeAccessors$5$1.int8View.get = function () +{ + if (!this._int8View) + { + this._int8View = new Int8Array(this.rawBinaryData); + } + + return this._int8View; +}; + +/** + * View on the raw binary data as a `Uint8Array`. + * + * @member {Uint8Array} + */ +prototypeAccessors$5$1.uint8View.get = function () +{ + if (!this._uint8View) + { + this._uint8View = new Uint8Array(this.rawBinaryData); + } + + return this._uint8View; +}; + +/** + * View on the raw binary data as a `Int16Array`. + * + * @member {Int16Array} + */ +prototypeAccessors$5$1.int16View.get = function () +{ + if (!this._int16View) + { + this._int16View = new Int16Array(this.rawBinaryData); + } + + return this._int16View; +}; + +/** + * View on the raw binary data as a `Uint16Array`. + * + * @member {Uint16Array} + */ +prototypeAccessors$5$1.uint16View.get = function () +{ + if (!this._uint16View) + { + this._uint16View = new Uint16Array(this.rawBinaryData); + } + + return this._uint16View; +}; + +/** + * View on the raw binary data as a `Int32Array`. + * + * @member {Int32Array} + */ +prototypeAccessors$5$1.int32View.get = function () +{ + if (!this._int32View) + { + this._int32View = new Int32Array(this.rawBinaryData); + } + + return this._int32View; +}; + +/** + * Returns the view of the given type. + * + * @param {string} type - One of `int8`, `uint8`, `int16`, + *`uint16`, `int32`, `uint32`, and `float32`. + * @return {object} typed array of given type + */ +ViewableBuffer.prototype.view = function view (type) +{ + return this[(type + "View")]; +}; + +/** + * Destroys all buffer references. Do not use after calling + * this. + */ +ViewableBuffer.prototype.destroy = function destroy () +{ + this.rawBinaryData = null; + this._int8View = null; + this._uint8View = null; + this._int16View = null; + this._uint16View = null; + this._int32View = null; + this.uint32View = null; + this.float32View = null; +}; + +ViewableBuffer.sizeOf = function sizeOf (type) +{ + switch (type) + { + case 'int8': + case 'uint8': + return 1; + case 'int16': + case 'uint16': + return 2; + case 'int32': + case 'uint32': + case 'float32': + return 4; + default: + throw new Error((type + " isn't a valid view type")); + } +}; + +Object.defineProperties( ViewableBuffer.prototype, prototypeAccessors$5$1 ); + +/** + * Renderer dedicated to drawing and batching sprites. + * + * This is the default batch renderer. It buffers objects + * with texture-based geometries and renders them in + * batches. It uploads multiple textures to the GPU to + * reduce to the number of draw calls. + * + * @class + * @protected + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var AbstractBatchRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function AbstractBatchRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + /** + * This is used to generate a shader that can + * color each vertex based on a `aTextureId` + * attribute that points to an texture in `uSampler`. + * + * This enables the objects with different textures + * to be drawn in the same draw call. + * + * You can customize your shader by creating your + * custom shader generator. + * + * @member {PIXI.BatchShaderGenerator} + * @protected + */ + this.shaderGenerator = null; + + /** + * The class that represents the geometry of objects + * that are going to be batched with this. + * + * @member {object} + * @default PIXI.BatchGeometry + * @protected + */ + this.geometryClass = null; + + /** + * Size of data being buffered per vertex in the + * attribute buffers (in floats). By default, the + * batch-renderer plugin uses 6: + * + * | aVertexPosition | 2 | + * |-----------------|---| + * | aTextureCoords | 2 | + * | aColor | 1 | + * | aTextureId | 1 | + * + * @member {number} + * @readonly + */ + this.vertexSize = null; + + /** + * The WebGL state in which this renderer will work. + * + * @member {PIXI.State} + * @readonly + */ + this.state = State.for2d(); + + /** + * The number of bufferable objects before a flush + * occurs automatically. + * + * @member {number} + * @default settings.SPRITE_MAX_TEXTURES + */ + this.size = 2000 * 4;// settings.SPRITE_BATCH_SIZE, 2000 is a nice balance between mobile/desktop + + /** + * Total count of all vertices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._vertexCount = 0; + + /** + * Total count of all indices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._indexCount = 0; + + /** + * Buffer of objects that are yet to be rendered. + * + * @member {PIXI.DisplayObject[]} + * @private + */ + this._bufferedElements = []; + + /** + * Number of elements that are buffered and are + * waiting to be flushed. + * + * @member {number} + * @private + */ + this._bufferSize = 0; + + /** + * This shader is generated by `this.shaderGenerator`. + * + * It is generated specifically to handle the required + * number of textures being batched together. + * + * @member {PIXI.Shader} + * @protected + */ + this._shader = null; + + /** + * Pool of `this.geometryClass` geometry objects + * that store buffers. They are used to pass data + * to the shader on each draw call. + * + * These are never re-allocated again, unless a + * context change occurs; however, the pool may + * be expanded if required. + * + * @member {PIXI.Geometry[]} + * @private + * @see PIXI.AbstractBatchRenderer.contextChange + */ + this._packedGeometries = []; + + /** + * Size of `this._packedGeometries`. It can be expanded + * if more than `this._packedGeometryPoolSize` flushes + * occur in a single frame. + * + * @member {number} + * @private + */ + this._packedGeometryPoolSize = 2; + + /** + * A flush may occur multiple times in a single + * frame. On iOS devices or when + * `settings.CAN_UPLOAD_SAME_BUFFER` is false, the + * batch renderer does not upload data to the same + * `WebGLBuffer` for performance reasons. + * + * This is the index into `packedGeometries` that points to + * geometry holding the most recent buffers. + * + * @member {number} + * @private + */ + this._flushId = 0; + + /** + * Pool of `BatchDrawCall` objects that `flush` used + * to create "batches" of the objects being rendered. + * + * These are never re-allocated again. + * + * @member BatchDrawCall[] + * @private + */ + this._drawCalls = []; + + for (var k = 0; k < this.size / 4; k++) + { // initialize the draw-calls pool to max size. + this._drawCalls[k] = new BatchDrawCall(); + } + + /** + * Pool of `ViewableBuffer` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing attributes. + * + * The first buffer has a size of 8; each subsequent + * buffer has double capacity of its previous. + * + * @member {PIXI.ViewableBuffer} + * @private + * @see PIXI.AbstractBatchRenderer#getAttributeBuffer + */ + this._aBuffers = {}; + + /** + * Pool of `Uint16Array` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing indices. + * + * The first buffer has a size of 12; each subsequent + * buffer has double capacity of its previous. + * + * @member {Uint16Array[]} + * @private + * @see PIXI.AbstractBatchRenderer#getIndexBuffer + */ + this._iBuffers = {}; + + /** + * Maximum number of textures that can be uploaded to + * the GPU under the current context. It is initialized + * properly in `this.contextChange`. + * + * @member {number} + * @see PIXI.AbstractBatchRenderer#contextChange + * @readonly + */ + this.MAX_TEXTURES = 1; + + this.renderer.on('prerender', this.onPrerender, this); + renderer.runners.contextChange.add(this); + } + + if ( ObjectRenderer ) AbstractBatchRenderer.__proto__ = ObjectRenderer; + AbstractBatchRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + AbstractBatchRenderer.prototype.constructor = AbstractBatchRenderer; + + /** + * Handles the `contextChange` signal. + * + * It calculates `this.MAX_TEXTURES` and allocating the + * packed-geometry object pool. + */ + AbstractBatchRenderer.prototype.contextChange = function contextChange () + { + var gl = this.renderer.gl; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + this.MAX_TEXTURES = 1; + } + else + { + // step 1: first check max textures the GPU can handle. + this.MAX_TEXTURES = Math.min( + gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS), + settings.SPRITE_MAX_TEXTURES); + + // step 2: check the maximum number of if statements the shader can have too.. + this.MAX_TEXTURES = checkMaxIfStatementsInShader( + this.MAX_TEXTURES, gl); + } + + this._shader = this.shaderGenerator.generateShader(this.MAX_TEXTURES); + + // we use the second shader as the first one depending on your browser + // may omit aTextureId as it is not used by the shader so is optimized out. + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + /* eslint-disable max-len */ + this._packedGeometries[i] = new (this.geometryClass)(); + } + }; + + /** + * Handles the `prerender` signal. + * + * It ensures that flushes start from the first geometry + * object again. + */ + AbstractBatchRenderer.prototype.onPrerender = function onPrerender () + { + this._flushId = 0; + }; + + /** + * Buffers the "batchable" object. It need not be rendered + * immediately. + * + * @param {PIXI.Sprite} sprite - the sprite to render when + * using this spritebatch + */ + AbstractBatchRenderer.prototype.render = function render (element) + { + if (!element._texture.valid) + { + return; + } + + if (this._vertexCount + (element.vertexData.length / 2) > this.size) + { + this.flush(); + } + + this._vertexCount += element.vertexData.length / 2; + this._indexCount += element.indices.length; + this._bufferedElements[this._bufferSize++] = element; + }; + + /** + * Renders the content _now_ and empties the current batch. + */ + AbstractBatchRenderer.prototype.flush = function flush () + { + if (this._vertexCount === 0) + { + return; + } + + var attributeBuffer = this.getAttributeBuffer(this._vertexCount); + var indexBuffer = this.getIndexBuffer(this._indexCount); + var gl = this.renderer.gl; + + var ref = this; + var elements = ref._bufferedElements; + var drawCalls = ref._drawCalls; + var MAX_TEXTURES = ref.MAX_TEXTURES; + var packedGeometries = ref._packedGeometries; + var vertexSize = ref.vertexSize; + + var touch = this.renderer.textureGC.count; + + var index = 0; + var _indexCount = 0; + + var nextTexture; + var currentTexture; + var textureCount = 0; + + var currentGroup = drawCalls[0]; + var groupCount = 0; + + var blendMode = -1;// blend-mode of previous element/sprite/object! + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.blend = blendMode; + + var TICK = ++BaseTexture._globalBatch; + var i; + + for (i = 0; i < this._bufferSize; ++i) + { + var sprite = elements[i]; + + elements[i] = null; + nextTexture = sprite._texture.baseTexture; + + var spriteBlendMode = premultiplyBlendMode[ + nextTexture.premultiplyAlpha ? 1 : 0][sprite.blendMode]; + + if (blendMode !== spriteBlendMode) + { + blendMode = spriteBlendMode; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + currentGroup.size = _indexCount - currentGroup.start; + + currentGroup = drawCalls[groupCount++]; + currentGroup.textureCount = 0; + currentGroup.blend = blendMode; + currentGroup.start = _indexCount; + } + + nextTexture.touched = touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + this.packInterleavedGeometry(sprite, attributeBuffer, + indexBuffer, index, _indexCount); + + // push a graphics.. + index += (sprite.vertexData.length / 2) * vertexSize; + _indexCount += sprite.indices.length; + } + + BaseTexture._globalBatch = TICK; + currentGroup.size = _indexCount - currentGroup.start; + + if (!settings.CAN_UPLOAD_SAME_BUFFER) + { /* Usually on iOS devices, where the browser doesn't + like uploads to the same buffer in a single frame. */ + if (this._packedGeometryPoolSize <= this._flushId) + { + this._packedGeometryPoolSize++; + packedGeometries[this._flushId] = new (this.geometryClass)(); + } + + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.bind(packedGeometries[this._flushId]); + this.renderer.geometry.updateBuffers(); + this._flushId++; + } + else + { + // lets use the faster option, always use buffer number 0 + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.updateBuffers(); + } + + var textureSystem = this.renderer.texture; + var stateSystem = this.renderer.state; + + // Upload textures and do the draw calls + for (i = 0; i < groupCount; i++) + { + var group = drawCalls[i]; + var groupTextureCount = group.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + textureSystem.bind(group.textures[j], j); + group.textures[j] = null; + } + + stateSystem.setBlendMode(group.blend); + gl.drawElements(group.type, group.size, gl.UNSIGNED_SHORT, group.start * 2); + } + + // reset elements for the next flush + this._bufferSize = 0; + this._vertexCount = 0; + this._indexCount = 0; + }; + + /** + * Starts a new sprite batch. + */ + AbstractBatchRenderer.prototype.start = function start () + { + this.renderer.state.set(this.state); + + this.renderer.shader.bind(this._shader); + + if (settings.CAN_UPLOAD_SAME_BUFFER) + { + // bind buffer #0, we don't need others + this.renderer.geometry.bind(this._packedGeometries[this._flushId]); + } + }; + + /** + * Stops and flushes the current batch. + */ + AbstractBatchRenderer.prototype.stop = function stop () + { + this.flush(); + }; + + /** + * Destroys this `AbstractBatchRenderer`. It cannot be used again. + */ + AbstractBatchRenderer.prototype.destroy = function destroy () + { + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + if (this._packedGeometries[i]) + { + this._packedGeometries[i].destroy(); + } + } + + this.renderer.off('prerender', this.onPrerender, this); + + this._aBuffers = null; + this._iBuffers = null; + this._packedGeometries = null; + this._drawCalls = null; + + if (this._shader) + { + this._shader.destroy(); + this._shader = null; + } + + ObjectRenderer.prototype.destroy.call(this); + }; + + /** + * Fetches an attribute buffer from `this._aBuffers` that + * can hold atleast `size` floats. + * + * @param {number} size - minimum capacity required + * @return {ViewableBuffer} - buffer than can hold atleast `size` floats + * @private + */ + AbstractBatchRenderer.prototype.getAttributeBuffer = function getAttributeBuffer (size) + { + // 8 vertices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 8)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 8; + + if (this._aBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._aBuffers[roundedSize]; + + if (!buffer) + { + this._aBuffers[roundedSize] = buffer = new ViewableBuffer(roundedSize * this.vertexSize * 4); + } + + return buffer; + }; + + /** + * Fetches an index buffer from `this._iBuffers` that can + * has atleast `size` capacity. + * + * @param {number} size - minimum required capacity + * @return {Uint16Array} - buffer that can fit `size` + * indices. + * @private + */ + AbstractBatchRenderer.prototype.getIndexBuffer = function getIndexBuffer (size) + { + // 12 indices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 12)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 12; + + if (this._iBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._iBuffers[roundedSizeIndex]; + + if (!buffer) + { + this._iBuffers[roundedSizeIndex] = buffer = new Uint16Array(roundedSize); + } + + return buffer; + }; + + /** + * Takes the four batching parameters of `element`, interleaves + * and pushes them into the batching attribute/index buffers given. + * + * It uses these properties: `vertexData` `uvs`, `textureId` and + * `indicies`. It also uses the "tint" of the base-texture, if + * present. + * + * @param {PIXI.Sprite} element - element being rendered + * @param {PIXI.ViewableBuffer} attributeBuffer - attribute buffer. + * @param {Uint16Array} indexBuffer - index buffer + * @param {number} aIndex - number of floats already in the attribute buffer + * @param {number} iIndex - number of indices already in `indexBuffer` + */ + AbstractBatchRenderer.prototype.packInterleavedGeometry = function packInterleavedGeometry (element, attributeBuffer, indexBuffer, aIndex, iIndex) + { + var uint32View = attributeBuffer.uint32View; + var float32View = attributeBuffer.float32View; + + var packedVertices = aIndex / this.vertexSize; + var uvs = element.uvs; + var indicies = element.indices; + var vertexData = element.vertexData; + var textureId = element._texture.baseTexture._id; + + var alpha = Math.min(element.worldAlpha, 1.0); + var argb = (alpha < 1.0 + && element._texture.baseTexture.premultiplyAlpha) + ? premultiplyTint(element._tintRGB, alpha) + : element._tintRGB + (alpha * 255 << 24); + + // lets not worry about tint! for now.. + for (var i = 0; i < vertexData.length; i += 2) + { + float32View[aIndex++] = vertexData[i]; + float32View[aIndex++] = vertexData[i + 1]; + float32View[aIndex++] = uvs[i]; + float32View[aIndex++] = uvs[i + 1]; + uint32View[aIndex++] = argb; + float32View[aIndex++] = textureId; + } + + for (var i$1 = 0; i$1 < indicies.length; i$1++) + { + indexBuffer[iIndex++] = packedVertices + indicies[i$1]; + } + }; + + return AbstractBatchRenderer; +}(ObjectRenderer)); + +/** + * Helper that generates batching multi-texture shader. Use it with your new BatchRenderer + * + * @class + * @memberof PIXI + */ +var BatchShaderGenerator = function BatchShaderGenerator(vertexSrc, fragTemplate) +{ + /** + * Reference to the vertex shader source. + * + * @member {string} + */ + this.vertexSrc = vertexSrc; + + /** + * Reference to the fragement shader template. Must contain "%count%" and "%forloop%". + * + * @member {string} + */ + this.fragTemplate = fragTemplate; + + this.programCache = {}; + this.defaultGroupCache = {}; + + if (fragTemplate.indexOf('%count%') < 0) + { + throw new Error('Fragment template must contain "%count%".'); + } + + if (fragTemplate.indexOf('%forloop%') < 0) + { + throw new Error('Fragment template must contain "%forloop%".'); + } +}; + +BatchShaderGenerator.prototype.generateShader = function generateShader (maxTextures) +{ + if (!this.programCache[maxTextures]) + { + var sampleValues = new Int32Array(maxTextures); + + for (var i = 0; i < maxTextures; i++) + { + sampleValues[i] = i; + } + + this.defaultGroupCache[maxTextures] = UniformGroup.from({ uSamplers: sampleValues }, true); + + var fragmentSrc = this.fragTemplate; + + fragmentSrc = fragmentSrc.replace(/%count%/gi, ("" + maxTextures)); + fragmentSrc = fragmentSrc.replace(/%forloop%/gi, this.generateSampleSrc(maxTextures)); + + this.programCache[maxTextures] = new Program(this.vertexSrc, fragmentSrc); + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: this.defaultGroupCache[maxTextures], + }; + + return new Shader(this.programCache[maxTextures], uniforms); +}; + +BatchShaderGenerator.prototype.generateSampleSrc = function generateSampleSrc (maxTextures) +{ + var src = ''; + + src += '\n'; + src += '\n'; + + for (var i = 0; i < maxTextures; i++) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxTextures - 1) + { + src += "if(vTextureId < " + i + ".5)"; + } + + src += '\n{'; + src += "\n\tcolor = texture2D(uSamplers[" + i + "], vTextureCoord);"; + src += '\n}'; + } + + src += '\n'; + src += '\n'; + + return src; +}; + +/** + * Geometry used to batch standard PIXI content (e.g. Mesh, Sprite, Graphics objects). + * + * @class + * @memberof PIXI + */ +var BatchGeometry = /*@__PURE__*/(function (Geometry) { + function BatchGeometry(_static) + { + if ( _static === void 0 ) _static = false; + + Geometry.call(this); + + /** + * Buffer used for position, color, texture IDs + * + * @member {PIXI.Buffer} + * @protected + */ + this._buffer = new Buffer$1(null, _static, false); + + /** + * Index buffer data + * + * @member {PIXI.Buffer} + * @protected + */ + this._indexBuffer = new Buffer$1(null, _static, true); + + this.addAttribute('aVertexPosition', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aTextureCoord', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aColor', this._buffer, 4, true, TYPES.UNSIGNED_BYTE) + .addAttribute('aTextureId', this._buffer, 1, true, TYPES.FLOAT) + .addIndex(this._indexBuffer); + } + + if ( Geometry ) BatchGeometry.__proto__ = Geometry; + BatchGeometry.prototype = Object.create( Geometry && Geometry.prototype ); + BatchGeometry.prototype.constructor = BatchGeometry; + + return BatchGeometry; +}(Geometry)); + +var defaultVertex$2 = "precision highp float;\nattribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\nattribute float aTextureId;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform vec4 tint;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vTextureId = aTextureId;\n vColor = aColor * tint;\n}\n"; + +var defaultFragment$2 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\nuniform sampler2D uSamplers[%count%];\n\nvoid main(void){\n vec4 color;\n %forloop%\n gl_FragColor = color * vColor;\n}\n"; + +/** + * @class + * @memberof PIXI + * @hideconstructor + */ +var BatchPluginFactory = function BatchPluginFactory () {}; + +var staticAccessors$1$1 = { defaultVertexSrc: { configurable: true },defaultFragmentTemplate: { configurable: true } }; + +BatchPluginFactory.create = function create (options) +{ + var ref = Object.assign({ + vertex: defaultVertex$2, + fragment: defaultFragment$2, + geometryClass: BatchGeometry, + vertexSize: 6, + }, options); + var vertex = ref.vertex; + var fragment = ref.fragment; + var vertexSize = ref.vertexSize; + var geometryClass = ref.geometryClass; + + return /*@__PURE__*/(function (AbstractBatchRenderer) { + function BatchPlugin(renderer) + { + AbstractBatchRenderer.call(this, renderer); + + this.shaderGenerator = new BatchShaderGenerator(vertex, fragment); + this.geometryClass = geometryClass; + this.vertexSize = vertexSize; + } + + if ( AbstractBatchRenderer ) BatchPlugin.__proto__ = AbstractBatchRenderer; + BatchPlugin.prototype = Object.create( AbstractBatchRenderer && AbstractBatchRenderer.prototype ); + BatchPlugin.prototype.constructor = BatchPlugin; + + return BatchPlugin; + }(AbstractBatchRenderer)); +}; + +/** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultVertexSrc.get = function () +{ + return defaultVertex$2; +}; + +/** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultFragmentTemplate.get = function () +{ + return defaultFragment$2; +}; + +Object.defineProperties( BatchPluginFactory, staticAccessors$1$1 ); + +// Setup the default BatchRenderer plugin, this is what +// we'll actually export at the root level +var BatchRenderer = BatchPluginFactory.create(); + +/*! + * @pixi/extract - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/extract is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var TEMP_RECT = new Rectangle(); +var BYTES_PER_PIXEL = 4; + +/** + * The extract manager provides functionality to export content from the renderers. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.extract` + * + * @class + * @memberof PIXI.extract + */ +var Extract = function Extract(renderer) +{ + this.renderer = renderer; + /** + * Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture + * + * @member {PIXI.extract.Extract} extract + * @memberof PIXI.Renderer# + * @see PIXI.extract.Extract + */ + renderer.extract = this; +}; + +/** + * Will return a HTML Image of the target + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {HTMLImageElement} HTML Image of the target + */ +Extract.prototype.image = function image (target, format, quality) +{ + var image = new Image(); + + image.src = this.base64(target, format, quality); + + return image; +}; + +/** + * Will return a a base64 encoded string of this target. It works by calling + * `Extract.getCanvas` and then running toDataURL on that. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {string} A base64 encoded string of the texture. + */ +Extract.prototype.base64 = function base64 (target, format, quality) +{ + return this.canvas(target).toDataURL(format, quality); +}; + +/** + * Creates a Canvas element, renders this target to it and then returns it. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {HTMLCanvasElement} A Canvas element with the texture rendered on. + */ +Extract.prototype.canvas = function canvas (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var flipY = false; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + flipY = false; + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = this.renderer.resolution; + + flipY = true; + + frame = TEMP_RECT; + frame.width = this.renderer.width; + frame.height = this.renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = Math.floor(frame.width * resolution); + var height = Math.floor(frame.height * resolution); + + var canvasBuffer = new CanvasRenderTarget(width, height, 1); + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + // add the pixels to the canvas + var canvasData = canvasBuffer.context.getImageData(0, 0, width, height); + + Extract.arrayPostDivide(webglPixels, canvasData.data); + + canvasBuffer.context.putImageData(canvasData, 0, 0); + + // pulling pixels + if (flipY) + { + canvasBuffer.context.scale(1, -1); + canvasBuffer.context.drawImage(canvasBuffer.canvas, 0, -height); + } + + if (generated) + { + renderTexture.destroy(true); + } + + // send the canvas back.. + return canvasBuffer.canvas; +}; + +/** + * Will return a one-dimensional array containing the pixel data of the entire texture in RGBA + * order, with integer values between 0 and 255 (included). + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {Uint8Array} One-dimensional array containing the pixel data of the entire texture + */ +Extract.prototype.pixels = function pixels (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + + // bind the buffer + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = renderer.resolution; + + frame = TEMP_RECT; + frame.width = renderer.width; + frame.height = renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = frame.width * resolution; + var height = frame.height * resolution; + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + if (generated) + { + renderTexture.destroy(true); + } + + Extract.arrayPostDivide(webglPixels, webglPixels); + + return webglPixels; +}; + +/** + * Destroys the extract + * + */ +Extract.prototype.destroy = function destroy () +{ + this.renderer.extract = null; + this.renderer = null; +}; + +/** + * Takes premultiplied pixel data and produces regular pixel data + * + * @private + * @param pixels {number[] | Uint8Array | Uint8ClampedArray} array of pixel data + * @param out {number[] | Uint8Array | Uint8ClampedArray} output array + */ +Extract.arrayPostDivide = function arrayPostDivide (pixels, out) +{ + for (var i = 0; i < pixels.length; i += 4) + { + var alpha = out[i + 3] = pixels[i + 3]; + + if (alpha !== 0) + { + out[i] = Math.round(Math.min(pixels[i] * 255.0 / alpha, 255.0)); + out[i + 1] = Math.round(Math.min(pixels[i + 1] * 255.0 / alpha, 255.0)); + out[i + 2] = Math.round(Math.min(pixels[i + 2] * 255.0 / alpha, 255.0)); + } + else + { + out[i] = pixels[i]; + out[i + 1] = pixels[i + 1]; + out[i + 2] = pixels[i + 2]; + } + } +}; + +/*! + * @pixi/interaction - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/interaction is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Holds all information related to an Interaction event + * + * @class + * @memberof PIXI.interaction + */ +var InteractionData = function InteractionData() +{ + /** + * This point stores the global coords of where the touch/mouse event happened + * + * @member {PIXI.Point} + */ + this.global = new Point(); + + /** + * The target Sprite that was interacted with + * + * @member {PIXI.Sprite} + */ + this.target = null; + + /** + * When passed to an event handler, this will be the original DOM Event that was captured + * + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent + * @member {MouseEvent|TouchEvent|PointerEvent} + */ + this.originalEvent = null; + + /** + * Unique identifier for this interaction + * + * @member {number} + */ + this.identifier = null; + + /** + * Indicates whether or not the pointer device that created the event is the primary pointer. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary + * @type {Boolean} + */ + this.isPrimary = false; + + /** + * Indicates which button was pressed on the mouse or pointer device to trigger the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button + * @type {number} + */ + this.button = 0; + + /** + * Indicates which buttons are pressed on the mouse or pointer device when the event is triggered. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/buttons + * @type {number} + */ + this.buttons = 0; + + /** + * The width of the pointer's contact along the x-axis, measured in CSS pixels. + * radiusX of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width + * @type {number} + */ + this.width = 0; + + /** + * The height of the pointer's contact along the y-axis, measured in CSS pixels. + * radiusY of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height + * @type {number} + */ + this.height = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX + * @type {number} + */ + this.tiltX = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY + * @type {number} + */ + this.tiltY = 0; + + /** + * The type of pointer that triggered the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType + * @type {string} + */ + this.pointerType = null; + + /** + * Pressure applied by the pointing device during the event. A Touch's force property + * will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure + * @type {number} + */ + this.pressure = 0; + + /** + * From TouchEvents (not PointerEvents triggered by touches), the rotationAngle of the Touch. + * @see https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle + * @type {number} + */ + this.rotationAngle = 0; + + /** + * Twist of a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.twist = 0; + + /** + * Barrel pressure on a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.tangentialPressure = 0; +}; + +var prototypeAccessors$6 = { pointerId: { configurable: true } }; + +/** + * The unique identifier of the pointer. It will be the same as `identifier`. + * @readonly + * @member {number} + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId + */ +prototypeAccessors$6.pointerId.get = function () +{ + return this.identifier; +}; + +/** + * This will return the local coordinates of the specified displayObject for this InteractionData + * + * @param {PIXI.DisplayObject} displayObject - The DisplayObject that you would like the local + * coords off + * @param {PIXI.Point} [point] - A Point object in which to store the value, optional (otherwise + * will create a new point) + * @param {PIXI.Point} [globalPos] - A Point object containing your custom global coords, optional + * (otherwise will use the current global coords) + * @return {PIXI.Point} A point containing the coordinates of the InteractionData position relative + * to the DisplayObject + */ +InteractionData.prototype.getLocalPosition = function getLocalPosition (displayObject, point, globalPos) +{ + return displayObject.worldTransform.applyInverse(globalPos || this.global, point); +}; + +/** + * Copies properties from normalized event data. + * + * @param {Touch|MouseEvent|PointerEvent} event The normalized event data + */ +InteractionData.prototype.copyEvent = function copyEvent (event) +{ + // isPrimary should only change on touchstart/pointerdown, so we don't want to overwrite + // it with "false" on later events when our shim for it on touch events might not be + // accurate + if (event.isPrimary) + { + this.isPrimary = true; + } + this.button = event.button; + // event.buttons is not available in all browsers (ie. Safari), but it does have a non-standard + // event.which property instead, which conveys the same information. + this.buttons = Number.isInteger(event.buttons) ? event.buttons : event.which; + this.width = event.width; + this.height = event.height; + this.tiltX = event.tiltX; + this.tiltY = event.tiltY; + this.pointerType = event.pointerType; + this.pressure = event.pressure; + this.rotationAngle = event.rotationAngle; + this.twist = event.twist || 0; + this.tangentialPressure = event.tangentialPressure || 0; +}; + +/** + * Resets the data for pooling. + */ +InteractionData.prototype.reset = function reset () +{ + // isPrimary is the only property that we really need to reset - everything else is + // guaranteed to be overwritten + this.isPrimary = false; +}; + +Object.defineProperties( InteractionData.prototype, prototypeAccessors$6 ); + +/** + * Event class that mimics native DOM events. + * + * @class + * @memberof PIXI.interaction + */ +var InteractionEvent = function InteractionEvent() +{ + /** + * Whether this event will continue propagating in the tree. + * + * Remaining events for the {@link stopsPropagatingAt} object + * will still be dispatched. + * + * @member {boolean} + */ + this.stopped = false; + + /** + * At which object this event stops propagating. + * + * @private + * @member {PIXI.DisplayObject} + */ + this.stopsPropagatingAt = null; + + /** + * Whether we already reached the element we want to + * stop propagating at. This is important for delayed events, + * where we start over deeper in the tree again. + * + * @private + * @member {boolean} + */ + this.stopPropagationHint = false; + + /** + * The object which caused this event to be dispatched. + * For listener callback see {@link PIXI.interaction.InteractionEvent.currentTarget}. + * + * @member {PIXI.DisplayObject} + */ + this.target = null; + + /** + * The object whose event listener’s callback is currently being invoked. + * + * @member {PIXI.DisplayObject} + */ + this.currentTarget = null; + + /** + * Type of the event + * + * @member {string} + */ + this.type = null; + + /** + * InteractionData related to this event + * + * @member {PIXI.interaction.InteractionData} + */ + this.data = null; +}; + +/** + * Prevents event from reaching any objects other than the current object. + * + */ +InteractionEvent.prototype.stopPropagation = function stopPropagation () +{ + this.stopped = true; + this.stopPropagationHint = true; + this.stopsPropagatingAt = this.currentTarget; +}; + +/** + * Resets the event. + */ +InteractionEvent.prototype.reset = function reset () +{ + this.stopped = false; + this.stopsPropagatingAt = null; + this.stopPropagationHint = false; + this.currentTarget = null; + this.target = null; +}; + +/** + * DisplayObjects with the {@link PIXI.interaction.interactiveTarget} mixin use this class to track interactions + * + * @class + * @private + * @memberof PIXI.interaction + */ +var InteractionTrackingData = function InteractionTrackingData(pointerId) +{ + this._pointerId = pointerId; + this._flags = InteractionTrackingData.FLAGS.NONE; +}; + +var prototypeAccessors$1$3 = { pointerId: { configurable: true },flags: { configurable: true },none: { configurable: true },over: { configurable: true },rightDown: { configurable: true },leftDown: { configurable: true } }; + +/** + * + * @private + * @param {number} flag - The interaction flag to set + * @param {boolean} yn - Should the flag be set or unset + */ +InteractionTrackingData.prototype._doSet = function _doSet (flag, yn) +{ + if (yn) + { + this._flags = this._flags | flag; + } + else + { + this._flags = this._flags & (~flag); + } +}; + +/** + * Unique pointer id of the event + * + * @readonly + * @private + * @member {number} + */ +prototypeAccessors$1$3.pointerId.get = function () +{ + return this._pointerId; +}; + +/** + * State of the tracking data, expressed as bit flags + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.flags.get = function () +{ + return this._flags; +}; + +prototypeAccessors$1$3.flags.set = function (flags) // eslint-disable-line require-jsdoc +{ + this._flags = flags; +}; + +/** + * Is the tracked event inactive (not over or down)? + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.none.get = function () +{ + return this._flags === this.constructor.FLAGS.NONE; +}; + +/** + * Is the tracked event over the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.over.get = function () +{ + return (this._flags & this.constructor.FLAGS.OVER) !== 0; +}; + +prototypeAccessors$1$3.over.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.OVER, yn); +}; + +/** + * Did the right mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.rightDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.RIGHT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.rightDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.RIGHT_DOWN, yn); +}; + +/** + * Did the left mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.leftDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.LEFT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.leftDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.LEFT_DOWN, yn); +}; + +Object.defineProperties( InteractionTrackingData.prototype, prototypeAccessors$1$3 ); + +InteractionTrackingData.FLAGS = Object.freeze({ + NONE: 0, + OVER: 1 << 0, + LEFT_DOWN: 1 << 1, + RIGHT_DOWN: 1 << 2, +}); + +/** + * Interface for classes that represent a hit area. + * + * It is implemented by the following classes: + * - {@link PIXI.Circle} + * - {@link PIXI.Ellipse} + * - {@link PIXI.Polygon} + * - {@link PIXI.RoundedRectangle} + * + * @interface IHitArea + * @memberof PIXI + */ + +/** + * Checks whether the x and y coordinates given are contained within this area + * + * @method + * @name contains + * @memberof PIXI.IHitArea# + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this area + */ + +/** + * Default property values of interactive objects + * Used by {@link PIXI.interaction.InteractionManager} to automatically give all DisplayObjects these properties + * + * @private + * @name interactiveTarget + * @type {Object} + * @memberof PIXI.interaction + * @example + * function MyObject() {} + * + * Object.assign( + * DisplayObject.prototype, + * PIXI.interaction.interactiveTarget + * ); + */ +var interactiveTarget = { + + /** + * Enable interaction events for the DisplayObject. Touch, pointer and mouse + * events will not be emitted unless `interactive` is set to `true`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.on('tap', (event) => { + * //handle event + * }); + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + interactive: false, + + /** + * Determines if the children to the displayObject can be clicked/touched + * Setting this to false allows PixiJS to bypass a recursive `hitTest` function + * + * @member {boolean} + * @memberof PIXI.Container# + */ + interactiveChildren: true, + + /** + * Interaction shape. Children will be hit first, then this shape will be checked. + * Setting this will cause this shape to be checked in hit tests rather than the displayObject's bounds. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.hitArea = new PIXI.Rectangle(0, 0, 100, 100); + * @member {PIXI.IHitArea} + * @memberof PIXI.DisplayObject# + */ + hitArea: null, + + /** + * If enabled, the mouse cursor use the pointer behavior when hovered over the displayObject if it is interactive + * Setting this changes the 'cursor' property to `'pointer'`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.buttonMode = true; + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + get buttonMode() + { + return this.cursor === 'pointer'; + }, + set buttonMode(value) + { + if (value) + { + this.cursor = 'pointer'; + } + else if (this.cursor === 'pointer') + { + this.cursor = null; + } + }, + + /** + * This defines what cursor mode is used when the mouse cursor + * is hovered over the displayObject. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.cursor = 'wait'; + * @see https://developer.mozilla.org/en/docs/Web/CSS/cursor + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + cursor: null, + + /** + * Internal set of all active pointers, by identifier + * + * @member {Map} + * @memberof PIXI.DisplayObject# + * @private + */ + get trackedPointers() + { + if (this._trackedPointers === undefined) { this._trackedPointers = {}; } + + return this._trackedPointers; + }, + + /** + * Map of all tracked pointers, by identifier. Use trackedPointers to access. + * + * @private + * @type {Map} + */ + _trackedPointers: undefined, +}; + +// Mix interactiveTarget into DisplayObject.prototype, +// after deprecation has been handled +DisplayObject.mixin(interactiveTarget); + +var MOUSE_POINTER_ID = 1; + +// helpers for hitTest() - only used inside hitTest() +var hitTestEvent = { + target: null, + data: { + global: null, + }, +}; + +/** + * The interaction manager deals with mouse, touch and pointer events. + * + * Any DisplayObject can be interactive if its `interactive` property is set to true. + * + * This manager also supports multitouch. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.interaction` + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI.interaction + */ +var InteractionManager = /*@__PURE__*/(function (EventEmitter) { + function InteractionManager(renderer, options) + { + EventEmitter.call(this); + + options = options || {}; + + /** + * The renderer this interaction manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * Should default browser actions automatically be prevented. + * Does not apply to pointer events for backwards compatibility + * preventDefault on pointer events stops mouse events from firing + * Thus, for every pointer event, there will always be either a mouse of touch event alongside it. + * + * @member {boolean} + * @default true + */ + this.autoPreventDefault = options.autoPreventDefault !== undefined ? options.autoPreventDefault : true; + + /** + * Frequency in milliseconds that the mousemove, mouseover & mouseout interaction events will be checked. + * + * @member {number} + * @default 10 + */ + this.interactionFrequency = options.interactionFrequency || 10; + + /** + * The mouse data + * + * @member {PIXI.interaction.InteractionData} + */ + this.mouse = new InteractionData(); + this.mouse.identifier = MOUSE_POINTER_ID; + + // setting the mouse to start off far off screen will mean that mouse over does + // not get called before we even move the mouse. + this.mouse.global.set(-999999); + + /** + * Actively tracked InteractionData + * + * @private + * @member {Object.} + */ + this.activeInteractionData = {}; + this.activeInteractionData[MOUSE_POINTER_ID] = this.mouse; + + /** + * Pool of unused InteractionData + * + * @private + * @member {PIXI.interaction.InteractionData[]} + */ + this.interactionDataPool = []; + + /** + * An event data object to handle all the event tracking/dispatching + * + * @member {object} + */ + this.eventData = new InteractionEvent(); + + /** + * The DOM element to bind to. + * + * @protected + * @member {HTMLElement} + */ + this.interactionDOMElement = null; + + /** + * This property determines if mousemove and touchmove events are fired only when the cursor + * is over the object. + * Setting to true will make things work more in line with how the DOM version works. + * Setting to false can make things easier for things like dragging + * It is currently set to false as this is how PixiJS used to work. This will be set to true in + * future versions of pixi. + * + * @member {boolean} + * @default false + */ + this.moveWhenInside = false; + + /** + * Have events been attached to the dom element? + * + * @protected + * @member {boolean} + */ + this.eventsAdded = false; + + /** + * Is the mouse hovering over the renderer? + * + * @protected + * @member {boolean} + */ + this.mouseOverRenderer = false; + + /** + * Does the device support touch events + * https://www.w3.org/TR/touch-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsTouchEvents = 'ontouchstart' in window; + + /** + * Does the device support pointer events + * https://www.w3.org/Submission/pointer-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsPointerEvents = !!window.PointerEvent; + + // this will make it so that you don't have to call bind all the time + + /** + * @private + * @member {Function} + */ + this.onPointerUp = this.onPointerUp.bind(this); + this.processPointerUp = this.processPointerUp.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerCancel = this.onPointerCancel.bind(this); + this.processPointerCancel = this.processPointerCancel.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerDown = this.onPointerDown.bind(this); + this.processPointerDown = this.processPointerDown.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerMove = this.onPointerMove.bind(this); + this.processPointerMove = this.processPointerMove.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOut = this.onPointerOut.bind(this); + this.processPointerOverOut = this.processPointerOverOut.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOver = this.onPointerOver.bind(this); + + /** + * Dictionary of how different cursor modes are handled. Strings are handled as CSS cursor + * values, objects are handled as dictionaries of CSS values for interactionDOMElement, + * and functions are called instead of changing the CSS. + * Default CSS cursor values are provided for 'default' and 'pointer' modes. + * @member {Object.} + */ + this.cursorStyles = { + default: 'inherit', + pointer: 'pointer', + }; + + /** + * The mode of the cursor that is being used. + * The value of this is a key from the cursorStyles dictionary. + * + * @member {string} + */ + this.currentCursorMode = null; + + /** + * Internal cached let. + * + * @private + * @member {string} + */ + this.cursor = null; + + /** + * Internal cached let. + * + * @private + * @member {PIXI.Point} + */ + this._tempPoint = new Point(); + + /** + * The current resolution / device pixel ratio. + * + * @member {number} + * @default 1 + */ + this.resolution = 1; + + /** + * Delayed pointer events. Used to guarantee correct ordering of over/out events. + * + * @private + * @member {Array} + */ + this.delayedEvents = []; + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display + * object. + * + * @event PIXI.interaction.InteractionManager#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. + * + * @event PIXI.interaction.InteractionManager#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. + * + * @event PIXI.interaction.InteractionManager#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. + * + * @event PIXI.interaction.InteractionManager#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. + * + * @event PIXI.interaction.InteractionManager#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. + * + * @event PIXI.interaction.InteractionManager#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown}. + * + * @event PIXI.interaction.InteractionManager#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.interaction.InteractionManager#event:rightdown}. + * + * @event PIXI.interaction.InteractionManager#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object + * + * @event PIXI.interaction.InteractionManager#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * + * @event PIXI.interaction.InteractionManager#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * Not always fired when some buttons are held down while others are released. In those cases, + * use [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown} and + * [mouseup]{@link PIXI.interaction.InteractionManager#event:mouseup} instead. + * + * @event PIXI.interaction.InteractionManager#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event + * + * @event PIXI.interaction.InteractionManager#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * + * @event PIXI.interaction.InteractionManager#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.interaction.InteractionManager#event:pointerdown}. + * + * @event PIXI.interaction.InteractionManager#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object + * + * @event PIXI.interaction.InteractionManager#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * + * @event PIXI.interaction.InteractionManager#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * + * @event PIXI.interaction.InteractionManager#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch + * + * @event PIXI.interaction.InteractionManager#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * + * @event PIXI.interaction.InteractionManager#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.interaction.InteractionManager#event:touchstart}. + * + * @event PIXI.interaction.InteractionManager#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * + * @event PIXI.interaction.InteractionManager#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display. + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.DisplayObject#event:mousedown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.DisplayObject#event:rightdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.DisplayObject#event:pointerdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.DisplayObject#event:touchstart}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + this.setTargetElement(this.renderer.view, this.renderer.resolution); + } + + if ( EventEmitter ) InteractionManager.__proto__ = EventEmitter; + InteractionManager.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + InteractionManager.prototype.constructor = InteractionManager; + + /** + * Hit tests a point against the display tree, returning the first interactive object that is hit. + * + * @param {PIXI.Point} globalPoint - A point to hit test with, in global space. + * @param {PIXI.Container} [root] - The root display object to start from. If omitted, defaults + * to the last rendered root of the associated renderer. + * @return {PIXI.DisplayObject} The hit display object, if any. + */ + InteractionManager.prototype.hitTest = function hitTest (globalPoint, root) + { + // clear the target for our hit test + hitTestEvent.target = null; + // assign the global point + hitTestEvent.data.global = globalPoint; + // ensure safety of the root + if (!root) + { + root = this.renderer._lastObjectRendered; + } + // run the hit test + this.processInteractive(hitTestEvent, root, null, true); + // return our found object - it'll be null if we didn't hit anything + + return hitTestEvent.target; + }; + + /** + * Sets the DOM element which will receive mouse/touch events. This is useful for when you have + * other DOM elements on top of the renderers Canvas element. With this you'll be bale to delegate + * another DOM element to receive those events. + * + * @param {HTMLElement} element - the DOM element which will receive mouse and touch events. + * @param {number} [resolution=1] - The resolution / device pixel ratio of the new element (relative to the canvas). + */ + InteractionManager.prototype.setTargetElement = function setTargetElement (element, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + this.removeEvents(); + + this.interactionDOMElement = element; + + this.resolution = resolution; + + this.addEvents(); + }; + + /** + * Registers all the DOM events + * + * @private + */ + InteractionManager.prototype.addEvents = function addEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.add(this.update, this, UPDATE_PRIORITY.INTERACTION); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = 'none'; + this.interactionDOMElement.style['-ms-touch-action'] = 'none'; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = 'none'; + } + + /** + * These events are added first, so that if pointer events are normalized, they are fired + * in the same order as non-normalized events. ie. pointer event 1st, mouse / touch 2nd + */ + if (this.supportsPointerEvents) + { + window.document.addEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('pointerdown', this.onPointerDown, true); + // pointerout is fired in addition to pointerup (for touch events) and pointercancel + // we already handle those, so for the purposes of what we do in onPointerOut, we only + // care about the pointerleave event + this.interactionDOMElement.addEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('pointerover', this.onPointerOver, true); + window.addEventListener('pointercancel', this.onPointerCancel, true); + window.addEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.addEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('mouseover', this.onPointerOver, true); + window.addEventListener('mouseup', this.onPointerUp, true); + } + + // always look directly for touch events so that we can provide original data + // In a future version we should change this to being just a fallback and rely solely on + // PointerEvents whenever available + if (this.supportsTouchEvents) + { + this.interactionDOMElement.addEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.addEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.addEventListener('touchmove', this.onPointerMove, true); + } + + this.eventsAdded = true; + }; + + /** + * Removes all the DOM events that were previously registered + * + * @private + */ + InteractionManager.prototype.removeEvents = function removeEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.remove(this.update, this); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = ''; + this.interactionDOMElement.style['-ms-touch-action'] = ''; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = ''; + } + + if (this.supportsPointerEvents) + { + window.document.removeEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('pointerdown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('pointerover', this.onPointerOver, true); + window.removeEventListener('pointercancel', this.onPointerCancel, true); + window.removeEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.removeEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('mouseover', this.onPointerOver, true); + window.removeEventListener('mouseup', this.onPointerUp, true); + } + + if (this.supportsTouchEvents) + { + this.interactionDOMElement.removeEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.removeEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.removeEventListener('touchmove', this.onPointerMove, true); + } + + this.interactionDOMElement = null; + + this.eventsAdded = false; + }; + + /** + * Updates the state of interactive objects. + * Invoked by a throttled ticker update from {@link PIXI.Ticker.system}. + * + * @param {number} deltaTime - time delta since last tick + */ + InteractionManager.prototype.update = function update (deltaTime) + { + this._deltaTime += deltaTime; + + if (this._deltaTime < this.interactionFrequency) + { + return; + } + + this._deltaTime = 0; + + if (!this.interactionDOMElement) + { + return; + } + + // if the user move the mouse this check has already been done using the mouse move! + if (this.didMove) + { + this.didMove = false; + + return; + } + + this.cursor = null; + + // Resets the flag as set by a stopPropagation call. This flag is usually reset by a user interaction of any kind, + // but there was a scenario of a display object moving under a static mouse cursor. + // In this case, mouseover and mouseevents would not pass the flag test in dispatchEvent function + for (var k in this.activeInteractionData) + { + // eslint-disable-next-line no-prototype-builtins + if (this.activeInteractionData.hasOwnProperty(k)) + { + var interactionData = this.activeInteractionData[k]; + + if (interactionData.originalEvent && interactionData.pointerType !== 'touch') + { + var interactionEvent = this.configureInteractionEventForDOMEvent( + this.eventData, + interactionData.originalEvent, + interactionData + ); + + this.processInteractive( + interactionEvent, + this.renderer._lastObjectRendered, + this.processPointerOverOut, + true + ); + } + } + } + + this.setCursorMode(this.cursor); + }; + + /** + * Sets the current cursor mode, handling any callbacks or CSS style changes. + * + * @param {string} mode - cursor mode, a key from the cursorStyles dictionary + */ + InteractionManager.prototype.setCursorMode = function setCursorMode (mode) + { + mode = mode || 'default'; + // if the mode didn't actually change, bail early + if (this.currentCursorMode === mode) + { + return; + } + this.currentCursorMode = mode; + var style = this.cursorStyles[mode]; + + // only do things if there is a cursor style for it + if (style) + { + switch (typeof style) + { + case 'string': + // string styles are handled as cursor CSS + this.interactionDOMElement.style.cursor = style; + break; + case 'function': + // functions are just called, and passed the cursor mode + style(mode); + break; + case 'object': + // if it is an object, assume that it is a dictionary of CSS styles, + // apply it to the interactionDOMElement + Object.assign(this.interactionDOMElement.style, style); + break; + } + } + else if (typeof mode === 'string' && !Object.prototype.hasOwnProperty.call(this.cursorStyles, mode)) + { + // if it mode is a string (not a Symbol) and cursorStyles doesn't have any entry + // for the mode, then assume that the dev wants it to be CSS for the cursor. + this.interactionDOMElement.style.cursor = mode; + } + }; + + /** + * Dispatches an event on the display object that was interacted with + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.dispatchEvent = function dispatchEvent (displayObject, eventString, eventData) + { + // Even if the event was stopped, at least dispatch any remaining events + // for the same display object. + if (!eventData.stopPropagationHint || displayObject === eventData.stopsPropagatingAt) + { + eventData.currentTarget = displayObject; + eventData.type = eventString; + + displayObject.emit(eventString, eventData); + + if (displayObject[eventString]) + { + displayObject[eventString](eventData); + } + } + }; + + /** + * Puts a event on a queue to be dispatched later. This is used to guarantee correct + * ordering of over/out events. + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.delayDispatchEvent = function delayDispatchEvent (displayObject, eventString, eventData) + { + this.delayedEvents.push({ displayObject: displayObject, eventString: eventString, eventData: eventData }); + }; + + /** + * Maps x and y coords from a DOM object and maps them correctly to the PixiJS view. The + * resulting value is stored in the point. This takes into account the fact that the DOM + * element could be scaled and positioned anywhere on the screen. + * + * @param {PIXI.Point} point - the point that the result will be stored in + * @param {number} x - the x coord of the position to map + * @param {number} y - the y coord of the position to map + */ + InteractionManager.prototype.mapPositionToPoint = function mapPositionToPoint (point, x, y) + { + var rect; + + // IE 11 fix + if (!this.interactionDOMElement.parentElement) + { + rect = { x: 0, y: 0, width: 0, height: 0 }; + } + else + { + rect = this.interactionDOMElement.getBoundingClientRect(); + } + + var resolutionMultiplier = 1.0 / this.resolution; + + point.x = ((x - rect.left) * (this.interactionDOMElement.width / rect.width)) * resolutionMultiplier; + point.y = ((y - rect.top) * (this.interactionDOMElement.height / rect.height)) * resolutionMultiplier; + }; + + /** + * This function is provides a neat way of crawling through the scene graph and running a + * specified function on all interactive objects it finds. It will also take care of hit + * testing the interactive objects and passes the hit across in the function. + * + * @protected + * @param {PIXI.interaction.InteractionEvent} interactionEvent - event containing the point that + * is tested for collision + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the displayObject + * that will be hit test (recursively crawls its children) + * @param {Function} [func] - the function that will be called on each interactive object. The + * interactionEvent, displayObject and hit will be passed to the function + * @param {boolean} [hitTest] - this indicates if the objects inside should be hit test against the point + * @param {boolean} [interactive] - Whether the displayObject is interactive + * @param {boolean} [skipDelayed] - Whether to process delayed events before returning. This is + * used to avoid processing them too early during recursive calls. + * @return {boolean} returns true if the displayObject hit the point + */ + InteractionManager.prototype.processInteractive = function processInteractive (interactionEvent, displayObject, func, hitTest, interactive, skipDelayed) + { + if (!displayObject || !displayObject.visible) + { + return false; + } + + var point = interactionEvent.data.global; + + // Took a little while to rework this function correctly! But now it is done and nice and optimized! ^_^ + // + // This function will now loop through all objects and then only hit test the objects it HAS + // to, not all of them. MUCH faster.. + // An object will be hit test if the following is true: + // + // 1: It is interactive. + // 2: It belongs to a parent that is interactive AND one of the parents children have not already been hit. + // + // As another little optimization once an interactive object has been hit we can carry on + // through the scenegraph, but we know that there will be no more hits! So we can avoid extra hit tests + // A final optimization is that an object is not hit test directly if a child has already been hit. + + interactive = displayObject.interactive || interactive; + + var hit = false; + var interactiveParent = interactive; + + // Flag here can set to false if the event is outside the parents hitArea or mask + var hitTestChildren = true; + + // If there is a hitArea, no need to test against anything else if the pointer is not within the hitArea + // There is also no longer a need to hitTest children. + if (displayObject.hitArea) + { + if (hitTest) + { + displayObject.worldTransform.applyInverse(point, this._tempPoint); + if (!displayObject.hitArea.contains(this._tempPoint.x, this._tempPoint.y)) + { + hitTest = false; + hitTestChildren = false; + } + else + { + hit = true; + } + } + interactiveParent = false; + } + // If there is a mask, no need to hitTest against anything else if the pointer is not within the mask. + // We still want to hitTestChildren, however, to ensure a mouseout can still be generated. + // https://github.com/pixijs/pixi.js/issues/5135 + else if (displayObject._mask) + { + if (hitTest) + { + if (!(displayObject._mask.containsPoint && displayObject._mask.containsPoint(point))) + { + hitTest = false; + } + } + } + + // ** FREE TIP **! If an object is not interactive or has no buttons in it + // (such as a game scene!) set interactiveChildren to false for that displayObject. + // This will allow PixiJS to completely ignore and bypass checking the displayObjects children. + if (hitTestChildren && displayObject.interactiveChildren && displayObject.children) + { + var children = displayObject.children; + + for (var i = children.length - 1; i >= 0; i--) + { + var child = children[i]; + + // time to get recursive.. if this function will return if something is hit.. + var childHit = this.processInteractive(interactionEvent, child, func, hitTest, interactiveParent, true); + + if (childHit) + { + // its a good idea to check if a child has lost its parent. + // this means it has been removed whilst looping so its best + if (!child.parent) + { + continue; + } + + // we no longer need to hit test any more objects in this container as we we + // now know the parent has been hit + interactiveParent = false; + + // If the child is interactive , that means that the object hit was actually + // interactive and not just the child of an interactive object. + // This means we no longer need to hit test anything else. We still need to run + // through all objects, but we don't need to perform any hit tests. + + if (childHit) + { + if (interactionEvent.target) + { + hitTest = false; + } + hit = true; + } + } + } + } + + // no point running this if the item is not interactive or does not have an interactive parent. + if (interactive) + { + // if we are hit testing (as in we have no hit any objects yet) + // We also don't need to worry about hit testing if once of the displayObjects children + // has already been hit - but only if it was interactive, otherwise we need to keep + // looking for an interactive child, just in case we hit one + if (hitTest && !interactionEvent.target) + { + // already tested against hitArea if it is defined + if (!displayObject.hitArea && displayObject.containsPoint) + { + if (displayObject.containsPoint(point)) + { + hit = true; + } + } + } + + if (displayObject.interactive) + { + if (hit && !interactionEvent.target) + { + interactionEvent.target = displayObject; + } + + if (func) + { + func(interactionEvent, displayObject, !!hit); + } + } + } + + var delayedEvents = this.delayedEvents; + + if (delayedEvents.length && !skipDelayed) + { + // Reset the propagation hint, because we start deeper in the tree again. + interactionEvent.stopPropagationHint = false; + + var delayedLen = delayedEvents.length; + + this.delayedEvents = []; + + for (var i$1 = 0; i$1 < delayedLen; i$1++) + { + var ref = delayedEvents[i$1]; + var displayObject$1 = ref.displayObject; + var eventString = ref.eventString; + var eventData = ref.eventData; + + // When we reach the object we wanted to stop propagating at, + // set the propagation hint. + if (eventData.stopsPropagatingAt === displayObject$1) + { + eventData.stopPropagationHint = true; + } + + this.dispatchEvent(displayObject$1, eventString, eventData); + } + } + + return hit; + }; + + /** + * Is called when the pointer button is pressed down on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being pressed down + */ + InteractionManager.prototype.onPointerDown = function onPointerDown (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + /** + * No need to prevent default on natural pointer events, as there are no side effects + * Normalized events, however, may have the double mousedown/touchstart issue on the native android browser, + * so still need to be prevented. + */ + + // Guaranteed that there will be at least one event in events, and all events must have the same pointer type + + if (this.autoPreventDefault && events[0].isNormalized) + { + var cancelable = originalEvent.cancelable || !('cancelable' in originalEvent); + + if (cancelable) + { + originalEvent.preventDefault(); + } + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerDown, true); + + this.emit('pointerdown', interactionEvent); + if (event.pointerType === 'touch') + { + this.emit('touchstart', interactionEvent); + } + // emit a mouse event for "pen" pointers, the way a browser would emit a fallback event + else if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? 'rightdown' : 'mousedown', this.eventData); + } + } + }; + + /** + * Processes the result of the pointer down check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerDown = function processPointerDown (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + var id = interactionEvent.data.identifier; + + if (hit) + { + if (!displayObject.trackedPointers[id]) + { + displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + this.dispatchEvent(displayObject, 'pointerdown', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchstart', interactionEvent); + } + else if (data.pointerType === 'mouse' || data.pointerType === 'pen') + { + var isRightButton = data.button === 2; + + if (isRightButton) + { + displayObject.trackedPointers[id].rightDown = true; + } + else + { + displayObject.trackedPointers[id].leftDown = true; + } + + this.dispatchEvent(displayObject, isRightButton ? 'rightdown' : 'mousedown', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being released + * @param {boolean} cancelled - true if the pointer is cancelled + * @param {Function} func - Function passed to {@link processInteractive} + */ + InteractionManager.prototype.onPointerComplete = function onPointerComplete (originalEvent, cancelled, func) + { + var events = this.normalizeToPointerData(originalEvent); + + var eventLen = events.length; + + // if the event wasn't targeting our canvas, then consider it to be pointerupoutside + // in all cases (unless it was a pointercancel) + var eventAppend = originalEvent.target !== this.interactionDOMElement ? 'outside' : ''; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + // perform hit testing for events targeting our canvas or cancel events + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, func, cancelled || !eventAppend); + + this.emit(cancelled ? 'pointercancel' : ("pointerup" + eventAppend), interactionEvent); + + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? ("rightup" + eventAppend) : ("mouseup" + eventAppend), interactionEvent); + } + else if (event.pointerType === 'touch') + { + this.emit(cancelled ? 'touchcancel' : ("touchend" + eventAppend), interactionEvent); + this.releaseInteractionDataForPointerId(event.pointerId, interactionData); + } + } + }; + + /** + * Is called when the pointer button is cancelled + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerCancel = function onPointerCancel (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, true, this.processPointerCancel); + }; + + /** + * Processes the result of the pointer cancel check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + */ + InteractionManager.prototype.processPointerCancel = function processPointerCancel (interactionEvent, displayObject) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + if (displayObject.trackedPointers[id] !== undefined) + { + delete displayObject.trackedPointers[id]; + this.dispatchEvent(displayObject, 'pointercancel', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchcancel', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerUp = function onPointerUp (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, false, this.processPointerUp); + }; + + /** + * Processes the result of the pointer up check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerUp = function processPointerUp (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var trackingData = displayObject.trackedPointers[id]; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + // need to track mouse down status in the mouse block so that we can emit + // event in a later block + var isMouseTap = false; + + // Mouse only + if (isMouse) + { + var isRightButton = data.button === 2; + + var flags = InteractionTrackingData.FLAGS; + + var test = isRightButton ? flags.RIGHT_DOWN : flags.LEFT_DOWN; + + var isDown = trackingData !== undefined && (trackingData.flags & test); + + if (hit) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightup' : 'mouseup', interactionEvent); + + if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightclick' : 'click', interactionEvent); + // because we can confirm that the mousedown happened on this object, flag for later emit of pointertap + isMouseTap = true; + } + } + else if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightupoutside' : 'mouseupoutside', interactionEvent); + } + // update the down state of the tracking data + if (trackingData) + { + if (isRightButton) + { + trackingData.rightDown = false; + } + else + { + trackingData.leftDown = false; + } + } + } + + // Pointers and Touches, and Mouse + if (hit) + { + this.dispatchEvent(displayObject, 'pointerup', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchend', interactionEvent); } + + if (trackingData) + { + // emit pointertap if not a mouse, or if the mouse block decided it was a tap + if (!isMouse || isMouseTap) + { + this.dispatchEvent(displayObject, 'pointertap', interactionEvent); + } + if (isTouch) + { + this.dispatchEvent(displayObject, 'tap', interactionEvent); + // touches are no longer over (if they ever were) when we get the touchend + // so we should ensure that we don't keep pretending that they are + trackingData.over = false; + } + } + } + else if (trackingData) + { + this.dispatchEvent(displayObject, 'pointerupoutside', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchendoutside', interactionEvent); } + } + // Only remove the tracking data if there is no over/down state still associated with it + if (trackingData && trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + }; + + /** + * Is called when the pointer moves across the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer moving + */ + InteractionManager.prototype.onPointerMove = function onPointerMove (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + if (events[0].pointerType === 'mouse' || events[0].pointerType === 'pen') + { + this.didMove = true; + + this.cursor = null; + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerMove, true); + + this.emit('pointermove', interactionEvent); + if (event.pointerType === 'touch') { this.emit('touchmove', interactionEvent); } + if (event.pointerType === 'mouse' || event.pointerType === 'pen') { this.emit('mousemove', interactionEvent); } + } + + if (events[0].pointerType === 'mouse') + { + this.setCursorMode(this.cursor); + + // TODO BUG for parents interactive object (border order issue) + } + }; + + /** + * Processes the result of the pointer move check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerMove = function processPointerMove (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + if (isMouse) + { + this.processPointerOverOut(interactionEvent, displayObject, hit); + } + + if (!this.moveWhenInside || hit) + { + this.dispatchEvent(displayObject, 'pointermove', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchmove', interactionEvent); } + if (isMouse) { this.dispatchEvent(displayObject, 'mousemove', interactionEvent); } + } + }; + + /** + * Is called when the pointer is moved out of the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer being moved out + */ + InteractionManager.prototype.onPointerOut = function onPointerOut (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOut, so events will always be length 1 + var event = events[0]; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = false; + this.setCursorMode(null); + } + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerOverOut, false); + + this.emit('pointerout', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseout', interactionEvent); + } + else + { + // we can get touchleave events after touchend, so we want to make sure we don't + // introduce memory leaks + this.releaseInteractionDataForPointerId(interactionData.identifier); + } + }; + + /** + * Processes the result of the pointer over/out check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerOverOut = function processPointerOverOut (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + var trackingData = displayObject.trackedPointers[id]; + + // if we just moused over the display object, then we need to track that state + if (hit && !trackingData) + { + trackingData = displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + + if (trackingData === undefined) { return; } + + if (hit && this.mouseOverRenderer) + { + if (!trackingData.over) + { + trackingData.over = true; + this.delayDispatchEvent(displayObject, 'pointerover', interactionEvent); + if (isMouse) + { + this.delayDispatchEvent(displayObject, 'mouseover', interactionEvent); + } + } + + // only change the cursor if it has not already been changed (by something deeper in the + // display tree) + if (isMouse && this.cursor === null) + { + this.cursor = displayObject.cursor; + } + } + else if (trackingData.over) + { + trackingData.over = false; + this.dispatchEvent(displayObject, 'pointerout', this.eventData); + if (isMouse) + { + this.dispatchEvent(displayObject, 'mouseout', interactionEvent); + } + // if there is no mouse down information for the pointer, then it is safe to delete + if (trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + } + }; + + /** + * Is called when the pointer is moved into the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being moved into the renderer view + */ + InteractionManager.prototype.onPointerOver = function onPointerOver (originalEvent) + { + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOver, so events will always be length 1 + var event = events[0]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = true; + } + + this.emit('pointerover', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseover', interactionEvent); + } + }; + + /** + * Get InteractionData for a given pointerId. Store that data as well + * + * @private + * @param {PointerEvent} event - Normalized pointer event, output from normalizeToPointerData + * @return {PIXI.interaction.InteractionData} - Interaction data for the given pointer identifier + */ + InteractionManager.prototype.getInteractionDataForPointerId = function getInteractionDataForPointerId (event) + { + var pointerId = event.pointerId; + + var interactionData; + + if (pointerId === MOUSE_POINTER_ID || event.pointerType === 'mouse') + { + interactionData = this.mouse; + } + else if (this.activeInteractionData[pointerId]) + { + interactionData = this.activeInteractionData[pointerId]; + } + else + { + interactionData = this.interactionDataPool.pop() || new InteractionData(); + interactionData.identifier = pointerId; + this.activeInteractionData[pointerId] = interactionData; + } + // copy properties from the event, so that we can make sure that touch/pointer specific + // data is available + interactionData.copyEvent(event); + + return interactionData; + }; + + /** + * Return unused InteractionData to the pool, for a given pointerId + * + * @private + * @param {number} pointerId - Identifier from a pointer event + */ + InteractionManager.prototype.releaseInteractionDataForPointerId = function releaseInteractionDataForPointerId (pointerId) + { + var interactionData = this.activeInteractionData[pointerId]; + + if (interactionData) + { + delete this.activeInteractionData[pointerId]; + interactionData.reset(); + this.interactionDataPool.push(interactionData); + } + }; + + /** + * Configure an InteractionEvent to wrap a DOM PointerEvent and InteractionData + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The event to be configured + * @param {PointerEvent} pointerEvent - The DOM event that will be paired with the InteractionEvent + * @param {PIXI.interaction.InteractionData} interactionData - The InteractionData that will be paired + * with the InteractionEvent + * @return {PIXI.interaction.InteractionEvent} the interaction event that was passed in + */ + InteractionManager.prototype.configureInteractionEventForDOMEvent = function configureInteractionEventForDOMEvent (interactionEvent, pointerEvent, interactionData) + { + interactionEvent.data = interactionData; + + this.mapPositionToPoint(interactionData.global, pointerEvent.clientX, pointerEvent.clientY); + + // Not really sure why this is happening, but it's how a previous version handled things + if (pointerEvent.pointerType === 'touch') + { + pointerEvent.globalX = interactionData.global.x; + pointerEvent.globalY = interactionData.global.y; + } + + interactionData.originalEvent = pointerEvent; + interactionEvent.reset(); + + return interactionEvent; + }; + + /** + * Ensures that the original event object contains all data that a regular pointer event would have + * + * @private + * @param {TouchEvent|MouseEvent|PointerEvent} event - The original event data from a touch or mouse event + * @return {PointerEvent[]} An array containing a single normalized pointer event, in the case of a pointer + * or mouse event, or a multiple normalized pointer events if there are multiple changed touches + */ + InteractionManager.prototype.normalizeToPointerData = function normalizeToPointerData (event) + { + var normalizedEvents = []; + + if (this.supportsTouchEvents && event instanceof TouchEvent) + { + for (var i = 0, li = event.changedTouches.length; i < li; i++) + { + var touch = event.changedTouches[i]; + + if (typeof touch.button === 'undefined') { touch.button = event.touches.length ? 1 : 0; } + if (typeof touch.buttons === 'undefined') { touch.buttons = event.touches.length ? 1 : 0; } + if (typeof touch.isPrimary === 'undefined') + { + touch.isPrimary = event.touches.length === 1 && event.type === 'touchstart'; + } + if (typeof touch.width === 'undefined') { touch.width = touch.radiusX || 1; } + if (typeof touch.height === 'undefined') { touch.height = touch.radiusY || 1; } + if (typeof touch.tiltX === 'undefined') { touch.tiltX = 0; } + if (typeof touch.tiltY === 'undefined') { touch.tiltY = 0; } + if (typeof touch.pointerType === 'undefined') { touch.pointerType = 'touch'; } + if (typeof touch.pointerId === 'undefined') { touch.pointerId = touch.identifier || 0; } + if (typeof touch.pressure === 'undefined') { touch.pressure = touch.force || 0.5; } + if (typeof touch.twist === 'undefined') { touch.twist = 0; } + if (typeof touch.tangentialPressure === 'undefined') { touch.tangentialPressure = 0; } + // TODO: Remove these, as layerX/Y is not a standard, is deprecated, has uneven + // support, and the fill ins are not quite the same + // offsetX/Y might be okay, but is not the same as clientX/Y when the canvas's top + // left is not 0,0 on the page + if (typeof touch.layerX === 'undefined') { touch.layerX = touch.offsetX = touch.clientX; } + if (typeof touch.layerY === 'undefined') { touch.layerY = touch.offsetY = touch.clientY; } + + // mark the touch as normalized, just so that we know we did it + touch.isNormalized = true; + + normalizedEvents.push(touch); + } + } + // apparently PointerEvent subclasses MouseEvent, so yay + else if (event instanceof MouseEvent && (!this.supportsPointerEvents || !(event instanceof window.PointerEvent))) + { + if (typeof event.isPrimary === 'undefined') { event.isPrimary = true; } + if (typeof event.width === 'undefined') { event.width = 1; } + if (typeof event.height === 'undefined') { event.height = 1; } + if (typeof event.tiltX === 'undefined') { event.tiltX = 0; } + if (typeof event.tiltY === 'undefined') { event.tiltY = 0; } + if (typeof event.pointerType === 'undefined') { event.pointerType = 'mouse'; } + if (typeof event.pointerId === 'undefined') { event.pointerId = MOUSE_POINTER_ID; } + if (typeof event.pressure === 'undefined') { event.pressure = 0.5; } + if (typeof event.twist === 'undefined') { event.twist = 0; } + if (typeof event.tangentialPressure === 'undefined') { event.tangentialPressure = 0; } + + // mark the mouse event as normalized, just so that we know we did it + event.isNormalized = true; + + normalizedEvents.push(event); + } + else + { + normalizedEvents.push(event); + } + + return normalizedEvents; + }; + + /** + * Destroys the interaction manager + * + */ + InteractionManager.prototype.destroy = function destroy () + { + this.removeEvents(); + + this.removeAllListeners(); + + this.renderer = null; + + this.mouse = null; + + this.eventData = null; + + this.interactionDOMElement = null; + + this.onPointerDown = null; + this.processPointerDown = null; + + this.onPointerUp = null; + this.processPointerUp = null; + + this.onPointerCancel = null; + this.processPointerCancel = null; + + this.onPointerMove = null; + this.processPointerMove = null; + + this.onPointerOut = null; + this.processPointerOverOut = null; + + this.onPointerOver = null; + + this._tempPoint = null; + }; + + return InteractionManager; +}(eventemitter3)); + +/*! + * @pixi/graphics - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/graphics is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Graphics curves resolution settings. If `adaptive` flag is set to `true`, + * the resolution is calculated based on the curve's length to ensure better visual quality. + * Adaptive draw works with `bezierCurveTo` and `quadraticCurveTo`. + * + * @static + * @constant + * @memberof PIXI + * @name GRAPHICS_CURVES + * @type {object} + * @property {boolean} adaptive=false - flag indicating if the resolution should be adaptive + * @property {number} maxLength=10 - maximal length of a single segment of the curve (if adaptive = false, ignored) + * @property {number} minSegments=8 - minimal number of segments in the curve (if adaptive = false, ignored) + * @property {number} maxSegments=2048 - maximal number of segments in the curve (if adaptive = false, ignored) + */ +var GRAPHICS_CURVES = { + adaptive: true, + maxLength: 10, + minSegments: 8, + maxSegments: 2048, + _segmentsCount: function _segmentsCount(length, defaultSegments) + { + if ( defaultSegments === void 0 ) defaultSegments = 20; + + if (!this.adaptive) + { + return defaultSegments; + } + + var result = Math.ceil(length / this.maxLength); + + if (result < this.minSegments) + { + result = this.minSegments; + } + else if (result > this.maxSegments) + { + result = this.maxSegments; + } + + return result; + }, +}; + +/** + * Fill style object for Graphics. + * + * @class + * @memberof PIXI + */ +var FillStyle = function FillStyle() +{ + this.reset(); +}; + +/** + * Clones the object + * + * @return {PIXI.FillStyle} + */ +FillStyle.prototype.clone = function clone () +{ + var obj = new FillStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + + return obj; +}; + +/** + * Reset + */ +FillStyle.prototype.reset = function reset () +{ + /** + * The hex color value used when coloring the Graphics object. + * + * @member {number} + * @default 1 + */ + this.color = 0xFFFFFF; + + /** + * The alpha value used when filling the Graphics object. + * + * @member {number} + * @default 1 + */ + this.alpha = 1; + + /** + * The texture to be used for the fill. + * + * @member {string} + * @default 0 + */ + this.texture = Texture.WHITE; + + /** + * The transform aplpied to the texture. + * + * @member {string} + * @default 0 + */ + this.matrix = null; + + /** + * If the current fill is visible. + * + * @member {boolean} + * @default false + */ + this.visible = false; +}; + +/** + * Destroy and don't use after this + */ +FillStyle.prototype.destroy = function destroy () +{ + this.texture = null; + this.matrix = null; +}; + +/** + * A class to contain data useful for Graphics objects + * + * @class + * @memberof PIXI + */ +var GraphicsData = function GraphicsData(shape, fillStyle, lineStyle, matrix) +{ + if ( fillStyle === void 0 ) fillStyle = null; + if ( lineStyle === void 0 ) lineStyle = null; + if ( matrix === void 0 ) matrix = null; + + /** + * The shape object to draw. + * @member {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} + */ + this.shape = shape; + + /** + * The style of the line. + * @member {PIXI.LineStyle} + */ + this.lineStyle = lineStyle; + + /** + * The style of the fill. + * @member {PIXI.FillStyle} + */ + this.fillStyle = fillStyle; + + /** + * The transform matrix. + * @member {PIXI.Matrix} + */ + this.matrix = matrix; + + /** + * The type of the shape, see the Const.Shapes file for all the existing types, + * @member {number} + */ + this.type = shape.type; + + /** + * The collection of points. + * @member {number[]} + */ + this.points = []; + + /** + * The collection of holes. + * @member {PIXI.GraphicsData[]} + */ + this.holes = []; +}; + +/** + * Creates a new GraphicsData object with the same values as this one. + * + * @return {PIXI.GraphicsData} Cloned GraphicsData object + */ +GraphicsData.prototype.clone = function clone () +{ + return new GraphicsData( + this.shape, + this.fillStyle, + this.lineStyle, + this.matrix + ); +}; + +/** + * Destroys the Graphics data. + */ +GraphicsData.prototype.destroy = function destroy () +{ + this.shape = null; + this.holes.length = 0; + this.holes = null; + this.points.length = 0; + this.points = null; + this.lineStyle = null; + this.fillStyle = null; +}; + +/** + * Builds a circle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object to draw + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildCircle = { + + build: function build(graphicsData) + { + // need to convert points to a nice regular data + var circleData = graphicsData.shape; + var points = graphicsData.points; + var x = circleData.x; + var y = circleData.y; + var width; + var height; + + points.length = 0; + + // TODO - bit hacky?? + if (graphicsData.type === SHAPES.CIRC) + { + width = circleData.radius; + height = circleData.radius; + } + else + { + width = circleData.width; + height = circleData.height; + } + + if (width === 0 || height === 0) + { + return; + } + + var totalSegs = Math.floor(30 * Math.sqrt(circleData.radius)) + || Math.floor(15 * Math.sqrt(circleData.width + circleData.height)); + + totalSegs /= 2.3; + + var seg = (Math.PI * 2) / totalSegs; + + for (var i = 0; i < totalSegs; i++) + { + points.push( + x + (Math.sin(-seg * i) * width), + y + (Math.cos(-seg * i) * height) + ); + } + + points.push( + points[0], + points[1] + ); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vertPos = verts.length / 2; + var center = vertPos; + + verts.push(graphicsData.shape.x, graphicsData.shape.y); + + for (var i = 0; i < points.length; i += 2) + { + verts.push(points[i], points[i + 1]); + + // add some uvs + indices.push(vertPos++, center, vertPos); + } + }, +}; + +/** + * Builds a line to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine (graphicsData, graphicsGeometry) +{ + if (graphicsData.lineStyle.native) + { + buildNativeLine(graphicsData, graphicsGeometry); + } + else + { + buildLine$1(graphicsData, graphicsGeometry); + } +} + +/** + * Builds a line to draw using the polygon method. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine$1(graphicsData, graphicsGeometry) +{ + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points.slice(); + var eps = graphicsGeometry.closePointEps; + + if (points.length === 0) + { + return; + } + // if the line width is an odd number add 0.5 to align to a whole pixel + // commenting this out fixes #711 and #1620 + // if (graphicsData.lineWidth%2) + // { + // for (i = 0; i < points.length; i++) + // { + // points[i] += 0.5; + // } + // } + + var style = graphicsData.lineStyle; + + // get first and last point.. figure out the middle! + var firstPoint = new Point(points[0], points[1]); + var lastPoint = new Point(points[points.length - 2], points[points.length - 1]); + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + var closedPath = Math.abs(firstPoint.x - lastPoint.x) < eps + && Math.abs(firstPoint.y - lastPoint.y) < eps; + + // if the first point is the last point - gonna have issues :) + if (closedShape) + { + // need to clone as we are going to slightly modify the shape.. + points = points.slice(); + + if (closedPath) + { + points.pop(); + points.pop(); + lastPoint.set(points[points.length - 2], points[points.length - 1]); + } + + var midPointX = lastPoint.x + ((firstPoint.x - lastPoint.x) * 0.5); + var midPointY = lastPoint.y + ((firstPoint.y - lastPoint.y) * 0.5); + + points.unshift(midPointX, midPointY); + points.push(midPointX, midPointY); + } + + var verts = graphicsGeometry.points; + var length = points.length / 2; + var indexCount = points.length; + var indexStart = verts.length / 2; + + // DRAW the Line + var width = style.width / 2; + + // sort color + var p1x = points[0]; + var p1y = points[1]; + var p2x = points[2]; + var p2y = points[3]; + var p3x = 0; + var p3y = 0; + + var perpx = -(p1y - p2y); + var perpy = p1x - p2x; + var perp2x = 0; + var perp2y = 0; + var perp3x = 0; + var perp3y = 0; + + var dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + var ratio = style.alignment;// 0.5; + var r1 = (1 - ratio) * 2; + var r2 = ratio * 2; + + // start + verts.push( + p1x - (perpx * r1), + p1y - (perpy * r1)); + + verts.push( + p1x + (perpx * r2), + p1y + (perpy * r2)); + + for (var i = 1; i < length - 1; ++i) + { + p1x = points[(i - 1) * 2]; + p1y = points[((i - 1) * 2) + 1]; + + p2x = points[i * 2]; + p2y = points[(i * 2) + 1]; + + p3x = points[(i + 1) * 2]; + p3y = points[((i + 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + perp2x = -(p2y - p3y); + perp2y = p2x - p3x; + + dist = Math.sqrt((perp2x * perp2x) + (perp2y * perp2y)); + perp2x /= dist; + perp2y /= dist; + perp2x *= width; + perp2y *= width; + + var a1 = (-perpy + p1y) - (-perpy + p2y); + var b1 = (-perpx + p2x) - (-perpx + p1x); + var c1 = ((-perpx + p1x) * (-perpy + p2y)) - ((-perpx + p2x) * (-perpy + p1y)); + var a2 = (-perp2y + p3y) - (-perp2y + p2y); + var b2 = (-perp2x + p2x) - (-perp2x + p3x); + var c2 = ((-perp2x + p3x) * (-perp2y + p2y)) - ((-perp2x + p2x) * (-perp2y + p3y)); + + var denom = (a1 * b2) - (a2 * b1); + + if (Math.abs(denom) < 0.1) + { + denom += 10.1; + verts.push( + p2x - (perpx * r1), + p2y - (perpy * r1)); + + verts.push( + p2x + (perpx * r2), + p2y + (perpy * r2)); + + continue; + } + + var px = ((b1 * c2) - (b2 * c1)) / denom; + var py = ((a2 * c1) - (a1 * c2)) / denom; + var pdist = ((px - p2x) * (px - p2x)) + ((py - p2y) * (py - p2y)); + + if (pdist > (196 * width * width)) + { + perp3x = perpx - perp2x; + perp3y = perpy - perp2y; + + dist = Math.sqrt((perp3x * perp3x) + (perp3y * perp3y)); + perp3x /= dist; + perp3y /= dist; + perp3x *= width; + perp3y *= width; + + verts.push(p2x - (perp3x * r1), p2y - (perp3y * r1)); + + verts.push(p2x + (perp3x * r2), p2y + (perp3y * r2)); + + verts.push(p2x - (perp3x * r2 * r1), p2y - (perp3y * r1)); + + indexCount++; + } + else + { + verts.push(p2x + ((px - p2x) * r1), p2y + ((py - p2y) * r1)); + + verts.push(p2x - ((px - p2x) * r2), p2y - ((py - p2y) * r2)); + } + } + + p1x = points[(length - 2) * 2]; + p1y = points[((length - 2) * 2) + 1]; + + p2x = points[(length - 1) * 2]; + p2y = points[((length - 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + verts.push(p2x - (perpx * r1), p2y - (perpy * r1)); + + verts.push(p2x + (perpx * r2), p2y + (perpy * r2)); + + var indices = graphicsGeometry.indices; + + // indices.push(indexStart); + + for (var i$1 = 0; i$1 < indexCount - 2; ++i$1) + { + indices.push(indexStart, indexStart + 1, indexStart + 2); + + indexStart++; + } +} + +/** + * Builds a line to draw using the gl.drawArrays(gl.LINES) method + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildNativeLine(graphicsData, graphicsGeometry) +{ + var i = 0; + + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points; + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + + if (points.length === 0) { return; } + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + var length = points.length / 2; + + var startIndex = verts.length / 2; + var currentIndex = startIndex; + + verts.push(points[0], points[1]); + + for (i = 1; i < length; i++) + { + verts.push(points[i * 2], points[(i * 2) + 1]); + indices.push(currentIndex, currentIndex + 1); + + currentIndex++; + } + + if (closedShape) + { + indices.push(currentIndex, startIndex); + } +} + +/** + * Builds a polygon to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildPoly = { + + build: function build(graphicsData) + { + graphicsData.points = graphicsData.shape.points.slice(); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var holes = graphicsData.holes; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + if (points.length >= 6) + { + var holeArray = []; + // Process holes.. + + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + holeArray.push(points.length / 2); + points = points.concat(hole.points); + } + + // sort color + var triangles = earcut_1(points, holeArray, 2); + + if (!triangles) + { + return; + } + + var vertPos = verts.length / 2; + + for (var i$1 = 0; i$1 < triangles.length; i$1 += 3) + { + indices.push(triangles[i$1] + vertPos); + indices.push(triangles[i$1 + 1] + vertPos); + indices.push(triangles[i$1 + 2] + vertPos); + } + + for (var i$2 = 0; i$2 < points.length; i$2++) + { + verts.push(points[i$2]); + } + } + }, +}; + +/** + * Builds a rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRectangle = { + + build: function build(graphicsData) + { + // --- // + // need to convert points to a nice regular data + // + var rectData = graphicsData.shape; + var x = rectData.x; + var y = rectData.y; + var width = rectData.width; + var height = rectData.height; + + var points = graphicsData.points; + + points.length = 0; + + points.push(x, y, + x + width, y, + x + width, y + height, + x, y + height); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + + var vertPos = verts.length / 2; + + verts.push(points[0], points[1], + points[2], points[3], + points[6], points[7], + points[4], points[5]); + + graphicsGeometry.indices.push(vertPos, vertPos + 1, vertPos + 2, + vertPos + 1, vertPos + 2, vertPos + 3); + }, +}; + +/** + * Builds a rounded rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRoundedRectangle = { + + build: function build(graphicsData) + { + var rrectData = graphicsData.shape; + var points = graphicsData.points; + var x = rrectData.x; + var y = rrectData.y; + var width = rrectData.width; + var height = rrectData.height; + + var radius = rrectData.radius; + + points.length = 0; + + quadraticBezierCurve(x, y + radius, + x, y, + x + radius, y, + points); + quadraticBezierCurve(x + width - radius, + y, x + width, y, + x + width, y + radius, + points); + quadraticBezierCurve(x + width, y + height - radius, + x + width, y + height, + x + width - radius, y + height, + points); + quadraticBezierCurve(x + radius, y + height, + x, y + height, + x, y + height - radius, + points); + + // this tiny number deals with the issue that occurs when points overlap and earcut fails to triangulate the item. + // TODO - fix this properly, this is not very elegant.. but it works for now. + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vecPos = verts.length / 2; + + var triangles = earcut_1(points, null, 2); + + for (var i = 0, j = triangles.length; i < j; i += 3) + { + indices.push(triangles[i] + vecPos); + // indices.push(triangles[i] + vecPos); + indices.push(triangles[i + 1] + vecPos); + // indices.push(triangles[i + 2] + vecPos); + indices.push(triangles[i + 2] + vecPos); + } + + for (var i$1 = 0, j$1 = points.length; i$1 < j$1; i$1++) + { + verts.push(points[i$1], points[++i$1]); + } + }, +}; + +/** + * Calculate a single point for a quadratic bezier curve. + * Utility function used by quadraticBezierCurve. + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} n1 - first number + * @param {number} n2 - second number + * @param {number} perc - percentage + * @return {number} the result + * + */ +function getPt(n1, n2, perc) +{ + var diff = n2 - n1; + + return n1 + (diff * perc); +} + +/** + * Calculate the points for a quadratic bezier curve. (helper function..) + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} fromX - Origin point x + * @param {number} fromY - Origin point x + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} [out=[]] - The output array to add points into. If not passed, a new array is created. + * @return {number[]} an array of points + */ +function quadraticBezierCurve(fromX, fromY, cpX, cpY, toX, toY, out) +{ + if ( out === void 0 ) out = []; + + var n = 20; + var points = out; + + var xa = 0; + var ya = 0; + var xb = 0; + var yb = 0; + var x = 0; + var y = 0; + + for (var i = 0, j = 0; i <= n; ++i) + { + j = i / n; + + // The Green Line + xa = getPt(fromX, cpX, j); + ya = getPt(fromY, cpY, j); + xb = getPt(cpX, toX, j); + yb = getPt(cpY, toY, j); + + // The Black Dot + x = getPt(xa, xb, j); + y = getPt(ya, yb, j); + + points.push(x, y); + } + + return points; +} + +var BATCH_POOL = []; +var DRAW_CALL_POOL = []; +var tmpPoint = new Point(); + +/** + * Map of fill commands for each shape type. + * + * @member {Object} + * @private + */ +var fillCommands = {}; + +fillCommands[SHAPES.POLY] = buildPoly; +fillCommands[SHAPES.CIRC] = buildCircle; +fillCommands[SHAPES.ELIP] = buildCircle; +fillCommands[SHAPES.RECT] = buildRectangle; +fillCommands[SHAPES.RREC] = buildRoundedRectangle; + +/** + * A little internal structure to hold interim batch objects. + * + * @private + */ +var BatchPart = function BatchPart() +{ + this.style = null; + this.size = 0; + this.start = 0; + this.attribStart = 0; + this.attribSize = 0; +}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * GraphicsGeometry is designed to not be continually updating the geometry since it's expensive + * to re-tesselate using **earcut**. Consider using {@link PIXI.Mesh} for this use-case, it's much faster. + * + * @class + * @extends PIXI.BatchGeometry + * @memberof PIXI + */ +var GraphicsGeometry = /*@__PURE__*/(function (BatchGeometry) { + function GraphicsGeometry() + { + BatchGeometry.call(this); + + /** + * An array of points to draw, 2 numbers per point + * + * @member {number[]} + * @protected + */ + this.points = []; + + /** + * The collection of colors + * + * @member {number[]} + * @protected + */ + this.colors = []; + + /** + * The UVs collection + * + * @member {number[]} + * @protected + */ + this.uvs = []; + + /** + * The indices of the vertices + * + * @member {number[]} + * @protected + */ + this.indices = []; + + /** + * Reference to the texture IDs. + * + * @member {number[]} + * @protected + */ + this.textureIds = []; + + /** + * The collection of drawn shapes. + * + * @member {PIXI.GraphicsData[]} + * @protected + */ + this.graphicsData = []; + + /** + * Used to detect if the graphics object has changed. + * + * @member {number} + * @protected + */ + this.dirty = 0; + + /** + * Batches need to regenerated if the geometry is updated. + * + * @member {number} + * @protected + */ + this.batchDirty = -1; + + /** + * Used to check if the cache is dirty. + * + * @member {number} + * @protected + */ + this.cacheDirty = -1; + + /** + * Used to detect if we cleared the graphicsData. + * + * @member {number} + * @default 0 + * @protected + */ + this.clearDirty = 0; + + /** + * List of current draw calls drived from the batches. + * + * @member {object[]} + * @protected + */ + this.drawCalls = []; + + /** + * Intermediate abstract format sent to batch system. + * Can be converted to drawCalls or to batchable objects. + * + * @member {object[]} + * @protected + */ + this.batches = []; + + /** + * Index of the last batched shape in the stack of calls. + * + * @member {number} + * @protected + */ + this.shapeIndex = 0; + + /** + * Cached bounds. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + + /** + * The bounds dirty flag. + * + * @member {number} + * @protected + */ + this.boundsDirty = -1; + + /** + * Padding to add to the bounds. + * + * @member {number} + * @default 0 + */ + this.boundsPadding = 0; + + this.batchable = false; + + this.indicesUint16 = null; + + this.uvsFloat32 = null; + + /** + * Minimal distance between points that are considered different. + * Affects line tesselation. + * + * @member {number} + */ + this.closePointEps = 1e-4; + } + + if ( BatchGeometry ) GraphicsGeometry.__proto__ = BatchGeometry; + GraphicsGeometry.prototype = Object.create( BatchGeometry && BatchGeometry.prototype ); + GraphicsGeometry.prototype.constructor = GraphicsGeometry; + + var prototypeAccessors = { bounds: { configurable: true } }; + + /** + * Get the current bounds of the graphic geometry. + * + * @member {PIXI.Bounds} + * @readonly + */ + prototypeAccessors.bounds.get = function () + { + if (this.boundsDirty !== this.dirty) + { + this.boundsDirty = this.dirty; + this.calculateBounds(); + } + + return this._bounds; + }; + + /** + * Call if you changed graphicsData manually. + * Empties all batch buffers. + */ + GraphicsGeometry.prototype.invalidate = function invalidate () + { + this.boundsDirty = -1; + this.dirty++; + this.batchDirty++; + this.shapeIndex = 0; + + this.points.length = 0; + this.colors.length = 0; + this.uvs.length = 0; + this.indices.length = 0; + this.textureIds.length = 0; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var batch = this.batches[i$1]; + + batch.start = 0; + batch.attribStart = 0; + batch.style = null; + BATCH_POOL.push(batch); + } + + this.batches.length = 0; + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.GraphicsGeometry} This GraphicsGeometry object. Good for chaining method calls + */ + GraphicsGeometry.prototype.clear = function clear () + { + if (this.graphicsData.length > 0) + { + this.invalidate(); + this.clearDirty++; + this.graphicsData.length = 0; + } + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.FillStyle} fillStyle - Defines style of the fill. + * @param {PIXI.LineStyle} lineStyle - Defines style of the lines. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawShape = function drawShape (shape, fillStyle, lineStyle, matrix) + { + var data = new GraphicsData(shape, fillStyle, lineStyle, matrix); + + this.graphicsData.push(data); + this.dirty++; + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawHole = function drawHole (shape, matrix) + { + if (!this.graphicsData.length) + { + return null; + } + + var data = new GraphicsData(shape, null, null, matrix); + + var lastShape = this.graphicsData[this.graphicsData.length - 1]; + + data.lineStyle = lastShape.lineStyle; + + lastShape.holes.push(data); + + this.dirty++; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + GraphicsGeometry.prototype.destroy = function destroy (options) + { + BatchGeometry.prototype.destroy.call(this, options); + + // destroy each of the GraphicsData objects + for (var i = 0; i < this.graphicsData.length; ++i) + { + this.graphicsData[i].destroy(); + } + + this.points.length = 0; + this.points = null; + this.colors.length = 0; + this.colors = null; + this.uvs.length = 0; + this.uvs = null; + this.indices.length = 0; + this.indices = null; + this.indexBuffer.destroy(); + this.indexBuffer = null; + this.graphicsData.length = 0; + this.graphicsData = null; + this.drawCalls.length = 0; + this.drawCalls = null; + this.batches.length = 0; + this.batches = null; + this._bounds = null; + }; + + /** + * Check to see if a point is contained within this geometry. + * + * @param {PIXI.Point} point - Point to check if it's contained. + * @return {Boolean} `true` if the point is contained within geometry. + */ + GraphicsGeometry.prototype.containsPoint = function containsPoint (point) + { + var graphicsData = this.graphicsData; + + for (var i = 0; i < graphicsData.length; ++i) + { + var data = graphicsData[i]; + + if (!data.fillStyle.visible) + { + continue; + } + + // only deal with fills.. + if (data.shape) + { + if (data.matrix) + { + data.matrix.applyInverse(point, tmpPoint); + } + else + { + tmpPoint.copyFrom(point); + } + + if (data.shape.contains(tmpPoint.x, tmpPoint.y)) + { + if (data.holes) + { + for (var i$1 = 0; i$1 < data.holes.length; i$1++) + { + var hole = data.holes[i$1]; + + if (hole.shape.contains(tmpPoint.x, tmpPoint.y)) + { + return false; + } + } + } + + return true; + } + } + } + + return false; + }; + + /** + * Generates intermediate batch data. Either gets converted to drawCalls + * or used to convert to batch objects directly by the Graphics object. + */ + GraphicsGeometry.prototype.updateBatches = function updateBatches () + { + if (this.dirty === this.cacheDirty) { return; } + if (this.graphicsData.length === 0) + { + this.batchable = true; + + return; + } + + if (this.dirty !== this.cacheDirty) + { + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + if (data.fillStyle && !data.fillStyle.texture.baseTexture.valid) { return; } + if (data.lineStyle && !data.lineStyle.texture.baseTexture.valid) { return; } + } + } + + this.cacheDirty = this.dirty; + + var uvs = this.uvs; + + var batchPart = null; + var currentTexture = null; + var currentColor = 0; + var currentNative = false; + + if (this.batches.length > 0) + { + batchPart = this.batches[this.batches.length - 1]; + + var style = batchPart.style; + + currentTexture = style.texture.baseTexture; + currentColor = style.color + style.alpha; + currentNative = !!style.native; + } + + for (var i$1 = this.shapeIndex; i$1 < this.graphicsData.length; i$1++) + { + this.shapeIndex++; + + var data$1 = this.graphicsData[i$1]; + var command = fillCommands[data$1.type]; + + var fillStyle = data$1.fillStyle; + var lineStyle = data$1.lineStyle; + + // build out the shapes points.. + command.build(data$1); + + if (data$1.matrix) + { + this.transformPoints(data$1.points, data$1.matrix); + } + + for (var j = 0; j < 2; j++) + { + var style$1 = (j === 0) ? fillStyle : lineStyle; + + if (!style$1.visible) { continue; } + + var nextTexture = style$1.texture.baseTexture; + + var index$1 = this.indices.length; + var attribIndex = this.points.length / 2; + + // close batch if style is different + if (batchPart + && (currentTexture !== nextTexture + || currentColor !== (style$1.color + style$1.alpha) + || currentNative !== !!style$1.native)) + { + batchPart.size = index$1 - batchPart.start; + batchPart.attribSize = attribIndex - batchPart.attribStart; + + if (batchPart.size > 0) + { + batchPart = null; + } + } + // spawn new batch if its first batch or previous was closed + if (!batchPart) + { + batchPart = BATCH_POOL.pop() || new BatchPart(); + this.batches.push(batchPart); + nextTexture.wrapMode = WRAP_MODES.REPEAT; + currentTexture = nextTexture; + currentColor = style$1.color + style$1.alpha; + currentNative = style$1.native; + + batchPart.style = style$1; + batchPart.start = index$1; + batchPart.attribStart = attribIndex; + } + + var start = this.points.length / 2; + + if (j === 0) + { + if (data$1.holes.length) + { + this.processHoles(data$1.holes); + + buildPoly.triangulate(data$1, this); + } + else + { + command.triangulate(data$1, this); + } + } + else + { + buildLine(data$1, this); + + for (var i$2 = 0; i$2 < data$1.holes.length; i$2++) + { + buildLine(data$1.holes[i$2], this); + } + } + + var size = (this.points.length / 2) - start; + + this.addUvs(this.points, uvs, style$1.texture, start, size, style$1.matrix); + } + } + + var index = this.indices.length; + var attrib = this.points.length / 2; + + if (!batchPart) + { + // there are no visible styles in GraphicsData + // its possible that someone wants Graphics just for the bounds + this.batchable = true; + + return; + } + + batchPart.size = index - batchPart.start; + batchPart.attribSize = attrib - batchPart.attribStart; + this.indicesUint16 = new Uint16Array(this.indices); + + // TODO make this a const.. + this.batchable = this.isBatchable(); + + if (this.batchable) + { + this.batchDirty++; + + this.uvsFloat32 = new Float32Array(this.uvs); + + // offset the indices so that it works with the batcher... + for (var i$3 = 0; i$3 < this.batches.length; i$3++) + { + var batch = this.batches[i$3]; + + for (var j$1 = 0; j$1 < batch.size; j$1++) + { + var index$2 = batch.start + j$1; + + this.indicesUint16[index$2] = this.indicesUint16[index$2] - batch.attribStart; + } + } + } + else + { + this.buildDrawCalls(); + } + }; + + /** + * Checks to see if this graphics geometry can be batched. + * Currently it needs to be small enough and not contain any native lines. + * @protected + */ + GraphicsGeometry.prototype.isBatchable = function isBatchable () + { + var batches = this.batches; + + for (var i = 0; i < batches.length; i++) + { + if (batches[i].style.native) + { + return false; + } + } + + return (this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2); + }; + + /** + * Converts intermediate batches data to drawCalls. + * @protected + */ + GraphicsGeometry.prototype.buildDrawCalls = function buildDrawCalls () + { + var TICK = ++BaseTexture._globalBatch; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + var uvs = this.uvs; + var colors = this.colors; + var textureIds = this.textureIds; + + var currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.size = 0; + currentGroup.type = DRAW_MODES.TRIANGLES; + + var textureCount = 0; + var currentTexture = null; + var textureId = 0; + var native = false; + var drawMode = DRAW_MODES.TRIANGLES; + + var index = 0; + + this.drawCalls.push(currentGroup); + + // TODO - this can be simplified + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var data = this.batches[i$1]; + + // TODO add some full on MAX_TEXTURE CODE.. + var MAX_TEXTURES = 8; + + var style = data.style; + + var nextTexture = style.texture.baseTexture; + + if (native !== !!style.native) + { + native = style.native; + drawMode = native ? DRAW_MODES.LINES : DRAW_MODES.TRIANGLES; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + if (currentGroup.size > 0) + { + currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + this.drawCalls.push(currentGroup); + } + + currentGroup.start = index; + currentGroup.size = 0; + currentGroup.textureCount = 0; + currentGroup.type = drawMode; + } + + // TODO add this to the render part.. + nextTexture.touched = 1;// touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + nextTexture.wrapMode = 10497; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + currentGroup.size += data.size; + index += data.size; + + textureId = nextTexture._id; + + this.addColors(colors, style.color, style.alpha, data.attribSize); + this.addTextureIds(textureIds, textureId, data.attribSize); + } + + BaseTexture._globalBatch = TICK; + + // upload.. + // merge for now! + var verts = this.points; + + // verts are 2 positions.. so we * by 3 as there are 6 properties.. then 4 cos its bytes + var glPoints = new ArrayBuffer(verts.length * 3 * 4); + var f32 = new Float32Array(glPoints); + var u32 = new Uint32Array(glPoints); + + var p = 0; + + for (var i$2 = 0; i$2 < verts.length / 2; i$2++) + { + f32[p++] = verts[i$2 * 2]; + f32[p++] = verts[(i$2 * 2) + 1]; + + f32[p++] = uvs[i$2 * 2]; + f32[p++] = uvs[(i$2 * 2) + 1]; + + u32[p++] = colors[i$2]; + + f32[p++] = textureIds[i$2]; + } + + this._buffer.update(glPoints); + this._indexBuffer.update(this.indicesUint16); + }; + + /** + * Process the holes data. + * + * @param {PIXI.GraphicsData[]} holes - Holes to render + * @protected + */ + GraphicsGeometry.prototype.processHoles = function processHoles (holes) + { + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + var command = fillCommands[hole.type]; + + command.build(hole); + + if (hole.matrix) + { + this.transformPoints(hole.points, hole.matrix); + } + } + }; + + /** + * Update the local bounds of the object. Expensive to use performance-wise. + * @protected + */ + GraphicsGeometry.prototype.calculateBounds = function calculateBounds () + { + var minX = Infinity; + var maxX = -Infinity; + + var minY = Infinity; + var maxY = -Infinity; + + if (this.graphicsData.length) + { + var shape = null; + var x = 0; + var y = 0; + var w = 0; + var h = 0; + + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + var type = data.type; + var lineWidth = data.lineStyle ? data.lineStyle.width : 0; + + shape = data.shape; + + if (type === SHAPES.RECT || type === SHAPES.RREC) + { + x = shape.x - (lineWidth / 2); + y = shape.y - (lineWidth / 2); + w = shape.width + lineWidth; + h = shape.height + lineWidth; + + minX = x < minX ? x : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y < minY ? y : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.CIRC) + { + x = shape.x; + y = shape.y; + w = shape.radius + (lineWidth / 2); + h = shape.radius + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.ELIP) + { + x = shape.x; + y = shape.y; + w = shape.width + (lineWidth / 2); + h = shape.height + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else + { + // POLY + var points = shape.points; + var x2 = 0; + var y2 = 0; + var dx = 0; + var dy = 0; + var rw = 0; + var rh = 0; + var cx = 0; + var cy = 0; + + for (var j = 0; j + 2 < points.length; j += 2) + { + x = points[j]; + y = points[j + 1]; + x2 = points[j + 2]; + y2 = points[j + 3]; + dx = Math.abs(x2 - x); + dy = Math.abs(y2 - y); + h = lineWidth; + w = Math.sqrt((dx * dx) + (dy * dy)); + + if (w < 1e-9) + { + continue; + } + + rw = ((h / w * dy) + dx) / 2; + rh = ((h / w * dx) + dy) / 2; + cx = (x2 + x) / 2; + cy = (y2 + y) / 2; + + minX = cx - rw < minX ? cx - rw : minX; + maxX = cx + rw > maxX ? cx + rw : maxX; + + minY = cy - rh < minY ? cy - rh : minY; + maxY = cy + rh > maxY ? cy + rh : maxY; + } + } + } + } + else + { + minX = 0; + maxX = 0; + minY = 0; + maxY = 0; + } + + var padding = this.boundsPadding; + + this._bounds.minX = minX - padding; + this._bounds.maxX = maxX + padding; + + this._bounds.minY = minY - padding; + this._bounds.maxY = maxY + padding; + }; + + /** + * Transform points using matrix. + * + * @protected + * @param {number[]} points - Points to transform + * @param {PIXI.Matrix} matrix - Transform matrix + */ + GraphicsGeometry.prototype.transformPoints = function transformPoints (points, matrix) + { + for (var i = 0; i < points.length / 2; i++) + { + var x = points[(i * 2)]; + var y = points[(i * 2) + 1]; + + points[(i * 2)] = (matrix.a * x) + (matrix.c * y) + matrix.tx; + points[(i * 2) + 1] = (matrix.b * x) + (matrix.d * y) + matrix.ty; + } + }; + + /** + * Add colors. + * + * @protected + * @param {number[]} colors - List of colors to add to + * @param {number} color - Color to add + * @param {number} alpha - Alpha to use + * @param {number} size - Number of colors to add + */ + GraphicsGeometry.prototype.addColors = function addColors (colors, color, alpha, size) + { + // TODO use the premultiply bits Ivan added + var rgb = (color >> 16) + (color & 0xff00) + ((color & 0xff) << 16); + + var rgba = premultiplyTint(rgb, alpha); + + while (size-- > 0) + { + colors.push(rgba); + } + }; + + /** + * Add texture id that the shader/fragment wants to use. + * + * @protected + * @param {number[]} textureIds + * @param {number} id + * @param {number} size + */ + GraphicsGeometry.prototype.addTextureIds = function addTextureIds (textureIds, id, size) + { + while (size-- > 0) + { + textureIds.push(id); + } + }; + + /** + * Generates the UVs for a shape. + * + * @protected + * @param {number[]} verts - Vertices + * @param {number[]} uvs - UVs + * @param {PIXI.Texture} texture - Reference to Texture + * @param {number} start - Index buffer start index. + * @param {number} size - The size/length for index buffer. + * @param {PIXI.Matrix} [matrix] - Optional transform for all points. + */ + GraphicsGeometry.prototype.addUvs = function addUvs (verts, uvs, texture, start, size, matrix) + { + var index = 0; + var uvsStart = uvs.length; + var frame = texture.frame; + + while (index < size) + { + var x = verts[(start + index) * 2]; + var y = verts[((start + index) * 2) + 1]; + + if (matrix) + { + var nx = (matrix.a * x) + (matrix.c * y) + matrix.tx; + + y = (matrix.b * x) + (matrix.d * y) + matrix.ty; + x = nx; + } + + index++; + + uvs.push(x / frame.width, y / frame.height); + } + + var baseTexture = texture.baseTexture; + + if (frame.width < baseTexture.width + || frame.height < baseTexture.height) + { + this.adjustUvs(uvs, texture, uvsStart, size); + } + }; + + /** + * Modify uvs array according to position of texture region + * Does not work with rotated or trimmed textures + * @param {number[]} uvs array + * @param {PIXI.Texture} texture region + * @param {number} start starting index for uvs + * @param {number} size how many points to adjust + */ + GraphicsGeometry.prototype.adjustUvs = function adjustUvs (uvs, texture, start, size) + { + var baseTexture = texture.baseTexture; + var eps = 1e-6; + var finish = start + (size * 2); + var frame = texture.frame; + var scaleX = frame.width / baseTexture.width; + var scaleY = frame.height / baseTexture.height; + var offsetX = frame.x / frame.width; + var offsetY = frame.y / frame.height; + var minX = Math.floor(uvs[start] + eps); + var minY = Math.floor(uvs[start + 1] + eps); + + for (var i = start + 2; i < finish; i += 2) + { + minX = Math.min(minX, Math.floor(uvs[i] + eps)); + minY = Math.min(minY, Math.floor(uvs[i + 1] + eps)); + } + offsetX -= minX; + offsetY -= minY; + for (var i$1 = start; i$1 < finish; i$1 += 2) + { + uvs[i$1] = (uvs[i$1] + offsetX) * scaleX; + uvs[i$1 + 1] = (uvs[i$1 + 1] + offsetY) * scaleY; + } + }; + + Object.defineProperties( GraphicsGeometry.prototype, prototypeAccessors ); + + return GraphicsGeometry; +}(BatchGeometry)); + +/** + * The maximum number of points to consider an object "batchable", + * able to be batched by the renderer's batch system. + * + * @memberof PIXI.GraphicsGeometry + * @static + * @member {number} BATCHABLE_SIZE + * @default 100 + */ +GraphicsGeometry.BATCHABLE_SIZE = 100; + +/** + * Represents the line style for Graphics. + * @memberof PIXI + * @class + * @extends PIXI.FillStyle + */ +var LineStyle = /*@__PURE__*/(function (FillStyle) { + function LineStyle () { + FillStyle.apply(this, arguments); + } + + if ( FillStyle ) LineStyle.__proto__ = FillStyle; + LineStyle.prototype = Object.create( FillStyle && FillStyle.prototype ); + LineStyle.prototype.constructor = LineStyle; + + LineStyle.prototype.clone = function clone () + { + var obj = new LineStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + obj.width = this.width; + obj.alignment = this.alignment; + obj.native = this.native; + + return obj; + }; + /** + * Reset the line style to default. + */ + LineStyle.prototype.reset = function reset () + { + FillStyle.prototype.reset.call(this); + + // Override default line style color + this.color = 0x0; + + /** + * The width (thickness) of any lines drawn. + * + * @member {number} + * @default 0 + */ + this.width = 0; + + /** + * The alignment of any lines drawn (0.5 = middle, 1 = outter, 0 = inner). + * + * @member {number} + * @default 0 + */ + this.alignment = 0.5; + + /** + * If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * + * @member {boolean} + * @default false + */ + this.native = false; + }; + + return LineStyle; +}(FillStyle)); + +/** + * Utilities for bezier curves + * @class + * @private + */ +var BezierUtils = function BezierUtils () {}; + +BezierUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) +{ + var n = 10; + var result = 0.0; + var t = 0.0; + var t2 = 0.0; + var t3 = 0.0; + var nt = 0.0; + var nt2 = 0.0; + var nt3 = 0.0; + var x = 0.0; + var y = 0.0; + var dx = 0.0; + var dy = 0.0; + var prevX = fromX; + var prevY = fromY; + + for (var i = 1; i <= n; ++i) + { + t = i / n; + t2 = t * t; + t3 = t2 * t; + nt = (1.0 - t); + nt2 = nt * nt; + nt3 = nt2 * nt; + + x = (nt3 * fromX) + (3.0 * nt2 * t * cpX) + (3.0 * nt * t2 * cpX2) + (t3 * toX); + y = (nt3 * fromY) + (3.0 * nt2 * t * cpY) + (3 * nt * t2 * cpY2) + (t3 * toY); + dx = prevX - x; + dy = prevY - y; + prevX = x; + prevY = y; + + result += Math.sqrt((dx * dx) + (dy * dy)); + } + + return result; +}; + +/** + * Calculate the points for a bezier curve and then draws it. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Path array to push points into + */ +BezierUtils.curveTo = function curveTo (cpX, cpY, cpX2, cpY2, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + points.length -= 2; + + var n = GRAPHICS_CURVES._segmentsCount( + BezierUtils.curveLength(fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) + ); + + var dt = 0; + var dt2 = 0; + var dt3 = 0; + var t2 = 0; + var t3 = 0; + + points.push(fromX, fromY); + + for (var i = 1, j = 0; i <= n; ++i) + { + j = i / n; + + dt = (1 - j); + dt2 = dt * dt; + dt3 = dt2 * dt; + + t2 = j * j; + t3 = t2 * j; + + points.push( + (dt3 * fromX) + (3 * dt2 * j * cpX) + (3 * dt * t2 * cpX2) + (t3 * toX), + (dt3 * fromY) + (3 * dt2 * j * cpY) + (3 * dt * t2 * cpY2) + (t3 * toY) + ); + } +}; + +/** + * Utilities for quadratic curves + * @class + * @private + */ +var QuadraticUtils = function QuadraticUtils () {}; + +QuadraticUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, toX, toY) +{ + var ax = fromX - (2.0 * cpX) + toX; + var ay = fromY - (2.0 * cpY) + toY; + var bx = (2.0 * cpX) - (2.0 * fromX); + var by = (2.0 * cpY) - (2.0 * fromY); + var a = 4.0 * ((ax * ax) + (ay * ay)); + var b = 4.0 * ((ax * bx) + (ay * by)); + var c = (bx * bx) + (by * by); + + var s = 2.0 * Math.sqrt(a + b + c); + var a2 = Math.sqrt(a); + var a32 = 2.0 * a * a2; + var c2 = 2.0 * Math.sqrt(c); + var ba = b / a2; + + return ( + (a32 * s) + + (a2 * b * (s - c2)) + + ( + ((4.0 * c * a) - (b * b)) + * Math.log(((2.0 * a2) + ba + s) / (ba + c2)) + ) + ) / (4.0 * a32); +}; + +/** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @private + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Points to add segments to. + */ +QuadraticUtils.curveTo = function curveTo (cpX, cpY, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var n = GRAPHICS_CURVES._segmentsCount( + QuadraticUtils.curveLength(fromX, fromY, cpX, cpY, toX, toY) + ); + + var xa = 0; + var ya = 0; + + for (var i = 1; i <= n; ++i) + { + var j = i / n; + + xa = fromX + ((cpX - fromX) * j); + ya = fromY + ((cpY - fromY) * j); + + points.push(xa + (((cpX + ((toX - cpX) * j)) - xa) * j), + ya + (((cpY + ((toY - cpY) * j)) - ya) * j)); + } +}; + +/** + * Utilities for arc curves + * @class + * @private + */ +var ArcUtils = function ArcUtils () {}; + +ArcUtils.curveTo = function curveTo (x1, y1, x2, y2, radius, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var a1 = fromY - y1; + var b1 = fromX - x1; + var a2 = y2 - y1; + var b2 = x2 - x1; + var mm = Math.abs((a1 * b2) - (b1 * a2)); + + if (mm < 1.0e-8 || radius === 0) + { + if (points[points.length - 2] !== x1 || points[points.length - 1] !== y1) + { + points.push(x1, y1); + } + + return null; + } + + var dd = (a1 * a1) + (b1 * b1); + var cc = (a2 * a2) + (b2 * b2); + var tt = (a1 * a2) + (b1 * b2); + var k1 = radius * Math.sqrt(dd) / mm; + var k2 = radius * Math.sqrt(cc) / mm; + var j1 = k1 * tt / dd; + var j2 = k2 * tt / cc; + var cx = (k1 * b2) + (k2 * b1); + var cy = (k1 * a2) + (k2 * a1); + var px = b1 * (k2 + j1); + var py = a1 * (k2 + j1); + var qx = b2 * (k1 + j2); + var qy = a2 * (k1 + j2); + var startAngle = Math.atan2(py - cy, px - cx); + var endAngle = Math.atan2(qy - cy, qx - cx); + + return { + cx: (cx + x1), + cy: (cy + y1), + radius: radius, + startAngle: startAngle, + endAngle: endAngle, + anticlockwise: (b1 * a2 > b2 * a1), + }; +}; + +/** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @private + * @param {number} startX - Start x location of arc + * @param {number} startY - Start y location of arc + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} anticlockwise - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @param {number} n - Number of segments + * @param {number[]} points - Collection of points to add to + */ +ArcUtils.arc = function arc (startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points) +{ + var sweep = endAngle - startAngle; + var n = GRAPHICS_CURVES._segmentsCount( + Math.abs(sweep) * radius, + Math.ceil(Math.abs(sweep) / PI_2) * 40 + ); + + var theta = (sweep) / (n * 2); + var theta2 = theta * 2; + var cTheta = Math.cos(theta); + var sTheta = Math.sin(theta); + var segMinus = n - 1; + var remainder = (segMinus % 1) / segMinus; + + for (var i = 0; i <= segMinus; ++i) + { + var real = i + (remainder * i); + var angle = ((theta) + startAngle + (theta2 * real)); + var c = Math.cos(angle); + var s = -Math.sin(angle); + + points.push( + (((cTheta * c) + (sTheta * s)) * radius) + cx, + (((cTheta * -s) + (sTheta * c)) * radius) + cy + ); + } +}; + +/** + * Draw a star shape with an arbitrary number of points. + * + * @class + * @extends PIXI.Polygon + * @memberof PIXI + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ +var Star = /*@__PURE__*/(function (Polygon) { + function Star(x, y, points, radius, innerRadius, rotation) + { + innerRadius = innerRadius || radius / 2; + + var startAngle = (-1 * Math.PI / 2) + rotation; + var len = points * 2; + var delta = PI_2 / len; + var polygon = []; + + for (var i = 0; i < len; i++) + { + var r = i % 2 ? innerRadius : radius; + var angle = (i * delta) + startAngle; + + polygon.push( + x + (r * Math.cos(angle)), + y + (r * Math.sin(angle)) + ); + } + + Polygon.call(this, polygon); + } + + if ( Polygon ) Star.__proto__ = Polygon; + Star.prototype = Object.create( Polygon && Polygon.prototype ); + Star.prototype.constructor = Star; + + return Star; +}(Polygon)); + +var temp = new Float32Array(3); + +// a default shaders map used by graphics.. +var DEFAULT_SHADERS = {}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * Note that because Graphics can share a GraphicsGeometry with other instances, + * it is necessary to call `destroy()` to properly dereference the underlying + * GraphicsGeometry and avoid a memory leak. Alternatively, keep using the same + * Graphics instance and call `clear()` between redraws. + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Graphics = /*@__PURE__*/(function (Container) { + function Graphics(geometry) + { + if ( geometry === void 0 ) geometry = null; + + Container.call(this); + /** + * Includes vertex positions, face indices, normals, colors, UVs, and + * custom attributes within buffers, reducing the cost of passing all + * this data to the GPU. Can be shared between multiple Mesh or Graphics objects. + * @member {PIXI.GraphicsGeometry} + * @readonly + */ + this.geometry = geometry || new GraphicsGeometry(); + + this.geometry.refCount++; + + /** + * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU. + * Can be shared between multiple Graphics objects. + * @member {PIXI.Shader} + */ + this.shader = null; + + /** + * Represents the WebGL state the Graphics required to render, excludes shader and geometry. E.g., + * blend mode, culling, depth testing, direction of rendering triangles, backface, etc. + * @member {PIXI.State} + */ + this.state = State.for2d(); + + /** + * Current fill style + * + * @member {PIXI.FillStyle} + * @protected + */ + this._fillStyle = new FillStyle(); + + /** + * Current line style + * + * @member {PIXI.LineStyle} + * @protected + */ + this._lineStyle = new LineStyle(); + + /** + * Current shape transform matrix. + * + * @member {PIXI.Matrix} + * @protected + */ + this._matrix = null; + + /** + * Current hole mode is enabled. + * + * @member {boolean} + * @default false + * @protected + */ + this._holeMode = false; + + /** + * Current path + * + * @member {PIXI.Polygon} + * @protected + */ + this.currentPath = null; + + /** + * When cacheAsBitmap is set to true the graphics object will be rendered as if it was a sprite. + * This is useful if your graphics element does not change often, as it will speed up the rendering + * of the object in exchange for taking up texture memory. It is also useful if you need the graphics + * object to be anti-aliased, because it will be rendered using canvas. This is not recommended if + * you are constantly redrawing the graphics element. + * + * @name cacheAsBitmap + * @member {boolean} + * @memberof PIXI.Graphics# + * @default false + */ + + /** + * A collections of batches! These can be drawn by the renderer batch system. + * + * @protected + * @member {object[]} + */ + this.batches = []; + + /** + * Update dirty for limiting calculating tints for batches. + * + * @protected + * @member {number} + * @default -1 + */ + this.batchTint = -1; + + /** + * Copy of the object vertex data. + * + * @protected + * @member {Float32Array} + */ + this.vertexData = null; + + this._transformID = -1; + this.batchDirty = -1; + + /** + * Renderer plugin for batching + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + // Set default + this.tint = 0xFFFFFF; + this.blendMode = BLEND_MODES.NORMAL; + } + + if ( Container ) Graphics.__proto__ = Container; + Graphics.prototype = Object.create( Container && Container.prototype ); + Graphics.prototype.constructor = Graphics; + + var prototypeAccessors = { blendMode: { configurable: true },tint: { configurable: true },fill: { configurable: true },line: { configurable: true } }; + + /** + * Creates a new Graphics object with the same values as this one. + * Note that the only the properties of the object are cloned, not its transform (position,scale,etc) + * + * @return {PIXI.Graphics} A clone of the graphics object + */ + Graphics.prototype.clone = function clone () + { + this.finishPoly(); + + return new Graphics(this.geometry); + }; + + /** + * The blend mode to be applied to the graphic shape. Apply a value of + * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL; + * @see PIXI.BLEND_MODES + */ + prototypeAccessors.blendMode.set = function (value) + { + this.state.blendMode = value; + }; + + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + /** + * The tint applied to the graphic shape. This is a hex value. A value of + * 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + prototypeAccessors.tint.set = function (value) + { + this._tint = value; + }; + + /** + * The current fill style. + * + * @member {PIXI.FillStyle} + * @readonly + */ + prototypeAccessors.fill.get = function () + { + return this._fillStyle; + }; + + /** + * The current line style. + * + * @member {PIXI.LineStyle} + * @readonly + */ + prototypeAccessors.line.get = function () + { + return this._lineStyle; + }; + + /** + * Specifies the line style used for subsequent calls to Graphics methods such as the lineTo() + * method or the drawCircle() method. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineStyle = function lineStyle (width, color, alpha, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + this.lineTextureStyle(width, Texture.WHITE, color, alpha, null, alignment, native); + + return this; + }; + + /** + * Like line style but support texture for line fill. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to use + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {PIXI.Matrix} [matrix=null] Texture matrix to transform texture + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTextureStyle = function lineTextureStyle (width, texture, color, alpha, + matrix, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = width > 0 && alpha > 0; + + if (!visible) + { + this._lineStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._lineStyle, { + color: color, + width: width, + alpha: alpha, + matrix: matrix, + texture: texture, + alignment: alignment, + native: native, + visible: visible, + }); + } + + return this; + }; + + /** + * Start a polygon object internally + * @protected + */ + Graphics.prototype.startPoly = function startPoly () + { + if (this.currentPath) + { + var points = this.currentPath.points; + var len = this.currentPath.points.length; + + if (len > 2) + { + this.drawShape(this.currentPath); + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + this.currentPath.points.push(points[len - 2], points[len - 1]); + } + } + else + { + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + } + }; + + /** + * Finish the polygon object. + * @protected + */ + Graphics.prototype.finishPoly = function finishPoly () + { + if (this.currentPath) + { + if (this.currentPath.points.length > 2) + { + this.drawShape(this.currentPath); + this.currentPath = null; + } + else + { + this.currentPath.points.length = 0; + } + } + }; + + /** + * Moves the current drawing position to x, y. + * + * @param {number} x - the X coordinate to move to + * @param {number} y - the Y coordinate to move to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.moveTo = function moveTo (x, y) + { + this.startPoly(); + this.currentPath.points[0] = x; + this.currentPath.points[1] = y; + + return this; + }; + + /** + * Draws a line using the current line style from the current drawing position to (x, y); + * The current drawing position is then set to (x, y). + * + * @param {number} x - the X coordinate to draw to + * @param {number} y - the Y coordinate to draw to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTo = function lineTo (x, y) + { + if (!this.currentPath) + { + this.moveTo(0, 0); + } + + // remove duplicates.. + var points = this.currentPath.points; + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + if (fromX !== x || fromY !== y) + { + points.push(x, y); + } + + return this; + }; + + /** + * Initialize the curve + * + * @protected + * @param {number} [x=0] + * @param {number} [y=0] + */ + Graphics.prototype._initCurve = function _initCurve (x, y) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + if (this.currentPath) + { + if (this.currentPath.points.length === 0) + { + this.currentPath.points = [x, y]; + } + } + else + { + this.moveTo(x, y); + } + }; + + /** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.quadraticCurveTo = function quadraticCurveTo (cpX, cpY, toX, toY) + { + this._initCurve(); + + var points = this.currentPath.points; + + if (points.length === 0) + { + this.moveTo(0, 0); + } + + QuadraticUtils.curveTo(cpX, cpY, toX, toY, points); + + return this; + }; + + /** + * Calculate the points for a bezier curve and then draws it. + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.bezierCurveTo = function bezierCurveTo (cpX, cpY, cpX2, cpY2, toX, toY) + { + this._initCurve(); + + BezierUtils.curveTo(cpX, cpY, cpX2, cpY2, toX, toY, this.currentPath.points); + + return this; + }; + + /** + * The arcTo() method creates an arc/curve between two tangents on the canvas. + * + * "borrowed" from https://code.google.com/p/fxcanvas/ - thanks google! + * + * @param {number} x1 - The x-coordinate of the first tangent point of the arc + * @param {number} y1 - The y-coordinate of the first tangent point of the arc + * @param {number} x2 - The x-coordinate of the end of the arc + * @param {number} y2 - The y-coordinate of the end of the arc + * @param {number} radius - The radius of the arc + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arcTo = function arcTo (x1, y1, x2, y2, radius) + { + this._initCurve(x1, y1); + + var points = this.currentPath.points; + + var result = ArcUtils.curveTo(x1, y1, x2, y2, radius, points); + + if (result) + { + var cx = result.cx; + var cy = result.cy; + var radius$1 = result.radius; + var startAngle = result.startAngle; + var endAngle = result.endAngle; + var anticlockwise = result.anticlockwise; + + this.arc(cx, cy, radius$1, startAngle, endAngle, anticlockwise); + } + + return this; + }; + + /** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arc = function arc (cx, cy, radius, startAngle, endAngle, anticlockwise) + { + if ( anticlockwise === void 0 ) anticlockwise = false; + + if (startAngle === endAngle) + { + return this; + } + + if (!anticlockwise && endAngle <= startAngle) + { + endAngle += PI_2; + } + else if (anticlockwise && startAngle <= endAngle) + { + startAngle += PI_2; + } + + var sweep = endAngle - startAngle; + + if (sweep === 0) + { + return this; + } + + var startX = cx + (Math.cos(startAngle) * radius); + var startY = cy + (Math.sin(startAngle) * radius); + var eps = this.geometry.closePointEps; + + // If the currentPath exists, take its points. Otherwise call `moveTo` to start a path. + var points = this.currentPath ? this.currentPath.points : null; + + if (points) + { + // TODO: make a better fix. + + // We check how far our start is from the last existing point + var xDiff = Math.abs(points[points.length - 2] - startX); + var yDiff = Math.abs(points[points.length - 1] - startY); + + if (xDiff < eps && yDiff < eps) + ; + else + { + points.push(startX, startY); + } + } + else + { + this.moveTo(startX, startY); + points = this.currentPath.points; + } + + ArcUtils.arc(startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points); + + return this; + }; + + /** + * Specifies a simple one-color fill that subsequent calls to other Graphics methods + * (such as lineTo() or drawCircle()) use when drawing. + * + * @param {number} [color=0] - the color of the fill + * @param {number} [alpha=1] - the alpha of the fill + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginFill = function beginFill (color, alpha) + { + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + + return this.beginTextureFill(Texture.WHITE, color, alpha); + }; + + /** + * Begin the texture fill + * + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to fill + * @param {number} [color=0xffffff] - Background to fill behind texture + * @param {number} [alpha=1] - Alpha of fill + * @param {PIXI.Matrix} [matrix=null] - Transform matrix + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginTextureFill = function beginTextureFill (texture, color, alpha, matrix) + { + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = alpha > 0; + + if (!visible) + { + this._fillStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._fillStyle, { + color: color, + alpha: alpha, + texture: texture, + matrix: matrix, + visible: visible, + }); + } + + return this; + }; + + /** + * Applies a fill to the lines and shapes that were added since the last call to the beginFill() method. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.endFill = function endFill () + { + this.finishPoly(); + + this._fillStyle.reset(); + + return this; + }; + + /** + * Draws a rectangle shape. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRect = function drawRect (x, y, width, height) + { + return this.drawShape(new Rectangle(x, y, width, height)); + }; + + /** + * Draw a rectangle shape with rounded/beveled corners. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @param {number} radius - Radius of the rectangle corners + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRoundedRect = function drawRoundedRect (x, y, width, height, radius) + { + return this.drawShape(new RoundedRectangle(x, y, width, height, radius)); + }; + + /** + * Draws a circle. + * + * @param {number} x - The X coordinate of the center of the circle + * @param {number} y - The Y coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawCircle = function drawCircle (x, y, radius) + { + return this.drawShape(new Circle(x, y, radius)); + }; + + /** + * Draws an ellipse. + * + * @param {number} x - The X coordinate of the center of the ellipse + * @param {number} y - The Y coordinate of the center of the ellipse + * @param {number} width - The half width of the ellipse + * @param {number} height - The half height of the ellipse + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawEllipse = function drawEllipse (x, y, width, height) + { + return this.drawShape(new Ellipse(x, y, width, height)); + }; + + /** + * Draws a polygon using the given path. + * + * @param {number[]|PIXI.Point[]|PIXI.Polygon} path - The path data used to construct the polygon. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawPolygon = function drawPolygon (path) + { + var arguments$1 = arguments; + + // prevents an argument assignment deopt + // see section 3.1: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + var points = path; + + var closeStroke = true;// !!this._fillStyle; + + // check if data has points.. + if (points.points) + { + closeStroke = points.closeStroke; + points = points.points; + } + + if (!Array.isArray(points)) + { + // prevents an argument leak deopt + // see section 3.2: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + points = new Array(arguments.length); + + for (var i = 0; i < points.length; ++i) + { + points[i] = arguments$1[i]; // eslint-disable-line prefer-rest-params + } + } + + var shape = new Polygon(points); + + shape.closeStroke = closeStroke; + + this.drawShape(shape); + + return this; + }; + + /** + * Draw any shape. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - Shape to draw + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawShape = function drawShape (shape) + { + if (!this._holeMode) + { + this.geometry.drawShape( + shape, + this._fillStyle.clone(), + this._lineStyle.clone(), + this._matrix + ); + } + else + { + this.geometry.drawHole(shape, this._matrix); + } + + return this; + }; + + /** + * Draw a star shape with an arbitrary number of points. + * + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawStar = function drawStar (x, y, points, radius, innerRadius, rotation) + { + if ( rotation === void 0 ) rotation = 0; + + return this.drawPolygon(new Star(x, y, points, radius, innerRadius, rotation)); + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.clear = function clear () + { + this.geometry.clear(); + this._lineStyle.reset(); + this._fillStyle.reset(); + + this._matrix = null; + this._holeMode = false; + this.currentPath = null; + + return this; + }; + + /** + * True if graphics consists of one rectangle, and thus, can be drawn like a Sprite and + * masked with gl.scissor. + * + * @returns {boolean} True if only 1 rect. + */ + Graphics.prototype.isFastRect = function isFastRect () + { + // will fix this! + return false; + // this.graphicsData.length === 1 + // && this.graphicsData[0].shape.type === SHAPES.RECT + // && !this.graphicsData[0].lineWidth; + }; + + /** + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._render = function _render (renderer) + { + this.finishPoly(); + + var geometry = this.geometry; + + // batch part.. + // batch it! + geometry.updateBatches(); + + if (geometry.batchable) + { + if (this.batchDirty !== geometry.batchDirty) + { + this._populateBatches(); + } + + this._renderBatched(renderer); + } + else + { + // no batching... + renderer.batch.flush(); + + this._renderDirect(renderer); + } + }; + + /** + * Populating batches for rendering + * + * @protected + */ + Graphics.prototype._populateBatches = function _populateBatches () + { + var geometry = this.geometry; + var blendMode = this.blendMode; + + this.batches = []; + this.batchTint = -1; + this._transformID = -1; + this.batchDirty = geometry.batchDirty; + + this.vertexData = new Float32Array(geometry.points); + + for (var i = 0, l = geometry.batches.length; i < l; i++) + { + var gI = geometry.batches[i]; + var color = gI.style.color; + var vertexData = new Float32Array(this.vertexData.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var uvs = new Float32Array(geometry.uvsFloat32.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var indices = new Uint16Array(geometry.indicesUint16.buffer, + gI.start * 2, + gI.size); + + var batch = { + vertexData: vertexData, + blendMode: blendMode, + indices: indices, + uvs: uvs, + _batchRGB: hex2rgb(color), + _tintRGB: color, + _texture: gI.style.texture, + alpha: gI.style.alpha, + worldAlpha: 1 }; + + this.batches[i] = batch; + } + }; + + /** + * Renders the batches using the BathedRenderer plugin + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderBatched = function _renderBatched (renderer) + { + if (!this.batches.length) + { + return; + } + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + + this.calculateVertices(); + this.calculateTints(); + + for (var i = 0, l = this.batches.length; i < l; i++) + { + var batch = this.batches[i]; + + batch.worldAlpha = this.worldAlpha * batch.alpha; + + renderer.plugins[this.pluginName].render(batch); + } + }; + + /** + * Renders the graphics direct + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderDirect = function _renderDirect (renderer) + { + var shader = this._resolveDirectShader(renderer); + + var geometry = this.geometry; + var tint = this.tint; + var worldAlpha = this.worldAlpha; + var uniforms = shader.uniforms; + var drawCalls = geometry.drawCalls; + + // lets set the transfomr + uniforms.translationMatrix = this.transform.worldTransform; + + // and then lets set the tint.. + uniforms.tint[0] = (((tint >> 16) & 0xFF) / 255) * worldAlpha; + uniforms.tint[1] = (((tint >> 8) & 0xFF) / 255) * worldAlpha; + uniforms.tint[2] = ((tint & 0xFF) / 255) * worldAlpha; + uniforms.tint[3] = worldAlpha; + + // the first draw call, we can set the uniforms of the shader directly here. + + // this means that we can tack advantage of the sync function of pixi! + // bind and sync uniforms.. + // there is a way to optimise this.. + renderer.shader.bind(shader); + renderer.geometry.bind(geometry, shader); + + // set state.. + renderer.state.set(this.state); + + // then render the rest of them... + for (var i = 0, l = drawCalls.length; i < l; i++) + { + this._renderDrawCallDirect(renderer, geometry.drawCalls[i]); + } + }; + + /** + * Renders specific DrawCall + * + * @param {PIXI.Renderer} renderer + * @param {PIXI.BatchDrawCall} drawCall + */ + Graphics.prototype._renderDrawCallDirect = function _renderDrawCallDirect (renderer, drawCall) + { + var groupTextureCount = drawCall.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + renderer.texture.bind(drawCall.textures[j], j); + } + + renderer.geometry.draw(drawCall.type, drawCall.size, drawCall.start); + }; + + /** + * Resolves shader for direct rendering + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._resolveDirectShader = function _resolveDirectShader (renderer) + { + var shader = this.shader; + + var pluginName = this.pluginName; + + if (!shader) + { + // if there is no shader here, we can use the default shader. + // and that only gets created if we actually need it.. + // but may be more than one plugins for graphics + if (!DEFAULT_SHADERS[pluginName]) + { + var sampleValues = new Int32Array(16); + + for (var i = 0; i < 16; i++) + { + sampleValues[i] = i; + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: UniformGroup.from({ uSamplers: sampleValues }, true), + }; + + var program = renderer.plugins[pluginName]._shader.program; + + DEFAULT_SHADERS[pluginName] = new Shader(program, uniforms); + } + + shader = DEFAULT_SHADERS[pluginName]; + } + + return shader; + }; + + /** + * Retrieves the bounds of the graphic shape as a rectangle object + * + * @protected + */ + Graphics.prototype._calculateBounds = function _calculateBounds () + { + this.finishPoly(); + var lb = this.geometry.bounds; + + this._bounds.addFrame(this.transform, lb.minX, lb.minY, lb.maxX, lb.maxY); + }; + + /** + * Tests if a point is inside this graphics object + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Graphics.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, Graphics._TEMP_POINT); + + return this.geometry.containsPoint(Graphics._TEMP_POINT); + }; + + /** + * Recalcuate the tint by applying tin to batches using Graphics tint. + * @protected + */ + Graphics.prototype.calculateTints = function calculateTints () + { + if (this.batchTint !== this.tint) + { + this.batchTint = this.tint; + + var tintRGB = hex2rgb(this.tint, temp); + + for (var i = 0; i < this.batches.length; i++) + { + var batch = this.batches[i]; + + var batchTint = batch._batchRGB; + + var r = (tintRGB[0] * batchTint[0]) * 255; + var g = (tintRGB[1] * batchTint[1]) * 255; + var b = (tintRGB[2] * batchTint[2]) * 255; + + // TODO Ivan, can this be done in one go? + var color = (r << 16) + (g << 8) + (b | 0); + + batch._tintRGB = (color >> 16) + + (color & 0xff00) + + ((color & 0xff) << 16); + } + } + }; + + /** + * If there's a transform update or a change to the shape of the + * geometry, recaculate the vertices. + * @protected + */ + Graphics.prototype.calculateVertices = function calculateVertices () + { + if (this._transformID === this.transform._worldID) + { + return; + } + + this._transformID = this.transform._worldID; + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var data = this.geometry.points;// batch.vertexDataOriginal; + var vertexData = this.vertexData; + + var count = 0; + + for (var i = 0; i < data.length; i += 2) + { + var x = data[i]; + var y = data[i + 1]; + + vertexData[count++] = (a * x) + (c * y) + tx; + vertexData[count++] = (d * y) + (b * x) + ty; + } + }; + + /** + * Closes the current path. + * + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.closePath = function closePath () + { + var currentPath = this.currentPath; + + if (currentPath) + { + // we don't need to add extra point in the end because buildLine will take care of that + currentPath.closeStroke = true; + } + + return this; + }; + + /** + * Apply a matrix to the positional data. + * + * @param {PIXI.Matrix} matrix - Matrix to use for transform current shape. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.setMatrix = function setMatrix (matrix) + { + this._matrix = matrix; + + return this; + }; + + /** + * Begin adding holes to the last draw shape + * IMPORTANT: holes must be fully inside a shape to work + * Also weirdness ensues if holes overlap! + * Ellipses, Circles, Rectangles and Rounded Rectangles cannot be holes or host for holes in CanvasRenderer, + * please use `moveTo` `lineTo`, `quadraticCurveTo` if you rely on pixi-legacy bundle. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.beginHole = function beginHole () + { + this.finishPoly(); + this._holeMode = true; + + return this; + }; + + /** + * End adding holes to the last draw shape + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.endHole = function endHole () + { + this.finishPoly(); + this._holeMode = false; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Graphics.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this.geometry.refCount--; + if (this.geometry.refCount === 0) + { + this.geometry.dispose(); + } + + this._matrix = null; + this.currentPath = null; + this._lineStyle.destroy(); + this._lineStyle = null; + this._fillStyle.destroy(); + this._fillStyle = null; + this.geometry = null; + this.shader = null; + this.vertexData = null; + this.batches.length = 0; + this.batches = null; + + Container.prototype.destroy.call(this, options); + }; + + Object.defineProperties( Graphics.prototype, prototypeAccessors ); + + return Graphics; +}(Container)); + +/** + * Temporary point to use for containsPoint + * + * @static + * @private + * @member {PIXI.Point} + */ +Graphics._TEMP_POINT = new Point(); + +/*! + * @pixi/sprite - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint = new Point(); +var indices = new Uint16Array([0, 1, 2, 0, 2, 3]); + +/** + * The Sprite object is the base for all textured objects that are rendered to the screen +* + * A sprite can be created directly from an image like this: + * + * ```js + * let sprite = PIXI.Sprite.from('assets/image.png'); + * ``` + * + * The more efficient way to create sprites is using a {@link PIXI.Spritesheet}, + * as swapping base textures when rendering to the screen is inefficient. + * + * ```js + * PIXI.Loader.shared.add("assets/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["assets/spritesheet.json"].spritesheet; + * let sprite = new PIXI.Sprite(sheet.textures["image.png"]); + * ... + * } + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Sprite = /*@__PURE__*/(function (Container) { + function Sprite(texture) + { + Container.call(this); + + /** + * The anchor point defines the normalized coordinates + * in the texture that map to the position of this + * sprite. + * + * By default, this is `(0,0)` (or `texture.defaultAnchor` + * if you have modified that), which means the position + * `(x,y)` of this `Sprite` will be the top-left corner. + * + * Note: Updating `texture.defaultAnchor` after + * constructing a `Sprite` does _not_ update its anchor. + * + * {@link https://docs.cocos2d-x.org/cocos2d-x/en/sprites/manipulation.html} + * + * @default `texture.defaultAnchor` + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint( + this._onAnchorUpdate, + this, + (texture ? texture.defaultAnchor.x : 0), + (texture ? texture.defaultAnchor.y : 0) + ); + + /** + * The texture that the sprite is using + * + * @private + * @member {PIXI.Texture} + */ + this._texture = null; + + /** + * The width of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._width = 0; + + /** + * The height of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._height = 0; + + /** + * The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect. + * + * @private + * @member {number} + * @default 0xFFFFFF + */ + this._tint = null; + this._tintRGB = null; + this.tint = 0xFFFFFF; + + /** + * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ + this.blendMode = BLEND_MODES.NORMAL; + + /** + * The shader that will be used to render the sprite. Set to null to remove a current shader. + * + * @member {PIXI.Filter|PIXI.Shader} + */ + this.shader = null; + + /** + * Cached tint value so we can tell when the tint is changed. + * Value is used for 2d CanvasRenderer. + * + * @protected + * @member {number} + * @default 0xFFFFFF + */ + this._cachedTint = 0xFFFFFF; + + /** + * this is used to store the uvs data of the sprite, assigned at the same time + * as the vertexData in calculateVertices() + * + * @private + * @member {Float32Array} + */ + this.uvs = null; + + // call texture setter + this.texture = texture || Texture.EMPTY; + + /** + * this is used to store the vertex data of the sprite (basically a quad) + * + * @private + * @member {Float32Array} + */ + this.vertexData = new Float32Array(8); + + /** + * This is used to calculate the bounds of the object IF it is a trimmed sprite + * + * @private + * @member {Float32Array} + */ + this.vertexTrimmedData = null; + + this._transformID = -1; + this._textureID = -1; + + this._transformTrimmedID = -1; + this._textureTrimmedID = -1; + + // Batchable stuff.. + // TODO could make this a mixin? + this.indices = indices; + this.size = 4; + this.start = 0; + + /** + * Plugin that is responsible for rendering this element. + * Allows to customize the rendering process without overriding '_render' & '_renderCanvas' methods. + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = true; + + /** + * Internal roundPixels field + * + * @member {boolean} + * @private + */ + this._roundPixels = settings.ROUND_PIXELS; + } + + if ( Container ) Sprite.__proto__ = Container; + Sprite.prototype = Object.create( Container && Container.prototype ); + Sprite.prototype.constructor = Sprite; + + var prototypeAccessors = { roundPixels: { configurable: true },width: { configurable: true },height: { configurable: true },anchor: { configurable: true },tint: { configurable: true },texture: { configurable: true } }; + + /** + * When the texture is updated, this event will fire to update the scale and frame + * + * @private + */ + Sprite.prototype._onTextureUpdate = function _onTextureUpdate () + { + this._textureID = -1; + this._textureTrimmedID = -1; + this._cachedTint = 0xFFFFFF; + + // so if _width is 0 then width was not set.. + if (this._width) + { + this.scale.x = sign$1(this.scale.x) * this._width / this._texture.orig.width; + } + + if (this._height) + { + this.scale.y = sign$1(this.scale.y) * this._height / this._texture.orig.height; + } + }; + + /** + * Called when the anchor position updates. + * + * @private + */ + Sprite.prototype._onAnchorUpdate = function _onAnchorUpdate () + { + this._transformID = -1; + this._transformTrimmedID = -1; + }; + + /** + * calculates worldTransform * vertices, store it in vertexData + */ + Sprite.prototype.calculateVertices = function calculateVertices () + { + var texture = this._texture; + + if (this._transformID === this.transform._worldID && this._textureID === texture._updateID) + { + return; + } + + // update texture UV here, because base texture can be changed without calling `_onTextureUpdate` + if (this._textureID !== texture._updateID) + { + this.uvs = this._texture._uvs.uvsFloat32; + } + + this._transformID = this.transform._worldID; + this._textureID = texture._updateID; + + // set the vertex data + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + var vertexData = this.vertexData; + var trim = texture.trim; + var orig = texture.orig; + var anchor = this._anchor; + + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the extra + // space before transforming the sprite coords. + w1 = trim.x - (anchor._x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (anchor._y * orig.height); + h0 = h1 + trim.height; + } + else + { + w1 = -anchor._x * orig.width; + w0 = w1 + orig.width; + + h1 = -anchor._y * orig.height; + h0 = h1 + orig.height; + } + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + + if (this._roundPixels) + { + for (var i = 0; i < 8; i++) + { + vertexData[i] = Math.round(vertexData[i]); + } + } + }; + + /** + * calculates worldTransform * vertices for a non texture with a trim. store it in vertexTrimmedData + * This is used to ensure that the true width and height of a trimmed texture is respected + */ + Sprite.prototype.calculateTrimmedVertices = function calculateTrimmedVertices () + { + if (!this.vertexTrimmedData) + { + this.vertexTrimmedData = new Float32Array(8); + } + else if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID) + { + return; + } + + this._transformTrimmedID = this.transform._worldID; + this._textureTrimmedID = this._texture._updateID; + + // lets do some special trim code! + var texture = this._texture; + var vertexData = this.vertexTrimmedData; + var orig = texture.orig; + var anchor = this._anchor; + + // lets calculate the new untrimmed bounds.. + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var w1 = -anchor._x * orig.width; + var w0 = w1 + orig.width; + + var h1 = -anchor._y * orig.height; + var h0 = h1 + orig.height; + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + }; + + /** + * + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The webgl renderer to use. + */ + Sprite.prototype._render = function _render (renderer) + { + this.calculateVertices(); + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + renderer.plugins[this.pluginName].render(this); + }; + + /** + * Updates the bounds of the sprite. + * + * @protected + */ + Sprite.prototype._calculateBounds = function _calculateBounds () + { + var trim = this._texture.trim; + var orig = this._texture.orig; + + // First lets check to see if the current texture has a trim.. + if (!trim || (trim.width === orig.width && trim.height === orig.height)) + { + // no trim! lets use the usual calculations.. + this.calculateVertices(); + this._bounds.addQuad(this.vertexData); + } + else + { + // lets calculate a special trimmed bounds... + this.calculateTrimmedVertices(); + this._bounds.addQuad(this.vertexTrimmedData); + } + }; + + /** + * Gets the local bounds of the sprite object. + * + * @param {PIXI.Rectangle} [rect] - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Sprite.prototype.getLocalBounds = function getLocalBounds (rect) + { + // we can do a fast local bounds if the sprite has no children! + if (this.children.length === 0) + { + this._bounds.minX = this._texture.orig.width * -this._anchor._x; + this._bounds.minY = this._texture.orig.height * -this._anchor._y; + this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x); + this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y); + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + return this._bounds.getRectangle(rect); + } + + return Container.prototype.getLocalBounds.call(this, rect); + }; + + /** + * Tests if a point is inside this sprite + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Sprite.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, tempPoint); + + var width = this._texture.orig.width; + var height = this._texture.orig.height; + var x1 = -width * this.anchor.x; + var y1 = 0; + + if (tempPoint.x >= x1 && tempPoint.x < x1 + width) + { + y1 = -height * this.anchor.y; + + if (tempPoint.y >= y1 && tempPoint.y < y1 + height) + { + return true; + } + } + + return false; + }; + + /** + * Destroys this sprite and optionally its texture and children + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well + */ + Sprite.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this._texture.off('update', this._onTextureUpdate, this); + + this._anchor = null; + + var destroyTexture = typeof options === 'boolean' ? options : options && options.texture; + + if (destroyTexture) + { + var destroyBaseTexture = typeof options === 'boolean' ? options : options && options.baseTexture; + + this._texture.destroy(!!destroyBaseTexture); + } + + this._texture = null; + this.shader = null; + }; + + // some helper functions.. + + /** + * Helper function that creates a new sprite based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Sprite} The newly created sprite + */ + Sprite.from = function from (source, options) + { + var texture = (source instanceof Texture) + ? source + : Texture.from(source, options); + + return new Sprite(texture); + }; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + prototypeAccessors.roundPixels.set = function (value) + { + if (this._roundPixels !== value) + { + this._transformID = -1; + } + this._roundPixels = value; + }; + + prototypeAccessors.roundPixels.get = function () + { + return this._roundPixels; + }; + + /** + * The width of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * The anchor sets the origin point of the text. The default value is taken from the {@link PIXI.Texture|Texture} + * and passed to the constructor. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * If you pass only single parameter, it will set both x and y to the same value as shown in the example below. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.anchor.set(0.5); // This will set the origin to center. (0.5) is same as (0.5, 0.5). + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + this._anchor.copyFrom(value); + }; + + /** + * The tint applied to the sprite. This is a hex value. + * A value of 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._tint = value; + this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16); + }; + + /** + * The texture that the sprite is using + * + * @member {PIXI.Texture} + */ + prototypeAccessors.texture.get = function () + { + return this._texture; + }; + + prototypeAccessors.texture.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._texture === value) + { + return; + } + + this._texture = value || Texture.EMPTY; + this._cachedTint = 0xFFFFFF; + + this._textureID = -1; + this._textureTrimmedID = -1; + + if (value) + { + // wait for the texture to load + if (value.baseTexture.valid) + { + this._onTextureUpdate(); + } + else + { + value.once('update', this._onTextureUpdate, this); + } + } + }; + + Object.defineProperties( Sprite.prototype, prototypeAccessors ); + + return Sprite; +}(Container)); + +/*! + * @pixi/text - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Constants that define the type of gradient on text. + * + * @static + * @constant + * @name TEXT_GRADIENT + * @memberof PIXI + * @type {object} + * @property {number} LINEAR_VERTICAL Vertical gradient + * @property {number} LINEAR_HORIZONTAL Linear gradient + */ +var TEXT_GRADIENT = { + LINEAR_VERTICAL: 0, + LINEAR_HORIZONTAL: 1, +}; + +// disabling eslint for now, going to rewrite this in v5 + +var defaultStyle = { + align: 'left', + breakWords: false, + dropShadow: false, + dropShadowAlpha: 1, + dropShadowAngle: Math.PI / 6, + dropShadowBlur: 0, + dropShadowColor: 'black', + dropShadowDistance: 5, + fill: 'black', + fillGradientType: TEXT_GRADIENT.LINEAR_VERTICAL, + fillGradientStops: [], + fontFamily: 'Arial', + fontSize: 26, + fontStyle: 'normal', + fontVariant: 'normal', + fontWeight: 'normal', + letterSpacing: 0, + lineHeight: 0, + lineJoin: 'miter', + miterLimit: 10, + padding: 0, + stroke: 'black', + strokeThickness: 0, + textBaseline: 'alphabetic', + trim: false, + whiteSpace: 'pre', + wordWrap: false, + wordWrapWidth: 100, + leading: 0, +}; + +var genericFontFamilies = [ + 'serif', + 'sans-serif', + 'monospace', + 'cursive', + 'fantasy', + 'system-ui' ]; + +/** + * A TextStyle Object contains information to decorate a Text objects. + * + * An instance can be shared between multiple Text objects; then changing the style will update all text objects using it. + * + * A tool can be used to generate a text style [here](https://pixijs.io/pixi-text-style). + * + * @class + * @memberof PIXI + */ +var TextStyle = function TextStyle(style) +{ + this.styleID = 0; + + this.reset(); + + deepCopyProperties(this, style, style); +}; + +var prototypeAccessors$7 = { align: { configurable: true },breakWords: { configurable: true },dropShadow: { configurable: true },dropShadowAlpha: { configurable: true },dropShadowAngle: { configurable: true },dropShadowBlur: { configurable: true },dropShadowColor: { configurable: true },dropShadowDistance: { configurable: true },fill: { configurable: true },fillGradientType: { configurable: true },fillGradientStops: { configurable: true },fontFamily: { configurable: true },fontSize: { configurable: true },fontStyle: { configurable: true },fontVariant: { configurable: true },fontWeight: { configurable: true },letterSpacing: { configurable: true },lineHeight: { configurable: true },leading: { configurable: true },lineJoin: { configurable: true },miterLimit: { configurable: true },padding: { configurable: true },stroke: { configurable: true },strokeThickness: { configurable: true },textBaseline: { configurable: true },trim: { configurable: true },whiteSpace: { configurable: true },wordWrap: { configurable: true },wordWrapWidth: { configurable: true } }; + +/** + * Creates a new TextStyle object with the same values as this one. + * Note that the only the properties of the object are cloned. + * + * @return {PIXI.TextStyle} New cloned TextStyle object + */ +TextStyle.prototype.clone = function clone () +{ + var clonedProperties = {}; + + deepCopyProperties(clonedProperties, this, defaultStyle); + + return new TextStyle(clonedProperties); +}; + +/** + * Resets all properties to the defaults specified in TextStyle.prototype._default + */ +TextStyle.prototype.reset = function reset () +{ + deepCopyProperties(this, defaultStyle, defaultStyle); +}; + +/** + * Alignment for multiline text ('left', 'center' or 'right'), does not affect single line text + * + * @member {string} + */ +prototypeAccessors$7.align.get = function () +{ + return this._align; +}; +prototypeAccessors$7.align.set = function (align) // eslint-disable-line require-jsdoc +{ + if (this._align !== align) + { + this._align = align; + this.styleID++; + } +}; + +/** + * Indicates if lines can be wrapped within words, it needs wordWrap to be set to true + * + * @member {boolean} + */ +prototypeAccessors$7.breakWords.get = function () +{ + return this._breakWords; +}; +prototypeAccessors$7.breakWords.set = function (breakWords) // eslint-disable-line require-jsdoc +{ + if (this._breakWords !== breakWords) + { + this._breakWords = breakWords; + this.styleID++; + } +}; + +/** + * Set a drop shadow for the text + * + * @member {boolean} + */ +prototypeAccessors$7.dropShadow.get = function () +{ + return this._dropShadow; +}; +prototypeAccessors$7.dropShadow.set = function (dropShadow) // eslint-disable-line require-jsdoc +{ + if (this._dropShadow !== dropShadow) + { + this._dropShadow = dropShadow; + this.styleID++; + } +}; + +/** + * Set alpha for the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAlpha.get = function () +{ + return this._dropShadowAlpha; +}; +prototypeAccessors$7.dropShadowAlpha.set = function (dropShadowAlpha) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAlpha !== dropShadowAlpha) + { + this._dropShadowAlpha = dropShadowAlpha; + this.styleID++; + } +}; + +/** + * Set a angle of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAngle.get = function () +{ + return this._dropShadowAngle; +}; +prototypeAccessors$7.dropShadowAngle.set = function (dropShadowAngle) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAngle !== dropShadowAngle) + { + this._dropShadowAngle = dropShadowAngle; + this.styleID++; + } +}; + +/** + * Set a shadow blur radius + * + * @member {number} + */ +prototypeAccessors$7.dropShadowBlur.get = function () +{ + return this._dropShadowBlur; +}; +prototypeAccessors$7.dropShadowBlur.set = function (dropShadowBlur) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowBlur !== dropShadowBlur) + { + this._dropShadowBlur = dropShadowBlur; + this.styleID++; + } +}; + +/** + * A fill style to be used on the dropshadow e.g 'red', '#00FF00' + * + * @member {string|number} + */ +prototypeAccessors$7.dropShadowColor.get = function () +{ + return this._dropShadowColor; +}; +prototypeAccessors$7.dropShadowColor.set = function (dropShadowColor) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(dropShadowColor); + if (this._dropShadowColor !== outputColor) + { + this._dropShadowColor = outputColor; + this.styleID++; + } +}; + +/** + * Set a distance of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowDistance.get = function () +{ + return this._dropShadowDistance; +}; +prototypeAccessors$7.dropShadowDistance.set = function (dropShadowDistance) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowDistance !== dropShadowDistance) + { + this._dropShadowDistance = dropShadowDistance; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text e.g 'red', '#00FF00'. + * Can be an array to create a gradient eg ['#000000','#FFFFFF'] + * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle|MDN} + * + * @member {string|string[]|number|number[]|CanvasGradient|CanvasPattern} + */ +prototypeAccessors$7.fill.get = function () +{ + return this._fill; +}; +prototypeAccessors$7.fill.set = function (fill) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(fill); + if (this._fill !== outputColor) + { + this._fill = outputColor; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this can change the type/direction of the gradient. + * See {@link PIXI.TEXT_GRADIENT} + * + * @member {number} + */ +prototypeAccessors$7.fillGradientType.get = function () +{ + return this._fillGradientType; +}; +prototypeAccessors$7.fillGradientType.set = function (fillGradientType) // eslint-disable-line require-jsdoc +{ + if (this._fillGradientType !== fillGradientType) + { + this._fillGradientType = fillGradientType; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this array can set the stop points + * (numbers between 0 and 1) for the color, overriding the default behaviour of evenly spacing them. + * + * @member {number[]} + */ +prototypeAccessors$7.fillGradientStops.get = function () +{ + return this._fillGradientStops; +}; +prototypeAccessors$7.fillGradientStops.set = function (fillGradientStops) // eslint-disable-line require-jsdoc +{ + if (!areArraysEqual(this._fillGradientStops,fillGradientStops)) + { + this._fillGradientStops = fillGradientStops; + this.styleID++; + } +}; + +/** + * The font family + * + * @member {string|string[]} + */ +prototypeAccessors$7.fontFamily.get = function () +{ + return this._fontFamily; +}; +prototypeAccessors$7.fontFamily.set = function (fontFamily) // eslint-disable-line require-jsdoc +{ + if (this.fontFamily !== fontFamily) + { + this._fontFamily = fontFamily; + this.styleID++; + } +}; + +/** + * The font size + * (as a number it converts to px, but as a string, equivalents are '26px','20pt','160%' or '1.6em') + * + * @member {number|string} + */ +prototypeAccessors$7.fontSize.get = function () +{ + return this._fontSize; +}; +prototypeAccessors$7.fontSize.set = function (fontSize) // eslint-disable-line require-jsdoc +{ + if (this._fontSize !== fontSize) + { + this._fontSize = fontSize; + this.styleID++; + } +}; + +/** + * The font style + * ('normal', 'italic' or 'oblique') + * + * @member {string} + */ +prototypeAccessors$7.fontStyle.get = function () +{ + return this._fontStyle; +}; +prototypeAccessors$7.fontStyle.set = function (fontStyle) // eslint-disable-line require-jsdoc +{ + if (this._fontStyle !== fontStyle) + { + this._fontStyle = fontStyle; + this.styleID++; + } +}; + +/** + * The font variant + * ('normal' or 'small-caps') + * + * @member {string} + */ +prototypeAccessors$7.fontVariant.get = function () +{ + return this._fontVariant; +}; +prototypeAccessors$7.fontVariant.set = function (fontVariant) // eslint-disable-line require-jsdoc +{ + if (this._fontVariant !== fontVariant) + { + this._fontVariant = fontVariant; + this.styleID++; + } +}; + +/** + * The font weight + * ('normal', 'bold', 'bolder', 'lighter' and '100', '200', '300', '400', '500', '600', '700', 800' or '900') + * + * @member {string} + */ +prototypeAccessors$7.fontWeight.get = function () +{ + return this._fontWeight; +}; +prototypeAccessors$7.fontWeight.set = function (fontWeight) // eslint-disable-line require-jsdoc +{ + if (this._fontWeight !== fontWeight) + { + this._fontWeight = fontWeight; + this.styleID++; + } +}; + +/** + * The amount of spacing between letters, default is 0 + * + * @member {number} + */ +prototypeAccessors$7.letterSpacing.get = function () +{ + return this._letterSpacing; +}; +prototypeAccessors$7.letterSpacing.set = function (letterSpacing) // eslint-disable-line require-jsdoc +{ + if (this._letterSpacing !== letterSpacing) + { + this._letterSpacing = letterSpacing; + this.styleID++; + } +}; + +/** + * The line height, a number that represents the vertical space that a letter uses + * + * @member {number} + */ +prototypeAccessors$7.lineHeight.get = function () +{ + return this._lineHeight; +}; +prototypeAccessors$7.lineHeight.set = function (lineHeight) // eslint-disable-line require-jsdoc +{ + if (this._lineHeight !== lineHeight) + { + this._lineHeight = lineHeight; + this.styleID++; + } +}; + +/** + * The space between lines + * + * @member {number} + */ +prototypeAccessors$7.leading.get = function () +{ + return this._leading; +}; +prototypeAccessors$7.leading.set = function (leading) // eslint-disable-line require-jsdoc +{ + if (this._leading !== leading) + { + this._leading = leading; + this.styleID++; + } +}; + +/** + * The lineJoin property sets the type of corner created, it can resolve spiked text issues. + * Default is 'miter' (creates a sharp corner). + * + * @member {string} + */ +prototypeAccessors$7.lineJoin.get = function () +{ + return this._lineJoin; +}; +prototypeAccessors$7.lineJoin.set = function (lineJoin) // eslint-disable-line require-jsdoc +{ + if (this._lineJoin !== lineJoin) + { + this._lineJoin = lineJoin; + this.styleID++; + } +}; + +/** + * The miter limit to use when using the 'miter' lineJoin mode + * This can reduce or increase the spikiness of rendered text. + * + * @member {number} + */ +prototypeAccessors$7.miterLimit.get = function () +{ + return this._miterLimit; +}; +prototypeAccessors$7.miterLimit.set = function (miterLimit) // eslint-disable-line require-jsdoc +{ + if (this._miterLimit !== miterLimit) + { + this._miterLimit = miterLimit; + this.styleID++; + } +}; + +/** + * Occasionally some fonts are cropped. Adding some padding will prevent this from happening + * by adding padding to all sides of the text. + * + * @member {number} + */ +prototypeAccessors$7.padding.get = function () +{ + return this._padding; +}; +prototypeAccessors$7.padding.set = function (padding) // eslint-disable-line require-jsdoc +{ + if (this._padding !== padding) + { + this._padding = padding; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text stroke + * e.g 'blue', '#FCFF00' + * + * @member {string|number} + */ +prototypeAccessors$7.stroke.get = function () +{ + return this._stroke; +}; +prototypeAccessors$7.stroke.set = function (stroke) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(stroke); + if (this._stroke !== outputColor) + { + this._stroke = outputColor; + this.styleID++; + } +}; + +/** + * A number that represents the thickness of the stroke. + * Default is 0 (no stroke) + * + * @member {number} + */ +prototypeAccessors$7.strokeThickness.get = function () +{ + return this._strokeThickness; +}; +prototypeAccessors$7.strokeThickness.set = function (strokeThickness) // eslint-disable-line require-jsdoc +{ + if (this._strokeThickness !== strokeThickness) + { + this._strokeThickness = strokeThickness; + this.styleID++; + } +}; + +/** + * The baseline of the text that is rendered. + * + * @member {string} + */ +prototypeAccessors$7.textBaseline.get = function () +{ + return this._textBaseline; +}; +prototypeAccessors$7.textBaseline.set = function (textBaseline) // eslint-disable-line require-jsdoc +{ + if (this._textBaseline !== textBaseline) + { + this._textBaseline = textBaseline; + this.styleID++; + } +}; + +/** + * Trim transparent borders + * + * @member {boolean} + */ +prototypeAccessors$7.trim.get = function () +{ + return this._trim; +}; +prototypeAccessors$7.trim.set = function (trim) // eslint-disable-line require-jsdoc +{ + if (this._trim !== trim) + { + this._trim = trim; + this.styleID++; + } +}; + +/** + * How newlines and spaces should be handled. + * Default is 'pre' (preserve, preserve). + * + * value | New lines | Spaces + * --- | --- | --- + * 'normal' | Collapse | Collapse + * 'pre' | Preserve | Preserve + * 'pre-line' | Preserve | Collapse + * + * @member {string} + */ +prototypeAccessors$7.whiteSpace.get = function () +{ + return this._whiteSpace; +}; +prototypeAccessors$7.whiteSpace.set = function (whiteSpace) // eslint-disable-line require-jsdoc +{ + if (this._whiteSpace !== whiteSpace) + { + this._whiteSpace = whiteSpace; + this.styleID++; + } +}; + +/** + * Indicates if word wrap should be used + * + * @member {boolean} + */ +prototypeAccessors$7.wordWrap.get = function () +{ + return this._wordWrap; +}; +prototypeAccessors$7.wordWrap.set = function (wordWrap) // eslint-disable-line require-jsdoc +{ + if (this._wordWrap !== wordWrap) + { + this._wordWrap = wordWrap; + this.styleID++; + } +}; + +/** + * The width at which text will wrap, it needs wordWrap to be set to true + * + * @member {number} + */ +prototypeAccessors$7.wordWrapWidth.get = function () +{ + return this._wordWrapWidth; +}; +prototypeAccessors$7.wordWrapWidth.set = function (wordWrapWidth) // eslint-disable-line require-jsdoc +{ + if (this._wordWrapWidth !== wordWrapWidth) + { + this._wordWrapWidth = wordWrapWidth; + this.styleID++; + } +}; + +/** + * Generates a font style string to use for `TextMetrics.measureFont()`. + * + * @return {string} Font style string, for passing to `TextMetrics.measureFont()` + */ +TextStyle.prototype.toFontString = function toFontString () +{ + // build canvas api font setting from individual components. Convert a numeric this.fontSize to px + var fontSizeString = (typeof this.fontSize === 'number') ? ((this.fontSize) + "px") : this.fontSize; + + // Clean-up fontFamily property by quoting each font name + // this will support font names with spaces + var fontFamilies = this.fontFamily; + + if (!Array.isArray(this.fontFamily)) + { + fontFamilies = this.fontFamily.split(','); + } + + for (var i = fontFamilies.length - 1; i >= 0; i--) + { + // Trim any extra white-space + var fontFamily = fontFamilies[i].trim(); + + // Check if font already contains strings + if (!(/([\"\'])[^\'\"]+\1/).test(fontFamily) && genericFontFamilies.indexOf(fontFamily) < 0) + { + fontFamily = "\"" + fontFamily + "\""; + } + fontFamilies[i] = fontFamily; + } + + return ((this.fontStyle) + " " + (this.fontVariant) + " " + (this.fontWeight) + " " + fontSizeString + " " + (fontFamilies.join(','))); +}; + +Object.defineProperties( TextStyle.prototype, prototypeAccessors$7 ); + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getSingleColor(color) +{ + if (typeof color === 'number') + { + return hex2string(color); + } + else if ( typeof color === 'string' ) + { + if ( color.indexOf('0x') === 0 ) + { + color = color.replace('0x', '#'); + } + } + + return color; +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getColor(color) +{ + if (!Array.isArray(color)) + { + return getSingleColor(color); + } + else + { + for (var i = 0; i < color.length; ++i) + { + color[i] = getSingleColor(color[i]); + } + + return color; + } +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {Array} array1 First array to compare + * @param {Array} array2 Second array to compare + * @return {boolean} Do the arrays contain the same values in the same order + */ +function areArraysEqual(array1, array2) +{ + if (!Array.isArray(array1) || !Array.isArray(array2)) + { + return false; + } + + if (array1.length !== array2.length) + { + return false; + } + + for (var i = 0; i < array1.length; ++i) + { + if (array1[i] !== array2[i]) + { + return false; + } + } + + return true; +} + +/** + * Utility function to ensure that object properties are copied by value, and not by reference + * @private + * @param {Object} target Target object to copy properties into + * @param {Object} source Source object for the properties to copy + * @param {string} propertyObj Object containing properties names we want to loop over + */ +function deepCopyProperties(target, source, propertyObj) { + for (var prop in propertyObj) { + if (Array.isArray(source[prop])) { + target[prop] = source[prop].slice(); + } else { + target[prop] = source[prop]; + } + } +} + +/** + * The TextMetrics object represents the measurement of a block of text with a specified style. + * + * ```js + * let style = new PIXI.TextStyle({fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}) + * let textMetrics = PIXI.TextMetrics.measureText('Your text', style) + * ``` + * + * @class + * @memberof PIXI + */ +var TextMetrics = function TextMetrics(text, style, width, height, lines, lineWidths, lineHeight, maxLineWidth, fontProperties) +{ + /** + * The text that was measured + * + * @member {string} + */ + this.text = text; + + /** + * The style that was measured + * + * @member {PIXI.TextStyle} + */ + this.style = style; + + /** + * The measured width of the text + * + * @member {number} + */ + this.width = width; + + /** + * The measured height of the text + * + * @member {number} + */ + this.height = height; + + /** + * An array of lines of the text broken by new lines and wrapping is specified in style + * + * @member {string[]} + */ + this.lines = lines; + + /** + * An array of the line widths for each line matched to `lines` + * + * @member {number[]} + */ + this.lineWidths = lineWidths; + + /** + * The measured line height for this style + * + * @member {number} + */ + this.lineHeight = lineHeight; + + /** + * The maximum line width for all measured lines + * + * @member {number} + */ + this.maxLineWidth = maxLineWidth; + + /** + * The font properties object from TextMetrics.measureFont + * + * @member {PIXI.IFontMetrics} + */ + this.fontProperties = fontProperties; +}; + +/** + * Measures the supplied string of text and returns a Rectangle. + * + * @param {string} text - the text to measure. + * @param {PIXI.TextStyle} style - the text style to use for measuring + * @param {boolean} [wordWrap] - optional override for if word-wrap should be applied to the text. + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {PIXI.TextMetrics} measured width and height of the text. + */ +TextMetrics.measureText = function measureText (text, style, wordWrap, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + wordWrap = (wordWrap === undefined || wordWrap === null) ? style.wordWrap : wordWrap; + var font = style.toFontString(); + var fontProperties = TextMetrics.measureFont(font); + + // fallback in case UA disallow canvas data extraction + // (toDataURI, getImageData functions) + if (fontProperties.fontSize === 0) + { + fontProperties.fontSize = style.fontSize; + fontProperties.ascent = style.fontSize; + } + + var context = canvas.getContext('2d'); + + context.font = font; + + var outputText = wordWrap ? TextMetrics.wordWrap(text, style, canvas) : text; + var lines = outputText.split(/(?:\r\n|\r|\n)/); + var lineWidths = new Array(lines.length); + var maxLineWidth = 0; + + for (var i = 0; i < lines.length; i++) + { + var lineWidth = context.measureText(lines[i]).width + ((lines[i].length - 1) * style.letterSpacing); + + lineWidths[i] = lineWidth; + maxLineWidth = Math.max(maxLineWidth, lineWidth); + } + var width = maxLineWidth + style.strokeThickness; + + if (style.dropShadow) + { + width += style.dropShadowDistance; + } + + var lineHeight = style.lineHeight || fontProperties.fontSize + style.strokeThickness; + var height = Math.max(lineHeight, fontProperties.fontSize + style.strokeThickness) + + ((lines.length - 1) * (lineHeight + style.leading)); + + if (style.dropShadow) + { + height += style.dropShadowDistance; + } + + return new TextMetrics( + text, + style, + width, + height, + lines, + lineWidths, + lineHeight + style.leading, + maxLineWidth, + fontProperties + ); +}; + +/** + * Applies newlines to a string to have it optimally fit into the horizontal + * bounds set by the Text object's wordWrapWidth property. + * + * @private + * @param {string} text - String to apply word wrapping to + * @param {PIXI.TextStyle} style - the style to use when wrapping + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {string} New string with new lines applied where required + */ +TextMetrics.wordWrap = function wordWrap (text, style, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + var context = canvas.getContext('2d'); + + var width = 0; + var line = ''; + var lines = ''; + + var cache = {}; + var letterSpacing = style.letterSpacing; + var whiteSpace = style.whiteSpace; + + // How to handle whitespaces + var collapseSpaces = TextMetrics.collapseSpaces(whiteSpace); + var collapseNewlines = TextMetrics.collapseNewlines(whiteSpace); + + // whether or not spaces may be added to the beginning of lines + var canPrependSpaces = !collapseSpaces; + + // There is letterSpacing after every char except the last one + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_! + // so for convenience the above needs to be compared to width + 1 extra letterSpace + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!_ + // ________________________________________________ + // And then the final space is simply no appended to each line + var wordWrapWidth = style.wordWrapWidth + letterSpacing; + + // break text into words, spaces and newline chars + var tokens = TextMetrics.tokenize(text); + + for (var i = 0; i < tokens.length; i++) + { + // get the word, space or newlineChar + var token = tokens[i]; + + // if word is a new line + if (TextMetrics.isNewline(token)) + { + // keep the new line + if (!collapseNewlines) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = !collapseSpaces; + line = ''; + width = 0; + continue; + } + + // if we should collapse new lines + // we simply convert it into a space + token = ' '; + } + + // if we should collapse repeated whitespaces + if (collapseSpaces) + { + // check both this and the last tokens for spaces + var currIsBreakingSpace = TextMetrics.isBreakingSpace(token); + var lastIsBreakingSpace = TextMetrics.isBreakingSpace(line[line.length - 1]); + + if (currIsBreakingSpace && lastIsBreakingSpace) + { + continue; + } + } + + // get word width from cache if possible + var tokenWidth = TextMetrics.getFromCache(token, letterSpacing, cache, context); + + // word is longer than desired bounds + if (tokenWidth > wordWrapWidth) + { + // if we are not already at the beginning of a line + if (line !== '') + { + // start newlines for overflow words + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + // break large word over multiple lines + if (TextMetrics.canBreakWords(token, style.breakWords)) + { + // break word into characters + var characters = token.split(''); + + // loop the characters + for (var j = 0; j < characters.length; j++) + { + var char = characters[j]; + + var k = 1; + // we are not at the end of the token + + while (characters[j + k]) + { + var nextChar = characters[j + k]; + var lastChar = char[char.length - 1]; + + // should not split chars + if (!TextMetrics.canBreakChars(lastChar, nextChar, token, j, style.breakWords)) + { + // combine chars & move forward one + char += nextChar; + } + else + { + break; + } + + k++; + } + + j += char.length - 1; + + var characterWidth = TextMetrics.getFromCache(char, letterSpacing, cache, context); + + if (characterWidth + width > wordWrapWidth) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = false; + line = ''; + width = 0; + } + + line += char; + width += characterWidth; + } + } + + // run word out of the bounds + else + { + // if there are words in this line already + // finish that line and start a new one + if (line.length > 0) + { + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + var isLastToken = i === tokens.length - 1; + + // give it its own line if it's not the end + lines += TextMetrics.addLine(token, !isLastToken); + canPrependSpaces = false; + line = ''; + width = 0; + } + } + + // word could fit + else + { + // word won't fit because of existing words + // start a new line + if (tokenWidth + width > wordWrapWidth) + { + // if its a space we don't want it + canPrependSpaces = false; + + // add a new line + lines += TextMetrics.addLine(line); + + // start a new line + line = ''; + width = 0; + } + + // don't add spaces to the beginning of lines + if (line.length > 0 || !TextMetrics.isBreakingSpace(token) || canPrependSpaces) + { + // add the word to the current line + line += token; + + // update width counter + width += tokenWidth; + } + } + } + + lines += TextMetrics.addLine(line, false); + + return lines; +}; + +/** + * Convienience function for logging each line added during the wordWrap + * method + * + * @private + * @param {string} line - The line of text to add + * @param {boolean} newLine - Add new line character to end + * @return {string} A formatted line + */ +TextMetrics.addLine = function addLine (line, newLine) +{ + if ( newLine === void 0 ) newLine = true; + + line = TextMetrics.trimRight(line); + + line = (newLine) ? (line + "\n") : line; + + return line; +}; + +/** + * Gets & sets the widths of calculated characters in a cache object + * + * @private + * @param {string} key The key + * @param {number} letterSpacing The letter spacing + * @param {object} cache The cache + * @param {CanvasRenderingContext2D} context The canvas context + * @return {number} The from cache. + */ +TextMetrics.getFromCache = function getFromCache (key, letterSpacing, cache, context) +{ + var width = cache[key]; + + if (width === undefined) + { + var spacing = ((key.length) * letterSpacing); + + width = context.measureText(key).width + spacing; + cache[key] = width; + } + + return width; +}; + +/** + * Determines whether we should collapse breaking spaces + * + * @private + * @param {string} whiteSpace The TextStyle property whiteSpace + * @return {boolean} should collapse + */ +TextMetrics.collapseSpaces = function collapseSpaces (whiteSpace) +{ + return (whiteSpace === 'normal' || whiteSpace === 'pre-line'); +}; + +/** + * Determines whether we should collapse newLine chars + * + * @private + * @param {string} whiteSpace The white space + * @return {boolean} should collapse + */ +TextMetrics.collapseNewlines = function collapseNewlines (whiteSpace) +{ + return (whiteSpace === 'normal'); +}; + +/** + * trims breaking whitespaces from string + * + * @private + * @param {string} text The text + * @return {string} trimmed string + */ +TextMetrics.trimRight = function trimRight (text) +{ + if (typeof text !== 'string') + { + return ''; + } + + for (var i = text.length - 1; i >= 0; i--) + { + var char = text[i]; + + if (!TextMetrics.isBreakingSpace(char)) + { + break; + } + + text = text.slice(0, -1); + } + + return text; +}; + +/** + * Determines if char is a newline. + * + * @private + * @param {string} char The character + * @return {boolean} True if newline, False otherwise. + */ +TextMetrics.isNewline = function isNewline (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._newlines.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Determines if char is a breaking whitespace. + * + * @private + * @param {string} char The character + * @return {boolean} True if whitespace, False otherwise. + */ +TextMetrics.isBreakingSpace = function isBreakingSpace (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._breakingSpaces.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Splits a string into words, breaking-spaces and newLine characters + * + * @private + * @param {string} text The text + * @return {string[]} A tokenized array + */ +TextMetrics.tokenize = function tokenize (text) +{ + var tokens = []; + var token = ''; + + if (typeof text !== 'string') + { + return tokens; + } + + for (var i = 0; i < text.length; i++) + { + var char = text[i]; + + if (TextMetrics.isBreakingSpace(char) || TextMetrics.isNewline(char)) + { + if (token !== '') + { + tokens.push(token); + token = ''; + } + + tokens.push(char); + + continue; + } + + token += char; + } + + if (token !== '') + { + tokens.push(token); + } + + return tokens; +}; + +/** + * This method exists to be easily overridden + * It allows one to customise which words should break + * Examples are if the token is CJK or numbers. + * It must return a boolean. + * + * @private + * @param {string} token The token + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakWords = function canBreakWords (token, breakWords) +{ + return breakWords; +}; + +/** + * This method exists to be easily overridden + * It allows one to determine whether a pair of characters + * should be broken by newlines + * For example certain characters in CJK langs or numbers. + * It must return a boolean. + * + * @private + * @param {string} char The character + * @param {string} nextChar The next character + * @param {string} token The token/word the characters are from + * @param {number} index The index in the token of the char + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakChars = function canBreakChars (char, nextChar, token, index, breakWords) // eslint-disable-line no-unused-vars +{ + return true; +}; + +/** + * Calculates the ascent, descent and fontSize of a given font-style + * + * @static + * @param {string} font - String representing the style of the font + * @return {PIXI.IFontMetrics} Font properties object + */ +TextMetrics.measureFont = function measureFont (font) +{ + // as this method is used for preparing assets, don't recalculate things if we don't need to + if (TextMetrics._fonts[font]) + { + return TextMetrics._fonts[font]; + } + + var properties = {}; + + var canvas = TextMetrics._canvas; + var context = TextMetrics._context; + + context.font = font; + + var metricsString = TextMetrics.METRICS_STRING + TextMetrics.BASELINE_SYMBOL; + var width = Math.ceil(context.measureText(metricsString).width); + var baseline = Math.ceil(context.measureText(TextMetrics.BASELINE_SYMBOL).width); + var height = 2 * baseline; + + baseline = baseline * TextMetrics.BASELINE_MULTIPLIER | 0; + + canvas.width = width; + canvas.height = height; + + context.fillStyle = '#f00'; + context.fillRect(0, 0, width, height); + + context.font = font; + + context.textBaseline = 'alphabetic'; + context.fillStyle = '#000'; + context.fillText(metricsString, 0, baseline); + + var imagedata = context.getImageData(0, 0, width, height).data; + var pixels = imagedata.length; + var line = width * 4; + + var i = 0; + var idx = 0; + var stop = false; + + // ascent. scan from top to bottom until we find a non red pixel + for (i = 0; i < baseline; ++i) + { + for (var j = 0; j < line; j += 4) + { + if (imagedata[idx + j] !== 255) + { + stop = true; + break; + } + } + if (!stop) + { + idx += line; + } + else + { + break; + } + } + + properties.ascent = baseline - i; + + idx = pixels - line; + stop = false; + + // descent. scan from bottom to top until we find a non red pixel + for (i = height; i > baseline; --i) + { + for (var j$1 = 0; j$1 < line; j$1 += 4) + { + if (imagedata[idx + j$1] !== 255) + { + stop = true; + break; + } + } + + if (!stop) + { + idx -= line; + } + else + { + break; + } + } + + properties.descent = i - baseline; + properties.fontSize = properties.ascent + properties.descent; + + TextMetrics._fonts[font] = properties; + + return properties; +}; + +/** + * Clear font metrics in metrics cache. + * + * @static + * @param {string} [font] - font name. If font name not set then clear cache for all fonts. + */ +TextMetrics.clearMetrics = function clearMetrics (font) +{ + if ( font === void 0 ) font = ''; + + if (font) + { + delete TextMetrics._fonts[font]; + } + else + { + TextMetrics._fonts = {}; + } +}; + +/** + * Internal return object for {@link PIXI.TextMetrics.measureFont `TextMetrics.measureFont`}. + * + * @typedef {object} FontMetrics + * @property {number} ascent - The ascent distance + * @property {number} descent - The descent distance + * @property {number} fontSize - Font size from ascent to descent + * @memberof PIXI.TextMetrics + * @private + */ + +var canvas = (function () { + try + { + // OffscreenCanvas2D measureText can be up to 40% faster. + var c = new OffscreenCanvas(0, 0); + + return c.getContext('2d') ? c : document.createElement('canvas'); + } + catch (ex) + { + return document.createElement('canvas'); + } +})(); + +canvas.width = canvas.height = 10; + +/** + * Cached canvas element for measuring text + * + * @memberof PIXI.TextMetrics + * @type {HTMLCanvasElement} + * @private + */ +TextMetrics._canvas = canvas; + +/** + * Cache for context to use. + * + * @memberof PIXI.TextMetrics + * @type {CanvasRenderingContext2D} + * @private + */ +TextMetrics._context = canvas.getContext('2d'); + +/** + * Cache of {@see PIXI.TextMetrics.FontMetrics} objects. + * + * @memberof PIXI.TextMetrics + * @type {Object} + * @private + */ +TextMetrics._fonts = {}; + +/** + * String used for calculate font metrics. + * These characters are all tall to help calculate the height required for text. + * + * @static + * @memberof PIXI.TextMetrics + * @name METRICS_STRING + * @type {string} + * @default |ÉqÅ + */ +TextMetrics.METRICS_STRING = '|ÉqÅ'; + +/** + * Baseline symbol for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_SYMBOL + * @type {string} + * @default M + */ +TextMetrics.BASELINE_SYMBOL = 'M'; + +/** + * Baseline multiplier for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_MULTIPLIER + * @type {number} + * @default 1.4 + */ +TextMetrics.BASELINE_MULTIPLIER = 1.4; + +/** + * Cache of new line chars. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._newlines = [ + 0x000A, // line feed + 0x000D ]; + +/** + * Cache of breaking spaces. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._breakingSpaces = [ + 0x0009, // character tabulation + 0x0020, // space + 0x2000, // en quad + 0x2001, // em quad + 0x2002, // en space + 0x2003, // em space + 0x2004, // three-per-em space + 0x2005, // four-per-em space + 0x2006, // six-per-em space + 0x2008, // punctuation space + 0x2009, // thin space + 0x200A, // hair space + 0x205F, // medium mathematical space + 0x3000 ]; + +/** + * A number, or a string containing a number. + * + * @memberof PIXI + * @typedef IFontMetrics + * @property {number} ascent - Font ascent + * @property {number} descent - Font descent + * @property {number} fontSize - Font size + */ + +/* eslint max-depth: [2, 8] */ + +var defaultDestroyOptions = { + texture: true, + children: false, + baseTexture: true, +}; + +/** + * A Text Object will create a line or multiple lines of text. + * + * The text is created using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API). + * + * The primary advantage of this class over BitmapText is that you have great control over the style of the next, + * which you can change at runtime. + * + * The primary disadvantages is that each piece of text has it's own texture, which can use more memory. + * When text changes, this texture has to be re-generated and re-uploaded to the GPU, taking up time. + * + * To split a line you can use '\n' in your text string, or, on the `style` object, + * change its `wordWrap` property to true and and give the `wordWrapWidth` property a value. + * + * A Text can be created directly from a string and a style object, + * which can be generated [here](https://pixijs.io/pixi-text-style). + * + * ```js + * let text = new PIXI.Text('This is a PixiJS text',{fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}); + * ``` + * + * @class + * @extends PIXI.Sprite + * @memberof PIXI + */ +var Text = /*@__PURE__*/(function (Sprite) { + function Text(text, style, canvas) + { + canvas = canvas || document.createElement('canvas'); + + canvas.width = 3; + canvas.height = 3; + + var texture = Texture.from(canvas); + + texture.orig = new Rectangle(); + texture.trim = new Rectangle(); + + Sprite.call(this, texture); + + /** + * The canvas element that everything is drawn to + * + * @member {HTMLCanvasElement} + */ + this.canvas = canvas; + + /** + * The canvas 2d context that everything is drawn with + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + this._resolution = settings.RESOLUTION; + this._autoResolution = true; + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = null; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._style = null; + /** + * Private listener to track style changes. + * + * @member {Function} + * @private + */ + this._styleListener = null; + + /** + * Private tracker for the current font. + * + * @member {string} + * @private + */ + this._font = ''; + + this.text = text; + this.style = style; + + this.localStyleID = -1; + } + + if ( Sprite ) Text.__proto__ = Sprite; + Text.prototype = Object.create( Sprite && Sprite.prototype ); + Text.prototype.constructor = Text; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },style: { configurable: true },text: { configurable: true },resolution: { configurable: true } }; + + /** + * Renders text and updates it when needed. + * + * @private + * @param {boolean} respectDirty - Whether to abort updating the text if the Text isn't dirty and the function is called. + */ + Text.prototype.updateText = function updateText (respectDirty) + { + var style = this._style; + + // check if style has changed.. + if (this.localStyleID !== style.styleID) + { + this.dirty = true; + this.localStyleID = style.styleID; + } + + if (!this.dirty && respectDirty) + { + return; + } + + this._font = this._style.toFontString(); + + var context = this.context; + var measured = TextMetrics.measureText(this._text || ' ', this._style, this._style.wordWrap, this.canvas); + var width = measured.width; + var height = measured.height; + var lines = measured.lines; + var lineHeight = measured.lineHeight; + var lineWidths = measured.lineWidths; + var maxLineWidth = measured.maxLineWidth; + var fontProperties = measured.fontProperties; + + this.canvas.width = Math.ceil((Math.max(1, width) + (style.padding * 2)) * this._resolution); + this.canvas.height = Math.ceil((Math.max(1, height) + (style.padding * 2)) * this._resolution); + + context.scale(this._resolution, this._resolution); + + context.clearRect(0, 0, this.canvas.width, this.canvas.height); + + context.font = this._font; + context.lineWidth = style.strokeThickness; + context.textBaseline = style.textBaseline; + context.lineJoin = style.lineJoin; + context.miterLimit = style.miterLimit; + + var linePositionX; + var linePositionY; + + // require 2 passes if a shadow; the first to draw the drop shadow, the second to draw the text + var passesCount = style.dropShadow ? 2 : 1; + + // For v4, we drew text at the colours of the drop shadow underneath the normal text. This gave the correct zIndex, + // but features such as alpha and shadowblur did not look right at all, since we were using actual text as a shadow. + // + // For v5.0.0, we moved over to just use the canvas API for drop shadows, which made them look much nicer and more + // visually please, but now because the stroke is drawn and then the fill, drop shadows would appear on both the fill + // and the stroke; and fill drop shadows would appear over the top of the stroke. + // + // For v5.1.1, the new route is to revert to v4 style of drawing text first to get the drop shadows underneath normal + // text, but instead drawing text in the correct location, we'll draw it off screen (-paddingY), and then adjust the + // drop shadow so only that appears on screen (+paddingY). Now we'll have the correct draw order of the shadow + // beneath the text, whilst also having the proper text shadow styling. + for (var i = 0; i < passesCount; ++i) + { + var isShadowPass = style.dropShadow && i === 0; + var dsOffsetText = isShadowPass ? height * 2 : 0; // we only want the drop shadow, so put text way off-screen + var dsOffsetShadow = dsOffsetText * this.resolution; + + if (isShadowPass) + { + // On Safari, text with gradient and drop shadows together do not position correctly + // if the scale of the canvas is not 1: https://bugs.webkit.org/show_bug.cgi?id=197689 + // Therefore we'll set the styles to be a plain black whilst generating this drop shadow + context.fillStyle = 'black'; + context.strokeStyle = 'black'; + + var dropShadowColor = style.dropShadowColor; + var rgb = hex2rgb(typeof dropShadowColor === 'number' ? dropShadowColor : string2hex(dropShadowColor)); + + context.shadowColor = "rgba(" + (rgb[0] * 255) + "," + (rgb[1] * 255) + "," + (rgb[2] * 255) + "," + (style.dropShadowAlpha) + ")"; + context.shadowBlur = style.dropShadowBlur; + context.shadowOffsetX = Math.cos(style.dropShadowAngle) * style.dropShadowDistance; + context.shadowOffsetY = (Math.sin(style.dropShadowAngle) * style.dropShadowDistance) + dsOffsetShadow; + } + else + { + // set canvas text styles + context.fillStyle = this._generateFillStyle(style, lines); + context.strokeStyle = style.stroke; + + context.shadowColor = 0; + context.shadowBlur = 0; + context.shadowOffsetX = 0; + context.shadowOffsetY = 0; + } + + // draw lines line by line + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + linePositionX = style.strokeThickness / 2; + linePositionY = ((style.strokeThickness / 2) + (i$1 * lineHeight)) + fontProperties.ascent; + + if (style.align === 'right') + { + linePositionX += maxLineWidth - lineWidths[i$1]; + } + else if (style.align === 'center') + { + linePositionX += (maxLineWidth - lineWidths[i$1]) / 2; + } + + if (style.stroke && style.strokeThickness) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText, + true + ); + } + + if (style.fill) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText + ); + } + } + } + + this.updateTexture(); + }; + + /** + * Render the text with letter-spacing. + * @param {string} text - The text to draw + * @param {number} x - Horizontal position to draw the text + * @param {number} y - Vertical position to draw the text + * @param {boolean} [isStroke=false] - Is this drawing for the outside stroke of the + * text? If not, it's for the inside fill + * @private + */ + Text.prototype.drawLetterSpacing = function drawLetterSpacing (text, x, y, isStroke) + { + if ( isStroke === void 0 ) isStroke = false; + + var style = this._style; + + // letterSpacing of 0 means normal + var letterSpacing = style.letterSpacing; + + if (letterSpacing === 0) + { + if (isStroke) + { + this.context.strokeText(text, x, y); + } + else + { + this.context.fillText(text, x, y); + } + + return; + } + + var currentPosition = x; + + // Using Array.from correctly splits characters whilst keeping emoji together. + // This is not supported on IE as it requires ES6, so regular text splitting occurs. + // This also doesn't account for emoji that are multiple emoji put together to make something else. + // Handling all of this would require a big library itself. + // https://medium.com/@giltayar/iterating-over-emoji-characters-the-es6-way-f06e4589516 + // https://github.com/orling/grapheme-splitter + var stringArray = Array.from ? Array.from(text) : text.split(''); + var previousWidth = this.context.measureText(text).width; + var currentWidth = 0; + + for (var i = 0; i < stringArray.length; ++i) + { + var currentChar = stringArray[i]; + + if (isStroke) + { + this.context.strokeText(currentChar, currentPosition, y); + } + else + { + this.context.fillText(currentChar, currentPosition, y); + } + currentWidth = this.context.measureText(text.substring(i + 1)).width; + currentPosition += previousWidth - currentWidth + letterSpacing; + previousWidth = currentWidth; + } + }; + + /** + * Updates texture size based on canvas size + * + * @private + */ + Text.prototype.updateTexture = function updateTexture () + { + var canvas = this.canvas; + + if (this._style.trim) + { + var trimmed = trimCanvas(canvas); + + if (trimmed.data) + { + canvas.width = trimmed.width; + canvas.height = trimmed.height; + this.context.putImageData(trimmed.data, 0, 0); + } + } + + var texture = this._texture; + var style = this._style; + var padding = style.trim ? 0 : style.padding; + var baseTexture = texture.baseTexture; + + texture.trim.width = texture._frame.width = Math.ceil(canvas.width / this._resolution); + texture.trim.height = texture._frame.height = Math.ceil(canvas.height / this._resolution); + texture.trim.x = -padding; + texture.trim.y = -padding; + + texture.orig.width = texture._frame.width - (padding * 2); + texture.orig.height = texture._frame.height - (padding * 2); + + // call sprite onTextureUpdate to update scale if _width or _height were set + this._onTextureUpdate(); + + baseTexture.setRealSize(canvas.width, canvas.height, this._resolution); + + this.dirty = false; + }; + + /** + * Renders the object using the WebGL renderer + * + * @private + * @param {PIXI.Renderer} renderer - The renderer + */ + Text.prototype._render = function _render (renderer) + { + if (this._autoResolution && this._resolution !== renderer.resolution) + { + this._resolution = renderer.resolution; + this.dirty = true; + } + + this.updateText(true); + + Sprite.prototype._render.call(this, renderer); + }; + + /** + * Gets the local bounds of the text object. + * + * @param {PIXI.Rectangle} rect - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Text.prototype.getLocalBounds = function getLocalBounds (rect) + { + this.updateText(true); + + return Sprite.prototype.getLocalBounds.call(this, rect); + }; + + /** + * calculates the bounds of the Text as a rectangle. The bounds calculation takes the worldTransform into account. + * @protected + */ + Text.prototype._calculateBounds = function _calculateBounds () + { + this.updateText(true); + this.calculateVertices(); + // if we have already done this on THIS frame. + this._bounds.addQuad(this.vertexData); + }; + + /** + * Method to be called upon a TextStyle change. + * @private + */ + Text.prototype._onStyleChange = function _onStyleChange () + { + this.dirty = true; + }; + + /** + * Generates the fill style. Can automatically generate a gradient based on the fill style being an array + * + * @private + * @param {object} style - The style. + * @param {string[]} lines - The lines of text. + * @return {string|number|CanvasGradient} The fill style + */ + Text.prototype._generateFillStyle = function _generateFillStyle (style, lines) + { + if (!Array.isArray(style.fill)) + { + return style.fill; + } + else if (style.fill.length === 1) + { + return style.fill[0]; + } + + // the gradient will be evenly spaced out according to how large the array is. + // ['#FF0000', '#00FF00', '#0000FF'] would created stops at 0.25, 0.5 and 0.75 + var gradient; + var totalIterations; + var currentIteration; + var stop; + + var width = Math.ceil(this.canvas.width / this._resolution); + var height = Math.ceil(this.canvas.height / this._resolution); + + // make a copy of the style settings, so we can manipulate them later + var fill = style.fill.slice(); + var fillGradientStops = style.fillGradientStops.slice(); + + // wanting to evenly distribute the fills. So an array of 4 colours should give fills of 0.25, 0.5 and 0.75 + if (!fillGradientStops.length) + { + var lengthPlus1 = fill.length + 1; + + for (var i = 1; i < lengthPlus1; ++i) + { + fillGradientStops.push(i / lengthPlus1); + } + } + + // stop the bleeding of the last gradient on the line above to the top gradient of the this line + // by hard defining the first gradient colour at point 0, and last gradient colour at point 1 + fill.unshift(style.fill[0]); + fillGradientStops.unshift(0); + + fill.push(style.fill[style.fill.length - 1]); + fillGradientStops.push(1); + + if (style.fillGradientType === TEXT_GRADIENT.LINEAR_VERTICAL) + { + // start the gradient at the top center of the canvas, and end at the bottom middle of the canvas + gradient = this.context.createLinearGradient(width / 2, 0, width / 2, height); + + // we need to repeat the gradient so that each individual line of text has the same vertical gradient effect + // ['#FF0000', '#00FF00', '#0000FF'] over 2 lines would create stops at 0.125, 0.25, 0.375, 0.625, 0.75, 0.875 + totalIterations = (fill.length + 1) * lines.length; + currentIteration = 0; + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + currentIteration += 1; + for (var j = 0; j < fill.length; j++) + { + if (typeof fillGradientStops[j] === 'number') + { + stop = (fillGradientStops[j] / lines.length) + (i$1 / lines.length); + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[j]); + currentIteration++; + } + } + } + else + { + // start the gradient at the center left of the canvas, and end at the center right of the canvas + gradient = this.context.createLinearGradient(0, height / 2, width, height / 2); + + // can just evenly space out the gradients in this case, as multiple lines makes no difference + // to an even left to right gradient + totalIterations = fill.length + 1; + currentIteration = 1; + + for (var i$2 = 0; i$2 < fill.length; i$2++) + { + if (typeof fillGradientStops[i$2] === 'number') + { + stop = fillGradientStops[i$2]; + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[i$2]); + currentIteration++; + } + } + + return gradient; + }; + + /** + * Destroys this text object. + * Note* Unlike a Sprite, a Text object will automatically destroy its baseTexture and texture as + * the majority of the time the texture will not be shared with any other Sprites. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their + * destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=true] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=true] - Should it destroy the base texture of the sprite as well + */ + Text.prototype.destroy = function destroy (options) + { + if (typeof options === 'boolean') + { + options = { children: options }; + } + + options = Object.assign({}, defaultDestroyOptions, options); + + Sprite.prototype.destroy.call(this, options); + + // make sure to reset the the context and canvas.. dont want this hanging around in memory! + this.context = null; + this.canvas = null; + + this._style = null; + }; + + /** + * The width of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * Set the style of the text. Set up an event listener to listen for changes on the style + * object and mark the text as dirty. + * + * @member {object|PIXI.TextStyle} + */ + prototypeAccessors.style.get = function () + { + return this._style; + }; + + prototypeAccessors.style.set = function (style) // eslint-disable-line require-jsdoc + { + style = style || {}; + + if (style instanceof TextStyle) + { + this._style = style; + } + else + { + this._style = new TextStyle(style); + } + + this.localStyleID = -1; + this.dirty = true; + }; + + /** + * Set the copy for the text object. To split a line you can use '\n'. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + prototypeAccessors.resolution.get = function () + { + return this._resolution; + }; + + prototypeAccessors.resolution.set = function (value) // eslint-disable-line require-jsdoc + { + this._autoResolution = false; + + if (this._resolution === value) + { + return; + } + + this._resolution = value; + this.dirty = true; + }; + + Object.defineProperties( Text.prototype, prototypeAccessors ); + + return Text; +}(Sprite)); + +/*! + * @pixi/prepare - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/prepare is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default number of uploads per frame using prepare plugin. + * + * @static + * @memberof PIXI.settings + * @name UPLOADS_PER_FRAME + * @type {number} + * @default 4 + */ +settings.UPLOADS_PER_FRAME = 4; + +/** + * CountLimiter limits the number of items handled by a {@link PIXI.prepare.BasePrepare} to a specified + * number of items per frame. + * + * @class + * @memberof PIXI.prepare + */ +var CountLimiter = function CountLimiter(maxItemsPerFrame) +{ + /** + * The maximum number of items that can be prepared each frame. + * @type {number} + * @private + */ + this.maxItemsPerFrame = maxItemsPerFrame; + /** + * The number of items that can be prepared in the current frame. + * @type {number} + * @private + */ + this.itemsLeft = 0; +}; + +/** + * Resets any counting properties to start fresh on a new frame. + */ +CountLimiter.prototype.beginFrame = function beginFrame () +{ + this.itemsLeft = this.maxItemsPerFrame; +}; + +/** + * Checks to see if another item can be uploaded. This should only be called once per item. + * @return {boolean} If the item is allowed to be uploaded. + */ +CountLimiter.prototype.allowedToUpload = function allowedToUpload () +{ + return this.itemsLeft-- > 0; +}; + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * BasePrepare handles basic queuing functionality and is extended by + * {@link PIXI.prepare.Prepare} and {@link PIXI.prepare.CanvasPrepare} + * to provide preparation capabilities specific to their respective renderers. + * + * @example + * // Create a sprite + * const sprite = PIXI.Sprite.from('something.png'); + * + * // Load object into GPU + * app.renderer.plugins.prepare.upload(sprite, () => { + * + * //Texture(s) has been uploaded to GPU + * app.stage.addChild(sprite); + * + * }) + * + * @abstract + * @class + * @memberof PIXI.prepare + */ +var BasePrepare = function BasePrepare(renderer) +{ + var this$1 = this; + + /** + * The limiter to be used to control how quickly items are prepared. + * @type {PIXI.prepare.CountLimiter|PIXI.prepare.TimeLimiter} + */ + this.limiter = new CountLimiter(settings.UPLOADS_PER_FRAME); + + /** + * Reference to the renderer. + * @type {PIXI.AbstractRenderer} + * @protected + */ + this.renderer = renderer; + + /** + * The only real difference between CanvasPrepare and Prepare is what they pass + * to upload hooks. That different parameter is stored here. + * @type {PIXI.prepare.CanvasPrepare|PIXI.Renderer} + * @protected + */ + this.uploadHookHelper = null; + + /** + * Collection of items to uploads at once. + * @type {Array<*>} + * @private + */ + this.queue = []; + + /** + * Collection of additional hooks for finding assets. + * @type {Array} + * @private + */ + this.addHooks = []; + + /** + * Collection of additional hooks for processing assets. + * @type {Array} + * @private + */ + this.uploadHooks = []; + + /** + * Callback to call after completed. + * @type {Array} + * @private + */ + this.completes = []; + + /** + * If prepare is ticking (running). + * @type {boolean} + * @private + */ + this.ticking = false; + + /** + * 'bound' call for prepareItems(). + * @type {Function} + * @private + */ + this.delayedTick = function () { + // unlikely, but in case we were destroyed between tick() and delayedTick() + if (!this$1.queue) + { + return; + } + this$1.prepareItems(); + }; + + // hooks to find the correct texture + this.registerFindHook(findText); + this.registerFindHook(findTextStyle); + this.registerFindHook(findMultipleBaseTextures); + this.registerFindHook(findBaseTexture); + this.registerFindHook(findTexture); + + // upload hooks + this.registerUploadHook(drawText); + this.registerUploadHook(calculateTextStyle); +}; + +/** + * Upload all the textures and graphics to the GPU. + * + * @param {Function|PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text} item - + * Either the container or display object to search for items to upload, the items to upload themselves, + * or the callback function, if items have been added using `prepare.add`. + * @param {Function} [done] - Optional callback when all queued uploads have completed + */ +BasePrepare.prototype.upload = function upload (item, done) +{ + if (typeof item === 'function') + { + done = item; + item = null; + } + + // If a display object, search for items + // that we could upload + if (item) + { + this.add(item); + } + + // Get the items for upload from the display + if (this.queue.length) + { + if (done) + { + this.completes.push(done); + } + + if (!this.ticking) + { + this.ticking = true; + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } + } + else if (done) + { + done(); + } +}; + +/** + * Handle tick update + * + * @private + */ +BasePrepare.prototype.tick = function tick () +{ + setTimeout(this.delayedTick, 0); +}; + +/** + * Actually prepare items. This is handled outside of the tick because it will take a while + * and we do NOT want to block the current animation frame from rendering. + * + * @private + */ +BasePrepare.prototype.prepareItems = function prepareItems () +{ + this.limiter.beginFrame(); + // Upload the graphics + while (this.queue.length && this.limiter.allowedToUpload()) + { + var item = this.queue[0]; + var uploaded = false; + + if (item && !item._destroyed) + { + for (var i = 0, len = this.uploadHooks.length; i < len; i++) + { + if (this.uploadHooks[i](this.uploadHookHelper, item)) + { + this.queue.shift(); + uploaded = true; + break; + } + } + } + + if (!uploaded) + { + this.queue.shift(); + } + } + + // We're finished + if (!this.queue.length) + { + this.ticking = false; + + var completes = this.completes.slice(0); + + this.completes.length = 0; + + for (var i$1 = 0, len$1 = completes.length; i$1 < len$1; i$1++) + { + completes[i$1](); + } + } + else + { + // if we are not finished, on the next rAF do this again + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } +}; + +/** + * Adds hooks for finding items. + * + * @param {Function} addHook - Function call that takes two parameters: `item:*, queue:Array` + * function must return `true` if it was able to add item to the queue. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerFindHook = function registerFindHook (addHook) +{ + if (addHook) + { + this.addHooks.push(addHook); + } + + return this; +}; + +/** + * Adds hooks for uploading items. + * + * @param {Function} uploadHook - Function call that takes two parameters: `prepare:CanvasPrepare, item:*` and + * function must return `true` if it was able to handle upload of item. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerUploadHook = function registerUploadHook (uploadHook) +{ + if (uploadHook) + { + this.uploadHooks.push(uploadHook); + } + + return this; +}; + +/** + * Manually add an item to the uploading queue. + * + * @param {PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text|*} item - Object to + * add to the queue + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.add = function add (item) +{ + // Add additional hooks for finding elements on special + // types of objects that + for (var i = 0, len = this.addHooks.length; i < len; i++) + { + if (this.addHooks[i](item, this.queue)) + { + break; + } + } + + // Get children recursively + if (item instanceof Container) + { + for (var i$1 = item.children.length - 1; i$1 >= 0; i$1--) + { + this.add(item.children[i$1]); + } + } + + return this; +}; + +/** + * Destroys the plugin, don't use after this. + * + */ +BasePrepare.prototype.destroy = function destroy () +{ + if (this.ticking) + { + Ticker.system.remove(this.tick, this); + } + this.ticking = false; + this.addHooks = null; + this.uploadHooks = null; + this.renderer = null; + this.completes = null; + this.queue = null; + this.limiter = null; + this.uploadHookHelper = null; +}; + +/** + * Built-in hook to find multiple textures from objects like AnimatedSprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findMultipleBaseTextures(item, queue) +{ + var result = false; + + // Objects with multiple textures + if (item && item._textures && item._textures.length) + { + for (var i = 0; i < item._textures.length; i++) + { + if (item._textures[i] instanceof Texture) + { + var baseTexture = item._textures[i].baseTexture; + + if (queue.indexOf(baseTexture) === -1) + { + queue.push(baseTexture); + result = true; + } + } + } + } + + return result; +} + +/** + * Built-in hook to find BaseTextures from Sprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findBaseTexture(item, queue) +{ + // Objects with textures, like Sprites/Text + if (item instanceof BaseTexture) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find textures from objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findTexture(item, queue) +{ + if (item._texture && item._texture instanceof Texture) + { + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to draw PIXI.Text to its texture. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function drawText(helper, item) +{ + if (item instanceof Text) + { + // updating text will return early if it is not dirty + item.updateText(true); + + return true; + } + + return false; +} + +/** + * Built-in hook to calculate a text style for a PIXI.Text object. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function calculateTextStyle(helper, item) +{ + if (item instanceof TextStyle) + { + var font = item.toFontString(); + + TextMetrics.measureFont(font); + + return true; + } + + return false; +} + +/** + * Built-in hook to find Text objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Text object was found. + */ +function findText(item, queue) +{ + if (item instanceof Text) + { + // push the text style to prepare it - this can be really expensive + if (queue.indexOf(item.style) === -1) + { + queue.push(item.style); + } + // also push the text object so that we can render it (to canvas/texture) if needed + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + // also push the Text's texture for upload to GPU + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find TextStyle objects. + * + * @private + * @param {PIXI.TextStyle} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.TextStyle object was found. + */ +function findTextStyle(item, queue) +{ + if (item instanceof TextStyle) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.prepare` + * + * @class + * @extends PIXI.prepare.BasePrepare + * @memberof PIXI.prepare + */ +var Prepare = /*@__PURE__*/(function (BasePrepare) { + function Prepare(renderer) + { + BasePrepare.call(this, renderer); + + this.uploadHookHelper = this.renderer; + + // Add textures and graphics to upload + this.registerFindHook(findGraphics); + this.registerUploadHook(uploadBaseTextures); + this.registerUploadHook(uploadGraphics); + } + + if ( BasePrepare ) Prepare.__proto__ = BasePrepare; + Prepare.prototype = Object.create( BasePrepare && BasePrepare.prototype ); + Prepare.prototype.constructor = Prepare; + + return Prepare; +}(BasePrepare)); +/** + * Built-in hook to upload PIXI.Texture objects to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadBaseTextures(renderer, item) +{ + if (item instanceof BaseTexture) + { + // if the texture already has a GL texture, then the texture has been prepared or rendered + // before now. If the texture changed, then the changer should be calling texture.update() which + // reuploads the texture without need for preparing it again + if (!item._glTextures[renderer.CONTEXT_UID]) + { + renderer.texture.bind(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to upload PIXI.Graphics to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadGraphics(renderer, item) +{ + if (item instanceof Graphics) + { + // if the item is not dirty and already has webgl data, then it got prepared or rendered + // before now and we shouldn't waste time updating it again + if (item.dirty || item.clearDirty || !item._webGL[renderer.plugins.graphics.CONTEXT_UID]) + { + renderer.plugins.graphics.updateGraphics(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find graphics. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Graphics object was found. + */ +function findGraphics(item, queue) +{ + if (item instanceof Graphics) + { + queue.push(item); + + return true; + } + + return false; +} + +/*! + * @pixi/app - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/app is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Convenience class to create a new PIXI application. + * + * This class automatically creates the renderer, ticker and root container. + * + * @example + * // Create the application + * const app = new PIXI.Application(); + * + * // Add the view to the DOM + * document.body.appendChild(app.view); + * + * // ex, add display objects + * app.stage.addChild(PIXI.Sprite.from('something.png')); + * + * @class + * @memberof PIXI + */ +var Application = function Application(options) +{ + var this$1 = this; + + // The default options + options = Object.assign({ + forceCanvas: false, + }, options); + + /** + * WebGL renderer if available, otherwise CanvasRenderer. + * @member {PIXI.Renderer|PIXI.CanvasRenderer} + */ + this.renderer = autoDetectRenderer(options); + + /** + * The root display container that's rendered. + * @member {PIXI.Container} + */ + this.stage = new Container(); + + // install plugins here + Application._plugins.forEach(function (plugin) { + plugin.init.call(this$1, options); + }); +}; + +var prototypeAccessors$8 = { view: { configurable: true },screen: { configurable: true } }; + +/** + * Register a middleware plugin for the application + * @static + * @param {PIXI.Application.Plugin} plugin - Plugin being installed + */ +Application.registerPlugin = function registerPlugin (plugin) +{ + Application._plugins.push(plugin); +}; + +/** + * Render the current stage. + */ +Application.prototype.render = function render () +{ + this.renderer.render(this.stage); +}; + +/** + * Reference to the renderer's canvas element. + * @member {HTMLCanvasElement} + * @readonly + */ +prototypeAccessors$8.view.get = function () +{ + return this.renderer.view; +}; + +/** + * Reference to the renderer's screen rectangle. Its safe to use as `filterArea` or `hitArea` for the whole screen. + * @member {PIXI.Rectangle} + * @readonly + */ +prototypeAccessors$8.screen.get = function () +{ + return this.renderer.screen; +}; + +/** + * Destroy and don't use after this. + * @param {Boolean} [removeView=false] Automatically remove canvas from DOM. + * @param {object|boolean} [stageOptions] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [stageOptions.children=false] - if set to true, all the children will have their destroy + * method called as well. 'stageOptions' will be passed on to those calls. + * @param {boolean} [stageOptions.texture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the texture of the child sprite + * @param {boolean} [stageOptions.baseTexture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the base texture of the child sprite + */ +Application.prototype.destroy = function destroy (removeView, stageOptions) +{ + var this$1 = this; + + // Destroy plugins in the opposite order + // which they were constructed + var plugins = Application._plugins.slice(0); + + plugins.reverse(); + plugins.forEach(function (plugin) { + plugin.destroy.call(this$1); + }); + + this.stage.destroy(stageOptions); + this.stage = null; + + this.renderer.destroy(removeView); + this.renderer = null; + + this._options = null; +}; + +Object.defineProperties( Application.prototype, prototypeAccessors$8 ); + +/** + * @memberof PIXI.Application + * @typedef {object} Plugin + * @property {function} init - Called when Application is constructed, scoped to Application instance. + * Passes in `options` as the only argument, which are Application constructor options. + * @property {function} destroy - Called when destroying Application, scoped to Application instance + */ + +/** + * Collection of installed plugins. + * @static + * @private + * @type {PIXI.Application.Plugin[]} + */ +Application._plugins = []; + +/** + * Middleware for for Application's resize functionality + * @private + * @class + */ +var ResizePlugin = function ResizePlugin () {}; + +ResizePlugin.init = function init (options) +{ + var this$1 = this; + + /** + * The element or window to resize the application to. + * @type {Window|HTMLElement} + * @name resizeTo + * @memberof PIXI.Application# + */ + Object.defineProperty(this, 'resizeTo', + { + set: function set(dom) + { + window.removeEventListener('resize', this.resize); + this._resizeTo = dom; + if (dom) + { + window.addEventListener('resize', this.resize); + this.resize(); + } + }, + get: function get() + { + return this._resizeTo; + }, + }); + + /** + * If `resizeTo` is set, calling this function + * will resize to the width and height of that element. + * @method PIXI.Application#resize + */ + this.resize = function () { + if (this$1._resizeTo) + { + // Resize to the window + if (this$1._resizeTo === window) + { + this$1.renderer.resize( + window.innerWidth, + window.innerHeight + ); + } + // Resize to other HTML entities + else + { + this$1.renderer.resize( + this$1._resizeTo.clientWidth, + this$1._resizeTo.clientHeight + ); + } + } + }; + + // On resize + this._resizeTo = null; + this.resizeTo = options.resizeTo || null; +}; + +/** + * Clean up the ticker, scoped to application + * @static + * @private + */ +ResizePlugin.destroy = function destroy () +{ + this.resizeTo = null; + this.resize = null; +}; + +Application.registerPlugin(ResizePlugin); + +var parseUri = function parseURI (str, opts) { + opts = opts || {}; + + var o = { + key: ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'], + q: { + name: 'queryKey', + parser: /(?:^|&)([^&=]*)=?([^&]*)/g + }, + parser: { + strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/, + loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/ + } + }; + + var m = o.parser[opts.strictMode ? 'strict' : 'loose'].exec(str); + var uri = {}; + var i = 14; + + while (i--) uri[o.key[i]] = m[i] || ''; + + uri[o.q.name] = {}; + uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) { + if ($1) uri[o.q.name][$1] = $2; + }); + + return uri +}; + +var miniSignals = createCommonjsModule(function (module, exports) { + +Object.defineProperty(exports, '__esModule', { + value: true +}); + +var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + +var MiniSignalBinding = (function () { + function MiniSignalBinding(fn, once, thisArg) { + if (once === undefined) once = false; + + _classCallCheck(this, MiniSignalBinding); + + this._fn = fn; + this._once = once; + this._thisArg = thisArg; + this._next = this._prev = this._owner = null; + } + + _createClass(MiniSignalBinding, [{ + key: 'detach', + value: function detach() { + if (this._owner === null) return false; + this._owner.detach(this); + return true; + } + }]); + + return MiniSignalBinding; +})(); + +function _addMiniSignalBinding(self, node) { + if (!self._head) { + self._head = node; + self._tail = node; + } else { + self._tail._next = node; + node._prev = self._tail; + self._tail = node; + } + + node._owner = self; + + return node; +} + +var MiniSignal = (function () { + function MiniSignal() { + _classCallCheck(this, MiniSignal); + + this._head = this._tail = undefined; + } + + _createClass(MiniSignal, [{ + key: 'handlers', + value: function handlers() { + var exists = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0]; + + var node = this._head; + + if (exists) return !!node; + + var ee = []; + + while (node) { + ee.push(node); + node = node._next; + } + + return ee; + } + }, { + key: 'has', + value: function has(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#has(): First arg must be a MiniSignalBinding object.'); + } + + return node._owner === this; + } + }, { + key: 'dispatch', + value: function dispatch() { + var node = this._head; + + if (!node) return false; + + while (node) { + if (node._once) this.detach(node); + node._fn.apply(node._thisArg, arguments); + node = node._next; + } + + return true; + } + }, { + key: 'add', + value: function add(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#add(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, false, thisArg)); + } + }, { + key: 'once', + value: function once(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#once(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, true, thisArg)); + } + }, { + key: 'detach', + value: function detach(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#detach(): First arg must be a MiniSignalBinding object.'); + } + if (node._owner !== this) return this; + + if (node._prev) node._prev._next = node._next; + if (node._next) node._next._prev = node._prev; + + if (node === this._head) { + this._head = node._next; + if (node._next === null) { + this._tail = null; + } + } else if (node === this._tail) { + this._tail = node._prev; + this._tail._next = null; + } + + node._owner = null; + return this; + } + }, { + key: 'detachAll', + value: function detachAll() { + var node = this._head; + if (!node) return this; + + this._head = this._tail = null; + + while (node) { + node._owner = null; + node = node._next; + } + return this; + } + }]); + + return MiniSignal; +})(); + +MiniSignal.MiniSignalBinding = MiniSignalBinding; + +exports['default'] = MiniSignal; +module.exports = exports['default']; +}); + +var Signal = unwrapExports(miniSignals); + +/*! + * resource-loader - v3.0.1 + * https://github.com/pixijs/pixi-sound + * Compiled Tue, 02 Jul 2019 14:06:18 UTC + * + * resource-loader is licensed under the MIT license. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Smaller version of the async library constructs. + * + * @namespace async + */ + +/** + * Noop function + * + * @ignore + * @function + * @memberof async + */ +function _noop() {} +/* empty */ + +/** + * Iterates an array in series. + * + * @memberof async + * @function eachSeries + * @param {Array.<*>} array - Array to iterate. + * @param {function} iterator - Function to call for each element. + * @param {function} callback - Function to call when done, or on error. + * @param {boolean} [deferNext=false] - Break synchronous each loop by calling next with a setTimeout of 1. + */ + + +function eachSeries(array, iterator, callback, deferNext) { + var i = 0; + var len = array.length; + + (function next(err) { + if (err || i === len) { + if (callback) { + callback(err); + } + + return; + } + + if (deferNext) { + setTimeout(function () { + iterator(array[i++], next); + }, 1); + } else { + iterator(array[i++], next); + } + })(); +} +/** + * Ensures a function is only called once. + * + * @ignore + * @memberof async + * @param {function} fn - The function to wrap. + * @return {function} The wrapping function. + */ + +function onlyOnce(fn) { + return function onceWrapper() { + if (fn === null) { + throw new Error('Callback was already called.'); + } + + var callFn = fn; + fn = null; + callFn.apply(this, arguments); + }; +} +/** + * Async queue implementation, + * + * @memberof async + * @function queue + * @param {function} worker - The worker function to call for each task. + * @param {number} concurrency - How many workers to run in parrallel. + * @return {*} The async queue object. + */ + + +function queue(worker, concurrency) { + if (concurrency == null) { + // eslint-disable-line no-eq-null,eqeqeq + concurrency = 1; + } else if (concurrency === 0) { + throw new Error('Concurrency must not be zero'); + } + + var workers = 0; + var q = { + _tasks: [], + concurrency: concurrency, + saturated: _noop, + unsaturated: _noop, + buffer: concurrency / 4, + empty: _noop, + drain: _noop, + error: _noop, + started: false, + paused: false, + push: function push(data, callback) { + _insert(data, false, callback); + }, + kill: function kill() { + workers = 0; + q.drain = _noop; + q.started = false; + q._tasks = []; + }, + unshift: function unshift(data, callback) { + _insert(data, true, callback); + }, + process: function process() { + while (!q.paused && workers < q.concurrency && q._tasks.length) { + var task = q._tasks.shift(); + + if (q._tasks.length === 0) { + q.empty(); + } + + workers += 1; + + if (workers === q.concurrency) { + q.saturated(); + } + + worker(task.data, onlyOnce(_next(task))); + } + }, + length: function length() { + return q._tasks.length; + }, + running: function running() { + return workers; + }, + idle: function idle() { + return q._tasks.length + workers === 0; + }, + pause: function pause() { + if (q.paused === true) { + return; + } + + q.paused = true; + }, + resume: function resume() { + if (q.paused === false) { + return; + } + + q.paused = false; // Need to call q.process once per concurrent + // worker to preserve full concurrency after pause + + for (var w = 1; w <= q.concurrency; w++) { + q.process(); + } + } + }; + + function _insert(data, insertAtFront, callback) { + if (callback != null && typeof callback !== 'function') { + // eslint-disable-line no-eq-null,eqeqeq + throw new Error('task callback must be a function'); + } + + q.started = true; + + if (data == null && q.idle()) { + // eslint-disable-line no-eq-null,eqeqeq + // call drain immediately if there are no tasks + setTimeout(function () { + return q.drain(); + }, 1); + return; + } + + var item = { + data: data, + callback: typeof callback === 'function' ? callback : _noop + }; + + if (insertAtFront) { + q._tasks.unshift(item); + } else { + q._tasks.push(item); + } + + setTimeout(function () { + return q.process(); + }, 1); + } + + function _next(task) { + return function next() { + workers -= 1; + task.callback.apply(task, arguments); + + if (arguments[0] != null) { + // eslint-disable-line no-eq-null,eqeqeq + q.error(arguments[0], task.data); + } + + if (workers <= q.concurrency - q.buffer) { + q.unsaturated(); + } + + if (q.idle()) { + q.drain(); + } + + q.process(); + }; + } + + return q; +} + +// a simple in-memory cache for resources +var cache = {}; +/** + * A simple in-memory cache for resource. + * + * @memberof middleware + * @function caching + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.caching); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function caching(resource, next) { + var _this = this; + + // if cached, then set data and complete the resource + if (cache[resource.url]) { + resource.data = cache[resource.url]; + resource.complete(); // marks resource load complete and stops processing before middlewares + } // if not cached, wait for complete and store it in the cache. + else { + resource.onComplete.once(function () { + return cache[_this.url] = _this.data; + }); + } + + next(); +} + +function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } +} + +function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + return Constructor; +} + +var useXdr = !!(window.XDomainRequest && !('withCredentials' in new XMLHttpRequest())); +var tempAnchor$1 = null; // some status constants + +var STATUS_NONE = 0; +var STATUS_OK = 200; +var STATUS_EMPTY = 204; +var STATUS_IE_BUG_EMPTY = 1223; +var STATUS_TYPE_OK = 2; // noop + +function _noop$1() {} +/* empty */ + +/** + * Manages the state and loading of a resource and all child resources. + * + * @class + */ + + +var Resource$1 = +/*#__PURE__*/ +function () { + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.LOAD_TYPE} loadType - The load type to set it to. + */ + Resource.setExtensionLoadType = function setExtensionLoadType(extname, loadType) { + setExtMap(Resource._loadTypeMap, extname, loadType); + } + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.XHR_RESPONSE_TYPE} xhrType - The xhr type to set it to. + */ + ; + + Resource.setExtensionXhrType = function setExtensionXhrType(extname, xhrType) { + setExtMap(Resource._xhrTypeMap, extname, xhrType); + } + /** + * @param {string} name - The name of the resource to load. + * @param {string|string[]} url - The url for this resource, for audio/video loads you can pass + * an array of sources. + * @param {object} [options] - The options for the load. + * @param {string|boolean} [options.crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @param {number} [options.timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @param {Resource.LOAD_TYPE} [options.loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @param {Resource.XHR_RESPONSE_TYPE} [options.xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @param {Resource.IMetadata} [options.metadata] - Extra configuration for middleware and the Resource object. + */ + ; + + function Resource(name, url, options) { + if (typeof name !== 'string' || typeof url !== 'string') { + throw new Error('Both name and url are required for constructing a resource.'); + } + + options = options || {}; + /** + * The state flags of this resource. + * + * @private + * @member {number} + */ + + this._flags = 0; // set data url flag, needs to be set early for some _determineX checks to work. + + this._setFlag(Resource.STATUS_FLAGS.DATA_URL, url.indexOf('data:') === 0); + /** + * The name of this resource. + * + * @readonly + * @member {string} + */ + + + this.name = name; + /** + * The url used to load this resource. + * + * @readonly + * @member {string} + */ + + this.url = url; + /** + * The extension used to load this resource. + * + * @readonly + * @member {string} + */ + + this.extension = this._getExtension(); + /** + * The data that was loaded by the resource. + * + * @member {any} + */ + + this.data = null; + /** + * Is this request cross-origin? If unset, determined automatically. + * + * @member {string} + */ + + this.crossOrigin = options.crossOrigin === true ? 'anonymous' : options.crossOrigin; + /** + * A timeout in milliseconds for the load. If the load takes longer than this time + * it is cancelled and the load is considered a failure. If this value is set to `0` + * then there is no explicit timeout. + * + * @member {number} + */ + + this.timeout = options.timeout || 0; + /** + * The method of loading to use for this resource. + * + * @member {Resource.LOAD_TYPE} + */ + + this.loadType = options.loadType || this._determineLoadType(); + /** + * The type used to load the resource via XHR. If unset, determined automatically. + * + * @member {string} + */ + + this.xhrType = options.xhrType; + /** + * Extra info for middleware, and controlling specifics about how the resource loads. + * + * Note that if you pass in a `loadElement`, the Resource class takes ownership of it. + * Meaning it will modify it as it sees fit. + * + * @member {Resource.IMetadata} + */ + + this.metadata = options.metadata || {}; + /** + * The error that occurred while loading (if any). + * + * @readonly + * @member {Error} + */ + + this.error = null; + /** + * The XHR object that was used to load this resource. This is only set + * when `loadType` is `Resource.LOAD_TYPE.XHR`. + * + * @readonly + * @member {XMLHttpRequest} + */ + + this.xhr = null; + /** + * The child resources this resource owns. + * + * @readonly + * @member {Resource[]} + */ + + this.children = []; + /** + * The resource type. + * + * @readonly + * @member {Resource.TYPE} + */ + + this.type = Resource.TYPE.UNKNOWN; + /** + * The progress chunk owned by this resource. + * + * @readonly + * @member {number} + */ + + this.progressChunk = 0; + /** + * The `dequeue` method that will be used a storage place for the async queue dequeue method + * used privately by the loader. + * + * @private + * @member {function} + */ + + this._dequeue = _noop$1; + /** + * Used a storage place for the on load binding used privately by the loader. + * + * @private + * @member {function} + */ + + this._onLoadBinding = null; + /** + * The timer for element loads to check if they timeout. + * + * @private + * @member {number} + */ + + this._elementTimer = 0; + /** + * The `complete` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundComplete = this.complete.bind(this); + /** + * The `_onError` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnError = this._onError.bind(this); + /** + * The `_onProgress` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnProgress = this._onProgress.bind(this); + /** + * The `_onTimeout` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnTimeout = this._onTimeout.bind(this); // xhr callbacks + + this._boundXhrOnError = this._xhrOnError.bind(this); + this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this); + this._boundXhrOnAbort = this._xhrOnAbort.bind(this); + this._boundXhrOnLoad = this._xhrOnLoad.bind(this); + /** + * Dispatched when the resource beings to load. + * + * The callback looks like {@link Resource.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched each time progress of this resource load updates. + * Not all resources types and loader systems can support this event + * so sometimes it may not be available. If the resource + * is being loaded on a modern browser, using XHR, and the remote server + * properly sets Content-Length headers, then this will be available. + * + * The callback looks like {@link Resource.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once this resource has loaded, if there was an error it will + * be in the `error` property. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); + /** + * Dispatched after this resource has had all the *after* middleware run on it. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onAfterMiddleware = new Signal(); + } + /** + * When the resource starts to load. + * + * @memberof Resource + * @callback OnStartSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * When the resource reports loading progress. + * + * @memberof Resource + * @callback OnProgressSignal + * @param {Resource} resource - The resource that the event happened on. + * @param {number} percentage - The progress of the load in the range [0, 1]. + */ + + /** + * When the resource finishes loading. + * + * @memberof Resource + * @callback OnCompleteSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * @memberof Resource + * @typedef {object} IMetadata + * @property {HTMLImageElement|HTMLAudioElement|HTMLVideoElement} [loadElement=null] - The + * element to use for loading, instead of creating one. + * @property {boolean} [skipSource=false] - Skips adding source(s) to the load element. This + * is useful if you want to pass in a `loadElement` that you already added load sources to. + * @property {string|string[]} [mimeType] - The mime type to use for the source element + * of a video/audio elment. If the urls are an array, you can pass this as an array as well + * where each index is the mime type to use for the corresponding url index. + */ + + /** + * Stores whether or not this url is a data url. + * + * @readonly + * @member {boolean} + */ + + + var _proto = Resource.prototype; + + /** + * Marks the resource as complete. + * + */ + _proto.complete = function complete() { + this._clearEvents(); + + this._finish(); + } + /** + * Aborts the loading of this resource, with an optional message. + * + * @param {string} message - The message to use for the error + */ + ; + + _proto.abort = function abort(message) { + // abort can be called multiple times, ignore subsequent calls. + if (this.error) { + return; + } // store error + + + this.error = new Error(message); // clear events before calling aborts + + this._clearEvents(); // abort the actual loading + + + if (this.xhr) { + this.xhr.abort(); + } else if (this.xdr) { + this.xdr.abort(); + } else if (this.data) { + // single source + if (this.data.src) { + this.data.src = Resource.EMPTY_GIF; + } // multi-source + else { + while (this.data.firstChild) { + this.data.removeChild(this.data.firstChild); + } + } + } // done now. + + + this._finish(); + } + /** + * Kicks off loading of this resource. This method is asynchronous. + * + * @param {Resource.OnCompleteSignal} [cb] - Optional callback to call once the resource is loaded. + */ + ; + + _proto.load = function load(cb) { + var _this = this; + + if (this.isLoading) { + return; + } + + if (this.isComplete) { + if (cb) { + setTimeout(function () { + return cb(_this); + }, 1); + } + + return; + } else if (cb) { + this.onComplete.once(cb); + } + + this._setFlag(Resource.STATUS_FLAGS.LOADING, true); + + this.onStart.dispatch(this); // if unset, determine the value + + if (this.crossOrigin === false || typeof this.crossOrigin !== 'string') { + this.crossOrigin = this._determineCrossOrigin(this.url); + } + + switch (this.loadType) { + case Resource.LOAD_TYPE.IMAGE: + this.type = Resource.TYPE.IMAGE; + + this._loadElement('image'); + + break; + + case Resource.LOAD_TYPE.AUDIO: + this.type = Resource.TYPE.AUDIO; + + this._loadSourceElement('audio'); + + break; + + case Resource.LOAD_TYPE.VIDEO: + this.type = Resource.TYPE.VIDEO; + + this._loadSourceElement('video'); + + break; + + case Resource.LOAD_TYPE.XHR: + /* falls through */ + + default: + if (useXdr && this.crossOrigin) { + this._loadXdr(); + } else { + this._loadXhr(); + } + + break; + } + } + /** + * Checks if the flag is set. + * + * @private + * @param {number} flag - The flag to check. + * @return {boolean} True if the flag is set. + */ + ; + + _proto._hasFlag = function _hasFlag(flag) { + return (this._flags & flag) !== 0; + } + /** + * (Un)Sets the flag. + * + * @private + * @param {number} flag - The flag to (un)set. + * @param {boolean} value - Whether to set or (un)set the flag. + */ + ; + + _proto._setFlag = function _setFlag(flag, value) { + this._flags = value ? this._flags | flag : this._flags & ~flag; + } + /** + * Clears all the events from the underlying loading source. + * + * @private + */ + ; + + _proto._clearEvents = function _clearEvents() { + clearTimeout(this._elementTimer); + + if (this.data && this.data.removeEventListener) { + this.data.removeEventListener('error', this._boundOnError, false); + this.data.removeEventListener('load', this._boundComplete, false); + this.data.removeEventListener('progress', this._boundOnProgress, false); + this.data.removeEventListener('canplaythrough', this._boundComplete, false); + } + + if (this.xhr) { + if (this.xhr.removeEventListener) { + this.xhr.removeEventListener('error', this._boundXhrOnError, false); + this.xhr.removeEventListener('timeout', this._boundXhrOnTimeout, false); + this.xhr.removeEventListener('abort', this._boundXhrOnAbort, false); + this.xhr.removeEventListener('progress', this._boundOnProgress, false); + this.xhr.removeEventListener('load', this._boundXhrOnLoad, false); + } else { + this.xhr.onerror = null; + this.xhr.ontimeout = null; + this.xhr.onprogress = null; + this.xhr.onload = null; + } + } + } + /** + * Finalizes the load. + * + * @private + */ + ; + + _proto._finish = function _finish() { + if (this.isComplete) { + throw new Error('Complete called again for an already completed resource.'); + } + + this._setFlag(Resource.STATUS_FLAGS.COMPLETE, true); + + this._setFlag(Resource.STATUS_FLAGS.LOADING, false); + + this.onComplete.dispatch(this); + } + /** + * Loads this resources using an element that has a single source, + * like an HTMLImageElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadElement = function _loadElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'image' && typeof window.Image !== 'undefined') { + this.data = new Image(); + } else { + this.data = document.createElement(type); + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + this.data.src = this.url; + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an element that has multiple sources, + * like an HTMLAudioElement or HTMLVideoElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadSourceElement = function _loadSourceElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'audio' && typeof window.Audio !== 'undefined') { + this.data = new Audio(); + } else { + this.data = document.createElement(type); + } + + if (this.data === null) { + this.abort("Unsupported element: " + type); + return; + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + // support for CocoonJS Canvas+ runtime, lacks document.createElement('source') + if (navigator.isCocoonJS) { + this.data.src = Array.isArray(this.url) ? this.url[0] : this.url; + } else if (Array.isArray(this.url)) { + var mimeTypes = this.metadata.mimeType; + + for (var i = 0; i < this.url.length; ++i) { + this.data.appendChild(this._createSource(type, this.url[i], Array.isArray(mimeTypes) ? mimeTypes[i] : mimeTypes)); + } + } else { + var _mimeTypes = this.metadata.mimeType; + this.data.appendChild(this._createSource(type, this.url, Array.isArray(_mimeTypes) ? _mimeTypes[0] : _mimeTypes)); + } + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + this.data.addEventListener('canplaythrough', this._boundComplete, false); + this.data.load(); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an XMLHttpRequest. + * + * @private + */ + ; + + _proto._loadXhr = function _loadXhr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xhr = this.xhr = new XMLHttpRequest(); // set the request type and url + + xhr.open('GET', this.url, true); + xhr.timeout = this.timeout; // load json as text and parse it ourselves. We do this because some browsers + // *cough* safari *cough* can't deal with it. + + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON || this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + xhr.responseType = Resource.XHR_RESPONSE_TYPE.TEXT; + } else { + xhr.responseType = this.xhrType; + } + + xhr.addEventListener('error', this._boundXhrOnError, false); + xhr.addEventListener('timeout', this._boundXhrOnTimeout, false); + xhr.addEventListener('abort', this._boundXhrOnAbort, false); + xhr.addEventListener('progress', this._boundOnProgress, false); + xhr.addEventListener('load', this._boundXhrOnLoad, false); + xhr.send(); + } + /** + * Loads this resources using an XDomainRequest. This is here because we need to support IE9 (gross). + * + * @private + */ + ; + + _proto._loadXdr = function _loadXdr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xdr = this.xhr = new XDomainRequest(); // eslint-disable-line no-undef + // XDomainRequest has a few quirks. Occasionally it will abort requests + // A way to avoid this is to make sure ALL callbacks are set even if not used + // More info here: http://stackoverflow.com/questions/15786966/xdomainrequest-aborts-post-on-ie-9 + + xdr.timeout = this.timeout || 5000; // XDR needs a timeout value or it breaks in IE9 + + xdr.onerror = this._boundXhrOnError; + xdr.ontimeout = this._boundXhrOnTimeout; + xdr.onprogress = this._boundOnProgress; + xdr.onload = this._boundXhrOnLoad; + xdr.open('GET', this.url, true); // Note: The xdr.send() call is wrapped in a timeout to prevent an + // issue with the interface where some requests are lost if multiple + // XDomainRequests are being sent at the same time. + // Some info here: https://github.com/photonstorm/phaser/issues/1248 + + setTimeout(function () { + return xdr.send(); + }, 1); + } + /** + * Creates a source used in loading via an element. + * + * @private + * @param {string} type - The element type (video or audio). + * @param {string} url - The source URL to load from. + * @param {string} [mime] - The mime type of the video + * @return {HTMLSourceElement} The source element. + */ + ; + + _proto._createSource = function _createSource(type, url, mime) { + if (!mime) { + mime = type + "/" + this._getExtension(url); + } + + var source = document.createElement('source'); + source.src = url; + source.type = mime; + return source; + } + /** + * Called if a load errors out. + * + * @param {Event} event - The error event from the element that emits it. + * @private + */ + ; + + _proto._onError = function _onError(event) { + this.abort("Failed to load element using: " + event.target.nodeName); + } + /** + * Called if a load progress event fires for an element or xhr/xdr. + * + * @private + * @param {XMLHttpRequestProgressEvent|Event} event - Progress event. + */ + ; + + _proto._onProgress = function _onProgress(event) { + if (event && event.lengthComputable) { + this.onProgress.dispatch(this, event.loaded / event.total); + } + } + /** + * Called if a timeout event fires for an element. + * + * @private + */ + ; + + _proto._onTimeout = function _onTimeout() { + this.abort("Load timed out."); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnError = function _xhrOnError() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request failed. Status: " + xhr.status + ", text: \"" + xhr.statusText + "\""); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnTimeout = function _xhrOnTimeout() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request timed out."); + } + /** + * Called if an abort event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnAbort = function _xhrOnAbort() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request was aborted by the user."); + } + /** + * Called when data successfully loads from an xhr/xdr request. + * + * @private + * @param {XMLHttpRequestLoadEvent|Event} event - Load event + */ + ; + + _proto._xhrOnLoad = function _xhrOnLoad() { + var xhr = this.xhr; + var text = ''; + var status = typeof xhr.status === 'undefined' ? STATUS_OK : xhr.status; // XDR has no `.status`, assume 200. + // responseText is accessible only if responseType is '' or 'text' and on older browsers + + if (xhr.responseType === '' || xhr.responseType === 'text' || typeof xhr.responseType === 'undefined') { + text = xhr.responseText; + } // status can be 0 when using the `file://` protocol so we also check if a response is set. + // If it has a response, we assume 200; otherwise a 0 status code with no contents is an aborted request. + + + if (status === STATUS_NONE && (text.length > 0 || xhr.responseType === Resource.XHR_RESPONSE_TYPE.BUFFER)) { + status = STATUS_OK; + } // handle IE9 bug: http://stackoverflow.com/questions/10046972/msie-returns-status-code-of-1223-for-ajax-request + else if (status === STATUS_IE_BUG_EMPTY) { + status = STATUS_EMPTY; + } + + var statusType = status / 100 | 0; + + if (statusType === STATUS_TYPE_OK) { + // if text, just return it + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.TEXT) { + this.data = text; + this.type = Resource.TYPE.TEXT; + } // if json, parse into json object + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON) { + try { + this.data = JSON.parse(text); + this.type = Resource.TYPE.JSON; + } catch (e) { + this.abort("Error trying to parse loaded json: " + e); + return; + } + } // if xml, parse into an xml document or div element + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + try { + if (window.DOMParser) { + var domparser = new DOMParser(); + this.data = domparser.parseFromString(text, 'text/xml'); + } else { + var div = document.createElement('div'); + div.innerHTML = text; + this.data = div; + } + + this.type = Resource.TYPE.XML; + } catch (e) { + this.abort("Error trying to parse loaded xml: " + e); + return; + } + } // other types just return the response + else { + this.data = xhr.response || text; + } + } else { + this.abort("[" + xhr.status + "] " + xhr.statusText + ": " + xhr.responseURL); + return; + } + + this.complete(); + } + /** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * + * @private + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ + ; + + _proto._determineCrossOrigin = function _determineCrossOrigin(url, loc) { + // data: and javascript: urls are considered same-origin + if (url.indexOf('data:') === 0) { + return ''; + } // A sandboxed iframe without the 'allow-same-origin' attribute will have a special + // origin designed not to match window.location.origin, and will always require + // crossOrigin requests regardless of whether the location matches. + + + if (window.origin !== window.location.origin) { + return 'anonymous'; + } // default is window.location + + + loc = loc || window.location; + + if (!tempAnchor$1) { + tempAnchor$1 = document.createElement('a'); + } // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + + + tempAnchor$1.href = url; + url = parseUri(tempAnchor$1.href, { + strictMode: true + }); + var samePort = !url.port && loc.port === '' || url.port === loc.port; + var protocol = url.protocol ? url.protocol + ":" : ''; // if cross origin + + if (url.host !== loc.hostname || !samePort || protocol !== loc.protocol) { + return 'anonymous'; + } + + return ''; + } + /** + * Determines the responseType of an XHR request based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.XHR_RESPONSE_TYPE} The responseType to use. + */ + ; + + _proto._determineXhrType = function _determineXhrType() { + return Resource._xhrTypeMap[this.extension] || Resource.XHR_RESPONSE_TYPE.TEXT; + } + /** + * Determines the loadType of a resource based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.LOAD_TYPE} The loadType to use. + */ + ; + + _proto._determineLoadType = function _determineLoadType() { + return Resource._loadTypeMap[this.extension] || Resource.LOAD_TYPE.XHR; + } + /** + * Extracts the extension (sans '.') of the file being loaded by the resource. + * + * @private + * @return {string} The extension. + */ + ; + + _proto._getExtension = function _getExtension() { + var url = this.url; + var ext = ''; + + if (this.isDataUrl) { + var slashIndex = url.indexOf('/'); + ext = url.substring(slashIndex + 1, url.indexOf(';', slashIndex)); + } else { + var queryStart = url.indexOf('?'); + var hashStart = url.indexOf('#'); + var index = Math.min(queryStart > -1 ? queryStart : url.length, hashStart > -1 ? hashStart : url.length); + url = url.substring(0, index); + ext = url.substring(url.lastIndexOf('.') + 1); + } + + return ext.toLowerCase(); + } + /** + * Determines the mime type of an XHR request based on the responseType of + * resource being loaded. + * + * @private + * @param {Resource.XHR_RESPONSE_TYPE} type - The type to get a mime type for. + * @return {string} The mime type to use. + */ + ; + + _proto._getMimeFromXhrType = function _getMimeFromXhrType(type) { + switch (type) { + case Resource.XHR_RESPONSE_TYPE.BUFFER: + return 'application/octet-binary'; + + case Resource.XHR_RESPONSE_TYPE.BLOB: + return 'application/blob'; + + case Resource.XHR_RESPONSE_TYPE.DOCUMENT: + return 'application/xml'; + + case Resource.XHR_RESPONSE_TYPE.JSON: + return 'application/json'; + + case Resource.XHR_RESPONSE_TYPE.DEFAULT: + case Resource.XHR_RESPONSE_TYPE.TEXT: + /* falls through */ + + default: + return 'text/plain'; + } + }; + + _createClass(Resource, [{ + key: "isDataUrl", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.DATA_URL); + } + /** + * Describes if this resource has finished loading. Is true when the resource has completely + * loaded. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isComplete", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.COMPLETE); + } + /** + * Describes if this resource is currently loading. Is true when the resource starts loading, + * and is false again when complete. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isLoading", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.LOADING); + } + }]); + + return Resource; +}(); +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + + +Resource$1.STATUS_FLAGS = { + NONE: 0, + DATA_URL: 1 << 0, + COMPLETE: 1 << 1, + LOADING: 1 << 2 +}; +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.TYPE = { + UNKNOWN: 0, + JSON: 1, + XML: 2, + IMAGE: 3, + AUDIO: 4, + VIDEO: 5, + TEXT: 6 +}; +/** + * The types of loading a resource can use. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.LOAD_TYPE = { + /** Uses XMLHttpRequest to load the resource. */ + XHR: 1, + + /** Uses an `Image` object to load the resource. */ + IMAGE: 2, + + /** Uses an `Audio` object to load the resource. */ + AUDIO: 3, + + /** Uses a `Video` object to load the resource. */ + VIDEO: 4 +}; +/** + * The XHR ready states, used internally. + * + * @static + * @readonly + * @enum {string} + */ + +Resource$1.XHR_RESPONSE_TYPE = { + /** string */ + DEFAULT: 'text', + + /** ArrayBuffer */ + BUFFER: 'arraybuffer', + + /** Blob */ + BLOB: 'blob', + + /** Document */ + DOCUMENT: 'document', + + /** Object */ + JSON: 'json', + + /** String */ + TEXT: 'text' +}; +Resource$1._loadTypeMap = { + // images + gif: Resource$1.LOAD_TYPE.IMAGE, + png: Resource$1.LOAD_TYPE.IMAGE, + bmp: Resource$1.LOAD_TYPE.IMAGE, + jpg: Resource$1.LOAD_TYPE.IMAGE, + jpeg: Resource$1.LOAD_TYPE.IMAGE, + tif: Resource$1.LOAD_TYPE.IMAGE, + tiff: Resource$1.LOAD_TYPE.IMAGE, + webp: Resource$1.LOAD_TYPE.IMAGE, + tga: Resource$1.LOAD_TYPE.IMAGE, + svg: Resource$1.LOAD_TYPE.IMAGE, + 'svg+xml': Resource$1.LOAD_TYPE.IMAGE, + // for SVG data urls + // audio + mp3: Resource$1.LOAD_TYPE.AUDIO, + ogg: Resource$1.LOAD_TYPE.AUDIO, + wav: Resource$1.LOAD_TYPE.AUDIO, + // videos + mp4: Resource$1.LOAD_TYPE.VIDEO, + webm: Resource$1.LOAD_TYPE.VIDEO +}; +Resource$1._xhrTypeMap = { + // xml + xhtml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + html: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + htm: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + xml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + tmx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + svg: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // This was added to handle Tiled Tileset XML, but .tsx is also a TypeScript React Component. + // Since it is way less likely for people to be loading TypeScript files instead of Tiled files, + // this should probably be fine. + tsx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // images + gif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + png: Resource$1.XHR_RESPONSE_TYPE.BLOB, + bmp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpeg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tiff: Resource$1.XHR_RESPONSE_TYPE.BLOB, + webp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tga: Resource$1.XHR_RESPONSE_TYPE.BLOB, + // json + json: Resource$1.XHR_RESPONSE_TYPE.JSON, + // text + text: Resource$1.XHR_RESPONSE_TYPE.TEXT, + txt: Resource$1.XHR_RESPONSE_TYPE.TEXT, + // fonts + ttf: Resource$1.XHR_RESPONSE_TYPE.BUFFER, + otf: Resource$1.XHR_RESPONSE_TYPE.BUFFER +}; // We can't set the `src` attribute to empty string, so on abort we set it to this 1px transparent gif + +Resource$1.EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='; +/** + * Quick helper to set a value on one of the extension maps. Ensures there is no + * dot at the start of the extension. + * + * @ignore + * @param {object} map - The map to set on. + * @param {string} extname - The extension (or key) to set. + * @param {number} val - The value to set. + */ + +function setExtMap(map, extname, val) { + if (extname && extname.indexOf('.') === 0) { + extname = extname.substring(1); + } + + if (!extname) { + return; + } + + map[extname] = val; +} +/** + * Quick helper to get string xhr type. + * + * @ignore + * @param {XMLHttpRequest|XDomainRequest} xhr - The request to check. + * @return {string} The type. + */ + + +function reqType(xhr) { + return xhr.toString().replace('object ', ''); +} + +var _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; +/** + * Encodes binary into base64. + * + * @function encodeBinary + * @param {string} input The input data to encode. + * @returns {string} The encoded base64 string + */ + +function encodeBinary(input) { + var output = ''; + var inx = 0; + + while (inx < input.length) { + // Fill byte buffer array + var bytebuffer = [0, 0, 0]; + var encodedCharIndexes = [0, 0, 0, 0]; + + for (var jnx = 0; jnx < bytebuffer.length; ++jnx) { + if (inx < input.length) { + // throw away high-order byte, as documented at: + // https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data + bytebuffer[jnx] = input.charCodeAt(inx++) & 0xff; + } else { + bytebuffer[jnx] = 0; + } + } // Get each encoded character, 6 bits at a time + // index 1: first 6 bits + + + encodedCharIndexes[0] = bytebuffer[0] >> 2; // index 2: second 6 bits (2 least significant bits from input byte 1 + 4 most significant bits from byte 2) + + encodedCharIndexes[1] = (bytebuffer[0] & 0x3) << 4 | bytebuffer[1] >> 4; // index 3: third 6 bits (4 least significant bits from input byte 2 + 2 most significant bits from byte 3) + + encodedCharIndexes[2] = (bytebuffer[1] & 0x0f) << 2 | bytebuffer[2] >> 6; // index 3: forth 6 bits (6 least significant bits from input byte 3) + + encodedCharIndexes[3] = bytebuffer[2] & 0x3f; // Determine whether padding happened, and adjust accordingly + + var paddingBytes = inx - (input.length - 1); + + switch (paddingBytes) { + case 2: + // Set last 2 characters to padding char + encodedCharIndexes[3] = 64; + encodedCharIndexes[2] = 64; + break; + + case 1: + // Set last character to padding char + encodedCharIndexes[3] = 64; + break; + + default: + break; + // No padding - proceed + } // Now we will grab each appropriate character out of our keystring + // based on our index array and append it to the output string + + + for (var _jnx = 0; _jnx < encodedCharIndexes.length; ++_jnx) { + output += _keyStr.charAt(encodedCharIndexes[_jnx]); + } + } + + return output; +} + +var Url$1 = window.URL || window.webkitURL; +/** + * A middleware for transforming XHR loaded Blobs into more useful objects + * + * @memberof middleware + * @function parsing + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.parsing); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function parsing(resource, next) { + if (!resource.data) { + next(); + return; + } // if this was an XHR load of a blob + + + if (resource.xhr && resource.xhrType === Resource$1.XHR_RESPONSE_TYPE.BLOB) { + // if there is no blob support we probably got a binary string back + if (!window.Blob || typeof resource.data === 'string') { + var type = resource.xhr.getResponseHeader('content-type'); // this is an image, convert the binary string into a data url + + if (type && type.indexOf('image') === 0) { + resource.data = new Image(); + resource.data.src = "data:" + type + ";base64," + encodeBinary(resource.xhr.responseText); + resource.type = Resource$1.TYPE.IMAGE; // wait until the image loads and then callback + + resource.data.onload = function () { + resource.data.onload = null; + next(); + }; // next will be called on load + + + return; + } + } // if content type says this is an image, then we should transform the blob into an Image object + else if (resource.data.type.indexOf('image') === 0) { + var src = Url$1.createObjectURL(resource.data); + resource.blob = resource.data; + resource.data = new Image(); + resource.data.src = src; + resource.type = Resource$1.TYPE.IMAGE; // cleanup the no longer used blob after the image loads + // TODO: Is this correct? Will the image be invalid after revoking? + + resource.data.onload = function () { + Url$1.revokeObjectURL(src); + resource.data.onload = null; + next(); + }; // next will be called on load. + + + return; + } + } + + next(); +} + +/** + * @namespace middleware + */ + +var index = ({ + caching: caching, + parsing: parsing +}); + +var MAX_PROGRESS = 100; +var rgxExtractUrlHash = /(#[\w-]+)?$/; +/** + * Manages the state and loading of multiple resources to load. + * + * @class + */ + +var Loader = +/*#__PURE__*/ +function () { + /** + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ + function Loader(baseUrl, concurrency) { + var _this = this; + + if (baseUrl === void 0) { + baseUrl = ''; + } + + if (concurrency === void 0) { + concurrency = 10; + } + + /** + * The base url for all resources loaded by this loader. + * + * @member {string} + */ + this.baseUrl = baseUrl; + /** + * The progress percent of the loader going through the queue. + * + * @member {number} + * @default 0 + */ + + this.progress = 0; + /** + * Loading state of the loader, true if it is currently loading resources. + * + * @member {boolean} + * @default false + */ + + this.loading = false; + /** + * A querystring to append to every URL added to the loader. + * + * This should be a valid query string *without* the question-mark (`?`). The loader will + * also *not* escape values for you. Make sure to escape your parameters with + * [`encodeURIComponent`](https://mdn.io/encodeURIComponent) before assigning this property. + * + * @example + * const loader = new Loader(); + * + * loader.defaultQueryString = 'user=me&password=secret'; + * + * // This will request 'image.png?user=me&password=secret' + * loader.add('image.png').load(); + * + * loader.reset(); + * + * // This will request 'image.png?v=1&user=me&password=secret' + * loader.add('iamge.png?v=1').load(); + * + * @member {string} + * @default '' + */ + + this.defaultQueryString = ''; + /** + * The middleware to run before loading each resource. + * + * @private + * @member {function[]} + */ + + this._beforeMiddleware = []; + /** + * The middleware to run after loading each resource. + * + * @private + * @member {function[]} + */ + + this._afterMiddleware = []; + /** + * The tracks the resources we are currently completing parsing for. + * + * @private + * @member {Resource[]} + */ + + this._resourcesParsing = []; + /** + * The `_loadResource` function bound with this object context. + * + * @private + * @member {function} + * @param {Resource} r - The resource to load + * @param {Function} d - The dequeue function + * @return {undefined} + */ + + this._boundLoadResource = function (r, d) { + return _this._loadResource(r, d); + }; + /** + * The resources waiting to be loaded. + * + * @private + * @member {Resource[]} + */ + + + this._queue = queue(this._boundLoadResource, concurrency); + + this._queue.pause(); + /** + * All the resources for this loader keyed by name. + * + * @member {object} + */ + + + this.resources = {}; + /** + * Dispatched once per loaded or errored resource. + * + * The callback looks like {@link Loader.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once per errored resource. + * + * The callback looks like {@link Loader.OnErrorSignal}. + * + * @member {Signal} + */ + + this.onError = new Signal(); + /** + * Dispatched once per loaded resource. + * + * The callback looks like {@link Loader.OnLoadSignal}. + * + * @member {Signal} + */ + + this.onLoad = new Signal(); + /** + * Dispatched when the loader begins to process the queue. + * + * The callback looks like {@link Loader.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched when the queued resources all load. + * + * The callback looks like {@link Loader.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); // Add default before middleware + + for (var i = 0; i < Loader._defaultBeforeMiddleware.length; ++i) { + this.pre(Loader._defaultBeforeMiddleware[i]); + } // Add default after middleware + + + for (var _i = 0; _i < Loader._defaultAfterMiddleware.length; ++_i) { + this.use(Loader._defaultAfterMiddleware[_i]); + } + } + /** + * When the progress changes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnProgressSignal + * @param {Loader} loader - The loader the progress is advancing on. + * @param {Resource} resource - The resource that has completed or failed to cause the progress to advance. + */ + + /** + * When an error occurrs the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnErrorSignal + * @param {Loader} loader - The loader the error happened in. + * @param {Resource} resource - The resource that caused the error. + */ + + /** + * When a load completes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnLoadSignal + * @param {Loader} loader - The loader that laoded the resource. + * @param {Resource} resource - The resource that has completed loading. + */ + + /** + * When the loader starts loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnStartSignal + * @param {Loader} loader - The loader that has started loading resources. + */ + + /** + * When the loader completes loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnCompleteSignal + * @param {Loader} loader - The loader that has finished loading resources. + */ + + /** + * Options for a call to `.add()`. + * + * @see Loader#add + * + * @typedef {object} IAddOptions + * @property {string} [name] - The name of the resource to load, if not passed the url is used. + * @property {string} [key] - Alias for `name`. + * @property {string} [url] - The url for this resource, relative to the baseUrl of this loader. + * @property {string|boolean} [crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @property {number} [timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @property {Resource.LOAD_TYPE} [loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @property {Resource.XHR_RESPONSE_TYPE} [xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @property {Resource.OnCompleteSignal} [onComplete] - Callback to add an an onComplete signal istener. + * @property {Resource.OnCompleteSignal} [callback] - Alias for `onComplete`. + * @property {Resource.IMetadata} [metadata] - Extra configuration for middleware and the Resource object. + */ + + /* eslint-disable require-jsdoc,valid-jsdoc */ + + /** + * Adds a resource (or multiple resources) to the loader queue. + * + * This function can take a wide variety of different parameters. The only thing that is always + * required the url to load. All the following will work: + * + * ```js + * loader + * // normal param syntax + * .add('key', 'http://...', function () {}) + * .add('http://...', function () {}) + * .add('http://...') + * + * // object syntax + * .add({ + * name: 'key2', + * url: 'http://...' + * }, function () {}) + * .add({ + * url: 'http://...' + * }, function () {}) + * .add({ + * name: 'key3', + * url: 'http://...' + * onComplete: function () {} + * }) + * .add({ + * url: 'https://...', + * onComplete: function () {}, + * crossOrigin: true + * }) + * + * // you can also pass an array of objects or urls or both + * .add([ + * { name: 'key4', url: 'http://...', onComplete: function () {} }, + * { url: 'http://...', onComplete: function () {} }, + * 'http://...' + * ]) + * + * // and you can use both params and options + * .add('key', 'http://...', { crossOrigin: true }, function () {}) + * .add('http://...', { crossOrigin: true }, function () {}); + * ``` + * + * @function + * @variation 1 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 2 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 3 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 4 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 5 + * @param {IAddOptions} options - The options for the load. This object must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 6 + * @param {Array} resources - An array of resources to load, where each is + * either an object with the options or a string url. If you pass an object, it must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + + var _proto = Loader.prototype; + + _proto.add = function add(name, url, options, cb) { + // special case of an array of objects or urls + if (Array.isArray(name)) { + for (var i = 0; i < name.length; ++i) { + this.add(name[i]); + } + + return this; + } // if an object is passed instead of params + + + if (typeof name === 'object') { + cb = url || name.callback || name.onComplete; + options = name; + url = name.url; + name = name.name || name.key || name.url; + } // case where no name is passed shift all args over by one. + + + if (typeof url !== 'string') { + cb = options; + options = url; + url = name; + } // now that we shifted make sure we have a proper url. + + + if (typeof url !== 'string') { + throw new Error('No url passed to add resource to loader.'); + } // options are optional so people might pass a function and no options + + + if (typeof options === 'function') { + cb = options; + options = null; + } // if loading already you can only add resources that have a parent. + + + if (this.loading && (!options || !options.parentResource)) { + throw new Error('Cannot add resources while the loader is running.'); + } // check if resource already exists. + + + if (this.resources[name]) { + throw new Error("Resource named \"" + name + "\" already exists."); + } // add base url if this isn't an absolute url + + + url = this._prepareUrl(url); // create the store the resource + + this.resources[name] = new Resource$1(name, url, options); + + if (typeof cb === 'function') { + this.resources[name].onAfterMiddleware.once(cb); + } // if actively loading, make sure to adjust progress chunks for that parent and its children + + + if (this.loading) { + var parent = options.parentResource; + var incompleteChildren = []; + + for (var _i2 = 0; _i2 < parent.children.length; ++_i2) { + if (!parent.children[_i2].isComplete) { + incompleteChildren.push(parent.children[_i2]); + } + } + + var fullChunk = parent.progressChunk * (incompleteChildren.length + 1); // +1 for parent + + var eachChunk = fullChunk / (incompleteChildren.length + 2); // +2 for parent & new child + + parent.children.push(this.resources[name]); + parent.progressChunk = eachChunk; + + for (var _i3 = 0; _i3 < incompleteChildren.length; ++_i3) { + incompleteChildren[_i3].progressChunk = eachChunk; + } + + this.resources[name].progressChunk = eachChunk; + } // add the resource to the queue + + + this._queue.push(this.resources[name]); + + return this; + } + /* eslint-enable require-jsdoc,valid-jsdoc */ + + /** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.pre = function pre(fn) { + this._beforeMiddleware.push(fn); + + return this; + } + /** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.use = function use(fn) { + this._afterMiddleware.push(fn); + + return this; + } + /** + * Resets the queue of the loader to prepare for a new load. + * + * @return {this} Returns itself. + */ + ; + + _proto.reset = function reset() { + this.progress = 0; + this.loading = false; + + this._queue.kill(); + + this._queue.pause(); // abort all resource loads + + + for (var k in this.resources) { + var res = this.resources[k]; + + if (res._onLoadBinding) { + res._onLoadBinding.detach(); + } + + if (res.isLoading) { + res.abort(); + } + } + + this.resources = {}; + return this; + } + /** + * Starts loading the queued resources. + * + * @param {function} [cb] - Optional callback that will be bound to the `complete` event. + * @return {this} Returns itself. + */ + ; + + _proto.load = function load(cb) { + // register complete callback if they pass one + if (typeof cb === 'function') { + this.onComplete.once(cb); + } // if the queue has already started we are done here + + + if (this.loading) { + return this; + } + + if (this._queue.idle()) { + this._onStart(); + + this._onComplete(); + } else { + // distribute progress chunks + var numTasks = this._queue._tasks.length; + var chunk = MAX_PROGRESS / numTasks; + + for (var i = 0; i < this._queue._tasks.length; ++i) { + this._queue._tasks[i].data.progressChunk = chunk; + } // notify we are starting + + + this._onStart(); // start loading + + + this._queue.resume(); + } + + return this; + } + /** + * The number of resources to load concurrently. + * + * @member {number} + * @default 10 + */ + ; + + /** + * Prepares a url for usage based on the configuration of this object + * + * @private + * @param {string} url - The url to prepare. + * @return {string} The prepared url. + */ + _proto._prepareUrl = function _prepareUrl(url) { + var parsedUrl = parseUri(url, { + strictMode: true + }); + var result; // absolute url, just use it as is. + + if (parsedUrl.protocol || !parsedUrl.path || url.indexOf('//') === 0) { + result = url; + } // if baseUrl doesn't end in slash and url doesn't start with slash, then add a slash inbetween + else if (this.baseUrl.length && this.baseUrl.lastIndexOf('/') !== this.baseUrl.length - 1 && url.charAt(0) !== '/') { + result = this.baseUrl + "/" + url; + } else { + result = this.baseUrl + url; + } // if we need to add a default querystring, there is a bit more work + + + if (this.defaultQueryString) { + var hash = rgxExtractUrlHash.exec(result)[0]; + result = result.substr(0, result.length - hash.length); + + if (result.indexOf('?') !== -1) { + result += "&" + this.defaultQueryString; + } else { + result += "?" + this.defaultQueryString; + } + + result += hash; + } + + return result; + } + /** + * Loads a single resource. + * + * @private + * @param {Resource} resource - The resource to load. + * @param {function} dequeue - The function to call when we need to dequeue this item. + */ + ; + + _proto._loadResource = function _loadResource(resource, dequeue) { + var _this2 = this; + + resource._dequeue = dequeue; // run before middleware + + eachSeries(this._beforeMiddleware, function (fn, next) { + fn.call(_this2, resource, function () { + // if the before middleware marks the resource as complete, + // break and don't process any more before middleware + next(resource.isComplete ? {} : null); + }); + }, function () { + if (resource.isComplete) { + _this2._onLoad(resource); + } else { + resource._onLoadBinding = resource.onComplete.once(_this2._onLoad, _this2); + resource.load(); + } + }, true); + } + /** + * Called once loading has started. + * + * @private + */ + ; + + _proto._onStart = function _onStart() { + this.progress = 0; + this.loading = true; + this.onStart.dispatch(this); + } + /** + * Called once each resource has loaded. + * + * @private + */ + ; + + _proto._onComplete = function _onComplete() { + this.progress = MAX_PROGRESS; + this.loading = false; + this.onComplete.dispatch(this, this.resources); + } + /** + * Called each time a resources is loaded. + * + * @private + * @param {Resource} resource - The resource that was loaded + */ + ; + + _proto._onLoad = function _onLoad(resource) { + var _this3 = this; + + resource._onLoadBinding = null; // remove this resource from the async queue, and add it to our list of resources that are being parsed + + this._resourcesParsing.push(resource); + + resource._dequeue(); // run all the after middleware for this resource + + + eachSeries(this._afterMiddleware, function (fn, next) { + fn.call(_this3, resource, next); + }, function () { + resource.onAfterMiddleware.dispatch(resource); + _this3.progress = Math.min(MAX_PROGRESS, _this3.progress + resource.progressChunk); + + _this3.onProgress.dispatch(_this3, resource); + + if (resource.error) { + _this3.onError.dispatch(resource.error, _this3, resource); + } else { + _this3.onLoad.dispatch(_this3, resource); + } + + _this3._resourcesParsing.splice(_this3._resourcesParsing.indexOf(resource), 1); // do completion check + + + if (_this3._queue.idle() && _this3._resourcesParsing.length === 0) { + _this3._onComplete(); + } + }, true); + }; + + _createClass(Loader, [{ + key: "concurrency", + get: function get() { + return this._queue.concurrency; + } // eslint-disable-next-line require-jsdoc + , + set: function set(concurrency) { + this._queue.concurrency = concurrency; + } + }]); + + return Loader; +}(); +/** + * A default array of middleware to run before loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + + +Loader._defaultBeforeMiddleware = []; +/** + * A default array of middleware to run after loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + +Loader._defaultAfterMiddleware = []; +/** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + +Loader.pre = function LoaderPreStatic(fn) { + Loader._defaultBeforeMiddleware.push(fn); + + return Loader; +}; +/** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + + +Loader.use = function LoaderUseStatic(fn) { + Loader._defaultAfterMiddleware.push(fn); + + return Loader; +}; + +/*! + * @pixi/loaders - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/loaders is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Loader plugin for handling Texture resources. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var TextureLoader = function TextureLoader () {}; + +TextureLoader.use = function use (resource, next) +{ + // create a new texture if the data is an Image object + if (resource.data && resource.type === Resource$1.TYPE.IMAGE) + { + resource.texture = Texture.fromLoader( + resource.data, + resource.url, + resource.name + ); + } + next(); +}; + +/** + * The new loader, extends Resource Loader by Chad Engler: https://github.com/englercj/resource-loader + * + * ```js + * const loader = PIXI.Loader.shared; // PixiJS exposes a premade instance for you to use. + * //or + * const loader = new PIXI.Loader(); // you can also create your own if you want + * + * const sprites = {}; + * + * // Chainable `add` to enqueue a resource + * loader.add('bunny', 'data/bunny.png') + * .add('spaceship', 'assets/spritesheet.json'); + * loader.add('scoreFont', 'assets/score.fnt'); + * + * // Chainable `pre` to add a middleware that runs for each resource, *before* loading that resource. + * // This is useful to implement custom caching modules (using filesystem, indexeddb, memory, etc). + * loader.pre(cachingMiddleware); + * + * // Chainable `use` to add a middleware that runs for each resource, *after* loading that resource. + * // This is useful to implement custom parsing modules (like spritesheet parsers, spine parser, etc). + * loader.use(parsingMiddleware); + * + * // The `load` method loads the queue of resources, and calls the passed in callback called once all + * // resources have loaded. + * loader.load((loader, resources) => { + * // resources is an object where the key is the name of the resource loaded and the value is the resource object. + * // They have a couple default properties: + * // - `url`: The URL that the resource was loaded from + * // - `error`: The error that happened when trying to load (if any) + * // - `data`: The raw data that was loaded + * // also may contain other properties based on the middleware that runs. + * sprites.bunny = new PIXI.TilingSprite(resources.bunny.texture); + * sprites.spaceship = new PIXI.TilingSprite(resources.spaceship.texture); + * sprites.scoreFont = new PIXI.TilingSprite(resources.scoreFont.texture); + * }); + * + * // throughout the process multiple signals can be dispatched. + * loader.onProgress.add(() => {}); // called once per loaded/errored file + * loader.onError.add(() => {}); // called once per errored file + * loader.onLoad.add(() => {}); // called once per loaded file + * loader.onComplete.add(() => {}); // called once when the queued resources all load. + * ``` + * + * @see https://github.com/englercj/resource-loader + * + * @class Loader + * @memberof PIXI + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ +var Loader$1 = /*@__PURE__*/(function (ResourceLoader) { + function Loader(baseUrl, concurrency) + { + var this$1 = this; + + ResourceLoader.call(this, baseUrl, concurrency); + eventemitter3.call(this); + + for (var i = 0; i < Loader._plugins.length; ++i) + { + var plugin = Loader._plugins[i]; + var pre = plugin.pre; + var use = plugin.use; + + if (pre) + { + this.pre(pre); + } + + if (use) + { + this.use(use); + } + } + + // Compat layer, translate the new v2 signals into old v1 events. + this.onStart.add(function (l) { return this$1.emit('start', l); }); + this.onProgress.add(function (l, r) { return this$1.emit('progress', l, r); }); + this.onError.add(function (e, l, r) { return this$1.emit('error', e, l, r); }); + this.onLoad.add(function (l, r) { return this$1.emit('load', l, r); }); + this.onComplete.add(function (l, r) { return this$1.emit('complete', l, r); }); + + /** + * If this loader cannot be destroyed. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + } + + if ( ResourceLoader ) Loader.__proto__ = ResourceLoader; + Loader.prototype = Object.create( ResourceLoader && ResourceLoader.prototype ); + Loader.prototype.constructor = Loader; + + var staticAccessors = { shared: { configurable: true } }; + + /** + * Destroy the loader, removes references. + * @private + */ + Loader.prototype.destroy = function destroy () + { + if (!this._protected) + { + this.removeAllListeners(); + this.reset(); + } + }; + + /** + * A premade instance of the loader that can be used to load resources. + * @name shared + * @type {PIXI.Loader} + * @static + * @memberof PIXI.Loader + */ + staticAccessors.shared.get = function () + { + var shared = Loader._shared; + + if (!shared) + { + shared = new Loader(); + shared._protected = true; + Loader._shared = shared; + } + + return shared; + }; + + Object.defineProperties( Loader, staticAccessors ); + + return Loader; +}(Loader)); + +// Copy EE3 prototype (mixin) +Object.assign(Loader$1.prototype, eventemitter3.prototype); + +/** + * Collection of all installed `use` middleware for Loader. + * + * @static + * @member {Array} _plugins + * @memberof PIXI.Loader + * @private + */ +Loader$1._plugins = []; + +/** + * Adds a Loader plugin for the global shared loader and all + * new Loader instances created. + * + * @static + * @method registerPlugin + * @memberof PIXI.Loader + * @param {PIXI.ILoaderPlugin} plugin - The plugin to add + * @return {PIXI.Loader} Reference to PIXI.Loader for chaining + */ +Loader$1.registerPlugin = function registerPlugin(plugin) +{ + Loader$1._plugins.push(plugin); + + if (plugin.add) + { + plugin.add(); + } + + return Loader$1; +}; + +// parse any blob into more usable objects (e.g. Image) +Loader$1.registerPlugin({ use: index.parsing }); + +// parse any Image objects into textures +Loader$1.registerPlugin(TextureLoader); + +/** + * Plugin to be installed for handling specific Loader resources. + * + * @memberof PIXI + * @typedef ILoaderPlugin + * @property {function} [add] - Function to call immediate after registering plugin. + * @property {PIXI.Loader.loaderMiddleware} [pre] - Middleware function to run before load, the + * arguments for this are `(resource, next)` + * @property {PIXI.Loader.loaderMiddleware} [use] - Middleware function to run after load, the + * arguments for this are `(resource, next)` + */ + +/** + * @memberof PIXI.Loader + * @callback loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onStart + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onProgress + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onError + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onLoad + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onComplete + */ + +/** + * Application plugin for supporting loader option. Installing the LoaderPlugin + * is not necessary if using **pixi.js** or **pixi.js-legacy**. + * @example + * import {AppLoaderPlugin} from '@pixi/loaders'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(AppLoaderPlugin); + * @class + * @memberof PIXI + */ +var AppLoaderPlugin = function AppLoaderPlugin () {}; + +AppLoaderPlugin.init = function init (options) +{ + options = Object.assign({ + sharedLoader: false, + }, options); + + /** + * Loader instance to help with asset loading. + * @name PIXI.Application#loader + * @type {PIXI.Loader} + * @readonly + */ + this.loader = options.sharedLoader ? Loader$1.shared : new Loader$1(); +}; + +/** + * Called when application destroyed + * @private + */ +AppLoaderPlugin.destroy = function destroy () +{ + if (this.loader) + { + this.loader.destroy(); + this.loader = null; + } +}; + +/** + * Reference to **{@link https://github.com/englercj/resource-loader + * resource-loader}**'s Resource class. + * @see http://englercj.github.io/resource-loader/Resource.html + * @class LoaderResource + * @memberof PIXI + */ +var LoaderResource = Resource$1; + +/*! + * @pixi/particles - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/particles is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that + * they now share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleBuffer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleBuffer.java + */ + +/** + * The particle buffer manages the static and dynamic buffers for a particle container. + * + * @class + * @private + * @memberof PIXI + */ +var ParticleBuffer = function ParticleBuffer(properties, dynamicPropertyFlags, size) +{ + this.geometry = new Geometry(); + + this.indexBuffer = null; + + /** + * The number of particles the buffer can hold + * + * @private + * @member {number} + */ + this.size = size; + + /** + * A list of the properties that are dynamic. + * + * @private + * @member {object[]} + */ + this.dynamicProperties = []; + + /** + * A list of the properties that are static. + * + * @private + * @member {object[]} + */ + this.staticProperties = []; + + for (var i = 0; i < properties.length; ++i) + { + var property = properties[i]; + + // Make copy of properties object so that when we edit the offset it doesn't + // change all other instances of the object literal + property = { + attributeName: property.attributeName, + size: property.size, + uploadFunction: property.uploadFunction, + type: property.type || TYPES.FLOAT, + offset: property.offset, + }; + + if (dynamicPropertyFlags[i]) + { + this.dynamicProperties.push(property); + } + else + { + this.staticProperties.push(property); + } + } + + this.staticStride = 0; + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + + this.dynamicStride = 0; + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this._updateID = 0; + + this.initBuffers(); +}; + +/** + * Sets up the renderer context and necessary buffers. + * + * @private + */ +ParticleBuffer.prototype.initBuffers = function initBuffers () +{ + var geometry = this.geometry; + + var dynamicOffset = 0; + + /** + * Holds the indices of the geometry (quads) to draw + * + * @member {Uint16Array} + * @private + */ + this.indexBuffer = new Buffer$1(createIndicesForQuads(this.size), true, true); + geometry.addIndex(this.indexBuffer); + + this.dynamicStride = 0; + + for (var i = 0; i < this.dynamicProperties.length; ++i) + { + var property = this.dynamicProperties[i]; + + property.offset = dynamicOffset; + dynamicOffset += property.size; + this.dynamicStride += property.size; + } + + var dynBuffer = new ArrayBuffer(this.size * this.dynamicStride * 4 * 4); + + this.dynamicData = new Float32Array(dynBuffer); + this.dynamicDataUint32 = new Uint32Array(dynBuffer); + this.dynamicBuffer = new Buffer$1(this.dynamicData, false, false); + + // static // + var staticOffset = 0; + + this.staticStride = 0; + + for (var i$1 = 0; i$1 < this.staticProperties.length; ++i$1) + { + var property$1 = this.staticProperties[i$1]; + + property$1.offset = staticOffset; + staticOffset += property$1.size; + this.staticStride += property$1.size; + } + + var statBuffer = new ArrayBuffer(this.size * this.staticStride * 4 * 4); + + this.staticData = new Float32Array(statBuffer); + this.staticDataUint32 = new Uint32Array(statBuffer); + this.staticBuffer = new Buffer$1(this.staticData, true, false); + + for (var i$2 = 0; i$2 < this.dynamicProperties.length; ++i$2) + { + var property$2 = this.dynamicProperties[i$2]; + + geometry.addAttribute( + property$2.attributeName, + this.dynamicBuffer, + 0, + property$2.type === TYPES.UNSIGNED_BYTE, + property$2.type, + this.dynamicStride * 4, + property$2.offset * 4 + ); + } + + for (var i$3 = 0; i$3 < this.staticProperties.length; ++i$3) + { + var property$3 = this.staticProperties[i$3]; + + geometry.addAttribute( + property$3.attributeName, + this.staticBuffer, + 0, + property$3.type === TYPES.UNSIGNED_BYTE, + property$3.type, + this.staticStride * 4, + property$3.offset * 4 + ); + } +}; + +/** + * Uploads the dynamic properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadDynamic = function uploadDynamic (children, startIndex, amount) +{ + for (var i = 0; i < this.dynamicProperties.length; i++) + { + var property = this.dynamicProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.dynamicDataUint32 : this.dynamicData, + this.dynamicStride, property.offset); + } + + this.dynamicBuffer._updateID++; +}; + +/** + * Uploads the static properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadStatic = function uploadStatic (children, startIndex, amount) +{ + for (var i = 0; i < this.staticProperties.length; i++) + { + var property = this.staticProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.staticDataUint32 : this.staticData, + this.staticStride, property.offset); + } + + this.staticBuffer._updateID++; +}; + +/** + * Destroys the ParticleBuffer. + * + * @private + */ +ParticleBuffer.prototype.destroy = function destroy () +{ + this.indexBuffer = null; + + this.dynamicProperties = null; + // this.dynamicBuffer.destroy(); + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this.staticProperties = null; + // this.staticBuffer.destroy(); + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + // all buffers are destroyed inside geometry + this.geometry.destroy(); +}; + +var vertex$1 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\n\nattribute vec2 aPositionCoord;\nattribute float aRotation;\n\nuniform mat3 translationMatrix;\nuniform vec4 uColor;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nvoid main(void){\n float x = (aVertexPosition.x) * cos(aRotation) - (aVertexPosition.y) * sin(aRotation);\n float y = (aVertexPosition.x) * sin(aRotation) + (aVertexPosition.y) * cos(aRotation);\n\n vec2 v = vec2(x, y);\n v = v + aPositionCoord;\n\n gl_Position = vec4((translationMatrix * vec3(v, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vColor = aColor * uColor;\n}\n"; + +var fragment$1 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n vec4 color = texture2D(uSampler, vTextureCoord) * vColor;\n gl_FragColor = color;\n}"; + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that they now + * share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleRenderer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleRenderer.java + */ + +/** + * Renderer for Particles that is designer for speed over feature set. + * + * @class + * @memberof PIXI + */ +var ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function ParticleRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + // 65535 is max vertex index in the index buffer (see ParticleRenderer) + // so max number of particles is 65536 / 4 = 16384 + // and max number of element in the index buffer is 16384 * 6 = 98304 + // Creating a full index buffer, overhead is 98304 * 2 = 196Ko + // let numIndices = 98304; + + /** + * The default shader that is used if a sprite doesn't have a more specific one. + * + * @member {PIXI.Shader} + */ + this.shader = null; + + this.properties = null; + + this.tempMatrix = new Matrix(); + + this.properties = [ + // verticesData + { + attributeName: 'aVertexPosition', + size: 2, + uploadFunction: this.uploadVertices, + offset: 0, + }, + // positionData + { + attributeName: 'aPositionCoord', + size: 2, + uploadFunction: this.uploadPosition, + offset: 0, + }, + // rotationData + { + attributeName: 'aRotation', + size: 1, + uploadFunction: this.uploadRotation, + offset: 0, + }, + // uvsData + { + attributeName: 'aTextureCoord', + size: 2, + uploadFunction: this.uploadUvs, + offset: 0, + }, + // tintData + { + attributeName: 'aColor', + size: 1, + type: TYPES.UNSIGNED_BYTE, + uploadFunction: this.uploadTint, + offset: 0, + } ]; + + this.shader = Shader.from(vertex$1, fragment$1, {}); + } + + if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer; + ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + ParticleRenderer.prototype.constructor = ParticleRenderer; + + /** + * Renders the particle container object. + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + */ + ParticleRenderer.prototype.render = function render (container) + { + var children = container.children; + var maxSize = container._maxSize; + var batchSize = container._batchSize; + var renderer = this.renderer; + var totalChildren = children.length; + + if (totalChildren === 0) + { + return; + } + else if (totalChildren > maxSize && !container.autoResize) + { + totalChildren = maxSize; + } + + var buffers = container._buffers; + + if (!buffers) + { + buffers = container._buffers = this.generateBuffers(container); + } + + var baseTexture = children[0]._texture.baseTexture; + + // if the uvs have not updated then no point rendering just yet! + this.renderer.state.setBlendMode(correctBlendMode(container.blendMode, baseTexture.premultiplyAlpha)); + + var gl = renderer.gl; + + var m = container.worldTransform.copyTo(this.tempMatrix); + + m.prepend(renderer.globalUniforms.uniforms.projectionMatrix); + + this.shader.uniforms.translationMatrix = m.toArray(true); + + this.shader.uniforms.uColor = premultiplyRgba(container.tintRgb, + container.worldAlpha, this.shader.uniforms.uColor, baseTexture.premultiplyAlpha); + + this.shader.uniforms.uSampler = baseTexture; + + this.renderer.shader.bind(this.shader); + + var updateStatic = false; + + // now lets upload and render the buffers.. + for (var i = 0, j = 0; i < totalChildren; i += batchSize, j += 1) + { + var amount = (totalChildren - i); + + if (amount > batchSize) + { + amount = batchSize; + } + + if (j >= buffers.length) + { + buffers.push(this._generateOneMoreBuffer(container)); + } + + var buffer = buffers[j]; + + // we always upload the dynamic + buffer.uploadDynamic(children, i, amount); + + var bid = container._bufferUpdateIDs[j] || 0; + + updateStatic = updateStatic || (buffer._updateID < bid); + // we only upload the static content when we have to! + if (updateStatic) + { + buffer._updateID = container._updateID; + buffer.uploadStatic(children, i, amount); + } + + // bind the buffer + renderer.geometry.bind(buffer.geometry); + gl.drawElements(gl.TRIANGLES, amount * 6, gl.UNSIGNED_SHORT, 0); + } + }; + + /** + * Creates one particle buffer for each child in the container we want to render and updates internal properties + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer[]} The buffers + * @private + */ + ParticleRenderer.prototype.generateBuffers = function generateBuffers (container) + { + var buffers = []; + var size = container._maxSize; + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + for (var i = 0; i < size; i += batchSize) + { + buffers.push(new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize)); + } + + return buffers; + }; + + /** + * Creates one more particle buffer, because container has autoResize feature + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer} generated buffer + * @private + */ + ParticleRenderer.prototype._generateOneMoreBuffer = function _generateOneMoreBuffer (container) + { + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + return new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize); + }; + + /** + * Uploads the vertices. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their vertices uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadVertices = function uploadVertices (children, startIndex, amount, array, stride, offset) + { + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var texture = sprite._texture; + var sx = sprite.scale.x; + var sy = sprite.scale.y; + var trim = texture.trim; + var orig = texture.orig; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the + // extra space before transforming the sprite coords.. + w1 = trim.x - (sprite.anchor.x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (sprite.anchor.y * orig.height); + h0 = h1 + trim.height; + } + else + { + w0 = (orig.width) * (1 - sprite.anchor.x); + w1 = (orig.width) * -sprite.anchor.x; + + h0 = orig.height * (1 - sprite.anchor.y); + h1 = orig.height * -sprite.anchor.y; + } + + array[offset] = w1 * sx; + array[offset + 1] = h1 * sy; + + array[offset + stride] = w0 * sx; + array[offset + stride + 1] = h1 * sy; + + array[offset + (stride * 2)] = w0 * sx; + array[offset + (stride * 2) + 1] = h0 * sy; + + array[offset + (stride * 3)] = w1 * sx; + array[offset + (stride * 3) + 1] = h0 * sy; + + offset += stride * 4; + } + }; + + /** + * Uploads the position. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their positions uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadPosition = function uploadPosition (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spritePosition = children[startIndex + i].position; + + array[offset] = spritePosition.x; + array[offset + 1] = spritePosition.y; + + array[offset + stride] = spritePosition.x; + array[offset + stride + 1] = spritePosition.y; + + array[offset + (stride * 2)] = spritePosition.x; + array[offset + (stride * 2) + 1] = spritePosition.y; + + array[offset + (stride * 3)] = spritePosition.x; + array[offset + (stride * 3) + 1] = spritePosition.y; + + offset += stride * 4; + } + }; + + /** + * Uploads the rotiation. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadRotation = function uploadRotation (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spriteRotation = children[startIndex + i].rotation; + + array[offset] = spriteRotation; + array[offset + stride] = spriteRotation; + array[offset + (stride * 2)] = spriteRotation; + array[offset + (stride * 3)] = spriteRotation; + + offset += stride * 4; + } + }; + + /** + * Uploads the Uvs + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadUvs = function uploadUvs (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var textureUvs = children[startIndex + i]._texture._uvs; + + if (textureUvs) + { + array[offset] = textureUvs.x0; + array[offset + 1] = textureUvs.y0; + + array[offset + stride] = textureUvs.x1; + array[offset + stride + 1] = textureUvs.y1; + + array[offset + (stride * 2)] = textureUvs.x2; + array[offset + (stride * 2) + 1] = textureUvs.y2; + + array[offset + (stride * 3)] = textureUvs.x3; + array[offset + (stride * 3) + 1] = textureUvs.y3; + + offset += stride * 4; + } + else + { + // TODO you know this can be easier! + array[offset] = 0; + array[offset + 1] = 0; + + array[offset + stride] = 0; + array[offset + stride + 1] = 0; + + array[offset + (stride * 2)] = 0; + array[offset + (stride * 2) + 1] = 0; + + array[offset + (stride * 3)] = 0; + array[offset + (stride * 3) + 1] = 0; + + offset += stride * 4; + } + } + }; + + /** + * Uploads the tint. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadTint = function uploadTint (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var premultiplied = sprite._texture.baseTexture.premultiplyAlpha; + var alpha = sprite.alpha; + // we dont call extra function if alpha is 1.0, that's faster + var argb = alpha < 1.0 && premultiplied ? premultiplyTint(sprite._tintRGB, alpha) + : sprite._tintRGB + (alpha * 255 << 24); + + array[offset] = argb; + array[offset + stride] = argb; + array[offset + (stride * 2)] = argb; + array[offset + (stride * 3)] = argb; + + offset += stride * 4; + } + }; + + /** + * Destroys the ParticleRenderer. + */ + ParticleRenderer.prototype.destroy = function destroy () + { + ObjectRenderer.prototype.destroy.call(this); + + if (this.shader) + { + this.shader.destroy(); + this.shader = null; + } + + this.tempMatrix = null; + }; + + return ParticleRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/spritesheet - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/spritesheet is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Utility class for maintaining reference to a collection + * of Textures on a single Spritesheet. + * + * To access a sprite sheet from your code pass its JSON data file to Pixi's loader: + * + * ```js + * PIXI.Loader.shared.add("images/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["images/spritesheet.json"].spritesheet; + * ... + * } + * ``` + * With the `sheet.textures` you can create Sprite objects,`sheet.animations` can be used to create an AnimatedSprite. + * + * Sprite sheets can be packed using tools like {@link https://codeandweb.com/texturepacker|TexturePacker}, + * {@link https://renderhjs.net/shoebox/|Shoebox} or {@link https://github.com/krzysztof-o/spritesheet.js|Spritesheet.js}. + * Default anchor points (see {@link PIXI.Texture#defaultAnchor}) and grouping of animation sprites are currently only + * supported by TexturePacker. + * + * @class + * @memberof PIXI + */ +var Spritesheet = function Spritesheet(baseTexture, data, resolutionFilename) +{ + if ( resolutionFilename === void 0 ) resolutionFilename = null; + + /** + * Reference to ths source texture + * @type {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * A map containing all textures of the sprite sheet. + * Can be used to create a {@link PIXI.Sprite|Sprite}: + * ```js + * new PIXI.Sprite(sheet.textures["image.png"]); + * ``` + * @member {Object} + */ + this.textures = {}; + + /** + * A map containing the textures for each animation. + * Can be used to create an {@link PIXI.AnimatedSprite|AnimatedSprite}: + * ```js + * new PIXI.AnimatedSprite(sheet.animations["anim_name"]) + * ``` + * @member {Object} + */ + this.animations = {}; + + /** + * Reference to the original JSON data. + * @type {Object} + */ + this.data = data; + + /** + * The resolution of the spritesheet. + * @type {number} + */ + this.resolution = this._updateResolution( + resolutionFilename + || (this.baseTexture.resource ? this.baseTexture.resource.url : null) + ); + + /** + * Map of spritesheet frames. + * @type {Object} + * @private + */ + this._frames = this.data.frames; + + /** + * Collection of frame names. + * @type {string[]} + * @private + */ + this._frameKeys = Object.keys(this._frames); + + /** + * Current batch index being processed. + * @type {number} + * @private + */ + this._batchIndex = 0; + + /** + * Callback when parse is completed. + * @type {Function} + * @private + */ + this._callback = null; +}; + +var staticAccessors$4 = { BATCH_SIZE: { configurable: true } }; + +/** + * Generate the resolution from the filename or fallback + * to the meta.scale field of the JSON data. + * + * @private + * @param {string} resolutionFilename - The filename to use for resolving + * the default resolution. + * @return {number} Resolution to use for spritesheet. + */ +staticAccessors$4.BATCH_SIZE.get = function () +{ + return 1000; +}; + +Spritesheet.prototype._updateResolution = function _updateResolution (resolutionFilename) +{ + var scale = this.data.meta.scale; + + // Use a defaultValue of `null` to check if a url-based resolution is set + var resolution = getResolutionOfUrl(resolutionFilename, null); + + // No resolution found via URL + if (resolution === null) + { + // Use the scale value or default to 1 + resolution = scale !== undefined ? parseFloat(scale) : 1; + } + + // For non-1 resolutions, update baseTexture + if (resolution !== 1) + { + this.baseTexture.setResolution(resolution); + } + + return resolution; +}; + +/** + * Parser spritesheet from loaded data. This is done asynchronously + * to prevent creating too many Texture within a single process. + * + * @param {Function} callback - Callback when complete returns + * a map of the Textures for this spritesheet. + */ +Spritesheet.prototype.parse = function parse (callback) +{ + this._batchIndex = 0; + this._callback = callback; + + if (this._frameKeys.length <= Spritesheet.BATCH_SIZE) + { + this._processFrames(0); + this._processAnimations(); + this._parseComplete(); + } + else + { + this._nextBatch(); + } +}; + +/** + * Process a batch of frames + * + * @private + * @param {number} initialFrameIndex - The index of frame to start. + */ +Spritesheet.prototype._processFrames = function _processFrames (initialFrameIndex) +{ + var frameIndex = initialFrameIndex; + var maxFrames = Spritesheet.BATCH_SIZE; + + while (frameIndex - initialFrameIndex < maxFrames && frameIndex < this._frameKeys.length) + { + var i = this._frameKeys[frameIndex]; + var data = this._frames[i]; + var rect = data.frame; + + if (rect) + { + var frame = null; + var trim = null; + var sourceSize = data.trimmed !== false && data.sourceSize + ? data.sourceSize : data.frame; + + var orig = new Rectangle( + 0, + 0, + Math.floor(sourceSize.w) / this.resolution, + Math.floor(sourceSize.h) / this.resolution + ); + + if (data.rotated) + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.h) / this.resolution, + Math.floor(rect.w) / this.resolution + ); + } + else + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + // Check to see if the sprite is trimmed + if (data.trimmed !== false && data.spriteSourceSize) + { + trim = new Rectangle( + Math.floor(data.spriteSourceSize.x) / this.resolution, + Math.floor(data.spriteSourceSize.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + this.textures[i] = new Texture( + this.baseTexture, + frame, + orig, + trim, + data.rotated ? 2 : 0, + data.anchor + ); + + // lets also add the frame to pixi's global cache for 'from' and 'fromLoader' functions + Texture.addToCache(this.textures[i], i); + } + + frameIndex++; + } +}; + +/** + * Parse animations config + * + * @private + */ +Spritesheet.prototype._processAnimations = function _processAnimations () +{ + var animations = this.data.animations || {}; + + for (var animName in animations) + { + this.animations[animName] = []; + for (var i = 0; i < animations[animName].length; i++) + { + var frameName = animations[animName][i]; + + this.animations[animName].push(this.textures[frameName]); + } + } +}; + +/** + * The parse has completed. + * + * @private + */ +Spritesheet.prototype._parseComplete = function _parseComplete () +{ + var callback = this._callback; + + this._callback = null; + this._batchIndex = 0; + callback.call(this, this.textures); +}; + +/** + * Begin the next batch of textures. + * + * @private + */ +Spritesheet.prototype._nextBatch = function _nextBatch () +{ + var this$1 = this; + + this._processFrames(this._batchIndex * Spritesheet.BATCH_SIZE); + this._batchIndex++; + setTimeout(function () { + if (this$1._batchIndex * Spritesheet.BATCH_SIZE < this$1._frameKeys.length) + { + this$1._nextBatch(); + } + else + { + this$1._processAnimations(); + this$1._parseComplete(); + } + }, 0); +}; + +/** + * Destroy Spritesheet and don't use after this. + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ +Spritesheet.prototype.destroy = function destroy (destroyBase) +{ + if ( destroyBase === void 0 ) destroyBase = false; + + for (var i in this.textures) + { + this.textures[i].destroy(); + } + this._frames = null; + this._frameKeys = null; + this.data = null; + this.textures = null; + if (destroyBase) + { + this.baseTexture.destroy(); + } + this.baseTexture = null; +}; + +Object.defineProperties( Spritesheet, staticAccessors$4 ); + +/** + * {@link PIXI.Loader Loader} middleware for loading texture atlases that have been created with + * TexturePacker or similar JSON-based spritesheet. + * + * This middleware automatically generates Texture resources. + * + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var SpritesheetLoader = function SpritesheetLoader () {}; + +SpritesheetLoader.use = function use (resource, next) +{ + var imageResourceName = (resource.name) + "_image"; + + // skip if no data, its not json, it isn't spritesheet data, or the image resource already exists + if (!resource.data + || resource.type !== LoaderResource.TYPE.JSON + || !resource.data.frames + || this.resources[imageResourceName] + ) + { + next(); + + return; + } + + var loadOptions = { + crossOrigin: resource.crossOrigin, + metadata: resource.metadata.imageMetadata, + parentResource: resource, + }; + + var resourcePath = SpritesheetLoader.getResourcePath(resource, this.baseUrl); + + // load the image for this sheet + this.add(imageResourceName, resourcePath, loadOptions, function onImageLoad(res) + { + if (res.error) + { + next(res.error); + + return; + } + + var spritesheet = new Spritesheet( + res.texture.baseTexture, + resource.data, + resource.url + ); + + spritesheet.parse(function () { + resource.spritesheet = spritesheet; + resource.textures = spritesheet.textures; + next(); + }); + }); +}; + +/** + * Get the spritesheets root path + * @param {PIXI.LoaderResource} resource - Resource to check path + * @param {string} baseUrl - Base root url + */ +SpritesheetLoader.getResourcePath = function getResourcePath (resource, baseUrl) +{ + // Prepend url path unless the resource image is a data url + if (resource.isDataUrl) + { + return resource.data.meta.image; + } + + return url.resolve(resource.url.replace(baseUrl, ''), resource.data.meta.image); +}; + +/*! + * @pixi/sprite-tiling - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite-tiling is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$1 = new Point(); + +var vertex$2 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform mat3 uTransform;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = (uTransform * vec3(aTextureCoord, 1.0)).xy;\n}\n"; + +var fragment$2 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\nuniform mat3 uMapCoord;\nuniform vec4 uClampFrame;\nuniform vec2 uClampOffset;\n\nvoid main(void)\n{\n vec2 coord = mod(vTextureCoord - uClampOffset, vec2(1.0, 1.0)) + uClampOffset;\n coord = (uMapCoord * vec3(coord, 1.0)).xy;\n coord = clamp(coord, uClampFrame.xy, uClampFrame.zw);\n\n vec4 sample = texture2D(uSampler, coord);\n gl_FragColor = sample * uColor;\n}\n"; + +var fragmentSimple = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\n\nvoid main(void)\n{\n vec4 sample = texture2D(uSampler, vTextureCoord);\n gl_FragColor = sample * uColor;\n}\n"; + +var tempMat$1 = new Matrix(); + +/** + * WebGL renderer plugin for tiling sprites + * + * @class + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function TilingSpriteRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + var uniforms = { globals: this.renderer.globalUniforms }; + + this.shader = Shader.from(vertex$2, fragment$2, uniforms); + + this.simpleShader = Shader.from(vertex$2, fragmentSimple, uniforms); + + this.quad = new QuadUv(); + } + + if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer; + TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer; + + /** + * + * @param {PIXI.TilingSprite} ts tilingSprite to be rendered + */ + TilingSpriteRenderer.prototype.render = function render (ts) + { + var renderer = this.renderer; + var quad = this.quad; + + var vertices = quad.vertices; + + vertices[0] = vertices[6] = (ts._width) * -ts.anchor.x; + vertices[1] = vertices[3] = ts._height * -ts.anchor.y; + + vertices[2] = vertices[4] = (ts._width) * (1.0 - ts.anchor.x); + vertices[5] = vertices[7] = ts._height * (1.0 - ts.anchor.y); + + if (ts.uvRespectAnchor) + { + vertices = quad.uvs; + + vertices[0] = vertices[6] = -ts.anchor.x; + vertices[1] = vertices[3] = -ts.anchor.y; + + vertices[2] = vertices[4] = 1.0 - ts.anchor.x; + vertices[5] = vertices[7] = 1.0 - ts.anchor.y; + } + + quad.invalidate(); + + var tex = ts._texture; + var baseTex = tex.baseTexture; + var lt = ts.tileTransform.localTransform; + var uv = ts.uvMatrix; + var isSimple = baseTex.isPowerOfTwo + && tex.frame.width === baseTex.width && tex.frame.height === baseTex.height; + + // auto, force repeat wrapMode for big tiling textures + if (isSimple) + { + if (!baseTex._glTextures[renderer.CONTEXT_UID]) + { + if (baseTex.wrapMode === WRAP_MODES.CLAMP) + { + baseTex.wrapMode = WRAP_MODES.REPEAT; + } + } + else + { + isSimple = baseTex.wrapMode !== WRAP_MODES.CLAMP; + } + } + + var shader = isSimple ? this.simpleShader : this.shader; + + var w = tex.width; + var h = tex.height; + var W = ts._width; + var H = ts._height; + + tempMat$1.set(lt.a * w / W, + lt.b * w / H, + lt.c * h / W, + lt.d * h / H, + lt.tx / W, + lt.ty / H); + + // that part is the same as above: + // tempMat.identity(); + // tempMat.scale(tex.width, tex.height); + // tempMat.prepend(lt); + // tempMat.scale(1.0 / ts._width, 1.0 / ts._height); + + tempMat$1.invert(); + if (isSimple) + { + tempMat$1.prepend(uv.mapCoord); + } + else + { + shader.uniforms.uMapCoord = uv.mapCoord.toArray(true); + shader.uniforms.uClampFrame = uv.uClampFrame; + shader.uniforms.uClampOffset = uv.uClampOffset; + } + + shader.uniforms.uTransform = tempMat$1.toArray(true); + shader.uniforms.uColor = premultiplyTintToRgba(ts.tint, ts.worldAlpha, + shader.uniforms.uColor, baseTex.premultiplyAlpha); + shader.uniforms.translationMatrix = ts.transform.worldTransform.toArray(true); + shader.uniforms.uSampler = tex; + + renderer.shader.bind(shader); + renderer.geometry.bind(quad);// , renderer.shader.getGLShader()); + + renderer.state.setBlendMode(correctBlendMode(ts.blendMode, baseTex.premultiplyAlpha)); + renderer.geometry.draw(this.renderer.gl.TRIANGLES, 6, 0); + }; + + return TilingSpriteRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/text-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * A BitmapText object will create a line or multiple lines of text using bitmap font. + * + * The primary advantage of this class over Text is that all of your textures are pre-generated and loading, + * meaning that rendering is fast, and changing text has no performance implications. + * + * The primary disadvantage is that you need to preload the bitmap font assets, and thus the styling is set in stone. + * Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters. + * + * To split a line you can use '\n', '\r' or '\r\n' in your string. + * + * You can generate the fnt files using + * http://www.angelcode.com/products/bmfont/ for Windows or + * http://www.bmglyph.com/ for Mac. + * + * A BitmapText can only be created when the font is loaded. + * + * ```js + * // in this case the font is in a file called 'desyrel.fnt' + * let bitmapText = new PIXI.BitmapText("text using a fancy font!", {font: "35px Desyrel", align: "right"}); + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var BitmapText = /*@__PURE__*/(function (Container) { + function BitmapText(text, style) + { + var this$1 = this; + if ( style === void 0 ) style = {}; + + Container.call(this); + + /** + * Private tracker for the width of the overall text + * + * @member {number} + * @private + */ + this._textWidth = 0; + + /** + * Private tracker for the height of the overall text + * + * @member {number} + * @private + */ + this._textHeight = 0; + + /** + * Private tracker for the letter sprite pool. + * + * @member {PIXI.Sprite[]} + * @private + */ + this._glyphs = []; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._font = { + tint: style.tint !== undefined ? style.tint : 0xFFFFFF, + align: style.align || 'left', + name: null, + size: 0, + }; + + /** + * Private tracker for the current font. + * + * @member {object} + * @private + */ + this.font = style.font; // run font setter + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = text; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting value to 0 + * + * @member {number} + * @private + */ + this._maxWidth = 0; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * ie: when trying to vertically align. + * + * @member {number} + * @private + */ + this._maxLineHeight = 0; + + /** + * Letter spacing. This is useful for setting the space between characters. + * @member {number} + * @private + */ + this._letterSpacing = 0; + + /** + * Text anchor. read-only + * + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint(function () { this$1.dirty = true; }, this, 0, 0); + + /** + * The dirty state of this object. + * + * @member {boolean} + */ + this.dirty = false; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + this.roundPixels = settings.ROUND_PIXELS; + + this.updateText(); + } + + if ( Container ) BitmapText.__proto__ = Container; + BitmapText.prototype = Object.create( Container && Container.prototype ); + BitmapText.prototype.constructor = BitmapText; + + var prototypeAccessors = { tint: { configurable: true },align: { configurable: true },anchor: { configurable: true },font: { configurable: true },text: { configurable: true },maxWidth: { configurable: true },maxLineHeight: { configurable: true },textWidth: { configurable: true },letterSpacing: { configurable: true },textHeight: { configurable: true } }; + + /** + * Renders text and updates it when needed + * + * @private + */ + BitmapText.prototype.updateText = function updateText () + { + var data = BitmapText.fonts[this._font.name]; + var scale = this._font.size / data.size; + var pos = new Point(); + var chars = []; + var lineWidths = []; + var text = this._text.replace(/(?:\r\n|\r)/g, '\n') || ' '; + var textLength = text.length; + var maxWidth = this._maxWidth * data.size / this._font.size; + + var prevCharCode = null; + var lastLineWidth = 0; + var maxLineWidth = 0; + var line = 0; + var lastBreakPos = -1; + var lastBreakWidth = 0; + var spacesRemoved = 0; + var maxLineHeight = 0; + + for (var i = 0; i < textLength; i++) + { + var charCode = text.charCodeAt(i); + var char = text.charAt(i); + + if ((/(?:\s)/).test(char)) + { + lastBreakPos = i; + lastBreakWidth = lastLineWidth; + } + + if (char === '\r' || char === '\n') + { + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + ++line; + ++spacesRemoved; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + continue; + } + + var charData = data.chars[charCode]; + + if (!charData) + { + continue; + } + + if (prevCharCode && charData.kerning[prevCharCode]) + { + pos.x += charData.kerning[prevCharCode]; + } + + chars.push({ + texture: charData.texture, + line: line, + charCode: charCode, + position: new Point(pos.x + charData.xOffset + (this._letterSpacing / 2), pos.y + charData.yOffset), + }); + pos.x += charData.xAdvance + this._letterSpacing; + lastLineWidth = pos.x; + maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height)); + prevCharCode = charCode; + + if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth) + { + ++spacesRemoved; + removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos); + i = lastBreakPos; + lastBreakPos = -1; + + lineWidths.push(lastBreakWidth); + maxLineWidth = Math.max(maxLineWidth, lastBreakWidth); + line++; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + } + } + + var lastChar = text.charAt(text.length - 1); + + if (lastChar !== '\r' && lastChar !== '\n') + { + if ((/(?:\s)/).test(lastChar)) + { + lastLineWidth = lastBreakWidth; + } + + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + } + + var lineAlignOffsets = []; + + for (var i$1 = 0; i$1 <= line; i$1++) + { + var alignOffset = 0; + + if (this._font.align === 'right') + { + alignOffset = maxLineWidth - lineWidths[i$1]; + } + else if (this._font.align === 'center') + { + alignOffset = (maxLineWidth - lineWidths[i$1]) / 2; + } + + lineAlignOffsets.push(alignOffset); + } + + var lenChars = chars.length; + var tint = this.tint; + + for (var i$2 = 0; i$2 < lenChars; i$2++) + { + var c = this._glyphs[i$2]; // get the next glyph sprite + + if (c) + { + c.texture = chars[i$2].texture; + } + else + { + c = new Sprite(chars[i$2].texture); + c.roundPixels = this.roundPixels; + this._glyphs.push(c); + } + + c.position.x = (chars[i$2].position.x + lineAlignOffsets[chars[i$2].line]) * scale; + c.position.y = chars[i$2].position.y * scale; + c.scale.x = c.scale.y = scale; + c.tint = tint; + + if (!c.parent) + { + this.addChild(c); + } + } + + // remove unnecessary children. + for (var i$3 = lenChars; i$3 < this._glyphs.length; ++i$3) + { + this.removeChild(this._glyphs[i$3]); + } + + this._textWidth = maxLineWidth * scale; + this._textHeight = (pos.y + data.lineHeight) * scale; + + // apply anchor + if (this.anchor.x !== 0 || this.anchor.y !== 0) + { + for (var i$4 = 0; i$4 < lenChars; i$4++) + { + this._glyphs[i$4].x -= this._textWidth * this.anchor.x; + this._glyphs[i$4].y -= this._textHeight * this.anchor.y; + } + } + this._maxLineHeight = maxLineHeight * scale; + }; + + /** + * Updates the transform of this object + * + * @private + */ + BitmapText.prototype.updateTransform = function updateTransform () + { + this.validate(); + this.containerUpdateTransform(); + }; + + /** + * Validates text before calling parent's getLocalBounds + * + * @return {PIXI.Rectangle} The rectangular bounding area + */ + BitmapText.prototype.getLocalBounds = function getLocalBounds () + { + this.validate(); + + return Container.prototype.getLocalBounds.call(this); + }; + + /** + * Updates text when needed + * + * @private + */ + BitmapText.prototype.validate = function validate () + { + if (this.dirty) + { + this.updateText(); + this.dirty = false; + } + }; + + /** + * The tint of the BitmapText object. + * + * @member {number} + */ + prototypeAccessors.tint.get = function () + { + return this._font.tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.tint = (typeof value === 'number' && value >= 0) ? value : 0xFFFFFF; + + this.dirty = true; + }; + + /** + * The alignment of the BitmapText object. + * + * @member {string} + * @default 'left' + */ + prototypeAccessors.align.get = function () + { + return this._font.align; + }; + + prototypeAccessors.align.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.align = value || 'left'; + + this.dirty = true; + }; + + /** + * The anchor sets the origin point of the text. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * @member {PIXI.Point | number} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + if (typeof value === 'number') + { + this._anchor.set(value); + } + else + { + this._anchor.copyFrom(value); + } + }; + + /** + * The font descriptor of the BitmapText object. + * + * @member {object} + */ + prototypeAccessors.font.get = function () + { + return this._font; + }; + + prototypeAccessors.font.set = function (value) // eslint-disable-line require-jsdoc + { + if (!value) + { + return; + } + + if (typeof value === 'string') + { + value = value.split(' '); + + this._font.name = value.length === 1 ? value[0] : value.slice(1).join(' '); + this._font.size = value.length >= 2 ? parseInt(value[0], 10) : BitmapText.fonts[this._font.name].size; + } + else + { + this._font.name = value.name; + this._font.size = typeof value.size === 'number' ? value.size : parseInt(value.size, 10); + } + + this.dirty = true; + }; + + /** + * The text of the BitmapText object. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting the value to 0. + * + * @member {number} + */ + prototypeAccessors.maxWidth.get = function () + { + return this._maxWidth; + }; + + prototypeAccessors.maxWidth.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._maxWidth === value) + { + return; + } + this._maxWidth = value; + this.dirty = true; + }; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * i.e. when trying to vertically align. + * + * @member {number} + * @readonly + */ + prototypeAccessors.maxLineHeight.get = function () + { + this.validate(); + + return this._maxLineHeight; + }; + + /** + * The width of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textWidth.get = function () + { + this.validate(); + + return this._textWidth; + }; + + /** + * Additional space between characters. + * + * @member {number} + */ + prototypeAccessors.letterSpacing.get = function () + { + return this._letterSpacing; + }; + + prototypeAccessors.letterSpacing.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._letterSpacing !== value) + { + this._letterSpacing = value; + this.dirty = true; + } + }; + + /** + * The height of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textHeight.get = function () + { + this.validate(); + + return this._textHeight; + }; + + /** + * Register a bitmap font with data and a texture. + * + * @static + * @param {XMLDocument} xml - The XML document data. + * @param {Object.|PIXI.Texture|PIXI.Texture[]} textures - List of textures for each page. + * If providing an object, the key is the `` element's `file` attribute in the FNT file. + * @return {Object} Result font object with font, size, lineHeight and char fields. + */ + BitmapText.registerFont = function registerFont (xml, textures) + { + var data = {}; + var info = xml.getElementsByTagName('info')[0]; + var common = xml.getElementsByTagName('common')[0]; + var pages = xml.getElementsByTagName('page'); + var res = getResolutionOfUrl(pages[0].getAttribute('file'), settings.RESOLUTION); + var pagesTextures = {}; + + data.font = info.getAttribute('face'); + data.size = parseInt(info.getAttribute('size'), 10); + data.lineHeight = parseInt(common.getAttribute('lineHeight'), 10) / res; + data.chars = {}; + + // Single texture, convert to list + if (textures instanceof Texture) + { + textures = [textures]; + } + + // Convert the input Texture, Textures or object + // into a page Texture lookup by "id" + for (var i = 0; i < pages.length; i++) + { + var id = pages[i].getAttribute('id'); + var file = pages[i].getAttribute('file'); + + pagesTextures[id] = textures instanceof Array ? textures[i] : textures[file]; + } + + // parse letters + var letters = xml.getElementsByTagName('char'); + + for (var i$1 = 0; i$1 < letters.length; i$1++) + { + var letter = letters[i$1]; + var charCode = parseInt(letter.getAttribute('id'), 10); + var page = letter.getAttribute('page') || 0; + var textureRect = new Rectangle( + (parseInt(letter.getAttribute('x'), 10) / res) + (pagesTextures[page].frame.x / res), + (parseInt(letter.getAttribute('y'), 10) / res) + (pagesTextures[page].frame.y / res), + parseInt(letter.getAttribute('width'), 10) / res, + parseInt(letter.getAttribute('height'), 10) / res + ); + + data.chars[charCode] = { + xOffset: parseInt(letter.getAttribute('xoffset'), 10) / res, + yOffset: parseInt(letter.getAttribute('yoffset'), 10) / res, + xAdvance: parseInt(letter.getAttribute('xadvance'), 10) / res, + kerning: {}, + texture: new Texture(pagesTextures[page].baseTexture, textureRect), + page: page, + }; + } + + // parse kernings + var kernings = xml.getElementsByTagName('kerning'); + + for (var i$2 = 0; i$2 < kernings.length; i$2++) + { + var kerning = kernings[i$2]; + var first = parseInt(kerning.getAttribute('first'), 10) / res; + var second = parseInt(kerning.getAttribute('second'), 10) / res; + var amount = parseInt(kerning.getAttribute('amount'), 10) / res; + + if (data.chars[second]) + { + data.chars[second].kerning[first] = amount; + } + } + + // I'm leaving this as a temporary fix so we can test the bitmap fonts in v3 + // but it's very likely to change + BitmapText.fonts[data.font] = data; + + return data; + }; + + Object.defineProperties( BitmapText.prototype, prototypeAccessors ); + + return BitmapText; +}(Container)); + +BitmapText.fonts = {}; + +/** + * {@link PIXI.Loader Loader} middleware for loading + * bitmap-based fonts suitable for using with {@link PIXI.BitmapText}. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var BitmapFontLoader = function BitmapFontLoader () {}; + +BitmapFontLoader.parse = function parse (resource, texture) +{ + resource.bitmapFont = BitmapText.registerFont(resource.data, texture); +}; + +/** + * Called when the plugin is installed. + * + * @see PIXI.Loader.registerPlugin + */ +BitmapFontLoader.add = function add () +{ + LoaderResource.setExtensionXhrType('fnt', LoaderResource.XHR_RESPONSE_TYPE.DOCUMENT); +}; + +/** + * Replacement for NodeJS's path.dirname + * @private + * @param {string} url Path to get directory for + */ +BitmapFontLoader.dirname = function dirname (url) +{ + var dir = url + .replace(/\/$/, '') // replace trailing slash + .replace(/\/[^\/]*$/, ''); // remove everything after the last + + // File request is relative, use current directory + if (dir === url) + { + return '.'; + } + // Started with a slash + else if (dir === '') + { + return '/'; + } + + return dir; +}; + +/** + * Called after a resource is loaded. + * @see PIXI.Loader.loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ +BitmapFontLoader.use = function use (resource, next) +{ + // skip if no data or not xml data + if (!resource.data || resource.type !== LoaderResource.TYPE.XML) + { + next(); + + return; + } + + // skip if not bitmap font data, using some silly duck-typing + if (resource.data.getElementsByTagName('page').length === 0 + || resource.data.getElementsByTagName('info').length === 0 + || resource.data.getElementsByTagName('info')[0].getAttribute('face') === null + ) + { + next(); + + return; + } + + var xmlUrl = !resource.isDataUrl ? BitmapFontLoader.dirname(resource.url) : ''; + + if (resource.isDataUrl) + { + if (xmlUrl === '.') + { + xmlUrl = ''; + } + + if (this.baseUrl && xmlUrl) + { + // if baseurl has a trailing slash then add one to xmlUrl so the replace works below + if (this.baseUrl.charAt(this.baseUrl.length - 1) === '/') + { + xmlUrl += '/'; + } + } + } + + // remove baseUrl from xmlUrl + xmlUrl = xmlUrl.replace(this.baseUrl, ''); + + // if there is an xmlUrl now, it needs a trailing slash. Ensure that it does if the string isn't empty. + if (xmlUrl && xmlUrl.charAt(xmlUrl.length - 1) !== '/') + { + xmlUrl += '/'; + } + + var pages = resource.data.getElementsByTagName('page'); + var textures = {}; + + // Handle completed, when the number of textures + // load is the same number as references in the fnt file + var completed = function (page) { + textures[page.metadata.pageFile] = page.texture; + + if (Object.keys(textures).length === pages.length) + { + BitmapFontLoader.parse(resource, textures); + next(); + } + }; + + for (var i = 0; i < pages.length; ++i) + { + var pageFile = pages[i].getAttribute('file'); + var url = xmlUrl + pageFile; + var exists = false; + + // incase the image is loaded outside + // using the same loader, resource will be available + for (var name in this.resources) + { + var bitmapResource = this.resources[name]; + + if (bitmapResource.url === url) + { + bitmapResource.metadata.pageFile = pageFile; + if (bitmapResource.texture) + { + completed(bitmapResource); + } + else + { + bitmapResource.onAfterMiddleware.add(completed); + } + exists = true; + break; + } + } + + // texture is not loaded, we'll attempt to add + // it to the load and add the texture to the list + if (!exists) + { + // Standard loading options for images + var options = { + crossOrigin: resource.crossOrigin, + loadType: LoaderResource.LOAD_TYPE.IMAGE, + metadata: Object.assign( + { pageFile: pageFile }, + resource.metadata.imageMetadata + ), + parentResource: resource, + }; + + this.add(url, options, completed); + } + } +}; + +/*! + * @pixi/filter-color-matrix - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/filter-color-matrix is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var fragment$3 = "varying vec2 vTextureCoord;\nuniform sampler2D uSampler;\nuniform float m[20];\nuniform float uAlpha;\n\nvoid main(void)\n{\n vec4 c = texture2D(uSampler, vTextureCoord);\n\n if (uAlpha == 0.0) {\n gl_FragColor = c;\n return;\n }\n\n // Un-premultiply alpha before applying the color matrix. See issue #3539.\n if (c.a > 0.0) {\n c.rgb /= c.a;\n }\n\n vec4 result;\n\n result.r = (m[0] * c.r);\n result.r += (m[1] * c.g);\n result.r += (m[2] * c.b);\n result.r += (m[3] * c.a);\n result.r += m[4];\n\n result.g = (m[5] * c.r);\n result.g += (m[6] * c.g);\n result.g += (m[7] * c.b);\n result.g += (m[8] * c.a);\n result.g += m[9];\n\n result.b = (m[10] * c.r);\n result.b += (m[11] * c.g);\n result.b += (m[12] * c.b);\n result.b += (m[13] * c.a);\n result.b += m[14];\n\n result.a = (m[15] * c.r);\n result.a += (m[16] * c.g);\n result.a += (m[17] * c.b);\n result.a += (m[18] * c.a);\n result.a += m[19];\n\n vec3 rgb = mix(c.rgb, result.rgb, uAlpha);\n\n // Premultiply alpha again.\n rgb *= result.a;\n\n gl_FragColor = vec4(rgb, result.a);\n}\n"; + +/** + * The ColorMatrixFilter class lets you apply a 5x4 matrix transformation on the RGBA + * color and alpha values of every pixel on your displayObject to produce a result + * with a new set of RGBA color and alpha values. It's pretty powerful! + * + * ```js + * let colorMatrix = new PIXI.filters.ColorMatrixFilter(); + * container.filters = [colorMatrix]; + * colorMatrix.contrast(2); + * ``` + * @author Clément Chenebault + * @class + * @extends PIXI.Filter + * @memberof PIXI.filters + */ +var ColorMatrixFilter = /*@__PURE__*/(function (Filter) { + function ColorMatrixFilter() + { + var uniforms = { + m: new Float32Array([1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0]), + uAlpha: 1, + }; + + Filter.call(this, defaultFilter, fragment$3, uniforms); + + this.alpha = 1; + } + + if ( Filter ) ColorMatrixFilter.__proto__ = Filter; + ColorMatrixFilter.prototype = Object.create( Filter && Filter.prototype ); + ColorMatrixFilter.prototype.constructor = ColorMatrixFilter; + + var prototypeAccessors = { matrix: { configurable: true },alpha: { configurable: true } }; + + /** + * Transforms current matrix and set the new one + * + * @param {number[]} matrix - 5x4 matrix + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype._loadMatrix = function _loadMatrix (matrix, multiply) + { + if ( multiply === void 0 ) multiply = false; + + var newMatrix = matrix; + + if (multiply) + { + this._multiply(newMatrix, this.uniforms.m, matrix); + newMatrix = this._colorMatrix(newMatrix); + } + + // set the new matrix + this.uniforms.m = newMatrix; + }; + + /** + * Multiplies two mat5's + * + * @private + * @param {number[]} out - 5x4 matrix the receiving matrix + * @param {number[]} a - 5x4 matrix the first operand + * @param {number[]} b - 5x4 matrix the second operand + * @returns {number[]} 5x4 matrix + */ + ColorMatrixFilter.prototype._multiply = function _multiply (out, a, b) + { + // Red Channel + out[0] = (a[0] * b[0]) + (a[1] * b[5]) + (a[2] * b[10]) + (a[3] * b[15]); + out[1] = (a[0] * b[1]) + (a[1] * b[6]) + (a[2] * b[11]) + (a[3] * b[16]); + out[2] = (a[0] * b[2]) + (a[1] * b[7]) + (a[2] * b[12]) + (a[3] * b[17]); + out[3] = (a[0] * b[3]) + (a[1] * b[8]) + (a[2] * b[13]) + (a[3] * b[18]); + out[4] = (a[0] * b[4]) + (a[1] * b[9]) + (a[2] * b[14]) + (a[3] * b[19]) + a[4]; + + // Green Channel + out[5] = (a[5] * b[0]) + (a[6] * b[5]) + (a[7] * b[10]) + (a[8] * b[15]); + out[6] = (a[5] * b[1]) + (a[6] * b[6]) + (a[7] * b[11]) + (a[8] * b[16]); + out[7] = (a[5] * b[2]) + (a[6] * b[7]) + (a[7] * b[12]) + (a[8] * b[17]); + out[8] = (a[5] * b[3]) + (a[6] * b[8]) + (a[7] * b[13]) + (a[8] * b[18]); + out[9] = (a[5] * b[4]) + (a[6] * b[9]) + (a[7] * b[14]) + (a[8] * b[19]) + a[9]; + + // Blue Channel + out[10] = (a[10] * b[0]) + (a[11] * b[5]) + (a[12] * b[10]) + (a[13] * b[15]); + out[11] = (a[10] * b[1]) + (a[11] * b[6]) + (a[12] * b[11]) + (a[13] * b[16]); + out[12] = (a[10] * b[2]) + (a[11] * b[7]) + (a[12] * b[12]) + (a[13] * b[17]); + out[13] = (a[10] * b[3]) + (a[11] * b[8]) + (a[12] * b[13]) + (a[13] * b[18]); + out[14] = (a[10] * b[4]) + (a[11] * b[9]) + (a[12] * b[14]) + (a[13] * b[19]) + a[14]; + + // Alpha Channel + out[15] = (a[15] * b[0]) + (a[16] * b[5]) + (a[17] * b[10]) + (a[18] * b[15]); + out[16] = (a[15] * b[1]) + (a[16] * b[6]) + (a[17] * b[11]) + (a[18] * b[16]); + out[17] = (a[15] * b[2]) + (a[16] * b[7]) + (a[17] * b[12]) + (a[18] * b[17]); + out[18] = (a[15] * b[3]) + (a[16] * b[8]) + (a[17] * b[13]) + (a[18] * b[18]); + out[19] = (a[15] * b[4]) + (a[16] * b[9]) + (a[17] * b[14]) + (a[18] * b[19]) + a[19]; + + return out; + }; + + /** + * Create a Float32 Array and normalize the offset component to 0-1 + * + * @private + * @param {number[]} matrix - 5x4 matrix + * @return {number[]} 5x4 matrix with all values between 0-1 + */ + ColorMatrixFilter.prototype._colorMatrix = function _colorMatrix (matrix) + { + // Create a Float32 Array and normalize the offset component to 0-1 + var m = new Float32Array(matrix); + + m[4] /= 255; + m[9] /= 255; + m[14] /= 255; + m[19] /= 255; + + return m; + }; + + /** + * Adjusts brightness + * + * @param {number} b - value of the brigthness (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.brightness = function brightness (b, multiply) + { + var matrix = [ + b, 0, 0, 0, 0, + 0, b, 0, 0, 0, + 0, 0, b, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the matrices in grey scales + * + * @param {number} scale - value of the grey (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.greyscale = function greyscale (scale, multiply) + { + var matrix = [ + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the black and white matrice. + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.blackAndWhite = function blackAndWhite (multiply) + { + var matrix = [ + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the hue property of the color + * + * @param {number} rotation - in degrees + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.hue = function hue (rotation, multiply) + { + rotation = (rotation || 0) / 180 * Math.PI; + + var cosR = Math.cos(rotation); + var sinR = Math.sin(rotation); + var sqrt = Math.sqrt; + + /* a good approximation for hue rotation + This matrix is far better than the versions with magic luminance constants + formerly used here, but also used in the starling framework (flash) and known from this + old part of the internet: quasimondo.com/archives/000565.php + + This new matrix is based on rgb cube rotation in space. Look here for a more descriptive + implementation as a shader not a general matrix: + https://github.com/evanw/glfx.js/blob/58841c23919bd59787effc0333a4897b43835412/src/filters/adjust/huesaturation.js + + This is the source for the code: + see http://stackoverflow.com/questions/8507885/shift-hue-of-an-rgb-color/8510751#8510751 + */ + + var w = 1 / 3; + var sqrW = sqrt(w); // weight is + + var a00 = cosR + ((1.0 - cosR) * w); + var a01 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a02 = (w * (1.0 - cosR)) + (sqrW * sinR); + + var a10 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a11 = cosR + (w * (1.0 - cosR)); + var a12 = (w * (1.0 - cosR)) - (sqrW * sinR); + + var a20 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a21 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a22 = cosR + (w * (1.0 - cosR)); + + var matrix = [ + a00, a01, a02, 0, 0, + a10, a11, a12, 0, 0, + a20, a21, a22, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the contrast matrix, increase the separation between dark and bright + * Increase contrast : shadows darker and highlights brighter + * Decrease contrast : bring the shadows up and the highlights down + * + * @param {number} amount - value of the contrast (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.contrast = function contrast (amount, multiply) + { + var v = (amount || 0) + 1; + var o = -0.5 * (v - 1); + + var matrix = [ + v, 0, 0, 0, o, + 0, v, 0, 0, o, + 0, 0, v, 0, o, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the saturation matrix, increase the separation between colors + * Increase saturation : increase contrast, brightness, and sharpness + * + * @param {number} amount - The saturation amount (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.saturate = function saturate (amount, multiply) + { + if ( amount === void 0 ) amount = 0; + + var x = (amount * 2 / 3) + 1; + var y = ((x - 1) * -0.5); + + var matrix = [ + x, y, y, 0, 0, + y, x, y, 0, 0, + y, y, x, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Desaturate image (remove color) + * + * Call the saturate function + * + */ + ColorMatrixFilter.prototype.desaturate = function desaturate () // eslint-disable-line no-unused-vars + { + this.saturate(-1); + }; + + /** + * Negative image (inverse of classic rgb matrix) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.negative = function negative (multiply) + { + var matrix = [ + -1, 0, 0, 1, 0, + 0, -1, 0, 1, 0, + 0, 0, -1, 1, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Sepia image + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.sepia = function sepia (multiply) + { + var matrix = [ + 0.393, 0.7689999, 0.18899999, 0, 0, + 0.349, 0.6859999, 0.16799999, 0, 0, + 0.272, 0.5339999, 0.13099999, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color motion picture process invented in 1916 (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.technicolor = function technicolor (multiply) + { + var matrix = [ + 1.9125277891456083, -0.8545344976951645, -0.09155508482755585, 0, 11.793603434377337, + -0.3087833385928097, 1.7658908555458428, -0.10601743074722245, 0, -70.35205161461398, + -0.231103377548616, -0.7501899197440212, 1.847597816108189, 0, 30.950940869491138, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Polaroid filter + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.polaroid = function polaroid (multiply) + { + var matrix = [ + 1.438, -0.062, -0.062, 0, 0, + -0.122, 1.378, -0.122, 0, 0, + -0.016, -0.016, 1.483, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Filter who transforms : Red -> Blue and Blue -> Red + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.toBGR = function toBGR (multiply) + { + var matrix = [ + 0, 0, 1, 0, 0, + 0, 1, 0, 0, 0, + 1, 0, 0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color reversal film introduced by Eastman Kodak in 1935. (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.kodachrome = function kodachrome (multiply) + { + var matrix = [ + 1.1285582396593525, -0.3967382283601348, -0.03992559172921793, 0, 63.72958762196502, + -0.16404339962244616, 1.0835251566291304, -0.05498805115633132, 0, 24.732407896706203, + -0.16786010706155763, -0.5603416277695248, 1.6014850761964943, 0, 35.62982807460946, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Brown delicious browni filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.browni = function browni (multiply) + { + var matrix = [ + 0.5997023498159715, 0.34553243048391263, -0.2708298674538042, 0, 47.43192855600873, + -0.037703249837783157, 0.8609577587992641, 0.15059552388459913, 0, -36.96841498319127, + 0.24113635128153335, -0.07441037908422492, 0.44972182064877153, 0, -7.562075277591283, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Vintage filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.vintage = function vintage (multiply) + { + var matrix = [ + 0.6279345635605994, 0.3202183420819367, -0.03965408211312453, 0, 9.651285835294123, + 0.02578397704808868, 0.6441188644374771, 0.03259127616149294, 0, 7.462829176470591, + 0.0466055556782719, -0.0851232987247891, 0.5241648018700465, 0, 5.159190588235296, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * We don't know exactly what it does, kind of gradient map, but funny to play with! + * + * @param {number} desaturation - Tone values. + * @param {number} toned - Tone values. + * @param {string} lightColor - Tone values, example: `0xFFE580` + * @param {string} darkColor - Tone values, example: `0xFFE580` + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.colorTone = function colorTone (desaturation, toned, lightColor, darkColor, multiply) + { + desaturation = desaturation || 0.2; + toned = toned || 0.15; + lightColor = lightColor || 0xFFE580; + darkColor = darkColor || 0x338000; + + var lR = ((lightColor >> 16) & 0xFF) / 255; + var lG = ((lightColor >> 8) & 0xFF) / 255; + var lB = (lightColor & 0xFF) / 255; + + var dR = ((darkColor >> 16) & 0xFF) / 255; + var dG = ((darkColor >> 8) & 0xFF) / 255; + var dB = (darkColor & 0xFF) / 255; + + var matrix = [ + 0.3, 0.59, 0.11, 0, 0, + lR, lG, lB, desaturation, 0, + dR, dG, dB, toned, 0, + lR - dR, lG - dG, lB - dB, 0, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Night effect + * + * @param {number} intensity - The intensity of the night effect. + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.night = function night (intensity, multiply) + { + intensity = intensity || 0.1; + var matrix = [ + intensity * (-2.0), -intensity, 0, 0, 0, + -intensity, 0, intensity, 0, 0, + 0, intensity, intensity * 2.0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Predator effect + * + * Erase the current matrix by setting a new indepent one + * + * @param {number} amount - how much the predator feels his future victim + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.predator = function predator (amount, multiply) + { + var matrix = [ + // row 1 + 11.224130630493164 * amount, + -4.794486999511719 * amount, + -2.8746118545532227 * amount, + 0 * amount, + 0.40342438220977783 * amount, + // row 2 + -3.6330697536468506 * amount, + 9.193157196044922 * amount, + -2.951810836791992 * amount, + 0 * amount, + -1.316135048866272 * amount, + // row 3 + -3.2184197902679443 * amount, + -4.2375030517578125 * amount, + 7.476448059082031 * amount, + 0 * amount, + 0.8044459223747253 * amount, + // row 4 + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * LSD effect + * + * Multiply the current matrix + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.lsd = function lsd (multiply) + { + var matrix = [ + 2, -0.4, 0.5, 0, 0, + -0.5, 2, -0.4, 0, 0, + -0.4, -0.5, 3, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Erase the current matrix by setting the default one + * + */ + ColorMatrixFilter.prototype.reset = function reset () + { + var matrix = [ + 1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, false); + }; + + /** + * The matrix of the color matrix filter + * + * @member {number[]} + * @default [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0] + */ + prototypeAccessors.matrix.get = function () + { + return this.uniforms.m; + }; + + prototypeAccessors.matrix.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.m = value; + }; + + /** + * The opacity value to use when mixing the original and resultant colors. + * + * When the value is 0, the original color is used without modification. + * When the value is 1, the result color is used. + * When in the range (0, 1) the color is interpolated between the original and result by this amount. + * + * @member {number} + * @default 1 + */ + prototypeAccessors.alpha.get = function () + { + return this.uniforms.uAlpha; + }; + + prototypeAccessors.alpha.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.uAlpha = value; + }; + + Object.defineProperties( ColorMatrixFilter.prototype, prototypeAccessors ); + + return ColorMatrixFilter; +}(Filter)); + +// Americanized alias +ColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale; + +/*! + * @pixi/mixin-cache-as-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mixin-cache-as-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var _tempMatrix = new Matrix(); + +DisplayObject.prototype._cacheAsBitmap = false; +DisplayObject.prototype._cacheData = false; + +// figured theres no point adding ALL the extra variables to prototype. +// this model can hold the information needed. This can also be generated on demand as +// most objects are not cached as bitmaps. +/** + * @class + * @ignore + */ +var CacheData = function CacheData() +{ + this.textureCacheId = null; + + this.originalRender = null; + this.originalRenderCanvas = null; + this.originalCalculateBounds = null; + this.originalGetLocalBounds = null; + + this.originalUpdateTransform = null; + this.originalHitTest = null; + this.originalDestroy = null; + this.originalMask = null; + this.originalFilterArea = null; + this.sprite = null; +}; + +Object.defineProperties(DisplayObject.prototype, { + /** + * Set this to true if you want this display object to be cached as a bitmap. + * This basically takes a snap shot of the display object as it is at that moment. It can + * provide a performance benefit for complex static displayObjects. + * To remove simply set this property to `false` + * + * IMPORTANT GOTCHA - Make sure that all your textures are preloaded BEFORE setting this property to true + * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear. + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + cacheAsBitmap: { + get: function get() + { + return this._cacheAsBitmap; + }, + set: function set(value) + { + if (this._cacheAsBitmap === value) + { + return; + } + + this._cacheAsBitmap = value; + + var data; + + if (value) + { + if (!this._cacheData) + { + this._cacheData = new CacheData(); + } + + data = this._cacheData; + + data.originalRender = this.render; + data.originalRenderCanvas = this.renderCanvas; + + data.originalUpdateTransform = this.updateTransform; + data.originalCalculateBounds = this.calculateBounds; + data.originalGetLocalBounds = this.getLocalBounds; + + data.originalDestroy = this.destroy; + + data.originalContainsPoint = this.containsPoint; + + data.originalMask = this._mask; + data.originalFilterArea = this.filterArea; + + this.render = this._renderCached; + this.renderCanvas = this._renderCachedCanvas; + + this.destroy = this._cacheAsBitmapDestroy; + } + else + { + data = this._cacheData; + + if (data.sprite) + { + this._destroyCachedDisplayObject(); + } + + this.render = data.originalRender; + this.renderCanvas = data.originalRenderCanvas; + this.calculateBounds = data.originalCalculateBounds; + this.getLocalBounds = data.originalGetLocalBounds; + + this.destroy = data.originalDestroy; + + this.updateTransform = data.originalUpdateTransform; + this.containsPoint = data.originalContainsPoint; + + this._mask = data.originalMask; + this.filterArea = data.originalFilterArea; + } + }, + }, +}); + +/** + * Renders a cached version of the sprite with WebGL + * + * @private + * @function _renderCached + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCached = function _renderCached(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObject(renderer); + + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._render(renderer); +}; + +/** + * Prepares the WebGL renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObject + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObject = function _initCachedDisplayObject(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // make sure alpha is set to 1 otherwise it will get rendered as invisible! + var cacheAlpha = this.alpha; + + this.alpha = 1; + + // first we flush anything left in the renderer (otherwise it would get rendered to the cached texture) + renderer.batch.flush(); + // this.filters= []; + + // next we find the dimensions of the untransformed object + // this function also calls updatetransform on all its children as part of the measuring. + // This means we don't need to update the transform again in this function + // TODO pass an object to clone too? saves having to create a new one each time! + var bounds = this.getLocalBounds().clone(); + + // add some padding! + if (this.filters) + { + var padding = this.filters[0].padding; + + bounds.pad(padding); + } + + bounds.ceil(settings.RESOLUTION); + + // for now we cache the current renderTarget that the WebGL renderer is currently using. + // this could be more elegant.. + var cachedRenderTexture = renderer.renderTexture.current; + var cachedSourceFrame = renderer.renderTexture.sourceFrame; + var cachedProjectionTransform = renderer.projection.transform; + + // We also store the filter stack - I will definitely look to change how this works a little later down the line. + // const stack = renderer.filterManager.filterStack; + + // this renderTexture will be used to store the cached DisplayObject + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + m.tx = -bounds.x; + m.ty = -bounds.y; + + // reset + this.transform.worldTransform.identity(); + + // set all properties to there original so we can render to a texture + this.render = this._cacheData.originalRender; + + renderer.render(this, renderTexture, true, m, true); + + // now restore the state be setting the new properties + renderer.projection.transform = cachedProjectionTransform; + renderer.renderTexture.bind(cachedRenderTexture, cachedSourceFrame); + + // renderer.filterManager.filterStack = stack; + + this.render = this._renderCached; + // the rest is the same as for Canvas + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Renders a cached version of the sprite with canvas + * + * @private + * @function _renderCachedCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCachedCanvas = function _renderCachedCanvas(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObjectCanvas(renderer); + + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._renderCanvas(renderer); +}; + +// TODO this can be the same as the WebGL version.. will need to do a little tweaking first though.. +/** + * Prepares the Canvas renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObjectCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObjectCanvas = function _initCachedDisplayObjectCanvas(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // get bounds actually transforms the object for us already! + var bounds = this.getLocalBounds(); + + var cacheAlpha = this.alpha; + + this.alpha = 1; + + var cachedRenderTarget = renderer.context; + + bounds.ceil(settings.RESOLUTION); + + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + this.transform.localTransform.copyTo(m); + m.invert(); + + m.tx -= bounds.x; + m.ty -= bounds.y; + + // m.append(this.transform.worldTransform.) + // set all properties to there original so we can render to a texture + this.renderCanvas = this._cacheData.originalRenderCanvas; + + // renderTexture.render(this, m, true); + renderer.render(this, renderTexture, true, m, false); + + // now restore the state be setting the new properties + renderer.context = cachedRenderTarget; + + this.renderCanvas = this._renderCachedCanvas; + // the rest is the same as for WebGL + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Calculates the bounds of the cached sprite + * + * @private + */ +DisplayObject.prototype._calculateCachedBounds = function _calculateCachedBounds() +{ + this._bounds.clear(); + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite._calculateBounds(); + this._lastBoundsID = this._boundsID; +}; + +/** + * Gets the bounds of the cached sprite. + * + * @private + * @return {Rectangle} The local bounds. + */ +DisplayObject.prototype._getCachedLocalBounds = function _getCachedLocalBounds() +{ + return this._cacheData.sprite.getLocalBounds(); +}; + +/** + * Destroys the cached sprite. + * + * @private + */ +DisplayObject.prototype._destroyCachedDisplayObject = function _destroyCachedDisplayObject() +{ + this._cacheData.sprite._texture.destroy(true); + this._cacheData.sprite = null; + + BaseTexture.removeFromCache(this._cacheData.textureCacheId); + Texture.removeFromCache(this._cacheData.textureCacheId); + + this._cacheData.textureCacheId = null; +}; + +/** + * Destroys the cached object. + * + * @private + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value. + * Used when destroying containers, see the Container.destroy method. + */ +DisplayObject.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy(options) +{ + this.cacheAsBitmap = false; + this.destroy(options); +}; + +/*! + * @pixi/mixin-get-child-by-name - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-child-by-name is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The instance name of the object. + * + * @memberof PIXI.DisplayObject# + * @member {string} name + */ +DisplayObject.prototype.name = null; + +/** + * Returns the display object in the container. + * + * @method getChildByName + * @memberof PIXI.Container# + * @param {string} name - Instance name. + * @return {PIXI.DisplayObject} The child with the specified name. + */ +Container.prototype.getChildByName = function getChildByName(name) +{ + for (var i = 0; i < this.children.length; i++) + { + if (this.children[i].name === name) + { + return this.children[i]; + } + } + + return null; +}; + +/*! + * @pixi/mixin-get-global-position - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-global-position is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Returns the global position of the displayObject. Does not depend on object scale, rotation and pivot. + * + * @method getGlobalPosition + * @memberof PIXI.DisplayObject# + * @param {PIXI.Point} [point=new PIXI.Point()] - The point to write the global value to. + * @param {boolean} [skipUpdate=false] - Setting to true will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @return {PIXI.Point} The updated point. + */ +DisplayObject.prototype.getGlobalPosition = function getGlobalPosition(point, skipUpdate) +{ + if ( point === void 0 ) point = new Point(); + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (this.parent) + { + this.parent.toGlobal(this.position, point, skipUpdate); + } + else + { + point.x = this.position.x; + point.y = this.position.y; + } + + return point; +}; + +/*! + * @pixi/mesh - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mesh is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$2 = new Point(); +var tempPolygon = new Polygon(); + +/*! + * pixi.js - v5.1.4 + * Compiled Sat, 21 Sep 2019 07:35:21 UTC + * + * pixi.js is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Install renderer plugins +Renderer.registerPlugin('accessibility', AccessibilityManager); +Renderer.registerPlugin('extract', Extract); +Renderer.registerPlugin('interaction', InteractionManager); +Renderer.registerPlugin('particle', ParticleRenderer); +Renderer.registerPlugin('prepare', Prepare); +Renderer.registerPlugin('batch', BatchRenderer); +Renderer.registerPlugin('tilingSprite', TilingSpriteRenderer); + +Loader$1.registerPlugin(BitmapFontLoader); +Loader$1.registerPlugin(SpritesheetLoader); + +Application.registerPlugin(TickerPlugin); +Application.registerPlugin(AppLoaderPlugin); + +function fromConstructor(constr) { + return constr; +} + +let clipboard_text = ""; +const contexts = []; +const contextIOs = []; +class ImGuiImplInternalRenderer extends ObjectRenderer { + constructor(r) { + super(r); + } + render(owner) { + if (!(owner instanceof ImGuiWindowLayer)) + return; + const window = owner.window; + const io = window.io; + const draw_data = GetDrawData(); + if (draw_data === null) { + throw new Error(); + } + gl || console.log(draw_data); + // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) + const fb_width = io.DisplaySize.x * io.DisplayFramebufferScale.x; + const fb_height = io.DisplaySize.y * io.DisplayFramebufferScale.y; + if (fb_width === 0 || fb_height === 0) { + return; + } + draw_data.ScaleClipRects(io.DisplayFramebufferScale); + // Backup GL state + const last_program = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null; + const last_active_texture = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null; + gl && gl.activeTexture(gl.TEXTURE0); + const last_texture0 = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null; + const last_vertex_array = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null; + const last_array_buffer = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null; + const last_element_array_buffer = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null; + // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode); + const last_viewport = gl && gl.getParameter(gl.VIEWPORT) || null; + const last_scissor_box = gl && gl.getParameter(gl.SCISSOR_BOX) || null; + const last_blend_src_rgb = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null; + const last_blend_dst_rgb = gl && gl.getParameter(gl.BLEND_DST_RGB) || null; + const last_blend_src_alpha = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null; + const last_blend_dst_alpha = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null; + const last_blend_equation_rgb = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null; + const last_blend_equation_alpha = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null; + const last_enable_blend = gl && gl.getParameter(gl.BLEND) || null; + const last_enable_cull_face = gl && gl.getParameter(gl.CULL_FACE) || null; + const last_enable_depth_test = gl && gl.getParameter(gl.DEPTH_TEST) || null; + const last_enable_scissor_test = gl && gl.getParameter(gl.SCISSOR_TEST) || null; + gl.clearColor(0, 0, 0, 0); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl && gl.bindVertexArray(g_VaoHandle); + // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill + gl && gl.enable(gl.BLEND); + gl && gl.blendEquation(gl.FUNC_ADD); + gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE); + gl && gl.disable(gl.CULL_FACE); + gl && gl.disable(gl.DEPTH_TEST); + gl && gl.enable(gl.SCISSOR_TEST); + // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + // Setup viewport, orthographic projection matrix + // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps. + gl && gl.viewport(0, 0, fb_width, fb_height); + const L = draw_data.DisplayPos.x; + const R = draw_data.DisplayPos.x + draw_data.DisplaySize.x; + const T = draw_data.DisplayPos.y; + const B = draw_data.DisplayPos.y + draw_data.DisplaySize.y; + // we actually flip the bottom and top here to match with PIXI's texture usage + const ortho_projection = new Float32Array([ + 2.0 / (R - L), 0.0, 0.0, 0.0, + 0.0, 2.0 / (B - T), 0.0, 0.0, + 0.0, 0.0, -1.0, 0.0, + (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0, + ]); + gl && gl.useProgram(g_ShaderHandle); + gl && gl.uniform1i(g_AttribLocationTex, 0); + gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection); + // Render command lists + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.enableVertexAttribArray(g_AttribLocationPosition); + gl && gl.enableVertexAttribArray(g_AttribLocationUV); + gl && gl.enableVertexAttribArray(g_AttribLocationColor); + gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertPosOffset); + gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertUVOffset); + gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImDrawVertSize, ImDrawVertColOffset); + // Draw + const pos = draw_data.DisplayPos; + const idx_buffer_type = gl && ( gl.UNSIGNED_SHORT) || 0; + draw_data.IterateDrawLists((draw_list) => { + gl || console.log(draw_list); + gl || console.log("VtxBuffer.length", draw_list.VtxBuffer.length); + gl || console.log("IdxBuffer.length", draw_list.IdxBuffer.length); + let idx_buffer_offset = 0; + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW); + gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle); + gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW); + draw_list.IterateDrawCmds((draw_cmd) => { + gl || console.log(draw_cmd); + gl || console.log("ElemCount", draw_cmd.ElemCount); + gl || console.log("ClipRect", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y); + gl || console.log("TextureId", draw_cmd.TextureId); + if (!gl) { + console.log("i: pos.x pos.y uv.x uv.y col"); + for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) { + const view = new ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImDrawVertSize); + console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${("00000000" + view.col[0].toString(16)).substr(-8)}`); + } + } + if (draw_cmd.UserCallback !== null) { + // User callback (registered via ImDrawList::AddCallback) + draw_cmd.UserCallback(draw_list, draw_cmd); + } + else { + const clip_rect = new ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y); + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) { + // Apply scissor/clipping rectangle + gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y); + // Bind texture, Draw + gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId); + gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset); + } + } + idx_buffer_offset += draw_cmd.ElemCount * ImDrawIdxSize; + }); + }); + // Restore modified GL state + gl && (last_program !== null) && gl.useProgram(last_program); + gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0); + gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture); + gl && gl.disableVertexAttribArray(g_AttribLocationPosition); + gl && gl.disableVertexAttribArray(g_AttribLocationUV); + gl && gl.disableVertexAttribArray(g_AttribLocationColor); + gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array); + gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer); + gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer); + gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]); + gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]); + gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha); + gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); + gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND)); + gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE)); + gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST)); + gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST)); + // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]); + } +} +let gl = null; +let app = null; +class ImGuiWindowLayer extends Sprite { + constructor(window, tex) { + super(); + this.pluginName = "imgui_renderer"; + this.window = window; + } +} +class ImGuiWindow extends Container { + constructor(sizeX, sizeY, update) { + super(); + this.baseTex = new BaseRenderTexture({ scaleMode: SCALE_MODES.LINEAR, resolution: 1, type: TYPES.FLOAT, format: FORMATS.RGBA }); + this.tex = new RenderTexture(this.baseTex); + this.surface = new Sprite(this.tex); + this.imgui = new ImGuiWindowLayer(this, this.tex); + this.ctx = CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts); + SetCurrentContext(this.ctx); + this.io = GetIO(); + contexts.push(this.ctx); + contextIOs.push(this.io); + if (contexts.length == 1) { + CreateFontsTexture(); + } + if (typeof (window) !== "undefined") { + LoadIniSettingsFromMemory(window.localStorage.getItem("imgui.ini") || ""); + } + if (typeof (navigator) !== "undefined") { + this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null; + } + this.io.SetClipboardTextFn = (user_data, text) => { + clipboard_text = text; + // console.log(`set clipboard_text: "${clipboard_text}"`); + if (typeof navigator !== "undefined" && typeof navigator.clipboard !== "undefined") { + // console.log(`clipboard.writeText: "${clipboard_text}"`); + navigator.clipboard.writeText(clipboard_text).then(() => { + // console.log(`clipboard.writeText: "${clipboard_text}" done.`); + }); + } + }; + this.io.GetClipboardTextFn = (user_data) => { + // if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.readText: "${clipboard_text}"`); + // (navigator as any).clipboard.readText().then((text: string): void => { + // clipboard_text = text; + // console.log(`clipboard.readText: "${clipboard_text}" done.`); + // }); + // } + // console.log(`get clipboard_text: "${clipboard_text}"`); + return clipboard_text; + }; + this.io.ClipboardUserData = null; + // Setup back-end capabilities flags + this.io.BackendFlags |= ImGuiBackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional) + // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array. + this.io.KeyMap[ImGuiKey.Tab] = 9; + this.io.KeyMap[ImGuiKey.LeftArrow] = 37; + this.io.KeyMap[ImGuiKey.RightArrow] = 39; + this.io.KeyMap[ImGuiKey.UpArrow] = 38; + this.io.KeyMap[ImGuiKey.DownArrow] = 40; + this.io.KeyMap[ImGuiKey.PageUp] = 33; + this.io.KeyMap[ImGuiKey.PageDown] = 34; + this.io.KeyMap[ImGuiKey.Home] = 36; + this.io.KeyMap[ImGuiKey.End] = 35; + this.io.KeyMap[ImGuiKey.Insert] = 45; + this.io.KeyMap[ImGuiKey.Delete] = 46; + this.io.KeyMap[ImGuiKey.Backspace] = 8; + this.io.KeyMap[ImGuiKey.Space] = 32; + this.io.KeyMap[ImGuiKey.Enter] = 13; + this.io.KeyMap[ImGuiKey.Escape] = 27; + this.io.KeyMap[ImGuiKey.A] = 65; + this.io.KeyMap[ImGuiKey.C] = 67; + this.io.KeyMap[ImGuiKey.V] = 86; + this.io.KeyMap[ImGuiKey.X] = 88; + this.io.KeyMap[ImGuiKey.Y] = 89; + this.io.KeyMap[ImGuiKey.Z] = 90; + this.update = update; + this.resize(sizeX, sizeY); + this.imgui.pluginName = 'imgui_renderer'; + this.addChild(this.surface); + app.renderer.plugins.interaction.addListener("mousedown", this.mouseDown.bind(this)); + app.renderer.plugins.interaction.addListener("mouseup", this.mouseUp.bind(this)); + app.ticker.add(this.updateInternal.bind(this)); + this.interactive = false; + this.interactiveChildren = true; + this.surface.interactive = false; + } + getSizeX() { return this.sizeX; } + getSizeY() { return this.sizeY; } + withContext(cb) { + SetCurrentContext(this.ctx); + cb(); + } + mouseDown(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = true; + } + } + mouseUp(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = false; + } + } + resize(sizeX, sizeY) { + this.sizeX = sizeX; + this.sizeY = sizeY; + this.baseTex.resize(sizeX, sizeY); + this.tex.frame = new Rectangle(0, 0, this.baseTex.width, this.baseTex.height); + } + updateInternal(deltaTime) { + const dt = deltaTime * 1 / (1000 * settings.TARGET_FPMS); + SetCurrentContext(this.ctx); + if (this.io.WantSaveIniSettings) { + this.io.WantSaveIniSettings = false; + if (typeof (window) !== "undefined") { + window.localStorage.setItem("imgui.ini", SaveIniSettingsToMemory()); + } + } + this.io.DisplaySize.x = this.sizeX; + this.io.DisplaySize.y = this.sizeY; + this.io.DisplayFramebufferScale.x = 1; + this.io.DisplayFramebufferScale.y = 1; + this.io.DeltaTime = dt; + let localPos = this.toLocal(app.renderer.plugins.interaction.mouse.global); + if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY) { + localPos = new Point(-Number.MAX_VALUE, -Number.MAX_VALUE); + } + this.io.MousePos.x = localPos.x; + this.io.MousePos.y = localPos.y; + if (this.io.WantSetMousePos) { + console.log("TODO: MousePos", this.io.MousePos.x, this.io.MousePos.y); + } + if (typeof (document) !== "undefined") { + if (this.io.MouseDrawCursor) { + document.body.style.cursor = "none"; + } + else { + switch (GetMouseCursor()) { + case ImGuiMouseCursor.None: + document.body.style.cursor = "none"; + break; + default: + case ImGuiMouseCursor.Arrow: + document.body.style.cursor = "default"; + break; + case ImGuiMouseCursor.TextInput: + document.body.style.cursor = "text"; + break; // When hovering over InputText, etc. + case ImGuiMouseCursor.ResizeAll: + document.body.style.cursor = "move"; + break; // Unused + case ImGuiMouseCursor.ResizeNS: + document.body.style.cursor = "ns-resize"; + break; // When hovering over an horizontal border + case ImGuiMouseCursor.ResizeEW: + document.body.style.cursor = "ew-resize"; + break; // When hovering over a vertical border or a column + case ImGuiMouseCursor.ResizeNESW: + document.body.style.cursor = "nesw-resize"; + break; // When hovering over the bottom-left corner of a window + case ImGuiMouseCursor.ResizeNWSE: + document.body.style.cursor = "nwse-resize"; + break; // When hovering over the bottom-right corner of a window + case ImGuiMouseCursor.Hand: + document.body.style.cursor = "move"; + break; + } + } + } + // Gamepad navigation mapping [BETA] + for (let i = 0; i < this.io.NavInputs.length; ++i) { + this.io.NavInputs[i] = 0.0; + } + if (this.io.ConfigFlags & ImGuiConfigFlags.NavEnableGamepad) { + // Update gamepad inputs + const gamepads = (typeof (navigator) !== "undefined" && typeof (navigator.getGamepads) === "function") ? navigator.getGamepads() : []; + for (let i = 0; i < gamepads.length; ++i) { + const gamepad = gamepads[i]; + if (!gamepad) { + continue; + } + const buttons_count = gamepad.buttons.length; + const axes_count = gamepad.axes.length; + const MAP_BUTTON = function (NAV_NO, BUTTON_NO) { + if (!gamepad) { + return; + } + if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed) + this.io.NavInputs[NAV_NO] = 1.0; + }; + const MAP_ANALOG = function (NAV_NO, AXIS_NO, V0, V1) { + if (!gamepad) { + return; + } + let v = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0; + v = (v - V0) / (V1 - V0); + if (v > 1.0) + v = 1.0; + if (this.io.NavInputs[NAV_NO] < v) + this.io.NavInputs[NAV_NO] = v; + }; + // TODO: map input based on vendor and product id + // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id + const match = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/); + const match_chrome = gamepad.id.match(/^.*\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\).*$/); + const vendor = (match && match[1]) || (match_chrome && match_chrome[1]) || "0000"; + const product = (match && match[2]) || (match_chrome && match_chrome[2]) || "0000"; + switch (vendor + product) { + case "046dc216": // Logitech Logitech Dual Action (Vendor: 046d Product: c216) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 2); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 0); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "046dc21d": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d) + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_ANALOG(ImGuiNavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT + MAP_ANALOG(ImGuiNavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "2dc86001": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001) + case "2dc86101": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 0); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 4); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 6); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 7); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 8); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + default: // standard gamepad: https://w3c.github.io/gamepad/#remapping + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + } + } + } + NewFrame(); + this.update(dt); + EndFrame(); + Render(); + app.renderer.render(this.imgui, this.tex); + this.surface.interactive = this.io.WantCaptureMouse; + } +} +let canvas$1 = null; +//export let gl: WebGL2RenderingContext | null = null; +let g_ShaderHandle = null; +let g_VertHandle = null; +let g_FragHandle = null; +let g_AttribLocationTex = null; +let g_AttribLocationProjMtx = null; +let g_AttribLocationPosition = -1; +let g_AttribLocationUV = -1; +let g_AttribLocationColor = -1; +let g_VaoHandle = null; +let g_VboHandle = null; +let g_ElementsHandle = null; +let g_FontTexture = null; +function document_on_copy(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_cut(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_paste(event) { + if (event.clipboardData) { + clipboard_text = event.clipboardData.getData("text/plain"); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function window_on_gamepadconnected(event /* GamepadEvent */) { + console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.", event.gamepad.index, event.gamepad.id, event.gamepad.buttons.length, event.gamepad.axes.length); +} +function window_on_gamepaddisconnected(event /* GamepadEvent */) { + console.log("Gamepad disconnected at index %d: %s.", event.gamepad.index, event.gamepad.id); +} +function canvas_on_blur(event) { + for (var io of contextIOs) { + io.KeyCtrl = false; + io.KeyShift = false; + io.KeyAlt = false; + io.KeySuper = false; + for (let i = 0; i < io.KeysDown.length; ++i) { + io.KeysDown[i] = false; + } + for (let i = 0; i < io.MouseDown.length; ++i) { + io.MouseDown[i] = false; + } + } +} +function canvas_on_keydown(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = true; + // forward to the keypress event + if ( /*io.WantCaptureKeyboard ||*/event.key === "Tab") { + event.preventDefault(); + } + } +} +function canvas_on_keyup(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = false; + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +function canvas_on_keypress(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.AddInputCharacter(event.charCode); + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +// MouseEvent.button +// A number representing a given button: +// 0: Main button pressed, usually the left button or the un-initialized state +// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present) +// 2: Secondary button pressed, usually the right button +// 3: Fourth button, typically the Browser Back button +// 4: Fifth button, typically the Browser Forward button +const mouse_button_map = [0, 2, 1, 3, 4]; +function canvas_on_contextmenu(event) { + for (var io of contextIOs) { + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function canvas_on_wheel(event) { + for (var io of contextIOs) { + let scale = 1.0; + switch (event.deltaMode) { + case event.DOM_DELTA_PIXEL: + scale = 0.01; + break; + case event.DOM_DELTA_LINE: + scale = 0.2; + break; + case event.DOM_DELTA_PAGE: + scale = 1.0; + break; + } + io.MouseWheelH = event.deltaX * scale; + io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text. + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function PrePIXIInit() { + Renderer.registerPlugin("imgui_renderer", fromConstructor(ImGuiImplInternalRenderer)); +} +function Init(_app) { + // Setup Dear ImGui binding + IMGUI_CHECKVERSION(); + if (typeof (document) !== "undefined") { + document.body.addEventListener("copy", document_on_copy); + document.body.addEventListener("cut", document_on_cut); + document.body.addEventListener("paste", document_on_paste); + } + if (typeof (window) !== "undefined") { + window.addEventListener("gamepadconnected", window_on_gamepadconnected); + window.addEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + app = _app; + gl = app.renderer.gl; + canvas$1 = app.view; + gl.getExtension("EXT_color_buffer_float"); + if (canvas$1 !== null) { + canvas$1.style.touchAction = "none"; // Disable browser handling of all panning and zooming gestures. + canvas$1.addEventListener("blur", canvas_on_blur); + canvas$1.addEventListener("keydown", canvas_on_keydown); + canvas$1.addEventListener("keyup", canvas_on_keyup); + canvas$1.addEventListener("keypress", canvas_on_keypress); + canvas$1.addEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.addEventListener("wheel", canvas_on_wheel); + } + CreateDeviceObjects(); +} +function Shutdown() { + DestroyDeviceObjects(); + if (canvas$1 !== null) { + canvas$1.removeEventListener("blur", canvas_on_blur); + canvas$1.removeEventListener("keydown", canvas_on_keydown); + canvas$1.removeEventListener("keyup", canvas_on_keyup); + canvas$1.removeEventListener("keypress", canvas_on_keypress); + canvas$1.removeEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.removeEventListener("wheel", canvas_on_wheel); + } + app = null; + canvas$1 = null; + if (typeof (window) !== "undefined") { + window.removeEventListener("gamepadconnected", window_on_gamepadconnected); + window.removeEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + if (typeof (document) !== "undefined") { + document.body.removeEventListener("copy", document_on_copy); + document.body.removeEventListener("cut", document_on_cut); + document.body.removeEventListener("paste", document_on_paste); + } +} +function CreateFontsTexture() { + const io = GetIO(); + // Backup GL state + const last_texture = gl && gl.getParameter(gl.TEXTURE_BINDING_2D); + // Build texture atlas + // const width: number = 256; + // const height: number = 256; + // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff); + const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory. + // console.log(`font texture ${width} x ${height} @ ${pixels.length}`); + // Upload texture to graphics system + g_FontTexture = gl && gl.createTexture(); + gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2 + gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels); + // Store our identifier + io.Fonts.TexID = g_FontTexture || { foo: "bar" }; + // console.log("font texture id", g_FontTexture); + // Restore modified GL state + gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture); +} +function DestroyFontsTexture() { + const io = GetIO(); + io.Fonts.TexID = null; + gl && gl.deleteTexture(g_FontTexture); + g_FontTexture = null; +} +function CreateDeviceObjects() { + const vertex_shader = [ + "#version 300 es", + "uniform mat4 ProjMtx;", + "in vec2 Position;", + "in vec2 UV;", + "in vec4 Color;", + "out vec2 Frag_UV;", + "out vec4 Frag_Color;", + "void main() {", + " Frag_UV = UV;", + " Frag_Color = Color;", + " gl_Position = ProjMtx * vec4(Position.xy,0,1);", + "}", + ]; + const fragment_shader = [ + "#version 300 es", + "precision mediump float;", + "uniform sampler2D Texture;", + "in vec2 Frag_UV;", + "in vec4 Frag_Color;", + "out vec4 OutColor;", + "void main() {", + " OutColor = Frag_Color * texture(Texture, Frag_UV);", + "}", + ]; + g_ShaderHandle = gl && gl.createProgram(); + g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER); + g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER); + gl && gl.shaderSource(g_VertHandle, vertex_shader.join("\n")); + gl && gl.shaderSource(g_FragHandle, fragment_shader.join("\n")); + gl && gl.compileShader(g_VertHandle); + gl && gl.compileShader(g_FragHandle); + gl && gl.attachShader(g_ShaderHandle, g_VertHandle); + gl && gl.attachShader(g_ShaderHandle, g_FragHandle); + gl && gl.linkProgram(g_ShaderHandle); + g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle, "Texture"); + g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle, "ProjMtx"); + g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle, "Position") || 0; + g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle, "UV") || 0; + g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle, "Color") || 0; + g_VaoHandle = gl && gl.createVertexArray(); + g_VboHandle = gl && gl.createBuffer(); + g_ElementsHandle = gl && gl.createBuffer(); +} +function DestroyDeviceObjects() { + DestroyFontsTexture(); + gl && gl.deleteVertexArray(g_VaoHandle); + g_VaoHandle = null; + gl && gl.deleteBuffer(g_VboHandle); + g_VboHandle = null; + gl && gl.deleteBuffer(g_ElementsHandle); + g_ElementsHandle = null; + g_AttribLocationTex = null; + g_AttribLocationProjMtx = null; + g_AttribLocationPosition = -1; + g_AttribLocationUV = -1; + g_AttribLocationColor = -1; + gl && gl.deleteProgram(g_ShaderHandle); + g_ShaderHandle = null; + gl && gl.deleteShader(g_VertHandle); + g_VertHandle = null; + gl && gl.deleteShader(g_FragHandle); + g_FragHandle = null; +} + +exports.ImGuiWindow = ImGuiWindow; +exports.Init = Init; +exports.PrePIXIInit = PrePIXIInit; +exports.Shutdown = Shutdown; +//# sourceMappingURL=imgui_impl.js.map diff --git a/imgui_impl.js.map b/imgui_impl.js.map new file mode 100644 index 0000000..30848af --- /dev/null +++ b/imgui_impl.js.map @@ -0,0 +1 @@ +{"version":3,"file":"imgui_impl.js","sources":["node_modules/rollup-plugin-node-builtins/src/es6/empty.js","node_modules/rollup-plugin-node-builtins/src/es6/path.js","node_modules/imgui-js/bind-imgui.js","node_modules/imgui-js/imgui.ts","node_modules/es6-promise-polyfill/promise.js","node_modules/object-assign/index.js","node_modules/@pixi/polyfill/lib/polyfill.es.js","node_modules/ismobilejs/src/isMobile.js","node_modules/@pixi/settings/lib/settings.es.js","node_modules/eventemitter3/index.js","node_modules/earcut/src/earcut.js","node_modules/rollup-plugin-node-builtins/src/es6/punycode.js","node_modules/rollup-plugin-node-builtins/src/es6/util.js","node_modules/rollup-plugin-node-builtins/src/es6/qs.js","node_modules/rollup-plugin-node-builtins/src/es6/url.js","node_modules/@pixi/constants/lib/constants.es.js","node_modules/@pixi/utils/lib/utils.es.js","node_modules/@pixi/math/lib/math.es.js","node_modules/@pixi/display/lib/display.es.js","node_modules/@pixi/accessibility/lib/accessibility.es.js","node_modules/@pixi/runner/lib/runner.es.js","node_modules/@pixi/ticker/lib/ticker.es.js","node_modules/@pixi/core/lib/core.es.js","node_modules/@pixi/extract/lib/extract.es.js","node_modules/@pixi/interaction/lib/interaction.es.js","node_modules/@pixi/graphics/lib/graphics.es.js","node_modules/@pixi/sprite/lib/sprite.es.js","node_modules/@pixi/text/lib/text.es.js","node_modules/@pixi/prepare/lib/prepare.es.js","node_modules/@pixi/app/lib/app.es.js","node_modules/parse-uri/index.js","node_modules/mini-signals/lib/mini-signals.js","node_modules/resource-loader/dist/resource-loader.esm.js","node_modules/@pixi/loaders/lib/loaders.es.js","node_modules/@pixi/particles/lib/particles.es.js","node_modules/@pixi/spritesheet/lib/spritesheet.es.js","node_modules/@pixi/sprite-tiling/lib/sprite-tiling.es.js","node_modules/@pixi/text-bitmap/lib/text-bitmap.es.js","node_modules/@pixi/filter-color-matrix/lib/filter-color-matrix.es.js","node_modules/@pixi/mixin-cache-as-bitmap/lib/mixin-cache-as-bitmap.es.js","node_modules/@pixi/mixin-get-child-by-name/lib/mixin-get-child-by-name.es.js","node_modules/@pixi/mixin-get-global-position/lib/mixin-get-global-position.es.js","node_modules/@pixi/mesh/lib/mesh.es.js","node_modules/pixi.js/lib/pixi.es.js","utils.ts","imgui_impl.ts"],"sourcesContent":["export default {};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// resolves . and .. elements in a path array with directory names there\n// must be no slashes, empty elements, or device names (c:\\) in the array\n// (so also no leading and trailing slashes - it does not distinguish\n// relative and absolute paths)\nfunction normalizeArray(parts, allowAboveRoot) {\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = parts.length - 1; i >= 0; i--) {\n var last = parts[i];\n if (last === '.') {\n parts.splice(i, 1);\n } else if (last === '..') {\n parts.splice(i, 1);\n up++;\n } else if (up) {\n parts.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (allowAboveRoot) {\n for (; up--; up) {\n parts.unshift('..');\n }\n }\n\n return parts;\n}\n\n// Split a filename into [root, dir, basename, ext], unix version\n// 'root' is just a slash, or nothing.\nvar splitPathRe =\n /^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;\nvar splitPath = function(filename) {\n return splitPathRe.exec(filename).slice(1);\n};\n\n// path.resolve([from ...], to)\n// posix version\nexport function resolve() {\n var resolvedPath = '',\n resolvedAbsolute = false;\n\n for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {\n var path = (i >= 0) ? arguments[i] : '/';\n\n // Skip empty and invalid entries\n if (typeof path !== 'string') {\n throw new TypeError('Arguments to path.resolve must be strings');\n } else if (!path) {\n continue;\n }\n\n resolvedPath = path + '/' + resolvedPath;\n resolvedAbsolute = path.charAt(0) === '/';\n }\n\n // At this point the path should be resolved to a full absolute path, but\n // handle relative paths to be safe (might happen when process.cwd() fails)\n\n // Normalize the path\n resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {\n return !!p;\n }), !resolvedAbsolute).join('/');\n\n return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';\n};\n\n// path.normalize(path)\n// posix version\nexport function normalize(path) {\n var isPathAbsolute = isAbsolute(path),\n trailingSlash = substr(path, -1) === '/';\n\n // Normalize the path\n path = normalizeArray(filter(path.split('/'), function(p) {\n return !!p;\n }), !isPathAbsolute).join('/');\n\n if (!path && !isPathAbsolute) {\n path = '.';\n }\n if (path && trailingSlash) {\n path += '/';\n }\n\n return (isPathAbsolute ? '/' : '') + path;\n};\n\n// posix version\nexport function isAbsolute(path) {\n return path.charAt(0) === '/';\n}\n\n// posix version\nexport function join() {\n var paths = Array.prototype.slice.call(arguments, 0);\n return normalize(filter(paths, function(p, index) {\n if (typeof p !== 'string') {\n throw new TypeError('Arguments to path.join must be strings');\n }\n return p;\n }).join('/'));\n}\n\n\n// path.relative(from, to)\n// posix version\nexport function relative(from, to) {\n from = resolve(from).substr(1);\n to = resolve(to).substr(1);\n\n function trim(arr) {\n var start = 0;\n for (; start < arr.length; start++) {\n if (arr[start] !== '') break;\n }\n\n var end = arr.length - 1;\n for (; end >= 0; end--) {\n if (arr[end] !== '') break;\n }\n\n if (start > end) return [];\n return arr.slice(start, end - start + 1);\n }\n\n var fromParts = trim(from.split('/'));\n var toParts = trim(to.split('/'));\n\n var length = Math.min(fromParts.length, toParts.length);\n var samePartsLength = length;\n for (var i = 0; i < length; i++) {\n if (fromParts[i] !== toParts[i]) {\n samePartsLength = i;\n break;\n }\n }\n\n var outputParts = [];\n for (var i = samePartsLength; i < fromParts.length; i++) {\n outputParts.push('..');\n }\n\n outputParts = outputParts.concat(toParts.slice(samePartsLength));\n\n return outputParts.join('/');\n}\n\nexport var sep = '/';\nexport var delimiter = ':';\n\nexport function dirname(path) {\n var result = splitPath(path),\n root = result[0],\n dir = result[1];\n\n if (!root && !dir) {\n // No dirname whatsoever\n return '.';\n }\n\n if (dir) {\n // It has a dirname, strip trailing slash\n dir = dir.substr(0, dir.length - 1);\n }\n\n return root + dir;\n}\n\nexport function basename(path, ext) {\n var f = splitPath(path)[2];\n // TODO: make this comparison case-insensitive on windows?\n if (ext && f.substr(-1 * ext.length) === ext) {\n f = f.substr(0, f.length - ext.length);\n }\n return f;\n}\n\n\nexport function extname(path) {\n return splitPath(path)[3];\n}\nexport default {\n extname: extname,\n basename: basename,\n dirname: dirname,\n sep: sep,\n delimiter: delimiter,\n relative: relative,\n join: join,\n isAbsolute: isAbsolute,\n normalize: normalize,\n resolve: resolve\n};\nfunction filter (xs, f) {\n if (xs.filter) return xs.filter(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n if (f(xs[i], i, xs)) res.push(xs[i]);\n }\n return res;\n}\n\n// String.prototype.substr - negative index don't work in IE8\nvar substr = 'ab'.substr(-1) === 'b' ?\n function (str, start, len) { return str.substr(start, len) } :\n function (str, start, len) {\n if (start < 0) start = str.length + start;\n return str.substr(start, len);\n }\n;\n","\nvar Module = (function() {\n var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;\n return (\nfunction(Module) {\n Module = Module || {};\n\nvar Module=typeof Module!==\"undefined\"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key]}}Module[\"arguments\"]=[];Module[\"thisProgram\"]=\"./this.program\";Module[\"quit\"]=function(status,toThrow){throw toThrow};Module[\"preRun\"]=[];Module[\"postRun\"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window===\"object\";ENVIRONMENT_IS_WORKER=typeof importScripts===\"function\";ENVIRONMENT_HAS_NODE=typeof process===\"object\"&&typeof require===\"function\";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory=\"\";function locateFile(path){if(Module[\"locateFile\"]){return Module[\"locateFile\"](path,scriptDirectory)}else{return scriptDirectory+path}}if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+\"/\";var nodeFS;var nodePath;Module[\"read\"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require(\"fs\");if(!nodePath)nodePath=require(\"path\");filename=nodePath[\"normalize\"](filename);ret=nodeFS[\"readFileSync\"](filename)}return binary?ret:ret.toString()};Module[\"readBinary\"]=function readBinary(filename){var ret=Module[\"read\"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}assert(ret.buffer);return ret};if(process[\"argv\"].length>1){Module[\"thisProgram\"]=process[\"argv\"][1].replace(/\\\\/g,\"/\")}Module[\"arguments\"]=process[\"argv\"].slice(2);process[\"on\"](\"uncaughtException\",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process[\"on\"](\"unhandledRejection\",abort);Module[\"quit\"]=function(status){process[\"exit\"](status)};Module[\"inspect\"]=function(){return\"[Emscripten Module object]\"}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!=\"undefined\"){Module[\"read\"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)}}Module[\"readBinary\"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer===\"function\"){return new Uint8Array(readbuffer(f))}data=read(f,\"binary\");assert(typeof data===\"object\");return data};if(typeof scriptArgs!=\"undefined\"){Module[\"arguments\"]=scriptArgs}else if(typeof arguments!=\"undefined\"){Module[\"arguments\"]=arguments}if(typeof quit===\"function\"){Module[\"quit\"]=function(status){quit(status)}}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf(\"blob:\")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf(\"/\")+1)}else{scriptDirectory=\"\"}Module[\"read\"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module[\"readBinary\"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.responseType=\"arraybuffer\";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}}}Module[\"readAsync\"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,true);xhr.responseType=\"arraybuffer\";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror()};xhr.onerror=onerror;xhr.send(null)};Module[\"setWindowTitle\"]=function(title){document.title=title}}else{}var out=Module[\"print\"]||(typeof console!==\"undefined\"?console.log.bind(console):typeof print!==\"undefined\"?print:null);var err=Module[\"printErr\"]||(typeof printErr!==\"undefined\"?printErr:typeof console!==\"undefined\"&&console.warn.bind(console)||out);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key]}}moduleOverrides=undefined;var asm2wasmImports={\"f64-rem\":function(x,y){return x%y},\"debugger\":function(){debugger}};var functionPointers=new Array(0);var tempRet0=0;var setTempRet0=function(value){tempRet0=value};if(typeof WebAssembly!==\"object\"){err(\"no native wasm support detected\")}var wasmMemory;var wasmTable;var ABORT=false;var EXITSTATUS=0;function assert(condition,text){if(!condition){abort(\"Assertion failed: \"+text)}}var UTF8Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf8\"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str=\"\";while(idx>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):\"\"}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4}return len}var UTF16Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf-16le\"):undefined;var WASM_PAGE_SIZE=65536;var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferViews(){Module[\"HEAP8\"]=HEAP8=new Int8Array(buffer);Module[\"HEAP16\"]=HEAP16=new Int16Array(buffer);Module[\"HEAP32\"]=HEAP32=new Int32Array(buffer);Module[\"HEAPU8\"]=HEAPU8=new Uint8Array(buffer);Module[\"HEAPU16\"]=HEAPU16=new Uint16Array(buffer);Module[\"HEAPU32\"]=HEAPU32=new Uint32Array(buffer);Module[\"HEAPF32\"]=HEAPF32=new Float32Array(buffer);Module[\"HEAPF64\"]=HEAPF64=new Float64Array(buffer)}var DYNAMIC_BASE=5315584,DYNAMICTOP_PTR=72672;var TOTAL_STACK=5242880;var INITIAL_TOTAL_MEMORY=Module[\"TOTAL_MEMORY\"]||16777216;if(INITIAL_TOTAL_MEMORY>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback==\"function\"){callback();continue}var func=callback.func;if(typeof func===\"number\"){if(callback.arg===undefined){Module[\"dynCall_v\"](func)}else{Module[\"dynCall_vi\"](func,callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;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 ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__)}function preMain(){callRuntimeCallbacks(__ATMAIN__)}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 addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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()}}}Module[\"preloadedImages\"]={};Module[\"preloadedAudios\"]={};var dataURIPrefix=\"data:application/octet-stream;base64,\";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile=\"data:application/octet-stream;base64,AGFzbQEAAAAB2AyxAWACf38Bf2ACf38AYAJ8fAF8YAF/AX9gAX8AYAN/f38Bf2AEf39/fwBgA39/fwBgAn9/AX1gBH9/f38Bf2AEf399fwBgAn99AX9gA399fQF/YAZ9fX1/f38AYAR/fX9/AGAFf39/fX8AYAABfGADf31/AGAFf39/f38Bf2AIf39/f39/f38Bf2AHf39/f39/fwF/YAZ/f39/f38Bf2AGf398fH9/AX9gCX9/f39/f39/fwF/YAN9f38AYAl/f39/f39/f38AYAZ/f39/f38AYAJ/fQBgAX8BfWAAAX9gAn19AGABfQBgAAF9YAAAYAN/f30Bf2AGf39/fX9/AGAIf399fX1/f38AYAR/fX99AX9gBn9/fX9/fwBgBX9/f399AGAHf39/f31/fQBgBn9/f399fwBgB39/f39/f38AYAd/f39/f399AGAGf39/f399AGAFf39/f38AYAZ/f31/f30AYAV/f31/fwBgCH9/fX9/f31/AGALf39/f39/f39/f38AYAl/f39/f39/fX8AYAh/f39/f399fwBgBH9/f30AYAZ/f319fX8AYAp/f39/f39/f39/AGADf399AGAGf3x/f39/AX9gA39+fwF+YAF/AXxgA39/fwF9YAR/f319AX9gCH9/fX19f39/AX9gBH9/fX8Bf2AFf399f30Bf2AHf39/fHx/fwF/YAR/f399AX9gBX9/f31/AX9gBn9/f31/fwF/YAp/f39/f39/f39/AX9gA399fQBgB399fX1/f38AYAd/f399fX1/AGAHf39/fX9/fQBgB39/f31/f38AYAl/f399f39/fX8AYAd/f39/f31/AGAIf39/f399f30AYAh/f39/f39/fQBgCH9/f39/f39/AGAKf39/f39/f399fwBgDH9/f39/f39/f39/fwBgDX9/f39/f39/f39/f38AYAN/f3wAYAN/f38BfGABfQF9YAJ9fQF9YAV/fX19fQBgBH9/fX0AYAJ/fQF9YAR9fX19AX9gBX9/f319AGADfX19AX1gAn19AX9gBH19fX0BfWALf319fX19fX19fX8AYAl/f31/f39/fX8AYAp/f31/f39/f31/AGAFf31/f30Bf2AIf399fX9/f38AYAt/f319fX19fX19fQBgCH9/f39/fX1/AGAHf39/fX1/fwBgBX9/fX9/AX9gCH9/f399fX9/AGAHf39/fX19fQBgCn9/fX19fX19fX8AYAx/f319fX19fX19fX8AYAd/fX19fX19AGAEf31/fwF/YAh/f399f39/fQF/YAV/fX9/fwF/YAV/fX5+fwF/YAZ/fX19f30Bf2AGf318fH99AX9gAn98AXxgAn9+AX5gCX9/f399f39/fQF/YAd/f319fX99AX9gCX9/f319fX9/fQF/YAZ/f31/f38Bf2AIf39/fX9/f38Bf2AKf39/f39/f31/fwF/YAl/f39/f399f38Bf2AJf39/fn5/fX9/AX9gCX9/f319f31/fwF/YAl/f398fH99f38Bf2AFfHx8fX0BfWADfHx9AXxgA3x8fAF8YAV9fX19fQF9YAN+fn4BfWADfn5+AX5gBX5+fn19AX1gBX9/f319AX1gB39/f39/f30Bf2AIf39/f39/f30Bf2AGf399fX99AX9gB39/f319f30Bf2AGf399fX9/AX9gB39/f31/fX8AYAl/f39/f399fX8AYAd/f39/fX1/AGAEf319fQF9YAZ/f39/f30Bf2AHf399f39/fQF/YAJ/fgBgAn9/AX5gA35/fwF/YAJ+fwF/YAJ8fwF8YAV/f39/fwF8YAZ/f39/f38BfGACfX8BfWABfAF9YAJ9fwF/YAN/f34AYAF/AX5gAn9/AXxgBH9/f38BfWAHf398f39/fwF/YAV/f399fQF/YAl/f399fX1/f38Bf2AGf39/fX99AX9gCH9/f398fH9/AX9gBX9/f399AX9gBn9/f399fwF/YAd/f39/fX9/AX9gC39/f39/f39/f39/AX9gCX9/f319fX9/fwBgCH9/f399fX1/AGAHf39/f31/fwBgCH9/f399f399AGAIf39/f31/f38AYAp/f39/fX9/f31/AGAJf39/f39/fX99AGAJf39/f39/f399AGALf39/f39/f39/fX8AAvQDNwNlbnYBYgA2A2VudgFjAE4DZW52AWQAGgNlbnYBZQAEA2VudgFmAAADZW52AWcAUQNlbnYBaABTA2VudgFpAAcDZW52AWoAAANlbnYBawAtA2VudgFsACEDZW52AW0ABwNlbnYBbgAAA2VudgFvAAYDZW52AXAAAANlbnYBcQAaA2VudgFyAAQDZW52AXMABANlbnYBdAAEA2VudgF1AAAI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/AYLC0H89gEoAgAhASAAQZypBCgCACABQf8BcUHyBmoRAQALWgEDfyMEIQIjBEEQaiQEIAJBmKkEKAIAIgNBsCtqIABBBHRqIgApAgA3AgAgAiAAKQIINwIIIAIgAioCDCADQZAqaioCACABlJQ4AgwgAhChAyEEIAIkBCAECxYAIAAgASkCADcCACAAIAIpAgA3AggLBgBBNBADCwwAIAAgASAAIAFdGwvGAwEDfyACQYDAAE4EQCAAIAEgAhAjGiAADwsgACEEIAAgAmohAyAAQQNxIAFBA3FGBEADQCAAQQNxBEAgAkUEQCAEDwsgACABLAAAOgAAIABBAWohACABQQFqIQEgAkEBayECDAELCyADQXxxIgJBQGohBQNAIAAgBUwEQCAAIAEoAgA2AgAgACABKAIENgIEIAAgASgCCDYCCCAAIAEoAgw2AgwgACABKAIQNgIQIAAgASgCFDYCFCAAIAEoAhg2AhggACABKAIcNgIcIAAgASgCIDYCICAAIAEoAiQ2AiQgACABKAIoNgIoIAAgASgCLDYCLCAAIAEoAjA2AjAgACABKAI0NgI0IAAgASgCODYCOCAAIAEoAjw2AjwgAEFAayEAIAFBQGshAQwBCwsDQCAAIAJIBEAgACABKAIANgIAIABBBGohACABQQRqIQEMAQsLBSADQQRrIQIDQCAAIAJIBEAgACABLAAAOgAAIAAgASwAAToAASAAIAEsAAI6AAIgACABLAADOgADIABBBGohACABQQRqIQEMAQsLCwNAIAAgA0gEQCAAIAEsAAA6AAAgAEEBaiEAIAFBAWohAQwBCwsgBAsSACAAQbT4ATYCACAAQQRqED4LKgAgACgCEBBbBEBBACEABSAAQQRqIgAsAAtBAEgEQCAAKAIAIQALCyAACxIAIAAgARDpECAAQcD4ATYCAAsQACAALQABIAAtAABBCHRyCyoBAX8jBCEBIwRBEGokBCABIAA2AgBBBBA/IgAgASgCADYCACABJAQgAAslAQF/IAEoAgAhAiAAQgA3AgAgAEEANgIIIAAgAUEEaiACEJMBCwgAQQwQA0EACwcAIABBBGoLJwEBfyAAKAIIIgEEQCAAQQA2AgQgAEEANgIAIAEQQSAAQQA2AggLCw0AIAAoAgggAUECdGoLFgAgACABKgIAIAKUIAEqAgQgApQQMgsp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QCADIAMoApACQQFyNgKQAgtBAQsLBgAgAKiyCw0AIABB1ABqIAEQmgILFAAgASACIAAgACACXhsgACABXRsLEQBBACAAQQRqIAAoAggQWxsLIQAgAEP//39/Q///f38QMiAAQQhqQ///f/9D//9//xAyCxAAIAAoAggiAARAIAAQQQsLFwAgAEEANgIEIABBADYCACAAQQA2AggLIQEBfyMEIQIjBEEQaiQEIAIgATYCACAAIAIQ2gIgAiQEC5gCAQR/IAAgAmohBCABQf8BcSEDIAJBwwBOBEADQCAAQQNxBEAgACADOgAAIABBAWohAAwBCwsgA0EIdCADciADQRB0ciADQRh0ciEBIARBfHEiBUFAaiEGA0AgACAGTARAIAAgATYCACAAIAE2AgQgACABNgIIIAAgATYCDCAAIAE2AhAgACABNgIUIAAgATYCGCAAIAE2AhwgACABNgIgIAAgATYCJCAAIAE2AiggACABNgIsIAAgATYCMCAAIAE2AjQgACABNgI4IAAgATYCPCAAQUBrIQAMAQsLA0AgACAFSARAIAAgATYCACAAQQRqIQAMAQsLCwNAIAAgBEgEQCAAIAM6AAAgAEEBaiEADAELCyAEIAJrC58BAQN/EDwiAiwAf0UEQEGYqQQoAgAhBCABQwAAAABdIQMgAEMAAAAAXARAIAIqArQDQwAAAAAgASADGyACKgIMIAIqAliTIACSkpIhACACKgK4AyEBBSADBEAgBEHUKmoqAgAhAQsgAioC0AEhAAsgAiABIACSOALIASACIAIoAtQBNgLMASACIAIpAvQBNwLoASACIAIoAvwBNgLwAQsLqwECA38BfSMEIQUjBEEQaiQEQZipBCgCACEGIAMEQCABIAIQkAEhAgsgBSEDIAZBsDFqKAIAIQcgBkG0MWoqAgAhCCABIAJGBEAgAEMAAAAAIAgQMgUgAyAHIAhD//9/fyAEIAEgAkEAEJoDIAMqAgAiBEMAAAAAXgRAIAMgBCAIIAcqAgCVkyIEOAIACyADIARDMzNzP5KosjgCACAAIAMpAwA3AgALIAUkBAsnAEGYqQQoAgBBNGogAEECdGooAgAiAEF/SgR/IAAgARD2AgVBAAsLNQECfyMEIQMjBEEQaiQEAn8gACgCACEEIAMgARB3IAQLIAMoAgAgAigCABALIAMQMSADJAQLEgAgACABKAIAIgA2AgAgABAQCxMAIAAoAgggACgCAEF/akECdGoLJwEBfyMEIQIjBEEQaiQEIAIgARCpBCAAQbj2ASACEAQ2AgAgAiQECwkAQQBBABC1AQtSAQJ/IwQhBCMEQRBqJAQgBCADNgIAIAAgASACIAQQpAciAiABQX9qIAJBf0cgAiABSHEbIQEgAAR/IAAgAWpBADoAACABBSACCyEFIAQkBCAFC94BAQJ/QZipBCgCACIBQaA1aiICKAIAIABHBEAgAiAANgIAIAFBpDVqIAAEfyABQf81aiwAAARAIAFB/TVqQQE6AAALIAFBgTZqQQA6AAAgACgCgAYFIAFBgTZqQQA6AABBAAs2AgAgAUH8NWpBADoAACABQfQ1akEANgIACyAABEAgACAAKALwBSIAIABFGyIAKAIIQYCAgCBxBEAgAUG0M2ooAgAEQCABQdgzaigCACIBBEAgACABKALwBUcEQBByCwsLCyAAELAKIAAoAghBgMAAcUUEQCAAEK8KCwsLQQAgA0GAgIAITwRAIARDAAAAAF4EQCAAIAEgAiAEIAUQoAMgACADEIECBSAAQQZBBBCwASAAIAEgAiADEKgGCwsLDQAgACoCCCAAKgIAkwsLACAAIAEQKTYCAAtJAQF/IAAoAgAiAiAAKAIERgRAIAAgACACQQFqEFgQhQIgACgCACECCyAAKAIIIAJBAnRqIAEoAgA2AgAgACAAKAIAQQFqNgIACwsAEGBBwANqEIACCw0AIAAoAgggAUEkbGoLJwEBfyMEIQIjBEEQaiQEIAIgARCpBCAAQeDtASACEAQ2AgAgAiQECyEBAX8jBCECIwRBEGokBCACIAAQzwIgAiABEKkBIAIkBAsOACAAKAIAEBAgACgCAAsIACAAKAIARQsNACABIACTIAKUIACSCyQBAn9BCBA/IQEgACgCBCECIAEgACgCADYCACABIAI2AgQgAQtHAQF/IwQhAyMEQRBqJAQgAyABEPEBIAJB4soCIAMQbiADEDEgAyABQQRqEPEBIAJB5MoCIAMQbiADEDEgACACEIkDIAMkBAtjAQJ/IAAoAiwhAiABKAIEIgMgASgCCCIARwRAIAMgAkoEQCABIAI2AgQgAiEDCyAAIAJKBH8gASACNgIIIAIFIAALIANGBEAgASADNgIACwsgASgCACACSgRAIAEgAjYCAAsLCQAgACABENMLCwYAQSAQAwsHACAAIAFGCxcAIAAoAgBBIHFFBEAgASACIAAQoAcLC0ICAn8CfCMEIQEjBEEQaiQEAnwgACgCAEGE+AEoAgAgAUEEahAGIQQgASABKAIEEF8gBAuqIQIgARDMASABJAQgAgsaACABKAIAEBAgACgCABARIAAgASgCADYCAAsoAQJ/An8jBCEDIwRBEGokBCAAQQJB7P0BQbvTAkEoIAEQAiADCyQECywBAn8QPCIAQYADaiIBEIACIAAgARB+BH8gAEGgBGoFIAEQcAsoAgA2AuwCC+wBAQJ9IAQgBlwEQCACKgIYIgcgBF0gAioCFCIIIAZeckUEQAJAIAggBF4EQCAFIAOTIAggBJOUIAYgBJOVIAOSIQMgCCEECyAHIAZdBEAgByAGkyAFIAOTlCAGIASTlSAFkiEFIAchBgsgAyABsiIHX0UgBSAHX0VyRQRAIAFBAnQgAGoiACAAKgIAIAYgBJMgAioCEJSSOAIADAELIAMgAUEBarIiCGBFIAUgCGBFcgRAIAFBAnQgAGoiACAAKgIAQwAAgD8gAyAHkyAFIAeTkkMAAAA/lJMgBiAEkyACKgIQlJSSOAIACwsLCwscAEGYqQQoAgBBjAZqIABBAnRqKgIAQwAAAABeCw0AIAAqAgwgACoCBJMLhgEBA38jBCEGIwRBgAJqJAQgBiEFIARBgMAEcUUgAiADSnEEQCAFIAFBGHRBGHUgAiADayIBQYACIAFBgAJJGxBqGiABQf8BSwRAAn8gAiADayEHA0AgACAFQYACEIYBIAFBgH5qIgFB/wFLDQALIAcLQf8BcSEBCyAAIAUgARCGAQsgBiQECzQBAX8jBCECIwRBEGokBCACIAA2AgAgAigCACABKAIANgIAIAIgAigCAEEIajYCACACJAQLYQEBfyABQX8gARsiAiAASwRAA0ACQAJ/AkACQCAALAAAIgEEQCABQSNGBEAMAgUMAwsACwwDCyAAQQFqIgEsAABBI0YEfwwDBSABCwwBCyAAQQFqCyIAIAJJDQELCwsgAAvJCQIKfwF9IwQhDCMEQRBqJAQgDCENQZipBCgCACEFEDwhCCAEQYACcQRAIAIEQCACQQA6AAALIAMEQCADQQA6AAALIAEgBUG0M2ooAgBGBEAQcgtBACEEBSAFQZgzaiIJKAIAIQogBCAEQQJyIARBHnEbIgZBIHFBAEciCwRAIAVBnDNqKAIAIAhGBEAgCSAINgIACwsgACABEM0CIQcgBUHUOGoiDiwAACEEAn8CQCAHBH8gBAR/IAEgBUHsOGooAgBGBEBBASEEIAVB2DhqKAIAQQJxQQBHIQcMAwVBASEEQQEhBwwDCwAFQQEhB0EACwVBACEHDAELDAELIARB/wFxRSAGQYAgcUVyBH9BAAUgBUHYOGooAgBBBHEEf0EABUEgEIsCBH8gARCIAyAFQawzaioCAEMXt9E4kiIPIA8gBSoCGJNDCtcjPEMzMzM/ELcDBH8gCBB0QQEhB0EBBUEBIQdBAAsFQQALCwsLIQQgCwRAIAVBnDNqKAIAIAhGBEAgCSAKNgIACwsCfwJAIAZBwABxRSAHQQFzcgR/IAcEfwwCBUEACwUgByABIAVBqDNqKAIAIgdGIAdFcnENAUEACwwBCwJAAkAgBkGACHEEQCAFLACIAgRADAIFIAUsAIkCBEAMAwUgBSwAigINAwsLCyAGQQJxBEAgBSwA4AcEQCABIAgQtQEgBkGAwABxRQRAIAEgCBCzAgsgCBB0CwsCQAJAIAZBBHEEQCAFLADgBw0BCyAGQRBxBEAgBSwA5QcNAQsMAQsgBkGAEHEEQBByBSABIAgQtQELIAgQdEEBIQQLIAZBCHEEQCAFLADqBwRAAkACQCAGQQFxRQ0AIAVBiAhqKgIAIAUqAogBYEUNAAwBC0EBIQQLEHILCyAGQQFxRQ0AIAVBtDNqKAIAIAFHDQAgBSoC9AdDAAAAAF5FDQBBAEEBELYDIARyRQRAQQAhBEEBDAMLDAELIARFBEBBACEEQQEMAgsLIAVB/jVqQQE6AABBASEEQQELIQcgASAFQaQ1aigCAEYEQCAFQf41aiwAAEUEQCAFQf81aiwAAARAAkAgBUG0M2ooAgAiCUUgASAJRnJFBEAgCCgCUCAJRw0BC0EBIQcLCwsLIAEgBUGsNWoiCigCAEYEQAJAIAEgBUGoNWoiCygCAEYhCUEAIAZBAXRBAnFBAXIQmQIgCXIiCUUEQCAFQbQzaigCACABRw0BCyALIAE2AgAgASAIELUBIAkgBkGAwABxRXEEQCABIAgQswILIAVBzDNqQQ82AgAgBCAJciEECwsgASAFQbQzaigCAEYEQAJAAkACQAJAIAVB4DNqKAIAQQFrDgICAAELIAEgCigCAEYEQEEAIQAMAwsQckEAIQAMAgtBACEADAELIAVBxDNqLAAABEAgDSAFQfABaiAAEEAgBUHQM2ogDSkDADcCAAsgBSwA+AEEf0EBBSAGQQJxRSAHQQFzckUEQAJAIAZBAXEEQCAFQYgIaioCACAFKgKIAWANAQsgBCAOLAAARXIhBAsLEHJBAAshACAGQYDAAHFFBEAgBUH+NWpBAToAAAsLBUEAIQALIAIEQCACIAdBAXE6AAALIAMEQCADIABBAXE6AAALCyAMJAQgBAvsAQECfyMEIQYjBEEQaiQEIAYhBSAAQwAAAABDAAAAABAyIAFBAXEEQCAFQRIgAhClAUERIAIQpQGTQRQgAhClAUETIAIQpQGTEDIgACAFELYCCyABQQJxBEAgBUEFIAIQpQFBBCACEKUBk0EHIAIQpQFBBiACEKUBkxAyIAAgBRC2AgsgAUEEcQRAIAVBCSACEKUBQQggAhClAZNBCyACEKUBQQogAhClAZMQMiAAIAUQtgILIANDAAAAAFwEQEEOEIwBBEAgACADEKgDCwsgBEMAAAAAXARAQQ8QjAEEQCAAIAQQqAMLCyAGJAQLcwEDfyMEIQMjBEEQaiQEIAJBb0sEQBAKCyACQQtJBEAgACACOgALBSAAIAJBEGpBcHEiBBA/IgU2AgAgACAEQYCAgIB4cjYCCCAAIAI2AgQgBSEACyAAIAEgAhD3AiADQQA6AAAgACACaiADEJYBIAMkBAsIACAAQQEQXwsuACAAQZipBCgCAEHwAWogABsiACoCAEMAAHrIYAR/IAAqAgRDAAB6yGAFQQALCwwAIAAgASwAADoAAAu1AwILfwF9IwQhBCMEQUBrJAQgBEE4aiEFIARBMGohByAEQRBqIQMgBCEIIARBKGohCSAEQSBqIQogAUGYqQQoAgAiBkGkNWooAgBGBEAgAkEEcUUgBkH+NWosAABBAEdxRQRAIAZBlDNqKAIAIgEsAMQCRQRAIAJBCHEEfUMAAAAABSAGQcwqaioCAAshDiADIAApAgA3AgAgAyAAKQIINwIIIAMgAUHMA2oiABC1AiACQQFxBEAgBUMAAIBAQwAAgEAQMiADIAUQ0AIgACADEI0CIgYEQCADQQhqIQAFAn8gASgC9AQhDCAEIAMpAwA3AwggCCADQQhqIgApAwA3AwAgByAEKQIINwIAIAUgCCkCADcCACAMCyAHIAVBABCiAwsCfyABKAL0BCENIAdDAACAP0MAAIA/EDIgBSADIAcQNSAKQwAAgD9DAACAPxAyIAkgACAKEEAgDQsgBSAJQSxDAACAPxBCIA5BD0MAAABAEKQBIAZFBEAgASgC9AQQ9QMLCyACQQJxBEAgASgC9AQgAyADQQhqQSxDAACAPxBCIA5Bf0MAAIA/EKQBCwsLCyAEJAQLKAECfwJ/IwQhAyMEQRBqJAQgAEEBQdj9AUGm1gJBAyABEAIgAwskBAsUACAAIAEqAgCosiABKgIEqLIQMgsoAQJ/An8jBCEDIwRBEGokBCAAQQFB3PgBQbjTAkEaIAEQAiADCyQECx4AIAAgAEE4aiABEOoIIABB4BxqQQE6AAAgABCUAwsNACAAKAIIIAFBGGxqCwsAQQQQA0MAAAAACwgAIABBAhBfCz8CAX8BfCMEIQIjBEEQaiQEIAEoAgBBlPcBKAIAIAJBBGoQBiEDIAIgAigCBBBfIAAgA6sQTCACEMwBIAIkBAshAQF/IwQhAiMEQRBqJAQgAiABNgIAIAAgAhCECSACJAQLEAAgACABNgIAIAAgAjYCBAtRAQF9IAAqAhQgApIiByAEkiECIAAgACoCECABkiIBIAOSIgMgBZIiBDgCECAAIAIgBpIiBTgCFCAAQQQgBKggBaggAaggB6ggA6ggAqgQ6gMLMAECfyAAKAIEIgEgACgCCEgEfyAAKAIAIQIgACABQQFqNgIEIAEgAmosAAAFQQALC6sBAQV/IwQhByMEQSBqJAQgB0EYaiEIIAdBEGohCSAHQQhqIQogByELIANBgICACE8EQCAAKAIkQQFxBEAgCUMAAAA/QwAAAD8QMiAIIAEgCRA1IAtDAAAAP0MAAAA/EDIFIAlDAAAAP0MAAAA/EDIgCCABIAkQNSALQ0jh+j5DSOH6PhAyCyAKIAIgCxBAIAAgCCAKIAQgBRCgAyAAIANBASAGEI8CCyAHJAQLmQICAn8BfUGYqQQoAgAhAiABBH0CfSACQdgoaiAAQQJ0aioCACIEQwAAAABdIgMgAUECRnEEQEMAAIA/QwAAAAAgAkGsKWogAEECdGoqAgBDAAAAAGAbDAELIANFBEACQAJAAkACQAJAIAFBAWsOBQAEAQIDBAtDAACAP0MAAAAAIARDAAAAAFsbDAULIAQgBCACKgIYkyACKgKIAUPNzEw/lCACKgKMAUPNzEw/lBC3A7IMBAsgBCAEIAIqAhiTIAIqAogBIAIqAowBQwAAAECUELcDsgwDCyAEIAQgAioCGJMgAioCiAFDzcxMP5QgAioCjAFDmpmZPpQQtwOyDAILC0MAAAAACwUgAkGMBmogAEECdGoqAgALCzABAn0gACABKgIAIgMgAioCACIEIAMgBGAbIAEqAgQiAyACKgIEIgQgAyAEYBsQMgsLAEECEANDAAAAAAsnAQJ/IwQhAyMEQRBqJAQgAyACNgIAIAAgASADEOYLIQQgAyQEIAQLjQIDBH8BfgN9IwQhAyMEQRBqJAQgAyEEQZipBCgCACIFQZQzaigCACICLAB/RQRAIAIqAuwBIAAqAgQQOSEHIAIqAvABIAEQOSEBIAQgAioCyAEgACoCAJIgAioCzAEQMiACIAQpAwAiBjcC0AEgAiACKgIMIAIqArADkiACKgK4A5KosjgCyAEgAiAHIAIqAswBkiAFQdgqaioCACIIkqiyIgk4AswBIAIgAioC4AEgBqe+EDk4AuABIAIgAioC5AEgCSAIkxA5OALkASACIAc4AvgBIAIgATgC/AEgAkMAAAAAOALwASACQwAAAAA4AuwBIAIoAuACRQRAQwAAAABDAACAvxBrCwsgAyQECxAAIABB0PcBNgIAIAAQ6QcLKAECfwJ/IwQhAyMEQRBqJAQgAEECQdz9AUHayQJBHCABEAIgAwskBAvSAQIIfwF9IwQhBSMEQSBqJAQgBUEYaiEGIAVBEGohByAFQQhqIQggBSEJQZipBCgCACILQZQzaigCACIKKAL0BCAAIAEgAiAEQQ8QdSADIAtB0CpqKgIAIg1DAAAAAF5xBEACfyAKKAL0BCEMIAdDAACAP0MAAIA/EDIgBiAAIAcQNSAJQwAAgD9DAACAPxAyIAggASAJEDUgDAsgBiAIQQZDAACAPxBCIARBDyANEKQBIAooAvQEIAAgAUEFQwAAgD8QQiAEQQ8gDRCkAQsgBSQEC04BAX8gAiADEJABIgMgAkcEQEGYqQQoAgAiB0GUM2ooAgAoAvQEIAAgASACIAMgBCAFIAYQ0gMgB0HM2ABqLAAABEAgACACIAMQ3QELCwuDAQECf0GYqQQoAgAiBEGUM2ooAgAhBSADBEAgASACEJABIQIFIAJFBEAgARBcIAFqIQILCyABIAJHBEAgBSgC9AQgBEGwMWooAgAgBEG0MWoqAgAgAEEAQwAAgD8QQiABIAJDAAAAAEEAEP0BIARBzNgAaiwAAARAIAAgASACEN0BCwsLqAgDFH8BfgZ9IwQhBCMEQYABaiQEIARB8ABqIQcgBEHoAGohEiAEQeAAaiEMIARB2ABqIQ0gBEEgaiEIIARByABqIQ8gBEFAayEJIARBMGohCiAEQThqIRMgBEEQaiEFIARB+QBqIRAgBEH4AGohFCAEIRUgBEEoaiEWEDwiBiwAfwR/QQAFQZipBCgCACELIAJBAnFBAEciEQRAIAYoArwDBEAQ6gELCyAGIAAQXiEOIAwgAEEAQQFDAACAvxBsIA0gAyoCACIZIAwqAgAgGUMAAAAAXBsgAyoCBCIZIAwqAgQgGUMAAAAAXBsQMiAIIAYpAsgBIhg3AwAgCCAGKgLwASAYQiCIp76SOAIEIAcgCCANEDUgDyAIIAcQQyAPQwAAAAAQfCAGKgI8IRkgEQRAIAkQ2AYFIAoQyQIgCiEJCyAMKgIAIAkqAgAiHCAGKgIMkiAZkyAGKgLIAZMQOSEaIBMgAyoCACIbIBogAkGAwABxRSIJIBtDAAAAAFxxGyADKgIEIhogDSoCBCAaQwAAAABcGxAyIAcgCCATEDUgBSAIIAcQQyADKgIAQwAAAABcIAlxBEAgBUEIaiIDKgIAIRkgAyEJBSAFIBkgBSoCCJIiGTgCCCAFQQhqIgkhAwsgC0HYKmoqAgAiG0MAAAA/lKiyIRogBSAFKgIAIAtB1CpqKgIAIh1DAAAAP5SosiIekzgCACAFIAUqAgQgGpM4AgQgCSAdIB6TIBmSOAIAIAUgGyAakyAFKgIMkjgCDCAFIA5BABBhBH8gBSAOIBAgFCACQQF0QYAQcSACQQl2IgpBBHFyIApBCHFyIAJBCHEiCEEFdHIiCiAKQRJyIAJBBHFFGxCRASIKQQFzIBAsAABFcUUEQCALQf81aiwAAEUEQCALQaA1aigCACAGRgRAIAtB9DVqKAIAIg0gBigCtAJGBEAgC0H+NWpBAToAACAOIA0QigMLCwsLIAoEQCAOEMsBCyABIAhBAEciCEEBc3EgECwAAEUiAUEBc3IEQEEYQRkgARtBGiABIBQsAABFchtDAACAPxBCIQEgBCAFKQMANwMIIBUgAykDADcDACASIAQpAgg3AgAgByAVKQIANwIAIBIgByABQQBDAAAAABCsASAFIA5BChCXAQsgEQRAIAYoArwDBEAQ6QIgFhDJAiAJIAkqAgAgFioCACAck5M4AgALCyAIBEBBACALQcArahCCAiAHQwAAAABDAAAAABAyIA8gAyAAQQAgDCAHQQAQrQFBARCiAgUgB0MAAAAAQwAAAAAQMiAPIAMgAEEAIAwgB0EAEK0BCyAKBEAgAkEBcUUgBigCCEGAgIAgcUEAR3EEQCAGKALoAkEgcUUEQBDNBgsLCyAKBSARBEAgBigCvAMEQBDpAgsLQQALCyEXIAQkBCAXC24BAn8gACgCCCAAKAIAQX9qQQV0aiIDIAEgAygCAGo2AgAgAEEYaiIEKAIAIQMgBCACIANqEPcDIAAgACgCICADQRRsajYCNCAAQQxqIgMoAgAhAiADIAEgAmoQwAEgACAAKAIUIAJBAXRqNgI4C+kCAQh/IwQhBiMEQSBqJARBmKkEKAIAIQQQPCIAQZgDaiIHEH4aIAZBCGoiAyAHEPIEIgEgAEHgAWoiBRBDIAYiAiADIANBCGoQpgEgAyACKQMANwIIIAAgASkCADcCyAEgAiABQQhqIAUQpgEgBSACKQMANwIAIAAgASgCEDYCsAMgACABKAIUNgK0AyAAIAEpAhg3AugBIAAgASgCICIFNgLwASAAIAAqAswBQwA8HMaSOAKAAiABLAAtBEAgACAAKgL8ASAFvhA5OALwASACIAMQzwIgAiABKgIgEKkBIANBAEEAEGEaCwJAAkAgBEG0M2ooAgAiAiABKAIoRg0AIAJFIAIgBEG8M2ooAgBHcg0AIAAgAjYCjAIMAQsgASwALEUEQCAEQcczaiwAAARAIAAgBEG4M2ooAgA2AowCCwsLIAAgAykCADcClAIgACADKQIINwKcAiAHIAcoAgBBf2o2AgAgBiQECwgAQRoQA0EAC2IBAn8gASAASCAAIAEgAmpIcQRAAn8gACEEIAEgAmohASAAIAJqIQADQCACQQBKBEAgAkEBayECIABBAWsiACABQQFrIgEsAAA6AAAMAQsLIAQLIQAFIAAgASACEEYaCyAACxAAIABB9PcBNgIAIAAQ5gcL6gEBA38gAEGYqQQoAgAiAkG0M2oiBCgCAEchAyACQcQzaiADOgAAIAMEQCACQcAzakMAAAAAOAIAIAJBxjNqQQA6AAAgAARAIAJB5DNqIAA2AgAgAkHoM2pDAAAAADgCAAsLIAQgADYCACACQcwzakEANgIAIAJBxTNqQQA6AAAgAkHYM2ogATYCACAABEAgAkG8M2ogADYCACACQeAzaiAAIAJBqDVqKAIARgR/QQIFIAAgAkG0NWooAgBGBH9BAgUgACACQbg1aigCAEYEf0ECBUECQQEgACACQbw1aigCAEYbCwsLNgIACwsoAQJ/An8jBCEDIwRBEGokBCAAQQJB+P0BQbvTAkEnIAEQAiADCyQEC6MBAQJ/QZipBCgCACIBQZQzaigCACEAQwAAAAAQzwYgACAAKAKEAkF/ajYChAIgAUGkNmooAgBFBEAgACABQaA1aigCAEYEQBCCBARAIAFB/DVqLAAABEAgACgCiAJBASAAKAKEAnRxBEAgAEHAA2oQcCgCACABQfQ1aigCABCKAxCbAgsLCwsLIAAgACgCiAJBASAAKAKEAnRBf2pxNgKIAhB5CwwAIAAgASAAIAFIGwv6BQMOfwF+BH0jBCEEIwRB4ABqJAQgBEHQAGohBSAEQSBqIQcgBEHIAGohBiAEQRBqIQIgBEE4aiEIIARBKGohCiAEQTBqIQ0gBCEDEDwiCSwAf0UEQEGYqQQoAgAhDiABRQRAIAAQXCAAaiEBCyAHIAlByAFqIg8qAgAgCSoCzAEgCSoC8AGSEDIgCSoC8AIiEUMAAAAAYCIMIAEiCyAAa0HRD0hyBEAgBiAAIAFBACAMBH0gDyAREIwQBUMAAAAACyIREGwgBSAHIAYQNSACIAcgBRBDIAZDAAAAABCpASACQQBBABBhBEAgAyACKQMANwMAIAUgAykCADcCACAFIAAgASAREMUICwUQrgMhEiAJKgLQAyETIAkqAtgDIREgBkMAAAAAQwAAAAAQMiAHKgIEIhQgEV8EQCACIAcpAwAiEDcDACAQQiCIp74hESAOQczYAGosAABFBEAgEyAUkyASlagiDEEASgRAIAIgEiABIABLBH1BACEDA0AgA0EBaiIDIAxIIABBCiALIABrEOkBIgAgASAAG0EBaiIAIAFJcQ0ACyADsgVDAAAAAAuUIBGSOAIECwsgACABSQRAIApD//9/fyASEDIgBSACIAoQNSAIIAIgBRBDA0AgCEEAEK0FRQRAIAogACAAQQogCyAAaxDpASIDIAEgAxsiA0EAQwAAgL8QbCAGIAYqAgAgCioCABA5OAIAIAQgAikDADcDCCAFIAQpAgg3AgAgBSAAIANBABCuASAIIBIgCCoCBJI4AgQgCCASIAgqAgySOAIMIAIgEiACKgIEkjgCBCADQQFqIgAgAUkNAQsLIAIgEiAAIAFJBH1BACEDA0AgA0EBaiEDIABBCiALIABrEOkBIgAgASAAG0EBaiIAIAFJDQALIAOyBUMAAAAAC5QgAioCBJI4AgQLIA0gAiAHEEAgBiANKgIEIAYqAgSSOAIECyACIAcgBhA1IAUgByACEEMgBkMAAAAAEKkBIAVBAEEAEGEaCwsgBCQECwwAIAEgACAAIAFIGwuiAgEDf0G0jQMoAgBFBEADQCADIQRBACEFA0BBACAEQQFxa0GghuLtfnEgBEEBdnMhBCAFQQFqIgVBCEcNAAsgA0ECdEGwjQNqIAQ2AgAgA0EBaiIDQYACRw0ACwsgAkF/cyECIAFBAEoEQANAIABBAWohAyAALQAAIAJB/wFxc0ECdEGwjQNqKAIAIAJBCHZzIQIgAUF/aiIBBEAgAyEADAELCwUgACwAACIDBEAgAiEBA38gA0H/AXFBI0YgAEEBaiIFLAAAIgRBI0ZxBEBBIyEEIAIgASAALAACQSNGGyEBCyABQf8BcSADQf8BcXNBAnRBsI0DaigCACABQQh2cyEBIARB/wFxBH8gBCEDIAUhAAwBBSABCwshAgsLIAJBf3MLggICBH8BfSMEIQIjBEEQaiQEQZipBCgCACEDEDwiAEGYA2oiASABKAIAQQFqEOgGIAEQ8gQiASAAKQLIATcCACABIAApAuABNwIIIAEgACgCsAM2AhAgASAAKAK0AzYCFCABIAApAugBNwIYIAEgACgC8AE2AiAgASAAKAKAAjYCJCABIANBvDNqKAIANgIoIAEgA0HHM2osAAA6ACwgAUEBOgAtIAAgACoCyAEgACoCDJMgACoCuAOTIgQ4ArQDIAAgBDgCsAMgACAAKQLIATcC4AEgAkMAAAAAQwAAAAAQMiAAIAIpAwA3AugBIAAgACoCzAFDADwcxpI4AoACIAIkBAsrAQJ/IwQhASMEQRBqJAQgARBgIgIgABC1BTYCACACQcADaiABEHggASQEC0gCAn8CfSMEIQAjBEEQaiQEIAAhARBgKgLsAiICQwAAAABdBEAgARDwAkMAAIA/IAIgASoCAJIQOSECCyACqLIhAyAAJAQgAwstACAAKAIIQQFxBH1DAAAAAAUgABDlAUGYqQQoAgBByCpqKgIAQwAAAECUkgsLHwAgACgCBCABSARAIAAgACABEFgQ4AQLIAAgATYCAAtFAgJ/AX4gACABNwNwIAAgACgCCCICIAAoAgQiA2usIgQ3A3ggAUIAUiAEIAFVcQRAIAAgAyABp2o2AmgFIAAgAjYCaAsLFwAgAEHQ9wE2AgAgACABNgIIIAAQ6AcLIgAgAC0AAyAALQAAQRh0IAAtAAFBEHRyIAAtAAJBCHRycgsuAQJ/IAFBAEoEQANAIAAQowFB/wFxIAJBCHRyIQIgA0EBaiIDIAFHDQALCyACC2wBA38jBCEHIwRBEGokBCAHQQhqIQUgByEGIANBgICACE8EQCAGQwAAAD9DAAAAPxAyIAUgASAGEDUgACAFEGMgBkMAAAA/QwAAAD8QMiAFIAIgBhA1IAAgBRBjIAAgA0EAIAQQjwILIAckBAujAQEFfyMEIQcjBEEQaiQEIAchCCAAQdQAaiEFIAQgA0ggAkMAAAAAW3IEQCAFIAEQmgIFIAUgBSgCACAEQQEgA2tqahDoAgNAIAggASoCACAAKAIoIgZBJGogA0EMbyIJQQN0aioCACAClJIgASoCBCAGIAlBA3RqKgIoIAKUkhAyIAUgCBCaAiADQQFqIQYgAyAESARAIAYhAwwBCwsLIAckBAtUAQF9IAAgASoCACIEIAIqAgAgBJMgA5SSIAEqAgQiBCACKgIEIASTIAOUkiABKgIIIgQgAioCCCAEkyADlJIgASoCDCIEIAIqAgwgBJMgA5SSEDYLFgBBmKkEKAIAQZQzaigCABCRChDVAQv8NQEMfyMEIQojBEEQaiQEIABB9QFJBH9BnKoEKAIAIgJBECAAQQtqQXhxIABBC0kbIgNBA3YiAHYiAUEDcQRAIAFBAXFBAXMgAGoiAUEDdEHEqgRqIgAoAggiBEEIaiIDKAIAIgUgAEYEQEGcqgQgAkEBIAF0QX9zcTYCAAUgBSAANgIMIAAgBTYCCAsgBCABQQN0IgBBA3I2AgQgACAEaiIAIAAoAgRBAXI2AgQgCiQEIAMPCyADQaSqBCgCACIJSwR/IAEEQEECIAB0IgRBACAEa3IgASAAdHEiAEEAIABrcUF/aiIAQQx2QRBxIgEgACABdiIAQQV2QQhxIgFyIAAgAXYiAEECdkEEcSIBciAAIAF2IgBBAXZBAnEiAXIgACABdiIAQQF2QQFxIgFyIAAgAXZqIgRBA3RBxKoEaiIAKAIIIgFBCGoiBigCACIFIABGBEBBnKoEIAJBASAEdEF/c3EiADYCAAUgBSAANgIMIAAgBTYCCCACIQALIAEgA0EDcjYCBCABIANqIgUgBEEDdCICIANrIgRBAXI2AgQgASACaiAENgIAIAkEQEGwqgQoAgAhAiAJQQN2IgNBA3RBxKoEaiEBIABBASADdCIDcQR/IAFBCGohByABKAIIBUGcqgQgACADcjYCACABQQhqIQcgAQshACAHIAI2AgAgACACNgIMIAIgADYCCCACIAE2AgwLQaSqBCAENgIAQbCqBCAFNgIAIAokBCAGDwtBoKoEKAIAIgsEfyALQQAgC2txQX9qIgBBDHZBEHEiASAAIAF2IgBBBXZBCHEiAXIgACABdiIAQQJ2QQRxIgFyIAAgAXYiAEEBdkECcSIBciAAIAF2IgBBAXZBAXEiAXIgACABdmpBAnRBzKwEaigCACIAKAIEQXhxIANrIQYgACEFA0ACQCAAKAIQIgEEQCABIQAFIAAoAhQiAEUNAQsgACgCBEF4cSADayIEIAZJIQEgBCAGIAEbIQYgACAFIAEbIQUMAQsLIAMgBWoiDCAFSwR/IAUoAhghCCAFKAIMIgAgBUYEQAJAIAVBFGoiASgCACIARQRAIAVBEGoiASgCACIARQRAQQAhAAwCCwsDQAJAIABBFGoiBygCACIERQRAIABBEGoiBygCACIERQ0BCyAHIQEgBCEADAELCyABQQA2AgALBSAFKAIIIgEgADYCDCAAIAE2AggLIAgEQAJAIAUoAhwiAUECdEHMrARqIgQoAgAgBUYEQCAEIAA2AgAgAEUEQEGgqgQgC0EBIAF0QX9zcTYCAAwCCwUgCEEQaiAIQRRqIAgoAhAgBUYbIAA2AgAgAEUNAQsgACAINgIYIAUoAhAiAQRAIAAgATYCECABIAA2AhgLIAUoAhQiAQRAIAAgATYCFCABIAA2AhgLCwsgBkEQSQRAIAUgAyAGaiIAQQNyNgIEIAAgBWoiACAAKAIEQQFyNgIEBSAFIANBA3I2AgQgDCAGQQFyNgIEIAYgDGogBjYCACAJBEBBsKoEKAIAIQEgCUEDdiIEQQN0QcSqBGohACACQQEgBHQiBHEEfyAAQQhqIQMgACgCCAVBnKoEIAIgBHI2AgAgAEEIaiEDIAALIQIgAyABNgIAIAIgATYCDCABIAI2AgggASAANgIMC0GkqgQgBjYCAEGwqgQgDDYCAAsgCiQEIAVBCGoPBSADCwUgAwsFIAMLBSAAQb9/SwR/QX8FAn8gAEELaiIAQXhxIQhBoKoEKAIAIgEEf0EAIAhrIQICQAJAIABBCHYiAAR/IAhB////B0sEf0EfBSAAIABBgP4/akEQdkEIcSIEdCIDQYDgH2pBEHZBBHEhACAIQQ4gAyAAdCIDQYCAD2pBEHZBAnEiByAAIARycmsgAyAHdEEPdmoiAEEHanZBAXEgAEEBdHILBUEACyIGQQJ0QcysBGooAgAiAARAIAhBAEEZIAZBAXZrIAZBH0YbdCEEQQAhAwNAIAAoAgRBeHEgCGsiByACSQRAIAcEfyAAIQMgBwVBACEDIAAhAgwECyECCyAFIAAoAhQiBSAFRSAFIABBEGogBEEfdkECdGooAgAiB0ZyGyEAIARBAXQhBCAHBEAgACEFIAchAAwBCwsFQQAhAEEAIQMLIAAgA3IEfyAAIQQgAwUgCCABQQIgBnQiAEEAIABrcnEiAEUNBBogAEEAIABrcUF/aiIAQQx2QRBxIgQgACAEdiIAQQV2QQhxIgRyIAAgBHYiAEECdkEEcSIEciAAIAR2IgBBAXZBAnEiBHIgACAEdiIAQQF2QQFxIgRyIAAgBHZqQQJ0QcysBGooAgAhBEEACyEAIAQEfyACIQMgBCECDAEFIAAhBCACCyEDDAELIAAhBANAIAIoAgRBeHEgCGsiByADSSEFIAcgAyAFGyEDIAIgBCAFGyEEIAIoAhAiAEUEQCACKAIUIQALIAAEQCAAIQIMAQsLCyAEBH8gA0GkqgQoAgAgCGtJBH8gBCAIaiIHIARLBH8gBCgCGCEJIAQoAgwiACAERgRAAkAgBEEUaiICKAIAIgBFBEAgBEEQaiICKAIAIgBFBEBBACEADAILCwNAAkAgAEEUaiIFKAIAIgZFBEAgAEEQaiIFKAIAIgZFDQELIAUhAiAGIQAMAQsLIAJBADYCAAsFIAQoAggiAiAANgIMIAAgAjYCCAsgCQRAAkAgBCgCHCICQQJ0QcysBGoiBSgCACAERgRAIAUgADYCACAARQRAQaCqBCABQQEgAnRBf3NxIgA2AgAMAgsFIAlBEGogCUEUaiAJKAIQIARGGyAANgIAIABFBEAgASEADAILCyAAIAk2AhggBCgCECICBEAgACACNgIQIAIgADYCGAsgBCgCFCICBEAgACACNgIUIAIgADYCGAsgASEACwUgASEACyADQRBJBEAgBCADIAhqIgBBA3I2AgQgACAEaiIAIAAoAgRBAXI2AgQFAkAgBCAIQQNyNgIEIAcgA0EBcjYCBCADIAdqIAM2AgAgA0EDdiEBIANBgAJJBEAgAUEDdEHEqgRqIQBBnKoEKAIAIgJBASABdCIBcQR/IABBCGohAiAAKAIIBUGcqgQgASACcjYCACAAQQhqIQIgAAshASACIAc2AgAgASAHNgIMIAcgATYCCCAHIAA2AgwMAQsgA0EIdiIBBH8gA0H///8HSwR/QR8FIAEgAUGA/j9qQRB2QQhxIgJ0IgVBgOAfakEQdkEEcSEBIANBDiAFIAF0IgVBgIAPakEQdkECcSIGIAEgAnJyayAFIAZ0QQ92aiIBQQdqdkEBcSABQQF0cgsFQQALIgFBAnRBzKwEaiECIAcgATYCHCAHQQA2AhQgB0EANgIQIABBASABdCIFcUUEQEGgqgQgACAFcjYCACACIAc2AgAgByACNgIYIAcgBzYCDCAHIAc2AggMAQsgAigCACIAKAIEQXhxIANGBEAgACEBBQJAIANBAEEZIAFBAXZrIAFBH0YbdCECA0AgAEEQaiACQR92QQJ0aiIFKAIAIgEEQCACQQF0IQIgASgCBEF4cSADRg0CIAEhAAwBCwsgBSAHNgIAIAcgADYCGCAHIAc2AgwgByAHNgIIDAILCyABKAIIIgAgBzYCDCABIAc2AgggByAANgIIIAcgATYCDCAHQQA2AhgLCyAKJAQgBEEIag8FIAgLBSAICwUgCAsFIAgLCwsLIQUCQAJAQaSqBCgCACIAIAVPBEBBsKoEKAIAIQEgACAFayICQQ9LBEBBsKoEIAEgBWoiBDYCAEGkqgQgAjYCACAEIAJBAXI2AgQgACABaiACNgIAIAEgBUEDcjYCBAVBpKoEQQA2AgBBsKoEQQA2AgAgASAAQQNyNgIEIAAgAWoiACAAKAIEQQFyNgIECwwBCwJAQaiqBCgCACIBIAVLBEBBqKoEIAEgBWsiAjYCAAwBCyAKIQBB9K0EKAIABH9B/K0EKAIABUH8rQRBgCA2AgBB+K0EQYAgNgIAQYCuBEF/NgIAQYSuBEF/NgIAQYiuBEEANgIAQditBEEANgIAQfStBCAAQXBxQdiq1aoFczYCAEGAIAsiACAFQS9qIgdqIgJBACAAayIGcSIEIAVNBEAMAwtB1K0EKAIAIgAEQEHMrQQoAgAiAyAEaiIIIANNIAggAEtyBEAMBAsLIAVBMGohCAJAAkBB2K0EKAIAQQRxBEBBACECBQJAAkACQEG0qgQoAgAiAEUNAEHcrQQhAwNAAkAgAygCACIJIABNBEAgCSADKAIEaiAASw0BCyADKAIIIgMNAQwCCwsgAiABayAGcSICQf////8HSQRAIAIQwQIhASABIAMoAgAgAygCBGpHDQIgAUF/Rw0FBUEAIQILDAILQQAQwQIiAUF/RgR/QQAFQcytBCgCACIDIAFB+K0EKAIAIgBBf2oiAmpBACAAa3EgAWtBACABIAJxGyAEaiICaiEAIAJB/////wdJIAIgBUtxBH9B1K0EKAIAIgYEQCAAIANNIAAgBktyBEBBACECDAULCyABIAIQwQIiAEYNBSAAIQEMAgVBAAsLIQIMAQsgAUF/RyACQf////8HSXEgCCACS3FFBEAgAUF/RgRAQQAhAgwCBQwECwALQfytBCgCACIAIAcgAmtqQQAgAGtxIgBB/////wdPDQJBACACayEDIAAQwQJBf0YEfyADEMECGkEABSAAIAJqIQIMAwshAgtB2K0EQditBCgCAEEEcjYCAAsgBEH/////B0kEQCAEEMECIQFBABDBAiIAIAFrIgMgBUEoakshBCADIAIgBBshAiAEQQFzIAFBf0ZyIAFBf0cgAEF/R3EgASAASXFBAXNyRQ0BCwwBC0HMrQRBzK0EKAIAIAJqIgA2AgAgAEHQrQQoAgBLBEBB0K0EIAA2AgALQbSqBCgCACIEBEACQEHcrQQhAwJAAkADQCADKAIAIgcgAygCBCIGaiABRg0BIAMoAggiAw0ACwwBCyADIgAoAgxBCHFFBEAgByAETSABIARLcQRAIAAgAiAGajYCBCAEQQAgBEEIaiIAa0EHcUEAIABBB3EbIgFqIQBBqKoEKAIAIAJqIgIgAWshAUG0qgQgADYCAEGoqgQgATYCACAAIAFBAXI2AgQgAiAEakEoNgIEQbiqBEGErgQoAgA2AgAMAwsLCyABQayqBCgCAEkEQEGsqgQgATYCAAsgASACaiEAQdytBCEDAkACQANAIAMoAgAgAEYNASADKAIIIgMNAAsMAQsgAygCDEEIcUUEQCADIAE2AgAgAyADKAIEIAJqNgIEIAFBACABQQhqIgFrQQdxQQAgAUEHcRtqIgkgBWohBiAAQQAgAEEIaiIBa0EHcUEAIAFBB3EbaiICIAlrIAVrIQMgCSAFQQNyNgIEIAIgBEYEQEGoqgRBqKoEKAIAIANqIgA2AgBBtKoEIAY2AgAgBiAAQQFyNgIEBQJAQbCqBCgCACACRgRAQaSqBEGkqgQoAgAgA2oiADYCAEGwqgQgBjYCACAGIABBAXI2AgQgACAGaiAANgIADAELIAIoAgQiC0EDcUEBRgRAIAtBA3YhBCALQYACSQRAIAIoAggiACACKAIMIgFGBEBBnKoEQZyqBCgCAEEBIAR0QX9zcTYCAAUgACABNgIMIAEgADYCCAsFAkAgAigCGCEIIAIoAgwiACACRgRAAkAgAiIEQRBqIgFBBGoiBSgCACIABEAgBSEBBSAEKAIQIgBFBEBBACEADAILCwNAAkAgAEEUaiIHKAIAIgRFBEAgAEEQaiIHKAIAIgRFDQELIAchASAEIQAMAQsLIAFBADYCAAsFIAIoAggiASAANgIMIAAgATYCCAsgCEUNACACKAIcIgFBAnRBzKwEaiIEKAIAIAJGBEACQCAEIAA2AgAgAA0AQaCqBEGgqgQoAgBBASABdEF/c3E2AgAMAgsFIAhBEGogCEEUaiAIKAIQIAJGGyAANgIAIABFDQELIAAgCDYCGCACKAIQIgEEQCAAIAE2AhAgASAANgIYCyACKAIUIgFFDQAgACABNgIUIAEgADYCGAsLIAIgC0F4cSIAaiECIAAgA2ohAwsgAiACKAIEQX5xNgIEIAYgA0EBcjYCBCADIAZqIAM2AgAgA0EDdiEBIANBgAJJBEAgAUEDdEHEqgRqIQBBnKoEKAIAIgJBASABdCIBcQR/IABBCGohAiAAKAIIBUGcqgQgASACcjYCACAAQQhqIQIgAAshASACIAY2AgAgASAGNgIMIAYgATYCCCAGIAA2AgwMAQsgA0EIdiIABH8gA0H///8HSwR/QR8FIAAgAEGA/j9qQRB2QQhxIgF0IgJBgOAfakEQdkEEcSEAIANBDiACIAB0IgJBgIAPakEQdkECcSIEIAAgAXJyayACIAR0QQ92aiIAQQdqdkEBcSAAQQF0cgsFQQALIgFBAnRBzKwEaiEAIAYgATYCHCAGQQA2AhQgBkEANgIQQaCqBCgCACICQQEgAXQiBHFFBEBBoKoEIAIgBHI2AgAgACAGNgIAIAYgADYCGCAGIAY2AgwgBiAGNgIIDAELIAAoAgAiACgCBEF4cSADRgRAIAAhAQUCQCADQQBBGSABQQF2ayABQR9GG3QhAgNAIABBEGogAkEfdkECdGoiBCgCACIBBEAgAkEBdCECIAEoAgRBeHEgA0YNAiABIQAMAQsLIAQgBjYCACAGIAA2AhggBiAGNgIMIAYgBjYCCAwCCwsgASgCCCIAIAY2AgwgASAGNgIIIAYgADYCCCAGIAE2AgwgBkEANgIYCwsgCiQEIAlBCGoPCwtB3K0EIQMDQAJAIAMoAgAiACAETQRAIAAgAygCBGoiByAESw0BCyADKAIIIQMMAQsLQbSqBEEAIAFBCGoiAGtBB3FBACAAQQdxGyIAIAFqIgM2AgBBqKoEIAJBWGoiBiAAayIANgIAIAMgAEEBcjYCBCABIAZqQSg2AgRBuKoEQYSuBCgCADYCACAEQQAgB0FRaiIAQQhqIgNrQQdxQQAgA0EHcRsgAGoiACAAIARBEGpJGyIDQRs2AgQgA0HcrQQpAgA3AgggA0HkrQQpAgA3AhBB3K0EIAE2AgBB4K0EIAI2AgBB6K0EQQA2AgBB5K0EIANBCGo2AgAgA0EYaiEBA0AgAUEEaiIAQQc2AgAgAUEIaiAHSQRAIAAhAQwBCwsgAyAERwRAIAMgAygCBEF+cTYCBCAEIAMgBGsiAEEBcjYCBCADIAA2AgAgAEEDdiEBIABBgAJJBEAgAUEDdEHEqgRqIQBBnKoEKAIAIgJBASABdCIBcQR/IABBCGohAyAAKAIIBUGcqgQgASACcjYCACAAQQhqIQMgAAshASADIAQ2AgAgASAENgIMIAQgATYCCCAEIAA2AgwMAgsgAEEIdiIBBH8gAEH///8HSwR/QR8FIAEgAUGA/j9qQRB2QQhxIgJ0IgNBgOAfakEQdkEEcSEBIABBDiADIAF0IgNBgIAPakEQdkECcSIHIAEgAnJyayADIAd0QQ92aiIBQQdqdkEBcSABQQF0cgsFQQALIgJBAnRBzKwEaiEBIAQgAjYCHCAEQQA2AhQgBEEANgIQQaCqBCgCACIDQQEgAnQiB3FFBEBBoKoEIAMgB3I2AgAgASAENgIAIAQgATYCGCAEIAQ2AgwgBCAENgIIDAILIAEoAgAiASgCBEF4cSAARgRAIAEhAgUCQCAAQQBBGSACQQF2ayACQR9GG3QhAwNAIAFBEGogA0EfdkECdGoiBygCACICBEAgA0EBdCEDIAIoAgRBeHEgAEYNAiACIQEMAQsLIAcgBDYCACAEIAE2AhggBCAENgIMIAQgBDYCCAwDCwsgAigCCCIAIAQ2AgwgAiAENgIIIAQgADYCCCAEIAI2AgwgBEEANgIYCwsFQayqBCgCACIARSABIABJcgRAQayqBCABNgIAC0HcrQQgATYCAEHgrQQgAjYCAEHorQRBADYCAEHAqgRB9K0EKAIANgIAQbyqBEF/NgIAQdCqBEHEqgQ2AgBBzKoEQcSqBDYCAEHYqgRBzKoENgIAQdSqBEHMqgQ2AgBB4KoEQdSqBDYCAEHcqgRB1KoENgIAQeiqBEHcqgQ2AgBB5KoEQdyqBDYCAEHwqgRB5KoENgIAQeyqBEHkqgQ2AgBB+KoEQeyqBDYCAEH0qgRB7KoENgIAQYCrBEH0qgQ2AgBB/KoEQfSqBDYCAEGIqwRB/KoENgIAQYSrBEH8qgQ2AgBBkKsEQYSrBDYCAEGMqwRBhKsENgIAQZirBEGMqwQ2AgBBlKsEQYyrBDYCAEGgqwRBlKsENgIAQZyrBEGUqwQ2AgBBqKsEQZyrBDYCAEGkqwRBnKsENgIAQbCrBEGkqwQ2AgBBrKsEQaSrBDYCAEG4qwRBrKsENgIAQbSrBEGsqwQ2AgBBwKsEQbSrBDYCAEG8qwRBtKsENgIAQcirBEG8qwQ2AgBBxKsEQbyrBDYCAEHQqwRBxKsENgIAQcyrBEHEqwQ2AgBB2KsEQcyrBDYCAEHUqwRBzKsENgIAQeCrBEHUqwQ2AgBB3KsEQdSrBDYCAEHoqwRB3KsENgIAQeSrBEHcqwQ2AgBB8KsEQeSrBDYCAEHsqwRB5KsENgIAQfirBEHsqwQ2AgBB9KsEQeyrBDYCAEGArARB9KsENgIAQfyrBEH0qwQ2AgBBiKwEQfyrBDYCAEGErARB/KsENgIAQZCsBEGErAQ2AgBBjKwEQYSsBDYCAEGYrARBjKwENgIAQZSsBEGMrAQ2AgBBoKwEQZSsBDYCAEGcrARBlKwENgIAQaisBEGcrAQ2AgBBpKwEQZysBDYCAEGwrARBpKwENgIAQaysBEGkrAQ2AgBBuKwEQaysBDYCAEG0rARBrKwENgIAQcCsBEG0rAQ2AgBBvKwEQbSsBDYCAEHIrARBvKwENgIAQcSsBEG8rAQ2AgBBtKoEQQAgAUEIaiIAa0EHcUEAIABBB3EbIgAgAWoiBDYCAEGoqgQgAkFYaiICIABrIgA2AgAgBCAAQQFyNgIEIAEgAmpBKDYCBEG4qgRBhK4EKAIANgIAC0GoqgQoAgAiACAFSwRAQaiqBCAAIAVrIgI2AgAMAgsLQYiqBEEMNgIADAILQbSqBEG0qgQoAgAiASAFaiIANgIAIAAgAkEBcjYCBCABIAVBA3I2AgQLIAokBCABQQhqDwsgCiQEQQALFwAgAEH09wE2AgAgACABNgIIIAAQ5QcLLABBmKkEKAIAIgBBxjNqQQE6AAAgAEGUM2ooAgAiACAAKAKQAkEEcjYCkAILCQAgACgCABAnCygBAn8CfyMEIQMjBEEQaiQEIABBBEHA1AFBicsCQQ0gARACIAMLJAQLMgECfxA8IQEgAEMAAAAAWwRAIAEqAqAEIQALIAFB7AJqIgIgADgCACABQYADaiACEHgLDQAgACgCCCABQQR0agsrAQJ/IwQhASMEQRBqJAQgARBgIgIgABDBETYCACACQcADaiABEHggASQECzUAIAAoAghBgAhxBH0gACoCzAIgABDlAZJBmKkEKAIAQcgqaioCAEMAAABAlJIFQwAAAAALCxQAIAEgAiAAIAAgAkobIAAgAUgbC1EBAXwgACAAoiIAIACiIQFEAAAAAAAA8D8gAESBXgz9///fP6KhIAFEQjoF4VNVpT+ioCAAIAGiIABEaVDu4EKT+T6iRCceD+iHwFa/oKKgtgtLAQJ8IAAgAKIiASAAoiICIAEgAaKiIAFEp0Y7jIfNxj6iRHTnyuL5ACq/oKIgAiABRLL7bokQEYE/okR3rMtUVVXFv6CiIACgoLYLngEBA38CQAJAQZipBCgCACIAQfgyaiIBKAIAQQJODQAgACwAAkUNAAwBCyAAQZQzaigCACICKAK8AwRAEOYGCxDqASACKAIIQYCAgAhxRQRAEOUGCyABIAEoAgBBf2o2AgAgAigCCEGAgIAgcQRAIABBqDRqIgAgACgCAEF/ajYCAAsgAkEAEO0GIAEQfgR/QQAFIAEQcCgCAAsQ/gQLCzUBAX8jBCEDIwRBEGokBCAAKAIAIQAgAyACEDQgASADIABB/wFxQfIGahEBACADEDEgAyQECw4AIAAoAgAgASgCABAmCw4AIAAQ9wEgASAAEIERCzIBAX8jBCEDIwRBEGokBCABKAIAIQEgAyACELIFIAAgASADKAIAEAgQXyADEDEgAyQECzYBAn8jBCEDIwRBEGokBAJ/IAAoAgAhBCADIAEQsgUgBAsgAygCACACKAIAEAsgAxAxIAMkBAsoAQJ/An8jBCEDIwRBEGokBCAAQQJB0P0BQaLWAkEDIAEQAiADCyQECygBAn8CfyMEIQMjBEEQaiQEIABBAUHU+wFBuNMCQRwgARACIAMLJAQLnQICCH8BfSMEIQUjBEEgaiQEQZipBCgCACIEQZQzaigCACEDIAIEfyACBSABQQAQkAELIQYgAARAIAAqAgQiCyADKgKAAkMAAIA/kl4hCCADIAs4AoACCyAEQeDYAGoiAigCACIAIAMoAoQCIgNKBEAgAiADNgIAIAMhAAsgBUEQaiEEIAUhAiADIABrQQJ0IQkgASEAA0AgAEEKIAYgAGsQ6QEiAyAGIAMbIgMgBkYiCiAAIANGcUUEQCADIABrIQcgCCAAIAFHcgRAIAIgCTYCACACQZquBDYCBCACIAc2AgggAiAANgIMQcyLAiACEKYDBSAEIAc2AgAgBCABNgIEQdWLAiAEEKYDCwsgA0EBaiEAIApFDQALIAUkBAuiAQEEfxA8LAB/RQRAQZipBCgCACEIELwBIAAQvQEgAxCwAyABQQxsQYDIAWooAgAhCiADQQBKBEAgCEHcKmohC0EAIQgDQCAJENABQf6dAiABIAIgBCAFIAYgBxDUAyAIciEIQwAAAAAgCyoCABBrEHkQigEgAiAKaiECIAlBAWoiCSADRw0ACwVBACEICxB5IAAgAEEAEJABELkBELEBCyAIC6IBAQR/EDwsAH9FBEBBmKkEKAIAIQgQvAEgABC9ASADELADIAFBDGxBgMgBaigCACEKIANBAEoEQCAIQdwqaiELQQAhCANAIAkQ0AFB/p0CIAEgAiAEIAUgBiAHELYEIAhyIQhDAAAAACALKgIAEGsQeRCKASACIApqIQIgCUEBaiIJIANHDQALBUEAIQgLEHkgACAAQQAQkAEQuQEQsQELIAgLpAEBBH8QPCwAf0UEQEGYqQQoAgAhCRC8ASAAEL0BIAMQsAMgAUEMbEGAyAFqKAIAIQsgA0EASgRAIAlB3CpqIQxBACEJA0AgChDQAUH+nQIgASACIAQgBSAGIAcgCBC/BCAJciEJQwAAAAAgDCoCABBrEHkQigEgAiALaiECIApBAWoiCiADRw0ACwVBACEJCxB5IAAgAEEAEJABELkBELEBCyAJCy8BAX8gACgCCCIBIAAoAgRGBEAgACAAKAIAIgE2AgggACABNgIEBSAAIAE2AgALCxAAIAAoAgwgAUEBdGouAQALlgEBBH8gACABakEEahBKIgNB//8DcSEEIAFBDGohBSADQf//A3EEfwJ/IAIsAAAhBkEAIQEDQAJAIAAgBSABQQR0amoiAy0AACAGRgRAIAMtAAEgAiwAAUYEQCADLQACIAIsAAJGBEAgAy0AAyACLAADRg0DCwsLIAFBAWoiASAESQ0BQQAMAgsLIANBCGoQwwELBUEACwtNAQN/IwQhASMEQRBqJARBmKkEKAIAIQIgASAAKQIANwIAIAEgACkCCDcCCCABIAJBkCpqKgIAIAEqAgyUOAIMIAEQoQMhAyABJAQgAwsXAEGYqQQoAgBBuDFqKgIAIAAqAuwElAsGAEE8EAMLCABBExADQQALIQAgAEEASAR/QQAFIABBmKkEKAIAQYwCamosAABBAEcLC/4BAQN/IAFB/wFxIQQCQAJAAkAgAkEARyIDIABBA3FBAEdxBEAgAUH/AXEhBQNAIAUgAC0AAEYNAiACQX9qIgJBAEciAyAAQQFqIgBBA3FBAEdxDQALCyADRQ0BCyABQf8BcSIBIAAtAABGBEAgAkUNAQwCCyAEQYGChAhsIQMCQAJAIAJBA00NAANAIAAoAgAgA3MiBEGAgYKEeHFBgIGChHhzIARB//37d2pxRQRAASAAQQRqIQAgAkF8aiICQQNLDQEMAgsLDAELIAJFDQELA0AgAC0AACABQf8BcUYNAiACQX9qIgJFDQEgAEEBaiEADAAACwALQQAhAAsgAAtFAQJ/IwQhACMEQRBqJAQQPCIBKAL0BBD1AyAAIAEoAvQEQTxqEP0CEMYCIAEgACkCADcCzAMgASAAKQIINwLUAyAAJAQL5DsDL38BfgV9IwQhDyMEQfABaiQEIA9B2ABqIQQgD0HIAGohCCAPQUBrIQdBmKkEKAIAIQUgD0HoAWoiAyAAEKECIgY2AgAgBkUiEQRAIAVBuDRqKAIABEAgCCAFQeA0aikCACIyNwMABSAIQwAAAABDAAAAABAyIAgpAwAhMgsgByAyNwMAIAQgBykCADcCACADIAAgBCACELQKIgY2AgALIAJBBnIgAiACQYCEMHFBgIQwRhshCiAFQcgyaigCACITIAYoApwERyIMBEAgBiAKNgIIBSAGKAIIIQoLIAVB+DJqIgcQfgR/QQAFIAcQcCgCAAshCSAMBH8gAygCACECIAlBACAKQYCAgChxGwUgAygCACIJIQIgCSgC7AULIRQgAiABQQBHIiA6AIIBIAIoApwEIBNBf2pIIRkgAigCqAEhCyAKQYCAgCBxQQBHIg4EQCAFQZw0aiAFQag0aigCABB6IQkgAygCACIGIQIgGSAGKAKMASAJKAIAR3IgBiAJKAIER3IhGQsgAiALQQBKIhsgGXIiCUEBcToAgAEgCQRAIAJBCEEBEP8ECyAHIAMQeCADKAIAEP4EIAMoAgBBARDtBiAOBEAgBUGcNGogBUGoNGoiBygCABB6IgIgAygCADYCBCAHIAIQ7AYgAygCACACKAIANgKMAQsgGyAKQYCAgAhxIh5FIiZxBEAgAygCAEEANgKABgsgBUG0NGoiJygCACIHBEACQCAHIAMoAgAiAigCrAEiCXFBAEciDQRAIAVB2DRqIgYQnQJDrMUnN14EQCACIAVB0DRqKQIANwK4ASACIAYpAgA3AsABIAIgCUFxcTYCrAFBASENDAILCyACIAVB0DRqIAcQvwMLCyAFQbg0aigCACICBEAgAiADKAIAIgcoArABcQR/IAVB5DRqKgIAQwAAAABeIRIgBUHgNGoqAgBDAAAAAF4FQQALIQYgByAFQeA0aiACEP0EBUEAIQYLIAVBvDRqKAIABEAgAygCACICIAVB6DRqKQIAIjI3AjQgMkIgiKe+QwAAAABcBEAgAhC/ASADKAIAENEBkiEzIAMoAgAiAiAzIAIqAjiSOAI4CwUgDARAIARDAAAAAEMAAAAAEDIgAygCACAEKQMANwI0CwsgBUHANGooAgAiAgRAIAMoAgAgBUHwNGosAABBAEcgAhD7BAsgBUHINGooAgAEQCADKAIAEHQLIAMoAgAiAiwAgAEEQCACQQhBABD/BAsgD0HQAWohFSAPQcgBaiEJIA9B2AFqIR0gD0EgaiEXIA8iB0GgAWohGCAHQRBqIRAgB0GQAWohCyAHQYgBaiEWIAdBgAFqIRogB0H4AGohHCAHQbgBaiEhIAdBsAFqISIgB0HwAGohIyAHQegAaiEkIBRBAEchJSAMBEAgAygCACAKIBQQtQogAygCACICQQE6AHogAkEAOwGGASAFQZAzaiIfKAIAIQwgHyAMQQFqNgIAIAIgDDsBiAEgAkEAOwGEASAIQ///f/9D//9//0P//39/Q///f38QNiAEIAgQxgIgAygCACICIAQpAgA3AswDIAIgBCkCCDcC1AMgAiATNgKcBCACQcADaiICKAIEQQFIBEAgAiACQQEQWBCFAgsgAkEBNgIAIAMoAgAhAiAFQeQ1aigCAARAIAIoAghBgIAgcUEARyARckUEQCAAIAIoAgAiDBCHAgRAIAQgAigCTDYCACAMIAQgABCcCiECIAMoAgAgAjYCACADKAIAIgIgBCgCADYCTAsLCyAEIAIQ7wYgAygCACICIAQpAwA3AiwgAigCpAEiDEEASgRAIAIgDEF/ajYCpAELIAYgEnEgEUEBc3IiDEEBcyACKAKoASIRQQBKcgRAIAIgEUF/akEBIAwbNgKoAQsgCkGAgIAwcSIRRSAZQQFzckUEQAJAIAJBATYCqAEgCkHAAHFFDQAgBkUEQCACQwAAAAA4AhwgAkMAAAAAOAIUCyASRQRAIAJDAAAAADgCICACQwAAAAA4AhgLIARDAAAAAEMAAAAAEDIgAygCACICIAQpAwA3AiwLCyACEP4EIAMoAgAiAiAeQQBHIgwEfyAFQbgqagUgBUHAKmogBUGgKmogCkGAgIDAAHFFIBFBAEdxGwsoAgAiETYCSCACIAVBlCpqKQIANwI8IApBgICEKHFBgICACEYgEb5DAAAAAFtxBEAgBEMAAAAAIApBgAhxBH0gBUGYKmoqAgAFQwAAAAALEDIgAygCACICIAQpAwA3AjwLIAIgAioCPCAFQdQqaiIeKgIAEDkgBUGQNWoqAgAQOTgCyAIgAiAFQZQ1aigCADYCzAIgCkEBcUEARyIRQQFzIh8gCkEgcSIoRXEEQCAEIAIQnwQgBUGYM2ooAgAgAygCAEYEQAJAIAVBoDNqKAIADQAgBUGoM2ooAgANACAEIARBCGpBARCFA0UNACAFLADlB0UNACADKAIAQQE6AH4LCyADKAIAIgIsAH4EQCACIAIsAH1BAXM6AH0gAhCCAyADKAIAEHQgAygCACECCwUgAkEAOgB9CyACQQA6AH4gFSACIAJBLGoQ7gYgCUP//39/Q///f38QMiADKAIAIQICQAJAIApBwABxRQ0AIAIsAH0NACAGRQRAIAkgFSgCACIGNgIAIAIgBjYCHAsgEkUEQCAJIBUoAgQiBjYCBCACIAY2AiALDAELIAIoApABQQBKIhMEQCATQQFzIAZyRQRAIAkgAiwAmAEEfSACQRxqIgYqAgAgFSoCABA5BSACQRxqIQYgFSoCAAsiMzgCACAGIDM4AgALBSACKAKUAUEATA0BCyASRQRAIAIoApQBQQBKBEAgCSACLACYAQR9IAJBIGoiBioCACAVKgIEEDkFIAJBIGohBiAVKgIECyIzOAIEIAYgMzgCAAsLIAIsAH0NACACEIIDIAMoAgAhAgsgDyACKQIcNwM4IAQgDykCODcCACAIIAIgBBDyAiADKAIAIgIgCCkDACIyNwIcIAwgAiwAfSIGRXIEQCAEIDI3AwAFIB0gAhCfBCAEIB0QzwIgAygCACIGIQIgBCkDACEyIAYsAH0hBgsgAiAyNwIUIAZB/wFxRQRAIAJBHGogAkEkaiAJKgIAQ///f39cGyoCACE0IAJBIGogAkEoaiAJKgIEQ///f39cGyoCACEzIAIiCSAKQYCAAXEEf0EBBQJ/QQAgAioCMCAzXkUNABogCkEIcUULCyISQQFxIgY6AHkgBAJ9AkACfyAJIApBgIACcQR/IAJBAToAeCASBH9BASECDAMFIApBCHELBSAKQYAQcSETIApBCHFFIAIqAiwgNCASBH0gBUH0KmoqAgAFQwAAAAALk15xBH8gCSATQQt2OgB4IBNFIglBAXMgCSAScg0CGkEABSAJQQA6AHhBAAwCCwtFIAIqAjAgMyAFQfQqaioCAJNecSIGOgB5QQELIQIgBkH/AXEEfQwBBUMAAAAACwwBCyAFQfQqaioCAAsgAkH/AXEEfSAFQfQqaioCAAVDAAAAAAsQMiADKAIAIgIgBCkDADcCcAsgGQRAAkAgAkF/NgKgASAOQQFzIA1yDQAgBUGoNGoQ6wYhCSADKAIAIgIgCSkCFDcCDAsLIApBgICAGHEiEkGAgIAYRiEGIAwEQCACIBRB0AJqIgIoAgA7AYYBIAIgAxB4IAYgDSAOcnIEQCADKAIAIQIFIAMoAgAiAiAUKQLIATcCDAsLIApBgICAEHEhCQJAAkAgAioCuAFD//9/f1sNACACKAKoAQ0AIBcgAkEcaiACQcABahCgAiAIIAJBuAFqIBcQQCAEIAVBnCtqIAgQpgEgAiAEQQAQvwMMAQsgCkGAgICAAXEEQCAEIAIQ+gQgAygCACAEKQMANwIMDAELIA5BAXMgDXIgG0EBc3JFBEAgBCACEPoEIAMoAgAgBCkDADcCDAwBCyAGIAlFIA1ycg0AIAQgAhD6BCADKAIAIAQpAwA3AgwLIAMoAgAhAiAMIA1yRQRAAkAgAigCkAFBAU4NACACKAKUAUEBTg0AIAVBEGoiCSoCAEMAAAAAXkUNACAFKgIUQwAAAABeRQ0AIAQgBUGUK2ogBUGcK2oQpgEgAygCACECAkACQCAFLADAAUUNACACKAIIQQFxDQAgCCACKgIUIAIQvwEQMiADKAIAIQIMAQsgCCACKQIUNwMACyAYIAJBDGogCBA1IAcgGCAEEKYBIBcgByAIEEAgAygCAEEMaiICIBcpAwA3AgAgByAJIAQQQCAXIAIgBxCyAyADKAIAIgIgFykDADcCDAsLIAQgAkEMahCZASADKAIAIgIgBCkDADcCDCACIAVBtCpqIAVBvCpqIAVBnCpqIApBgICA4ABxQYCAgCBGGyAMGygCADYCRCACIAIoArgGIglB/////wdGBH9B/////wcFAn9B/////wcgAigCqAYiDUF/Rg0AGiAJIA1BAWoiDWogDW8LCzYCsAYgAiACKAK8BiIJQf////8HRgR/Qf////8HBQJ/Qf////8HIAIoAqwGIg1Bf0YNABogCSANQQFqIg1qIA1vCws2ArQGIAJBfzYCrAYgAkF/NgKoBiACQf////8HNgK8BiACQf////8HNgK4BiAEIAJBARDqBiADKAIAIAQpAwA3AlggBEP//39/Q///f38QMiADKAIAIgIgBCkDADcCYCAXQX82AgAgB0IANwMAIAdCADcDCEECQQEgBSwAvwEbIQ0CfyAFQbQxaiIJKgIAIjNDzcysP5QgM0PNzEw+lCACKgJEQwAAgD+SkhA5qCEpIAIsAH1FBEAgAiAVIBcgDSAHELMKIAMoAgAhAgsgAiACKgIUIjNDAAAAAF5FIApBwICAEHFyBH0gCSoCAEMAAIBBlAUgM0NmZiY/lAuosjgCoAQgAigC9AQQ+AMgAygCACgC9AQiAiAFQagrai0AAEECQQAgBUGpK2osAAAbcjYCJCACIAVBsDFqKAIAKAJEKAIIEJgCIBgQjAQgBiAMQQFzIA5ycgRAIBggGEEIakEBEIgCBSAUQcwDaiAUQdQDakEBEIgCCyAKQYCAgMAAcQR/An9BACADKAIAIgIQ/wJHDQAaIAIoAqgBQQFICwVBAAsiAiAFQeA1aiIVKAIAIgYEfyADKAIAIAYoAvAFRgVBAAsiBnIEQEEvQS4gAhsgBUHYN2oqAgAQQiECIAMoAgAoAvQEIBggGEEIaiACQwAAAABBDxB1CyAGBEAgAygCACICIBUoAgBGBEAgBCACEJ8CIAQgCSoCABCxAyAEIBgQjQJFBEAgAygCACgC9AQgBCAEQQhqQS0gBUHsNWoqAgBDAACAPpQQQiAFQZwqaioCAEEPEHULCwsgAygCACIGKgJEITQgBioCSCEzIAVB3DVqKAIAIgJFBEAgBUGgNWooAgAhAgsgCkGAIHFFIBlxIA4gEkVycSISBH9BAQUgAgR/IAYoAvQFIAIoAvQFRgVBAAsLIQ4gKQuyITUgECAGEJ8EIAMoAgAiBiwAfQRAIAVB0CpqIgIoAgAhByACIAYoAkg2AgAgDgR/QQxBCyAFQf41aiwAABsFQQwLQwAAgD8QQiEGIA8gECkDADcDMCAPIBApAwg3AyggCCAPKQIwNwIAIAQgDykCKDcCACAIIAQgBkEBIDQQrAEgAiAHNgIABQJAIApBgAFxQQBHIhMEfyAFQcw0agVBBCAKQRh2QQFxQQJyIApBgICAMHEbQwAAgD8QQiECIAVBzDRqIhsoAgAEQCACQf///wdxIAVBjDVqKgIAEFpDAAB/Q5RDAAAAP5KoQRh0ciECCwJ/IAMoAgAiBigC9AQhKiAIQwAAAAAgBhC/ARAyIAQgBkEMaiAIEDUgCyADKAIAIgZBDGogBkEUahA1ICoLIAQgCyACIDRBD0EMIBEbEHUgGwtBADYCACARRQRAQQxBC0EKIA4bIAMoAgAsAH0bQwAAgD8QQiECIAMoAgAoAvQEIBAgEEEIaiACIDRBAxB1CyAKQYAIcQRAIAQgAygCABD5BCAIIAMoAgAQnwIgBCAIELUCIAMoAgAoAvQEIAQgBEEIakENQwAAgD8QQiA0QwAAAAAgERtBAxB1IAVB0CpqIgYqAgBDAAAAAF4EQCAEKgIMIAMoAgAiAioCECACKgIYkl0EQAJ/IAIoAvQEISsgCCAEEPECIAsgBBD4BCArCyAIIAtBBUMAAIA/EEIgBioCABDFAQsLCyADKAIAIgIsAHgEf0EAEIIGIAMoAgAFIAILLAB5BEBBARCCBgsgCkECcUUEQCA0IDOSITZBACECA0AgCCADKAIAIgZBDGoiDiAGQRRqEDUgBCAOIAggAkEYbEGACGoQngICfyADKAIAKAL0BCEsIAJBAXFBAEciGwRAIBYgMyA1EDIFIBYgNSAzEDILIAsgAkEYbEGICGoiBiAWEKACIAggBCALEDUgLAsgCBBjAn8gAygCACgC9AQhLSAbBEAgFiA1IDMQMgUgFiAzIDUQMgsgCyAGIBYQoAIgCCAEIAsQNSAtCyAIEGMCfyADKAIAKAL0BCEuIAggBCoCACA2IAYqAgCUkiAEKgIEIDYgAkEYbEGMCGoqAgCUkhAyIC4LIAggNCACQRhsQZAIaigCACACQRhsQZQIaigCABDGASADKAIAKAL0BCACQQJ0IAdqKAIAEIECIAJBAWoiAiANSQ0ACwsgM0MAAAAAXkUgE3JFBEACfyADKAIAIgIoAvQEIS8gBCACQQxqIgYgAkEUahA1IC8LIAYgBEEFQwAAgD8QQiA0QQ8gMxCkAQsgFygCACICQX9HBEAgBCADKAIAIAIgNUMAAAAAEOkGIAMoAgAoAvQEIAQgBEEIakEdQwAAgD8QQkMAAIA/IDMQORDFAQsgBUHQKmoiAioCAEMAAAAAXkUgEXINAAJ/IAMoAgAoAvQEITAgCCAQEPECIAsgBUGgKmoiBioCAEMAAIC/EDIgBCAIIAsQNSAaIBAQ+AQgHCAGKgIAjEMAAIC/EDIgFiAaIBwQNSAwCyAEIBZBBUMAAIA/EEIgAioCABDFAQsLIBUoAgAiByADKAIAIgJGBEAgByoCRCEzIAVBnCpqKgIAITQgBCAHEJ8CIAQgCSoCABCxAyAEIBgQjQIEQCAEQwAAgL8gCSoCAJMQsQMgAygCACIHIQIgByoCRCEzBSAzIDQQOSEzIAMoAgAhAgsgAigC9AQgBCAEQQhqQS0gBUHsNWoqAgAQQiAzQX9DAABAQBCkASADKAIAIQILIAIgAikCHDcCJCACIAIqAgwgAioCWJMgAioCPJI4AowEIAIqAhAgAioCXJMgAkFAayoCAJIgAhC/AZIgAygCABDRAZIhMyADKAIAIgIgMzgCkAQgAiACKgIMIAIqAlgiNJMgAioCPCI1kyACKgI0IjNDAAAAAFsEfSACKgIUIAIqAnCTBSAzC5I4ApQEIAIgAioCECACKgJckyACQUBrKgIAkyACKgI4IjNDAAAAAFsEfSACKgIYIAIqAnSTBSAzC5I4ApgEIAIgNUMAAAAAkiA0kyIzOAKwAyACQwAAAAA4ArQDIAJDAAAAADgCuAMgCCAzQwAAAACSIAIQvwEgAygCABDRAZIgAygCACIHQUBrKgIAkiAHKgJckxAyIAQgAkEMaiAIEDUgAygCACICIAQpAwAiMjcC2AEgAiAyNwLIASACIDI3AtABIAIgMjcC4AEgBEMAAAAAQwAAAAAQMiADKAIAIgIgBCkDACIyNwL0ASACIDI3AugBIAJDAAAAADgC/AEgAkMAAAAAOALwASACQQA6AMQCIAIgAhCNBEMAAAAAXjoAxQIgAiACKALAAjYCvAIgAkEANgLAAiACQQA6AMYCIAIgAioCzAFDADwcxpI4AoACIAJB0AJqEL0DIAMoAgAiAkEBNgLgAiACICUEfyAUKALoAiEHIBQoAuACBUEAIQdBAQs2AuQCIAIgBzYC6AIgAiACKAKgBDYC7AIgAkMAAIC/OALwAiACQfQCakEAELwDIAMoAgBBgANqEL0DIAMoAgBBjANqEL0DIAMoAgAiAkEANgK8AyACQQA2AoQCIAJBADYCiAIgAiACQdQEajYC3AIgAkGYA2pBABDoBiADKAIAQaQEaiAeKgIAIBkQsgggDARAIBQoAugCIgcgAygCACIGQegCaiICKAIARwRAIAIgBzYCACAGQfQCaiACEHgLCyADKAIAIgIoApABIgdBAEoEQCACIAdBf2o2ApABCyACKAKUASIHQQBKBEAgAiAHQX9qNgKUAQsgEgRAIAIQdCADKAIAQQAQiwQLIBFFBEAgAygCACICKALoAiEHIAIgB0EQcjYC6AIgAkEBNgK0AiACQQI2ArgCIChBAEciBkUEQCACQZ6GAhBeIAMoAgBBDGoQggkEQCADKAIAQQE6AH4LCyAgBEACQCAFQcgqaioCACE0IAkqAgBDAAAAP5QhMwJ/IAMoAgBBqIYCEF4hMSAhIAMoAgAQnwIgCCAhEOcGIAsgNIwgM5MgNCAzkhAyIAQgCCALEDUgMQsgBCAzQwAAgD+SEMIERQ0AIAFBADoAAAsLIAMoAgAiAkEANgK0AiACQQE2ArgCIAIgBzYC6AIgCkGAgMAAcUEARyIHBH0gIkGEpAJBAEEAQwAAgL8QbCAiKgIABUMAAAAACyE2IAggAEEAQQFDAACAvxBsIAsgNkMAAAAAEDIgBCAIIAsQNSAIIBApAgA3AgAgCCAQKQIINwIIIAVBxCpqKgIAITMgBgR9IDMFIDMgCSoCAJIgBUHcKmoqAgCSCyE1IAEEfSAzIAkqAgCSIAVB3CpqKgIAkgUgMwshNCAFQawqaiICKgIAIjdDAAAAAF4EQCA0IDUgNxB/ITQLIAggNSAIKgIAkjgCACAIQQhqIgEgASoCACA0kzgCACALIAgpAgA3AgAgCyAIKQIINwIIIAsgAygCACIGKgIMIAYqAhSSICAEfSAQEI0BQwAAQMCSBSAzC5M4AgggCCABIABBACAEIAIgCxCtASAHBEAgCCoCACEzIAgQdiE0IBogBCoCACI1IDMgMyA0IDWTIAIqAgCUkhA5kiAIKgIEEDIgHEMAAABAIDaTQwAAAAAQMiAWIBogHBA1IBpDAAAAACAJKgIAQwAAgL6UqLIQMiAcIBYgGhA1ICMgASAaEDUgJEMAAAAAIAVBsCpqKgIAEDIgHCAjQYSkAkEAQQAgJCALEK0BCwsgBCADKAIAEJ8CIAMoAgAiAUHcA2oiACAEKQIANwIAIAAgBCkCCDcCCCAAIAFBzANqELUCIAMoAgAiACAQKgIAIAAqAkiSOALsAyAQKgIMIAAQ0QGSIAVB0CpqIAMoAgAiACIBQcgAaiAKQYAIcSAfchsqAgCSITMgACAzOALwAyAAIAAqAgwgACoCFJIgACoCcJMgASoCSCI0kyI1OAL0AyAAIAAqAhAgACoCGJIgACoCdJMgNJMiNjgC+AMgACAAKgLsA0MAAAA/kkMAAAAAIAAqAjxDAAAAP5QgNJMQYhA5IjSSEGI4AvwDIAAgM0MAAAA/khBiOAKABCAAIDVDAAAAP5IgNJMQYjgChAQgACA2QwAAAD+SEGI4AogEIAAgACgCUDYCjAIgECAQQQhqQQAQhQNBAXEhASADKAIAIgAgATYCkAIgACAQKQIANwKUAiAAIBApAgg3ApwCIABB/ANqIABBhARqQQEQiAIgAygCACIAQQA6AHwFIAMoAgAiAEH8A2ogAEGEBGpBARCIAiADKAIAIQALIAAgAC4BhAFBAWo7AYQBICcQigQgJkUEQAJAIApBwABxRQRAIAMoAgAiACgCkAFBAUgEQAJAIAAoApQBQQFODQAgACoC3AMgACoC5ANgRQRAIAAqAuADIAAqAugDYEUNAQsgAEEBNgKkAQsLCyAlBEAgFCwAfUUEQCAULACBAUUNAgsgAygCAEEBNgKkAQsLCyADKAIAIgAgBUGQKmoqAgBDAAAAAF8EfyAAQQE2AqQBQQEFIAAoAqQBQQBKBH9BAQUgACgCqAFBAEoLCyIBOgCBASAAAn8CQCAALAB9DQAgAUH/AXFFIAAsAHpBAEdxRQ0AQQAMAQsgACgCkAFBAUgEf0EAIAAoApQBQQFODQEaIAAoAqgBQQFIBUEACwsiADoAfyAPJAQgAEH/AXFFCw8AIAEgACgCAGogAjYCAAsNACABIAAoAgBqKAIACzcBAn8jBCECIwRBEGokBCAAKAIAIQAgAiABIABB/wFxQfIGahEBACACEH0hAyACEDEgAiQEIAMLMAEBfyMEIQIjBEEQaiQEIAIgADYCACACQQhqIgAgASkCADcCACACIAAQsRAgAiQECzEBAX8gAEHM+AE2AgAgACgCCBBbRQRAIAAoAgAoAgwhASAAIAFB/wFxQeAEahEEAAsLCQAgACABEJERCxkAIAAoAgAgATYCACAAIAAoAgBBCGo2AgALKAECfwJ/IwQhAyMEQRBqJAQgAEECQaT4AUHayQJBISABEAIgAwskBAsQACAAQdD2ASABKAIAuBAZCw0AIAAoAgggAUEDdGoLhQEBA38jBCEDIwRBEGokBCABKAIMIQQgA0EIaiIFQQA2AgAgAyACQQF0IARqIgIgASgCLEEBdCAEaiAFQQEQ3QMgAEMAAAAAOAIAIAAgAygCADYCBCAAIAMoAgQiATYCCCAAQwAAAAA4AgwgACABNgIQIAAgBSgCACACa0EBdTYCFCADJAQLEAAgAEIANwIAIABCADcCCAscACAAIAAoAggiACABIAAgAUggAUEASHIbNgIECxcAIAAgATYCACAAIAI2AgggAEEANgIECyUAIAAgAToADCAAIAI7AQAgACADOwECIAAgBDsBBCAAIAU7AQYLDgAgACgCCCABQfQAbGoLawEBfyAGQYCAgAhPBEACQCAAQcgAaiIHEH5FBEAgASAHEHAoAgBGBEAgAEEGQQQQsAEgACACIAMgBCAFIAYQ8wMMAgsLIAAgARCYAiAAQQZBBBCwASAAIAIgAyAEIAUgBhDzAyAAEOUCCwsLigIBBX8jBCEKIwRBIGokBCAKQRhqIQwgCkEIaiEJIAohDSAEQYCAgAhPBEAgBkUEQCAFEFwgBWohBgsgBSAGRwRAIAFFBEAgACgCKCgCCCEBCyACQwAAAABbBEAgACgCKCoCDCECCyAAQcgAahBwGiAJIABBPGoQ/QIiCykCADcCACAJIAspAgg3AgggCEEARyILBEAgCSAJKgIAIAgqAgAQOTgCACAJIAkqAgQgCCoCBBA5OAIEIAkgCSoCCCAIKgIIEEU4AgggCSAJKgIMIAgqAgwQRTgCDAsgDSADKQIANwMAIAwgDSkCADcCACABIAAgAiAMIAQgCSAFIAYgByALENYJCwsgCiQECyQBAX9BmKkEKAIAIgBBtDFqKgIAIABByCpqKgIAQwAAAECUkgs5AgF/AX0QYCgCvAMhASAAQQBIBEAgASgCDCEACyABQSxqIAAQVSoCACECIAEqAhQgASoCGCACEH8LDwAgACAAKAIAQX9qNgIACxoAIAAgACgCXCAAKAJUIAEQ2QQgAEEANgJUC2wBA38jBCECIwRBIGokBEGYqQQoAgAhAyACEN4GIAIgADYCACACQQRqIgQgA0GwK2ogAEEEdGoiACkCADcCACAEIAApAgg3AgggA0H4M2ogAhDdBiAAIAEpAgA3AgAgACABKQIINwIIIAIkBAsIAEEGEANBAAulAgEGfyABQW9LBEAQCgsgACwACyIGQQBIIgQEfyAAKAIEIQUgACgCCEH/////B3FBf2oFIAZB/wFxIQVBCgshAyAFIAEgBSABSxsiAUELSSECQQogAUEQakFwcUF/aiACGyIHIANHBEACQAJAAkAgAgRAIAAoAgAhAiAEBH9BACEEIAAFIAAgAiAGQf8BcUEBahD3AiACEFQMAwshAQUgB0EBaiIDED8hASAEBH9BASEEIAAoAgAFIAEgACAGQf8BcUEBahD3AiAAQQRqIQIMAgshAgsgASACIABBBGoiAygCAEEBahD3AiACEFQgBEUNASADIQIgB0EBaiEDCyAAIANBgICAgHhyNgIIIAIgBTYCACAAIAE2AgAMAQsgACAFOgALCwsLSwEDfyAAKAIEIAFIBEAgAUECdBBTIQIgAEEIaiIDKAIAIgQEQCACIAQgACgCAEECdBBGGiADKAIAEEELIAMgAjYCACAAIAE2AgQLC6kBAQF/IAFB/wdKBEAgAUGCcGoiAkH/ByACQf8HSBsgAUGBeGogAUH+D0oiAhshASAARAAAAAAAAOB/oiIARAAAAAAAAOB/oiAAIAIbIQAFIAFBgnhIBEAgAUH8D2oiAkGCeCACQYJ4ShsgAUH+B2ogAUGEcEgiAhshASAARAAAAAAAABAAoiIARAAAAAAAABAAoiAAIAIbIQALCyAAIAFB/wdqrUI0hr+iC1wBAn8gACwAACICIAEsAAAiA0cgAkVyBH8gAiEBIAMFA38gAEEBaiIALAAAIgIgAUEBaiIBLAAAIgNHIAJFcgR/IAIhASADBQwBCwsLIQAgAUH/AXEgAEH/AXFrC4QBAQR/IwQhAyMEQTBqJAQCfxA8IgQoAvQEIQYgAyAAKQIANwMIIAMgASkCADcDACADQRBqIgEgAykCCDcCACADQRhqIgAgAykCADcCACAGCyABIAAgAhCiAyAAIAQoAvQEQTxqEP0CEMYCIAQgACkCADcCzAMgBCAAKQIINwLUAyADJAQLCwAgAARAIAAQVAsLCwBBmKkEIAA2AgAL5AEBA39BmKkEKAIAIgJBlDNqKAIAIQECfwJAIAJB/zVqLAAARQ0AIAJB/jVqLAAADQAQ3gcMAQsgASgCkAJBAXEEfyAAQcAAcUUgAkGcM2ooAgAgASgC8AVHcQR/QQAFIABBIHFFBEAgAkG0M2ooAgAiAwRAIAEoAowCIANHBEAgAkHFM2osAABFBEBBACADIAEoAlBHDQYaCwsLCyABIAAQqwUEfyAAQYABcUUgASgC6AJBBHFBAEdxBH9BAAUgASgCjAIgASgCUEYEQEEAIAEsAHwNBRoLQQELBUEACwsFQQALCwsxAQF/IwQhAyMEQRBqJAQgASgCACEBIAMgAhBxIAAgASADKAIAEAgQXyADEDEgAyQEC0AAIAEqAgAgACoCAGAEfyABKgIEIAAqAgRgBH8gASoCCCAAKgIIXwR/IAEqAgwgACoCDF8FQQALBUEACwVBAAsLKAECfwJ/IwQhAyMEQRBqJAQgAEECQZT9AUG70wJBKiABEAIgAwskBAseACAAIAAoAlwgACgCVCABIAIgAxDyAyAAQQA2AlQLEAAgACgCPCAAQUBrKAIARwsfACAAKAIEIAFIBEAgACAAIAEQWBCXAwsgACABNgIACw8AIAAgASAAKAIEahD4AQsOACAAKAIIIAFBxAFsagsNACAAKAIIIAFBAXRqCzwBAX0gBLIhBSADQYCAgAhPBEAgACABIAJDAAAAACAFQwAAgL+SQ9sPyUCUIAWVIAQQlwIgACADEIECCwsaAQF/IAAoAjgiAiABOwEAIAAgAkECajYCOAugAQIEfwJ9IwQhByMEQRBqJAQgByEIIABB1ABqIQYgAkMAAAAAWwRAIAYgARCaAgUgBiAFQQFqIgkgBigCAGoQ6AIgBUEATgRAIAWyIQogBCADkyEEQQAhAANAIAggASoCACAEIACyIAqVlCADkiILEPkCIAKUkiABKgIEIAsQ+AIgApSSEDIgBiAIEJoCIABBAWoiACAJRw0ACwsLIAckBAspAQF/IwQhAiMEQRBqJAQgAiABNgIAIABByABqIAIQeCAAENsEIAIkBAsPACAAIAEQpQFDAAAAAF4LSQEBfyAAKAIAIgIgACgCBEYEQCAAIAAgAkEBahBYEOgCIAAoAgAhAgsgACgCCCACQQN0aiABKQIANwIAIAAgACgCAEEBajYCAAsVAEGYqQQoAgBBmTZqQQA6AAAQrQMLNwEBf0GYqQQoAgAiA0HQNGogACkCADcCACADQdg0aiACKQIANwIAIANBtDRqIAFBASABGzYCAAsZAQF9IAAqAgAiASABlCAAKgIEIgEgAZSSCzQBAX0gACABKgIAIgQgAioCACAEkyADKgIAlJIgASoCBCIEIAIqAgQgBJMgAyoCBJSSEDILJgECfSAAIAEqAgwiAiABKgIQIgMgAiABKgIUkiADIAEqAhiSEF0LHAAgACABKgIAIAIqAgCUIAEqAgQgAioCBJQQMgsdACAAQQBBABC7ASEAQZipBCgCAEGEM2ogABCrCQt6AQR/QZipBCgCACEEIABBAEoEQCAEQfgzaiEBA0AgASgCCCABKAIAQX9qQRRsaiIDIQIgBEGwK2ogAygCAEEEdGoiAyACKQIENwIAIAMgAikCDDcCCCABIAEoAgBBf2o2AgAgAEF/aiECIABBAUoEQCACIQAMAQsLCwutAQEFf0GYqQQoAgAhASAAQQBKBEAgAUGENGohAiABQZAqaiEFA0AgAigCCCACKAIAQX9qQQxsaiIBKAIAEPcEIgQgBRDXAiEDIAQoAgBBBEYEQAJAAkACQCAEKAIEQQFrDgIAAQILIAMgASgCBDYCAAwBCyADIAEoAgQ2AgAgAyABKAIINgIECwsgAiACKAIAQX9qNgIAIABBf2ohASAAQQFKBEAgASEADAELCwsLCABBHBADQQALCABBBxADQQAL4QQBAn8gAS0AACIDQYABcQR/An8gA0HgAXFBwAFGBEAgAEH9/wM2AgAgAgRAQQEgAiABa0ECSA0CGgtBAiABLAAAIgJB/wFxQcIBSA0BGkECIAEtAAEiAUHAAXFBgAFHDQEaIAAgAUE/cSACQR9xQQZ0cjYCAEECDAELIANB8AFxQeABRgRAIABB/f8DNgIAIAIEQEEBIAIgAWtBA0gNAhoLAkACQAJAIAEsAAAiA0FgayICBEAgAkENRgRADAIFDAMLAAtBAyABLAABIgJB4AFxQaABRw0EGgwCC0EDIAEsAAEiAkH/AXFBnwFKDQMaDAELIAEsAAEhAgtBAyACQf8BcSICQcABcUGAAUcNARpBAyABLQACIgFBwAFxQYABRw0BGiAAIAFBP3EgAkEGdEHAH3EgA0EPcUEMdHJyNgIAQQMMAQsgA0H4AXFB8AFHBEAgAEEANgIAQQAMAQsgAEH9/wM2AgAgAgRAQQEgAiABa0EESA0BGgsgASwAACIDQf8BcUH0AUoEf0EEBQJAAkACQAJAIANBcGsOBQACAgIBAgtBBCABLAABIgJB8ABqQRh0QRh1Qf8BcUEvSg0EGgwCC0EEIAEsAAEiAkH/AXFBjwFKDQMaDAELIAEsAAEhAgsgAkH/AXEiAkHAAXFBgAFGBEAgAS0AAiIEQcABcUGAAUYEQCABLQADIgFBwAFxQYABRgRAIARBBnRBwB9xIAJBDHRBgOAPcSADQQdxQRJ0cnIiAkGA8P8AcUGAsANHBEAgACACIAFBP3FyNgIACwsLC0EECwsFIAAgAzYCAEEBCwsaACAAIAEQ7wsiAEEAIAAtAAAgAUH/AXFGGwsKACAAQVBqQQpJCzUBAn8jBCEDIwRBEGokBAJ/IAAoAgAhBCADIAEQbyAECyADKAIAIAIoAgAQCyADEDEgAyQECycBAX8jBCECIwRBEGokBCACIAEQjwEgAEHI9gEgAhAENgIAIAIkBAsPACABIAAoAgBqIAI4AgALDQAgASAAKAIAaioCAAsRAEEAIABBCGogACgCEBBbGwszACAAQYz6ATYCACAAIAE2AhAgARBbRQRAIAAoAgAoAgAhASAAIAFB/wFxQeAEahEEAAsLMwAgAEGs+gE2AgAgACABNgIIIAEQW0UEQCAAKAIAKAIAIQEgACABQf8BcUHgBGoRBAALCzMAIABBwPoBNgIAIAAgATYCCCABEFtFBEAgACgCACgCACEBIAAgAUH/AXFB4ARqEQQACwszACAAQdj6ATYCACAAIAE2AgggARBbRQRAIAAoAgAoAgAhASAAIAFB/wFxQeAEahEEAAsLMwAgAEHM+AE2AgAgACABNgIIIAEQW0UEQCAAKAIAKAIIIQEgACABQf8BcUHgBGoRBAALC/UBAQd/IwQhAyMEQSBqJAQgASgCtAIhBEGYqQQoAgAiAkGgNWoiCCgCACABRwRAIAJBgTZqQQA6AAALIANBEGohBSADQQhqIQYgAyEHIAJBpDVqIAA2AgAgCCABNgIAIAJB9DVqIAQ2AgAgAUGABmogBEECdGogADYCACAAIAEoAowCRgRAIAYgAUGUAmogAUEMaiIAEEAgByABQZwCaiAAEEAgBSAGIAcQQyABQYgGaiAEQQR0aiIAIAUpAgA3AgAgACAFKQIINwIICyACQeAzaigCAEECRgRAIAJB/zVqQQE6AAAFIAJB/jVqQQE6AAALIAMkBAs/AQF/IABBmKkEKAIAIgFBtDNqKAIARgRAIAFBvDNqIAA2AgALIAAgAUG4M2ooAgBGBEAgAUHHM2pBAToAAAsLQQEBfyMEIQIjBEEQaiQEIAIgACABEKYBIAAgAikDADcCACACIABBCGoiACABQQhqELIDIAAgAikDADcCACACJAQLIgAgACABKgIAIAAqAgCSOAIAIAAgASoCBCAAKgIEkjgCBAscACAAIAAoAjBB//8DcRCWAiAAIAEgAiADEOQCC7gCAgd/An0jBCEDIwRBIGokBCADQRBqIQEgA0EIaiECIAMhBBA8IgAsAH9FBEACQEGYqQQoAgAhBSAAKALgAkUEQBD8CAwBCyAAKAK8AwRAEOoBCyAAKgIMIQcgACoCFCEIIAIgAEGYA2oQfgR9IAcFIAcgACoCsAOSCyAAKgLMARAyIAQgByAIkiAAKgLMAUMAAIA/khAyIAEgAiAEEEMgAkMAAAAAQwAAAAAQMiACQwAAAAAQqQEgAUEAQQAQYQRAAn8gACgC9AQhBiACIAEqAgggASoCBBAyIAYLIAEgAkEbQwAAgD8QQkMAAIA/EMUBIAVBzNgAaiwAAARAIAFBp50CQQAQ3QELIAAoArwDBEAQ6QIgACgCvAMgACgCzAE2AhwLBSAAKAK8AwRAEOkCCwsLCyADJAQL9wUCEn8CfSMEIQQjBEHwAGokBCAEQeAAaiEGIARB2ABqIQcgBEHIAGohAiAEQThqIQMgBEEIaiEKIARBMGohBSAEQShqIQsgBEEgaiEMIARBGGohDSAEIREQPCIILAB/BH9BAAVBmKkEKAIAIQ4gCCAAEF4hDyAHIABBAEEBQwAAgL8QbCADIAcqAgQgDkHIKmoiCSoCAEMAAABAlJJDAACAv5IiFCAUEDIgBiAIQcgBaiIQIAMQNSACIBAgBhBDIAIgCSoCABB8IAMgAikCADcCACADIAIpAgg3AgggByoCAEMAAAAAXgRAQwAAAAAgDkHcKmoqAgAQawsgBUMAAAAAIAkqAgAQMiAGIBAgBRA1IA1DAAAAACAJKgIAEDIgDCAQIA0QNSALIAwgBxA1IAogBiALEEMgByoCAEMAAAAAXgRAIAYgChB2IAIQjQEQMiAGIAkqAgAQqQEgAyAKEIUHCyADIA9BABBhBH8gBSACEOYDIAUgBSoCAKiyQwAAAD+SOAIAIAUgBSoCBKiyQwAAAD+SOAIEIAIQjQEhFCADIA8gCyAMQQAQkQEiCQRAIA8QywELIAMgD0EBEJcBIAgoAvQEIAUgFEMAAAA/lCIUQQdBCCALLAAARSIDG0EJIAwsAABFIANyG0MAAIA/EEJBEBCVAiABBEBDAACAPyACEHYgAhCNARBFQwAAwECVqLIQOSEVIAgoAvQEIAUgFCAVk0ESQwAAgD8QQkEQEJUCCyAOQdAqaiICKgIAQwAAAABeBEACfyAIKAL0BCESIA1DAACAP0MAAIA/EDIgBiAFIA0QNSASCyAGIBRBBkMAAIA/EEJBECACKgIAELsCIAgoAvQEIAUgFEEFQwAAgD8QQkEQIAIqAgAQuwILIA5BzNgAaiwAAARAIApBmJ0CQZydAiABG0EAEN0BCyAHKgIAQwAAAABeBEAgESAKKQMANwMAIAYgESkCADcCACAGIABBAEEBEK4BCyAJBUEACwshEyAEJAQgEwtKAQJ/IAEoAgQhAyABQQIQxAEiAgRAIAEgAiABEKMBQf8BcSICbBCSAiABIAEgAhDEAUF/ahCSAgsgACABIAMgASgCBCADaxDcAgtCACADQYCAgAhPBEAgACABIAJDAAAAv5JDAAAAACAEsiICQwAAgL+SQ9sPyUCUIAKVIAQQlwIgACADQQEgBRCPAgsLNgAgACABIAIgAxCkByICIAFBf2ogAkF/RyACIAFIcRshASAABH8gACABakEAOgAAIAEFIAILCyQBAX0gACoCXCAAKgLkAZIhAiAAIAE4AlwgACACIAGTOALkAQuWAQEGfyMEIQIjBEEgaiQEIAJBGGohBSACQQhqIQMgAiEGIAAQ9wQiBCgCAEEERgRAIAQoAgRBAkYEQCAGIARBmKkEKAIAIgdBkCpqENcCIgQpAgA3AwAgBSAGKQIANwIAIAMgADYCACADIAUoAgA2AgQgAyAFKAIENgIIIAdBhDRqIAMQ3AYgBCABKQIANwIACwsgAiQECwcAQcQAEAMLCABBGBADQQALUgEDfxAkIQMgACMBKAIAIgJqIgEgAkggAEEASnEgAUEASHIEQCABECEaQQwQFUF/DwsgASADSgRAIAEQIkUEQEEMEBVBfw8LCyMBIAE2AgAgAgsuAQF/IwQhAiMEQRBqJAQgAiABNgIAQciBAigCACIBIAAgAhCZBBogARDZCxAKC6cBAQV/IAAoAkxBf0oEf0EBBUEACxogABDrCyAAKAIAQQFxQQBHIgRFBEAQjAUhASAAKAI0IgIEQCACIAAoAjg2AjgLIAAoAjgiAwRAIAMgAjYCNAsgACABKAIARgRAIAEgAzYCAAtBkKoEEBILIAAQiwUhAgJ/IAAgACgCDEE/cUHsAGoRAwAhBSAAKAJgIgMEQCADEFQLIARFBEAgABBUCyAFCyACcgubBAEIfyMEIQojBEHQAWokBCAKIgZBwAFqIgRCATcDACABIAJsIgsEQAJAQQAgAmshCCAGIAI2AgQgBiACNgIAIAIhByACIQFBAiEFA0AgBUECdCAGaiABIAIgB2pqIgk2AgAgBUEBaiEFIAkgC0kEQCABIQcgCSEBDAELCyAAIAtqIAhqIgUgAEsEfyAFIQlBASEHQQEhAQN/IAdBA3FBA0YEfyAAIAIgAyABIAYQjwUgBEECEJgEIAFBAmoFIAFBf2oiB0ECdCAGaigCACAJIABrSQRAIAAgAiADIAEgBhCPBQUgACACIAMgBCABQQAgBhCXBAsgAUEBRgR/IARBARCWBEEABSAEIAcQlgRBAQsLIQEgBCAEKAIAQQFyIgc2AgAgACACaiIAIAVJDQAgAQsFQQEhB0EBCyEFIAAgAiADIAQgBUEAIAYQlwQgACEBIAUhAANAAn8CQCAAQQFGIAdBAUZxBH8gBCgCBEUNBAwBBSAAQQJIDQEgBEECEJYEIAQgBCgCAEEHczYCACAEQQEQmAQgASAAQX5qIgVBAnQgBmooAgBrIAhqIAIgAyAEIABBf2pBASAGEJcEIARBARCWBCAEIAQoAgBBAXIiBzYCACABIAhqIgEgAiADIAQgBUEBIAYQlwQgBQsMAQsgBCAEEJ0HIgUQmAQgBCgCACEHIAEgCGohASAAIAVqCyEADAAACwALCyAKJAQLTgECfyACBH8CfwNAIAAsAAAiAyABLAAAIgRGBEAgAEEBaiEAIAFBAWohAUEAIAJBf2oiAkUNAhoMAQsLIANB/wFxIARB/wFxawsFQQALCyEAIAAgASoCACABKgIEEDIgAEEIaiABKgIIIAEqAgwQMgsNAEGYqQQoAgBBkCpqCwsAIAAgASACEOQPCzYBAn8gABBgIgFBlARqIAFBDGoQQCABKAK8AyICBEAgACACKAIMQQFqEP8BIAEqAjyTOAIACwtCAgJ/AnwjBCEBIwRBEGokBAJ8IAAoAgBBmPoBKAIAIAFBBGoQBiEEIAEgASgCBBBfIAQLqyECIAEQzAEgASQEIAILQAAgASoCBCAAKgIMXQR/IAEqAgwgACoCBF4EfyABKgIAIAAqAghdBH8gASoCCCAAKgIAXgVBAAsFQQALBUEACwsQACAAQez5ATYCACAAEN0HC7gBAQN/An8CQEGYqQQoAgAiAkGgM2ooAgAiA0UgASADRnINACACQaQzaiwAAA0AQQAMAQsgAkGUM2ooAgAiAyACQZgzaigCAEYEfyABIAJBtDNqKAIAIgRGIARFckUEQEEAIAJBxTNqLAAARQ0CGgsgACAAQQhqQQEQhQMEfyACQf81aiwAAAR/QQAFIANBABCrBQR/IAMoAugCQQRxBH9BAAUgARCIA0EBCwVBAAsLBUEACwVBAAsLCxAAIABBvPkBNgIAIAAQqQULHAAgACABKgIIIAEqAgCTIAEqAgwgASoCBJMQMgtCACAAIAAqAgAgASoCAJM4AgAgACAAKgIEIAEqAgSTOAIEIAAgASoCACAAKgIIkjgCCCAAIAEqAgQgACoCDJI4AgwLowMCCX8CfSMEIQgjBEFAayQEIAgiA0EoaiEEIANBIGohCUGYqQQoAgAiCkG0MWoqAgAiDUPNzMw+lCAClCEMIANBGGoiBSANQwAAAD+UIg0gDSAClBAyIANBMGoiBiAAIAUQNSAFEDogA0EQaiIAEDogA0EIaiIHEDoCQAJAAkACQAJAIAEOBAEDAAIECyAMjCEMDAELIAyMIQwMAQsgBEMAAAAAQwAAQD8QMiADIAQgDBBRIAUgAykDADcDACAEQy2yXb9DAABAvxAyIAMgBCAMEFEgACADKQMANwMAIARDLbJdP0MAAEC/EDIgAyAEIAwQUSAHIAMpAwA3AwAMAQsgBEMAAEA/QwAAAAAQMiADIAQgDBBRIAUgAykDADcDACAEQwAAQL9DLbJdPxAyIAMgBCAMEFEgACADKQMANwMAIARDAABAv0Mtsl2/EDIgAyAEIAwQUSAHIAMpAwA3AwALAn8gCkGUM2ooAgAoAvQEIQsgAyAGIAUQNSAEIAYgABA1IAkgBiAHEDUgCwsgAyAEIAlBAEMAAIA/EEIQ4wIgCCQECykBAn8jBCEDIwRBEGokBCADIAI2AgAgAEEAIAEgAxDVBSEEIAMkBCAEC94MAhd/B30jBCEEIwRBoAFqJAQgBEGIAWohBSAEQYABaiEKIARBQGshDiAEQfAAaiEPIARBKGohBiAEQfgAaiEIIARB2ABqIQwgBEGRAWohESAEQZABaiEVIAQhDSAEQegAaiEWIARB0ABqIRcgBEHIAGohGBA8IgksAH8EQEEAIQMFQZipBCgCACEHIAFBgAhxRSABQQJxQQBHIhBBAXNxBEAgDiAHQcQqaioCAEMAAAAAEDIFIA4gB0HEKmopAgA3AwALIA8gAiADBH8gAwUgAkEAEJABCyISQQBDAACAvxBsIA4qAgQiGyAJKgLwARA5IRwgCSoC7AEgB0G0MWoiEyoCACAHQcgqaioCAEMAAABAlJIQRSAbQwAAAECUIA8qAgSSEDkhHSAJKgIMIRsgCBDJAiAFIBsgCCoCAJIgHSAJKgLMAZIQMiAGIAlByAFqIAUQQyAQBEAgBiAGKgIAIAkqAjxDAAAAP5SoskMAAIC/kiIbkzgCACAGIAYqAgggG5I4AggLIAUgEyoCACIeIA8qAgAiGyAOKgIAIh9DAAAAQJQiIJJDAAAAACAbQwAAAABeG5IiISAdEDIgBSAcEKkBIBAEQCAMIAYpAgA3AgAgDCAGKQIINwIIBSAMIAYqAgAiGyAGKgIEICEgG5IgB0HUKmoqAgBDAAAAQJSSIAYqAgwQXQsgACABEMEIIggEQCAHQfw1aiwAAEUgAUGIwABxQYDAAEZxBEAgCSAJKAKIAkEBIAkoAoQCdHI2AogCCwsgHiAfQwAAQECUICAgEBuSIRsgAUGAAnFBAEchGQJ/IAwgAEEAEGEhGiAJIAkoApACQQJyNgKQAiAJIAYpAgA3AqQCIAkgBikCCDcCrAIgGgsEQCAMIAAgESAVIAFBBHRBwCBxIAFBBnZBAnFBEHJBACABQcAAcUEARyIUG3JBgChzEJEBIQMgGQRAIAghAwUCQCADBH8gAUHAAXEEfyAAIAdBqDVqKAIARgVBAQshCyABQYABcQRAIAUgGyAMKgIAkiAMKgIMEDIgDCAFQQEQhQMEfyAHQf81aiwAAEEBc0H/AXEFQQALQQFxIAtBAXFyQQBHIQsLIAtBAXEhAyAUBEAgBy0A5QcgC0EBcXIhAwsgB0HUOGosAABFIAhBAXNyIANBAXFBAEdxBUEACyEDAkACQAJAIAAgB0GkNWoiFCgCACILRgRAIAdBmTZqLAAARQ0BIAdBpDZqKAIAIAhBAXNyDQEQmwIgFCgCACELQQEhAwsgACALRw0BCyAHQZk2aiwAAEUNACAIIAdBpDZqKAIAQQFHcg0AEJsCDAELIANFBEAgCCEDDAILCyAJKALcAiAAIAhBAXMiA0EBcRDFBAsLIAFBBHEEQBCCBQtBGEEZIBEsAABFIggbQRogFSwAAEUgCHIbQwAAgD8QQiELIAUgGyAcEDIgDSAGIAUQNSAQBEAgBCAGKQMANwM4IAQgBkEIaiIIKQMANwMgIAdBzCpqKgIAIRsgCiAEKQI4NwIAIAUgBCkCIDcCACAKIAUgC0EBIBsQrAEgBiAAQQIQlwEgCiAOKgIAIBwQMiAWIAYgChA1IAUgFikCADcCACAFQQNBASADG0MAAIA/ENECIAdBzNgAaiwAAARAIA1BhKMCQYejAhDdASAFQwAAAABDAAAAABAyIA0gCCACIBIgDyAFQQAQrQEgDUGJowJBi6MCEN0BBSAFQwAAAABDAAAAABAyIA0gCCACIBIgDyAFQQAQrQELBSARLAAAIAFBAXFyBEAgBCAGKQMANwMYIAQgBikDCDcDECAKIAQpAhg3AgAgBSAEKQIQNwIAIAogBSALQQBDAAAAABCsASAGIABBAhCXAQsgAUGABHEEQCAKIBtDAAAAP5QgHCATKgIAQwAAAD+UkhAyIBcgBiAKEDUgBSAXKQIANwIAIAUQsgQFIBlFBEAgCiAOKgIAIBwgEyoCAEOamRk+lJIQMiAYIAYgChA1IAUgGCkCADcCACAFQQNBASADG0MzMzM/ENECCwsgB0HM2ABqLAAABEAgDUGLowJBABDdAQsgBCANKQMANwMIIAUgBCkCCDcCACAFIAIgEkEAEK4BCyADIAFBCHFFcQRAIAAQ1gULBSAIIAFBCHFFcQR/IAAQ1gVBAQUgCAshAwsLIAQkBCADCykBAn8jBCEDIwRBEGokBCADIAI2AgAgAEEAIAEgAxDXBSEEIAMkBCAEC5gIAhZ/BH0jBCEEIwRBsAFqJAQgBEGYAWohBiAEQZABaiEJIARBiAFqIQ0gBEEwaiEHIARBoQFqIQ8gBEGgAWohFiAEQegAaiEKIARBEGohBSAEQYABaiEQIARBQGshESAEQfgAaiESIARB0ABqIQggBEHgAGohEyAEIRQgBEHIAGohFRA8IgssAH8Ef0EABUGYqQQoAgAhDiALIAAQXiEMEP4BIRogAyoCACIcQwAAAABbBEAgAyAaOAIAIBohHAsgAyoCBCIbQwAAAABbBEAgAyAaOAIEIBohGwsgBiALQcgBaiIXIAMQNSAHIBcgBhBDIAcgGyAaYAR9IA5ByCpqKgIABUMAAAAACxB8IAcgDEEAEGEEfyAHIAwgDyAWQQAQkQEhAyAKIAEqAgAgASoCBCABKgIIQwAAgD8QNiAcIBsQRUMpXD9AlSEbIA5BzCpqKgIAIBtDAAAAP5QQRSEaIAUgBykDADcDACAFIAcpAwg3AwggBUMAAEC/ELEDAkACQCACQf//Z3EgAiACQQJxGyICQYCAEHFFDQAgASoCDEMAAIA/XUUNACAFKgIAIhwgBSoCCJJDAAAAP5RDAAAAP5KosiEdIBAgGyAckiAFKgIEEDIgESAFKQMINwMAIAEQ5AEhCCASQwAAQL8gG5NDAABAvxAyIA0gECkCADcCACAJIBEpAgA3AgAgBiASKQIANwIAIA0gCSAIIBsgBiAaQQoQtQQCfyALKAL0BCEYIAYgHSAFKgIMEDIgGAsgBSAGIAoQ5AEgGkEFEHUMAQsgCCABIAogAkGAgAhxGyIKKQIANwIAIAggCikCCDcCCCAIKgIMQwAAgD9dBEAgBCAFKQMANwMoIAQgBSkDCDcDICAIEOQBIQUgE0MAAEC/QwAAQL8QMiANIAQpAig3AgAgCSAEKQIgNwIAIAYgEykCADcCACANIAkgBSAbIAYgGkF/ELUEBSALKAL0BCAFIAVBCGogCBDkASAaQQ8QdQsLIAcgDEEBEJcBIA5B0CpqKgIAQwAAAABeBEAgBCAHKQMANwMIIBQgBykDCDcDACAJIAQpAgg3AgAgBiAUKQIANwIAIAkgBiAaEIwDBSALKAL0BCAHIAdBCGpBB0MAAIA/EEIgGkEPQwAAgD8QpAELIAJBgARxRSAOQbQzaigCACAMRnEEQEEAEMkGBEAgAkECcQR/QZCfAiABQQxBAhDsBAVBl58CIAFBEEECEOwECxogFUMAAAAAQwAAAAAQMiAGIBUpAgA3AgAgACABIAIgBhDVAhpDAAAAAEMAAIC/EGtBjKACQQAQuQEQyAYLCyAPLAAARSACQcAAcUEAR3JFBEAgACABIAJBgoAYcRDECAsgAwRAIAwQywELIAMFQQALCyEZIAQkBCAZC9EFAhB/AX0jBCEIIwRBoAFqJAQgCEGYAWohDCAIQYgBaiENIAhBgAFqIRAgCEHQAGohCiAIQfAAaiEPIAhBQGshFCAIIREgCEHgAGohFSAIQegAaiEWEDwiDiwAfwR/QQAFQZipBCgCACELIA4gABBeIQkgECAAQQBBAUMAAIC/EGwgDCAOQcgBaiISIAEQNSAKIBIgDBBDIA0gECoCACIYQwAAAABeBH0gGCALQdwqaioCAJIFQwAAAAALQwAAAAAQMiAMIApBCGoiEyANEDUgDyAKIAwQQyAPIAtByCpqIg8qAgAQfCAKIAlBABBhBH8gBgRAIAJFBEAgBkHnnQIQhwIEQCAGEL4EIQYLCwUgAkEMbEGEyAFqKAIAIQYLAkACQCAKIAkQzQIEQCALLADgBw0BCyALQag1aigCACAJRg0AIAtBtDVqKAIAIAlGDQAMAQsgCSAOELUBIAkgDhCzAiAOEHQgC0HMM2pBAzYCAAsgC0G0M2oiEigCACAJRgR/QQkFQQhBByALQaAzaigCACAJRhsLQwAAgD8QQiEBIAogCUEBEJcBIAggCikDADcDSCAUIBMpAwA3AwAgC0HMKmoqAgAhGCANIAgpAkg3AgAgDCAUKQIANwIAIA0gDCABQQEgGBCsASANEGYgCiAJIAIgAyAEIAUgBiAHQQEgDRDrBSIBBEAgCRDLAQsgDigC9AQgDSANQQhqQRRBEyASKAIAIAlGG0MAAIA/EEIgC0GAK2oqAgBBDxB1IBFBwAAgAiADIAYQlgMgEWohAiAMIAoqAgAgCioCBCAPKgIAkhAyIBVDAAAAP0MAAAAAEDIgDCATIBEgAkEAIBVBABCtASAQKgIAQwAAAABeBEAgFiATKgIAIAtB3CpqKgIAkiAKKgIEIA8qAgCSEDIgDCAWKQIANwIAIAwgAEEAQQEQrgELIAEFQQALCyEXIAgkBCAXCwoAIAEgACgCCGoLSAECfyAALAAAIgEEQANAAkAgAEEBaiECIAFB/wFxQSVGIgEEQCACLAAAQSVHDQELIAIgACABG0EBaiIALAAAIgENAQsLCyAACzQAIABBAEgEfUMAAIAABSAAQQpIBH0gAEECdEHQxwFqKgIABUMAACBBQQAgAGuyEIMBCwsLNAECfxA8LAB/RQRAQZipBCgCACICQdzcAGoiAyADQYEYIAAgARC8AiACQdzcAGpqELkBCwuGAQEFfwJAAkAgAUGsqQQoAgAiA2oiBEGkqQQoAgAiAksNAEGoqQQoAgAgAEsEQCACQQFqIQQMAQsgAQRAIAAhAiADIQADQAJ/IAJBAWohBiAAQQFqIQMgACACLAAAOgAAIAFBf2oiAUUNAyAGCyECIAMhAAwAAAsACwwBC0GsqQQgBDYCAAsLQwEBfyAAQQBBABD5ASACIANyQQBOBEAgASgCCCIEIAJIIAQgAmsgA0hyRQRAIAAgAiABKAIAajYCACAAIAM2AggLCwtZAQJ/IwQhBSMEQRBqJAQgBSIEIAAgARCqCSACQQBKBEACQEEAIQADQCAEKAIEIAQoAghODQEgAEECdCADaiAEEMoENgIAIABBAWoiACACSA0ACwsLIAUkBAucAgIBfwJ9IAFDAAAAAFsEQCAFIAI4AgAgBCACOAIAIAMgAjgCAAUCQCAAQwAAgD8Q0wRDq6oqPpUiB6ghBkMAAIA/IAGTIAKUIQBDAACAPyAHIAaykyIIIAGUkyAClCEHQwAAgD9DAACAPyAIkyABlJMgApQhAQJAAkACQAJAAkACQCAGDgUAAQIDBAULIAMgAjgCACAEIAE4AgAgBSAAOAIADAULIAMgBzgCACAEIAI4AgAgBSAAOAIADAQLIAMgADgCACAEIAI4AgAgBSABOAIADAMLIAMgADgCACAEIAc4AgAgBSACOAIADAILIAMgATgCACAEIAA4AgAgBSACOAIADAELIAMgAjgCACAEIAA4AgAgBSAHOAIACwsL8AEBA38jBCEBIwRBEGokBCAAQSBqIgIQOiAAQShqIgMQOiAAQQA2AgAgAEEANgIEIABBAToACCAAQQA2AgwgAEMAAAAAOAIQIABBAzYCFCAAQQE2AhggAEEAOgAcIAFDAAAAAEMAAAAAEDIgAiABKQMANwIAIAFDAAAAAEMAAAAAEDIgAyABKQMANwIAIABBADYCMCAAQwAAAAA4AjQgAEP//39/OAI4IABBADoAPCAAQUBrQQA2AgAgAEMAAIA/OAJEIABCADcCSCAAQgA3AlAgAEIANwJYIABCADcCYCAAQgA3AmggAEEANgJwIAEkBAsQACABIABrsiAClCAAspKoC0YAIAAoAiggAUH//wNxIgFKBH8gACgCMCABQQF0ai4BACIBQX9GBH8gACgCNAUgACgCGCABQf//A3FBKGxqCwUgACgCNAsLFQAgAEH/AXFBIEYgAEH/AXFBCUZyCyYAIARBgICACE8EQCAAIAEQYyAAIAIQYyAAIAMQYyAAIAQQgQILCz8AIAAoAjQgASkCADcCACAAKAI0IAIpAgA3AgggACgCNCIBIAM2AhAgACABQRRqNgI0IAAgACgCMEEBajYCMAsUACAAIAAoAkhBf2o2AkggABDbBAsOACAAKAIIIAFB2ABsagsMACAAQwAAAAA4AgALSwEDfyAAKAIEIAFIBEAgAUEDdBBTIQIgAEEIaiIDKAIAIgQEQCACIAQgACgCAEEDdBBGGiADKAIAEEELIAMgAjYCACAAIAE2AgQLCy0BAn8QYCgCvAMiACgCDCEBIABBLGoiACABEFVBDGogACABEFVBFGpBABCIAgtUAQN9IAEqAgAiBCACKgIAIgVdRQRAIAMqAgAiBSAEIAQgBV4bIQULIAEqAgQiBiACKgIEIgRdRQRAIAMqAgQiBCAGIAYgBF4bIQQLIAAgBSAEEDILWgEDf0GYqQQoAgAiBEGcNGohAiAAQQBKBH8gAiAAQX9qEHpBBGoFIAJBABB6QQhqCygCACEDIAIgABCRBSABBEAgBEH0NWooAgBFBEAgAxCJBCEDCyADEHQLC0EBAX9BmKkEKAIAQZQzaigCACECIAEQ9QIEf0EIEIsCBH8gAAR/IAIgABBeBSACKAKMAgsQ7QJBAQVBAAsFQQALC8ACAQd/IwQhBSMEQTBqJARBmKkEKAIAIgJBlDNqKAIAIQMgAkGoNGooAgAhBCAFQQhqIgEiBkEUahA6IAZBHGoQOiABIAA2AgAgAUEANgIEIAEgAzYCCCABIAJByDJqIgYoAgA2AgwgASADQcADahBwKAIANgIQIAUQ8AQgAUEUaiIDIAUpAwA3AgAgASACQfABaiIHIAMgBxCVARspAgA3AhwgBEEBaiEDIAJBnDRqIgIoAgAgBEoEQAJAIAAgAiAEEHooAgBGBEAgAiAEEHooAgwgBigCAEF/akYEQCABKAIMIQAgAiAEEHogADYCDAwCCwsgAiADEJEFIAIgBBB6IgAgASkCADcCACAAIAEpAgg3AgggACABKQIQNwIQIAAgASkCGDcCGCAAIAEoAiA2AiALBSACIAEQ7AYLIAUkBAs/AQN/EDwiAUH0AmoiACICIAIoAgBBf2o2AgAgASAAEH4Ef0EABSAAKAIIIAAoAgBBf2pBAnRqKAIACzYC6AILRgECfwJ/EDwiAkH0AmohAyABBEAgAkHoAmoiASAAIAEoAgByNgIABSACQegCaiIBIAEoAgAgAEF/c3E2AgALIAMLIAEQeAs4AQN/IwQhASMEQRBqJAQQYCECIAFBCGoiAxDJAiABIAJByAFqIAJBDGoQQCAAIAMgARBAIAEkBAsQACAAIAEqAgAgASoCDBAyC4sDAwR/AX4EfSMEIQYjBEEgaiQEIAYhA0GYqQQoAgAiBEHENGooAgAEQCAEQfg0aioCACEJIARBgDVqKgIAIQogAiAEQfQ0aioCACILQwAAAABgRSAEQfw0aioCACIIQwAAAABgRXIEfSABKgIcBSACKgIAIAsgCBBkCzgCACAJQwAAAABgRSAKQwAAAABgRXIEfSACQQRqIQUgASoCIAUgAkEEaiIFKgIAIAkgChBkCyEIIAUgCDgCACAEQYQ1aiIFKAIABEAgA0EEahA6IANBDGoQOiADQRRqEDogAyAEQYg1aigCADYCACADIAEpAgw3AgQgAyABKQIcNwIMIAMgAikCADcCFCADIAUoAgBB/wFxQeAEahEEACACIAMpAhQ3AgALCyABKAIIQcCAgAhxRQRAIAMgAiAEQaQqahCmASACIAMpAwAiBzcCACACIAdCIIinviABEL8BIAEQ0QGSQwAAAAAgBEGcKmoqAgBDAACAv5IQOZIQOTgCBAsgACACKQIANwIAIAYkBAssAQJ/QZipBCgCACIAQbQzaigCACIBBH8gASAAQZQzaigCACgCjAJGBUEACwsHAEHAABADCxYAIABBmKkEKAIAQeoHamosAABBAEcLXQICfwF9IABBAE4EQEGYqQQoAgAiA0HYCGogAEECdGoqAgAiBEMAAAAAWyICIAFBAXNyRQRAIAQgAyoCiAEiBF4EfyAAIAQgAyoCjAEQhAdBAEoFQQALIQILCyACCxAAIAIEQCAAIAEgAhBGGgsLgAMCBH8BfCMEIQMjBEEQaiQEIAMhASAAvCICQR92IQQgAkH/////B3EiAkHbn6T6A0kEQCACQYCAgMwDTwRAIAC7ENQBIQALBQJ9IAJB0qftgwRJBEAgBEEARyEBIAC7IQUgAkHkl9uABE8EQEQYLURU+yEJQEQYLURU+yEJwCABGyAFoJoQ1AEMAgsgAQRAIAVEGC1EVPsh+T+gENMBjAwCBSAFRBgtRFT7Ifm/oBDTAQwCCwALIAJB1uOIhwRJBEAgBEEARyEBIAC7IQUgAkHg27+FBE8EQEQYLURU+yEZQEQYLURU+yEZwCABGyAFoBDUAQwCCyABBEAgBUTSITN/fNkSQKAQ0wEMAgUgBUTSITN/fNkSwKAQ0wGMDAILAAsgACAAkyACQf////sHSw0AGgJAAkACQAJAIAAgARCVB0EDcQ4DAAECAwsgASsDABDUAQwDCyABKwMAENMBDAILIAErAwCaENQBDAELIAErAwAQ0wGMCyEACyADJAQgAAuDAwMEfwF9AXwjBCEDIwRBEGokBCADIQEgALwiAkEfdiEEIAJB/////wdxIgJB25+k+gNJBH0gAkGAgIDMA0kEfUMAAIA/BSAAuxDTAQsFAn0gAkHSp+2DBEkEQCAEQQBHIQEgALshBiACQeOX24AESwRARBgtRFT7IQlARBgtRFT7IQnAIAEbIAagENMBjAwCCyABBEAgBkQYLURU+yH5P6AQ1AEMAgVEGC1EVPsh+T8gBqEQ1AEMAgsACyACQdbjiIcESQRAIARBAEchASACQd/bv4UESwRARBgtRFT7IRlARBgtRFT7IRnAIAEbIAC7oBDTAQwCCyABBEAgAIy7RNIhM3982RLAoBDUAQwCBSAAu0TSITN/fNkSwKAQ1AEMAgsACyAAIACTIAJB////+wdLDQAaAkACQAJAAkAgACABEJUHQQNxDgMAAQIDCyABKwMAENMBDAMLIAErAwCaENQBDAILIAErAwAQ0wGMDAELIAErAwAQ1AELCyEFIAMkBCAFC4MBAgJ/AX4gAKchAiAAQv////8PVgRAA0AgAUF/aiIBIAAgAEIKgCIEQgp+fadB/wFxQTByOgAAIABC/////58BVgRAIAQhAAwBCwsgBKchAgsgAgRAA0AgAUF/aiIBIAIgAkEKbiIDQQpsa0EwcjoAACACQQpPBEAgAyECDAELCwsgAQsQACAAQSBGIABBd2pBBUlyCxwAIABBgGBLBH9BiKoEQQAgAGs2AgBBfwUgAAsLEwAgACgCCCAAKAIAQX9qQQR0agtCAQJ/An8gASEDIAAoAgAhASADCyAAKAIEIgBBAXVqIgIgAEEBcQR/IAEgAigCAGooAgAFIAELQf8BcUHgBGoRBAALZQEEf0GYqQQoAgAiAUGcNGooAgAiAkEASgRAAkAgAUGkNGooAgAhAwN/IAJBf2oiAUEkbCADaigCBCIABEAgACgCCEGAgIDAAHENAgsgAkEBSgR/IAEhAgwBBUEACwshAAsLIAALEgAgASAAKAIAaiACQQFxOgAACxAAIAEgACgCAGosAABBAEcLOQEBf0GYqQQoAgAhASAAKAIIQYACcUUEQCABQaTYAGoiACoCAEMAAAAAXwRAIAAgASgCHDYCAAsLCycBAX8jBCECIwRBEGokBCACIAEQjwEgAEGQ7AEgAhAENgIAIAIkBAsrAQJ/QZipBCgCACIBKALcASICBEAgASgC4AEgACACQf8BcUHyBmoRAQALC3oBBH8jBCEDIwRBMGokBEGYqQQoAgAhBCADQSBqIgUgACABEEMgAgRAIAUgBEGUM2ooAgBBzANqELUCCyADQQhqIgAgBSAEQeQqaiIBEEAgAyAFQQhqIAEQNSADQRBqIgEgACADEEMgASAEQfABahCaBSEGIAMkBCAGC0cCAX8CfCMEIQEjBEEQaiQEAnwgACgCAEHc+AEoAgAgAUEEahAGIQMgASABKAIEEF8gARDMASABJAQgAwtEAAAAAAAAAABiC1ABAn8gACwACyIBQQBIBEAgACgCBCICQQRqEMkBIgEgAjYCACAAKAIAIQAFIAFB/wFxIgJBBGoQyQEiASACNgIACyABQQRqIAAgAhBGGiABC1EBAX9BmKkEKAIAIgFBoDNqIAA2AgAgAUGkM2pBADoAACAABEAgAUGoM2ooAgAgAEcEQCABQbAzakMAAAAAOAIAIAFBrDNqQwAAAAA4AgALCwsTACAAIAEoAgA2AgAgAUEANgIACy4BAX9BmKkEKAIAIgJBpDVqIAA2AgAgAkGgNWooAgBBgAZqIAFBAnRqIAA2AgALMwEBfyMEIQIjBEEQaiQEIAIgATYCACACQQQgAEHAA2oQcCgCABC7ASIAELQCIAIkBCAAC70BAgh/AX0jBCEDIwRBIGokBCADQRhqIQUgA0EQaiEGIANBCGohByADIQhBmKkEKAIAIgRB0CpqKgIAIgtDAAAAAF4EQAJ/IARBlDNqKAIAIgkoAvQEIQogBkMAAIA/QwAAgD8QMiAFIAAgBhA1IAhDAACAP0MAAIA/EDIgByABIAgQNSAKCyAFIAdBBkMAAIA/EEIgAkEPIAsQpAEgCSgC9AQgACABQQVDAACAPxBCIAJBDyALEKQBCyADJAQLTQEBfyABBH8gACgCAEEASgR/An8DQCAAIAIQVSgCACABRwRAIAJBAWoiAiAAKAIASARADAIFQQAMAwsACwsgACACEFULBUEACwVBAAsLKAECfSAAIAEqAgAiBCAClCABKgIEIgUgA5STIAQgA5QgBSAClJIQMgv3EAIjfwh9IwQhBiMEQeABaiQEIAZBIGohDSAGQZABaiEPIAZBgAFqIQUgBkHwAGohCyAGQeAAaiEEIAZBEGohByAGIQggBkHQAWohECAGQcABaiEWIAZBuAFqIRkgBkGwAWohGiAGQagBaiEbIAZBoAFqIRwQPCIXLAB/BEBBACECBUGYqQQoAgAhCRD+ASErIAJBEHEEfUMAAAAABSArIAlB3CpqKgIAkgshKQJ9EL4BIS0gAEEAEJABIRgQvAEgABC9ASACQff/v3xxQYiAwAByIAIgAkEgcRsiA0EIcUUEQCABIAMQyAgLIANBgIDAA3FFBEAgCUHY1wBqKAIAQYCAwANxIANyIQMLIANBgICADHFFBEAgCUHY1wBqKAIAQYCAgAxxIANyIQMLIAlB2NcAaigCACIKQf//v0BxIANBACAKQYCAgDBxIANBgICAMHEbcnIiCkECcSIORSETIAcgASgCACIMNgIAIAdBBGoiFCABKAIEIhE2AgAgB0EIaiIVIAEoAggiEjYCACAMviEnIBG+ISggEr4hKiAHIBMEfSABKgIMBUMAAIA/CyImOAIMIANBgICAAXEiHkEARyIfBEAgJyAoICogByAUIBUQ8QMgByoCACEnIBQqAgAhKCAVKgIAISogByoCDCEmCyAtCyApkyEpIApBgIAgcUEARyEMQQQgDkEBdmshDiAIICdDAAB/Q5RDAAAAP0MAAAC/ICdDAAAAAGAbkqgiIDYCACAIQQRqIREgCCAoQwAAf0OUQwAAAD9DAAAAvyAoQwAAAABgG5KoIiE2AgQgCEEIaiESIAggKkMAAH9DlEMAAAA/QwAAAL8gKkMAAAAAYBuSqCIiNgIIIAhBDGohIyAIICZDAAB/Q5RDAAAAP0MAAAC/ICZDAAAAAGAbkqgiJDYCDCAKQSBxRSIdIANBgIDAAXFBAEdxBH9DAACAPyApIAlB3CpqIhEqAgAiJyAOQX9qsiIolJMgDrKVqLIQOSEmQwAAgD8gKSAnICaSICiUk6iyEDkhJyAQQZeeAkGfngIgA0GAgIAIcUEARyISG0EAQQBDAACAvxBsQQAgHkEVdkEBaiAmIBAqAgBfGyELICYQzgECfyAOBH9DAAAAAEMAAIA/IAwbISYgCkEIcUUhEEEAQf8BIAwbIQxBACEEQQAhBUEAIQMDfyAEBEBDAAAAACARKgIAEGsLIA4gBEEBaiIPRgRAICcQzgELIBIEfyAFQQFxIARBAnRB0MgBaigCACAEQQJ0IAdqQ4GAgDtDAAAAACAmIAtBBHRB4MgBaiAEQQJ0aigCAEMAAIA/ENcDQQFxciIDBSAFQQFxIARBAnRB0MgBaigCACAEQQJ0IAhqQwAAgD9BACAMIAtBBHRBkMkBaiAEQQJ0aigCABDWA0EBcXILIQUgEARAQaWeAkEBEOwCGgsgDiAPRgR/IAMFIA8hBAwBCwsFQQAhBUEACyElEIoBEIoBIAVBAXFBAEchAyAlC0EBcUEARwUgA0GAgIACcUEARyAdcQRAICBBAEH/ARDSASEDICFBAEH/ARDSASEQICJBAEH/ARDSASEMIBMEQCAkQQBB/wEQ0gEhCyAEIAM2AgAgBCAQNgIEIAQgDDYCCCAEIAs2AgwgDUHAAEGtngIgBBBzGgUgCyADNgIAIAsgEDYCBCALIAw2AgggDUHAAEG/ngIgCxBzGgsgKRDOAUHNngIgDUHAAEEGQQAQkAMEfyANIQMDQAJAIAMsAAAiBEEjRwRAIAQQ4gJFDQELIANBAWohAwwBCwsgCEIANwMAIAhCADcDCCATBEAgBSAINgIAIAUgETYCBCAFIBI2AgggBSAjNgIMIANB1J4CIAUQqAEaBSAPIAg2AgAgDyARNgIEIA8gEjYCCCADQeWeAiAPEKgBGgtBAQVBAAshAyAKQQhxRQRAQaWeAkEBEOwCGgsQigEFQQAhAwtBAAshBCAKQRBxBEBBACEFIAMhAgUgHQRAQwAAAAAgCUHcKmoqAgAQawsgFiABKgIAIAEqAgQgASoCCCATBH0gASoCDAVDAACAPwsQNiAZQwAAAABDAAAAABAyIA0gGSkCADcCAEHyngIgFiAKIA0Q1QIgCkEEcUVxBEAgCUHc1wBqIgUgFikCADcCACAFIBYpAgg3AghBgJ8CEKsDIBogF0GUAmoQ8QIgG0MAAIC/IAlB2CpqKgIAEDIgDSAaIBsQNSAcQwAAAABDAAAAABAyIA1BACAcEJwCCyAKQQhxRQRAQaWeAkEBEOwCGgtBgJ8CEKkDBEAgCUGUM2ooAgAhBSAAIBhHBEAgACAYELkBEP8FCyArQwAAQEGUEM4BQYefAiABIAJBgoCkPHFBgIHQA3IgCUHc1wBqENMDIANyIQIQigEQyAEFQQAhBSADIQILCyAKQYABcUUgACAYR3EEQEMAAAAAIAlB3CpqKgIAEGsgACAYELkBCyAFRSIDBEAgBEUEQEEAIQADQCAAQQJ0IAdqIABBAnQgCGooAgCyQwAAf0OVOAIAIABBAWoiAEEERw0ACwsgHwRAIAcqAgAgFCoCACAVKgIAIAcgFCAVEN4CCyACBEAgASAHKAIANgIAIAEgFCgCADYCBCABIBUoAgA2AgggEwRAIAEgBygCDDYCDAsLCxB5ELEBIApBgARxRSAXKAKQAkEBcUEAR3EEQBDHBgRAQZCfAkEAEOsEIgAEQCABIAAoAgAiACkAADcAACABIAAoAAg2AAhBASECC0GXnwJBABDrBCIABEAgASAAKAIAIA5BAnQQRhpBASECCxDGBgsLIANFBEAgCUG0M2ooAgAiAARAIAlB2DNqKAIAIAVGBEAgFyAANgKMAgsLCyACBEAgFygCjAIQywELCyAGJAQgAgs0AQJ/IwQhBSMEQRBqJAQgBUMAAAAAQwAAAAAQMiAAIAEgAiAFIAMgBBC9BCEGIAUkBCAGCzEBAX8gACgCBCAAKAIIRwRAIAAQ7QUgACAAKAIEIgE2AgAgACABNgIIIABBADoADwsL5AEBBH8gAEHkHGooAgBBgIAQcUEARyEEIAAoAiwhBSACIANBAXQgAmoQpAMhBgJ/AkAgBA0AIAAoAiggBmogACgCMEgNAEEADAELIAMgBWogAEEEaiIHKAIATgRAQQAgBEUNARogByADQQJ0QSBBgAIgAxC6ARDSASAFQQFqahDAAQsgACgCDCABQQF0aiEEIAEgBUcEQCADQQF0IARqIAQgBSABa0EBdBCzARoLIAQgAiADQQF0EEYaIAAgAyAAKAIsaiIBNgIsIAAgACgCKCAGajYCKCAHIAEQlAJBADsBAEEBCwtoAQJ/IAAgARCCASABKAIEIgIgASgCCCIDRwRAIAIgA0gEQCAAIAEgAiADIAJrENoDIAEgASgCBCIANgIIBSAAIAEgAyACIANrENoDIAEgASgCCCIANgIECyABIAA2AgAgAUEAOgAPCwsQACAAQdwcakOamZm+OAIACyMBAX8jBCEDIwRBEGokBCADIAI2AgAgACABIAMQgQYgAyQEC7MBAQZ/IwQhBSMEQSBqJAQgBUEYaiEGIAVBEGohByAFQQhqIQggBSEJIAJBAkkEfyAJIAMoAgA2AgAgACABIAQgCRBzBQJ/IAJBAXJBA0YEQCAIIAMpAwA3AwAgACABIAQgCBBzDAELAkACQAJAIAJBBGsOAgABAgsgByADKgIAuzkDACAAIAEgBCAHEHMMAgsgBiADKwMAOQMAIAAgASAEIAYQcwwBC0EACwshCiAFJAQgCgtAAQJ/IAAoAgQgAUgEQCABEFMhAiAAKAIIIgMEQCACIAMgACgCABBGGiAAKAIIEEELIAAgAjYCCCAAIAE2AgQLC6wBAQl/IwQhAiMEQTBqJAQgAkEYaiEDIAJBEGohBCACIQYgAkEIaiEFIAJBKGohCRA8IgcsAH8Ef0EABSAHIAAQXiEIIAYgASkCADcDACADIAYpAgA3AgAgBCADQwAAAABDAAAAABDJAyAFIAdByAFqIgAgBBA1IAMgACAFEEMgBEMAAAAAEKkBIAMgCEEAEGEEfyADIAggBSAJQQAQkQEFQQALCyEKIAIkBCAKCwsAIAAgAUEAEOcDC4gEAgd/A30jBCEMIwRBEGokBCAGBH8gBgUgBRBcIAVqCyEIIAwhCyACIAEqAgCVIRAgAEMAAAAAQwAAAAAQMiAEQwAAAABeIQ0gCCAFSwR/An8gAUE4aiEOQQAhBgNAAkACQAJAIA1FDQAgBkUEQCABIBAgBSAIIAQgD5MQ1wQiBkEBaiAGIAUgBkYbIQYLIAUgBkkNACAAKgIAIA9dBEAgACAPOAIACyAAIAAqAgQgApI4AgQgBSAISQR/A38gBUEBaiAFIAUsAAAiBRDiAiIGIAVBCkZyGyEFIAYgBSAISXENAEMAAAAAIQ9BAAsFQwAAAAAhD0EACyEGDAELIAsgBSwAACIJIgo2AgAgCUF/SgRAIAVBAWohCQUgCyAFIAgQpgIgBWohCSALKAIAIgpFBEAgCSEFDAMLCwJAAkAgCkEgTw0AAkACQCAKQQprDgQAAgIBAgsgACAAKgIAIA8QOTgCACAAIAAqAgQgApI4AgRDAAAAACEPCwwBCyAPIBAgCiABKAIcSAR/IAEoAiQgCkECdGoFIA4LKgIAlJIiESADYA0CIBEhDwsgCSEFCyAFIAhJDQEgAAwCCwsgAAsFIAALIgEqAgAgD10EQCABIA84AgALIAAqAgQiA0MAAAAAWyAPQwAAAABecgRAIAAgAyACkjgCBAsgBwRAIAcgBTYCAAsgDCQECxwAIABBGHRBGHVBXEFdIABBGHRBGHVB2wBKG2oLNQAgACAAKgIQIAGSIgE4AhAgACAAKgIUIAKSIgI4AhQgAEECIAGoIAKoQQBBAEEAQQAQ6gMLEAAgACgCCCAAKAIAQQN0agthAQR/IAAoAgghAiAAKAIAIgAEQCAAQQN0QQN1IQMgAiEAA0AgA0EBdiICQQN0IABqIgUoAgAgAUkhBCAFQQhqIAAgBBshACADQX9qIAJrIAIgBBsiAw0ACwUgAiEACyAAC/QBAQN/IwQhCSMEQRBqJAQgCSIHQQhqIQggBiAFIAMgBHJyckGAgIAITwRAIAcgACgCKCkCADcDACAAQQZBBBCwASAAIAAoAjBB//8DcRCWAiAAIAAoAjBBAWpB//8DcRCWAiAAIAAoAjBBAmpB//8DcRCWAiAAIAAoAjBB//8DcRCWAiAAIAAoAjBBAmpB//8DcRCWAiAAIAAoAjBBA2pB//8DcRCWAiAAIAEgByADEOQCIAggAioCACABKgIEEDIgACAIIAcgBBDkAiAAIAIgByAFEOQCIAggASoCACACKgIEEDIgACAIIAcgBhDkAgsgCSQEC/cCAgJ/An0jBCEGIwRBEGokBCAGIQUgBEUgA0MAAAA/QwAAgD8gBEEDcUEDRiAEQQxxQQxGchsgAioCACABKgIAIgeTi5RDAACAv5IQRUMAAAA/QwAAgD8gBEEFcUEFRiAEQQpxQQpGchsgAioCBCABKgIEIgOTi5RDAACAv5IQRSIIQwAAAABfcgRAIAAgARBjIAUgAioCACABKgIEEDIgACAFEGMgACACEGMgBSABKgIAIAIqAgQQMiAAIAUQYwUgBSAHIAhDAAAAACAEQQFxGyIHkiADIAeSEDIgACAFIAdBBkEJEMYBIAUgAioCACAIQwAAAAAgBEECcRsiA5MgAyABKgIEkhAyIAAgBSADQQlBDBDGASAFIAIqAgAgCEMAAAAAIARBCHEbIgOTIAIqAgQgA5MQMiAAIAUgA0EAQQMQxgEgBSAIQwAAAAAgBEEEcRsiAyABKgIAkiACKgIEIAOTEDIgACAFIANBA0EGEMYBCyAGJAQLXgAgACoCABBaQwAAf0OUQwAAAD+SqCAAKgIEEFpDAAB/Q5RDAAAAP5KoQQh0ciAAKgIIEFpDAAB/Q5RDAAAAP5KoQRB0ciAAKgIMEFpDAAB/Q5RDAAAAP5KoQRh0cgv1AQICfwR9IwQhBSMEQRBqJAQgBSIEIAEqAgAgASoCBCACKgIAIAIqAgQQNiADBEAgACgCPCIBBEAgAUF/aiICQQR0IAAoAkQiAWoqAgAhBiACQQR0IAFqKgIEIQcgAkEEdCABaioCCCEIIAJBBHQgAWoqAgwhCSAEKgIAIAZdBEAgBCAGOAIACyAEKgIEIAddBEAgBCAHOAIECyAEKgIIIAheBEAgBCAIOAIICyAEKgIMIAleBEAgBCAJOAIMCwsLIAQgBCoCACAEKgIIEDk4AgggBCAEKgIEIAQqAgwQOTgCDCAAQTxqIAQQ2gkgABD2AyAFJAQLAwABC1YBA38gAUUiBCAAIAFJcgRAA0ACQCAALgEAIgNFDQAgA0H//wNxQYABSAR/IAJBAWoFIANB//8DcRDcCSACagshAiAAQQJqIgAgAUkgBHINAQsLCyACCwsAIAAgASACELoEC1oBA38jBCEDIwRBEGokBCADIQJBmKkEKAIAIgRBzNgAaiwAAARAIAIgATYCACAEQdDYAGooAgAiAQRAIAEgACACEJkEGgUgBEHU2ABqIAAgAhCBBgsLIAMkBAtLAQN/IAAoAgQgAUgEQCABQRxsEFMhAiAAQQhqIgMoAgAiBARAIAIgBCAAKAIAQRxsEEYaIAMoAgAQQQsgAyACNgIAIAAgATYCBAsLHAAgACAAKgIAIAGUOAIAIAAgACoCBCABlDgCBAtAAQF/QZipBCgCACIBQZw0aigCACABQag0aigCAEoEfyABQZQzaigCACAAEF5BwQIQqgMFIAFBtDRqEIoEQQALC5oBAQV/IwQhAiMEQTBqJAQgAkEgaiEEIAJBGGohBSACIQNBmKkEKAIAIQYgABCsAwRAIAFBgICAgAFxBEAgBSAGQag0aigCADYCACADQRRBgYsCIAUQcxoFIAQgADYCACADQRRBjYsCIAQQcxoLIANBACABQYCAgCByEOsBIgBFBEAQyAELBSAGQbQ0ahCKBEEAIQALIAIkBCAACxcAQZipBCgCAEGUM2ooAgAgABBeEO0CCzQBAn9BmKkEKAIAIgFBnDRqIgIoAgAgAUGoNGooAgAiAUoEfyAAIAIgARB6KAIARgVBAAsLMAECf0GYqQQoAgAiAEGZNmosAAAEf0EBBSAAQYE2aiwAAAshASAAQYA2aiABOgAACxAAQZipBCgCAEG0MWoqAgALXQECfyMEIQMjBEEQaiQEQZipBCgCACIEQcQ0akEBNgIAIAMgACABEEMgBEH0NGoiACADKQIANwIAIAAgAykCCDcCCCAEQYQ1aiACNgIAIARBiDVqQQA2AgAgAyQEC6oBAgV/BH0jBCEBIwRBEGokBBA8IQNBmKkEKAIAIQIgAUEEaiIEQwAAgD8QvgEiBiACQdwqaioCACIHIABBf2oiBbIiCJSTIACylaiyEDkiCTgCACABQwAAgD8gBiAHIAmSIAiUk6iyEDk4AgAgA0GAA2oiAiABEHggAEEBSgRAQQAhAANAIAIgBBB4IAUgAEEBaiIARw0ACwsgAyACEHAoAgA2AuwCIAEkBAs2ACAAIAAqAgAgAZM4AgAgACAAKgIEIAGTOAIEIAAgACoCCCABkjgCCCAAIAAqAgwgAZI4AgwLMAECfSAAIAEqAgAiAyACKgIAIgQgAyAEXRsgASoCBCIDIAIqAgQiBCADIARdGxAyC4ADAwx/AX4BfSMEIQEjBEHQAGokBCABIQMgAUE4aiECIAFBKGohBCABQSBqIQYgAUEYaiEHIAFBEGohCCABQQhqIQlBmKkEKAIAIgpBlDNqIgUoAgAiAC4BhAFBAUoEQBDVAQUgAyAAKQIUIgw3AwAgACgCnAEiC0EBcQRAIANDAACAQCAMp74QOTgCAAsgDEIgiKe+IQ0gC0ECcQRAIANDAACAQCANEDk4AgQLENUBIAQgBSgCAEHIAWoiBSADEDUgAiAFIAQQQyADQwAAAAAQqQECQAJAIAAoArwCRQRAIAAsAMUCRQ0BCyAAKAIIQYCAgARxDQAgAiAAKAJUQQAQYRogAiAAKAJUQQEQlwEgACgCvAJFBEAgACAKQaA1aigCAEYEQCAHQwAAAEBDAAAAQBAyIAYgAiAHEEAgCUMAAABAQwAAAEAQMiAIIAJBCGogCRA1IAQgBiAIEEMgBCAKQaQ1aigCAEECEJcBCwsMAQsgAkEAQQAQYRoLCyABJAQLBgBBLBADCwYAQSEQAwt7AgF/BH1BmKkEKAIAIgJB9AdqIABBAnRqKgIAIgNDAAAAAFsEf0EBBQJ/IAEEQCADIAIqAogBIgZeBEAgAioCjAEiBEMAAAA/lCEFIAMgBpMiAyAEENMEIAVeIQBBASADIAIqAhiTIAQQ0wQgBV4gAHMNAhoLC0EACwsLQwEBfyAAQwAAAABbBH9BAQUgACACXyADQwAAAABfcgR/QQAFIAAgApMgA5WoIAEgApMgA5WoayIEQQAgBEEAShsLCwsZACAALAAAQQFGBH9BAAUgAEEBOgAAQQELCwYAIAAQVAspAQF/IwQhAiMEQRBqJAQgAiABNgIAQcyBAigCACAAIAIQmQQaIAIkBAtCAQF/IwQhAiMEQRBqJAQgAiABNgIAIAIhAUGYqQQoAgBB1ThqLAAABEAQ8QQFQQEQhQQLIAAgARDaAhCEBCACJAQLHwAgACgCBCABSARAIAAgACABEFgQhQILIAAgATYCAAsfACAAKAIEQQBIBEAgACAAQQAQWBCFAgsgAEEANgIACwoAIAAoAkRBAEcLngEBBH8jBCEFIwRBEGokBCAFQQhqIQQgBSEDIAIgACgCrAEiBnFFIAJBAEdxRQRAIAAgBkFxcTYCrAEgBEP//39/Q///f38QMiAAIAQpAwA3ArgBIAQgAEEMaiICKQIANwMAIAMgARCZASACIAMpAwA3AgAgAyACIAQQQCAAQcgBaiADELYCIAMgAiAEEEAgAEHgAWogAxC2AgsgBSQECw4AIABBH3FBzABqER0ACxEAIAEgAEH/AXFB4ARqEQQACw0AIAAgASgCABAlEF8LDABBmKkEKAIAQQhqCxAAIABBrPsBNgIAIAAQ0wcLEAAgAEGU+wE2AgAgABDWBwsQACAAQfz6ATYCACAAENgHCxAAIABB5PoBNgIAIAAQ2gcLQgICfwJ8IwQhASMEQRBqJAQCfCAAKAIAQcT6ASgCACABQQRqEAYhBCABIAEoAgQQXyAEC6shAiABEMwBIAEkBCACC4ICAgZ/AX0jBCEEIwRBIGokBCAEIQcgBEEQaiEIQZipBCgCACEFIARBCGoiBhA6AkACQCABKgIAIgpDAAAAAF0NACABKgIEQwAAAABdDQAMAQsgBUGUM2ooAgBBDGohCSAIEMkCIAcgCSAIEDUgBiAHKQMANwMACyAKQwAAAABfBEAgCkMAAAAAXARAIAogBioCACAFQZQzaigCACoCyAGTQwAAgEAQOZIhAgsgASACOAIACyABKgIEIgJDAAAAAF8EQCACQwAAAABcBEAgAiAGKgIEIAVBlDNqKAIAKgLMAZNDAACAQBA5kiEDCyABIAM4AgQLIAAgASkCADcCACAEJAQLDAAgACgCACABEK0QCxcAIABB7PkBNgIAIAAgATYCECAAENwHCxcAIABBvPkBNgIAIAAgATYCFCAAEKgFCycBAX8jBCECIwRBEGokBCACIAEQzxAgAEHY6QEgAhAENgIAIAIkBAsoAQJ/An8jBCEDIwRBEGokBCAAQQdBoNEBQfLRAkEMIAEQAiADCyQECygBAn8CfyMEIQMjBEEQaiQEIABBCEHw0QFBh9ECQQUgARACIAMLJAQLKAECfwJ/IwQhAyMEQRBqJAQgAEEDQZz8AUGaywJBHSABEAIgAwskBAsTACAAIAEoAgA2AkwgACACNgJQC5QDAwZ/An4EfSMEIQojBEEgaiQEIAoiCUEIaiIIIAEpAgAiDjcDACAFBH8gCSAFKQIAIg83AwAgDqe+IRAgD6e+IREgCAUgCSADIARBAEMAAAAAEGwgCCoCACEQIAkqAgAhESAICyEFIBAgEZIgB0EIaiACIAdBAEciDBsiDSoCACISYAR/QQEFIAgqAgQgCSoCBJIgDSoCBGALIQsgByABIAwbIQEgDARAIBAgASoCAF0Ef0EBBSAIKgIEIAEqAgRdCyALQQFxckEARyELCyAGKgIAIhNDAAAAAF4EQCAFIBAgECATIAIqAgAgEJMgEZOUkhA5OAIACyAGKgIEIhFDAAAAAF4EQCAIIAgqAgQiECAQIBEgAioCBCAQkyAJKgIEk5SSEDk4AgQLIApBEGohAiALBEAgAiABKgIAIAEqAgQgEiANKgIEEDYgAEEAQwAAAAAgCEEAQwAAgD8QQiADIARDAAAAACACEP0BBSAAQQBDAAAAACAIQQBDAACAPxBCIAMgBEMAAAAAQQAQ/QELIAokBAufHgMjfwF+DH0jBCEEIwRB4AJqJARBmKkEKAIAIQkQPCIhKAL0BCEHIAAQvQEQvAEgAiACQQR2QRBxQRBzciEXIAJBCHFFBEAgASAXEMcICyACQYCAgDBxBH8gFwUgFyAJQdjXAGooAgBBgICAMHEiAkGAgIAQIAIbcgsiAkEIcQR/IAIFIAlB2NcAaigCAEGAgARxIAJyCyEKIARByAJqIQUgBEG4AmohBiAEQZABaiEIIARBOGohDiAEQShqIREgBEEYaiEMIARB8ABqIgsgISkCyAEiJzcDABD+ASIrEL4BQwAAAEBDAACAPyAKQQJxIgJBAEciGEEBcyAKQYCABHFBAEdxIh8bICsgCUHcKmoiEioCACIskpSTEDkhKSAsICkgJ6e+IiiSkiEtAn8gK0PNzEw+lKghJSAEIhcgAUEQIAJBAXRrIiIQRhogKUMAAAA/lCIvIClDCtejPZQiM5MhLiAEQaACaiIPICsgKZJDAAAAP5QgKJIgLyAnQiCIp76SEDIgBEGYAmoiGSAuIClDGy/dPJSospMiKkMAAAAAEDIgBEGQAmoiGiAqQwAAAL+UIiggKkPQs12/lBAyIARBiAJqIhsgKCAqQ9CzXT+UEDIgASoCACABQQRqIhUqAgAgAUEIaiIWKgIAIARB+AFqIARB6AFqIARB2AFqEPEDQQhBARDvAiAKQYCAgCBxQQBHIiAEQCAFICsgKSASKgIAkpIgKRAyQZ6fAiAFEJgDGgJ/EPMCBH8gBSAJQZAHaiAPEEAgBiAJQfABaiAPEEAgBSoCACIoICiUIAUqAgQiKCAolJIiKiAuQwAAgL+SIiggKJRgBH8gKiAvQwAAgD+SIiggKJRfBH8gBCAGKgIEIAYqAgAQ1gtD2w9JQJVDAAAAP5QiKEMAAIA/kiAoIChDAAAAAF0bOAL4AUEBBUEACwVBAAshAiAIIAUgBCoC+AFDAAAAwJRD2w9JQJQiKBD5AiIqICgQ+AIiKBCOAyAZIBogGyAIEPwEBH8gCCAGICogKBCOAyAZIBogGyAIEPwERQRAIA4gGSAaIBsgCBCxCiAIIA4pAwA3AwALIBkgGiAbIAggDiARIAwQsgogBEMAAIA/IBEqAgCTQxe30ThDAACAPxBkIig4AtgBIAQgDioCACAolUMXt9E4QwAAgD8QZDgC6AFBASEcQQEFIAILBUEAIQJBAAshIyAcQQFxQQBHIRMgAkEBcUEARyEcICMLQQFxQQBHIQIgCkEIcUUEQEGlngJBARDsAhoLBSAKQYCAgBBxBH8gBSApICkQMkGinwIgBRCYAxoQ8wIEfyAEIAkqAvABIAsqAgCTIClDAACAv5IiKJUQWjgC6AEgBEMAAIA/IAkqAvQBIAsqAgSTICiVEFqTOALYAUEBIRNBAQVBAAshAiAKQQhxRQRAQaWeAkEBEOwCGgsgBSAtIAsqAgQQMiAFEIcEIAUgKyApEDJBpZ8CIAUQmAMaIBNBAEchExDzAgR/IAQgCSoC9AEgCyoCBJMgKUMAAIC/kpUQWjgC+AFBASECQQEFQQALBUEAIQJBAAshHAsgLCArIC2SIjCSITEgHwRAIAUgMSALKgIEEDIgBRCHBCAFICsgKRAyQamfAiAFEJgDGhDzAgR/IAFDAACAPyAJKgL0ASALKgIEkyApQwAAgL+SlRBakzgCDEEBBSACCyECCxDuAiAKQYACcUEARyIdRQRAQwAAAAAgEioCABBrELwBCyAKQYABcUEARyIQRQRAIABBABCQASINIABHBEAgHQRAQwAAAAAgEioCABBrCyAAIA0QuQELCyAEQYgBaiENIARBgAFqIQAgBEGwAmohHiAEQagCaiESIB1FBEBBEEEBEO8CIAYgASoCACAVKgIAIBYqAgAgGAR9QwAAgD8FIAEqAgwLEDYgEARAQa+fAiAAEGkLIB4gK0MAAEBAlCIqICtDAAAAQJQiKBAyIAUgHikCADcCAEG3nwIgBiAKQcCAOHEiACAFENUCGiADBEBBwZ8CIA0QaSAIIAMqAgAgAyoCBCADKgIIIBgEfUMAAIA/BSADKgIMCxA2IBIgKiAoEDIgBSASKQIANwIAQcqfAiAIIAAgBRDVAgR/IAEgAyAiEEYaQQEFIAILIQILEO4CELEBCyATIBxyBEAgBCoC+AEiKEOsxSe3kiAoIChDAACAP2AbIAQqAugBIihDrMUnNyAoQwAAAABeGyAEKgLYASIoQ703hjUgKEMAAAAAXhsgASAVIBYQ3gILIApBIHEEQCACIQAFICsgMSAtIB8bkiALKgIAkxDOASAKQZqAuAxxIRACfyAKQYCAwANxRSINIApBgIDAAHFyBH9B1Z8CIAEgEEGEgMAAchCPAwR/QQEhAiAJQbQzaigCAAR/IAlBxTNqLAAARQVBAAsFQQALBUEACyEkIA0gCkGAgIABcXIEf0HbnwIgASAQQYSAgAFyEI8DIAJyBSACCyEAIA0gCkGAgIACcXIEQEHhnwIgASAQQYSAgAJyEI8DIAByIQALEIoBICQLBEAgASoCACAVKgIAIBYqAgAgBSAGIAgQ8QMgBSoCAEMAAAAAXyAEKgL4ASIsQwAAAABecQRAAkAgCCoCACIqQwAAAABfBEAgBCoC2AEiKCAqXARAICwgBCoC6AEgKEMAAAA/lCABIBUgFhDeAgwCCwsgBioCAEMAAAAAXwRAICwgBCoC6AFDAAAAP5QgKiABIBUgFhDeAgsLCwsLIARBqAFqIQkgBEEQaiEYIARBoAFqIR0gBEGAAmohAiAEQfABaiEeIARB4AFqIRIgBEHQAWohECAEQcgBaiENICULsiEyIA5DAACAP0MAAIA/QwAAgD9DAACAPxA2IAQqAvgBQwAAgD9DAACAPyAOIA5BBGogDkEIahDeAiAOEKEDIQ4gBSABKgIAIBUqAgAgFioCAEMAAIA/EDYgBRChAyEUIBEQOiAgBEBDAADAPyAvlSEtQQQgL6hBDG0QugEhICAvIC6SIjBDAAAAP5QhKkEAIQIDQCAHKAIYIRAgByAPICogArIiKEMAAMBAlUMAAABAlEPbD0lAlCAtkyIsIC0gKEMAAIA/kkMAAMBAlUMAAABAlEPbD0lAlJIiKCAgEJcCIAdBf0EAIDMQjwIgBygCGCENIAggDyoCACAuICwQ+QKUkiAPKgIEIC4gLBD4ApSSEDIgDCAPKgIAIC4gKBD5ApSSIA8qAgQgLiAoEPgClJIQMiAEIAgpAwA3A3ggBCAMKQMANwNoIAJBAnRBwMkBaigCACEKIAJBAWoiAkECdEHAyQFqKAIAIQMgBiAEKQJ4NwIAIAUgBCkCaDcCACAHIBAgDSAGIAUgCiADENEJIAJBBkcNAAsgBCoC+AFDAAAAQJRD2w9JQJQiKBD5AiEsICgQ+AIhKiAFIDAgLJRDAAAAP5QgDyoCAJIgMCAqlEMAAAA/lCAPKgIEkhAyIDNDZmYmP0PNzAw/IBwblCIoQzMzsz+VqEEJQSAQ0gEhAiAHIAUgKCAOIAIQlQIgByAFIChDAACAP5JBgIGCfCACQwAAgD8QuwIgByAFIChBfyACQwAAgD8QuwIgCCAZICwgKhCOAyAGIA8gCBA1IAwgGiAsICoQjgMgCCAPIAwQNSAJIBsgLCAqEI4DIAwgDyAJEDUgCRDXBiAHQQZBBhCwASAHIAYgCSAOELcCIAcgCCAJIA4QtwIgByAMIAlBfxC3AiAHIAYgCUEAELcCIAcgCCAJQYCAgHgQtwIgByAMIAlBABC3AiAHIAYgCCAMQYCBgnxDAADAPxCmBiAdIAwgBiAEKgLoARBaENoFIBggHSAIQwAAgD8gBCoC2AGTEFoQ2gUgESAYKQMANwMABSAKQYCAgBBxBEAgBiApICkQMiAFIAsgBhA1IAcgCyAFQX8gDiAOQX8QnwMgBiApICkQMiAFIAsgBhA1IAcgCyAFQQBBAEGAgIB4QYCAgHgQnwMgBCALKQMANwNgIAggKSApEDIgAiALIAgQNSAGIAQpAmA3AgAgBSACKQIANwIAIAYgBUMAAAAAEIwDIBEgCyoCACIoICkgBCoC6AEQWpSSQwAAAD+SqLIgKEMAAABAkiApICiSQwAAAMCSEGQ4AgAgESALKgIEIiogKUMAAIA/IAQqAtgBkxBalJJDAAAAP5KosiAqQwAAAECSICkgKpJDAAAAwJIQZDgCBCApQwAAwECVIShBACECA0AgBSAtICggArKUICqSEDIgBiAwICggAkEBaiIDspQgCyoCBJIQMiAHIAUgBiACQQJ0QcDJAWooAgAiAiACIANBAnRBwMkBaigCACICIAIQnwMgCyoCBCEqIANBBkcEQCADIQIMAQsLICogKSAEKgL4AZSSQwAAAD+SqLIhKCAeIC0gKhAyIBIgMCApIAsqAgSSEDIgBiAeKQIANwIAIAUgEikCADcCACAGIAVDAAAAABCMAyAQIC1DAACAv5IgKBAyIA0gMkMAAIA/kiAyEDIgBiAQKQIANwIAIAUgDSkCADcCACAHIAYgBSArQwAAAECSENkFCwsgBEHAAWohAiAEQbgBaiENIARBsAFqIQogByARQwAAIEFDAADAQCATGyIoIBRBDBCVAiAHIBEgKEMAAIA/kkGAgYJ8QQxDAACAPxC7AiAHIBEgKEF/QQxDAACAPxC7AiAfBEAgASoCDBBaISogDCAxIAsqAgQiKCArIDGSICkgKJIQXSAEIAwpAwA3A1ggBCAMQQhqIgMpAwA3A1AgDBB2QwAAAD+UISggAkMAAAAAQwAAAAAQMiAIIAQpAlg3AgAgBiAEKQJQNwIAIAUgAikCADcCACAIIAZBACAoIAVDAAAAAEF/ELUEIAcgDCADIBQgFCAUQf///wdxIgIgAhCfAyApQwAAgD8gKpOUIAsqAgSSQwAAAD+SqLIhKCAEIAwpAwA3A0ggBCADKQMANwMwIAYgBCkCSDcCACAFIAQpAjA3AgAgBiAFQwAAAAAQjAMgDSAxQwAAgL+SICgQMiAKIDJDAACAP5IgMhAyIAYgDSkCADcCACAFIAopAgA3AgAgByAGIAUgK0MAAABAkhDZBQsQsQEgAAR/IBcgASAiEMUCBH8gISgCjAIQywFBAQVBAAsFQQALISYQeSAEJAQgJguwAwIGfwF9IwQhCyMEQdAAaiQEIAsiB0FAayEJEDwsAH8EQEEAIQEFQZipBCgCACEIIAVFBEAgAUEMbEGEyAFqKAIAIQULIAdBwAAgASACIAUQlgMaIAYgBkGCgAhxRXJBEHIhDCADBEAQ/gEhDRC8ASAAEL0BQwAAgD8QvgEgDSAIQdwqaiIKKgIAkkMAAABAlJMQORDOAUGargQgB0HAACAMQQAQkAMEfyAHIAhBpDpqKAIAIAEgAiAFELwEBUEACyEFEIoBQwAAAAAgCioCABBrIAkgDSANEDJBjp4CIAkgBkEGdkGAAnFBgQFyIgYQ5wMEQCABQS0gAiACIAQgAyAILACIAkEARyAEQQBHcRsQ3AVBASEFC0MAAAAAIAoqAgAQayAJIA0gDRAyQZCeAiAJIAYQ5wMEfyABQSsgAiACIAQgAyAILACIAkEARyAEQQBHcRsQ3AVBAQUgBQshAUMAAAAAIAoqAgAQayAAIABBABCQARC5ARB5ELEBBSAAIAdBwAAgDEEAEJADBH8gByAIQaQ6aigCACABIAIgBRC8BAVBAAshAQsLIAskBCABC9ABAQF9An8CQCAAKAIIRQ0AAn8QYCwAfw0BAkACQAJAAkACQCAAKAIMDgQAAQIDBAsgAEEANgIQIABBATYCFCAAENsDOAIAIABBATYCDEEBDAQLIAAoAghBAUYEQCAAQX82AghBAAwEBRDbAyEBIAAgACgCCEF/aiABIAAqAgCTELoEIAAgACgCEEEBajYCECAAIAAoAhRBAWo2AhQgAEEDNgIMQQEMBAsACyAAQQM2AgxBAQwCCyAAEOwFQQAMAQtBAAsMAQsgAEF/NgIIQQALC0ABA38jBCEGIwRBEGokBCAGQQRqIgcgAzYCACAGIAQ2AgAgAEEAIAEgAiAHIAYgBUMAAIA/EL8EIQggBiQEIAgLPQEDfyMEIQcjBEEQaiQEIAdBBGoiCCADOAIAIAcgBDgCACAAQQQgASACIAggByAFIAYQvwQhCSAHJAQgCQtRACAAQQRqIAEgAmoQlAIuAQAiAEEKRgR9QwAAgL8FQZipBCgCAEGwMWooAgAgABDcA0GYqQQoAgAiAEG0MWoqAgAgAEGwMWooAgAqAgCVlAsLhQEBAn8gACgCDCABQQF0aiIDIAJBAXQgA2oQpAMhBCAAIAAoAiggBGs2AiggACAAKAIsIAJrNgIsIAAoAgwgAUEBdGogAkEBdGoiAS4BACICBEADQCADQQJqIQAgAyACOwEAIAFBAmoiAS4BACICBEAgACEDDAELCwUgAyEACyAAQQA7AQALHQAgACABIAIgAxDrCCAAIAIgAxDZAyABQQA6AA8LGAEBfxBgIgAqAswBIAAqAhCTIAAqAlySCy8BAX8gAEEcaiICKAIAIAFB//8DcSIBSgR/IAIoAgggAUECdGoFIABBOGoLKgIAC/0BAgJ/A31BmKkEKAIAIgVBsDFqKAIAIQYgBUG0MWoqAgAiCCAGKgIAlSEJIABDAAAAAEMAAAAAEDIgASACSQRAAkAgASEFA0AgBUECaiEBAkACQAJAIAUuAQAiBUEKaw4EAAEBAgELIAAgACoCACAHEDk4AgAgACAIIAAqAgSSOAIEIAQEfUMAAAAAIQcMBAVDAAAAAAshBwwBCyAHIAkgBiAFENwDlJIhBwsgASACSQRAIAEhBQwBCwsLCyAAKgIAIAddBEAgACAHOAIACyAHQwAAAABeIAAqAgQiB0MAAAAAW3IEQCAAIAggB5I4AgQLIAMEQCADIAE2AgALCywAIABCADcCACAAQgA3AgggAEIANwIQIABCADcCGCAAQgA3AiAgAEIANwIoC/sDAQZ/IwQhBiMEQTBqJAQgBiEEAn8CQCAAKAIAIgNBgAFJIANBIEdxBEAgA0EKRiABQYCAwABxQQBHcSADQQlGIAFBgAhxQQBHcXJBAXMgA0GAwHxqQYAySXJFIANB/wFxQWBqQd8ASXINAQUgA0GAwHxqQYAyTw0BC0EADAELIAFBj4AIcQRAIANBUGoiB0EJSyIFIAFBAXFBAEdxBEACQAJAIANBKmsOBgEBAAEBAQALQQAMAwsLIAUgAUGAgAhxQQBHcQRAAkACQCADQSprDjwBAQABAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAC0EADAMLC0EAIAFBAnFFIAdBCklyIANBX3FBv39qQQZJckUNARogA0FgaiEFIAFBBHFBAEcgA0Gff2pBGklxBEAgACAFNgIAIAUhAwsgAUEIcQRAQQAgAxDWBA0CGgsLIAFBgARxBEAgBBDeAyAEQgA3AgAgBEIANwIIIARCADcCECAEQgA3AhggBEIANwIgIARCADcCKCAEQYAENgIAIAQgAzsBDCAEIAE2AgQgBEEANgIIQQAgBCACQT9xQewAahEDAA0BGiAAIAQuAQwiAEH//wNxNgIAQQAgAEUNARoLQQELIQggBiQEIAgLigEBBH8jBCECIwRB0ABqJAQgAkFAayEDIAIhBCACQcQAaiIFIAE2AgAgABDYAiIALAAAQSVGBEAgACwAAUElRwRAIAMgATYCACAEQcAAIAAgAxBzGiAEIQADQCAAQQFqIQEgACwAAEEgRgRAIAEhAAwBCwsgACAFEPoFGiAFKAIAIQELCyACJAQgAQuJAQEEfyMEIQIjBEHQAGokBCACQcgAaiEEIAIhAyACQUBrIgUgATcDACAAENgCIgAsAABBJUYEQCAALAABQSVHBEAgBCABNwMAIANBwAAgACAEEHMaIAMhAANAIABBAWohAyAALAAAQSBGBEAgAyEADAELCyAAIAUQ8gggBSkDACEBCwsgAiQEIAELCQAgACABENULC5oCAQV/IwQhBCMEQRBqJAQgBCEBIAAQ2AIiACwAAEElRgRAA0AgAEEBaiICLAAAQVBqQRh0QRh1Qf8BcUEKSARAIAIhAAwBCwsgAUH/////BzYCACACLAAAIgNBLkYEQCAAQQJqIAEQ+gUhAiABKAIAIgBB4wBLBEAgAUEDNgIAQQMhAAsgAiwAACEDBUH/////ByEACwJAIANBxQBrIgUEQCAFQSBHDQELIAFBfzYCAEF/IQAgAiwAACEDCwJAAkAgA0H/AXFB5wBGBEAgAEH/////B0YNAQUgA0H/AXFBxwBGIABB/////wdGcQ0BQQMgACAAQf////8HRhshAAsMAQsgAUF/NgIAQX8hAAsFQQMhAAsgBCQEIAAL6QUCEX8BfSMEIQIjBEGQAWokBCACQfgAaiEDIAJB8ABqIQUgAkHoAGohByACQShqIQQgAkHYAGohBiACQRBqIQggAkHIAGohCSACQUBrIQwgAkE4aiEPIAJB0ABqIRAgAiEREDwiCiwAfwR/QQAFQZipBCgCACENIAogABBeIQ4gByAAQQBBAUMAAIC/EGwgBSAHKgIEIA1ByCpqIgsqAgBDAAAAQJSSIhMgExAyIAMgCkHIAWoiCiAFEDUgBCAKIAMQQyAEIAsqAgAQfCAGIAQpAgA3AgAgBiAEKQIINwIIIAcqAgBDAAAAAF4EQEMAAAAAIA1B3CpqKgIAEGsLIAVDAAAAACALKgIAEDIgAyAKIAUQNSAPQwAAAAAgCyoCABAyIAwgCiAPEDUgCSAMIAcQNSAIIAMgCRBDIAcqAgBDAAAAAF4EQCADIAgQdiAEEI0BEDIgAyALKgIAEKkBIAUgBCAIELIDIAkgBEEIaiAIQQhqEKYBIAMgBSAJEEMgBiADKQIANwIAIAYgAykCCDcCCAsgBiAOQQAQYQR/IAYgDiAJIAxBABCRASILBEAgASABLAAAQQFzOgAAIA4QywELIAYgDkEBEJcBIAIgBCkDADcDICACIAQpAwg3AwhBB0EIIAksAABFIgYbQQkgDCwAAEUgBnIbQwAAgD8QQiEGIA1BzCpqKgIAIRMgBSACKQIgNwIAIAMgAikCCDcCACAFIAMgBkEBIBMQrAEgASwAAARAIAVDAACAPyAEEHYgBBCNARBFQwAAwECVqLIQOSITIBMQMiAQIAQgBRA1QRJDAACAPxBCIQUgBBB2IBNDAAAAQJSTIRMgAyAQKQIANwIAIAMgBSATEMEFCyANQczYAGosAAAEQCAIQZSdAkGQnQIgASwAABtBABDdAQsgByoCAEMAAAAAXgRAIBEgCCkDADcDACADIBEpAgA3AgAgAyAAQQBBARCuAQsgCwVBAAsLIRIgAiQEIBILHAAgACABKgIAQwAAAECUIAEqAgRDAAAAQJQQMgsoACAAIAEqAgAgASoCCJJDAAAAP5QgASoCBCABKgIMkkMAAAA/lBAyC/oDAxB/AX4DfSMEIQMjBEHgAGokBCADQcgAaiEEIANBQGshBiADQThqIQcgA0EoaiEIIANBMGohDCADQRBqIQUgA0HRAGohDiADQdAAaiEPIAMhEBA8IgksAH8Ef0EABUGYqQQoAgAhCiAJIAAQXiELIAcgAEEAQQFDAACAvxBsIAggCSkCyAEiEzcDACATQiCIp74hFSAKQcgqaiINKgIAIRYgAkGABHEEQCAWIAkqAvABIhRdBEAgCCAUIBaTIBWSOAIECwsgAyABKQIANwMgIAcqAgAgCkHEKmoiESoCAEMAAABAlJIhFSAHKgIEIBZDAAAAQJSSIRQgBCADKQIgNwIAIAwgBCAVIBQQyQMgBCAIIAwQNSAFIAggBBBDIAwgDSoCABCpASAFIAtBABBhBH8gBSALIA4gDyACIAkoAugCQQF2QQFxchCRASIBBEAgCxDLAQtBFUEWIA4sAABFIgIbQRcgDywAAEUgAnIbQwAAgD8QQiENIAUgC0EBEJcBIAMgBSkDADcDCCAQIAVBCGoiAikDADcDACAKQcwqaioCACEUIAYgAykCCDcCACAEIBApAgA3AgAgBiAEIA1BASAUEKwBIAQgBSAREDUgBiACIBEQQCAEIAYgAEEAIAcgCkGMK2ogBRCtASABBUEACwshEiADJAQgEgspACAAQwAAAABfBH1D2w/JPwUgAEMAAIA/YAR9QwAAAAAFIAAQ1wsLCwu6AgIDfwJ9IwQhByMEQRBqJAQgB0EIaiEFIAchBgJAAkACQAJAAkAgAw4EAAECAwQLIAUgASoCACACKgIAIgiSIAEqAgQgAioCBCIJkxAyIAYgCCABKgIAkiAJIAEqAgSSEDIgACAFIAYgASAEEOMCDAMLIAUgASoCACACKgIAIgiTIAEqAgQgAioCBCIJkhAyIAYgASoCACAIkyABKgIEIAmTEDIgACAFIAYgASAEEOMCDAILIAUgASoCACACKgIAIgiSIAEqAgQgAioCBCIJkhAyIAYgASoCACAIkyAJIAEqAgSSEDIgACAFIAYgASAEEOMCDAELIAUgASoCACACKgIAIgiTIAEqAgQgAioCBCIJkxAyIAYgCCABKgIAkiABKgIEIAmTEDIgACAFIAYgASAEEOMCCyAHJAQLfgAgACgCAARAIAAgAiADEMkEIAFB/wFxQQRGBEAgACAEIAUQyQQgACAGIAcQyQQLBSAAKAIoIAAoAixBDmxqIAEgAiADIAQgBRD6ASAAKAIoIgIgACgCLCIBQQ5saiAGOwEIIAFBDmwgAmogBzsBCgsgACAAKAIsQQFqNgIsC00BAX8gAUEAEPgBIAFBAhDEASEDIAEgAiABEKMBQf8BcSICbBCSAiAAIAEgASACEMQBIgAgA0EBaiACbEECamogASACEMQBIABrENwCCyEAIAAEQCABQQN0IABqIAI4AgAgAUEDdCAAaiADOAIECwsNACAAKAIIIAFBKGxqC1UAIABDAAAAADgCACAAQRBqEE8gAEEcahBPIABBKGoQTyAAQQA2AjQgAEMAAAAAOAI4IABCADcBPiAAQgA3AUYgAEEAOwFOIABBAToAUCAAQQA2AlQLLgEBfyAAKAIUIgEEQCABEEELIAAoAhgiAQRAIAEQQQsgAEEANgIUIABBADYCGAscAQF/IAAoAgAhAiAAIAEoAgA2AgAgASACNgIAC8gBAgR/An0jBCEGIwRBEGokBCAGQQhqIgggADgCACAGQQRqIgcgATgCACAGIgkgAjgCACABIAJdBH0gByAJEPADIAcqAgAhAUMAAIC/BUMAAAAACyECIAEgAF4EQCAIIAcQ8AMgByoCACEBQ6uqqr4gApMhAiAIKgIAIQALIAAgASAJKgIAIgogASAKXRuTIQsgAyACIAEgCpMgC0MAAMBAlEMI5TwekpWSizgCACAEIAsgAEMI5TwekpU4AgAgBSAAOAIAIAYkBAvRFAMRfwF+B30jBCEVIwRBEGokBCAVIghBCGohCSACQQJOBEACQCAAKAIoKQIAIRcgAiACQX9qIg0gBBshDiAAKAIkQQFxRQRAIAAgDkEGbCAOQQJ0ELABIAVDAAAAP5QhGUEAIQQDQEEAIARBAWoiByACIAdGGyIIQQN0IAFqIgYqAgAgBEEDdCABaiIJKgIAIhqTIgUgBZQgCEEDdCABaiIIKgIEIARBA3QgAWoiCioCBCIckyIYIBiUkiIbQwAAAABeBEAgBUMAAIA/IBuRlSIblCEFIBggG5QhGAsgACgCNCIEIBogGSAYlCIYkjgCACAEIBwgGSAFlCIFkzgCBCAEIBc3AgggACgCNCIEIAM2AhAgBCAYIAYqAgCSOAIUIAQgCCoCBCAFkzgCGCAEIBc3AhwgACgCNCIEIAM2AiQgBCAGKgIAIBiTOAIoIAQgBSAIKgIEkjgCLCAEIBc3AjAgACgCNCIEIAM2AjggBCAJKgIAIBiTOAI8IARBQGsgBSAKKgIEkjgCACAEIBc3AkQgACgCNCIEIAM2AkwgACAEQdAAajYCNCAAKAI4IgQgACgCMCIGQf//A3EiCDsBACAEIAZBAWo7AQIgBCAGQQJqQf//A3EiCTsBBCAEIAg7AQYgBCAJOwEIIAQgBkEDajsBCiAAIARBDGo2AjggACAGQQRqNgIwIAcgDkYNAiAHIQQMAAALAAsgAkECdCACQQNsIAVDAACAP14iDBshFiAAQRJBDCAMGyAObCAWELABIwQhCiMEIAJBA3RBBUEDIAwbbEEPakFwcWokBANAIAZBA3QgCmpBACAGQQFqIgcgAiAHRhsiC0EDdCABaioCACAGQQN0IAFqKgIAkyIYIBiUIAtBA3QgAWoqAgQgBkEDdCABaioCBJMiGSAZlJIiGkMAAAAAXgR9IBhDAACAPyAakZUiGpQhGCAZIBqUBSAZCzgCACAGQQN0IApqIBiMOAIEIAcgDkcEQCAHIQYMAQsLIARFBEAgDUEDdCAKaiACQX5qQQN0IApqKQMANwMACyADQf///wdxIRAgAkEDdCAKaiELIAwEfyAFQwAAgL+SQwAAAD+UIRkgBEUEQCAJIAogGUMAAIA/kiIFEFEgCCABIAkQNSALIAgpAwA3AwAgCSAKIBkQUSAIIAEgCRA1IAsgCCkDADcDCCAJIAogGRBRIAggASAJEEAgCyAIKQMANwMQIAkgCiAFEFEgCCABIAkQQCALIAgpAwA3AxggCSANQQN0IApqIgQgBRBRIAggDUEDdCABaiIHIAkQNSANQQJ0IgZBA3QgC2ogCCkDADcDACAJIAQgGRBRIAggByAJEDUgBkEBckEDdCALaiAIKQMANwMAIAkgBCAZEFEgCCAHIAkQQCAGQQJyQQN0IAtqIAgpAwA3AwAgCSAEIAUQUSAIIAcgCRBAIAZBA3JBA3QgC2ogCCkDADcDAAsgGUMAAIA/kiEbIA5BEmwhEiAAKAI4IhMhBkEAIQcgAEEwaiINKAIAIg8hBANAIAIgB0EBaiIJRiEMIAdBA3QgCmoqAgBBACAJIAwbIghBA3QgCmoqAgCSQwAAAD+UIgUgBZQgB0EDdCAKaioCBCAIQQN0IApqKgIEkkMAAAA/lCIYIBiUkiIaQ703hjVeBEAgBUMAAMhCQwAAgD8gGpGVIgUgBUMAAMhCXhsiGpQhBSAYIBqUIRgLIAhBBXQgC2oiByAIQQN0IAFqKgIAIhogGyAFlCIdkjgCACAHIBsgGJQiHiAIQQN0IAFqKgIEIhySOAIEIAcgGiAZIAWUIgWSOAIIIAcgGSAYlCIYIBySOAIMIAcgGiAFkzgCECAHIBwgGJM4AhQgByAaIB2TOAIYIAcgHCAekzgCHCAGIA8gBEEEaiAMGyIIQQFqQf//A3EiBzsBACAGIARBAWpB//8DcSIUOwECIAYgBEECakH//wNxIgw7AQQgBiAMOwEGIAYgCEECakH//wNxIhE7AQggBiAHOwEKIAYgBzsBDCAGIBQ7AQ4gBiAEQf//A3EiFDsBECAGIBQ7ARIgBiAIOwEUIAYgBzsBFiAGIBE7ARggBiAMOwEaIAYgBEEDakH//wNxIgQ7ARwgBiAEOwEeIAYgCEEDajsBICAGIBE7ASIgBkEkaiEGIAkgDkcEQCAJIQcgCCEEDAELCyAAIBJBAXQgE2o2AjggAkEASgR/IAAoAjQhBkEAIQEDfyAGIAFBAnQiBEEDdCALaikDADcCACAAKAI0IBc3AgggACgCNCIHIBA2AhAgByAEQQFyQQN0IAtqKQMANwIUIAAoAjQgFzcCHCAAKAI0IgcgAzYCJCAHIARBAnJBA3QgC2opAwA3AiggACgCNCAXNwIwIAAoAjQiByADNgI4IAcgBEEDckEDdCALaikDADcCPCAAKAI0IBc3AkQgACgCNCIEIBA2AkwgACAEQdAAaiIGNgI0IAFBAWoiASACRw0AIA0LBSANCwUgBEUEQCAJIApDAACAPxBRIAggASAJEDUgCyAIKQMANwMAIAkgCkMAAIA/EFEgCCABIAkQQCALIAgpAwA3AwggCSANQQN0IApqIgRDAACAPxBRIAggDUEDdCABaiIHIAkQNSANQQF0IgZBA3QgC2ogCCkDADcDACAJIARDAACAPxBRIAggByAJEEAgBkEBckEDdCALaiAIKQMANwMACyAOQQxsIREgACgCOCISIQZBACEHIABBMGoiDSgCACITIQQDQCACIAdBAWoiCEYhDCAHQQN0IApqKgIAQQAgCCAMGyIJQQN0IApqKgIAkkMAAAA/lCIFIAWUIAdBA3QgCmoqAgQgCUEDdCAKaioCBJJDAAAAP5QiGCAYlJIiGUO9N4Y1XgRAIAVDAADIQkMAAIA/IBmRlSIFIAVDAADIQl4bIhmUIQUgGCAZlCEYCyAJQQR0IAtqIgcgBSAJQQN0IAFqKgIAIhmSOAIAIAcgGCAJQQN0IAFqKgIEIhqSOAIEIAcgGSAFkzgCCCAHIBogGJM4AgwgBiATIARBA2ogDBsiCUH//wNxIgc7AQAgBiAEQf//A3EiDDsBAiAGIARBAmpB//8DcSIPOwEEIAYgDzsBBiAGIAlBAmo7AQggBiAHOwEKIAYgCUEBakH//wNxIg87AQwgBiAEQQFqOwEOIAYgDDsBECAGIAw7ARIgBiAHOwEUIAYgDzsBFiAGQRhqIQYgCCAORwRAIAghByAJIQQMAQsLIAAgEUEBdCASajYCOCACQQBKBH8gACgCNCEEQQAhBgN/IAQgBkEDdCABaikCADcCACAAKAI0IBc3AgggACgCNCIEIAM2AhAgBCAGQQF0IgRBA3QgC2opAwA3AhQgACgCNCAXNwIcIAAoAjQiByAQNgIkIAcgBEEBckEDdCALaikDADcCKCAAKAI0IBc3AjAgACgCNCIEIBA2AjggACAEQTxqIgQ2AjQgBkEBaiIGIAJHDQAgDQsFIA0LCyIAIAAoAgAgFkH//wNxajYCAAsLIBUkBAvZAgEIfyMEIQYjBEEgaiQEIAZBGGoiCSACKgIAIAEqAgQQMiAGQRBqIgogASoCACACKgIEEDIgBkEIaiILIAQqAgAgAyoCBBAyIAYgAyoCACAEKgIEEDIgACgCOCIHIAAoAjAiCEH//wNxIgw7AQAgByAIQQFqOwECIAcgCEECakH//wNxIg07AQQgByAMOwEGIAcgDTsBCCAHIAhBA2o7AQogACgCNCABKQIANwIAIAAoAjQgAykCADcCCCAAKAI0IgEgBTYCECABIAkpAwA3AhQgACgCNCALKQMANwIcIAAoAjQiASAFNgIkIAEgAikCADcCKCAAKAI0IAQpAgA3AjAgACgCNCIBIAU2AjggASAKKQMANwI8IAAoAjQgBikDADcCRCAAKAI0IgEgBTYCTCAAIAFB0ABqNgI0IAAgACgCMEEEajYCMCAAIAAoAjhBDGo2AjggBiQEC6kBAQJ/IAAoAmAiAiABRwRAIAAoAnAgAkEYbGoiAiAAKQIANwIAIAIgACgCCDYCCCAAKAJwIAAoAmBBGGxqIgIgACkCDDcCDCACIAAoAhQ2AhQgACABNgJgIAAgACgCcCICIAFBGGxqIgMpAgA3AgAgACADKAIINgIIIAAgAUEYbCACaiIBKQIMNwIMIAAgASgCFDYCFCAAIAAoAhQgACgCDEEBdGo2AjgLCxQAIAAgACgCPEF/ajYCPCAAEPYDC6gCAQd/IwQhBiMEQRBqJAQgACgCPCICBH8gACgCRCACQX9qQQR0agUgACgCKEEUagshASAGIgIgASkCADcCACACIAEpAgg3AggCQAJAIAAoAgAiA0EATA0AIAAoAggiBSADQX9qIgRBBXRqIgFFDQAgASgCAEUiB0UEQCAEQQV0IAVqQQRqIAJBEBDFAg0BCyAEQQV0IAVqKAIYDQAgAUFgakEAIANBAUoiARshAwJAIAEgB3EEQCADQQRqIAJBEBDFAkUEQCAAKAJIIgEEfyAAKAJQIAFBf2pBAnRqKAIABUEACyADKAIURgRAIAMoAhhFBEAgABCAAgwECwsLCyAEQQV0IAVqIgAgAikCADcCBCAAIAIpAgg3AgwLDAELIAAQ3AQLIAYkBAsfACAAKAIEIAFIBEAgACAAIAEQWBCxBgsgACABNgIAC7EBAQF/IABBABDfBCAAQQxqQQAQwAEgAEEYakEAEPcDIABBAzYCJCAAQQA2AjAgAEEANgI0IABBADYCOCAAQTxqIgEoAgRBAEgEQCABIAFBABBYEN4ECyABQQA2AgAgAEHIAGoiASgCBEEASARAIAEgAUEAEFgQhQILIAFBADYCACAAQdQAaiIBKAIEQQBIBEAgASABQQAQWBDoAgsgAUEANgIAIABBADYCYCAAQQE2AmQLSwEDfyAAKAIEIAFIBEAgAUEYbBBTIQIgAEEIaiIDKAIAIgQEQCACIAQgACgCAEEYbBBGGiADKAIAEEELIAMgAjYCACAAIAE2AgQLCw0AIAAoAgggAUEUbGoLEAAgACgCCCAAKAIAQQV0agsXACAAQQMQpQEgAUEDEKUBkkMAAAAAXgsNACABIAAoAghrQRxtCxMAIAAoAgggACgCAEF/akEFdGoLVwEBfyMEIQEjBEEQaiQEIABBADYCACAAQQA2AgQgAEP//39/OAIQIABD//9/fzgCDCAAQ///f384AgggARBmIAAgASkCADcCFCAAIAEpAgg3AhwgASQEC2kBAX8gACgCACICIAAoAgRGBEAgACAAIAJBAWoQWBCnAyAAKAIAIQILIAAoAgggAkEcbGoiAiABKQIANwIAIAIgASkCCDcCCCACIAEpAhA3AhAgAiABKAIYNgIYIAAgACgCAEEBajYCAAtqAQF/QZipBCgCACEDEJsCIANBpDZqIAA2AgAgA0GsNmogATYCACADQaA2akEBNgIAIANBnDZqQQI2AgAgA0GgNWooAgBBiAZqIANB9DVqKAIAQQR0aiIAIAIpAgA3AgAgACACKQIINwIICzMBAX9BmKkEKAIAIgBBmTZqLAAABH8gAEGwNmooAgAEf0EABSAAQfg2aigCAEULBUEACwu5BgILfwt9IwQhDSMEQTBqJAQgDUEQaiEOIA1BGGoiCCAEQQhqIg8gAhBAIA0iByAIKQIANwIAIAdBIGoiESABIAQgBxDqAgJAAkAgBkEBRgRAIAVBDGohCSAFQQRqIQogAkEEaiELIAVBCGohDCADKAIAQX9HQR90QR91IQYDQAJAIAMgBkECdEHgCGogBkF/RiIQGygCACEIAkACQCAQDQAgCCADKAIARw0ADAELIAAQOgJAAkACQAJAAkAgCA4EAgEDAAQLIAcgBSoCACAJKgIAEDIgACAHKQMANwIADAMLIAcgBSoCACAKKgIAIAsqAgCTEDIgACAHKQMANwIADAILIAcgDCoCACACKgIAkyAJKgIAEDIgACAHKQMANwIADAELIAcgDCoCACACKgIAkyAKKgIAIAsqAgCTEDIgACAHKQMANwIACyAOIAAgAhA1IAcgACAOEEMgBCAHEI0CDQELIAZBAWohCCAGQQNIBEAgCCEGDAIFIAIhBiAFIQgMBAsACwsgAyAINgIABSACIQYgBSEIIAVBCGohDCAFQQxqIQkgAkEEaiELIAVBBGohCgwBCwwBCyAIKgIAIRQgDyoCACEVIAwqAgAhGSAEKgIAIRYgBioCACESIAoqAgAhGiAEKgIMIRcgCSoCACEbIAQqAgQhGCALKgIAIRMgAygCACIOQX9HQR90QR91IQQCQAJAA0ACQCADIARBAnRB8AhqIARBf0YiBRsoAgAhAiAFQQFzIAIgDkZxRQRAIAJBAkYhBSACQQNGIQcgFCAVIAJFIg8bIBkgFiACQQFGIhAbkyASXUUEQCAaIBcgBRsgGyAYIAcbkyATXUUNAgsLIARBA04NAiAEQQFqIQQMAQsLDAELIANBfzYCAAJ9IAEqAgQhHCABKgIAIBKSIBUQRSASkyAWEDkhEiAcCyATkiAXEEUgE5MgGBA5IRMgACASOAIAIAAgEzgCBAwBCyAAEDogACAPBH0gCCoCACAGKgIAkwUgEAR9IAwqAgAFIBEqAgALCzgCACAAIAUEfSAKKgIAIAsqAgCTBSAHBH0gCSoCAAUgESoCBAsLOAIEIAMgAjYCAAsgDSQECwgAEGAaENUBC5sBAQV/IwQhASMEQSBqJAQgAUEYaiEDIAFBEGoiBUGYqQQoAgBBgNgAaiIEKAIANgIAIAEiAkEQQfKKAiAFEHMaIAAEQCACEKECIgAEQCAALAB6BEAgAEEBOgCBASAAQQE2AqQBIAQgBCgCAEEBaiIANgIAIAMgADYCACACQRBB8ooCIAMQcxoLCwsgAkEAQceGsBAQ6wEaIAEkBAtNAQJ/QZipBCgCACECEDwhASAAQwAAAABbBEAgAkHsKmoqAgAhAAsgASAAIAEqArADkiIAOAKwAyABIAAgASoCDJIgASoCuAOSOALIAQs+AQN/IwQhASMEQRBqJAQQPCICQcgBaiIDIAApAgA3AgAgASACQeABaiIAIAMQpgEgACABKQMANwIAIAEkBAseAQF/QZipBCgCACIAQbQxaioCACAAQdgqaioCAJILEAAgACAAKAL8BSIAIABFGwseACAAQgA3AgAgAEIANwIIIABCADcCECAAQQA2AhgLvQEBBH8jBCEEIwRBEGokBCAEIQNBmKkEKAIAIQICQAJAIAAoAggiBUGAgBBxBEAgACgCgAYhAAwBBSAFQYCAgChxQYCAgAhGBEAgASAAKAKABiIARXJFDQILQQAgAkH0NWooAgAQigMgAkGBNmpBAToAACACQYI2akEAOgAAIAJBhDZqQQA2AgAgAxBmIAJBiDZqIgAgAykCADcCACAAIAMpAgg3AggQrQMLDAELIAJBpDVqIAA2AgALIAQkBAtbAQN/AkACQEGYqQQoAgAiAUGsAWoiAioCACABQbQBaiIDKgIAWw0AIAEqArABIAEqArgBWw0AIAAgAiADEEMMAQsgAEMAAAAAQwAAAAAgASoCECABKgIUEF0LCxoAQwAAAAAgACoCMCAAKgIgIAAqAnSTkxA5C20CBH8BfSMEIQQjBEEQaiQEIAQhAyAAEPcEIgIoAgBBBEYEQCACKAIEQQFGBEAgAkGYqQQoAgAiBUGQKmoQ1wIiAioCACEGIAMgADYCACADIAY4AgQgBUGENGogAxDcBiACIAE4AgALCyAEJAQLBwBBxwAQAwtEAQF/IABBmKkEKAIAIgJB+AFqaiwAAAR/IAFDAAAAAF0EQCACKgIwIQELIAJBxAhqIABBAnRqKgIAIAEgAZRgBUEACwsGAEEmEAMLCABBHRADQQALVQEDfyAAKAIEIgZBCHUhBSAGQQFxBEAgAigCACAFaigCACEFCyAAKAIAIgAoAgAoAhghByAAIAEgAiAFaiADQQIgBkECcRsgBCAHQQ9xQdIKahEtAAvJAgEFfyMEIQUjBEFAayQEIAAgACgCACICQXhqKAIAaiEEIAJBfGooAgAhAyAFIgIgATYCACACIAA2AgQgAkHw9AE2AgggAkEANgIMIAJCADcCECACQgA3AhggAkIANwIgIAJCADcCKCACQQA2AjAgAkEAOwE0IAJBADoANiADIAEQhQEEfyACQQE2AjAgAyACIAQgBEEBQQAgAygCACgCFEEPcUHqCmoRGgAgBEEAIAIoAhhBAUYbBQJ/IAMgAiAEQQFBACADKAIAKAIYQQ9xQdIKahEtAAJAAkACQCACKAIkDgIAAgELIAIoAhRBACACKAIoQQFGIAIoAhxBAUZxIAIoAiBBAUZxGwwCC0EADAELIAIoAhhBAUcEQEEAIAIoAihFIAIoAhxBAUZxIAIoAiBBAUZxRQ0BGgsgAigCEAsLIQYgBSQEIAYLCwAgACABIAIQ2wsLVAECfyABQR9LBH8gACAAKAIAIgI2AgQgAEEANgIAIAFBYGohAUEABSAAKAIEIQIgACgCAAshAyAAIAIgAXQgA0EgIAFrdnI2AgQgACADIAF0NgIAC5UDAQZ/IwQhCSMEQfABaiQEIAlB6AFqIgggAygCACIHNgIAIAggAygCBCIDNgIEIAkiCiAANgIAAkACQCADIAdBAUdyBEBBACABayELIAAgBEECdCAGaigCAGsiAyAAIAJB/wBxQbQBahEAAEEBSARAQQEhAwVBASEHIAVFIQUDfyAEQQFKIAVxBEAgBEF+akECdCAGaigCACEFIAAgC2oiDCADIAJB/wBxQbQBahEAAEF/SgRAIAchAwwFCyAMIAVrIAMgAkH/AHFBtAFqEQAAQX9KBEAgByEDDAULCyAHQQFqIQUgB0ECdCAKaiADNgIAIAggCBCdByIAEJgEIAAgBGohBCAIKAIAQQFHIAgoAgRBAEdyRQRAIAMhACAFIQMMBAsgAyAEQQJ0IAZqKAIAayIHIAooAgAgAkH/AHFBtAFqEQAAQQFIBH8gAyEAIAUhA0EABSADIQAgByEDIAUhB0EBIQUMAQsLIQULBUEBIQMLIAVFDQAMAQsgASAKIAMQmwcgACABIAIgBCAGEI8FCyAJJAQLUgECfyAAIAFBH0sEfyAAIAAoAgQiAjYCACAAQQA2AgQgAUFgaiEBQQAFIAAoAgAhAiAAKAIECyIDQSAgAWt0IAIgAXZyNgIAIAAgAyABdjYCBAsLACAAIAEgAhD4CwspAQF/QZipBCgCACICQeA0aiAAKQIANwIAIAJBuDRqIAFBASABGzYCAAtLAgF/AX4jBCEBIwRBEGokBCAAQQA6AAAgAEIANwIEIABCADcCDCABQwAAAABDAAAAABAyIAAgASkDACICNwIcIAAgAjcCFCABJAQLDwAgASAAKAIAaiACOwEACw0AIAEgACgCAGouAQALQQECfwJ/IAEhAyAAKAIAIQEgAwsgACgCBCIAQQF1aiICIABBAXEEfyABIAIoAgBqKAIABSABC0E/cUHsAGoRAwALOgECfyMEIQIjBEEQaiQEIAIgAUEMaiIDKgIAIAEqAhySIAEqAhAgARC/AZIQMiAAIAMgAhBDIAIkBAtTAQR/IwQhAiMEQRBqJAQCfyAAKAIMIQQgAiAAKAIEIAAoAgAiA2tBA3UgAxChASAECygCACACELIQIAAoAgAiAQRAIAAgATYCBCABEFQLIAIkBAt4AQJ/IwQhAyMEQRBqJAQgAEEANgIAIABBADYCBCAAQQA2AgggACABNgIMIANBCGoiAiABQYjPAhBXIAAgAhDKAhCvECACEDEgAyAAKAIEIAAoAgAiAWtBA3UgARChASACIAMQrhAgAiAAKAIMEMoDIAIQMSADJAQLUwEEfyMEIQIjBEEQaiQEAn8gACgCDCEEIAIgACgCBCAAKAIAIgNrQQJ1IAMQoQEgBAsoAgAgAhCmECAAKAIAIgEEQCAAIAE2AgQgARBUCyACJAQLeAECfyMEIQMjBEEQaiQEIABBADYCACAAQQA2AgQgAEEANgIIIAAgATYCDCADQQhqIgIgAUGIzwIQVyAAIAIQygIQpQUgAhAxIAMgACgCBCAAKAIAIgFrQQJ1IAEQoQEgAiADEKQQIAIgACgCDBDKAyACEDEgAyQEC1MBBH8jBCECIwRBEGokBAJ/IAAoAgwhBCACIAAoAgQgACgCACIDa0ECdSADEKEBIAQLKAIAIAIQnRAgACgCACIBBEAgACABNgIEIAEQVAsgAiQEC3gBAn8jBCEDIwRBEGokBCAAQQA2AgAgAEEANgIEIABBADYCCCAAIAE2AgwgA0EIaiICIAFBiM8CEFcgACACEMoCEKUFIAIQMSADIAAoAgQgACgCACIBa0ECdSABEKEBIAIgAxCbECACIAAoAgwQygMgAhAxIAMkBAtTAQR/IwQhAiMEQRBqJAQCfyAAKAIMIQQgAiAAKAIEIAAoAgAiA2tBAnUgAxChASAECygCACACEJoQIAAoAgAiAQRAIAAgATYCBCABEFQLIAIkBAt4AQJ/IwQhAyMEQRBqJAQgAEEANgIAIABBADYCBCAAQQA2AgggACABNgIMIANBCGoiAiABQYjPAhBXIAAgAhDKAhClBSACEDEgAyAAKAIEIAAoAgAiAWtBAnUgARChASACIAMQmBAgAiAAKAIMEMoDIAIQMSADJAQLCAAgACABEHELJAEBfyMEIQIjBEEQaiQEIAIgADYCACACIAEoAgAQ8gEgAiQEC1wBAX9BmKkEKAIAIQMgACABEIoDIANBoDVqKAIAQYgGaiABQQR0aiIAIAIpAgA3AgAgACACKQIINwIIIANB/TVqQQE6AAAgA0H+NWpBADoAACADQf81akEBOgAACw0AIAAoAgggAUE4bGoLKAECfwJ/IwQhAyMEQRBqJAQgAEEGQYDOAUHozQJBECABEAIgAwskBAsoAQJ/An8jBCEDIwRBEGokBCAAQQdBwM4BQfLRAkEPIAEQAiADCyQECygBAn8CfyMEIQMjBEEQaiQEIABBAkGo/AFB2skCQSAgARACIAMLJAQLKAECfwJ/IwQhAyMEQRBqJAQgAEEDQbD8AUGaywJBHCABEAIgAwskBAsoAQJ/An8jBCEDIwRBEGokBCAAQQFBhPgBQbjTAkEeIAEQAiADCyQECygBAn8CfyMEIQMjBEEQaiQEIABBAkHo/AFBu9MCQSsgARACIAMLJAQLNwEBf0GYqQQoAgAiAUGUM2ooAgAoAvQEIAAgAUG0MWoqAgBDzcxMPpRBAEMAAIA/EEJBCBCVAgsJACAAIAEQ/QMLsQQCDH8CfSMEIQUjBEFAayQEIAVBOGohBCAFIQogBUEwaiEHIAVBGGohCCAFQShqIQwgBUEgaiENIAVBCGohCSAFQRBqIQ4QPCIGLAB/BEBBACEABUGYqQQoAgAhCyAKIAYpAsgBNwMAIAcgAEEAQQFDAACAvxBsQYAgQYggIAMbIQ8gBigC4AIEQCABBEAgCCABQQBBAEMAAIC/EGwFIAhDAAAAAEMAAAAAEDILIAZBpARqIAcqAgAgCCoCACALQbQxaiIHKgIAQ5qZmT+UqLIQywUhECAMEPACQwAAAAAgDCoCACAQkxA5IREgBCAQQwAAAAAQMiAAQQAgD0GAwAByIAQQrwEhACAIKgIAQwAAAABeBEBBACALQcArahCCAiAJIBEgBioCuASSQwAAAAAQMiANIAogCRA1IAQgDSkCADcCACAEIAFBAEEAEK4BQQEQogILIAIEQCAJIBEgBioCvASSIAcqAgAiEEPNzMw+lJIgEENMNwk+lEMAAAA/lBAyIA4gCiAJEDUgA0EBc0EBcUMAAIA/EEIhASAHKgIAQy2yXT+UIRAgBCAOKQIANwIAIAQgASAQEMEFCwUgByoCACEQIAYgBioCyAEgC0HUKmoiASoCAEMAAAA/lKiykjgCyAEgBCABEOUDQQ0gBBC+AiAEIBBDAAAAABAyIABBACAPIAQQrwEhAEEBEKMCIAYgBioCyAEgASoCAEMAAAC/lKiykjgCyAELCyAFJAQgAAvMAwIHfwp9IwQhByMEQRBqJAQgB0EIaiEKIAchCxA8IQggAkGAgIB4SQRAAkBBzJmzfiACENgFEM4EIQlBgIGCfCACENgFEM4EIQwgCCgC9AQgACABIAkgBSAGEHUgACoCBCIQIAQqAgSSIg8gASoCBCIOXQRAIAQqAgAhFiADQwAAAECUIRdBACEEA0AgDyAQIA4QZCESIA8gA5IiFCAOEEUiFSASX0UEQCAEQQFxsiADlCAAKgIAIhAgFpKSIg8gASoCACIOXQRAA0AgDyAQIA4QZCERIA8gA5IgDhBFIhMgEV9FBEAgEiAAKgIEXwRAIBEgEF8hAiATIA5gBEAgAkECciECCwVBACECCyAVIAEqAgRgBEAgAkEEciACIBEgEF8bIQIgEyAOYARAIAJBCHIhAgsLAn8gCCgC9AQhDSAKIBEgEhAyIAsgEyAVEDIgDQsgCiALIAwgBUMAAAAAIAIgBnEiAhsgAhB1IAEqAgAhDgsgFyAPkiIPIA5dBEAgACoCACEQDAEFAQsLCwsgFCABKgIEIg5dRQ0CIAAqAgQhECAUIQ8gBEEBaiEEDAAACwALCwUgCCgC9AQgACABIAIgBSAGEHULIAckBAv+BgIRfwF9IwQhCSMEQaABaiQEIAlBkAFqIQwgCUGAAWohDSAJQfgAaiEQIAlB0ABqIQogCUHoAGohDiAJQUBrIRQgCSESIAlB4ABqIRUQPCILLAB/BH9BAAVBmKkEKAIAIQggCyAAEF4hBxC+ASEYIBAgAEEAQQFDAACAvxBsIA0gGCAQKgIEIAhByCpqIhMqAgBDAAAAQJSSEDIgDCALQcgBaiIPIA0QNSAKIA8gDBBDIA0gECoCACIYQwAAAABeBH0gGCAIQdwqaioCAJIFQwAAAAALQwAAAAAQMiAMIApBCGoiDyANEDUgDiAKIAwQQyAOIAcgChBhBH8CfyAFBEAgAUUEQCAFQeedAhCHAgRAIAUQvgQhBQsLBSABQQxsQYTIAWooAgAhBQsgCyAHQQEQpwUhESAKIAcQzQIhFgJAAkAgEQRAIAcgCxC1ASAHIAsQswIgCxB0IAhBzDNqQQw2AgAMAQUCQAJAAkAgFgRAIAgsAOAHDQELIAhBqDVqKAIAIAdGDQAgCEG0NWooAgAgB0YEQCAHIAhB1NcAaigCAEcNAQsMAQsgByALELUBIAcgCxCzAiALEHQgCEHMM2pBDDYCACAILACIAg0DIAhBtDVqKAIAIAdGDQMLIAhBtDNqIhEoAgAgB0YEQCAIQdTXAGooAgAgB0YNAQsgDiATKgIAEHwgESgCACAHRgR/QQkFQQhBByAIQaAzaigCACAHRhsLQwAAgD8QQiEOIAogB0EBEJcBIAkgCikDADcDSCAUIA8pAwA3AwAgCEHMKmoqAgAhGCANIAkpAkg3AgAgDCAUKQIANwIAIA0gDCAOQQEgGBCsASANEGYgCiAHIAEgAiADIAQgBSAGQQAgDRDrBSIDBEAgBxDLAQsgCygC9AQgDSANQQhqQRRBEyARKAIAIAdGG0MAAIA/EEIgCEGAK2oqAgBBDxB1IBJBwAAgASACIAUQlgMgEmohASAMQwAAAD9DAAAAPxAyIAogDyASIAFBACAMQQAQrQEgECoCAEMAAAAAXgRAIBUgDyoCACAIQdwqaioCAJIgCioCBCATKgIAkhAyIAwgFSkCADcCACAMIABBAEEBEK4BCyADDAQLCwwBCyAIQdTXAGpBADYCAAsgCxDbByAKIAcgACABIAIgBRD5BQsFIA4gEyoCABB8QQALCyEXIAkkBCAXCw4AIAEgAKEgAruiIACgCzYAIAEoAgQgASgCCEcEQCABEO0FIAAgARCCASABIAEoAggiADYCACABIAA2AgQgAUEAOgAPCwtfAQF/IAAgAhDsCCIEBH8gBCABNgIAIAQgAjYCBCAEIAM2AgggAgR/IAQgAEGEHGoiAygCACIBNgIMIAMgASACajYCACAAQbAMaiABQQF0agUgBEF/NgIMQQALBUEACwt5AQJ/IAAQ2wM4AgAgACACOAIEIAAgATYCCCAAQQA2AgwgAEEQaiIDQX82AgAgAEEUaiIEQX82AgAgAkMAAAAAXgRAIAEgAiADIAQQ9AUgAygCACIBQQBKBEAgACoCACAAKgIEIgIgAbKUkiACEO4FCyAAQQI2AgwLCygBAX8gAEEANgI8IABBQGsgACgCLCIBNgIAIAAgATYCOCAAQQA6AEcL5gcDEn8BfQF8IwQhBSMEQfAAaiQEIAVB2ABqIQogBUHQAGohCyAFQcgAaiEMIAVBQGshDSAFQThqIQ4gBUEwaiEPIAVBKGohECAFQSBqIREgBUEYaiESIAVBEGohEyAFQeAAaiEUIAVB3ABqIRUgBUEIaiEJIAUhBgNAIABBAWohCCAALAAAIgcQ4gIEQCAIIQAMAQsLAkACQAJAIAdBKmsOBgAAAQEBAAELA0AgAEEBaiIALAAAIggQ4gINAAsMAQsgByEIQQAhBwsgCEH/AXEEfyAUIAMgAkEMbEGAyAFqKAIAIggQRhogBEUEQCACQQxsQYjIAWooAgAhBAsgBUEANgJcAn8gAgRAAkAgAkF/akEDSQRAIA4gAzYCACAAIAQgDhCoARoMAQsCQAJAIAJBBGsOAgABAgsgBSADKAIANgIIIAZDAAAAADgCACAHQf8BcQRAIA0gCTYCAEEAIAFB6p0CIA0QqAFBAUgNBBoLIAwgBjYCAEEAIABB6p0CIAwQqAFBAUgNAxoCQAJAAkACQAJAIAdBGHRBGHVBKmsOAgEAAgsgBSoCCCAGKgIAkiEXDAILIAUqAgggBioCAJQhFwwBCyAGKgIAIRcgB0H/AXFBL0cNACAXQwAAAABcBEAgBSoCCCAXlSEXDAELDAELIAMgFzgCAAsMAQsgBSADKwMAOQMIIAZEAAAAAAAAAAA5AwAgB0H/AXEEQCALIAk2AgBBACABQe2dAiALEKgBQQFIDQMaCyAKIAY2AgBBACAAQe2dAiAKEKgBQQFIDQIaAkACQAJAAkACQCAHQRh0QRh1QSprDgIBAAILIAUrAwggBisDAKAhGAwCCyAFKwMIIAYrAwCiIRgMAQsgBisDACEYIAdB/wFxQS9HDQAgGEQAAAAAAAAAAGIEQCAFKwMIIBijIRgMAQsMAQsgAyAYOQMACwsFIAUgAygCADYCCCAGQwAAAAA4AgACQAJAIAdB/wFxRQ0AIBMgCTYCAEEAIAEgBCATEKgBQQFIDQMaAkACQAJAAkAgB0EYdEEYdUEqaw4GAQAEBAQCBAsgEiAVNgIAIABB550CIBIQqAFFDQIgAyAFKAIIIAUoAlxqNgIADAILIBEgBjYCACAAQeqdAiAREKgBRQ0BIAMgBioCACAFKAIIspSoNgIADAELIBAgBjYCACAAQeqdAiAQEKgBQQBHIQAgBioCACIXQwAAAABcIABxRQ0AIAMgBSgCCLIgF5WoNgIACwwBCyAPIBU2AgAgACAEIA8QqAFBAUYEQCADIAUoAlw2AgALCwsgFCADIAgQxQJBAEcLBUEACyEWIAUkBCAWC4c8AjV/B30jBCEQIwRBoAJqJAQgEEHwAWohCCAQQeABaiEbIBBB2AFqISYgEEHQAWohHCAQQUBrIRcgEEHAAWohByAQQShqIR8gEEEgaiEnIBBBGGohISAQQbgBaiEsIBBBsAFqIS0gEEEQaiEiIBBBoAFqIRggEEGQAWohGiAQIR0gEEGAAWohJSAQQfAAaiEkIBBB6ABqIS4gEEHgAGohLyAQQdgAaiEwIBBBqAFqITEQPCIJLAB/BH9BAAVBmKkEKAIAIQYgBEGAgMAAcSI0QQBHIhEEQBC8AQsgCSAAEF4hEyAmIABBAEEBQwAAgL8QbCAQIAMpAgA3A1AQvgEhOyARBH0QrgNDAAAAQZQFICYqAgQLIAZByCpqIigqAgBDAAAAQJSSITwgCCAQKQJQNwIAIBwgCCA7IDwQyQMgCCAJQcgBaiIDIBwQNSAXIAMgCBBDIARBgAFxRSEpIARBwABxRSEqIARBgIABcUUhGSAEQYCAAnFBAEchIyAEQYCAEHFBAEchMiAGQcQqaiEzIBsgJioCACI7QwAAAABeBH0gOyAGQdwqaioCAJIFQwAAAAALQwAAAAAQMiAIIBdBCGogGxA1IAcgFyAIEEMCfwJAIBEEfyAHIBMgFxBhGiAIIBcQzwIgEyAIQQAQgQUEfxA8IhUgFSgCuAIgFSgCwAJyNgLAAiAcIBwqAgAgFSoCcJM4AgAMAgUQswMQsQFBAAsFIAcgKCoCABB8IAcgEyAXEGEEfyAJIRUMAgVBAAsLDAELIBcgExDNAiIKBEAgBkHQOGpBATYCAAsgIwRAIAZBsDFqIgMoAgBBKhDhAiEHIAZB/NYAaiILIAMoAgAiAygCADYCACAGQYDXAGogAygCBDYCACAGQYTXAGogAykCCDcCACAGQcTXAGogAygCSDYCACAGQcjXAGogAygCTDYCACAGQcDXAGogAygCRDYCACAGQbDXAGogBzYCACAGQbTXAGogBygCBDYCACAGQYzXAGooAgBFBEAgBkGY1wBqEH4EQCAGQaTXAGoQfhoLCyALEOQGCyAJIBMgBEHACHFFEKcFIg4EfyAJKAKoBiAJKAKwBkYFQQALIQwgCgR/IAYsAOAHQQBHBUEACyEUIAZBjDpqIQ0gBkG0M2ohICARBH8gICgCAAR/QQAFIA0oAgAgE0YEfyAGQbgzaigCACAVQYCdAhC1BUYFQQALCwVBAAshEiAOIAxBAXNxIRYgICgCACATRiIPBH9BACEHQQAFIAZBtDVqKAIAIBNGBH9BAQUgBkGoNWooAgAgE0YEfyAGQcQ1aigCAEEDRgVBAAsLIgMhByADIARBEHFBAEdyIBFBAXNxCyILQQFxIQMgByASIA4gFHJycgR/IA9FBEAgBkG4OmoiDigCACESIAEQXCEPIAZBkDpqIAJBAWoQwAEgBkGcOmogD0EBaiIPEJECIAZBpDpqKAIAIAEgDxBGGiAIQQA2AgAgDiAGQZg6aigCACACIAEgCBDnBDYCACAGQbQ6aiAIKAIAIAFrNgIAIA0QlAMCQAJAIBMgDSgCAEcNACAOKAIAIBJHDQAgDRD4BQwBCyANIBM2AgAgBkHAOmpDAAAAADgCACAGQcQ6aiARQQFzEOYIIAMgCyAMckEBcSARGyEDCyAEQYDAAHEEQCAGQdA6akEBOgAACyARRQRAAkAgFkUEQCAURQ0BIAYsAIgCRQ0BC0EBIQMLCwsgEyAJELUBIBMgCRCzAiAJEHQgA0EBcUEARyEDIARBgIHAAHFFBEAgBkHMM2oiCSAJKAIAQQxyNgIAC0EABSALIQMgBiwA4AdBAEcLIRYgICgCACATRgR/An8gGUUEQCAGQcQzaiwAAEUEQCAGQZA6aiIJIAJBAWoQwAEgCEEANgIAIAZBuDpqIAZBmDpqKAIAIAkoAgAgASAIEOcENgIAIAZBtDpqIAgoAgAgAWs2AgAgDRD4BQsLIAZBtDpqKAIAIQ4gBkG8OmogAjYCACAGQfDWAGogBDYCACAGQfTWAGogBTYCACAGQfjWAGpBADYCACAGQcUzaiAGLAD4ASILQQFzOgAAIAZB2NwAakEBNgIAIAYqAvABAn0gFyoCACFAIDMqAgAhPiAGQcA6aioCACE/IBEEfSAGKgL0ASAVKgLMAZMgKCoCAJMFIAZBtDFqKgIAQwAAAD+UCyE7IEALkyA+kyA/kiE8IAYsAL0BQQBHIQkCQAJAIAMNACAKQQFzIgMgCXJFBEAgBiwA5QcNAQsCQCADIAlBAXNyRQRAIAYsAOUHBEAgDUGMgAQQmwEgDUGNgAwQmwEMAgsLIAYsAOAHBEAgBkHt1gBqLAAARQRAIApFDQIgDSAGQcQ6aiA8IDsQ8AggDRCUAwwCCwsgC0UNACAGQe3WAGosAAANACAGKgKAB0MAAAAAWwRAIAYqAoQHQwAAAABbDQELIA0gBkHEOmogPCA7EO8IIA0QlAMgBkHs1gBqQQE6AAALDAELIA0QuwQgBkHt1gBqQQE6AAALIAZB7dYAaiIDLAAABEAgBiwA+AFFBEAgA0EAOgAACwsgDiAGQYAqaiILKAIAQQBMDQAaAkACQAJAAkAgBiwAiAIEQCAGLACKAkUiAyAJQQFzckUNAQwCBSAJDQEgByAZQQFzckUNAwsMAwsgBiwAiwJBAEchAwsgByADIBlBAXNyckUNAAwBC0EAIQMDQCAIIAsgAxCUAi8BADYCACAIIAQgBRDfAwRAIA0gCCgCABCbAQsgA0EBaiIDIAsoAgBIDQALCyALQQAQwAEgDgsFQQALISsgICgCACATRgRAIBYgBkHEM2osAAByBEBBASEHQQAhDAUCf0EAQYCACCAGLACJAiIHRSIKGyEeAkACQAJAAkACfwJ/AkACQAJ/AkACQAJAAkACQAJAAkAgBiwAvQFBAEciNQRAAkAgBiIDQYgCaiEPIAYsAIsCRQRAQQAhByADLACIAiEMIAZBigJqIRYgBiwAigIhAwwBCyADLACIAgR/QQAFIAcgBiwAigJyQf8BcUULIQcgBiILQYgCaiEPAkACQCAKBEBBACEMDAEFAkAgBkGKAmoiFiwAACEJIAssAIgCBEBBACEMDAELIAlFIQwMAgsLDAELIAZBigJqIRYgBiwAigIhCQsgCUH/AXFBAEchAyALLACIAgRAIAchCQwDCyAJQf8BcUUhCwwDCwUgBkGIAmoiDywAAAR/An8gBiwAiwIEQEEAIQdBAQwBCyAHIAYsAIoCckH/AXFFIQcgBkGIAmohD0EBCwVBACEHQQALIgMhDCAGQYoCaiEWCyADQf8BcUEARyEDIAxB/wFxBH8gByEJQQAFQQAhC0EAIQwMAgshDAsgCkUEQEEAIQcMAgsgFiwAAAR/QQAFIAYsAIsCRQshDiAJBEBBACEJQQAhBwwDCyAOBEBBACEOQQAhCUEAIQpBAAwHBUEAIQdBACEJQQAhC0EADAsLAAsgCgRAIAchCSALIQcMAQsgFiwAAARAIAchCSALIQcMAQsgBiwAiwJFIQkgBwRAIAshB0EAIQ4MAgUgCyEHQQAhCkEAIQ4MAwsACyAJBEBBACEJQQAhDgwBCyAMBH9BACEOQQAhDEEAIRQgByEJQQAhC0EAIQoMCwUgByEJQQAhCkEAIRJBACELQQAhFEEAIQ5BAAshBwwMC0ESQQEQbUUEQEEBIQoMAQsgGUEBcyAjciIKQQFzIQsgCiARQQFzcg0BIA0QkAIhCwwBCyAJBEACQEEKQQEQbSAZcUEBcyAjciIJQQFzIQsgCSARQQFzcgRAQQEhCQwBCyANEJACIQsgCgRAQQEhCQwDBSAOIQpBACESQQEhDgwECwALBUEAIQlBACELCyAKRQRAIA4hCkEAIRIgCSEODAILC0EQQQEQbUUEQCAOIQpBASESIAkhDgwBCyAjQQFzIQogEUEBcyAjcgRAIAkhDiAHIQkgCyEHDAQLIA0QkAIhCiAJIQ4gByEJIAshBwwDCyAKBH8gByEJIBIhCiALBSALIRQgEiEKIAchCUEAIQsMAgsLIQdBCUEBEG1BAXMgI3IiFEEBcyELIBQgEUEBc3IEQCAHIRQMAQsgDRCQAiELQQAgCkUNAhogCyEKDAELIAoEfyALIQogFAUgFCEHQQAMAgshBwtBEUEBEG0EfyAZIQ4gCiELDAMFIAohC0EBCwshCiAOBEBBCUEBEG0EQCAZIApFDQIaIBkhDgwDCwsgCgR/QQAhDgwCBUEACwshDiAMBH8gByEMQQAhFEEAIQoMAgVBACESQQAhFEEACyEKDAMLQRRBARBtIARBgIAFcSISRXEhCkETQQEQbQRAQQEhFAwCCyAMBH8gByEMQQEhFAwBBUEAIRJBAQshFAwCC0EUQQEQbUUEQEEAIRIgDCEHDAILIARBgIAFcSESIAwhBwsgEkUhEgtBAUEBEG0EQCANIB5BhIAEQYyABEGAgAQgAxsgCRtyEJsBQQEhB0EAIQxBAAwBC0ECQQEQbQRAIA0gHkGFgARBjYAEQYGABCADGyAJG3IQmwFBASEHQQAhDEEADAELIBFBAXMiDEEDQQEQbUEBc3JFBEAgDywAAARAIBUgFSoCXCAGQbQxaioCAJNDAAAAABA5EL0CBSANIB5BhoAEQYKABCAJG3IQmwELQQEhB0EAIQxBAAwBC0EEQQEQbUEBcyAMckUEQCAPLAAABEAgFSAVKgJcIAZBtDFqKgIAkhDUBhBFEL0CBSANIB5Bh4AEQYOABCAJG3IQmwELQQEhB0EAIQxBAAwBC0EHQQEQbQRAIA0gHkGGgARBhIAEIA8sAAAbchCbAUEBIQdBACEMQQAMAQtBCEEBEG0EQCANIB5Bh4AEQYWABCAPLAAAG3IQmwFBASEHQQAhDEEADAELIBlBAXMiCUEKQQEQbUEBc3JFBEAgDSAeQYiABHIQmwFBASEHQQAhDEEADAELQQtBARBtQQFzIAlyRQRAIA0QkAJFBEACQCADBEAgDUGMgAwQmwEMAQsgNUUNACAGLACLAkUNACAWLAAADQAgDywAAA0AIA1BhIAMEJsBCwsgDSAeQYmABHIQmwFBASEHQQAhDEEADAELQQ1BARBtBEAgEUUEQEEBIQdBASEMQQEMAgsgDywAAEUhDCAEQYAQcQRAIAkgDHIEQEEBIQcgDAwDCwUgCSAMQQFzIgxyBEBBASEHIAwMAwsLIAhBCjYCACAIIAQgBRDfAwRAIA0gCCgCABCbAQtBASEHQQAhDEEADAELIARBgAhxBEACQEEAQQEQbUUNACAPLAAADQAgBiwAiQINACAJIBYsAAByDQAgCEEJNgIAIAggBCAFEN8DBEAgDSAIKAIAEJsBC0EBIQdBACEMQQAMAgsLQQ5BARBtBEBBACEHQQAhDEEBDAELIAogEnIEQCANQYqABEGLgAQgChsQmwEgDUFAayANKAI4IgM2AgAgDSADNgI8QQEhB0EAIQxBAAwBCyAUBEBBD0EBEG0EQCANELsEIAZB7NYAakEBOgAAQQEhB0EAIQxBAAwCCwsgByALcgRAIAYoAtwBBEAgDRCQAgR/IAZByDpqKAIAIAZBzDpqKAIAELgBBUEACyEDIAZBqDpqIgkgDRCQAgR/IAZByDpqKAIAIAZBzDpqKAIAELoBBSAGQbg6aigCAAsiCyADa0ECdEEBchCRAiAGQbA6aiIKKAIAIAkoAgAgBkGYOmooAgAiCSADQQF0aiALQQF0IAlqELcGIAooAgAQhAMLIAdFBEBBASEHQQAhDEEADAILIA0QkAJFBEAgDRC7BAsgBkHs1gBqQQE6AAAgDSEDIAZBxDpqIgcoAgQgBygCCEcEQCADIAcQkwMgB0EAOgAPC0EBIQdBACEMQQAMAQsgDkUEQEEBIQdBACEMQQAMAQsQ1QciD0UEQEEBIQdBACEMQQAMAQsgDxBcQQF0QQJqEFMhByAPLAAABEACQEEAIQMDQAJAAn8gCCAPQQAQpgIhNiAIKAIAIgtFDQEgC0H//wNNBEAgCCAEIAUQ3wMEQCADQQF0IAdqIAgoAgA7AQAgA0EBaiEDCwsgNgsgD2oiDywAAA0BCwsgA0EBdCAHakEAOwEAIANBAEwNACANIAZBxDpqIAcgAxDtCCAGQezWAGpBAToAAAsFIAdBADsBAAsgBxBBQQEhB0EAIQxBAAshFgsFQQEhB0EAIQwLICAoAgAgE0YEfyAHIBlBAXNyBH9BACEDQQAFAn8gASAGQaQ6aigCACIDEIcCRQRAQQAhA0EADAELIAZBnDpqKAIAQX9qCwshDwJAAkAgByAMQQFzcgRAIAcNAQUgBEEgcQ0BCwwBCyAZBEAgBkGoOmoiByAGQZA6aigCAEECdEEBchCRAiAGQbA6aigCACAHKAIAIAZBmDpqKAIAQQAQtwYLIARBwANxBEACQAJ/AkAgKg0AQQBBARBtRQ0AQcAAIQlBAAwBCyApRQRAQQNBARBtBEBBgAEhCUEDDAILQQRBARBtBEBBgAEhCUEEDAILCyAEQYACcUUNAUGAAiEJQRULIQcgCBDeAyAIQgA3AgwgCEIANwIUIAhCADcCHCAIQgA3AiQgCEEANgIsIAggCTYCACAIIAQ2AgQgCEEANgIIIAggBzYCECAIIAZBsDpqKAIANgIUIAggBkG0OmoiCSgCADYCGCAIIAZBvDpqKAIANgIcIAhBADoAICAIIAZBmDpqIgsoAgAiByAGQcQ6aiIKKAIAQQF0IAdqEKQDIg42AiQgCCAHIAZByDpqIhQoAgBBAXQgB2oQpAMiEjYCKCAIIAcgBkHMOmoiHigCAEEBdCAHahCkAyIpNgIsIAggBUE/cUHsAGoRAwAaIAgoAhQhByAOIAgoAiQiKkcEQCAKIAcgByAqahDlBDYCACAGQezWAGpBAToAAAsgEiAIKAIoIgdHBEAgFCAIKAIUIgogByAKahDlBDYCAAsgKSAIKAIsIgdHBEAgHiAIKAIUIgogByAKahDlBDYCAAsgBkGQOmohByAILAAgBEAgMkEBcyAIKAIYIgogK0xyRQRAIAcgBygCACAKICtrahDAAQsgBkG4OmogCygCACAHKAIAIAgoAhRBABDnBDYCACAJIAgoAhg2AgAgDRCUAwsLCyAZRQ0AIAZBsDpqKAIAIgcgARCHAkUNACAHIQMgBkG0OmooAgAhDwsgAwR/IDJBAXMgDyArRnJFBEAgCBDeAyAIQYCAEDYCACAIIAQ2AgQgCCABNgIUIAggDzYCGCAIIAIgD0EBahC6ATYCHCAIQQA2AgggCCAFQT9xQewAahEDABogCCgCFCEBIAgoAhggCCgCHCICQX9qELgBIQ8LIAEgBkGwOmooAgAgD0EBaiACELgBEPYEQQEFQQALITcgBkHw1gBqQQA2AgAgBkH01gBqQQA2AgAgBkH41gBqQQA2AgAgNwVBAAshDiAWBEAgICgCACATRgRAEHILCyAZQQFzICAoAgAgE0dyBH8gAQUgBkGwOmooAgALIQkgEUUEQCAXIBNBARCXASAQIBcpAwA3AzggECAXKQMINwMwQQdDAACAPxBCIQEgBkHMKmoqAgAhOyAbIBApAjg3AgAgCCAQKQIwNwIAIBsgCCABQQEgOxCsAQsgGyAXKgIAIjsgFyoCBCI8IDsgHCoCAJIgPCAcKgIEkhA2IBEEQCAfIBUpAsgBNwMABSAfIBcgMxA1CyAnQwAAAABDAAAAABAyIBFBAXMgDSgCACATR3IEf0EABSAgKAIAIBVBgJ0CELUFRgsgICgCACATRnIEQCAGQejWAGoiFCAGKgIYIBQqAgCSOAIAIAZBmDpqKAIAIQsgCBA6ICEQOiAGQcQ6aigCAEEBdCALaiEKQQAhByALIRYgBkHIOmoiDSgCACIBIAZBzDpqIg8oAgAiAkYEf0EAIRJBmXghAkEBBSABIAIQuAFBAXQgC2ohEkF/IQJBAgsgNEEUdmohBUF/IQMDQAJAAkACQCAWLgEADgsCAQEBAQEBAQEBAAELIAdBAWohByADQX9HIBYgCklyRQRAIAVBf2ohASAFQQJIBH8gByEDDAMFIAEhBSAHCyEDCyACQX9HIBYgEklyDQAgBUF/aiEBIAVBAkgEfyAHIQIMAgUgASEFIAcLIQILIBZBAmohFgwBCwsgB0EBaiIBIAIgAkF/RhshAiAsIAogCxDOBiAKQQBBABDdAyAIICwoAgA2AgAgCCAGQbQxaiIFKgIAIjsgASADIANBf0YbspQ4AgQgAkF/SgRAIC0gEiALEM4GIBJBAEEAEN0DICEgLSgCADYCACAhIAUqAgAiOyACspQ4AgQLIBEEQCAiIBwqAgAgOyABspQQMiAnICIpAwA3AwALIAZB7NYAaiICLAAABEACQCAEQYAgcQRAIAZBwDpqQwAAAAA4AgBDAAAAACE7BQJAIBwqAgAiPkMAAIA+lCE8IAgqAgAiPSAGQcA6aiIBKgIAIjtdBEAgAUMAAAAAID0gPJMQOaiyIjs4AgAMAQsgPSA+kyI9IDtgRQ0AIAEgPCA9kqiyIjs4AgALCyARRQ0AIAgqAgQiPSAFKgIAkyI+IBUiASoCXCI8XQR9QwAAAAAgPhA5BSA9IBwqAgSTIj0gPGAEfSA9BSA8CwshPSAVIBUqAswBIDwgPZOSIjw4AswBIAEgPTgCXCAfIDw4AgQLBSAGQcA6aioCACE7CyACQQA6AAAgIiA7QwAAAAAQMiANKAIAIgIgDygCACIDRwRAIAIgAxC4ASIKQQF0IAtqIQEgAiADELoBIgJBAXQgC2ohB0MAAAAAQwAAgL8gERshPUMAAAAAQwAAAEAgERshPkEqQwAAgD8QQiELIBogHyAhEDUgGCAaICIQQCAaIAE2AgAgCiACSARAAkAgBkGwMWohCiAVIQMgJUEIaiESIAUqAgAhOyAYKgIEITwDQCA8IBsqAgwgO5JeDQEgPCAbKgIEXQRAAkAgASAHTw0AIAEhAgJAA0ACQCACQQJqIQEgAi4BAEEKRg0AIAEgB08NAiABIQIMAQsLIBogATYCAAwBCyAaIAE2AgALBSAdIAEgByAaQQEQ3QMgHSoCAEMAAAAAXwRAIB0gCigCAEEgENwDQwAAAD+UqLI4AgALIC5DAAAAACA9IAUqAgCTEDIgJCAYIC4QNSAwIB0qAgAgPhAyIC8gGCAwEDUgJSAkIC8QQyAkIBsQxgIgJSAkELUCICQgGxDGAiAlICQQywIEQCADKAL0BCAlIBIgC0MAAAAAQQ8QdQsgBSoCACE7IBgqAgQhPCAaKAIAIQELIBggHyoCACAiKgIAkzgCACAYIDsgPJIiPDgCBCABIAdJDQALCwsLIBEgBkG0OmooAgAiAUGAgIABSHIEQCAVKAL0BCAGQbAxaigCAAJ9IAUqAgAhQSAYIB8gIhBAIEELIBhBAEMAAIA/EEIgCSABIAlqQwAAAABBACAbIBEbEP0BCwJ/IAYsAL4BBH8Cf0EBIBQqAgAiO0MAAAAAXw0AGiA7u0QAAABAMzPzPxAUtkPNzEw/XwsFQQELITggGiAfIAgQNSAYIBogIhBAIBogGCoCACI7IBgqAgQiPCAFKgIAk0MAAAA/kiA7QwAAgD+SIDxDAADAv5IQXSA4CwRAAkAgHSAbEMYCIBogHRDLAkUNAAJ/IBUoAvQEITkgHSAaEPECIDkLIBogHUEAQwAAgD8QQkMAAIA/EMUBCwsgGQRAIB0gGCoCAEMAAIC/kiAYKgIEIAUqAgCTEDIgBkGQ2ABqIB0pAwA3AgALBSAIQQA2AgACQAJAIBEEQCAcKgIAITsgCSAIEO4IsiE8ICEgOyAGQbQxaiIBKgIAIDyUEDIgJyAhKQMANwMAIAgoAgAhAgwBBQJAIAggCRBcIgEgCWoiAjYCACABQYCAgAFODQAgBkG0MWohAQwCCwsMAQsgFSgC9AQgBkGwMWooAgAgASoCACAfQQBDAACAPxBCIAkgAkMAAAAAQQAgGyARGxD9AQsLIBEEQCAhQwAAAAAgBkG0MWoqAgAQMiAIICcgIRA1IAgQ/gUQswMQsQELICMEQBDjBgUgBkHM2ABqLAAABEAgHyAJQQAQ3QELCyAmKgIAQwAAAABeBEAgMSAXKgIIIAZB3CpqKgIAkiAXKgIEICgqAgCSEDIgCCAxKQIANwIAIAggAEEAQQEQrgELIA4EQCATEMsBCyAMIA4gBEEgcRsLCyE6IBAkBCA6Cz0AAkAgACwAAEElRw0AIAAsAAFBLkcNACAALAACQTBHDQAgACwAA0HmAEcNACAALAAEDQBB550CIQALIAAL6gYCEH8BfSMEIQ8jBEGgAWokBCAPQZABaiELIA8iCkGIAWohESAKQdAAaiEMIApB+ABqIRMgCkHgAGohEiAKQUBrIRQgCkHwAGohFRA8Ig0sAH8Ef0EABUGYqQQoAgAhCCANIAAQXiEJEL4BIRggESAAQQBBAUMAAIC/EGwgCiAYIBEqAgQgCEHIKmoiFioCAEMAAABAlJIQMiALIA1ByAFqIg4gChA1IAwgDiALEEMgCyAMIAhBxCpqIhAQNSAKIAxBCGoiDiAQEEAgEyALIAoQQyAKIBEqAgAiGEMAAAAAXgR9IBggCEHcKmoqAgCSBUMAAAAAC0MAAAAAEDIgCyAOIAoQNSASIAwgCxBDIBIgCSAMEGEEfwJ/IAwgCRDNAiEQIAYEQCABRQRAIAZB550CEIcCBEAgBhC+BCEGCwsFIAFBDGxBhMgBaigCACEGCwJAAkAgDSAJQQEQpwUEQCAJIA0QtQEgCSANELMCIA0QdCAIQcwzakEMNgIADAEFAkACQAJAIBAEQCAILADgBw0BIAgsAOUHDQELIAhBqDVqKAIAIAlGDQAgCEG0NWooAgAgCUYEQCAJIAhB1NcAaigCAEcNAQsMAQsgCSANELUBIAkgDRCzAiANEHQgCEHMM2pBDDYCACAILACIAg0DIAgsAOUHDQMgCEG0NWooAgAgCUYNAwsgCEG0M2oiECgCACAJRgRAIAhB1NcAaigCACAJRg0BCyASIBYqAgAQfCAJIAEgAiADIAQgBSAGIAcQ+QgiBARAIAkQywELIBAoAgAgCUYEf0EJBUEIQQcgCEGgM2ooAgAgCUYbC0MAAIA/EEIhBSAMIAlBARCXASAPIAwpAwA3A0ggFCAOKQMANwMAIAhBzCpqKgIAIQMgCiAPKQJINwIAIAsgFCkCADcCACAKIAsgBUEBIAMQrAEgCkHAACABIAIgBhCWAyAKaiEBIAtDAAAAP0MAAAA/EDIgDCAOIAogAUEAIAtBABCtASARKgIAQwAAAABeBEAgFSAOKgIAIAhB3CpqKgIAkiATKgIEEDIgCyAVKQIANwIAIAsgAEEAQQEQrgELIAQMBAsLDAELIAhB1NcAakEANgIACyANENsHIAwgCSAAIAEgAiAGEPkFCwUgEiAWKgIAEHxBAAsLIRcgDyQEIBcLgwEBA38jBCECIwRB0ABqJAQgAkFAayEEIAIhAyACIAE4AkggABDYAiIALAAAQSVGBEAgACwAAUElRwRAIAQgAbs5AwAgA0HAACAAIAQQcxogAyEAA0AgAEEBaiEDIAAsAABBIEYEQCADIQAMAQsLIAIgABCPB7YiATgCSAsLIAIkBCABC4cBAQR/IwQhAiMEQdAAaiQEIAJByABqIQQgAiEDIAJBQGsiBSABOQMAIAAQ2AIiACwAAEElRgRAIAAsAAFBJUcEQCAEIAE5AwAgA0HAACAAIAQQcxogAyEAA0AgAEEBaiEDIAAsAABBIEYEQCADIQAMAQsLIAUgABCPByIBOQMACwsgAiQEIAELkgMCDn8BfSMEIQQjBEHQAGokBCAEQRBqIQYgBEEIaiEHIAQhCEGYqQQoAgBBlDNqKAIAIQkgBEEoaiIKIAIgAhAyIARBMGoiCyABIAoQQCAEQRhqIgUgAiACEDIgBEEgaiIDIAEgBRA1IARBOGoiASALIAMQQwJ/IAEgAEEAEGEhDiABIAAgCyAKQQAQkQEhDSAOCwRAIAMgARDmAyALLAAABEAgCSgC9AQgA0MAAABAIAIQOUEXQRYgCiwAABtDAACAPxBCQQkQlQILQQBDAACAPxBCIQAgBUMAAAA/QwAAAD8QMiADIAMqAgAgBSoCAJM4AgAgAyADKgIEIAUqAgSTOAIEAn8gCSgC9AQhDyAGIAJDgQQ1P5RDAACAv5IiAiACEDIgBSADIAYQNSAIIAKMIhEgERAyIAcgAyAIEDUgDwsgBSAHIABDAACAPxDFAQJ/IAkoAvQEIRAgBiACIBEQMiAFIAMgBhA1IAggESACEDIgByADIAgQNSAQCyAFIAcgAEMAAIA/EMUBCyAEJAQgDQuJAwILfwJ9IwQhBCMEQUBrJAQgBEEwaiEGIARBKGohByAEQRBqIQUgBEE5aiELIARBOGohDCAEIQ0gBEEgaiEOEDwiCCwAfwRAQQAhAAVBmKkEKAIAIQkgCCAAEF4hCiAGIAhByAFqIgAgAhA1IAUgACAGEEMQ/gEhDyAFIAIqAgQiECAPYAR9IAlByCpqKgIABUMAAAAACxB8IAUgCkEAEGEEQCAFIAogCyAMIAMgCCgC6AJBAXZBAXFyEJEBIQBBFUEWIAssAABFIgMbQRcgDCwAAEUgA3IbQwAAgD8QQiEDIAUgCkEBEJcBIAQgBSkDADcDCCANIAUpAwg3AwAgCUHMKmoqAgAhDyAHIAQpAgg3AgAgBiANKQIANwIAIAcgBiADQQEgDxCsASAHQwAAAAAgAioCACAJQbQxaioCACIPk0MAAAA/lBA5QwAAAAAgECAPk0MAAAA/lBA5EDIgDiAFIAcQNSAGIA4pAgA3AgAgBiABQwAAgD8Q0QIFQQAhAAsLIAQkBCAAC1IBBH8jBCEBIwRBEGokBEGYqQQoAgBByCpqIgIoAgAhAyACQwAAAAA4AgAgAUMAAAAAQwAAAAAQMiAAIAFBgAQQ5wMhBCACIAM2AgAgASQEIAQLVAEDfyMEIQQjBEEQaiQEIAQhBQJAAkAgACABEJ4DIgMgABCdA0YNACADKAIAIAFHDQAgAyACNgIEDAELIAUgASACEKEBIAAgAyAFEMcEGgsgBCQEC0YBA38gAUGsqQQoAgAiA2oiAkGkqQQoAgAiBE0EQEGgqQQoAgAgAEsEQCAEQQFqIQIFIAMgACABEEYaCwtBrKkEIAI2AgALiQEBAn8gACgCCCEEIAAoAgAiAyAAKAIERgRAIAAgACADQQFqEFgQ6AIgACgCACEDCyADIAEgBGtBA3UiAUoEQCAAKAIIIAFBA3RqIgRBCGogBCADIAFrQQN0ELMBGgsgACgCCCABQQN0aiACKQIANwIAIAAgACgCAEEBajYCACAAKAIIIAFBA3RqCyIBAX8gACgCBCIBIAAoAghIBH8gASAAKAIAaiwAAAVBAAsLjQEAAkACQCAAKAIcIAFIDQAgACgCBEUNAAwBCyAAIAE2AhwLAkACQCAAKAIkIAJIDQAgACgCBEUNAAwBCyAAIAI2AiQLAkACQCAAKAIYIAFKDQAgACgCBEUNAAwBCyAAIAE2AhgLAkACQCAAKAIgIAJKDQAgACgCBEUNAAwBCyAAIAI2AiALIABBATYCBAu7AQECfyAAEKMBIgFB/wFxIQIgAUFgakEYdEEYdUH/AXFB1wFIBH8gAkH1fmoFAn8gAUEJakEYdEEYdUH/AXFBBEgEQCACQQh0QYCSfGogABCjAUH/AXFyQewAagwBCyABQf8BcUH/AUcgAUH/AXFB+gFKcQRAQZT1AyACQQh0ayAAEKMBQf8BcWsMAQsCQAJAAkAgAUEYdEEYdUEcaw4CAAECCyAAQQIQxAEMAgsgAEEEEMQBDAELQQALCwtIACAAEI0GIAAgACoCECABkiIBOAIQIAAgATgCCCAAIAAqAhQgApIiAjgCFCAAIAI4AgwgAEEBIAGoIAKoQQBBAEEAQQAQ6gML6hcCF38NfSMEIRIjBEHwAmokBCASQYABaiEDIBIhFyASQcwCaiIWIAApAlg3AgAgFiAAKAJgNgIIIBJB2AJqIhMgAEFAayIKKQIANwIAIBMgCigCCDYCCCASQcACaiIPIBMgARDrAyAPKAIEIA8oAghIBH8CfyAAQcwAaiEYQQAhCkEBIQ4DQAJAAkACfQJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIA8QowEiBkEYdEEYdUF/aw4hEhMBEwEDBQcGChMOEBETGBMTEwEAAAIEAQsMDQ0VDwkIEwsgDyAOBH8gB0ECbSAMagUgDAsiBUEHakEIbRCSAkEAIQ0gCiEEQQAhCSALIQhBzQAhBgwWC0EAIQ0gCiEEIA4hCSAHQQJtIAxqIQUgCyEIQc0AIQYMFQtBACAHQQJIDRcaIAIgB0F+akECdCADaioCACAHQX9qQQJ0IANqKgIAEMsEQQAhDSAKIQRBACEJIAwhBSALIQhBzQAhBgwUC0EAIAdBAUgNFhogAkMAAAAAIAdBf2pBAnQgA2oqAgAQywRBACENIAohBEEAIQkgDCEFIAshCEHNACEGDBMLQQAgB0EBSA0VGiACIAdBf2pBAnQgA2oqAgBDAAAAABDLBEEAIQ0gCiEEQQAhCSAMIQUgCyEIQc0AIQYMEgtBACAHQQJIDRQaQQEhBUEAIQQDfyACIARBAnQgA2oqAgAgBUECdCADaioCABCcAyAEQQJqIgRBAXIiBSAHSA0AQQAhDSAOIQkgDCEFIAshCEHNACEGIAoLIQQMEQsgB0EBSAR/QQAMFAVBACEUQRULIQYMEAsgB0EBSAR/QQAMEwVBACEVQRMLIQYMDwsgB0EESAR/QQAMEgVBHSEGQQALIRAMDgsgB0EESAR/QQAMEQVBGSEGQQALIREMDQtBACAHQQZIDQ8aQQUhBUEAIQQDfyACIARBAnQgA2oqAgAgBEEBckECdCADaioCACAEQQJqQQJ0IANqKgIAIARBA2pBAnQgA2oqAgAgBEEEakECdCADaioCACAFQQJ0IANqKgIAEKIBIARBBmohCCAEQQtqIgUgB0gEfyAIIQQMAQVBACENIA4hCSAMIQUgCyEIQc0AIQYgCgsLIQQMDAtBACAHQQhIDQ4aIAdBfmohCUEFIQhBACEEA0AgAiAEQQJ0IANqKgIAIARBAXJBAnQgA2oqAgAgBEECakECdCADaioCACAEQQNqQQJ0IANqKgIAIARBBGpBAnQgA2oqAgAgCEECdCADaioCABCiASAEQQZqIQUgBEELaiIIIAlIBEAgBSEEDAELC0EAIAVBAXIiBCAHTg0OGiACIAVBAnQgA2oqAgAgBEECdCADaioCABCcA0EAIQ0gCiEEIA4hCSAMIQUgCyEIQc0AIQYMCwtBACAHQQhIDQ0aIAdBemohCUEBIQVBACEEA0AgAiAEQQJ0IANqKgIAIAVBAnQgA2oqAgAQnAMgBEECaiIIQQFyIgUgCUgEQCAIIQQMAQsLQQAgBEEHaiIJIAdODQ0aIAIgCEECdCADaioCACAFQQJ0IANqKgIAIARBBGpBAnQgA2oqAgAgBEEFakECdCADaioCACAEQQZqQQJ0IANqKgIAIAlBAnQgA2oqAgAQogFBACENIAohBCAOIQkgDCEFIAshCEHNACEGDAoLQQAgB0EESA0MGiAHQQFxIgRFIQUgBEEDaiIEIAdIBH8gBkH/AXFBG0YhCUMAAAAAIAMqAgAgBRshHiAFQQFzIQUDfyAFQQJ0IANqKgIAIRsgBUEBakECdCADaioCACEcIAVBAmpBAnQgA2oqAgAhHSAEQQJ0IANqKgIAIRogCQRAIAIgGyAeIBwgHSAaQwAAAAAQogEFIAIgHiAbIBwgHUMAAAAAIBoQogELIAVBBGohCCAFQQdqIgQgB0gEf0MAAAAAIR4gCCEFDAEFQQAhDSAOIQkgDCEFIAshCEHNACEGIAoLCwVBACENIA4hCSAMIQUgCyEIQc0AIQYgCgshBAwJCyAKBH8gCgUgACgCeARAIBYgACABEK0JC0EBCyEEDAULIAohBAwEC0EAIAtBAUgNCRogDyALQX9qIghBDGwgF2oiBCkCADcCACAPIAQoAgg2AgggByENIAohBCAOIQkgDCEFQc0AIQYMBgsCQAJAAkACQAJAIA8QowFBGHRBGHVBImsOBAABAgMEC0EAIAdBB0gNDBogAyoCECEbIAMqAhQhHCADKgIYIR0gAiADKgIAQwAAAAAgAyoCBCADKgIIIhogAyoCDEMAAAAAEKIBIAIgG0MAAAAAIBwgGowgHUMAAAAAEKIBQQAhDSAKIQQgDiEJIAwhBSALIQhBzQAhBgwJC0EAIAdBDUgNCxogAyoCGCEfIAMqAhwhHiADKgIgIRsgAyoCJCEcIAMqAighHSADKgIsIRogAiADKgIAIAMqAgQgAyoCCCADKgIMIAMqAhAgAyoCFBCiASACIB8gHiAbIBwgHSAaEKIBQQAhDSAKIQQgDiEJIAwhBSALIQhBzQAhBgwIC0EAIAdBCUgNChogAyoCFCEeIAMqAhghGyADKgIcIR8gAyoCICEcIAIgAyoCACADKgIEIh0gAyoCCCADKgIMIhogAyoCEEMAAAAAEKIBIAIgHkMAAAAAIBsgHyAcIB0gGpIgH5KMEKIBQQAhDSAKIQQgDiEJIAwhBSALIQhBzQAhBgwHC0EAIAdBC0gNCRogAyoCKCEgIAMqAgAiISADKgIIIiKSIAMqAhAiI5IgAyoCGCIkkiADKgIgIiWSIiaLIAMqAgQiHyADKgIMIh6SIAMqAhQiG5IgAyoCHCIckiADKgIkIh2SIhqLXiEEIAIgISAfICIgHiAjIBsQogEgAiAkIBwgJSAdICAgJowgBBsgGowgICAEGxCiAUEAIQ0gCiEEIA4hCSAMIQUgCyEIQc0AIQYMBgtBAAwICyAPQQQQxAGyQwAAgDeUDAMLIAZB/wFxQf8BRiAGQf8BcUEgSHJFDQFBAAwGC0EAIAdBAUgNBRpBACALQQlKDQUaIAdBf2oiDUECdCADaioCAKghCCALQQxsIBdqIgUgDykCADcCACAFIA8oAgg2AgggEyAWIBggBkH/AXFBCkYbIgUpAgA3AgAgEyAFKAIINgIIIA8gEyAIEKwJQQAgDygCCEUNBRogD0EANgIEIA4hCSAMIQUgC0EBaiEIQc0AIQYMAgsgD0F/EJICIA8QygRB//8DcUEQdEEQdbILIRpBACAHQS9KDQMaIAdBAnQgA2ogGjgCACAHQQFqIQ0gCiEEIA4hCSAMIQUgCyEIQc0AIQYLA0AgBkETRgRAIBUgB04EQEEAIQ0gCiEEIA4hCSAMIQUgCyEIQc0AIQYMAgsgAiAVQQJ0IANqKgIAQwAAAAAQnAMgFUEBaiEUQRUhBgUgBkEVRgRAIBQgB04EQEEAIQ0gCiEEIA4hCSAMIQUgCyEIQc0AIQYMAwsgAkMAAAAAIBRBAnQgA2oqAgAQnAMgFEEBaiEVQRMhBgwCBSAGQRlGBEAgEUEDaiIGIAdOBEBBACENIAohBCAOIQkgDCEFIAshCEHNACEGDAQLIBFBBGohECACQwAAAAAgEUECdCADaioCACARQQFqQQJ0IANqKgIAIBFBAmpBAnQgA2oqAgAgBkECdCADaioCACAHIBFrQQVGBH0gEEECdCADaioCAAVDAAAAAAsQogFBHSEGDAMFIAZBHUYEQCAQQQNqIgYgB04EQEEAIQ0gCiEEIA4hCSAMIQUgCyEIQc0AIQYMBQsgEEEEaiERIAIgEEECdCADaioCAEMAAAAAIBBBAWpBAnQgA2oqAgAgEEECakECdCADaioCACAHIBBrQQVGBH0gEUECdCADaioCAAVDAAAAAAsgBkECdCADaioCABCiAUEZIQYMBAUgBkHNAEYEQCAPKAIEIA8oAghIBEAgBCEKIAkhDiAFIQwgDSEHIAghCwwIBUEADAkLAAsLCwsLDAAACwALCyACEI0GQQELBUEACyEZIBIkBCAZC7QEAgh/A30jBCEIIwRBIGokBCAIIQMgAUEMSgRAIAEhBwNAIAdBAXYiAUEUbCAAaiECIAFBFGwgAGoqAgQiCiAHQX9qIgFBFGwgAGoqAgQiC10hBCABQQAgACIJKgIEIgwgC10gBHMbQRRsIABqIQUgDCAKXSAEcwRAIAMgBSkCADcCACADIAUpAgg3AgggAyAFKAIQNgIQIAUgAikCADcCACAFIAIpAgg3AgggBSACKAIQNgIQIAIgAykCADcCACACIAMpAgg3AgggAiADKAIQNgIQCyADIAApAgA3AgAgAyAAKQIINwIIIAMgACgCEDYCECAAIAIpAgA3AgAgACACKQIINwIIIAAgAigCEDYCECACIAMpAgA3AgAgAiADKQIINwIIIAIgAygCEDYCEEEBIQIDQCAJKgIEIQogAiEEA0AgBEEBaiECIARBFGwgAGoqAgQgCl0EQCACIQQMAQsLA0AgAUF/aiEFIAogAUEUbCAAaioCBF0EQCAFIQEMAQsLIARBFGwgAGohBiAEIAFIBEAgAyAGKQIANwIAIAMgBikCCDcCCCADIAYoAhA2AhAgBiABQRRsIABqIgEpAgA3AgAgBiABKQIINwIIIAYgASgCEDYCECABIAMpAgA3AgAgASADKQIINwIIIAEgAygCEDYCECAFIQEMAQsLIAEgByAEayICSARAIAAgARDNBCACIQEgBiEABSAGIAIQzQQLIAFBDEoEQCABIQcMAQsLCyAIJAQLMwEBfSAAIABB////B3FBmKkEKAIAQZAqaioCACIBIABBGHazlKlBGHRyIAFDAACAP2AbCxMAIAAoAgggACgCAEF/akEobGoLvgMCCH8BfSAAQRBqIgIoAgAEfwN/IAEgAiADEO0DLwEAELoBIQEgA0EBaiIDIAIoAgBHDQAgAQsFQQALIQMgAEEcaiIFEE8gAEEoaiIGEE8gAEEAOgBQIAAgA0EBaiIHEMAJIAIoAgBBAEoEQEEAIQEDQCACIAEQ7QMvAQAhBCACIAEQ7QMoAgQhCCAFIAQQUCAINgIAIAYgBBCUAiABOwEAIAFBAWoiASACKAIASA0ACwsgAEEgEOECBEAgAhDPBC4BAEEJRwRAIAIgAigCAEEBahCVBgsgAhDPBCIBIABBIBDhAiIEKQIANwIAIAEgBCkCCDcCCCABIAQpAhA3AhAgASAEKQIYNwIYIAEgBCkCIDcCICABQQk7AQAgASABKgIEQwAAgECUIgk4AgQgBUEJEFAgCTgCACACKAIAQf//A2pB//8DcSECIAYgAS8BABCUAiACOwEACyAAIAAgAC4BPBCUBiIBNgI0IAAgAQR9IAEqAgQFQwAAAAALOAI4IANBAE4EQEEAIQEDQCAFIAEQUCoCAEMAAAAAXQRAIAAoAjghAyAFIAEQUCADNgIACyABQQFqIgEgB0cNAAsLC+wBAQR/IwQhCCMEQRBqJAQgCEEMaiIJQQA2AgAgCEEIaiIKQQA2AgAgBEEARyELIAAgASAJIAogCEEEaiAIIgAQogkEQCALBEAgBCAJKAIAsiAClEMAAAAAko6oNgIACyAFBEAgBUEAIAAoAgBrsiADlEMAAAAAko6oNgIACyAGBEAgBiAIKAIEsiAClEMAAAAAko2oNgIACyAHBEAgB0EAIAooAgBrsiADlEMAAAAAko2oNgIACwUgCwRAIARBADYCAAsgBQRAIAVBADYCAAsgBgRAIAZBADYCAAsgBwRAIAdBADYCAAsLIAgkBAssACABIAAoAgQgACgCHGoiAEEEahBKQRB0QRB1IABBBmoQSkEQdEEQdWuylQsLACAAuyABuxAUtguCBQEIfwJ/AkACQAJAAkACQCAAKAIEIgYgACgCLCIIaiICEEoiAEEQdEEQdQ4HAAQCBAMEAQQLIAJBAmoQSkH//wNxQXpqIAFKBH8gASACQQZqai0AAAVBAAsMBAsgAkEGahBKQf//A3EiACABSwR/QQAFIAAgAkEIahBKQf//A3FqIAFLBH8gAkEKaiABIABrQQF0ahBKQf//A3EFQQALCwwDC0EADAILIAJBBmoQSiIEQf//A3FBAXYhCSABQf//A0oEf0EABSACQQxqEEohACACQQpqEEohAyAIQQxqQQAgAEH+/wNxIgAgBiAIQQ5qaiAAahBKQf//A3EgAUobaiEAIANB//8DcQRAIAJBCGoQSiEFA0AgBUH//wNxQQF2IgVB/v8BcSIHQQAgACAGaiAHahBKQf//A3EgAUgbIABqIQAgA0F/akEQdEEQdSIDDQALCyACQQ5qIgcgBEH+/wNxakECakH0/wcgCGsgAGpB/v8HcSIEahBKQf//A3EiBSABSgR/QQAFIAcgCUEGbCIDakECaiAEahBKIgBB//8DcQR/IAggBiAAQf//A3FqIAEgBWtBAXRqaiADakEQaiAEahBKBSABIAcgCUECdGpBAmogBGoQSkH//wNxakH//wNxCwtB//8DcQsMAQsgAEH//wNxQQxGIQQgAEH+/wNxQQxGBH8gAkEMahDDASIAQQBKBH8gAkEQaiEHA0ACQCAHIAMgACADa0EBdWoiBUEMbGoiBhDDASIJIAFLBEAgBSEABSAGQQRqEMMBIAFPDQEgBUEBaiEDCyAAIANKDQFBAAwECwsgBkEIahDDASABIAlrQQAgBBtqBUEACwVBAAsLCyMAIAAQ7gMgAEEoahBnIABBHGoQZyAAKAIYIgAEQCAAEEELCzkAAn8CQCAAQSBIBEAgAEEJaw0BBSAAQYDgAEgEQCAAQSBrDQIFIABBgOAAaw0CCwtBAQwBC0EACwvrAwILfwN9IwQhDSMEQRBqJAQgDSELIAQgAZUhEiACIANJBEACQCAAQThqIQ5BASEGIAIiByEJQwAAAAAhAQNAAkAgCyAHLAAAIgIiBTYCACACQX9KBEAgB0EBaiEKBSALIAcgAxCmAiAHaiEKIAsoAgAhBQsgBUUNAAJ/AkAgBUEgTw0AAn8CQAJAIAVBCmsOBAADAwEDC0MAAAAAIQRBAiEIQQEhBkMAAAAAIRBDAAAAACEBIAoMAQsgESEEQQIhCCAKCwwBCyAFIAAoAhxIBH8gACgCJCAFQQJ0agUgDgsqAgAhBCAFENYEBH9DAAAAACARIAYbIASSIQRBACEFIBAgEZIgECAGGyEQIAwhAiAHIAkgBhsFAn8gECAQIBEgASAEkiIBkpIgBhshECABQwAAAAAgBhshASARQwAAAAAgBhshBCAKIAkgBhshCCAMIAkgBhshAgJAAkAgBUEhaw4fAAABAQEBAQEBAQEAAQABAQEBAQEBAQEBAQEAAQEBAAELQQAhBSAIDAELQQEhBSAICwshCUEAQQMgECABkiASYEUiDxshCCAFIQYgAiEMIAogAiAJIAIbIAcgASASXRsgDxsLIgIgA0kgCEEDR3FFDQIgBCERIAIhBwwBCwsgByECCwsgDSQEIAIL0AICAn8EfSMEIQsjBEEQaiQEIAshDCADIAeTIAggApMiDpQgByABkyIPIAQgCJOUkyINIA2MIA1DAAAAAGAbIAUgB5MgDpQgDyAGIAiTlJMiDSANjCANQwAAAABgG5IiDSANlCAPIA+UIA4gDpSSIAmUXQRAIAwgByAIEDIgACAMEJoCBSAKQQpIBEAgASADkkMAAAA/lCIOIAMgBZJDAAAAP5QiD5JDAAAAP5QhAyACIASSQwAAAD+UIg0gBCAGkkMAAAA/lCIQkkMAAAA/lCEEIAAgASACIA4gDSADIAQgAyAPIAUgB5JDAAAAP5QiAZJDAAAAP5QiApJDAAAAP5QiAyAEIBAgBiAIkkMAAAA/lCIEkkMAAAA/lCIFkkMAAAA/lCIGIAkgCkEBaiIKENgEIAAgAyAGIAIgBSABIAQgByAIIAkgChDYBAsLIAskBAuZCAMNfwF+BX0CfyMEIRAgAkEDTgRAIAAoAigpAgAhESAAKAIkQQJxBH8gA0H///8HcSEOIAAgAkEJbEF6aiACQQF0Ig8QsAEgAEEwaiILKAIAIglBAWohDCAJQf//A3EhBCACQQNsQXpqIQggACgCOCIHIQVBAiEGA0AgBSAEOwEAIAUgCSAGQQF0aiIKQf7/A2o7AQIgBSAKOwEEIAVBBmohBSAGQQFqIgYgAkcNAAsgACAIQQF0IAdqNgI4IwQhByMEIAJBA3RBD2pBcHFqJAQgAkF/aiEEIAJBAEoiCgR/IARBA3QgAWoqAgQhFCAEQQN0IAFqKgIAIRUgBCEGQQAhBQNAIAZBA3QgB2ogBUEDdCABaioCACITIBWTIhIgEpQgBUEDdCABaioCBCIVIBSTIhQgFJSSIhZDAAAAAF4EfSASQwAAgD8gFpGVIhaUIRIgFCAWlAUgFAs4AgAgBkEDdCAHaiASjDgCBCAFQQFqIgggAkcEQCAFIQYgFSEUIBMhFSAIIQUMAQsLIAoEfyAEQQN0IAdqKgIAIRQgBEEDdCAHaioCBCEVIAQhBkEAIQUDQCAUIAVBA3QgB2oqAgAiFJJDAAAAP5QiEyATlCAVIAVBA3QgB2oqAgQiFZJDAAAAP5QiEiASlJIiFkO9N4Y1XgRAIBNDAADIQkMAAIA/IBaRlSITIBNDAADIQl4bIhaUIRMgEiAWlCESCyAAKAI0IgQgBUEDdCABaiIIKgIAIBNDAAAAP5QiE5M4AgAgBCAFQQN0IAFqIgoqAgQgEkMAAAA/lCISkzgCBCAEIBE3AgggACgCNCIEIAM2AhAgBCATIAgqAgCSOAIUIAQgEiAKKgIEkjgCGCAEIBE3AhwgACgCNCIEIA42AiQgACAEQShqNgI0IAAoAjgiBCAJIAVBAXQiCGpB//8DcSIKOwEAIAQgCSAGQQF0IgZqOwECIAQgBiAMakH//wNxIgY7AQQgBCAGOwEGIAQgCCAMajsBCCAEIAo7AQogACAEQQxqNgI4IAVBAWoiBCACRwRAIAUhBiAEIQUMAQsLIAsoAgAFIAkLBSAJCyEAIA9B/v8DcSECIAsFIAAgAkEDbEF6aiIEIAIQsAEgACgCNCEGA0AgBiAFQQN0IAFqKQIANwIAIAAoAjQgETcCCCAAKAI0IgYgAzYCECAAIAZBFGoiBjYCNCAFQQFqIgUgAkcNAAsgAEEwaiIGKAIAIQUgAkECSgRAIAVB//8DcSEIIAAoAjgiCSEBQQIhAwNAIAEgCDsBACABIAMgBWoiB0H//wNqOwECIAEgBzsBBCABQQZqIQEgA0EBaiIDIAJHDQALIAAgBEEBdCAJajYCOAsgBSEAIAJB//8DcSECIAYLIAAgAmo2AgALIBALJAQLgwIBBH8gACgCOCIKIAAoAjAiC0H//wNxIgw7AQAgCiALQQFqOwECIAogC0ECakH//wNxIg07AQQgCiAMOwEGIAogDTsBCCAKIAtBA2o7AQogACgCNCABKQIANwIAIAAoAjQgBSkCADcCCCAAKAI0IgEgCTYCECABIAIpAgA3AhQgACgCNCAGKQIANwIcIAAoAjQiASAJNgIkIAEgAykCADcCKCAAKAI0IAcpAgA3AjAgACgCNCIBIAk2AjggASAEKQIANwI8IAAoAjQgCCkCADcCRCAAKAI0IgEgCTYCTCAAIAFB0ABqNgI0IAAgACgCMEEEajYCMCAAIAAoAjhBDGo2AjgLywEBBX8gACgCSCIBBH8gACgCUCABQX9qQQJ0aigCAAVBAAshAQJAAkAgACgCAEUNACAAEP4DIgIoAgBFIgNFBEAgASACKAIURw0BCyACKAIYDQAgAkFgakEAIAAoAgBBAUoiBRshBAJAIAMgBXEEQCAEKAIUIAFGBEAgBEEEaiAAKAI8IgMEfyAAKAJEIANBf2pBBHRqBSAAKAIoQRRqC0EQEMUCRQRAIAQoAhhFBEAgABCAAgwECwsLCyACIAE2AhQLDAELIAAQ3AQLC3kBA38jBCEDIwRBIGokBCADIgIQrgYgAiAAKAI8IgEEfyAAKAJEIAFBf2pBBHRqBSAAKAIoQRRqCyIBKQIANwIEIAIgASkCCDcCDCACIAAoAkgiAQR/IAAoAlAgAUF/akECdGooAgAFQQALNgIUIAAgAhCtBiADJAQLsgEBAn8gABBPIABBDGoQTyAAQRhqEE8gAEEANgIwIABBADYCNCAAQQA2AjggAEE8ahBPIABByABqEE8gAEHUAGoQTyAAQQA2AmAgAEEBNgJkIABB6ABqIgEoAgBBAEoEQEEAIQADQCAARQRAIAFBABCcASICQgA3AgAgAkIANwIIIAJCADcCEAsgASAAEJwBEE8gASAAEJwBQQxqEE8gAEEBaiIAIAEoAgBIDQALCyABEE8LSwEDfyAAKAIEIAFIBEAgAUEEdBBTIQIgAEEIaiIDKAIAIgQEQCACIAQgACgCAEEEdBBGGiADKAIAEEELIAMgAjYCACAAIAE2AgQLCx8AIAAoAgQgAUgEQCAAIAAgARBYEK8GCyAAIAE2AgALSwEDfyAAKAIEIAFIBEAgAUEBdBBTIQIgAEEIaiIDKAIAIgQEQCACIAQgACgCAEEBdBBGGiADKAIAEEELIAMgAjYCACAAIAE2AgQLC6cKAxF/An0FfCMEIQMjBEHAAmokBCAAKAIAIRAgACwAegR/QQEFIAAtAHsLIREgA0G4AmohDSADQaACaiEJIANBiAJqIQogA0H4AWohCyADQfABaiEOIANB6AFqIRIgA0HIAWohBSADQcABaiEPIANBsAFqIQwgA0GYAWohBiADQYgBaiEHIANB6ABqIQggA0FAayECIANBEGohBCADIAE2AgAgAyAQNgIEIAMgETYCCCADIAA2AgwgAEHXlAIgAxDSAgRAIAAoAgghASAAIAAoAvQEEL4GIAAqAhC7IRUgACoCFLshFiAAKgIYuyEXIAAqAiy7IRggACoCMLshGSAEIAAqAgy7OQMAIAQgFTkDCCAEIBY5AxAgBCAXOQMYIAQgGDkDICAEIBk5AyhB6pQCIAQQoAEgAiABNgIAIAJBzZUCQZquBCABQYCAgAhxGzYCBCACQdSVAkGargQgAUGAgIAQcRs2AgggAkHdlQJBmq4EIAFBgICAIHEbNgIMIAJB5JUCQZquBCABQYCAgMAAcRs2AhAgAkHrlQJBmq4EIAFBgICAgAFxGzYCFCACQfaVAkGargQgAUGAAnEbNgIYIAJBh5YCQZquBCABQYAEcRs2AhwgAkGVlgJBmq4EIAFBgIAQcRs2AiAgAkGhlgJBmq4EIAFBwABxGzYCJEGolQIgAhCgASAAKgJYuyEVIAAQgAW7IRYgACoCXLshFyAAEI0EuyEYIAggFTkDACAIIBY5AwggCCAXOQMQIAggGDkDGEGylgIgCBCgASAALQB8IQIgACwAeiIEIAAsAHsiCHJB/wFxBH8gAC4BiAEFQX8LIQEgByAEQf8BcTYCACAHIAhB/wFxNgIEIAcgAkH/AXE2AgggByABNgIMQdCWAiAHEKABIAAtAIEBIQEgACgCpAEhAiAAKAKoASEEIAAtAH8hByAGIAAtAIABNgIAIAYgATYCBCAGIAI2AgggBiAENgIMIAYgBzYCEEGOlwIgBhCgASAAKAKEBiEBIAAoArwCIQIgDCAAKAKABjYCACAMIAE2AgQgDCACNgIIQcqXAiAMEKABIA8gACgC/AUiAQR/IAEoAgAFQeCOAgs2AgBB/JcCIA8QoAEgAEGIBmoiARDjBARAQbyYAiASEKABBSAAKgKMBrshFSAAKgKQBrshFiAAKgKUBrshFyAFIAEqAgC7OQMAIAUgFTkDCCAFIBY5AxAgBSAXOQMYQZaYAiAFEKABCyAAKALwBSIBIABHBEAgAUHSmAIQ4QQLIAAoAuwFIgEEQCABQd2YAhDhBAsgAEHQAmoiASgCAEEASgRAIAFB6pgCEL8GCyAAQeAEaiIGKAIAIgFBAEoEQCAOIAE2AgBB5rICQfeYAiAOENQCBEAgBigCAEEASgRAQQAhAgNAIAYgAhCrBCIEKAIAIQEgBCgCECEFIAQoAgQhByALIAE2AgAgCyAFNgIEIAsgBzYCCCABQYmZAiALENICBEAgCiAEKgIYIhMgBCoCFCIUk7s5AwAgCiAUuzkDCCAKIBO7OQMQQbaZAiAKEKABIARBLGoiBSgCAEEASgRAQQAhAQNAIAUgARBVKgIAuyEVIAQgBSABEFUqAgAQ7gS7IRYgCSABNgIAIAkgFTkDCCAJIBY5AxBB25kCIAkQoAEgAUEBaiIBIAUoAgBIDQALCxC3AQsgAkEBaiICIAYoAgBIDQALCxC3AQsLIA0gACgC1ARBA3Q2AgBBhJoCIA0QoAEQtwELIAMkBAtfAQF/IABBf0oEfwJ/QZipBCgCAEHgMmohAwNAAkBBACAAIAFGIAAgAygCAE5yDQIaIAMgABBQKAIAENsGDQAgACACaiIAQX9KDQFBAAwCCwsgAyAAEFAoAgALBUEACwseACAAKgIAIAAqAgheBH9BAQUgACoCBCAAKgIMXgsLZAECf0GYqQQoAgAiAiACKAL0BkEBajYC9AYgACABKAL0BBCHByABQdACaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAxCIBQRAIAAgAxDkBAsgAUEBaiIBIAIoAgBIDQALCwtlAQZ/IwQhAyMEQRBqJAQgAyEEIAFFIgUgACABSXIEQANAAkAgACwAAEUNACAEIAAgARCmAiEGIAQoAgAiB0UNACACIAdBgIAESWohAiAAIAZqIgAgAUkgBXINAQsLCyADJAQgAgsOACAAQRRqEGYgABD/AwuhAQEEfyMEIQQjBEEQaiQEIAQhBSABQQF0IABqQX5qIgcgAEsEQAJAIAAhAQNAAkAgAkEASUEBckUNAiACLAAARQ0CIAUgAkEAEKYCIAJqIQIgBSgCACIGRQ0AIAZBgIAESQRAIAEgBjsBACABQQJqIQELIAEgB0kNAQsLCwUgACEBCyABQQA7AQAgAwRAIAMgAjYCAAsgBCQEIAEgAGtBAXULTgECf0GYqQQoAgBBwNgAaiICKAIABH8CfwNAIAIgARBVKAIEIABHBEAgAUEBaiIBIAIoAgBGBEBBAAwDBQwCCwALCyACIAEQVQsFQQALCxUAIAAoAggEfyAAKAIAQX9qBUEACwsJACAAIAEQ6gsLngQCEH8BfSMEIQQjBEFAayQEIARBOGohCSAEQTBqIQogBEEgaiEDIARBEGohCyAEQRhqIQwgBCENIARBCGohDkGYqQQoAgAiAkGUM2ooAgAhByACQeQ4aiEPAn8CQCAARQ0AIA8iBSgCEEF/RgR/QQAFIAAgBUEUahCHAkULDQBBAAwBCyACQbw5aigCACEAIAJBrDlqIgUoAgAhCCADIAJBnDlqIgYpAgA3AgAgAyAGKQIINwIIIAMQdiADEI0BlCISIAJBtDlqIgYqAgBdBEAgAkGwOWogATYCACACQbg5aiAFKAIANgIAIAYgEjgCAAsgAkGZOWogACAIRiIFOgAAIAVBAXMgASACQdg4aigCAHJBgBBxQQBHckUEQCADQwAAYEAQsQMgB0HMA2ogAxCNAiIIBEAgA0EIaiEABQJ/IAcoAvQEIRAgDEMAAIA/QwAAgD8QMiALIAMgDBBAIA5DAACAP0MAAIA/EDIgDSADQQhqIgAgDhA1IAogCykCADcCACAJIA0pAgA3AgAgEAsgCiAJQQAQogMLIAcoAvQEIAMgAEErQwAAgD8QQkMAAAAAQX9DAAAAQBCkASAIRQRAIAcoAvQEEPUDCwsgAkHAOWogAkHIMmooAgA2AgAgAkGaOWogBQR/IAJB4DhqKAIAEI4FQQFzBUEACyIAQQFxOgAAQQAgDyABQYAIcUUgAEEBc3EbCyERIAQkBCARC94BAQN/QZipBCgCACIEQeQ4aiEFIAJFIQYCQAJAIANBAkkNACAEQfQ4aiIDKAIAQX9GDQAMAQsgBEH4OGogAEEhEPYEIARBxDlqIgBBABCRAiACQQhLBEAgACACEJECIAUgBEHMOWooAgAiADYCACAAIAEgAhBGGgUgBgRAIAVBADYCAAUgBEHQOWoiAEIANwMAIAUgADYCACAAIAEgAhBGGgsLIARB6DhqIAI2AgAgBEH0OGohAwsgAyAEQcgyaigCACIBNgIAIAEgBEHAOWooAgAiAEYgACABQX9qRnIL6wECBX8CfQNAQZipBCgCACIEQZQzaigCACgCvAMhAiAAQQBIBH8gAigCDAUgAAshAwJ/IAIoAgQiAEEEcQR/QwAAAAAhB0EABSADIAIoAhBBf2pIBH8gAiADIAIsAAlBAEcQiQohByACKAIEIQBBAQVDAAAAACEHQQALCyEGIABBCHFFBEAgASACKgIYIARB8CpqKgIAIAIoAhAgA2uylJMQRSEBCyABIAIqAhSTIAIqAhggAioCFJOVIQggAkEsaiADEFUgCDgCACAGCwRAIANBAWohACABIARB8CpqKgIAIAcQOZIhAQwBCwsLEAAgACoCGCAAKgIUkyABlAs7AQF/EGAoArwDIQEgAEEASARAIAEoAgwhAAsgASABQSxqIgEgAEEBahBVKgIAIAEgABBVKgIAkxDuBAuVAgEKfyMEIQIjBEEwaiQEIAJBKGohAyACQSBqIQcgAkEQaiEFIAJBCGohCCACIQQCQAJAQZipBCgCACIBQf41aiwAAA0AIAFB/zVqLAAARQ0AIAFBoDVqKAIAIgZFDQAgAyAGQYgGaiABQfQ1aigCACIKQQR0aiIJKgIAIAFBxCpqKgIAQwAAgECUIAkQdhBFkiAGIApBBHRqKgKUBiABQcgqaioCACAJEI0BEEWTEDIgByAGQQxqIAMQNSAFEIwEIAQgBSkCCDcDACADIAQpAgA3AgAgCCAHIAUgAxDqAiAAIAgQmQEMAQsgAUHwAWoiBBCVAQRAIAAgBCkCADcCAAUgACABQewzaikCADcCAAsLIAIkBAuQAQIEfwF9IwQhASMEQRBqJAQgAUEIaiEDIAEhAEGYqQQoAgAiAkHVOGosAAAEQCAAIAJBpCtqKgIAIgRDAACAQZQgBEMAAABBlBAyIAMgAkHwAWogABA1IABDAAAAAEMAAAAAEDIgA0EAIAAQnAIgAkH8K2oqAgBDmpkZP5QQ2QZBARCFBAVBABCFBAsgASQECxMAIAAoAgggACgCAEF/akEwbGoL8wEBCH8jBCECIwRBIGokBCACQRBqIQQgAkEIaiEGIAIhA0GYqQQoAgAiAEGUM2ooAgAiBSwAgAEEQCAAQaA1aiIHKAIAIgEgBSgC+AVGBEACQCAAQYE2aiIFLAAARQRAIABBhDZqKAIARQ0BCyAAQfQ1aigCACABKAK0AkYEQCAFQQA6AAAgAEGENmogASgCjAI2AgAgBiABQZQCaiABQQxqEEAgAyAHKAIAIgFBnAJqIAFBDGoQQCAEIAYgAxBDIABBiDZqIgMgBCkCADcCACADIAQpAgg3AggQrQMQ8gZFBEBDAAAAPxDSBgsLCwsLIAIkBAskAQF9IAAqAlggACoC4AGSIQIgACABOAJYIAAgAiABkzgC4AELjAIBAn9BmKkEKAIAIQECfwJAIABBBHEEfyABQZgzaigCAA0BQQAFAn8CQAJAAkACQCAAQQNxQQFrDgMCAQADCyABQZwzaigCACABQZQzaigCACgC8AVGDQVBAAwDCyABQZgzaigCACABQZQzaigCACgC8AVGDQRBAAwCC0EAIAFBmDNqKAIAIgJFDQEaIAIgAUGUM2ooAgAQlwUNA0EADAELIAFBmDNqKAIAIAFBlDNqKAIARg0CQQALCwwBCyABQZwzaigCACAAEKsFBH8gAEEgcUUEQCABQbQzaigCACIABEAgAUHFM2osAABFBEBBACABQZgzaigCACgCUCAARw0EGgsLC0EBBUEACwsLHQAgAgRAIAAgASACEJUEIAAgAkF/ampBADoAAAsLCwAgAEEMbEGgCWoLDAAgACABKQIINwIACzIBA30gASoCECABEL8BkiECIAEqAgwiAyABKgIckiEEIAAgAyACIAQgAiABENEBkhBdC/8EAgh/A30jBCEGIwRB0ABqJAQgBkEoaiEDIAZBGGohBCAGIgJBEGohCEGYqQQoAgAhBSACQThqIgcQzAYgASgCCCIJQYCAgIABcQRAIAVB+DJqIgIgAigCAEF+ahBQKAIAIQIgBUHUKmoqAgAhCiADEGYgAiwAxgIEQCAEQ///f/8gAioCECACEL8BkkP//39/IAIqAhAgAhC/AZIgAhDRAZIQXQUgBCAKIAIqAgwiC5JD//9//yALIAIqAhSSIAqTIAIqAnCTQ///f38QXQsgAyAEKQIANwIAIAMgBCkCCDcCCCAAIAFBDGogAUEUaiABQaABaiAHIANBABCDBAUCQCAJQYCAgCBxBEAgAyABQQxqIgIqAgAiCkMAAIC/kiABKgIQIgtDAACAv5IgCkMAAIA/kiALQwAAgD+SEF0gACACIAFBFGogAUGgAWogByADQQAQgwQMAQsgCUGAgIAQcUUEQCAAIAEpAgw3AgAMAQsgBUGkK2oqAgAhCiADEPAEIAQQZgJAAkAgBUH+NWosAAANACAFQf81aiwAAEUNACAFKAIIQQRxDQAgAiADKgIAIgpDAACAwZIgAyoCBCILQwAAAMGSIApDAACAQZIgC0MAAABBkhBdIAQgAikCADcCACAEIAIpAgg3AggMAQsgAiADKgIAIgtDAACAwZIgAyoCBCIMQwAAAMGSIApDAADAQZQiCiALkiAKIAySEF0gBCACKQIANwIAIAQgAikCCDcCCAsgACADIAFBFGogAUGgAWoiASAHIARBABCDBCABKAIAQX9GBEAgCEMAAABAQwAAAEAQMiACIAMgCBA1IAAgAikDADcCAAsLCyAGJAQLLwEBfyACIAAoArQBIgNxRSACQQBHcUUEQCAAIANBcXE2ArQBIAAgAUEBcToAfQsLlAEBB30gAyoCACIFIAIqAgAiBpMgASoCBCIEIAIqAgQiB5OUIAEqAgAiCCAGkyADKgIEIgkgB5OUk0MAAAAAXSEBIAUgCJMgACoCBCIKIASTlCAJIASTIAAqAgAiBCAIk5STQwAAAABdIAFzBH9BAAUgASAFIASTIAcgCpOUIAkgCpMgBiAEk5STQwAAAABdc0EBcwsLiwECAX8BfSACIAAoArABIgNxRSACQQBHcUUEQCAAIANBcXE2ArABIAEqAgAiBEMAAAAAXgRAIABBADYCkAEgACAEEGI4AhwFIABBAjYCkAEgAEEAOgCYAQsgASoCBCIEQwAAAABeBEAgAEEANgKUASAAIAQQYjgCIAUgAEECNgKUASAAQQA6AJgBCwsLOAIBfwF9QZipBCgCACIBQZQzaiAANgIAIAAEQCABQcgxaiAAEOUBIgI4AgAgAUG0MWogAjgCAAsLVAECfyAAIAEgACgCrAEiA3IgAyABQX9zIgNxIAIbNgKsASAAIAEgACgCsAEiBHIgAyAEcSACGzYCsAEgACABIAAoArQBIgByIAAgA3EgAhs2ArQBCxoAQwAAAAAgACoCLCAAKgIcIAAqAnCTkxA5C1sBAn9BA0GYqQQoAgAiA0GgLGoQggJBBiADQcwqaioCABCOBEEHIANB0CpqKgIAEI4EQQEgA0HEKmoQvgIgACABQQEgAkGEgARyEPAGIQRBAxCjAkEBEKICIAQLTgECf0GYqQQoAgAiAEGUM2ooAgAoAowCIQEgAEGgM2ooAgAgAUYEQCAAQaQzakEBOgAACyABIABBtDNqKAIARgRAIABBxTNqQQE6AAALC6sBAgN/A30jBCEEIwRBIGokBCAEQQhqIQYgBCEFIARBGGogAyABEEAgBEEQaiIDIAIgARBAIAQqAhggAyoCACIIlCAEKgIcIAMqAgQiB5SSIglDAAAAAF0EQCAAIAEpAgA3AgAFIAkgCCAIlCAHIAeUkiIHXgRAIAAgAikCADcCAAUgBSADIAkQUSAGIAUqAgAgB5UgBSoCBCAHlRAyIAAgASAGEDULCyAEJAQLVwEDfyAAKAIEIgdBCHUhBiAHQQFxBEAgAygCACAGaigCACEGCyAAKAIAIgAoAgAoAhQhCCAAIAEgAiADIAZqIARBAiAHQQJxGyAFIAhBD3FB6gpqERoAC6cBACAAQQE6ADUgAiAAKAIERgRAAkAgAEEBOgA0IAAoAhAiAkUEQCAAIAE2AhAgACADNgIYIABBATYCJCAAKAIwQQFGIANBAUZxRQ0BIABBAToANgwBCyABIAJHBEAgACAAKAIkQQFqNgIkIABBAToANgwBCyAAKAIYIgFBAkYEQCAAIAM2AhgFIAEhAwsgACgCMEEBRiADQQFGcQRAIABBAToANgsLCwsfACABIAAoAgRGBEAgACgCHEEBRwRAIAAgAjYCHAsLC14BAX8gACgCECIDBEACQCABIANHBEAgACAAKAIkQQFqNgIkIABBAjYCGCAAQQE6ADYMAQsgACgCGEECRgRAIAAgAjYCGAsLBSAAIAE2AhAgACACNgIYIABBATYCJAsLFAAgACwAegR/IAAsAIEBRQVBAAsLDQAgACABIAEQXBDOCwuRAQEDfwJ/AkAgACgCFCAAKAIcTQ0AIAAoAiQhASAAQQBBACABQT9xQcICahEFABogACgCFA0AQX8MAQsgACgCBCIBIAAoAggiAkkEQCAAKAIoIQMgACABIAJrrEEBIANBAXFBhARqETkAGgsgAEEANgIQIABBADYCHCAAQQA2AhQgAEEANgIIIABBADYCBEEACwuHAQEBfyAABEACfyAAKAJMQX9MBEAgABCKBQwBCyAAEIoFCyEABUHQgQIoAgAEf0HQgQIoAgAQiwUFQQALIQAQjAUoAgAiAQRAA0AgASgCTEF/SgR/QQEFQQALGiABKAIUIAEoAhxLBEAgARCKBSAAciEACyABKAI4IgENAAsLQZCqBBASCyAACwwAQZCqBBArQZiqBAtsAQF/QZipBCgCACIAQdQ4akEAOgAAIABB5DhqEMoGIABBsDlqQQA2AgAgAEG8OWpBADYCACAAQbg5akEANgIAIABBtDlqQ///f384AgAgAEHAOWpBfzYCACAAQcQ5ahBPIABB0DlqQgA3AwALFgAgAEGYqQQoAgBB+AFqaiwAAEEARwvgAQEHfyMEIQkjBEHwAWokBCAJIgcgADYCACADQQFKBEACQEEAIAFrIQogACEFQQEhBgNAIAUgACAKaiIAIANBfmoiC0ECdCAEaigCAGsiCCACQf8AcUG0AWoRAABBf0oEQCAFIAAgAkH/AHFBtAFqEQAAQX9KDQILIAZBAnQgB2ohBSAGQQFqIQYgCCAAIAJB/wBxQbQBahEAAEF/SgR/IAUgCDYCACAIIQAgA0F/agUgBSAANgIAIAsLIgNBAUoEQCAHKAIAIQUMAQsLCwVBASEGCyABIAcgBhCbByAJJAQLjBMCFH8BfiMEIQ8jBEFAayQEIA9BKGohCSAPQTBqIRggD0E8aiEVIA9BOGoiCyABNgIAIABBAEchEiAPQShqIhQhEyAPQSdqIRZBACEBAkACQANAAkADQCAIQX9KBEAgAUH/////ByAIa0oEf0GIqgRBywA2AgBBfwUgASAIagshCAsgCygCACIKLAAAIgVFDQMgCiEBAkACQANAAkACQCAFQRh0QRh1IgUEQCAFQSVHDQEMBAsMAQsgCyABQQFqIgE2AgAgASwAACEFDAELCwwBCyABIQUDQCAFLAABQSVHDQEgAUEBaiEBIAsgBUECaiIFNgIAIAUsAABBJUYNAAsLIAEgCmshASASBEAgACAKIAEQhgELIAENAAsgCygCACwAARCoAkUhBSALIAsoAgAiASAFBH9BfyERQQEFIAEsAAJBJEYEfyABLAABQVBqIRFBASEGQQMFQX8hEUEBCwtqIgE2AgAgASwAACIHQWBqIgVBH0tBASAFdEGJ0QRxRXIEQEEAIQUFQQAhBwNAIAdBASAFdHIhBSALIAFBAWoiATYCACABLAAAIgdBYGoiDEEfS0EBIAx0QYnRBHFFckUEQCAFIQcgDCEFDAELCwsgB0H/AXFBKkYEfwJ/AkAgASwAARCoAkUNACALKAIAIgEsAAJBJEcNACABLAABQVBqQQJ0IARqQQo2AgBBASENIAFBA2ohByABLAABQVBqQQN0IANqKQMApwwBCyAGBEBBfyEIDAMLIBIEQCACKAIAQQNqQXxxIgYoAgAhASACIAZBBGo2AgAFQQAhAQtBACENIAsoAgBBAWohByABCyEGIAsgBzYCACAHIQEgBUGAwAByIAUgBkEASCIFGyEOQQAgBmsgBiAFGyEQIA0FIAsQowciEEEASARAQX8hCAwCCyALKAIAIQEgBSEOIAYLIRcgASwAAEEuRgRAAkAgAUEBaiEFIAEsAAFBKkcEQCALIAU2AgAgCxCjByEBIAsoAgAhBgwBCyABLAACEKgCBEAgCygCACIFLAADQSRGBEAgBSwAAkFQakECdCAEakEKNgIAIAUsAAJBUGpBA3QgA2opAwCnIQEgCyAFQQRqIgY2AgAMAgsLIBcEQEF/IQgMAwsgEgRAIAIoAgBBA2pBfHEiBSgCACEBIAIgBUEEajYCAAVBACEBCyALIAsoAgBBAmoiBjYCAAsFIAEhBkF/IQELQQAhDANAIAYsAABBv39qQTlLBEBBfyEIDAILIAsgBkEBaiIHNgIAIAYsAAAgDEE6bGpB3+EBaiwAACIGQf8BcSIFQX9qQQhJBEAgByEGIAUhDAwBCwsgBkUEQEF/IQgMAQsgEUF/SiENAkACQCAGQRNGBEAgDQRAQX8hCAwECwUCQCANBEAgEUECdCAEaiAFNgIAIAkgEUEDdCADaikDADcDAAwBCyASRQRAQQAhCAwFCyAJIAUgAhCiByALKAIAIQcMAgsLIBINAEEAIQEMAQsgDkH//3txIgUgDiAOQYDAAHEbIQYCQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIAdBf2osAAAiB0FfcSAHIAdBD3FBA0YgDEEAR3EbIgdBwQBrDjgJCgcKCQkJCgoKCgoKCgoKCgoICgoKCgsKCgoKCgoKCgkKBQMJCQkKAwoKCgoAAgEKCgYKBAoKCwoLAkACQAJAAkACQAJAAkACQCAMQf8BcUEYdEEYdQ4IAAECAwQHBQYHCyAJKAIAIAg2AgBBACEBDBcLIAkoAgAgCDYCAEEAIQEMFgsgCSgCACAIrDcDAEEAIQEMFQsgCSgCACAIOwEAQQAhAQwUCyAJKAIAIAg6AABBACEBDBMLIAkoAgAgCDYCAEEAIQEMEgsgCSgCACAIrDcDAEEAIQEMEQtBACEBDBALIAZBCHIhBiABQQggAUEISxshAUH4ACEHDAkLIAEgEyAJKQMAIBQQ9gsiDmsiB0EBaiAGIgVBCHFFIAEgB0pyGyEBQQAhDUG+hwMhDAwLCyAJKQMAIhlCAFMEfyAJQgAgGX0iGTcDAEEBIQ1BvocDBSAGQYEQcUEARyENQb+HA0HAhwNBvocDIAZBAXEbIAZBgBBxGwshDAwICyAJKQMAIRlBACENQb6HAyEMDAcLIBYgCSkDADwAACAWIQcgBSEGQQEhBUEAIQ1BvocDIQwgEyEBDAoLIAkoAgAiBkHIhwMgBhsiB0EAIAEQ6QEiCkUhDiAFIQYgASAKIAdrIA4bIQVBACENQb6HAyEMIAEgB2ogCiAOGyEBDAkLIA8gCSkDAD4CMCAPQQA2AjQgCSAYNgIAQX8hBQwFCyABBEAgASEFDAUFIABBICAQQQAgBhCOAUEAIQEMBwsACyAAIAkrAwAgECABIAYgB0GtARE4ACEBDAcLIAohByABIQVBACENQb6HAyEMIBMhAQwFCyAJKQMAIBQgB0EgcRD3CyEOQQBBAiAGIgVBCHFFIAkpAwBCAFFyIgYbIQ1BvocDIAdBBHZBvocDaiAGGyEMDAILIBkgFBD6AiEOIAYhBQwBC0EAIQEgCSgCACEHAkACQANAIAcoAgAiCgRAIBUgChChByIKQQBIIgwgCiAFIAFrS3INAiAHQQRqIQcgBSABIApqIgFLDQELCwwBCyAMBEBBfyEIDAYLCyAAQSAgECABIAYQjgEgAQRAQQAhBSAJKAIAIQcDQCAHKAIAIgpFDQMgFSAKEKEHIgogBWoiBSABSg0DIAdBBGohByAAIBUgChCGASAFIAFJDQALBUEAIQELDAELIA4gFCAJKQMAQgBSIgogAUEAR3IiERshByAFQf//e3EgBSABQX9KGyEGIAEgEyAOayAKQQFzaiIFIAEgBUobQQAgERshBSATIQEMAQsgAEEgIBAgASAGQYDAAHMQjgEgECABIBAgAUobIQEMAQsgAEEgIA0gASAHayIKIAUgBSAKSBsiDmoiBSAQIBAgBUgbIgEgBSAGEI4BIAAgDCANEIYBIABBMCABIAUgBkGAgARzEI4BIABBMCAOIApBABCOASAAIAcgChCGASAAQSAgASAFIAZBgMAAcxCOAQsgFyEGDAELCwwBCyAARQRAIAYEf0EBIQADQCAAQQJ0IARqKAIAIgEEQCAAQQN0IANqIAEgAhCiByAAQQFqIgBBCkkNAUEBIQgMBAsLA38gAEECdCAEaigCAARAQX8hCAwECyAAQQFqIgBBCkkNAEEBCwVBAAshCAsLIA8kBCAICx8AIAAoAgQgAUgEQCAAIAAgARBYELIGCyAAIAE2AgALJwEBfyMEIQIjBEEQaiQEIAIgARCPASAAQbjuASACEAQ2AgAgAiQECysBAn9BmKkEKAIAIgEoAqABIgBFBEAgASgClAFBNGpBABBQKAIAIQALIAALkAECA38BfUGYqQQoAgAhASAABEAgABC+AxoLIAFBsDFqIgIgADYCACABQbgxaiABKgKYASAAKgIAlCAAKgIElDgCACABQZQzaigCACIDBEAgAxDlASEEIAIoAgAhAAsgAUG0MWogBDgCACABQbwxaiAAKAJEKQIsNwIAIAFBxDFqIAA2AgAgAUHIMWogBDgCAAsnAQF/IwQhAiMEQRBqJAQgAiABEO8BIABBkO4BIAIQBDYCACACJAQLCAAgABAoEF8LLAAgASAAKALwBUYEf0EBBQN/IAAgAUYEf0EBBQEgACgC7AUiAA0BQQALCwsLRAECfwJ/IAEhBCAAKAIAIQEgBAsgACgCBCIAQQF1aiIDIAIgAEEBcQR/IAEgAygCAGooAgAFIAELQf8BcUHyBmoRAQAL2AEBBX9BmKkEKAIAQZw0aiIDEH5FBEAgAEEARyADKAIAIgFBAEpxBEACf0EAIQEDfyADIAEQeigCBCICBEAgAigCCEGAgIAIcUUEQCABIAMoAgAiAk4EQCACDAQLIAEhAgNAIAMgAhB6KAIEBH8gAyACEHooAgQoAvAFIAAoAvAFRgVBAAshBCACQQFqIgIgAygCACIFTiAEckUNAAsgBSAERQ0DGgsLIAFBAWoiASADKAIAIgJIDQAgAgsLIQAFIAEhAEEAIQELIAEgAEgEQCABQQAQ6wILCwtAAQJ9IAEqAgAiAiAAKgIAYAR/IAEqAgQiAyAAKgIEYAR/IAIgACoCCF0EfyADIAAqAgxdBUEACwVBAAsFQQALCzUBAn8jBCEDIwRBEGokBCADIAEgAiAAKAIAQf8AcUGUCWoRBwAgAxB9IQQgAxAxIAMkBCAECwkAIAAgARDFDgtCAgJ/AnwjBCEBIwRBEGokBAJ8IAAoAgBBqP0BKAIAIAFBBGoQBiEEIAEgASgCBBBfIAQLqyECIAEQzAEgASQEIAILEAAgAEGM/AE2AgAgABCuBQsQACAAQfT7ATYCACAAEMgHCxAAIABBxPsBNgIAIAAQ0QcLFwAgAEGs+wE2AgAgACABNgIMIAAQ0gcLFwAgAEGU+wE2AgAgACABNgIMIAAQ1AcLFwAgAEH8+gE2AgAgACABNgIQIAAQ1wcLFwAgAEHk+gE2AgAgACABNgIUIAAQ2QcLPAECfyAAKAIEIAAoAgAiA2tBAnUiAiABSQRAIAAgASACaxCjEAUgAiABSwRAIAAgAUECdCADajYCBAsLCyMBAX8jBCECIwRBEGokBCACIAA2AgAgAiABEH0Q8gEgAiQEC94BAQJ/QZipBCgCACEDIAAoAugCQQVxRSEEIAAgACgCqAZBAWo2AqgGIAQEQCAAIAAoAqwGQQFqNgKsBgsgAgRAIAEgA0G0M2ooAgBGBEAgACgCuAZB/////wdGBEAgACgCvAZB/////wdGBEAgAywAiAJFBEBBAEEBEG0EQCAAIAAoAqwGIARBH3RBH3VBASADLACJAhtqNgK8BgsLCwsLCyAAKAKoBiAAKAKwBkYiAiAEQQFzckUEQCAAKAKsBiAAKAK0BkYEfyADQbg1aiABNgIAQQEFQQALIQILIAILZQIEfwF9IwQhAyMEQRBqJAQgAyICQQRqIgFBADYCAANAIAIgACgCFCABENkBIAIQPSEFIABBBGogASgCAEECdGogBTgCACACEDEgASABKAIAQQFqIgQ2AgAgBEEESQ0ACyADJAQLYQEGfyMEIQQjBEEQaiQEIAQiAUEEaiICQQA2AgADQAJ/IAAoAhQhBiABIABBBGogA0ECdGoQ8QEgBgsgAiABENoBIAEQMSACIAIoAgBBAWoiAzYCACADQQRJDQALIAQkBAsxAQF/IABB1PkBNgIAIAAoAhQQW0UEQCAAKAIAKAIMIQEgACABQf8BcUHgBGoRBAALC2gBAX9BmKkEKAIAQaA1aigCACICBH8CfyACKALwBSICBEAgAiwAewRAIAAoAvAFIAJHBEBBACACKAIIIgBBgICAwABxDQMaQQAgAUEIcUUgAEGAgIAgcUEAR3ENAxoLCwtBAQsFQQELCy4BAX8jBCEDIwRBEGokBCADIAEQTCADIAIgAEH/AXFB8gZqEQEAIAMQPiADJAQLSAACfwJAIABBmKkEKAIAIgBBlDNqKAIAQcwDahDLAg0AIAEEQCABIABBtDNqKAIARg0BCyAAQczYAGosAAANAEEBDAELQQALC10BBn8jBCEEIwRBEGokBCAEIgFBBGoiAkEANgIAIABBBGohBQNAAn8gACgCCCEGIAEgBRDlECAGCyACIAEQ2gEgARAxIAIgAigCAEEBaiIDNgIAIANFDQALIAQkBAtiAQR/IwQhBCMEQRBqJAQgBCICQQRqIgFBADYCAANAIAIgACgCCCABENkBIAIQhgMhAyABKAIAIABBBGpqIANBAXE6AAAgAhAxIAEgASgCAEEBaiIDNgIAIANFDQALIAQkBAsQACABIABBP3FB7ABqEQMACzoCAX8CfCMEIQEjBEEQaiQEIAAoAgBBpPcBKAIAIAFBBGoQBiEDIAEgASgCBBBfIAEQzAEgASQEIAMLJwEBfyMEIQIjBEEQaiQEIAIgARCpBCAAQdD2ASACEAQ2AgAgAiQECywBAX8jBCEDIwRBEGokBCADIAA2AgAgAyABEH0Q8gEgAyACEH0Q8gEgAyQEC3QCAn8CfSMEIQIjBEEQaiQEIABBwANqEHAoAgAhAyACIAEqAgAgACoCDCIEk6g2AgAgAiABKgIEIAAqAhAiBZOoNgIEIAIgASoCCCAEk6g2AgggAiABKgIMIAWTqDYCDCACQRAgAxC7ASIAELQCIAIkBCAACxQAIAFBACAAQcADahBwKAIAELsBCygBAn8CfyMEIQMjBEEQaiQEIABBA0Hg+AFBmssCQSEgARACIAMLJAQLKAECfwJ/IwQhAyMEQRBqJAQgAEEFQZDNAUG7zAJBCiABEAIgAwskBAtdAQF/IAAQ3QQgACgCcCIBBEAgARBBCyAAKAJcIgEEQCABEEELIAAoAlAiAQRAIAEQQQsgACgCRCIBBEAgARBBCyAAQRhqEGcgAEEMahBnIAAoAggiAARAIAAQQQsLKAECfwJ/IwQhAyMEQRBqJAQgAEEFQcDPAUG7zAJBCCABEAIgAwskBAsoAQJ/An8jBCEDIwRBEGokBCAAQQJB+PwBQdrJAkEeIAEQAiADCyQECygBAn8CfyMEIQMjBEEQaiQEIABBA0Gc/QFB480CQQwgARACIAMLJAQLKAECfwJ/IwQhAyMEQRBqJAQgAEEDQbj9AUHjzQJBCyABEAIgAwskBAsoAQJ/An8jBCEDIwRBEGokBCAAQQNBxP0BQePNAkEKIAEQAiADCyQECygBAn8CfyMEIQMjBEEQaiQEIABBAkHk/QFBu9MCQSkgARACIAMLJAQLKAECfwJ/IwQhAyMEQRBqJAQgAEEBQZT3AUG40wJBHSABEAIgAwskBAsHACAAEO4OC+cBAgZ/A30jBCEDIwRBEGokBEGYqQQoAgBBlDNqKAIAIQQgAiACQwAAoECVQwAAgD8QOSIKQwAAAD+UkyEJIAMgCkMAAIA+lCICIAIQMiAAIAMQtgICfyAEKAL0BCEGIAMgCUMAAEBAlSICIAAqAgCSIgsgApMgCSAAKgIEkiACQwAAAD+UkyIJIAKTEDIgBgsgAxBjAn8gBCgC9AQhByADIAsgCRAyIAcLIAMQYwJ/IAQoAvQEIQggAyACQwAAAECUIgIgC5IgCSACkxAyIAgLIAMQYyAEKAL0BCABQQAgChCPAiADJAQLKAECfwJ/IwQhAyMEQRBqJAQgAEECQYj+AUG70wJBJiABEAIgAwskBAsQACAABEAgABDmDiAAEFQLCwkAIABBADYCVAs1ACAAKAJIQYCAwABxBEAgAUEAQQAQuwEiABC0AgVBmKkEKAIAQZQzaigCACABEF4hAAsgAAsaACABIAAqAjggAEEkahB2kxBFQwAAAAAQOQsWAEGYqQQoAgBBtDFqKgIAQwAAoEGUC8oMAgp/A30jBCEKIwRBIGokBEGYqQQoAgAhBiAAQQA6AFQgACgCACIDQQBKBEBBACEDA38gACADEFUiAigCCCAAKAIgSARAIAIoAgAgACgCEEYEQCAAQQA2AhALBSABIANHBEAgACADEFUhAiAAIAEQVSIEIAIpAgA3AgAgBCACKQIINwIIIAQgAikCEDcCECAEIAIoAhg2AhgLIAFBAWohAQsgA0EBaiIDIAAoAgAiAkgNACACCyEDCyABIANHBEAgACIDKAIEIAFIBEAgAyADIAEQWBCnAwsgAyABNgIACyAAKAIUIgEEQCAAIAE2AhAgAEEANgIUBUEAIQELIAohAyAAKAJMIgIEQCAAIAIQjQMiAgRAIAAgAhCzBCAAKAJQaiIEQX9KBEAgBCAAKAIASARAIAAgBBBVIQQgAyACKQIANwIAIAMgAikCCDcCCCADIAIpAhA3AhAgAyACKAIYNgIYIAIgBCkCADcCACACIAQpAgg3AgggAiAEKQIQNwIQIAIgBCgCGDYCGCAEIAMpAgA3AgAgBCADKQIINwIIIAQgAykCEDcCECAEIAMoAhg2AhggBCgCACIDIAEgAyAAKAIQRhshAQsLIAAoAkhBgICABHEEQEGYqQQoAgAiA0Gk2ABqIgIqAgBDAAAAAF8EQCACIAMoAhw2AgALCwsgAEEANgJMCyABIQMgBkGAOmoiBCIBKAIEIAAoAgAiAkgEQCABIAEgAhBYEOgCCyABIAI2AgAgACgCAEEASgR/IAZB3CpqIQhBACECQQAhAQN/IAAgBxBVIQUCQAJAIAFFDQAgASgCDCAFKAIMSA0ADAELIAUhAQsgBSgCACAAKAIQRiACciECIAsgBwR9IAgqAgAFQwAAAAALIAUqAhiSkiELIAQgBxD1ASAHNgIAIAUoAhghBSAEIAcQ9QEgBTYCBCAHQQFqIgcgACgCAEgNACABIQUgAgsFQQALIQcCQAJAAn8gCyAAQSRqIggQdiIMk0MAAAAAIAwgC10bIgtDAAAAAF4EQCAAKAJIQcAAcQRAIAAoAgBBAUoEQCAGQYg6aigCACAEKAIAQQhBBhDEAgtBASEBAkACQANAIAEgACgCACICSARAAkACQANAIARBABD1ASoCBCAEIAEQ9QEqAgRcDQEgAUEBaiIBIAAoAgAiAkgNAAsMAQsgACgCACECCyAEQQAQ9QEqAgQhDCALIAGyIg2VIAEgAkgEfSAMIAQgARD1ASoCBJMFIAxDAACAv5ILEEUhDCABQQBKBEBBACECA0AgBCACEPUBIgkgCSoCBCAMkzgCBCABIAJBAWoiAkcNAAsLIAsgDCANlJMiC0MAAAAAXg0BDAILCwwBCyAAKAIAIQILIAJBAEwNA0EAIQEDQCAEIAEQ9QEqAgSosiELIAAgBCABEPUBKAIAEFUgCzgCFCABQQFqIgEgACgCACICSA0ACyACDAILCxDHBSELIAAoAgBBAEwNAUEAIQEDfyAAIAEQVSICIAIqAhggCxBFOAIUIAFBAWoiASAAKAIAIgJIDQAgAgsLQQBMDQAgBkG8NWohBCAGQdwqaiEJQwAAAAAhCyADIQFBACEDA0AgACADEFUiAiALOAIQIAFFBEAgAigCACIBQQAgBCgCACABRhshAQsgCyACKgIUIAkqAgAiDJKSIQsgA0EBaiIDIAAoAgBIDQALDAELIAZB3CpqKgIAIQxDAAAAACELIAMhAQsgACALIAyTQwAAAAAQOSILOAI4IABDAAAAADgCPCALIAgQdl4EQCAAKAIAQQFKBEAgACgCSEGQAXFBgAFGBEAgABCjCCIDBEAgACADKAIAIgE2AhALCwsLAkACQCAHBEAgACgCECIDRQ0BBSAAQQA2AhAMAQsMAQsgACgCFEUgBUEAR3EEfyAAIAUoAgAiATYCECABBUEACyEDCyAAIAM2AhggAEEAOgBVIAEEQCAAIAEQjQMiAQRAIAAgARCiCAsLIABBQGsiASAAIAEqAgAQxgU4AgAgACAAIAAqAkQQxgUiCzgCRCAAKAIgQQFqIAZByDJqKAIASAR9Q///f38FIAYqAhggBkG0MWoqAgCUQwAAjEKUCyEMIAEqAgAiDSALXARAIAEgDSALIAwQoQg4AgALIAokBAvNAgIHfwF9IwQhBSMEQRBqJAQgBSEGEDwiACwAf0UEQEGYqQQoAgAhAhCCBARAIAJBpDZqKAIAQQJJBEAgAkGgNWooAgAiBCgCCEGAgICAAXEEQCAEKALsBSIBBEACQAN/IAEoAghBgICAgAFxRQRAIAEhAyAEIQEMAgsgASgC7AUiAwR/IAEhBCADIQEMAQVBAAsLIQMLBSAEIQELIAAgA0YEQCABKALkAkUEQCACQaA2aiIBKAIARQRAIAAQdCAAKAKEBkEBIABBmAZqEKoEIAJB9DVqQQE2AgAgAkH+NWpBAToAACABQQE2AgAQmwILCwsLCwsQ6gEQeSAAKgLIASEHIAYgABD5BCAAIAcgBioCAJM4AsgCIABBmANqEPIEQQA6AC0QsQEgAEEBNgLgAiAAQQA2ArQCIABBATYCuAIgAEEAOgDGAgsgBSQEC4UCAgZ/AX0jBCECIwRBMGokBCACQRhqIQEgAkEIaiEDIAIhBBA8IgAsAH8Ef0EABSAAKAIIQYAIcQR/ELwBQe2jAhC9ASABIAAQ+QQgAyABKgIAIgZDAAAAP5IQYiABKgIEIAAqAkiSQwAAAD+SEGIgBiABKgIIIAAqAkSTEDlDAAAAP5IQYiABKgIMQwAAAD+SEGIQXSADIABB3ANqELUCIAMgA0EIakEAEIgCIAQgASoCACAAKgLIApIgASoCBCAAKgLMApIQMiAAIAQpAwA3AsgBIABBADYC4AIgAEEBNgK0AiAAQQI2ArgCIABBAToAxgIQ/QVBAQVBAAsLIQUgAiQEIAULmwEBAX8gAEMAAAAAOAIMIAAgACoCICABEDkiATgCICAAIAAqAiQgAhA5OAIkIAAgACoCKCADEDk4AiggASECQwAAAAAhAQNAIAEgAiAEQQBHIAJDAAAAAF5xBH0gACoCBAVDAAAAAAuSkiEBIARBAWoiBEEDRwRAIABBIGogBEECdGoqAgAhAgwBCwsgACABOAIMIAAqAgggARA5C84KAhZ/BX0jBCEJIwRBsAFqJAQgCUHgAGohCiAJQdgAaiELIAlByABqIRAgCUEoaiEUIAlBoAFqIRUgCUEYaiEOIAlBkAFqIQwgCUGAAWohDSAJQfAAaiEWIAlB6ABqIREgCSEXIAlB+ABqIR0QPCIcLAB/RQRAQZipBCgCACEPIBUgAUEAQQFDAACAvxBsIAgqAgAiIUMAAAAAWwRAIAgQvgEiITgCAAsgCCoCBCIgQwAAAABbBEAgCCAVKgIEIA9ByCpqKgIAQwAAAECUkiIgOAIECyALICEgIBAyIAogHEHIAWoiCCALEDUgDiAIIAoQQyAKIA4gD0HEKmoiCBA1IAsgDkEIaiIYIAgQQCAMIAogCxBDIAsgFSoCACIfQwAAAABeBH0gHyAPQdwqaioCAJIFQwAAAAALQwAAAAAQMiAKIBggCxA1IA0gDiAKEEMgDSAPQcgqaiIeKgIAEHwgDUEAIA4QYQRAIAxBABDNAiEZIAZD//9/f1siEiAHQ///f39bIg1yBH0gA0EASgRAQQAhCEP//3//ISJD//9/fyEgA0AgIEEAIAggAkEfcUEoahEIACIfEEUhICAiIB8QOSEiIAhBAWoiCCADRw0ACwVD//9//yEiQ///f38hIAsgIiAHIA0bIQcgICAGIBIbBSAGCyEfIAkgDikDADcDECAJIBgpAwA3AwhBB0MAAIA/EEIhCCAPQcwqaioCACEGIAsgCSkCEDcCACAKIAkpAgg3AgAgCyAKIAhBASAGEKwBIANBAEoEQCAhqCADELgBIRogAyAARSIbQR90QR91IhJqIRMgGQRAAkBBACAEIA8qAvABIAwqAgAiBpMgDCoCCCAGk5VDAAAAAENy+X8/EGQgE7KUqCIIaiADbyACQR9xQShqEQgAISFBACAEIAhBAWoiDWogA28gAkEfcUEoahEIACEGIBsEQCAUIAg2AgAgFCAhuzkDCCAUIA02AhAgFCAGuzkDGEGXowIgFBC7AwwBCyAAQQFGBEAgECAINgIAIBAgIbs5AwhBq6MCIBAQuwMLCwVBfyEIC0MAAIA/IBIgGmoiELKVISAgCkMAAAAAQwAAgD9DAAAAAEMAAIA/IAcgH5OVIB8gB1sbIiNBACAEIANvIAJBH3FBKGoRCAAgH5OUEFqTEDIgHyAjlIxDAAAAAEMAAIA/IB9DAAAAAF0bIAcgH5RDAAAAAF0bISJBJkEoIBsbQwAAgD8QQiEZQSdBKSAbG0MAAIA/EEIhGiAQQQBKBEAgE7IhISAEQQFqIQ0gDEEIaiETIABBAUYhBEEAIQBDAAAAACEGA0AgCyAgIAaSIgdDAACAPyAjQQAgDSAGICGUQwAAAD+SqCISaiADbyACQR9xQShqEQgAIB+TlBBakxAyIBYgDCATIAoQngIgGwRAIBcgCykDADcDACARIAwgEyAXEJ4CIBwoAvQEIBYgESAaIBkgCCASRhtDAACAPxDFAQUgFyALKgIAICIQMiARIAwgEyAXEJ4CIAQEQCARKgIAIgYgFioCAEMAAABAkmAEQCARIAZDAACAv5I4AgALIBwoAvQEIBYgESAaIBkgCCASRhtDAAAAAEEPEHULCyAKIAspAwA3AwAgAEEBaiIAIBBHBEAgByEGDAELCwsLIAUEQCAKIA4qAgAgDioCBCAeKgIAkhAyIAtDAAAAP0MAAAAAEDIgCiAYIAVBAEEAIAtBABCtAQsgFSoCAEMAAAAAXgRAIB0gGCoCACAPQdwqaioCAJIgDCoCBBAyIAogHSkCADcCACAKIAFBAEEBEK4BCwsLIAkkBAuGAgEHfyMEIQYjBEEwaiQEIAZBEGohBSAGQQhqIQcgBiEJIAAgAyAEEM8FBEBBmKkEKAIAIQQgBSADEIgEEKUDQQAhAANAAkADQCAFENUDRQ0BIAUoAhAiAyAFKAIUTg0ACwNAIAEoAgAhCEEAIAMgByACQT9xQcICahEFAEUEQCAHQdidAjYCAAsgAxDQAQJ/IAcoAgAhCyAJQwAAAABDAAAAABAyIAsLIAMgCEYiCEEAIAkQrwEEQCABIAM2AgBBASEACyAIBEAQ8wQLEHkgA0EBaiIDIAUoAhRIDQALDAELCxDOBSAABEAgBEGUM2ooAgAoAowCEMsBCwVBACEACyAGJAQgAAtaAQN/IwQhACMEQRBqJAQgABA8KALsBSIBKQKUAjcCACAAIAEpApwCNwIIEMcCIQIQswNDAAAAAEMAAIC/EGsgASAAKQMANwLIASAAIAIqAjgQfBCxASAAJAQLbAIDfwF9IwQhAyMEQRBqJAQgAkEASARAIAFBBxC4ASECCxDHAiEEIAMQOiADQwAAAAA4AgAgAyACsiIGQwAAgD6SIAYgAiABSBsQiASUIAQqAjhDAAAAQJSSOAIEIAAgAxDQBSEFIAMkBCAFC4UDAg9/An0jBCECIwRB4ABqJAQgAkHQAGohAyACQcgAaiEFIAJBQGshByACIQogAkE4aiELIAJBKGohBCACQRhqIQggAkEIaiEMIAJBEGohDRA8IgksAH8Ef0EABRDHAiEGAn8gABDRBiEPIAUgAEEAQQFDAACAvxBsIAogASkCADcDABC+ASESEIgEQ83M7ECUIAYqAkiSIREgAyAKKQIANwIAIAcgAyASIBEQyQMgCyAHKgIAIAcqAgQgBSoCBBA5EDIgAyAJQcgBaiIBIAsQNSAEIAEgAxBDIAwgBSoCACIRIAYqAkySQwAAAAAgEUMAAAAAXhtDAAAAABAyIAMgBEEIaiIBIAwQNSAIIAQgAxBDIAkgCCkCADcClAIgCSAIKQIINwKcAhC8ASAFKgIAQwAAAABeBEAgDSABKgIAIAYqAkySIAQqAgQgBioCOJIQMiADIA0pAgA3AgAgAyAAQQBBARCuAQsgAyAEEM8CIA8LIANBABCBBRpBAQshECACJAQgEAtUAQF/QZipBCgCAEGUM2ooAgAiASAAKAIANgKMAiABIAAoAgQ2ApACIAEgACkCCDcClAIgASAAKQIQNwKcAiABIAApAhg3AqQCIAEgACkCIDcCrAILFQAgAEEIahBmIABBGGoQZiAAELkICyQBAX9BmKkEKAIAIgBBtDFqKgIAIABBxCpqKgIAQwAAAECUkgsgAQF/EDwiASwAfwR/QQAFIAEgABBeQQAgAEEAENMCCwtFAQN/EDwiBCwAfwR/QQAFQZipBCgCACIFQdzcAGoiBkGBGCACIAMQvAIgBUHc3ABqaiECIAQgABCLAyABIAYgAhDTAgsLPwEBfyMEIQEjBEEQaiQEIAEgADYCABA8IQBDAAAAABCGBCAAIAAoAoQCQQFqNgKEAiAAQcADaiABEHggASQEC0QBA38QPCIELAB/BH9BAAVBmKkEKAIAIgVB3NwAaiIGQYEYIAIgAxC8AiAFQdzcAGpqIQIgBCAAEF4gASAGIAIQ0wILC10BAX0gAEH/AXEgAUH/AXEgAUEYdrNDAAB/Q5UiAhDgAiAAQQh2Qf8BcSABQQh2Qf8BcSACEOACQQh0ciAAQRB2Qf8BcSABQRB2Qf8BcSACEOACQRB0ckGAgIB4cgvJAgMDfwF+Bn0jBCEEIwRB0ABqJAQgBEE4aiIFIAEqAgAiCiACKgIAIgmSIgtDAACAP5IgASoCBCIIEDIgBEEwaiIGIAlDAAAAQJIiDCACKgIEQwAAgD+SIg0QMiAEQUBrIgEgBSkCADcCACAEQcgAaiIFIAYpAgA3AgAgACABIAVBAUGAgIB4EOkDIARBKGoiBiALIAgQMiAEIAIpAgAiBzcDCCABIAYpAgA3AgAgBSAEKQIINwIAIAAgASAFQQFBfxDpAyAEQSBqIgIgCiADkiAJkyIDQwAAgL+SIAgQMiAEQRhqIgYgDCANEDIgASACKQIANwIAIAUgBikCADcCACAAIAEgBUEAQYCAgHgQ6QMgBEEQaiICIAMgCBAyIAQgBzcDACABIAIpAgA3AgAgBSAEKQIANwIAIAAgASAFQQBBfxDpAyAEJAQLLgEBfSAAIAEqAgAiBCACKgIAIASTIAOUkiABKgIEIgQgAioCBCAEkyADlJIQMgsXACAAIAEgAiADIARBgIDAAHIgBRC9BAvEAgEBfyABQStGIQUgAUEtRiEBAkACQAJAAkACQAJAAkAgAA4GAAECAwQFBgsgBQRAIAIgAygCACAEKAIAajYCAAwGCyABBEAgAiADKAIAIAQoAgBrNgIACwwFCyAFBEAgAiADKAIAIAQoAgBqNgIADAULIAEEQCACIAMoAgAgBCgCAGs2AgALDAQLIAUEQCACIAMpAwAgBCkDAHw3AwAMBAsgAQRAIAIgAykDACAEKQMAfTcDAAsMAwsgBQRAIAIgAykDACAEKQMAfDcDAAwDCyABBEAgAiADKQMAIAQpAwB9NwMACwwCCyAFBEAgAiADKgIAIAQqAgCSOAIADAILIAEEQCACIAMqAgAgBCoCAJM4AgALDAELIAUEQCACIAMrAwAgBCsDAKA5AwAMAQsgAQRAIAIgAysDACAEKwMAoTkDAAsLCz4BA38jBCEFIwRBEGokBCAFQQRqIgYgAjYCACAFIAM2AgAgAEEAIAEgBiAFIARDAACAPxC2BCEHIAUkBCAHCzsBA38jBCEGIwRBEGokBCAGQQRqIgcgAjgCACAGIAM4AgAgAEEEIAEgByAGIAQgBRC2BCEIIAYkBCAIC54BACABIAJGBH1DAAAAAAUCfSACIAFKBH8gACABIAIQ0gEFIAAgAiABENIBCyIAIAFrsiACIAFrspVBAQ0AGiAAQQBIBH1DAACAP0MAAIA/IAAgAWtBACACELgBIAFrbbKTQwAAgD8gA5UQgwGTIASUBUMAAIA/IASTIABBACABELoBIgBrIAIgAGttskMAAIA/IAOVEIMBlCAEkgsLCwsUACABIAIgACAAIAJLGyAAIAFJGws2ACABIAJGBH1DAAAAAAUgAiABSwR/IAAgASACEOAFBSAAIAIgARDgBQsgAWuzIAIgAWuzlQsLFAAgASACIAAgACACVRsgACABUxsLpQEAIAEgAlEEfUMAAAAABQJ9IAIgAVUEfiAAIAEgAhDiBQUgACACIAEQ4gULIgAgAX25IAIgAX25o7ZBAQ0AGiAAQgBTBH1DAACAP0MAAIA/IAAgAX1CACACQgAgAlMbIAF9f7STQwAAgD8gA5UQgwGTIASUBUMAAIA/IASTIAAgAUIAQgAgAVMbIgB9IAIgAH1/tEMAAIA/IAOVEIMBlCAEkgsLCwsUACABIAIgACAAIAJWGyAAIAFUGws3ACABIAJRBH1DAAAAAAUgAiABVgR+IAAgASACEOQFBSAAIAIgARDkBQsgAX26IAIgAX26o7YLC6UBACABIAJbBH1DAAAAAAUCfSABIAJdBH0gACABIAIQZAUgACACIAEQZAsiACABkyACIAGTlSADQwAAgD9bDQAaIABDAAAAAF0EfUMAAIA/QwAAgD8gACABk0MAAAAAIAIQRSABk5WTQwAAgD8gA5UQgwGTIASUBUMAAIA/IASTIABDAAAAACABEDkiAJMgAiAAk5VDAACAPyADlRCDAZQgBJILCwsLFAAgASACIAAgACACZBsgACABYxsLDAAgACABIAAgAWYbCwwAIAAgASAAIAFjGwu4AQAgASACYQR9QwAAAAAFAn0gASACYwR8IAAgASACEOcFBSAAIAIgARDnBQsiACABoSACIAGho7YgA0MAAIA/Ww0AGiAARAAAAAAAAAAAYwR9QwAAgD9DAACAPyAAIAGhRAAAAAAAAAAAIAIQ6QUgAaGjtpNDAACAPyADlRCDAZMgBJQFQwAAgD8gBJMgAEQAAAAAAAAAACABEOgFIgChIAIgAKGjtkMAAIA/IAOVEIMBlCAEkgsLCwvVAQACfwJAAkACQAJAAkACQAJAIAIOBgABAgMEBQYLIAAgASADIAQoAgAgBSgCACAGIAcgCCAJENwIDAYLIAAgASADIAQoAgAgBSgCACAGIAcgCCAJENsIDAULIAAgASADIAQpAwAgBSkDACAGIAcgCCAJENoIDAQLIAAgASADIAQpAwAgBSkDACAGIAcgCCAJENkIDAMLIAAgASADIAQqAgAgBSoCACAGIAcgCCAJENgIDAILIAAgASADIAQrAwAgBSsDACAGIAcgCCAJENcIDAELQQALC0MCAX8BfSAAKAIIIgFBAE4EQCABQf////8HRwRAIAAqAgAgACoCBCICIAGylJIgAhDuBQsgAEF/NgIIIABBAzYCDAsLJAECfyAAKAIIIgEgACgCBCICSARAIAAgAjYCCCAAIAE2AgQLC0cBAX8gABDWBhA8IgIqAswBIQAgAiAAIAGTOALUASACIAFBmKkEKAIAQdgqaioCAJM4AvgBIAIoArwDIgIEQCACIAA4AhwLC3oAIAAQ1gQEf0EBBQJ/AkACQCAAQShrDlYAAAEBAAEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAELQQEMAQtBAAsLCzsAIAFBAEoEfyAAQQRqIgAgAUF/ahCUAi8BABDvBQR/IAAgARCUAi8BABDvBUEBc0EBcQVBAAsFQQELC5kDAQV/IwQhByMEQSBqJAQgByEEIAIgASgCLEYEQAJAIAMEQCAEIAFBABD2ASAAQwAAAAA4AgQgAEEANgIMIAAgAjYCECAAIAQqAhAgBCoCDJM4AgggACAEKAIENgIADAELIABDAAAAADgCBCAAQwAAAAA4AgAgAEMAAIA/OAIIIAJBAEoEQEEAIQMDQCAEIAEgAxD2ASAEKAIUIANqIgUgAkgEQCAFIQMMAQsLBUEAIQMLIAAgBTYCDCAAQQA2AhAgACADNgIUCwUgAEMAAAAAOAIEIAQgAUEAEPYBIAQoAhQiAyACSgRAIAMhBkEAIQMFA38gACAEKgIIIAAqAgSSOAIEIAQgASADEPYBIAQoAhQiCCADaiIGIAJKBH8gCAUgAyEFIAYhAwwBCwshBgsgACADNgIMIAAgBjYCECAAIAQqAhAgBCoCDJM4AgggACAFNgIUIAAgBCgCADYCACADIAJIBEAgAiADayEFQQAhAgNAIAAgASADIAIQ2AMgACoCAJI4AgAgAkEBaiICIAVHDQALCwsgByQECzsBAX8gAUEBaiIBIAAoAiwiAkgEQANAIAAgARDwBUUEQAEgAUEBaiIBIAJIDQELCwsgAiABIAEgAkobC08BAX8gAUF/aiECIAFBAEoEQAJAIAIhAQN/IAAgARDwBQ0BIAFBf2ohAiABQQBKBH8gAiEBDAEFIAILCyEBCwUgAiEBCyABQQAgAUEAShsLjwICBn8BfSMEIQgjBEEQaiQEIAghBEGYqQQoAgAiBkGUM2ooAgAhBSAGQczYAGosAAAEQCACQQA2AgAgAyAANgIABQJAIAUsAH8EQCADQQA2AgAgAkEANgIADAELIAQgBSkCzAM3AgAgBCAFKQLUAzcCCAJ/IAZBmTZqIgcsAAAEfyAEIAZByDVqEIUHIAcsAABFBUEBCyEJIAQqAgQgBSoCzAEiCpMgAZWoIQUgBCoCDCAKkyABlaghBCAJC0UEQCAEIAZBrDZqKAIAIgZBA0ZqIQQgBSAGQQJGQR90QR91aiEFCyAEQQFqIAVBACAAENIBIgQgABDSASEAIAIgBDYCACADIAA2AgALCyAIJAQLxQICBn8CfSMEIQcjBEEgaiQEIAAoAiwhBCAHIgNDAAAAADgCBCADQwAAAAA4AgAgA0MAAAAAOAIQIANDAAAAADgCDCADQQA2AhQgBEEASgR/An8DQAJAIAMgACAFEPYBIAQgAygCFCIGQQFIDQIaIAVFBEBBACAJIAMqAgySIAJeDQMaCyAJIAMqAhCSIAJeDQAgCSADKgIIkiEJIAUgBmoiBSAESA0BIAQMAgsLIAMqAgAiAiABXgR/IAUFIAMqAgQgAV4EQAJAQQAhBANAIAIgACAFIAQQ2AMiCpIiCSABXkUEQCAEQQFqIgQgBk4NAiAJIQIMAQsLIAQgBWoiACACIApDAAAAP5SSIAFeDQMaIABBAWoMAwsLIAUgBmoiBEF/aiIDIAQgACADEOIBQf//A3FBCkYbCwsFIAQLIQggByQEIAgLzQEBBn8gAEH+G2oiBS4BACIBQQBKBEAgACgCDCICQX9KBEAgAEGEHGoiASgCACAAKAIEIgZrIQMgASADNgIAIABBsAxqIABBsAxqIAZBAXRqIANBAXQQswEaIAUuAQAiAUEASgRAIAEhAyACIQRBACECA0AgBEF/SgRAIAJBBHQgAGogBCAGazYCDAsgAkEBaiICIANIBEAgAkEEdCAAaigCDCEEDAELCwsLIAUgAUF/akEQdEEQdSIBOwEAIAAgAEEQaiABQQR0ELMBGgsLEQAgAEEYaiABQQAgAhC5BBoLOwEBfyAAIAAoAjggACgCLCIBELgBNgI4IAAgACgCPCABELgBNgI8IABBQGsiACAAKAIAIAEQuAE2AgALyAEBBn8jBCEGIwRB0ABqJARBmKkEKAIAIQcQPCEIIAdB1NcAaiIJKAIAIAgQtQFBABCIAyAHQcwzakEMNgIAIAYiCEEgIAMgBCAFIAZBIGoQ8QgQlgMaIAYQkAogBkFAayIFIAAQzwICfyACIAZBICAFQZCACEERIANBAXJBBUYbQQAQvQQhCiAJKAIARQRAIAkgB0G0M2ooAgA2AgAgARCIAwsgCgsEfyAIIAdBpDpqKAIAIAMgBEEAELwEBUEACyELIAYkBCALC38BA38gAEEBaiAAIAAsAABBLUYiBBsiAEEBaiAAIAAsAABBK0YbIgAsAAAiA0FQakEYdEEYdUH/AXFBCkgEQANAIAMgAkEKbEFQamohAiAAQQFqIgAsAAAiA0FQakEYdEEYdUH/AXFBCkgNAAsLIAFBACACayACIAQbNgIAIAALSQIBfwF9QZipBCgCACEBIABBAUgEfUP//39/BSABQZgqaioCAEMAAABAlCABQbQxaioCACABQdgqaioCACICkiAAspQgApOSCwuoCQIefwN9IwQhCiMEQaABaiQEIAoiA0GIAWohBCADQTBqIQ0gA0GAAWohDiADQSBqIQUgA0HoAGohByADQZEBaiEQIANBkAFqIQsgA0HQAGohEiADQfgAaiETIANB4ABqIRQgA0HIAGohFSADQUBrIQ9BmKkEKAIAIgZBxDRqIhYoAgAhFyAWQQA2AgAQPCIMLAB/BH9BAAUgDCAAEF4hCSACQSBxQQBHIhoEfUMAAAAABRD+AQshISAOIABBAEEBQwAAgL8QbCAEIAJBwABxQQBHIhgEfSAhBRC+AQsiIiAOKgIEIAZByCpqIhEqAgBDAAAAQJSSEDIgAyAMQcgBaiIIIAQQNSAFIAggAxBDIAZBxCpqIRkgBCAOKgIAIiNDAAAAAF4EfSAjIAZB3CpqKgIAkgVDAAAAAAtDAAAAABAyIAMgBUEIaiIIIAQQNSAHIAUgAxBDIAcgESoCABB8IAcgCSAFEGEEfyAFIAkgECALQQAQkQEhGyAJEKwDIQsgBCAhQwAAAAAQMiADIAggBBBAIBIgBSADEENBCEEHIBAsAAAbQwAAgD8QQiEHIAUgCUEBEJcBIBhFBEACfyAMKAL0BCEdIAMgCCoCACAhkyAFKgIMEDIgHQsgBSADIAcgBkHMKmoqAgBBBRB1CyAaBEAgBkHMKmohBwUCfyAMKAL0BCEeIAMgCCoCACAhkyAFKgIEEDIgHgsgAyAIQRZBFSALIBAsAABBAXFyG0MAAIA/EEIgBkHMKmoiByoCAEEPQQogIiAhXxsQdSATIAgqAgAgIZMgESoCACIhkiAhIAUqAgSSEDIgAyATKQIANwIAIANBA0MAAIA/ENECCyAKIAUpAwA3AxggCiAIKQMANwMQIAcqAgAhISAEIAopAhg3AgAgAyAKKQIQNwIAIAQgAyAhEIwDIAFFIBhyRQRAIAMgBSAZEDUgBEMAAAAAQwAAAAAQMiADIBJBCGogAUEAQQAgBEEAEK0BCyAOKgIAQwAAAABeBEAgFCAIKgIAIAZB3CpqKgIAkiAFKgIEIBEqAgCSEDIgAyAUKQIANwIAIAMgAEEAQQEQrgELAn8CQAJAIBsEfyALBEAMAwUMAgsABSALIAZBqDVqKAIAIAlHckUNASALDQJBAAsMAgsgDCgCtAJFBEAgDCAJNgKABgsgCRDtAgsgFwRAIBYgFzYCACAGQfQ0aiIAIAAqAgAgIhA5OAIABSADICJDAAAAABAyIARD//9/fyACIAJBBHIgAkEecRsiAkEEcQR/QQgFQQRBFEF/IAJBCHEbIAJBAnEbCxD7BRAyIAMgBEEAEK8DCyANIAZBqDRqKAIANgIAIANBEEHLnQIgDRBzGiADEKECIgAEQCAALAB7BEAgBCAAELYKIABBoAFqIQEgAkEBcQRAIAFBADYCAAsgDRDMBiAPIAUQ8QIgFSAPIAQgASANIAVBARCDBCAPQwAAAABDAAAAABAyIBVBACAPEJwCCwsgBCAZKgIAIAZBmCpqKgIAEDJBASAEEL4CAn8gA0EAQcOCgCAQ6wEhH0EBEKMCIB8LBH9BAQUQyAFBAAsLBUEACwshICAKJAQgIAtTAgJ/AX0QPCIALAB/RQRAQZipBCgCACIBQcgqaioCACECIAAgACoC7AEgAUG0MWoqAgAgAkMAAABAlJIQOTgC7AEgACAAKgLwASACEDk4AvABCwtRAQR/IwQhASMEQSBqJAQgAUEIaiECIAEhBBA8IgMsAH9FBEAgBCADQcgBaiIDIAAQNSACIAMgBBBDIAJDAAAAABB8IAJBAEEAEGEaCyABJAQLOAECfyMEIQAjBEEQaiQEIAAhARA8LAB/RQRAIAFDAAAAAEMAAAAAEDIgAUMAAAAAEKkBCyAAJAQLVAECfyMEIQMjBEEQaiQEIAMiBCACIAIgASgCAHFGOgAAIAAgAxDkAyIABEAgASAELAAABH8gAiABKAIAcgUgASgCACACQX9zcQs2AgALIAMkBCAAC4QBAQZ/IwQhAyMEQRBqJAQgAyIGIAIoAgA2AgBBAEEAIAEgAhC8AiIEQQFOBEAgACgCBCIHQQF0IQUgBCAAKAIAIgJBASACGyIIaiICIAdOBEAgACACIAUgAiAFShsQlwMLIAAgAhCRAiAAIAhBf2oQ1wIgBEEBaiABIAYQvAIaCyADJAQL0wgCEH8IfSMEIQYjBEHQAGokBEGYqQQoAgAiBUGUM2ooAgAiAkH3nAJBgJ0CIABFIgQbEF4hCiACQfkAaiACQfgAaiAEGywAAEEARyIDBH0gBUH0KmoqAgAFQwAAAAALIRMgBkEoaiEBIAZBOGoiCCACEJ8CIAIqAkghESAEBEAgASARIAIqAgySIAgqAgwiEiAFQfQqaioCAJMgCCoCCCATkyARkyASIBGTEF0FIAEgCCoCCCISIAVB9CpqKgIAkyARIAIqAhCSIBIgEZMgCCoCDCATkyARkxBdIAIQvwEhEiACKAIIQYAIcQR9IAIQ0QEFQwAAAAALIREgASABKgIEIBIgEZKSOAIECyAGQSBqIQkgBkHIAGohCyAGQRBqIQcgBiEAIAEQdkMAAAAAX0UEQCABEI0BQwAAAABfRQRAIAQEf0EEQQwgAxsFQQJBACACKAIIQYEIcUEBRhtBAEEIIAMbcgshAyACKAL0BCABIAFBCGoiDEEOQwAAgD8QQiACKgJEIAMQdSAJIAwqAgAgASoCAJNDAAAAwJJDAAAAP5SoskMAAAAAQwAAQEAQZIwgASoCDCABKgIEk0MAAADAkkMAAAA/lKiyQwAAAABDAABAQBBkjBAyIAEgCRDQAiAEBH0gARB2BSABEI0BCyESIAJB2ABqIg0gAkHcAGoiDiAEGyoCACEUIBIgAkEcaiACQSBqIAQbKgIAIBOTIhEgAkEsaiACQTBqIAQbKgIAIhUgERA5QwAAgD8QOZWUIAVB/CpqKgIAIBIQZCIWIBKVIRMgCUEAOgAAIAtBADoAACAFQbQzaigCACEPIAEgCiALIAlBgMAAEJEBGiASIBaTIhcgFEMAAIA/IBUgEZMQOSIVlRBalCASlSERIAksAAAiA0EARyATQwAAgD9dcQRAIAVB+NcAaiAFQfzXAGogBBshAyAFQfABaiAFQfQBaiAEGyoCACABKgIAIAEqAgQgBBuTIBKVEFohFCAKEIgDAn8gCiAPRgR/IAMqAgAhEUEABSAUIBFgRSAUIBMgEZJfRXIEfyADQwAAAAA4AgBDAAAAACERQQEFIAMgFCARkyATQwAAAD+UkyIROAIAQQALCyEQIA0gDiAEGyAVIBQgEZMgE0MAAAA/lCIYk0MAAIA/IBOTlRBalEMAAAA/kqiyIhE4AgAgFyARIBWVEFqUIBKVIREgEAsEQCADIBQgEZMgGJM4AgALIAksAAAhAwsgA0H/AXEEf0ERBUEQQQ8gCywAABsLQwAAgD8QQiEDIAcQZiAEBEAgACABKgIAIAwqAgAgERB/IhEgASoCBCAWIBGSIAgqAggQRSABKgIMEF0FIAAgASoCACABKgIEIAEqAgwgERB/IhEgDCoCACAWIBGSIAgqAgwQRRBdCyAHIAApAgA3AgAgByAAKQIINwIIIAIoAvQEIAcgB0EIaiADIAVB+CpqKgIAQQ8QdQsLIAYkBAstAQF/IwQhAyMEQRBqJAQgAyACNgIAQQAgABCCAiABIAMQ2gJBARCiAiADJAQLdAEHfyABQQBKBEACfyABQQF0IQlBgJwBIQQgAiEDA0AgAyAEIAVBAXQgAGoiBy8BAGpB//8DcSIIOwECIAMgCDsBACAEIAcuAQBqIQQgA0EEaiEDIAVBAWoiBSABRw0ACyAJC0EBdCACaiECCyACQQA7AQALawEBfyMEIQEjBEEQaiQEIABBCGoQOiAAQQA2AhQgAEEANgIQIABBADYCGCAAQRxqEGggAEEoahBoIABDAACAPzgCBCAAQT87ATwgAUMAAAAAQwAAAAAQMiAAIAEpAwA3AgggABDuAyABJAQL6wEBA38jBCEHIwRBgAFqJAQgByEGIAQEQCAGIAQpAgA3AgAgBiAEKQIINwIIIAYgBCkCEDcCECAGIAQpAhg3AhggBiAEKQIgNwIgIAYgBCkCKDcCKCAGIAQpAjA3AjAgBiAEKQI4NwI4IAZBQGsgBEFAaykCADcCACAGIAQpAkg3AkggBiAEKQJQNwJQIAYgBCkCWDcCWCAGIAQpAmA3AmAgBiAEKQJoNwJoIAYgBCgCcDYCcAUgBhDfAgsgBiABNgIAIAYgAjYCBCAGIAM4AhAgBQRAIAYgBTYCMAsgACAGEJcJIQggByQEIAgLIgAgAC0ACyAALQAIQRh0IAAtAAlBEHRyIAAtAApBCHRycgtJAQJ/IwQhAyMEQSBqJAQgAxCcCSADQYCAgIB4NgIAIAMgATsBBCADIAI7AQYgAEFAayIAIAMQgAQgACgCAEF/aiEEIAMkBCAEC8QBAQh/IAEgAmoiCyAALwEAIgVKBEAgACEIA0AgBCAILwECIgdIBH8gByAEayAJbCAGaiEGIAgoAgQiCC8BACEEIAUgAUgEfyAEIQogByEAIAQgAWsFIAQhCiAHIQAgBCAFawsFIAIgCWsgCCgCBCIILwEAIgogBWsiACAAIAlqIAJKGyEFIAQhACAFIAQgB2tsIAZqIQYgBQsgCWohByALIApKBEAgCiEFIAAhBCAHIQkMAQsLBUEAIQALIAMgBjYCACAAC4gBAQJ/IAJBAEchCyABQQFqIQIgAUEObCAAaiEKIAMEQCALBEAgCkEDIAYgCGpBAXUgByAJakEBdSAIIAkQ+gEgAkEObCAAaiEKIAFBAmohAgsgCkEDIAQgBSAGIAcQ+gEFIAsEQCAKQQMgBCAFIAggCRD6AQUgCkECIAQgBUEAQQAQ+gELCyACC4wBAQJ/IAAoAgwgAUoEfyAAKAIwIgNBAUoEf0F/BSAAKAIYIQIgACgCBCAAKAIQaiEAIAMEfyAAIAFBAnRqIgEQwwEhACABQQRqEMMBBSAAIAFBAXRqIgEQSkH//wNxQQF0IQAgAUECahBKQf//A3FBAXQLIQFBfyAAIAJqIgAgACABIAJqRhsLBUF/CwuRAQEEfyMEIQMjBEEgaiQEIANBCGohBCADQRRqIgVBADYCACADQgA3AwAgAkESQQIgAxDdAiADKAIEIgJFIAMoAgAiBkVyBEAgAEEAQQAQ+QEFIAQgASACIAYQ3AIgBEETQQEgBRDdAiAFKAIAIgQEQCABIAIgBGoQ+AEgACABELoCBSAAQQBBABD5AQsLIAMkBAtBAQJ9IAAqAgwhAQJAAkAgACoCCCICIAAqAhBcDQAgASAAKgIUXA0ADAELIABBAiACqCABqEEAQQBBAEEAEOoDCwvWAgEFfQJAAkADQAJAIAQgApMiDCAMlCAFIAOTIgwgDJSSkQJ9IAYgBJMiDCAMlCAHIAWTIgwgDJSSkSEQIAggBpMiDCAMlCAJIAeTIgwgDJSSkSEPIAggApMiDCAMlCAJIAOTIgwgDJSSkSEMIAtBEEoNASAQC5IgD5IiDSANlCAMIAyUkyAKXkUNAiACIASSQwAAAD+UIgwgBCAGkkMAAAA/lCINkkMAAAA/lCEEIAMgBZJDAAAAP5QiDiAFIAeSQwAAAD+UIg+SQwAAAD+UIQUgACABIAIgAyAMIA4gBCAFIAQgDSAGIAiSQwAAAD+UIgaSQwAAAD+UIgSSQwAAAD+UIgIgBSAPIAcgCZJDAAAAP5QiB5JDAAAAP5QiBZJDAAAAP5QiAyAKIAtBAWoiCxCOBgwBCwsMAQsgACABKAIAIAggCRDsAyABIAEoAgBBAWo2AgALC8QCAgF/B30gBEMAAABAlCACkiAGkkMAAIA+lCELIAVDAAAAQJQgA5IgB5JDAACAPpQhDCAJQRBMBEACQCAHIAOSQwAAAD+UIAyTIQ0gBiACkkMAAAA/lCALkyEOA0AgDiAOlCANIA2UkiAIXgRAIAAgASACIAMgAiAEkkMAAAA/lCADIAWSQwAAAD+UIAsgDCAIIAlBAWoiChCPBiAJQQ9KDQIgCyAGkkMAAAA/lCALIAQgBpJDAAAAP5QiD0MAAABAlJIgBpJDAACAPpQiDZMhDgJ9IAwgB5JDAAAAP5QgDCAFIAeSQwAAAD+UIhBDAAAAQJSSIAeSQwAAgD6UIgWTIREgDCEDIAshAiANIQsgBSEMIAohCSARCyENIA8hBCAQIQUMAQsLIAAgASgCACAGIAcQ7AMgASABKAIAQQFqNgIACwsLKgEBfyAAIAEQngMiAyAAEJ0DRwRAIAEgAygCAEYEQCADKAIEIQILCyACCx0AIAAoAjwEfyAAIAEgAhCuCQUgACABIAIQrwkLCxoAQQEgAGuyIACyQwAAAECUlUMAAAAAIAAbCwgAIAAuAQgaC0AAIAAoAiggAUH//wNxIgFKBH8gACgCMCABQQF0ai4BACIBQX9GBH9BAAUgACgCGCABQf//A3FBKGxqCwVBAAsLHwAgACgCBCABSARAIAAgACABEFgQvwkLIAAgATYCAAvGAQEBfyAAQRBqIgsgCygCAEEBahCVBiALEM8EIgsgATsBACALIAI4AgggCyADOAIMIAsgBDgCECALIAU4AhQgCyAGOAIYIAsgBzgCHCALIAg4AiAgCyAJOAIkIAsgAEFAaygCACIBKgIgIAqSIgI4AgQgASwAHARAIAsgAkMAAAA/kqiyOAIECyAAQQE6AFAgACAAKAJUIAggBpMgACgCRCIAKAIcspRDUrj+P5KoIAkgB5MgACgCILKUQ1K4/j+SqGxqNgJUC+sCAQZ/IwQhBiMEQRBqJAQgBiEEAkACQCACQQBKIgcEQANAIANBBHQgAWogAzYCDCADQQFqIgMgAkcNAAsgASACQRBBAxDEAiAHRQ0BQQAhAwNAAkACQCADQQR0IAFqLgEEIgVFDQAgA0EEdCABai4BBiIIRQ0AIAQgACAFQf//A3EgCEH//wNxEKYJIANBBHQgAWogBCgCCAR/IAQoAgBB//8DcSEFIAQoAgRB//8DcQVBfyEFQX8LOwEKIANBBHQgAWogBTsBCAwBCyADQQR0IAFqQQA7AQogA0EEdCABakEAOwEICyADQQFqIgMgAkcNAAsgASACQRBBBBDEAiAHBEBBACEAA0AgAEEEdCABaiAAQQR0IAFqLgEIQX9GBH8gAEEEdCABai4BCkF/RgVBAAtBAXNBAXE2AgwgAEEBaiIAIAJHDQALCwUgASACQRBBAxDEAgwBCwwBCyABIAJBEEEEEMQCCyAGJAQLGwAgASAAKAIEIAAoAhRqQRJqEEpB//8DcbKVCwoAIAAoAgBBBHQLHwAgACgCBCABSARAIAAgACABEFgQ3gQLIAAgATYCAAseACAAIAFBBXUQUCIAIAAoAgBBASABQR9xdHI2AgALIQAgACABQR9qQQV1ELwDIAAoAghBACAAKAIAQQJ0EGoaC/4VAhl/BX0jBCEKIwRBkANqJAQgABDOCSAAQQA2AgggAEEANgIgIABBADYCHCAKQYACaiIFQwAAAABDAAAAABAyIAAgBSkDADcCJCAFQwAAAABDAAAAABAyIAAgBSkDADcCLCAAEO8DIAVBADYCBCAFQQA2AgAgBUEANgIIIApBgANqIgsiAUEANgIEIAFBADYCACABQQA2AgggBSIBKAIEIABBzABqIhAoAgAiAkgEQCABIAEgAhBYEJ0JCyABIAI2AgAgCyIBKAIEIABBNGoiBygCACICSARAIAEgASACEFgQ+QMLIApB9AJqIREgCkHoAmohDiAKQcACaiEIIAohDyAKQbwCaiEUIApBuAJqIRUgCkGYAmohDCAKQZACaiEXIApBjAJqIRggASACNgIAIAUoAghBACAFKAIAQcQBbBBqGiALKAIIQQAgCygCAEEYbBBqGgJ/AkAgECgCAEEATA0AA0ACQCAFIAQQkwIhASAQIAQQ+wEiAigCcCIGBEAgBhC+AxoLIAFBfzYCoAEgBygCAEEATA0AQQAhAwJAAkADQCACKAJwIAcgAxBQKAIARg0BIAEoAqABQX9GIgYgA0EBaiIDIAcoAgBIcQ0ACyAGDQIMAQsgASADNgKgAQsgASACKAIAIgYgBiACKAIMEJ8JEKAJRQ0AIAsgASgCoAEQnAEhBiABIAIoAjAiAkHEhQIgAhsiAzYCnAEgAy4BAARAA0AgAy4BAiICBEAgASABKAKkASACQf//A3EQugE2AqQBIANBBGoiAy4BAA0BCwsLIAYgBigCAEEBajYCACAGIAYoAgQgASgCpAEQugE2AgQgBEEBaiIEIBAoAgBIDQEMAgsLQQAMAQsgBSgCAEEASgRAQQAhB0EAIQMDQCALIAUgBxCTAiINKAKgARCcASEJIBAgBxD7ASESIA1BrAFqIhYgDSgCpAFBAWoQnAYgCSgCAEEBSgRAIAlBDGoiARB+BEAgASAJKAIEQQFqEJwGCwsgDSgCnAEiBC4BACIBBEACQCAJQQxqIRMDQCAEIgYuAQIiAkUNASABQf//A3EgAkH//wNxTARAIAFB//8DcSEBA0ACQAJAIBIsADxFDQAgEygCCCABQQV1QQJ0aigCAEEBIAFBH3F0cUUNAAwBCyANIAEQ1AQEQCANIA0oAqgBQQFqNgKoASAJIAkoAghBAWo2AgggFiABEJsGIAkoAgBBAUoEQCATIAEQmwYLIANBAWohAwsLIAFBAWohAiABIAYvAQJJBEAgAiEBDAELCwsgBEEEaiIELgEAIgENAAsLCyAHQQFqIgcgBSgCACIBSA0ACyABQQBKBEBBACEEA0AgBSAEEJMCIgFBuAFqIgIgASgCqAEQhQIgAUGsAWoiASACEM0JIAEQTyAEQQFqIgQgBSgCAEgNAAsLBUEAIQMLIAsoAgBBAEoEQEEAIQQDQCALIAQQnAFBDGoQTyAEQQFqIgQgCygCAEgNAAsLIAsQTyAREGggDkEANgIEIA5BADYCACAOQQA2AgggESADEJoGIA4iASgCBCADSARAIAEgASADEFgQpwMLIAEgAzYCACARKAIIQQAgERCZBhBqGiAOKAIIQQAgDigCAEEcbBBqGiAFKAIAQQBKBEBBACEEQQAhAUEAIQlBACEDA0AgBSAJEJMCIgIoAqgBBEAgAiARIAEQzwE2ApQBIAIgDigCCCAEQRxsajYCmAEgAigCqAEhByACIBAgCRD7ASIGKAIQIhM2AnwgAkEANgKAASACIAIoAsABNgKEASACIAJBuAFqIg0oAgAiEjYCiAEgAiACKAKYATYCjAEgAiAGKAIUOgCQASACIAYoAhg6AJEBIBO+IhpDAAAAAF4EfSACIBoQ0gQFIAIgGowQmAYLIRogASAHaiEBIAQgB2ohBCASQQBKBEAgACgCEEH//wNqIRNBACEHA0AgAiACIA0gBxBQKAIAENQEIBogBigCFLKUIBogBigCGLKUIAggDyAUIBUQ0QQgAigClAEiEiAHQQR0aiAGKAIUIBQoAgAgE2ogCCgCAGtqIhY7AQQgB0EEdCASaiAGKAIYIBUoAgAgE2ogDygCAGtqIhI7AQYgFkH//wNxIBJB//8DcWwgA2ohAyAHQQFqIgcgDSgCAEgNAAsLCyAJQQFqIgkgBSgCAEgNAAsFQQAhAwsgAEEANgIgIAAoAgwiAUEATARAIAOykagiAUGyFkoEf0GAIAVBgBBBgAhBgAQgAUHLBUobIAFBmAtKGwshAQsgACABNgIcIAhCADcCACAIQgA3AgggCEIANwIQIAhCADcCGCAIQgA3AiAgCCABIAAoAhAQzAkgACAIKAIEIgIQywkgBSgCAEEASgRAQQAhBANAIAUgBBCTAiIBKAKoASIGBEAgAiABKAKUASAGEJcGIAEoAqgBIgZBAEoEQCABKAKUASEBQQAhAwNAIANBBHQgAWooAgwEQCAAIAAoAiAgA0EEdCABai8BCiADQQR0IAFqLwEGahC6ATYCIAsgA0EBaiIDIAZIDQALCwsgBEEBaiIEIAUoAgBIDQALCyAAKAIgIQEgACAAKAIEQQFxBH8gAUEBagUgARDKCQsiATYCICAPQwAAgD8gACgCHLKVQwAAgD8gAbKVEDIgACAPKQMANwIkIAAgACgCHCAAKAIgbBBTIgE2AhQgAUEAIAAoAhwgACgCIGwQahogCCAAKAIUNgIgIAggACgCIDYCDCAFKAIAQQBKBEBBACEBA0AgECABEPsBIQQgBSABEJMCIgIoAqgBBEAgCCACIAJB/ABqIAIoApQBEMkJIAQqAkQiGkMAAIA/XARAIA8gGhDICSACKAKoASIDQQBKBEBBACEHIAIoApQBIQQDQCAEKAIMBEAgDyAAKAIUIAQvAQggBC8BCiAELwEEIAQvAQYgACgCHBDHCSACKAKoASEDCyAEQRBqIQQgB0EBaiIHIANIDQALCwsgAkEANgKUAQsgAUEBaiIBIAUoAgBIDQALCyAIKAIkEEEgCCgCBBBBIBEQTyAFKAIAQQBKBEBBACEEA0AgBSAEEJMCIgIoAqgBBEAgECAEEPsBIgEoAnAhBiACIAEqAhAQ0gQhGiACIA8gFCAVEMYJIAAgBiABIBogDygCACIDspRDAACAP0MAAIC/IANBAEobkhBiIBogFCgCACIDspRDAACAP0MAAIC/IANBAEobkhBiEMUJIAEqAighGiABKgIsIAYqAkhDAAAAP5KospIhHCACKAKoAUEASgRAIAJBuAFqIQhBACEDA0AgCCADEFAoAgAhByACKAKYASIJIANBHGxqKgIQIhsgASoCNCABKgI4EGQiHSAbk0MAAAA/lCEeIBsgHVwEfSAaIB6osiAeIAEsABwbkgUgGgshGyAXQwAAAAA4AgAgGEMAAAAAOAIAIAkgACgCHCAAKAIgIAMgFyAYIAwQxAkgBiAHQf//A3EgGyAMKgIAkiAcIAwqAgSSIBsgDCoCEJIgHCAMKgIUkiAMKgIIIAwqAgwgDCoCGCAMKgIcIB0QlgYgA0EBaiIDIAIoAqgBSA0ACwsLIARBAWoiBCAFKAIAIgFIDQALIAFBAEoEQEEAIQMDQCAFIAMQkwIiAUG4AWoQZyABQawBahBnIANBAWoiAyAFKAIASA0ACwsLIAAQwwkgDigCCCIABEAgABBBCyAREGdBAQshGSALKAIIIgEEQCABEEELIAUoAggiAQRAIAEQQQsgCiQEIBkL0wICAn8BfSMEIQMjBEGAAWokBCADIQIgAQRAIAIgASkCADcCACACIAEpAgg3AgggAiABKQIQNwIQIAIgASkCGDcCGCACIAEpAiA3AiAgAiABKQIoNwIoIAIgASkCMDcCMCACIAEpAjg3AjggAkFAayABQUBrKQIANwIAIAIgASkCSDcCSCACIAEpAlA3AlAgAiABKQJYNwJYIAIgASkCYDcCYCACIAEpAmg3AmggAiABKAJwNgJwBSACEN8CIAJBATYCGCACQQE2AhQgAkEBOgAcCyACLABIRQRAIAJB4ZwCKQAANwBIIAJB6ZwCKQAANwBQIAJB8ZwCKAAANgBYIAJB9ZwCLgAAOwBcCyACKgIQIgRDAAAAAF8EQCACQwAAUEE4AhBDAABQQSEECyAAIAQgAiACKAIwIgBBxIUCIAAbEJsJIgBDAACAPzgCDCADJAQgAAtaACABIAAoAhQiAQR/IAEFIAAoAkxFBEAgAEEAEJ4GGgsgABCdBhogACgCFAs2AgAgAgRAIAIgACgCHDYCAAsgAwRAIAMgACgCIDYCAAsgBARAIARBATYCAAsLRQECfyAAQTRqIgEoAgBBAEoEQEEAIQADQCABIAAQUCgCACICBEAgAhDVBCACEEELIABBAWoiACABKAIASA0ACwsgARBPC+oBAQN/IABBzABqIgIoAgBBAEoEQANAIAIgARD7ASgCAARAIAIgARD7ASwACARAIAIgARD7ASgCABBBIAIgARD7AUEANgIACwsgAUEBaiIBIAIoAgBIDQALCyAAQTRqIgMoAgBBAEoEQEEAIQEDQCADIAEQUCgCAEFAaygCACAAKAJUTwRAIAMgARBQKAIAQUBrKAIAIAAoAlQgAigCAEH0AGxqSQRAIAMgARBQKAIAQUBrQQA2AgAgAyABEFAoAgBBADsBPgsLIAFBAWoiASADKAIASA0ACwsgAhBPIABBQGsQTyAAQX82AlgLEQAgABChBiAAEO8DIAAQoAYLLwEBfyAAEKIGIAAoAlQiAQRAIAEQQQsgAEFAaygCCCIBBEAgARBBCyAAQTRqEGcL0wICC38BfSMEIQcjBEHgAGokBCAHQdgAaiAEIAMQQCAHQdAAaiAGIAUQQCAHQRhqIQogB0FAayELIAdBEGohDCAHQQhqIQ0gB0E4aiEOIAdBMGohDyAHQShqIQggB0EgaiEQIAchBCAHQcgAaiIRIAcqAlgiEkMAAAAAXAR9IAcqAlAgEpUFQwAAAAALIAcqAlwiEkMAAAAAXAR9IAcqAlQgEpUFQwAAAAALEDIgACgCICIJIAFBFGxqIQAgAkEUbCAJaiEJIAsgBSAGELIDIAwgBSAGEKYBIAEgAkgEQANAIBAgACoCACAAKgIEEDIgCCAQIAMQQCAPIAgqAgAgESoCAJQgCCoCBCARKgIElBAyIA4gBSAPEDUgBCAMKQMANwMAIAogBCkCADcCACANIA4gCyAKEOoCIAAgDSkDADcCCCAAQRRqIgAgCUkNAAsLIAckBAsNACAAKAIIIAFBBXRqCyoAIARBgICACE8EQCAAIAEQYyAAIAIQYyAAIAMQYyAAIARBASAFEI8CCwunAgIEfwd9IwQhBiMEQRBqJAQgBiEHIABB1ABqIggiBSgCCCAFKAIAQX9qQQN0aiIFKgIAIQsgBSoCBCEMIAQEQEMAAIA/IASylSENIARBAU4EQEEBIQADQCAHIAtDAACAPyANIACylCIJkyIKIAogCpSUIg6UIAkgCiAKQwAAQECUIgqUlCIPIAEqAgCUkiAJIAkgCpSUIgogAioCAJSSIAkgCSAJlJQiCSADKgIAlJIgDCAOlCAPIAEqAgSUkiAKIAIqAgSUkiAJIAMqAgSUkhAyIAggBxCaAiAAQQFqIQUgACAERwRAIAUhAAwBCwsLBSAIIAsgDCABKgIAIAEqAgQgAioCACACKgIEIAMqAgAgAyoCBCAAKAIoKgIQQQAQ2AQLIAYkBAuzAgIGfwF+IwQhBSMEQRBqJAQgBUEIaiIHIAIqAgAgASoCBBAyIAUgASoCACACKgIEEDIgACgCKCkCACEKIAAoAjgiBCAAKAIwIgZB//8DcSIIOwEAIAQgBkEBajsBAiAEIAZBAmpB//8DcSIJOwEEIAQgCDsBBiAEIAk7AQggBCAGQQNqOwEKIAAoAjQgASkCADcCACAAKAI0IAo3AgggACgCNCIBIAM2AhAgASAHKQMANwIUIAAoAjQgCjcCHCAAKAI0IgEgAzYCJCABIAIpAgA3AiggACgCNCAKNwIwIAAoAjQiASADNgI4IAEgBSkDADcCPCAAKAI0IAo3AkQgACgCNCIBIAM2AkwgACABQdAAajYCNCAAIAAoAjBBBGo2AjAgACAAKAI4QQxqNgI4IAUkBAvzAgEFfyAAKAJkQQJOBEAgAEEAEPQDIAAoAgAEQCAAEP4DKAIARQRAIAAQgAILCyAAKAJkQQFKBEAgAEHoAGohAkEBIQUDQCACIAUQnAEiASgCAARAIAEQ/gMoAgBFBEAgARCAAgsLIAEoAgAgA2ohAyABKAIMIARqIQQgBUEBaiIFIAAoAmRIDQALCyAAIAAoAgAgA2oQ3wQgAEEMaiIFIAUoAgAgBGoQwAEgACgCCCEBIAAoAgAhAiAAIAAoAhQgBSgCAEEBdGpBACAEa0EBdGo2AjggACgCZEEBSgRAIABB6ABqIQUgAkEFdCABakEAIANrQQV0aiEEQQEhAwNAIAUgAxCcASIBKAIAIgIEQCAEIAEoAgggAkEFdBBGGiACQQV0IARqIQQLIAEoAgwiAgRAIAAoAjggASgCFCACQQF0EEYaIAAgACgCOCACQQF0ajYCOAsgA0EBaiIDIAAoAmRIDQALCyAAEPYDIABBATYCZAsLrgIBB38jBCEFIwRBMGokBCAAQegAaiIEKAIAIgYgAUgEQCAEIgMoAgQgASICSARAIAMgAyACEFgQ+QMLIAMgAjYCAAsgBSEDIAAgATYCZCAEQQAQnAEiAkIANwIAIAJCADcCCCACQgA3AhAgAUEBSgRAIABBPGohByAAQcgAaiEIQQEhAANAIAQgABCcASECIAAgBkgEQCACQQAQ3wQgBCAAEJwBQQxqQQAQwAEFIAMgBSwAIDoAACACQgA3AgAgAkIANwIIIAJCADcCECACEGggAkEMahBoCyAEIAAQnAEoAgBFBEAgAxCuBiADIAcQ/QIiAikCADcCBCADIAIpAgg3AgwgAyAIEHAoAgA2AhQgBCAAEJwBIAMQrQYLIABBAWoiACABSA0ACwsgBSQEC2cBA38jBCEBIwRBIGokBCABQQhqIgMgACgCKCICKgIUIAIqAhgQMiABIAAoAigiAioCHCACKgIgEDIgAUEQaiICIAMpAgA3AgAgAUEYaiIDIAEpAgA3AgAgACACIANBABCiAyABJAQLPwAgACABQf8BcbNDgYCAO5QgAUEIdkH/AXGzQ4GAgDuUIAFBEHZB/wFxs0OBgIA7lCABQRh2s0OBgIA7lBA2C2kBAX8gACgCACICIAAoAgRGBEAgACAAIAJBAWoQWBCvBiAAKAIAIQILIAAoAgggAkEFdGoiAiABKQIANwIAIAIgASkCCDcCCCACIAEpAhA3AhAgAiABKQIYNwIYIAAgACgCAEEBajYCAAsmACAAQQRqEPcBIABCADcCACAAQgA3AgggAEIANwIQIABCADcCGAtLAQN/IAAoAgQgAUgEQCABQQV0EFMhAiAAQQhqIgMoAgAiBARAIAIgBCAAKAIAQQV0EEYaIAMoAgAQQQsgAyACNgIAIAAgATYCBAsLphIBCH8jBCEBIwRBEGokBCAARQRAEMcCIQALIAFDAACAP0MAAIA/QwAAgD9DAACAPxA2IABBoAFqIgIgASkCADcCACACIAEpAgg3AgggAUMAAAA/QwAAAD9DAAAAP0MAAIA/EDYgAEGwAWoiAiABKQIANwIAIAIgASkCCDcCCCABQ4/CdT1Dj8J1PUOPwnU9Q9ejcD8QNiAAQcABaiICIAEpAgA3AgAgAiABKQIINwIIIAFDAAAAAEMAAAAAQwAAAABDAAAAABA2IABB0AFqIgIgASkCADcCACACIAEpAgg3AgggAUMK16M9QwrXoz1DCtejPUPXo3A/EDYgAEHgAWoiAiABKQIANwIAIAIgASkCCDcCCCABQ/Yo3D5D9ijcPkMAAAA/QwAAAD8QNiAAQfABaiIFIAEpAgA3AgAgBSABKQIINwIIIAFDAAAAAEMAAAAAQwAAAABDAAAAABA2IABBgAJqIgIgASkCADcCACACIAEpAgg3AgggAUMK1yM+Q+F6lD5Dj8L1PkNxPQo/EDYgAEGQAmoiAiABKQIANwIAIAIgASkCCDcCCCABQ7gehT5DPQoXP0NI4Xo/Q83MzD4QNiAAQaACaiICIAEpAgA3AgAgAiABKQIINwIIIAFDuB6FPkM9Chc/Q0jhej9DH4UrPxA2IABBsAJqIgIgASkCADcCACACIAEpAgg3AgggAUMK1yM9QwrXIz1DCtcjPUMAAIA/EDYgAEHAAmoiBiABKQIANwIAIAYgASkCCDcCCCABQwrXIz5D4XqUPkOPwvU+QwAAgD8QNiAAQdACaiIHIAEpAgA3AgAgByABKQIINwIIIAFDAAAAAEMAAAAAQwAAAABDXI8CPxA2IABB4AJqIgIgASkCADcCACACIAEpAgg3AgggAUMpXA8+QylcDz5DKVwPPkMAAIA/EDYgAEHwAmoiAiABKQIANwIAIAIgASkCCDcCCCABQwrXozxDCtejPEMK16M8QxSuBz8QNiAAQYADaiICIAEpAgA3AgAgAiABKQIINwIIIAFDUriePkNSuJ4+Q1K4nj5DAACAPxA2IABBkANqIgIgASkCADcCACACIAEpAgg3AgggAUOF69E+Q4Xr0T5DhevRPkMAAIA/EDYgAEGgA2oiAiABKQIANwIAIAIgASkCCDcCCCABQ1yPAj9DXI8CP0NcjwI/QwAAgD8QNiAAQbADaiICIAEpAgA3AgAgAiABKQIINwIIIAFDuB6FPkM9Chc/Q0jhej9DAACAPxA2IABBwANqIgIgASkCADcCACACIAEpAgg3AgggAUOPwnU+Q7geBT9DrkdhP0MAAIA/EDYgAEHQA2oiAiABKQIANwIAIAIgASkCCDcCCCABQ7gehT5DPQoXP0NI4Xo/QwAAgD8QNiAAQeADaiICIAEpAgA3AgAgAiABKQIINwIIIAFDuB6FPkM9Chc/Q0jhej9DzczMPhA2IABB8ANqIgIgASkCADcCACACIAEpAgg3AgggAUO4HoU+Qz0KFz9DSOF6P0MAAIA/EDYgAEGABGoiAiABKQIANwIAIAIgASkCCDcCCCABQ4/CdT1DFK4HP0NI4Xo/QwAAgD8QNiAAQZAEaiICIAEpAgA3AgAgAiABKQIINwIIIAFDuB6FPkM9Chc/Q0jhej9DUriePhA2IABBoARqIgMgASkCADcCACADIAEpAgg3AgggAUO4HoU+Qz0KFz9DSOF6P0PNzEw/EDYgAEGwBGoiCCABKQIANwIAIAggASkCCDcCCCABQ7gehT5DPQoXP0NI4Xo/QwAAgD8QNiAAQcAEaiIEIAEpAgA3AgAgBCABKQIINwIIIABB0ARqIgIgBSkCADcCACACIAUpAgg3AgggAUPNzMw9Q83MzD5DAABAP0MUrkc/EDYgAEHgBGoiAiABKQIANwIAIAIgASkCCDcCCCABQ83MzD1DzczMPkMAAEA/QwAAgD8QNiAAQfAEaiICIAEpAgA3AgAgAiABKQIINwIIIAFDuB6FPkM9Chc/Q0jhej9DAACAPhA2IABBgAVqIgIgASkCADcCACACIAEpAgg3AgggAUO4HoU+Qz0KFz9DSOF6P0MfhSs/EDYgAEGQBWoiAiABKQIANwIAIAIgASkCCDcCCCABQ7gehT5DPQoXP0NI4Xo/QzMzcz8QNiAAQaAFaiICIAEpAgA3AgAgAiABKQIINwIIIAEgAyAHQ83MTD8QxwEgAEGwBWoiAyABKQIANwIAIAMgASkCCDcCCCAAQcAFaiICIAgpAgA3AgAgAiAIKQIINwIIIAEgBCAHQ5qZGT8QxwEgAEHQBWoiBCABKQIANwIAIAQgASkCCDcCCCABIAMgBkPNzEw/EMcBIABB4AVqIgIgASkCADcCACACIAEpAgg3AgggASAEIAZDzczMPhDHASAAQfAFaiICIAEpAgA3AgAgAiABKQIINwIIIAFD9igcP0P2KBw/Q/YoHD9DAACAPxA2IABBgAZqIgIgASkCADcCACACIAEpAgg3AgggAUMAAIA/Q/Yo3D5DMzOzPkMAAIA/EDYgAEGQBmoiAiABKQIANwIAIAIgASkCCDcCCCABQ2ZmZj9DMzMzP0MAAAAAQwAAgD8QNiAAQaAGaiICIAEpAgA3AgAgAiABKQIINwIIIAFDAACAP0OamRk/QwAAAABDAACAPxA2IABBsAZqIgIgASkCADcCACACIAEpAgg3AgggAUO4HoU+Qz0KFz9DSOF6P0MzM7M+EDYgAEHABmoiAiABKQIANwIAIAIgASkCCDcCCCABQwAAgD9DAACAP0MAAAAAQ2ZmZj8QNiAAQdAGaiICIAEpAgA3AgAgAiABKQIINwIIIAFDuB6FPkM9Chc/Q0jhej9DAACAPxA2IABB4AZqIgIgASkCADcCACACIAEpAgg3AgggAUMAAIA/QwAAgD9DAACAP0MzMzM/EDYgAEHwBmoiAiABKQIANwIAIAIgASkCCDcCCCABQ83MTD9DzcxMP0PNzEw/Q83MTD4QNiAAQYAHaiICIAEpAgA3AgAgAiABKQIINwIIIAFDzcxMP0PNzEw/Q83MTD9DMzOzPhA2IABBkAdqIgAgASkCADcCACAAIAEpAgg3AgggASQEC0sBA38gACgCBCABSARAIAFBFGwQUyECIABBCGoiAygCACIEBEAgAiAEIAAoAgBBFGwQRhogAygCABBBCyADIAI2AgAgACABNgIECwtLAQN/IAAoAgQgAUgEQCABQSRsEFMhAiAAQQhqIgMoAgAiBARAIAIgBCAAKAIAQSRsEEYaIAMoAgAQQQsgAyACNgIAIAAgATYCBAsLMgAgACAAKgIAqLI4AgAgACAAKgIEqLI4AgQgACAAKgIIqLI4AgggACAAKgIMqLI4AgwL4wQBDn8jBCEDIwRBEGokBCADIQEgAEEEaiIEEDogAEEUaiIFEDogAEEcaiIGEDogAEE0aiIHEDogAEHEAGoiCBA6IABBzABqIgkQOiAAQdQAaiIKEDogAEH8AGoiCxA6IABBhAFqIgwQOiAAQYwBaiINEDogAEGgB2ohDiAAQaABaiECA0AgAhD3ASACQRBqIgIgDkcNAAsgAEMAAIA/OAIAIAFDAAAAQUMAAABBEDIgBCABKQMANwIAIABDAADgQDgCDCAAQwAAgD84AhAgAUMAAABCQwAAAEIQMiAFIAEpAwA3AgAgAUMAAAAAQwAAAD8QMiAGIAEpAwA3AgAgAEMAAAAAOAIkIABDAACAPzgCKCAAQwAAAAA4AiwgAEMAAIA/OAIwIAFDAACAQEMAAEBAEDIgByABKQMANwIAIABDAAAAADgCPCAAQUBrQwAAAAA4AgAgAUMAAABBQwAAgEAQMiAIIAEpAwA3AgAgAUMAAIBAQwAAgEAQMiAJIAEpAwA3AgAgAUMAAAAAQwAAAAAQMiAKIAEpAwA3AgAgAEMAAKhBOAJcIABDAADAQDgCYCAAQwAAgEE4AmQgAEMAABBBOAJoIABDAAAgQTgCbCAAQwAAAAA4AnAgAEMAAIBAOAJ0IABDAAAAADgCeCABQwAAAD9DAAAAPxAyIAsgASkDADcCACABQwAAmEFDAACYQRAyIAwgASkDADcCACABQwAAQEBDAABAQBAyIA0gASkDADcCACAAQwAAgD84ApQBIABBAToAmAEgAEEBOgCZASAAQwAAoD84ApwBIAAQsAYgAyQEC44BAQR/QZipBCgCACIBQdw1aiIDKAIAIgIoAghBgICAwABxRQRAAkACQCAAIAIQ6wkiBGpBgYCAgHggABDiBCICBEAgAiEADAEFIABBAEgEfyABQeAyaigCAEF/agVBAAsgBCAAEOIEIgANAQsMAQsgAUHgNWogADYCACADIAA2AgALIAFB8DVqQQA6AAALC+cCAgR/AX0jBCECIwRBMGokBCACQRBqIgNDAACAP0MAAIA/EDIgAkEYaiIEIABB7ANqIAMQQCACQwAAgD9DAACAPxAyIAJBCGoiBSAAQfQDaiACEDUgAkEgaiIDIAQgBRBDIAMgARCNAkUEQAJAQZipBCgCACEEIAAsAHgEQAJAIAEqAgAiBiADKgIAXQRAIAAgBiAAKgIMkyAAKgJYkiAEQdQqaioCAJM4AmAgAEMAAAAAOAJoDAELIAEqAggiBiADKgIIYARAIAAgBiAAKgIMkyAAKgJYkiAEQdQqaioCAJI4AmAgAEMAAIA/OAJoCwsLIAEqAgQiBiADKgIEXQRAIAAgBiAAKgIQkyAAKgJckiAEQdgqaioCAJM4AmQgAEMAAAAAOAJsDAELIAEqAgwiBiADKgIMYARAIAAgBiAAKgIQkyAAKgJckiAEQdgqaioCAJI4AmQgAEMAAIA/OAJsCwsLIAIkBAuKAQEDfyAAIAFqIgFBf2oiBCAASwRAAkAgA0UhBSABQX9qIQYgACEBA0AgAiADSSAFckUNASACLgEAIgBFDQEgAkECaiECIABB//8DcUGAAUgEfyABIAA6AAAgAUEBagUgASAGIAFrIABB//8DcRDmCSABagsiASAESQ0ACwsFIAAhAQsgAUEAOgAAC2IBAn9BmKkEKAIAIgFB9DVqIAA2AgAgAUGgNWoiAigCACEBAkACQCAABEAgASEADAEFIAIgARCJBCIANgIAIAAoAoAGIgFFDQEgAUEAIABBiAZqEKoECwwBCyAAQQEQiwQLCx0AIAEgApMgACADk0MAAAAAIAMgAF0bIAEgAl0bC8cFAgV/C31BmKkEKAIAIgJBlDNqKAIAIQQgAkH0NWoiBigCACAEKAK0AkYEQAJAIAJB2DVqIgUgBSgCAEEBajYCACAEQcwDaiEDIAQoAuwFIAJBoDVqIgUoAgBGBEAgAyABEI0CRQRAQQAhAQwCCyABIAMQ8wkLIAJBrDZqKAIAIAEgAxDxCSABKgIAIgkgASoCCCILIAJByDVqKgIAIgwgAkHQNWoqAgAiBxC5BiIKQwAAekSVQwAAgD9DAACAvyAKQwAAAABeG5IgCiABKgIEIhAgASoCDCIRQ83MTD4QfyAQIBFDzcxMPxB/IAJBzDVqKgIAIg0gAkHUNWoqAgAiCEPNzEw+EH8gDSAIQ83MTD8QfxC5BiIPQwAAAABcIgEgCkMAAAAAXHEbIgqLIA+LkiEOIAkgC5IgDCAHkpMiCYsgECARkiANIAiSkyIHi5IhCCABIApDAAAAAFxyBH8gDiELIAoiDCAPIgcQywYFIAlDAAAAAFwgB0MAAAAAXHIEfyAJIQwgCCELIAkgBxDLBgVDAAAAACEMQwAAAAAhB0MAAAAAIQsgBCgCjAIgAkGkNWooAgBPCwshASAAKgIIIQ0gAkGkNmooAgAiAyABRgR/An8gDiANXQRAIAAgDjgCCCAAIAg4AgxBASEBDAMLIA4gDVsEfyAIIAAqAgwiCV0EQCAAIAg4AgxBAQwCC0EBQQAgDyAKIAFBfnFBAkYbQwAAAABdG0EAIAggCVsbBUEACwsFQQALIQEgDUP//39/WwRAIAsgACoCEF0EQCAGKAIAQQFGBEAgBSgCACgCCEGAgICAAXFFBEAgA0UgDEMAAAAAXXFFBEAgA0EBRiAMQwAAAABecUUEQCADQQJGIAdDAAAAAF1xRQRAIANBA0YgB0MAAAAAXnFFDQcLCwsgACALOAIQQQEhAQsLCwsLBUEAIQELIAEL2wEDBX8BfgF9IwQhBSMEQTBqJAQgBUEYaiIIIAEgAEEMaiIGIAIQngIgBUEoaiIHIAYgAEEUahA1IAVBIGoiCSAHIAEgAhCeAiAFQRBqIgYgCSAIEEAgBSAGKQMANwMIIAcgBSkCCDcCACAFIgEgACAHEPICIAMgCCkDACIKNwIAIAIqAgBDAAAAAFsEQCADIAqnviABKgIAIAYqAgCTkzgCAAsgCkIgiKe+IQsgAioCBEMAAAAAWwRAIAMgCyABKgIEIAYqAgSTkzgCBAsgBCABKQMANwIAIAUkBAsKACAAQfgpahBnCw0AQZipBCgCAEHcN2oLvAkCGn8EfCMEIQUjBEHwA2okBCAFQagDaiEJIAVB+AJqIQogBUHwAmohESAFQegCaiEGIAVB4ANqIQIgBUEgaiELIAUhDiAFQdgDaiESIAEoAiwhBCABQRhqIhMoAgAhByABKAIMIQ0gASgCACEIIAVB0AJqIgNBjo4CNgIAIAMgBEGargQgBBs2AgQgAyAHNgIIIAMgDTYCDCADIAg2AhAgAUGWmgIgAxDSAiEEIAEQPCgC9ARGBEBDAAAAAEMAAIC/EGsgAiIAEPcBIABDAACAPzgCACAAQ8rIyD44AgQgAEPKyMg+OAIIIABDAACAPzgCDCADIAApAgA3AgAgAyAAKQIINwIIIANBu5oCIAYQgwYgBARAELcBCwUQvQYhCCAABEBBABCLAgRAIAMgAEEMaiICIABBFGoQNSAIIAIgA0H//4N4QwAAAABBD0MAAIA/EKQBCwsgBARAIAEoAggiACABEPsDSQRAIA5BGGohFCALQawCaiEVIANBCGohFiALQQhqIRdBACEEA0ACfyAEIRsgACgCGCICBEAgACgCHCEEIBEgAjYCACARIAQ2AgRBz5oCIBEQoAEFIAAoAgAEQCABKAIMQQBKBH8gASgCFAVBAAshDwJ/An8gACABKAIIa0EFdSEZQaqbAkGymwIgASgCDEEAShshBiAAKAIUIQcgAEEEaiINKgIAuyEcIAAqAgi7IR0gACoCDLshHiAAKgIQuyEfIAogACgCADYCACAKIAY2AgQgCiAHNgIIIAogHDkDECAKIB05AxggCiAeOQMgIAogHzkDKCAZC0HpmgIgChDSAiEaQaKMAiwAAARAQQAQiwIEQCADIA0QxgIgCxBmIAAoAgBBAEoEQCAPRSEHIAQhAgNAIAsgEyAHBH8gAgUgAkEBdCAPai8BAAsQ+gMQ5QkgAkEBaiICIAAoAgAgBGpIDQALCyADELMGIAggAyAWQf//g3hDAAAAAEEPQwAAgD8QpAEgCxCzBiAIIAsgF0H/gXxDAAAAAEEPQwAAgD8QpAELCyAaCwRAIAMgACgCAEEDbkMAAIC/EKUDIAMQ1QMEQCAPRSEYA0AgAygCECICIAMoAhRIBEAgAiENIAQgAkEDbGohBwNAIA4hAgNAIAIQOiACQQhqIgIgFEcNAAsgCyEGQQAhECAHIQIDQCAQQQN0IA5qIBMgGAR/IAIFIAJBAXQgD2ovAQALEPoDIgwpAgA3AwAgDCoCALshHCAMKgIEuyEdIAwqAgi7IR4gDCoCDLshHyAMKAIQIQwgCUH4mwJB9JsCIBAbNgIAIAkgAjYCBCAJIBw5AwggCSAdOQMQIAkgHjkDGCAJIB85AyAgCSAMNgIoIAYgFSAGa0G+mwIgCRBzIAZqIQYgAkEBaiECIBBBAWoiEEEDRw0ACyASQwAAAABDAAAAABAyIAtBAEEAIBIQrwEaQQAQiwIEQCAIIAgoAiQiAkF+cTYCJCAIIA5BA0H//4N4QQFDAACAPxDyAyAIIAI2AiQLIAdBA2ohByANQQFqIg0gAygCFEgNAAsLIAMQ1QMNAAsLELcBCwsLIBsLIAAoAgBqIQQgAEEgaiIAIAEQ+wNJDQALCxC3AQsLIAUkBAtqAQJ/IwQhAiMEQRBqJAQgACgCACEDIAIgATYCACACIAM2AgQgAUHPlAIgAhDUAgRAIAAoAgBBAEoEQEEAIQEDQCAAIAEQUCgCAEGThgIQ4QQgAUEBaiIBIAAoAgBIDQALCxC3AQsgAiQEC6sBAQh/IwQhAiMEQRBqJARBmKkEKAIAIgNBpNgAakMAAAAAOAIAIANBqNgAaiIBQQAQkQIgAkEAOgAAIAEgAhD/CSADQbTYAGoiBCgCAEEASgRAA0AgBCAFEJwBIgYoAhAhByADIAYgASAHQf8AcUGUCWoRBwAgBUEBaiIFIAQoAgBIDQALCyAABEAgACABEOkENgIACyABKAIIIgBBmK4EIAAbIQggAiQEIAgLvwMBBn9BmKkEKAIAIQYgAUUEQCAAEFwhAQsgAUEBahBTIgcgAWohBSAHIAAgARBGGiAFQQA6AAAgAUEASgRAQQAhAUEAIQAgByEDA0AgAyECA0ACQAJAIAIsAAAiBEEKaw4EAAEBAAELIAJBAWohAgwBCwsgAiAFSQRAAkAgAiEDA0ACQCAEQRh0QRh1QQprDgQCAAACAAsgA0EBaiIDIAVJBEAgAywAACEEDAELCwsFIAIhAwsgA0EAOgAAAkACQAJAIAIsAABBO2siBARAIARBIEYEQAwCBQwDCwALDAILIAMgAk0NACADQX9qIgQsAABB3QBHDQAgBEEAOgAAIAJBAWoiACAEQd0AENAGIgEEQCABQQFqIARB2wAQ0AYiAgRAIAFBADoAACACQQFqIQEFIAAhAUGThgIhAAsFIAAhAUGThgIhAAsgABCBCiIABH8gACgCCCECIAYgACABIAJBP3FBwgJqEQUABUEAIQBBAAshAQwBCyAAQQBHIAFBAEdxBEAgACgCDCEEIAYgACABIAIgBEEfcUGoCmoRBgALCyADQQFqIgMgBUkNAAsLIAcQQSAGQaDYAGpBAToAAAtYAQJ/IwQhAiMEQSBqJARBmKkEKAIAQcDYAGohASACEIIKIAEgAhCABCABKAIIIAEoAgBBf2pBHGxqIgEgABDaBjYCACABIABBAEEAELsBNgIEIAIkBCABC10BA39BmKkEKAIAIgFBzNgAaiICLAAARQRAIAFBlDNqKAIAIQMgAUHQ2ABqQQA2AgAgAkEBOgAAIAFB4NgAaiADKAKEAjYCACAAQX9KBEAgAUHk2ABqIAA2AgALCwt+AQN/QZipBCgCACICQczYAGoiAywAAEUEQAJAIAJBlDNqKAIAIQQgAUUEQCACKAIkIgFFDQELIAJB0NgAaiABQduLAhDqBCIBNgIAIAEEQCADQQE6AAAgAkHg2ABqIAQoAoQCNgIAIABBf0oEQCACQeTYAGogADYCAAsLCwsLYgEDf0GYqQQoAgAiAUHM2ABqIgIsAABFBEAgAUGUM2ooAgAhAyABQdDYAGpBzIECKAIANgIAIAJBAToAACABQeDYAGogAygChAI2AgAgAEF/SgRAIAFB5NgAaiAANgIACwsLEgBBmKkEKAIAQdU4akEAOgAAC8UBAQR/QZipBCgCACIBQdQ4aiwAAAR/IAFBlDNqKAIAIgAoApACIgJBAXEEfyABQZgzaigCACIDBH8gACgC8AUgAygC8AVGBH8gAEGkAmogAEGUAmogAkECcRshAyAAKAKMAiICRQRAIAAgAxC0BSECCyABQew4aigCACACRgR/QQAFIAFBnDlqIgAgAykCADcCACAAIAMpAgg3AgggAUGsOWogAjYCACABQdU4akEBOgAAQQELBUEACwVBAAsFQQALBUEACws7AQF/QZipBCgCACIAQdg4aigCAEEBcUUEQBCEBAsgAEH0OGooAgBBf0YEQBCNBQsgAEHVOGpBADoAAAuZBAEGf0GYqQQoAgAiAUGUM2oiBigCACECAn8CQCAAQRBxBH9BvosCQQBBABC7ASEDQQAhAgwBBQJ/IAIoAowCIgNFIgRFBEBBACABQbQzaigCACADRw0BGgsgASwA+AEEfwJAAkAgBARAQQAgAEEIcUUNBBogAigCkAJBAXEiBARAIAIgAiACQZQCahC0BSIDNgKMAiADEIgDIAEsAOAHBEAgAyACELUBIAIQdAsFQQAgAUG0M2ooAgBFDQUaQQAgAUHYM2ooAgAgAkcNBRogAiACIAJBlAJqELQFIgM2AowCCyABQbQzaigCACIFIANGBEAgAUHFM2ogBDoAAAUgBSEEDAILBSABQcUzakEAOgAAIAFBtDNqKAIAIQQMAQsMAQsgAyAERgR/IAQFQQAMAwshAwsgAkHAA2oQcCgCACEEQQBDAACAvxCQBA0DQQAFQQALCwsMAQsgAUHUOGoiBSwAAEUEQBCNBSABQew4aiADNgIAIAFB8DhqIAQ2AgAgBUEBOgAAIAFB2DhqIAA2AgAgAUHgOGpBADYCAAsgAUHcOGogAUHIMmooAgA2AgAgAUHVOGpBAToAACAAQQFxRQRAEPEEIAUsAAAEQCABQbw5aigCAARAIAFBsDlqKAIAQYAgcQRAIAYoAgAiA0EBOgB/IANBATYCpAELCwsLIABBEnFFBEAgAiACKAKQAkF+cTYCkAILQQELC0gAIABCADcCFCAAQgA3AhwgAEIANwIkIABCADcCLCAAQQA6ADQgAEIANwIAIABCADcCCCAAQX82AhAgAEEAOgA2IABBADoANQsfACAAQwAAAABeQQNBAiABQwAAAABeGyAAiyABi14bC28CAn8CfSMEIQEjBEEQaiQEQZipBCgCACICQZwraioCACEDIAJBoCtqKgIAIQQgABCMBCABIAOMQwAAAAAgABB2IANDAAAAQJReGyAEjEMAAAAAIAAQjQEgBEMAAABAlF4bEDIgACABENACIAEkBAuzAQEFf0GYqQQoAgAiA0GoNGoiBCgCACIBQX9qIQAgAUEBTgRAIAEgA0GcNGoiAigCAEwEQCAEIAAQeigCACACIAAQeigCAEYEQCABQQFKBEACQAN/IAIgABB6KAIERQ0BIAIgABB6KAIEKAIIQYCAgIABcUUNASAAQX9qIQEgAEEBSgR/IAEhAAwBBSABCwshAAsLIABBARDrAiADQaA1aigCACIABEAgAEEBOgDEAgsLCwsLNgEBfyAAIAFLBEACQAN/IABBfmoiAi4BAEEKRg0BIAIgAUsEfyACIQAMAQUgAgsLIQALCyAAC00BAn9BmKkEKAIAIQIQPCEBIABDAAAAAFsEQCACQewqaioCACEACyABIAEqArADIACTIgA4ArADIAEgACABKgIMkiABKgK4A5I4AsgBCxQAIAAgAkEYdEEYdSABIABrEOkBCxQAQZipBCgCAEGUM2ooAgAgABBeCz8BAX8QPCIBKgLUASABKgIQkyABKgL4ASAAlCAAQwAAAL+SQZipBCgCAEHYKmoqAgCUQwAAAECUkpIgABDTBgscAQF/EDwiAiACKgJcIACSqLI4AmQgAiABOAJsCxMAQZipBCgCAEGUM2ooAgAQjQQLDQAgABBgKQLIATcCAAsuAQF/EDwiASoCECABKgJckyAAkiEAIAEgADgCzAEgASABKgLkASAAEDk4AuQBCxUAIABBmKkEKAIAQbwxaikCADcCAAsTACAAEGAiAEGUBGogAEEMahBACyEBAX9BmKkEKAIAIgFBjDVqIAA4AgAgAUHMNGpBATYCAAsaAQJ/IAAQXEEBaiIBEFMiAiAAIAEQRhogAgsnACAALAB6BH8gACAAKALwBUYEfyAAKAIIQYCAIHFFBUEACwVBAAsLVQEBfyAAKAIAIgIgACgCBEYEQCAAIAAgAkEBahBYEOAJIAAoAgAhAgsgACgCCCACQQxsaiICIAEpAgA3AgAgAiABKAIINgIIIAAgACgCAEEBajYCAAtfAQF/IAAoAgAiAiAAKAIERgRAIAAgACACQQFqEFgQsQYgACgCACECCyAAKAIIIAJBFGxqIgIgASkCADcCACACIAEpAgg3AgggAiABKAIQNgIQIAAgACgCAEEBajYCAAsKACAAQQRqEPcBCysBAn8QPCIBQYwDaiIAEIACIAEgABB+BH1DAACAvwUgABBwKgIACzgC8AILLgECfyMEIQEjBEEQaiQEIAEgADgCABA8IgIgADgC8AIgAkGMA2ogARB4IAEkBAsFABDuAgsMAEEBIABBAXMQ7wILRQECf0GYqQQoAgAiAEGUM2ooAgAoAvQEEOUCIABBkDRqIgAiASABKAIAQX9qNgIAIAAQfgR/EJMFBSAAEHAoAgALEJQFC18BA38jBCECIwRBEGokBCACIgEgADYCAEGYqQQoAgAhAyAARQRAIAEQkwUiADYCAAsgABCUBSADQZA0aiABEHggA0GUM2ooAgAoAvQEIAEoAgAoAkQoAggQmAIgAiQEC5sBAQV/IwQhAiMEQRBqJAQgAiEAQZipBCgCACIBQczYAGoiAywAAARAQd6LAiAAEKYDIAFB0NgAaiIEKAIAIgAEQCAAQcyBAigCAEYEfyAAEIsFBSAAEMMCCxogBEEANgIACyABQdTYAGoiABDpBEEBSgRAIAAiASgCCAR/IAEoAggFQZiuBAsQhAMgABBPCyADQQA6AAALIAIkBAudBQIPfwR9IwQhBiMEQTBqJARBmKkEKAIAIQUQPCIBKAK8AyEAEIoBEOoBIAEoAvQEEKkGIAAgACoCICABKgLMARA5IhA4AiAgASAQOALMASAAKAIEIgJBEHFFBEAgASAAKAIoNgLgAQsgBkEgaiEJIAZBGGohAyAGQRBqIQcgBkEIaiEKIAYhCCAAIAJBAXEEf0EABSABLAB/BH9BAAUgACoCJCERIAAoAhBBAUoEfyARQwAAgD+SIRIgBUHQOGohCyAAQSxqIQxBfyEFQQEhAgNAIAEqAgwgAhD/AZIhDyAAKAIAIAJqIQQgAyAPQwAAgMCSIBEQMiAHIA9DAACAQJIgEBAyIAkgAyAHEEMgBBC0AiAJIAQQrQVFBEAgA0EAOgAAIAdBADoAAAJ/AkAgACgCBEECcQR/DAEFAn8gCSAEIAMgB0EAEJEBGiAHLAAAIgQgAywAAHJB/wFxBEAgC0EENgIACyAEBEAgBSACIAwgAhBVKAIIQQJxGyEFQR0gBywAAA0BGgsgAywAAEUNAkEcCwsMAQtBGwtDAACAPxBCIQQCfyABKAL0BCEOIAogD6iyIg8gEiABKgLQAxA5EDIgCCAPIBAgASoC2AMQRRAyIA4LIAogCCAEQwAAgD8QxQELIAJBAWoiAiAAKAIQIgRIDQALIAVBf0YEf0EABSAALAAJQQBHIARBAEhyRQRAIABBLGohA0EAIQIDQCADIAIQVSgCACEIIAMgAhBVIAg2AgQgAkEBaiEIIAIgACgCEEgEQCAIIQIMAQsLCyAAQQE6AAkgBSAAIAUQhQoQ7QRBAQsFQQALCws6AAkgAUEANgK8AyABQwAAAAA4ArgDIAEgASoCDCABKgKwA5JDAAAAAJKosjgCyAEgBiQECxAAIAAgASoCCCABKgIEEDILHwAgACgCBCABSARAIAAgACABEFgQ4QkLIAAgATYCAAuPAgICfwF9IwQhBSMEQSBqJAQgBSEGIAVBCGogARCfAiAEQwAAAABbBEAgBkMAAIA/QwAAgD8QMiAFIAUqAhAgBioCAJM4AhAgBSAFKgIUIAYqAgSTOAIUCwJAAkACQAJAAkACQCACDgQAAQIDBAsgACAFKgIIIAOSIAUqAgwiByAEkyAFKgIQIAOTIAcgBJIQXQwECyAAIAUqAhAiByAEkyAFKgIMIAOSIAcgBJIgBSoCFCADkxBdDAMLIAAgBSoCCCADkiAFKgIUIgcgBJMgBSoCECADkyAHIASSEF0MAgsgACAFKgIIIgcgBJMgBSoCDCADkiAHIASSIAUqAhQgA5MQXQwBCyAAEGYLIAUkBAvNAgMCfwF+A30jBCEDIwRBEGokBEGYqQQoAgAhBCAAIAEpAlg3AgAgASoCYCIGQ///f39dBEAgACAGIAEqAmggASoCHCABKgJwk5STOAIACyABKgJkIgZD//9/f10EQCACIAEqAmwiB0MAAAAAX3EEQCAGIAFBQGsqAgBfBEBDAAAAACEGCwsgAiAHQwAAgD9gcQRAIAYgASoCMCIIIAFBQGsqAgCTIARB2CpqKgIAkmAEQCAIIQYLCyAAIAZDAACAPyAHkyABEL8BIAEQ0QGSlJMgByABKgIgIAEqAnSTlJM4AgQLIANBCGoiAkMAAAAAQwAAAAAQMiADIAAgAhCmASAAIAMpAwAiBTcCACAFp74hBiAFQiCIp74hCCABLAB9RQRAIAEsAH9FBEAgACAGIAEQgAUQRTgCACAAIAggARCNBBBFOAIECwsgAyQECxMAIAAoAgggACgCAEF/akEkbGoLcwEBfyAAKAIAIgIgACgCBEYEQCAAIAAgAkEBahBYELIGIAAoAgAhAgsgACgCCCACQSRsaiICIAEpAgA3AgAgAiABKQIINwIIIAIgASkCEDcCECACIAEpAhg3AhggAiABKAIgNgIgIAAgACgCAEEBajYCAAtmAQF/QZipBCgCACECIAEEQCAAIAAoAsADOwGkAyAAIAAoApgDOwGmAyAAIAJBqDRqKAIAOwGoAyAAIAJB+DNqKAIAOwGqAyAAIAJBhDRqKAIAOwGsAyAAIAJBkDRqKAIAOwGuAwsLzgIBCX8jBCEDIwRBMGokBCADQRBqIQUgA0EIaiEGIANBIGohBCADQShqIQggA0EYaiEJIAMhCkGYqQQoAgAhByABKAIIIgtBgICAEHEEQCAAIAIpAgA3AgAFIAYgB0GkKmopAgA3AwAgC0GAgICgAXEEQCAEQwAAgEBDAACAQBAyIAUgBiAEELIDIAYgBSkDADcDAAsgCSAHQZwrakMAAABAEFEgBCAHQRBqIAkQQCAIIAYgBBCmASAFIAgpAgA3AgAgACACIAYgBRDqAiAKIAApAgA3AwAgBSAKKQIANwIAIAQgASAFEPICIAQqAgAgAioCAF0EQCABKAIIQYgQcUGAEEYEQCAAIAdB9CpqKgIAIAAqAgSSOAIECwsgBCoCBCACKgIEXQRAIAEoAghBCHFFBEAgACAHQfQqaioCACAAKgIAkjgCAAsLCyADJAQLwwECAn8BfSMEIQMjBEEQaiQEIAMhAiABLAB9BEAgACABKQIsNwIABQJAIAEsAIEBBEAgASgCqAFFBEAgASgCpAFBAEoEQCAAIAEpAiw3AgAMAwsLCyACEDogASoCNCIEQwAAAABbBEAgASoC4AEgASoCDJMgASoCWJIhBAsgAiAEqLI4AgAgASoCOCIEQwAAAABbBEAgASoC5AEgASoCEJMgASoCXJIhBAsgAiAEqLI4AgQgACACIAFBPGoQNQsLIAMkBAsPAEEAIAAgASACIAMQ8QYLwwMCCX8CfSMEIQcjBEGwAmokBEGYqQQoAgAiCEGUM2oiCygCACIKKAIIIQwgB0GgAmoiBhDwAiAHQZgCaiIFIAIQmQEgBSoCBCEOIAUqAgAiD0MAAAAAXwRAIAUgDyAGKgIAkkMAAIBAEDk4AgALIA5DAAAAAF8EQCAFIA4gBioCBJJDAACAQBA5OAIECyAHQZACaiEJIAdBgAJqIQYgByECIAVBABCaBCAKKAIAIQUgAARAIAYgBTYCACAGIAA2AgQgBiABNgIIIAJBgAJBqJMCIAYQcxoFIAkgBTYCACAJIAE2AgQgAkGAAkGzkwIgCRBzGgsgCEG4KmoiACgCACEFIANFBEAgAEMAAAAAOAIACyACQQAgBCAMQQRxckGDgoAIchDrASENIAAgBTYCACALKAIAIgAgATYCVCAAIA9DAAAAAFtBAkEAIA5DAAAAAFsbcjYCnAEgAC4BhAFBAUYEQCAKIAApAgw3AsgBCyAEQYCAgARxRSABIAhBqDVqKAIARnEEQAJAIAAoArwCRQRAIAAsAMUCRQ0BCyAAEHQgAEEAEIsEIAFBAWogABC1ASAIQeAzakECNgIACwsgByQEIA0LFQEBfxBgIgBBzANqIABBlAJqEMsCCyYBAX9BmKkEKAIAIgBBoDNqKAIABH9BAQUgAEGoM2ooAgBBAEcLCzoBAn9BmKkEKAIAIgBBuDNqKAIAIgEgAEGUM2ooAgAoAowCRyABRXIEf0EABSABIABBtDNqKAIARwsLBwBBzgAQAwsHAEHNABADCwcAQcwAEAMLBwBBygAQAwsHAEHJABADCwYAQT4QAwsGAEE9EAMLBgBBNxADCwYAQTUQAwsGAEEvEAMLBgBBKhADCwYAQSMQAwsGAEEiEAMLCABBGRADQQALCwBBBRADQwAAAAALOAIBfwF9IABBAEgEf0EABUGYqQQoAgAiA0HYCGogAEECdGoqAgAiBCAEIAMqAhiTIAEgAhC3AwsLYAEBfSAAKgIAIAEqAgAiAl4EQCAAIAI4AgALIAAqAgQgASoCBCICXgRAIAAgAjgCBAsgACoCCCABKgIIIgJdBEAgACACOAIICyAAKgIMIAEqAgwiAl0EQCAAIAI4AgwLC1MBA38gACgCBCIFQQh1IQQgBUEBcQRAIAIoAgAgBGooAgAhBAsgACgCACIAKAIAKAIcIQYgACABIAIgBGogA0ECIAVBAnEbIAZBH3FBqApqEQYAC08BA38jBCECIwRBEGokBCACIgMgATYCACABEH5FBEACQCABEP4DIgQoAgBFBEAgBCgCGEUEQCABEIACIAEQfg0CCwsgACADEHgLCyACJAQLCwAgABCJByAAEFQLEwAgAEHEhAI2AgAgAEEEahDACwsyAQF/QZipBCgCACEBIAAoAghBgICAEHEEQCABQcw3aiAAEOQEBSABQcA3aiAAEOQECwsTACAAQcSEAjYCACAAQQRqENALC7UMAQd/IAAgAWohBSAAKAIEIgNBAXFFBEACQCAAKAIAIQIgA0EDcUUEQA8LIAEgAmohASAAIAJrIgBBsKoEKAIARgRAIAUoAgQiAkEDcUEDRw0BQaSqBCABNgIAIAUgAkF+cTYCBCAAIAFBAXI2AgQgBSABNgIADwsgAkEDdiEEIAJBgAJJBEAgACgCCCICIAAoAgwiA0YEQEGcqgRBnKoEKAIAQQEgBHRBf3NxNgIABSACIAM2AgwgAyACNgIICwwBCyAAKAIYIQcgACgCDCICIABGBEACQCAAQRBqIgNBBGoiBCgCACICBEAgBCEDBSADKAIAIgJFBEBBACECDAILCwNAAkAgAkEUaiIEKAIAIgZFBEAgAkEQaiIEKAIAIgZFDQELIAQhAyAGIQIMAQsLIANBADYCAAsFIAAoAggiAyACNgIMIAIgAzYCCAsgBwRAIAAoAhwiA0ECdEHMrARqIgQoAgAgAEYEQCAEIAI2AgAgAkUEQEGgqgRBoKoEKAIAQQEgA3RBf3NxNgIADAMLBSAHQRBqIgMgB0EUaiADKAIAIABGGyACNgIAIAJFDQILIAIgBzYCGCAAKAIQIgMEQCACIAM2AhAgAyACNgIYCyAAKAIUIgMEQCACIAM2AhQgAyACNgIYCwsLCyAFKAIEIgdBAnEEQCAFIAdBfnE2AgQgACABQQFyNgIEIAAgAWogATYCACABIQMFQbSqBCgCACAFRgRAQaiqBEGoqgQoAgAgAWoiATYCAEG0qgQgADYCACAAIAFBAXI2AgQgAEGwqgQoAgBHBEAPC0GwqgRBADYCAEGkqgRBADYCAA8LQbCqBCgCACAFRgRAQaSqBEGkqgQoAgAgAWoiATYCAEGwqgQgADYCACAAIAFBAXI2AgQgACABaiABNgIADwsgB0EDdiEEIAdBgAJJBEAgBSgCCCICIAUoAgwiA0YEQEGcqgRBnKoEKAIAQQEgBHRBf3NxNgIABSACIAM2AgwgAyACNgIICwUCQCAFKAIYIQggBSgCDCICIAVGBEACQCAFQRBqIgNBBGoiBCgCACICBEAgBCEDBSADKAIAIgJFBEBBACECDAILCwNAAkAgAkEUaiIEKAIAIgZFBEAgAkEQaiIEKAIAIgZFDQELIAQhAyAGIQIMAQsLIANBADYCAAsFIAUoAggiAyACNgIMIAIgAzYCCAsgCARAIAUoAhwiA0ECdEHMrARqIgQoAgAgBUYEQCAEIAI2AgAgAkUEQEGgqgRBoKoEKAIAQQEgA3RBf3NxNgIADAMLBSAIQRBqIgMgCEEUaiADKAIAIAVGGyACNgIAIAJFDQILIAIgCDYCGCAFKAIQIgMEQCACIAM2AhAgAyACNgIYCyAFKAIUIgMEQCACIAM2AhQgAyACNgIYCwsLCyAAIAdBeHEgAWoiA0EBcjYCBCAAIANqIAM2AgBBsKoEKAIAIABGBEBBpKoEIAM2AgAPCwsgA0EDdiECIANBgAJJBEAgAkEDdEHEqgRqIQFBnKoEKAIAIgNBASACdCICcQR/IAFBCGoiAiEDIAIoAgAFQZyqBCACIANyNgIAIAFBCGohAyABCyECIAMgADYCACACIAA2AgwgACACNgIIIAAgATYCDA8LIANBCHYiAQR/IANB////B0sEf0EfBSABIAFBgP4/akEQdkEIcSIEdCICQYDgH2pBEHZBBHEhASACIAF0IgZBgIAPakEQdkECcSECIANBDiABIARyIAJyayAGIAJ0QQ92aiIBQQdqdkEBcSABQQF0cgsFQQALIgJBAnRBzKwEaiEBIAAgAjYCHCAAQQA2AhQgAEEANgIQAkBBoKoEKAIAIgRBASACdCIGcUUEQEGgqgQgBCAGcjYCACABIAA2AgAMAQsgASgCACIBKAIEQXhxIANGBEAgASECBQJAIANBAEEZIAJBAXZrIAJBH0YbdCEEA0AgAUEQaiAEQR92QQJ0aiIGKAIAIgIEQCAEQQF0IQQgAigCBEF4cSADRg0CIAIhAQwBCwsgBiAANgIADAILCyACKAIIIgEgADYCDCACIAA2AgggACABNgIIIAAgAjYCDCAAQQA2AhgPCyAAIAE2AhggACAANgIMIAAgADYCCAuFAQECfyAARQRAIAEQyQEPCyABQb9/SwRAQYiqBEEMNgIAQQAPCyAAQXhqQRAgAUELakF4cSABQQtJGxDSCyICBEAgAkEIag8LIAEQyQEiAkUEQEEADwsgAiAAIABBfGooAgAiA0F4cUEEQQggA0EDcRtrIgMgASADIAFJGxBGGiAAEFQgAgvkAgICfwJ9IAC8IgFBH3YhAiABQf////8HcSIBQf///+MESwRAIABD2g/Jv0PaD8k/IAIbIAFBgICA/AdLGw8LIAFBgICA9wNJBEAgAUGAgIDMA0kEfyAADwVBfwshAQUgAIshACABQYCA4PwDSQR9IAFBgIDA+QNJBH1BACEBIABDAAAAQJRDAACAv5IgAEMAAABAkpUFQQEhASAAQwAAgL+SIABDAACAP5KVCwUgAUGAgPCABEkEfUECIQEgAEMAAMC/kiAAQwAAwD+UQwAAgD+SlQVBAyEBQwAAgL8gAJULCyEACyAAIACUIgQgBJQhAyAEIAMgA0MlrHw9lEMN9RE+kpRDqaqqPpKUIQQgA0OYyky+IANDRxLaPZSTlCEDIAFBAEgEfSAAIAAgAyAEkpSTBSABQQJ0QYDpAWoqAgAgACADIASSlCABQQJ0QZDpAWoqAgCTIACTkyIAIACMIAJFGwsLYwIBfwJ8IwQhASMEQZABaiQEIAFBAEGQARBqGiABIAA2AgQgAUF/NgIIIAEgADYCLCABQX82AkwgAUIAEMEBIAFBAUEBEJoHIQMgASkDeCABKAIEIAEoAghrrHwaIAEkBCADC0wBAX8gASgCACECIAEgACgCADYCACAAIAI2AgAgASgCBCECIAEgACgCBDYCBCAAIAI2AgQgASgCCCECIAEgACgCCDYCCCAAIAI2AggLDwAgACgCTBogACABEOELC40BAQR/IwQhBCMEQRBqJAQgBCICIAE2AgAgACACEHggAigCACIBLAB6BEACQCABQdACaiIBKAIAIgNBAUoEQCABKAIIIANBBEECEMQCBSADQQFHDQELQQAhAQNAIAIoAgBB0AJqIAEQUCgCACIFLAB6BEAgACAFEJIHCyABQQFqIgEgA0cNAAsLCyAEJAQLUgAgAARAAkACQAJAAkACQAJAIAFBfmsOBgABAgMFBAULIAAgAjwAAAwECyAAIAI9AQAMAwsgACACPgIADAILIAAgAj4CAAwBCyAAIAI3AwALCwuOAQEEfyMEIQEjBEEQaiQEIAEiAkEKOgAAAkACQCAAKAIQIgMNACAAEJ8HRQRAIAAoAhAhAwwBCwwBCyAAKAIUIgQgA0kEQCAALABLQQpHBEAgACAEQQFqNgIUIARBCjoAAAwCCwsgACACQQEgACgCJEE/cUHCAmoRBQBBAUYEfyACLQAABUF/CxoLIAEkBAvvAQIHfwJ8IwQhAyMEQRBqJAQgA0EIaiEEIAMhBSAAvCIGQf////8HcSICQdufpO4ESQR/IAC7IglEg8jJbTBf5D+iRAAAAAAAADhDoEQAAAAAAAA4w6AiCqohByABIAkgCkQAAABQ+yH5P6KhIApEY2IaYbQQUT6ioTkDACAHBQJ/IAJB////+wdLBEAgASAAIACTuzkDAEEADAELIAQgAiACQRd2Qep+aiICQRd0a767OQMAIAQgBSACEOwLIQIgBSsDACEJIAZBAEgEfyABIAmaOQMAQQAgAmsFIAEgCTkDACACCwsLIQggAyQEIAgLCQAgACABEIYCCwkAIAAgARDwCwsiACAAvUL///////////8AgyABvUKAgICAgICAgIB/g4S/C+QDAgN/AX4CfgJAAkACQAJAIAAoAgQiAiAAKAJoSQR/IAAgAkEBajYCBCACLQAABSAAEFkLIgJBK2sOAwABAAELIAAoAgQiAyAAKAJoSQR/IAAgA0EBajYCBCADLQAABSAAEFkLIQQgAkEtRiEDIAFBAEcgBEFQaiICQQlLcQR+IAAoAmgEfiAAIAAoAgRBf2o2AgQMBAVCgICAgICAgICAfwsFIAQhAQwCCwwDCyACIQEgAkFQaiECCyACQQlLDQBBACECA0AgAUFQaiACQQpsaiECIAJBzJmz5gBIIAAoAgQiASAAKAJoSQR/IAAgAUEBajYCBCABLQAABSAAEFkLIgFBUGoiBEEKSXENAAsgAqwhBSAEQQpJBEADQCABrEJQfCAFQgp+fCEFIAAoAgQiASAAKAJoSQR/IAAgAUEBajYCBCABLQAABSAAEFkLIgFBUGoiAkEKSSAFQq6PhdfHwuujAVNxDQALIAJBCkkEQANAIAAoAgQiASAAKAJoSQR/IAAgAUEBajYCBCABLQAABSAAEFkLQVBqQQpJDQALCwsgACgCaARAIAAgACgCBEF/ajYCBAtCACAFfSAFIAMbDAELIAAoAmgEQCAAIAAoAgRBf2o2AgQLQoCAgICAgICAgH8LC8sHAQV/AnwCQAJAAkACQAJAIAEOAwABAgMLQRghBEHrfiEFDAMLQTUhBEHOdyEFDAILQTUhBEHOdyEFDAELRAAAAAAAAAAADAELA0AgACgCBCIBIAAoAmhJBH8gACABQQFqNgIEIAEtAAAFIAAQWQsiARD7Ag0ACwJAAkACQCABQStrDgMAAQABC0EBIAFBLUZBAXRrIQYgACgCBCIBIAAoAmhJBH8gACABQQFqNgIEIAEtAAAFIAAQWQshAQwBC0EBIQYLAkACQAJAA38gA0HwhwNqLAAAIAFBIHJGBH8gA0EHSQRAIAAoAgQiASAAKAJoSQR/IAAgAUEBajYCBCABLQAABSAAEFkLIQELIANBAWoiA0EISQ0BQQgFIAMLCyIDQf////8HcUEDaw4GAQAAAAACAAsgAkEARyIHIANBA0txBEAgA0EIRg0CDAELIANFBEACQEEAIQMDfyADQfmHA2osAAAgAUEgckcNASADQQJJBEAgACgCBCIBIAAoAmhJBH8gACABQQFqNgIEIAEtAAAFIAAQWQshAQsgA0EBaiIDQQNJDQBBAwshAwsLAkACQAJAIAMOBAECAgACCyAAKAIEIgEgACgCaEkEfyAAIAFBAWo2AgQgAS0AAAUgABBZC0EoRwRAIwIgACgCaEUNBRogACAAKAIEQX9qNgIEIwIMBQtBASEBA0ACQCAAKAIEIgIgACgCaEkEfyAAIAJBAWo2AgQgAi0AAAUgABBZCyICQVBqQQpJIAJBv39qQRpJckUEQCACQd8ARiACQZ9/akEaSXJFDQELIAFBAWohAQwBCwsjAiACQSlGDQQaIAAoAmhFIgJFBEAgACAAKAIEQX9qNgIECyAHRQRAQYiqBEEWNgIAIABCABDBAUQAAAAAAAAAAAwFCyMCIAFFDQQaA0AgAkUEQCAAIAAoAgRBf2o2AgQLIwIgAUF/aiIBRQ0FGgwAAAsACyAAIAFBMEYEfyAAKAIEIgEgACgCaEkEfyAAIAFBAWo2AgQgAS0AAAUgABBZC0EgckH4AEYEQCAAIAQgBSAGIAIQ8gsMBQsgACgCaARAIAAgACgCBEF/ajYCBAtBMAUgAQsgBCAFIAYgAhDxCwwDCyAAKAJoBEAgACAAKAIEQX9qNgIEC0GIqgRBFjYCACAAQgAQwQFEAAAAAAAAAAAMAgsgACgCaEUiAUUEQCAAIAAoAgRBf2o2AgQLIAJBAEcgA0EDS3EEQANAIAFFBEAgACAAKAIEQX9qNgIECyADQX9qIgNBA0sNAAsLCyAGsiMDtpS7CwukAQEFfyMEIQUjBEGAAmokBCAFIQMgAkECTgRAAkAgAkECdCABaiIHIAM2AgAgAARAA0AgAyABKAIAIABBgAIgAEGAAkkbIgQQRhpBACEDA0AgA0ECdCABaiIGKAIAIANBAWoiA0ECdCABaigCACAEEEYaIAYgBigCACAEajYCACACIANHDQALIAAgBGsiAEUNAiAHKAIAIQMMAAALAAsLCyAFJAQLOQECfyAABEAgAEEBcUUEQANAIAFBAWohASAAQQF2IQIgAEECcUUEQCACIQAMAQsLCwVBICEBCyABCykBAX8gACgCAEF/ahCcByIBBH8gAQUgACgCBBCcByIAQSBqQQAgABsLC5EBAgF/An4CQAJAIAC9IgNCNIgiBKdB/w9xIgIEQCACQf8PRgRADAMFDAILAAsgASAARAAAAAAAAAAAYgR/IABEAAAAAAAA8EOiIAEQngchACABKAIAQUBqBUEACzYCAAwBCyABIASnQf8PcUGCeGo2AgAgA0L/////////h4B/g0KAgICAgICA8D+EvyEACyAAC2EBAX8gACAALABKIgEgAUH/AWpyOgBKIAAoAgAiAUEIcQR/IAAgAUEgcjYCAEF/BSAAQQA2AgggAEEANgIEIAAgACgCLCIBNgIcIAAgATYCFCAAIAEgACgCMGo2AhBBAAsL1wEBA38CQAJAIAIoAhAiAw0AIAIQnwdFBEAgAigCECEDDAELDAELIAMgAigCFCIEayABSQRAIAIgACABIAIoAiRBP3FBwgJqEQUAGgwBCyABRSACLABLQQBIcgR/QQAFAn8gASEDA0AgACADQX9qIgVqLAAAQQpHBEAgBQRAIAUhAwwCBUEADAMLAAsLIAIgACADIAIoAiRBP3FBwgJqEQUAIANJDQIgAigCFCEEIAEgA2shASAAIANqIQBBAAsLGiAEIAAgARBGGiACIAIoAhQgAWo2AhQLCxEAIAAEfyAAIAEQ9AsFQQALC74DAwF/AX4BfCABQRRNBEACQAJAAkACQAJAAkACQAJAAkACQAJAIAFBCWsOCgABAgMEBQYHCAkKCyACKAIAQQNqQXxxIgEoAgAhAyACIAFBBGo2AgAgACADNgIADAkLIAIoAgBBA2pBfHEiASgCACEDIAIgAUEEajYCACAAIAOsNwMADAgLIAIoAgBBA2pBfHEiASgCACEDIAIgAUEEajYCACAAIAOtNwMADAcLIAIoAgBBB2pBeHEiASkDACEEIAIgAUEIajYCACAAIAQ3AwAMBgsgAigCAEEDakF8cSIBKAIAIQMgAiABQQRqNgIAIAAgA0H//wNxQRB0QRB1rDcDAAwFCyACKAIAQQNqQXxxIgEoAgAhAyACIAFBBGo2AgAgACADQf//A3GtNwMADAQLIAIoAgBBA2pBfHEiASgCACEDIAIgAUEEajYCACAAIANB/wFxQRh0QRh1rDcDAAwDCyACKAIAQQNqQXxxIgEoAgAhAyACIAFBBGo2AgAgACADQf8Bca03AwAMAgsgAigCAEEHakF4cSIBKwMAIQUgAiABQQhqNgIAIAAgBTkDAAwBCyAAIAJB+QcRAQALCwtAAQJ/IAAoAgAsAAAQqAIEQANAIAAoAgAiAiwAACABQQpsQVBqaiEBIAAgAkEBajYCACACLAABEKgCDQALCyABC8IBAQN/IwQhBSMEQaABaiQEIAVBkAFqIQYgBSIEQcjzAUGQARBGGgJAAkAgAUF/akH+////B00NACABBH9BiKoEQcsANgIAQX8FQQEhASAGIQAMAQshAAwBCyAEQX4gAGsiBiABIAEgBksbIgE2AjAgBCAANgIUIAQgADYCLCAEIAAgAWoiADYCECAEIAA2AhwgBCACIAMQmQQhACABBEAgBCgCFCIBIAEgBCgCEEZBH3RBH3VqQQA6AAALCyAFJAQgAAuPAQECfyAAIAAsAEoiASABQf8BanI6AEogACgCFCAAKAIcSwRAIAAoAiQhASAAQQBBACABQT9xQcICahEFABoLIABBADYCECAAQQA2AhwgAEEANgIUIAAoAgAiAUEEcQR/IAAgAUEgcjYCAEF/BSAAIAAoAiwgACgCMGoiAjYCCCAAIAI2AgQgAUEbdEEfdQsLoAUBCH8jBCEGIwRBEGokBCAGIgFBCGohAkGYqQQoAgAiAEHMMmoiBygCACAAQcgyaiIDKAIARwRAIAAoAuQBBEAgAiAAQZjYAGoiBSAAQZDYAGoiBBBAIAIQnQJDF7fROF4EQCAAKALkASECIAQqAgCoIABBlNgAaioCAKggAkH/AXFB8gZqEQEAIAUgBCkCADcCAAsLIABB+DJqIgIoAgBBAUoEQANAENUBIAIoAgBBAUoNAAsLIABBADoAAiAAQZQzaigCACICBEAgAiwAfEUEQCACQQA6AHoLCxDVASAAQdw1aigCAARAEPULCyAAQdQ4aiIELAAABEACQCAAQZo5aiwAAEEARyEFAkACQCAAQfQ4aigCAEEBaiADKAIASAR/IABB2DhqKAIAQSBxDQEgAEHgOGooAgAQjgVBAXMFQQALIAVyDQAMAQsQjQUgBCwAAEUNAQsgAEHcOGooAgAgAygCAEgEQCAAQdU4aiICQQE6AABBmoYCIAEQuwMgAkEAOgAACwsLIABBADoAASAHIAMoAgA2AgAQ1Q4gAEHsMmoiAhC9AyACIABB1DJqIgMoAgAQhQIgAygCAARAQQAhAQNAAkACQCADIAEQUCgCACIELAB6RQ0AIAQoAghBgICACHFFDQAMAQsgAiAEEJIHCyABQQFqIgEgAygCAEcNAAsLIAMgAhCQByAAIABBkDNqKAIANgL4BiAAKAKUAUEAOgAAIABDAAAAADgChAIgAEMAAAAAOAKAAiAAQYAqakEAEMABIABBjAZqIgFCADcCACABQgA3AgggAUIANwIQIAFCADcCGCABQgA3AiAgAUIANwIoIAFCADcCMCABQgA3AjggAUFAa0IANwIAIAFCADcCSCABQQA2AlALIAYkBAvfAgEHfyMEIQcjBEEwaiQEIAdBIGohBSAHIgMgACgCHCIENgIAIAMgACgCFCAEayIENgIEIAMgATYCCCADIAI2AgwgA0EQaiIBIAAoAjw2AgAgASADNgIEIAFBAjYCCAJAAkAgAiAEaiIEQZIBIAEQExD8AiIBRg0AQQIhCANAIAFBAE4EQCADQQhqIAMgASADKAIEIglLIgYbIgMgASAJQQAgBhtrIgkgAygCAGo2AgAgAyADKAIEIAlrNgIEIAUgACgCPDYCACAFIAM2AgQgBSAGQR90QR91IAhqIgg2AghBkgEgBRATEPwCIgYgBCABayIERg0CIAYhAQwBCwsgAEEANgIQIABBADYCHCAAQQA2AhQgACAAKAIAQSByNgIAIAhBAkYEf0EABSACIAMoAgRrCyECDAELIAAgACgCLCIBIAAoAjBqNgIQIAAgATYCHCAAIAE2AhQLIAckBCACCwwAQaDrAUEFIAAQBwsMAEGw6wFBBCAAEAcLDABB4PABQQMgABAHCwwAQejwAUECIAAQBwsMAEGQ7gFBASAAEAcLDABB8PABQQAgABAHCycBAX8jBCECIwRBEGokBCACIAEQ7wEgAEGw7wEgAhAENgIAIAIkBAtJAQF/IAAoAgAiAiAAKAIERgRAIAAgACACQQFqEFgQ4AQgACgCACECCyAAKAIIIAJBAXRqIAEuAQA7AQAgACAAKAIAQQFqNgIAC0YBAn8CfyABIQUgACgCACEBIAULIAAoAgQiAEEBdWoiBCACIAMgAEEBcQR/IAEgBCgCAGooAgAFIAELQf8AcUGUCWoRBwALFgAgASACIAAoAgBB/wFxQfIGahEBAAs6AQF/IwQhBiMEQRBqJAQgACgCACEAIAYgAhA0IAEgBiADIAQgBSAAQQNxQYoJahEvACAGEDEgBiQEC1gBAn8jBCEGIwRBEGokBCAAKAIAIQcgBkEIaiIAIAIQNCAGQQRqIgIgAxA0IAYgBBA0IAEgACACIAYgBSAHQQ9xQdIKahEtACAGEDEgAhAxIAAQMSAGJAQLRwECfyMEIQUjBEEQaiQEIAAoAgAhBiAFQQRqIgAgAhA0IAUgAxA0IAEgACAFIAQgBkEfcUGoCmoRBgAgBRAxIAAQMSAFJAQLdwEFf0GYqQQoAgBB4DJqIgMoAgAiAUEASgRAAkADQAJAIAMgAUF/aiIEEFAoAgAiAiAARwRAIAIsAHsEQCACKAIIIgVBgIQQcUGAhBBGIAVBgICACHFBAEdyRQ0CCwsgAUEBTA0CIAQhAQwBCwsgAhCJBBB0CwsLZAEDfyMEIQIjBEEQaiQEIAIhAUGYqQQoAgBBpNgAakMAAAAAOAIAIAAEQCABQQA2AgAgARDABiEDIABBkYwCEOoEIgAEQCAAKAJMGiADIAEoAgAgABCgByAAEMMCGgsLIAIkBAtCAgJ/AnwjBCEBIwRBEGokBAJ8IAAoAgBBsP8BKAIAIAFBBGoQBiEEIAEgASgCBBBfIAQLqiECIAEQzAEgASQEIAILwAQBB38jBCEGIwRBMGokBCAGQQhqIQQgBiIDQRRqIQIgABDfAiADQSBqIgUgARDmDSAFEFsEQCAAQQA2AgAgAEEANgIEBSADIAVBwugCEFcgAiAFQcnoAhBXIAIQygIhByACEDEgAiAFQdToAhBXIAIQygIhCCACEDEgAEEANgIAIABBADYCBCAEIAc2AgAgBCAINgIEQd/oAiAEELoDIAMQMQsgAyABEOUNIAAgAxCGA0EBcToACCADEDEgAyABQYzpAhBXIAAgAxCHATYCDCADEDEgAyABQZPpAhBXIAAgAxA9OAIQIAMQMSADIAFBnukCEFcgACADEIcBNgIUIAMQMSADIAFBqukCEFcgACADEIcBNgIYIAMQMSADIAFBtukCEFcgACADEIYDQQFxOgAcIAMQMSACIAEQ5A0gAyACEDcgACADKQMANwIgIAIQMSACIAFB0+kCEFcgAyACEDcgACADKQMANwIoIAIQMSADIAFB3+kCEFcgACADEFsEf0EABSADELcHCzYCMCACIAFB6+kCEFcgACACED04AjQgAhAxIAIgAUH86QIQVyAAIAIQPTgCOCACEDEgAiABEOMNIAAgAhCGA0EBcToAPCACEDEgAiABEOINIABBQGsgAhDIAzYCACACEDEgAiABEOENIAAgAhA9OAJEIAIQMSAGQRBqIgQgARDgDSACIAQQnwEgAEHIAGogAigCACACIAIsAAtBAEgbQScQlQQgAhA+IAQQMSADEDEgBRAxIAYkBAtIAQJ/IwQhAyMEQRBqJAQgACgCACEAIAMgAhA0IANBBGoiAiABIAMgAEH/AHFBlAlqEQcAIAIQfSEEIAIQMSADEDEgAyQEIAQLFwAgASACIAMgACgCAEE/cUHCAmoRBQALCQAgACABEIgOCwkAIAAgARDGDgsJACAAIAEQxA4LDgAgAEE/cUGGBGoRIQALEAAgASAAQQ9xQcYEahEfAAt9AQJ/IwQhAiMEQRBqJARBmKkEKAIAIQEgABB0IAAoAlAgABC1ASABQf41akEBOgAAIAIgAUHwAWogACgC8AVBDGoQQCABQdAzaiACKQMANwIAIAAoAghBBHFFBEAgACgC8AUoAghBBHFFBEAgAUH0M2ogADYCAAsLIAIkBAsTACABIAIgAEH/AXFB8gZqEQEACxIAIAEgAiAAQQNxQdYEahEeAAsQAEGYqQQoAgBByDJqKAIACycBAX8jBCECIwRBEGokBCACIAEQjwEgAEGo7AEgAhAENgIAIAIkBAsSACABIAIgAEEHcUHgBmoRGwALYgEEfyMEIQQjBEEQaiQEIAQiAkEEaiIBQQA2AgADQCACIAAoAgggARDZASACEMgDIQMgAEEEaiABKAIAQQJ0aiADNgIAIAIQMSABIAEoAgBBAWoiAzYCACADRQ0ACyAEJAQLJwEBfyMEIQIjBEEQaiQEIAIgARCpBCAAQcD2ASACEAQ2AgAgAiQEC10BBn8jBCEEIwRBEGokBCAEIgFBBGoiAkEANgIAIABBBGohBQNAAn8gACgCCCEGIAEgBRDHByAGCyACIAEQ2gEgARAxIAIgAigCAEEBaiIDNgIAIANFDQALIAQkBAtCAQN/IwQhBCMEQRBqJAQgBEEEaiIFIAEQTCAEIAIQNCAFIAQgAyAAQT9xQcICahEFACEGIAQQMSAFED4gBCQEIAYLMgECfyMEIQMjBEEQaiQEIAMgARBMIAMgAiAAQf8AcUG0AWoRAAAhBCADED4gAyQEIAQLDQAgACABIAIgAxC8DwsnAQF/IwQhAiMEQRBqJAQgAiABEI8BIABB6OsBIAIQBDYCACACJAQLTAEEfyMEIQMjBEEQaiQEAn8gACgCACEGIANBBGoiACABEHEgBgsCfyAAKAIAIQUgAyACEM0DIAULIAMoAgAQCyADEDEgABAxIAMkBAsdAEH49gEgADYCAEH89gEgATYCAEGcqQRBADYCAAsxACAAQYakAhCHAkEARyABQYgqR3IgAkGgB0dyIANBCEdyIARBEEdyIAVBFEdyQQFzC2QCBH8BfCMEIQMjBEEQaiQEIAMiAkEEaiIBQQA2AgADQCACIAAoAhAgARDZASACELEFIQUgAEEIaiABKAIAQQN0aiAFOQMAIAIQMSABIAEoAgBBAWoiBDYCACAERQ0ACyADJAQLXQEGfyMEIQQjBEEQaiQEIAQiAUEEaiICQQA2AgAgAEEIaiEFA0ACfyAAKAIQIQYgASAFEPUPIAYLIAIgARDaASABEDEgAiACKAIAQQFqIgM2AgAgA0UNAAsgBCQEC2UCBH8BfSMEIQMjBEEQaiQEIAMiAkEEaiIBQQA2AgADQCACIAAoAgwgARDZASACED0hBSAAQQRqIAEoAgBBAnRqIAU4AgAgAhAxIAEgASgCAEEBaiIENgIAIARBAkkNAAsgAyQEC2EBBn8jBCEEIwRBEGokBCAEIgFBBGoiAkEANgIAA0ACfyAAKAIMIQYgASAAQQRqIANBAnRqEPEBIAYLIAIgARDaASABEDEgAiACKAIAQQFqIgM2AgAgA0ECSQ0ACyAEJAQLZAEEfyMEIQQjBEEQaiQEIAQiAkEEaiIBQQA2AgADQCACIAAoAgwgARDZASACEIcBIQMgAEEEaiABKAIAQQJ0aiADNgIAIAIQMSABIAEoAgBBAWoiAzYCACADQQJJDQALIAQkBAstAQJ/QZipBCgCACIAKALYASIBBH8gACgC4AEgAUE/cUHsAGoRAwAFQZquBAsLYQEGfyMEIQQjBEEQaiQEIAQiAUEEaiICQQA2AgADQAJ/IAAoAgwhBiABIABBBGogA0ECdGoQqAQgBgsgAiABENoBIAEQMSACIAIoAgBBAWoiAzYCACADQQJJDQALIAQkBAtkAQR/IwQhBCMEQRBqJAQgBCICQQRqIgFBADYCAANAIAIgACgCECABENkBIAIQhwEhAyAAQQRqIAEoAgBBAnRqIAM2AgAgAhAxIAEgASgCAEEBaiIDNgIAIANBA0kNAAsgBCQEC2EBBn8jBCEEIwRBEGokBCAEIgFBBGoiAkEANgIAA0ACfyAAKAIQIQYgASAAQQRqIANBAnRqEKgEIAYLIAIgARDaASABEDEgAiACKAIAQQFqIgM2AgAgA0EDSQ0ACyAEJAQLZAEEfyMEIQQjBEEQaiQEIAQiAkEEaiIBQQA2AgADQCACIAAoAhQgARDZASACEIcBIQMgAEEEaiABKAIAQQJ0aiADNgIAIAIQMSABIAEoAgBBAWoiAzYCACADQQRJDQALIAQkBAthAQZ/IwQhBCMEQRBqJAQgBCIBQQRqIgJBADYCAANAAn8gACgCFCEGIAEgAEEEaiADQQJ0ahCoBCAGCyACIAEQ2gEgARAxIAIgAigCAEEBaiIDNgIAIANBBEkNAAsgBCQECyAAIAAgACgCqAZBf2o2AqgGIAAgACgCrAZBf2o2AqwGC2UCBH8BfSMEIQMjBEEQaiQEIAMiAkEEaiIBQQA2AgADQCACIAAoAhAgARDZASACED0hBSAAQQRqIAEoAgBBAnRqIAU4AgAgAhAxIAEgASgCAEEBaiIENgIAIARBA0kNAAsgAyQEC2EBBn8jBCEEIwRBEGokBCAEIgFBBGoiAkEANgIAA0ACfyAAKAIQIQYgASAAQQRqIANBAnRqEPEBIAYLIAIgARDaASABEDEgAiACKAIAQQFqIgM2AgAgA0EDSQ0ACyAEJAQLPwEDf0GYqQQoAgAiAEGUM2ooAgAhASAAQaQ1aigCACICBH8gAEH+NWosAAAEf0EABSACIAEoAowCRgsFQQALCw8AIAAgASACIAMgBBDREAsaACAAKAIAEBEgACABKAIANgIAIAFBADYCAAsIACAAECoQXwtTAQN/IwQhBSMEQSBqJAQgBUEIaiIGIAEQTCAFQQRqIgEgAhA0IAUgAxA0IAYgASAFIAQgAEEfcUGKA2oRCQAhByAFEDEgARAxIAYQPiAFJAQgBwtEAQN/IwQhBSMEQRBqJAQgBUEEaiIGIAEQTCAFIAIQNCAGIAUgAyAEIABBH3FBigNqEQkAIQcgBRAxIAYQPiAFJAQgBwsnAQF/IwQhAiMEQRBqJAQgAiABEI8BIABBsOoBIAIQBDYCACACJAQLYgEEfyMEIQQjBEEQaiQEIAQiAkEEaiIBQQA2AgADQCACIAAoAgggARDZASACEIcBIQMgAEEEaiABKAIAQQJ0aiADNgIAIAIQMSABIAEoAgBBAWoiAzYCACADRQ0ACyAEJAQLXQEGfyMEIQQjBEEQaiQEIAQiAUEEaiICQQA2AgAgAEEEaiEFA0ACfyAAKAIIIQYgASAFEKgEIAYLIAIgARDaASABEDEgAiACKAIAQQFqIgM2AgAgA0UNAAsgBCQECxQAIAEgAiADIABBP3FBwgJqEQUAC2MCBH8BfSMEIQMjBEEQaiQEIAMiAkEEaiIBQQA2AgADQCACIAAoAgggARDZASACED0hBSAAQQRqIAEoAgBBAnRqIAU4AgAgAhAxIAEgASgCAEEBaiIENgIAIARFDQALIAMkBAtdAQZ/IwQhBCMEQRBqJAQgBCIBQQRqIgJBADYCACAAQQRqIQUDQAJ/IAAoAgghBiABIAUQ8QEgBgsgAiABENoBIAEQMSACIAIoAgBBAWoiAzYCACADRQ0ACyAEJAQLLwECfyMEIQIjBEEQaiQEIAIgASAAQT9xQewAahEDADYCACACKAIAIQMgAiQEIAMLEwAgASACIABB/wBxQbQBahEAAAsSACABIAIgAEEBcUGuAWoRCwALDQAgACABIAIgAxCYEQsnAQF/IwQhAiMEQRBqJAQgAiABEI8BIABB8PUBIAIQBDYCACACJAQLMAECfyMEIQIjBEEQaiQEIAIgASAAQf8BcUHyBmoRAQAgAhB9IQMgAhAxIAIkBCADC0ICAn8CfCMEIQEjBEEQaiQEAnwgACgCAEGA9wEoAgAgAUEEahAGIQQgASABKAIEEF8gBAurIQIgARDMASABJAQgAgsoAQJ/An8jBCEDIwRBEGokBCAAQQNBtPcBQZrLAkEkIAEQAiADCyQECygBAn8CfyMEIQMjBEEQaiQEIABBB0GgygFBtcsCQQEgARACIAMLJAQLKAECfwJ/IwQhAyMEQRBqJAQgAEECQZz4AUHayQJBIiABEAIgAwskBAsaACAALAALQQBIBH8gACgCAAUgAAsgARC0CAsQACAAKAI0IgAEQCAAEEELCwsAIAAEQCAAEEELCygBAn8CfyMEIQMjBEEQaiQEIABBB0GQ0gFB8tECQQsgARACIAMLJAQLewAgABBoIABBDGoQaCAAQRhqEGggAEEANgJAIABBADYCPCAAQQA2AkQgAEEANgJMIABBADYCSCAAQQA2AlAgAEEANgJYIABBADYCVCAAQQA2AlwgAEEANgJsIABBADYCaCAAQQA2AnAgACABNgIoIABBADYCLCAAEPgDCygBAn8CfyMEIQMjBEEQaiQEIABBCkHA0gFB59ICQQEgARACIAMLJAQLKAECfwJ/IwQhAyMEQRBqJAQgAEEDQeD7AUGaywJBHiABEAIgAwskBAsHACAAEKgPCygBAn8CfyMEIQMjBEEQaiQEIABBA0G8/AFB480CQQ4gARACIAMLJAQLCQAgACABEKcPCwcAIAAQpQ8LBwAgABCkDwsoAQJ/An8jBCEDIwRBEGokBCAAQQNByPwBQePNAkENIAEQAiADCyQECwkAIAAgARCjDwsHACAAEKEPCygBAn8CfyMEIQMjBEEQaiQEIABBA0HU/AFBr9MCQQEgARACIAMLJAQLKAECfwJ/IwQhAyMEQRBqJAQgAEECQeD8AUG00wJBASABEAIgAwskBAsoAQJ/An8jBCEDIwRBEGokBCAAQQNBrP0BQeXVAkEBIAEQAiADCyQECygBAn8CfyMEIQMjBEEQaiQEIABBBEHg0wFB8ckCQQcgARACIAMLJAQLBwAgABDxDgsHACAAEO8OCzQBAn8jBCEBIwRBEGokBCABQZipBCgCAEGcN2oiAkEAIAIsAAAbNgIAIAAgARDsDiABJAQLIgEBfyMEIQEjBEEQaiQEIAEQxwI2AgAgACABEOsOIAEkBAsiAQF/IwQhASMEQRBqJAQgARDDAzYCACAAIAEQ6g4gASQECyoBAn8CfyMEIQEjBEEQaiQEQfalAkEHQdDUAUHy0QJBCkEBEAIgAQskBAsRACAAIAEgAiADIAQgBRDnDgsbAEGwqQQgADYCACAABH8gACgCAAVBAAsQigILKgECfwJ/IwQhASMEQRBqJARB0qUCQQFBhP4BQbjTAkEbQQIQAiABCyQECwkAQbCpBCgCAAsqAQJ/An8jBCEBIwRBEGokBEG1pQJBAkGQ/gFB2skCQRtBBBACIAELJAQLEgEBf0GkARA/IgEgABDlDiABCxUAQYakAkGIKkGgB0EIQRBBFBDPBwuEFwEBfyMEIQAjBEEgaiQEIABCADcCACAAQQA2AgggAEGGpAJBhqQCEFwQkwFBi6QCQdjpASAAEIcDuBAZIAAQPkGZpAJBARCaASAAQYgqNgIAQaykAiAAEPQBIABBoAc2AgBBuKQCIAAQ9AEgAEEINgIAQcekAiAAEPQBIABBEDYCAEHSpAIgABD0ASAAQRQ2AgBB3aQCIAAQ9AEgAEECNgIAQeykAiAAEPQBIABBADYCAEH6pAIgABD0ASAAQQg2AgBBjqUCIAAQ9AEgAEEQNgIAQaGlAiAAEPQBIAAgACwAGzoAABCRCCAAIAAsABo6AABBw6UCQccAEMIFIAAgACwAGToAABCPCCAAIAAsABg6AABB5KUCQcgAEMIFEIwIIAAgACwAFzoAAEGVpgJByQAQ3AEgACAALAAWOgAAQZumAkHKABDcASAAIAAsABU6AABBpKYCQcsAENwBQbCmAkECEFJBuaYCQQMQUkHApgJBBBBSQcmmAkHMABC2AUHYpgJBzQAQtgFB6KYCQc4AELYBQfqmAkHPABC2AUGKpwJB0AAQiQFBnKcCQdEAEIkBQa2nAkEFEFJBu6cCQdIAEL8FIAAgACwAFDoAAEHGpwJB0wAQvgUgACAALAATOgAAQdanAkHUABC+BSAAIAAsABI6AABB6acCQdUAEL4FQfqnAkEIEM0BQYCoAkEGEFIQ/BJBj6gCQQcQUkGYqAJBBBCrAUGsqAJBBRCrAUHCqAJBARCYAUHdqAJBBhCrAUH3qAJBBxCrAUGRqQJBAhCYASAAIAAsABE6AABBrakCQdYAENwBQb+pAkEIEKsBQcypAkEJEKsBQdqpAkEDEJgBQempAkEEEJgBQfmpAkEDEJoBQYuqAkEEEJoBQZ2qAkEBENsBEPMSQcGqAkEKEL0FEPASQfCqAkHXABC2AUGJqwJBCxC8BUGgqwJBCBBSQbOrAkECENsBQcirAkEMEL0FQdWrAkENEL0FQeOrAkEOELwFQfarAkEJEFJBhawCQQMQhghBlqwCQQQQhggQ5xJBv6wCQdgAEIkBQdKsAkEFEJgBQd2sAkEGEJgBQeisAkEHEJgBQfasAkEIEJgBQYStAkEDENsBQY+tAkEEENsBQZqtAkEFENsBQamtAkEBEIUIQbutAkHZABC2AUHLrQJB2gAQ3AFB260CQdsAELYBQeStAkEKEFJB7K0CQQ8QuwVB+60CQdwAEI4CQYmuAkEQELsFQZauAkHdABCOAhDeEiAAIAAsABA6AABBtK4CQd4AENwBQbyuAkEJEJgBQciuAkESEKsBENoSQe2uAkEFELoFENcSQYmvAkEGENsBQZevAkELEFJBpK8CQQoQmAFBsq8CQQcQ2wFBwq8CQQwQUkHRrwJB3wAQsQRB6K8CQQ0QUkH+rwJB4AAQsQRBj7ACQQ4QUkGfsAJBDxBSQamwAkECEIUIQbKwAkEQEFJBurACQREQUkHCsAJB4QAQtgFByLACQQgQ2wFBz7ACQQkQ2wFB2LACQRIQUkHjsAJBExBSQeywAkETEKsBQfmwAkELEJgBQYexAkEMEJgBQZWxAkHiABC2AUGisQJBChDbAUGwsQJBCxDbAUG+sQJBFBCrAUHQsQJBFRCrAUHjsQJB4wAQtgFB9rECQRQQUkGOsgJBDRCYAUGgsgJBDhCYAUG9sgJBDxCYAUHMsgJBEBCYARDPEkHusgJBFRBSQfmyAkEFELAEQYizAkEBEIQIQZezAkEBEIMIQaazAkECEIQIQbazAkECEIMIQcazAkEGELAEQdazAkHkABC2AUHdswJBFhBSQeOzAkEHELoFQemzAkHlABCJAUH5swJB5gAQiQFB/rMCQecAEIkBQYS0AkEWEIAIQZC0AkEXEIAIQZ20AkHoABCJAUGqtAJB6QAQiQFBuLQCQeoAEIkBQcS0AkHrABCJAUHRtAJBGBD8B0HbtAJBGRD8B0HmtAJB7AAQiQFB8bQCQe0AEIkBQf20AkEXEFJBhLUCQQgQrwRBi7UCQQgQrgRBl7UCQQkQ0ANBo7UCQQoQrwQQxBIQwhJBxbUCQQsQrwQQvxJB3LUCQQwQ+gdB6rUCQQoQzQFB+LUCQQEQ+QdBgrYCQQIQ+QcQuRJBnLYCQQsQzQFBp7YCQRgQUkGwtgJBAhD3B0G2tgJBAhDPA0HAtgJBAxDPA0HLtgJBBBDPA0HWtgJBBRDPAxCxEkHxtgJBAxDOA0H5tgJBBBDOA0GCtwJBBRDOA0GLtwJBBhDOAxCrEhCpEiAAIAAsAA86AAAQpxIQpRIQoxJB1bcCQQIQuQVB4bcCQQMQuQVB7bcCQQQQuQUQnhJBgrgCQQwQzQFBjLgCQQ0QzQFBlrgCQQ4QzQEQmRIQlxJBuLgCQQkQrQRBxLgCQQoQrQRB0bgCQQsQrQRB3rgCQQwQrQQQkBJB97gCQQIQrARBgbkCQQMQrARBjLkCQQQQrARBl7kCQQUQrAQQiRJBr7kCQQkQzwNBvLkCQQ0QzgMQhRJB1bkCQQ8QzQFB4LkCQRAQzQFB67kCQREQzQFB+LkCQQYQtwVBhboCQQcQtwVBkboCQe4AEI4CQaW6AkEJEK4EEP0REPsRQca6AkEPENADEPgREPYRQe26AkHvABCJAUH4ugJB8AAQjgJBg7sCQRkQUkGLuwJBGhBSQaG7AkEREJgBQbu7AkEaELwFQc+7AkEQENADQeK7AkEUEM0BEPARQYK8AkEJELcFEO0RQZm8AkEOEPcHQaO8AkEREK8EEOkRQcO8AkEbEFIQ5xEQ5hEQ5REQ4xFB8bwCQfEAEIkBQfy8AkEcEFJBib0CQR0QUkGUvQJBBxCaAUGlvQJBHhBSQbS9AkEIEJoBQcG9AkEfEFJBzL0CQRIQ+gdB1r0CQSAQUhDfERDdEUH0vQJB8gAQiQFB/r0CQRMQtgVBk74CQQoQrgRBnr4CQRYQzQFBrr4CQRQQtgUQ1hFB3L4CQRUQtgVB8r4CQSEQUkH7vgJBCxCuBEGHvwJBIhBSQZm/AkEWENADQaW/AkEjEFJBr78CQRgQzQFBvL8CQSQQUkHHvwJB8wAQiQFB2L8CQfQAEI4CQeG/AkEeELsFQeu/AkH1ABCOAkH6vwJBJRBSQYTAAkEmEFJBj8ACQfYAEIkBQZfAAkEMEPMBEM0RQb7AAkEnEFJB0MACQQkQmgFB5MACQRcQ0ANB+sACQSgQUkGMwQJB9wAQ3AEQyRFBrMECQSkQUkG4wQJBKhBSQczBAkH4ABCOAkHhwQJBDRDzAUHvwQJBChCaAUH8wQJBCxCaAUGJwgJBDBCaAUGXwgJBDhDzAUGlwgJBDRCaAUGzwgJBDhCaAUHFwgJBDxCaAUHgwgJBEBCaAUHxwgJBERCaAUGBwwJBEhCaAUGSwwJBHxCrAUGhwwJBIBCrAUGwwwJBIRCrAUHAwwJBKxBSQdTDAkEPEPMBQeTDAkEQEPMBQfTDAkEREPMHEMMREMIRQZzEAkETELAEIAAgACwADjoAAEGqxAJB+QAQ3AEgACAALAANOgAAQb3EAkH6ABDcARC9ERC7ERC5ERC4EUGTxQJBLBBSELYRQbnFAkESELoFQdHFAkEBEPIHQebFAkECEPIHELIRQYfGAkEUEPMBQZHGAkEZEPEHQZ7GAkEVEPMBELERQcDGAkEWEPMBQczGAkEUEJoBQdvGAkEaEPEHQerGAkEXEPMBQf/GAkEYEPMBELAREK4RQbPHAkEZEPMHQcPHAkEjEKsBQc/HAkEkEKsBEKkRQYLIAkH7ABCOAkGWyAJBFRCwBEGlyAJB/AAQjgJBtMgCQf0AELEEQcvIAkH+ABCxBEHfyAJB/wAQvwVB8MgCQYABELYBQYHJAkGBARCJAUGbyQJBggEQvwUQoxEgACAALAAMOgAAEKERQdLJAkGDARC2ASAAJAQLZgBBiv4CQagBENwBQbDtAUGg7QFBuPABQQBBuNMCQThB59sCQQBB59sCQQBB5P0CQcvWAkGnARAFEIsMEJMMEJ4MEKIMEKoMELAMEJkNEKANEKINELUNENgNEIcOEMMOEN8OEJQIC0EBAX9BmKkEKAIAQfQ5aiIBKAIAQQBKBEAgARBwKAIAKAJIQYCAwABxRQRAIAEQcCgCACIBIAEgABDFBRCgCAsLC0cBAn9BmKkEKAIAIgBBlDNqIgEoAgAsAH9FBEAgAEH0OWoQcCgCACIAIAAuAVYQVSgCBEEIcUUEQCABKAIAQcADahCAAgsLC7MHAg9/AX0jBCEHIwRBgAFqJAQgB0HYAGohCSAHQUBrIQYgB0E4aiELIAdBKGohDCAHQSBqIQggB0EYaiERIAdBEGohEiAHQQhqIRMgByEUQZipBCgCACEKIAdB0ABqIg4gA0EAQQFDAACAvxBsIAEQdkMAAIA/XwRAQQAhAgUgBiABKgIAIApBxCpqIg8qAgAiFZIgASoCBCAKQcgqaiINKgIAkiABQQhqIhAqAgAgFZMgASoCDBBdIAJBAXEEQCALQYSkAkEAQQBDAACAvxBsIAYgBioCCCALKgIAkyIVOAIIIAkgASoCACAPKgIAkiAOKgIAkkMAAABAkiAVEEUgASoCBCANKgIAkiAKQbQxaioCAEMAAIC+lKiykhAyIAwgECAPEEAgCEMAAAAAQwAAAAAQMiAAIAkgDEGEpAJBAEEAIAhBABDSAwsgDCAGKQIANwIAIAwgBikCCDcCCCAFBH8CfyAEIApBoDNqKAIAIgRGIAQgBUZyRQRAIApBtDNqKAIAIAVHBEBBACELQQAMAgsLIAkQ0gUgCCAQKgIAIA8qAgCTIApBtDFqKgIAQwAAAD+UIhWTIBUgASoCBCANKgIAkpIQMiAFIAggFRDCBCEBIAkQ0QUgAkEEcUUEQEECQQAQtgMgAXIhAQsgBiAGKgIIIBVDAAAAQJSTOAIIQQEhCyABCwVBACELQQALIQIgA0EAEJABIQQgDioCACAMEHZeBEAgCEEANgIAIBEgCkGwMWoiDSgCACAKQbQxaiIFKgIAIAwQdkMAAKDAkkMAAIA/kkMAAAAAIAMgBCAIEJoDIBEqAgAhFSADIAgoAgAiAUYgASAESXEEQCAIIAMgBBDyCSADaiIBNgIAIBIgDSgCACAFKgIAQ///f39DAAAAACADIAFBABCaAyAIKAIAIQEgEioCACEVCyABIANLBEADQCABQX9qIgQsAAAQ4gIEQAEgCCAENgIAIBMgDSgCACAFKgIAQ///f39DAAAAACAEIAFBABCaAyAVIBMqAgCTIRUgCCgCACIBIANLDQELCwsgCUMAAAAAQwAAAAAQMiAAIAYgBkEIaiADIAEgDiAJQQAQ0gMgFSAGKgIAkkMAAIA/kiEVIAtFBEAgFUMAAKBAkiAQKgIAXwRAIBQgFSAGKgIEEDJBAEMAAIA/EEIhASAJIBQpAgA3AgAgACAJIAEQigkLCwUgCUMAAAAAQwAAAAAQMiAAIAYgBkEIaiADIAQgDiAJQQAQ0gMLCyAHJAQgAguGAgIDfwN9IwQhBCMEQRBqJARBmKkEKAIAIQUgARB2IQZDAAAAACAFQYQraioCACAGQwAAAD+UQwAAgL+SEEUQOSEHIAEqAgRDAACAP5IhBiAEIgMgASoCACABKgIMQwAAgL+SIggQMiAAIAMQYyADIAcgASoCAJIgByAGkiIGEDIgACADIAdBBkEJEMYBIAMgASoCCCAHkyAGEDIgACADIAdBCUEMEMYBIAMgASoCCCAIEDIgACADEGMgACAAKAJcIAAoAlQgAhDZBCAFQYgraiIBKgIAQwAAAABeBEAgACAAKAJcIAAoAlRBBUMAAIA/EEJBACABKgIAEPIDCyAAEMQFIAQkBAs8ACAAQQA2AgQgAEEANgIAIABBfzYCDCAAQX82AgggAEMAAAAAOAIYIABDAAAAADgCFCAAQwAAAAA4AhALswECBH8BfSMEIQQjBEEQaiQEQZipBCgCACEDIARBCGoiBSABQQBBAUMAAIC/EGwgBCIBIAUqAgAgA0HEKmoiBioCAJIgBSoCBCADQcgqaioCAEMAAABAlJIQMiAGKgIAIQcgAgRAIAEgASoCACAHIANB3CpqKgIAIANBtDFqKgIAkpKSIgc4AgAFIAEgB0MAAIA/kiABKgIAkiIHOAIACyAAIAcQxwUQRSABKgIEEDIgBCQEC+YJAxV/An4CfSMEIREjBEHgAGokBCAALABUBEAgABDIBQsgEUEgaiESIBFByABqIQggESIEQThqIQYgBEEwaiEKIARBKGohC0GYqQQoAgAiCUGUM2ooAgAiDSwAf0UEQAJAIAAgARDFBSEFIAJBAEciFQRAIAIsAABFBEBBGEEBEO8CIAgQZiAIIAVBABBhGhDuAgwCCwsgCCABIBUQmwggACAFEI0DIgdFBEAgBBCaCCAAIAQQgAQgACgCCCAAKAIAQX9qQRxsaiIHIAU2AgAgByAIKAIANgIUQQEhFgsgACAAIAcQ/QM7AVYgByAIIhMoAgA2AhggACgCIEEBaiAJQcgyaigCACIPSCEMIAAoAkghDiAHKAIIQQFqIA9IIRQgByAPNgIIIAcgAzYCBCAUBEAgDkECcQRAIAAoAhRFBEACQCAMBEAgACgCEA0BCyAAIAU2AhQLCwsFIA5BAXFFBEAgByAAKAI8IhA2AhAgACAHKgIUIAlB3CpqKgIAkiAQvpI4AjwLCyAAKAIYIAVGBH8gAEEBOgBVIAxBAXMhDEEBBSAMQQFzIgwgACgCEHIEf0EABUEAIQwgDkECcUUgACgCAEEBRnELCyEQIA5BgICAAnEiDkUhFyAMIBZyIBRxBEBBGEEBEO8CIAQQZiAEIAVBABBhGhDuAgUgACgCECAFRgRAIAcgDzYCDAsgDSkCyAEhGSATIAcoAhQ2AgAgBiAHKgIQqLIgAEFAayoCAJNDAAAAABAyIAQgAEEkaiAGEDUgDSAEKQMAIho3AsgBIAQgGjcDACAKIAQgCBA1IAYgBCAKEEMCfwJAIAYqAgAiGyAAKgIkIhxdBH8gAEEsaiEEDAEFIAYqAgggAEEsaiIEKgIAYAR/DAIFQQALCwwBCyAKIBsgHBA5IAYqAgRDAACAv5IQMiALIAQqAgAgBioCDBAyIAogC0EBEIgCQQELIQQgBiAJQcgqaioCABB8IAYgBUEAEGEEQAJ/IAYgBSAKIAtBxCBBxAAgCUHUOGoiCCwAABsQkQEhGCAKIAotAAAgCUGgM2oiDygCACAFRnI6AAAgGAsgECADQQJxRXJFcgRAIAAgBTYCFAsgCywAAAR/QQAFEIIFIAssAABFCyAUckUEQEEAQwAAgL8QkAQEQCAILAAARQRAIAAoAkhBAXEEQAJAIAkqAoAHIhtDAAAAAF0EQCAJKgLwASAGKgIAXQRAIAAgB0F/ENEDDAILCyAbQwAAAABeRQ0AIAkqAvABIAYqAgheRQ0AIAAgB0EBENEDCwsLCwsgDSgC9AQiCCAGQSIgDkEVdkECc0EjakEkQSEgFxsgEBsgCywAACAKLAAAckH/AXEbQwAAgD8QQhCZCCAGIAVBARCXAUEIEIsCBEACQEEBQQAQtgNFBEBBARD1AkUNAQsgACAFNgIUCwsgCCAGIAMgACgCSEEEcXIgASAFIBUEfyANIAVBAWoQiwMFQQALEJgIBEAgAkEAOgAAIAAgBxCeCAsgBARAEOoBCyANIBk3AsgBIAssAABFIA8oAgAgBUZxBEACQCAJQbAzaioCAEMAAAA/XkUNACAAKAJIQSBxDQAgEiABQQAQkAEgAWs2AgAgEiABNgIEQf+jAiASELsDCwsFIAQEQBDqAQsgDSAZNwLIAQsLCwsgESQEIBALYQECf0GYqQQoAgAiA0GUM2oiBCgCACwAfwRAQQAhAAUgA0H0OWoQcCgCACIDIAAgASACEJwIIgAgAkEIcUVxBEAgAyADLgFWEFUhACAEKAIAQcADaiAAEHhBASEACwsgAAtHAQJ/IAEoAgRBAXFFIQIgASgCACIDIAAoAhhGBEAgAgRAIAFBfzYCCCAAQQA2AhQgAEEANgIQCwUgAkUEQCAAIAM2AhQLCws3ACABIAFBHGogACgCACABIAAoAghrQRxta0EcbEFkahCzARogACAAKAIAQX9qNgIAIAAoAggaC00BAX8gACABEI0DIgIEQCAAIAIQnwgLIAEgACgCGEYEQCAAQQA2AhgLIAEgACgCEEYEQCAAQQA2AhALIAEgACgCFEYEQCAAQQA2AhQLCysAIAAgAV0EQCAAIAKSIAEQRSEABSAAIAFeBEAgACACkyABEDkhAAsLIAALkAECAn8FfUGYqQQoAgBBtDFqKgIAIQUgACABELMEIQIgASoCFCEGIAAoAgAhAyAAKgJEIgcgASoCECIIIAWMQwAAAAAgAkEAShuSIgReBEAgACAEOAJEBSAHIQQLIAQgAEEkaiIBEHaSIAggBpIgBUMAAIA/IAJBAWogA0gbkiIEXQRAIAAgBCABEHaTOAJECwv4BAMLfwF+AX0jBCEDIwRB0ABqJAQCf0GYqQQoAgAiAkGUM2ooAgAhCiADQRBqIgcgAkG0MWoqAgAiDUMAAADAkiANIAJByCpqKgIAQwAAAECUkhAyIAcqAgBDAAAAQJQhDSAKC0HIAWoiBikCACEMIANBQGsiCCAAQSRqIgUpAgA3AgAgCCAFKQIINwIIIANBKGoiASANQwAAAAAQMiADQTBqIgQgBiABEDUgA0EYaiIBIAYgBBBDIAggARCNAiIIRQRAIAQgAkHcKmoqAgBDAAAAABAyIAEgAEEsaiAEEDUgBSABQQEQiAILIAQgAkGwK2oiBSkCADcCACAEIAUpAgg3AgggBCAEKgIMQwAAAD+UOAIMQQAgBBCCAiABQwAAAABDAAAAAEMAAAAAQwAAAAAQNkEVIAEQggIgAigCiAEhBCACKAKMASEFIAJDAACAPjgCiAEgAkPNzEw+OAKMASABIAAqAiwgDZMgACoCKBAyIAYgASkDADcCACADIAcpAwA3AwggASADKQIINwIAQfejAkEAIAFBBRDDBCEJIAEgACoCLCANkyAHKgIAkiAAKgIoEDIgBiABKQMANwIAIAMgBykDADcDACABIAMpAgA3AgBB+6MCQQEgAUEFEMMEIQFBAhCiAiACIAU2AowBIAIgBDYCiAEgCEUEQBDqAQtBASAJQR90QR91IAEbIgEEfyAAIAAoAhAQjQMiAgR/AkACQCAAIAIQswQiAiABaiIBQX9MDQAgASAAKAIATg0ADAELIAIhAQsgACABEFUFQQALBUEACyELIAYgDDcCACAAIAAqAiwgDUMAAIA/kpM4AiwgAyQEIAsLJQEBfyABKgIEIAAqAgSTqCICRQRAIAEoAgAgACgCAGshAgsgAguuAQEEf0GYqQQoAgAiAkGUM2ooAgAiAywAf0UEQCACQfQ5aiIBKAIAGiABEHAoAgAiACwAVARAIAAQyAULAkACQCAALABVDQAgACgCGEUgACgCIEEBaiACQcgyaigCAEhyDQAgAyAAKgIwIAAqAjSSOALMAQwBCyAAIAMqAswBIAAqAjCTQwAAAAAQOTgCNAsgACgCSEGAgMAAcUUEQBB5CyABIAEoAgBBf2o2AgALC00BA38gACgCBCABSARAIAFB2ABsEFMhAiAAQQhqIgMoAgAiBARAIAIgBCAAKAIAQdgAbBBGGiADKAIAEEELIAMgAjYCACAAIAE2AgQLC4gBAQZ/IwQhAyMEQRBqJAQgACAAKAIYIgIgACgCAEYEfyAAIgEoAgQgAkEBaiIESARAIAEgASAEEFgQpggLIAEgBDYCACAAKAIYQQFqBSAAIAIQ5gIoAgALNgIYAn8gACACEOYCIQUgA0EBaiADLAAAOgAAIAULEKwIIAAgAhDmAiEGIAMkBCAGCw4AIAAqAhAgASoCEJOoC8gDAgt/BH0jBCEFIwRBIGokBCAFQRBqIQYgBSEIIAVBCGoiBCAANgIAQZipBCgCACIDQZQzaigCACIHLAB/BH9BAAUgAkGAgMAAcUUEQCAHQcADaiAAQQxqEHgLIANB9DlqIAQQeCAEKAIAIgBBHGoiCSgCACIKIANByDJqIgsoAgBHBEAgAkEBcQRAIAAoAkhBAXFFBEAgACgCACIDQQFKBEAgACgCIEF/RwRAIAAoAgggA0EcQQUQxAIgBCgCACIAQRxqIgkoAgAhCgsLCwsgACACIAJBwAByIAJBwAFxGyICNgJIIABBJGoiAyABKQIANwIAIAMgASkCCDcCCCAAQQE6AFQgACAKNgIgIAkgCygCADYCACAGIAAqAjggAxCNARAyIAZDAAAAABCpASAHIAQoAgAoAiQ2AsgBIAJBFXZBAnFBIXJDAACAPxBCIQEgBCgCACIAKgIwIRAgACoCJCEOIAJBgICAAXFFBEAgByoCPCIRIQ8gDiARkyEOCyAPIAAqAiySIQ8CfyAHKAL0BCEMIAYgDiAQQwAAgL+SIg4QMiAIIA8gDhAyIAwLIAYgCCABQwAAgD8QxQELQQELIQ0gBSQEIA0LMgEBfyAAQQxqIAEQqAkiASgCACICQX9GBH8gASAAKAIYNgIAIAAQpwgFIAAgAhDmAgsLlQECBn8BfSMEIQQjBEEQaiQEIAQhBUGYqQQoAgAiA0GUM2ooAgAiAiwAfwR/QQAFIANB2DlqIAIgABBeIgYQqgghACAFIAIqAsgBIAIqAswBIgggAioChAQgCCADQbQxaioCAJIgA0HIKmoqAgBDAAAAQJSSEF0gACAGNgIMIAAgBSABQYCAgAJyEKkICyEHIAQkBCAHC2QAIABBADYCBCAAQQA2AgAgAEEANgIIIABBJGoQZiAAQgA3AgwgAEIANwIUIABBfzYCICAAQX82AhwgAEIANwI4IABCADcCQCAAQgA3AkggAEEANgJQIABBADsBVCAAQX87AVYLSAEBfyACQQBHIgQEQCAAIAEgAiwAAEEARyADELQEIgAgBHEEQCACIAIsAABBAXM6AABBASEACwUgACABQQAgAxC0BCEACyAAC2MBA39BmKkEKAIAIgBBlDNqKAIAIQEgAEGgNWooAgAiAgRAIAEgAigC7AVGBEAgAEGkNmooAgBFBEAQggQEQCABKALgAkEBRgRAIABBqDRqKAIAQQEQ6wIQmwILCwsLCxDIAQufDAMUfwF+An0jBCEPIwRB0ABqJAQgD0EQaiEFIA9ByABqIQIgD0EIaiERIA8iBkFAayEHIAZBOGohCyAGQTBqIQogBkEoaiEOIAZBIGohEBA8IgQsAH8Ef0EABUGYqQQoAgAhAyAEIAAQXiENIAIgAEEAQQFDAACAvxBsIA0QrAMhCAJ/AkAgBCgCCEGAgIAgcQ0AIANBnDRqIgkoAgAgA0GoNGooAgAiDEwNAAJ/IAkgDBB6KAIQIARBwANqEHAoAgBGIRQgA0GgNWoiCSgCACESIBQLBH8gCSAENgIAQQEFQQALDAELIANBoDVqIgkoAgAhEkEACyEMIBEQOiAGIAQpAsgBIhY3AwAgFqe+IRcgFkIgiKe+IRgCQAJAIAQoAuACBEAgBSAXIBggA0GYKmoqAgCTEDIgESAFKQMANwMAIARBpARqIAIqAgBDAAAAACADQbQxaiITKgIAQ5qZmT+UqLIQywUhFyAHEPACQwAAAAAgByoCACAXkxA5IRggBSAXQwAAAAAQMiAAIAhBgdgAQYnYACABGyAFEK8BIQIgAUUEQEEAIANBwCtqEIICCyAKIBggBCoCvASSIBMqAgBDmpmZPpSSQwAAAAAQMiALIAYgChA1IAUgCykCADcCACAFQQFDAACAPxDRAiABBH8gAkEBcSEHDAIFQQEQogJBACELIAJBAXELIQcFIAUgF0MAAIC/kiADQdQqaiIGKgIAQwAAAD+UqLKTIBggA0HIKmoqAgCTIAQQ0QGSEDIgESAFKQMANwMAIAQgBCoCyAEgBioCAEMAAAA/lKiykjgCyAEgBSAGEOUDQQ0gBRC+AiAFIAIqAgBDAAAAABAyIAAgCEGBGEGJGCABGyAFEK8BIQJBARCjAiAEIAQqAsgBIAYqAgBDAAAAv5SospI4AsgBIAJBAXEhByABDQFBACELCwwBCyAEQZQCaiANEM0CIQsLIAwEQCAJIBI2AgALIAQoAuACQQFGBH8gA0GYM2oiBigCACAERgR/IANBnDRqIgIoAgAgA0GoNGoiCSgCACIMSgR/IAIgDBB6KAIIIARGBH8gBCgCCEGACHEEf0EABSACIAkoAgAQeigCBCICBH8gBSACEJ8CIAogA0HwAWoiCSADQYAHahBAIAQqAgwgAioCDF0EQCAOIAUpAgA3AgAFIA4gBRDnBgsgBCoCDCACKgIMXQRAIBAgBRDxAgUgECAFEPgECyAKKgIAIhcgDioCAJOLQ5qZmT6UQwAAoEBDAADwQRBkIRggCiAXQwAAAL9DAAAAPyAEKgIMIAIqAgxdG5I4AgAgDiAKKgIEIhcgDioCBCAYkyAXk0MAAMjCEDmSOAIEIBAgFyAYIBAqAgSSIBeTQwAAyEIQRZI4AgQgCiAOIBAgCRD8BAVBAAsLBUEACwVBAAsFQQALIQIgCyAIQQFzIgpyBH9BAAUgBigCACAERgR/IAIgA0GoM2ooAgAiBkUgBiANRnJyQQFzBUEACwshBiAKQQFxIAtBAXMgCHIgAnJBAXMiAkEBcSAHQQAgCxsgAiAIchsgA0GoNWooAgAgDUYiBxshCSAIIgIgBiAHGyEHIANBpDVqKAIAIA1GBH8gA0GZNmosAAAEfyADQaQ2aigCAEEBRgR/EJsCQQEFIAkLBSAJCwUgCQtBAXFBAEcFIAwgAiAIcXEiByAIcyEGIAdBAXMhCiACIAdyBH8gBiECIAoFIAsgDHFBAXMgCHIEfyADQaQ1aigCACANRgR/IANBmTZqLAAABH8gA0GkNmooAgBBA0YEfxCbAiAIIQJBACEHQQEFIAghAkEAIQdBAAsFIAghAkEAIQdBAAsFIAghAkEAIQdBAAsFQQAhAkEAIQdBAQsLCyEIIAFBAXMgB3IEQCANEKwDBEAgA0GoNGooAgBBARDrAgsLAn8CQCACIAhBAXNyDQAgA0GcNGooAgAgA0GoNGooAgBMDQAgABCrA0EADAELIAgEQCAAEKsDBUEAIAJFDQEaCyAFQwAAAABDAAAAABAyIBFBASAFEJwCIA1BxYKgiAFBxYKggAEgBCgCCEGAgICgAXEbEKoDCwshFSAPJAQgFQs7AQJ/EMkFQZipBCgCACIAQZQzaigCACIBIABBoDVqKAIARgRAIABB9DVqKAIARQRAIAEQtQcLCxDVAQuzAgEIfyMEIQMjBEEQaiQEIAMiAEGYqQQoAgAiAUGcK2oqAgAgAUGgK2oqAgAgAUHIKmoiBSoCAJNDAAAAABA5EDIgAUGQNWoiBCAAKQMANwIAIABDAAAAAEMAAAAAEDIgAEEIaiICQwAAAABDAAAAABAyIABBACACEJwCIAAgASoCECABQZQ1aioCACABQbgxaioCAJIgBSoCAJIQMiAAQQAQmgRBAkMAAAAAEI4EIABDAAAAAEMAAAAAEDJBBCAAEL4CAn8CQEHfowJBAEGPChDrAQR/An8QygUhBkECEKMCIABDAAAAAEMAAAAAEDIgBCAAKQMANwIAIAYLRQ0BQQEFQQIQowIgAEMAAAAAQwAAAAAQMiAEIAApAwA3AgAMAQsMAQsQ1QFBAAshByADJAQgBwulAQIBfwF9IABBAzYCACAAQwAAAAA4AgwgAEMAAAAAOAIIIAAgATgCBCACBEAgAEIANwIgIABCADcCKAtBACECA0AgAEEgaiACQQJ0aiEDIAIEQCADKgIAQwAAAABeBEAgACAEIAGSIgQ4AggLCyAAQRBqIAJBAnRqIASosjgCACAAIAQgAyoCAJIiBDgCCCADQwAAAAA4AgAgAkEBaiICQQNHDQALC3YBBX8jBCEDIwRB8ABqJAQgA0HYAGohBCADQcgAaiEFIANBQGshBiADIQcgAgRAIAYgAjYCACAHQcAAQc6jAiAGEHMaIAUgADYCACAFIAG7OQMIIAcgBRBpBSAEIAA2AgAgBCABuzkDCEHWowIgBBBpCyADJAQLKQEBfyMEIQIjBEEQaiQEIAIgADYCACACIAE2AgRBx6MCIAIQaSACJAQLMgEBfyMEIQIjBEEQaiQEIAIgADYCACACQbWjAkG6owIgARs2AgRBwKMCIAIQaSACJAQLQQEBfyMEIQcjBEEQaiQEIAcgBikCADcDACAHQQhqIgYgBykCADcCAEEBIABBAiABIAIgAyAEIAUgBhDMBSAHJAQLQQEBfyMEIQcjBEEQaiQEIAcgBikCADcDACAHQQhqIgYgBykCADcCAEEAIABBAyABIAIgAyAEIAUgBhDMBSAHJAQLKAAgACABLAAAQQBHIAIgAxCvAQR/IAEgASwAAEEBczoAAEEBBUEACwtUAQF/IABBmKkEKAIAQZQzaigCACIBKAKMAjYCACAAIAEoApACNgIEIAAgASkClAI3AgggACABKQKcAjcCECAAIAEpAqQCNwIYIAAgASkCrAI3AiAL6QECB38CfSMEIQQjBEFAayQEIARBEGohBSAEQQhqIQYgBCEHEDwiAywAfwRAQQAhAAUCQCABQQBHIggEQCABLAAARQRAQQAhAAwCCwsgAyAAEF4iCSACQQRBACAIG3JBGnIgAEEAENMCIQAgCARAQZipBCgCACECIAUQ0gUgAkG0MWoqAgBDAAAAP5QhCiADKgKcAiADKgLUAxBFIAJBxCpqKgIAkyAKkyELIAcgA0GUAmoQ5gMgBiALIAcqAgQQMiADIAlBAWoQiwMgBiAKEMIEBEAgAUEAOgAACyAFENEFCwsLIAQkBCAACzkBAX9BmKkEKAIAIgJBlDNqKAIALAB/RQRAIAJBmDVqIABBAXE6AAAgAkGcNWogAUEBIAEbNgIACwsvAgJ/AX0Cf0GYqQQoAgAhARDTBSECIAELQZQzaigCACIAIAIgACoCyAGSOALIAQsrAQF/EDwhAUMAAAAAEIYEIAEgASgChAJBAWo2AoQCIABBjaMCIAAbENABCysBAX8QPCEBQwAAAAAQhgQgASABKAKEAkEBajYChAIgAEGNowIgABsQvQELKwECfyMEIQMjBEEQaiQEIAMgAjYCACAAIAFBwswCIAMQ1QUhBCADJAQgBAsrAQJ/IwQhAyMEQRBqJAQgAyACNgIAIAAgAUHCzAIgAxDXBSEEIAMkBCAEC9wBAQV/IAFBgAJxBEBBASEABUGYqQQoAgAiAkGUM2ooAgAiBSgC3AIhAyACQZw1aiIGKAIAIgQEQCAEQQFxBH8gAyAAIAJBmDVqLAAAIgBB/wFxEMUEIABBAEcFIAMgAEF/EJAGIgRBf0YEfyADIAAgAkGYNWosAAAiAEH/AXEQxQQgAEEARwUgBEEARwsLIQAgBkEANgIABSADIAAgAUEFdkEBcRCQBkEARyEACyABQRBxRSACQczYAGosAABBAEdxBEAgBSgChAIgAkHk2ABqKAIASCAAcg8LCyAAC0wAQZipBCgCAEHY1wBqIAAgAEGAgMAAciAAQYCAwANxGyIAQYCAgARyIAAgAEGAgIAMcUUbIgBBgICAEHIgACAAQYCAgDBxRRs2AgALdQEDfyMEIQQjBEEQaiQEIAQiAyABKAIANgIAIAMgASgCBDYCBCADIAEoAgg2AgggA0MAAIA/OAIMIAAgAyACQQJyQQAQ0wMEfyABIAMoAgA2AgAgASADKAIENgIEIAEgAygCCDYCCEEBBUEACyEFIAQkBCAFC44EAwl/AX0EfCMEIQQjBEGgAWokBEGYqQQoAgAhBSABKgIAEFpDAAB/Q5RDAAAAP5KoIQYgASoCBBBaQwAAf0OUQwAAAD+SqCEHIAEqAggQWkMAAH9DlEMAAAA/kqghCCACQQJxQQBHIgsEf0H/AQUgASoCDBBaQwAAf0OUQwAAAD+SqAshCkEBEIUEIAAEQCAAQQAQkAEiAyAASwRAIAAgAxC5ARC4AgsLIARBQGshACAEQRBqIQMgBEEIaiIJIAVBtDFqKgIAQwAAQECUIAVByCpqKgIAQwAAAECUkiIMIAwQMiAEQYABaiIFIAEqAgAgASoCBCABKgIIIAEqAgwQNiAEIAkpAwA3AwAgBEGQAWoiCSAEKQIANwIAQZKgAiAFIAJBgoAYcUHAAHIgCRDVAhpDAAAAAEMAAIC/EGsgASoCALshDSABKgIEuyEOIAEqAgi7IQ8gCwRAIAMgBjYCACADIAc2AgQgAyAINgIIIAMgBjYCDCADIAc2AhAgAyAINgIUIAMgDTkDGCADIA45AyAgAyAPOQMoQZygAiADEGkFIAEqAgy7IRAgACAGNgIAIAAgBzYCBCAAIAg2AgggACAKNgIMIAAgBjYCECAAIAc2AhQgACAINgIYIAAgCjYCHCAAIA05AyAgACAOOQMoIAAgDzkDMCAAIBA5AzhB0aACIAAQaQsQhAQgBCQEC3EBAn9BmKkEKAIAIgRBlDNqKAIAIQUgAkUEQCABEFwgAWohAgsgASACRwRAIAUoAvQEIARBsDFqKAIAIARBtDFqKgIAIABBAEMAAIA/EEIgASACIANBABD9ASAEQczYAGosAAAEQCAAIAEgAhDdAQsLC8MDAQN/IwQhAiMEQRBqJAQgAkEIaiIDIABBBGoiBCABEFEgAiADEJkBIAQgAikDADcCACAAIAAqAgwgAZQQYjgCDCADIABBFGoiBCABEFEgAiADEJkBIAQgAikDADcCACAAIAAqAiQgAZQQYjgCJCAAIAAqAiwgAZQQYjgCLCADIABBNGoiBCABEFEgAiADEJkBIAQgAikDADcCACAAIAAqAjwgAZQQYjgCPCAAIAAqAnQgAZQQYjgCdCADIABBxABqIgQgARBRIAIgAxCZASAEIAIpAwA3AgAgAyAAQcwAaiIEIAEQUSACIAMQmQEgBCACKQMANwIAIAMgAEHUAGoiBCABEFEgAiADEJkBIAQgAikDADcCACAAIAAqAlwgAZQQYjgCXCAAIAAqAmAgAZQQYjgCYCAAIAAqAmQgAZQQYjgCZCAAIAAqAmggAZQQYjgCaCAAIAAqAmwgAZQQYjgCbCAAIAAqAnAgAZQQYjgCcCADIABBhAFqIgQgARBRIAIgAxCZASAEIAIpAwA3AgAgAyAAQYwBaiIEIAEQUSACIAMQmQEgBCACKQMANwIAIAAgACoClAEgAZQQYjgClAEgAiQEC94CAgt/AX0jBCEDIwRBIGokBCADQRhqIQUgA0EQaiEHIAMhBiABQQJxIQogAUGCgARxRSILIAFBgICAMHFFIghyBEBBpZ4CEKkDBEBBmKkEKAIAIQQgCARAIAUgBEG0MWoqAgBDAAAAQZQiDSANEP4BIARB3CpqKgIAkpNDAACAPxA5EDIgBSoCABDOASAEQdjXAGohCUEAIQEDQCABQQFGIgIEQBC4AgsgARDQASAKQagDQaiDgBAgARtyIgxBgICAIHIgDCACGyECIAcQ1QZB558CQQBBACAFEK8BBEAgCSAJKAIAQf///09xIAJBgICAMHFyNgIACyAHEIcEIAYQ9wEgBiAAQRAgAkEBdEEEcWsQRhpB9J8CIAYgAkEAENMDGhB5IAFBAWoiAUECRw0ACxCKAQsgCwRAIAgEQBC4AgtBgqACIARB2NcAakGAgAQQgAYaCxDIAQsLIAMkBAv8BQMLfwR9AXwjBCEHIwRBkAFqJAQgB0GAAWohCCAHQfAAaiELIAdB4ABqIQQgB0FAayEGIAchAyABQYCAwANxRSIFIAFBgICADHFFIglyBEBBpZ4CEKkDBEBBmKkEKAIAQdjXAGoiDCgCACECIAUEQCACQf//v3xxIgpBgIDAAHIgAkGPogIgAkGAgMAAcUEARxC5AhshAiAKQYCAgAFyIAJBk6ICIAJBgICAAXFBAEcQuQIbIgJB//+/fHFBgICAAnIgAkGXogIgAkGAgIACcUEARxC5AhshAgsgCQRAIAUEQBC4AgsgAkH///9zcSIFQYCAgARyIAJBm6ICIAJBgICABHFBAEcQuQIbIQIgBUGAgIAIciACQaKiAiACQYCAgAhxQQBHELkCGyECCxC4AiADQwAAgL9DAAAAABAyQa2iAiADEJkDBEBByP0CEKsDC0HI/QIQqQMEQCAAKgIAIg0QWkMAAH9DlEMAAAA/kqghBSAAKgIEIg4QWkMAAH9DlEMAAAA/kqghCSAAKgIIIg8QWkMAAH9DlEMAAAA/kqghCiABQQJxQQBHIgEEfEH/ASEARAAAAAAAAPA/BSAAKgIMIhAQWkMAAH9DlEMAAAA/kqghACAQuwshESAGIA27OQMAIAYgDrs5AwggBiAPuzkDECAGIBE5AxggA0HAAEG3ogIgBhBzGiAGQwAAAABDAAAAABAyIANBAEEAIAYQrwEEQCADEIQDCyAEIAU2AgAgBCAJNgIEIAQgCjYCCCAEIAA2AgwgA0HAAEHUogIgBBBzGiAEQwAAAABDAAAAABAyIANBAEEAIAQQrwEEQCADEIQDCyABBEAgCyAFNgIAIAsgCTYCBCALIAo2AgggA0HAAEHiogIgCxBzGgUgCCAFNgIAIAggCTYCBCAIIAo2AgggCCAANgIMIANBwABB8aICIAgQcxoLIARDAAAAAEMAAAAAEDIgA0EAQQAgBBCvAQRAIAMQhAMLEMgBCyAMIAI2AgAQyAELCyAHJAQLoAIBBH8gACgCBEGAgBBxRSEEAkACQCACEFwiBSAAKAIYIgNqIAAoAhxIDQAgBEUEQEGYqQQoAgAhBCAFQQJ0QSBBgAIgBRC6ARDSASADaiIGQQFqIQMgBEGoOmogBkECahCXAyAAIARBsDpqKAIANgIUIARBvDpqIAM2AgAgACADNgIcIAAoAhghAwwBCwwBCyABIAEgA0YEfyAAQRRqBSABIABBFGoiBCgCAGoiBiAFaiAGIAMgAWsQswEaIAQLIgMoAgBqIAIgBRBGGiADKAIAIAAoAhggBWpqQQA6AAAgACgCJCICIAFIBEAgAiEBBSAAIAIgBWoiATYCJAsgACABNgIsIAAgATYCKCAAQQE6ACAgACAAKAIYIAVqNgIYCwumAQEEfyACIAEgACgCFGoiA2oiBSwAACIGBEAgAyEEA0AgBEEBaiEDIAQgBjoAACAFQQFqIgUsAAAiBgRAIAMhBAwBCwsLIANBADoAAAJAAkAgAiAAKAIkIgNqIAFIBH8gAyABSAR/IAMFDAILBSADIAJrIQEMAQshAQwBCyAAIAE2AiQLIAAgATYCLCAAIAE2AiggAEEBOgAgIAAgACgCGCACazYCGAteAQN/IwQhBiMEQRBqJAQgBkEIaiIHIAI5AwAgBiADOQMAIABBBSABIAdBACACRAAAAAAAAAAAZBsgBkEAIANEAAAAAAAAAABkGyAEIAVBgIAIchDUAyEIIAYkBCAIC1cBA38jBCEFIwRBEGokBCAFQQRqIgYgAjYCACAFIAM2AgAgAEEAIAEgBkEAIAJBAEobIAVBACADQQBKG0GSngJB550CIARBAnEbIAQQ1AMhByAFJAQgBwtWAQN/IwQhBiMEQRBqJAQgBkEEaiIHIAI4AgAgBiADOAIAIABBBCABIAdBACACQwAAAABeGyAGQQAgA0MAAAAAXhsgBCAFQYCACHIQ1AMhCCAGJAQgCAtAAQN/IwQhBiMEQRBqJAQgBkEEaiIHIAM2AgAgBiAENgIAIAAgAUEAIAIgByAGIAVDAACAPxDWAiEIIAYkBCAICz0BA38jBCEHIwRBEGokBCAHQQRqIgggAzgCACAHIAQ4AgAgACABQQQgAiAIIAcgBSAGENYCIQkgByQEIAkLQAEDfyMEIQUjBEEQaiQEIAVBBGoiBiACNgIAIAUgAzYCACAAQQAgAUEEIAYgBSAEQwAAgD8Q3wEhByAFJAQgBwtAAQN/IwQhBSMEQRBqJAQgBUEEaiIGIAI2AgAgBSADNgIAIABBACABQQMgBiAFIARDAACAPxDfASEHIAUkBCAHC0ABA38jBCEFIwRBEGokBCAFQQRqIgYgAjYCACAFIAM2AgAgAEEAIAFBAiAGIAUgBEMAAIA/EN8BIQcgBSQEIAcLVwECfyMEIQQjBEEQaiQEIAQgASoCAEMAALRDlEPbD8lAlTgCACAAIAQgAiADQdPRAkMAAIA/EN4FIQUgASAEKgIAQ9sPyUCUQwAAtEOVOAIAIAQkBCAFCz0BA38jBCEGIwRBEGokBCAGQQRqIgcgAjgCACAGIAM4AgAgAEEEIAFBBCAHIAYgBCAFEN8BIQggBiQEIAgLPQEDfyMEIQYjBEEQaiQEIAZBBGoiByACOAIAIAYgAzgCACAAQQQgAUEDIAcgBiAEIAUQ3wEhCCAGJAQgCAs9AQN/IwQhBiMEQRBqJAQgBkEEaiIHIAI4AgAgBiADOAIAIABBBCABQQIgByAGIAQgBRDfASEIIAYkBCAIC4gIAwd/Bn0DfCMEIQsjBEEQaiQEQZipBCgCACEJIABBCGoiDCAHQQFxIgoQViAAIAoQVpNDAACAwJIhECAJQfwqaioCACERIAQgA6EgAyAEoSADIARjGyIWRAAAAAAAAAAAZkEAcQR9IBC7IBZEAAAAAAAA8D+go7YgERA5BSARCyAQEEUhEiAAIAoQViETIAwgChBWIRUgBkMAAIA/XCINIAMgBKJEAAAAAAAAAABjcQR9IAMgA5ogA0QAAAAAAAAAAGYbRAAAAAAAAPA/IAa7oyIXEOIDIhggGCAEIASaIAREAAAAAAAAAABmGyAXEOIDoKO2BUMAAIA/QwAAAAAgA0QAAAAAAAAAAGMbCyERIAshByAKQQBHIQ4gECASkyEQIBJDAAAAP5QiEiATQwAAAECSkiETIAEgCUG0M2ooAgBGBH8CfwJAAkACQAJAIAlB4DNqKAIAQQFrDgIAAQILIAksAPgBRQRAEHJBAAwECyAJQfABaiAKEFYhFEMAAIA/IBBDAAAAAF4EfSAUIBOTIBCVQwAAAABDAACAPxBkBUMAAAAACyIQkyAQIA4bIRAMAgsgB0EDQQVDAAAAAEMAAAAAEJIBIAcqAgSMIAcqAgAgChshEAJAAkAgCUGwNWooAgAgAUcNACAJQcQzaiwAAA0AEHIMAQsgEEMAAAAAXARAIAIrAwAgAyAEIAYgERDqBSIUQwAAgD9gIA0gBRDjA0EASnIEfSAQQwAAyEKVIhBDAAAgQZUgEEEOEIwBGwUCfSAWRAAAAAAAAFlAZSAWRAAAAAAAAFnAZnFFBEAgEEMAAMhClUEOEIwBRQ0BGgtDAACAv0MAAIA/IBBDAAAAAF0bIBa2lQsLIhBDAAAgQZQgEEEPEIwBGyIQQwAAAABecUUEQCAQQwAAAABdIBRDAAAAAF9xRQRAIBQgEJIQWiEQDAULCwsLQQAMAgtBAAwBCyAFIA0EfCAQIBFdBHxDAACAPyAQIBGVkyAGEIMBIRAgBEQAAAAAAAAAABDpBSADIBAQtwQFIBAgEZNDAACAPyARk5UgECARQwAAgL+Si0O9N4Y1XhsgBhCDASEQIANEAAAAAAAAAAAQ6AUgBCAQELcECwUgAyAEIBAQtwQLEMEEIRYgAisDACAWYgR/IAIgFjkDAEEBBUEACwsFQQALIQ8gEyAVQwAAAMCSIBKTQwAAgD8gAisDACADIAQgBiAREOoFIgaTIAYgDhsQfyEGIAoEQCAHIAAqAgBDAAAAQJIgBiASkyAMKgIAQwAAAMCSIBIgBpIQXQUgByAGIBKTIAAqAgRDAAAAQJIgEiAGkiAAKgIMQwAAAMCSEF0LIAggBykCADcCACAIIAcpAgg3AgggCyQEIA8L0AcCB38HfSMEIQsjBEEQaiQEQZipBCgCACEJIABBCGoiDCAHQQFxIgoQViAAIAoQVpNDAACAwJIhEiAJQfwqaioCACERIAQgA5MgAyAEkyADIARdGyIQQwAAAABgQQBxBH0gEiAQQwAAgD+SlSAREDkFIBELIBIQRSETIAAgChBWIRUgDCAKEFYhFiAGQwAAgD9cIg0gAyAElEMAAAAAXXEEfSADIAOMIANDAAAAAGAbQwAAgD8gBpUiERCDASIUIBQgBCAEjCAEQwAAAABgGyAREIMBkpUFQwAAgD9DAAAAACADQwAAAABdGwshESALIQcgCkEARyEOIBIgE5MhFCATQwAAAD+UIhIgFUMAAABAkpIhFSABIAlBtDNqKAIARgR/An8CQAJAAkACQCAJQeAzaigCAEEBaw4CAAECCyAJLAD4AUUEQBByQQAMBAsgCUHwAWogChBWIRBDAACAPyAUQwAAAABeBH0gECAVkyAUlUMAAAAAQwAAgD8QZAVDAAAAAAsiEJMgECAOGyEQDAILIAdBA0EFQwAAAABDAAAAABCSASAHKgIEjCAHKgIAIAobIRMCQAJAIAlBsDVqKAIAIAFHDQAgCUHEM2osAAANABByDAELIBNDAAAAAFwEQCACKgIAIAMgBCAGIBEQ5gUiFEMAAIA/YCANIAUQ4wNBAEpyBH0gE0MAAMhClSIQQwAAIEGVIBBBDhCMARsFAn0gEEMAAMhCXyAQQwAAyMJgcUUEQCATQwAAyEKVQQ4QjAFFDQEaC0MAAIC/QwAAgD8gE0MAAAAAXRsgEJULCyIQQwAAIEGUIBBBDxCMARsiEEMAAAAAXnFFBEAgEEMAAAAAXSAUQwAAAABfcUUEQCAUIBCSEFohEAwFCwsLC0EADAILQQAMAQsgBSANBH0gECARXQR9QwAAgD8gECARlZMgBhCDASEQIARDAAAAABBFIAMgEBB/BSAQIBGTQwAAgD8gEZOVIBAgEUMAAIC/kotDvTeGNV4bIAYQgwEhECADQwAAAAAQOSAEIBAQfwsFIAMgBCAQEH8LEMAEIRAgAioCACAQXAR/IAIgEDgCAEEBBUEACwsFQQALIQ8gFSAWQwAAAMCSIBKTQwAAgD8gAioCACADIAQgBiAREOYFIgOTIAMgDhsQfyEDIAoEQCAHIAAqAgBDAAAAQJIgAyASkyAMKgIAQwAAAMCSIBIgA5IQXQUgByADIBKTIAAqAgRDAAAAQJIgEiADkiAAKgIMQwAAAMCSEF0LIAggBykCADcCACAIIAcpAgg3AgggCyQEIA8L6gUDB38CfgR9IwQhCyMEQRBqJARBmKkEKAIAIQkgAEEIaiIMIAdBAXEiChBWIAAgChBWk0MAAIDAkiEGIAlB/CpqKgIAIRIgCyEHIApBAEchDSAGIAQgA30iESADIAR9IAQgA1YbIhBCf1UEfSAGIBBCAXy0lSASEDkFIBILIAYQRSIGkyESIAZDAAAAP5QiBiAAIAoQVkMAAABAkpIhFCAMIAoQViEVIAEgCUG0M2ooAgBGBH8CfwJAAkACQAJAIAlB4DNqKAIAQQFrDgIAAQILIAksAPgBRQRAEHJBAAwECyAJQfABaiAKEFYhE0MAAIA/IBJDAAAAAF4EfSATIBSTIBKVQwAAAABDAACAPxBkBUMAAAAACyISkyASIA0bIRIMAgsgB0EDQQVDAAAAAEMAAAAAEJIBIAcqAgSMIAcqAgAgChshEgJAAkAgCUGwNWooAgAgAUcNACAJQcQzaiwAAA0AEHIMAQsgEkMAAAAAXARAIAIpAwAgAyAEEOUFIhNDAACAP2ACfSAQQuQAfELJAVoEQCASQwAAyEKVQQ4QjAFFDQEaC0MAAIC/QwAAgD8gEkMAAAAAXRsgELSVCyISQwAAIEGUIBJBDxCMARsiEkMAAAAAXnFFBEAgEkMAAAAAXSATQwAAAABfcUUEQCATIBKSEFohEgwFCwsLC0EADAILQQAMAQsCfyAFIQ4gEiARtZQiEq8hECAOCyADIBK7RAAAAAAAAOA/oLEiESAQIBAgEVQbfBDhAyIQIAIpAwBRBH9BAAUgAiAQNwMAQQELCwVBAAshDyAUIBVDAAAAwJIgBpNDAACAPyACKQMAIAMgBBDlBSISkyASIA0bEH8hEiAKBEAgByAAKgIAQwAAAECSIBIgBpMgDCoCAEMAAADAkiAGIBKSEF0FIAcgEiAGkyAAKgIEQwAAAECSIAYgEpIgACoCDEMAAADAkhBdCyAIIAcpAgA3AgAgCCAHKQIINwIIIAskBCAPC4oGAwd/An4GfSMEIQsjBEEQaiQEQZipBCgCACEJIABBCGoiDCAHQQFxIgoQViAAIAoQVpNDAACAwJIhEyAJQfwqaioCACESIAQgA30iESADIAR9IAQgA1UbIhBCf1UEfSATIBBCAXy0lSASEDkFIBILIBMQRSESIAAgChBWIRUgDCAKEFYhF0MAAIA/QwAAAAAgA0IAUxshFiALIQcgCkEARyENIBMgEpMhFCASQwAAAD+UIhMgFUMAAABAkpIhFSABIAlBtDNqKAIARgR/An8CQAJAAkACQCAJQeAzaigCAEEBaw4CAAECCyAJLAD4AUUEQBByQQAMBAsgCUHwAWogChBWIRJDAACAPyAUQwAAAABeBH0gEiAVkyAUlUMAAAAAQwAAgD8QZAVDAAAAAAsiEpMgEiANGyESDAILIAdBA0EFQwAAAABDAAAAABCSASAHKgIEjCAHKgIAIAobIRICQAJAIAlBsDVqKAIAIAFHDQAgCUHEM2osAAANABByDAELIBJDAAAAAFwEQCACKQMAIAMgBCAGIBYQ4wUiFEMAAIA/YAJ9IBBC5AB8QskBWgRAIBJDAADIQpVBDhCMAUUNARoLQwAAgL9DAACAPyASQwAAAABdGyAQtJULIhJDAAAgQZQgEkEPEIwBGyISQwAAAABecUUEQCASQwAAAABdIBRDAAAAAF9xRQRAIBQgEpIQWiESDAULCwsLQQAMAgtBAAwBCwJ/IAUhDiASIBG0lCISriEQIA4LIAMgErtEAAAAAAAA4D+gsCIRIBAgECARUxt8EOEDIhAgAikDAFEEf0EABSACIBA3AwBBAQsLBUEACyEPIBUgF0MAAADAkiATk0MAAIA/IAIpAwAgAyAEIAYgFhDjBSIGkyAGIA0bEH8hBiAKBEAgByAAKgIAQwAAAECSIAYgE5MgDCoCAEMAAADAkiATIAaSEF0FIAcgBiATkyAAKgIEQwAAAECSIBMgBpIgACoCDEMAAADAkhBdCyAIIAcpAgA3AgAgCCAHKQIINwIIIAskBCAPC+MFAgl/BH0jBCEMIwRBEGokBEGYqQQoAgAhCSAAQQhqIg0gB0EBcSIKEFYgACAKEFaTQwAAgMCSIQYgCUH8KmoqAgAhEiAMIQcgCkEARyEOIAYgBCADayIPIAMgBGsgBCADSxsiC0F/SgR9IAYgC0EBarKVIBIQOQUgEgsgBhBFIgaTIRIgBkMAAAA/lCIGIAAgChBWQwAAAECSkiEUIA0gChBWIRUgASAJQbQzaigCAEYEfwJ/AkACQAJAAkAgCUHgM2ooAgBBAWsOAgABAgsgCSwA+AFFBEAQckEADAQLIAlB8AFqIAoQViETQwAAgD8gEkMAAAAAXgR9IBMgFJMgEpVDAAAAAEMAAIA/EGQFQwAAAAALIhKTIBIgDhshEgwCCyAHQQNBBUMAAAAAQwAAAAAQkgEgByoCBIwgByoCACAKGyESAkACQCAJQbA1aigCACABRw0AIAlBxDNqLAAADQAQcgwBCyASQwAAAABcBEAgAigCACADIAQQ4QUiE0MAAIA/YAJ9IAtB5ABqQckBTwRAIBJDAADIQpVBDhCMAUUNARoLQwAAgL9DAACAPyASQwAAAABdGyALspULIhJDAAAgQZQgEkEPEIwBGyISQwAAAABecUUEQCASQwAAAABdIBNDAAAAAF9xRQRAIBMgEpIQWiESDAULCwsLQQAMAgtBAAwBCwJ/IAUhECASIA+zlCISqSEBIBALIAMgEkMAAAA/kqkiBSABIAEgBUkbahDgAyIBIAIoAgBGBH9BAAUgAiABNgIAQQELCwVBAAshESAUIBVDAAAAwJIgBpNDAACAPyACKAIAIAMgBBDhBSISkyASIA4bEH8hEiAKBEAgByAAKgIAQwAAAECSIBIgBpMgDSoCAEMAAADAkiAGIBKSEF0FIAcgEiAGkyAAKgIEQwAAAECSIAYgEpIgACoCDEMAAADAkhBdCyAIIAcpAgA3AgAgCCAHKQIINwIIIAwkBCARC4MGAgl/Bn0jBCEMIwRBEGokBEGYqQQoAgAhCSAAQQhqIg0gB0EBcSIKEFYgACAKEFaTQwAAgMCSIRMgCUH8KmoqAgAhEiAEIANrIg8gAyAEayAEIANKGyILQX9KBH0gEyALQQFqspUgEhA5BSASCyATEEUhEiAAIAoQViEVIA0gChBWIRdDAACAP0MAAAAAIANBAEgbIRYgDCEHIApBAEchDiATIBKTIRQgEkMAAAA/lCITIBVDAAAAQJKSIRUgASAJQbQzaigCAEYEfwJ/AkACQAJAAkAgCUHgM2ooAgBBAWsOAgABAgsgCSwA+AFFBEAQckEADAQLIAlB8AFqIAoQViESQwAAgD8gFEMAAAAAXgR9IBIgFZMgFJVDAAAAAEMAAIA/EGQFQwAAAAALIhKTIBIgDhshEgwCCyAHQQNBBUMAAAAAQwAAAAAQkgEgByoCBIwgByoCACAKGyESAkACQCAJQbA1aigCACABRw0AIAlBxDNqLAAADQAQcgwBCyASQwAAAABcBEAgAigCACADIAQgBiAWEN8FIhRDAACAP2ACfSALQeQAakHJAU8EQCASQwAAyEKVQQ4QjAFFDQEaC0MAAIC/QwAAgD8gEkMAAAAAXRsgC7KVCyISQwAAIEGUIBJBDxCMARsiEkMAAAAAXnFFBEAgEkMAAAAAXSAUQwAAAABfcUUEQCAUIBKSEFohEgwFCwsLC0EADAILQQAMAQsCfyAFIRAgEiAPspQiEqghASAQCyADIBJDAAAAP5KoIgUgASABIAVIG2oQ4AMiASACKAIARgR/QQAFIAIgATYCAEEBCwsFQQALIREgFSAXQwAAAMCSIBOTQwAAgD8gAigCACADIAQgBiAWEN8FIgaTIAYgDhsQfyEGIAoEQCAHIAAqAgBDAAAAQJIgBiATkyANKgIAQwAAAMCSIBMgBpIQXQUgByAGIBOTIAAqAgRDAAAAQJIgEyAGkiAAKgIMQwAAAMCSEF0LIAggBykCADcCACAIIAcpAgg3AgggDCQEIBELzwEBBH8QPCwAfwRAQQAhAQVBmKkEKAIAIQogABC9ARC8AUECELADIAIoAgAhCCAEIAVOIglFBEAgBSAIELgBIQgLQYKeAiABIANBgICAgHggBCAJGyAIIAYQ1gMhCxCKAUMAAAAAIApB3CpqIggqAgAQayABKAIAIQEgCUUEQCAEIAEQugEhAQtBiJ4CIAIgAyABQf////8HIAUgCRsgByAGIAcbENYDIAtyIQEQigFDAAAAACAIKgIAEGsgACAAQQAQkAEQuQEQsQEQeQsgAQtCAQN/IwQhBiMEQRBqJAQgBkEEaiIHIAM2AgAgBiAENgIAIABBACABQQQgAiAHIAYgBUMAAIA/EOABIQggBiQEIAgLQgEDfyMEIQYjBEEQaiQEIAZBBGoiByADNgIAIAYgBDYCACAAQQAgAUEDIAIgByAGIAVDAACAPxDgASEIIAYkBCAIC0IBA38jBCEGIwRBEGokBCAGQQRqIgcgAzYCACAGIAQ2AgAgAEEAIAFBAiACIAcgBiAFQwAAgD8Q4AEhCCAGJAQgCAvPAQIEfwF9EDwsAH8Ef0EABUGYqQQoAgAhCSAAEL0BELwBQQIQsAMgAioCACENIAQgBWAiCkUEQCAFIA0QRSENC0GCngIgASADQ///f/8gBCAKGyANIAYgCBDXAyELEIoBQwAAAAAgCUHcKmoiCSoCABBrIAEqAgAhDSAKRQRAIAQgDRA5IQ0LQYieAiACIAMgDUP//39/IAUgChsgByAGIAcbIAgQ1wMgC3IhDBCKAUMAAAAAIAkqAgAQayAAIABBABCQARC5ARCxARB5IAwLCz8BA38jBCEHIwRBEGokBCAHQQRqIgggAzgCACAHIAQ4AgAgAEEEIAFBBCACIAggByAFIAYQ4AEhCSAHJAQgCQs/AQN/IwQhByMEQRBqJAQgB0EEaiIIIAM4AgAgByAEOAIAIABBBCABQQMgAiAIIAcgBSAGEOABIQkgByQEIAkLPwEDfyMEIQcjBEEQaiQEIAdBBGoiCCADOAIAIAcgBDgCACAAQQQgAUECIAIgCCAHIAUgBhDgASEJIAckBCAJC5gBAQJ/IAAsAABBJUYEQAJAQSUhAUElIQICQANAAkAgAUG/f2pBGHRBGHVB/wFxQRpIBEBBASACQb9/anRBgBJxRQ0BBSABQZ9/akEYdEEYdUH/AXFBGkgEQEEBIAJBn39qdEGAlaAScUUNBAsLIABBAWoiACwAACIBIQIgAQ0BDAMLCyAAQQFqIQAMAQsgAEEBaiEACwsgAAtyACAAQZYcakEAOwEAIABBnBxqQQA2AgAgAEGYHGpB4wA7AQAgAEGgHGpB5wc2AgAgAEEANgIEIABBADYCCCAAQQA2AgAgAEEAOgAPIABDAAAAADgCFCAAQQA6AA0gAEEBOgAOIAAgAToAECAAQQA6AAwL6QEBBn8gAEGAHGoiBC4BACIBQeMASARAIABBrAxqKAIAQX9KBEAgAEGkDGooAgAiBSAAQYgcaiICKAIAIgNqIQEgAiABNgIAIABBsAxqIAFBAXRqIABBsAxqIANBAXRqQc4PIAFBAXRrELMBGiAELgEAIgFB4gBIBEAgASECA0AgAkEEdCAAaiIDKAIMIgZBf0oEQCADIAUgBmo2AgwLIAJBAWohAyACQeEASARAIAMhAgwBCwsLCyABQRB0QRB1IgFBBHQgAGoiAEEQaiAAQbAMIAFBBHRrELMBGiAEIAQuAQBBAWo7AQALC6QDAQ5/IAFBmBxqIgouAQAiAkHjAEcEQCABQRhqIAJBBHRqKAIAIQQgASACQQR0aigCICEFIAEgAkEEdGooAiQhDCABIAFBlhxqIgsuAQAiA0EEdGoiDSABIAJBBHRqKAIcIgY2AiAgASADQQR0aiIHIAU2AhwgAUEYaiADQQR0aiIOIAQ2AgAgASADQQR0aiIIQX82AiQgBQRAIAFBnBxqIg8oAgAiCSAFaiICIAFBoBxqIgMoAgBKBEAgB0EANgIcIA1BADYCIAUgCCAJNgIkIA8gAjYCACAFQQBKBEAgACAEEOIBIQIgAUHIDGogCCgCJEEBdGogAjsBACAHKAIcQQFKBEBBASECA0AgACAOKAIAIAJqEOIBIQkgAUHIDGogCCgCJCACakEBdGogCTsBACACQQFqIgIgBygCHEgNAAsLCwsgACAEIAUQ2QMFIAFBoBxqIQMLIAYEQCAAIAQgAUHIDGogDEEBdGogBhCSAxogAyADKAIAIAZqNgIACyABIAQgBmo2AgAgCyALLgEAQQFqOwEAIAogCi4BAEEBajsBAAsLzgMBDH8gAUEYaiEMIAFBlhxqIgsuAQAiAgRAAkAgAUEYaiACQX9qIgJBBHRqKAIAIQYgASACQQR0aigCHCEHIAEgAkEEdGooAiAhBCABIAJBBHRqKAIkIQ0gASABQZgcaiIKLgEAIgJBf2oiA0EEdGpBJGoiBUF/NgIAIAEgA0EEdGoiCCAENgIcIAEgA0EEdGogBzYCICABQRhqIANBBHRqIAY2AgAgAUGcHGohCSAEBEAgCSgCACAEaiIDQeYHSgRAIAhBADYCHAUgAyABQaAcaiIIKAIAIgNKBEADQCACQf//A3FB4wBGDQQgDBDnCCAKLgEAIQUgCSgCACAEaiAIKAIAIgJKBEAgBSECDAELCyABIAVBBHRqQRRqIQUFIAMhAgsgBSACIARrIgI2AgAgCCACNgIAIARBAEoEQEEAIQIDQCAAIAIgBmoQ4gEhAyABQcgMaiAFKAIAIAJqQQF0aiADOwEAIAQgAkEBaiICRw0ACwsLIAAgBiAEENkDCyAHBEAgACAGIAFByAxqIA1BAXRqIAcQkgMaIAkgCSgCACAHazYCAAsgASAGIAdqNgIAIAsgCy4BAEF/ajsBACAKIAouAQBBf2o7AQALCwuaEwIKfwN9IwQhCSMEQTBqJAQgCUEYaiEGIAkhBCACIQUDQAJAAn8CQAJAIAVBjYAESARAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIAVBgIAEaw4NAgMODQkKBwgFBgABBAsLQQ8hAwwPC0EQIQMMDgtBESEDDA0LQRYhAwwMC0EdIQMMCwtByQAhAwwKC0HOACEDDAkLQdMAIQMMCAtB1AAhAwwHC0HXACEDDAYLQd4AIQMMBQsFIAVBhYAMTgRAQfcAIQMMBQsgBUGCgAxIBEBB+AAhAwwFCwJAAkAgBUGCgAxrDgMEAwABC0HlACEDDAULC0EDIQMMAwsgBUGAgAhxIQcgASwAEEUEQEErIQMMAwsgB0GBgARyDAELIAVBgIAIcSEIIAEsABBFBEBBOyEDDAILIAhBgIAEcgshBQwBCwsCQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAgA0EPaw5qAAECDg4ODgMODg4ODg4EDg4ODg4ODg4ODg4ODgUODg4ODg4ODg4ODg4ODg4GDg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4HCA4OCQ4ODg4ODgoODg4ODg4LDg4ODg4ODg4ODg4ODg4ODg4MDQ4LIAAgARDpCCABQQA6AA8MDQsgACABEOgIIAFBADoADwwMCyABKAIEIAEoAghGBEAgASgCACICQQBKBEAgASACQX9qNgIACwUgARCRAwsgAUEAOgAPDAsLIAEoAgQgASgCCEYEQCABIAEoAgBBAWo2AgAFIAAgARC4BAsgACABEIIBIAFBADoADwwKCyABKAIEIAEoAghGBEAgASAAIAEoAgAQ8wU2AgAgACABEIIBBSABEJEDCwwJCyAHQQBHIggEQCABEOEBBSABKAIEIAEoAghHBEAgACABELgECwsgACABEIIBIAYgACABKAIAIAEtABAQ8QUgBigCECICBEAgAUEUaiAGIAEsAA8bKgIAIQ0gASACIAYoAgxqIgc2AgAgBCAAIAcQ9gEgBCgCFCIKQQBKBEACQEEAIQIgBCoCACEOA0AgACAHIAIQ2AMiD0MAAIC/Ww0BIA4gD5IiDiANXg0BIAEgASgCAEEBajYCACACQQFqIgIgCkgNAAsLCyAAIAEQggEgAUEBOgAPIAEgDTgCFCAIBEAgASABKAIANgIICwsMCAsgCEEARyIIBEAgARDhAQUgASgCBCABKAIIRwRAIAEQkQMLCyAAIAEQggEgBiAAIAEoAgAgAS0AEBDxBSAGKAIUIgcgBigCDEcEQCABQRRqIAYgASwADxsqAgAhDSABIAc2AgAgBCAAIAcQ9gEgBCgCFCIKQQBKBEACQEEAIQIgBCoCACEOA0AgACAHIAIQ2AMiD0MAAIC/Ww0BIA4gD5IiDiANXg0BIAEgASgCAEEBajYCACACQQFqIgIgCkgNAAsLCyAAIAEQggEgAUEBOgAPIAEgDTgCFCAIBEAgASABKAIANgIICwsMBwsgAUEANgIIIAFBADYCBCABQQA2AgAgAUEAOgAPDAYLIAEgACgCLDYCACABQQA2AgggAUEANgIEIAFBADoADwwFCyAAIAEQggEgARCRAyABLAAQBEAgAUEANgIABSABKAIAIgJBAEoEQANAIAAgAkF/ahDiAUH//wNxQQpHBEAgASABKAIAIgRBf2oiAjYCACAEQQFKDQELCwsLIAFBADoADwwECyAAKAIsIQQgACABEIIBIAEQkQMgASwAEARAIAEgBDYCAAUgASgCACICIARIBEADQCAAIAIQ4gFB//8DcUEKRwRAIAEgASgCAEEBaiICNgIAIAIgBEgNAQsLCwsgAUEAOgAPDAMLIAAgARCCASABEOEBIAEsABAEQCABQQA2AgBBACECBSABKAIAIgJBAEoEQANAAkACfyAAIAJBf2oQ4gFB//8DcUEKRiELIAEoAgAhBCALCwRAIAQhAgwBCyABIARBf2oiAjYCACAEQQFKDQELCwsLIAEgAjYCCCABQQA6AA8MAgsCQAJAAkACQAJAAkACQAJAIAVBhYAMaw4JBgQFAAEHBwIDBwtByQAhAwwIC0HOACEDDAcLIAEoAgQgASgCCEYEQCABEOEBCyABIAAgASgCABDzBSICNgIAIAEgAjYCCCAAIAEQggEMBgsgASgCBCABKAIIRgRAIAEQ4QELIAEgACABKAIAEPIFIgI2AgAgASACNgIIIAAgARCCAQwFCyABEOEBIAFBADYCCCABQQA2AgAgAUEAOgAPDAQLIAEQ4QEgASAAKAIsIgI2AgggASACNgIAIAFBADoADwwDCyAAKAIsIQQgACABEIIBIAEQ4QEgASwAEARAIAEgBDYCACAEIQIFIAEoAgAiAiAESARAA0ACQAJ/IAAgAhDiAUH//wNxQQpGIQwgASgCACECIAwLDQAgASACQQFqIgI2AgAgAiAESA0BCwsLCyABIAI2AgggAUEAOgAPDAILQQMhAwwBCyAFQYCADEgEQCAFQY2ABGsEQEEDIQMMAgsgASgCBCABKAIIRgRAIAEgACABKAIAEPIFNgIAIAAgARCCAQUgACABELgECwwBCwJAAkACQCAFQYCADGsOAgIAAQsgARDhASABIAEoAghBAWo2AgggACABEIIBIAEgASgCCDYCACABQQA6AA8MAgtBAyEDDAELIAAgARCCASABEOEBIAEoAggiAkEASgRAIAEgAkF/aiICNgIICyABIAI2AgAgAUEAOgAPCyADQQNGBEBBACAFIAVB//8DShsiAkEASgRAAkAgBiACOwEAIAJBCkYEQCABLAAQDQELAkACQCABLAAMRQ0AIAEoAgQgASgCCEcNACABKAIAIgIgACgCLE4NACAAIQUgAUEYaiACQQFBARC5BCIEBEAgBCAFIAIQ4gE7AQALIAAgASgCAEEBENkDIAAgASgCACAGQQEQkgMEQCABIAEoAgBBAWo2AgAgAUEAOgAPCwwBCyAAIAEQkwMgACABKAIAIAZBARCSAwRAIAEgASgCAEEBEPcFIAEgASgCAEEBajYCACABQQA6AA8LCwsLBSADQckARgRAIAEoAgQgASgCCEYEQCABKAIAIgIgACgCLEgEQCAAIAEgAkEBENoDCwUgACABEJMDCyABQQA6AA8FIANBzgBGBEAgASgCBCABKAIIRgRAIAAgARCCASABKAIAIgJBAEoEQCAAIAEgAkF/akEBENoDIAEgASgCAEF/ajYCAAsFIAAgARCTAwsgAUEAOgAPCwsLIAkkBAtIAQF/IAFBGGogAiADQQAQuQQiBEEARyADQQBKcQRAQQAhAQNAIAFBAXQgBGogACABIAJqEOIBOwEAIAFBAWoiASADRw0A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CyQAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAAQQNxQZwLahExAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBA3FBmAtqETYACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBlAtqERkACyIAIAEgAiADIAQgBSAGIAcgCCAJIAogAEEBcUGSC2oRTwALHgAgASACIAMgBCAFIAYgByAIIABBA3FBjgtqEU4ACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBigtqETIACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQYgLahFNAAscACABIAIgAyAEIAUgBiAHIABBB3FBgAtqESoACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQf4KahEzAAscACABIAIgAyAEIAUgBiAHIABBA3FB+gpqESsACxoAIAEgAiADIAQgBSAGIABBD3FB6gpqERoACw0AIABB+ClqQQAQwAELHgAgASACIAMgBCAFIAYgByAIIABBAXFB6ApqEUwACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHmCmoRSwALGgAgASACIAMgBCAFIAYgAEEDcUHiCmoRLAALGAAgASACIAMgBCAFIABBD3FB0gpqES0ACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHQCmoRKAALGgAgASACIAMgBCAFIAYgAEEDcUHMCmoRKQALGAAgASACIAMgBCAFIABBA3FByApqEScACxYAIAEgAiADIAQgAEEfcUGoCmoRBgALIAAgASACIAMgBCAFIAYgByAIIAkgAEEBcUGmCmoRSgALHAAgASACIAMgBCAFIAYgByAAQQFxQaQKahFJAAscACABIAIgAyAEIAUgBiAHIABBAXFBogpqEUgACxoAIAEgAiADIAQgBSAGIABBA3FBngpqESMACxgAIAEgAiADIAQgBSAAQQNxQZoKahEPAAscACABIAIgAyAEIAUgBiAHIABBAXFBmApqEUcACxYAIAEgAiADIAQgAEEDcUGUCmoRNAALFQAgASACIAMgAEH/AHFBlAlqEQcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQZIJahEwAAsaACABIAIgAyAEIAUgBiAAQQFxQZAJahEmAAsaACABIAIgAyAEIAUgBiAAQQFxQY4JahEuAAsYACABIAIgAyAEIAUgAEEDcUGKCWoRLwALFgAgASACIAMgBCAAQQNxQYYJahEKAAseACABIAIgAyAEIAUgBiAHIAggAEEBcUGECWoRJAALGgAgASACIAMgBCAFIAYgAEEBcUGCCWoRNQALFAAgASACIAMgAEEPcUHyCGoRNwALFgAgASACIAMgBCAAQQNxQe4GahEOAAsUACABIAIgAyAAQQFxQewGahERAAscACABIAIgAyAEIAUgBiAHIABBAXFB6gZqEUYACxQAIAEgAiADIABBAXFB6AZqEUUACxQAIAEgAiADIABBAXFB3gRqERgACxoAIAEgAiADIAQgBSAGIABBA3FB2gRqEQ0ACxUAQZipBCgCAEE0aiAAQQJ0aigCAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBAXFBggRqEUQACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBB3FB+gNqERcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQ9xQeoDahETAAscACABIAIgAyAEIAUgBiAHIABBD3FB2gNqERQACxoAIAEgAiADIAQgBSAGIABBH3FBugNqERUACxgAIAEgAiADIAQgBSAAQQ9xQaoDahESAAsWACABIAIgAyAEIABBH3FBigNqEQkACxoAIAEgAiADIAQgBSAGIABBAXFBiANqEUMACxgAIAEgAiADIAQgBSAAQQFxQYYDahFCAAsWACABIAIgAyAEIABBAXFBhANqEUEACxwAIAEgAiADIAQgBSAGIAcgAEEBcUGCA2oRQAALGAAgASACIAMgBCAFIABBAXFBwAJqET8ACxYAIAEgAiADIAQgAEEBcUG+AmoRPgALHgAgASACIAMgBCAFIAYgByAIIABBAXFBvAJqET0ACxYAIAEgAiADIAQgAEEBcUG6AmoRPAALFAAgASACIAMgAEEDcUG2AmoRIgALGgAgASACIAMgBCAFIAYgAEEBcUG0AmoRFgALFgAgASACIAMgBCAAQQFxQbIBahElAAsUACABIAIgAyAAQQFxQbABahEMAAsaACABIAIgAyAEIAUgBiAAQQFxQawBahE4AAsUACABIAIgAyAAQQNxQcgAahE7AAsRACABIAIgAEEfcUEoahEIAAsPACABIABBA3FBJGoRHAALDQAgAEEfcUEEahEgAAsPACABIABBAXFBAmoROgALCgAgAEEBcREQAAvS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AiADIAQgBUEPcUHSCmoRLQAMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIAFBADoANCABQQA6ADUgACgCCCIAKAIAKAIUIQMgACABIAIgAkEBIAQgA0EPcUHqCmoRGgAgAQJ/AkAgASwANQR/IAEsADQNAUEBBUEACyEAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAA0CQQQMAwsLIAANAEEEDAELQQMLNgIsDAILCyADQQFGBEAgAUEBNgIgCwsLC0QBAX8gACABKAIIEIUBBEAgASACIAMgBBCFBQUgACgCCCIAKAIAKAIUIQYgACABIAIgAyAEIAUgBkEPcUHqCmoRGgALCxgAIAAgASgCCBCFAQRAIAEgAiADEIcFCwuPAQAgACABKAIIEIUBBEAgASACIAMQhgUFIAAgASgCABCFAQRAAkAgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASACNgIUIAEgASgCKEEBajYCKCABKAIkQQFGBEAgASgCGEECRgRAIAFBAToANgsLIAFBBDYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwsLGgAgACABKAIIEIUBBEAgASACIAMgBBCFBQsLyQEBA38jBCEEIwRBQGskBCAEIQMgACABEIUBBH9BAQUgAQR/IAFB4PQBEJQEIgEEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyABNgIAIAMgADYCCCADQX82AgwgA0EBNgIwIAEoAgAoAhwhACABIAMgAigCAEEBIABBH3FBqApqEQYAIAMoAhhBAUYEfyACIAMoAhA2AgBBAQVBAAsFQQALBUEACwshBSAEJAQgBQt4AQN/IwQhASMEQRBqJAQgASEAAn9BAEGMrgQoAgBB37femgFGDQAaQbMEESEAQYyuBEHft96aATYCAEEACwRAQZSKAyAAEMICBQJ/An9BAEGQrgQoAgAiACgCBEHOlZoSRw0AGiAAKAIACyECIAEkBCACCw8LQQALowICB38BfiMEIQIjBEEwaiQEIAJBGGohASACQRBqIQMgAiEEIAJBJGohBRDLCyIABEAgACgCACIABEAgACkDMCIHQoB+g0KA1qyZ9MiT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AgAhBCAAEIoCIAAoAiAQtgcgBAsQigILCyAAQdQyaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAwRAIAMQjRIgAxBBCyABQQFqIgEgAigCAEgNAAsLIAIQTyAAQeAyahBPIABB7DJqEE8gAEGUM2pBADYCACAAQfgyahBPIABBhDNqEE8gAEGgNWpBADYCACAAQZgzakEANgIAIABBnDNqQQA2AgAgAEHcM2pBADYCACAAQdgzakEANgIAIABB9DNqQQA2AgAgAEH4M2oQTyAAQYQ0ahBPIABBkDRqEE8gAEGcNGoQTyAAQag0ahBPIABBwDdqIQJBACEBA0AgAUEMbCACahBPIAFBAWoiAUECRw0ACyAAQdw3ahDdBCAAQYTYAGoQTyAAQZA6ahBPIABBnDpqEE8gAEGoOmoQTyAAQcDYAGoiAigCAEEASgRAQQAhAQNAIAIgARBVKAIAEPYHIAFBAWoiASACKAIASA0ACwsgAhBPIABBtNgAahBPIABB0NgAaiICKAIAIgFBzIECKAIARiABRXJFBEAgARDDAhogAkEANgIACyAAQdTYAGoQTyAAQQA6AAALCwsAIAAQngUgABBUC00BAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACQYz8ATYCACACIAE2AgggAhCvBSAAIAJBBGoQ5AMhAyACEJ4FIAIkBCADCwsAIAAQnwUgABBUC08BAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADQfT7ATYCACADIAE2AgggAxDGByAAIANBBGogAhCABiEEIAMQnwUgAyQEIAQLMwAgAEGYqQQoAgAgABsiABCxD0GYqQQoAgAgAEYEQEEAEIoCCyAABEAgABDkCSAAEEELC1QBAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQygEgACACIAMQTiIAKAIARhC5AiIBBEAgACACNgIACyABIQQgAxC0ASADJAQgBAtWAgJ/An0jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQcSABQQhqIgIgAEE8aiAAQUBrIAEQywcgAhA9IQQgAhAxIAEQMSABJAQgBAsHACABELgPC4kBAgJ/An0jBCEJIwRBMGokBEGwqQQoAgAiCkE8aiABEIgBIApBQGsg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QYAHaiIKEDogAEGwB2ohAyAAQYgHaiEBA0AgARA6IAFBCGoiASADRw0ACyAAQbwIaiEDIABBlAhqIQEDQCABEDogAUEIaiIBIANHDQALIABB+ClqEGggAEEAQYgqEGoaIAJDAACAv0MAAIC/EDIgBSACKQMANwIAIABDiYiIPDgCECAAQwAAoEA4AhQgAEHmhQI2AhggAEHwhQI2AhwgAEOamZk+OAIgIABDAADAQDgCJCAAQSxqIgFCfzcCACABQn83AgggAUJ/NwIQIAFCfzcCGCABQn83AiAgAUJ/NwIoIAFCfzcCMCABQn83AjggAUFAa0J/NwIAIAFCfzcCSCABQX82AlAgAEMAAIA+OAKAASAAQ83MTD04AoQBIABBADYCiAEgAEEANgKMASAAQwAAgD84ApABIABBADYCmAEgAEEAOgCUASACQwAAgD9DAACAPxAyIAYgAikDADcCACACQwAAAABDAAAAABAyIAggAikDACILNwIAIAcgCzcCACAAQQA6ALUBIABBAToAtgEgAEEBOgC3ASAAQQA6ALgBIABCADcCvAEgAEIANwLEASAAQQA2AswBIABBAzYC0AEgAEECNgLUASAAQQA2AtgBIABBAzYC3AEgAEEANgLgASACQ///f/9D//9//xAyIAkgAikDADcCACACQ///f/9D//9//xAyIAogAikDADcCACAAQwAAwEA4AihBACEBA0AgAEGACGogAUECdGpDAACAvzgCACAAQewHaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEFRw0AC0EAIQEDQCAAQdAYaiABQQJ0akMAAIC/OAIAIABB0AhqIAFBAnRqQwAAgL84AgAgAUEBaiIBQYAERw0AC0EAIQEDQCAAQdAoaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEVRw0ACyAEJAQLNAECfyMEIQQjBEEQaiQEIARBCGoiBSABIAIQwgogBCADEG8gACAFIAQQgQEgBBAxIAQkBAtCAQJ/IwQhBCMEQRBqJAQgBCADEDQgBEEEaiIDIAEgAiAEIABBA3FBhglqEQoAIAMQfSEFIAMQMSAEEDEgBCQEIAULKwEBfxDVByIBQZquBCABGyEBIABCADcCACAAQQA2AgggACABIAEQXBCTAQsxAQF/IwQhASMEQRBqJAQgASAAEJ8BIAEoAgAgASABLAAL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C0EASAR/IAAoAgAFIAALIAEQqwgLGAAgACwAC0EASAR/IAAoAgAFIAALEJMKCwkAIAAgARDiEAsqAQJ/An8jBCEBIwRBEGokBEHEvgJBBEHAywFBicsCQRJBFxACIAELJAQLCwAgACABIAIQ4BALCQAgACABEN8QCwsAIAAgASACEN4QCxgAIAAsAAtBAEgEfyAAKAIABSAACxCpAwsJACAAIAEQ3BALGAAgACwAC0EASAR/IAAoAgAFIAALEKsDCyoBAn8CfyMEIQEjBEEQaiQEQem9AkEFQdDLAUG7zAJBDUELEAIgAQskBAsNACAAIAEgAiADENsQCyoBAn8CfyMEIQEjBEEQaiQEQd69AkEFQfDLAUG7zAJBDEEKEAIgAQskBAsNACAAIAEgAiADENoQCxoAIAAsAAtBAEgEfyAAKAIABSAACyABEK8ICwcAIAAQ2RALKgECfwJ/IwQhASMEQRBqJARB6bwCQQRBkMwBQd3NAkECQQEQAiABCyQECwsAIAAgASACENcQCyoBAn8CfyMEIQEjBEEQaiQEQeG8AkEDQez4AUHjzQJBEUEdEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHZvAJBA0H4+AFB480CQRBBHBACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB0bwCQQNBhPkBQePNAkEPQRsQAiABCyQECxoAIAAsAAtBAEgEfyAAKAIABSAACyABELUICyoBAn8CfyMEIQEjBEEQaiQEQbO8AkEEQaDMAUGJywJBEUEVEAIgAQskBAscACAALAALQQBIBH8gACgCAAUgAAsgASACEM8FCwkAIAAgARDVEAsRACAAIAEgAiADIAQgBRDUEAsqAQJ/An8jBCEBIwRBEGokBEGPvAJBBkGwzAFB6M0CQRFBBhACIAELJAQLDwAgACABIAIgAyAEEM0QCw0AIAAgASACIAMQyhALKgECfwJ/IwQhASMEQRBqJARB9bsCQQVB0MwBQbvMAkELQQgQAiABCyQECw0AIAAgASACIAMQyBALCwAgACABIAIQxxALNQEBfyAALAALQQBIBEAgACgCACEACxA8IgIsAH8Ef0EABSACIAAQXiABQRpyIABBABDTAgsLBwAgABC9CAsYACAALAALQQBIBH8gACgCAAUgAAsQvggLKgECfwJ/IwQhASMEQRBqJARB4LoCQQRB8MwBQYnLAkEQQRMQAiABCyQECwsAIAAgASACEMUQCyoBAn8CfyMEIQEjBEEQaiQEQdO6AkEEQYDNAUGJywJBD0ESEAIgAQskBAsLACAAIAEgAhDDEAsyAQF/IAAsAAtBAEgEQCAAKAIAIQALEDwiAiwAfwR/QQAFIAIgABBeIAEgAEEAENMCCwsqAQJ/An8jBCEBIwRBEGokBEG7ugJBA0Gc+QFBmssCQSBBDhACIAELJAQLCQAgACABEMEQCyoBAn8CfyMEIQEjBEEQaiQEQbC6AkEDQaj5AUGaywJBH0ENEAIgAQskBAsJACAAIAEQvxALGAAgACwAC0EASAR/IAAoAgAFIAALENQFCw0AIAAgASACIAMQvhALDQAgACABIAIgAxC8EAsLACAAIAEgAhC4EAsLACAAIAEgAhC2EAsLACAAIAEgAhC1EAsqAQJ/An8jBCEBIwRBEGokBEHHuQJBCUGwzQFBvc4CQQRBAxACIAELJAQLFQAgACABIAIgAyAEIAUgBiAHELMQCxEAIAAgASACIAMgBCAFEJcQCxMAIAAgASACIAMgBCAFIAYQlhALKgECfwJ/IwQhASMEQRBqJARBorkCQQhB4M0BQYfRAkEIQQgQAiABCyQECxMAIAAgASACIAMgBCAFIAYQlBALDwAgACABIAIgAyAEEI4QCw8AIAAgASACIAMgBBCLEAttAQJ/IAAoAgAQ9gcgAEHgBGoiASgCAARAA0AgASACEKsEEPUHIAJBAWoiAiABKAIARw0ACwsgAEH4BGoQuAUgASgCCCIBBEAgARBBCyAAQdQEahBnIAAoAsgDIgEEQCABEEELIABByAFqEJYSCw8AIAAgASACIAMgBBCJEAsPACAAIAEgAiADIAQQhhALKgECfwJ/IwQhASMEQRBqJARB67gCQQVBoM4BQbvMAkEJQQUQAiABCyQECw0AIAAgASACIAMQhBALEQAgACABIAIgAyAEIAUQgxALEQAgACABIAIgAyAEIAUQghALEQAgACABIAIgAyAEIAUQgRALEQAgACABIAIgAyAEIAUQ/g8LMwEBfyAAKALYASIBBEAgARBBCyAAQcQBahBnIABBuAFqEGcgAEGsAWoQZyAAQYgBahBnCyoBAn8CfyMEIQEjBEEQaiQEQay4AkEIQeDOAUGH0QJBB0EHEAIgAQskBAsTACAAIAEgAiADIAQgBSAGEPwPCyoBAn8CfyMEIQEjBEEQaiQEQaC4AkEHQYDPAUH70QJBAUEBEAIgAQskBAsRACAAIAEgAiADIAQgBRD2DwsLACAAIAEgAhDyDwsLACAAIAEgAhDxDwsLACAAIAEgAhDwDwsqAQJ/An8jBCEBIwRBEGokBEH5twJBBkGgzwFB6M0CQQ9BARACIAELJAQLDwAgACABIAIgAyAEEO4PCw0AIAAgASACIAMQ7Q8LDQAgACABIAIgAxDsDwsNACAAIAEgAiADEOsPCyoBAn8CfyMEIQEjBEEQaiQEQcq3AkEHQeDPAUHy0QJBDkEIEAIgAQskBAsRACAAIAEgAiADIAQgBRDpDwsqAQJ/An8jBCEBIwRBEGokBEG3twJBCEGA0AFBh9ECQQZBBhACIAELJAQLEQAgACABIAIgAyAEIAUQ5w8LKgECfwJ/IwQhASMEQRBqJARBrbcCQQdBoNABQfLRAkENQQcQAiABCyQECw8AIAAgASACIAMgBBDiDwsqAQJ/An8jBCEBIwRBEGokBEGitwJBCUHA0AFBvc4CQQNBAhACIAELJAQLFQAgACABIAIgAyAEIAUgBiAHEN0PCyoBAn8CfyMEIQEjBEEQaiQEQZS3AkEJQfDQAUG9zgJBAkEBEAIgAQskBAsVACAAIAEgAiADIAQgBSAGIAcQ1w8LEQAgACABIAIgAyAEIAUQ1Q8LEQAgACABIAIgAyAEIAUQ1A8LEQAgACABIAIgAyAEIAUQ0w8LEQAgACABIAIgAyAEIAUQ0Q8LKgECfwJ/IwQhASMEQRBqJARB4bYCQQpBwNEBQdXSAkEBQQEQAiABCyQECxcAIAAgASACIAMgBCAFIAYgByAIEM8PCxMAIAAgASACIAMgBCAFIAYQzg8LEwAgACABIAIgAyAEIAUgBhDNDwsTACAAIAEgAiADIAQgBSAGEMwPCxMAIAAgASACIAMgBCAFIAYQyQ8LEQAgACABIAIgAyAEIAUQxw8LCwAgACABIAIQxA8LKgECfwJ/IwQhASMEQRBqJARBkLYCQQRBsNIBQeHSAkECQQEQAiABCyQECwsAIAAgASACEMIPCxcAIAAgASACIAMgBCAFIAYgByAIEMEPCxcAIAAgASACIAMgBCAFIAYgByAIELoPCwsAIAAgASACELcPCxoAIAAsAAtBAEgEfyAAKAIABSAACyABELkCCyoBAn8CfyMEIQEjBEEQaiQEQc61AkEEQfDSAUGJywJBDkEJEAIgAQskBAsLACAAIAEgAhC1DwsJACAAIAEQsw8LKgECfwJ/IwQhASMEQRBqJARBubUCQQhBgNMBQYfRAkEEQQEQAiABCyQECxMAIAAgASACIAMgBCAFIAYQrw8LKgECfwJ/IwQhASMEQRBqJARBs7UCQQdBoNMBQZ/TAkEBQQQQAiABCyQECxEAIAAgASACIAMgBCAFEK0PCwkAIAAgARCsDwsaACAALAALQQBIBH8gACgCAAUgAAsgARCDCQsYACAALAALQQBIBH8gACgCAAUgAAsQxAQLCQAgACABEKkPC6cEAgF/AX4jBCEBIwRBEGokBCAAEDogAEEIahA6IABBEGoQOiAAQRhqEDogAEEgahA6IABBLGoQOiAAQcwAahBmIABB3ABqEGYgAEGAAWoQOiAAQYgBahBoIABBADYCsAEgAEEANgKsASAAQQA2ArQBIABBuAFqEGggAEHEAWoQaCAAQQA2AtQBIABBADYC0AEgAEEANgLYASAAQegBahDnAiAAQewBahDnAiAAQfABahDnAiABQwAAAABDAAAAABAyIAAgASkDACICNwIYIAAgAjcCECAAIAI3AgggACACNwIAIAFDAAAAAEMAAAAAEDIgACABKQMAIgI3AiwgACACNwIgIABDAAAAADgCNCAAQwAAAAA4AiggAEMAAIC/OAI4IABCADcCPCAAQgA3AkQgARBmIAAgASkCADcCXCAAIAEpAgg3AmQgACABKQIANwJMIAAgASkCCDcCVCAAQQA2AnggAEEANgJ0IABBADYCbCAAQQE2AnAgAEEAOgB8IABBADoAfSAAQQA6AH4gAUMAAAAAQwAAAAAQMiAAIAEpAwA3AoABIABBADYClAEgAEEBNgKcASAAQQE2ApgBIABDAAAAADgCpAEgAEEANgKgASAAQwAAgL84AqgBIABCADcC3AEgAEEANgLkASABEOcCIAAgASgCADYC6AEgARDnAiAAIAEoAgA2AuwBIAEQ5wIgACABKAIANgLwASAAQQA2AvQBIAEkBAsaACAALAALQQBIBH8gACgCAAUgAAtBABC5AQsHACAAEKAPC9AHAgV/AX4jBCEFIwRBEGokBCAFIQMgAEEMahA6IABBFGoQOiAAQRxqEDogAEEkahA6IABBLGoQOiAAQTRqEDogAEE8ahA6IABB2ABqEDogAEHgAGoQOiAAQegAahA6IABB8ABqEDogAEG4AWoQOiAAQcABahA6IABByAFqEMoSIABBwANqIgYiBEEANgIEIARBADYCACAEQQA2AgggAEHMA2oQZiAAQdwDahBmIABB7ANqEGYgAEH8A2oQZiAAQYwEahBmIABBpARqEN4DIABB1ARqEGggAEEANgLkBCAAQQA2AuAEIABBADYC6AQgAEH4BGoiByABQbwxahD4ByAAQagGaiEEIABBiAZqIQEDQCABEGYgAUEQaiIBIARHDQALIAAgAhDaBjYCACAAQQRqIgEgAkEAQQAQuwE2AgAgBiABEHggAEEANgIIIANDAAAAAEMAAAAAEDIgACADKQMANwIMIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AhwgACAINwIUIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AjQgACAINwIsIANDAAAAAEMAAAAAEDIgACADKQMANwI8IABDAAAAADgCRCAAQwAAAAA4AkggACACEFxBAWo2AkwgACAAQf6FAhBeNgJQIABBADYCVCADQwAAAABDAAAAABAyIAAgAykDADcCWCADQ///f39D//9/fxAyIAAgAykDADcCYCADQwAAAD9DAAAAPxAyIAAgAykDADcCaCADQwAAAABDAAAAABAyIAAgAykDADcCcCAAQQA7AYQBIABCADcCeCAAQQA7AYABIABBADoAggEgAEF/OwGGASAAQX87AYgBIABBADYCjAEgAEF/NgKUASAAQX82ApABIABBADoAmAEgAEEANgKcASAAQX82AqABIABBADYCqAEgAEEANgKkASAAQQ82ArQBIABBDzYCsAEgAEEPNgKsASADQ///f39D//9/fxAyIAAgAykDACIINwLAASAAIAg3ArgBIABBfzYCnAQgAEMAAAAAOAKgBCAAQwAAgD84AuwEIABBfzYC8AQgACAHNgL0BCAAIAAoAgA2AqQFIABBADYChAYgAEEANgKABiAAQgA3AuwFIABCADcC9AUgAxBmIAAgAykCADcCmAYgACADKQIINwKgBiAAIAMpAgA3AogGIAAgAykCCDcCkAYgAEEANgL8BSAAQX82AqwGIABBfzYCqAYgAEH/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ICAtICAgICAgICAgIFguWCAgICAgICAgICAtWC4uLi4uWCAgICAgICAgICAtICAgICAgICAgIFguLi4uLlgtICAgIFguLlggICAgICAgICAtLS0gICAgICAgICAtWFhYLlhYWC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtWC4uLi5YICAgICAgICAgICAtICAgICAgICAgICBYLi4uLlgtICAgIFguLlggICAgICAgICBYICAgICAgICAgICAtICBYLlggIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtWC4uLlggICAgICAgICAgICAtICAgICAgICAgICAgWC4uLlgtICAgIFguLlggICAgICAgICBYWCAgICAgICAgICAtICBYLlggIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtWC4uWC5YICAgICAgICAgICAtICAgICAgICAgICBYLlguLlgtICAgIFguLlggICAgICAgICBYLlggICAgICAgICAtICBYLlggIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtWC5YIFguWCAgICAgICAgICAtICAgICAgICAgIFguWCBYLlgtICAgIFguLlhYWCAgICAgICBYLi5YICAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWFggICBYLlggICAgICAgICAtICAgICAgICAgWC5YICAgWFgtICAgIFguLlguLlhYWCAgICBYLi4uWCAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgWC5YICAgICAgICAtICAgICAgICBYLlggICAgICAtICAgIFguLlguLlguLlhYICBYLi4uLlggICAgICAtICBYLlggIC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgIFguWCAgICAgICAtICAgICAgIFguWCAgICAgICAtICAgIFguLlguLlguLlguWCBYLi4uLi5YICAgICAtICBYLlggIC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICBYLlggICAgICAtICAgICAgWC5YICAgICAgICAtWFhYIFguLlguLlguLlguLlhYLi4uLi4uWCAgICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgWC5YICAgWFgtWFggICBYLlggICAgICAgICAtWC4uWFguLi4uLi4uLlguLlhYLi4uLi4uLlggICAtICBYLlggIC0gICBYLlggICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgIFguWCBYLlgtWC5YIFguWCAgICAgICAgICAtWC4uLlguLi4uLi4uLi4uLlhYLi4uLi4uLi5YICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgICBYLlguLlgtWC4uWC5YICAgICAgICAgICAtIFguLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uWCAtWFhYLlhYWC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICAgICAgWC4uLlgtWC4uLlggICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uLlgtWC4uLi4uWC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgICAgICBYLi4uLlgtWC4uLi5YICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uWFhYWFgtWFhYWFhYWC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgICAgIFguLi4uLlgtWC4uLi4uWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uLlhYLi4uWC4uWCAgICAtLS0tLS0tLS0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtWFhYWFhYWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uWCBYLi5YIFguLlggICAtICAgICAgIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tICAgIFguLi4uLi4uLi4uWCBYLlggIFguLlggICAtICAgICAgIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAtICAgIFguLi4uLi4uLi4uWCBYWCAgICBYLi5YICAtICAgICAgIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICBYLi5YICAgICAgICAgIC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICAgWFggICAgICAgICAgIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAtICAgICBYWFhYWFhYWFhYICAtLS0tLS0tLS0tLS0gICAgICAgIC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0gICAgICAgICAgICAgICAgICAgIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAQaAiC8xdN10pIyMjIyMjI2hWMHFzJy8jIyNbKSwjIy9sOiQjUTY+IyM1W240Mj5jLVRIYC0+PiMvZT4xMU5OVj1CdigqOi5GP3V1IyhnUlUubzBYR0hgJHZoTEcxaHh0OT9XYCMsNUxzQ3AjLWk+LnIkPCQ2cEQ+TGInOzlDcmM2dGdYbUtWZVUyY0Q0RW8zUi8yKj5dYihNQzskalBmWS47aF5gSVdNOTxMaDJUbFMrZi1zJG82UTxCV0hgWWlVLnhmTHEkTjskMGlSL0dYOlUoamNXMnAvVypxPy1xbW5VQ0k7akhTQWlGV00uUiprVUBDPUdIP2E5d3A4ZiRlLi00XlFnMSlRLUdMKGxmKHIvN0dyUmd3ViVNUz1DI2A4TkQ+UW8jdCdYIyh2I1k5dzAjMUQkQ0lmO1cnI3BXVVBYT3V4WHVVKEg5TSgxPHEtVUUzMSNeLVYnOElSVW83UWYuL0w+PUtlJCQnNUYlKV0wXiMwWEBVLmE8cjpRTHRGc0xjTDYjI2xPaikjLlk1PC1SJktnTHdxSmZMZ04mO1E/Z0leI0RZMnVMaUBeck1sOXQ9Y1dxNiMjd2VnPiRGQmpWUVRTRGdFS25JUzdFTTk+Wlk5dzAjTDs+PiNNeCY0TXZ0Ly9MW01rQSNXQGxLLk4nWzAjN1JMXyYjdytGJUh0RzlNI1hMYE4mLixHTTRQZzstPG5MRU5odng+LVZzTS5NMHJKZkxIMmVUTWAqb0pNSFJDYE5rZmltTTJKLFctalhTOilyMHdLI0BGZ2UkVT5gdydON0cjJCNmQiMkRV4kIzo5OmhrK2VPZS0tNngpRjcqRSU/NzYlXkdNSGVQVy1aNWwnJkdpRiMkOTU2OnJTP2RBI2ZpSzopWXIrYCYjMGpAJ0RiRyYjXiRQRy5MbCtETmE8WENNS0VWKk4pTE4vTipiPSVRNnBpYS1YZzhJJDxNUiYsVmRKZSQ8KDdHO0NrbCcmaEY7OyQ8Xz1YKGIuUlMlJSkjIyNNUEJ1dUUxVjp2JmNYJiMybSMoJmNWXWBrOU9oTE1ibiVzJEcyLEIkQmZEM1gqc3A1I2wsJFIjXXhfWDF4S1glYjVVKltyNWlNZlVvOVVgTjk5aEcpdG0rL1VzOXBHKVhQdWA8MHMtKVdUdChnQ1J4SWcoJTZzZmg9a3RNS24zaik8NjxiNVNrXy8wKF5dQWFOIyhwL0w+JlZaPjFpJWgxUzl1NW9AWWFhVyRlK2I8VFdGbi9aOk9oKEN4MiRsTkVvTl5lKSNDRllAQEk7Qk9RKnNSd1p0WnhSY1U3dVc2Q1hvdzBpKD8kUVtjak9kW1A0ZCldPlJPUE9weFRPN1N0d2kxOjppQjFxKUNfPWRWMjZKOzIsXTdvcCRddVFyQF9WNyRxXiVsUXd0dUhZXT1EWCxuM0wjMFBIRE80Zjk+ZENATz5IQnVLUHBQKkUsTitiM0wjbHBSL01yVEVILklBUWsuYT5EWy5lO21jLnhdSXAuUEheJy9hcVVPLyQxV3hMb1cwW2lMQTxRVDs1SEtEK0BxUSdOUSgzX1BMaEU0OFIucUFQU3dRMC9XSz9aLFt4Py1KO2pRVFdBMFhAS0ooX1k4Ti06L003NDovLVpwS3JVc3M/ZCNkWnFdREFia1UqSnFrTCtud1hAQDQ3YDU+dz00aCg5LmBHQ1JVeEhQZVJgNU1qb2woZFVXeFphKD5TVHJQa3JKaVd4YDVVN0YjLmcqanJvaEdnYGNnOmxTVHZFWS9FVl83SDRROVtaJWNudjtKUVlaNXEubDdaZWFzOkhPSVpPQj9HPE5hbGQkcXNdQF1MPEo3YlIqPmd2Ols3TUkyaykuJzIoJDVGTlAmRVEoLClVXVddK2ZoMTgudnNhaTAwKTtEM0A0a3U1UD9EUDhhSnQrO3FVTV09K2InOEA7bVZpQkt4MERFWy1hdUdsODpQSiZEaitNNk9DXU9eKCgjI11gMGkpZHJUOy03WGA9LUgzW2lnVW5QRy1OWmxvLiNrQGgjPU9yayRtPmE+JC0/VG0kVVYoPyNQNllZIycvIyMjeGU3cS43M3JJMypwUC8kMT5zOSlXLEpyTTdTTl0nLzRDI3YkVWAwI1YuWzA+eFFzSCRmRW1QTWdZMnU3S2goRyVzaUlmTFNvUytNSzJlVE0kPTUsTThwYEEuO19SJSN1W0sjJHg0QUc4LmtLL0hTQj09LSdJZS9RVHRHPy0uKl5OLTRCL1pNXzNZbFFDNyhwN3EpJl0oYDZfYykkLypKTChMLV4oXSR3SU1gZFB0T2RHQSxVMzp3Mk0tMDxxLV1MXz9eKTF2dycuLE1Sc3FWci5MO2FOJiMvRWdKKVBCY1stZj4rV29tWDJ1N2xxTTJpRXVtTVRjc0Y/LWFUPVotOTdVRW5YZ2xFbjFLLWJuRU9gZ3VGdChjJT07QW1fUXNAakxvb0kmTlg7XTAjajQjRjE0O2dsOC1HUXBnd2hycTgnPWxfZi1iNDknVU9xa0x1Ny0jI29EWTJMKHRlK01jaCZnTFl0SixNRXRKZkxoJ3gnTT0kQ1MtWlolUF04Ylo+I1M/WVkjJVEmcSczXkZ3Jj9EKVVETnJvY00zQTc2Ly9vTD8jaDdnbDg1W3FXL05ET2slMTZpajsrOjFhJ2lOSWRiLW91OC5QKncsdjUjRUkkVFdTPlBvdC1SKkgnLVNFcEE6ZylmK08kJSVga0EjRz04Uk1tRzEmT2A+dG84YkNdVCYkLG4uTG9PPjI5c3AzZHQtNTJVJVZNI3E3J0RIcGcrI1o5JUhbSzxMJWEyRS1ncldWTTNAMj0tazIydExdNCQjIzZXZSc4VUpDS0VbZF89JXdJOyc2WC1Hc0xYNGpeU2dKJCMjUip3LHZQM3dLI2lpVyYjKmheRCZSP2pwNysvdSYjKEFQIyNYVThjJGZTWVctSjk1Xy1EcFtnOXdjTyYjTS1oMU9jSmxjLSp2cHcweFVYJiNPUUZLTlhAUUknSW9QcDduYixRVS8vTVEmWkRrS1ApWDxXU1ZMKDY4dVZsJiNjJ1swIyhzMVgmeG0kWSVCNypLOmVEQTMyM2o5OThHWGJBI3B3TXMtamdEJDlRSVNCLUFfKGFONHhvRk1eQEM1OEQwK1ErcTNuMCMzVTFJbkRqRjY4Mi1Tak1YSkspKGgkaHh1YV9LXXVsOTIlJ0JPVSYjQlJSaC1zbGc4S0RscjolTDcxS2E6LkE7JVlVTGpEUG1MPExZczhpI1h3Sk9ZYUtQS2MxaDonOUtlLGcpYiksNzg9STM5Qjt4aVkkYmdHdy0mLlppOUluWER1WWElRypmMkJxN21uOV4jcDF2diUjKFdpLTsvWjVobzsjMjo7JWQmI3g5djY4QzVnP250WDBYKXBUYDslcEIzcTdtZ0dOKTMlKFA4blRkNUw3R2VBLUdMQCslSjN1MjooWWY+ZXRgZTspZiNLbTgmK0RDJEk0Nj4jS3JdXXUtWz05OXR0czEucWIjcTcyZzFXSk84MXErZU4nMDMnZU0+JjFYeFktY2FFbk9qJTJuOCkpLD9JTFI1Xi5JYm48LVgtTXE3W2E4MkxxOkYmI2NlK1M5d3NDSyp4YDU2OUU4ZXcnSGVdaDpzSVsyTE0kW2d1a2EzWlJkNjp0JUlHOjskJVlpSjpOcT0/ZUF3Oy86bm5EcTAoQ1ljTXBHKXFMTjQkIyMmSjxqJFVwSzxRNGExXU11cFdeLXNqXyQlW0hLJSdGIyMjI1FSWko6OlkzRUdsNCdAJUZraUFPZyNwWyMjT2BndWtUZkJIYWdMPExIdyVxJk9WMCMjRj02LzpjaEltMEBlQ1A4WF06a0ZJJWhsOGhnT0BSY0JoUy1AUWIkJSttPWhQRExnKiVLOGxuKHdjZjMvJ0RXLSQubFI/bltuQ0gtZVhPT05USmxoOi5SWUYlMydwNnNxOlVJTUE5NDUmXkhGUzg3QCRFUDJpRzwtbENPJCVjYHVLR0QzckMkeDBCTDhhRm4tLWBrZSUjSE1QJ3ZoMS9SJk9fSjkndW0sLjx0eFtAJXdzSmsmYlVUMmAwdU12N2dnI3FwL2lqLkw1NidobDsuczVDVXJ4ak9NNy0jIy5sK0F1J0EmTzotVDcyTF1QYCY9O2N0cCdYU2NYKnJVLj4tWFR0LCVPVlU0KVMxK1ItI2RnMC9Obj9LdTFeMGYkQipQOlJvd3dtLWAwUEtqWURETSczXWQzOVZaSEVsNCwuaiddUGstTS5oXiY6MEZBQ20kbWFxLSZzZ3cwdDcvNiheeHRrJUx1SDg4RmotZWttPkdBI18+NTY4eDYoT0ZSbC1JWnBgJmIsX1AnJE08Sm5xNzlWc0pXL21XUypQVWlxNzY7XS9OTV8+aExieGZjJG1qYCxPOyYlVzJtYFpoOi8pVWV0dzphSiVdSzloOlRjRl11Xy1TajksVkszTS4qJyYwRFtDYV1KOWdwOCxrQVddJSg/QSVSJGY8LT5adHMnXmtuPS1eQGM0JS1wWTZxSSVKJTFJR3hmTFU5Q1A4Y2JQbFh2KTtDPWIpLDwybU92UDh1cCxVVmYzODM5YWNBV0FXLVc/I2FvL14jJUtZbzhmUlVMTmQyLj4lbV1VSzpuJXIkJ3N3XUo7NXBBb09fIzJtTzNuLCc9SDUoZXRIZypgK1JMZ3Y+PTRVOGd1RCRJJUQ6Vz4tcjVWKiVqKlc6S3Zlai5McCQ8TS1TR1onOitRX2srdXZPU0xpRW8oPGFEL0s8Q0NjYCdMeD4nPzsrK08nPigpakxSLV51NjhQSG04WkZXZStlajhoOjlyNkwqMC8vYyZpSCZSOHBSYkEjS2ptJXVwVjFnOmFfI1VyN0Z1QSModFJoIy5ZNUsrQD8zPC04bTAkUEVuO0o6cmg2P0k2dUc8LWB3TVUnaXJjcDBMYUVfT3RsTWImMSM2VC4jRkRLdSMxTHcldSUrR00rWCdlP1lMZmpNW1ZPME1idUZwNzs+USYjV0lvKTBARiVxN2MjNFhBWE4tVSZWQjxIRkYqcUwoJC9WLDsoa1haZWpXT2A8WzU/P2V3WSgqOT0ld0RjOyx1PCc5dDNXLShIMXRoMytHXXVjUV1rTHM3ZGYoJC8qSkxdQCp0N0J1X0czXzdtcDc8aWFRak9ALmtMZzt4M0IwbHFwN0hmLF5aZTctIyNAL2M1OE1vKDM7a25wMCUpQTc/LVcrZUknbzgpYjxuS253J0hvOEM9WT5wcUI+MGllJmpoWls/aUxSQEBfQXZBLWlRQyg9a3NSWlJWcDdgLj0rTnBCQyVyaCYzXVI6OFhEbUU1XlY4Tyh4PDxhRy8xTiQjRlgkMFY1WTZ4J2FFckkzSSQ3eCVFYHY8LUJZLCklLT9Qc2YqbD8lQzMubU0oPS9NMDpKeEcnPzdXaEglbydhPC04MGcwTkJ4b08oR0g8ZE1dbi4rJXFAakg/Zi5Vc0oyR2dzJjQ8LWU0NyZLbCtmLy85QGBiKz8uVGVOXyZCOFNzP3Y7XlRyaztmI1l2SmtsJnckXT4tK2s/Jyg8Uzo2OHRxKldvRGZadSc7bU0/OFhbbWE4VyUqYC09O0QuKG5jNy87KWc6VDE9XkokJkJSVigtbFRtTkI2eHFCW0AwKm8uZXJNKjxTV0ZddTI9c3QtKig2dj5eXShILmFSRVpTaSwjMTpbSVhhWkZPbTwtdWkjcVVxMiQjI1JpO3U3NU9LIyhSdGFXLUstRmBTK2NGXXVOYC1LTVElclAvWHJpLkxSY0IjIz1ZTDNCZ00vM01EP0BmJjEnQlctKUp1PEwyNWdsOHVoVm0xaEwkIyMqOCMjIydBMy9Ma0tXKyhecldYPzVXXzhnKWEobSZLOFA+I2JtbVdDTWtrJiNUUmBDLDVkPmcpRjt0LDQ6QF9sOEcvNWg0dlVkJSYlOTUwOlZYRCdRZFdvWS1GJEJ0VXdtZmUkWXFMJzgoUFdYKFA/XkBQbzMkIyNgTVNzP0RXQlovUz4rNCU+ZlgsVld2L3cnS0RgTFA1SWJIO3JUVj5uM2NFSzhVI2JYXWwtL1YrXmxqMzt2bE1iJls1WVE4I3Bla1g5SlAzWFVDNzJMLCw/K05pJmNvN0Fwbk8qNU5LLCgoVy1pOiQsa3AnVURBTyhHMFNxN01WakpzYkl1KSdaLCpbPmJyNWZYXjpGUEFXci1tMktnTDxMVU4wOThrVEYmI2x2bzU4PS92akRvOy47KUthKmhMUiMvaz1yS2J4dVZgPlFfbk42Jzh1VEcmIzFUNWcpdUx2Ojg3M1VwVExnSCsjRmdwSCdfbzE3ODBQaDhLbXhRSjgjSDcyTDRANzY4QFRtJlFoNENCLzVPdm1BJixRJlFiVW9pJGFfJTNNMDFIKTR4N0leJktRVmd0Rm5WKztbUGM+W200ay8vLF0xPyNgVllbSnIqMyYmc2xSZkxpVlpKOl0/PUszU3c9WyQ9dVJCPzN4azQ4QGFlZzxaJzwkIzRIKTYsPmUwalQ2J04jKHElLk89PzJTXXUqKG08LVY4SicoMSlHXVs2OGhXJDUncVtHQyY1amBURT9tJ2VzRkdOUk0paixmZlo/LXF4ODstPmc0dCo6Q0lQL1tRYXA3LzknIygxc2FvN3ctLnFOVWRrSil0Q0YmI0JeO3hHdm4ycjlGRVBGRkZjTEAuaUZOa1R2ZSRtJSNRdlFTOFVAKTJaKzNLOkFLTTVpc1o4OCtkS1EpVzY+SiVDTDxLRT5gLmQqKEJgLW44RDlvSzxVcF1jJFgkKCwpTThadDcvW3Jka3FUZ2wtMGN1R012Jz8+LVhWMXFbJy01aydjQVo2OWU7RF8/JFpQUCZzXis3XSkkKiQjQFFZaTksNVAmIzlyKyQlQ0U9Njg+SzhyMD1kU0MlJShAcDcubTdqaWxRMDInMC1WV0FnPGEvJyczdS49NEwkWSk2ay9LOl9bMz0manZMPEwwQy8yJ3Y6XjstRElCVyxCNEU2ODprWjslPzgoUThCSD1rTzY1Qlc/eFNHJiNAdVUsRFMqLD8uKyhvKCMxdkNTOCNDSEY+VGxHVydiKVRxN1ZUOXFeKl4kJC46Jk5AQCQmKVdIdFBtKjVfck8wJmUlSyYjLTMwaihFNCMnWmIuby8oVHBtJD5LJ2ZAW1B2RmwsaGZJTlROVTZ1JzBwYW83JVhVcDldNS4+JWhgOF89VllieHVlbC5OVFNzSmZMYWNGdTNCJ2xRU3UvbTYtT3FlbThUK29FLS0kMGEva111ajlFd3NHPiV2ZVIqaHZeQkZwUWo6SycjU0osc0ItJyNdKGouTGc5MnJUdy0qbiVALzszOXJySkYsbCNxViVPcnRCZUM2Lyw7cUIzZWJOV1s/LEhxajJMLjFOUCZHalVSPTFEOFFhUzNVcCZAKjl3UD8rbG83Yj9AJSdrNGBwMFokMjIlSzMraUNaaj9YSk40Tm0mK1lGXXVALVckVSVWRVEvLCw+PiMpRDxoI2ApaDA6PFE2OTA5dWErJlZVJW4yOmNHM0ZKLSVAQmotRGdMcmBIdyZIQUtqS2pzZUs8L3hLVCopQixOOVgzXWtyYzEydCdwZ1RWKEx2LXRMW3hnXyU9TV9xN2FeeD83VWJkPiMlOGNZI1laPz0sYFdkeHUvYWUmI3c2KVI4OXRJIzZAcycoNkJmN2EmP1M9XlpJX2tTJmFpYCY9dEU3MkxfRCw7XlIpN1skczxFaCNjJilxLk1YSSUjdjlST2E1RlpPJXNGN3E3TndiJiNwdFVKOmFxSmUkU2w2OCUuRCMjI0VDPjw/LWFGJiNSTlF2Pm84bEtOJTUvJCh2ZGZxNytlYkEjdTFwXW92VUtXJlklcV0nPiQxQC1beGZuJDdaVHA3bU0sRyxLbzdhJkd1JUdbUk14SnNbME1NJXdjaS5MRkRLKSg8Y2BROE4pakVJRiorP1AyYThnJSkkcV1vMmFIOEMmPFNpYkMvcSwoZTp2Oy1iIzZbJE50RFo4NEplMktOdkIjJFA1P3RRM250KDBkPWouTFFmLi9MbDMzKyg7cTNMLXc9OGRYJCNXRiZ1SUpALWJmST4lOl9pMkI1Q3NSOCY5WiYjPW1QRW5tMGZgPCZjKVFMNXVKIyV1JWxKaitELXI7Qm9GJiM0RG9TOTdoNWcpRSNvOiZTNHdlREYsOV5Ib2VgaCpMK19hKk5yTFctMXBHXyYyVWRCODZlJUIvOj0+KU40eGVXLip3ZnQtOyQnNTgtRVNxcjxiP1VJKF8lQFtQNDY+I1VgJzZBUV1tJjYvYFo+I1M/WVkjVmM7cjdVMiYzMjZkPXcmSCMjIyM/VFpgKjQ/Ji5NSz9MUDhWeGc+JFtRWGMlUUp2OTIuKERiKkIpZ2IqQk05ZE0qaEpNQW8qYyYjYjB2PVBqZXJdJGdHJkpYRGYtPidTdHZVNzUwNWw5JEFGdmdZUkleJjxeYjY4P2ojcTlRWDRTTSdSTyMmc0wxSU0uckpmTFVBajIyMV1kIyNEVz1tODN1NTsnYll4LCpTbDBoTChXOzskZG9CJk8vVFE6KFpeeEJkTGpMPExuaTsnJ1guYCQjOCsxR0Q6ayRZVVdzYm44b2doNnJ4WjJaOV0lbmQrPlYjKjhVXzcyTGgrMlE4Q2owaTo2aHAmJEMvOnAoSEs+VDhZW2dIUTRgNCknJEFiKE5vZiVWJzhoTCYjPE5FZHRnKG4nPVMxQShRMS9JJjQoWyVkTWAsSXUnMTpfaEw+U2ZEMDcmNkQ8ZnA4ZEhNNy9nK3RsUE45SipyS2FQY3QmPyd1QkNlbV5qbiU5X0spPCxDNUszcz01ZyZHbUpiKltTWXE3SztUUkxHQ3NNLSQkO1MlOllAcjdBSzBwcHJwTDxMcmgscTdlLyVLV0s6NTBJXittJ3ZpYDM/JVpwKzwtZCskTC1TdjpALm8xOW4kczAmMzk7a247UyVCU3EqJDNXb0pTQ0x3ZVZbYVonTVFJak88NztYLVg7JitkTUx2dSNeVXNHRUM5V0VjW1god0k3IzIuKEYwalYqZVpmPC1RdjNKLWMrSjVBbHJCIyRwKEg2OEx2RUEncTNuMCNtLFtgKjhGdClGY1lnRXVkXUNXZm02OCwoYUxBJEBFRlRnTFhvQnEvVVBscDc6ZFsvO3JfaXg9OlRGYFM1SC1iPExJJkhZKEs9aCMpXUxrJEsxNGxWZm06eCRIPDNeUWw8TWAkT2hhcEJua3VwJ0QjTCRQYl9gTipnXTJlO1gvRHRnLGJzaiZLIzJbLTppWXInX3dnSClOVUlSOGExbiNTP1llaidoOF41OFViWmQrXkZLRCpUQDs2QTdhUUNbSzhkLSh2NkdJJHg6VDwmJ0dwNVVmPkBNLipKOjskLXJ2MjknTV04cU12LXRMcCwnODg2aWFDPUhiKllKb0tKLChqJUs9SGBLLnY5SGdncUJJaVp1J1F2QlQuIz0pMHVrcnVWJi4pMz0oXjFgbypQajQ8LTxhTigoXjcoJyNaMHdLIzVHWEA3dV1bYCpTXjQzOTMzQTRybF1bYCpPNENnTEVsXXYkMVEzQWVGMzdkYlhrLC4pdmojeCdkYDtxZ2JRUiVGVywyKD9MTz1zJVNjNjglTlAnIyNBb3RsOHg9QkUjajFVRChbMyRNKF1VSTJMWDNScEtOQDsvI2YnZi8mX210JkYpWGRGPDl0NClRYS4qa1RMd1EnKFRUQjkueEgnPiNNSitnTHE5LSMjQEh1WlBOMF11Omg3LlQuLkc6OyQvVXNqKFQ3YFE4dFQ3MkxuWWw8LXF4ODstSFY3US0mWGR4JTFhLGhDPTB1K0hsc1Y+bnVJUUwtNTxOPylOQlMpUU4qX0ksPyYpMidJTSVMM0kpWCgoZS9kbDImOCc8TTpeI00qUStbVC5YcmkuTFlTM3YlZkZgNjhoO2ItWFsvRW4nQ1IucTdFKXAnL2tsZTJITSx1O14lT0tDLU4rTGwlRjlDRjxOZideI3QyTCw7MjdXOjBPQDYjI1U2Vzc6JHJKZkxXSGokIyl3b3FCZWZJWi5QSzxiKnQ3ZWQ7cCpfbTs0RXhLI2hAJl0+Xz5Aa1hRdE1hY2ZELm0tVkFiODtJUmVNMyR3ZjAnJ2hyYSpzbzU2OCdJcCZ2UnM4NDknTVJZU3AlOnQ6aDVxU2d3cEVyJEI+USw7cyhDIyQpYHN2UXVGJCMjLUQsIyMsZzY4QDJbVDsuWFNkTjlRZSlycHQuX0stIzV3RilzUCcjI3AjQzBjJS1HYiVoZCs8LWonQWkqeCYmSE1rVF1DJ09TbCMjNVJHW0pYYUhOO2QndUEjeC5fVTsuYFBVQChaM2R0NHIxNTJAOnYsJ1IuU2ondyMwPC07a1BJKUZmSiYjQVlKJiMvLyk+LWs9bT0qWG5LJD49KTcyTF0wSSU+Lkc2OTBhOiQjIzwsKTs/OzcyIz94OStkO15WJzk7allAOyliciNxXllRcHg6WCNUZSRaXic9LT1iR2hMZjpENiZiTndaOS1aRCNuXjlIaExNcjVHOyddZCY2J3dZbVRGbUw8TEQpRl4lW3RDJzg7KzlFI0MkZyUjNVk+cTl3ST5QKDltSVs+a0MtZWtMQy9SJkNIK3MnQjtLLU02JEVCJWlzMDA6K0E0Wzd4a3MuTHJOazAmRSl3SUxZRkAyTCcwTmIkK3B2PCgyLjc2OC9GclkmaCReM2kmQCtHJUpUJzwtLHZgMztfKUk5TV5BRV1DTj9DbDJBWmcrJTRpVHBUMzxuLSYlSCViPEZEajJNPGhIPSZFaDwyTGVuJGIqYVRYPS04UXhOKWsxMUlNMWNeaiU5czxMPE5GU28pQj8rPC0oR3hzRixeLUVoQCQ0ZFhoTiQrI3J4SzgnamUnRDdrYGU7KTJwWXdQQSdfcDkmQF4xOG1sMV5bQGc0dCpbSk9hKls9UXA3KHFKX29PTF4oJzdmQiZIcS06c2Ysc05qOHhxXj4kVTRPXUdLeCdtOSliQHA3WXN2SzN3XllSLUNkUSo6SXI8KCR1JikjKCY/TDlSZzNIKTRmaUVwXmlJOU84S25UaixdSD9EKnI3J007UHdaOUswRV5rJi1jcEk7LnAvNl92d29GTVY8LT4jJVhpLkx4Vm5yVSg0JjgvUCs6aExTS2okI1UlXTQ5dCdJOnJnTWknRkxAYTowWS11QVszOScsKHZibWEqaFUlPC1TUkZgVHQ6NTQyUl9WViRwQFtwOERWW0EsPzE4MzlGV2RGPFRkZEY8OUFoLTYmOXRXb0RsaF0mMVNwR01xPlRpMU8qSCYjKEFMOFtfUCUuTT52Xi0pKXFPVCpGNUNxMGBZZSUrJEI2aTo3QDBJWDxOK1QrME1sTUJQUSpWaj5Tc0Q8VTRKSFk4a0QyKTJmVS9NIyRlLilUNCxfPThoTGltWyYpOz9Va0snLXg/Jyg6c2lJZkw8JHBGTWBpPD8lVyhtR0RITSU+aVdQLCMjUGAlL0w8ZVhpOkBaOUMuN289QChwWGRBTy9OTFE4bFBsK0hQT1FhOHdEOD1eR2xQYThUS0kxQ2poc0NUU0xKTScvV2w+LVMocXclc2YvQCUjQjY7L1U3S111WmJpXk9jXjJuPGJoUG1Va013PiV0PCknbUVWRScnbmBXbkpyYSReVEt2WDVCPjtfYVNFSycsKGh3YTA6aTRHPy5CY2kuKFhbP2IqKCQsPS1uPC5RJWAoWD0/K0BBbSpKczAmPTNiaDhLXW1MPExvTnMnNiwnODVgMD90LydfVTU5QF1kZEY8I0xkRjxlV2RGPE91Ti80NXJZPC1MQCYjK2ZtPjY5PUxiLE9jWlYvKTtUVG04Vkk7PyVPdEo8KGI0bXE3TTY6dT9LUmRGPGdSQDJMPUZOVS08YlsoOWMvTUwzbTtaWyRvRjNnKUdBV3FwQVJjPTxST3U3Y0w1bDstW0FdJS8rZnNkO2wjU2FmVC9mKlddMD1PJyQoVGI8WykqQGU3NzVSLTpZb2IlZyo+bCo6eFA/WWIuNSkld19JPzd1azVKQytGUyhtI2knay4nYTBpKTk8N2InZnMnNTlocSQqNVVodiMjcGleOCtoSUVCRmBudm9gOydsMC5eUzE8LXdVSzIvQ29oNThLS2hMak09U08qcmZPYCtxQ2BXLU9uLj1BSjU2Pj5pMkAyTEg2QTomNXFgPzlJM0BAJzA0JnAyL0xWYSpULTQ8LWkzO005VXZaZCtONz5iKmVJd2c6Q0MpYzw+bk8mIzxJR2U7X18udGhqWmw8JXcoV2syeG1wNFFASSNJOSxERl11Ny1QPS4tXzpZSl1hU0BWPzYqQygpZE9wNzpXTCxiJjNSZy8uY21NOSZyXj4kKD4uWi1JJkooUTBIZDVRJTdDby1iYC1jPE4oNnJAaXArQXVySzxtODZRSXRoKiN2Oy1PQnFpK0w3d0RFLUlyOEtbJ20rRERTTHdLJi8uPy1WJVVfJTM6cUtOdSRfYipCLWtwN05hRCdRZFdRUEtZcVtAPlApaEk7Kl9GXXVgUmJbLmo4X1EvPCY+dXUrVnNIJHNNOVRBJT8pKHZtSjgwKSxQN0U+KXRqRCUyTD0tdCNmS1slYHY9UTg8RmZOa2dnXm9JYmFoKiM4L1F0JEYmOksqLShOLycrMXZNQix1KCktYS5WVVUqI1tlJWdBQU8oUz5XbEEyKTtTYT5nWG04WUJgMWRASyNuXTc2LWEkVSxtRjxmWF1pZHFkKTwzLF1KN0ptVzRgNl11a3M9NC03MkwoakVrKzpiSjBNXnEtOERtX1o/MG9sUDFDOVNhJkhbZCZjJG9vUVVqXUV4ZCozWk1ALVdHVzIlcycsQi1fTSU+JVVsOiMvJ3hvRk05UVgtJC5RTic+WyUkWiR1RjZwQTZLaTJPNTo4dyp2UDE8LTFgW0csKS1tIz4wYFAmI2ViIy4zaSlydEI2MShvJyQ/WDNCPC9SOTA7ZVpdJU5jcTstVGxdI0Y+MlFmdF5hZV81dEtMOU1VZTliKnNMRVE5NUMmYD1HP0BNaj13aConM0U+PS08KUd0Kkl3KSdRRzpgQEl3T2Y3Jl0xaSdTMDFCK0V2L05hYyM5Uzs9O1lRcGdfNlVgKmtWWTM5eEssWy82QWo3OicxQm0tXzFFWWZhMStvJm80aHA3S05fUShPbElvQFMlO2pWZG4wJzE8VmM1Mj11YDNeby1uMSdnNHY1OEhqJjZfdDckIyM/TSljPCRiZ1FfJ1NZKCgteGtBI1koLHAnSDlySVZZLWIsJyViQ1BGNy5KPFVwXiwoZFUxVlkqNSNXa1RVPmgxOXcsV1FoTEkpM1MjZiQyKGViLGpyKmI7M1Z3XSo3TkglJGM0VnMsZUQ5PlhXOD9OXW8rKCpwZ0MlLzcyTFYtdTxIcCwzQGVeOVVCMUorYWs5LVROL21oS1BnK0FKWWQkTWx2QUZfakNLKi5PLV4oNjNhZE1ULT5XJWlld1M4VzZtMnJ0Q3BvJ1JTMVI4ND1AcGFUS3QpPj0lJjFbKSp2cCd1K3gsVnJ3TjsmXWt1TzlKRGJnPXBPJEoqLmpWZTt1J20wZHI5bCw8KndNSypPZT1nOGxWX0tFQkZrTydvVV1ePVstNzkyI29rLClpXWxSOHFRMm9BOHdjUkNaXjd3L05qaDs/LnN0WD9RMT5TMXE0Qm4kKUsxPC1yR2RPJyRXci5MYy5DRykkLypKTDR0TlIvLFNWTzMsYVV3J0RKTjopU3M7d0duOUEzMmlqdyVGTCtaMEZuLlU5O3JlU3EpYm1JMzJVPT01QUx1RyYjVmYxMzk4L3BWbzEqYy0oYVkxNjhvPGBKc1Niay0sMU47JD4wOk9VYXMoMzo4Wjk3MkxTZkY4ZWI9Yy07PlNQdzcuNmhuM21gOV5Ya24oci5xU1swO1QlJlFjPStTVFJ4WCdxMUJOazMmKmV1MjsmOHEkJng+USNRN15UZis2PChkJVpWbWoyYkRpJS4zTDJuKzRXJyRQaURERylnLHIlKz8sJEA/dW91NXRTZTJhTl9BUVUqPGhgZS1HSTcpP09LMkEuZDdfYyk/d1E1QVNAREwzciM3ZlNrZ2w2LSsrRDonQSx1cTdTdmxCJHBjcEgncTNuMCNfJWRZI3hDcHItbDxGME5SQC0jI0ZFVjZOVEY2IyMkbDg0TjF3P0FPPidJQU9VUlEjI1ZeRnYtWEZiR003RmwoTjwzRGhMR0YlcS4xckMkIzpUX18mUGk2OCUweGlfJltxRkooNzdqXyZKV29GLlY3MzUmVCxbUio6eEZSKks1Pj4jYGJXLT80TmVfJjZOZV8mNk5lXyZuYGtyLSNHSmNNNlg7dU02WDt1TSguYS4uXjJUa0wlb1IoIzt1LlQlZkFyJTR0SjgmPjwxPUdIWl8rbTkvI0gxRl5SI1NDIypOPUJBOShEP3ZbVWlGWT4+XjhwLEtLRi5XXUwyOXVMa0xsdS8rNFQ8WG9JQiZoeD1UMVBjRGFCJjtISCstQUZyPyhtOUhaVilGS1M4SkN3O1NEPTZbXi9EWlVMYEVVRGZdR0dsRyY+dyQpRi4vXm4zK3JsbytEQjs1c0lZR05rK2kxdC02OUpnLS0wcGFvN1NtI0spcGRIVyY7THVETkhASD4jL1gtVEkoO1A+IyxHYz4jMFN1PiM0YDE/IzhsQz8jPHhVPyNALmk/I0Q6JUAjSEY3QCNMUklAI1BfW0AjVGtuQCNYdypBI10tPUEjYTlPQSNkPEYmIyo7RyMjLkdZIyMyU2wjIzZgKCQjOmw6JCM+eEwkI0IuYCQjRjpyJCNKRi4lI05SQCUjUl9SJSNWa2UlI1p3dyUjXy00JiMzXlJoJVNmbHItaydNUy5vPy41L3NXZWwvd3BFTTAlMycvMSlLXmYxLWQ+RzIxJnYoMzU+VmAzOVY3QTQ9b254NEExT1k1RUkwOzZJYmdyNk0kSFM3UTwpNThDNXcsO1dvQSojWyVUKiNgMWcqI2Q9IysjaEk1KyNsVUcrI3BiWSsjdG5sKyN4JCksIyYxOywjKj1NLCMuSWAsIzJVciwjNmIuLSM7d1tII2lRdEEjbV4wQiNxakJCI3V2VEIjIy1oQiMnOSRDIytFNkMjL1FIQyMzXlpDIzdqbUMjO3YpRCM/LDxEI0M4TkQjR0RhRCNLUHNEI09dL0UjZzFBNSNLQSoxI2dDMTcjTUdkOyM4KDAyI0wtZDMjcldNNCNIZ2ExIyw8dzAjVC5qPCNPIycyI0NZTjEjcWFeOiNfNG0zI29ALz0jZUc4PSN0OEo1I2ArNzgjNHVJLSNtM0IyI1NCWzgjUTBAOCNpWyo5I2lPbjgjMU5tOyNec045I3FoPDkjOj14LSNQO0syIyQlWDkjYkMrLiNSZzs8I21OPS4jTVRGLiNSWk8uIzI/KTQjWSMoLyNbKTEvI2I7TC8jZEFVLyMwU3Y7I2xZJDAjbmAtMCNzZjYwIyhGMjQjd3JIMCMlL2UwI1RtRDwjJUpTTUZvdmU6Q1RCRVhJOjxlaDJnKUIsM2gyXkczaTsjZDNqRD4pNGtNWUQ0bFZ1YDRtYDomNW5pVUE1QChBNUJBMV1QQkI6eGxCQ0M9MkNETFhNQ0VVdGlDZiYwZzIndE4/UEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQLXFla0NgLjlrRWdeK0Yka3dWaUZKVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVvLF48LTI4WkknTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cDs3cS0jbExZSTp4dkQ9IwBB9v8ACwpAQAAAQEEAAJhBAEGKgAELugFQQQAAAAAAAOBAAACAQQAAgD8AAABBAAD4QQAAAAAAALhBAAC4QQAAMEEAADBBAACoQQAAAAAAABBBAAC4QQAAgEAAADBBAABcQgAAkEEAALhBAAAQQQAAMEEAAIBAAACSQgAAAAAAAIhBAACIQQAAAEEAAABBAABcQgAAAAAAAIhBAACIQQAAAEEAAABBAAC2QgAAAAAAAIhBAACwQQAAoEAAAAAAIAD/AAAw/zDwMf8xAP/v/wBOr58AQdCBAQuXJyAA/wAAMP8w8DH/MQD/7/8AAAEAAgAEAAEAAQABAAEAAgABAAMAAgABAAIAAgABAAEAAQABAAEABQACAAEAAgADAAMAAwACAAIABAABAAEAAQACAAEABQACAAMAAQACAAEAAgABAAEAAgABAAEAAgACAAEABAABAAEAAQABAAUACgABAAIAEwACAAEAAgABAAIAAQACAAEAAgABAAUAAQAGAAMAAgABAAIAAgABAAEAAQAEAAgABQABAAEABAABAAEAAwABAAIAAQAFAAEAAgABAAEAAQAKAAEAAQAFAAIABAAGAAEABAACAAIAAgAMAAIAAQABAAYAAQABAAEABAABAAEABAAGAAUAAQAEAAIAAgAEAAoABwABAAEABAACAAQAAgABAAQAAwAGAAoADAAFAAcAAgAOAAIACQABAAEABgAHAAoABAAHAA0AAQAFAAQACAAEAAEAAQACABwABQAGAAEAAQAFAAIABQAUAAIAAgAJAAgACwACAAkAEQABAAgABgAIABsABAAGAAkAFAALABsABgBEAAIAAgABAAEAAQACAAEAAgACAAcABgALAAMAAwABAAEAAwABAAIAAQABAAEAAQABAAMAAQABAAgAAwAEAAEABQAHAAIAAQAEAAQACAAEAAIAAQACAAEAAQAEAAUABgADAAYAAgAMAAMAAQADAAkAAgAEAAMABAABAAUAAwADAAEAAwAHAAEABQABAAEAAQABAAIAAwAEAAUAAgADAAIABgABAAEAAgABAAcAAQAHAAMABAAFAA8AAgACAAEABQADABYAEwACAAEAAQABAAEAAgAFAAEAAQABAAYAAQABAAwACAACAAkAEgAWAAQAAQABAAUAAQAQAAEAAgAHAAoADwABAAEABgACAAQAAQACAAQAAQAGAAEAAQADAAIABAABAAYABAAFAAEAAgABAAEAAgABAAoAAwABAAMAAgABAAkAAwACAAUABwACABMABAADAAYAAQABAAEAAQABAAQAAwACAAEAAQABAAIABQADAAEAAQABAAIAAgABAAEAAgABAAEAAgABAAMAAQABAAEAAwAHAAEABAABAAEAAgABAAEAAgABAAIABAAEAAMACAABAAEAAQACAAEAAwAFAAEAAwABAAMABAAGAAIAAgAOAAQABgAGAAsACQABAA8AAwABABwABQACAAUABQADAAEAAwAEAAUABAAGAA4AAwACAAMABQAVAAIABwAUAAoAAQACABMAAgAEABwAHAACAAMAAgABAA4ABAABABoAHAAqAAwAKAADADQATwAFAA4AEQADAAIAAgALAAMABAAGAAMAAQAIAAIAFwAEAAUACAAKAAQAAgAHAAMABQABAAEABgADAAEAAgACAAIABQAcAAEAAQAHAAcAFAAFAAMAHQADABEAGgABAAgABAAbAAMABgALABcABQADAAQABgANABgAEAAGAAUACgAZACMABwADAAIAAwADAA4AAwAGAAIABgABAAQAAgADAAgAAgABAAEAAwADAAMABAABAAEADQACAAIABAAFAAIAAQAOAA4AAQACAAIAAQAEAAUAAgADAAEADgADAAwAAwARAAIAEAAFAAEAAgABAAgACQADABMABAACAAIABAARABkAFQAUABwASwABAAoAHQBnAAQAAQACAAEAAQAEAAIABAABAAIAAwAYAAIAAgACAAEAAQACAAEAAwAIAAEAAQABAAIAAQABAAMAAQABAAEABgABAAUAAwABAAEAAQADAAQAAQABAAUAAgABAAUABgANAAkAEAABAAEAAQABAAMAAgADAAIABAAFAAIABQACAAIAAwAHAA0ABwACAAIAAQABAAEAAQACAAMAAwACAAEABgAEAAkAAgABAA4AAgAOAAIAAQASAAMABAAOAAQACwApAA8AFwAPABcAsAABAAMABAABAAEAAQABAAUAAwABAAIAAwAHAAMAAQABAAIAAQACAAQABAAGAAIABAABAAkABwABAAoABQAIABAAHQABAAEAAgACAAMAAQADAAUAAgAEAAUABAABAAEAAgACAAMAAwAHAAEABgAKAAEAEQABACwABAAGAAIAAQABAAYABQAEAAIACgABAAYACQACAAgAAQAYAAEAAgANAAcACAAIAAIAAQAEAAEAAwABAAMAAwAFAAIABQAKAAkABAAJAAwAAgABAAYAAQAKAAEAAQAHAAcABAAKAAgAAwABAA0ABAADAAEABgABAAMABQACAAEAAgARABAABQACABAABgABAAQAAgABAAMAAwAGAAgABQALAAsAAQADAAMAAgAEAAYACgAJAAUABwAEAAcABAAHAAEAAQAEAAIAAQADAAYACAAHAAEABgALAAUABQADABgACQAEAAIABwANAAUAAQAIAFIAEAA9AAEAAQABAAQAAgACABAACgADAAgAAQABAAYABAACAAEAAwABAAEAAQAEAAMACAAEAAIAAgABAAEAAQABAAEABgADAAUAAQABAAQABgAJAAIAAQABAAEAAgABAAcAAgABAAYAAQAFAAQABAADAAEACAABAAMAAwABAAMAAgACAAIAAgADAAEABgABAAIAAQACAAEAAwAHAAEACAACAAEAAgABAAUAAgAFAAMABQAKAAEAAgABAAEAAwACAAUACwADAAkAAwAFAAEAAQAFAAkAAQACAAEABQAHAAkACQAIAAEAAwADAAMABgAIAAIAAwACAAEAAQAgAAYAAQACAA8ACQADAAcADQABAAMACgANAAIADgABAA0ACgACAAEAAwAKAAQADwACAA8ADwAKAAEAAwAJAAYACQAgABkAGgAvAAcAAwACAAMAAQAGAAMABAADAAIACAAFAAQAAQAJAAQAAgACABMACgAGAAIAAwAIAAEAAgACAAQAAgABAAkABAAEAAQABgAEAAgACQACAAMAAQABAAEAAQADAAUABQABAAMACAAEAAYAAgABAAQADAABAAUAAwAHAA0AAgAFAAgAAQAGAAEAAgAFAA4ABgABAAUAAgAEAAgADwAFAAEAFwAGAD4AAgAKAAEAAQAIAAEAAgACAAoABAACAAIACQACAAEAAQADAAIAAwABAAUAAwADAAIAAQADAAgAAQABAAEACwADAAEAAQAEAAMABwABAA4AAQACAAMADAAFAAIABQABAAYABwAFAAcADgALAAEAAwABAAgACQAMAAIAAQALAAgABAAEAAIABgAKAAkADQABAAEAAwABAAUAAQADAAIABAAEAAEAEgACAAMADgALAAQAHQAEAAIABwABAAMADQAJAAIAAgAFAAMABQAUAAcAEAAIAAUASAAiAAYABAAWAAwADAAcAC0AJAAJAAcAJwAJAL8AAQABAAEABAALAAgABAAJAAIAAwAWAAEAAQABAAEABAARAAEABwAHAAEACwAfAAoAAgAEAAgAAgADAAIAAQAEAAIAEAAEACAAAgADABMADQAEAAkAAQAFAAIADgAIAAEAAQADAAYAEwAGAAUAAQAQAAYAAgAKAAgABQABAAIAAwABAAUABQABAAsABgAGAAEAAwADAAIABgADAAgAAQABAAQACgAHAAUABwAHAAUACAAJAAIAAQADAAQAAQABAAMAAQADAAMAAgAGABAAAQAEAAYAAwABAAoABgABAAMADwACAAkAAgAKABkADQAJABAABgACAAIACgALAAQAAwAJAAEAAgAGAAYABQAEAB4AKAABAAoABwAMAA4AIQAGAAMABgAHAAMAAQADAAEACwAOAAQACQAFAAwACwAxABIAMwAfAIwAHwACAAIAAQAFAAEACAABAAoAAQAEAAQAAwAYAAEACgABAAMABgAGABAAAwAEAAUAAgABAAQAAgA5AAoABgAWAAIAFgADAAcAFgAGAAoACwAkABIAEAAhACQAAgAFAAUAAQABAAEABAAKAAEABAANAAIABwAFAAIACQADAAQAAQAHACsAAwAHAAMACQAOAAcACQABAAsAAQABAAMABwAEABIADQABAA4AAQADAAYACgBJAAIAAgAeAAYAAQALABIAEwANABYAAwAuACoAJQBZAAcAAwAQACIAAgACAAMACQABAAcAAQABAAEAAgACAAQACgAHAAMACgADAAkABQAcAAkAAgAGAA0ABwADAAEAAwAKAAIABwACAAsAAwAGABUANgBVAAIAAQAEAAIAAgABACcAAwAVAAIAAgAFAAEAAQABAAQAAQABAAMABAAPAAEAAwACAAQABAACAAMACAACABQAAQAIAAcADQAEAAEAGgAGAAIACQAiAAQAFQA0AAoABAAEAAEABQAMAAIACwABAAcAAgAeAAwALAACAB4AAQABAAMABgAQAAkAEQAnAFIAAgACABgABwABAAcAAwAQAAkADgAsAAIAAQACAAEAAgADAAUAAgAEAAEABgAHAAUAAwACAAYAAQALAAUACwACAAEAEgATAAgAAQADABgAHQACAAEAAwAFAAIAAgABAA0ABgAFAAEALgALAAMABQABAAEABQAIAAIACgAGAAwABgADAAcACwACAAQAEAANAAIABQABAAEAAgACAAUAAgAcAAUAAgAXAAoACAAEAAQAFgAnAF8AJgAIAA4ACQAFAAEADQAFAAQAAwANAAwACwABAAkAAQAbACUAAgAFAAQABAA/ANMAXwACAAIAAgABAAMABQACAAEAAQACAAIAAQABAAEAAwACAAQAAQACAAEAAQAFAAIAAgABAAEAAgADAAEAAwABAAEAAQADAAEABAACAAEAAwAGAAEAAQADAAcADwAFAAMAAgAFAAMACQALAAQAAgAWAAEABgADAAgABwABAAQAHAAEABAAAwADABkABAAEABsAGwABAAQAAQACAAIABwABAAMABQACABwACAACAA4AAQAIAAYAEAAZAAMAAwADAA4AAwADAAEAAQACAAEABAAGAAMACAAEAAEAAQABAAIAAwAGAAoABgACAAMAEgADAAIABQAFAAQAAwABAAUAAgAFAAQAFwAHAAYADAAGAAQAEQALAAkABQABAAEACgAFAAwAAQABAAsAGgAhAAcAAwAGAAEAEQAHAAEABQAMAAEACwACAAQAAQAIAA4AEQAXAAEAAgABAAcACAAQAAsACQAGAAUAAgAGAAQAEAACAAgADgABAAsACAAJAAEAAQABAAkAGQAEAAsAEwAHAAIADwACAAwACAA0AAcABQATAAIAEAAEACQACAABABAACAAYABoABAAGAAIACQAFAAQAJAADABwADAAZAA8AJQAbABEADAA7ACYABQAgAH8AAQACAAkAEQAOAAQAAQACAAEAAQAIAAsAMgAEAA4AAgATABAABAARAAUABAAFABoADAAtAAIAFwAtAGgAHgAMAAgAAwAKAAIAAgADAAMAAQAEABQABwACAAkABgAPAAIAFAABAAMAEAAEAAsADwAGAIYAAgAFADsAAQACAAIAAgABAAkAEQADABoAiQAKANMAOwABAAIABAABAAQAAQABAAEAAgAGAAIAAwABAAEAAgADAAIAAwABAAMABAAEAAIAAwADAAEABAADAAEABwACAAIAAwABAAIAAQADAAMAAwACAAIAAwACAAEAAwAOAAYAAQADAAIACQAGAA8AGwAJACIAkQABAAEAAgABAAEAAQABAAIAAQABAAEAAQACAAIAAgADAAEAAgABAAEAAQACAAMABQAIAAMABQACAAQAAQADAAIAAgACAAwABAABAAEAAQAKAAQABQABABQABAAQAAEADwAJAAUADAACAAkAAgAFAAQAAgAaABMABwABABoABAAeAAwADwAqAAEABgAIAKwAAQABAAQAAgABAAEACwACAAIABAACAAEAAgABAAoACAABAAIAAQAEAAUAAQACAAUAAQAIAAQAAQADAAQAAgABAAYAAgABAAMABAABAAIAAQABAAEAAQAMAAUABwACAAQAAwABAAEAAQADAAMABgABAAIAAgADAAMAAwACAAEAAgAMAA4ACwAGAAYABAAMAAIACAABAAcACgABACMABwAEAA0ADwAEAAMAFwAVABwANAAFABoABQAGAAEABwAKAAIABwA1AAMAAgABAAEAAQACAKMAFAIBAAoACwABAAMAAwAEAAgAAgAIAAYAAgACABcAFgAEAAIAAgAEAAIAAQADAAEAAwADAAUACQAIAAIAAQACAAgAAQAKAAIADAAVABQADwBpAAIAAwABAAEAAwACAAMAAQABAAIABQABAAQADwALABMAAQABAAEAAQAFAAQABQABAAEAAgAFAAMABQAMAAEAAgAFAAEACwABAAEADwAJAAEABAAFAAMAGgAIAAIAAQADAAEAAQAPABMAAgAMAAEAAgAFAAIABwACABMAAgAUAAYAGgAHAAUAAgACAAcAIgAVAA0ARgACAIAAAQABAAIAAQABAAIAAQABAAMAAgACAAIADwABAAQAAQADAAQAKgAKAAYAAQAxAFUACAABAAIAAQABAAQABAACAAMABgABAAUABwAEAAMA0wAEAAEAAgABAAIABQABAAIABAACAAIABgAFAAYACgADAAQAMABkAAYAAgAQACgBBQAbAIMBAgACAAMABwAQAAgABQAmAA8AJwAVAAkACgADAAcAOwANABsAFQAvAAUAFQAGAEHyqAELsR4BAAIABAABAAEAAQABAAIAAQAGAAIAAgABAAgABQAHAAsAAQACAAoACgAIAAIABAAUAAIACwAIAAIAAQACAAEABgACAAEABwAFAAMABwABAAEADQAHAAkAAQAEAAYAAQACAAEACgABAAEACQACAAIABAAFAAYADgABAAEACQADABIABQAEAAIAAgAKAAcAAQABAAEAAwACAAQAAwAXAAIACgAMAAIADgACAAQADQABAAYACgADAAEABwANAAYABAANAAUAAgADABEAAgACAAUABwAGAAQAAQAHAA4AEAAGAA0ACQAPAAEAAQAHABAABAAHAAEAEwAJAAIABwAPAAIABgAFAA0AGQAEAA4ADQALABkAAQABAAEAAgABAAIAAgADAAoACwADAAMAAQABAAQABAACAAEABAAJAAEABAADAAUABQACAAcADAALAA8ABwAQAAQABQAQAAIAAQABAAYAAwADAAEAAQACAAcABgAGAAcAAQAEAAcABgABAAEAAgABAAwAAwADAAkABQAIAAEACwABAAIAAwASABQABAABAAMABgABAAcAAwAFAAUABwACAAIADAADAAEABAACAAMAAgADAAsACAAHAAQAEQABAAkAGQABAAEABAACAAIABAABAAIABwABAAEAAQADAAEAAgAGABAAAQACAAEAAQADAAwAFAACAAUAFAAIAAcABgACAAEAAQABAAEABgACAAEAAgAKAAEAAQAGAAEAAwABAAIAAQAEAAEADAAEAAEAAwABAAEAAQABAAEACgAEAAcABQANAAEADwABAAEAHgALAAkAAQAPACYADgABACAAEQAUAAEACQAfAAIAFQAJAAQAMQAWAAIAAQANAAEACwAtACMAKwA3AAwAEwBTAAEAAwACAAMADQACAAEABwADABIAAwANAAgAAQAIABIABQADAAcAGQAYAAkAGAAoAAMAEQAYAAIAAQAGAAIAAwAQAA8ABgAHAAMADAABAAkABwADAAMAAwAPABUABQAQAAQABQAMAAsACwADAAYAAwACAB8AAwACAAEAAQAXAAYABgABAAQAAgAGAAUAAgABAAEAAwADABYAAgAGAAIAAwARAAMAAgAEAAUAAQAJAAUAAQABAAYADwAMAAMAEQACAA4AAgAIAAEAFwAQAAQAAgAXAAgADwAXABQADAAZABMALwALABUAQQAuAAQAAwABAAUABgABAAIABQAaAAIAAQABAAMACwABAAEAAQACAAEAAgADAAEAAQAKAAIAAwABAAEAAQADAAYAAwACAAIABgAGAAkAAgACAAIABgACAAUACgACAAQAAQACAAEAAgACAAMAAQABAAMAAQACAAkAFwAJAAIAAQABAAEAAQAFAAMAAgABAAoACQAGAAEACgACAB8AGQADAAcABQAoAAEADwAGABEABwAbALQAAQADAAIAAgABAAEAAQAGAAMACgAHAAEAAwAGABEACAAGAAIAAgABAAMABQAFAAgAEAAOAA8AAQABAAQAAQACAAEAAQABAAMAAgAHAAUABgACAAUACgABAAQAAgAJAAEAAQALAAYAAQAsAAEAAwAHAAkABQABAAMAAQABAAoABwABAAoABAACAAcAFQAPAAcAAgAFAAEACAADAAQAAQADAAEABgABAAQAAgABAAQACgAIAAEABAAFAAEABQAKAAIABwABAAoAAQABAAMABAALAAoAHQAEAAcAAwAFAAIAAwAhAAUAAgATAAMAAQAEAAIABgAfAAsAAQADAAMAAwABAAgACgAJAAwACwAMAAgAAwAOAAgABgALAAEABAApAAMAAQACAAcADQABAAUABgACAAYADAAMABYABQAJAAQACAAJAAkAIgAGABgAAQABABQACQAJAAMABAABAAcAAgACAAIABgACABwABQADAAYAAQAEAAYABwAEAAIAAQAEAAIADQAGAAQABAADAAEACAAIAAMAAgABAAUAAQACAAIAAwABAAsACwAHAAMABgAKAAgABgAQABAAFgAHAAwABgAVAAUABAAGAAYAAwAGAAEAAwACAAEAAgAIAB0AAQAKAAEABgANAAYABgATAB8AAQANAAQABAAWABEAGgAhAAoABAAPAAwAGQAGAEMACgACAAMAAQAGAAoAAgAGAAIACQABAAkABAAEAAEAAgAQAAIABQAJAAIAAwAIAAEACAADAAkABAAIAAYABAAIAAsAAwACAAEAAQADABoAAQAHAAUAAQALAAEABQADAAUAAgANAAYAJwAFAAEABQACAAsABgAKAAUAAQAPAAUAAwAGABMAFQAWAAIABAABAAYAAQAIAAEABAAIAAIABAACAAIACQACAAEAAQABAAQAAwAGAAMADAAHAAEADgACAAQACgACAA0AAQARAAcAAwACAAEAAwACAA0ABwAOAAwAAwABAB0AAgAIAAkADwAOAAkADgABAAMAAQAGAAUACQALAAMAJgArABQABwAHAAgABQAPAAwAEwAPAFEACAAHAAEABQBJAA0AJQAcAAgACAABAA8AEgAUAKUAHAABAAYACwAIAAQADgAHAA8AAQADAAMABgAEAAEABwAOAAEAAQALAB4AAQAFAAEABAAOAAEABAACAAcANAACAAYAHQADAAEACQABABUAAwAFAAEAGgADAAsADgALAAEAEQAFAAEAAgABAAMAAgAIAAEAAgAJAAwAAQABAAIAAwAIAAMAGAAMAAcABwAFABEAAwADAAMAAQAXAAoABAAEAAYAAwABABAAEQAWAAMACgAVABAAEAAGAAQACgACAAEAAQACAAgACAAGAAUAAwADAAMAJwAZAA8AAQABABAABgAHABkADwAGAAYADAABABYADQABAAQACQAFAAwAAgAJAAEADAAcAAgAAwAFAAoAFgA8AAEAAgAoAAQAPQA/AAQAAQANAAwAAQAEAB8ADAABAA4AWQAFABAABgAdAA4AAgAFADEAEgASAAUAHQAhAC8AAQARAAEAEwAMAAIACQAHACcADAADAAcADAAnAAMAAQAuAAQADAADAAgACQAFAB8ADwASAAMAAgACAEIAEwANABEABQADAC4AfAANADkAIgACAAUABAAFAAgAAQABAAEABAADAAEAEQAFAAMABQADAAEACAAFAAYAAwAbAAMAGgAHAAwABwACABEAAwAHABIATgAQAAQAJAABAAIAAQAGAAIAAQAnABEABwAEAA0ABAAEAAQAAQAKAAQAAgAEAAYAAwAKAAEAEwABABoAAgAEACEAAgBJAC8ABwADAAgAAgAEAA8AEgABAB0AAgApAA4AAQAVABAAKQAHACcAGQANACwAAgACAAoAAQANAAcAAQAHAAMABQAUAAQACAACADEAAQAKAAYAAQAGAAcACgAHAAsAEAADAAwAFAAEAAoAAwABAAIACwACABwACQACAAQABwACAA8AAQAbAAEAHAARAAQABQAKAAcAAwAYAAoACwAGABoAAwACAAcAAgACADEAEAAKABAADwAEAAUAGwA9AB4ADgAmABYAAgAHAAUAAQADAAwAFwAYABEAEQADAAMAAgAEAAEABgACAAcABQABAAEABQABAAEACQAEAAEAAwAGAAEACAACAAgABAAOAAMABQALAAQAAQADACAAAQATAAQAAQANAAsABQACAAEACAAGAAgAAQAGAAUADQADABcACwAFAAMAEAADAAkACgABABgAAwDGADQABAACAAIABQAOAAUABAAWAAUAFAAEAAsABgApAAEABQACAAIACwAFAAIAHAAjAAgAFgADABIAAwAKAAcABQADAAQAAQAFAAMACAAJAAMABgACABAAFgAEAAUABQADAAMAEgAXAAIABgAXAAUAGwAIAAEAIQACAAwAKwAQAAUAAgADAAYAAQAUAAQAAgAJAAcAAQALAAIACgADAA4AHwAJAAMAGQASABQAAgAFAAUAGgAOAAEACwARAAwAKAATAAkABgAfAFMAAgAHAAkAEwBOAAwADgAVAEwADABxAE8AIgAEAAEAAQA9ABIAVQAKAAIAAgANAB8ACwAyAAYAIQCfALMABgAGAAcABAAEAAIABAACAAUACAAHABQAIAAWAAEAAwAKAAYABwAcAAUACgAJAAIATQATAA0AAgAFAAEABAAEAAcABAANAAMACQAfABEAAwAaAAIABgAGAAUABAABAAcACwADAAQAAgABAAYAAgAUAAQAAQAJAAIABgADAAcAAQABAAEAFAACAAMAAQAGAAIAAwAGAAIABAAIAAEABQANAAgABAALABcAAQAKAAYAAgABAAMAFQACAAIABAAYAB8ABAAKAAoAAgAFAMAADwAEABAABwAJADMAAQACAAEAAQAFAAEAAQACAAEAAwAFAAMAAQADAAQAAQADAAEAAwADAAkACAABAAIAAgACAAQABAASAAwAXAACAAoABAADAA4ABQAZABAAKgAEAA4ABAACABUABQB+AB4AHwACAAEABQANAAMAFgAFAAYABgAUAAwAAQAOAAwAVwADABMAAQAIAAIACQAJAAMAAwAXAAIAAwAHAAYAAwABAAIAAwAJAAEAAwABAAYAAwACAAEAAwALAAMAAQAGAAoAAwACAAMAAQACAAEABQABAAEACwADAAYABAABAAcAAgABAAIABQAFACIABAAOABIABAATAAcABQAIAAIABgBPAAEABQACAA4ACAACAAkAAgABACQAHAAQAAQAAQABAAEAAgAMAAYAKgAnABAAFwAHAA8ADwADAAIADAAHABUAQAAGAAkAHAAIAAwAAwADACkAOwAYADMANwA5ACYBCQAJAAIABgACAA8AAQACAA0AJgBaAAkACQAJAAMACwAHAAEAAQABAAUABgADAAIAAQACAAIAAwAIAAEABAAEAAEABQAHAAEABAADABQABAAJAAEAAQABAAUABQARAAEABQACAAYAAgAEAAEABAAFAAcAAwASAAsACwAgAAcABQAEAAcACwB/AAgABAADAAMAAQAKAAEAAQAGABUADgABABAAAQAHAAEAAwAGAAkAQQAzAAQAAwANAAMACgABAAEADAAJABUAbgADABMAGAABAAEACgA+AAQAAQAdACoATgAcABQAEgBSAAYAAwAPAAYAVAA6AP0ADwCbAAgBDwAVAAkADgAHADoAKAAnAEGwxwELECAA/wAABC8F4C3/LUCmn6YAQdLHAQsmgD/NzMw9CtcjPG8SgzoXt9E4rMUnN703hjWVv9Yzd8wrMl9wiTAAQYDIAQtGBAAAAOeOAADnjgAABAAAAPGOAADxjgAACAAAAPSOAAD0jgAACAAAAPmOAAD5jgAABAAAAOqOAADqjgAACAAAAOqOAADtjgBB0MgBC5IC/5AAAAORAAAHkQAAC5EAAMGQAADBkAAAwZAAAMGQAADHkAAAz5AAANeQAADfkAAA55AAAO+QAAD3kAAA35AAAJOQAACTkAAAk5AAAJOQAACXkAAAnZAAAKOQAACpkAAAr5AAALWQAAC7kAAAqZAAAP8AAP///wD/AP8A/wD///8AAP///wD///8AAP8AAAAA6HoAANB0AADQdAAA0HQAANB0AAA4ewAAWHsAANB0AAAIewAA0HQAANB0AAAIewAAOHsAADh7AABYewAAWHsAAOh6AABYewAAWHsAAFh7AADQdAAA0HQAANB0AAAAAAAACHsAAEB7AAAIdQAAOHsAAOh6AAA4ewAAWHsAANB0AADQdABB8MoBCxLQdAAA2HQAAAh7AABYewAA0HQAQZDLAQsi6HoAANB0AADQdAAACHsAAAh7AADYdAAA0HQAAFB7AAA4ewBBwMsBCyIIewAA0HQAADh7AAAIewAACHsAANh0AADQdAAA0HQAAAh7AEHwywELEgh7AADYdAAA0HQAAAh7AAAIewBBkMwBCzboegAA2HQAAFh7AADQdAAACHsAANh0AAA4ewAAOHsAAAh7AADYdAAA0HQAANB0AAA4ewAAOHsAQdDMAQsSCHsAANh0AAAIewAAOHsAANB0AEHwzAELMgh7AAA4ewAAOHsAANh0AAAIewAA2HQAADh7AADYdAAACHsAANh0AADQdAAAOHsAANB0AEGwzQELIgh7AADYdAAA0HQAADh7AADQdAAA0HQAANB0AADQdAAA0HQAQeDNAQs2CHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AAA4ewAAOHsAANB0AEGgzgELEgh7AADYdAAA0HQAANB0AADQdABBwM4BC3YIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAAAAAAAAh7AADYdAAAOHsAANB0AADQdAAA0HQAANB0AAA4ewAACHsAANh0AADQdAAAYHsAAGB7AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AAA4ewAAOHsAADh7AEHAzwELEgh7AADYdAAA0HQAANB0AAA4ewBB4M8BC4IBCHsAANh0AADQdAAA0HQAANB0AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AABQewAA0HQAADh7AADQdAAA0HQAAAh7AADYdAAA0HQAAFB7AAA4ewAA0HQAANB0AAAAAAAACHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AADQdABB8NABCyIIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AEGg0QELRgh7AADYdAAA0HQAANB0AAA4ewAAOHsAANB0AAAAAAAACHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQfDRAQt2CHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AADQdAAA0HQAADh7AAA4ewAAAAAAAOh6AABYewAA0HQAANB0AADoegAA2HQAANB0AADQdAAAOHsAADh7AADQdAAA0HQAANB0AADQdABB8NIBC5IBCHsAANh0AADQdAAAQHsAAAh7AADQdAAA0HQAANB0AADQdAAAOHsAANB0AADQdAAA6HoAANB0AADQdAAA0HQAANB0AADQdAAA0HQAAAAAAADoegAAOHsAANB0AAAIewAA6HoAANh0AAAIewAAOHsAAOh6AADYdAAA0HQAADh7AADoegAA0HQAANB0AADQdAAA0HQAQZDUAQsi6HoAANB0AAA4ewAA0HQAAAh7AADQdAAA0HQAAAh7AAA4ewBBwNQBC4YBCHsAANh0AADQdAAAOHsAAAh7AADYdAAAUHsAAFB7AABQewAAUHsAAFB7AAAAAAAACHsAAFh2AAA4ewAA0HQAAAh7AACYdgAAOHsAAFh7AAAIewAAmHYAADh7AAAIewAACHsAAJh2AAA4ewAAOHsAANB0AADIdgAA0HQAAFh7AADQdAAA0HQAQdDVAQsy6HoAACB2AADQdAAAWHsAANB0AABAewAAMHsAAAAAAAA4ewAAIHYAAFh7AADYdAAAWHsAQZDWAQti0HQAACB2AABYewAAWHsAAFh7AADYdAAA0HQAANB0AADoegAAQHUAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAQYDXAQs26HoAADB1AAA4ewAAOHsAAOh6AABAdQAA0HQAANB0AADoegAAQHUAANB0AADQdAAAWHsAADh7AEHA1wELFuh6AABAdQAA0HQAANB0AADQdAAAOHsAQeDXAQsW6HoAAEB1AADQdAAAWHsAADh7AAA4ewBBgNgBCzLoegAAQHUAANB0AABYewAAWHsAAFh7AAA4ewAAAAAAAOh6AABAdQAAQHsAAAh7AABYewBBwNgBCyLoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHw2AELEuh6AABAdQAA0HQAADh7AABAewBBkNkBC0boegAAQHUAANB0AAA4ewAAQHsAAAh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHg2QELcuh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAA6HoAAEB1AADQdAAAWHsAANB0AABAewAA2HQAAFh7AADQdABB4NoBCxLoegAAQHUAANB0AABAewAA2HQAQYDbAQsW6HoAAEB1AADQdAAAWHsAAEB7AAA4ewBBoNsBCzboegAAQHUAANB0AABYewAAQHsAADh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAAQHsAQeDbAQvWAeh6AABAdQAA0HQAANB0AADQdAAAQHsAAFh7AAAAAAAA6HoAAEB1AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAQHsAAEB7AABAewAA6HoAAEB1AADQdAAA0HQAAEB7AABYewAAOHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAAFh7AAA4ewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAWHsAQcDdAQsS6HoAAEB1AADQdAAA0HQAAAh7AEHg3QELRuh6AADgdwAAOHsAAFh7AADoegAA+HUAADh7AADYdAAA6HoAAOh1AAA4ewAAOHsAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQbDeAQvhA9B0AADQdAAA0HQAANB0AAACAADAAwAAwAQAAMAFAADABgAAwAcAAMAIAADACQAAwAoAAMALAADADAAAwA0AAMAOAADADwAAwBAAAMARAADAEgAAwBMAAMAUAADAFQAAwBYAAMAXAADAGAAAwBkAAMAaAADAGwAAwBwAAMAdAADAHgAAwB8AAMAAAACzAQAAwwIAAMMDAADDBAAAwwUAAMMGAADDBwAAwwgAAMMJAADDCgAAwwsAAMMMAADDDQAA0w4AAMMPAADDAAAMuwEADMMCAAzDAwAMwwQADNMAAAAA/////////////////////////////////////////////////////////////////wABAgMEBQYHCAn/////////CgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiP///////8KCwwNDg8QERITFBUWFxgZGhscHR4fICEiI/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AQaDiAQsYEQAKABEREQAAAAAFAAAAAAAACQAAAAALAEHA4gELIREADwoREREDCgcAARMJCwsAAAkGCwAACwAGEQAAABEREQBB8eIBCwELAEH64gELGBEACgoREREACgAAAgAJCwAAAAkACwAACwBBq+MBCwEMAEG34wELFQwAAAAADAAAAAAJDAAAAAAADAAADABB5eMBCwEOAEHx4wELFQ0AAAAEDQAAAAAJDgAAAAAADgAADgBBn+QBCwEQAEGr5AELHg8AAAAADwAAAAAJEAAAAAAAEAAAEAAAEgAAABISEgBB4uQBCw4SAAAAEhISAAAAAAAACQBBk+UBCwELAEGf5QELFQoAAAAACgAAAAAJCwAAAAAACwAACwBBzeUBCwEMAEHZ5QEL3gIMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYKAAAAZAAAAOgDAAAQJwAAoIYBAEBCDwCAlpgAAOH1BQMAAAAEAAAABAAAAAYAAACD+aIARE5uAPwpFQDRVycA3TT1AGLbwAA8mZUAQZBDAGNR/gC73qsAt2HFADpuJADSTUIASQbgAAnqLgAcktEA6x3+ACmxHADoPqcA9TWCAES7LgCc6YQAtCZwAEF+XwDWkTkAU4M5AJz0OQCLX4QAKPm9APgfOwDe/5cAD5gFABEv7wAKWosAbR9tAM9+NgAJyycARk+3AJ5mPwAt6l8Auid1AOXrxwA9e/EA9zkHAJJSigD7a+oAH7FfAAhdjQAwA1YAe/xGAPCrawAgvM8ANvSaAOOpHQBeYZEACBvmAIWZZQCgFF8AjUBoAIDY/wAnc00ABgYxAMpWFQDJqHMAe+JgAGuMwABBw+gBC21A+yH5PwAAAAAtRHQ+AAAAgJhG+DwAAABgUcx4OwAAAICDG/A5AAAAQCAlejgAAACAIoLjNgAAAAAd82k1OGPtPtoPST9emHs/2g/JP2k3rDFoISIztA8UM2ghojMAAAAAAADwPwAAAAAAAPg/AEG46QELCAbQ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aXZlAFBsb3RMaW5lc0hvdmVyZWQAUGxvdEhpc3RvZ3JhbUhvdmVyZWQAVGV4dFNlbGVjdGVkQmcARHJhZ0Ryb3BUYXJnZXQATmF2SGlnaGxpZ2h0AE5hdldpbmRvd2luZ0hpZ2hsaWdodABOYXZXaW5kb3dpbmdEaW1CZwBNb2RhbFdpbmRvd0RpbUJnAFVua25vd24AIyNUb29sdGlwXyUwMmQAIyNNZW51XyUwMmQAIyNQb3B1cF8lMDh4AHdpbmRvd19jb250ZXh0AHZvaWRfY29udGV4dABjb2x1bW5zACNTb3VyY2VFeHRlcm4ACiUqcyUuKnMAICUuKnMAYWIACgBMb2cgVG8gVFRZAExvZyBUbyBGaWxlAExvZyBUbyBDbGlwYm9hcmQARGVwdGgAcmIAd3QASW1HdWkgTWV0cmljcwABRGVhciBJbUd1aSAlcwBBcHBsaWNhdGlvbiBhdmVyYWdlICUuM2YgbXMvZnJhbWUgKCUuMWYgRlBTKQAlZCB2ZXJ0aWNlcywgJWQgaW5kaWNlcyAoJWQgdHJpYW5nbGVzKQAlZCBhY3RpdmUgd2luZG93cyAoJWQgdmlzaWJsZSkAJWQgYWxsb2NhdGlvbnMAU2hvdyBjbGlwcGluZyByZWN0YW5nbGVzIHdoZW4gaG92ZXJpbmcgZHJhdyBjb21tYW5kcwBDdHJsIHNob3dzIHdpbmRvdyBiZWdpbiBvcmRlcgBXaW5kb3dzAERyYXdMaXN0AEFjdGl2ZSBEcmF3TGlzdHMgKCVkKQBQb3B1cHMAUG9wdXBzICglZCkAUG9wdXBJRDogJTA4eCwgV2luZG93OiAnJXMnJXMlcwBOVUxMACBDaGlsZFdpbmRvdwAgQ2hpbGRNZW51AFRhYkJhcnMAVGFiIEJhcnMgKCVkKQBJbnRlcm5hbCBzdGF0ZQBOb25lAE1vdXNlAE5hdgBOYXZLZXlib2FyZABOYXZHYW1lcGFkAEhvdmVyZWRXaW5kb3c6ICclcycASG92ZXJlZFJvb3RXaW5kb3c6ICclcycASG92ZXJlZElkOiAweCUwOFgvMHglMDhYICglLjJmIHNlYyksIEFsbG93T3ZlcmxhcDogJWQAQWN0aXZlSWQ6IDB4JTA4WC8weCUwOFggKCUuMmYgc2VjKSwgQWxsb3dPdmVybGFwOiAlZCwgU291cmNlOiAlcwBBY3RpdmVJZFdpbmRvdzogJyVzJwBNb3ZpbmdXaW5kb3c6ICclcycATmF2V2luZG93OiAnJXMnAE5hdklkOiAweCUwOFgsIE5hdkxheWVyOiAlZABOYXZJbnB1dFNvdXJjZTogJXMATmF2QWN0aXZlOiAlZCwgTmF2VmlzaWJsZTogJWQATmF2QWN0aXZhdGVJZDogMHglMDhYLCBOYXZJbnB1dElkOiAweCUwOFgATmF2RGlzYWJsZUhpZ2hsaWdodDogJWQsIE5hdkRpc2FibGVNb3VzZUhvdmVyOiAlZABOYXZXaW5kb3dpbmdUYXJnZXQ6ICclcycARHJhZ0Ryb3A6ICVkLCBTb3VyY2VJZCA9IDB4JTA4WCwgUGF5bG9hZCAiJXMiICglZCBieXRlcykAIyNPdmVybGF5ACVzLyVzXyUwOFgAJXMvJTA4WAAjUkVTSVpFACMjI05hdldpbmRvd2luZ0xpc3QAKFBvcHVwKQAoTWFpbiBtZW51IGJhcikAKFVudGl0bGVkKQBQb3M9JWYsJWYAU2l6ZT0lZiwlZgBDb2xsYXBzZWQ9JWQAIyMjAFslc11bJXNdCgBQb3M9JWQsJWQKAFNpemU9JWQsJWQKAENvbGxhcHNlZD0lZAoAJXMgKCVkKQAlcyAnJXMnLCAlZCBAIDB4JXAAUG9zOiAoJS4xZiwlLjFmKSwgU2l6ZTogKCUuMWYsJS4xZiksIFNpemVDb250ZW50cyAoJS4xZiwlLjFmKQBGbGFnczogMHglMDhYICglcyVzJXMlcyVzJXMlcyVzJXMuLikAQ2hpbGQgAFRvb2x0aXAgAFBvcHVwIABNb2RhbCAAQ2hpbGRNZW51IABOb1NhdmVkU2V0dGluZ3MgAE5vTW91c2VJbnB1dHMATm9OYXZJbnB1dHMAQWx3YXlzQXV0b1Jlc2l6ZQBTY3JvbGw6ICglLjJmLyUuMmYsJS4yZi8lLjJmKQBBY3RpdmU6ICVkLyVkLCBXcml0ZUFjY2Vzc2VkOiAlZCwgQmVnaW5PcmRlcldpdGhpbkNvbnRleHQ6ICVkAEFwcGVhcmluZzogJWQsIEhpZGRlbjogJWQgKFJlZyAlZCBSZXNpemUgJWQpLCBTa2lwSXRlbXM6ICVkAE5hdkxhc3RJZHM6IDB4JTA4WCwweCUwOFgs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bnRDb250ZXh0AERlYnVnQ2hlY2tWZXJzaW9uQW5kRGF0YUxheW91dABHZXRJTwBHZXRTdHlsZQBHZXREcmF3RGF0YQBOZXdGcmFtZQBSZW5kZXIARW5kRnJhbWUAU2hvd0RlbW9XaW5kb3cAU2hvd0Fib3V0V2luZG93AFNob3dNZXRyaWNzV2luZG93AFNob3dTdHlsZUVkaXRvcgBTaG93U3R5bGVTZWxlY3RvcgBTaG93Rm9udFNlbGVjdG9yAFNob3dVc2VyR3VpZGUAR2V0VmVyc2lvbgBTdHlsZUNvbG9yc0RhcmsAU3R5bGVDb2xvcnNDbGFzc2ljAFN0eWxlQ29sb3JzTGlnaHQAQmVnaW4ARW5kAEJlZ2luQ2hpbGQARW5kQ2hpbGQAR2V0Q29udGVudFJlZ2lvbk1heABHZXRDb250ZW50UmVnaW9uQXZhaWwAR2V0Q29udGVudFJlZ2lvbkF2YWlsV2lkdGgAR2V0V2luZG93Q29udGVudFJlZ2lvbk1pbgBHZXRXaW5kb3dDb250ZW50UmVnaW9uTWF4AEdldFdpbmRvd0NvbnRlbnRSZWdpb25XaWR0aABHZXRXaW5kb3dEcmF3TGlzdABHZXRXaW5kb3dQb3MAR2V0V2luZG93U2l6ZQBHZXRXaW5kb3dXaWR0aABHZXRXaW5kb3dIZWlnaHQASXNXaW5kb3dDb2xsYXBzZWQASXNXaW5kb3dBcHBlYXJpbmcAU2V0V2luZG93Rm9udFNjYWxlAFNldE5leHRXaW5kb3dQb3MAU2V0TmV4dFdpbmRvd1NpemUAU2V0TmV4dFdpbmRvd1NpemVDb25zdHJhaW50cwBTZXROZXh0V2luZG93Q29udGVudFNpemUAU2V0TmV4dFdpbmRvd0NvbGxhcHNlZABTZXROZXh0V2luZG93Rm9jdXMAU2V0TmV4dFdpbmRvd0JnQWxwaGEAU2V0V2luZG93UG9zAFNldFdpbmRvd1NpemUAU2V0V2luZG93Q29sbGFwc2VkAFNldFdpbmRvd0ZvY3VzAFNldFdpbmRvd05hbWVQb3MAU2V0V2luZG93TmFtZVNpemUAU2V0V2luZG93TmFtZUNvbGxhcHNlZABTZXRXaW5kb3dOYW1lRm9jdXMAR2V0U2Nyb2xsWABHZXRTY3JvbGxZAEdldFNjcm9sbE1heFgAR2V0U2Nyb2xsTWF4WQBTZXRTY3JvbGxYAFNldFNjcm9sbFkAU2V0U2Nyb2xsSGVyZVkAU2V0U2Nyb2xsRnJvbVBvc1kAU2V0U3RhdGVTdG9yYWdlAEdldFN0YXRlU3RvcmFnZQBQdXNoRm9udABQb3BGb250AFB1c2hTdHlsZUNvbG9yAFBvcFN0eWxlQ29sb3IAUHVzaFN0eWxlVmFyAFBvcFN0eWxlVmFyAEdldFN0eWxlQ29sb3JWZWM0AEdldEZvbnQAR2V0Rm9udFNpemUAR2V0Rm9udFRleFV2V2hpdGVQaXhlbABHZXRDb2xvclUzMl9BAEdldENvbG9yVTMyX0IAR2V0Q29sb3JVMzJfQwBQdXNoSXRlbVdpZHRoAFBvcEl0ZW1XaWR0aABDYWxjSXRlbVdpZHRoAFB1c2hUZXh0V3JhcFBvcwBQb3BUZXh0V3JhcFBvcwBQdXNoQWxsb3dLZXlib2FyZEZvY3VzAFBvcEFsbG93S2V5Ym9hcmRGb2N1cwBQdXNoQnV0dG9uUmVwZWF0AFBvcEJ1dHRvblJlcGVhdABTZXBhcmF0b3IAU2FtZUxpbmUATmV3TGluZQBTcGFjaW5nAER1bW15AEluZGVudABVbmluZGVudABCZWdpbkdyb3VwAEVuZEdyb3VwAEdldEN1cnNvclBvcwBHZXRDdXJzb3JQb3NYAEdldEN1cnNvclBvc1kAU2V0Q3Vyc29yUG9zAFNldEN1cnNvclBvc1gAU2V0Q3Vyc29yUG9zWQBHZXRDdXJzb3JTdGFydFBvcwBHZXRDdXJzb3JTY3JlZW5Qb3MAU2V0Q3Vyc29yU2NyZWVuUG9zAEFsaWduVGV4dFRvRnJhbWVQYWRkaW5nAEdldFRleHRMaW5lSGVpZ2h0AEdldFRleHRMaW5lSGVpZ2h0V2l0aFNwYWNpbmcAR2V0RnJhbWVIZWlnaHQAR2V0RnJhbWVIZWlnaHRXaXRoU3BhY2luZwBDb2x1bW5zAE5leHRDb2x1bW4AR2V0Q29sdW1uSW5kZXgAR2V0Q29sdW1uV2lkdGgAU2V0Q29sdW1uV2lkdGgAR2V0Q29sdW1uT2Zmc2V0AFNldENvbHVtbk9mZnNldABHZXRDb2x1bW5zQ291bnQAUHVzaElEAFBvcElEAEdldElEAFRleHRVbmZvcm1hdHRlZABUZXh0AFRleHRWAFRleHRDb2xvcmVkAFRleHRDb2xvcmVkVgBUZXh0RGlzYWJsZWQAVGV4dERpc2FibGVkVgBUZXh0V3JhcHBlZABUZXh0V3JhcHBlZFYATGFiZWxUZXh0AExhYmVsVGV4dFYAQnVsbGV0VGV4dABCdWxsZXRUZXh0VgBCdWxsZXQAQnV0dG9uAFNtYWxsQnV0dG9uAEFycm93QnV0dG9uAEludmlzaWJsZUJ1dHRvbgBJbWFnZQBJbWFnZUJ1dHRvbgBDaGVja2JveABDaGVja2JveEZsYWdzAFJhZGlvQnV0dG9uX0EAUmFkaW9CdXR0b25fQgBQbG90TGluZXMAUGxvdEhpc3RvZ3JhbQBQcm9ncmVzc0JhcgBCZWdpbkNvbWJvAEVuZENvbWJvAENvbWJvAERyYWdGbG9hdABEcmFnRmxvYXQyAERyYWdGbG9hdDMARHJhZ0Zsb2F0NABEcmFnRmxvYXRSYW5nZTIARHJhZ0ludABEcmFnSW50MgBEcmFnSW50MwBEcmFnSW50NABEcmFnSW50UmFuZ2UyAERyYWdTY2FsYXIASW5wdXRUZXh0AElucHV0VGV4dE11bHRpbGluZQBJbnB1dEZsb2F0AElucHV0RmxvYXQyAElucHV0RmxvYXQzAElucHV0RmxvYXQ0AElucHV0SW50AElucHV0SW50MgBJbnB1dEludDMASW5wdXRJbnQ0AElucHV0RG91YmxlAElucHV0U2NhbGFyAFNsaWRlckZsb2F0AFNsaWRlckZsb2F0MgBTbGlkZXJGbG9hdDMAU2xpZGVyRmxvYXQ0AFNsaWRlckFuZ2xlAFNsaWRlckludABTbGlkZXJJbnQyAFNsaWRlckludDMAU2xpZGVySW50NABTbGlkZXJTY2FsYXIAVlNsaWRlckZsb2F0AFZTbGlkZXJJbnQAVlNsaWRlclNjYWxhcgBDb2xvckVkaXQzAENvbG9yRWRpdDQAQ29sb3JQaWNrZXIzAENvbG9yUGlja2VyNABDb2xvckJ1dHRvbgBTZXRDb2xvckVkaXRPcHRpb25zAFRyZWVOb2RlX0EAVHJlZU5vZGVfQgBUcmVlTm9kZV9DAFRyZWVOb2RlRXhfQQBUcmVlTm9kZUV4X0IAVHJlZU5vZGVFeF9DAFRyZWVQdXNoX0EAVHJlZVB1c2hfQgBUcmVlUG9wAFRyZWVBZHZhbmNlVG9MYWJlbFBvcwBHZXRUcmVlTm9kZVRvTGFiZWxTcGFjaW5nAFNldE5leHRUcmVlTm9kZU9wZW4AQ29sbGFwc2luZ0hlYWRlcl9BAENvbGxhcHNpbmdIZWFkZXJfQgBTZWxlY3RhYmxlX0EAU2VsZWN0YWJsZV9CAExpc3RCb3hfQQBMaXN0Qm94X0IATGlzdEJveEhlYWRlcl9BAExpc3RCb3hIZWFkZXJfQgBMaXN0Qm94Rm9vdGVyAFZhbHVlX0EAVmFsdWVfQgBWYWx1ZV9DAFZhbHVlX0QAU2V0VG9vbHRpcABCZWdpblRvb2x0aXAARW5kVG9vbHRpcABCZWdpbk1haW5NZW51QmFyAEVuZE1haW5NZW51QmFyAEJlZ2luTWVudUJhcgBFbmRNZW51QmFyAEJlZ2luTWVudQBFbmRNZW51AE1lbnVJdGVtX0EATWVudUl0ZW1fQgBPcGVuUG9wdXAAT3BlblBvcHVwT25JdGVtQ2xpY2sAQmVnaW5Qb3B1cABCZWdpblBvcHVwTW9kYWwAQmVnaW5Qb3B1cENvbnRleHRJdGVtAEJlZ2luUG9wdXBDb250ZXh0V2luZG93AEJlZ2luUG9wdXBDb250ZXh0Vm9pZABFbmRQb3B1cABJc1BvcHVwT3BlbgBDbG9zZUN1cnJlbnRQb3B1cABCZWdpblRhYkJhcgBFbmRUYWJCYXIAQmVnaW5UYWJJdGVtAEVuZFRhYkl0ZW0AU2V0VGFiSXRlbUNsb3NlZABMb2dUb1RUWQBMb2dUb0ZpbGUATG9nVG9DbGlwYm9hcmQATG9nRmluaXNoAExvZ0J1dHRvbnMATG9nVGV4dABCZWdpbkRyYWdEcm9wU291cmNlAFNldERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFNvdXJjZQBCZWdpbkRyYWdEcm9wVGFyZ2V0AEFjY2VwdERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFRhcmdldABHZXREcmFnRHJvcFBheWxvYWQAUHVzaENsaXBSZWN0AFBvcENsaXBSZWN0AFNldEl0ZW1EZWZhdWx0Rm9jdXMAU2V0S2V5Ym9hcmRGb2N1c0hlcmUASXNJdGVtSG92ZXJlZABJc0l0ZW1BY3RpdmUASXNJdGVtRWRpdGVkAElzSXRlbUZvY3VzZWQASXNJdGVtQ2xpY2tlZABJc0l0ZW1WaXNpYmxlAElzSXRlbURlYWN0aXZhdGVkAElzSXRlbURlYWN0aXZhdGVkQWZ0ZXJFZGl0AElzQW55SXRlbUhvdmVyZWQASXNBbnlJdGVtQWN0aXZlAElzQW55SXRlbUZvY3VzZWQAR2V0SXRlbVJlY3RNaW4AR2V0SXRlbVJlY3RNYXgAR2V0SXRlbVJlY3RTaXplAFNldEl0ZW1BbGxvd092ZXJsYXAASXNXaW5kb3dGb2N1c2VkAElzV2luZG93SG92ZXJlZABJc1JlY3RWaXNpYmxlX0EASXNSZWN0VmlzaWJsZV9CAEdldFRpbWUAR2V0RnJhbWVDb3VudABHZXRPdmVybGF5RHJhd0xpc3QAR2V0RHJhd0xpc3RTaGFyZWREYXRhAEdldFN0eWxlQ29sb3JOYW1lAENhbGNUZXh0U2l6ZQBDYWxjTGlzdENsaXBwaW5nAEJlZ2luQ2hpbGRGcmFtZQBFbmRDaGlsZEZyYW1lAENvbG9yQ29udmVydFUzMlRvRmxvYXQ0AENvbG9yQ29udmVydEZsb2F0NFRvVTMyAENvbG9yQ29udmVydFJHQnRvSFNWAENvbG9yQ29udmVydEhTVnRvUkdCAEdldEtleUluZGV4AElzS2V5RG93bgBJc0tleVByZXNzZWQASXNLZXlSZWxlYXNlZABHZXRLZXlQcmVzc2VkQW1vdW50AElzTW91c2VEb3duAElzQW55TW91c2VEb3duAElzTW91c2VDbGlja2VkAElzTW91c2VEb3VibGVDbGlja2VkAElzTW91c2VSZWxlYXNlZABJc01vdXNlRHJhZ2dpbmcASXNNb3VzZUhvdmVyaW5nUmVjdABJc01vdXNlUG9zVmFsaWQAR2V0TW91c2VQb3MAR2V0TW91c2VQb3NPbk9wZW5pbmdDdXJyZW50UG9wdXAAR2V0TW91c2VEcmFnRGVsdGEAUmVzZXRNb3VzZURyYWdEZWx0YQBHZXRNb3VzZUN1cnNvcgBTZXRNb3VzZUN1cnNvcgBDYXB0dXJlS2V5Ym9hcmRGcm9tQXBwAENhcHR1cmVNb3VzZUZyb21BcHAAR2V0Q2xpcGJvYXJkVGV4dABTZXRDbGlwYm9hcmRUZXh0AExvYWRJbmlTZXR0aW5nc0Zyb21NZW1vcnkAU2F2ZUluaVNldHRpbmdzVG9NZW1vcnkAU2V0QWxsb2NhdG9yRnVuY3Rpb25zAE1lbUFsbG9jAE1lbUZyZWUAaWlpAE4xMGVtc2NyaXB0ZW4zdmFsRQB2aWlpaQBOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TXzExY2hhcl90cmFpdHNJY0VFTlNfOWFsbG9jYXRvckljRUVFRQBOU3QzX18yMjFfX2Jhc2ljX3N0cmluZ19jb21tb25JTGIxRUVFAGlpaWZpAHgAeQAyM2ltcG9ydF9tYXliZV9udWxsX3ZhbHVlSTZJbVZlYzJFAGlpaWlpAGlpaWYAaWlpZmYAaWlpaQAxMmFjY2Vzc192YWx1ZUlmTG0xRUUAdmlmZmZpaWkAegB3ADZJbVZlYzIAdmlpZmlpADEyYWNjZXNzX3ZhbHVlSWlMbTFFRQBpaWlpZmkAUDIwSW1EcmF3TGlzdFNoYXJlZERhdGEAMjBJbURyYXdMaXN0U2hhcmVkRGF0YQBQMTBJbURyYXdMaXN0ADEwSW1EcmF3TGlzdABkaQBpaWlpaWkAJXMAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TMF8xMWNoYXJfdHJhaXRzSWNFRU5TMF85YWxsb2NhdG9ySWNFRUVFRQAyNGltcG9ydF9tYXliZV9udWxsX3N0cmluZwAyM2FjY2Vzc19tYXliZV9udWxsX3ZhbHVlSWJMbTFFRQB2aWlmaQB2aWlpAGlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJZkxtNEVFADIzYWNjZXNzX21heWJlX251bGxfdmFsdWVJZkxtNEVFADEyYWNjZXNzX3ZhbHVlSWZMbTNFRQBpaWlpaWlpaWlpAHNldABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lkRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlkRQBsZW5ndGgAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lmRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlmRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lqRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlqRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lpRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlpRQBpaWlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJaUxtNEVFADEyYWNjZXNzX3ZhbHVlSWlMbTNFRQAxMmFjY2Vzc192YWx1ZUlpTG0yRUUAJS4wZiBkZWcAMTJhY2Nlc3NfdmFsdWVJZkxtMkVFAGlpaWlpaWlpAGlpaWlkZGlpADEyYWNjZXNzX3ZhbHVlSWRMbTFFRQBQMjZJbUd1aUlucHV0VGV4dENhbGxiYWNrRGF0YQAyNkltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAGlpaWlpaWlpaWlpAHZpZmlpAHZpaWlpaWlpaWlpADEyYWNjZXNzX3ZhbHVlSWpMbTFFRQAxMmFjY2Vzc192YWx1ZUliTG0xRUUAdmlpaWlpaWkAbnVtYmVyAHZpaWYAZmlpAGlpAHZpaQBQNkltRm9udAA2SW1Gb250AFBLNkltVmVjNAA2SW1WZWM0AFRPRE86ICVzCgBhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoZW1zY3JpcHRlbjo6dmFsKSBjb25zdAB2aWZmAHZpaWlpaQBQMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAdmlmAGZpAHN0cmluZwBQMTBJbUd1aVN0eWxlADEwSW1HdWlTdHlsZQB2aQBQMTBJbURyYXdEYXRhADEwSW1EcmF3RGF0YQBQN0ltR3VpSU8AN0ltR3VpSU8AUDE2V3JhcEltR3VpQ29udGV4dAAxNldyYXBJbUd1aUNvbnRleHQAUDExSW1Gb250QXRsYXMAMTFJbUZvbnRBdGxhcwBJbUd1aVN0eWxlAEFscGhhAFdpbmRvd1BhZGRpbmcAV2luZG93Um91bmRpbmcAV2luZG93Qm9yZGVyU2l6ZQBXaW5kb3dNaW5TaXplAFdpbmRvd1RpdGxlQWxpZ24AQ2hpbGRSb3VuZGluZwBDaGlsZEJvcmRlclNpemUAUG9wdXBSb3VuZGluZwBQb3B1cEJvcmRlclNpemUARnJhbWVQYWRkaW5nAEZyYW1lUm91bmRpbmcARnJhbWVCb3JkZXJTaXplAEl0ZW1TcGFjaW5nAEl0ZW1Jbm5lclNwYWNpbmcAVG91Y2hFeHRyYVBhZGRpbmcASW5kZW50U3BhY2luZwBDb2x1bW5zTWluU3BhY2luZwBTY3JvbGxiYXJTaXplAFNjcm9sbGJhclJvdW5kaW5nAEdyYWJNaW5TaXplAEdyYWJSb3VuZGluZwBUYWJSb3VuZGluZwBUYWJCb3JkZXJTaXplAEJ1dHRvblRleHRBbGlnbgBEaXNwbGF5V2luZG93UGFkZGluZwBEaXNwbGF5U2FmZUFyZWFQYWRkaW5nAE1vdXNlQ3Vyc29yU2NhbGUAQW50aUFsaWFzZWRMaW5lcwBBbnRpQWxpYXNlZEZpbGwAQ3VydmVUZXNzZWxsYXRpb25Ub2wAX2dldEF0X0NvbG9ycwBfc2V0QXRfQ29sb3JzAFNjYWxlQWxsU2l6ZXMAUDZJbVZlYzQAUEs2SW1WZWMyAHYAUEsxMEltR3VpU3R5bGUASW1HdWlJTwBDb25maWdGbGFncwBCYWNrZW5kRmxhZ3MARGlzcGxheVNpemUARGVsdGFUaW1lAEluaVNhdmluZ1JhdGUASW5pRmlsZW5hbWUATG9nRmlsZW5hbWUATW91c2VEb3VibGVDbGlja1RpbWUATW91c2VEb3VibGVDbGlja01heERpc3QATW91c2VEcmFnVGhyZXNob2xkAF9nZXRBdF9LZXlNYXAAX3NldEF0X0tleU1hcABLZXlSZXBlYXREZWxheQBLZXlSZXBlYXRSYXRlAFVzZXJEYXRhAEZvbnRzAEZvbnRHbG9iYWxTY2FsZQBGb250QWxsb3dVc2VyU2NhbGluZwBGb250RGVmYXVsdABEaXNwbGF5RnJhbWVidWZmZXJTY2FsZQBEaXNwbGF5VmlzaWJsZU1pbgBEaXNwbGF5VmlzaWJsZU1heABNb3VzZURyYXdDdXJzb3IAQ29uZmlnTWFjT1NYQmVoYXZpb3JzAENvbmZpZ0lucHV0VGV4dEN1cnNvckJsaW5rAENvbmZpZ1dpbmRvd3NSZXNpemVGcm9tRWRnZXMAQ29uZmlnV2luZG93c01vdmVGcm9tVGl0bGVCYXJPbmx5AEdldENsaXBib2FyZFRleHRGbgBTZXRDbGlwYm9hcmRUZXh0Rm4AQ2xpcGJvYXJkVXNlckRhdGEATW91c2VQb3MAX2dldEF0X01vdXNlRG93bgBfc2V0QXRfTW91c2VEb3duAE1vdXNlV2hlZWwAS2V5Q3RybABLZXlTaGlmdABLZXlBbHQAS2V5U3VwZXIAX2dldEF0X0tleXNEb3duAF9zZXRBdF9LZXlzRG93bgBfZ2V0QXRfTmF2SW5wdXRzAF9zZXRBdF9OYXZJbnB1dHMAQWRkSW5wdXRDaGFyYWN0ZXIAQWRkSW5wdXRDaGFyYWN0ZXJzVVRGOABDbGVhcklucHV0Q2hhcmFjdGVycwBXYW50Q2FwdHVyZU1vdXNlAFdhbnRDYXB0dXJlS2V5Ym9hcmQAV2FudFRleHRJbnB1dABXYW50U2V0TW91c2VQb3MAV2FudFNhdmVJbmlTZXR0aW5ncwBOYXZBY3RpdmUATmF2VmlzaWJsZQBGcmFtZXJhdGUATWV0cmljc1JlbmRlclZlcnRpY2VzAE1ldHJpY3NSZW5kZXJJbmRpY2VzAE1ldHJpY3NSZW5kZXJXaW5kb3dzAE1ldHJpY3NBY3RpdmVXaW5kb3dzAE1ldHJpY3NBY3RpdmVBbGxvY2F0aW9ucwBNb3VzZURlbHRhAF9nZXRBdF9Nb3VzZUNsaWNrZWRQb3MAX2dldEF0X01vdXNlRG93bkR1cmF0aW9uAF9nZXRBdF9LZXlzRG93bkR1cmF0aW9uAF9nZXRBdF9OYXZJbnB1dHNEb3duRHVyYXRpb24AUEs3SW1HdWlJTwBpaWlpZgBmaWlpAEltRm9udEF0bGFzAEFkZEZvbnREZWZhdWx0AEFkZEZvbnRGcm9tTWVtb3J5VFRGAENsZWFyVGV4RGF0YQBDbGVhcklucHV0RGF0YQBDbGVhckZvbnRzAENsZWFyAEJ1aWxkAElzQnVpbHQAR2V0VGV4RGF0YUFzQWxwaGE4AEdldFRleERhdGFBc1JHQkEzMgBHZXRHbHlwaFJhbmdlc0RlZmF1bHQAR2V0R2x5cGhSYW5nZXNLb3JlYW4AR2V0R2x5cGhSYW5nZXNKYXBhbmVzZQBHZXRHbHlwaFJhbmdlc0NoaW5lc2VGdWxsAEdldEdseXBoUmFuZ2VzQ2hpbmVzZVNpbXBsaWZpZWRDb21tb24AR2V0R2x5cGhSYW5nZXNDeXJpbGxpYwBHZXRHbHlwaFJhbmdlc1RoYWkATG9ja2VkAEZsYWdzAFRleElEAFRleERlc2lyZWRXaWR0aABUZXhHbHlwaFBhZGRpbmcAVGV4V2lkdGgAVGV4SGVpZ2h0AFRleFV2U2NhbGUAVGV4VXZXaGl0ZVBpeGVsAEl0ZXJhdGVGb250cwBwaXhlbHMAd2lkdGgAaGVpZ2h0AGJ5dGVzX3Blcl9waXhlbABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0loRUUAaWlpaWZpaQBGb250RGF0YQBidWZmZXIAYnl0ZU9mZnNldABieXRlTGVuZ3RoAFRPRE86IEZvbnREYXRhICV6dSAlenUKAEZvbnREYXRhT3duZWRCeUF0bGFzAEZvbnRObwBTaXplUGl4ZWxzAE92ZXJzYW1wbGVIAE92ZXJzYW1wbGVWAFBpeGVsU25hcEgAR2x5cGhFeHRyYVNwYWNpbmcAR2x5cGhPZmZzZXQAR2x5cGhSYW5nZXMAR2x5cGhNaW5BZHZhbmNlWABHbHlwaE1heEFkdmFuY2VYAE1lcmdlTW9kZQBSYXN0ZXJpemVyRmxhZ3MAUmFzdGVyaXplck11bHRpcGx5AE5hbWUAUEsxMUltRm9udEF0bGFzAEltRm9udABGb250U2l6ZQBTY2FsZQBEaXNwbGF5T2Zmc2V0AEl0ZXJhdGVHbHlwaHMARmFsbGJhY2tHbHlwaABGYWxsYmFja0FkdmFuY2VYAEZhbGxiYWNrQ2hhcgBDb25maWdEYXRhQ291bnQASXRlcmF0ZUNvbmZpZ0RhdGEAQXNjZW50AERlc2NlbnQATWV0cmljc1RvdGFsU3VyZmFjZQBDbGVhck91dHB1dERhdGEAQnVpbGRMb29rdXBUYWJsZQBGaW5kR2x5cGgARmluZEdseXBoTm9GYWxsYmFjawBTZXRGYWxsYmFja0NoYXIAR2V0Q2hhckFkdmFuY2UASXNMb2FkZWQAR2V0RGVidWdOYW1lAENhbGNUZXh0U2l6ZUEAQ2FsY1dvcmRXcmFwUG9zaXRpb25BAFJlbmRlckNoYXIAdmlpaWZpaWkAaWlpZmlmAGlpaWZmZmlpaQA8dW5rbm93bj4AUEs2SW1Gb250AFBLMTFJbUZvbnRHbHlwaAAxMUltRm9udEdseXBoAFAxMkltRm9udENvbmZpZwAxMkltRm9udENvbmZpZwBQMTFJbUZvbnRHbHlwaABJbUZvbnRDb25maWcARHN0Rm9udABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShJbUZvbnRDb25maWcgJiwgZW1zY3JpcHRlbjo6dmFsKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShjb25zdCBJbUZvbnRDb25maWcgJikgY29uc3QAUEsxMkltRm9udENvbmZpZwBJbUZvbnRHbHlwaABDb2RlcG9pbnQAQWR2YW5jZVgAWDAAWTAAWDEAWTEAVTAAVjAAVTEAVjEASW1EcmF3RGF0YQBJdGVyYXRlRHJhd0xpc3RzAFZhbGlkAENtZExpc3RzQ291bnQAVG90YWxJZHhDb3VudABUb3RhbFZ0eENvdW50AERpc3BsYXlQb3MARGVJbmRleEFsbEJ1ZmZlcnMAU2NhbGVDbGlwUmVjdHMAUEsxMEltRHJhd0RhdGEAUEsxMEltRHJhd0xpc3QASW1EcmF3TGlzdABJdGVyYXRlRHJhd0NtZHMASWR4QnVmZmVyAFZ0eEJ1ZmZlcgBQdXNoQ2xpcFJlY3RGdWxsU2NyZWVuAFB1c2hUZXh0dXJlSUQAUG9wVGV4dHVyZUlEAEdldENsaXBSZWN0TWluAEdldENsaXBSZWN0TWF4AEFkZExpbmUAQWRkUmVjdABBZGRSZWN0RmlsbGVkAEFkZFJlY3RGaWxsZWRNdWx0aUNvbG9yAEFkZFF1YWQAQWRkUXVhZEZpbGxlZABBZGRUcmlhbmdsZQBBZGRUcmlhbmdsZUZpbGxlZABBZGRDaXJjbGUAQWRkQ2lyY2xlRmlsbGVkAEFkZFRleHRfQQBBZGRUZXh0X0IAQWRkSW1hZ2UAQWRkSW1hZ2VRdWFkAEFkZEltYWdlUm91bmRlZABBZGRQb2x5bGluZQBBZGRDb252ZXhQb2x5RmlsbGVkAEFkZEJlemllckN1cnZlAFBhdGhDbGVhcgBQYXRoTGluZVRvAFBhdGhMaW5lVG9NZXJnZUR1cGxpY2F0ZQBQYXRoRmlsbENvbnZleABQYXRoU3Ryb2tlAFBhdGhBcmNUbwBQYXRoQXJjVG9GYXN0AFBhdGhCZXppZXJDdXJ2ZVRvAFBhdGhSZWN0AENoYW5uZWxzU3BsaXQAQ2hhbm5lbHNNZXJnZQBDaGFubmVsc1NldEN1cnJlbnQAQWRkQ2FsbGJhY2sAQWRkRHJhd0NtZABDbGVhckZyZWVNZW1vcnkAUHJpbVJlc2VydmUAUHJpbVJlY3QAUHJpbVJlY3RVVgBQcmltUXVhZFVWAFByaW1Xcml0ZVZ0eABQcmltV3JpdGVJZHgAUHJpbVZ0eABVcGRhdGVDbGlwUmVjdABVcGRhdGVUZXh0dXJlSUQAdmlpaWlpaWlpaWlpAHZpaWlpZmkAdmlpaWZmZmkAdmlpaWlmAHZpaWlpaWlpZmkAdmlpaWlpaWlpZmkAdmlpaWlpaWlpaWlpaQB2aWlpZmlpaWZpADIzaW1wb3J0X21heWJlX251bGxfdmFsdWVJNkltVmVjNEUAdmlpaWZpaQB2aWlpZmlpZgB2aWlpaWlpAHZpaWlpaWlmAHZpaWlpaWlpZgB2aWlpaWlpaWkAdmlpaWlpZmkAdmlpaWlpZmlmAHZpaWlpaWYATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJY0VFAFBLOUltRHJhd0NtZAA5SW1EcmF3Q21kAEltRHJhd0NtZABFbGVtQ291bnQAQ2xpcFJlY3QAVGV4dHVyZUlkAFA5SW1EcmF3Q21kAEltR3VpTGlzdENsaXBwZXIAU3RhcnRQb3NZAEl0ZW1zSGVpZ2h0AEl0ZW1zQ291bnQAU3RlcE5vAERpc3BsYXlTdGFydABEaXNwbGF5RW5kAFN0ZXAAUDE2SW1HdWlMaXN0Q2xpcHBlcgAxNkltR3VpTGlzdENsaXBwZXIAdmlpaWYAUEsxNkltR3VpTGlzdENsaXBwZXIASW1HdWlTaXplQ2FsbGJhY2tEYXRhAFBvcwBDdXJyZW50U2l6ZQBEZXNpcmVkU2l6ZQBQSzIxSW1HdWlTaXplQ2FsbGJhY2tEYXRhAEltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAEV2ZW50RmxhZwBFdmVudENoYXIARXZlbnRLZXkAQnVmAEJ1ZlRleHRMZW4AQnVmU2l6ZQBCdWZEaXJ0eQBDdXJzb3JQb3MAU2VsZWN0aW9uU3RhcnQAU2VsZWN0aW9uRW5kAERlbGV0ZUNoYXJzAEluc2VydENoYXJzAEhhc1NlbGVjdGlvbgBQSzI2SW1HdWlJbnB1dFRleHRDYWxsYmFja0RhdGEASW1WZWM0AFNldABDb3B5AEVxdWFscwBJbVZlYzIAUDZJbVZlYzIAV3JhcEltR3VpQ29udGV4dABQSzE2V3JhcEltR3VpQ29udGV4dABtYWxsaW5mbwBhcmVuYQBvcmRibGtzAHNtYmxrcwBoYmxrcwBoYmxraGQAdXNtYmxrcwBmc21ibGtzAHVvcmRibGtzAGZvcmRibGtzAGtlZXBjb3N0AHZvaWQAYm9vbABzdGQ6OnN0cmluZwBzdGQ6OmJhc2ljX3N0cmluZzx1bnNpZ25lZCBjaGFyPgBzdGQ6OndzdHJpbmcAZW1zY3JpcHRlbjo6dmFsAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgc2hvcnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgaW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludDE2X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQzMl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZyBkb3VibGU+AE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SWVFRQBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxkb3VibGU+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBsb25nPgBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0ltRUUAZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZz4ATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJbEVFAE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SXRFRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lzRUUATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJYUVFAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGNoYXI+AE5TdDNfXzIxMmJhc2ljX3N0cmluZ0l3TlNfMTFjaGFyX3RyYWl0c0l3RUVOU185YWxsb2NhdG9ySXdFRUVFAE5TdDNfXzIxMmJhc2ljX3N0cmluZ0loTlNfMTFjaGFyX3RyYWl0c0loRUVOU185YWxsb2NhdG9ySWhFRUVFAGRvdWJsZQBmbG9hdAB1bnNpZ25lZCBsb25nAGxvbmcAdW5zaWduZWQgaW50AGludAB1bnNpZ25lZCBzaG9ydABzaG9ydAB1bnNpZ25lZCBjaGFyAHNpZ25lZCBjaGFyAGNoYXIAAAECBAcDBgUALSsgICAwWDB4AChudWxsKQAtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBOQU4ALgBpbmZpbml0eQBuYW4AcndhAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXM6ICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXMAdGVybWluYXRpbmcgd2l0aCAlcyBmb3JlaWduIGV4Y2VwdGlvbgB0ZXJtaW5hdGluZwB1bmNhdWdodABTdDlleGNlcHRpb24ATjEwX19jeHhhYml2MTE2X19zaGltX3R5cGVfaW5mb0UAU3Q5dHlwZV9pbmZvAE4xMF9fY3h4YWJpdjEyMF9fc2lfY2xhc3NfdHlwZV9pbmZvRQBOMTBfX2N4eGFiaXYxMTdfX2NsYXNzX3R5cGVfaW5mb0UAcHRocmVhZF9vbmNlIGZhaWx1cmUgaW4gX19jeGFfZ2V0X2dsb2JhbHNfZmFzdCgpAGNhbm5vdCBjcmVhdGUgcHRocmVhZCBrZXkgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAY2Fubm90IHplcm8gb3V0IHRocmVhZCB2YWx1ZSBmb3IgX19jeGFfZ2V0X2dsb2JhbHMoKQB0ZXJtaW5hdGVfaGFuZGxlciB1bmV4cGVjdGVkbHkgcmV0dXJuZWQAU3QxMWxvZ2ljX2Vycm9yAFN0MTJsZW5ndGhfZXJyb3IATjEwX19jeHhhYml2MTE5X19wb2ludGVyX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19wYmFzZV90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjEyM19fZnVuZGFtZW50YWxfdHlwZV9pbmZvRQB2AFB2AERuAGIAYwBoAGEAcwB0AGkAagBsAG0AZgBkAE4xMF9fY3h4YWJpdjEyMV9fdm1pX2NsYXNzX3R5cGVfaW5mb0U=\";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}function getBinary(){try{if(Module[\"wasmBinary\"]){return new Uint8Array(Module[\"wasmBinary\"])}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(Module[\"readBinary\"]){return Module[\"readBinary\"](wasmBinaryFile)}else{throw\"both async and sync fetching of the wasm failed\"}}catch(err){abort(err)}}function getBinaryPromise(){if(!Module[\"wasmBinary\"]&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch===\"function\"){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()})}return new Promise(function(resolve,reject){resolve(getBinary())})}function createWasm(env){var info={\"env\":env,\"global\":{\"NaN\":NaN,Infinity:Infinity},\"global.Math\":Math,\"asm2wasm\":asm2wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module[\"asm\"]=exports;removeRunDependency(\"wasm-instantiate\")}addRunDependency(\"wasm-instantiate\");function receiveInstantiatedSource(output){receiveInstance(output[\"instance\"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err(\"failed to asynchronously prepare wasm: \"+reason);abort(reason)})}function instantiateAsync(){if(!Module[\"wasmBinary\"]&&typeof WebAssembly.instantiateStreaming===\"function\"&&!isDataURI(wasmBinaryFile)&&typeof fetch===\"function\"){return WebAssembly.instantiateStreaming(fetch(wasmBinaryFile,{credentials:\"same-origin\"}),info).then(receiveInstantiatedSource,function(reason){err(\"wasm streaming compile failed: \"+reason);err(\"falling back to ArrayBuffer instantiation\");instantiateArrayBuffer(receiveInstantiatedSource)})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module[\"instantiateWasm\"]){try{return Module[\"instantiateWasm\"](info,receiveInstance)}catch(e){err(\"Module.instantiateWasm callback failed with error: \"+e);return false}}instantiateAsync();return{}}Module[\"asm\"]=function(global,env,providedBuffer){env[\"memory\"]=wasmMemory;env[\"table\"]=wasmTable=new WebAssembly.Table({\"initial\":1442,\"maximum\":1442,\"element\":\"anyfunc\"});env[\"__memory_base\"]=1024;env[\"__table_base\"]=0;var exports=createWasm(env);return exports};__ATINIT__.push({func:function(){globalCtors()}});function ___cxa_allocate_exception(size){return _malloc(size)}function __ZSt18uncaught_exceptionv(){return!!__ZSt18uncaught_exceptionv.uncaught_exception}function ___cxa_free_exception(ptr){try{return _free(ptr)}catch(e){}}var EXCEPTIONS={last:0,caught:[],infos:{},deAdjust:function(adjusted){if(!adjusted||EXCEPTIONS.infos[adjusted])return adjusted;for(var key in EXCEPTIONS.infos){var ptr=+key;var adj=EXCEPTIONS.infos[ptr].adjusted;var len=adj.length;for(var i=0;i0);info.refcount--;if(info.refcount===0&&!info.rethrown){if(info.destructor){Module[\"dynCall_vi\"](info.destructor,ptr)}delete EXCEPTIONS.infos[ptr];___cxa_free_exception(ptr)}},clearRef:function(ptr){if(!ptr)return;var info=EXCEPTIONS.infos[ptr];info.refcount=0}};function ___cxa_throw(ptr,type,destructor){EXCEPTIONS.infos[ptr]={ptr:ptr,adjusted:[ptr],type:type,destructor:destructor,refcount:0,caught:false,rethrown:false};EXCEPTIONS.last=ptr;if(!(\"uncaught_exception\"in __ZSt18uncaught_exceptionv)){__ZSt18uncaught_exceptionv.uncaught_exception=1}else{__ZSt18uncaught_exceptionv.uncaught_exception++}throw ptr}function ___lock(){}var PATH={splitPath:function(filename){var splitPathRe=/^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:function(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:function(path){var isAbsolute=path.charAt(0)===\"/\",trailingSlash=path.substr(-1)===\"/\";path=PATH.normalizeArray(path.split(\"/\").filter(function(p){return!!p}),!isAbsolute).join(\"/\");if(!path&&!isAbsolute){path=\".\"}if(path&&trailingSlash){path+=\"/\"}return(isAbsolute?\"/\":\"\")+path},dirname:function(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:function(path){if(path===\"/\")return\"/\";var lastSlash=path.lastIndexOf(\"/\");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},extname:function(path){return PATH.splitPath(path)[3]},join:function(){var paths=Array.prototype.slice.call(arguments,0);return PATH.normalize(paths.join(\"/\"))},join2:function(l,r){return PATH.normalize(l+\"/\"+r)}};var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0}else{buffer.push(curr)}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get()}};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall145(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();return SYSCALLS.doReadv(stream,iov,iovcnt)}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j>2]=value;return value}function ___syscall221(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___unlock(){}function getShiftFromSize(size){switch(size){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError(\"Unknown type size: \"+size)}}function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<256;++i){codes[i]=String.fromCharCode(i)}embind_charCodes=codes}var embind_charCodes=undefined;function readLatin1String(ptr){var ret=\"\";var c=ptr;while(HEAPU8[c]){ret+=embind_charCodes[HEAPU8[c++]]}return ret}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return\"_unknown\"}name=name.replace(/[^a-zA-Z0-9_]/g,\"$\");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return\"_\"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return new Function(\"body\",\"return function \"+name+\"() {\\n\"+' \"use strict\";'+\" return body.apply(this, arguments);\\n\"+\"};\\n\")(body)}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+\"\\n\"+stack.replace(/^Error(:[^\\n]*)?\\n/,\"\")}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+\": \"+this.message}};return errorClass}var BindingError=undefined;function throwBindingError(message){throw new BindingError(message)}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError(\"Mismatched type converter count\")}for(var i=0;i>shift])},destructorFunction:null})}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return{count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+\" instance already deleted\")}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr)}else{$$.ptrType.registeredClass.rawDestructor($$.ptr)}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$)}}function attachFinalizer(handle){if(\"undefined\"===typeof FinalizationGroup){attachFinalizer=function(handle){return handle};return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn(\"object already deleted: \"+$$.ptr)}else{releaseClassHandle($$)}}});attachFinalizer=function(handle){finalizationGroup.register(handle,handle.$$,handle.$$);return handle};detachFinalizer=function(handle){finalizationGroup.unregister(handle.$$)};return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError(\"Object already scheduled for deletion\")}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined}}function ClassHandle_isDeleted(){return!this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj[\"delete\"]()}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError(\"Object already scheduled for deletion\")}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes)}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype[\"isAliasOf\"]=ClassHandle_isAliasOf;ClassHandle.prototype[\"clone\"]=ClassHandle_clone;ClassHandle.prototype[\"delete\"]=ClassHandle_delete;ClassHandle.prototype[\"isDeleted\"]=ClassHandle_isDeleted;ClassHandle.prototype[\"deleteLater\"]=ClassHandle_deleteLater}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError(\"Function '\"+humanName+\"' called with an invalid number of arguments (\"+arguments.length+\") - expects one of (\"+proto[methodName].overloadTable+\")!\")}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError(\"Cannot register public name '\"+name+\"' twice\")}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError(\"Cannot register multiple overloads of a function with the same number of arguments (\"+numArguments+\")!\")}Module[name].overloadTable[numArguments]=value}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[]}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError(\"Expected null or instance of \"+desiredClass.name+\", got an instance of \"+ptrClass.name)}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr)}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError(\"Cannot convert argument of type \"+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+\" to parameter type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError(\"Passing raw pointer to smart pointer is illegal\")}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{throwBindingError(\"Cannot convert argument of type \"+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+\" to parameter type \"+this.name)}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{var clonedHandle=handle[\"clone\"]();ptr=this.rawShare(ptr,__emval_register(function(){clonedHandle[\"delete\"]()}));if(destructors!==null){destructors.push(this.rawDestructor,ptr)}}break;default:throwBindingError(\"Unsupporting sharing policy\")}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}if(handle.$$.ptrType.isConst){throwBindingError(\"Cannot convert argument of type \"+handle.$$.ptrType.name+\" to parameter type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function simpleReadValueFromPointer(pointer){return this[\"fromWireType\"](HEAPU32[pointer>>2])}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr)}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr)}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle[\"delete\"]()}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k])}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes)}}function init_embind(){Module[\"getInheritedInstanceCount\"]=getInheritedInstanceCount;Module[\"getLiveInheritedInstances\"]=getLiveInheritedInstances;Module[\"flushPendingDeletes\"]=flushPendingDeletes;Module[\"setDelayFunction\"]=setDelayFunction}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError(\"ptr should not be undefined\")}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError(\"makeClassHandle requires ptr and ptrType\")}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError(\"Both smartPtrType and smartPtr must be specified\")}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance[\"clone\"]()}else{var rv=registeredInstance[\"clone\"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType}else{toType=registeredPointerRecord.pointerType}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype[\"argPackAdvance\"]=8;RegisteredPointer.prototype[\"readValueFromPointer\"]=simpleReadValueFromPointer;RegisteredPointer.prototype[\"deleteObject\"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype[\"fromWireType\"]=RegisteredPointer_fromWireType}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this[\"toWireType\"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null}else{this[\"toWireType\"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null}}else{this[\"toWireType\"]=genericPointerToWireType}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError(\"Replacing nonexistant public symbol\")}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value}else{Module[name]=value;Module[name].argCount=numArguments}}function embind__requireFunction(signature,rawFunction){signature=readLatin1String(signature);function makeDynCaller(dynCall){var args=[];for(var i=1;i>2)+i])}return array}function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr)}}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName=\"constructor \"+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[]}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError(\"Cannot register multiple constructors with identical number of parameters (\"+(argCount-1)+\") for class '\"+classType.name+\"'! Overload resolution is currently only performed using the parameter count, not actual type info!\")}classType.registeredClass.constructor_body[argCount-1]=function unboundTypeHandler(){throwUnboundTypeError(\"Cannot construct \"+classType.name+\" due to unbound types\",rawArgTypes)};whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){classType.registeredClass.constructor_body[argCount-1]=function constructor_body(){if(arguments.length!==argCount-1){throwBindingError(humanName+\" called with \"+arguments.length+\" arguments, expected \"+(argCount-1))}var destructors=[];var args=new Array(argCount);args[0]=rawConstructor;for(var i=1;i0?\", \":\"\")+argsListWired}invokerFnBody+=(returns?\"var rv = \":\"\")+\"invoker(fn\"+(argsListWired.length>0?\", \":\"\")+argsListWired+\");\\n\";if(needsDestructorStack){invokerFnBody+=\"runDestructors(destructors);\\n\"}else{for(var i=isClassMethodFunc?1:2;i4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle)}}function count_emval_handles(){var count=0;for(var i=5;i>2])};case 3:return function(pointer){return this[\"fromWireType\"](HEAPF64[pointer>>3])};default:throw new TypeError(\"Unknown float type: \"+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,\"fromWireType\":function(value){return value},\"toWireType\":function(destructors,value){if(typeof value!==\"number\"&&typeof value!==\"boolean\"){throw new TypeError('Cannot convert \"'+_embind_repr(value)+'\" to '+this.name)}return value},\"argPackAdvance\":8,\"readValueFromPointer\":floatReadValueFromPointer(name,shift),destructorFunction:null})}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError(\"Cannot call \"+name+\" due to unbound types\",argTypes)},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return[]})}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError(\"Unknown integer type: \"+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295}var shift=getShiftFromSize(size);var fromWireType=function(value){return value};if(minRange===0){var bitshift=32-8*size;fromWireType=function(value){return value<>>bitshift}}var isUnsignedType=name.indexOf(\"unsigned\")!=-1;registerType(primitiveType,{name:name,\"fromWireType\":fromWireType,\"toWireType\":function(destructors,value){if(typeof value!==\"number\"&&typeof value!==\"boolean\"){throw new TypeError('Cannot convert \"'+_embind_repr(value)+'\" to '+this.name)}if(valuemaxRange){throw new TypeError('Passing a number \"'+_embind_repr(value)+'\" from JS side to C/C++ side to an argument of type \"'+name+'\", which is outside the valid range ['+minRange+\", \"+maxRange+\"]!\")}return isUnsignedType?value>>>0:value|0},\"argPackAdvance\":8,\"readValueFromPointer\":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null})}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(heap[\"buffer\"],data,size)}name=readLatin1String(name);registerType(rawType,{name:name,\"fromWireType\":decodeMemoryView,\"argPackAdvance\":8,\"readValueFromPointer\":decodeMemoryView},{ignoreDuplicateRegistrations:true})}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name===\"std::string\";registerType(rawType,{name:name,\"fromWireType\":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var endChar=HEAPU8[value+4+length];var endCharSwap=0;if(endChar!=0){endCharSwap=endChar;HEAPU8[value+4+length]=0}var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(HEAPU8[currentBytePtr]==0){var stringSegment=UTF8ToString(decodeStartPtr);if(str===undefined)str=stringSegment;else{str+=String.fromCharCode(0);str+=stringSegment}decodeStartPtr=currentBytePtr+1}}if(endCharSwap!=0)HEAPU8[value+4+length]=endCharSwap}else{var a=new Array(length);for(var i=0;i>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1)}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError(\"String has UTF-16 code units that do not fit in 8 bits\")}HEAPU8[ptr+4+i]=charCode}}else{for(var i=0;i>2];var a=new Array(length);var start=value+4>>shift;for(var i=0;i>2]=length;var start=ptr+4>>shift;for(var i=0;i>2]=rd;return returnType[\"toWireType\"](destructors,handle)}function __emval_lookupTypes(argCount,argTypes,argWireTypes){var a=new Array(argCount);for(var i=0;i>2)+i],\"parameter \"+i)}return a}function __emval_call(handle,argCount,argTypes,argv){handle=requireHandle(handle);var types=__emval_lookupTypes(argCount,argTypes);var args=new Array(argCount);for(var i=0;i4){emval_handle_array[handle].refcount+=1}}function __emval_new_array(){return __emval_register([])}function __emval_new_cstring(v){return __emval_register(getStringOrSymbol(v))}function __emval_new_object(){return __emval_register({})}function __emval_run_destructors(handle){var destructors=emval_handle_array[handle].value;runDestructors(destructors);__emval_decref(handle)}function __emval_set_property(handle,key,value){handle=requireHandle(handle);key=requireHandle(key);value=requireHandle(value);handle[key]=value}function __emval_strictly_equals(first,second){first=requireHandle(first);second=requireHandle(second);return first===second}function __emval_take_value(type,argv){type=requireRegisteredType(type,\"_emval_take_value\");var v=type[\"readValueFromPointer\"](argv);return __emval_register(v)}function __emval_typeof(handle){handle=requireHandle(handle);return __emval_register(typeof handle)}function _abort(){Module[\"abort\"]()}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest)}function abortOnCannotGrowMemory(requestedSize){abort(\"OOM\")}function _emscripten_resize_heap(requestedSize){abortOnCannotGrowMemory(requestedSize)}embind_init_charCodes();BindingError=Module[\"BindingError\"]=extendError(Error,\"BindingError\");InternalError=Module[\"InternalError\"]=extendError(Error,\"InternalError\");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module[\"UnboundTypeError\"]=extendError(Error,\"UnboundTypeError\");init_emval();var ASSERTIONS=false;function intArrayToString(array){var ret=[];for(var i=0;i255){if(ASSERTIONS){assert(false,\"Character code \"+chr+\" (\"+String.fromCharCode(chr)+\") at offset \"+i+\" not in 0x00-0xFF.\")}chr&=255}ret.push(String.fromCharCode(chr))}return ret.join(\"\")}var decodeBase64=typeof atob===\"function\"?atob:function(input){var keyStr=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";var output=\"\";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\\+\\/\\=]/g,\"\");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(i0){return}preRun();if(runDependencies>0)return;if(Module[\"calledRun\"])return;function doRun(){if(Module[\"calledRun\"])return;Module[\"calledRun\"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module[\"onRuntimeInitialized\"])Module[\"onRuntimeInitialized\"]();postRun()}if(Module[\"setStatus\"]){Module[\"setStatus\"](\"Running...\");setTimeout(function(){setTimeout(function(){Module[\"setStatus\"](\"\")},1);doRun()},1)}else{doRun()}}Module[\"run\"]=run;function abort(what){if(Module[\"onAbort\"]){Module[\"onAbort\"](what)}if(what!==undefined){out(what);err(what);what=JSON.stringify(what)}else{what=\"\"}ABORT=true;EXITSTATUS=1;throw\"abort(\"+what+\"). Build with -s ASSERTIONS=1 for more info.\"}Module[\"abort\"]=abort;if(Module[\"preInit\"]){if(typeof Module[\"preInit\"]==\"function\")Module[\"preInit\"]=[Module[\"preInit\"]];while(Module[\"preInit\"].length>0){Module[\"preInit\"].pop()()}}Module[\"noExitRuntime\"]=true;run();\n\n\n return Module\n}\n);\n})();\nif (typeof exports === 'object' && typeof module === 'object')\n module.exports = Module;\n else if (typeof define === 'function' && define['amd'])\n define([], function() { return Module; });\n else if (typeof exports === 'object')\n exports[\"Module\"] = Module;\n ","export interface XY { x: number, y: number; }\nexport interface XYZ extends XY { z: number; }\nexport interface XYZW extends XYZ { w: number; }\n\nexport interface RGB { r: number; g: number; b: number; }\nexport interface RGBA extends RGB { a: number; }\n\nimport * as Bind from \"./bind-imgui\";\nexport { Bind };\n\nlet bind: Bind.Module;\nexport default async function(value?: Partial): Promise {\n return new Promise((resolve: () => void) => {\n Bind.default(value).then((value: Bind.Module): void => {\n bind = value;\n resolve();\n });\n });\n}\nexport { bind };\n\nfunction import_Scalar(sca: XY | XYZ | XYZW | Bind.ImAccess | Bind.ImScalar | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImScalar {\n if (Array.isArray(sca)) { return [ sca[0] ]; }\n if (typeof sca === \"function\") { return [ sca() ]; }\n return [ sca.x ];\n}\n\nfunction export_Scalar(tuple: Bind.ImScalar, sca: XY | XYZ | XYZW | Bind.ImAccess | Bind.ImScalar | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(sca)) { sca[0] = tuple[0]; return; }\n if (typeof sca === \"function\") { sca(tuple[0]); return; }\n sca.x = tuple[0];\n}\n\nfunction import_Vector2(vec: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple2 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1] ]; }\n return [ vec.x, vec.y ];\n}\n\nfunction export_Vector2(tuple: Bind.ImTuple2, vec: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; return; }\n vec.x = tuple[0]; vec.y = tuple[1];\n}\n\nfunction import_Vector3(vec: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple3 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1], vec[2] ]; }\n return [ vec.x, vec.y, vec.z ];\n}\n\nfunction export_Vector3(tuple: Bind.ImTuple3, vec: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; vec[2] = tuple[2]; return; }\n vec.x = tuple[0]; vec.y = tuple[1]; vec.z = tuple[2];\n}\n\nfunction import_Vector4(vec: XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple4 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1], vec[2], vec[3] || 0 ]; }\n return [ vec.x, vec.y, vec.z, vec.w ];\n}\n\nfunction export_Vector4(tuple: Bind.ImTuple4, vec: XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; vec[2] = tuple[2]; vec[3] = tuple[3]; return; }\n vec.x = tuple[0]; vec.y = tuple[1]; vec.z = tuple[2]; vec.w = tuple[3];\n}\n\nfunction import_Color3(col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple3 {\n if (Array.isArray(col)) { return [ col[0], col[1], col[2] ]; }\n if (\"r\" in col) { return [ col.r, col.g, col.b ]; }\n return [ col.x, col.y, col.z ];\n}\n\nfunction export_Color3(tuple: Bind.ImTuple3, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(col)) { col[0] = tuple[0]; col[1] = tuple[1]; col[2] = tuple[2]; return; }\n if (\"r\" in col) { col.r = tuple[0]; col.g = tuple[1]; col.b = tuple[2]; return; }\n col.x = tuple[0]; col.y = tuple[1]; col.z = tuple[2];\n}\n\nfunction import_Color4(col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4 | RGBA): Bind.ImTuple4 {\n if (Array.isArray(col)) { return [ col[0], col[1], col[2], col[3] ]; }\n if (\"r\" in col) { return [ col.r, col.g, col.b, col.a ]; }\n return [ col.x, col.y, col.z, col.w ];\n}\n\nfunction export_Color4(tuple: Bind.ImTuple4, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4 | RGBA): void {\n if (Array.isArray(col)) { col[0] = tuple[0]; col[1] = tuple[1]; col[2] = tuple[2]; return; }\n if (\"r\" in col) { col.r = tuple[0]; col.g = tuple[1]; col.b = tuple[2]; return; }\n col.x = tuple[0]; col.y = tuple[1]; col.z = tuple[2];\n}\n\nimport * as config from \"./imconfig\";\n\nexport const IMGUI_VERSION: string = \"1.71\"; // bind.IMGUI_VERSION;\nexport const IMGUI_VERSION_NUM: number = 17100; // bind.IMGUI_VERSION_NUM;\n\n// #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert))\nexport function IMGUI_CHECKVERSION(): boolean { return DebugCheckVersionAndDataLayout(IMGUI_VERSION, bind.ImGuiIOSize, bind.ImGuiStyleSize, bind.ImVec2Size, bind.ImVec4Size, bind.ImDrawVertSize, bind.ImDrawIdxSize); }\n\nexport function IM_ASSERT(_EXPR: boolean | number): void { if (!_EXPR) { throw new Error(); } }\n\nexport function IM_ARRAYSIZE(_ARR: ArrayLike | ImStringBuffer): number {\n if (_ARR instanceof ImStringBuffer) {\n return _ARR.size;\n } else {\n return _ARR.length;\n }\n}\n\nexport class ImStringBuffer {\n constructor(public size: number, public buffer: string = \"\") {}\n}\n\nexport { ImAccess } from \"./bind-imgui\";\nexport { ImScalar } from \"./bind-imgui\";\nexport { ImTuple2 } from \"./bind-imgui\";\nexport { ImTuple3 } from \"./bind-imgui\";\nexport { ImTuple4 } from \"./bind-imgui\";\n\nexport type ImTextureID = WebGLTexture;\n\n// Flags for ImGui::Begin()\nexport { ImGuiWindowFlags as WindowFlags };\nexport enum ImGuiWindowFlags {\n None = 0,\n NoTitleBar = 1 << 0, // Disable title-bar\n NoResize = 1 << 1, // Disable user resizing with the lower-right grip\n NoMove = 1 << 2, // Disable user moving the window\n NoScrollbar = 1 << 3, // Disable scrollbars (window can still scroll with mouse or programatically)\n NoScrollWithMouse = 1 << 4, // Disable user vertically scrolling with mouse wheel. On child window, mouse wheel will be forwarded to the parent unless NoScrollbar is also set.\n NoCollapse = 1 << 5, // Disable user collapsing window by double-clicking on it\n AlwaysAutoResize = 1 << 6, // Resize every window to its content every frame\n NoBackground = 1 << 7, // Disable drawing background color (WindowBg, etc.) and outside border. Similar as using SetNextWindowBgAlpha(0.0f).\n NoSavedSettings = 1 << 8, // Never load/save settings in .ini file\n NoMouseInputs = 1 << 9, // Disable catching mouse or keyboard inputs, hovering test with pass through.\n MenuBar = 1 << 10, // Has a menu-bar\n HorizontalScrollbar = 1 << 11, // Allow horizontal scrollbar to appear (off by default). You may use SetNextWindowContentSize(ImVec2(width,0.0f)); prior to calling Begin() to specify width. Read code in imgui_demo in the \"Horizontal Scrolling\" section.\n NoFocusOnAppearing = 1 << 12, // Disable taking focus when transitioning from hidden to visible state\n NoBringToFrontOnFocus = 1 << 13, // Disable bringing window to front when taking focus (e.g. clicking on it or programatically giving it focus)\n AlwaysVerticalScrollbar= 1 << 14, // Always show vertical scrollbar (even if ContentSize.y < Size.y)\n AlwaysHorizontalScrollbar= 1 << 15, // Always show horizontal scrollbar (even if ContentSize.x < Size.x)\n AlwaysUseWindowPadding = 1 << 16, // Ensure child windows without border uses style.WindowPadding (ignored by default for non-bordered child windows, because more convenient)\n NoNavInputs = 1 << 18, // No gamepad/keyboard navigation within the window\n NoNavFocus = 1 << 19, // No focusing toward this window with gamepad/keyboard navigation (e.g. skipped by CTRL+TAB)\n UnsavedDocument = 1 << 20, // Append '*' to title without affecting the ID, as a convenience to avoid using the ### operator. When used in a tab/docking context, tab is selected on closure and closure is deferred by one frame to allow code to cancel the closure (with a confirmation popup, etc.) without flicker.\n NoNav = NoNavInputs | NoNavFocus,\n NoDecoration = NoTitleBar | NoResize | NoScrollbar | NoCollapse,\n NoInputs = NoMouseInputs | NoNavInputs | NoNavFocus,\n\n // [Internal]\n NavFlattened = 1 << 23, // (WIP) Allow gamepad/keyboard navigation to cross over parent border to this child (only use on child that have no scrolling!)\n ChildWindow = 1 << 24, // Don't use! For internal use by BeginChild()\n Tooltip = 1 << 25, // Don't use! For internal use by BeginTooltip()\n Popup = 1 << 26, // Don't use! For internal use by BeginPopup()\n Modal = 1 << 27, // Don't use! For internal use by BeginPopupModal()\n ChildMenu = 1 << 28, // Don't use! For internal use by BeginMenu()\n}\n\n// Flags for ImGui::InputText()\nexport { ImGuiInputTextFlags as InputTextFlags };\nexport enum ImGuiInputTextFlags {\n None = 0,\n CharsDecimal = 1 << 0, // Allow 0123456789.+-*/\n CharsHexadecimal = 1 << 1, // Allow 0123456789ABCDEFabcdef\n CharsUppercase = 1 << 2, // Turn a..z into A..Z\n CharsNoBlank = 1 << 3, // Filter out spaces, tabs\n AutoSelectAll = 1 << 4, // Select entire text when first taking mouse focus\n EnterReturnsTrue = 1 << 5, // Return 'true' when Enter is pressed (as opposed to when the value was modified)\n CallbackCompletion = 1 << 6, // Call user function on pressing TAB (for completion handling)\n CallbackHistory = 1 << 7, // Call user function on pressing Up/Down arrows (for history handling)\n CallbackAlways = 1 << 8, // Call user function every time. User code may query cursor position, modify text buffer.\n CallbackCharFilter = 1 << 9, // Call user function to filter character. Modify data->EventChar to replace/filter input, or return 1 to discard character.\n AllowTabInput = 1 << 10, // Pressing TAB input a '\\t' character into the text field\n CtrlEnterForNewLine = 1 << 11, // In multi-line mode, unfocus with Enter, add new line with Ctrl+Enter (default is opposite: unfocus with Ctrl+Enter, add line with Enter).\n NoHorizontalScroll = 1 << 12, // Disable following the cursor horizontally\n AlwaysInsertMode = 1 << 13, // Insert mode\n ReadOnly = 1 << 14, // Read-only mode\n Password = 1 << 15, // Password mode, display all characters as '*'\n NoUndoRedo = 1 << 16, // Disable undo/redo. Note that input text owns the text data while active, if you want to provide your own undo/redo stack you need e.g. to call ClearActiveID().\n CharsScientific = 1 << 17, // Allow 0123456789.+-*/eE (Scientific notation input)\n CallbackResize = 1 << 18, // Allow buffer capacity resize + notify when the string wants to be resized (for string types which hold a cache of their Size) (see misc/stl/imgui_stl.h for an example of using this)\n // [Internal]\n Multiline = 1 << 20, // For internal use by InputTextMultiline()\n NoMarkEdited = 1 << 21, // For internal use by functions using InputText() before reformatting data\n}\n\n// Flags for ImGui::TreeNodeEx(), ImGui::CollapsingHeader*()\nexport { ImGuiTreeNodeFlags as TreeNodeFlags };\nexport enum ImGuiTreeNodeFlags {\n None = 0,\n Selected = 1 << 0, // Draw as selected\n Framed = 1 << 1, // Full colored frame (e.g. for CollapsingHeader)\n AllowItemOverlap = 1 << 2, // Hit testing to allow subsequent widgets to overlap this one\n NoTreePushOnOpen = 1 << 3, // Don't do a TreePush() when open (e.g. for CollapsingHeader) = no extra indent nor pushing on ID stack\n NoAutoOpenOnLog = 1 << 4, // Don't automatically and temporarily open node when Logging is active (by default logging will automatically open tree nodes)\n DefaultOpen = 1 << 5, // Default node to be open\n OpenOnDoubleClick = 1 << 6, // Need double-click to open node\n OpenOnArrow = 1 << 7, // Only open when clicking on the arrow part. If OpenOnDoubleClick is also set, single-click arrow or double-click all box to open.\n Leaf = 1 << 8, // No collapsing, no arrow (use as a convenience for leaf nodes).\n Bullet = 1 << 9, // Display a bullet instead of arrow\n FramePadding = 1 << 10, // Use FramePadding (even for an unframed text node) to vertically align text baseline to regular widget height. Equivalent to calling AlignTextToFramePadding().\n //SpanAllAvailWidth = 1 << 11, // FIXME: TODO: Extend hit box horizontally even if not framed\n //NoScrollOnOpen = 1 << 12, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible\n NavLeftJumpsBackHere = 1 << 13, // (WIP) Nav: left direction may move to this TreeNode() from any of its child (items submitted between TreeNode and TreePop)\n CollapsingHeader = Framed | NoTreePushOnOpen | NoAutoOpenOnLog,\n}\n\n// Flags for ImGui::Selectable()\nexport { ImGuiSelectableFlags as SelectableFlags };\nexport enum ImGuiSelectableFlags {\n None = 0,\n DontClosePopups = 1 << 0, // Clicking this don't close parent popup window\n SpanAllColumns = 1 << 1, // Selectable frame can span all columns (text will still fit in current column)\n AllowDoubleClick = 1 << 2, // Generate press events on double clicks too\n Disabled = 1 << 3 // Cannot be selected, display greyed out text\n}\n\n// Flags for ImGui::BeginCombo()\nexport { ImGuiComboFlags as ComboFlags };\nexport enum ImGuiComboFlags {\n None = 0,\n PopupAlignLeft = 1 << 0, // Align the popup toward the left by default\n HeightSmall = 1 << 1, // Max ~4 items visible. Tip: If you want your combo popup to be a specific size you can use SetNextWindowSizeConstraints() prior to calling BeginCombo()\n HeightRegular = 1 << 2, // Max ~8 items visible (default)\n HeightLarge = 1 << 3, // Max ~20 items visible\n HeightLargest = 1 << 4, // As many fitting items as possible\n NoArrowButton = 1 << 5, // Display on the preview box without the square arrow button\n NoPreview = 1 << 6, // Display only a square arrow button\n HeightMask_ = HeightSmall | HeightRegular | HeightLarge | HeightLargest,\n}\n\n// Flags for ImGui::BeginTabBar()\nexport { ImGuiTabBarFlags as TabBarFlags };\nexport enum ImGuiTabBarFlags {\n None = 0,\n Reorderable = 1 << 0, // Allow manually dragging tabs to re-order them + New tabs are appended at the end of list\n AutoSelectNewTabs = 1 << 1, // Automatically select new tabs when they appear\n TabListPopupButton = 1 << 2,\n NoCloseWithMiddleMouseButton = 1 << 3, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.\n NoTabListScrollingButtons = 1 << 4,\n NoTooltip = 1 << 5, // Disable tooltips when hovering a tab\n FittingPolicyResizeDown = 1 << 6, // Resize tabs when they don't fit\n FittingPolicyScroll = 1 << 7, // Add scroll buttons when tabs don't fit\n FittingPolicyMask_ = FittingPolicyResizeDown | FittingPolicyScroll,\n FittingPolicyDefault_ = FittingPolicyResizeDown\n};\n\n// Flags for ImGui::BeginTabItem()\nexport { ImGuiTabItemFlags as TabItemFlags };\nexport enum ImGuiTabItemFlags\n{\n ImGuiTabItemFlags_None = 0,\n ImGuiTabItemFlags_UnsavedDocument = 1 << 0, // Append '*' to title without affecting the ID, as a convenience to avoid using the ### operator. Also: tab is selected on closure and closure is deferred by one frame to allow code to undo it without flicker.\n ImGuiTabItemFlags_SetSelected = 1 << 1, // Trigger flag to programatically make the tab selected when calling BeginTabItem()\n ImGuiTabItemFlags_NoCloseWithMiddleMouseButton = 1 << 2, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.\n ImGuiTabItemFlags_NoPushId = 1 << 3 // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem()\n};\n\n// Flags for ImGui::IsWindowFocused()\nexport { ImGuiFocusedFlags as FocusedFlags };\nexport enum ImGuiFocusedFlags {\n None = 0,\n ChildWindows = 1 << 0, // IsWindowFocused(): Return true if any children of the window is focused\n RootWindow = 1 << 1, // IsWindowFocused(): Test from root window (top most parent of the current hierarchy)\n AnyWindow = 1 << 2, // IsWindowFocused(): Return true if any window is focused\n RootAndChildWindows = RootWindow | ChildWindows,\n}\n\n// Flags for ImGui::IsItemHovered(), ImGui::IsWindowHovered()\nexport { ImGuiHoveredFlags as HoveredFlags };\nexport enum ImGuiHoveredFlags {\n None = 0, // Return true if directly over the item/window, not obstructed by another window, not obstructed by an active popup or modal blocking inputs under them.\n ChildWindows = 1 << 0, // IsWindowHovered() only: Return true if any children of the window is hovered\n RootWindow = 1 << 1, // IsWindowHovered() only: Test from root window (top most parent of the current hierarchy)\n AnyWindow = 1 << 2, // IsWindowHovered() only: Return true if any window is hovered\n AllowWhenBlockedByPopup = 1 << 3, // Return true even if a popup window is normally blocking access to this item/window\n //AllowWhenBlockedByModal = 1 << 4, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet.\n AllowWhenBlockedByActiveItem = 1 << 5, // Return true even if an active item is blocking access to this item/window. Useful for Drag and Drop patterns.\n AllowWhenOverlapped = 1 << 6, // Return true even if the position is overlapped by another window\n AllowWhenDisabled = 1 << 7, // Return true even if the item is disabled\n RectOnly = AllowWhenBlockedByPopup | AllowWhenBlockedByActiveItem | AllowWhenOverlapped,\n RootAndChildWindows = RootWindow | ChildWindows,\n}\n\n// Flags for ImGui::BeginDragDropSource(), ImGui::AcceptDragDropPayload()\nexport { ImGuiDragDropFlags as DragDropFlags };\nexport enum ImGuiDragDropFlags {\n // BeginDragDropSource() flags\n None = 0,\n SourceNoPreviewTooltip = 1 << 0, // By default, a successful call to BeginDragDropSource opens a tooltip so you can display a preview or description of the source contents. This flag disable this behavior.\n SourceNoDisableHover = 1 << 1, // By default, when dragging we clear data so that IsItemHovered() will return true, to avoid subsequent user code submitting tooltips. This flag disable this behavior so you can still call IsItemHovered() on the source item.\n SourceNoHoldToOpenOthers = 1 << 2, // Disable the behavior that allows to open tree nodes and collapsing header by holding over them while dragging a source item.\n SourceAllowNullID = 1 << 3, // Allow items such as Text(), Image() that have no unique identifier to be used as drag source, by manufacturing a temporary identifier based on their window-relative position. This is extremely unusual within the dear imgui ecosystem and so we made it explicit.\n SourceExtern = 1 << 4, // External source (from outside of imgui), won't attempt to read current item/window info. Will always return true. Only one Extern source can be active simultaneously.\n SourceAutoExpirePayload = 1 << 5, // Automatically expire the payload if the source cease to be submitted (otherwise payloads are persisting while being dragged)\n // AcceptDragDropPayload() flags\n AcceptBeforeDelivery = 1 << 10, // AcceptDragDropPayload() will returns true even before the mouse button is released. You can then call IsDelivery() to test if the payload needs to be delivered.\n AcceptNoDrawDefaultRect = 1 << 11, // Do not draw the default highlight rectangle when hovering over target.\n AcceptNoPreviewTooltip = 1 << 12, // Request hiding the BeginDragDropSource tooltip from the BeginDragDropTarget site.\n AcceptPeekOnly = AcceptBeforeDelivery | AcceptNoDrawDefaultRect, // For peeking ahead and inspecting the payload before delivery.\n}\n\n// Standard Drag and Drop payload types. You can define you own payload types using 12-characters long strings. Types starting with '_' are defined by Dear ImGui.\nexport const IMGUI_PAYLOAD_TYPE_COLOR_3F: string = \"_COL3F\"; // float[3] // Standard type for colors, without alpha. User code may use this type.\nexport const IMGUI_PAYLOAD_TYPE_COLOR_4F: string = \"_COL4F\"; // float[4] // Standard type for colors. User code may use this type.\n\n// A primary data type\nexport { ImGuiDataType as DataType };\nexport enum ImGuiDataType {\n S8, // char\n U8, // unsigned char\n S16, // short\n U16, // unsigned short\n S32, // int\n U32, // unsigned int\n S64, // long long, __int64\n U64, // unsigned long long, unsigned __int64\n Float, // float\n Double, // double\n COUNT\n}\n\n// A cardinal direction\nexport { ImGuiDir as Dir };\nexport enum ImGuiDir {\n None = -1,\n Left = 0,\n Right = 1,\n Up = 2,\n Down = 3,\n COUNT\n}\n\n// User fill ImGuiIO.KeyMap[] array with indices into the ImGuiIO.KeysDown[512] array\nexport { ImGuiKey as Key };\nexport enum ImGuiKey {\n Tab,\n LeftArrow,\n RightArrow,\n UpArrow,\n DownArrow,\n PageUp,\n PageDown,\n Home,\n End,\n Insert,\n Delete,\n Backspace,\n Space,\n Enter,\n Escape,\n A, // for text edit CTRL+A: select all\n C, // for text edit CTRL+C: copy\n V, // for text edit CTRL+V: paste\n X, // for text edit CTRL+X: cut\n Y, // for text edit CTRL+Y: redo\n Z, // for text edit CTRL+Z: undo\n COUNT,\n}\n\n// [BETA] Gamepad/Keyboard directional navigation\n// Keyboard: Set io.ConfigFlags |= EnableKeyboard to enable. NewFrame() will automatically fill io.NavInputs[] based on your io.KeyDown[] + io.KeyMap[] arrays.\n// Gamepad: Set io.ConfigFlags |= EnableGamepad to enable. Fill the io.NavInputs[] fields before calling NewFrame(). Note that io.NavInputs[] is cleared by EndFrame().\n// Read instructions in imgui.cpp for more details.\nexport { ImGuiNavInput as NavInput };\nexport enum ImGuiNavInput\n{\n // Gamepad Mapping\n Activate, // activate / open / toggle / tweak value // e.g. Circle (PS4), A (Xbox), B (Switch), Space (Keyboard)\n Cancel, // cancel / close / exit // e.g. Cross (PS4), B (Xbox), A (Switch), Escape (Keyboard)\n Input, // text input / on-screen keyboard // e.g. Triang.(PS4), Y (Xbox), X (Switch), Return (Keyboard)\n Menu, // tap: toggle menu / hold: focus, move, resize // e.g. Square (PS4), X (Xbox), Y (Switch), Alt (Keyboard)\n DpadLeft, // move / tweak / resize window (w/ PadMenu) // e.g. D-pad Left/Right/Up/Down (Gamepads), Arrow keys (Keyboard)\n DpadRight, //\n DpadUp, //\n DpadDown, //\n LStickLeft, // scroll / move window (w/ PadMenu) // e.g. Left Analog Stick Left/Right/Up/Down\n LStickRight, //\n LStickUp, //\n LStickDown, //\n FocusPrev, // next window (w/ PadMenu) // e.g. L1 or L2 (PS4), LB or LT (Xbox), L or ZL (Switch)\n FocusNext, // prev window (w/ PadMenu) // e.g. R1 or R2 (PS4), RB or RT (Xbox), R or ZL (Switch)\n TweakSlow, // slower tweaks // e.g. L1 or L2 (PS4), LB or LT (Xbox), L or ZL (Switch)\n TweakFast, // faster tweaks // e.g. R1 or R2 (PS4), RB or RT (Xbox), R or ZL (Switch)\n\n // [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them.\n // Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) may be directly reading from io.KeyDown[] instead of io.NavInputs[].\n KeyMenu_, // toggle menu // = io.KeyAlt\n KeyTab_, // tab // = Tab key\n KeyLeft_, // move left // = Arrow keys\n KeyRight_, // move right\n KeyUp_, // move up\n KeyDown_, // move down\n COUNT,\n InternalStart_ = KeyMenu_,\n}\n\n// [BETA] Gamepad/Keyboard directional navigation flags, stored in io.ConfigFlags\nexport { ImGuiConfigFlags as ConfigFlags };\nexport enum ImGuiConfigFlags\n{\n None = 0,\n NavEnableKeyboard = 1 << 0, // Master keyboard navigation enable flag. NewFrame() will automatically fill io.NavInputs[] based on io.KeyDown[].\n NavEnableGamepad = 1 << 1, // Master gamepad navigation enable flag. This is mostly to instruct your imgui back-end to fill io.NavInputs[].\n NavEnableSetMousePos = 1 << 2, // Request navigation to allow moving the mouse cursor. May be useful on TV/console systems where moving a virtual mouse is awkward. Will update io.MousePos and set io.WantMoveMouse=true. If enabled you MUST honor io.WantMoveMouse requests in your binding, otherwise ImGui will react as if the mouse is jumping around back and forth.\n NavNoCaptureKeyboard = 1 << 3, // Do not set the io.WantCaptureKeyboard flag with io.NavActive is set.\n NoMouse = 1 << 4, // Instruct imgui to clear mouse position/buttons in NewFrame(). This allows ignoring the mouse information back-end\n NoMouseCursorChange = 1 << 5, // Instruct back-end to not alter mouse cursor shape and visibility.\n\n IsSRGB = 1 << 20, // Application is SRGB-aware.\n IsTouchScreen = 1 << 21 // Application is using a touch screen instead of a mouse.\n}\n\n// Enumeration for PushStyleColor() / PopStyleColor()\nexport { ImGuiCol as Col };\nexport enum ImGuiCol {\n Text,\n TextDisabled,\n WindowBg, // Background of normal windows\n ChildBg, // Background of child windows\n PopupBg, // Background of popups, menus, tooltips windows\n Border,\n BorderShadow,\n FrameBg, // Background of checkbox, radio button, plot, slider, text input\n FrameBgHovered,\n FrameBgActive,\n TitleBg,\n TitleBgActive,\n TitleBgCollapsed,\n MenuBarBg,\n ScrollbarBg,\n ScrollbarGrab,\n ScrollbarGrabHovered,\n ScrollbarGrabActive,\n CheckMark,\n SliderGrab,\n SliderGrabActive,\n Button,\n ButtonHovered,\n ButtonActive,\n Header,\n HeaderHovered,\n HeaderActive,\n Separator,\n SeparatorHovered,\n SeparatorActive,\n ResizeGrip,\n ResizeGripHovered,\n ResizeGripActive,\n Tab,\n TabHovered,\n TabActive,\n TabUnfocused,\n TabUnfocusedActive,\n PlotLines,\n PlotLinesHovered,\n PlotHistogram,\n PlotHistogramHovered,\n TextSelectedBg,\n DragDropTarget,\n NavHighlight, // Gamepad/keyboard: current highlighted item\n NavWindowingHighlight, // Highlight window when using CTRL+TAB\n NavWindowingDimBg, // Darken/colorize entire screen behind the CTRL+TAB window list, when active\n ModalWindowDimBg, // Darken/colorize entire screen behind a modal window, when one is active\n COUNT,\n}\n\n// Enumeration for PushStyleVar() / PopStyleVar() to temporarily modify the ImGuiStyle structure.\n// NB: the enum only refers to fields of ImGuiStyle which makes sense to be pushed/popped inside UI code. During initialization, feel free to just poke into ImGuiStyle directly.\n// NB: if changing this enum, you need to update the associated internal table GStyleVarInfo[] accordingly. This is where we link enum values to members offset/type.\nexport { ImGuiStyleVar as StyleVar };\nexport enum ImGuiStyleVar {\n // Enum name ......................// Member in ImGuiStyle structure (see ImGuiStyle for descriptions)\n Alpha, // float Alpha\n WindowPadding, // ImVec2 WindowPadding\n WindowRounding, // float WindowRounding\n WindowBorderSize, // float WindowBorderSize\n WindowMinSize, // ImVec2 WindowMinSize\n WindowTitleAlign, // ImVec2 WindowTitleAlign\n // WindowMenuButtonPosition, // ImGuiDir WindowMenuButtonPosition\n ChildRounding, // float ChildRounding\n ChildBorderSize, // float ChildBorderSize\n PopupRounding, // float PopupRounding\n PopupBorderSize, // float PopupBorderSize\n FramePadding, // ImVec2 FramePadding\n FrameRounding, // float FrameRounding\n FrameBorderSize, // float FrameBorderSize\n ItemSpacing, // ImVec2 ItemSpacing\n ItemInnerSpacing, // ImVec2 ItemInnerSpacing\n IndentSpacing, // float IndentSpacing\n ScrollbarSize, // float ScrollbarSize\n ScrollbarRounding, // float ScrollbarRounding\n GrabMinSize, // float GrabMinSize\n GrabRounding, // float GrabRounding\n TabRounding, // float TabRounding\n ButtonTextAlign, // ImVec2 ButtonTextAlign\n SelectableTextAlign, // ImVec2 SelectableTextAlign\n Count_, COUNT = Count_,\n}\n\n// Back-end capabilities flags stored in io.BackendFlags. Set by imgui_impl_xxx or custom back-end.\nexport { ImGuiBackendFlags as BackendFlags };\nexport enum ImGuiBackendFlags {\n None = 0,\n HasGamepad = 1 << 0, // Back-end has a connected gamepad.\n HasMouseCursors = 1 << 1, // Back-end can honor GetMouseCursor() values and change the OS cursor shape.\n HasSetMousePos = 1 << 2, // Back-end can honor io.WantSetMousePos and reposition the mouse (only used if ImGuiConfigFlags_NavEnableSetMousePos is set).\n RendererHasVtxOffset = 1 << 3, // Back-end Renderer supports ImDrawCmd::VtxOffset. This enables output of large meshes (64K+ vertices) while still using 16-bits indices.\n}\n\n// Enumeration for ColorEdit3() / ColorEdit4() / ColorPicker3() / ColorPicker4() / ColorButton()\nexport { ImGuiColorEditFlags as ColorEditFlags };\nexport enum ImGuiColorEditFlags {\n None = 0,\n NoAlpha = 1 << 1, // // ColorEdit, ColorPicker, ColorButton: ignore Alpha component (read 3 components from the input pointer).\n NoPicker = 1 << 2, // // ColorEdit: disable picker when clicking on colored square.\n NoOptions = 1 << 3, // // ColorEdit: disable toggling options menu when right-clicking on inputs/small preview.\n NoSmallPreview = 1 << 4, // // ColorEdit, ColorPicker: disable colored square preview next to the inputs. (e.g. to show only the inputs)\n NoInputs = 1 << 5, // // ColorEdit, ColorPicker: disable inputs sliders/text widgets (e.g. to show only the small preview colored square).\n NoTooltip = 1 << 6, // // ColorEdit, ColorPicker, ColorButton: disable tooltip when hovering the preview.\n NoLabel = 1 << 7, // // ColorEdit, ColorPicker: disable display of inline text label (the label is still forwarded to the tooltip and picker).\n NoSidePreview = 1 << 8, // // ColorPicker: disable bigger color preview on right side of the picker, use small colored square preview instead.\n NoDragDrop = 1 << 9, // // ColorEdit: disable drag and drop target. ColorButton: disable drag and drop source.\n // User Options (right-click on widget to change some of them). You can set application defaults using SetColorEditOptions(). The idea is that you probably don't want to override them in most of your calls, let the user choose and/or call SetColorEditOptions() during startup.\n AlphaBar = 1 << 16, // // ColorEdit, ColorPicker: show vertical alpha bar/gradient in picker.\n AlphaPreview = 1 << 17, // // ColorEdit, ColorPicker, ColorButton: display preview as a transparent color over a checkerboard, instead of opaque.\n AlphaPreviewHalf= 1 << 18, // // ColorEdit, ColorPicker, ColorButton: display half opaque / half checkerboard, instead of opaque.\n HDR = 1 << 19, // // (WIP) ColorEdit: Currently only disable 0.0f..1.0f limits in RGBA edition (note: you probably want to use Float flag as well).\n DisplayRGB = 1 << 20, // [Inputs] // ColorEdit: choose one among RGB/HSV/HEX. ColorPicker: choose any combination using RGB/HSV/HEX.\n DisplayHSV = 1 << 21, // [Inputs] // \"\n DisplayHex = 1 << 22, // [Inputs] // \"\n Uint8 = 1 << 23, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0..255.\n Float = 1 << 24, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0.0f..1.0f floats instead of 0..255 integers. No round-trip of value via integers.\n PickerHueBar = 1 << 25, // [PickerMode] // ColorPicker: bar for Hue, rectangle for Sat/Value.\n PickerHueWheel = 1 << 26, // [PickerMode] // ColorPicker: wheel for Hue, triangle for Sat/Value.\n InputRGB = 1 << 27, // [Input] // ColorEdit, ColorPicker: input and output data in RGB format.\n InputHSV = 1 << 28, // [Input] // ColorEdit, ColorPicker: input and output data in HSV format.\n\n // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to\n // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup.\n _OptionsDefault = Uint8|DisplayRGB|InputRGB|PickerHueBar,\n\n // [Internal] Masks\n _DisplayMask = DisplayRGB|DisplayHSV|DisplayHex,\n _DataTypeMask = Uint8|Float,\n _PickerMask = PickerHueWheel|PickerHueBar,\n _InputMask = InputRGB|InputHSV,\n}\n\n// Enumeration for GetMouseCursor()\nexport { ImGuiMouseCursor as MouseCursor };\nexport enum ImGuiMouseCursor {\n None = -1,\n Arrow = 0,\n TextInput, // When hovering over InputText, etc.\n ResizeAll, // (Unused by imgui functions)\n ResizeNS, // When hovering over an horizontal border\n ResizeEW, // When hovering over a vertical border or a column\n ResizeNESW, // When hovering over the bottom-left corner of a window\n ResizeNWSE, // When hovering over the bottom-right corner of a window\n Hand, // (Unused by imgui functions. Use for e.g. hyperlinks)\n Count_, COUNT = Count_,\n}\n\n// Condition for ImGui::SetWindow***(), SetNextWindow***(), SetNextTreeNode***() functions\n// All those functions treat 0 as a shortcut to Always. From the point of view of the user use this as an enum (don't combine multiple values into flags).\nexport { ImGuiCond as Cond };\nexport enum ImGuiCond {\n Always = 1 << 0, // Set the variable\n Once = 1 << 1, // Set the variable once per runtime session (only the first call with succeed)\n FirstUseEver = 1 << 2, // Set the variable if the window has no saved data (if doesn't exist in the .ini file)\n Appearing = 1 << 3, // Set the variable if the window is appearing after being hidden/inactive (or the first time)\n}\n\nexport { ImDrawCornerFlags as wCornerFlags };\nexport enum ImDrawCornerFlags\n{\n TopLeft = 1 << 0, // 0x1\n TopRight = 1 << 1, // 0x2\n BotLeft = 1 << 2, // 0x4\n BotRight = 1 << 3, // 0x8\n Top = TopLeft | TopRight, // 0x3\n Bot = BotLeft | BotRight, // 0xC\n Left = TopLeft | BotLeft, // 0x5\n Right = TopRight | BotRight, // 0xA\n All = 0xF, // In your function calls you may use ~0 (= all bits sets) instead of All, as a convenience\n}\n\nexport { ImDrawListFlags as wListFlags };\nexport enum ImDrawListFlags\n{\n None = 0,\n AntiAliasedLines = 1 << 0,\n AntiAliasedFill = 1 << 1,\n}\n\nexport { ImU32 } from \"./bind-imgui\";\n\nexport { interface_ImVec2 } from \"./bind-imgui\";\nexport { reference_ImVec2 } from \"./bind-imgui\";\n\nexport class ImVec2 implements Bind.interface_ImVec2 {\n public static readonly ZERO: Readonly = new ImVec2(0.0, 0.0);\n public static readonly UNIT: Readonly = new ImVec2(1.0, 1.0);\n public static readonly UNIT_X: Readonly = new ImVec2(1.0, 0.0);\n public static readonly UNIT_Y: Readonly = new ImVec2(0.0, 1.0);\n\n constructor(public x: number = 0.0, public y: number = 0.0) {}\n\n public Set(x: number, y: number): this {\n this.x = x;\n this.y = y;\n return this;\n }\n\n public Copy(other: Readonly): this {\n this.x = other.x;\n this.y = other.y;\n return this;\n }\n\n public Equals(other: Readonly): boolean {\n if (this.x !== other.x) { return false; }\n if (this.y !== other.y) { return false; }\n return true;\n }\n}\n\nexport { interface_ImVec4 } from \"./bind-imgui\";\nexport { reference_ImVec4 } from \"./bind-imgui\";\n\nexport class ImVec4 implements Bind.interface_ImVec4 {\n public static readonly ZERO: Readonly = new ImVec4(0.0, 0.0, 0.0, 0.0);\n public static readonly UNIT: Readonly = new ImVec4(1.0, 1.0, 1.0, 1.0);\n public static readonly UNIT_X: Readonly = new ImVec4(1.0, 0.0, 0.0, 0.0);\n public static readonly UNIT_Y: Readonly = new ImVec4(0.0, 1.0, 0.0, 0.0);\n public static readonly UNIT_Z: Readonly = new ImVec4(0.0, 0.0, 1.0, 0.0);\n public static readonly UNIT_W: Readonly = new ImVec4(0.0, 0.0, 0.0, 1.0);\n public static readonly BLACK: Readonly = new ImVec4(0.0, 0.0, 0.0, 1.0);\n public static readonly WHITE: Readonly = new ImVec4(1.0, 1.0, 1.0, 1.0);\n\n constructor(public x: number = 0.0, public y: number = 0.0, public z: number = 0.0, public w: number = 1.0) {}\n\n public Set(x: number, y: number, z: number, w: number): this {\n this.x = x;\n this.y = y;\n this.z = z;\n this.w = w;\n return this;\n }\n\n public Copy(other: Readonly): this {\n this.x = other.x;\n this.y = other.y;\n this.z = other.z;\n this.w = other.w;\n return this;\n }\n\n public Equals(other: Readonly): boolean {\n if (this.x !== other.x) { return false; }\n if (this.y !== other.y) { return false; }\n if (this.z !== other.z) { return false; }\n if (this.w !== other.w) { return false; }\n return true;\n }\n}\n\n//-----------------------------------------------------------------------------\n// Helpers\n//-----------------------------------------------------------------------------\n\n// Lightweight std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug).\n// Our implementation does NOT call C++ constructors/destructors. This is intentional and we do not require it. Do not use this class as a straight std::vector replacement in your code!\nexport class ImVector extends Array\n{\n public get Size(): number { return this.length; }\n public Data: T[] = this;\n public empty(): boolean { return this.length === 0; }\n public clear(): void { this.length = 0; }\n public pop_back(): T | undefined { return this.pop(); }\n public push_back(value: T): void { this.push(value); }\n // public:\n // int Size;\n // int Capacity;\n // T* Data;\n\n // typedef T value_type;\n // typedef value_type* iterator;\n // typedef const value_type* const_iterator;\n\n // inline ImVector() { Size = Capacity = 0; Data = NULL; }\n // inline ~ImVector() { if (Data) ImGui::MemFree(Data); }\n\n // inline bool empty() const { return Size == 0; }\n // inline int size() const { return Size; }\n // inline int capacity() const { return Capacity; }\n\n // inline value_type& operator[](int i) { IM_ASSERT(i < Size); return Data[i]; }\n // inline const value_type& operator[](int i) const { IM_ASSERT(i < Size); return Data[i]; }\n\n // inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } }\n // inline iterator begin() { return Data; }\n // inline const_iterator begin() const { return Data; }\n // inline iterator end() { return Data + Size; }\n // inline const_iterator end() const { return Data + Size; }\n // inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; }\n // inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; }\n // inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; }\n // inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; }\n // inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; }\n\n // inline int _grow_capacity(int size) const { int new_capacity = Capacity ? (Capacity + Capacity/2) : 8; return new_capacity > size ? new_capacity : size; }\n\n // inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; }\n // inline void resize(int new_size, const T& v){ if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) Data[n] = v; Size = new_size; }\n // inline void reserve(int new_capacity)\n // {\n // if (new_capacity <= Capacity)\n // return;\n // T* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T));\n // if (Data)\n // memcpy(new_data, Data, (size_t)Size * sizeof(T));\n // ImGui::MemFree(Data);\n // Data = new_data;\n // Capacity = new_capacity;\n // }\n\n // inline void push_back(const value_type& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); Data[Size++] = v; }\n // inline void pop_back() { IM_ASSERT(Size > 0); Size--; }\n // inline void push_front(const value_type& v) { if (Size == 0) push_back(v); else insert(Data, v); }\n\n // inline iterator erase(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; }\n // inline iterator erase(const_iterator it, const_iterator it_last){ IM_ASSERT(it >= Data && it < Data+Size && it_last > it && it_last <= Data+Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - count) * sizeof(value_type)); Size -= (int)count; return Data + off; }\n // inline iterator erase_unsorted(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; if (it < Data+Size-1) memcpy(Data + off, Data + Size - 1, sizeof(value_type)); Size--; return Data + off; }\n // inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= Data && it <= Data+Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; }\n // inline bool contains(const value_type& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; }\n}\n\n// Helper: Parse and apply text filters. In format \"aaaaa[,bbbb][,ccccc]\"\nexport class ImGuiTextFilter\n{\n // IMGUI_API ImGuiTextFilter(const char* default_filter = \"\");\n constructor(default_filter: string = \"\") {\n if (default_filter)\n {\n // ImStrncpy(InputBuf, default_filter, IM_ARRAYSIZE(InputBuf));\n this.InputBuf.buffer = default_filter;\n this.Build();\n }\n else\n {\n // InputBuf[0] = 0;\n this.InputBuf.buffer = \"\";\n this.CountGrep = 0;\n }\n }\n // IMGUI_API bool Draw(const char* label = \"Filter (inc,-exc)\", float width = 0.0f); // Helper calling InputText+Build\n public Draw(label: string = \"Filter (inc,-exc)\", width: number = 0.0): boolean {\n if (width !== 0.0)\n bind.PushItemWidth(width);\n const value_changed: boolean = InputText(label, this.InputBuf, IM_ARRAYSIZE(this.InputBuf));\n if (width !== 0.0)\n bind.PopItemWidth();\n if (value_changed)\n this.Build();\n return value_changed;\n }\n // IMGUI_API bool PassFilter(const char* text, const char* text_end = NULL) const;\n public PassFilter(text: string, text_end: number | null = null): boolean {\n // if (Filters.empty())\n // return true;\n\n // if (text == NULL)\n // text = \"\";\n\n // for (int i = 0; i != Filters.Size; i++)\n // {\n // const TextRange& f = Filters[i];\n // if (f.empty())\n // continue;\n // if (f.front() == '-')\n // {\n // // Subtract\n // if (ImStristr(text, text_end, f.begin()+1, f.end()) != NULL)\n // return false;\n // }\n // else\n // {\n // // Grep\n // if (ImStristr(text, text_end, f.begin(), f.end()) != NULL)\n // return true;\n // }\n // }\n\n // Implicit * grep\n if (this.CountGrep === 0)\n return true;\n\n return false;\n }\n // IMGUI_API void Build();\n public Build(): void {\n // Filters.resize(0);\n // TextRange input_range(InputBuf, InputBuf+strlen(InputBuf));\n // input_range.split(',', Filters);\n\n this.CountGrep = 0;\n // for (int i = 0; i != Filters.Size; i++)\n // {\n // Filters[i].trim_blanks();\n // if (Filters[i].empty())\n // continue;\n // if (Filters[i].front() != '-')\n // CountGrep += 1;\n // }\n }\n // void Clear() { InputBuf[0] = 0; Build(); }\n public Clear(): void { this.InputBuf.buffer = \"\"; this.Build(); }\n // bool IsActive() const { return !Filters.empty(); }\n public IsActive(): boolean { return false; }\n\n // [Internal]\n // struct TextRange\n // {\n // const char* b;\n // const char* e;\n\n // TextRange() { b = e = NULL; }\n // TextRange(const char* _b, const char* _e) { b = _b; e = _e; }\n // const char* begin() const { return b; }\n // const char* end() const { return e; }\n // bool empty() const { return b == e; }\n // char front() const { return *b; }\n // static bool is_blank(char c) { return c == ' ' || c == '\\t'; }\n // void trim_blanks() { while (b < e && is_blank(*b)) b++; while (e > b && is_blank(*(e-1))) e--; }\n // IMGUI_API void split(char separator, ImVector& out);\n // };\n\n // char InputBuf[256];\n public InputBuf: ImStringBuffer = new ImStringBuffer(256);\n // ImVector Filters;\n // int CountGrep;\n public CountGrep: number = 0;\n}\n\n// Helper: Text buffer for logging/accumulating text\nexport class ImGuiTextBuffer\n{\n // ImVector Buf;\n public Buf: string = \"\";\n public begin(): string { return this.Buf; }\n public size(): number { return this.Buf.length; }\n public clear(): void { this.Buf = \"\"; }\n public append(text: string): void { this.Buf += text; }\n\n // ImGuiTextBuffer() { Buf.push_back(0); }\n // inline char operator[](int i) { return Buf.Data[i]; }\n // const char* begin() const { return &Buf.front(); }\n // const char* end() const { return &Buf.back(); } // Buf is zero-terminated, so end() will point on the zero-terminator\n // int size() const { return Buf.Size - 1; }\n // bool empty() { return Buf.Size <= 1; }\n // void clear() { Buf.clear(); Buf.push_back(0); }\n // void reserve(int capacity) { Buf.reserve(capacity); }\n // const char* c_str() const { return Buf.Data; }\n // IMGUI_API void appendf(const char* fmt, ...) IM_FMTARGS(2);\n // IMGUI_API void appendfv(const char* fmt, va_list args) IM_FMTLIST(2);\n}\n\n// Helper: Simple Key->value storage\n// Typically you don't have to worry about this since a storage is held within each Window.\n// We use it to e.g. store collapse state for a tree (Int 0/1), store color edit options.\n// This is optimized for efficient reading (dichotomy into a contiguous buffer), rare writing (typically tied to user interactions)\n// You can use it as custom user storage for temporary values. Declare your own storage if, for example:\n// - You want to manipulate the open/close state of a particular sub-tree in your interface (tree node uses Int 0/1 to store their state).\n// - You want to store custom debug data easily without adding or editing structures in your code (probably not efficient, but convenient)\n// Types are NOT stored, so it is up to you to make sure your Key don't collide with different types.\nexport class ImGuiStorage\n{\n // struct Pair\n // {\n // ImGuiID key;\n // union { int val_i; float val_f; void* val_p; };\n // Pair(ImGuiID _key, int _val_i) { key = _key; val_i = _val_i; }\n // Pair(ImGuiID _key, float _val_f) { key = _key; val_f = _val_f; }\n // Pair(ImGuiID _key, void* _val_p) { key = _key; val_p = _val_p; }\n // };\n // ImVector Data;\n\n // - Get***() functions find pair, never add/allocate. Pairs are sorted so a query is O(log N)\n // - Set***() functions find pair, insertion on demand if missing.\n // - Sorted insertion is costly, paid once. A typical frame shouldn't need to insert any new pair.\n // void Clear() { Data.clear(); }\n // IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const;\n // IMGUI_API void SetInt(ImGuiID key, int val);\n // IMGUI_API bool GetBool(ImGuiID key, bool default_val = false) const;\n // IMGUI_API void SetBool(ImGuiID key, bool val);\n // IMGUI_API float GetFloat(ImGuiID key, float default_val = 0.0f) const;\n // IMGUI_API void SetFloat(ImGuiID key, float val);\n // IMGUI_API void* GetVoidPtr(ImGuiID key) const; // default_val is NULL\n // IMGUI_API void SetVoidPtr(ImGuiID key, void* val);\n\n // - Get***Ref() functions finds pair, insert on demand if missing, return pointer. Useful if you intend to do Get+Set.\n // - References are only valid until a new value is added to the storage. Calling a Set***() function or a Get***Ref() function invalidates the pointer.\n // - A typical use case where this is convenient for quick hacking (e.g. add storage during a live Edit&Continue session if you can't modify existing struct)\n // float* pvar = ImGui::GetFloatRef(key); ImGui::SliderFloat(\"var\", pvar, 0, 100.0f); some_var += *pvar;\n // IMGUI_API int* GetIntRef(ImGuiID key, int default_val = 0);\n // IMGUI_API bool* GetBoolRef(ImGuiID key, bool default_val = false);\n // IMGUI_API float* GetFloatRef(ImGuiID key, float default_val = 0.0f);\n // IMGUI_API void** GetVoidPtrRef(ImGuiID key, void* default_val = NULL);\n\n // Use on your own storage if you know only integer are being stored (open/close all tree nodes)\n // IMGUI_API void SetAllInt(int val);\n\n // For quicker full rebuild of a storage (instead of an incremental one), you may add all your contents and then sort once.\n // IMGUI_API void BuildSortByKey();\n}\n\n// Data payload for Drag and Drop operations\nexport interface ImGuiPayload\n{\n // Members\n // void* Data; // Data (copied and owned by dear imgui)\n Data: T;\n // int DataSize; // Data size\n\n // [Internal]\n // ImGuiID SourceId; // Source item id\n // ImGuiID SourceParentId; // Source parent id (if available)\n // int DataFrameCount; // Data timestamp\n // char DataType[12 + 1]; // Data type tag (short user-supplied string, 12 characters max)\n // bool Preview; // Set when AcceptDragDropPayload() was called and mouse has been hovering the target item (nb: handle overlapping drag targets)\n // bool Delivery; // Set when AcceptDragDropPayload() was called and mouse button is released over the target item.\n\n // ImGuiPayload() { Clear(); }\n // void Clear() { SourceId = SourceParentId = 0; Data = NULL; DataSize = 0; memset(DataType, 0, sizeof(DataType)); DataFrameCount = -1; Preview = Delivery = false; }\n // bool IsDataType(const char* type) const { return DataFrameCount != -1 && strcmp(type, DataType) == 0; }\n // bool IsPreview() const { return Preview; }\n // bool IsDelivery() const { return Delivery; }\n}\n\n// Helpers macros to generate 32-bits encoded colors\nexport const IM_COL32_R_SHIFT: number = config.IMGUI_USE_BGRA_PACKED_COLOR ? 16 : 0;\nexport const IM_COL32_G_SHIFT: number = 8;\nexport const IM_COL32_B_SHIFT: number = config.IMGUI_USE_BGRA_PACKED_COLOR ? 0 : 16;\nexport const IM_COL32_A_SHIFT: number = 24;\nexport const IM_COL32_A_MASK: number = 0xFF000000;\nexport function IM_COL32(R: number, G: number, B: number, A: number = 255): number {\n return ((A << IM_COL32_A_SHIFT) | (B << IM_COL32_B_SHIFT) | (G << IM_COL32_G_SHIFT) | (R << IM_COL32_R_SHIFT)) >>> 0;\n}\nexport const IM_COL32_WHITE: number = IM_COL32(255, 255, 255, 255); // Opaque white = 0xFFFFFFFF\nexport const IM_COL32_BLACK: number = IM_COL32(0, 0, 0, 255); // Opaque black\nexport const IM_COL32_BLACK_TRANS: number = IM_COL32(0, 0, 0, 0); // Transparent black = 0x00000000\n\n// ImColor() helper to implicity converts colors to either ImU32 (packed 4x1 byte) or ImVec4 (4x1 float)\n// Prefer using IM_COL32() macros if you want a guaranteed compile-time ImU32 for usage with ImDrawList API.\n// **Avoid storing ImColor! Store either u32 of ImVec4. This is not a full-featured color class. MAY OBSOLETE.\n// **None of the ImGui API are using ImColor directly but you can use it as a convenience to pass colors in either ImU32 or ImVec4 formats. Explicitly cast to ImU32 or ImVec4 if needed.\nexport class ImColor\n{\n // ImVec4 Value;\n public Value: ImVec4 = new ImVec4();\n\n // ImColor() { Value.x = Value.y = Value.z = Value.w = 0.0f; }\n // ImColor(int r, int g, int b, int a = 255) { float sc = 1.0f/255.0f; Value.x = (float)r * sc; Value.y = (float)g * sc; Value.z = (float)b * sc; Value.w = (float)a * sc; }\n // ImColor(ImU32 rgba) { float sc = 1.0f/255.0f; Value.x = (float)((rgba>>IM_COL32_R_SHIFT)&0xFF) * sc; Value.y = (float)((rgba>>IM_COL32_G_SHIFT)&0xFF) * sc; Value.z = (float)((rgba>>IM_COL32_B_SHIFT)&0xFF) * sc; Value.w = (float)((rgba>>IM_COL32_A_SHIFT)&0xFF) * sc; }\n // ImColor(float r, float g, float b, float a = 1.0f) { Value.x = r; Value.y = g; Value.z = b; Value.w = a; }\n // ImColor(const ImVec4& col) { Value = col; }\n constructor();\n constructor(r: number, g: number, b: number);\n constructor(r: number, g: number, b: number, a: number);\n constructor(rgba: Bind.ImU32);\n constructor(col: Readonly);\n constructor(r: number | Bind.ImU32 | Readonly = 0.0, g: number = 0.0, b: number = 0.0, a: number = 1.0) {\n if (typeof(r) === \"number\") {\n if (r > 255 && g === 0.0 && b === 0.0 && a === 1.0) {\n this.Value.x = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_R_SHIFT) & 0xFF) / 255));\n this.Value.y = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_G_SHIFT) & 0xFF) / 255));\n this.Value.z = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_B_SHIFT) & 0xFF) / 255));\n this.Value.w = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_A_SHIFT) & 0xFF) / 255));\n } else if (r <= 1.0 && g <= 1.0 && b <= 1.0 && a <= 1.0) {\n this.Value.x = Math.max(0.0, r);\n this.Value.y = Math.max(0.0, g);\n this.Value.z = Math.max(0.0, b);\n this.Value.w = Math.max(0.0, a);\n } else {\n this.Value.x = Math.max(0.0, Math.min(1.0, r / 255));\n this.Value.y = Math.max(0.0, Math.min(1.0, g / 255));\n this.Value.z = Math.max(0.0, Math.min(1.0, b / 255));\n if (a <= 1.0) {\n this.Value.w = Math.max(0.0, a);\n } else {\n this.Value.w = Math.max(0.0, Math.min(1.0, a / 255));\n }\n }\n } else {\n this.Value.Copy(r);\n }\n }\n // inline operator ImU32() const { return ImGui::ColorConvertFloat4ToU32(Value); }\n public toImU32(): Bind.ImU32 { return ColorConvertFloat4ToU32(this.Value); }\n // inline operator ImVec4() const { return Value; }\n public toImVec4(): ImVec4 { return this.Value; }\n\n // FIXME-OBSOLETE: May need to obsolete/cleanup those helpers.\n // inline void SetHSV(float h, float s, float v, float a = 1.0f){ ImGui::ColorConvertHSVtoRGB(h, s, v, Value.x, Value.y, Value.z); Value.w = a; }\n public SetHSV(h: number, s: number, v: number, a: number = 1.0): void {\n const ref_r: Bind.ImScalar = [ this.Value.x ];\n const ref_g: Bind.ImScalar = [ this.Value.y ];\n const ref_b: Bind.ImScalar = [ this.Value.z ];\n ColorConvertHSVtoRGB(h, s, v, ref_r, ref_g, ref_b);\n this.Value.x = ref_r[0];\n this.Value.y = ref_g[0];\n this.Value.z = ref_b[0];\n this.Value.w = a;\n }\n // static ImColor HSV(float h, float s, float v, float a = 1.0f) { float r,g,b; ImGui::ColorConvertHSVtoRGB(h, s, v, r, g, b); return ImColor(r,g,b,a); }\n public static HSV(h: number, s: number, v: number, a: number = 1.0): ImColor {\n const color = new ImColor();\n color.SetHSV(h, s, v, a);\n return color;\n }\n}\n\nexport const ImGuiInputTextDefaultSize: number = 128;\n\nexport type ImGuiInputTextCallback = (data: ImGuiInputTextCallbackData) => number;\n\n// Shared state of InputText(), passed to callback when a ImGuiInputTextFlags_Callback* flag is used and the corresponding callback is triggered.\nexport class ImGuiInputTextCallbackData {\n constructor(public readonly native: Bind.reference_ImGuiInputTextCallbackData, public readonly UserData: any) {}\n\n // ImGuiInputTextFlags EventFlag; // One of ImGuiInputTextFlags_Callback* // Read-only\n public get EventFlag(): ImGuiInputTextFlags { return this.native.EventFlag; }\n // ImGuiInputTextFlags Flags; // What user passed to InputText() // Read-only\n public get Flags(): ImGuiInputTextFlags { return this.native.Flags; }\n // void* UserData; // What user passed to InputText() // Read-only\n // public get UserData(): any { return this.native.UserData; }\n\n // CharFilter event:\n // ImWchar EventChar; // Character input // Read-write (replace character or set to zero)\n public get EventChar(): Bind.ImWchar { return this.native.EventChar; }\n public set EventChar(value: Bind.ImWchar) { this.native.EventChar = value; }\n\n // Completion,History,Always events:\n // If you modify the buffer contents make sure you update 'BufTextLen' and set 'BufDirty' to true.\n // ImGuiKey EventKey; // Key pressed (Up/Down/TAB) // Read-only\n public get EventKey(): ImGuiKey { return this.native.EventKey; }\n // char* Buf; // Current text buffer // Read-write (pointed data only, can't replace the actual pointer)\n public get Buf(): string { return this.native.Buf; }\n public set Buf(value: string) { this.native.Buf = value; }\n // int BufTextLen; // Current text length in bytes // Read-write\n public get BufTextLen(): number { return this.native.BufTextLen; }\n public set BufTextLen(value: number) { this.native.BufTextLen = value; }\n // int BufSize; // Maximum text length in bytes // Read-only\n public get BufSize(): number { return this.native.BufSize; }\n // bool BufDirty; // Set if you modify Buf/BufTextLen!! // Write\n public set BufDirty(value: boolean) { this.native.BufDirty = value; }\n // int CursorPos; // // Read-write\n public get CursorPos(): number { return this.native.CursorPos; }\n public set CursorPos(value: number) { this.native.CursorPos = value; }\n // int SelectionStart; // // Read-write (== to SelectionEnd when no selection)\n public get SelectionStart(): number { return this.native.SelectionStart; }\n public set SelectionStart(value: number) { this.native.SelectionStart = value; }\n // int SelectionEnd; // // Read-write\n public get SelectionEnd(): number { return this.native.SelectionEnd; }\n public set SelectionEnd(value: number) { this.native.SelectionEnd = value; }\n\n // NB: Helper functions for text manipulation. Calling those function loses selection.\n // IMGUI_API void DeleteChars(int pos, int bytes_count);\n public DeleteChars(pos: number, bytes_count: number): void { return this.native.DeleteChars(pos, bytes_count); }\n // IMGUI_API void InsertChars(int pos, const char* text, const char* text_end = NULL);\n public InsertChars(pos: number, text: string, text_end: number | null = null): void { return this.native.InsertChars(pos, text_end !== null ? text.substring(0, text_end) : text); }\n // bool HasSelection() const { return SelectionStart != SelectionEnd; }\n public HasSelection(): boolean { return this.native.HasSelection(); }\n}\n\nexport type ImGuiSizeConstraintCallback = (data: ImGuiSizeCallbackData) => void;\n\n// Resizing callback data to apply custom constraint. As enabled by SetNextWindowSizeConstraints(). Callback is called during the next Begin().\n// NB: For basic min/max size constraint on each axis you don't need to use the callback! The SetNextWindowSizeConstraints() parameters are enough.\nexport class ImGuiSizeCallbackData {\n constructor(public readonly native: Bind.reference_ImGuiSizeCallbackData, public readonly UserData: any) {}\n\n get Pos(): Readonly { return this.native.Pos; }\n get CurrentSize(): Readonly { return this.native.CurrentSize; }\n get DesiredSize(): Bind.interface_ImVec2 { return this.native.DesiredSize; }\n}\n\nexport class ImGuiListClipper\n{\n private native: Bind.ImGuiListClipper;\n\n public get StartPosY(): number { return this.native.StartPosY; }\n public get ItemsHeight(): number { return this.native.ItemsHeight; }\n public get ItemsCount(): number { return this.native.ItemsCount; }\n public get StepNo(): number { return this.native.StepNo; }\n public get DisplayStart(): number { return this.native.DisplayStart; }\n public get DisplayEnd(): number { return this.native.DisplayEnd; }\n\n // items_count: Use -1 to ignore (you can call Begin later). Use INT_MAX if you don't know how many items you have (in which case the cursor won't be advanced in the final step).\n // items_height: Use -1.0f to be calculated automatically on first step. Otherwise pass in the distance between your items, typically GetTextLineHeightWithSpacing() or GetFrameHeightWithSpacing().\n // If you don't specify an items_height, you NEED to call Step(). If you specify items_height you may call the old Begin()/End() api directly, but prefer calling Step().\n // ImGuiListClipper(int items_count = -1, float items_height = -1.0f) { Begin(items_count, items_height); } // NB: Begin() initialize every fields (as we allow user to call Begin/End multiple times on a same instance if they want).\n constructor(items_count: number = -1, items_height: number = -1.0) {\n this.native = new bind.ImGuiListClipper(items_count, items_height);\n }\n // ~ImGuiListClipper() { IM_ASSERT(ItemsCount == -1); } // Assert if user forgot to call End() or Step() until false.\n public delete(): void {\n if (this.native) {\n this.native.delete();\n delete this.native;\n }\n }\n\n // IMGUI_API bool Step(); // Call until it returns false. The DisplayStart/DisplayEnd fields will be set and you can process/draw those items.\n public Step(): boolean {\n if (!this.native) { throw new Error(); }\n const busy: boolean = this.native.Step();\n if (!busy) {\n this.delete();\n }\n return busy;\n }\n // IMGUI_API void Begin(int items_count, float items_height = -1.0f); // Automatically called by constructor if you passed 'items_count' or by Step() in Step 1.\n public Begin(items_count: number, items_height: number = -1.0): void {\n if (!this.native) {\n this.native = new Bind.ImGuiListClipper(items_count, items_height);\n }\n this.native.Begin(items_count, items_height);\n }\n // IMGUI_API void End(); // Automatically called on the last call of Step() that returns false.\n public End(): void {\n if (!this.native) { throw new Error(); }\n this.native.End();\n this.delete();\n }\n}\n\n//-----------------------------------------------------------------------------\n// Draw List\n// Hold a series of drawing commands. The user provides a renderer for ImDrawData which essentially contains an array of ImDrawList.\n//-----------------------------------------------------------------------------\n\n// Draw callbacks for advanced uses.\n// NB- You most likely do NOT need to use draw callbacks just to create your own widget or customized UI rendering (you can poke into the draw list for that)\n// Draw callback may be useful for example, A) Change your GPU render state, B) render a complex 3D scene inside a UI element (without an intermediate texture/render target), etc.\n// The expected behavior from your rendering function is 'if (cmd.UserCallback != NULL) cmd.UserCallback(parent_list, cmd); else RenderTriangles()'\n// typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd);\nexport type ImDrawCallback = (parent_list: Readonly, cmd: Readonly) => void;\n\n// Special Draw callback value to request renderer back-end to reset the graphics/render state.\n// The renderer back-end needs to handle this special value, otherwise it will crash trying to call a function at this address.\n// This is useful for example if you submitted callbacks which you know have altered the render state and you want it to be restored.\n// It is not done by default because they are many perfectly useful way of altering render state for imgui contents (e.g. changing shader/blending settings before an Image call).\nexport const ImDrawCallback_ResetRenderState = -1;\n\n// Typically, 1 command = 1 GPU draw call (unless command is a callback)\n// Pre 1.71 back-ends will typically ignore the VtxOffset/IdxOffset fields. When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset'\n// is enabled, those fields allow us to render meshes larger than 64K vertices while keeping 16-bits indices.\nexport class ImDrawCmd\n{\n constructor(public readonly native: Bind.reference_ImDrawCmd) {}\n\n // unsigned int ElemCount; // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[].\n get ElemCount(): number { return this.native.ElemCount; }\n // ImVec4 ClipRect; // Clipping rectangle (x1, y1, x2, y2)\n get ClipRect(): Readonly { return this.native.ClipRect; }\n // ImTextureID TextureId; // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas.\n get TextureId(): ImTextureID | null {\n return ImGuiContext.getTexture(this.native.TextureId);\n }\n // unsigned int VtxOffset; // Start offset in vertex buffer. Pre-1.71 or without ImGuiBackendFlags_RendererHasVtxOffset: always 0. With ImGuiBackendFlags_RendererHasVtxOffset: may be >0 to support meshes larger than 64K vertices with 16-bits indices.\n get VtxOffset(): number { return this.native.VtxOffset; }\n // unsigned int IdxOffset; // Start offset in index buffer. Always equal to sum of ElemCount drawn so far.\n get IdxOffset(): number { return this.native.IdxOffset; }\n // ImDrawCallback UserCallback; // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally.\n public readonly UserCallback: ImDrawCallback | null = null; // TODO\n // void* UserCallbackData; // The draw callback code can access this.\n public readonly UserCallbackData: any = null; // TODO\n\n // ImDrawCmd() { ElemCount = 0; ClipRect.x = ClipRect.y = ClipRect.z = ClipRect.w = 0.0f; TextureId = NULL; UserCallback = NULL; UserCallbackData = NULL; }\n}\n\n// Vertex index \n// (to allow large meshes with 16-bits indices: set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset in the renderer back-end)\n// (to use 32-bits indices: override with '#define ImDrawIdx unsigned int' in imconfig.h)\n// #ifndef ImDrawIdx\n// typedef unsigned short ImDrawIdx;\n// #endif\nexport const ImDrawIdxSize: number = 2; // bind.ImDrawIdxSize;\nexport type ImDrawIdx = number;\n\n// Vertex layout\n// #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT\nexport const ImDrawVertSize: number = 20; // bind.ImDrawVertSize;\nexport const ImDrawVertPosOffset: number = 0; // bind.ImDrawVertPosOffset;\nexport const ImDrawVertUVOffset: number = 8; // bind.ImDrawVertUVOffset;\nexport const ImDrawVertColOffset: number = 16; // bind.ImDrawVertColOffset;\nexport class ImDrawVert\n{\n // ImVec2 pos;\n public pos: Float32Array;\n // ImVec2 uv;\n public uv: Float32Array;\n // ImU32 col;\n public col: Uint32Array;\n\n constructor(buffer: ArrayBuffer, byteOffset: number = 0) {\n this.pos = new Float32Array(buffer, byteOffset + bind.ImDrawVertPosOffset, 2);\n this.uv = new Float32Array(buffer, byteOffset + bind.ImDrawVertUVOffset, 2);\n this.col = new Uint32Array(buffer, byteOffset + bind.ImDrawVertColOffset, 1);\n }\n}\n// #else\n// You can override the vertex format layout by defining IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT in imconfig.h\n// The code expect ImVec2 pos (8 bytes), ImVec2 uv (8 bytes), ImU32 col (4 bytes), but you can re-order them or add other fields as needed to simplify integration in your engine.\n// The type has to be described within the macro (you can either declare the struct or use a typedef)\n// NOTE: IMGUI DOESN'T CLEAR THE STRUCTURE AND DOESN'T CALL A CONSTRUCTOR SO ANY CUSTOM FIELD WILL BE UNINITIALIZED. IF YOU ADD EXTRA FIELDS (SUCH AS A 'Z' COORDINATES) YOU WILL NEED TO CLEAR THEM DURING RENDER OR TO IGNORE THEM.\n// IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT;\n// #endif\n\n// Draw channels are used by the Columns API to \"split\" the render list into different channels while building, so items of each column can be batched together.\n// You can also use them to simulate drawing layers and submit primitives in a different order than how they will be rendered.\nexport class ImDrawChannel\n{\n // ImVector CmdBuffer;\n // ImVector IdxBuffer;\n}\n\nexport class ImDrawListSharedData\n{\n constructor(public readonly native: Bind.reference_ImDrawListSharedData) {}\n}\n\n// Draw command list\n// This is the low-level list of polygons that ImGui functions are filling. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering.\n// Each ImGui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to access the current window draw list and draw custom primitives.\n// You can interleave normal ImGui:: calls and adding primitives to the current draw list.\n// All positions are generally in pixel coordinates (top-left at (0,0), bottom-right at io.DisplaySize), however you are totally free to apply whatever transformation matrix to want to the data (if you apply such transformation you'll want to apply it to ClipRect as well)\n// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects.\nexport class ImDrawList\n{\n constructor(public readonly native: Bind.reference_ImDrawList) {}\n\n public IterateDrawCmds(callback: (draw_cmd: ImDrawCmd, ElemStart: number) => void): void {\n this.native.IterateDrawCmds((draw_cmd: Bind.reference_ImDrawCmd, ElemStart: number): void => {\n callback(new ImDrawCmd(draw_cmd), ElemStart);\n });\n }\n\n // This is what you have to render\n // ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback.\n // ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those\n get IdxBuffer(): Uint8Array { return this.native.IdxBuffer; }\n // ImVector VtxBuffer; // Vertex buffer.\n get VtxBuffer(): Uint8Array { return this.native.VtxBuffer; }\n // ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive.\n get Flags(): ImDrawListFlags { return this.native.Flags; }\n set Flags(value: ImDrawListFlags) { this.native.Flags = value; }\n\n // [Internal, used while building lists]\n // const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context)\n // const char* _OwnerName; // Pointer to owner window's name for debugging\n // unsigned int _VtxCurrentIdx; // [Internal] == VtxBuffer.Size\n // ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)\n // ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)\n // ImVector _ClipRectStack; // [Internal]\n // ImVector _TextureIdStack; // [Internal]\n // ImVector _Path; // [Internal] current path building\n // int _ChannelsCurrent; // [Internal] current channel number (0)\n // int _ChannelsCount; // [Internal] number of active channels (1+)\n // ImVector _Channels; // [Internal] draw channels for columns API (not resized down so _ChannelsCount may be smaller than _Channels.Size)\n\n // ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clear(); }\n // ~ImDrawList() { ClearFreeMemory(); }\n // IMGUI_API void PushClipRect(ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling)\n public PushClipRect(clip_rect_min: Readonly, clip_rect_max: Readonly, intersect_with_current_clip_rect: boolean = false): void {\n this.native.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect);\n }\n // IMGUI_API void PushClipRectFullScreen();\n public PushClipRectFullScreen(): void { this.native.PushClipRectFullScreen(); }\n // IMGUI_API void PopClipRect();\n public PopClipRect(): void { this.native.PopClipRect(); }\n // IMGUI_API void PushTextureID(ImTextureID texture_id);\n public PushTextureID(texture_id: ImTextureID): void {\n this.native.PushTextureID(ImGuiContext.setTexture(texture_id));\n }\n // IMGUI_API void PopTextureID();\n public PopTextureID(): void { this.native.PopTextureID(); }\n // inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); }\n public GetClipRectMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return this.native.GetClipRectMin(out);\n }\n // inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); }\n public GetClipRectMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return this.native.GetClipRectMax(out);\n }\n\n // Primitives\n // IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness = 1.0f);\n public AddLine(a: Readonly, b: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddLine(a, b, col, thickness);\n }\n // IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All, float thickness = 1.0f); // a: upper-left, b: lower-right, rounding_corners_flags: 4-bits corresponding to which corner to round\n public AddRect(a: Readonly, b: Readonly, col: Bind.ImU32, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All, thickness: number = 1.0): void {\n this.native.AddRect(a, b, col, rounding, rounding_corners_flags, thickness);\n }\n // IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); // a: upper-left, b: lower-right\n public AddRectFilled(a: Readonly, b: Readonly, col: Bind.ImU32, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All): void {\n this.native.AddRectFilled(a, b, col, rounding, rounding_corners_flags);\n }\n // IMGUI_API void AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left);\n public AddRectFilledMultiColor(a: Readonly, b: Readonly, col_upr_left: Bind.ImU32, col_upr_right: Bind.ImU32, col_bot_right: Bind.ImU32, col_bot_left: Bind.ImU32): void {\n this.native.AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left);\n }\n // IMGUI_API void AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness = 1.0f);\n public AddQuad(a: Readonly, b: Readonly, c: Readonly, d: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddQuad(a, b, c, d, col, thickness);\n }\n // IMGUI_API void AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col);\n public AddQuadFilled(a: Readonly, b: Readonly, c: Readonly, d: Readonly, col: Bind.ImU32): void {\n this.native.AddQuadFilled(a, b, c, d, col);\n }\n // IMGUI_API void AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness = 1.0f);\n public AddTriangle(a: Readonly, b: Readonly, c: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddTriangle(a, b, c, col, thickness);\n }\n // IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col);\n public AddTriangleFilled(a: Readonly, b: Readonly, c: Readonly, col: Bind.ImU32): void {\n this.native.AddTriangleFilled(a, b, c, col);\n }\n // IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f);\n public AddCircle(centre: Readonly, radius: number, col: Bind.ImU32, num_segments: number = 12, thickness: number = 1.0): void {\n this.native.AddCircle(centre, radius, col, num_segments, thickness);\n }\n // IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12);\n public AddCircleFilled(centre: Readonly, radius: number, col: Bind.ImU32, num_segments: number = 12): void {\n this.native.AddCircleFilled(centre, radius, col, num_segments);\n }\n // IMGUI_API void AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL);\n // IMGUI_API void AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL, float wrap_width = 0.0f, const ImVec4* cpu_fine_clip_rect = NULL);\n public AddText(pos: Readonly, col: Bind.ImU32, text_begin: string, text_end?: number | null): void;\n public AddText(font: ImFont, font_size: number, pos: Readonly, col: Bind.ImU32, text_begin: string, text_end?: number | null, wrap_width?: number, cpu_fine_clip_rect?: Readonly | null): void;\n public AddText(...args: any[]): void {\n if (args[0] instanceof ImFont) {\n const font: ImFont = args[0];\n const font_size: number = args[1];\n const pos: Readonly = args[2];\n const col: Bind.ImU32 = args[3];\n const text_begin: string = args[4];\n const text_end: number | null = args[5] || null;\n const wrap_width: number = args[6] = 0.0;\n const cpu_fine_clip_rect: Readonly | null = args[7] || null;\n this.native.AddText_B(font.native, font_size, pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin, wrap_width, cpu_fine_clip_rect);\n } else {\n const pos: Readonly = args[0];\n const col: Bind.ImU32 = args[1];\n const text_begin: string = args[2];\n const text_end: number | null = args[3] || null;\n this.native.AddText_A(pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin);\n }\n }\n // IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,1), ImU32 col = 0xFFFFFFFF);\n public AddImage(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, uv_a: Readonly = ImVec2.ZERO, uv_b: Readonly = ImVec2.UNIT, col: Bind.ImU32 = 0xFFFFFFFF): void {\n this.native.AddImage(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col);\n }\n // IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,0), const ImVec2& uv_c = ImVec2(1,1), const ImVec2& uv_d = ImVec2(0,1), ImU32 col = 0xFFFFFFFF);\n public AddImageQuad(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, c: Readonly, d: Readonly, uv_a: Readonly = ImVec2.ZERO, uv_b: Readonly = ImVec2.UNIT_X, uv_c: Readonly = ImVec2.UNIT, uv_d: Readonly = ImVec2.UNIT_Y, col: Bind.ImU32 = 0xFFFFFFFF): void {\n this.native.AddImageQuad(ImGuiContext.setTexture(user_texture_id), a, b, c, d, uv_a, uv_b, uv_c, uv_d, col);\n }\n // IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col, float rounding, int rounding_corners = ImDrawCornerFlags_All);\n public AddImageRounded(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, uv_a: Readonly, uv_b: Readonly, col: Bind.ImU32, rounding: number, rounding_corners: ImDrawCornerFlags = ImDrawCornerFlags.All): void {\n this.native.AddImageRounded(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col, rounding, rounding_corners);\n }\n // IMGUI_API void AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness);\n public AddPolyline(points: Array>, num_points: number, col: Bind.ImU32, closed: boolean, thickness: number): void {\n this.native.AddPolyline(points, num_points, col, closed, thickness);\n }\n // IMGUI_API void AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col);\n public AddConvexPolyFilled(points: Array>, num_points: number, col: Bind.ImU32): void {\n this.native.AddConvexPolyFilled(points, num_points, col);\n }\n // IMGUI_API void AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments = 0);\n public AddBezierCurve(pos0: Readonly, cp0: Readonly, cp1: Readonly, pos1: Readonly, col: Bind.ImU32, thickness: number = 1.0, num_segments: number = 0): void {\n this.native.AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments);\n }\n\n // Stateful path API, add points then finish with PathFill() or PathStroke()\n // inline void PathClear() { _Path.resize(0); }\n public PathClear(): void { this.native.PathClear(); }\n // inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); }\n public PathLineTo(pos: Readonly): void { this.native.PathLineTo(pos); }\n // inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path[_Path.Size-1], &pos, 8) != 0) _Path.push_back(pos); }\n public PathLineToMergeDuplicate(pos: Readonly): void { this.native.PathLineToMergeDuplicate(pos); }\n // inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); PathClear(); }\n public PathFillConvex(col: Bind.ImU32): void { this.native.PathFillConvex(col); }\n // inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness); PathClear(); }\n public PathStroke(col: Bind.ImU32, closed: boolean, thickness: number = 1.0): void { this.native.PathStroke(col, closed, thickness); }\n // IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_segments = 10);\n public PathArcTo(centre: Readonly, radius: number, a_min: number, a_max: number, num_segments: number = 10): void { this.native.PathArcTo(centre, radius, a_min, a_max, num_segments); }\n // IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle\n public PathArcToFast(centre: Readonly, radius: number, a_min_of_12: number, a_max_of_12: number): void { this.native.PathArcToFast(centre, radius, a_min_of_12, a_max_of_12); }\n // IMGUI_API void PathBezierCurveTo(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, int num_segments = 0);\n public PathBezierCurveTo(p1: Readonly, p2: Readonly, p3: Readonly, num_segments: number = 0): void { this.native.PathBezierCurveTo(p1, p2, p3, num_segments); }\n // IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All);\n public PathRect(rect_min: Readonly, rect_max: Readonly, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All): void { this.native.PathRect(rect_min, rect_max, rounding, rounding_corners_flags); }\n\n // Channels\n // - Use to simulate layers. By switching channels to can render out-of-order (e.g. submit foreground primitives before background primitives)\n // - Use to minimize draw calls (e.g. if going back-and-forth between multiple non-overlapping clipping rectangles, prefer to append into separate channels then merge at the end)\n // IMGUI_API void ChannelsSplit(int channels_count);\n public ChannelsSplit(channels_count: number): void { this.native.ChannelsSplit(channels_count); }\n // IMGUI_API void ChannelsMerge();\n public ChannelsMerge(): void { this.native.ChannelsMerge(); }\n // IMGUI_API void ChannelsSetCurrent(int channel_index);\n public ChannelsSetCurrent(channel_index: number): void { this.native.ChannelsSetCurrent(channel_index); }\n\n // Advanced\n // IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles.\n public AddCallback(callback: ImDrawCallback, callback_data: any): void {\n const _callback: Bind.ImDrawCallback = (parent_list: Readonly, draw_cmd: Readonly): void => {\n callback(new ImDrawList(parent_list), new ImDrawCmd(draw_cmd));\n };\n this.native.AddCallback(_callback, callback_data);\n }\n // IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible\n public AddDrawCmd(): void { this.native.AddDrawCmd(); }\n\n // Internal helpers\n // NB: all primitives needs to be reserved via PrimReserve() beforehand!\n // IMGUI_API void Clear();\n public Clear(): void { this.native.Clear(); }\n // IMGUI_API void ClearFreeMemory();\n public ClearFreeMemory(): void { this.native.ClearFreeMemory(); }\n // IMGUI_API void PrimReserve(int idx_count, int vtx_count);\n public PrimReserve(idx_count: number, vtx_count: number): void { this.native.PrimReserve(idx_count, vtx_count); }\n // IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles)\n public PrimRect(a: Readonly, b: Readonly, col: Bind.ImU32): void { this.native.PrimRect(a, b, col); }\n // IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col);\n public PrimRectUV(a: Readonly, b: Readonly, uv_a: Readonly, uv_b: Readonly, col: Bind.ImU32): void { this.native.PrimRectUV(a, b, uv_a, uv_b, col); }\n // IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col);\n public PrimQuadUV(a: Readonly, b: Readonly, c: Readonly, d: Readonly, uv_a: Readonly, uv_b: Readonly, uv_c: Readonly, uv_d: Readonly, col: Bind.ImU32): void { this.native.PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); }\n // inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; }\n public PrimWriteVtx(pos: Readonly, uv: Readonly, col: Bind.ImU32): void { this.native.PrimWriteVtx(pos, uv, col); }\n // inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; }\n public PrimWriteIdx(idx: ImDrawIdx): void { this.native.PrimWriteIdx(idx); }\n // inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); }\n public PrimVtx(pos: Readonly, uv: Readonly, col: Bind.ImU32): void { this.native.PrimVtx(pos, uv, col); }\n // IMGUI_API void UpdateClipRect();\n public UpdateClipRect(): void { this.native.UpdateClipRect(); }\n // IMGUI_API void UpdateTextureID();\n public UpdateTextureID(): void { this.native.UpdateTextureID(); }\n}\n\n// All draw data to render an ImGui frame\nexport class ImDrawData\n{\n constructor(public readonly native: Bind.reference_ImDrawData) {}\n\n public IterateDrawLists(callback: (draw_list: ImDrawList) => void): void {\n this.native.IterateDrawLists((draw_list: Bind.reference_ImDrawList): void => {\n callback(new ImDrawList(draw_list));\n });\n }\n\n // bool Valid; // Only valid after Render() is called and before the next NewFrame() is called.\n get Valid(): boolean { return this.native.Valid; }\n // ImDrawList** CmdLists;\n // int CmdListsCount;\n get CmdListsCount(): number { return this.native.CmdListsCount; }\n // int TotalIdxCount; // For convenience, sum of all cmd_lists idx_buffer.Size\n get TotalIdxCount(): number { return this.native.TotalIdxCount; }\n // int TotalVtxCount; // For convenience, sum of all cmd_lists vtx_buffer.Size\n get TotalVtxCount(): number { return this.native.TotalVtxCount; }\n // ImVec2 DisplayPos; // Upper-left position of the viewport to render (== upper-left of the orthogonal projection matrix to use)\n get DisplayPos(): Readonly { return this.native.DisplayPos; }\n // ImVec2 DisplaySize; // Size of the viewport to render (== io.DisplaySize for the main viewport) (DisplayPos + DisplaySize == lower-right of the orthogonal projection matrix to use)\n get DisplaySize(): Readonly { return this.native.DisplaySize; }\n // ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display.\n get FramebufferScale(): Readonly { return this.native.FramebufferScale; }\n\n // Functions\n // ImDrawData() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCount = 0; }\n // IMGUI_API void DeIndexAllBuffers(); // For backward compatibility or convenience: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering!\n public DeIndexAllBuffers(): void { this.native.DeIndexAllBuffers(); }\n // IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than ImGui expects, or if there is a difference between your window resolution and framebuffer resolution.\n public ScaleClipRects(fb_scale: Readonly): void {\n this.native.ScaleClipRects(fb_scale);\n }\n}\n\nexport class script_ImFontConfig implements Bind.interface_ImFontConfig\n{\n // void* FontData; // // TTF/OTF data\n // int FontDataSize; // // TTF/OTF data size\n FontData: DataView | null = null;\n // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself).\n FontDataOwnedByAtlas: boolean = true;\n // int FontNo; // 0 // Index of font within TTF/OTF file\n FontNo: number = 0;\n // float SizePixels; // // Size in pixels for rasterizer.\n SizePixels: number = 0;\n // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis.\n OversampleH: number = 3;\n OversampleV: number = 1;\n // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1.\n PixelSnapH: boolean = false;\n // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now.\n GlyphExtraSpacing: ImVec2 = new ImVec2(0, 0);\n // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input.\n GlyphOffset: ImVec2 = new ImVec2(0, 0);\n // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE.\n GlyphRanges: number | null = null;\n // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font\n GlyphMinAdvanceX: number = 0;\n // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs\n GlyphMaxAdvanceX: number = Number.MAX_VALUE;\n // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights.\n MergeMode: boolean = false;\n // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one.\n RasterizerFlags: number = 0;\n // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable.\n RasterizerMultiply: number = 1.0;\n\n // [Internal]\n // char Name[32]; // Name (strictly to ease debugging)\n Name: string = \"\";\n // ImFont* DstFont;\n DstFont: Bind.reference_ImFont | null = null;\n\n // IMGUI_API ImFontConfig();\n}\n\nexport class ImFontConfig {\n constructor(public readonly internal: Bind.interface_ImFontConfig = new script_ImFontConfig()) {}\n\n // void* FontData; // // TTF/OTF data\n // int FontDataSize; // // TTF/OTF data size\n get FontData(): DataView | null { return this.internal.FontData; }\n // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself).\n get FontDataOwnedByAtlas(): boolean { return this.internal.FontDataOwnedByAtlas; }\n // int FontNo; // 0 // Index of font within TTF/OTF file\n get FontNo(): number { return this.internal.FontNo; }\n // float SizePixels; // // Size in pixels for rasterizer.\n get SizePixels(): number { return this.internal.SizePixels; }\n // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis.\n get OversampleH(): number { return this.internal.OversampleH; }\n get OversampleV(): number { return this.internal.OversampleV; }\n // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1.\n get PixelSnapH(): boolean { return this.internal.PixelSnapH; }\n // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now.\n get GlyphExtraSpacing(): ImVec2 { return this.internal.GlyphExtraSpacing; }\n // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input.\n get GlyphOffset(): ImVec2 { return this.internal.GlyphOffset; }\n // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE.\n get GlyphRanges(): number | null { return this.internal.GlyphRanges; }\n // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font\n get GlyphMinAdvanceX(): number { return this.internal.GlyphMinAdvanceX; }\n // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs\n get GlyphMaxAdvanceX(): number { return this.internal.GlyphMaxAdvanceX; }\n // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights.\n get MergeMode(): boolean { return this.internal.MergeMode; }\n // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one.\n get RasterizerFlags(): number { return this.internal.RasterizerFlags; }\n // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable.\n get RasterizerMultiply(): number { return this.internal.RasterizerMultiply; }\n\n // [Internal]\n // char Name[32]; // Name (strictly to ease debugging)\n get Name(): string { return this.internal.Name; }\n set Name(value: string) { this.internal.Name = value; }\n // ImFont* DstFont;\n get DstFont(): ImFont | null {\n const font = this.internal.DstFont;\n return font && new ImFont(font);\n }\n\n // IMGUI_API ImFontConfig();\n}\n\n// struct ImFontGlyph\nexport class script_ImFontGlyph implements Bind.interface_ImFontGlyph\n{\n // ImWchar Codepoint; // 0x0000..0xFFFF\n Codepoint: number = 0;\n // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in)\n AdvanceX: number = 0.0;\n // float X0, Y0, X1, Y1; // Glyph corners\n X0: number = 0.0;\n Y0: number = 0.0;\n X1: number = 1.0;\n Y1: number = 1.0;\n // float U0, V0, U1, V1; // Texture coordinates\n U0: number = 0.0;\n V0: number = 0.0;\n U1: number = 1.0;\n V1: number = 1.0;\n}\n\nexport class ImFontGlyph implements Bind.interface_ImFontGlyph {\n constructor(public readonly internal: Bind.interface_ImFontGlyph = new script_ImFontGlyph()) {}\n // ImWchar Codepoint; // 0x0000..0xFFFF\n get Codepoint(): number { return this.internal.Codepoint; }\n // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in)\n get AdvanceX(): number { return this.internal.AdvanceX; };\n // float X0, Y0, X1, Y1; // Glyph corners\n get X0(): number { return this.internal.X0; };\n get Y0(): number { return this.internal.Y0; };\n get X1(): number { return this.internal.X1; };\n get Y1(): number { return this.internal.Y1; };\n // float U0, V0, U1, V1; // Texture coordinates\n get U0(): number { return this.internal.U0; };\n get V0(): number { return this.internal.V0; };\n get U1(): number { return this.internal.U1; };\n get V1(): number { return this.internal.V1; };\n}\n\nexport enum ImFontAtlasFlags\n{\n None = 0,\n NoPowerOfTwoHeight = 1 << 0, // Don't round the height to next power of two\n NoMouseCursors = 1 << 1, // Don't build software mouse cursors into the atlas\n}\n\n// Load and rasterize multiple TTF/OTF fonts into a same texture.\n// Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering.\n// We also add custom graphic data into the texture that serves for ImGui.\n// 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you.\n// 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data.\n// 3. Upload the pixels data into a texture within your graphics system.\n// 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture.\n// IMPORTANT: If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the ImFont is build (when calling GetTextData*** or Build()). We only copy the pointer, not the data.\nexport class ImFontAtlas\n{\n constructor(public readonly native: Bind.reference_ImFontAtlas) {}\n\n // IMGUI_API ImFontAtlas();\n // IMGUI_API ~ImFontAtlas();\n // IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg);\n // IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL);\n public AddFontDefault(font_cfg: Bind.interface_ImFontConfig | null = null): ImFont {\n return new ImFont(this.native.AddFontDefault(font_cfg));\n }\n // IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL);\n // IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after Build(). Set font_cfg->FontDataOwnedByAtlas to false to keep ownership.\n public AddFontFromMemoryTTF(data: ArrayBuffer, size_pixels: number, font_cfg: ImFontConfig | null = null, glyph_ranges: number | null = null): ImFont {\n return new ImFont(this.native.AddFontFromMemoryTTF(new Uint8Array(data), size_pixels, font_cfg && font_cfg.internal, glyph_ranges));\n }\n // IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp.\n // IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter.\n // IMGUI_API void ClearTexData(); // Clear the CPU-side texture data. Saves RAM once the texture has been copied to graphics memory.\n public ClearTexData(): void { this.native.ClearTexData(); }\n // IMGUI_API void ClearInputData(); // Clear the input TTF data (inc sizes, glyph ranges)\n public ClearInputData(): void { this.native.ClearInputData(); }\n // IMGUI_API void ClearFonts(); // Clear the ImGui-side font data (glyphs storage, UV coordinates)\n public ClearFonts(): void { this.native.ClearFonts(); }\n // IMGUI_API void Clear(); // Clear all\n public Clear(): void { this.native.Clear(); }\n\n // Build atlas, retrieve pixel data.\n // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID().\n // RGBA32 format is provided for convenience and compatibility, but note that unless you use CustomRect to draw color data, the RGB pixels emitted from Fonts will all be white (~75% of waste).\n // Pitch = Width * BytesPerPixels\n // IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions.\n public Build(): boolean { return this.native.Build(); }\n // IMGUI_API bool IsBuilt() { return Fonts.Size > 0 && (TexPixelsAlpha8 != NULL || TexPixelsRGBA32 != NULL); }\n public IsBuilt(): boolean { return this.native.IsBuilt(); }\n // IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel\n public GetTexDataAsAlpha8(): { pixels: Uint8ClampedArray, width: number, height: number, bytes_per_pixel: number } {\n return this.native.GetTexDataAsAlpha8();\n }\n // IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel\n public GetTexDataAsRGBA32(): { pixels: Uint8ClampedArray, width: number, height: number, bytes_per_pixel: number } {\n return this.native.GetTexDataAsRGBA32();\n }\n // void SetTexID(ImTextureID id) { TexID = id; }\n public SetTexID(id: ImTextureID | null): void { this.TexID = id; }\n\n //-------------------------------------------\n // Glyph Ranges\n //-------------------------------------------\n\n // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list)\n // NB: Make sure that your string are UTF-8 and NOT in your local code page. In C++11, you can create UTF-8 string literal using the u8\"Hello world\" syntax. See FAQ for details.\n // IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin\n GetGlyphRangesDefault(): number { return this.native.GetGlyphRangesDefault(); }\n // IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters\n GetGlyphRangesKorean(): number { return this.native.GetGlyphRangesKorean(); }\n // IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs\n GetGlyphRangesJapanese(): number { return this.native.GetGlyphRangesJapanese(); }\n // IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs\n GetGlyphRangesChineseFull(): number { return this.native.GetGlyphRangesChineseFull(); }\n // IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese\n GetGlyphRangesChineseSimplifiedCommon(): number { return this.native.GetGlyphRangesChineseSimplifiedCommon(); }\n // IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters\n GetGlyphRangesCyrillic(): number { return this.native.GetGlyphRangesCyrillic(); }\n // IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters\n GetGlyphRangesThai(): number { return this.native.GetGlyphRangesThai(); }\n // IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters\n GetGlyphRangesVietnamese(): number { return this.native.GetGlyphRangesVietnamese(); }\n\n // Helpers to build glyph ranges from text data. Feed your application strings/characters to it then call BuildRanges().\n // struct GlyphRangesBuilder\n // {\n // ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used)\n // GlyphRangesBuilder() { UsedChars.resize(0x10000 / 8); memset(UsedChars.Data, 0, 0x10000 / 8); }\n // bool GetBit(int n) const { return (UsedChars[n >> 3] & (1 << (n & 7))) != 0; }\n // void SetBit(int n) { UsedChars[n >> 3] |= 1 << (n & 7); } // Set bit 'c' in the array\n // void AddChar(ImWchar c) { SetBit(c); } // Add character\n // IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added)\n // IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault) to force add all of ASCII/Latin+Ext\n // IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges\n // };\n\n //-------------------------------------------\n // Custom Rectangles/Glyphs API\n //-------------------------------------------\n\n // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. After calling Build(), you can query the rectangle position and render your pixels.\n // You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs.\n // struct CustomRect\n // {\n // unsigned int ID; // Input // User ID. Use <0x10000 to map into a font glyph, >=0x10000 for other/internal/custom texture data.\n // unsigned short Width, Height; // Input // Desired rectangle dimension\n // unsigned short X, Y; // Output // Packed position in Atlas\n // float GlyphAdvanceX; // Input // For custom font glyphs only (ID<0x10000): glyph xadvance\n // ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph display offset\n // ImFont* Font; // Input // For custom font glyphs only (ID<0x10000): target font\n // CustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); Font = NULL; }\n // bool IsPacked() const { return X != 0xFFFF; }\n // };\n\n // IMGUI_API int AddCustomRectRegular(unsigned int id, int width, int height); // Id needs to be >= 0x10000. Id >= 0x80000000 are reserved for ImGui and ImDrawList\n // IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0,0)); // Id needs to be < 0x10000 to register a rectangle to map into a specific font.\n // IMGUI_API void CalcCustomRectUV(const CustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max);\n // const CustomRect* GetCustomRectByIndex(int index) const { if (index < 0) return NULL; return &CustomRects[index]; }\n\n //-------------------------------------------\n // Members\n //-------------------------------------------\n\n // bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert.\n get Locked(): boolean { return this.native.Locked; }\n set Locked(value: boolean) { this.native.Locked = value; }\n // ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_)\n get Flags(): ImFontAtlasFlags { return this.native.Flags; }\n set Flags(value: ImFontAtlasFlags) { this.native.Flags = value; }\n // ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure.\n get TexID(): ImTextureID | null {\n return ImGuiContext.getTexture(this.native.TexID);\n }\n set TexID(value: ImTextureID | null) {\n this.native.TexID = ImGuiContext.setTexture(value);\n }\n // int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height.\n get TexDesiredWidth(): number { return this.native.TexDesiredWidth; }\n set TexDesiredWidth(value: number) { this.native.TexDesiredWidth = value; }\n // int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1.\n get TexGlyphPadding(): number { return this.native.TexGlyphPadding; }\n set TexGlyphPadding(value: number) { this.native.TexGlyphPadding = value; }\n\n // [Internal]\n // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you.\n // unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight\n // unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4\n // int TexWidth; // Texture width calculated during Build().\n get TexWidth(): number { return this.native.TexWidth; }\n // int TexHeight; // Texture height calculated during Build().\n get TexHeight(): number { return this.native.TexHeight; }\n // ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight)\n get TexUvScale(): Readonly { return this.native.TexUvScale; }\n // ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel\n get TexUvWhitePixel(): Readonly { return this.native.TexUvWhitePixel; }\n // ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font.\n get Fonts(): ImVector {\n const fonts: ImVector = new ImVector();\n this.native.IterateFonts((font: Bind.reference_ImFont) => {\n fonts.push(new ImFont(font));\n });\n return fonts;\n }\n // ImVector CustomRects; // Rectangles for packing custom texture data into the atlas.\n // ImVector ConfigData; // Internal data\n // int CustomRectIds[1]; // Identifiers of custom texture rectangle used by ImFontAtlas/ImDrawList\n}\n\n// Font runtime data and rendering\n// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32().\nexport class ImFont\n{\n constructor(public readonly native: Bind.reference_ImFont) {}\n\n // Members: Hot ~62/78 bytes\n // float FontSize; // // Height of characters, set during loading (don't change after loading)\n get FontSize(): number { return this.native.FontSize; }\n // float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale()\n get Scale(): number { return this.native.Scale; }\n set Scale(value: number) { this.native.Scale = value; }\n // ImVec2 DisplayOffset; // = (0.f,1.f) // Offset font rendering by xx pixels\n get DisplayOffset(): Bind.interface_ImVec2 { return this.native.DisplayOffset; }\n // ImVector Glyphs; // // All glyphs.\n get Glyphs(): ImVector {\n const glyphs = new ImVector();\n this.native.IterateGlyphs((glyph: Bind.reference_ImFontGlyph): void => {\n glyphs.push(new ImFontGlyph(glyph)); // TODO: wrap native\n });\n return glyphs;\n }\n // ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI).\n // get IndexAdvanceX(): any { return this.native.IndexAdvanceX; }\n // ImVector IndexLookup; // // Sparse. Index glyphs by Unicode code-point.\n // get IndexLookup(): any { return this.native.IndexLookup; }\n // const ImFontGlyph* FallbackGlyph; // == FindGlyph(FontFallbackChar)\n get FallbackGlyph(): ImFontGlyph | null {\n const glyph = this.native.FallbackGlyph;\n return glyph && new ImFontGlyph(glyph);\n }\n set FallbackGlyph(value: ImFontGlyph | null) {\n this.native.FallbackGlyph = value && value.internal as Bind.reference_ImFontGlyph;\n }\n // float FallbackAdvanceX; // == FallbackGlyph->AdvanceX\n get FallbackAdvanceX(): number { return this.native.FallbackAdvanceX; }\n // ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found. Only set via SetFallbackChar()\n get FallbackChar(): number { return this.native.FallbackChar; }\n\n // Members: Cold ~18/26 bytes\n // short ConfigDataCount; // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont.\n get ConfigDataCount(): number { return this.ConfigData.length; }\n // ImFontConfig* ConfigData; // // Pointer within ContainerAtlas->ConfigData\n get ConfigData(): ImFontConfig[] {\n const cfg_data: ImFontConfig[] = [];\n this.native.IterateConfigData((cfg: Bind.interface_ImFontConfig): void => {\n cfg_data.push(new ImFontConfig(cfg));\n });\n return cfg_data;\n }\n // ImFontAtlas* ContainerAtlas; // // What we has been loaded into\n get ContainerAtlas(): ImFontAtlas | null { return null; }\n // float Ascent, Descent; // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize]\n get Ascent(): number { return this.native.Ascent; }\n get Descent(): number { return this.native.Descent; }\n // int MetricsTotalSurface;// // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs)\n get MetricsTotalSurface(): number { return this.native.MetricsTotalSurface; }\n\n // Methods\n // IMGUI_API ImFont();\n // IMGUI_API ~ImFont();\n // IMGUI_API void ClearOutputData();\n public ClearOutputData(): void { return this.native.ClearOutputData(); }\n // IMGUI_API void BuildLookupTable();\n public BuildLookupTable(): void { return this.native.BuildLookupTable(); }\n // IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const;\n public FindGlyph(c: number): Readonly | null {\n const glyph: Readonly | null = this.native.FindGlyph(c);\n return glyph && new ImFontGlyph(glyph);\n }\n // IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const;\n public FindGlyphNoFallback(c: number): ImFontGlyph | null {\n const glyph: Readonly | null = this.native.FindGlyphNoFallback(c);\n return glyph && new ImFontGlyph(glyph);\n }\n // IMGUI_API void SetFallbackChar(ImWchar c);\n public SetFallbackChar(c: number): void { return this.native.SetFallbackChar(c); }\n // float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; }\n public GetCharAdvance(c: number): number { return this.native.GetCharAdvance(c); }\n // bool IsLoaded() const { return ContainerAtlas != NULL; }\n public IsLoaded(): boolean { return this.native.IsLoaded(); }\n // const char* GetDebugName() const { return ConfigData ? ConfigData->Name : \"\"; }\n public GetDebugName(): string { return this.native.GetDebugName(); }\n\n // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable.\n // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable.\n // IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8\n public CalcTextSizeA(size: number, max_width: number, wrap_width: number, text_begin: string, text_end: number | null = null, remaining: Bind.ImScalar | null = null): Bind.interface_ImVec2 {\n return this.native.CalcTextSizeA(size, max_width, wrap_width, text_end !== null ? text_begin.substring(0, text_end) : text_begin, remaining, new ImVec2());\n }\n // IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const;\n public CalcWordWrapPositionA(scale: number, text: string, text_end: number | null = null, wrap_width: number): number {\n return this.native.CalcWordWrapPositionA(scale, text_end !== null ? text.substring(0, text_end) : text, wrap_width);\n }\n // IMGUI_API void RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, unsigned short c) const;\n public RenderChar(draw_list: ImDrawList, size: number, pos: Readonly, col: Bind.ImU32, c: Bind.ImWchar): void {\n this.native.RenderChar(draw_list.native, size, pos, col, c);\n }\n // IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const;\n public RenderText(draw_list: ImDrawList, size: number, pos: Readonly, col: Bind.ImU32, clip_rect: Readonly, text_begin: string, text_end: number | null = null, wrap_width: number = 0.0, cpu_fine_clip: boolean = false): void {}\n\n // [Internal]\n // IMGUI_API void GrowIndex(int new_size);\n // IMGUI_API void AddGlyph(ImWchar c, float x0, float y0, float x1, float y1, float u0, float v0, float u1, float v1, float advance_x);\n // IMGUI_API void AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst = true); // Makes 'dst' character/glyph points to 'src' character/glyph. Currently needs to be called AFTER fonts have been built.\n\n // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS\n // typedef ImFontGlyph Glyph; // OBSOLETE 1.52+\n // #endif\n}\n\n// a script version of BindImGui.ImGuiStyle with matching interface\nclass script_ImGuiStyle implements Bind.interface_ImGuiStyle {\n public Alpha: number = 1.0;\n public WindowPadding: ImVec2 = new ImVec2(8, 8);\n public WindowRounding: number = 7.0;\n public WindowBorderSize: number = 0.0;\n public WindowMinSize: ImVec2 = new ImVec2(32, 32);\n public WindowTitleAlign: ImVec2 = new ImVec2(0.0, 0.5);\n public WindowMenuButtonPosition: ImGuiDir = ImGuiDir.Left;\n public ChildRounding: number = 0.0;\n public ChildBorderSize: number = 1.0;\n public PopupRounding: number = 0.0;\n public PopupBorderSize: number = 1.0;\n public FramePadding: ImVec2 = new ImVec2(4, 3);\n public FrameRounding: number = 0.0;\n public FrameBorderSize: number = 0.0;\n public ItemSpacing: ImVec2 = new ImVec2(8, 4);\n public ItemInnerSpacing: ImVec2 = new ImVec2(4, 4);\n public TouchExtraPadding: ImVec2 = new ImVec2(0, 0);\n public IndentSpacing: number = 21.0;\n public ColumnsMinSpacing: number = 6.0;\n public ScrollbarSize: number = 16.0;\n public ScrollbarRounding: number = 9.0;\n public GrabMinSize: number = 10.0;\n public GrabRounding: number = 0.0;\n public TabRounding: number = 0.0;\n public TabBorderSize: number = 0.0;\n public ButtonTextAlign: ImVec2 = new ImVec2(0.5, 0.5);\n public SelectableTextAlign: ImVec2 = new ImVec2(0.0, 0.0);\n public DisplayWindowPadding: ImVec2 = new ImVec2(22, 22);\n public DisplaySafeAreaPadding: ImVec2 = new ImVec2(4, 4);\n public MouseCursorScale: number = 1;\n public AntiAliasedLines: boolean = true;\n public AntiAliasedFill: boolean = true;\n public CurveTessellationTol: number = 1.25;\n private Colors: ImVec4[] = [];\n public _getAt_Colors(index: number): Bind.interface_ImVec4 { return this.Colors[index]; }\n public _setAt_Colors(index: number, color: Readonly): boolean { this.Colors[index].Copy(color); return true; }\n\n constructor() {\n for (let i = 0; i < ImGuiCol.COUNT; ++i) {\n this.Colors[i] = new ImVec4();\n }\n const _this = new ImGuiStyle(this);\n const native = new bind.ImGuiStyle();\n const _that = new ImGuiStyle(native);\n _that.Copy(_this);\n bind.StyleColorsClassic(native);\n _this.Copy(_that);\n native.delete();\n }\n\n public ScaleAllSizes(scale_factor: number): void {\n const _this = new ImGuiStyle(this);\n const native = new bind.ImGuiStyle();\n const _that = new ImGuiStyle(native);\n _that.Copy(_this);\n native.ScaleAllSizes(scale_factor);\n _this.Copy(_that);\n native.delete();\n }\n}\n\nexport class ImGuiStyle\n{\n constructor(public readonly internal: Bind.interface_ImGuiStyle = new script_ImGuiStyle()) {}\n\n get Alpha(): number { return this.internal.Alpha; } set Alpha(value: number) { this.internal.Alpha = value; }\n get WindowPadding(): Bind.interface_ImVec2 { return this.internal.WindowPadding; }\n get WindowRounding(): number { return this.internal.WindowRounding; } set WindowRounding(value: number) { this.internal.WindowRounding = value; }\n get WindowBorderSize(): number { return this.internal.WindowBorderSize; } set WindowBorderSize(value: number) { this.internal.WindowBorderSize = value; }\n get WindowMinSize(): Bind.interface_ImVec2 { return this.internal.WindowMinSize; }\n get WindowTitleAlign(): Bind.interface_ImVec2 { return this.internal.WindowTitleAlign; }\n get WindowMenuButtonPosition(): ImGuiDir { return this.internal.WindowMenuButtonPosition; } set WindowMenuButtonPosition(value: ImGuiDir) { this.internal.WindowMenuButtonPosition = value; }\n get ChildRounding(): number { return this.internal.ChildRounding; } set ChildRounding(value: number) { this.internal.ChildRounding = value; }\n get ChildBorderSize(): number { return this.internal.ChildBorderSize; } set ChildBorderSize(value: number) { this.internal.ChildBorderSize = value; }\n get PopupRounding(): number { return this.internal.PopupRounding; } set PopupRounding(value: number) { this.internal.PopupRounding = value; }\n get PopupBorderSize(): number { return this.internal.PopupBorderSize; } set PopupBorderSize(value: number) { this.internal.PopupBorderSize = value; }\n get FramePadding(): Bind.interface_ImVec2 { return this.internal.FramePadding; }\n get FrameRounding(): number { return this.internal.FrameRounding; } set FrameRounding(value: number) { this.internal.FrameRounding = value; }\n get FrameBorderSize(): number { return this.internal.FrameBorderSize; } set FrameBorderSize(value: number) { this.internal.FrameBorderSize = value; }\n get ItemSpacing(): Bind.interface_ImVec2 { return this.internal.ItemSpacing; }\n get ItemInnerSpacing(): Bind.interface_ImVec2 { return this.internal.ItemInnerSpacing; }\n get TouchExtraPadding(): Bind.interface_ImVec2 { return this.internal.TouchExtraPadding; }\n get IndentSpacing(): number { return this.internal.IndentSpacing; } set IndentSpacing(value: number) { this.internal.IndentSpacing = value; }\n get ColumnsMinSpacing(): number { return this.internal.ColumnsMinSpacing; } set ColumnsMinSpacing(value: number) { this.internal.ColumnsMinSpacing = value; }\n get ScrollbarSize(): number { return this.internal.ScrollbarSize; } set ScrollbarSize(value: number) { this.internal.ScrollbarSize = value; }\n get ScrollbarRounding(): number { return this.internal.ScrollbarRounding; } set ScrollbarRounding(value: number) { this.internal.ScrollbarRounding = value; }\n get GrabMinSize(): number { return this.internal.GrabMinSize; } set GrabMinSize(value: number) { this.internal.GrabMinSize = value; }\n get GrabRounding(): number { return this.internal.GrabRounding; } set GrabRounding(value: number) { this.internal.GrabRounding = value; }\n get TabRounding(): number { return this.internal.TabRounding; } set TabRounding(value: number) { this.internal.TabRounding = value; }\n get TabBorderSize(): number { return this.internal.TabBorderSize; } set TabBorderSize(value: number) { this.internal.TabBorderSize = value; }\n get ButtonTextAlign(): Bind.interface_ImVec2 { return this.internal.ButtonTextAlign; }\n get SelectableTextAlign(): Bind.interface_ImVec2 { return this.internal.SelectableTextAlign; }\n get DisplayWindowPadding(): Bind.interface_ImVec2 { return this.internal.DisplayWindowPadding; }\n get DisplaySafeAreaPadding(): Bind.interface_ImVec2 { return this.internal.DisplaySafeAreaPadding; }\n get MouseCursorScale(): number { return this.internal.MouseCursorScale; } set MouseCursorScale(value: number) { this.internal.MouseCursorScale = value; }\n get AntiAliasedLines(): boolean { return this.internal.AntiAliasedLines; } set AntiAliasedLines(value: boolean) { this.internal.AntiAliasedLines = value; }\n get AntiAliasedFill(): boolean { return this.internal.AntiAliasedFill; } set AntiAliasedFill(value: boolean) { this.internal.AntiAliasedFill = value; }\n get CurveTessellationTol(): number { return this.internal.CurveTessellationTol; } set CurveTessellationTol(value: number) { this.internal.CurveTessellationTol = value; }\n public Colors: Bind.interface_ImVec4[] = new Proxy([], {\n get: (target: Bind.interface_ImVec4[], key: PropertyKey): number | Bind.interface_ImVec4 => {\n if (key === \"length\") { return ImGuiCol.COUNT; }\n return this.internal._getAt_Colors(Number(key));\n },\n set: (target: Bind.interface_ImVec4[], key: PropertyKey, value: Readonly): boolean => {\n return this.internal._setAt_Colors(Number(key), value);\n },\n });\n\n public Copy(other: Readonly): this {\n this.Alpha = other.Alpha;\n this.WindowPadding.Copy(other.WindowPadding);\n this.WindowRounding = other.WindowRounding;\n this.WindowBorderSize = other.WindowBorderSize;\n this.WindowMinSize.Copy(other.WindowMinSize);\n this.WindowTitleAlign.Copy(other.WindowTitleAlign);\n this.WindowMenuButtonPosition = other.WindowMenuButtonPosition;\n this.ChildRounding = other.ChildRounding;\n this.ChildBorderSize = other.ChildBorderSize;\n this.PopupRounding = other.PopupRounding;\n this.PopupBorderSize = other.PopupBorderSize;\n this.FramePadding.Copy(other.FramePadding);\n this.FrameRounding = other.FrameRounding;\n this.FrameBorderSize = other.FrameBorderSize;\n this.ItemSpacing.Copy(other.ItemSpacing);\n this.ItemInnerSpacing.Copy(other.ItemInnerSpacing);\n this.TouchExtraPadding.Copy(other.TouchExtraPadding);\n this.IndentSpacing = other.IndentSpacing;\n this.ColumnsMinSpacing = other.ColumnsMinSpacing;\n this.ScrollbarSize = other.ScrollbarSize;\n this.ScrollbarRounding = other.ScrollbarRounding;\n this.GrabMinSize = other.GrabMinSize;\n this.GrabRounding = other.GrabRounding;\n this.TabRounding = other.TabRounding;\n this.TabBorderSize = other.TabBorderSize;\n this.ButtonTextAlign.Copy(other.ButtonTextAlign);\n this.DisplayWindowPadding.Copy(other.DisplayWindowPadding);\n this.DisplaySafeAreaPadding.Copy(other.DisplaySafeAreaPadding);\n this.MouseCursorScale = other.MouseCursorScale;\n this.AntiAliasedLines = other.AntiAliasedLines;\n this.AntiAliasedFill = other.AntiAliasedFill;\n this.CurveTessellationTol = other.CurveTessellationTol;\n for (let i = 0; i < ImGuiCol.COUNT; ++i) {\n this.Colors[i].Copy(other.Colors[i]);\n }\n return this;\n }\n\n public ScaleAllSizes(scale_factor: number): void { this.internal.ScaleAllSizes(scale_factor); }\n}\n\n// This is where your app communicate with Dear ImGui. Access via ImGui::GetIO().\n// Read 'Programmer guide' section in .cpp file for general usage.\nexport class ImGuiIO\n{\n constructor(public readonly native: Bind.reference_ImGuiIO) {}\n\n //------------------------------------------------------------------\n // Settings (fill once) // Default value:\n //------------------------------------------------------------------\n\n // ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc.\n get ConfigFlags(): ImGuiConfigFlags { return this.native.ConfigFlags; }\n set ConfigFlags(value: ImGuiConfigFlags) { this.native.ConfigFlags = value; }\n // ImGuiBackendFlags BackendFlags; // = 0 // Set ImGuiBackendFlags_ enum. Set by imgui_impl_xxx files or custom back-end to communicate features supported by the back-end.\n get BackendFlags(): ImGuiBackendFlags { return this.native.BackendFlags; }\n set BackendFlags(value: ImGuiBackendFlags) { this.native.BackendFlags = value; }\n // ImVec2 DisplaySize; // // Display size, in pixels. For clamping windows positions.\n get DisplaySize(): Bind.reference_ImVec2 { return this.native.DisplaySize; }\n // float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds.\n get DeltaTime(): number { return this.native.DeltaTime; }\n set DeltaTime(value: number) { this.native.DeltaTime = value; }\n // float IniSavingRate; // = 5.0f // Maximum time between saving positions/sizes to .ini file, in seconds.\n get IniSavingRate(): number { return this.native.IniSavingRate; }\n set IniSavingRate(value: number) { this.native.IniSavingRate = value; }\n // const char* IniFilename; // = \"imgui.ini\" // Path to .ini file. NULL to disable .ini saving.\n get IniFilename(): string { return this.native.IniFilename; }\n set IniFilename(value: string) { this.native.IniFilename = value; }\n // const char* LogFilename; // = \"imgui_log.txt\" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified).\n get LogFilename(): string { return this.native.LogFilename; }\n set LogFilename(value: string) { this.native.LogFilename = value; }\n // float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds.\n get MouseDoubleClickTime(): number { return this.native.MouseDoubleClickTime; }\n set MouseDoubleClickTime(value: number) { this.native.MouseDoubleClickTime = value; }\n // float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels.\n get MouseDoubleClickMaxDist(): number { return this.native.MouseDoubleClickMaxDist; }\n set MouseDoubleClickMaxDist(value: number) { this.native.MouseDoubleClickMaxDist = value; }\n // float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging\n get MouseDragThreshold(): number { return this.native.MouseDragThreshold; }\n set MouseDragThreshold(value: number) { this.native.MouseDragThreshold = value; }\n // int KeyMap[ImGuiKey_COUNT]; // // Map of indices into the KeysDown[512] entries array\n public KeyMap: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiKey.COUNT; }\n return this.native._getAt_KeyMap(Number(key));\n },\n set: (target: number[], key: PropertyKey, value: number): boolean => {\n return this.native._setAt_KeyMap(Number(key), value);\n },\n });\n // float KeyRepeatDelay; // = 0.250f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.).\n get KeyRepeatDelay(): number { return this.native.KeyRepeatDelay; }\n set KeyRepeatDelay(value: number) { this.native.KeyRepeatDelay = value; }\n // float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds.\n get KeyRepeatRate(): number { return this.native.KeyRepeatRate; }\n set KeyRepeatRate(value: number) { this.native.KeyRepeatRate = value; }\n // void* UserData; // = NULL // Store your own data for retrieval by callbacks.\n get UserData(): any { return this.native.UserData; }\n set UserData(value: any) { this.native.UserData = value; }\n\n // ImFontAtlas* Fonts; // // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array.\n get Fonts(): ImFontAtlas { return new ImFontAtlas(this.native.Fonts); }\n // float FontGlobalScale; // = 1.0f // Global scale all fonts\n get FontGlobalScale(): number { return this.native.FontGlobalScale; }\n set FontGlobalScale(value: number) { this.native.FontGlobalScale = value; }\n // bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel.\n get FontAllowUserScaling(): boolean { return this.native.FontAllowUserScaling; }\n set FontAllowUserScaling(value: boolean) { this.native.FontAllowUserScaling = value; }\n // ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0].\n get FontDefault(): ImFont | null {\n const font: Bind.reference_ImFont | null = this.native.FontDefault;\n return (font === null) ? null : new ImFont(font);\n }\n set FontDefault(value: ImFont | null) {\n this.native.FontDefault = value && value.native;\n }\n // ImVec2 DisplayFramebufferScale; // = (1.0f,1.0f) // For retina display or other situations where window coordinates are different from framebuffer coordinates. User storage only, presently not used by ImGui.\n get DisplayFramebufferScale(): Bind.reference_ImVec2 { return this.native.DisplayFramebufferScale; }\n\n // Miscellaneous configuration options\n // bool OptMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl\n get ConfigMacOSXBehaviors(): boolean { return this.native.ConfigMacOSXBehaviors; }\n set ConfigMacOSXBehaviors(value: boolean) { this.native.ConfigMacOSXBehaviors = value; }\n // bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor, for users who consider it annoying.\n get ConfigInputTextCursorBlink(): boolean { return this.native.ConfigInputTextCursorBlink; }\n set ConfigInputTextCursorBlink(value: boolean) { this.native.ConfigInputTextCursorBlink = value; }\n // bool ConfigWindowsResizeFromEdges; // = false // [BETA] Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be the ImGuiWindowFlags_ResizeFromAnySide flag)\n get ConfigWindowsResizeFromEdges(): boolean { return this.native.ConfigWindowsResizeFromEdges; }\n set ConfigWindowsResizeFromEdges(value: boolean) { this.native.ConfigWindowsResizeFromEdges = value; }\n // bool ConfigWindowsMoveFromTitleBarOnly;// = false // [BETA] Set to true to only allow moving windows when clicked+dragged from the title bar. Windows without a title bar are not affected.\n get ConfigWindowsMoveFromTitleBarOnly(): boolean { return this.native.ConfigWindowsMoveFromTitleBarOnly; }\n set ConfigWindowsMoveFromTitleBarOnly(value: boolean) { this.native.ConfigWindowsMoveFromTitleBarOnly = value; }\n\n //------------------------------------------------------------------\n // Settings (User Functions)\n //------------------------------------------------------------------\n\n // Optional: Platform/Renderer back-end name (informational only! will be displayed in About Window) + User data for back-end/wrappers to store their own stuff.\n // const char* BackendPlatformName; // = NULL\n get BackendPlatformName(): string | null { return this.native.BackendPlatformName; }\n set BackendPlatformName(value: string | null) { this.native.BackendPlatformName = value; }\n // const char* BackendRendererName; // = NULL\n get BackendRendererName(): string | null { return this.native.BackendRendererName; }\n set BackendRendererName(value: string | null) { this.native.BackendRendererName = value; }\n // void* BackendPlatformUserData; // = NULL\n get BackendPlatformUserData(): string | null { return this.native.BackendPlatformUserData; }\n set BackendPlatformUserData(value: string | null) { this.native.BackendPlatformUserData = value; }\n // void* BackendRendererUserData; // = NULL\n get BackendRendererUserData(): string | null { return this.native.BackendRendererUserData; }\n set BackendRendererUserData(value: string | null) { this.native.BackendRendererUserData = value; }\n // void* BackendLanguageUserData; // = NULL\n get BackendLanguageUserData(): string | null { return this.native.BackendLanguageUserData; }\n set BackendLanguageUserData(value: string | null) { this.native.BackendLanguageUserData = value; }\n\n // Optional: access OS clipboard\n // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures)\n // const char* (*GetClipboardTextFn)(void* user_data);\n get GetClipboardTextFn(): ((user_data: any) => string) | null { return this.native.GetClipboardTextFn; }\n set GetClipboardTextFn(value: ((user_data: any) => string) | null) { this.native.GetClipboardTextFn = value; }\n // void (*SetClipboardTextFn)(void* user_data, const char* text);\n get SetClipboardTextFn(): ((user_data: any, text: string) => void) | null { return this.native.SetClipboardTextFn; }\n set SetClipboardTextFn(value: ((user_data: any, text: string) => void) | null) { this.native.SetClipboardTextFn = value; }\n // void* ClipboardUserData;\n get ClipboardUserData(): any { return this.native.ClipboardUserData; }\n set ClipboardUserData(value: any) { this.native.ClipboardUserData = value; }\n\n // Optional: override memory allocations. MemFreeFn() may be called with a NULL pointer.\n // (default to posix malloc/free)\n // void* (*MemAllocFn)(size_t sz);\n // void (*MemFreeFn)(void* ptr);\n\n // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME in Windows)\n // (default to use native imm32 api on Windows)\n // void (*ImeSetInputScreenPosFn)(int x, int y);\n // void* ImeWindowHandle; // (Windows) Set this to your HWND to get automatic IME cursor positioning.\n\n //------------------------------------------------------------------\n // Input - Fill before calling NewFrame()\n //------------------------------------------------------------------\n\n // ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX,-FLT_MAX) if mouse is unavailable (on another screen, etc.)\n get MousePos(): Bind.reference_ImVec2 { return this.native.MousePos; }\n // bool MouseDown[5]; // Mouse buttons: left, right, middle + extras. ImGui itself mostly only uses left button (BeginPopupContext** are using right button). Others buttons allows us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API.\n public MouseDown: boolean[] = new Proxy([], {\n get: (target: boolean[], key: PropertyKey): number | boolean => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseDown(Number(key));\n },\n set: (target: boolean[], key: PropertyKey, value: boolean): boolean => {\n return this.native._setAt_MouseDown(Number(key), value);\n },\n });\n // float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text.\n public get MouseWheel(): number { return this.native.MouseWheel; }\n public set MouseWheel(value: number) { this.native.MouseWheel = value; }\n // float MouseWheelH; // Mouse wheel (Horizontal). Most users don't have a mouse with an horizontal wheel, may not be filled by all back-ends.\n public get MouseWheelH(): number { return this.native.MouseWheelH; }\n public set MouseWheelH(value: number) { this.native.MouseWheelH = value; }\n // bool MouseDrawCursor; // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor).\n get MouseDrawCursor(): boolean { return this.native.MouseDrawCursor; } set MouseDrawCursor(value: boolean) { this.native.MouseDrawCursor = value; }\n // bool KeyCtrl; // Keyboard modifier pressed: Control\n get KeyCtrl(): boolean { return this.native.KeyCtrl; } set KeyCtrl(value: boolean) { this.native.KeyCtrl = value; }\n // bool KeyShift; // Keyboard modifier pressed: Shift\n get KeyShift(): boolean { return this.native.KeyShift; } set KeyShift(value: boolean) { this.native.KeyShift = value; }\n // bool KeyAlt; // Keyboard modifier pressed: Alt\n get KeyAlt(): boolean { return this.native.KeyAlt; } set KeyAlt(value: boolean) { this.native.KeyAlt = value; }\n // bool KeySuper; // Keyboard modifier pressed: Cmd/Super/Windows\n get KeySuper(): boolean { return this.native.KeySuper; } set KeySuper(value: boolean) { this.native.KeySuper = value; }\n // bool KeysDown[512]; // Keyboard keys that are pressed (in whatever storage order you naturally have access to keyboard data)\n public KeysDown: boolean[] = new Proxy([], {\n get: (target: boolean[], key: PropertyKey): number | boolean => {\n if (key === \"length\") { return 512; }\n return this.native._getAt_KeysDown(Number(key));\n },\n set: (target: boolean[], key: PropertyKey, value: boolean): boolean => {\n return this.native._setAt_KeysDown(Number(key), value);\n },\n });\n // float NavInputs[ImGuiNavInput_COUNT]; // Gamepad inputs (keyboard keys will be auto-mapped and be written here by ImGui::NewFrame)\n public NavInputs: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiNavInput.COUNT; }\n return this.native._getAt_NavInputs(Number(key));\n },\n set: (target: number[], key: PropertyKey, value: number): boolean => {\n return this.native._setAt_NavInputs(Number(key), value);\n },\n });\n\n // Functions\n // IMGUI_API void AddInputCharacter(ImWchar c); // Add new character into InputCharacters[]\n public AddInputCharacter(c: number): void { this.native.AddInputCharacter(c); }\n // IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Add new characters into InputCharacters[] from an UTF-8 string\n public AddInputCharactersUTF8(utf8_chars: string): void { this.native.AddInputCharactersUTF8(utf8_chars); }\n // inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Clear the text input buffer manually\n public ClearInputCharacters(): void { this.native.ClearInputCharacters(); }\n\n //------------------------------------------------------------------\n // Output - Retrieve after calling NewFrame()\n //------------------------------------------------------------------\n\n // bool WantCaptureMouse; // When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. This is set by ImGui when it wants to use your mouse (e.g. unclicked mouse is hovering a window, or a widget is active).\n get WantCaptureMouse(): boolean { return this.native.WantCaptureMouse; } set WantCaptureMouse(value: boolean) { this.native.WantCaptureMouse = value; }\n // bool WantCaptureKeyboard; // When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. This is set by ImGui when it wants to use your keyboard inputs.\n get WantCaptureKeyboard(): boolean { return this.native.WantCaptureKeyboard; } set WantCaptureKeyboard(value: boolean) { this.native.WantCaptureKeyboard = value; }\n // bool WantTextInput; // Mobile/console: when io.WantTextInput is true, you may display an on-screen keyboard. This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active).\n get WantTextInput(): boolean { return this.native.WantTextInput; } set WantTextInput(value: boolean) { this.native.WantTextInput = value; }\n // bool WantSetMousePos; // [BETA-NAV] MousePos has been altered, back-end should reposition mouse on next frame. Set only when 'NavMovesMouse=true'.\n get WantSetMousePos(): boolean { return this.native.WantSetMousePos; } set WantSetMousePos(value: boolean) { this.native.WantSetMousePos = value; }\n // bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. IMPORTANT: You need to clear io.WantSaveIniSettings yourself.\n get WantSaveIniSettings(): boolean { return this.native.WantSaveIniSettings; } set WantSaveIniSettings(value: boolean) { this.native.WantSaveIniSettings = value; }\n // bool NavActive; // Directional navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag.\n get NavActive(): boolean { return this.native.NavActive; } set NavActive(value: boolean) { this.native.NavActive = value; }\n // bool NavVisible; // Directional navigation is visible and allowed (will handle ImGuiKey_NavXXX events).\n get NavVisible(): boolean { return this.native.NavVisible; } set NavVisible(value: boolean) { this.native.NavVisible = value; }\n // float Framerate; // Application framerate estimation, in frame per second. Solely for convenience. Rolling average estimation based on IO.DeltaTime over 120 frames\n get Framerate(): number { return this.native.Framerate; }\n // int MetricsRenderVertices; // Vertices output during last call to Render()\n get MetricsRenderVertices(): number { return this.native.MetricsRenderVertices; }\n // int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3\n get MetricsRenderIndices(): number { return this.native.MetricsRenderIndices; }\n // int MetricsRenderWindows; // Number of visible windows\n get MetricsRenderWindows(): number { return this.native.MetricsRenderWindows; }\n // int MetricsActiveWindows; // Number of visible root windows (exclude child windows)\n get MetricsActiveWindows(): number { return this.native.MetricsActiveWindows; }\n // int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts.\n get MetricsActiveAllocations(): number { return this.native.MetricsActiveAllocations; }\n // ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta.\n get MouseDelta(): Readonly { return this.native.MouseDelta; }\n\n //------------------------------------------------------------------\n // [Internal] ImGui will maintain those fields. Forward compatibility not guaranteed!\n //------------------------------------------------------------------\n\n // ImVec2 MousePosPrev; // Previous mouse position temporary storage (nb: not for public use, set to MousePos in NewFrame())\n // ImVec2 MouseClickedPos[5]; // Position at time of clicking\n public MouseClickedPos: Array> = new Proxy([], {\n get: (target: Array>, key: PropertyKey): number | Readonly => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseClickedPos(Number(key));\n },\n });\n // float MouseClickedTime[5]; // Time of last click (used to figure out double-click)\n // bool MouseClicked[5]; // Mouse button went from !Down to Down\n // bool MouseDoubleClicked[5]; // Has mouse button been double-clicked?\n // bool MouseReleased[5]; // Mouse button went from Down to !Down\n // bool MouseDownOwned[5]; // Track if button was clicked inside a window. We don't request mouse capture from the application if click started outside ImGui bounds.\n // float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked)\n public MouseDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseDownDuration(Number(key));\n },\n });\n // float MouseDownDurationPrev[5]; // Previous time the mouse button has been down\n // ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point\n // float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point\n // float KeysDownDuration[512]; // Duration the keyboard key has been down (0.0f == just pressed)\n public KeysDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return 512; }\n return this.native._getAt_KeysDownDuration(Number(key));\n },\n });\n // float KeysDownDurationPrev[512]; // Previous duration the key has been down\n // float NavInputsDownDuration[ImGuiNavInput_COUNT];\n public NavInputsDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiNavInput.COUNT; }\n return this.native._getAt_NavInputsDownDuration(Number(key));\n },\n });\n // float NavInputsDownDurationPrev[ImGuiNavInput_COUNT];\n\n // IMGUI_API ImGuiIO();\n}\n\nconst _texturesById: Array = [];\n\n// Context creation and access, if you want to use multiple context, share context between modules (e.g. DLL).\n// All contexts share a same ImFontAtlas by default. If you want different font atlas, you can new() them and overwrite the GetIO().Fonts variable of an ImGui context.\n// All those functions are not reliant on the current context.\nexport class ImGuiContext {\n public static current_ctx: ImGuiContext | null = null;\n public static getTexture(index: number): ImTextureID | null {\n return _texturesById[index] || null;\n }\n public static setTexture(texture: ImTextureID | null): number {\n let index = _texturesById.indexOf(texture);\n if (index === -1) {\n for (let i = 0; i < _texturesById.length; ++i) {\n if (_texturesById[i] === null) {\n _texturesById[i] = texture;\n return i;\n }\n }\n index = _texturesById.length;\n _texturesById.push(texture);\n }\n return index;\n }\n\n constructor(public readonly native: Bind.WrapImGuiContext) {}\n}\n// IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL);\nexport function CreateContext(shared_font_atlas: ImFontAtlas | null = null): ImGuiContext | null {\n const ctx: ImGuiContext = new ImGuiContext(bind.CreateContext(shared_font_atlas ? shared_font_atlas.native : null));\n if (ImGuiContext.current_ctx === null) {\n ImGuiContext.current_ctx = ctx;\n }\n return ctx;\n}\n// IMGUI_API void DestroyContext(ImGuiContext* ctx = NULL); // NULL = Destroy current context\nexport function DestroyContext(ctx: ImGuiContext | null = null): void {\n if (ctx === null) {\n ctx = ImGuiContext.current_ctx;\n ImGuiContext.current_ctx = null;\n }\n bind.DestroyContext((ctx === null) ? null : ctx.native);\n}\n// IMGUI_API ImGuiContext* GetCurrentContext();\nexport function GetCurrentContext(): ImGuiContext | null {\n // const ctx_native: BindImGui.ImGuiContext | null = bind.GetCurrentContext();\n return ImGuiContext.current_ctx;\n}\n// IMGUI_API void SetCurrentContext(ImGuiContext* ctx);\nexport function SetCurrentContext(ctx: ImGuiContext | null): void {\n bind.SetCurrentContext((ctx === null) ? null : ctx.native);\n ImGuiContext.current_ctx = ctx;\n}\n\n// IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert);\nexport function DebugCheckVersionAndDataLayout(version_str: string, sz_io: number, sz_style: number, sz_vec2: number, sz_vec4: number, sz_draw_vert: number, sz_draw_idx: number): boolean {\n return bind.DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx);\n}\n\n// Main\n// IMGUI_API ImGuiIO& GetIO();\nexport function GetIO(): ImGuiIO { return new ImGuiIO(bind.GetIO()); }\n// IMGUI_API ImGuiStyle& GetStyle();\nexport function GetStyle(): ImGuiStyle { return new ImGuiStyle(bind.GetStyle()); }\n// IMGUI_API void NewFrame(); // start a new ImGui frame, you can submit any command from this point until Render()/EndFrame().\nexport function NewFrame(): void { bind.NewFrame(); }\n// IMGUI_API void EndFrame(); // ends the ImGui frame. automatically called by Render(), so most likely don't need to ever call that yourself directly. If you don't need to render you may call EndFrame() but you'll have wasted CPU already. If you don't need to render, better to not create any imgui windows instead!\nexport function EndFrame(): void { bind.EndFrame(); }\n// IMGUI_API void Render(); // ends the ImGui frame, finalize the draw data, then call your io.RenderDrawListsFn() function if set.\nexport function Render(): void { bind.Render(); }\n// IMGUI_API ImDrawData* GetDrawData(); // same value as passed to your io.RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame()\nexport function GetDrawData(): ImDrawData | null {\n const draw_data: Bind.reference_ImDrawData | null = bind.GetDrawData();\n return (draw_data === null) ? null : new ImDrawData(draw_data);\n}\n\n// Demo, Debug, Informations\n// IMGUI_API void ShowDemoWindow(bool* p_open = NULL); // create demo/test window (previously called ShowTestWindow). demonstrate most ImGui features. call this to learn about the library! try to make it always available in your application!\nexport function ShowDemoWindow(p_open: Bind.ImScalar | null = null): void { bind.ShowDemoWindow(p_open); }\n// IMGUI_API void ShowAboutWindow(bool* p_open = NULL); // create about window. display Dear ImGui version, credits and build/system information.\nexport function ShowAboutWindow(p_open: Bind.ImScalar | Bind.ImAccess | null = null): void {\n if (p_open === null) {\n bind.ShowAboutWindow(null);\n } else if (Array.isArray(p_open)) {\n bind.ShowAboutWindow(p_open);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n bind.ShowAboutWindow(ref_open);\n p_open(ref_open[0]);\n }\n}\n// IMGUI_API void ShowMetricsWindow(bool* p_open = NULL); // create metrics window. display ImGui internals: draw commands (with individual draw calls and vertices), window list, basic internal state, etc.\nexport function ShowMetricsWindow(p_open: Bind.ImScalar | Bind.ImAccess | null = null): void {\n if (p_open === null) {\n bind.ShowMetricsWindow(null);\n } else if (Array.isArray(p_open)) {\n bind.ShowMetricsWindow(p_open);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n bind.ShowMetricsWindow(ref_open);\n p_open(ref_open[0]);\n }\n}\n// IMGUI_API void ShowStyleEditor(ImGuiStyle* ref = NULL); // add style editor block (not a window). you can pass in a reference ImGuiStyle structure to compare to, revert to and save to (else it uses the default style)\nexport function ShowStyleEditor(ref: ImGuiStyle | null = null): void {\n if (ref === null) {\n bind.ShowStyleEditor(null);\n } else if (ref.internal instanceof bind.ImGuiStyle) {\n bind.ShowStyleEditor(ref.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(ref);\n bind.ShowStyleEditor(native);\n ref.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API bool ShowStyleSelector(const char* label);\nexport function ShowStyleSelector(label: string): boolean { return bind.ShowStyleSelector(label); }\n// IMGUI_API void ShowFontSelector(const char* label);\nexport function ShowFontSelector(label: string): void { bind.ShowFontSelector(label); }\n// IMGUI_API void ShowUserGuide(); // add basic help/info block (not a window): how to manipulate ImGui as a end-user (mouse/keyboard controls).\nexport function ShowUserGuide(): void { bind.ShowUserGuide(); }\n// IMGUI_API const char* GetVersion();\nexport function GetVersion(): string { return bind.GetVersion(); }\n\n// Styles\n// IMGUI_API void StyleColorsClassic(ImGuiStyle* dst = NULL);\nexport function StyleColorsClassic(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsClassic(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsClassic(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsClassic(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API void StyleColorsDark(ImGuiStyle* dst = NULL);\nexport function StyleColorsDark(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsDark(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsDark(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsDark(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API void StyleColorsLight(ImGuiStyle* dst = NULL);\nexport function StyleColorsLight(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsLight(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsLight(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsLight(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n\n// Window\n// IMGUI_API bool Begin(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); // push window to the stack and start appending to it. see .cpp for details. return false when window is collapsed, so you can early out in your code. 'bool* p_open' creates a widget on the upper-right to close the window (which sets your bool to false).\nexport function Begin(name: string, open: Bind.ImScalar | Bind.ImAccess | null = null, flags: ImGuiWindowFlags = 0): boolean {\n if (open === null) {\n return bind.Begin(name, null, flags);\n } else if (Array.isArray(open)) {\n return bind.Begin(name, open, flags);\n } else {\n const ref_open: Bind.ImScalar = [ open() ];\n const opened: boolean = bind.Begin(name, ref_open, flags);\n open(ref_open[0]);\n return opened;\n }\n}\n// IMGUI_API void End(); // finish appending to current window, pop it off the window stack.\nexport function End(): void { bind.End(); }\n// IMGUI_API bool BeginChild(const char* str_id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags extra_flags = 0); // begin a scrolling region. size==0.0f: use remaining window size, size<0.0f: use remaining window size minus abs(size). size>0.0f: fixed size. each axis can use a different mode, e.g. ImVec2(0,400).\n// IMGUI_API bool BeginChild(ImGuiID id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags extra_flags = 0); // \"\nexport function BeginChild(id: string | Bind.ImGuiID, size: Readonly = ImVec2.ZERO, border: boolean = false, extra_flags: ImGuiWindowFlags = 0): boolean {\n return bind.BeginChild(id, size, border, extra_flags);\n}\n// IMGUI_API void EndChild();\nexport function EndChild(): void { bind.EndChild(); }\n// IMGUI_API ImVec2 GetContentRegionMax(); // current content boundaries (typically window boundaries including scrolling, or current column boundaries), in windows coordinates\nexport function GetContentRegionMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetContentRegionMax(out);\n}\n// IMGUI_API ImVec2 GetContentRegionAvail(); // == GetContentRegionMax() - GetCursorPos()\nexport function GetContentRegionAvail(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetContentRegionAvail(out);\n}\n// IMGUI_API ImVec2 GetWindowContentRegionMin(); // content boundaries min (roughly (0,0)-Scroll), in window coordinates\nexport function GetWindowContentRegionMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowContentRegionMin(out);\n}\n// IMGUI_API ImVec2 GetWindowContentRegionMax(); // content boundaries max (roughly (0,0)+Size-Scroll) where Size can be override with SetNextWindowContentSize(), in window coordinates\nexport function GetWindowContentRegionMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowContentRegionMax(out);\n}\n// IMGUI_API float GetWindowContentRegionWidth(); //\nexport function GetWindowContentRegionWidth(): number { return bind.GetWindowContentRegionWidth(); }\n// IMGUI_API ImDrawList* GetWindowDrawList(); // get rendering command-list if you want to append your own draw primitives\nexport function GetWindowDrawList(): ImDrawList {\n return new ImDrawList(bind.GetWindowDrawList());\n}\n// IMGUI_API ImVec2 GetWindowPos(); // get current window position in screen space (useful if you want to do your own drawing via the DrawList api)\nexport function GetWindowPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowPos(out);\n}\n// IMGUI_API ImVec2 GetWindowSize(); // get current window size\nexport function GetWindowSize(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowSize(out);\n}\n// IMGUI_API float GetWindowWidth();\nexport function GetWindowWidth(): number { return bind.GetWindowWidth(); }\n// IMGUI_API float GetWindowHeight();\nexport function GetWindowHeight(): number { return bind.GetWindowHeight(); }\n// IMGUI_API bool IsWindowCollapsed();\nexport function IsWindowCollapsed(): boolean { return bind.IsWindowCollapsed(); }\n// IMGUI_API bool IsWindowAppearing();\nexport function IsWindowAppearing(): boolean { return bind.IsWindowAppearing(); }\n// IMGUI_API void SetWindowFontScale(float scale); // per-window font scale. Adjust IO.FontGlobalScale if you want to scale all windows\nexport function SetWindowFontScale(scale: number): void { bind.SetWindowFontScale(scale); }\n\n// IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivot = ImVec2(0,0)); // set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc.\nexport function SetNextWindowPos(pos: Readonly, cond: ImGuiCond = 0, pivot: Readonly = ImVec2.ZERO): void {\n bind.SetNextWindowPos(pos, cond, pivot);\n}\n// IMGUI_API void SetNextWindowSize(const ImVec2& size, ImGuiCond cond = 0); // set next window size. set axis to 0.0f to force an auto-fit on this axis. call before Begin()\nexport function SetNextWindowSize(pos: Readonly, cond: ImGuiCond = 0): void {\n bind.SetNextWindowSize(pos, cond);\n}\n// IMGUI_API void SetNextWindowSizeConstraints(const ImVec2& size_min, const ImVec2& size_max, ImGuiSizeConstraintCallback custom_callback = NULL, void* custom_callback_data = NULL); // set next window size limits. use -1,-1 on either X/Y axis to preserve the current size. Use callback to apply non-trivial programmatic constraints.\nexport function SetNextWindowSizeConstraints(size_min: Readonly, size_max: Readonly, custom_callback: ImGuiSizeConstraintCallback | null = null, custom_callback_data: any = null): void {\n if (custom_callback) {\n bind.SetNextWindowSizeConstraints(size_min, size_max, (data: Bind.reference_ImGuiSizeCallbackData): void => {\n custom_callback(new ImGuiSizeCallbackData(data, custom_callback_data));\n }, null);\n } else {\n bind.SetNextWindowSizeConstraints(size_min, size_max, null, null);\n }\n}\n// IMGUI_API void SetNextWindowContentSize(const ImVec2& size); // set next window content size (~ enforce the range of scrollbars). not including window decorations (title bar, menu bar, etc.). set an axis to 0.0f to leave it automatic. call before Begin()\nexport function SetNextWindowContentSize(size: Readonly): void {\n bind.SetNextWindowContentSize(size);\n}\n// IMGUI_API void SetNextWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // set next window collapsed state. call before Begin()\nexport function SetNextWindowCollapsed(collapsed: boolean, cond: ImGuiCond = 0): void {\n bind.SetNextWindowCollapsed(collapsed, cond);\n}\n// IMGUI_API void SetNextWindowFocus(); // set next window to be focused / front-most. call before Begin()\nexport function SetNextWindowFocus(): void { bind.SetNextWindowFocus(); }\n// IMGUI_API void SetNextWindowBgAlpha(float alpha); // set next window background color alpha. helper to easily modify ImGuiCol_WindowBg/ChildBg/PopupBg.\nexport function SetNextWindowBgAlpha(alpha: number): void { bind.SetNextWindowBgAlpha(alpha); }\n// IMGUI_API void SetWindowPos(const ImVec2& pos, ImGuiCond cond = 0); // (not recommended) set current window position - call within Begin()/End(). prefer using SetNextWindowPos(), as this may incur tearing and side-effects.\n// IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); // (not recommended) set current window size - call within Begin()/End(). set to ImVec2(0,0) to force an auto-fit. prefer using SetNextWindowSize(), as this may incur tearing and minor side-effects.\n// IMGUI_API void SetWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // (not recommended) set current window collapsed state. prefer using SetNextWindowCollapsed().\n// IMGUI_API void SetWindowFocus(); // (not recommended) set current window to be focused / front-most. prefer using SetNextWindowFocus().\n// IMGUI_API void SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond = 0); // set named window position.\n// IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); // set named window size. set axis to 0.0f to force an auto-fit on this axis.\n// IMGUI_API void SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond = 0); // set named window collapsed state\n// IMGUI_API void SetWindowFocus(const char* name); // set named window to be focused / front-most. use NULL to remove focus.\nexport function SetWindowPos(name_or_pos: string | Readonly, pos_or_cond: Readonly | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_pos) === \"string\") {\n bind.SetWindowNamePos(name_or_pos, pos_or_cond as Readonly, cond);\n return;\n } else {\n bind.SetWindowPos(name_or_pos, pos_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowSize(name_or_size: string | Readonly, size_or_cond: Readonly | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_size) === \"string\") {\n bind.SetWindowNamePos(name_or_size, size_or_cond as Readonly, cond);\n } else {\n bind.SetWindowSize(name_or_size, size_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowCollapsed(name_or_collapsed: string | boolean, collapsed_or_cond: boolean | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_collapsed) === \"string\") {\n bind.SetWindowNameCollapsed(name_or_collapsed, collapsed_or_cond as boolean, cond);\n } else {\n bind.SetWindowCollapsed(name_or_collapsed, collapsed_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowFocus(name?: string): void {\n if (typeof(name) === \"string\") {\n bind.SetWindowNameFocus(name);\n } else {\n bind.SetWindowFocus();\n }\n}\n\n// IMGUI_API float GetScrollX(); // get scrolling amount [0..GetScrollMaxX()]\nexport function GetScrollX(): number { return bind.GetScrollX(); }\n// IMGUI_API float GetScrollY(); // get scrolling amount [0..GetScrollMaxY()]\nexport function GetScrollY(): number { return bind.GetScrollY(); }\n// IMGUI_API float GetScrollMaxX(); // get maximum scrolling amount ~~ ContentSize.X - WindowSize.X\nexport function GetScrollMaxX(): number { return bind.GetScrollMaxX(); }\n// IMGUI_API float GetScrollMaxY(); // get maximum scrolling amount ~~ ContentSize.Y - WindowSize.Y\nexport function GetScrollMaxY(): number { return bind.GetScrollMaxY(); }\n// IMGUI_API void SetScrollX(float scroll_x); // set scrolling amount [0..GetScrollMaxX()]\nexport function SetScrollX(scroll_x: number): void { bind.SetScrollX(scroll_x); }\n// IMGUI_API void SetScrollY(float scroll_y); // set scrolling amount [0..GetScrollMaxY()]\nexport function SetScrollY(scroll_y: number): void { bind.SetScrollY(scroll_y); }\n// IMGUI_API void SetScrollHereY(float center_y_ratio = 0.5f); // adjust scrolling amount to make current cursor position visible. center_y_ratio=0.0: top, 0.5: center, 1.0: bottom. When using to make a \"default/current item\" visible, consider using SetItemDefaultFocus() instead.\nexport function SetScrollHereY(center_y_ratio: number = 0.5): void {\n bind.SetScrollHereY(center_y_ratio);\n}\n// IMGUI_API void SetScrollFromPosY(float pos_y, float center_y_ratio = 0.5f); // adjust scrolling amount to make given position valid. use GetCursorPos() or GetCursorStartPos()+offset to get valid positions.\nexport function SetScrollFromPosY(pos_y: number, center_y_ratio: number = 0.5): void {\n bind.SetScrollFromPosY(pos_y, center_y_ratio);\n}\n// IMGUI_API void SetStateStorage(ImGuiStorage* tree); // replace tree state storage with our own (if you want to manipulate it yourself, typically clear subsection of it)\n// IMGUI_API ImGuiStorage* GetStateStorage();\n\n// Parameters stacks (shared)\n// IMGUI_API void PushFont(ImFont* font); // use NULL as a shortcut to push default font\nexport function PushFont(font: ImFont | null): void { bind.PushFont(font ? font.native : null); }\n// IMGUI_API void PopFont();\nexport function PopFont(): void { bind.PopFont(); }\n// IMGUI_API void PushStyleColor(ImGuiCol idx, ImU32 col);\n// IMGUI_API void PushStyleColor(ImGuiCol idx, const ImVec4& col);\nexport function PushStyleColor(idx: ImGuiCol, col: Bind.ImU32 | Readonly | Readonly): void {\n if (col instanceof ImColor) {\n bind.PushStyleColor(idx, col.Value);\n } else {\n bind.PushStyleColor(idx, col as (Bind.ImU32 | Readonly));\n }\n}\n// IMGUI_API void PopStyleColor(int count = 1);\nexport function PopStyleColor(count: number = 1): void {\n bind.PopStyleColor(count);\n}\n// IMGUI_API void PushStyleVar(ImGuiStyleVar idx, float val);\n// IMGUI_API void PushStyleVar(ImGuiStyleVar idx, const ImVec2& val);\nexport function PushStyleVar(idx: ImGuiStyleVar, val: number | Readonly): void {\n bind.PushStyleVar(idx, val);\n}\n// IMGUI_API void PopStyleVar(int count = 1);\nexport function PopStyleVar(count: number = 1): void {\n bind.PopStyleVar(count);\n}\n// IMGUI_API const ImVec4& GetStyleColorVec4(ImGuiCol idx); // retrieve style color as stored in ImGuiStyle structure. use to feed back into PushStyleColor(), otherwhise use GetColorU32() to get style color + style alpha.\nexport function GetStyleColorVec4(idx: ImGuiCol): Readonly {\n return bind.GetStyleColorVec4(idx);\n}\n// IMGUI_API ImFont* GetFont(); // get current font\nexport function GetFont(): ImFont {\n return new ImFont(bind.GetFont());\n}\n// IMGUI_API float GetFontSize(); // get current font size (= height in pixels) of current font with current scale applied\nexport function GetFontSize(): number { return bind.GetFontSize(); }\n// IMGUI_API ImVec2 GetFontTexUvWhitePixel(); // get UV coordinate for a while pixel, useful to draw custom shapes via the ImDrawList API\nexport function GetFontTexUvWhitePixel(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetFontTexUvWhitePixel(out);\n}\n// IMGUI_API ImU32 GetColorU32(ImGuiCol idx, float alpha_mul = 1.0f); // retrieve given style color with style alpha applied and optional extra alpha multiplier\n// IMGUI_API ImU32 GetColorU32(const ImVec4& col); // retrieve given color with style alpha applied\n// IMGUI_API ImU32 GetColorU32(ImU32 col); // retrieve given color with style alpha applied\nexport function GetColorU32(idx: ImGuiCol, alpha_mul?: number): Bind.ImU32;\nexport function GetColorU32(col: Readonly): Bind.ImU32;\nexport function GetColorU32(col: Bind.ImU32): Bind.ImU32;\nexport function GetColorU32(...args: any[]): Bind.ImU32 {\n if (args.length === 1) {\n if (typeof(args[0]) === \"number\") {\n // TODO: ImGuiCol or ImU32\n const idx: ImGuiCol = args[0];\n return bind.GetColorU32_A(idx, 1.0);\n } else {\n const col: Readonly = args[0];\n return bind.GetColorU32_B(col);\n }\n } else {\n const idx: ImGuiCol = args[0];\n const alpha_mul: number = args[1];\n return bind.GetColorU32_A(idx, alpha_mul);\n }\n}\n\n// Parameters stacks (current window)\n// IMGUI_API void PushItemWidth(float item_width); // width of items for the common item+label case, pixels. 0.0f = default to ~2/3 of windows width, >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)\nexport function PushItemWidth(item_width: number): void { bind.PushItemWidth(item_width); }\n// IMGUI_API void PopItemWidth();\nexport function PopItemWidth(): void { bind.PopItemWidth(); }\n// IMGUI_API float CalcItemWidth(); // width of item given pushed settings and current cursor position\nexport function SetNextItemWidth(item_width: number): void { bind.SetNextItemWidth(item_width); } // set width of the _next_ common large \"item+label\" widget. >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)\nexport function CalcItemWidth(): number { return bind.CalcItemWidth(); }\n// IMGUI_API void PushTextWrapPos(float wrap_pos_x = 0.0f); // word-wrapping for Text*() commands. < 0.0f: no wrapping; 0.0f: wrap to end of window (or column); > 0.0f: wrap at 'wrap_pos_x' position in window local space\nexport function PushTextWrapPos(wrap_pos_x: number = 0.0): void {\n bind.PushTextWrapPos(wrap_pos_x);\n}\n// IMGUI_API void PopTextWrapPos();\nexport function PopTextWrapPos(): void { bind.PopTextWrapPos(); }\n// IMGUI_API void PushAllowKeyboardFocus(bool allow_keyboard_focus); // allow focusing using TAB/Shift-TAB, enabled by default but you can disable it for certain widgets\nexport function PushAllowKeyboardFocus(allow_keyboard_focus: boolean): void { bind.PushAllowKeyboardFocus(allow_keyboard_focus); }\n// IMGUI_API void PopAllowKeyboardFocus();\nexport function PopAllowKeyboardFocus(): void { bind.PopAllowKeyboardFocus(); }\n// IMGUI_API void PushButtonRepeat(bool repeat); // in 'repeat' mode, Button*() functions return repeated true in a typematic manner (using io.KeyRepeatDelay/io.KeyRepeatRate setting). Note that you can call IsItemActive() after any Button() to tell if the button is held in the current frame.\nexport function PushButtonRepeat(repeat: boolean): void { bind.PushButtonRepeat(repeat); }\n// IMGUI_API void PopButtonRepeat();\nexport function PopButtonRepeat(): void { bind.PopButtonRepeat(); }\n\n// Cursor / Layout\n// IMGUI_API void Separator(); // separator, generally horizontal. inside a menu bar or in horizontal layout mode, this becomes a vertical separator.\nexport function Separator(): void { bind.Separator(); }\n// IMGUI_API void SameLine(float pos_x = 0.0f, float spacing_w = -1.0f); // call between widgets or groups to layout them horizontally\nexport function SameLine(pos_x: number = 0.0, spacing_w: number = -1.0): void {\n bind.SameLine(pos_x, spacing_w);\n}\n// IMGUI_API void NewLine(); // undo a SameLine()\nexport function NewLine(): void { bind.NewLine(); }\n// IMGUI_API void Spacing(); // add vertical spacing\nexport function Spacing(): void { bind.Spacing(); }\n// IMGUI_API void Dummy(const ImVec2& size); // add a dummy item of given size\nexport function Dummy(size: Readonly): void { bind.Dummy(size); }\n// IMGUI_API void Indent(float indent_w = 0.0f); // move content position toward the right, by style.IndentSpacing or indent_w if != 0\nexport function Indent(indent_w: number = 0.0) { bind.Indent(indent_w); }\n// IMGUI_API void Unindent(float indent_w = 0.0f); // move content position back to the left, by style.IndentSpacing or indent_w if != 0\nexport function Unindent(indent_w: number = 0.0) { bind.Unindent(indent_w); }\n// IMGUI_API void BeginGroup(); // lock horizontal starting position + capture group bounding box into one \"item\" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.)\nexport function BeginGroup(): void { bind.BeginGroup(); }\n// IMGUI_API void EndGroup();\nexport function EndGroup(): void { bind.EndGroup(); }\n// IMGUI_API ImVec2 GetCursorPos(); // cursor position is relative to window position\nexport function GetCursorPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorPos(out); }\n// IMGUI_API float GetCursorPosX(); // \"\nexport function GetCursorPosX(): number { return bind.GetCursorPosX(); }\n// IMGUI_API float GetCursorPosY(); // \"\nexport function GetCursorPosY(): number { return bind.GetCursorPosY(); }\n// IMGUI_API void SetCursorPos(const ImVec2& local_pos); // \"\nexport function SetCursorPos(local_pos: Readonly): void { bind.SetCursorPos(local_pos); }\n// IMGUI_API void SetCursorPosX(float x); // \"\nexport function SetCursorPosX(x: number): void { bind.SetCursorPosX(x); }\n// IMGUI_API void SetCursorPosY(float y); // \"\nexport function SetCursorPosY(y: number): void { bind.SetCursorPosY(y); }\n// IMGUI_API ImVec2 GetCursorStartPos(); // initial cursor position\nexport function GetCursorStartPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorStartPos(out); }\n// IMGUI_API ImVec2 GetCursorScreenPos(); // cursor position in absolute screen coordinates [0..io.DisplaySize] (useful to work with ImDrawList API)\nexport function GetCursorScreenPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorScreenPos(out); }\n// IMGUI_API void SetCursorScreenPos(const ImVec2& pos); // cursor position in absolute screen coordinates [0..io.DisplaySize]\nexport function SetCursorScreenPos(pos: Readonly): void { bind.SetCursorScreenPos(pos); }\n// IMGUI_API void AlignTextToFramePadding(); // vertically align/lower upcoming text to FramePadding.y so that it will aligns to upcoming widgets (call if you have text on a line before regular widgets)\nexport function AlignTextToFramePadding(): void { bind.AlignTextToFramePadding(); }\n// IMGUI_API float GetTextLineHeight(); // ~ FontSize\nexport function GetTextLineHeight(): number { return bind.GetTextLineHeight(); }\n// IMGUI_API float GetTextLineHeightWithSpacing(); // ~ FontSize + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of text)\nexport function GetTextLineHeightWithSpacing(): number { return bind.GetTextLineHeightWithSpacing(); }\n// IMGUI_API float GetFrameHeight(); // ~ FontSize + style.FramePadding.y * 2\nexport function GetFrameHeight(): number { return bind.GetFrameHeight(); }\n// IMGUI_API float GetFrameHeightWithSpacing(); // ~ FontSize + style.FramePadding.y * 2 + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of framed widgets)\nexport function GetFrameHeightWithSpacing(): number { return bind.GetFrameHeightWithSpacing(); }\n\n// Columns\n// You can also use SameLine(pos_x) for simplified columns. The columns API is still work-in-progress and rather lacking.\n// IMGUI_API void Columns(int count = 1, const char* id = NULL, bool border = true);\nexport function Columns(count: number = 1, id: string | null = null, border: boolean = true): void {\n id = id || \"\";\n bind.Columns(count, id, border);\n}\n// IMGUI_API void NextColumn(); // next column, defaults to current row or next row if the current row is finished\nexport function NextColumn(): void { bind.NextColumn(); }\n// IMGUI_API int GetColumnIndex(); // get current column index\nexport function GetColumnIndex(): number { return bind.GetColumnIndex(); }\n// IMGUI_API float GetColumnWidth(int column_index = -1); // get column width (in pixels). pass -1 to use current column\nexport function GetColumnWidth(column_index: number = -1): number {\n return bind.GetColumnWidth(column_index);\n}\n// IMGUI_API void SetColumnWidth(int column_index, float width); // set column width (in pixels). pass -1 to use current column\nexport function SetColumnWidth(column_index: number, width: number): void { bind.SetColumnWidth(column_index, width); }\n// IMGUI_API float GetColumnOffset(int column_index = -1); // get position of column line (in pixels, from the left side of the contents region). pass -1 to use current column, otherwise 0..GetColumnsCount() inclusive. column 0 is typically 0.0f\nexport function GetColumnOffset(column_index: number = -1): number {\n return bind.GetColumnOffset(column_index);\n}\n// IMGUI_API void SetColumnOffset(int column_index, float offset_x); // set position of column line (in pixels, from the left side of the contents region). pass -1 to use current column\nexport function SetColumnOffset(column_index: number, offset_x: number): void { bind.SetColumnOffset(column_index, offset_x); }\n// IMGUI_API int GetColumnsCount();\nexport function GetColumnsCount(): number { return bind.GetColumnsCount(); }\n\n// ID scopes\n// If you are creating widgets in a loop you most likely want to push a unique identifier (e.g. object pointer, loop index) so ImGui can differentiate them.\n// You can also use the \"##foobar\" syntax within widget label to distinguish them from each others. Read \"A primer on the use of labels/IDs\" in the FAQ for more details.\n// IMGUI_API void PushID(const char* str_id); // push identifier into the ID stack. IDs are hash of the entire stack!\n// IMGUI_API void PushID(const char* str_id_begin, const char* str_id_end);\n// IMGUI_API void PushID(const void* ptr_id);\n// IMGUI_API void PushID(int int_id);\nexport function PushID(id: string | number): void { bind.PushID(id); }\n// IMGUI_API void PopID();\nexport function PopID(): void { bind.PopID(); }\n// IMGUI_API ImGuiID GetID(const char* str_id); // calculate unique ID (hash of whole ID stack + given parameter). e.g. if you want to query into ImGuiStorage yourself\n// IMGUI_API ImGuiID GetID(const char* str_id_begin, const char* str_id_end);\n// IMGUI_API ImGuiID GetID(const void* ptr_id);\nexport function GetID(id: string | number): Bind.ImGuiID { return bind.GetID(id); }\n\n// Widgets: Text\n// IMGUI_API void TextUnformatted(const char* text, const char* text_end = NULL); // raw text without formatting. Roughly equivalent to Text(\"%s\", text) but: A) doesn't require null terminated string if 'text_end' is specified, B) it's faster, no memory copy is done, no buffer size limits, recommended for long chunks of text.\nexport function TextUnformatted(text: string, text_end: number | null = null): void { bind.TextUnformatted(text_end !== null ? text.substring(0, text_end) : text); }\n// IMGUI_API void Text(const char* fmt, ...) IM_FMTARGS(1); // simple formatted text\n// IMGUI_API void TextV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function Text(fmt: string/*, ...args: any[]*/): void { bind.Text(fmt/*, ...args*/); }\n// IMGUI_API void TextColored(const ImVec4& col, const char* fmt, ...) IM_FMTARGS(2); // shortcut for PushStyleColor(ImGuiCol_Text, col); Text(fmt, ...); PopStyleColor();\n// IMGUI_API void TextColoredV(const ImVec4& col, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function TextColored(col: Readonly | Readonly, fmt: string/*, ...args: any[]*/): void {\n bind.TextColored((col instanceof ImColor) ? col.Value : col as Readonly, fmt/*, ...args*/);\n}\n// IMGUI_API void TextDisabled(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushStyleColor(ImGuiCol_Text, style.Colors[ImGuiCol_TextDisabled]); Text(fmt, ...); PopStyleColor();\n// IMGUI_API void TextDisabledV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function TextDisabled(fmt: string/*, ...args: any[]*/): void { bind.TextDisabled(fmt/*, ...args*/); }\n// IMGUI_API void TextWrapped(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize().\n// IMGUI_API void TextWrappedV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function TextWrapped(fmt: string/*, ...args: any[]*/): void { bind.TextWrapped(fmt/*, ...args*/); }\n// IMGUI_API void LabelText(const char* label, const char* fmt, ...) IM_FMTARGS(2); // display text+label aligned the same way as value+label widgets\n// IMGUI_API void LabelTextV(const char* label, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function LabelText(label: string, fmt: string/*, ...args: any[]*/): void { bind.LabelText(label, fmt/*, ...args*/); }\n// IMGUI_API void BulletText(const char* fmt, ...) IM_FMTARGS(1); // shortcut for Bullet()+Text()\n// IMGUI_API void BulletTextV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function BulletText(fmt: string/*, ...args: any[]*/): void { bind.BulletText(fmt/*, ...args*/); }\n// IMGUI_API void Bullet(); // draw a small circle and keep the cursor on the same line. advance cursor x position by GetTreeNodeToLabelSpacing(), same distance that TreeNode() uses\nexport function Bullet(): void { bind.Bullet(); }\n\n// Widgets: Main\n// IMGUI_API bool Button(const char* label, const ImVec2& size = ImVec2(0,0)); // button\nexport function Button(label: string, size: Readonly = ImVec2.ZERO): boolean {\n return bind.Button(label, size);\n}\n// IMGUI_API bool SmallButton(const char* label); // button with FramePadding=(0,0) to easily embed within text\nexport function SmallButton(label: string): boolean { return bind.SmallButton(label); }\n// IMGUI_API bool ArrowButton(const char* str_id, ImGuiDir dir); // square button with an arrow shape\nexport function ArrowButton(str_id: string, dir: ImGuiDir): boolean { return bind.ArrowButton(str_id, dir); }\n// IMGUI_API bool InvisibleButton(const char* str_id, const ImVec2& size); // button behavior without the visuals, useful to build custom behaviors using the public api (along with IsItemActive, IsItemHovered, etc.)\nexport function InvisibleButton(str_id: string, size: Readonly): boolean {\n return bind.InvisibleButton(str_id, size);\n}\n// IMGUI_API void Image(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0,0), const ImVec2& uv1 = ImVec2(1,1), const ImVec4& tint_col = ImVec4(1,1,1,1), const ImVec4& border_col = ImVec4(0,0,0,0));\nexport function Image(user_texture_id: ImTextureID | null, size: Readonly, uv0: Readonly = ImVec2.ZERO, uv1: Readonly = ImVec2.UNIT, tint_col: Readonly = ImVec4.WHITE, border_col: Readonly = ImVec4.ZERO): void {\n bind.Image(ImGuiContext.setTexture(user_texture_id), size, uv0, uv1, tint_col, border_col);\n}\n// IMGUI_API bool ImageButton(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0,0), const ImVec2& uv1 = ImVec2(1,1), int frame_padding = -1, const ImVec4& bg_col = ImVec4(0,0,0,0), const ImVec4& tint_col = ImVec4(1,1,1,1)); // <0 frame_padding uses default frame padding settings. 0 for no padding\nexport function ImageButton(user_texture_id: ImTextureID | null, size: Readonly, uv0: Readonly = ImVec2.ZERO, uv1: Readonly = ImVec2.UNIT, frame_padding: number = -1, bg_col: Readonly = ImVec4.ZERO, tint_col: Readonly = ImVec4.WHITE): boolean {\n return bind.ImageButton(ImGuiContext.setTexture(user_texture_id), size, uv0, uv1, frame_padding, bg_col, tint_col);\n}\n// IMGUI_API bool Checkbox(const char* label, bool* v);\nexport function Checkbox(label: string, v: Bind.ImScalar | Bind.ImAccess): boolean {\n if (Array.isArray(v)) {\n return bind.Checkbox(label, v);\n } else {\n const ref_v: Bind.ImScalar = [ v() ];\n const ret = bind.Checkbox(label, ref_v);\n v(ref_v[0]);\n return ret;\n }\n}\n// IMGUI_API bool CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value);\nexport function CheckboxFlags(label: string, flags: Bind.ImAccess | Bind.ImScalar, flags_value: number): boolean {\n if (Array.isArray(flags)) {\n return bind.CheckboxFlags(label, flags, flags_value);\n } else {\n const ref_flags: Bind.ImScalar = [ flags() ];\n const ret = bind.CheckboxFlags(label, ref_flags, flags_value);\n flags(ref_flags[0]);\n return ret;\n }\n}\n// IMGUI_API bool RadioButton(const char* label, bool active);\n// IMGUI_API bool RadioButton(const char* label, int* v, int v_button);\nexport function RadioButton(label: string, active: boolean): boolean;\nexport function RadioButton(label: string, v: Bind.ImAccess | Bind.ImScalar, v_button: number): boolean;\nexport function RadioButton(label: string, ...args: any[]): boolean {\n if (typeof(args[0]) === \"boolean\") {\n const active: boolean = args[0];\n return bind.RadioButton_A(label, active);\n } else {\n const v: Bind.ImAccess | Bind.ImScalar = args[0];\n const v_button: number = args[1];\n const _v: Bind.ImScalar = Array.isArray(v) ? v : [ v() ];\n const ret = bind.RadioButton_B(label, _v, v_button);\n if (!Array.isArray(v)) { v(_v[0]); }\n return ret;\n }\n}\n// IMGUI_API void PlotLines(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), int stride = sizeof(float));\n// IMGUI_API void PlotLines(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));\nexport type PlotLinesValueGetter = (data: any, idx: number) => number;\nexport function PlotLines(label: string, values: ArrayLike, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly, stride?: number): void;\nexport function PlotLines(label: string, values_getter: PlotLinesValueGetter, data: any, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly): void;\nexport function PlotLines(label: string, ...args: any[]): void {\n if (Array.isArray(args[0])) {\n const values: ArrayLike = args[0];\n const values_getter: PlotLinesValueGetter = (data: any, idx: number): number => values[idx * stride];\n const values_count: number = typeof(args[1]) === \"number\" ? args[1] : values.length;\n const values_offset: number = typeof(args[2]) === \"number\" ? args[2] : 0;\n const overlay_text: string | null = typeof(args[3]) === \"string\" ? args[3] : null;\n const scale_min: number = typeof(args[4]) === \"number\" ? args[4] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const graph_size: Readonly = args[6] || ImVec2.ZERO;\n const stride: number = typeof(args[7]) === \"number\" ? args[7] : 1;\n bind.PlotLines(label, values_getter, null, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n } else {\n const values_getter: PlotLinesValueGetter = args[0];\n const data: any = args[1];\n const values_count: number = args[2];\n const values_offset: number = typeof(args[3]) === \"number\" ? args[3] : 0;\n const overlay_text: string | null = typeof(args[4]) === \"string\" ? args[4] : null;\n const scale_min: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[6]) === \"number\" ? args[6] : Number.MAX_VALUE;\n const graph_size: Readonly = args[7] || ImVec2.ZERO;\n bind.PlotLines(label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n }\n}\n// IMGUI_API void PlotHistogram(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), int stride = sizeof(float));\n// IMGUI_API void PlotHistogram(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));\nexport type PlotHistogramValueGetter = (data: any, idx: number) => number;\nexport function PlotHistogram(label: string, values: ArrayLike, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly, stride?: number): void;\nexport function PlotHistogram(label: string, values_getter: PlotHistogramValueGetter, data: any, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly): void;\nexport function PlotHistogram(label: string, ...args: any[]): void {\n if (Array.isArray(args[0])) {\n const values: ArrayLike = args[0];\n const values_getter: PlotHistogramValueGetter = (data: any, idx: number): number => values[idx * stride];\n const values_count: number = typeof(args[1]) === \"number\" ? args[1] : values.length;\n const values_offset: number = typeof(args[2]) === \"number\" ? args[2] : 0;\n const overlay_text: string | null = typeof(args[3]) === \"string\" ? args[3] : null;\n const scale_min: number = typeof(args[4]) === \"number\" ? args[4] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const graph_size: Readonly = args[6] || ImVec2.ZERO;\n const stride: number = typeof(args[7]) === \"number\" ? args[7] : 1;\n bind.PlotHistogram(label, values_getter, null, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n } else {\n const values_getter: PlotHistogramValueGetter = args[0];\n const data: any = args[1];\n const values_count: number = args[2];\n const values_offset: number = typeof(args[3]) === \"number\" ? args[3] : 0;\n const overlay_text: string | null = typeof(args[4]) === \"string\" ? args[4] : null;\n const scale_min: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[6]) === \"number\" ? args[6] : Number.MAX_VALUE;\n const graph_size: Readonly = args[7] || ImVec2.ZERO;\n bind.PlotHistogram(label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n }\n}\n// IMGUI_API void ProgressBar(float fraction, const ImVec2& size_arg = ImVec2(-1,0), const char* overlay = NULL);\nexport function ProgressBar(fraction: number, size_arg: Readonly = new ImVec2(-1, 0), overlay: string | null = null): void {\n bind.ProgressBar(fraction, size_arg, overlay);\n}\n\n// Widgets: Combo Box\n// The new BeginCombo()/EndCombo() api allows you to manage your contents and selection state however you want it.\n// The old Combo() api are helpers over BeginCombo()/EndCombo() which are kept available for convenience purpose.\n// IMGUI_API bool BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags = 0);\nexport function BeginCombo(label: string, preview_value: string | null = null, flags: ImGuiComboFlags = 0): boolean {\n return bind.BeginCombo(label, preview_value, flags);\n}\n// IMGUI_API void EndCombo();\nexport function EndCombo(): void { bind.EndCombo(); }\n// IMGUI_API bool Combo(const char* label, int* current_item, const char* const items[], int items_count, int popup_max_height_in_items = -1);\n// IMGUI_API bool Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int popup_max_height_in_items = -1); // Separate items with \\0 within a string, end item-list with \\0\\0. e.g. \"One\\0Two\\0Three\\0\"\n// IMGUI_API bool Combo(const char* label, int* current_item, bool(*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int popup_max_height_in_items = -1);\nexport type ComboValueGetter = (data: any, idx: number, out_text: [string]) => boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items: string[], items_count?: number, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_separated_by_zeros: string, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_getter: ComboValueGetter, data: any, items_count: number, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, ...args: any[]): boolean {\n let ret = false;\n const _current_item: Bind.ImScalar = Array.isArray(current_item) ? current_item : [ current_item() ];\n if (Array.isArray(args[0])) {\n const items: string[] = args[0];\n const items_count = typeof(args[1]) === \"number\" ? args[1] : items.length;\n const popup_max_height_in_items: number = typeof(args[2]) === \"number\" ? args[2] : -1;\n const items_getter = (data: any, idx: number, out_text: [string]): boolean => { out_text[0] = items[idx]; return true; };\n ret = bind.Combo(label, _current_item, items_getter, null, items_count, popup_max_height_in_items);\n } else if (typeof(args[0]) === \"string\") {\n const items_separated_by_zeros: string = args[0]\n const popup_max_height_in_items: number = typeof(args[1]) === \"number\" ? args[1] : -1;\n const items: string[] = items_separated_by_zeros.replace(/^\\0+|\\0+$/g, \"\").split(\"\\0\");\n const items_count: number = items.length;\n const items_getter = (data: any, idx: number, out_text: [string]): boolean => { out_text[0] = items[idx]; return true; };\n ret = bind.Combo(label, _current_item, items_getter, null, items_count, popup_max_height_in_items);\n } else {\n const items_getter: (data: any, idx: number, out_text: [string]) => boolean = args[0];\n const data: any = args[1];\n const items_count = args[2];\n const popup_max_height_in_items: number = typeof(args[3]) === \"number\" ? args[3] : -1;\n ret = bind.Combo(label, _current_item, items_getter, data, items_count, popup_max_height_in_items);\n }\n if (!Array.isArray(current_item)) { current_item(_current_item[0]); }\n return ret;\n}\n\n// Widgets: Drags (tip: ctrl+click on a drag box to input with keyboard. manually input values aren't clamped, can go off-bounds)\n// For all the Float2/Float3/Float4/Int2/Int3/Int4 versions of every functions, note that a 'float v[X]' function argument is the same as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. You can pass address of your first element out of a contiguous set, e.g. &myvector.x\n// IMGUI_API bool DragFloat(const char* label, float* v, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f); // If v_min >= v_max we have no bound\nexport function DragFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string | null = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.DragFloat(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat2(const char* label, float v[2], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | ImVec2, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.DragFloat2(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.DragFloat3(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat4(const char* label, float v[4], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat4(label: string, v: XYZW | Bind.ImTuple4 | ImVec4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.DragFloat4(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", const char* display_format_max = NULL, float power = 1.0f);\nexport function DragFloatRange2(label: string, v_current_min: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_current_max: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", display_format_max: string | null = null, power: number = 1.0): boolean {\n const _v_current_min = import_Scalar(v_current_min);\n const _v_current_max = import_Scalar(v_current_max);\n const ret = bind.DragFloatRange2(label, _v_current_min, _v_current_max, v_speed, v_min, v_max, display_format, display_format_max, power);\n export_Scalar(_v_current_min, v_current_min);\n export_Scalar(_v_current_max, v_current_max);\n return ret;\n}\n// IMGUI_API bool DragInt(const char* label, int* v, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = \"%d\"); // If v_min >= v_max we have no bound\nexport function DragInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.DragInt(label, _v, v_speed, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt2(const char* label, int v[2], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector2(v);\n const ret = bind.DragInt2(label, _v, v_speed, v_min, v_max, format);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt3(const char* label, int v[3], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector3(v);\n const ret = bind.DragInt3(label, _v, v_speed, v_min, v_max, format);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt4(const char* label, int v[4], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt4(label: string, v: XYZW | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector4(v);\n const ret = bind.DragInt4(label, _v, v_speed, v_min, v_max, format);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = \"%.0f\", const char* display_format_max = NULL);\nexport function DragIntRange2(label: string, v_current_min: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_current_max: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\", format_max: string | null = null): boolean {\n const _v_current_min = import_Scalar(v_current_min);\n const _v_current_max = import_Scalar(v_current_max);\n const ret = bind.DragIntRange2(label, _v_current_min, _v_current_max, v_speed, v_min, v_max, format, format_max);\n export_Scalar(_v_current_min, v_current_min);\n export_Scalar(_v_current_max, v_current_max);\n return ret;\n}\n// IMGUI_API bool DragScalar(const char* label, ImGuiDataType data_type, void* v, float v_speed, const void* v_min = NULL, const void* v_max = NULL, const char* format = NULL, float power = 1.0f);\n// IMGUI_API bool DragScalarN(const char* label, ImGuiDataType data_type, void* v, int components, float v_speed, const void* v_min = NULL, const void* v_max = NULL, const char* format = NULL, float power = 1.0f);\nexport function DragScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, v_speed: number, v_min: number | null = null, v_max: number | null = null, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.DragScalar(label, ImGuiDataType.S8, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.DragScalar(label, ImGuiDataType.U8, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.DragScalar(label, ImGuiDataType.S16, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.DragScalar(label, ImGuiDataType.U16, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.DragScalar(label, ImGuiDataType.S32, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.DragScalar(label, ImGuiDataType.U32, v, v_speed, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.DragScalar(label, ImGuiDataType.S64, v, v_speed, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.DragScalar(label, ImGuiDataType.U64, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.DragScalar(label, ImGuiDataType.Float, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.DragScalar(label, ImGuiDataType.Double, v, v_speed, v_min, v_max, format, power); }\n throw new Error();\n}\n\n// Widgets: Input with Keyboard\n// IMGUI_API bool InputText(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputText(label: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputText(label, buf, buf_size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputText(label, ref_buf, _buf_size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputText(label, ref_buf, buf_size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputTextWithHint(const char* label, const char* hint, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputTextWithHint(label: string, hint: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputTextWithHint(label, hint, buf, buf_size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputTextWithHint(label, hint, ref_buf, _buf_size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputTextWithHint(label, hint, ref_buf, buf_size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputTextMultiline(const char* label, char* buf, size_t buf_size, const ImVec2& size = ImVec2(0,0), ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputTextMultiline(label: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, size: Readonly = ImVec2.ZERO, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputTextMultiline(label, buf, buf_size, size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputTextMultiline(label, ref_buf, _buf_size, size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputTextMultiline(label, ref_buf, buf_size, size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputFloat(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 0.0, step_fast: number = 0.0, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputFloat(label, _v, step, step_fast, format, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat2(const char* label, float v[2], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.InputFloat2(label, _v, format, extra_flags);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat3(const char* label, float v[3], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.InputFloat3(label, _v, format, extra_flags);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat4(const char* label, float v[4], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat4(label: string, v: XYZW | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.InputFloat4(label, _v, format, extra_flags);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt(const char* label, int* v, int step = 1, int step_fast = 100, ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 1, step_fast: number = 100, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputInt(label, _v, step, step_fast, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt2(const char* label, int v[2], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.InputInt2(label, _v, extra_flags);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt3(const char* label, int v[3], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.InputInt3(label, _v, extra_flags);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt4(const char* label, int v[4], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt4(label: string, v: XYZW | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.InputInt4(label, _v, extra_flags);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool InputDouble(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = \"%.6f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputDouble(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 0.0, step_fast: number = 0.0, format: string = \"%.6f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputDouble(label, _v, step, step_fast, format, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputScalar(const char* label, ImGuiDataType data_type, void* v, const void* step = NULL, const void* step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags extra_flags = 0);\n// IMGUI_API bool InputScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* step = NULL, const void* step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags extra_flags = 0);\nexport function InputScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, step: number | null = null, step_fast: number | null = null, format: string | null = null, extra_flags: ImGuiInputTextFlags = 0): boolean {\n if (v instanceof Int8Array) { return bind.InputScalar(label, ImGuiDataType.S8, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint8Array) { return bind.InputScalar(label, ImGuiDataType.U8, v, step, step_fast, format, extra_flags); }\n if (v instanceof Int16Array) { return bind.InputScalar(label, ImGuiDataType.S16, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint16Array) { return bind.InputScalar(label, ImGuiDataType.U16, v, step, step_fast, format, extra_flags); }\n if (v instanceof Int32Array) { return bind.InputScalar(label, ImGuiDataType.S32, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint32Array) { return bind.InputScalar(label, ImGuiDataType.U32, v, step, step_fast, format, extra_flags); }\n // if (v instanceof Int64Array) { return bind.InputScalar(label, ImGuiDataType.S64, v, step, step_fast, format, extra_flags); }\n // if (v instanceof Uint64Array) { return bind.InputScalar(label, ImGuiDataType.U64, v, step, step_fast, format, extra_flags); }\n if (v instanceof Float32Array) { return bind.InputScalar(label, ImGuiDataType.Float, v, step, step_fast, format, extra_flags); }\n if (v instanceof Float64Array) { return bind.InputScalar(label, ImGuiDataType.Double, v, step, step_fast, format, extra_flags); }\n throw new Error();\n}\n\n// Widgets: Sliders (tip: ctrl+click on a slider to input with keyboard. manually input values aren't clamped, can go off-bounds)\n// IMGUI_API bool SliderFloat(const char* label, float* v, float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f); // adjust format to decorate the value with a prefix or a suffix for in-slider labels or unit display. Use power!=1.0 for logarithmic sliders\nexport function SliderFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.SliderFloat(label, _v, v_min, v_max, format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec2, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.SliderFloat2(label, _v, v_min, v_max, format, power);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.SliderFloat3(label, _v, v_min, v_max, format, power);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat4(label: string, v: XYZW | Bind.ImTuple4 | XYZW, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.SliderFloat4(label, _v, v_min, v_max, format, power);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderAngle(const char* label, float* v_rad, float v_degrees_min = -360.0f, float v_degrees_max = +360.0f);\nexport function SliderAngle(label: string, v_rad: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_degrees_min: number = -360.0, v_degrees_max: number = +360.0): boolean {\n const _v_rad = import_Scalar(v_rad);\n const ret = bind.SliderAngle(label, _v_rad, v_degrees_min, v_degrees_max);\n export_Scalar(_v_rad, v_rad);\n return ret;\n}\nexport function SliderAngle3(label: string, v_rad: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_degrees_min: number = -360.0, v_degrees_max: number = +360.0): boolean {\n const _v_rad = import_Vector3(v_rad);\n _v_rad[0] = Math.floor(_v_rad[0] * 180 / Math.PI);\n _v_rad[1] = Math.floor(_v_rad[1] * 180 / Math.PI);\n _v_rad[2] = Math.floor(_v_rad[2] * 180 / Math.PI);\n const ret = bind.SliderInt3(label, _v_rad, v_degrees_min, v_degrees_max, \"%d deg\");\n _v_rad[0] = _v_rad[0] * Math.PI / 180;\n _v_rad[1] = _v_rad[1] * Math.PI / 180;\n _v_rad[2] = _v_rad[2] * Math.PI / 180;\n export_Vector3(_v_rad, v_rad);\n return ret;\n}\n// IMGUI_API bool SliderInt(const char* label, int* v, int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.SliderInt(label, _v, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector2(v);\n const ret = bind.SliderInt2(label, _v, v_min, v_max, format);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt3(const char* label, int v[3], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector3(v);\n const ret = bind.SliderInt3(label, _v, v_min, v_max, format);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt4(const char* label, int v[4], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt4(label: string, v: XYZW | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector4(v);\n const ret = bind.SliderInt4(label, _v, v_min, v_max, format);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderScalar(const char* label, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\n// IMGUI_API bool SliderScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\nexport function SliderScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, v_min: number, v_max: number, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.SliderScalar(label, ImGuiDataType.S8, v, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.SliderScalar(label, ImGuiDataType.U8, v, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.SliderScalar(label, ImGuiDataType.S16, v, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.SliderScalar(label, ImGuiDataType.U16, v, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.SliderScalar(label, ImGuiDataType.S32, v, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.SliderScalar(label, ImGuiDataType.U32, v, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.SliderScalar(label, ImGuiDataType.S64, v, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.SliderScalar(label, ImGuiDataType.U64, v, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.SliderScalar(label, ImGuiDataType.Float, v, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.SliderScalar(label, ImGuiDataType.Double, v, v_min, v_max, format, power); }\n throw new Error();\n}\n// IMGUI_API bool VSliderFloat(const char* label, const ImVec2& size, float* v, float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function VSliderFloat(label: string, size: Readonly, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.VSliderFloat(label, size, _v, v_min, v_max, format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, const char* format = \"%d\");\nexport function VSliderInt(label: string, size: Readonly, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.VSliderInt(label, size, _v, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool VSliderScalar(const char* label, const ImVec2& size, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\nexport function VSliderScalar(label: string, size: Readonly, data_type: ImGuiDataType, v: Bind.ImAccess | Bind.ImScalar, v_min: number, v_max: number, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S8, v, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U8, v, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S16, v, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U16, v, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S32, v, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U32, v, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S64, v, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U64, v, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.Float, v, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.Double, v, v_min, v_max, format, power); }\n throw new Error();\n}\n\n// Widgets: Color Editor/Picker (tip: the ColorEdit* functions have a little colored preview square that can be left-clicked to open a picker, and right-clicked to open an option menu.)\n// Note that a 'float v[X]' function argument is the same as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. You can the pass the address of a first float element out of a contiguous structure, e.g. &myvector.x\n// IMGUI_API bool ColorEdit3(const char* label, float col[3], ImGuiColorEditFlags flags = 0);\nexport function ColorEdit3(label: string, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color3(col);\n const ret = bind.ColorEdit3(label, _col, flags);\n export_Color3(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags = 0);\nexport function ColorEdit4(label: string, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color4(col);\n const ret = bind.ColorEdit4(label, _col, flags);\n export_Color4(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorPicker3(const char* label, float col[3], ImGuiColorEditFlags flags = 0);\nexport function ColorPicker3(label: string, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color3(col);\n const ret = bind.ColorPicker3(label, _col, flags);\n export_Color3(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags flags = 0, const float* ref_col = NULL);\nexport function ColorPicker4(label: string, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0, ref_col: Bind.ImTuple4 | Bind.interface_ImVec4 | null = null): boolean {\n const _col = import_Color4(col);\n const _ref_col = ref_col ? import_Color4(ref_col) : null;\n const ret = bind.ColorPicker4(label, _col, flags, _ref_col);\n export_Color4(_col, col);\n if (_ref_col && ref_col) { export_Color4(_ref_col, ref_col); }\n return ret;\n}\n// IMGUI_API bool ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFlags flags = 0, ImVec2 size = ImVec2(0,0)); // display a colored square/button, hover for details, return true when pressed.\nexport function ColorButton(desc_id: string, col: Readonly, flags: ImGuiColorEditFlags = 0, size: Readonly = ImVec2.ZERO): boolean {\n return bind.ColorButton(desc_id, col, flags, size);\n}\n// IMGUI_API void SetColorEditOptions(ImGuiColorEditFlags flags); // initialize current options (generally on application startup) if you want to select a default format, picker type, etc. User will be able to change many settings, unless you pass the _NoOptions flag to your calls.\nexport function SetColorEditOptions(flags: ImGuiColorEditFlags): void {\n bind.SetColorEditOptions(flags);\n}\n\n// Widgets: Trees\n// IMGUI_API bool TreeNode(const char* label); // if returning 'true' the node is open and the tree id is pushed into the id stack. user is responsible for calling TreePop().\n// IMGUI_API bool TreeNode(const char* str_id, const char* fmt, ...) IM_FMTARGS(2); // read the FAQ about why and how to use ID. to align arbitrary text at the same level as a TreeNode() you can use Bullet().\n// IMGUI_API bool TreeNode(const void* ptr_id, const char* fmt, ...) IM_FMTARGS(2); // \"\n// IMGUI_API bool TreeNodeV(const char* str_id, const char* fmt, va_list args) IM_FMTLIST(2);\n// IMGUI_API bool TreeNodeV(const void* ptr_id, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function TreeNode(label: string): boolean;\nexport function TreeNode(label: string, fmt: string): boolean;\nexport function TreeNode(label: number, fmt: string): boolean;\nexport function TreeNode(...args: any[]): boolean {\n if (typeof(args[0]) === \"string\") {\n if (args.length === 1) {\n const label: string = args[0];\n return bind.TreeNode_A(label);\n } else {\n const str_id: string = args[0];\n const fmt: string = args[1];\n return bind.TreeNode_B(str_id, fmt);\n }\n } else {\n const ptr_id: number = args[0];\n const fmt: string = args[1];\n return bind.TreeNode_C(ptr_id, fmt);\n }\n}\n// IMGUI_API bool TreeNodeEx(const char* label, ImGuiTreeNodeFlags flags = 0);\n// IMGUI_API bool TreeNodeEx(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3);\n// IMGUI_API bool TreeNodeEx(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3);\n// IMGUI_API bool TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3);\n// IMGUI_API bool TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3);\nexport function TreeNodeEx(label: string, flags?: ImGuiTreeNodeFlags): boolean;\nexport function TreeNodeEx(str_id: string, flags: ImGuiTreeNodeFlags, fmt: string): boolean;\nexport function TreeNodeEx(ptr_id: number, flags: ImGuiTreeNodeFlags, fmt: string): boolean;\nexport function TreeNodeEx(...args: any[]): boolean {\n if (typeof(args[0]) === \"string\") {\n if (args.length < 3) {\n const label: string = args[0];\n const flags: ImGuiTreeNodeFlags = args[1] || 0;\n return bind.TreeNodeEx_A(label, flags);\n } else {\n const str_id: string = args[0];\n const flags: ImGuiTreeNodeFlags = args[1];\n const fmt: string = args[2];\n return bind.TreeNodeEx_B(str_id, flags, fmt);\n }\n } else {\n const ptr_id: number = args[0];\n const flags: ImGuiTreeNodeFlags = args[1];\n const fmt: string = args[2];\n return bind.TreeNodeEx_C(ptr_id, flags, fmt);\n }\n}\n// IMGUI_API void TreePush(const char* str_id); // ~ Indent()+PushId(). Already called by TreeNode() when returning true, but you can call Push/Pop yourself for layout purpose\n// IMGUI_API void TreePush(const void* ptr_id = NULL); // \"\nexport function TreePush(str_id: string): void;\nexport function TreePush(ptr_id: number): void;\nexport function TreePush(...args: any[]): void {\n if (typeof(args[0]) === \"string\") {\n const str_id: string = args[0];\n bind.TreePush_A(str_id);\n } else {\n const ptr_id: number = args[0];\n bind.TreePush_B(ptr_id);\n }\n}\n// IMGUI_API void TreePop(); // ~ Unindent()+PopId()\nexport function TreePop(): void { bind.TreePop(); }\n// IMGUI_API void TreeAdvanceToLabelPos(); // advance cursor x position by GetTreeNodeToLabelSpacing()\nexport function TreeAdvanceToLabelPos(): void { bind.TreeAdvanceToLabelPos(); }\n// IMGUI_API float GetTreeNodeToLabelSpacing(); // horizontal distance preceding label when using TreeNode*() or Bullet() == (g.FontSize + style.FramePadding.x*2) for a regular unframed TreeNode\nexport function GetTreeNodeToLabelSpacing(): number { return bind.GetTreeNodeToLabelSpacing(); }\n// IMGUI_API bool CollapsingHeader(const char* label, ImGuiTreeNodeFlags flags = 0); // if returning 'true' the header is open. doesn't indent nor push on ID stack. user doesn't have to call TreePop().\n// IMGUI_API bool CollapsingHeader(const char* label, bool* p_open, ImGuiTreeNodeFlags flags = 0); // when 'p_open' isn't NULL, display an additional small close button on upper right of the header\nexport function CollapsingHeader(label: string, flags?: ImGuiTreeNodeFlags): boolean;\nexport function CollapsingHeader(label: string, p_open: Bind.ImScalar | Bind.ImAccess, flags?: ImGuiTreeNodeFlags): boolean;\nexport function CollapsingHeader(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.CollapsingHeader_A(label, 0);\n } else {\n if (typeof(args[0]) === \"number\") {\n const flags: ImGuiTreeNodeFlags = args[0];\n return bind.CollapsingHeader_A(label, flags);\n } else {\n const p_open: Bind.ImScalar | Bind.ImAccess = args[0];\n const flags: ImGuiTreeNodeFlags = args[1] || 0;\n const ref_open: Bind.ImScalar = Array.isArray(p_open) ? p_open : [ p_open() ];\n const ret = bind.CollapsingHeader_B(label, ref_open, flags);\n if (!Array.isArray(p_open)) { p_open(ref_open[0]); }\n return ret;\n }\n }\n}\n// IMGUI_API void SetNextItemOpen(bool is_open, ImGuiCond cond = 0); // set next TreeNode/CollapsingHeader open state.\nexport function SetNextItemOpen(is_open: boolean, cond: ImGuiCond = 0): void {\n bind.SetNextItemOpen(is_open, cond);\n}\n\n// Widgets: Selectable / Lists\n// IMGUI_API bool Selectable(const char* label, bool selected = false, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0,0)); // size.x==0.0: use remaining width, size.x>0.0: specify width. size.y==0.0: use label height, size.y>0.0: specify height\n// IMGUI_API bool Selectable(const char* label, bool* p_selected, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0,0));\nexport function Selectable(label: string, selected?: boolean, flags?: ImGuiSelectableFlags, size?: Readonly): boolean;\nexport function Selectable(label: string, p_selected: Bind.ImScalar | Bind.ImAccess, flags?: ImGuiSelectableFlags, size?: Readonly): boolean;\nexport function Selectable(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.Selectable_A(label, false, 0, ImVec2.ZERO);\n } else {\n if (typeof(args[0]) === \"boolean\") {\n const selected: boolean = args[0];\n const flags: ImGuiSelectableFlags = args[1] || 0;\n const size: Readonly = args[2] || ImVec2.ZERO;\n return bind.Selectable_A(label, selected, flags, size);\n } else {\n const p_selected: Bind.ImScalar | Bind.ImAccess = args[0];\n const flags: ImGuiSelectableFlags = args[1] || 0;\n const size: Readonly = args[2] || ImVec2.ZERO;\n const ref_selected: Bind.ImScalar = Array.isArray(p_selected) ? p_selected : [ p_selected() ];\n const ret = bind.Selectable_B(label, ref_selected, flags, size);\n if (!Array.isArray(p_selected)) { p_selected(ref_selected[0]); }\n return ret;\n }\n }\n}\n// IMGUI_API bool ListBox(const char* label, int* current_item, const char* const* items, int items_count, int height_in_items = -1);\n// IMGUI_API bool ListBox(const char* label, int* current_item, bool (*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int height_in_items = -1);\nexport type ListBoxItemGetter = (data: any, idx: number, out_text: [string]) => boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items: string[], items_count?: number, height_in_items?: number): boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_getter: ListBoxItemGetter, data: any, items_count: number, height_in_items?: number): boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, ...args: any[]): boolean {\n let ret: boolean = false;\n const _current_item: Bind.ImScalar = Array.isArray(current_item) ? current_item : [ current_item() ];\n if (Array.isArray(args[0])) {\n const items: string[] = args[0];\n const items_count: number = typeof(args[1]) === \"number\" ? args[1] : items.length;\n const height_in_items: number = typeof(args[2]) === \"number\" ? args[2] : -1;\n ret = bind.ListBox_A(label, _current_item, items, items_count, height_in_items);\n } else {\n const items_getter: ListBoxItemGetter = args[0];\n const data: any = args[1];\n const items_count: number = args[2];\n const height_in_items: number = typeof(args[3]) === \"number\" ? args[3] : -1;\n ret = bind.ListBox_B(label, _current_item, items_getter, data, items_count, height_in_items);\n }\n if (!Array.isArray(current_item)) { current_item(_current_item[0]); }\n return ret;\n}\n// IMGUI_API bool ListBoxHeader(const char* label, const ImVec2& size = ImVec2(0,0)); // use if you want to reimplement ListBox() will custom data or interactions. make sure to call ListBoxFooter() afterwards.\n// IMGUI_API bool ListBoxHeader(const char* label, int items_count, int height_in_items = -1); // \"\nexport function ListBoxHeader(label: string, size: Readonly): boolean;\nexport function ListBoxHeader(label: string, items_count: number, height_in_items?: number): boolean;\nexport function ListBoxHeader(label: string, ...args: any[]): boolean {\n if (typeof(args[0]) === \"object\") {\n const size: Readonly = args[0];\n return bind.ListBoxHeader_A(label, size);\n } else {\n const items_count: number = args[0];\n const height_in_items: number = typeof(args[1]) === \"number\" ? args[1] : -1;\n return bind.ListBoxHeader_B(label, items_count, height_in_items);\n }\n}\n// IMGUI_API void ListBoxFooter(); // terminate the scrolling region\nexport function ListBoxFooter(): void {\n bind.ListBoxFooter();\n}\n\n// Widgets: Value() Helpers. Output single value in \"name: value\" format (tip: freely declare more in your code to handle your types. you can add functions to the ImGui namespace)\n// IMGUI_API void Value(const char* prefix, bool b);\n// IMGUI_API void Value(const char* prefix, int v);\n// IMGUI_API void Value(const char* prefix, unsigned int v);\n// IMGUI_API void Value(const char* prefix, float v, const char* float_format = NULL);\nexport function Value(prefix: string, b: boolean): void;\nexport function Value(prefix: string, v: number): void;\nexport function Value(prefix: string, v: number, float_format?: string | null): void;\nexport function Value(prefix: string, v: any): void;\nexport function Value(prefix: string, ...args: any[]): void {\n if (typeof(args[0]) === \"boolean\") {\n bind.Value_A(prefix, args[0]);\n } else if (typeof(args[0]) === \"number\") {\n if (Number.isInteger(args[0])) {\n bind.Value_B(prefix, args[0]);\n } else {\n bind.Value_D(prefix, args[0], typeof(args[1]) === \"string\" ? args[1] : null);\n }\n } else {\n bind.Text(prefix + String(args[0]));\n }\n}\n\n// Tooltips\n// IMGUI_API void BeginTooltip(); // begin/append a tooltip window. to create full-featured tooltip (with any kind of contents).\nexport function BeginTooltip(): void { bind.BeginTooltip(); }\n// IMGUI_API void EndTooltip();\nexport function EndTooltip(): void { bind.EndTooltip(); }\n// IMGUI_API void SetTooltip(const char* fmt, ...) IM_FMTARGS(1); // set text tooltip under mouse-cursor, typically use with ImGui::IsItemHovered(). overidde any previous call to SetTooltip().\n// IMGUI_API void SetTooltipV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function SetTooltip(fmt: string): void {\n bind.SetTooltip(fmt);\n}\n\n// Menus\n// IMGUI_API bool BeginMainMenuBar(); // create and append to a full screen menu-bar. only call EndMainMenuBar() if this returns true!\nexport function BeginMainMenuBar(): boolean { return bind.BeginMainMenuBar(); }\n// IMGUI_API void EndMainMenuBar();\nexport function EndMainMenuBar(): void { bind.EndMainMenuBar(); }\n// IMGUI_API bool BeginMenuBar(); // append to menu-bar of current window (requires ImGuiWindowFlags_MenuBar flag set on parent window). only call EndMenuBar() if this returns true!\nexport function BeginMenuBar(): boolean { return bind.BeginMenuBar(); }\n// IMGUI_API void EndMenuBar();\nexport function EndMenuBar(): void { bind.EndMenuBar(); }\n// IMGUI_API bool BeginMenu(const char* label, bool enabled = true); // create a sub-menu entry. only call EndMenu() if this returns true!\nexport function BeginMenu(label: string, enabled: boolean = true): boolean { return bind.BeginMenu(label, enabled); }\n// IMGUI_API void EndMenu();\nexport function EndMenu(): void { bind.EndMenu(); }\n// IMGUI_API bool MenuItem(const char* label, const char* shortcut = NULL, bool selected = false, bool enabled = true); // return true when activated. shortcuts are displayed for convenience but not processed by ImGui at the moment\n// IMGUI_API bool MenuItem(const char* label, const char* shortcut, bool* p_selected, bool enabled = true); // return true when activated + toggle (*p_selected) if p_selected != NULL\nexport function MenuItem(label: string, shortcut?: string | null, selected?: boolean, enabled?: boolean): boolean;\nexport function MenuItem(label: string, shortcut: string | null, p_selected: Bind.ImScalar | Bind.ImAccess | null, enabled?: boolean): boolean;\nexport function MenuItem(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.MenuItem_A(label, null, false, true);\n } else if (args.length === 1) {\n const shortcut: string | null = args[0];\n return bind.MenuItem_A(label, shortcut, false, true);\n } else {\n const shortcut: string | null = args[0];\n if (typeof(args[1]) === \"boolean\") {\n const selected: boolean = args[1];\n const enabled: boolean = typeof(args[2]) === \"boolean\" ? args[2] : true;\n return bind.MenuItem_A(label, shortcut, selected, enabled);\n } else {\n const p_selected: Bind.ImScalar | Bind.ImAccess = args[1];\n const enabled: boolean = typeof(args[2]) === \"boolean\" ? args[2] : true;\n const ref_selected: Bind.ImScalar = Array.isArray(p_selected) ? p_selected : [ p_selected() ];\n const ret = bind.MenuItem_B(label, shortcut, ref_selected, enabled);\n if (!Array.isArray(p_selected)) { p_selected(ref_selected[0]); }\n return ret;\n }\n }\n}\n\n// Popups\n// IMGUI_API void OpenPopup(const char* str_id); // call to mark popup as open (don't call every frame!). popups are closed when user click outside, or if CloseCurrentPopup() is called within a BeginPopup()/EndPopup() block. By default, Selectable()/MenuItem() are calling CloseCurrentPopup(). Popup identifiers are relative to the current ID-stack (so OpenPopup and BeginPopup needs to be at the same level).\nexport function OpenPopup(str_id: string): void { bind.OpenPopup(str_id); }\n// IMGUI_API bool OpenPopupOnItemClick(const char* str_id = NULL, int mouse_button = 1); // helper to open popup when clicked on last item. return true when just opened.\nexport function OpenPopupOnItemClick(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.OpenPopupOnItemClick(str_id, mouse_button);\n}\n// IMGUI_API bool BeginPopup(const char* str_id); // return true if the popup is open, and you can start outputting to it. only call EndPopup() if BeginPopup() returned true!\nexport function BeginPopup(str_id: string): boolean { return bind.BeginPopup(str_id); }\n// IMGUI_API bool BeginPopupModal(const char* name, bool* p_open = NULL, ImGuiWindowFlags extra_flags = 0); // modal dialog (block interactions behind the modal window, can't close the modal window by clicking outside)\nexport function BeginPopupModal(str_id: string = \"\", p_open: Bind.ImScalar | Bind.ImAccess | null = null, extra_flags: ImGuiWindowFlags = 0): boolean {\n if (Array.isArray(p_open)) {\n return bind.BeginPopupModal(str_id, p_open, extra_flags);\n } else if (typeof(p_open) === \"function\") {\n const _p_open: Bind.ImScalar = [ p_open() ];\n const ret = bind.BeginPopupModal(str_id, _p_open, extra_flags);\n p_open(_p_open[0]);\n return ret;\n } else {\n return bind.BeginPopupModal(str_id, null, extra_flags);\n }\n}\n// IMGUI_API bool BeginPopupContextItem(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked on last item. if you can pass a NULL str_id only if the previous item had an id. If you want to use that on a non-interactive item such as Text() you need to pass in an explicit ID here. read comments in .cpp!\nexport function BeginPopupContextItem(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.BeginPopupContextItem(str_id, mouse_button);\n}\n// IMGUI_API bool BeginPopupContextWindow(const char* str_id = NULL, int mouse_button = 1, bool also_over_items = true); // helper to open and begin popup when clicked on current window.\nexport function BeginPopupContextWindow(str_id: string | null = null, mouse_button: number = 1, also_over_items: boolean = true): boolean {\n return bind.BeginPopupContextWindow(str_id, mouse_button, also_over_items);\n}\n// IMGUI_API bool BeginPopupContextVoid(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked in void (where there are no imgui windows).\nexport function BeginPopupContextVoid(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.BeginPopupContextVoid(str_id, mouse_button);\n}\n// IMGUI_API void EndPopup();\nexport function EndPopup(): void { bind.EndPopup(); }\n// IMGUI_API bool IsPopupOpen(const char* str_id); // return true if the popup is open\nexport function IsPopupOpen(str_id: string): boolean { return bind.IsPopupOpen(str_id); }\n// IMGUI_API void CloseCurrentPopup(); // close the popup we have begin-ed into. clicking on a MenuItem or Selectable automatically close the current popup.\nexport function CloseCurrentPopup(): void { bind.CloseCurrentPopup(); }\n\n// Tab Bars, Tabs\n// [BETA API] API may evolve!\n// IMGUI_API bool BeginTabBar(const char* str_id, ImGuiTabBarFlags flags = 0); // create and append into a TabBar\nexport function BeginTabBar(str_id: string, flags: ImGuiTabBarFlags = 0): boolean { return bind.BeginTabBar(str_id, flags); }\n// IMGUI_API void EndTabBar(); // only call EndTabBar() if BeginTabBar() returns true!\nexport function EndTabBar(): void { bind.EndTabBar(); }\n// IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags flags = 0);// create a Tab. Returns true if the Tab is selected.\nexport function BeginTabItem(label: string, p_open: Bind.ImScalar | Bind.ImAccess | null = null, flags: ImGuiTabItemFlags = 0): boolean {\n // return bind.BeginTabItem(label, p_open, flags);\n if (p_open === null) {\n return bind.BeginTabItem(label, null, flags);\n } else if (Array.isArray(p_open)) {\n return bind.BeginTabItem(label, p_open, flags);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n const ret = bind.BeginTabItem(label, ref_open, flags);\n p_open(ref_open[0]);\n return ret;\n }\n}\n// IMGUI_API void EndTabItem(); // only call EndTabItem() if BeginTabItem() returns true!\nexport function EndTabItem(): void { bind.EndTabItem(); }\n// IMGUI_API void SetTabItemClosed(const char* tab_or_docked_window_label); // notify TabBar or Docking system of a closed tab/window ahead (useful to reduce visual flicker on reorderable tab bars). For tab-bar: call after BeginTabBar() and before Tab submissions. Otherwise call with a window name.\nexport function SetTabItemClosed(tab_or_docked_window_label: string): void { bind.SetTabItemClosed(tab_or_docked_window_label); }\n\n// Logging/Capture: all text output from interface is captured to tty/file/clipboard. By default, tree nodes are automatically opened during logging.\n// IMGUI_API void LogToTTY(int max_depth = -1); // start logging to tty\nexport function LogToTTY(max_depth: number = -1): void {\n bind.LogToTTY(max_depth);\n}\n// IMGUI_API void LogToFile(int max_depth = -1, const char* filename = NULL); // start logging to file\nexport function LogToFile(max_depth: number = -1, filename: string | null = null): void {\n bind.LogToFile(max_depth, filename);\n}\n// IMGUI_API void LogToClipboard(int max_depth = -1); // start logging to OS clipboard\nexport function LogToClipboard(max_depth: number = -1): void {\n bind.LogToClipboard(max_depth);\n}\n// IMGUI_API void LogFinish(); // stop logging (close file, etc.)\nexport function LogFinish(): void { bind.LogFinish(); }\n// IMGUI_API void LogButtons(); // helper to display buttons for logging to tty/file/clipboard\nexport function LogButtons(): void { bind.LogButtons(); }\n// IMGUI_API void LogText(const char* fmt, ...) IM_FMTARGS(1); // pass text data straight to log (without being displayed)\nexport function LogText(fmt: string): void {\n bind.LogText(fmt);\n}\n\nconst _ImGui_DragDropPayload_data: {[key: string]: any} = {};\n// Drag and Drop\n// [BETA API] Missing Demo code. API may evolve.\n// IMGUI_API bool BeginDragDropSource(ImGuiDragDropFlags flags = 0); // call when the current item is active. If this return true, you can call SetDragDropPayload() + EndDragDropSource()\nexport function BeginDragDropSource(flags: ImGuiDragDropFlags = 0): boolean {\n return bind.BeginDragDropSource(flags);\n}\n// IMGUI_API bool SetDragDropPayload(const char* type, const void* data, size_t size, ImGuiCond cond = 0);// type is a user defined string of maximum 8 characters. Strings starting with '_' are reserved for dear imgui internal types. Data is copied and held by imgui.\nexport function SetDragDropPayload(type: string, data: T, cond: ImGuiCond = 0): boolean {\n _ImGui_DragDropPayload_data[type] = data;\n return bind.SetDragDropPayload(type, data, 0, cond);\n}\n// IMGUI_API void EndDragDropSource();\nexport function EndDragDropSource(): void {\n bind.EndDragDropSource();\n}\n// IMGUI_API bool BeginDragDropTarget(); // call after submitting an item that may receive an item. If this returns true, you can call AcceptDragDropPayload() + EndDragDropTarget()\nexport function BeginDragDropTarget(): boolean {\n return bind.BeginDragDropTarget();\n}\n// IMGUI_API const ImGuiPayload* AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags = 0); // accept contents of a given type. If ImGuiDragDropFlags_AcceptBeforeDelivery is set you can peek into the payload before the mouse button is released.\nexport function AcceptDragDropPayload(type: string, flags: ImGuiDragDropFlags = 0): ImGuiPayload | null {\n const data: T = _ImGui_DragDropPayload_data[type];\n return bind.AcceptDragDropPayload(type, flags) ? { Data: data } : null;\n}\n// IMGUI_API void EndDragDropTarget();\nexport function EndDragDropTarget(): void {\n bind.EndDragDropTarget();\n}\n\n// Clipping\n// IMGUI_API void PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect);\nexport function PushClipRect(clip_rect_min: Readonly, clip_rect_max: Readonly, intersect_with_current_clip_rect: boolean): void {\n bind.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect);\n}\n// IMGUI_API void PopClipRect();\nexport function PopClipRect(): void {\n bind.PopClipRect();\n}\n\n// Focus\n// (FIXME: Those functions will be reworked after we merge the navigation branch + have a pass at focusing/tabbing features.)\n// (Prefer using \"SetItemDefaultFocus()\" over \"if (IsWindowAppearing()) SetScrollHere()\" when applicable, to make your code more forward compatible when navigation branch is merged)\n// IMGUI_API void SetItemDefaultFocus(); // make last item the default focused item of a window (WIP navigation branch only). Pleaase use instead of SetScrollHere().\nexport function SetItemDefaultFocus(): void { bind.SetItemDefaultFocus(); }\n// IMGUI_API void SetKeyboardFocusHere(int offset = 0); // focus keyboard on the next widget. Use positive 'offset' to access sub components of a multiple component widget. Use -1 to access previous widget.\nexport function SetKeyboardFocusHere(offset: number = 0): void {\n bind.SetKeyboardFocusHere(offset);\n}\n\n// Utilities\n// IMGUI_API bool IsItemHovered(ImGuiHoveredFlags flags = 0); // is the last item hovered? (and usable, aka not blocked by a popup, etc.). See ImGuiHoveredFlags for more options.\nexport function IsItemHovered(flags: ImGuiHoveredFlags = 0): boolean {\n return bind.IsItemHovered(flags);\n}\n// IMGUI_API bool IsItemActive(); // is the last item active? (e.g. button being held, text field being edited- items that don't interact will always return false)\nexport function IsItemActive(): boolean { return bind.IsItemActive(); }\n// IMGUI_API bool IsItemEdited(); // is the last item active? (e.g. button being held, text field being edited- items that don't interact will always return false)\nexport function IsItemEdited(): boolean { return bind.IsItemEdited(); }\n// IMGUI_API bool IsItemFocused(); // is the last item focused for keyboard/gamepad navigation?\nexport function IsItemFocused(): boolean { return bind.IsItemFocused(); }\n// IMGUI_API bool IsItemClicked(int mouse_button = 0); // is the last item clicked? (e.g. button/node just clicked on)\nexport function IsItemClicked(mouse_button: number = 0): boolean {\n return bind.IsItemClicked(mouse_button);\n}\n// IMGUI_API bool IsItemVisible(); // is the last item visible? (aka not out of sight due to clipping/scrolling.)\nexport function IsItemVisible(): boolean { return bind.IsItemVisible(); }\n// IMGUI_API bool IsItemActivated(); // was the last item just made active (item was previously inactive).\nexport function IsItemActivated(): boolean { return bind.IsItemActivated(); }\n// IMGUI_API bool IsItemDeactivated(); // was the last item just made inactive (item was previously active). Useful for Undo/Redo patterns with widgets that requires continuous editing.\nexport function IsItemDeactivated(): boolean { return bind.IsItemDeactivated(); }\n// IMGUI_API bool IsItemDeactivatedAfterEdit(); // was the last item just made inactive and made a value change when it was active? (e.g. Slider/Drag moved). Useful for Undo/Redo patterns with widgets that requires continuous editing. Note that you may get false positives (some widgets such as Combo()/ListBox()/Selectable() will return true even when clicking an already selected item).\nexport function IsItemDeactivatedAfterEdit(): boolean { return bind.IsItemDeactivatedAfterEdit(); }\n// IMGUI_API bool IsAnyItemHovered();\nexport function IsAnyItemHovered(): boolean { return bind.IsAnyItemHovered(); }\n// IMGUI_API bool IsAnyItemActive();\nexport function IsAnyItemActive(): boolean { return bind.IsAnyItemActive(); }\n// IMGUI_API bool IsAnyItemFocused();\nexport function IsAnyItemFocused(): boolean { return bind.IsAnyItemFocused(); }\n// IMGUI_API ImVec2 GetItemRectMin(); // get bounding rectangle of last item, in screen space\nexport function GetItemRectMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectMin(out);\n}\n// IMGUI_API ImVec2 GetItemRectMax(); // \"\nexport function GetItemRectMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectMax(out);\n}\n// IMGUI_API ImVec2 GetItemRectSize(); // get size of last item, in screen space\nexport function GetItemRectSize(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectSize(out);\n}\n// IMGUI_API void SetItemAllowOverlap(); // allow last item to be overlapped by a subsequent item. sometimes useful with invisible buttons, selectables, etc. to catch unused area.\nexport function SetItemAllowOverlap(): void { bind.SetItemAllowOverlap(); }\n// IMGUI_API bool IsWindowFocused(ImGuiFocusedFlags flags = 0); // is current window focused? or its root/child, depending on flags. see flags for options.\nexport function IsWindowFocused(flags: ImGuiFocusedFlags = 0): boolean {\n return bind.IsWindowFocused(flags);\n}\n// IMGUI_API bool IsWindowHovered(ImGuiHoveredFlags flags = 0); // is current window hovered (and typically: not blocked by a popup/modal)? see flags for options.\nexport function IsWindowHovered(flags: ImGuiHoveredFlags = 0): boolean {\n return bind.IsWindowHovered(flags);\n}\n// IMGUI_API bool IsRectVisible(const ImVec2& size); // test if rectangle (of given size, starting from cursor position) is visible / not clipped.\n// IMGUI_API bool IsRectVisible(const ImVec2& rect_min, const ImVec2& rect_max); // test if rectangle (in screen space) is visible / not clipped. to perform coarse clipping on user's side.\nexport function IsRectVisible(size: Readonly): boolean;\nexport function IsRectVisible(rect_min: Readonly, rect_max: Readonly): boolean;\nexport function IsRectVisible(...args: any[]): boolean {\n if (args.length === 1) {\n const size: Readonly = args[0];\n return bind.IsRectVisible_A(size);\n } else {\n const rect_min: Readonly = args[0];\n const rect_max: Readonly = args[1];\n return bind.IsRectVisible_B(rect_min, rect_max);\n }\n}\n// IMGUI_API float GetTime();\nexport function GetTime(): number { return bind.GetTime(); }\n// IMGUI_API int GetFrameCount();\nexport function GetFrameCount(): number { return bind.GetFrameCount(); }\nexport function GetBackgroundDrawList(): ImDrawList {\n return new ImDrawList(bind.GetBackgroundDrawList());\n}\nexport function GetForegroundDrawList(): ImDrawList {\n return new ImDrawList(bind.GetForegroundDrawList());\n}\n// IMGUI_API ImDrawListSharedData* GetDrawListSharedData();\nexport function GetDrawListSharedData(): ImDrawListSharedData {\n return new ImDrawListSharedData(bind.GetDrawListSharedData());\n}\n// IMGUI_API const char* GetStyleColorName(ImGuiCol idx);\nexport function GetStyleColorName(idx: ImGuiCol): string { return bind.GetStyleColorName(idx); }\n// IMGUI_API ImVec2 CalcTextSize(const char* text, const char* text_end = NULL, bool hide_text_after_double_hash = false, float wrap_width = -1.0f);\nexport function CalcTextSize(text: string, text_end: number | null = null, hide_text_after_double_hash: boolean = false, wrap_width: number = -1, out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.CalcTextSize(text_end !== null ? text.substring(0, text_end) : text, hide_text_after_double_hash, wrap_width, out);\n}\n// IMGUI_API void CalcListClipping(int items_count, float items_height, int* out_items_display_start, int* out_items_display_end); // calculate coarse clipping for large list of evenly sized items. Prefer using the ImGuiListClipper higher-level helper if you can.\nexport function CalcListClipping(items_count: number, items_height: number, out_items_display_start: Bind.ImScalar, out_items_display_end: Bind.ImScalar): void {\n return bind.CalcListClipping(items_count, items_height, out_items_display_start, out_items_display_end);\n}\n\n// IMGUI_API bool BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags extra_flags = 0); // helper to create a child window / scrolling region that looks like a normal widget frame\nexport function BeginChildFrame(id: Bind.ImGuiID, size: Readonly, extra_flags: ImGuiWindowFlags = 0): boolean {\n return bind.BeginChildFrame(id, size, extra_flags);\n}\n// IMGUI_API void EndChildFrame();\nexport function EndChildFrame(): void { bind.EndChildFrame(); }\n\n// IMGUI_API ImVec4 ColorConvertU32ToFloat4(ImU32 in);\nexport function ColorConvertU32ToFloat4(in_: Bind.ImU32, out: Bind.interface_ImVec4 = new ImVec4()): typeof out {\n return bind.ColorConvertU32ToFloat4(in_, out);\n}\n// IMGUI_API ImU32 ColorConvertFloat4ToU32(const ImVec4& in);\nexport function ColorConvertFloat4ToU32(in_: Readonly): Bind.ImU32 {\n return bind.ColorConvertFloat4ToU32(in_);\n}\n// IMGUI_API void ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v);\nexport function ColorConvertRGBtoHSV(r: number, g: number, b: number, out_h: Bind.ImScalar, out_s: Bind.ImScalar, out_v: Bind.ImScalar): void { bind.ColorConvertRGBtoHSV(r, g, b, out_h, out_s, out_v); }\n// IMGUI_API void ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g, float& out_b);\nexport function ColorConvertHSVtoRGB(h: number, s: number, v: number, out_r: Bind.ImScalar, out_g: Bind.ImScalar, out_b: Bind.ImScalar): void { bind.ColorConvertHSVtoRGB(h, s, v, out_r, out_g, out_b); }\n\n// Inputs\n// IMGUI_API int GetKeyIndex(ImGuiKey imgui_key); // map ImGuiKey_* values into user's key index. == io.KeyMap[key]\nexport function GetKeyIndex(imgui_key: ImGuiKey): number {\n return bind.GetKeyIndex(imgui_key);\n}\n// IMGUI_API bool IsKeyDown(int user_key_index); // is key being held. == io.KeysDown[user_key_index]. note that imgui doesn't know the semantic of each entry of io.KeyDown[]. Use your own indices/enums according to how your backend/engine stored them into KeyDown[]!\nexport function IsKeyDown(user_key_index: number): boolean {\n return bind.IsKeyDown(user_key_index);\n}\n// IMGUI_API bool IsKeyPressed(int user_key_index, bool repeat = true); // was key pressed (went from !Down to Down). if repeat=true, uses io.KeyRepeatDelay / KeyRepeatRate\nexport function IsKeyPressed(user_key_index: number, repeat: boolean = true): boolean {\n return bind.IsKeyPressed(user_key_index, repeat);\n}\n// IMGUI_API bool IsKeyReleased(int user_key_index); // was key released (went from Down to !Down)..\nexport function IsKeyReleased(user_key_index: number): boolean {\n return bind.IsKeyReleased(user_key_index);\n}\n// IMGUI_API int GetKeyPressedAmount(int key_index, float repeat_delay, float rate); // uses provided repeat rate/delay. return a count, most often 0 or 1 but might be >1 if RepeatRate is small enough that DeltaTime > RepeatRate\nexport function GetKeyPressedAmount(user_key_index: number, repeat_delay: number, rate: number): number {\n return bind.GetKeyPressedAmount(user_key_index, repeat_delay, rate);\n}\n// IMGUI_API bool IsMouseDown(int button); // is mouse button held\nexport function IsMouseDown(button: number): boolean {\n return bind.IsMouseDown(button);\n}\n// IMGUI_API bool IsMouseClicked(int button, bool repeat = false); // did mouse button clicked (went from !Down to Down)\nexport function IsMouseClicked(button: number, repeat: boolean = false): boolean {\n return bind.IsMouseClicked(button, repeat);\n}\n// IMGUI_API bool IsMouseDoubleClicked(int button); // did mouse button double-clicked. a double-click returns false in IsMouseClicked(). uses io.MouseDoubleClickTime.\nexport function IsMouseDoubleClicked(button: number): boolean {\n return bind.IsMouseDoubleClicked(button);\n}\n// IMGUI_API bool IsMouseReleased(int button); // did mouse button released (went from Down to !Down)\nexport function IsMouseReleased(button: number): boolean {\n return bind.IsMouseReleased(button);\n}\n// IMGUI_API bool IsMouseDragging(int button = 0, float lock_threshold = -1.0f); // is mouse dragging. if lock_threshold < -1.0f uses io.MouseDraggingThreshold\nexport function IsMouseDragging(button: number = 0, lock_threshold: number = -1.0): boolean {\n return bind.IsMouseDragging(button, lock_threshold);\n}\n// IMGUI_API bool IsMouseHoveringRect(const ImVec2& r_min, const ImVec2& r_max, bool clip = true); // is mouse hovering given bounding rect (in screen space). clipped by current clipping settings. disregarding of consideration of focus/window ordering/blocked by a popup.\nexport function IsMouseHoveringRect(r_min: Readonly, r_max: Readonly, clip: boolean = true): boolean {\n return bind.IsMouseHoveringRect(r_min, r_max, clip);\n}\n// IMGUI_API bool IsMousePosValid(const ImVec2* mouse_pos = NULL); //\nexport function IsMousePosValid(mouse_pos: Readonly | null = null): boolean {\n return bind.IsMousePosValid(mouse_pos);\n}\n// IMGUI_API ImVec2 GetMousePos(); // shortcut to ImGui::GetIO().MousePos provided by user, to be consistent with other calls\nexport function GetMousePos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMousePos(out);\n}\n// IMGUI_API ImVec2 GetMousePosOnOpeningCurrentPopup(); // retrieve backup of mouse positioning at the time of opening popup we have BeginPopup() into\nexport function GetMousePosOnOpeningCurrentPopup(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMousePosOnOpeningCurrentPopup(out);\n}\n// IMGUI_API ImVec2 GetMouseDragDelta(int button = 0, float lock_threshold = -1.0f); // dragging amount since clicking. if lock_threshold < -1.0f uses io.MouseDraggingThreshold\nexport function GetMouseDragDelta(button: number = 0, lock_threshold: number = -1.0, out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMouseDragDelta(button, lock_threshold, out);\n}\n// IMGUI_API void ResetMouseDragDelta(int button = 0); //\nexport function ResetMouseDragDelta(button: number = 0): void {\n bind.ResetMouseDragDelta(button);\n}\n// IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you\nexport function GetMouseCursor(): ImGuiMouseCursor { return bind.GetMouseCursor(); }\n// IMGUI_API void SetMouseCursor(ImGuiMouseCursor type); // set desired cursor type\nexport function SetMouseCursor(type: ImGuiMouseCursor): void { bind.SetMouseCursor(type); }\n// IMGUI_API void CaptureKeyboardFromApp(bool capture = true); // manually override io.WantCaptureKeyboard flag next frame (said flag is entirely left for your application handle). e.g. force capture keyboard when your widget is being hovered.\nexport function CaptureKeyboardFromApp(capture: boolean = true) {\n return bind.CaptureKeyboardFromApp(capture);\n}\n// IMGUI_API void CaptureMouseFromApp(bool capture = true); // manually override io.WantCaptureMouse flag next frame (said flag is entirely left for your application handle).\nexport function CaptureMouseFromApp(capture: boolean = true): void {\n bind.CaptureMouseFromApp(capture);\n}\n\n// Clipboard Utilities (also see the LogToClipboard() function to capture or output text data to the clipboard)\n// IMGUI_API const char* GetClipboardText();\nexport function GetClipboardText(): string { return bind.GetClipboardText(); }\n// IMGUI_API void SetClipboardText(const char* text);\nexport function SetClipboardText(text: string): void { bind.SetClipboardText(text); }\n\n// Settings/.Ini Utilities\n// The disk functions are automatically called if io.IniFilename != NULL (default is \"imgui.ini\").\n// Set io.IniFilename to NULL to load/save manually. Read io.WantSaveIniSettings description about handling .ini saving manually.\n// IMGUI_API void LoadIniSettingsFromDisk(const char* ini_filename); // call after CreateContext() and before the first call to NewFrame(). NewFrame() automatically calls LoadIniSettingsFromDisk(io.IniFilename).\nexport function LoadIniSettingsFromDisk(ini_filename: string): void { throw new Error(); } // TODO\n// IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source.\nexport function LoadIniSettingsFromMemory(ini_data: string, ini_size: number = 0): void { bind.LoadIniSettingsFromMemory(ini_data); }\n// IMGUI_API void SaveIniSettingsToDisk(const char* ini_filename);\nexport function SaveIniSettingsToDisk(ini_filename: string): void { throw new Error(); } // TODO\n// IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings.\nexport function SaveIniSettingsToMemory(out_ini_size: Bind.ImScalar | null = null): string { return bind.SaveIniSettingsToMemory(); }\n\n// Memory Utilities\n// All those functions are not reliant on the current context.\n// If you reload the contents of imgui.cpp at runtime, you may need to call SetCurrentContext() + SetAllocatorFunctions() again.\n// IMGUI_API void SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void(*free_func)(void* ptr, void* user_data), void* user_data = NULL);\nexport function SetAllocatorFunctions(alloc_func: (sz: number, user_data: any) => number, free_func: (ptr: number, user_data: any) => void, user_data: any = null): void {\n bind.SetAllocatorFunctions(alloc_func, free_func, user_data);\n}\n// IMGUI_API void* MemAlloc(size_t sz);\nexport function MemAlloc(sz: number): void { bind.MemAlloc(sz); }\n// IMGUI_API void MemFree(void* ptr);\nexport function MemFree(ptr: any): void { bind.MemFree(ptr); }\n","(function(global){\n\n//\n// Check for native Promise and it has correct interface\n//\n\nvar NativePromise = global['Promise'];\nvar nativePromiseSupported =\n NativePromise &&\n // Some of these methods are missing from\n // Firefox/Chrome experimental implementations\n 'resolve' in NativePromise &&\n 'reject' in NativePromise &&\n 'all' in NativePromise &&\n 'race' in NativePromise &&\n // Older version of the spec had a resolver object\n // as the arg rather than a function\n (function(){\n var resolve;\n new NativePromise(function(r){ resolve = r; });\n return typeof resolve === 'function';\n })();\n\n\n//\n// export if necessary\n//\n\nif (typeof exports !== 'undefined' && exports)\n{\n // node.js\n exports.Promise = nativePromiseSupported ? NativePromise : Promise;\n exports.Polyfill = Promise;\n}\nelse\n{\n // AMD\n if (typeof define == 'function' && define.amd)\n {\n define(function(){\n return nativePromiseSupported ? NativePromise : Promise;\n });\n }\n else\n {\n // in browser add to global\n if (!nativePromiseSupported)\n global['Promise'] = Promise;\n }\n}\n\n\n//\n// Polyfill\n//\n\nvar PENDING = 'pending';\nvar SEALED = 'sealed';\nvar FULFILLED = 'fulfilled';\nvar REJECTED = 'rejected';\nvar NOOP = function(){};\n\nfunction isArray(value) {\n return Object.prototype.toString.call(value) === '[object Array]';\n}\n\n// async calls\nvar asyncSetTimer = typeof setImmediate !== 'undefined' ? setImmediate : setTimeout;\nvar asyncQueue = [];\nvar asyncTimer;\n\nfunction asyncFlush(){\n // run promise callbacks\n for (var i = 0; i < asyncQueue.length; i++)\n asyncQueue[i][0](asyncQueue[i][1]);\n\n // reset async asyncQueue\n asyncQueue = [];\n asyncTimer = false;\n}\n\nfunction asyncCall(callback, arg){\n asyncQueue.push([callback, arg]);\n\n if (!asyncTimer)\n {\n asyncTimer = true;\n asyncSetTimer(asyncFlush, 0);\n }\n}\n\n\nfunction invokeResolver(resolver, promise) {\n function resolvePromise(value) {\n resolve(promise, value);\n }\n\n function rejectPromise(reason) {\n reject(promise, reason);\n }\n\n try {\n resolver(resolvePromise, rejectPromise);\n } catch(e) {\n rejectPromise(e);\n }\n}\n\nfunction invokeCallback(subscriber){\n var owner = subscriber.owner;\n var settled = owner.state_;\n var value = owner.data_; \n var callback = subscriber[settled];\n var promise = subscriber.then;\n\n if (typeof callback === 'function')\n {\n settled = FULFILLED;\n try {\n value = callback(value);\n } catch(e) {\n reject(promise, e);\n }\n }\n\n if (!handleThenable(promise, value))\n {\n if (settled === FULFILLED)\n resolve(promise, value);\n\n if (settled === REJECTED)\n reject(promise, value);\n }\n}\n\nfunction handleThenable(promise, value) {\n var resolved;\n\n try {\n if (promise === value)\n throw new TypeError('A promises callback cannot return that same promise.');\n\n if (value && (typeof value === 'function' || typeof value === 'object'))\n {\n var then = value.then; // then should be retrived only once\n\n if (typeof then === 'function')\n {\n then.call(value, function(val){\n if (!resolved)\n {\n resolved = true;\n\n if (value !== val)\n resolve(promise, val);\n else\n fulfill(promise, val);\n }\n }, function(reason){\n if (!resolved)\n {\n resolved = true;\n\n reject(promise, reason);\n }\n });\n\n return true;\n }\n }\n } catch (e) {\n if (!resolved)\n reject(promise, e);\n\n return true;\n }\n\n return false;\n}\n\nfunction resolve(promise, value){\n if (promise === value || !handleThenable(promise, value))\n fulfill(promise, value);\n}\n\nfunction fulfill(promise, value){\n if (promise.state_ === PENDING)\n {\n promise.state_ = SEALED;\n promise.data_ = value;\n\n asyncCall(publishFulfillment, promise);\n }\n}\n\nfunction reject(promise, reason){\n if (promise.state_ === PENDING)\n {\n promise.state_ = SEALED;\n promise.data_ = reason;\n\n asyncCall(publishRejection, promise);\n }\n}\n\nfunction publish(promise) {\n var callbacks = promise.then_;\n promise.then_ = undefined;\n\n for (var i = 0; i < callbacks.length; i++) {\n invokeCallback(callbacks[i]);\n }\n}\n\nfunction publishFulfillment(promise){\n promise.state_ = FULFILLED;\n publish(promise);\n}\n\nfunction publishRejection(promise){\n promise.state_ = REJECTED;\n publish(promise);\n}\n\n/**\n* @class\n*/\nfunction Promise(resolver){\n if (typeof resolver !== 'function')\n throw new TypeError('Promise constructor takes a function argument');\n\n if (this instanceof Promise === false)\n throw new TypeError('Failed to construct \\'Promise\\': Please use the \\'new\\' operator, this object constructor cannot be called as a function.');\n\n this.then_ = [];\n\n invokeResolver(resolver, this);\n}\n\nPromise.prototype = {\n constructor: Promise,\n\n state_: PENDING,\n then_: null,\n data_: undefined,\n\n then: function(onFulfillment, onRejection){\n var subscriber = {\n owner: this,\n then: new this.constructor(NOOP),\n fulfilled: onFulfillment,\n rejected: onRejection\n };\n\n if (this.state_ === FULFILLED || this.state_ === REJECTED)\n {\n // already resolved, call callback async\n asyncCall(invokeCallback, subscriber);\n }\n else\n {\n // subscribe\n this.then_.push(subscriber);\n }\n\n return subscriber.then;\n },\n\n 'catch': function(onRejection) {\n return this.then(null, onRejection);\n }\n};\n\nPromise.all = function(promises){\n var Class = this;\n\n if (!isArray(promises))\n throw new TypeError('You must pass an array to Promise.all().');\n\n return new Class(function(resolve, reject){\n var results = [];\n var remaining = 0;\n\n function resolver(index){\n remaining++;\n return function(value){\n results[index] = value;\n if (!--remaining)\n resolve(results);\n };\n }\n\n for (var i = 0, promise; i < promises.length; i++)\n {\n promise = promises[i];\n\n if (promise && typeof promise.then === 'function')\n promise.then(resolver(i), reject);\n else\n results[i] = promise;\n }\n\n if (!remaining)\n resolve(results);\n });\n};\n\nPromise.race = function(promises){\n var Class = this;\n\n if (!isArray(promises))\n throw new TypeError('You must pass an array to Promise.race().');\n\n return new Class(function(resolve, reject) {\n for (var i = 0, promise; i < promises.length; i++)\n {\n promise = promises[i];\n\n if (promise && typeof promise.then === 'function')\n promise.then(resolve, reject);\n else\n resolve(promise);\n }\n });\n};\n\nPromise.resolve = function(value){\n var Class = this;\n\n if (value && typeof value === 'object' && value.constructor === Class)\n return value;\n\n return new Class(function(resolve){\n resolve(value);\n });\n};\n\nPromise.reject = function(reason){\n var Class = this;\n\n return new Class(function(resolve, reject){\n reject(reason);\n });\n};\n\n})(typeof window != 'undefined' ? window : typeof global != 'undefined' ? global : typeof self != 'undefined' ? self : this);\n","/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\n\n'use strict';\n/* eslint-disable no-unused-vars */\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\n\nfunction toObject(val) {\n\tif (val === null || val === undefined) {\n\t\tthrow new TypeError('Object.assign cannot be called with null or undefined');\n\t}\n\n\treturn Object(val);\n}\n\nfunction shouldUseNative() {\n\ttry {\n\t\tif (!Object.assign) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Detect buggy property enumeration order in older V8 versions.\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=4118\n\t\tvar test1 = new String('abc'); // eslint-disable-line no-new-wrappers\n\t\ttest1[5] = 'de';\n\t\tif (Object.getOwnPropertyNames(test1)[0] === '5') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test2 = {};\n\t\tfor (var i = 0; i < 10; i++) {\n\t\t\ttest2['_' + String.fromCharCode(i)] = i;\n\t\t}\n\t\tvar order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n\t\t\treturn test2[n];\n\t\t});\n\t\tif (order2.join('') !== '0123456789') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test3 = {};\n\t\t'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n\t\t\ttest3[letter] = letter;\n\t\t});\n\t\tif (Object.keys(Object.assign({}, test3)).join('') !==\n\t\t\t\t'abcdefghijklmnopqrst') {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t} catch (err) {\n\t\t// We don't expect any of the above to throw, but better to be safe.\n\t\treturn false;\n\t}\n}\n\nmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n\tvar from;\n\tvar to = toObject(target);\n\tvar symbols;\n\n\tfor (var s = 1; s < arguments.length; s++) {\n\t\tfrom = Object(arguments[s]);\n\n\t\tfor (var key in from) {\n\t\t\tif (hasOwnProperty.call(from, key)) {\n\t\t\t\tto[key] = from[key];\n\t\t\t}\n\t\t}\n\n\t\tif (getOwnPropertySymbols) {\n\t\t\tsymbols = getOwnPropertySymbols(from);\n\t\t\tfor (var i = 0; i < symbols.length; i++) {\n\t\t\t\tif (propIsEnumerable.call(from, symbols[i])) {\n\t\t\t\t\tto[symbols[i]] = from[symbols[i]];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn to;\n};\n","/*!\n * @pixi/polyfill - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/polyfill is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Polyfill } from 'es6-promise-polyfill';\nimport objectAssign from 'object-assign';\n\n// Support for IE 9 - 11 which does not include Promises\nif (!window.Promise)\n{\n window.Promise = Polyfill;\n}\n\n// References:\n\nif (!Object.assign)\n{\n Object.assign = objectAssign;\n}\n\nvar commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\n// References:\n// http://paulirish.com/2011/requestanimationframe-for-smart-animating/\n// https://gist.github.com/1579671\n// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision\n// https://gist.github.com/timhall/4078614\n// https://github.com/Financial-Times/polyfill-service/tree/master/polyfills/requestAnimationFrame\n\n// Expected to be used with Browserfiy\n// Browserify automatically detects the use of `global` and passes the\n// correct reference of `global`, `self`, and finally `window`\n\nvar ONE_FRAME_TIME = 16;\n\n// Date.now\nif (!(Date.now && Date.prototype.getTime))\n{\n Date.now = function now()\n {\n return new Date().getTime();\n };\n}\n\n// performance.now\nif (!(commonjsGlobal.performance && commonjsGlobal.performance.now))\n{\n var startTime = Date.now();\n\n if (!commonjsGlobal.performance)\n {\n commonjsGlobal.performance = {};\n }\n\n commonjsGlobal.performance.now = function () { return Date.now() - startTime; };\n}\n\n// requestAnimationFrame\nvar lastTime = Date.now();\nvar vendors = ['ms', 'moz', 'webkit', 'o'];\n\nfor (var x = 0; x < vendors.length && !commonjsGlobal.requestAnimationFrame; ++x)\n{\n var p = vendors[x];\n\n commonjsGlobal.requestAnimationFrame = commonjsGlobal[(p + \"RequestAnimationFrame\")];\n commonjsGlobal.cancelAnimationFrame = commonjsGlobal[(p + \"CancelAnimationFrame\")] || commonjsGlobal[(p + \"CancelRequestAnimationFrame\")];\n}\n\nif (!commonjsGlobal.requestAnimationFrame)\n{\n commonjsGlobal.requestAnimationFrame = function (callback) {\n if (typeof callback !== 'function')\n {\n throw new TypeError((callback + \"is not a function\"));\n }\n\n var currentTime = Date.now();\n var delay = ONE_FRAME_TIME + lastTime - currentTime;\n\n if (delay < 0)\n {\n delay = 0;\n }\n\n lastTime = currentTime;\n\n return setTimeout(function () {\n lastTime = Date.now();\n callback(performance.now());\n }, delay);\n };\n}\n\nif (!commonjsGlobal.cancelAnimationFrame)\n{\n commonjsGlobal.cancelAnimationFrame = function (id) { return clearTimeout(id); };\n}\n\n// References:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign\n\nif (!Math.sign)\n{\n Math.sign = function mathSign(x)\n {\n x = Number(x);\n\n if (x === 0 || isNaN(x))\n {\n return x;\n }\n\n return x > 0 ? 1 : -1;\n };\n}\n\n// References:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger\n\nif (!Number.isInteger)\n{\n Number.isInteger = function numberIsInteger(value)\n {\n return typeof value === 'number' && isFinite(value) && Math.floor(value) === value;\n };\n}\n\nif (!window.ArrayBuffer)\n{\n window.ArrayBuffer = Array;\n}\n\nif (!window.Float32Array)\n{\n window.Float32Array = Array;\n}\n\nif (!window.Uint32Array)\n{\n window.Uint32Array = Array;\n}\n\nif (!window.Uint16Array)\n{\n window.Uint16Array = Array;\n}\n\nif (!window.Uint8Array)\n{\n window.Uint8Array = Array;\n}\n\nif (!window.Int32Array)\n{\n window.Int32Array = Array;\n}\n//# sourceMappingURL=polyfill.es.js.map\n","(function(global) {\n var apple_phone = /iPhone/i,\n apple_ipod = /iPod/i,\n apple_tablet = /iPad/i,\n android_phone = /\\bAndroid(?:.+)Mobile\\b/i, // Match 'Android' AND 'Mobile'\n android_tablet = /Android/i,\n amazon_phone = /\\bAndroid(?:.+)SD4930UR\\b/i,\n amazon_tablet = /\\bAndroid(?:.+)(?:KF[A-Z]{2,4})\\b/i,\n windows_phone = /Windows Phone/i,\n windows_tablet = /\\bWindows(?:.+)ARM\\b/i, // Match 'Windows' AND 'ARM'\n other_blackberry = /BlackBerry/i,\n other_blackberry_10 = /BB10/i,\n other_opera = /Opera Mini/i,\n other_chrome = /\\b(CriOS|Chrome)(?:.+)Mobile/i,\n other_firefox = /Mobile(?:.+)Firefox\\b/i; // Match 'Mobile' AND 'Firefox'\n\n function match(regex, userAgent) {\n return regex.test(userAgent);\n }\n\n function isMobile(userAgent) {\n var ua =\n userAgent ||\n (typeof navigator !== 'undefined' ? navigator.userAgent : '');\n\n // Facebook mobile app's integrated browser adds a bunch of strings that\n // match everything. Strip it out if it exists.\n var tmp = ua.split('[FBAN');\n if (typeof tmp[1] !== 'undefined') {\n ua = tmp[0];\n }\n\n // Twitter mobile app's integrated browser on iPad adds a \"Twitter for\n // iPhone\" string. Same probably happens on other tablet platforms.\n // This will confuse detection so strip it out if it exists.\n tmp = ua.split('Twitter');\n if (typeof tmp[1] !== 'undefined') {\n ua = tmp[0];\n }\n\n var result = {\n apple: {\n phone: match(apple_phone, ua) && !match(windows_phone, ua),\n ipod: match(apple_ipod, ua),\n tablet:\n !match(apple_phone, ua) &&\n match(apple_tablet, ua) &&\n !match(windows_phone, ua),\n device:\n (match(apple_phone, ua) ||\n match(apple_ipod, ua) ||\n match(apple_tablet, ua)) &&\n !match(windows_phone, ua)\n },\n amazon: {\n phone: match(amazon_phone, ua),\n tablet: !match(amazon_phone, ua) && match(amazon_tablet, ua),\n device: match(amazon_phone, ua) || match(amazon_tablet, ua)\n },\n android: {\n phone:\n (!match(windows_phone, ua) && match(amazon_phone, ua)) ||\n (!match(windows_phone, ua) && match(android_phone, ua)),\n tablet:\n !match(windows_phone, ua) &&\n !match(amazon_phone, ua) &&\n !match(android_phone, ua) &&\n (match(amazon_tablet, ua) || match(android_tablet, ua)),\n device:\n (!match(windows_phone, ua) &&\n (match(amazon_phone, ua) ||\n match(amazon_tablet, ua) ||\n match(android_phone, ua) ||\n match(android_tablet, ua))) ||\n match(/\\bokhttp\\b/i, ua)\n },\n windows: {\n phone: match(windows_phone, ua),\n tablet: match(windows_tablet, ua),\n device: match(windows_phone, ua) || match(windows_tablet, ua)\n },\n other: {\n blackberry: match(other_blackberry, ua),\n blackberry10: match(other_blackberry_10, ua),\n opera: match(other_opera, ua),\n firefox: match(other_firefox, ua),\n chrome: match(other_chrome, ua),\n device:\n match(other_blackberry, ua) ||\n match(other_blackberry_10, ua) ||\n match(other_opera, ua) ||\n match(other_firefox, ua) ||\n match(other_chrome, ua)\n }\n };\n (result.any =\n result.apple.device ||\n result.android.device ||\n result.windows.device ||\n result.other.device),\n // excludes 'other' devices and ipods, targeting touchscreen phones\n (result.phone =\n result.apple.phone || result.android.phone || result.windows.phone),\n (result.tablet =\n result.apple.tablet || result.android.tablet || result.windows.tablet);\n\n return result;\n }\n\n if (\n typeof module !== 'undefined' &&\n module.exports &&\n typeof window === 'undefined'\n ) {\n // Node.js\n module.exports = isMobile;\n } else if (\n typeof module !== 'undefined' &&\n module.exports &&\n typeof window !== 'undefined'\n ) {\n // Browserify\n module.exports = isMobile();\n module.exports.isMobile = isMobile;\n } else if (typeof define === 'function' && define.amd) {\n // AMD\n define([], (global.isMobile = isMobile()));\n } else {\n global.isMobile = isMobile();\n }\n})(this);\n","/*!\n * @pixi/settings - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/settings is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport isMobile from 'ismobilejs';\nexport { default as isMobile } from 'ismobilejs';\n\n/**\n * The maximum recommended texture units to use.\n * In theory the bigger the better, and for desktop we'll use as many as we can.\n * But some mobile devices slow down if there is to many branches in the shader.\n * So in practice there seems to be a sweet spot size that varies depending on the device.\n *\n * In v4, all mobile devices were limited to 4 texture units because for this.\n * In v5, we allow all texture units to be used on modern Apple or Android devices.\n *\n * @private\n * @param {number} max\n * @returns {number}\n */\nfunction maxRecommendedTextures(max)\n{\n var allowMax = true;\n\n if (isMobile.tablet || isMobile.phone)\n {\n allowMax = false;\n\n if (isMobile.apple.device)\n {\n var match = (navigator.userAgent).match(/OS (\\d+)_(\\d+)?/);\n\n if (match)\n {\n var majorVersion = parseInt(match[1], 10);\n\n // All texture units can be used on devices that support ios 11 or above\n if (majorVersion >= 11)\n {\n allowMax = true;\n }\n }\n }\n if (isMobile.android.device)\n {\n var match$1 = (navigator.userAgent).match(/Android\\s([0-9.]*)/);\n\n if (match$1)\n {\n var majorVersion$1 = parseInt(match$1[1], 10);\n\n // All texture units can be used on devices that support Android 7 (Nougat) or above\n if (majorVersion$1 >= 7)\n {\n allowMax = true;\n }\n }\n }\n }\n\n return allowMax ? max : 4;\n}\n\n/**\n * Uploading the same buffer multiple times in a single frame can cause performance issues.\n * Apparent on iOS so only check for that at the moment\n * This check may become more complex if this issue pops up elsewhere.\n *\n * @private\n * @returns {boolean}\n */\nfunction canUploadSameBuffer()\n{\n return !isMobile.apple.device;\n}\n\n/**\n * User's customizable globals for overriding the default PIXI settings, such\n * as a renderer's default resolution, framerate, float precision, etc.\n * @example\n * // Use the native window resolution as the default resolution\n * // will support high-density displays when rendering\n * PIXI.settings.RESOLUTION = window.devicePixelRatio;\n *\n * // Disable interpolation when scaling, will make texture be pixelated\n * PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST;\n * @namespace PIXI.settings\n */\nvar settings = {\n\n /**\n * If set to true WebGL will attempt make textures mimpaped by default.\n * Mipmapping will only succeed if the base texture uploaded has power of two dimensions.\n *\n * @static\n * @name MIPMAP_TEXTURES\n * @memberof PIXI.settings\n * @type {PIXI.MIPMAP_MODES}\n * @default PIXI.MIPMAP_MODES.POW2\n */\n MIPMAP_TEXTURES: 1,\n\n /**\n * Default anisotropic filtering level of textures.\n * Usually from 0 to 16\n *\n * @static\n * @name ANISOTROPIC_LEVEL\n * @memberof PIXI.settings\n * @type {number}\n * @default 0\n */\n ANISOTROPIC_LEVEL: 0,\n\n /**\n * Default resolution / device pixel ratio of the renderer.\n *\n * @static\n * @name RESOLUTION\n * @memberof PIXI.settings\n * @type {number}\n * @default 1\n */\n RESOLUTION: 1,\n\n /**\n * Default filter resolution.\n *\n * @static\n * @name FILTER_RESOLUTION\n * @memberof PIXI.settings\n * @type {number}\n * @default 1\n */\n FILTER_RESOLUTION: 1,\n\n /**\n * The maximum textures that this device supports.\n *\n * @static\n * @name SPRITE_MAX_TEXTURES\n * @memberof PIXI.settings\n * @type {number}\n * @default 32\n */\n SPRITE_MAX_TEXTURES: maxRecommendedTextures(32),\n\n // TODO: maybe change to SPRITE.BATCH_SIZE: 2000\n // TODO: maybe add PARTICLE.BATCH_SIZE: 15000\n\n /**\n * The default sprite batch size.\n *\n * The default aims to balance desktop and mobile devices.\n *\n * @static\n * @name SPRITE_BATCH_SIZE\n * @memberof PIXI.settings\n * @type {number}\n * @default 4096\n */\n SPRITE_BATCH_SIZE: 4096,\n\n /**\n * The default render options if none are supplied to {@link PIXI.Renderer}\n * or {@link PIXI.CanvasRenderer}.\n *\n * @static\n * @name RENDER_OPTIONS\n * @memberof PIXI.settings\n * @type {object}\n * @property {HTMLCanvasElement} view=null\n * @property {number} resolution=1\n * @property {boolean} antialias=false\n * @property {boolean} forceFXAA=false\n * @property {boolean} autoDensity=false\n * @property {boolean} transparent=false\n * @property {number} backgroundColor=0x000000\n * @property {boolean} clearBeforeRender=true\n * @property {boolean} preserveDrawingBuffer=false\n * @property {number} width=800\n * @property {number} height=600\n * @property {boolean} legacy=false\n */\n RENDER_OPTIONS: {\n view: null,\n antialias: false,\n forceFXAA: false,\n autoDensity: false,\n transparent: false,\n backgroundColor: 0x000000,\n clearBeforeRender: true,\n preserveDrawingBuffer: false,\n width: 800,\n height: 600,\n legacy: false,\n },\n\n /**\n * Default Garbage Collection mode.\n *\n * @static\n * @name GC_MODE\n * @memberof PIXI.settings\n * @type {PIXI.GC_MODES}\n * @default PIXI.GC_MODES.AUTO\n */\n GC_MODE: 0,\n\n /**\n * Default Garbage Collection max idle.\n *\n * @static\n * @name GC_MAX_IDLE\n * @memberof PIXI.settings\n * @type {number}\n * @default 3600\n */\n GC_MAX_IDLE: 60 * 60,\n\n /**\n * Default Garbage Collection maximum check count.\n *\n * @static\n * @name GC_MAX_CHECK_COUNT\n * @memberof PIXI.settings\n * @type {number}\n * @default 600\n */\n GC_MAX_CHECK_COUNT: 60 * 10,\n\n /**\n * Default wrap modes that are supported by pixi.\n *\n * @static\n * @name WRAP_MODE\n * @memberof PIXI.settings\n * @type {PIXI.WRAP_MODES}\n * @default PIXI.WRAP_MODES.CLAMP\n */\n WRAP_MODE: 33071,\n\n /**\n * Default scale mode for textures.\n *\n * @static\n * @name SCALE_MODE\n * @memberof PIXI.settings\n * @type {PIXI.SCALE_MODES}\n * @default PIXI.SCALE_MODES.LINEAR\n */\n SCALE_MODE: 1,\n\n /**\n * Default specify float precision in vertex shader.\n *\n * @static\n * @name PRECISION_VERTEX\n * @memberof PIXI.settings\n * @type {PIXI.PRECISION}\n * @default PIXI.PRECISION.HIGH\n */\n PRECISION_VERTEX: 'highp',\n\n /**\n * Default specify float precision in fragment shader.\n * iOS is best set at highp due to https://github.com/pixijs/pixi.js/issues/3742\n *\n * @static\n * @name PRECISION_FRAGMENT\n * @memberof PIXI.settings\n * @type {PIXI.PRECISION}\n * @default PIXI.PRECISION.MEDIUM\n */\n PRECISION_FRAGMENT: isMobile.apple.device ? 'highp' : 'mediump',\n\n /**\n * Can we upload the same buffer in a single frame?\n *\n * @static\n * @name CAN_UPLOAD_SAME_BUFFER\n * @memberof PIXI.settings\n * @type {boolean}\n */\n CAN_UPLOAD_SAME_BUFFER: canUploadSameBuffer(),\n\n /**\n * Enables bitmap creation before image load. This feature is experimental.\n *\n * @static\n * @name CREATE_IMAGE_BITMAP\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\n CREATE_IMAGE_BITMAP: false,\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n *\n * @static\n * @constant\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\n ROUND_PIXELS: false,\n};\n\nexport { settings };\n//# sourceMappingURL=settings.es.js.map\n","'use strict';\n\nvar has = Object.prototype.hasOwnProperty\n , prefix = '~';\n\n/**\n * Constructor to create a storage for our `EE` objects.\n * An `Events` instance is a plain object whose properties are event names.\n *\n * @constructor\n * @private\n */\nfunction Events() {}\n\n//\n// We try to not inherit from `Object.prototype`. In some engines creating an\n// instance in this way is faster than calling `Object.create(null)` directly.\n// If `Object.create(null)` is not supported we prefix the event names with a\n// character to make sure that the built-in object properties are not\n// overridden or used as an attack vector.\n//\nif (Object.create) {\n Events.prototype = Object.create(null);\n\n //\n // This hack is needed because the `__proto__` property is still inherited in\n // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5.\n //\n if (!new Events().__proto__) prefix = false;\n}\n\n/**\n * Representation of a single event listener.\n *\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} [once=false] Specify if the listener is a one-time listener.\n * @constructor\n * @private\n */\nfunction EE(fn, context, once) {\n this.fn = fn;\n this.context = context;\n this.once = once || false;\n}\n\n/**\n * Add a listener for a given event.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} once Specify if the listener is a one-time listener.\n * @returns {EventEmitter}\n * @private\n */\nfunction addListener(emitter, event, fn, context, once) {\n if (typeof fn !== 'function') {\n throw new TypeError('The listener must be a function');\n }\n\n var listener = new EE(fn, context || emitter, once)\n , evt = prefix ? prefix + event : event;\n\n if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;\n else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);\n else emitter._events[evt] = [emitter._events[evt], listener];\n\n return emitter;\n}\n\n/**\n * Clear event by name.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} evt The Event name.\n * @private\n */\nfunction clearEvent(emitter, evt) {\n if (--emitter._eventsCount === 0) emitter._events = new Events();\n else delete emitter._events[evt];\n}\n\n/**\n * Minimal `EventEmitter` interface that is molded against the Node.js\n * `EventEmitter` interface.\n *\n * @constructor\n * @public\n */\nfunction EventEmitter() {\n this._events = new Events();\n this._eventsCount = 0;\n}\n\n/**\n * Return an array listing the events for which the emitter has registered\n * listeners.\n *\n * @returns {Array}\n * @public\n */\nEventEmitter.prototype.eventNames = function eventNames() {\n var names = []\n , events\n , name;\n\n if (this._eventsCount === 0) return names;\n\n for (name in (events = this._events)) {\n if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);\n }\n\n if (Object.getOwnPropertySymbols) {\n return names.concat(Object.getOwnPropertySymbols(events));\n }\n\n return names;\n};\n\n/**\n * Return the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Array} The registered listeners.\n * @public\n */\nEventEmitter.prototype.listeners = function listeners(event) {\n var evt = prefix ? prefix + event : event\n , handlers = this._events[evt];\n\n if (!handlers) return [];\n if (handlers.fn) return [handlers.fn];\n\n for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) {\n ee[i] = handlers[i].fn;\n }\n\n return ee;\n};\n\n/**\n * Return the number of listeners listening to a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Number} The number of listeners.\n * @public\n */\nEventEmitter.prototype.listenerCount = function listenerCount(event) {\n var evt = prefix ? prefix + event : event\n , listeners = this._events[evt];\n\n if (!listeners) return 0;\n if (listeners.fn) return 1;\n return listeners.length;\n};\n\n/**\n * Calls each of the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Boolean} `true` if the event had listeners, else `false`.\n * @public\n */\nEventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return false;\n\n var listeners = this._events[evt]\n , len = arguments.length\n , args\n , i;\n\n if (listeners.fn) {\n if (listeners.once) this.removeListener(event, listeners.fn, undefined, true);\n\n switch (len) {\n case 1: return listeners.fn.call(listeners.context), true;\n case 2: return listeners.fn.call(listeners.context, a1), true;\n case 3: return listeners.fn.call(listeners.context, a1, a2), true;\n case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true;\n case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;\n case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;\n }\n\n for (i = 1, args = new Array(len -1); i < len; i++) {\n args[i - 1] = arguments[i];\n }\n\n listeners.fn.apply(listeners.context, args);\n } else {\n var length = listeners.length\n , j;\n\n for (i = 0; i < length; i++) {\n if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true);\n\n switch (len) {\n case 1: listeners[i].fn.call(listeners[i].context); break;\n case 2: listeners[i].fn.call(listeners[i].context, a1); break;\n case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break;\n case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break;\n default:\n if (!args) for (j = 1, args = new Array(len -1); j < len; j++) {\n args[j - 1] = arguments[j];\n }\n\n listeners[i].fn.apply(listeners[i].context, args);\n }\n }\n }\n\n return true;\n};\n\n/**\n * Add a listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.on = function on(event, fn, context) {\n return addListener(this, event, fn, context, false);\n};\n\n/**\n * Add a one-time listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.once = function once(event, fn, context) {\n return addListener(this, event, fn, context, true);\n};\n\n/**\n * Remove the listeners of a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn Only remove the listeners that match this function.\n * @param {*} context Only remove the listeners that have this context.\n * @param {Boolean} once Only remove one-time listeners.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return this;\n if (!fn) {\n clearEvent(this, evt);\n return this;\n }\n\n var listeners = this._events[evt];\n\n if (listeners.fn) {\n if (\n listeners.fn === fn &&\n (!once || listeners.once) &&\n (!context || listeners.context === context)\n ) {\n clearEvent(this, evt);\n }\n } else {\n for (var i = 0, events = [], length = listeners.length; i < length; i++) {\n if (\n listeners[i].fn !== fn ||\n (once && !listeners[i].once) ||\n (context && listeners[i].context !== context)\n ) {\n events.push(listeners[i]);\n }\n }\n\n //\n // Reset the array, or remove it completely if we have no more listeners.\n //\n if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;\n else clearEvent(this, evt);\n }\n\n return this;\n};\n\n/**\n * Remove all listeners, or those of the specified event.\n *\n * @param {(String|Symbol)} [event] The event name.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {\n var evt;\n\n if (event) {\n evt = prefix ? prefix + event : event;\n if (this._events[evt]) clearEvent(this, evt);\n } else {\n this._events = new Events();\n this._eventsCount = 0;\n }\n\n return this;\n};\n\n//\n// Alias methods names because people roll like that.\n//\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\nEventEmitter.prototype.addListener = EventEmitter.prototype.on;\n\n//\n// Expose the prefix.\n//\nEventEmitter.prefixed = prefix;\n\n//\n// Allow `EventEmitter` to be imported as module namespace.\n//\nEventEmitter.EventEmitter = EventEmitter;\n\n//\n// Expose the module.\n//\nif ('undefined' !== typeof module) {\n module.exports = EventEmitter;\n}\n","'use strict';\n\nmodule.exports = earcut;\nmodule.exports.default = earcut;\n\nfunction earcut(data, holeIndices, dim) {\n\n dim = dim || 2;\n\n var hasHoles = holeIndices && holeIndices.length,\n outerLen = hasHoles ? holeIndices[0] * dim : data.length,\n outerNode = linkedList(data, 0, outerLen, dim, true),\n triangles = [];\n\n if (!outerNode || outerNode.next === outerNode.prev) return triangles;\n\n var minX, minY, maxX, maxY, x, y, invSize;\n\n if (hasHoles) outerNode = eliminateHoles(data, holeIndices, outerNode, dim);\n\n // if the shape is not too simple, we'll use z-order curve hash later; calculate polygon bbox\n if (data.length > 80 * dim) {\n minX = maxX = data[0];\n minY = maxY = data[1];\n\n for (var i = dim; i < outerLen; i += dim) {\n x = data[i];\n y = data[i + 1];\n if (x < minX) minX = x;\n if (y < minY) minY = y;\n if (x > maxX) maxX = x;\n if (y > maxY) maxY = y;\n }\n\n // minX, minY and invSize are later used to transform coords into integers for z-order calculation\n invSize = Math.max(maxX - minX, maxY - minY);\n invSize = invSize !== 0 ? 1 / invSize : 0;\n }\n\n earcutLinked(outerNode, triangles, dim, minX, minY, invSize);\n\n return triangles;\n}\n\n// create a circular doubly linked list from polygon points in the specified winding order\nfunction linkedList(data, start, end, dim, clockwise) {\n var i, last;\n\n if (clockwise === (signedArea(data, start, end, dim) > 0)) {\n for (i = start; i < end; i += dim) last = insertNode(i, data[i], data[i + 1], last);\n } else {\n for (i = end - dim; i >= start; i -= dim) last = insertNode(i, data[i], data[i + 1], last);\n }\n\n if (last && equals(last, last.next)) {\n removeNode(last);\n last = last.next;\n }\n\n return last;\n}\n\n// eliminate colinear or duplicate points\nfunction filterPoints(start, end) {\n if (!start) return start;\n if (!end) end = start;\n\n var p = start,\n again;\n do {\n again = false;\n\n if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) {\n removeNode(p);\n p = end = p.prev;\n if (p === p.next) break;\n again = true;\n\n } else {\n p = p.next;\n }\n } while (again || p !== end);\n\n return end;\n}\n\n// main ear slicing loop which triangulates a polygon (given as a linked list)\nfunction earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) {\n if (!ear) return;\n\n // interlink polygon nodes in z-order\n if (!pass && invSize) indexCurve(ear, minX, minY, invSize);\n\n var stop = ear,\n prev, next;\n\n // iterate through ears, slicing them one by one\n while (ear.prev !== ear.next) {\n prev = ear.prev;\n next = ear.next;\n\n if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) {\n // cut off the triangle\n triangles.push(prev.i / dim);\n triangles.push(ear.i / dim);\n triangles.push(next.i / dim);\n\n removeNode(ear);\n\n // skipping the next vertex leads to less sliver triangles\n ear = next.next;\n stop = next.next;\n\n continue;\n }\n\n ear = next;\n\n // if we looped through the whole remaining polygon and can't find any more ears\n if (ear === stop) {\n // try filtering points and slicing again\n if (!pass) {\n earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1);\n\n // if this didn't work, try curing all small self-intersections locally\n } else if (pass === 1) {\n ear = cureLocalIntersections(filterPoints(ear), triangles, dim);\n earcutLinked(ear, triangles, dim, minX, minY, invSize, 2);\n\n // as a last resort, try splitting the remaining polygon into two\n } else if (pass === 2) {\n splitEarcut(ear, triangles, dim, minX, minY, invSize);\n }\n\n break;\n }\n }\n}\n\n// check whether a polygon node forms a valid ear with adjacent nodes\nfunction isEar(ear) {\n var a = ear.prev,\n b = ear,\n c = ear.next;\n\n if (area(a, b, c) >= 0) return false; // reflex, can't be an ear\n\n // now make sure we don't have other points inside the potential ear\n var p = ear.next.next;\n\n while (p !== ear.prev) {\n if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.next;\n }\n\n return true;\n}\n\nfunction isEarHashed(ear, minX, minY, invSize) {\n var a = ear.prev,\n b = ear,\n c = ear.next;\n\n if (area(a, b, c) >= 0) return false; // reflex, can't be an ear\n\n // triangle bbox; min & max are calculated like this for speed\n var minTX = a.x < b.x ? (a.x < c.x ? a.x : c.x) : (b.x < c.x ? b.x : c.x),\n minTY = a.y < b.y ? (a.y < c.y ? a.y : c.y) : (b.y < c.y ? b.y : c.y),\n maxTX = a.x > b.x ? (a.x > c.x ? a.x : c.x) : (b.x > c.x ? b.x : c.x),\n maxTY = a.y > b.y ? (a.y > c.y ? a.y : c.y) : (b.y > c.y ? b.y : c.y);\n\n // z-order range for the current triangle bbox;\n var minZ = zOrder(minTX, minTY, minX, minY, invSize),\n maxZ = zOrder(maxTX, maxTY, minX, minY, invSize);\n\n var p = ear.prevZ,\n n = ear.nextZ;\n\n // look for points inside the triangle in both directions\n while (p && p.z >= minZ && n && n.z <= maxZ) {\n if (p !== ear.prev && p !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.prevZ;\n\n if (n !== ear.prev && n !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) &&\n area(n.prev, n, n.next) >= 0) return false;\n n = n.nextZ;\n }\n\n // look for remaining points in decreasing z-order\n while (p && p.z >= minZ) {\n if (p !== ear.prev && p !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.prevZ;\n }\n\n // look for remaining points in increasing z-order\n while (n && n.z <= maxZ) {\n if (n !== ear.prev && n !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) &&\n area(n.prev, n, n.next) >= 0) return false;\n n = n.nextZ;\n }\n\n return true;\n}\n\n// go through all polygon nodes and cure small local self-intersections\nfunction cureLocalIntersections(start, triangles, dim) {\n var p = start;\n do {\n var a = p.prev,\n b = p.next.next;\n\n if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) {\n\n triangles.push(a.i / dim);\n triangles.push(p.i / dim);\n triangles.push(b.i / dim);\n\n // remove two nodes involved\n removeNode(p);\n removeNode(p.next);\n\n p = start = b;\n }\n p = p.next;\n } while (p !== start);\n\n return filterPoints(p);\n}\n\n// try splitting polygon into two and triangulate them independently\nfunction splitEarcut(start, triangles, dim, minX, minY, invSize) {\n // look for a valid diagonal that divides the polygon into two\n var a = start;\n do {\n var b = a.next.next;\n while (b !== a.prev) {\n if (a.i !== b.i && isValidDiagonal(a, b)) {\n // split the polygon in two by the diagonal\n var c = splitPolygon(a, b);\n\n // filter colinear points around the cuts\n a = filterPoints(a, a.next);\n c = filterPoints(c, c.next);\n\n // run earcut on each half\n earcutLinked(a, triangles, dim, minX, minY, invSize);\n earcutLinked(c, triangles, dim, minX, minY, invSize);\n return;\n }\n b = b.next;\n }\n a = a.next;\n } while (a !== start);\n}\n\n// link every hole into the outer loop, producing a single-ring polygon without holes\nfunction eliminateHoles(data, holeIndices, outerNode, dim) {\n var queue = [],\n i, len, start, end, list;\n\n for (i = 0, len = holeIndices.length; i < len; i++) {\n start = holeIndices[i] * dim;\n end = i < len - 1 ? holeIndices[i + 1] * dim : data.length;\n list = linkedList(data, start, end, dim, false);\n if (list === list.next) list.steiner = true;\n queue.push(getLeftmost(list));\n }\n\n queue.sort(compareX);\n\n // process holes from left to right\n for (i = 0; i < queue.length; i++) {\n eliminateHole(queue[i], outerNode);\n outerNode = filterPoints(outerNode, outerNode.next);\n }\n\n return outerNode;\n}\n\nfunction compareX(a, b) {\n return a.x - b.x;\n}\n\n// find a bridge between vertices that connects hole with an outer ring and and link it\nfunction eliminateHole(hole, outerNode) {\n outerNode = findHoleBridge(hole, outerNode);\n if (outerNode) {\n var b = splitPolygon(outerNode, hole);\n filterPoints(b, b.next);\n }\n}\n\n// David Eberly's algorithm for finding a bridge between hole and outer polygon\nfunction findHoleBridge(hole, outerNode) {\n var p = outerNode,\n hx = hole.x,\n hy = hole.y,\n qx = -Infinity,\n m;\n\n // find a segment intersected by a ray from the hole's leftmost point to the left;\n // segment's endpoint with lesser x will be potential connection point\n do {\n if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) {\n var x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y);\n if (x <= hx && x > qx) {\n qx = x;\n if (x === hx) {\n if (hy === p.y) return p;\n if (hy === p.next.y) return p.next;\n }\n m = p.x < p.next.x ? p : p.next;\n }\n }\n p = p.next;\n } while (p !== outerNode);\n\n if (!m) return null;\n\n if (hx === qx) return m; // hole touches outer segment; pick leftmost endpoint\n\n // look for points inside the triangle of hole point, segment intersection and endpoint;\n // if there are no points found, we have a valid connection;\n // otherwise choose the point of the minimum angle with the ray as connection point\n\n var stop = m,\n mx = m.x,\n my = m.y,\n tanMin = Infinity,\n tan;\n\n p = m;\n\n do {\n if (hx >= p.x && p.x >= mx && hx !== p.x &&\n pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) {\n\n tan = Math.abs(hy - p.y) / (hx - p.x); // tangential\n\n if (locallyInside(p, hole) &&\n (tan < tanMin || (tan === tanMin && (p.x > m.x || (p.x === m.x && sectorContainsSector(m, p)))))) {\n m = p;\n tanMin = tan;\n }\n }\n\n p = p.next;\n } while (p !== stop);\n\n return m;\n}\n\n// whether sector in vertex m contains sector in vertex p in the same coordinates\nfunction sectorContainsSector(m, p) {\n return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0;\n}\n\n// interlink polygon nodes in z-order\nfunction indexCurve(start, minX, minY, invSize) {\n var p = start;\n do {\n if (p.z === null) p.z = zOrder(p.x, p.y, minX, minY, invSize);\n p.prevZ = p.prev;\n p.nextZ = p.next;\n p = p.next;\n } while (p !== start);\n\n p.prevZ.nextZ = null;\n p.prevZ = null;\n\n sortLinked(p);\n}\n\n// Simon Tatham's linked list merge sort algorithm\n// http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html\nfunction sortLinked(list) {\n var i, p, q, e, tail, numMerges, pSize, qSize,\n inSize = 1;\n\n do {\n p = list;\n list = null;\n tail = null;\n numMerges = 0;\n\n while (p) {\n numMerges++;\n q = p;\n pSize = 0;\n for (i = 0; i < inSize; i++) {\n pSize++;\n q = q.nextZ;\n if (!q) break;\n }\n qSize = inSize;\n\n while (pSize > 0 || (qSize > 0 && q)) {\n\n if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) {\n e = p;\n p = p.nextZ;\n pSize--;\n } else {\n e = q;\n q = q.nextZ;\n qSize--;\n }\n\n if (tail) tail.nextZ = e;\n else list = e;\n\n e.prevZ = tail;\n tail = e;\n }\n\n p = q;\n }\n\n tail.nextZ = null;\n inSize *= 2;\n\n } while (numMerges > 1);\n\n return list;\n}\n\n// z-order of a point given coords and inverse of the longer side of data bbox\nfunction zOrder(x, y, minX, minY, invSize) {\n // coords are transformed into non-negative 15-bit integer range\n x = 32767 * (x - minX) * invSize;\n y = 32767 * (y - minY) * invSize;\n\n x = (x | (x << 8)) & 0x00FF00FF;\n x = (x | (x << 4)) & 0x0F0F0F0F;\n x = (x | (x << 2)) & 0x33333333;\n x = (x | (x << 1)) & 0x55555555;\n\n y = (y | (y << 8)) & 0x00FF00FF;\n y = (y | (y << 4)) & 0x0F0F0F0F;\n y = (y | (y << 2)) & 0x33333333;\n y = (y | (y << 1)) & 0x55555555;\n\n return x | (y << 1);\n}\n\n// find the leftmost node of a polygon ring\nfunction getLeftmost(start) {\n var p = start,\n leftmost = start;\n do {\n if (p.x < leftmost.x || (p.x === leftmost.x && p.y < leftmost.y)) leftmost = p;\n p = p.next;\n } while (p !== start);\n\n return leftmost;\n}\n\n// check if a point lies within a convex triangle\nfunction pointInTriangle(ax, ay, bx, by, cx, cy, px, py) {\n return (cx - px) * (ay - py) - (ax - px) * (cy - py) >= 0 &&\n (ax - px) * (by - py) - (bx - px) * (ay - py) >= 0 &&\n (bx - px) * (cy - py) - (cx - px) * (by - py) >= 0;\n}\n\n// check if a diagonal between two polygon nodes is valid (lies in polygon interior)\nfunction isValidDiagonal(a, b) {\n return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && // dones't intersect other edges\n (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && // locally visible\n (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors\n equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case\n}\n\n// signed area of a triangle\nfunction area(p, q, r) {\n return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y);\n}\n\n// check if two points are equal\nfunction equals(p1, p2) {\n return p1.x === p2.x && p1.y === p2.y;\n}\n\n// check if two segments intersect\nfunction intersects(p1, q1, p2, q2) {\n var o1 = sign(area(p1, q1, p2));\n var o2 = sign(area(p1, q1, q2));\n var o3 = sign(area(p2, q2, p1));\n var o4 = sign(area(p2, q2, q1));\n\n if (o1 !== o2 && o3 !== o4) return true; // general case\n\n if (o1 === 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p1q1\n if (o2 === 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p1q1\n if (o3 === 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p2q2\n if (o4 === 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p2q2\n\n return false;\n}\n\n// for collinear points p, q, r, check if point q lies on segment pr\nfunction onSegment(p, q, r) {\n return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y);\n}\n\nfunction sign(num) {\n return num > 0 ? 1 : num < 0 ? -1 : 0;\n}\n\n// check if a polygon diagonal intersects any polygon segments\nfunction intersectsPolygon(a, b) {\n var p = a;\n do {\n if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i &&\n intersects(p, p.next, a, b)) return true;\n p = p.next;\n } while (p !== a);\n\n return false;\n}\n\n// check if a polygon diagonal is locally inside the polygon\nfunction locallyInside(a, b) {\n return area(a.prev, a, a.next) < 0 ?\n area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 :\n area(a, b, a.prev) < 0 || area(a, a.next, b) < 0;\n}\n\n// check if the middle point of a polygon diagonal is inside the polygon\nfunction middleInside(a, b) {\n var p = a,\n inside = false,\n px = (a.x + b.x) / 2,\n py = (a.y + b.y) / 2;\n do {\n if (((p.y > py) !== (p.next.y > py)) && p.next.y !== p.y &&\n (px < (p.next.x - p.x) * (py - p.y) / (p.next.y - p.y) + p.x))\n inside = !inside;\n p = p.next;\n } while (p !== a);\n\n return inside;\n}\n\n// link two polygon vertices with a bridge; if the vertices belong to the same ring, it splits polygon into two;\n// if one belongs to the outer ring and another to a hole, it merges it into a single ring\nfunction splitPolygon(a, b) {\n var a2 = new Node(a.i, a.x, a.y),\n b2 = new Node(b.i, b.x, b.y),\n an = a.next,\n bp = b.prev;\n\n a.next = b;\n b.prev = a;\n\n a2.next = an;\n an.prev = a2;\n\n b2.next = a2;\n a2.prev = b2;\n\n bp.next = b2;\n b2.prev = bp;\n\n return b2;\n}\n\n// create a node and optionally link it with previous one (in a circular doubly linked list)\nfunction insertNode(i, x, y, last) {\n var p = new Node(i, x, y);\n\n if (!last) {\n p.prev = p;\n p.next = p;\n\n } else {\n p.next = last.next;\n p.prev = last;\n last.next.prev = p;\n last.next = p;\n }\n return p;\n}\n\nfunction removeNode(p) {\n p.next.prev = p.prev;\n p.prev.next = p.next;\n\n if (p.prevZ) p.prevZ.nextZ = p.nextZ;\n if (p.nextZ) p.nextZ.prevZ = p.prevZ;\n}\n\nfunction Node(i, x, y) {\n // vertex index in coordinates array\n this.i = i;\n\n // vertex coordinates\n this.x = x;\n this.y = y;\n\n // previous and next vertex nodes in a polygon ring\n this.prev = null;\n this.next = null;\n\n // z-order curve value\n this.z = null;\n\n // previous and next nodes in z-order\n this.prevZ = null;\n this.nextZ = null;\n\n // indicates whether this is a steiner point\n this.steiner = false;\n}\n\n// return a percentage difference between the polygon area and its triangulation area;\n// used to verify correctness of triangulation\nearcut.deviation = function (data, holeIndices, dim, triangles) {\n var hasHoles = holeIndices && holeIndices.length;\n var outerLen = hasHoles ? holeIndices[0] * dim : data.length;\n\n var polygonArea = Math.abs(signedArea(data, 0, outerLen, dim));\n if (hasHoles) {\n for (var i = 0, len = holeIndices.length; i < len; i++) {\n var start = holeIndices[i] * dim;\n var end = i < len - 1 ? holeIndices[i + 1] * dim : data.length;\n polygonArea -= Math.abs(signedArea(data, start, end, dim));\n }\n }\n\n var trianglesArea = 0;\n for (i = 0; i < triangles.length; i += 3) {\n var a = triangles[i] * dim;\n var b = triangles[i + 1] * dim;\n var c = triangles[i + 2] * dim;\n trianglesArea += Math.abs(\n (data[a] - data[c]) * (data[b + 1] - data[a + 1]) -\n (data[a] - data[b]) * (data[c + 1] - data[a + 1]));\n }\n\n return polygonArea === 0 && trianglesArea === 0 ? 0 :\n Math.abs((trianglesArea - polygonArea) / polygonArea);\n};\n\nfunction signedArea(data, start, end, dim) {\n var sum = 0;\n for (var i = start, j = end - dim; i < end; i += dim) {\n sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]);\n j = i;\n }\n return sum;\n}\n\n// turn a polygon in a multi-dimensional array form (e.g. as in GeoJSON) into a form Earcut accepts\nearcut.flatten = function (data) {\n var dim = data[0][0].length,\n result = {vertices: [], holes: [], dimensions: dim},\n holeIndex = 0;\n\n for (var i = 0; i < data.length; i++) {\n for (var j = 0; j < data[i].length; j++) {\n for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]);\n }\n if (i > 0) {\n holeIndex += data[i - 1].length;\n result.holes.push(holeIndex);\n }\n }\n return result;\n};\n","/*! https://mths.be/punycode v1.4.1 by @mathias */\n\n\n/** Highest positive signed 32-bit float value */\nvar maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1\n\n/** Bootstring parameters */\nvar base = 36;\nvar tMin = 1;\nvar tMax = 26;\nvar skew = 38;\nvar damp = 700;\nvar initialBias = 72;\nvar initialN = 128; // 0x80\nvar delimiter = '-'; // '\\x2D'\n\n/** Regular expressions */\nvar regexPunycode = /^xn--/;\nvar regexNonASCII = /[^\\x20-\\x7E]/; // unprintable ASCII chars + non-ASCII chars\nvar regexSeparators = /[\\x2E\\u3002\\uFF0E\\uFF61]/g; // RFC 3490 separators\n\n/** Error messages */\nvar errors = {\n 'overflow': 'Overflow: input needs wider integers to process',\n 'not-basic': 'Illegal input >= 0x80 (not a basic code point)',\n 'invalid-input': 'Invalid input'\n};\n\n/** Convenience shortcuts */\nvar baseMinusTMin = base - tMin;\nvar floor = Math.floor;\nvar stringFromCharCode = String.fromCharCode;\n\n/*--------------------------------------------------------------------------*/\n\n/**\n * A generic error utility function.\n * @private\n * @param {String} type The error type.\n * @returns {Error} Throws a `RangeError` with the applicable error message.\n */\nfunction error(type) {\n throw new RangeError(errors[type]);\n}\n\n/**\n * A generic `Array#map` utility function.\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} callback The function that gets called for every array\n * item.\n * @returns {Array} A new array of values returned by the callback function.\n */\nfunction map(array, fn) {\n var length = array.length;\n var result = [];\n while (length--) {\n result[length] = fn(array[length]);\n }\n return result;\n}\n\n/**\n * A simple `Array#map`-like wrapper to work with domain name strings or email\n * addresses.\n * @private\n * @param {String} domain The domain name or email address.\n * @param {Function} callback The function that gets called for every\n * character.\n * @returns {Array} A new string of characters returned by the callback\n * function.\n */\nfunction mapDomain(string, fn) {\n var parts = string.split('@');\n var result = '';\n if (parts.length > 1) {\n // In email addresses, only the domain name should be punycoded. Leave\n // the local part (i.e. everything up to `@`) intact.\n result = parts[0] + '@';\n string = parts[1];\n }\n // Avoid `split(regex)` for IE8 compatibility. See #17.\n string = string.replace(regexSeparators, '\\x2E');\n var labels = string.split('.');\n var encoded = map(labels, fn).join('.');\n return result + encoded;\n}\n\n/**\n * Creates an array containing the numeric code points of each Unicode\n * character in the string. While JavaScript uses UCS-2 internally,\n * this function will convert a pair of surrogate halves (each of which\n * UCS-2 exposes as separate characters) into a single code point,\n * matching UTF-16.\n * @see `punycode.ucs2.encode`\n * @see \n * @memberOf punycode.ucs2\n * @name decode\n * @param {String} string The Unicode input string (UCS-2).\n * @returns {Array} The new array of code points.\n */\nfunction ucs2decode(string) {\n var output = [],\n counter = 0,\n length = string.length,\n value,\n extra;\n while (counter < length) {\n value = string.charCodeAt(counter++);\n if (value >= 0xD800 && value <= 0xDBFF && counter < length) {\n // high surrogate, and there is a next character\n extra = string.charCodeAt(counter++);\n if ((extra & 0xFC00) == 0xDC00) { // low surrogate\n output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000);\n } else {\n // unmatched surrogate; only append this code unit, in case the next\n // code unit is the high surrogate of a surrogate pair\n output.push(value);\n counter--;\n }\n } else {\n output.push(value);\n }\n }\n return output;\n}\n\n/**\n * Creates a string based on an array of numeric code points.\n * @see `punycode.ucs2.decode`\n * @memberOf punycode.ucs2\n * @name encode\n * @param {Array} codePoints The array of numeric code points.\n * @returns {String} The new Unicode string (UCS-2).\n */\nfunction ucs2encode(array) {\n return map(array, function(value) {\n var output = '';\n if (value > 0xFFFF) {\n value -= 0x10000;\n output += stringFromCharCode(value >>> 10 & 0x3FF | 0xD800);\n value = 0xDC00 | value & 0x3FF;\n }\n output += stringFromCharCode(value);\n return output;\n }).join('');\n}\n\n/**\n * Converts a basic code point into a digit/integer.\n * @see `digitToBasic()`\n * @private\n * @param {Number} codePoint The basic numeric code point value.\n * @returns {Number} The numeric value of a basic code point (for use in\n * representing integers) in the range `0` to `base - 1`, or `base` if\n * the code point does not represent a value.\n */\nfunction basicToDigit(codePoint) {\n if (codePoint - 48 < 10) {\n return codePoint - 22;\n }\n if (codePoint - 65 < 26) {\n return codePoint - 65;\n }\n if (codePoint - 97 < 26) {\n return codePoint - 97;\n }\n return base;\n}\n\n/**\n * Converts a digit/integer into a basic code point.\n * @see `basicToDigit()`\n * @private\n * @param {Number} digit The numeric value of a basic code point.\n * @returns {Number} The basic code point whose value (when used for\n * representing integers) is `digit`, which needs to be in the range\n * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is\n * used; else, the lowercase form is used. The behavior is undefined\n * if `flag` is non-zero and `digit` has no uppercase form.\n */\nfunction digitToBasic(digit, flag) {\n // 0..25 map to ASCII a..z or A..Z\n // 26..35 map to ASCII 0..9\n return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5);\n}\n\n/**\n * Bias adaptation function as per section 3.4 of RFC 3492.\n * https://tools.ietf.org/html/rfc3492#section-3.4\n * @private\n */\nfunction adapt(delta, numPoints, firstTime) {\n var k = 0;\n delta = firstTime ? floor(delta / damp) : delta >> 1;\n delta += floor(delta / numPoints);\n for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) {\n delta = floor(delta / baseMinusTMin);\n }\n return floor(k + (baseMinusTMin + 1) * delta / (delta + skew));\n}\n\n/**\n * Converts a Punycode string of ASCII-only symbols to a string of Unicode\n * symbols.\n * @memberOf punycode\n * @param {String} input The Punycode string of ASCII-only symbols.\n * @returns {String} The resulting string of Unicode symbols.\n */\nexport function decode(input) {\n // Don't use UCS-2\n var output = [],\n inputLength = input.length,\n out,\n i = 0,\n n = initialN,\n bias = initialBias,\n basic,\n j,\n index,\n oldi,\n w,\n k,\n digit,\n t,\n /** Cached calculation results */\n baseMinusT;\n\n // Handle the basic code points: let `basic` be the number of input code\n // points before the last delimiter, or `0` if there is none, then copy\n // the first basic code points to the output.\n\n basic = input.lastIndexOf(delimiter);\n if (basic < 0) {\n basic = 0;\n }\n\n for (j = 0; j < basic; ++j) {\n // if it's not a basic code point\n if (input.charCodeAt(j) >= 0x80) {\n error('not-basic');\n }\n output.push(input.charCodeAt(j));\n }\n\n // Main decoding loop: start just after the last delimiter if any basic code\n // points were copied; start at the beginning otherwise.\n\n for (index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */ ) {\n\n // `index` is the index of the next character to be consumed.\n // Decode a generalized variable-length integer into `delta`,\n // which gets added to `i`. The overflow checking is easier\n // if we increase `i` as we go, then subtract off its starting\n // value at the end to obtain `delta`.\n for (oldi = i, w = 1, k = base; /* no condition */ ; k += base) {\n\n if (index >= inputLength) {\n error('invalid-input');\n }\n\n digit = basicToDigit(input.charCodeAt(index++));\n\n if (digit >= base || digit > floor((maxInt - i) / w)) {\n error('overflow');\n }\n\n i += digit * w;\n t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n\n if (digit < t) {\n break;\n }\n\n baseMinusT = base - t;\n if (w > floor(maxInt / baseMinusT)) {\n error('overflow');\n }\n\n w *= baseMinusT;\n\n }\n\n out = output.length + 1;\n bias = adapt(i - oldi, out, oldi == 0);\n\n // `i` was supposed to wrap around from `out` to `0`,\n // incrementing `n` each time, so we'll fix that now:\n if (floor(i / out) > maxInt - n) {\n error('overflow');\n }\n\n n += floor(i / out);\n i %= out;\n\n // Insert `n` at position `i` of the output\n output.splice(i++, 0, n);\n\n }\n\n return ucs2encode(output);\n}\n\n/**\n * Converts a string of Unicode symbols (e.g. a domain name label) to a\n * Punycode string of ASCII-only symbols.\n * @memberOf punycode\n * @param {String} input The string of Unicode symbols.\n * @returns {String} The resulting Punycode string of ASCII-only symbols.\n */\nexport function encode(input) {\n var n,\n delta,\n handledCPCount,\n basicLength,\n bias,\n j,\n m,\n q,\n k,\n t,\n currentValue,\n output = [],\n /** `inputLength` will hold the number of code points in `input`. */\n inputLength,\n /** Cached calculation results */\n handledCPCountPlusOne,\n baseMinusT,\n qMinusT;\n\n // Convert the input in UCS-2 to Unicode\n input = ucs2decode(input);\n\n // Cache the length\n inputLength = input.length;\n\n // Initialize the state\n n = initialN;\n delta = 0;\n bias = initialBias;\n\n // Handle the basic code points\n for (j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n if (currentValue < 0x80) {\n output.push(stringFromCharCode(currentValue));\n }\n }\n\n handledCPCount = basicLength = output.length;\n\n // `handledCPCount` is the number of code points that have been handled;\n // `basicLength` is the number of basic code points.\n\n // Finish the basic string - if it is not empty - with a delimiter\n if (basicLength) {\n output.push(delimiter);\n }\n\n // Main encoding loop:\n while (handledCPCount < inputLength) {\n\n // All non-basic code points < n have been handled already. Find the next\n // larger one:\n for (m = maxInt, j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n if (currentValue >= n && currentValue < m) {\n m = currentValue;\n }\n }\n\n // Increase `delta` enough to advance the decoder's state to ,\n // but guard against overflow\n handledCPCountPlusOne = handledCPCount + 1;\n if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) {\n error('overflow');\n }\n\n delta += (m - n) * handledCPCountPlusOne;\n n = m;\n\n for (j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n\n if (currentValue < n && ++delta > maxInt) {\n error('overflow');\n }\n\n if (currentValue == n) {\n // Represent delta as a generalized variable-length integer\n for (q = delta, k = base; /* no condition */ ; k += base) {\n t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n if (q < t) {\n break;\n }\n qMinusT = q - t;\n baseMinusT = base - t;\n output.push(\n stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0))\n );\n q = floor(qMinusT / baseMinusT);\n }\n\n output.push(stringFromCharCode(digitToBasic(q, 0)));\n bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength);\n delta = 0;\n ++handledCPCount;\n }\n }\n\n ++delta;\n ++n;\n\n }\n return output.join('');\n}\n\n/**\n * Converts a Punycode string representing a domain name or an email address\n * to Unicode. Only the Punycoded parts of the input will be converted, i.e.\n * it doesn't matter if you call it on a string that has already been\n * converted to Unicode.\n * @memberOf punycode\n * @param {String} input The Punycoded domain name or email address to\n * convert to Unicode.\n * @returns {String} The Unicode representation of the given Punycode\n * string.\n */\nexport function toUnicode(input) {\n return mapDomain(input, function(string) {\n return regexPunycode.test(string) ?\n decode(string.slice(4).toLowerCase()) :\n string;\n });\n}\n\n/**\n * Converts a Unicode string representing a domain name or an email address to\n * Punycode. Only the non-ASCII parts of the domain name will be converted,\n * i.e. it doesn't matter if you call it with a domain that's already in\n * ASCII.\n * @memberOf punycode\n * @param {String} input The domain name or email address to convert, as a\n * Unicode string.\n * @returns {String} The Punycode representation of the given domain name or\n * email address.\n */\nexport function toASCII(input) {\n return mapDomain(input, function(string) {\n return regexNonASCII.test(string) ?\n 'xn--' + encode(string) :\n string;\n });\n}\nexport var version = '1.4.1';\n/**\n * An object of methods to convert from JavaScript's internal character\n * representation (UCS-2) to Unicode code points, and back.\n * @see \n * @memberOf punycode\n * @type Object\n */\n\nexport var ucs2 = {\n decode: ucs2decode,\n encode: ucs2encode\n};\nexport default {\n version: version,\n ucs2: ucs2,\n toASCII: toASCII,\n toUnicode: toUnicode,\n encode: encode,\n decode: decode\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\nimport process from 'process';\nvar formatRegExp = /%[sdj%]/g;\nexport function format(f) {\n if (!isString(f)) {\n var objects = [];\n for (var i = 0; i < arguments.length; i++) {\n objects.push(inspect(arguments[i]));\n }\n return objects.join(' ');\n }\n\n var i = 1;\n var args = arguments;\n var len = args.length;\n var str = String(f).replace(formatRegExp, function(x) {\n if (x === '%%') return '%';\n if (i >= len) return x;\n switch (x) {\n case '%s': return String(args[i++]);\n case '%d': return Number(args[i++]);\n case '%j':\n try {\n return JSON.stringify(args[i++]);\n } catch (_) {\n return '[Circular]';\n }\n default:\n return x;\n }\n });\n for (var x = args[i]; i < len; x = args[++i]) {\n if (isNull(x) || !isObject(x)) {\n str += ' ' + x;\n } else {\n str += ' ' + inspect(x);\n }\n }\n return str;\n};\n\n\n// Mark that a method should not be used.\n// Returns a modified function which warns once by default.\n// If --no-deprecation is set, then it is a no-op.\nexport function deprecate(fn, msg) {\n // Allow for deprecating things in the process of starting up.\n if (isUndefined(global.process)) {\n return function() {\n return deprecate(fn, msg).apply(this, arguments);\n };\n }\n\n if (process.noDeprecation === true) {\n return fn;\n }\n\n var warned = false;\n function deprecated() {\n if (!warned) {\n if (process.throwDeprecation) {\n throw new Error(msg);\n } else if (process.traceDeprecation) {\n console.trace(msg);\n } else {\n console.error(msg);\n }\n warned = true;\n }\n return fn.apply(this, arguments);\n }\n\n return deprecated;\n};\n\n\nvar debugs = {};\nvar debugEnviron;\nexport function debuglog(set) {\n if (isUndefined(debugEnviron))\n debugEnviron = process.env.NODE_DEBUG || '';\n set = set.toUpperCase();\n if (!debugs[set]) {\n if (new RegExp('\\\\b' + set + '\\\\b', 'i').test(debugEnviron)) {\n var pid = 0;\n debugs[set] = function() {\n var msg = format.apply(null, arguments);\n console.error('%s %d: %s', set, pid, msg);\n };\n } else {\n debugs[set] = function() {};\n }\n }\n return debugs[set];\n};\n\n\n/**\n * Echos the value of a value. Trys to print the value out\n * in the best way possible given the different types.\n *\n * @param {Object} obj The object to print out.\n * @param {Object} opts Optional options object that alters the output.\n */\n/* legacy: obj, showHidden, depth, colors*/\nexport function inspect(obj, opts) {\n // default options\n var ctx = {\n seen: [],\n stylize: stylizeNoColor\n };\n // legacy...\n if (arguments.length >= 3) ctx.depth = arguments[2];\n if (arguments.length >= 4) ctx.colors = arguments[3];\n if (isBoolean(opts)) {\n // legacy...\n ctx.showHidden = opts;\n } else if (opts) {\n // got an \"options\" object\n _extend(ctx, opts);\n }\n // set default options\n if (isUndefined(ctx.showHidden)) ctx.showHidden = false;\n if (isUndefined(ctx.depth)) ctx.depth = 2;\n if (isUndefined(ctx.colors)) ctx.colors = false;\n if (isUndefined(ctx.customInspect)) ctx.customInspect = true;\n if (ctx.colors) ctx.stylize = stylizeWithColor;\n return formatValue(ctx, obj, ctx.depth);\n}\n\n// http://en.wikipedia.org/wiki/ANSI_escape_code#graphics\ninspect.colors = {\n 'bold' : [1, 22],\n 'italic' : [3, 23],\n 'underline' : [4, 24],\n 'inverse' : [7, 27],\n 'white' : [37, 39],\n 'grey' : [90, 39],\n 'black' : [30, 39],\n 'blue' : [34, 39],\n 'cyan' : [36, 39],\n 'green' : [32, 39],\n 'magenta' : [35, 39],\n 'red' : [31, 39],\n 'yellow' : [33, 39]\n};\n\n// Don't use 'blue' not visible on cmd.exe\ninspect.styles = {\n 'special': 'cyan',\n 'number': 'yellow',\n 'boolean': 'yellow',\n 'undefined': 'grey',\n 'null': 'bold',\n 'string': 'green',\n 'date': 'magenta',\n // \"name\": intentionally not styling\n 'regexp': 'red'\n};\n\n\nfunction stylizeWithColor(str, styleType) {\n var style = inspect.styles[styleType];\n\n if (style) {\n return '\\u001b[' + inspect.colors[style][0] + 'm' + str +\n '\\u001b[' + inspect.colors[style][1] + 'm';\n } else {\n return str;\n }\n}\n\n\nfunction stylizeNoColor(str, styleType) {\n return str;\n}\n\n\nfunction arrayToHash(array) {\n var hash = {};\n\n array.forEach(function(val, idx) {\n hash[val] = true;\n });\n\n return hash;\n}\n\n\nfunction formatValue(ctx, value, recurseTimes) {\n // Provide a hook for user-specified inspect functions.\n // Check that value is an object with an inspect function on it\n if (ctx.customInspect &&\n value &&\n isFunction(value.inspect) &&\n // Filter out the util module, it's inspect function is special\n value.inspect !== inspect &&\n // Also filter out any prototype objects using the circular check.\n !(value.constructor && value.constructor.prototype === value)) {\n var ret = value.inspect(recurseTimes, ctx);\n if (!isString(ret)) {\n ret = formatValue(ctx, ret, recurseTimes);\n }\n return ret;\n }\n\n // Primitive types cannot have properties\n var primitive = formatPrimitive(ctx, value);\n if (primitive) {\n return primitive;\n }\n\n // Look up the keys of the object.\n var keys = Object.keys(value);\n var visibleKeys = arrayToHash(keys);\n\n if (ctx.showHidden) {\n keys = Object.getOwnPropertyNames(value);\n }\n\n // IE doesn't make error fields non-enumerable\n // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx\n if (isError(value)\n && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) {\n return formatError(value);\n }\n\n // Some type of object without properties can be shortcutted.\n if (keys.length === 0) {\n if (isFunction(value)) {\n var name = value.name ? ': ' + value.name : '';\n return ctx.stylize('[Function' + name + ']', 'special');\n }\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n }\n if (isDate(value)) {\n return ctx.stylize(Date.prototype.toString.call(value), 'date');\n }\n if (isError(value)) {\n return formatError(value);\n }\n }\n\n var base = '', array = false, braces = ['{', '}'];\n\n // Make Array say that they are Array\n if (isArray(value)) {\n array = true;\n braces = ['[', ']'];\n }\n\n // Make functions say that they are functions\n if (isFunction(value)) {\n var n = value.name ? ': ' + value.name : '';\n base = ' [Function' + n + ']';\n }\n\n // Make RegExps say that they are RegExps\n if (isRegExp(value)) {\n base = ' ' + RegExp.prototype.toString.call(value);\n }\n\n // Make dates with properties first say the date\n if (isDate(value)) {\n base = ' ' + Date.prototype.toUTCString.call(value);\n }\n\n // Make error with message first say the error\n if (isError(value)) {\n base = ' ' + formatError(value);\n }\n\n if (keys.length === 0 && (!array || value.length == 0)) {\n return braces[0] + base + braces[1];\n }\n\n if (recurseTimes < 0) {\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n } else {\n return ctx.stylize('[Object]', 'special');\n }\n }\n\n ctx.seen.push(value);\n\n var output;\n if (array) {\n output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);\n } else {\n output = keys.map(function(key) {\n return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array);\n });\n }\n\n ctx.seen.pop();\n\n return reduceToSingleString(output, base, braces);\n}\n\n\nfunction formatPrimitive(ctx, value) {\n if (isUndefined(value))\n return ctx.stylize('undefined', 'undefined');\n if (isString(value)) {\n var simple = '\\'' + JSON.stringify(value).replace(/^\"|\"$/g, '')\n .replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"') + '\\'';\n return ctx.stylize(simple, 'string');\n }\n if (isNumber(value))\n return ctx.stylize('' + value, 'number');\n if (isBoolean(value))\n return ctx.stylize('' + value, 'boolean');\n // For some reason typeof null is \"object\", so special case here.\n if (isNull(value))\n return ctx.stylize('null', 'null');\n}\n\n\nfunction formatError(value) {\n return '[' + Error.prototype.toString.call(value) + ']';\n}\n\n\nfunction formatArray(ctx, value, recurseTimes, visibleKeys, keys) {\n var output = [];\n for (var i = 0, l = value.length; i < l; ++i) {\n if (hasOwnProperty(value, String(i))) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n String(i), true));\n } else {\n output.push('');\n }\n }\n keys.forEach(function(key) {\n if (!key.match(/^\\d+$/)) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n key, true));\n }\n });\n return output;\n}\n\n\nfunction formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {\n var name, str, desc;\n desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] };\n if (desc.get) {\n if (desc.set) {\n str = ctx.stylize('[Getter/Setter]', 'special');\n } else {\n str = ctx.stylize('[Getter]', 'special');\n }\n } else {\n if (desc.set) {\n str = ctx.stylize('[Setter]', 'special');\n }\n }\n if (!hasOwnProperty(visibleKeys, key)) {\n name = '[' + key + ']';\n }\n if (!str) {\n if (ctx.seen.indexOf(desc.value) < 0) {\n if (isNull(recurseTimes)) {\n str = formatValue(ctx, desc.value, null);\n } else {\n str = formatValue(ctx, desc.value, recurseTimes - 1);\n }\n if (str.indexOf('\\n') > -1) {\n if (array) {\n str = str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n').substr(2);\n } else {\n str = '\\n' + str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n');\n }\n }\n } else {\n str = ctx.stylize('[Circular]', 'special');\n }\n }\n if (isUndefined(name)) {\n if (array && key.match(/^\\d+$/)) {\n return str;\n }\n name = JSON.stringify('' + key);\n if (name.match(/^\"([a-zA-Z_][a-zA-Z_0-9]*)\"$/)) {\n name = name.substr(1, name.length - 2);\n name = ctx.stylize(name, 'name');\n } else {\n name = name.replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"')\n .replace(/(^\"|\"$)/g, \"'\");\n name = ctx.stylize(name, 'string');\n }\n }\n\n return name + ': ' + str;\n}\n\n\nfunction reduceToSingleString(output, base, braces) {\n var numLinesEst = 0;\n var length = output.reduce(function(prev, cur) {\n numLinesEst++;\n if (cur.indexOf('\\n') >= 0) numLinesEst++;\n return prev + cur.replace(/\\u001b\\[\\d\\d?m/g, '').length + 1;\n }, 0);\n\n if (length > 60) {\n return braces[0] +\n (base === '' ? '' : base + '\\n ') +\n ' ' +\n output.join(',\\n ') +\n ' ' +\n braces[1];\n }\n\n return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];\n}\n\n\n// NOTE: These type checking functions intentionally don't use `instanceof`\n// because it is fragile and can be easily faked with `Object.create()`.\nexport function isArray(ar) {\n return Array.isArray(ar);\n}\n\nexport function isBoolean(arg) {\n return typeof arg === 'boolean';\n}\n\nexport function isNull(arg) {\n return arg === null;\n}\n\nexport function isNullOrUndefined(arg) {\n return arg == null;\n}\n\nexport function isNumber(arg) {\n return typeof arg === 'number';\n}\n\nexport function isString(arg) {\n return typeof arg === 'string';\n}\n\nexport function isSymbol(arg) {\n return typeof arg === 'symbol';\n}\n\nexport function isUndefined(arg) {\n return arg === void 0;\n}\n\nexport function isRegExp(re) {\n return isObject(re) && objectToString(re) === '[object RegExp]';\n}\n\nexport function isObject(arg) {\n return typeof arg === 'object' && arg !== null;\n}\n\nexport function isDate(d) {\n return isObject(d) && objectToString(d) === '[object Date]';\n}\n\nexport function isError(e) {\n return isObject(e) &&\n (objectToString(e) === '[object Error]' || e instanceof Error);\n}\n\nexport function isFunction(arg) {\n return typeof arg === 'function';\n}\n\nexport function isPrimitive(arg) {\n return arg === null ||\n typeof arg === 'boolean' ||\n typeof arg === 'number' ||\n typeof arg === 'string' ||\n typeof arg === 'symbol' || // ES6 symbol\n typeof arg === 'undefined';\n}\n\nexport function isBuffer(maybeBuf) {\n return Buffer.isBuffer(maybeBuf);\n}\n\nfunction objectToString(o) {\n return Object.prototype.toString.call(o);\n}\n\n\nfunction pad(n) {\n return n < 10 ? '0' + n.toString(10) : n.toString(10);\n}\n\n\nvar months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep',\n 'Oct', 'Nov', 'Dec'];\n\n// 26 Feb 16:19:34\nfunction timestamp() {\n var d = new Date();\n var time = [pad(d.getHours()),\n pad(d.getMinutes()),\n pad(d.getSeconds())].join(':');\n return [d.getDate(), months[d.getMonth()], time].join(' ');\n}\n\n\n// log is just a thin wrapper to console.log that prepends a timestamp\nexport function log() {\n console.log('%s - %s', timestamp(), format.apply(null, arguments));\n}\n\n\n/**\n * Inherit the prototype methods from one constructor into another.\n *\n * The Function.prototype.inherits from lang.js rewritten as a standalone\n * function (not on Function.prototype). NOTE: If this file is to be loaded\n * during bootstrapping this function needs to be rewritten using some native\n * functions as prototype setup using normal JavaScript does not work as\n * expected during bootstrapping (see mirror.js in r114903).\n *\n * @param {function} ctor Constructor function which needs to inherit the\n * prototype.\n * @param {function} superCtor Constructor function to inherit prototype from.\n */\nimport inherits from './inherits';\nexport {inherits}\n\nexport function _extend(origin, add) {\n // Don't do anything if add isn't an object\n if (!add || !isObject(add)) return origin;\n\n var keys = Object.keys(add);\n var i = keys.length;\n while (i--) {\n origin[keys[i]] = add[keys[i]];\n }\n return origin;\n};\n\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\n\nexport default {\n inherits: inherits,\n _extend: _extend,\n log: log,\n isBuffer: isBuffer,\n isPrimitive: isPrimitive,\n isFunction: isFunction,\n isError: isError,\n isDate: isDate,\n isObject: isObject,\n isRegExp: isRegExp,\n isUndefined: isUndefined,\n isSymbol: isSymbol,\n isString: isString,\n isNumber: isNumber,\n isNullOrUndefined: isNullOrUndefined,\n isNull: isNull,\n isBoolean: isBoolean,\n isArray: isArray,\n inspect: inspect,\n deprecate: deprecate,\n format: format,\n debuglog: debuglog\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n// If obj.hasOwnProperty has been overridden, then calling\n// obj.hasOwnProperty(prop) will break.\n// See: https://github.com/joyent/node/issues/1707\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\nvar isArray = Array.isArray || function (xs) {\n return Object.prototype.toString.call(xs) === '[object Array]';\n};\nfunction stringifyPrimitive(v) {\n switch (typeof v) {\n case 'string':\n return v;\n\n case 'boolean':\n return v ? 'true' : 'false';\n\n case 'number':\n return isFinite(v) ? v : '';\n\n default:\n return '';\n }\n}\n\nexport function stringify (obj, sep, eq, name) {\n sep = sep || '&';\n eq = eq || '=';\n if (obj === null) {\n obj = undefined;\n }\n\n if (typeof obj === 'object') {\n return map(objectKeys(obj), function(k) {\n var ks = encodeURIComponent(stringifyPrimitive(k)) + eq;\n if (isArray(obj[k])) {\n return map(obj[k], function(v) {\n return ks + encodeURIComponent(stringifyPrimitive(v));\n }).join(sep);\n } else {\n return ks + encodeURIComponent(stringifyPrimitive(obj[k]));\n }\n }).join(sep);\n\n }\n\n if (!name) return '';\n return encodeURIComponent(stringifyPrimitive(name)) + eq +\n encodeURIComponent(stringifyPrimitive(obj));\n};\n\nfunction map (xs, f) {\n if (xs.map) return xs.map(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n res.push(f(xs[i], i));\n }\n return res;\n}\n\nvar objectKeys = Object.keys || function (obj) {\n var res = [];\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key);\n }\n return res;\n};\n\nexport function parse(qs, sep, eq, options) {\n sep = sep || '&';\n eq = eq || '=';\n var obj = {};\n\n if (typeof qs !== 'string' || qs.length === 0) {\n return obj;\n }\n\n var regexp = /\\+/g;\n qs = qs.split(sep);\n\n var maxKeys = 1000;\n if (options && typeof options.maxKeys === 'number') {\n maxKeys = options.maxKeys;\n }\n\n var len = qs.length;\n // maxKeys <= 0 means that we should not limit keys count\n if (maxKeys > 0 && len > maxKeys) {\n len = maxKeys;\n }\n\n for (var i = 0; i < len; ++i) {\n var x = qs[i].replace(regexp, '%20'),\n idx = x.indexOf(eq),\n kstr, vstr, k, v;\n\n if (idx >= 0) {\n kstr = x.substr(0, idx);\n vstr = x.substr(idx + 1);\n } else {\n kstr = x;\n vstr = '';\n }\n\n k = decodeURIComponent(kstr);\n v = decodeURIComponent(vstr);\n\n if (!hasOwnProperty(obj, k)) {\n obj[k] = v;\n } else if (isArray(obj[k])) {\n obj[k].push(v);\n } else {\n obj[k] = [obj[k], v];\n }\n }\n\n return obj;\n};\nexport default {\n encode: stringify,\n stringify: stringify,\n decode: parse,\n parse: parse\n}\nexport {stringify as encode, parse as decode};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nimport {toASCII} from 'punycode';\nimport {isObject,isString,isNullOrUndefined,isNull} from 'util';\nimport {parse as qsParse,stringify as qsStringify} from 'querystring';\nexport {\n urlParse as parse,\n urlResolve as resolve,\n urlResolveObject as resolveObject,\n urlFormat as format\n};\nexport default {\n parse: urlParse,\n resolve: urlResolve,\n resolveObject: urlResolveObject,\n format: urlFormat,\n Url: Url\n}\nexport function Url() {\n this.protocol = null;\n this.slashes = null;\n this.auth = null;\n this.host = null;\n this.port = null;\n this.hostname = null;\n this.hash = null;\n this.search = null;\n this.query = null;\n this.pathname = null;\n this.path = null;\n this.href = null;\n}\n\n// Reference: RFC 3986, RFC 1808, RFC 2396\n\n// define these here so at least they only have to be\n// compiled once on the first module load.\nvar protocolPattern = /^([a-z0-9.+-]+:)/i,\n portPattern = /:[0-9]*$/,\n\n // Special case for a simple path URL\n simplePathPattern = /^(\\/\\/?(?!\\/)[^\\?\\s]*)(\\?[^\\s]*)?$/,\n\n // RFC 2396: characters reserved for delimiting URLs.\n // We actually just auto-escape these.\n delims = ['<', '>', '\"', '`', ' ', '\\r', '\\n', '\\t'],\n\n // RFC 2396: characters not allowed for various reasons.\n unwise = ['{', '}', '|', '\\\\', '^', '`'].concat(delims),\n\n // Allowed by RFCs, but cause of XSS attacks. Always escape these.\n autoEscape = ['\\''].concat(unwise),\n // Characters that are never ever allowed in a hostname.\n // Note that any invalid chars are also handled, but these\n // are the ones that are *expected* to be seen, so we fast-path\n // them.\n nonHostChars = ['%', '/', '?', ';', '#'].concat(autoEscape),\n hostEndingChars = ['/', '?', '#'],\n hostnameMaxLen = 255,\n hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/,\n hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/,\n // protocols that can allow \"unsafe\" and \"unwise\" chars.\n unsafeProtocol = {\n 'javascript': true,\n 'javascript:': true\n },\n // protocols that never have a hostname.\n hostlessProtocol = {\n 'javascript': true,\n 'javascript:': true\n },\n // protocols that always contain a // bit.\n slashedProtocol = {\n 'http': true,\n 'https': true,\n 'ftp': true,\n 'gopher': true,\n 'file': true,\n 'http:': true,\n 'https:': true,\n 'ftp:': true,\n 'gopher:': true,\n 'file:': true\n };\n\nfunction urlParse(url, parseQueryString, slashesDenoteHost) {\n if (url && isObject(url) && url instanceof Url) return url;\n\n var u = new Url;\n u.parse(url, parseQueryString, slashesDenoteHost);\n return u;\n}\nUrl.prototype.parse = function(url, parseQueryString, slashesDenoteHost) {\n return parse(this, url, parseQueryString, slashesDenoteHost);\n}\n\nfunction parse(self, url, parseQueryString, slashesDenoteHost) {\n if (!isString(url)) {\n throw new TypeError('Parameter \\'url\\' must be a string, not ' + typeof url);\n }\n\n // Copy chrome, IE, opera backslash-handling behavior.\n // Back slashes before the query string get converted to forward slashes\n // See: https://code.google.com/p/chromium/issues/detail?id=25916\n var queryIndex = url.indexOf('?'),\n splitter =\n (queryIndex !== -1 && queryIndex < url.indexOf('#')) ? '?' : '#',\n uSplit = url.split(splitter),\n slashRegex = /\\\\/g;\n uSplit[0] = uSplit[0].replace(slashRegex, '/');\n url = uSplit.join(splitter);\n\n var rest = url;\n\n // trim before proceeding.\n // This is to support parse stuff like \" http://foo.com \\n\"\n rest = rest.trim();\n\n if (!slashesDenoteHost && url.split('#').length === 1) {\n // Try fast path regexp\n var simplePath = simplePathPattern.exec(rest);\n if (simplePath) {\n self.path = rest;\n self.href = rest;\n self.pathname = simplePath[1];\n if (simplePath[2]) {\n self.search = simplePath[2];\n if (parseQueryString) {\n self.query = qsParse(self.search.substr(1));\n } else {\n self.query = self.search.substr(1);\n }\n } else if (parseQueryString) {\n self.search = '';\n self.query = {};\n }\n return self;\n }\n }\n\n var proto = protocolPattern.exec(rest);\n if (proto) {\n proto = proto[0];\n var lowerProto = proto.toLowerCase();\n self.protocol = lowerProto;\n rest = rest.substr(proto.length);\n }\n\n // figure out if it's got a host\n // user@server is *always* interpreted as a hostname, and url\n // resolution will treat //foo/bar as host=foo,path=bar because that's\n // how the browser resolves relative URLs.\n if (slashesDenoteHost || proto || rest.match(/^\\/\\/[^@\\/]+@[^@\\/]+/)) {\n var slashes = rest.substr(0, 2) === '//';\n if (slashes && !(proto && hostlessProtocol[proto])) {\n rest = rest.substr(2);\n self.slashes = true;\n }\n }\n var i, hec, l, p;\n if (!hostlessProtocol[proto] &&\n (slashes || (proto && !slashedProtocol[proto]))) {\n\n // there's a hostname.\n // the first instance of /, ?, ;, or # ends the host.\n //\n // If there is an @ in the hostname, then non-host chars *are* allowed\n // to the left of the last @ sign, unless some host-ending character\n // comes *before* the @-sign.\n // URLs are obnoxious.\n //\n // ex:\n // http://a@b@c/ => user:a@b host:c\n // http://a@b?@c => user:a host:c path:/?@c\n\n // v0.12 TODO(isaacs): This is not quite how Chrome does things.\n // Review our test case against browsers more comprehensively.\n\n // find the first instance of any hostEndingChars\n var hostEnd = -1;\n for (i = 0; i < hostEndingChars.length; i++) {\n hec = rest.indexOf(hostEndingChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd))\n hostEnd = hec;\n }\n\n // at this point, either we have an explicit point where the\n // auth portion cannot go past, or the last @ char is the decider.\n var auth, atSign;\n if (hostEnd === -1) {\n // atSign can be anywhere.\n atSign = rest.lastIndexOf('@');\n } else {\n // atSign must be in auth portion.\n // http://a@b/c@d => host:b auth:a path:/c@d\n atSign = rest.lastIndexOf('@', hostEnd);\n }\n\n // Now we have a portion which is definitely the auth.\n // Pull that off.\n if (atSign !== -1) {\n auth = rest.slice(0, atSign);\n rest = rest.slice(atSign + 1);\n self.auth = decodeURIComponent(auth);\n }\n\n // the host is the remaining to the left of the first non-host char\n hostEnd = -1;\n for (i = 0; i < nonHostChars.length; i++) {\n hec = rest.indexOf(nonHostChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd))\n hostEnd = hec;\n }\n // if we still have not hit it, then the entire thing is a host.\n if (hostEnd === -1)\n hostEnd = rest.length;\n\n self.host = rest.slice(0, hostEnd);\n rest = rest.slice(hostEnd);\n\n // pull out port.\n parseHost(self);\n\n // we've indicated that there is a hostname,\n // so even if it's empty, it has to be present.\n self.hostname = self.hostname || '';\n\n // if hostname begins with [ and ends with ]\n // assume that it's an IPv6 address.\n var ipv6Hostname = self.hostname[0] === '[' &&\n self.hostname[self.hostname.length - 1] === ']';\n\n // validate a little.\n if (!ipv6Hostname) {\n var hostparts = self.hostname.split(/\\./);\n for (i = 0, l = hostparts.length; i < l; i++) {\n var part = hostparts[i];\n if (!part) continue;\n if (!part.match(hostnamePartPattern)) {\n var newpart = '';\n for (var j = 0, k = part.length; j < k; j++) {\n if (part.charCodeAt(j) > 127) {\n // we replace non-ASCII char with a temporary placeholder\n // we need this to make sure size of hostname is not\n // broken by replacing non-ASCII by nothing\n newpart += 'x';\n } else {\n newpart += part[j];\n }\n }\n // we test again with ASCII char only\n if (!newpart.match(hostnamePartPattern)) {\n var validParts = hostparts.slice(0, i);\n var notHost = hostparts.slice(i + 1);\n var bit = part.match(hostnamePartStart);\n if (bit) {\n validParts.push(bit[1]);\n notHost.unshift(bit[2]);\n }\n if (notHost.length) {\n rest = '/' + notHost.join('.') + rest;\n }\n self.hostname = validParts.join('.');\n break;\n }\n }\n }\n }\n\n if (self.hostname.length > hostnameMaxLen) {\n self.hostname = '';\n } else {\n // hostnames are always lower case.\n self.hostname = self.hostname.toLowerCase();\n }\n\n if (!ipv6Hostname) {\n // IDNA Support: Returns a punycoded representation of \"domain\".\n // It only converts parts of the domain name that\n // have non-ASCII characters, i.e. it doesn't matter if\n // you call it with a domain that already is ASCII-only.\n self.hostname = toASCII(self.hostname);\n }\n\n p = self.port ? ':' + self.port : '';\n var h = self.hostname || '';\n self.host = h + p;\n self.href += self.host;\n\n // strip [ and ] from the hostname\n // the host field still retains them, though\n if (ipv6Hostname) {\n self.hostname = self.hostname.substr(1, self.hostname.length - 2);\n if (rest[0] !== '/') {\n rest = '/' + rest;\n }\n }\n }\n\n // now rest is set to the post-host stuff.\n // chop off any delim chars.\n if (!unsafeProtocol[lowerProto]) {\n\n // First, make 100% sure that any \"autoEscape\" chars get\n // escaped, even if encodeURIComponent doesn't think they\n // need to be.\n for (i = 0, l = autoEscape.length; i < l; i++) {\n var ae = autoEscape[i];\n if (rest.indexOf(ae) === -1)\n continue;\n var esc = encodeURIComponent(ae);\n if (esc === ae) {\n esc = escape(ae);\n }\n rest = rest.split(ae).join(esc);\n }\n }\n\n\n // chop off from the tail first.\n var hash = rest.indexOf('#');\n if (hash !== -1) {\n // got a fragment string.\n self.hash = rest.substr(hash);\n rest = rest.slice(0, hash);\n }\n var qm = rest.indexOf('?');\n if (qm !== -1) {\n self.search = rest.substr(qm);\n self.query = rest.substr(qm + 1);\n if (parseQueryString) {\n self.query = qsParse(self.query);\n }\n rest = rest.slice(0, qm);\n } else if (parseQueryString) {\n // no query string, but parseQueryString still requested\n self.search = '';\n self.query = {};\n }\n if (rest) self.pathname = rest;\n if (slashedProtocol[lowerProto] &&\n self.hostname && !self.pathname) {\n self.pathname = '/';\n }\n\n //to support http.request\n if (self.pathname || self.search) {\n p = self.pathname || '';\n var s = self.search || '';\n self.path = p + s;\n }\n\n // finally, reconstruct the href based on what has been validated.\n self.href = format(self);\n return self;\n}\n\n// format a parsed object into a url string\nfunction urlFormat(obj) {\n // ensure it's an object, and not a string url.\n // If it's an obj, this is a no-op.\n // this way, you can call url_format() on strings\n // to clean up potentially wonky urls.\n if (isString(obj)) obj = parse({}, obj);\n return format(obj);\n}\n\nfunction format(self) {\n var auth = self.auth || '';\n if (auth) {\n auth = encodeURIComponent(auth);\n auth = auth.replace(/%3A/i, ':');\n auth += '@';\n }\n\n var protocol = self.protocol || '',\n pathname = self.pathname || '',\n hash = self.hash || '',\n host = false,\n query = '';\n\n if (self.host) {\n host = auth + self.host;\n } else if (self.hostname) {\n host = auth + (self.hostname.indexOf(':') === -1 ?\n self.hostname :\n '[' + this.hostname + ']');\n if (self.port) {\n host += ':' + self.port;\n }\n }\n\n if (self.query &&\n isObject(self.query) &&\n Object.keys(self.query).length) {\n query = qsStringify(self.query);\n }\n\n var search = self.search || (query && ('?' + query)) || '';\n\n if (protocol && protocol.substr(-1) !== ':') protocol += ':';\n\n // only the slashedProtocols get the //. Not mailto:, xmpp:, etc.\n // unless they had them to begin with.\n if (self.slashes ||\n (!protocol || slashedProtocol[protocol]) && host !== false) {\n host = '//' + (host || '');\n if (pathname && pathname.charAt(0) !== '/') pathname = '/' + pathname;\n } else if (!host) {\n host = '';\n }\n\n if (hash && hash.charAt(0) !== '#') hash = '#' + hash;\n if (search && search.charAt(0) !== '?') search = '?' + search;\n\n pathname = pathname.replace(/[?#]/g, function(match) {\n return encodeURIComponent(match);\n });\n search = search.replace('#', '%23');\n\n return protocol + host + pathname + search + hash;\n}\n\nUrl.prototype.format = function() {\n return format(this);\n}\n\nfunction urlResolve(source, relative) {\n return urlParse(source, false, true).resolve(relative);\n}\n\nUrl.prototype.resolve = function(relative) {\n return this.resolveObject(urlParse(relative, false, true)).format();\n};\n\nfunction urlResolveObject(source, relative) {\n if (!source) return relative;\n return urlParse(source, false, true).resolveObject(relative);\n}\n\nUrl.prototype.resolveObject = function(relative) {\n if (isString(relative)) {\n var rel = new Url();\n rel.parse(relative, false, true);\n relative = rel;\n }\n\n var result = new Url();\n var tkeys = Object.keys(this);\n for (var tk = 0; tk < tkeys.length; tk++) {\n var tkey = tkeys[tk];\n result[tkey] = this[tkey];\n }\n\n // hash is always overridden, no matter what.\n // even href=\"\" will remove it.\n result.hash = relative.hash;\n\n // if the relative url is empty, then there's nothing left to do here.\n if (relative.href === '') {\n result.href = result.format();\n return result;\n }\n\n // hrefs like //foo/bar always cut to the protocol.\n if (relative.slashes && !relative.protocol) {\n // take everything except the protocol from relative\n var rkeys = Object.keys(relative);\n for (var rk = 0; rk < rkeys.length; rk++) {\n var rkey = rkeys[rk];\n if (rkey !== 'protocol')\n result[rkey] = relative[rkey];\n }\n\n //urlParse appends trailing / to urls like http://www.example.com\n if (slashedProtocol[result.protocol] &&\n result.hostname && !result.pathname) {\n result.path = result.pathname = '/';\n }\n\n result.href = result.format();\n return result;\n }\n var relPath;\n if (relative.protocol && relative.protocol !== result.protocol) {\n // if it's a known url protocol, then changing\n // the protocol does weird things\n // first, if it's not file:, then we MUST have a host,\n // and if there was a path\n // to begin with, then we MUST have a path.\n // if it is file:, then the host is dropped,\n // because that's known to be hostless.\n // anything else is assumed to be absolute.\n if (!slashedProtocol[relative.protocol]) {\n var keys = Object.keys(relative);\n for (var v = 0; v < keys.length; v++) {\n var k = keys[v];\n result[k] = relative[k];\n }\n result.href = result.format();\n return result;\n }\n\n result.protocol = relative.protocol;\n if (!relative.host && !hostlessProtocol[relative.protocol]) {\n relPath = (relative.pathname || '').split('/');\n while (relPath.length && !(relative.host = relPath.shift()));\n if (!relative.host) relative.host = '';\n if (!relative.hostname) relative.hostname = '';\n if (relPath[0] !== '') relPath.unshift('');\n if (relPath.length < 2) relPath.unshift('');\n result.pathname = relPath.join('/');\n } else {\n result.pathname = relative.pathname;\n }\n result.search = relative.search;\n result.query = relative.query;\n result.host = relative.host || '';\n result.auth = relative.auth;\n result.hostname = relative.hostname || relative.host;\n result.port = relative.port;\n // to support http.request\n if (result.pathname || result.search) {\n var p = result.pathname || '';\n var s = result.search || '';\n result.path = p + s;\n }\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n }\n\n var isSourceAbs = (result.pathname && result.pathname.charAt(0) === '/'),\n isRelAbs = (\n relative.host ||\n relative.pathname && relative.pathname.charAt(0) === '/'\n ),\n mustEndAbs = (isRelAbs || isSourceAbs ||\n (result.host && relative.pathname)),\n removeAllDots = mustEndAbs,\n srcPath = result.pathname && result.pathname.split('/') || [],\n psychotic = result.protocol && !slashedProtocol[result.protocol];\n relPath = relative.pathname && relative.pathname.split('/') || [];\n // if the url is a non-slashed url, then relative\n // links like ../.. should be able\n // to crawl up to the hostname, as well. This is strange.\n // result.protocol has already been set by now.\n // Later on, put the first path part into the host field.\n if (psychotic) {\n result.hostname = '';\n result.port = null;\n if (result.host) {\n if (srcPath[0] === '') srcPath[0] = result.host;\n else srcPath.unshift(result.host);\n }\n result.host = '';\n if (relative.protocol) {\n relative.hostname = null;\n relative.port = null;\n if (relative.host) {\n if (relPath[0] === '') relPath[0] = relative.host;\n else relPath.unshift(relative.host);\n }\n relative.host = null;\n }\n mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === '');\n }\n var authInHost;\n if (isRelAbs) {\n // it's absolute.\n result.host = (relative.host || relative.host === '') ?\n relative.host : result.host;\n result.hostname = (relative.hostname || relative.hostname === '') ?\n relative.hostname : result.hostname;\n result.search = relative.search;\n result.query = relative.query;\n srcPath = relPath;\n // fall through to the dot-handling below.\n } else if (relPath.length) {\n // it's relative\n // throw away the existing file, and take the new path instead.\n if (!srcPath) srcPath = [];\n srcPath.pop();\n srcPath = srcPath.concat(relPath);\n result.search = relative.search;\n result.query = relative.query;\n } else if (!isNullOrUndefined(relative.search)) {\n // just pull out the search.\n // like href='?foo'.\n // Put this after the other two cases because it simplifies the booleans\n if (psychotic) {\n result.hostname = result.host = srcPath.shift();\n //occationaly the auth can get stuck only in host\n //this especially happens in cases like\n //url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n authInHost = result.host && result.host.indexOf('@') > 0 ?\n result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.host = result.hostname = authInHost.shift();\n }\n }\n result.search = relative.search;\n result.query = relative.query;\n //to support http.request\n if (!isNull(result.pathname) || !isNull(result.search)) {\n result.path = (result.pathname ? result.pathname : '') +\n (result.search ? result.search : '');\n }\n result.href = result.format();\n return result;\n }\n\n if (!srcPath.length) {\n // no path at all. easy.\n // we've already handled the other stuff above.\n result.pathname = null;\n //to support http.request\n if (result.search) {\n result.path = '/' + result.search;\n } else {\n result.path = null;\n }\n result.href = result.format();\n return result;\n }\n\n // if a url ENDs in . or .., then it must get a trailing slash.\n // however, if it ends in anything else non-slashy,\n // then it must NOT get a trailing slash.\n var last = srcPath.slice(-1)[0];\n var hasTrailingSlash = (\n (result.host || relative.host || srcPath.length > 1) &&\n (last === '.' || last === '..') || last === '');\n\n // strip single dots, resolve double dots to parent dir\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = srcPath.length; i >= 0; i--) {\n last = srcPath[i];\n if (last === '.') {\n srcPath.splice(i, 1);\n } else if (last === '..') {\n srcPath.splice(i, 1);\n up++;\n } else if (up) {\n srcPath.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (!mustEndAbs && !removeAllDots) {\n for (; up--; up) {\n srcPath.unshift('..');\n }\n }\n\n if (mustEndAbs && srcPath[0] !== '' &&\n (!srcPath[0] || srcPath[0].charAt(0) !== '/')) {\n srcPath.unshift('');\n }\n\n if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) {\n srcPath.push('');\n }\n\n var isAbsolute = srcPath[0] === '' ||\n (srcPath[0] && srcPath[0].charAt(0) === '/');\n\n // put the host back\n if (psychotic) {\n result.hostname = result.host = isAbsolute ? '' :\n srcPath.length ? srcPath.shift() : '';\n //occationaly the auth can get stuck only in host\n //this especially happens in cases like\n //url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n authInHost = result.host && result.host.indexOf('@') > 0 ?\n result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.host = result.hostname = authInHost.shift();\n }\n }\n\n mustEndAbs = mustEndAbs || (result.host && srcPath.length);\n\n if (mustEndAbs && !isAbsolute) {\n srcPath.unshift('');\n }\n\n if (!srcPath.length) {\n result.pathname = null;\n result.path = null;\n } else {\n result.pathname = srcPath.join('/');\n }\n\n //to support request.http\n if (!isNull(result.pathname) || !isNull(result.search)) {\n result.path = (result.pathname ? result.pathname : '') +\n (result.search ? result.search : '');\n }\n result.auth = relative.auth || result.auth;\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n};\n\nUrl.prototype.parseHost = function() {\n return parseHost(this);\n};\n\nfunction parseHost(self) {\n var host = self.host;\n var port = portPattern.exec(host);\n if (port) {\n port = port[0];\n if (port !== ':') {\n self.port = port.substr(1);\n }\n host = host.substr(0, host.length - port.length);\n }\n if (host) self.hostname = host;\n}\n","/*!\n * @pixi/constants - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/constants is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * Different types of environments for WebGL.\n *\n * @static\n * @memberof PIXI\n * @name ENV\n * @enum {number}\n * @property {number} WEBGL_LEGACY - Used for older v1 WebGL devices. PixiJS will aim to ensure compatibility\n * with older / less advanced devices. If you experience unexplained flickering prefer this environment.\n * @property {number} WEBGL - Version 1 of WebGL\n * @property {number} WEBGL2 - Version 2 of WebGL\n */\nvar ENV = {\n WEBGL_LEGACY: 0,\n WEBGL: 1,\n WEBGL2: 2,\n};\n\n/**\n * Constant to identify the Renderer Type.\n *\n * @static\n * @memberof PIXI\n * @name RENDERER_TYPE\n * @enum {number}\n * @property {number} UNKNOWN - Unknown render type.\n * @property {number} WEBGL - WebGL render type.\n * @property {number} CANVAS - Canvas render type.\n */\nvar RENDERER_TYPE = {\n UNKNOWN: 0,\n WEBGL: 1,\n CANVAS: 2,\n};\n\n/**\n * Various blend modes supported by PIXI.\n *\n * IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes.\n * Anything else will silently act like NORMAL.\n *\n * @memberof PIXI\n * @name BLEND_MODES\n * @enum {number}\n * @property {number} NORMAL\n * @property {number} ADD\n * @property {number} MULTIPLY\n * @property {number} SCREEN\n * @property {number} OVERLAY\n * @property {number} DARKEN\n * @property {number} LIGHTEN\n * @property {number} COLOR_DODGE\n * @property {number} COLOR_BURN\n * @property {number} HARD_LIGHT\n * @property {number} SOFT_LIGHT\n * @property {number} DIFFERENCE\n * @property {number} EXCLUSION\n * @property {number} HUE\n * @property {number} SATURATION\n * @property {number} COLOR\n * @property {number} LUMINOSITY\n * @property {number} NORMAL_NPM\n * @property {number} ADD_NPM\n * @property {number} SCREEN_NPM\n * @property {number} NONE\n * @property {number} SRC_IN\n * @property {number} SRC_OUT\n * @property {number} SRC_ATOP\n * @property {number} DST_OVER\n * @property {number} DST_IN\n * @property {number} DST_OUT\n * @property {number} DST_ATOP\n * @property {number} SUBTRACT\n * @property {number} SRC_OVER\n * @property {number} ERASE\n */\nvar BLEND_MODES = {\n NORMAL: 0,\n ADD: 1,\n MULTIPLY: 2,\n SCREEN: 3,\n OVERLAY: 4,\n DARKEN: 5,\n LIGHTEN: 6,\n COLOR_DODGE: 7,\n COLOR_BURN: 8,\n HARD_LIGHT: 9,\n SOFT_LIGHT: 10,\n DIFFERENCE: 11,\n EXCLUSION: 12,\n HUE: 13,\n SATURATION: 14,\n COLOR: 15,\n LUMINOSITY: 16,\n NORMAL_NPM: 17,\n ADD_NPM: 18,\n SCREEN_NPM: 19,\n NONE: 20,\n\n SRC_OVER: 0,\n SRC_IN: 21,\n SRC_OUT: 22,\n SRC_ATOP: 23,\n DST_OVER: 24,\n DST_IN: 25,\n DST_OUT: 26,\n DST_ATOP: 27,\n ERASE: 26,\n SUBTRACT: 28,\n};\n\n/**\n * Various webgl draw modes. These can be used to specify which GL drawMode to use\n * under certain situations and renderers.\n *\n * @memberof PIXI\n * @static\n * @name DRAW_MODES\n * @enum {number}\n * @property {number} POINTS\n * @property {number} LINES\n * @property {number} LINE_LOOP\n * @property {number} LINE_STRIP\n * @property {number} TRIANGLES\n * @property {number} TRIANGLE_STRIP\n * @property {number} TRIANGLE_FAN\n */\nvar DRAW_MODES = {\n POINTS: 0,\n LINES: 1,\n LINE_LOOP: 2,\n LINE_STRIP: 3,\n TRIANGLES: 4,\n TRIANGLE_STRIP: 5,\n TRIANGLE_FAN: 6,\n};\n\n/**\n * Various GL texture/resources formats.\n *\n * @memberof PIXI\n * @static\n * @name FORMATS\n * @enum {number}\n * @property {number} RGBA=6408\n * @property {number} RGB=6407\n * @property {number} ALPHA=6406\n * @property {number} LUMINANCE=6409\n * @property {number} LUMINANCE_ALPHA=6410\n * @property {number} DEPTH_COMPONENT=6402\n * @property {number} DEPTH_STENCIL=34041\n */\nvar FORMATS = {\n RGBA: 6408,\n RGB: 6407,\n ALPHA: 6406,\n LUMINANCE: 6409,\n LUMINANCE_ALPHA: 6410,\n DEPTH_COMPONENT: 6402,\n DEPTH_STENCIL: 34041,\n};\n\n/**\n * Various GL target types.\n *\n * @memberof PIXI\n * @static\n * @name TARGETS\n * @enum {number}\n * @property {number} TEXTURE_2D=3553\n * @property {number} TEXTURE_CUBE_MAP=34067\n * @property {number} TEXTURE_2D_ARRAY=35866\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_X=34069\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_X=34070\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Y=34071\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Y=34072\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Z=34073\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Z=34074\n */\nvar TARGETS = {\n TEXTURE_2D: 3553,\n TEXTURE_CUBE_MAP: 34067,\n TEXTURE_2D_ARRAY: 35866,\n TEXTURE_CUBE_MAP_POSITIVE_X: 34069,\n TEXTURE_CUBE_MAP_NEGATIVE_X: 34070,\n TEXTURE_CUBE_MAP_POSITIVE_Y: 34071,\n TEXTURE_CUBE_MAP_NEGATIVE_Y: 34072,\n TEXTURE_CUBE_MAP_POSITIVE_Z: 34073,\n TEXTURE_CUBE_MAP_NEGATIVE_Z: 34074,\n};\n\n/**\n * Various GL data format types.\n *\n * @memberof PIXI\n * @static\n * @name TYPES\n * @enum {number}\n * @property {number} UNSIGNED_BYTE=5121\n * @property {number} UNSIGNED_SHORT=5123\n * @property {number} UNSIGNED_SHORT_5_6_5=33635\n * @property {number} UNSIGNED_SHORT_4_4_4_4=32819\n * @property {number} UNSIGNED_SHORT_5_5_5_1=32820\n * @property {number} FLOAT=5126\n * @property {number} HALF_FLOAT=36193\n */\nvar TYPES = {\n UNSIGNED_BYTE: 5121,\n UNSIGNED_SHORT: 5123,\n UNSIGNED_SHORT_5_6_5: 33635,\n UNSIGNED_SHORT_4_4_4_4: 32819,\n UNSIGNED_SHORT_5_5_5_1: 32820,\n FLOAT: 5126,\n HALF_FLOAT: 36193,\n};\n\n/**\n * The scale modes that are supported by pixi.\n *\n * The {@link PIXI.settings.SCALE_MODE} scale mode affects the default scaling mode of future operations.\n * It can be re-assigned to either LINEAR or NEAREST, depending upon suitability.\n *\n * @memberof PIXI\n * @static\n * @name SCALE_MODES\n * @enum {number}\n * @property {number} LINEAR Smooth scaling\n * @property {number} NEAREST Pixelating scaling\n */\nvar SCALE_MODES = {\n LINEAR: 1,\n NEAREST: 0,\n};\n\n/**\n * The wrap modes that are supported by pixi.\n *\n * The {@link PIXI.settings.WRAP_MODE} wrap mode affects the default wrapping mode of future operations.\n * It can be re-assigned to either CLAMP or REPEAT, depending upon suitability.\n * If the texture is non power of two then clamp will be used regardless as WebGL can\n * only use REPEAT if the texture is po2.\n *\n * This property only affects WebGL.\n *\n * @name WRAP_MODES\n * @memberof PIXI\n * @static\n * @enum {number}\n * @property {number} CLAMP - The textures uvs are clamped\n * @property {number} REPEAT - The texture uvs tile and repeat\n * @property {number} MIRRORED_REPEAT - The texture uvs tile and repeat with mirroring\n */\nvar WRAP_MODES = {\n CLAMP: 33071,\n REPEAT: 10497,\n MIRRORED_REPEAT: 33648,\n};\n\n/**\n * Mipmap filtering modes that are supported by pixi.\n *\n * The {@link PIXI.settings.MIPMAP_TEXTURES} affects default texture filtering.\n * Mipmaps are generated for a baseTexture if its `mipmap` field is `ON`,\n * or its `POW2` and texture dimensions are powers of 2.\n * Due to platform restriction, `ON` option will work like `POW2` for webgl-1.\n *\n * This property only affects WebGL.\n *\n * @name MIPMAP_MODES\n * @memberof PIXI\n * @static\n * @enum {number}\n * @property {number} OFF - No mipmaps\n * @property {number} POW2 - Generate mipmaps if texture dimensions are pow2\n * @property {number} ON - Always generate mipmaps\n */\nvar MIPMAP_MODES = {\n OFF: 0,\n POW2: 1,\n ON: 2,\n};\n\n/**\n * The gc modes that are supported by pixi.\n *\n * The {@link PIXI.settings.GC_MODE} Garbage Collection mode for PixiJS textures is AUTO\n * If set to GC_MODE, the renderer will occasionally check textures usage. If they are not\n * used for a specified period of time they will be removed from the GPU. They will of course\n * be uploaded again when they are required. This is a silent behind the scenes process that\n * should ensure that the GPU does not get filled up.\n *\n * Handy for mobile devices!\n * This property only affects WebGL.\n *\n * @name GC_MODES\n * @enum {number}\n * @static\n * @memberof PIXI\n * @property {number} AUTO - Garbage collection will happen periodically automatically\n * @property {number} MANUAL - Garbage collection will need to be called manually\n */\nvar GC_MODES = {\n AUTO: 0,\n MANUAL: 1,\n};\n\n/**\n * Constants that specify float precision in shaders.\n *\n * @name PRECISION\n * @memberof PIXI\n * @static\n * @enum {string}\n * @constant\n * @property {string} LOW='lowp'\n * @property {string} MEDIUM='mediump'\n * @property {string} HIGH='highp'\n */\nvar PRECISION = {\n LOW: 'lowp',\n MEDIUM: 'mediump',\n HIGH: 'highp',\n};\n\nexport { BLEND_MODES, DRAW_MODES, ENV, FORMATS, GC_MODES, MIPMAP_MODES, PRECISION, RENDERER_TYPE, SCALE_MODES, TARGETS, TYPES, WRAP_MODES };\n//# sourceMappingURL=constants.es.js.map\n","/*!\n * @pixi/utils - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/utils is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nexport { isMobile } from '@pixi/settings';\nexport { default as EventEmitter } from 'eventemitter3';\nexport { default as earcut } from 'earcut';\nimport _url from 'url';\nexport { default as url } from 'url';\nimport { BLEND_MODES } from '@pixi/constants';\n\n/**\n * The prefix that denotes a URL is for a retina asset.\n *\n * @static\n * @name RETINA_PREFIX\n * @memberof PIXI.settings\n * @type {RegExp}\n * @default /@([0-9\\.]+)x/\n * @example `@2x`\n */\nsettings.RETINA_PREFIX = /@([0-9\\.]+)x/;\n\n/**\n * Should the `failIfMajorPerformanceCaveat` flag be enabled as a context option used in the `isWebGLSupported` function.\n * For most scenarios this should be left as true, as otherwise the user may have a poor experience.\n * However, it can be useful to disable under certain scenarios, such as headless unit tests.\n *\n * @static\n * @name FAIL_IF_MAJOR_PERFORMANCE_CAVEAT\n * @memberof PIXI.settings\n * @type {boolean}\n * @default true\n */\nsettings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = true;\n\nvar saidHello = false;\nvar VERSION = '5.1.3';\n\n/**\n * Skips the hello message of renderers that are created after this is run.\n *\n * @function skipHello\n * @memberof PIXI.utils\n */\nfunction skipHello()\n{\n saidHello = true;\n}\n\n/**\n * Logs out the version and renderer information for this running instance of PIXI.\n * If you don't want to see this message you can run `PIXI.utils.skipHello()` before\n * creating your renderer. Keep in mind that doing that will forever make you a jerk face.\n *\n * @static\n * @function sayHello\n * @memberof PIXI.utils\n * @param {string} type - The string renderer type to log.\n */\nfunction sayHello(type)\n{\n if (saidHello)\n {\n return;\n }\n\n if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)\n {\n var args = [\n (\"\\n %c %c %c PixiJS \" + VERSION + \" - ✰ \" + type + \" ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \\n\\n\"),\n 'background: #ff66a5; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'color: #ff66a5; background: #030307; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'background: #ffc3dc; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;' ];\n\n window.console.log.apply(console, args);\n }\n else if (window.console)\n {\n window.console.log((\"PixiJS \" + VERSION + \" - \" + type + \" - http://www.pixijs.com/\"));\n }\n\n saidHello = true;\n}\n\nvar supported;\n\n/**\n * Helper for checking for WebGL support.\n *\n * @memberof PIXI.utils\n * @function isWebGLSupported\n * @return {boolean} Is WebGL supported.\n */\nfunction isWebGLSupported()\n{\n if (typeof supported === 'undefined')\n {\n supported = (function supported()\n {\n var contextOptions = {\n stencil: true,\n failIfMajorPerformanceCaveat: settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT,\n };\n\n try\n {\n if (!window.WebGLRenderingContext)\n {\n return false;\n }\n\n var canvas = document.createElement('canvas');\n var gl = canvas.getContext('webgl', contextOptions)\n || canvas.getContext('experimental-webgl', contextOptions);\n\n var success = !!(gl && gl.getContextAttributes().stencil);\n\n if (gl)\n {\n var loseContext = gl.getExtension('WEBGL_lose_context');\n\n if (loseContext)\n {\n loseContext.loseContext();\n }\n }\n\n gl = null;\n\n return success;\n }\n catch (e)\n {\n return false;\n }\n })();\n }\n\n return supported;\n}\n\n/**\n * Converts a hexadecimal color number to an [R, G, B] array of normalized floats (numbers from 0.0 to 1.0).\n *\n * @example\n * PIXI.utils.hex2rgb(0xffffff); // returns [1, 1, 1]\n * @memberof PIXI.utils\n * @function hex2rgb\n * @param {number} hex - The hexadecimal number to convert\n * @param {number[]} [out=[]] If supplied, this array will be used rather than returning a new one\n * @return {number[]} An array representing the [R, G, B] of the color where all values are floats.\n */\nfunction hex2rgb(hex, out)\n{\n out = out || [];\n\n out[0] = ((hex >> 16) & 0xFF) / 255;\n out[1] = ((hex >> 8) & 0xFF) / 255;\n out[2] = (hex & 0xFF) / 255;\n\n return out;\n}\n\n/**\n * Converts a hexadecimal color number to a string.\n *\n * @example\n * PIXI.utils.hex2string(0xffffff); // returns \"#ffffff\"\n * @memberof PIXI.utils\n * @function hex2string\n * @param {number} hex - Number in hex (e.g., `0xffffff`)\n * @return {string} The string color (e.g., `\"#ffffff\"`).\n */\nfunction hex2string(hex)\n{\n hex = hex.toString(16);\n hex = '000000'.substr(0, 6 - hex.length) + hex;\n\n return (\"#\" + hex);\n}\n\n/**\n * Converts a hexadecimal string to a hexadecimal color number.\n *\n * @example\n * PIXI.utils.string2hex(\"#ffffff\"); // returns 0xffffff\n * @memberof PIXI.utils\n * @function string2hex\n * @param {string} The string color (e.g., `\"#ffffff\"`)\n * @return {number} Number in hexadecimal.\n */\nfunction string2hex(string)\n{\n if (typeof string === 'string' && string[0] === '#')\n {\n string = string.substr(1);\n }\n\n return parseInt(string, 16);\n}\n\n/**\n * Converts a color as an [R, G, B] array of normalized floats to a hexadecimal number.\n *\n * @example\n * PIXI.utils.rgb2hex([1, 1, 1]); // returns 0xffffff\n * @memberof PIXI.utils\n * @function rgb2hex\n * @param {number[]} rgb - Array of numbers where all values are normalized floats from 0.0 to 1.0.\n * @return {number} Number in hexadecimal.\n */\nfunction rgb2hex(rgb)\n{\n return (((rgb[0] * 255) << 16) + ((rgb[1] * 255) << 8) + (rgb[2] * 255 | 0));\n}\n\n/**\n * Corrects PixiJS blend, takes premultiplied alpha into account\n *\n * @memberof PIXI.utils\n * @function mapPremultipliedBlendModes\n * @private\n * @param {Array} [array] - The array to output into.\n * @return {Array} Mapped modes.\n */\nfunction mapPremultipliedBlendModes()\n{\n var pm = [];\n var npm = [];\n\n for (var i = 0; i < 32; i++)\n {\n pm[i] = i;\n npm[i] = i;\n }\n\n pm[BLEND_MODES.NORMAL_NPM] = BLEND_MODES.NORMAL;\n pm[BLEND_MODES.ADD_NPM] = BLEND_MODES.ADD;\n pm[BLEND_MODES.SCREEN_NPM] = BLEND_MODES.SCREEN;\n\n npm[BLEND_MODES.NORMAL] = BLEND_MODES.NORMAL_NPM;\n npm[BLEND_MODES.ADD] = BLEND_MODES.ADD_NPM;\n npm[BLEND_MODES.SCREEN] = BLEND_MODES.SCREEN_NPM;\n\n var array = [];\n\n array.push(npm);\n array.push(pm);\n\n return array;\n}\n\n/**\n * maps premultiply flag and blendMode to adjusted blendMode\n * @memberof PIXI.utils\n * @const premultiplyBlendMode\n * @type {Array}\n */\nvar premultiplyBlendMode = mapPremultipliedBlendModes();\n\n/**\n * changes blendMode according to texture format\n *\n * @memberof PIXI.utils\n * @function correctBlendMode\n * @param {number} blendMode supposed blend mode\n * @param {boolean} premultiplied whether source is premultiplied\n * @returns {number} true blend mode for this texture\n */\nfunction correctBlendMode(blendMode, premultiplied)\n{\n return premultiplyBlendMode[premultiplied ? 1 : 0][blendMode];\n}\n\n/**\n * combines rgb and alpha to out array\n *\n * @memberof PIXI.utils\n * @function premultiplyRgba\n * @param {Float32Array|number[]} rgb input rgb\n * @param {number} alpha alpha param\n * @param {Float32Array} [out] output\n * @param {boolean} [premultiply=true] do premultiply it\n * @returns {Float32Array} vec4 rgba\n */\nfunction premultiplyRgba(rgb, alpha, out, premultiply)\n{\n out = out || new Float32Array(4);\n if (premultiply || premultiply === undefined)\n {\n out[0] = rgb[0] * alpha;\n out[1] = rgb[1] * alpha;\n out[2] = rgb[2] * alpha;\n }\n else\n {\n out[0] = rgb[0];\n out[1] = rgb[1];\n out[2] = rgb[2];\n }\n out[3] = alpha;\n\n return out;\n}\n\n/**\n * premultiplies tint\n *\n * @memberof PIXI.utils\n * @function premultiplyTint\n * @param {number} tint integer RGB\n * @param {number} alpha floating point alpha (0.0-1.0)\n * @returns {number} tint multiplied by alpha\n */\nfunction premultiplyTint(tint, alpha)\n{\n if (alpha === 1.0)\n {\n return (alpha * 255 << 24) + tint;\n }\n if (alpha === 0.0)\n {\n return 0;\n }\n var R = ((tint >> 16) & 0xFF);\n var G = ((tint >> 8) & 0xFF);\n var B = (tint & 0xFF);\n\n R = ((R * alpha) + 0.5) | 0;\n G = ((G * alpha) + 0.5) | 0;\n B = ((B * alpha) + 0.5) | 0;\n\n return (alpha * 255 << 24) + (R << 16) + (G << 8) + B;\n}\n\n/**\n * converts integer tint and float alpha to vec4 form, premultiplies by default\n *\n * @memberof PIXI.utils\n * @function premultiplyTintToRgba\n * @param {number} tint input tint\n * @param {number} alpha alpha param\n * @param {Float32Array} [out] output\n * @param {boolean} [premultiply=true] do premultiply it\n * @returns {Float32Array} vec4 rgba\n */\nfunction premultiplyTintToRgba(tint, alpha, out, premultiply)\n{\n out = out || new Float32Array(4);\n out[0] = ((tint >> 16) & 0xFF) / 255.0;\n out[1] = ((tint >> 8) & 0xFF) / 255.0;\n out[2] = (tint & 0xFF) / 255.0;\n if (premultiply || premultiply === undefined)\n {\n out[0] *= alpha;\n out[1] *= alpha;\n out[2] *= alpha;\n }\n out[3] = alpha;\n\n return out;\n}\n\n/**\n * Generic Mask Stack data structure\n *\n * @memberof PIXI.utils\n * @function createIndicesForQuads\n * @param {number} size - Number of quads\n * @param {Uint16Array|Uint32Array} [outBuffer] - Buffer for output, length has to be `6 * size`\n * @return {Uint16Array|Uint32Array} - Resulting index buffer\n */\nfunction createIndicesForQuads(size, outBuffer)\n{\n if ( outBuffer === void 0 ) outBuffer = null;\n\n // the total number of indices in our array, there are 6 points per quad.\n var totalIndices = size * 6;\n\n outBuffer = outBuffer || new Uint16Array(totalIndices);\n\n if (outBuffer.length !== totalIndices)\n {\n throw new Error((\"Out buffer length is incorrect, got \" + (outBuffer.length) + \" and expected \" + totalIndices));\n }\n\n // fill the indices with the quads to draw\n for (var i = 0, j = 0; i < totalIndices; i += 6, j += 4)\n {\n outBuffer[i + 0] = j + 0;\n outBuffer[i + 1] = j + 1;\n outBuffer[i + 2] = j + 2;\n outBuffer[i + 3] = j + 0;\n outBuffer[i + 4] = j + 2;\n outBuffer[i + 5] = j + 3;\n }\n\n return outBuffer;\n}\n\n/**\n * Remove items from a javascript array without generating garbage\n *\n * @function removeItems\n * @memberof PIXI.utils\n * @param {Array} arr Array to remove elements from\n * @param {number} startIdx starting index\n * @param {number} removeCount how many to remove\n */\nfunction removeItems(arr, startIdx, removeCount)\n{\n var length = arr.length;\n var i;\n\n if (startIdx >= length || removeCount === 0)\n {\n return;\n }\n\n removeCount = (startIdx + removeCount > length ? length - startIdx : removeCount);\n\n var len = length - removeCount;\n\n for (i = startIdx; i < len; ++i)\n {\n arr[i] = arr[i + removeCount];\n }\n\n arr.length = len;\n}\n\nvar nextUid = 0;\n\n/**\n * Gets the next unique identifier\n *\n * @memberof PIXI.utils\n * @function uid\n * @return {number} The next unique identifier to use.\n */\nfunction uid()\n{\n return ++nextUid;\n}\n\n/**\n * Returns sign of number\n *\n * @memberof PIXI.utils\n * @function sign\n * @param {number} n - the number to check the sign of\n * @returns {number} 0 if `n` is 0, -1 if `n` is negative, 1 if `n` is positive\n */\nfunction sign(n)\n{\n if (n === 0) { return 0; }\n\n return n < 0 ? -1 : 1;\n}\n\n// Taken from the bit-twiddle package\n\n/**\n * Rounds to next power of two.\n *\n * @function nextPow2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {number}\n */\nfunction nextPow2(v)\n{\n v += v === 0;\n --v;\n v |= v >>> 1;\n v |= v >>> 2;\n v |= v >>> 4;\n v |= v >>> 8;\n v |= v >>> 16;\n\n return v + 1;\n}\n\n/**\n * Checks if a number is a power of two.\n *\n * @function isPow2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {boolean} `true` if value is power of two\n */\nfunction isPow2(v)\n{\n return !(v & (v - 1)) && (!!v);\n}\n\n/**\n * Computes ceil of log base 2\n *\n * @function log2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {number} logarithm base 2\n */\nfunction log2(v)\n{\n var r = (v > 0xFFFF) << 4;\n\n v >>>= r;\n\n var shift = (v > 0xFF) << 3;\n\n v >>>= shift; r |= shift;\n shift = (v > 0xF) << 2;\n v >>>= shift; r |= shift;\n shift = (v > 0x3) << 1;\n v >>>= shift; r |= shift;\n\n return r | (v >> 1);\n}\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name ProgramCache\n * @memberof PIXI.utils\n * @type {Object}\n */\nvar ProgramCache = {};\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name TextureCache\n * @memberof PIXI.utils\n * @type {Object}\n */\nvar TextureCache = Object.create(null);\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name BaseTextureCache\n * @memberof PIXI.utils\n * @type {Object}\n */\n\nvar BaseTextureCache = Object.create(null);\n/**\n * Destroys all texture in the cache\n *\n * @memberof PIXI.utils\n * @function destroyTextureCache\n */\nfunction destroyTextureCache()\n{\n var key;\n\n for (key in TextureCache)\n {\n TextureCache[key].destroy();\n }\n for (key in BaseTextureCache)\n {\n BaseTextureCache[key].destroy();\n }\n}\n\n/**\n * Removes all textures from cache, but does not destroy them\n *\n * @memberof PIXI.utils\n * @function clearTextureCache\n */\nfunction clearTextureCache()\n{\n var key;\n\n for (key in TextureCache)\n {\n delete TextureCache[key];\n }\n for (key in BaseTextureCache)\n {\n delete BaseTextureCache[key];\n }\n}\n\n/**\n * Trim transparent borders from a canvas\n *\n * @memberof PIXI.utils\n * @function trimCanvas\n * @param {HTMLCanvasElement} canvas - the canvas to trim\n * @returns {object} Trim data\n */\nfunction trimCanvas(canvas)\n{\n // https://gist.github.com/remy/784508\n\n var width = canvas.width;\n var height = canvas.height;\n\n var context = canvas.getContext('2d');\n var imageData = context.getImageData(0, 0, width, height);\n var pixels = imageData.data;\n var len = pixels.length;\n\n var bound = {\n top: null,\n left: null,\n right: null,\n bottom: null,\n };\n var data = null;\n var i;\n var x;\n var y;\n\n for (i = 0; i < len; i += 4)\n {\n if (pixels[i + 3] !== 0)\n {\n x = (i / 4) % width;\n y = ~~((i / 4) / width);\n\n if (bound.top === null)\n {\n bound.top = y;\n }\n\n if (bound.left === null)\n {\n bound.left = x;\n }\n else if (x < bound.left)\n {\n bound.left = x;\n }\n\n if (bound.right === null)\n {\n bound.right = x + 1;\n }\n else if (bound.right < x)\n {\n bound.right = x + 1;\n }\n\n if (bound.bottom === null)\n {\n bound.bottom = y;\n }\n else if (bound.bottom < y)\n {\n bound.bottom = y;\n }\n }\n }\n\n if (bound.top !== null)\n {\n width = bound.right - bound.left;\n height = bound.bottom - bound.top + 1;\n data = context.getImageData(bound.left, bound.top, width, height);\n }\n\n return {\n height: height,\n width: width,\n data: data,\n };\n}\n\n/**\n * Creates a Canvas element of the given size to be used as a target for rendering to.\n *\n * @class\n * @memberof PIXI.utils\n */\nvar CanvasRenderTarget = function CanvasRenderTarget(width, height, resolution)\n{\n /**\n * The Canvas object that belongs to this CanvasRenderTarget.\n *\n * @member {HTMLCanvasElement}\n */\n this.canvas = document.createElement('canvas');\n\n /**\n * A CanvasRenderingContext2D object representing a two-dimensional rendering context.\n *\n * @member {CanvasRenderingContext2D}\n */\n this.context = this.canvas.getContext('2d');\n\n this.resolution = resolution || settings.RESOLUTION;\n\n this.resize(width, height);\n};\n\nvar prototypeAccessors = { width: { configurable: true },height: { configurable: true } };\n\n/**\n * Clears the canvas that was created by the CanvasRenderTarget class.\n *\n * @private\n */\nCanvasRenderTarget.prototype.clear = function clear ()\n{\n this.context.setTransform(1, 0, 0, 1, 0, 0);\n this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);\n};\n\n/**\n * Resizes the canvas to the specified width and height.\n *\n * @param {number} width - the new width of the canvas\n * @param {number} height - the new height of the canvas\n */\nCanvasRenderTarget.prototype.resize = function resize (width, height)\n{\n this.canvas.width = width * this.resolution;\n this.canvas.height = height * this.resolution;\n};\n\n/**\n * Destroys this canvas.\n *\n */\nCanvasRenderTarget.prototype.destroy = function destroy ()\n{\n this.context = null;\n this.canvas = null;\n};\n\n/**\n * The width of the canvas buffer in pixels.\n *\n * @member {number}\n */\nprototypeAccessors.width.get = function ()\n{\n return this.canvas.width;\n};\n\nprototypeAccessors.width.set = function (val) // eslint-disable-line require-jsdoc\n{\n this.canvas.width = val;\n};\n\n/**\n * The height of the canvas buffer in pixels.\n *\n * @member {number}\n */\nprototypeAccessors.height.get = function ()\n{\n return this.canvas.height;\n};\n\nprototypeAccessors.height.set = function (val) // eslint-disable-line require-jsdoc\n{\n this.canvas.height = val;\n};\n\nObject.defineProperties( CanvasRenderTarget.prototype, prototypeAccessors );\n\n/**\n * Regexp for data URI.\n * Based on: {@link https://github.com/ragingwind/data-uri-regex}\n *\n * @static\n * @constant {RegExp|string} DATA_URI\n * @memberof PIXI\n * @example data:image/png;base64\n */\nvar DATA_URI = /^\\s*data:(?:([\\w-]+)\\/([\\w+.-]+))?(?:;charset=([\\w-]+))?(?:;(base64))?,(.*)/i;\n\n/**\n * Typedef for decomposeDataUri return object.\n *\n * @memberof PIXI.utils\n * @typedef {object} DecomposedDataUri\n * @property {string} mediaType Media type, eg. `image`\n * @property {string} subType Sub type, eg. `png`\n * @property {string} encoding Data encoding, eg. `base64`\n * @property {string} data The actual data\n */\n\n/**\n * Split a data URI into components. Returns undefined if\n * parameter `dataUri` is not a valid data URI.\n *\n * @memberof PIXI.utils\n * @function decomposeDataUri\n * @param {string} dataUri - the data URI to check\n * @return {PIXI.utils.DecomposedDataUri|undefined} The decomposed data uri or undefined\n */\nfunction decomposeDataUri(dataUri)\n{\n var dataUriMatch = DATA_URI.exec(dataUri);\n\n if (dataUriMatch)\n {\n return {\n mediaType: dataUriMatch[1] ? dataUriMatch[1].toLowerCase() : undefined,\n subType: dataUriMatch[2] ? dataUriMatch[2].toLowerCase() : undefined,\n charset: dataUriMatch[3] ? dataUriMatch[3].toLowerCase() : undefined,\n encoding: dataUriMatch[4] ? dataUriMatch[4].toLowerCase() : undefined,\n data: dataUriMatch[5],\n };\n }\n\n return undefined;\n}\n\nvar tempAnchor;\n\n/**\n * Sets the `crossOrigin` property for this resource based on if the url\n * for this resource is cross-origin. If crossOrigin was manually set, this\n * function does nothing.\n * Nipped from the resource loader!\n *\n * @ignore\n * @param {string} url - The url to test.\n * @param {object} [loc=window.location] - The location object to test against.\n * @return {string} The crossOrigin value to use (or empty string for none).\n */\nfunction determineCrossOrigin(url, loc)\n{\n if ( loc === void 0 ) loc = window.location;\n\n // data: and javascript: urls are considered same-origin\n if (url.indexOf('data:') === 0)\n {\n return '';\n }\n\n // default is window.location\n loc = loc || window.location;\n\n if (!tempAnchor)\n {\n tempAnchor = document.createElement('a');\n }\n\n // let the browser determine the full href for the url of this resource and then\n // parse with the node url lib, we can't use the properties of the anchor element\n // because they don't work in IE9 :(\n tempAnchor.href = url;\n url = _url.parse(tempAnchor.href);\n\n var samePort = (!url.port && loc.port === '') || (url.port === loc.port);\n\n // if cross origin\n if (url.hostname !== loc.hostname || !samePort || url.protocol !== loc.protocol)\n {\n return 'anonymous';\n }\n\n return '';\n}\n\n/**\n * get the resolution / device pixel ratio of an asset by looking for the prefix\n * used by spritesheets and image urls\n *\n * @memberof PIXI.utils\n * @function getResolutionOfUrl\n * @param {string} url - the image path\n * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set.\n * @return {number} resolution / device pixel ratio of an asset\n */\nfunction getResolutionOfUrl(url, defaultValue)\n{\n var resolution = settings.RETINA_PREFIX.exec(url);\n\n if (resolution)\n {\n return parseFloat(resolution[1]);\n }\n\n return defaultValue !== undefined ? defaultValue : 1;\n}\n\n// A map of warning messages already fired\nvar warnings = {};\n\n/**\n * Helper for warning developers about deprecated features & settings.\n * A stack track for warnings is given; useful for tracking-down where\n * deprecated methods/properties/classes are being used within the code.\n *\n * @memberof PIXI.utils\n * @function deprecation\n * @param {string} version - The version where the feature became deprecated\n * @param {string} message - Message should include what is deprecated, where, and the new solution\n * @param {number} [ignoreDepth=3] - The number of steps to ignore at the top of the error stack\n * this is mostly to ignore internal deprecation calls.\n */\nfunction deprecation(version, message, ignoreDepth)\n{\n if ( ignoreDepth === void 0 ) ignoreDepth = 3;\n\n // Ignore duplicat\n if (warnings[message])\n {\n return;\n }\n\n /* eslint-disable no-console */\n var stack = new Error().stack;\n\n // Handle IE < 10 and Safari < 6\n if (typeof stack === 'undefined')\n {\n console.warn('PixiJS Deprecation Warning: ', (message + \"\\nDeprecated since v\" + version));\n }\n else\n {\n // chop off the stack trace which includes PixiJS internal calls\n stack = stack.split('\\n').splice(ignoreDepth).join('\\n');\n\n if (console.groupCollapsed)\n {\n console.groupCollapsed(\n '%cPixiJS Deprecation Warning: %c%s',\n 'color:#614108;background:#fffbe6',\n 'font-weight:normal;color:#614108;background:#fffbe6',\n (message + \"\\nDeprecated since v\" + version)\n );\n console.warn(stack);\n console.groupEnd();\n }\n else\n {\n console.warn('PixiJS Deprecation Warning: ', (message + \"\\nDeprecated since v\" + version));\n console.warn(stack);\n }\n }\n /* eslint-enable no-console */\n\n warnings[message] = true;\n}\n\n/**\n * Generalized convenience utilities for PIXI.\n * @example\n * // Extend PIXI's internal Event Emitter.\n * class MyEmitter extends PIXI.utils.EventEmitter {\n * constructor() {\n * super();\n * console.log(\"Emitter created!\");\n * }\n * }\n *\n * // Get info on current device\n * console.log(PIXI.utils.isMobile);\n *\n * // Convert hex color to string\n * console.log(PIXI.utils.hex2string(0xff00ff)); // returns: \"#ff00ff\"\n * @namespace PIXI.utils\n */\n\nexport { BaseTextureCache, CanvasRenderTarget, DATA_URI, ProgramCache, TextureCache, clearTextureCache, correctBlendMode, createIndicesForQuads, decomposeDataUri, deprecation, destroyTextureCache, determineCrossOrigin, getResolutionOfUrl, hex2rgb, hex2string, isPow2, isWebGLSupported, log2, nextPow2, premultiplyBlendMode, premultiplyRgba, premultiplyTint, premultiplyTintToRgba, removeItems, rgb2hex, sayHello, sign, skipHello, string2hex, trimCanvas, uid };\n//# sourceMappingURL=utils.es.js.map\n","/*!\n * @pixi/math - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/math is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * The Point object represents a location in a two-dimensional coordinate system, where x represents\n * the horizontal axis and y represents the vertical axis.\n *\n * @class\n * @memberof PIXI\n */\nvar Point = function Point(x, y)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n};\n\n/**\n * Creates a clone of this point\n *\n * @return {PIXI.Point} a copy of the point\n */\nPoint.prototype.clone = function clone ()\n{\n return new Point(this.x, this.y);\n};\n\n/**\n * Copies x and y from the given point\n *\n * @param {PIXI.IPoint} p - The point to copy from\n * @returns {PIXI.IPoint} Returns itself.\n */\nPoint.prototype.copyFrom = function copyFrom (p)\n{\n this.set(p.x, p.y);\n\n return this;\n};\n\n/**\n * Copies x and y into the given point\n *\n * @param {PIXI.IPoint} p - The point to copy.\n * @returns {PIXI.IPoint} Given point with values updated\n */\nPoint.prototype.copyTo = function copyTo (p)\n{\n p.set(this.x, this.y);\n\n return p;\n};\n\n/**\n * Returns true if the given point is equal to this point\n *\n * @param {PIXI.IPoint} p - The point to check\n * @returns {boolean} Whether the given point equal to this point\n */\nPoint.prototype.equals = function equals (p)\n{\n return (p.x === this.x) && (p.y === this.y);\n};\n\n/**\n * Sets the point to a new x and y position.\n * If y is omitted, both x and y will be set to x.\n *\n * @param {number} [x=0] - position of the point on the x axis\n * @param {number} [y=0] - position of the point on the y axis\n */\nPoint.prototype.set = function set (x, y)\n{\n this.x = x || 0;\n this.y = y || ((y !== 0) ? this.x : 0);\n};\n\n/**\n * The Point object represents a location in a two-dimensional coordinate system, where x represents\n * the horizontal axis and y represents the vertical axis.\n *\n * An ObservablePoint is a point that triggers a callback when the point's position is changed.\n *\n * @class\n * @memberof PIXI\n */\nvar ObservablePoint = function ObservablePoint(cb, scope, x, y)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n this._x = x;\n this._y = y;\n\n this.cb = cb;\n this.scope = scope;\n};\n\nvar prototypeAccessors = { x: { configurable: true },y: { configurable: true } };\n\n/**\n * Creates a clone of this point.\n * The callback and scope params can be overidden otherwise they will default\n * to the clone object's values.\n *\n * @override\n * @param {Function} [cb=null] - callback when changed\n * @param {object} [scope=null] - owner of callback\n * @return {PIXI.ObservablePoint} a copy of the point\n */\nObservablePoint.prototype.clone = function clone (cb, scope)\n{\n if ( cb === void 0 ) cb = null;\n if ( scope === void 0 ) scope = null;\n\n var _cb = cb || this.cb;\n var _scope = scope || this.scope;\n\n return new ObservablePoint(_cb, _scope, this._x, this._y);\n};\n\n/**\n * Sets the point to a new x and y position.\n * If y is omitted, both x and y will be set to x.\n *\n * @param {number} [x=0] - position of the point on the x axis\n * @param {number} [y=0] - position of the point on the y axis\n */\nObservablePoint.prototype.set = function set (x, y)\n{\n var _x = x || 0;\n var _y = y || ((y !== 0) ? _x : 0);\n\n if (this._x !== _x || this._y !== _y)\n {\n this._x = _x;\n this._y = _y;\n this.cb.call(this.scope);\n }\n};\n\n/**\n * Copies x and y from the given point\n *\n * @param {PIXI.IPoint} p - The point to copy from.\n * @returns {PIXI.IPoint} Returns itself.\n */\nObservablePoint.prototype.copyFrom = function copyFrom (p)\n{\n if (this._x !== p.x || this._y !== p.y)\n {\n this._x = p.x;\n this._y = p.y;\n this.cb.call(this.scope);\n }\n\n return this;\n};\n\n/**\n * Copies x and y into the given point\n *\n * @param {PIXI.IPoint} p - The point to copy.\n * @returns {PIXI.IPoint} Given point with values updated\n */\nObservablePoint.prototype.copyTo = function copyTo (p)\n{\n p.set(this._x, this._y);\n\n return p;\n};\n\n/**\n * Returns true if the given point is equal to this point\n *\n * @param {PIXI.IPoint} p - The point to check\n * @returns {boolean} Whether the given point equal to this point\n */\nObservablePoint.prototype.equals = function equals (p)\n{\n return (p.x === this._x) && (p.y === this._y);\n};\n\n/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n *\n * @member {number}\n */\nprototypeAccessors.x.get = function ()\n{\n return this._x;\n};\n\nprototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._x !== value)\n {\n this._x = value;\n this.cb.call(this.scope);\n }\n};\n\n/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n *\n * @member {number}\n */\nprototypeAccessors.y.get = function ()\n{\n return this._y;\n};\n\nprototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._y !== value)\n {\n this._y = value;\n this.cb.call(this.scope);\n }\n};\n\nObject.defineProperties( ObservablePoint.prototype, prototypeAccessors );\n\n/**\n * A number, or a string containing a number.\n * @memberof PIXI\n * @typedef {(PIXI.Point|PIXI.ObservablePoint)} IPoint\n */\n\n/**\n * Two Pi.\n *\n * @static\n * @constant {number} PI_2\n * @memberof PIXI\n */\nvar PI_2 = Math.PI * 2;\n\n/**\n * Conversion factor for converting radians to degrees.\n *\n * @static\n * @constant {number} RAD_TO_DEG\n * @memberof PIXI\n */\nvar RAD_TO_DEG = 180 / Math.PI;\n\n/**\n * Conversion factor for converting degrees to radians.\n *\n * @static\n * @constant {number} DEG_TO_RAD\n * @memberof PIXI\n */\nvar DEG_TO_RAD = Math.PI / 180;\n\n/**\n * Constants that identify shapes, mainly to prevent `instanceof` calls.\n *\n * @static\n * @constant\n * @name SHAPES\n * @memberof PIXI\n * @type {object}\n * @property {number} POLY Polygon\n * @property {number} RECT Rectangle\n * @property {number} CIRC Circle\n * @property {number} ELIP Ellipse\n * @property {number} RREC Rounded Rectangle\n */\nvar SHAPES = {\n POLY: 0,\n RECT: 1,\n CIRC: 2,\n ELIP: 3,\n RREC: 4,\n};\n\n/**\n * The PixiJS Matrix as a class makes it a lot faster.\n *\n * Here is a representation of it:\n * ```js\n * | a | c | tx|\n * | b | d | ty|\n * | 0 | 0 | 1 |\n * ```\n * @class\n * @memberof PIXI\n */\nvar Matrix = function Matrix(a, b, c, d, tx, ty)\n{\n if ( a === void 0 ) a = 1;\n if ( b === void 0 ) b = 0;\n if ( c === void 0 ) c = 0;\n if ( d === void 0 ) d = 1;\n if ( tx === void 0 ) tx = 0;\n if ( ty === void 0 ) ty = 0;\n\n /**\n * @member {number}\n * @default 1\n */\n this.a = a;\n\n /**\n * @member {number}\n * @default 0\n */\n this.b = b;\n\n /**\n * @member {number}\n * @default 0\n */\n this.c = c;\n\n /**\n * @member {number}\n * @default 1\n */\n this.d = d;\n\n /**\n * @member {number}\n * @default 0\n */\n this.tx = tx;\n\n /**\n * @member {number}\n * @default 0\n */\n this.ty = ty;\n\n this.array = null;\n};\n\nvar staticAccessors = { IDENTITY: { configurable: true },TEMP_MATRIX: { configurable: true } };\n\n/**\n * Creates a Matrix object based on the given array. The Element to Matrix mapping order is as follows:\n *\n * a = array[0]\n * b = array[1]\n * c = array[3]\n * d = array[4]\n * tx = array[2]\n * ty = array[5]\n *\n * @param {number[]} array - The array that the matrix will be populated from.\n */\nMatrix.prototype.fromArray = function fromArray (array)\n{\n this.a = array[0];\n this.b = array[1];\n this.c = array[3];\n this.d = array[4];\n this.tx = array[2];\n this.ty = array[5];\n};\n\n/**\n * sets the matrix properties\n *\n * @param {number} a - Matrix component\n * @param {number} b - Matrix component\n * @param {number} c - Matrix component\n * @param {number} d - Matrix component\n * @param {number} tx - Matrix component\n * @param {number} ty - Matrix component\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.set = function set (a, b, c, d, tx, ty)\n{\n this.a = a;\n this.b = b;\n this.c = c;\n this.d = d;\n this.tx = tx;\n this.ty = ty;\n\n return this;\n};\n\n/**\n * Creates an array from the current Matrix object.\n *\n * @param {boolean} transpose - Whether we need to transpose the matrix or not\n * @param {Float32Array} [out=new Float32Array(9)] - If provided the array will be assigned to out\n * @return {number[]} the newly created array which contains the matrix\n */\nMatrix.prototype.toArray = function toArray (transpose, out)\n{\n if (!this.array)\n {\n this.array = new Float32Array(9);\n }\n\n var array = out || this.array;\n\n if (transpose)\n {\n array[0] = this.a;\n array[1] = this.b;\n array[2] = 0;\n array[3] = this.c;\n array[4] = this.d;\n array[5] = 0;\n array[6] = this.tx;\n array[7] = this.ty;\n array[8] = 1;\n }\n else\n {\n array[0] = this.a;\n array[1] = this.c;\n array[2] = this.tx;\n array[3] = this.b;\n array[4] = this.d;\n array[5] = this.ty;\n array[6] = 0;\n array[7] = 0;\n array[8] = 1;\n }\n\n return array;\n};\n\n/**\n * Get a new position with the current transformation applied.\n * Can be used to go from a child's coordinate space to the world coordinate space. (e.g. rendering)\n *\n * @param {PIXI.Point} pos - The origin\n * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input)\n * @return {PIXI.Point} The new point, transformed through this matrix\n */\nMatrix.prototype.apply = function apply (pos, newPos)\n{\n newPos = newPos || new Point();\n\n var x = pos.x;\n var y = pos.y;\n\n newPos.x = (this.a * x) + (this.c * y) + this.tx;\n newPos.y = (this.b * x) + (this.d * y) + this.ty;\n\n return newPos;\n};\n\n/**\n * Get a new position with the inverse of the current transformation applied.\n * Can be used to go from the world coordinate space to a child's coordinate space. (e.g. input)\n *\n * @param {PIXI.Point} pos - The origin\n * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input)\n * @return {PIXI.Point} The new point, inverse-transformed through this matrix\n */\nMatrix.prototype.applyInverse = function applyInverse (pos, newPos)\n{\n newPos = newPos || new Point();\n\n var id = 1 / ((this.a * this.d) + (this.c * -this.b));\n\n var x = pos.x;\n var y = pos.y;\n\n newPos.x = (this.d * id * x) + (-this.c * id * y) + (((this.ty * this.c) - (this.tx * this.d)) * id);\n newPos.y = (this.a * id * y) + (-this.b * id * x) + (((-this.ty * this.a) + (this.tx * this.b)) * id);\n\n return newPos;\n};\n\n/**\n * Translates the matrix on the x and y.\n *\n * @param {number} x How much to translate x by\n * @param {number} y How much to translate y by\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.translate = function translate (x, y)\n{\n this.tx += x;\n this.ty += y;\n\n return this;\n};\n\n/**\n * Applies a scale transformation to the matrix.\n *\n * @param {number} x The amount to scale horizontally\n * @param {number} y The amount to scale vertically\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.scale = function scale (x, y)\n{\n this.a *= x;\n this.d *= y;\n this.c *= x;\n this.b *= y;\n this.tx *= x;\n this.ty *= y;\n\n return this;\n};\n\n/**\n * Applies a rotation transformation to the matrix.\n *\n * @param {number} angle - The angle in radians.\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.rotate = function rotate (angle)\n{\n var cos = Math.cos(angle);\n var sin = Math.sin(angle);\n\n var a1 = this.a;\n var c1 = this.c;\n var tx1 = this.tx;\n\n this.a = (a1 * cos) - (this.b * sin);\n this.b = (a1 * sin) + (this.b * cos);\n this.c = (c1 * cos) - (this.d * sin);\n this.d = (c1 * sin) + (this.d * cos);\n this.tx = (tx1 * cos) - (this.ty * sin);\n this.ty = (tx1 * sin) + (this.ty * cos);\n\n return this;\n};\n\n/**\n * Appends the given Matrix to this Matrix.\n *\n * @param {PIXI.Matrix} matrix - The matrix to append.\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.append = function append (matrix)\n{\n var a1 = this.a;\n var b1 = this.b;\n var c1 = this.c;\n var d1 = this.d;\n\n this.a = (matrix.a * a1) + (matrix.b * c1);\n this.b = (matrix.a * b1) + (matrix.b * d1);\n this.c = (matrix.c * a1) + (matrix.d * c1);\n this.d = (matrix.c * b1) + (matrix.d * d1);\n\n this.tx = (matrix.tx * a1) + (matrix.ty * c1) + this.tx;\n this.ty = (matrix.tx * b1) + (matrix.ty * d1) + this.ty;\n\n return this;\n};\n\n/**\n * Sets the matrix based on all the available properties\n *\n * @param {number} x - Position on the x axis\n * @param {number} y - Position on the y axis\n * @param {number} pivotX - Pivot on the x axis\n * @param {number} pivotY - Pivot on the y axis\n * @param {number} scaleX - Scale on the x axis\n * @param {number} scaleY - Scale on the y axis\n * @param {number} rotation - Rotation in radians\n * @param {number} skewX - Skew on the x axis\n * @param {number} skewY - Skew on the y axis\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.setTransform = function setTransform (x, y, pivotX, pivotY, scaleX, scaleY, rotation, skewX, skewY)\n{\n this.a = Math.cos(rotation + skewY) * scaleX;\n this.b = Math.sin(rotation + skewY) * scaleX;\n this.c = -Math.sin(rotation - skewX) * scaleY;\n this.d = Math.cos(rotation - skewX) * scaleY;\n\n this.tx = x - ((pivotX * this.a) + (pivotY * this.c));\n this.ty = y - ((pivotX * this.b) + (pivotY * this.d));\n\n return this;\n};\n\n/**\n * Prepends the given Matrix to this Matrix.\n *\n * @param {PIXI.Matrix} matrix - The matrix to prepend\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.prepend = function prepend (matrix)\n{\n var tx1 = this.tx;\n\n if (matrix.a !== 1 || matrix.b !== 0 || matrix.c !== 0 || matrix.d !== 1)\n {\n var a1 = this.a;\n var c1 = this.c;\n\n this.a = (a1 * matrix.a) + (this.b * matrix.c);\n this.b = (a1 * matrix.b) + (this.b * matrix.d);\n this.c = (c1 * matrix.a) + (this.d * matrix.c);\n this.d = (c1 * matrix.b) + (this.d * matrix.d);\n }\n\n this.tx = (tx1 * matrix.a) + (this.ty * matrix.c) + matrix.tx;\n this.ty = (tx1 * matrix.b) + (this.ty * matrix.d) + matrix.ty;\n\n return this;\n};\n\n/**\n * Decomposes the matrix (x, y, scaleX, scaleY, and rotation) and sets the properties on to a transform.\n *\n * @param {PIXI.Transform} transform - The transform to apply the properties to.\n * @return {PIXI.Transform} The transform with the newly applied properties\n */\nMatrix.prototype.decompose = function decompose (transform)\n{\n // sort out rotation / skew..\n var a = this.a;\n var b = this.b;\n var c = this.c;\n var d = this.d;\n\n var skewX = -Math.atan2(-c, d);\n var skewY = Math.atan2(b, a);\n\n var delta = Math.abs(skewX + skewY);\n\n if (delta < 0.00001 || Math.abs(PI_2 - delta) < 0.00001)\n {\n transform.rotation = skewY;\n transform.skew.x = transform.skew.y = 0;\n }\n else\n {\n transform.rotation = 0;\n transform.skew.x = skewX;\n transform.skew.y = skewY;\n }\n\n // next set scale\n transform.scale.x = Math.sqrt((a * a) + (b * b));\n transform.scale.y = Math.sqrt((c * c) + (d * d));\n\n // next set position\n transform.position.x = this.tx;\n transform.position.y = this.ty;\n\n return transform;\n};\n\n/**\n * Inverts this matrix\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.invert = function invert ()\n{\n var a1 = this.a;\n var b1 = this.b;\n var c1 = this.c;\n var d1 = this.d;\n var tx1 = this.tx;\n var n = (a1 * d1) - (b1 * c1);\n\n this.a = d1 / n;\n this.b = -b1 / n;\n this.c = -c1 / n;\n this.d = a1 / n;\n this.tx = ((c1 * this.ty) - (d1 * tx1)) / n;\n this.ty = -((a1 * this.ty) - (b1 * tx1)) / n;\n\n return this;\n};\n\n/**\n * Resets this Matrix to an identity (default) matrix.\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.identity = function identity ()\n{\n this.a = 1;\n this.b = 0;\n this.c = 0;\n this.d = 1;\n this.tx = 0;\n this.ty = 0;\n\n return this;\n};\n\n/**\n * Creates a new Matrix object with the same values as this one.\n *\n * @return {PIXI.Matrix} A copy of this matrix. Good for chaining method calls.\n */\nMatrix.prototype.clone = function clone ()\n{\n var matrix = new Matrix();\n\n matrix.a = this.a;\n matrix.b = this.b;\n matrix.c = this.c;\n matrix.d = this.d;\n matrix.tx = this.tx;\n matrix.ty = this.ty;\n\n return matrix;\n};\n\n/**\n * Changes the values of the given matrix to be the same as the ones in this matrix\n *\n * @param {PIXI.Matrix} matrix - The matrix to copy to.\n * @return {PIXI.Matrix} The matrix given in parameter with its values updated.\n */\nMatrix.prototype.copyTo = function copyTo (matrix)\n{\n matrix.a = this.a;\n matrix.b = this.b;\n matrix.c = this.c;\n matrix.d = this.d;\n matrix.tx = this.tx;\n matrix.ty = this.ty;\n\n return matrix;\n};\n\n/**\n * Changes the values of the matrix to be the same as the ones in given matrix\n *\n * @param {PIXI.Matrix} matrix - The matrix to copy from.\n * @return {PIXI.Matrix} this\n */\nMatrix.prototype.copyFrom = function copyFrom (matrix)\n{\n this.a = matrix.a;\n this.b = matrix.b;\n this.c = matrix.c;\n this.d = matrix.d;\n this.tx = matrix.tx;\n this.ty = matrix.ty;\n\n return this;\n};\n\n/**\n * A default (identity) matrix\n *\n * @static\n * @const\n * @member {PIXI.Matrix}\n */\nstaticAccessors.IDENTITY.get = function ()\n{\n return new Matrix();\n};\n\n/**\n * A temp matrix\n *\n * @static\n * @const\n * @member {PIXI.Matrix}\n */\nstaticAccessors.TEMP_MATRIX.get = function ()\n{\n return new Matrix();\n};\n\nObject.defineProperties( Matrix, staticAccessors );\n\n// Your friendly neighbour https://en.wikipedia.org/wiki/Dihedral_group\n\n/*\n * Transform matrix for operation n is:\n * | ux | vx |\n * | uy | vy |\n */\n\nvar ux = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1];\nvar uy = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1];\nvar vx = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1];\nvar vy = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1];\n\n/**\n * [Cayley Table]{@link https://en.wikipedia.org/wiki/Cayley_table}\n * for the composition of each rotation in the dihederal group D8.\n *\n * @type number[][]\n * @private\n */\nvar rotationCayley = [];\n\n/**\n * Matrices for each `GD8Symmetry` rotation.\n *\n * @type Matrix[]\n * @private\n */\nvar rotationMatrices = [];\n\n/*\n * Alias for {@code Math.sign}.\n */\nvar signum = Math.sign;\n\n/*\n * Initializes `rotationCayley` and `rotationMatrices`. It is called\n * only once below.\n */\nfunction init()\n{\n for (var i = 0; i < 16; i++)\n {\n var row = [];\n\n rotationCayley.push(row);\n\n for (var j = 0; j < 16; j++)\n {\n /* Multiplies rotation matrices i and j. */\n var _ux = signum((ux[i] * ux[j]) + (vx[i] * uy[j]));\n var _uy = signum((uy[i] * ux[j]) + (vy[i] * uy[j]));\n var _vx = signum((ux[i] * vx[j]) + (vx[i] * vy[j]));\n var _vy = signum((uy[i] * vx[j]) + (vy[i] * vy[j]));\n\n /* Finds rotation matrix matching the product and pushes it. */\n for (var k = 0; k < 16; k++)\n {\n if (ux[k] === _ux && uy[k] === _uy\n && vx[k] === _vx && vy[k] === _vy)\n {\n row.push(k);\n break;\n }\n }\n }\n }\n\n for (var i$1 = 0; i$1 < 16; i$1++)\n {\n var mat = new Matrix();\n\n mat.set(ux[i$1], uy[i$1], vx[i$1], vy[i$1], 0, 0);\n rotationMatrices.push(mat);\n }\n}\n\ninit();\n\n/**\n * @memberof PIXI\n * @typedef {number} GD8Symmetry\n * @see PIXI.GroupD8\n */\n\n/**\n * Implements the dihedral group D8, which is similar to\n * [group D4]{@link http://mathworld.wolfram.com/DihedralGroupD4.html};\n * D8 is the same but with diagonals, and it is used for texture\n * rotations.\n *\n * The directions the U- and V- axes after rotation\n * of an angle of `a: GD8Constant` are the vectors `(uX(a), uY(a))`\n * and `(vX(a), vY(a))`. These aren't necessarily unit vectors.\n *\n * **Origin:**
\n * This is the small part of gameofbombs.com portal system. It works.\n *\n * @see PIXI.GroupD8.E\n * @see PIXI.GroupD8.SE\n * @see PIXI.GroupD8.S\n * @see PIXI.GroupD8.SW\n * @see PIXI.GroupD8.W\n * @see PIXI.GroupD8.NW\n * @see PIXI.GroupD8.N\n * @see PIXI.GroupD8.NE\n * @author Ivan @ivanpopelyshev\n * @class\n * @memberof PIXI\n */\nvar GroupD8 = {\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 0° | East |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n E: 0,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 45°↻ | Southeast |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n SE: 1,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 90°↻ | South |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n S: 2,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 135°↻ | Southwest |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n SW: 3,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 180° | West |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n W: 4,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -135°/225°↻ | Northwest |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n NW: 5,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -90°/270°↻ | North |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n N: 6,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -45°/315°↻ | Northeast |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n NE: 7,\n\n /**\n * Reflection about Y-axis.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MIRROR_VERTICAL: 8,\n\n /**\n * Reflection about the main diagonal.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MAIN_DIAGONAL: 10,\n\n /**\n * Reflection about X-axis.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MIRROR_HORIZONTAL: 12,\n\n /**\n * Reflection about reverse diagonal.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n REVERSE_DIAGONAL: 14,\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The X-component of the U-axis\n * after rotating the axes.\n */\n uX: function (ind) { return ux[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The Y-component of the U-axis\n * after rotating the axes.\n */\n uY: function (ind) { return uy[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The X-component of the V-axis\n * after rotating the axes.\n */\n vX: function (ind) { return vx[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The Y-component of the V-axis\n * after rotating the axes.\n */\n vY: function (ind) { return vy[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotation - symmetry whose opposite\n * is needed. Only rotations have opposite symmetries while\n * reflections don't.\n * @return {PIXI.GD8Symmetry} The opposite symmetry of `rotation`\n */\n inv: function (rotation) {\n if (rotation & 8)// true only if between 8 & 15 (reflections)\n {\n return rotation & 15;// or rotation % 16\n }\n\n return (-rotation) & 7;// or (8 - rotation) % 8\n },\n\n /**\n * Composes the two D8 operations.\n *\n * Taking `^` as reflection:\n *\n * | | E=0 | S=2 | W=4 | N=6 | E^=8 | S^=10 | W^=12 | N^=14 |\n * |-------|-----|-----|-----|-----|------|-------|-------|-------|\n * | E=0 | E | S | W | N | E^ | S^ | W^ | N^ |\n * | S=2 | S | W | N | E | S^ | W^ | N^ | E^ |\n * | W=4 | W | N | E | S | W^ | N^ | E^ | S^ |\n * | N=6 | N | E | S | W | N^ | E^ | S^ | W^ |\n * | E^=8 | E^ | N^ | W^ | S^ | E | N | W | S |\n * | S^=10 | S^ | E^ | N^ | W^ | S | E | N | W |\n * | W^=12 | W^ | S^ | E^ | N^ | W | S | E | N |\n * | N^=14 | N^ | W^ | S^ | E^ | N | W | S | E |\n *\n * [This is a Cayley table]{@link https://en.wikipedia.org/wiki/Cayley_table}\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotationSecond - Second operation, which\n * is the row in the above cayley table.\n * @param {PIXI.GD8Symmetry} rotationFirst - First operation, which\n * is the column in the above cayley table.\n * @return {PIXI.GD8Symmetry} Composed operation\n */\n add: function (rotationSecond, rotationFirst) { return (\n rotationCayley[rotationSecond][rotationFirst]\n ); },\n\n /**\n * Reverse of `add`.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotationSecond - Second operation\n * @param {PIXI.GD8Symmetry} rotationFirst - First operation\n * @return {PIXI.GD8Symmetry} Result\n */\n sub: function (rotationSecond, rotationFirst) { return (\n rotationCayley[rotationSecond][GroupD8.inv(rotationFirst)]\n ); },\n\n /**\n * Adds 180 degrees to rotation, which is a commutative\n * operation.\n *\n * @memberof PIXI.GroupD8\n * @param {number} rotation - The number to rotate.\n * @returns {number} Rotated number\n */\n rotate180: function (rotation) { return rotation ^ 4; },\n\n /**\n * Checks if the rotation angle is vertical, i.e. south\n * or north. It doesn't work for reflections.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotation - The number to check.\n * @returns {boolean} Whether or not the direction is vertical\n */\n isVertical: function (rotation) { return (rotation & 3) === 2; }, // rotation % 4 === 2\n\n /**\n * Approximates the vector `V(dx,dy)` into one of the\n * eight directions provided by `GroupD8`.\n *\n * @memberof PIXI.GroupD8\n * @param {number} dx - X-component of the vector\n * @param {number} dy - Y-component of the vector\n * @return {PIXI.GD8Symmetry} Approximation of the vector into\n * one of the eight symmetries.\n */\n byDirection: function (dx, dy) {\n if (Math.abs(dx) * 2 <= Math.abs(dy))\n {\n if (dy >= 0)\n {\n return GroupD8.S;\n }\n\n return GroupD8.N;\n }\n else if (Math.abs(dy) * 2 <= Math.abs(dx))\n {\n if (dx > 0)\n {\n return GroupD8.E;\n }\n\n return GroupD8.W;\n }\n else if (dy > 0)\n {\n if (dx > 0)\n {\n return GroupD8.SE;\n }\n\n return GroupD8.SW;\n }\n else if (dx > 0)\n {\n return GroupD8.NE;\n }\n\n return GroupD8.NW;\n },\n\n /**\n * Helps sprite to compensate texture packer rotation.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.Matrix} matrix - sprite world matrix\n * @param {PIXI.GD8Symmetry} rotation - The rotation factor to use.\n * @param {number} tx - sprite anchoring\n * @param {number} ty - sprite anchoring\n */\n matrixAppendRotationInv: function (matrix, rotation, tx, ty) {\n if ( tx === void 0 ) tx = 0;\n if ( ty === void 0 ) ty = 0;\n\n // Packer used \"rotation\", we use \"inv(rotation)\"\n var mat = rotationMatrices[GroupD8.inv(rotation)];\n\n mat.tx = tx;\n mat.ty = ty;\n matrix.append(mat);\n },\n};\n\n/**\n * Transform that takes care about its versions\n *\n * @class\n * @memberof PIXI\n */\nvar Transform = function Transform()\n{\n /**\n * The world transformation matrix.\n *\n * @member {PIXI.Matrix}\n */\n this.worldTransform = new Matrix();\n\n /**\n * The local transformation matrix.\n *\n * @member {PIXI.Matrix}\n */\n this.localTransform = new Matrix();\n\n /**\n * The coordinate of the object relative to the local coordinates of the parent.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.position = new ObservablePoint(this.onChange, this, 0, 0);\n\n /**\n * The scale factor of the object.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.scale = new ObservablePoint(this.onChange, this, 1, 1);\n\n /**\n * The pivot point of the displayObject that it rotates around.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.pivot = new ObservablePoint(this.onChange, this, 0, 0);\n\n /**\n * The skew amount, on the x and y axis.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.skew = new ObservablePoint(this.updateSkew, this, 0, 0);\n\n /**\n * The rotation amount.\n *\n * @protected\n * @member {number}\n */\n this._rotation = 0;\n\n /**\n * The X-coordinate value of the normalized local X axis,\n * the first column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._cx = 1;\n\n /**\n * The Y-coordinate value of the normalized local X axis,\n * the first column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._sx = 0;\n\n /**\n * The X-coordinate value of the normalized local Y axis,\n * the second column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._cy = 0;\n\n /**\n * The Y-coordinate value of the normalized local Y axis,\n * the second column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._sy = 1;\n\n /**\n * The locally unique ID of the local transform.\n *\n * @protected\n * @member {number}\n */\n this._localID = 0;\n\n /**\n * The locally unique ID of the local transform\n * used to calculate the current local transformation matrix.\n *\n * @protected\n * @member {number}\n */\n this._currentLocalID = 0;\n\n /**\n * The locally unique ID of the world transform.\n *\n * @protected\n * @member {number}\n */\n this._worldID = 0;\n\n /**\n * The locally unique ID of the parent's world transform\n * used to calculate the current world transformation matrix.\n *\n * @protected\n * @member {number}\n */\n this._parentID = 0;\n};\n\nvar prototypeAccessors$1 = { rotation: { configurable: true } };\n\n/**\n * Called when a value changes.\n *\n * @protected\n */\nTransform.prototype.onChange = function onChange ()\n{\n this._localID++;\n};\n\n/**\n * Called when the skew or the rotation changes.\n *\n * @protected\n */\nTransform.prototype.updateSkew = function updateSkew ()\n{\n this._cx = Math.cos(this._rotation + this.skew._y);\n this._sx = Math.sin(this._rotation + this.skew._y);\n this._cy = -Math.sin(this._rotation - this.skew._x); // cos, added PI/2\n this._sy = Math.cos(this._rotation - this.skew._x); // sin, added PI/2\n\n this._localID++;\n};\n\n/**\n * Updates the local transformation matrix.\n */\nTransform.prototype.updateLocalTransform = function updateLocalTransform ()\n{\n var lt = this.localTransform;\n\n if (this._localID !== this._currentLocalID)\n {\n // get the matrix values of the displayobject based on its transform properties..\n lt.a = this._cx * this.scale._x;\n lt.b = this._sx * this.scale._x;\n lt.c = this._cy * this.scale._y;\n lt.d = this._sy * this.scale._y;\n\n lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c));\n lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d));\n this._currentLocalID = this._localID;\n\n // force an update..\n this._parentID = -1;\n }\n};\n\n/**\n * Updates the local and the world transformation matrices.\n *\n * @param {PIXI.Transform} parentTransform - The parent transform\n */\nTransform.prototype.updateTransform = function updateTransform (parentTransform)\n{\n var lt = this.localTransform;\n\n if (this._localID !== this._currentLocalID)\n {\n // get the matrix values of the displayobject based on its transform properties..\n lt.a = this._cx * this.scale._x;\n lt.b = this._sx * this.scale._x;\n lt.c = this._cy * this.scale._y;\n lt.d = this._sy * this.scale._y;\n\n lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c));\n lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d));\n this._currentLocalID = this._localID;\n\n // force an update..\n this._parentID = -1;\n }\n\n if (this._parentID !== parentTransform._worldID)\n {\n // concat the parent matrix with the objects transform.\n var pt = parentTransform.worldTransform;\n var wt = this.worldTransform;\n\n wt.a = (lt.a * pt.a) + (lt.b * pt.c);\n wt.b = (lt.a * pt.b) + (lt.b * pt.d);\n wt.c = (lt.c * pt.a) + (lt.d * pt.c);\n wt.d = (lt.c * pt.b) + (lt.d * pt.d);\n wt.tx = (lt.tx * pt.a) + (lt.ty * pt.c) + pt.tx;\n wt.ty = (lt.tx * pt.b) + (lt.ty * pt.d) + pt.ty;\n\n this._parentID = parentTransform._worldID;\n\n // update the id of the transform..\n this._worldID++;\n }\n};\n\n/**\n * Decomposes a matrix and sets the transforms properties based on it.\n *\n * @param {PIXI.Matrix} matrix - The matrix to decompose\n */\nTransform.prototype.setFromMatrix = function setFromMatrix (matrix)\n{\n matrix.decompose(this);\n this._localID++;\n};\n\n/**\n * The rotation of the object in radians.\n *\n * @member {number}\n */\nprototypeAccessors$1.rotation.get = function ()\n{\n return this._rotation;\n};\n\nprototypeAccessors$1.rotation.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._rotation !== value)\n {\n this._rotation = value;\n this.updateSkew();\n }\n};\n\nObject.defineProperties( Transform.prototype, prototypeAccessors$1 );\n\n/**\n * A default (identity) transform\n *\n * @static\n * @constant\n * @member {PIXI.Transform}\n */\nTransform.IDENTITY = new Transform();\n\n/**\n * Size object, contains width and height\n *\n * @memberof PIXI\n * @typedef {object} ISize\n * @property {number} width - Width component\n * @property {number} height - Height component\n */\n\n/**\n * Rectangle object is an area defined by its position, as indicated by its top-left corner\n * point (x, y) and by its width and its height.\n *\n * @class\n * @memberof PIXI\n */\nvar Rectangle = function Rectangle(x, y, width, height)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = Number(x);\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = Number(y);\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = Number(width);\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = Number(height);\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.RECT\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.RECT;\n};\n\nvar prototypeAccessors$2 = { left: { configurable: true },right: { configurable: true },top: { configurable: true },bottom: { configurable: true } };\nvar staticAccessors$1 = { EMPTY: { configurable: true } };\n\n/**\n * returns the left edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.left.get = function ()\n{\n return this.x;\n};\n\n/**\n * returns the right edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.right.get = function ()\n{\n return this.x + this.width;\n};\n\n/**\n * returns the top edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.top.get = function ()\n{\n return this.y;\n};\n\n/**\n * returns the bottom edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.bottom.get = function ()\n{\n return this.y + this.height;\n};\n\n/**\n * A constant empty rectangle.\n *\n * @static\n * @constant\n * @member {PIXI.Rectangle}\n */\nstaticAccessors$1.EMPTY.get = function ()\n{\n return new Rectangle(0, 0, 0, 0);\n};\n\n/**\n * Creates a clone of this Rectangle\n *\n * @return {PIXI.Rectangle} a copy of the rectangle\n */\nRectangle.prototype.clone = function clone ()\n{\n return new Rectangle(this.x, this.y, this.width, this.height);\n};\n\n/**\n * Copies another rectangle to this one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to copy from.\n * @return {PIXI.Rectangle} Returns itself.\n */\nRectangle.prototype.copyFrom = function copyFrom (rectangle)\n{\n this.x = rectangle.x;\n this.y = rectangle.y;\n this.width = rectangle.width;\n this.height = rectangle.height;\n\n return this;\n};\n\n/**\n * Copies this rectangle to another one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to copy to.\n * @return {PIXI.Rectangle} Returns given parameter.\n */\nRectangle.prototype.copyTo = function copyTo (rectangle)\n{\n rectangle.x = this.x;\n rectangle.y = this.y;\n rectangle.width = this.width;\n rectangle.height = this.height;\n\n return rectangle;\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this Rectangle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Rectangle\n */\nRectangle.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n\n if (x >= this.x && x < this.x + this.width)\n {\n if (y >= this.y && y < this.y + this.height)\n {\n return true;\n }\n }\n\n return false;\n};\n\n/**\n * Pads the rectangle making it grow in all directions.\n *\n * @param {number} paddingX - The horizontal padding amount.\n * @param {number} paddingY - The vertical padding amount.\n */\nRectangle.prototype.pad = function pad (paddingX, paddingY)\n{\n paddingX = paddingX || 0;\n paddingY = paddingY || ((paddingY !== 0) ? paddingX : 0);\n\n this.x -= paddingX;\n this.y -= paddingY;\n\n this.width += paddingX * 2;\n this.height += paddingY * 2;\n};\n\n/**\n * Fits this rectangle around the passed one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to fit.\n */\nRectangle.prototype.fit = function fit (rectangle)\n{\n var x1 = Math.max(this.x, rectangle.x);\n var x2 = Math.min(this.x + this.width, rectangle.x + rectangle.width);\n var y1 = Math.max(this.y, rectangle.y);\n var y2 = Math.min(this.y + this.height, rectangle.y + rectangle.height);\n\n this.x = x1;\n this.width = Math.max(x2 - x1, 0);\n this.y = y1;\n this.height = Math.max(y2 - y1, 0);\n};\n\n/**\n * Enlarges rectangle that way its corners lie on grid\n *\n * @param {number} [resolution=1] resolution\n * @param {number} [eps=0.001] precision\n */\nRectangle.prototype.ceil = function ceil (resolution, eps)\n{\n if ( resolution === void 0 ) resolution = 1;\n if ( eps === void 0 ) eps = 0.001;\n\n var x2 = Math.ceil((this.x + this.width - eps) * resolution) / resolution;\n var y2 = Math.ceil((this.y + this.height - eps) * resolution) / resolution;\n\n this.x = Math.floor((this.x + eps) * resolution) / resolution;\n this.y = Math.floor((this.y + eps) * resolution) / resolution;\n\n this.width = x2 - this.x;\n this.height = y2 - this.y;\n};\n\n/**\n * Enlarges this rectangle to include the passed rectangle.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to include.\n */\nRectangle.prototype.enlarge = function enlarge (rectangle)\n{\n var x1 = Math.min(this.x, rectangle.x);\n var x2 = Math.max(this.x + this.width, rectangle.x + rectangle.width);\n var y1 = Math.min(this.y, rectangle.y);\n var y2 = Math.max(this.y + this.height, rectangle.y + rectangle.height);\n\n this.x = x1;\n this.width = x2 - x1;\n this.y = y1;\n this.height = y2 - y1;\n};\n\nObject.defineProperties( Rectangle.prototype, prototypeAccessors$2 );\nObject.defineProperties( Rectangle, staticAccessors$1 );\n\n/**\n * The Circle object is used to help draw graphics and can also be used to specify a hit area for displayObjects.\n *\n * @class\n * @memberof PIXI\n */\nvar Circle = function Circle(x, y, radius)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( radius === void 0 ) radius = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.radius = radius;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.CIRC\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.CIRC;\n};\n\n/**\n * Creates a clone of this Circle instance\n *\n * @return {PIXI.Circle} a copy of the Circle\n */\nCircle.prototype.clone = function clone ()\n{\n return new Circle(this.x, this.y, this.radius);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this circle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Circle\n */\nCircle.prototype.contains = function contains (x, y)\n{\n if (this.radius <= 0)\n {\n return false;\n }\n\n var r2 = this.radius * this.radius;\n var dx = (this.x - x);\n var dy = (this.y - y);\n\n dx *= dx;\n dy *= dy;\n\n return (dx + dy <= r2);\n};\n\n/**\n* Returns the framing rectangle of the circle as a Rectangle object\n*\n* @return {PIXI.Rectangle} the framing rectangle\n*/\nCircle.prototype.getBounds = function getBounds ()\n{\n return new Rectangle(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2);\n};\n\n/**\n * The Ellipse object is used to help draw graphics and can also be used to specify a hit area for displayObjects.\n *\n * @class\n * @memberof PIXI\n */\nvar Ellipse = function Ellipse(x, y, halfWidth, halfHeight)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( halfWidth === void 0 ) halfWidth = 0;\n if ( halfHeight === void 0 ) halfHeight = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = halfWidth;\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = halfHeight;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.ELIP\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.ELIP;\n};\n\n/**\n * Creates a clone of this Ellipse instance\n *\n * @return {PIXI.Ellipse} a copy of the ellipse\n */\nEllipse.prototype.clone = function clone ()\n{\n return new Ellipse(this.x, this.y, this.width, this.height);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this ellipse\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coords are within this ellipse\n */\nEllipse.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n\n // normalize the coords to an ellipse with center 0,0\n var normx = ((x - this.x) / this.width);\n var normy = ((y - this.y) / this.height);\n\n normx *= normx;\n normy *= normy;\n\n return (normx + normy <= 1);\n};\n\n/**\n * Returns the framing rectangle of the ellipse as a Rectangle object\n *\n * @return {PIXI.Rectangle} the framing rectangle\n */\nEllipse.prototype.getBounds = function getBounds ()\n{\n return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height);\n};\n\n/**\n * A class to define a shape via user defined co-orinates.\n *\n * @class\n * @memberof PIXI\n */\nvar Polygon = function Polygon()\n{\n var points = [], len = arguments.length;\n while ( len-- ) points[ len ] = arguments[ len ];\n\n if (Array.isArray(points[0]))\n {\n points = points[0];\n }\n\n // if this is an array of points, convert it to a flat array of numbers\n if (points[0] instanceof Point)\n {\n var p = [];\n\n for (var i = 0, il = points.length; i < il; i++)\n {\n p.push(points[i].x, points[i].y);\n }\n\n points = p;\n }\n\n /**\n * An array of the points of this polygon\n *\n * @member {number[]}\n */\n this.points = points;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.POLY\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.POLY;\n\n /**\n * `false` after moveTo, `true` after `closePath`. In all other cases it is `true`.\n * @member {boolean}\n * @default true\n */\n this.closeStroke = true;\n};\n\n/**\n * Creates a clone of this polygon\n *\n * @return {PIXI.Polygon} a copy of the polygon\n */\nPolygon.prototype.clone = function clone ()\n{\n var polygon = new Polygon(this.points.slice());\n\n polygon.closeStroke = this.closeStroke;\n\n return polygon;\n};\n\n/**\n * Checks whether the x and y coordinates passed to this function are contained within this polygon\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this polygon\n */\nPolygon.prototype.contains = function contains (x, y)\n{\n var inside = false;\n\n // use some raycasting to test hits\n // https://github.com/substack/point-in-polygon/blob/master/index.js\n var length = this.points.length / 2;\n\n for (var i = 0, j = length - 1; i < length; j = i++)\n {\n var xi = this.points[i * 2];\n var yi = this.points[(i * 2) + 1];\n var xj = this.points[j * 2];\n var yj = this.points[(j * 2) + 1];\n var intersect = ((yi > y) !== (yj > y)) && (x < ((xj - xi) * ((y - yi) / (yj - yi))) + xi);\n\n if (intersect)\n {\n inside = !inside;\n }\n }\n\n return inside;\n};\n\n/**\n * The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its\n * top-left corner point (x, y) and by its width and its height and its radius.\n *\n * @class\n * @memberof PIXI\n */\nvar RoundedRectangle = function RoundedRectangle(x, y, width, height, radius)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n if ( radius === void 0 ) radius = 20;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = width;\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = height;\n\n /**\n * @member {number}\n * @default 20\n */\n this.radius = radius;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readonly\n * @default PIXI.SHAPES.RREC\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.RREC;\n};\n\n/**\n * Creates a clone of this Rounded Rectangle\n *\n * @return {PIXI.RoundedRectangle} a copy of the rounded rectangle\n */\nRoundedRectangle.prototype.clone = function clone ()\n{\n return new RoundedRectangle(this.x, this.y, this.width, this.height, this.radius);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this Rounded Rectangle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Rounded Rectangle\n */\nRoundedRectangle.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n if (x >= this.x && x <= this.x + this.width)\n {\n if (y >= this.y && y <= this.y + this.height)\n {\n if ((y >= this.y + this.radius && y <= this.y + this.height - this.radius)\n || (x >= this.x + this.radius && x <= this.x + this.width - this.radius))\n {\n return true;\n }\n var dx = x - (this.x + this.radius);\n var dy = y - (this.y + this.radius);\n var radius2 = this.radius * this.radius;\n\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dx = x - (this.x + this.width - this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dy = y - (this.y + this.height - this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dx = x - (this.x + this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n }\n }\n\n return false;\n};\n\n/**\n * Math classes and utilities mixed into PIXI namespace.\n *\n * @lends PIXI\n */\n\nexport { Circle, DEG_TO_RAD, Ellipse, GroupD8, Matrix, ObservablePoint, PI_2, Point, Polygon, RAD_TO_DEG, Rectangle, RoundedRectangle, SHAPES, Transform };\n//# sourceMappingURL=math.es.js.map\n","/*!\n * @pixi/display - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/display is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nimport { Rectangle, RAD_TO_DEG, DEG_TO_RAD, Transform } from '@pixi/math';\nimport { EventEmitter, removeItems } from '@pixi/utils';\n\n/**\n * Sets the default value for the container property 'sortableChildren'.\n * If set to true, the container will sort its children by zIndex value\n * when updateTransform() is called, or manually if sortChildren() is called.\n *\n * This actually changes the order of elements in the array, so should be treated\n * as a basic solution that is not performant compared to other solutions,\n * such as @link https://github.com/pixijs/pixi-display\n *\n * Also be aware of that this may not work nicely with the addChildAt() function,\n * as the zIndex sorting may cause the child to automatically sorted to another position.\n *\n * @static\n * @constant\n * @name SORTABLE_CHILDREN\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\nsettings.SORTABLE_CHILDREN = false;\n\n/**\n * 'Builder' pattern for bounds rectangles.\n *\n * This could be called an Axis-Aligned Bounding Box.\n * It is not an actual shape. It is a mutable thing; no 'EMPTY' or those kind of problems.\n *\n * @class\n * @memberof PIXI\n */\nvar Bounds = function Bounds()\n{\n /**\n * @member {number}\n * @default 0\n */\n this.minX = Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.minY = Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.maxX = -Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.maxY = -Infinity;\n\n this.rect = null;\n};\n\n/**\n * Checks if bounds are empty.\n *\n * @return {boolean} True if empty.\n */\nBounds.prototype.isEmpty = function isEmpty ()\n{\n return this.minX > this.maxX || this.minY > this.maxY;\n};\n\n/**\n * Clears the bounds and resets.\n *\n */\nBounds.prototype.clear = function clear ()\n{\n this.updateID++;\n\n this.minX = Infinity;\n this.minY = Infinity;\n this.maxX = -Infinity;\n this.maxY = -Infinity;\n};\n\n/**\n * Can return Rectangle.EMPTY constant, either construct new rectangle, either use your rectangle\n * It is not guaranteed that it will return tempRect\n *\n * @param {PIXI.Rectangle} rect - temporary object will be used if AABB is not empty\n * @returns {PIXI.Rectangle} A rectangle of the bounds\n */\nBounds.prototype.getRectangle = function getRectangle (rect)\n{\n if (this.minX > this.maxX || this.minY > this.maxY)\n {\n return Rectangle.EMPTY;\n }\n\n rect = rect || new Rectangle(0, 0, 1, 1);\n\n rect.x = this.minX;\n rect.y = this.minY;\n rect.width = this.maxX - this.minX;\n rect.height = this.maxY - this.minY;\n\n return rect;\n};\n\n/**\n * This function should be inlined when its possible.\n *\n * @param {PIXI.Point} point - The point to add.\n */\nBounds.prototype.addPoint = function addPoint (point)\n{\n this.minX = Math.min(this.minX, point.x);\n this.maxX = Math.max(this.maxX, point.x);\n this.minY = Math.min(this.minY, point.y);\n this.maxY = Math.max(this.maxY, point.y);\n};\n\n/**\n * Adds a quad, not transformed\n *\n * @param {Float32Array} vertices - The verts to add.\n */\nBounds.prototype.addQuad = function addQuad (vertices)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n var x = vertices[0];\n var y = vertices[1];\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[2];\n y = vertices[3];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[4];\n y = vertices[5];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[6];\n y = vertices[7];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds sprite frame, transformed.\n *\n * @param {PIXI.Transform} transform - TODO\n * @param {number} x0 - TODO\n * @param {number} y0 - TODO\n * @param {number} x1 - TODO\n * @param {number} y1 - TODO\n */\nBounds.prototype.addFrame = function addFrame (transform, x0, y0, x1, y1)\n{\n var matrix = transform.worldTransform;\n var a = matrix.a;\n var b = matrix.b;\n var c = matrix.c;\n var d = matrix.d;\n var tx = matrix.tx;\n var ty = matrix.ty;\n\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n var x = (a * x0) + (c * y0) + tx;\n var y = (b * x0) + (d * y0) + ty;\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x1) + (c * y0) + tx;\n y = (b * x1) + (d * y0) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x0) + (c * y1) + tx;\n y = (b * x0) + (d * y1) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x1) + (c * y1) + tx;\n y = (b * x1) + (d * y1) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds screen vertices from array\n *\n * @param {Float32Array} vertexData - calculated vertices\n * @param {number} beginOffset - begin offset\n * @param {number} endOffset - end offset, excluded\n */\nBounds.prototype.addVertexData = function addVertexData (vertexData, beginOffset, endOffset)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n for (var i = beginOffset; i < endOffset; i += 2)\n {\n var x = vertexData[i];\n var y = vertexData[i + 1];\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n }\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Add an array of mesh vertices\n *\n * @param {PIXI.Transform} transform - mesh transform\n * @param {Float32Array} vertices - mesh coordinates in array\n * @param {number} beginOffset - begin offset\n * @param {number} endOffset - end offset, excluded\n */\nBounds.prototype.addVertices = function addVertices (transform, vertices, beginOffset, endOffset)\n{\n var matrix = transform.worldTransform;\n var a = matrix.a;\n var b = matrix.b;\n var c = matrix.c;\n var d = matrix.d;\n var tx = matrix.tx;\n var ty = matrix.ty;\n\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n for (var i = beginOffset; i < endOffset; i += 2)\n {\n var rawX = vertices[i];\n var rawY = vertices[i + 1];\n var x = (a * rawX) + (c * rawY) + tx;\n var y = (d * rawY) + (b * rawX) + ty;\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n }\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds other Bounds\n *\n * @param {PIXI.Bounds} bounds - TODO\n */\nBounds.prototype.addBounds = function addBounds (bounds)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = bounds.minX < minX ? bounds.minX : minX;\n this.minY = bounds.minY < minY ? bounds.minY : minY;\n this.maxX = bounds.maxX > maxX ? bounds.maxX : maxX;\n this.maxY = bounds.maxY > maxY ? bounds.maxY : maxY;\n};\n\n/**\n * Adds other Bounds, masked with Bounds\n *\n * @param {PIXI.Bounds} bounds - TODO\n * @param {PIXI.Bounds} mask - TODO\n */\nBounds.prototype.addBoundsMask = function addBoundsMask (bounds, mask)\n{\n var _minX = bounds.minX > mask.minX ? bounds.minX : mask.minX;\n var _minY = bounds.minY > mask.minY ? bounds.minY : mask.minY;\n var _maxX = bounds.maxX < mask.maxX ? bounds.maxX : mask.maxX;\n var _maxY = bounds.maxY < mask.maxY ? bounds.maxY : mask.maxY;\n\n if (_minX <= _maxX && _minY <= _maxY)\n {\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = _minX < minX ? _minX : minX;\n this.minY = _minY < minY ? _minY : minY;\n this.maxX = _maxX > maxX ? _maxX : maxX;\n this.maxY = _maxY > maxY ? _maxY : maxY;\n }\n};\n\n/**\n * Adds other Bounds, masked with Rectangle\n *\n * @param {PIXI.Bounds} bounds - TODO\n * @param {PIXI.Rectangle} area - TODO\n */\nBounds.prototype.addBoundsArea = function addBoundsArea (bounds, area)\n{\n var _minX = bounds.minX > area.x ? bounds.minX : area.x;\n var _minY = bounds.minY > area.y ? bounds.minY : area.y;\n var _maxX = bounds.maxX < area.x + area.width ? bounds.maxX : (area.x + area.width);\n var _maxY = bounds.maxY < area.y + area.height ? bounds.maxY : (area.y + area.height);\n\n if (_minX <= _maxX && _minY <= _maxY)\n {\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = _minX < minX ? _minX : minX;\n this.minY = _minY < minY ? _minY : minY;\n this.maxX = _maxX > maxX ? _maxX : maxX;\n this.maxY = _maxY > maxY ? _maxY : maxY;\n }\n};\n\n// _tempDisplayObjectParent = new DisplayObject();\n\n/**\n * The base class for all objects that are rendered on the screen.\n *\n * This is an abstract class and should not be used on its own; rather it should be extended.\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar DisplayObject = /*@__PURE__*/(function (EventEmitter) {\n function DisplayObject()\n {\n EventEmitter.call(this);\n\n this.tempDisplayObjectParent = null;\n\n // TODO: need to create Transform from factory\n /**\n * World transform and local transform of this object.\n * This will become read-only later, please do not assign anything there unless you know what are you doing.\n *\n * @member {PIXI.Transform}\n */\n this.transform = new Transform();\n\n /**\n * The opacity of the object.\n *\n * @member {number}\n */\n this.alpha = 1;\n\n /**\n * The visibility of the object. If false the object will not be drawn, and\n * the updateTransform function will not be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually.\n *\n * @member {boolean}\n */\n this.visible = true;\n\n /**\n * Can this object be rendered, if false the object will not be drawn but the updateTransform\n * methods will still be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds manually.\n *\n * @member {boolean}\n */\n this.renderable = true;\n\n /**\n * The display object container that contains this display object.\n *\n * @member {PIXI.Container}\n * @readonly\n */\n this.parent = null;\n\n /**\n * The multiplied alpha of the displayObject.\n *\n * @member {number}\n * @readonly\n */\n this.worldAlpha = 1;\n\n /**\n * Which index in the children array the display component was before the previous zIndex sort.\n * Used by containers to help sort objects with the same zIndex, by using previous array index as the decider.\n *\n * @member {number}\n * @protected\n */\n this._lastSortedIndex = 0;\n\n /**\n * The zIndex of the displayObject.\n * A higher value will mean it will be rendered on top of other displayObjects within the same container.\n *\n * @member {number}\n * @protected\n */\n this._zIndex = 0;\n\n /**\n * The area the filter is applied to. This is used as more of an optimization\n * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle.\n *\n * Also works as an interaction mask.\n *\n * @member {?PIXI.Rectangle}\n */\n this.filterArea = null;\n\n /**\n * Sets the filters for the displayObject.\n * * IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer.\n * To remove filters simply set this property to `'null'`.\n *\n * @member {?PIXI.Filter[]}\n */\n this.filters = null;\n this._enabledFilters = null;\n\n /**\n * The bounds object, this is used to calculate and store the bounds of the displayObject.\n *\n * @member {PIXI.Bounds}\n * @protected\n */\n this._bounds = new Bounds();\n this._boundsID = 0;\n this._lastBoundsID = -1;\n this._boundsRect = null;\n this._localBoundsRect = null;\n\n /**\n * The original, cached mask of the object.\n *\n * @member {PIXI.Graphics|PIXI.Sprite|null}\n * @protected\n */\n this._mask = null;\n\n /**\n * Fired when this DisplayObject is added to a Container.\n *\n * @event PIXI.DisplayObject#added\n * @param {PIXI.Container} container - The container added to.\n */\n\n /**\n * Fired when this DisplayObject is removed from a Container.\n *\n * @event PIXI.DisplayObject#removed\n * @param {PIXI.Container} container - The container removed from.\n */\n\n /**\n * If the object has been destroyed via destroy(). If true, it should not be used.\n *\n * @member {boolean}\n * @protected\n */\n this._destroyed = false;\n\n /**\n * used to fast check if a sprite is.. a sprite!\n * @member {boolean}\n */\n this.isSprite = false;\n }\n\n if ( EventEmitter ) DisplayObject.__proto__ = EventEmitter;\n DisplayObject.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n DisplayObject.prototype.constructor = DisplayObject;\n\n var prototypeAccessors = { _tempDisplayObjectParent: { configurable: true },x: { configurable: true },y: { configurable: true },worldTransform: { configurable: true },localTransform: { configurable: true },position: { configurable: true },scale: { configurable: true },pivot: { configurable: true },skew: { configurable: true },rotation: { configurable: true },angle: { configurable: true },zIndex: { configurable: true },worldVisible: { configurable: true },mask: { configurable: true } };\n\n /**\n * @protected\n * @member {PIXI.DisplayObject}\n */\n DisplayObject.mixin = function mixin (source)\n {\n // in ES8/ES2017, this would be really easy:\n // Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n\n // get all the enumerable property keys\n var keys = Object.keys(source);\n\n // loop through properties\n for (var i = 0; i < keys.length; ++i)\n {\n var propertyName = keys[i];\n\n // Set the property using the property descriptor - this works for accessors and normal value properties\n Object.defineProperty(\n DisplayObject.prototype,\n propertyName,\n Object.getOwnPropertyDescriptor(source, propertyName)\n );\n }\n };\n\n prototypeAccessors._tempDisplayObjectParent.get = function ()\n {\n if (this.tempDisplayObjectParent === null)\n {\n this.tempDisplayObjectParent = new DisplayObject();\n }\n\n return this.tempDisplayObjectParent;\n };\n\n /**\n * Updates the object transform for rendering.\n *\n * TODO - Optimization pass!\n */\n DisplayObject.prototype.updateTransform = function updateTransform ()\n {\n this.transform.updateTransform(this.parent.transform);\n // multiply the alphas..\n this.worldAlpha = this.alpha * this.parent.worldAlpha;\n\n this._bounds.updateID++;\n };\n\n /**\n * Recursively updates transform of all objects from the root to this one\n * internal function for toLocal()\n */\n DisplayObject.prototype._recursivePostUpdateTransform = function _recursivePostUpdateTransform ()\n {\n if (this.parent)\n {\n this.parent._recursivePostUpdateTransform();\n this.transform.updateTransform(this.parent.transform);\n }\n else\n {\n this.transform.updateTransform(this._tempDisplayObjectParent.transform);\n }\n };\n\n /**\n * Retrieves the bounds of the displayObject as a rectangle object.\n *\n * @param {boolean} [skipUpdate] - Setting to `true` will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost.\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation.\n * @return {PIXI.Rectangle} The rectangular bounding area.\n */\n DisplayObject.prototype.getBounds = function getBounds (skipUpdate, rect)\n {\n if (!skipUpdate)\n {\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this._recursivePostUpdateTransform();\n this.updateTransform();\n }\n }\n\n if (this._boundsID !== this._lastBoundsID)\n {\n this.calculateBounds();\n this._lastBoundsID = this._boundsID;\n }\n\n if (!rect)\n {\n if (!this._boundsRect)\n {\n this._boundsRect = new Rectangle();\n }\n\n rect = this._boundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n };\n\n /**\n * Retrieves the local bounds of the displayObject as a rectangle object.\n *\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation.\n * @return {PIXI.Rectangle} The rectangular bounding area.\n */\n DisplayObject.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n var transformRef = this.transform;\n var parentRef = this.parent;\n\n this.parent = null;\n this.transform = this._tempDisplayObjectParent.transform;\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n var bounds = this.getBounds(false, rect);\n\n this.parent = parentRef;\n this.transform = transformRef;\n\n return bounds;\n };\n\n /**\n * Calculates the global position of the display object.\n *\n * @param {PIXI.IPoint} position - The world origin to calculate from.\n * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point).\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform.\n * @return {PIXI.IPoint} A point object representing the position of this object.\n */\n DisplayObject.prototype.toGlobal = function toGlobal (position, point, skipUpdate)\n {\n if ( skipUpdate === void 0 ) skipUpdate = false;\n\n if (!skipUpdate)\n {\n this._recursivePostUpdateTransform();\n\n // this parent check is for just in case the item is a root object.\n // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly\n // this is mainly to avoid a parent check in the main loop. Every little helps for performance :)\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.displayObjectUpdateTransform();\n this.parent = null;\n }\n else\n {\n this.displayObjectUpdateTransform();\n }\n }\n\n // don't need to update the lot\n return this.worldTransform.apply(position, point);\n };\n\n /**\n * Calculates the local position of the display object relative to another point.\n *\n * @param {PIXI.IPoint} position - The world origin to calculate from.\n * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from.\n * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point).\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform\n * @return {PIXI.IPoint} A point object representing the position of this object\n */\n DisplayObject.prototype.toLocal = function toLocal (position, from, point, skipUpdate)\n {\n if (from)\n {\n position = from.toGlobal(position, point, skipUpdate);\n }\n\n if (!skipUpdate)\n {\n this._recursivePostUpdateTransform();\n\n // this parent check is for just in case the item is a root object.\n // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly\n // this is mainly to avoid a parent check in the main loop. Every little helps for performance :)\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.displayObjectUpdateTransform();\n this.parent = null;\n }\n else\n {\n this.displayObjectUpdateTransform();\n }\n }\n\n // simply apply the matrix..\n return this.worldTransform.applyInverse(position, point);\n };\n\n /**\n * Renders the object using the WebGL renderer.\n *\n * @param {PIXI.Renderer} renderer - The renderer.\n */\n DisplayObject.prototype.render = function render (renderer) // eslint-disable-line no-unused-vars\n {\n // OVERWRITE;\n };\n\n /**\n * Set the parent Container of this DisplayObject.\n *\n * @param {PIXI.Container} container - The Container to add this DisplayObject to.\n * @return {PIXI.Container} The Container that this DisplayObject was added to.\n */\n DisplayObject.prototype.setParent = function setParent (container)\n {\n if (!container || !container.addChild)\n {\n throw new Error('setParent: Argument must be a Container');\n }\n\n container.addChild(this);\n\n return container;\n };\n\n /**\n * Convenience function to set the position, scale, skew and pivot at once.\n *\n * @param {number} [x=0] - The X position\n * @param {number} [y=0] - The Y position\n * @param {number} [scaleX=1] - The X scale value\n * @param {number} [scaleY=1] - The Y scale value\n * @param {number} [rotation=0] - The rotation\n * @param {number} [skewX=0] - The X skew value\n * @param {number} [skewY=0] - The Y skew value\n * @param {number} [pivotX=0] - The X pivot value\n * @param {number} [pivotY=0] - The Y pivot value\n * @return {PIXI.DisplayObject} The DisplayObject instance\n */\n DisplayObject.prototype.setTransform = function setTransform (x, y, scaleX, scaleY, rotation, skewX, skewY, pivotX, pivotY)\n {\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( scaleX === void 0 ) scaleX = 1;\n if ( scaleY === void 0 ) scaleY = 1;\n if ( rotation === void 0 ) rotation = 0;\n if ( skewX === void 0 ) skewX = 0;\n if ( skewY === void 0 ) skewY = 0;\n if ( pivotX === void 0 ) pivotX = 0;\n if ( pivotY === void 0 ) pivotY = 0;\n\n this.position.x = x;\n this.position.y = y;\n this.scale.x = !scaleX ? 1 : scaleX;\n this.scale.y = !scaleY ? 1 : scaleY;\n this.rotation = rotation;\n this.skew.x = skewX;\n this.skew.y = skewY;\n this.pivot.x = pivotX;\n this.pivot.y = pivotY;\n\n return this;\n };\n\n /**\n * Base destroy method for generic display objects. This will automatically\n * remove the display object from its parent Container as well as remove\n * all current event listeners and internal references. Do not use a DisplayObject\n * after calling `destroy()`.\n *\n */\n DisplayObject.prototype.destroy = function destroy ()\n {\n this.removeAllListeners();\n if (this.parent)\n {\n this.parent.removeChild(this);\n }\n this.transform = null;\n\n this.parent = null;\n\n this._bounds = null;\n this._currentBounds = null;\n this._mask = null;\n\n this.filterArea = null;\n\n this.interactive = false;\n this.interactiveChildren = false;\n\n this._destroyed = true;\n };\n\n /**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n * An alias to position.x\n *\n * @member {number}\n */\n prototypeAccessors.x.get = function ()\n {\n return this.position.x;\n };\n\n prototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.x = value;\n };\n\n /**\n * The position of the displayObject on the y axis relative to the local coordinates of the parent.\n * An alias to position.y\n *\n * @member {number}\n */\n prototypeAccessors.y.get = function ()\n {\n return this.position.y;\n };\n\n prototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.y = value;\n };\n\n /**\n * Current transform of the object based on world (parent) factors.\n *\n * @member {PIXI.Matrix}\n * @readonly\n */\n prototypeAccessors.worldTransform.get = function ()\n {\n return this.transform.worldTransform;\n };\n\n /**\n * Current transform of the object based on local factors: position, scale, other stuff.\n *\n * @member {PIXI.Matrix}\n * @readonly\n */\n prototypeAccessors.localTransform.get = function ()\n {\n return this.transform.localTransform;\n };\n\n /**\n * The coordinate of the object relative to the local coordinates of the parent.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.position.get = function ()\n {\n return this.transform.position;\n };\n\n prototypeAccessors.position.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.copyFrom(value);\n };\n\n /**\n * The scale factor of the object.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.scale.get = function ()\n {\n return this.transform.scale;\n };\n\n prototypeAccessors.scale.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.scale.copyFrom(value);\n };\n\n /**\n * The pivot point of the displayObject that it rotates around.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.pivot.get = function ()\n {\n return this.transform.pivot;\n };\n\n prototypeAccessors.pivot.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.pivot.copyFrom(value);\n };\n\n /**\n * The skew factor for the object in radians.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.skew.get = function ()\n {\n return this.transform.skew;\n };\n\n prototypeAccessors.skew.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.skew.copyFrom(value);\n };\n\n /**\n * The rotation of the object in radians.\n * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees.\n *\n * @member {number}\n */\n prototypeAccessors.rotation.get = function ()\n {\n return this.transform.rotation;\n };\n\n prototypeAccessors.rotation.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.rotation = value;\n };\n\n /**\n * The angle of the object in degrees.\n * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees.\n *\n * @member {number}\n */\n prototypeAccessors.angle.get = function ()\n {\n return this.transform.rotation * RAD_TO_DEG;\n };\n\n prototypeAccessors.angle.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.rotation = value * DEG_TO_RAD;\n };\n\n /**\n * The zIndex of the displayObject.\n * If a container has the sortableChildren property set to true, children will be automatically\n * sorted by zIndex value; a higher value will mean it will be moved towards the end of the array,\n * and thus rendered on top of other displayObjects within the same container.\n *\n * @member {number}\n */\n prototypeAccessors.zIndex.get = function ()\n {\n return this._zIndex;\n };\n\n prototypeAccessors.zIndex.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._zIndex = value;\n if (this.parent)\n {\n this.parent.sortDirty = true;\n }\n };\n\n /**\n * Indicates if the object is globally visible.\n *\n * @member {boolean}\n * @readonly\n */\n prototypeAccessors.worldVisible.get = function ()\n {\n var item = this;\n\n do\n {\n if (!item.visible)\n {\n return false;\n }\n\n item = item.parent;\n } while (item);\n\n return true;\n };\n\n /**\n * Sets a mask for the displayObject. A mask is an object that limits the visibility of an\n * object to the shape of the mask applied to it. In PixiJS a regular mask must be a\n * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it\n * utilities shape clipping. To remove a mask, set this property to `null`.\n *\n * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask.\n * @example\n * const graphics = new PIXI.Graphics();\n * graphics.beginFill(0xFF3300);\n * graphics.drawRect(50, 250, 100, 100);\n * graphics.endFill();\n *\n * const sprite = new PIXI.Sprite(texture);\n * sprite.mask = graphics;\n * @todo At the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask.\n *\n * @member {PIXI.Graphics|PIXI.Sprite|null}\n */\n prototypeAccessors.mask.get = function ()\n {\n return this._mask;\n };\n\n prototypeAccessors.mask.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._mask)\n {\n this._mask.renderable = true;\n this._mask.isMask = false;\n }\n\n this._mask = value;\n\n if (this._mask)\n {\n this._mask.renderable = false;\n this._mask.isMask = true;\n }\n };\n\n Object.defineProperties( DisplayObject.prototype, prototypeAccessors );\n\n return DisplayObject;\n}(EventEmitter));\n\n/**\n * DisplayObject default updateTransform, does not update children of container.\n * Will crash if there's no parent element.\n *\n * @memberof PIXI.DisplayObject#\n * @function displayObjectUpdateTransform\n */\nDisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform;\n\nfunction sortChildren(a, b)\n{\n if (a.zIndex === b.zIndex)\n {\n return a._lastSortedIndex - b._lastSortedIndex;\n }\n\n return a.zIndex - b.zIndex;\n}\n\n/**\n * A Container represents a collection of display objects.\n *\n * It is the base class of all display objects that act as a container for other objects (like Sprites).\n *\n *```js\n * let container = new PIXI.Container();\n * container.addChild(sprite);\n * ```\n *\n * @class\n * @extends PIXI.DisplayObject\n * @memberof PIXI\n */\nvar Container = /*@__PURE__*/(function (DisplayObject) {\n function Container()\n {\n DisplayObject.call(this);\n\n /**\n * The array of children of this container.\n *\n * @member {PIXI.DisplayObject[]}\n * @readonly\n */\n this.children = [];\n\n /**\n * If set to true, the container will sort its children by zIndex value\n * when updateTransform() is called, or manually if sortChildren() is called.\n *\n * This actually changes the order of elements in the array, so should be treated\n * as a basic solution that is not performant compared to other solutions,\n * such as @link https://github.com/pixijs/pixi-display\n *\n * Also be aware of that this may not work nicely with the addChildAt() function,\n * as the zIndex sorting may cause the child to automatically sorted to another position.\n *\n * @see PIXI.settings.SORTABLE_CHILDREN\n *\n * @member {boolean}\n */\n this.sortableChildren = settings.SORTABLE_CHILDREN;\n\n /**\n * Should children be sorted by zIndex at the next updateTransform call.\n * Will get automatically set to true if a new child is added, or if a child's zIndex changes.\n *\n * @member {boolean}\n */\n this.sortDirty = false;\n\n /**\n * Fired when a DisplayObject is added to this Container.\n *\n * @event PIXI.Container#childAdded\n * @param {PIXI.DisplayObject} child - The child added to the Container.\n * @param {PIXI.Container} container - The container that added the child.\n * @param {number} index - The children's index of the added child.\n */\n\n /**\n * Fired when a DisplayObject is removed from this Container.\n *\n * @event PIXI.DisplayObject#removedFrom\n * @param {PIXI.DisplayObject} child - The child removed from the Container.\n * @param {PIXI.Container} container - The container that removed removed the child.\n * @param {number} index - The former children's index of the removed child\n */\n }\n\n if ( DisplayObject ) Container.__proto__ = DisplayObject;\n Container.prototype = Object.create( DisplayObject && DisplayObject.prototype );\n Container.prototype.constructor = Container;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true } };\n\n /**\n * Overridable method that can be used by Container subclasses whenever the children array is modified\n *\n * @protected\n */\n Container.prototype.onChildrenChange = function onChildrenChange ()\n {\n /* empty */\n };\n\n /**\n * Adds one or more children to the container.\n *\n * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)`\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container\n * @return {PIXI.DisplayObject} The first child that was added.\n */\n Container.prototype.addChild = function addChild (child)\n {\n var arguments$1 = arguments;\n\n var argumentsLength = arguments.length;\n\n // if there is only one argument we can bypass looping through the them\n if (argumentsLength > 1)\n {\n // loop through the arguments property and add all children\n // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes\n for (var i = 0; i < argumentsLength; i++)\n {\n this.addChild(arguments$1[i]);\n }\n }\n else\n {\n // if the child has a parent then lets remove it as PixiJS objects can only exist in one place\n if (child.parent)\n {\n child.parent.removeChild(child);\n }\n\n child.parent = this;\n this.sortDirty = true;\n\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n\n this.children.push(child);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(this.children.length - 1);\n this.emit('childAdded', child, this, this.children.length - 1);\n child.emit('added', this);\n }\n\n return child;\n };\n\n /**\n * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown\n *\n * @param {PIXI.DisplayObject} child - The child to add\n * @param {number} index - The index to place the child in\n * @return {PIXI.DisplayObject} The child that was added.\n */\n Container.prototype.addChildAt = function addChildAt (child, index)\n {\n if (index < 0 || index > this.children.length)\n {\n throw new Error((child + \"addChildAt: The index \" + index + \" supplied is out of bounds \" + (this.children.length)));\n }\n\n if (child.parent)\n {\n child.parent.removeChild(child);\n }\n\n child.parent = this;\n this.sortDirty = true;\n\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n\n this.children.splice(index, 0, child);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('added', this);\n this.emit('childAdded', child, this, index);\n\n return child;\n };\n\n /**\n * Swaps the position of 2 Display Objects within this container.\n *\n * @param {PIXI.DisplayObject} child - First display object to swap\n * @param {PIXI.DisplayObject} child2 - Second display object to swap\n */\n Container.prototype.swapChildren = function swapChildren (child, child2)\n {\n if (child === child2)\n {\n return;\n }\n\n var index1 = this.getChildIndex(child);\n var index2 = this.getChildIndex(child2);\n\n this.children[index1] = child2;\n this.children[index2] = child;\n this.onChildrenChange(index1 < index2 ? index1 : index2);\n };\n\n /**\n * Returns the index position of a child DisplayObject instance\n *\n * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify\n * @return {number} The index position of the child display object to identify\n */\n Container.prototype.getChildIndex = function getChildIndex (child)\n {\n var index = this.children.indexOf(child);\n\n if (index === -1)\n {\n throw new Error('The supplied DisplayObject must be a child of the caller');\n }\n\n return index;\n };\n\n /**\n * Changes the position of an existing child in the display object container\n *\n * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number\n * @param {number} index - The resulting index number for the child display object\n */\n Container.prototype.setChildIndex = function setChildIndex (child, index)\n {\n if (index < 0 || index >= this.children.length)\n {\n throw new Error((\"The index \" + index + \" supplied is out of bounds \" + (this.children.length)));\n }\n\n var currentIndex = this.getChildIndex(child);\n\n removeItems(this.children, currentIndex, 1); // remove from old position\n this.children.splice(index, 0, child); // add at new position\n\n this.onChildrenChange(index);\n };\n\n /**\n * Returns the child at the specified index\n *\n * @param {number} index - The index to get the child at\n * @return {PIXI.DisplayObject} The child at the given index, if any.\n */\n Container.prototype.getChildAt = function getChildAt (index)\n {\n if (index < 0 || index >= this.children.length)\n {\n throw new Error((\"getChildAt: Index (\" + index + \") does not exist.\"));\n }\n\n return this.children[index];\n };\n\n /**\n * Removes one or more children from the container.\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove\n * @return {PIXI.DisplayObject} The first child that was removed.\n */\n Container.prototype.removeChild = function removeChild (child)\n {\n var arguments$1 = arguments;\n\n var argumentsLength = arguments.length;\n\n // if there is only one argument we can bypass looping through the them\n if (argumentsLength > 1)\n {\n // loop through the arguments property and add all children\n // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes\n for (var i = 0; i < argumentsLength; i++)\n {\n this.removeChild(arguments$1[i]);\n }\n }\n else\n {\n var index = this.children.indexOf(child);\n\n if (index === -1) { return null; }\n\n child.parent = null;\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n removeItems(this.children, index, 1);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('removed', this);\n this.emit('childRemoved', child, this, index);\n }\n\n return child;\n };\n\n /**\n * Removes a child from the specified index position.\n *\n * @param {number} index - The index to get the child from\n * @return {PIXI.DisplayObject} The child that was removed.\n */\n Container.prototype.removeChildAt = function removeChildAt (index)\n {\n var child = this.getChildAt(index);\n\n // ensure child transform will be recalculated..\n child.parent = null;\n child.transform._parentID = -1;\n removeItems(this.children, index, 1);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('removed', this);\n this.emit('childRemoved', child, this, index);\n\n return child;\n };\n\n /**\n * Removes all children from this container that are within the begin and end indexes.\n *\n * @param {number} [beginIndex=0] - The beginning position.\n * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container.\n * @returns {PIXI.DisplayObject[]} List of removed children\n */\n Container.prototype.removeChildren = function removeChildren (beginIndex, endIndex)\n {\n if ( beginIndex === void 0 ) beginIndex = 0;\n\n var begin = beginIndex;\n var end = typeof endIndex === 'number' ? endIndex : this.children.length;\n var range = end - begin;\n var removed;\n\n if (range > 0 && range <= end)\n {\n removed = this.children.splice(begin, range);\n\n for (var i = 0; i < removed.length; ++i)\n {\n removed[i].parent = null;\n if (removed[i].transform)\n {\n removed[i].transform._parentID = -1;\n }\n }\n\n this._boundsID++;\n\n this.onChildrenChange(beginIndex);\n\n for (var i$1 = 0; i$1 < removed.length; ++i$1)\n {\n removed[i$1].emit('removed', this);\n this.emit('childRemoved', removed[i$1], this, i$1);\n }\n\n return removed;\n }\n else if (range === 0 && this.children.length === 0)\n {\n return [];\n }\n\n throw new RangeError('removeChildren: numeric values are outside the acceptable range.');\n };\n\n /**\n * Sorts children by zIndex. Previous order is mantained for 2 children with the same zIndex.\n */\n Container.prototype.sortChildren = function sortChildren$1 ()\n {\n var sortRequired = false;\n\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n var child = this.children[i];\n\n child._lastSortedIndex = i;\n\n if (!sortRequired && child.zIndex !== 0)\n {\n sortRequired = true;\n }\n }\n\n if (sortRequired && this.children.length > 1)\n {\n this.children.sort(sortChildren);\n }\n\n this.sortDirty = false;\n };\n\n /**\n * Updates the transform on all children of this container for rendering\n */\n Container.prototype.updateTransform = function updateTransform ()\n {\n if (this.sortableChildren && this.sortDirty)\n {\n this.sortChildren();\n }\n\n this._boundsID++;\n\n this.transform.updateTransform(this.parent.transform);\n\n // TODO: check render flags, how to process stuff here\n this.worldAlpha = this.alpha * this.parent.worldAlpha;\n\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n var child = this.children[i];\n\n if (child.visible)\n {\n child.updateTransform();\n }\n }\n };\n\n /**\n * Recalculates the bounds of the container.\n *\n */\n Container.prototype.calculateBounds = function calculateBounds ()\n {\n this._bounds.clear();\n\n this._calculateBounds();\n\n for (var i = 0; i < this.children.length; i++)\n {\n var child = this.children[i];\n\n if (!child.visible || !child.renderable)\n {\n continue;\n }\n\n child.calculateBounds();\n\n // TODO: filter+mask, need to mask both somehow\n if (child._mask)\n {\n child._mask.calculateBounds();\n this._bounds.addBoundsMask(child._bounds, child._mask._bounds);\n }\n else if (child.filterArea)\n {\n this._bounds.addBoundsArea(child._bounds, child.filterArea);\n }\n else\n {\n this._bounds.addBounds(child._bounds);\n }\n }\n\n this._lastBoundsID = this._boundsID;\n };\n\n /**\n * Recalculates the bounds of the object. Override this to\n * calculate the bounds of the specific object (not including children).\n *\n * @protected\n */\n Container.prototype._calculateBounds = function _calculateBounds ()\n {\n // FILL IN//\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype.render = function render (renderer)\n {\n // if the object is not visible or the alpha is 0 then no need to render this element\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n // do a quick check to see if this element has a mask or a filter.\n if (this._mask || (this.filters && this.filters.length))\n {\n this.renderAdvanced(renderer);\n }\n else\n {\n this._render(renderer);\n\n // simple render children!\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n this.children[i].render(renderer);\n }\n }\n };\n\n /**\n * Render the object using the WebGL renderer and advanced features.\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype.renderAdvanced = function renderAdvanced (renderer)\n {\n renderer.batch.flush();\n\n var filters = this.filters;\n var mask = this._mask;\n\n // push filter first as we need to ensure the stencil buffer is correct for any masking\n if (filters)\n {\n if (!this._enabledFilters)\n {\n this._enabledFilters = [];\n }\n\n this._enabledFilters.length = 0;\n\n for (var i = 0; i < filters.length; i++)\n {\n if (filters[i].enabled)\n {\n this._enabledFilters.push(filters[i]);\n }\n }\n\n if (this._enabledFilters.length)\n {\n renderer.filter.push(this, this._enabledFilters);\n }\n }\n\n if (mask)\n {\n renderer.mask.push(this, this._mask);\n }\n\n // add this object to the batch, only rendered if it has a texture.\n this._render(renderer);\n\n // now loop through the children and make sure they get rendered\n for (var i$1 = 0, j = this.children.length; i$1 < j; i$1++)\n {\n this.children[i$1].render(renderer);\n }\n\n renderer.batch.flush();\n\n if (mask)\n {\n renderer.mask.pop(this, this._mask);\n }\n\n if (filters && this._enabledFilters && this._enabledFilters.length)\n {\n renderer.filter.pop();\n }\n };\n\n /**\n * To be overridden by the subclasses.\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype._render = function _render (renderer) // eslint-disable-line no-unused-vars\n {\n // this is where content itself gets rendered...\n };\n\n /**\n * Removes all internal references and listeners as well as removes children from the display list.\n * Do not use a Container after calling `destroy`.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n Container.prototype.destroy = function destroy (options)\n {\n DisplayObject.prototype.destroy.call(this);\n\n this.sortDirty = false;\n\n var destroyChildren = typeof options === 'boolean' ? options : options && options.children;\n\n var oldChildren = this.removeChildren(0, this.children.length);\n\n if (destroyChildren)\n {\n for (var i = 0; i < oldChildren.length; ++i)\n {\n oldChildren[i].destroy(options);\n }\n }\n };\n\n /**\n * The width of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this.scale.x * this.getLocalBounds().width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n var width = this.getLocalBounds().width;\n\n if (width !== 0)\n {\n this.scale.x = value / width;\n }\n else\n {\n this.scale.x = 1;\n }\n\n this._width = value;\n };\n\n /**\n * The height of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this.scale.y * this.getLocalBounds().height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n var height = this.getLocalBounds().height;\n\n if (height !== 0)\n {\n this.scale.y = value / height;\n }\n else\n {\n this.scale.y = 1;\n }\n\n this._height = value;\n };\n\n Object.defineProperties( Container.prototype, prototypeAccessors );\n\n return Container;\n}(DisplayObject));\n\n// performance increase to avoid using call.. (10x faster)\nContainer.prototype.containerUpdateTransform = Container.prototype.updateTransform;\n\nexport { Bounds, Container, DisplayObject };\n//# sourceMappingURL=display.es.js.map\n","/*!\n * @pixi/accessibility - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/accessibility is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { isMobile, removeItems } from '@pixi/utils';\nimport { DisplayObject } from '@pixi/display';\n\n/**\n * Default property values of accessible objects\n * used by {@link PIXI.accessibility.AccessibilityManager}.\n *\n * @private\n * @function accessibleTarget\n * @memberof PIXI.accessibility\n * @type {Object}\n * @example\n * function MyObject() {}\n *\n * Object.assign(\n * MyObject.prototype,\n * PIXI.accessibility.accessibleTarget\n * );\n */\nvar accessibleTarget = {\n /**\n * Flag for if the object is accessible. If true AccessibilityManager will overlay a\n * shadow div with attributes set\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n accessible: false,\n\n /**\n * Sets the title attribute of the shadow div\n * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]'\n *\n * @member {?string}\n * @memberof PIXI.DisplayObject#\n */\n accessibleTitle: null,\n\n /**\n * Sets the aria-label attribute of the shadow div\n *\n * @member {string}\n * @memberof PIXI.DisplayObject#\n */\n accessibleHint: null,\n\n /**\n * @member {number}\n * @memberof PIXI.DisplayObject#\n * @private\n * @todo Needs docs.\n */\n tabIndex: 0,\n\n /**\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n * @todo Needs docs.\n */\n _accessibleActive: false,\n\n /**\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n * @todo Needs docs.\n */\n _accessibleDiv: false,\n};\n\n// add some extra variables to the container..\nDisplayObject.mixin(accessibleTarget);\n\nvar KEY_CODE_TAB = 9;\n\nvar DIV_TOUCH_SIZE = 100;\nvar DIV_TOUCH_POS_X = 0;\nvar DIV_TOUCH_POS_Y = 0;\nvar DIV_TOUCH_ZINDEX = 2;\n\nvar DIV_HOOK_SIZE = 1;\nvar DIV_HOOK_POS_X = -1000;\nvar DIV_HOOK_POS_Y = -1000;\nvar DIV_HOOK_ZINDEX = 2;\n\n/**\n * The Accessibility manager recreates the ability to tab and have content read by screen readers.\n * This is very important as it can possibly help people with disabilities access PixiJS content.\n *\n * A DisplayObject can be made accessible just like it can be made interactive. This manager will map the\n * events as if the mouse was being used, minimizing the effort required to implement.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.accessibility`\n *\n * @class\n * @memberof PIXI.accessibility\n */\nvar AccessibilityManager = function AccessibilityManager(renderer)\n{\n /**\n * @type {?HTMLElement}\n * @private\n */\n this._hookDiv = null;\n if (isMobile.tablet || isMobile.phone)\n {\n this.createTouchHook();\n }\n\n // first we create a div that will sit over the PixiJS element. This is where the div overlays will go.\n var div = document.createElement('div');\n\n div.style.width = DIV_TOUCH_SIZE + \"px\";\n div.style.height = DIV_TOUCH_SIZE + \"px\";\n div.style.position = 'absolute';\n div.style.top = DIV_TOUCH_POS_X + \"px\";\n div.style.left = DIV_TOUCH_POS_Y + \"px\";\n div.style.zIndex = DIV_TOUCH_ZINDEX;\n\n /**\n * This is the dom element that will sit over the PixiJS element. This is where the div overlays will go.\n *\n * @type {HTMLElement}\n * @private\n */\n this.div = div;\n\n /**\n * A simple pool for storing divs.\n *\n * @type {*}\n * @private\n */\n this.pool = [];\n\n /**\n * This is a tick used to check if an object is no longer being rendered.\n *\n * @type {Number}\n * @private\n */\n this.renderId = 0;\n\n /**\n * Setting this to true will visually show the divs.\n *\n * @type {boolean}\n */\n this.debug = false;\n\n /**\n * The renderer this accessibility manager works for.\n *\n * @member {PIXI.AbstractRenderer}\n */\n this.renderer = renderer;\n\n /**\n * The array of currently active accessible items.\n *\n * @member {Array<*>}\n * @private\n */\n this.children = [];\n\n /**\n * pre-bind the functions\n *\n * @type {Function}\n * @private\n */\n this._onKeyDown = this._onKeyDown.bind(this);\n\n /**\n * pre-bind the functions\n *\n * @type {Function}\n * @private\n */\n this._onMouseMove = this._onMouseMove.bind(this);\n\n /**\n * A flag\n * @type {boolean}\n * @readonly\n */\n this.isActive = false;\n\n /**\n * A flag\n * @type {boolean}\n * @readonly\n */\n this.isMobileAccessibility = false;\n\n // let listen for tab.. once pressed we can fire up and show the accessibility layer\n window.addEventListener('keydown', this._onKeyDown, false);\n};\n\n/**\n * Creates the touch hooks.\n *\n * @private\n */\nAccessibilityManager.prototype.createTouchHook = function createTouchHook ()\n{\n var this$1 = this;\n\n var hookDiv = document.createElement('button');\n\n hookDiv.style.width = DIV_HOOK_SIZE + \"px\";\n hookDiv.style.height = DIV_HOOK_SIZE + \"px\";\n hookDiv.style.position = 'absolute';\n hookDiv.style.top = DIV_HOOK_POS_X + \"px\";\n hookDiv.style.left = DIV_HOOK_POS_Y + \"px\";\n hookDiv.style.zIndex = DIV_HOOK_ZINDEX;\n hookDiv.style.backgroundColor = '#FF0000';\n hookDiv.title = 'HOOK DIV';\n\n hookDiv.addEventListener('focus', function () {\n this$1.isMobileAccessibility = true;\n this$1.activate();\n this$1.destroyTouchHook();\n });\n\n document.body.appendChild(hookDiv);\n this._hookDiv = hookDiv;\n};\n\n/**\n * Destroys the touch hooks.\n *\n * @private\n */\nAccessibilityManager.prototype.destroyTouchHook = function destroyTouchHook ()\n{\n if (!this._hookDiv)\n {\n return;\n }\n document.body.removeChild(this._hookDiv);\n this._hookDiv = null;\n};\n\n/**\n * Activating will cause the Accessibility layer to be shown.\n * This is called when a user presses the tab key.\n *\n * @private\n */\nAccessibilityManager.prototype.activate = function activate ()\n{\n if (this.isActive)\n {\n return;\n }\n\n this.isActive = true;\n\n window.document.addEventListener('mousemove', this._onMouseMove, true);\n window.removeEventListener('keydown', this._onKeyDown, false);\n\n this.renderer.on('postrender', this.update, this);\n\n if (this.renderer.view.parentNode)\n {\n this.renderer.view.parentNode.appendChild(this.div);\n }\n};\n\n/**\n * Deactivating will cause the Accessibility layer to be hidden.\n * This is called when a user moves the mouse.\n *\n * @private\n */\nAccessibilityManager.prototype.deactivate = function deactivate ()\n{\n if (!this.isActive || this.isMobileAccessibility)\n {\n return;\n }\n\n this.isActive = false;\n\n window.document.removeEventListener('mousemove', this._onMouseMove, true);\n window.addEventListener('keydown', this._onKeyDown, false);\n\n this.renderer.off('postrender', this.update);\n\n if (this.div.parentNode)\n {\n this.div.parentNode.removeChild(this.div);\n }\n};\n\n/**\n * This recursive function will run through the scene graph and add any new accessible objects to the DOM layer.\n *\n * @private\n * @param {PIXI.Container} displayObject - The DisplayObject to check.\n */\nAccessibilityManager.prototype.updateAccessibleObjects = function updateAccessibleObjects (displayObject)\n{\n if (!displayObject.visible)\n {\n return;\n }\n\n if (displayObject.accessible && displayObject.interactive)\n {\n if (!displayObject._accessibleActive)\n {\n this.addChild(displayObject);\n }\n\n displayObject.renderId = this.renderId;\n }\n\n var children = displayObject.children;\n\n for (var i = 0; i < children.length; i++)\n {\n this.updateAccessibleObjects(children[i]);\n }\n};\n\n/**\n * Before each render this function will ensure that all divs are mapped correctly to their DisplayObjects.\n *\n * @private\n */\nAccessibilityManager.prototype.update = function update ()\n{\n if (!this.renderer.renderingToScreen)\n {\n return;\n }\n\n // update children...\n this.updateAccessibleObjects(this.renderer._lastObjectRendered);\n\n var rect = this.renderer.view.getBoundingClientRect();\n var sx = rect.width / this.renderer.width;\n var sy = rect.height / this.renderer.height;\n\n var div = this.div;\n\n div.style.left = (rect.left) + \"px\";\n div.style.top = (rect.top) + \"px\";\n div.style.width = (this.renderer.width) + \"px\";\n div.style.height = (this.renderer.height) + \"px\";\n\n for (var i = 0; i < this.children.length; i++)\n {\n var child = this.children[i];\n\n if (child.renderId !== this.renderId)\n {\n child._accessibleActive = false;\n\n removeItems(this.children, i, 1);\n this.div.removeChild(child._accessibleDiv);\n this.pool.push(child._accessibleDiv);\n child._accessibleDiv = null;\n\n i--;\n\n if (this.children.length === 0)\n {\n this.deactivate();\n }\n }\n else\n {\n // map div to display..\n div = child._accessibleDiv;\n var hitArea = child.hitArea;\n var wt = child.worldTransform;\n\n if (child.hitArea)\n {\n div.style.left = ((wt.tx + (hitArea.x * wt.a)) * sx) + \"px\";\n div.style.top = ((wt.ty + (hitArea.y * wt.d)) * sy) + \"px\";\n\n div.style.width = (hitArea.width * wt.a * sx) + \"px\";\n div.style.height = (hitArea.height * wt.d * sy) + \"px\";\n }\n else\n {\n hitArea = child.getBounds();\n\n this.capHitArea(hitArea);\n\n div.style.left = (hitArea.x * sx) + \"px\";\n div.style.top = (hitArea.y * sy) + \"px\";\n\n div.style.width = (hitArea.width * sx) + \"px\";\n div.style.height = (hitArea.height * sy) + \"px\";\n\n // update button titles and hints if they exist and they've changed\n if (div.title !== child.accessibleTitle && child.accessibleTitle !== null)\n {\n div.title = child.accessibleTitle;\n }\n if (div.getAttribute('aria-label') !== child.accessibleHint\n && child.accessibleHint !== null)\n {\n div.setAttribute('aria-label', child.accessibleHint);\n }\n }\n }\n }\n\n // increment the render id..\n this.renderId++;\n};\n\n/**\n * Adjust the hit area based on the bounds of a display object\n *\n * @param {PIXI.Rectangle} hitArea - Bounds of the child\n */\nAccessibilityManager.prototype.capHitArea = function capHitArea (hitArea)\n{\n if (hitArea.x < 0)\n {\n hitArea.width += hitArea.x;\n hitArea.x = 0;\n }\n\n if (hitArea.y < 0)\n {\n hitArea.height += hitArea.y;\n hitArea.y = 0;\n }\n\n if (hitArea.x + hitArea.width > this.renderer.width)\n {\n hitArea.width = this.renderer.width - hitArea.x;\n }\n\n if (hitArea.y + hitArea.height > this.renderer.height)\n {\n hitArea.height = this.renderer.height - hitArea.y;\n }\n};\n\n/**\n * Adds a DisplayObject to the accessibility manager\n *\n * @private\n * @param {PIXI.DisplayObject} displayObject - The child to make accessible.\n */\nAccessibilityManager.prototype.addChild = function addChild (displayObject)\n{\n //this.activate();\n\n var div = this.pool.pop();\n\n if (!div)\n {\n div = document.createElement('button');\n\n div.style.width = DIV_TOUCH_SIZE + \"px\";\n div.style.height = DIV_TOUCH_SIZE + \"px\";\n div.style.backgroundColor = this.debug ? 'rgba(255,0,0,0.5)' : 'transparent';\n div.style.position = 'absolute';\n div.style.zIndex = DIV_TOUCH_ZINDEX;\n div.style.borderStyle = 'none';\n\n // ARIA attributes ensure that button title and hint updates are announced properly\n if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)\n {\n // Chrome doesn't need aria-live to work as intended; in fact it just gets more confused.\n div.setAttribute('aria-live', 'off');\n }\n else\n {\n div.setAttribute('aria-live', 'polite');\n }\n\n if (navigator.userAgent.match(/rv:.*Gecko\\//))\n {\n // FireFox needs this to announce only the new button name\n div.setAttribute('aria-relevant', 'additions');\n }\n else\n {\n // required by IE, other browsers don't much care\n div.setAttribute('aria-relevant', 'text');\n }\n\n div.addEventListener('click', this._onClick.bind(this));\n div.addEventListener('focus', this._onFocus.bind(this));\n div.addEventListener('focusout', this._onFocusOut.bind(this));\n }\n\n if (displayObject.accessibleTitle && displayObject.accessibleTitle !== null)\n {\n div.title = displayObject.accessibleTitle;\n }\n else if (!displayObject.accessibleHint\n || displayObject.accessibleHint === null)\n {\n div.title = \"displayObject \" + (displayObject.tabIndex);\n }\n\n if (displayObject.accessibleHint\n && displayObject.accessibleHint !== null)\n {\n div.setAttribute('aria-label', displayObject.accessibleHint);\n }\n\n //\n\n displayObject._accessibleActive = true;\n displayObject._accessibleDiv = div;\n div.displayObject = displayObject;\n\n this.children.push(displayObject);\n this.div.appendChild(displayObject._accessibleDiv);\n displayObject._accessibleDiv.tabIndex = displayObject.tabIndex;\n};\n\n/**\n * Maps the div button press to pixi's InteractionManager (click)\n *\n * @private\n * @param {MouseEvent} e - The click event.\n */\nAccessibilityManager.prototype._onClick = function _onClick (e)\n{\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'click', interactionManager.eventData);\n interactionManager.dispatchEvent(e.target.displayObject, 'pointertap', interactionManager.eventData);\n interactionManager.dispatchEvent(e.target.displayObject, 'tap', interactionManager.eventData);\n};\n\n/**\n * Maps the div focus events to pixi's InteractionManager (mouseover)\n *\n * @private\n * @param {FocusEvent} e - The focus event.\n */\nAccessibilityManager.prototype._onFocus = function _onFocus (e)\n{\n if (!e.target.getAttribute('aria-live', 'off'))\n {\n e.target.setAttribute('aria-live', 'assertive');\n }\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'mouseover', interactionManager.eventData);\n};\n\n/**\n * Maps the div focus events to pixi's InteractionManager (mouseout)\n *\n * @private\n * @param {FocusEvent} e - The focusout event.\n */\nAccessibilityManager.prototype._onFocusOut = function _onFocusOut (e)\n{\n if (!e.target.getAttribute('aria-live', 'off'))\n {\n e.target.setAttribute('aria-live', 'polite');\n }\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'mouseout', interactionManager.eventData);\n};\n\n/**\n * Is called when a key is pressed\n *\n * @private\n * @param {KeyboardEvent} e - The keydown event.\n */\nAccessibilityManager.prototype._onKeyDown = function _onKeyDown (e)\n{\n if (e.keyCode !== KEY_CODE_TAB)\n {\n return;\n }\n\n this.activate();\n};\n\n/**\n * Is called when the mouse moves across the renderer element\n *\n * @private\n * @param {MouseEvent} e - The mouse event.\n */\nAccessibilityManager.prototype._onMouseMove = function _onMouseMove (e)\n{\n if (e.movementX === 0 && e.movementY === 0)\n {\n return;\n }\n\n this.deactivate();\n};\n\n/**\n * Destroys the accessibility manager\n *\n */\nAccessibilityManager.prototype.destroy = function destroy ()\n{\n this.destroyTouchHook();\n this.div = null;\n\n for (var i = 0; i < this.children.length; i++)\n {\n this.children[i].div = null;\n }\n\n window.document.removeEventListener('mousemove', this._onMouseMove, true);\n window.removeEventListener('keydown', this._onKeyDown);\n\n this.pool = null;\n this.children = null;\n this.renderer = null;\n};\n\n/**\n * This namespace contains an accessibility plugin for allowing interaction via the keyboard.\n *\n * Do not instantiate this plugin directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @namespace PIXI.accessibility\n */\n\nexport { AccessibilityManager, accessibleTarget };\n//# sourceMappingURL=accessibility.es.js.map\n","/*!\n * @pixi/runner - v5.1.1\n * Compiled Fri, 02 Aug 2019 23:20:23 UTC\n *\n * @pixi/runner is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * A Runner is a highly performant and simple alternative to signals. Best used in situations\n * where events are dispatched to many objects at high frequency (say every frame!)\n *\n *\n * like a signal..\n * ```\n * const myObject = {\n * loaded: new PIXI.Runner('loaded')\n * }\n *\n * const listener = {\n * loaded: function(){\n * // thin\n * }\n * }\n *\n * myObject.update.add(listener);\n *\n * myObject.loaded.emit();\n * ```\n *\n * Or for handling calling the same function on many items\n * ```\n * const myGame = {\n * update: new PIXI.Runner('update')\n * }\n *\n * const gameObject = {\n * update: function(time){\n * // update my gamey state\n * }\n * }\n *\n * myGame.update.add(gameObject1);\n *\n * myGame.update.emit(time);\n * ```\n * @class\n * @memberof PIXI\n */\nvar Runner = function Runner(name)\n{\n this.items = [];\n this._name = name;\n this._aliasCount = 0;\n};\n\nvar prototypeAccessors = { empty: { configurable: true },name: { configurable: true } };\n\n/**\n * Dispatch/Broadcast Runner to all listeners added to the queue.\n * @param {...any} params - optional parameters to pass to each listener\n */\nRunner.prototype.emit = function emit (a0, a1, a2, a3, a4, a5, a6, a7)\n{\n if (arguments.length > 8)\n {\n throw new Error('max arguments reached');\n }\n\n var ref = this;\n var name = ref.name;\n var items = ref.items;\n\n this._aliasCount++;\n\n for (var i = 0, len = items.length; i < len; i++)\n {\n items[i][name](a0, a1, a2, a3, a4, a5, a6, a7);\n }\n\n if (items === this.items)\n {\n this._aliasCount--;\n }\n\n return this;\n};\n\nRunner.prototype.ensureNonAliasedItems = function ensureNonAliasedItems ()\n{\n if (this._aliasCount > 0 && this.items.length > 1)\n {\n this._aliasCount = 0;\n this.items = this.items.slice(0);\n }\n};\n\n/**\n * Add a listener to the Runner\n *\n * Runners do not need to have scope or functions passed to them.\n * All that is required is to pass the listening object and ensure that it has contains a function that has the same name\n * as the name provided to the Runner when it was created.\n *\n * Eg A listener passed to this Runner will require a 'complete' function.\n *\n * ```\n * const complete = new PIXI.Runner('complete');\n * ```\n *\n * The scope used will be the object itself.\n *\n * @param {any} item - The object that will be listening.\n */\nRunner.prototype.add = function add (item)\n{\n if (item[this._name])\n {\n this.ensureNonAliasedItems();\n this.remove(item);\n this.items.push(item);\n }\n\n return this;\n};\n\n/**\n * Remove a single listener from the dispatch queue.\n * @param {any} item - The listenr that you would like to remove.\n */\nRunner.prototype.remove = function remove (item)\n{\n var index = this.items.indexOf(item);\n\n if (index !== -1)\n {\n this.ensureNonAliasedItems();\n this.items.splice(index, 1);\n }\n\n return this;\n};\n\n/**\n * Check to see if the listener is already in the Runner\n * @param {any} item - The listener that you would like to check.\n */\nRunner.prototype.contains = function contains (item)\n{\n return this.items.indexOf(item) !== -1;\n};\n\n/**\n * Remove all listeners from the Runner\n */\nRunner.prototype.removeAll = function removeAll ()\n{\n this.ensureNonAliasedItems();\n this.items.length = 0;\n\n return this;\n};\n\n/**\n * Remove all references, don't use after this.\n */\nRunner.prototype.destroy = function destroy ()\n{\n this.removeAll();\n this.items = null;\n this._name = null;\n};\n\n/**\n * `true` if there are no this Runner contains no listeners\n *\n * @member {boolean}\n * @readonly\n */\nprototypeAccessors.empty.get = function ()\n{\n return this.items.length === 0;\n};\n\n/**\n * The name of the runner.\n *\n * @member {string}\n * @readonly\n */\nprototypeAccessors.name.get = function ()\n{\n return this._name;\n};\n\nObject.defineProperties( Runner.prototype, prototypeAccessors );\n\n/**\n * Alias for `emit`\n * @memberof PIXI.Runner#\n * @method dispatch\n * @see PIXI.Runner#emit\n */\nRunner.prototype.dispatch = Runner.prototype.emit;\n\n/**\n * Alias for `emit`\n * @memberof PIXI.Runner#\n * @method run\n * @see PIXI.Runner#emit\n */\nRunner.prototype.run = Runner.prototype.emit;\n\nexport { Runner };\n//# sourceMappingURL=runner.es.js.map\n","/*!\n * @pixi/ticker - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/ticker is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\n\n/**\n * Target frames per millisecond.\n *\n * @static\n * @name TARGET_FPMS\n * @memberof PIXI.settings\n * @type {number}\n * @default 0.06\n */\nsettings.TARGET_FPMS = 0.06;\n\n/**\n * Represents the update priorities used by internal PIXI classes when registered with\n * the {@link PIXI.Ticker} object. Higher priority items are updated first and lower\n * priority items, such as render, should go later.\n *\n * @static\n * @constant\n * @name UPDATE_PRIORITY\n * @memberof PIXI\n * @type {object}\n * @property {number} INTERACTION=50 Highest priority, used for {@link PIXI.interaction.InteractionManager}\n * @property {number} HIGH=25 High priority updating, {@link PIXI.VideoBaseTexture} and {@link PIXI.AnimatedSprite}\n * @property {number} NORMAL=0 Default priority for ticker events, see {@link PIXI.Ticker#add}.\n * @property {number} LOW=-25 Low priority used for {@link PIXI.Application} rendering.\n * @property {number} UTILITY=-50 Lowest priority used for {@link PIXI.prepare.BasePrepare} utility.\n */\nvar UPDATE_PRIORITY = {\n INTERACTION: 50,\n HIGH: 25,\n NORMAL: 0,\n LOW: -25,\n UTILITY: -50,\n};\n\n/**\n * Internal class for handling the priority sorting of ticker handlers.\n *\n * @private\n * @class\n * @memberof PIXI\n */\nvar TickerListener = function TickerListener(fn, context, priority, once)\n{\n if ( context === void 0 ) context = null;\n if ( priority === void 0 ) priority = 0;\n if ( once === void 0 ) once = false;\n\n /**\n * The handler function to execute.\n * @private\n * @member {Function}\n */\n this.fn = fn;\n\n /**\n * The calling to execute.\n * @private\n * @member {*}\n */\n this.context = context;\n\n /**\n * The current priority.\n * @private\n * @member {number}\n */\n this.priority = priority;\n\n /**\n * If this should only execute once.\n * @private\n * @member {boolean}\n */\n this.once = once;\n\n /**\n * The next item in chain.\n * @private\n * @member {TickerListener}\n */\n this.next = null;\n\n /**\n * The previous item in chain.\n * @private\n * @member {TickerListener}\n */\n this.previous = null;\n\n /**\n * `true` if this listener has been destroyed already.\n * @member {boolean}\n * @private\n */\n this._destroyed = false;\n};\n\n/**\n * Simple compare function to figure out if a function and context match.\n * @private\n * @param {Function} fn - The listener function to be added for one update\n * @param {Function} context - The listener context\n * @return {boolean} `true` if the listener match the arguments\n */\nTickerListener.prototype.match = function match (fn, context)\n{\n context = context || null;\n\n return this.fn === fn && this.context === context;\n};\n\n/**\n * Emit by calling the current function.\n * @private\n * @param {number} deltaTime - time since the last emit.\n * @return {TickerListener} Next ticker\n */\nTickerListener.prototype.emit = function emit (deltaTime)\n{\n if (this.fn)\n {\n if (this.context)\n {\n this.fn.call(this.context, deltaTime);\n }\n else\n {\n this.fn(deltaTime);\n }\n }\n\n var redirect = this.next;\n\n if (this.once)\n {\n this.destroy(true);\n }\n\n // Soft-destroying should remove\n // the next reference\n if (this._destroyed)\n {\n this.next = null;\n }\n\n return redirect;\n};\n\n/**\n * Connect to the list.\n * @private\n * @param {TickerListener} previous - Input node, previous listener\n */\nTickerListener.prototype.connect = function connect (previous)\n{\n this.previous = previous;\n if (previous.next)\n {\n previous.next.previous = this;\n }\n this.next = previous.next;\n previous.next = this;\n};\n\n/**\n * Destroy and don't use after this.\n * @private\n * @param {boolean} [hard = false] `true` to remove the `next` reference, this\n * is considered a hard destroy. Soft destroy maintains the next reference.\n * @return {TickerListener} The listener to redirect while emitting or removing.\n */\nTickerListener.prototype.destroy = function destroy (hard)\n{\n if ( hard === void 0 ) hard = false;\n\n this._destroyed = true;\n this.fn = null;\n this.context = null;\n\n // Disconnect, hook up next and previous\n if (this.previous)\n {\n this.previous.next = this.next;\n }\n\n if (this.next)\n {\n this.next.previous = this.previous;\n }\n\n // Redirect to the next item\n var redirect = this.next;\n\n // Remove references\n this.next = hard ? null : redirect;\n this.previous = null;\n\n return redirect;\n};\n\n/**\n * A Ticker class that runs an update loop that other objects listen to.\n *\n * This class is composed around listeners meant for execution on the next requested animation frame.\n * Animation frames are requested only when necessary, e.g. When the ticker is started and the emitter has listeners.\n *\n * @class\n * @memberof PIXI\n */\nvar Ticker = function Ticker()\n{\n var this$1 = this;\n\n /**\n * The first listener. All new listeners added are chained on this.\n * @private\n * @type {TickerListener}\n */\n this._head = new TickerListener(null, null, Infinity);\n\n /**\n * Internal current frame request ID\n * @type {?number}\n * @private\n */\n this._requestId = null;\n\n /**\n * Internal value managed by minFPS property setter and getter.\n * This is the maximum allowed milliseconds between updates.\n * @type {number}\n * @private\n */\n this._maxElapsedMS = 100;\n\n /**\n * Internal value managed by maxFPS property setter and getter.\n * This is the minimum allowed milliseconds between updates.\n * @private\n */\n this._minElapsedMS = 0;\n\n /**\n * Whether or not this ticker should invoke the method\n * {@link PIXI.Ticker#start} automatically\n * when a listener is added.\n *\n * @member {boolean}\n * @default false\n */\n this.autoStart = false;\n\n /**\n * Scalar time value from last frame to this frame.\n * This value is capped by setting {@link PIXI.Ticker#minFPS}\n * and is scaled with {@link PIXI.Ticker#speed}.\n * **Note:** The cap may be exceeded by scaling.\n *\n * @member {number}\n * @default 1\n */\n this.deltaTime = 1;\n\n /**\n * Scaler time elapsed in milliseconds from last frame to this frame.\n * This value is capped by setting {@link PIXI.Ticker#minFPS}\n * and is scaled with {@link PIXI.Ticker#speed}.\n * **Note:** The cap may be exceeded by scaling.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n * Defaults to target frame time\n *\n * @member {number}\n * @default 16.66\n */\n this.deltaMS = 1 / settings.TARGET_FPMS;\n\n /**\n * Time elapsed in milliseconds from last frame to this frame.\n * Opposed to what the scalar {@link PIXI.Ticker#deltaTime}\n * is based, this value is neither capped nor scaled.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n * Defaults to target frame time\n *\n * @member {number}\n * @default 16.66\n */\n this.elapsedMS = 1 / settings.TARGET_FPMS;\n\n /**\n * The last time {@link PIXI.Ticker#update} was invoked.\n * This value is also reset internally outside of invoking\n * update, but only when a new animation frame is requested.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n *\n * @member {number}\n * @default -1\n */\n this.lastTime = -1;\n\n /**\n * Factor of current {@link PIXI.Ticker#deltaTime}.\n * @example\n * // Scales ticker.deltaTime to what would be\n * // the equivalent of approximately 120 FPS\n * ticker.speed = 2;\n *\n * @member {number}\n * @default 1\n */\n this.speed = 1;\n\n /**\n * Whether or not this ticker has been started.\n * `true` if {@link PIXI.Ticker#start} has been called.\n * `false` if {@link PIXI.Ticker#stop} has been called.\n * While `false`, this value may change to `true` in the\n * event of {@link PIXI.Ticker#autoStart} being `true`\n * and a listener is added.\n *\n * @member {boolean}\n * @default false\n */\n this.started = false;\n\n /**\n * If enabled, deleting is disabled.\n * @member {boolean}\n * @default false\n * @private\n */\n this._protected = false;\n\n /**\n * The last time keyframe was executed.\n * Maintains a relatively fixed interval with the previous value.\n * @member {number}\n * @default -1\n * @private\n */\n this._lastFrame = -1;\n\n /**\n * Internal tick method bound to ticker instance.\n * This is because in early 2015, Function.bind\n * is still 60% slower in high performance scenarios.\n * Also separating frame requests from update method\n * so listeners may be called at any time and with\n * any animation API, just invoke ticker.update(time).\n *\n * @private\n * @param {number} time - Time since last tick.\n */\n this._tick = function (time) {\n this$1._requestId = null;\n\n if (this$1.started)\n {\n // Invoke listeners now\n this$1.update(time);\n // Listener side effects may have modified ticker state.\n if (this$1.started && this$1._requestId === null && this$1._head.next)\n {\n this$1._requestId = requestAnimationFrame(this$1._tick);\n }\n }\n };\n};\n\nvar prototypeAccessors = { FPS: { configurable: true },minFPS: { configurable: true },maxFPS: { configurable: true } };\nvar staticAccessors = { shared: { configurable: true },system: { configurable: true } };\n\n/**\n * Conditionally requests a new animation frame.\n * If a frame has not already been requested, and if the internal\n * emitter has listeners, a new frame is requested.\n *\n * @private\n */\nTicker.prototype._requestIfNeeded = function _requestIfNeeded ()\n{\n if (this._requestId === null && this._head.next)\n {\n // ensure callbacks get correct delta\n this.lastTime = performance.now();\n this._lastFrame = this.lastTime;\n this._requestId = requestAnimationFrame(this._tick);\n }\n};\n\n/**\n * Conditionally cancels a pending animation frame.\n *\n * @private\n */\nTicker.prototype._cancelIfNeeded = function _cancelIfNeeded ()\n{\n if (this._requestId !== null)\n {\n cancelAnimationFrame(this._requestId);\n this._requestId = null;\n }\n};\n\n/**\n * Conditionally requests a new animation frame.\n * If the ticker has been started it checks if a frame has not already\n * been requested, and if the internal emitter has listeners. If these\n * conditions are met, a new frame is requested. If the ticker has not\n * been started, but autoStart is `true`, then the ticker starts now,\n * and continues with the previous conditions to request a new frame.\n *\n * @private\n */\nTicker.prototype._startIfPossible = function _startIfPossible ()\n{\n if (this.started)\n {\n this._requestIfNeeded();\n }\n else if (this.autoStart)\n {\n this.start();\n }\n};\n\n/**\n * Register a handler for tick events. Calls continuously unless\n * it is removed or the ticker is stopped.\n *\n * @param {Function} fn - The listener function to be added for updates\n * @param {*} [context] - The listener context\n * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.add = function add (fn, context, priority)\n{\n if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL;\n\n return this._addListener(new TickerListener(fn, context, priority));\n};\n\n/**\n * Add a handler for the tick event which is only execute once.\n *\n * @param {Function} fn - The listener function to be added for one update\n * @param {*} [context] - The listener context\n * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.addOnce = function addOnce (fn, context, priority)\n{\n if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL;\n\n return this._addListener(new TickerListener(fn, context, priority, true));\n};\n\n/**\n * Internally adds the event handler so that it can be sorted by priority.\n * Priority allows certain handler (user, AnimatedSprite, Interaction) to be run\n * before the rendering.\n *\n * @private\n * @param {TickerListener} listener - Current listener being added.\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype._addListener = function _addListener (listener)\n{\n // For attaching to head\n var current = this._head.next;\n var previous = this._head;\n\n // Add the first item\n if (!current)\n {\n listener.connect(previous);\n }\n else\n {\n // Go from highest to lowest priority\n while (current)\n {\n if (listener.priority > current.priority)\n {\n listener.connect(previous);\n break;\n }\n previous = current;\n current = current.next;\n }\n\n // Not yet connected\n if (!listener.previous)\n {\n listener.connect(previous);\n }\n }\n\n this._startIfPossible();\n\n return this;\n};\n\n/**\n * Removes any handlers matching the function and context parameters.\n * If no handlers are left after removing, then it cancels the animation frame.\n *\n * @param {Function} fn - The listener function to be removed\n * @param {*} [context] - The listener context to be removed\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.remove = function remove (fn, context)\n{\n var listener = this._head.next;\n\n while (listener)\n {\n // We found a match, lets remove it\n // no break to delete all possible matches\n // incase a listener was added 2+ times\n if (listener.match(fn, context))\n {\n listener = listener.destroy();\n }\n else\n {\n listener = listener.next;\n }\n }\n\n if (!this._head.next)\n {\n this._cancelIfNeeded();\n }\n\n return this;\n};\n\n/**\n * Starts the ticker. If the ticker has listeners\n * a new animation frame is requested at this point.\n */\nTicker.prototype.start = function start ()\n{\n if (!this.started)\n {\n this.started = true;\n this._requestIfNeeded();\n }\n};\n\n/**\n * Stops the ticker. If the ticker has requested\n * an animation frame it is canceled at this point.\n */\nTicker.prototype.stop = function stop ()\n{\n if (this.started)\n {\n this.started = false;\n this._cancelIfNeeded();\n }\n};\n\n/**\n * Destroy the ticker and don't use after this. Calling\n * this method removes all references to internal events.\n */\nTicker.prototype.destroy = function destroy ()\n{\n if (!this._protected)\n {\n this.stop();\n\n var listener = this._head.next;\n\n while (listener)\n {\n listener = listener.destroy(true);\n }\n\n this._head.destroy();\n this._head = null;\n }\n};\n\n/**\n * Triggers an update. An update entails setting the\n * current {@link PIXI.Ticker#elapsedMS},\n * the current {@link PIXI.Ticker#deltaTime},\n * invoking all listeners with current deltaTime,\n * and then finally setting {@link PIXI.Ticker#lastTime}\n * with the value of currentTime that was provided.\n * This method will be called automatically by animation\n * frame callbacks if the ticker instance has been started\n * and listeners are added.\n *\n * @param {number} [currentTime=performance.now()] - the current time of execution\n */\nTicker.prototype.update = function update (currentTime)\n{\n if ( currentTime === void 0 ) currentTime = performance.now();\n\n var elapsedMS;\n\n // If the difference in time is zero or negative, we ignore most of the work done here.\n // If there is no valid difference, then should be no reason to let anyone know about it.\n // A zero delta, is exactly that, nothing should update.\n //\n // The difference in time can be negative, and no this does not mean time traveling.\n // This can be the result of a race condition between when an animation frame is requested\n // on the current JavaScript engine event loop, and when the ticker's start method is invoked\n // (which invokes the internal _requestIfNeeded method). If a frame is requested before\n // _requestIfNeeded is invoked, then the callback for the animation frame the ticker requests,\n // can receive a time argument that can be less than the lastTime value that was set within\n // _requestIfNeeded. This difference is in microseconds, but this is enough to cause problems.\n //\n // This check covers this browser engine timing issue, as well as if consumers pass an invalid\n // currentTime value. This may happen if consumers opt-out of the autoStart, and update themselves.\n\n if (currentTime > this.lastTime)\n {\n // Save uncapped elapsedMS for measurement\n elapsedMS = this.elapsedMS = currentTime - this.lastTime;\n\n // cap the milliseconds elapsed used for deltaTime\n if (elapsedMS > this._maxElapsedMS)\n {\n elapsedMS = this._maxElapsedMS;\n }\n\n elapsedMS *= this.speed;\n\n // If not enough time has passed, exit the function.\n // Get ready for next frame by setting _lastFrame, but based on _minElapsedMS\n // adjustment to ensure a relatively stable interval.\n if (this._minElapsedMS)\n {\n var delta = currentTime - this._lastFrame | 0;\n\n if (delta < this._minElapsedMS)\n {\n return;\n }\n\n this._lastFrame = currentTime - (delta % this._minElapsedMS);\n }\n\n this.deltaMS = elapsedMS;\n this.deltaTime = this.deltaMS * settings.TARGET_FPMS;\n\n // Cache a local reference, in-case ticker is destroyed\n // during the emit, we can still check for head.next\n var head = this._head;\n\n // Invoke listeners added to internal emitter\n var listener = head.next;\n\n while (listener)\n {\n listener = listener.emit(this.deltaTime);\n }\n\n if (!head.next)\n {\n this._cancelIfNeeded();\n }\n }\n else\n {\n this.deltaTime = this.deltaMS = this.elapsedMS = 0;\n }\n\n this.lastTime = currentTime;\n};\n\n/**\n * The frames per second at which this ticker is running.\n * The default is approximately 60 in most modern browsers.\n * **Note:** This does not factor in the value of\n * {@link PIXI.Ticker#speed}, which is specific\n * to scaling {@link PIXI.Ticker#deltaTime}.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.FPS.get = function ()\n{\n return 1000 / this.elapsedMS;\n};\n\n/**\n * Manages the maximum amount of milliseconds allowed to\n * elapse between invoking {@link PIXI.Ticker#update}.\n * This value is used to cap {@link PIXI.Ticker#deltaTime},\n * but does not effect the measured value of {@link PIXI.Ticker#FPS}.\n * When setting this property it is clamped to a value between\n * `0` and `PIXI.settings.TARGET_FPMS * 1000`.\n *\n * @member {number}\n * @default 10\n */\nprototypeAccessors.minFPS.get = function ()\n{\n return 1000 / this._maxElapsedMS;\n};\n\nprototypeAccessors.minFPS.set = function (fps) // eslint-disable-line require-jsdoc\n{\n // Minimum must be below the maxFPS\n var minFPS = Math.min(this.maxFPS, fps);\n\n // Must be at least 0, but below 1 / settings.TARGET_FPMS\n var minFPMS = Math.min(Math.max(0, minFPS) / 1000, settings.TARGET_FPMS);\n\n this._maxElapsedMS = 1 / minFPMS;\n};\n\n/**\n * Manages the minimum amount of milliseconds required to\n * elapse between invoking {@link PIXI.Ticker#update}.\n * This will effect the measured value of {@link PIXI.Ticker#FPS}.\n * If it is set to `0`, then there is no limit; PixiJS will render as many frames as it can.\n * Otherwise it will be at least `minFPS`\n *\n * @member {number}\n * @default 0\n */\nprototypeAccessors.maxFPS.get = function ()\n{\n if (this._minElapsedMS)\n {\n return Math.round(1000 / this._minElapsedMS);\n }\n\n return 0;\n};\n\nprototypeAccessors.maxFPS.set = function (fps)\n{\n if (fps === 0)\n {\n this._minElapsedMS = 0;\n }\n else\n {\n // Max must be at least the minFPS\n var maxFPS = Math.max(this.minFPS, fps);\n\n this._minElapsedMS = 1 / (maxFPS / 1000);\n }\n};\n\n/**\n * The shared ticker instance used by {@link PIXI.AnimatedSprite} and by\n * {@link PIXI.VideoResource} to update animation frames / video textures.\n *\n * It may also be used by {@link PIXI.Application} if created with the `sharedTicker` option property set to true.\n *\n * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance.\n * Please follow the examples for usage, including how to opt-out of auto-starting the shared ticker.\n *\n * @example\n * let ticker = PIXI.Ticker.shared;\n * // Set this to prevent starting this ticker when listeners are added.\n * // By default this is true only for the PIXI.Ticker.shared instance.\n * ticker.autoStart = false;\n * // FYI, call this to ensure the ticker is stopped. It should be stopped\n * // if you have not attempted to render anything yet.\n * ticker.stop();\n * // Call this when you are ready for a running shared ticker.\n * ticker.start();\n *\n * @example\n * // You may use the shared ticker to render...\n * let renderer = PIXI.autoDetectRenderer();\n * let stage = new PIXI.Container();\n * document.body.appendChild(renderer.view);\n * ticker.add(function (time) {\n * renderer.render(stage);\n * });\n *\n * @example\n * // Or you can just update it manually.\n * ticker.autoStart = false;\n * ticker.stop();\n * function animate(time) {\n * ticker.update(time);\n * renderer.render(stage);\n * requestAnimationFrame(animate);\n * }\n * animate(performance.now());\n *\n * @member {PIXI.Ticker}\n * @static\n */\nstaticAccessors.shared.get = function ()\n{\n if (!Ticker._shared)\n {\n var shared = Ticker._shared = new Ticker();\n\n shared.autoStart = true;\n shared._protected = true;\n }\n\n return Ticker._shared;\n};\n\n/**\n * The system ticker instance used by {@link PIXI.interaction.InteractionManager} and by\n * {@link PIXI.BasePrepare} for core timing functionality that shouldn't usually need to be paused,\n * unlike the `shared` ticker which drives visual animations and rendering which may want to be paused.\n *\n * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance.\n *\n * @member {PIXI.Ticker}\n * @static\n */\nstaticAccessors.system.get = function ()\n{\n if (!Ticker._system)\n {\n var system = Ticker._system = new Ticker();\n\n system.autoStart = true;\n system._protected = true;\n }\n\n return Ticker._system;\n};\n\nObject.defineProperties( Ticker.prototype, prototypeAccessors );\nObject.defineProperties( Ticker, staticAccessors );\n\n/**\n * Middleware for for Application Ticker.\n *\n * @example\n * import {TickerPlugin} from '@pixi/ticker';\n * import {Application} from '@pixi/app';\n * Application.registerPlugin(TickerPlugin);\n *\n * @class\n * @memberof PIXI\n */\nvar TickerPlugin = function TickerPlugin () {};\n\nTickerPlugin.init = function init (options)\n{\n var this$1 = this;\n\n // Set default\n options = Object.assign({\n autoStart: true,\n sharedTicker: false,\n }, options);\n\n // Create ticker setter\n Object.defineProperty(this, 'ticker',\n {\n set: function set(ticker)\n {\n if (this._ticker)\n {\n this._ticker.remove(this.render, this);\n }\n this._ticker = ticker;\n if (ticker)\n {\n ticker.add(this.render, this, UPDATE_PRIORITY.LOW);\n }\n },\n get: function get()\n {\n return this._ticker;\n },\n });\n\n /**\n * Convenience method for stopping the render.\n *\n * @method PIXI.Application#stop\n */\n this.stop = function () {\n this$1._ticker.stop();\n };\n\n /**\n * Convenience method for starting the render.\n *\n * @method PIXI.Application#start\n */\n this.start = function () {\n this$1._ticker.start();\n };\n\n /**\n * Internal reference to the ticker.\n *\n * @type {PIXI.Ticker}\n * @name _ticker\n * @memberof PIXI.Application#\n * @private\n */\n this._ticker = null;\n\n /**\n * Ticker for doing render updates.\n *\n * @type {PIXI.Ticker}\n * @name ticker\n * @memberof PIXI.Application#\n * @default PIXI.Ticker.shared\n */\n this.ticker = options.sharedTicker ? Ticker.shared : new Ticker();\n\n // Start the rendering\n if (options.autoStart)\n {\n this.start();\n }\n};\n\n/**\n * Clean up the ticker, scoped to application.\n *\n * @static\n * @private\n */\nTickerPlugin.destroy = function destroy ()\n{\n if (this._ticker)\n {\n var oldTicker = this._ticker;\n\n this.ticker = null;\n oldTicker.destroy();\n }\n};\n\nexport { Ticker, TickerPlugin, UPDATE_PRIORITY };\n//# sourceMappingURL=ticker.es.js.map\n","/*!\n * @pixi/core - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/core is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Runner } from '@pixi/runner';\nimport { determineCrossOrigin, isPow2, BaseTextureCache, TextureCache, uid, EventEmitter, getResolutionOfUrl, nextPow2, isMobile, ProgramCache, removeItems, hex2string, hex2rgb, deprecation, isWebGLSupported, sayHello, premultiplyBlendMode, log2, premultiplyTint } from '@pixi/utils';\nimport { settings } from '@pixi/settings';\nimport { SCALE_MODES, FORMATS, TYPES, TARGETS, DRAW_MODES, ENV, PRECISION, BLEND_MODES, GC_MODES, MIPMAP_MODES, WRAP_MODES, RENDERER_TYPE } from '@pixi/constants';\nimport { Ticker } from '@pixi/ticker';\nimport { GroupD8, Rectangle, Point, Matrix } from '@pixi/math';\nimport { Container } from '@pixi/display';\n\n/**\n * Base resource class for textures that manages validation and uploading, depending on its type.\n *\n * Uploading of a base texture to the GPU is required.\n *\n * @class\n * @memberof PIXI.resources\n */\nvar Resource = function Resource(width, height)\n{\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n\n /**\n * Internal width of the resource\n * @member {number}\n * @protected\n */\n this._width = width;\n\n /**\n * Internal height of the resource\n * @member {number}\n * @protected\n */\n this._height = height;\n\n /**\n * If resource has been destroyed\n * @member {boolean}\n * @readonly\n * @default false\n */\n this.destroyed = false;\n\n /**\n * `true` if resource is created by BaseTexture\n * useful for doing cleanup with BaseTexture destroy\n * and not cleaning up resources that were created\n * externally.\n * @member {boolean}\n * @protected\n */\n this.internal = false;\n\n /**\n * Mini-runner for handling resize events\n *\n * @member {Runner}\n * @private\n */\n this.onResize = new Runner('setRealSize', 2);\n\n /**\n * Mini-runner for handling update events\n *\n * @member {Runner}\n * @private\n */\n this.onUpdate = new Runner('update');\n\n /**\n * Handle internal errors, such as loading errors\n *\n * @member {Runner}\n * @private\n */\n this.onError = new Runner('onError', 1);\n};\n\nvar prototypeAccessors = { valid: { configurable: true },width: { configurable: true },height: { configurable: true } };\n\n/**\n * Bind to a parent BaseTexture\n *\n * @param {PIXI.BaseTexture} baseTexture - Parent texture\n */\nResource.prototype.bind = function bind (baseTexture)\n{\n this.onResize.add(baseTexture);\n this.onUpdate.add(baseTexture);\n this.onError.add(baseTexture);\n\n // Call a resize immediate if we already\n // have the width and height of the resource\n if (this._width || this._height)\n {\n this.onResize.run(this._width, this._height);\n }\n};\n\n/**\n * Unbind to a parent BaseTexture\n *\n * @param {PIXI.BaseTexture} baseTexture - Parent texture\n */\nResource.prototype.unbind = function unbind (baseTexture)\n{\n this.onResize.remove(baseTexture);\n this.onUpdate.remove(baseTexture);\n this.onError.remove(baseTexture);\n};\n\n/**\n * Trigger a resize event\n * @param {number} width X dimension\n * @param {number} height Y dimension\n */\nResource.prototype.resize = function resize (width, height)\n{\n if (width !== this._width || height !== this._height)\n {\n this._width = width;\n this._height = height;\n this.onResize.run(width, height);\n }\n};\n\n/**\n * Has been validated\n * @readonly\n * @member {boolean}\n */\nprototypeAccessors.valid.get = function ()\n{\n return !!this._width && !!this._height;\n};\n\n/**\n * Has been updated trigger event\n */\nResource.prototype.update = function update ()\n{\n if (!this.destroyed)\n {\n this.onUpdate.run();\n }\n};\n\n/**\n * This can be overridden to start preloading a resource\n * or do any other prepare step.\n * @protected\n * @return {Promise} Handle the validate event\n */\nResource.prototype.load = function load ()\n{\n return Promise.resolve();\n};\n\n/**\n * The width of the resource.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.width.get = function ()\n{\n return this._width;\n};\n\n/**\n * The height of the resource.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.height.get = function ()\n{\n return this._height;\n};\n\n/**\n * Uploads the texture or returns false if it cant for some reason. Override this.\n *\n * @param {PIXI.Renderer} renderer - yeah, renderer!\n * @param {PIXI.BaseTexture} baseTexture - the texture\n * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context\n * @returns {boolean} true is success\n */\nResource.prototype.upload = function upload (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars\n{\n return false;\n};\n\n/**\n * Set the style, optional to override\n *\n * @param {PIXI.Renderer} renderer - yeah, renderer!\n * @param {PIXI.BaseTexture} baseTexture - the texture\n * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context\n * @returns {boolean} `true` is success\n */\nResource.prototype.style = function style (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars\n{\n return false;\n};\n\n/**\n * Clean up anything, this happens when destroying is ready.\n *\n * @protected\n */\nResource.prototype.dispose = function dispose ()\n{\n // override\n};\n\n/**\n * Call when destroying resource, unbind any BaseTexture object\n * before calling this method, as reference counts are maintained\n * internally.\n */\nResource.prototype.destroy = function destroy ()\n{\n if (!this.destroyed)\n {\n this.destroyed = true;\n this.dispose();\n this.onError.removeAll();\n this.onError = null;\n this.onResize.removeAll();\n this.onResize = null;\n this.onUpdate.removeAll();\n this.onUpdate = null;\n }\n};\n\nObject.defineProperties( Resource.prototype, prototypeAccessors );\n\n/**\n * Base for all the image/canvas resources\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n */\nvar BaseImageResource = /*@__PURE__*/(function (Resource) {\n function BaseImageResource(source)\n {\n var width = source.naturalWidth || source.videoWidth || source.width;\n var height = source.naturalHeight || source.videoHeight || source.height;\n\n Resource.call(this, width, height);\n\n /**\n * The source element\n * @member {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement}\n * @readonly\n */\n this.source = source;\n\n /**\n * If set to `true`, will force `texImage2D` over `texSubImage2D` for uploading.\n * Certain types of media (e.g. video) using `texImage2D` is more performant.\n * @member {boolean}\n * @default false\n * @private\n */\n this.noSubImage = false;\n }\n\n if ( Resource ) BaseImageResource.__proto__ = Resource;\n BaseImageResource.prototype = Object.create( Resource && Resource.prototype );\n BaseImageResource.prototype.constructor = BaseImageResource;\n\n /**\n * Set cross origin based detecting the url and the crossorigin\n * @protected\n * @param {HTMLElement} element - Element to apply crossOrigin\n * @param {string} url - URL to check\n * @param {boolean|string} [crossorigin=true] - Cross origin value to use\n */\n BaseImageResource.crossOrigin = function crossOrigin (element, url, crossorigin)\n {\n if (crossorigin === undefined && url.indexOf('data:') !== 0)\n {\n element.crossOrigin = determineCrossOrigin(url);\n }\n else if (crossorigin !== false)\n {\n element.crossOrigin = typeof crossorigin === 'string' ? crossorigin : 'anonymous';\n }\n };\n\n /**\n * Upload the texture to the GPU.\n * @param {PIXI.Renderer} renderer Upload to the renderer\n * @param {PIXI.BaseTexture} baseTexture Reference to parent texture\n * @param {PIXI.GLTexture} glTexture\n * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} [source] (optional)\n * @returns {boolean} true is success\n */\n BaseImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture, source)\n {\n var gl = renderer.gl;\n var width = baseTexture.realWidth;\n var height = baseTexture.realHeight;\n\n source = source || this.source;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (!this.noSubImage\n && baseTexture.target === gl.TEXTURE_2D\n && glTexture.width === width\n && glTexture.height === height)\n {\n gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, baseTexture.format, baseTexture.type, source);\n }\n else\n {\n glTexture.width = width;\n glTexture.height = height;\n\n gl.texImage2D(baseTexture.target, 0, baseTexture.format, baseTexture.format, baseTexture.type, source);\n }\n\n return true;\n };\n\n /**\n * Checks if source width/height was changed, resize can cause extra baseTexture update.\n * Triggers one update in any case.\n */\n BaseImageResource.prototype.update = function update ()\n {\n if (this.destroyed)\n {\n return;\n }\n\n var width = this.source.naturalWidth || this.source.videoWidth || this.source.width;\n var height = this.source.naturalHeight || this.source.videoHeight || this.source.height;\n\n this.resize(width, height);\n\n Resource.prototype.update.call(this);\n };\n\n /**\n * Destroy this BaseImageResource\n * @override\n * @param {PIXI.BaseTexture} [fromTexture] Optional base texture\n * @return {boolean} Destroy was successful\n */\n BaseImageResource.prototype.dispose = function dispose ()\n {\n this.source = null;\n };\n\n return BaseImageResource;\n}(Resource));\n\n/**\n * Resource type for HTMLImageElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n */\nvar ImageResource = /*@__PURE__*/(function (BaseImageResource) {\n function ImageResource(source, options)\n {\n options = options || {};\n\n if (!(source instanceof HTMLImageElement))\n {\n var imageElement = new Image();\n\n BaseImageResource.crossOrigin(imageElement, source, options.crossorigin);\n\n imageElement.src = source;\n source = imageElement;\n }\n\n BaseImageResource.call(this, source);\n\n // FireFox 68, and possibly other versions, seems like setting the HTMLImageElement#width and #height\n // to non-zero values before its loading completes if images are in a cache.\n // Because of this, need to set the `_width` and the `_height` to zero to avoid uploading incomplete images.\n // Please refer to the issue #5968 (https://github.com/pixijs/pixi.js/issues/5968).\n if (!source.complete && !!this._width && !!this._height)\n {\n this._width = 0;\n this._height = 0;\n }\n\n /**\n * URL of the image source\n * @member {string}\n */\n this.url = source.src;\n\n /**\n * When process is completed\n * @member {Promise}\n * @private\n */\n this._process = null;\n\n /**\n * If the image should be disposed after upload\n * @member {boolean}\n * @default false\n */\n this.preserveBitmap = false;\n\n /**\n * If capable, convert the image using createImageBitmap API\n * @member {boolean}\n * @default PIXI.settings.CREATE_IMAGE_BITMAP\n */\n this.createBitmap = (options.createBitmap !== undefined\n ? options.createBitmap : settings.CREATE_IMAGE_BITMAP) && !!window.createImageBitmap;\n\n /**\n * Controls texture premultiplyAlpha field\n * Copies from options\n * @member {boolean|null}\n * @readonly\n */\n this.premultiplyAlpha = options.premultiplyAlpha !== false;\n\n /**\n * The ImageBitmap element created for HTMLImageElement\n * @member {ImageBitmap}\n * @default null\n */\n this.bitmap = null;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) ImageResource.__proto__ = BaseImageResource;\n ImageResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n ImageResource.prototype.constructor = ImageResource;\n\n /**\n * returns a promise when image will be loaded and processed\n *\n * @param {boolean} [createBitmap=true] whether process image into bitmap\n * @returns {Promise}\n */\n ImageResource.prototype.load = function load (createBitmap)\n {\n var this$1 = this;\n\n if (createBitmap !== undefined)\n {\n this.createBitmap = createBitmap;\n }\n\n if (this._load)\n {\n return this._load;\n }\n\n this._load = new Promise(function (resolve) {\n this$1.url = this$1.source.src;\n var ref = this$1;\n var source = ref.source;\n\n var completed = function () {\n if (this$1.destroyed)\n {\n return;\n }\n source.onload = null;\n source.onerror = null;\n\n this$1.resize(source.width, source.height);\n this$1._load = null;\n\n if (this$1.createBitmap)\n {\n resolve(this$1.process());\n }\n else\n {\n resolve(this$1);\n }\n };\n\n if (source.complete && source.src)\n {\n completed();\n }\n else\n {\n source.onload = completed;\n source.onerror = function (event) { return this$1.onError.run(event); };\n }\n });\n\n return this._load;\n };\n\n /**\n * Called when we need to convert image into BitmapImage.\n * Can be called multiple times, real promise is cached inside.\n *\n * @returns {Promise} cached promise to fill that bitmap\n */\n ImageResource.prototype.process = function process ()\n {\n var this$1 = this;\n\n if (this._process !== null)\n {\n return this._process;\n }\n if (this.bitmap !== null || !window.createImageBitmap)\n {\n return Promise.resolve(this);\n }\n\n this._process = window.createImageBitmap(this.source,\n 0, 0, this.source.width, this.source.height,\n {\n premultiplyAlpha: this.premultiplyAlpha ? 'premultiply' : 'none',\n })\n .then(function (bitmap) {\n if (this$1.destroyed)\n {\n return Promise.reject();\n }\n this$1.bitmap = bitmap;\n this$1.update();\n this$1._process = null;\n\n return Promise.resolve(this$1);\n });\n\n return this._process;\n };\n\n /**\n * Upload the image resource to GPU.\n *\n * @param {PIXI.Renderer} renderer - Renderer to upload to\n * @param {PIXI.BaseTexture} baseTexture - BaseTexture for this resource\n * @param {PIXI.GLTexture} glTexture - GLTexture to use\n * @returns {boolean} true is success\n */\n ImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n baseTexture.premultiplyAlpha = this.premultiplyAlpha;\n\n if (!this.createBitmap)\n {\n return BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture);\n }\n if (!this.bitmap)\n {\n // yeah, ignore the output\n this.process();\n if (!this.bitmap)\n {\n return false;\n }\n }\n\n BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture, this.bitmap);\n\n if (!this.preserveBitmap)\n {\n // checks if there are other renderers that possibly need this bitmap\n\n var flag = true;\n\n for (var key in baseTexture._glTextures)\n {\n var otherTex = baseTexture._glTextures[key];\n\n if (otherTex !== glTexture && otherTex.dirtyId !== baseTexture.dirtyId)\n {\n flag = false;\n break;\n }\n }\n\n if (flag)\n {\n if (this.bitmap.close)\n {\n this.bitmap.close();\n }\n\n this.bitmap = null;\n }\n }\n\n return true;\n };\n\n /**\n * Destroys this texture\n * @override\n */\n ImageResource.prototype.dispose = function dispose ()\n {\n this.source.onload = null;\n this.source.onerror = null;\n\n BaseImageResource.prototype.dispose.call(this);\n\n if (this.bitmap)\n {\n this.bitmap.close();\n this.bitmap = null;\n }\n this._process = null;\n this._load = null;\n };\n\n return ImageResource;\n}(BaseImageResource));\n\n/**\n * Collection of installed resource types, class must extend {@link PIXI.resources.Resource}.\n * @example\n * class CustomResource extends PIXI.resources.Resource {\n * // MUST have source, options constructor signature\n * // for auto-detected resources to be created.\n * constructor(source, options) {\n * super();\n * }\n * upload(renderer, baseTexture, glTexture) {\n * // upload with GL\n * return true;\n * }\n * // used to auto-detect resource\n * static test(source, extension) {\n * return extension === 'xyz'|| source instanceof SomeClass;\n * }\n * }\n * // Install the new resource type\n * PIXI.resources.INSTALLED.push(CustomResource);\n *\n * @name PIXI.resources.INSTALLED\n * @type {Array<*>}\n * @static\n * @readonly\n */\nvar INSTALLED = [];\n\n/**\n * Create a resource element from a single source element. This\n * auto-detects which type of resource to create. All resources that\n * are auto-detectable must have a static `test` method and a constructor\n * with the arguments `(source, options?)`. Currently, the supported\n * resources for auto-detection include:\n * - {@link PIXI.resources.ImageResource}\n * - {@link PIXI.resources.CanvasResource}\n * - {@link PIXI.resources.VideoResource}\n * - {@link PIXI.resources.SVGResource}\n * - {@link PIXI.resources.BufferResource}\n * @static\n * @function PIXI.resources.autoDetectResource\n * @param {string|*} source - Resource source, this can be the URL to the resource,\n * a typed-array (for BufferResource), HTMLVideoElement, SVG data-uri\n * or any other resource that can be auto-detected. If not resource is\n * detected, it's assumed to be an ImageResource.\n * @param {object} [options] - Pass-through options to use for Resource\n * @param {number} [options.width] - Width of BufferResource or SVG rasterization\n * @param {number} [options.height] - Height of BufferResource or SVG rasterization\n * @param {boolean} [options.autoLoad=true] - Image, SVG and Video flag to start loading\n * @param {number} [options.scale=1] - SVG source scale. Overridden by width, height\n * @param {boolean} [options.createBitmap=PIXI.settings.CREATE_IMAGE_BITMAP] - Image option to create Bitmap object\n * @param {boolean} [options.crossorigin=true] - Image and Video option to set crossOrigin\n * @param {boolean} [options.autoPlay=true] - Video option to start playing video immediately\n * @param {number} [options.updateFPS=0] - Video option to update how many times a second the\n * texture should be updated from the video. Leave at 0 to update at every render\n * @return {PIXI.resources.Resource} The created resource.\n */\nfunction autoDetectResource(source, options)\n{\n if (!source)\n {\n return null;\n }\n\n var extension = '';\n\n if (typeof source === 'string')\n {\n // search for file extension: period, 3-4 chars, then ?, # or EOL\n var result = (/\\.(\\w{3,4})(?:$|\\?|#)/i).exec(source);\n\n if (result)\n {\n extension = result[1].toLowerCase();\n }\n }\n\n for (var i = INSTALLED.length - 1; i >= 0; --i)\n {\n var ResourcePlugin = INSTALLED[i];\n\n if (ResourcePlugin.test && ResourcePlugin.test(source, extension))\n {\n return new ResourcePlugin(source, options);\n }\n }\n\n // When in doubt: probably an image\n // might be appropriate to throw an error or return null\n return new ImageResource(source, options);\n}\n\n/**\n * @interface SharedArrayBuffer\n */\n\n/**\n * Buffer resource with data of typed array.\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n */\nvar BufferResource = /*@__PURE__*/(function (Resource) {\n function BufferResource(source, options)\n {\n var ref = options || {};\n var width = ref.width;\n var height = ref.height;\n\n if (!width || !height)\n {\n throw new Error('BufferResource width or height invalid');\n }\n\n Resource.call(this, width, height);\n\n /**\n * Source array\n * Cannot be ClampedUint8Array because it cant be uploaded to WebGL\n *\n * @member {Float32Array|Uint8Array|Uint32Array}\n */\n this.data = source;\n }\n\n if ( Resource ) BufferResource.__proto__ = Resource;\n BufferResource.prototype = Object.create( Resource && Resource.prototype );\n BufferResource.prototype.constructor = BufferResource;\n\n /**\n * Upload the texture to the GPU.\n * @param {PIXI.Renderer} renderer Upload to the renderer\n * @param {PIXI.BaseTexture} baseTexture Reference to parent texture\n * @param {PIXI.GLTexture} glTexture glTexture\n * @returns {boolean} true is success\n */\n BufferResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var gl = renderer.gl;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height)\n {\n gl.texSubImage2D(\n baseTexture.target,\n 0,\n 0,\n 0,\n baseTexture.width,\n baseTexture.height,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n else\n {\n glTexture.width = baseTexture.width;\n glTexture.height = baseTexture.height;\n\n gl.texImage2D(\n baseTexture.target,\n 0,\n glTexture.internalFormat,\n baseTexture.width,\n baseTexture.height,\n 0,\n baseTexture.format,\n glTexture.type,\n this.data\n );\n }\n\n return true;\n };\n\n /**\n * Destroy and don't use after this\n * @override\n */\n BufferResource.prototype.dispose = function dispose ()\n {\n this.data = null;\n };\n\n /**\n * Used to auto-detect the type of resource.\n *\n * @static\n * @param {*} source - The source object\n * @return {boolean} `true` if \n */\n BufferResource.test = function test (source)\n {\n return source instanceof Float32Array\n || source instanceof Uint8Array\n || source instanceof Uint32Array;\n };\n\n return BufferResource;\n}(Resource));\n\nvar defaultBufferOptions = {\n scaleMode: SCALE_MODES.NEAREST,\n format: FORMATS.RGBA,\n premultiplyAlpha: false,\n};\n\n/**\n * A Texture stores the information that represents an image.\n * All textures have a base texture, which contains information about the source.\n * Therefore you can have many textures all using a single BaseTexture\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n * @param {PIXI.resources.Resource|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} [resource=null]\n * The current resource to use, for things that aren't Resource objects, will be converted\n * into a Resource.\n * @param {Object} [options] - Collection of options\n * @param {PIXI.MIPMAP_MODES} [options.mipmap=PIXI.settings.MIPMAP_TEXTURES] - If mipmapping is enabled for texture\n * @param {number} [options.anisotropicLevel=PIXI.settings.ANISOTROPIC_LEVEL] - Anisotropic filtering level of texture\n * @param {PIXI.WRAP_MODES} [options.wrapMode=PIXI.settings.WRAP_MODE] - Wrap mode for textures\n * @param {PIXI.SCALE_MODES} [options.scaleMode=PIXI.settings.SCALE_MODE] - Default scale mode, linear, nearest\n * @param {PIXI.FORMATS} [options.format=PIXI.FORMATS.RGBA] - GL format type\n * @param {PIXI.TYPES} [options.type=PIXI.TYPES.UNSIGNED_BYTE] - GL data type\n * @param {PIXI.TARGETS} [options.target=PIXI.TARGETS.TEXTURE_2D] - GL texture target\n * @param {boolean} [options.premultiplyAlpha=true] - Pre multiply the image alpha\n * @param {number} [options.width=0] - Width of the texture\n * @param {number} [options.height=0] - Height of the texture\n * @param {number} [options.resolution] - Resolution of the base texture\n * @param {object} [options.resourceOptions] - Optional resource options,\n * see {@link PIXI.resources.autoDetectResource autoDetectResource}\n */\nvar BaseTexture = /*@__PURE__*/(function (EventEmitter) {\n function BaseTexture(resource, options)\n {\n if ( resource === void 0 ) resource = null;\n if ( options === void 0 ) options = null;\n\n EventEmitter.call(this);\n\n options = options || {};\n\n var premultiplyAlpha = options.premultiplyAlpha;\n var mipmap = options.mipmap;\n var anisotropicLevel = options.anisotropicLevel;\n var scaleMode = options.scaleMode;\n var width = options.width;\n var height = options.height;\n var wrapMode = options.wrapMode;\n var format = options.format;\n var type = options.type;\n var target = options.target;\n var resolution = options.resolution;\n var resourceOptions = options.resourceOptions;\n\n // Convert the resource to a Resource object\n if (resource && !(resource instanceof Resource))\n {\n resource = autoDetectResource(resource, resourceOptions);\n resource.internal = true;\n }\n\n /**\n * The width of the base texture set when the image has loaded\n *\n * @readonly\n * @member {number}\n */\n this.width = width || 0;\n\n /**\n * The height of the base texture set when the image has loaded\n *\n * @readonly\n * @member {number}\n */\n this.height = height || 0;\n\n /**\n * The resolution / device pixel ratio of the texture\n *\n * @member {number}\n * @default PIXI.settings.RESOLUTION\n */\n this.resolution = resolution || settings.RESOLUTION;\n\n /**\n * Mipmap mode of the texture, affects downscaled images\n *\n * @member {PIXI.MIPMAP_MODES}\n * @default PIXI.settings.MIPMAP_TEXTURES\n */\n this.mipmap = mipmap !== undefined ? mipmap : settings.MIPMAP_TEXTURES;\n\n /**\n * Anisotropic filtering level of texture\n *\n * @member {number}\n * @default PIXI.settings.ANISOTROPIC_LEVEL\n */\n this.anisotropicLevel = anisotropicLevel !== undefined ? anisotropicLevel : settings.ANISOTROPIC_LEVEL;\n\n /**\n * How the texture wraps\n * @member {number}\n */\n this.wrapMode = wrapMode || settings.WRAP_MODE;\n\n /**\n * The scale mode to apply when scaling this texture\n *\n * @member {PIXI.SCALE_MODES}\n * @default PIXI.settings.SCALE_MODE\n */\n this.scaleMode = scaleMode !== undefined ? scaleMode : settings.SCALE_MODE;\n\n /**\n * The pixel format of the texture\n *\n * @member {PIXI.FORMATS}\n * @default PIXI.FORMATS.RGBA\n */\n this.format = format || FORMATS.RGBA;\n\n /**\n * The type of resource data\n *\n * @member {PIXI.TYPES}\n * @default PIXI.TYPES.UNSIGNED_BYTE\n */\n this.type = type || TYPES.UNSIGNED_BYTE;\n\n /**\n * The target type\n *\n * @member {PIXI.TARGETS}\n * @default PIXI.TARGETS.TEXTURE_2D\n */\n this.target = target || TARGETS.TEXTURE_2D;\n\n /**\n * Set to true to enable pre-multiplied alpha\n *\n * @member {boolean}\n * @default true\n */\n this.premultiplyAlpha = premultiplyAlpha !== false;\n\n /**\n * Global unique identifier for this BaseTexture\n *\n * @member {string}\n * @protected\n */\n this.uid = uid();\n\n /**\n * Used by automatic texture Garbage Collection, stores last GC tick when it was bound\n *\n * @member {number}\n * @protected\n */\n this.touched = 0;\n\n /**\n * Whether or not the texture is a power of two, try to use power of two textures as much\n * as you can\n *\n * @readonly\n * @member {boolean}\n * @default false\n */\n this.isPowerOfTwo = false;\n this._refreshPOT();\n\n /**\n * The map of render context textures where this is bound\n *\n * @member {Object}\n * @private\n */\n this._glTextures = {};\n\n /**\n * Used by TextureSystem to only update texture to the GPU when needed.\n * Please call `update()` to increment it.\n *\n * @readonly\n * @member {number}\n */\n this.dirtyId = 0;\n\n /**\n * Used by TextureSystem to only update texture style when needed.\n *\n * @protected\n * @member {number}\n */\n this.dirtyStyleId = 0;\n\n /**\n * Currently default cache ID.\n *\n * @member {string}\n */\n this.cacheId = null;\n\n /**\n * Generally speaking means when resource is loaded.\n * @readonly\n * @member {boolean}\n */\n this.valid = width > 0 && height > 0;\n\n /**\n * The collection of alternative cache ids, since some BaseTextures\n * can have more than one ID, short name and longer full URL\n *\n * @member {Array}\n * @readonly\n */\n this.textureCacheIds = [];\n\n /**\n * Flag if BaseTexture has been destroyed.\n *\n * @member {boolean}\n * @readonly\n */\n this.destroyed = false;\n\n /**\n * The resource used by this BaseTexture, there can only\n * be one resource per BaseTexture, but textures can share\n * resources.\n *\n * @member {PIXI.resources.Resource}\n * @readonly\n */\n this.resource = null;\n\n /**\n * Number of the texture batch, used by multi-texture renderers\n *\n * @member {number}\n */\n this._batchEnabled = 0;\n\n /**\n * Fired when a not-immediately-available source finishes loading.\n *\n * @protected\n * @event PIXI.BaseTexture#loaded\n * @param {PIXI.BaseTexture} baseTexture - Resource loaded.\n */\n\n /**\n * Fired when a not-immediately-available source fails to load.\n *\n * @protected\n * @event PIXI.BaseTexture#error\n * @param {PIXI.BaseTexture} baseTexture - Resource errored.\n * @param {ErrorEvent} event - Load error event.\n */\n\n /**\n * Fired when BaseTexture is updated.\n *\n * @protected\n * @event PIXI.BaseTexture#loaded\n * @param {PIXI.BaseTexture} baseTexture - Resource loaded.\n */\n\n /**\n * Fired when BaseTexture is updated.\n *\n * @protected\n * @event PIXI.BaseTexture#update\n * @param {PIXI.BaseTexture} baseTexture - Instance of texture being updated.\n */\n\n /**\n * Fired when BaseTexture is destroyed.\n *\n * @protected\n * @event PIXI.BaseTexture#dispose\n * @param {PIXI.BaseTexture} baseTexture - Instance of texture being destroyed.\n */\n\n // Set the resource\n this.setResource(resource);\n }\n\n if ( EventEmitter ) BaseTexture.__proto__ = EventEmitter;\n BaseTexture.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n BaseTexture.prototype.constructor = BaseTexture;\n\n var prototypeAccessors = { realWidth: { configurable: true },realHeight: { configurable: true } };\n\n /**\n * Pixel width of the source of this texture\n *\n * @readonly\n * @member {number}\n */\n prototypeAccessors.realWidth.get = function ()\n {\n return Math.ceil((this.width * this.resolution) - 1e-4);\n };\n\n /**\n * Pixel height of the source of this texture\n *\n * @readonly\n * @member {number}\n */\n prototypeAccessors.realHeight.get = function ()\n {\n return Math.ceil((this.height * this.resolution) - 1e-4);\n };\n\n /**\n * Changes style options of BaseTexture\n *\n * @param {PIXI.SCALE_MODES} [scaleMode] - Pixi scalemode\n * @param {PIXI.MIPMAP_MODES} [mipmap] - enable mipmaps\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setStyle = function setStyle (scaleMode, mipmap)\n {\n var dirty;\n\n if (scaleMode !== undefined && scaleMode !== this.scaleMode)\n {\n this.scaleMode = scaleMode;\n dirty = true;\n }\n\n if (mipmap !== undefined && mipmap !== this.mipmap)\n {\n this.mipmap = mipmap;\n dirty = true;\n }\n\n if (dirty)\n {\n this.dirtyStyleId++;\n }\n\n return this;\n };\n\n /**\n * Changes w/h/resolution. Texture becomes valid if width and height are greater than zero.\n *\n * @param {number} width Visual width\n * @param {number} height Visual height\n * @param {number} [resolution] Optionally set resolution\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setSize = function setSize (width, height, resolution)\n {\n this.resolution = resolution || this.resolution;\n this.width = width;\n this.height = height;\n this._refreshPOT();\n this.update();\n\n return this;\n };\n\n /**\n * Sets real size of baseTexture, preserves current resolution.\n *\n * @param {number} realWidth Full rendered width\n * @param {number} realHeight Full rendered height\n * @param {number} [resolution] Optionally set resolution\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setRealSize = function setRealSize (realWidth, realHeight, resolution)\n {\n this.resolution = resolution || this.resolution;\n this.width = realWidth / this.resolution;\n this.height = realHeight / this.resolution;\n this._refreshPOT();\n this.update();\n\n return this;\n };\n\n /**\n * Refresh check for isPowerOfTwo texture based on size\n *\n * @private\n */\n BaseTexture.prototype._refreshPOT = function _refreshPOT ()\n {\n this.isPowerOfTwo = isPow2(this.realWidth) && isPow2(this.realHeight);\n };\n\n /**\n * Changes resolution\n *\n * @param {number} [resolution] res\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setResolution = function setResolution (resolution)\n {\n var oldResolution = this.resolution;\n\n if (oldResolution === resolution)\n {\n return this;\n }\n\n this.resolution = resolution;\n\n if (this.valid)\n {\n this.width = this.width * oldResolution / resolution;\n this.height = this.height * oldResolution / resolution;\n this.emit('update', this);\n }\n\n this._refreshPOT();\n\n return this;\n };\n\n /**\n * Sets the resource if it wasn't set. Throws error if resource already present\n *\n * @param {PIXI.resources.Resource} resource - that is managing this BaseTexture\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setResource = function setResource (resource)\n {\n if (this.resource === resource)\n {\n return this;\n }\n\n if (this.resource)\n {\n throw new Error('Resource can be set only once');\n }\n\n resource.bind(this);\n\n this.resource = resource;\n\n return this;\n };\n\n /**\n * Invalidates the object. Texture becomes valid if width and height are greater than zero.\n */\n BaseTexture.prototype.update = function update ()\n {\n if (!this.valid)\n {\n if (this.width > 0 && this.height > 0)\n {\n this.valid = true;\n this.emit('loaded', this);\n this.emit('update', this);\n }\n }\n else\n {\n this.dirtyId++;\n this.dirtyStyleId++;\n this.emit('update', this);\n }\n };\n\n /**\n * Handle errors with resources.\n * @private\n * @param {ErrorEvent} event - Error event emitted.\n */\n BaseTexture.prototype.onError = function onError (event)\n {\n this.emit('error', this, event);\n };\n\n /**\n * Destroys this base texture.\n * The method stops if resource doesn't want this texture to be destroyed.\n * Removes texture from all caches.\n */\n BaseTexture.prototype.destroy = function destroy ()\n {\n // remove and destroy the resource\n if (this.resource)\n {\n this.resource.unbind(this);\n // only destroy resourced created internally\n if (this.resource.internal)\n {\n this.resource.destroy();\n }\n this.resource = null;\n }\n\n if (this.cacheId)\n {\n delete BaseTextureCache[this.cacheId];\n delete TextureCache[this.cacheId];\n\n this.cacheId = null;\n }\n\n // finally let the WebGL renderer know..\n this.dispose();\n\n BaseTexture.removeFromCache(this);\n this.textureCacheIds = null;\n\n this.destroyed = true;\n };\n\n /**\n * Frees the texture from WebGL memory without destroying this texture object.\n * This means you can still use the texture later which will upload it to GPU\n * memory again.\n *\n * @fires PIXI.BaseTexture#dispose\n */\n BaseTexture.prototype.dispose = function dispose ()\n {\n this.emit('dispose', this);\n };\n\n /**\n * Helper function that creates a base texture based on the source you provide.\n * The source can be - image url, image element, canvas element. If the\n * source is an image url or an image element and not in the base texture\n * cache, it will be created and loaded.\n *\n * @static\n * @param {string|HTMLImageElement|HTMLCanvasElement|SVGElement|HTMLVideoElement} source - The\n * source to create base texture from.\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @returns {PIXI.BaseTexture} The new base texture.\n */\n BaseTexture.from = function from (source, options)\n {\n var cacheId = null;\n\n if (typeof source === 'string')\n {\n cacheId = source;\n }\n else\n {\n if (!source._pixiId)\n {\n source._pixiId = \"pixiid_\" + (uid());\n }\n\n cacheId = source._pixiId;\n }\n\n var baseTexture = BaseTextureCache[cacheId];\n\n if (!baseTexture)\n {\n baseTexture = new BaseTexture(source, options);\n baseTexture.cacheId = cacheId;\n BaseTexture.addToCache(baseTexture, cacheId);\n }\n\n return baseTexture;\n };\n\n /**\n * Create a new BaseTexture with a BufferResource from a Float32Array.\n * RGBA values are floats from 0 to 1.\n * @static\n * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data\n * is provided, a new Float32Array is created.\n * @param {number} width - Width of the resource\n * @param {number} height - Height of the resource\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.BaseTexture} The resulting new BaseTexture\n */\n BaseTexture.fromBuffer = function fromBuffer (buffer, width, height, options)\n {\n buffer = buffer || new Float32Array(width * height * 4);\n\n var resource = new BufferResource(buffer, { width: width, height: height });\n var type = buffer instanceof Float32Array ? TYPES.FLOAT : TYPES.UNSIGNED_BYTE;\n\n return new BaseTexture(resource, Object.assign(defaultBufferOptions, options || { width: width, height: height, type: type }));\n };\n\n /**\n * Adds a BaseTexture to the global BaseTextureCache. This cache is shared across the whole PIXI object.\n *\n * @static\n * @param {PIXI.BaseTexture} baseTexture - The BaseTexture to add to the cache.\n * @param {string} id - The id that the BaseTexture will be stored against.\n */\n BaseTexture.addToCache = function addToCache (baseTexture, id)\n {\n if (id)\n {\n if (baseTexture.textureCacheIds.indexOf(id) === -1)\n {\n baseTexture.textureCacheIds.push(id);\n }\n\n if (BaseTextureCache[id])\n {\n // eslint-disable-next-line no-console\n console.warn((\"BaseTexture added to the cache with an id [\" + id + \"] that already had an entry\"));\n }\n\n BaseTextureCache[id] = baseTexture;\n }\n };\n\n /**\n * Remove a BaseTexture from the global BaseTextureCache.\n *\n * @static\n * @param {string|PIXI.BaseTexture} baseTexture - id of a BaseTexture to be removed, or a BaseTexture instance itself.\n * @return {PIXI.BaseTexture|null} The BaseTexture that was removed.\n */\n BaseTexture.removeFromCache = function removeFromCache (baseTexture)\n {\n if (typeof baseTexture === 'string')\n {\n var baseTextureFromCache = BaseTextureCache[baseTexture];\n\n if (baseTextureFromCache)\n {\n var index = baseTextureFromCache.textureCacheIds.indexOf(baseTexture);\n\n if (index > -1)\n {\n baseTextureFromCache.textureCacheIds.splice(index, 1);\n }\n\n delete BaseTextureCache[baseTexture];\n\n return baseTextureFromCache;\n }\n }\n else if (baseTexture && baseTexture.textureCacheIds)\n {\n for (var i = 0; i < baseTexture.textureCacheIds.length; ++i)\n {\n delete BaseTextureCache[baseTexture.textureCacheIds[i]];\n }\n\n baseTexture.textureCacheIds.length = 0;\n\n return baseTexture;\n }\n\n return null;\n };\n\n Object.defineProperties( BaseTexture.prototype, prototypeAccessors );\n\n return BaseTexture;\n}(EventEmitter));\n\n/**\n * Global number of the texture batch, used by multi-texture renderers\n *\n * @static\n * @member {number}\n */\nBaseTexture._globalBatch = 0;\n\n/**\n * A resource that contains a number of sources.\n *\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n * @param {number|Array<*>} source - Number of items in array or the collection\n * of image URLs to use. Can also be resources, image elements, canvas, etc.\n * @param {object} [options] Options to apply to {@link PIXI.resources.autoDetectResource}\n * @param {number} [options.width] - Width of the resource\n * @param {number} [options.height] - Height of the resource\n */\nvar ArrayResource = /*@__PURE__*/(function (Resource) {\n function ArrayResource(source, options)\n {\n options = options || {};\n\n var urls;\n var length = source;\n\n if (Array.isArray(source))\n {\n urls = source;\n length = source.length;\n }\n\n Resource.call(this, options.width, options.height);\n\n /**\n * Collection of resources.\n * @member {Array}\n * @readonly\n */\n this.items = [];\n\n /**\n * Dirty IDs for each part\n * @member {Array}\n * @readonly\n */\n this.itemDirtyIds = [];\n\n for (var i = 0; i < length; i++)\n {\n var partTexture = new BaseTexture();\n\n this.items.push(partTexture);\n this.itemDirtyIds.push(-1);\n }\n\n /**\n * Number of elements in array\n *\n * @member {number}\n * @readonly\n */\n this.length = length;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (urls)\n {\n for (var i$1 = 0; i$1 < length; i$1++)\n {\n this.addResourceAt(autoDetectResource(urls[i$1], options), i$1);\n }\n }\n }\n\n if ( Resource ) ArrayResource.__proto__ = Resource;\n ArrayResource.prototype = Object.create( Resource && Resource.prototype );\n ArrayResource.prototype.constructor = ArrayResource;\n\n /**\n * Destroy this BaseImageResource\n * @override\n */\n ArrayResource.prototype.dispose = function dispose ()\n {\n for (var i = 0, len = this.length; i < len; i++)\n {\n this.items[i].destroy();\n }\n this.items = null;\n this.itemDirtyIds = null;\n this._load = null;\n };\n\n /**\n * Set a resource by ID\n *\n * @param {PIXI.resources.Resource} resource\n * @param {number} index - Zero-based index of resource to set\n * @return {PIXI.resources.ArrayResource} Instance for chaining\n */\n ArrayResource.prototype.addResourceAt = function addResourceAt (resource, index)\n {\n var baseTexture = this.items[index];\n\n if (!baseTexture)\n {\n throw new Error((\"Index \" + index + \" is out of bounds\"));\n }\n\n // Inherit the first resource dimensions\n if (resource.valid && !this.valid)\n {\n this.resize(resource.width, resource.height);\n }\n\n this.items[index].setResource(resource);\n\n return this;\n };\n\n /**\n * Set the parent base texture\n * @member {PIXI.BaseTexture}\n * @override\n */\n ArrayResource.prototype.bind = function bind (baseTexture)\n {\n Resource.prototype.bind.call(this, baseTexture);\n\n baseTexture.target = TARGETS.TEXTURE_2D_ARRAY;\n\n for (var i = 0; i < this.length; i++)\n {\n this.items[i].on('update', baseTexture.update, baseTexture);\n }\n };\n\n /**\n * Unset the parent base texture\n * @member {PIXI.BaseTexture}\n * @override\n */\n ArrayResource.prototype.unbind = function unbind (baseTexture)\n {\n Resource.prototype.unbind.call(this, baseTexture);\n\n for (var i = 0; i < this.length; i++)\n {\n this.items[i].off('update', baseTexture.update, baseTexture);\n }\n };\n\n /**\n * Load all the resources simultaneously\n * @override\n * @return {Promise} When load is resolved\n */\n ArrayResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n var resources = this.items.map(function (item) { return item.resource; });\n\n // TODO: also implement load part-by-part strategy\n var promises = resources.map(function (item) { return item.load(); });\n\n this._load = Promise.all(promises)\n .then(function () {\n var ref = resources[0];\n var width = ref.width;\n var height = ref.height;\n\n this$1.resize(width, height);\n\n return Promise.resolve(this$1);\n }\n );\n\n return this._load;\n };\n\n /**\n * Upload the resources to the GPU.\n * @param {PIXI.Renderer} renderer\n * @param {PIXI.BaseTexture} texture\n * @param {PIXI.GLTexture} glTexture\n * @returns {boolean} whether texture was uploaded\n */\n ArrayResource.prototype.upload = function upload (renderer, texture, glTexture)\n {\n var ref = this;\n var length = ref.length;\n var itemDirtyIds = ref.itemDirtyIds;\n var items = ref.items;\n var gl = renderer.gl;\n\n if (glTexture.dirtyId < 0)\n {\n gl.texImage3D(\n gl.TEXTURE_2D_ARRAY,\n 0,\n texture.format,\n this._width,\n this._height,\n length,\n 0,\n texture.format,\n texture.type,\n null\n );\n }\n\n for (var i = 0; i < length; i++)\n {\n var item = items[i];\n\n if (itemDirtyIds[i] < item.dirtyId)\n {\n itemDirtyIds[i] = item.dirtyId;\n if (item.valid)\n {\n gl.texSubImage3D(\n gl.TEXTURE_2D_ARRAY,\n 0,\n 0, // xoffset\n 0, // yoffset\n i, // zoffset\n item.resource.width,\n item.resource.height,\n 1,\n texture.format,\n texture.type,\n item.resource.source\n );\n }\n }\n }\n\n return true;\n };\n\n return ArrayResource;\n}(Resource));\n\n/**\n * @interface OffscreenCanvas\n */\n\n/**\n * Resource type for HTMLCanvasElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {HTMLCanvasElement} source - Canvas element to use\n */\nvar CanvasResource = /*@__PURE__*/(function (BaseImageResource) {\n function CanvasResource () {\n BaseImageResource.apply(this, arguments);\n }\n\n if ( BaseImageResource ) CanvasResource.__proto__ = BaseImageResource;\n CanvasResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n CanvasResource.prototype.constructor = CanvasResource;\n\n CanvasResource.test = function test (source)\n {\n var OffscreenCanvas = window.OffscreenCanvas;\n\n // Check for browsers that don't yet support OffscreenCanvas\n if (OffscreenCanvas && source instanceof OffscreenCanvas)\n {\n return true;\n }\n\n return source instanceof HTMLCanvasElement;\n };\n\n return CanvasResource;\n}(BaseImageResource));\n\n/**\n * Resource for a CubeTexture which contains six resources.\n *\n * @class\n * @extends PIXI.resources.ArrayResource\n * @memberof PIXI.resources\n * @param {Array} [source] Collection of URLs or resources\n * to use as the sides of the cube.\n * @param {object} [options] - ImageResource options\n * @param {number} [options.width] - Width of resource\n * @param {number} [options.height] - Height of resource\n */\nvar CubeResource = /*@__PURE__*/(function (ArrayResource) {\n function CubeResource(source, options)\n {\n options = options || {};\n\n ArrayResource.call(this, source, options);\n\n if (this.length !== CubeResource.SIDES)\n {\n throw new Error((\"Invalid length. Got \" + (this.length) + \", expected 6\"));\n }\n\n for (var i = 0; i < CubeResource.SIDES; i++)\n {\n this.items[i].target = TARGETS.TEXTURE_CUBE_MAP_POSITIVE_X + i;\n }\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( ArrayResource ) CubeResource.__proto__ = ArrayResource;\n CubeResource.prototype = Object.create( ArrayResource && ArrayResource.prototype );\n CubeResource.prototype.constructor = CubeResource;\n\n /**\n * Add binding\n *\n * @override\n * @param {PIXI.BaseTexture} baseTexture - parent base texture\n */\n CubeResource.prototype.bind = function bind (baseTexture)\n {\n ArrayResource.prototype.bind.call(this, baseTexture);\n\n baseTexture.target = TARGETS.TEXTURE_CUBE_MAP;\n };\n\n /**\n * Upload the resource\n *\n * @returns {boolean} true is success\n */\n CubeResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var dirty = this.itemDirtyIds;\n\n for (var i = 0; i < CubeResource.SIDES; i++)\n {\n var side = this.items[i];\n\n if (dirty[i] < side.dirtyId)\n {\n dirty[i] = side.dirtyId;\n if (side.valid)\n {\n side.resource.upload(renderer, side, glTexture);\n }\n }\n }\n\n return true;\n };\n\n return CubeResource;\n}(ArrayResource));\n\n/**\n * Number of texture sides to store for CubeResources\n *\n * @name PIXI.resources.CubeResource.SIDES\n * @static\n * @member {number}\n * @default 6\n */\nCubeResource.SIDES = 6;\n\n/**\n * Resource type for SVG elements and graphics.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {string} source - Base64 encoded SVG element or URL for SVG file.\n * @param {object} [options] - Options to use\n * @param {number} [options.scale=1] Scale to apply to SVG. Overridden by...\n * @param {number} [options.width] Rasterize SVG this wide. Aspect ratio preserved if height not specified.\n * @param {number} [options.height] Rasterize SVG this high. Aspect ratio preserved if width not specified.\n * @param {boolean} [options.autoLoad=true] Start loading right away.\n */\nvar SVGResource = /*@__PURE__*/(function (BaseImageResource) {\n function SVGResource(source, options)\n {\n options = options || {};\n\n BaseImageResource.call(this, document.createElement('canvas'));\n this._width = 0;\n this._height = 0;\n\n /**\n * Base64 encoded SVG element or URL for SVG file\n * @readonly\n * @member {string}\n */\n this.svg = source;\n\n /**\n * The source scale to apply when rasterizing on load\n * @readonly\n * @member {number}\n */\n this.scale = options.scale || 1;\n\n /**\n * A width override for rasterization on load\n * @readonly\n * @member {number}\n */\n this._overrideWidth = options.width;\n\n /**\n * A height override for rasterization on load\n * @readonly\n * @member {number}\n */\n this._overrideHeight = options.height;\n\n /**\n * Call when completely loaded\n * @private\n * @member {function}\n */\n this._resolve = null;\n\n /**\n * Cross origin value to use\n * @private\n * @member {boolean|string}\n */\n this._crossorigin = options.crossorigin;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) SVGResource.__proto__ = BaseImageResource;\n SVGResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n SVGResource.prototype.constructor = SVGResource;\n\n SVGResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n this._load = new Promise(function (resolve) {\n // Save this until after load is finished\n this$1._resolve = function () {\n this$1.resize(this$1.source.width, this$1.source.height);\n resolve(this$1);\n };\n\n // Convert SVG inline string to data-uri\n if ((/^\\]*(?:\\s(width|height)=('|\")(\\d*(?:\\.\\d+)?)(?:px)?('|\"))[^>]*(?:\\s(width|height)=('|\")(\\d*(?:\\.\\d+)?)(?:px)?('|\"))[^>]*>/i; // eslint-disable-line max-len\n\n/**\n * Resource type for HTMLVideoElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {HTMLVideoElement|object|string|Array} source - Video element to use.\n * @param {object} [options] - Options to use\n * @param {boolean} [options.autoLoad=true] - Start loading the video immediately\n * @param {boolean} [options.autoPlay=true] - Start playing video immediately\n * @param {number} [options.updateFPS=0] - How many times a second to update the texture from the video.\n * Leave at 0 to update at every render.\n * @param {boolean} [options.crossorigin=true] - Load image using cross origin\n */\nvar VideoResource = /*@__PURE__*/(function (BaseImageResource) {\n function VideoResource(source, options)\n {\n options = options || {};\n\n if (!(source instanceof HTMLVideoElement))\n {\n var videoElement = document.createElement('video');\n\n // workaround for https://github.com/pixijs/pixi.js/issues/5996\n videoElement.setAttribute('preload', 'auto');\n videoElement.setAttribute('webkit-playsinline', '');\n videoElement.setAttribute('playsinline', '');\n\n if (typeof source === 'string')\n {\n source = [source];\n }\n\n BaseImageResource.crossOrigin(videoElement, (source[0].src || source[0]), options.crossorigin);\n\n // array of objects or strings\n for (var i = 0; i < source.length; ++i)\n {\n var sourceElement = document.createElement('source');\n\n var ref = source[i];\n var src = ref.src;\n var mime = ref.mime;\n\n src = src || source[i];\n\n var baseSrc = src.split('?').shift().toLowerCase();\n var ext = baseSrc.substr(baseSrc.lastIndexOf('.') + 1);\n\n mime = mime || (\"video/\" + ext);\n\n sourceElement.src = src;\n sourceElement.type = mime;\n\n videoElement.appendChild(sourceElement);\n }\n\n // Override the source\n source = videoElement;\n }\n\n BaseImageResource.call(this, source);\n\n this.noSubImage = true;\n this._autoUpdate = true;\n this._isAutoUpdating = false;\n this._updateFPS = options.updateFPS || 0;\n this._msToNextUpdate = 0;\n\n /**\n * When set to true will automatically play videos used by this texture once\n * they are loaded. If false, it will not modify the playing state.\n *\n * @member {boolean}\n * @default true\n */\n this.autoPlay = options.autoPlay !== false;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n /**\n * Callback when completed with load.\n * @member {function}\n * @private\n */\n this._resolve = null;\n\n // Bind for listeners\n this._onCanPlay = this._onCanPlay.bind(this);\n this._onError = this._onError.bind(this);\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) VideoResource.__proto__ = BaseImageResource;\n VideoResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n VideoResource.prototype.constructor = VideoResource;\n\n var prototypeAccessors = { autoUpdate: { configurable: true },updateFPS: { configurable: true } };\n\n /**\n * Trigger updating of the texture\n *\n * @param {number} [deltaTime=0] - time delta since last tick\n */\n VideoResource.prototype.update = function update (deltaTime)\n {\n if ( deltaTime === void 0 ) deltaTime = 0;\n\n if (!this.destroyed)\n {\n // account for if video has had its playbackRate changed\n var elapsedMS = Ticker.shared.elapsedMS * this.source.playbackRate;\n\n this._msToNextUpdate = Math.floor(this._msToNextUpdate - elapsedMS);\n if (!this._updateFPS || this._msToNextUpdate <= 0)\n {\n BaseImageResource.prototype.update.call(this, deltaTime);\n this._msToNextUpdate = this._updateFPS ? Math.floor(1000 / this._updateFPS) : 0;\n }\n }\n };\n\n /**\n * Start preloading the video resource.\n *\n * @protected\n * @return {Promise} Handle the validate event\n */\n VideoResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n var source = this.source;\n\n if ((source.readyState === source.HAVE_ENOUGH_DATA || source.readyState === source.HAVE_FUTURE_DATA)\n && source.width && source.height)\n {\n source.complete = true;\n }\n\n source.addEventListener('play', this._onPlayStart.bind(this));\n source.addEventListener('pause', this._onPlayStop.bind(this));\n\n if (!this._isSourceReady())\n {\n source.addEventListener('canplay', this._onCanPlay);\n source.addEventListener('canplaythrough', this._onCanPlay);\n source.addEventListener('error', this._onError, true);\n }\n else\n {\n this._onCanPlay();\n }\n\n this._load = new Promise(function (resolve) {\n if (this$1.valid)\n {\n resolve(this$1);\n }\n else\n {\n this$1._resolve = resolve;\n\n source.load();\n }\n });\n\n return this._load;\n };\n\n /**\n * Handle video error events.\n *\n * @private\n */\n VideoResource.prototype._onError = function _onError ()\n {\n this.source.removeEventListener('error', this._onError, true);\n this.onError.run(event);\n };\n\n /**\n * Returns true if the underlying source is playing.\n *\n * @private\n * @return {boolean} True if playing.\n */\n VideoResource.prototype._isSourcePlaying = function _isSourcePlaying ()\n {\n var source = this.source;\n\n return (source.currentTime > 0 && source.paused === false && source.ended === false && source.readyState > 2);\n };\n\n /**\n * Returns true if the underlying source is ready for playing.\n *\n * @private\n * @return {boolean} True if ready.\n */\n VideoResource.prototype._isSourceReady = function _isSourceReady ()\n {\n return this.source.readyState === 3 || this.source.readyState === 4;\n };\n\n /**\n * Runs the update loop when the video is ready to play\n *\n * @private\n */\n VideoResource.prototype._onPlayStart = function _onPlayStart ()\n {\n // Just in case the video has not received its can play even yet..\n if (!this.valid)\n {\n this._onCanPlay();\n }\n\n if (!this._isAutoUpdating && this.autoUpdate)\n {\n Ticker.shared.add(this.update, this);\n this._isAutoUpdating = true;\n }\n };\n\n /**\n * Fired when a pause event is triggered, stops the update loop\n *\n * @private\n */\n VideoResource.prototype._onPlayStop = function _onPlayStop ()\n {\n if (this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n this._isAutoUpdating = false;\n }\n };\n\n /**\n * Fired when the video is loaded and ready to play\n *\n * @private\n */\n VideoResource.prototype._onCanPlay = function _onCanPlay ()\n {\n var ref = this;\n var source = ref.source;\n\n source.removeEventListener('canplay', this._onCanPlay);\n source.removeEventListener('canplaythrough', this._onCanPlay);\n\n var valid = this.valid;\n\n this.resize(source.videoWidth, source.videoHeight);\n\n // prevent multiple loaded dispatches..\n if (!valid && this._resolve)\n {\n this._resolve(this);\n this._resolve = null;\n }\n\n if (this._isSourcePlaying())\n {\n this._onPlayStart();\n }\n else if (this.autoPlay)\n {\n source.play();\n }\n };\n\n /**\n * Destroys this texture\n * @override\n */\n VideoResource.prototype.dispose = function dispose ()\n {\n if (this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n }\n\n if (this.source)\n {\n this.source.removeEventListener('error', this._onError, true);\n this.source.pause();\n this.source.src = '';\n this.source.load();\n }\n BaseImageResource.prototype.dispose.call(this);\n };\n\n /**\n * Should the base texture automatically update itself, set to true by default\n *\n * @member {boolean}\n */\n prototypeAccessors.autoUpdate.get = function ()\n {\n return this._autoUpdate;\n };\n\n prototypeAccessors.autoUpdate.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (value !== this._autoUpdate)\n {\n this._autoUpdate = value;\n\n if (!this._autoUpdate && this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n this._isAutoUpdating = false;\n }\n else if (this._autoUpdate && !this._isAutoUpdating)\n {\n Ticker.shared.add(this.update, this);\n this._isAutoUpdating = true;\n }\n }\n };\n\n /**\n * How many times a second to update the texture from the video. Leave at 0 to update at every render.\n * A lower fps can help performance, as updating the texture at 60fps on a 30ps video may not be efficient.\n *\n * @member {number}\n */\n prototypeAccessors.updateFPS.get = function ()\n {\n return this._updateFPS;\n };\n\n prototypeAccessors.updateFPS.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (value !== this._updateFPS)\n {\n this._updateFPS = value;\n }\n };\n\n /**\n * Used to auto-detect the type of resource.\n *\n * @static\n * @param {*} source - The source object\n * @param {string} extension - The extension of source, if set\n * @return {boolean} `true` if video source\n */\n VideoResource.test = function test (source, extension)\n {\n return (source instanceof HTMLVideoElement)\n || VideoResource.TYPES.indexOf(extension) > -1;\n };\n\n Object.defineProperties( VideoResource.prototype, prototypeAccessors );\n\n return VideoResource;\n}(BaseImageResource));\n\n/**\n * List of common video file extensions supported by VideoResource.\n * @constant\n * @member {Array}\n * @static\n * @readonly\n */\nVideoResource.TYPES = ['mp4', 'm4v', 'webm', 'ogg', 'ogv', 'h264', 'avi', 'mov'];\n\n/**\n * Resource type for ImageBitmap.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {ImageBitmap} source - Image element to use\n */\nvar ImageBitmapResource = /*@__PURE__*/(function (BaseImageResource) {\n function ImageBitmapResource () {\n BaseImageResource.apply(this, arguments);\n }\n\n if ( BaseImageResource ) ImageBitmapResource.__proto__ = BaseImageResource;\n ImageBitmapResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n ImageBitmapResource.prototype.constructor = ImageBitmapResource;\n\n ImageBitmapResource.test = function test (source)\n {\n return !!window.createImageBitmap && source instanceof ImageBitmap;\n };\n\n return ImageBitmapResource;\n}(BaseImageResource));\n\nINSTALLED.push(\n ImageResource,\n ImageBitmapResource,\n CanvasResource,\n VideoResource,\n SVGResource,\n BufferResource,\n CubeResource,\n ArrayResource\n);\n\nvar index = ({\n INSTALLED: INSTALLED,\n autoDetectResource: autoDetectResource,\n ArrayResource: ArrayResource,\n BufferResource: BufferResource,\n CanvasResource: CanvasResource,\n CubeResource: CubeResource,\n ImageResource: ImageResource,\n ImageBitmapResource: ImageBitmapResource,\n SVGResource: SVGResource,\n VideoResource: VideoResource,\n Resource: Resource,\n BaseImageResource: BaseImageResource\n});\n\n/**\n * System is a base class used for extending systems used by the {@link PIXI.Renderer}\n *\n * @see PIXI.Renderer#addSystem\n * @class\n * @memberof PIXI\n */\nvar System = function System(renderer)\n{\n /**\n * The renderer this manager works for.\n *\n * @member {PIXI.Renderer}\n */\n this.renderer = renderer;\n};\n\n/**\n * Generic destroy methods to be overridden by the subclass\n */\nSystem.prototype.destroy = function destroy ()\n{\n this.renderer = null;\n};\n\n/**\n * Resource type for DepthTexture.\n * @class\n * @extends PIXI.resources.BufferResource\n * @memberof PIXI.resources\n */\nvar DepthResource = /*@__PURE__*/(function (BufferResource) {\n function DepthResource () {\n BufferResource.apply(this, arguments);\n }\n\n if ( BufferResource ) DepthResource.__proto__ = BufferResource;\n DepthResource.prototype = Object.create( BufferResource && BufferResource.prototype );\n DepthResource.prototype.constructor = DepthResource;\n\n DepthResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var gl = renderer.gl;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height)\n {\n gl.texSubImage2D(\n baseTexture.target,\n 0,\n 0,\n 0,\n baseTexture.width,\n baseTexture.height,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n else\n {\n glTexture.width = baseTexture.width;\n glTexture.height = baseTexture.height;\n\n gl.texImage2D(\n baseTexture.target,\n 0,\n gl.DEPTH_COMPONENT16, // Needed for depth to render properly in webgl2.0\n baseTexture.width,\n baseTexture.height,\n 0,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n\n return true;\n };\n\n return DepthResource;\n}(BufferResource));\n\n/**\n * Frame buffer used by the BaseRenderTexture\n *\n * @class\n * @memberof PIXI\n */\nvar Framebuffer = function Framebuffer(width, height)\n{\n this.width = Math.ceil(width || 100);\n this.height = Math.ceil(height || 100);\n\n this.stencil = false;\n this.depth = false;\n\n this.dirtyId = 0;\n this.dirtyFormat = 0;\n this.dirtySize = 0;\n\n this.depthTexture = null;\n this.colorTextures = [];\n\n this.glFramebuffers = {};\n\n this.disposeRunner = new Runner('disposeFramebuffer', 2);\n};\n\nvar prototypeAccessors$1 = { colorTexture: { configurable: true } };\n\n/**\n * Reference to the colorTexture.\n *\n * @member {PIXI.Texture[]}\n * @readonly\n */\nprototypeAccessors$1.colorTexture.get = function ()\n{\n return this.colorTextures[0];\n};\n\n/**\n * Add texture to the colorTexture array\n *\n * @param {number} [index=0] - Index of the array to add the texture to\n * @param {PIXI.Texture} [texture] - Texture to add to the array\n */\nFramebuffer.prototype.addColorTexture = function addColorTexture (index, texture)\n{\n if ( index === void 0 ) index = 0;\n\n // TODO add some validation to the texture - same width / height etc?\n this.colorTextures[index] = texture || new BaseTexture(null, { scaleMode: 0,\n resolution: 1,\n mipmap: false,\n width: this.width,\n height: this.height });// || new Texture();\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Add a depth texture to the frame buffer\n *\n * @param {PIXI.Texture} [texture] - Texture to add\n */\nFramebuffer.prototype.addDepthTexture = function addDepthTexture (texture)\n{\n /* eslint-disable max-len */\n this.depthTexture = texture || new BaseTexture(new DepthResource(null, { width: this.width, height: this.height }), { scaleMode: 0,\n resolution: 1,\n width: this.width,\n height: this.height,\n mipmap: false,\n format: FORMATS.DEPTH_COMPONENT,\n type: TYPES.UNSIGNED_SHORT });// UNSIGNED_SHORT;\n /* eslint-disable max-len */\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Enable depth on the frame buffer\n */\nFramebuffer.prototype.enableDepth = function enableDepth ()\n{\n this.depth = true;\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Enable stencil on the frame buffer\n */\nFramebuffer.prototype.enableStencil = function enableStencil ()\n{\n this.stencil = true;\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Resize the frame buffer\n *\n * @param {number} width - Width of the frame buffer to resize to\n * @param {number} height - Height of the frame buffer to resize to\n */\nFramebuffer.prototype.resize = function resize (width, height)\n{\n width = Math.ceil(width);\n height = Math.ceil(height);\n\n if (width === this.width && height === this.height) { return; }\n\n this.width = width;\n this.height = height;\n\n this.dirtyId++;\n this.dirtySize++;\n\n for (var i = 0; i < this.colorTextures.length; i++)\n {\n var texture = this.colorTextures[i];\n var resolution = texture.resolution;\n\n // take into acount the fact the texture may have a different resolution..\n texture.setSize(width / resolution, height / resolution);\n }\n\n if (this.depthTexture)\n {\n var resolution$1 = this.depthTexture.resolution;\n\n this.depthTexture.setSize(width / resolution$1, height / resolution$1);\n }\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nFramebuffer.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\nObject.defineProperties( Framebuffer.prototype, prototypeAccessors$1 );\n\n/**\n * A BaseRenderTexture is a special texture that allows any PixiJS display object to be rendered to it.\n *\n * __Hint__: All DisplayObjects (i.e. Sprites) that render to a BaseRenderTexture should be preloaded\n * otherwise black rectangles will be drawn instead.\n *\n * A BaseRenderTexture takes a snapshot of any Display Object given to its render method. The position\n * and rotation of the given Display Objects is ignored. For example:\n *\n * ```js\n * let renderer = PIXI.autoDetectRenderer();\n * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 800, height: 600 });\n * let renderTexture = new PIXI.RenderTexture(baseRenderTexture);\n * let sprite = PIXI.Sprite.from(\"spinObj_01.png\");\n *\n * sprite.position.x = 800/2;\n * sprite.position.y = 600/2;\n * sprite.anchor.x = 0.5;\n * sprite.anchor.y = 0.5;\n *\n * renderer.render(sprite, renderTexture);\n * ```\n *\n * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0\n * you can clear the transform\n *\n * ```js\n *\n * sprite.setTransform()\n *\n * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 100, height: 100 });\n * let renderTexture = new PIXI.RenderTexture(baseRenderTexture);\n *\n * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture\n * ```\n *\n * @class\n * @extends PIXI.BaseTexture\n * @memberof PIXI\n */\nvar BaseRenderTexture = /*@__PURE__*/(function (BaseTexture) {\n function BaseRenderTexture(options)\n {\n if (typeof options === 'number')\n {\n /* eslint-disable prefer-rest-params */\n // Backward compatibility of signature\n var width$1 = arguments[0];\n var height$1 = arguments[1];\n var scaleMode = arguments[2];\n var resolution = arguments[3];\n\n options = { width: width$1, height: height$1, scaleMode: scaleMode, resolution: resolution };\n /* eslint-enable prefer-rest-params */\n }\n\n BaseTexture.call(this, null, options);\n\n var ref = options || {};\n var width = ref.width;\n var height = ref.height;\n\n // Set defaults\n this.mipmap = false;\n this.width = Math.ceil(width) || 100;\n this.height = Math.ceil(height) || 100;\n this.valid = true;\n\n /**\n * A reference to the canvas render target (we only need one as this can be shared across renderers)\n *\n * @protected\n * @member {object}\n */\n this._canvasRenderTarget = null;\n\n this.clearColor = [0, 0, 0, 0];\n\n this.framebuffer = new Framebuffer(this.width * this.resolution, this.height * this.resolution)\n .addColorTexture(0, this);\n\n // TODO - could this be added the systems?\n\n /**\n * The data structure for the stencil masks.\n *\n * @member {PIXI.Graphics[]}\n */\n this.stencilMaskStack = [];\n\n /**\n * The data structure for the filters.\n *\n * @member {PIXI.Graphics[]}\n */\n this.filterStack = [{}];\n }\n\n if ( BaseTexture ) BaseRenderTexture.__proto__ = BaseTexture;\n BaseRenderTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype );\n BaseRenderTexture.prototype.constructor = BaseRenderTexture;\n\n /**\n * Resizes the BaseRenderTexture.\n *\n * @param {number} width - The width to resize to.\n * @param {number} height - The height to resize to.\n */\n BaseRenderTexture.prototype.resize = function resize (width, height)\n {\n width = Math.ceil(width);\n height = Math.ceil(height);\n this.framebuffer.resize(width * this.resolution, height * this.resolution);\n };\n\n /**\n * Frees the texture and framebuffer from WebGL memory without destroying this texture object.\n * This means you can still use the texture later which will upload it to GPU\n * memory again.\n *\n * @fires PIXI.BaseTexture#dispose\n */\n BaseRenderTexture.prototype.dispose = function dispose ()\n {\n this.framebuffer.dispose();\n\n BaseTexture.prototype.dispose.call(this);\n };\n\n /**\n * Destroys this texture.\n *\n */\n BaseRenderTexture.prototype.destroy = function destroy ()\n {\n BaseTexture.prototype.destroy.call(this, true);\n\n this.framebuffer = null;\n };\n\n return BaseRenderTexture;\n}(BaseTexture));\n\n/**\n * Stores a texture's frame in UV coordinates, in\n * which everything lies in the rectangle `[(0,0), (1,0),\n * (1,1), (0,1)]`.\n *\n * | Corner | Coordinates |\n * |--------------|-------------|\n * | Top-Left | `(x0,y0)` |\n * | Top-Right | `(x1,y1)` |\n * | Bottom-Right | `(x2,y2)` |\n * | Bottom-Left | `(x3,y3)` |\n *\n * @class\n * @protected\n * @memberof PIXI\n */\nvar TextureUvs = function TextureUvs()\n{\n /**\n * X-component of top-left corner `(x0,y0)`.\n *\n * @member {number}\n */\n this.x0 = 0;\n\n /**\n * Y-component of top-left corner `(x0,y0)`.\n *\n * @member {number}\n */\n this.y0 = 0;\n\n /**\n * X-component of top-right corner `(x1,y1)`.\n *\n * @member {number}\n */\n this.x1 = 1;\n\n /**\n * Y-component of top-right corner `(x1,y1)`.\n *\n * @member {number}\n */\n this.y1 = 0;\n\n /**\n * X-component of bottom-right corner `(x2,y2)`.\n *\n * @member {number}\n */\n this.x2 = 1;\n\n /**\n * Y-component of bottom-right corner `(x2,y2)`.\n *\n * @member {number}\n */\n this.y2 = 1;\n\n /**\n * X-component of bottom-left corner `(x3,y3)`.\n *\n * @member {number}\n */\n this.x3 = 0;\n\n /**\n * Y-component of bottom-right corner `(x3,y3)`.\n *\n * @member {number}\n */\n this.y3 = 1;\n\n this.uvsFloat32 = new Float32Array(8);\n};\n\n/**\n * Sets the texture Uvs based on the given frame information.\n *\n * @protected\n * @param {PIXI.Rectangle} frame - The frame of the texture\n * @param {PIXI.Rectangle} baseFrame - The base frame of the texture\n * @param {number} rotate - Rotation of frame, see {@link PIXI.GroupD8}\n */\nTextureUvs.prototype.set = function set (frame, baseFrame, rotate)\n{\n var tw = baseFrame.width;\n var th = baseFrame.height;\n\n if (rotate)\n {\n // width and height div 2 div baseFrame size\n var w2 = frame.width / 2 / tw;\n var h2 = frame.height / 2 / th;\n\n // coordinates of center\n var cX = (frame.x / tw) + w2;\n var cY = (frame.y / th) + h2;\n\n rotate = GroupD8.add(rotate, GroupD8.NW); // NW is top-left corner\n this.x0 = cX + (w2 * GroupD8.uX(rotate));\n this.y0 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2); // rotate 90 degrees clockwise\n this.x1 = cX + (w2 * GroupD8.uX(rotate));\n this.y1 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2);\n this.x2 = cX + (w2 * GroupD8.uX(rotate));\n this.y2 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2);\n this.x3 = cX + (w2 * GroupD8.uX(rotate));\n this.y3 = cY + (h2 * GroupD8.uY(rotate));\n }\n else\n {\n this.x0 = frame.x / tw;\n this.y0 = frame.y / th;\n\n this.x1 = (frame.x + frame.width) / tw;\n this.y1 = frame.y / th;\n\n this.x2 = (frame.x + frame.width) / tw;\n this.y2 = (frame.y + frame.height) / th;\n\n this.x3 = frame.x / tw;\n this.y3 = (frame.y + frame.height) / th;\n }\n\n this.uvsFloat32[0] = this.x0;\n this.uvsFloat32[1] = this.y0;\n this.uvsFloat32[2] = this.x1;\n this.uvsFloat32[3] = this.y1;\n this.uvsFloat32[4] = this.x2;\n this.uvsFloat32[5] = this.y2;\n this.uvsFloat32[6] = this.x3;\n this.uvsFloat32[7] = this.y3;\n};\n\nvar DEFAULT_UVS = new TextureUvs();\n\n/**\n * A texture stores the information that represents an image or part of an image.\n *\n * It cannot be added to the display list directly; instead use it as the texture for a Sprite.\n * If no frame is provided for a texture, then the whole image is used.\n *\n * You can directly create a texture from an image and then reuse it multiple times like this :\n *\n * ```js\n * let texture = PIXI.Texture.from('assets/image.png');\n * let sprite1 = new PIXI.Sprite(texture);\n * let sprite2 = new PIXI.Sprite(texture);\n * ```\n *\n * If you didnt pass the texture frame to constructor, it enables `noFrame` mode:\n * it subscribes on baseTexture events, it automatically resizes at the same time as baseTexture.\n *\n * Textures made from SVGs, loaded or not, cannot be used before the file finishes processing.\n * You can check for this by checking the sprite's _textureID property.\n * ```js\n * var texture = PIXI.Texture.from('assets/image.svg');\n * var sprite1 = new PIXI.Sprite(texture);\n * //sprite1._textureID should not be undefined if the texture has finished processing the SVG file\n * ```\n * You can use a ticker or rAF to ensure your sprites load the finished textures after processing. See issue #3068.\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar Texture = /*@__PURE__*/(function (EventEmitter) {\n function Texture(baseTexture, frame, orig, trim, rotate, anchor)\n {\n EventEmitter.call(this);\n\n /**\n * Does this Texture have any frame data assigned to it?\n *\n * This mode is enabled automatically if no frame was passed inside constructor.\n *\n * In this mode texture is subscribed to baseTexture events, and fires `update` on any change.\n *\n * Beware, after loading or resize of baseTexture event can fired two times!\n * If you want more control, subscribe on baseTexture itself.\n *\n * ```js\n * texture.on('update', () => {});\n * ```\n *\n * Any assignment of `frame` switches off `noFrame` mode.\n *\n * @member {boolean}\n */\n this.noFrame = false;\n\n if (!frame)\n {\n this.noFrame = true;\n frame = new Rectangle(0, 0, 1, 1);\n }\n\n if (baseTexture instanceof Texture)\n {\n baseTexture = baseTexture.baseTexture;\n }\n\n /**\n * The base texture that this texture uses.\n *\n * @member {PIXI.BaseTexture}\n */\n this.baseTexture = baseTexture;\n\n /**\n * This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering,\n * irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases)\n *\n * @member {PIXI.Rectangle}\n */\n this._frame = frame;\n\n /**\n * This is the trimmed area of original texture, before it was put in atlas\n * Please call `updateUvs()` after you change coordinates of `trim` manually.\n *\n * @member {PIXI.Rectangle}\n */\n this.trim = trim;\n\n /**\n * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered.\n *\n * @member {boolean}\n */\n this.valid = false;\n\n /**\n * This will let a renderer know that a texture has been updated (used mainly for WebGL uv updates)\n *\n * @member {boolean}\n */\n this.requiresUpdate = false;\n\n /**\n * The WebGL UV data cache. Can be used as quad UV\n *\n * @member {PIXI.TextureUvs}\n * @protected\n */\n this._uvs = DEFAULT_UVS;\n\n /**\n * Default TextureMatrix instance for this texture\n * By default that object is not created because its heavy\n *\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = null;\n\n /**\n * This is the area of original texture, before it was put in atlas\n *\n * @member {PIXI.Rectangle}\n */\n this.orig = orig || frame;// new Rectangle(0, 0, 1, 1);\n\n this._rotate = Number(rotate || 0);\n\n if (rotate === true)\n {\n // this is old texturepacker legacy, some games/libraries are passing \"true\" for rotated textures\n this._rotate = 2;\n }\n else if (this._rotate % 2 !== 0)\n {\n throw new Error('attempt to use diamond-shaped UVs. If you are sure, set rotation manually');\n }\n\n /**\n * Anchor point that is used as default if sprite is created with this texture.\n * Changing the `defaultAnchor` at a later point of time will not update Sprite's anchor point.\n * @member {PIXI.Point}\n * @default {0,0}\n */\n this.defaultAnchor = anchor ? new Point(anchor.x, anchor.y) : new Point(0, 0);\n\n /**\n * Update ID is observed by sprites and TextureMatrix instances.\n * Call updateUvs() to increment it.\n *\n * @member {number}\n * @protected\n */\n\n this._updateID = 0;\n\n /**\n * The ids under which this Texture has been added to the texture cache. This is\n * automatically set as long as Texture.addToCache is used, but may not be set if a\n * Texture is added directly to the TextureCache array.\n *\n * @member {string[]}\n */\n this.textureCacheIds = [];\n\n if (!baseTexture.valid)\n {\n baseTexture.once('loaded', this.onBaseTextureUpdated, this);\n }\n else if (this.noFrame)\n {\n // if there is no frame we should monitor for any base texture changes..\n if (baseTexture.valid)\n {\n this.onBaseTextureUpdated(baseTexture);\n }\n }\n else\n {\n this.frame = frame;\n }\n\n if (this.noFrame)\n {\n baseTexture.on('update', this.onBaseTextureUpdated, this);\n }\n }\n\n if ( EventEmitter ) Texture.__proto__ = EventEmitter;\n Texture.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n Texture.prototype.constructor = Texture;\n\n var prototypeAccessors = { resolution: { configurable: true },frame: { configurable: true },rotate: { configurable: true },width: { configurable: true },height: { configurable: true } };\n\n /**\n * Updates this texture on the gpu.\n *\n * Calls the TextureResource update.\n *\n * If you adjusted `frame` manually, please call `updateUvs()` instead.\n *\n */\n Texture.prototype.update = function update ()\n {\n if (this.baseTexture.resource)\n {\n this.baseTexture.resource.update();\n }\n };\n\n /**\n * Called when the base texture is updated\n *\n * @protected\n * @param {PIXI.BaseTexture} baseTexture - The base texture.\n */\n Texture.prototype.onBaseTextureUpdated = function onBaseTextureUpdated (baseTexture)\n {\n if (this.noFrame)\n {\n if (!this.baseTexture.valid)\n {\n return;\n }\n\n this._frame.width = baseTexture.width;\n this._frame.height = baseTexture.height;\n this.valid = true;\n this.updateUvs();\n }\n else\n {\n // TODO this code looks confusing.. boo to abusing getters and setters!\n // if user gave us frame that has bigger size than resized texture it can be a problem\n this.frame = this._frame;\n }\n\n this.emit('update', this);\n };\n\n /**\n * Destroys this texture\n *\n * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well\n */\n Texture.prototype.destroy = function destroy (destroyBase)\n {\n if (this.baseTexture)\n {\n if (destroyBase)\n {\n var ref = this.baseTexture;\n var resource = ref.resource;\n\n // delete the texture if it exists in the texture cache..\n // this only needs to be removed if the base texture is actually destroyed too..\n if (resource && TextureCache[resource.url])\n {\n Texture.removeFromCache(resource.url);\n }\n\n this.baseTexture.destroy();\n }\n\n this.baseTexture.off('update', this.onBaseTextureUpdated, this);\n\n this.baseTexture = null;\n }\n\n this._frame = null;\n this._uvs = null;\n this.trim = null;\n this.orig = null;\n\n this.valid = false;\n\n Texture.removeFromCache(this);\n this.textureCacheIds = null;\n };\n\n /**\n * Creates a new texture object that acts the same as this one.\n *\n * @return {PIXI.Texture} The new texture\n */\n Texture.prototype.clone = function clone ()\n {\n return new Texture(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor);\n };\n\n /**\n * Updates the internal WebGL UV cache. Use it after you change `frame` or `trim` of the texture.\n * Call it after changing the frame\n */\n Texture.prototype.updateUvs = function updateUvs ()\n {\n if (this._uvs === DEFAULT_UVS)\n {\n this._uvs = new TextureUvs();\n }\n\n this._uvs.set(this._frame, this.baseTexture, this.rotate);\n\n this._updateID++;\n };\n\n /**\n * Helper function that creates a new Texture based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|PIXI.BaseTexture} source\n * Source to create texture from\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Texture} The newly created texture\n */\n Texture.from = function from (source, options)\n {\n if ( options === void 0 ) options = {};\n\n var cacheId = null;\n\n if (typeof source === 'string')\n {\n cacheId = source;\n }\n else\n {\n if (!source._pixiId)\n {\n source._pixiId = \"pixiid_\" + (uid());\n }\n\n cacheId = source._pixiId;\n }\n\n var texture = TextureCache[cacheId];\n\n if (!texture)\n {\n if (!options.resolution)\n {\n options.resolution = getResolutionOfUrl(source);\n }\n\n texture = new Texture(new BaseTexture(source, options));\n texture.baseTexture.cacheId = cacheId;\n\n BaseTexture.addToCache(texture.baseTexture, cacheId);\n Texture.addToCache(texture, cacheId);\n }\n\n // lets assume its a base texture!\n return texture;\n };\n\n /**\n * Create a new Texture with a BufferResource from a Float32Array.\n * RGBA values are floats from 0 to 1.\n * @static\n * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data\n * is provided, a new Float32Array is created.\n * @param {number} width - Width of the resource\n * @param {number} height - Height of the resource\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Texture} The resulting new BaseTexture\n */\n Texture.fromBuffer = function fromBuffer (buffer, width, height, options)\n {\n return new Texture(BaseTexture.fromBuffer(buffer, width, height, options));\n };\n\n /**\n * Create a texture from a source and add to the cache.\n *\n * @static\n * @param {HTMLImageElement|HTMLCanvasElement} source - The input source.\n * @param {String} imageUrl - File name of texture, for cache and resolving resolution.\n * @param {String} [name] - Human readable name for the texture cache. If no name is\n * specified, only `imageUrl` will be used as the cache ID.\n * @return {PIXI.Texture} Output texture\n */\n Texture.fromLoader = function fromLoader (source, imageUrl, name)\n {\n var resource = new ImageResource(source);\n\n resource.url = imageUrl;\n\n var baseTexture = new BaseTexture(resource, {\n scaleMode: settings.SCALE_MODE,\n resolution: getResolutionOfUrl(imageUrl),\n });\n\n var texture = new Texture(baseTexture);\n\n // No name, use imageUrl instead\n if (!name)\n {\n name = imageUrl;\n }\n\n // lets also add the frame to pixi's global cache for 'fromLoader' function\n BaseTexture.addToCache(texture.baseTexture, name);\n Texture.addToCache(texture, name);\n\n // also add references by url if they are different.\n if (name !== imageUrl)\n {\n BaseTexture.addToCache(texture.baseTexture, imageUrl);\n Texture.addToCache(texture, imageUrl);\n }\n\n return texture;\n };\n\n /**\n * Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object.\n *\n * @static\n * @param {PIXI.Texture} texture - The Texture to add to the cache.\n * @param {string} id - The id that the Texture will be stored against.\n */\n Texture.addToCache = function addToCache (texture, id)\n {\n if (id)\n {\n if (texture.textureCacheIds.indexOf(id) === -1)\n {\n texture.textureCacheIds.push(id);\n }\n\n if (TextureCache[id])\n {\n // eslint-disable-next-line no-console\n console.warn((\"Texture added to the cache with an id [\" + id + \"] that already had an entry\"));\n }\n\n TextureCache[id] = texture;\n }\n };\n\n /**\n * Remove a Texture from the global TextureCache.\n *\n * @static\n * @param {string|PIXI.Texture} texture - id of a Texture to be removed, or a Texture instance itself\n * @return {PIXI.Texture|null} The Texture that was removed\n */\n Texture.removeFromCache = function removeFromCache (texture)\n {\n if (typeof texture === 'string')\n {\n var textureFromCache = TextureCache[texture];\n\n if (textureFromCache)\n {\n var index = textureFromCache.textureCacheIds.indexOf(texture);\n\n if (index > -1)\n {\n textureFromCache.textureCacheIds.splice(index, 1);\n }\n\n delete TextureCache[texture];\n\n return textureFromCache;\n }\n }\n else if (texture && texture.textureCacheIds)\n {\n for (var i = 0; i < texture.textureCacheIds.length; ++i)\n {\n // Check that texture matches the one being passed in before deleting it from the cache.\n if (TextureCache[texture.textureCacheIds[i]] === texture)\n {\n delete TextureCache[texture.textureCacheIds[i]];\n }\n }\n\n texture.textureCacheIds.length = 0;\n\n return texture;\n }\n\n return null;\n };\n\n /**\n * Returns resolution of baseTexture\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.resolution.get = function ()\n {\n return this.baseTexture.resolution;\n };\n\n /**\n * The frame specifies the region of the base texture that this texture uses.\n * Please call `updateUvs()` after you change coordinates of `frame` manually.\n *\n * @member {PIXI.Rectangle}\n */\n prototypeAccessors.frame.get = function ()\n {\n return this._frame;\n };\n\n prototypeAccessors.frame.set = function (frame) // eslint-disable-line require-jsdoc\n {\n this._frame = frame;\n\n this.noFrame = false;\n\n var x = frame.x;\n var y = frame.y;\n var width = frame.width;\n var height = frame.height;\n var xNotFit = x + width > this.baseTexture.width;\n var yNotFit = y + height > this.baseTexture.height;\n\n if (xNotFit || yNotFit)\n {\n var relationship = xNotFit && yNotFit ? 'and' : 'or';\n var errorX = \"X: \" + x + \" + \" + width + \" = \" + (x + width) + \" > \" + (this.baseTexture.width);\n var errorY = \"Y: \" + y + \" + \" + height + \" = \" + (y + height) + \" > \" + (this.baseTexture.height);\n\n throw new Error('Texture Error: frame does not fit inside the base Texture dimensions: '\n + errorX + \" \" + relationship + \" \" + errorY);\n }\n\n this.valid = width && height && this.baseTexture.valid;\n\n if (!this.trim && !this.rotate)\n {\n this.orig = frame;\n }\n\n if (this.valid)\n {\n this.updateUvs();\n }\n };\n\n /**\n * Indicates whether the texture is rotated inside the atlas\n * set to 2 to compensate for texture packer rotation\n * set to 6 to compensate for spine packer rotation\n * can be used to rotate or mirror sprites\n * See {@link PIXI.GroupD8} for explanation\n *\n * @member {number}\n */\n prototypeAccessors.rotate.get = function ()\n {\n return this._rotate;\n };\n\n prototypeAccessors.rotate.set = function (rotate) // eslint-disable-line require-jsdoc\n {\n this._rotate = rotate;\n if (this.valid)\n {\n this.updateUvs();\n }\n };\n\n /**\n * The width of the Texture in pixels.\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this.orig.width;\n };\n\n /**\n * The height of the Texture in pixels.\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this.orig.height;\n };\n\n Object.defineProperties( Texture.prototype, prototypeAccessors );\n\n return Texture;\n}(EventEmitter));\n\nfunction createWhiteTexture()\n{\n var canvas = document.createElement('canvas');\n\n canvas.width = 16;\n canvas.height = 16;\n\n var context = canvas.getContext('2d');\n\n context.fillStyle = 'white';\n context.fillRect(0, 0, 16, 16);\n\n return new Texture(new BaseTexture(new CanvasResource(canvas)));\n}\n\nfunction removeAllHandlers(tex)\n{\n tex.destroy = function _emptyDestroy() { /* empty */ };\n tex.on = function _emptyOn() { /* empty */ };\n tex.once = function _emptyOnce() { /* empty */ };\n tex.emit = function _emptyEmit() { /* empty */ };\n}\n\n/**\n * An empty texture, used often to not have to create multiple empty textures.\n * Can not be destroyed.\n *\n * @static\n * @constant\n * @member {PIXI.Texture}\n */\nTexture.EMPTY = new Texture(new BaseTexture());\nremoveAllHandlers(Texture.EMPTY);\nremoveAllHandlers(Texture.EMPTY.baseTexture);\n\n/**\n * A white texture of 16x16 size, used for graphics and other things\n * Can not be destroyed.\n *\n * @static\n * @constant\n * @member {PIXI.Texture}\n */\nTexture.WHITE = createWhiteTexture();\nremoveAllHandlers(Texture.WHITE);\nremoveAllHandlers(Texture.WHITE.baseTexture);\n\n/**\n * A RenderTexture is a special texture that allows any PixiJS display object to be rendered to it.\n *\n * __Hint__: All DisplayObjects (i.e. Sprites) that render to a RenderTexture should be preloaded\n * otherwise black rectangles will be drawn instead.\n *\n * __Hint-2__: The actual memory allocation will happen on first render.\n * You shouldn't create renderTextures each frame just to delete them after, try to reuse them.\n *\n * A RenderTexture takes a snapshot of any Display Object given to its render method. For example:\n *\n * ```js\n * let renderer = PIXI.autoDetectRenderer();\n * let renderTexture = PIXI.RenderTexture.create(800, 600);\n * let sprite = PIXI.Sprite.from(\"spinObj_01.png\");\n *\n * sprite.position.x = 800/2;\n * sprite.position.y = 600/2;\n * sprite.anchor.x = 0.5;\n * sprite.anchor.y = 0.5;\n *\n * renderer.render(sprite, renderTexture);\n * ```\n *\n * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0\n * you can clear the transform\n *\n * ```js\n *\n * sprite.setTransform()\n *\n * let renderTexture = new PIXI.RenderTexture.create(100, 100);\n *\n * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture\n * ```\n *\n * @class\n * @extends PIXI.Texture\n * @memberof PIXI\n */\nvar RenderTexture = /*@__PURE__*/(function (Texture) {\n function RenderTexture(baseRenderTexture, frame)\n {\n // support for legacy..\n var _legacyRenderer = null;\n\n if (!(baseRenderTexture instanceof BaseRenderTexture))\n {\n /* eslint-disable prefer-rest-params, no-console */\n var width = arguments[1];\n var height = arguments[2];\n var scaleMode = arguments[3];\n var resolution = arguments[4];\n\n // we have an old render texture..\n console.warn((\"Please use RenderTexture.create(\" + width + \", \" + height + \") instead of the ctor directly.\"));\n _legacyRenderer = arguments[0];\n /* eslint-enable prefer-rest-params, no-console */\n\n frame = null;\n baseRenderTexture = new BaseRenderTexture({\n width: width,\n height: height,\n scaleMode: scaleMode,\n resolution: resolution,\n });\n }\n\n /**\n * The base texture object that this texture uses\n *\n * @member {PIXI.BaseTexture}\n */\n Texture.call(this, baseRenderTexture, frame);\n\n this.legacyRenderer = _legacyRenderer;\n\n /**\n * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered.\n *\n * @member {boolean}\n */\n this.valid = true;\n\n /**\n * Stores `sourceFrame` when this texture is inside current filter stack.\n * You can read it inside filters.\n *\n * @readonly\n * @member {PIXI.Rectangle}\n */\n this.filterFrame = null;\n\n /**\n * The key for pooled texture of FilterSystem\n * @protected\n * @member {string}\n */\n this.filterPoolKey = null;\n\n this.updateUvs();\n }\n\n if ( Texture ) RenderTexture.__proto__ = Texture;\n RenderTexture.prototype = Object.create( Texture && Texture.prototype );\n RenderTexture.prototype.constructor = RenderTexture;\n\n /**\n * Resizes the RenderTexture.\n *\n * @param {number} width - The width to resize to.\n * @param {number} height - The height to resize to.\n * @param {boolean} [resizeBaseTexture=true] - Should the baseTexture.width and height values be resized as well?\n */\n RenderTexture.prototype.resize = function resize (width, height, resizeBaseTexture)\n {\n if ( resizeBaseTexture === void 0 ) resizeBaseTexture = true;\n\n width = Math.ceil(width);\n height = Math.ceil(height);\n\n // TODO - could be not required..\n this.valid = (width > 0 && height > 0);\n\n this._frame.width = this.orig.width = width;\n this._frame.height = this.orig.height = height;\n\n if (resizeBaseTexture)\n {\n this.baseTexture.resize(width, height);\n }\n\n this.updateUvs();\n };\n\n /**\n * Changes the resolution of baseTexture, but does not change framebuffer size.\n *\n * @param {number} resolution - The new resolution to apply to RenderTexture\n */\n RenderTexture.prototype.setResolution = function setResolution (resolution)\n {\n var ref = this;\n var baseTexture = ref.baseTexture;\n\n if (baseTexture.resolution === resolution)\n {\n return;\n }\n\n baseTexture.setResolution(resolution);\n this.resize(baseTexture.width, baseTexture.height, false);\n };\n\n /**\n * A short hand way of creating a render texture.\n *\n * @param {object} [options] - Options\n * @param {number} [options.width=100] - The width of the render texture\n * @param {number} [options.height=100] - The height of the render texture\n * @param {number} [options.scaleMode=PIXI.settings.SCALE_MODE] - See {@link PIXI.SCALE_MODES} for possible values\n * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the texture being generated\n * @return {PIXI.RenderTexture} The new render texture\n */\n RenderTexture.create = function create (options)\n {\n // fallback, old-style: create(width, height, scaleMode, resolution)\n if (typeof options === 'number')\n {\n /* eslint-disable prefer-rest-params */\n options = {\n width: options,\n height: arguments[1],\n scaleMode: arguments[2],\n resolution: arguments[3],\n };\n /* eslint-enable prefer-rest-params */\n }\n\n return new RenderTexture(new BaseRenderTexture(options));\n };\n\n return RenderTexture;\n}(Texture));\n\n/**\n * Experimental!\n *\n * Texture pool, used by FilterSystem and plugins\n * Stores collection of temporary pow2 or screen-sized renderTextures\n *\n * If you use custom RenderTexturePool for your filters, you can use methods\n * `getFilterTexture` and `returnFilterTexture` same as in\n *\n * @class\n * @memberof PIXI\n */\nvar RenderTexturePool = function RenderTexturePool(textureOptions)\n{\n this.texturePool = {};\n this.textureOptions = textureOptions || {};\n /**\n * Allow renderTextures of the same size as screen, not just pow2\n *\n * Automatically sets to true after `setScreenSize`\n *\n * @member {boolean}\n * @default false\n */\n this.enableFullScreen = false;\n\n this._pixelsWidth = 0;\n this._pixelsHeight = 0;\n};\n\n/**\n * creates of texture with params that were specified in pool constructor\n *\n * @param {number} realWidth width of texture in pixels\n * @param {number} realHeight height of texture in pixels\n * @returns {RenderTexture}\n */\nRenderTexturePool.prototype.createTexture = function createTexture (realWidth, realHeight)\n{\n var baseRenderTexture = new BaseRenderTexture(Object.assign({\n width: realWidth,\n height: realHeight,\n resolution: 1,\n }, this.textureOptions));\n\n return new RenderTexture(baseRenderTexture);\n};\n\n/**\n * Gets a Power-of-Two render texture or fullScreen texture\n *\n * @protected\n * @param {number} minWidth - The minimum width of the render texture in real pixels.\n * @param {number} minHeight - The minimum height of the render texture in real pixels.\n * @param {number} [resolution=1] - The resolution of the render texture.\n * @return {PIXI.RenderTexture} The new render texture.\n */\nRenderTexturePool.prototype.getOptimalTexture = function getOptimalTexture (minWidth, minHeight, resolution)\n{\n if ( resolution === void 0 ) resolution = 1;\n\n var key = RenderTexturePool.SCREEN_KEY;\n\n minWidth *= resolution;\n minHeight *= resolution;\n\n if (!this.enableFullScreen || minWidth !== this._pixelsWidth || minHeight !== this._pixelsHeight)\n {\n minWidth = nextPow2(minWidth);\n minHeight = nextPow2(minHeight);\n key = ((minWidth & 0xFFFF) << 16) | (minHeight & 0xFFFF);\n }\n\n if (!this.texturePool[key])\n {\n this.texturePool[key] = [];\n }\n\n var renderTexture = this.texturePool[key].pop();\n\n if (!renderTexture)\n {\n renderTexture = this.createTexture(minWidth, minHeight);\n }\n\n renderTexture.filterPoolKey = key;\n renderTexture.setResolution(resolution);\n\n return renderTexture;\n};\n\n/**\n * Gets extra texture of the same size as input renderTexture\n *\n * `getFilterTexture(input, 0.5)` or `getFilterTexture(0.5, input)`\n *\n * @param {PIXI.RenderTexture} input renderTexture from which size and resolution will be copied\n * @param {number} [resolution] override resolution of the renderTexture\n * It overrides, it does not multiply\n * @returns {PIXI.RenderTexture}\n */\nRenderTexturePool.prototype.getFilterTexture = function getFilterTexture (input, resolution)\n{\n var filterTexture = this.getOptimalTexture(input.width, input.height, resolution || input.resolution);\n\n filterTexture.filterFrame = input.filterFrame;\n\n return filterTexture;\n};\n\n/**\n * Place a render texture back into the pool.\n * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free\n */\nRenderTexturePool.prototype.returnTexture = function returnTexture (renderTexture)\n{\n var key = renderTexture.filterPoolKey;\n\n renderTexture.filterFrame = null;\n this.texturePool[key].push(renderTexture);\n};\n\n/**\n * Alias for returnTexture, to be compliant with FilterSystem interface\n * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free\n */\nRenderTexturePool.prototype.returnFilterTexture = function returnFilterTexture (renderTexture)\n{\n this.returnTexture(renderTexture);\n};\n\n/**\n * Clears the pool\n *\n * @param {boolean} [destroyTextures=true] destroy all stored textures\n */\nRenderTexturePool.prototype.clear = function clear (destroyTextures)\n{\n destroyTextures = destroyTextures !== false;\n if (destroyTextures)\n {\n for (var i in this.texturePool)\n {\n var textures = this.texturePool[i];\n\n if (textures)\n {\n for (var j = 0; j < textures.length; j++)\n {\n textures[j].destroy(true);\n }\n }\n }\n }\n\n this.texturePool = {};\n};\n\n/**\n * If screen size was changed, drops all screen-sized textures,\n * sets new screen size, sets `enableFullScreen` to true\n *\n * Size is measured in pixels, `renderer.view` can be passed here, not `renderer.screen`\n *\n * @param {PIXI.ISize} size - Initial size of screen\n */\nRenderTexturePool.prototype.setScreenSize = function setScreenSize (size)\n{\n if (size.width === this._pixelsWidth\n && size.height === this._pixelsHeight)\n {\n return;\n }\n\n var screenKey = RenderTexturePool.SCREEN_KEY;\n var textures = this.texturePool[screenKey];\n\n this.enableFullScreen = size.width > 0 && size.height > 0;\n\n if (textures)\n {\n for (var j = 0; j < textures.length; j++)\n {\n textures[j].destroy(true);\n }\n }\n this.texturePool[screenKey] = [];\n\n this._pixelsWidth = size.width;\n this._pixelsHeight = size.height;\n};\n\n/**\n * Key that is used to store fullscreen renderTextures in a pool\n *\n * @static\n * @const {string}\n */\nRenderTexturePool.SCREEN_KEY = 'screen';\n\n/* eslint-disable max-len */\n\n/**\n * Holds the information for a single attribute structure required to render geometry.\n *\n * This does not contain the actual data, but instead has a buffer id that maps to a {@link PIXI.Buffer}\n * This can include anything from positions, uvs, normals, colors etc.\n *\n * @class\n * @memberof PIXI\n */\nvar Attribute = function Attribute(buffer, size, normalized, type, stride, start, instance)\n{\n if ( normalized === void 0 ) normalized = false;\n if ( type === void 0 ) type = 5126;\n\n this.buffer = buffer;\n this.size = size;\n this.normalized = normalized;\n this.type = type;\n this.stride = stride;\n this.start = start;\n this.instance = instance;\n};\n\n/**\n * Destroys the Attribute.\n */\nAttribute.prototype.destroy = function destroy ()\n{\n this.buffer = null;\n};\n\n/**\n * Helper function that creates an Attribute based on the information provided\n *\n * @static\n * @param {string} buffer the id of the buffer that this attribute will look for\n * @param {Number} [size=2] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2\n * @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data)\n * @param {Number} [start=0] How far into the array to start reading values (used for interleaving data)\n * @param {Boolean} [normalized=false] should the data be normalized.\n *\n * @returns {PIXI.Attribute} A new {@link PIXI.Attribute} based on the information provided\n */\nAttribute.from = function from (buffer, size, normalized, type, stride)\n{\n return new Attribute(buffer, size, normalized, type, stride);\n};\n\nvar UID = 0;\n/* eslint-disable max-len */\n\n/**\n * A wrapper for data so that it can be used and uploaded by WebGL\n *\n * @class\n * @memberof PIXI\n */\nvar Buffer = function Buffer(data, _static, index)\n{\n if ( _static === void 0 ) _static = true;\n if ( index === void 0 ) index = false;\n\n /**\n * The data in the buffer, as a typed array\n *\n * @member {ArrayBuffer| SharedArrayBuffer|ArrayBufferView}\n */\n this.data = data || new Float32Array(1);\n\n /**\n * A map of renderer IDs to webgl buffer\n *\n * @private\n * @member {object}\n */\n this._glBuffers = {};\n\n this._updateID = 0;\n\n this.index = index;\n\n this.static = _static;\n\n this.id = UID++;\n\n this.disposeRunner = new Runner('disposeBuffer', 2);\n};\n\n// TODO could explore flagging only a partial upload?\n/**\n * flags this buffer as requiring an upload to the GPU\n * @param {ArrayBuffer|SharedArrayBuffer|ArrayBufferView} [data] the data to update in the buffer.\n */\nBuffer.prototype.update = function update (data)\n{\n this.data = data || this.data;\n this._updateID++;\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nBuffer.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\n/**\n * Destroys the buffer\n */\nBuffer.prototype.destroy = function destroy ()\n{\n this.dispose();\n\n this.data = null;\n};\n\n/**\n * Helper function that creates a buffer based on an array or TypedArray\n *\n * @static\n * @param {ArrayBufferView | number[]} data the TypedArray that the buffer will store. If this is a regular Array it will be converted to a Float32Array.\n * @return {PIXI.Buffer} A new Buffer based on the data provided.\n */\nBuffer.from = function from (data)\n{\n if (data instanceof Array)\n {\n data = new Float32Array(data);\n }\n\n return new Buffer(data);\n};\n\nfunction getBufferType(array)\n{\n if (array.BYTES_PER_ELEMENT === 4)\n {\n if (array instanceof Float32Array)\n {\n return 'Float32Array';\n }\n else if (array instanceof Uint32Array)\n {\n return 'Uint32Array';\n }\n\n return 'Int32Array';\n }\n else if (array.BYTES_PER_ELEMENT === 2)\n {\n if (array instanceof Uint16Array)\n {\n return 'Uint16Array';\n }\n }\n else if (array.BYTES_PER_ELEMENT === 1)\n {\n if (array instanceof Uint8Array)\n {\n return 'Uint8Array';\n }\n }\n\n // TODO map out the rest of the array elements!\n return null;\n}\n\n/* eslint-disable object-shorthand */\nvar map = {\n Float32Array: Float32Array,\n Uint32Array: Uint32Array,\n Int32Array: Int32Array,\n Uint8Array: Uint8Array,\n};\n\nfunction interleaveTypedArrays(arrays, sizes)\n{\n var outSize = 0;\n var stride = 0;\n var views = {};\n\n for (var i = 0; i < arrays.length; i++)\n {\n stride += sizes[i];\n outSize += arrays[i].length;\n }\n\n var buffer = new ArrayBuffer(outSize * 4);\n\n var out = null;\n var littleOffset = 0;\n\n for (var i$1 = 0; i$1 < arrays.length; i$1++)\n {\n var size = sizes[i$1];\n var array = arrays[i$1];\n\n var type = getBufferType(array);\n\n if (!views[type])\n {\n views[type] = new map[type](buffer);\n }\n\n out = views[type];\n\n for (var j = 0; j < array.length; j++)\n {\n var indexStart = ((j / size | 0) * stride) + littleOffset;\n var index = j % size;\n\n out[indexStart + index] = array[j];\n }\n\n littleOffset += size;\n }\n\n return new Float32Array(buffer);\n}\n\nvar byteSizeMap = { 5126: 4, 5123: 2, 5121: 1 };\nvar UID$1 = 0;\n\n/* eslint-disable object-shorthand */\nvar map$1 = {\n Float32Array: Float32Array,\n Uint32Array: Uint32Array,\n Int32Array: Int32Array,\n Uint8Array: Uint8Array,\n Uint16Array: Uint16Array,\n};\n\n/* eslint-disable max-len */\n\n/**\n * The Geometry represents a model. It consists of two components:\n * - GeometryStyle - The structure of the model such as the attributes layout\n * - GeometryData - the data of the model - this consists of buffers.\n * This can include anything from positions, uvs, normals, colors etc.\n *\n * Geometry can be defined without passing in a style or data if required (thats how I prefer!)\n *\n * ```js\n * let geometry = new PIXI.Geometry();\n *\n * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2);\n * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1],2)\n * geometry.addIndex([0,1,2,1,3,2])\n *\n * ```\n * @class\n * @memberof PIXI\n */\nvar Geometry = function Geometry(buffers, attributes)\n{\n if ( buffers === void 0 ) buffers = [];\n if ( attributes === void 0 ) attributes = {};\n\n this.buffers = buffers;\n\n this.indexBuffer = null;\n\n this.attributes = attributes;\n\n /**\n * A map of renderer IDs to webgl VAOs\n *\n * @protected\n * @type {object}\n */\n this.glVertexArrayObjects = {};\n\n this.id = UID$1++;\n\n this.instanced = false;\n\n /**\n * Number of instances in this geometry, pass it to `GeometrySystem.draw()`\n * @member {number}\n * @default 1\n */\n this.instanceCount = 1;\n\n this.disposeRunner = new Runner('disposeGeometry', 2);\n\n /**\n * Count of existing (not destroyed) meshes that reference this geometry\n * @member {number}\n */\n this.refCount = 0;\n};\n\n/**\n*\n* Adds an attribute to the geometry\n*\n* @param {String} id - the name of the attribute (matching up to a shader)\n* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it.\n* @param {Number} [size=0] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2\n* @param {Boolean} [normalized=false] should the data be normalized.\n* @param {Number} [type=PIXI.TYPES.FLOAT] what type of number is the attribute. Check {PIXI.TYPES} to see the ones available\n* @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data)\n* @param {Number} [start=0] How far into the array to start reading values (used for interleaving data)\n*\n* @return {PIXI.Geometry} returns self, useful for chaining.\n*/\nGeometry.prototype.addAttribute = function addAttribute (id, buffer, size, normalized, type, stride, start, instance)\n{\n if ( normalized === void 0 ) normalized = false;\n if ( instance === void 0 ) instance = false;\n\n if (!buffer)\n {\n throw new Error('You must pass a buffer when creating an attribute');\n }\n\n // check if this is a buffer!\n if (!buffer.data)\n {\n // its an array!\n if (buffer instanceof Array)\n {\n buffer = new Float32Array(buffer);\n }\n\n buffer = new Buffer(buffer);\n }\n\n var ids = id.split('|');\n\n if (ids.length > 1)\n {\n for (var i = 0; i < ids.length; i++)\n {\n this.addAttribute(ids[i], buffer, size, normalized, type);\n }\n\n return this;\n }\n\n var bufferIndex = this.buffers.indexOf(buffer);\n\n if (bufferIndex === -1)\n {\n this.buffers.push(buffer);\n bufferIndex = this.buffers.length - 1;\n }\n\n this.attributes[id] = new Attribute(bufferIndex, size, normalized, type, stride, start, instance);\n\n // assuming that if there is instanced data then this will be drawn with instancing!\n this.instanced = this.instanced || instance;\n\n return this;\n};\n\n/**\n * returns the requested attribute\n *\n * @param {String} id the name of the attribute required\n * @return {PIXI.Attribute} the attribute requested.\n */\nGeometry.prototype.getAttribute = function getAttribute (id)\n{\n return this.attributes[id];\n};\n\n/**\n * returns the requested buffer\n *\n * @param {String} id the name of the buffer required\n * @return {PIXI.Buffer} the buffer requested.\n */\nGeometry.prototype.getBuffer = function getBuffer (id)\n{\n return this.buffers[this.getAttribute(id).buffer];\n};\n\n/**\n*\n* Adds an index buffer to the geometry\n* The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer.\n*\n* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it.\n* @return {PIXI.Geometry} returns self, useful for chaining.\n*/\nGeometry.prototype.addIndex = function addIndex (buffer)\n{\n if (!buffer.data)\n {\n // its an array!\n if (buffer instanceof Array)\n {\n buffer = new Uint16Array(buffer);\n }\n\n buffer = new Buffer(buffer);\n }\n\n buffer.index = true;\n this.indexBuffer = buffer;\n\n if (this.buffers.indexOf(buffer) === -1)\n {\n this.buffers.push(buffer);\n }\n\n return this;\n};\n\n/**\n * returns the index buffer\n *\n * @return {PIXI.Buffer} the index buffer.\n */\nGeometry.prototype.getIndex = function getIndex ()\n{\n return this.indexBuffer;\n};\n\n/**\n * this function modifies the structure so that all current attributes become interleaved into a single buffer\n * This can be useful if your model remains static as it offers a little performance boost\n *\n * @return {PIXI.Geometry} returns self, useful for chaining.\n */\nGeometry.prototype.interleave = function interleave ()\n{\n // a simple check to see if buffers are already interleaved..\n if (this.buffers.length === 1 || (this.buffers.length === 2 && this.indexBuffer)) { return this; }\n\n // assume already that no buffers are interleaved\n var arrays = [];\n var sizes = [];\n var interleavedBuffer = new Buffer();\n var i;\n\n for (i in this.attributes)\n {\n var attribute = this.attributes[i];\n\n var buffer = this.buffers[attribute.buffer];\n\n arrays.push(buffer.data);\n\n sizes.push((attribute.size * byteSizeMap[attribute.type]) / 4);\n\n attribute.buffer = 0;\n }\n\n interleavedBuffer.data = interleaveTypedArrays(arrays, sizes);\n\n for (i = 0; i < this.buffers.length; i++)\n {\n if (this.buffers[i] !== this.indexBuffer)\n {\n this.buffers[i].destroy();\n }\n }\n\n this.buffers = [interleavedBuffer];\n\n if (this.indexBuffer)\n {\n this.buffers.push(this.indexBuffer);\n }\n\n return this;\n};\n\nGeometry.prototype.getSize = function getSize ()\n{\n for (var i in this.attributes)\n {\n var attribute = this.attributes[i];\n var buffer = this.buffers[attribute.buffer];\n\n return buffer.data.length / ((attribute.stride / 4) || attribute.size);\n }\n\n return 0;\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nGeometry.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\n/**\n * Destroys the geometry.\n */\nGeometry.prototype.destroy = function destroy ()\n{\n this.dispose();\n\n this.buffers = null;\n this.indexBuffer.destroy();\n\n this.attributes = null;\n};\n\n/**\n * returns a clone of the geometry\n *\n * @returns {PIXI.Geometry} a new clone of this geometry\n */\nGeometry.prototype.clone = function clone ()\n{\n var geometry = new Geometry();\n\n for (var i = 0; i < this.buffers.length; i++)\n {\n geometry.buffers[i] = new Buffer(this.buffers[i].data.slice());\n }\n\n for (var i$1 in this.attributes)\n {\n var attrib = this.attributes[i$1];\n\n geometry.attributes[i$1] = new Attribute(\n attrib.buffer,\n attrib.size,\n attrib.normalized,\n attrib.type,\n attrib.stride,\n attrib.start,\n attrib.instance\n );\n }\n\n if (this.indexBuffer)\n {\n geometry.indexBuffer = geometry.buffers[this.buffers.indexOf(this.indexBuffer)];\n geometry.indexBuffer.index = true;\n }\n\n return geometry;\n};\n\n/**\n * merges an array of geometries into a new single one\n * geometry attribute styles must match for this operation to work\n *\n * @param {PIXI.Geometry[]} geometries array of geometries to merge\n * @returns {PIXI.Geometry} shiny new geometry!\n */\nGeometry.merge = function merge (geometries)\n{\n // todo add a geometry check!\n // also a size check.. cant be too big!]\n\n var geometryOut = new Geometry();\n\n var arrays = [];\n var sizes = [];\n var offsets = [];\n\n var geometry;\n\n // pass one.. get sizes..\n for (var i = 0; i < geometries.length; i++)\n {\n geometry = geometries[i];\n\n for (var j = 0; j < geometry.buffers.length; j++)\n {\n sizes[j] = sizes[j] || 0;\n sizes[j] += geometry.buffers[j].data.length;\n offsets[j] = 0;\n }\n }\n\n // build the correct size arrays..\n for (var i$1 = 0; i$1 < geometry.buffers.length; i$1++)\n {\n // TODO types!\n arrays[i$1] = new map$1[getBufferType(geometry.buffers[i$1].data)](sizes[i$1]);\n geometryOut.buffers[i$1] = new Buffer(arrays[i$1]);\n }\n\n // pass to set data..\n for (var i$2 = 0; i$2 < geometries.length; i$2++)\n {\n geometry = geometries[i$2];\n\n for (var j$1 = 0; j$1 < geometry.buffers.length; j$1++)\n {\n arrays[j$1].set(geometry.buffers[j$1].data, offsets[j$1]);\n offsets[j$1] += geometry.buffers[j$1].data.length;\n }\n }\n\n geometryOut.attributes = geometry.attributes;\n\n if (geometry.indexBuffer)\n {\n geometryOut.indexBuffer = geometryOut.buffers[geometry.buffers.indexOf(geometry.indexBuffer)];\n geometryOut.indexBuffer.index = true;\n\n var offset = 0;\n var stride = 0;\n var offset2 = 0;\n var bufferIndexToCount = 0;\n\n // get a buffer\n for (var i$3 = 0; i$3 < geometry.buffers.length; i$3++)\n {\n if (geometry.buffers[i$3] !== geometry.indexBuffer)\n {\n bufferIndexToCount = i$3;\n break;\n }\n }\n\n // figure out the stride of one buffer..\n for (var i$4 in geometry.attributes)\n {\n var attribute = geometry.attributes[i$4];\n\n if ((attribute.buffer | 0) === bufferIndexToCount)\n {\n stride += ((attribute.size * byteSizeMap[attribute.type]) / 4);\n }\n }\n\n // time to off set all indexes..\n for (var i$5 = 0; i$5 < geometries.length; i$5++)\n {\n var indexBufferData = geometries[i$5].indexBuffer.data;\n\n for (var j$2 = 0; j$2 < indexBufferData.length; j$2++)\n {\n geometryOut.indexBuffer.data[j$2 + offset2] += offset;\n }\n\n offset += geometry.buffers[bufferIndexToCount].data.length / (stride);\n offset2 += indexBufferData.length;\n }\n }\n\n return geometryOut;\n};\n\n/**\n * Helper class to create a quad\n *\n * @class\n * @memberof PIXI\n */\nvar Quad = /*@__PURE__*/(function (Geometry) {\n function Quad()\n {\n Geometry.call(this);\n\n this.addAttribute('aVertexPosition', [\n 0, 0,\n 1, 0,\n 1, 1,\n 0, 1 ])\n .addIndex([0, 1, 3, 2]);\n }\n\n if ( Geometry ) Quad.__proto__ = Geometry;\n Quad.prototype = Object.create( Geometry && Geometry.prototype );\n Quad.prototype.constructor = Quad;\n\n return Quad;\n}(Geometry));\n\n/**\n * Helper class to create a quad with uvs like in v4\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.Geometry\n */\nvar QuadUv = /*@__PURE__*/(function (Geometry) {\n function QuadUv()\n {\n Geometry.call(this);\n\n /**\n * An array of vertices\n *\n * @member {Float32Array}\n */\n this.vertices = new Float32Array([\n -1, -1,\n 1, -1,\n 1, 1,\n -1, 1 ]);\n\n /**\n * The Uvs of the quad\n *\n * @member {Float32Array}\n */\n this.uvs = new Float32Array([\n 0, 0,\n 1, 0,\n 1, 1,\n 0, 1 ]);\n\n this.vertexBuffer = new Buffer(this.vertices);\n this.uvBuffer = new Buffer(this.uvs);\n\n this.addAttribute('aVertexPosition', this.vertexBuffer)\n .addAttribute('aTextureCoord', this.uvBuffer)\n .addIndex([0, 1, 2, 0, 2, 3]);\n }\n\n if ( Geometry ) QuadUv.__proto__ = Geometry;\n QuadUv.prototype = Object.create( Geometry && Geometry.prototype );\n QuadUv.prototype.constructor = QuadUv;\n\n /**\n * Maps two Rectangle to the quad.\n *\n * @param {PIXI.Rectangle} targetTextureFrame - the first rectangle\n * @param {PIXI.Rectangle} destinationFrame - the second rectangle\n * @return {PIXI.Quad} Returns itself.\n */\n QuadUv.prototype.map = function map (targetTextureFrame, destinationFrame)\n {\n var x = 0; // destinationFrame.x / targetTextureFrame.width;\n var y = 0; // destinationFrame.y / targetTextureFrame.height;\n\n this.uvs[0] = x;\n this.uvs[1] = y;\n\n this.uvs[2] = x + (destinationFrame.width / targetTextureFrame.width);\n this.uvs[3] = y;\n\n this.uvs[4] = x + (destinationFrame.width / targetTextureFrame.width);\n this.uvs[5] = y + (destinationFrame.height / targetTextureFrame.height);\n\n this.uvs[6] = x;\n this.uvs[7] = y + (destinationFrame.height / targetTextureFrame.height);\n\n x = destinationFrame.x;\n y = destinationFrame.y;\n\n this.vertices[0] = x;\n this.vertices[1] = y;\n\n this.vertices[2] = x + destinationFrame.width;\n this.vertices[3] = y;\n\n this.vertices[4] = x + destinationFrame.width;\n this.vertices[5] = y + destinationFrame.height;\n\n this.vertices[6] = x;\n this.vertices[7] = y + destinationFrame.height;\n\n this.invalidate();\n\n return this;\n };\n\n /**\n * legacy upload method, just marks buffers dirty\n * @returns {PIXI.QuadUv} Returns itself.\n */\n QuadUv.prototype.invalidate = function invalidate ()\n {\n this.vertexBuffer._updateID++;\n this.uvBuffer._updateID++;\n\n return this;\n };\n\n return QuadUv;\n}(Geometry));\n\nvar UID$2 = 0;\n\n/**\n * Uniform group holds uniform map and some ID's for work\n *\n * @class\n * @memberof PIXI\n */\nvar UniformGroup = function UniformGroup(uniforms, _static)\n{\n /**\n * uniform values\n * @member {object}\n * @readonly\n */\n this.uniforms = uniforms;\n\n /**\n * Its a group and not a single uniforms\n * @member {boolean}\n * @readonly\n * @default true\n */\n this.group = true;\n\n // lets generate this when the shader ?\n this.syncUniforms = {};\n\n /**\n * dirty version\n * @protected\n * @member {number}\n */\n this.dirtyId = 0;\n\n /**\n * unique id\n * @protected\n * @member {number}\n */\n this.id = UID$2++;\n\n /**\n * Uniforms wont be changed after creation\n * @member {boolean}\n */\n this.static = !!_static;\n};\n\nUniformGroup.prototype.update = function update ()\n{\n this.dirtyId++;\n};\n\nUniformGroup.prototype.add = function add (name, uniforms, _static)\n{\n this.uniforms[name] = new UniformGroup(uniforms, _static);\n};\n\nUniformGroup.from = function from (uniforms, _static)\n{\n return new UniformGroup(uniforms, _static);\n};\n\n/**\n * System plugin to the renderer to manage filter states.\n *\n * @class\n * @private\n */\nvar FilterState = function FilterState()\n{\n this.renderTexture = null;\n\n /**\n * Target of the filters\n * We store for case when custom filter wants to know the element it was applied on\n * @member {PIXI.DisplayObject}\n * @private\n */\n this.target = null;\n\n /**\n * Compatibility with PixiJS v4 filters\n * @member {boolean}\n * @default false\n * @private\n */\n this.legacy = false;\n\n /**\n * Resolution of filters\n * @member {number}\n * @default 1\n * @private\n */\n this.resolution = 1;\n\n // next three fields are created only for root\n // re-assigned for everything else\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @private\n */\n this.sourceFrame = new Rectangle();\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @private\n */\n this.destinationFrame = new Rectangle();\n\n /**\n * Collection of filters\n * @member {PIXI.Filter[]}\n * @private\n */\n this.filters = [];\n};\n\n/**\n * clears the state\n * @private\n */\nFilterState.prototype.clear = function clear ()\n{\n this.target = null;\n this.filters = null;\n this.renderTexture = null;\n};\n\n/**\n * System plugin to the renderer to manage the filters.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar FilterSystem = /*@__PURE__*/(function (System) {\n function FilterSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * List of filters for the FilterSystem\n * @member {Object[]}\n * @readonly\n */\n this.defaultFilterStack = [{}];\n\n /**\n * stores a bunch of PO2 textures used for filtering\n * @member {Object}\n */\n this.texturePool = new RenderTexturePool();\n\n this.texturePool.setScreenSize(renderer.view);\n\n /**\n * a pool for storing filter states, save us creating new ones each tick\n * @member {Object[]}\n */\n this.statePool = [];\n\n /**\n * A very simple geometry used when drawing a filter effect to the screen\n * @member {PIXI.Quad}\n */\n this.quad = new Quad();\n\n /**\n * Quad UVs\n * @member {PIXI.QuadUv}\n */\n this.quadUv = new QuadUv();\n\n /**\n * Temporary rect for maths\n * @type {PIXI.Rectangle}\n */\n this.tempRect = new Rectangle();\n\n /**\n * Active state\n * @member {object}\n */\n this.activeState = {};\n\n /**\n * This uniform group is attached to filter uniforms when used\n * @member {PIXI.UniformGroup}\n * @property {PIXI.Rectangle} outputFrame\n * @property {Float32Array} inputSize\n * @property {Float32Array} inputPixel\n * @property {Float32Array} inputClamp\n * @property {Number} resolution\n * @property {Float32Array} filterArea\n * @property {Fload32Array} filterClamp\n */\n this.globalUniforms = new UniformGroup({\n outputFrame: this.tempRect,\n inputSize: new Float32Array(4),\n inputPixel: new Float32Array(4),\n inputClamp: new Float32Array(4),\n resolution: 1,\n\n // legacy variables\n filterArea: new Float32Array(4),\n filterClamp: new Float32Array(4),\n }, true);\n\n this._pixelsWidth = renderer.view.width;\n this._pixelsHeight = renderer.view.height;\n }\n\n if ( System ) FilterSystem.__proto__ = System;\n FilterSystem.prototype = Object.create( System && System.prototype );\n FilterSystem.prototype.constructor = FilterSystem;\n\n /**\n * Adds a new filter to the System.\n *\n * @param {PIXI.DisplayObject} target - The target of the filter to render.\n * @param {PIXI.Filter[]} filters - The filters to apply.\n */\n FilterSystem.prototype.push = function push (target, filters)\n {\n var renderer = this.renderer;\n var filterStack = this.defaultFilterStack;\n var state = this.statePool.pop() || new FilterState();\n\n var resolution = filters[0].resolution;\n var padding = filters[0].padding;\n var autoFit = filters[0].autoFit;\n var legacy = filters[0].legacy;\n\n for (var i = 1; i < filters.length; i++)\n {\n var filter = filters[i];\n\n // lets use the lowest resolution..\n resolution = Math.min(resolution, filter.resolution);\n // and the largest amount of padding!\n padding = Math.max(padding, filter.padding);\n // only auto fit if all filters are autofit\n autoFit = autoFit || filter.autoFit;\n\n legacy = legacy || filter.legacy;\n }\n\n if (filterStack.length === 1)\n {\n this.defaultFilterStack[0].renderTexture = renderer.renderTexture.current;\n }\n\n filterStack.push(state);\n\n state.resolution = resolution;\n\n state.legacy = legacy;\n\n state.target = target;\n\n state.sourceFrame.copyFrom(target.filterArea || target.getBounds(true));\n\n state.sourceFrame.pad(padding);\n if (autoFit)\n {\n state.sourceFrame.fit(this.renderer.renderTexture.sourceFrame);\n }\n\n // round to whole number based on resolution\n state.sourceFrame.ceil(resolution);\n\n state.renderTexture = this.getOptimalFilterTexture(state.sourceFrame.width, state.sourceFrame.height, resolution);\n state.filters = filters;\n\n state.destinationFrame.width = state.renderTexture.width;\n state.destinationFrame.height = state.renderTexture.height;\n\n state.renderTexture.filterFrame = state.sourceFrame;\n\n renderer.renderTexture.bind(state.renderTexture, state.sourceFrame);// /, state.destinationFrame);\n renderer.renderTexture.clear();\n };\n\n /**\n * Pops off the filter and applies it.\n *\n */\n FilterSystem.prototype.pop = function pop ()\n {\n var filterStack = this.defaultFilterStack;\n var state = filterStack.pop();\n var filters = state.filters;\n\n this.activeState = state;\n\n var globalUniforms = this.globalUniforms.uniforms;\n\n globalUniforms.outputFrame = state.sourceFrame;\n globalUniforms.resolution = state.resolution;\n\n var inputSize = globalUniforms.inputSize;\n var inputPixel = globalUniforms.inputPixel;\n var inputClamp = globalUniforms.inputClamp;\n\n inputSize[0] = state.destinationFrame.width;\n inputSize[1] = state.destinationFrame.height;\n inputSize[2] = 1.0 / inputSize[0];\n inputSize[3] = 1.0 / inputSize[1];\n\n inputPixel[0] = inputSize[0] * state.resolution;\n inputPixel[1] = inputSize[1] * state.resolution;\n inputPixel[2] = 1.0 / inputPixel[0];\n inputPixel[3] = 1.0 / inputPixel[1];\n\n inputClamp[0] = 0.5 * inputPixel[2];\n inputClamp[1] = 0.5 * inputPixel[3];\n inputClamp[2] = (state.sourceFrame.width * inputSize[2]) - (0.5 * inputPixel[2]);\n inputClamp[3] = (state.sourceFrame.height * inputSize[3]) - (0.5 * inputPixel[3]);\n\n // only update the rect if its legacy..\n if (state.legacy)\n {\n var filterArea = globalUniforms.filterArea;\n\n filterArea[0] = state.destinationFrame.width;\n filterArea[1] = state.destinationFrame.height;\n filterArea[2] = state.sourceFrame.x;\n filterArea[3] = state.sourceFrame.y;\n\n globalUniforms.filterClamp = globalUniforms.inputClamp;\n }\n\n this.globalUniforms.update();\n\n var lastState = filterStack[filterStack.length - 1];\n\n if (filters.length === 1)\n {\n filters[0].apply(this, state.renderTexture, lastState.renderTexture, false, state);\n\n this.returnFilterTexture(state.renderTexture);\n }\n else\n {\n var flip = state.renderTexture;\n var flop = this.getOptimalFilterTexture(\n flip.width,\n flip.height,\n state.resolution\n );\n\n flop.filterFrame = flip.filterFrame;\n\n var i = 0;\n\n for (i = 0; i < filters.length - 1; ++i)\n {\n filters[i].apply(this, flip, flop, true, state);\n\n var t = flip;\n\n flip = flop;\n flop = t;\n }\n\n filters[i].apply(this, flip, lastState.renderTexture, false, state);\n\n this.returnFilterTexture(flip);\n this.returnFilterTexture(flop);\n }\n\n state.clear();\n this.statePool.push(state);\n };\n\n /**\n * Draws a filter.\n *\n * @param {PIXI.Filter} filter - The filter to draw.\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it\n */\n FilterSystem.prototype.applyFilter = function applyFilter (filter, input, output, clear)\n {\n var renderer = this.renderer;\n\n renderer.renderTexture.bind(output, output ? output.filterFrame : null);\n\n if (clear)\n {\n // gl.disable(gl.SCISSOR_TEST);\n renderer.renderTexture.clear();\n // gl.enable(gl.SCISSOR_TEST);\n }\n\n // set the uniforms..\n filter.uniforms.uSampler = input;\n filter.uniforms.filterGlobals = this.globalUniforms;\n\n // TODO make it so that the order of this does not matter..\n // because it does at the moment cos of global uniforms.\n // they need to get resynced\n\n renderer.state.set(filter.state);\n renderer.shader.bind(filter);\n\n if (filter.legacy)\n {\n this.quadUv.map(input._frame, input.filterFrame);\n\n renderer.geometry.bind(this.quadUv);\n renderer.geometry.draw(DRAW_MODES.TRIANGLES);\n }\n else\n {\n renderer.geometry.bind(this.quad);\n renderer.geometry.draw(DRAW_MODES.TRIANGLE_STRIP);\n }\n };\n\n /**\n * Multiply _input normalized coordinates_ to this matrix to get _sprite texture normalized coordinates_.\n *\n * Use `outputMatrix * vTextureCoord` in the shader.\n *\n * @param {PIXI.Matrix} outputMatrix - The matrix to output to.\n * @param {PIXI.Sprite} sprite - The sprite to map to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n FilterSystem.prototype.calculateSpriteMatrix = function calculateSpriteMatrix (outputMatrix, sprite)\n {\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n var ref$1 = sprite._texture;\n var orig = ref$1.orig;\n var mappedMatrix = outputMatrix.set(destinationFrame.width, 0, 0,\n destinationFrame.height, sourceFrame.x, sourceFrame.y);\n var worldTransform = sprite.worldTransform.copyTo(Matrix.TEMP_MATRIX);\n\n worldTransform.invert();\n mappedMatrix.prepend(worldTransform);\n mappedMatrix.scale(1.0 / orig.width, 1.0 / orig.height);\n mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y);\n\n return mappedMatrix;\n };\n\n /**\n * Destroys this Filter System.\n */\n FilterSystem.prototype.destroy = function destroy ()\n {\n // Those textures has to be destroyed by RenderTextureSystem or FramebufferSystem\n this.texturePool.clear(false);\n };\n\n /**\n * Gets a Power-of-Two render texture or fullScreen texture\n *\n * @protected\n * @param {number} minWidth - The minimum width of the render texture in real pixels.\n * @param {number} minHeight - The minimum height of the render texture in real pixels.\n * @param {number} [resolution=1] - The resolution of the render texture.\n * @return {PIXI.RenderTexture} The new render texture.\n */\n FilterSystem.prototype.getOptimalFilterTexture = function getOptimalFilterTexture (minWidth, minHeight, resolution)\n {\n if ( resolution === void 0 ) resolution = 1;\n\n return this.texturePool.getOptimalTexture(minWidth, minHeight, resolution);\n };\n\n /**\n * Gets extra render texture to use inside current filter\n * To be compliant with older filters, you can use params in any order\n *\n * @param {PIXI.RenderTexture} [input] renderTexture from which size and resolution will be copied\n * @param {number} [resolution] override resolution of the renderTexture\n * @returns {PIXI.RenderTexture}\n */\n FilterSystem.prototype.getFilterTexture = function getFilterTexture (input, resolution)\n {\n if (typeof input === 'number')\n {\n var swap = input;\n\n input = resolution;\n resolution = swap;\n }\n\n input = input || this.activeState.renderTexture;\n\n var filterTexture = this.texturePool.getOptimalTexture(input.width, input.height, resolution || input.resolution);\n\n filterTexture.filterFrame = input.filterFrame;\n\n return filterTexture;\n };\n\n /**\n * Frees a render texture back into the pool.\n *\n * @param {PIXI.RenderTexture} renderTexture - The renderTarget to free\n */\n FilterSystem.prototype.returnFilterTexture = function returnFilterTexture (renderTexture)\n {\n this.texturePool.returnTexture(renderTexture);\n };\n\n /**\n * Empties the texture pool.\n */\n FilterSystem.prototype.emptyPool = function emptyPool ()\n {\n this.texturePool.clear(true);\n };\n\n /**\n * calls `texturePool.resize()`, affects fullScreen renderTextures\n */\n FilterSystem.prototype.resize = function resize ()\n {\n this.texturePool.setScreenSize(this.renderer.view);\n };\n\n return FilterSystem;\n}(System));\n\n/**\n * Base for a common object renderer that can be used as a\n * system renderer plugin.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI\n */\nvar ObjectRenderer = function ObjectRenderer(renderer)\n{\n /**\n * The renderer this manager works for.\n *\n * @member {PIXI.Renderer}\n */\n this.renderer = renderer;\n};\n\n/**\n * Stub method that should be used to empty the current\n * batch by rendering objects now.\n */\nObjectRenderer.prototype.flush = function flush ()\n{\n // flush!\n};\n\n/**\n * Generic destruction method that frees all resources. This\n * should be called by subclasses.\n */\nObjectRenderer.prototype.destroy = function destroy ()\n{\n this.renderer = null;\n};\n\n/**\n * Stub method that initializes any state required before\n * rendering starts. It is different from the `prerender`\n * signal, which occurs every frame, in that it is called\n * whenever an object requests _this_ renderer specifically.\n */\nObjectRenderer.prototype.start = function start ()\n{\n // set the shader..\n};\n\n/**\n * Stops the renderer. It should free up any state and\n * become dormant.\n */\nObjectRenderer.prototype.stop = function stop ()\n{\n this.flush();\n};\n\n/**\n * Keeps the object to render. It doesn't have to be\n * rendered immediately.\n *\n * @param {PIXI.DisplayObject} object - The object to render.\n */\nObjectRenderer.prototype.render = function render (object) // eslint-disable-line no-unused-vars\n{\n // render the object\n};\n\n/**\n * System plugin to the renderer to manage batching.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar BatchSystem = /*@__PURE__*/(function (System) {\n function BatchSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * An empty renderer.\n *\n * @member {PIXI.ObjectRenderer}\n */\n this.emptyRenderer = new ObjectRenderer(renderer);\n\n /**\n * The currently active ObjectRenderer.\n *\n * @member {PIXI.ObjectRenderer}\n */\n this.currentRenderer = this.emptyRenderer;\n }\n\n if ( System ) BatchSystem.__proto__ = System;\n BatchSystem.prototype = Object.create( System && System.prototype );\n BatchSystem.prototype.constructor = BatchSystem;\n\n /**\n * Changes the current renderer to the one given in parameter\n *\n * @param {PIXI.ObjectRenderer} objectRenderer - The object renderer to use.\n */\n BatchSystem.prototype.setObjectRenderer = function setObjectRenderer (objectRenderer)\n {\n if (this.currentRenderer === objectRenderer)\n {\n return;\n }\n\n this.currentRenderer.stop();\n this.currentRenderer = objectRenderer;\n\n this.currentRenderer.start();\n };\n\n /**\n * This should be called if you wish to do some custom rendering\n * It will basically render anything that may be batched up such as sprites\n */\n BatchSystem.prototype.flush = function flush ()\n {\n this.setObjectRenderer(this.emptyRenderer);\n };\n\n /**\n * Reset the system to an empty renderer\n */\n BatchSystem.prototype.reset = function reset ()\n {\n this.setObjectRenderer(this.emptyRenderer);\n };\n\n return BatchSystem;\n}(System));\n\n/**\n * The maximum support for using WebGL. If a device does not\n * support WebGL version, for instance WebGL 2, it will still\n * attempt to fallback support to WebGL 1. If you want to\n * explicitly remove feature support to target a more stable\n * baseline, prefer a lower environment.\n *\n * Due to {@link https://bugs.chromium.org/p/chromium/issues/detail?id=934823|bug in chromium}\n * we disable webgl2 by default for all non-apple mobile devices.\n *\n * @static\n * @name PREFER_ENV\n * @memberof PIXI.settings\n * @type {number}\n * @default PIXI.ENV.WEBGL2\n */\nsettings.PREFER_ENV = isMobile.any ? ENV.WEBGL : ENV.WEBGL2;\n\nvar CONTEXT_UID = 0;\n\n/**\n * System plugin to the renderer to manage the context.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar ContextSystem = /*@__PURE__*/(function (System) {\n function ContextSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Either 1 or 2 to reflect the WebGL version being used\n * @member {number}\n * @readonly\n */\n this.webGLVersion = 1;\n\n /**\n * Extensions being used\n * @member {object}\n * @readonly\n * @property {WEBGL_draw_buffers} drawBuffers - WebGL v1 extension\n * @property {WEBGL_depth_texture} depthTexture - WebGL v1 extension\n * @property {OES_texture_float} floatTexture - WebGL v1 extension\n * @property {WEBGL_lose_context} loseContext - WebGL v1 extension\n * @property {OES_vertex_array_object} vertexArrayObject - WebGL v1 extension\n * @property {EXT_texture_filter_anisotropic} anisotropicFiltering - WebGL v1 and v2 extension\n */\n this.extensions = {};\n\n // Bind functions\n this.handleContextLost = this.handleContextLost.bind(this);\n this.handleContextRestored = this.handleContextRestored.bind(this);\n\n renderer.view.addEventListener('webglcontextlost', this.handleContextLost, false);\n renderer.view.addEventListener('webglcontextrestored', this.handleContextRestored, false);\n }\n\n if ( System ) ContextSystem.__proto__ = System;\n ContextSystem.prototype = Object.create( System && System.prototype );\n ContextSystem.prototype.constructor = ContextSystem;\n\n var prototypeAccessors = { isLost: { configurable: true } };\n\n /**\n * `true` if the context is lost\n * @member {boolean}\n * @readonly\n */\n prototypeAccessors.isLost.get = function ()\n {\n return (!this.gl || this.gl.isContextLost());\n };\n\n /**\n * Handle the context change event\n * @param {WebGLRenderingContext} gl new webgl context\n */\n ContextSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n this.renderer.gl = gl;\n this.renderer.CONTEXT_UID = CONTEXT_UID++;\n\n // restore a context if it was previously lost\n if (gl.isContextLost() && gl.getExtension('WEBGL_lose_context'))\n {\n gl.getExtension('WEBGL_lose_context').restoreContext();\n }\n };\n\n /**\n * Initialize the context\n *\n * @protected\n * @param {WebGLRenderingContext} gl - WebGL context\n */\n ContextSystem.prototype.initFromContext = function initFromContext (gl)\n {\n this.gl = gl;\n this.validateContext(gl);\n this.renderer.gl = gl;\n this.renderer.CONTEXT_UID = CONTEXT_UID++;\n this.renderer.runners.contextChange.run(gl);\n };\n\n /**\n * Initialize from context options\n *\n * @protected\n * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext\n * @param {object} options - context attributes\n */\n ContextSystem.prototype.initFromOptions = function initFromOptions (options)\n {\n var gl = this.createContext(this.renderer.view, options);\n\n this.initFromContext(gl);\n };\n\n /**\n * Helper class to create a WebGL Context\n *\n * @param canvas {HTMLCanvasElement} the canvas element that we will get the context from\n * @param options {object} An options object that gets passed in to the canvas element containing the context attributes\n * @see https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement/getContext\n * @return {WebGLRenderingContext} the WebGL context\n */\n ContextSystem.prototype.createContext = function createContext (canvas, options)\n {\n var gl;\n\n if (settings.PREFER_ENV >= ENV.WEBGL2)\n {\n gl = canvas.getContext('webgl2', options);\n }\n\n if (gl)\n {\n this.webGLVersion = 2;\n }\n else\n {\n this.webGLVersion = 1;\n\n gl = canvas.getContext('webgl', options)\n || canvas.getContext('experimental-webgl', options);\n\n if (!gl)\n {\n // fail, not able to get a context\n throw new Error('This browser does not support WebGL. Try using the canvas renderer');\n }\n }\n\n this.gl = gl;\n\n this.getExtensions();\n\n return gl;\n };\n\n /**\n * Auto-populate the extensions\n *\n * @protected\n */\n ContextSystem.prototype.getExtensions = function getExtensions ()\n {\n // time to set up default extensions that Pixi uses.\n var ref = this;\n var gl = ref.gl;\n\n if (this.webGLVersion === 1)\n {\n Object.assign(this.extensions, {\n drawBuffers: gl.getExtension('WEBGL_draw_buffers'),\n depthTexture: gl.getExtension('WEBKIT_WEBGL_depth_texture'),\n loseContext: gl.getExtension('WEBGL_lose_context'),\n vertexArrayObject: gl.getExtension('OES_vertex_array_object')\n || gl.getExtension('MOZ_OES_vertex_array_object')\n || gl.getExtension('WEBKIT_OES_vertex_array_object'),\n anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'),\n uint32ElementIndex: gl.getExtension('OES_element_index_uint'),\n // Floats and half-floats\n floatTexture: gl.getExtension('OES_texture_float'),\n floatTextureLinear: gl.getExtension('OES_texture_float_linear'),\n textureHalfFloat: gl.getExtension('OES_texture_half_float'),\n textureHalfFloatLinear: gl.getExtension('OES_texture_half_float_linear'),\n });\n }\n else if (this.webGLVersion === 2)\n {\n Object.assign(this.extensions, {\n anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'),\n // Floats and half-floats\n colorBufferFloat: gl.getExtension('EXT_color_buffer_float'),\n floatTextureLinear: gl.getExtension('OES_texture_float_linear'),\n });\n }\n };\n\n /**\n * Handles a lost webgl context\n *\n * @protected\n * @param {WebGLContextEvent} event - The context lost event.\n */\n ContextSystem.prototype.handleContextLost = function handleContextLost (event)\n {\n event.preventDefault();\n };\n\n /**\n * Handles a restored webgl context\n *\n * @protected\n */\n ContextSystem.prototype.handleContextRestored = function handleContextRestored ()\n {\n this.renderer.runners.contextChange.run(this.gl);\n };\n\n ContextSystem.prototype.destroy = function destroy ()\n {\n var view = this.renderer.view;\n\n // remove listeners\n view.removeEventListener('webglcontextlost', this.handleContextLost);\n view.removeEventListener('webglcontextrestored', this.handleContextRestored);\n\n this.gl.useProgram(null);\n\n if (this.extensions.loseContext)\n {\n this.extensions.loseContext.loseContext();\n }\n };\n\n /**\n * Handle the post-render runner event\n *\n * @protected\n */\n ContextSystem.prototype.postrender = function postrender ()\n {\n this.gl.flush();\n };\n\n /**\n * Validate context\n *\n * @protected\n * @param {WebGLRenderingContext} gl - Render context\n */\n ContextSystem.prototype.validateContext = function validateContext (gl)\n {\n var attributes = gl.getContextAttributes();\n\n // this is going to be fairly simple for now.. but at least we have room to grow!\n if (!attributes.stencil)\n {\n /* eslint-disable max-len */\n\n /* eslint-disable no-console */\n console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly');\n /* eslint-enable no-console */\n\n /* eslint-enable max-len */\n }\n };\n\n Object.defineProperties( ContextSystem.prototype, prototypeAccessors );\n\n return ContextSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage framebuffers.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar FramebufferSystem = /*@__PURE__*/(function (System) {\n function FramebufferSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * A list of managed framebuffers\n * @member {PIXI.Framebuffer[]}\n * @readonly\n */\n this.managedFramebuffers = [];\n\n /**\n * Framebuffer value that shows that we don't know what is bound\n * @member {Framebuffer}\n * @readonly\n */\n this.unknownFramebuffer = new Framebuffer(10, 10);\n }\n\n if ( System ) FramebufferSystem.__proto__ = System;\n FramebufferSystem.prototype = Object.create( System && System.prototype );\n FramebufferSystem.prototype.constructor = FramebufferSystem;\n\n var prototypeAccessors = { size: { configurable: true } };\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n FramebufferSystem.prototype.contextChange = function contextChange ()\n {\n var gl = this.gl = this.renderer.gl;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n this.current = this.unknownFramebuffer;\n this.viewport = new Rectangle();\n this.hasMRT = true;\n this.writeDepthTexture = true;\n\n this.disposeAll(true);\n\n // webgl2\n if (this.renderer.context.webGLVersion === 1)\n {\n // webgl 1!\n var nativeDrawBuffersExtension = this.renderer.context.extensions.drawBuffers;\n var nativeDepthTextureExtension = this.renderer.context.extensions.depthTexture;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n nativeDrawBuffersExtension = null;\n nativeDepthTextureExtension = null;\n }\n\n if (nativeDrawBuffersExtension)\n {\n gl.drawBuffers = function (activeTextures) { return nativeDrawBuffersExtension.drawBuffersWEBGL(activeTextures); };\n }\n else\n {\n this.hasMRT = false;\n gl.drawBuffers = function () {\n // empty\n };\n }\n\n if (!nativeDepthTextureExtension)\n {\n this.writeDepthTexture = false;\n }\n }\n };\n\n /**\n * Bind a framebuffer\n *\n * @param {PIXI.Framebuffer} framebuffer\n * @param {PIXI.Rectangle} [frame] frame, default is framebuffer size\n */\n FramebufferSystem.prototype.bind = function bind (framebuffer, frame)\n {\n var ref = this;\n var gl = ref.gl;\n\n if (framebuffer)\n {\n // TODO caching layer!\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID] || this.initFramebuffer(framebuffer);\n\n if (this.current !== framebuffer)\n {\n this.current = framebuffer;\n gl.bindFramebuffer(gl.FRAMEBUFFER, fbo.framebuffer);\n }\n // make sure all textures are unbound..\n\n // now check for updates...\n if (fbo.dirtyId !== framebuffer.dirtyId)\n {\n fbo.dirtyId = framebuffer.dirtyId;\n\n if (fbo.dirtyFormat !== framebuffer.dirtyFormat)\n {\n fbo.dirtyFormat = framebuffer.dirtyFormat;\n this.updateFramebuffer(framebuffer);\n }\n else if (fbo.dirtySize !== framebuffer.dirtySize)\n {\n fbo.dirtySize = framebuffer.dirtySize;\n this.resizeFramebuffer(framebuffer);\n }\n }\n\n for (var i = 0; i < framebuffer.colorTextures.length; i++)\n {\n if (framebuffer.colorTextures[i].texturePart)\n {\n this.renderer.texture.unbind(framebuffer.colorTextures[i].texture);\n }\n else\n {\n this.renderer.texture.unbind(framebuffer.colorTextures[i]);\n }\n }\n\n if (framebuffer.depthTexture)\n {\n this.renderer.texture.unbind(framebuffer.depthTexture);\n }\n\n if (frame)\n {\n this.setViewport(frame.x, frame.y, frame.width, frame.height);\n }\n else\n {\n this.setViewport(0, 0, framebuffer.width, framebuffer.height);\n }\n }\n else\n {\n if (this.current)\n {\n this.current = null;\n gl.bindFramebuffer(gl.FRAMEBUFFER, null);\n }\n\n if (frame)\n {\n this.setViewport(frame.x, frame.y, frame.width, frame.height);\n }\n else\n {\n this.setViewport(0, 0, this.renderer.width, this.renderer.height);\n }\n }\n };\n\n /**\n * Set the WebGLRenderingContext's viewport.\n *\n * @param {Number} x - X position of viewport\n * @param {Number} y - Y position of viewport\n * @param {Number} width - Width of viewport\n * @param {Number} height - Height of viewport\n */\n FramebufferSystem.prototype.setViewport = function setViewport (x, y, width, height)\n {\n var v = this.viewport;\n\n if (v.width !== width || v.height !== height || v.x !== x || v.y !== y)\n {\n v.x = x;\n v.y = y;\n v.width = width;\n v.height = height;\n\n this.gl.viewport(x, y, width, height);\n }\n };\n\n /**\n * Get the size of the current width and height. Returns object with `width` and `height` values.\n *\n * @member {object}\n * @readonly\n */\n prototypeAccessors.size.get = function ()\n {\n if (this.current)\n {\n // TODO store temp\n return { x: 0, y: 0, width: this.current.width, height: this.current.height };\n }\n\n return { x: 0, y: 0, width: this.renderer.width, height: this.renderer.height };\n };\n\n /**\n * Clear the color of the context\n *\n * @param {Number} r - Red value from 0 to 1\n * @param {Number} g - Green value from 0 to 1\n * @param {Number} b - Blue value from 0 to 1\n * @param {Number} a - Alpha value from 0 to 1\n */\n FramebufferSystem.prototype.clear = function clear (r, g, b, a)\n {\n var ref = this;\n var gl = ref.gl;\n\n // TODO clear color can be set only one right?\n gl.clearColor(r, g, b, a);\n gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);\n };\n\n /**\n * Initialize framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.initFramebuffer = function initFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n // TODO - make this a class?\n var fbo = {\n framebuffer: gl.createFramebuffer(),\n stencil: null,\n dirtyId: 0,\n dirtyFormat: 0,\n dirtySize: 0,\n };\n\n framebuffer.glFramebuffers[this.CONTEXT_UID] = fbo;\n\n this.managedFramebuffers.push(framebuffer);\n framebuffer.disposeRunner.add(this);\n\n return fbo;\n };\n\n /**\n * Resize the framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.resizeFramebuffer = function resizeFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n if (fbo.stencil)\n {\n gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil);\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height);\n }\n\n var colorTextures = framebuffer.colorTextures;\n\n for (var i = 0; i < colorTextures.length; i++)\n {\n this.renderer.texture.bind(colorTextures[i], 0);\n }\n\n if (framebuffer.depthTexture)\n {\n this.renderer.texture.bind(framebuffer.depthTexture, 0);\n }\n };\n\n /**\n * Update the framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.updateFramebuffer = function updateFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n // bind the color texture\n var colorTextures = framebuffer.colorTextures;\n\n var count = colorTextures.length;\n\n if (!gl.drawBuffers)\n {\n count = Math.min(count, 1);\n }\n\n var activeTextures = [];\n\n for (var i = 0; i < count; i++)\n {\n var texture = framebuffer.colorTextures[i];\n\n if (texture.texturePart)\n {\n this.renderer.texture.bind(texture.texture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.COLOR_ATTACHMENT0 + i,\n gl.TEXTURE_CUBE_MAP_NEGATIVE_X + texture.side,\n texture.texture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n else\n {\n this.renderer.texture.bind(texture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.COLOR_ATTACHMENT0 + i,\n gl.TEXTURE_2D,\n texture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n\n activeTextures.push(gl.COLOR_ATTACHMENT0 + i);\n }\n\n if (activeTextures.length > 1)\n {\n gl.drawBuffers(activeTextures);\n }\n\n if (framebuffer.depthTexture)\n {\n var writeDepthTexture = this.writeDepthTexture;\n\n if (writeDepthTexture)\n {\n var depthTexture = framebuffer.depthTexture;\n\n this.renderer.texture.bind(depthTexture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.DEPTH_ATTACHMENT,\n gl.TEXTURE_2D,\n depthTexture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n }\n\n if (!fbo.stencil && (framebuffer.stencil || framebuffer.depth))\n {\n fbo.stencil = gl.createRenderbuffer();\n\n gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil);\n\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height);\n // TODO.. this is depth AND stencil?\n if (!framebuffer.depthTexture)\n { // you can't have both, so one should take priority if enabled\n gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, fbo.stencil);\n }\n }\n };\n\n /**\n * Disposes framebuffer\n * @param {PIXI.Framebuffer} framebuffer framebuffer that has to be disposed of\n * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls\n */\n FramebufferSystem.prototype.disposeFramebuffer = function disposeFramebuffer (framebuffer, contextLost)\n {\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n var gl = this.gl;\n\n if (!fbo)\n {\n return;\n }\n\n delete framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n var index = this.managedFramebuffers.indexOf(framebuffer);\n\n if (index >= 0)\n {\n this.managedFramebuffers.splice(index, 1);\n }\n\n framebuffer.disposeRunner.remove(this);\n\n if (!contextLost)\n {\n gl.deleteFramebuffer(fbo.framebuffer);\n if (fbo.stencil)\n {\n gl.deleteRenderbuffer(fbo.stencil);\n }\n }\n };\n\n /**\n * Disposes all framebuffers, but not textures bound to them\n * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls\n */\n FramebufferSystem.prototype.disposeAll = function disposeAll (contextLost)\n {\n var list = this.managedFramebuffers;\n\n this.managedFramebuffers = [];\n\n for (var i = 0; i < list.length; i++)\n {\n this.disposeFramebuffer(list[i], contextLost);\n }\n };\n\n /**\n * Forcing creation of stencil buffer for current framebuffer, if it wasn't done before.\n * Used by MaskSystem, when its time to use stencil mask for Graphics element.\n *\n * Its an alternative for public lazy `framebuffer.enableStencil`, in case we need stencil without rebind.\n *\n * @private\n */\n FramebufferSystem.prototype.forceStencil = function forceStencil ()\n {\n var framebuffer = this.current;\n\n if (!framebuffer)\n {\n return;\n }\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n if (!fbo || fbo.stencil)\n {\n return;\n }\n framebuffer.enableStencil();\n\n var w = framebuffer.width;\n var h = framebuffer.height;\n var gl = this.gl;\n var stencil = gl.createRenderbuffer();\n\n gl.bindRenderbuffer(gl.RENDERBUFFER, stencil);\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, w, h);\n\n fbo.stencil = stencil;\n gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, stencil);\n };\n\n /**\n * resets framebuffer stored state, binds screen framebuffer\n *\n * should be called before renderTexture reset()\n */\n FramebufferSystem.prototype.reset = function reset ()\n {\n this.current = this.unknownFramebuffer;\n this.viewport = new Rectangle();\n };\n\n Object.defineProperties( FramebufferSystem.prototype, prototypeAccessors );\n\n return FramebufferSystem;\n}(System));\n\nvar GLBuffer = function GLBuffer(buffer)\n{\n this.buffer = buffer;\n this.updateID = -1;\n this.byteLength = -1;\n this.refCount = 0;\n};\n\nvar byteSizeMap$1 = { 5126: 4, 5123: 2, 5121: 1 };\n\n/**\n * System plugin to the renderer to manage geometry.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar GeometrySystem = /*@__PURE__*/(function (System) {\n function GeometrySystem(renderer)\n {\n System.call(this, renderer);\n\n this._activeGeometry = null;\n this._activeVao = null;\n\n /**\n * `true` if we has `*_vertex_array_object` extension\n * @member {boolean}\n * @readonly\n */\n this.hasVao = true;\n\n /**\n * `true` if has `ANGLE_instanced_arrays` extension\n * @member {boolean}\n * @readonly\n */\n this.hasInstance = true;\n\n /**\n * `true` if support `gl.UNSIGNED_INT` in `gl.drawElements` or `gl.drawElementsInstanced`\n * @member {boolean}\n * @readonly\n */\n this.canUseUInt32ElementIndex = false;\n\n /**\n * A cache of currently bound buffer,\n * contains only two members with keys ARRAY_BUFFER and ELEMENT_ARRAY_BUFFER\n * @member {Object.}\n * @readonly\n */\n this.boundBuffers = {};\n\n /**\n * Cache for all geometries by id, used in case renderer gets destroyed or for profiling\n * @member {object}\n * @readonly\n */\n this.managedGeometries = {};\n\n /**\n * Cache for all buffers by id, used in case renderer gets destroyed or for profiling\n * @member {object}\n * @readonly\n */\n this.managedBuffers = {};\n }\n\n if ( System ) GeometrySystem.__proto__ = System;\n GeometrySystem.prototype = Object.create( System && System.prototype );\n GeometrySystem.prototype.constructor = GeometrySystem;\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n GeometrySystem.prototype.contextChange = function contextChange ()\n {\n this.disposeAll(true);\n\n var gl = this.gl = this.renderer.gl;\n var context = this.renderer.context;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n\n // webgl2\n if (!gl.createVertexArray)\n {\n // webgl 1!\n var nativeVaoExtension = this.renderer.context.extensions.vertexArrayObject;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n nativeVaoExtension = null;\n }\n\n if (nativeVaoExtension)\n {\n gl.createVertexArray = function () { return nativeVaoExtension.createVertexArrayOES(); };\n\n gl.bindVertexArray = function (vao) { return nativeVaoExtension.bindVertexArrayOES(vao); };\n\n gl.deleteVertexArray = function (vao) { return nativeVaoExtension.deleteVertexArrayOES(vao); };\n }\n else\n {\n this.hasVao = false;\n gl.createVertexArray = function () {\n // empty\n };\n\n gl.bindVertexArray = function () {\n // empty\n };\n\n gl.deleteVertexArray = function () {\n // empty\n };\n }\n }\n\n if (!gl.vertexAttribDivisor)\n {\n var instanceExt = gl.getExtension('ANGLE_instanced_arrays');\n\n if (instanceExt)\n {\n gl.vertexAttribDivisor = function (a, b) { return instanceExt.vertexAttribDivisorANGLE(a, b); };\n\n gl.drawElementsInstanced = function (a, b, c, d, e) { return instanceExt.drawElementsInstancedANGLE(a, b, c, d, e); };\n\n gl.drawArraysInstanced = function (a, b, c, d) { return instanceExt.drawArraysInstancedANGLE(a, b, c, d); };\n }\n else\n {\n this.hasInstance = false;\n }\n }\n\n this.canUseUInt32ElementIndex = context.webGLVersion === 2 || !!context.extensions.uint32ElementIndex;\n };\n\n /**\n * Binds geometry so that is can be drawn. Creating a Vao if required\n *\n * @param {PIXI.Geometry} geometry instance of geometry to bind\n * @param {PIXI.Shader} [shader] instance of shader to use vao for\n */\n GeometrySystem.prototype.bind = function bind (geometry, shader)\n {\n shader = shader || this.renderer.shader.shader;\n\n var ref = this;\n var gl = ref.gl;\n\n // not sure the best way to address this..\n // currently different shaders require different VAOs for the same geometry\n // Still mulling over the best way to solve this one..\n // will likely need to modify the shader attribute locations at run time!\n var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n\n if (!vaos)\n {\n this.managedGeometries[geometry.id] = geometry;\n geometry.disposeRunner.add(this);\n geometry.glVertexArrayObjects[this.CONTEXT_UID] = vaos = {};\n }\n\n var vao = vaos[shader.program.id] || this.initGeometryVao(geometry, shader.program);\n\n this._activeGeometry = geometry;\n\n if (this._activeVao !== vao)\n {\n this._activeVao = vao;\n\n if (this.hasVao)\n {\n gl.bindVertexArray(vao);\n }\n else\n {\n this.activateVao(geometry, shader.program);\n }\n }\n\n // TODO - optimise later!\n // don't need to loop through if nothing changed!\n // maybe look to add an 'autoupdate' to geometry?\n this.updateBuffers();\n };\n\n /**\n * Reset and unbind any active VAO and geometry\n */\n GeometrySystem.prototype.reset = function reset ()\n {\n this.unbind();\n };\n\n /**\n * Update buffers\n * @protected\n */\n GeometrySystem.prototype.updateBuffers = function updateBuffers ()\n {\n var geometry = this._activeGeometry;\n var ref = this;\n var gl = ref.gl;\n\n for (var i = 0; i < geometry.buffers.length; i++)\n {\n var buffer = geometry.buffers[i];\n\n var glBuffer = buffer._glBuffers[this.CONTEXT_UID];\n\n if (buffer._updateID !== glBuffer.updateID)\n {\n glBuffer.updateID = buffer._updateID;\n\n // TODO can cache this on buffer! maybe added a getter / setter?\n var type = buffer.index ? gl.ELEMENT_ARRAY_BUFFER : gl.ARRAY_BUFFER;\n\n // TODO this could change if the VAO changes...\n // need to come up with a better way to cache..\n // if (this.boundBuffers[type] !== glBuffer)\n // {\n // this.boundBuffers[type] = glBuffer;\n gl.bindBuffer(type, glBuffer.buffer);\n // }\n\n this._boundBuffer = glBuffer;\n\n if (glBuffer.byteLength >= buffer.data.byteLength)\n {\n // offset is always zero for now!\n gl.bufferSubData(type, 0, buffer.data);\n }\n else\n {\n var drawType = buffer.static ? gl.STATIC_DRAW : gl.DYNAMIC_DRAW;\n\n glBuffer.byteLength = buffer.data.byteLength;\n gl.bufferData(type, buffer.data, drawType);\n }\n }\n }\n };\n\n /**\n * Check compability between a geometry and a program\n * @protected\n * @param {PIXI.Geometry} geometry - Geometry instance\n * @param {PIXI.Program} program - Program instance\n */\n GeometrySystem.prototype.checkCompatibility = function checkCompatibility (geometry, program)\n {\n // geometry must have at least all the attributes that the shader requires.\n var geometryAttributes = geometry.attributes;\n var shaderAttributes = program.attributeData;\n\n for (var j in shaderAttributes)\n {\n if (!geometryAttributes[j])\n {\n throw new Error((\"shader and geometry incompatible, geometry missing the \\\"\" + j + \"\\\" attribute\"));\n }\n }\n };\n\n /**\n * Takes a geometry and program and generates a unique signature for them.\n *\n * @param {PIXI.Geometry} geometry to get signature from\n * @param {PIXI.Program} program to test geometry against\n * @returns {String} Unique signature of the geometry and program\n * @protected\n */\n GeometrySystem.prototype.getSignature = function getSignature (geometry, program)\n {\n var attribs = geometry.attributes;\n var shaderAttributes = program.attributeData;\n\n var strings = ['g', geometry.id];\n\n for (var i in attribs)\n {\n if (shaderAttributes[i])\n {\n strings.push(i);\n }\n }\n\n return strings.join('-');\n };\n\n /**\n * Creates or gets Vao with the same structure as the geometry and stores it on the geometry.\n * If vao is created, it is bound automatically.\n *\n * @protected\n * @param {PIXI.Geometry} geometry - Instance of geometry to to generate Vao for\n * @param {PIXI.Program} program - Instance of program\n */\n GeometrySystem.prototype.initGeometryVao = function initGeometryVao (geometry, program)\n {\n this.checkCompatibility(geometry, program);\n\n var gl = this.gl;\n var CONTEXT_UID = this.CONTEXT_UID;\n\n var signature = this.getSignature(geometry, program);\n\n var vaoObjectHash = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n\n var vao = vaoObjectHash[signature];\n\n if (vao)\n {\n // this will give us easy access to the vao\n vaoObjectHash[program.id] = vao;\n\n return vao;\n }\n\n var buffers = geometry.buffers;\n var attributes = geometry.attributes;\n var tempStride = {};\n var tempStart = {};\n\n for (var j in buffers)\n {\n tempStride[j] = 0;\n tempStart[j] = 0;\n }\n\n for (var j$1 in attributes)\n {\n if (!attributes[j$1].size && program.attributeData[j$1])\n {\n attributes[j$1].size = program.attributeData[j$1].size;\n }\n else if (!attributes[j$1].size)\n {\n console.warn((\"PIXI Geometry attribute '\" + j$1 + \"' size cannot be determined (likely the bound shader does not have the attribute)\")); // eslint-disable-line\n }\n\n tempStride[attributes[j$1].buffer] += attributes[j$1].size * byteSizeMap$1[attributes[j$1].type];\n }\n\n for (var j$2 in attributes)\n {\n var attribute = attributes[j$2];\n var attribSize = attribute.size;\n\n if (attribute.stride === undefined)\n {\n if (tempStride[attribute.buffer] === attribSize * byteSizeMap$1[attribute.type])\n {\n attribute.stride = 0;\n }\n else\n {\n attribute.stride = tempStride[attribute.buffer];\n }\n }\n\n if (attribute.start === undefined)\n {\n attribute.start = tempStart[attribute.buffer];\n\n tempStart[attribute.buffer] += attribSize * byteSizeMap$1[attribute.type];\n }\n }\n\n vao = gl.createVertexArray();\n\n gl.bindVertexArray(vao);\n\n // first update - and create the buffers!\n // only create a gl buffer if it actually gets\n for (var i = 0; i < buffers.length; i++)\n {\n var buffer = buffers[i];\n\n if (!buffer._glBuffers[CONTEXT_UID])\n {\n buffer._glBuffers[CONTEXT_UID] = new GLBuffer(gl.createBuffer());\n this.managedBuffers[buffer.id] = buffer;\n buffer.disposeRunner.add(this);\n }\n\n buffer._glBuffers[CONTEXT_UID].refCount++;\n }\n\n // TODO - maybe make this a data object?\n // lets wait to see if we need to first!\n\n this.activateVao(geometry, program);\n\n this._activeVao = vao;\n\n // add it to the cache!\n vaoObjectHash[program.id] = vao;\n vaoObjectHash[signature] = vao;\n\n return vao;\n };\n\n /**\n * Disposes buffer\n * @param {PIXI.Buffer} buffer buffer with data\n * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray\n */\n GeometrySystem.prototype.disposeBuffer = function disposeBuffer (buffer, contextLost)\n {\n if (!this.managedBuffers[buffer.id])\n {\n return;\n }\n\n delete this.managedBuffers[buffer.id];\n\n var glBuffer = buffer._glBuffers[this.CONTEXT_UID];\n var gl = this.gl;\n\n buffer.disposeRunner.remove(this);\n\n if (!glBuffer)\n {\n return;\n }\n\n if (!contextLost)\n {\n gl.deleteBuffer(glBuffer.buffer);\n }\n\n delete buffer._glBuffers[this.CONTEXT_UID];\n };\n\n /**\n * Disposes geometry\n * @param {PIXI.Geometry} geometry Geometry with buffers. Only VAO will be disposed\n * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray\n */\n GeometrySystem.prototype.disposeGeometry = function disposeGeometry (geometry, contextLost)\n {\n if (!this.managedGeometries[geometry.id])\n {\n return;\n }\n\n delete this.managedGeometries[geometry.id];\n\n var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n var gl = this.gl;\n var buffers = geometry.buffers;\n\n geometry.disposeRunner.remove(this);\n\n if (!vaos)\n {\n return;\n }\n\n for (var i = 0; i < buffers.length; i++)\n {\n var buf = buffers[i]._glBuffers[this.CONTEXT_UID];\n\n buf.refCount--;\n if (buf.refCount === 0 && !contextLost)\n {\n this.disposeBuffer(buffers[i], contextLost);\n }\n }\n\n if (!contextLost)\n {\n for (var vaoId in vaos)\n {\n // delete only signatures, everything else are copies\n if (vaoId[0] === 'g')\n {\n var vao = vaos[vaoId];\n\n if (this._activeVao === vao)\n {\n this.unbind();\n }\n gl.deleteVertexArray(vao);\n }\n }\n }\n\n delete geometry.glVertexArrayObjects[this.CONTEXT_UID];\n };\n\n /**\n * dispose all WebGL resources of all managed geometries and buffers\n * @param {boolean} [contextLost=false] If context was lost, we suppress `gl.delete` calls\n */\n GeometrySystem.prototype.disposeAll = function disposeAll (contextLost)\n {\n var all = Object.keys(this.managedGeometries);\n\n for (var i = 0; i < all.length; i++)\n {\n this.disposeGeometry(this.managedGeometries[all[i]], contextLost);\n }\n all = Object.keys(this.managedBuffers);\n for (var i$1 = 0; i$1 < all.length; i$1++)\n {\n this.disposeBuffer(this.managedBuffers[all[i$1]], contextLost);\n }\n };\n\n /**\n * Activate vertex array object\n *\n * @protected\n * @param {PIXI.Geometry} geometry - Geometry instance\n * @param {PIXI.Program} program - Shader program instance\n */\n GeometrySystem.prototype.activateVao = function activateVao (geometry, program)\n {\n var gl = this.gl;\n var CONTEXT_UID = this.CONTEXT_UID;\n var buffers = geometry.buffers;\n var attributes = geometry.attributes;\n\n if (geometry.indexBuffer)\n {\n // first update the index buffer if we have one..\n gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, geometry.indexBuffer._glBuffers[CONTEXT_UID].buffer);\n }\n\n var lastBuffer = null;\n\n // add a new one!\n for (var j in attributes)\n {\n var attribute = attributes[j];\n var buffer = buffers[attribute.buffer];\n var glBuffer = buffer._glBuffers[CONTEXT_UID];\n\n if (program.attributeData[j])\n {\n if (lastBuffer !== glBuffer)\n {\n gl.bindBuffer(gl.ARRAY_BUFFER, glBuffer.buffer);\n\n lastBuffer = glBuffer;\n }\n\n var location = program.attributeData[j].location;\n\n // TODO introduce state again\n // we can optimise this for older devices that have no VAOs\n gl.enableVertexAttribArray(location);\n\n gl.vertexAttribPointer(location,\n attribute.size,\n attribute.type || gl.FLOAT,\n attribute.normalized,\n attribute.stride,\n attribute.start);\n\n if (attribute.instance)\n {\n // TODO calculate instance count based of this...\n if (this.hasInstance)\n {\n gl.vertexAttribDivisor(location, 1);\n }\n else\n {\n throw new Error('geometry error, GPU Instancing is not supported on this device');\n }\n }\n }\n }\n };\n\n /**\n * Draw the geometry\n *\n * @param {Number} type - the type primitive to render\n * @param {Number} [size] - the number of elements to be rendered\n * @param {Number} [start] - Starting index\n * @param {Number} [instanceCount] - the number of instances of the set of elements to execute\n */\n GeometrySystem.prototype.draw = function draw (type, size, start, instanceCount)\n {\n var ref = this;\n var gl = ref.gl;\n var geometry = this._activeGeometry;\n\n // TODO.. this should not change so maybe cache the function?\n\n if (geometry.indexBuffer)\n {\n var byteSize = geometry.indexBuffer.data.BYTES_PER_ELEMENT;\n var glType = byteSize === 2 ? gl.UNSIGNED_SHORT : gl.UNSIGNED_INT;\n\n if (byteSize === 2 || (byteSize === 4 && this.canUseUInt32ElementIndex))\n {\n if (geometry.instanced)\n {\n /* eslint-disable max-len */\n gl.drawElementsInstanced(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize, instanceCount || 1);\n /* eslint-enable max-len */\n }\n else\n {\n /* eslint-disable max-len */\n gl.drawElements(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize);\n /* eslint-enable max-len */\n }\n }\n else\n {\n console.warn('unsupported index buffer type: uint32');\n }\n }\n else if (geometry.instanced)\n {\n // TODO need a better way to calculate size..\n gl.drawArraysInstanced(type, start, size || geometry.getSize(), instanceCount || 1);\n }\n else\n {\n gl.drawArrays(type, start, size || geometry.getSize());\n }\n\n return this;\n };\n\n /**\n * Unbind/reset everything\n * @protected\n */\n GeometrySystem.prototype.unbind = function unbind ()\n {\n this.gl.bindVertexArray(null);\n this._activeVao = null;\n this._activeGeometry = null;\n };\n\n return GeometrySystem;\n}(System));\n\n/**\n * @method compileProgram\n * @private\n * @memberof PIXI.glCore.shader\n * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram}\n * @param vertexSrc {string|string[]} The vertex shader source as an array of strings.\n * @param fragmentSrc {string|string[]} The fragment shader source as an array of strings.\n * @param attributeLocations {Object} An attribute location map that lets you manually set the attribute locations\n * @return {WebGLProgram} the shader program\n */\nfunction compileProgram(gl, vertexSrc, fragmentSrc, attributeLocations)\n{\n var glVertShader = compileShader(gl, gl.VERTEX_SHADER, vertexSrc);\n var glFragShader = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc);\n\n var program = gl.createProgram();\n\n gl.attachShader(program, glVertShader);\n gl.attachShader(program, glFragShader);\n\n // optionally, set the attributes manually for the program rather than letting WebGL decide..\n if (attributeLocations)\n {\n for (var i in attributeLocations)\n {\n gl.bindAttribLocation(program, attributeLocations[i], i);\n }\n }\n\n gl.linkProgram(program);\n\n // if linking fails, then log and cleanup\n if (!gl.getProgramParameter(program, gl.LINK_STATUS))\n {\n console.error('Pixi.js Error: Could not initialize shader.');\n console.error('gl.VALIDATE_STATUS', gl.getProgramParameter(program, gl.VALIDATE_STATUS));\n console.error('gl.getError()', gl.getError());\n\n // if there is a program info log, log it\n if (gl.getProgramInfoLog(program) !== '')\n {\n console.warn('Pixi.js Warning: gl.getProgramInfoLog()', gl.getProgramInfoLog(program));\n }\n\n gl.deleteProgram(program);\n program = null;\n }\n\n // clean up some shaders\n gl.deleteShader(glVertShader);\n gl.deleteShader(glFragShader);\n\n return program;\n}\n\n/**\n * @private\n * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram}\n * @param type {Number} the type, can be either VERTEX_SHADER or FRAGMENT_SHADER\n * @param vertexSrc {string|string[]} The vertex shader source as an array of strings.\n * @return {WebGLShader} the shader\n */\nfunction compileShader(gl, type, src)\n{\n var shader = gl.createShader(type);\n\n gl.shaderSource(shader, src);\n gl.compileShader(shader);\n\n if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS))\n {\n console.warn(src);\n console.error(gl.getShaderInfoLog(shader));\n\n return null;\n }\n\n return shader;\n}\n\n/**\n * @method defaultValue\n * @memberof PIXI.glCore.shader\n * @param type {String} Type of value\n * @param size {Number}\n * @private\n */\nfunction defaultValue(type, size)\n{\n switch (type)\n {\n case 'float':\n return 0;\n\n case 'vec2':\n return new Float32Array(2 * size);\n\n case 'vec3':\n return new Float32Array(3 * size);\n\n case 'vec4':\n return new Float32Array(4 * size);\n\n case 'int':\n case 'sampler2D':\n case 'sampler2DArray':\n return 0;\n\n case 'ivec2':\n return new Int32Array(2 * size);\n\n case 'ivec3':\n return new Int32Array(3 * size);\n\n case 'ivec4':\n return new Int32Array(4 * size);\n\n case 'bool':\n return false;\n\n case 'bvec2':\n\n return booleanArray(2 * size);\n\n case 'bvec3':\n return booleanArray(3 * size);\n\n case 'bvec4':\n return booleanArray(4 * size);\n\n case 'mat2':\n return new Float32Array([1, 0,\n 0, 1]);\n\n case 'mat3':\n return new Float32Array([1, 0, 0,\n 0, 1, 0,\n 0, 0, 1]);\n\n case 'mat4':\n return new Float32Array([1, 0, 0, 0,\n 0, 1, 0, 0,\n 0, 0, 1, 0,\n 0, 0, 0, 1]);\n }\n\n return null;\n}\n\nfunction booleanArray(size)\n{\n var array = new Array(size);\n\n for (var i = 0; i < array.length; i++)\n {\n array[i] = false;\n }\n\n return array;\n}\n\nvar unknownContext = {};\nvar context = unknownContext;\n\n/**\n * returns a little WebGL context to use for program inspection.\n *\n * @static\n * @private\n * @returns {webGL-context} a gl context to test with\n */\nfunction getTestContext()\n{\n if (context === unknownContext || context.isContextLost())\n {\n var canvas = document.createElement('canvas');\n\n var gl;\n\n if (settings.PREFER_ENV >= ENV.WEBGL2)\n {\n gl = canvas.getContext('webgl2', {});\n }\n\n if (!gl)\n {\n gl = canvas.getContext('webgl', {})\n || canvas.getContext('experimental-webgl', {});\n\n if (!gl)\n {\n // fail, not able to get a context\n gl = null;\n }\n else\n {\n // for shader testing..\n gl.getExtension('WEBGL_draw_buffers');\n }\n }\n\n context = gl;\n }\n\n return context;\n}\n\nvar maxFragmentPrecision;\n\nfunction getMaxFragmentPrecision()\n{\n if (!maxFragmentPrecision)\n {\n maxFragmentPrecision = PRECISION.MEDIUM;\n var gl = getTestContext();\n\n if (gl)\n {\n if (gl.getShaderPrecisionFormat)\n {\n var shaderFragment = gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT);\n\n maxFragmentPrecision = shaderFragment.precision ? PRECISION.HIGH : PRECISION.MEDIUM;\n }\n }\n }\n\n return maxFragmentPrecision;\n}\n\n/**\n * Sets the float precision on the shader, ensuring the device supports the request precision.\n * If the precision is already present, it just ensures that the device is able to handle it.\n *\n * @private\n * @param {string} src - The shader source\n * @param {string} requestedPrecision - The request float precision of the shader. Options are 'lowp', 'mediump' or 'highp'.\n * @param {string} maxSupportedPrecision - The maximum precision the shader supports.\n *\n * @return {string} modified shader source\n */\nfunction setPrecision(src, requestedPrecision, maxSupportedPrecision)\n{\n if (src.substring(0, 9) !== 'precision')\n {\n // no precision supplied, so PixiJS will add the requested level.\n var precision = requestedPrecision;\n\n // If highp is requested but not supported, downgrade precision to a level all devices support.\n if (requestedPrecision === PRECISION.HIGH && maxSupportedPrecision !== PRECISION.HIGH)\n {\n precision = PRECISION.MEDIUM;\n }\n\n return (\"precision \" + precision + \" float;\\n\" + src);\n }\n else if (maxSupportedPrecision !== PRECISION.HIGH && src.substring(0, 15) === 'precision highp')\n {\n // precision was supplied, but at a level this device does not support, so downgrading to mediump.\n return src.replace('precision highp', 'precision mediump');\n }\n\n return src;\n}\n\nvar GLSL_TO_SIZE = {\n float: 1,\n vec2: 2,\n vec3: 3,\n vec4: 4,\n\n int: 1,\n ivec2: 2,\n ivec3: 3,\n ivec4: 4,\n\n bool: 1,\n bvec2: 2,\n bvec3: 3,\n bvec4: 4,\n\n mat2: 4,\n mat3: 9,\n mat4: 16,\n\n sampler2D: 1,\n};\n\n/**\n * @private\n * @method mapSize\n * @memberof PIXI.glCore.shader\n * @param type {String}\n * @return {Number}\n */\nfunction mapSize(type)\n{\n return GLSL_TO_SIZE[type];\n}\n\nvar GL_TABLE = null;\n\nvar GL_TO_GLSL_TYPES = {\n FLOAT: 'float',\n FLOAT_VEC2: 'vec2',\n FLOAT_VEC3: 'vec3',\n FLOAT_VEC4: 'vec4',\n\n INT: 'int',\n INT_VEC2: 'ivec2',\n INT_VEC3: 'ivec3',\n INT_VEC4: 'ivec4',\n\n BOOL: 'bool',\n BOOL_VEC2: 'bvec2',\n BOOL_VEC3: 'bvec3',\n BOOL_VEC4: 'bvec4',\n\n FLOAT_MAT2: 'mat2',\n FLOAT_MAT3: 'mat3',\n FLOAT_MAT4: 'mat4',\n\n SAMPLER_2D: 'sampler2D',\n SAMPLER_CUBE: 'samplerCube',\n SAMPLER_2D_ARRAY: 'sampler2DArray',\n};\n\nfunction mapType(gl, type)\n{\n if (!GL_TABLE)\n {\n var typeNames = Object.keys(GL_TO_GLSL_TYPES);\n\n GL_TABLE = {};\n\n for (var i = 0; i < typeNames.length; ++i)\n {\n var tn = typeNames[i];\n\n GL_TABLE[gl[tn]] = GL_TO_GLSL_TYPES[tn];\n }\n }\n\n return GL_TABLE[type];\n}\n\n// cv = CachedValue\n// v = value\n// ud = uniformData\n// uv = uniformValue\n// l = location\nvar GLSL_TO_SINGLE_SETTERS_CACHED = {\n\n float: \"\\n if(cv !== v)\\n {\\n cv.v = v;\\n gl.uniform1f(location, v)\\n }\",\n\n vec2: \"\\n if(cv[0] !== v[0] || cv[1] !== v[1])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n gl.uniform2f(location, v[0], v[1])\\n }\",\n\n vec3: \"\\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n cv[2] = v[2];\\n\\n gl.uniform3f(location, v[0], v[1], v[2])\\n }\",\n\n vec4: 'gl.uniform4f(location, v[0], v[1], v[2], v[3])',\n\n int: 'gl.uniform1i(location, v)',\n ivec2: 'gl.uniform2i(location, v[0], v[1])',\n ivec3: 'gl.uniform3i(location, v[0], v[1], v[2])',\n ivec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])',\n\n bool: 'gl.uniform1i(location, v)',\n bvec2: 'gl.uniform2i(location, v[0], v[1])',\n bvec3: 'gl.uniform3i(location, v[0], v[1], v[2])',\n bvec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])',\n\n mat2: 'gl.uniformMatrix2fv(location, false, v)',\n mat3: 'gl.uniformMatrix3fv(location, false, v)',\n mat4: 'gl.uniformMatrix4fv(location, false, v)',\n\n sampler2D: 'gl.uniform1i(location, v)',\n samplerCube: 'gl.uniform1i(location, v)',\n sampler2DArray: 'gl.uniform1i(location, v)',\n};\n\nvar GLSL_TO_ARRAY_SETTERS = {\n\n float: \"gl.uniform1fv(location, v)\",\n\n vec2: \"gl.uniform2fv(location, v)\",\n vec3: \"gl.uniform3fv(location, v)\",\n vec4: 'gl.uniform4fv(location, v)',\n\n mat4: 'gl.uniformMatrix4fv(location, false, v)',\n mat3: 'gl.uniformMatrix3fv(location, false, v)',\n mat2: 'gl.uniformMatrix2fv(location, false, v)',\n\n int: 'gl.uniform1iv(location, v)',\n ivec2: 'gl.uniform2iv(location, v)',\n ivec3: 'gl.uniform3iv(location, v)',\n ivec4: 'gl.uniform4iv(location, v)',\n\n bool: 'gl.uniform1iv(location, v)',\n bvec2: 'gl.uniform2iv(location, v)',\n bvec3: 'gl.uniform3iv(location, v)',\n bvec4: 'gl.uniform4iv(location, v)',\n\n sampler2D: 'gl.uniform1iv(location, v)',\n samplerCube: 'gl.uniform1iv(location, v)',\n sampler2DArray: 'gl.uniform1iv(location, v)',\n};\n\nfunction generateUniformsSync(group, uniformData)\n{\n var textureCount = 0;\n var func = \"var v = null;\\n var cv = null\\n var gl = renderer.gl\";\n\n for (var i in group.uniforms)\n {\n var data = uniformData[i];\n\n if (!data)\n {\n if (group.uniforms[i].group)\n {\n func += \"\\n renderer.shader.syncUniformGroup(uv.\" + i + \");\\n \";\n }\n\n continue;\n }\n\n // TODO && uniformData[i].value !== 0 <-- do we still need this?\n if (data.type === 'float' && data.size === 1)\n {\n func += \"\\n if(uv.\" + i + \" !== ud.\" + i + \".value)\\n {\\n ud.\" + i + \".value = uv.\" + i + \"\\n gl.uniform1f(ud.\" + i + \".location, uv.\" + i + \")\\n }\\n\";\n }\n /* eslint-disable max-len */\n else if ((data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray)\n /* eslint-disable max-len */\n {\n func += \"\\n renderer.texture.bind(uv.\" + i + \", \" + textureCount + \");\\n\\n if(ud.\" + i + \".value !== \" + textureCount + \")\\n {\\n ud.\" + i + \".value = \" + textureCount + \";\\n gl.uniform1i(ud.\" + i + \".location, \" + textureCount + \");\\n; // eslint-disable-line max-len\\n }\\n\";\n\n textureCount++;\n }\n else if (data.type === 'mat3' && data.size === 1)\n {\n if (group.uniforms[i].a !== undefined)\n {\n // TODO and some smart caching dirty ids here!\n func += \"\\n gl.uniformMatrix3fv(ud.\" + i + \".location, false, uv.\" + i + \".toArray(true));\\n \\n\";\n }\n else\n {\n func += \"\\n gl.uniformMatrix3fv(ud.\" + i + \".location, false, uv.\" + i + \");\\n \\n\";\n }\n }\n else if (data.type === 'vec2' && data.size === 1)\n {\n // TODO - do we need both here?\n // maybe we can get away with only using points?\n if (group.uniforms[i].x !== undefined)\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v.x || cv[1] !== v.y)\\n {\\n cv[0] = v.x;\\n cv[1] = v.y;\\n gl.uniform2f(ud.\" + i + \".location, v.x, v.y);\\n }\\n\";\n }\n else\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v[0] || cv[1] !== v[1])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n gl.uniform2f(ud.\" + i + \".location, v[0], v[1]);\\n }\\n \\n\";\n }\n }\n else if (data.type === 'vec4' && data.size === 1)\n {\n // TODO - do we need both here?\n // maybe we can get away with only using points?\n if (group.uniforms[i].width !== undefined)\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v.x || cv[1] !== v.y || cv[2] !== v.width || cv[3] !== v.height)\\n {\\n cv[0] = v.x;\\n cv[1] = v.y;\\n cv[2] = v.width;\\n cv[3] = v.height;\\n gl.uniform4f(ud.\" + i + \".location, v.x, v.y, v.width, v.height)\\n }\\n\";\n }\n else\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2] || cv[3] !== v[3])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n cv[2] = v[2];\\n cv[3] = v[3];\\n\\n gl.uniform4f(ud.\" + i + \".location, v[0], v[1], v[2], v[3])\\n }\\n \\n\";\n }\n }\n else\n {\n var templateType = (data.size === 1) ? GLSL_TO_SINGLE_SETTERS_CACHED : GLSL_TO_ARRAY_SETTERS;\n\n var template = templateType[data.type].replace('location', (\"ud.\" + i + \".location\"));\n\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n \" + template + \";\\n\";\n }\n }\n\n return new Function('ud', 'uv', 'renderer', func); // eslint-disable-line no-new-func\n}\n\nvar fragTemplate = [\n 'precision mediump float;',\n 'void main(void){',\n 'float test = 0.1;',\n '%forloop%',\n 'gl_FragColor = vec4(0.0);',\n '}' ].join('\\n');\n\nfunction checkMaxIfStatementsInShader(maxIfs, gl)\n{\n if (maxIfs === 0)\n {\n throw new Error('Invalid value of `0` passed to `checkMaxIfStatementsInShader`');\n }\n\n var shader = gl.createShader(gl.FRAGMENT_SHADER);\n\n while (true) // eslint-disable-line no-constant-condition\n {\n var fragmentSrc = fragTemplate.replace(/%forloop%/gi, generateIfTestSrc(maxIfs));\n\n gl.shaderSource(shader, fragmentSrc);\n gl.compileShader(shader);\n\n if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS))\n {\n maxIfs = (maxIfs / 2) | 0;\n }\n else\n {\n // valid!\n break;\n }\n }\n\n return maxIfs;\n}\n\nfunction generateIfTestSrc(maxIfs)\n{\n var src = '';\n\n for (var i = 0; i < maxIfs; ++i)\n {\n if (i > 0)\n {\n src += '\\nelse ';\n }\n\n if (i < maxIfs - 1)\n {\n src += \"if(test == \" + i + \".0){}\";\n }\n }\n\n return src;\n}\n\n// Cache the result to prevent running this over and over\nvar unsafeEval;\n\n/**\n * Not all platforms allow to generate function code (e.g., `new Function`).\n * this provides the platform-level detection.\n *\n * @private\n * @returns {boolean}\n */\nfunction unsafeEvalSupported()\n{\n if (typeof unsafeEval === 'boolean')\n {\n return unsafeEval;\n }\n\n try\n {\n /* eslint-disable no-new-func */\n var func = new Function('param1', 'param2', 'param3', 'return param1[param2] === param3;');\n /* eslint-enable no-new-func */\n\n unsafeEval = func({ a: 'b' }, 'a', 'b') === true;\n }\n catch (e)\n {\n unsafeEval = false;\n }\n\n return unsafeEval;\n}\n\nvar defaultFragment = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n gl_FragColor *= texture2D(uSampler, vTextureCoord);\\n}\";\n\nvar defaultVertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void){\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n vTextureCoord = aTextureCoord;\\n}\\n\";\n\n// import * as from '../systems/shader/shader';\n\nvar UID$3 = 0;\n\nvar nameCache = {};\n\n/**\n * Helper class to create a shader program.\n *\n * @class\n * @memberof PIXI\n */\nvar Program = function Program(vertexSrc, fragmentSrc, name)\n{\n if ( name === void 0 ) name = 'pixi-shader';\n\n this.id = UID$3++;\n\n /**\n * The vertex shader.\n *\n * @member {string}\n */\n this.vertexSrc = vertexSrc || Program.defaultVertexSrc;\n\n /**\n * The fragment shader.\n *\n * @member {string}\n */\n this.fragmentSrc = fragmentSrc || Program.defaultFragmentSrc;\n\n this.vertexSrc = this.vertexSrc.trim();\n this.fragmentSrc = this.fragmentSrc.trim();\n\n if (this.vertexSrc.substring(0, 8) !== '#version')\n {\n name = name.replace(/\\s+/g, '-');\n\n if (nameCache[name])\n {\n nameCache[name]++;\n name += \"-\" + (nameCache[name]);\n }\n else\n {\n nameCache[name] = 1;\n }\n\n this.vertexSrc = \"#define SHADER_NAME \" + name + \"\\n\" + (this.vertexSrc);\n this.fragmentSrc = \"#define SHADER_NAME \" + name + \"\\n\" + (this.fragmentSrc);\n\n this.vertexSrc = setPrecision(this.vertexSrc, settings.PRECISION_VERTEX, PRECISION.HIGH);\n this.fragmentSrc = setPrecision(this.fragmentSrc, settings.PRECISION_FRAGMENT, getMaxFragmentPrecision());\n }\n\n // currently this does not extract structs only default types\n this.extractData(this.vertexSrc, this.fragmentSrc);\n\n // this is where we store shader references..\n this.glPrograms = {};\n\n this.syncUniforms = null;\n};\n\nvar staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } };\n\n/**\n * Extracts the data for a buy creating a small test program\n * or reading the src directly.\n * @protected\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n */\nProgram.prototype.extractData = function extractData (vertexSrc, fragmentSrc)\n{\n var gl = getTestContext();\n\n if (gl)\n {\n var program = compileProgram(gl, vertexSrc, fragmentSrc);\n\n this.attributeData = this.getAttributeData(program, gl);\n this.uniformData = this.getUniformData(program, gl);\n\n gl.deleteProgram(program);\n }\n else\n {\n this.uniformData = {};\n this.attributeData = {};\n }\n};\n\n/**\n * returns the attribute data from the program\n * @private\n *\n * @param {WebGLProgram} [program] - the WebGL program\n * @param {WebGLRenderingContext} [gl] - the WebGL context\n *\n * @returns {object} the attribute data for this program\n */\nProgram.prototype.getAttributeData = function getAttributeData (program, gl)\n{\n var attributes = {};\n var attributesArray = [];\n\n var totalAttributes = gl.getProgramParameter(program, gl.ACTIVE_ATTRIBUTES);\n\n for (var i = 0; i < totalAttributes; i++)\n {\n var attribData = gl.getActiveAttrib(program, i);\n var type = mapType(gl, attribData.type);\n\n /*eslint-disable */\n var data = {\n type: type,\n name: attribData.name,\n size: mapSize(type),\n location: 0,\n };\n /* eslint-enable */\n\n attributes[attribData.name] = data;\n attributesArray.push(data);\n }\n\n attributesArray.sort(function (a, b) { return (a.name > b.name) ? 1 : -1; }); // eslint-disable-line no-confusing-arrow\n\n for (var i$1 = 0; i$1 < attributesArray.length; i$1++)\n {\n attributesArray[i$1].location = i$1;\n }\n\n return attributes;\n};\n\n/**\n * returns the uniform data from the program\n * @private\n *\n * @param {webGL-program} [program] - the webgl program\n * @param {context} [gl] - the WebGL context\n *\n * @returns {object} the uniform data for this program\n */\nProgram.prototype.getUniformData = function getUniformData (program, gl)\n{\n var uniforms = {};\n\n var totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS);\n\n // TODO expose this as a prop?\n // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$');\n // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$');\n\n for (var i = 0; i < totalUniforms; i++)\n {\n var uniformData = gl.getActiveUniform(program, i);\n var name = uniformData.name.replace(/\\[.*?\\]/, '');\n\n var isArray = uniformData.name.match(/\\[.*?\\]/, '');\n var type = mapType(gl, uniformData.type);\n\n /*eslint-disable */\n uniforms[name] = {\n type: type,\n size: uniformData.size,\n isArray:isArray,\n value: defaultValue(type, uniformData.size),\n };\n /* eslint-enable */\n }\n\n return uniforms;\n};\n\n/**\n * The default vertex shader source\n *\n * @static\n * @constant\n * @member {string}\n */\nstaticAccessors.defaultVertexSrc.get = function ()\n{\n return defaultVertex;\n};\n\n/**\n * The default fragment shader source\n *\n * @static\n * @constant\n * @member {string}\n */\nstaticAccessors.defaultFragmentSrc.get = function ()\n{\n return defaultFragment;\n};\n\n/**\n * A short hand function to create a program based of a vertex and fragment shader\n * this method will also check to see if there is a cached program.\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones.\n *\n * @returns {PIXI.Program} an shiny new Pixi shader!\n */\nProgram.from = function from (vertexSrc, fragmentSrc, name)\n{\n var key = vertexSrc + fragmentSrc;\n\n var program = ProgramCache[key];\n\n if (!program)\n {\n ProgramCache[key] = program = new Program(vertexSrc, fragmentSrc, name);\n }\n\n return program;\n};\n\nObject.defineProperties( Program, staticAccessors );\n\n/**\n * A helper class for shaders\n *\n * @class\n * @memberof PIXI\n */\nvar Shader = function Shader(program, uniforms)\n{\n /**\n * Program that the shader uses\n *\n * @member {PIXI.Program}\n */\n this.program = program;\n\n // lets see whats been passed in\n // uniforms should be converted to a uniform group\n if (uniforms)\n {\n if (uniforms instanceof UniformGroup)\n {\n this.uniformGroup = uniforms;\n }\n else\n {\n this.uniformGroup = new UniformGroup(uniforms);\n }\n }\n else\n {\n this.uniformGroup = new UniformGroup({});\n }\n\n // time to build some getters and setters!\n // I guess down the line this could sort of generate an instruction list rather than use dirty ids?\n // does the trick for now though!\n for (var i in program.uniformData)\n {\n if (this.uniformGroup.uniforms[i] instanceof Array)\n {\n this.uniformGroup.uniforms[i] = new Float32Array(this.uniformGroup.uniforms[i]);\n }\n }\n};\n\nvar prototypeAccessors$2 = { uniforms: { configurable: true } };\n\n// TODO move to shader system..\nShader.prototype.checkUniformExists = function checkUniformExists (name, group)\n{\n if (group.uniforms[name])\n {\n return true;\n }\n\n for (var i in group.uniforms)\n {\n var uniform = group.uniforms[i];\n\n if (uniform.group)\n {\n if (this.checkUniformExists(name, uniform))\n {\n return true;\n }\n }\n }\n\n return false;\n};\n\nShader.prototype.destroy = function destroy ()\n{\n // usage count on programs?\n // remove if not used!\n this.uniformGroup = null;\n};\n\n/**\n * Shader uniform values, shortcut for `uniformGroup.uniforms`\n * @readonly\n * @member {object}\n */\nprototypeAccessors$2.uniforms.get = function ()\n{\n return this.uniformGroup.uniforms;\n};\n\n/**\n * A short hand function to create a shader based of a vertex and fragment shader\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones.\n *\n * @returns {PIXI.Shader} an shiny new Pixi shader!\n */\nShader.from = function from (vertexSrc, fragmentSrc, uniforms)\n{\n var program = Program.from(vertexSrc, fragmentSrc);\n\n return new Shader(program, uniforms);\n};\n\nObject.defineProperties( Shader.prototype, prototypeAccessors$2 );\n\n/* eslint-disable max-len */\n\nvar BLEND = 0;\nvar OFFSET = 1;\nvar CULLING = 2;\nvar DEPTH_TEST = 3;\nvar WINDING = 4;\n\n/**\n * This is a WebGL state, and is is passed The WebGL StateManager.\n *\n * Each mesh rendered may require WebGL to be in a different state.\n * For example you may want different blend mode or to enable polygon offsets\n *\n * @class\n * @memberof PIXI\n */\nvar State = function State()\n{\n this.data = 0;\n\n this.blendMode = BLEND_MODES.NORMAL;\n this.polygonOffset = 0;\n\n this.blend = true;\n // this.depthTest = true;\n};\n\nvar prototypeAccessors$3 = { blend: { configurable: true },offsets: { configurable: true },culling: { configurable: true },depthTest: { configurable: true },clockwiseFrontFace: { configurable: true },blendMode: { configurable: true },polygonOffset: { configurable: true } };\n\n/**\n * Activates blending of the computed fragment color values\n *\n * @member {boolean}\n */\nprototypeAccessors$3.blend.get = function ()\n{\n return !!(this.data & (1 << BLEND));\n};\n\nprototypeAccessors$3.blend.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << BLEND)) !== value)\n {\n this.data ^= (1 << BLEND);\n }\n};\n\n/**\n * Activates adding an offset to depth values of polygon's fragments\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.offsets.get = function ()\n{\n return !!(this.data & (1 << OFFSET));\n};\n\nprototypeAccessors$3.offsets.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << OFFSET)) !== value)\n {\n this.data ^= (1 << OFFSET);\n }\n};\n\n/**\n * Activates culling of polygons.\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.culling.get = function ()\n{\n return !!(this.data & (1 << CULLING));\n};\n\nprototypeAccessors$3.culling.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << CULLING)) !== value)\n {\n this.data ^= (1 << CULLING);\n }\n};\n\n/**\n * Activates depth comparisons and updates to the depth buffer.\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.depthTest.get = function ()\n{\n return !!(this.data & (1 << DEPTH_TEST));\n};\n\nprototypeAccessors$3.depthTest.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << DEPTH_TEST)) !== value)\n {\n this.data ^= (1 << DEPTH_TEST);\n }\n};\n\n/**\n * Specifies whether or not front or back-facing polygons can be culled.\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.clockwiseFrontFace.get = function ()\n{\n return !!(this.data & (1 << WINDING));\n};\n\nprototypeAccessors$3.clockwiseFrontFace.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << WINDING)) !== value)\n {\n this.data ^= (1 << WINDING);\n }\n};\n\n/**\n * The blend mode to be applied when this state is set. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n * Setting this mode to anything other than NO_BLEND will automatically switch blending on.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\nprototypeAccessors$3.blendMode.get = function ()\n{\n return this._blendMode;\n};\n\nprototypeAccessors$3.blendMode.set = function (value) // eslint-disable-line require-jsdoc\n{\n this.blend = (value !== BLEND_MODES.NONE);\n this._blendMode = value;\n};\n\n/**\n * The polygon offset. Setting this property to anything other than 0 will automatically enable polygon offset fill.\n *\n * @member {number}\n * @default 0\n */\nprototypeAccessors$3.polygonOffset.get = function ()\n{\n return this._polygonOffset;\n};\n\nprototypeAccessors$3.polygonOffset.set = function (value) // eslint-disable-line require-jsdoc\n{\n this.offsets = !!value;\n this._polygonOffset = value;\n};\n\nState.for2d = function for2d ()\n{\n var state = new State();\n\n state.depthTest = false;\n state.blend = true;\n\n return state;\n};\n\nObject.defineProperties( State.prototype, prototypeAccessors$3 );\n\nvar defaultVertex$1 = \"attribute vec2 aVertexPosition;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nuniform vec4 inputSize;\\nuniform vec4 outputFrame;\\n\\nvec4 filterVertexPosition( void )\\n{\\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\\n\\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\\n}\\n\\nvec2 filterTextureCoord( void )\\n{\\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\\n}\\n\\nvoid main(void)\\n{\\n gl_Position = filterVertexPosition();\\n vTextureCoord = filterTextureCoord();\\n}\\n\";\n\nvar defaultFragment$1 = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n gl_FragColor = texture2D(uSampler, vTextureCoord);\\n}\\n\";\n\n/**\n * Filter is a special type of WebGL shader that is applied to the screen.\n *\n * {@link http://pixijs.io/examples/#/filters/blur-filter.js Example} of the\n * {@link PIXI.filters.BlurFilter BlurFilter}.\n *\n * ### Usage\n * Filters can be applied to any DisplayObject or Container.\n * PixiJS' `FilterSystem` renders the container into temporary Framebuffer,\n * then filter renders it to the screen.\n * Multiple filters can be added to the `filters` array property and stacked on each other.\n *\n * ```\n * const filter = new PIXI.Filter(myShaderVert, myShaderFrag, { myUniform: 0.5 });\n * const container = new PIXI.Container();\n * container.filters = [filter];\n * ```\n *\n * ### Previous Version Differences\n *\n * In PixiJS **v3**, a filter was always applied to _whole screen_.\n *\n * In PixiJS **v4**, a filter can be applied _only part of the screen_.\n * Developers had to create a set of uniforms to deal with coordinates.\n *\n * In PixiJS **v5** combines _both approaches_.\n * Developers can use normal coordinates of v3 and then allow filter to use partial Framebuffers,\n * bringing those extra uniforms into account.\n *\n * Also be aware that we have changed default vertex shader, please consult\n * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}.\n *\n * ### Built-in Uniforms\n *\n * PixiJS viewport uses screen (CSS) coordinates, `(0, 0, renderer.screen.width, renderer.screen.height)`,\n * and `projectionMatrix` uniform maps it to the gl viewport.\n *\n * **uSampler**\n *\n * The most important uniform is the input texture that container was rendered into.\n * _Important note: as with all Framebuffers in PixiJS, both input and output are\n * premultiplied by alpha._\n *\n * By default, input normalized coordinates are passed to fragment shader with `vTextureCoord`.\n * Use it to sample the input.\n *\n * ```\n * const fragment = `\n * varying vec2 vTextureCoord;\n * uniform sampler2D uSampler;\n * void main(void)\n * {\n * gl_FragColor = texture2D(uSampler, vTextureCoord);\n * }\n * `;\n *\n * const myFilter = new PIXI.Filter(null, fragment);\n * ```\n *\n * This filter is just one uniform less than {@link PIXI.filters.AlphaFilter AlphaFilter}.\n *\n * **outputFrame**\n *\n * The `outputFrame` holds the rectangle where filter is applied in screen (CSS) coordinates.\n * It's the same as `renderer.screen` for a fullscreen filter.\n * Only a part of `outputFrame.zw` size of temporary Framebuffer is used,\n * `(0, 0, outputFrame.width, outputFrame.height)`,\n *\n * Filters uses this quad to normalized (0-1) space, its passed into `aVertexPosition` attribute.\n * To calculate vertex position in screen space using normalized (0-1) space:\n *\n * ```\n * vec4 filterVertexPosition( void )\n * {\n * vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n * return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n * }\n * ```\n *\n * **inputSize**\n *\n * Temporary framebuffer is different, it can be either the size of screen, either power-of-two.\n * The `inputSize.xy` are size of temporary framebuffer that holds input.\n * The `inputSize.zw` is inverted, it's a shortcut to evade division inside the shader.\n *\n * Set `inputSize.xy = outputFrame.zw` for a fullscreen filter.\n *\n * To calculate input normalized coordinate, you have to map it to filter normalized space.\n * Multiply by `outputFrame.zw` to get input coordinate.\n * Divide by `inputSize.xy` to get input normalized coordinate.\n *\n * ```\n * vec2 filterTextureCoord( void )\n * {\n * return aVertexPosition * (outputFrame.zw * inputSize.zw); // same as /inputSize.xy\n * }\n * ```\n * **resolution**\n *\n * The `resolution` is the ratio of screen (CSS) pixels to real pixels.\n *\n * **inputPixel**\n *\n * `inputPixel.xy` is the size of framebuffer in real pixels, same as `inputSize.xy * resolution`\n * `inputPixel.zw` is inverted `inputPixel.xy`.\n *\n * It's handy for filters that use neighbour pixels, like {@link PIXI.filters.FXAAFilter FXAAFilter}.\n *\n * **inputClamp**\n *\n * If you try to get info from outside of used part of Framebuffer - you'll get undefined behaviour.\n * For displacements, coordinates has to be clamped.\n *\n * The `inputClamp.xy` is left-top pixel center, you may ignore it, because we use left-top part of Framebuffer\n * `inputClamp.zw` is bottom-right pixel center.\n *\n * ```\n * vec4 color = texture2D(uSampler, clamp(modifigedTextureCoord, inputClamp.xy, inputClamp.zw))\n * ```\n * OR\n * ```\n * vec4 color = texture2D(uSampler, min(modifigedTextureCoord, inputClamp.zw))\n * ```\n *\n * ### Additional Information\n *\n * Complete documentation on Filter usage is located in the\n * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}.\n *\n * Since PixiJS only had a handful of built-in filters, additional filters can be downloaded\n * {@link https://github.com/pixijs/pixi-filters here} from the PixiJS Filters repository.\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.Shader\n */\nvar Filter = /*@__PURE__*/(function (Shader) {\n function Filter(vertexSrc, fragmentSrc, uniforms)\n {\n var program = Program.from(vertexSrc || Filter.defaultVertexSrc,\n fragmentSrc || Filter.defaultFragmentSrc);\n\n Shader.call(this, program, uniforms);\n\n /**\n * The padding of the filter. Some filters require extra space to breath such as a blur.\n * Increasing this will add extra width and height to the bounds of the object that the\n * filter is applied to.\n *\n * @member {number}\n */\n this.padding = 0;\n\n /**\n * The resolution of the filter. Setting this to be lower will lower the quality but\n * increase the performance of the filter.\n *\n * @member {number}\n */\n this.resolution = settings.FILTER_RESOLUTION;\n\n /**\n * If enabled is true the filter is applied, if false it will not.\n *\n * @member {boolean}\n */\n this.enabled = true;\n\n /**\n * If enabled, PixiJS will fit the filter area into boundaries for better performance.\n * Switch it off if it does not work for specific shader.\n *\n * @member {boolean}\n */\n this.autoFit = true;\n\n /**\n * Legacy filters use position and uvs from attributes\n * @member {boolean}\n * @readonly\n */\n this.legacy = !!this.program.attributeData.aTextureCoord;\n\n /**\n * The WebGL state the filter requires to render\n * @member {PIXI.State}\n */\n this.state = new State();\n }\n\n if ( Shader ) Filter.__proto__ = Shader;\n Filter.prototype = Object.create( Shader && Shader.prototype );\n Filter.prototype.constructor = Filter;\n\n var prototypeAccessors = { blendMode: { configurable: true } };\n var staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } };\n\n /**\n * Applies the filter\n *\n * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it\n * @param {object} [currentState] - It's current state of filter.\n * There are some useful properties in the currentState :\n * target, filters, sourceFrame, destinationFrame, renderTarget, resolution\n */\n Filter.prototype.apply = function apply (filterManager, input, output, clear, currentState)\n {\n // do as you please!\n\n filterManager.applyFilter(this, input, output, clear, currentState);\n\n // or just do a regular render..\n };\n\n /**\n * Sets the blendmode of the filter\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n */\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n prototypeAccessors.blendMode.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.state.blendMode = value;\n };\n\n /**\n * The default vertex shader source\n *\n * @static\n * @type {string}\n * @constant\n */\n staticAccessors.defaultVertexSrc.get = function ()\n {\n return defaultVertex$1;\n };\n\n /**\n * The default fragment shader source\n *\n * @static\n * @type {string}\n * @constant\n */\n staticAccessors.defaultFragmentSrc.get = function ()\n {\n return defaultFragment$1;\n };\n\n Object.defineProperties( Filter.prototype, prototypeAccessors );\n Object.defineProperties( Filter, staticAccessors );\n\n return Filter;\n}(Shader));\n\n/**\n * Used for caching shader IDs\n *\n * @static\n * @type {object}\n * @protected\n */\nFilter.SOURCE_KEY_MAP = {};\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 otherMatrix;\\n\\nvarying vec2 vMaskCoord;\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vMaskCoord;\\nvarying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform sampler2D mask;\\nuniform float alpha;\\nuniform float npmAlpha;\\nuniform vec4 maskClamp;\\n\\nvoid main(void)\\n{\\n float clip = step(3.5,\\n step(maskClamp.x, vMaskCoord.x) +\\n step(maskClamp.y, vMaskCoord.y) +\\n step(vMaskCoord.x, maskClamp.z) +\\n step(vMaskCoord.y, maskClamp.w));\\n\\n vec4 original = texture2D(uSampler, vTextureCoord);\\n vec4 masky = texture2D(mask, vMaskCoord);\\n float alphaMul = 1.0 - npmAlpha * (1.0 - masky.a);\\n\\n original *= (alphaMul * masky.r * alpha * clip);\\n\\n gl_FragColor = original;\\n}\\n\";\n\nvar tempMat = new Matrix();\n\n/**\n * Class controls uv mapping from Texture normal space to BaseTexture normal space.\n *\n * Takes `trim` and `rotate` into account. May contain clamp settings for Meshes and TilingSprite.\n *\n * Can be used in Texture `uvMatrix` field, or separately, you can use different clamp settings on the same texture.\n * If you want to add support for texture region of certain feature or filter, that's what you're looking for.\n *\n * Takes track of Texture changes through `_lastTextureID` private field.\n * Use `update()` method call to track it from outside.\n *\n * @see PIXI.Texture\n * @see PIXI.Mesh\n * @see PIXI.TilingSprite\n * @class\n * @memberof PIXI\n */\nvar TextureMatrix = function TextureMatrix(texture, clampMargin)\n{\n this._texture = texture;\n\n /**\n * Matrix operation that converts texture region coords to texture coords\n * @member {PIXI.Matrix}\n * @readonly\n */\n this.mapCoord = new Matrix();\n\n /**\n * Clamp region for normalized coords, left-top pixel center in xy , bottom-right in zw.\n * Calculated based on clampOffset.\n * @member {Float32Array}\n * @readonly\n */\n this.uClampFrame = new Float32Array(4);\n\n /**\n * Normalized clamp offset.\n * Calculated based on clampOffset.\n * @member {Float32Array}\n * @readonly\n */\n this.uClampOffset = new Float32Array(2);\n\n /**\n * Tracks Texture frame changes\n * @member {number}\n * @protected\n */\n this._updateID = -1;\n\n /**\n * Changes frame clamping\n * Works with TilingSprite and Mesh\n * Change to 1.5 if you texture has repeated right and bottom lines, that leads to smoother borders\n *\n * @default 0\n * @member {number}\n */\n this.clampOffset = 0;\n\n /**\n * Changes frame clamping\n * Works with TilingSprite and Mesh\n * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas\n *\n * @default 0.5\n * @member {number}\n */\n this.clampMargin = (typeof clampMargin === 'undefined') ? 0.5 : clampMargin;\n\n /**\n * If texture size is the same as baseTexture\n * @member {boolean}\n * @default false\n * @readonly\n */\n this.isSimple = false;\n};\n\nvar prototypeAccessors$4 = { texture: { configurable: true } };\n\n/**\n * texture property\n * @member {PIXI.Texture}\n */\nprototypeAccessors$4.texture.get = function ()\n{\n return this._texture;\n};\n\nprototypeAccessors$4.texture.set = function (value) // eslint-disable-line require-jsdoc\n{\n this._texture = value;\n this._updateID = -1;\n};\n\n/**\n * Multiplies uvs array to transform\n * @param {Float32Array} uvs mesh uvs\n * @param {Float32Array} [out=uvs] output\n * @returns {Float32Array} output\n */\nTextureMatrix.prototype.multiplyUvs = function multiplyUvs (uvs, out)\n{\n if (out === undefined)\n {\n out = uvs;\n }\n\n var mat = this.mapCoord;\n\n for (var i = 0; i < uvs.length; i += 2)\n {\n var x = uvs[i];\n var y = uvs[i + 1];\n\n out[i] = (x * mat.a) + (y * mat.c) + mat.tx;\n out[i + 1] = (x * mat.b) + (y * mat.d) + mat.ty;\n }\n\n return out;\n};\n\n/**\n * updates matrices if texture was changed\n * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case\n * @returns {boolean} whether or not it was updated\n */\nTextureMatrix.prototype.update = function update (forceUpdate)\n{\n var tex = this._texture;\n\n if (!tex || !tex.valid)\n {\n return false;\n }\n\n if (!forceUpdate\n && this._updateID === tex._updateID)\n {\n return false;\n }\n\n this._updateID = tex._updateID;\n\n var uvs = tex._uvs;\n\n this.mapCoord.set(uvs.x1 - uvs.x0, uvs.y1 - uvs.y0, uvs.x3 - uvs.x0, uvs.y3 - uvs.y0, uvs.x0, uvs.y0);\n\n var orig = tex.orig;\n var trim = tex.trim;\n\n if (trim)\n {\n tempMat.set(orig.width / trim.width, 0, 0, orig.height / trim.height,\n -trim.x / trim.width, -trim.y / trim.height);\n this.mapCoord.append(tempMat);\n }\n\n var texBase = tex.baseTexture;\n var frame = this.uClampFrame;\n var margin = this.clampMargin / texBase.resolution;\n var offset = this.clampOffset;\n\n frame[0] = (tex._frame.x + margin + offset) / texBase.width;\n frame[1] = (tex._frame.y + margin + offset) / texBase.height;\n frame[2] = (tex._frame.x + tex._frame.width - margin + offset) / texBase.width;\n frame[3] = (tex._frame.y + tex._frame.height - margin + offset) / texBase.height;\n this.uClampOffset[0] = offset / texBase.realWidth;\n this.uClampOffset[1] = offset / texBase.realHeight;\n\n this.isSimple = tex._frame.width === texBase.width\n && tex._frame.height === texBase.height\n && tex.rotate === 0;\n\n return true;\n};\n\nObject.defineProperties( TextureMatrix.prototype, prototypeAccessors$4 );\n\n/**\n * This handles a Sprite acting as a mask, as opposed to a Graphic.\n *\n * WebGL only.\n *\n * @class\n * @extends PIXI.Filter\n * @memberof PIXI\n */\nvar SpriteMaskFilter = /*@__PURE__*/(function (Filter) {\n function SpriteMaskFilter(sprite)\n {\n var maskMatrix = new Matrix();\n\n Filter.call(this, vertex, fragment);\n\n sprite.renderable = false;\n\n /**\n * Sprite mask\n * @member {PIXI.Sprite}\n */\n this.maskSprite = sprite;\n\n /**\n * Mask matrix\n * @member {PIXI.Matrix}\n */\n this.maskMatrix = maskMatrix;\n }\n\n if ( Filter ) SpriteMaskFilter.__proto__ = Filter;\n SpriteMaskFilter.prototype = Object.create( Filter && Filter.prototype );\n SpriteMaskFilter.prototype.constructor = SpriteMaskFilter;\n\n /**\n * Applies the filter\n *\n * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it.\n */\n SpriteMaskFilter.prototype.apply = function apply (filterManager, input, output, clear)\n {\n var maskSprite = this.maskSprite;\n var tex = this.maskSprite.texture;\n\n if (!tex.valid)\n {\n return;\n }\n if (!tex.transform)\n {\n // margin = 0.0, let it bleed a bit, shader code becomes easier\n // assuming that atlas textures were made with 1-pixel padding\n tex.transform = new TextureMatrix(tex, 0.0);\n }\n tex.transform.update();\n\n this.uniforms.npmAlpha = tex.baseTexture.premultiplyAlpha ? 0.0 : 1.0;\n this.uniforms.mask = tex;\n // get _normalized sprite texture coords_ and convert them to _normalized atlas texture coords_ with `prepend`\n this.uniforms.otherMatrix = filterManager.calculateSpriteMatrix(this.maskMatrix, maskSprite)\n .prepend(tex.transform.mapCoord);\n this.uniforms.alpha = maskSprite.worldAlpha;\n this.uniforms.maskClamp = tex.transform.uClampFrame;\n\n filterManager.applyFilter(this, input, output, clear);\n };\n\n return SpriteMaskFilter;\n}(Filter));\n\n/**\n * System plugin to the renderer to manage masks.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar MaskSystem = /*@__PURE__*/(function (System) {\n function MaskSystem(renderer)\n {\n System.call(this, renderer);\n\n // TODO - we don't need both!\n /**\n * `true` if current pushed masked is scissor\n * @member {boolean}\n * @readonly\n */\n this.scissor = false;\n\n /**\n * Mask data\n * @member {PIXI.Graphics}\n * @readonly\n */\n this.scissorData = null;\n\n /**\n * Target to mask\n * @member {PIXI.DisplayObject}\n * @readonly\n */\n this.scissorRenderTarget = null;\n\n /**\n * Enable scissor\n * @member {boolean}\n * @readonly\n */\n this.enableScissor = false;\n\n /**\n * Pool of used sprite mask filters\n * @member {PIXI.SpriteMaskFilter[]}\n * @readonly\n */\n this.alphaMaskPool = [];\n\n /**\n * Current index of alpha mask pool\n * @member {number}\n * @default 0\n * @readonly\n */\n this.alphaMaskIndex = 0;\n }\n\n if ( System ) MaskSystem.__proto__ = System;\n MaskSystem.prototype = Object.create( System && System.prototype );\n MaskSystem.prototype.constructor = MaskSystem;\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.DisplayObject} target - Display Object to push the mask to\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.push = function push (target, maskData)\n {\n // TODO the root check means scissor rect will not\n // be used on render textures more info here:\n // https://github.com/pixijs/pixi.js/pull/3545\n\n if (maskData.isSprite)\n {\n this.pushSpriteMask(target, maskData);\n }\n else if (this.enableScissor\n && !this.scissor\n && this.renderer._activeRenderTarget.root\n && !this.renderer.stencil.stencilMaskStack.length\n && maskData.isFastRect())\n {\n var matrix = maskData.worldTransform;\n\n var rot = Math.atan2(matrix.b, matrix.a);\n\n // use the nearest degree!\n rot = Math.round(rot * (180 / Math.PI));\n\n if (rot % 90)\n {\n this.pushStencilMask(maskData);\n }\n else\n {\n this.pushScissorMask(target, maskData);\n }\n }\n else\n {\n this.pushStencilMask(maskData);\n }\n };\n\n /**\n * Removes the last mask from the mask stack and doesn't return it.\n *\n * @param {PIXI.DisplayObject} target - Display Object to pop the mask from\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pop = function pop (target, maskData)\n {\n if (maskData.isSprite)\n {\n this.popSpriteMask(target, maskData);\n }\n else if (this.enableScissor && !this.renderer.stencil.stencilMaskStack.length)\n {\n this.popScissorMask(target, maskData);\n }\n else\n {\n this.popStencilMask(target, maskData);\n }\n };\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.RenderTexture} target - Display Object to push the sprite mask to\n * @param {PIXI.Sprite} maskData - Sprite to be used as the mask\n */\n MaskSystem.prototype.pushSpriteMask = function pushSpriteMask (target, maskData)\n {\n var alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex];\n\n if (!alphaMaskFilter)\n {\n alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex] = [new SpriteMaskFilter(maskData)];\n }\n\n alphaMaskFilter[0].resolution = this.renderer.resolution;\n alphaMaskFilter[0].maskSprite = maskData;\n\n var stashFilterArea = target.filterArea;\n\n target.filterArea = maskData.getBounds(true);\n this.renderer.filter.push(target, alphaMaskFilter);\n target.filterArea = stashFilterArea;\n\n this.alphaMaskIndex++;\n };\n\n /**\n * Removes the last filter from the filter stack and doesn't return it.\n *\n */\n MaskSystem.prototype.popSpriteMask = function popSpriteMask ()\n {\n this.renderer.filter.pop();\n this.alphaMaskIndex--;\n };\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pushStencilMask = function pushStencilMask (maskData)\n {\n this.renderer.batch.flush();\n this.renderer.stencil.pushStencil(maskData);\n };\n\n /**\n * Removes the last filter from the filter stack and doesn't return it.\n *\n */\n MaskSystem.prototype.popStencilMask = function popStencilMask ()\n {\n // this.renderer.currentRenderer.stop();\n this.renderer.stencil.popStencil();\n };\n\n /**\n *\n * @param {PIXI.DisplayObject} target - Display Object to push the mask to\n * @param {PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pushScissorMask = function pushScissorMask (target, maskData)\n {\n maskData.renderable = true;\n\n var renderTarget = this.renderer._activeRenderTarget;\n\n var bounds = maskData.getBounds();\n\n bounds.fit(renderTarget.size);\n maskData.renderable = false;\n\n this.renderer.gl.enable(this.renderer.gl.SCISSOR_TEST);\n\n var resolution = this.renderer.resolution;\n\n this.renderer.gl.scissor(\n bounds.x * resolution,\n (renderTarget.root ? renderTarget.size.height - bounds.y - bounds.height : bounds.y) * resolution,\n bounds.width * resolution,\n bounds.height * resolution\n );\n\n this.scissorRenderTarget = renderTarget;\n this.scissorData = maskData;\n this.scissor = true;\n };\n\n /**\n * Pop scissor mask\n *\n */\n MaskSystem.prototype.popScissorMask = function popScissorMask ()\n {\n this.scissorRenderTarget = null;\n this.scissorData = null;\n this.scissor = false;\n\n // must be scissor!\n var ref = this.renderer;\n var gl = ref.gl;\n\n gl.disable(gl.SCISSOR_TEST);\n };\n\n return MaskSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage stencils (used for masks).\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar StencilSystem = /*@__PURE__*/(function (System) {\n function StencilSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * The mask stack\n * @member {PIXI.Graphics[]}\n */\n this.stencilMaskStack = [];\n }\n\n if ( System ) StencilSystem.__proto__ = System;\n StencilSystem.prototype = Object.create( System && System.prototype );\n StencilSystem.prototype.constructor = StencilSystem;\n\n /**\n * Changes the mask stack that is used by this System.\n *\n * @param {PIXI.Graphics[]} stencilMaskStack - The mask stack\n */\n StencilSystem.prototype.setMaskStack = function setMaskStack (stencilMaskStack)\n {\n var gl = this.renderer.gl;\n var curStackLen = this.stencilMaskStack.length;\n\n this.stencilMaskStack = stencilMaskStack;\n if (stencilMaskStack.length !== curStackLen)\n {\n if (stencilMaskStack.length === 0)\n {\n gl.disable(gl.STENCIL_TEST);\n }\n else\n {\n gl.enable(gl.STENCIL_TEST);\n this._useCurrent();\n }\n }\n };\n\n /**\n * Applies the Mask and adds it to the current stencil stack. @alvin\n *\n * @param {PIXI.Graphics} graphics - The mask\n */\n StencilSystem.prototype.pushStencil = function pushStencil (graphics)\n {\n var gl = this.renderer.gl;\n var prevMaskCount = this.stencilMaskStack.length;\n\n if (prevMaskCount === 0)\n {\n // force use stencil texture in current framebuffer\n this.renderer.framebuffer.forceStencil();\n gl.enable(gl.STENCIL_TEST);\n }\n\n this.stencilMaskStack.push(graphics);\n\n // Increment the reference stencil value where the new mask overlaps with the old ones.\n gl.colorMask(false, false, false, false);\n gl.stencilFunc(gl.EQUAL, prevMaskCount, this._getBitwiseMask());\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.INCR);\n\n graphics.renderable = true;\n graphics.render(this.renderer);\n this.renderer.batch.flush();\n graphics.renderable = false;\n\n this._useCurrent();\n };\n\n /**\n * Removes the last mask from the stencil stack. @alvin\n */\n StencilSystem.prototype.popStencil = function popStencil ()\n {\n var gl = this.renderer.gl;\n var graphics = this.stencilMaskStack.pop();\n\n if (this.stencilMaskStack.length === 0)\n {\n // the stack is empty!\n gl.disable(gl.STENCIL_TEST);\n gl.clear(gl.STENCIL_BUFFER_BIT);\n gl.clearStencil(0);\n }\n else\n {\n // Decrement the reference stencil value where the popped mask overlaps with the other ones\n gl.colorMask(false, false, false, false);\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.DECR);\n\n graphics.renderable = true;\n graphics.render(this.renderer);\n this.renderer.batch.flush();\n graphics.renderable = false;\n\n this._useCurrent();\n }\n };\n\n /**\n * Setup renderer to use the current stencil data.\n * @private\n */\n StencilSystem.prototype._useCurrent = function _useCurrent ()\n {\n var gl = this.renderer.gl;\n\n gl.colorMask(true, true, true, true);\n gl.stencilFunc(gl.EQUAL, this.stencilMaskStack.length, this._getBitwiseMask());\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.KEEP);\n };\n\n /**\n * Fill 1s equal to the number of acitve stencil masks.\n * @private\n * @return {number} The bitwise mask.\n */\n StencilSystem.prototype._getBitwiseMask = function _getBitwiseMask ()\n {\n return (1 << this.stencilMaskStack.length) - 1;\n };\n\n /**\n * Destroys the mask stack.\n *\n */\n StencilSystem.prototype.destroy = function destroy ()\n {\n System.prototype.destroy.call(this, this);\n\n this.stencilMaskStack = null;\n };\n\n return StencilSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage the projection matrix.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\n\nvar ProjectionSystem = /*@__PURE__*/(function (System) {\n function ProjectionSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.destinationFrame = null;\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.sourceFrame = null;\n\n /**\n * Default destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.defaultFrame = null;\n\n /**\n * Project matrix\n * @member {PIXI.Matrix}\n * @readonly\n */\n this.projectionMatrix = new Matrix();\n\n /**\n * A transform that will be appended to the projection matrix\n * if null, nothing will be applied\n * @member {PIXI.Matrix}\n */\n this.transform = null;\n }\n\n if ( System ) ProjectionSystem.__proto__ = System;\n ProjectionSystem.prototype = Object.create( System && System.prototype );\n ProjectionSystem.prototype.constructor = ProjectionSystem;\n\n /**\n * Updates the projection matrix based on a projection frame (which is a rectangle)\n *\n * @param {PIXI.Rectangle} destinationFrame - The destination frame.\n * @param {PIXI.Rectangle} sourceFrame - The source frame.\n * @param {Number} resolution - Resolution\n * @param {boolean} root - If is root\n */\n ProjectionSystem.prototype.update = function update (destinationFrame, sourceFrame, resolution, root)\n {\n this.destinationFrame = destinationFrame || this.destinationFrame || this.defaultFrame;\n this.sourceFrame = sourceFrame || this.sourceFrame || destinationFrame;\n\n this.calculateProjection(this.destinationFrame, this.sourceFrame, resolution, root);\n\n if (this.transform)\n {\n this.projectionMatrix.append(this.transform);\n }\n\n var renderer = this.renderer;\n\n renderer.globalUniforms.uniforms.projectionMatrix = this.projectionMatrix;\n renderer.globalUniforms.update();\n\n // this will work for now\n // but would be sweet to stick and even on the global uniforms..\n if (renderer.shader.shader)\n {\n renderer.shader.syncUniformGroup(renderer.shader.shader.uniforms.globals);\n }\n };\n\n /**\n * Updates the projection matrix based on a projection frame (which is a rectangle)\n *\n * @param {PIXI.Rectangle} destinationFrame - The destination frame.\n * @param {PIXI.Rectangle} sourceFrame - The source frame.\n * @param {Number} resolution - Resolution\n * @param {boolean} root - If is root\n */\n ProjectionSystem.prototype.calculateProjection = function calculateProjection (destinationFrame, sourceFrame, resolution, root)\n {\n var pm = this.projectionMatrix;\n\n // I don't think we will need this line..\n // pm.identity();\n\n if (!root)\n {\n pm.a = (1 / destinationFrame.width * 2) * resolution;\n pm.d = (1 / destinationFrame.height * 2) * resolution;\n\n pm.tx = -1 - (sourceFrame.x * pm.a);\n pm.ty = -1 - (sourceFrame.y * pm.d);\n }\n else\n {\n pm.a = (1 / destinationFrame.width * 2) * resolution;\n pm.d = (-1 / destinationFrame.height * 2) * resolution;\n\n pm.tx = -1 - (sourceFrame.x * pm.a);\n pm.ty = 1 - (sourceFrame.y * pm.d);\n }\n };\n\n /**\n * Sets the transform of the active render target to the given matrix\n *\n * @param {PIXI.Matrix} matrix - The transformation matrix\n */\n ProjectionSystem.prototype.setTransform = function setTransform ()// matrix)\n {\n // this._activeRenderTarget.transform = matrix;\n };\n\n return ProjectionSystem;\n}(System));\n\nvar tempRect = new Rectangle();\n\n/**\n * System plugin to the renderer to manage render textures.\n *\n * Should be added after FramebufferSystem\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\n\nvar RenderTextureSystem = /*@__PURE__*/(function (System) {\n function RenderTextureSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * The clear background color as rgba\n * @member {number[]}\n */\n this.clearColor = renderer._backgroundColorRgba;\n\n // TODO move this property somewhere else!\n /**\n * List of masks for the StencilSystem\n * @member {PIXI.Graphics[]}\n * @readonly\n */\n this.defaultMaskStack = [];\n\n // empty render texture?\n /**\n * Render texture\n * @member {PIXI.RenderTexture}\n * @readonly\n */\n this.current = null;\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.sourceFrame = new Rectangle();\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.destinationFrame = new Rectangle();\n }\n\n if ( System ) RenderTextureSystem.__proto__ = System;\n RenderTextureSystem.prototype = Object.create( System && System.prototype );\n RenderTextureSystem.prototype.constructor = RenderTextureSystem;\n\n /**\n * Bind the current render texture\n * @param {PIXI.RenderTexture} [renderTexture] - RenderTexture to bind, by default its `null`, the screen\n * @param {PIXI.Rectangle} [sourceFrame] - part of screen that is mapped to the renderTexture\n * @param {PIXI.Rectangle} [destinationFrame] - part of renderTexture, by default it has the same size as sourceFrame\n */\n RenderTextureSystem.prototype.bind = function bind (renderTexture, sourceFrame, destinationFrame)\n {\n if ( renderTexture === void 0 ) renderTexture = null;\n\n this.current = renderTexture;\n\n var renderer = this.renderer;\n\n var resolution;\n\n if (renderTexture)\n {\n var baseTexture = renderTexture.baseTexture;\n\n resolution = baseTexture.resolution;\n\n if (!destinationFrame)\n {\n tempRect.width = baseTexture.realWidth;\n tempRect.height = baseTexture.realHeight;\n\n destinationFrame = tempRect;\n }\n\n if (!sourceFrame)\n {\n sourceFrame = destinationFrame;\n }\n\n this.renderer.framebuffer.bind(baseTexture.framebuffer, destinationFrame);\n\n this.renderer.projection.update(destinationFrame, sourceFrame, resolution, false);\n this.renderer.stencil.setMaskStack(baseTexture.stencilMaskStack);\n }\n else\n {\n resolution = this.renderer.resolution;\n\n // TODO these validation checks happen deeper down..\n // thing they can be avoided..\n if (!destinationFrame)\n {\n tempRect.width = renderer.width;\n tempRect.height = renderer.height;\n\n destinationFrame = tempRect;\n }\n\n if (!sourceFrame)\n {\n sourceFrame = destinationFrame;\n }\n\n renderer.framebuffer.bind(null, destinationFrame);\n\n // TODO store this..\n this.renderer.projection.update(destinationFrame, sourceFrame, resolution, true);\n this.renderer.stencil.setMaskStack(this.defaultMaskStack);\n }\n\n this.sourceFrame.copyFrom(sourceFrame);\n\n this.destinationFrame.x = destinationFrame.x / resolution;\n this.destinationFrame.y = destinationFrame.y / resolution;\n\n this.destinationFrame.width = destinationFrame.width / resolution;\n this.destinationFrame.height = destinationFrame.height / resolution;\n\n if (sourceFrame === destinationFrame)\n {\n this.sourceFrame.copyFrom(this.destinationFrame);\n }\n };\n\n /**\n * Erases the render texture and fills the drawing area with a colour\n *\n * @param {number[]} [clearColor] - The color as rgba, default to use the renderer backgroundColor\n * @return {PIXI.Renderer} Returns itself.\n */\n RenderTextureSystem.prototype.clear = function clear (clearColor)\n {\n if (this.current)\n {\n clearColor = clearColor || this.current.baseTexture.clearColor;\n }\n else\n {\n clearColor = clearColor || this.clearColor;\n }\n\n this.renderer.framebuffer.clear(clearColor[0], clearColor[1], clearColor[2], clearColor[3]);\n };\n\n RenderTextureSystem.prototype.resize = function resize ()// screenWidth, screenHeight)\n {\n // resize the root only!\n this.bind(null);\n };\n\n /**\n * Resets renderTexture state\n */\n RenderTextureSystem.prototype.reset = function reset ()\n {\n this.bind(null);\n };\n\n return RenderTextureSystem;\n}(System));\n\n/**\n * Helper class to create a WebGL Program\n *\n * @class\n * @memberof PIXI\n */\nvar GLProgram = function GLProgram(program, uniformData)\n{\n /**\n * The shader program\n *\n * @member {WebGLProgram}\n */\n this.program = program;\n\n /**\n * holds the uniform data which contains uniform locations\n * and current uniform values used for caching and preventing unneeded GPU commands\n * @member {Object}\n */\n this.uniformData = uniformData;\n\n /**\n * uniformGroups holds the various upload functions for the shader. Each uniform group\n * and program have a unique upload function generated.\n * @member {Object}\n */\n this.uniformGroups = {};\n};\n\n/**\n * Destroys this program\n */\nGLProgram.prototype.destroy = function destroy ()\n{\n this.uniformData = null;\n this.uniformGroups = null;\n this.program = null;\n};\n\nvar UID$4 = 0;\n\n/**\n * System plugin to the renderer to manage shaders.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar ShaderSystem = /*@__PURE__*/(function (System) {\n function ShaderSystem(renderer)\n {\n System.call(this, renderer);\n\n // Validation check that this environment support `new Function`\n this.systemCheck();\n\n /**\n * The current WebGL rendering context\n *\n * @member {WebGLRenderingContext}\n */\n this.gl = null;\n\n this.shader = null;\n this.program = null;\n\n /**\n * Cache to holds the generated functions. Stored against UniformObjects unique signature\n * @type {Object}\n * @private\n */\n this.cache = {};\n\n this.id = UID$4++;\n }\n\n if ( System ) ShaderSystem.__proto__ = System;\n ShaderSystem.prototype = Object.create( System && System.prototype );\n ShaderSystem.prototype.constructor = ShaderSystem;\n\n /**\n * Overrideable function by `@pixi/unsafe-eval` to silence\n * throwing an error if platform doesn't support unsafe-evals.\n *\n * @private\n */\n ShaderSystem.prototype.systemCheck = function systemCheck ()\n {\n if (!unsafeEvalSupported())\n {\n throw new Error('Current environment does not allow unsafe-eval, '\n + 'please use @pixi/unsafe-eval module to enable support.');\n }\n };\n\n ShaderSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n this.reset();\n };\n\n /**\n * Changes the current shader to the one given in parameter\n *\n * @param {PIXI.Shader} shader - the new shader\n * @param {boolean} dontSync - false if the shader should automatically sync its uniforms.\n * @returns {PIXI.GLProgram} the glProgram that belongs to the shader.\n */\n ShaderSystem.prototype.bind = function bind (shader, dontSync)\n {\n shader.uniforms.globals = this.renderer.globalUniforms;\n\n var program = shader.program;\n var glProgram = program.glPrograms[this.renderer.CONTEXT_UID] || this.generateShader(shader);\n\n this.shader = shader;\n\n // TODO - some current Pixi plugins bypass this.. so it not safe to use yet..\n if (this.program !== program)\n {\n this.program = program;\n this.gl.useProgram(glProgram.program);\n }\n\n if (!dontSync)\n {\n this.syncUniformGroup(shader.uniformGroup);\n }\n\n return glProgram;\n };\n\n /**\n * Uploads the uniforms values to the currently bound shader.\n *\n * @param {object} uniforms - the uniforms values that be applied to the current shader\n */\n ShaderSystem.prototype.setUniforms = function setUniforms (uniforms)\n {\n var shader = this.shader.program;\n var glProgram = shader.glPrograms[this.renderer.CONTEXT_UID];\n\n shader.syncUniforms(glProgram.uniformData, uniforms, this.renderer);\n };\n\n ShaderSystem.prototype.syncUniformGroup = function syncUniformGroup (group)\n {\n var glProgram = this.getglProgram();\n\n if (!group.static || group.dirtyId !== glProgram.uniformGroups[group.id])\n {\n glProgram.uniformGroups[group.id] = group.dirtyId;\n\n this.syncUniforms(group, glProgram);\n }\n };\n\n /**\n * Overrideable by the @pixi/unsafe-eval package to use static\n * syncUnforms instead.\n *\n * @private\n */\n ShaderSystem.prototype.syncUniforms = function syncUniforms (group, glProgram)\n {\n var syncFunc = group.syncUniforms[this.shader.program.id] || this.createSyncGroups(group);\n\n syncFunc(glProgram.uniformData, group.uniforms, this.renderer);\n };\n\n ShaderSystem.prototype.createSyncGroups = function createSyncGroups (group)\n {\n var id = this.getSignature(group, this.shader.program.uniformData);\n\n if (!this.cache[id])\n {\n this.cache[id] = generateUniformsSync(group, this.shader.program.uniformData);\n }\n\n group.syncUniforms[this.shader.program.id] = this.cache[id];\n\n return group.syncUniforms[this.shader.program.id];\n };\n\n /**\n * Takes a uniform group and data and generates a unique signature for them.\n *\n * @param {PIXI.UniformGroup} group the uniform group to get signature of\n * @param {Object} uniformData uniform information generated by the shader\n * @returns {String} Unique signature of the uniform group\n * @private\n */\n ShaderSystem.prototype.getSignature = function getSignature (group, uniformData)\n {\n var uniforms = group.uniforms;\n\n var strings = [];\n\n for (var i in uniforms)\n {\n strings.push(i);\n\n if (uniformData[i])\n {\n strings.push(uniformData[i].type);\n }\n }\n\n return strings.join('-');\n };\n\n /**\n * Returns the underlying GLShade rof the currently bound shader.\n * This can be handy for when you to have a little more control over the setting of your uniforms.\n *\n * @return {PIXI.GLProgram} the glProgram for the currently bound Shader for this context\n */\n ShaderSystem.prototype.getglProgram = function getglProgram ()\n {\n if (this.shader)\n {\n return this.shader.program.glPrograms[this.renderer.CONTEXT_UID];\n }\n\n return null;\n };\n\n /**\n * Generates a glProgram version of the Shader provided.\n *\n * @private\n * @param {PIXI.Shader} shader the shader that the glProgram will be based on.\n * @return {PIXI.GLProgram} A shiny new glProgram!\n */\n ShaderSystem.prototype.generateShader = function generateShader (shader)\n {\n var gl = this.gl;\n\n var program = shader.program;\n\n var attribMap = {};\n\n for (var i in program.attributeData)\n {\n attribMap[i] = program.attributeData[i].location;\n }\n\n var shaderProgram = compileProgram(gl, program.vertexSrc, program.fragmentSrc, attribMap);\n var uniformData = {};\n\n for (var i$1 in program.uniformData)\n {\n var data = program.uniformData[i$1];\n\n uniformData[i$1] = {\n location: gl.getUniformLocation(shaderProgram, i$1),\n value: defaultValue(data.type, data.size),\n };\n }\n\n var glProgram = new GLProgram(shaderProgram, uniformData);\n\n program.glPrograms[this.renderer.CONTEXT_UID] = glProgram;\n\n return glProgram;\n };\n\n /**\n * Resets ShaderSystem state, does not affect WebGL state\n */\n ShaderSystem.prototype.reset = function reset ()\n {\n this.program = null;\n this.shader = null;\n };\n\n /**\n * Destroys this System and removes all its textures\n */\n ShaderSystem.prototype.destroy = function destroy ()\n {\n // TODO implement destroy method for ShaderSystem\n this.destroyed = true;\n };\n\n return ShaderSystem;\n}(System));\n\n/**\n * Maps gl blend combinations to WebGL.\n *\n * @memberof PIXI\n * @function mapWebGLBlendModesToPixi\n * @private\n * @param {WebGLRenderingContext} gl - The rendering context.\n * @param {number[][]} [array=[]] - The array to output into.\n * @return {number[][]} Mapped modes.\n */\nfunction mapWebGLBlendModesToPixi(gl, array)\n{\n if ( array === void 0 ) array = [];\n\n // TODO - premultiply alpha would be different.\n // add a boolean for that!\n array[BLEND_MODES.NORMAL] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.ADD] = [gl.ONE, gl.ONE];\n array[BLEND_MODES.MULTIPLY] = [gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SCREEN] = [gl.ONE, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.OVERLAY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DARKEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.LIGHTEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR_DODGE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR_BURN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.HARD_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SOFT_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DIFFERENCE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.EXCLUSION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.HUE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SATURATION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.LUMINOSITY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.NONE] = [0, 0];\n\n // not-premultiplied blend modes\n array[BLEND_MODES.NORMAL_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.ADD_NPM] = [gl.SRC_ALPHA, gl.ONE, gl.ONE, gl.ONE];\n array[BLEND_MODES.SCREEN_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n\n // composite operations\n array[BLEND_MODES.SRC_IN] = [gl.DST_ALPHA, gl.ZERO];\n array[BLEND_MODES.SRC_OUT] = [gl.ONE_MINUS_DST_ALPHA, gl.ZERO];\n array[BLEND_MODES.SRC_ATOP] = [gl.DST_ALPHA, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DST_OVER] = [gl.ONE_MINUS_DST_ALPHA, gl.ONE];\n array[BLEND_MODES.DST_IN] = [gl.ZERO, gl.SRC_ALPHA];\n array[BLEND_MODES.DST_OUT] = [gl.ZERO, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DST_ATOP] = [gl.ONE_MINUS_DST_ALPHA, gl.SRC_ALPHA];\n\n // SUBTRACT from flash\n array[BLEND_MODES.SUBTRACT] = [gl.ONE, gl.ONE, gl.ONE, gl.ONE, gl.FUNC_REVERSE_SUBTRACT, gl.FUNC_ADD];\n\n return array;\n}\n\nvar BLEND$1 = 0;\nvar OFFSET$1 = 1;\nvar CULLING$1 = 2;\nvar DEPTH_TEST$1 = 3;\nvar WINDING$1 = 4;\n\n/**\n * System plugin to the renderer to manage WebGL state machines.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar StateSystem = /*@__PURE__*/(function (System) {\n function StateSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * GL context\n * @member {WebGLRenderingContext}\n * @readonly\n */\n this.gl = null;\n\n /**\n * State ID\n * @member {number}\n * @readonly\n */\n this.stateId = 0;\n\n /**\n * Polygon offset\n * @member {number}\n * @readonly\n */\n this.polygonOffset = 0;\n\n /**\n * Blend mode\n * @member {number}\n * @default PIXI.BLEND_MODES.NONE\n * @readonly\n */\n this.blendMode = BLEND_MODES.NONE;\n\n /**\n * Whether current blend equation is different\n * @member {boolean}\n * @protected\n */\n this._blendEq = false;\n\n /**\n * Collection of calls\n * @member {function[]}\n * @readonly\n */\n this.map = [];\n\n // map functions for when we set state..\n this.map[BLEND$1] = this.setBlend;\n this.map[OFFSET$1] = this.setOffset;\n this.map[CULLING$1] = this.setCullFace;\n this.map[DEPTH_TEST$1] = this.setDepthTest;\n this.map[WINDING$1] = this.setFrontFace;\n\n /**\n * Collection of check calls\n * @member {function[]}\n * @readonly\n */\n this.checks = [];\n\n /**\n * Default WebGL State\n * @member {PIXI.State}\n * @readonly\n */\n this.defaultState = new State();\n this.defaultState.blend = true;\n this.defaultState.depth = true;\n }\n\n if ( System ) StateSystem.__proto__ = System;\n StateSystem.prototype = Object.create( System && System.prototype );\n StateSystem.prototype.constructor = StateSystem;\n\n StateSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n\n this.blendModes = mapWebGLBlendModesToPixi(gl);\n\n this.set(this.defaultState);\n\n this.reset();\n };\n\n /**\n * Sets the current state\n *\n * @param {*} state - The state to set.\n */\n StateSystem.prototype.set = function set (state)\n {\n state = state || this.defaultState;\n\n // TODO maybe to an object check? ( this.state === state )?\n if (this.stateId !== state.data)\n {\n var diff = this.stateId ^ state.data;\n var i = 0;\n\n // order from least to most common\n while (diff)\n {\n if (diff & 1)\n {\n // state change!\n this.map[i].call(this, !!(state.data & (1 << i)));\n }\n\n diff = diff >> 1;\n i++;\n }\n\n this.stateId = state.data;\n }\n\n // based on the above settings we check for specific modes..\n // for example if blend is active we check and set the blend modes\n // or of polygon offset is active we check the poly depth.\n for (var i$1 = 0; i$1 < this.checks.length; i$1++)\n {\n this.checks[i$1](this, state);\n }\n };\n\n /**\n * Sets the state, when previous state is unknown\n *\n * @param {*} state - The state to set\n */\n StateSystem.prototype.forceState = function forceState (state)\n {\n state = state || this.defaultState;\n for (var i = 0; i < this.map.length; i++)\n {\n this.map[i].call(this, !!(state.data & (1 << i)));\n }\n for (var i$1 = 0; i$1 < this.checks.length; i$1++)\n {\n this.checks[i$1](this, state);\n }\n\n this.stateId = state.data;\n };\n\n /**\n * Enables or disabled blending.\n *\n * @param {boolean} value - Turn on or off webgl blending.\n */\n StateSystem.prototype.setBlend = function setBlend (value)\n {\n this.updateCheck(StateSystem.checkBlendMode, value);\n\n this.gl[value ? 'enable' : 'disable'](this.gl.BLEND);\n };\n\n /**\n * Enables or disable polygon offset fill\n *\n * @param {boolean} value - Turn on or off webgl polygon offset testing.\n */\n StateSystem.prototype.setOffset = function setOffset (value)\n {\n this.updateCheck(StateSystem.checkPolygonOffset, value);\n\n this.gl[value ? 'enable' : 'disable'](this.gl.POLYGON_OFFSET_FILL);\n };\n\n /**\n * Sets whether to enable or disable depth test.\n *\n * @param {boolean} value - Turn on or off webgl depth testing.\n */\n StateSystem.prototype.setDepthTest = function setDepthTest (value)\n {\n this.gl[value ? 'enable' : 'disable'](this.gl.DEPTH_TEST);\n };\n\n /**\n * Sets whether to enable or disable cull face.\n *\n * @param {boolean} value - Turn on or off webgl cull face.\n */\n StateSystem.prototype.setCullFace = function setCullFace (value)\n {\n this.gl[value ? 'enable' : 'disable'](this.gl.CULL_FACE);\n };\n\n /**\n * Sets the gl front face.\n *\n * @param {boolean} value - true is clockwise and false is counter-clockwise\n */\n StateSystem.prototype.setFrontFace = function setFrontFace (value)\n {\n this.gl.frontFace(this.gl[value ? 'CW' : 'CCW']);\n };\n\n /**\n * Sets the blend mode.\n *\n * @param {number} value - The blend mode to set to.\n */\n StateSystem.prototype.setBlendMode = function setBlendMode (value)\n {\n if (value === this.blendMode)\n {\n return;\n }\n\n this.blendMode = value;\n\n var mode = this.blendModes[value];\n var gl = this.gl;\n\n if (mode.length === 2)\n {\n gl.blendFunc(mode[0], mode[1]);\n }\n else\n {\n gl.blendFuncSeparate(mode[0], mode[1], mode[2], mode[3]);\n }\n if (mode.length === 6)\n {\n this._blendEq = true;\n gl.blendEquationSeparate(mode[4], mode[5]);\n }\n else if (this._blendEq)\n {\n this._blendEq = false;\n gl.blendEquationSeparate(gl.FUNC_ADD, gl.FUNC_ADD);\n }\n };\n\n /**\n * Sets the polygon offset.\n *\n * @param {number} value - the polygon offset\n * @param {number} scale - the polygon offset scale\n */\n StateSystem.prototype.setPolygonOffset = function setPolygonOffset (value, scale)\n {\n this.gl.polygonOffset(value, scale);\n };\n\n // used\n /**\n * Resets all the logic and disables the vaos\n */\n StateSystem.prototype.reset = function reset ()\n {\n this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false);\n\n this.forceState(0);\n\n this._blendEq = true;\n this.blendMode = -1;\n this.setBlendMode(0);\n };\n\n /**\n * checks to see which updates should be checked based on which settings have been activated.\n * For example, if blend is enabled then we should check the blend modes each time the state is changed\n * or if polygon fill is activated then we need to check if the polygon offset changes.\n * The idea is that we only check what we have too.\n *\n * @param {Function} func the checking function to add or remove\n * @param {boolean} value should the check function be added or removed.\n */\n StateSystem.prototype.updateCheck = function updateCheck (func, value)\n {\n var index = this.checks.indexOf(func);\n\n if (value && index === -1)\n {\n this.checks.push(func);\n }\n else if (!value && index !== -1)\n {\n this.checks.splice(index, 1);\n }\n };\n\n /**\n * A private little wrapper function that we call to check the blend mode.\n *\n * @static\n * @private\n * @param {PIXI.StateSystem} System the System to perform the state check on\n * @param {PIXI.State} state the state that the blendMode will pulled from\n */\n StateSystem.checkBlendMode = function checkBlendMode (system, state)\n {\n system.setBlendMode(state.blendMode);\n };\n\n /**\n * A private little wrapper function that we call to check the polygon offset.\n *\n * @static\n * @private\n * @param {PIXI.StateSystem} System the System to perform the state check on\n * @param {PIXI.State} state the state that the blendMode will pulled from\n */\n StateSystem.checkPolygonOffset = function checkPolygonOffset (system, state)\n {\n system.setPolygonOffset(state.polygonOffset, 0);\n };\n\n return StateSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage texture garbage collection on the GPU,\n * ensuring that it does not get clogged up with textures that are no longer being used.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar TextureGCSystem = /*@__PURE__*/(function (System) {\n function TextureGCSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Count\n * @member {number}\n * @readonly\n */\n this.count = 0;\n\n /**\n * Check count\n * @member {number}\n * @readonly\n */\n this.checkCount = 0;\n\n /**\n * Maximum idle time, in seconds\n * @member {number}\n * @see PIXI.settings.GC_MAX_IDLE\n */\n this.maxIdle = settings.GC_MAX_IDLE;\n\n /**\n * Maximum number of item to check\n * @member {number}\n * @see PIXI.settings.GC_MAX_CHECK_COUNT\n */\n this.checkCountMax = settings.GC_MAX_CHECK_COUNT;\n\n /**\n * Current garabage collection mode\n * @member {PIXI.GC_MODES}\n * @see PIXI.settings.GC_MODE\n */\n this.mode = settings.GC_MODE;\n }\n\n if ( System ) TextureGCSystem.__proto__ = System;\n TextureGCSystem.prototype = Object.create( System && System.prototype );\n TextureGCSystem.prototype.constructor = TextureGCSystem;\n\n /**\n * Checks to see when the last time a texture was used\n * if the texture has not been used for a specified amount of time it will be removed from the GPU\n */\n TextureGCSystem.prototype.postrender = function postrender ()\n {\n this.count++;\n\n if (this.mode === GC_MODES.MANUAL)\n {\n return;\n }\n\n this.checkCount++;\n\n if (this.checkCount > this.checkCountMax)\n {\n this.checkCount = 0;\n\n this.run();\n }\n };\n\n /**\n * Checks to see when the last time a texture was used\n * if the texture has not been used for a specified amount of time it will be removed from the GPU\n */\n TextureGCSystem.prototype.run = function run ()\n {\n var tm = this.renderer.texture;\n var managedTextures = tm.managedTextures;\n var wasRemoved = false;\n\n for (var i = 0; i < managedTextures.length; i++)\n {\n var texture = managedTextures[i];\n\n // only supports non generated textures at the moment!\n if (!texture.framebuffer && this.count - texture.touched > this.maxIdle)\n {\n tm.destroyTexture(texture, true);\n managedTextures[i] = null;\n wasRemoved = true;\n }\n }\n\n if (wasRemoved)\n {\n var j = 0;\n\n for (var i$1 = 0; i$1 < managedTextures.length; i$1++)\n {\n if (managedTextures[i$1] !== null)\n {\n managedTextures[j++] = managedTextures[i$1];\n }\n }\n\n managedTextures.length = j;\n }\n };\n\n /**\n * Removes all the textures within the specified displayObject and its children from the GPU\n *\n * @param {PIXI.DisplayObject} displayObject - the displayObject to remove the textures from.\n */\n TextureGCSystem.prototype.unload = function unload (displayObject)\n {\n var tm = this.renderer.textureSystem;\n\n // only destroy non generated textures\n if (displayObject._texture && displayObject._texture._glRenderTargets)\n {\n tm.destroyTexture(displayObject._texture);\n }\n\n for (var i = displayObject.children.length - 1; i >= 0; i--)\n {\n this.unload(displayObject.children[i]);\n }\n };\n\n return TextureGCSystem;\n}(System));\n\n/**\n * Internal texture for WebGL context\n * @class\n * @memberof PIXI\n */\nvar GLTexture = function GLTexture(texture)\n{\n /**\n * The WebGL texture\n * @member {WebGLTexture}\n */\n this.texture = texture;\n\n /**\n * Width of texture that was used in texImage2D\n * @member {number}\n */\n this.width = -1;\n\n /**\n * Height of texture that was used in texImage2D\n * @member {number}\n */\n this.height = -1;\n\n /**\n * Texture contents dirty flag\n * @member {number}\n */\n this.dirtyId = -1;\n\n /**\n * Texture style dirty flag\n * @member {number}\n */\n this.dirtyStyleId = -1;\n\n /**\n * Whether mip levels has to be generated\n * @member {boolean}\n */\n this.mipmap = false;\n\n /**\n * WrapMode copied from baseTexture\n * @member {number}\n */\n this.wrapMode = 33071;\n\n /**\n * Type copied from baseTexture\n * @member {number}\n */\n this.type = 6408;\n\n /**\n * Type copied from baseTexture\n * @member {number}\n */\n this.internalFormat = 5121;\n};\n\n/**\n * System plugin to the renderer to manage textures.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar TextureSystem = /*@__PURE__*/(function (System) {\n function TextureSystem(renderer)\n {\n System.call(this, renderer);\n\n // TODO set to max textures...\n /**\n * Bound textures\n * @member {PIXI.BaseTexture[]}\n * @readonly\n */\n this.boundTextures = [];\n /**\n * Current location\n * @member {number}\n * @readonly\n */\n this.currentLocation = -1;\n\n /**\n * List of managed textures\n * @member {PIXI.BaseTexture[]}\n * @readonly\n */\n this.managedTextures = [];\n\n /**\n * Did someone temper with textures state? We'll overwrite them when we need to unbind something.\n * @member {boolean}\n * @private\n */\n this._unknownBoundTextures = false;\n\n /**\n * BaseTexture value that shows that we don't know what is bound\n * @member {PIXI.BaseTexture}\n * @readonly\n */\n this.unknownTexture = new BaseTexture();\n }\n\n if ( System ) TextureSystem.__proto__ = System;\n TextureSystem.prototype = Object.create( System && System.prototype );\n TextureSystem.prototype.constructor = TextureSystem;\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n TextureSystem.prototype.contextChange = function contextChange ()\n {\n var gl = this.gl = this.renderer.gl;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n\n this.webGLVersion = this.renderer.context.webGLVersion;\n\n var maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS);\n\n this.boundTextures.length = maxTextures;\n\n for (var i = 0; i < maxTextures; i++)\n {\n this.boundTextures[i] = null;\n }\n\n // TODO move this.. to a nice make empty textures class..\n this.emptyTextures = {};\n\n var emptyTexture2D = new GLTexture(gl.createTexture());\n\n gl.bindTexture(gl.TEXTURE_2D, emptyTexture2D.texture);\n gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4));\n\n this.emptyTextures[gl.TEXTURE_2D] = emptyTexture2D;\n this.emptyTextures[gl.TEXTURE_CUBE_MAP] = new GLTexture(gl.createTexture());\n\n gl.bindTexture(gl.TEXTURE_CUBE_MAP, this.emptyTextures[gl.TEXTURE_CUBE_MAP].texture);\n\n for (var i$1 = 0; i$1 < 6; i$1++)\n {\n gl.texImage2D(gl.TEXTURE_CUBE_MAP_POSITIVE_X + i$1, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, null);\n }\n\n gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR);\n gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR);\n\n for (var i$2 = 0; i$2 < this.boundTextures.length; i$2++)\n {\n this.bind(null, i$2);\n }\n };\n\n /**\n * Bind a texture to a specific location\n *\n * If you want to unbind something, please use `unbind(texture)` instead of `bind(null, textureLocation)`\n *\n * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind\n * @param {number} [location=0] - Location to bind at\n */\n TextureSystem.prototype.bind = function bind (texture, location)\n {\n if ( location === void 0 ) location = 0;\n\n var ref = this;\n var gl = ref.gl;\n\n if (texture)\n {\n texture = texture.baseTexture || texture;\n\n if (texture.valid)\n {\n texture.touched = this.renderer.textureGC.count;\n\n var glTexture = texture._glTextures[this.CONTEXT_UID] || this.initTexture(texture);\n\n if (this.currentLocation !== location)\n {\n this.currentLocation = location;\n gl.activeTexture(gl.TEXTURE0 + location);\n }\n\n if (this.boundTextures[location] !== texture)\n {\n gl.bindTexture(texture.target, glTexture.texture);\n }\n\n if (glTexture.dirtyId !== texture.dirtyId)\n {\n this.updateTexture(texture);\n }\n\n this.boundTextures[location] = texture;\n }\n }\n else\n {\n if (this.currentLocation !== location)\n {\n this.currentLocation = location;\n gl.activeTexture(gl.TEXTURE0 + location);\n }\n\n gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[gl.TEXTURE_2D].texture);\n this.boundTextures[location] = null;\n }\n };\n\n /**\n * Resets texture location and bound textures\n *\n * Actual `bind(null, i)` calls will be performed at next `unbind()` call\n */\n TextureSystem.prototype.reset = function reset ()\n {\n this._unknownBoundTextures = true;\n this.currentLocation = -1;\n\n for (var i = 0; i < this.boundTextures.length; i++)\n {\n this.boundTextures[i] = this.unknownTexture;\n }\n };\n\n /**\n * Unbind a texture\n * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind\n */\n TextureSystem.prototype.unbind = function unbind (texture)\n {\n var ref = this;\n var gl = ref.gl;\n var boundTextures = ref.boundTextures;\n\n if (this._unknownBoundTextures)\n {\n this._unknownBoundTextures = false;\n // someone changed webGL state,\n // we have to be sure that our texture does not appear in multi-texture renderer samplers\n for (var i = 0; i < boundTextures.length; i++)\n {\n if (boundTextures[i] === this.unknownTexture)\n {\n this.bind(null, i);\n }\n }\n }\n\n for (var i$1 = 0; i$1 < boundTextures.length; i$1++)\n {\n if (boundTextures[i$1] === texture)\n {\n if (this.currentLocation !== i$1)\n {\n gl.activeTexture(gl.TEXTURE0 + i$1);\n this.currentLocation = i$1;\n }\n\n gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[texture.target].texture);\n boundTextures[i$1] = null;\n }\n }\n };\n\n /**\n * Initialize a texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to initialize\n */\n TextureSystem.prototype.initTexture = function initTexture (texture)\n {\n var glTexture = new GLTexture(this.gl.createTexture());\n\n // guarantee an update..\n glTexture.dirtyId = -1;\n\n texture._glTextures[this.CONTEXT_UID] = glTexture;\n\n this.managedTextures.push(texture);\n texture.on('dispose', this.destroyTexture, this);\n\n return glTexture;\n };\n\n TextureSystem.prototype.initTextureType = function initTextureType (texture, glTexture)\n {\n glTexture.internalFormat = texture.format;\n glTexture.type = texture.type;\n if (this.webGLVersion !== 2)\n {\n return;\n }\n var gl = this.renderer.gl;\n\n if (texture.type === gl.FLOAT\n && texture.format === gl.RGBA)\n {\n glTexture.internalFormat = gl.RGBA32F;\n }\n // that's WebGL1 HALF_FLOAT_OES\n // we have to convert it to WebGL HALF_FLOAT\n if (texture.type === TYPES.HALF_FLOAT)\n {\n glTexture.type = gl.HALF_FLOAT;\n }\n if (glTexture.type === gl.HALF_FLOAT\n && texture.format === gl.RGBA)\n {\n glTexture.internalFormat = gl.RGBA16F;\n }\n };\n\n /**\n * Update a texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to initialize\n */\n TextureSystem.prototype.updateTexture = function updateTexture (texture)\n {\n var glTexture = texture._glTextures[this.CONTEXT_UID];\n\n if (!glTexture)\n {\n return;\n }\n\n var renderer = this.renderer;\n\n this.initTextureType(texture, glTexture);\n\n if (texture.resource && texture.resource.upload(renderer, texture, glTexture))\n ;\n else\n {\n // default, renderTexture-like logic\n var width = texture.realWidth;\n var height = texture.realHeight;\n var gl = renderer.gl;\n\n if (glTexture.width !== width\n || glTexture.height !== height\n || glTexture.dirtyId < 0)\n {\n glTexture.width = width;\n glTexture.height = height;\n\n gl.texImage2D(texture.target, 0,\n glTexture.internalFormat,\n width,\n height,\n 0,\n texture.format,\n glTexture.type,\n null);\n }\n }\n\n // lets only update what changes..\n if (texture.dirtyStyleId !== glTexture.dirtyStyleId)\n {\n this.updateTextureStyle(texture);\n }\n glTexture.dirtyId = texture.dirtyId;\n };\n\n /**\n * Deletes the texture from WebGL\n *\n * @private\n * @param {PIXI.BaseTexture|PIXI.Texture} texture - the texture to destroy\n * @param {boolean} [skipRemove=false] - Whether to skip removing the texture from the TextureManager.\n */\n TextureSystem.prototype.destroyTexture = function destroyTexture (texture, skipRemove)\n {\n var ref = this;\n var gl = ref.gl;\n\n texture = texture.baseTexture || texture;\n\n if (texture._glTextures[this.CONTEXT_UID])\n {\n this.unbind(texture);\n\n gl.deleteTexture(texture._glTextures[this.CONTEXT_UID].texture);\n texture.off('dispose', this.destroyTexture, this);\n\n delete texture._glTextures[this.CONTEXT_UID];\n\n if (!skipRemove)\n {\n var i = this.managedTextures.indexOf(texture);\n\n if (i !== -1)\n {\n removeItems(this.managedTextures, i, 1);\n }\n }\n }\n };\n\n /**\n * Update texture style such as mipmap flag\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to update\n */\n TextureSystem.prototype.updateTextureStyle = function updateTextureStyle (texture)\n {\n var glTexture = texture._glTextures[this.CONTEXT_UID];\n\n if (!glTexture)\n {\n return;\n }\n\n if ((texture.mipmap === MIPMAP_MODES.POW2 || this.webGLVersion !== 2) && !texture.isPowerOfTwo)\n {\n glTexture.mipmap = 0;\n glTexture.wrapMode = WRAP_MODES.CLAMP;\n }\n else\n {\n glTexture.mipmap = texture.mipmap >= 1;\n glTexture.wrapMode = texture.wrapMode;\n }\n\n if (texture.resource && texture.resource.style(this.renderer, texture, glTexture))\n ;\n else\n {\n this.setStyle(texture, glTexture);\n }\n\n glTexture.dirtyStyleId = texture.dirtyStyleId;\n };\n\n /**\n * Set style for texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to update\n * @param {PIXI.GLTexture} glTexture\n */\n TextureSystem.prototype.setStyle = function setStyle (texture, glTexture)\n {\n var gl = this.gl;\n\n if (glTexture.mipmap)\n {\n gl.generateMipmap(texture.target);\n }\n\n gl.texParameteri(texture.target, gl.TEXTURE_WRAP_S, glTexture.wrapMode);\n gl.texParameteri(texture.target, gl.TEXTURE_WRAP_T, glTexture.wrapMode);\n\n if (glTexture.mipmap)\n {\n /* eslint-disable max-len */\n gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR_MIPMAP_LINEAR : gl.NEAREST_MIPMAP_NEAREST);\n /* eslint-disable max-len */\n\n var anisotropicExt = this.renderer.context.extensions.anisotropicFiltering;\n\n if (anisotropicExt && texture.anisotropicLevel > 0 && texture.scaleMode === SCALE_MODES.LINEAR)\n {\n var level = Math.min(texture.anisotropicLevel, gl.getParameter(anisotropicExt.MAX_TEXTURE_MAX_ANISOTROPY_EXT));\n\n gl.texParameterf(texture.target, anisotropicExt.TEXTURE_MAX_ANISOTROPY_EXT, level);\n }\n }\n else\n {\n gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST);\n }\n\n gl.texParameteri(texture.target, gl.TEXTURE_MAG_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST);\n };\n\n return TextureSystem;\n}(System));\n\n/**\n * Systems are individual components to the Renderer pipeline.\n * @namespace PIXI.systems\n */\n\nvar systems = ({\n FilterSystem: FilterSystem,\n BatchSystem: BatchSystem,\n ContextSystem: ContextSystem,\n FramebufferSystem: FramebufferSystem,\n GeometrySystem: GeometrySystem,\n MaskSystem: MaskSystem,\n StencilSystem: StencilSystem,\n ProjectionSystem: ProjectionSystem,\n RenderTextureSystem: RenderTextureSystem,\n ShaderSystem: ShaderSystem,\n StateSystem: StateSystem,\n TextureGCSystem: TextureGCSystem,\n TextureSystem: TextureSystem\n});\n\nvar tempMatrix = new Matrix();\n\n/**\n * The AbstractRenderer is the base for a PixiJS Renderer. It is extended by the {@link PIXI.CanvasRenderer}\n * and {@link PIXI.Renderer} which can be used for rendering a PixiJS scene.\n *\n * @abstract\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar AbstractRenderer = /*@__PURE__*/(function (EventEmitter) {\n function AbstractRenderer(system, options)\n {\n EventEmitter.call(this);\n\n // Add the default render options\n options = Object.assign({}, settings.RENDER_OPTIONS, options);\n\n // Deprecation notice for renderer roundPixels option\n if (options.roundPixels)\n {\n settings.ROUND_PIXELS = options.roundPixels;\n deprecation('5.0.0', 'Renderer roundPixels option is deprecated, please use PIXI.settings.ROUND_PIXELS', 2);\n }\n\n /**\n * The supplied constructor options.\n *\n * @member {Object}\n * @readOnly\n */\n this.options = options;\n\n /**\n * The type of the renderer.\n *\n * @member {number}\n * @default PIXI.RENDERER_TYPE.UNKNOWN\n * @see PIXI.RENDERER_TYPE\n */\n this.type = RENDERER_TYPE.UNKNOWN;\n\n /**\n * Measurements of the screen. (0, 0, screenWidth, screenHeight).\n *\n * Its safe to use as filterArea or hitArea for the whole stage.\n *\n * @member {PIXI.Rectangle}\n */\n this.screen = new Rectangle(0, 0, options.width, options.height);\n\n /**\n * The canvas element that everything is drawn to.\n *\n * @member {HTMLCanvasElement}\n */\n this.view = options.view || document.createElement('canvas');\n\n /**\n * The resolution / device pixel ratio of the renderer.\n *\n * @member {number}\n * @default 1\n */\n this.resolution = options.resolution || settings.RESOLUTION;\n\n /**\n * Whether the render view is transparent.\n *\n * @member {boolean}\n */\n this.transparent = options.transparent;\n\n /**\n * Whether CSS dimensions of canvas view should be resized to screen dimensions automatically.\n *\n * @member {boolean}\n */\n this.autoDensity = options.autoDensity || options.autoResize || false;\n // autoResize is deprecated, provides fallback support\n\n /**\n * The value of the preserveDrawingBuffer flag affects whether or not the contents of\n * the stencil buffer is retained after rendering.\n *\n * @member {boolean}\n */\n this.preserveDrawingBuffer = options.preserveDrawingBuffer;\n\n /**\n * This sets if the CanvasRenderer will clear the canvas or not before the new render pass.\n * If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every\n * frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect\n * to clear the canvas every frame. Disable this by setting this to false. For example, if\n * your game has a canvas filling background image you often don't need this set.\n *\n * @member {boolean}\n * @default\n */\n this.clearBeforeRender = options.clearBeforeRender;\n\n /**\n * The background color as a number.\n *\n * @member {number}\n * @protected\n */\n this._backgroundColor = 0x000000;\n\n /**\n * The background color as an [R, G, B] array.\n *\n * @member {number[]}\n * @protected\n */\n this._backgroundColorRgba = [0, 0, 0, 0];\n\n /**\n * The background color as a string.\n *\n * @member {string}\n * @protected\n */\n this._backgroundColorString = '#000000';\n\n this.backgroundColor = options.backgroundColor || this._backgroundColor; // run bg color setter\n\n /**\n * This temporary display object used as the parent of the currently being rendered item.\n *\n * @member {PIXI.DisplayObject}\n * @protected\n */\n this._tempDisplayObjectParent = new Container();\n\n /**\n * The last root object that the renderer tried to render.\n *\n * @member {PIXI.DisplayObject}\n * @protected\n */\n this._lastObjectRendered = this._tempDisplayObjectParent;\n\n /**\n * Collection of plugins.\n * @readonly\n * @member {object}\n */\n this.plugins = {};\n }\n\n if ( EventEmitter ) AbstractRenderer.__proto__ = EventEmitter;\n AbstractRenderer.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n AbstractRenderer.prototype.constructor = AbstractRenderer;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true },backgroundColor: { configurable: true } };\n\n /**\n * Initialize the plugins.\n *\n * @protected\n * @param {object} staticMap - The dictionary of statically saved plugins.\n */\n AbstractRenderer.prototype.initPlugins = function initPlugins (staticMap)\n {\n for (var o in staticMap)\n {\n this.plugins[o] = new (staticMap[o])(this);\n }\n };\n\n /**\n * Same as view.width, actual number of pixels in the canvas by horizontal.\n *\n * @member {number}\n * @readonly\n * @default 800\n */\n prototypeAccessors.width.get = function ()\n {\n return this.view.width;\n };\n\n /**\n * Same as view.height, actual number of pixels in the canvas by vertical.\n *\n * @member {number}\n * @readonly\n * @default 600\n */\n prototypeAccessors.height.get = function ()\n {\n return this.view.height;\n };\n\n /**\n * Resizes the screen and canvas to the specified width and height.\n * Canvas dimensions are multiplied by resolution.\n *\n * @param {number} screenWidth - The new width of the screen.\n * @param {number} screenHeight - The new height of the screen.\n */\n AbstractRenderer.prototype.resize = function resize (screenWidth, screenHeight)\n {\n this.screen.width = screenWidth;\n this.screen.height = screenHeight;\n\n this.view.width = screenWidth * this.resolution;\n this.view.height = screenHeight * this.resolution;\n\n if (this.autoDensity)\n {\n this.view.style.width = screenWidth + \"px\";\n this.view.style.height = screenHeight + \"px\";\n }\n };\n\n /**\n * Useful function that returns a texture of the display object that can then be used to create sprites\n * This can be quite useful if your displayObject is complicated and needs to be reused multiple times.\n *\n * @param {PIXI.DisplayObject} displayObject - The displayObject the object will be generated from.\n * @param {number} scaleMode - Should be one of the scaleMode consts.\n * @param {number} resolution - The resolution / device pixel ratio of the texture being generated.\n * @param {PIXI.Rectangle} [region] - The region of the displayObject, that shall be rendered,\n * if no region is specified, defaults to the local bounds of the displayObject.\n * @return {PIXI.RenderTexture} A texture of the graphics object.\n */\n AbstractRenderer.prototype.generateTexture = function generateTexture (displayObject, scaleMode, resolution, region)\n {\n region = region || displayObject.getLocalBounds();\n\n // minimum texture size is 1x1, 0x0 will throw an error\n if (region.width === 0) { region.width = 1; }\n if (region.height === 0) { region.height = 1; }\n\n var renderTexture = RenderTexture.create(region.width | 0, region.height | 0, scaleMode, resolution);\n\n tempMatrix.tx = -region.x;\n tempMatrix.ty = -region.y;\n\n this.render(displayObject, renderTexture, false, tempMatrix, !!displayObject.parent);\n\n return renderTexture;\n };\n\n /**\n * Removes everything from the renderer and optionally removes the Canvas DOM element.\n *\n * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM.\n */\n AbstractRenderer.prototype.destroy = function destroy (removeView)\n {\n for (var o in this.plugins)\n {\n this.plugins[o].destroy();\n this.plugins[o] = null;\n }\n\n if (removeView && this.view.parentNode)\n {\n this.view.parentNode.removeChild(this.view);\n }\n\n this.plugins = null;\n\n this.type = RENDERER_TYPE.UNKNOWN;\n\n this.view = null;\n\n this.screen = null;\n\n this.resolution = 0;\n\n this.transparent = false;\n\n this.autoDensity = false;\n\n this.blendModes = null;\n\n this.options = null;\n\n this.preserveDrawingBuffer = false;\n this.clearBeforeRender = false;\n\n this._backgroundColor = 0;\n this._backgroundColorRgba = null;\n this._backgroundColorString = null;\n\n this._tempDisplayObjectParent = null;\n this._lastObjectRendered = null;\n };\n\n /**\n * The background color to fill if not transparent\n *\n * @member {number}\n */\n prototypeAccessors.backgroundColor.get = function ()\n {\n return this._backgroundColor;\n };\n\n prototypeAccessors.backgroundColor.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._backgroundColor = value;\n this._backgroundColorString = hex2string(value);\n hex2rgb(value, this._backgroundColorRgba);\n };\n\n Object.defineProperties( AbstractRenderer.prototype, prototypeAccessors );\n\n return AbstractRenderer;\n}(EventEmitter));\n\n/**\n * The Renderer draws the scene and all its content onto a WebGL enabled canvas.\n *\n * This renderer should be used for browsers that support WebGL.\n *\n * This renderer works by automatically managing WebGLBatchesm, so no need for Sprite Batches or Sprite Clouds.\n * Don't forget to add the view to your DOM or you will not see anything!\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.AbstractRenderer\n */\nvar Renderer = /*@__PURE__*/(function (AbstractRenderer) {\n function Renderer(options)\n {\n if ( options === void 0 ) options = {};\n\n AbstractRenderer.call(this, 'WebGL', options);\n\n // the options will have been modified here in the super constructor with pixi's default settings..\n options = this.options;\n\n /**\n * The type of this renderer as a standardized const\n *\n * @member {number}\n * @see PIXI.RENDERER_TYPE\n */\n this.type = RENDERER_TYPE.WEBGL;\n\n /**\n * WebGL context, set by the contextSystem (this.context)\n *\n * @readonly\n * @member {WebGLRenderingContext}\n */\n this.gl = null;\n\n this.CONTEXT_UID = 0;\n\n // TODO legacy!\n\n /**\n * Internal signal instances of **runner**, these\n * are assigned to each system created.\n * @see PIXI.Runner\n * @name PIXI.Renderer#runners\n * @private\n * @type {object}\n * @readonly\n * @property {PIXI.Runner} destroy - Destroy runner\n * @property {PIXI.Runner} contextChange - Context change runner\n * @property {PIXI.Runner} reset - Reset runner\n * @property {PIXI.Runner} update - Update runner\n * @property {PIXI.Runner} postrender - Post-render runner\n * @property {PIXI.Runner} prerender - Pre-render runner\n * @property {PIXI.Runner} resize - Resize runner\n */\n this.runners = {\n destroy: new Runner('destroy'),\n contextChange: new Runner('contextChange', 1),\n reset: new Runner('reset'),\n update: new Runner('update'),\n postrender: new Runner('postrender'),\n prerender: new Runner('prerender'),\n resize: new Runner('resize', 2),\n };\n\n /**\n * Global uniforms\n * @member {PIXI.UniformGroup}\n */\n this.globalUniforms = new UniformGroup({\n projectionMatrix: new Matrix(),\n }, true);\n\n /**\n * Mask system instance\n * @member {PIXI.systems.MaskSystem} mask\n * @memberof PIXI.Renderer#\n * @readonly\n */\n this.addSystem(MaskSystem, 'mask')\n /**\n * Context system instance\n * @member {PIXI.systems.ContextSystem} context\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ContextSystem, 'context')\n /**\n * State system instance\n * @member {PIXI.systems.StateSystem} state\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(StateSystem, 'state')\n /**\n * Shader system instance\n * @member {PIXI.systems.ShaderSystem} shader\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ShaderSystem, 'shader')\n /**\n * Texture system instance\n * @member {PIXI.systems.TextureSystem} texture\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(TextureSystem, 'texture')\n /**\n * Geometry system instance\n * @member {PIXI.systems.GeometrySystem} geometry\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(GeometrySystem, 'geometry')\n /**\n * Framebuffer system instance\n * @member {PIXI.systems.FramebufferSystem} framebuffer\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(FramebufferSystem, 'framebuffer')\n /**\n * Stencil system instance\n * @member {PIXI.systems.StencilSystem} stencil\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(StencilSystem, 'stencil')\n /**\n * Projection system instance\n * @member {PIXI.systems.ProjectionSystem} projection\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ProjectionSystem, 'projection')\n /**\n * Texture garbage collector system instance\n * @member {PIXI.systems.TextureGCSystem} textureGC\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(TextureGCSystem, 'textureGC')\n /**\n * Filter system instance\n * @member {PIXI.systems.FilterSystem} filter\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(FilterSystem, 'filter')\n /**\n * RenderTexture system instance\n * @member {PIXI.systems.RenderTextureSystem} renderTexture\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(RenderTextureSystem, 'renderTexture')\n\n /**\n * Batch system instance\n * @member {PIXI.systems.BatchSystem} batch\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(BatchSystem, 'batch');\n\n this.initPlugins(Renderer.__plugins);\n\n /**\n * The options passed in to create a new WebGL context.\n */\n if (options.context)\n {\n this.context.initFromContext(options.context);\n }\n else\n {\n this.context.initFromOptions({\n alpha: this.transparent,\n antialias: options.antialias,\n premultipliedAlpha: this.transparent && this.transparent !== 'notMultiplied',\n stencil: true,\n preserveDrawingBuffer: options.preserveDrawingBuffer,\n powerPreference: this.options.powerPreference,\n });\n }\n\n /**\n * Flag if we are rendering to the screen vs renderTexture\n * @member {boolean}\n * @readonly\n * @default true\n */\n this.renderingToScreen = true;\n\n sayHello(this.context.webGLVersion === 2 ? 'WebGL 2' : 'WebGL 1');\n\n this.resize(this.options.width, this.options.height);\n }\n\n if ( AbstractRenderer ) Renderer.__proto__ = AbstractRenderer;\n Renderer.prototype = Object.create( AbstractRenderer && AbstractRenderer.prototype );\n Renderer.prototype.constructor = Renderer;\n\n /**\n * Add a new system to the renderer.\n * @param {Function} ClassRef - Class reference\n * @param {string} [name] - Property name for system, if not specified\n * will use a static `name` property on the class itself. This\n * name will be assigned as s property on the Renderer so make\n * sure it doesn't collide with properties on Renderer.\n * @return {PIXI.Renderer} Return instance of renderer\n */\n Renderer.create = function create (options)\n {\n if (isWebGLSupported())\n {\n return new Renderer(options);\n }\n\n throw new Error('WebGL unsupported in this browser, use \"pixi.js-legacy\" for fallback canvas2d support.');\n };\n\n Renderer.prototype.addSystem = function addSystem (ClassRef, name)\n {\n if (!name)\n {\n name = ClassRef.name;\n }\n\n var system = new ClassRef(this);\n\n if (this[name])\n {\n throw new Error((\"Whoops! The name \\\"\" + name + \"\\\" is already in use\"));\n }\n\n this[name] = system;\n\n for (var i in this.runners)\n {\n this.runners[i].add(system);\n }\n\n /**\n * Fired after rendering finishes.\n *\n * @event PIXI.Renderer#postrender\n */\n\n /**\n * Fired before rendering starts.\n *\n * @event PIXI.Renderer#prerender\n */\n\n /**\n * Fired when the WebGL context is set.\n *\n * @event PIXI.Renderer#context\n * @param {WebGLRenderingContext} gl - WebGL context.\n */\n\n return this;\n };\n\n /**\n * Renders the object to its WebGL view\n *\n * @param {PIXI.DisplayObject} displayObject - The object to be rendered.\n * @param {PIXI.RenderTexture} [renderTexture] - The render texture to render to.\n * @param {boolean} [clear=true] - Should the canvas be cleared before the new render.\n * @param {PIXI.Matrix} [transform] - A transform to apply to the render texture before rendering.\n * @param {boolean} [skipUpdateTransform=false] - Should we skip the update transform pass?\n */\n Renderer.prototype.render = function render (displayObject, renderTexture, clear, transform, skipUpdateTransform)\n {\n // can be handy to know!\n this.renderingToScreen = !renderTexture;\n\n this.runners.prerender.run();\n this.emit('prerender');\n\n // apply a transform at a GPU level\n this.projection.transform = transform;\n\n // no point rendering if our context has been blown up!\n if (this.context.isLost)\n {\n return;\n }\n\n if (!renderTexture)\n {\n this._lastObjectRendered = displayObject;\n }\n\n if (!skipUpdateTransform)\n {\n // update the scene graph\n var cacheParent = displayObject.parent;\n\n displayObject.parent = this._tempDisplayObjectParent;\n displayObject.updateTransform();\n displayObject.parent = cacheParent;\n // displayObject.hitArea = //TODO add a temp hit area\n }\n\n this.renderTexture.bind(renderTexture);\n this.batch.currentRenderer.start();\n\n if (clear !== undefined ? clear : this.clearBeforeRender)\n {\n this.renderTexture.clear();\n }\n\n displayObject.render(this);\n\n // apply transform..\n this.batch.currentRenderer.flush();\n\n if (renderTexture)\n {\n renderTexture.baseTexture.update();\n }\n\n this.runners.postrender.run();\n\n // reset transform after render\n this.projection.transform = null;\n\n this.emit('postrender');\n };\n\n /**\n * Resizes the WebGL view to the specified width and height.\n *\n * @param {number} screenWidth - The new width of the screen.\n * @param {number} screenHeight - The new height of the screen.\n */\n Renderer.prototype.resize = function resize (screenWidth, screenHeight)\n {\n AbstractRenderer.prototype.resize.call(this, screenWidth, screenHeight);\n\n this.runners.resize.run(screenWidth, screenHeight);\n };\n\n /**\n * Resets the WebGL state so you can render things however you fancy!\n *\n * @return {PIXI.Renderer} Returns itself.\n */\n Renderer.prototype.reset = function reset ()\n {\n this.runners.reset.run();\n\n return this;\n };\n\n /**\n * Clear the frame buffer\n */\n Renderer.prototype.clear = function clear ()\n {\n this.framebuffer.bind();\n this.framebuffer.clear();\n };\n\n /**\n * Removes everything from the renderer (event listeners, spritebatch, etc...)\n *\n * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM.\n * See: https://github.com/pixijs/pixi.js/issues/2233\n */\n Renderer.prototype.destroy = function destroy (removeView)\n {\n this.runners.destroy.run();\n\n for (var r in this.runners)\n {\n this.runners[r].destroy();\n }\n\n // call base destroy\n AbstractRenderer.prototype.destroy.call(this, removeView);\n\n // TODO nullify all the managers..\n this.gl = null;\n };\n\n /**\n * Collection of installed plugins. These are included by default in PIXI, but can be excluded\n * by creating a custom build. Consult the README for more information about creating custom\n * builds and excluding plugins.\n * @name PIXI.Renderer#plugins\n * @type {object}\n * @readonly\n * @property {PIXI.accessibility.AccessibilityManager} accessibility Support tabbing interactive elements.\n * @property {PIXI.extract.Extract} extract Extract image data from renderer.\n * @property {PIXI.interaction.InteractionManager} interaction Handles mouse, touch and pointer events.\n * @property {PIXI.prepare.Prepare} prepare Pre-render display objects.\n */\n\n /**\n * Adds a plugin to the renderer.\n *\n * @method\n * @param {string} pluginName - The name of the plugin.\n * @param {Function} ctor - The constructor function or class for the plugin.\n */\n Renderer.registerPlugin = function registerPlugin (pluginName, ctor)\n {\n Renderer.__plugins = Renderer.__plugins || {};\n Renderer.__plugins[pluginName] = ctor;\n };\n\n return Renderer;\n}(AbstractRenderer));\n\n/**\n * This helper function will automatically detect which renderer you should be using.\n * WebGL is the preferred renderer as it is a lot faster. If WebGL is not supported by\n * the browser then this function will return a canvas renderer\n *\n * @memberof PIXI\n * @function autoDetectRenderer\n * @param {object} [options] - The optional renderer parameters\n * @param {number} [options.width=800] - the width of the renderers view\n * @param {number} [options.height=600] - the height of the renderers view\n * @param {HTMLCanvasElement} [options.view] - the canvas to use as a view, optional\n * @param {boolean} [options.transparent=false] - If the render view is transparent, default false\n * @param {boolean} [options.autoDensity=false] - Resizes renderer view in CSS pixels to allow for\n * resolutions other than 1\n * @param {boolean} [options.antialias=false] - sets antialias\n * @param {boolean} [options.preserveDrawingBuffer=false] - enables drawing buffer preservation, enable this if you\n * need to call toDataUrl on the webgl context\n * @param {number} [options.backgroundColor=0x000000] - The background color of the rendered area\n * (shown if not transparent).\n * @param {boolean} [options.clearBeforeRender=true] - This sets if the renderer will clear the canvas or\n * not before the new render pass.\n * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the renderer, retina would be 2\n * @param {boolean} [options.forceCanvas=false] - prevents selection of WebGL renderer, even if such is present, this\n * option only is available when using **pixi.js-legacy** or **@pixi/canvas-renderer** modules, otherwise\n * it is ignored.\n * @param {boolean} [options.forceFXAA=false] - forces FXAA antialiasing to be used over native.\n * FXAA is faster, but may not always look as great **webgl only**\n * @param {string} [options.powerPreference] - Parameter passed to webgl context, set to \"high-performance\"\n * for devices with dual graphics card **webgl only**\n * @return {PIXI.Renderer|PIXI.CanvasRenderer} Returns WebGL renderer if available, otherwise CanvasRenderer\n */\nfunction autoDetectRenderer(options)\n{\n return Renderer.create(options);\n}\n\nvar _default = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n vTextureCoord = aTextureCoord;\\n}\";\n\nvar defaultFilter = \"attribute vec2 aVertexPosition;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nuniform vec4 inputSize;\\nuniform vec4 outputFrame;\\n\\nvec4 filterVertexPosition( void )\\n{\\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\\n\\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\\n}\\n\\nvec2 filterTextureCoord( void )\\n{\\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\\n}\\n\\nvoid main(void)\\n{\\n gl_Position = filterVertexPosition();\\n vTextureCoord = filterTextureCoord();\\n}\\n\";\n\n/**\n * A Texture that depends on six other resources.\n *\n * @class\n * @extends PIXI.BaseTexture\n * @memberof PIXI\n */\nvar CubeTexture = /*@__PURE__*/(function (BaseTexture) {\n function CubeTexture () {\n BaseTexture.apply(this, arguments);\n }\n\n if ( BaseTexture ) CubeTexture.__proto__ = BaseTexture;\n CubeTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype );\n CubeTexture.prototype.constructor = CubeTexture;\n\n CubeTexture.from = function from (resources, options)\n {\n return new CubeTexture(new CubeResource(resources, options));\n };\n\n return CubeTexture;\n}(BaseTexture));\n\n/**\n * Used by the batcher to draw batches.\n * Each one of these contains all information required to draw a bound geometry.\n *\n * @class\n * @memberof PIXI\n */\nvar BatchDrawCall = function BatchDrawCall()\n{\n this.textures = [];\n this.ids = [];\n this.blend = 0;\n this.textureCount = 0;\n this.start = 0;\n this.size = 0;\n this.type = 4;\n};\n\n/**\n * Flexible wrapper around `ArrayBuffer` that also provides\n * typed array views on demand.\n *\n * @class\n * @memberof PIXI\n */\nvar ViewableBuffer = function ViewableBuffer(size)\n{\n /**\n * Underlying `ArrayBuffer` that holds all the data\n * and is of capacity `size`.\n *\n * @member {ArrayBuffer}\n */\n this.rawBinaryData = new ArrayBuffer(size);\n\n /**\n * View on the raw binary data as a `Uint32Array`.\n *\n * @member {Uint32Array}\n */\n this.uint32View = new Uint32Array(this.rawBinaryData);\n\n /**\n * View on the raw binary data as a `Float32Array`.\n *\n * @member {Float32Array}\n */\n this.float32View = new Float32Array(this.rawBinaryData);\n};\n\nvar prototypeAccessors$5 = { int8View: { configurable: true },uint8View: { configurable: true },int16View: { configurable: true },uint16View: { configurable: true },int32View: { configurable: true } };\n\n/**\n * View on the raw binary data as a `Int8Array`.\n *\n * @member {Int8Array}\n */\nprototypeAccessors$5.int8View.get = function ()\n{\n if (!this._int8View)\n {\n this._int8View = new Int8Array(this.rawBinaryData);\n }\n\n return this._int8View;\n};\n\n/**\n * View on the raw binary data as a `Uint8Array`.\n *\n * @member {Uint8Array}\n */\nprototypeAccessors$5.uint8View.get = function ()\n{\n if (!this._uint8View)\n {\n this._uint8View = new Uint8Array(this.rawBinaryData);\n }\n\n return this._uint8View;\n};\n\n/**\n * View on the raw binary data as a `Int16Array`.\n *\n * @member {Int16Array}\n */\nprototypeAccessors$5.int16View.get = function ()\n{\n if (!this._int16View)\n {\n this._int16View = new Int16Array(this.rawBinaryData);\n }\n\n return this._int16View;\n};\n\n/**\n * View on the raw binary data as a `Uint16Array`.\n *\n * @member {Uint16Array}\n */\nprototypeAccessors$5.uint16View.get = function ()\n{\n if (!this._uint16View)\n {\n this._uint16View = new Uint16Array(this.rawBinaryData);\n }\n\n return this._uint16View;\n};\n\n/**\n * View on the raw binary data as a `Int32Array`.\n *\n * @member {Int32Array}\n */\nprototypeAccessors$5.int32View.get = function ()\n{\n if (!this._int32View)\n {\n this._int32View = new Int32Array(this.rawBinaryData);\n }\n\n return this._int32View;\n};\n\n/**\n * Returns the view of the given type.\n *\n * @param {string} type - One of `int8`, `uint8`, `int16`,\n *`uint16`, `int32`, `uint32`, and `float32`.\n * @return {object} typed array of given type\n */\nViewableBuffer.prototype.view = function view (type)\n{\n return this[(type + \"View\")];\n};\n\n/**\n * Destroys all buffer references. Do not use after calling\n * this.\n */\nViewableBuffer.prototype.destroy = function destroy ()\n{\n this.rawBinaryData = null;\n this._int8View = null;\n this._uint8View = null;\n this._int16View = null;\n this._uint16View = null;\n this._int32View = null;\n this.uint32View = null;\n this.float32View = null;\n};\n\nViewableBuffer.sizeOf = function sizeOf (type)\n{\n switch (type)\n {\n case 'int8':\n case 'uint8':\n return 1;\n case 'int16':\n case 'uint16':\n return 2;\n case 'int32':\n case 'uint32':\n case 'float32':\n return 4;\n default:\n throw new Error((type + \" isn't a valid view type\"));\n }\n};\n\nObject.defineProperties( ViewableBuffer.prototype, prototypeAccessors$5 );\n\n/**\n * Renderer dedicated to drawing and batching sprites.\n *\n * This is the default batch renderer. It buffers objects\n * with texture-based geometries and renders them in\n * batches. It uploads multiple textures to the GPU to\n * reduce to the number of draw calls.\n *\n * @class\n * @protected\n * @memberof PIXI\n * @extends PIXI.ObjectRenderer\n */\nvar AbstractBatchRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function AbstractBatchRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n /**\n * This is used to generate a shader that can\n * color each vertex based on a `aTextureId`\n * attribute that points to an texture in `uSampler`.\n *\n * This enables the objects with different textures\n * to be drawn in the same draw call.\n *\n * You can customize your shader by creating your\n * custom shader generator.\n *\n * @member {PIXI.BatchShaderGenerator}\n * @protected\n */\n this.shaderGenerator = null;\n\n /**\n * The class that represents the geometry of objects\n * that are going to be batched with this.\n *\n * @member {object}\n * @default PIXI.BatchGeometry\n * @protected\n */\n this.geometryClass = null;\n\n /**\n * Size of data being buffered per vertex in the\n * attribute buffers (in floats). By default, the\n * batch-renderer plugin uses 6:\n *\n * | aVertexPosition | 2 |\n * |-----------------|---|\n * | aTextureCoords | 2 |\n * | aColor | 1 |\n * | aTextureId | 1 |\n *\n * @member {number}\n * @readonly\n */\n this.vertexSize = null;\n\n /**\n * The WebGL state in which this renderer will work.\n *\n * @member {PIXI.State}\n * @readonly\n */\n this.state = State.for2d();\n\n /**\n * The number of bufferable objects before a flush\n * occurs automatically.\n *\n * @member {number}\n * @default settings.SPRITE_MAX_TEXTURES\n */\n this.size = 2000 * 4;// settings.SPRITE_BATCH_SIZE, 2000 is a nice balance between mobile/desktop\n\n /**\n * Total count of all vertices used by the currently\n * buffered objects.\n *\n * @member {number}\n * @private\n */\n this._vertexCount = 0;\n\n /**\n * Total count of all indices used by the currently\n * buffered objects.\n *\n * @member {number}\n * @private\n */\n this._indexCount = 0;\n\n /**\n * Buffer of objects that are yet to be rendered.\n *\n * @member {PIXI.DisplayObject[]}\n * @private\n */\n this._bufferedElements = [];\n\n /**\n * Number of elements that are buffered and are\n * waiting to be flushed.\n *\n * @member {number}\n * @private\n */\n this._bufferSize = 0;\n\n /**\n * This shader is generated by `this.shaderGenerator`.\n *\n * It is generated specifically to handle the required\n * number of textures being batched together.\n *\n * @member {PIXI.Shader}\n * @protected\n */\n this._shader = null;\n\n /**\n * Pool of `this.geometryClass` geometry objects\n * that store buffers. They are used to pass data\n * to the shader on each draw call.\n *\n * These are never re-allocated again, unless a\n * context change occurs; however, the pool may\n * be expanded if required.\n *\n * @member {PIXI.Geometry[]}\n * @private\n * @see PIXI.AbstractBatchRenderer.contextChange\n */\n this._packedGeometries = [];\n\n /**\n * Size of `this._packedGeometries`. It can be expanded\n * if more than `this._packedGeometryPoolSize` flushes\n * occur in a single frame.\n *\n * @member {number}\n * @private\n */\n this._packedGeometryPoolSize = 2;\n\n /**\n * A flush may occur multiple times in a single\n * frame. On iOS devices or when\n * `settings.CAN_UPLOAD_SAME_BUFFER` is false, the\n * batch renderer does not upload data to the same\n * `WebGLBuffer` for performance reasons.\n *\n * This is the index into `packedGeometries` that points to\n * geometry holding the most recent buffers.\n *\n * @member {number}\n * @private\n */\n this._flushId = 0;\n\n /**\n * Pool of `BatchDrawCall` objects that `flush` used\n * to create \"batches\" of the objects being rendered.\n *\n * These are never re-allocated again.\n *\n * @member BatchDrawCall[]\n * @private\n */\n this._drawCalls = [];\n\n for (var k = 0; k < this.size / 4; k++)\n { // initialize the draw-calls pool to max size.\n this._drawCalls[k] = new BatchDrawCall();\n }\n\n /**\n * Pool of `ViewableBuffer` objects that are sorted in\n * order of increasing size. The flush method uses\n * the buffer with the least size above the amount\n * it requires. These are used for passing attributes.\n *\n * The first buffer has a size of 8; each subsequent\n * buffer has double capacity of its previous.\n *\n * @member {PIXI.ViewableBuffer}\n * @private\n * @see PIXI.AbstractBatchRenderer#getAttributeBuffer\n */\n this._aBuffers = {};\n\n /**\n * Pool of `Uint16Array` objects that are sorted in\n * order of increasing size. The flush method uses\n * the buffer with the least size above the amount\n * it requires. These are used for passing indices.\n *\n * The first buffer has a size of 12; each subsequent\n * buffer has double capacity of its previous.\n *\n * @member {Uint16Array[]}\n * @private\n * @see PIXI.AbstractBatchRenderer#getIndexBuffer\n */\n this._iBuffers = {};\n\n /**\n * Maximum number of textures that can be uploaded to\n * the GPU under the current context. It is initialized\n * properly in `this.contextChange`.\n *\n * @member {number}\n * @see PIXI.AbstractBatchRenderer#contextChange\n * @readonly\n */\n this.MAX_TEXTURES = 1;\n\n this.renderer.on('prerender', this.onPrerender, this);\n renderer.runners.contextChange.add(this);\n }\n\n if ( ObjectRenderer ) AbstractBatchRenderer.__proto__ = ObjectRenderer;\n AbstractBatchRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n AbstractBatchRenderer.prototype.constructor = AbstractBatchRenderer;\n\n /**\n * Handles the `contextChange` signal.\n *\n * It calculates `this.MAX_TEXTURES` and allocating the\n * packed-geometry object pool.\n */\n AbstractBatchRenderer.prototype.contextChange = function contextChange ()\n {\n var gl = this.renderer.gl;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n this.MAX_TEXTURES = 1;\n }\n else\n {\n // step 1: first check max textures the GPU can handle.\n this.MAX_TEXTURES = Math.min(\n gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS),\n settings.SPRITE_MAX_TEXTURES);\n\n // step 2: check the maximum number of if statements the shader can have too..\n this.MAX_TEXTURES = checkMaxIfStatementsInShader(\n this.MAX_TEXTURES, gl);\n }\n\n this._shader = this.shaderGenerator.generateShader(this.MAX_TEXTURES);\n\n // we use the second shader as the first one depending on your browser\n // may omit aTextureId as it is not used by the shader so is optimized out.\n for (var i = 0; i < this._packedGeometryPoolSize; i++)\n {\n /* eslint-disable max-len */\n this._packedGeometries[i] = new (this.geometryClass)();\n }\n };\n\n /**\n * Handles the `prerender` signal.\n *\n * It ensures that flushes start from the first geometry\n * object again.\n */\n AbstractBatchRenderer.prototype.onPrerender = function onPrerender ()\n {\n this._flushId = 0;\n };\n\n /**\n * Buffers the \"batchable\" object. It need not be rendered\n * immediately.\n *\n * @param {PIXI.Sprite} sprite - the sprite to render when\n * using this spritebatch\n */\n AbstractBatchRenderer.prototype.render = function render (element)\n {\n if (!element._texture.valid)\n {\n return;\n }\n\n if (this._vertexCount + (element.vertexData.length / 2) > this.size)\n {\n this.flush();\n }\n\n this._vertexCount += element.vertexData.length / 2;\n this._indexCount += element.indices.length;\n this._bufferedElements[this._bufferSize++] = element;\n };\n\n /**\n * Renders the content _now_ and empties the current batch.\n */\n AbstractBatchRenderer.prototype.flush = function flush ()\n {\n if (this._vertexCount === 0)\n {\n return;\n }\n\n var attributeBuffer = this.getAttributeBuffer(this._vertexCount);\n var indexBuffer = this.getIndexBuffer(this._indexCount);\n var gl = this.renderer.gl;\n\n var ref = this;\n var elements = ref._bufferedElements;\n var drawCalls = ref._drawCalls;\n var MAX_TEXTURES = ref.MAX_TEXTURES;\n var packedGeometries = ref._packedGeometries;\n var vertexSize = ref.vertexSize;\n\n var touch = this.renderer.textureGC.count;\n\n var index = 0;\n var _indexCount = 0;\n\n var nextTexture;\n var currentTexture;\n var textureCount = 0;\n\n var currentGroup = drawCalls[0];\n var groupCount = 0;\n\n var blendMode = -1;// blend-mode of previous element/sprite/object!\n\n currentGroup.textureCount = 0;\n currentGroup.start = 0;\n currentGroup.blend = blendMode;\n\n var TICK = ++BaseTexture._globalBatch;\n var i;\n\n for (i = 0; i < this._bufferSize; ++i)\n {\n var sprite = elements[i];\n\n elements[i] = null;\n nextTexture = sprite._texture.baseTexture;\n\n var spriteBlendMode = premultiplyBlendMode[\n nextTexture.premultiplyAlpha ? 1 : 0][sprite.blendMode];\n\n if (blendMode !== spriteBlendMode)\n {\n blendMode = spriteBlendMode;\n\n // force the batch to break!\n currentTexture = null;\n textureCount = MAX_TEXTURES;\n TICK++;\n }\n\n if (currentTexture !== nextTexture)\n {\n currentTexture = nextTexture;\n\n if (nextTexture._batchEnabled !== TICK)\n {\n if (textureCount === MAX_TEXTURES)\n {\n TICK++;\n\n textureCount = 0;\n\n currentGroup.size = _indexCount - currentGroup.start;\n\n currentGroup = drawCalls[groupCount++];\n currentGroup.textureCount = 0;\n currentGroup.blend = blendMode;\n currentGroup.start = _indexCount;\n }\n\n nextTexture.touched = touch;\n nextTexture._batchEnabled = TICK;\n nextTexture._id = textureCount;\n\n currentGroup.textures[currentGroup.textureCount++] = nextTexture;\n textureCount++;\n }\n }\n\n this.packInterleavedGeometry(sprite, attributeBuffer,\n indexBuffer, index, _indexCount);\n\n // push a graphics..\n index += (sprite.vertexData.length / 2) * vertexSize;\n _indexCount += sprite.indices.length;\n }\n\n BaseTexture._globalBatch = TICK;\n currentGroup.size = _indexCount - currentGroup.start;\n\n if (!settings.CAN_UPLOAD_SAME_BUFFER)\n { /* Usually on iOS devices, where the browser doesn't\n like uploads to the same buffer in a single frame. */\n if (this._packedGeometryPoolSize <= this._flushId)\n {\n this._packedGeometryPoolSize++;\n packedGeometries[this._flushId] = new (this.geometryClass)();\n }\n\n packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0);\n packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0);\n\n this.renderer.geometry.bind(packedGeometries[this._flushId]);\n this.renderer.geometry.updateBuffers();\n this._flushId++;\n }\n else\n {\n // lets use the faster option, always use buffer number 0\n packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0);\n packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0);\n\n this.renderer.geometry.updateBuffers();\n }\n\n var textureSystem = this.renderer.texture;\n var stateSystem = this.renderer.state;\n\n // Upload textures and do the draw calls\n for (i = 0; i < groupCount; i++)\n {\n var group = drawCalls[i];\n var groupTextureCount = group.textureCount;\n\n for (var j = 0; j < groupTextureCount; j++)\n {\n textureSystem.bind(group.textures[j], j);\n group.textures[j] = null;\n }\n\n stateSystem.setBlendMode(group.blend);\n gl.drawElements(group.type, group.size, gl.UNSIGNED_SHORT, group.start * 2);\n }\n\n // reset elements for the next flush\n this._bufferSize = 0;\n this._vertexCount = 0;\n this._indexCount = 0;\n };\n\n /**\n * Starts a new sprite batch.\n */\n AbstractBatchRenderer.prototype.start = function start ()\n {\n this.renderer.state.set(this.state);\n\n this.renderer.shader.bind(this._shader);\n\n if (settings.CAN_UPLOAD_SAME_BUFFER)\n {\n // bind buffer #0, we don't need others\n this.renderer.geometry.bind(this._packedGeometries[this._flushId]);\n }\n };\n\n /**\n * Stops and flushes the current batch.\n */\n AbstractBatchRenderer.prototype.stop = function stop ()\n {\n this.flush();\n };\n\n /**\n * Destroys this `AbstractBatchRenderer`. It cannot be used again.\n */\n AbstractBatchRenderer.prototype.destroy = function destroy ()\n {\n for (var i = 0; i < this._packedGeometryPoolSize; i++)\n {\n if (this._packedGeometries[i])\n {\n this._packedGeometries[i].destroy();\n }\n }\n\n this.renderer.off('prerender', this.onPrerender, this);\n\n this._aBuffers = null;\n this._iBuffers = null;\n this._packedGeometries = null;\n this._drawCalls = null;\n\n if (this._shader)\n {\n this._shader.destroy();\n this._shader = null;\n }\n\n ObjectRenderer.prototype.destroy.call(this);\n };\n\n /**\n * Fetches an attribute buffer from `this._aBuffers` that\n * can hold atleast `size` floats.\n *\n * @param {number} size - minimum capacity required\n * @return {ViewableBuffer} - buffer than can hold atleast `size` floats\n * @private\n */\n AbstractBatchRenderer.prototype.getAttributeBuffer = function getAttributeBuffer (size)\n {\n // 8 vertices is enough for 2 quads\n var roundedP2 = nextPow2(Math.ceil(size / 8));\n var roundedSizeIndex = log2(roundedP2);\n var roundedSize = roundedP2 * 8;\n\n if (this._aBuffers.length <= roundedSizeIndex)\n {\n this._iBuffers.length = roundedSizeIndex + 1;\n }\n\n var buffer = this._aBuffers[roundedSize];\n\n if (!buffer)\n {\n this._aBuffers[roundedSize] = buffer = new ViewableBuffer(roundedSize * this.vertexSize * 4);\n }\n\n return buffer;\n };\n\n /**\n * Fetches an index buffer from `this._iBuffers` that can\n * has atleast `size` capacity.\n *\n * @param {number} size - minimum required capacity\n * @return {Uint16Array} - buffer that can fit `size`\n * indices.\n * @private\n */\n AbstractBatchRenderer.prototype.getIndexBuffer = function getIndexBuffer (size)\n {\n // 12 indices is enough for 2 quads\n var roundedP2 = nextPow2(Math.ceil(size / 12));\n var roundedSizeIndex = log2(roundedP2);\n var roundedSize = roundedP2 * 12;\n\n if (this._iBuffers.length <= roundedSizeIndex)\n {\n this._iBuffers.length = roundedSizeIndex + 1;\n }\n\n var buffer = this._iBuffers[roundedSizeIndex];\n\n if (!buffer)\n {\n this._iBuffers[roundedSizeIndex] = buffer = new Uint16Array(roundedSize);\n }\n\n return buffer;\n };\n\n /**\n * Takes the four batching parameters of `element`, interleaves\n * and pushes them into the batching attribute/index buffers given.\n *\n * It uses these properties: `vertexData` `uvs`, `textureId` and\n * `indicies`. It also uses the \"tint\" of the base-texture, if\n * present.\n *\n * @param {PIXI.Sprite} element - element being rendered\n * @param {PIXI.ViewableBuffer} attributeBuffer - attribute buffer.\n * @param {Uint16Array} indexBuffer - index buffer\n * @param {number} aIndex - number of floats already in the attribute buffer\n * @param {number} iIndex - number of indices already in `indexBuffer`\n */\n AbstractBatchRenderer.prototype.packInterleavedGeometry = function packInterleavedGeometry (element, attributeBuffer, indexBuffer, aIndex, iIndex)\n {\n var uint32View = attributeBuffer.uint32View;\n var float32View = attributeBuffer.float32View;\n\n var packedVertices = aIndex / this.vertexSize;\n var uvs = element.uvs;\n var indicies = element.indices;\n var vertexData = element.vertexData;\n var textureId = element._texture.baseTexture._id;\n\n var alpha = Math.min(element.worldAlpha, 1.0);\n var argb = (alpha < 1.0\n && element._texture.baseTexture.premultiplyAlpha)\n ? premultiplyTint(element._tintRGB, alpha)\n : element._tintRGB + (alpha * 255 << 24);\n\n // lets not worry about tint! for now..\n for (var i = 0; i < vertexData.length; i += 2)\n {\n float32View[aIndex++] = vertexData[i];\n float32View[aIndex++] = vertexData[i + 1];\n float32View[aIndex++] = uvs[i];\n float32View[aIndex++] = uvs[i + 1];\n uint32View[aIndex++] = argb;\n float32View[aIndex++] = textureId;\n }\n\n for (var i$1 = 0; i$1 < indicies.length; i$1++)\n {\n indexBuffer[iIndex++] = packedVertices + indicies[i$1];\n }\n };\n\n return AbstractBatchRenderer;\n}(ObjectRenderer));\n\n/**\n * Helper that generates batching multi-texture shader. Use it with your new BatchRenderer\n *\n * @class\n * @memberof PIXI\n */\nvar BatchShaderGenerator = function BatchShaderGenerator(vertexSrc, fragTemplate)\n{\n /**\n * Reference to the vertex shader source.\n *\n * @member {string}\n */\n this.vertexSrc = vertexSrc;\n\n /**\n * Reference to the fragement shader template. Must contain \"%count%\" and \"%forloop%\".\n *\n * @member {string}\n */\n this.fragTemplate = fragTemplate;\n\n this.programCache = {};\n this.defaultGroupCache = {};\n\n if (fragTemplate.indexOf('%count%') < 0)\n {\n throw new Error('Fragment template must contain \"%count%\".');\n }\n\n if (fragTemplate.indexOf('%forloop%') < 0)\n {\n throw new Error('Fragment template must contain \"%forloop%\".');\n }\n};\n\nBatchShaderGenerator.prototype.generateShader = function generateShader (maxTextures)\n{\n if (!this.programCache[maxTextures])\n {\n var sampleValues = new Int32Array(maxTextures);\n\n for (var i = 0; i < maxTextures; i++)\n {\n sampleValues[i] = i;\n }\n\n this.defaultGroupCache[maxTextures] = UniformGroup.from({ uSamplers: sampleValues }, true);\n\n var fragmentSrc = this.fragTemplate;\n\n fragmentSrc = fragmentSrc.replace(/%count%/gi, (\"\" + maxTextures));\n fragmentSrc = fragmentSrc.replace(/%forloop%/gi, this.generateSampleSrc(maxTextures));\n\n this.programCache[maxTextures] = new Program(this.vertexSrc, fragmentSrc);\n }\n\n var uniforms = {\n tint: new Float32Array([1, 1, 1, 1]),\n translationMatrix: new Matrix(),\n default: this.defaultGroupCache[maxTextures],\n };\n\n return new Shader(this.programCache[maxTextures], uniforms);\n};\n\nBatchShaderGenerator.prototype.generateSampleSrc = function generateSampleSrc (maxTextures)\n{\n var src = '';\n\n src += '\\n';\n src += '\\n';\n\n for (var i = 0; i < maxTextures; i++)\n {\n if (i > 0)\n {\n src += '\\nelse ';\n }\n\n if (i < maxTextures - 1)\n {\n src += \"if(vTextureId < \" + i + \".5)\";\n }\n\n src += '\\n{';\n src += \"\\n\\tcolor = texture2D(uSamplers[\" + i + \"], vTextureCoord);\";\n src += '\\n}';\n }\n\n src += '\\n';\n src += '\\n';\n\n return src;\n};\n\n/**\n * Geometry used to batch standard PIXI content (e.g. Mesh, Sprite, Graphics objects).\n *\n * @class\n * @memberof PIXI\n */\nvar BatchGeometry = /*@__PURE__*/(function (Geometry) {\n function BatchGeometry(_static)\n {\n if ( _static === void 0 ) _static = false;\n\n Geometry.call(this);\n\n /**\n * Buffer used for position, color, texture IDs\n *\n * @member {PIXI.Buffer}\n * @protected\n */\n this._buffer = new Buffer(null, _static, false);\n\n /**\n * Index buffer data\n *\n * @member {PIXI.Buffer}\n * @protected\n */\n this._indexBuffer = new Buffer(null, _static, true);\n\n this.addAttribute('aVertexPosition', this._buffer, 2, false, TYPES.FLOAT)\n .addAttribute('aTextureCoord', this._buffer, 2, false, TYPES.FLOAT)\n .addAttribute('aColor', this._buffer, 4, true, TYPES.UNSIGNED_BYTE)\n .addAttribute('aTextureId', this._buffer, 1, true, TYPES.FLOAT)\n .addIndex(this._indexBuffer);\n }\n\n if ( Geometry ) BatchGeometry.__proto__ = Geometry;\n BatchGeometry.prototype = Object.create( Geometry && Geometry.prototype );\n BatchGeometry.prototype.constructor = BatchGeometry;\n\n return BatchGeometry;\n}(Geometry));\n\nvar defaultVertex$2 = \"precision highp float;\\nattribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\nattribute vec4 aColor;\\nattribute float aTextureId;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform vec4 tint;\\n\\nvarying vec2 vTextureCoord;\\nvarying vec4 vColor;\\nvarying float vTextureId;\\n\\nvoid main(void){\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vTextureId = aTextureId;\\n vColor = aColor * tint;\\n}\\n\";\n\nvar defaultFragment$2 = \"varying vec2 vTextureCoord;\\nvarying vec4 vColor;\\nvarying float vTextureId;\\nuniform sampler2D uSamplers[%count%];\\n\\nvoid main(void){\\n vec4 color;\\n %forloop%\\n gl_FragColor = color * vColor;\\n}\\n\";\n\n/**\n * @class\n * @memberof PIXI\n * @hideconstructor\n */\nvar BatchPluginFactory = function BatchPluginFactory () {};\n\nvar staticAccessors$1 = { defaultVertexSrc: { configurable: true },defaultFragmentTemplate: { configurable: true } };\n\nBatchPluginFactory.create = function create (options)\n{\n var ref = Object.assign({\n vertex: defaultVertex$2,\n fragment: defaultFragment$2,\n geometryClass: BatchGeometry,\n vertexSize: 6,\n }, options);\n var vertex = ref.vertex;\n var fragment = ref.fragment;\n var vertexSize = ref.vertexSize;\n var geometryClass = ref.geometryClass;\n\n return /*@__PURE__*/(function (AbstractBatchRenderer) {\n function BatchPlugin(renderer)\n {\n AbstractBatchRenderer.call(this, renderer);\n\n this.shaderGenerator = new BatchShaderGenerator(vertex, fragment);\n this.geometryClass = geometryClass;\n this.vertexSize = vertexSize;\n }\n\n if ( AbstractBatchRenderer ) BatchPlugin.__proto__ = AbstractBatchRenderer;\n BatchPlugin.prototype = Object.create( AbstractBatchRenderer && AbstractBatchRenderer.prototype );\n BatchPlugin.prototype.constructor = BatchPlugin;\n\n return BatchPlugin;\n }(AbstractBatchRenderer));\n};\n\n/**\n * The default vertex shader source\n *\n * @static\n * @type {string}\n * @constant\n */\nstaticAccessors$1.defaultVertexSrc.get = function ()\n{\n return defaultVertex$2;\n};\n\n/**\n * The default fragment shader source\n *\n * @static\n * @type {string}\n * @constant\n */\nstaticAccessors$1.defaultFragmentTemplate.get = function ()\n{\n return defaultFragment$2;\n};\n\nObject.defineProperties( BatchPluginFactory, staticAccessors$1 );\n\n// Setup the default BatchRenderer plugin, this is what\n// we'll actually export at the root level\nvar BatchRenderer = BatchPluginFactory.create();\n\nexport { AbstractBatchRenderer, AbstractRenderer, Attribute, BaseRenderTexture, BaseTexture, BatchDrawCall, BatchGeometry, BatchPluginFactory, BatchRenderer, BatchShaderGenerator, Buffer, CubeTexture, Filter, Framebuffer, GLProgram, BaseTexture as GLTexture, Geometry, ObjectRenderer, Program, Quad, QuadUv, RenderTexture, RenderTexturePool, Renderer, Shader, SpriteMaskFilter, State, System, Texture, TextureMatrix, TextureUvs, UniformGroup, ViewableBuffer, autoDetectRenderer, checkMaxIfStatementsInShader, defaultFilter as defaultFilterVertex, _default as defaultVertex, index as resources, systems };\n//# sourceMappingURL=core.es.js.map\n","/*!\n * @pixi/extract - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/extract is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { RenderTexture } from '@pixi/core';\nimport { CanvasRenderTarget } from '@pixi/utils';\nimport { Rectangle } from '@pixi/math';\n\nvar TEMP_RECT = new Rectangle();\nvar BYTES_PER_PIXEL = 4;\n\n/**\n * The extract manager provides functionality to export content from the renderers.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.extract`\n *\n * @class\n * @memberof PIXI.extract\n */\nvar Extract = function Extract(renderer)\n{\n this.renderer = renderer;\n /**\n * Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture\n *\n * @member {PIXI.extract.Extract} extract\n * @memberof PIXI.Renderer#\n * @see PIXI.extract.Extract\n */\n renderer.extract = this;\n};\n\n/**\n * Will return a HTML Image of the target\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @param {string} [format] - Image format, e.g. \"image/jpeg\" or \"image/webp\".\n * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92.\n * @return {HTMLImageElement} HTML Image of the target\n */\nExtract.prototype.image = function image (target, format, quality)\n{\n var image = new Image();\n\n image.src = this.base64(target, format, quality);\n\n return image;\n};\n\n/**\n * Will return a a base64 encoded string of this target. It works by calling\n * `Extract.getCanvas` and then running toDataURL on that.\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @param {string} [format] - Image format, e.g. \"image/jpeg\" or \"image/webp\".\n * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92.\n * @return {string} A base64 encoded string of the texture.\n */\nExtract.prototype.base64 = function base64 (target, format, quality)\n{\n return this.canvas(target).toDataURL(format, quality);\n};\n\n/**\n * Creates a Canvas element, renders this target to it and then returns it.\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @return {HTMLCanvasElement} A Canvas element with the texture rendered on.\n */\nExtract.prototype.canvas = function canvas (target)\n{\n var renderer = this.renderer;\n var resolution;\n var frame;\n var flipY = false;\n var renderTexture;\n var generated = false;\n\n if (target)\n {\n if (target instanceof RenderTexture)\n {\n renderTexture = target;\n }\n else\n {\n renderTexture = this.renderer.generateTexture(target);\n generated = true;\n }\n }\n\n if (renderTexture)\n {\n resolution = renderTexture.baseTexture.resolution;\n frame = renderTexture.frame;\n flipY = false;\n renderer.renderTexture.bind(renderTexture);\n }\n else\n {\n resolution = this.renderer.resolution;\n\n flipY = true;\n\n frame = TEMP_RECT;\n frame.width = this.renderer.width;\n frame.height = this.renderer.height;\n\n renderer.renderTexture.bind(null);\n }\n\n var width = Math.floor(frame.width * resolution);\n var height = Math.floor(frame.height * resolution);\n\n var canvasBuffer = new CanvasRenderTarget(width, height, 1);\n\n var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height);\n\n // read pixels to the array\n var gl = renderer.gl;\n\n gl.readPixels(\n frame.x * resolution,\n frame.y * resolution,\n width,\n height,\n gl.RGBA,\n gl.UNSIGNED_BYTE,\n webglPixels\n );\n\n // add the pixels to the canvas\n var canvasData = canvasBuffer.context.getImageData(0, 0, width, height);\n\n Extract.arrayPostDivide(webglPixels, canvasData.data);\n\n canvasBuffer.context.putImageData(canvasData, 0, 0);\n\n // pulling pixels\n if (flipY)\n {\n canvasBuffer.context.scale(1, -1);\n canvasBuffer.context.drawImage(canvasBuffer.canvas, 0, -height);\n }\n\n if (generated)\n {\n renderTexture.destroy(true);\n }\n\n // send the canvas back..\n return canvasBuffer.canvas;\n};\n\n/**\n * Will return a one-dimensional array containing the pixel data of the entire texture in RGBA\n * order, with integer values between 0 and 255 (included).\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @return {Uint8Array} One-dimensional array containing the pixel data of the entire texture\n */\nExtract.prototype.pixels = function pixels (target)\n{\n var renderer = this.renderer;\n var resolution;\n var frame;\n var renderTexture;\n var generated = false;\n\n if (target)\n {\n if (target instanceof RenderTexture)\n {\n renderTexture = target;\n }\n else\n {\n renderTexture = this.renderer.generateTexture(target);\n generated = true;\n }\n }\n\n if (renderTexture)\n {\n resolution = renderTexture.baseTexture.resolution;\n frame = renderTexture.frame;\n\n // bind the buffer\n renderer.renderTexture.bind(renderTexture);\n }\n else\n {\n resolution = renderer.resolution;\n\n frame = TEMP_RECT;\n frame.width = renderer.width;\n frame.height = renderer.height;\n\n renderer.renderTexture.bind(null);\n }\n\n var width = frame.width * resolution;\n var height = frame.height * resolution;\n\n var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height);\n\n // read pixels to the array\n var gl = renderer.gl;\n\n gl.readPixels(\n frame.x * resolution,\n frame.y * resolution,\n width,\n height,\n gl.RGBA,\n gl.UNSIGNED_BYTE,\n webglPixels\n );\n\n if (generated)\n {\n renderTexture.destroy(true);\n }\n\n Extract.arrayPostDivide(webglPixels, webglPixels);\n\n return webglPixels;\n};\n\n/**\n * Destroys the extract\n *\n */\nExtract.prototype.destroy = function destroy ()\n{\n this.renderer.extract = null;\n this.renderer = null;\n};\n\n/**\n * Takes premultiplied pixel data and produces regular pixel data\n *\n * @private\n * @param pixels {number[] | Uint8Array | Uint8ClampedArray} array of pixel data\n * @param out {number[] | Uint8Array | Uint8ClampedArray} output array\n */\nExtract.arrayPostDivide = function arrayPostDivide (pixels, out)\n{\n for (var i = 0; i < pixels.length; i += 4)\n {\n var alpha = out[i + 3] = pixels[i + 3];\n\n if (alpha !== 0)\n {\n out[i] = Math.round(Math.min(pixels[i] * 255.0 / alpha, 255.0));\n out[i + 1] = Math.round(Math.min(pixels[i + 1] * 255.0 / alpha, 255.0));\n out[i + 2] = Math.round(Math.min(pixels[i + 2] * 255.0 / alpha, 255.0));\n }\n else\n {\n out[i] = pixels[i];\n out[i + 1] = pixels[i + 1];\n out[i + 2] = pixels[i + 2];\n }\n }\n};\n\n/**\n * This namespace provides renderer-specific plugins for exporting content from a renderer.\n * For instance, these plugins can be used for saving an Image, Canvas element or for exporting the raw image data (pixels).\n *\n * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @example\n * // Create a new app (will auto-add extract plugin to renderer)\n * const app = new PIXI.Application();\n *\n * // Draw a red circle\n * const graphics = new PIXI.Graphics()\n * .beginFill(0xFF0000)\n * .drawCircle(0, 0, 50);\n *\n * // Render the graphics as an HTMLImageElement\n * const image = app.renderer.plugins.extract.image(graphics);\n * document.body.appendChild(image);\n * @namespace PIXI.extract\n */\n\nexport { Extract };\n//# sourceMappingURL=extract.es.js.map\n","/*!\n * @pixi/interaction - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/interaction is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Point } from '@pixi/math';\nimport { Ticker, UPDATE_PRIORITY } from '@pixi/ticker';\nimport { DisplayObject } from '@pixi/display';\nimport { EventEmitter } from '@pixi/utils';\n\n/**\n * Holds all information related to an Interaction event\n *\n * @class\n * @memberof PIXI.interaction\n */\nvar InteractionData = function InteractionData()\n{\n /**\n * This point stores the global coords of where the touch/mouse event happened\n *\n * @member {PIXI.Point}\n */\n this.global = new Point();\n\n /**\n * The target Sprite that was interacted with\n *\n * @member {PIXI.Sprite}\n */\n this.target = null;\n\n /**\n * When passed to an event handler, this will be the original DOM Event that was captured\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent\n * @see https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent\n * @member {MouseEvent|TouchEvent|PointerEvent}\n */\n this.originalEvent = null;\n\n /**\n * Unique identifier for this interaction\n *\n * @member {number}\n */\n this.identifier = null;\n\n /**\n * Indicates whether or not the pointer device that created the event is the primary pointer.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary\n * @type {Boolean}\n */\n this.isPrimary = false;\n\n /**\n * Indicates which button was pressed on the mouse or pointer device to trigger the event.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button\n * @type {number}\n */\n this.button = 0;\n\n /**\n * Indicates which buttons are pressed on the mouse or pointer device when the event is triggered.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/buttons\n * @type {number}\n */\n this.buttons = 0;\n\n /**\n * The width of the pointer's contact along the x-axis, measured in CSS pixels.\n * radiusX of TouchEvents will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width\n * @type {number}\n */\n this.width = 0;\n\n /**\n * The height of the pointer's contact along the y-axis, measured in CSS pixels.\n * radiusY of TouchEvents will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height\n * @type {number}\n */\n this.height = 0;\n\n /**\n * The angle, in degrees, between the pointer device and the screen.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX\n * @type {number}\n */\n this.tiltX = 0;\n\n /**\n * The angle, in degrees, between the pointer device and the screen.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY\n * @type {number}\n */\n this.tiltY = 0;\n\n /**\n * The type of pointer that triggered the event.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType\n * @type {string}\n */\n this.pointerType = null;\n\n /**\n * Pressure applied by the pointing device during the event. A Touch's force property\n * will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure\n * @type {number}\n */\n this.pressure = 0;\n\n /**\n * From TouchEvents (not PointerEvents triggered by touches), the rotationAngle of the Touch.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle\n * @type {number}\n */\n this.rotationAngle = 0;\n\n /**\n * Twist of a stylus pointer.\n * @see https://w3c.github.io/pointerevents/#pointerevent-interface\n * @type {number}\n */\n this.twist = 0;\n\n /**\n * Barrel pressure on a stylus pointer.\n * @see https://w3c.github.io/pointerevents/#pointerevent-interface\n * @type {number}\n */\n this.tangentialPressure = 0;\n};\n\nvar prototypeAccessors = { pointerId: { configurable: true } };\n\n/**\n * The unique identifier of the pointer. It will be the same as `identifier`.\n * @readonly\n * @member {number}\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId\n */\nprototypeAccessors.pointerId.get = function ()\n{\n return this.identifier;\n};\n\n/**\n * This will return the local coordinates of the specified displayObject for this InteractionData\n *\n * @param {PIXI.DisplayObject} displayObject - The DisplayObject that you would like the local\n * coords off\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional (otherwise\n * will create a new point)\n * @param {PIXI.Point} [globalPos] - A Point object containing your custom global coords, optional\n * (otherwise will use the current global coords)\n * @return {PIXI.Point} A point containing the coordinates of the InteractionData position relative\n * to the DisplayObject\n */\nInteractionData.prototype.getLocalPosition = function getLocalPosition (displayObject, point, globalPos)\n{\n return displayObject.worldTransform.applyInverse(globalPos || this.global, point);\n};\n\n/**\n * Copies properties from normalized event data.\n *\n * @param {Touch|MouseEvent|PointerEvent} event The normalized event data\n */\nInteractionData.prototype.copyEvent = function copyEvent (event)\n{\n // isPrimary should only change on touchstart/pointerdown, so we don't want to overwrite\n // it with \"false\" on later events when our shim for it on touch events might not be\n // accurate\n if (event.isPrimary)\n {\n this.isPrimary = true;\n }\n this.button = event.button;\n // event.buttons is not available in all browsers (ie. Safari), but it does have a non-standard\n // event.which property instead, which conveys the same information.\n this.buttons = Number.isInteger(event.buttons) ? event.buttons : event.which;\n this.width = event.width;\n this.height = event.height;\n this.tiltX = event.tiltX;\n this.tiltY = event.tiltY;\n this.pointerType = event.pointerType;\n this.pressure = event.pressure;\n this.rotationAngle = event.rotationAngle;\n this.twist = event.twist || 0;\n this.tangentialPressure = event.tangentialPressure || 0;\n};\n\n/**\n * Resets the data for pooling.\n */\nInteractionData.prototype.reset = function reset ()\n{\n // isPrimary is the only property that we really need to reset - everything else is\n // guaranteed to be overwritten\n this.isPrimary = false;\n};\n\nObject.defineProperties( InteractionData.prototype, prototypeAccessors );\n\n/**\n * Event class that mimics native DOM events.\n *\n * @class\n * @memberof PIXI.interaction\n */\nvar InteractionEvent = function InteractionEvent()\n{\n /**\n * Whether this event will continue propagating in the tree.\n *\n * Remaining events for the {@link stopsPropagatingAt} object\n * will still be dispatched.\n *\n * @member {boolean}\n */\n this.stopped = false;\n\n /**\n * At which object this event stops propagating.\n *\n * @private\n * @member {PIXI.DisplayObject}\n */\n this.stopsPropagatingAt = null;\n\n /**\n * Whether we already reached the element we want to\n * stop propagating at. This is important for delayed events,\n * where we start over deeper in the tree again.\n *\n * @private\n * @member {boolean}\n */\n this.stopPropagationHint = false;\n\n /**\n * The object which caused this event to be dispatched.\n * For listener callback see {@link PIXI.interaction.InteractionEvent.currentTarget}.\n *\n * @member {PIXI.DisplayObject}\n */\n this.target = null;\n\n /**\n * The object whose event listener’s callback is currently being invoked.\n *\n * @member {PIXI.DisplayObject}\n */\n this.currentTarget = null;\n\n /**\n * Type of the event\n *\n * @member {string}\n */\n this.type = null;\n\n /**\n * InteractionData related to this event\n *\n * @member {PIXI.interaction.InteractionData}\n */\n this.data = null;\n};\n\n/**\n * Prevents event from reaching any objects other than the current object.\n *\n */\nInteractionEvent.prototype.stopPropagation = function stopPropagation ()\n{\n this.stopped = true;\n this.stopPropagationHint = true;\n this.stopsPropagatingAt = this.currentTarget;\n};\n\n/**\n * Resets the event.\n */\nInteractionEvent.prototype.reset = function reset ()\n{\n this.stopped = false;\n this.stopsPropagatingAt = null;\n this.stopPropagationHint = false;\n this.currentTarget = null;\n this.target = null;\n};\n\n/**\n * DisplayObjects with the {@link PIXI.interaction.interactiveTarget} mixin use this class to track interactions\n *\n * @class\n * @private\n * @memberof PIXI.interaction\n */\nvar InteractionTrackingData = function InteractionTrackingData(pointerId)\n{\n this._pointerId = pointerId;\n this._flags = InteractionTrackingData.FLAGS.NONE;\n};\n\nvar prototypeAccessors$1 = { pointerId: { configurable: true },flags: { configurable: true },none: { configurable: true },over: { configurable: true },rightDown: { configurable: true },leftDown: { configurable: true } };\n\n/**\n *\n * @private\n * @param {number} flag - The interaction flag to set\n * @param {boolean} yn - Should the flag be set or unset\n */\nInteractionTrackingData.prototype._doSet = function _doSet (flag, yn)\n{\n if (yn)\n {\n this._flags = this._flags | flag;\n }\n else\n {\n this._flags = this._flags & (~flag);\n }\n};\n\n/**\n * Unique pointer id of the event\n *\n * @readonly\n * @private\n * @member {number}\n */\nprototypeAccessors$1.pointerId.get = function ()\n{\n return this._pointerId;\n};\n\n/**\n * State of the tracking data, expressed as bit flags\n *\n * @private\n * @member {number}\n */\nprototypeAccessors$1.flags.get = function ()\n{\n return this._flags;\n};\n\nprototypeAccessors$1.flags.set = function (flags) // eslint-disable-line require-jsdoc\n{\n this._flags = flags;\n};\n\n/**\n * Is the tracked event inactive (not over or down)?\n *\n * @private\n * @member {number}\n */\nprototypeAccessors$1.none.get = function ()\n{\n return this._flags === this.constructor.FLAGS.NONE;\n};\n\n/**\n * Is the tracked event over the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.over.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.OVER) !== 0;\n};\n\nprototypeAccessors$1.over.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.OVER, yn);\n};\n\n/**\n * Did the right mouse button come down in the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.rightDown.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.RIGHT_DOWN) !== 0;\n};\n\nprototypeAccessors$1.rightDown.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.RIGHT_DOWN, yn);\n};\n\n/**\n * Did the left mouse button come down in the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.leftDown.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.LEFT_DOWN) !== 0;\n};\n\nprototypeAccessors$1.leftDown.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.LEFT_DOWN, yn);\n};\n\nObject.defineProperties( InteractionTrackingData.prototype, prototypeAccessors$1 );\n\nInteractionTrackingData.FLAGS = Object.freeze({\n NONE: 0,\n OVER: 1 << 0,\n LEFT_DOWN: 1 << 1,\n RIGHT_DOWN: 1 << 2,\n});\n\n/**\n * Interface for classes that represent a hit area.\n *\n * It is implemented by the following classes:\n * - {@link PIXI.Circle}\n * - {@link PIXI.Ellipse}\n * - {@link PIXI.Polygon}\n * - {@link PIXI.RoundedRectangle}\n *\n * @interface IHitArea\n * @memberof PIXI\n */\n\n/**\n * Checks whether the x and y coordinates given are contained within this area\n *\n * @method\n * @name contains\n * @memberof PIXI.IHitArea#\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this area\n */\n\n/**\n * Default property values of interactive objects\n * Used by {@link PIXI.interaction.InteractionManager} to automatically give all DisplayObjects these properties\n *\n * @private\n * @name interactiveTarget\n * @type {Object}\n * @memberof PIXI.interaction\n * @example\n * function MyObject() {}\n *\n * Object.assign(\n * DisplayObject.prototype,\n * PIXI.interaction.interactiveTarget\n * );\n */\nvar interactiveTarget = {\n\n /**\n * Enable interaction events for the DisplayObject. Touch, pointer and mouse\n * events will not be emitted unless `interactive` is set to `true`.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.on('tap', (event) => {\n * //handle event\n * });\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n interactive: false,\n\n /**\n * Determines if the children to the displayObject can be clicked/touched\n * Setting this to false allows PixiJS to bypass a recursive `hitTest` function\n *\n * @member {boolean}\n * @memberof PIXI.Container#\n */\n interactiveChildren: true,\n\n /**\n * Interaction shape. Children will be hit first, then this shape will be checked.\n * Setting this will cause this shape to be checked in hit tests rather than the displayObject's bounds.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.hitArea = new PIXI.Rectangle(0, 0, 100, 100);\n * @member {PIXI.IHitArea}\n * @memberof PIXI.DisplayObject#\n */\n hitArea: null,\n\n /**\n * If enabled, the mouse cursor use the pointer behavior when hovered over the displayObject if it is interactive\n * Setting this changes the 'cursor' property to `'pointer'`.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.buttonMode = true;\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n get buttonMode()\n {\n return this.cursor === 'pointer';\n },\n set buttonMode(value)\n {\n if (value)\n {\n this.cursor = 'pointer';\n }\n else if (this.cursor === 'pointer')\n {\n this.cursor = null;\n }\n },\n\n /**\n * This defines what cursor mode is used when the mouse cursor\n * is hovered over the displayObject.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.cursor = 'wait';\n * @see https://developer.mozilla.org/en/docs/Web/CSS/cursor\n *\n * @member {string}\n * @memberof PIXI.DisplayObject#\n */\n cursor: null,\n\n /**\n * Internal set of all active pointers, by identifier\n *\n * @member {Map}\n * @memberof PIXI.DisplayObject#\n * @private\n */\n get trackedPointers()\n {\n if (this._trackedPointers === undefined) { this._trackedPointers = {}; }\n\n return this._trackedPointers;\n },\n\n /**\n * Map of all tracked pointers, by identifier. Use trackedPointers to access.\n *\n * @private\n * @type {Map}\n */\n _trackedPointers: undefined,\n};\n\n// Mix interactiveTarget into DisplayObject.prototype,\n// after deprecation has been handled\nDisplayObject.mixin(interactiveTarget);\n\nvar MOUSE_POINTER_ID = 1;\n\n// helpers for hitTest() - only used inside hitTest()\nvar hitTestEvent = {\n target: null,\n data: {\n global: null,\n },\n};\n\n/**\n * The interaction manager deals with mouse, touch and pointer events.\n *\n * Any DisplayObject can be interactive if its `interactive` property is set to true.\n *\n * This manager also supports multitouch.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.interaction`\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI.interaction\n */\nvar InteractionManager = /*@__PURE__*/(function (EventEmitter) {\n function InteractionManager(renderer, options)\n {\n EventEmitter.call(this);\n\n options = options || {};\n\n /**\n * The renderer this interaction manager works for.\n *\n * @member {PIXI.AbstractRenderer}\n */\n this.renderer = renderer;\n\n /**\n * Should default browser actions automatically be prevented.\n * Does not apply to pointer events for backwards compatibility\n * preventDefault on pointer events stops mouse events from firing\n * Thus, for every pointer event, there will always be either a mouse of touch event alongside it.\n *\n * @member {boolean}\n * @default true\n */\n this.autoPreventDefault = options.autoPreventDefault !== undefined ? options.autoPreventDefault : true;\n\n /**\n * Frequency in milliseconds that the mousemove, mouseover & mouseout interaction events will be checked.\n *\n * @member {number}\n * @default 10\n */\n this.interactionFrequency = options.interactionFrequency || 10;\n\n /**\n * The mouse data\n *\n * @member {PIXI.interaction.InteractionData}\n */\n this.mouse = new InteractionData();\n this.mouse.identifier = MOUSE_POINTER_ID;\n\n // setting the mouse to start off far off screen will mean that mouse over does\n // not get called before we even move the mouse.\n this.mouse.global.set(-999999);\n\n /**\n * Actively tracked InteractionData\n *\n * @private\n * @member {Object.}\n */\n this.activeInteractionData = {};\n this.activeInteractionData[MOUSE_POINTER_ID] = this.mouse;\n\n /**\n * Pool of unused InteractionData\n *\n * @private\n * @member {PIXI.interaction.InteractionData[]}\n */\n this.interactionDataPool = [];\n\n /**\n * An event data object to handle all the event tracking/dispatching\n *\n * @member {object}\n */\n this.eventData = new InteractionEvent();\n\n /**\n * The DOM element to bind to.\n *\n * @protected\n * @member {HTMLElement}\n */\n this.interactionDOMElement = null;\n\n /**\n * This property determines if mousemove and touchmove events are fired only when the cursor\n * is over the object.\n * Setting to true will make things work more in line with how the DOM version works.\n * Setting to false can make things easier for things like dragging\n * It is currently set to false as this is how PixiJS used to work. This will be set to true in\n * future versions of pixi.\n *\n * @member {boolean}\n * @default false\n */\n this.moveWhenInside = false;\n\n /**\n * Have events been attached to the dom element?\n *\n * @protected\n * @member {boolean}\n */\n this.eventsAdded = false;\n\n /**\n * Is the mouse hovering over the renderer?\n *\n * @protected\n * @member {boolean}\n */\n this.mouseOverRenderer = false;\n\n /**\n * Does the device support touch events\n * https://www.w3.org/TR/touch-events/\n *\n * @readonly\n * @member {boolean}\n */\n this.supportsTouchEvents = 'ontouchstart' in window;\n\n /**\n * Does the device support pointer events\n * https://www.w3.org/Submission/pointer-events/\n *\n * @readonly\n * @member {boolean}\n */\n this.supportsPointerEvents = !!window.PointerEvent;\n\n // this will make it so that you don't have to call bind all the time\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerUp = this.onPointerUp.bind(this);\n this.processPointerUp = this.processPointerUp.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerCancel = this.onPointerCancel.bind(this);\n this.processPointerCancel = this.processPointerCancel.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerDown = this.onPointerDown.bind(this);\n this.processPointerDown = this.processPointerDown.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerMove = this.onPointerMove.bind(this);\n this.processPointerMove = this.processPointerMove.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerOut = this.onPointerOut.bind(this);\n this.processPointerOverOut = this.processPointerOverOut.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerOver = this.onPointerOver.bind(this);\n\n /**\n * Dictionary of how different cursor modes are handled. Strings are handled as CSS cursor\n * values, objects are handled as dictionaries of CSS values for interactionDOMElement,\n * and functions are called instead of changing the CSS.\n * Default CSS cursor values are provided for 'default' and 'pointer' modes.\n * @member {Object.}\n */\n this.cursorStyles = {\n default: 'inherit',\n pointer: 'pointer',\n };\n\n /**\n * The mode of the cursor that is being used.\n * The value of this is a key from the cursorStyles dictionary.\n *\n * @member {string}\n */\n this.currentCursorMode = null;\n\n /**\n * Internal cached let.\n *\n * @private\n * @member {string}\n */\n this.cursor = null;\n\n /**\n * Internal cached let.\n *\n * @private\n * @member {PIXI.Point}\n */\n this._tempPoint = new Point();\n\n /**\n * The current resolution / device pixel ratio.\n *\n * @member {number}\n * @default 1\n */\n this.resolution = 1;\n\n /**\n * Delayed pointer events. Used to guarantee correct ordering of over/out events.\n *\n * @private\n * @member {Array}\n */\n this.delayedEvents = [];\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed on the display\n * object.\n *\n * @event PIXI.interaction.InteractionManager#mousedown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * on the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released over the display\n * object.\n *\n * @event PIXI.interaction.InteractionManager#mouseup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * over the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed and released on\n * the display object.\n *\n * @event PIXI.interaction.InteractionManager#click\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * and released on the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightclick\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released outside the\n * display object that initially registered a\n * [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown}.\n *\n * @event PIXI.interaction.InteractionManager#mouseupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * outside the display object that initially registered a\n * [rightdown]{@link PIXI.interaction.InteractionManager#event:rightdown}.\n *\n * @event PIXI.interaction.InteractionManager#rightupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved while over the display object\n *\n * @event PIXI.interaction.InteractionManager#mousemove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved onto the display object\n *\n * @event PIXI.interaction.InteractionManager#mouseover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved off the display object\n *\n * @event PIXI.interaction.InteractionManager#mouseout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed on the display object.\n *\n * @event PIXI.interaction.InteractionManager#pointerdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released over the display object.\n * Not always fired when some buttons are held down while others are released. In those cases,\n * use [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown} and\n * [mouseup]{@link PIXI.interaction.InteractionManager#event:mouseup} instead.\n *\n * @event PIXI.interaction.InteractionManager#pointerup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a pointer event\n *\n * @event PIXI.interaction.InteractionManager#pointercancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed and released on the display object.\n *\n * @event PIXI.interaction.InteractionManager#pointertap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released outside the display object that initially\n * registered a [pointerdown]{@link PIXI.interaction.InteractionManager#event:pointerdown}.\n *\n * @event PIXI.interaction.InteractionManager#pointerupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved while over the display object\n *\n * @event PIXI.interaction.InteractionManager#pointermove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved onto the display object\n *\n * @event PIXI.interaction.InteractionManager#pointerover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved off the display object\n *\n * @event PIXI.interaction.InteractionManager#pointerout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed on the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchstart\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed from the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchend\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a touch\n *\n * @event PIXI.interaction.InteractionManager#touchcancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed and removed from the display object.\n *\n * @event PIXI.interaction.InteractionManager#tap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed outside of the display object that initially\n * registered a [touchstart]{@link PIXI.interaction.InteractionManager#event:touchstart}.\n *\n * @event PIXI.interaction.InteractionManager#touchendoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is moved along the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchmove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed on the display.\n * object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mousedown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * on the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released over the display\n * object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * over the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed and released on\n * the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#click\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * and released on the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightclick\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released outside the\n * display object that initially registered a\n * [mousedown]{@link PIXI.DisplayObject#event:mousedown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * outside the display object that initially registered a\n * [rightdown]{@link PIXI.DisplayObject#event:rightdown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved while over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mousemove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved onto the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved off the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a pointer event.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointercancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed and released on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointertap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released outside the display object that initially\n * registered a [pointerdown]{@link PIXI.DisplayObject#event:pointerdown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved while over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointermove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved onto the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved off the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchstart\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed from the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchend\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a touch.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchcancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed and removed from the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#tap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed outside of the display object that initially\n * registered a [touchstart]{@link PIXI.DisplayObject#event:touchstart}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchendoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is moved along the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchmove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n this.setTargetElement(this.renderer.view, this.renderer.resolution);\n }\n\n if ( EventEmitter ) InteractionManager.__proto__ = EventEmitter;\n InteractionManager.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n InteractionManager.prototype.constructor = InteractionManager;\n\n /**\n * Hit tests a point against the display tree, returning the first interactive object that is hit.\n *\n * @param {PIXI.Point} globalPoint - A point to hit test with, in global space.\n * @param {PIXI.Container} [root] - The root display object to start from. If omitted, defaults\n * to the last rendered root of the associated renderer.\n * @return {PIXI.DisplayObject} The hit display object, if any.\n */\n InteractionManager.prototype.hitTest = function hitTest (globalPoint, root)\n {\n // clear the target for our hit test\n hitTestEvent.target = null;\n // assign the global point\n hitTestEvent.data.global = globalPoint;\n // ensure safety of the root\n if (!root)\n {\n root = this.renderer._lastObjectRendered;\n }\n // run the hit test\n this.processInteractive(hitTestEvent, root, null, true);\n // return our found object - it'll be null if we didn't hit anything\n\n return hitTestEvent.target;\n };\n\n /**\n * Sets the DOM element which will receive mouse/touch events. This is useful for when you have\n * other DOM elements on top of the renderers Canvas element. With this you'll be bale to delegate\n * another DOM element to receive those events.\n *\n * @param {HTMLElement} element - the DOM element which will receive mouse and touch events.\n * @param {number} [resolution=1] - The resolution / device pixel ratio of the new element (relative to the canvas).\n */\n InteractionManager.prototype.setTargetElement = function setTargetElement (element, resolution)\n {\n if ( resolution === void 0 ) resolution = 1;\n\n this.removeEvents();\n\n this.interactionDOMElement = element;\n\n this.resolution = resolution;\n\n this.addEvents();\n };\n\n /**\n * Registers all the DOM events\n *\n * @private\n */\n InteractionManager.prototype.addEvents = function addEvents ()\n {\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n Ticker.system.add(this.update, this, UPDATE_PRIORITY.INTERACTION);\n\n if (window.navigator.msPointerEnabled)\n {\n this.interactionDOMElement.style['-ms-content-zooming'] = 'none';\n this.interactionDOMElement.style['-ms-touch-action'] = 'none';\n }\n else if (this.supportsPointerEvents)\n {\n this.interactionDOMElement.style['touch-action'] = 'none';\n }\n\n /**\n * These events are added first, so that if pointer events are normalized, they are fired\n * in the same order as non-normalized events. ie. pointer event 1st, mouse / touch 2nd\n */\n if (this.supportsPointerEvents)\n {\n window.document.addEventListener('pointermove', this.onPointerMove, true);\n this.interactionDOMElement.addEventListener('pointerdown', this.onPointerDown, true);\n // pointerout is fired in addition to pointerup (for touch events) and pointercancel\n // we already handle those, so for the purposes of what we do in onPointerOut, we only\n // care about the pointerleave event\n this.interactionDOMElement.addEventListener('pointerleave', this.onPointerOut, true);\n this.interactionDOMElement.addEventListener('pointerover', this.onPointerOver, true);\n window.addEventListener('pointercancel', this.onPointerCancel, true);\n window.addEventListener('pointerup', this.onPointerUp, true);\n }\n else\n {\n window.document.addEventListener('mousemove', this.onPointerMove, true);\n this.interactionDOMElement.addEventListener('mousedown', this.onPointerDown, true);\n this.interactionDOMElement.addEventListener('mouseout', this.onPointerOut, true);\n this.interactionDOMElement.addEventListener('mouseover', this.onPointerOver, true);\n window.addEventListener('mouseup', this.onPointerUp, true);\n }\n\n // always look directly for touch events so that we can provide original data\n // In a future version we should change this to being just a fallback and rely solely on\n // PointerEvents whenever available\n if (this.supportsTouchEvents)\n {\n this.interactionDOMElement.addEventListener('touchstart', this.onPointerDown, true);\n this.interactionDOMElement.addEventListener('touchcancel', this.onPointerCancel, true);\n this.interactionDOMElement.addEventListener('touchend', this.onPointerUp, true);\n this.interactionDOMElement.addEventListener('touchmove', this.onPointerMove, true);\n }\n\n this.eventsAdded = true;\n };\n\n /**\n * Removes all the DOM events that were previously registered\n *\n * @private\n */\n InteractionManager.prototype.removeEvents = function removeEvents ()\n {\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n Ticker.system.remove(this.update, this);\n\n if (window.navigator.msPointerEnabled)\n {\n this.interactionDOMElement.style['-ms-content-zooming'] = '';\n this.interactionDOMElement.style['-ms-touch-action'] = '';\n }\n else if (this.supportsPointerEvents)\n {\n this.interactionDOMElement.style['touch-action'] = '';\n }\n\n if (this.supportsPointerEvents)\n {\n window.document.removeEventListener('pointermove', this.onPointerMove, true);\n this.interactionDOMElement.removeEventListener('pointerdown', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('pointerleave', this.onPointerOut, true);\n this.interactionDOMElement.removeEventListener('pointerover', this.onPointerOver, true);\n window.removeEventListener('pointercancel', this.onPointerCancel, true);\n window.removeEventListener('pointerup', this.onPointerUp, true);\n }\n else\n {\n window.document.removeEventListener('mousemove', this.onPointerMove, true);\n this.interactionDOMElement.removeEventListener('mousedown', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('mouseout', this.onPointerOut, true);\n this.interactionDOMElement.removeEventListener('mouseover', this.onPointerOver, true);\n window.removeEventListener('mouseup', this.onPointerUp, true);\n }\n\n if (this.supportsTouchEvents)\n {\n this.interactionDOMElement.removeEventListener('touchstart', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('touchcancel', this.onPointerCancel, true);\n this.interactionDOMElement.removeEventListener('touchend', this.onPointerUp, true);\n this.interactionDOMElement.removeEventListener('touchmove', this.onPointerMove, true);\n }\n\n this.interactionDOMElement = null;\n\n this.eventsAdded = false;\n };\n\n /**\n * Updates the state of interactive objects.\n * Invoked by a throttled ticker update from {@link PIXI.Ticker.system}.\n *\n * @param {number} deltaTime - time delta since last tick\n */\n InteractionManager.prototype.update = function update (deltaTime)\n {\n this._deltaTime += deltaTime;\n\n if (this._deltaTime < this.interactionFrequency)\n {\n return;\n }\n\n this._deltaTime = 0;\n\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n // if the user move the mouse this check has already been done using the mouse move!\n if (this.didMove)\n {\n this.didMove = false;\n\n return;\n }\n\n this.cursor = null;\n\n // Resets the flag as set by a stopPropagation call. This flag is usually reset by a user interaction of any kind,\n // but there was a scenario of a display object moving under a static mouse cursor.\n // In this case, mouseover and mouseevents would not pass the flag test in dispatchEvent function\n for (var k in this.activeInteractionData)\n {\n // eslint-disable-next-line no-prototype-builtins\n if (this.activeInteractionData.hasOwnProperty(k))\n {\n var interactionData = this.activeInteractionData[k];\n\n if (interactionData.originalEvent && interactionData.pointerType !== 'touch')\n {\n var interactionEvent = this.configureInteractionEventForDOMEvent(\n this.eventData,\n interactionData.originalEvent,\n interactionData\n );\n\n this.processInteractive(\n interactionEvent,\n this.renderer._lastObjectRendered,\n this.processPointerOverOut,\n true\n );\n }\n }\n }\n\n this.setCursorMode(this.cursor);\n };\n\n /**\n * Sets the current cursor mode, handling any callbacks or CSS style changes.\n *\n * @param {string} mode - cursor mode, a key from the cursorStyles dictionary\n */\n InteractionManager.prototype.setCursorMode = function setCursorMode (mode)\n {\n mode = mode || 'default';\n // if the mode didn't actually change, bail early\n if (this.currentCursorMode === mode)\n {\n return;\n }\n this.currentCursorMode = mode;\n var style = this.cursorStyles[mode];\n\n // only do things if there is a cursor style for it\n if (style)\n {\n switch (typeof style)\n {\n case 'string':\n // string styles are handled as cursor CSS\n this.interactionDOMElement.style.cursor = style;\n break;\n case 'function':\n // functions are just called, and passed the cursor mode\n style(mode);\n break;\n case 'object':\n // if it is an object, assume that it is a dictionary of CSS styles,\n // apply it to the interactionDOMElement\n Object.assign(this.interactionDOMElement.style, style);\n break;\n }\n }\n else if (typeof mode === 'string' && !Object.prototype.hasOwnProperty.call(this.cursorStyles, mode))\n {\n // if it mode is a string (not a Symbol) and cursorStyles doesn't have any entry\n // for the mode, then assume that the dev wants it to be CSS for the cursor.\n this.interactionDOMElement.style.cursor = mode;\n }\n };\n\n /**\n * Dispatches an event on the display object that was interacted with\n *\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question\n * @param {string} eventString - the name of the event (e.g, mousedown)\n * @param {object} eventData - the event data object\n * @private\n */\n InteractionManager.prototype.dispatchEvent = function dispatchEvent (displayObject, eventString, eventData)\n {\n // Even if the event was stopped, at least dispatch any remaining events\n // for the same display object.\n if (!eventData.stopPropagationHint || displayObject === eventData.stopsPropagatingAt)\n {\n eventData.currentTarget = displayObject;\n eventData.type = eventString;\n\n displayObject.emit(eventString, eventData);\n\n if (displayObject[eventString])\n {\n displayObject[eventString](eventData);\n }\n }\n };\n\n /**\n * Puts a event on a queue to be dispatched later. This is used to guarantee correct\n * ordering of over/out events.\n *\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question\n * @param {string} eventString - the name of the event (e.g, mousedown)\n * @param {object} eventData - the event data object\n * @private\n */\n InteractionManager.prototype.delayDispatchEvent = function delayDispatchEvent (displayObject, eventString, eventData)\n {\n this.delayedEvents.push({ displayObject: displayObject, eventString: eventString, eventData: eventData });\n };\n\n /**\n * Maps x and y coords from a DOM object and maps them correctly to the PixiJS view. The\n * resulting value is stored in the point. This takes into account the fact that the DOM\n * element could be scaled and positioned anywhere on the screen.\n *\n * @param {PIXI.Point} point - the point that the result will be stored in\n * @param {number} x - the x coord of the position to map\n * @param {number} y - the y coord of the position to map\n */\n InteractionManager.prototype.mapPositionToPoint = function mapPositionToPoint (point, x, y)\n {\n var rect;\n\n // IE 11 fix\n if (!this.interactionDOMElement.parentElement)\n {\n rect = { x: 0, y: 0, width: 0, height: 0 };\n }\n else\n {\n rect = this.interactionDOMElement.getBoundingClientRect();\n }\n\n var resolutionMultiplier = 1.0 / this.resolution;\n\n point.x = ((x - rect.left) * (this.interactionDOMElement.width / rect.width)) * resolutionMultiplier;\n point.y = ((y - rect.top) * (this.interactionDOMElement.height / rect.height)) * resolutionMultiplier;\n };\n\n /**\n * This function is provides a neat way of crawling through the scene graph and running a\n * specified function on all interactive objects it finds. It will also take care of hit\n * testing the interactive objects and passes the hit across in the function.\n *\n * @protected\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - event containing the point that\n * is tested for collision\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the displayObject\n * that will be hit test (recursively crawls its children)\n * @param {Function} [func] - the function that will be called on each interactive object. The\n * interactionEvent, displayObject and hit will be passed to the function\n * @param {boolean} [hitTest] - this indicates if the objects inside should be hit test against the point\n * @param {boolean} [interactive] - Whether the displayObject is interactive\n * @param {boolean} [skipDelayed] - Whether to process delayed events before returning. This is\n * used to avoid processing them too early during recursive calls.\n * @return {boolean} returns true if the displayObject hit the point\n */\n InteractionManager.prototype.processInteractive = function processInteractive (interactionEvent, displayObject, func, hitTest, interactive, skipDelayed)\n {\n if (!displayObject || !displayObject.visible)\n {\n return false;\n }\n\n var point = interactionEvent.data.global;\n\n // Took a little while to rework this function correctly! But now it is done and nice and optimized! ^_^\n //\n // This function will now loop through all objects and then only hit test the objects it HAS\n // to, not all of them. MUCH faster..\n // An object will be hit test if the following is true:\n //\n // 1: It is interactive.\n // 2: It belongs to a parent that is interactive AND one of the parents children have not already been hit.\n //\n // As another little optimization once an interactive object has been hit we can carry on\n // through the scenegraph, but we know that there will be no more hits! So we can avoid extra hit tests\n // A final optimization is that an object is not hit test directly if a child has already been hit.\n\n interactive = displayObject.interactive || interactive;\n\n var hit = false;\n var interactiveParent = interactive;\n\n // Flag here can set to false if the event is outside the parents hitArea or mask\n var hitTestChildren = true;\n\n // If there is a hitArea, no need to test against anything else if the pointer is not within the hitArea\n // There is also no longer a need to hitTest children.\n if (displayObject.hitArea)\n {\n if (hitTest)\n {\n displayObject.worldTransform.applyInverse(point, this._tempPoint);\n if (!displayObject.hitArea.contains(this._tempPoint.x, this._tempPoint.y))\n {\n hitTest = false;\n hitTestChildren = false;\n }\n else\n {\n hit = true;\n }\n }\n interactiveParent = false;\n }\n // If there is a mask, no need to hitTest against anything else if the pointer is not within the mask.\n // We still want to hitTestChildren, however, to ensure a mouseout can still be generated.\n // https://github.com/pixijs/pixi.js/issues/5135\n else if (displayObject._mask)\n {\n if (hitTest)\n {\n if (!(displayObject._mask.containsPoint && displayObject._mask.containsPoint(point)))\n {\n hitTest = false;\n }\n }\n }\n\n // ** FREE TIP **! If an object is not interactive or has no buttons in it\n // (such as a game scene!) set interactiveChildren to false for that displayObject.\n // This will allow PixiJS to completely ignore and bypass checking the displayObjects children.\n if (hitTestChildren && displayObject.interactiveChildren && displayObject.children)\n {\n var children = displayObject.children;\n\n for (var i = children.length - 1; i >= 0; i--)\n {\n var child = children[i];\n\n // time to get recursive.. if this function will return if something is hit..\n var childHit = this.processInteractive(interactionEvent, child, func, hitTest, interactiveParent, true);\n\n if (childHit)\n {\n // its a good idea to check if a child has lost its parent.\n // this means it has been removed whilst looping so its best\n if (!child.parent)\n {\n continue;\n }\n\n // we no longer need to hit test any more objects in this container as we we\n // now know the parent has been hit\n interactiveParent = false;\n\n // If the child is interactive , that means that the object hit was actually\n // interactive and not just the child of an interactive object.\n // This means we no longer need to hit test anything else. We still need to run\n // through all objects, but we don't need to perform any hit tests.\n\n if (childHit)\n {\n if (interactionEvent.target)\n {\n hitTest = false;\n }\n hit = true;\n }\n }\n }\n }\n\n // no point running this if the item is not interactive or does not have an interactive parent.\n if (interactive)\n {\n // if we are hit testing (as in we have no hit any objects yet)\n // We also don't need to worry about hit testing if once of the displayObjects children\n // has already been hit - but only if it was interactive, otherwise we need to keep\n // looking for an interactive child, just in case we hit one\n if (hitTest && !interactionEvent.target)\n {\n // already tested against hitArea if it is defined\n if (!displayObject.hitArea && displayObject.containsPoint)\n {\n if (displayObject.containsPoint(point))\n {\n hit = true;\n }\n }\n }\n\n if (displayObject.interactive)\n {\n if (hit && !interactionEvent.target)\n {\n interactionEvent.target = displayObject;\n }\n\n if (func)\n {\n func(interactionEvent, displayObject, !!hit);\n }\n }\n }\n\n var delayedEvents = this.delayedEvents;\n\n if (delayedEvents.length && !skipDelayed)\n {\n // Reset the propagation hint, because we start deeper in the tree again.\n interactionEvent.stopPropagationHint = false;\n\n var delayedLen = delayedEvents.length;\n\n this.delayedEvents = [];\n\n for (var i$1 = 0; i$1 < delayedLen; i$1++)\n {\n var ref = delayedEvents[i$1];\n var displayObject$1 = ref.displayObject;\n var eventString = ref.eventString;\n var eventData = ref.eventData;\n\n // When we reach the object we wanted to stop propagating at,\n // set the propagation hint.\n if (eventData.stopsPropagatingAt === displayObject$1)\n {\n eventData.stopPropagationHint = true;\n }\n\n this.dispatchEvent(displayObject$1, eventString, eventData);\n }\n }\n\n return hit;\n };\n\n /**\n * Is called when the pointer button is pressed down on the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being pressed down\n */\n InteractionManager.prototype.onPointerDown = function onPointerDown (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n /**\n * No need to prevent default on natural pointer events, as there are no side effects\n * Normalized events, however, may have the double mousedown/touchstart issue on the native android browser,\n * so still need to be prevented.\n */\n\n // Guaranteed that there will be at least one event in events, and all events must have the same pointer type\n\n if (this.autoPreventDefault && events[0].isNormalized)\n {\n var cancelable = originalEvent.cancelable || !('cancelable' in originalEvent);\n\n if (cancelable)\n {\n originalEvent.preventDefault();\n }\n }\n\n var eventLen = events.length;\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerDown, true);\n\n this.emit('pointerdown', interactionEvent);\n if (event.pointerType === 'touch')\n {\n this.emit('touchstart', interactionEvent);\n }\n // emit a mouse event for \"pen\" pointers, the way a browser would emit a fallback event\n else if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n var isRightButton = event.button === 2;\n\n this.emit(isRightButton ? 'rightdown' : 'mousedown', this.eventData);\n }\n }\n };\n\n /**\n * Processes the result of the pointer down check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerDown = function processPointerDown (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n var id = interactionEvent.data.identifier;\n\n if (hit)\n {\n if (!displayObject.trackedPointers[id])\n {\n displayObject.trackedPointers[id] = new InteractionTrackingData(id);\n }\n this.dispatchEvent(displayObject, 'pointerdown', interactionEvent);\n\n if (data.pointerType === 'touch')\n {\n this.dispatchEvent(displayObject, 'touchstart', interactionEvent);\n }\n else if (data.pointerType === 'mouse' || data.pointerType === 'pen')\n {\n var isRightButton = data.button === 2;\n\n if (isRightButton)\n {\n displayObject.trackedPointers[id].rightDown = true;\n }\n else\n {\n displayObject.trackedPointers[id].leftDown = true;\n }\n\n this.dispatchEvent(displayObject, isRightButton ? 'rightdown' : 'mousedown', interactionEvent);\n }\n }\n };\n\n /**\n * Is called when the pointer button is released on the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being released\n * @param {boolean} cancelled - true if the pointer is cancelled\n * @param {Function} func - Function passed to {@link processInteractive}\n */\n InteractionManager.prototype.onPointerComplete = function onPointerComplete (originalEvent, cancelled, func)\n {\n var events = this.normalizeToPointerData(originalEvent);\n\n var eventLen = events.length;\n\n // if the event wasn't targeting our canvas, then consider it to be pointerupoutside\n // in all cases (unless it was a pointercancel)\n var eventAppend = originalEvent.target !== this.interactionDOMElement ? 'outside' : '';\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n // perform hit testing for events targeting our canvas or cancel events\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, func, cancelled || !eventAppend);\n\n this.emit(cancelled ? 'pointercancel' : (\"pointerup\" + eventAppend), interactionEvent);\n\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n var isRightButton = event.button === 2;\n\n this.emit(isRightButton ? (\"rightup\" + eventAppend) : (\"mouseup\" + eventAppend), interactionEvent);\n }\n else if (event.pointerType === 'touch')\n {\n this.emit(cancelled ? 'touchcancel' : (\"touchend\" + eventAppend), interactionEvent);\n this.releaseInteractionDataForPointerId(event.pointerId, interactionData);\n }\n }\n };\n\n /**\n * Is called when the pointer button is cancelled\n *\n * @private\n * @param {PointerEvent} event - The DOM event of a pointer button being released\n */\n InteractionManager.prototype.onPointerCancel = function onPointerCancel (event)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && event.pointerType === 'touch') { return; }\n\n this.onPointerComplete(event, true, this.processPointerCancel);\n };\n\n /**\n * Processes the result of the pointer cancel check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n */\n InteractionManager.prototype.processPointerCancel = function processPointerCancel (interactionEvent, displayObject)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n if (displayObject.trackedPointers[id] !== undefined)\n {\n delete displayObject.trackedPointers[id];\n this.dispatchEvent(displayObject, 'pointercancel', interactionEvent);\n\n if (data.pointerType === 'touch')\n {\n this.dispatchEvent(displayObject, 'touchcancel', interactionEvent);\n }\n }\n };\n\n /**\n * Is called when the pointer button is released on the renderer element\n *\n * @private\n * @param {PointerEvent} event - The DOM event of a pointer button being released\n */\n InteractionManager.prototype.onPointerUp = function onPointerUp (event)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && event.pointerType === 'touch') { return; }\n\n this.onPointerComplete(event, false, this.processPointerUp);\n };\n\n /**\n * Processes the result of the pointer up check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerUp = function processPointerUp (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n var trackingData = displayObject.trackedPointers[id];\n\n var isTouch = data.pointerType === 'touch';\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n // need to track mouse down status in the mouse block so that we can emit\n // event in a later block\n var isMouseTap = false;\n\n // Mouse only\n if (isMouse)\n {\n var isRightButton = data.button === 2;\n\n var flags = InteractionTrackingData.FLAGS;\n\n var test = isRightButton ? flags.RIGHT_DOWN : flags.LEFT_DOWN;\n\n var isDown = trackingData !== undefined && (trackingData.flags & test);\n\n if (hit)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightup' : 'mouseup', interactionEvent);\n\n if (isDown)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightclick' : 'click', interactionEvent);\n // because we can confirm that the mousedown happened on this object, flag for later emit of pointertap\n isMouseTap = true;\n }\n }\n else if (isDown)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightupoutside' : 'mouseupoutside', interactionEvent);\n }\n // update the down state of the tracking data\n if (trackingData)\n {\n if (isRightButton)\n {\n trackingData.rightDown = false;\n }\n else\n {\n trackingData.leftDown = false;\n }\n }\n }\n\n // Pointers and Touches, and Mouse\n if (hit)\n {\n this.dispatchEvent(displayObject, 'pointerup', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchend', interactionEvent); }\n\n if (trackingData)\n {\n // emit pointertap if not a mouse, or if the mouse block decided it was a tap\n if (!isMouse || isMouseTap)\n {\n this.dispatchEvent(displayObject, 'pointertap', interactionEvent);\n }\n if (isTouch)\n {\n this.dispatchEvent(displayObject, 'tap', interactionEvent);\n // touches are no longer over (if they ever were) when we get the touchend\n // so we should ensure that we don't keep pretending that they are\n trackingData.over = false;\n }\n }\n }\n else if (trackingData)\n {\n this.dispatchEvent(displayObject, 'pointerupoutside', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchendoutside', interactionEvent); }\n }\n // Only remove the tracking data if there is no over/down state still associated with it\n if (trackingData && trackingData.none)\n {\n delete displayObject.trackedPointers[id];\n }\n };\n\n /**\n * Is called when the pointer moves across the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer moving\n */\n InteractionManager.prototype.onPointerMove = function onPointerMove (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n if (events[0].pointerType === 'mouse' || events[0].pointerType === 'pen')\n {\n this.didMove = true;\n\n this.cursor = null;\n }\n\n var eventLen = events.length;\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerMove, true);\n\n this.emit('pointermove', interactionEvent);\n if (event.pointerType === 'touch') { this.emit('touchmove', interactionEvent); }\n if (event.pointerType === 'mouse' || event.pointerType === 'pen') { this.emit('mousemove', interactionEvent); }\n }\n\n if (events[0].pointerType === 'mouse')\n {\n this.setCursorMode(this.cursor);\n\n // TODO BUG for parents interactive object (border order issue)\n }\n };\n\n /**\n * Processes the result of the pointer move check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerMove = function processPointerMove (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var isTouch = data.pointerType === 'touch';\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n\n if (isMouse)\n {\n this.processPointerOverOut(interactionEvent, displayObject, hit);\n }\n\n if (!this.moveWhenInside || hit)\n {\n this.dispatchEvent(displayObject, 'pointermove', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchmove', interactionEvent); }\n if (isMouse) { this.dispatchEvent(displayObject, 'mousemove', interactionEvent); }\n }\n };\n\n /**\n * Is called when the pointer is moved out of the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer being moved out\n */\n InteractionManager.prototype.onPointerOut = function onPointerOut (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n // Only mouse and pointer can call onPointerOut, so events will always be length 1\n var event = events[0];\n\n if (event.pointerType === 'mouse')\n {\n this.mouseOverRenderer = false;\n this.setCursorMode(null);\n }\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = event;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerOverOut, false);\n\n this.emit('pointerout', interactionEvent);\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n this.emit('mouseout', interactionEvent);\n }\n else\n {\n // we can get touchleave events after touchend, so we want to make sure we don't\n // introduce memory leaks\n this.releaseInteractionDataForPointerId(interactionData.identifier);\n }\n };\n\n /**\n * Processes the result of the pointer over/out check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerOverOut = function processPointerOverOut (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n\n var trackingData = displayObject.trackedPointers[id];\n\n // if we just moused over the display object, then we need to track that state\n if (hit && !trackingData)\n {\n trackingData = displayObject.trackedPointers[id] = new InteractionTrackingData(id);\n }\n\n if (trackingData === undefined) { return; }\n\n if (hit && this.mouseOverRenderer)\n {\n if (!trackingData.over)\n {\n trackingData.over = true;\n this.delayDispatchEvent(displayObject, 'pointerover', interactionEvent);\n if (isMouse)\n {\n this.delayDispatchEvent(displayObject, 'mouseover', interactionEvent);\n }\n }\n\n // only change the cursor if it has not already been changed (by something deeper in the\n // display tree)\n if (isMouse && this.cursor === null)\n {\n this.cursor = displayObject.cursor;\n }\n }\n else if (trackingData.over)\n {\n trackingData.over = false;\n this.dispatchEvent(displayObject, 'pointerout', this.eventData);\n if (isMouse)\n {\n this.dispatchEvent(displayObject, 'mouseout', interactionEvent);\n }\n // if there is no mouse down information for the pointer, then it is safe to delete\n if (trackingData.none)\n {\n delete displayObject.trackedPointers[id];\n }\n }\n };\n\n /**\n * Is called when the pointer is moved into the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being moved into the renderer view\n */\n InteractionManager.prototype.onPointerOver = function onPointerOver (originalEvent)\n {\n var events = this.normalizeToPointerData(originalEvent);\n\n // Only mouse and pointer can call onPointerOver, so events will always be length 1\n var event = events[0];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = event;\n\n if (event.pointerType === 'mouse')\n {\n this.mouseOverRenderer = true;\n }\n\n this.emit('pointerover', interactionEvent);\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n this.emit('mouseover', interactionEvent);\n }\n };\n\n /**\n * Get InteractionData for a given pointerId. Store that data as well\n *\n * @private\n * @param {PointerEvent} event - Normalized pointer event, output from normalizeToPointerData\n * @return {PIXI.interaction.InteractionData} - Interaction data for the given pointer identifier\n */\n InteractionManager.prototype.getInteractionDataForPointerId = function getInteractionDataForPointerId (event)\n {\n var pointerId = event.pointerId;\n\n var interactionData;\n\n if (pointerId === MOUSE_POINTER_ID || event.pointerType === 'mouse')\n {\n interactionData = this.mouse;\n }\n else if (this.activeInteractionData[pointerId])\n {\n interactionData = this.activeInteractionData[pointerId];\n }\n else\n {\n interactionData = this.interactionDataPool.pop() || new InteractionData();\n interactionData.identifier = pointerId;\n this.activeInteractionData[pointerId] = interactionData;\n }\n // copy properties from the event, so that we can make sure that touch/pointer specific\n // data is available\n interactionData.copyEvent(event);\n\n return interactionData;\n };\n\n /**\n * Return unused InteractionData to the pool, for a given pointerId\n *\n * @private\n * @param {number} pointerId - Identifier from a pointer event\n */\n InteractionManager.prototype.releaseInteractionDataForPointerId = function releaseInteractionDataForPointerId (pointerId)\n {\n var interactionData = this.activeInteractionData[pointerId];\n\n if (interactionData)\n {\n delete this.activeInteractionData[pointerId];\n interactionData.reset();\n this.interactionDataPool.push(interactionData);\n }\n };\n\n /**\n * Configure an InteractionEvent to wrap a DOM PointerEvent and InteractionData\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The event to be configured\n * @param {PointerEvent} pointerEvent - The DOM event that will be paired with the InteractionEvent\n * @param {PIXI.interaction.InteractionData} interactionData - The InteractionData that will be paired\n * with the InteractionEvent\n * @return {PIXI.interaction.InteractionEvent} the interaction event that was passed in\n */\n InteractionManager.prototype.configureInteractionEventForDOMEvent = function configureInteractionEventForDOMEvent (interactionEvent, pointerEvent, interactionData)\n {\n interactionEvent.data = interactionData;\n\n this.mapPositionToPoint(interactionData.global, pointerEvent.clientX, pointerEvent.clientY);\n\n // Not really sure why this is happening, but it's how a previous version handled things\n if (pointerEvent.pointerType === 'touch')\n {\n pointerEvent.globalX = interactionData.global.x;\n pointerEvent.globalY = interactionData.global.y;\n }\n\n interactionData.originalEvent = pointerEvent;\n interactionEvent.reset();\n\n return interactionEvent;\n };\n\n /**\n * Ensures that the original event object contains all data that a regular pointer event would have\n *\n * @private\n * @param {TouchEvent|MouseEvent|PointerEvent} event - The original event data from a touch or mouse event\n * @return {PointerEvent[]} An array containing a single normalized pointer event, in the case of a pointer\n * or mouse event, or a multiple normalized pointer events if there are multiple changed touches\n */\n InteractionManager.prototype.normalizeToPointerData = function normalizeToPointerData (event)\n {\n var normalizedEvents = [];\n\n if (this.supportsTouchEvents && event instanceof TouchEvent)\n {\n for (var i = 0, li = event.changedTouches.length; i < li; i++)\n {\n var touch = event.changedTouches[i];\n\n if (typeof touch.button === 'undefined') { touch.button = event.touches.length ? 1 : 0; }\n if (typeof touch.buttons === 'undefined') { touch.buttons = event.touches.length ? 1 : 0; }\n if (typeof touch.isPrimary === 'undefined')\n {\n touch.isPrimary = event.touches.length === 1 && event.type === 'touchstart';\n }\n if (typeof touch.width === 'undefined') { touch.width = touch.radiusX || 1; }\n if (typeof touch.height === 'undefined') { touch.height = touch.radiusY || 1; }\n if (typeof touch.tiltX === 'undefined') { touch.tiltX = 0; }\n if (typeof touch.tiltY === 'undefined') { touch.tiltY = 0; }\n if (typeof touch.pointerType === 'undefined') { touch.pointerType = 'touch'; }\n if (typeof touch.pointerId === 'undefined') { touch.pointerId = touch.identifier || 0; }\n if (typeof touch.pressure === 'undefined') { touch.pressure = touch.force || 0.5; }\n if (typeof touch.twist === 'undefined') { touch.twist = 0; }\n if (typeof touch.tangentialPressure === 'undefined') { touch.tangentialPressure = 0; }\n // TODO: Remove these, as layerX/Y is not a standard, is deprecated, has uneven\n // support, and the fill ins are not quite the same\n // offsetX/Y might be okay, but is not the same as clientX/Y when the canvas's top\n // left is not 0,0 on the page\n if (typeof touch.layerX === 'undefined') { touch.layerX = touch.offsetX = touch.clientX; }\n if (typeof touch.layerY === 'undefined') { touch.layerY = touch.offsetY = touch.clientY; }\n\n // mark the touch as normalized, just so that we know we did it\n touch.isNormalized = true;\n\n normalizedEvents.push(touch);\n }\n }\n // apparently PointerEvent subclasses MouseEvent, so yay\n else if (event instanceof MouseEvent && (!this.supportsPointerEvents || !(event instanceof window.PointerEvent)))\n {\n if (typeof event.isPrimary === 'undefined') { event.isPrimary = true; }\n if (typeof event.width === 'undefined') { event.width = 1; }\n if (typeof event.height === 'undefined') { event.height = 1; }\n if (typeof event.tiltX === 'undefined') { event.tiltX = 0; }\n if (typeof event.tiltY === 'undefined') { event.tiltY = 0; }\n if (typeof event.pointerType === 'undefined') { event.pointerType = 'mouse'; }\n if (typeof event.pointerId === 'undefined') { event.pointerId = MOUSE_POINTER_ID; }\n if (typeof event.pressure === 'undefined') { event.pressure = 0.5; }\n if (typeof event.twist === 'undefined') { event.twist = 0; }\n if (typeof event.tangentialPressure === 'undefined') { event.tangentialPressure = 0; }\n\n // mark the mouse event as normalized, just so that we know we did it\n event.isNormalized = true;\n\n normalizedEvents.push(event);\n }\n else\n {\n normalizedEvents.push(event);\n }\n\n return normalizedEvents;\n };\n\n /**\n * Destroys the interaction manager\n *\n */\n InteractionManager.prototype.destroy = function destroy ()\n {\n this.removeEvents();\n\n this.removeAllListeners();\n\n this.renderer = null;\n\n this.mouse = null;\n\n this.eventData = null;\n\n this.interactionDOMElement = null;\n\n this.onPointerDown = null;\n this.processPointerDown = null;\n\n this.onPointerUp = null;\n this.processPointerUp = null;\n\n this.onPointerCancel = null;\n this.processPointerCancel = null;\n\n this.onPointerMove = null;\n this.processPointerMove = null;\n\n this.onPointerOut = null;\n this.processPointerOverOut = null;\n\n this.onPointerOver = null;\n\n this._tempPoint = null;\n };\n\n return InteractionManager;\n}(EventEmitter));\n\n/**\n * This namespace contains a renderer plugin for handling mouse, pointer, and touch events.\n *\n * Do not instantiate this plugin directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @namespace PIXI.interaction\n */\n\nexport { InteractionData, InteractionEvent, InteractionManager, InteractionTrackingData, interactiveTarget };\n//# sourceMappingURL=interaction.es.js.map\n","/*!\n * @pixi/graphics - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/graphics is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture, BaseTexture, BatchDrawCall, BatchGeometry, UniformGroup, Shader, State } from '@pixi/core';\nimport { SHAPES, Point, PI_2, Polygon, Rectangle, RoundedRectangle, Circle, Ellipse, Matrix } from '@pixi/math';\nimport { earcut, premultiplyTint, hex2rgb } from '@pixi/utils';\nimport { Bounds, Container } from '@pixi/display';\nimport { WRAP_MODES, DRAW_MODES, BLEND_MODES } from '@pixi/constants';\n\n/**\n * Graphics curves resolution settings. If `adaptive` flag is set to `true`,\n * the resolution is calculated based on the curve's length to ensure better visual quality.\n * Adaptive draw works with `bezierCurveTo` and `quadraticCurveTo`.\n *\n * @static\n * @constant\n * @memberof PIXI\n * @name GRAPHICS_CURVES\n * @type {object}\n * @property {boolean} adaptive=false - flag indicating if the resolution should be adaptive\n * @property {number} maxLength=10 - maximal length of a single segment of the curve (if adaptive = false, ignored)\n * @property {number} minSegments=8 - minimal number of segments in the curve (if adaptive = false, ignored)\n * @property {number} maxSegments=2048 - maximal number of segments in the curve (if adaptive = false, ignored)\n */\nvar GRAPHICS_CURVES = {\n adaptive: true,\n maxLength: 10,\n minSegments: 8,\n maxSegments: 2048,\n _segmentsCount: function _segmentsCount(length, defaultSegments)\n {\n if ( defaultSegments === void 0 ) defaultSegments = 20;\n\n if (!this.adaptive)\n {\n return defaultSegments;\n }\n\n var result = Math.ceil(length / this.maxLength);\n\n if (result < this.minSegments)\n {\n result = this.minSegments;\n }\n else if (result > this.maxSegments)\n {\n result = this.maxSegments;\n }\n\n return result;\n },\n};\n\n/**\n * Fill style object for Graphics.\n *\n * @class\n * @memberof PIXI\n */\nvar FillStyle = function FillStyle()\n{\n this.reset();\n};\n\n/**\n * Clones the object\n *\n * @return {PIXI.FillStyle}\n */\nFillStyle.prototype.clone = function clone ()\n{\n var obj = new FillStyle();\n\n obj.color = this.color;\n obj.alpha = this.alpha;\n obj.texture = this.texture;\n obj.matrix = this.matrix;\n obj.visible = this.visible;\n\n return obj;\n};\n\n/**\n * Reset\n */\nFillStyle.prototype.reset = function reset ()\n{\n /**\n * The hex color value used when coloring the Graphics object.\n *\n * @member {number}\n * @default 1\n */\n this.color = 0xFFFFFF;\n\n /**\n * The alpha value used when filling the Graphics object.\n *\n * @member {number}\n * @default 1\n */\n this.alpha = 1;\n\n /**\n * The texture to be used for the fill.\n *\n * @member {string}\n * @default 0\n */\n this.texture = Texture.WHITE;\n\n /**\n * The transform aplpied to the texture.\n *\n * @member {string}\n * @default 0\n */\n this.matrix = null;\n\n /**\n * If the current fill is visible.\n *\n * @member {boolean}\n * @default false\n */\n this.visible = false;\n};\n\n/**\n * Destroy and don't use after this\n */\nFillStyle.prototype.destroy = function destroy ()\n{\n this.texture = null;\n this.matrix = null;\n};\n\n/**\n * A class to contain data useful for Graphics objects\n *\n * @class\n * @memberof PIXI\n */\nvar GraphicsData = function GraphicsData(shape, fillStyle, lineStyle, matrix)\n{\n if ( fillStyle === void 0 ) fillStyle = null;\n if ( lineStyle === void 0 ) lineStyle = null;\n if ( matrix === void 0 ) matrix = null;\n\n /**\n * The shape object to draw.\n * @member {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle}\n */\n this.shape = shape;\n\n /**\n * The style of the line.\n * @member {PIXI.LineStyle}\n */\n this.lineStyle = lineStyle;\n\n /**\n * The style of the fill.\n * @member {PIXI.FillStyle}\n */\n this.fillStyle = fillStyle;\n\n /**\n * The transform matrix.\n * @member {PIXI.Matrix}\n */\n this.matrix = matrix;\n\n /**\n * The type of the shape, see the Const.Shapes file for all the existing types,\n * @member {number}\n */\n this.type = shape.type;\n\n /**\n * The collection of points.\n * @member {number[]}\n */\n this.points = [];\n\n /**\n * The collection of holes.\n * @member {PIXI.GraphicsData[]}\n */\n this.holes = [];\n};\n\n/**\n * Creates a new GraphicsData object with the same values as this one.\n *\n * @return {PIXI.GraphicsData} Cloned GraphicsData object\n */\nGraphicsData.prototype.clone = function clone ()\n{\n return new GraphicsData(\n this.shape,\n this.fillStyle,\n this.lineStyle,\n this.matrix\n );\n};\n\n/**\n * Destroys the Graphics data.\n */\nGraphicsData.prototype.destroy = function destroy ()\n{\n this.shape = null;\n this.holes.length = 0;\n this.holes = null;\n this.points.length = 0;\n this.points = null;\n this.lineStyle = null;\n this.fillStyle = null;\n};\n\n/**\n * Builds a circle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object to draw\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildCircle = {\n\n build: function build(graphicsData)\n {\n // need to convert points to a nice regular data\n var circleData = graphicsData.shape;\n var points = graphicsData.points;\n var x = circleData.x;\n var y = circleData.y;\n var width;\n var height;\n\n points.length = 0;\n\n // TODO - bit hacky??\n if (graphicsData.type === SHAPES.CIRC)\n {\n width = circleData.radius;\n height = circleData.radius;\n }\n else\n {\n width = circleData.width;\n height = circleData.height;\n }\n\n if (width === 0 || height === 0)\n {\n return;\n }\n\n var totalSegs = Math.floor(30 * Math.sqrt(circleData.radius))\n || Math.floor(15 * Math.sqrt(circleData.width + circleData.height));\n\n totalSegs /= 2.3;\n\n var seg = (Math.PI * 2) / totalSegs;\n\n for (var i = 0; i < totalSegs; i++)\n {\n points.push(\n x + (Math.sin(-seg * i) * width),\n y + (Math.cos(-seg * i) * height)\n );\n }\n\n points.push(\n points[0],\n points[1]\n );\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n var vertPos = verts.length / 2;\n var center = vertPos;\n\n verts.push(graphicsData.shape.x, graphicsData.shape.y);\n\n for (var i = 0; i < points.length; i += 2)\n {\n verts.push(points[i], points[i + 1]);\n\n // add some uvs\n indices.push(vertPos++, center, vertPos);\n }\n },\n};\n\n/**\n * Builds a line to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildLine (graphicsData, graphicsGeometry)\n{\n if (graphicsData.lineStyle.native)\n {\n buildNativeLine(graphicsData, graphicsGeometry);\n }\n else\n {\n buildLine$1(graphicsData, graphicsGeometry);\n }\n}\n\n/**\n * Builds a line to draw using the polygon method.\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildLine$1(graphicsData, graphicsGeometry)\n{\n var shape = graphicsData.shape;\n var points = graphicsData.points || shape.points.slice();\n var eps = graphicsGeometry.closePointEps;\n\n if (points.length === 0)\n {\n return;\n }\n // if the line width is an odd number add 0.5 to align to a whole pixel\n // commenting this out fixes #711 and #1620\n // if (graphicsData.lineWidth%2)\n // {\n // for (i = 0; i < points.length; i++)\n // {\n // points[i] += 0.5;\n // }\n // }\n\n var style = graphicsData.lineStyle;\n\n // get first and last point.. figure out the middle!\n var firstPoint = new Point(points[0], points[1]);\n var lastPoint = new Point(points[points.length - 2], points[points.length - 1]);\n var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke;\n var closedPath = Math.abs(firstPoint.x - lastPoint.x) < eps\n && Math.abs(firstPoint.y - lastPoint.y) < eps;\n\n // if the first point is the last point - gonna have issues :)\n if (closedShape)\n {\n // need to clone as we are going to slightly modify the shape..\n points = points.slice();\n\n if (closedPath)\n {\n points.pop();\n points.pop();\n lastPoint.set(points[points.length - 2], points[points.length - 1]);\n }\n\n var midPointX = lastPoint.x + ((firstPoint.x - lastPoint.x) * 0.5);\n var midPointY = lastPoint.y + ((firstPoint.y - lastPoint.y) * 0.5);\n\n points.unshift(midPointX, midPointY);\n points.push(midPointX, midPointY);\n }\n\n var verts = graphicsGeometry.points;\n var length = points.length / 2;\n var indexCount = points.length;\n var indexStart = verts.length / 2;\n\n // DRAW the Line\n var width = style.width / 2;\n\n // sort color\n var p1x = points[0];\n var p1y = points[1];\n var p2x = points[2];\n var p2y = points[3];\n var p3x = 0;\n var p3y = 0;\n\n var perpx = -(p1y - p2y);\n var perpy = p1x - p2x;\n var perp2x = 0;\n var perp2y = 0;\n var perp3x = 0;\n var perp3y = 0;\n\n var dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n var ratio = style.alignment;// 0.5;\n var r1 = (1 - ratio) * 2;\n var r2 = ratio * 2;\n\n // start\n verts.push(\n p1x - (perpx * r1),\n p1y - (perpy * r1));\n\n verts.push(\n p1x + (perpx * r2),\n p1y + (perpy * r2));\n\n for (var i = 1; i < length - 1; ++i)\n {\n p1x = points[(i - 1) * 2];\n p1y = points[((i - 1) * 2) + 1];\n\n p2x = points[i * 2];\n p2y = points[(i * 2) + 1];\n\n p3x = points[(i + 1) * 2];\n p3y = points[((i + 1) * 2) + 1];\n\n perpx = -(p1y - p2y);\n perpy = p1x - p2x;\n\n dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n perp2x = -(p2y - p3y);\n perp2y = p2x - p3x;\n\n dist = Math.sqrt((perp2x * perp2x) + (perp2y * perp2y));\n perp2x /= dist;\n perp2y /= dist;\n perp2x *= width;\n perp2y *= width;\n\n var a1 = (-perpy + p1y) - (-perpy + p2y);\n var b1 = (-perpx + p2x) - (-perpx + p1x);\n var c1 = ((-perpx + p1x) * (-perpy + p2y)) - ((-perpx + p2x) * (-perpy + p1y));\n var a2 = (-perp2y + p3y) - (-perp2y + p2y);\n var b2 = (-perp2x + p2x) - (-perp2x + p3x);\n var c2 = ((-perp2x + p3x) * (-perp2y + p2y)) - ((-perp2x + p2x) * (-perp2y + p3y));\n\n var denom = (a1 * b2) - (a2 * b1);\n\n if (Math.abs(denom) < 0.1)\n {\n denom += 10.1;\n verts.push(\n p2x - (perpx * r1),\n p2y - (perpy * r1));\n\n verts.push(\n p2x + (perpx * r2),\n p2y + (perpy * r2));\n\n continue;\n }\n\n var px = ((b1 * c2) - (b2 * c1)) / denom;\n var py = ((a2 * c1) - (a1 * c2)) / denom;\n var pdist = ((px - p2x) * (px - p2x)) + ((py - p2y) * (py - p2y));\n\n if (pdist > (196 * width * width))\n {\n perp3x = perpx - perp2x;\n perp3y = perpy - perp2y;\n\n dist = Math.sqrt((perp3x * perp3x) + (perp3y * perp3y));\n perp3x /= dist;\n perp3y /= dist;\n perp3x *= width;\n perp3y *= width;\n\n verts.push(p2x - (perp3x * r1), p2y - (perp3y * r1));\n\n verts.push(p2x + (perp3x * r2), p2y + (perp3y * r2));\n\n verts.push(p2x - (perp3x * r2 * r1), p2y - (perp3y * r1));\n\n indexCount++;\n }\n else\n {\n verts.push(p2x + ((px - p2x) * r1), p2y + ((py - p2y) * r1));\n\n verts.push(p2x - ((px - p2x) * r2), p2y - ((py - p2y) * r2));\n }\n }\n\n p1x = points[(length - 2) * 2];\n p1y = points[((length - 2) * 2) + 1];\n\n p2x = points[(length - 1) * 2];\n p2y = points[((length - 1) * 2) + 1];\n\n perpx = -(p1y - p2y);\n perpy = p1x - p2x;\n\n dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n verts.push(p2x - (perpx * r1), p2y - (perpy * r1));\n\n verts.push(p2x + (perpx * r2), p2y + (perpy * r2));\n\n var indices = graphicsGeometry.indices;\n\n // indices.push(indexStart);\n\n for (var i$1 = 0; i$1 < indexCount - 2; ++i$1)\n {\n indices.push(indexStart, indexStart + 1, indexStart + 2);\n\n indexStart++;\n }\n}\n\n/**\n * Builds a line to draw using the gl.drawArrays(gl.LINES) method\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildNativeLine(graphicsData, graphicsGeometry)\n{\n var i = 0;\n\n var shape = graphicsData.shape;\n var points = graphicsData.points || shape.points;\n var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke;\n\n if (points.length === 0) { return; }\n\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n var length = points.length / 2;\n\n var startIndex = verts.length / 2;\n var currentIndex = startIndex;\n\n verts.push(points[0], points[1]);\n\n for (i = 1; i < length; i++)\n {\n verts.push(points[i * 2], points[(i * 2) + 1]);\n indices.push(currentIndex, currentIndex + 1);\n\n currentIndex++;\n }\n\n if (closedShape)\n {\n indices.push(currentIndex, startIndex);\n }\n}\n\n/**\n * Builds a polygon to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildPoly = {\n\n build: function build(graphicsData)\n {\n graphicsData.points = graphicsData.shape.points.slice();\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var holes = graphicsData.holes;\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n if (points.length >= 6)\n {\n var holeArray = [];\n // Process holes..\n\n for (var i = 0; i < holes.length; i++)\n {\n var hole = holes[i];\n\n holeArray.push(points.length / 2);\n points = points.concat(hole.points);\n }\n\n // sort color\n var triangles = earcut(points, holeArray, 2);\n\n if (!triangles)\n {\n return;\n }\n\n var vertPos = verts.length / 2;\n\n for (var i$1 = 0; i$1 < triangles.length; i$1 += 3)\n {\n indices.push(triangles[i$1] + vertPos);\n indices.push(triangles[i$1 + 1] + vertPos);\n indices.push(triangles[i$1 + 2] + vertPos);\n }\n\n for (var i$2 = 0; i$2 < points.length; i$2++)\n {\n verts.push(points[i$2]);\n }\n }\n },\n};\n\n/**\n * Builds a rectangle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildRectangle = {\n\n build: function build(graphicsData)\n {\n // --- //\n // need to convert points to a nice regular data\n //\n var rectData = graphicsData.shape;\n var x = rectData.x;\n var y = rectData.y;\n var width = rectData.width;\n var height = rectData.height;\n\n var points = graphicsData.points;\n\n points.length = 0;\n\n points.push(x, y,\n x + width, y,\n x + width, y + height,\n x, y + height);\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var verts = graphicsGeometry.points;\n\n var vertPos = verts.length / 2;\n\n verts.push(points[0], points[1],\n points[2], points[3],\n points[6], points[7],\n points[4], points[5]);\n\n graphicsGeometry.indices.push(vertPos, vertPos + 1, vertPos + 2,\n vertPos + 1, vertPos + 2, vertPos + 3);\n },\n};\n\n/**\n * Builds a rounded rectangle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildRoundedRectangle = {\n\n build: function build(graphicsData)\n {\n var rrectData = graphicsData.shape;\n var points = graphicsData.points;\n var x = rrectData.x;\n var y = rrectData.y;\n var width = rrectData.width;\n var height = rrectData.height;\n\n var radius = rrectData.radius;\n\n points.length = 0;\n\n quadraticBezierCurve(x, y + radius,\n x, y,\n x + radius, y,\n points);\n quadraticBezierCurve(x + width - radius,\n y, x + width, y,\n x + width, y + radius,\n points);\n quadraticBezierCurve(x + width, y + height - radius,\n x + width, y + height,\n x + width - radius, y + height,\n points);\n quadraticBezierCurve(x + radius, y + height,\n x, y + height,\n x, y + height - radius,\n points);\n\n // this tiny number deals with the issue that occurs when points overlap and earcut fails to triangulate the item.\n // TODO - fix this properly, this is not very elegant.. but it works for now.\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n var vecPos = verts.length / 2;\n\n var triangles = earcut(points, null, 2);\n\n for (var i = 0, j = triangles.length; i < j; i += 3)\n {\n indices.push(triangles[i] + vecPos);\n // indices.push(triangles[i] + vecPos);\n indices.push(triangles[i + 1] + vecPos);\n // indices.push(triangles[i + 2] + vecPos);\n indices.push(triangles[i + 2] + vecPos);\n }\n\n for (var i$1 = 0, j$1 = points.length; i$1 < j$1; i$1++)\n {\n verts.push(points[i$1], points[++i$1]);\n }\n },\n};\n\n/**\n * Calculate a single point for a quadratic bezier curve.\n * Utility function used by quadraticBezierCurve.\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {number} n1 - first number\n * @param {number} n2 - second number\n * @param {number} perc - percentage\n * @return {number} the result\n *\n */\nfunction getPt(n1, n2, perc)\n{\n var diff = n2 - n1;\n\n return n1 + (diff * perc);\n}\n\n/**\n * Calculate the points for a quadratic bezier curve. (helper function..)\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {number} fromX - Origin point x\n * @param {number} fromY - Origin point x\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} [out=[]] - The output array to add points into. If not passed, a new array is created.\n * @return {number[]} an array of points\n */\nfunction quadraticBezierCurve(fromX, fromY, cpX, cpY, toX, toY, out)\n{\n if ( out === void 0 ) out = [];\n\n var n = 20;\n var points = out;\n\n var xa = 0;\n var ya = 0;\n var xb = 0;\n var yb = 0;\n var x = 0;\n var y = 0;\n\n for (var i = 0, j = 0; i <= n; ++i)\n {\n j = i / n;\n\n // The Green Line\n xa = getPt(fromX, cpX, j);\n ya = getPt(fromY, cpY, j);\n xb = getPt(cpX, toX, j);\n yb = getPt(cpY, toY, j);\n\n // The Black Dot\n x = getPt(xa, xb, j);\n y = getPt(ya, yb, j);\n\n points.push(x, y);\n }\n\n return points;\n}\n\nvar BATCH_POOL = [];\nvar DRAW_CALL_POOL = [];\nvar tmpPoint = new Point();\n\n/**\n * Map of fill commands for each shape type.\n *\n * @member {Object}\n * @private\n */\nvar fillCommands = {};\n\nfillCommands[SHAPES.POLY] = buildPoly;\nfillCommands[SHAPES.CIRC] = buildCircle;\nfillCommands[SHAPES.ELIP] = buildCircle;\nfillCommands[SHAPES.RECT] = buildRectangle;\nfillCommands[SHAPES.RREC] = buildRoundedRectangle;\n\n/**\n * A little internal structure to hold interim batch objects.\n *\n * @private\n */\nvar BatchPart = function BatchPart()\n{\n this.style = null;\n this.size = 0;\n this.start = 0;\n this.attribStart = 0;\n this.attribSize = 0;\n};\n\n/**\n * The Graphics class contains methods used to draw primitive shapes such as lines, circles and\n * rectangles to the display, and to color and fill them.\n *\n * GraphicsGeometry is designed to not be continually updating the geometry since it's expensive\n * to re-tesselate using **earcut**. Consider using {@link PIXI.Mesh} for this use-case, it's much faster.\n *\n * @class\n * @extends PIXI.BatchGeometry\n * @memberof PIXI\n */\nvar GraphicsGeometry = /*@__PURE__*/(function (BatchGeometry) {\n function GraphicsGeometry()\n {\n BatchGeometry.call(this);\n\n /**\n * An array of points to draw, 2 numbers per point\n *\n * @member {number[]}\n * @protected\n */\n this.points = [];\n\n /**\n * The collection of colors\n *\n * @member {number[]}\n * @protected\n */\n this.colors = [];\n\n /**\n * The UVs collection\n *\n * @member {number[]}\n * @protected\n */\n this.uvs = [];\n\n /**\n * The indices of the vertices\n *\n * @member {number[]}\n * @protected\n */\n this.indices = [];\n\n /**\n * Reference to the texture IDs.\n *\n * @member {number[]}\n * @protected\n */\n this.textureIds = [];\n\n /**\n * The collection of drawn shapes.\n *\n * @member {PIXI.GraphicsData[]}\n * @protected\n */\n this.graphicsData = [];\n\n /**\n * Used to detect if the graphics object has changed.\n *\n * @member {number}\n * @protected\n */\n this.dirty = 0;\n\n /**\n * Batches need to regenerated if the geometry is updated.\n *\n * @member {number}\n * @protected\n */\n this.batchDirty = -1;\n\n /**\n * Used to check if the cache is dirty.\n *\n * @member {number}\n * @protected\n */\n this.cacheDirty = -1;\n\n /**\n * Used to detect if we cleared the graphicsData.\n *\n * @member {number}\n * @default 0\n * @protected\n */\n this.clearDirty = 0;\n\n /**\n * List of current draw calls drived from the batches.\n *\n * @member {object[]}\n * @protected\n */\n this.drawCalls = [];\n\n /**\n * Intermediate abstract format sent to batch system.\n * Can be converted to drawCalls or to batchable objects.\n *\n * @member {object[]}\n * @protected\n */\n this.batches = [];\n\n /**\n * Index of the last batched shape in the stack of calls.\n *\n * @member {number}\n * @protected\n */\n this.shapeIndex = 0;\n\n /**\n * Cached bounds.\n *\n * @member {PIXI.Bounds}\n * @protected\n */\n this._bounds = new Bounds();\n\n /**\n * The bounds dirty flag.\n *\n * @member {number}\n * @protected\n */\n this.boundsDirty = -1;\n\n /**\n * Padding to add to the bounds.\n *\n * @member {number}\n * @default 0\n */\n this.boundsPadding = 0;\n\n this.batchable = false;\n\n this.indicesUint16 = null;\n\n this.uvsFloat32 = null;\n\n /**\n * Minimal distance between points that are considered different.\n * Affects line tesselation.\n *\n * @member {number}\n */\n this.closePointEps = 1e-4;\n }\n\n if ( BatchGeometry ) GraphicsGeometry.__proto__ = BatchGeometry;\n GraphicsGeometry.prototype = Object.create( BatchGeometry && BatchGeometry.prototype );\n GraphicsGeometry.prototype.constructor = GraphicsGeometry;\n\n var prototypeAccessors = { bounds: { configurable: true } };\n\n /**\n * Get the current bounds of the graphic geometry.\n *\n * @member {PIXI.Bounds}\n * @readonly\n */\n prototypeAccessors.bounds.get = function ()\n {\n if (this.boundsDirty !== this.dirty)\n {\n this.boundsDirty = this.dirty;\n this.calculateBounds();\n }\n\n return this._bounds;\n };\n\n /**\n * Call if you changed graphicsData manually.\n * Empties all batch buffers.\n */\n GraphicsGeometry.prototype.invalidate = function invalidate ()\n {\n this.boundsDirty = -1;\n this.dirty++;\n this.batchDirty++;\n this.shapeIndex = 0;\n\n this.points.length = 0;\n this.colors.length = 0;\n this.uvs.length = 0;\n this.indices.length = 0;\n this.textureIds.length = 0;\n\n for (var i = 0; i < this.drawCalls.length; i++)\n {\n this.drawCalls[i].textures.length = 0;\n DRAW_CALL_POOL.push(this.drawCalls[i]);\n }\n\n this.drawCalls.length = 0;\n\n for (var i$1 = 0; i$1 < this.batches.length; i$1++)\n {\n var batch = this.batches[i$1];\n\n batch.start = 0;\n batch.attribStart = 0;\n batch.style = null;\n BATCH_POOL.push(batch);\n }\n\n this.batches.length = 0;\n };\n\n /**\n * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings.\n *\n * @return {PIXI.GraphicsGeometry} This GraphicsGeometry object. Good for chaining method calls\n */\n GraphicsGeometry.prototype.clear = function clear ()\n {\n if (this.graphicsData.length > 0)\n {\n this.invalidate();\n this.clearDirty++;\n this.graphicsData.length = 0;\n }\n\n return this;\n };\n\n /**\n * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw.\n * @param {PIXI.FillStyle} fillStyle - Defines style of the fill.\n * @param {PIXI.LineStyle} lineStyle - Defines style of the lines.\n * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape.\n * @return {PIXI.GraphicsGeometry} Returns geometry for chaining.\n */\n GraphicsGeometry.prototype.drawShape = function drawShape (shape, fillStyle, lineStyle, matrix)\n {\n var data = new GraphicsData(shape, fillStyle, lineStyle, matrix);\n\n this.graphicsData.push(data);\n this.dirty++;\n\n return this;\n };\n\n /**\n * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw.\n * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape.\n * @return {PIXI.GraphicsGeometry} Returns geometry for chaining.\n */\n GraphicsGeometry.prototype.drawHole = function drawHole (shape, matrix)\n {\n if (!this.graphicsData.length)\n {\n return null;\n }\n\n var data = new GraphicsData(shape, null, null, matrix);\n\n var lastShape = this.graphicsData[this.graphicsData.length - 1];\n\n data.lineStyle = lastShape.lineStyle;\n\n lastShape.holes.push(data);\n\n this.dirty++;\n\n return this;\n };\n\n /**\n * Destroys the Graphics object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n GraphicsGeometry.prototype.destroy = function destroy (options)\n {\n BatchGeometry.prototype.destroy.call(this, options);\n\n // destroy each of the GraphicsData objects\n for (var i = 0; i < this.graphicsData.length; ++i)\n {\n this.graphicsData[i].destroy();\n }\n\n this.points.length = 0;\n this.points = null;\n this.colors.length = 0;\n this.colors = null;\n this.uvs.length = 0;\n this.uvs = null;\n this.indices.length = 0;\n this.indices = null;\n this.indexBuffer.destroy();\n this.indexBuffer = null;\n this.graphicsData.length = 0;\n this.graphicsData = null;\n this.drawCalls.length = 0;\n this.drawCalls = null;\n this.batches.length = 0;\n this.batches = null;\n this._bounds = null;\n };\n\n /**\n * Check to see if a point is contained within this geometry.\n *\n * @param {PIXI.Point} point - Point to check if it's contained.\n * @return {Boolean} `true` if the point is contained within geometry.\n */\n GraphicsGeometry.prototype.containsPoint = function containsPoint (point)\n {\n var graphicsData = this.graphicsData;\n\n for (var i = 0; i < graphicsData.length; ++i)\n {\n var data = graphicsData[i];\n\n if (!data.fillStyle.visible)\n {\n continue;\n }\n\n // only deal with fills..\n if (data.shape)\n {\n if (data.matrix)\n {\n data.matrix.applyInverse(point, tmpPoint);\n }\n else\n {\n tmpPoint.copyFrom(point);\n }\n\n if (data.shape.contains(tmpPoint.x, tmpPoint.y))\n {\n if (data.holes)\n {\n for (var i$1 = 0; i$1 < data.holes.length; i$1++)\n {\n var hole = data.holes[i$1];\n\n if (hole.shape.contains(tmpPoint.x, tmpPoint.y))\n {\n return false;\n }\n }\n }\n\n return true;\n }\n }\n }\n\n return false;\n };\n\n /**\n * Generates intermediate batch data. Either gets converted to drawCalls\n * or used to convert to batch objects directly by the Graphics object.\n */\n GraphicsGeometry.prototype.updateBatches = function updateBatches ()\n {\n if (this.dirty === this.cacheDirty) { return; }\n if (this.graphicsData.length === 0)\n {\n this.batchable = true;\n\n return;\n }\n\n if (this.dirty !== this.cacheDirty)\n {\n for (var i = 0; i < this.graphicsData.length; i++)\n {\n var data = this.graphicsData[i];\n\n if (data.fillStyle && !data.fillStyle.texture.baseTexture.valid) { return; }\n if (data.lineStyle && !data.lineStyle.texture.baseTexture.valid) { return; }\n }\n }\n\n this.cacheDirty = this.dirty;\n\n var uvs = this.uvs;\n\n var batchPart = null;\n var currentTexture = null;\n var currentColor = 0;\n var currentNative = false;\n\n if (this.batches.length > 0)\n {\n batchPart = this.batches[this.batches.length - 1];\n\n var style = batchPart.style;\n\n currentTexture = style.texture.baseTexture;\n currentColor = style.color + style.alpha;\n currentNative = !!style.native;\n }\n\n for (var i$1 = this.shapeIndex; i$1 < this.graphicsData.length; i$1++)\n {\n this.shapeIndex++;\n\n var data$1 = this.graphicsData[i$1];\n var command = fillCommands[data$1.type];\n\n var fillStyle = data$1.fillStyle;\n var lineStyle = data$1.lineStyle;\n\n // build out the shapes points..\n command.build(data$1);\n\n if (data$1.matrix)\n {\n this.transformPoints(data$1.points, data$1.matrix);\n }\n\n for (var j = 0; j < 2; j++)\n {\n var style$1 = (j === 0) ? fillStyle : lineStyle;\n\n if (!style$1.visible) { continue; }\n\n var nextTexture = style$1.texture.baseTexture;\n\n var index$1 = this.indices.length;\n var attribIndex = this.points.length / 2;\n\n // close batch if style is different\n if (batchPart\n && (currentTexture !== nextTexture\n || currentColor !== (style$1.color + style$1.alpha)\n || currentNative !== !!style$1.native))\n {\n batchPart.size = index$1 - batchPart.start;\n batchPart.attribSize = attribIndex - batchPart.attribStart;\n\n if (batchPart.size > 0)\n {\n batchPart = null;\n }\n }\n // spawn new batch if its first batch or previous was closed\n if (!batchPart)\n {\n batchPart = BATCH_POOL.pop() || new BatchPart();\n this.batches.push(batchPart);\n nextTexture.wrapMode = WRAP_MODES.REPEAT;\n currentTexture = nextTexture;\n currentColor = style$1.color + style$1.alpha;\n currentNative = style$1.native;\n\n batchPart.style = style$1;\n batchPart.start = index$1;\n batchPart.attribStart = attribIndex;\n }\n\n var start = this.points.length / 2;\n\n if (j === 0)\n {\n if (data$1.holes.length)\n {\n this.processHoles(data$1.holes);\n\n buildPoly.triangulate(data$1, this);\n }\n else\n {\n command.triangulate(data$1, this);\n }\n }\n else\n {\n buildLine(data$1, this);\n\n for (var i$2 = 0; i$2 < data$1.holes.length; i$2++)\n {\n buildLine(data$1.holes[i$2], this);\n }\n }\n\n var size = (this.points.length / 2) - start;\n\n this.addUvs(this.points, uvs, style$1.texture, start, size, style$1.matrix);\n }\n }\n\n var index = this.indices.length;\n var attrib = this.points.length / 2;\n\n if (!batchPart)\n {\n // there are no visible styles in GraphicsData\n // its possible that someone wants Graphics just for the bounds\n this.batchable = true;\n\n return;\n }\n\n batchPart.size = index - batchPart.start;\n batchPart.attribSize = attrib - batchPart.attribStart;\n this.indicesUint16 = new Uint16Array(this.indices);\n\n // TODO make this a const..\n this.batchable = this.isBatchable();\n\n if (this.batchable)\n {\n this.batchDirty++;\n\n this.uvsFloat32 = new Float32Array(this.uvs);\n\n // offset the indices so that it works with the batcher...\n for (var i$3 = 0; i$3 < this.batches.length; i$3++)\n {\n var batch = this.batches[i$3];\n\n for (var j$1 = 0; j$1 < batch.size; j$1++)\n {\n var index$2 = batch.start + j$1;\n\n this.indicesUint16[index$2] = this.indicesUint16[index$2] - batch.attribStart;\n }\n }\n }\n else\n {\n this.buildDrawCalls();\n }\n };\n\n /**\n * Checks to see if this graphics geometry can be batched.\n * Currently it needs to be small enough and not contain any native lines.\n * @protected\n */\n GraphicsGeometry.prototype.isBatchable = function isBatchable ()\n {\n var batches = this.batches;\n\n for (var i = 0; i < batches.length; i++)\n {\n if (batches[i].style.native)\n {\n return false;\n }\n }\n\n return (this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2);\n };\n\n /**\n * Converts intermediate batches data to drawCalls.\n * @protected\n */\n GraphicsGeometry.prototype.buildDrawCalls = function buildDrawCalls ()\n {\n var TICK = ++BaseTexture._globalBatch;\n\n for (var i = 0; i < this.drawCalls.length; i++)\n {\n this.drawCalls[i].textures.length = 0;\n DRAW_CALL_POOL.push(this.drawCalls[i]);\n }\n\n this.drawCalls.length = 0;\n\n var uvs = this.uvs;\n var colors = this.colors;\n var textureIds = this.textureIds;\n\n var currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall();\n\n currentGroup.textureCount = 0;\n currentGroup.start = 0;\n currentGroup.size = 0;\n currentGroup.type = DRAW_MODES.TRIANGLES;\n\n var textureCount = 0;\n var currentTexture = null;\n var textureId = 0;\n var native = false;\n var drawMode = DRAW_MODES.TRIANGLES;\n\n var index = 0;\n\n this.drawCalls.push(currentGroup);\n\n // TODO - this can be simplified\n for (var i$1 = 0; i$1 < this.batches.length; i$1++)\n {\n var data = this.batches[i$1];\n\n // TODO add some full on MAX_TEXTURE CODE..\n var MAX_TEXTURES = 8;\n\n var style = data.style;\n\n var nextTexture = style.texture.baseTexture;\n\n if (native !== !!style.native)\n {\n native = style.native;\n drawMode = native ? DRAW_MODES.LINES : DRAW_MODES.TRIANGLES;\n\n // force the batch to break!\n currentTexture = null;\n textureCount = MAX_TEXTURES;\n TICK++;\n }\n\n if (currentTexture !== nextTexture)\n {\n currentTexture = nextTexture;\n\n if (nextTexture._batchEnabled !== TICK)\n {\n if (textureCount === MAX_TEXTURES)\n {\n TICK++;\n\n textureCount = 0;\n\n if (currentGroup.size > 0)\n {\n currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall();\n this.drawCalls.push(currentGroup);\n }\n\n currentGroup.start = index;\n currentGroup.size = 0;\n currentGroup.textureCount = 0;\n currentGroup.type = drawMode;\n }\n\n // TODO add this to the render part..\n nextTexture.touched = 1;// touch;\n nextTexture._batchEnabled = TICK;\n nextTexture._id = textureCount;\n nextTexture.wrapMode = 10497;\n\n currentGroup.textures[currentGroup.textureCount++] = nextTexture;\n textureCount++;\n }\n }\n\n currentGroup.size += data.size;\n index += data.size;\n\n textureId = nextTexture._id;\n\n this.addColors(colors, style.color, style.alpha, data.attribSize);\n this.addTextureIds(textureIds, textureId, data.attribSize);\n }\n\n BaseTexture._globalBatch = TICK;\n\n // upload..\n // merge for now!\n var verts = this.points;\n\n // verts are 2 positions.. so we * by 3 as there are 6 properties.. then 4 cos its bytes\n var glPoints = new ArrayBuffer(verts.length * 3 * 4);\n var f32 = new Float32Array(glPoints);\n var u32 = new Uint32Array(glPoints);\n\n var p = 0;\n\n for (var i$2 = 0; i$2 < verts.length / 2; i$2++)\n {\n f32[p++] = verts[i$2 * 2];\n f32[p++] = verts[(i$2 * 2) + 1];\n\n f32[p++] = uvs[i$2 * 2];\n f32[p++] = uvs[(i$2 * 2) + 1];\n\n u32[p++] = colors[i$2];\n\n f32[p++] = textureIds[i$2];\n }\n\n this._buffer.update(glPoints);\n this._indexBuffer.update(this.indicesUint16);\n };\n\n /**\n * Process the holes data.\n *\n * @param {PIXI.GraphicsData[]} holes - Holes to render\n * @protected\n */\n GraphicsGeometry.prototype.processHoles = function processHoles (holes)\n {\n for (var i = 0; i < holes.length; i++)\n {\n var hole = holes[i];\n\n var command = fillCommands[hole.type];\n\n command.build(hole);\n\n if (hole.matrix)\n {\n this.transformPoints(hole.points, hole.matrix);\n }\n }\n };\n\n /**\n * Update the local bounds of the object. Expensive to use performance-wise.\n * @protected\n */\n GraphicsGeometry.prototype.calculateBounds = function calculateBounds ()\n {\n var minX = Infinity;\n var maxX = -Infinity;\n\n var minY = Infinity;\n var maxY = -Infinity;\n\n if (this.graphicsData.length)\n {\n var shape = null;\n var x = 0;\n var y = 0;\n var w = 0;\n var h = 0;\n\n for (var i = 0; i < this.graphicsData.length; i++)\n {\n var data = this.graphicsData[i];\n\n var type = data.type;\n var lineWidth = data.lineStyle ? data.lineStyle.width : 0;\n\n shape = data.shape;\n\n if (type === SHAPES.RECT || type === SHAPES.RREC)\n {\n x = shape.x - (lineWidth / 2);\n y = shape.y - (lineWidth / 2);\n w = shape.width + lineWidth;\n h = shape.height + lineWidth;\n\n minX = x < minX ? x : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y < minY ? y : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else if (type === SHAPES.CIRC)\n {\n x = shape.x;\n y = shape.y;\n w = shape.radius + (lineWidth / 2);\n h = shape.radius + (lineWidth / 2);\n\n minX = x - w < minX ? x - w : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y - h < minY ? y - h : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else if (type === SHAPES.ELIP)\n {\n x = shape.x;\n y = shape.y;\n w = shape.width + (lineWidth / 2);\n h = shape.height + (lineWidth / 2);\n\n minX = x - w < minX ? x - w : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y - h < minY ? y - h : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else\n {\n // POLY\n var points = shape.points;\n var x2 = 0;\n var y2 = 0;\n var dx = 0;\n var dy = 0;\n var rw = 0;\n var rh = 0;\n var cx = 0;\n var cy = 0;\n\n for (var j = 0; j + 2 < points.length; j += 2)\n {\n x = points[j];\n y = points[j + 1];\n x2 = points[j + 2];\n y2 = points[j + 3];\n dx = Math.abs(x2 - x);\n dy = Math.abs(y2 - y);\n h = lineWidth;\n w = Math.sqrt((dx * dx) + (dy * dy));\n\n if (w < 1e-9)\n {\n continue;\n }\n\n rw = ((h / w * dy) + dx) / 2;\n rh = ((h / w * dx) + dy) / 2;\n cx = (x2 + x) / 2;\n cy = (y2 + y) / 2;\n\n minX = cx - rw < minX ? cx - rw : minX;\n maxX = cx + rw > maxX ? cx + rw : maxX;\n\n minY = cy - rh < minY ? cy - rh : minY;\n maxY = cy + rh > maxY ? cy + rh : maxY;\n }\n }\n }\n }\n else\n {\n minX = 0;\n maxX = 0;\n minY = 0;\n maxY = 0;\n }\n\n var padding = this.boundsPadding;\n\n this._bounds.minX = minX - padding;\n this._bounds.maxX = maxX + padding;\n\n this._bounds.minY = minY - padding;\n this._bounds.maxY = maxY + padding;\n };\n\n /**\n * Transform points using matrix.\n *\n * @protected\n * @param {number[]} points - Points to transform\n * @param {PIXI.Matrix} matrix - Transform matrix\n */\n GraphicsGeometry.prototype.transformPoints = function transformPoints (points, matrix)\n {\n for (var i = 0; i < points.length / 2; i++)\n {\n var x = points[(i * 2)];\n var y = points[(i * 2) + 1];\n\n points[(i * 2)] = (matrix.a * x) + (matrix.c * y) + matrix.tx;\n points[(i * 2) + 1] = (matrix.b * x) + (matrix.d * y) + matrix.ty;\n }\n };\n\n /**\n * Add colors.\n *\n * @protected\n * @param {number[]} colors - List of colors to add to\n * @param {number} color - Color to add\n * @param {number} alpha - Alpha to use\n * @param {number} size - Number of colors to add\n */\n GraphicsGeometry.prototype.addColors = function addColors (colors, color, alpha, size)\n {\n // TODO use the premultiply bits Ivan added\n var rgb = (color >> 16) + (color & 0xff00) + ((color & 0xff) << 16);\n\n var rgba = premultiplyTint(rgb, alpha);\n\n while (size-- > 0)\n {\n colors.push(rgba);\n }\n };\n\n /**\n * Add texture id that the shader/fragment wants to use.\n *\n * @protected\n * @param {number[]} textureIds\n * @param {number} id\n * @param {number} size\n */\n GraphicsGeometry.prototype.addTextureIds = function addTextureIds (textureIds, id, size)\n {\n while (size-- > 0)\n {\n textureIds.push(id);\n }\n };\n\n /**\n * Generates the UVs for a shape.\n *\n * @protected\n * @param {number[]} verts - Vertices\n * @param {number[]} uvs - UVs\n * @param {PIXI.Texture} texture - Reference to Texture\n * @param {number} start - Index buffer start index.\n * @param {number} size - The size/length for index buffer.\n * @param {PIXI.Matrix} [matrix] - Optional transform for all points.\n */\n GraphicsGeometry.prototype.addUvs = function addUvs (verts, uvs, texture, start, size, matrix)\n {\n var index = 0;\n var uvsStart = uvs.length;\n var frame = texture.frame;\n\n while (index < size)\n {\n var x = verts[(start + index) * 2];\n var y = verts[((start + index) * 2) + 1];\n\n if (matrix)\n {\n var nx = (matrix.a * x) + (matrix.c * y) + matrix.tx;\n\n y = (matrix.b * x) + (matrix.d * y) + matrix.ty;\n x = nx;\n }\n\n index++;\n\n uvs.push(x / frame.width, y / frame.height);\n }\n\n var baseTexture = texture.baseTexture;\n\n if (frame.width < baseTexture.width\n || frame.height < baseTexture.height)\n {\n this.adjustUvs(uvs, texture, uvsStart, size);\n }\n };\n\n /**\n * Modify uvs array according to position of texture region\n * Does not work with rotated or trimmed textures\n * @param {number[]} uvs array\n * @param {PIXI.Texture} texture region\n * @param {number} start starting index for uvs\n * @param {number} size how many points to adjust\n */\n GraphicsGeometry.prototype.adjustUvs = function adjustUvs (uvs, texture, start, size)\n {\n var baseTexture = texture.baseTexture;\n var eps = 1e-6;\n var finish = start + (size * 2);\n var frame = texture.frame;\n var scaleX = frame.width / baseTexture.width;\n var scaleY = frame.height / baseTexture.height;\n var offsetX = frame.x / frame.width;\n var offsetY = frame.y / frame.height;\n var minX = Math.floor(uvs[start] + eps);\n var minY = Math.floor(uvs[start + 1] + eps);\n\n for (var i = start + 2; i < finish; i += 2)\n {\n minX = Math.min(minX, Math.floor(uvs[i] + eps));\n minY = Math.min(minY, Math.floor(uvs[i + 1] + eps));\n }\n offsetX -= minX;\n offsetY -= minY;\n for (var i$1 = start; i$1 < finish; i$1 += 2)\n {\n uvs[i$1] = (uvs[i$1] + offsetX) * scaleX;\n uvs[i$1 + 1] = (uvs[i$1 + 1] + offsetY) * scaleY;\n }\n };\n\n Object.defineProperties( GraphicsGeometry.prototype, prototypeAccessors );\n\n return GraphicsGeometry;\n}(BatchGeometry));\n\n/**\n * The maximum number of points to consider an object \"batchable\",\n * able to be batched by the renderer's batch system.\n *\n * @memberof PIXI.GraphicsGeometry\n * @static\n * @member {number} BATCHABLE_SIZE\n * @default 100\n */\nGraphicsGeometry.BATCHABLE_SIZE = 100;\n\n/**\n * Represents the line style for Graphics.\n * @memberof PIXI\n * @class\n * @extends PIXI.FillStyle\n */\nvar LineStyle = /*@__PURE__*/(function (FillStyle) {\n function LineStyle () {\n FillStyle.apply(this, arguments);\n }\n\n if ( FillStyle ) LineStyle.__proto__ = FillStyle;\n LineStyle.prototype = Object.create( FillStyle && FillStyle.prototype );\n LineStyle.prototype.constructor = LineStyle;\n\n LineStyle.prototype.clone = function clone ()\n {\n var obj = new LineStyle();\n\n obj.color = this.color;\n obj.alpha = this.alpha;\n obj.texture = this.texture;\n obj.matrix = this.matrix;\n obj.visible = this.visible;\n obj.width = this.width;\n obj.alignment = this.alignment;\n obj.native = this.native;\n\n return obj;\n };\n /**\n * Reset the line style to default.\n */\n LineStyle.prototype.reset = function reset ()\n {\n FillStyle.prototype.reset.call(this);\n\n // Override default line style color\n this.color = 0x0;\n\n /**\n * The width (thickness) of any lines drawn.\n *\n * @member {number}\n * @default 0\n */\n this.width = 0;\n\n /**\n * The alignment of any lines drawn (0.5 = middle, 1 = outter, 0 = inner).\n *\n * @member {number}\n * @default 0\n */\n this.alignment = 0.5;\n\n /**\n * If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n *\n * @member {boolean}\n * @default false\n */\n this.native = false;\n };\n\n return LineStyle;\n}(FillStyle));\n\n/**\n * Utilities for bezier curves\n * @class\n * @private\n */\nvar BezierUtils = function BezierUtils () {};\n\nBezierUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY)\n{\n var n = 10;\n var result = 0.0;\n var t = 0.0;\n var t2 = 0.0;\n var t3 = 0.0;\n var nt = 0.0;\n var nt2 = 0.0;\n var nt3 = 0.0;\n var x = 0.0;\n var y = 0.0;\n var dx = 0.0;\n var dy = 0.0;\n var prevX = fromX;\n var prevY = fromY;\n\n for (var i = 1; i <= n; ++i)\n {\n t = i / n;\n t2 = t * t;\n t3 = t2 * t;\n nt = (1.0 - t);\n nt2 = nt * nt;\n nt3 = nt2 * nt;\n\n x = (nt3 * fromX) + (3.0 * nt2 * t * cpX) + (3.0 * nt * t2 * cpX2) + (t3 * toX);\n y = (nt3 * fromY) + (3.0 * nt2 * t * cpY) + (3 * nt * t2 * cpY2) + (t3 * toY);\n dx = prevX - x;\n dy = prevY - y;\n prevX = x;\n prevY = y;\n\n result += Math.sqrt((dx * dx) + (dy * dy));\n }\n\n return result;\n};\n\n/**\n * Calculate the points for a bezier curve and then draws it.\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} cpX2 - Second Control point x\n * @param {number} cpY2 - Second Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} points - Path array to push points into\n */\nBezierUtils.curveTo = function curveTo (cpX, cpY, cpX2, cpY2, toX, toY, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n points.length -= 2;\n\n var n = GRAPHICS_CURVES._segmentsCount(\n BezierUtils.curveLength(fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY)\n );\n\n var dt = 0;\n var dt2 = 0;\n var dt3 = 0;\n var t2 = 0;\n var t3 = 0;\n\n points.push(fromX, fromY);\n\n for (var i = 1, j = 0; i <= n; ++i)\n {\n j = i / n;\n\n dt = (1 - j);\n dt2 = dt * dt;\n dt3 = dt2 * dt;\n\n t2 = j * j;\n t3 = t2 * j;\n\n points.push(\n (dt3 * fromX) + (3 * dt2 * j * cpX) + (3 * dt * t2 * cpX2) + (t3 * toX),\n (dt3 * fromY) + (3 * dt2 * j * cpY) + (3 * dt * t2 * cpY2) + (t3 * toY)\n );\n }\n};\n\n/**\n * Utilities for quadratic curves\n * @class\n * @private\n */\nvar QuadraticUtils = function QuadraticUtils () {};\n\nQuadraticUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, toX, toY)\n{\n var ax = fromX - (2.0 * cpX) + toX;\n var ay = fromY - (2.0 * cpY) + toY;\n var bx = (2.0 * cpX) - (2.0 * fromX);\n var by = (2.0 * cpY) - (2.0 * fromY);\n var a = 4.0 * ((ax * ax) + (ay * ay));\n var b = 4.0 * ((ax * bx) + (ay * by));\n var c = (bx * bx) + (by * by);\n\n var s = 2.0 * Math.sqrt(a + b + c);\n var a2 = Math.sqrt(a);\n var a32 = 2.0 * a * a2;\n var c2 = 2.0 * Math.sqrt(c);\n var ba = b / a2;\n\n return (\n (a32 * s)\n + (a2 * b * (s - c2))\n + (\n ((4.0 * c * a) - (b * b))\n * Math.log(((2.0 * a2) + ba + s) / (ba + c2))\n )\n ) / (4.0 * a32);\n};\n\n/**\n * Calculate the points for a quadratic bezier curve and then draws it.\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * @private\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} points - Points to add segments to.\n */\nQuadraticUtils.curveTo = function curveTo (cpX, cpY, toX, toY, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n var n = GRAPHICS_CURVES._segmentsCount(\n QuadraticUtils.curveLength(fromX, fromY, cpX, cpY, toX, toY)\n );\n\n var xa = 0;\n var ya = 0;\n\n for (var i = 1; i <= n; ++i)\n {\n var j = i / n;\n\n xa = fromX + ((cpX - fromX) * j);\n ya = fromY + ((cpY - fromY) * j);\n\n points.push(xa + (((cpX + ((toX - cpX) * j)) - xa) * j),\n ya + (((cpY + ((toY - cpY) * j)) - ya) * j));\n }\n};\n\n/**\n * Utilities for arc curves\n * @class\n * @private\n */\nvar ArcUtils = function ArcUtils () {};\n\nArcUtils.curveTo = function curveTo (x1, y1, x2, y2, radius, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n var a1 = fromY - y1;\n var b1 = fromX - x1;\n var a2 = y2 - y1;\n var b2 = x2 - x1;\n var mm = Math.abs((a1 * b2) - (b1 * a2));\n\n if (mm < 1.0e-8 || radius === 0)\n {\n if (points[points.length - 2] !== x1 || points[points.length - 1] !== y1)\n {\n points.push(x1, y1);\n }\n\n return null;\n }\n\n var dd = (a1 * a1) + (b1 * b1);\n var cc = (a2 * a2) + (b2 * b2);\n var tt = (a1 * a2) + (b1 * b2);\n var k1 = radius * Math.sqrt(dd) / mm;\n var k2 = radius * Math.sqrt(cc) / mm;\n var j1 = k1 * tt / dd;\n var j2 = k2 * tt / cc;\n var cx = (k1 * b2) + (k2 * b1);\n var cy = (k1 * a2) + (k2 * a1);\n var px = b1 * (k2 + j1);\n var py = a1 * (k2 + j1);\n var qx = b2 * (k1 + j2);\n var qy = a2 * (k1 + j2);\n var startAngle = Math.atan2(py - cy, px - cx);\n var endAngle = Math.atan2(qy - cy, qx - cx);\n\n return {\n cx: (cx + x1),\n cy: (cy + y1),\n radius: radius,\n startAngle: startAngle,\n endAngle: endAngle,\n anticlockwise: (b1 * a2 > b2 * a1),\n };\n};\n\n/**\n * The arc method creates an arc/curve (used to create circles, or parts of circles).\n *\n * @private\n * @param {number} startX - Start x location of arc\n * @param {number} startY - Start y location of arc\n * @param {number} cx - The x-coordinate of the center of the circle\n * @param {number} cy - The y-coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position\n * of the arc's circle)\n * @param {number} endAngle - The ending angle, in radians\n * @param {boolean} anticlockwise - Specifies whether the drawing should be\n * counter-clockwise or clockwise. False is default, and indicates clockwise, while true\n * indicates counter-clockwise.\n * @param {number} n - Number of segments\n * @param {number[]} points - Collection of points to add to\n */\nArcUtils.arc = function arc (startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points)\n{\n var sweep = endAngle - startAngle;\n var n = GRAPHICS_CURVES._segmentsCount(\n Math.abs(sweep) * radius,\n Math.ceil(Math.abs(sweep) / PI_2) * 40\n );\n\n var theta = (sweep) / (n * 2);\n var theta2 = theta * 2;\n var cTheta = Math.cos(theta);\n var sTheta = Math.sin(theta);\n var segMinus = n - 1;\n var remainder = (segMinus % 1) / segMinus;\n\n for (var i = 0; i <= segMinus; ++i)\n {\n var real = i + (remainder * i);\n var angle = ((theta) + startAngle + (theta2 * real));\n var c = Math.cos(angle);\n var s = -Math.sin(angle);\n\n points.push(\n (((cTheta * c) + (sTheta * s)) * radius) + cx,\n (((cTheta * -s) + (sTheta * c)) * radius) + cy\n );\n }\n};\n\n/**\n * Draw a star shape with an arbitrary number of points.\n *\n * @class\n * @extends PIXI.Polygon\n * @memberof PIXI\n * @param {number} x - Center X position of the star\n * @param {number} y - Center Y position of the star\n * @param {number} points - The number of points of the star, must be > 1\n * @param {number} radius - The outer radius of the star\n * @param {number} [innerRadius] - The inner radius between points, default half `radius`\n * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\nvar Star = /*@__PURE__*/(function (Polygon) {\n function Star(x, y, points, radius, innerRadius, rotation)\n {\n innerRadius = innerRadius || radius / 2;\n\n var startAngle = (-1 * Math.PI / 2) + rotation;\n var len = points * 2;\n var delta = PI_2 / len;\n var polygon = [];\n\n for (var i = 0; i < len; i++)\n {\n var r = i % 2 ? innerRadius : radius;\n var angle = (i * delta) + startAngle;\n\n polygon.push(\n x + (r * Math.cos(angle)),\n y + (r * Math.sin(angle))\n );\n }\n\n Polygon.call(this, polygon);\n }\n\n if ( Polygon ) Star.__proto__ = Polygon;\n Star.prototype = Object.create( Polygon && Polygon.prototype );\n Star.prototype.constructor = Star;\n\n return Star;\n}(Polygon));\n\nvar temp = new Float32Array(3);\n\n// a default shaders map used by graphics..\nvar DEFAULT_SHADERS = {};\n\n/**\n * The Graphics class contains methods used to draw primitive shapes such as lines, circles and\n * rectangles to the display, and to color and fill them.\n *\n * Note that because Graphics can share a GraphicsGeometry with other instances,\n * it is necessary to call `destroy()` to properly dereference the underlying\n * GraphicsGeometry and avoid a memory leak. Alternatively, keep using the same\n * Graphics instance and call `clear()` between redraws.\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Graphics = /*@__PURE__*/(function (Container) {\n function Graphics(geometry)\n {\n if ( geometry === void 0 ) geometry = null;\n\n Container.call(this);\n /**\n * Includes vertex positions, face indices, normals, colors, UVs, and\n * custom attributes within buffers, reducing the cost of passing all\n * this data to the GPU. Can be shared between multiple Mesh or Graphics objects.\n * @member {PIXI.GraphicsGeometry}\n * @readonly\n */\n this.geometry = geometry || new GraphicsGeometry();\n\n this.geometry.refCount++;\n\n /**\n * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU.\n * Can be shared between multiple Graphics objects.\n * @member {PIXI.Shader}\n */\n this.shader = null;\n\n /**\n * Represents the WebGL state the Graphics required to render, excludes shader and geometry. E.g.,\n * blend mode, culling, depth testing, direction of rendering triangles, backface, etc.\n * @member {PIXI.State}\n */\n this.state = State.for2d();\n\n /**\n * Current fill style\n *\n * @member {PIXI.FillStyle}\n * @protected\n */\n this._fillStyle = new FillStyle();\n\n /**\n * Current line style\n *\n * @member {PIXI.LineStyle}\n * @protected\n */\n this._lineStyle = new LineStyle();\n\n /**\n * Current shape transform matrix.\n *\n * @member {PIXI.Matrix}\n * @protected\n */\n this._matrix = null;\n\n /**\n * Current hole mode is enabled.\n *\n * @member {boolean}\n * @default false\n * @protected\n */\n this._holeMode = false;\n\n /**\n * Current path\n *\n * @member {PIXI.Polygon}\n * @protected\n */\n this.currentPath = null;\n\n /**\n * When cacheAsBitmap is set to true the graphics object will be rendered as if it was a sprite.\n * This is useful if your graphics element does not change often, as it will speed up the rendering\n * of the object in exchange for taking up texture memory. It is also useful if you need the graphics\n * object to be anti-aliased, because it will be rendered using canvas. This is not recommended if\n * you are constantly redrawing the graphics element.\n *\n * @name cacheAsBitmap\n * @member {boolean}\n * @memberof PIXI.Graphics#\n * @default false\n */\n\n /**\n * A collections of batches! These can be drawn by the renderer batch system.\n *\n * @protected\n * @member {object[]}\n */\n this.batches = [];\n\n /**\n * Update dirty for limiting calculating tints for batches.\n *\n * @protected\n * @member {number}\n * @default -1\n */\n this.batchTint = -1;\n\n /**\n * Copy of the object vertex data.\n *\n * @protected\n * @member {Float32Array}\n */\n this.vertexData = null;\n\n this._transformID = -1;\n this.batchDirty = -1;\n\n /**\n * Renderer plugin for batching\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = 'batch';\n\n // Set default\n this.tint = 0xFFFFFF;\n this.blendMode = BLEND_MODES.NORMAL;\n }\n\n if ( Container ) Graphics.__proto__ = Container;\n Graphics.prototype = Object.create( Container && Container.prototype );\n Graphics.prototype.constructor = Graphics;\n\n var prototypeAccessors = { blendMode: { configurable: true },tint: { configurable: true },fill: { configurable: true },line: { configurable: true } };\n\n /**\n * Creates a new Graphics object with the same values as this one.\n * Note that the only the properties of the object are cloned, not its transform (position,scale,etc)\n *\n * @return {PIXI.Graphics} A clone of the graphics object\n */\n Graphics.prototype.clone = function clone ()\n {\n this.finishPoly();\n\n return new Graphics(this.geometry);\n };\n\n /**\n * The blend mode to be applied to the graphic shape. Apply a value of\n * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL;\n * @see PIXI.BLEND_MODES\n */\n prototypeAccessors.blendMode.set = function (value)\n {\n this.state.blendMode = value;\n };\n\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n /**\n * The tint applied to the graphic shape. This is a hex value. A value of\n * 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n prototypeAccessors.tint.set = function (value)\n {\n this._tint = value;\n };\n\n /**\n * The current fill style.\n *\n * @member {PIXI.FillStyle}\n * @readonly\n */\n prototypeAccessors.fill.get = function ()\n {\n return this._fillStyle;\n };\n\n /**\n * The current line style.\n *\n * @member {PIXI.LineStyle}\n * @readonly\n */\n prototypeAccessors.line.get = function ()\n {\n return this._lineStyle;\n };\n\n /**\n * Specifies the line style used for subsequent calls to Graphics methods such as the lineTo()\n * method or the drawCircle() method.\n *\n * @param {number} [width=0] - width of the line to draw, will update the objects stored style\n * @param {number} [color=0] - color of the line to draw, will update the objects stored style\n * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style\n * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter)\n * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineStyle = function lineStyle (width, color, alpha, alignment, native)\n {\n if ( width === void 0 ) width = 0;\n if ( color === void 0 ) color = 0;\n if ( alpha === void 0 ) alpha = 1;\n if ( alignment === void 0 ) alignment = 0.5;\n if ( native === void 0 ) native = false;\n\n this.lineTextureStyle(width, Texture.WHITE, color, alpha, null, alignment, native);\n\n return this;\n };\n\n /**\n * Like line style but support texture for line fill.\n *\n * @param {number} [width=0] - width of the line to draw, will update the objects stored style\n * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to use\n * @param {number} [color=0] - color of the line to draw, will update the objects stored style\n * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style\n * @param {PIXI.Matrix} [matrix=null] Texture matrix to transform texture\n * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter)\n * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineTextureStyle = function lineTextureStyle (width, texture, color, alpha,\n matrix, alignment, native)\n {\n if ( width === void 0 ) width = 0;\n if ( texture === void 0 ) texture = Texture.WHITE;\n if ( color === void 0 ) color = 0xFFFFFF;\n if ( alpha === void 0 ) alpha = 1;\n if ( matrix === void 0 ) matrix = null;\n if ( alignment === void 0 ) alignment = 0.5;\n if ( native === void 0 ) native = false;\n\n if (this.currentPath)\n {\n this.startPoly();\n }\n\n var visible = width > 0 && alpha > 0;\n\n if (!visible)\n {\n this._lineStyle.reset();\n }\n else\n {\n if (matrix)\n {\n matrix = matrix.clone();\n matrix.invert();\n }\n\n Object.assign(this._lineStyle, {\n color: color,\n width: width,\n alpha: alpha,\n matrix: matrix,\n texture: texture,\n alignment: alignment,\n native: native,\n visible: visible,\n });\n }\n\n return this;\n };\n\n /**\n * Start a polygon object internally\n * @protected\n */\n Graphics.prototype.startPoly = function startPoly ()\n {\n if (this.currentPath)\n {\n var points = this.currentPath.points;\n var len = this.currentPath.points.length;\n\n if (len > 2)\n {\n this.drawShape(this.currentPath);\n this.currentPath = new Polygon();\n this.currentPath.closeStroke = false;\n this.currentPath.points.push(points[len - 2], points[len - 1]);\n }\n }\n else\n {\n this.currentPath = new Polygon();\n this.currentPath.closeStroke = false;\n }\n };\n\n /**\n * Finish the polygon object.\n * @protected\n */\n Graphics.prototype.finishPoly = function finishPoly ()\n {\n if (this.currentPath)\n {\n if (this.currentPath.points.length > 2)\n {\n this.drawShape(this.currentPath);\n this.currentPath = null;\n }\n else\n {\n this.currentPath.points.length = 0;\n }\n }\n };\n\n /**\n * Moves the current drawing position to x, y.\n *\n * @param {number} x - the X coordinate to move to\n * @param {number} y - the Y coordinate to move to\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.moveTo = function moveTo (x, y)\n {\n this.startPoly();\n this.currentPath.points[0] = x;\n this.currentPath.points[1] = y;\n\n return this;\n };\n\n /**\n * Draws a line using the current line style from the current drawing position to (x, y);\n * The current drawing position is then set to (x, y).\n *\n * @param {number} x - the X coordinate to draw to\n * @param {number} y - the Y coordinate to draw to\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineTo = function lineTo (x, y)\n {\n if (!this.currentPath)\n {\n this.moveTo(0, 0);\n }\n\n // remove duplicates..\n var points = this.currentPath.points;\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n if (fromX !== x || fromY !== y)\n {\n points.push(x, y);\n }\n\n return this;\n };\n\n /**\n * Initialize the curve\n *\n * @protected\n * @param {number} [x=0]\n * @param {number} [y=0]\n */\n Graphics.prototype._initCurve = function _initCurve (x, y)\n {\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n if (this.currentPath)\n {\n if (this.currentPath.points.length === 0)\n {\n this.currentPath.points = [x, y];\n }\n }\n else\n {\n this.moveTo(x, y);\n }\n };\n\n /**\n * Calculate the points for a quadratic bezier curve and then draws it.\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.quadraticCurveTo = function quadraticCurveTo (cpX, cpY, toX, toY)\n {\n this._initCurve();\n\n var points = this.currentPath.points;\n\n if (points.length === 0)\n {\n this.moveTo(0, 0);\n }\n\n QuadraticUtils.curveTo(cpX, cpY, toX, toY, points);\n\n return this;\n };\n\n /**\n * Calculate the points for a bezier curve and then draws it.\n *\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} cpX2 - Second Control point x\n * @param {number} cpY2 - Second Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.bezierCurveTo = function bezierCurveTo (cpX, cpY, cpX2, cpY2, toX, toY)\n {\n this._initCurve();\n\n BezierUtils.curveTo(cpX, cpY, cpX2, cpY2, toX, toY, this.currentPath.points);\n\n return this;\n };\n\n /**\n * The arcTo() method creates an arc/curve between two tangents on the canvas.\n *\n * \"borrowed\" from https://code.google.com/p/fxcanvas/ - thanks google!\n *\n * @param {number} x1 - The x-coordinate of the first tangent point of the arc\n * @param {number} y1 - The y-coordinate of the first tangent point of the arc\n * @param {number} x2 - The x-coordinate of the end of the arc\n * @param {number} y2 - The y-coordinate of the end of the arc\n * @param {number} radius - The radius of the arc\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.arcTo = function arcTo (x1, y1, x2, y2, radius)\n {\n this._initCurve(x1, y1);\n\n var points = this.currentPath.points;\n\n var result = ArcUtils.curveTo(x1, y1, x2, y2, radius, points);\n\n if (result)\n {\n var cx = result.cx;\n var cy = result.cy;\n var radius$1 = result.radius;\n var startAngle = result.startAngle;\n var endAngle = result.endAngle;\n var anticlockwise = result.anticlockwise;\n\n this.arc(cx, cy, radius$1, startAngle, endAngle, anticlockwise);\n }\n\n return this;\n };\n\n /**\n * The arc method creates an arc/curve (used to create circles, or parts of circles).\n *\n * @param {number} cx - The x-coordinate of the center of the circle\n * @param {number} cy - The y-coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position\n * of the arc's circle)\n * @param {number} endAngle - The ending angle, in radians\n * @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be\n * counter-clockwise or clockwise. False is default, and indicates clockwise, while true\n * indicates counter-clockwise.\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.arc = function arc (cx, cy, radius, startAngle, endAngle, anticlockwise)\n {\n if ( anticlockwise === void 0 ) anticlockwise = false;\n\n if (startAngle === endAngle)\n {\n return this;\n }\n\n if (!anticlockwise && endAngle <= startAngle)\n {\n endAngle += PI_2;\n }\n else if (anticlockwise && startAngle <= endAngle)\n {\n startAngle += PI_2;\n }\n\n var sweep = endAngle - startAngle;\n\n if (sweep === 0)\n {\n return this;\n }\n\n var startX = cx + (Math.cos(startAngle) * radius);\n var startY = cy + (Math.sin(startAngle) * radius);\n var eps = this.geometry.closePointEps;\n\n // If the currentPath exists, take its points. Otherwise call `moveTo` to start a path.\n var points = this.currentPath ? this.currentPath.points : null;\n\n if (points)\n {\n // TODO: make a better fix.\n\n // We check how far our start is from the last existing point\n var xDiff = Math.abs(points[points.length - 2] - startX);\n var yDiff = Math.abs(points[points.length - 1] - startY);\n\n if (xDiff < eps && yDiff < eps)\n ;\n else\n {\n points.push(startX, startY);\n }\n }\n else\n {\n this.moveTo(startX, startY);\n points = this.currentPath.points;\n }\n\n ArcUtils.arc(startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points);\n\n return this;\n };\n\n /**\n * Specifies a simple one-color fill that subsequent calls to other Graphics methods\n * (such as lineTo() or drawCircle()) use when drawing.\n *\n * @param {number} [color=0] - the color of the fill\n * @param {number} [alpha=1] - the alpha of the fill\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.beginFill = function beginFill (color, alpha)\n {\n if ( color === void 0 ) color = 0;\n if ( alpha === void 0 ) alpha = 1;\n\n return this.beginTextureFill(Texture.WHITE, color, alpha);\n };\n\n /**\n * Begin the texture fill\n *\n * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to fill\n * @param {number} [color=0xffffff] - Background to fill behind texture\n * @param {number} [alpha=1] - Alpha of fill\n * @param {PIXI.Matrix} [matrix=null] - Transform matrix\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.beginTextureFill = function beginTextureFill (texture, color, alpha, matrix)\n {\n if ( texture === void 0 ) texture = Texture.WHITE;\n if ( color === void 0 ) color = 0xFFFFFF;\n if ( alpha === void 0 ) alpha = 1;\n if ( matrix === void 0 ) matrix = null;\n\n if (this.currentPath)\n {\n this.startPoly();\n }\n\n var visible = alpha > 0;\n\n if (!visible)\n {\n this._fillStyle.reset();\n }\n else\n {\n if (matrix)\n {\n matrix = matrix.clone();\n matrix.invert();\n }\n\n Object.assign(this._fillStyle, {\n color: color,\n alpha: alpha,\n texture: texture,\n matrix: matrix,\n visible: visible,\n });\n }\n\n return this;\n };\n\n /**\n * Applies a fill to the lines and shapes that were added since the last call to the beginFill() method.\n *\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.endFill = function endFill ()\n {\n this.finishPoly();\n\n this._fillStyle.reset();\n\n return this;\n };\n\n /**\n * Draws a rectangle shape.\n *\n * @param {number} x - The X coord of the top-left of the rectangle\n * @param {number} y - The Y coord of the top-left of the rectangle\n * @param {number} width - The width of the rectangle\n * @param {number} height - The height of the rectangle\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawRect = function drawRect (x, y, width, height)\n {\n return this.drawShape(new Rectangle(x, y, width, height));\n };\n\n /**\n * Draw a rectangle shape with rounded/beveled corners.\n *\n * @param {number} x - The X coord of the top-left of the rectangle\n * @param {number} y - The Y coord of the top-left of the rectangle\n * @param {number} width - The width of the rectangle\n * @param {number} height - The height of the rectangle\n * @param {number} radius - Radius of the rectangle corners\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawRoundedRect = function drawRoundedRect (x, y, width, height, radius)\n {\n return this.drawShape(new RoundedRectangle(x, y, width, height, radius));\n };\n\n /**\n * Draws a circle.\n *\n * @param {number} x - The X coordinate of the center of the circle\n * @param {number} y - The Y coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawCircle = function drawCircle (x, y, radius)\n {\n return this.drawShape(new Circle(x, y, radius));\n };\n\n /**\n * Draws an ellipse.\n *\n * @param {number} x - The X coordinate of the center of the ellipse\n * @param {number} y - The Y coordinate of the center of the ellipse\n * @param {number} width - The half width of the ellipse\n * @param {number} height - The half height of the ellipse\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawEllipse = function drawEllipse (x, y, width, height)\n {\n return this.drawShape(new Ellipse(x, y, width, height));\n };\n\n /**\n * Draws a polygon using the given path.\n *\n * @param {number[]|PIXI.Point[]|PIXI.Polygon} path - The path data used to construct the polygon.\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawPolygon = function drawPolygon (path)\n {\n var arguments$1 = arguments;\n\n // prevents an argument assignment deopt\n // see section 3.1: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments\n var points = path;\n\n var closeStroke = true;// !!this._fillStyle;\n\n // check if data has points..\n if (points.points)\n {\n closeStroke = points.closeStroke;\n points = points.points;\n }\n\n if (!Array.isArray(points))\n {\n // prevents an argument leak deopt\n // see section 3.2: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments\n points = new Array(arguments.length);\n\n for (var i = 0; i < points.length; ++i)\n {\n points[i] = arguments$1[i]; // eslint-disable-line prefer-rest-params\n }\n }\n\n var shape = new Polygon(points);\n\n shape.closeStroke = closeStroke;\n\n this.drawShape(shape);\n\n return this;\n };\n\n /**\n * Draw any shape.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - Shape to draw\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawShape = function drawShape (shape)\n {\n if (!this._holeMode)\n {\n this.geometry.drawShape(\n shape,\n this._fillStyle.clone(),\n this._lineStyle.clone(),\n this._matrix\n );\n }\n else\n {\n this.geometry.drawHole(shape, this._matrix);\n }\n\n return this;\n };\n\n /**\n * Draw a star shape with an arbitrary number of points.\n *\n * @param {number} x - Center X position of the star\n * @param {number} y - Center Y position of the star\n * @param {number} points - The number of points of the star, must be > 1\n * @param {number} radius - The outer radius of the star\n * @param {number} [innerRadius] - The inner radius between points, default half `radius`\n * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawStar = function drawStar (x, y, points, radius, innerRadius, rotation)\n {\n if ( rotation === void 0 ) rotation = 0;\n\n return this.drawPolygon(new Star(x, y, points, radius, innerRadius, rotation));\n };\n\n /**\n * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings.\n *\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.clear = function clear ()\n {\n this.geometry.clear();\n this._lineStyle.reset();\n this._fillStyle.reset();\n\n this._matrix = null;\n this._holeMode = false;\n this.currentPath = null;\n\n return this;\n };\n\n /**\n * True if graphics consists of one rectangle, and thus, can be drawn like a Sprite and\n * masked with gl.scissor.\n *\n * @returns {boolean} True if only 1 rect.\n */\n Graphics.prototype.isFastRect = function isFastRect ()\n {\n // will fix this!\n return false;\n // this.graphicsData.length === 1\n // && this.graphicsData[0].shape.type === SHAPES.RECT\n // && !this.graphicsData[0].lineWidth;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._render = function _render (renderer)\n {\n this.finishPoly();\n\n var geometry = this.geometry;\n\n // batch part..\n // batch it!\n geometry.updateBatches();\n\n if (geometry.batchable)\n {\n if (this.batchDirty !== geometry.batchDirty)\n {\n this._populateBatches();\n }\n\n this._renderBatched(renderer);\n }\n else\n {\n // no batching...\n renderer.batch.flush();\n\n this._renderDirect(renderer);\n }\n };\n\n /**\n * Populating batches for rendering\n *\n * @protected\n */\n Graphics.prototype._populateBatches = function _populateBatches ()\n {\n var geometry = this.geometry;\n var blendMode = this.blendMode;\n\n this.batches = [];\n this.batchTint = -1;\n this._transformID = -1;\n this.batchDirty = geometry.batchDirty;\n\n this.vertexData = new Float32Array(geometry.points);\n\n for (var i = 0, l = geometry.batches.length; i < l; i++)\n {\n var gI = geometry.batches[i];\n var color = gI.style.color;\n var vertexData = new Float32Array(this.vertexData.buffer,\n gI.attribStart * 4 * 2,\n gI.attribSize * 2);\n\n var uvs = new Float32Array(geometry.uvsFloat32.buffer,\n gI.attribStart * 4 * 2,\n gI.attribSize * 2);\n\n var indices = new Uint16Array(geometry.indicesUint16.buffer,\n gI.start * 2,\n gI.size);\n\n var batch = {\n vertexData: vertexData,\n blendMode: blendMode,\n indices: indices,\n uvs: uvs,\n _batchRGB: hex2rgb(color),\n _tintRGB: color,\n _texture: gI.style.texture,\n alpha: gI.style.alpha,\n worldAlpha: 1 };\n\n this.batches[i] = batch;\n }\n };\n\n /**\n * Renders the batches using the BathedRenderer plugin\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._renderBatched = function _renderBatched (renderer)\n {\n if (!this.batches.length)\n {\n return;\n }\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n\n this.calculateVertices();\n this.calculateTints();\n\n for (var i = 0, l = this.batches.length; i < l; i++)\n {\n var batch = this.batches[i];\n\n batch.worldAlpha = this.worldAlpha * batch.alpha;\n\n renderer.plugins[this.pluginName].render(batch);\n }\n };\n\n /**\n * Renders the graphics direct\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._renderDirect = function _renderDirect (renderer)\n {\n var shader = this._resolveDirectShader(renderer);\n\n var geometry = this.geometry;\n var tint = this.tint;\n var worldAlpha = this.worldAlpha;\n var uniforms = shader.uniforms;\n var drawCalls = geometry.drawCalls;\n\n // lets set the transfomr\n uniforms.translationMatrix = this.transform.worldTransform;\n\n // and then lets set the tint..\n uniforms.tint[0] = (((tint >> 16) & 0xFF) / 255) * worldAlpha;\n uniforms.tint[1] = (((tint >> 8) & 0xFF) / 255) * worldAlpha;\n uniforms.tint[2] = ((tint & 0xFF) / 255) * worldAlpha;\n uniforms.tint[3] = worldAlpha;\n\n // the first draw call, we can set the uniforms of the shader directly here.\n\n // this means that we can tack advantage of the sync function of pixi!\n // bind and sync uniforms..\n // there is a way to optimise this..\n renderer.shader.bind(shader);\n renderer.geometry.bind(geometry, shader);\n\n // set state..\n renderer.state.set(this.state);\n\n // then render the rest of them...\n for (var i = 0, l = drawCalls.length; i < l; i++)\n {\n this._renderDrawCallDirect(renderer, geometry.drawCalls[i]);\n }\n };\n\n /**\n * Renders specific DrawCall\n *\n * @param {PIXI.Renderer} renderer\n * @param {PIXI.BatchDrawCall} drawCall\n */\n Graphics.prototype._renderDrawCallDirect = function _renderDrawCallDirect (renderer, drawCall)\n {\n var groupTextureCount = drawCall.textureCount;\n\n for (var j = 0; j < groupTextureCount; j++)\n {\n renderer.texture.bind(drawCall.textures[j], j);\n }\n\n renderer.geometry.draw(drawCall.type, drawCall.size, drawCall.start);\n };\n\n /**\n * Resolves shader for direct rendering\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._resolveDirectShader = function _resolveDirectShader (renderer)\n {\n var shader = this.shader;\n\n var pluginName = this.pluginName;\n\n if (!shader)\n {\n // if there is no shader here, we can use the default shader.\n // and that only gets created if we actually need it..\n // but may be more than one plugins for graphics\n if (!DEFAULT_SHADERS[pluginName])\n {\n var sampleValues = new Int32Array(16);\n\n for (var i = 0; i < 16; i++)\n {\n sampleValues[i] = i;\n }\n\n var uniforms = {\n tint: new Float32Array([1, 1, 1, 1]),\n translationMatrix: new Matrix(),\n default: UniformGroup.from({ uSamplers: sampleValues }, true),\n };\n\n var program = renderer.plugins[pluginName]._shader.program;\n\n DEFAULT_SHADERS[pluginName] = new Shader(program, uniforms);\n }\n\n shader = DEFAULT_SHADERS[pluginName];\n }\n\n return shader;\n };\n\n /**\n * Retrieves the bounds of the graphic shape as a rectangle object\n *\n * @protected\n */\n Graphics.prototype._calculateBounds = function _calculateBounds ()\n {\n this.finishPoly();\n var lb = this.geometry.bounds;\n\n this._bounds.addFrame(this.transform, lb.minX, lb.minY, lb.maxX, lb.maxY);\n };\n\n /**\n * Tests if a point is inside this graphics object\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */\n Graphics.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, Graphics._TEMP_POINT);\n\n return this.geometry.containsPoint(Graphics._TEMP_POINT);\n };\n\n /**\n * Recalcuate the tint by applying tin to batches using Graphics tint.\n * @protected\n */\n Graphics.prototype.calculateTints = function calculateTints ()\n {\n if (this.batchTint !== this.tint)\n {\n this.batchTint = this.tint;\n\n var tintRGB = hex2rgb(this.tint, temp);\n\n for (var i = 0; i < this.batches.length; i++)\n {\n var batch = this.batches[i];\n\n var batchTint = batch._batchRGB;\n\n var r = (tintRGB[0] * batchTint[0]) * 255;\n var g = (tintRGB[1] * batchTint[1]) * 255;\n var b = (tintRGB[2] * batchTint[2]) * 255;\n\n // TODO Ivan, can this be done in one go?\n var color = (r << 16) + (g << 8) + (b | 0);\n\n batch._tintRGB = (color >> 16)\n + (color & 0xff00)\n + ((color & 0xff) << 16);\n }\n }\n };\n\n /**\n * If there's a transform update or a change to the shape of the\n * geometry, recaculate the vertices.\n * @protected\n */\n Graphics.prototype.calculateVertices = function calculateVertices ()\n {\n if (this._transformID === this.transform._worldID)\n {\n return;\n }\n\n this._transformID = this.transform._worldID;\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var data = this.geometry.points;// batch.vertexDataOriginal;\n var vertexData = this.vertexData;\n\n var count = 0;\n\n for (var i = 0; i < data.length; i += 2)\n {\n var x = data[i];\n var y = data[i + 1];\n\n vertexData[count++] = (a * x) + (c * y) + tx;\n vertexData[count++] = (d * y) + (b * x) + ty;\n }\n };\n\n /**\n * Closes the current path.\n *\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.closePath = function closePath ()\n {\n var currentPath = this.currentPath;\n\n if (currentPath)\n {\n // we don't need to add extra point in the end because buildLine will take care of that\n currentPath.closeStroke = true;\n }\n\n return this;\n };\n\n /**\n * Apply a matrix to the positional data.\n *\n * @param {PIXI.Matrix} matrix - Matrix to use for transform current shape.\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.setMatrix = function setMatrix (matrix)\n {\n this._matrix = matrix;\n\n return this;\n };\n\n /**\n * Begin adding holes to the last draw shape\n * IMPORTANT: holes must be fully inside a shape to work\n * Also weirdness ensues if holes overlap!\n * Ellipses, Circles, Rectangles and Rounded Rectangles cannot be holes or host for holes in CanvasRenderer,\n * please use `moveTo` `lineTo`, `quadraticCurveTo` if you rely on pixi-legacy bundle.\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.beginHole = function beginHole ()\n {\n this.finishPoly();\n this._holeMode = true;\n\n return this;\n };\n\n /**\n * End adding holes to the last draw shape\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.endHole = function endHole ()\n {\n this.finishPoly();\n this._holeMode = false;\n\n return this;\n };\n\n /**\n * Destroys the Graphics object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n Graphics.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.geometry.refCount--;\n if (this.geometry.refCount === 0)\n {\n this.geometry.dispose();\n }\n\n this._matrix = null;\n this.currentPath = null;\n this._lineStyle.destroy();\n this._lineStyle = null;\n this._fillStyle.destroy();\n this._fillStyle = null;\n this.geometry = null;\n this.shader = null;\n this.vertexData = null;\n this.batches.length = 0;\n this.batches = null;\n\n Container.prototype.destroy.call(this, options);\n };\n\n Object.defineProperties( Graphics.prototype, prototypeAccessors );\n\n return Graphics;\n}(Container));\n\n/**\n * Temporary point to use for containsPoint\n *\n * @static\n * @private\n * @member {PIXI.Point}\n */\nGraphics._TEMP_POINT = new Point();\n\nexport { FillStyle, GRAPHICS_CURVES, Graphics, GraphicsData, GraphicsGeometry, LineStyle };\n//# sourceMappingURL=graphics.es.js.map\n","/*!\n * @pixi/sprite - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/sprite is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Point, Rectangle, ObservablePoint } from '@pixi/math';\nimport { sign } from '@pixi/utils';\nimport { Texture } from '@pixi/core';\nimport { BLEND_MODES } from '@pixi/constants';\nimport { Container } from '@pixi/display';\nimport { settings } from '@pixi/settings';\n\nvar tempPoint = new Point();\nvar indices = new Uint16Array([0, 1, 2, 0, 2, 3]);\n\n/**\n * The Sprite object is the base for all textured objects that are rendered to the screen\n*\n * A sprite can be created directly from an image like this:\n *\n * ```js\n * let sprite = PIXI.Sprite.from('assets/image.png');\n * ```\n *\n * The more efficient way to create sprites is using a {@link PIXI.Spritesheet},\n * as swapping base textures when rendering to the screen is inefficient.\n *\n * ```js\n * PIXI.Loader.shared.add(\"assets/spritesheet.json\").load(setup);\n *\n * function setup() {\n * let sheet = PIXI.Loader.shared.resources[\"assets/spritesheet.json\"].spritesheet;\n * let sprite = new PIXI.Sprite(sheet.textures[\"image.png\"]);\n * ...\n * }\n * ```\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Sprite = /*@__PURE__*/(function (Container) {\n function Sprite(texture)\n {\n Container.call(this);\n\n /**\n * The anchor point defines the normalized coordinates\n * in the texture that map to the position of this\n * sprite.\n *\n * By default, this is `(0,0)` (or `texture.defaultAnchor`\n * if you have modified that), which means the position\n * `(x,y)` of this `Sprite` will be the top-left corner.\n *\n * Note: Updating `texture.defaultAnchor` after\n * constructing a `Sprite` does _not_ update its anchor.\n *\n * {@link https://docs.cocos2d-x.org/cocos2d-x/en/sprites/manipulation.html}\n *\n * @default `texture.defaultAnchor`\n * @member {PIXI.ObservablePoint}\n * @private\n */\n this._anchor = new ObservablePoint(\n this._onAnchorUpdate,\n this,\n (texture ? texture.defaultAnchor.x : 0),\n (texture ? texture.defaultAnchor.y : 0)\n );\n\n /**\n * The texture that the sprite is using\n *\n * @private\n * @member {PIXI.Texture}\n */\n this._texture = null;\n\n /**\n * The width of the sprite (this is initially set by the texture)\n *\n * @private\n * @member {number}\n */\n this._width = 0;\n\n /**\n * The height of the sprite (this is initially set by the texture)\n *\n * @private\n * @member {number}\n */\n this._height = 0;\n\n /**\n * The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @private\n * @member {number}\n * @default 0xFFFFFF\n */\n this._tint = null;\n this._tintRGB = null;\n this.tint = 0xFFFFFF;\n\n /**\n * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * The shader that will be used to render the sprite. Set to null to remove a current shader.\n *\n * @member {PIXI.Filter|PIXI.Shader}\n */\n this.shader = null;\n\n /**\n * Cached tint value so we can tell when the tint is changed.\n * Value is used for 2d CanvasRenderer.\n *\n * @protected\n * @member {number}\n * @default 0xFFFFFF\n */\n this._cachedTint = 0xFFFFFF;\n\n /**\n * this is used to store the uvs data of the sprite, assigned at the same time\n * as the vertexData in calculateVertices()\n *\n * @private\n * @member {Float32Array}\n */\n this.uvs = null;\n\n // call texture setter\n this.texture = texture || Texture.EMPTY;\n\n /**\n * this is used to store the vertex data of the sprite (basically a quad)\n *\n * @private\n * @member {Float32Array}\n */\n this.vertexData = new Float32Array(8);\n\n /**\n * This is used to calculate the bounds of the object IF it is a trimmed sprite\n *\n * @private\n * @member {Float32Array}\n */\n this.vertexTrimmedData = null;\n\n this._transformID = -1;\n this._textureID = -1;\n\n this._transformTrimmedID = -1;\n this._textureTrimmedID = -1;\n\n // Batchable stuff..\n // TODO could make this a mixin?\n this.indices = indices;\n this.size = 4;\n this.start = 0;\n\n /**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_render' & '_renderCanvas' methods.\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = 'batch';\n\n /**\n * used to fast check if a sprite is.. a sprite!\n * @member {boolean}\n */\n this.isSprite = true;\n\n /**\n * Internal roundPixels field\n *\n * @member {boolean}\n * @private\n */\n this._roundPixels = settings.ROUND_PIXELS;\n }\n\n if ( Container ) Sprite.__proto__ = Container;\n Sprite.prototype = Object.create( Container && Container.prototype );\n Sprite.prototype.constructor = Sprite;\n\n var prototypeAccessors = { roundPixels: { configurable: true },width: { configurable: true },height: { configurable: true },anchor: { configurable: true },tint: { configurable: true },texture: { configurable: true } };\n\n /**\n * When the texture is updated, this event will fire to update the scale and frame\n *\n * @private\n */\n Sprite.prototype._onTextureUpdate = function _onTextureUpdate ()\n {\n this._textureID = -1;\n this._textureTrimmedID = -1;\n this._cachedTint = 0xFFFFFF;\n\n // so if _width is 0 then width was not set..\n if (this._width)\n {\n this.scale.x = sign(this.scale.x) * this._width / this._texture.orig.width;\n }\n\n if (this._height)\n {\n this.scale.y = sign(this.scale.y) * this._height / this._texture.orig.height;\n }\n };\n\n /**\n * Called when the anchor position updates.\n *\n * @private\n */\n Sprite.prototype._onAnchorUpdate = function _onAnchorUpdate ()\n {\n this._transformID = -1;\n this._transformTrimmedID = -1;\n };\n\n /**\n * calculates worldTransform * vertices, store it in vertexData\n */\n Sprite.prototype.calculateVertices = function calculateVertices ()\n {\n var texture = this._texture;\n\n if (this._transformID === this.transform._worldID && this._textureID === texture._updateID)\n {\n return;\n }\n\n // update texture UV here, because base texture can be changed without calling `_onTextureUpdate`\n if (this._textureID !== texture._updateID)\n {\n this.uvs = this._texture._uvs.uvsFloat32;\n }\n\n this._transformID = this.transform._worldID;\n this._textureID = texture._updateID;\n\n // set the vertex data\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n var vertexData = this.vertexData;\n var trim = texture.trim;\n var orig = texture.orig;\n var anchor = this._anchor;\n\n var w0 = 0;\n var w1 = 0;\n var h0 = 0;\n var h1 = 0;\n\n if (trim)\n {\n // if the sprite is trimmed and is not a tilingsprite then we need to add the extra\n // space before transforming the sprite coords.\n w1 = trim.x - (anchor._x * orig.width);\n w0 = w1 + trim.width;\n\n h1 = trim.y - (anchor._y * orig.height);\n h0 = h1 + trim.height;\n }\n else\n {\n w1 = -anchor._x * orig.width;\n w0 = w1 + orig.width;\n\n h1 = -anchor._y * orig.height;\n h0 = h1 + orig.height;\n }\n\n // xy\n vertexData[0] = (a * w1) + (c * h1) + tx;\n vertexData[1] = (d * h1) + (b * w1) + ty;\n\n // xy\n vertexData[2] = (a * w0) + (c * h1) + tx;\n vertexData[3] = (d * h1) + (b * w0) + ty;\n\n // xy\n vertexData[4] = (a * w0) + (c * h0) + tx;\n vertexData[5] = (d * h0) + (b * w0) + ty;\n\n // xy\n vertexData[6] = (a * w1) + (c * h0) + tx;\n vertexData[7] = (d * h0) + (b * w1) + ty;\n\n if (this._roundPixels)\n {\n for (var i = 0; i < 8; i++)\n {\n vertexData[i] = Math.round(vertexData[i]);\n }\n }\n };\n\n /**\n * calculates worldTransform * vertices for a non texture with a trim. store it in vertexTrimmedData\n * This is used to ensure that the true width and height of a trimmed texture is respected\n */\n Sprite.prototype.calculateTrimmedVertices = function calculateTrimmedVertices ()\n {\n if (!this.vertexTrimmedData)\n {\n this.vertexTrimmedData = new Float32Array(8);\n }\n else if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID)\n {\n return;\n }\n\n this._transformTrimmedID = this.transform._worldID;\n this._textureTrimmedID = this._texture._updateID;\n\n // lets do some special trim code!\n var texture = this._texture;\n var vertexData = this.vertexTrimmedData;\n var orig = texture.orig;\n var anchor = this._anchor;\n\n // lets calculate the new untrimmed bounds..\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var w1 = -anchor._x * orig.width;\n var w0 = w1 + orig.width;\n\n var h1 = -anchor._y * orig.height;\n var h0 = h1 + orig.height;\n\n // xy\n vertexData[0] = (a * w1) + (c * h1) + tx;\n vertexData[1] = (d * h1) + (b * w1) + ty;\n\n // xy\n vertexData[2] = (a * w0) + (c * h1) + tx;\n vertexData[3] = (d * h1) + (b * w0) + ty;\n\n // xy\n vertexData[4] = (a * w0) + (c * h0) + tx;\n vertexData[5] = (d * h0) + (b * w0) + ty;\n\n // xy\n vertexData[6] = (a * w1) + (c * h0) + tx;\n vertexData[7] = (d * h0) + (b * w1) + ty;\n };\n\n /**\n *\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The webgl renderer to use.\n */\n Sprite.prototype._render = function _render (renderer)\n {\n this.calculateVertices();\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n renderer.plugins[this.pluginName].render(this);\n };\n\n /**\n * Updates the bounds of the sprite.\n *\n * @protected\n */\n Sprite.prototype._calculateBounds = function _calculateBounds ()\n {\n var trim = this._texture.trim;\n var orig = this._texture.orig;\n\n // First lets check to see if the current texture has a trim..\n if (!trim || (trim.width === orig.width && trim.height === orig.height))\n {\n // no trim! lets use the usual calculations..\n this.calculateVertices();\n this._bounds.addQuad(this.vertexData);\n }\n else\n {\n // lets calculate a special trimmed bounds...\n this.calculateTrimmedVertices();\n this._bounds.addQuad(this.vertexTrimmedData);\n }\n };\n\n /**\n * Gets the local bounds of the sprite object.\n *\n * @param {PIXI.Rectangle} [rect] - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n Sprite.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n // we can do a fast local bounds if the sprite has no children!\n if (this.children.length === 0)\n {\n this._bounds.minX = this._texture.orig.width * -this._anchor._x;\n this._bounds.minY = this._texture.orig.height * -this._anchor._y;\n this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x);\n this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y);\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n }\n\n return Container.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * Tests if a point is inside this sprite\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */\n Sprite.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, tempPoint);\n\n var width = this._texture.orig.width;\n var height = this._texture.orig.height;\n var x1 = -width * this.anchor.x;\n var y1 = 0;\n\n if (tempPoint.x >= x1 && tempPoint.x < x1 + width)\n {\n y1 = -height * this.anchor.y;\n\n if (tempPoint.y >= y1 && tempPoint.y < y1 + height)\n {\n return true;\n }\n }\n\n return false;\n };\n\n /**\n * Destroys this sprite and optionally its texture and children\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well\n */\n Sprite.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this._texture.off('update', this._onTextureUpdate, this);\n\n this._anchor = null;\n\n var destroyTexture = typeof options === 'boolean' ? options : options && options.texture;\n\n if (destroyTexture)\n {\n var destroyBaseTexture = typeof options === 'boolean' ? options : options && options.baseTexture;\n\n this._texture.destroy(!!destroyBaseTexture);\n }\n\n this._texture = null;\n this.shader = null;\n };\n\n // some helper functions..\n\n /**\n * Helper function that creates a new sprite based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source Source to create texture from\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Sprite} The newly created sprite\n */\n Sprite.from = function from (source, options)\n {\n var texture = (source instanceof Texture)\n ? source\n : Texture.from(source, options);\n\n return new Sprite(texture);\n };\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n prototypeAccessors.roundPixels.set = function (value)\n {\n if (this._roundPixels !== value)\n {\n this._transformID = -1;\n }\n this._roundPixels = value;\n };\n\n prototypeAccessors.roundPixels.get = function ()\n {\n return this._roundPixels;\n };\n\n /**\n * The width of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return Math.abs(this.scale.x) * this._texture.orig.width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n var s = sign(this.scale.x) || 1;\n\n this.scale.x = s * value / this._texture.orig.width;\n this._width = value;\n };\n\n /**\n * The height of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return Math.abs(this.scale.y) * this._texture.orig.height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n var s = sign(this.scale.y) || 1;\n\n this.scale.y = s * value / this._texture.orig.height;\n this._height = value;\n };\n\n /**\n * The anchor sets the origin point of the text. The default value is taken from the {@link PIXI.Texture|Texture}\n * and passed to the constructor.\n *\n * The default is `(0,0)`, this means the text's origin is the top left.\n *\n * Setting the anchor to `(0.5,0.5)` means the text's origin is centered.\n *\n * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner.\n *\n * If you pass only single parameter, it will set both x and y to the same value as shown in the example below.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.anchor.set(0.5); // This will set the origin to center. (0.5) is same as (0.5, 0.5).\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.anchor.get = function ()\n {\n return this._anchor;\n };\n\n prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._anchor.copyFrom(value);\n };\n\n /**\n * The tint applied to the sprite. This is a hex value.\n * A value of 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._tint = value;\n this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16);\n };\n\n /**\n * The texture that the sprite is using\n *\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this._texture;\n };\n\n prototypeAccessors.texture.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._texture === value)\n {\n return;\n }\n\n this._texture = value || Texture.EMPTY;\n this._cachedTint = 0xFFFFFF;\n\n this._textureID = -1;\n this._textureTrimmedID = -1;\n\n if (value)\n {\n // wait for the texture to load\n if (value.baseTexture.valid)\n {\n this._onTextureUpdate();\n }\n else\n {\n value.once('update', this._onTextureUpdate, this);\n }\n }\n };\n\n Object.defineProperties( Sprite.prototype, prototypeAccessors );\n\n return Sprite;\n}(Container));\n\nexport { Sprite };\n//# sourceMappingURL=sprite.es.js.map\n","/*!\n * @pixi/text - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/text is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Sprite } from '@pixi/sprite';\nimport { Texture } from '@pixi/core';\nimport { settings } from '@pixi/settings';\nimport { Rectangle } from '@pixi/math';\nimport { hex2string, hex2rgb, string2hex, trimCanvas, sign } from '@pixi/utils';\n\n/**\n * Constants that define the type of gradient on text.\n *\n * @static\n * @constant\n * @name TEXT_GRADIENT\n * @memberof PIXI\n * @type {object}\n * @property {number} LINEAR_VERTICAL Vertical gradient\n * @property {number} LINEAR_HORIZONTAL Linear gradient\n */\nvar TEXT_GRADIENT = {\n LINEAR_VERTICAL: 0,\n LINEAR_HORIZONTAL: 1,\n};\n\n// disabling eslint for now, going to rewrite this in v5\n\nvar defaultStyle = {\n align: 'left',\n breakWords: false,\n dropShadow: false,\n dropShadowAlpha: 1,\n dropShadowAngle: Math.PI / 6,\n dropShadowBlur: 0,\n dropShadowColor: 'black',\n dropShadowDistance: 5,\n fill: 'black',\n fillGradientType: TEXT_GRADIENT.LINEAR_VERTICAL,\n fillGradientStops: [],\n fontFamily: 'Arial',\n fontSize: 26,\n fontStyle: 'normal',\n fontVariant: 'normal',\n fontWeight: 'normal',\n letterSpacing: 0,\n lineHeight: 0,\n lineJoin: 'miter',\n miterLimit: 10,\n padding: 0,\n stroke: 'black',\n strokeThickness: 0,\n textBaseline: 'alphabetic',\n trim: false,\n whiteSpace: 'pre',\n wordWrap: false,\n wordWrapWidth: 100,\n leading: 0,\n};\n\nvar genericFontFamilies = [\n 'serif',\n 'sans-serif',\n 'monospace',\n 'cursive',\n 'fantasy',\n 'system-ui' ];\n\n/**\n * A TextStyle Object contains information to decorate a Text objects.\n *\n * An instance can be shared between multiple Text objects; then changing the style will update all text objects using it.\n *\n * A tool can be used to generate a text style [here](https://pixijs.io/pixi-text-style).\n *\n * @class\n * @memberof PIXI\n */\nvar TextStyle = function TextStyle(style)\n{\n this.styleID = 0;\n\n this.reset();\n\n deepCopyProperties(this, style, style);\n};\n\nvar prototypeAccessors = { align: { configurable: true },breakWords: { configurable: true },dropShadow: { configurable: true },dropShadowAlpha: { configurable: true },dropShadowAngle: { configurable: true },dropShadowBlur: { configurable: true },dropShadowColor: { configurable: true },dropShadowDistance: { configurable: true },fill: { configurable: true },fillGradientType: { configurable: true },fillGradientStops: { configurable: true },fontFamily: { configurable: true },fontSize: { configurable: true },fontStyle: { configurable: true },fontVariant: { configurable: true },fontWeight: { configurable: true },letterSpacing: { configurable: true },lineHeight: { configurable: true },leading: { configurable: true },lineJoin: { configurable: true },miterLimit: { configurable: true },padding: { configurable: true },stroke: { configurable: true },strokeThickness: { configurable: true },textBaseline: { configurable: true },trim: { configurable: true },whiteSpace: { configurable: true },wordWrap: { configurable: true },wordWrapWidth: { configurable: true } };\n\n/**\n * Creates a new TextStyle object with the same values as this one.\n * Note that the only the properties of the object are cloned.\n *\n * @return {PIXI.TextStyle} New cloned TextStyle object\n */\nTextStyle.prototype.clone = function clone ()\n{\n var clonedProperties = {};\n\n deepCopyProperties(clonedProperties, this, defaultStyle);\n\n return new TextStyle(clonedProperties);\n};\n\n/**\n * Resets all properties to the defaults specified in TextStyle.prototype._default\n */\nTextStyle.prototype.reset = function reset ()\n{\n deepCopyProperties(this, defaultStyle, defaultStyle);\n};\n\n/**\n * Alignment for multiline text ('left', 'center' or 'right'), does not affect single line text\n *\n * @member {string}\n */\nprototypeAccessors.align.get = function ()\n{\n return this._align;\n};\nprototypeAccessors.align.set = function (align) // eslint-disable-line require-jsdoc\n{\n if (this._align !== align)\n {\n this._align = align;\n this.styleID++;\n }\n};\n\n/**\n * Indicates if lines can be wrapped within words, it needs wordWrap to be set to true\n *\n * @member {boolean}\n */\nprototypeAccessors.breakWords.get = function ()\n{\n return this._breakWords;\n};\nprototypeAccessors.breakWords.set = function (breakWords) // eslint-disable-line require-jsdoc\n{\n if (this._breakWords !== breakWords)\n {\n this._breakWords = breakWords;\n this.styleID++;\n }\n};\n\n/**\n * Set a drop shadow for the text\n *\n * @member {boolean}\n */\nprototypeAccessors.dropShadow.get = function ()\n{\n return this._dropShadow;\n};\nprototypeAccessors.dropShadow.set = function (dropShadow) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadow !== dropShadow)\n {\n this._dropShadow = dropShadow;\n this.styleID++;\n }\n};\n\n/**\n * Set alpha for the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowAlpha.get = function ()\n{\n return this._dropShadowAlpha;\n};\nprototypeAccessors.dropShadowAlpha.set = function (dropShadowAlpha) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowAlpha !== dropShadowAlpha)\n {\n this._dropShadowAlpha = dropShadowAlpha;\n this.styleID++;\n }\n};\n\n/**\n * Set a angle of the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowAngle.get = function ()\n{\n return this._dropShadowAngle;\n};\nprototypeAccessors.dropShadowAngle.set = function (dropShadowAngle) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowAngle !== dropShadowAngle)\n {\n this._dropShadowAngle = dropShadowAngle;\n this.styleID++;\n }\n};\n\n/**\n * Set a shadow blur radius\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowBlur.get = function ()\n{\n return this._dropShadowBlur;\n};\nprototypeAccessors.dropShadowBlur.set = function (dropShadowBlur) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowBlur !== dropShadowBlur)\n {\n this._dropShadowBlur = dropShadowBlur;\n this.styleID++;\n }\n};\n\n/**\n * A fill style to be used on the dropshadow e.g 'red', '#00FF00'\n *\n * @member {string|number}\n */\nprototypeAccessors.dropShadowColor.get = function ()\n{\n return this._dropShadowColor;\n};\nprototypeAccessors.dropShadowColor.set = function (dropShadowColor) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(dropShadowColor);\n if (this._dropShadowColor !== outputColor)\n {\n this._dropShadowColor = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * Set a distance of the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowDistance.get = function ()\n{\n return this._dropShadowDistance;\n};\nprototypeAccessors.dropShadowDistance.set = function (dropShadowDistance) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowDistance !== dropShadowDistance)\n {\n this._dropShadowDistance = dropShadowDistance;\n this.styleID++;\n }\n};\n\n/**\n * A canvas fillstyle that will be used on the text e.g 'red', '#00FF00'.\n * Can be an array to create a gradient eg ['#000000','#FFFFFF']\n * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle|MDN}\n *\n * @member {string|string[]|number|number[]|CanvasGradient|CanvasPattern}\n */\nprototypeAccessors.fill.get = function ()\n{\n return this._fill;\n};\nprototypeAccessors.fill.set = function (fill) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(fill);\n if (this._fill !== outputColor)\n {\n this._fill = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * If fill is an array of colours to create a gradient, this can change the type/direction of the gradient.\n * See {@link PIXI.TEXT_GRADIENT}\n *\n * @member {number}\n */\nprototypeAccessors.fillGradientType.get = function ()\n{\n return this._fillGradientType;\n};\nprototypeAccessors.fillGradientType.set = function (fillGradientType) // eslint-disable-line require-jsdoc\n{\n if (this._fillGradientType !== fillGradientType)\n {\n this._fillGradientType = fillGradientType;\n this.styleID++;\n }\n};\n\n/**\n * If fill is an array of colours to create a gradient, this array can set the stop points\n * (numbers between 0 and 1) for the color, overriding the default behaviour of evenly spacing them.\n *\n * @member {number[]}\n */\nprototypeAccessors.fillGradientStops.get = function ()\n{\n return this._fillGradientStops;\n};\nprototypeAccessors.fillGradientStops.set = function (fillGradientStops) // eslint-disable-line require-jsdoc\n{\n if (!areArraysEqual(this._fillGradientStops,fillGradientStops))\n {\n this._fillGradientStops = fillGradientStops;\n this.styleID++;\n }\n};\n\n/**\n * The font family\n *\n * @member {string|string[]}\n */\nprototypeAccessors.fontFamily.get = function ()\n{\n return this._fontFamily;\n};\nprototypeAccessors.fontFamily.set = function (fontFamily) // eslint-disable-line require-jsdoc\n{\n if (this.fontFamily !== fontFamily)\n {\n this._fontFamily = fontFamily;\n this.styleID++;\n }\n};\n\n/**\n * The font size\n * (as a number it converts to px, but as a string, equivalents are '26px','20pt','160%' or '1.6em')\n *\n * @member {number|string}\n */\nprototypeAccessors.fontSize.get = function ()\n{\n return this._fontSize;\n};\nprototypeAccessors.fontSize.set = function (fontSize) // eslint-disable-line require-jsdoc\n{\n if (this._fontSize !== fontSize)\n {\n this._fontSize = fontSize;\n this.styleID++;\n }\n};\n\n/**\n * The font style\n * ('normal', 'italic' or 'oblique')\n *\n * @member {string}\n */\nprototypeAccessors.fontStyle.get = function ()\n{\n return this._fontStyle;\n};\nprototypeAccessors.fontStyle.set = function (fontStyle) // eslint-disable-line require-jsdoc\n{\n if (this._fontStyle !== fontStyle)\n {\n this._fontStyle = fontStyle;\n this.styleID++;\n }\n};\n\n/**\n * The font variant\n * ('normal' or 'small-caps')\n *\n * @member {string}\n */\nprototypeAccessors.fontVariant.get = function ()\n{\n return this._fontVariant;\n};\nprototypeAccessors.fontVariant.set = function (fontVariant) // eslint-disable-line require-jsdoc\n{\n if (this._fontVariant !== fontVariant)\n {\n this._fontVariant = fontVariant;\n this.styleID++;\n }\n};\n\n/**\n * The font weight\n * ('normal', 'bold', 'bolder', 'lighter' and '100', '200', '300', '400', '500', '600', '700', 800' or '900')\n *\n * @member {string}\n */\nprototypeAccessors.fontWeight.get = function ()\n{\n return this._fontWeight;\n};\nprototypeAccessors.fontWeight.set = function (fontWeight) // eslint-disable-line require-jsdoc\n{\n if (this._fontWeight !== fontWeight)\n {\n this._fontWeight = fontWeight;\n this.styleID++;\n }\n};\n\n/**\n * The amount of spacing between letters, default is 0\n *\n * @member {number}\n */\nprototypeAccessors.letterSpacing.get = function ()\n{\n return this._letterSpacing;\n};\nprototypeAccessors.letterSpacing.set = function (letterSpacing) // eslint-disable-line require-jsdoc\n{\n if (this._letterSpacing !== letterSpacing)\n {\n this._letterSpacing = letterSpacing;\n this.styleID++;\n }\n};\n\n/**\n * The line height, a number that represents the vertical space that a letter uses\n *\n * @member {number}\n */\nprototypeAccessors.lineHeight.get = function ()\n{\n return this._lineHeight;\n};\nprototypeAccessors.lineHeight.set = function (lineHeight) // eslint-disable-line require-jsdoc\n{\n if (this._lineHeight !== lineHeight)\n {\n this._lineHeight = lineHeight;\n this.styleID++;\n }\n};\n\n/**\n * The space between lines\n *\n * @member {number}\n */\nprototypeAccessors.leading.get = function ()\n{\n return this._leading;\n};\nprototypeAccessors.leading.set = function (leading) // eslint-disable-line require-jsdoc\n{\n if (this._leading !== leading)\n {\n this._leading = leading;\n this.styleID++;\n }\n};\n\n/**\n * The lineJoin property sets the type of corner created, it can resolve spiked text issues.\n * Default is 'miter' (creates a sharp corner).\n *\n * @member {string}\n */\nprototypeAccessors.lineJoin.get = function ()\n{\n return this._lineJoin;\n};\nprototypeAccessors.lineJoin.set = function (lineJoin) // eslint-disable-line require-jsdoc\n{\n if (this._lineJoin !== lineJoin)\n {\n this._lineJoin = lineJoin;\n this.styleID++;\n }\n};\n\n/**\n * The miter limit to use when using the 'miter' lineJoin mode\n * This can reduce or increase the spikiness of rendered text.\n *\n * @member {number}\n */\nprototypeAccessors.miterLimit.get = function ()\n{\n return this._miterLimit;\n};\nprototypeAccessors.miterLimit.set = function (miterLimit) // eslint-disable-line require-jsdoc\n{\n if (this._miterLimit !== miterLimit)\n {\n this._miterLimit = miterLimit;\n this.styleID++;\n }\n};\n\n/**\n * Occasionally some fonts are cropped. Adding some padding will prevent this from happening\n * by adding padding to all sides of the text.\n *\n * @member {number}\n */\nprototypeAccessors.padding.get = function ()\n{\n return this._padding;\n};\nprototypeAccessors.padding.set = function (padding) // eslint-disable-line require-jsdoc\n{\n if (this._padding !== padding)\n {\n this._padding = padding;\n this.styleID++;\n }\n};\n\n/**\n * A canvas fillstyle that will be used on the text stroke\n * e.g 'blue', '#FCFF00'\n *\n * @member {string|number}\n */\nprototypeAccessors.stroke.get = function ()\n{\n return this._stroke;\n};\nprototypeAccessors.stroke.set = function (stroke) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(stroke);\n if (this._stroke !== outputColor)\n {\n this._stroke = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * A number that represents the thickness of the stroke.\n * Default is 0 (no stroke)\n *\n * @member {number}\n */\nprototypeAccessors.strokeThickness.get = function ()\n{\n return this._strokeThickness;\n};\nprototypeAccessors.strokeThickness.set = function (strokeThickness) // eslint-disable-line require-jsdoc\n{\n if (this._strokeThickness !== strokeThickness)\n {\n this._strokeThickness = strokeThickness;\n this.styleID++;\n }\n};\n\n/**\n * The baseline of the text that is rendered.\n *\n * @member {string}\n */\nprototypeAccessors.textBaseline.get = function ()\n{\n return this._textBaseline;\n};\nprototypeAccessors.textBaseline.set = function (textBaseline) // eslint-disable-line require-jsdoc\n{\n if (this._textBaseline !== textBaseline)\n {\n this._textBaseline = textBaseline;\n this.styleID++;\n }\n};\n\n/**\n * Trim transparent borders\n *\n * @member {boolean}\n */\nprototypeAccessors.trim.get = function ()\n{\n return this._trim;\n};\nprototypeAccessors.trim.set = function (trim) // eslint-disable-line require-jsdoc\n{\n if (this._trim !== trim)\n {\n this._trim = trim;\n this.styleID++;\n }\n};\n\n/**\n * How newlines and spaces should be handled.\n * Default is 'pre' (preserve, preserve).\n *\n * value | New lines | Spaces\n * --- | --- | ---\n * 'normal' | Collapse | Collapse\n * 'pre' | Preserve | Preserve\n * 'pre-line' | Preserve | Collapse\n *\n * @member {string}\n */\nprototypeAccessors.whiteSpace.get = function ()\n{\n return this._whiteSpace;\n};\nprototypeAccessors.whiteSpace.set = function (whiteSpace) // eslint-disable-line require-jsdoc\n{\n if (this._whiteSpace !== whiteSpace)\n {\n this._whiteSpace = whiteSpace;\n this.styleID++;\n }\n};\n\n/**\n * Indicates if word wrap should be used\n *\n * @member {boolean}\n */\nprototypeAccessors.wordWrap.get = function ()\n{\n return this._wordWrap;\n};\nprototypeAccessors.wordWrap.set = function (wordWrap) // eslint-disable-line require-jsdoc\n{\n if (this._wordWrap !== wordWrap)\n {\n this._wordWrap = wordWrap;\n this.styleID++;\n }\n};\n\n/**\n * The width at which text will wrap, it needs wordWrap to be set to true\n *\n * @member {number}\n */\nprototypeAccessors.wordWrapWidth.get = function ()\n{\n return this._wordWrapWidth;\n};\nprototypeAccessors.wordWrapWidth.set = function (wordWrapWidth) // eslint-disable-line require-jsdoc\n{\n if (this._wordWrapWidth !== wordWrapWidth)\n {\n this._wordWrapWidth = wordWrapWidth;\n this.styleID++;\n }\n};\n\n/**\n * Generates a font style string to use for `TextMetrics.measureFont()`.\n *\n * @return {string} Font style string, for passing to `TextMetrics.measureFont()`\n */\nTextStyle.prototype.toFontString = function toFontString ()\n{\n // build canvas api font setting from individual components. Convert a numeric this.fontSize to px\n var fontSizeString = (typeof this.fontSize === 'number') ? ((this.fontSize) + \"px\") : this.fontSize;\n\n // Clean-up fontFamily property by quoting each font name\n // this will support font names with spaces\n var fontFamilies = this.fontFamily;\n\n if (!Array.isArray(this.fontFamily))\n {\n fontFamilies = this.fontFamily.split(',');\n }\n\n for (var i = fontFamilies.length - 1; i >= 0; i--)\n {\n // Trim any extra white-space\n var fontFamily = fontFamilies[i].trim();\n\n // Check if font already contains strings\n if (!(/([\\\"\\'])[^\\'\\\"]+\\1/).test(fontFamily) && genericFontFamilies.indexOf(fontFamily) < 0)\n {\n fontFamily = \"\\\"\" + fontFamily + \"\\\"\";\n }\n fontFamilies[i] = fontFamily;\n }\n\n return ((this.fontStyle) + \" \" + (this.fontVariant) + \" \" + (this.fontWeight) + \" \" + fontSizeString + \" \" + (fontFamilies.join(',')));\n};\n\nObject.defineProperties( TextStyle.prototype, prototypeAccessors );\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * @private\n * @param {number|number[]} color\n * @return {string} The color as a string.\n */\nfunction getSingleColor(color)\n{\n if (typeof color === 'number')\n {\n return hex2string(color);\n }\n else if ( typeof color === 'string' )\n {\n if ( color.indexOf('0x') === 0 )\n {\n color = color.replace('0x', '#');\n }\n }\n\n return color;\n}\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * This version can also convert array of colors\n * @private\n * @param {number|number[]} color\n * @return {string} The color as a string.\n */\nfunction getColor(color)\n{\n if (!Array.isArray(color))\n {\n return getSingleColor(color);\n }\n else\n {\n for (var i = 0; i < color.length; ++i)\n {\n color[i] = getSingleColor(color[i]);\n }\n\n return color;\n }\n}\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * This version can also convert array of colors\n * @private\n * @param {Array} array1 First array to compare\n * @param {Array} array2 Second array to compare\n * @return {boolean} Do the arrays contain the same values in the same order\n */\nfunction areArraysEqual(array1, array2)\n{\n if (!Array.isArray(array1) || !Array.isArray(array2))\n {\n return false;\n }\n\n if (array1.length !== array2.length)\n {\n return false;\n }\n\n for (var i = 0; i < array1.length; ++i)\n {\n if (array1[i] !== array2[i])\n {\n return false;\n }\n }\n\n return true;\n}\n\n/**\n * Utility function to ensure that object properties are copied by value, and not by reference\n * @private\n * @param {Object} target Target object to copy properties into\n * @param {Object} source Source object for the properties to copy\n * @param {string} propertyObj Object containing properties names we want to loop over\n */\nfunction deepCopyProperties(target, source, propertyObj) {\n for (var prop in propertyObj) {\n if (Array.isArray(source[prop])) {\n target[prop] = source[prop].slice();\n } else {\n target[prop] = source[prop];\n }\n }\n}\n\n/**\n * The TextMetrics object represents the measurement of a block of text with a specified style.\n *\n * ```js\n * let style = new PIXI.TextStyle({fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'})\n * let textMetrics = PIXI.TextMetrics.measureText('Your text', style)\n * ```\n *\n * @class\n * @memberof PIXI\n */\nvar TextMetrics = function TextMetrics(text, style, width, height, lines, lineWidths, lineHeight, maxLineWidth, fontProperties)\n{\n /**\n * The text that was measured\n *\n * @member {string}\n */\n this.text = text;\n\n /**\n * The style that was measured\n *\n * @member {PIXI.TextStyle}\n */\n this.style = style;\n\n /**\n * The measured width of the text\n *\n * @member {number}\n */\n this.width = width;\n\n /**\n * The measured height of the text\n *\n * @member {number}\n */\n this.height = height;\n\n /**\n * An array of lines of the text broken by new lines and wrapping is specified in style\n *\n * @member {string[]}\n */\n this.lines = lines;\n\n /**\n * An array of the line widths for each line matched to `lines`\n *\n * @member {number[]}\n */\n this.lineWidths = lineWidths;\n\n /**\n * The measured line height for this style\n *\n * @member {number}\n */\n this.lineHeight = lineHeight;\n\n /**\n * The maximum line width for all measured lines\n *\n * @member {number}\n */\n this.maxLineWidth = maxLineWidth;\n\n /**\n * The font properties object from TextMetrics.measureFont\n *\n * @member {PIXI.IFontMetrics}\n */\n this.fontProperties = fontProperties;\n};\n\n/**\n * Measures the supplied string of text and returns a Rectangle.\n *\n * @param {string} text - the text to measure.\n * @param {PIXI.TextStyle} style - the text style to use for measuring\n * @param {boolean} [wordWrap] - optional override for if word-wrap should be applied to the text.\n * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring.\n * @return {PIXI.TextMetrics} measured width and height of the text.\n */\nTextMetrics.measureText = function measureText (text, style, wordWrap, canvas)\n{\n if ( canvas === void 0 ) canvas = TextMetrics._canvas;\n\n wordWrap = (wordWrap === undefined || wordWrap === null) ? style.wordWrap : wordWrap;\n var font = style.toFontString();\n var fontProperties = TextMetrics.measureFont(font);\n\n // fallback in case UA disallow canvas data extraction\n // (toDataURI, getImageData functions)\n if (fontProperties.fontSize === 0)\n {\n fontProperties.fontSize = style.fontSize;\n fontProperties.ascent = style.fontSize;\n }\n\n var context = canvas.getContext('2d');\n\n context.font = font;\n\n var outputText = wordWrap ? TextMetrics.wordWrap(text, style, canvas) : text;\n var lines = outputText.split(/(?:\\r\\n|\\r|\\n)/);\n var lineWidths = new Array(lines.length);\n var maxLineWidth = 0;\n\n for (var i = 0; i < lines.length; i++)\n {\n var lineWidth = context.measureText(lines[i]).width + ((lines[i].length - 1) * style.letterSpacing);\n\n lineWidths[i] = lineWidth;\n maxLineWidth = Math.max(maxLineWidth, lineWidth);\n }\n var width = maxLineWidth + style.strokeThickness;\n\n if (style.dropShadow)\n {\n width += style.dropShadowDistance;\n }\n\n var lineHeight = style.lineHeight || fontProperties.fontSize + style.strokeThickness;\n var height = Math.max(lineHeight, fontProperties.fontSize + style.strokeThickness)\n + ((lines.length - 1) * (lineHeight + style.leading));\n\n if (style.dropShadow)\n {\n height += style.dropShadowDistance;\n }\n\n return new TextMetrics(\n text,\n style,\n width,\n height,\n lines,\n lineWidths,\n lineHeight + style.leading,\n maxLineWidth,\n fontProperties\n );\n};\n\n/**\n * Applies newlines to a string to have it optimally fit into the horizontal\n * bounds set by the Text object's wordWrapWidth property.\n *\n * @private\n * @param {string} text - String to apply word wrapping to\n * @param {PIXI.TextStyle} style - the style to use when wrapping\n * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring.\n * @return {string} New string with new lines applied where required\n */\nTextMetrics.wordWrap = function wordWrap (text, style, canvas)\n{\n if ( canvas === void 0 ) canvas = TextMetrics._canvas;\n\n var context = canvas.getContext('2d');\n\n var width = 0;\n var line = '';\n var lines = '';\n\n var cache = {};\n var letterSpacing = style.letterSpacing;\n var whiteSpace = style.whiteSpace;\n\n // How to handle whitespaces\n var collapseSpaces = TextMetrics.collapseSpaces(whiteSpace);\n var collapseNewlines = TextMetrics.collapseNewlines(whiteSpace);\n\n // whether or not spaces may be added to the beginning of lines\n var canPrependSpaces = !collapseSpaces;\n\n // There is letterSpacing after every char except the last one\n // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!\n // so for convenience the above needs to be compared to width + 1 extra letterSpace\n // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!_\n // ________________________________________________\n // And then the final space is simply no appended to each line\n var wordWrapWidth = style.wordWrapWidth + letterSpacing;\n\n // break text into words, spaces and newline chars\n var tokens = TextMetrics.tokenize(text);\n\n for (var i = 0; i < tokens.length; i++)\n {\n // get the word, space or newlineChar\n var token = tokens[i];\n\n // if word is a new line\n if (TextMetrics.isNewline(token))\n {\n // keep the new line\n if (!collapseNewlines)\n {\n lines += TextMetrics.addLine(line);\n canPrependSpaces = !collapseSpaces;\n line = '';\n width = 0;\n continue;\n }\n\n // if we should collapse new lines\n // we simply convert it into a space\n token = ' ';\n }\n\n // if we should collapse repeated whitespaces\n if (collapseSpaces)\n {\n // check both this and the last tokens for spaces\n var currIsBreakingSpace = TextMetrics.isBreakingSpace(token);\n var lastIsBreakingSpace = TextMetrics.isBreakingSpace(line[line.length - 1]);\n\n if (currIsBreakingSpace && lastIsBreakingSpace)\n {\n continue;\n }\n }\n\n // get word width from cache if possible\n var tokenWidth = TextMetrics.getFromCache(token, letterSpacing, cache, context);\n\n // word is longer than desired bounds\n if (tokenWidth > wordWrapWidth)\n {\n // if we are not already at the beginning of a line\n if (line !== '')\n {\n // start newlines for overflow words\n lines += TextMetrics.addLine(line);\n line = '';\n width = 0;\n }\n\n // break large word over multiple lines\n if (TextMetrics.canBreakWords(token, style.breakWords))\n {\n // break word into characters\n var characters = token.split('');\n\n // loop the characters\n for (var j = 0; j < characters.length; j++)\n {\n var char = characters[j];\n\n var k = 1;\n // we are not at the end of the token\n\n while (characters[j + k])\n {\n var nextChar = characters[j + k];\n var lastChar = char[char.length - 1];\n\n // should not split chars\n if (!TextMetrics.canBreakChars(lastChar, nextChar, token, j, style.breakWords))\n {\n // combine chars & move forward one\n char += nextChar;\n }\n else\n {\n break;\n }\n\n k++;\n }\n\n j += char.length - 1;\n\n var characterWidth = TextMetrics.getFromCache(char, letterSpacing, cache, context);\n\n if (characterWidth + width > wordWrapWidth)\n {\n lines += TextMetrics.addLine(line);\n canPrependSpaces = false;\n line = '';\n width = 0;\n }\n\n line += char;\n width += characterWidth;\n }\n }\n\n // run word out of the bounds\n else\n {\n // if there are words in this line already\n // finish that line and start a new one\n if (line.length > 0)\n {\n lines += TextMetrics.addLine(line);\n line = '';\n width = 0;\n }\n\n var isLastToken = i === tokens.length - 1;\n\n // give it its own line if it's not the end\n lines += TextMetrics.addLine(token, !isLastToken);\n canPrependSpaces = false;\n line = '';\n width = 0;\n }\n }\n\n // word could fit\n else\n {\n // word won't fit because of existing words\n // start a new line\n if (tokenWidth + width > wordWrapWidth)\n {\n // if its a space we don't want it\n canPrependSpaces = false;\n\n // add a new line\n lines += TextMetrics.addLine(line);\n\n // start a new line\n line = '';\n width = 0;\n }\n\n // don't add spaces to the beginning of lines\n if (line.length > 0 || !TextMetrics.isBreakingSpace(token) || canPrependSpaces)\n {\n // add the word to the current line\n line += token;\n\n // update width counter\n width += tokenWidth;\n }\n }\n }\n\n lines += TextMetrics.addLine(line, false);\n\n return lines;\n};\n\n/**\n * Convienience function for logging each line added during the wordWrap\n * method\n *\n * @private\n * @param {string} line - The line of text to add\n * @param {boolean} newLine - Add new line character to end\n * @return {string} A formatted line\n */\nTextMetrics.addLine = function addLine (line, newLine)\n{\n if ( newLine === void 0 ) newLine = true;\n\n line = TextMetrics.trimRight(line);\n\n line = (newLine) ? (line + \"\\n\") : line;\n\n return line;\n};\n\n/**\n * Gets & sets the widths of calculated characters in a cache object\n *\n * @private\n * @param {string} key The key\n * @param {number} letterSpacing The letter spacing\n * @param {object} cache The cache\n * @param {CanvasRenderingContext2D} context The canvas context\n * @return {number} The from cache.\n */\nTextMetrics.getFromCache = function getFromCache (key, letterSpacing, cache, context)\n{\n var width = cache[key];\n\n if (width === undefined)\n {\n var spacing = ((key.length) * letterSpacing);\n\n width = context.measureText(key).width + spacing;\n cache[key] = width;\n }\n\n return width;\n};\n\n/**\n * Determines whether we should collapse breaking spaces\n *\n * @private\n * @param {string} whiteSpace The TextStyle property whiteSpace\n * @return {boolean} should collapse\n */\nTextMetrics.collapseSpaces = function collapseSpaces (whiteSpace)\n{\n return (whiteSpace === 'normal' || whiteSpace === 'pre-line');\n};\n\n/**\n * Determines whether we should collapse newLine chars\n *\n * @private\n * @param {string} whiteSpace The white space\n * @return {boolean} should collapse\n */\nTextMetrics.collapseNewlines = function collapseNewlines (whiteSpace)\n{\n return (whiteSpace === 'normal');\n};\n\n/**\n * trims breaking whitespaces from string\n *\n * @private\n * @param {string} text The text\n * @return {string} trimmed string\n */\nTextMetrics.trimRight = function trimRight (text)\n{\n if (typeof text !== 'string')\n {\n return '';\n }\n\n for (var i = text.length - 1; i >= 0; i--)\n {\n var char = text[i];\n\n if (!TextMetrics.isBreakingSpace(char))\n {\n break;\n }\n\n text = text.slice(0, -1);\n }\n\n return text;\n};\n\n/**\n * Determines if char is a newline.\n *\n * @private\n * @param {string} char The character\n * @return {boolean} True if newline, False otherwise.\n */\nTextMetrics.isNewline = function isNewline (char)\n{\n if (typeof char !== 'string')\n {\n return false;\n }\n\n return (TextMetrics._newlines.indexOf(char.charCodeAt(0)) >= 0);\n};\n\n/**\n * Determines if char is a breaking whitespace.\n *\n * @private\n * @param {string} char The character\n * @return {boolean} True if whitespace, False otherwise.\n */\nTextMetrics.isBreakingSpace = function isBreakingSpace (char)\n{\n if (typeof char !== 'string')\n {\n return false;\n }\n\n return (TextMetrics._breakingSpaces.indexOf(char.charCodeAt(0)) >= 0);\n};\n\n/**\n * Splits a string into words, breaking-spaces and newLine characters\n *\n * @private\n * @param {string} text The text\n * @return {string[]} A tokenized array\n */\nTextMetrics.tokenize = function tokenize (text)\n{\n var tokens = [];\n var token = '';\n\n if (typeof text !== 'string')\n {\n return tokens;\n }\n\n for (var i = 0; i < text.length; i++)\n {\n var char = text[i];\n\n if (TextMetrics.isBreakingSpace(char) || TextMetrics.isNewline(char))\n {\n if (token !== '')\n {\n tokens.push(token);\n token = '';\n }\n\n tokens.push(char);\n\n continue;\n }\n\n token += char;\n }\n\n if (token !== '')\n {\n tokens.push(token);\n }\n\n return tokens;\n};\n\n/**\n * This method exists to be easily overridden\n * It allows one to customise which words should break\n * Examples are if the token is CJK or numbers.\n * It must return a boolean.\n *\n * @private\n * @param {string} token The token\n * @param {boolean} breakWords The style attr break words\n * @return {boolean} whether to break word or not\n */\nTextMetrics.canBreakWords = function canBreakWords (token, breakWords)\n{\n return breakWords;\n};\n\n/**\n * This method exists to be easily overridden\n * It allows one to determine whether a pair of characters\n * should be broken by newlines\n * For example certain characters in CJK langs or numbers.\n * It must return a boolean.\n *\n * @private\n * @param {string} char The character\n * @param {string} nextChar The next character\n * @param {string} token The token/word the characters are from\n * @param {number} index The index in the token of the char\n * @param {boolean} breakWords The style attr break words\n * @return {boolean} whether to break word or not\n */\nTextMetrics.canBreakChars = function canBreakChars (char, nextChar, token, index, breakWords) // eslint-disable-line no-unused-vars\n{\n return true;\n};\n\n/**\n * Calculates the ascent, descent and fontSize of a given font-style\n *\n * @static\n * @param {string} font - String representing the style of the font\n * @return {PIXI.IFontMetrics} Font properties object\n */\nTextMetrics.measureFont = function measureFont (font)\n{\n // as this method is used for preparing assets, don't recalculate things if we don't need to\n if (TextMetrics._fonts[font])\n {\n return TextMetrics._fonts[font];\n }\n\n var properties = {};\n\n var canvas = TextMetrics._canvas;\n var context = TextMetrics._context;\n\n context.font = font;\n\n var metricsString = TextMetrics.METRICS_STRING + TextMetrics.BASELINE_SYMBOL;\n var width = Math.ceil(context.measureText(metricsString).width);\n var baseline = Math.ceil(context.measureText(TextMetrics.BASELINE_SYMBOL).width);\n var height = 2 * baseline;\n\n baseline = baseline * TextMetrics.BASELINE_MULTIPLIER | 0;\n\n canvas.width = width;\n canvas.height = height;\n\n context.fillStyle = '#f00';\n context.fillRect(0, 0, width, height);\n\n context.font = font;\n\n context.textBaseline = 'alphabetic';\n context.fillStyle = '#000';\n context.fillText(metricsString, 0, baseline);\n\n var imagedata = context.getImageData(0, 0, width, height).data;\n var pixels = imagedata.length;\n var line = width * 4;\n\n var i = 0;\n var idx = 0;\n var stop = false;\n\n // ascent. scan from top to bottom until we find a non red pixel\n for (i = 0; i < baseline; ++i)\n {\n for (var j = 0; j < line; j += 4)\n {\n if (imagedata[idx + j] !== 255)\n {\n stop = true;\n break;\n }\n }\n if (!stop)\n {\n idx += line;\n }\n else\n {\n break;\n }\n }\n\n properties.ascent = baseline - i;\n\n idx = pixels - line;\n stop = false;\n\n // descent. scan from bottom to top until we find a non red pixel\n for (i = height; i > baseline; --i)\n {\n for (var j$1 = 0; j$1 < line; j$1 += 4)\n {\n if (imagedata[idx + j$1] !== 255)\n {\n stop = true;\n break;\n }\n }\n\n if (!stop)\n {\n idx -= line;\n }\n else\n {\n break;\n }\n }\n\n properties.descent = i - baseline;\n properties.fontSize = properties.ascent + properties.descent;\n\n TextMetrics._fonts[font] = properties;\n\n return properties;\n};\n\n/**\n * Clear font metrics in metrics cache.\n *\n * @static\n * @param {string} [font] - font name. If font name not set then clear cache for all fonts.\n */\nTextMetrics.clearMetrics = function clearMetrics (font)\n{\n if ( font === void 0 ) font = '';\n\n if (font)\n {\n delete TextMetrics._fonts[font];\n }\n else\n {\n TextMetrics._fonts = {};\n }\n};\n\n/**\n * Internal return object for {@link PIXI.TextMetrics.measureFont `TextMetrics.measureFont`}.\n *\n * @typedef {object} FontMetrics\n * @property {number} ascent - The ascent distance\n * @property {number} descent - The descent distance\n * @property {number} fontSize - Font size from ascent to descent\n * @memberof PIXI.TextMetrics\n * @private\n */\n\nvar canvas = (function () {\n try\n {\n // OffscreenCanvas2D measureText can be up to 40% faster.\n var c = new OffscreenCanvas(0, 0);\n\n return c.getContext('2d') ? c : document.createElement('canvas');\n }\n catch (ex)\n {\n return document.createElement('canvas');\n }\n})();\n\ncanvas.width = canvas.height = 10;\n\n/**\n * Cached canvas element for measuring text\n *\n * @memberof PIXI.TextMetrics\n * @type {HTMLCanvasElement}\n * @private\n */\nTextMetrics._canvas = canvas;\n\n/**\n * Cache for context to use.\n *\n * @memberof PIXI.TextMetrics\n * @type {CanvasRenderingContext2D}\n * @private\n */\nTextMetrics._context = canvas.getContext('2d');\n\n/**\n * Cache of {@see PIXI.TextMetrics.FontMetrics} objects.\n *\n * @memberof PIXI.TextMetrics\n * @type {Object}\n * @private\n */\nTextMetrics._fonts = {};\n\n/**\n * String used for calculate font metrics.\n * These characters are all tall to help calculate the height required for text.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name METRICS_STRING\n * @type {string}\n * @default |ÉqÅ\n */\nTextMetrics.METRICS_STRING = '|ÉqÅ';\n\n/**\n * Baseline symbol for calculate font metrics.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name BASELINE_SYMBOL\n * @type {string}\n * @default M\n */\nTextMetrics.BASELINE_SYMBOL = 'M';\n\n/**\n * Baseline multiplier for calculate font metrics.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name BASELINE_MULTIPLIER\n * @type {number}\n * @default 1.4\n */\nTextMetrics.BASELINE_MULTIPLIER = 1.4;\n\n/**\n * Cache of new line chars.\n *\n * @memberof PIXI.TextMetrics\n * @type {number[]}\n * @private\n */\nTextMetrics._newlines = [\n 0x000A, // line feed\n 0x000D ];\n\n/**\n * Cache of breaking spaces.\n *\n * @memberof PIXI.TextMetrics\n * @type {number[]}\n * @private\n */\nTextMetrics._breakingSpaces = [\n 0x0009, // character tabulation\n 0x0020, // space\n 0x2000, // en quad\n 0x2001, // em quad\n 0x2002, // en space\n 0x2003, // em space\n 0x2004, // three-per-em space\n 0x2005, // four-per-em space\n 0x2006, // six-per-em space\n 0x2008, // punctuation space\n 0x2009, // thin space\n 0x200A, // hair space\n 0x205F, // medium mathematical space\n 0x3000 ];\n\n/**\n * A number, or a string containing a number.\n *\n * @memberof PIXI\n * @typedef IFontMetrics\n * @property {number} ascent - Font ascent\n * @property {number} descent - Font descent\n * @property {number} fontSize - Font size\n */\n\n/* eslint max-depth: [2, 8] */\n\nvar defaultDestroyOptions = {\n texture: true,\n children: false,\n baseTexture: true,\n};\n\n/**\n * A Text Object will create a line or multiple lines of text.\n *\n * The text is created using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API).\n *\n * The primary advantage of this class over BitmapText is that you have great control over the style of the next,\n * which you can change at runtime.\n *\n * The primary disadvantages is that each piece of text has it's own texture, which can use more memory.\n * When text changes, this texture has to be re-generated and re-uploaded to the GPU, taking up time.\n *\n * To split a line you can use '\\n' in your text string, or, on the `style` object,\n * change its `wordWrap` property to true and and give the `wordWrapWidth` property a value.\n *\n * A Text can be created directly from a string and a style object,\n * which can be generated [here](https://pixijs.io/pixi-text-style).\n *\n * ```js\n * let text = new PIXI.Text('This is a PixiJS text',{fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'});\n * ```\n *\n * @class\n * @extends PIXI.Sprite\n * @memberof PIXI\n */\nvar Text = /*@__PURE__*/(function (Sprite) {\n function Text(text, style, canvas)\n {\n canvas = canvas || document.createElement('canvas');\n\n canvas.width = 3;\n canvas.height = 3;\n\n var texture = Texture.from(canvas);\n\n texture.orig = new Rectangle();\n texture.trim = new Rectangle();\n\n Sprite.call(this, texture);\n\n /**\n * The canvas element that everything is drawn to\n *\n * @member {HTMLCanvasElement}\n */\n this.canvas = canvas;\n\n /**\n * The canvas 2d context that everything is drawn with\n * @member {CanvasRenderingContext2D}\n */\n this.context = this.canvas.getContext('2d');\n\n /**\n * The resolution / device pixel ratio of the canvas.\n * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually.\n * @member {number}\n * @default 1\n */\n this._resolution = settings.RESOLUTION;\n this._autoResolution = true;\n\n /**\n * Private tracker for the current text.\n *\n * @member {string}\n * @private\n */\n this._text = null;\n\n /**\n * Private tracker for the current style.\n *\n * @member {object}\n * @private\n */\n this._style = null;\n /**\n * Private listener to track style changes.\n *\n * @member {Function}\n * @private\n */\n this._styleListener = null;\n\n /**\n * Private tracker for the current font.\n *\n * @member {string}\n * @private\n */\n this._font = '';\n\n this.text = text;\n this.style = style;\n\n this.localStyleID = -1;\n }\n\n if ( Sprite ) Text.__proto__ = Sprite;\n Text.prototype = Object.create( Sprite && Sprite.prototype );\n Text.prototype.constructor = Text;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true },style: { configurable: true },text: { configurable: true },resolution: { configurable: true } };\n\n /**\n * Renders text and updates it when needed.\n *\n * @private\n * @param {boolean} respectDirty - Whether to abort updating the text if the Text isn't dirty and the function is called.\n */\n Text.prototype.updateText = function updateText (respectDirty)\n {\n var style = this._style;\n\n // check if style has changed..\n if (this.localStyleID !== style.styleID)\n {\n this.dirty = true;\n this.localStyleID = style.styleID;\n }\n\n if (!this.dirty && respectDirty)\n {\n return;\n }\n\n this._font = this._style.toFontString();\n\n var context = this.context;\n var measured = TextMetrics.measureText(this._text || ' ', this._style, this._style.wordWrap, this.canvas);\n var width = measured.width;\n var height = measured.height;\n var lines = measured.lines;\n var lineHeight = measured.lineHeight;\n var lineWidths = measured.lineWidths;\n var maxLineWidth = measured.maxLineWidth;\n var fontProperties = measured.fontProperties;\n\n this.canvas.width = Math.ceil((Math.max(1, width) + (style.padding * 2)) * this._resolution);\n this.canvas.height = Math.ceil((Math.max(1, height) + (style.padding * 2)) * this._resolution);\n\n context.scale(this._resolution, this._resolution);\n\n context.clearRect(0, 0, this.canvas.width, this.canvas.height);\n\n context.font = this._font;\n context.lineWidth = style.strokeThickness;\n context.textBaseline = style.textBaseline;\n context.lineJoin = style.lineJoin;\n context.miterLimit = style.miterLimit;\n\n var linePositionX;\n var linePositionY;\n\n // require 2 passes if a shadow; the first to draw the drop shadow, the second to draw the text\n var passesCount = style.dropShadow ? 2 : 1;\n\n // For v4, we drew text at the colours of the drop shadow underneath the normal text. This gave the correct zIndex,\n // but features such as alpha and shadowblur did not look right at all, since we were using actual text as a shadow.\n //\n // For v5.0.0, we moved over to just use the canvas API for drop shadows, which made them look much nicer and more\n // visually please, but now because the stroke is drawn and then the fill, drop shadows would appear on both the fill\n // and the stroke; and fill drop shadows would appear over the top of the stroke.\n //\n // For v5.1.1, the new route is to revert to v4 style of drawing text first to get the drop shadows underneath normal\n // text, but instead drawing text in the correct location, we'll draw it off screen (-paddingY), and then adjust the\n // drop shadow so only that appears on screen (+paddingY). Now we'll have the correct draw order of the shadow\n // beneath the text, whilst also having the proper text shadow styling.\n for (var i = 0; i < passesCount; ++i)\n {\n var isShadowPass = style.dropShadow && i === 0;\n var dsOffsetText = isShadowPass ? height * 2 : 0; // we only want the drop shadow, so put text way off-screen\n var dsOffsetShadow = dsOffsetText * this.resolution;\n\n if (isShadowPass)\n {\n // On Safari, text with gradient and drop shadows together do not position correctly\n // if the scale of the canvas is not 1: https://bugs.webkit.org/show_bug.cgi?id=197689\n // Therefore we'll set the styles to be a plain black whilst generating this drop shadow\n context.fillStyle = 'black';\n context.strokeStyle = 'black';\n\n var dropShadowColor = style.dropShadowColor;\n var rgb = hex2rgb(typeof dropShadowColor === 'number' ? dropShadowColor : string2hex(dropShadowColor));\n\n context.shadowColor = \"rgba(\" + (rgb[0] * 255) + \",\" + (rgb[1] * 255) + \",\" + (rgb[2] * 255) + \",\" + (style.dropShadowAlpha) + \")\";\n context.shadowBlur = style.dropShadowBlur;\n context.shadowOffsetX = Math.cos(style.dropShadowAngle) * style.dropShadowDistance;\n context.shadowOffsetY = (Math.sin(style.dropShadowAngle) * style.dropShadowDistance) + dsOffsetShadow;\n }\n else\n {\n // set canvas text styles\n context.fillStyle = this._generateFillStyle(style, lines);\n context.strokeStyle = style.stroke;\n\n context.shadowColor = 0;\n context.shadowBlur = 0;\n context.shadowOffsetX = 0;\n context.shadowOffsetY = 0;\n }\n\n // draw lines line by line\n for (var i$1 = 0; i$1 < lines.length; i$1++)\n {\n linePositionX = style.strokeThickness / 2;\n linePositionY = ((style.strokeThickness / 2) + (i$1 * lineHeight)) + fontProperties.ascent;\n\n if (style.align === 'right')\n {\n linePositionX += maxLineWidth - lineWidths[i$1];\n }\n else if (style.align === 'center')\n {\n linePositionX += (maxLineWidth - lineWidths[i$1]) / 2;\n }\n\n if (style.stroke && style.strokeThickness)\n {\n this.drawLetterSpacing(\n lines[i$1],\n linePositionX + style.padding,\n linePositionY + style.padding - dsOffsetText,\n true\n );\n }\n\n if (style.fill)\n {\n this.drawLetterSpacing(\n lines[i$1],\n linePositionX + style.padding,\n linePositionY + style.padding - dsOffsetText\n );\n }\n }\n }\n\n this.updateTexture();\n };\n\n /**\n * Render the text with letter-spacing.\n * @param {string} text - The text to draw\n * @param {number} x - Horizontal position to draw the text\n * @param {number} y - Vertical position to draw the text\n * @param {boolean} [isStroke=false] - Is this drawing for the outside stroke of the\n * text? If not, it's for the inside fill\n * @private\n */\n Text.prototype.drawLetterSpacing = function drawLetterSpacing (text, x, y, isStroke)\n {\n if ( isStroke === void 0 ) isStroke = false;\n\n var style = this._style;\n\n // letterSpacing of 0 means normal\n var letterSpacing = style.letterSpacing;\n\n if (letterSpacing === 0)\n {\n if (isStroke)\n {\n this.context.strokeText(text, x, y);\n }\n else\n {\n this.context.fillText(text, x, y);\n }\n\n return;\n }\n\n var currentPosition = x;\n\n // Using Array.from correctly splits characters whilst keeping emoji together.\n // This is not supported on IE as it requires ES6, so regular text splitting occurs.\n // This also doesn't account for emoji that are multiple emoji put together to make something else.\n // Handling all of this would require a big library itself.\n // https://medium.com/@giltayar/iterating-over-emoji-characters-the-es6-way-f06e4589516\n // https://github.com/orling/grapheme-splitter\n var stringArray = Array.from ? Array.from(text) : text.split('');\n var previousWidth = this.context.measureText(text).width;\n var currentWidth = 0;\n\n for (var i = 0; i < stringArray.length; ++i)\n {\n var currentChar = stringArray[i];\n\n if (isStroke)\n {\n this.context.strokeText(currentChar, currentPosition, y);\n }\n else\n {\n this.context.fillText(currentChar, currentPosition, y);\n }\n currentWidth = this.context.measureText(text.substring(i + 1)).width;\n currentPosition += previousWidth - currentWidth + letterSpacing;\n previousWidth = currentWidth;\n }\n };\n\n /**\n * Updates texture size based on canvas size\n *\n * @private\n */\n Text.prototype.updateTexture = function updateTexture ()\n {\n var canvas = this.canvas;\n\n if (this._style.trim)\n {\n var trimmed = trimCanvas(canvas);\n\n if (trimmed.data)\n {\n canvas.width = trimmed.width;\n canvas.height = trimmed.height;\n this.context.putImageData(trimmed.data, 0, 0);\n }\n }\n\n var texture = this._texture;\n var style = this._style;\n var padding = style.trim ? 0 : style.padding;\n var baseTexture = texture.baseTexture;\n\n texture.trim.width = texture._frame.width = Math.ceil(canvas.width / this._resolution);\n texture.trim.height = texture._frame.height = Math.ceil(canvas.height / this._resolution);\n texture.trim.x = -padding;\n texture.trim.y = -padding;\n\n texture.orig.width = texture._frame.width - (padding * 2);\n texture.orig.height = texture._frame.height - (padding * 2);\n\n // call sprite onTextureUpdate to update scale if _width or _height were set\n this._onTextureUpdate();\n\n baseTexture.setRealSize(canvas.width, canvas.height, this._resolution);\n\n this.dirty = false;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @private\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Text.prototype._render = function _render (renderer)\n {\n if (this._autoResolution && this._resolution !== renderer.resolution)\n {\n this._resolution = renderer.resolution;\n this.dirty = true;\n }\n\n this.updateText(true);\n\n Sprite.prototype._render.call(this, renderer);\n };\n\n /**\n * Gets the local bounds of the text object.\n *\n * @param {PIXI.Rectangle} rect - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n Text.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n this.updateText(true);\n\n return Sprite.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * calculates the bounds of the Text as a rectangle. The bounds calculation takes the worldTransform into account.\n * @protected\n */\n Text.prototype._calculateBounds = function _calculateBounds ()\n {\n this.updateText(true);\n this.calculateVertices();\n // if we have already done this on THIS frame.\n this._bounds.addQuad(this.vertexData);\n };\n\n /**\n * Method to be called upon a TextStyle change.\n * @private\n */\n Text.prototype._onStyleChange = function _onStyleChange ()\n {\n this.dirty = true;\n };\n\n /**\n * Generates the fill style. Can automatically generate a gradient based on the fill style being an array\n *\n * @private\n * @param {object} style - The style.\n * @param {string[]} lines - The lines of text.\n * @return {string|number|CanvasGradient} The fill style\n */\n Text.prototype._generateFillStyle = function _generateFillStyle (style, lines)\n {\n if (!Array.isArray(style.fill))\n {\n return style.fill;\n }\n else if (style.fill.length === 1)\n {\n return style.fill[0];\n }\n\n // the gradient will be evenly spaced out according to how large the array is.\n // ['#FF0000', '#00FF00', '#0000FF'] would created stops at 0.25, 0.5 and 0.75\n var gradient;\n var totalIterations;\n var currentIteration;\n var stop;\n\n var width = Math.ceil(this.canvas.width / this._resolution);\n var height = Math.ceil(this.canvas.height / this._resolution);\n\n // make a copy of the style settings, so we can manipulate them later\n var fill = style.fill.slice();\n var fillGradientStops = style.fillGradientStops.slice();\n\n // wanting to evenly distribute the fills. So an array of 4 colours should give fills of 0.25, 0.5 and 0.75\n if (!fillGradientStops.length)\n {\n var lengthPlus1 = fill.length + 1;\n\n for (var i = 1; i < lengthPlus1; ++i)\n {\n fillGradientStops.push(i / lengthPlus1);\n }\n }\n\n // stop the bleeding of the last gradient on the line above to the top gradient of the this line\n // by hard defining the first gradient colour at point 0, and last gradient colour at point 1\n fill.unshift(style.fill[0]);\n fillGradientStops.unshift(0);\n\n fill.push(style.fill[style.fill.length - 1]);\n fillGradientStops.push(1);\n\n if (style.fillGradientType === TEXT_GRADIENT.LINEAR_VERTICAL)\n {\n // start the gradient at the top center of the canvas, and end at the bottom middle of the canvas\n gradient = this.context.createLinearGradient(width / 2, 0, width / 2, height);\n\n // we need to repeat the gradient so that each individual line of text has the same vertical gradient effect\n // ['#FF0000', '#00FF00', '#0000FF'] over 2 lines would create stops at 0.125, 0.25, 0.375, 0.625, 0.75, 0.875\n totalIterations = (fill.length + 1) * lines.length;\n currentIteration = 0;\n for (var i$1 = 0; i$1 < lines.length; i$1++)\n {\n currentIteration += 1;\n for (var j = 0; j < fill.length; j++)\n {\n if (typeof fillGradientStops[j] === 'number')\n {\n stop = (fillGradientStops[j] / lines.length) + (i$1 / lines.length);\n }\n else\n {\n stop = currentIteration / totalIterations;\n }\n gradient.addColorStop(stop, fill[j]);\n currentIteration++;\n }\n }\n }\n else\n {\n // start the gradient at the center left of the canvas, and end at the center right of the canvas\n gradient = this.context.createLinearGradient(0, height / 2, width, height / 2);\n\n // can just evenly space out the gradients in this case, as multiple lines makes no difference\n // to an even left to right gradient\n totalIterations = fill.length + 1;\n currentIteration = 1;\n\n for (var i$2 = 0; i$2 < fill.length; i$2++)\n {\n if (typeof fillGradientStops[i$2] === 'number')\n {\n stop = fillGradientStops[i$2];\n }\n else\n {\n stop = currentIteration / totalIterations;\n }\n gradient.addColorStop(stop, fill[i$2]);\n currentIteration++;\n }\n }\n\n return gradient;\n };\n\n /**\n * Destroys this text object.\n * Note* Unlike a Sprite, a Text object will automatically destroy its baseTexture and texture as\n * the majority of the time the texture will not be shared with any other Sprites.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their\n * destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=true] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=true] - Should it destroy the base texture of the sprite as well\n */\n Text.prototype.destroy = function destroy (options)\n {\n if (typeof options === 'boolean')\n {\n options = { children: options };\n }\n\n options = Object.assign({}, defaultDestroyOptions, options);\n\n Sprite.prototype.destroy.call(this, options);\n\n // make sure to reset the the context and canvas.. dont want this hanging around in memory!\n this.context = null;\n this.canvas = null;\n\n this._style = null;\n };\n\n /**\n * The width of the Text, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n this.updateText(true);\n\n return Math.abs(this.scale.x) * this._texture.orig.width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.updateText(true);\n\n var s = sign(this.scale.x) || 1;\n\n this.scale.x = s * value / this._texture.orig.width;\n this._width = value;\n };\n\n /**\n * The height of the Text, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n this.updateText(true);\n\n return Math.abs(this.scale.y) * this._texture.orig.height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.updateText(true);\n\n var s = sign(this.scale.y) || 1;\n\n this.scale.y = s * value / this._texture.orig.height;\n this._height = value;\n };\n\n /**\n * Set the style of the text. Set up an event listener to listen for changes on the style\n * object and mark the text as dirty.\n *\n * @member {object|PIXI.TextStyle}\n */\n prototypeAccessors.style.get = function ()\n {\n return this._style;\n };\n\n prototypeAccessors.style.set = function (style) // eslint-disable-line require-jsdoc\n {\n style = style || {};\n\n if (style instanceof TextStyle)\n {\n this._style = style;\n }\n else\n {\n this._style = new TextStyle(style);\n }\n\n this.localStyleID = -1;\n this.dirty = true;\n };\n\n /**\n * Set the copy for the text object. To split a line you can use '\\n'.\n *\n * @member {string}\n */\n prototypeAccessors.text.get = function ()\n {\n return this._text;\n };\n\n prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc\n {\n text = String(text === null || text === undefined ? '' : text);\n\n if (this._text === text)\n {\n return;\n }\n this._text = text;\n this.dirty = true;\n };\n\n /**\n * The resolution / device pixel ratio of the canvas.\n * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually.\n * @member {number}\n * @default 1\n */\n prototypeAccessors.resolution.get = function ()\n {\n return this._resolution;\n };\n\n prototypeAccessors.resolution.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._autoResolution = false;\n\n if (this._resolution === value)\n {\n return;\n }\n\n this._resolution = value;\n this.dirty = true;\n };\n\n Object.defineProperties( Text.prototype, prototypeAccessors );\n\n return Text;\n}(Sprite));\n\nexport { TEXT_GRADIENT, Text, TextMetrics, TextStyle };\n//# sourceMappingURL=text.es.js.map\n","/*!\n * @pixi/prepare - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/prepare is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nimport { Texture, BaseTexture } from '@pixi/core';\nimport { Graphics } from '@pixi/graphics';\nimport { Ticker, UPDATE_PRIORITY } from '@pixi/ticker';\nimport { Container } from '@pixi/display';\nimport { Text, TextStyle, TextMetrics } from '@pixi/text';\n\n/**\n * Default number of uploads per frame using prepare plugin.\n *\n * @static\n * @memberof PIXI.settings\n * @name UPLOADS_PER_FRAME\n * @type {number}\n * @default 4\n */\nsettings.UPLOADS_PER_FRAME = 4;\n\n/**\n * CountLimiter limits the number of items handled by a {@link PIXI.prepare.BasePrepare} to a specified\n * number of items per frame.\n *\n * @class\n * @memberof PIXI.prepare\n */\nvar CountLimiter = function CountLimiter(maxItemsPerFrame)\n{\n /**\n * The maximum number of items that can be prepared each frame.\n * @type {number}\n * @private\n */\n this.maxItemsPerFrame = maxItemsPerFrame;\n /**\n * The number of items that can be prepared in the current frame.\n * @type {number}\n * @private\n */\n this.itemsLeft = 0;\n};\n\n/**\n * Resets any counting properties to start fresh on a new frame.\n */\nCountLimiter.prototype.beginFrame = function beginFrame ()\n{\n this.itemsLeft = this.maxItemsPerFrame;\n};\n\n/**\n * Checks to see if another item can be uploaded. This should only be called once per item.\n * @return {boolean} If the item is allowed to be uploaded.\n */\nCountLimiter.prototype.allowedToUpload = function allowedToUpload ()\n{\n return this.itemsLeft-- > 0;\n};\n\n/**\n * The prepare manager provides functionality to upload content to the GPU.\n *\n * BasePrepare handles basic queuing functionality and is extended by\n * {@link PIXI.prepare.Prepare} and {@link PIXI.prepare.CanvasPrepare}\n * to provide preparation capabilities specific to their respective renderers.\n *\n * @example\n * // Create a sprite\n * const sprite = PIXI.Sprite.from('something.png');\n *\n * // Load object into GPU\n * app.renderer.plugins.prepare.upload(sprite, () => {\n *\n * //Texture(s) has been uploaded to GPU\n * app.stage.addChild(sprite);\n *\n * })\n *\n * @abstract\n * @class\n * @memberof PIXI.prepare\n */\nvar BasePrepare = function BasePrepare(renderer)\n{\n var this$1 = this;\n\n /**\n * The limiter to be used to control how quickly items are prepared.\n * @type {PIXI.prepare.CountLimiter|PIXI.prepare.TimeLimiter}\n */\n this.limiter = new CountLimiter(settings.UPLOADS_PER_FRAME);\n\n /**\n * Reference to the renderer.\n * @type {PIXI.AbstractRenderer}\n * @protected\n */\n this.renderer = renderer;\n\n /**\n * The only real difference between CanvasPrepare and Prepare is what they pass\n * to upload hooks. That different parameter is stored here.\n * @type {PIXI.prepare.CanvasPrepare|PIXI.Renderer}\n * @protected\n */\n this.uploadHookHelper = null;\n\n /**\n * Collection of items to uploads at once.\n * @type {Array<*>}\n * @private\n */\n this.queue = [];\n\n /**\n * Collection of additional hooks for finding assets.\n * @type {Array}\n * @private\n */\n this.addHooks = [];\n\n /**\n * Collection of additional hooks for processing assets.\n * @type {Array}\n * @private\n */\n this.uploadHooks = [];\n\n /**\n * Callback to call after completed.\n * @type {Array}\n * @private\n */\n this.completes = [];\n\n /**\n * If prepare is ticking (running).\n * @type {boolean}\n * @private\n */\n this.ticking = false;\n\n /**\n * 'bound' call for prepareItems().\n * @type {Function}\n * @private\n */\n this.delayedTick = function () {\n // unlikely, but in case we were destroyed between tick() and delayedTick()\n if (!this$1.queue)\n {\n return;\n }\n this$1.prepareItems();\n };\n\n // hooks to find the correct texture\n this.registerFindHook(findText);\n this.registerFindHook(findTextStyle);\n this.registerFindHook(findMultipleBaseTextures);\n this.registerFindHook(findBaseTexture);\n this.registerFindHook(findTexture);\n\n // upload hooks\n this.registerUploadHook(drawText);\n this.registerUploadHook(calculateTextStyle);\n};\n\n/**\n * Upload all the textures and graphics to the GPU.\n *\n * @param {Function|PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text} item -\n * Either the container or display object to search for items to upload, the items to upload themselves,\n * or the callback function, if items have been added using `prepare.add`.\n * @param {Function} [done] - Optional callback when all queued uploads have completed\n */\nBasePrepare.prototype.upload = function upload (item, done)\n{\n if (typeof item === 'function')\n {\n done = item;\n item = null;\n }\n\n // If a display object, search for items\n // that we could upload\n if (item)\n {\n this.add(item);\n }\n\n // Get the items for upload from the display\n if (this.queue.length)\n {\n if (done)\n {\n this.completes.push(done);\n }\n\n if (!this.ticking)\n {\n this.ticking = true;\n Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY);\n }\n }\n else if (done)\n {\n done();\n }\n};\n\n/**\n * Handle tick update\n *\n * @private\n */\nBasePrepare.prototype.tick = function tick ()\n{\n setTimeout(this.delayedTick, 0);\n};\n\n/**\n * Actually prepare items. This is handled outside of the tick because it will take a while\n * and we do NOT want to block the current animation frame from rendering.\n *\n * @private\n */\nBasePrepare.prototype.prepareItems = function prepareItems ()\n{\n this.limiter.beginFrame();\n // Upload the graphics\n while (this.queue.length && this.limiter.allowedToUpload())\n {\n var item = this.queue[0];\n var uploaded = false;\n\n if (item && !item._destroyed)\n {\n for (var i = 0, len = this.uploadHooks.length; i < len; i++)\n {\n if (this.uploadHooks[i](this.uploadHookHelper, item))\n {\n this.queue.shift();\n uploaded = true;\n break;\n }\n }\n }\n\n if (!uploaded)\n {\n this.queue.shift();\n }\n }\n\n // We're finished\n if (!this.queue.length)\n {\n this.ticking = false;\n\n var completes = this.completes.slice(0);\n\n this.completes.length = 0;\n\n for (var i$1 = 0, len$1 = completes.length; i$1 < len$1; i$1++)\n {\n completes[i$1]();\n }\n }\n else\n {\n // if we are not finished, on the next rAF do this again\n Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY);\n }\n};\n\n/**\n * Adds hooks for finding items.\n *\n * @param {Function} addHook - Function call that takes two parameters: `item:*, queue:Array`\n * function must return `true` if it was able to add item to the queue.\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.registerFindHook = function registerFindHook (addHook)\n{\n if (addHook)\n {\n this.addHooks.push(addHook);\n }\n\n return this;\n};\n\n/**\n * Adds hooks for uploading items.\n *\n * @param {Function} uploadHook - Function call that takes two parameters: `prepare:CanvasPrepare, item:*` and\n * function must return `true` if it was able to handle upload of item.\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.registerUploadHook = function registerUploadHook (uploadHook)\n{\n if (uploadHook)\n {\n this.uploadHooks.push(uploadHook);\n }\n\n return this;\n};\n\n/**\n * Manually add an item to the uploading queue.\n *\n * @param {PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text|*} item - Object to\n * add to the queue\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.add = function add (item)\n{\n // Add additional hooks for finding elements on special\n // types of objects that\n for (var i = 0, len = this.addHooks.length; i < len; i++)\n {\n if (this.addHooks[i](item, this.queue))\n {\n break;\n }\n }\n\n // Get children recursively\n if (item instanceof Container)\n {\n for (var i$1 = item.children.length - 1; i$1 >= 0; i$1--)\n {\n this.add(item.children[i$1]);\n }\n }\n\n return this;\n};\n\n/**\n * Destroys the plugin, don't use after this.\n *\n */\nBasePrepare.prototype.destroy = function destroy ()\n{\n if (this.ticking)\n {\n Ticker.system.remove(this.tick, this);\n }\n this.ticking = false;\n this.addHooks = null;\n this.uploadHooks = null;\n this.renderer = null;\n this.completes = null;\n this.queue = null;\n this.limiter = null;\n this.uploadHookHelper = null;\n};\n\n/**\n * Built-in hook to find multiple textures from objects like AnimatedSprites.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findMultipleBaseTextures(item, queue)\n{\n var result = false;\n\n // Objects with multiple textures\n if (item && item._textures && item._textures.length)\n {\n for (var i = 0; i < item._textures.length; i++)\n {\n if (item._textures[i] instanceof Texture)\n {\n var baseTexture = item._textures[i].baseTexture;\n\n if (queue.indexOf(baseTexture) === -1)\n {\n queue.push(baseTexture);\n result = true;\n }\n }\n }\n }\n\n return result;\n}\n\n/**\n * Built-in hook to find BaseTextures from Sprites.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findBaseTexture(item, queue)\n{\n // Objects with textures, like Sprites/Text\n if (item instanceof BaseTexture)\n {\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find textures from objects.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findTexture(item, queue)\n{\n if (item._texture && item._texture instanceof Texture)\n {\n var texture = item._texture.baseTexture;\n\n if (queue.indexOf(texture) === -1)\n {\n queue.push(texture);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to draw PIXI.Text to its texture.\n *\n * @private\n * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction drawText(helper, item)\n{\n if (item instanceof Text)\n {\n // updating text will return early if it is not dirty\n item.updateText(true);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to calculate a text style for a PIXI.Text object.\n *\n * @private\n * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction calculateTextStyle(helper, item)\n{\n if (item instanceof TextStyle)\n {\n var font = item.toFontString();\n\n TextMetrics.measureFont(font);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find Text objects.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Text object was found.\n */\nfunction findText(item, queue)\n{\n if (item instanceof Text)\n {\n // push the text style to prepare it - this can be really expensive\n if (queue.indexOf(item.style) === -1)\n {\n queue.push(item.style);\n }\n // also push the text object so that we can render it (to canvas/texture) if needed\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n // also push the Text's texture for upload to GPU\n var texture = item._texture.baseTexture;\n\n if (queue.indexOf(texture) === -1)\n {\n queue.push(texture);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find TextStyle objects.\n *\n * @private\n * @param {PIXI.TextStyle} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.TextStyle object was found.\n */\nfunction findTextStyle(item, queue)\n{\n if (item instanceof TextStyle)\n {\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * The prepare manager provides functionality to upload content to the GPU.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.prepare`\n *\n * @class\n * @extends PIXI.prepare.BasePrepare\n * @memberof PIXI.prepare\n */\nvar Prepare = /*@__PURE__*/(function (BasePrepare) {\n function Prepare(renderer)\n {\n BasePrepare.call(this, renderer);\n\n this.uploadHookHelper = this.renderer;\n\n // Add textures and graphics to upload\n this.registerFindHook(findGraphics);\n this.registerUploadHook(uploadBaseTextures);\n this.registerUploadHook(uploadGraphics);\n }\n\n if ( BasePrepare ) Prepare.__proto__ = BasePrepare;\n Prepare.prototype = Object.create( BasePrepare && BasePrepare.prototype );\n Prepare.prototype.constructor = Prepare;\n\n return Prepare;\n}(BasePrepare));\n/**\n * Built-in hook to upload PIXI.Texture objects to the GPU.\n *\n * @private\n * @param {PIXI.Renderer} renderer - instance of the webgl renderer\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction uploadBaseTextures(renderer, item)\n{\n if (item instanceof BaseTexture)\n {\n // if the texture already has a GL texture, then the texture has been prepared or rendered\n // before now. If the texture changed, then the changer should be calling texture.update() which\n // reuploads the texture without need for preparing it again\n if (!item._glTextures[renderer.CONTEXT_UID])\n {\n renderer.texture.bind(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to upload PIXI.Graphics to the GPU.\n *\n * @private\n * @param {PIXI.Renderer} renderer - instance of the webgl renderer\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction uploadGraphics(renderer, item)\n{\n if (item instanceof Graphics)\n {\n // if the item is not dirty and already has webgl data, then it got prepared or rendered\n // before now and we shouldn't waste time updating it again\n if (item.dirty || item.clearDirty || !item._webGL[renderer.plugins.graphics.CONTEXT_UID])\n {\n renderer.plugins.graphics.updateGraphics(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find graphics.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Graphics object was found.\n */\nfunction findGraphics(item, queue)\n{\n if (item instanceof Graphics)\n {\n queue.push(item);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * TimeLimiter limits the number of items handled by a {@link PIXI.BasePrepare} to a specified\n * number of milliseconds per frame.\n *\n * @class\n * @memberof PIXI.prepare\n */\nvar TimeLimiter = function TimeLimiter(maxMilliseconds)\n{\n /**\n * The maximum milliseconds that can be spent preparing items each frame.\n * @type {number}\n * @private\n */\n this.maxMilliseconds = maxMilliseconds;\n /**\n * The start time of the current frame.\n * @type {number}\n * @private\n */\n this.frameStart = 0;\n};\n\n/**\n * Resets any counting properties to start fresh on a new frame.\n */\nTimeLimiter.prototype.beginFrame = function beginFrame ()\n{\n this.frameStart = Date.now();\n};\n\n/**\n * Checks to see if another item can be uploaded. This should only be called once per item.\n * @return {boolean} If the item is allowed to be uploaded.\n */\nTimeLimiter.prototype.allowedToUpload = function allowedToUpload ()\n{\n return Date.now() - this.frameStart < this.maxMilliseconds;\n};\n\n/**\n * The prepare namespace provides renderer-specific plugins for pre-rendering DisplayObjects. These plugins are useful for\n * asynchronously preparing and uploading to the GPU assets, textures, graphics waiting to be displayed.\n *\n * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @example\n * // Create a new application\n * const app = new PIXI.Application();\n * document.body.appendChild(app.view);\n *\n * // Don't start rendering right away\n * app.stop();\n *\n * // create a display object\n * const rect = new PIXI.Graphics()\n * .beginFill(0x00ff00)\n * .drawRect(40, 40, 200, 200);\n *\n * // Add to the stage\n * app.stage.addChild(rect);\n *\n * // Don't start rendering until the graphic is uploaded to the GPU\n * app.renderer.plugins.prepare.upload(app.stage, () => {\n * app.start();\n * });\n * @namespace PIXI.prepare\n */\n\nexport { BasePrepare, CountLimiter, Prepare, TimeLimiter };\n//# sourceMappingURL=prepare.es.js.map\n","/*!\n * @pixi/app - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/app is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Container } from '@pixi/display';\nimport { autoDetectRenderer } from '@pixi/core';\n\n/**\n * Convenience class to create a new PIXI application.\n *\n * This class automatically creates the renderer, ticker and root container.\n *\n * @example\n * // Create the application\n * const app = new PIXI.Application();\n *\n * // Add the view to the DOM\n * document.body.appendChild(app.view);\n *\n * // ex, add display objects\n * app.stage.addChild(PIXI.Sprite.from('something.png'));\n *\n * @class\n * @memberof PIXI\n */\nvar Application = function Application(options)\n{\n var this$1 = this;\n\n // The default options\n options = Object.assign({\n forceCanvas: false,\n }, options);\n\n /**\n * WebGL renderer if available, otherwise CanvasRenderer.\n * @member {PIXI.Renderer|PIXI.CanvasRenderer}\n */\n this.renderer = autoDetectRenderer(options);\n\n /**\n * The root display container that's rendered.\n * @member {PIXI.Container}\n */\n this.stage = new Container();\n\n // install plugins here\n Application._plugins.forEach(function (plugin) {\n plugin.init.call(this$1, options);\n });\n};\n\nvar prototypeAccessors = { view: { configurable: true },screen: { configurable: true } };\n\n/**\n * Register a middleware plugin for the application\n * @static\n * @param {PIXI.Application.Plugin} plugin - Plugin being installed\n */\nApplication.registerPlugin = function registerPlugin (plugin)\n{\n Application._plugins.push(plugin);\n};\n\n/**\n * Render the current stage.\n */\nApplication.prototype.render = function render ()\n{\n this.renderer.render(this.stage);\n};\n\n/**\n * Reference to the renderer's canvas element.\n * @member {HTMLCanvasElement}\n * @readonly\n */\nprototypeAccessors.view.get = function ()\n{\n return this.renderer.view;\n};\n\n/**\n * Reference to the renderer's screen rectangle. Its safe to use as `filterArea` or `hitArea` for the whole screen.\n * @member {PIXI.Rectangle}\n * @readonly\n */\nprototypeAccessors.screen.get = function ()\n{\n return this.renderer.screen;\n};\n\n/**\n * Destroy and don't use after this.\n * @param {Boolean} [removeView=false] Automatically remove canvas from DOM.\n * @param {object|boolean} [stageOptions] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [stageOptions.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'stageOptions' will be passed on to those calls.\n * @param {boolean} [stageOptions.texture=false] - Only used for child Sprites if stageOptions.children is set\n * to true. Should it destroy the texture of the child sprite\n * @param {boolean} [stageOptions.baseTexture=false] - Only used for child Sprites if stageOptions.children is set\n * to true. Should it destroy the base texture of the child sprite\n */\nApplication.prototype.destroy = function destroy (removeView, stageOptions)\n{\n var this$1 = this;\n\n // Destroy plugins in the opposite order\n // which they were constructed\n var plugins = Application._plugins.slice(0);\n\n plugins.reverse();\n plugins.forEach(function (plugin) {\n plugin.destroy.call(this$1);\n });\n\n this.stage.destroy(stageOptions);\n this.stage = null;\n\n this.renderer.destroy(removeView);\n this.renderer = null;\n\n this._options = null;\n};\n\nObject.defineProperties( Application.prototype, prototypeAccessors );\n\n/**\n * @memberof PIXI.Application\n * @typedef {object} Plugin\n * @property {function} init - Called when Application is constructed, scoped to Application instance.\n * Passes in `options` as the only argument, which are Application constructor options.\n * @property {function} destroy - Called when destroying Application, scoped to Application instance\n */\n\n/**\n * Collection of installed plugins.\n * @static\n * @private\n * @type {PIXI.Application.Plugin[]}\n */\nApplication._plugins = [];\n\n/**\n * Middleware for for Application's resize functionality\n * @private\n * @class\n */\nvar ResizePlugin = function ResizePlugin () {};\n\nResizePlugin.init = function init (options)\n{\n var this$1 = this;\n\n /**\n * The element or window to resize the application to.\n * @type {Window|HTMLElement}\n * @name resizeTo\n * @memberof PIXI.Application#\n */\n Object.defineProperty(this, 'resizeTo',\n {\n set: function set(dom)\n {\n window.removeEventListener('resize', this.resize);\n this._resizeTo = dom;\n if (dom)\n {\n window.addEventListener('resize', this.resize);\n this.resize();\n }\n },\n get: function get()\n {\n return this._resizeTo;\n },\n });\n\n /**\n * If `resizeTo` is set, calling this function\n * will resize to the width and height of that element.\n * @method PIXI.Application#resize\n */\n this.resize = function () {\n if (this$1._resizeTo)\n {\n // Resize to the window\n if (this$1._resizeTo === window)\n {\n this$1.renderer.resize(\n window.innerWidth,\n window.innerHeight\n );\n }\n // Resize to other HTML entities\n else\n {\n this$1.renderer.resize(\n this$1._resizeTo.clientWidth,\n this$1._resizeTo.clientHeight\n );\n }\n }\n };\n\n // On resize\n this._resizeTo = null;\n this.resizeTo = options.resizeTo || null;\n};\n\n/**\n * Clean up the ticker, scoped to application\n * @static\n * @private\n */\nResizePlugin.destroy = function destroy ()\n{\n this.resizeTo = null;\n this.resize = null;\n};\n\nApplication.registerPlugin(ResizePlugin);\n\nexport { Application };\n//# sourceMappingURL=app.es.js.map\n","'use strict'\n\nmodule.exports = function parseURI (str, opts) {\n opts = opts || {}\n\n var o = {\n key: ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'],\n q: {\n name: 'queryKey',\n parser: /(?:^|&)([^&=]*)=?([^&]*)/g\n },\n parser: {\n strict: /^(?:([^:\\/?#]+):)?(?:\\/\\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\\/?#]*)(?::(\\d*))?))?((((?:[^?#\\/]*\\/)*)([^?#]*))(?:\\?([^#]*))?(?:#(.*))?)/,\n loose: /^(?:(?![^:@]+:[^:@\\/]*@)([^:\\/?#.]+):)?(?:\\/\\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\\/?#]*)(?::(\\d*))?)(((\\/(?:[^?#](?![^?#\\/]*\\.[^?#\\/.]+(?:[?#]|$)))*\\/?)?([^?#\\/]*))(?:\\?([^#]*))?(?:#(.*))?)/\n }\n }\n\n var m = o.parser[opts.strictMode ? 'strict' : 'loose'].exec(str)\n var uri = {}\n var i = 14\n\n while (i--) uri[o.key[i]] = m[i] || ''\n\n uri[o.q.name] = {}\n uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) {\n if ($1) uri[o.q.name][$1] = $2\n })\n\n return uri\n}\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\n\nvar _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }\n\nvar MiniSignalBinding = (function () {\n function MiniSignalBinding(fn, once, thisArg) {\n if (once === undefined) once = false;\n\n _classCallCheck(this, MiniSignalBinding);\n\n this._fn = fn;\n this._once = once;\n this._thisArg = thisArg;\n this._next = this._prev = this._owner = null;\n }\n\n _createClass(MiniSignalBinding, [{\n key: 'detach',\n value: function detach() {\n if (this._owner === null) return false;\n this._owner.detach(this);\n return true;\n }\n }]);\n\n return MiniSignalBinding;\n})();\n\nfunction _addMiniSignalBinding(self, node) {\n if (!self._head) {\n self._head = node;\n self._tail = node;\n } else {\n self._tail._next = node;\n node._prev = self._tail;\n self._tail = node;\n }\n\n node._owner = self;\n\n return node;\n}\n\nvar MiniSignal = (function () {\n function MiniSignal() {\n _classCallCheck(this, MiniSignal);\n\n this._head = this._tail = undefined;\n }\n\n _createClass(MiniSignal, [{\n key: 'handlers',\n value: function handlers() {\n var exists = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0];\n\n var node = this._head;\n\n if (exists) return !!node;\n\n var ee = [];\n\n while (node) {\n ee.push(node);\n node = node._next;\n }\n\n return ee;\n }\n }, {\n key: 'has',\n value: function has(node) {\n if (!(node instanceof MiniSignalBinding)) {\n throw new Error('MiniSignal#has(): First arg must be a MiniSignalBinding object.');\n }\n\n return node._owner === this;\n }\n }, {\n key: 'dispatch',\n value: function dispatch() {\n var node = this._head;\n\n if (!node) return false;\n\n while (node) {\n if (node._once) this.detach(node);\n node._fn.apply(node._thisArg, arguments);\n node = node._next;\n }\n\n return true;\n }\n }, {\n key: 'add',\n value: function add(fn) {\n var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];\n\n if (typeof fn !== 'function') {\n throw new Error('MiniSignal#add(): First arg must be a Function.');\n }\n return _addMiniSignalBinding(this, new MiniSignalBinding(fn, false, thisArg));\n }\n }, {\n key: 'once',\n value: function once(fn) {\n var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];\n\n if (typeof fn !== 'function') {\n throw new Error('MiniSignal#once(): First arg must be a Function.');\n }\n return _addMiniSignalBinding(this, new MiniSignalBinding(fn, true, thisArg));\n }\n }, {\n key: 'detach',\n value: function detach(node) {\n if (!(node instanceof MiniSignalBinding)) {\n throw new Error('MiniSignal#detach(): First arg must be a MiniSignalBinding object.');\n }\n if (node._owner !== this) return this;\n\n if (node._prev) node._prev._next = node._next;\n if (node._next) node._next._prev = node._prev;\n\n if (node === this._head) {\n this._head = node._next;\n if (node._next === null) {\n this._tail = null;\n }\n } else if (node === this._tail) {\n this._tail = node._prev;\n this._tail._next = null;\n }\n\n node._owner = null;\n return this;\n }\n }, {\n key: 'detachAll',\n value: function detachAll() {\n var node = this._head;\n if (!node) return this;\n\n this._head = this._tail = null;\n\n while (node) {\n node._owner = null;\n node = node._next;\n }\n return this;\n }\n }]);\n\n return MiniSignal;\n})();\n\nMiniSignal.MiniSignalBinding = MiniSignalBinding;\n\nexports['default'] = MiniSignal;\nmodule.exports = exports['default'];\n","/*!\n * resource-loader - v3.0.1\n * https://github.com/pixijs/pixi-sound\n * Compiled Tue, 02 Jul 2019 14:06:18 UTC\n *\n * resource-loader is licensed under the MIT license.\n * http://www.opensource.org/licenses/mit-license\n */\nimport parseUri from 'parse-uri';\nimport Signal from 'mini-signals';\n\n/**\n * Smaller version of the async library constructs.\n *\n * @namespace async\n */\n\n/**\n * Noop function\n *\n * @ignore\n * @function\n * @memberof async\n */\nfunction _noop() {}\n/* empty */\n\n/**\n * Iterates an array in series.\n *\n * @memberof async\n * @function eachSeries\n * @param {Array.<*>} array - Array to iterate.\n * @param {function} iterator - Function to call for each element.\n * @param {function} callback - Function to call when done, or on error.\n * @param {boolean} [deferNext=false] - Break synchronous each loop by calling next with a setTimeout of 1.\n */\n\n\nfunction eachSeries(array, iterator, callback, deferNext) {\n var i = 0;\n var len = array.length;\n\n (function next(err) {\n if (err || i === len) {\n if (callback) {\n callback(err);\n }\n\n return;\n }\n\n if (deferNext) {\n setTimeout(function () {\n iterator(array[i++], next);\n }, 1);\n } else {\n iterator(array[i++], next);\n }\n })();\n}\n/**\n * Ensures a function is only called once.\n *\n * @ignore\n * @memberof async\n * @param {function} fn - The function to wrap.\n * @return {function} The wrapping function.\n */\n\nfunction onlyOnce(fn) {\n return function onceWrapper() {\n if (fn === null) {\n throw new Error('Callback was already called.');\n }\n\n var callFn = fn;\n fn = null;\n callFn.apply(this, arguments);\n };\n}\n/**\n * Async queue implementation,\n *\n * @memberof async\n * @function queue\n * @param {function} worker - The worker function to call for each task.\n * @param {number} concurrency - How many workers to run in parrallel.\n * @return {*} The async queue object.\n */\n\n\nfunction queue(worker, concurrency) {\n if (concurrency == null) {\n // eslint-disable-line no-eq-null,eqeqeq\n concurrency = 1;\n } else if (concurrency === 0) {\n throw new Error('Concurrency must not be zero');\n }\n\n var workers = 0;\n var q = {\n _tasks: [],\n concurrency: concurrency,\n saturated: _noop,\n unsaturated: _noop,\n buffer: concurrency / 4,\n empty: _noop,\n drain: _noop,\n error: _noop,\n started: false,\n paused: false,\n push: function push(data, callback) {\n _insert(data, false, callback);\n },\n kill: function kill() {\n workers = 0;\n q.drain = _noop;\n q.started = false;\n q._tasks = [];\n },\n unshift: function unshift(data, callback) {\n _insert(data, true, callback);\n },\n process: function process() {\n while (!q.paused && workers < q.concurrency && q._tasks.length) {\n var task = q._tasks.shift();\n\n if (q._tasks.length === 0) {\n q.empty();\n }\n\n workers += 1;\n\n if (workers === q.concurrency) {\n q.saturated();\n }\n\n worker(task.data, onlyOnce(_next(task)));\n }\n },\n length: function length() {\n return q._tasks.length;\n },\n running: function running() {\n return workers;\n },\n idle: function idle() {\n return q._tasks.length + workers === 0;\n },\n pause: function pause() {\n if (q.paused === true) {\n return;\n }\n\n q.paused = true;\n },\n resume: function resume() {\n if (q.paused === false) {\n return;\n }\n\n q.paused = false; // Need to call q.process once per concurrent\n // worker to preserve full concurrency after pause\n\n for (var w = 1; w <= q.concurrency; w++) {\n q.process();\n }\n }\n };\n\n function _insert(data, insertAtFront, callback) {\n if (callback != null && typeof callback !== 'function') {\n // eslint-disable-line no-eq-null,eqeqeq\n throw new Error('task callback must be a function');\n }\n\n q.started = true;\n\n if (data == null && q.idle()) {\n // eslint-disable-line no-eq-null,eqeqeq\n // call drain immediately if there are no tasks\n setTimeout(function () {\n return q.drain();\n }, 1);\n return;\n }\n\n var item = {\n data: data,\n callback: typeof callback === 'function' ? callback : _noop\n };\n\n if (insertAtFront) {\n q._tasks.unshift(item);\n } else {\n q._tasks.push(item);\n }\n\n setTimeout(function () {\n return q.process();\n }, 1);\n }\n\n function _next(task) {\n return function next() {\n workers -= 1;\n task.callback.apply(task, arguments);\n\n if (arguments[0] != null) {\n // eslint-disable-line no-eq-null,eqeqeq\n q.error(arguments[0], task.data);\n }\n\n if (workers <= q.concurrency - q.buffer) {\n q.unsaturated();\n }\n\n if (q.idle()) {\n q.drain();\n }\n\n q.process();\n };\n }\n\n return q;\n}\n\nvar async = ({\n eachSeries: eachSeries,\n queue: queue\n});\n\n// a simple in-memory cache for resources\nvar cache = {};\n/**\n * A simple in-memory cache for resource.\n *\n * @memberof middleware\n * @function caching\n * @example\n * import { Loader, middleware } from 'resource-loader';\n * const loader = new Loader();\n * loader.use(middleware.caching);\n * @param {Resource} resource - Current Resource\n * @param {function} next - Callback when complete\n */\n\nfunction caching(resource, next) {\n var _this = this;\n\n // if cached, then set data and complete the resource\n if (cache[resource.url]) {\n resource.data = cache[resource.url];\n resource.complete(); // marks resource load complete and stops processing before middlewares\n } // if not cached, wait for complete and store it in the cache.\n else {\n resource.onComplete.once(function () {\n return cache[_this.url] = _this.data;\n });\n }\n\n next();\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nvar useXdr = !!(window.XDomainRequest && !('withCredentials' in new XMLHttpRequest()));\nvar tempAnchor = null; // some status constants\n\nvar STATUS_NONE = 0;\nvar STATUS_OK = 200;\nvar STATUS_EMPTY = 204;\nvar STATUS_IE_BUG_EMPTY = 1223;\nvar STATUS_TYPE_OK = 2; // noop\n\nfunction _noop$1() {}\n/* empty */\n\n/**\n * Manages the state and loading of a resource and all child resources.\n *\n * @class\n */\n\n\nvar Resource =\n/*#__PURE__*/\nfunction () {\n /**\n * Sets the load type to be used for a specific extension.\n *\n * @static\n * @param {string} extname - The extension to set the type for, e.g. \"png\" or \"fnt\"\n * @param {Resource.LOAD_TYPE} loadType - The load type to set it to.\n */\n Resource.setExtensionLoadType = function setExtensionLoadType(extname, loadType) {\n setExtMap(Resource._loadTypeMap, extname, loadType);\n }\n /**\n * Sets the load type to be used for a specific extension.\n *\n * @static\n * @param {string} extname - The extension to set the type for, e.g. \"png\" or \"fnt\"\n * @param {Resource.XHR_RESPONSE_TYPE} xhrType - The xhr type to set it to.\n */\n ;\n\n Resource.setExtensionXhrType = function setExtensionXhrType(extname, xhrType) {\n setExtMap(Resource._xhrTypeMap, extname, xhrType);\n }\n /**\n * @param {string} name - The name of the resource to load.\n * @param {string|string[]} url - The url for this resource, for audio/video loads you can pass\n * an array of sources.\n * @param {object} [options] - The options for the load.\n * @param {string|boolean} [options.crossOrigin] - Is this request cross-origin? Default is to\n * determine automatically.\n * @param {number} [options.timeout=0] - A timeout in milliseconds for the load. If the load takes\n * longer than this time it is cancelled and the load is considered a failure. If this value is\n * set to `0` then there is no explicit timeout.\n * @param {Resource.LOAD_TYPE} [options.loadType=Resource.LOAD_TYPE.XHR] - How should this resource\n * be loaded?\n * @param {Resource.XHR_RESPONSE_TYPE} [options.xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How\n * should the data being loaded be interpreted when using XHR?\n * @param {Resource.IMetadata} [options.metadata] - Extra configuration for middleware and the Resource object.\n */\n ;\n\n function Resource(name, url, options) {\n if (typeof name !== 'string' || typeof url !== 'string') {\n throw new Error('Both name and url are required for constructing a resource.');\n }\n\n options = options || {};\n /**\n * The state flags of this resource.\n *\n * @private\n * @member {number}\n */\n\n this._flags = 0; // set data url flag, needs to be set early for some _determineX checks to work.\n\n this._setFlag(Resource.STATUS_FLAGS.DATA_URL, url.indexOf('data:') === 0);\n /**\n * The name of this resource.\n *\n * @readonly\n * @member {string}\n */\n\n\n this.name = name;\n /**\n * The url used to load this resource.\n *\n * @readonly\n * @member {string}\n */\n\n this.url = url;\n /**\n * The extension used to load this resource.\n *\n * @readonly\n * @member {string}\n */\n\n this.extension = this._getExtension();\n /**\n * The data that was loaded by the resource.\n *\n * @member {any}\n */\n\n this.data = null;\n /**\n * Is this request cross-origin? If unset, determined automatically.\n *\n * @member {string}\n */\n\n this.crossOrigin = options.crossOrigin === true ? 'anonymous' : options.crossOrigin;\n /**\n * A timeout in milliseconds for the load. If the load takes longer than this time\n * it is cancelled and the load is considered a failure. If this value is set to `0`\n * then there is no explicit timeout.\n *\n * @member {number}\n */\n\n this.timeout = options.timeout || 0;\n /**\n * The method of loading to use for this resource.\n *\n * @member {Resource.LOAD_TYPE}\n */\n\n this.loadType = options.loadType || this._determineLoadType();\n /**\n * The type used to load the resource via XHR. If unset, determined automatically.\n *\n * @member {string}\n */\n\n this.xhrType = options.xhrType;\n /**\n * Extra info for middleware, and controlling specifics about how the resource loads.\n *\n * Note that if you pass in a `loadElement`, the Resource class takes ownership of it.\n * Meaning it will modify it as it sees fit.\n *\n * @member {Resource.IMetadata}\n */\n\n this.metadata = options.metadata || {};\n /**\n * The error that occurred while loading (if any).\n *\n * @readonly\n * @member {Error}\n */\n\n this.error = null;\n /**\n * The XHR object that was used to load this resource. This is only set\n * when `loadType` is `Resource.LOAD_TYPE.XHR`.\n *\n * @readonly\n * @member {XMLHttpRequest}\n */\n\n this.xhr = null;\n /**\n * The child resources this resource owns.\n *\n * @readonly\n * @member {Resource[]}\n */\n\n this.children = [];\n /**\n * The resource type.\n *\n * @readonly\n * @member {Resource.TYPE}\n */\n\n this.type = Resource.TYPE.UNKNOWN;\n /**\n * The progress chunk owned by this resource.\n *\n * @readonly\n * @member {number}\n */\n\n this.progressChunk = 0;\n /**\n * The `dequeue` method that will be used a storage place for the async queue dequeue method\n * used privately by the loader.\n *\n * @private\n * @member {function}\n */\n\n this._dequeue = _noop$1;\n /**\n * Used a storage place for the on load binding used privately by the loader.\n *\n * @private\n * @member {function}\n */\n\n this._onLoadBinding = null;\n /**\n * The timer for element loads to check if they timeout.\n *\n * @private\n * @member {number}\n */\n\n this._elementTimer = 0;\n /**\n * The `complete` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundComplete = this.complete.bind(this);\n /**\n * The `_onError` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnError = this._onError.bind(this);\n /**\n * The `_onProgress` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnProgress = this._onProgress.bind(this);\n /**\n * The `_onTimeout` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnTimeout = this._onTimeout.bind(this); // xhr callbacks\n\n this._boundXhrOnError = this._xhrOnError.bind(this);\n this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this);\n this._boundXhrOnAbort = this._xhrOnAbort.bind(this);\n this._boundXhrOnLoad = this._xhrOnLoad.bind(this);\n /**\n * Dispatched when the resource beings to load.\n *\n * The callback looks like {@link Resource.OnStartSignal}.\n *\n * @member {Signal}\n */\n\n this.onStart = new Signal();\n /**\n * Dispatched each time progress of this resource load updates.\n * Not all resources types and loader systems can support this event\n * so sometimes it may not be available. If the resource\n * is being loaded on a modern browser, using XHR, and the remote server\n * properly sets Content-Length headers, then this will be available.\n *\n * The callback looks like {@link Resource.OnProgressSignal}.\n *\n * @member {Signal}\n */\n\n this.onProgress = new Signal();\n /**\n * Dispatched once this resource has loaded, if there was an error it will\n * be in the `error` property.\n *\n * The callback looks like {@link Resource.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onComplete = new Signal();\n /**\n * Dispatched after this resource has had all the *after* middleware run on it.\n *\n * The callback looks like {@link Resource.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onAfterMiddleware = new Signal();\n }\n /**\n * When the resource starts to load.\n *\n * @memberof Resource\n * @callback OnStartSignal\n * @param {Resource} resource - The resource that the event happened on.\n */\n\n /**\n * When the resource reports loading progress.\n *\n * @memberof Resource\n * @callback OnProgressSignal\n * @param {Resource} resource - The resource that the event happened on.\n * @param {number} percentage - The progress of the load in the range [0, 1].\n */\n\n /**\n * When the resource finishes loading.\n *\n * @memberof Resource\n * @callback OnCompleteSignal\n * @param {Resource} resource - The resource that the event happened on.\n */\n\n /**\n * @memberof Resource\n * @typedef {object} IMetadata\n * @property {HTMLImageElement|HTMLAudioElement|HTMLVideoElement} [loadElement=null] - The\n * element to use for loading, instead of creating one.\n * @property {boolean} [skipSource=false] - Skips adding source(s) to the load element. This\n * is useful if you want to pass in a `loadElement` that you already added load sources to.\n * @property {string|string[]} [mimeType] - The mime type to use for the source element\n * of a video/audio elment. If the urls are an array, you can pass this as an array as well\n * where each index is the mime type to use for the corresponding url index.\n */\n\n /**\n * Stores whether or not this url is a data url.\n *\n * @readonly\n * @member {boolean}\n */\n\n\n var _proto = Resource.prototype;\n\n /**\n * Marks the resource as complete.\n *\n */\n _proto.complete = function complete() {\n this._clearEvents();\n\n this._finish();\n }\n /**\n * Aborts the loading of this resource, with an optional message.\n *\n * @param {string} message - The message to use for the error\n */\n ;\n\n _proto.abort = function abort(message) {\n // abort can be called multiple times, ignore subsequent calls.\n if (this.error) {\n return;\n } // store error\n\n\n this.error = new Error(message); // clear events before calling aborts\n\n this._clearEvents(); // abort the actual loading\n\n\n if (this.xhr) {\n this.xhr.abort();\n } else if (this.xdr) {\n this.xdr.abort();\n } else if (this.data) {\n // single source\n if (this.data.src) {\n this.data.src = Resource.EMPTY_GIF;\n } // multi-source\n else {\n while (this.data.firstChild) {\n this.data.removeChild(this.data.firstChild);\n }\n }\n } // done now.\n\n\n this._finish();\n }\n /**\n * Kicks off loading of this resource. This method is asynchronous.\n *\n * @param {Resource.OnCompleteSignal} [cb] - Optional callback to call once the resource is loaded.\n */\n ;\n\n _proto.load = function load(cb) {\n var _this = this;\n\n if (this.isLoading) {\n return;\n }\n\n if (this.isComplete) {\n if (cb) {\n setTimeout(function () {\n return cb(_this);\n }, 1);\n }\n\n return;\n } else if (cb) {\n this.onComplete.once(cb);\n }\n\n this._setFlag(Resource.STATUS_FLAGS.LOADING, true);\n\n this.onStart.dispatch(this); // if unset, determine the value\n\n if (this.crossOrigin === false || typeof this.crossOrigin !== 'string') {\n this.crossOrigin = this._determineCrossOrigin(this.url);\n }\n\n switch (this.loadType) {\n case Resource.LOAD_TYPE.IMAGE:\n this.type = Resource.TYPE.IMAGE;\n\n this._loadElement('image');\n\n break;\n\n case Resource.LOAD_TYPE.AUDIO:\n this.type = Resource.TYPE.AUDIO;\n\n this._loadSourceElement('audio');\n\n break;\n\n case Resource.LOAD_TYPE.VIDEO:\n this.type = Resource.TYPE.VIDEO;\n\n this._loadSourceElement('video');\n\n break;\n\n case Resource.LOAD_TYPE.XHR:\n /* falls through */\n\n default:\n if (useXdr && this.crossOrigin) {\n this._loadXdr();\n } else {\n this._loadXhr();\n }\n\n break;\n }\n }\n /**\n * Checks if the flag is set.\n *\n * @private\n * @param {number} flag - The flag to check.\n * @return {boolean} True if the flag is set.\n */\n ;\n\n _proto._hasFlag = function _hasFlag(flag) {\n return (this._flags & flag) !== 0;\n }\n /**\n * (Un)Sets the flag.\n *\n * @private\n * @param {number} flag - The flag to (un)set.\n * @param {boolean} value - Whether to set or (un)set the flag.\n */\n ;\n\n _proto._setFlag = function _setFlag(flag, value) {\n this._flags = value ? this._flags | flag : this._flags & ~flag;\n }\n /**\n * Clears all the events from the underlying loading source.\n *\n * @private\n */\n ;\n\n _proto._clearEvents = function _clearEvents() {\n clearTimeout(this._elementTimer);\n\n if (this.data && this.data.removeEventListener) {\n this.data.removeEventListener('error', this._boundOnError, false);\n this.data.removeEventListener('load', this._boundComplete, false);\n this.data.removeEventListener('progress', this._boundOnProgress, false);\n this.data.removeEventListener('canplaythrough', this._boundComplete, false);\n }\n\n if (this.xhr) {\n if (this.xhr.removeEventListener) {\n this.xhr.removeEventListener('error', this._boundXhrOnError, false);\n this.xhr.removeEventListener('timeout', this._boundXhrOnTimeout, false);\n this.xhr.removeEventListener('abort', this._boundXhrOnAbort, false);\n this.xhr.removeEventListener('progress', this._boundOnProgress, false);\n this.xhr.removeEventListener('load', this._boundXhrOnLoad, false);\n } else {\n this.xhr.onerror = null;\n this.xhr.ontimeout = null;\n this.xhr.onprogress = null;\n this.xhr.onload = null;\n }\n }\n }\n /**\n * Finalizes the load.\n *\n * @private\n */\n ;\n\n _proto._finish = function _finish() {\n if (this.isComplete) {\n throw new Error('Complete called again for an already completed resource.');\n }\n\n this._setFlag(Resource.STATUS_FLAGS.COMPLETE, true);\n\n this._setFlag(Resource.STATUS_FLAGS.LOADING, false);\n\n this.onComplete.dispatch(this);\n }\n /**\n * Loads this resources using an element that has a single source,\n * like an HTMLImageElement.\n *\n * @private\n * @param {string} type - The type of element to use.\n */\n ;\n\n _proto._loadElement = function _loadElement(type) {\n if (this.metadata.loadElement) {\n this.data = this.metadata.loadElement;\n } else if (type === 'image' && typeof window.Image !== 'undefined') {\n this.data = new Image();\n } else {\n this.data = document.createElement(type);\n }\n\n if (this.crossOrigin) {\n this.data.crossOrigin = this.crossOrigin;\n }\n\n if (!this.metadata.skipSource) {\n this.data.src = this.url;\n }\n\n this.data.addEventListener('error', this._boundOnError, false);\n this.data.addEventListener('load', this._boundComplete, false);\n this.data.addEventListener('progress', this._boundOnProgress, false);\n\n if (this.timeout) {\n this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout);\n }\n }\n /**\n * Loads this resources using an element that has multiple sources,\n * like an HTMLAudioElement or HTMLVideoElement.\n *\n * @private\n * @param {string} type - The type of element to use.\n */\n ;\n\n _proto._loadSourceElement = function _loadSourceElement(type) {\n if (this.metadata.loadElement) {\n this.data = this.metadata.loadElement;\n } else if (type === 'audio' && typeof window.Audio !== 'undefined') {\n this.data = new Audio();\n } else {\n this.data = document.createElement(type);\n }\n\n if (this.data === null) {\n this.abort(\"Unsupported element: \" + type);\n return;\n }\n\n if (this.crossOrigin) {\n this.data.crossOrigin = this.crossOrigin;\n }\n\n if (!this.metadata.skipSource) {\n // support for CocoonJS Canvas+ runtime, lacks document.createElement('source')\n if (navigator.isCocoonJS) {\n this.data.src = Array.isArray(this.url) ? this.url[0] : this.url;\n } else if (Array.isArray(this.url)) {\n var mimeTypes = this.metadata.mimeType;\n\n for (var i = 0; i < this.url.length; ++i) {\n this.data.appendChild(this._createSource(type, this.url[i], Array.isArray(mimeTypes) ? mimeTypes[i] : mimeTypes));\n }\n } else {\n var _mimeTypes = this.metadata.mimeType;\n this.data.appendChild(this._createSource(type, this.url, Array.isArray(_mimeTypes) ? _mimeTypes[0] : _mimeTypes));\n }\n }\n\n this.data.addEventListener('error', this._boundOnError, false);\n this.data.addEventListener('load', this._boundComplete, false);\n this.data.addEventListener('progress', this._boundOnProgress, false);\n this.data.addEventListener('canplaythrough', this._boundComplete, false);\n this.data.load();\n\n if (this.timeout) {\n this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout);\n }\n }\n /**\n * Loads this resources using an XMLHttpRequest.\n *\n * @private\n */\n ;\n\n _proto._loadXhr = function _loadXhr() {\n // if unset, determine the value\n if (typeof this.xhrType !== 'string') {\n this.xhrType = this._determineXhrType();\n }\n\n var xhr = this.xhr = new XMLHttpRequest(); // set the request type and url\n\n xhr.open('GET', this.url, true);\n xhr.timeout = this.timeout; // load json as text and parse it ourselves. We do this because some browsers\n // *cough* safari *cough* can't deal with it.\n\n if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON || this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) {\n xhr.responseType = Resource.XHR_RESPONSE_TYPE.TEXT;\n } else {\n xhr.responseType = this.xhrType;\n }\n\n xhr.addEventListener('error', this._boundXhrOnError, false);\n xhr.addEventListener('timeout', this._boundXhrOnTimeout, false);\n xhr.addEventListener('abort', this._boundXhrOnAbort, false);\n xhr.addEventListener('progress', this._boundOnProgress, false);\n xhr.addEventListener('load', this._boundXhrOnLoad, false);\n xhr.send();\n }\n /**\n * Loads this resources using an XDomainRequest. This is here because we need to support IE9 (gross).\n *\n * @private\n */\n ;\n\n _proto._loadXdr = function _loadXdr() {\n // if unset, determine the value\n if (typeof this.xhrType !== 'string') {\n this.xhrType = this._determineXhrType();\n }\n\n var xdr = this.xhr = new XDomainRequest(); // eslint-disable-line no-undef\n // XDomainRequest has a few quirks. Occasionally it will abort requests\n // A way to avoid this is to make sure ALL callbacks are set even if not used\n // More info here: http://stackoverflow.com/questions/15786966/xdomainrequest-aborts-post-on-ie-9\n\n xdr.timeout = this.timeout || 5000; // XDR needs a timeout value or it breaks in IE9\n\n xdr.onerror = this._boundXhrOnError;\n xdr.ontimeout = this._boundXhrOnTimeout;\n xdr.onprogress = this._boundOnProgress;\n xdr.onload = this._boundXhrOnLoad;\n xdr.open('GET', this.url, true); // Note: The xdr.send() call is wrapped in a timeout to prevent an\n // issue with the interface where some requests are lost if multiple\n // XDomainRequests are being sent at the same time.\n // Some info here: https://github.com/photonstorm/phaser/issues/1248\n\n setTimeout(function () {\n return xdr.send();\n }, 1);\n }\n /**\n * Creates a source used in loading via an element.\n *\n * @private\n * @param {string} type - The element type (video or audio).\n * @param {string} url - The source URL to load from.\n * @param {string} [mime] - The mime type of the video\n * @return {HTMLSourceElement} The source element.\n */\n ;\n\n _proto._createSource = function _createSource(type, url, mime) {\n if (!mime) {\n mime = type + \"/\" + this._getExtension(url);\n }\n\n var source = document.createElement('source');\n source.src = url;\n source.type = mime;\n return source;\n }\n /**\n * Called if a load errors out.\n *\n * @param {Event} event - The error event from the element that emits it.\n * @private\n */\n ;\n\n _proto._onError = function _onError(event) {\n this.abort(\"Failed to load element using: \" + event.target.nodeName);\n }\n /**\n * Called if a load progress event fires for an element or xhr/xdr.\n *\n * @private\n * @param {XMLHttpRequestProgressEvent|Event} event - Progress event.\n */\n ;\n\n _proto._onProgress = function _onProgress(event) {\n if (event && event.lengthComputable) {\n this.onProgress.dispatch(this, event.loaded / event.total);\n }\n }\n /**\n * Called if a timeout event fires for an element.\n *\n * @private\n */\n ;\n\n _proto._onTimeout = function _onTimeout() {\n this.abort(\"Load timed out.\");\n }\n /**\n * Called if an error event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnError = function _xhrOnError() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request failed. Status: \" + xhr.status + \", text: \\\"\" + xhr.statusText + \"\\\"\");\n }\n /**\n * Called if an error event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnTimeout = function _xhrOnTimeout() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request timed out.\");\n }\n /**\n * Called if an abort event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnAbort = function _xhrOnAbort() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request was aborted by the user.\");\n }\n /**\n * Called when data successfully loads from an xhr/xdr request.\n *\n * @private\n * @param {XMLHttpRequestLoadEvent|Event} event - Load event\n */\n ;\n\n _proto._xhrOnLoad = function _xhrOnLoad() {\n var xhr = this.xhr;\n var text = '';\n var status = typeof xhr.status === 'undefined' ? STATUS_OK : xhr.status; // XDR has no `.status`, assume 200.\n // responseText is accessible only if responseType is '' or 'text' and on older browsers\n\n if (xhr.responseType === '' || xhr.responseType === 'text' || typeof xhr.responseType === 'undefined') {\n text = xhr.responseText;\n } // status can be 0 when using the `file://` protocol so we also check if a response is set.\n // If it has a response, we assume 200; otherwise a 0 status code with no contents is an aborted request.\n\n\n if (status === STATUS_NONE && (text.length > 0 || xhr.responseType === Resource.XHR_RESPONSE_TYPE.BUFFER)) {\n status = STATUS_OK;\n } // handle IE9 bug: http://stackoverflow.com/questions/10046972/msie-returns-status-code-of-1223-for-ajax-request\n else if (status === STATUS_IE_BUG_EMPTY) {\n status = STATUS_EMPTY;\n }\n\n var statusType = status / 100 | 0;\n\n if (statusType === STATUS_TYPE_OK) {\n // if text, just return it\n if (this.xhrType === Resource.XHR_RESPONSE_TYPE.TEXT) {\n this.data = text;\n this.type = Resource.TYPE.TEXT;\n } // if json, parse into json object\n else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON) {\n try {\n this.data = JSON.parse(text);\n this.type = Resource.TYPE.JSON;\n } catch (e) {\n this.abort(\"Error trying to parse loaded json: \" + e);\n return;\n }\n } // if xml, parse into an xml document or div element\n else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) {\n try {\n if (window.DOMParser) {\n var domparser = new DOMParser();\n this.data = domparser.parseFromString(text, 'text/xml');\n } else {\n var div = document.createElement('div');\n div.innerHTML = text;\n this.data = div;\n }\n\n this.type = Resource.TYPE.XML;\n } catch (e) {\n this.abort(\"Error trying to parse loaded xml: \" + e);\n return;\n }\n } // other types just return the response\n else {\n this.data = xhr.response || text;\n }\n } else {\n this.abort(\"[\" + xhr.status + \"] \" + xhr.statusText + \": \" + xhr.responseURL);\n return;\n }\n\n this.complete();\n }\n /**\n * Sets the `crossOrigin` property for this resource based on if the url\n * for this resource is cross-origin. If crossOrigin was manually set, this\n * function does nothing.\n *\n * @private\n * @param {string} url - The url to test.\n * @param {object} [loc=window.location] - The location object to test against.\n * @return {string} The crossOrigin value to use (or empty string for none).\n */\n ;\n\n _proto._determineCrossOrigin = function _determineCrossOrigin(url, loc) {\n // data: and javascript: urls are considered same-origin\n if (url.indexOf('data:') === 0) {\n return '';\n } // A sandboxed iframe without the 'allow-same-origin' attribute will have a special\n // origin designed not to match window.location.origin, and will always require\n // crossOrigin requests regardless of whether the location matches.\n\n\n if (window.origin !== window.location.origin) {\n return 'anonymous';\n } // default is window.location\n\n\n loc = loc || window.location;\n\n if (!tempAnchor) {\n tempAnchor = document.createElement('a');\n } // let the browser determine the full href for the url of this resource and then\n // parse with the node url lib, we can't use the properties of the anchor element\n // because they don't work in IE9 :(\n\n\n tempAnchor.href = url;\n url = parseUri(tempAnchor.href, {\n strictMode: true\n });\n var samePort = !url.port && loc.port === '' || url.port === loc.port;\n var protocol = url.protocol ? url.protocol + \":\" : ''; // if cross origin\n\n if (url.host !== loc.hostname || !samePort || protocol !== loc.protocol) {\n return 'anonymous';\n }\n\n return '';\n }\n /**\n * Determines the responseType of an XHR request based on the extension of the\n * resource being loaded.\n *\n * @private\n * @return {Resource.XHR_RESPONSE_TYPE} The responseType to use.\n */\n ;\n\n _proto._determineXhrType = function _determineXhrType() {\n return Resource._xhrTypeMap[this.extension] || Resource.XHR_RESPONSE_TYPE.TEXT;\n }\n /**\n * Determines the loadType of a resource based on the extension of the\n * resource being loaded.\n *\n * @private\n * @return {Resource.LOAD_TYPE} The loadType to use.\n */\n ;\n\n _proto._determineLoadType = function _determineLoadType() {\n return Resource._loadTypeMap[this.extension] || Resource.LOAD_TYPE.XHR;\n }\n /**\n * Extracts the extension (sans '.') of the file being loaded by the resource.\n *\n * @private\n * @return {string} The extension.\n */\n ;\n\n _proto._getExtension = function _getExtension() {\n var url = this.url;\n var ext = '';\n\n if (this.isDataUrl) {\n var slashIndex = url.indexOf('/');\n ext = url.substring(slashIndex + 1, url.indexOf(';', slashIndex));\n } else {\n var queryStart = url.indexOf('?');\n var hashStart = url.indexOf('#');\n var index = Math.min(queryStart > -1 ? queryStart : url.length, hashStart > -1 ? hashStart : url.length);\n url = url.substring(0, index);\n ext = url.substring(url.lastIndexOf('.') + 1);\n }\n\n return ext.toLowerCase();\n }\n /**\n * Determines the mime type of an XHR request based on the responseType of\n * resource being loaded.\n *\n * @private\n * @param {Resource.XHR_RESPONSE_TYPE} type - The type to get a mime type for.\n * @return {string} The mime type to use.\n */\n ;\n\n _proto._getMimeFromXhrType = function _getMimeFromXhrType(type) {\n switch (type) {\n case Resource.XHR_RESPONSE_TYPE.BUFFER:\n return 'application/octet-binary';\n\n case Resource.XHR_RESPONSE_TYPE.BLOB:\n return 'application/blob';\n\n case Resource.XHR_RESPONSE_TYPE.DOCUMENT:\n return 'application/xml';\n\n case Resource.XHR_RESPONSE_TYPE.JSON:\n return 'application/json';\n\n case Resource.XHR_RESPONSE_TYPE.DEFAULT:\n case Resource.XHR_RESPONSE_TYPE.TEXT:\n /* falls through */\n\n default:\n return 'text/plain';\n }\n };\n\n _createClass(Resource, [{\n key: \"isDataUrl\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.DATA_URL);\n }\n /**\n * Describes if this resource has finished loading. Is true when the resource has completely\n * loaded.\n *\n * @readonly\n * @member {boolean}\n */\n\n }, {\n key: \"isComplete\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.COMPLETE);\n }\n /**\n * Describes if this resource is currently loading. Is true when the resource starts loading,\n * and is false again when complete.\n *\n * @readonly\n * @member {boolean}\n */\n\n }, {\n key: \"isLoading\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.LOADING);\n }\n }]);\n\n return Resource;\n}();\n/**\n * The types of resources a resource could represent.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\n\nResource.STATUS_FLAGS = {\n NONE: 0,\n DATA_URL: 1 << 0,\n COMPLETE: 1 << 1,\n LOADING: 1 << 2\n};\n/**\n * The types of resources a resource could represent.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\nResource.TYPE = {\n UNKNOWN: 0,\n JSON: 1,\n XML: 2,\n IMAGE: 3,\n AUDIO: 4,\n VIDEO: 5,\n TEXT: 6\n};\n/**\n * The types of loading a resource can use.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\nResource.LOAD_TYPE = {\n /** Uses XMLHttpRequest to load the resource. */\n XHR: 1,\n\n /** Uses an `Image` object to load the resource. */\n IMAGE: 2,\n\n /** Uses an `Audio` object to load the resource. */\n AUDIO: 3,\n\n /** Uses a `Video` object to load the resource. */\n VIDEO: 4\n};\n/**\n * The XHR ready states, used internally.\n *\n * @static\n * @readonly\n * @enum {string}\n */\n\nResource.XHR_RESPONSE_TYPE = {\n /** string */\n DEFAULT: 'text',\n\n /** ArrayBuffer */\n BUFFER: 'arraybuffer',\n\n /** Blob */\n BLOB: 'blob',\n\n /** Document */\n DOCUMENT: 'document',\n\n /** Object */\n JSON: 'json',\n\n /** String */\n TEXT: 'text'\n};\nResource._loadTypeMap = {\n // images\n gif: Resource.LOAD_TYPE.IMAGE,\n png: Resource.LOAD_TYPE.IMAGE,\n bmp: Resource.LOAD_TYPE.IMAGE,\n jpg: Resource.LOAD_TYPE.IMAGE,\n jpeg: Resource.LOAD_TYPE.IMAGE,\n tif: Resource.LOAD_TYPE.IMAGE,\n tiff: Resource.LOAD_TYPE.IMAGE,\n webp: Resource.LOAD_TYPE.IMAGE,\n tga: Resource.LOAD_TYPE.IMAGE,\n svg: Resource.LOAD_TYPE.IMAGE,\n 'svg+xml': Resource.LOAD_TYPE.IMAGE,\n // for SVG data urls\n // audio\n mp3: Resource.LOAD_TYPE.AUDIO,\n ogg: Resource.LOAD_TYPE.AUDIO,\n wav: Resource.LOAD_TYPE.AUDIO,\n // videos\n mp4: Resource.LOAD_TYPE.VIDEO,\n webm: Resource.LOAD_TYPE.VIDEO\n};\nResource._xhrTypeMap = {\n // xml\n xhtml: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n html: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n htm: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n xml: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n tmx: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n svg: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n // This was added to handle Tiled Tileset XML, but .tsx is also a TypeScript React Component.\n // Since it is way less likely for people to be loading TypeScript files instead of Tiled files,\n // this should probably be fine.\n tsx: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n // images\n gif: Resource.XHR_RESPONSE_TYPE.BLOB,\n png: Resource.XHR_RESPONSE_TYPE.BLOB,\n bmp: Resource.XHR_RESPONSE_TYPE.BLOB,\n jpg: Resource.XHR_RESPONSE_TYPE.BLOB,\n jpeg: Resource.XHR_RESPONSE_TYPE.BLOB,\n tif: Resource.XHR_RESPONSE_TYPE.BLOB,\n tiff: Resource.XHR_RESPONSE_TYPE.BLOB,\n webp: Resource.XHR_RESPONSE_TYPE.BLOB,\n tga: Resource.XHR_RESPONSE_TYPE.BLOB,\n // json\n json: Resource.XHR_RESPONSE_TYPE.JSON,\n // text\n text: Resource.XHR_RESPONSE_TYPE.TEXT,\n txt: Resource.XHR_RESPONSE_TYPE.TEXT,\n // fonts\n ttf: Resource.XHR_RESPONSE_TYPE.BUFFER,\n otf: Resource.XHR_RESPONSE_TYPE.BUFFER\n}; // We can't set the `src` attribute to empty string, so on abort we set it to this 1px transparent gif\n\nResource.EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==';\n/**\n * Quick helper to set a value on one of the extension maps. Ensures there is no\n * dot at the start of the extension.\n *\n * @ignore\n * @param {object} map - The map to set on.\n * @param {string} extname - The extension (or key) to set.\n * @param {number} val - The value to set.\n */\n\nfunction setExtMap(map, extname, val) {\n if (extname && extname.indexOf('.') === 0) {\n extname = extname.substring(1);\n }\n\n if (!extname) {\n return;\n }\n\n map[extname] = val;\n}\n/**\n * Quick helper to get string xhr type.\n *\n * @ignore\n * @param {XMLHttpRequest|XDomainRequest} xhr - The request to check.\n * @return {string} The type.\n */\n\n\nfunction reqType(xhr) {\n return xhr.toString().replace('object ', '');\n}\n\nvar _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\n/**\n * Encodes binary into base64.\n *\n * @function encodeBinary\n * @param {string} input The input data to encode.\n * @returns {string} The encoded base64 string\n */\n\nfunction encodeBinary(input) {\n var output = '';\n var inx = 0;\n\n while (inx < input.length) {\n // Fill byte buffer array\n var bytebuffer = [0, 0, 0];\n var encodedCharIndexes = [0, 0, 0, 0];\n\n for (var jnx = 0; jnx < bytebuffer.length; ++jnx) {\n if (inx < input.length) {\n // throw away high-order byte, as documented at:\n // https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data\n bytebuffer[jnx] = input.charCodeAt(inx++) & 0xff;\n } else {\n bytebuffer[jnx] = 0;\n }\n } // Get each encoded character, 6 bits at a time\n // index 1: first 6 bits\n\n\n encodedCharIndexes[0] = bytebuffer[0] >> 2; // index 2: second 6 bits (2 least significant bits from input byte 1 + 4 most significant bits from byte 2)\n\n encodedCharIndexes[1] = (bytebuffer[0] & 0x3) << 4 | bytebuffer[1] >> 4; // index 3: third 6 bits (4 least significant bits from input byte 2 + 2 most significant bits from byte 3)\n\n encodedCharIndexes[2] = (bytebuffer[1] & 0x0f) << 2 | bytebuffer[2] >> 6; // index 3: forth 6 bits (6 least significant bits from input byte 3)\n\n encodedCharIndexes[3] = bytebuffer[2] & 0x3f; // Determine whether padding happened, and adjust accordingly\n\n var paddingBytes = inx - (input.length - 1);\n\n switch (paddingBytes) {\n case 2:\n // Set last 2 characters to padding char\n encodedCharIndexes[3] = 64;\n encodedCharIndexes[2] = 64;\n break;\n\n case 1:\n // Set last character to padding char\n encodedCharIndexes[3] = 64;\n break;\n\n default:\n break;\n // No padding - proceed\n } // Now we will grab each appropriate character out of our keystring\n // based on our index array and append it to the output string\n\n\n for (var _jnx = 0; _jnx < encodedCharIndexes.length; ++_jnx) {\n output += _keyStr.charAt(encodedCharIndexes[_jnx]);\n }\n }\n\n return output;\n}\n\nvar Url = window.URL || window.webkitURL;\n/**\n * A middleware for transforming XHR loaded Blobs into more useful objects\n *\n * @memberof middleware\n * @function parsing\n * @example\n * import { Loader, middleware } from 'resource-loader';\n * const loader = new Loader();\n * loader.use(middleware.parsing);\n * @param {Resource} resource - Current Resource\n * @param {function} next - Callback when complete\n */\n\nfunction parsing(resource, next) {\n if (!resource.data) {\n next();\n return;\n } // if this was an XHR load of a blob\n\n\n if (resource.xhr && resource.xhrType === Resource.XHR_RESPONSE_TYPE.BLOB) {\n // if there is no blob support we probably got a binary string back\n if (!window.Blob || typeof resource.data === 'string') {\n var type = resource.xhr.getResponseHeader('content-type'); // this is an image, convert the binary string into a data url\n\n if (type && type.indexOf('image') === 0) {\n resource.data = new Image();\n resource.data.src = \"data:\" + type + \";base64,\" + encodeBinary(resource.xhr.responseText);\n resource.type = Resource.TYPE.IMAGE; // wait until the image loads and then callback\n\n resource.data.onload = function () {\n resource.data.onload = null;\n next();\n }; // next will be called on load\n\n\n return;\n }\n } // if content type says this is an image, then we should transform the blob into an Image object\n else if (resource.data.type.indexOf('image') === 0) {\n var src = Url.createObjectURL(resource.data);\n resource.blob = resource.data;\n resource.data = new Image();\n resource.data.src = src;\n resource.type = Resource.TYPE.IMAGE; // cleanup the no longer used blob after the image loads\n // TODO: Is this correct? Will the image be invalid after revoking?\n\n resource.data.onload = function () {\n Url.revokeObjectURL(src);\n resource.data.onload = null;\n next();\n }; // next will be called on load.\n\n\n return;\n }\n }\n\n next();\n}\n\n/**\n * @namespace middleware\n */\n\nvar index = ({\n caching: caching,\n parsing: parsing\n});\n\nvar MAX_PROGRESS = 100;\nvar rgxExtractUrlHash = /(#[\\w-]+)?$/;\n/**\n * Manages the state and loading of multiple resources to load.\n *\n * @class\n */\n\nvar Loader =\n/*#__PURE__*/\nfunction () {\n /**\n * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader.\n * @param {number} [concurrency=10] - The number of resources to load concurrently.\n */\n function Loader(baseUrl, concurrency) {\n var _this = this;\n\n if (baseUrl === void 0) {\n baseUrl = '';\n }\n\n if (concurrency === void 0) {\n concurrency = 10;\n }\n\n /**\n * The base url for all resources loaded by this loader.\n *\n * @member {string}\n */\n this.baseUrl = baseUrl;\n /**\n * The progress percent of the loader going through the queue.\n *\n * @member {number}\n * @default 0\n */\n\n this.progress = 0;\n /**\n * Loading state of the loader, true if it is currently loading resources.\n *\n * @member {boolean}\n * @default false\n */\n\n this.loading = false;\n /**\n * A querystring to append to every URL added to the loader.\n *\n * This should be a valid query string *without* the question-mark (`?`). The loader will\n * also *not* escape values for you. Make sure to escape your parameters with\n * [`encodeURIComponent`](https://mdn.io/encodeURIComponent) before assigning this property.\n *\n * @example\n * const loader = new Loader();\n *\n * loader.defaultQueryString = 'user=me&password=secret';\n *\n * // This will request 'image.png?user=me&password=secret'\n * loader.add('image.png').load();\n *\n * loader.reset();\n *\n * // This will request 'image.png?v=1&user=me&password=secret'\n * loader.add('iamge.png?v=1').load();\n *\n * @member {string}\n * @default ''\n */\n\n this.defaultQueryString = '';\n /**\n * The middleware to run before loading each resource.\n *\n * @private\n * @member {function[]}\n */\n\n this._beforeMiddleware = [];\n /**\n * The middleware to run after loading each resource.\n *\n * @private\n * @member {function[]}\n */\n\n this._afterMiddleware = [];\n /**\n * The tracks the resources we are currently completing parsing for.\n *\n * @private\n * @member {Resource[]}\n */\n\n this._resourcesParsing = [];\n /**\n * The `_loadResource` function bound with this object context.\n *\n * @private\n * @member {function}\n * @param {Resource} r - The resource to load\n * @param {Function} d - The dequeue function\n * @return {undefined}\n */\n\n this._boundLoadResource = function (r, d) {\n return _this._loadResource(r, d);\n };\n /**\n * The resources waiting to be loaded.\n *\n * @private\n * @member {Resource[]}\n */\n\n\n this._queue = queue(this._boundLoadResource, concurrency);\n\n this._queue.pause();\n /**\n * All the resources for this loader keyed by name.\n *\n * @member {object}\n */\n\n\n this.resources = {};\n /**\n * Dispatched once per loaded or errored resource.\n *\n * The callback looks like {@link Loader.OnProgressSignal}.\n *\n * @member {Signal}\n */\n\n this.onProgress = new Signal();\n /**\n * Dispatched once per errored resource.\n *\n * The callback looks like {@link Loader.OnErrorSignal}.\n *\n * @member {Signal}\n */\n\n this.onError = new Signal();\n /**\n * Dispatched once per loaded resource.\n *\n * The callback looks like {@link Loader.OnLoadSignal}.\n *\n * @member {Signal}\n */\n\n this.onLoad = new Signal();\n /**\n * Dispatched when the loader begins to process the queue.\n *\n * The callback looks like {@link Loader.OnStartSignal}.\n *\n * @member {Signal}\n */\n\n this.onStart = new Signal();\n /**\n * Dispatched when the queued resources all load.\n *\n * The callback looks like {@link Loader.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onComplete = new Signal(); // Add default before middleware\n\n for (var i = 0; i < Loader._defaultBeforeMiddleware.length; ++i) {\n this.pre(Loader._defaultBeforeMiddleware[i]);\n } // Add default after middleware\n\n\n for (var _i = 0; _i < Loader._defaultAfterMiddleware.length; ++_i) {\n this.use(Loader._defaultAfterMiddleware[_i]);\n }\n }\n /**\n * When the progress changes the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnProgressSignal\n * @param {Loader} loader - The loader the progress is advancing on.\n * @param {Resource} resource - The resource that has completed or failed to cause the progress to advance.\n */\n\n /**\n * When an error occurrs the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnErrorSignal\n * @param {Loader} loader - The loader the error happened in.\n * @param {Resource} resource - The resource that caused the error.\n */\n\n /**\n * When a load completes the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnLoadSignal\n * @param {Loader} loader - The loader that laoded the resource.\n * @param {Resource} resource - The resource that has completed loading.\n */\n\n /**\n * When the loader starts loading resources it dispatches this callback.\n *\n * @memberof Loader\n * @callback OnStartSignal\n * @param {Loader} loader - The loader that has started loading resources.\n */\n\n /**\n * When the loader completes loading resources it dispatches this callback.\n *\n * @memberof Loader\n * @callback OnCompleteSignal\n * @param {Loader} loader - The loader that has finished loading resources.\n */\n\n /**\n * Options for a call to `.add()`.\n *\n * @see Loader#add\n *\n * @typedef {object} IAddOptions\n * @property {string} [name] - The name of the resource to load, if not passed the url is used.\n * @property {string} [key] - Alias for `name`.\n * @property {string} [url] - The url for this resource, relative to the baseUrl of this loader.\n * @property {string|boolean} [crossOrigin] - Is this request cross-origin? Default is to\n * determine automatically.\n * @property {number} [timeout=0] - A timeout in milliseconds for the load. If the load takes\n * longer than this time it is cancelled and the load is considered a failure. If this value is\n * set to `0` then there is no explicit timeout.\n * @property {Resource.LOAD_TYPE} [loadType=Resource.LOAD_TYPE.XHR] - How should this resource\n * be loaded?\n * @property {Resource.XHR_RESPONSE_TYPE} [xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How\n * should the data being loaded be interpreted when using XHR?\n * @property {Resource.OnCompleteSignal} [onComplete] - Callback to add an an onComplete signal istener.\n * @property {Resource.OnCompleteSignal} [callback] - Alias for `onComplete`.\n * @property {Resource.IMetadata} [metadata] - Extra configuration for middleware and the Resource object.\n */\n\n /* eslint-disable require-jsdoc,valid-jsdoc */\n\n /**\n * Adds a resource (or multiple resources) to the loader queue.\n *\n * This function can take a wide variety of different parameters. The only thing that is always\n * required the url to load. All the following will work:\n *\n * ```js\n * loader\n * // normal param syntax\n * .add('key', 'http://...', function () {})\n * .add('http://...', function () {})\n * .add('http://...')\n *\n * // object syntax\n * .add({\n * name: 'key2',\n * url: 'http://...'\n * }, function () {})\n * .add({\n * url: 'http://...'\n * }, function () {})\n * .add({\n * name: 'key3',\n * url: 'http://...'\n * onComplete: function () {}\n * })\n * .add({\n * url: 'https://...',\n * onComplete: function () {},\n * crossOrigin: true\n * })\n *\n * // you can also pass an array of objects or urls or both\n * .add([\n * { name: 'key4', url: 'http://...', onComplete: function () {} },\n * { url: 'http://...', onComplete: function () {} },\n * 'http://...'\n * ])\n *\n * // and you can use both params and options\n * .add('key', 'http://...', { crossOrigin: true }, function () {})\n * .add('http://...', { crossOrigin: true }, function () {});\n * ```\n *\n * @function\n * @variation 1\n * @param {string} name - The name of the resource to load.\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 2\n * @param {string} name - The name of the resource to load.\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {IAddOptions} [options] - The options for the load.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 3\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 4\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {IAddOptions} [options] - The options for the load.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 5\n * @param {IAddOptions} options - The options for the load. This object must contain a `url` property.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 6\n * @param {Array} resources - An array of resources to load, where each is\n * either an object with the options or a string url. If you pass an object, it must contain a `url` property.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n\n var _proto = Loader.prototype;\n\n _proto.add = function add(name, url, options, cb) {\n // special case of an array of objects or urls\n if (Array.isArray(name)) {\n for (var i = 0; i < name.length; ++i) {\n this.add(name[i]);\n }\n\n return this;\n } // if an object is passed instead of params\n\n\n if (typeof name === 'object') {\n cb = url || name.callback || name.onComplete;\n options = name;\n url = name.url;\n name = name.name || name.key || name.url;\n } // case where no name is passed shift all args over by one.\n\n\n if (typeof url !== 'string') {\n cb = options;\n options = url;\n url = name;\n } // now that we shifted make sure we have a proper url.\n\n\n if (typeof url !== 'string') {\n throw new Error('No url passed to add resource to loader.');\n } // options are optional so people might pass a function and no options\n\n\n if (typeof options === 'function') {\n cb = options;\n options = null;\n } // if loading already you can only add resources that have a parent.\n\n\n if (this.loading && (!options || !options.parentResource)) {\n throw new Error('Cannot add resources while the loader is running.');\n } // check if resource already exists.\n\n\n if (this.resources[name]) {\n throw new Error(\"Resource named \\\"\" + name + \"\\\" already exists.\");\n } // add base url if this isn't an absolute url\n\n\n url = this._prepareUrl(url); // create the store the resource\n\n this.resources[name] = new Resource(name, url, options);\n\n if (typeof cb === 'function') {\n this.resources[name].onAfterMiddleware.once(cb);\n } // if actively loading, make sure to adjust progress chunks for that parent and its children\n\n\n if (this.loading) {\n var parent = options.parentResource;\n var incompleteChildren = [];\n\n for (var _i2 = 0; _i2 < parent.children.length; ++_i2) {\n if (!parent.children[_i2].isComplete) {\n incompleteChildren.push(parent.children[_i2]);\n }\n }\n\n var fullChunk = parent.progressChunk * (incompleteChildren.length + 1); // +1 for parent\n\n var eachChunk = fullChunk / (incompleteChildren.length + 2); // +2 for parent & new child\n\n parent.children.push(this.resources[name]);\n parent.progressChunk = eachChunk;\n\n for (var _i3 = 0; _i3 < incompleteChildren.length; ++_i3) {\n incompleteChildren[_i3].progressChunk = eachChunk;\n }\n\n this.resources[name].progressChunk = eachChunk;\n } // add the resource to the queue\n\n\n this._queue.push(this.resources[name]);\n\n return this;\n }\n /* eslint-enable require-jsdoc,valid-jsdoc */\n\n /**\n * Sets up a middleware function that will run *before* the\n * resource is loaded.\n *\n * @param {function} fn - The middleware function to register.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.pre = function pre(fn) {\n this._beforeMiddleware.push(fn);\n\n return this;\n }\n /**\n * Sets up a middleware function that will run *after* the\n * resource is loaded.\n *\n * @param {function} fn - The middleware function to register.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.use = function use(fn) {\n this._afterMiddleware.push(fn);\n\n return this;\n }\n /**\n * Resets the queue of the loader to prepare for a new load.\n *\n * @return {this} Returns itself.\n */\n ;\n\n _proto.reset = function reset() {\n this.progress = 0;\n this.loading = false;\n\n this._queue.kill();\n\n this._queue.pause(); // abort all resource loads\n\n\n for (var k in this.resources) {\n var res = this.resources[k];\n\n if (res._onLoadBinding) {\n res._onLoadBinding.detach();\n }\n\n if (res.isLoading) {\n res.abort();\n }\n }\n\n this.resources = {};\n return this;\n }\n /**\n * Starts loading the queued resources.\n *\n * @param {function} [cb] - Optional callback that will be bound to the `complete` event.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.load = function load(cb) {\n // register complete callback if they pass one\n if (typeof cb === 'function') {\n this.onComplete.once(cb);\n } // if the queue has already started we are done here\n\n\n if (this.loading) {\n return this;\n }\n\n if (this._queue.idle()) {\n this._onStart();\n\n this._onComplete();\n } else {\n // distribute progress chunks\n var numTasks = this._queue._tasks.length;\n var chunk = MAX_PROGRESS / numTasks;\n\n for (var i = 0; i < this._queue._tasks.length; ++i) {\n this._queue._tasks[i].data.progressChunk = chunk;\n } // notify we are starting\n\n\n this._onStart(); // start loading\n\n\n this._queue.resume();\n }\n\n return this;\n }\n /**\n * The number of resources to load concurrently.\n *\n * @member {number}\n * @default 10\n */\n ;\n\n /**\n * Prepares a url for usage based on the configuration of this object\n *\n * @private\n * @param {string} url - The url to prepare.\n * @return {string} The prepared url.\n */\n _proto._prepareUrl = function _prepareUrl(url) {\n var parsedUrl = parseUri(url, {\n strictMode: true\n });\n var result; // absolute url, just use it as is.\n\n if (parsedUrl.protocol || !parsedUrl.path || url.indexOf('//') === 0) {\n result = url;\n } // if baseUrl doesn't end in slash and url doesn't start with slash, then add a slash inbetween\n else if (this.baseUrl.length && this.baseUrl.lastIndexOf('/') !== this.baseUrl.length - 1 && url.charAt(0) !== '/') {\n result = this.baseUrl + \"/\" + url;\n } else {\n result = this.baseUrl + url;\n } // if we need to add a default querystring, there is a bit more work\n\n\n if (this.defaultQueryString) {\n var hash = rgxExtractUrlHash.exec(result)[0];\n result = result.substr(0, result.length - hash.length);\n\n if (result.indexOf('?') !== -1) {\n result += \"&\" + this.defaultQueryString;\n } else {\n result += \"?\" + this.defaultQueryString;\n }\n\n result += hash;\n }\n\n return result;\n }\n /**\n * Loads a single resource.\n *\n * @private\n * @param {Resource} resource - The resource to load.\n * @param {function} dequeue - The function to call when we need to dequeue this item.\n */\n ;\n\n _proto._loadResource = function _loadResource(resource, dequeue) {\n var _this2 = this;\n\n resource._dequeue = dequeue; // run before middleware\n\n eachSeries(this._beforeMiddleware, function (fn, next) {\n fn.call(_this2, resource, function () {\n // if the before middleware marks the resource as complete,\n // break and don't process any more before middleware\n next(resource.isComplete ? {} : null);\n });\n }, function () {\n if (resource.isComplete) {\n _this2._onLoad(resource);\n } else {\n resource._onLoadBinding = resource.onComplete.once(_this2._onLoad, _this2);\n resource.load();\n }\n }, true);\n }\n /**\n * Called once loading has started.\n *\n * @private\n */\n ;\n\n _proto._onStart = function _onStart() {\n this.progress = 0;\n this.loading = true;\n this.onStart.dispatch(this);\n }\n /**\n * Called once each resource has loaded.\n *\n * @private\n */\n ;\n\n _proto._onComplete = function _onComplete() {\n this.progress = MAX_PROGRESS;\n this.loading = false;\n this.onComplete.dispatch(this, this.resources);\n }\n /**\n * Called each time a resources is loaded.\n *\n * @private\n * @param {Resource} resource - The resource that was loaded\n */\n ;\n\n _proto._onLoad = function _onLoad(resource) {\n var _this3 = this;\n\n resource._onLoadBinding = null; // remove this resource from the async queue, and add it to our list of resources that are being parsed\n\n this._resourcesParsing.push(resource);\n\n resource._dequeue(); // run all the after middleware for this resource\n\n\n eachSeries(this._afterMiddleware, function (fn, next) {\n fn.call(_this3, resource, next);\n }, function () {\n resource.onAfterMiddleware.dispatch(resource);\n _this3.progress = Math.min(MAX_PROGRESS, _this3.progress + resource.progressChunk);\n\n _this3.onProgress.dispatch(_this3, resource);\n\n if (resource.error) {\n _this3.onError.dispatch(resource.error, _this3, resource);\n } else {\n _this3.onLoad.dispatch(_this3, resource);\n }\n\n _this3._resourcesParsing.splice(_this3._resourcesParsing.indexOf(resource), 1); // do completion check\n\n\n if (_this3._queue.idle() && _this3._resourcesParsing.length === 0) {\n _this3._onComplete();\n }\n }, true);\n };\n\n _createClass(Loader, [{\n key: \"concurrency\",\n get: function get() {\n return this._queue.concurrency;\n } // eslint-disable-next-line require-jsdoc\n ,\n set: function set(concurrency) {\n this._queue.concurrency = concurrency;\n }\n }]);\n\n return Loader;\n}();\n/**\n * A default array of middleware to run before loading each resource.\n * Each of these middlewares are added to any new Loader instances when they are created.\n *\n * @private\n * @member {function[]}\n */\n\n\nLoader._defaultBeforeMiddleware = [];\n/**\n * A default array of middleware to run after loading each resource.\n * Each of these middlewares are added to any new Loader instances when they are created.\n *\n * @private\n * @member {function[]}\n */\n\nLoader._defaultAfterMiddleware = [];\n/**\n * Sets up a middleware function that will run *before* the\n * resource is loaded.\n *\n * @static\n * @param {function} fn - The middleware function to register.\n * @return {Loader} Returns itself.\n */\n\nLoader.pre = function LoaderPreStatic(fn) {\n Loader._defaultBeforeMiddleware.push(fn);\n\n return Loader;\n};\n/**\n * Sets up a middleware function that will run *after* the\n * resource is loaded.\n *\n * @static\n * @param {function} fn - The middleware function to register.\n * @return {Loader} Returns itself.\n */\n\n\nLoader.use = function LoaderUseStatic(fn) {\n Loader._defaultAfterMiddleware.push(fn);\n\n return Loader;\n};\n\nexport { Loader, Resource, async, encodeBinary, index as middleware };\n//# sourceMappingURL=resource-loader.esm.js.map\n","/*!\n * @pixi/loaders - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/loaders is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Resource, Loader as Loader$1, middleware } from 'resource-loader';\nimport { EventEmitter } from '@pixi/utils';\nimport { Texture } from '@pixi/core';\n\n/**\n * Loader plugin for handling Texture resources.\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar TextureLoader = function TextureLoader () {};\n\nTextureLoader.use = function use (resource, next)\n{\n // create a new texture if the data is an Image object\n if (resource.data && resource.type === Resource.TYPE.IMAGE)\n {\n resource.texture = Texture.fromLoader(\n resource.data,\n resource.url,\n resource.name\n );\n }\n next();\n};\n\n/**\n * The new loader, extends Resource Loader by Chad Engler: https://github.com/englercj/resource-loader\n *\n * ```js\n * const loader = PIXI.Loader.shared; // PixiJS exposes a premade instance for you to use.\n * //or\n * const loader = new PIXI.Loader(); // you can also create your own if you want\n *\n * const sprites = {};\n *\n * // Chainable `add` to enqueue a resource\n * loader.add('bunny', 'data/bunny.png')\n * .add('spaceship', 'assets/spritesheet.json');\n * loader.add('scoreFont', 'assets/score.fnt');\n *\n * // Chainable `pre` to add a middleware that runs for each resource, *before* loading that resource.\n * // This is useful to implement custom caching modules (using filesystem, indexeddb, memory, etc).\n * loader.pre(cachingMiddleware);\n *\n * // Chainable `use` to add a middleware that runs for each resource, *after* loading that resource.\n * // This is useful to implement custom parsing modules (like spritesheet parsers, spine parser, etc).\n * loader.use(parsingMiddleware);\n *\n * // The `load` method loads the queue of resources, and calls the passed in callback called once all\n * // resources have loaded.\n * loader.load((loader, resources) => {\n * // resources is an object where the key is the name of the resource loaded and the value is the resource object.\n * // They have a couple default properties:\n * // - `url`: The URL that the resource was loaded from\n * // - `error`: The error that happened when trying to load (if any)\n * // - `data`: The raw data that was loaded\n * // also may contain other properties based on the middleware that runs.\n * sprites.bunny = new PIXI.TilingSprite(resources.bunny.texture);\n * sprites.spaceship = new PIXI.TilingSprite(resources.spaceship.texture);\n * sprites.scoreFont = new PIXI.TilingSprite(resources.scoreFont.texture);\n * });\n *\n * // throughout the process multiple signals can be dispatched.\n * loader.onProgress.add(() => {}); // called once per loaded/errored file\n * loader.onError.add(() => {}); // called once per errored file\n * loader.onLoad.add(() => {}); // called once per loaded file\n * loader.onComplete.add(() => {}); // called once when the queued resources all load.\n * ```\n *\n * @see https://github.com/englercj/resource-loader\n *\n * @class Loader\n * @memberof PIXI\n * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader.\n * @param {number} [concurrency=10] - The number of resources to load concurrently.\n */\nvar Loader = /*@__PURE__*/(function (ResourceLoader) {\n function Loader(baseUrl, concurrency)\n {\n var this$1 = this;\n\n ResourceLoader.call(this, baseUrl, concurrency);\n EventEmitter.call(this);\n\n for (var i = 0; i < Loader._plugins.length; ++i)\n {\n var plugin = Loader._plugins[i];\n var pre = plugin.pre;\n var use = plugin.use;\n\n if (pre)\n {\n this.pre(pre);\n }\n\n if (use)\n {\n this.use(use);\n }\n }\n\n // Compat layer, translate the new v2 signals into old v1 events.\n this.onStart.add(function (l) { return this$1.emit('start', l); });\n this.onProgress.add(function (l, r) { return this$1.emit('progress', l, r); });\n this.onError.add(function (e, l, r) { return this$1.emit('error', e, l, r); });\n this.onLoad.add(function (l, r) { return this$1.emit('load', l, r); });\n this.onComplete.add(function (l, r) { return this$1.emit('complete', l, r); });\n\n /**\n * If this loader cannot be destroyed.\n * @member {boolean}\n * @default false\n * @private\n */\n this._protected = false;\n }\n\n if ( ResourceLoader ) Loader.__proto__ = ResourceLoader;\n Loader.prototype = Object.create( ResourceLoader && ResourceLoader.prototype );\n Loader.prototype.constructor = Loader;\n\n var staticAccessors = { shared: { configurable: true } };\n\n /**\n * Destroy the loader, removes references.\n * @private\n */\n Loader.prototype.destroy = function destroy ()\n {\n if (!this._protected)\n {\n this.removeAllListeners();\n this.reset();\n }\n };\n\n /**\n * A premade instance of the loader that can be used to load resources.\n * @name shared\n * @type {PIXI.Loader}\n * @static\n * @memberof PIXI.Loader\n */\n staticAccessors.shared.get = function ()\n {\n var shared = Loader._shared;\n\n if (!shared)\n {\n shared = new Loader();\n shared._protected = true;\n Loader._shared = shared;\n }\n\n return shared;\n };\n\n Object.defineProperties( Loader, staticAccessors );\n\n return Loader;\n}(Loader$1));\n\n// Copy EE3 prototype (mixin)\nObject.assign(Loader.prototype, EventEmitter.prototype);\n\n/**\n * Collection of all installed `use` middleware for Loader.\n *\n * @static\n * @member {Array} _plugins\n * @memberof PIXI.Loader\n * @private\n */\nLoader._plugins = [];\n\n/**\n * Adds a Loader plugin for the global shared loader and all\n * new Loader instances created.\n *\n * @static\n * @method registerPlugin\n * @memberof PIXI.Loader\n * @param {PIXI.ILoaderPlugin} plugin - The plugin to add\n * @return {PIXI.Loader} Reference to PIXI.Loader for chaining\n */\nLoader.registerPlugin = function registerPlugin(plugin)\n{\n Loader._plugins.push(plugin);\n\n if (plugin.add)\n {\n plugin.add();\n }\n\n return Loader;\n};\n\n// parse any blob into more usable objects (e.g. Image)\nLoader.registerPlugin({ use: middleware.parsing });\n\n// parse any Image objects into textures\nLoader.registerPlugin(TextureLoader);\n\n/**\n * Plugin to be installed for handling specific Loader resources.\n *\n * @memberof PIXI\n * @typedef ILoaderPlugin\n * @property {function} [add] - Function to call immediate after registering plugin.\n * @property {PIXI.Loader.loaderMiddleware} [pre] - Middleware function to run before load, the\n * arguments for this are `(resource, next)`\n * @property {PIXI.Loader.loaderMiddleware} [use] - Middleware function to run after load, the\n * arguments for this are `(resource, next)`\n */\n\n/**\n * @memberof PIXI.Loader\n * @callback loaderMiddleware\n * @param {PIXI.LoaderResource} resource\n * @param {function} next\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onStart\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onProgress\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onError\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onLoad\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onComplete\n */\n\n/**\n * Application plugin for supporting loader option. Installing the LoaderPlugin\n * is not necessary if using **pixi.js** or **pixi.js-legacy**.\n * @example\n * import {AppLoaderPlugin} from '@pixi/loaders';\n * import {Application} from '@pixi/app';\n * Application.registerPlugin(AppLoaderPlugin);\n * @class\n * @memberof PIXI\n */\nvar AppLoaderPlugin = function AppLoaderPlugin () {};\n\nAppLoaderPlugin.init = function init (options)\n{\n options = Object.assign({\n sharedLoader: false,\n }, options);\n\n /**\n * Loader instance to help with asset loading.\n * @name PIXI.Application#loader\n * @type {PIXI.Loader}\n * @readonly\n */\n this.loader = options.sharedLoader ? Loader.shared : new Loader();\n};\n\n/**\n * Called when application destroyed\n * @private\n */\nAppLoaderPlugin.destroy = function destroy ()\n{\n if (this.loader)\n {\n this.loader.destroy();\n this.loader = null;\n }\n};\n\n/**\n * Reference to **{@link https://github.com/englercj/resource-loader\n * resource-loader}**'s Resource class.\n * @see http://englercj.github.io/resource-loader/Resource.html\n * @class LoaderResource\n * @memberof PIXI\n */\nvar LoaderResource = Resource;\n\nexport { AppLoaderPlugin, Loader, LoaderResource, TextureLoader };\n//# sourceMappingURL=loaders.es.js.map\n","/*!\n * @pixi/particles - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/particles is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { BLEND_MODES, TYPES } from '@pixi/constants';\nimport { hex2rgb, createIndicesForQuads, correctBlendMode, premultiplyRgba, premultiplyTint } from '@pixi/utils';\nimport { Container } from '@pixi/display';\nimport { Geometry, Buffer, ObjectRenderer, Shader } from '@pixi/core';\nimport { Matrix } from '@pixi/math';\n\n/**\n * The ParticleContainer class is a really fast version of the Container built solely for speed,\n * so use when you need a lot of sprites or particles.\n *\n * The tradeoff of the ParticleContainer is that most advanced functionality will not work.\n * ParticleContainer implements the basic object transform (position, scale, rotation)\n * and some advanced functionality like tint (as of v4.5.6).\n *\n * Other more advanced functionality like masking, children, filters, etc will not work on sprites in this batch.\n *\n * It's extremely easy to use:\n * ```js\n * let container = new ParticleContainer();\n *\n * for (let i = 0; i < 100; ++i)\n * {\n * let sprite = PIXI.Sprite.from(\"myImage.png\");\n * container.addChild(sprite);\n * }\n * ```\n *\n * And here you have a hundred sprites that will be rendered at the speed of light.\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar ParticleContainer = /*@__PURE__*/(function (Container) {\n function ParticleContainer(maxSize, properties, batchSize, autoResize)\n {\n if ( maxSize === void 0 ) maxSize = 1500;\n if ( batchSize === void 0 ) batchSize = 16384;\n if ( autoResize === void 0 ) autoResize = false;\n\n Container.call(this);\n\n // Making sure the batch size is valid\n // 65535 is max vertex index in the index buffer (see ParticleRenderer)\n // so max number of particles is 65536 / 4 = 16384\n var maxBatchSize = 16384;\n\n if (batchSize > maxBatchSize)\n {\n batchSize = maxBatchSize;\n }\n\n /**\n * Set properties to be dynamic (true) / static (false)\n *\n * @member {boolean[]}\n * @private\n */\n this._properties = [false, true, false, false, false];\n\n /**\n * @member {number}\n * @private\n */\n this._maxSize = maxSize;\n\n /**\n * @member {number}\n * @private\n */\n this._batchSize = batchSize;\n\n /**\n * @member {Array}\n * @private\n */\n this._buffers = null;\n\n /**\n * for every batch stores _updateID corresponding to the last change in that batch\n * @member {number[]}\n * @private\n */\n this._bufferUpdateIDs = [];\n\n /**\n * when child inserted, removed or changes position this number goes up\n * @member {number[]}\n * @private\n */\n this._updateID = 0;\n\n /**\n * @member {boolean}\n *\n */\n this.interactiveChildren = false;\n\n /**\n * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL`\n * to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * If true, container allocates more batches in case there are more than `maxSize` particles.\n * @member {boolean}\n * @default false\n */\n this.autoResize = autoResize;\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * Default to true here as performance is usually the priority for particles.\n *\n * @member {boolean}\n * @default true\n */\n this.roundPixels = true;\n\n /**\n * The texture used to render the children.\n *\n * @readonly\n * @member {PIXI.BaseTexture}\n */\n this.baseTexture = null;\n\n this.setProperties(properties);\n\n /**\n * The tint applied to the container.\n * This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @private\n * @member {number}\n * @default 0xFFFFFF\n */\n this._tint = 0;\n this.tintRgb = new Float32Array(4);\n this.tint = 0xFFFFFF;\n }\n\n if ( Container ) ParticleContainer.__proto__ = Container;\n ParticleContainer.prototype = Object.create( Container && Container.prototype );\n ParticleContainer.prototype.constructor = ParticleContainer;\n\n var prototypeAccessors = { tint: { configurable: true } };\n\n /**\n * Sets the private properties array to dynamic / static based on the passed properties object\n *\n * @param {object} properties - The properties to be uploaded\n */\n ParticleContainer.prototype.setProperties = function setProperties (properties)\n {\n if (properties)\n {\n this._properties[0] = 'vertices' in properties || 'scale' in properties\n ? !!properties.vertices || !!properties.scale : this._properties[0];\n this._properties[1] = 'position' in properties ? !!properties.position : this._properties[1];\n this._properties[2] = 'rotation' in properties ? !!properties.rotation : this._properties[2];\n this._properties[3] = 'uvs' in properties ? !!properties.uvs : this._properties[3];\n this._properties[4] = 'tint' in properties || 'alpha' in properties\n ? !!properties.tint || !!properties.alpha : this._properties[4];\n }\n };\n\n /**\n * Updates the object transform for rendering\n *\n * @private\n */\n ParticleContainer.prototype.updateTransform = function updateTransform ()\n {\n // TODO don't need to!\n this.displayObjectUpdateTransform();\n // PIXI.Container.prototype.updateTransform.call( this );\n };\n\n /**\n * The tint applied to the container. This is a hex value.\n * A value of 0xFFFFFF will remove any tint effect.\n ** IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer.\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._tint = value;\n hex2rgb(value, this.tintRgb);\n };\n\n /**\n * Renders the container using the WebGL renderer\n *\n * @private\n * @param {PIXI.Renderer} renderer - The webgl renderer\n */\n ParticleContainer.prototype.render = function render (renderer)\n {\n var this$1 = this;\n\n if (!this.visible || this.worldAlpha <= 0 || !this.children.length || !this.renderable)\n {\n return;\n }\n\n if (!this.baseTexture)\n {\n this.baseTexture = this.children[0]._texture.baseTexture;\n if (!this.baseTexture.valid)\n {\n this.baseTexture.once('update', function () { return this$1.onChildrenChange(0); });\n }\n }\n\n renderer.batch.setObjectRenderer(renderer.plugins.particle);\n renderer.plugins.particle.render(this);\n };\n\n /**\n * Set the flag that static data should be updated to true\n *\n * @private\n * @param {number} smallestChildIndex - The smallest child index\n */\n ParticleContainer.prototype.onChildrenChange = function onChildrenChange (smallestChildIndex)\n {\n var bufferIndex = Math.floor(smallestChildIndex / this._batchSize);\n\n while (this._bufferUpdateIDs.length < bufferIndex)\n {\n this._bufferUpdateIDs.push(0);\n }\n this._bufferUpdateIDs[bufferIndex] = ++this._updateID;\n };\n\n ParticleContainer.prototype.dispose = function dispose ()\n {\n if (this._buffers)\n {\n for (var i = 0; i < this._buffers.length; ++i)\n {\n this._buffers[i].destroy();\n }\n\n this._buffers = null;\n }\n };\n\n /**\n * Destroys the container\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their\n * destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n ParticleContainer.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.dispose();\n\n this._properties = null;\n this._buffers = null;\n this._bufferUpdateIDs = null;\n };\n\n Object.defineProperties( ParticleContainer.prototype, prototypeAccessors );\n\n return ParticleContainer;\n}(Container));\n\n/**\n * @author Mat Groves\n *\n * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/\n * for creating the original PixiJS version!\n * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that\n * they now share 4 bytes on the vertex buffer\n *\n * Heavily inspired by LibGDX's ParticleBuffer:\n * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleBuffer.java\n */\n\n/**\n * The particle buffer manages the static and dynamic buffers for a particle container.\n *\n * @class\n * @private\n * @memberof PIXI\n */\nvar ParticleBuffer = function ParticleBuffer(properties, dynamicPropertyFlags, size)\n{\n this.geometry = new Geometry();\n\n this.indexBuffer = null;\n\n /**\n * The number of particles the buffer can hold\n *\n * @private\n * @member {number}\n */\n this.size = size;\n\n /**\n * A list of the properties that are dynamic.\n *\n * @private\n * @member {object[]}\n */\n this.dynamicProperties = [];\n\n /**\n * A list of the properties that are static.\n *\n * @private\n * @member {object[]}\n */\n this.staticProperties = [];\n\n for (var i = 0; i < properties.length; ++i)\n {\n var property = properties[i];\n\n // Make copy of properties object so that when we edit the offset it doesn't\n // change all other instances of the object literal\n property = {\n attributeName: property.attributeName,\n size: property.size,\n uploadFunction: property.uploadFunction,\n type: property.type || TYPES.FLOAT,\n offset: property.offset,\n };\n\n if (dynamicPropertyFlags[i])\n {\n this.dynamicProperties.push(property);\n }\n else\n {\n this.staticProperties.push(property);\n }\n }\n\n this.staticStride = 0;\n this.staticBuffer = null;\n this.staticData = null;\n this.staticDataUint32 = null;\n\n this.dynamicStride = 0;\n this.dynamicBuffer = null;\n this.dynamicData = null;\n this.dynamicDataUint32 = null;\n\n this._updateID = 0;\n\n this.initBuffers();\n};\n\n/**\n * Sets up the renderer context and necessary buffers.\n *\n * @private\n */\nParticleBuffer.prototype.initBuffers = function initBuffers ()\n{\n var geometry = this.geometry;\n\n var dynamicOffset = 0;\n\n /**\n * Holds the indices of the geometry (quads) to draw\n *\n * @member {Uint16Array}\n * @private\n */\n this.indexBuffer = new Buffer(createIndicesForQuads(this.size), true, true);\n geometry.addIndex(this.indexBuffer);\n\n this.dynamicStride = 0;\n\n for (var i = 0; i < this.dynamicProperties.length; ++i)\n {\n var property = this.dynamicProperties[i];\n\n property.offset = dynamicOffset;\n dynamicOffset += property.size;\n this.dynamicStride += property.size;\n }\n\n var dynBuffer = new ArrayBuffer(this.size * this.dynamicStride * 4 * 4);\n\n this.dynamicData = new Float32Array(dynBuffer);\n this.dynamicDataUint32 = new Uint32Array(dynBuffer);\n this.dynamicBuffer = new Buffer(this.dynamicData, false, false);\n\n // static //\n var staticOffset = 0;\n\n this.staticStride = 0;\n\n for (var i$1 = 0; i$1 < this.staticProperties.length; ++i$1)\n {\n var property$1 = this.staticProperties[i$1];\n\n property$1.offset = staticOffset;\n staticOffset += property$1.size;\n this.staticStride += property$1.size;\n }\n\n var statBuffer = new ArrayBuffer(this.size * this.staticStride * 4 * 4);\n\n this.staticData = new Float32Array(statBuffer);\n this.staticDataUint32 = new Uint32Array(statBuffer);\n this.staticBuffer = new Buffer(this.staticData, true, false);\n\n for (var i$2 = 0; i$2 < this.dynamicProperties.length; ++i$2)\n {\n var property$2 = this.dynamicProperties[i$2];\n\n geometry.addAttribute(\n property$2.attributeName,\n this.dynamicBuffer,\n 0,\n property$2.type === TYPES.UNSIGNED_BYTE,\n property$2.type,\n this.dynamicStride * 4,\n property$2.offset * 4\n );\n }\n\n for (var i$3 = 0; i$3 < this.staticProperties.length; ++i$3)\n {\n var property$3 = this.staticProperties[i$3];\n\n geometry.addAttribute(\n property$3.attributeName,\n this.staticBuffer,\n 0,\n property$3.type === TYPES.UNSIGNED_BYTE,\n property$3.type,\n this.staticStride * 4,\n property$3.offset * 4\n );\n }\n};\n\n/**\n * Uploads the dynamic properties.\n *\n * @private\n * @param {PIXI.DisplayObject[]} children - The children to upload.\n * @param {number} startIndex - The index to start at.\n * @param {number} amount - The number to upload.\n */\nParticleBuffer.prototype.uploadDynamic = function uploadDynamic (children, startIndex, amount)\n{\n for (var i = 0; i < this.dynamicProperties.length; i++)\n {\n var property = this.dynamicProperties[i];\n\n property.uploadFunction(children, startIndex, amount,\n property.type === TYPES.UNSIGNED_BYTE ? this.dynamicDataUint32 : this.dynamicData,\n this.dynamicStride, property.offset);\n }\n\n this.dynamicBuffer._updateID++;\n};\n\n/**\n * Uploads the static properties.\n *\n * @private\n * @param {PIXI.DisplayObject[]} children - The children to upload.\n * @param {number} startIndex - The index to start at.\n * @param {number} amount - The number to upload.\n */\nParticleBuffer.prototype.uploadStatic = function uploadStatic (children, startIndex, amount)\n{\n for (var i = 0; i < this.staticProperties.length; i++)\n {\n var property = this.staticProperties[i];\n\n property.uploadFunction(children, startIndex, amount,\n property.type === TYPES.UNSIGNED_BYTE ? this.staticDataUint32 : this.staticData,\n this.staticStride, property.offset);\n }\n\n this.staticBuffer._updateID++;\n};\n\n/**\n * Destroys the ParticleBuffer.\n *\n * @private\n */\nParticleBuffer.prototype.destroy = function destroy ()\n{\n this.indexBuffer = null;\n\n this.dynamicProperties = null;\n // this.dynamicBuffer.destroy();\n this.dynamicBuffer = null;\n this.dynamicData = null;\n this.dynamicDataUint32 = null;\n\n this.staticProperties = null;\n // this.staticBuffer.destroy();\n this.staticBuffer = null;\n this.staticData = null;\n this.staticDataUint32 = null;\n // all buffers are destroyed inside geometry\n this.geometry.destroy();\n};\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\nattribute vec4 aColor;\\n\\nattribute vec2 aPositionCoord;\\nattribute float aRotation;\\n\\nuniform mat3 translationMatrix;\\nuniform vec4 uColor;\\n\\nvarying vec2 vTextureCoord;\\nvarying vec4 vColor;\\n\\nvoid main(void){\\n float x = (aVertexPosition.x) * cos(aRotation) - (aVertexPosition.y) * sin(aRotation);\\n float y = (aVertexPosition.x) * sin(aRotation) + (aVertexPosition.y) * cos(aRotation);\\n\\n vec2 v = vec2(x, y);\\n v = v + aPositionCoord;\\n\\n gl_Position = vec4((translationMatrix * vec3(v, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vColor = aColor * uColor;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\nvarying vec4 vColor;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n vec4 color = texture2D(uSampler, vTextureCoord) * vColor;\\n gl_FragColor = color;\\n}\";\n\n/**\n * @author Mat Groves\n *\n * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/\n * for creating the original PixiJS version!\n * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that they now\n * share 4 bytes on the vertex buffer\n *\n * Heavily inspired by LibGDX's ParticleRenderer:\n * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleRenderer.java\n */\n\n/**\n * Renderer for Particles that is designer for speed over feature set.\n *\n * @class\n * @memberof PIXI\n */\nvar ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function ParticleRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n // 65535 is max vertex index in the index buffer (see ParticleRenderer)\n // so max number of particles is 65536 / 4 = 16384\n // and max number of element in the index buffer is 16384 * 6 = 98304\n // Creating a full index buffer, overhead is 98304 * 2 = 196Ko\n // let numIndices = 98304;\n\n /**\n * The default shader that is used if a sprite doesn't have a more specific one.\n *\n * @member {PIXI.Shader}\n */\n this.shader = null;\n\n this.properties = null;\n\n this.tempMatrix = new Matrix();\n\n this.properties = [\n // verticesData\n {\n attributeName: 'aVertexPosition',\n size: 2,\n uploadFunction: this.uploadVertices,\n offset: 0,\n },\n // positionData\n {\n attributeName: 'aPositionCoord',\n size: 2,\n uploadFunction: this.uploadPosition,\n offset: 0,\n },\n // rotationData\n {\n attributeName: 'aRotation',\n size: 1,\n uploadFunction: this.uploadRotation,\n offset: 0,\n },\n // uvsData\n {\n attributeName: 'aTextureCoord',\n size: 2,\n uploadFunction: this.uploadUvs,\n offset: 0,\n },\n // tintData\n {\n attributeName: 'aColor',\n size: 1,\n type: TYPES.UNSIGNED_BYTE,\n uploadFunction: this.uploadTint,\n offset: 0,\n } ];\n\n this.shader = Shader.from(vertex, fragment, {});\n }\n\n if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer;\n ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n ParticleRenderer.prototype.constructor = ParticleRenderer;\n\n /**\n * Renders the particle container object.\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n */\n ParticleRenderer.prototype.render = function render (container)\n {\n var children = container.children;\n var maxSize = container._maxSize;\n var batchSize = container._batchSize;\n var renderer = this.renderer;\n var totalChildren = children.length;\n\n if (totalChildren === 0)\n {\n return;\n }\n else if (totalChildren > maxSize && !container.autoResize)\n {\n totalChildren = maxSize;\n }\n\n var buffers = container._buffers;\n\n if (!buffers)\n {\n buffers = container._buffers = this.generateBuffers(container);\n }\n\n var baseTexture = children[0]._texture.baseTexture;\n\n // if the uvs have not updated then no point rendering just yet!\n this.renderer.state.setBlendMode(correctBlendMode(container.blendMode, baseTexture.premultiplyAlpha));\n\n var gl = renderer.gl;\n\n var m = container.worldTransform.copyTo(this.tempMatrix);\n\n m.prepend(renderer.globalUniforms.uniforms.projectionMatrix);\n\n this.shader.uniforms.translationMatrix = m.toArray(true);\n\n this.shader.uniforms.uColor = premultiplyRgba(container.tintRgb,\n container.worldAlpha, this.shader.uniforms.uColor, baseTexture.premultiplyAlpha);\n\n this.shader.uniforms.uSampler = baseTexture;\n\n this.renderer.shader.bind(this.shader);\n\n var updateStatic = false;\n\n // now lets upload and render the buffers..\n for (var i = 0, j = 0; i < totalChildren; i += batchSize, j += 1)\n {\n var amount = (totalChildren - i);\n\n if (amount > batchSize)\n {\n amount = batchSize;\n }\n\n if (j >= buffers.length)\n {\n buffers.push(this._generateOneMoreBuffer(container));\n }\n\n var buffer = buffers[j];\n\n // we always upload the dynamic\n buffer.uploadDynamic(children, i, amount);\n\n var bid = container._bufferUpdateIDs[j] || 0;\n\n updateStatic = updateStatic || (buffer._updateID < bid);\n // we only upload the static content when we have to!\n if (updateStatic)\n {\n buffer._updateID = container._updateID;\n buffer.uploadStatic(children, i, amount);\n }\n\n // bind the buffer\n renderer.geometry.bind(buffer.geometry);\n gl.drawElements(gl.TRIANGLES, amount * 6, gl.UNSIGNED_SHORT, 0);\n }\n };\n\n /**\n * Creates one particle buffer for each child in the container we want to render and updates internal properties\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n * @return {PIXI.ParticleBuffer[]} The buffers\n * @private\n */\n ParticleRenderer.prototype.generateBuffers = function generateBuffers (container)\n {\n var buffers = [];\n var size = container._maxSize;\n var batchSize = container._batchSize;\n var dynamicPropertyFlags = container._properties;\n\n for (var i = 0; i < size; i += batchSize)\n {\n buffers.push(new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize));\n }\n\n return buffers;\n };\n\n /**\n * Creates one more particle buffer, because container has autoResize feature\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n * @return {PIXI.ParticleBuffer} generated buffer\n * @private\n */\n ParticleRenderer.prototype._generateOneMoreBuffer = function _generateOneMoreBuffer (container)\n {\n var batchSize = container._batchSize;\n var dynamicPropertyFlags = container._properties;\n\n return new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize);\n };\n\n /**\n * Uploads the vertices.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their vertices uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadVertices = function uploadVertices (children, startIndex, amount, array, stride, offset)\n {\n var w0 = 0;\n var w1 = 0;\n var h0 = 0;\n var h1 = 0;\n\n for (var i = 0; i < amount; ++i)\n {\n var sprite = children[startIndex + i];\n var texture = sprite._texture;\n var sx = sprite.scale.x;\n var sy = sprite.scale.y;\n var trim = texture.trim;\n var orig = texture.orig;\n\n if (trim)\n {\n // if the sprite is trimmed and is not a tilingsprite then we need to add the\n // extra space before transforming the sprite coords..\n w1 = trim.x - (sprite.anchor.x * orig.width);\n w0 = w1 + trim.width;\n\n h1 = trim.y - (sprite.anchor.y * orig.height);\n h0 = h1 + trim.height;\n }\n else\n {\n w0 = (orig.width) * (1 - sprite.anchor.x);\n w1 = (orig.width) * -sprite.anchor.x;\n\n h0 = orig.height * (1 - sprite.anchor.y);\n h1 = orig.height * -sprite.anchor.y;\n }\n\n array[offset] = w1 * sx;\n array[offset + 1] = h1 * sy;\n\n array[offset + stride] = w0 * sx;\n array[offset + stride + 1] = h1 * sy;\n\n array[offset + (stride * 2)] = w0 * sx;\n array[offset + (stride * 2) + 1] = h0 * sy;\n\n array[offset + (stride * 3)] = w1 * sx;\n array[offset + (stride * 3) + 1] = h0 * sy;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the position.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their positions uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadPosition = function uploadPosition (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; i++)\n {\n var spritePosition = children[startIndex + i].position;\n\n array[offset] = spritePosition.x;\n array[offset + 1] = spritePosition.y;\n\n array[offset + stride] = spritePosition.x;\n array[offset + stride + 1] = spritePosition.y;\n\n array[offset + (stride * 2)] = spritePosition.x;\n array[offset + (stride * 2) + 1] = spritePosition.y;\n\n array[offset + (stride * 3)] = spritePosition.x;\n array[offset + (stride * 3) + 1] = spritePosition.y;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the rotiation.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadRotation = function uploadRotation (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; i++)\n {\n var spriteRotation = children[startIndex + i].rotation;\n\n array[offset] = spriteRotation;\n array[offset + stride] = spriteRotation;\n array[offset + (stride * 2)] = spriteRotation;\n array[offset + (stride * 3)] = spriteRotation;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the Uvs\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadUvs = function uploadUvs (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; ++i)\n {\n var textureUvs = children[startIndex + i]._texture._uvs;\n\n if (textureUvs)\n {\n array[offset] = textureUvs.x0;\n array[offset + 1] = textureUvs.y0;\n\n array[offset + stride] = textureUvs.x1;\n array[offset + stride + 1] = textureUvs.y1;\n\n array[offset + (stride * 2)] = textureUvs.x2;\n array[offset + (stride * 2) + 1] = textureUvs.y2;\n\n array[offset + (stride * 3)] = textureUvs.x3;\n array[offset + (stride * 3) + 1] = textureUvs.y3;\n\n offset += stride * 4;\n }\n else\n {\n // TODO you know this can be easier!\n array[offset] = 0;\n array[offset + 1] = 0;\n\n array[offset + stride] = 0;\n array[offset + stride + 1] = 0;\n\n array[offset + (stride * 2)] = 0;\n array[offset + (stride * 2) + 1] = 0;\n\n array[offset + (stride * 3)] = 0;\n array[offset + (stride * 3) + 1] = 0;\n\n offset += stride * 4;\n }\n }\n };\n\n /**\n * Uploads the tint.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadTint = function uploadTint (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; ++i)\n {\n var sprite = children[startIndex + i];\n var premultiplied = sprite._texture.baseTexture.premultiplyAlpha;\n var alpha = sprite.alpha;\n // we dont call extra function if alpha is 1.0, that's faster\n var argb = alpha < 1.0 && premultiplied ? premultiplyTint(sprite._tintRGB, alpha)\n : sprite._tintRGB + (alpha * 255 << 24);\n\n array[offset] = argb;\n array[offset + stride] = argb;\n array[offset + (stride * 2)] = argb;\n array[offset + (stride * 3)] = argb;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Destroys the ParticleRenderer.\n */\n ParticleRenderer.prototype.destroy = function destroy ()\n {\n ObjectRenderer.prototype.destroy.call(this);\n\n if (this.shader)\n {\n this.shader.destroy();\n this.shader = null;\n }\n\n this.tempMatrix = null;\n };\n\n return ParticleRenderer;\n}(ObjectRenderer));\n\nexport { ParticleContainer, ParticleRenderer };\n//# sourceMappingURL=particles.es.js.map\n","/*!\n * @pixi/spritesheet - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/spritesheet is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Rectangle } from '@pixi/math';\nimport { Texture } from '@pixi/core';\nimport { getResolutionOfUrl, url } from '@pixi/utils';\nimport { LoaderResource } from '@pixi/loaders';\n\n/**\n * Utility class for maintaining reference to a collection\n * of Textures on a single Spritesheet.\n *\n * To access a sprite sheet from your code pass its JSON data file to Pixi's loader:\n *\n * ```js\n * PIXI.Loader.shared.add(\"images/spritesheet.json\").load(setup);\n *\n * function setup() {\n * let sheet = PIXI.Loader.shared.resources[\"images/spritesheet.json\"].spritesheet;\n * ...\n * }\n * ```\n * With the `sheet.textures` you can create Sprite objects,`sheet.animations` can be used to create an AnimatedSprite.\n *\n * Sprite sheets can be packed using tools like {@link https://codeandweb.com/texturepacker|TexturePacker},\n * {@link https://renderhjs.net/shoebox/|Shoebox} or {@link https://github.com/krzysztof-o/spritesheet.js|Spritesheet.js}.\n * Default anchor points (see {@link PIXI.Texture#defaultAnchor}) and grouping of animation sprites are currently only\n * supported by TexturePacker.\n *\n * @class\n * @memberof PIXI\n */\nvar Spritesheet = function Spritesheet(baseTexture, data, resolutionFilename)\n{\n if ( resolutionFilename === void 0 ) resolutionFilename = null;\n\n /**\n * Reference to ths source texture\n * @type {PIXI.BaseTexture}\n */\n this.baseTexture = baseTexture;\n\n /**\n * A map containing all textures of the sprite sheet.\n * Can be used to create a {@link PIXI.Sprite|Sprite}:\n * ```js\n * new PIXI.Sprite(sheet.textures[\"image.png\"]);\n * ```\n * @member {Object}\n */\n this.textures = {};\n\n /**\n * A map containing the textures for each animation.\n * Can be used to create an {@link PIXI.AnimatedSprite|AnimatedSprite}:\n * ```js\n * new PIXI.AnimatedSprite(sheet.animations[\"anim_name\"])\n * ```\n * @member {Object}\n */\n this.animations = {};\n\n /**\n * Reference to the original JSON data.\n * @type {Object}\n */\n this.data = data;\n\n /**\n * The resolution of the spritesheet.\n * @type {number}\n */\n this.resolution = this._updateResolution(\n resolutionFilename\n || (this.baseTexture.resource ? this.baseTexture.resource.url : null)\n );\n\n /**\n * Map of spritesheet frames.\n * @type {Object}\n * @private\n */\n this._frames = this.data.frames;\n\n /**\n * Collection of frame names.\n * @type {string[]}\n * @private\n */\n this._frameKeys = Object.keys(this._frames);\n\n /**\n * Current batch index being processed.\n * @type {number}\n * @private\n */\n this._batchIndex = 0;\n\n /**\n * Callback when parse is completed.\n * @type {Function}\n * @private\n */\n this._callback = null;\n};\n\nvar staticAccessors = { BATCH_SIZE: { configurable: true } };\n\n/**\n * Generate the resolution from the filename or fallback\n * to the meta.scale field of the JSON data.\n *\n * @private\n * @param {string} resolutionFilename - The filename to use for resolving\n * the default resolution.\n * @return {number} Resolution to use for spritesheet.\n */\nstaticAccessors.BATCH_SIZE.get = function ()\n{\n return 1000;\n};\n\nSpritesheet.prototype._updateResolution = function _updateResolution (resolutionFilename)\n{\n var scale = this.data.meta.scale;\n\n // Use a defaultValue of `null` to check if a url-based resolution is set\n var resolution = getResolutionOfUrl(resolutionFilename, null);\n\n // No resolution found via URL\n if (resolution === null)\n {\n // Use the scale value or default to 1\n resolution = scale !== undefined ? parseFloat(scale) : 1;\n }\n\n // For non-1 resolutions, update baseTexture\n if (resolution !== 1)\n {\n this.baseTexture.setResolution(resolution);\n }\n\n return resolution;\n};\n\n/**\n * Parser spritesheet from loaded data. This is done asynchronously\n * to prevent creating too many Texture within a single process.\n *\n * @param {Function} callback - Callback when complete returns\n * a map of the Textures for this spritesheet.\n */\nSpritesheet.prototype.parse = function parse (callback)\n{\n this._batchIndex = 0;\n this._callback = callback;\n\n if (this._frameKeys.length <= Spritesheet.BATCH_SIZE)\n {\n this._processFrames(0);\n this._processAnimations();\n this._parseComplete();\n }\n else\n {\n this._nextBatch();\n }\n};\n\n/**\n * Process a batch of frames\n *\n * @private\n * @param {number} initialFrameIndex - The index of frame to start.\n */\nSpritesheet.prototype._processFrames = function _processFrames (initialFrameIndex)\n{\n var frameIndex = initialFrameIndex;\n var maxFrames = Spritesheet.BATCH_SIZE;\n\n while (frameIndex - initialFrameIndex < maxFrames && frameIndex < this._frameKeys.length)\n {\n var i = this._frameKeys[frameIndex];\n var data = this._frames[i];\n var rect = data.frame;\n\n if (rect)\n {\n var frame = null;\n var trim = null;\n var sourceSize = data.trimmed !== false && data.sourceSize\n ? data.sourceSize : data.frame;\n\n var orig = new Rectangle(\n 0,\n 0,\n Math.floor(sourceSize.w) / this.resolution,\n Math.floor(sourceSize.h) / this.resolution\n );\n\n if (data.rotated)\n {\n frame = new Rectangle(\n Math.floor(rect.x) / this.resolution,\n Math.floor(rect.y) / this.resolution,\n Math.floor(rect.h) / this.resolution,\n Math.floor(rect.w) / this.resolution\n );\n }\n else\n {\n frame = new Rectangle(\n Math.floor(rect.x) / this.resolution,\n Math.floor(rect.y) / this.resolution,\n Math.floor(rect.w) / this.resolution,\n Math.floor(rect.h) / this.resolution\n );\n }\n\n // Check to see if the sprite is trimmed\n if (data.trimmed !== false && data.spriteSourceSize)\n {\n trim = new Rectangle(\n Math.floor(data.spriteSourceSize.x) / this.resolution,\n Math.floor(data.spriteSourceSize.y) / this.resolution,\n Math.floor(rect.w) / this.resolution,\n Math.floor(rect.h) / this.resolution\n );\n }\n\n this.textures[i] = new Texture(\n this.baseTexture,\n frame,\n orig,\n trim,\n data.rotated ? 2 : 0,\n data.anchor\n );\n\n // lets also add the frame to pixi's global cache for 'from' and 'fromLoader' functions\n Texture.addToCache(this.textures[i], i);\n }\n\n frameIndex++;\n }\n};\n\n/**\n * Parse animations config\n *\n * @private\n */\nSpritesheet.prototype._processAnimations = function _processAnimations ()\n{\n var animations = this.data.animations || {};\n\n for (var animName in animations)\n {\n this.animations[animName] = [];\n for (var i = 0; i < animations[animName].length; i++)\n {\n var frameName = animations[animName][i];\n\n this.animations[animName].push(this.textures[frameName]);\n }\n }\n};\n\n/**\n * The parse has completed.\n *\n * @private\n */\nSpritesheet.prototype._parseComplete = function _parseComplete ()\n{\n var callback = this._callback;\n\n this._callback = null;\n this._batchIndex = 0;\n callback.call(this, this.textures);\n};\n\n/**\n * Begin the next batch of textures.\n *\n * @private\n */\nSpritesheet.prototype._nextBatch = function _nextBatch ()\n{\n var this$1 = this;\n\n this._processFrames(this._batchIndex * Spritesheet.BATCH_SIZE);\n this._batchIndex++;\n setTimeout(function () {\n if (this$1._batchIndex * Spritesheet.BATCH_SIZE < this$1._frameKeys.length)\n {\n this$1._nextBatch();\n }\n else\n {\n this$1._processAnimations();\n this$1._parseComplete();\n }\n }, 0);\n};\n\n/**\n * Destroy Spritesheet and don't use after this.\n *\n * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well\n */\nSpritesheet.prototype.destroy = function destroy (destroyBase)\n{\n if ( destroyBase === void 0 ) destroyBase = false;\n\n for (var i in this.textures)\n {\n this.textures[i].destroy();\n }\n this._frames = null;\n this._frameKeys = null;\n this.data = null;\n this.textures = null;\n if (destroyBase)\n {\n this.baseTexture.destroy();\n }\n this.baseTexture = null;\n};\n\nObject.defineProperties( Spritesheet, staticAccessors );\n\n/**\n * {@link PIXI.Loader Loader} middleware for loading texture atlases that have been created with\n * TexturePacker or similar JSON-based spritesheet.\n *\n * This middleware automatically generates Texture resources.\n *\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar SpritesheetLoader = function SpritesheetLoader () {};\n\nSpritesheetLoader.use = function use (resource, next)\n{\n var imageResourceName = (resource.name) + \"_image\";\n\n // skip if no data, its not json, it isn't spritesheet data, or the image resource already exists\n if (!resource.data\n || resource.type !== LoaderResource.TYPE.JSON\n || !resource.data.frames\n || this.resources[imageResourceName]\n )\n {\n next();\n\n return;\n }\n\n var loadOptions = {\n crossOrigin: resource.crossOrigin,\n metadata: resource.metadata.imageMetadata,\n parentResource: resource,\n };\n\n var resourcePath = SpritesheetLoader.getResourcePath(resource, this.baseUrl);\n\n // load the image for this sheet\n this.add(imageResourceName, resourcePath, loadOptions, function onImageLoad(res)\n {\n if (res.error)\n {\n next(res.error);\n\n return;\n }\n\n var spritesheet = new Spritesheet(\n res.texture.baseTexture,\n resource.data,\n resource.url\n );\n\n spritesheet.parse(function () {\n resource.spritesheet = spritesheet;\n resource.textures = spritesheet.textures;\n next();\n });\n });\n};\n\n/**\n * Get the spritesheets root path\n * @param {PIXI.LoaderResource} resource - Resource to check path\n * @param {string} baseUrl - Base root url\n */\nSpritesheetLoader.getResourcePath = function getResourcePath (resource, baseUrl)\n{\n // Prepend url path unless the resource image is a data url\n if (resource.isDataUrl)\n {\n return resource.data.meta.image;\n }\n\n return url.resolve(resource.url.replace(baseUrl, ''), resource.data.meta.image);\n};\n\nexport { Spritesheet, SpritesheetLoader };\n//# sourceMappingURL=spritesheet.es.js.map\n","/*!\n * @pixi/sprite-tiling - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/sprite-tiling is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture, TextureMatrix, ObjectRenderer, Shader, QuadUv } from '@pixi/core';\nimport { Point, Rectangle, Transform, Matrix } from '@pixi/math';\nimport { TextureCache, premultiplyTintToRgba, correctBlendMode } from '@pixi/utils';\nimport { Sprite } from '@pixi/sprite';\nimport { WRAP_MODES } from '@pixi/constants';\n\nvar tempPoint = new Point();\n\n/**\n * A tiling sprite is a fast way of rendering a tiling image\n *\n * @class\n * @extends PIXI.Sprite\n * @memberof PIXI\n */\nvar TilingSprite = /*@__PURE__*/(function (Sprite) {\n function TilingSprite(texture, width, height)\n {\n if ( width === void 0 ) width = 100;\n if ( height === void 0 ) height = 100;\n\n Sprite.call(this, texture);\n\n /**\n * Tile transform\n *\n * @member {PIXI.Transform}\n */\n this.tileTransform = new Transform();\n\n // /// private\n\n /**\n * The with of the tiling sprite\n *\n * @member {number}\n * @private\n */\n this._width = width;\n\n /**\n * The height of the tiling sprite\n *\n * @member {number}\n * @private\n */\n this._height = height;\n\n /**\n * Canvas pattern\n *\n * @type {CanvasPattern}\n * @private\n */\n this._canvasPattern = null;\n\n /**\n * matrix that is applied to UV to get the coords in Texture normalized space to coords in BaseTexture space\n *\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = texture.uvMatrix || new TextureMatrix(texture);\n\n /**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_render' method.\n *\n * @member {string}\n * @default 'tilingSprite'\n */\n this.pluginName = 'tilingSprite';\n\n /**\n * Whether or not anchor affects uvs\n *\n * @member {boolean}\n * @default false\n */\n this.uvRespectAnchor = false;\n }\n\n if ( Sprite ) TilingSprite.__proto__ = Sprite;\n TilingSprite.prototype = Object.create( Sprite && Sprite.prototype );\n TilingSprite.prototype.constructor = TilingSprite;\n\n var prototypeAccessors = { clampMargin: { configurable: true },tileScale: { configurable: true },tilePosition: { configurable: true },width: { configurable: true },height: { configurable: true } };\n /**\n * Changes frame clamping in corresponding textureTransform, shortcut\n * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas\n *\n * @default 0.5\n * @member {number}\n */\n prototypeAccessors.clampMargin.get = function ()\n {\n return this.uvMatrix.clampMargin;\n };\n\n prototypeAccessors.clampMargin.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uvMatrix.clampMargin = value;\n this.uvMatrix.update(true);\n };\n\n /**\n * The scaling of the image that is being tiled\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.tileScale.get = function ()\n {\n return this.tileTransform.scale;\n };\n\n prototypeAccessors.tileScale.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.tileTransform.scale.copyFrom(value);\n };\n\n /**\n * The offset of the image that is being tiled\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.tilePosition.get = function ()\n {\n return this.tileTransform.position;\n };\n\n prototypeAccessors.tilePosition.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.tileTransform.position.copyFrom(value);\n };\n\n /**\n * @private\n */\n TilingSprite.prototype._onTextureUpdate = function _onTextureUpdate ()\n {\n if (this.uvMatrix)\n {\n this.uvMatrix.texture = this._texture;\n }\n this._cachedTint = 0xFFFFFF;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n TilingSprite.prototype._render = function _render (renderer)\n {\n // tweak our texture temporarily..\n var texture = this._texture;\n\n if (!texture || !texture.valid)\n {\n return;\n }\n\n this.tileTransform.updateLocalTransform();\n this.uvMatrix.update();\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n renderer.plugins[this.pluginName].render(this);\n };\n\n /**\n * Updates the bounds of the tiling sprite.\n *\n * @protected\n */\n TilingSprite.prototype._calculateBounds = function _calculateBounds ()\n {\n var minX = this._width * -this._anchor._x;\n var minY = this._height * -this._anchor._y;\n var maxX = this._width * (1 - this._anchor._x);\n var maxY = this._height * (1 - this._anchor._y);\n\n this._bounds.addFrame(this.transform, minX, minY, maxX, maxY);\n };\n\n /**\n * Gets the local bounds of the sprite object.\n *\n * @param {PIXI.Rectangle} rect - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n TilingSprite.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n // we can do a fast local bounds if the sprite has no children!\n if (this.children.length === 0)\n {\n this._bounds.minX = this._width * -this._anchor._x;\n this._bounds.minY = this._height * -this._anchor._y;\n this._bounds.maxX = this._width * (1 - this._anchor._x);\n this._bounds.maxY = this._height * (1 - this._anchor._y);\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n }\n\n return Sprite.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * Checks if a point is inside this tiling sprite.\n *\n * @param {PIXI.Point} point - the point to check\n * @return {boolean} Whether or not the sprite contains the point.\n */\n TilingSprite.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, tempPoint);\n\n var width = this._width;\n var height = this._height;\n var x1 = -width * this.anchor._x;\n\n if (tempPoint.x >= x1 && tempPoint.x < x1 + width)\n {\n var y1 = -height * this.anchor._y;\n\n if (tempPoint.y >= y1 && tempPoint.y < y1 + height)\n {\n return true;\n }\n }\n\n return false;\n };\n\n /**\n * Destroys this sprite and optionally its texture and children\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well\n */\n TilingSprite.prototype.destroy = function destroy (options)\n {\n Sprite.prototype.destroy.call(this, options);\n\n this.tileTransform = null;\n this.uvMatrix = null;\n };\n\n /**\n * Helper function that creates a new tiling sprite based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source - Source to create texture from\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @return {PIXI.TilingSprite} The newly created texture\n */\n TilingSprite.from = function from (source, width, height)\n {\n return new TilingSprite(Texture.from(source), width, height);\n };\n\n /**\n * Helper function that creates a tiling sprite that will use a texture from the TextureCache based on the frameId\n * The frame ids are created when a Texture packer file has been loaded\n *\n * @static\n * @param {string} frameId - The frame Id of the texture in the cache\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @return {PIXI.TilingSprite} A new TilingSprite using a texture from the texture cache matching the frameId\n */\n TilingSprite.fromFrame = function fromFrame (frameId, width, height)\n {\n var texture = TextureCache[frameId];\n\n if (!texture)\n {\n throw new Error((\"The frameId \\\"\" + frameId + \"\\\" does not exist in the texture cache \" + (this)));\n }\n\n return new TilingSprite(texture, width, height);\n };\n\n /**\n * Helper function that creates a sprite that will contain a texture based on an image url\n * If the image is not in the texture cache it will be loaded\n *\n * @static\n * @param {string} imageId - The image url of the texture\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @param {Object} [options] - See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.TilingSprite} A new TilingSprite using a texture from the texture cache matching the image id\n */\n TilingSprite.fromImage = function fromImage (imageId, width, height, options)\n {\n // Fallback support for crossorigin, scaleMode parameters\n if (options && typeof options !== 'object')\n {\n options = {\n scaleMode: arguments[4],\n resourceOptions: {\n crossorigin: arguments[3],\n },\n };\n }\n\n return new TilingSprite(Texture.from(imageId, options), width, height);\n };\n\n /**\n * The width of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this._width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._width = value;\n };\n\n /**\n * The height of the TilingSprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this._height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._height = value;\n };\n\n Object.defineProperties( TilingSprite.prototype, prototypeAccessors );\n\n return TilingSprite;\n}(Sprite));\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform mat3 uTransform;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = (uTransform * vec3(aTextureCoord, 1.0)).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform vec4 uColor;\\nuniform mat3 uMapCoord;\\nuniform vec4 uClampFrame;\\nuniform vec2 uClampOffset;\\n\\nvoid main(void)\\n{\\n vec2 coord = mod(vTextureCoord - uClampOffset, vec2(1.0, 1.0)) + uClampOffset;\\n coord = (uMapCoord * vec3(coord, 1.0)).xy;\\n coord = clamp(coord, uClampFrame.xy, uClampFrame.zw);\\n\\n vec4 sample = texture2D(uSampler, coord);\\n gl_FragColor = sample * uColor;\\n}\\n\";\n\nvar fragmentSimple = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform vec4 uColor;\\n\\nvoid main(void)\\n{\\n vec4 sample = texture2D(uSampler, vTextureCoord);\\n gl_FragColor = sample * uColor;\\n}\\n\";\n\nvar tempMat = new Matrix();\n\n/**\n * WebGL renderer plugin for tiling sprites\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.ObjectRenderer\n */\nvar TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function TilingSpriteRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n var uniforms = { globals: this.renderer.globalUniforms };\n\n this.shader = Shader.from(vertex, fragment, uniforms);\n\n this.simpleShader = Shader.from(vertex, fragmentSimple, uniforms);\n\n this.quad = new QuadUv();\n }\n\n if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer;\n TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer;\n\n /**\n *\n * @param {PIXI.TilingSprite} ts tilingSprite to be rendered\n */\n TilingSpriteRenderer.prototype.render = function render (ts)\n {\n var renderer = this.renderer;\n var quad = this.quad;\n\n var vertices = quad.vertices;\n\n vertices[0] = vertices[6] = (ts._width) * -ts.anchor.x;\n vertices[1] = vertices[3] = ts._height * -ts.anchor.y;\n\n vertices[2] = vertices[4] = (ts._width) * (1.0 - ts.anchor.x);\n vertices[5] = vertices[7] = ts._height * (1.0 - ts.anchor.y);\n\n if (ts.uvRespectAnchor)\n {\n vertices = quad.uvs;\n\n vertices[0] = vertices[6] = -ts.anchor.x;\n vertices[1] = vertices[3] = -ts.anchor.y;\n\n vertices[2] = vertices[4] = 1.0 - ts.anchor.x;\n vertices[5] = vertices[7] = 1.0 - ts.anchor.y;\n }\n\n quad.invalidate();\n\n var tex = ts._texture;\n var baseTex = tex.baseTexture;\n var lt = ts.tileTransform.localTransform;\n var uv = ts.uvMatrix;\n var isSimple = baseTex.isPowerOfTwo\n && tex.frame.width === baseTex.width && tex.frame.height === baseTex.height;\n\n // auto, force repeat wrapMode for big tiling textures\n if (isSimple)\n {\n if (!baseTex._glTextures[renderer.CONTEXT_UID])\n {\n if (baseTex.wrapMode === WRAP_MODES.CLAMP)\n {\n baseTex.wrapMode = WRAP_MODES.REPEAT;\n }\n }\n else\n {\n isSimple = baseTex.wrapMode !== WRAP_MODES.CLAMP;\n }\n }\n\n var shader = isSimple ? this.simpleShader : this.shader;\n\n var w = tex.width;\n var h = tex.height;\n var W = ts._width;\n var H = ts._height;\n\n tempMat.set(lt.a * w / W,\n lt.b * w / H,\n lt.c * h / W,\n lt.d * h / H,\n lt.tx / W,\n lt.ty / H);\n\n // that part is the same as above:\n // tempMat.identity();\n // tempMat.scale(tex.width, tex.height);\n // tempMat.prepend(lt);\n // tempMat.scale(1.0 / ts._width, 1.0 / ts._height);\n\n tempMat.invert();\n if (isSimple)\n {\n tempMat.prepend(uv.mapCoord);\n }\n else\n {\n shader.uniforms.uMapCoord = uv.mapCoord.toArray(true);\n shader.uniforms.uClampFrame = uv.uClampFrame;\n shader.uniforms.uClampOffset = uv.uClampOffset;\n }\n\n shader.uniforms.uTransform = tempMat.toArray(true);\n shader.uniforms.uColor = premultiplyTintToRgba(ts.tint, ts.worldAlpha,\n shader.uniforms.uColor, baseTex.premultiplyAlpha);\n shader.uniforms.translationMatrix = ts.transform.worldTransform.toArray(true);\n shader.uniforms.uSampler = tex;\n\n renderer.shader.bind(shader);\n renderer.geometry.bind(quad);// , renderer.shader.getGLShader());\n\n renderer.state.setBlendMode(correctBlendMode(ts.blendMode, baseTex.premultiplyAlpha));\n renderer.geometry.draw(this.renderer.gl.TRIANGLES, 6, 0);\n };\n\n return TilingSpriteRenderer;\n}(ObjectRenderer));\n\nexport { TilingSprite, TilingSpriteRenderer };\n//# sourceMappingURL=sprite-tiling.es.js.map\n","/*!\n * @pixi/text-bitmap - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/text-bitmap is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture } from '@pixi/core';\nimport { Container } from '@pixi/display';\nimport { Point, Rectangle, ObservablePoint } from '@pixi/math';\nimport { settings } from '@pixi/settings';\nimport { Sprite } from '@pixi/sprite';\nimport { removeItems, getResolutionOfUrl } from '@pixi/utils';\nimport { LoaderResource } from '@pixi/loaders';\n\n/**\n * A BitmapText object will create a line or multiple lines of text using bitmap font.\n *\n * The primary advantage of this class over Text is that all of your textures are pre-generated and loading,\n * meaning that rendering is fast, and changing text has no performance implications.\n *\n * The primary disadvantage is that you need to preload the bitmap font assets, and thus the styling is set in stone.\n * Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters.\n *\n * To split a line you can use '\\n', '\\r' or '\\r\\n' in your string.\n *\n * You can generate the fnt files using\n * http://www.angelcode.com/products/bmfont/ for Windows or\n * http://www.bmglyph.com/ for Mac.\n *\n * A BitmapText can only be created when the font is loaded.\n *\n * ```js\n * // in this case the font is in a file called 'desyrel.fnt'\n * let bitmapText = new PIXI.BitmapText(\"text using a fancy font!\", {font: \"35px Desyrel\", align: \"right\"});\n * ```\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar BitmapText = /*@__PURE__*/(function (Container) {\n function BitmapText(text, style)\n {\n var this$1 = this;\n if ( style === void 0 ) style = {};\n\n Container.call(this);\n\n /**\n * Private tracker for the width of the overall text\n *\n * @member {number}\n * @private\n */\n this._textWidth = 0;\n\n /**\n * Private tracker for the height of the overall text\n *\n * @member {number}\n * @private\n */\n this._textHeight = 0;\n\n /**\n * Private tracker for the letter sprite pool.\n *\n * @member {PIXI.Sprite[]}\n * @private\n */\n this._glyphs = [];\n\n /**\n * Private tracker for the current style.\n *\n * @member {object}\n * @private\n */\n this._font = {\n tint: style.tint !== undefined ? style.tint : 0xFFFFFF,\n align: style.align || 'left',\n name: null,\n size: 0,\n };\n\n /**\n * Private tracker for the current font.\n *\n * @member {object}\n * @private\n */\n this.font = style.font; // run font setter\n\n /**\n * Private tracker for the current text.\n *\n * @member {string}\n * @private\n */\n this._text = text;\n\n /**\n * The max width of this bitmap text in pixels. If the text provided is longer than the\n * value provided, line breaks will be automatically inserted in the last whitespace.\n * Disable by setting value to 0\n *\n * @member {number}\n * @private\n */\n this._maxWidth = 0;\n\n /**\n * The max line height. This is useful when trying to use the total height of the Text,\n * ie: when trying to vertically align.\n *\n * @member {number}\n * @private\n */\n this._maxLineHeight = 0;\n\n /**\n * Letter spacing. This is useful for setting the space between characters.\n * @member {number}\n * @private\n */\n this._letterSpacing = 0;\n\n /**\n * Text anchor. read-only\n *\n * @member {PIXI.ObservablePoint}\n * @private\n */\n this._anchor = new ObservablePoint(function () { this$1.dirty = true; }, this, 0, 0);\n\n /**\n * The dirty state of this object.\n *\n * @member {boolean}\n */\n this.dirty = false;\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n this.roundPixels = settings.ROUND_PIXELS;\n\n this.updateText();\n }\n\n if ( Container ) BitmapText.__proto__ = Container;\n BitmapText.prototype = Object.create( Container && Container.prototype );\n BitmapText.prototype.constructor = BitmapText;\n\n var prototypeAccessors = { tint: { configurable: true },align: { configurable: true },anchor: { configurable: true },font: { configurable: true },text: { configurable: true },maxWidth: { configurable: true },maxLineHeight: { configurable: true },textWidth: { configurable: true },letterSpacing: { configurable: true },textHeight: { configurable: true } };\n\n /**\n * Renders text and updates it when needed\n *\n * @private\n */\n BitmapText.prototype.updateText = function updateText ()\n {\n var data = BitmapText.fonts[this._font.name];\n var scale = this._font.size / data.size;\n var pos = new Point();\n var chars = [];\n var lineWidths = [];\n var text = this._text.replace(/(?:\\r\\n|\\r)/g, '\\n') || ' ';\n var textLength = text.length;\n var maxWidth = this._maxWidth * data.size / this._font.size;\n\n var prevCharCode = null;\n var lastLineWidth = 0;\n var maxLineWidth = 0;\n var line = 0;\n var lastBreakPos = -1;\n var lastBreakWidth = 0;\n var spacesRemoved = 0;\n var maxLineHeight = 0;\n\n for (var i = 0; i < textLength; i++)\n {\n var charCode = text.charCodeAt(i);\n var char = text.charAt(i);\n\n if ((/(?:\\s)/).test(char))\n {\n lastBreakPos = i;\n lastBreakWidth = lastLineWidth;\n }\n\n if (char === '\\r' || char === '\\n')\n {\n lineWidths.push(lastLineWidth);\n maxLineWidth = Math.max(maxLineWidth, lastLineWidth);\n ++line;\n ++spacesRemoved;\n\n pos.x = 0;\n pos.y += data.lineHeight;\n prevCharCode = null;\n continue;\n }\n\n var charData = data.chars[charCode];\n\n if (!charData)\n {\n continue;\n }\n\n if (prevCharCode && charData.kerning[prevCharCode])\n {\n pos.x += charData.kerning[prevCharCode];\n }\n\n chars.push({\n texture: charData.texture,\n line: line,\n charCode: charCode,\n position: new Point(pos.x + charData.xOffset + (this._letterSpacing / 2), pos.y + charData.yOffset),\n });\n pos.x += charData.xAdvance + this._letterSpacing;\n lastLineWidth = pos.x;\n maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height));\n prevCharCode = charCode;\n\n if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth)\n {\n ++spacesRemoved;\n removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos);\n i = lastBreakPos;\n lastBreakPos = -1;\n\n lineWidths.push(lastBreakWidth);\n maxLineWidth = Math.max(maxLineWidth, lastBreakWidth);\n line++;\n\n pos.x = 0;\n pos.y += data.lineHeight;\n prevCharCode = null;\n }\n }\n\n var lastChar = text.charAt(text.length - 1);\n\n if (lastChar !== '\\r' && lastChar !== '\\n')\n {\n if ((/(?:\\s)/).test(lastChar))\n {\n lastLineWidth = lastBreakWidth;\n }\n\n lineWidths.push(lastLineWidth);\n maxLineWidth = Math.max(maxLineWidth, lastLineWidth);\n }\n\n var lineAlignOffsets = [];\n\n for (var i$1 = 0; i$1 <= line; i$1++)\n {\n var alignOffset = 0;\n\n if (this._font.align === 'right')\n {\n alignOffset = maxLineWidth - lineWidths[i$1];\n }\n else if (this._font.align === 'center')\n {\n alignOffset = (maxLineWidth - lineWidths[i$1]) / 2;\n }\n\n lineAlignOffsets.push(alignOffset);\n }\n\n var lenChars = chars.length;\n var tint = this.tint;\n\n for (var i$2 = 0; i$2 < lenChars; i$2++)\n {\n var c = this._glyphs[i$2]; // get the next glyph sprite\n\n if (c)\n {\n c.texture = chars[i$2].texture;\n }\n else\n {\n c = new Sprite(chars[i$2].texture);\n c.roundPixels = this.roundPixels;\n this._glyphs.push(c);\n }\n\n c.position.x = (chars[i$2].position.x + lineAlignOffsets[chars[i$2].line]) * scale;\n c.position.y = chars[i$2].position.y * scale;\n c.scale.x = c.scale.y = scale;\n c.tint = tint;\n\n if (!c.parent)\n {\n this.addChild(c);\n }\n }\n\n // remove unnecessary children.\n for (var i$3 = lenChars; i$3 < this._glyphs.length; ++i$3)\n {\n this.removeChild(this._glyphs[i$3]);\n }\n\n this._textWidth = maxLineWidth * scale;\n this._textHeight = (pos.y + data.lineHeight) * scale;\n\n // apply anchor\n if (this.anchor.x !== 0 || this.anchor.y !== 0)\n {\n for (var i$4 = 0; i$4 < lenChars; i$4++)\n {\n this._glyphs[i$4].x -= this._textWidth * this.anchor.x;\n this._glyphs[i$4].y -= this._textHeight * this.anchor.y;\n }\n }\n this._maxLineHeight = maxLineHeight * scale;\n };\n\n /**\n * Updates the transform of this object\n *\n * @private\n */\n BitmapText.prototype.updateTransform = function updateTransform ()\n {\n this.validate();\n this.containerUpdateTransform();\n };\n\n /**\n * Validates text before calling parent's getLocalBounds\n *\n * @return {PIXI.Rectangle} The rectangular bounding area\n */\n BitmapText.prototype.getLocalBounds = function getLocalBounds ()\n {\n this.validate();\n\n return Container.prototype.getLocalBounds.call(this);\n };\n\n /**\n * Updates text when needed\n *\n * @private\n */\n BitmapText.prototype.validate = function validate ()\n {\n if (this.dirty)\n {\n this.updateText();\n this.dirty = false;\n }\n };\n\n /**\n * The tint of the BitmapText object.\n *\n * @member {number}\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._font.tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._font.tint = (typeof value === 'number' && value >= 0) ? value : 0xFFFFFF;\n\n this.dirty = true;\n };\n\n /**\n * The alignment of the BitmapText object.\n *\n * @member {string}\n * @default 'left'\n */\n prototypeAccessors.align.get = function ()\n {\n return this._font.align;\n };\n\n prototypeAccessors.align.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._font.align = value || 'left';\n\n this.dirty = true;\n };\n\n /**\n * The anchor sets the origin point of the text.\n *\n * The default is `(0,0)`, this means the text's origin is the top left.\n *\n * Setting the anchor to `(0.5,0.5)` means the text's origin is centered.\n *\n * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner.\n *\n * @member {PIXI.Point | number}\n */\n prototypeAccessors.anchor.get = function ()\n {\n return this._anchor;\n };\n\n prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (typeof value === 'number')\n {\n this._anchor.set(value);\n }\n else\n {\n this._anchor.copyFrom(value);\n }\n };\n\n /**\n * The font descriptor of the BitmapText object.\n *\n * @member {object}\n */\n prototypeAccessors.font.get = function ()\n {\n return this._font;\n };\n\n prototypeAccessors.font.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (!value)\n {\n return;\n }\n\n if (typeof value === 'string')\n {\n value = value.split(' ');\n\n this._font.name = value.length === 1 ? value[0] : value.slice(1).join(' ');\n this._font.size = value.length >= 2 ? parseInt(value[0], 10) : BitmapText.fonts[this._font.name].size;\n }\n else\n {\n this._font.name = value.name;\n this._font.size = typeof value.size === 'number' ? value.size : parseInt(value.size, 10);\n }\n\n this.dirty = true;\n };\n\n /**\n * The text of the BitmapText object.\n *\n * @member {string}\n */\n prototypeAccessors.text.get = function ()\n {\n return this._text;\n };\n\n prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc\n {\n text = String(text === null || text === undefined ? '' : text);\n\n if (this._text === text)\n {\n return;\n }\n this._text = text;\n this.dirty = true;\n };\n\n /**\n * The max width of this bitmap text in pixels. If the text provided is longer than the\n * value provided, line breaks will be automatically inserted in the last whitespace.\n * Disable by setting the value to 0.\n *\n * @member {number}\n */\n prototypeAccessors.maxWidth.get = function ()\n {\n return this._maxWidth;\n };\n\n prototypeAccessors.maxWidth.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._maxWidth === value)\n {\n return;\n }\n this._maxWidth = value;\n this.dirty = true;\n };\n\n /**\n * The max line height. This is useful when trying to use the total height of the Text,\n * i.e. when trying to vertically align.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.maxLineHeight.get = function ()\n {\n this.validate();\n\n return this._maxLineHeight;\n };\n\n /**\n * The width of the overall text, different from fontSize,\n * which is defined in the style object.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.textWidth.get = function ()\n {\n this.validate();\n\n return this._textWidth;\n };\n\n /**\n * Additional space between characters.\n *\n * @member {number}\n */\n prototypeAccessors.letterSpacing.get = function ()\n {\n return this._letterSpacing;\n };\n\n prototypeAccessors.letterSpacing.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._letterSpacing !== value)\n {\n this._letterSpacing = value;\n this.dirty = true;\n }\n };\n\n /**\n * The height of the overall text, different from fontSize,\n * which is defined in the style object.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.textHeight.get = function ()\n {\n this.validate();\n\n return this._textHeight;\n };\n\n /**\n * Register a bitmap font with data and a texture.\n *\n * @static\n * @param {XMLDocument} xml - The XML document data.\n * @param {Object.|PIXI.Texture|PIXI.Texture[]} textures - List of textures for each page.\n * If providing an object, the key is the `` element's `file` attribute in the FNT file.\n * @return {Object} Result font object with font, size, lineHeight and char fields.\n */\n BitmapText.registerFont = function registerFont (xml, textures)\n {\n var data = {};\n var info = xml.getElementsByTagName('info')[0];\n var common = xml.getElementsByTagName('common')[0];\n var pages = xml.getElementsByTagName('page');\n var res = getResolutionOfUrl(pages[0].getAttribute('file'), settings.RESOLUTION);\n var pagesTextures = {};\n\n data.font = info.getAttribute('face');\n data.size = parseInt(info.getAttribute('size'), 10);\n data.lineHeight = parseInt(common.getAttribute('lineHeight'), 10) / res;\n data.chars = {};\n\n // Single texture, convert to list\n if (textures instanceof Texture)\n {\n textures = [textures];\n }\n\n // Convert the input Texture, Textures or object\n // into a page Texture lookup by \"id\"\n for (var i = 0; i < pages.length; i++)\n {\n var id = pages[i].getAttribute('id');\n var file = pages[i].getAttribute('file');\n\n pagesTextures[id] = textures instanceof Array ? textures[i] : textures[file];\n }\n\n // parse letters\n var letters = xml.getElementsByTagName('char');\n\n for (var i$1 = 0; i$1 < letters.length; i$1++)\n {\n var letter = letters[i$1];\n var charCode = parseInt(letter.getAttribute('id'), 10);\n var page = letter.getAttribute('page') || 0;\n var textureRect = new Rectangle(\n (parseInt(letter.getAttribute('x'), 10) / res) + (pagesTextures[page].frame.x / res),\n (parseInt(letter.getAttribute('y'), 10) / res) + (pagesTextures[page].frame.y / res),\n parseInt(letter.getAttribute('width'), 10) / res,\n parseInt(letter.getAttribute('height'), 10) / res\n );\n\n data.chars[charCode] = {\n xOffset: parseInt(letter.getAttribute('xoffset'), 10) / res,\n yOffset: parseInt(letter.getAttribute('yoffset'), 10) / res,\n xAdvance: parseInt(letter.getAttribute('xadvance'), 10) / res,\n kerning: {},\n texture: new Texture(pagesTextures[page].baseTexture, textureRect),\n page: page,\n };\n }\n\n // parse kernings\n var kernings = xml.getElementsByTagName('kerning');\n\n for (var i$2 = 0; i$2 < kernings.length; i$2++)\n {\n var kerning = kernings[i$2];\n var first = parseInt(kerning.getAttribute('first'), 10) / res;\n var second = parseInt(kerning.getAttribute('second'), 10) / res;\n var amount = parseInt(kerning.getAttribute('amount'), 10) / res;\n\n if (data.chars[second])\n {\n data.chars[second].kerning[first] = amount;\n }\n }\n\n // I'm leaving this as a temporary fix so we can test the bitmap fonts in v3\n // but it's very likely to change\n BitmapText.fonts[data.font] = data;\n\n return data;\n };\n\n Object.defineProperties( BitmapText.prototype, prototypeAccessors );\n\n return BitmapText;\n}(Container));\n\nBitmapText.fonts = {};\n\n/**\n * {@link PIXI.Loader Loader} middleware for loading\n * bitmap-based fonts suitable for using with {@link PIXI.BitmapText}.\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar BitmapFontLoader = function BitmapFontLoader () {};\n\nBitmapFontLoader.parse = function parse (resource, texture)\n{\n resource.bitmapFont = BitmapText.registerFont(resource.data, texture);\n};\n\n/**\n * Called when the plugin is installed.\n *\n * @see PIXI.Loader.registerPlugin\n */\nBitmapFontLoader.add = function add ()\n{\n LoaderResource.setExtensionXhrType('fnt', LoaderResource.XHR_RESPONSE_TYPE.DOCUMENT);\n};\n\n/**\n * Replacement for NodeJS's path.dirname\n * @private\n * @param {string} url Path to get directory for\n */\nBitmapFontLoader.dirname = function dirname (url)\n{\n var dir = url\n .replace(/\\/$/, '') // replace trailing slash\n .replace(/\\/[^\\/]*$/, ''); // remove everything after the last\n\n // File request is relative, use current directory\n if (dir === url)\n {\n return '.';\n }\n // Started with a slash\n else if (dir === '')\n {\n return '/';\n }\n\n return dir;\n};\n\n/**\n * Called after a resource is loaded.\n * @see PIXI.Loader.loaderMiddleware\n * @param {PIXI.LoaderResource} resource\n * @param {function} next\n */\nBitmapFontLoader.use = function use (resource, next)\n{\n // skip if no data or not xml data\n if (!resource.data || resource.type !== LoaderResource.TYPE.XML)\n {\n next();\n\n return;\n }\n\n // skip if not bitmap font data, using some silly duck-typing\n if (resource.data.getElementsByTagName('page').length === 0\n || resource.data.getElementsByTagName('info').length === 0\n || resource.data.getElementsByTagName('info')[0].getAttribute('face') === null\n )\n {\n next();\n\n return;\n }\n\n var xmlUrl = !resource.isDataUrl ? BitmapFontLoader.dirname(resource.url) : '';\n\n if (resource.isDataUrl)\n {\n if (xmlUrl === '.')\n {\n xmlUrl = '';\n }\n\n if (this.baseUrl && xmlUrl)\n {\n // if baseurl has a trailing slash then add one to xmlUrl so the replace works below\n if (this.baseUrl.charAt(this.baseUrl.length - 1) === '/')\n {\n xmlUrl += '/';\n }\n }\n }\n\n // remove baseUrl from xmlUrl\n xmlUrl = xmlUrl.replace(this.baseUrl, '');\n\n // if there is an xmlUrl now, it needs a trailing slash. Ensure that it does if the string isn't empty.\n if (xmlUrl && xmlUrl.charAt(xmlUrl.length - 1) !== '/')\n {\n xmlUrl += '/';\n }\n\n var pages = resource.data.getElementsByTagName('page');\n var textures = {};\n\n // Handle completed, when the number of textures\n // load is the same number as references in the fnt file\n var completed = function (page) {\n textures[page.metadata.pageFile] = page.texture;\n\n if (Object.keys(textures).length === pages.length)\n {\n BitmapFontLoader.parse(resource, textures);\n next();\n }\n };\n\n for (var i = 0; i < pages.length; ++i)\n {\n var pageFile = pages[i].getAttribute('file');\n var url = xmlUrl + pageFile;\n var exists = false;\n\n // incase the image is loaded outside\n // using the same loader, resource will be available\n for (var name in this.resources)\n {\n var bitmapResource = this.resources[name];\n\n if (bitmapResource.url === url)\n {\n bitmapResource.metadata.pageFile = pageFile;\n if (bitmapResource.texture)\n {\n completed(bitmapResource);\n }\n else\n {\n bitmapResource.onAfterMiddleware.add(completed);\n }\n exists = true;\n break;\n }\n }\n\n // texture is not loaded, we'll attempt to add\n // it to the load and add the texture to the list\n if (!exists)\n {\n // Standard loading options for images\n var options = {\n crossOrigin: resource.crossOrigin,\n loadType: LoaderResource.LOAD_TYPE.IMAGE,\n metadata: Object.assign(\n { pageFile: pageFile },\n resource.metadata.imageMetadata\n ),\n parentResource: resource,\n };\n\n this.add(url, options, completed);\n }\n }\n};\n\nexport { BitmapFontLoader, BitmapText };\n//# sourceMappingURL=text-bitmap.es.js.map\n","/*!\n * @pixi/filter-color-matrix - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/filter-color-matrix is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Filter, defaultFilterVertex } from '@pixi/core';\n\nvar fragment = \"varying vec2 vTextureCoord;\\nuniform sampler2D uSampler;\\nuniform float m[20];\\nuniform float uAlpha;\\n\\nvoid main(void)\\n{\\n vec4 c = texture2D(uSampler, vTextureCoord);\\n\\n if (uAlpha == 0.0) {\\n gl_FragColor = c;\\n return;\\n }\\n\\n // Un-premultiply alpha before applying the color matrix. See issue #3539.\\n if (c.a > 0.0) {\\n c.rgb /= c.a;\\n }\\n\\n vec4 result;\\n\\n result.r = (m[0] * c.r);\\n result.r += (m[1] * c.g);\\n result.r += (m[2] * c.b);\\n result.r += (m[3] * c.a);\\n result.r += m[4];\\n\\n result.g = (m[5] * c.r);\\n result.g += (m[6] * c.g);\\n result.g += (m[7] * c.b);\\n result.g += (m[8] * c.a);\\n result.g += m[9];\\n\\n result.b = (m[10] * c.r);\\n result.b += (m[11] * c.g);\\n result.b += (m[12] * c.b);\\n result.b += (m[13] * c.a);\\n result.b += m[14];\\n\\n result.a = (m[15] * c.r);\\n result.a += (m[16] * c.g);\\n result.a += (m[17] * c.b);\\n result.a += (m[18] * c.a);\\n result.a += m[19];\\n\\n vec3 rgb = mix(c.rgb, result.rgb, uAlpha);\\n\\n // Premultiply alpha again.\\n rgb *= result.a;\\n\\n gl_FragColor = vec4(rgb, result.a);\\n}\\n\";\n\n/**\n * The ColorMatrixFilter class lets you apply a 5x4 matrix transformation on the RGBA\n * color and alpha values of every pixel on your displayObject to produce a result\n * with a new set of RGBA color and alpha values. It's pretty powerful!\n *\n * ```js\n * let colorMatrix = new PIXI.filters.ColorMatrixFilter();\n * container.filters = [colorMatrix];\n * colorMatrix.contrast(2);\n * ```\n * @author Clément Chenebault \n * @class\n * @extends PIXI.Filter\n * @memberof PIXI.filters\n */\nvar ColorMatrixFilter = /*@__PURE__*/(function (Filter) {\n function ColorMatrixFilter()\n {\n var uniforms = {\n m: new Float32Array([1, 0, 0, 0, 0,\n 0, 1, 0, 0, 0,\n 0, 0, 1, 0, 0,\n 0, 0, 0, 1, 0]),\n uAlpha: 1,\n };\n\n Filter.call(this, defaultFilterVertex, fragment, uniforms);\n\n this.alpha = 1;\n }\n\n if ( Filter ) ColorMatrixFilter.__proto__ = Filter;\n ColorMatrixFilter.prototype = Object.create( Filter && Filter.prototype );\n ColorMatrixFilter.prototype.constructor = ColorMatrixFilter;\n\n var prototypeAccessors = { matrix: { configurable: true },alpha: { configurable: true } };\n\n /**\n * Transforms current matrix and set the new one\n *\n * @param {number[]} matrix - 5x4 matrix\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype._loadMatrix = function _loadMatrix (matrix, multiply)\n {\n if ( multiply === void 0 ) multiply = false;\n\n var newMatrix = matrix;\n\n if (multiply)\n {\n this._multiply(newMatrix, this.uniforms.m, matrix);\n newMatrix = this._colorMatrix(newMatrix);\n }\n\n // set the new matrix\n this.uniforms.m = newMatrix;\n };\n\n /**\n * Multiplies two mat5's\n *\n * @private\n * @param {number[]} out - 5x4 matrix the receiving matrix\n * @param {number[]} a - 5x4 matrix the first operand\n * @param {number[]} b - 5x4 matrix the second operand\n * @returns {number[]} 5x4 matrix\n */\n ColorMatrixFilter.prototype._multiply = function _multiply (out, a, b)\n {\n // Red Channel\n out[0] = (a[0] * b[0]) + (a[1] * b[5]) + (a[2] * b[10]) + (a[3] * b[15]);\n out[1] = (a[0] * b[1]) + (a[1] * b[6]) + (a[2] * b[11]) + (a[3] * b[16]);\n out[2] = (a[0] * b[2]) + (a[1] * b[7]) + (a[2] * b[12]) + (a[3] * b[17]);\n out[3] = (a[0] * b[3]) + (a[1] * b[8]) + (a[2] * b[13]) + (a[3] * b[18]);\n out[4] = (a[0] * b[4]) + (a[1] * b[9]) + (a[2] * b[14]) + (a[3] * b[19]) + a[4];\n\n // Green Channel\n out[5] = (a[5] * b[0]) + (a[6] * b[5]) + (a[7] * b[10]) + (a[8] * b[15]);\n out[6] = (a[5] * b[1]) + (a[6] * b[6]) + (a[7] * b[11]) + (a[8] * b[16]);\n out[7] = (a[5] * b[2]) + (a[6] * b[7]) + (a[7] * b[12]) + (a[8] * b[17]);\n out[8] = (a[5] * b[3]) + (a[6] * b[8]) + (a[7] * b[13]) + (a[8] * b[18]);\n out[9] = (a[5] * b[4]) + (a[6] * b[9]) + (a[7] * b[14]) + (a[8] * b[19]) + a[9];\n\n // Blue Channel\n out[10] = (a[10] * b[0]) + (a[11] * b[5]) + (a[12] * b[10]) + (a[13] * b[15]);\n out[11] = (a[10] * b[1]) + (a[11] * b[6]) + (a[12] * b[11]) + (a[13] * b[16]);\n out[12] = (a[10] * b[2]) + (a[11] * b[7]) + (a[12] * b[12]) + (a[13] * b[17]);\n out[13] = (a[10] * b[3]) + (a[11] * b[8]) + (a[12] * b[13]) + (a[13] * b[18]);\n out[14] = (a[10] * b[4]) + (a[11] * b[9]) + (a[12] * b[14]) + (a[13] * b[19]) + a[14];\n\n // Alpha Channel\n out[15] = (a[15] * b[0]) + (a[16] * b[5]) + (a[17] * b[10]) + (a[18] * b[15]);\n out[16] = (a[15] * b[1]) + (a[16] * b[6]) + (a[17] * b[11]) + (a[18] * b[16]);\n out[17] = (a[15] * b[2]) + (a[16] * b[7]) + (a[17] * b[12]) + (a[18] * b[17]);\n out[18] = (a[15] * b[3]) + (a[16] * b[8]) + (a[17] * b[13]) + (a[18] * b[18]);\n out[19] = (a[15] * b[4]) + (a[16] * b[9]) + (a[17] * b[14]) + (a[18] * b[19]) + a[19];\n\n return out;\n };\n\n /**\n * Create a Float32 Array and normalize the offset component to 0-1\n *\n * @private\n * @param {number[]} matrix - 5x4 matrix\n * @return {number[]} 5x4 matrix with all values between 0-1\n */\n ColorMatrixFilter.prototype._colorMatrix = function _colorMatrix (matrix)\n {\n // Create a Float32 Array and normalize the offset component to 0-1\n var m = new Float32Array(matrix);\n\n m[4] /= 255;\n m[9] /= 255;\n m[14] /= 255;\n m[19] /= 255;\n\n return m;\n };\n\n /**\n * Adjusts brightness\n *\n * @param {number} b - value of the brigthness (0-1, where 0 is black)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.brightness = function brightness (b, multiply)\n {\n var matrix = [\n b, 0, 0, 0, 0,\n 0, b, 0, 0, 0,\n 0, 0, b, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the matrices in grey scales\n *\n * @param {number} scale - value of the grey (0-1, where 0 is black)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.greyscale = function greyscale (scale, multiply)\n {\n var matrix = [\n scale, scale, scale, 0, 0,\n scale, scale, scale, 0, 0,\n scale, scale, scale, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the black and white matrice.\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.blackAndWhite = function blackAndWhite (multiply)\n {\n var matrix = [\n 0.3, 0.6, 0.1, 0, 0,\n 0.3, 0.6, 0.1, 0, 0,\n 0.3, 0.6, 0.1, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the hue property of the color\n *\n * @param {number} rotation - in degrees\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.hue = function hue (rotation, multiply)\n {\n rotation = (rotation || 0) / 180 * Math.PI;\n\n var cosR = Math.cos(rotation);\n var sinR = Math.sin(rotation);\n var sqrt = Math.sqrt;\n\n /* a good approximation for hue rotation\n This matrix is far better than the versions with magic luminance constants\n formerly used here, but also used in the starling framework (flash) and known from this\n old part of the internet: quasimondo.com/archives/000565.php\n\n This new matrix is based on rgb cube rotation in space. Look here for a more descriptive\n implementation as a shader not a general matrix:\n https://github.com/evanw/glfx.js/blob/58841c23919bd59787effc0333a4897b43835412/src/filters/adjust/huesaturation.js\n\n This is the source for the code:\n see http://stackoverflow.com/questions/8507885/shift-hue-of-an-rgb-color/8510751#8510751\n */\n\n var w = 1 / 3;\n var sqrW = sqrt(w); // weight is\n\n var a00 = cosR + ((1.0 - cosR) * w);\n var a01 = (w * (1.0 - cosR)) - (sqrW * sinR);\n var a02 = (w * (1.0 - cosR)) + (sqrW * sinR);\n\n var a10 = (w * (1.0 - cosR)) + (sqrW * sinR);\n var a11 = cosR + (w * (1.0 - cosR));\n var a12 = (w * (1.0 - cosR)) - (sqrW * sinR);\n\n var a20 = (w * (1.0 - cosR)) - (sqrW * sinR);\n var a21 = (w * (1.0 - cosR)) + (sqrW * sinR);\n var a22 = cosR + (w * (1.0 - cosR));\n\n var matrix = [\n a00, a01, a02, 0, 0,\n a10, a11, a12, 0, 0,\n a20, a21, a22, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the contrast matrix, increase the separation between dark and bright\n * Increase contrast : shadows darker and highlights brighter\n * Decrease contrast : bring the shadows up and the highlights down\n *\n * @param {number} amount - value of the contrast (0-1)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.contrast = function contrast (amount, multiply)\n {\n var v = (amount || 0) + 1;\n var o = -0.5 * (v - 1);\n\n var matrix = [\n v, 0, 0, 0, o,\n 0, v, 0, 0, o,\n 0, 0, v, 0, o,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the saturation matrix, increase the separation between colors\n * Increase saturation : increase contrast, brightness, and sharpness\n *\n * @param {number} amount - The saturation amount (0-1)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.saturate = function saturate (amount, multiply)\n {\n if ( amount === void 0 ) amount = 0;\n\n var x = (amount * 2 / 3) + 1;\n var y = ((x - 1) * -0.5);\n\n var matrix = [\n x, y, y, 0, 0,\n y, x, y, 0, 0,\n y, y, x, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Desaturate image (remove color)\n *\n * Call the saturate function\n *\n */\n ColorMatrixFilter.prototype.desaturate = function desaturate () // eslint-disable-line no-unused-vars\n {\n this.saturate(-1);\n };\n\n /**\n * Negative image (inverse of classic rgb matrix)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.negative = function negative (multiply)\n {\n var matrix = [\n -1, 0, 0, 1, 0,\n 0, -1, 0, 1, 0,\n 0, 0, -1, 1, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Sepia image\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.sepia = function sepia (multiply)\n {\n var matrix = [\n 0.393, 0.7689999, 0.18899999, 0, 0,\n 0.349, 0.6859999, 0.16799999, 0, 0,\n 0.272, 0.5339999, 0.13099999, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Color motion picture process invented in 1916 (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.technicolor = function technicolor (multiply)\n {\n var matrix = [\n 1.9125277891456083, -0.8545344976951645, -0.09155508482755585, 0, 11.793603434377337,\n -0.3087833385928097, 1.7658908555458428, -0.10601743074722245, 0, -70.35205161461398,\n -0.231103377548616, -0.7501899197440212, 1.847597816108189, 0, 30.950940869491138,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Polaroid filter\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.polaroid = function polaroid (multiply)\n {\n var matrix = [\n 1.438, -0.062, -0.062, 0, 0,\n -0.122, 1.378, -0.122, 0, 0,\n -0.016, -0.016, 1.483, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Filter who transforms : Red -> Blue and Blue -> Red\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.toBGR = function toBGR (multiply)\n {\n var matrix = [\n 0, 0, 1, 0, 0,\n 0, 1, 0, 0, 0,\n 1, 0, 0, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Color reversal film introduced by Eastman Kodak in 1935. (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.kodachrome = function kodachrome (multiply)\n {\n var matrix = [\n 1.1285582396593525, -0.3967382283601348, -0.03992559172921793, 0, 63.72958762196502,\n -0.16404339962244616, 1.0835251566291304, -0.05498805115633132, 0, 24.732407896706203,\n -0.16786010706155763, -0.5603416277695248, 1.6014850761964943, 0, 35.62982807460946,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Brown delicious browni filter (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.browni = function browni (multiply)\n {\n var matrix = [\n 0.5997023498159715, 0.34553243048391263, -0.2708298674538042, 0, 47.43192855600873,\n -0.037703249837783157, 0.8609577587992641, 0.15059552388459913, 0, -36.96841498319127,\n 0.24113635128153335, -0.07441037908422492, 0.44972182064877153, 0, -7.562075277591283,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Vintage filter (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.vintage = function vintage (multiply)\n {\n var matrix = [\n 0.6279345635605994, 0.3202183420819367, -0.03965408211312453, 0, 9.651285835294123,\n 0.02578397704808868, 0.6441188644374771, 0.03259127616149294, 0, 7.462829176470591,\n 0.0466055556782719, -0.0851232987247891, 0.5241648018700465, 0, 5.159190588235296,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * We don't know exactly what it does, kind of gradient map, but funny to play with!\n *\n * @param {number} desaturation - Tone values.\n * @param {number} toned - Tone values.\n * @param {string} lightColor - Tone values, example: `0xFFE580`\n * @param {string} darkColor - Tone values, example: `0xFFE580`\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.colorTone = function colorTone (desaturation, toned, lightColor, darkColor, multiply)\n {\n desaturation = desaturation || 0.2;\n toned = toned || 0.15;\n lightColor = lightColor || 0xFFE580;\n darkColor = darkColor || 0x338000;\n\n var lR = ((lightColor >> 16) & 0xFF) / 255;\n var lG = ((lightColor >> 8) & 0xFF) / 255;\n var lB = (lightColor & 0xFF) / 255;\n\n var dR = ((darkColor >> 16) & 0xFF) / 255;\n var dG = ((darkColor >> 8) & 0xFF) / 255;\n var dB = (darkColor & 0xFF) / 255;\n\n var matrix = [\n 0.3, 0.59, 0.11, 0, 0,\n lR, lG, lB, desaturation, 0,\n dR, dG, dB, toned, 0,\n lR - dR, lG - dG, lB - dB, 0, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Night effect\n *\n * @param {number} intensity - The intensity of the night effect.\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.night = function night (intensity, multiply)\n {\n intensity = intensity || 0.1;\n var matrix = [\n intensity * (-2.0), -intensity, 0, 0, 0,\n -intensity, 0, intensity, 0, 0,\n 0, intensity, intensity * 2.0, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Predator effect\n *\n * Erase the current matrix by setting a new indepent one\n *\n * @param {number} amount - how much the predator feels his future victim\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.predator = function predator (amount, multiply)\n {\n var matrix = [\n // row 1\n 11.224130630493164 * amount,\n -4.794486999511719 * amount,\n -2.8746118545532227 * amount,\n 0 * amount,\n 0.40342438220977783 * amount,\n // row 2\n -3.6330697536468506 * amount,\n 9.193157196044922 * amount,\n -2.951810836791992 * amount,\n 0 * amount,\n -1.316135048866272 * amount,\n // row 3\n -3.2184197902679443 * amount,\n -4.2375030517578125 * amount,\n 7.476448059082031 * amount,\n 0 * amount,\n 0.8044459223747253 * amount,\n // row 4\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * LSD effect\n *\n * Multiply the current matrix\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.lsd = function lsd (multiply)\n {\n var matrix = [\n 2, -0.4, 0.5, 0, 0,\n -0.5, 2, -0.4, 0, 0,\n -0.4, -0.5, 3, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Erase the current matrix by setting the default one\n *\n */\n ColorMatrixFilter.prototype.reset = function reset ()\n {\n var matrix = [\n 1, 0, 0, 0, 0,\n 0, 1, 0, 0, 0,\n 0, 0, 1, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, false);\n };\n\n /**\n * The matrix of the color matrix filter\n *\n * @member {number[]}\n * @default [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]\n */\n prototypeAccessors.matrix.get = function ()\n {\n return this.uniforms.m;\n };\n\n prototypeAccessors.matrix.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uniforms.m = value;\n };\n\n /**\n * The opacity value to use when mixing the original and resultant colors.\n *\n * When the value is 0, the original color is used without modification.\n * When the value is 1, the result color is used.\n * When in the range (0, 1) the color is interpolated between the original and result by this amount.\n *\n * @member {number}\n * @default 1\n */\n prototypeAccessors.alpha.get = function ()\n {\n return this.uniforms.uAlpha;\n };\n\n prototypeAccessors.alpha.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uniforms.uAlpha = value;\n };\n\n Object.defineProperties( ColorMatrixFilter.prototype, prototypeAccessors );\n\n return ColorMatrixFilter;\n}(Filter));\n\n// Americanized alias\nColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale;\n\nexport { ColorMatrixFilter };\n//# sourceMappingURL=filter-color-matrix.es.js.map\n","/*!\n * @pixi/mixin-cache-as-bitmap - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/mixin-cache-as-bitmap is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { RenderTexture, BaseTexture, Texture } from '@pixi/core';\nimport { Sprite } from '@pixi/sprite';\nimport { DisplayObject } from '@pixi/display';\nimport { Matrix } from '@pixi/math';\nimport { uid } from '@pixi/utils';\nimport { settings } from '@pixi/settings';\n\nvar _tempMatrix = new Matrix();\n\nDisplayObject.prototype._cacheAsBitmap = false;\nDisplayObject.prototype._cacheData = false;\n\n// figured theres no point adding ALL the extra variables to prototype.\n// this model can hold the information needed. This can also be generated on demand as\n// most objects are not cached as bitmaps.\n/**\n * @class\n * @ignore\n */\nvar CacheData = function CacheData()\n{\n this.textureCacheId = null;\n\n this.originalRender = null;\n this.originalRenderCanvas = null;\n this.originalCalculateBounds = null;\n this.originalGetLocalBounds = null;\n\n this.originalUpdateTransform = null;\n this.originalHitTest = null;\n this.originalDestroy = null;\n this.originalMask = null;\n this.originalFilterArea = null;\n this.sprite = null;\n};\n\nObject.defineProperties(DisplayObject.prototype, {\n /**\n * Set this to true if you want this display object to be cached as a bitmap.\n * This basically takes a snap shot of the display object as it is at that moment. It can\n * provide a performance benefit for complex static displayObjects.\n * To remove simply set this property to `false`\n *\n * IMPORTANT GOTCHA - Make sure that all your textures are preloaded BEFORE setting this property to true\n * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n cacheAsBitmap: {\n get: function get()\n {\n return this._cacheAsBitmap;\n },\n set: function set(value)\n {\n if (this._cacheAsBitmap === value)\n {\n return;\n }\n\n this._cacheAsBitmap = value;\n\n var data;\n\n if (value)\n {\n if (!this._cacheData)\n {\n this._cacheData = new CacheData();\n }\n\n data = this._cacheData;\n\n data.originalRender = this.render;\n data.originalRenderCanvas = this.renderCanvas;\n\n data.originalUpdateTransform = this.updateTransform;\n data.originalCalculateBounds = this.calculateBounds;\n data.originalGetLocalBounds = this.getLocalBounds;\n\n data.originalDestroy = this.destroy;\n\n data.originalContainsPoint = this.containsPoint;\n\n data.originalMask = this._mask;\n data.originalFilterArea = this.filterArea;\n\n this.render = this._renderCached;\n this.renderCanvas = this._renderCachedCanvas;\n\n this.destroy = this._cacheAsBitmapDestroy;\n }\n else\n {\n data = this._cacheData;\n\n if (data.sprite)\n {\n this._destroyCachedDisplayObject();\n }\n\n this.render = data.originalRender;\n this.renderCanvas = data.originalRenderCanvas;\n this.calculateBounds = data.originalCalculateBounds;\n this.getLocalBounds = data.originalGetLocalBounds;\n\n this.destroy = data.originalDestroy;\n\n this.updateTransform = data.originalUpdateTransform;\n this.containsPoint = data.originalContainsPoint;\n\n this._mask = data.originalMask;\n this.filterArea = data.originalFilterArea;\n }\n },\n },\n});\n\n/**\n * Renders a cached version of the sprite with WebGL\n *\n * @private\n * @function _renderCached\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._renderCached = function _renderCached(renderer)\n{\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n this._initCachedDisplayObject(renderer);\n\n this._cacheData.sprite.transform._worldID = this.transform._worldID;\n this._cacheData.sprite.worldAlpha = this.worldAlpha;\n this._cacheData.sprite._render(renderer);\n};\n\n/**\n * Prepares the WebGL renderer to cache the sprite\n *\n * @private\n * @function _initCachedDisplayObject\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._initCachedDisplayObject = function _initCachedDisplayObject(renderer)\n{\n if (this._cacheData && this._cacheData.sprite)\n {\n return;\n }\n\n // make sure alpha is set to 1 otherwise it will get rendered as invisible!\n var cacheAlpha = this.alpha;\n\n this.alpha = 1;\n\n // first we flush anything left in the renderer (otherwise it would get rendered to the cached texture)\n renderer.batch.flush();\n // this.filters= [];\n\n // next we find the dimensions of the untransformed object\n // this function also calls updatetransform on all its children as part of the measuring.\n // This means we don't need to update the transform again in this function\n // TODO pass an object to clone too? saves having to create a new one each time!\n var bounds = this.getLocalBounds().clone();\n\n // add some padding!\n if (this.filters)\n {\n var padding = this.filters[0].padding;\n\n bounds.pad(padding);\n }\n\n bounds.ceil(settings.RESOLUTION);\n\n // for now we cache the current renderTarget that the WebGL renderer is currently using.\n // this could be more elegant..\n var cachedRenderTexture = renderer.renderTexture.current;\n var cachedSourceFrame = renderer.renderTexture.sourceFrame;\n var cachedProjectionTransform = renderer.projection.transform;\n\n // We also store the filter stack - I will definitely look to change how this works a little later down the line.\n // const stack = renderer.filterManager.filterStack;\n\n // this renderTexture will be used to store the cached DisplayObject\n var renderTexture = RenderTexture.create(bounds.width, bounds.height);\n\n var textureCacheId = \"cacheAsBitmap_\" + (uid());\n\n this._cacheData.textureCacheId = textureCacheId;\n\n BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId);\n Texture.addToCache(renderTexture, textureCacheId);\n\n // need to set //\n var m = _tempMatrix;\n\n m.tx = -bounds.x;\n m.ty = -bounds.y;\n\n // reset\n this.transform.worldTransform.identity();\n\n // set all properties to there original so we can render to a texture\n this.render = this._cacheData.originalRender;\n\n renderer.render(this, renderTexture, true, m, true);\n\n // now restore the state be setting the new properties\n renderer.projection.transform = cachedProjectionTransform;\n renderer.renderTexture.bind(cachedRenderTexture, cachedSourceFrame);\n\n // renderer.filterManager.filterStack = stack;\n\n this.render = this._renderCached;\n // the rest is the same as for Canvas\n this.updateTransform = this.displayObjectUpdateTransform;\n this.calculateBounds = this._calculateCachedBounds;\n this.getLocalBounds = this._getCachedLocalBounds;\n\n this._mask = null;\n this.filterArea = null;\n\n // create our cached sprite\n var cachedSprite = new Sprite(renderTexture);\n\n cachedSprite.transform.worldTransform = this.transform.worldTransform;\n cachedSprite.anchor.x = -(bounds.x / bounds.width);\n cachedSprite.anchor.y = -(bounds.y / bounds.height);\n cachedSprite.alpha = cacheAlpha;\n cachedSprite._bounds = this._bounds;\n\n this._cacheData.sprite = cachedSprite;\n\n this.transform._parentID = -1;\n // restore the transform of the cached sprite to avoid the nasty flicker..\n if (!this.parent)\n {\n this.parent = renderer._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this.updateTransform();\n }\n\n // map the hit test..\n this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite);\n};\n\n/**\n * Renders a cached version of the sprite with canvas\n *\n * @private\n * @function _renderCachedCanvas\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._renderCachedCanvas = function _renderCachedCanvas(renderer)\n{\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n this._initCachedDisplayObjectCanvas(renderer);\n\n this._cacheData.sprite.worldAlpha = this.worldAlpha;\n this._cacheData.sprite._renderCanvas(renderer);\n};\n\n// TODO this can be the same as the WebGL version.. will need to do a little tweaking first though..\n/**\n * Prepares the Canvas renderer to cache the sprite\n *\n * @private\n * @function _initCachedDisplayObjectCanvas\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._initCachedDisplayObjectCanvas = function _initCachedDisplayObjectCanvas(renderer)\n{\n if (this._cacheData && this._cacheData.sprite)\n {\n return;\n }\n\n // get bounds actually transforms the object for us already!\n var bounds = this.getLocalBounds();\n\n var cacheAlpha = this.alpha;\n\n this.alpha = 1;\n\n var cachedRenderTarget = renderer.context;\n\n bounds.ceil(settings.RESOLUTION);\n\n var renderTexture = RenderTexture.create(bounds.width, bounds.height);\n\n var textureCacheId = \"cacheAsBitmap_\" + (uid());\n\n this._cacheData.textureCacheId = textureCacheId;\n\n BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId);\n Texture.addToCache(renderTexture, textureCacheId);\n\n // need to set //\n var m = _tempMatrix;\n\n this.transform.localTransform.copyTo(m);\n m.invert();\n\n m.tx -= bounds.x;\n m.ty -= bounds.y;\n\n // m.append(this.transform.worldTransform.)\n // set all properties to there original so we can render to a texture\n this.renderCanvas = this._cacheData.originalRenderCanvas;\n\n // renderTexture.render(this, m, true);\n renderer.render(this, renderTexture, true, m, false);\n\n // now restore the state be setting the new properties\n renderer.context = cachedRenderTarget;\n\n this.renderCanvas = this._renderCachedCanvas;\n // the rest is the same as for WebGL\n this.updateTransform = this.displayObjectUpdateTransform;\n this.calculateBounds = this._calculateCachedBounds;\n this.getLocalBounds = this._getCachedLocalBounds;\n\n this._mask = null;\n this.filterArea = null;\n\n // create our cached sprite\n var cachedSprite = new Sprite(renderTexture);\n\n cachedSprite.transform.worldTransform = this.transform.worldTransform;\n cachedSprite.anchor.x = -(bounds.x / bounds.width);\n cachedSprite.anchor.y = -(bounds.y / bounds.height);\n cachedSprite.alpha = cacheAlpha;\n cachedSprite._bounds = this._bounds;\n\n this._cacheData.sprite = cachedSprite;\n\n this.transform._parentID = -1;\n // restore the transform of the cached sprite to avoid the nasty flicker..\n if (!this.parent)\n {\n this.parent = renderer._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this.updateTransform();\n }\n\n // map the hit test..\n this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite);\n};\n\n/**\n * Calculates the bounds of the cached sprite\n *\n * @private\n */\nDisplayObject.prototype._calculateCachedBounds = function _calculateCachedBounds()\n{\n this._bounds.clear();\n this._cacheData.sprite.transform._worldID = this.transform._worldID;\n this._cacheData.sprite._calculateBounds();\n this._lastBoundsID = this._boundsID;\n};\n\n/**\n * Gets the bounds of the cached sprite.\n *\n * @private\n * @return {Rectangle} The local bounds.\n */\nDisplayObject.prototype._getCachedLocalBounds = function _getCachedLocalBounds()\n{\n return this._cacheData.sprite.getLocalBounds();\n};\n\n/**\n * Destroys the cached sprite.\n *\n * @private\n */\nDisplayObject.prototype._destroyCachedDisplayObject = function _destroyCachedDisplayObject()\n{\n this._cacheData.sprite._texture.destroy(true);\n this._cacheData.sprite = null;\n\n BaseTexture.removeFromCache(this._cacheData.textureCacheId);\n Texture.removeFromCache(this._cacheData.textureCacheId);\n\n this._cacheData.textureCacheId = null;\n};\n\n/**\n * Destroys the cached object.\n *\n * @private\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value.\n * Used when destroying containers, see the Container.destroy method.\n */\nDisplayObject.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy(options)\n{\n this.cacheAsBitmap = false;\n this.destroy(options);\n};\n//# sourceMappingURL=mixin-cache-as-bitmap.es.js.map\n","/*!\n * @pixi/mixin-get-child-by-name - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/mixin-get-child-by-name is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { DisplayObject, Container } from '@pixi/display';\n\n/**\n * The instance name of the object.\n *\n * @memberof PIXI.DisplayObject#\n * @member {string} name\n */\nDisplayObject.prototype.name = null;\n\n/**\n * Returns the display object in the container.\n *\n * @method getChildByName\n * @memberof PIXI.Container#\n * @param {string} name - Instance name.\n * @return {PIXI.DisplayObject} The child with the specified name.\n */\nContainer.prototype.getChildByName = function getChildByName(name)\n{\n for (var i = 0; i < this.children.length; i++)\n {\n if (this.children[i].name === name)\n {\n return this.children[i];\n }\n }\n\n return null;\n};\n//# sourceMappingURL=mixin-get-child-by-name.es.js.map\n","/*!\n * @pixi/mixin-get-global-position - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/mixin-get-global-position is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { DisplayObject } from '@pixi/display';\nimport { Point } from '@pixi/math';\n\n/**\n * Returns the global position of the displayObject. Does not depend on object scale, rotation and pivot.\n *\n * @method getGlobalPosition\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Point} [point=new PIXI.Point()] - The point to write the global value to.\n * @param {boolean} [skipUpdate=false] - Setting to true will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost.\n * @return {PIXI.Point} The updated point.\n */\nDisplayObject.prototype.getGlobalPosition = function getGlobalPosition(point, skipUpdate)\n{\n if ( point === void 0 ) point = new Point();\n if ( skipUpdate === void 0 ) skipUpdate = false;\n\n if (this.parent)\n {\n this.parent.toGlobal(this.position, point, skipUpdate);\n }\n else\n {\n point.x = this.position.x;\n point.y = this.position.y;\n }\n\n return point;\n};\n//# sourceMappingURL=mixin-get-global-position.es.js.map\n","/*!\n * @pixi/mesh - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/mesh is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { State, Shader, Program, TextureMatrix, Geometry, Buffer } from '@pixi/core';\nimport { Point, Polygon, Matrix } from '@pixi/math';\nimport { DRAW_MODES, BLEND_MODES, TYPES } from '@pixi/constants';\nimport { Container } from '@pixi/display';\nimport { settings } from '@pixi/settings';\nimport { premultiplyTintToRgba } from '@pixi/utils';\n\n/**\n * Class controls cache for UV mapping from Texture normal space to BaseTexture normal space.\n *\n * @class\n * @memberof PIXI\n */\nvar MeshBatchUvs = function MeshBatchUvs(uvBuffer, uvMatrix)\n{\n /**\n * Buffer with normalized UV's\n * @member {PIXI.Buffer}\n */\n this.uvBuffer = uvBuffer;\n\n /**\n * Material UV matrix\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = uvMatrix;\n\n /**\n * UV Buffer data\n * @member {Float32Array}\n * @readonly\n */\n this.data = null;\n\n this._bufferUpdateId = -1;\n\n this._textureUpdateId = -1;\n\n this._updateID = 0;\n};\n\n/**\n * updates\n *\n * @param {boolean} forceUpdate - force the update\n */\nMeshBatchUvs.prototype.update = function update (forceUpdate)\n{\n if (!forceUpdate\n && this._bufferUpdateId === this.uvBuffer._updateID\n && this._textureUpdateId === this.uvMatrix._updateID)\n {\n return;\n }\n\n this._bufferUpdateId = this.uvBuffer._updateID;\n this._textureUpdateId = this.uvMatrix._updateID;\n\n var data = this.uvBuffer.data;\n\n if (!this.data || this.data.length !== data.length)\n {\n this.data = new Float32Array(data.length);\n }\n\n this.uvMatrix.multiplyUvs(data, this.data);\n\n this._updateID++;\n};\n\nvar tempPoint = new Point();\nvar tempPolygon = new Polygon();\n\n/**\n * Base mesh class.\n *\n * This class empowers you to have maximum flexibility to render any kind of WebGL visuals you can think of.\n * This class assumes a certain level of WebGL knowledge.\n * If you know a bit this should abstract enough away to make you life easier!\n *\n * Pretty much ALL WebGL can be broken down into the following:\n * - Geometry - The structure and data for the mesh. This can include anything from positions, uvs, normals, colors etc..\n * - Shader - This is the shader that PixiJS will render the geometry with (attributes in the shader must match the geometry)\n * - State - This is the state of WebGL required to render the mesh.\n *\n * Through a combination of the above elements you can render anything you want, 2D or 3D!\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Mesh = /*@__PURE__*/(function (Container) {\n function Mesh(geometry, shader, state, drawMode)// vertices, uvs, indices, drawMode)\n {\n if ( drawMode === void 0 ) drawMode = DRAW_MODES.TRIANGLES;\n\n Container.call(this);\n\n /**\n * Includes vertex positions, face indices, normals, colors, UVs, and\n * custom attributes within buffers, reducing the cost of passing all\n * this data to the GPU. Can be shared between multiple Mesh objects.\n * @member {PIXI.Geometry}\n * @readonly\n */\n this.geometry = geometry;\n\n geometry.refCount++;\n\n /**\n * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU.\n * Can be shared between multiple Mesh objects.\n * @member {PIXI.Shader|PIXI.MeshMaterial}\n */\n this.shader = shader;\n\n /**\n * Represents the WebGL state the Mesh required to render, excludes shader and geometry. E.g.,\n * blend mode, culling, depth testing, direction of rendering triangles, backface, etc.\n * @member {PIXI.State}\n */\n this.state = state || State.for2d();\n\n /**\n * The way the Mesh should be drawn, can be any of the {@link PIXI.DRAW_MODES} constants.\n *\n * @member {number}\n * @see PIXI.DRAW_MODES\n */\n this.drawMode = drawMode;\n\n /**\n * Typically the index of the IndexBuffer where to start drawing.\n * @member {number}\n * @default 0\n */\n this.start = 0;\n\n /**\n * How much of the geometry to draw, by default `0` renders everything.\n * @member {number}\n * @default 0\n */\n this.size = 0;\n\n /**\n * thease are used as easy access for batching\n * @member {Float32Array}\n * @private\n */\n this.uvs = null;\n\n /**\n * thease are used as easy access for batching\n * @member {Uint16Array}\n * @private\n */\n this.indices = null;\n\n /**\n * this is the caching layer used by the batcher\n * @member {Float32Array}\n * @private\n */\n this.vertexData = new Float32Array(1);\n\n /**\n * If geometry is changed used to decide to re-transform\n * the vertexData.\n * @member {number}\n * @private\n */\n this.vertexDirty = 0;\n\n this._transformID = -1;\n\n // Inherited from DisplayMode, set defaults\n this.tint = 0xFFFFFF;\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * Internal roundPixels field\n *\n * @member {boolean}\n * @private\n */\n this._roundPixels = settings.ROUND_PIXELS;\n\n /**\n * Batched UV's are cached for atlas textures\n * @member {PIXI.MeshBatchUvs}\n * @private\n */\n this.batchUvs = null;\n }\n\n if ( Container ) Mesh.__proto__ = Container;\n Mesh.prototype = Object.create( Container && Container.prototype );\n Mesh.prototype.constructor = Mesh;\n\n var prototypeAccessors = { uvBuffer: { configurable: true },verticesBuffer: { configurable: true },material: { configurable: true },blendMode: { configurable: true },roundPixels: { configurable: true },tint: { configurable: true },texture: { configurable: true } };\n\n /**\n * To change mesh uv's, change its uvBuffer data and increment its _updateID.\n * @member {PIXI.Buffer}\n * @readonly\n */\n prototypeAccessors.uvBuffer.get = function ()\n {\n return this.geometry.buffers[1];\n };\n\n /**\n * To change mesh vertices, change its uvBuffer data and increment its _updateID.\n * Incrementing _updateID is optional because most of Mesh objects do it anyway.\n * @member {PIXI.Buffer}\n * @readonly\n */\n prototypeAccessors.verticesBuffer.get = function ()\n {\n return this.geometry.buffers[0];\n };\n\n /**\n * Alias for {@link PIXI.Mesh#shader}.\n * @member {PIXI.Shader|PIXI.MeshMaterial}\n */\n prototypeAccessors.material.set = function (value)\n {\n this.shader = value;\n };\n\n prototypeAccessors.material.get = function ()\n {\n return this.shader;\n };\n\n /**\n * The blend mode to be applied to the Mesh. Apply a value of\n * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL;\n * @see PIXI.BLEND_MODES\n */\n prototypeAccessors.blendMode.set = function (value)\n {\n this.state.blendMode = value;\n };\n\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n prototypeAccessors.roundPixels.set = function (value)\n {\n if (this._roundPixels !== value)\n {\n this._transformID = -1;\n }\n this._roundPixels = value;\n };\n\n prototypeAccessors.roundPixels.get = function ()\n {\n return this._roundPixels;\n };\n\n /**\n * The multiply tint applied to the Mesh. This is a hex value. A value of\n * `0xFFFFFF` will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this.shader.tint;\n };\n\n prototypeAccessors.tint.set = function (value)\n {\n this.shader.tint = value;\n };\n\n /**\n * The texture that the Mesh uses.\n *\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this.shader.texture;\n };\n\n prototypeAccessors.texture.set = function (value)\n {\n this.shader.texture = value;\n };\n\n /**\n * Standard renderer draw.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._render = function _render (renderer)\n {\n // set properties for batching..\n // TODO could use a different way to grab verts?\n var vertices = this.geometry.buffers[0].data;\n\n // TODO benchmark check for attribute size..\n if (this.shader.batchable && this.drawMode === DRAW_MODES.TRIANGLES && vertices.length < Mesh.BATCHABLE_SIZE * 2)\n {\n this._renderToBatch(renderer);\n }\n else\n {\n this._renderDefault(renderer);\n }\n };\n\n /**\n * Standard non-batching way of rendering.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._renderDefault = function _renderDefault (renderer)\n {\n var shader = this.shader;\n\n shader.alpha = this.worldAlpha;\n if (shader.update)\n {\n shader.update();\n }\n\n renderer.batch.flush();\n\n if (shader.program.uniformData.translationMatrix)\n {\n shader.uniforms.translationMatrix = this.transform.worldTransform.toArray(true);\n }\n\n // bind and sync uniforms..\n renderer.shader.bind(shader);\n\n // set state..\n renderer.state.set(this.state);\n\n // bind the geometry...\n renderer.geometry.bind(this.geometry, shader);\n\n // then render it\n renderer.geometry.draw(this.drawMode, this.size, this.start, this.geometry.instanceCount);\n };\n\n /**\n * Rendering by using the Batch system.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._renderToBatch = function _renderToBatch (renderer)\n {\n var geometry = this.geometry;\n\n if (this.shader.uvMatrix)\n {\n this.shader.uvMatrix.update();\n this.calculateUvs();\n }\n\n // set properties for batching..\n this.calculateVertices();\n this.indices = geometry.indexBuffer.data;\n this._tintRGB = this.shader._tintRGB;\n this._texture = this.shader.texture;\n\n var pluginName = this.material.pluginName;\n\n renderer.batch.setObjectRenderer(renderer.plugins[pluginName]);\n renderer.plugins[pluginName].render(this);\n };\n\n /**\n * Updates vertexData field based on transform and vertices\n */\n Mesh.prototype.calculateVertices = function calculateVertices ()\n {\n var geometry = this.geometry;\n var vertices = geometry.buffers[0].data;\n\n if (geometry.vertexDirtyId === this.vertexDirty && this._transformID === this.transform._worldID)\n {\n return;\n }\n\n this._transformID = this.transform._worldID;\n\n if (this.vertexData.length !== vertices.length)\n {\n this.vertexData = new Float32Array(vertices.length);\n }\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var vertexData = this.vertexData;\n\n for (var i = 0; i < vertexData.length / 2; i++)\n {\n var x = vertices[(i * 2)];\n var y = vertices[(i * 2) + 1];\n\n vertexData[(i * 2)] = (a * x) + (c * y) + tx;\n vertexData[(i * 2) + 1] = (b * x) + (d * y) + ty;\n }\n\n if (this._roundPixels)\n {\n for (var i$1 = 0; i$1 < vertexData.length; i$1++)\n {\n vertexData[i$1] = Math.round(vertexData[i$1]);\n }\n }\n\n this.vertexDirty = geometry.vertexDirtyId;\n };\n\n /**\n * Updates uv field based on from geometry uv's or batchUvs\n */\n Mesh.prototype.calculateUvs = function calculateUvs ()\n {\n var geomUvs = this.geometry.buffers[1];\n\n if (!this.shader.uvMatrix.isSimple)\n {\n if (!this.batchUvs)\n {\n this.batchUvs = new MeshBatchUvs(geomUvs, this.shader.uvMatrix);\n }\n this.batchUvs.update();\n this.uvs = this.batchUvs.data;\n }\n else\n {\n this.uvs = geomUvs.data;\n }\n };\n\n /**\n * Updates the bounds of the mesh as a rectangle. The bounds calculation takes the worldTransform into account.\n * there must be a aVertexPosition attribute present in the geometry for bounds to be calculated correctly.\n *\n * @protected\n */\n Mesh.prototype._calculateBounds = function _calculateBounds ()\n {\n this.calculateVertices();\n\n this._bounds.addVertexData(this.vertexData, 0, this.vertexData.length);\n };\n\n /**\n * Tests if a point is inside this mesh. Works only for PIXI.DRAW_MODES.TRIANGLES.\n *\n * @param {PIXI.Point} point the point to test\n * @return {boolean} the result of the test\n */\n Mesh.prototype.containsPoint = function containsPoint (point)\n {\n if (!this.getBounds().contains(point.x, point.y))\n {\n return false;\n }\n\n this.worldTransform.applyInverse(point, tempPoint);\n\n var vertices = this.geometry.getBuffer('aVertexPosition').data;\n\n var points = tempPolygon.points;\n var indices = this.geometry.getIndex().data;\n var len = indices.length;\n var step = this.drawMode === 4 ? 3 : 1;\n\n for (var i = 0; i + 2 < len; i += step)\n {\n var ind0 = indices[i] * 2;\n var ind1 = indices[i + 1] * 2;\n var ind2 = indices[i + 2] * 2;\n\n points[0] = vertices[ind0];\n points[1] = vertices[ind0 + 1];\n points[2] = vertices[ind1];\n points[3] = vertices[ind1 + 1];\n points[4] = vertices[ind2];\n points[5] = vertices[ind2 + 1];\n\n if (tempPolygon.contains(tempPoint.x, tempPoint.y))\n {\n return true;\n }\n }\n\n return false;\n };\n /**\n * Destroys the Mesh object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n */\n Mesh.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.geometry.refCount--;\n if (this.geometry.refCount === 0)\n {\n this.geometry.dispose();\n }\n\n this.geometry = null;\n this.shader = null;\n this.state = null;\n this.uvs = null;\n this.indices = null;\n this.vertexData = null;\n };\n\n Object.defineProperties( Mesh.prototype, prototypeAccessors );\n\n return Mesh;\n}(Container));\n\n/**\n * The maximum number of vertices to consider batchable. Generally, the complexity\n * of the geometry.\n * @memberof PIXI.Mesh\n * @static\n * @member {number} BATCHABLE_SIZE\n */\nMesh.BATCHABLE_SIZE = 100;\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform mat3 uTextureMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = (uTextureMatrix * vec3(aTextureCoord, 1.0)).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\nuniform vec4 uColor;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void)\\n{\\n gl_FragColor = texture2D(uSampler, vTextureCoord) * uColor;\\n}\\n\";\n\n/**\n * Slightly opinionated default shader for PixiJS 2D objects.\n * @class\n * @memberof PIXI\n * @extends PIXI.Shader\n */\nvar MeshMaterial = /*@__PURE__*/(function (Shader) {\n function MeshMaterial(uSampler, options)\n {\n var uniforms = {\n uSampler: uSampler,\n alpha: 1,\n uTextureMatrix: Matrix.IDENTITY,\n uColor: new Float32Array([1, 1, 1, 1]),\n };\n\n // Set defaults\n options = Object.assign({\n tint: 0xFFFFFF,\n alpha: 1,\n pluginName: 'batch',\n }, options);\n\n if (options.uniforms)\n {\n Object.assign(uniforms, options.uniforms);\n }\n\n Shader.call(this, options.program || Program.from(vertex, fragment), uniforms);\n\n /**\n * Only do update if tint or alpha changes.\n * @member {boolean}\n * @private\n * @default false\n */\n this._colorDirty = false;\n\n /**\n * TextureMatrix instance for this Mesh, used to track Texture changes\n *\n * @member {PIXI.TextureMatrix}\n * @readonly\n */\n this.uvMatrix = new TextureMatrix(uSampler);\n\n /**\n * `true` if shader can be batch with the renderer's batch system.\n * @member {boolean}\n * @default true\n */\n this.batchable = options.program === undefined;\n\n /**\n * Renderer plugin for batching\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = options.pluginName;\n\n this.tint = options.tint;\n this.alpha = options.alpha;\n }\n\n if ( Shader ) MeshMaterial.__proto__ = Shader;\n MeshMaterial.prototype = Object.create( Shader && Shader.prototype );\n MeshMaterial.prototype.constructor = MeshMaterial;\n\n var prototypeAccessors = { texture: { configurable: true },alpha: { configurable: true },tint: { configurable: true } };\n\n /**\n * Reference to the texture being rendered.\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this.uniforms.uSampler;\n };\n prototypeAccessors.texture.set = function (value)\n {\n if (this.uniforms.uSampler !== value)\n {\n this.uniforms.uSampler = value;\n this.uvMatrix.texture = value;\n }\n };\n\n /**\n * This gets automatically set by the object using this.\n *\n * @default 1\n * @member {number}\n */\n prototypeAccessors.alpha.set = function (value)\n {\n if (value === this._alpha) { return; }\n\n this._alpha = value;\n this._colorDirty = true;\n };\n prototypeAccessors.alpha.get = function ()\n {\n return this._alpha;\n };\n\n /**\n * Multiply tint for the material.\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.set = function (value)\n {\n if (value === this._tint) { return; }\n\n this._tint = value;\n this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16);\n this._colorDirty = true;\n };\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n /**\n * Gets called automatically by the Mesh. Intended to be overridden for custom\n * MeshMaterial objects.\n */\n MeshMaterial.prototype.update = function update ()\n {\n if (this._colorDirty)\n {\n this._colorDirty = false;\n var baseTexture = this.texture.baseTexture;\n\n premultiplyTintToRgba(this._tint, this._alpha, this.uniforms.uColor, baseTexture.premultiplyAlpha);\n }\n if (this.uvMatrix.update())\n {\n this.uniforms.uTextureMatrix = this.uvMatrix.mapCoord;\n }\n };\n\n Object.defineProperties( MeshMaterial.prototype, prototypeAccessors );\n\n return MeshMaterial;\n}(Shader));\n\n/**\n * Standard 2D geometry used in PixiJS.\n *\n * Geometry can be defined without passing in a style or data if required.\n *\n * ```js\n * const geometry = new PIXI.Geometry();\n *\n * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2);\n * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1], 2);\n * geometry.addIndex([0,1,2,1,3,2]);\n *\n * ```\n * @class\n * @memberof PIXI\n * @extends PIXI.Geometry\n */\nvar MeshGeometry = /*@__PURE__*/(function (Geometry) {\n function MeshGeometry(vertices, uvs, index)\n {\n Geometry.call(this);\n\n var verticesBuffer = new Buffer(vertices);\n var uvsBuffer = new Buffer(uvs, true);\n var indexBuffer = new Buffer(index, true, true);\n\n this.addAttribute('aVertexPosition', verticesBuffer, 2, false, TYPES.FLOAT)\n .addAttribute('aTextureCoord', uvsBuffer, 2, false, TYPES.FLOAT)\n .addIndex(indexBuffer);\n\n /**\n * Dirty flag to limit update calls on Mesh. For example,\n * limiting updates on a single Mesh instance with a shared Geometry\n * within the render loop.\n * @private\n * @member {number}\n * @default -1\n */\n this._updateId = -1;\n }\n\n if ( Geometry ) MeshGeometry.__proto__ = Geometry;\n MeshGeometry.prototype = Object.create( Geometry && Geometry.prototype );\n MeshGeometry.prototype.constructor = MeshGeometry;\n\n var prototypeAccessors = { vertexDirtyId: { configurable: true } };\n\n /**\n * If the vertex position is updated.\n * @member {number}\n * @readonly\n * @private\n */\n prototypeAccessors.vertexDirtyId.get = function ()\n {\n return this.buffers[0]._updateID;\n };\n\n Object.defineProperties( MeshGeometry.prototype, prototypeAccessors );\n\n return MeshGeometry;\n}(Geometry));\n\nexport { Mesh, MeshBatchUvs, MeshGeometry, MeshMaterial };\n//# sourceMappingURL=mesh.es.js.map\n","/*!\n * pixi.js - v5.1.4\n * Compiled Sat, 21 Sep 2019 07:35:21 UTC\n *\n * pixi.js is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport '@pixi/polyfill';\nimport { AccessibilityManager } from '@pixi/accessibility';\nimport * as accessibility from '@pixi/accessibility';\nexport { accessibility };\nimport { Extract } from '@pixi/extract';\nimport * as extract from '@pixi/extract';\nexport { extract };\nimport { InteractionManager } from '@pixi/interaction';\nimport * as interaction from '@pixi/interaction';\nexport { interaction };\nimport { Prepare } from '@pixi/prepare';\nimport * as prepare from '@pixi/prepare';\nexport { prepare };\nimport { deprecation } from '@pixi/utils';\nimport * as utils from '@pixi/utils';\nexport { utils };\nimport { Application } from '@pixi/app';\nexport * from '@pixi/app';\nimport { Renderer, BatchRenderer } from '@pixi/core';\nexport * from '@pixi/core';\nimport { Loader, AppLoaderPlugin } from '@pixi/loaders';\nexport * from '@pixi/loaders';\nimport { ParticleRenderer } from '@pixi/particles';\nexport * from '@pixi/particles';\nimport { SpritesheetLoader } from '@pixi/spritesheet';\nexport * from '@pixi/spritesheet';\nimport { TilingSpriteRenderer } from '@pixi/sprite-tiling';\nexport * from '@pixi/sprite-tiling';\nimport { BitmapFontLoader } from '@pixi/text-bitmap';\nexport * from '@pixi/text-bitmap';\nimport { TickerPlugin } from '@pixi/ticker';\nexport * from '@pixi/ticker';\nimport { AlphaFilter } from '@pixi/filter-alpha';\nimport { BlurFilter, BlurFilterPass } from '@pixi/filter-blur';\nimport { ColorMatrixFilter } from '@pixi/filter-color-matrix';\nimport { DisplacementFilter } from '@pixi/filter-displacement';\nimport { FXAAFilter } from '@pixi/filter-fxaa';\nimport { NoiseFilter } from '@pixi/filter-noise';\nimport '@pixi/mixin-cache-as-bitmap';\nimport '@pixi/mixin-get-child-by-name';\nimport '@pixi/mixin-get-global-position';\nexport * from '@pixi/constants';\nexport * from '@pixi/display';\nexport * from '@pixi/graphics';\nexport * from '@pixi/math';\nexport * from '@pixi/mesh';\nexport * from '@pixi/mesh-extras';\nexport * from '@pixi/runner';\nexport * from '@pixi/sprite';\nexport * from '@pixi/sprite-animated';\nexport * from '@pixi/text';\nexport * from '@pixi/settings';\n\nvar v5 = '5.0.0';\n\n/**\n * Deprecations (backward compatibilities) are automatically applied for browser bundles\n * in the UMD module format. If using Webpack or Rollup, you'll need to apply these\n * deprecations manually by doing something like this:\n * @example\n * import * as PIXI from 'pixi.js';\n * PIXI.useDeprecated(); // MUST be bound to namespace\n * @memberof PIXI\n * @function useDeprecated\n */\nfunction useDeprecated()\n{\n var PIXI = this;\n\n Object.defineProperties(PIXI, {\n /**\n * @constant {RegExp|string} SVG_SIZE\n * @memberof PIXI\n * @see PIXI.resources.SVGResource.SVG_SIZE\n * @deprecated since 5.0.0\n */\n SVG_SIZE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.utils.SVG_SIZE property has moved to PIXI.resources.SVGResource.SVG_SIZE');\n\n return PIXI.SVGResource.SVG_SIZE;\n },\n },\n\n /**\n * @class PIXI.TransformStatic\n * @deprecated since 5.0.0\n * @see PIXI.Transform\n */\n TransformStatic: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TransformStatic class has been removed, use PIXI.Transform');\n\n return PIXI.Transform;\n },\n },\n\n /**\n * @class PIXI.TransformBase\n * @deprecated since 5.0.0\n * @see PIXI.Transform\n */\n TransformBase: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TransformBase class has been removed, use PIXI.Transform');\n\n return PIXI.Transform;\n },\n },\n\n /**\n * Constants that specify the transform type.\n *\n * @static\n * @constant\n * @name TRANSFORM_MODE\n * @memberof PIXI\n * @enum {number}\n * @deprecated since 5.0.0\n * @property {number} STATIC\n * @property {number} DYNAMIC\n */\n TRANSFORM_MODE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TRANSFORM_MODE property has been removed');\n\n return { STATIC: 0, DYNAMIC: 1 };\n },\n },\n\n /**\n * @class PIXI.WebGLRenderer\n * @see PIXI.Renderer\n * @deprecated since 5.0.0\n */\n WebGLRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.WebGLRenderer class has moved to PIXI.Renderer');\n\n return PIXI.Renderer;\n },\n },\n\n /**\n * @class PIXI.CanvasRenderTarget\n * @see PIXI.utils.CanvasRenderTarget\n * @deprecated since 5.0.0\n */\n CanvasRenderTarget: {\n get: function get()\n {\n deprecation(v5, 'PIXI.CanvasRenderTarget class has moved to PIXI.utils.CanvasRenderTarget');\n\n return PIXI.utils.CanvasRenderTarget;\n },\n },\n\n /**\n * @memberof PIXI\n * @name loader\n * @type {PIXI.Loader}\n * @see PIXI.Loader.shared\n * @deprecated since 5.0.0\n */\n loader: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loader instance has moved to PIXI.Loader.shared');\n\n return PIXI.Loader.shared;\n },\n },\n\n /**\n * @class PIXI.FilterManager\n * @see PIXI.systems.FilterSystem\n * @deprecated since 5.0.0\n */\n FilterManager: {\n get: function get()\n {\n deprecation(v5, 'PIXI.FilterManager class has moved to PIXI.systems.FilterSystem');\n\n return PIXI.systems.FilterSystem;\n },\n },\n\n /**\n * @namespace PIXI.CanvasTinter\n * @see PIXI.canvasUtils\n * @deprecated since 5.2.0\n */\n CanvasTinter: {\n get: function get()\n {\n deprecation('5.2.0', 'PIXI.CanvasTinter namespace has moved to PIXI.canvasUtils');\n\n return PIXI.canvasUtils;\n },\n },\n\n /**\n * @namespace PIXI.GroupD8\n * @see PIXI.groupD8\n * @deprecated since 5.2.0\n */\n GroupD8: {\n get: function get()\n {\n deprecation('5.2.0', 'PIXI.GroupD8 namespace has moved to PIXI.groupD8');\n\n return PIXI.groupD8;\n },\n },\n });\n\n /**\n * This namespace has been removed. All classes previous nested\n * under this namespace have been moved to the top-level `PIXI` object.\n * @namespace PIXI.extras\n * @deprecated since 5.0.0\n */\n PIXI.extras = {};\n\n Object.defineProperties(PIXI.extras, {\n /**\n * @class PIXI.extras.TilingSprite\n * @see PIXI.TilingSprite\n * @deprecated since 5.0.0\n */\n TilingSprite: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.TilingSprite class has moved to PIXI.TilingSprite');\n\n return PIXI.TilingSprite;\n },\n },\n /**\n * @class PIXI.extras.TilingSpriteRenderer\n * @see PIXI.TilingSpriteRenderer\n * @deprecated since 5.0.0\n */\n TilingSpriteRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.TilingSpriteRenderer class has moved to PIXI.TilingSpriteRenderer');\n\n return PIXI.TilingSpriteRenderer;\n },\n },\n /**\n * @class PIXI.extras.AnimatedSprite\n * @see PIXI.AnimatedSprite\n * @deprecated since 5.0.0\n */\n AnimatedSprite: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.AnimatedSprite class has moved to PIXI.AnimatedSprite');\n\n return PIXI.AnimatedSprite;\n },\n },\n /**\n * @class PIXI.extras.BitmapText\n * @see PIXI.BitmapText\n * @deprecated since 5.0.0\n */\n BitmapText: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.BitmapText class has moved to PIXI.BitmapText');\n\n return PIXI.BitmapText;\n },\n },\n });\n\n Object.defineProperties(PIXI.utils, {\n /**\n * @function PIXI.utils.getSvgSize\n * @see PIXI.resources.SVGResource.getSize\n * @deprecated since 5.0.0\n */\n getSvgSize: {\n get: function get()\n {\n deprecation(v5, 'PIXI.utils.getSvgSize function has moved to PIXI.resources.SVGResource.getSize');\n\n return PIXI.SVGResource.getSize;\n },\n },\n });\n\n /**\n * All classes on this namespace have moved to the high-level `PIXI` object.\n * @namespace PIXI.mesh\n * @deprecated since 5.0.0\n */\n PIXI.mesh = {};\n\n Object.defineProperties(PIXI.mesh, {\n /**\n * @class PIXI.mesh.Mesh\n * @see PIXI.SimpleMesh\n * @deprecated since 5.0.0\n */\n Mesh: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Mesh class has moved to PIXI.SimpleMesh');\n\n return PIXI.SimpleMesh;\n },\n },\n /**\n * @class PIXI.mesh.NineSlicePlane\n * @see PIXI.NineSlicePlane\n * @deprecated since 5.0.0\n */\n NineSlicePlane: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.NineSlicePlane class has moved to PIXI.NineSlicePlane');\n\n return PIXI.NineSlicePlane;\n },\n },\n /**\n * @class PIXI.mesh.Plane\n * @see PIXI.SimplePlane\n * @deprecated since 5.0.0\n */\n Plane: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Plane class has moved to PIXI.SimplePlane');\n\n return PIXI.SimplePlane;\n },\n },\n /**\n * @class PIXI.mesh.Rope\n * @see PIXI.SimpleRope\n * @deprecated since 5.0.0\n */\n Rope: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Rope class has moved to PIXI.SimpleRope');\n\n return PIXI.SimpleRope;\n },\n },\n /**\n * @class PIXI.mesh.RawMesh\n * @see PIXI.Mesh\n * @deprecated since 5.0.0\n */\n RawMesh: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.RawMesh class has moved to PIXI.Mesh');\n\n return PIXI.Mesh;\n },\n },\n /**\n * @class PIXI.mesh.CanvasMeshRenderer\n * @see PIXI.CanvasMeshRenderer\n * @deprecated since 5.0.0\n */\n CanvasMeshRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.CanvasMeshRenderer class has moved to PIXI.CanvasMeshRenderer');\n\n return PIXI.CanvasMeshRenderer;\n },\n },\n /**\n * @class PIXI.mesh.MeshRenderer\n * @see PIXI.MeshRenderer\n * @deprecated since 5.0.0\n */\n MeshRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.MeshRenderer class has moved to PIXI.MeshRenderer');\n\n return PIXI.MeshRenderer;\n },\n },\n });\n\n /**\n * This namespace has been removed and items have been moved to\n * the top-level `PIXI` object.\n * @namespace PIXI.particles\n * @deprecated since 5.0.0\n */\n PIXI.particles = {};\n\n Object.defineProperties(PIXI.particles, {\n /**\n * @class PIXI.particles.ParticleContainer\n * @deprecated since 5.0.0\n * @see PIXI.ParticleContainer\n */\n ParticleContainer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.particles.ParticleContainer class has moved to PIXI.ParticleContainer');\n\n return PIXI.ParticleContainer;\n },\n },\n /**\n * @class PIXI.particles.ParticleRenderer\n * @deprecated since 5.0.0\n * @see PIXI.ParticleRenderer\n */\n ParticleRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.particles.ParticleRenderer class has moved to PIXI.ParticleRenderer');\n\n return PIXI.ParticleRenderer;\n },\n },\n });\n\n /**\n * This namespace has been removed and items have been moved to\n * the top-level `PIXI` object.\n * @namespace PIXI.ticker\n * @deprecated since 5.0.0\n */\n PIXI.ticker = {};\n\n Object.defineProperties(PIXI.ticker, {\n /**\n * @class PIXI.ticker.Ticker\n * @deprecated since 5.0.0\n * @see PIXI.Ticker\n */\n Ticker: {\n get: function get()\n {\n deprecation(v5, 'PIXI.ticker.Ticker class has moved to PIXI.Ticker');\n\n return PIXI.Ticker;\n },\n },\n /**\n * @name PIXI.ticker.shared\n * @type {PIXI.Ticker}\n * @deprecated since 5.0.0\n * @see PIXI.Ticker.shared\n */\n shared: {\n get: function get()\n {\n deprecation(v5, 'PIXI.ticker.shared instance has moved to PIXI.Ticker.shared');\n\n return PIXI.Ticker.shared;\n },\n },\n });\n\n /**\n * All classes on this namespace have moved to the high-level `PIXI` object.\n * @namespace PIXI.loaders\n * @deprecated since 5.0.0\n */\n PIXI.loaders = {};\n\n Object.defineProperties(PIXI.loaders, {\n /**\n * @class PIXI.loaders.Loader\n * @see PIXI.Loader\n * @deprecated since 5.0.0\n */\n Loader: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.Loader class has moved to PIXI.Loader');\n\n return PIXI.Loader;\n },\n },\n /**\n * @class PIXI.loaders.Resource\n * @see PIXI.LoaderResource\n * @deprecated since 5.0.0\n */\n Resource: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.Resource class has moved to PIXI.LoaderResource');\n\n return PIXI.LoaderResource;\n },\n },\n /**\n * @function PIXI.loaders.bitmapFontParser\n * @see PIXI.BitmapFontLoader.use\n * @deprecated since 5.0.0\n */\n bitmapFontParser: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.bitmapFontParser function has moved to PIXI.BitmapFontLoader.use');\n\n return PIXI.BitmapFontLoader.use;\n },\n },\n /**\n * @function PIXI.loaders.parseBitmapFontData\n * @see PIXI.BitmapFontLoader.parse\n * @deprecated since 5.0.0\n */\n parseBitmapFontData: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.parseBitmapFontData function has moved to PIXI.BitmapFontLoader.parse');\n\n return PIXI.BitmapFontLoader.parse;\n },\n },\n /**\n * @function PIXI.loaders.spritesheetParser\n * @see PIXI.SpritesheetLoader.use\n * @deprecated since 5.0.0\n */\n spritesheetParser: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.spritesheetParser function has moved to PIXI.SpritesheetLoader.use');\n\n return PIXI.SpritesheetLoader.use;\n },\n },\n /**\n * @function PIXI.loaders.getResourcePath\n * @see PIXI.SpritesheetLoader.getResourcePath\n * @deprecated since 5.0.0\n */\n getResourcePath: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.getResourcePath property has moved to PIXI.SpritesheetLoader.getResourcePath');\n\n return PIXI.SpritesheetLoader.getResourcePath;\n },\n },\n });\n\n /**\n * @function PIXI.loaders.Loader.addPixiMiddleware\n * @see PIXI.Loader.registerPlugin\n * @deprecated since 5.0.0\n * @param {function} middleware\n */\n PIXI.Loader.addPixiMiddleware = function addPixiMiddleware(middleware)\n {\n deprecation(v5,\n 'PIXI.loaders.Loader.addPixiMiddleware function is deprecated, use PIXI.loaders.Loader.registerPlugin'\n );\n\n return PIXI.loaders.Loader.registerPlugin({ use: middleware() });\n };\n\n /**\n * @class PIXI.extract.WebGLExtract\n * @deprecated since 5.0.0\n * @see PIXI.extract.Extract\n */\n Object.defineProperty(PIXI.extract, 'WebGLExtract', {\n get: function get()\n {\n deprecation(v5, 'PIXI.extract.WebGLExtract method has moved to PIXI.extract.Extract');\n\n return PIXI.extract.Extract;\n },\n });\n\n /**\n * @class PIXI.prepare.WebGLPrepare\n * @deprecated since 5.0.0\n * @see PIXI.prepare.Prepare\n */\n Object.defineProperty(PIXI.prepare, 'WebGLPrepare', {\n get: function get()\n {\n deprecation(v5, 'PIXI.prepare.WebGLPrepare class has moved to PIXI.prepare.Prepare');\n\n return PIXI.prepare.Prepare;\n },\n });\n\n /**\n * @method PIXI.Container#_renderWebGL\n * @private\n * @deprecated since 5.0.0\n * @see PIXI.Container#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype._renderWebGL = function _renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container._renderWebGL method has moved to PIXI.Container._render');\n\n this._render(renderer);\n };\n\n /**\n * @method PIXI.Container#renderWebGL\n * @deprecated since 5.0.0\n * @see PIXI.Container#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype.renderWebGL = function renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container.renderWebGL method has moved to PIXI.Container.render');\n\n this.render(renderer);\n };\n\n /**\n * @method PIXI.DisplayObject#renderWebGL\n * @deprecated since 5.0.0\n * @see PIXI.DisplayObject#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.DisplayObject.prototype.renderWebGL = function renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.DisplayObject.renderWebGL method has moved to PIXI.DisplayObject.render');\n\n this.render(renderer);\n };\n\n /**\n * @method PIXI.Container#renderAdvancedWebGL\n * @deprecated since 5.0.0\n * @see PIXI.Container#renderAdvanced\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype.renderAdvancedWebGL = function renderAdvancedWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container.renderAdvancedWebGL method has moved to PIXI.Container.renderAdvanced');\n\n this.renderAdvanced(renderer);\n };\n\n Object.defineProperties(PIXI.settings, {\n /**\n * Default transform type.\n *\n * @static\n * @deprecated since 5.0.0\n * @memberof PIXI.settings\n * @type {PIXI.TRANSFORM_MODE}\n * @default PIXI.TRANSFORM_MODE.STATIC\n */\n TRANSFORM_MODE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.settings.TRANSFORM_MODE property has been removed');\n\n return 0;\n },\n set: function set()\n {\n deprecation(v5, 'PIXI.settings.TRANSFORM_MODE property has been removed');\n },\n },\n });\n\n var BaseTexture = PIXI.BaseTexture;\n\n /**\n * @method loadSource\n * @memberof PIXI.BaseTexture#\n * @deprecated since 5.0.0\n */\n BaseTexture.prototype.loadSource = function loadSource(image)\n {\n deprecation(v5, 'PIXI.BaseTexture.loadSource method has been deprecated');\n\n var resource = PIXI.resources.autoDetectResource(image);\n\n resource.internal = true;\n\n this.setResource(resource);\n this.update();\n };\n\n Object.defineProperties(BaseTexture.prototype, {\n /**\n * @name PIXI.BaseTexture#hasLoaded\n * @type {boolean}\n * @deprecated since 5.0.0\n * @readonly\n * @see PIXI.BaseTexture#valid\n */\n hasLoaded: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.hasLoaded property has been removed, use PIXI.BaseTexture.valid');\n\n return this.valid;\n },\n },\n /**\n * @name PIXI.BaseTexture#imageUrl\n * @type {string}\n * @deprecated since 5.0.0\n * @see PIXI.resource.ImageResource#url\n */\n imageUrl: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.imageUrl property has been removed, use PIXI.BaseTexture.resource.url');\n\n return this.resource && this.resource.url;\n },\n\n set: function set(imageUrl)\n {\n deprecation(v5, 'PIXI.BaseTexture.imageUrl property has been removed, use PIXI.BaseTexture.resource.url');\n\n if (this.resource)\n {\n this.resource.url = imageUrl;\n }\n },\n },\n /**\n * @name PIXI.BaseTexture#source\n * @type {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement}\n * @deprecated since 5.0.0\n * @readonly\n * @see PIXI.resources.BaseImageResource#source\n */\n source: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.source property has been moved, use `PIXI.BaseTexture.resource.source`');\n\n return this.resource && this.resource.source;\n },\n set: function set(source)\n {\n deprecation(v5, 'PIXI.BaseTexture.source property has been moved, use `PIXI.BaseTexture.resource.source` '\n + 'if you want to set HTMLCanvasElement. Otherwise, create new BaseTexture.');\n\n if (this.resource)\n {\n this.resource.source = source;\n }\n },\n },\n });\n\n /**\n * @method fromImage\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromImage = function fromImage(canvas, crossorigin, scaleMode, scale)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromImage method has been replaced with PIXI.BaseTexture.from');\n\n var resourceOptions = { scale: scale, crossorigin: crossorigin };\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode, resourceOptions: resourceOptions });\n };\n\n /**\n * @method fromCanvas\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromCanvas = function fromCanvas(canvas, scaleMode)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromCanvas method has been replaced with PIXI.BaseTexture.from');\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode });\n };\n\n /**\n * @method fromSVG\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromSVG = function fromSVG(canvas, crossorigin, scaleMode, scale)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromSVG method has been replaced with PIXI.BaseTexture.from');\n\n var resourceOptions = { scale: scale, crossorigin: crossorigin };\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode, resourceOptions: resourceOptions });\n };\n\n /**\n * @method PIXI.Point#copy\n * @deprecated since 5.0.0\n * @see PIXI.Point#copyFrom\n */\n PIXI.Point.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Point.copy method has been replaced with PIXI.Point.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.ObservablePoint#copy\n * @deprecated since 5.0.0\n * @see PIXI.ObservablePoint#copyFrom\n */\n PIXI.ObservablePoint.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.ObservablePoint.copy method has been replaced with PIXI.ObservablePoint.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.Rectangle#copy\n * @deprecated since 5.0.0\n * @see PIXI.Rectangle#copyFrom\n */\n PIXI.Rectangle.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Rectangle.copy method has been replaced with PIXI.Rectangle.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.Matrix#copy\n * @deprecated since 5.0.0\n * @see PIXI.Matrix#copyTo\n */\n PIXI.Matrix.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Matrix.copy method has been replaced with PIXI.Matrix.copyTo');\n\n return this.copyTo(p);\n };\n\n /**\n * @method PIXI.systems.StateSystem#setState\n * @deprecated since 5.1.0\n * @see PIXI.systems.StateSystem#set\n */\n PIXI.systems.StateSystem.prototype.setState = function setState(s)\n {\n deprecation('v5.1.0', 'StateSystem.setState has been renamed to StateSystem.set');\n\n return this.set(s);\n };\n\n Object.assign(PIXI.systems.FilterSystem.prototype, {\n /**\n * @method PIXI.FilterManager#getRenderTarget\n * @deprecated since 5.0.0\n * @see PIXI.systems.FilterSystem#getFilterTexture\n */\n getRenderTarget: function getRenderTarget(clear, resolution)\n {\n deprecation(v5,\n 'PIXI.FilterManager.getRenderTarget method has been replaced with PIXI.systems.FilterSystem#getFilterTexture'\n );\n\n return this.getFilterTexture(resolution);\n },\n\n /**\n * @method PIXI.FilterManager#returnRenderTarget\n * @deprecated since 5.0.0\n * @see PIXI.systems.FilterSystem#returnFilterTexture\n */\n returnRenderTarget: function returnRenderTarget(renderTexture)\n {\n deprecation(v5,\n 'PIXI.FilterManager.returnRenderTarget method has been replaced with '\n + 'PIXI.systems.FilterSystem.returnFilterTexture'\n );\n\n this.returnFilterTexture(renderTexture);\n },\n\n /**\n * @method PIXI.systems.FilterSystem#calculateScreenSpaceMatrix\n * @deprecated since 5.0.0\n * @param {PIXI.Matrix} outputMatrix - the matrix to output to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n calculateScreenSpaceMatrix: function calculateScreenSpaceMatrix(outputMatrix)\n {\n deprecation(v5, 'PIXI.systems.FilterSystem.calculateScreenSpaceMatrix method is removed, '\n + 'use `(vTextureCoord * inputSize.xy) + outputFrame.xy` instead');\n\n var mappedMatrix = outputMatrix.identity();\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n\n mappedMatrix.translate(sourceFrame.x / destinationFrame.width, sourceFrame.y / destinationFrame.height);\n mappedMatrix.scale(destinationFrame.width, destinationFrame.height);\n\n return mappedMatrix;\n },\n\n /**\n * @method PIXI.systems.FilterSystem#calculateNormalizedScreenSpaceMatrix\n * @deprecated since 5.0.0\n * @param {PIXI.Matrix} outputMatrix - The matrix to output to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n calculateNormalizedScreenSpaceMatrix: function calculateNormalizedScreenSpaceMatrix(outputMatrix)\n {\n deprecation(v5, 'PIXI.systems.FilterManager.calculateNormalizedScreenSpaceMatrix method is removed, '\n + 'use `((vTextureCoord * inputSize.xy) + outputFrame.xy) / outputFrame.zw` instead.');\n\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n var mappedMatrix = outputMatrix.identity();\n\n mappedMatrix.translate(sourceFrame.x / destinationFrame.width, sourceFrame.y / destinationFrame.height);\n\n var translateScaleX = (destinationFrame.width / sourceFrame.width);\n var translateScaleY = (destinationFrame.height / sourceFrame.height);\n\n mappedMatrix.scale(translateScaleX, translateScaleY);\n\n return mappedMatrix;\n },\n });\n\n Object.defineProperties(PIXI.RenderTexture.prototype, {\n /**\n * @name PIXI.RenderTexture#sourceFrame\n * @type {PIXI.Rectangle}\n * @deprecated since 5.0.0\n * @readonly\n */\n sourceFrame: {\n get: function get()\n {\n deprecation(v5, 'PIXI.RenderTexture.sourceFrame property has been removed');\n\n return this.filterFrame;\n },\n },\n /**\n * @name PIXI.RenderTexture#size\n * @type {PIXI.Rectangle}\n * @deprecated since 5.0.0\n * @readonly\n */\n size: {\n get: function get()\n {\n deprecation(v5, 'PIXI.RenderTexture.size property has been removed');\n\n return this._frame;\n },\n },\n });\n\n /**\n * @class BlurXFilter\n * @memberof PIXI.filters\n * @deprecated since 5.0.0\n * @see PIXI.filters.BlurFilterPass\n */\n var BlurXFilter = /*@__PURE__*/(function (superclass) {\n function BlurXFilter(strength, quality, resolution, kernelSize)\n {\n deprecation(v5, 'PIXI.filters.BlurXFilter class is deprecated, use PIXI.filters.BlurFilterPass');\n\n superclass.call(this, true, strength, quality, resolution, kernelSize);\n }\n\n if ( superclass ) BlurXFilter.__proto__ = superclass;\n BlurXFilter.prototype = Object.create( superclass && superclass.prototype );\n BlurXFilter.prototype.constructor = BlurXFilter;\n\n return BlurXFilter;\n }(PIXI.filters.BlurFilterPass));\n\n /**\n * @class BlurYFilter\n * @memberof PIXI.filters\n * @deprecated since 5.0.0\n * @see PIXI.filters.BlurFilterPass\n */\n var BlurYFilter = /*@__PURE__*/(function (superclass) {\n function BlurYFilter(strength, quality, resolution, kernelSize)\n {\n deprecation(v5, 'PIXI.filters.BlurYFilter class is deprecated, use PIXI.filters.BlurFilterPass');\n\n superclass.call(this, false, strength, quality, resolution, kernelSize);\n }\n\n if ( superclass ) BlurYFilter.__proto__ = superclass;\n BlurYFilter.prototype = Object.create( superclass && superclass.prototype );\n BlurYFilter.prototype.constructor = BlurYFilter;\n\n return BlurYFilter;\n }(PIXI.filters.BlurFilterPass));\n\n Object.assign(PIXI.filters, {\n BlurXFilter: BlurXFilter,\n BlurYFilter: BlurYFilter,\n });\n\n var Sprite = PIXI.Sprite;\n var Texture = PIXI.Texture;\n var Graphics = PIXI.Graphics;\n\n // Support for pixi.js-legacy bifurcation\n // give users a friendly assist to use legacy\n if (!Graphics.prototype.generateCanvasTexture)\n {\n Graphics.prototype.generateCanvasTexture = function generateCanvasTexture()\n {\n deprecation(v5, 'PIXI.Graphics.generateCanvasTexture method is only available in \"pixi.js-legacy\"');\n };\n }\n\n /**\n * @deprecated since 5.0.0\n * @member {PIXI.Graphics} PIXI.Graphics#graphicsData\n * @see PIXI.Graphics#geometry\n * @readonly\n */\n Object.defineProperty(PIXI.Graphics.prototype, 'graphicsData', {\n get: function get()\n {\n deprecation(v5, 'PIXI.Graphics.graphicsData property is deprecated, use PIXI.Graphics.geometry.graphicsData');\n\n return this.geometry.graphicsData;\n },\n });\n\n // Use these to deprecate all the Sprite from* methods\n function spriteFrom(name, source, crossorigin, scaleMode)\n {\n deprecation(v5, (\"PIXI.Sprite.\" + name + \" method is deprecated, use PIXI.Sprite.from\"));\n\n return Sprite.from(source, {\n resourceOptions: {\n scale: scaleMode,\n crossorigin: crossorigin,\n },\n });\n }\n\n /**\n * @deprecated since 5.0.0\n * @see PIXI.Sprite.from\n * @method PIXI.Sprite.fromImage\n * @return {PIXI.Sprite}\n */\n Sprite.fromImage = spriteFrom.bind(null, 'fromImage');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromSVG\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromSVG = spriteFrom.bind(null, 'fromSVG');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromCanvas\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromCanvas = spriteFrom.bind(null, 'fromCanvas');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromVideo\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromVideo = spriteFrom.bind(null, 'fromVideo');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromFrame\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromFrame = spriteFrom.bind(null, 'fromFrame');\n\n // Use these to deprecate all the Texture from* methods\n function textureFrom(name, source, crossorigin, scaleMode)\n {\n deprecation(v5, (\"PIXI.Texture.\" + name + \" method is deprecated, use PIXI.Texture.from\"));\n\n return Texture.from(source, {\n resourceOptions: {\n scale: scaleMode,\n crossorigin: crossorigin,\n },\n });\n }\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromImage\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromImage = textureFrom.bind(null, 'fromImage');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromSVG\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromSVG = textureFrom.bind(null, 'fromSVG');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromCanvas\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromCanvas = textureFrom.bind(null, 'fromCanvas');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromVideo\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromVideo = textureFrom.bind(null, 'fromVideo');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromFrame\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromFrame = textureFrom.bind(null, 'fromFrame');\n\n /**\n * @deprecated since 5.0.0\n * @member {boolean} PIXI.AbstractRenderer#autoResize\n * @see PIXI.AbstractRenderer#autoDensity\n */\n Object.defineProperty(PIXI.AbstractRenderer.prototype, 'autoResize', {\n get: function get()\n {\n deprecation(v5, 'PIXI.AbstractRenderer.autoResize property is deprecated, '\n + 'use PIXI.AbstractRenderer.autoDensity');\n\n return this.autoDensity;\n },\n set: function set(value)\n {\n deprecation(v5, 'PIXI.AbstractRenderer.autoResize property is deprecated, '\n + 'use PIXI.AbstractRenderer.autoDensity');\n\n this.autoDensity = value;\n },\n });\n\n /**\n * @deprecated since 5.0.0\n * @member {PIXI.systems.TextureSystem} PIXI.Renderer#textureManager\n * @see PIXI.Renderer#texture\n */\n Object.defineProperty(PIXI.Renderer.prototype, 'textureManager', {\n get: function get()\n {\n deprecation(v5, 'PIXI.Renderer.textureManager property is deprecated, use PIXI.Renderer.texture');\n\n return this.texture;\n },\n });\n\n /**\n * @namespace PIXI.utils.mixins\n * @deprecated since 5.0.0\n */\n PIXI.utils.mixins = {\n /**\n * @memberof PIXI.utils.mixins\n * @function mixin\n * @deprecated since 5.0.0\n */\n mixin: function mixin()\n {\n deprecation(v5, 'PIXI.utils.mixins.mixin function is no longer available');\n },\n /**\n * @memberof PIXI.utils.mixins\n * @function delayMixin\n * @deprecated since 5.0.0\n */\n delayMixin: function delayMixin()\n {\n deprecation(v5, 'PIXI.utils.mixins.delayMixin function is no longer available');\n },\n /**\n * @memberof PIXI.utils.mixins\n * @function performMixins\n * @deprecated since 5.0.0\n */\n performMixins: function performMixins()\n {\n deprecation(v5, 'PIXI.utils.mixins.performMixins function is no longer available');\n },\n };\n}\n\n// Install renderer plugins\nRenderer.registerPlugin('accessibility', AccessibilityManager);\nRenderer.registerPlugin('extract', Extract);\nRenderer.registerPlugin('interaction', InteractionManager);\nRenderer.registerPlugin('particle', ParticleRenderer);\nRenderer.registerPlugin('prepare', Prepare);\nRenderer.registerPlugin('batch', BatchRenderer);\nRenderer.registerPlugin('tilingSprite', TilingSpriteRenderer);\n\nLoader.registerPlugin(BitmapFontLoader);\nLoader.registerPlugin(SpritesheetLoader);\n\nApplication.registerPlugin(TickerPlugin);\nApplication.registerPlugin(AppLoaderPlugin);\n\n/**\n * String of the current PIXI version.\n *\n * @static\n * @constant\n * @memberof PIXI\n * @name VERSION\n * @type {string}\n */\nvar VERSION = '5.1.4';\n\n/**\n * @namespace PIXI\n */\n\n/**\n * This namespace contains WebGL-only display filters that can be applied\n * to DisplayObjects using the {@link PIXI.DisplayObject#filters filters} property.\n *\n * Since PixiJS only had a handful of built-in filters, additional filters\n * can be downloaded {@link https://github.com/pixijs/pixi-filters here} from the\n * PixiJS Filters repository.\n *\n * All filters must extend {@link PIXI.Filter}.\n *\n * @example\n * // Create a new application\n * const app = new PIXI.Application();\n *\n * // Draw a green rectangle\n * const rect = new PIXI.Graphics()\n * .beginFill(0x00ff00)\n * .drawRect(40, 40, 200, 200);\n *\n * // Add a blur filter\n * rect.filters = [new PIXI.filters.BlurFilter()];\n *\n * // Display rectangle\n * app.stage.addChild(rect);\n * document.body.appendChild(app.view);\n * @namespace PIXI.filters\n */\nvar filters = {\n AlphaFilter: AlphaFilter,\n BlurFilter: BlurFilter,\n BlurFilterPass: BlurFilterPass,\n ColorMatrixFilter: ColorMatrixFilter,\n DisplacementFilter: DisplacementFilter,\n FXAAFilter: FXAAFilter,\n NoiseFilter: NoiseFilter,\n};\n\nexport { VERSION, filters, useDeprecated };\n//# sourceMappingURL=pixi.es.js.map\n","import { ImVec4 } from \"imgui-js\";\n\nexport function fromConstructor(constr: any):((params: any[]) => any)\n{\n return constr as unknown as ((params: any[]) => any)\n}\n\nexport function vec2col(v: ImVec4): number\n{\n return (((v.x * 255) & 0xFF) << 16) +\n (((v.y * 255) & 0xFF) << 8) +\n (((v.z * 255) & 0xFF) << 0);\n}\n","import * as ImGui from \"imgui-js\";\nimport { ImVec2 } from \"imgui-js\";\nimport * as PIXI from \"pixi.js\";\nimport * as U from \"./utils\";\n\nlet clipboard_text: string = \"\";\n\nconst contexts: ImGui.ImGuiContext[] = [];\nconst contextIOs: ImGui.ImGuiIO[] = [];\nlet isFirstWindow: boolean = true;\n\nclass ImGuiImplInternalRenderer extends PIXI.ObjectRenderer\n{\n constructor(r: PIXI.Renderer)\n {\n super(r);\n }\n render(owner: PIXI.DisplayObject): void\n {\n if (!(owner instanceof ImGuiWindowLayer)) return;\n\n const window: ImGuiWindow = (owner as ImGuiWindowLayer).window;\n\n const io: ImGui.ImGuiIO = window.io;\n const draw_data: ImGui.ImDrawData = ImGui.GetDrawData();\n if (draw_data === null) { throw new Error(); }\n\n gl || console.log(draw_data);\n\n // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates)\n const fb_width: number = io.DisplaySize.x * io.DisplayFramebufferScale.x;\n const fb_height: number = io.DisplaySize.y * io.DisplayFramebufferScale.y;\n if (fb_width === 0 || fb_height === 0) {\n return;\n }\n draw_data.ScaleClipRects(io.DisplayFramebufferScale);\n\n // Backup GL state\n const last_program: WebGLProgram | null = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null;\n const last_active_texture: GLenum | null = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null;\n gl && gl.activeTexture(gl.TEXTURE0);\n const last_texture0: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null;\n const last_vertex_array: WebGLVertexArrayObject | null = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null;\n const last_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null;\n const last_element_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null;\n // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode);\n const last_viewport: Int32Array | null = gl && gl.getParameter(gl.VIEWPORT) || null;\n const last_scissor_box: Int32Array | null = gl && gl.getParameter(gl.SCISSOR_BOX) || null;\n const last_blend_src_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null;\n const last_blend_dst_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_RGB) || null;\n const last_blend_src_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null;\n const last_blend_dst_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null;\n const last_blend_equation_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null;\n const last_blend_equation_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null;\n const last_enable_blend: GLboolean | null = gl && gl.getParameter(gl.BLEND) || null;\n const last_enable_cull_face: GLboolean | null = gl && gl.getParameter(gl.CULL_FACE) || null;\n const last_enable_depth_test: GLboolean | null = gl && gl.getParameter(gl.DEPTH_TEST) || null;\n const last_enable_scissor_test: GLboolean | null = gl && gl.getParameter(gl.SCISSOR_TEST) || null;\n\n gl.clearColor(0, 0, 0, 0);\n gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);\n \n gl && gl.bindVertexArray(g_VaoHandle);\n\n // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill\n gl && gl.enable(gl.BLEND);\n gl && gl.blendEquation(gl.FUNC_ADD);\n gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE);\n gl && gl.disable(gl.CULL_FACE);\n gl && gl.disable(gl.DEPTH_TEST);\n gl && gl.enable(gl.SCISSOR_TEST);\n // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);\n\n // Setup viewport, orthographic projection matrix\n // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps.\n gl && gl.viewport(0, 0, fb_width, fb_height);\n const L: number = draw_data.DisplayPos.x;\n const R: number = draw_data.DisplayPos.x + draw_data.DisplaySize.x;\n const T: number = draw_data.DisplayPos.y;\n const B: number = draw_data.DisplayPos.y + draw_data.DisplaySize.y;\n // we actually flip the bottom and top here to match with PIXI's texture usage\n const ortho_projection: Float32Array = new Float32Array([\n 2.0 / (R - L), 0.0, 0.0, 0.0,\n 0.0, 2.0 / (B - T), 0.0, 0.0,\n 0.0, 0.0, -1.0, 0.0,\n (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0,\n ]);\n gl && gl.useProgram(g_ShaderHandle);\n gl && gl.uniform1i(g_AttribLocationTex, 0);\n gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection);\n\n // Render command lists\n gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle);\n gl && gl.enableVertexAttribArray(g_AttribLocationPosition);\n gl && gl.enableVertexAttribArray(g_AttribLocationUV);\n gl && gl.enableVertexAttribArray(g_AttribLocationColor);\n\n gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertPosOffset);\n gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertUVOffset);\n gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImGui.ImDrawVertSize, ImGui.ImDrawVertColOffset);\n\n // Draw\n const pos = draw_data.DisplayPos;\n const idx_buffer_type: GLenum = gl && ((ImGui.ImDrawIdxSize === 4) ? gl.UNSIGNED_INT : gl.UNSIGNED_SHORT) || 0;\n draw_data.IterateDrawLists((draw_list: ImGui.ImDrawList): void => {\n gl || console.log(draw_list);\n gl || console.log(\"VtxBuffer.length\", draw_list.VtxBuffer.length);\n gl || console.log(\"IdxBuffer.length\", draw_list.IdxBuffer.length);\n \n let idx_buffer_offset: number = 0;\n\n gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle);\n gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW);\n gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle);\n gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW);\n\n draw_list.IterateDrawCmds((draw_cmd: ImGui.ImDrawCmd): void => {\n gl || console.log(draw_cmd);\n gl || console.log(\"ElemCount\", draw_cmd.ElemCount);\n gl || console.log(\"ClipRect\", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y);\n gl || console.log(\"TextureId\", draw_cmd.TextureId);\n if (!gl) {\n console.log(\"i: pos.x pos.y uv.x uv.y col\");\n for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) {\n const view: ImGui.ImDrawVert = new ImGui.ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImGui.ImDrawVertSize);\n console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${(\"00000000\" + view.col[0].toString(16)).substr(-8)}`);\n }\n }\n\n if (draw_cmd.UserCallback !== null) {\n // User callback (registered via ImDrawList::AddCallback)\n draw_cmd.UserCallback(draw_list, draw_cmd);\n } else {\n const clip_rect = new ImGui.ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y);\n if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) {\n // Apply scissor/clipping rectangle\n gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y);\n\n // Bind texture, Draw\n gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId);\n gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset);\n }\n }\n\n idx_buffer_offset += draw_cmd.ElemCount * ImGui.ImDrawIdxSize;\n });\n });\n\n // Restore modified GL state\n \n gl && (last_program !== null) && gl.useProgram(last_program);\n gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0);\n gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture);\n gl && gl.disableVertexAttribArray(g_AttribLocationPosition);\n gl && gl.disableVertexAttribArray(g_AttribLocationUV);\n gl && gl.disableVertexAttribArray(g_AttribLocationColor);\n gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array);\n gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer);\n gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer);\n gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]);\n gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]);\n gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha);\n gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha);\n gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND));\n gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE));\n gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST));\n gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST));\n // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]);\n }\n}\n\nlet gl: WebGL2RenderingContext = null;\nlet app: PIXI.Application = null;\n\nclass ImGuiWindowLayer extends PIXI.Sprite\n{\n public readonly window: ImGuiWindow;\n constructor(window: ImGuiWindow, tex:PIXI.RenderTexture)\n {\n super();\n this.pluginName = \"imgui_renderer\";\n this.window = window;\n }\n}\n\nexport class ImGuiWindow extends PIXI.Container\n{\n public readonly ctx: ImGui.ImGuiContext;\n public readonly io: ImGui.ImGuiIO;\n private sizeX: number;\n private sizeY: number;\n public getSizeX(): number { return this.sizeX; }\n public getSizeY(): number { return this.sizeY; }\n\n private baseTex: PIXI.BaseRenderTexture = new PIXI.BaseRenderTexture({scaleMode: PIXI.SCALE_MODES.LINEAR, resolution: 1, type: PIXI.TYPES.FLOAT, format: PIXI.FORMATS.RGBA});\n private tex: PIXI.RenderTexture = new PIXI.RenderTexture(this.baseTex);\n \n private surface: PIXI.Sprite = new PIXI.Sprite(this.tex);\n private imgui: ImGuiWindowLayer = new ImGuiWindowLayer(this, this.tex);\n \n private update: (dt: number) => void;\n constructor(sizeX: number, sizeY: number, update: (dt: number) => void)\n {\n super();\n\n this.ctx = ImGui.CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts);\n ImGui.SetCurrentContext(this.ctx);\n this.io = ImGui.GetIO();\n\n contexts.push(this.ctx);\n contextIOs.push(this.io);\n\n if (contexts.length == 1)\n {\n CreateFontsTexture();\n }\n\n if (typeof(window) !== \"undefined\") {\n ImGui.LoadIniSettingsFromMemory(window.localStorage.getItem(\"imgui.ini\") || \"\");\n }\n\n if (typeof(navigator) !== \"undefined\") {\n this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null;\n }\n\n this.io.SetClipboardTextFn = (user_data: any, text: string): void => {\n clipboard_text = text;\n // console.log(`set clipboard_text: \"${clipboard_text}\"`);\n if (typeof navigator !== \"undefined\" && typeof (navigator as any).clipboard !== \"undefined\") {\n // console.log(`clipboard.writeText: \"${clipboard_text}\"`);\n (navigator as any).clipboard.writeText(clipboard_text).then((): void => {\n // console.log(`clipboard.writeText: \"${clipboard_text}\" done.`);\n });\n }\n };\n this.io.GetClipboardTextFn = (user_data: any): string => {\n // if (typeof navigator !== \"undefined\" && typeof (navigator as any).clipboard !== \"undefined\") {\n // console.log(`clipboard.readText: \"${clipboard_text}\"`);\n // (navigator as any).clipboard.readText().then((text: string): void => {\n // clipboard_text = text;\n // console.log(`clipboard.readText: \"${clipboard_text}\" done.`);\n // });\n // }\n // console.log(`get clipboard_text: \"${clipboard_text}\"`);\n return clipboard_text;\n };\n this.io.ClipboardUserData = null;\n\n // Setup back-end capabilities flags\n this.io.BackendFlags |= ImGui.BackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional)\n\n // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array.\n this.io.KeyMap[ImGui.Key.Tab] = 9;\n this.io.KeyMap[ImGui.Key.LeftArrow] = 37;\n this.io.KeyMap[ImGui.Key.RightArrow] = 39;\n this.io.KeyMap[ImGui.Key.UpArrow] = 38;\n this.io.KeyMap[ImGui.Key.DownArrow] = 40;\n this.io.KeyMap[ImGui.Key.PageUp] = 33;\n this.io.KeyMap[ImGui.Key.PageDown] = 34;\n this.io.KeyMap[ImGui.Key.Home] = 36;\n this.io.KeyMap[ImGui.Key.End] = 35;\n this.io.KeyMap[ImGui.Key.Insert] = 45;\n this.io.KeyMap[ImGui.Key.Delete] = 46;\n this.io.KeyMap[ImGui.Key.Backspace] = 8;\n this.io.KeyMap[ImGui.Key.Space] = 32;\n this.io.KeyMap[ImGui.Key.Enter] = 13;\n this.io.KeyMap[ImGui.Key.Escape] = 27;\n this.io.KeyMap[ImGui.Key.A] = 65;\n this.io.KeyMap[ImGui.Key.C] = 67;\n this.io.KeyMap[ImGui.Key.V] = 86;\n this.io.KeyMap[ImGui.Key.X] = 88;\n this.io.KeyMap[ImGui.Key.Y] = 89;\n this.io.KeyMap[ImGui.Key.Z] = 90;\n\n this.update = update;\n this.resize(sizeX, sizeY);\n this.imgui.pluginName = 'imgui_renderer';\n this.addChild(this.surface);\n app.renderer.plugins.interaction.addListener(\"mousedown\", this.mouseDown.bind(this));\n app.renderer.plugins.interaction.addListener(\"mouseup\", this.mouseUp.bind(this));\n app.ticker.add(this.updateInternal.bind(this));\n\n this.interactive = false;\n this.interactiveChildren = true;\n\n this.surface.interactive = false;\n }\n withContext(cb: () => void)\n {\n ImGui.SetCurrentContext(this.ctx);\n cb();\n }\n mouseDown(e: PIXI.interaction.InteractionEvent): void\n {\n if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface)\n {\n this.io.MouseDown[mouse_button_map[0]] = true;\n }\n }\n mouseUp(e: PIXI.interaction.InteractionEvent): void\n {\n if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface)\n {\n this.io.MouseDown[mouse_button_map[0]] = false;\n }\n }\n resize(sizeX: number, sizeY: number)\n {\n this.sizeX = sizeX;\n this.sizeY = sizeY;\n this.baseTex.resize(sizeX, sizeY);\n this.tex.frame = new PIXI.Rectangle(0, 0, this.baseTex.width, this.baseTex.height);\n }\n updateInternal(deltaTime: number)\n {\n const dt: number = deltaTime * 1 / (1000 * PIXI.settings.TARGET_FPMS);\n\n ImGui.SetCurrentContext(this.ctx);\n\n if (this.io.WantSaveIniSettings) {\n this.io.WantSaveIniSettings = false;\n if (typeof(window) !== \"undefined\") {\n window.localStorage.setItem(\"imgui.ini\", ImGui.SaveIniSettingsToMemory());\n }\n }\n\n this.io.DisplaySize.x = this.sizeX;\n this.io.DisplaySize.y = this.sizeY;\n this.io.DisplayFramebufferScale.x = 1;\n this.io.DisplayFramebufferScale.y = 1;\n\n this.io.DeltaTime = dt;\n\n let localPos: PIXI.Point = this.toLocal(app.renderer.plugins.interaction.mouse.global);\n if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY)\n {\n localPos = new PIXI.Point(-Number.MAX_VALUE, -Number.MAX_VALUE);\n }\n this.io.MousePos.x = localPos.x;\n this.io.MousePos.y = localPos.y;\n\n if (this.io.WantSetMousePos) {\n console.log(\"TODO: MousePos\", this.io.MousePos.x, this.io.MousePos.y);\n }\n\n if (typeof(document) !== \"undefined\") {\n if (this.io.MouseDrawCursor) {\n document.body.style.cursor = \"none\";\n } else {\n switch (ImGui.GetMouseCursor()) {\n case ImGui.MouseCursor.None: document.body.style.cursor = \"none\"; break;\n default: case ImGui.MouseCursor.Arrow: document.body.style.cursor = \"default\"; break;\n case ImGui.MouseCursor.TextInput: document.body.style.cursor = \"text\"; break; // When hovering over InputText, etc.\n case ImGui.MouseCursor.ResizeAll: document.body.style.cursor = \"move\"; break; // Unused\n case ImGui.MouseCursor.ResizeNS: document.body.style.cursor = \"ns-resize\"; break; // When hovering over an horizontal border\n case ImGui.MouseCursor.ResizeEW: document.body.style.cursor = \"ew-resize\"; break; // When hovering over a vertical border or a column\n case ImGui.MouseCursor.ResizeNESW: document.body.style.cursor = \"nesw-resize\"; break; // When hovering over the bottom-left corner of a window\n case ImGui.MouseCursor.ResizeNWSE: document.body.style.cursor = \"nwse-resize\"; break; // When hovering over the bottom-right corner of a window\n case ImGui.MouseCursor.Hand: document.body.style.cursor = \"move\"; break;\n }\n }\n }\n\n // Gamepad navigation mapping [BETA]\n for (let i = 0; i < this.io.NavInputs.length; ++i) {\n this.io.NavInputs[i] = 0.0;\n }\n if (this.io.ConfigFlags & ImGui.ConfigFlags.NavEnableGamepad) {\n // Update gamepad inputs\n const gamepads: (Gamepad | null)[] = (typeof(navigator) !== \"undefined\" && typeof(navigator.getGamepads) === \"function\") ? navigator.getGamepads() : [];\n for (let i = 0; i < gamepads.length; ++i) {\n const gamepad: Gamepad | null = gamepads[i];\n if (!gamepad) { continue; }\n const buttons_count: number = gamepad.buttons.length;\n const axes_count: number = gamepad.axes.length;\n const MAP_BUTTON = function(NAV_NO: number, BUTTON_NO: number): void {\n if (!gamepad) { return; }\n if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed)\n this.io.NavInputs[NAV_NO] = 1.0;\n }\n const MAP_ANALOG = function(NAV_NO: number, AXIS_NO: number, V0: number, V1: number): void {\n if (!gamepad) { return; }\n let v: number = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0;\n v = (v - V0) / (V1 - V0);\n if (v > 1.0) v = 1.0;\n if (this.io.NavInputs[NAV_NO] < v) this.io.NavInputs[NAV_NO] = v;\n }\n // TODO: map input based on vendor and product id\n // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id\n const match: RegExpMatchArray | null = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/);\n const match_chrome: RegExpMatchArray | null = gamepad.id.match(/^.*\\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\\).*$/);\n const vendor: string = (match && match[1]) || (match_chrome && match_chrome[1]) || \"0000\";\n const product: string = (match && match[2]) || (match_chrome && match_chrome[2]) || \"0000\";\n switch (vendor + product) {\n case \"046dc216\": // Logitech Logitech Dual Action (Vendor: 046d Product: c216)\n MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 2); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 0); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_ANALOG(ImGui.NavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left\n MAP_ANALOG(ImGui.NavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right\n MAP_ANALOG(ImGui.NavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up\n MAP_ANALOG(ImGui.NavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n case \"046dc21d\": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d)\n MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left\n MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right\n MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up\n MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_ANALOG(ImGui.NavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT\n MAP_ANALOG(ImGui.NavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n case \"2dc86001\": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001)\n case \"2dc86101\": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101)\n MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 0); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 4); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_ANALOG(ImGui.NavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left\n MAP_ANALOG(ImGui.NavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right\n MAP_ANALOG(ImGui.NavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up\n MAP_ANALOG(ImGui.NavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 6); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 7); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 8); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 9); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n default: // standard gamepad: https://w3c.github.io/gamepad/#remapping\n MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left\n MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right\n MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up\n MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n }\n }\n }\n\n ImGui.NewFrame();\n\n this.update(dt);\n\n ImGui.EndFrame();\n ImGui.Render();\n\n app.renderer.render(this.imgui, this.tex);\n\n this.surface.interactive = this.io.WantCaptureMouse;\n }\n}\n\nlet canvas: HTMLCanvasElement | null = null;\n\n//export let gl: WebGL2RenderingContext | null = null;\nlet g_ShaderHandle: WebGLProgram | null = null;\nlet g_VertHandle: WebGLShader | null = null;\nlet g_FragHandle: WebGLShader | null = null;\nlet g_AttribLocationTex: WebGLUniformLocation | null = null;\nlet g_AttribLocationProjMtx: WebGLUniformLocation | null = null;\nlet g_AttribLocationPosition: GLint = -1;\nlet g_AttribLocationUV: GLint = -1;\nlet g_AttribLocationColor: GLint = -1;\nlet g_VaoHandle: WebGLVertexArrayObject = null;\nlet g_VboHandle: WebGLBuffer | null = null;\nlet g_ElementsHandle: WebGLBuffer | null = null;\nlet g_FontTexture: WebGLTexture | null = null;\n\nfunction document_on_copy(event: ClipboardEvent): void {\n if (event.clipboardData) {\n event.clipboardData.setData(\"text/plain\", clipboard_text);\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction document_on_cut(event: ClipboardEvent): void {\n if (event.clipboardData) {\n event.clipboardData.setData(\"text/plain\", clipboard_text);\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction document_on_paste(event: ClipboardEvent): void {\n if (event.clipboardData) {\n clipboard_text = event.clipboardData.getData(\"text/plain\");\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction window_on_gamepadconnected(event: any /* GamepadEvent */): void {\n console.log(\"Gamepad connected at index %d: %s. %d buttons, %d axes.\",\n event.gamepad.index, event.gamepad.id,\n event.gamepad.buttons.length, event.gamepad.axes.length);\n}\n\nfunction window_on_gamepaddisconnected(event: any /* GamepadEvent */): void {\n console.log(\"Gamepad disconnected at index %d: %s.\",\n event.gamepad.index, event.gamepad.id);\n}\n\nfunction canvas_on_blur(event: FocusEvent): void {\n for (var io of contextIOs)\n {\n io.KeyCtrl = false;\n io.KeyShift = false;\n io.KeyAlt = false;\n io.KeySuper = false;\n for (let i = 0; i < io.KeysDown.length; ++i) {\n io.KeysDown[i] = false;\n }\n for (let i = 0; i < io.MouseDown.length; ++i) {\n io.MouseDown[i] = false;\n }\n }\n}\n\nfunction canvas_on_keydown(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.KeyCtrl = event.ctrlKey;\n io.KeyShift = event.shiftKey;\n io.KeyAlt = event.altKey;\n io.KeySuper = event.metaKey;\n ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown));\n io.KeysDown[event.keyCode] = true;\n // forward to the keypress event\n if (/*io.WantCaptureKeyboard ||*/ event.key === \"Tab\") {\n event.preventDefault();\n }\n }\n}\n\nfunction canvas_on_keyup(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.KeyCtrl = event.ctrlKey;\n io.KeyShift = event.shiftKey;\n io.KeyAlt = event.altKey;\n io.KeySuper = event.metaKey;\n ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown));\n io.KeysDown[event.keyCode] = false;\n if (io.WantCaptureKeyboard) {\n event.preventDefault();\n }\n }\n}\n\nfunction canvas_on_keypress(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.AddInputCharacter(event.charCode);\n if (io.WantCaptureKeyboard) {\n event.preventDefault();\n }\n }\n}\n\n// MouseEvent.button\n// A number representing a given button:\n// 0: Main button pressed, usually the left button or the un-initialized state\n// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present)\n// 2: Secondary button pressed, usually the right button\n// 3: Fourth button, typically the Browser Back button\n// 4: Fifth button, typically the Browser Forward button\nconst mouse_button_map: number[] = [ 0, 2, 1, 3, 4 ];\n\nfunction canvas_on_contextmenu(event: Event): void {\n for (var io of contextIOs)\n {\n if (io.WantCaptureMouse) { event.preventDefault(); }\n }\n}\n\nfunction canvas_on_wheel(event: WheelEvent): void {\n for (var io of contextIOs)\n {\n let scale: number = 1.0;\n switch (event.deltaMode) {\n case event.DOM_DELTA_PIXEL: scale = 0.01; break;\n case event.DOM_DELTA_LINE: scale = 0.2; break;\n case event.DOM_DELTA_PAGE: scale = 1.0; break;\n }\n io.MouseWheelH = event.deltaX * scale;\n io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text.\n if (io.WantCaptureMouse) {\n event.preventDefault();\n }\n }\n}\n\nexport function PrePIXIInit(): void\n{\n PIXI.Renderer.registerPlugin(\"imgui_renderer\", U.fromConstructor(ImGuiImplInternalRenderer));\n}\n\nexport function Init(_app: PIXI.Application): void {\n // Setup Dear ImGui binding\n ImGui.IMGUI_CHECKVERSION();\n\n if (typeof(document) !== \"undefined\") {\n document.body.addEventListener(\"copy\", document_on_copy);\n document.body.addEventListener(\"cut\", document_on_cut);\n document.body.addEventListener(\"paste\", document_on_paste);\n }\n\n if (typeof(window) !== \"undefined\") {\n window.addEventListener(\"gamepadconnected\", window_on_gamepadconnected);\n window.addEventListener(\"gamepaddisconnected\", window_on_gamepaddisconnected);\n }\n\n app = _app;\n gl = (app.renderer as any).gl;\n canvas = app.view;\n\n gl.getExtension(\"EXT_color_buffer_float\");\n\n if (canvas !== null) {\n canvas.style.touchAction = \"none\"; // Disable browser handling of all panning and zooming gestures.\n canvas.addEventListener(\"blur\", canvas_on_blur);\n canvas.addEventListener(\"keydown\", canvas_on_keydown);\n canvas.addEventListener(\"keyup\", canvas_on_keyup);\n canvas.addEventListener(\"keypress\", canvas_on_keypress);\n canvas.addEventListener(\"contextmenu\", canvas_on_contextmenu);\n canvas.addEventListener(\"wheel\", canvas_on_wheel);\n }\n\n CreateDeviceObjects();\n}\n\nexport function Shutdown(): void {\n DestroyDeviceObjects();\n\n if (canvas !== null) {\n canvas.removeEventListener(\"blur\", canvas_on_blur);\n canvas.removeEventListener(\"keydown\", canvas_on_keydown);\n canvas.removeEventListener(\"keyup\", canvas_on_keyup);\n canvas.removeEventListener(\"keypress\", canvas_on_keypress);\n canvas.removeEventListener(\"contextmenu\", canvas_on_contextmenu);\n canvas.removeEventListener(\"wheel\", canvas_on_wheel);\n }\n\n app = null;\n canvas = null;\n\n if (typeof(window) !== \"undefined\") {\n window.removeEventListener(\"gamepadconnected\", window_on_gamepadconnected);\n window.removeEventListener(\"gamepaddisconnected\", window_on_gamepaddisconnected);\n }\n\n if (typeof(document) !== \"undefined\") {\n document.body.removeEventListener(\"copy\", document_on_copy);\n document.body.removeEventListener(\"cut\", document_on_cut);\n document.body.removeEventListener(\"paste\", document_on_paste);\n }\n}\n\nfunction CreateFontsTexture(): void {\n const io = ImGui.GetIO();\n\n // Backup GL state\n const last_texture: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D);\n\n // Build texture atlas\n // const width: number = 256;\n // const height: number = 256;\n // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff);\n const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory.\n // console.log(`font texture ${width} x ${height} @ ${pixels.length}`);\n\n // Upload texture to graphics system\n g_FontTexture = gl && gl.createTexture();\n gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture);\n gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);\n gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR);\n // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2\n gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels);\n\n // Store our identifier\n io.Fonts.TexID = g_FontTexture || { foo: \"bar\" };\n // console.log(\"font texture id\", g_FontTexture);\n\n // Restore modified GL state\n gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture);\n}\n\nfunction DestroyFontsTexture(): void {\n const io = ImGui.GetIO();\n io.Fonts.TexID = null;\n gl && gl.deleteTexture(g_FontTexture); g_FontTexture = null;\n}\n\nfunction CreateDeviceObjects(): void {\n const vertex_shader: string[] = [\n \"#version 300 es\",\n \"uniform mat4 ProjMtx;\",\n \"in vec2 Position;\",\n \"in vec2 UV;\",\n \"in vec4 Color;\",\n \"out vec2 Frag_UV;\",\n \"out vec4 Frag_Color;\",\n \"void main() {\",\n \"\tFrag_UV = UV;\",\n \"\tFrag_Color = Color;\",\n \"\tgl_Position = ProjMtx * vec4(Position.xy,0,1);\",\n \"}\",\n ];\n\n const fragment_shader: string[] = [\n \"#version 300 es\",\n \"precision mediump float;\", // WebGL requires precision specifiers\n \"uniform sampler2D Texture;\",\n \"in vec2 Frag_UV;\",\n \"in vec4 Frag_Color;\",\n \"out vec4 OutColor;\",\n \"void main() {\",\n \"\tOutColor = Frag_Color * texture(Texture, Frag_UV);\",\n \"}\",\n ];\n\n g_ShaderHandle = gl && gl.createProgram();\n g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER);\n g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER);\n gl && gl.shaderSource(g_VertHandle as WebGLShader, vertex_shader.join(\"\\n\"));\n gl && gl.shaderSource(g_FragHandle as WebGLShader, fragment_shader.join(\"\\n\"));\n gl && gl.compileShader(g_VertHandle as WebGLShader);\n gl && gl.compileShader(g_FragHandle as WebGLShader);\n gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_VertHandle as WebGLShader);\n gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_FragHandle as WebGLShader);\n gl && gl.linkProgram(g_ShaderHandle as WebGLProgram);\n\n g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, \"Texture\");\n g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, \"ProjMtx\");\n g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"Position\") || 0;\n g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"UV\") || 0;\n g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"Color\") || 0;\n\n g_VaoHandle = gl && gl.createVertexArray();\n g_VboHandle = gl && gl.createBuffer();\n g_ElementsHandle = gl && gl.createBuffer();\n\n}\n\nfunction DestroyDeviceObjects(): void {\n DestroyFontsTexture();\n\n gl && gl.deleteVertexArray(g_VaoHandle); g_VaoHandle = null;\n gl && gl.deleteBuffer(g_VboHandle); g_VboHandle = null;\n gl && gl.deleteBuffer(g_ElementsHandle); g_ElementsHandle = null;\n\n g_AttribLocationTex = null;\n g_AttribLocationProjMtx = null;\n g_AttribLocationPosition = -1;\n g_AttribLocationUV = -1;\n g_AttribLocationColor = -1;\n\n gl && gl.deleteProgram(g_ShaderHandle); g_ShaderHandle = null;\n gl && gl.deleteShader(g_VertHandle); g_VertHandle = null;\n gl && gl.deleteShader(g_FragHandle); g_FragHandle = null;\n}\n"],"names":["require","global","this","Polyfill","commonjsGlobal","delimiter","hasOwnProperty","map","parse","qsParse","qsStringify","sign","url","_url","prototypeAccessors","prototypeAccessors$1","EventEmitter","staticAccessors","Buffer","map$1","prototypeAccessors$2","prototypeAccessors$3","prototypeAccessors$4","prototypeAccessors$5","staticAccessors$1","earcut","tempAnchor","Resource","Url","Loader","Loader$1","middleware","vertex","fragment","tempPoint","tempMat","defaultFilterVertex","PIXI.ObjectRenderer","ImGui.GetDrawData","ImGui.ImDrawVertSize","ImGui.ImDrawVertPosOffset","ImGui.ImDrawVertUVOffset","ImGui.ImDrawVertColOffset","ImGui.ImDrawVert","ImGui.ImVec4","ImGui.ImDrawIdxSize","PIXI.Sprite","PIXI.Container","PIXI.BaseRenderTexture","PIXI.SCALE_MODES","PIXI.TYPES","PIXI.FORMATS","PIXI.RenderTexture","ImGui.CreateContext","ImGui.SetCurrentContext","ImGui.GetIO","ImGui.LoadIniSettingsFromMemory","ImGui.BackendFlags","ImGui.Key","PIXI.Rectangle","PIXI.settings","ImGui.SaveIniSettingsToMemory","PIXI.Point","ImGui.GetMouseCursor","ImGui.MouseCursor","ImGui.ConfigFlags","ImGui.NavInput","ImGui.NewFrame","ImGui.EndFrame","ImGui.Render","canvas","ImGui.IM_ASSERT","ImGui.IM_ARRAYSIZE","PIXI.Renderer","U.fromConstructor","ImGui.IMGUI_CHECKVERSION"],"mappings":"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C,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGhF,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGhF,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;;;QAGtF,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAA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"} \ No newline at end of file diff --git a/imgui_impl.ts b/imgui_impl.ts new file mode 100644 index 0000000..a5dad20 --- /dev/null +++ b/imgui_impl.ts @@ -0,0 +1,797 @@ +import * as ImGui from "imgui-js"; +import { ImVec2 } from "imgui-js"; +import * as PIXI from "pixi.js"; +import * as U from "./utils"; + +let clipboard_text: string = ""; + +const contexts: ImGui.ImGuiContext[] = []; +const contextIOs: ImGui.ImGuiIO[] = []; +let isFirstWindow: boolean = true; + +class ImGuiImplInternalRenderer extends PIXI.ObjectRenderer +{ + constructor(r: PIXI.Renderer) + { + super(r); + } + render(owner: PIXI.DisplayObject): void + { + if (!(owner instanceof ImGuiWindowLayer)) return; + + const window: ImGuiWindow = (owner as ImGuiWindowLayer).window; + + const io: ImGui.ImGuiIO = window.io; + const draw_data: ImGui.ImDrawData = ImGui.GetDrawData(); + if (draw_data === null) { throw new Error(); } + + gl || console.log(draw_data); + + // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) + const fb_width: number = io.DisplaySize.x * io.DisplayFramebufferScale.x; + const fb_height: number = io.DisplaySize.y * io.DisplayFramebufferScale.y; + if (fb_width === 0 || fb_height === 0) { + return; + } + draw_data.ScaleClipRects(io.DisplayFramebufferScale); + + // Backup GL state + const last_program: WebGLProgram | null = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null; + const last_active_texture: GLenum | null = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null; + gl && gl.activeTexture(gl.TEXTURE0); + const last_texture0: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null; + const last_vertex_array: WebGLVertexArrayObject | null = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null; + const last_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null; + const last_element_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null; + // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode); + const last_viewport: Int32Array | null = gl && gl.getParameter(gl.VIEWPORT) || null; + const last_scissor_box: Int32Array | null = gl && gl.getParameter(gl.SCISSOR_BOX) || null; + const last_blend_src_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null; + const last_blend_dst_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_RGB) || null; + const last_blend_src_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null; + const last_blend_dst_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null; + const last_blend_equation_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null; + const last_blend_equation_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null; + const last_enable_blend: GLboolean | null = gl && gl.getParameter(gl.BLEND) || null; + const last_enable_cull_face: GLboolean | null = gl && gl.getParameter(gl.CULL_FACE) || null; + const last_enable_depth_test: GLboolean | null = gl && gl.getParameter(gl.DEPTH_TEST) || null; + const last_enable_scissor_test: GLboolean | null = gl && gl.getParameter(gl.SCISSOR_TEST) || null; + + gl.clearColor(0, 0, 0, 0); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + + gl && gl.bindVertexArray(g_VaoHandle); + + // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill + gl && gl.enable(gl.BLEND); + gl && gl.blendEquation(gl.FUNC_ADD); + gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE); + gl && gl.disable(gl.CULL_FACE); + gl && gl.disable(gl.DEPTH_TEST); + gl && gl.enable(gl.SCISSOR_TEST); + // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + + // Setup viewport, orthographic projection matrix + // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps. + gl && gl.viewport(0, 0, fb_width, fb_height); + const L: number = draw_data.DisplayPos.x; + const R: number = draw_data.DisplayPos.x + draw_data.DisplaySize.x; + const T: number = draw_data.DisplayPos.y; + const B: number = draw_data.DisplayPos.y + draw_data.DisplaySize.y; + // we actually flip the bottom and top here to match with PIXI's texture usage + const ortho_projection: Float32Array = new Float32Array([ + 2.0 / (R - L), 0.0, 0.0, 0.0, + 0.0, 2.0 / (B - T), 0.0, 0.0, + 0.0, 0.0, -1.0, 0.0, + (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0, + ]); + gl && gl.useProgram(g_ShaderHandle); + gl && gl.uniform1i(g_AttribLocationTex, 0); + gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection); + + // Render command lists + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.enableVertexAttribArray(g_AttribLocationPosition); + gl && gl.enableVertexAttribArray(g_AttribLocationUV); + gl && gl.enableVertexAttribArray(g_AttribLocationColor); + + gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertPosOffset); + gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertUVOffset); + gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImGui.ImDrawVertSize, ImGui.ImDrawVertColOffset); + + // Draw + const pos = draw_data.DisplayPos; + const idx_buffer_type: GLenum = gl && ((ImGui.ImDrawIdxSize === 4) ? gl.UNSIGNED_INT : gl.UNSIGNED_SHORT) || 0; + draw_data.IterateDrawLists((draw_list: ImGui.ImDrawList): void => { + gl || console.log(draw_list); + gl || console.log("VtxBuffer.length", draw_list.VtxBuffer.length); + gl || console.log("IdxBuffer.length", draw_list.IdxBuffer.length); + + let idx_buffer_offset: number = 0; + + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW); + gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle); + gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW); + + draw_list.IterateDrawCmds((draw_cmd: ImGui.ImDrawCmd): void => { + gl || console.log(draw_cmd); + gl || console.log("ElemCount", draw_cmd.ElemCount); + gl || console.log("ClipRect", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y); + gl || console.log("TextureId", draw_cmd.TextureId); + if (!gl) { + console.log("i: pos.x pos.y uv.x uv.y col"); + for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) { + const view: ImGui.ImDrawVert = new ImGui.ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImGui.ImDrawVertSize); + console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${("00000000" + view.col[0].toString(16)).substr(-8)}`); + } + } + + if (draw_cmd.UserCallback !== null) { + // User callback (registered via ImDrawList::AddCallback) + draw_cmd.UserCallback(draw_list, draw_cmd); + } else { + const clip_rect = new ImGui.ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y); + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) { + // Apply scissor/clipping rectangle + gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y); + + // Bind texture, Draw + gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId); + gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset); + } + } + + idx_buffer_offset += draw_cmd.ElemCount * ImGui.ImDrawIdxSize; + }); + }); + + // Restore modified GL state + + gl && (last_program !== null) && gl.useProgram(last_program); + gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0); + gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture); + gl && gl.disableVertexAttribArray(g_AttribLocationPosition); + gl && gl.disableVertexAttribArray(g_AttribLocationUV); + gl && gl.disableVertexAttribArray(g_AttribLocationColor); + gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array); + gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer); + gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer); + gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]); + gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]); + gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha); + gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); + gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND)); + gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE)); + gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST)); + gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST)); + // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]); + } +} + +let gl: WebGL2RenderingContext = null; +let app: PIXI.Application = null; + +class ImGuiWindowLayer extends PIXI.Sprite +{ + public readonly window: ImGuiWindow; + constructor(window: ImGuiWindow, tex:PIXI.RenderTexture) + { + super(); + this.pluginName = "imgui_renderer"; + this.window = window; + } +} + +export class ImGuiWindow extends PIXI.Container +{ + public readonly ctx: ImGui.ImGuiContext; + public readonly io: ImGui.ImGuiIO; + private sizeX: number; + private sizeY: number; + public getSizeX(): number { return this.sizeX; } + public getSizeY(): number { return this.sizeY; } + + private baseTex: PIXI.BaseRenderTexture = new PIXI.BaseRenderTexture({scaleMode: PIXI.SCALE_MODES.LINEAR, resolution: 1, type: PIXI.TYPES.FLOAT, format: PIXI.FORMATS.RGBA}); + private tex: PIXI.RenderTexture = new PIXI.RenderTexture(this.baseTex); + + private surface: PIXI.Sprite = new PIXI.Sprite(this.tex); + private imgui: ImGuiWindowLayer = new ImGuiWindowLayer(this, this.tex); + + private update: (dt: number) => void; + constructor(sizeX: number, sizeY: number, update: (dt: number) => void) + { + super(); + + this.ctx = ImGui.CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts); + ImGui.SetCurrentContext(this.ctx); + this.io = ImGui.GetIO(); + + contexts.push(this.ctx); + contextIOs.push(this.io); + + if (contexts.length == 1) + { + CreateFontsTexture(); + } + + if (typeof(window) !== "undefined") { + ImGui.LoadIniSettingsFromMemory(window.localStorage.getItem("imgui.ini") || ""); + } + + if (typeof(navigator) !== "undefined") { + this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null; + } + + this.io.SetClipboardTextFn = (user_data: any, text: string): void => { + clipboard_text = text; + // console.log(`set clipboard_text: "${clipboard_text}"`); + if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.writeText: "${clipboard_text}"`); + (navigator as any).clipboard.writeText(clipboard_text).then((): void => { + // console.log(`clipboard.writeText: "${clipboard_text}" done.`); + }); + } + }; + this.io.GetClipboardTextFn = (user_data: any): string => { + // if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.readText: "${clipboard_text}"`); + // (navigator as any).clipboard.readText().then((text: string): void => { + // clipboard_text = text; + // console.log(`clipboard.readText: "${clipboard_text}" done.`); + // }); + // } + // console.log(`get clipboard_text: "${clipboard_text}"`); + return clipboard_text; + }; + this.io.ClipboardUserData = null; + + // Setup back-end capabilities flags + this.io.BackendFlags |= ImGui.BackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional) + + // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array. + this.io.KeyMap[ImGui.Key.Tab] = 9; + this.io.KeyMap[ImGui.Key.LeftArrow] = 37; + this.io.KeyMap[ImGui.Key.RightArrow] = 39; + this.io.KeyMap[ImGui.Key.UpArrow] = 38; + this.io.KeyMap[ImGui.Key.DownArrow] = 40; + this.io.KeyMap[ImGui.Key.PageUp] = 33; + this.io.KeyMap[ImGui.Key.PageDown] = 34; + this.io.KeyMap[ImGui.Key.Home] = 36; + this.io.KeyMap[ImGui.Key.End] = 35; + this.io.KeyMap[ImGui.Key.Insert] = 45; + this.io.KeyMap[ImGui.Key.Delete] = 46; + this.io.KeyMap[ImGui.Key.Backspace] = 8; + this.io.KeyMap[ImGui.Key.Space] = 32; + this.io.KeyMap[ImGui.Key.Enter] = 13; + this.io.KeyMap[ImGui.Key.Escape] = 27; + this.io.KeyMap[ImGui.Key.A] = 65; + this.io.KeyMap[ImGui.Key.C] = 67; + this.io.KeyMap[ImGui.Key.V] = 86; + this.io.KeyMap[ImGui.Key.X] = 88; + this.io.KeyMap[ImGui.Key.Y] = 89; + this.io.KeyMap[ImGui.Key.Z] = 90; + + this.update = update; + this.resize(sizeX, sizeY); + this.imgui.pluginName = 'imgui_renderer'; + this.addChild(this.surface); + app.renderer.plugins.interaction.addListener("mousedown", this.mouseDown.bind(this)); + app.renderer.plugins.interaction.addListener("mouseup", this.mouseUp.bind(this)); + app.ticker.add(this.updateInternal.bind(this)); + + this.interactive = false; + this.interactiveChildren = true; + + this.surface.interactive = false; + } + withContext(cb: () => void) + { + ImGui.SetCurrentContext(this.ctx); + cb(); + } + mouseDown(e: PIXI.interaction.InteractionEvent): void + { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) + { + this.io.MouseDown[mouse_button_map[0]] = true; + } + } + mouseUp(e: PIXI.interaction.InteractionEvent): void + { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) + { + this.io.MouseDown[mouse_button_map[0]] = false; + } + } + resize(sizeX: number, sizeY: number) + { + this.sizeX = sizeX; + this.sizeY = sizeY; + this.baseTex.resize(sizeX, sizeY); + this.tex.frame = new PIXI.Rectangle(0, 0, this.baseTex.width, this.baseTex.height); + } + updateInternal(deltaTime: number) + { + const dt: number = deltaTime * 1 / (1000 * PIXI.settings.TARGET_FPMS); + + ImGui.SetCurrentContext(this.ctx); + + if (this.io.WantSaveIniSettings) { + this.io.WantSaveIniSettings = false; + if (typeof(window) !== "undefined") { + window.localStorage.setItem("imgui.ini", ImGui.SaveIniSettingsToMemory()); + } + } + + this.io.DisplaySize.x = this.sizeX; + this.io.DisplaySize.y = this.sizeY; + this.io.DisplayFramebufferScale.x = 1; + this.io.DisplayFramebufferScale.y = 1; + + this.io.DeltaTime = dt; + + let localPos: PIXI.Point = this.toLocal(app.renderer.plugins.interaction.mouse.global); + if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY) + { + localPos = new PIXI.Point(-Number.MAX_VALUE, -Number.MAX_VALUE); + } + this.io.MousePos.x = localPos.x; + this.io.MousePos.y = localPos.y; + + if (this.io.WantSetMousePos) { + console.log("TODO: MousePos", this.io.MousePos.x, this.io.MousePos.y); + } + + if (typeof(document) !== "undefined") { + if (this.io.MouseDrawCursor) { + document.body.style.cursor = "none"; + } else { + switch (ImGui.GetMouseCursor()) { + case ImGui.MouseCursor.None: document.body.style.cursor = "none"; break; + default: case ImGui.MouseCursor.Arrow: document.body.style.cursor = "default"; break; + case ImGui.MouseCursor.TextInput: document.body.style.cursor = "text"; break; // When hovering over InputText, etc. + case ImGui.MouseCursor.ResizeAll: document.body.style.cursor = "move"; break; // Unused + case ImGui.MouseCursor.ResizeNS: document.body.style.cursor = "ns-resize"; break; // When hovering over an horizontal border + case ImGui.MouseCursor.ResizeEW: document.body.style.cursor = "ew-resize"; break; // When hovering over a vertical border or a column + case ImGui.MouseCursor.ResizeNESW: document.body.style.cursor = "nesw-resize"; break; // When hovering over the bottom-left corner of a window + case ImGui.MouseCursor.ResizeNWSE: document.body.style.cursor = "nwse-resize"; break; // When hovering over the bottom-right corner of a window + case ImGui.MouseCursor.Hand: document.body.style.cursor = "move"; break; + } + } + } + + // Gamepad navigation mapping [BETA] + for (let i = 0; i < this.io.NavInputs.length; ++i) { + this.io.NavInputs[i] = 0.0; + } + if (this.io.ConfigFlags & ImGui.ConfigFlags.NavEnableGamepad) { + // Update gamepad inputs + const gamepads: (Gamepad | null)[] = (typeof(navigator) !== "undefined" && typeof(navigator.getGamepads) === "function") ? navigator.getGamepads() : []; + for (let i = 0; i < gamepads.length; ++i) { + const gamepad: Gamepad | null = gamepads[i]; + if (!gamepad) { continue; } + const buttons_count: number = gamepad.buttons.length; + const axes_count: number = gamepad.axes.length; + const MAP_BUTTON = function(NAV_NO: number, BUTTON_NO: number): void { + if (!gamepad) { return; } + if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed) + this.io.NavInputs[NAV_NO] = 1.0; + } + const MAP_ANALOG = function(NAV_NO: number, AXIS_NO: number, V0: number, V1: number): void { + if (!gamepad) { return; } + let v: number = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0; + v = (v - V0) / (V1 - V0); + if (v > 1.0) v = 1.0; + if (this.io.NavInputs[NAV_NO] < v) this.io.NavInputs[NAV_NO] = v; + } + // TODO: map input based on vendor and product id + // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id + const match: RegExpMatchArray | null = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/); + const match_chrome: RegExpMatchArray | null = gamepad.id.match(/^.*\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\).*$/); + const vendor: string = (match && match[1]) || (match_chrome && match_chrome[1]) || "0000"; + const product: string = (match && match[2]) || (match_chrome && match_chrome[2]) || "0000"; + switch (vendor + product) { + case "046dc216": // Logitech Logitech Dual Action (Vendor: 046d Product: c216) + MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 2); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 0); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGui.NavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGui.NavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGui.NavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGui.NavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + case "046dc21d": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d) + MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_ANALOG(ImGui.NavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT + MAP_ANALOG(ImGui.NavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + case "2dc86001": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001) + case "2dc86101": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101) + MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 0); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 4); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGui.NavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGui.NavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGui.NavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGui.NavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 6); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 7); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 8); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 9); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + default: // standard gamepad: https://w3c.github.io/gamepad/#remapping + MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + } + } + } + + ImGui.NewFrame(); + + this.update(dt); + + ImGui.EndFrame(); + ImGui.Render(); + + app.renderer.render(this.imgui, this.tex); + + this.surface.interactive = this.io.WantCaptureMouse; + } +} + +let canvas: HTMLCanvasElement | null = null; + +//export let gl: WebGL2RenderingContext | null = null; +let g_ShaderHandle: WebGLProgram | null = null; +let g_VertHandle: WebGLShader | null = null; +let g_FragHandle: WebGLShader | null = null; +let g_AttribLocationTex: WebGLUniformLocation | null = null; +let g_AttribLocationProjMtx: WebGLUniformLocation | null = null; +let g_AttribLocationPosition: GLint = -1; +let g_AttribLocationUV: GLint = -1; +let g_AttribLocationColor: GLint = -1; +let g_VaoHandle: WebGLVertexArrayObject = null; +let g_VboHandle: WebGLBuffer | null = null; +let g_ElementsHandle: WebGLBuffer | null = null; +let g_FontTexture: WebGLTexture | null = null; + +function document_on_copy(event: ClipboardEvent): void { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function document_on_cut(event: ClipboardEvent): void { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function document_on_paste(event: ClipboardEvent): void { + if (event.clipboardData) { + clipboard_text = event.clipboardData.getData("text/plain"); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function window_on_gamepadconnected(event: any /* GamepadEvent */): void { + console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.", + event.gamepad.index, event.gamepad.id, + event.gamepad.buttons.length, event.gamepad.axes.length); +} + +function window_on_gamepaddisconnected(event: any /* GamepadEvent */): void { + console.log("Gamepad disconnected at index %d: %s.", + event.gamepad.index, event.gamepad.id); +} + +function canvas_on_blur(event: FocusEvent): void { + for (var io of contextIOs) + { + io.KeyCtrl = false; + io.KeyShift = false; + io.KeyAlt = false; + io.KeySuper = false; + for (let i = 0; i < io.KeysDown.length; ++i) { + io.KeysDown[i] = false; + } + for (let i = 0; i < io.MouseDown.length; ++i) { + io.MouseDown[i] = false; + } + } +} + +function canvas_on_keydown(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = true; + // forward to the keypress event + if (/*io.WantCaptureKeyboard ||*/ event.key === "Tab") { + event.preventDefault(); + } + } +} + +function canvas_on_keyup(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = false; + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} + +function canvas_on_keypress(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.AddInputCharacter(event.charCode); + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} + +// MouseEvent.button +// A number representing a given button: +// 0: Main button pressed, usually the left button or the un-initialized state +// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present) +// 2: Secondary button pressed, usually the right button +// 3: Fourth button, typically the Browser Back button +// 4: Fifth button, typically the Browser Forward button +const mouse_button_map: number[] = [ 0, 2, 1, 3, 4 ]; + +function canvas_on_contextmenu(event: Event): void { + for (var io of contextIOs) + { + if (io.WantCaptureMouse) { event.preventDefault(); } + } +} + +function canvas_on_wheel(event: WheelEvent): void { + for (var io of contextIOs) + { + let scale: number = 1.0; + switch (event.deltaMode) { + case event.DOM_DELTA_PIXEL: scale = 0.01; break; + case event.DOM_DELTA_LINE: scale = 0.2; break; + case event.DOM_DELTA_PAGE: scale = 1.0; break; + } + io.MouseWheelH = event.deltaX * scale; + io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text. + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} + +export function PrePIXIInit(): void +{ + PIXI.Renderer.registerPlugin("imgui_renderer", U.fromConstructor(ImGuiImplInternalRenderer)); +} + +export function Init(_app: PIXI.Application): void { + // Setup Dear ImGui binding + ImGui.IMGUI_CHECKVERSION(); + + if (typeof(document) !== "undefined") { + document.body.addEventListener("copy", document_on_copy); + document.body.addEventListener("cut", document_on_cut); + document.body.addEventListener("paste", document_on_paste); + } + + if (typeof(window) !== "undefined") { + window.addEventListener("gamepadconnected", window_on_gamepadconnected); + window.addEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + + app = _app; + gl = (app.renderer as any).gl; + canvas = app.view; + + gl.getExtension("EXT_color_buffer_float"); + + if (canvas !== null) { + canvas.style.touchAction = "none"; // Disable browser handling of all panning and zooming gestures. + canvas.addEventListener("blur", canvas_on_blur); + canvas.addEventListener("keydown", canvas_on_keydown); + canvas.addEventListener("keyup", canvas_on_keyup); + canvas.addEventListener("keypress", canvas_on_keypress); + canvas.addEventListener("contextmenu", canvas_on_contextmenu); + canvas.addEventListener("wheel", canvas_on_wheel); + } + + CreateDeviceObjects(); +} + +export function Shutdown(): void { + DestroyDeviceObjects(); + + if (canvas !== null) { + canvas.removeEventListener("blur", canvas_on_blur); + canvas.removeEventListener("keydown", canvas_on_keydown); + canvas.removeEventListener("keyup", canvas_on_keyup); + canvas.removeEventListener("keypress", canvas_on_keypress); + canvas.removeEventListener("contextmenu", canvas_on_contextmenu); + canvas.removeEventListener("wheel", canvas_on_wheel); + } + + app = null; + canvas = null; + + if (typeof(window) !== "undefined") { + window.removeEventListener("gamepadconnected", window_on_gamepadconnected); + window.removeEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + + if (typeof(document) !== "undefined") { + document.body.removeEventListener("copy", document_on_copy); + document.body.removeEventListener("cut", document_on_cut); + document.body.removeEventListener("paste", document_on_paste); + } +} + +function CreateFontsTexture(): void { + const io = ImGui.GetIO(); + + // Backup GL state + const last_texture: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D); + + // Build texture atlas + // const width: number = 256; + // const height: number = 256; + // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff); + const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory. + // console.log(`font texture ${width} x ${height} @ ${pixels.length}`); + + // Upload texture to graphics system + g_FontTexture = gl && gl.createTexture(); + gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2 + gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels); + + // Store our identifier + io.Fonts.TexID = g_FontTexture || { foo: "bar" }; + // console.log("font texture id", g_FontTexture); + + // Restore modified GL state + gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture); +} + +function DestroyFontsTexture(): void { + const io = ImGui.GetIO(); + io.Fonts.TexID = null; + gl && gl.deleteTexture(g_FontTexture); g_FontTexture = null; +} + +function CreateDeviceObjects(): void { + const vertex_shader: string[] = [ + "#version 300 es", + "uniform mat4 ProjMtx;", + "in vec2 Position;", + "in vec2 UV;", + "in vec4 Color;", + "out vec2 Frag_UV;", + "out vec4 Frag_Color;", + "void main() {", + " Frag_UV = UV;", + " Frag_Color = Color;", + " gl_Position = ProjMtx * vec4(Position.xy,0,1);", + "}", + ]; + + const fragment_shader: string[] = [ + "#version 300 es", + "precision mediump float;", // WebGL requires precision specifiers + "uniform sampler2D Texture;", + "in vec2 Frag_UV;", + "in vec4 Frag_Color;", + "out vec4 OutColor;", + "void main() {", + " OutColor = Frag_Color * texture(Texture, Frag_UV);", + "}", + ]; + + g_ShaderHandle = gl && gl.createProgram(); + g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER); + g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER); + gl && gl.shaderSource(g_VertHandle as WebGLShader, vertex_shader.join("\n")); + gl && gl.shaderSource(g_FragHandle as WebGLShader, fragment_shader.join("\n")); + gl && gl.compileShader(g_VertHandle as WebGLShader); + gl && gl.compileShader(g_FragHandle as WebGLShader); + gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_VertHandle as WebGLShader); + gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_FragHandle as WebGLShader); + gl && gl.linkProgram(g_ShaderHandle as WebGLProgram); + + g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, "Texture"); + g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, "ProjMtx"); + g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "Position") || 0; + g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "UV") || 0; + g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "Color") || 0; + + g_VaoHandle = gl && gl.createVertexArray(); + g_VboHandle = gl && gl.createBuffer(); + g_ElementsHandle = gl && gl.createBuffer(); + +} + +function DestroyDeviceObjects(): void { + DestroyFontsTexture(); + + gl && gl.deleteVertexArray(g_VaoHandle); g_VaoHandle = null; + gl && gl.deleteBuffer(g_VboHandle); g_VboHandle = null; + gl && gl.deleteBuffer(g_ElementsHandle); g_ElementsHandle = null; + + g_AttribLocationTex = null; + g_AttribLocationProjMtx = null; + g_AttribLocationPosition = -1; + g_AttribLocationUV = -1; + g_AttribLocationColor = -1; + + gl && gl.deleteProgram(g_ShaderHandle); g_ShaderHandle = null; + gl && gl.deleteShader(g_VertHandle); g_VertHandle = null; + gl && gl.deleteShader(g_FragHandle); g_FragHandle = null; +} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..08ec8c9 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1639 @@ +{ + "name": "imgui-js-pixi", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@pixi/accessibility": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/accessibility/-/accessibility-5.1.5.tgz", + "integrity": "sha512-xHgcVN6sDqqpkcgk+yJ5s6tCf7ZW2YZVop7bQL9avuJaP6I/0mbwUN3evWonQ4QNO6SF8V/QXOc3ZmEdkYILPA==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/app": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/app/-/app-5.1.5.tgz", + "integrity": "sha512-BxcNAulUXVkTpOqS5gjorO2d3+wksmBfn0VFGdiq7Elbv3v0s8wCwGOlOSMJoAjYSPXz8H8t3dw8NHxqxpI53A==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3" + } + }, + "@pixi/constants": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@pixi/constants/-/constants-5.1.0.tgz", + "integrity": "sha512-86cogDvjF9yNvmxeizwkIhA0Kl2z3gUSWMf2daYx903dzyje7fwkzRrKLnqDUn6vSAxRXiska0DMJhwYsIC29w==" + }, + "@pixi/core": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/core/-/core-5.1.5.tgz", + "integrity": "sha512-pt7JTgRyGyOm1VNGhYqAjdIggQ5SjGpctLEBFwPlZDOTeEjJ85NADwCvN/E9ToIW7Gv/1urrNKsoVGlADcV6vw==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/runner": "^5.1.1", + "@pixi/settings": "^5.1.3", + "@pixi/ticker": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/display": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/display/-/display-5.1.3.tgz", + "integrity": "sha512-zQJfwH9tSilEfpajVJKM2bavIXBFMokscXyFIdokBSjLQL22mgEyR0mHZ3u6OECUa0PEVUA64eePv6KmPZ+bJQ==", + "requires": { + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/extract": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/extract/-/extract-5.1.5.tgz", + "integrity": "sha512-sn13RxtWpqZq05K9IJxF/00ddMsiDlpQAwEwA8fQIsMSbt6lBTm1fa0u/nZqQjRhJk72Q+41h4LXEhZEMMowAg==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/filter-alpha": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-alpha/-/filter-alpha-5.1.5.tgz", + "integrity": "sha512-Jb5e7lybvMOXjdTOEN883h2N5Qe5rLNdTmPxOoK43RR+LQMk8D/Iw3zWpQ1oIwpJFiUkgwn0CmO5YaK6STh34w==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/filter-blur": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-blur/-/filter-blur-5.1.5.tgz", + "integrity": "sha512-9eSJtg8kLwKrNnJmg2c1vlOcP0PYhvZdUk97D2+HrE0j1BZTJ2OxHb26UJSiMU0kBCUomtuFvCiNtFT2GCWbjg==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/settings": "^5.1.3" + } + }, + "@pixi/filter-color-matrix": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-color-matrix/-/filter-color-matrix-5.1.5.tgz", + "integrity": "sha512-zhg8FE22WA7sH1mhvjjSaWav7BXFbU63usdh9pVNv2Hd7cuDtO9x8aLy+RqGozqENfYHzRUlTdKrNdl5QEbYMg==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/filter-displacement": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-displacement/-/filter-displacement-5.1.5.tgz", + "integrity": "sha512-/ZzlTT+jFQTwg57jj6kl4lH+0Z3iwtp+tDXdYcusNDe44hZn9Wd+IzZkS/LCeay40cY4JPRrXznVwlZ6AiBsHQ==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0" + } + }, + "@pixi/filter-fxaa": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-fxaa/-/filter-fxaa-5.1.5.tgz", + "integrity": "sha512-Zg2pSBpb0pxJozWraNrHUC97C3gSjK+NSaMGBN6NpfaGcn+/xaZjFBwwYDeTpHAw6IDV+3Ln+z7D5h9pPEliKg==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/filter-noise": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-noise/-/filter-noise-5.1.5.tgz", + "integrity": "sha512-/HGr9dxvBVc+qRJ/JU/6ZHz3BshnUwCTgEfQtxJmo2I6lqn9cWoiL4q+iKk9QkGmLtLNip77zc0KveYN01eh/g==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/graphics": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/graphics/-/graphics-5.1.5.tgz", + "integrity": "sha512-u9uq/6ylS5oRCsWaTi0uOCuAimAvaXJ57ATKT/nylHRXv+GfbPoMJAHpqTWx8HojK7P6PBUJCenPa0BFVcq9gg==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/interaction": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/interaction/-/interaction-5.1.5.tgz", + "integrity": "sha512-N8SONgHZZuDLPAL3LvfMTfgRsD6084KJA9VbwJ6Ujvm95NwSInNC2HRB6uXsSYTC4I1bMcRhot3CjZkB5BEURA==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/ticker": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/loaders": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/loaders/-/loaders-5.1.5.tgz", + "integrity": "sha512-jcuJMMGIr7/o8HKtVL9YzUTQQGk4K4uNQylUbhnNDFVuJcVzuBwD/TCWJ/+2Y879vBzipXdhCw7JLA4F8w6bkg==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/utils": "^5.1.3", + "resource-loader": "^3.0.1" + } + }, + "@pixi/math": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@pixi/math/-/math-5.1.0.tgz", + "integrity": "sha512-Vf9W4SgYRRQMdSq8tFViKKKGCU3iklf0RDzd+wzp4gezOxe3m0PLB7XKwvVrP1hRjUh49zIAL9JBpYREPS1EMw==" + }, + "@pixi/mesh": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/mesh/-/mesh-5.1.5.tgz", + "integrity": "sha512-gWBwBkIV0Dj0nA+a/ymtv4oQOium3oiehKdhSynQZj9C+pwd3YUSJGjHWs4b+TIQxZm2RHEsSSw4gCw/Ih1cuw==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/mesh-extras": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/mesh-extras/-/mesh-extras-5.1.5.tgz", + "integrity": "sha512-aMjTD3kBf2h31ijYapapQOJIoQuO26i4pP7P4ux886FE8E48QSc3edXZzULq2Rc5ZdWMPUFYnd8AJ6F8dw/ocQ==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/mesh": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/mixin-cache-as-bitmap": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/mixin-cache-as-bitmap/-/mixin-cache-as-bitmap-5.1.5.tgz", + "integrity": "sha512-XRVTz5nOgj7wUFXXIixTlg+2oynNerebUwjkw11mnr+HNP3vMmt2O8ZtXEyij2VXNMuDmbYo8/O53FI+81CnAQ==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/mixin-get-child-by-name": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/mixin-get-child-by-name/-/mixin-get-child-by-name-5.1.3.tgz", + "integrity": "sha512-0nvNfcQAeND9iuzQr0AYCxINDaXQx5Kft8Fauu0T4LKbYAchO0qzuSpv7L+cD4LvKdvGQyxHHWP6u4wQ9yuKrg==", + "requires": { + "@pixi/display": "^5.1.3" + } + }, + "@pixi/mixin-get-global-position": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/mixin-get-global-position/-/mixin-get-global-position-5.1.3.tgz", + "integrity": "sha512-dgIUjjIDnI/wrNXt+ROWdv0syQeV5hlt/TJot/ULXw6HnBoDDmXqcKzIp38o3Ei6n2eQ0CUVbKYGd668tdk5EQ==", + "requires": { + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0" + } + }, + "@pixi/particles": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/particles/-/particles-5.1.5.tgz", + "integrity": "sha512-eIYd1wKyuzBL/re3EuyhUjXNRe8fkqbUgpeevV2e7tIoFcyK3g3cT4E1ajTv+7IIAvj2505xRJ3dxcAxLDzd6g==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/polyfill": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@pixi/polyfill/-/polyfill-5.1.0.tgz", + "integrity": "sha512-8M3nYCO0a599fsdLW7wv9SBYriMqS1QckKAkRuN2JualRuK/GjxZjm5Vcbcwc1gGONRUKZroH12CuPyTcU2HnQ==", + "requires": { + "es6-promise-polyfill": "^1.2.0", + "object-assign": "^4.1.1" + } + }, + "@pixi/prepare": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/prepare/-/prepare-5.1.5.tgz", + "integrity": "sha512-0Gq6whHFuLYy3uUVoVmRnVWMZU4Z0WSs7+BYGWrDqxlOqfuZ6ZS4SSEjzcUUvyCK8MWisEn7O3EnDRYFr+3K5g==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/graphics": "^5.1.5", + "@pixi/settings": "^5.1.3", + "@pixi/text": "^5.1.5", + "@pixi/ticker": "^5.1.3" + } + }, + "@pixi/runner": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@pixi/runner/-/runner-5.1.1.tgz", + "integrity": "sha512-cOkWsRZlEgOB4IuiUW0PvU0JDMNpNTtyLeECg4DwIDYW4uQ0033zaZFSsN0EOeX0TFkpBmaJsgEIwpmw32VU0w==" + }, + "@pixi/settings": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/settings/-/settings-5.1.3.tgz", + "integrity": "sha512-goYjVYuklNMFWFq54J7u4eYVe+qmLe6AQP+b+hF+Kskw7tSXrAVTHROqrEiqPqKSCL9umorOi6T/ZTXhk8i4Wg==", + "requires": { + "ismobilejs": "^0.5.1" + } + }, + "@pixi/sprite": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/sprite/-/sprite-5.1.5.tgz", + "integrity": "sha512-a8M5P7xarbYMut3YKIb5I4hr94c0/VA18jV/eOhtyOKOsS5jkjul5WGssnIyR73aQp7iaNGWfh7FD+BiWCLzXQ==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/sprite-animated": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/sprite-animated/-/sprite-animated-5.1.5.tgz", + "integrity": "sha512-jsxqmWpDpjy7BoqVFpPWNvIeJ6yePQ0/uTyvzhKZBM8ihZVFJMa1+C4IFQpQYUCp9rlZHG6og4UzAHlwceQb+A==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/sprite": "^5.1.5", + "@pixi/ticker": "^5.1.3" + } + }, + "@pixi/sprite-tiling": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/sprite-tiling/-/sprite-tiling-5.1.5.tgz", + "integrity": "sha512-9P0jyAA9I8hrDnN04rABxxs09Knb2AZr+Ky2yvWAUngumoMmIEbc/JtW9R8ich72uTBcl8Ax+bTz520wB36HpA==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/spritesheet": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/spritesheet/-/spritesheet-5.1.5.tgz", + "integrity": "sha512-kZBiI/eYRKoNxOTI9h4tl13oGdCaFkH/cOI0MZ0st0Dos6clB5OJStJ19bEe/Ik1Yt7NxGCCuFLLa3WKhQ5idQ==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/loaders": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/text": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/text/-/text-5.1.5.tgz", + "integrity": "sha512-8pKWuyccdWrZgvssyPUrOdn7CMeetRTpM8W51KYwU8gla6tnddMj3TaBW56dXRdtddadDc2KdGtDYPOuonHOfA==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/text-bitmap": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/text-bitmap/-/text-bitmap-5.1.5.tgz", + "integrity": "sha512-Qvnq35MdDWjW9JwJsLcVpnTX4ApW52zLMeMezuTtN+QrfsXmYXRE+SOeBERccbGmyxcM2yIKIItiqS2eFvlzRw==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/loaders": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/ticker": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/ticker/-/ticker-5.1.3.tgz", + "integrity": "sha512-IuJTMTfdboR6049b+HnSClGj7Lz5gObVoxuMc3flY493XAvrQk4XrBo57QDlVOdjVBiDW0gZ9DlUr1lwNFI7zQ==", + "requires": { + "@pixi/settings": "^5.1.3" + } + }, + "@pixi/utils": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/utils/-/utils-5.1.3.tgz", + "integrity": "sha512-w2ULIc97p1tnAZ7L0aSClDeIpuCYrauOKbnWYG8C8zTVfHWFKAHVamvzYnVaeXw4CN9jwERK/JYY/y2VFZXHuw==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/settings": "^5.1.3", + "earcut": "^2.1.5", + "eventemitter3": "^3.1.0", + "url": "^0.11.0" + } + }, + "@types/emscripten": { + "version": "1.38.0", + "resolved": "https://registry.npmjs.org/@types/emscripten/-/emscripten-1.38.0.tgz", + "integrity": "sha512-qfuBbl9hC0ybmW9s8SDORPgg+LdPV+KRpB8AMdTRqxuQZR4G5T7ozIAVUJLO26N7SFSM1zvDVuZ9+qOX7qt/EQ==" + }, + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "dev": true + }, + "@types/node": { + "version": "12.7.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.7.8.tgz", + "integrity": "sha512-FMdVn84tJJdV+xe+53sYiZS4R5yn1mAIxfj+DVoNiQjTYz1+OYmjwEZr1ev9nU0axXwda0QDbYl06QHanRVH3A==" + }, + "@types/resolve": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz", + "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/systemjs": { + "version": "0.20.6", + "resolved": "https://registry.npmjs.org/@types/systemjs/-/systemjs-0.20.6.tgz", + "integrity": "sha512-p3yv9sBBJXi3noUG216BpUI7VtVBUAvBIfZNTiDROUY31YBfsFHM4DreS7XMekN8IjtX0ysvCnm6r3WnirnNeA==" + }, + "abstract-leveldown": { + "version": "0.12.4", + "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-0.12.4.tgz", + "integrity": "sha1-KeGOYy5g5OIh1YECR4UqY9ey5BA=", + "dev": true, + "requires": { + "xtend": "~3.0.0" + }, + "dependencies": { + "xtend": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz", + "integrity": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=", + "dev": true + } + } + }, + "acorn": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.0.tgz", + "integrity": "sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==", + "dev": true + }, + "asn1.js": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", + "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "bl": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/bl/-/bl-0.8.2.tgz", + "integrity": "sha1-yba8oI0bwuoA/Ir7Txpf0eHGbk4=", + "dev": true, + "requires": { + "readable-stream": "~1.0.26" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "bn.js": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", + "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==", + "dev": true + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-fs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browserify-fs/-/browserify-fs-1.0.0.tgz", + "integrity": "sha1-8HWqinKdTRcW0GZiDjhvzBMRqW8=", + "dev": true, + "requires": { + "level-filesystem": "^1.0.1", + "level-js": "^2.1.3", + "levelup": "^0.18.2" + } + }, + "browserify-rsa": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", + "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", + "dev": true, + "requires": { + "bn.js": "^4.1.1", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.2", + "elliptic": "^6.0.0", + "inherits": "^2.0.1", + "parse-asn1": "^5.0.0" + } + }, + "buffer-es6": { + "version": "4.9.3", + "resolved": "https://registry.npmjs.org/buffer-es6/-/buffer-es6-4.9.3.tgz", + "integrity": "sha1-8mNHuC33b9N+GLy1KIxJcM/VxAQ=", + "dev": true + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true + }, + "builtin-modules": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz", + "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==", + "dev": true + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "clone": { + "version": "0.1.19", + "resolved": "https://registry.npmjs.org/clone/-/clone-0.1.19.tgz", + "integrity": "sha1-YT+2hjmyaklKxTJT4Vsaa9iK2oU=", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "create-ecdh": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", + "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.0.0" + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "deferred-leveldown": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-0.2.0.tgz", + "integrity": "sha1-LO8fER4cV4cNi7uK8mUOWHzS9bQ=", + "dev": true, + "requires": { + "abstract-leveldown": "~0.12.1" + } + }, + "des.js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", + "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "earcut": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.1.tgz", + "integrity": "sha512-5jIMi2RB3HtGPHcYd9Yyl0cczo84y+48lgKPxMijliNQaKAHEZJbdzLmKmdxG/mCdS/YD9DQ1gihL8mxzR0F9w==" + }, + "elliptic": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.1.tgz", + "integrity": "sha512-xvJINNLbTeWQjrl6X+7eQCrIy/YPv5XCpKW6kB5mKvtnGILoLDcySuwomfdzt0BMdLNVnuRNTuzKNHj0bva1Cg==", + "dev": true, + "requires": { + "bn.js": "^4.4.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + } + }, + "errno": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", + "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "es6-promise-polyfill": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/es6-promise-polyfill/-/es6-promise-polyfill-1.2.0.tgz", + "integrity": "sha1-84kl8jyz4+jObNqP93T867sJDN4=" + }, + "estree-walker": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", + "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==", + "dev": true + }, + "eventemitter3": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", + "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==" + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "find-cache-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.0.0.tgz", + "integrity": "sha512-t7ulV1fmbxh5G9l/492O1p5+EBbr3uwpt6odhFTMc+nWyhmbloe+ja9BZ8pIBtqFWhOmCWVjx+pTW4zDkFoclw==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.0", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "foreach": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", + "dev": true + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fwd-stream": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/fwd-stream/-/fwd-stream-1.0.4.tgz", + "integrity": "sha1-7Sgcq+1G/uz5Ie4y3ExQs3KsfPo=", + "dev": true, + "requires": { + "readable-stream": "~1.0.26-4" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "graceful-fs": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", + "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==", + "dev": true + }, + "hash-base": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", + "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "idb-wrapper": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/idb-wrapper/-/idb-wrapper-1.7.2.tgz", + "integrity": "sha512-zfNREywMuf0NzDo9mVsL0yegjsirJxHpKHvWcyRozIqQy89g0a3U+oBPOCN4cc0oCiOuYgZHimzaW/R46G1Mpg==", + "dev": true + }, + "imgui-js": { + "version": "git+https://git.mhack.io/git/mark/imgui-js.git#9536ecad287eb76812087cd3fee1aaacb448c027", + "from": "git+https://git.mhack.io/git/mark/imgui-js.git", + "requires": { + "@types/emscripten": "^1.38.0", + "@types/node": "^12.6.7", + "@types/systemjs": "^0.20.6", + "pixi.js": "file:node_modules/imgui-js/pixi.js/bundles/pixi.js/pixi.js-5.1.4.tgz" + } + }, + "indexof": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", + "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", + "dev": true + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "is": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/is/-/is-0.2.7.tgz", + "integrity": "sha1-OzSixI81mXLzUEKEkZOucmS2NWI=", + "dev": true + }, + "is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=", + "dev": true + }, + "is-object": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-0.1.2.tgz", + "integrity": "sha1-AO+8CIFsM8/ErIJR0TLhDcZQmNc=", + "dev": true + }, + "is-reference": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.1.4.tgz", + "integrity": "sha512-uJA/CDPO3Tao3GTrxYn6AwkM4nUPJiGGYu5+cB8qbC7WGFlrKZbiRo7SFKxUAEpFUfiHofWCXBUNhvYJMh+6zw==", + "dev": true, + "requires": { + "@types/estree": "0.0.39" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isbuffer": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/isbuffer/-/isbuffer-0.0.0.tgz", + "integrity": "sha1-OMFG2d9Si4v5sHAcPUPPEt8/w5s=", + "dev": true + }, + "ismobilejs": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/ismobilejs/-/ismobilejs-0.5.2.tgz", + "integrity": "sha512-ta9UdV60xVZk/ZafFtSFslQaE76SvNkcs1r73d2PVR21zVzx9xuYv9tNe4MxA1NN7WoeCc2RjGot3Bz1eHDx3Q==" + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "level-blobs": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/level-blobs/-/level-blobs-0.1.7.tgz", + "integrity": "sha1-mrm5e7mfHtv594o0M+Ie1WOGva8=", + "dev": true, + "requires": { + "level-peek": "1.0.6", + "once": "^1.3.0", + "readable-stream": "^1.0.26-4" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "level-filesystem": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/level-filesystem/-/level-filesystem-1.2.0.tgz", + "integrity": "sha1-oArKmRnEpN+v3KaoEI0iWq3/Y7M=", + "dev": true, + "requires": { + "concat-stream": "^1.4.4", + "errno": "^0.1.1", + "fwd-stream": "^1.0.4", + "level-blobs": "^0.1.7", + "level-peek": "^1.0.6", + "level-sublevel": "^5.2.0", + "octal": "^1.0.0", + "once": "^1.3.0", + "xtend": "^2.2.0" + } + }, + "level-fix-range": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/level-fix-range/-/level-fix-range-1.0.2.tgz", + "integrity": "sha1-vxW5Fa422EcMgh6IPd95zRZCCCg=", + "dev": true + }, + "level-hooks": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/level-hooks/-/level-hooks-4.5.0.tgz", + "integrity": "sha1-G5rmGSKTDzMF0aYfxNg8gQLA3ZM=", + "dev": true, + "requires": { + "string-range": "~1.2" + } + }, + "level-js": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/level-js/-/level-js-2.2.4.tgz", + "integrity": "sha1-vAVfQYBjXUSJtWHJSG+jcOjBFpc=", + "dev": true, + "requires": { + "abstract-leveldown": "~0.12.0", + "idb-wrapper": "^1.5.0", + "isbuffer": "~0.0.0", + "ltgt": "^2.1.2", + "typedarray-to-buffer": "~1.0.0", + "xtend": "~2.1.2" + }, + "dependencies": { + "object-keys": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz", + "integrity": "sha1-KKaq50KN0sOpLz2V8hM13SBOAzY=", + "dev": true + }, + "xtend": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", + "integrity": "sha1-bv7MKk2tjmlixJAbM3znuoe10os=", + "dev": true, + "requires": { + "object-keys": "~0.4.0" + } + } + } + }, + "level-peek": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/level-peek/-/level-peek-1.0.6.tgz", + "integrity": "sha1-vsUccqgu5GTTNkNMfIdsP8vM538=", + "dev": true, + "requires": { + "level-fix-range": "~1.0.2" + } + }, + "level-sublevel": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/level-sublevel/-/level-sublevel-5.2.3.tgz", + "integrity": "sha1-dEwSxy0ucr543eO5tc2E1iGRQTo=", + "dev": true, + "requires": { + "level-fix-range": "2.0", + "level-hooks": ">=4.4.0 <5", + "string-range": "~1.2.1", + "xtend": "~2.0.4" + }, + "dependencies": { + "level-fix-range": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/level-fix-range/-/level-fix-range-2.0.0.tgz", + "integrity": "sha1-xBfWIVlEIVGhnZojZ4aPFyTC1Ug=", + "dev": true, + "requires": { + "clone": "~0.1.9" + } + }, + "xtend": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.0.6.tgz", + "integrity": "sha1-XqZXptukRwacLlnFihE4ywxebO4=", + "dev": true, + "requires": { + "is-object": "~0.1.2", + "object-keys": "~0.2.0" + } + } + } + }, + "levelup": { + "version": "0.18.6", + "resolved": "https://registry.npmjs.org/levelup/-/levelup-0.18.6.tgz", + "integrity": "sha1-5qAcsIlhbI7MApHCqb0/DETj5es=", + "dev": true, + "requires": { + "bl": "~0.8.1", + "deferred-leveldown": "~0.2.0", + "errno": "~0.1.1", + "prr": "~0.0.0", + "readable-stream": "~1.0.26", + "semver": "~2.3.1", + "xtend": "~3.0.0" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "prr": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz", + "integrity": "sha1-GoS4WQgyVQFBGFPQCB7j+obikmo=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + }, + "xtend": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz", + "integrity": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=", + "dev": true + } + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "ltgt": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ltgt/-/ltgt-2.2.1.tgz", + "integrity": "sha1-81ypHEk/e3PaDgdJUwTxezH4fuU=", + "dev": true + }, + "magic-string": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.4.tgz", + "integrity": "sha512-oycWO9nEVAP2RVPbIoDoA4Y7LFIJ3xRYov93gAyJhZkET1tNuB0u7uWkZS2LpBWTJUWnmau/To8ECWRC+jKNfw==", + "dev": true, + "requires": { + "sourcemap-codec": "^1.4.4" + } + }, + "make-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.0.0.tgz", + "integrity": "sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + } + }, + "mini-signals": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mini-signals/-/mini-signals-1.2.0.tgz", + "integrity": "sha1-RbCAE8X65RokqhqTXNMXye1yHXQ=" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-keys": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.2.0.tgz", + "integrity": "sha1-zd7AKZiwkb5CvxA1rjLknxy26mc=", + "dev": true, + "requires": { + "foreach": "~2.0.1", + "indexof": "~0.0.1", + "is": "~0.2.6" + } + }, + "octal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/octal/-/octal-1.0.0.tgz", + "integrity": "sha1-Y+cWKmjvvrniE1iNWOmJ0eXEUws=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "p-limit": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", + "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "parse-asn1": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz", + "integrity": "sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==", + "dev": true, + "requires": { + "asn1.js": "^4.0.0", + "browserify-aes": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-uri": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-uri/-/parse-uri-1.0.0.tgz", + "integrity": "sha1-KHLcwi8aeXrN4Vg9igrClVLdrCA=" + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "dev": true + }, + "pbkdf2": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", + "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", + "dev": true, + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "pixi.js": { + "version": "file:node_modules/imgui-js/pixi.js/bundles/pixi.js/pixi.js-5.1.4.tgz", + "integrity": "sha512-qBtJPyfiH/b2powvEEnQoiBdoT0xQTg5LQ08CESsBJk4kFX6NE2u+KQv6WYfl5j/1pRHVvtrWhwPeJTbfp9SpQ==", + "requires": { + "@pixi/accessibility": "^5.1.4", + "@pixi/app": "^5.1.4", + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.4", + "@pixi/display": "^5.1.3", + "@pixi/extract": "^5.1.4", + "@pixi/filter-alpha": "^5.1.4", + "@pixi/filter-blur": "^5.1.4", + "@pixi/filter-color-matrix": "^5.1.4", + "@pixi/filter-displacement": "^5.1.4", + "@pixi/filter-fxaa": "^5.1.4", + "@pixi/filter-noise": "^5.1.4", + "@pixi/graphics": "^5.1.4", + "@pixi/interaction": "^5.1.4", + "@pixi/loaders": "^5.1.4", + "@pixi/math": "^5.1.0", + "@pixi/mesh": "^5.1.4", + "@pixi/mesh-extras": "^5.1.4", + "@pixi/mixin-cache-as-bitmap": "^5.1.4", + "@pixi/mixin-get-child-by-name": "^5.1.3", + "@pixi/mixin-get-global-position": "^5.1.3", + "@pixi/particles": "^5.1.4", + "@pixi/polyfill": "^5.1.0", + "@pixi/prepare": "^5.1.4", + "@pixi/runner": "^5.1.1", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.4", + "@pixi/sprite-animated": "^5.1.4", + "@pixi/sprite-tiling": "^5.1.4", + "@pixi/spritesheet": "^5.1.4", + "@pixi/text": "^5.1.4", + "@pixi/text-bitmap": "^5.1.4", + "@pixi/ticker": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "process-es6": { + "version": "0.11.6", + "resolved": "https://registry.npmjs.org/process-es6/-/process-es6-0.11.6.tgz", + "integrity": "sha1-xrs4n5qVH4K9TrFpYAEFvS/5x3g=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "resolve": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz", + "integrity": "sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "resource-loader": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/resource-loader/-/resource-loader-3.0.1.tgz", + "integrity": "sha512-fBuCRbEHdLCI1eglzQhUv9Rrdcmqkydr1r6uHE2cYHvRBrcLXeSmbE/qI/urFt8rPr/IGxir3BUwM5kUK8XoyA==", + "requires": { + "mini-signals": "^1.2.0", + "parse-uri": "^1.0.0" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "rollup": { + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-1.22.0.tgz", + "integrity": "sha512-x4l4ZrV/Mr/x/jvFTmwROdEAhbZjx16yDRTVSKWh/i4oJDuW2dVEbECT853mybYCz7BAitU8ElGlhx7dNjw3qQ==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/node": "*", + "acorn": "^7.1.0" + } + }, + "rollup-plugin-commonjs": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-commonjs/-/rollup-plugin-commonjs-10.1.0.tgz", + "integrity": "sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q==", + "dev": true, + "requires": { + "estree-walker": "^0.6.1", + "is-reference": "^1.1.2", + "magic-string": "^0.25.2", + "resolve": "^1.11.0", + "rollup-pluginutils": "^2.8.1" + } + }, + "rollup-plugin-node-builtins": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-node-builtins/-/rollup-plugin-node-builtins-2.1.2.tgz", + "integrity": "sha1-JKH+1KQyV7a2Q3HYq8bOGrFFl+k=", + "dev": true, + "requires": { + "browserify-fs": "^1.0.0", + "buffer-es6": "^4.9.2", + "crypto-browserify": "^3.11.0", + "process-es6": "^0.11.2" + } + }, + "rollup-plugin-node-resolve": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-5.2.0.tgz", + "integrity": "sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw==", + "dev": true, + "requires": { + "@types/resolve": "0.0.8", + "builtin-modules": "^3.1.0", + "is-module": "^1.0.0", + "resolve": "^1.11.1", + "rollup-pluginutils": "^2.8.1" + } + }, + "rollup-plugin-typescript2": { + "version": "0.24.3", + "resolved": "https://registry.npmjs.org/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.24.3.tgz", + "integrity": "sha512-D7yovQlhnRoz7pG/RF0ni+koxgzEShwfAGuOq6OVqKzcATHOvmUt2ePeYVdc9N0adcW1PcTzklUEM0oNWE/POw==", + "dev": true, + "requires": { + "find-cache-dir": "^3.0.0", + "fs-extra": "8.1.0", + "resolve": "1.12.0", + "rollup-pluginutils": "2.8.1", + "tslib": "1.10.0" + }, + "dependencies": { + "rollup-pluginutils": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz", + "integrity": "sha512-J5oAoysWar6GuZo0s+3bZ6sVZAC0pfqKz68De7ZgDi5z63jOVZn1uJL/+z1jeKHNbGII8kAyHF5q8LnxSX5lQg==", + "dev": true, + "requires": { + "estree-walker": "^0.6.1" + } + } + } + }, + "rollup-pluginutils": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", + "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", + "dev": true, + "requires": { + "estree-walker": "^0.6.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "semver": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-2.3.2.tgz", + "integrity": "sha1-uYSPJdbPNjMwc+ye+IVtQvEjPlI=", + "dev": true + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "sourcemap-codec": { + "version": "1.4.6", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.6.tgz", + "integrity": "sha512-1ZooVLYFxC448piVLBbtOxFcXwnymH9oUF8nRd3CuYDVvkRBxRl6pB4Mtas5a4drtL+E8LDgFkQNcgIw6tc8Hg==", + "dev": true + }, + "string-range": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/string-range/-/string-range-1.2.2.tgz", + "integrity": "sha1-qJPtNH5yKZvIO++78qaSqNI51d0=", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "tslib": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", + "dev": true + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, + "typedarray-to-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-1.0.4.tgz", + "integrity": "sha1-m7i6DoQfs/TPH+fCRenz+opf6Zw=", + "dev": true + }, + "typescript": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.6.3.tgz", + "integrity": "sha512-N7bceJL1CtRQ2RiG0AQME13ksR7DiuQh/QehubYcghzv20tnh+MQnQIuJddTmsbqYj+dztchykemz0zFzlvdQw==", + "dev": true + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "xtend": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.2.0.tgz", + "integrity": "sha1-7vax8ZjByN6vrYsXZaBNrUoBxak=", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..2a48002 --- /dev/null +++ b/package.json @@ -0,0 +1,27 @@ +{ + "name": "imgui-js-pixi", + "version": "1.0.0", + "description": "imgui bindings for PIXI renderer", + "main": "imgui_impl.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "dist": "rollup -c" + }, + "repository": { + "type": "git", + "url": "https://git.mhack.io/git/mark/imgui-js-pixi.git" + }, + "author": "Mark Bavis", + "license": "ISC", + "dependencies": { + "imgui-js": "git+https://git.mhack.io/git/mark/imgui-js.git" + }, + "devDependencies": { + "rollup": "^1.22.0", + "rollup-plugin-commonjs": "^10.1.0", + "rollup-plugin-node-builtins": "^2.1.2", + "rollup-plugin-node-resolve": "^5.2.0", + "rollup-plugin-typescript2": "^0.24.3", + "typescript": "^3.6.3" + } +} diff --git a/rollup.config.js b/rollup.config.js new file mode 100644 index 0000000..3e11089 --- /dev/null +++ b/rollup.config.js @@ -0,0 +1,34 @@ +import node from "rollup-plugin-node-resolve"; +import commonjs from "rollup-plugin-commonjs"; +import typescript from "rollup-plugin-typescript2"; +import builtins from "rollup-plugin-node-builtins"; + +const plugins = + [ + typescript({ + clean: true, + tsconfigOverride: { + compilerOptions: { + target: "ES2015", + module: "ES2015" + } + } + }), + commonjs(), + builtins(), + node({preferBuiltins: false}) + ]; + +export default [ +{ + input: "imgui_impl.ts", + output: + { + file: "imgui_impl.js", + format: "cjs", + name: "imgui_pixi_js", + sourcemap: true + }, + plugins: plugins +} +] diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..583e8ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +tsconfig.tsbuildinfo +*.swp +node_modules +nohup.out +.rpt2_cache diff --git a/imgui_impl.js b/imgui_impl.js new file mode 100644 index 0000000..0f4a8ec --- /dev/null +++ b/imgui_impl.js @@ -0,0 +1,41080 @@ +'use strict'; + +Object.defineProperty(exports, '__esModule', { value: true }); + +var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +function commonjsRequire () { + throw new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs'); +} + +function unwrapExports (x) { + return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x; +} + +function createCommonjsModule(fn, module) { + return module = { exports: {} }, fn(module, module.exports), module.exports; +} + +var require$$0 = {}; + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +// resolves . and .. elements in a path array with directory names there +// must be no slashes, empty elements, or device names (c:\) in the array +// (so also no leading and trailing slashes - it does not distinguish +// relative and absolute paths) +function normalizeArray(parts, allowAboveRoot) { + // if the path tries to go above the root, `up` ends up > 0 + 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 the path is allowed to go above the root, restore leading ..s + if (allowAboveRoot) { + for (; up--; up) { + parts.unshift('..'); + } + } + + return parts; +} + +// Split a filename into [root, dir, basename, ext], unix version +// 'root' is just a slash, or nothing. +var splitPathRe = + /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; +var splitPath = function(filename) { + return splitPathRe.exec(filename).slice(1); +}; + +// path.resolve([from ...], to) +// posix version +function resolve() { + var resolvedPath = '', + resolvedAbsolute = false; + + for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { + var path = (i >= 0) ? arguments[i] : '/'; + + // Skip empty and invalid entries + if (typeof path !== 'string') { + throw new TypeError('Arguments to path.resolve must be strings'); + } else if (!path) { + continue; + } + + resolvedPath = path + '/' + resolvedPath; + resolvedAbsolute = path.charAt(0) === '/'; + } + + // At this point the path should be resolved to a full absolute path, but + // handle relative paths to be safe (might happen when process.cwd() fails) + + // Normalize the path + resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) { + return !!p; + }), !resolvedAbsolute).join('/'); + + return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; +} +// path.normalize(path) +// posix version +function normalize(path) { + var isPathAbsolute = isAbsolute(path), + trailingSlash = substr(path, -1) === '/'; + + // Normalize the path + path = normalizeArray(filter(path.split('/'), function(p) { + return !!p; + }), !isPathAbsolute).join('/'); + + if (!path && !isPathAbsolute) { + path = '.'; + } + if (path && trailingSlash) { + path += '/'; + } + + return (isPathAbsolute ? '/' : '') + path; +} +// posix version +function isAbsolute(path) { + return path.charAt(0) === '/'; +} + +// posix version +function join() { + var paths = Array.prototype.slice.call(arguments, 0); + return normalize(filter(paths, function(p, index) { + if (typeof p !== 'string') { + throw new TypeError('Arguments to path.join must be strings'); + } + return p; + }).join('/')); +} + + +// path.relative(from, to) +// posix version +function relative(from, to) { + from = resolve(from).substr(1); + to = 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('/'); +} + +var sep = '/'; +var delimiter = ':'; + +function dirname(path) { + var result = splitPath(path), + root = result[0], + dir = result[1]; + + if (!root && !dir) { + // No dirname whatsoever + return '.'; + } + + if (dir) { + // It has a dirname, strip trailing slash + dir = dir.substr(0, dir.length - 1); + } + + return root + dir; +} + +function basename(path, ext) { + var f = splitPath(path)[2]; + // TODO: make this comparison case-insensitive on windows? + if (ext && f.substr(-1 * ext.length) === ext) { + f = f.substr(0, f.length - ext.length); + } + return f; +} + + +function extname(path) { + return splitPath(path)[3]; +} +var require$$1 = { + extname: extname, + basename: basename, + dirname: dirname, + sep: sep, + delimiter: delimiter, + relative: relative, + join: join, + isAbsolute: isAbsolute, + normalize: normalize, + resolve: resolve +}; +function filter (xs, f) { + if (xs.filter) return xs.filter(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + if (f(xs[i], i, xs)) res.push(xs[i]); + } + return res; +} + +// String.prototype.substr - negative index don't work in IE8 +var substr = 'ab'.substr(-1) === 'b' ? + function (str, start, len) { return str.substr(start, len) } : + function (str, start, len) { + if (start < 0) start = str.length + start; + return str.substr(start, len); + } +; + +var bindImgui = createCommonjsModule(function (module, exports) { +var Module = (function() { + var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; + return ( +function(Module) { + Module = Module || {}; + +var Module=typeof Module!=="undefined"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key];}}Module["arguments"]=[];Module["thisProgram"]="./this.program";Module["quit"]=function(status,toThrow){throw toThrow};Module["preRun"]=[];Module["postRun"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window==="object";ENVIRONMENT_IS_WORKER=typeof importScripts==="function";ENVIRONMENT_HAS_NODE=typeof process==="object"&&typeof commonjsRequire==="function";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}else{return scriptDirectory+path}}if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+"/";var nodeFS;var nodePath;Module["read"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require$$0;if(!nodePath)nodePath=require$$1;filename=nodePath["normalize"](filename);ret=nodeFS["readFileSync"](filename);}return binary?ret:ret.toString()};Module["readBinary"]=function readBinary(filename){var ret=Module["read"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret);}assert(ret.buffer);return ret};if(process["argv"].length>1){Module["thisProgram"]=process["argv"][1].replace(/\\/g,"/");}Module["arguments"]=process["argv"].slice(2);process["on"]("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process["on"]("unhandledRejection",abort);Module["quit"]=function(status){process["exit"](status);};Module["inspect"]=function(){return "[Emscripten Module object]"};}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){Module["read"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)};}Module["readBinary"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer==="function"){return new Uint8Array(readbuffer(f))}data=read(f,"binary");assert(typeof data==="object");return data};if(typeof scriptArgs!="undefined"){Module["arguments"]=scriptArgs;}else if(typeof arguments!="undefined"){Module["arguments"]=arguments;}if(typeof quit==="function"){Module["quit"]=function(status){quit(status);};}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href;}else if(document.currentScript){scriptDirectory=document.currentScript.src;}if(_scriptDir){scriptDirectory=_scriptDir;}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf("/")+1);}else{scriptDirectory="";}Module["read"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module["readBinary"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}};}Module["readAsync"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror();};xhr.onerror=onerror;xhr.send(null);};Module["setWindowTitle"]=function(title){document.title=title;};}var out=Module["print"]||(typeof console!=="undefined"?console.log.bind(console):typeof print!=="undefined"?print:null);var err=Module["printErr"]||(typeof printErr!=="undefined"?printErr:typeof console!=="undefined"&&console.warn.bind(console)||out);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key];}}moduleOverrides=undefined;var asm2wasmImports={"f64-rem":function(x,y){return x%y},"debugger":function(){debugger}};var functionPointers=new Array(0);var setTempRet0=function(value){};if(typeof WebAssembly!=="object"){err("no native wasm support detected");}var wasmMemory;var wasmTable;var ABORT=false;function assert(condition,text){if(!condition){abort("Assertion failed: "+text);}}var UTF8Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf8"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str="";while(idx>10,56320|ch&1023);}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023;}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u;}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63;}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4;}return len}var UTF16Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf-16le"):undefined;var WASM_PAGE_SIZE=65536;var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferViews(){Module["HEAP8"]=HEAP8=new Int8Array(buffer);Module["HEAP16"]=HEAP16=new Int16Array(buffer);Module["HEAP32"]=HEAP32=new Int32Array(buffer);Module["HEAPU8"]=HEAPU8=new Uint8Array(buffer);Module["HEAPU16"]=HEAPU16=new Uint16Array(buffer);Module["HEAPU32"]=HEAPU32=new Uint32Array(buffer);Module["HEAPF32"]=HEAPF32=new Float32Array(buffer);Module["HEAPF64"]=HEAPF64=new Float64Array(buffer);}var DYNAMIC_BASE=5315584,DYNAMICTOP_PTR=72672;var TOTAL_STACK=5242880;var INITIAL_TOTAL_MEMORY=Module["TOTAL_MEMORY"]||16777216;if(INITIAL_TOTAL_MEMORY>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback();continue}var func=callback.func;if(typeof func==="number"){if(callback.arg===undefined){Module["dynCall_v"](func);}else{Module["dynCall_vi"](func,callback.arg);}}else{func(callback.arg===undefined?null:callback.arg);}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;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 ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__);}function preMain(){callRuntimeCallbacks(__ATMAIN__);}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 addOnPostRun(cb){__ATPOSTRUN__.unshift(cb);}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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();}}}Module["preloadedImages"]={};Module["preloadedAudios"]={};var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile="data:application/octet-stream;base64,AGFzbQEAAAAB2AyxAWACf38Bf2ACf38AYAJ8fAF8YAF/AX9gAX8AYAN/f38Bf2AEf39/fwBgA39/fwBgAn9/AX1gBH9/f38Bf2AEf399fwBgAn99AX9gA399fQF/YAZ9fX1/f38AYAR/fX9/AGAFf39/fX8AYAABfGADf31/AGAFf39/f38Bf2AIf39/f39/f38Bf2AHf39/f39/fwF/YAZ/f39/f38Bf2AGf398fH9/AX9gCX9/f39/f39/fwF/YAN9f38AYAl/f39/f39/f38AYAZ/f39/f38AYAJ/fQBgAX8BfWAAAX9gAn19AGABfQBgAAF9YAAAYAN/f30Bf2AGf39/fX9/AGAIf399fX1/f38AYAR/fX99AX9gBn9/fX9/fwBgBX9/f399AGAHf39/f31/fQBgBn9/f399fwBgB39/f39/f38AYAd/f39/f399AGAGf39/f399AGAFf39/f38AYAZ/f31/f30AYAV/f31/fwBgCH9/fX9/f31/AGALf39/f39/f39/f38AYAl/f39/f39/fX8AYAh/f39/f399fwBgBH9/f30AYAZ/f319fX8AYAp/f39/f39/f39/AGADf399AGAGf3x/f39/AX9gA39+fwF+YAF/AXxgA39/fwF9YAR/f319AX9gCH9/fX19f39/AX9gBH9/fX8Bf2AFf399f30Bf2AHf39/fHx/fwF/YAR/f399AX9gBX9/f31/AX9gBn9/f31/fwF/YAp/f39/f39/f39/AX9gA399fQBgB399fX1/f38AYAd/f399fX1/AGAHf39/fX9/fQBgB39/f31/f38AYAl/f399f39/fX8AYAd/f39/f31/AGAIf39/f399f30AYAh/f39/f39/fQBgCH9/f39/f39/AGAKf39/f39/f399fwBgDH9/f39/f39/f39/fwBgDX9/f39/f39/f39/f38AYAN/f3wAYAN/f38BfGABfQF9YAJ9fQF9YAV/fX19fQBgBH9/fX0AYAJ/fQF9YAR9fX19AX9gBX9/f319AGADfX19AX1gAn19AX9gBH19fX0BfWALf319fX19fX19fX8AYAl/f31/f39/fX8AYAp/f31/f39/f31/AGAFf31/f30Bf2AIf399fX9/f38AYAt/f319fX19fX19fQBgCH9/f39/fX1/AGAHf39/fX1/fwBgBX9/fX9/AX9gCH9/f399fX9/AGAHf39/fX19fQBgCn9/fX19fX19fX8AYAx/f319fX19fX19fX8AYAd/fX19fX19AGAEf31/fwF/YAh/f399f39/fQF/YAV/fX9/fwF/YAV/fX5+fwF/YAZ/fX19f30Bf2AGf318fH99AX9gAn98AXxgAn9+AX5gCX9/f399f39/fQF/YAd/f319fX99AX9gCX9/f319fX9/fQF/YAZ/f31/f38Bf2AIf39/fX9/f38Bf2AKf39/f39/f31/fwF/YAl/f39/f399f38Bf2AJf39/fn5/fX9/AX9gCX9/f319f31/fwF/YAl/f398fH99f38Bf2AFfHx8fX0BfWADfHx9AXxgA3x8fAF8YAV9fX19fQF9YAN+fn4BfWADfn5+AX5gBX5+fn19AX1gBX9/f319AX1gB39/f39/f30Bf2AIf39/f39/f30Bf2AGf399fX99AX9gB39/f319f30Bf2AGf399fX9/AX9gB39/f31/fX8AYAl/f39/f399fX8AYAd/f39/fX1/AGAEf319fQF9YAZ/f39/f30Bf2AHf399f39/fQF/YAJ/fgBgAn9/AX5gA35/fwF/YAJ+fwF/YAJ8fwF8YAV/f39/fwF8YAZ/f39/f38BfGACfX8BfWABfAF9YAJ9fwF/YAN/f34AYAF/AX5gAn9/AXxgBH9/f38BfWAHf398f39/fwF/YAV/f399fQF/YAl/f399fX1/f38Bf2AGf39/fX99AX9gCH9/f398fH9/AX9gBX9/f399AX9gBn9/f399fwF/YAd/f39/fX9/AX9gC39/f39/f39/f39/AX9gCX9/f319fX9/fwBgCH9/f399fX1/AGAHf39/f31/fwBgCH9/f399f399AGAIf39/f31/f38AYAp/f39/fX9/f31/AGAJf39/f39/fX99AGAJf39/f39/f399AGALf39/f39/f39/fX8AAvQDNwNlbnYBYgA2A2VudgFjAE4DZW52AWQAGgNlbnYBZQAEA2VudgFmAAADZW52AWcAUQNlbnYBaABTA2VudgFpAAcDZW52AWoAAANlbnYBawAtA2VudgFsACEDZW52AW0ABwNlbnYBbgAAA2VudgFvAAYDZW52AXAAAANlbnYBcQAaA2VudgFyAAQDZW52AXMABANlbnYBdAAEA2VudgF1AAAI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/AYLC0H89gEoAgAhASAAQZypBCgCACABQf8BcUHyBmoRAQALWgEDfyMEIQIjBEEQaiQEIAJBmKkEKAIAIgNBsCtqIABBBHRqIgApAgA3AgAgAiAAKQIINwIIIAIgAioCDCADQZAqaioCACABlJQ4AgwgAhChAyEEIAIkBCAECxYAIAAgASkCADcCACAAIAIpAgA3AggLBgBBNBADCwwAIAAgASAAIAFdGwvGAwEDfyACQYDAAE4EQCAAIAEgAhAjGiAADwsgACEEIAAgAmohAyAAQQNxIAFBA3FGBEADQCAAQQNxBEAgAkUEQCAEDwsgACABLAAAOgAAIABBAWohACABQQFqIQEgAkEBayECDAELCyADQXxxIgJBQGohBQNAIAAgBUwEQCAAIAEoAgA2AgAgACABKAIENgIEIAAgASgCCDYCCCAAIAEoAgw2AgwgACABKAIQNgIQIAAgASgCFDYCFCAAIAEoAhg2AhggACABKAIcNgIcIAAgASgCIDYCICAAIAEoAiQ2AiQgACABKAIoNgIoIAAgASgCLDYCLCAAIAEoAjA2AjAgACABKAI0NgI0IAAgASgCODYCOCAAIAEoAjw2AjwgAEFAayEAIAFBQGshAQwBCwsDQCAAIAJIBEAgACABKAIANgIAIABBBGohACABQQRqIQEMAQsLBSADQQRrIQIDQCAAIAJIBEAgACABLAAAOgAAIAAgASwAAToAASAAIAEsAAI6AAIgACABLAADOgADIABBBGohACABQQRqIQEMAQsLCwNAIAAgA0gEQCAAIAEsAAA6AAAgAEEBaiEAIAFBAWohAQwBCwsgBAsSACAAQbT4ATYCACAAQQRqED4LKgAgACgCEBBbBEBBACEABSAAQQRqIgAsAAtBAEgEQCAAKAIAIQALCyAACxIAIAAgARDpECAAQcD4ATYCAAsQACAALQABIAAtAABBCHRyCyoBAX8jBCEBIwRBEGokBCABIAA2AgBBBBA/IgAgASgCADYCACABJAQgAAslAQF/IAEoAgAhAiAAQgA3AgAgAEEANgIIIAAgAUEEaiACEJMBCwgAQQwQA0EACwcAIABBBGoLJwEBfyAAKAIIIgEEQCAAQQA2AgQgAEEANgIAIAEQQSAAQQA2AggLCw0AIAAoAgggAUECdGoLFgAgACABKgIAIAKUIAEqAgQgApQQMgsp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QCADIAMoApACQQFyNgKQAgtBAQsLBgAgAKiyCw0AIABB1ABqIAEQmgILFAAgASACIAAgACACXhsgACABXRsLEQBBACAAQQRqIAAoAggQWxsLIQAgAEP//39/Q///f38QMiAAQQhqQ///f/9D//9//xAyCxAAIAAoAggiAARAIAAQQQsLFwAgAEEANgIEIABBADYCACAAQQA2AggLIQEBfyMEIQIjBEEQaiQEIAIgATYCACAAIAIQ2gIgAiQEC5gCAQR/IAAgAmohBCABQf8BcSEDIAJBwwBOBEADQCAAQQNxBEAgACADOgAAIABBAWohAAwBCwsgA0EIdCADciADQRB0ciADQRh0ciEBIARBfHEiBUFAaiEGA0AgACAGTARAIAAgATYCACAAIAE2AgQgACABNgIIIAAgATYCDCAAIAE2AhAgACABNgIUIAAgATYCGCAAIAE2AhwgACABNgIgIAAgATYCJCAAIAE2AiggACABNgIsIAAgATYCMCAAIAE2AjQgACABNgI4IAAgATYCPCAAQUBrIQAMAQsLA0AgACAFSARAIAAgATYCACAAQQRqIQAMAQsLCwNAIAAgBEgEQCAAIAM6AAAgAEEBaiEADAELCyAEIAJrC58BAQN/EDwiAiwAf0UEQEGYqQQoAgAhBCABQwAAAABdIQMgAEMAAAAAXARAIAIqArQDQwAAAAAgASADGyACKgIMIAIqAliTIACSkpIhACACKgK4AyEBBSADBEAgBEHUKmoqAgAhAQsgAioC0AEhAAsgAiABIACSOALIASACIAIoAtQBNgLMASACIAIpAvQBNwLoASACIAIoAvwBNgLwAQsLqwECA38BfSMEIQUjBEEQaiQEQZipBCgCACEGIAMEQCABIAIQkAEhAgsgBSEDIAZBsDFqKAIAIQcgBkG0MWoqAgAhCCABIAJGBEAgAEMAAAAAIAgQMgUgAyAHIAhD//9/fyAEIAEgAkEAEJoDIAMqAgAiBEMAAAAAXgRAIAMgBCAIIAcqAgCVkyIEOAIACyADIARDMzNzP5KosjgCACAAIAMpAwA3AgALIAUkBAsnAEGYqQQoAgBBNGogAEECdGooAgAiAEF/SgR/IAAgARD2AgVBAAsLNQECfyMEIQMjBEEQaiQEAn8gACgCACEEIAMgARB3IAQLIAMoAgAgAigCABALIAMQMSADJAQL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KAIIRgRAIAEQ4QELIAEgACABKAIAEPIFIgI2AgAgASACNgIIIAAgARCCAQwFCyABEOEBIAFBADYCCCABQQA2AgAgAUEAOgAPDAQLIAEQ4QEgASAAKAIsIgI2AgggASACNgIAIAFBADoADwwDCyAAKAIsIQQgACABEIIBIAEQ4QEgASwAEARAIAEgBDYCACAEIQIFIAEoAgAiAiAESARAA0ACQAJ/IAAgAhDiAUH//wNxQQpGIQwgASgCACECIAwLDQAgASACQQFqIgI2AgAgAiAESA0BCwsLCyABIAI2AgggAUEAOgAPDAILQQMhAwwBCyAFQYCADEgEQCAFQY2ABGsEQEEDIQMMAgsgASgCBCABKAIIRgRAIAEgACABKAIAEPIFNgIAIAAgARCCAQUgACABELgECwwBCwJAAkACQCAFQYCADGsOAgIAAQsgARDhASABIAEoAghBAWo2AgggACABEIIBIAEgASgCCDYCACABQQA6AA8MAgtBAyEDDAELIAAgARCCASABEOEBIAEoAggiAkEASgRAIAEgAkF/aiICNgIICyABIAI2AgAgAUEAOgAPCyADQQNGBEBBACAFIAVB//8DShsiAkEASgRAAkAgBiACOwEAIAJBCkYEQCABLAAQDQELAkACQCABLAAMRQ0AIAEoAgQgASgCCEcNACABKAIAIgIgACgCLE4NACAAIQUgAUEYaiACQQFBARC5BCIEBEAgBCAFIAIQ4gE7AQALIAAgASgCAEEBENkDIAAgASgCACAGQQEQkgMEQCABIAEoAgBBAWo2AgAgAUEAOgAPCwwBCyAAIAEQkwMgACABKAIAIAZBARCSAwRAIAEgASgCAEEBEPcFIAEgASgCAEEBajYCACABQQA6AA8LCwsLBSADQckARgRAIAEoAgQgASgCCEYEQCABKAIAIgIgACgCLEgEQCAAIAEgAkEBENoDCwUgACABEJMDCyABQQA6AA8FIANBzgBGBEAgASgCBCABKAIIRgRAIAAgARCCASABKAIAIgJBAEoEQCAAIAEgAkF/akEBENoDIAEgASgCAEF/ajYCAAsFIAAgARCTAwsgAUEAOgAPCwsLIAkkBAtIAQF/IAFBGGogAiADQQAQuQQiBEEARyADQQBKcQRAQQAhAQNAIAFBAXQgBGogACABIAJqEOIBOwEAIAFBAWoiASADRw0A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CyQAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAAQQNxQZwLahExAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBA3FBmAtqETYACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBlAtqERkACyIAIAEgAiADIAQgBSAGIAcgCCAJIAogAEEBcUGSC2oRTwALHgAgASACIAMgBCAFIAYgByAIIABBA3FBjgtqEU4ACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBigtqETIACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQYgLahFNAAscACABIAIgAyAEIAUgBiAHIABBB3FBgAtqESoACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQf4KahEzAAscACABIAIgAyAEIAUgBiAHIABBA3FB+gpqESsACxoAIAEgAiADIAQgBSAGIABBD3FB6gpqERoACw0AIABB+ClqQQAQwAELHgAgASACIAMgBCAFIAYgByAIIABBAXFB6ApqEUwACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHmCmoRSwALGgAgASACIAMgBCAFIAYgAEEDcUHiCmoRLAALGAAgASACIAMgBCAFIABBD3FB0gpqES0ACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHQCmoRKAALGgAgASACIAMgBCAFIAYgAEEDcUHMCmoRKQALGAAgASACIAMgBCAFIABBA3FByApqEScACxYAIAEgAiADIAQgAEEfcUGoCmoRBgALIAAgASACIAMgBCAFIAYgByAIIAkgAEEBcUGmCmoRSgALHAAgASACIAMgBCAFIAYgByAAQQFxQaQKahFJAAscACABIAIgAyAEIAUgBiAHIABBAXFBogpqEUgACxoAIAEgAiADIAQgBSAGIABBA3FBngpqESMACxgAIAEgAiADIAQgBSAAQQNxQZoKahEPAAscACABIAIgAyAEIAUgBiAHIABBAXFBmApqEUcACxYAIAEgAiADIAQgAEEDcUGUCmoRNAALFQAgASACIAMgAEH/AHFBlAlqEQcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQZIJahEwAAsaACABIAIgAyAEIAUgBiAAQQFxQZAJahEmAAsaACABIAIgAyAEIAUgBiAAQQFxQY4JahEuAAsYACABIAIgAyAEIAUgAEEDcUGKCWoRLwALFgAgASACIAMgBCAAQQNxQYYJahEKAAseACABIAIgAyAEIAUgBiAHIAggAEEBcUGECWoRJAALGgAgASACIAMgBCAFIAYgAEEBcUGCCWoRNQALFAAgASACIAMgAEEPcUHyCGoRNwALFgAgASACIAMgBCAAQQNxQe4GahEOAAsUACABIAIgAyAAQQFxQewGahERAAscACABIAIgAyAEIAUgBiAHIABBAXFB6gZqEUYACxQAIAEgAiADIABBAXFB6AZqEUUACxQAIAEgAiADIABBAXFB3gRqERgACxoAIAEgAiADIAQgBSAGIABBA3FB2gRqEQ0ACxUAQZipBCgCAEE0aiAAQQJ0aigCAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBAXFBggRqEUQACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBB3FB+gNqERcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQ9xQeoDahETAAscACABIAIgAyAEIAUgBiAHIABBD3FB2gNqERQACxoAIAEgAiADIAQgBSAGIABBH3FBugNqERUACxgAIAEgAiADIAQgBSAAQQ9xQaoDahESAAsWACABIAIgAyAEIABBH3FBigNqEQkACxoAIAEgAiADIAQgBSAGIABBAXFBiANqEUMACxgAIAEgAiADIAQgBSAAQQFxQYYDahFCAAsWACABIAIgAyAEIABBAXFBhANqEUEACxwAIAEgAiADIAQgBSAGIAcgAEEBcUGCA2oRQAALGAAgASACIAMgBCAFIABBAXFBwAJqET8ACxYAIAEgAiADIAQgAEEBcUG+AmoRPgALHgAgASACIAMgBCAFIAYgByAIIABBAXFBvAJqET0ACxYAIAEgAiADIAQgAEEBcUG6AmoRPAALFAAgASACIAMgAEEDcUG2AmoRIgALGgAgASACIAMgBCAFIAYgAEEBcUG0AmoRFgALFgAgASACIAMgBCAAQQFxQbIBahElAAsUACABIAIgAyAAQQFxQbABahEMAAsaACABIAIgAyAEIAUgBiAAQQFxQawBahE4AAsUACABIAIgAyAAQQNxQcgAahE7AAsRACABIAIgAEEfcUEoahEIAAsPACABIABBA3FBJGoRHAALDQAgAEEfcUEEahEgAAsPACABIABBAXFBAmoROgALCgAgAEEBcREQAAvS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AiADIAQgBUEPcUHSCmoRLQAMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIAFBADoANCABQQA6ADUgACgCCCIAKAIAKAIUIQMgACABIAIgAkEBIAQgA0EPcUHqCmoRGgAgAQJ/AkAgASwANQR/IAEsADQNAUEBBUEACyEAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAA0CQQQMAwsLIAANAEEEDAELQQMLNgIsDAILCyADQQFGBEAgAUEBNgIgCwsLC0QBAX8gACABKAIIEIUBBEAgASACIAMgBBCFBQUgACgCCCIAKAIAKAIUIQYgACABIAIgAyAEIAUgBkEPcUHqCmoRGgALCxgAIAAgASgCCBCFAQRAIAEgAiADEIcFCwuPAQAgACABKAIIEIUBBEAgASACIAMQhgUFIAAgASgCABCFAQRAAkAgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASACNgIUIAEgASgCKEEBajYCKCABKAIkQQFGBEAgASgCGEECRgRAIAFBAToANgsLIAFBBDYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwsLGgAgACABKAIIEIUBBEAgASACIAMgBBCFBQsLyQEBA38jBCEEIwRBQGskBCAEIQMgACABEIUBBH9BAQUgAQR/IAFB4PQBEJQEIgEEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyABNgIAIAMgADYCCCADQX82AgwgA0EBNgIwIAEoAgAoAhwhACABIAMgAigCAEEBIABBH3FBqApqEQYAIAMoAhhBAUYEfyACIAMoAhA2AgBBAQVBAAsFQQALBUEACwshBSAEJAQgBQt4AQN/IwQhASMEQRBqJAQgASEAAn9BAEGMrgQoAgBB37femgFGDQAaQbMEESEAQYyuBEHft96aATYCAEEACwRAQZSKAyAAEMICBQJ/An9BAEGQrgQoAgAiACgCBEHOlZoSRw0AGiAAKAIACyECIAEkBCACCw8LQQALowICB38BfiMEIQIjBEEwaiQEIAJBGGohASACQRBqIQMgAiEEIAJBJGohBRDLCyIABEAgACgCACIABEAgACkDMCIHQoB+g0KA1qyZ9MiT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AgAhBCAAEIoCIAAoAiAQtgcgBAsQigILCyAAQdQyaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAwRAIAMQjRIgAxBBCyABQQFqIgEgAigCAEgNAAsLIAIQTyAAQeAyahBPIABB7DJqEE8gAEGUM2pBADYCACAAQfgyahBPIABBhDNqEE8gAEGgNWpBADYCACAAQZgzakEANgIAIABBnDNqQQA2AgAgAEHcM2pBADYCACAAQdgzakEANgIAIABB9DNqQQA2AgAgAEH4M2oQTyAAQYQ0ahBPIABBkDRqEE8gAEGcNGoQTyAAQag0ahBPIABBwDdqIQJBACEBA0AgAUEMbCACahBPIAFBAWoiAUECRw0ACyAAQdw3ahDdBCAAQYTYAGoQTyAAQZA6ahBPIABBnDpqEE8gAEGoOmoQTyAAQcDYAGoiAigCAEEASgRAQQAhAQNAIAIgARBVKAIAEPYHIAFBAWoiASACKAIASA0ACwsgAhBPIABBtNgAahBPIABB0NgAaiICKAIAIgFBzIECKAIARiABRXJFBEAgARDDAhogAkEANgIACyAAQdTYAGoQTyAAQQA6AAALCwsAIAAQngUgABBUC00BAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACQYz8ATYCACACIAE2AgggAhCvBSAAIAJBBGoQ5AMhAyACEJ4FIAIkBCADCwsAIAAQnwUgABBUC08BAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADQfT7ATYCACADIAE2AgggAxDGByAAIANBBGogAhCABiEEIAMQnwUgAyQEIAQLMwAgAEGYqQQoAgAgABsiABCxD0GYqQQoAgAgAEYEQEEAEIoCCyAABEAgABDkCSAAEEELC1QBAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQygEgACACIAMQTiIAKAIARhC5AiIBBEAgACACNgIACyABIQQgAxC0ASADJAQgBAtWAgJ/An0jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQcSABQQhqIgIgAEE8aiAAQUBrIAEQywcgAhA9IQQgAhAxIAEQMSABJAQgBAsHACABELgPC4kBAgJ/An0jBCEJIwRBMGokBEGwqQQoAgAiCkE8aiABEIgBIApBQGsg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QYAHaiIKEDogAEGwB2ohAyAAQYgHaiEBA0AgARA6IAFBCGoiASADRw0ACyAAQbwIaiEDIABBlAhqIQEDQCABEDogAUEIaiIBIANHDQALIABB+ClqEGggAEEAQYgqEGoaIAJDAACAv0MAAIC/EDIgBSACKQMANwIAIABDiYiIPDgCECAAQwAAoEA4AhQgAEHmhQI2AhggAEHwhQI2AhwgAEOamZk+OAIgIABDAADAQDgCJCAAQSxqIgFCfzcCACABQn83AgggAUJ/NwIQIAFCfzcCGCABQn83AiAgAUJ/NwIoIAFCfzcCMCABQn83AjggAUFAa0J/NwIAIAFCfzcCSCABQX82AlAgAEMAAIA+OAKAASAAQ83MTD04AoQBIABBADYCiAEgAEEANgKMASAAQwAAgD84ApABIABBADYCmAEgAEEAOgCUASACQwAAgD9DAACAPxAyIAYgAikDADcCACACQwAAAABDAAAAABAyIAggAikDACILNwIAIAcgCzcCACAAQQA6ALUBIABBAToAtgEgAEEBOgC3ASAAQQA6ALgBIABCADcCvAEgAEIANwLEASAAQQA2AswBIABBAzYC0AEgAEECNgLUASAAQQA2AtgBIABBAzYC3AEgAEEANgLgASACQ///f/9D//9//xAyIAkgAikDADcCACACQ///f/9D//9//xAyIAogAikDADcCACAAQwAAwEA4AihBACEBA0AgAEGACGogAUECdGpDAACAvzgCACAAQewHaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEFRw0AC0EAIQEDQCAAQdAYaiABQQJ0akMAAIC/OAIAIABB0AhqIAFBAnRqQwAAgL84AgAgAUEBaiIBQYAERw0AC0EAIQEDQCAAQdAoaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEVRw0ACyAEJAQLNAECfyMEIQQjBEEQaiQEIARBCGoiBSABIAIQwgogBCADEG8gACAFIAQQgQEgBBAxIAQkBAtCAQJ/IwQhBCMEQRBqJAQgBCADEDQgBEEEaiIDIAEgAiAEIABBA3FBhglqEQoAIAMQfSEFIAMQMSAEEDEgBCQEIAULKwEBfxDVByIBQZquBCABGyEBIABCADcCACAAQQA2AgggACABIAEQXBCTAQsxAQF/IwQhASMEQRBqJAQgASAAEJ8BIAEoAgAgASABLAAL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C0EASAR/IAAoAgAFIAALIAEQqwgLGAAgACwAC0EASAR/IAAoAgAFIAALEJMKCwkAIAAgARDiEAsqAQJ/An8jBCEBIwRBEGokBEHEvgJBBEHAywFBicsCQRJBFxACIAELJAQLCwAgACABIAIQ4BALCQAgACABEN8QCwsAIAAgASACEN4QCxgAIAAsAAtBAEgEfyAAKAIABSAACxCpAwsJACAAIAEQ3BALGAAgACwAC0EASAR/IAAoAgAFIAALEKsDCyoBAn8CfyMEIQEjBEEQaiQEQem9AkEFQdDLAUG7zAJBDUELEAIgAQskBAsNACAAIAEgAiADENsQCyoBAn8CfyMEIQEjBEEQaiQEQd69AkEFQfDLAUG7zAJBDEEKEAIgAQskBAsNACAAIAEgAiADENoQCxoAIAAsAAtBAEgEfyAAKAIABSAACyABEK8ICwcAIAAQ2RALKgECfwJ/IwQhASMEQRBqJARB6bwCQQRBkMwBQd3NAkECQQEQAiABCyQECwsAIAAgASACENcQCyoBAn8CfyMEIQEjBEEQaiQEQeG8AkEDQez4AUHjzQJBEUEdEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHZvAJBA0H4+AFB480CQRBBHBACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB0bwCQQNBhPkBQePNAkEPQRsQAiABCyQECxoAIAAsAAtBAEgEfyAAKAIABSAACyABELUICyoBAn8CfyMEIQEjBEEQaiQEQbO8AkEEQaDMAUGJywJBEUEVEAIgAQskBAscACAALAALQQBIBH8gACgCAAUgAAsgASACEM8FCwkAIAAgARDVEAsRACAAIAEgAiADIAQgBRDUEAsqAQJ/An8jBCEBIwRBEGokBEGPvAJBBkGwzAFB6M0CQRFBBhACIAELJAQLDwAgACABIAIgAyAEEM0QCw0AIAAgASACIAMQyhALKgECfwJ/IwQhASMEQRBqJARB9bsCQQVB0MwBQbvMAkELQQgQAiABCyQECw0AIAAgASACIAMQyBALCwAgACABIAIQxxALNQEBfyAALAALQQBIBEAgACgCACEACxA8IgIsAH8Ef0EABSACIAAQXiABQRpyIABBABDTAgsLBwAgABC9CAsYACAALAALQQBIBH8gACgCAAUgAAsQvggLKgECfwJ/IwQhASMEQRBqJARB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AAtBAEgEfyAAKAIABSAACyABELkCCyoBAn8CfyMEIQEjBEEQaiQEQc61AkEEQfDSAUGJywJBDkEJEAIgAQskBAsLACAAIAEgAhC1DwsJACAAIAEQsw8LKgECfwJ/IwQhASMEQRBqJARBubUCQQhBgNMBQYfRAkEEQQEQAiABCyQECxMAIAAgASACIAMgBCAFIAYQrw8LKgECfwJ/IwQhASMEQRBqJARBs7UCQQdBoNMBQZ/TAkEBQQQQAiABCyQECxEAIAAgASACIAMgBCAFEK0PCwkAIAAgARCsDwsaACAALAALQQBIBH8gACgCAAUgAAsgARCDCQsYACAALAALQQBIBH8gACgCAAUgAAsQxAQLCQAgACABEKkPC6cEAgF/AX4jBCEBIwRBEGokBCAAEDogAEEIahA6IABBEGoQOiAAQRhqEDogAEEgahA6IABBLGoQOiAAQcwAahBmIABB3ABqEGYgAEGAAWoQOiAAQYgBahBoIABBADYCsAEgAEEANgKsASAAQQA2ArQBIABBuAFqEGggAEHEAWoQaCAAQQA2AtQBIABBADYC0AEgAEEANgLYASAAQegBahDnAiAAQewBahDnAiAAQfABahDnAiABQwAAAABDAAAAABAyIAAgASkDACICNwIYIAAgAjcCECAAIAI3AgggACACNwIAIAFDAAAAAEMAAAAAEDIgACABKQMAIgI3AiwgACACNwIgIABDAAAAADgCNCAAQwAAAAA4AiggAEMAAIC/OAI4IABCADcCPCAAQgA3AkQgARBmIAAgASkCADcCXCAAIAEpAgg3AmQgACABKQIANwJMIAAgASkCCDcCVCAAQQA2AnggAEEANgJ0IABBADYCbCAAQQE2AnAgAEEAOgB8IABBADoAfSAAQQA6AH4gAUMAAAAAQwAAAAAQMiAAIAEpAwA3AoABIABBADYClAEgAEEBNgKcASAAQQE2ApgBIABDAAAAADgCpAEgAEEANgKgASAAQwAAgL84AqgBIABCADcC3AEgAEEANgLkASABEOcCIAAgASgCADYC6AEgARDnAiAAIAEoAgA2AuwBIAEQ5wIgACABKAIANgLwASAAQQA2AvQBIAEkBAsaACAALAALQQBIBH8gACgCAAUgAAtBABC5AQsHACAAEKAPC9AHAgV/AX4jBCEFIwRBEGokBCAFIQMgAEEMahA6IABBFGoQOiAAQRxqEDogAEEkahA6IABBLGoQOiAAQTRqEDogAEE8ahA6IABB2ABqEDogAEHgAGoQOiAAQegAahA6IABB8ABqEDogAEG4AWoQOiAAQcABahA6IABByAFqEMoSIABBwANqIgYiBEEANgIEIARBADYCACAEQQA2AgggAEHMA2oQZiAAQdwDahBmIABB7ANqEGYgAEH8A2oQZiAAQYwEahBmIABBpARqEN4DIABB1ARqEGggAEEANgLkBCAAQQA2AuAEIABBADYC6AQgAEH4BGoiByABQbwxahD4ByAAQagGaiEEIABBiAZqIQEDQCABEGYgAUEQaiIBIARHDQALIAAgAhDaBjYCACAAQQRqIgEgAkEAQQAQuwE2AgAgBiABEHggAEEANgIIIANDAAAAAEMAAAAAEDIgACADKQMANwIMIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AhwgACAINwIUIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AjQgACAINwIsIANDAAAAAEMAAAAAEDIgACADKQMANwI8IABDAAAAADgCRCAAQwAAAAA4AkggACACEFxBAWo2AkwgACAAQf6FAhBeNgJQIABBADYCVCADQwAAAABDAAAAABAyIAAgAykDADcCWCADQ///f39D//9/fxAyIAAgAykDADcCYCADQwAAAD9DAAAAPxAyIAAgAykDADcCaCADQwAAAABDAAAAABAyIAAgAykDADcCcCAAQQA7AYQBIABCADcCeCAAQQA7AYABIABBADoAggEgAEF/OwGGASAAQX87AYgBIABBADYCjAEgAEF/NgKUASAAQX82ApABIABBADoAmAEgAEEANgKcASAAQX82AqABIABBADYCqAEgAEEANgKkASAAQQ82ArQBIABBDzYCsAEgAEEPNgKsASADQ///f39D//9/fxAyIAAgAykDACIINwLAASAAIAg3ArgBIABBfzYCnAQgAEMAAAAAOAKgBCAAQwAAgD84AuwEIABBfzYC8AQgACAHNgL0BCAAIAAoAgA2AqQFIABBADYChAYgAEEANgKABiAAQgA3AuwFIABCADcC9AUgAxBmIAAgAykCADcCmAYgACADKQIINwKgBiAAIAMpAgA3AogGIAAgAykCCDcCkAYgAEEANgL8BSAAQX82AqwGIABBfzYCqAYgAEH/////BzYCtAYgAEH/////BzYCsAYgAEH/////BzYCvAYgAEH/////BzYCuAYgBSQECwcAIAAQnw8LKgECfwJ/IwQhASMEQRBqJARB5rICQQRBwNMBQfHJAkEJQQYQAiABCyQECwsAIAAgASACEJsPCx4BAX8jBCEBIwRBEGokBCABIAAQNyABEIcEIAEkBAsJACAAIAEQmg8LCQAgACABEJkPCx4BAX8jBCEBIwRBEGokBCABIAAQNyABEJ4KIAEkBAsJACAAIAEQmA8LHgEBfyMEIQEjBEEQaiQEIAEgABA3IAEQ/gUgASQECyoBAn8CfyMEIQEjBEEQaiQEQfuuAkECQfD8AUHayQJBH0EGEAIgAQskBAsHACAAEM4ECwcAIAAQlQ8LKgECfwJ/IwQhASMEQRBqJARB364CQQNBgP0BQZrLAkEbQQcQAiABCyQECwoAIAAgARA9EEILCQAgACABEJMPCy0BAX8jBCEBIwRBEGokBCABQZipBCgCAEGwMWooAgA2AgAgACABEIMDIAEkBAsqAQJ/An8jBCEBIwRBEGokBEGirgJBAkGM/QFB2skCQR1BERACIAELJAQLCQAgACABEJIPCwkAIAAgARCRDwsJACAAIAEQjw8LBQAQ4wYLBwAgABCODwsHACAAEIwPCyMAIwQhACMEQRBqJAQgAEHh1AI2AgBB4tMCIAAQugMgACQECywAIAAsAAtBAEgEQCAAKAIAIQALIAAEQCAAEKECIgAEQCAAEHQLBUEAEHQLCyoBAn8CfyMEIQEjBEEQaiQEQaisAkEEQdDTAUHxyQJBCEEFEAIgAQskBAsmACAALAALQQBIBH8gACgCAAUgAAsQoQIiAARAIAAgASACEPsECwsLACAAIAEgAhCKDwsLACAAIAEgAhCIDwsSAEGYqQQoAgBBlDNqKAIAEHQLFwBBmKkEKAIAQZQzaigCACAAIAEQ+wQLLgEBfyMEIQIjBEEQaiQEIAIgABA3QZipBCgCAEGUM2ooAgAgAiABEP0EIAIkBAsiAQF/IwQhAiMEQRBqJAQgAiAAEDcQYCACIAEQvwMgAiQECzkBAX8jBCEBIwRBEGokBCABIAAQN0GYqQQoAgAiAEHoNGogASkCADcCACAAQbw0akEBNgIAIAEkBAsqAQJ/An8jBCEBIwRBEGokBEHTqgJBBUHw0wFB6tUCQQRBBRACIAELJAQLCwAgACABIAIQhg8LIAEBfyMEIQIjBEEQaiQEIAIgABA3IAIgARCaBCACJAQLKgECfwJ/IwQhASMEQRBqJARBsKoCQQRBkNQBQfHJAkEGQQIQAiABCyQECwsAIAAgASACEIAPCwkAIAAgARD/DgsJACAAIAEQ/g4LJQEBfyMEIQEjBEEQaiQEIAEQPCgC9AQ2AgAgACABEOQHIAEkBAsJACAAIAEQ/Q4LCQAgACABEPwOCwkAIAAgARD6DgsJACAAIAEQ+A4LKgECfwJ/IwQhASMEQRBqJARBhKgCQQVBoNQBQbvMAkEHQQEQAiABCyQECw0AIAAgASACIAMQ9g4LCwAgACABIAIQ9Q4LBwAgABDdCQsHACAAEN4JCwcAIAAQsAYLHwAgAEIANwIAIABBADYCCCAAQYakAkGGpAIQXBCTAQsIABCVCBCDDAsLgP4CUgBBgggLE4A/AACAPwAAgL8AAIC/AAAAAAMAQZ4ICw+APwAAgD8AAIC/AwAAAAYAQboIC1iAPwAAgD8GAAAACQAAAAAAgD8AAAAAAACAvwAAgD8JAAAADAAAAAMAAAABAAAAAAAAAAIAAAABAAAAAwAAAAIAAAAAAAAAoocAAKeHAACthwAAsYcAAL2HAEGgCQuFAgQAAAABAAAAAAAAAAQAAAACAAAABAAAAAQAAAABAAAADAAAAAQAAAABAAAAEAAAAAQAAAACAAAAFAAAAAQAAAACAAAAHAAAAAQAAAABAAAAJAAAAAQAAAABAAAAKAAAAAQAAAABAAAALAAAAAQAAAABAAAAMAAAAAQAAAACAAAANAAAAAQAAAABAAAAPAAAAAQAAAABAAAAQAAAAAQAAAACAAAARAAAAAQAAAACAAAATAAAAAQAAAABAAAAXAAAAAQAAAABAAAAZAAAAAQAAAABAAAAaAAAAAQAAAABAAAAbAAAAAQAAAABAAAAcAAAAAQAAAABAAAAdAAAAAQAAAACAAAAfABBsAsL5BYuLi0gICAgICAgICAtWFhYWFhYWC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWFhYWFhYWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtICAgICBYWCAgICAgICAgICAuLi0gICAgICAgICAtWC4uLi4uWC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWC4uLi4uWCAgICAgICAgICAtICAgICAgICAgIFguLi4uLlgtICAgIFguLlggICAgICAgICAtLS0gICAgICAgICAtWFhYLlhYWC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtWC4uLi5YICAgICAgICAgICAtICAgICAgICAgICBYLi4uLlgtICAgIFguLlggICAgICAgICBYICAgICAgICAgICAtICBYLlggIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtWC4uLlggICAgICAgICAgICAtICAgICAgICAgICAgWC4uLlgtICAgIFguLlggICAgICAgICBYWCAgICAgICAgICAtICBYLlggIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtWC4uWC5YICAgICAgICAgICAtICAgICAgICAgICBYLlguLlgtICAgIFguLlggICAgICAgICBYLlggICAgICAgICAtICBYLlggIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtWC5YIFguWCAgICAgICAgICAtICAgICAgICAgIFguWCBYLlgtICAgIFguLlhYWCAgICAgICBYLi5YICAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWFggICBYLlggICAgICAgICAtICAgICAgICAgWC5YICAgWFgtICAgIFguLlguLlhYWCAgICBYLi4uWCAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgWC5YICAgICAgICAtICAgICAgICBYLlggICAgICAtICAgIFguLlguLlguLlhYICBYLi4uLlggICAgICAtICBYLlggIC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgIFguWCAgICAgICAtICAgICAgIFguWCAgICAgICAtICAgIFguLlguLlguLlguWCBYLi4uLi5YICAgICAtICBYLlggIC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICBYLlggICAgICAtICAgICAgWC5YICAgICAgICAtWFhYIFguLlguLlguLlguLlhYLi4uLi4uWCAgICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgWC5YICAgWFgtWFggICBYLlggICAgICAgICAtWC4uWFguLi4uLi4uLlguLlhYLi4uLi4uLlggICAtICBYLlggIC0gICBYLlggICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgIFguWCBYLlgtWC5YIFguWCAgICAgICAgICAtWC4uLlguLi4uLi4uLi4uLlhYLi4uLi4uLi5YICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgICBYLlguLlgtWC4uWC5YICAgICAgICAgICAtIFguLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uWCAtWFhYLlhYWC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICAgICAgWC4uLlgtWC4uLlggICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uLlgtWC4uLi4uWC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgICAgICBYLi4uLlgtWC4uLi5YICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uWFhYWFgtWFhYWFhYWC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgICAgIFguLi4uLlgtWC4uLi4uWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uLlhYLi4uWC4uWCAgICAtLS0tLS0tLS0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtWFhYWFhYWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uWCBYLi5YIFguLlggICAtICAgICAgIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tICAgIFguLi4uLi4uLi4uWCBYLlggIFguLlggICAtICAgICAgIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAtICAgIFguLi4uLi4uLi4uWCBYWCAgICBYLi5YICAtICAgICAgIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICBYLi5YICAgICAgICAgIC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICAgWFggICAgICAgICAgIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAtICAgICBYWFhYWFhYWFhYICAtLS0tLS0tLS0tLS0gICAgICAgIC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0gICAgICAgICAgICAgICAgICAgIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAQaAiC8xdN10pIyMjIyMjI2hWMHFzJy8jIyNbKSwjIy9sOiQjUTY+IyM1W240Mj5jLVRIYC0+PiMvZT4xMU5OVj1CdigqOi5GP3V1IyhnUlUubzBYR0hgJHZoTEcxaHh0OT9XYCMsNUxzQ3AjLWk+LnIkPCQ2cEQ+TGInOzlDcmM2dGdYbUtWZVUyY0Q0RW8zUi8yKj5dYihNQzskalBmWS47aF5gSVdNOTxMaDJUbFMrZi1zJG82UTxCV0hgWWlVLnhmTHEkTjskMGlSL0dYOlUoamNXMnAvVypxPy1xbW5VQ0k7akhTQWlGV00uUiprVUBDPUdIP2E5d3A4ZiRlLi00XlFnMSlRLUdMKGxmKHIvN0dyUmd3ViVNUz1DI2A4TkQ+UW8jdCdYIyh2I1k5dzAjMUQkQ0lmO1cnI3BXVVBYT3V4WHVVKEg5TSgxPHEtVUUzMSNeLVYnOElSVW83UWYuL0w+PUtlJCQnNUYlKV0wXiMwWEBVLmE8cjpRTHRGc0xjTDYjI2xPaikjLlk1PC1SJktnTHdxSmZMZ04mO1E/Z0leI0RZMnVMaUBeck1sOXQ9Y1dxNiMjd2VnPiRGQmpWUVRTRGdFS25JUzdFTTk+Wlk5dzAjTDs+PiNNeCY0TXZ0Ly9MW01rQSNXQGxLLk4nWzAjN1JMXyYjdytGJUh0RzlNI1hMYE4mLixHTTRQZzstPG5MRU5odng+LVZzTS5NMHJKZkxIMmVUTWAqb0pNSFJDYE5rZmltTTJKLFctalhTOilyMHdLI0BGZ2UkVT5gdydON0cjJCNmQiMkRV4kIzo5OmhrK2VPZS0tNngpRjcqRSU/NzYlXkdNSGVQVy1aNWwnJkdpRiMkOTU2OnJTP2RBI2ZpSzopWXIrYCYjMGpAJ0RiRyYjXiRQRy5MbCtETmE8WENNS0VWKk4pTE4vTipiPSVRNnBpYS1YZzhJJDxNUiYsVmRKZSQ8KDdHO0NrbCcmaEY7OyQ8Xz1YKGIuUlMlJSkjIyNNUEJ1dUUxVjp2JmNYJiMybSMoJmNWXWBrOU9oTE1ibiVzJEcyLEIkQmZEM1gqc3A1I2wsJFIjXXhfWDF4S1glYjVVKltyNWlNZlVvOVVgTjk5aEcpdG0rL1VzOXBHKVhQdWA8MHMtKVdUdChnQ1J4SWcoJTZzZmg9a3RNS24zaik8NjxiNVNrXy8wKF5dQWFOIyhwL0w+JlZaPjFpJWgxUzl1NW9AWWFhVyRlK2I8VFdGbi9aOk9oKEN4MiRsTkVvTl5lKSNDRllAQEk7Qk9RKnNSd1p0WnhSY1U3dVc2Q1hvdzBpKD8kUVtjak9kW1A0ZCldPlJPUE9weFRPN1N0d2kxOjppQjFxKUNfPWRWMjZKOzIsXTdvcCRddVFyQF9WNyRxXiVsUXd0dUhZXT1EWCxuM0wjMFBIRE80Zjk+ZENATz5IQnVLUHBQKkUsTitiM0wjbHBSL01yVEVILklBUWsuYT5EWy5lO21jLnhdSXAuUEheJy9hcVVPLyQxV3hMb1cwW2lMQTxRVDs1SEtEK0BxUSdOUSgzX1BMaEU0OFIucUFQU3dRMC9XSz9aLFt4Py1KO2pRVFdBMFhAS0ooX1k4Ti06L003NDovLVpwS3JVc3M/ZCNkWnFdREFia1UqSnFrTCtud1hAQDQ3YDU+dz00aCg5LmBHQ1JVeEhQZVJgNU1qb2woZFVXeFphKD5TVHJQa3JKaVd4YDVVN0YjLmcqanJvaEdnYGNnOmxTVHZFWS9FVl83SDRROVtaJWNudjtKUVlaNXEubDdaZWFzOkhPSVpPQj9HPE5hbGQkcXNdQF1MPEo3YlIqPmd2Ols3TUkyaykuJzIoJDVGTlAmRVEoLClVXVddK2ZoMTgudnNhaTAwKTtEM0A0a3U1UD9EUDhhSnQrO3FVTV09K2InOEA7bVZpQkt4MERFWy1hdUdsODpQSiZEaitNNk9DXU9eKCgjI11gMGkpZHJUOy03WGA9LUgzW2lnVW5QRy1OWmxvLiNrQGgjPU9yayRtPmE+JC0/VG0kVVYoPyNQNllZIycvIyMjeGU3cS43M3JJMypwUC8kMT5zOSlXLEpyTTdTTl0nLzRDI3YkVWAwI1YuWzA+eFFzSCRmRW1QTWdZMnU3S2goRyVzaUlmTFNvUytNSzJlVE0kPTUsTThwYEEuO19SJSN1W0sjJHg0QUc4LmtLL0hTQj09LSdJZS9RVHRHPy0uKl5OLTRCL1pNXzNZbFFDNyhwN3EpJl0oYDZfYykkLypKTChMLV4oXSR3SU1gZFB0T2RHQSxVMzp3Mk0tMDxxLV1MXz9eKTF2dycuLE1Sc3FWci5MO2FOJiMvRWdKKVBCY1stZj4rV29tWDJ1N2xxTTJpRXVtTVRjc0Y/LWFUPVotOTdVRW5YZ2xFbjFLLWJuRU9gZ3VGdChjJT07QW1fUXNAakxvb0kmTlg7XTAjajQjRjE0O2dsOC1HUXBnd2hycTgnPWxfZi1iNDknVU9xa0x1Ny0jI29EWTJMKHRlK01jaCZnTFl0SixNRXRKZkxoJ3gnTT0kQ1MtWlolUF04Ylo+I1M/WVkjJVEmcSczXkZ3Jj9EKVVETnJvY00zQTc2Ly9vTD8jaDdnbDg1W3FXL05ET2slMTZpajsrOjFhJ2lOSWRiLW91OC5QKncsdjUjRUkkVFdTPlBvdC1SKkgnLVNFcEE6ZylmK08kJSVga0EjRz04Uk1tRzEmT2A+dG84YkNdVCYkLG4uTG9PPjI5c3AzZHQtNTJVJVZNI3E3J0RIcGcrI1o5JUhbSzxMJWEyRS1ncldWTTNAMj0tazIydExdNCQjIzZXZSc4VUpDS0VbZF89JXdJOyc2WC1Hc0xYNGpeU2dKJCMjUip3LHZQM3dLI2lpVyYjKmheRCZSP2pwNysvdSYjKEFQIyNYVThjJGZTWVctSjk1Xy1EcFtnOXdjTyYjTS1oMU9jSmxjLSp2cHcweFVYJiNPUUZLTlhAUUknSW9QcDduYixRVS8vTVEmWkRrS1ApWDxXU1ZMKDY4dVZsJiNjJ1swIyhzMVgmeG0kWSVCNypLOmVEQTMyM2o5OThHWGJBI3B3TXMtamdEJDlRSVNCLUFfKGFONHhvRk1eQEM1OEQwK1ErcTNuMCMzVTFJbkRqRjY4Mi1Tak1YSkspKGgkaHh1YV9LXXVsOTIlJ0JPVSYjQlJSaC1zbGc4S0RscjolTDcxS2E6LkE7JVlVTGpEUG1MPExZczhpI1h3Sk9ZYUtQS2MxaDonOUtlLGcpYiksNzg9STM5Qjt4aVkkYmdHdy0mLlppOUluWER1WWElRypmMkJxN21uOV4jcDF2diUjKFdpLTsvWjVobzsjMjo7JWQmI3g5djY4QzVnP250WDBYKXBUYDslcEIzcTdtZ0dOKTMlKFA4blRkNUw3R2VBLUdMQCslSjN1MjooWWY+ZXRgZTspZiNLbTgmK0RDJEk0Nj4jS3JdXXUtWz05OXR0czEucWIjcTcyZzFXSk84MXErZU4nMDMnZU0+JjFYeFktY2FFbk9qJTJuOCkpLD9JTFI1Xi5JYm48LVgtTXE3W2E4MkxxOkYmI2NlK1M5d3NDSyp4YDU2OUU4ZXcnSGVdaDpzSVsyTE0kW2d1a2EzWlJkNjp0JUlHOjskJVlpSjpOcT0/ZUF3Oy86bm5EcTAoQ1ljTXBHKXFMTjQkIyMmSjxqJFVwSzxRNGExXU11cFdeLXNqXyQlW0hLJSdGIyMjI1FSWko6OlkzRUdsNCdAJUZraUFPZyNwWyMjT2BndWtUZkJIYWdMPExIdyVxJk9WMCMjRj02LzpjaEltMEBlQ1A4WF06a0ZJJWhsOGhnT0BSY0JoUy1AUWIkJSttPWhQRExnKiVLOGxuKHdjZjMvJ0RXLSQubFI/bltuQ0gtZVhPT05USmxoOi5SWUYlMydwNnNxOlVJTUE5NDUmXkhGUzg3QCRFUDJpRzwtbENPJCVjYHVLR0QzckMkeDBCTDhhRm4tLWBrZSUjSE1QJ3ZoMS9SJk9fSjkndW0sLjx0eFtAJXdzSmsmYlVUMmAwdU12N2dnI3FwL2lqLkw1NidobDsuczVDVXJ4ak9NNy0jIy5sK0F1J0EmTzotVDcyTF1QYCY9O2N0cCdYU2NYKnJVLj4tWFR0LCVPVlU0KVMxK1ItI2RnMC9Obj9LdTFeMGYkQipQOlJvd3dtLWAwUEtqWURETSczXWQzOVZaSEVsNCwuaiddUGstTS5oXiY6MEZBQ20kbWFxLSZzZ3cwdDcvNiheeHRrJUx1SDg4RmotZWttPkdBI18+NTY4eDYoT0ZSbC1JWnBgJmIsX1AnJE08Sm5xNzlWc0pXL21XUypQVWlxNzY7XS9OTV8+aExieGZjJG1qYCxPOyYlVzJtYFpoOi8pVWV0dzphSiVdSzloOlRjRl11Xy1TajksVkszTS4qJyYwRFtDYV1KOWdwOCxrQVddJSg/QSVSJGY8LT5adHMnXmtuPS1eQGM0JS1wWTZxSSVKJTFJR3hmTFU5Q1A4Y2JQbFh2KTtDPWIpLDwybU92UDh1cCxVVmYzODM5YWNBV0FXLVc/I2FvL14jJUtZbzhmUlVMTmQyLj4lbV1VSzpuJXIkJ3N3XUo7NXBBb09fIzJtTzNuLCc9SDUoZXRIZypgK1JMZ3Y+PTRVOGd1RCRJJUQ6Vz4tcjVWKiVqKlc6S3Zlai5McCQ8TS1TR1onOitRX2srdXZPU0xpRW8oPGFEL0s8Q0NjYCdMeD4nPzsrK08nPigpakxSLV51NjhQSG04WkZXZStlajhoOjlyNkwqMC8vYyZpSCZSOHBSYkEjS2ptJXVwVjFnOmFfI1VyN0Z1QSModFJoIy5ZNUsrQD8zPC04bTAkUEVuO0o6cmg2P0k2dUc8LWB3TVUnaXJjcDBMYUVfT3RsTWImMSM2VC4jRkRLdSMxTHcldSUrR00rWCdlP1lMZmpNW1ZPME1idUZwNzs+USYjV0lvKTBARiVxN2MjNFhBWE4tVSZWQjxIRkYqcUwoJC9WLDsoa1haZWpXT2A8WzU/P2V3WSgqOT0ld0RjOyx1PCc5dDNXLShIMXRoMytHXXVjUV1rTHM3ZGYoJC8qSkxdQCp0N0J1X0czXzdtcDc8aWFRak9ALmtMZzt4M0IwbHFwN0hmLF5aZTctIyNAL2M1OE1vKDM7a25wMCUpQTc/LVcrZUknbzgpYjxuS253J0hvOEM9WT5wcUI+MGllJmpoWls/aUxSQEBfQXZBLWlRQyg9a3NSWlJWcDdgLj0rTnBCQyVyaCYzXVI6OFhEbUU1XlY4Tyh4PDxhRy8xTiQjRlgkMFY1WTZ4J2FFckkzSSQ3eCVFYHY8LUJZLCklLT9Qc2YqbD8lQzMubU0oPS9NMDpKeEcnPzdXaEglbydhPC04MGcwTkJ4b08oR0g8ZE1dbi4rJXFAakg/Zi5Vc0oyR2dzJjQ8LWU0NyZLbCtmLy85QGBiKz8uVGVOXyZCOFNzP3Y7XlRyaztmI1l2SmtsJnckXT4tK2s/Jyg8Uzo2OHRxKldvRGZadSc7bU0/OFhbbWE4VyUqYC09O0QuKG5jNy87KWc6VDE9XkokJkJSVigtbFRtTkI2eHFCW0AwKm8uZXJNKjxTV0ZddTI9c3QtKig2dj5eXShILmFSRVpTaSwjMTpbSVhhWkZPbTwtdWkjcVVxMiQjI1JpO3U3NU9LIyhSdGFXLUstRmBTK2NGXXVOYC1LTVElclAvWHJpLkxSY0IjIz1ZTDNCZ00vM01EP0BmJjEnQlctKUp1PEwyNWdsOHVoVm0xaEwkIyMqOCMjIydBMy9Ma0tXKyhecldYPzVXXzhnKWEobSZLOFA+I2JtbVdDTWtrJiNUUmBDLDVkPmcpRjt0LDQ6QF9sOEcvNWg0dlVkJSYlOTUwOlZYRCdRZFdvWS1GJEJ0VXdtZmUkWXFMJzgoUFdYKFA/XkBQbzMkIyNgTVNzP0RXQlovUz4rNCU+ZlgsVld2L3cnS0RgTFA1SWJIO3JUVj5uM2NFSzhVI2JYXWwtL1YrXmxqMzt2bE1iJls1WVE4I3Bla1g5SlAzWFVDNzJMLCw/K05pJmNvN0Fwbk8qNU5LLCgoVy1pOiQsa3AnVURBTyhHMFNxN01WakpzYkl1KSdaLCpbPmJyNWZYXjpGUEFXci1tMktnTDxMVU4wOThrVEYmI2x2bzU4PS92akRvOy47KUthKmhMUiMvaz1yS2J4dVZgPlFfbk42Jzh1VEcmIzFUNWcpdUx2Ojg3M1VwVExnSCsjRmdwSCdfbzE3ODBQaDhLbXhRSjgjSDcyTDRANzY4QFRtJlFoNENCLzVPdm1BJixRJlFiVW9pJGFfJTNNMDFIKTR4N0leJktRVmd0Rm5WKztbUGM+W200ay8vLF0xPyNgVllbSnIqMyYmc2xSZkxpVlpKOl0/PUszU3c9WyQ9dVJCPzN4azQ4QGFlZzxaJzwkIzRIKTYsPmUwalQ2J04jKHElLk89PzJTXXUqKG08LVY4SicoMSlHXVs2OGhXJDUncVtHQyY1amBURT9tJ2VzRkdOUk0paixmZlo/LXF4ODstPmc0dCo6Q0lQL1tRYXA3LzknIygxc2FvN3ctLnFOVWRrSil0Q0YmI0JeO3hHdm4ycjlGRVBGRkZjTEAuaUZOa1R2ZSRtJSNRdlFTOFVAKTJaKzNLOkFLTTVpc1o4OCtkS1EpVzY+SiVDTDxLRT5gLmQqKEJgLW44RDlvSzxVcF1jJFgkKCwpTThadDcvW3Jka3FUZ2wtMGN1R012Jz8+LVhWMXFbJy01aydjQVo2OWU7RF8/JFpQUCZzXis3XSkkKiQjQFFZaTksNVAmIzlyKyQlQ0U9Njg+SzhyMD1kU0MlJShAcDcubTdqaWxRMDInMC1WV0FnPGEvJyczdS49NEwkWSk2ay9LOl9bMz0manZMPEwwQy8yJ3Y6XjstRElCVyxCNEU2ODprWjslPzgoUThCSD1rTzY1Qlc/eFNHJiNAdVUsRFMqLD8uKyhvKCMxdkNTOCNDSEY+VGxHVydiKVRxN1ZUOXFeKl4kJC46Jk5AQCQmKVdIdFBtKjVfck8wJmUlSyYjLTMwaihFNCMnWmIuby8oVHBtJD5LJ2ZAW1B2RmwsaGZJTlROVTZ1JzBwYW83JVhVcDldNS4+JWhgOF89VllieHVlbC5OVFNzSmZMYWNGdTNCJ2xRU3UvbTYtT3FlbThUK29FLS0kMGEva111ajlFd3NHPiV2ZVIqaHZeQkZwUWo6SycjU0osc0ItJyNdKGouTGc5MnJUdy0qbiVALzszOXJySkYsbCNxViVPcnRCZUM2Lyw7cUIzZWJOV1s/LEhxajJMLjFOUCZHalVSPTFEOFFhUzNVcCZAKjl3UD8rbG83Yj9AJSdrNGBwMFokMjIlSzMraUNaaj9YSk40Tm0mK1lGXXVALVckVSVWRVEvLCw+PiMpRDxoI2ApaDA6PFE2OTA5dWErJlZVJW4yOmNHM0ZKLSVAQmotRGdMcmBIdyZIQUtqS2pzZUs8L3hLVCopQixOOVgzXWtyYzEydCdwZ1RWKEx2LXRMW3hnXyU9TV9xN2FeeD83VWJkPiMlOGNZI1laPz0sYFdkeHUvYWUmI3c2KVI4OXRJIzZAcycoNkJmN2EmP1M9XlpJX2tTJmFpYCY9dEU3MkxfRCw7XlIpN1skczxFaCNjJilxLk1YSSUjdjlST2E1RlpPJXNGN3E3TndiJiNwdFVKOmFxSmUkU2w2OCUuRCMjI0VDPjw/LWFGJiNSTlF2Pm84bEtOJTUvJCh2ZGZxNytlYkEjdTFwXW92VUtXJlklcV0nPiQxQC1beGZuJDdaVHA3bU0sRyxLbzdhJkd1JUdbUk14SnNbME1NJXdjaS5MRkRLKSg8Y2BROE4pakVJRiorP1AyYThnJSkkcV1vMmFIOEMmPFNpYkMvcSwoZTp2Oy1iIzZbJE50RFo4NEplMktOdkIjJFA1P3RRM250KDBkPWouTFFmLi9MbDMzKyg7cTNMLXc9OGRYJCNXRiZ1SUpALWJmST4lOl9pMkI1Q3NSOCY5WiYjPW1QRW5tMGZgPCZjKVFMNXVKIyV1JWxKaitELXI7Qm9GJiM0RG9TOTdoNWcpRSNvOiZTNHdlREYsOV5Ib2VgaCpMK19hKk5yTFctMXBHXyYyVWRCODZlJUIvOj0+KU40eGVXLip3ZnQtOyQnNTgtRVNxcjxiP1VJKF8lQFtQNDY+I1VgJzZBUV1tJjYvYFo+I1M/WVkjVmM7cjdVMiYzMjZkPXcmSCMjIyM/VFpgKjQ/Ji5NSz9MUDhWeGc+JFtRWGMlUUp2OTIuKERiKkIpZ2IqQk05ZE0qaEpNQW8qYyYjYjB2PVBqZXJdJGdHJkpYRGYtPidTdHZVNzUwNWw5JEFGdmdZUkleJjxeYjY4P2ojcTlRWDRTTSdSTyMmc0wxSU0uckpmTFVBajIyMV1kIyNEVz1tODN1NTsnYll4LCpTbDBoTChXOzskZG9CJk8vVFE6KFpeeEJkTGpMPExuaTsnJ1guYCQjOCsxR0Q6ayRZVVdzYm44b2doNnJ4WjJaOV0lbmQrPlYjKjhVXzcyTGgrMlE4Q2owaTo2aHAmJEMvOnAoSEs+VDhZW2dIUTRgNCknJEFiKE5vZiVWJzhoTCYjPE5FZHRnKG4nPVMxQShRMS9JJjQoWyVkTWAsSXUnMTpfaEw+U2ZEMDcmNkQ8ZnA4ZEhNNy9nK3RsUE45SipyS2FQY3QmPyd1QkNlbV5qbiU5X0spPCxDNUszcz01ZyZHbUpiKltTWXE3SztUUkxHQ3NNLSQkO1MlOllAcjdBSzBwcHJwTDxMcmgscTdlLyVLV0s6NTBJXittJ3ZpYDM/JVpwKzwtZCskTC1TdjpALm8xOW4kczAmMzk7a247UyVCU3EqJDNXb0pTQ0x3ZVZbYVonTVFJak88NztYLVg7JitkTUx2dSNeVXNHRUM5V0VjW1god0k3IzIuKEYwalYqZVpmPC1RdjNKLWMrSjVBbHJCIyRwKEg2OEx2RUEncTNuMCNtLFtgKjhGdClGY1lnRXVkXUNXZm02OCwoYUxBJEBFRlRnTFhvQnEvVVBscDc6ZFsvO3JfaXg9OlRGYFM1SC1iPExJJkhZKEs9aCMpXUxrJEsxNGxWZm06eCRIPDNeUWw8TWAkT2hhcEJua3VwJ0QjTCRQYl9gTipnXTJlO1gvRHRnLGJzaiZLIzJbLTppWXInX3dnSClOVUlSOGExbiNTP1llaidoOF41OFViWmQrXkZLRCpUQDs2QTdhUUNbSzhkLSh2NkdJJHg6VDwmJ0dwNVVmPkBNLipKOjskLXJ2MjknTV04cU12LXRMcCwnODg2aWFDPUhiKllKb0tKLChqJUs9SGBLLnY5SGdncUJJaVp1J1F2QlQuIz0pMHVrcnVWJi4pMz0oXjFgbypQajQ8LTxhTigoXjcoJyNaMHdLIzVHWEA3dV1bYCpTXjQzOTMzQTRybF1bYCpPNENnTEVsXXYkMVEzQWVGMzdkYlhrLC4pdmojeCdkYDtxZ2JRUiVGVywyKD9MTz1zJVNjNjglTlAnIyNBb3RsOHg9QkUjajFVRChbMyRNKF1VSTJMWDNScEtOQDsvI2YnZi8mX210JkYpWGRGPDl0NClRYS4qa1RMd1EnKFRUQjkueEgnPiNNSitnTHE5LSMjQEh1WlBOMF11Omg3LlQuLkc6OyQvVXNqKFQ3YFE4dFQ3MkxuWWw8LXF4ODstSFY3US0mWGR4JTFhLGhDPTB1K0hsc1Y+bnVJUUwtNTxOPylOQlMpUU4qX0ksPyYpMidJTSVMM0kpWCgoZS9kbDImOCc8TTpeI00qUStbVC5YcmkuTFlTM3YlZkZgNjhoO2ItWFsvRW4nQ1IucTdFKXAnL2tsZTJITSx1O14lT0tDLU4rTGwlRjlDRjxOZideI3QyTCw7MjdXOjBPQDYjI1U2Vzc6JHJKZkxXSGokIyl3b3FCZWZJWi5QSzxiKnQ3ZWQ7cCpfbTs0RXhLI2hAJl0+Xz5Aa1hRdE1hY2ZELm0tVkFiODtJUmVNMyR3ZjAnJ2hyYSpzbzU2OCdJcCZ2UnM4NDknTVJZU3AlOnQ6aDVxU2d3cEVyJEI+USw7cyhDIyQpYHN2UXVGJCMjLUQsIyMsZzY4QDJbVDsuWFNkTjlRZSlycHQuX0stIzV3RilzUCcjI3AjQzBjJS1HYiVoZCs8LWonQWkqeCYmSE1rVF1DJ09TbCMjNVJHW0pYYUhOO2QndUEjeC5fVTsuYFBVQChaM2R0NHIxNTJAOnYsJ1IuU2ondyMwPC07a1BJKUZmSiYjQVlKJiMvLyk+LWs9bT0qWG5LJD49KTcyTF0wSSU+Lkc2OTBhOiQjIzwsKTs/OzcyIz94OStkO15WJzk7allAOyliciNxXllRcHg6WCNUZSRaXic9LT1iR2hMZjpENiZiTndaOS1aRCNuXjlIaExNcjVHOyddZCY2J3dZbVRGbUw8TEQpRl4lW3RDJzg7KzlFI0MkZyUjNVk+cTl3ST5QKDltSVs+a0MtZWtMQy9SJkNIK3MnQjtLLU02JEVCJWlzMDA6K0E0Wzd4a3MuTHJOazAmRSl3SUxZRkAyTCcwTmIkK3B2PCgyLjc2OC9GclkmaCReM2kmQCtHJUpUJzwtLHZgMztfKUk5TV5BRV1DTj9DbDJBWmcrJTRpVHBUMzxuLSYlSCViPEZEajJNPGhIPSZFaDwyTGVuJGIqYVRYPS04UXhOKWsxMUlNMWNeaiU5czxMPE5GU28pQj8rPC0oR3hzRixeLUVoQCQ0ZFhoTiQrI3J4SzgnamUnRDdrYGU7KTJwWXdQQSdfcDkmQF4xOG1sMV5bQGc0dCpbSk9hKls9UXA3KHFKX29PTF4oJzdmQiZIcS06c2Ysc05qOHhxXj4kVTRPXUdLeCdtOSliQHA3WXN2SzN3XllSLUNkUSo6SXI8KCR1JikjKCY/TDlSZzNIKTRmaUVwXmlJOU84S25UaixdSD9EKnI3J007UHdaOUswRV5rJi1jcEk7LnAvNl92d29GTVY8LT4jJVhpLkx4Vm5yVSg0JjgvUCs6aExTS2okI1UlXTQ5dCdJOnJnTWknRkxAYTowWS11QVszOScsKHZibWEqaFUlPC1TUkZgVHQ6NTQyUl9WViRwQFtwOERWW0EsPzE4MzlGV2RGPFRkZEY8OUFoLTYmOXRXb0RsaF0mMVNwR01xPlRpMU8qSCYjKEFMOFtfUCUuTT52Xi0pKXFPVCpGNUNxMGBZZSUrJEI2aTo3QDBJWDxOK1QrME1sTUJQUSpWaj5Tc0Q8VTRKSFk4a0QyKTJmVS9NIyRlLilUNCxfPThoTGltWyYpOz9Va0snLXg/Jyg6c2lJZkw8JHBGTWBpPD8lVyhtR0RITSU+aVdQLCMjUGAlL0w8ZVhpOkBaOUMuN289QChwWGRBTy9OTFE4bFBsK0hQT1FhOHdEOD1eR2xQYThUS0kxQ2poc0NUU0xKTScvV2w+LVMocXclc2YvQCUjQjY7L1U3S111WmJpXk9jXjJuPGJoUG1Va013PiV0PCknbUVWRScnbmBXbkpyYSReVEt2WDVCPjtfYVNFSycsKGh3YTA6aTRHPy5CY2kuKFhbP2IqKCQsPS1uPC5RJWAoWD0/K0BBbSpKczAmPTNiaDhLXW1MPExvTnMnNiwnODVgMD90LydfVTU5QF1kZEY8I0xkRjxlV2RGPE91Ti80NXJZPC1MQCYjK2ZtPjY5PUxiLE9jWlYvKTtUVG04Vkk7PyVPdEo8KGI0bXE3TTY6dT9LUmRGPGdSQDJMPUZOVS08YlsoOWMvTUwzbTtaWyRvRjNnKUdBV3FwQVJjPTxST3U3Y0w1bDstW0FdJS8rZnNkO2wjU2FmVC9mKlddMD1PJyQoVGI8WykqQGU3NzVSLTpZb2IlZyo+bCo6eFA/WWIuNSkld19JPzd1azVKQytGUyhtI2knay4nYTBpKTk8N2InZnMnNTlocSQqNVVodiMjcGleOCtoSUVCRmBudm9gOydsMC5eUzE8LXdVSzIvQ29oNThLS2hMak09U08qcmZPYCtxQ2BXLU9uLj1BSjU2Pj5pMkAyTEg2QTomNXFgPzlJM0BAJzA0JnAyL0xWYSpULTQ8LWkzO005VXZaZCtONz5iKmVJd2c6Q0MpYzw+bk8mIzxJR2U7X18udGhqWmw8JXcoV2syeG1wNFFASSNJOSxERl11Ny1QPS4tXzpZSl1hU0BWPzYqQygpZE9wNzpXTCxiJjNSZy8uY21NOSZyXj4kKD4uWi1JJkooUTBIZDVRJTdDby1iYC1jPE4oNnJAaXArQXVySzxtODZRSXRoKiN2Oy1PQnFpK0w3d0RFLUlyOEtbJ20rRERTTHdLJi8uPy1WJVVfJTM6cUtOdSRfYipCLWtwN05hRCdRZFdRUEtZcVtAPlApaEk7Kl9GXXVgUmJbLmo4X1EvPCY+dXUrVnNIJHNNOVRBJT8pKHZtSjgwKSxQN0U+KXRqRCUyTD0tdCNmS1slYHY9UTg8RmZOa2dnXm9JYmFoKiM4L1F0JEYmOksqLShOLycrMXZNQix1KCktYS5WVVUqI1tlJWdBQU8oUz5XbEEyKTtTYT5nWG04WUJgMWRASyNuXTc2LWEkVSxtRjxmWF1pZHFkKTwzLF1KN0ptVzRgNl11a3M9NC03MkwoakVrKzpiSjBNXnEtOERtX1o/MG9sUDFDOVNhJkhbZCZjJG9vUVVqXUV4ZCozWk1ALVdHVzIlcycsQi1fTSU+JVVsOiMvJ3hvRk05UVgtJC5RTic+WyUkWiR1RjZwQTZLaTJPNTo4dyp2UDE8LTFgW0csKS1tIz4wYFAmI2ViIy4zaSlydEI2MShvJyQ/WDNCPC9SOTA7ZVpdJU5jcTstVGxdI0Y+MlFmdF5hZV81dEtMOU1VZTliKnNMRVE5NUMmYD1HP0BNaj13aConM0U+PS08KUd0Kkl3KSdRRzpgQEl3T2Y3Jl0xaSdTMDFCK0V2L05hYyM5Uzs9O1lRcGdfNlVgKmtWWTM5eEssWy82QWo3OicxQm0tXzFFWWZhMStvJm80aHA3S05fUShPbElvQFMlO2pWZG4wJzE8VmM1Mj11YDNeby1uMSdnNHY1OEhqJjZfdDckIyM/TSljPCRiZ1FfJ1NZKCgteGtBI1koLHAnSDlySVZZLWIsJyViQ1BGNy5KPFVwXiwoZFUxVlkqNSNXa1RVPmgxOXcsV1FoTEkpM1MjZiQyKGViLGpyKmI7M1Z3XSo3TkglJGM0VnMsZUQ5PlhXOD9OXW8rKCpwZ0MlLzcyTFYtdTxIcCwzQGVeOVVCMUorYWs5LVROL21oS1BnK0FKWWQkTWx2QUZfakNLKi5PLV4oNjNhZE1ULT5XJWlld1M4VzZtMnJ0Q3BvJ1JTMVI4ND1AcGFUS3QpPj0lJjFbKSp2cCd1K3gsVnJ3TjsmXWt1TzlKRGJnPXBPJEoqLmpWZTt1J20wZHI5bCw8KndNSypPZT1nOGxWX0tFQkZrTydvVV1ePVstNzkyI29rLClpXWxSOHFRMm9BOHdjUkNaXjd3L05qaDs/LnN0WD9RMT5TMXE0Qm4kKUsxPC1yR2RPJyRXci5MYy5DRykkLypKTDR0TlIvLFNWTzMsYVV3J0RKTjopU3M7d0duOUEzMmlqdyVGTCtaMEZuLlU5O3JlU3EpYm1JMzJVPT01QUx1RyYjVmYxMzk4L3BWbzEqYy0oYVkxNjhvPGBKc1Niay0sMU47JD4wOk9VYXMoMzo4Wjk3MkxTZkY4ZWI9Yy07PlNQdzcuNmhuM21gOV5Ya24oci5xU1swO1QlJlFjPStTVFJ4WCdxMUJOazMmKmV1MjsmOHEkJng+USNRN15UZis2PChkJVpWbWoyYkRpJS4zTDJuKzRXJyRQaURERylnLHIlKz8sJEA/dW91NXRTZTJhTl9BUVUqPGhgZS1HSTcpP09LMkEuZDdfYyk/d1E1QVNAREwzciM3ZlNrZ2w2LSsrRDonQSx1cTdTdmxCJHBjcEgncTNuMCNfJWRZI3hDcHItbDxGME5SQC0jI0ZFVjZOVEY2IyMkbDg0TjF3P0FPPidJQU9VUlEjI1ZeRnYtWEZiR003RmwoTjwzRGhMR0YlcS4xckMkIzpUX18mUGk2OCUweGlfJltxRkooNzdqXyZKV29GLlY3MzUmVCxbUio6eEZSKks1Pj4jYGJXLT80TmVfJjZOZV8mNk5lXyZuYGtyLSNHSmNNNlg7dU02WDt1TSguYS4uXjJUa0wlb1IoIzt1LlQlZkFyJTR0SjgmPjwxPUdIWl8rbTkvI0gxRl5SI1NDIypOPUJBOShEP3ZbVWlGWT4+XjhwLEtLRi5XXUwyOXVMa0xsdS8rNFQ8WG9JQiZoeD1UMVBjRGFCJjtISCstQUZyPyhtOUhaVilGS1M4SkN3O1NEPTZbXi9EWlVMYEVVRGZdR0dsRyY+dyQpRi4vXm4zK3JsbytEQjs1c0lZR05rK2kxdC02OUpnLS0wcGFvN1NtI0spcGRIVyY7THVETkhASD4jL1gtVEkoO1A+IyxHYz4jMFN1PiM0YDE/IzhsQz8jPHhVPyNALmk/I0Q6JUAjSEY3QCNMUklAI1BfW0AjVGtuQCNYdypBI10tPUEjYTlPQSNkPEYmIyo7RyMjLkdZIyMyU2wjIzZgKCQjOmw6JCM+eEwkI0IuYCQjRjpyJCNKRi4lI05SQCUjUl9SJSNWa2UlI1p3dyUjXy00JiMzXlJoJVNmbHItaydNUy5vPy41L3NXZWwvd3BFTTAlMycvMSlLXmYxLWQ+RzIxJnYoMzU+VmAzOVY3QTQ9b254NEExT1k1RUkwOzZJYmdyNk0kSFM3UTwpNThDNXcsO1dvQSojWyVUKiNgMWcqI2Q9IysjaEk1KyNsVUcrI3BiWSsjdG5sKyN4JCksIyYxOywjKj1NLCMuSWAsIzJVciwjNmIuLSM7d1tII2lRdEEjbV4wQiNxakJCI3V2VEIjIy1oQiMnOSRDIytFNkMjL1FIQyMzXlpDIzdqbUMjO3YpRCM/LDxEI0M4TkQjR0RhRCNLUHNEI09dL0UjZzFBNSNLQSoxI2dDMTcjTUdkOyM4KDAyI0wtZDMjcldNNCNIZ2ExIyw8dzAjVC5qPCNPIycyI0NZTjEjcWFeOiNfNG0zI29ALz0jZUc4PSN0OEo1I2ArNzgjNHVJLSNtM0IyI1NCWzgjUTBAOCNpWyo5I2lPbjgjMU5tOyNec045I3FoPDkjOj14LSNQO0syIyQlWDkjYkMrLiNSZzs8I21OPS4jTVRGLiNSWk8uIzI/KTQjWSMoLyNbKTEvI2I7TC8jZEFVLyMwU3Y7I2xZJDAjbmAtMCNzZjYwIyhGMjQjd3JIMCMlL2UwI1RtRDwjJUpTTUZvdmU6Q1RCRVhJOjxlaDJnKUIsM2gyXkczaTsjZDNqRD4pNGtNWUQ0bFZ1YDRtYDomNW5pVUE1QChBNUJBMV1QQkI6eGxCQ0M9MkNETFhNQ0VVdGlDZiYwZzIndE4/UEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQLXFla0NgLjlrRWdeK0Yka3dWaUZKVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVvLF48LTI4WkknTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cDs3cS0jbExZSTp4dkQ9IwBB9v8ACwpAQAAAQEEAAJhBAEGKgAELugFQQQAAAAAAAOBAAACAQQAAgD8AAABBAAD4QQAAAAAAALhBAAC4QQAAMEEAADBBAACoQQAAAAAAABBBAAC4QQAAgEAAADBBAABcQgAAkEEAALhBAAAQQQAAMEEAAIBAAACSQgAAAAAAAIhBAACIQQAAAEEAAABBAABcQgAAAAAAAIhBAACIQQAAAEEAAABBAAC2QgAAAAAAAIhBAACwQQAAoEAAAAAAIAD/AAAw/zDwMf8xAP/v/wBOr58AQdCBAQuXJyAA/wAAMP8w8DH/MQD/7/8AAAEAAgAEAAEAAQABAAEAAgABAAMAAgABAAIAAgABAAEAAQABAAEABQACAAEAAgADAAMAAwACAAIABAABAAEAAQACAAEABQACAAMAAQACAAEAAgABAAEAAgABAAEAAgACAAEABAABAAEAAQABAAUACgABAAIAEwACAAEAAgABAAIAAQACAAEAAgABAAUAAQAGAAMAAgABAAIAAgABAAEAAQAEAAgABQABAAEABAABAAEAAwABAAIAAQAFAAEAAgABAAEAAQAKAAEAAQAFAAIABAAGAAEABAACAAIAAgAMAAIAAQABAAYAAQABAAEABAABAAEABAAGAAUAAQAEAAIAAgAEAAoABwABAAEABAACAAQAAgABAAQAAwAGAAoADAAFAAcAAgAOAAIACQABAAEABgAHAAoABAAHAA0AAQAFAAQACAAEAAEAAQACABwABQAGAAEAAQAFAAIABQAUAAIAAgAJAAgACwACAAkAEQABAAgABgAIABsABAAGAAkAFAALABsABgBEAAIAAgABAAEAAQACAAEAAgACAAcABgALAAMAAwABAAEAAwABAAIAAQABAAEAAQABAAMAAQABAAgAAwAEAAEABQAHAAIAAQAEAAQACAAEAAIAAQACAAEAAQAEAAUABgADAAYAAgAMAAMAAQADAAkAAgAEAAMABAABAAUAAwADAAEAAwAHAAEABQABAAEAAQABAAIAAwAEAAUAAgADAAIABgABAAEAAgABAAcAAQAHAAMABAAFAA8AAgACAAEABQADABYAEwACAAEAAQABAAEAAgAFAAEAAQABAAYAAQABAAwACAACAAkAEgAWAAQAAQABAAUAAQAQAAEAAgAHAAoADwABAAEABgACAAQAAQACAAQAAQAGAAEAAQADAAIABAABAAYABAAFAAEAAgABAAEAAgABAAoAAwABAAMAAgABAAkAAwACAAUABwACABMABAADAAYAAQABAAEAAQABAAQAAwACAAEAAQABAAIABQADAAEAAQABAAIAAgABAAEAAgABAAEAAgABAAMAAQABAAEAAwAHAAEABAABAAEAAgABAAEAAgABAAIABAAEAAMACAABAAEAAQACAAEAAwAFAAEAAwABAAMABAAGAAIAAgAOAAQABgAGAAsACQABAA8AAwABABwABQACAAUABQADAAEAAwAEAAUABAAGAA4AAwACAAMABQAVAAIABwAUAAoAAQACABMAAgAEABwAHAACAAMAAgABAA4ABAABABoAHAAqAAwAKAADADQATwAFAA4AEQADAAIAAgALAAMABAAGAAMAAQAIAAIAFwAEAAUACAAKAAQAAgAHAAMABQABAAEABgADAAEAAgACAAIABQAcAAEAAQAHAAcAFAAFAAMAHQADABEAGgABAAgABAAbAAMABgALABcABQADAAQABgANABgAEAAGAAUACgAZACMABwADAAIAAwADAA4AAwAGAAIABgABAAQAAgADAAgAAgABAAEAAwADAAMABAABAAEADQACAAIABAAFAAIAAQAOAA4AAQACAAIAAQAEAAUAAgADAAEADgADAAwAAwARAAIAEAAFAAEAAgABAAgACQADABMABAACAAIABAARABkAFQAUABwASwABAAoAHQBnAAQAAQACAAEAAQAEAAIABAABAAIAAwAYAAIAAgACAAEAAQACAAEAAwAIAAEAAQABAAIAAQABAAMAAQABAAEABgABAAUAAwABAAEAAQADAAQAAQABAAUAAgABAAUABgANAAkAEAABAAEAAQABAAMAAgADAAIABAAFAAIABQACAAIAAwAHAA0ABwACAAIAAQABAAEAAQACAAMAAwACAAEABgAEAAkAAgABAA4AAgAOAAIAAQASAAMABAAOAAQACwApAA8AFwAPABcAsAABAAMABAABAAEAAQABAAUAAwABAAIAAwAHAAMAAQABAAIAAQACAAQABAAGAAIABAABAAkABwABAAoABQAIABAAHQABAAEAAgACAAMAAQADAAUAAgAEAAUABAABAAEAAgACAAMAAwAHAAEABgAKAAEAEQABACwABAAGAAIAAQABAAYABQAEAAIACgABAAYACQACAAgAAQAYAAEAAgANAAcACAAIAAIAAQAEAAEAAwABAAMAAwAFAAIABQAKAAkABAAJAAwAAgABAAYAAQAKAAEAAQAHAAcABAAKAAgAAwABAA0ABAADAAEABgABAAMABQACAAEAAgARABAABQACABAABgABAAQAAgABAAMAAwAGAAgABQALAAsAAQADAAMAAgAEAAYACgAJAAUABwAEAAcABAAHAAEAAQAEAAIAAQADAAYACAAHAAEABgALAAUABQADABgACQAEAAIABwANAAUAAQAIAFIAEAA9AAEAAQABAAQAAgACABAACgADAAgAAQABAAYABAACAAEAAwABAAEAAQAEAAMACAAEAAIAAgABAAEAAQABAAEABgADAAUAAQABAAQABgAJAAIAAQABAAEAAgABAAcAAgABAAYAAQAFAAQABAADAAEACAABAAMAAwABAAMAAgACAAIAAgADAAEABgABAAIAAQACAAEAAwAHAAEACAACAAEAAgABAAUAAgAFAAMABQAKAAEAAgABAAEAAwACAAUACwADAAkAAwAFAAEAAQAFAAkAAQACAAEABQAHAAkACQAIAAEAAwADAAMABgAIAAIAAwACAAEAAQAgAAYAAQACAA8ACQADAAcADQABAAMACgANAAIADgABAA0ACgACAAEAAwAKAAQADwACAA8ADwAKAAEAAwAJAAYACQAgABkAGgAvAAcAAwACAAMAAQAGAAMABAADAAIACAAFAAQAAQAJAAQAAgACABMACgAGAAIAAwAIAAEAAgACAAQAAgABAAkABAAEAAQABgAEAAgACQACAAMAAQABAAEAAQADAAUABQABAAMACAAEAAYAAgABAAQADAABAAUAAwAHAA0AAgAFAAgAAQAGAAEAAgAFAA4ABgABAAUAAgAEAAgADwAFAAEAFwAGAD4AAgAKAAEAAQAIAAEAAgACAAoABAACAAIACQACAAEAAQADAAIAAwABAAUAAwADAAIAAQADAAgAAQABAAEACwADAAEAAQAEAAMABwABAA4AAQACAAMADAAFAAIABQABAAYABwAFAAcADgALAAEAAwABAAgACQAMAAIAAQALAAgABAAEAAIABgAKAAkADQABAAEAAwABAAUAAQADAAIABAAEAAEAEgACAAMADgALAAQAHQAEAAIABwABAAMADQAJAAIAAgAFAAMABQAUAAcAEAAIAAUASAAiAAYABAAWAAwADAAcAC0AJAAJAAcAJwAJAL8AAQABAAEABAALAAgABAAJAAIAAwAWAAEAAQABAAEABAARAAEABwAHAAEACwAfAAoAAgAEAAgAAgADAAIAAQAEAAIAEAAEACAAAgADABMADQAEAAkAAQAFAAIADgAIAAEAAQADAAYAEwAGAAUAAQAQAAYAAgAKAAgABQABAAIAAwABAAUABQABAAsABgAGAAEAAwADAAIABgADAAgAAQABAAQACgAHAAUABwAHAAUACAAJAAIAAQADAAQAAQABAAMAAQADAAMAAgAGABAAAQAEAAYAAwABAAoABgABAAMADwACAAkAAgAKABkADQAJABAABgACAAIACgALAAQAAwAJAAEAAgAGAAYABQAEAB4AKAABAAoABwAMAA4AIQAGAAMABgAHAAMAAQADAAEACwAOAAQACQAFAAwACwAxABIAMwAfAIwAHwACAAIAAQAFAAEACAABAAoAAQAEAAQAAwAYAAEACgABAAMABgAGABAAAwAEAAUAAgABAAQAAgA5AAoABgAWAAIAFgADAAcAFgAGAAoACwAkABIAEAAhACQAAgAFAAUAAQABAAEABAAKAAEABAANAAIABwAFAAIACQADAAQAAQAHACsAAwAHAAMACQAOAAcACQABAAsAAQABAAMABwAEABIADQABAA4AAQADAAYACgBJAAIAAgAeAAYAAQALABIAEwANABYAAwAuACoAJQBZAAcAAwAQACIAAgACAAMACQABAAcAAQABAAEAAgACAAQACgAHAAMACgADAAkABQAcAAkAAgAGAA0ABwADAAEAAwAKAAIABwACAAsAAwAGABUANgBVAAIAAQAEAAIAAgABACcAAwAVAAIAAgAFAAEAAQABAAQAAQABAAMABAAPAAEAAwACAAQABAACAAMACAACABQAAQAIAAcADQAEAAEAGgAGAAIACQAiAAQAFQA0AAoABAAEAAEABQAMAAIACwABAAcAAgAeAAwALAACAB4AAQABAAMABgAQAAkAEQAnAFIAAgACABgABwABAAcAAwAQAAkADgAsAAIAAQACAAEAAgADAAUAAgAEAAEABgAHAAUAAwACAAYAAQALAAUACwACAAEAEgATAAgAAQADABgAHQACAAEAAwAFAAIAAgABAA0ABgAFAAEALgALAAMABQABAAEABQAIAAIACgAGAAwABgADAAcACwACAAQAEAANAAIABQABAAEAAgACAAUAAgAcAAUAAgAXAAoACAAEAAQAFgAnAF8AJgAIAA4ACQAFAAEADQAFAAQAAwANAAwACwABAAkAAQAbACUAAgAFAAQABAA/ANMAXwACAAIAAgABAAMABQACAAEAAQACAAIAAQABAAEAAwACAAQAAQACAAEAAQAFAAIAAgABAAEAAgADAAEAAwABAAEAAQADAAEABAACAAEAAwAGAAEAAQADAAcADwAFAAMAAgAFAAMACQALAAQAAgAWAAEABgADAAgABwABAAQAHAAEABAAAwADABkABAAEABsAGwABAAQAAQACAAIABwABAAMABQACABwACAACAA4AAQAIAAYAEAAZAAMAAwADAA4AAwADAAEAAQACAAEABAAGAAMACAAEAAEAAQABAAIAAwAGAAoABgACAAMAEgADAAIABQAFAAQAAwABAAUAAgAFAAQAFwAHAAYADAAGAAQAEQALAAkABQABAAEACgAFAAwAAQABAAsAGgAhAAcAAwAGAAEAEQAHAAEABQAMAAEACwACAAQAAQAIAA4AEQAXAAEAAgABAAcACAAQAAsACQAGAAUAAgAGAAQAEAACAAgADgABAAsACAAJAAEAAQABAAkAGQAEAAsAEwAHAAIADwACAAwACAA0AAcABQATAAIAEAAEACQACAABABAACAAYABoABAAGAAIACQAFAAQAJAADABwADAAZAA8AJQAbABEADAA7ACYABQAgAH8AAQACAAkAEQAOAAQAAQACAAEAAQAIAAsAMgAEAA4AAgATABAABAARAAUABAAFABoADAAtAAIAFwAtAGgAHgAMAAgAAwAKAAIAAgADAAMAAQAEABQABwACAAkABgAPAAIAFAABAAMAEAAEAAsADwAGAIYAAgAFADsAAQACAAIAAgABAAkAEQADABoAiQAKANMAOwABAAIABAABAAQAAQABAAEAAgAGAAIAAwABAAEAAgADAAIAAwABAAMABAAEAAIAAwADAAEABAADAAEABwACAAIAAwABAAIAAQADAAMAAwACAAIAAwACAAEAAwAOAAYAAQADAAIACQAGAA8AGwAJACIAkQABAAEAAgABAAEAAQABAAIAAQABAAEAAQACAAIAAgADAAEAAgABAAEAAQACAAMABQAIAAMABQACAAQAAQADAAIAAgACAAwABAABAAEAAQAKAAQABQABABQABAAQAAEADwAJAAUADAACAAkAAgAFAAQAAgAaABMABwABABoABAAeAAwADwAqAAEABgAIAKwAAQABAAQAAgABAAEACwACAAIABAACAAEAAgABAAoACAABAAIAAQAEAAUAAQACAAUAAQAIAAQAAQADAAQAAgABAAYAAgABAAMABAABAAIAAQABAAEAAQAMAAUABwACAAQAAwABAAEAAQADAAMABgABAAIAAgADAAMAAwACAAEAAgAMAA4ACwAGAAYABAAMAAIACAABAAcACgABACMABwAEAA0ADwAEAAMAFwAVABwANAAFABoABQAGAAEABwAKAAIABwA1AAMAAgABAAEAAQACAKMAFAIBAAoACwABAAMAAwAEAAgAAgAIAAYAAgACABcAFgAEAAIAAgAEAAIAAQADAAEAAwADAAUACQAIAAIAAQACAAgAAQAKAAIADAAVABQADwBpAAIAAwABAAEAAwACAAMAAQABAAIABQABAAQADwALABMAAQABAAEAAQAFAAQABQABAAEAAgAFAAMABQAMAAEAAgAFAAEACwABAAEADwAJAAEABAAFAAMAGgAIAAIAAQADAAEAAQAPABMAAgAMAAEAAgAFAAIABwACABMAAgAUAAYAGgAHAAUAAgACAAcAIgAVAA0ARgACAIAAAQABAAIAAQABAAIAAQABAAMAAgACAAIADwABAAQAAQADAAQAKgAKAAYAAQAxAFUACAABAAIAAQABAAQABAACAAMABgABAAUABwAEAAMA0wAEAAEAAgABAAIABQABAAIABAACAAIABgAFAAYACgADAAQAMABkAAYAAgAQACgBBQAbAIMBAgACAAMABwAQAAgABQAmAA8AJwAVAAkACgADAAcAOwANABsAFQAvAAUAFQAGAEHyqAELsR4BAAIABAABAAEAAQABAAIAAQAGAAIAAgABAAgABQAHAAsAAQACAAoACgAIAAIABAAUAAIACwAIAAIAAQACAAEABgACAAEABwAFAAMABwABAAEADQAHAAkAAQAEAAYAAQACAAEACgABAAEACQACAAIABAAFAAYADgABAAEACQADABIABQAEAAIAAgAKAAcAAQABAAEAAwACAAQAAwAXAAIACgAMAAIADgACAAQADQABAAYACgADAAEABwANAAYABAANAAUAAgADABEAAgACAAUABwAGAAQAAQAHAA4AEAAGAA0ACQAPAAEAAQAHABAABAAHAAEAEwAJAAIABwAPAAIABgAFAA0AGQAEAA4ADQALABkAAQABAAEAAgABAAIAAgADAAoACwADAAMAAQABAAQABAACAAEABAAJAAEABAADAAUABQACAAcADAALAA8ABwAQAAQABQAQAAIAAQABAAYAAwADAAEAAQACAAcABgAGAAcAAQAEAAcABgABAAEAAgABAAwAAwADAAkABQAIAAEACwABAAIAAwASABQABAABAAMABgABAAcAAwAFAAUABwACAAIADAADAAEABAACAAMAAgADAAsACAAHAAQAEQABAAkAGQABAAEABAACAAIABAABAAIABwABAAEAAQADAAEAAgAGABAAAQACAAEAAQADAAwAFAACAAUAFAAIAAcABgACAAEAAQABAAEABgACAAEAAgAKAAEAAQAGAAEAAwABAAIAAQAEAAEADAAEAAEAAwABAAEAAQABAAEACgAEAAcABQANAAEADwABAAEAHgALAAkAAQAPACYADgABACAAEQAUAAEACQAfAAIAFQAJAAQAMQAWAAIAAQANAAEACwAtACMAKwA3AAwAEwBTAAEAAwACAAMADQACAAEABwADABIAAwANAAgAAQAIABIABQADAAcAGQAYAAkAGAAoAAMAEQAYAAIAAQAGAAIAAwAQAA8ABgAHAAMADAABAAkABwADAAMAAwAPABUABQAQAAQABQAMAAsACwADAAYAAwACAB8AAwACAAEAAQAXAAYABgABAAQAAgAGAAUAAgABAAEAAwADABYAAgAGAAIAAwARAAMAAgAEAAUAAQAJAAUAAQABAAYADwAMAAMAEQACAA4AAgAIAAEAFwAQAAQAAgAXAAgADwAXABQADAAZABMALwALABUAQQAuAAQAAwABAAUABgABAAIABQAaAAIAAQABAAMACwABAAEAAQACAAEAAgADAAEAAQAKAAIAAwABAAEAAQADAAYAAwACAAIABgAGAAkAAgACAAIABgACAAUACgACAAQAAQACAAEAAgACAAMAAQABAAMAAQACAAkAFwAJAAIAAQABAAEAAQAFAAMAAgABAAoACQAGAAEACgACAB8AGQADAAcABQAoAAEADwAGABEABwAbALQAAQADAAIAAgABAAEAAQAGAAMACgAHAAEAAwAGABEACAAGAAIAAgABAAMABQAFAAgAEAAOAA8AAQABAAQAAQACAAEAAQABAAMAAgAHAAUABgACAAUACgABAAQAAgAJAAEAAQALAAYAAQAsAAEAAwAHAAkABQABAAMAAQABAAoABwABAAoABAACAAcAFQAPAAcAAgAFAAEACAADAAQAAQADAAEABgABAAQAAgABAAQACgAIAAEABAAFAAEABQAKAAIABwABAAoAAQABAAMABAALAAoAHQAEAAcAAwAFAAIAAwAhAAUAAgATAAMAAQAEAAIABgAfAAsAAQADAAMAAwABAAgACgAJAAwACwAMAAgAAwAOAAgABgALAAEABAApAAMAAQACAAcADQABAAUABgACAAYADAAMABYABQAJAAQACAAJAAkAIgAGABgAAQABABQACQAJAAMABAABAAcAAgACAAIABgACABwABQADAAYAAQAEAAYABwAEAAIAAQAEAAIADQAGAAQABAADAAEACAAIAAMAAgABAAUAAQACAAIAAwABAAsACwAHAAMABgAKAAgABgAQABAAFgAHAAwABgAVAAUABAAGAAYAAwAGAAEAAwACAAEAAgAIAB0AAQAKAAEABgANAAYABgATAB8AAQANAAQABAAWABEAGgAhAAoABAAPAAwAGQAGAEMACgACAAMAAQAGAAoAAgAGAAIACQABAAkABAAEAAEAAgAQAAIABQAJAAIAAwAIAAEACAADAAkABAAIAAYABAAIAAsAAwACAAEAAQADABoAAQAHAAUAAQALAAEABQADAAUAAgANAAYAJwAFAAEABQACAAsABgAKAAUAAQAPAAUAAwAGABMAFQAWAAIABAABAAYAAQAIAAEABAAIAAIABAACAAIACQACAAEAAQABAAQAAwAGAAMADAAHAAEADgACAAQACgACAA0AAQARAAcAAwACAAEAAwACAA0ABwAOAAwAAwABAB0AAgAIAAkADwAOAAkADgABAAMAAQAGAAUACQALAAMAJgArABQABwAHAAgABQAPAAwAEwAPAFEACAAHAAEABQBJAA0AJQAcAAgACAABAA8AEgAUAKUAHAABAAYACwAIAAQADgAHAA8AAQADAAMABgAEAAEABwAOAAEAAQALAB4AAQAFAAEABAAOAAEABAACAAcANAACAAYAHQADAAEACQABABUAAwAFAAEAGgADAAsADgALAAEAEQAFAAEAAgABAAMAAgAIAAEAAgAJAAwAAQABAAIAAwAIAAMAGAAMAAcABwAFABEAAwADAAMAAQAXAAoABAAEAAYAAwABABAAEQAWAAMACgAVABAAEAAGAAQACgACAAEAAQACAAgACAAGAAUAAwADAAMAJwAZAA8AAQABABAABgAHABkADwAGAAYADAABABYADQABAAQACQAFAAwAAgAJAAEADAAcAAgAAwAFAAoAFgA8AAEAAgAoAAQAPQA/AAQAAQANAAwAAQAEAB8ADAABAA4AWQAFABAABgAdAA4AAgAFADEAEgASAAUAHQAhAC8AAQARAAEAEwAMAAIACQAHACcADAADAAcADAAnAAMAAQAuAAQADAADAAgACQAFAB8ADwASAAMAAgACAEIAEwANABEABQADAC4AfAANADkAIgACAAUABAAFAAgAAQABAAEABAADAAEAEQAFAAMABQADAAEACAAFAAYAAwAbAAMAGgAHAAwABwACABEAAwAHABIATgAQAAQAJAABAAIAAQAGAAIAAQAnABEABwAEAA0ABAAEAAQAAQAKAAQAAgAEAAYAAwAKAAEAEwABABoAAgAEACEAAgBJAC8ABwADAAgAAgAEAA8AEgABAB0AAgApAA4AAQAVABAAKQAHACcAGQANACwAAgACAAoAAQANAAcAAQAHAAMABQAUAAQACAACADEAAQAKAAYAAQAGAAcACgAHAAsAEAADAAwAFAAEAAoAAwABAAIACwACABwACQACAAQABwACAA8AAQAbAAEAHAARAAQABQAKAAcAAwAYAAoACwAGABoAAwACAAcAAgACADEAEAAKABAADwAEAAUAGwA9AB4ADgAmABYAAgAHAAUAAQADAAwAFwAYABEAEQADAAMAAgAEAAEABgACAAcABQABAAEABQABAAEACQAEAAEAAwAGAAEACAACAAgABAAOAAMABQALAAQAAQADACAAAQATAAQAAQANAAsABQACAAEACAAGAAgAAQAGAAUADQADABcACwAFAAMAEAADAAkACgABABgAAwDGADQABAACAAIABQAOAAUABAAWAAUAFAAEAAsABgApAAEABQACAAIACwAFAAIAHAAjAAgAFgADABIAAwAKAAcABQADAAQAAQAFAAMACAAJAAMABgACABAAFgAEAAUABQADAAMAEgAXAAIABgAXAAUAGwAIAAEAIQACAAwAKwAQAAUAAgADAAYAAQAUAAQAAgAJAAcAAQALAAIACgADAA4AHwAJAAMAGQASABQAAgAFAAUAGgAOAAEACwARAAwAKAATAAkABgAfAFMAAgAHAAkAEwBOAAwADgAVAEwADABxAE8AIgAEAAEAAQA9ABIAVQAKAAIAAgANAB8ACwAyAAYAIQCfALMABgAGAAcABAAEAAIABAACAAUACAAHABQAIAAWAAEAAwAKAAYABwAcAAUACgAJAAIATQATAA0AAgAFAAEABAAEAAcABAANAAMACQAfABEAAwAaAAIABgAGAAUABAABAAcACwADAAQAAgABAAYAAgAUAAQAAQAJAAIABgADAAcAAQABAAEAFAACAAMAAQAGAAIAAwAGAAIABAAIAAEABQANAAgABAALABcAAQAKAAYAAgABAAMAFQACAAIABAAYAB8ABAAKAAoAAgAFAMAADwAEABAABwAJADMAAQACAAEAAQAFAAEAAQACAAEAAwAFAAMAAQADAAQAAQADAAEAAwADAAkACAABAAIAAgACAAQABAASAAwAXAACAAoABAADAA4ABQAZABAAKgAEAA4ABAACABUABQB+AB4AHwACAAEABQANAAMAFgAFAAYABgAUAAwAAQAOAAwAVwADABMAAQAIAAIACQAJAAMAAwAXAAIAAwAHAAYAAwABAAIAAwAJAAEAAwABAAYAAwACAAEAAwALAAMAAQAGAAoAAwACAAMAAQACAAEABQABAAEACwADAAYABAABAAcAAgABAAIABQAFACIABAAOABIABAATAAcABQAIAAIABgBPAAEABQACAA4ACAACAAkAAgABACQAHAAQAAQAAQABAAEAAgAMAAYAKgAnABAAFwAHAA8ADwADAAIADAAHABUAQAAGAAkAHAAIAAwAAwADACkAOwAYADMANwA5ACYBCQAJAAIABgACAA8AAQACAA0AJgBaAAkACQAJAAMACwAHAAEAAQABAAUABgADAAIAAQACAAIAAwAIAAEABAAEAAEABQAHAAEABAADABQABAAJAAEAAQABAAUABQARAAEABQACAAYAAgAEAAEABAAFAAcAAwASAAsACwAgAAcABQAEAAcACwB/AAgABAADAAMAAQAKAAEAAQAGABUADgABABAAAQAHAAEAAwAGAAkAQQAzAAQAAwANAAMACgABAAEADAAJABUAbgADABMAGAABAAEACgA+AAQAAQAdACoATgAcABQAEgBSAAYAAwAPAAYAVAA6AP0ADwCbAAgBDwAVAAkADgAHADoAKAAnAEGwxwELECAA/wAABC8F4C3/LUCmn6YAQdLHAQsmgD/NzMw9CtcjPG8SgzoXt9E4rMUnN703hjWVv9Yzd8wrMl9wiTAAQYDIAQtGBAAAAOeOAADnjgAABAAAAPGOAADxjgAACAAAAPSOAAD0jgAACAAAAPmOAAD5jgAABAAAAOqOAADqjgAACAAAAOqOAADtjgBB0MgBC5IC/5AAAAORAAAHkQAAC5EAAMGQAADBkAAAwZAAAMGQAADHkAAAz5AAANeQAADfkAAA55AAAO+QAAD3kAAA35AAAJOQAACTkAAAk5AAAJOQAACXkAAAnZAAAKOQAACpkAAAr5AAALWQAAC7kAAAqZAAAP8AAP///wD/AP8A/wD///8AAP///wD///8AAP8AAAAA6HoAANB0AADQdAAA0HQAANB0AAA4ewAAWHsAANB0AAAIewAA0HQAANB0AAAIewAAOHsAADh7AABYewAAWHsAAOh6AABYewAAWHsAAFh7AADQdAAA0HQAANB0AAAAAAAACHsAAEB7AAAIdQAAOHsAAOh6AAA4ewAAWHsAANB0AADQdABB8MoBCxLQdAAA2HQAAAh7AABYewAA0HQAQZDLAQsi6HoAANB0AADQdAAACHsAAAh7AADYdAAA0HQAAFB7AAA4ewBBwMsBCyIIewAA0HQAADh7AAAIewAACHsAANh0AADQdAAA0HQAAAh7AEHwywELEgh7AADYdAAA0HQAAAh7AAAIewBBkMwBCzboegAA2HQAAFh7AADQdAAACHsAANh0AAA4ewAAOHsAAAh7AADYdAAA0HQAANB0AAA4ewAAOHsAQdDMAQsSCHsAANh0AAAIewAAOHsAANB0AEHwzAELMgh7AAA4ewAAOHsAANh0AAAIewAA2HQAADh7AADYdAAACHsAANh0AADQdAAAOHsAANB0AEGwzQELIgh7AADYdAAA0HQAADh7AADQdAAA0HQAANB0AADQdAAA0HQAQeDNAQs2CHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AAA4ewAAOHsAANB0AEGgzgELEgh7AADYdAAA0HQAANB0AADQdABBwM4BC3YIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAAAAAAAAh7AADYdAAAOHsAANB0AADQdAAA0HQAANB0AAA4ewAACHsAANh0AADQdAAAYHsAAGB7AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AAA4ewAAOHsAADh7AEHAzwELEgh7AADYdAAA0HQAANB0AAA4ewBB4M8BC4IBCHsAANh0AADQdAAA0HQAANB0AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AABQewAA0HQAADh7AADQdAAA0HQAAAh7AADYdAAA0HQAAFB7AAA4ewAA0HQAANB0AAAAAAAACHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AADQdABB8NABCyIIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AEGg0QELRgh7AADYdAAA0HQAANB0AAA4ewAAOHsAANB0AAAAAAAACHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQfDRAQt2CHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AADQdAAA0HQAADh7AAA4ewAAAAAAAOh6AABYewAA0HQAANB0AADoegAA2HQAANB0AADQdAAAOHsAADh7AADQdAAA0HQAANB0AADQdABB8NIBC5IBCHsAANh0AADQdAAAQHsAAAh7AADQdAAA0HQAANB0AADQdAAAOHsAANB0AADQdAAA6HoAANB0AADQdAAA0HQAANB0AADQdAAA0HQAAAAAAADoegAAOHsAANB0AAAIewAA6HoAANh0AAAIewAAOHsAAOh6AADYdAAA0HQAADh7AADoegAA0HQAANB0AADQdAAA0HQAQZDUAQsi6HoAANB0AAA4ewAA0HQAAAh7AADQdAAA0HQAAAh7AAA4ewBBwNQBC4YBCHsAANh0AADQdAAAOHsAAAh7AADYdAAAUHsAAFB7AABQewAAUHsAAFB7AAAAAAAACHsAAFh2AAA4ewAA0HQAAAh7AACYdgAAOHsAAFh7AAAIewAAmHYAADh7AAAIewAACHsAAJh2AAA4ewAAOHsAANB0AADIdgAA0HQAAFh7AADQdAAA0HQAQdDVAQsy6HoAACB2AADQdAAAWHsAANB0AABAewAAMHsAAAAAAAA4ewAAIHYAAFh7AADYdAAAWHsAQZDWAQti0HQAACB2AABYewAAWHsAAFh7AADYdAAA0HQAANB0AADoegAAQHUAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAQYDXAQs26HoAADB1AAA4ewAAOHsAAOh6AABAdQAA0HQAANB0AADoegAAQHUAANB0AADQdAAAWHsAADh7AEHA1wELFuh6AABAdQAA0HQAANB0AADQdAAAOHsAQeDXAQsW6HoAAEB1AADQdAAAWHsAADh7AAA4ewBBgNgBCzLoegAAQHUAANB0AABYewAAWHsAAFh7AAA4ewAAAAAAAOh6AABAdQAAQHsAAAh7AABYewBBwNgBCyLoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHw2AELEuh6AABAdQAA0HQAADh7AABAewBBkNkBC0boegAAQHUAANB0AAA4ewAAQHsAAAh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHg2QELcuh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAA6HoAAEB1AADQdAAAWHsAANB0AABAewAA2HQAAFh7AADQdABB4NoBCxLoegAAQHUAANB0AABAewAA2HQAQYDbAQsW6HoAAEB1AADQdAAAWHsAAEB7AAA4ewBBoNsBCzboegAAQHUAANB0AABYewAAQHsAADh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAAQHsAQeDbAQvWAeh6AABAdQAA0HQAANB0AADQdAAAQHsAAFh7AAAAAAAA6HoAAEB1AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAQHsAAEB7AABAewAA6HoAAEB1AADQdAAA0HQAAEB7AABYewAAOHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAAFh7AAA4ewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAWHsAQcDdAQsS6HoAAEB1AADQdAAA0HQAAAh7AEHg3QELRuh6AADgdwAAOHsAAFh7AADoegAA+HUAADh7AADYdAAA6HoAAOh1AAA4ewAAOHsAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQbDeAQvhA9B0AADQdAAA0HQAANB0AAACAADAAwAAwAQAAMAFAADABgAAwAcAAMAIAADACQAAwAoAAMALAADADAAAwA0AAMAOAADADwAAwBAAAMARAADAEgAAwBMAAMAUAADAFQAAwBYAAMAXAADAGAAAwBkAAMAaAADAGwAAwBwAAMAdAADAHgAAwB8AAMAAAACzAQAAwwIAAMMDAADDBAAAwwUAAMMGAADDBwAAwwgAAMMJAADDCgAAwwsAAMMMAADDDQAA0w4AAMMPAADDAAAMuwEADMMCAAzDAwAMwwQADNMAAAAA/////////////////////////////////////////////////////////////////wABAgMEBQYHCAn/////////CgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiP///////8KCwwNDg8QERITFBUWFxgZGhscHR4fICEiI/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AQaDiAQsYEQAKABEREQAAAAAFAAAAAAAACQAAAAALAEHA4gELIREADwoREREDCgcAARMJCwsAAAkGCwAACwAGEQAAABEREQBB8eIBCwELAEH64gELGBEACgoREREACgAAAgAJCwAAAAkACwAACwBBq+MBCwEMAEG34wELFQwAAAAADAAAAAAJDAAAAAAADAAADABB5eMBCwEOAEHx4wELFQ0AAAAEDQAAAAAJDgAAAAAADgAADgBBn+QBCwEQAEGr5AELHg8AAAAADwAAAAAJEAAAAAAAEAAAEAAAEgAAABISEgBB4uQBCw4SAAAAEhISAAAAAAAACQBBk+UBCwELAEGf5QELFQoAAAAACgAAAAAJCwAAAAAACwAACwBBzeUBCwEMAEHZ5QEL3gIMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYKAAAAZAAAAOgDAAAQJwAAoIYBAEBCDwCAlpgAAOH1BQMAAAAEAAAABAAAAAYAAACD+aIARE5uAPwpFQDRVycA3TT1AGLbwAA8mZUAQZBDAGNR/gC73qsAt2HFADpuJADSTUIASQbgAAnqLgAcktEA6x3+ACmxHADoPqcA9TWCAES7LgCc6YQAtCZwAEF+XwDWkTkAU4M5AJz0OQCLX4QAKPm9APgfOwDe/5cAD5gFABEv7wAKWosAbR9tAM9+NgAJyycARk+3AJ5mPwAt6l8Auid1AOXrxwA9e/EA9zkHAJJSigD7a+oAH7FfAAhdjQAwA1YAe/xGAPCrawAgvM8ANvSaAOOpHQBeYZEACBvmAIWZZQCgFF8AjUBoAIDY/wAnc00ABgYxAMpWFQDJqHMAe+JgAGuMwABBw+gBC21A+yH5PwAAAAAtRHQ+AAAAgJhG+DwAAABgUcx4OwAAAICDG/A5AAAAQCAlejgAAACAIoLjNgAAAAAd82k1OGPtPtoPST9emHs/2g/JP2k3rDFoISIztA8UM2ghojMAAAAAAADwPwAAAAAAAPg/AEG46QELCAbQ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aXZlAFBsb3RMaW5lc0hvdmVyZWQAUGxvdEhpc3RvZ3JhbUhvdmVyZWQAVGV4dFNlbGVjdGVkQmcARHJhZ0Ryb3BUYXJnZXQATmF2SGlnaGxpZ2h0AE5hdldpbmRvd2luZ0hpZ2hsaWdodABOYXZXaW5kb3dpbmdEaW1CZwBNb2RhbFdpbmRvd0RpbUJnAFVua25vd24AIyNUb29sdGlwXyUwMmQAIyNNZW51XyUwMmQAIyNQb3B1cF8lMDh4AHdpbmRvd19jb250ZXh0AHZvaWRfY29udGV4dABjb2x1bW5zACNTb3VyY2VFeHRlcm4ACiUqcyUuKnMAICUuKnMAYWIACgBMb2cgVG8gVFRZAExvZyBUbyBGaWxlAExvZyBUbyBDbGlwYm9hcmQARGVwdGgAcmIAd3QASW1HdWkgTWV0cmljcwABRGVhciBJbUd1aSAlcwBBcHBsaWNhdGlvbiBhdmVyYWdlICUuM2YgbXMvZnJhbWUgKCUuMWYgRlBTKQAlZCB2ZXJ0aWNlcywgJWQgaW5kaWNlcyAoJWQgdHJpYW5nbGVzKQAlZCBhY3RpdmUgd2luZG93cyAoJWQgdmlzaWJsZSkAJWQgYWxsb2NhdGlvbnMAU2hvdyBjbGlwcGluZyByZWN0YW5nbGVzIHdoZW4gaG92ZXJpbmcgZHJhdyBjb21tYW5kcwBDdHJsIHNob3dzIHdpbmRvdyBiZWdpbiBvcmRlcgBXaW5kb3dzAERyYXdMaXN0AEFjdGl2ZSBEcmF3TGlzdHMgKCVkKQBQb3B1cHMAUG9wdXBzICglZCkAUG9wdXBJRDogJTA4eCwgV2luZG93OiAnJXMnJXMlcwBOVUxMACBDaGlsZFdpbmRvdwAgQ2hpbGRNZW51AFRhYkJhcnMAVGFiIEJhcnMgKCVkKQBJbnRlcm5hbCBzdGF0ZQBOb25lAE1vdXNlAE5hdgBOYXZLZXlib2FyZABOYXZHYW1lcGFkAEhvdmVyZWRXaW5kb3c6ICclcycASG92ZXJlZFJvb3RXaW5kb3c6ICclcycASG92ZXJlZElkOiAweCUwOFgvMHglMDhYICglLjJmIHNlYyksIEFsbG93T3ZlcmxhcDogJWQAQWN0aXZlSWQ6IDB4JTA4WC8weCUwOFggKCUuMmYgc2VjKSwgQWxsb3dPdmVybGFwOiAlZCwgU291cmNlOiAlcwBBY3RpdmVJZFdpbmRvdzogJyVzJwBNb3ZpbmdXaW5kb3c6ICclcycATmF2V2luZG93OiAnJXMnAE5hdklkOiAweCUwOFgsIE5hdkxheWVyOiAlZABOYXZJbnB1dFNvdXJjZTogJXMATmF2QWN0aXZlOiAlZCwgTmF2VmlzaWJsZTogJWQATmF2QWN0aXZhdGVJZDogMHglMDhYLCBOYXZJbnB1dElkOiAweCUwOFgATmF2RGlzYWJsZUhpZ2hsaWdodDogJWQsIE5hdkRpc2FibGVNb3VzZUhvdmVyOiAlZABOYXZXaW5kb3dpbmdUYXJnZXQ6ICclcycARHJhZ0Ryb3A6ICVkLCBTb3VyY2VJZCA9IDB4JTA4WCwgUGF5bG9hZCAiJXMiICglZCBieXRlcykAIyNPdmVybGF5ACVzLyVzXyUwOFgAJXMvJTA4WAAjUkVTSVpFACMjI05hdldpbmRvd2luZ0xpc3QAKFBvcHVwKQAoTWFpbiBtZW51IGJhcikAKFVudGl0bGVkKQBQb3M9JWYsJWYAU2l6ZT0lZiwlZgBDb2xsYXBzZWQ9JWQAIyMjAFslc11bJXNdCgBQb3M9JWQsJWQKAFNpemU9JWQsJWQKAENvbGxhcHNlZD0lZAoAJXMgKCVkKQAlcyAnJXMnLCAlZCBAIDB4JXAAUG9zOiAoJS4xZiwlLjFmKSwgU2l6ZTogKCUuMWYsJS4xZiksIFNpemVDb250ZW50cyAoJS4xZiwlLjFmKQBGbGFnczogMHglMDhYICglcyVzJXMlcyVzJXMlcyVzJXMuLikAQ2hpbGQgAFRvb2x0aXAgAFBvcHVwIABNb2RhbCAAQ2hpbGRNZW51IABOb1NhdmVkU2V0dGluZ3MgAE5vTW91c2VJbnB1dHMATm9OYXZJbnB1dHMAQWx3YXlzQXV0b1Jlc2l6ZQBTY3JvbGw6ICglLjJmLyUuMmYsJS4yZi8lLjJmKQBBY3RpdmU6ICVkLyVkLCBXcml0ZUFjY2Vzc2VkOiAlZCwgQmVnaW5PcmRlcldpdGhpbkNvbnRleHQ6ICVkAEFwcGVhcmluZzogJWQsIEhpZGRlbjogJWQgKFJlZyAlZCBSZXNpemUgJWQpLCBTa2lwSXRlbXM6ICVkAE5hdkxhc3RJZHM6IDB4JTA4WCwweCUwOFgs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bnRDb250ZXh0AERlYnVnQ2hlY2tWZXJzaW9uQW5kRGF0YUxheW91dABHZXRJTwBHZXRTdHlsZQBHZXREcmF3RGF0YQBOZXdGcmFtZQBSZW5kZXIARW5kRnJhbWUAU2hvd0RlbW9XaW5kb3cAU2hvd0Fib3V0V2luZG93AFNob3dNZXRyaWNzV2luZG93AFNob3dTdHlsZUVkaXRvcgBTaG93U3R5bGVTZWxlY3RvcgBTaG93Rm9udFNlbGVjdG9yAFNob3dVc2VyR3VpZGUAR2V0VmVyc2lvbgBTdHlsZUNvbG9yc0RhcmsAU3R5bGVDb2xvcnNDbGFzc2ljAFN0eWxlQ29sb3JzTGlnaHQAQmVnaW4ARW5kAEJlZ2luQ2hpbGQARW5kQ2hpbGQAR2V0Q29udGVudFJlZ2lvbk1heABHZXRDb250ZW50UmVnaW9uQXZhaWwAR2V0Q29udGVudFJlZ2lvbkF2YWlsV2lkdGgAR2V0V2luZG93Q29udGVudFJlZ2lvbk1pbgBHZXRXaW5kb3dDb250ZW50UmVnaW9uTWF4AEdldFdpbmRvd0NvbnRlbnRSZWdpb25XaWR0aABHZXRXaW5kb3dEcmF3TGlzdABHZXRXaW5kb3dQb3MAR2V0V2luZG93U2l6ZQBHZXRXaW5kb3dXaWR0aABHZXRXaW5kb3dIZWlnaHQASXNXaW5kb3dDb2xsYXBzZWQASXNXaW5kb3dBcHBlYXJpbmcAU2V0V2luZG93Rm9udFNjYWxlAFNldE5leHRXaW5kb3dQb3MAU2V0TmV4dFdpbmRvd1NpemUAU2V0TmV4dFdpbmRvd1NpemVDb25zdHJhaW50cwBTZXROZXh0V2luZG93Q29udGVudFNpemUAU2V0TmV4dFdpbmRvd0NvbGxhcHNlZABTZXROZXh0V2luZG93Rm9jdXMAU2V0TmV4dFdpbmRvd0JnQWxwaGEAU2V0V2luZG93UG9zAFNldFdpbmRvd1NpemUAU2V0V2luZG93Q29sbGFwc2VkAFNldFdpbmRvd0ZvY3VzAFNldFdpbmRvd05hbWVQb3MAU2V0V2luZG93TmFtZVNpemUAU2V0V2luZG93TmFtZUNvbGxhcHNlZABTZXRXaW5kb3dOYW1lRm9jdXMAR2V0U2Nyb2xsWABHZXRTY3JvbGxZAEdldFNjcm9sbE1heFgAR2V0U2Nyb2xsTWF4WQBTZXRTY3JvbGxYAFNldFNjcm9sbFkAU2V0U2Nyb2xsSGVyZVkAU2V0U2Nyb2xsRnJvbVBvc1kAU2V0U3RhdGVTdG9yYWdlAEdldFN0YXRlU3RvcmFnZQBQdXNoRm9udABQb3BGb250AFB1c2hTdHlsZUNvbG9yAFBvcFN0eWxlQ29sb3IAUHVzaFN0eWxlVmFyAFBvcFN0eWxlVmFyAEdldFN0eWxlQ29sb3JWZWM0AEdldEZvbnQAR2V0Rm9udFNpemUAR2V0Rm9udFRleFV2V2hpdGVQaXhlbABHZXRDb2xvclUzMl9BAEdldENvbG9yVTMyX0IAR2V0Q29sb3JVMzJfQwBQdXNoSXRlbVdpZHRoAFBvcEl0ZW1XaWR0aABDYWxjSXRlbVdpZHRoAFB1c2hUZXh0V3JhcFBvcwBQb3BUZXh0V3JhcFBvcwBQdXNoQWxsb3dLZXlib2FyZEZvY3VzAFBvcEFsbG93S2V5Ym9hcmRGb2N1cwBQdXNoQnV0dG9uUmVwZWF0AFBvcEJ1dHRvblJlcGVhdABTZXBhcmF0b3IAU2FtZUxpbmUATmV3TGluZQBTcGFjaW5nAER1bW15AEluZGVudABVbmluZGVudABCZWdpbkdyb3VwAEVuZEdyb3VwAEdldEN1cnNvclBvcwBHZXRDdXJzb3JQb3NYAEdldEN1cnNvclBvc1kAU2V0Q3Vyc29yUG9zAFNldEN1cnNvclBvc1gAU2V0Q3Vyc29yUG9zWQBHZXRDdXJzb3JTdGFydFBvcwBHZXRDdXJzb3JTY3JlZW5Qb3MAU2V0Q3Vyc29yU2NyZWVuUG9zAEFsaWduVGV4dFRvRnJhbWVQYWRkaW5nAEdldFRleHRMaW5lSGVpZ2h0AEdldFRleHRMaW5lSGVpZ2h0V2l0aFNwYWNpbmcAR2V0RnJhbWVIZWlnaHQAR2V0RnJhbWVIZWlnaHRXaXRoU3BhY2luZwBDb2x1bW5zAE5leHRDb2x1bW4AR2V0Q29sdW1uSW5kZXgAR2V0Q29sdW1uV2lkdGgAU2V0Q29sdW1uV2lkdGgAR2V0Q29sdW1uT2Zmc2V0AFNldENvbHVtbk9mZnNldABHZXRDb2x1bW5zQ291bnQAUHVzaElEAFBvcElEAEdldElEAFRleHRVbmZvcm1hdHRlZABUZXh0AFRleHRWAFRleHRDb2xvcmVkAFRleHRDb2xvcmVkVgBUZXh0RGlzYWJsZWQAVGV4dERpc2FibGVkVgBUZXh0V3JhcHBlZABUZXh0V3JhcHBlZFYATGFiZWxUZXh0AExhYmVsVGV4dFYAQnVsbGV0VGV4dABCdWxsZXRUZXh0VgBCdWxsZXQAQnV0dG9uAFNtYWxsQnV0dG9uAEFycm93QnV0dG9uAEludmlzaWJsZUJ1dHRvbgBJbWFnZQBJbWFnZUJ1dHRvbgBDaGVja2JveABDaGVja2JveEZsYWdzAFJhZGlvQnV0dG9uX0EAUmFkaW9CdXR0b25fQgBQbG90TGluZXMAUGxvdEhpc3RvZ3JhbQBQcm9ncmVzc0JhcgBCZWdpbkNvbWJvAEVuZENvbWJvAENvbWJvAERyYWdGbG9hdABEcmFnRmxvYXQyAERyYWdGbG9hdDMARHJhZ0Zsb2F0NABEcmFnRmxvYXRSYW5nZTIARHJhZ0ludABEcmFnSW50MgBEcmFnSW50MwBEcmFnSW50NABEcmFnSW50UmFuZ2UyAERyYWdTY2FsYXIASW5wdXRUZXh0AElucHV0VGV4dE11bHRpbGluZQBJbnB1dEZsb2F0AElucHV0RmxvYXQyAElucHV0RmxvYXQzAElucHV0RmxvYXQ0AElucHV0SW50AElucHV0SW50MgBJbnB1dEludDMASW5wdXRJbnQ0AElucHV0RG91YmxlAElucHV0U2NhbGFyAFNsaWRlckZsb2F0AFNsaWRlckZsb2F0MgBTbGlkZXJGbG9hdDMAU2xpZGVyRmxvYXQ0AFNsaWRlckFuZ2xlAFNsaWRlckludABTbGlkZXJJbnQyAFNsaWRlckludDMAU2xpZGVySW50NABTbGlkZXJTY2FsYXIAVlNsaWRlckZsb2F0AFZTbGlkZXJJbnQAVlNsaWRlclNjYWxhcgBDb2xvckVkaXQzAENvbG9yRWRpdDQAQ29sb3JQaWNrZXIzAENvbG9yUGlja2VyNABDb2xvckJ1dHRvbgBTZXRDb2xvckVkaXRPcHRpb25zAFRyZWVOb2RlX0EAVHJlZU5vZGVfQgBUcmVlTm9kZV9DAFRyZWVOb2RlRXhfQQBUcmVlTm9kZUV4X0IAVHJlZU5vZGVFeF9DAFRyZWVQdXNoX0EAVHJlZVB1c2hfQgBUcmVlUG9wAFRyZWVBZHZhbmNlVG9MYWJlbFBvcwBHZXRUcmVlTm9kZVRvTGFiZWxTcGFjaW5nAFNldE5leHRUcmVlTm9kZU9wZW4AQ29sbGFwc2luZ0hlYWRlcl9BAENvbGxhcHNpbmdIZWFkZXJfQgBTZWxlY3RhYmxlX0EAU2VsZWN0YWJsZV9CAExpc3RCb3hfQQBMaXN0Qm94X0IATGlzdEJveEhlYWRlcl9BAExpc3RCb3hIZWFkZXJfQgBMaXN0Qm94Rm9vdGVyAFZhbHVlX0EAVmFsdWVfQgBWYWx1ZV9DAFZhbHVlX0QAU2V0VG9vbHRpcABCZWdpblRvb2x0aXAARW5kVG9vbHRpcABCZWdpbk1haW5NZW51QmFyAEVuZE1haW5NZW51QmFyAEJlZ2luTWVudUJhcgBFbmRNZW51QmFyAEJlZ2luTWVudQBFbmRNZW51AE1lbnVJdGVtX0EATWVudUl0ZW1fQgBPcGVuUG9wdXAAT3BlblBvcHVwT25JdGVtQ2xpY2sAQmVnaW5Qb3B1cABCZWdpblBvcHVwTW9kYWwAQmVnaW5Qb3B1cENvbnRleHRJdGVtAEJlZ2luUG9wdXBDb250ZXh0V2luZG93AEJlZ2luUG9wdXBDb250ZXh0Vm9pZABFbmRQb3B1cABJc1BvcHVwT3BlbgBDbG9zZUN1cnJlbnRQb3B1cABCZWdpblRhYkJhcgBFbmRUYWJCYXIAQmVnaW5UYWJJdGVtAEVuZFRhYkl0ZW0AU2V0VGFiSXRlbUNsb3NlZABMb2dUb1RUWQBMb2dUb0ZpbGUATG9nVG9DbGlwYm9hcmQATG9nRmluaXNoAExvZ0J1dHRvbnMATG9nVGV4dABCZWdpbkRyYWdEcm9wU291cmNlAFNldERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFNvdXJjZQBCZWdpbkRyYWdEcm9wVGFyZ2V0AEFjY2VwdERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFRhcmdldABHZXREcmFnRHJvcFBheWxvYWQAUHVzaENsaXBSZWN0AFBvcENsaXBSZWN0AFNldEl0ZW1EZWZhdWx0Rm9jdXMAU2V0S2V5Ym9hcmRGb2N1c0hlcmUASXNJdGVtSG92ZXJlZABJc0l0ZW1BY3RpdmUASXNJdGVtRWRpdGVkAElzSXRlbUZvY3VzZWQASXNJdGVtQ2xpY2tlZABJc0l0ZW1WaXNpYmxlAElzSXRlbURlYWN0aXZhdGVkAElzSXRlbURlYWN0aXZhdGVkQWZ0ZXJFZGl0AElzQW55SXRlbUhvdmVyZWQASXNBbnlJdGVtQWN0aXZlAElzQW55SXRlbUZvY3VzZWQAR2V0SXRlbVJlY3RNaW4AR2V0SXRlbVJlY3RNYXgAR2V0SXRlbVJlY3RTaXplAFNldEl0ZW1BbGxvd092ZXJsYXAASXNXaW5kb3dGb2N1c2VkAElzV2luZG93SG92ZXJlZABJc1JlY3RWaXNpYmxlX0EASXNSZWN0VmlzaWJsZV9CAEdldFRpbWUAR2V0RnJhbWVDb3VudABHZXRPdmVybGF5RHJhd0xpc3QAR2V0RHJhd0xpc3RTaGFyZWREYXRhAEdldFN0eWxlQ29sb3JOYW1lAENhbGNUZXh0U2l6ZQBDYWxjTGlzdENsaXBwaW5nAEJlZ2luQ2hpbGRGcmFtZQBFbmRDaGlsZEZyYW1lAENvbG9yQ29udmVydFUzMlRvRmxvYXQ0AENvbG9yQ29udmVydEZsb2F0NFRvVTMyAENvbG9yQ29udmVydFJHQnRvSFNWAENvbG9yQ29udmVydEhTVnRvUkdCAEdldEtleUluZGV4AElzS2V5RG93bgBJc0tleVByZXNzZWQASXNLZXlSZWxlYXNlZABHZXRLZXlQcmVzc2VkQW1vdW50AElzTW91c2VEb3duAElzQW55TW91c2VEb3duAElzTW91c2VDbGlja2VkAElzTW91c2VEb3VibGVDbGlja2VkAElzTW91c2VSZWxlYXNlZABJc01vdXNlRHJhZ2dpbmcASXNNb3VzZUhvdmVyaW5nUmVjdABJc01vdXNlUG9zVmFsaWQAR2V0TW91c2VQb3MAR2V0TW91c2VQb3NPbk9wZW5pbmdDdXJyZW50UG9wdXAAR2V0TW91c2VEcmFnRGVsdGEAUmVzZXRNb3VzZURyYWdEZWx0YQBHZXRNb3VzZUN1cnNvcgBTZXRNb3VzZUN1cnNvcgBDYXB0dXJlS2V5Ym9hcmRGcm9tQXBwAENhcHR1cmVNb3VzZUZyb21BcHAAR2V0Q2xpcGJvYXJkVGV4dABTZXRDbGlwYm9hcmRUZXh0AExvYWRJbmlTZXR0aW5nc0Zyb21NZW1vcnkAU2F2ZUluaVNldHRpbmdzVG9NZW1vcnkAU2V0QWxsb2NhdG9yRnVuY3Rpb25zAE1lbUFsbG9jAE1lbUZyZWUAaWlpAE4xMGVtc2NyaXB0ZW4zdmFsRQB2aWlpaQBOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TXzExY2hhcl90cmFpdHNJY0VFTlNfOWFsbG9jYXRvckljRUVFRQBOU3QzX18yMjFfX2Jhc2ljX3N0cmluZ19jb21tb25JTGIxRUVFAGlpaWZpAHgAeQAyM2ltcG9ydF9tYXliZV9udWxsX3ZhbHVlSTZJbVZlYzJFAGlpaWlpAGlpaWYAaWlpZmYAaWlpaQAxMmFjY2Vzc192YWx1ZUlmTG0xRUUAdmlmZmZpaWkAegB3ADZJbVZlYzIAdmlpZmlpADEyYWNjZXNzX3ZhbHVlSWlMbTFFRQBpaWlpZmkAUDIwSW1EcmF3TGlzdFNoYXJlZERhdGEAMjBJbURyYXdMaXN0U2hhcmVkRGF0YQBQMTBJbURyYXdMaXN0ADEwSW1EcmF3TGlzdABkaQBpaWlpaWkAJXMAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TMF8xMWNoYXJfdHJhaXRzSWNFRU5TMF85YWxsb2NhdG9ySWNFRUVFRQAyNGltcG9ydF9tYXliZV9udWxsX3N0cmluZwAyM2FjY2Vzc19tYXliZV9udWxsX3ZhbHVlSWJMbTFFRQB2aWlmaQB2aWlpAGlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJZkxtNEVFADIzYWNjZXNzX21heWJlX251bGxfdmFsdWVJZkxtNEVFADEyYWNjZXNzX3ZhbHVlSWZMbTNFRQBpaWlpaWlpaWlpAHNldABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lkRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlkRQBsZW5ndGgAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lmRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlmRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lqRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlqRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lpRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlpRQBpaWlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJaUxtNEVFADEyYWNjZXNzX3ZhbHVlSWlMbTNFRQAxMmFjY2Vzc192YWx1ZUlpTG0yRUUAJS4wZiBkZWcAMTJhY2Nlc3NfdmFsdWVJZkxtMkVFAGlpaWlpaWlpAGlpaWlkZGlpADEyYWNjZXNzX3ZhbHVlSWRMbTFFRQBQMjZJbUd1aUlucHV0VGV4dENhbGxiYWNrRGF0YQAyNkltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAGlpaWlpaWlpaWlpAHZpZmlpAHZpaWlpaWlpaWlpADEyYWNjZXNzX3ZhbHVlSWpMbTFFRQAxMmFjY2Vzc192YWx1ZUliTG0xRUUAdmlpaWlpaWkAbnVtYmVyAHZpaWYAZmlpAGlpAHZpaQBQNkltRm9udAA2SW1Gb250AFBLNkltVmVjNAA2SW1WZWM0AFRPRE86ICVzCgBhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoZW1zY3JpcHRlbjo6dmFsKSBjb25zdAB2aWZmAHZpaWlpaQBQMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAdmlmAGZpAHN0cmluZwBQMTBJbUd1aVN0eWxlADEwSW1HdWlTdHlsZQB2aQBQMTBJbURyYXdEYXRhADEwSW1EcmF3RGF0YQBQN0ltR3VpSU8AN0ltR3VpSU8AUDE2V3JhcEltR3VpQ29udGV4dAAxNldyYXBJbUd1aUNvbnRleHQAUDExSW1Gb250QXRsYXMAMTFJbUZvbnRBdGxhcwBJbUd1aVN0eWxlAEFscGhhAFdpbmRvd1BhZGRpbmcAV2luZG93Um91bmRpbmcAV2luZG93Qm9yZGVyU2l6ZQBXaW5kb3dNaW5TaXplAFdpbmRvd1RpdGxlQWxpZ24AQ2hpbGRSb3VuZGluZwBDaGlsZEJvcmRlclNpemUAUG9wdXBSb3VuZGluZwBQb3B1cEJvcmRlclNpemUARnJhbWVQYWRkaW5nAEZyYW1lUm91bmRpbmcARnJhbWVCb3JkZXJTaXplAEl0ZW1TcGFjaW5nAEl0ZW1Jbm5lclNwYWNpbmcAVG91Y2hFeHRyYVBhZGRpbmcASW5kZW50U3BhY2luZwBDb2x1bW5zTWluU3BhY2luZwBTY3JvbGxiYXJTaXplAFNjcm9sbGJhclJvdW5kaW5nAEdyYWJNaW5TaXplAEdyYWJSb3VuZGluZwBUYWJSb3VuZGluZwBUYWJCb3JkZXJTaXplAEJ1dHRvblRleHRBbGlnbgBEaXNwbGF5V2luZG93UGFkZGluZwBEaXNwbGF5U2FmZUFyZWFQYWRkaW5nAE1vdXNlQ3Vyc29yU2NhbGUAQW50aUFsaWFzZWRMaW5lcwBBbnRpQWxpYXNlZEZpbGwAQ3VydmVUZXNzZWxsYXRpb25Ub2wAX2dldEF0X0NvbG9ycwBfc2V0QXRfQ29sb3JzAFNjYWxlQWxsU2l6ZXMAUDZJbVZlYzQAUEs2SW1WZWMyAHYAUEsxMEltR3VpU3R5bGUASW1HdWlJTwBDb25maWdGbGFncwBCYWNrZW5kRmxhZ3MARGlzcGxheVNpemUARGVsdGFUaW1lAEluaVNhdmluZ1JhdGUASW5pRmlsZW5hbWUATG9nRmlsZW5hbWUATW91c2VEb3VibGVDbGlja1RpbWUATW91c2VEb3VibGVDbGlja01heERpc3QATW91c2VEcmFnVGhyZXNob2xkAF9nZXRBdF9LZXlNYXAAX3NldEF0X0tleU1hcABLZXlSZXBlYXREZWxheQBLZXlSZXBlYXRSYXRlAFVzZXJEYXRhAEZvbnRzAEZvbnRHbG9iYWxTY2FsZQBGb250QWxsb3dVc2VyU2NhbGluZwBGb250RGVmYXVsdABEaXNwbGF5RnJhbWVidWZmZXJTY2FsZQBEaXNwbGF5VmlzaWJsZU1pbgBEaXNwbGF5VmlzaWJsZU1heABNb3VzZURyYXdDdXJzb3IAQ29uZmlnTWFjT1NYQmVoYXZpb3JzAENvbmZpZ0lucHV0VGV4dEN1cnNvckJsaW5rAENvbmZpZ1dpbmRvd3NSZXNpemVGcm9tRWRnZXMAQ29uZmlnV2luZG93c01vdmVGcm9tVGl0bGVCYXJPbmx5AEdldENsaXBib2FyZFRleHRGbgBTZXRDbGlwYm9hcmRUZXh0Rm4AQ2xpcGJvYXJkVXNlckRhdGEATW91c2VQb3MAX2dldEF0X01vdXNlRG93bgBfc2V0QXRfTW91c2VEb3duAE1vdXNlV2hlZWwAS2V5Q3RybABLZXlTaGlmdABLZXlBbHQAS2V5U3VwZXIAX2dldEF0X0tleXNEb3duAF9zZXRBdF9LZXlzRG93bgBfZ2V0QXRfTmF2SW5wdXRzAF9zZXRBdF9OYXZJbnB1dHMAQWRkSW5wdXRDaGFyYWN0ZXIAQWRkSW5wdXRDaGFyYWN0ZXJzVVRGOABDbGVhcklucHV0Q2hhcmFjdGVycwBXYW50Q2FwdHVyZU1vdXNlAFdhbnRDYXB0dXJlS2V5Ym9hcmQAV2FudFRleHRJbnB1dABXYW50U2V0TW91c2VQb3MAV2FudFNhdmVJbmlTZXR0aW5ncwBOYXZBY3RpdmUATmF2VmlzaWJsZQBGcmFtZXJhdGUATWV0cmljc1JlbmRlclZlcnRpY2VzAE1ldHJpY3NSZW5kZXJJbmRpY2VzAE1ldHJpY3NSZW5kZXJXaW5kb3dzAE1ldHJpY3NBY3RpdmVXaW5kb3dzAE1ldHJpY3NBY3RpdmVBbGxvY2F0aW9ucwBNb3VzZURlbHRhAF9nZXRBdF9Nb3VzZUNsaWNrZWRQb3MAX2dldEF0X01vdXNlRG93bkR1cmF0aW9uAF9nZXRBdF9LZXlzRG93bkR1cmF0aW9uAF9nZXRBdF9OYXZJbnB1dHNEb3duRHVyYXRpb24AUEs3SW1HdWlJTwBpaWlpZgBmaWlpAEltRm9udEF0bGFzAEFkZEZvbnREZWZhdWx0AEFkZEZvbnRGcm9tTWVtb3J5VFRGAENsZWFyVGV4RGF0YQBDbGVhcklucHV0RGF0YQBDbGVhckZvbnRzAENsZWFyAEJ1aWxkAElzQnVpbHQAR2V0VGV4RGF0YUFzQWxwaGE4AEdldFRleERhdGFBc1JHQkEzMgBHZXRHbHlwaFJhbmdlc0RlZmF1bHQAR2V0R2x5cGhSYW5nZXNLb3JlYW4AR2V0R2x5cGhSYW5nZXNKYXBhbmVzZQBHZXRHbHlwaFJhbmdlc0NoaW5lc2VGdWxsAEdldEdseXBoUmFuZ2VzQ2hpbmVzZVNpbXBsaWZpZWRDb21tb24AR2V0R2x5cGhSYW5nZXNDeXJpbGxpYwBHZXRHbHlwaFJhbmdlc1RoYWkATG9ja2VkAEZsYWdzAFRleElEAFRleERlc2lyZWRXaWR0aABUZXhHbHlwaFBhZGRpbmcAVGV4V2lkdGgAVGV4SGVpZ2h0AFRleFV2U2NhbGUAVGV4VXZXaGl0ZVBpeGVsAEl0ZXJhdGVGb250cwBwaXhlbHMAd2lkdGgAaGVpZ2h0AGJ5dGVzX3Blcl9waXhlbABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0loRUUAaWlpaWZpaQBGb250RGF0YQBidWZmZXIAYnl0ZU9mZnNldABieXRlTGVuZ3RoAFRPRE86IEZvbnREYXRhICV6dSAlenUKAEZvbnREYXRhT3duZWRCeUF0bGFzAEZvbnRObwBTaXplUGl4ZWxzAE92ZXJzYW1wbGVIAE92ZXJzYW1wbGVWAFBpeGVsU25hcEgAR2x5cGhFeHRyYVNwYWNpbmcAR2x5cGhPZmZzZXQAR2x5cGhSYW5nZXMAR2x5cGhNaW5BZHZhbmNlWABHbHlwaE1heEFkdmFuY2VYAE1lcmdlTW9kZQBSYXN0ZXJpemVyRmxhZ3MAUmFzdGVyaXplck11bHRpcGx5AE5hbWUAUEsxMUltRm9udEF0bGFzAEltRm9udABGb250U2l6ZQBTY2FsZQBEaXNwbGF5T2Zmc2V0AEl0ZXJhdGVHbHlwaHMARmFsbGJhY2tHbHlwaABGYWxsYmFja0FkdmFuY2VYAEZhbGxiYWNrQ2hhcgBDb25maWdEYXRhQ291bnQASXRlcmF0ZUNvbmZpZ0RhdGEAQXNjZW50AERlc2NlbnQATWV0cmljc1RvdGFsU3VyZmFjZQBDbGVhck91dHB1dERhdGEAQnVpbGRMb29rdXBUYWJsZQBGaW5kR2x5cGgARmluZEdseXBoTm9GYWxsYmFjawBTZXRGYWxsYmFja0NoYXIAR2V0Q2hhckFkdmFuY2UASXNMb2FkZWQAR2V0RGVidWdOYW1lAENhbGNUZXh0U2l6ZUEAQ2FsY1dvcmRXcmFwUG9zaXRpb25BAFJlbmRlckNoYXIAdmlpaWZpaWkAaWlpZmlmAGlpaWZmZmlpaQA8dW5rbm93bj4AUEs2SW1Gb250AFBLMTFJbUZvbnRHbHlwaAAxMUltRm9udEdseXBoAFAxMkltRm9udENvbmZpZwAxMkltRm9udENvbmZpZwBQMTFJbUZvbnRHbHlwaABJbUZvbnRDb25maWcARHN0Rm9udABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShJbUZvbnRDb25maWcgJiwgZW1zY3JpcHRlbjo6dmFsKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShjb25zdCBJbUZvbnRDb25maWcgJikgY29uc3QAUEsxMkltRm9udENvbmZpZwBJbUZvbnRHbHlwaABDb2RlcG9pbnQAQWR2YW5jZVgAWDAAWTAAWDEAWTEAVTAAVjAAVTEAVjEASW1EcmF3RGF0YQBJdGVyYXRlRHJhd0xpc3RzAFZhbGlkAENtZExpc3RzQ291bnQAVG90YWxJZHhDb3VudABUb3RhbFZ0eENvdW50AERpc3BsYXlQb3MARGVJbmRleEFsbEJ1ZmZlcnMAU2NhbGVDbGlwUmVjdHMAUEsxMEltRHJhd0RhdGEAUEsxMEltRHJhd0xpc3QASW1EcmF3TGlzdABJdGVyYXRlRHJhd0NtZHMASWR4QnVmZmVyAFZ0eEJ1ZmZlcgBQdXNoQ2xpcFJlY3RGdWxsU2NyZWVuAFB1c2hUZXh0dXJlSUQAUG9wVGV4dHVyZUlEAEdldENsaXBSZWN0TWluAEdldENsaXBSZWN0TWF4AEFkZExpbmUAQWRkUmVjdABBZGRSZWN0RmlsbGVkAEFkZFJlY3RGaWxsZWRNdWx0aUNvbG9yAEFkZFF1YWQAQWRkUXVhZEZpbGxlZABBZGRUcmlhbmdsZQBBZGRUcmlhbmdsZUZpbGxlZABBZGRDaXJjbGUAQWRkQ2lyY2xlRmlsbGVkAEFkZFRleHRfQQBBZGRUZXh0X0IAQWRkSW1hZ2UAQWRkSW1hZ2VRdWFkAEFkZEltYWdlUm91bmRlZABBZGRQb2x5bGluZQBBZGRDb252ZXhQb2x5RmlsbGVkAEFkZEJlemllckN1cnZlAFBhdGhDbGVhcgBQYXRoTGluZVRvAFBhdGhMaW5lVG9NZXJnZUR1cGxpY2F0ZQBQYXRoRmlsbENvbnZleABQYXRoU3Ryb2tlAFBhdGhBcmNUbwBQYXRoQXJjVG9GYXN0AFBhdGhCZXppZXJDdXJ2ZVRvAFBhdGhSZWN0AENoYW5uZWxzU3BsaXQAQ2hhbm5lbHNNZXJnZQBDaGFubmVsc1NldEN1cnJlbnQAQWRkQ2FsbGJhY2sAQWRkRHJhd0NtZABDbGVhckZyZWVNZW1vcnkAUHJpbVJlc2VydmUAUHJpbVJlY3QAUHJpbVJlY3RVVgBQcmltUXVhZFVWAFByaW1Xcml0ZVZ0eABQcmltV3JpdGVJZHgAUHJpbVZ0eABVcGRhdGVDbGlwUmVjdABVcGRhdGVUZXh0dXJlSUQAdmlpaWlpaWlpaWlpAHZpaWlpZmkAdmlpaWZmZmkAdmlpaWlmAHZpaWlpaWlpZmkAdmlpaWlpaWlpZmkAdmlpaWlpaWlpaWlpaQB2aWlpZmlpaWZpADIzaW1wb3J0X21heWJlX251bGxfdmFsdWVJNkltVmVjNEUAdmlpaWZpaQB2aWlpZmlpZgB2aWlpaWlpAHZpaWlpaWlmAHZpaWlpaWlpZgB2aWlpaWlpaWkAdmlpaWlpZmkAdmlpaWlpZmlmAHZpaWlpaWYATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJY0VFAFBLOUltRHJhd0NtZAA5SW1EcmF3Q21kAEltRHJhd0NtZABFbGVtQ291bnQAQ2xpcFJlY3QAVGV4dHVyZUlkAFA5SW1EcmF3Q21kAEltR3VpTGlzdENsaXBwZXIAU3RhcnRQb3NZAEl0ZW1zSGVpZ2h0AEl0ZW1zQ291bnQAU3RlcE5vAERpc3BsYXlTdGFydABEaXNwbGF5RW5kAFN0ZXAAUDE2SW1HdWlMaXN0Q2xpcHBlcgAxNkltR3VpTGlzdENsaXBwZXIAdmlpaWYAUEsxNkltR3VpTGlzdENsaXBwZXIASW1HdWlTaXplQ2FsbGJhY2tEYXRhAFBvcwBDdXJyZW50U2l6ZQBEZXNpcmVkU2l6ZQBQSzIxSW1HdWlTaXplQ2FsbGJhY2tEYXRhAEltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAEV2ZW50RmxhZwBFdmVudENoYXIARXZlbnRLZXkAQnVmAEJ1ZlRleHRMZW4AQnVmU2l6ZQBCdWZEaXJ0eQBDdXJzb3JQb3MAU2VsZWN0aW9uU3RhcnQAU2VsZWN0aW9uRW5kAERlbGV0ZUNoYXJzAEluc2VydENoYXJzAEhhc1NlbGVjdGlvbgBQSzI2SW1HdWlJbnB1dFRleHRDYWxsYmFja0RhdGEASW1WZWM0AFNldABDb3B5AEVxdWFscwBJbVZlYzIAUDZJbVZlYzIAV3JhcEltR3VpQ29udGV4dABQSzE2V3JhcEltR3VpQ29udGV4dABtYWxsaW5mbwBhcmVuYQBvcmRibGtzAHNtYmxrcwBoYmxrcwBoYmxraGQAdXNtYmxrcwBmc21ibGtzAHVvcmRibGtzAGZvcmRibGtzAGtlZXBjb3N0AHZvaWQAYm9vbABzdGQ6OnN0cmluZwBzdGQ6OmJhc2ljX3N0cmluZzx1bnNpZ25lZCBjaGFyPgBzdGQ6OndzdHJpbmcAZW1zY3JpcHRlbjo6dmFsAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgc2hvcnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgaW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludDE2X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQzMl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZyBkb3VibGU+AE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SWVFRQBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxkb3VibGU+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBsb25nPgBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0ltRUUAZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZz4ATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJbEVFAE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SXRFRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lzRUUATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJYUVFAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGNoYXI+AE5TdDNfXzIxMmJhc2ljX3N0cmluZ0l3TlNfMTFjaGFyX3RyYWl0c0l3RUVOU185YWxsb2NhdG9ySXdFRUVFAE5TdDNfXzIxMmJhc2ljX3N0cmluZ0loTlNfMTFjaGFyX3RyYWl0c0loRUVOU185YWxsb2NhdG9ySWhFRUVFAGRvdWJsZQBmbG9hdAB1bnNpZ25lZCBsb25nAGxvbmcAdW5zaWduZWQgaW50AGludAB1bnNpZ25lZCBzaG9ydABzaG9ydAB1bnNpZ25lZCBjaGFyAHNpZ25lZCBjaGFyAGNoYXIAAAECBAcDBgUALSsgICAwWDB4AChudWxsKQAtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBOQU4ALgBpbmZpbml0eQBuYW4AcndhAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXM6ICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXMAdGVybWluYXRpbmcgd2l0aCAlcyBmb3JlaWduIGV4Y2VwdGlvbgB0ZXJtaW5hdGluZwB1bmNhdWdodABTdDlleGNlcHRpb24ATjEwX19jeHhhYml2MTE2X19zaGltX3R5cGVfaW5mb0UAU3Q5dHlwZV9pbmZvAE4xMF9fY3h4YWJpdjEyMF9fc2lfY2xhc3NfdHlwZV9pbmZvRQBOMTBfX2N4eGFiaXYxMTdfX2NsYXNzX3R5cGVfaW5mb0UAcHRocmVhZF9vbmNlIGZhaWx1cmUgaW4gX19jeGFfZ2V0X2dsb2JhbHNfZmFzdCgpAGNhbm5vdCBjcmVhdGUgcHRocmVhZCBrZXkgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAY2Fubm90IHplcm8gb3V0IHRocmVhZCB2YWx1ZSBmb3IgX19jeGFfZ2V0X2dsb2JhbHMoKQB0ZXJtaW5hdGVfaGFuZGxlciB1bmV4cGVjdGVkbHkgcmV0dXJuZWQAU3QxMWxvZ2ljX2Vycm9yAFN0MTJsZW5ndGhfZXJyb3IATjEwX19jeHhhYml2MTE5X19wb2ludGVyX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19wYmFzZV90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjEyM19fZnVuZGFtZW50YWxfdHlwZV9pbmZvRQB2AFB2AERuAGIAYwBoAGEAcwB0AGkAagBsAG0AZgBkAE4xMF9fY3h4YWJpdjEyMV9fdm1pX2NsYXNzX3R5cGVfaW5mb0U=";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile);}function getBinary(){try{if(Module["wasmBinary"]){return new Uint8Array(Module["wasmBinary"])}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(Module["readBinary"]){return Module["readBinary"](wasmBinaryFile)}else{throw"both async and sync fetching of the wasm failed"}}catch(err){abort(err);}}function getBinaryPromise(){if(!Module["wasmBinary"]&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch==="function"){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()})}return new Promise(function(resolve,reject){resolve(getBinary());})}function createWasm(env){var info={"env":env,"global":{"NaN":NaN,Infinity:Infinity},"global.Math":Math,"asm2wasm":asm2wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;removeRunDependency();}addRunDependency();function receiveInstantiatedSource(output){receiveInstance(output["instance"]);}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason);})}function instantiateAsync(){if(!Module["wasmBinary"]&&typeof WebAssembly.instantiateStreaming==="function"&&!isDataURI(wasmBinaryFile)&&typeof fetch==="function"){return WebAssembly.instantiateStreaming(fetch(wasmBinaryFile,{credentials:"same-origin"}),info).then(receiveInstantiatedSource,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");instantiateArrayBuffer(receiveInstantiatedSource);})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module["instantiateWasm"]){try{return Module["instantiateWasm"](info,receiveInstance)}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}}instantiateAsync();return {}}Module["asm"]=function(global,env,providedBuffer){env["memory"]=wasmMemory;env["table"]=wasmTable=new WebAssembly.Table({"initial":1442,"maximum":1442,"element":"anyfunc"});env["__memory_base"]=1024;env["__table_base"]=0;var exports=createWasm(env);return exports};__ATINIT__.push({func:function(){globalCtors();}});function ___cxa_allocate_exception(size){return _malloc(size)}function ___cxa_throw(ptr,type,destructor){throw ptr}function ___lock(){}var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0;}else{buffer.push(curr);}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get();}};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall145(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();return SYSCALLS.doReadv(stream,iov,iovcnt)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j>2]=value;return value}function ___syscall221(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___unlock(){}function getShiftFromSize(size){switch(size){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError("Unknown type size: "+size)}}function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<256;++i){codes[i]=String.fromCharCode(i);}embind_charCodes=codes;}var embind_charCodes=undefined;function readLatin1String(ptr){var ret="";var c=ptr;while(HEAPU8[c]){ret+=embind_charCodes[HEAPU8[c++]];}return ret}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return "_unknown"}name=name.replace(/[^a-zA-Z0-9_]/g,"$");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return "_"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return new Function("body","return function "+name+"() {\n"+' "use strict";'+" return body.apply(this, arguments);\n"+"};\n")(body)}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+"\n"+stack.replace(/^Error(:[^\n]*)?\n/,"");}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+": "+this.message}};return errorClass}var BindingError=undefined;function throwBindingError(message){throw new BindingError(message)}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes;});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError("Mismatched type converter count");}for(var i=0;i>shift])},destructorFunction:null});}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass;}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass;}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return {count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+" instance already deleted");}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr);}else{$$.ptrType.registeredClass.rawDestructor($$.ptr);}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$);}}function attachFinalizer(handle){if("undefined"===typeof FinalizationGroup){attachFinalizer=function(handle){return handle};return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn("object already deleted: "+$$.ptr);}else{releaseClassHandle($$);}}});attachFinalizer=function(handle){finalizationGroup.register(handle,handle.$$,handle.$$);return handle};detachFinalizer=function(handle){finalizationGroup.unregister(handle.$$);};return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined;}}function ClassHandle_isDeleted(){return !this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj["delete"]();}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes);}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype["isAliasOf"]=ClassHandle_isAliasOf;ClassHandle.prototype["clone"]=ClassHandle_clone;ClassHandle.prototype["delete"]=ClassHandle_delete;ClassHandle.prototype["isDeleted"]=ClassHandle_isDeleted;ClassHandle.prototype["deleteLater"]=ClassHandle_deleteLater;}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError("Function '"+humanName+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+proto[methodName].overloadTable+")!");}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc;}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError("Cannot register public name '"+name+"' twice");}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError("Cannot register multiple overloads of a function with the same number of arguments ("+numArguments+")!");}Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments;}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[];}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError("Expected null or instance of "+desiredClass.name+", got an instance of "+ptrClass.name);}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass;}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr);}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError("Passing raw pointer to smart pointer is illegal");}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{var clonedHandle=handle["clone"]();ptr=this.rawShare(ptr,__emval_register(function(){clonedHandle["delete"]();}));if(destructors!==null){destructors.push(this.rawDestructor,ptr);}}break;default:throwBindingError("Unsupporting sharing policy");}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+handle.$$.ptrType.name+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function simpleReadValueFromPointer(pointer){return this["fromWireType"](HEAPU32[pointer>>2])}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr);}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr);}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle["delete"]();}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k]);}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes);}}function init_embind(){Module["getInheritedInstanceCount"]=getInheritedInstanceCount;Module["getLiveInheritedInstances"]=getLiveInheritedInstances;Module["flushPendingDeletes"]=flushPendingDeletes;Module["setDelayFunction"]=setDelayFunction;}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError("ptr should not be undefined");}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass;}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError("makeClassHandle requires ptr and ptrType");}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError("Both smartPtrType and smartPtr must be specified");}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance["clone"]()}else{var rv=registeredInstance["clone"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType;}else{toType=registeredPointerRecord.pointerType;}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype["argPackAdvance"]=8;RegisteredPointer.prototype["readValueFromPointer"]=simpleReadValueFromPointer;RegisteredPointer.prototype["deleteObject"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype["fromWireType"]=RegisteredPointer_fromWireType;}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this["toWireType"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}else{this["toWireType"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}}else{this["toWireType"]=genericPointerToWireType;}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError("Replacing nonexistant public symbol");}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;Module[name].argCount=numArguments;}}function embind__requireFunction(signature,rawFunction){signature=readLatin1String(signature);function makeDynCaller(dynCall){var args=[];for(var i=1;i>2)+i]);}return array}function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr);}}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName="constructor "+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[];}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError("Cannot register multiple constructors with identical number of parameters ("+(argCount-1)+") for class '"+classType.name+"'! Overload resolution is currently only performed using the parameter count, not actual type info!")}classType.registeredClass.constructor_body[argCount-1]=function unboundTypeHandler(){throwUnboundTypeError("Cannot construct "+classType.name+" due to unbound types",rawArgTypes);};whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){classType.registeredClass.constructor_body[argCount-1]=function constructor_body(){if(arguments.length!==argCount-1){throwBindingError(humanName+" called with "+arguments.length+" arguments, expected "+(argCount-1));}var destructors=[];var args=new Array(argCount);args[0]=rawConstructor;for(var i=1;i0?", ":"")+argsListWired;}invokerFnBody+=(returns?"var rv = ":"")+"invoker(fn"+(argsListWired.length>0?", ":"")+argsListWired+");\n";if(needsDestructorStack){invokerFnBody+="runDestructors(destructors);\n";}else{for(var i=isClassMethodFunc?1:2;i4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle);}}function count_emval_handles(){var count=0;for(var i=5;i>2])};case 3:return function(pointer){return this["fromWireType"](HEAPF64[pointer>>3])};default:throw new TypeError("Unknown float type: "+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":function(value){return value},"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}return value},"argPackAdvance":8,"readValueFromPointer":floatReadValueFromPointer(name,shift),destructorFunction:null});}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError("Cannot call "+name+" due to unbound types",argTypes);},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return []});}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError("Unknown integer type: "+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295;}var shift=getShiftFromSize(size);var fromWireType=function(value){return value};if(minRange===0){var bitshift=32-8*size;fromWireType=function(value){return value<>>bitshift};}var isUnsignedType=name.indexOf("unsigned")!=-1;registerType(primitiveType,{name:name,"fromWireType":fromWireType,"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}if(valuemaxRange){throw new TypeError('Passing a number "'+_embind_repr(value)+'" from JS side to C/C++ side to an argument of type "'+name+'", which is outside the valid range ['+minRange+", "+maxRange+"]!")}return isUnsignedType?value>>>0:value|0},"argPackAdvance":8,"readValueFromPointer":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null});}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(heap["buffer"],data,size)}name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":decodeMemoryView,"argPackAdvance":8,"readValueFromPointer":decodeMemoryView},{ignoreDuplicateRegistrations:true});}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name==="std::string";registerType(rawType,{name:name,"fromWireType":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var endChar=HEAPU8[value+4+length];var endCharSwap=0;if(endChar!=0){endCharSwap=endChar;HEAPU8[value+4+length]=0;}var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(HEAPU8[currentBytePtr]==0){var stringSegment=UTF8ToString(decodeStartPtr);if(str===undefined)str=stringSegment;else{str+=String.fromCharCode(0);str+=stringSegment;}decodeStartPtr=currentBytePtr+1;}}if(endCharSwap!=0)HEAPU8[value+4+length]=endCharSwap;}else{var a=new Array(length);for(var i=0;i>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1);}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError("String has UTF-16 code units that do not fit in 8 bits");}HEAPU8[ptr+4+i]=charCode;}}else{for(var i=0;i>2];var a=new Array(length);var start=value+4>>shift;for(var i=0;i>2]=length;var start=ptr+4>>shift;for(var i=0;i>2]=rd;return returnType["toWireType"](destructors,handle)}function __emval_lookupTypes(argCount,argTypes,argWireTypes){var a=new Array(argCount);for(var i=0;i>2)+i],"parameter "+i);}return a}function __emval_call(handle,argCount,argTypes,argv){handle=requireHandle(handle);var types=__emval_lookupTypes(argCount,argTypes);var args=new Array(argCount);for(var i=0;i4){emval_handle_array[handle].refcount+=1;}}function __emval_new_array(){return __emval_register([])}function __emval_new_cstring(v){return __emval_register(getStringOrSymbol(v))}function __emval_new_object(){return __emval_register({})}function __emval_run_destructors(handle){var destructors=emval_handle_array[handle].value;runDestructors(destructors);__emval_decref(handle);}function __emval_set_property(handle,key,value){handle=requireHandle(handle);key=requireHandle(key);value=requireHandle(value);handle[key]=value;}function __emval_strictly_equals(first,second){first=requireHandle(first);second=requireHandle(second);return first===second}function __emval_take_value(type,argv){type=requireRegisteredType(type,"_emval_take_value");var v=type["readValueFromPointer"](argv);return __emval_register(v)}function __emval_typeof(handle){handle=requireHandle(handle);return __emval_register(typeof handle)}function _abort(){Module["abort"]();}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest);}function abortOnCannotGrowMemory(requestedSize){abort("OOM");}function _emscripten_resize_heap(requestedSize){abortOnCannotGrowMemory();}embind_init_charCodes();BindingError=Module["BindingError"]=extendError(Error,"BindingError");InternalError=Module["InternalError"]=extendError(Error,"InternalError");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module["UnboundTypeError"]=extendError(Error,"UnboundTypeError");init_emval();function intArrayToString(array){var ret=[];for(var i=0;i255){chr&=255;}ret.push(String.fromCharCode(chr));}return ret.join("")}var decodeBase64=typeof atob==="function"?atob:function(input){var keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2);}if(enc4!==64){output=output+String.fromCharCode(chr3);}}while(i0){return}preRun();if(runDependencies>0)return;if(Module["calledRun"])return;function doRun(){if(Module["calledRun"])return;Module["calledRun"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun();}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("");},1);doRun();},1);}else{doRun();}}Module["run"]=run;function abort(what){if(Module["onAbort"]){Module["onAbort"](what);}if(what!==undefined){out(what);err(what);what=JSON.stringify(what);}else{what="";}ABORT=true;throw"abort("+what+"). Build with -s ASSERTIONS=1 for more info."}Module["abort"]=abort;if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()();}}Module["noExitRuntime"]=true;run(); + + + return Module +} +); +})(); +module.exports = Module; +}); + +let bind; +const IMGUI_VERSION = "1.71"; // bind.IMGUI_VERSION; +// #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert)) +function IMGUI_CHECKVERSION() { return DebugCheckVersionAndDataLayout(IMGUI_VERSION, bind.ImGuiIOSize, bind.ImGuiStyleSize, bind.ImVec2Size, bind.ImVec4Size, bind.ImDrawVertSize, bind.ImDrawIdxSize); } +function IM_ASSERT(_EXPR) { if (!_EXPR) { + throw new Error(); +} } +function IM_ARRAYSIZE(_ARR) { + if (_ARR instanceof ImStringBuffer) { + return _ARR.size; + } + else { + return _ARR.length; + } +} +class ImStringBuffer { + constructor(size, buffer = "") { + this.size = size; + this.buffer = buffer; + } +} +var ImGuiWindowFlags; +(function (ImGuiWindowFlags) { + ImGuiWindowFlags[ImGuiWindowFlags["None"] = 0] = "None"; + ImGuiWindowFlags[ImGuiWindowFlags["NoTitleBar"] = 1] = "NoTitleBar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoResize"] = 2] = "NoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMove"] = 4] = "NoMove"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollbar"] = 8] = "NoScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollWithMouse"] = 16] = "NoScrollWithMouse"; + ImGuiWindowFlags[ImGuiWindowFlags["NoCollapse"] = 32] = "NoCollapse"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysAutoResize"] = 64] = "AlwaysAutoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBackground"] = 128] = "NoBackground"; + ImGuiWindowFlags[ImGuiWindowFlags["NoSavedSettings"] = 256] = "NoSavedSettings"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMouseInputs"] = 512] = "NoMouseInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["MenuBar"] = 1024] = "MenuBar"; + ImGuiWindowFlags[ImGuiWindowFlags["HorizontalScrollbar"] = 2048] = "HorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoFocusOnAppearing"] = 4096] = "NoFocusOnAppearing"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBringToFrontOnFocus"] = 8192] = "NoBringToFrontOnFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysVerticalScrollbar"] = 16384] = "AlwaysVerticalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysHorizontalScrollbar"] = 32768] = "AlwaysHorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysUseWindowPadding"] = 65536] = "AlwaysUseWindowPadding"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavInputs"] = 262144] = "NoNavInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavFocus"] = 524288] = "NoNavFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["UnsavedDocument"] = 1048576] = "UnsavedDocument"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNav"] = 786432] = "NoNav"; + ImGuiWindowFlags[ImGuiWindowFlags["NoDecoration"] = 43] = "NoDecoration"; + ImGuiWindowFlags[ImGuiWindowFlags["NoInputs"] = 786944] = "NoInputs"; + // [Internal] + ImGuiWindowFlags[ImGuiWindowFlags["NavFlattened"] = 8388608] = "NavFlattened"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildWindow"] = 16777216] = "ChildWindow"; + ImGuiWindowFlags[ImGuiWindowFlags["Tooltip"] = 33554432] = "Tooltip"; + ImGuiWindowFlags[ImGuiWindowFlags["Popup"] = 67108864] = "Popup"; + ImGuiWindowFlags[ImGuiWindowFlags["Modal"] = 134217728] = "Modal"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildMenu"] = 268435456] = "ChildMenu"; +})(ImGuiWindowFlags || (ImGuiWindowFlags = {})); +var ImGuiInputTextFlags; +(function (ImGuiInputTextFlags) { + ImGuiInputTextFlags[ImGuiInputTextFlags["None"] = 0] = "None"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsDecimal"] = 1] = "CharsDecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsHexadecimal"] = 2] = "CharsHexadecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsUppercase"] = 4] = "CharsUppercase"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsNoBlank"] = 8] = "CharsNoBlank"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AutoSelectAll"] = 16] = "AutoSelectAll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["EnterReturnsTrue"] = 32] = "EnterReturnsTrue"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCompletion"] = 64] = "CallbackCompletion"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackHistory"] = 128] = "CallbackHistory"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackAlways"] = 256] = "CallbackAlways"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCharFilter"] = 512] = "CallbackCharFilter"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AllowTabInput"] = 1024] = "AllowTabInput"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CtrlEnterForNewLine"] = 2048] = "CtrlEnterForNewLine"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoHorizontalScroll"] = 4096] = "NoHorizontalScroll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AlwaysInsertMode"] = 8192] = "AlwaysInsertMode"; + ImGuiInputTextFlags[ImGuiInputTextFlags["ReadOnly"] = 16384] = "ReadOnly"; + ImGuiInputTextFlags[ImGuiInputTextFlags["Password"] = 32768] = "Password"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoUndoRedo"] = 65536] = "NoUndoRedo"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsScientific"] = 131072] = "CharsScientific"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackResize"] = 262144] = "CallbackResize"; + // [Internal] + ImGuiInputTextFlags[ImGuiInputTextFlags["Multiline"] = 1048576] = "Multiline"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoMarkEdited"] = 2097152] = "NoMarkEdited"; +})(ImGuiInputTextFlags || (ImGuiInputTextFlags = {})); +var ImGuiTreeNodeFlags; +(function (ImGuiTreeNodeFlags) { + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["None"] = 0] = "None"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Selected"] = 1] = "Selected"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Framed"] = 2] = "Framed"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["AllowItemOverlap"] = 4] = "AllowItemOverlap"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoTreePushOnOpen"] = 8] = "NoTreePushOnOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoAutoOpenOnLog"] = 16] = "NoAutoOpenOnLog"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["DefaultOpen"] = 32] = "DefaultOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnDoubleClick"] = 64] = "OpenOnDoubleClick"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnArrow"] = 128] = "OpenOnArrow"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Leaf"] = 256] = "Leaf"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Bullet"] = 512] = "Bullet"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["FramePadding"] = 1024] = "FramePadding"; + //SpanAllAvailWidth = 1 << 11, // FIXME: TODO: Extend hit box horizontally even if not framed + //NoScrollOnOpen = 1 << 12, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NavLeftJumpsBackHere"] = 8192] = "NavLeftJumpsBackHere"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["CollapsingHeader"] = 26] = "CollapsingHeader"; +})(ImGuiTreeNodeFlags || (ImGuiTreeNodeFlags = {})); +var ImGuiSelectableFlags; +(function (ImGuiSelectableFlags) { + ImGuiSelectableFlags[ImGuiSelectableFlags["None"] = 0] = "None"; + ImGuiSelectableFlags[ImGuiSelectableFlags["DontClosePopups"] = 1] = "DontClosePopups"; + ImGuiSelectableFlags[ImGuiSelectableFlags["SpanAllColumns"] = 2] = "SpanAllColumns"; + ImGuiSelectableFlags[ImGuiSelectableFlags["AllowDoubleClick"] = 4] = "AllowDoubleClick"; + ImGuiSelectableFlags[ImGuiSelectableFlags["Disabled"] = 8] = "Disabled"; // Cannot be selected, display greyed out text +})(ImGuiSelectableFlags || (ImGuiSelectableFlags = {})); +var ImGuiComboFlags; +(function (ImGuiComboFlags) { + ImGuiComboFlags[ImGuiComboFlags["None"] = 0] = "None"; + ImGuiComboFlags[ImGuiComboFlags["PopupAlignLeft"] = 1] = "PopupAlignLeft"; + ImGuiComboFlags[ImGuiComboFlags["HeightSmall"] = 2] = "HeightSmall"; + ImGuiComboFlags[ImGuiComboFlags["HeightRegular"] = 4] = "HeightRegular"; + ImGuiComboFlags[ImGuiComboFlags["HeightLarge"] = 8] = "HeightLarge"; + ImGuiComboFlags[ImGuiComboFlags["HeightLargest"] = 16] = "HeightLargest"; + ImGuiComboFlags[ImGuiComboFlags["NoArrowButton"] = 32] = "NoArrowButton"; + ImGuiComboFlags[ImGuiComboFlags["NoPreview"] = 64] = "NoPreview"; + ImGuiComboFlags[ImGuiComboFlags["HeightMask_"] = 30] = "HeightMask_"; +})(ImGuiComboFlags || (ImGuiComboFlags = {})); +var ImGuiTabBarFlags; +(function (ImGuiTabBarFlags) { + ImGuiTabBarFlags[ImGuiTabBarFlags["None"] = 0] = "None"; + ImGuiTabBarFlags[ImGuiTabBarFlags["Reorderable"] = 1] = "Reorderable"; + ImGuiTabBarFlags[ImGuiTabBarFlags["AutoSelectNewTabs"] = 2] = "AutoSelectNewTabs"; + ImGuiTabBarFlags[ImGuiTabBarFlags["TabListPopupButton"] = 4] = "TabListPopupButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoCloseWithMiddleMouseButton"] = 8] = "NoCloseWithMiddleMouseButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTabListScrollingButtons"] = 16] = "NoTabListScrollingButtons"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTooltip"] = 32] = "NoTooltip"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyResizeDown"] = 64] = "FittingPolicyResizeDown"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyScroll"] = 128] = "FittingPolicyScroll"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyMask_"] = 192] = "FittingPolicyMask_"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyDefault_"] = 64] = "FittingPolicyDefault_"; +})(ImGuiTabBarFlags || (ImGuiTabBarFlags = {})); +var ImGuiTabItemFlags; +(function (ImGuiTabItemFlags) { + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_None"] = 0] = "ImGuiTabItemFlags_None"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_UnsavedDocument"] = 1] = "ImGuiTabItemFlags_UnsavedDocument"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_SetSelected"] = 2] = "ImGuiTabItemFlags_SetSelected"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"] = 4] = "ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoPushId"] = 8] = "ImGuiTabItemFlags_NoPushId"; // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem() +})(ImGuiTabItemFlags || (ImGuiTabItemFlags = {})); +var ImGuiFocusedFlags; +(function (ImGuiFocusedFlags) { + ImGuiFocusedFlags[ImGuiFocusedFlags["None"] = 0] = "None"; + ImGuiFocusedFlags[ImGuiFocusedFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiFocusedFlags || (ImGuiFocusedFlags = {})); +var ImGuiHoveredFlags; +(function (ImGuiHoveredFlags) { + ImGuiHoveredFlags[ImGuiHoveredFlags["None"] = 0] = "None"; + ImGuiHoveredFlags[ImGuiHoveredFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByPopup"] = 8] = "AllowWhenBlockedByPopup"; + //AllowWhenBlockedByModal = 1 << 4, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet. + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByActiveItem"] = 32] = "AllowWhenBlockedByActiveItem"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenOverlapped"] = 64] = "AllowWhenOverlapped"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenDisabled"] = 128] = "AllowWhenDisabled"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RectOnly"] = 104] = "RectOnly"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiHoveredFlags || (ImGuiHoveredFlags = {})); +var ImGuiDragDropFlags; +(function (ImGuiDragDropFlags) { + // BeginDragDropSource() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["None"] = 0] = "None"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoPreviewTooltip"] = 1] = "SourceNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoDisableHover"] = 2] = "SourceNoDisableHover"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoHoldToOpenOthers"] = 4] = "SourceNoHoldToOpenOthers"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAllowNullID"] = 8] = "SourceAllowNullID"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceExtern"] = 16] = "SourceExtern"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAutoExpirePayload"] = 32] = "SourceAutoExpirePayload"; + // AcceptDragDropPayload() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptBeforeDelivery"] = 1024] = "AcceptBeforeDelivery"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoDrawDefaultRect"] = 2048] = "AcceptNoDrawDefaultRect"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoPreviewTooltip"] = 4096] = "AcceptNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptPeekOnly"] = 3072] = "AcceptPeekOnly"; +})(ImGuiDragDropFlags || (ImGuiDragDropFlags = {})); +var ImGuiDataType; +(function (ImGuiDataType) { + ImGuiDataType[ImGuiDataType["S8"] = 0] = "S8"; + ImGuiDataType[ImGuiDataType["U8"] = 1] = "U8"; + ImGuiDataType[ImGuiDataType["S16"] = 2] = "S16"; + ImGuiDataType[ImGuiDataType["U16"] = 3] = "U16"; + ImGuiDataType[ImGuiDataType["S32"] = 4] = "S32"; + ImGuiDataType[ImGuiDataType["U32"] = 5] = "U32"; + ImGuiDataType[ImGuiDataType["S64"] = 6] = "S64"; + ImGuiDataType[ImGuiDataType["U64"] = 7] = "U64"; + ImGuiDataType[ImGuiDataType["Float"] = 8] = "Float"; + ImGuiDataType[ImGuiDataType["Double"] = 9] = "Double"; + ImGuiDataType[ImGuiDataType["COUNT"] = 10] = "COUNT"; +})(ImGuiDataType || (ImGuiDataType = {})); +var ImGuiDir; +(function (ImGuiDir) { + ImGuiDir[ImGuiDir["None"] = -1] = "None"; + ImGuiDir[ImGuiDir["Left"] = 0] = "Left"; + ImGuiDir[ImGuiDir["Right"] = 1] = "Right"; + ImGuiDir[ImGuiDir["Up"] = 2] = "Up"; + ImGuiDir[ImGuiDir["Down"] = 3] = "Down"; + ImGuiDir[ImGuiDir["COUNT"] = 4] = "COUNT"; +})(ImGuiDir || (ImGuiDir = {})); +var ImGuiKey; +(function (ImGuiKey) { + ImGuiKey[ImGuiKey["Tab"] = 0] = "Tab"; + ImGuiKey[ImGuiKey["LeftArrow"] = 1] = "LeftArrow"; + ImGuiKey[ImGuiKey["RightArrow"] = 2] = "RightArrow"; + ImGuiKey[ImGuiKey["UpArrow"] = 3] = "UpArrow"; + ImGuiKey[ImGuiKey["DownArrow"] = 4] = "DownArrow"; + ImGuiKey[ImGuiKey["PageUp"] = 5] = "PageUp"; + ImGuiKey[ImGuiKey["PageDown"] = 6] = "PageDown"; + ImGuiKey[ImGuiKey["Home"] = 7] = "Home"; + ImGuiKey[ImGuiKey["End"] = 8] = "End"; + ImGuiKey[ImGuiKey["Insert"] = 9] = "Insert"; + ImGuiKey[ImGuiKey["Delete"] = 10] = "Delete"; + ImGuiKey[ImGuiKey["Backspace"] = 11] = "Backspace"; + ImGuiKey[ImGuiKey["Space"] = 12] = "Space"; + ImGuiKey[ImGuiKey["Enter"] = 13] = "Enter"; + ImGuiKey[ImGuiKey["Escape"] = 14] = "Escape"; + ImGuiKey[ImGuiKey["A"] = 15] = "A"; + ImGuiKey[ImGuiKey["C"] = 16] = "C"; + ImGuiKey[ImGuiKey["V"] = 17] = "V"; + ImGuiKey[ImGuiKey["X"] = 18] = "X"; + ImGuiKey[ImGuiKey["Y"] = 19] = "Y"; + ImGuiKey[ImGuiKey["Z"] = 20] = "Z"; + ImGuiKey[ImGuiKey["COUNT"] = 21] = "COUNT"; +})(ImGuiKey || (ImGuiKey = {})); +var ImGuiNavInput; +(function (ImGuiNavInput) { + // Gamepad Mapping + ImGuiNavInput[ImGuiNavInput["Activate"] = 0] = "Activate"; + ImGuiNavInput[ImGuiNavInput["Cancel"] = 1] = "Cancel"; + ImGuiNavInput[ImGuiNavInput["Input"] = 2] = "Input"; + ImGuiNavInput[ImGuiNavInput["Menu"] = 3] = "Menu"; + ImGuiNavInput[ImGuiNavInput["DpadLeft"] = 4] = "DpadLeft"; + ImGuiNavInput[ImGuiNavInput["DpadRight"] = 5] = "DpadRight"; + ImGuiNavInput[ImGuiNavInput["DpadUp"] = 6] = "DpadUp"; + ImGuiNavInput[ImGuiNavInput["DpadDown"] = 7] = "DpadDown"; + ImGuiNavInput[ImGuiNavInput["LStickLeft"] = 8] = "LStickLeft"; + ImGuiNavInput[ImGuiNavInput["LStickRight"] = 9] = "LStickRight"; + ImGuiNavInput[ImGuiNavInput["LStickUp"] = 10] = "LStickUp"; + ImGuiNavInput[ImGuiNavInput["LStickDown"] = 11] = "LStickDown"; + ImGuiNavInput[ImGuiNavInput["FocusPrev"] = 12] = "FocusPrev"; + ImGuiNavInput[ImGuiNavInput["FocusNext"] = 13] = "FocusNext"; + ImGuiNavInput[ImGuiNavInput["TweakSlow"] = 14] = "TweakSlow"; + ImGuiNavInput[ImGuiNavInput["TweakFast"] = 15] = "TweakFast"; + // [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them. + // Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) may be directly reading from io.KeyDown[] instead of io.NavInputs[]. + ImGuiNavInput[ImGuiNavInput["KeyMenu_"] = 16] = "KeyMenu_"; + ImGuiNavInput[ImGuiNavInput["KeyTab_"] = 17] = "KeyTab_"; + ImGuiNavInput[ImGuiNavInput["KeyLeft_"] = 18] = "KeyLeft_"; + ImGuiNavInput[ImGuiNavInput["KeyRight_"] = 19] = "KeyRight_"; + ImGuiNavInput[ImGuiNavInput["KeyUp_"] = 20] = "KeyUp_"; + ImGuiNavInput[ImGuiNavInput["KeyDown_"] = 21] = "KeyDown_"; + ImGuiNavInput[ImGuiNavInput["COUNT"] = 22] = "COUNT"; + ImGuiNavInput[ImGuiNavInput["InternalStart_"] = 16] = "InternalStart_"; +})(ImGuiNavInput || (ImGuiNavInput = {})); +var ImGuiConfigFlags; +(function (ImGuiConfigFlags) { + ImGuiConfigFlags[ImGuiConfigFlags["None"] = 0] = "None"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableKeyboard"] = 1] = "NavEnableKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableGamepad"] = 2] = "NavEnableGamepad"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableSetMousePos"] = 4] = "NavEnableSetMousePos"; + ImGuiConfigFlags[ImGuiConfigFlags["NavNoCaptureKeyboard"] = 8] = "NavNoCaptureKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouse"] = 16] = "NoMouse"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouseCursorChange"] = 32] = "NoMouseCursorChange"; + ImGuiConfigFlags[ImGuiConfigFlags["IsSRGB"] = 1048576] = "IsSRGB"; + ImGuiConfigFlags[ImGuiConfigFlags["IsTouchScreen"] = 2097152] = "IsTouchScreen"; // Application is using a touch screen instead of a mouse. +})(ImGuiConfigFlags || (ImGuiConfigFlags = {})); +var ImGuiCol; +(function (ImGuiCol) { + ImGuiCol[ImGuiCol["Text"] = 0] = "Text"; + ImGuiCol[ImGuiCol["TextDisabled"] = 1] = "TextDisabled"; + ImGuiCol[ImGuiCol["WindowBg"] = 2] = "WindowBg"; + ImGuiCol[ImGuiCol["ChildBg"] = 3] = "ChildBg"; + ImGuiCol[ImGuiCol["PopupBg"] = 4] = "PopupBg"; + ImGuiCol[ImGuiCol["Border"] = 5] = "Border"; + ImGuiCol[ImGuiCol["BorderShadow"] = 6] = "BorderShadow"; + ImGuiCol[ImGuiCol["FrameBg"] = 7] = "FrameBg"; + ImGuiCol[ImGuiCol["FrameBgHovered"] = 8] = "FrameBgHovered"; + ImGuiCol[ImGuiCol["FrameBgActive"] = 9] = "FrameBgActive"; + ImGuiCol[ImGuiCol["TitleBg"] = 10] = "TitleBg"; + ImGuiCol[ImGuiCol["TitleBgActive"] = 11] = "TitleBgActive"; + ImGuiCol[ImGuiCol["TitleBgCollapsed"] = 12] = "TitleBgCollapsed"; + ImGuiCol[ImGuiCol["MenuBarBg"] = 13] = "MenuBarBg"; + ImGuiCol[ImGuiCol["ScrollbarBg"] = 14] = "ScrollbarBg"; + ImGuiCol[ImGuiCol["ScrollbarGrab"] = 15] = "ScrollbarGrab"; + ImGuiCol[ImGuiCol["ScrollbarGrabHovered"] = 16] = "ScrollbarGrabHovered"; + ImGuiCol[ImGuiCol["ScrollbarGrabActive"] = 17] = "ScrollbarGrabActive"; + ImGuiCol[ImGuiCol["CheckMark"] = 18] = "CheckMark"; + ImGuiCol[ImGuiCol["SliderGrab"] = 19] = "SliderGrab"; + ImGuiCol[ImGuiCol["SliderGrabActive"] = 20] = "SliderGrabActive"; + ImGuiCol[ImGuiCol["Button"] = 21] = "Button"; + ImGuiCol[ImGuiCol["ButtonHovered"] = 22] = "ButtonHovered"; + ImGuiCol[ImGuiCol["ButtonActive"] = 23] = "ButtonActive"; + ImGuiCol[ImGuiCol["Header"] = 24] = "Header"; + ImGuiCol[ImGuiCol["HeaderHovered"] = 25] = "HeaderHovered"; + ImGuiCol[ImGuiCol["HeaderActive"] = 26] = "HeaderActive"; + ImGuiCol[ImGuiCol["Separator"] = 27] = "Separator"; + ImGuiCol[ImGuiCol["SeparatorHovered"] = 28] = "SeparatorHovered"; + ImGuiCol[ImGuiCol["SeparatorActive"] = 29] = "SeparatorActive"; + ImGuiCol[ImGuiCol["ResizeGrip"] = 30] = "ResizeGrip"; + ImGuiCol[ImGuiCol["ResizeGripHovered"] = 31] = "ResizeGripHovered"; + ImGuiCol[ImGuiCol["ResizeGripActive"] = 32] = "ResizeGripActive"; + ImGuiCol[ImGuiCol["Tab"] = 33] = "Tab"; + ImGuiCol[ImGuiCol["TabHovered"] = 34] = "TabHovered"; + ImGuiCol[ImGuiCol["TabActive"] = 35] = "TabActive"; + ImGuiCol[ImGuiCol["TabUnfocused"] = 36] = "TabUnfocused"; + ImGuiCol[ImGuiCol["TabUnfocusedActive"] = 37] = "TabUnfocusedActive"; + ImGuiCol[ImGuiCol["PlotLines"] = 38] = "PlotLines"; + ImGuiCol[ImGuiCol["PlotLinesHovered"] = 39] = "PlotLinesHovered"; + ImGuiCol[ImGuiCol["PlotHistogram"] = 40] = "PlotHistogram"; + ImGuiCol[ImGuiCol["PlotHistogramHovered"] = 41] = "PlotHistogramHovered"; + ImGuiCol[ImGuiCol["TextSelectedBg"] = 42] = "TextSelectedBg"; + ImGuiCol[ImGuiCol["DragDropTarget"] = 43] = "DragDropTarget"; + ImGuiCol[ImGuiCol["NavHighlight"] = 44] = "NavHighlight"; + ImGuiCol[ImGuiCol["NavWindowingHighlight"] = 45] = "NavWindowingHighlight"; + ImGuiCol[ImGuiCol["NavWindowingDimBg"] = 46] = "NavWindowingDimBg"; + ImGuiCol[ImGuiCol["ModalWindowDimBg"] = 47] = "ModalWindowDimBg"; + ImGuiCol[ImGuiCol["COUNT"] = 48] = "COUNT"; +})(ImGuiCol || (ImGuiCol = {})); +var ImGuiStyleVar; +(function (ImGuiStyleVar) { + // Enum name ......................// Member in ImGuiStyle structure (see ImGuiStyle for descriptions) + ImGuiStyleVar[ImGuiStyleVar["Alpha"] = 0] = "Alpha"; + ImGuiStyleVar[ImGuiStyleVar["WindowPadding"] = 1] = "WindowPadding"; + ImGuiStyleVar[ImGuiStyleVar["WindowRounding"] = 2] = "WindowRounding"; + ImGuiStyleVar[ImGuiStyleVar["WindowBorderSize"] = 3] = "WindowBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowMinSize"] = 4] = "WindowMinSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowTitleAlign"] = 5] = "WindowTitleAlign"; + // WindowMenuButtonPosition, // ImGuiDir WindowMenuButtonPosition + ImGuiStyleVar[ImGuiStyleVar["ChildRounding"] = 6] = "ChildRounding"; + ImGuiStyleVar[ImGuiStyleVar["ChildBorderSize"] = 7] = "ChildBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["PopupRounding"] = 8] = "PopupRounding"; + ImGuiStyleVar[ImGuiStyleVar["PopupBorderSize"] = 9] = "PopupBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["FramePadding"] = 10] = "FramePadding"; + ImGuiStyleVar[ImGuiStyleVar["FrameRounding"] = 11] = "FrameRounding"; + ImGuiStyleVar[ImGuiStyleVar["FrameBorderSize"] = 12] = "FrameBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["ItemSpacing"] = 13] = "ItemSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ItemInnerSpacing"] = 14] = "ItemInnerSpacing"; + ImGuiStyleVar[ImGuiStyleVar["IndentSpacing"] = 15] = "IndentSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarSize"] = 16] = "ScrollbarSize"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarRounding"] = 17] = "ScrollbarRounding"; + ImGuiStyleVar[ImGuiStyleVar["GrabMinSize"] = 18] = "GrabMinSize"; + ImGuiStyleVar[ImGuiStyleVar["GrabRounding"] = 19] = "GrabRounding"; + ImGuiStyleVar[ImGuiStyleVar["TabRounding"] = 20] = "TabRounding"; + ImGuiStyleVar[ImGuiStyleVar["ButtonTextAlign"] = 21] = "ButtonTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["SelectableTextAlign"] = 22] = "SelectableTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["Count_"] = 23] = "Count_"; + ImGuiStyleVar[ImGuiStyleVar["COUNT"] = 23] = "COUNT"; +})(ImGuiStyleVar || (ImGuiStyleVar = {})); +var ImGuiBackendFlags; +(function (ImGuiBackendFlags) { + ImGuiBackendFlags[ImGuiBackendFlags["None"] = 0] = "None"; + ImGuiBackendFlags[ImGuiBackendFlags["HasGamepad"] = 1] = "HasGamepad"; + ImGuiBackendFlags[ImGuiBackendFlags["HasMouseCursors"] = 2] = "HasMouseCursors"; + ImGuiBackendFlags[ImGuiBackendFlags["HasSetMousePos"] = 4] = "HasSetMousePos"; + ImGuiBackendFlags[ImGuiBackendFlags["RendererHasVtxOffset"] = 8] = "RendererHasVtxOffset"; +})(ImGuiBackendFlags || (ImGuiBackendFlags = {})); +var ImGuiColorEditFlags; +(function (ImGuiColorEditFlags) { + ImGuiColorEditFlags[ImGuiColorEditFlags["None"] = 0] = "None"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoAlpha"] = 2] = "NoAlpha"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoPicker"] = 4] = "NoPicker"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoOptions"] = 8] = "NoOptions"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSmallPreview"] = 16] = "NoSmallPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoInputs"] = 32] = "NoInputs"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoTooltip"] = 64] = "NoTooltip"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoLabel"] = 128] = "NoLabel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSidePreview"] = 256] = "NoSidePreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoDragDrop"] = 512] = "NoDragDrop"; + // User Options (right-click on widget to change some of them). You can set application defaults using SetColorEditOptions(). The idea is that you probably don't want to override them in most of your calls, let the user choose and/or call SetColorEditOptions() during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaBar"] = 65536] = "AlphaBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreview"] = 131072] = "AlphaPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreviewHalf"] = 262144] = "AlphaPreviewHalf"; + ImGuiColorEditFlags[ImGuiColorEditFlags["HDR"] = 524288] = "HDR"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayRGB"] = 1048576] = "DisplayRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHSV"] = 2097152] = "DisplayHSV"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHex"] = 4194304] = "DisplayHex"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Uint8"] = 8388608] = "Uint8"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Float"] = 16777216] = "Float"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueBar"] = 33554432] = "PickerHueBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueWheel"] = 67108864] = "PickerHueWheel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputRGB"] = 134217728] = "InputRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputHSV"] = 268435456] = "InputHSV"; + // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to + // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["_OptionsDefault"] = 177209344] = "_OptionsDefault"; + // [Internal] Masks + ImGuiColorEditFlags[ImGuiColorEditFlags["_DisplayMask"] = 7340032] = "_DisplayMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_DataTypeMask"] = 25165824] = "_DataTypeMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_PickerMask"] = 100663296] = "_PickerMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_InputMask"] = 402653184] = "_InputMask"; +})(ImGuiColorEditFlags || (ImGuiColorEditFlags = {})); +var ImGuiMouseCursor; +(function (ImGuiMouseCursor) { + ImGuiMouseCursor[ImGuiMouseCursor["None"] = -1] = "None"; + ImGuiMouseCursor[ImGuiMouseCursor["Arrow"] = 0] = "Arrow"; + ImGuiMouseCursor[ImGuiMouseCursor["TextInput"] = 1] = "TextInput"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeAll"] = 2] = "ResizeAll"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNS"] = 3] = "ResizeNS"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeEW"] = 4] = "ResizeEW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNESW"] = 5] = "ResizeNESW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNWSE"] = 6] = "ResizeNWSE"; + ImGuiMouseCursor[ImGuiMouseCursor["Hand"] = 7] = "Hand"; + ImGuiMouseCursor[ImGuiMouseCursor["Count_"] = 8] = "Count_"; + ImGuiMouseCursor[ImGuiMouseCursor["COUNT"] = 8] = "COUNT"; +})(ImGuiMouseCursor || (ImGuiMouseCursor = {})); +var ImGuiCond; +(function (ImGuiCond) { + ImGuiCond[ImGuiCond["Always"] = 1] = "Always"; + ImGuiCond[ImGuiCond["Once"] = 2] = "Once"; + ImGuiCond[ImGuiCond["FirstUseEver"] = 4] = "FirstUseEver"; + ImGuiCond[ImGuiCond["Appearing"] = 8] = "Appearing"; +})(ImGuiCond || (ImGuiCond = {})); +var ImDrawCornerFlags; +(function (ImDrawCornerFlags) { + ImDrawCornerFlags[ImDrawCornerFlags["TopLeft"] = 1] = "TopLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["TopRight"] = 2] = "TopRight"; + ImDrawCornerFlags[ImDrawCornerFlags["BotLeft"] = 4] = "BotLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["BotRight"] = 8] = "BotRight"; + ImDrawCornerFlags[ImDrawCornerFlags["Top"] = 3] = "Top"; + ImDrawCornerFlags[ImDrawCornerFlags["Bot"] = 12] = "Bot"; + ImDrawCornerFlags[ImDrawCornerFlags["Left"] = 5] = "Left"; + ImDrawCornerFlags[ImDrawCornerFlags["Right"] = 10] = "Right"; + ImDrawCornerFlags[ImDrawCornerFlags["All"] = 15] = "All"; +})(ImDrawCornerFlags || (ImDrawCornerFlags = {})); +var ImDrawListFlags; +(function (ImDrawListFlags) { + ImDrawListFlags[ImDrawListFlags["None"] = 0] = "None"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedLines"] = 1] = "AntiAliasedLines"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedFill"] = 2] = "AntiAliasedFill"; +})(ImDrawListFlags || (ImDrawListFlags = {})); +class ImVec2 { + constructor(x = 0.0, y = 0.0) { + this.x = x; + this.y = y; + } + Set(x, y) { + this.x = x; + this.y = y; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + return true; + } +} +ImVec2.ZERO = new ImVec2(0.0, 0.0); +ImVec2.UNIT = new ImVec2(1.0, 1.0); +ImVec2.UNIT_X = new ImVec2(1.0, 0.0); +ImVec2.UNIT_Y = new ImVec2(0.0, 1.0); +class ImVec4 { + constructor(x = 0.0, y = 0.0, z = 0.0, w = 1.0) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + } + Set(x, y, z, w) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + this.z = other.z; + this.w = other.w; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + if (this.z !== other.z) { + return false; + } + if (this.w !== other.w) { + return false; + } + return true; + } +} +ImVec4.ZERO = new ImVec4(0.0, 0.0, 0.0, 0.0); +ImVec4.UNIT = new ImVec4(1.0, 1.0, 1.0, 1.0); +ImVec4.UNIT_X = new ImVec4(1.0, 0.0, 0.0, 0.0); +ImVec4.UNIT_Y = new ImVec4(0.0, 1.0, 0.0, 0.0); +ImVec4.UNIT_Z = new ImVec4(0.0, 0.0, 1.0, 0.0); +ImVec4.UNIT_W = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.BLACK = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.WHITE = new ImVec4(1.0, 1.0, 1.0, 1.0); +//----------------------------------------------------------------------------- +// Helpers +//----------------------------------------------------------------------------- +// Lightweight std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug). +// Our implementation does NOT call C++ constructors/destructors. This is intentional and we do not require it. Do not use this class as a straight std::vector replacement in your code! +class ImVector extends Array { + constructor() { + super(...arguments); + this.Data = this; + // public: + // int Size; + // int Capacity; + // T* Data; + // typedef T value_type; + // typedef value_type* iterator; + // typedef const value_type* const_iterator; + // inline ImVector() { Size = Capacity = 0; Data = NULL; } + // inline ~ImVector() { if (Data) ImGui::MemFree(Data); } + // inline bool empty() const { return Size == 0; } + // inline int size() const { return Size; } + // inline int capacity() const { return Capacity; } + // inline value_type& operator[](int i) { IM_ASSERT(i < Size); return Data[i]; } + // inline const value_type& operator[](int i) const { IM_ASSERT(i < Size); return Data[i]; } + // inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } } + // inline iterator begin() { return Data; } + // inline const_iterator begin() const { return Data; } + // inline iterator end() { return Data + Size; } + // inline const_iterator end() const { return Data + Size; } + // inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; } + // inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; } + // inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; } + // inline int _grow_capacity(int size) const { int new_capacity = Capacity ? (Capacity + Capacity/2) : 8; return new_capacity > size ? new_capacity : size; } + // inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; } + // inline void resize(int new_size, const T& v){ if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) Data[n] = v; Size = new_size; } + // inline void reserve(int new_capacity) + // { + // if (new_capacity <= Capacity) + // return; + // T* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T)); + // if (Data) + // memcpy(new_data, Data, (size_t)Size * sizeof(T)); + // ImGui::MemFree(Data); + // Data = new_data; + // Capacity = new_capacity; + // } + // inline void push_back(const value_type& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); Data[Size++] = v; } + // inline void pop_back() { IM_ASSERT(Size > 0); Size--; } + // inline void push_front(const value_type& v) { if (Size == 0) push_back(v); else insert(Data, v); } + // inline iterator erase(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; } + // inline iterator erase(const_iterator it, const_iterator it_last){ IM_ASSERT(it >= Data && it < Data+Size && it_last > it && it_last <= Data+Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - count) * sizeof(value_type)); Size -= (int)count; return Data + off; } + // inline iterator erase_unsorted(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; if (it < Data+Size-1) memcpy(Data + off, Data + Size - 1, sizeof(value_type)); Size--; return Data + off; } + // inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= Data && it <= Data+Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; } + // inline bool contains(const value_type& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; } + } + get Size() { return this.length; } + empty() { return this.length === 0; } + clear() { this.length = 0; } + pop_back() { return this.pop(); } + push_back(value) { this.push(value); } +} +// Typically, 1 command = 1 GPU draw call (unless command is a callback) +// Pre 1.71 back-ends will typically ignore the VtxOffset/IdxOffset fields. When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset' +// is enabled, those fields allow us to render meshes larger than 64K vertices while keeping 16-bits indices. +class ImDrawCmd { + constructor(native) { + this.native = native; + // ImDrawCallback UserCallback; // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally. + this.UserCallback = null; // TODO + // void* UserCallbackData; // The draw callback code can access this. + this.UserCallbackData = null; // TODO + } + // unsigned int ElemCount; // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[]. + get ElemCount() { return this.native.ElemCount; } + // ImVec4 ClipRect; // Clipping rectangle (x1, y1, x2, y2) + get ClipRect() { return this.native.ClipRect; } + // ImTextureID TextureId; // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas. + get TextureId() { + return ImGuiContext.getTexture(this.native.TextureId); + } + // unsigned int VtxOffset; // Start offset in vertex buffer. Pre-1.71 or without ImGuiBackendFlags_RendererHasVtxOffset: always 0. With ImGuiBackendFlags_RendererHasVtxOffset: may be >0 to support meshes larger than 64K vertices with 16-bits indices. + get VtxOffset() { return this.native.VtxOffset; } + // unsigned int IdxOffset; // Start offset in index buffer. Always equal to sum of ElemCount drawn so far. + get IdxOffset() { return this.native.IdxOffset; } +} +// Vertex index +// (to allow large meshes with 16-bits indices: set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset in the renderer back-end) +// (to use 32-bits indices: override with '#define ImDrawIdx unsigned int' in imconfig.h) +// #ifndef ImDrawIdx +// typedef unsigned short ImDrawIdx; +// #endif +const ImDrawIdxSize = 2; // bind.ImDrawIdxSize; +// Vertex layout +// #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT +const ImDrawVertSize = 20; // bind.ImDrawVertSize; +const ImDrawVertPosOffset = 0; // bind.ImDrawVertPosOffset; +const ImDrawVertUVOffset = 8; // bind.ImDrawVertUVOffset; +const ImDrawVertColOffset = 16; // bind.ImDrawVertColOffset; +class ImDrawVert { + constructor(buffer, byteOffset = 0) { + this.pos = new Float32Array(buffer, byteOffset + bind.ImDrawVertPosOffset, 2); + this.uv = new Float32Array(buffer, byteOffset + bind.ImDrawVertUVOffset, 2); + this.col = new Uint32Array(buffer, byteOffset + bind.ImDrawVertColOffset, 1); + } +} +// Draw command list +// This is the low-level list of polygons that ImGui functions are filling. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering. +// Each ImGui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to access the current window draw list and draw custom primitives. +// You can interleave normal ImGui:: calls and adding primitives to the current draw list. +// All positions are generally in pixel coordinates (top-left at (0,0), bottom-right at io.DisplaySize), however you are totally free to apply whatever transformation matrix to want to the data (if you apply such transformation you'll want to apply it to ClipRect as well) +// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects. +class ImDrawList { + constructor(native) { + this.native = native; + } + IterateDrawCmds(callback) { + this.native.IterateDrawCmds((draw_cmd, ElemStart) => { + callback(new ImDrawCmd(draw_cmd), ElemStart); + }); + } + // This is what you have to render + // ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback. + // ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those + get IdxBuffer() { return this.native.IdxBuffer; } + // ImVector VtxBuffer; // Vertex buffer. + get VtxBuffer() { return this.native.VtxBuffer; } + // ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive. + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // [Internal, used while building lists] + // const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context) + // const char* _OwnerName; // Pointer to owner window's name for debugging + // unsigned int _VtxCurrentIdx; // [Internal] == VtxBuffer.Size + // ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImVector _ClipRectStack; // [Internal] + // ImVector _TextureIdStack; // [Internal] + // ImVector _Path; // [Internal] current path building + // int _ChannelsCurrent; // [Internal] current channel number (0) + // int _ChannelsCount; // [Internal] number of active channels (1+) + // ImVector _Channels; // [Internal] draw channels for columns API (not resized down so _ChannelsCount may be smaller than _Channels.Size) + // ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clear(); } + // ~ImDrawList() { ClearFreeMemory(); } + // IMGUI_API void PushClipRect(ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling) + PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect = false) { + this.native.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect); + } + // IMGUI_API void PushClipRectFullScreen(); + PushClipRectFullScreen() { this.native.PushClipRectFullScreen(); } + // IMGUI_API void PopClipRect(); + PopClipRect() { this.native.PopClipRect(); } + // IMGUI_API void PushTextureID(ImTextureID texture_id); + PushTextureID(texture_id) { + this.native.PushTextureID(ImGuiContext.setTexture(texture_id)); + } + // IMGUI_API void PopTextureID(); + PopTextureID() { this.native.PopTextureID(); } + // inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); } + GetClipRectMin(out = new ImVec2()) { + return this.native.GetClipRectMin(out); + } + // inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); } + GetClipRectMax(out = new ImVec2()) { + return this.native.GetClipRectMax(out); + } + // Primitives + // IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness = 1.0f); + AddLine(a, b, col, thickness = 1.0) { + this.native.AddLine(a, b, col, thickness); + } + // IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All, float thickness = 1.0f); // a: upper-left, b: lower-right, rounding_corners_flags: 4-bits corresponding to which corner to round + AddRect(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All, thickness = 1.0) { + this.native.AddRect(a, b, col, rounding, rounding_corners_flags, thickness); + } + // IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); // a: upper-left, b: lower-right + AddRectFilled(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { + this.native.AddRectFilled(a, b, col, rounding, rounding_corners_flags); + } + // IMGUI_API void AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left); + AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left) { + this.native.AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left); + } + // IMGUI_API void AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness = 1.0f); + AddQuad(a, b, c, d, col, thickness = 1.0) { + this.native.AddQuad(a, b, c, d, col, thickness); + } + // IMGUI_API void AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col); + AddQuadFilled(a, b, c, d, col) { + this.native.AddQuadFilled(a, b, c, d, col); + } + // IMGUI_API void AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness = 1.0f); + AddTriangle(a, b, c, col, thickness = 1.0) { + this.native.AddTriangle(a, b, c, col, thickness); + } + // IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col); + AddTriangleFilled(a, b, c, col) { + this.native.AddTriangleFilled(a, b, c, col); + } + // IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f); + AddCircle(centre, radius, col, num_segments = 12, thickness = 1.0) { + this.native.AddCircle(centre, radius, col, num_segments, thickness); + } + // IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12); + AddCircleFilled(centre, radius, col, num_segments = 12) { + this.native.AddCircleFilled(centre, radius, col, num_segments); + } + AddText(...args) { + if (args[0] instanceof ImFont) { + const font = args[0]; + const font_size = args[1]; + const pos = args[2]; + const col = args[3]; + const text_begin = args[4]; + const text_end = args[5] || null; + const wrap_width = args[6] = 0.0; + const cpu_fine_clip_rect = args[7] || null; + this.native.AddText_B(font.native, font_size, pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin, wrap_width, cpu_fine_clip_rect); + } + else { + const pos = args[0]; + const col = args[1]; + const text_begin = args[2]; + const text_end = args[3] || null; + this.native.AddText_A(pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin); + } + } + // IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,1), ImU32 col = 0xFFFFFFFF); + AddImage(user_texture_id, a, b, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT, col = 0xFFFFFFFF) { + this.native.AddImage(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col); + } + // IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,0), const ImVec2& uv_c = ImVec2(1,1), const ImVec2& uv_d = ImVec2(0,1), ImU32 col = 0xFFFFFFFF); + AddImageQuad(user_texture_id, a, b, c, d, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT_X, uv_c = ImVec2.UNIT, uv_d = ImVec2.UNIT_Y, col = 0xFFFFFFFF) { + this.native.AddImageQuad(ImGuiContext.setTexture(user_texture_id), a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); + } + // IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col, float rounding, int rounding_corners = ImDrawCornerFlags_All); + AddImageRounded(user_texture_id, a, b, uv_a, uv_b, col, rounding, rounding_corners = ImDrawCornerFlags.All) { + this.native.AddImageRounded(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col, rounding, rounding_corners); + } + // IMGUI_API void AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness); + AddPolyline(points, num_points, col, closed, thickness) { + this.native.AddPolyline(points, num_points, col, closed, thickness); + } + // IMGUI_API void AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col); + AddConvexPolyFilled(points, num_points, col) { + this.native.AddConvexPolyFilled(points, num_points, col); + } + // IMGUI_API void AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments = 0); + AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness = 1.0, num_segments = 0) { + this.native.AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments); + } + // Stateful path API, add points then finish with PathFill() or PathStroke() + // inline void PathClear() { _Path.resize(0); } + PathClear() { this.native.PathClear(); } + // inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); } + PathLineTo(pos) { this.native.PathLineTo(pos); } + // inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path[_Path.Size-1], &pos, 8) != 0) _Path.push_back(pos); } + PathLineToMergeDuplicate(pos) { this.native.PathLineToMergeDuplicate(pos); } + // inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); PathClear(); } + PathFillConvex(col) { this.native.PathFillConvex(col); } + // inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness); PathClear(); } + PathStroke(col, closed, thickness = 1.0) { this.native.PathStroke(col, closed, thickness); } + // IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_segments = 10); + PathArcTo(centre, radius, a_min, a_max, num_segments = 10) { this.native.PathArcTo(centre, radius, a_min, a_max, num_segments); } + // IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle + PathArcToFast(centre, radius, a_min_of_12, a_max_of_12) { this.native.PathArcToFast(centre, radius, a_min_of_12, a_max_of_12); } + // IMGUI_API void PathBezierCurveTo(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, int num_segments = 0); + PathBezierCurveTo(p1, p2, p3, num_segments = 0) { this.native.PathBezierCurveTo(p1, p2, p3, num_segments); } + // IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); + PathRect(rect_min, rect_max, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { this.native.PathRect(rect_min, rect_max, rounding, rounding_corners_flags); } + // Channels + // - Use to simulate layers. By switching channels to can render out-of-order (e.g. submit foreground primitives before background primitives) + // - Use to minimize draw calls (e.g. if going back-and-forth between multiple non-overlapping clipping rectangles, prefer to append into separate channels then merge at the end) + // IMGUI_API void ChannelsSplit(int channels_count); + ChannelsSplit(channels_count) { this.native.ChannelsSplit(channels_count); } + // IMGUI_API void ChannelsMerge(); + ChannelsMerge() { this.native.ChannelsMerge(); } + // IMGUI_API void ChannelsSetCurrent(int channel_index); + ChannelsSetCurrent(channel_index) { this.native.ChannelsSetCurrent(channel_index); } + // Advanced + // IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles. + AddCallback(callback, callback_data) { + const _callback = (parent_list, draw_cmd) => { + callback(new ImDrawList(parent_list), new ImDrawCmd(draw_cmd)); + }; + this.native.AddCallback(_callback, callback_data); + } + // IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible + AddDrawCmd() { this.native.AddDrawCmd(); } + // Internal helpers + // NB: all primitives needs to be reserved via PrimReserve() beforehand! + // IMGUI_API void Clear(); + Clear() { this.native.Clear(); } + // IMGUI_API void ClearFreeMemory(); + ClearFreeMemory() { this.native.ClearFreeMemory(); } + // IMGUI_API void PrimReserve(int idx_count, int vtx_count); + PrimReserve(idx_count, vtx_count) { this.native.PrimReserve(idx_count, vtx_count); } + // IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles) + PrimRect(a, b, col) { this.native.PrimRect(a, b, col); } + // IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col); + PrimRectUV(a, b, uv_a, uv_b, col) { this.native.PrimRectUV(a, b, uv_a, uv_b, col); } + // IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col); + PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col) { this.native.PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); } + // inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; } + PrimWriteVtx(pos, uv, col) { this.native.PrimWriteVtx(pos, uv, col); } + // inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; } + PrimWriteIdx(idx) { this.native.PrimWriteIdx(idx); } + // inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); } + PrimVtx(pos, uv, col) { this.native.PrimVtx(pos, uv, col); } + // IMGUI_API void UpdateClipRect(); + UpdateClipRect() { this.native.UpdateClipRect(); } + // IMGUI_API void UpdateTextureID(); + UpdateTextureID() { this.native.UpdateTextureID(); } +} +// All draw data to render an ImGui frame +class ImDrawData { + constructor(native) { + this.native = native; + } + IterateDrawLists(callback) { + this.native.IterateDrawLists((draw_list) => { + callback(new ImDrawList(draw_list)); + }); + } + // bool Valid; // Only valid after Render() is called and before the next NewFrame() is called. + get Valid() { return this.native.Valid; } + // ImDrawList** CmdLists; + // int CmdListsCount; + get CmdListsCount() { return this.native.CmdListsCount; } + // int TotalIdxCount; // For convenience, sum of all cmd_lists idx_buffer.Size + get TotalIdxCount() { return this.native.TotalIdxCount; } + // int TotalVtxCount; // For convenience, sum of all cmd_lists vtx_buffer.Size + get TotalVtxCount() { return this.native.TotalVtxCount; } + // ImVec2 DisplayPos; // Upper-left position of the viewport to render (== upper-left of the orthogonal projection matrix to use) + get DisplayPos() { return this.native.DisplayPos; } + // ImVec2 DisplaySize; // Size of the viewport to render (== io.DisplaySize for the main viewport) (DisplayPos + DisplaySize == lower-right of the orthogonal projection matrix to use) + get DisplaySize() { return this.native.DisplaySize; } + // ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display. + get FramebufferScale() { return this.native.FramebufferScale; } + // Functions + // ImDrawData() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCount = 0; } + // IMGUI_API void DeIndexAllBuffers(); // For backward compatibility or convenience: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering! + DeIndexAllBuffers() { this.native.DeIndexAllBuffers(); } + // IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than ImGui expects, or if there is a difference between your window resolution and framebuffer resolution. + ScaleClipRects(fb_scale) { + this.native.ScaleClipRects(fb_scale); + } +} +class script_ImFontConfig { + constructor() { + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + this.FontData = null; + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + this.FontDataOwnedByAtlas = true; + // int FontNo; // 0 // Index of font within TTF/OTF file + this.FontNo = 0; + // float SizePixels; // // Size in pixels for rasterizer. + this.SizePixels = 0; + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + this.OversampleH = 3; + this.OversampleV = 1; + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + this.PixelSnapH = false; + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + this.GlyphExtraSpacing = new ImVec2(0, 0); + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + this.GlyphOffset = new ImVec2(0, 0); + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + this.GlyphRanges = null; + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + this.GlyphMinAdvanceX = 0; + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + this.GlyphMaxAdvanceX = Number.MAX_VALUE; + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + this.MergeMode = false; + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + this.RasterizerFlags = 0; + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + this.RasterizerMultiply = 1.0; + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + this.Name = ""; + // ImFont* DstFont; + this.DstFont = null; + // IMGUI_API ImFontConfig(); + } +} +class ImFontConfig { + constructor(internal = new script_ImFontConfig()) { + this.internal = internal; + } + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + get FontData() { return this.internal.FontData; } + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + get FontDataOwnedByAtlas() { return this.internal.FontDataOwnedByAtlas; } + // int FontNo; // 0 // Index of font within TTF/OTF file + get FontNo() { return this.internal.FontNo; } + // float SizePixels; // // Size in pixels for rasterizer. + get SizePixels() { return this.internal.SizePixels; } + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + get OversampleH() { return this.internal.OversampleH; } + get OversampleV() { return this.internal.OversampleV; } + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + get PixelSnapH() { return this.internal.PixelSnapH; } + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + get GlyphExtraSpacing() { return this.internal.GlyphExtraSpacing; } + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + get GlyphOffset() { return this.internal.GlyphOffset; } + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + get GlyphRanges() { return this.internal.GlyphRanges; } + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + get GlyphMinAdvanceX() { return this.internal.GlyphMinAdvanceX; } + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + get GlyphMaxAdvanceX() { return this.internal.GlyphMaxAdvanceX; } + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + get MergeMode() { return this.internal.MergeMode; } + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + get RasterizerFlags() { return this.internal.RasterizerFlags; } + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + get RasterizerMultiply() { return this.internal.RasterizerMultiply; } + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + get Name() { return this.internal.Name; } + set Name(value) { this.internal.Name = value; } + // ImFont* DstFont; + get DstFont() { + const font = this.internal.DstFont; + return font && new ImFont(font); + } +} +// struct ImFontGlyph +class script_ImFontGlyph { + constructor() { + // ImWchar Codepoint; // 0x0000..0xFFFF + this.Codepoint = 0; + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + this.AdvanceX = 0.0; + // float X0, Y0, X1, Y1; // Glyph corners + this.X0 = 0.0; + this.Y0 = 0.0; + this.X1 = 1.0; + this.Y1 = 1.0; + // float U0, V0, U1, V1; // Texture coordinates + this.U0 = 0.0; + this.V0 = 0.0; + this.U1 = 1.0; + this.V1 = 1.0; + } +} +class ImFontGlyph { + constructor(internal = new script_ImFontGlyph()) { + this.internal = internal; + } + // ImWchar Codepoint; // 0x0000..0xFFFF + get Codepoint() { return this.internal.Codepoint; } + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + get AdvanceX() { return this.internal.AdvanceX; } + ; + // float X0, Y0, X1, Y1; // Glyph corners + get X0() { return this.internal.X0; } + ; + get Y0() { return this.internal.Y0; } + ; + get X1() { return this.internal.X1; } + ; + get Y1() { return this.internal.Y1; } + ; + // float U0, V0, U1, V1; // Texture coordinates + get U0() { return this.internal.U0; } + ; + get V0() { return this.internal.V0; } + ; + get U1() { return this.internal.U1; } + ; + get V1() { return this.internal.V1; } + ; +} +var ImFontAtlasFlags; +(function (ImFontAtlasFlags) { + ImFontAtlasFlags[ImFontAtlasFlags["None"] = 0] = "None"; + ImFontAtlasFlags[ImFontAtlasFlags["NoPowerOfTwoHeight"] = 1] = "NoPowerOfTwoHeight"; + ImFontAtlasFlags[ImFontAtlasFlags["NoMouseCursors"] = 2] = "NoMouseCursors"; +})(ImFontAtlasFlags || (ImFontAtlasFlags = {})); +// Load and rasterize multiple TTF/OTF fonts into a same texture. +// Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering. +// We also add custom graphic data into the texture that serves for ImGui. +// 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you. +// 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data. +// 3. Upload the pixels data into a texture within your graphics system. +// 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture. +// IMPORTANT: If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the ImFont is build (when calling GetTextData*** or Build()). We only copy the pointer, not the data. +class ImFontAtlas { + constructor(native) { + this.native = native; + } + // IMGUI_API ImFontAtlas(); + // IMGUI_API ~ImFontAtlas(); + // IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg); + // IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL); + AddFontDefault(font_cfg = null) { + return new ImFont(this.native.AddFontDefault(font_cfg)); + } + // IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); + // IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after Build(). Set font_cfg->FontDataOwnedByAtlas to false to keep ownership. + AddFontFromMemoryTTF(data, size_pixels, font_cfg = null, glyph_ranges = null) { + return new ImFont(this.native.AddFontFromMemoryTTF(new Uint8Array(data), size_pixels, font_cfg && font_cfg.internal, glyph_ranges)); + } + // IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp. + // IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter. + // IMGUI_API void ClearTexData(); // Clear the CPU-side texture data. Saves RAM once the texture has been copied to graphics memory. + ClearTexData() { this.native.ClearTexData(); } + // IMGUI_API void ClearInputData(); // Clear the input TTF data (inc sizes, glyph ranges) + ClearInputData() { this.native.ClearInputData(); } + // IMGUI_API void ClearFonts(); // Clear the ImGui-side font data (glyphs storage, UV coordinates) + ClearFonts() { this.native.ClearFonts(); } + // IMGUI_API void Clear(); // Clear all + Clear() { this.native.Clear(); } + // Build atlas, retrieve pixel data. + // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID(). + // RGBA32 format is provided for convenience and compatibility, but note that unless you use CustomRect to draw color data, the RGB pixels emitted from Fonts will all be white (~75% of waste). + // Pitch = Width * BytesPerPixels + // IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions. + Build() { return this.native.Build(); } + // IMGUI_API bool IsBuilt() { return Fonts.Size > 0 && (TexPixelsAlpha8 != NULL || TexPixelsRGBA32 != NULL); } + IsBuilt() { return this.native.IsBuilt(); } + // IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel + GetTexDataAsAlpha8() { + return this.native.GetTexDataAsAlpha8(); + } + // IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel + GetTexDataAsRGBA32() { + return this.native.GetTexDataAsRGBA32(); + } + // void SetTexID(ImTextureID id) { TexID = id; } + SetTexID(id) { this.TexID = id; } + //------------------------------------------- + // Glyph Ranges + //------------------------------------------- + // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list) + // NB: Make sure that your string are UTF-8 and NOT in your local code page. In C++11, you can create UTF-8 string literal using the u8"Hello world" syntax. See FAQ for details. + // IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin + GetGlyphRangesDefault() { return this.native.GetGlyphRangesDefault(); } + // IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters + GetGlyphRangesKorean() { return this.native.GetGlyphRangesKorean(); } + // IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs + GetGlyphRangesJapanese() { return this.native.GetGlyphRangesJapanese(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs + GetGlyphRangesChineseFull() { return this.native.GetGlyphRangesChineseFull(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese + GetGlyphRangesChineseSimplifiedCommon() { return this.native.GetGlyphRangesChineseSimplifiedCommon(); } + // IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters + GetGlyphRangesCyrillic() { return this.native.GetGlyphRangesCyrillic(); } + // IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters + GetGlyphRangesThai() { return this.native.GetGlyphRangesThai(); } + // IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters + GetGlyphRangesVietnamese() { return this.native.GetGlyphRangesVietnamese(); } + // Helpers to build glyph ranges from text data. Feed your application strings/characters to it then call BuildRanges(). + // struct GlyphRangesBuilder + // { + // ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used) + // GlyphRangesBuilder() { UsedChars.resize(0x10000 / 8); memset(UsedChars.Data, 0, 0x10000 / 8); } + // bool GetBit(int n) const { return (UsedChars[n >> 3] & (1 << (n & 7))) != 0; } + // void SetBit(int n) { UsedChars[n >> 3] |= 1 << (n & 7); } // Set bit 'c' in the array + // void AddChar(ImWchar c) { SetBit(c); } // Add character + // IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added) + // IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault) to force add all of ASCII/Latin+Ext + // IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges + // }; + //------------------------------------------- + // Custom Rectangles/Glyphs API + //------------------------------------------- + // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. After calling Build(), you can query the rectangle position and render your pixels. + // You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs. + // struct CustomRect + // { + // unsigned int ID; // Input // User ID. Use <0x10000 to map into a font glyph, >=0x10000 for other/internal/custom texture data. + // unsigned short Width, Height; // Input // Desired rectangle dimension + // unsigned short X, Y; // Output // Packed position in Atlas + // float GlyphAdvanceX; // Input // For custom font glyphs only (ID<0x10000): glyph xadvance + // ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph display offset + // ImFont* Font; // Input // For custom font glyphs only (ID<0x10000): target font + // CustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); Font = NULL; } + // bool IsPacked() const { return X != 0xFFFF; } + // }; + // IMGUI_API int AddCustomRectRegular(unsigned int id, int width, int height); // Id needs to be >= 0x10000. Id >= 0x80000000 are reserved for ImGui and ImDrawList + // IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0,0)); // Id needs to be < 0x10000 to register a rectangle to map into a specific font. + // IMGUI_API void CalcCustomRectUV(const CustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max); + // const CustomRect* GetCustomRectByIndex(int index) const { if (index < 0) return NULL; return &CustomRects[index]; } + //------------------------------------------- + // Members + //------------------------------------------- + // bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert. + get Locked() { return this.native.Locked; } + set Locked(value) { this.native.Locked = value; } + // ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_) + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure. + get TexID() { + return ImGuiContext.getTexture(this.native.TexID); + } + set TexID(value) { + this.native.TexID = ImGuiContext.setTexture(value); + } + // int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height. + get TexDesiredWidth() { return this.native.TexDesiredWidth; } + set TexDesiredWidth(value) { this.native.TexDesiredWidth = value; } + // int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1. + get TexGlyphPadding() { return this.native.TexGlyphPadding; } + set TexGlyphPadding(value) { this.native.TexGlyphPadding = value; } + // [Internal] + // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you. + // unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight + // unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4 + // int TexWidth; // Texture width calculated during Build(). + get TexWidth() { return this.native.TexWidth; } + // int TexHeight; // Texture height calculated during Build(). + get TexHeight() { return this.native.TexHeight; } + // ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight) + get TexUvScale() { return this.native.TexUvScale; } + // ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel + get TexUvWhitePixel() { return this.native.TexUvWhitePixel; } + // ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font. + get Fonts() { + const fonts = new ImVector(); + this.native.IterateFonts((font) => { + fonts.push(new ImFont(font)); + }); + return fonts; + } +} +// Font runtime data and rendering +// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32(). +class ImFont { + constructor(native) { + this.native = native; + } + // Members: Hot ~62/78 bytes + // float FontSize; // // Height of characters, set during loading (don't change after loading) + get FontSize() { return this.native.FontSize; } + // float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale() + get Scale() { return this.native.Scale; } + set Scale(value) { this.native.Scale = value; } + // ImVec2 DisplayOffset; // = (0.f,1.f) // Offset font rendering by xx pixels + get DisplayOffset() { return this.native.DisplayOffset; } + // ImVector Glyphs; // // All glyphs. + get Glyphs() { + const glyphs = new ImVector(); + this.native.IterateGlyphs((glyph) => { + glyphs.push(new ImFontGlyph(glyph)); // TODO: wrap native + }); + return glyphs; + } + // ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI). + // get IndexAdvanceX(): any { return this.native.IndexAdvanceX; } + // ImVector IndexLookup; // // Sparse. Index glyphs by Unicode code-point. + // get IndexLookup(): any { return this.native.IndexLookup; } + // const ImFontGlyph* FallbackGlyph; // == FindGlyph(FontFallbackChar) + get FallbackGlyph() { + const glyph = this.native.FallbackGlyph; + return glyph && new ImFontGlyph(glyph); + } + set FallbackGlyph(value) { + this.native.FallbackGlyph = value && value.internal; + } + // float FallbackAdvanceX; // == FallbackGlyph->AdvanceX + get FallbackAdvanceX() { return this.native.FallbackAdvanceX; } + // ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found. Only set via SetFallbackChar() + get FallbackChar() { return this.native.FallbackChar; } + // Members: Cold ~18/26 bytes + // short ConfigDataCount; // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont. + get ConfigDataCount() { return this.ConfigData.length; } + // ImFontConfig* ConfigData; // // Pointer within ContainerAtlas->ConfigData + get ConfigData() { + const cfg_data = []; + this.native.IterateConfigData((cfg) => { + cfg_data.push(new ImFontConfig(cfg)); + }); + return cfg_data; + } + // ImFontAtlas* ContainerAtlas; // // What we has been loaded into + get ContainerAtlas() { return null; } + // float Ascent, Descent; // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize] + get Ascent() { return this.native.Ascent; } + get Descent() { return this.native.Descent; } + // int MetricsTotalSurface;// // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs) + get MetricsTotalSurface() { return this.native.MetricsTotalSurface; } + // Methods + // IMGUI_API ImFont(); + // IMGUI_API ~ImFont(); + // IMGUI_API void ClearOutputData(); + ClearOutputData() { return this.native.ClearOutputData(); } + // IMGUI_API void BuildLookupTable(); + BuildLookupTable() { return this.native.BuildLookupTable(); } + // IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const; + FindGlyph(c) { + const glyph = this.native.FindGlyph(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const; + FindGlyphNoFallback(c) { + const glyph = this.native.FindGlyphNoFallback(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API void SetFallbackChar(ImWchar c); + SetFallbackChar(c) { return this.native.SetFallbackChar(c); } + // float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; } + GetCharAdvance(c) { return this.native.GetCharAdvance(c); } + // bool IsLoaded() const { return ContainerAtlas != NULL; } + IsLoaded() { return this.native.IsLoaded(); } + // const char* GetDebugName() const { return ConfigData ? ConfigData->Name : ""; } + GetDebugName() { return this.native.GetDebugName(); } + // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable. + // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable. + // IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8 + CalcTextSizeA(size, max_width, wrap_width, text_begin, text_end = null, remaining = null) { + return this.native.CalcTextSizeA(size, max_width, wrap_width, text_end !== null ? text_begin.substring(0, text_end) : text_begin, remaining, new ImVec2()); + } + // IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const; + CalcWordWrapPositionA(scale, text, text_end = null, wrap_width) { + return this.native.CalcWordWrapPositionA(scale, text_end !== null ? text.substring(0, text_end) : text, wrap_width); + } + // IMGUI_API void RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, unsigned short c) const; + RenderChar(draw_list, size, pos, col, c) { + this.native.RenderChar(draw_list.native, size, pos, col, c); + } + // IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const; + RenderText(draw_list, size, pos, col, clip_rect, text_begin, text_end = null, wrap_width = 0.0, cpu_fine_clip = false) { } +} +// This is where your app communicate with Dear ImGui. Access via ImGui::GetIO(). +// Read 'Programmer guide' section in .cpp file for general usage. +class ImGuiIO { + constructor(native) { + this.native = native; + // int KeyMap[ImGuiKey_COUNT]; // // Map of indices into the KeysDown[512] entries array + this.KeyMap = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiKey.COUNT; + } + return this.native._getAt_KeyMap(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeyMap(Number(key), value); + }, + }); + // bool MouseDown[5]; // Mouse buttons: left, right, middle + extras. ImGui itself mostly only uses left button (BeginPopupContext** are using right button). Others buttons allows us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API. + this.MouseDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_MouseDown(Number(key), value); + }, + }); + // bool KeysDown[512]; // Keyboard keys that are pressed (in whatever storage order you naturally have access to keyboard data) + this.KeysDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeysDown(Number(key), value); + }, + }); + // float NavInputs[ImGuiNavInput_COUNT]; // Gamepad inputs (keyboard keys will be auto-mapped and be written here by ImGui::NewFrame) + this.NavInputs = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputs(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_NavInputs(Number(key), value); + }, + }); + //------------------------------------------------------------------ + // [Internal] ImGui will maintain those fields. Forward compatibility not guaranteed! + //------------------------------------------------------------------ + // ImVec2 MousePosPrev; // Previous mouse position temporary storage (nb: not for public use, set to MousePos in NewFrame()) + // ImVec2 MouseClickedPos[5]; // Position at time of clicking + this.MouseClickedPos = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseClickedPos(Number(key)); + }, + }); + // float MouseClickedTime[5]; // Time of last click (used to figure out double-click) + // bool MouseClicked[5]; // Mouse button went from !Down to Down + // bool MouseDoubleClicked[5]; // Has mouse button been double-clicked? + // bool MouseReleased[5]; // Mouse button went from Down to !Down + // bool MouseDownOwned[5]; // Track if button was clicked inside a window. We don't request mouse capture from the application if click started outside ImGui bounds. + // float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked) + this.MouseDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDownDuration(Number(key)); + }, + }); + // float MouseDownDurationPrev[5]; // Previous time the mouse button has been down + // ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point + // float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point + // float KeysDownDuration[512]; // Duration the keyboard key has been down (0.0f == just pressed) + this.KeysDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDownDuration(Number(key)); + }, + }); + // float KeysDownDurationPrev[512]; // Previous duration the key has been down + // float NavInputsDownDuration[ImGuiNavInput_COUNT]; + this.NavInputsDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputsDownDuration(Number(key)); + }, + }); + } + //------------------------------------------------------------------ + // Settings (fill once) // Default value: + //------------------------------------------------------------------ + // ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc. + get ConfigFlags() { return this.native.ConfigFlags; } + set ConfigFlags(value) { this.native.ConfigFlags = value; } + // ImGuiBackendFlags BackendFlags; // = 0 // Set ImGuiBackendFlags_ enum. Set by imgui_impl_xxx files or custom back-end to communicate features supported by the back-end. + get BackendFlags() { return this.native.BackendFlags; } + set BackendFlags(value) { this.native.BackendFlags = value; } + // ImVec2 DisplaySize; // // Display size, in pixels. For clamping windows positions. + get DisplaySize() { return this.native.DisplaySize; } + // float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds. + get DeltaTime() { return this.native.DeltaTime; } + set DeltaTime(value) { this.native.DeltaTime = value; } + // float IniSavingRate; // = 5.0f // Maximum time between saving positions/sizes to .ini file, in seconds. + get IniSavingRate() { return this.native.IniSavingRate; } + set IniSavingRate(value) { this.native.IniSavingRate = value; } + // const char* IniFilename; // = "imgui.ini" // Path to .ini file. NULL to disable .ini saving. + get IniFilename() { return this.native.IniFilename; } + set IniFilename(value) { this.native.IniFilename = value; } + // const char* LogFilename; // = "imgui_log.txt" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified). + get LogFilename() { return this.native.LogFilename; } + set LogFilename(value) { this.native.LogFilename = value; } + // float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds. + get MouseDoubleClickTime() { return this.native.MouseDoubleClickTime; } + set MouseDoubleClickTime(value) { this.native.MouseDoubleClickTime = value; } + // float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels. + get MouseDoubleClickMaxDist() { return this.native.MouseDoubleClickMaxDist; } + set MouseDoubleClickMaxDist(value) { this.native.MouseDoubleClickMaxDist = value; } + // float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging + get MouseDragThreshold() { return this.native.MouseDragThreshold; } + set MouseDragThreshold(value) { this.native.MouseDragThreshold = value; } + // float KeyRepeatDelay; // = 0.250f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.). + get KeyRepeatDelay() { return this.native.KeyRepeatDelay; } + set KeyRepeatDelay(value) { this.native.KeyRepeatDelay = value; } + // float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds. + get KeyRepeatRate() { return this.native.KeyRepeatRate; } + set KeyRepeatRate(value) { this.native.KeyRepeatRate = value; } + // void* UserData; // = NULL // Store your own data for retrieval by callbacks. + get UserData() { return this.native.UserData; } + set UserData(value) { this.native.UserData = value; } + // ImFontAtlas* Fonts; // // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array. + get Fonts() { return new ImFontAtlas(this.native.Fonts); } + // float FontGlobalScale; // = 1.0f // Global scale all fonts + get FontGlobalScale() { return this.native.FontGlobalScale; } + set FontGlobalScale(value) { this.native.FontGlobalScale = value; } + // bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel. + get FontAllowUserScaling() { return this.native.FontAllowUserScaling; } + set FontAllowUserScaling(value) { this.native.FontAllowUserScaling = value; } + // ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0]. + get FontDefault() { + const font = this.native.FontDefault; + return (font === null) ? null : new ImFont(font); + } + set FontDefault(value) { + this.native.FontDefault = value && value.native; + } + // ImVec2 DisplayFramebufferScale; // = (1.0f,1.0f) // For retina display or other situations where window coordinates are different from framebuffer coordinates. User storage only, presently not used by ImGui. + get DisplayFramebufferScale() { return this.native.DisplayFramebufferScale; } + // Miscellaneous configuration options + // bool OptMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl + get ConfigMacOSXBehaviors() { return this.native.ConfigMacOSXBehaviors; } + set ConfigMacOSXBehaviors(value) { this.native.ConfigMacOSXBehaviors = value; } + // bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor, for users who consider it annoying. + get ConfigInputTextCursorBlink() { return this.native.ConfigInputTextCursorBlink; } + set ConfigInputTextCursorBlink(value) { this.native.ConfigInputTextCursorBlink = value; } + // bool ConfigWindowsResizeFromEdges; // = false // [BETA] Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be the ImGuiWindowFlags_ResizeFromAnySide flag) + get ConfigWindowsResizeFromEdges() { return this.native.ConfigWindowsResizeFromEdges; } + set ConfigWindowsResizeFromEdges(value) { this.native.ConfigWindowsResizeFromEdges = value; } + // bool ConfigWindowsMoveFromTitleBarOnly;// = false // [BETA] Set to true to only allow moving windows when clicked+dragged from the title bar. Windows without a title bar are not affected. + get ConfigWindowsMoveFromTitleBarOnly() { return this.native.ConfigWindowsMoveFromTitleBarOnly; } + set ConfigWindowsMoveFromTitleBarOnly(value) { this.native.ConfigWindowsMoveFromTitleBarOnly = value; } + //------------------------------------------------------------------ + // Settings (User Functions) + //------------------------------------------------------------------ + // Optional: Platform/Renderer back-end name (informational only! will be displayed in About Window) + User data for back-end/wrappers to store their own stuff. + // const char* BackendPlatformName; // = NULL + get BackendPlatformName() { return this.native.BackendPlatformName; } + set BackendPlatformName(value) { this.native.BackendPlatformName = value; } + // const char* BackendRendererName; // = NULL + get BackendRendererName() { return this.native.BackendRendererName; } + set BackendRendererName(value) { this.native.BackendRendererName = value; } + // void* BackendPlatformUserData; // = NULL + get BackendPlatformUserData() { return this.native.BackendPlatformUserData; } + set BackendPlatformUserData(value) { this.native.BackendPlatformUserData = value; } + // void* BackendRendererUserData; // = NULL + get BackendRendererUserData() { return this.native.BackendRendererUserData; } + set BackendRendererUserData(value) { this.native.BackendRendererUserData = value; } + // void* BackendLanguageUserData; // = NULL + get BackendLanguageUserData() { return this.native.BackendLanguageUserData; } + set BackendLanguageUserData(value) { this.native.BackendLanguageUserData = value; } + // Optional: access OS clipboard + // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures) + // const char* (*GetClipboardTextFn)(void* user_data); + get GetClipboardTextFn() { return this.native.GetClipboardTextFn; } + set GetClipboardTextFn(value) { this.native.GetClipboardTextFn = value; } + // void (*SetClipboardTextFn)(void* user_data, const char* text); + get SetClipboardTextFn() { return this.native.SetClipboardTextFn; } + set SetClipboardTextFn(value) { this.native.SetClipboardTextFn = value; } + // void* ClipboardUserData; + get ClipboardUserData() { return this.native.ClipboardUserData; } + set ClipboardUserData(value) { this.native.ClipboardUserData = value; } + // Optional: override memory allocations. MemFreeFn() may be called with a NULL pointer. + // (default to posix malloc/free) + // void* (*MemAllocFn)(size_t sz); + // void (*MemFreeFn)(void* ptr); + // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME in Windows) + // (default to use native imm32 api on Windows) + // void (*ImeSetInputScreenPosFn)(int x, int y); + // void* ImeWindowHandle; // (Windows) Set this to your HWND to get automatic IME cursor positioning. + //------------------------------------------------------------------ + // Input - Fill before calling NewFrame() + //------------------------------------------------------------------ + // ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX,-FLT_MAX) if mouse is unavailable (on another screen, etc.) + get MousePos() { return this.native.MousePos; } + // float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text. + get MouseWheel() { return this.native.MouseWheel; } + set MouseWheel(value) { this.native.MouseWheel = value; } + // float MouseWheelH; // Mouse wheel (Horizontal). Most users don't have a mouse with an horizontal wheel, may not be filled by all back-ends. + get MouseWheelH() { return this.native.MouseWheelH; } + set MouseWheelH(value) { this.native.MouseWheelH = value; } + // bool MouseDrawCursor; // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor). + get MouseDrawCursor() { return this.native.MouseDrawCursor; } + set MouseDrawCursor(value) { this.native.MouseDrawCursor = value; } + // bool KeyCtrl; // Keyboard modifier pressed: Control + get KeyCtrl() { return this.native.KeyCtrl; } + set KeyCtrl(value) { this.native.KeyCtrl = value; } + // bool KeyShift; // Keyboard modifier pressed: Shift + get KeyShift() { return this.native.KeyShift; } + set KeyShift(value) { this.native.KeyShift = value; } + // bool KeyAlt; // Keyboard modifier pressed: Alt + get KeyAlt() { return this.native.KeyAlt; } + set KeyAlt(value) { this.native.KeyAlt = value; } + // bool KeySuper; // Keyboard modifier pressed: Cmd/Super/Windows + get KeySuper() { return this.native.KeySuper; } + set KeySuper(value) { this.native.KeySuper = value; } + // Functions + // IMGUI_API void AddInputCharacter(ImWchar c); // Add new character into InputCharacters[] + AddInputCharacter(c) { this.native.AddInputCharacter(c); } + // IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Add new characters into InputCharacters[] from an UTF-8 string + AddInputCharactersUTF8(utf8_chars) { this.native.AddInputCharactersUTF8(utf8_chars); } + // inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Clear the text input buffer manually + ClearInputCharacters() { this.native.ClearInputCharacters(); } + //------------------------------------------------------------------ + // Output - Retrieve after calling NewFrame() + //------------------------------------------------------------------ + // bool WantCaptureMouse; // When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. This is set by ImGui when it wants to use your mouse (e.g. unclicked mouse is hovering a window, or a widget is active). + get WantCaptureMouse() { return this.native.WantCaptureMouse; } + set WantCaptureMouse(value) { this.native.WantCaptureMouse = value; } + // bool WantCaptureKeyboard; // When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. This is set by ImGui when it wants to use your keyboard inputs. + get WantCaptureKeyboard() { return this.native.WantCaptureKeyboard; } + set WantCaptureKeyboard(value) { this.native.WantCaptureKeyboard = value; } + // bool WantTextInput; // Mobile/console: when io.WantTextInput is true, you may display an on-screen keyboard. This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active). + get WantTextInput() { return this.native.WantTextInput; } + set WantTextInput(value) { this.native.WantTextInput = value; } + // bool WantSetMousePos; // [BETA-NAV] MousePos has been altered, back-end should reposition mouse on next frame. Set only when 'NavMovesMouse=true'. + get WantSetMousePos() { return this.native.WantSetMousePos; } + set WantSetMousePos(value) { this.native.WantSetMousePos = value; } + // bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. IMPORTANT: You need to clear io.WantSaveIniSettings yourself. + get WantSaveIniSettings() { return this.native.WantSaveIniSettings; } + set WantSaveIniSettings(value) { this.native.WantSaveIniSettings = value; } + // bool NavActive; // Directional navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag. + get NavActive() { return this.native.NavActive; } + set NavActive(value) { this.native.NavActive = value; } + // bool NavVisible; // Directional navigation is visible and allowed (will handle ImGuiKey_NavXXX events). + get NavVisible() { return this.native.NavVisible; } + set NavVisible(value) { this.native.NavVisible = value; } + // float Framerate; // Application framerate estimation, in frame per second. Solely for convenience. Rolling average estimation based on IO.DeltaTime over 120 frames + get Framerate() { return this.native.Framerate; } + // int MetricsRenderVertices; // Vertices output during last call to Render() + get MetricsRenderVertices() { return this.native.MetricsRenderVertices; } + // int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3 + get MetricsRenderIndices() { return this.native.MetricsRenderIndices; } + // int MetricsRenderWindows; // Number of visible windows + get MetricsRenderWindows() { return this.native.MetricsRenderWindows; } + // int MetricsActiveWindows; // Number of visible root windows (exclude child windows) + get MetricsActiveWindows() { return this.native.MetricsActiveWindows; } + // int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts. + get MetricsActiveAllocations() { return this.native.MetricsActiveAllocations; } + // ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta. + get MouseDelta() { return this.native.MouseDelta; } +} +const _texturesById = []; +// Context creation and access, if you want to use multiple context, share context between modules (e.g. DLL). +// All contexts share a same ImFontAtlas by default. If you want different font atlas, you can new() them and overwrite the GetIO().Fonts variable of an ImGui context. +// All those functions are not reliant on the current context. +class ImGuiContext { + constructor(native) { + this.native = native; + } + static getTexture(index) { + return _texturesById[index] || null; + } + static setTexture(texture) { + let index = _texturesById.indexOf(texture); + if (index === -1) { + for (let i = 0; i < _texturesById.length; ++i) { + if (_texturesById[i] === null) { + _texturesById[i] = texture; + return i; + } + } + index = _texturesById.length; + _texturesById.push(texture); + } + return index; + } +} +ImGuiContext.current_ctx = null; +// IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL); +function CreateContext(shared_font_atlas = null) { + const ctx = new ImGuiContext(bind.CreateContext(shared_font_atlas ? shared_font_atlas.native : null)); + if (ImGuiContext.current_ctx === null) { + ImGuiContext.current_ctx = ctx; + } + return ctx; +} +// IMGUI_API void SetCurrentContext(ImGuiContext* ctx); +function SetCurrentContext(ctx) { + bind.SetCurrentContext((ctx === null) ? null : ctx.native); + ImGuiContext.current_ctx = ctx; +} +// IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert); +function DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx) { + return bind.DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx); +} +// Main +// IMGUI_API ImGuiIO& GetIO(); +function GetIO() { return new ImGuiIO(bind.GetIO()); } +// IMGUI_API void NewFrame(); // start a new ImGui frame, you can submit any command from this point until Render()/EndFrame(). +function NewFrame() { bind.NewFrame(); } +// IMGUI_API void EndFrame(); // ends the ImGui frame. automatically called by Render(), so most likely don't need to ever call that yourself directly. If you don't need to render you may call EndFrame() but you'll have wasted CPU already. If you don't need to render, better to not create any imgui windows instead! +function EndFrame() { bind.EndFrame(); } +// IMGUI_API void Render(); // ends the ImGui frame, finalize the draw data, then call your io.RenderDrawListsFn() function if set. +function Render() { bind.Render(); } +// IMGUI_API ImDrawData* GetDrawData(); // same value as passed to your io.RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame() +function GetDrawData() { + const draw_data = bind.GetDrawData(); + return (draw_data === null) ? null : new ImDrawData(draw_data); +} +// IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you +function GetMouseCursor() { return bind.GetMouseCursor(); } +// IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source. +function LoadIniSettingsFromMemory(ini_data, ini_size = 0) { bind.LoadIniSettingsFromMemory(ini_data); } +// IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings. +function SaveIniSettingsToMemory(out_ini_size = null) { return bind.SaveIniSettingsToMemory(); } + +var promise = createCommonjsModule(function (module, exports) { +(function(global){ + +// +// Check for native Promise and it has correct interface +// + +var NativePromise = global['Promise']; +var nativePromiseSupported = + NativePromise && + // Some of these methods are missing from + // Firefox/Chrome experimental implementations + 'resolve' in NativePromise && + 'reject' in NativePromise && + 'all' in NativePromise && + 'race' in NativePromise && + // Older version of the spec had a resolver object + // as the arg rather than a function + (function(){ + var resolve; + new NativePromise(function(r){ resolve = r; }); + return typeof resolve === 'function'; + })(); + + +// +// export if necessary +// + +if ( exports) +{ + // node.js + exports.Promise = nativePromiseSupported ? NativePromise : Promise; + exports.Polyfill = Promise; +} +else +{ + // AMD + { + // in browser add to global + if (!nativePromiseSupported) + global['Promise'] = Promise; + } +} + + +// +// Polyfill +// + +var PENDING = 'pending'; +var SEALED = 'sealed'; +var FULFILLED = 'fulfilled'; +var REJECTED = 'rejected'; +var NOOP = function(){}; + +function isArray(value) { + return Object.prototype.toString.call(value) === '[object Array]'; +} + +// async calls +var asyncSetTimer = typeof setImmediate !== 'undefined' ? setImmediate : setTimeout; +var asyncQueue = []; +var asyncTimer; + +function asyncFlush(){ + // run promise callbacks + for (var i = 0; i < asyncQueue.length; i++) + asyncQueue[i][0](asyncQueue[i][1]); + + // reset async asyncQueue + asyncQueue = []; + asyncTimer = false; +} + +function asyncCall(callback, arg){ + asyncQueue.push([callback, arg]); + + if (!asyncTimer) + { + asyncTimer = true; + asyncSetTimer(asyncFlush, 0); + } +} + + +function invokeResolver(resolver, promise) { + function resolvePromise(value) { + resolve(promise, value); + } + + function rejectPromise(reason) { + reject(promise, reason); + } + + try { + resolver(resolvePromise, rejectPromise); + } catch(e) { + rejectPromise(e); + } +} + +function invokeCallback(subscriber){ + var owner = subscriber.owner; + var settled = owner.state_; + var value = owner.data_; + var callback = subscriber[settled]; + var promise = subscriber.then; + + if (typeof callback === 'function') + { + settled = FULFILLED; + try { + value = callback(value); + } catch(e) { + reject(promise, e); + } + } + + if (!handleThenable(promise, value)) + { + if (settled === FULFILLED) + resolve(promise, value); + + if (settled === REJECTED) + reject(promise, value); + } +} + +function handleThenable(promise, value) { + var resolved; + + try { + if (promise === value) + throw new TypeError('A promises callback cannot return that same promise.'); + + if (value && (typeof value === 'function' || typeof value === 'object')) + { + var then = value.then; // then should be retrived only once + + if (typeof then === 'function') + { + then.call(value, function(val){ + if (!resolved) + { + resolved = true; + + if (value !== val) + resolve(promise, val); + else + fulfill(promise, val); + } + }, function(reason){ + if (!resolved) + { + resolved = true; + + reject(promise, reason); + } + }); + + return true; + } + } + } catch (e) { + if (!resolved) + reject(promise, e); + + return true; + } + + return false; +} + +function resolve(promise, value){ + if (promise === value || !handleThenable(promise, value)) + fulfill(promise, value); +} + +function fulfill(promise, value){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = value; + + asyncCall(publishFulfillment, promise); + } +} + +function reject(promise, reason){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = reason; + + asyncCall(publishRejection, promise); + } +} + +function publish(promise) { + var callbacks = promise.then_; + promise.then_ = undefined; + + for (var i = 0; i < callbacks.length; i++) { + invokeCallback(callbacks[i]); + } +} + +function publishFulfillment(promise){ + promise.state_ = FULFILLED; + publish(promise); +} + +function publishRejection(promise){ + promise.state_ = REJECTED; + publish(promise); +} + +/** +* @class +*/ +function Promise(resolver){ + if (typeof resolver !== 'function') + throw new TypeError('Promise constructor takes a function argument'); + + if (this instanceof Promise === false) + throw new TypeError('Failed to construct \'Promise\': Please use the \'new\' operator, this object constructor cannot be called as a function.'); + + this.then_ = []; + + invokeResolver(resolver, this); +} + +Promise.prototype = { + constructor: Promise, + + state_: PENDING, + then_: null, + data_: undefined, + + then: function(onFulfillment, onRejection){ + var subscriber = { + owner: this, + then: new this.constructor(NOOP), + fulfilled: onFulfillment, + rejected: onRejection + }; + + if (this.state_ === FULFILLED || this.state_ === REJECTED) + { + // already resolved, call callback async + asyncCall(invokeCallback, subscriber); + } + else + { + // subscribe + this.then_.push(subscriber); + } + + return subscriber.then; + }, + + 'catch': function(onRejection) { + return this.then(null, onRejection); + } +}; + +Promise.all = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.all().'); + + return new Class(function(resolve, reject){ + var results = []; + var remaining = 0; + + function resolver(index){ + remaining++; + return function(value){ + results[index] = value; + if (!--remaining) + resolve(results); + }; + } + + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolver(i), reject); + else + results[i] = promise; + } + + if (!remaining) + resolve(results); + }); +}; + +Promise.race = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.race().'); + + return new Class(function(resolve, reject) { + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolve, reject); + else + resolve(promise); + } + }); +}; + +Promise.resolve = function(value){ + var Class = this; + + if (value && typeof value === 'object' && value.constructor === Class) + return value; + + return new Class(function(resolve){ + resolve(value); + }); +}; + +Promise.reject = function(reason){ + var Class = this; + + return new Class(function(resolve, reject){ + reject(reason); + }); +}; + +})(typeof window != 'undefined' ? window : typeof commonjsGlobal != 'undefined' ? commonjsGlobal : typeof self != 'undefined' ? self : commonjsGlobal); +}); +var promise_1 = promise.Promise; +var promise_2 = promise.Polyfill; + +/* +object-assign +(c) Sindre Sorhus +@license MIT +*/ +/* eslint-disable no-unused-vars */ +var getOwnPropertySymbols = Object.getOwnPropertySymbols; +var hasOwnProperty = Object.prototype.hasOwnProperty; +var propIsEnumerable = Object.prototype.propertyIsEnumerable; + +function toObject(val) { + if (val === null || val === undefined) { + throw new TypeError('Object.assign cannot be called with null or undefined'); + } + + return Object(val); +} + +function shouldUseNative() { + try { + if (!Object.assign) { + return false; + } + + // Detect buggy property enumeration order in older V8 versions. + + // https://bugs.chromium.org/p/v8/issues/detail?id=4118 + var test1 = new String('abc'); // eslint-disable-line no-new-wrappers + test1[5] = 'de'; + if (Object.getOwnPropertyNames(test1)[0] === '5') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test2 = {}; + for (var i = 0; i < 10; i++) { + test2['_' + String.fromCharCode(i)] = i; + } + var order2 = Object.getOwnPropertyNames(test2).map(function (n) { + return test2[n]; + }); + if (order2.join('') !== '0123456789') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test3 = {}; + 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { + test3[letter] = letter; + }); + if (Object.keys(Object.assign({}, test3)).join('') !== + 'abcdefghijklmnopqrst') { + return false; + } + + return true; + } catch (err) { + // We don't expect any of the above to throw, but better to be safe. + return false; + } +} + +var objectAssign = shouldUseNative() ? Object.assign : function (target, source) { + var from; + var to = toObject(target); + var symbols; + + for (var s = 1; s < arguments.length; s++) { + from = Object(arguments[s]); + + for (var key in from) { + if (hasOwnProperty.call(from, key)) { + to[key] = from[key]; + } + } + + if (getOwnPropertySymbols) { + symbols = getOwnPropertySymbols(from); + for (var i = 0; i < symbols.length; i++) { + if (propIsEnumerable.call(from, symbols[i])) { + to[symbols[i]] = from[symbols[i]]; + } + } + } + } + + return to; +}; + +/*! + * @pixi/polyfill - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/polyfill is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Support for IE 9 - 11 which does not include Promises +if (!window.Promise) +{ + window.Promise = promise_2; +} + +// References: + +if (!Object.assign) +{ + Object.assign = objectAssign; +} + +var commonjsGlobal$1 = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +// References: +// http://paulirish.com/2011/requestanimationframe-for-smart-animating/ +// https://gist.github.com/1579671 +// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision +// https://gist.github.com/timhall/4078614 +// https://github.com/Financial-Times/polyfill-service/tree/master/polyfills/requestAnimationFrame + +// Expected to be used with Browserfiy +// Browserify automatically detects the use of `global` and passes the +// correct reference of `global`, `self`, and finally `window` + +var ONE_FRAME_TIME = 16; + +// Date.now +if (!(Date.now && Date.prototype.getTime)) +{ + Date.now = function now() + { + return new Date().getTime(); + }; +} + +// performance.now +if (!(commonjsGlobal$1.performance && commonjsGlobal$1.performance.now)) +{ + var startTime = Date.now(); + + if (!commonjsGlobal$1.performance) + { + commonjsGlobal$1.performance = {}; + } + + commonjsGlobal$1.performance.now = function () { return Date.now() - startTime; }; +} + +// requestAnimationFrame +var lastTime = Date.now(); +var vendors = ['ms', 'moz', 'webkit', 'o']; + +for (var x = 0; x < vendors.length && !commonjsGlobal$1.requestAnimationFrame; ++x) +{ + var p = vendors[x]; + + commonjsGlobal$1.requestAnimationFrame = commonjsGlobal$1[(p + "RequestAnimationFrame")]; + commonjsGlobal$1.cancelAnimationFrame = commonjsGlobal$1[(p + "CancelAnimationFrame")] || commonjsGlobal$1[(p + "CancelRequestAnimationFrame")]; +} + +if (!commonjsGlobal$1.requestAnimationFrame) +{ + commonjsGlobal$1.requestAnimationFrame = function (callback) { + if (typeof callback !== 'function') + { + throw new TypeError((callback + "is not a function")); + } + + var currentTime = Date.now(); + var delay = ONE_FRAME_TIME + lastTime - currentTime; + + if (delay < 0) + { + delay = 0; + } + + lastTime = currentTime; + + return setTimeout(function () { + lastTime = Date.now(); + callback(performance.now()); + }, delay); + }; +} + +if (!commonjsGlobal$1.cancelAnimationFrame) +{ + commonjsGlobal$1.cancelAnimationFrame = function (id) { return clearTimeout(id); }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign + +if (!Math.sign) +{ + Math.sign = function mathSign(x) + { + x = Number(x); + + if (x === 0 || isNaN(x)) + { + return x; + } + + return x > 0 ? 1 : -1; + }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger + +if (!Number.isInteger) +{ + Number.isInteger = function numberIsInteger(value) + { + return typeof value === 'number' && isFinite(value) && Math.floor(value) === value; + }; +} + +if (!window.ArrayBuffer) +{ + window.ArrayBuffer = Array; +} + +if (!window.Float32Array) +{ + window.Float32Array = Array; +} + +if (!window.Uint32Array) +{ + window.Uint32Array = Array; +} + +if (!window.Uint16Array) +{ + window.Uint16Array = Array; +} + +if (!window.Uint8Array) +{ + window.Uint8Array = Array; +} + +if (!window.Int32Array) +{ + window.Int32Array = Array; +} + +var isMobile = createCommonjsModule(function (module) { +(function(global) { + var apple_phone = /iPhone/i, + apple_ipod = /iPod/i, + apple_tablet = /iPad/i, + android_phone = /\bAndroid(?:.+)Mobile\b/i, // Match 'Android' AND 'Mobile' + android_tablet = /Android/i, + amazon_phone = /\bAndroid(?:.+)SD4930UR\b/i, + amazon_tablet = /\bAndroid(?:.+)(?:KF[A-Z]{2,4})\b/i, + windows_phone = /Windows Phone/i, + windows_tablet = /\bWindows(?:.+)ARM\b/i, // Match 'Windows' AND 'ARM' + other_blackberry = /BlackBerry/i, + other_blackberry_10 = /BB10/i, + other_opera = /Opera Mini/i, + other_chrome = /\b(CriOS|Chrome)(?:.+)Mobile/i, + other_firefox = /Mobile(?:.+)Firefox\b/i; // Match 'Mobile' AND 'Firefox' + + function match(regex, userAgent) { + return regex.test(userAgent); + } + + function isMobile(userAgent) { + var ua = + userAgent || + (typeof navigator !== 'undefined' ? navigator.userAgent : ''); + + // Facebook mobile app's integrated browser adds a bunch of strings that + // match everything. Strip it out if it exists. + var tmp = ua.split('[FBAN'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + // Twitter mobile app's integrated browser on iPad adds a "Twitter for + // iPhone" string. Same probably happens on other tablet platforms. + // This will confuse detection so strip it out if it exists. + tmp = ua.split('Twitter'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + var result = { + apple: { + phone: match(apple_phone, ua) && !match(windows_phone, ua), + ipod: match(apple_ipod, ua), + tablet: + !match(apple_phone, ua) && + match(apple_tablet, ua) && + !match(windows_phone, ua), + device: + (match(apple_phone, ua) || + match(apple_ipod, ua) || + match(apple_tablet, ua)) && + !match(windows_phone, ua) + }, + amazon: { + phone: match(amazon_phone, ua), + tablet: !match(amazon_phone, ua) && match(amazon_tablet, ua), + device: match(amazon_phone, ua) || match(amazon_tablet, ua) + }, + android: { + phone: + (!match(windows_phone, ua) && match(amazon_phone, ua)) || + (!match(windows_phone, ua) && match(android_phone, ua)), + tablet: + !match(windows_phone, ua) && + !match(amazon_phone, ua) && + !match(android_phone, ua) && + (match(amazon_tablet, ua) || match(android_tablet, ua)), + device: + (!match(windows_phone, ua) && + (match(amazon_phone, ua) || + match(amazon_tablet, ua) || + match(android_phone, ua) || + match(android_tablet, ua))) || + match(/\bokhttp\b/i, ua) + }, + windows: { + phone: match(windows_phone, ua), + tablet: match(windows_tablet, ua), + device: match(windows_phone, ua) || match(windows_tablet, ua) + }, + other: { + blackberry: match(other_blackberry, ua), + blackberry10: match(other_blackberry_10, ua), + opera: match(other_opera, ua), + firefox: match(other_firefox, ua), + chrome: match(other_chrome, ua), + device: + match(other_blackberry, ua) || + match(other_blackberry_10, ua) || + match(other_opera, ua) || + match(other_firefox, ua) || + match(other_chrome, ua) + } + }; + (result.any = + result.apple.device || + result.android.device || + result.windows.device || + result.other.device), + // excludes 'other' devices and ipods, targeting touchscreen phones + (result.phone = + result.apple.phone || result.android.phone || result.windows.phone), + (result.tablet = + result.apple.tablet || result.android.tablet || result.windows.tablet); + + return result; + } + + if ( + + module.exports && + typeof window === 'undefined' + ) { + // Node.js + module.exports = isMobile; + } else if ( + + module.exports && + typeof window !== 'undefined' + ) { + // Browserify + module.exports = isMobile(); + module.exports.isMobile = isMobile; + } else { + global.isMobile = isMobile(); + } +})(commonjsGlobal); +}); +var isMobile_1 = isMobile.isMobile; + +/*! + * @pixi/settings - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/settings is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The maximum recommended texture units to use. + * In theory the bigger the better, and for desktop we'll use as many as we can. + * But some mobile devices slow down if there is to many branches in the shader. + * So in practice there seems to be a sweet spot size that varies depending on the device. + * + * In v4, all mobile devices were limited to 4 texture units because for this. + * In v5, we allow all texture units to be used on modern Apple or Android devices. + * + * @private + * @param {number} max + * @returns {number} + */ +function maxRecommendedTextures(max) +{ + var allowMax = true; + + if (isMobile.tablet || isMobile.phone) + { + allowMax = false; + + if (isMobile.apple.device) + { + var match = (navigator.userAgent).match(/OS (\d+)_(\d+)?/); + + if (match) + { + var majorVersion = parseInt(match[1], 10); + + // All texture units can be used on devices that support ios 11 or above + if (majorVersion >= 11) + { + allowMax = true; + } + } + } + if (isMobile.android.device) + { + var match$1 = (navigator.userAgent).match(/Android\s([0-9.]*)/); + + if (match$1) + { + var majorVersion$1 = parseInt(match$1[1], 10); + + // All texture units can be used on devices that support Android 7 (Nougat) or above + if (majorVersion$1 >= 7) + { + allowMax = true; + } + } + } + } + + return allowMax ? max : 4; +} + +/** + * Uploading the same buffer multiple times in a single frame can cause performance issues. + * Apparent on iOS so only check for that at the moment + * This check may become more complex if this issue pops up elsewhere. + * + * @private + * @returns {boolean} + */ +function canUploadSameBuffer() +{ + return !isMobile.apple.device; +} + +/** + * User's customizable globals for overriding the default PIXI settings, such + * as a renderer's default resolution, framerate, float precision, etc. + * @example + * // Use the native window resolution as the default resolution + * // will support high-density displays when rendering + * PIXI.settings.RESOLUTION = window.devicePixelRatio; + * + * // Disable interpolation when scaling, will make texture be pixelated + * PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST; + * @namespace PIXI.settings + */ +var settings = { + + /** + * If set to true WebGL will attempt make textures mimpaped by default. + * Mipmapping will only succeed if the base texture uploaded has power of two dimensions. + * + * @static + * @name MIPMAP_TEXTURES + * @memberof PIXI.settings + * @type {PIXI.MIPMAP_MODES} + * @default PIXI.MIPMAP_MODES.POW2 + */ + MIPMAP_TEXTURES: 1, + + /** + * Default anisotropic filtering level of textures. + * Usually from 0 to 16 + * + * @static + * @name ANISOTROPIC_LEVEL + * @memberof PIXI.settings + * @type {number} + * @default 0 + */ + ANISOTROPIC_LEVEL: 0, + + /** + * Default resolution / device pixel ratio of the renderer. + * + * @static + * @name RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + RESOLUTION: 1, + + /** + * Default filter resolution. + * + * @static + * @name FILTER_RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + FILTER_RESOLUTION: 1, + + /** + * The maximum textures that this device supports. + * + * @static + * @name SPRITE_MAX_TEXTURES + * @memberof PIXI.settings + * @type {number} + * @default 32 + */ + SPRITE_MAX_TEXTURES: maxRecommendedTextures(32), + + // TODO: maybe change to SPRITE.BATCH_SIZE: 2000 + // TODO: maybe add PARTICLE.BATCH_SIZE: 15000 + + /** + * The default sprite batch size. + * + * The default aims to balance desktop and mobile devices. + * + * @static + * @name SPRITE_BATCH_SIZE + * @memberof PIXI.settings + * @type {number} + * @default 4096 + */ + SPRITE_BATCH_SIZE: 4096, + + /** + * The default render options if none are supplied to {@link PIXI.Renderer} + * or {@link PIXI.CanvasRenderer}. + * + * @static + * @name RENDER_OPTIONS + * @memberof PIXI.settings + * @type {object} + * @property {HTMLCanvasElement} view=null + * @property {number} resolution=1 + * @property {boolean} antialias=false + * @property {boolean} forceFXAA=false + * @property {boolean} autoDensity=false + * @property {boolean} transparent=false + * @property {number} backgroundColor=0x000000 + * @property {boolean} clearBeforeRender=true + * @property {boolean} preserveDrawingBuffer=false + * @property {number} width=800 + * @property {number} height=600 + * @property {boolean} legacy=false + */ + RENDER_OPTIONS: { + view: null, + antialias: false, + forceFXAA: false, + autoDensity: false, + transparent: false, + backgroundColor: 0x000000, + clearBeforeRender: true, + preserveDrawingBuffer: false, + width: 800, + height: 600, + legacy: false, + }, + + /** + * Default Garbage Collection mode. + * + * @static + * @name GC_MODE + * @memberof PIXI.settings + * @type {PIXI.GC_MODES} + * @default PIXI.GC_MODES.AUTO + */ + GC_MODE: 0, + + /** + * Default Garbage Collection max idle. + * + * @static + * @name GC_MAX_IDLE + * @memberof PIXI.settings + * @type {number} + * @default 3600 + */ + GC_MAX_IDLE: 60 * 60, + + /** + * Default Garbage Collection maximum check count. + * + * @static + * @name GC_MAX_CHECK_COUNT + * @memberof PIXI.settings + * @type {number} + * @default 600 + */ + GC_MAX_CHECK_COUNT: 60 * 10, + + /** + * Default wrap modes that are supported by pixi. + * + * @static + * @name WRAP_MODE + * @memberof PIXI.settings + * @type {PIXI.WRAP_MODES} + * @default PIXI.WRAP_MODES.CLAMP + */ + WRAP_MODE: 33071, + + /** + * Default scale mode for textures. + * + * @static + * @name SCALE_MODE + * @memberof PIXI.settings + * @type {PIXI.SCALE_MODES} + * @default PIXI.SCALE_MODES.LINEAR + */ + SCALE_MODE: 1, + + /** + * Default specify float precision in vertex shader. + * + * @static + * @name PRECISION_VERTEX + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.HIGH + */ + PRECISION_VERTEX: 'highp', + + /** + * Default specify float precision in fragment shader. + * iOS is best set at highp due to https://github.com/pixijs/pixi.js/issues/3742 + * + * @static + * @name PRECISION_FRAGMENT + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.MEDIUM + */ + PRECISION_FRAGMENT: isMobile.apple.device ? 'highp' : 'mediump', + + /** + * Can we upload the same buffer in a single frame? + * + * @static + * @name CAN_UPLOAD_SAME_BUFFER + * @memberof PIXI.settings + * @type {boolean} + */ + CAN_UPLOAD_SAME_BUFFER: canUploadSameBuffer(), + + /** + * Enables bitmap creation before image load. This feature is experimental. + * + * @static + * @name CREATE_IMAGE_BITMAP + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + CREATE_IMAGE_BITMAP: false, + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * + * @static + * @constant + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + ROUND_PIXELS: false, +}; + +var eventemitter3 = createCommonjsModule(function (module) { + +var has = Object.prototype.hasOwnProperty + , prefix = '~'; + +/** + * Constructor to create a storage for our `EE` objects. + * An `Events` instance is a plain object whose properties are event names. + * + * @constructor + * @private + */ +function Events() {} + +// +// We try to not inherit from `Object.prototype`. In some engines creating an +// instance in this way is faster than calling `Object.create(null)` directly. +// If `Object.create(null)` is not supported we prefix the event names with a +// character to make sure that the built-in object properties are not +// overridden or used as an attack vector. +// +if (Object.create) { + Events.prototype = Object.create(null); + + // + // This hack is needed because the `__proto__` property is still inherited in + // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5. + // + if (!new Events().__proto__) prefix = false; +} + +/** + * Representation of a single event listener. + * + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} [once=false] Specify if the listener is a one-time listener. + * @constructor + * @private + */ +function EE(fn, context, once) { + this.fn = fn; + this.context = context; + this.once = once || false; +} + +/** + * Add a listener for a given event. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} once Specify if the listener is a one-time listener. + * @returns {EventEmitter} + * @private + */ +function addListener(emitter, event, fn, context, once) { + if (typeof fn !== 'function') { + throw new TypeError('The listener must be a function'); + } + + var listener = new EE(fn, context || emitter, once) + , evt = prefix ? prefix + event : event; + + if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++; + else if (!emitter._events[evt].fn) emitter._events[evt].push(listener); + else emitter._events[evt] = [emitter._events[evt], listener]; + + return emitter; +} + +/** + * Clear event by name. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} evt The Event name. + * @private + */ +function clearEvent(emitter, evt) { + if (--emitter._eventsCount === 0) emitter._events = new Events(); + else delete emitter._events[evt]; +} + +/** + * Minimal `EventEmitter` interface that is molded against the Node.js + * `EventEmitter` interface. + * + * @constructor + * @public + */ +function EventEmitter() { + this._events = new Events(); + this._eventsCount = 0; +} + +/** + * Return an array listing the events for which the emitter has registered + * listeners. + * + * @returns {Array} + * @public + */ +EventEmitter.prototype.eventNames = function eventNames() { + var names = [] + , events + , name; + + if (this._eventsCount === 0) return names; + + for (name in (events = this._events)) { + if (has.call(events, name)) names.push(prefix ? name.slice(1) : name); + } + + if (Object.getOwnPropertySymbols) { + return names.concat(Object.getOwnPropertySymbols(events)); + } + + return names; +}; + +/** + * Return the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Array} The registered listeners. + * @public + */ +EventEmitter.prototype.listeners = function listeners(event) { + var evt = prefix ? prefix + event : event + , handlers = this._events[evt]; + + if (!handlers) return []; + if (handlers.fn) return [handlers.fn]; + + for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) { + ee[i] = handlers[i].fn; + } + + return ee; +}; + +/** + * Return the number of listeners listening to a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Number} The number of listeners. + * @public + */ +EventEmitter.prototype.listenerCount = function listenerCount(event) { + var evt = prefix ? prefix + event : event + , listeners = this._events[evt]; + + if (!listeners) return 0; + if (listeners.fn) return 1; + return listeners.length; +}; + +/** + * Calls each of the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Boolean} `true` if the event had listeners, else `false`. + * @public + */ +EventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return false; + + var listeners = this._events[evt] + , len = arguments.length + , args + , i; + + if (listeners.fn) { + if (listeners.once) this.removeListener(event, listeners.fn, undefined, true); + + switch (len) { + case 1: return listeners.fn.call(listeners.context), true; + case 2: return listeners.fn.call(listeners.context, a1), true; + case 3: return listeners.fn.call(listeners.context, a1, a2), true; + case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true; + case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true; + case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true; + } + + for (i = 1, args = new Array(len -1); i < len; i++) { + args[i - 1] = arguments[i]; + } + + listeners.fn.apply(listeners.context, args); + } else { + var length = listeners.length + , j; + + for (i = 0; i < length; i++) { + if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true); + + switch (len) { + case 1: listeners[i].fn.call(listeners[i].context); break; + case 2: listeners[i].fn.call(listeners[i].context, a1); break; + case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break; + case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break; + default: + if (!args) for (j = 1, args = new Array(len -1); j < len; j++) { + args[j - 1] = arguments[j]; + } + + listeners[i].fn.apply(listeners[i].context, args); + } + } + } + + return true; +}; + +/** + * Add a listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.on = function on(event, fn, context) { + return addListener(this, event, fn, context, false); +}; + +/** + * Add a one-time listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.once = function once(event, fn, context) { + return addListener(this, event, fn, context, true); +}; + +/** + * Remove the listeners of a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn Only remove the listeners that match this function. + * @param {*} context Only remove the listeners that have this context. + * @param {Boolean} once Only remove one-time listeners. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return this; + if (!fn) { + clearEvent(this, evt); + return this; + } + + var listeners = this._events[evt]; + + if (listeners.fn) { + if ( + listeners.fn === fn && + (!once || listeners.once) && + (!context || listeners.context === context) + ) { + clearEvent(this, evt); + } + } else { + for (var i = 0, events = [], length = listeners.length; i < length; i++) { + if ( + listeners[i].fn !== fn || + (once && !listeners[i].once) || + (context && listeners[i].context !== context) + ) { + events.push(listeners[i]); + } + } + + // + // Reset the array, or remove it completely if we have no more listeners. + // + if (events.length) this._events[evt] = events.length === 1 ? events[0] : events; + else clearEvent(this, evt); + } + + return this; +}; + +/** + * Remove all listeners, or those of the specified event. + * + * @param {(String|Symbol)} [event] The event name. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeAllListeners = function removeAllListeners(event) { + var evt; + + if (event) { + evt = prefix ? prefix + event : event; + if (this._events[evt]) clearEvent(this, evt); + } else { + this._events = new Events(); + this._eventsCount = 0; + } + + return this; +}; + +// +// Alias methods names because people roll like that. +// +EventEmitter.prototype.off = EventEmitter.prototype.removeListener; +EventEmitter.prototype.addListener = EventEmitter.prototype.on; + +// +// Expose the prefix. +// +EventEmitter.prefixed = prefix; + +// +// Allow `EventEmitter` to be imported as module namespace. +// +EventEmitter.EventEmitter = EventEmitter; + +// +// Expose the module. +// +{ + module.exports = EventEmitter; +} +}); + +var earcut_1 = earcut; +var default_1 = earcut; + +function earcut(data, holeIndices, dim) { + + dim = dim || 2; + + var hasHoles = holeIndices && holeIndices.length, + outerLen = hasHoles ? holeIndices[0] * dim : data.length, + outerNode = linkedList(data, 0, outerLen, dim, true), + triangles = []; + + if (!outerNode || outerNode.next === outerNode.prev) return triangles; + + var minX, minY, maxX, maxY, x, y, invSize; + + if (hasHoles) outerNode = eliminateHoles(data, holeIndices, outerNode, dim); + + // if the shape is not too simple, we'll use z-order curve hash later; calculate polygon bbox + if (data.length > 80 * dim) { + minX = maxX = data[0]; + minY = maxY = data[1]; + + for (var i = dim; i < outerLen; i += dim) { + x = data[i]; + y = data[i + 1]; + if (x < minX) minX = x; + if (y < minY) minY = y; + if (x > maxX) maxX = x; + if (y > maxY) maxY = y; + } + + // minX, minY and invSize are later used to transform coords into integers for z-order calculation + invSize = Math.max(maxX - minX, maxY - minY); + invSize = invSize !== 0 ? 1 / invSize : 0; + } + + earcutLinked(outerNode, triangles, dim, minX, minY, invSize); + + return triangles; +} + +// create a circular doubly linked list from polygon points in the specified winding order +function linkedList(data, start, end, dim, clockwise) { + var i, last; + + if (clockwise === (signedArea(data, start, end, dim) > 0)) { + for (i = start; i < end; i += dim) last = insertNode(i, data[i], data[i + 1], last); + } else { + for (i = end - dim; i >= start; i -= dim) last = insertNode(i, data[i], data[i + 1], last); + } + + if (last && equals(last, last.next)) { + removeNode(last); + last = last.next; + } + + return last; +} + +// eliminate colinear or duplicate points +function filterPoints(start, end) { + if (!start) return start; + if (!end) end = start; + + var p = start, + again; + do { + again = false; + + if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) { + removeNode(p); + p = end = p.prev; + if (p === p.next) break; + again = true; + + } else { + p = p.next; + } + } while (again || p !== end); + + return end; +} + +// main ear slicing loop which triangulates a polygon (given as a linked list) +function earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) { + if (!ear) return; + + // interlink polygon nodes in z-order + if (!pass && invSize) indexCurve(ear, minX, minY, invSize); + + var stop = ear, + prev, next; + + // iterate through ears, slicing them one by one + while (ear.prev !== ear.next) { + prev = ear.prev; + next = ear.next; + + if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) { + // cut off the triangle + triangles.push(prev.i / dim); + triangles.push(ear.i / dim); + triangles.push(next.i / dim); + + removeNode(ear); + + // skipping the next vertex leads to less sliver triangles + ear = next.next; + stop = next.next; + + continue; + } + + ear = next; + + // if we looped through the whole remaining polygon and can't find any more ears + if (ear === stop) { + // try filtering points and slicing again + if (!pass) { + earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1); + + // if this didn't work, try curing all small self-intersections locally + } else if (pass === 1) { + ear = cureLocalIntersections(filterPoints(ear), triangles, dim); + earcutLinked(ear, triangles, dim, minX, minY, invSize, 2); + + // as a last resort, try splitting the remaining polygon into two + } else if (pass === 2) { + splitEarcut(ear, triangles, dim, minX, minY, invSize); + } + + break; + } + } +} + +// check whether a polygon node forms a valid ear with adjacent nodes +function isEar(ear) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // now make sure we don't have other points inside the potential ear + var p = ear.next.next; + + while (p !== ear.prev) { + if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.next; + } + + return true; +} + +function isEarHashed(ear, minX, minY, invSize) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // triangle bbox; min & max are calculated like this for speed + var minTX = a.x < b.x ? (a.x < c.x ? a.x : c.x) : (b.x < c.x ? b.x : c.x), + minTY = a.y < b.y ? (a.y < c.y ? a.y : c.y) : (b.y < c.y ? b.y : c.y), + maxTX = a.x > b.x ? (a.x > c.x ? a.x : c.x) : (b.x > c.x ? b.x : c.x), + maxTY = a.y > b.y ? (a.y > c.y ? a.y : c.y) : (b.y > c.y ? b.y : c.y); + + // z-order range for the current triangle bbox; + var minZ = zOrder(minTX, minTY, minX, minY, invSize), + maxZ = zOrder(maxTX, maxTY, minX, minY, invSize); + + var p = ear.prevZ, + n = ear.nextZ; + + // look for points inside the triangle in both directions + while (p && p.z >= minZ && n && n.z <= maxZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + // look for remaining points in decreasing z-order + while (p && p.z >= minZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + } + + // look for remaining points in increasing z-order + while (n && n.z <= maxZ) { + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + return true; +} + +// go through all polygon nodes and cure small local self-intersections +function cureLocalIntersections(start, triangles, dim) { + var p = start; + do { + var a = p.prev, + b = p.next.next; + + if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) { + + triangles.push(a.i / dim); + triangles.push(p.i / dim); + triangles.push(b.i / dim); + + // remove two nodes involved + removeNode(p); + removeNode(p.next); + + p = start = b; + } + p = p.next; + } while (p !== start); + + return filterPoints(p); +} + +// try splitting polygon into two and triangulate them independently +function splitEarcut(start, triangles, dim, minX, minY, invSize) { + // look for a valid diagonal that divides the polygon into two + var a = start; + do { + var b = a.next.next; + while (b !== a.prev) { + if (a.i !== b.i && isValidDiagonal(a, b)) { + // split the polygon in two by the diagonal + var c = splitPolygon(a, b); + + // filter colinear points around the cuts + a = filterPoints(a, a.next); + c = filterPoints(c, c.next); + + // run earcut on each half + earcutLinked(a, triangles, dim, minX, minY, invSize); + earcutLinked(c, triangles, dim, minX, minY, invSize); + return; + } + b = b.next; + } + a = a.next; + } while (a !== start); +} + +// link every hole into the outer loop, producing a single-ring polygon without holes +function eliminateHoles(data, holeIndices, outerNode, dim) { + var queue = [], + i, len, start, end, list; + + for (i = 0, len = holeIndices.length; i < len; i++) { + start = holeIndices[i] * dim; + end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + list = linkedList(data, start, end, dim, false); + if (list === list.next) list.steiner = true; + queue.push(getLeftmost(list)); + } + + queue.sort(compareX); + + // process holes from left to right + for (i = 0; i < queue.length; i++) { + eliminateHole(queue[i], outerNode); + outerNode = filterPoints(outerNode, outerNode.next); + } + + return outerNode; +} + +function compareX(a, b) { + return a.x - b.x; +} + +// find a bridge between vertices that connects hole with an outer ring and and link it +function eliminateHole(hole, outerNode) { + outerNode = findHoleBridge(hole, outerNode); + if (outerNode) { + var b = splitPolygon(outerNode, hole); + filterPoints(b, b.next); + } +} + +// David Eberly's algorithm for finding a bridge between hole and outer polygon +function findHoleBridge(hole, outerNode) { + var p = outerNode, + hx = hole.x, + hy = hole.y, + qx = -Infinity, + m; + + // find a segment intersected by a ray from the hole's leftmost point to the left; + // segment's endpoint with lesser x will be potential connection point + do { + if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) { + var x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y); + if (x <= hx && x > qx) { + qx = x; + if (x === hx) { + if (hy === p.y) return p; + if (hy === p.next.y) return p.next; + } + m = p.x < p.next.x ? p : p.next; + } + } + p = p.next; + } while (p !== outerNode); + + if (!m) return null; + + if (hx === qx) return m; // hole touches outer segment; pick leftmost endpoint + + // look for points inside the triangle of hole point, segment intersection and endpoint; + // if there are no points found, we have a valid connection; + // otherwise choose the point of the minimum angle with the ray as connection point + + var stop = m, + mx = m.x, + my = m.y, + tanMin = Infinity, + tan; + + p = m; + + do { + if (hx >= p.x && p.x >= mx && hx !== p.x && + pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) { + + tan = Math.abs(hy - p.y) / (hx - p.x); // tangential + + if (locallyInside(p, hole) && + (tan < tanMin || (tan === tanMin && (p.x > m.x || (p.x === m.x && sectorContainsSector(m, p)))))) { + m = p; + tanMin = tan; + } + } + + p = p.next; + } while (p !== stop); + + return m; +} + +// whether sector in vertex m contains sector in vertex p in the same coordinates +function sectorContainsSector(m, p) { + return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0; +} + +// interlink polygon nodes in z-order +function indexCurve(start, minX, minY, invSize) { + var p = start; + do { + if (p.z === null) p.z = zOrder(p.x, p.y, minX, minY, invSize); + p.prevZ = p.prev; + p.nextZ = p.next; + p = p.next; + } while (p !== start); + + p.prevZ.nextZ = null; + p.prevZ = null; + + sortLinked(p); +} + +// Simon Tatham's linked list merge sort algorithm +// http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html +function sortLinked(list) { + var i, p, q, e, tail, numMerges, pSize, qSize, + inSize = 1; + + do { + p = list; + list = null; + tail = null; + numMerges = 0; + + while (p) { + numMerges++; + q = p; + pSize = 0; + for (i = 0; i < inSize; i++) { + pSize++; + q = q.nextZ; + if (!q) break; + } + qSize = inSize; + + while (pSize > 0 || (qSize > 0 && q)) { + + if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) { + e = p; + p = p.nextZ; + pSize--; + } else { + e = q; + q = q.nextZ; + qSize--; + } + + if (tail) tail.nextZ = e; + else list = e; + + e.prevZ = tail; + tail = e; + } + + p = q; + } + + tail.nextZ = null; + inSize *= 2; + + } while (numMerges > 1); + + return list; +} + +// z-order of a point given coords and inverse of the longer side of data bbox +function zOrder(x, y, minX, minY, invSize) { + // coords are transformed into non-negative 15-bit integer range + x = 32767 * (x - minX) * invSize; + y = 32767 * (y - minY) * invSize; + + x = (x | (x << 8)) & 0x00FF00FF; + x = (x | (x << 4)) & 0x0F0F0F0F; + x = (x | (x << 2)) & 0x33333333; + x = (x | (x << 1)) & 0x55555555; + + y = (y | (y << 8)) & 0x00FF00FF; + y = (y | (y << 4)) & 0x0F0F0F0F; + y = (y | (y << 2)) & 0x33333333; + y = (y | (y << 1)) & 0x55555555; + + return x | (y << 1); +} + +// find the leftmost node of a polygon ring +function getLeftmost(start) { + var p = start, + leftmost = start; + do { + if (p.x < leftmost.x || (p.x === leftmost.x && p.y < leftmost.y)) leftmost = p; + p = p.next; + } while (p !== start); + + return leftmost; +} + +// check if a point lies within a convex triangle +function pointInTriangle(ax, ay, bx, by, cx, cy, px, py) { + return (cx - px) * (ay - py) - (ax - px) * (cy - py) >= 0 && + (ax - px) * (by - py) - (bx - px) * (ay - py) >= 0 && + (bx - px) * (cy - py) - (cx - px) * (by - py) >= 0; +} + +// check if a diagonal between two polygon nodes is valid (lies in polygon interior) +function isValidDiagonal(a, b) { + return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && // dones't intersect other edges + (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && // locally visible + (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors + equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case +} + +// signed area of a triangle +function area(p, q, r) { + return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y); +} + +// check if two points are equal +function equals(p1, p2) { + return p1.x === p2.x && p1.y === p2.y; +} + +// check if two segments intersect +function intersects(p1, q1, p2, q2) { + var o1 = sign(area(p1, q1, p2)); + var o2 = sign(area(p1, q1, q2)); + var o3 = sign(area(p2, q2, p1)); + var o4 = sign(area(p2, q2, q1)); + + if (o1 !== o2 && o3 !== o4) return true; // general case + + if (o1 === 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p1q1 + if (o2 === 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p1q1 + if (o3 === 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p2q2 + if (o4 === 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p2q2 + + return false; +} + +// for collinear points p, q, r, check if point q lies on segment pr +function onSegment(p, q, r) { + return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y); +} + +function sign(num) { + return num > 0 ? 1 : num < 0 ? -1 : 0; +} + +// check if a polygon diagonal intersects any polygon segments +function intersectsPolygon(a, b) { + var p = a; + do { + if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i && + intersects(p, p.next, a, b)) return true; + p = p.next; + } while (p !== a); + + return false; +} + +// check if a polygon diagonal is locally inside the polygon +function locallyInside(a, b) { + return area(a.prev, a, a.next) < 0 ? + area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 : + area(a, b, a.prev) < 0 || area(a, a.next, b) < 0; +} + +// check if the middle point of a polygon diagonal is inside the polygon +function middleInside(a, b) { + var p = a, + inside = false, + px = (a.x + b.x) / 2, + py = (a.y + b.y) / 2; + do { + if (((p.y > py) !== (p.next.y > py)) && p.next.y !== p.y && + (px < (p.next.x - p.x) * (py - p.y) / (p.next.y - p.y) + p.x)) + inside = !inside; + p = p.next; + } while (p !== a); + + return inside; +} + +// link two polygon vertices with a bridge; if the vertices belong to the same ring, it splits polygon into two; +// if one belongs to the outer ring and another to a hole, it merges it into a single ring +function splitPolygon(a, b) { + var a2 = new Node(a.i, a.x, a.y), + b2 = new Node(b.i, b.x, b.y), + an = a.next, + bp = b.prev; + + a.next = b; + b.prev = a; + + a2.next = an; + an.prev = a2; + + b2.next = a2; + a2.prev = b2; + + bp.next = b2; + b2.prev = bp; + + return b2; +} + +// create a node and optionally link it with previous one (in a circular doubly linked list) +function insertNode(i, x, y, last) { + var p = new Node(i, x, y); + + if (!last) { + p.prev = p; + p.next = p; + + } else { + p.next = last.next; + p.prev = last; + last.next.prev = p; + last.next = p; + } + return p; +} + +function removeNode(p) { + p.next.prev = p.prev; + p.prev.next = p.next; + + if (p.prevZ) p.prevZ.nextZ = p.nextZ; + if (p.nextZ) p.nextZ.prevZ = p.prevZ; +} + +function Node(i, x, y) { + // vertex index in coordinates array + this.i = i; + + // vertex coordinates + this.x = x; + this.y = y; + + // previous and next vertex nodes in a polygon ring + this.prev = null; + this.next = null; + + // z-order curve value + this.z = null; + + // previous and next nodes in z-order + this.prevZ = null; + this.nextZ = null; + + // indicates whether this is a steiner point + this.steiner = false; +} + +// return a percentage difference between the polygon area and its triangulation area; +// used to verify correctness of triangulation +earcut.deviation = function (data, holeIndices, dim, triangles) { + var hasHoles = holeIndices && holeIndices.length; + var outerLen = hasHoles ? holeIndices[0] * dim : data.length; + + var polygonArea = Math.abs(signedArea(data, 0, outerLen, dim)); + if (hasHoles) { + for (var i = 0, len = holeIndices.length; i < len; i++) { + var start = holeIndices[i] * dim; + var end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + polygonArea -= Math.abs(signedArea(data, start, end, dim)); + } + } + + var trianglesArea = 0; + for (i = 0; i < triangles.length; i += 3) { + var a = triangles[i] * dim; + var b = triangles[i + 1] * dim; + var c = triangles[i + 2] * dim; + trianglesArea += Math.abs( + (data[a] - data[c]) * (data[b + 1] - data[a + 1]) - + (data[a] - data[b]) * (data[c + 1] - data[a + 1])); + } + + return polygonArea === 0 && trianglesArea === 0 ? 0 : + Math.abs((trianglesArea - polygonArea) / polygonArea); +}; + +function signedArea(data, start, end, dim) { + var sum = 0; + for (var i = start, j = end - dim; i < end; i += dim) { + sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]); + j = i; + } + return sum; +} + +// turn a polygon in a multi-dimensional array form (e.g. as in GeoJSON) into a form Earcut accepts +earcut.flatten = function (data) { + var dim = data[0][0].length, + result = {vertices: [], holes: [], dimensions: dim}, + holeIndex = 0; + + for (var i = 0; i < data.length; i++) { + for (var j = 0; j < data[i].length; j++) { + for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]); + } + if (i > 0) { + holeIndex += data[i - 1].length; + result.holes.push(holeIndex); + } + } + return result; +}; +earcut_1.default = default_1; + +/*! https://mths.be/punycode v1.4.1 by @mathias */ + + +/** Highest positive signed 32-bit float value */ +var maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1 + +/** Bootstring parameters */ +var base = 36; +var tMin = 1; +var tMax = 26; +var skew = 38; +var damp = 700; +var initialBias = 72; +var initialN = 128; // 0x80 +var delimiter$1 = '-'; // '\x2D' +var regexNonASCII = /[^\x20-\x7E]/; // unprintable ASCII chars + non-ASCII chars +var regexSeparators = /[\x2E\u3002\uFF0E\uFF61]/g; // RFC 3490 separators + +/** Error messages */ +var errors = { + 'overflow': 'Overflow: input needs wider integers to process', + 'not-basic': 'Illegal input >= 0x80 (not a basic code point)', + 'invalid-input': 'Invalid input' +}; + +/** Convenience shortcuts */ +var baseMinusTMin = base - tMin; +var floor = Math.floor; +var stringFromCharCode = String.fromCharCode; + +/*--------------------------------------------------------------------------*/ + +/** + * A generic error utility function. + * @private + * @param {String} type The error type. + * @returns {Error} Throws a `RangeError` with the applicable error message. + */ +function error(type) { + throw new RangeError(errors[type]); +} + +/** + * A generic `Array#map` utility function. + * @private + * @param {Array} array The array to iterate over. + * @param {Function} callback The function that gets called for every array + * item. + * @returns {Array} A new array of values returned by the callback function. + */ +function map(array, fn) { + var length = array.length; + var result = []; + while (length--) { + result[length] = fn(array[length]); + } + return result; +} + +/** + * A simple `Array#map`-like wrapper to work with domain name strings or email + * addresses. + * @private + * @param {String} domain The domain name or email address. + * @param {Function} callback The function that gets called for every + * character. + * @returns {Array} A new string of characters returned by the callback + * function. + */ +function mapDomain(string, fn) { + var parts = string.split('@'); + var result = ''; + if (parts.length > 1) { + // In email addresses, only the domain name should be punycoded. Leave + // the local part (i.e. everything up to `@`) intact. + result = parts[0] + '@'; + string = parts[1]; + } + // Avoid `split(regex)` for IE8 compatibility. See #17. + string = string.replace(regexSeparators, '\x2E'); + var labels = string.split('.'); + var encoded = map(labels, fn).join('.'); + return result + encoded; +} + +/** + * Creates an array containing the numeric code points of each Unicode + * character in the string. While JavaScript uses UCS-2 internally, + * this function will convert a pair of surrogate halves (each of which + * UCS-2 exposes as separate characters) into a single code point, + * matching UTF-16. + * @see `punycode.ucs2.encode` + * @see + * @memberOf punycode.ucs2 + * @name decode + * @param {String} string The Unicode input string (UCS-2). + * @returns {Array} The new array of code points. + */ +function ucs2decode(string) { + var output = [], + counter = 0, + length = string.length, + value, + extra; + while (counter < length) { + value = string.charCodeAt(counter++); + if (value >= 0xD800 && value <= 0xDBFF && counter < length) { + // high surrogate, and there is a next character + extra = string.charCodeAt(counter++); + if ((extra & 0xFC00) == 0xDC00) { // low surrogate + output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000); + } else { + // unmatched surrogate; only append this code unit, in case the next + // code unit is the high surrogate of a surrogate pair + output.push(value); + counter--; + } + } else { + output.push(value); + } + } + return output; +} + +/** + * Converts a digit/integer into a basic code point. + * @see `basicToDigit()` + * @private + * @param {Number} digit The numeric value of a basic code point. + * @returns {Number} The basic code point whose value (when used for + * representing integers) is `digit`, which needs to be in the range + * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is + * used; else, the lowercase form is used. The behavior is undefined + * if `flag` is non-zero and `digit` has no uppercase form. + */ +function digitToBasic(digit, flag) { + // 0..25 map to ASCII a..z or A..Z + // 26..35 map to ASCII 0..9 + return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5); +} + +/** + * Bias adaptation function as per section 3.4 of RFC 3492. + * https://tools.ietf.org/html/rfc3492#section-3.4 + * @private + */ +function adapt(delta, numPoints, firstTime) { + var k = 0; + delta = firstTime ? floor(delta / damp) : delta >> 1; + delta += floor(delta / numPoints); + for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) { + delta = floor(delta / baseMinusTMin); + } + return floor(k + (baseMinusTMin + 1) * delta / (delta + skew)); +} + +/** + * Converts a string of Unicode symbols (e.g. a domain name label) to a + * Punycode string of ASCII-only symbols. + * @memberOf punycode + * @param {String} input The string of Unicode symbols. + * @returns {String} The resulting Punycode string of ASCII-only symbols. + */ +function encode(input) { + var n, + delta, + handledCPCount, + basicLength, + bias, + j, + m, + q, + k, + t, + currentValue, + output = [], + /** `inputLength` will hold the number of code points in `input`. */ + inputLength, + /** Cached calculation results */ + handledCPCountPlusOne, + baseMinusT, + qMinusT; + + // Convert the input in UCS-2 to Unicode + input = ucs2decode(input); + + // Cache the length + inputLength = input.length; + + // Initialize the state + n = initialN; + delta = 0; + bias = initialBias; + + // Handle the basic code points + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue < 0x80) { + output.push(stringFromCharCode(currentValue)); + } + } + + handledCPCount = basicLength = output.length; + + // `handledCPCount` is the number of code points that have been handled; + // `basicLength` is the number of basic code points. + + // Finish the basic string - if it is not empty - with a delimiter + if (basicLength) { + output.push(delimiter$1); + } + + // Main encoding loop: + while (handledCPCount < inputLength) { + + // All non-basic code points < n have been handled already. Find the next + // larger one: + for (m = maxInt, j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue >= n && currentValue < m) { + m = currentValue; + } + } + + // Increase `delta` enough to advance the decoder's state to , + // but guard against overflow + handledCPCountPlusOne = handledCPCount + 1; + if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) { + error('overflow'); + } + + delta += (m - n) * handledCPCountPlusOne; + n = m; + + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + + if (currentValue < n && ++delta > maxInt) { + error('overflow'); + } + + if (currentValue == n) { + // Represent delta as a generalized variable-length integer + for (q = delta, k = base; /* no condition */ ; k += base) { + t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias); + if (q < t) { + break; + } + qMinusT = q - t; + baseMinusT = base - t; + output.push( + stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0)) + ); + q = floor(qMinusT / baseMinusT); + } + + output.push(stringFromCharCode(digitToBasic(q, 0))); + bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength); + delta = 0; + ++handledCPCount; + } + } + + ++delta; + ++n; + + } + return output.join(''); +} + +/** + * Converts a Unicode string representing a domain name or an email address to + * Punycode. Only the non-ASCII parts of the domain name will be converted, + * i.e. it doesn't matter if you call it with a domain that's already in + * ASCII. + * @memberOf punycode + * @param {String} input The domain name or email address to convert, as a + * Unicode string. + * @returns {String} The Punycode representation of the given domain name or + * email address. + */ +function toASCII(input) { + return mapDomain(input, function(string) { + return regexNonASCII.test(string) ? + 'xn--' + encode(string) : + string; + }); +} + +// Copyright Joyent, Inc. and other Node contributors. + +function isNull(arg) { + return arg === null; +} + +function isNullOrUndefined(arg) { + return arg == null; +} + +function isString(arg) { + return typeof arg === 'string'; +} + +function isObject(arg) { + return typeof arg === 'object' && arg !== null; +} + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + + +// If obj.hasOwnProperty has been overridden, then calling +// obj.hasOwnProperty(prop) will break. +// See: https://github.com/joyent/node/issues/1707 +function hasOwnProperty$1(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop); +} +var isArray = Array.isArray || function (xs) { + return Object.prototype.toString.call(xs) === '[object Array]'; +}; +function stringifyPrimitive(v) { + switch (typeof v) { + case 'string': + return v; + + case 'boolean': + return v ? 'true' : 'false'; + + case 'number': + return isFinite(v) ? v : ''; + + default: + return ''; + } +} + +function stringify (obj, sep, eq, name) { + sep = sep || '&'; + eq = eq || '='; + if (obj === null) { + obj = undefined; + } + + if (typeof obj === 'object') { + return map$1(objectKeys(obj), function(k) { + var ks = encodeURIComponent(stringifyPrimitive(k)) + eq; + if (isArray(obj[k])) { + return map$1(obj[k], function(v) { + return ks + encodeURIComponent(stringifyPrimitive(v)); + }).join(sep); + } else { + return ks + encodeURIComponent(stringifyPrimitive(obj[k])); + } + }).join(sep); + + } + + if (!name) return ''; + return encodeURIComponent(stringifyPrimitive(name)) + eq + + encodeURIComponent(stringifyPrimitive(obj)); +} +function map$1 (xs, f) { + if (xs.map) return xs.map(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + res.push(f(xs[i], i)); + } + return res; +} + +var objectKeys = Object.keys || function (obj) { + var res = []; + for (var key in obj) { + if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key); + } + return res; +}; + +function parse(qs, sep, eq, options) { + sep = sep || '&'; + eq = eq || '='; + var obj = {}; + + if (typeof qs !== 'string' || qs.length === 0) { + return obj; + } + + var regexp = /\+/g; + qs = qs.split(sep); + + var maxKeys = 1000; + if (options && typeof options.maxKeys === 'number') { + maxKeys = options.maxKeys; + } + + var len = qs.length; + // maxKeys <= 0 means that we should not limit keys count + if (maxKeys > 0 && len > maxKeys) { + len = maxKeys; + } + + for (var i = 0; i < len; ++i) { + var x = qs[i].replace(regexp, '%20'), + idx = x.indexOf(eq), + kstr, vstr, k, v; + + if (idx >= 0) { + kstr = x.substr(0, idx); + vstr = x.substr(idx + 1); + } else { + kstr = x; + vstr = ''; + } + + k = decodeURIComponent(kstr); + v = decodeURIComponent(vstr); + + if (!hasOwnProperty$1(obj, k)) { + obj[k] = v; + } else if (isArray(obj[k])) { + obj[k].push(v); + } else { + obj[k] = [obj[k], v]; + } + } + + return obj; +} + +// Copyright Joyent, Inc. and other Node contributors. +var url = { + parse: urlParse, + resolve: urlResolve, + resolveObject: urlResolveObject, + format: urlFormat, + Url: Url +}; +function Url() { + this.protocol = null; + this.slashes = null; + this.auth = null; + this.host = null; + this.port = null; + this.hostname = null; + this.hash = null; + this.search = null; + this.query = null; + this.pathname = null; + this.path = null; + this.href = null; +} + +// Reference: RFC 3986, RFC 1808, RFC 2396 + +// define these here so at least they only have to be +// compiled once on the first module load. +var protocolPattern = /^([a-z0-9.+-]+:)/i, + portPattern = /:[0-9]*$/, + + // Special case for a simple path URL + simplePathPattern = /^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/, + + // RFC 2396: characters reserved for delimiting URLs. + // We actually just auto-escape these. + delims = ['<', '>', '"', '`', ' ', '\r', '\n', '\t'], + + // RFC 2396: characters not allowed for various reasons. + unwise = ['{', '}', '|', '\\', '^', '`'].concat(delims), + + // Allowed by RFCs, but cause of XSS attacks. Always escape these. + autoEscape = ['\''].concat(unwise), + // Characters that are never ever allowed in a hostname. + // Note that any invalid chars are also handled, but these + // are the ones that are *expected* to be seen, so we fast-path + // them. + nonHostChars = ['%', '/', '?', ';', '#'].concat(autoEscape), + hostEndingChars = ['/', '?', '#'], + hostnameMaxLen = 255, + hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/, + hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/, + // protocols that can allow "unsafe" and "unwise" chars. + unsafeProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that never have a hostname. + hostlessProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that always contain a // bit. + slashedProtocol = { + 'http': true, + 'https': true, + 'ftp': true, + 'gopher': true, + 'file': true, + 'http:': true, + 'https:': true, + 'ftp:': true, + 'gopher:': true, + 'file:': true + }; + +function urlParse(url, parseQueryString, slashesDenoteHost) { + if (url && isObject(url) && url instanceof Url) return url; + + var u = new Url; + u.parse(url, parseQueryString, slashesDenoteHost); + return u; +} +Url.prototype.parse = function(url, parseQueryString, slashesDenoteHost) { + return parse$1(this, url, parseQueryString, slashesDenoteHost); +}; + +function parse$1(self, url, parseQueryString, slashesDenoteHost) { + if (!isString(url)) { + throw new TypeError('Parameter \'url\' must be a string, not ' + typeof url); + } + + // Copy chrome, IE, opera backslash-handling behavior. + // Back slashes before the query string get converted to forward slashes + // See: https://code.google.com/p/chromium/issues/detail?id=25916 + var queryIndex = url.indexOf('?'), + splitter = + (queryIndex !== -1 && queryIndex < url.indexOf('#')) ? '?' : '#', + uSplit = url.split(splitter), + slashRegex = /\\/g; + uSplit[0] = uSplit[0].replace(slashRegex, '/'); + url = uSplit.join(splitter); + + var rest = url; + + // trim before proceeding. + // This is to support parse stuff like " http://foo.com \n" + rest = rest.trim(); + + if (!slashesDenoteHost && url.split('#').length === 1) { + // Try fast path regexp + var simplePath = simplePathPattern.exec(rest); + if (simplePath) { + self.path = rest; + self.href = rest; + self.pathname = simplePath[1]; + if (simplePath[2]) { + self.search = simplePath[2]; + if (parseQueryString) { + self.query = parse(self.search.substr(1)); + } else { + self.query = self.search.substr(1); + } + } else if (parseQueryString) { + self.search = ''; + self.query = {}; + } + return self; + } + } + + var proto = protocolPattern.exec(rest); + if (proto) { + proto = proto[0]; + var lowerProto = proto.toLowerCase(); + self.protocol = lowerProto; + rest = rest.substr(proto.length); + } + + // figure out if it's got a host + // user@server is *always* interpreted as a hostname, and url + // resolution will treat //foo/bar as host=foo,path=bar because that's + // how the browser resolves relative URLs. + if (slashesDenoteHost || proto || rest.match(/^\/\/[^@\/]+@[^@\/]+/)) { + var slashes = rest.substr(0, 2) === '//'; + if (slashes && !(proto && hostlessProtocol[proto])) { + rest = rest.substr(2); + self.slashes = true; + } + } + var i, hec, l, p; + if (!hostlessProtocol[proto] && + (slashes || (proto && !slashedProtocol[proto]))) { + + // there's a hostname. + // the first instance of /, ?, ;, or # ends the host. + // + // If there is an @ in the hostname, then non-host chars *are* allowed + // to the left of the last @ sign, unless some host-ending character + // comes *before* the @-sign. + // URLs are obnoxious. + // + // ex: + // http://a@b@c/ => user:a@b host:c + // http://a@b?@c => user:a host:c path:/?@c + + // v0.12 TODO(isaacs): This is not quite how Chrome does things. + // Review our test case against browsers more comprehensively. + + // find the first instance of any hostEndingChars + var hostEnd = -1; + for (i = 0; i < hostEndingChars.length; i++) { + hec = rest.indexOf(hostEndingChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + + // at this point, either we have an explicit point where the + // auth portion cannot go past, or the last @ char is the decider. + var auth, atSign; + if (hostEnd === -1) { + // atSign can be anywhere. + atSign = rest.lastIndexOf('@'); + } else { + // atSign must be in auth portion. + // http://a@b/c@d => host:b auth:a path:/c@d + atSign = rest.lastIndexOf('@', hostEnd); + } + + // Now we have a portion which is definitely the auth. + // Pull that off. + if (atSign !== -1) { + auth = rest.slice(0, atSign); + rest = rest.slice(atSign + 1); + self.auth = decodeURIComponent(auth); + } + + // the host is the remaining to the left of the first non-host char + hostEnd = -1; + for (i = 0; i < nonHostChars.length; i++) { + hec = rest.indexOf(nonHostChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + // if we still have not hit it, then the entire thing is a host. + if (hostEnd === -1) + hostEnd = rest.length; + + self.host = rest.slice(0, hostEnd); + rest = rest.slice(hostEnd); + + // pull out port. + parseHost(self); + + // we've indicated that there is a hostname, + // so even if it's empty, it has to be present. + self.hostname = self.hostname || ''; + + // if hostname begins with [ and ends with ] + // assume that it's an IPv6 address. + var ipv6Hostname = self.hostname[0] === '[' && + self.hostname[self.hostname.length - 1] === ']'; + + // validate a little. + if (!ipv6Hostname) { + var hostparts = self.hostname.split(/\./); + for (i = 0, l = hostparts.length; i < l; i++) { + var part = hostparts[i]; + if (!part) continue; + if (!part.match(hostnamePartPattern)) { + var newpart = ''; + for (var j = 0, k = part.length; j < k; j++) { + if (part.charCodeAt(j) > 127) { + // we replace non-ASCII char with a temporary placeholder + // we need this to make sure size of hostname is not + // broken by replacing non-ASCII by nothing + newpart += 'x'; + } else { + newpart += part[j]; + } + } + // we test again with ASCII char only + if (!newpart.match(hostnamePartPattern)) { + var validParts = hostparts.slice(0, i); + var notHost = hostparts.slice(i + 1); + var bit = part.match(hostnamePartStart); + if (bit) { + validParts.push(bit[1]); + notHost.unshift(bit[2]); + } + if (notHost.length) { + rest = '/' + notHost.join('.') + rest; + } + self.hostname = validParts.join('.'); + break; + } + } + } + } + + if (self.hostname.length > hostnameMaxLen) { + self.hostname = ''; + } else { + // hostnames are always lower case. + self.hostname = self.hostname.toLowerCase(); + } + + if (!ipv6Hostname) { + // IDNA Support: Returns a punycoded representation of "domain". + // It only converts parts of the domain name that + // have non-ASCII characters, i.e. it doesn't matter if + // you call it with a domain that already is ASCII-only. + self.hostname = toASCII(self.hostname); + } + + p = self.port ? ':' + self.port : ''; + var h = self.hostname || ''; + self.host = h + p; + self.href += self.host; + + // strip [ and ] from the hostname + // the host field still retains them, though + if (ipv6Hostname) { + self.hostname = self.hostname.substr(1, self.hostname.length - 2); + if (rest[0] !== '/') { + rest = '/' + rest; + } + } + } + + // now rest is set to the post-host stuff. + // chop off any delim chars. + if (!unsafeProtocol[lowerProto]) { + + // First, make 100% sure that any "autoEscape" chars get + // escaped, even if encodeURIComponent doesn't think they + // need to be. + for (i = 0, l = autoEscape.length; i < l; i++) { + var ae = autoEscape[i]; + if (rest.indexOf(ae) === -1) + continue; + var esc = encodeURIComponent(ae); + if (esc === ae) { + esc = escape(ae); + } + rest = rest.split(ae).join(esc); + } + } + + + // chop off from the tail first. + var hash = rest.indexOf('#'); + if (hash !== -1) { + // got a fragment string. + self.hash = rest.substr(hash); + rest = rest.slice(0, hash); + } + var qm = rest.indexOf('?'); + if (qm !== -1) { + self.search = rest.substr(qm); + self.query = rest.substr(qm + 1); + if (parseQueryString) { + self.query = parse(self.query); + } + rest = rest.slice(0, qm); + } else if (parseQueryString) { + // no query string, but parseQueryString still requested + self.search = ''; + self.query = {}; + } + if (rest) self.pathname = rest; + if (slashedProtocol[lowerProto] && + self.hostname && !self.pathname) { + self.pathname = '/'; + } + + //to support http.request + if (self.pathname || self.search) { + p = self.pathname || ''; + var s = self.search || ''; + self.path = p + s; + } + + // finally, reconstruct the href based on what has been validated. + self.href = format(self); + return self; +} + +// format a parsed object into a url string +function urlFormat(obj) { + // ensure it's an object, and not a string url. + // If it's an obj, this is a no-op. + // this way, you can call url_format() on strings + // to clean up potentially wonky urls. + if (isString(obj)) obj = parse$1({}, obj); + return format(obj); +} + +function format(self) { + var auth = self.auth || ''; + if (auth) { + auth = encodeURIComponent(auth); + auth = auth.replace(/%3A/i, ':'); + auth += '@'; + } + + var protocol = self.protocol || '', + pathname = self.pathname || '', + hash = self.hash || '', + host = false, + query = ''; + + if (self.host) { + host = auth + self.host; + } else if (self.hostname) { + host = auth + (self.hostname.indexOf(':') === -1 ? + self.hostname : + '[' + this.hostname + ']'); + if (self.port) { + host += ':' + self.port; + } + } + + if (self.query && + isObject(self.query) && + Object.keys(self.query).length) { + query = stringify(self.query); + } + + var search = self.search || (query && ('?' + query)) || ''; + + if (protocol && protocol.substr(-1) !== ':') protocol += ':'; + + // only the slashedProtocols get the //. Not mailto:, xmpp:, etc. + // unless they had them to begin with. + if (self.slashes || + (!protocol || slashedProtocol[protocol]) && host !== false) { + host = '//' + (host || ''); + if (pathname && pathname.charAt(0) !== '/') pathname = '/' + pathname; + } else if (!host) { + host = ''; + } + + if (hash && hash.charAt(0) !== '#') hash = '#' + hash; + if (search && search.charAt(0) !== '?') search = '?' + search; + + pathname = pathname.replace(/[?#]/g, function(match) { + return encodeURIComponent(match); + }); + search = search.replace('#', '%23'); + + return protocol + host + pathname + search + hash; +} + +Url.prototype.format = function() { + return format(this); +}; + +function urlResolve(source, relative) { + return urlParse(source, false, true).resolve(relative); +} + +Url.prototype.resolve = function(relative) { + return this.resolveObject(urlParse(relative, false, true)).format(); +}; + +function urlResolveObject(source, relative) { + if (!source) return relative; + return urlParse(source, false, true).resolveObject(relative); +} + +Url.prototype.resolveObject = function(relative) { + if (isString(relative)) { + var rel = new Url(); + rel.parse(relative, false, true); + relative = rel; + } + + var result = new Url(); + var tkeys = Object.keys(this); + for (var tk = 0; tk < tkeys.length; tk++) { + var tkey = tkeys[tk]; + result[tkey] = this[tkey]; + } + + // hash is always overridden, no matter what. + // even href="" will remove it. + result.hash = relative.hash; + + // if the relative url is empty, then there's nothing left to do here. + if (relative.href === '') { + result.href = result.format(); + return result; + } + + // hrefs like //foo/bar always cut to the protocol. + if (relative.slashes && !relative.protocol) { + // take everything except the protocol from relative + var rkeys = Object.keys(relative); + for (var rk = 0; rk < rkeys.length; rk++) { + var rkey = rkeys[rk]; + if (rkey !== 'protocol') + result[rkey] = relative[rkey]; + } + + //urlParse appends trailing / to urls like http://www.example.com + if (slashedProtocol[result.protocol] && + result.hostname && !result.pathname) { + result.path = result.pathname = '/'; + } + + result.href = result.format(); + return result; + } + var relPath; + if (relative.protocol && relative.protocol !== result.protocol) { + // if it's a known url protocol, then changing + // the protocol does weird things + // first, if it's not file:, then we MUST have a host, + // and if there was a path + // to begin with, then we MUST have a path. + // if it is file:, then the host is dropped, + // because that's known to be hostless. + // anything else is assumed to be absolute. + if (!slashedProtocol[relative.protocol]) { + var keys = Object.keys(relative); + for (var v = 0; v < keys.length; v++) { + var k = keys[v]; + result[k] = relative[k]; + } + result.href = result.format(); + return result; + } + + result.protocol = relative.protocol; + if (!relative.host && !hostlessProtocol[relative.protocol]) { + relPath = (relative.pathname || '').split('/'); + while (relPath.length && !(relative.host = relPath.shift())); + if (!relative.host) relative.host = ''; + if (!relative.hostname) relative.hostname = ''; + if (relPath[0] !== '') relPath.unshift(''); + if (relPath.length < 2) relPath.unshift(''); + result.pathname = relPath.join('/'); + } else { + result.pathname = relative.pathname; + } + result.search = relative.search; + result.query = relative.query; + result.host = relative.host || ''; + result.auth = relative.auth; + result.hostname = relative.hostname || relative.host; + result.port = relative.port; + // to support http.request + if (result.pathname || result.search) { + var p = result.pathname || ''; + var s = result.search || ''; + result.path = p + s; + } + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; + } + + var isSourceAbs = (result.pathname && result.pathname.charAt(0) === '/'), + isRelAbs = ( + relative.host || + relative.pathname && relative.pathname.charAt(0) === '/' + ), + mustEndAbs = (isRelAbs || isSourceAbs || + (result.host && relative.pathname)), + removeAllDots = mustEndAbs, + srcPath = result.pathname && result.pathname.split('/') || [], + psychotic = result.protocol && !slashedProtocol[result.protocol]; + relPath = relative.pathname && relative.pathname.split('/') || []; + // if the url is a non-slashed url, then relative + // links like ../.. should be able + // to crawl up to the hostname, as well. This is strange. + // result.protocol has already been set by now. + // Later on, put the first path part into the host field. + if (psychotic) { + result.hostname = ''; + result.port = null; + if (result.host) { + if (srcPath[0] === '') srcPath[0] = result.host; + else srcPath.unshift(result.host); + } + result.host = ''; + if (relative.protocol) { + relative.hostname = null; + relative.port = null; + if (relative.host) { + if (relPath[0] === '') relPath[0] = relative.host; + else relPath.unshift(relative.host); + } + relative.host = null; + } + mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === ''); + } + var authInHost; + if (isRelAbs) { + // it's absolute. + result.host = (relative.host || relative.host === '') ? + relative.host : result.host; + result.hostname = (relative.hostname || relative.hostname === '') ? + relative.hostname : result.hostname; + result.search = relative.search; + result.query = relative.query; + srcPath = relPath; + // fall through to the dot-handling below. + } else if (relPath.length) { + // it's relative + // throw away the existing file, and take the new path instead. + if (!srcPath) srcPath = []; + srcPath.pop(); + srcPath = srcPath.concat(relPath); + result.search = relative.search; + result.query = relative.query; + } else if (!isNullOrUndefined(relative.search)) { + // just pull out the search. + // like href='?foo'. + // Put this after the other two cases because it simplifies the booleans + if (psychotic) { + result.hostname = result.host = srcPath.shift(); + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + result.search = relative.search; + result.query = relative.query; + //to support http.request + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.href = result.format(); + return result; + } + + if (!srcPath.length) { + // no path at all. easy. + // we've already handled the other stuff above. + result.pathname = null; + //to support http.request + if (result.search) { + result.path = '/' + result.search; + } else { + result.path = null; + } + result.href = result.format(); + return result; + } + + // if a url ENDs in . or .., then it must get a trailing slash. + // however, if it ends in anything else non-slashy, + // then it must NOT get a trailing slash. + var last = srcPath.slice(-1)[0]; + var hasTrailingSlash = ( + (result.host || relative.host || srcPath.length > 1) && + (last === '.' || last === '..') || last === ''); + + // strip single dots, resolve double dots to parent dir + // if the path tries to go above the root, `up` ends up > 0 + var up = 0; + for (var i = srcPath.length; i >= 0; i--) { + last = srcPath[i]; + if (last === '.') { + srcPath.splice(i, 1); + } else if (last === '..') { + srcPath.splice(i, 1); + up++; + } else if (up) { + srcPath.splice(i, 1); + up--; + } + } + + // if the path is allowed to go above the root, restore leading ..s + if (!mustEndAbs && !removeAllDots) { + for (; up--; up) { + srcPath.unshift('..'); + } + } + + if (mustEndAbs && srcPath[0] !== '' && + (!srcPath[0] || srcPath[0].charAt(0) !== '/')) { + srcPath.unshift(''); + } + + if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) { + srcPath.push(''); + } + + var isAbsolute = srcPath[0] === '' || + (srcPath[0] && srcPath[0].charAt(0) === '/'); + + // put the host back + if (psychotic) { + result.hostname = result.host = isAbsolute ? '' : + srcPath.length ? srcPath.shift() : ''; + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + + mustEndAbs = mustEndAbs || (result.host && srcPath.length); + + if (mustEndAbs && !isAbsolute) { + srcPath.unshift(''); + } + + if (!srcPath.length) { + result.pathname = null; + result.path = null; + } else { + result.pathname = srcPath.join('/'); + } + + //to support request.http + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.auth = relative.auth || result.auth; + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; +}; + +Url.prototype.parseHost = function() { + return parseHost(this); +}; + +function parseHost(self) { + var host = self.host; + var port = portPattern.exec(host); + if (port) { + port = port[0]; + if (port !== ':') { + self.port = port.substr(1); + } + host = host.substr(0, host.length - port.length); + } + if (host) self.hostname = host; +} + +/*! + * @pixi/constants - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/constants is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * Different types of environments for WebGL. + * + * @static + * @memberof PIXI + * @name ENV + * @enum {number} + * @property {number} WEBGL_LEGACY - Used for older v1 WebGL devices. PixiJS will aim to ensure compatibility + * with older / less advanced devices. If you experience unexplained flickering prefer this environment. + * @property {number} WEBGL - Version 1 of WebGL + * @property {number} WEBGL2 - Version 2 of WebGL + */ +var ENV = { + WEBGL_LEGACY: 0, + WEBGL: 1, + WEBGL2: 2, +}; + +/** + * Constant to identify the Renderer Type. + * + * @static + * @memberof PIXI + * @name RENDERER_TYPE + * @enum {number} + * @property {number} UNKNOWN - Unknown render type. + * @property {number} WEBGL - WebGL render type. + * @property {number} CANVAS - Canvas render type. + */ +var RENDERER_TYPE = { + UNKNOWN: 0, + WEBGL: 1, + CANVAS: 2, +}; + +/** + * Various blend modes supported by PIXI. + * + * IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes. + * Anything else will silently act like NORMAL. + * + * @memberof PIXI + * @name BLEND_MODES + * @enum {number} + * @property {number} NORMAL + * @property {number} ADD + * @property {number} MULTIPLY + * @property {number} SCREEN + * @property {number} OVERLAY + * @property {number} DARKEN + * @property {number} LIGHTEN + * @property {number} COLOR_DODGE + * @property {number} COLOR_BURN + * @property {number} HARD_LIGHT + * @property {number} SOFT_LIGHT + * @property {number} DIFFERENCE + * @property {number} EXCLUSION + * @property {number} HUE + * @property {number} SATURATION + * @property {number} COLOR + * @property {number} LUMINOSITY + * @property {number} NORMAL_NPM + * @property {number} ADD_NPM + * @property {number} SCREEN_NPM + * @property {number} NONE + * @property {number} SRC_IN + * @property {number} SRC_OUT + * @property {number} SRC_ATOP + * @property {number} DST_OVER + * @property {number} DST_IN + * @property {number} DST_OUT + * @property {number} DST_ATOP + * @property {number} SUBTRACT + * @property {number} SRC_OVER + * @property {number} ERASE + */ +var BLEND_MODES = { + NORMAL: 0, + ADD: 1, + MULTIPLY: 2, + SCREEN: 3, + OVERLAY: 4, + DARKEN: 5, + LIGHTEN: 6, + COLOR_DODGE: 7, + COLOR_BURN: 8, + HARD_LIGHT: 9, + SOFT_LIGHT: 10, + DIFFERENCE: 11, + EXCLUSION: 12, + HUE: 13, + SATURATION: 14, + COLOR: 15, + LUMINOSITY: 16, + NORMAL_NPM: 17, + ADD_NPM: 18, + SCREEN_NPM: 19, + NONE: 20, + + SRC_OVER: 0, + SRC_IN: 21, + SRC_OUT: 22, + SRC_ATOP: 23, + DST_OVER: 24, + DST_IN: 25, + DST_OUT: 26, + DST_ATOP: 27, + ERASE: 26, + SUBTRACT: 28, +}; + +/** + * Various webgl draw modes. These can be used to specify which GL drawMode to use + * under certain situations and renderers. + * + * @memberof PIXI + * @static + * @name DRAW_MODES + * @enum {number} + * @property {number} POINTS + * @property {number} LINES + * @property {number} LINE_LOOP + * @property {number} LINE_STRIP + * @property {number} TRIANGLES + * @property {number} TRIANGLE_STRIP + * @property {number} TRIANGLE_FAN + */ +var DRAW_MODES = { + POINTS: 0, + LINES: 1, + LINE_LOOP: 2, + LINE_STRIP: 3, + TRIANGLES: 4, + TRIANGLE_STRIP: 5, + TRIANGLE_FAN: 6, +}; + +/** + * Various GL texture/resources formats. + * + * @memberof PIXI + * @static + * @name FORMATS + * @enum {number} + * @property {number} RGBA=6408 + * @property {number} RGB=6407 + * @property {number} ALPHA=6406 + * @property {number} LUMINANCE=6409 + * @property {number} LUMINANCE_ALPHA=6410 + * @property {number} DEPTH_COMPONENT=6402 + * @property {number} DEPTH_STENCIL=34041 + */ +var FORMATS = { + RGBA: 6408, + RGB: 6407, + ALPHA: 6406, + LUMINANCE: 6409, + LUMINANCE_ALPHA: 6410, + DEPTH_COMPONENT: 6402, + DEPTH_STENCIL: 34041, +}; + +/** + * Various GL target types. + * + * @memberof PIXI + * @static + * @name TARGETS + * @enum {number} + * @property {number} TEXTURE_2D=3553 + * @property {number} TEXTURE_CUBE_MAP=34067 + * @property {number} TEXTURE_2D_ARRAY=35866 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_X=34069 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_X=34070 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Y=34071 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Y=34072 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Z=34073 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Z=34074 + */ +var TARGETS = { + TEXTURE_2D: 3553, + TEXTURE_CUBE_MAP: 34067, + TEXTURE_2D_ARRAY: 35866, + TEXTURE_CUBE_MAP_POSITIVE_X: 34069, + TEXTURE_CUBE_MAP_NEGATIVE_X: 34070, + TEXTURE_CUBE_MAP_POSITIVE_Y: 34071, + TEXTURE_CUBE_MAP_NEGATIVE_Y: 34072, + TEXTURE_CUBE_MAP_POSITIVE_Z: 34073, + TEXTURE_CUBE_MAP_NEGATIVE_Z: 34074, +}; + +/** + * Various GL data format types. + * + * @memberof PIXI + * @static + * @name TYPES + * @enum {number} + * @property {number} UNSIGNED_BYTE=5121 + * @property {number} UNSIGNED_SHORT=5123 + * @property {number} UNSIGNED_SHORT_5_6_5=33635 + * @property {number} UNSIGNED_SHORT_4_4_4_4=32819 + * @property {number} UNSIGNED_SHORT_5_5_5_1=32820 + * @property {number} FLOAT=5126 + * @property {number} HALF_FLOAT=36193 + */ +var TYPES = { + UNSIGNED_BYTE: 5121, + UNSIGNED_SHORT: 5123, + UNSIGNED_SHORT_5_6_5: 33635, + UNSIGNED_SHORT_4_4_4_4: 32819, + UNSIGNED_SHORT_5_5_5_1: 32820, + FLOAT: 5126, + HALF_FLOAT: 36193, +}; + +/** + * The scale modes that are supported by pixi. + * + * The {@link PIXI.settings.SCALE_MODE} scale mode affects the default scaling mode of future operations. + * It can be re-assigned to either LINEAR or NEAREST, depending upon suitability. + * + * @memberof PIXI + * @static + * @name SCALE_MODES + * @enum {number} + * @property {number} LINEAR Smooth scaling + * @property {number} NEAREST Pixelating scaling + */ +var SCALE_MODES = { + LINEAR: 1, + NEAREST: 0, +}; + +/** + * The wrap modes that are supported by pixi. + * + * The {@link PIXI.settings.WRAP_MODE} wrap mode affects the default wrapping mode of future operations. + * It can be re-assigned to either CLAMP or REPEAT, depending upon suitability. + * If the texture is non power of two then clamp will be used regardless as WebGL can + * only use REPEAT if the texture is po2. + * + * This property only affects WebGL. + * + * @name WRAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} CLAMP - The textures uvs are clamped + * @property {number} REPEAT - The texture uvs tile and repeat + * @property {number} MIRRORED_REPEAT - The texture uvs tile and repeat with mirroring + */ +var WRAP_MODES = { + CLAMP: 33071, + REPEAT: 10497, + MIRRORED_REPEAT: 33648, +}; + +/** + * Mipmap filtering modes that are supported by pixi. + * + * The {@link PIXI.settings.MIPMAP_TEXTURES} affects default texture filtering. + * Mipmaps are generated for a baseTexture if its `mipmap` field is `ON`, + * or its `POW2` and texture dimensions are powers of 2. + * Due to platform restriction, `ON` option will work like `POW2` for webgl-1. + * + * This property only affects WebGL. + * + * @name MIPMAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} OFF - No mipmaps + * @property {number} POW2 - Generate mipmaps if texture dimensions are pow2 + * @property {number} ON - Always generate mipmaps + */ +var MIPMAP_MODES = { + OFF: 0, + POW2: 1, + ON: 2, +}; + +/** + * The gc modes that are supported by pixi. + * + * The {@link PIXI.settings.GC_MODE} Garbage Collection mode for PixiJS textures is AUTO + * If set to GC_MODE, the renderer will occasionally check textures usage. If they are not + * used for a specified period of time they will be removed from the GPU. They will of course + * be uploaded again when they are required. This is a silent behind the scenes process that + * should ensure that the GPU does not get filled up. + * + * Handy for mobile devices! + * This property only affects WebGL. + * + * @name GC_MODES + * @enum {number} + * @static + * @memberof PIXI + * @property {number} AUTO - Garbage collection will happen periodically automatically + * @property {number} MANUAL - Garbage collection will need to be called manually + */ +var GC_MODES = { + AUTO: 0, + MANUAL: 1, +}; + +/** + * Constants that specify float precision in shaders. + * + * @name PRECISION + * @memberof PIXI + * @static + * @enum {string} + * @constant + * @property {string} LOW='lowp' + * @property {string} MEDIUM='mediump' + * @property {string} HIGH='highp' + */ +var PRECISION = { + LOW: 'lowp', + MEDIUM: 'mediump', + HIGH: 'highp', +}; + +/*! + * @pixi/utils - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/utils is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The prefix that denotes a URL is for a retina asset. + * + * @static + * @name RETINA_PREFIX + * @memberof PIXI.settings + * @type {RegExp} + * @default /@([0-9\.]+)x/ + * @example `@2x` + */ +settings.RETINA_PREFIX = /@([0-9\.]+)x/; + +/** + * Should the `failIfMajorPerformanceCaveat` flag be enabled as a context option used in the `isWebGLSupported` function. + * For most scenarios this should be left as true, as otherwise the user may have a poor experience. + * However, it can be useful to disable under certain scenarios, such as headless unit tests. + * + * @static + * @name FAIL_IF_MAJOR_PERFORMANCE_CAVEAT + * @memberof PIXI.settings + * @type {boolean} + * @default true + */ +settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = true; + +var saidHello = false; +var VERSION = '5.1.3'; + +/** + * Logs out the version and renderer information for this running instance of PIXI. + * If you don't want to see this message you can run `PIXI.utils.skipHello()` before + * creating your renderer. Keep in mind that doing that will forever make you a jerk face. + * + * @static + * @function sayHello + * @memberof PIXI.utils + * @param {string} type - The string renderer type to log. + */ +function sayHello(type) +{ + if (saidHello) + { + return; + } + + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + var args = [ + ("\n %c %c %c PixiJS " + VERSION + " - ✰ " + type + " ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \n\n"), + 'background: #ff66a5; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff66a5; background: #030307; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'background: #ffc3dc; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;' ]; + + window.console.log.apply(console, args); + } + else if (window.console) + { + window.console.log(("PixiJS " + VERSION + " - " + type + " - http://www.pixijs.com/")); + } + + saidHello = true; +} + +var supported; + +/** + * Helper for checking for WebGL support. + * + * @memberof PIXI.utils + * @function isWebGLSupported + * @return {boolean} Is WebGL supported. + */ +function isWebGLSupported() +{ + if (typeof supported === 'undefined') + { + supported = (function supported() + { + var contextOptions = { + stencil: true, + failIfMajorPerformanceCaveat: settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT, + }; + + try + { + if (!window.WebGLRenderingContext) + { + return false; + } + + var canvas = document.createElement('canvas'); + var gl = canvas.getContext('webgl', contextOptions) + || canvas.getContext('experimental-webgl', contextOptions); + + var success = !!(gl && gl.getContextAttributes().stencil); + + if (gl) + { + var loseContext = gl.getExtension('WEBGL_lose_context'); + + if (loseContext) + { + loseContext.loseContext(); + } + } + + gl = null; + + return success; + } + catch (e) + { + return false; + } + })(); + } + + return supported; +} + +/** + * Converts a hexadecimal color number to an [R, G, B] array of normalized floats (numbers from 0.0 to 1.0). + * + * @example + * PIXI.utils.hex2rgb(0xffffff); // returns [1, 1, 1] + * @memberof PIXI.utils + * @function hex2rgb + * @param {number} hex - The hexadecimal number to convert + * @param {number[]} [out=[]] If supplied, this array will be used rather than returning a new one + * @return {number[]} An array representing the [R, G, B] of the color where all values are floats. + */ +function hex2rgb(hex, out) +{ + out = out || []; + + out[0] = ((hex >> 16) & 0xFF) / 255; + out[1] = ((hex >> 8) & 0xFF) / 255; + out[2] = (hex & 0xFF) / 255; + + return out; +} + +/** + * Converts a hexadecimal color number to a string. + * + * @example + * PIXI.utils.hex2string(0xffffff); // returns "#ffffff" + * @memberof PIXI.utils + * @function hex2string + * @param {number} hex - Number in hex (e.g., `0xffffff`) + * @return {string} The string color (e.g., `"#ffffff"`). + */ +function hex2string(hex) +{ + hex = hex.toString(16); + hex = '000000'.substr(0, 6 - hex.length) + hex; + + return ("#" + hex); +} + +/** + * Converts a hexadecimal string to a hexadecimal color number. + * + * @example + * PIXI.utils.string2hex("#ffffff"); // returns 0xffffff + * @memberof PIXI.utils + * @function string2hex + * @param {string} The string color (e.g., `"#ffffff"`) + * @return {number} Number in hexadecimal. + */ +function string2hex(string) +{ + if (typeof string === 'string' && string[0] === '#') + { + string = string.substr(1); + } + + return parseInt(string, 16); +} + +/** + * Corrects PixiJS blend, takes premultiplied alpha into account + * + * @memberof PIXI.utils + * @function mapPremultipliedBlendModes + * @private + * @param {Array} [array] - The array to output into. + * @return {Array} Mapped modes. + */ +function mapPremultipliedBlendModes() +{ + var pm = []; + var npm = []; + + for (var i = 0; i < 32; i++) + { + pm[i] = i; + npm[i] = i; + } + + pm[BLEND_MODES.NORMAL_NPM] = BLEND_MODES.NORMAL; + pm[BLEND_MODES.ADD_NPM] = BLEND_MODES.ADD; + pm[BLEND_MODES.SCREEN_NPM] = BLEND_MODES.SCREEN; + + npm[BLEND_MODES.NORMAL] = BLEND_MODES.NORMAL_NPM; + npm[BLEND_MODES.ADD] = BLEND_MODES.ADD_NPM; + npm[BLEND_MODES.SCREEN] = BLEND_MODES.SCREEN_NPM; + + var array = []; + + array.push(npm); + array.push(pm); + + return array; +} + +/** + * maps premultiply flag and blendMode to adjusted blendMode + * @memberof PIXI.utils + * @const premultiplyBlendMode + * @type {Array} + */ +var premultiplyBlendMode = mapPremultipliedBlendModes(); + +/** + * changes blendMode according to texture format + * + * @memberof PIXI.utils + * @function correctBlendMode + * @param {number} blendMode supposed blend mode + * @param {boolean} premultiplied whether source is premultiplied + * @returns {number} true blend mode for this texture + */ +function correctBlendMode(blendMode, premultiplied) +{ + return premultiplyBlendMode[premultiplied ? 1 : 0][blendMode]; +} + +/** + * combines rgb and alpha to out array + * + * @memberof PIXI.utils + * @function premultiplyRgba + * @param {Float32Array|number[]} rgb input rgb + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyRgba(rgb, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + if (premultiply || premultiply === undefined) + { + out[0] = rgb[0] * alpha; + out[1] = rgb[1] * alpha; + out[2] = rgb[2] * alpha; + } + else + { + out[0] = rgb[0]; + out[1] = rgb[1]; + out[2] = rgb[2]; + } + out[3] = alpha; + + return out; +} + +/** + * premultiplies tint + * + * @memberof PIXI.utils + * @function premultiplyTint + * @param {number} tint integer RGB + * @param {number} alpha floating point alpha (0.0-1.0) + * @returns {number} tint multiplied by alpha + */ +function premultiplyTint(tint, alpha) +{ + if (alpha === 1.0) + { + return (alpha * 255 << 24) + tint; + } + if (alpha === 0.0) + { + return 0; + } + var R = ((tint >> 16) & 0xFF); + var G = ((tint >> 8) & 0xFF); + var B = (tint & 0xFF); + + R = ((R * alpha) + 0.5) | 0; + G = ((G * alpha) + 0.5) | 0; + B = ((B * alpha) + 0.5) | 0; + + return (alpha * 255 << 24) + (R << 16) + (G << 8) + B; +} + +/** + * converts integer tint and float alpha to vec4 form, premultiplies by default + * + * @memberof PIXI.utils + * @function premultiplyTintToRgba + * @param {number} tint input tint + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyTintToRgba(tint, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + out[0] = ((tint >> 16) & 0xFF) / 255.0; + out[1] = ((tint >> 8) & 0xFF) / 255.0; + out[2] = (tint & 0xFF) / 255.0; + if (premultiply || premultiply === undefined) + { + out[0] *= alpha; + out[1] *= alpha; + out[2] *= alpha; + } + out[3] = alpha; + + return out; +} + +/** + * Generic Mask Stack data structure + * + * @memberof PIXI.utils + * @function createIndicesForQuads + * @param {number} size - Number of quads + * @param {Uint16Array|Uint32Array} [outBuffer] - Buffer for output, length has to be `6 * size` + * @return {Uint16Array|Uint32Array} - Resulting index buffer + */ +function createIndicesForQuads(size, outBuffer) +{ + if ( outBuffer === void 0 ) outBuffer = null; + + // the total number of indices in our array, there are 6 points per quad. + var totalIndices = size * 6; + + outBuffer = outBuffer || new Uint16Array(totalIndices); + + if (outBuffer.length !== totalIndices) + { + throw new Error(("Out buffer length is incorrect, got " + (outBuffer.length) + " and expected " + totalIndices)); + } + + // fill the indices with the quads to draw + for (var i = 0, j = 0; i < totalIndices; i += 6, j += 4) + { + outBuffer[i + 0] = j + 0; + outBuffer[i + 1] = j + 1; + outBuffer[i + 2] = j + 2; + outBuffer[i + 3] = j + 0; + outBuffer[i + 4] = j + 2; + outBuffer[i + 5] = j + 3; + } + + return outBuffer; +} + +/** + * Remove items from a javascript array without generating garbage + * + * @function removeItems + * @memberof PIXI.utils + * @param {Array} arr Array to remove elements from + * @param {number} startIdx starting index + * @param {number} removeCount how many to remove + */ +function removeItems(arr, startIdx, removeCount) +{ + var length = arr.length; + var i; + + if (startIdx >= length || removeCount === 0) + { + return; + } + + removeCount = (startIdx + removeCount > length ? length - startIdx : removeCount); + + var len = length - removeCount; + + for (i = startIdx; i < len; ++i) + { + arr[i] = arr[i + removeCount]; + } + + arr.length = len; +} + +var nextUid = 0; + +/** + * Gets the next unique identifier + * + * @memberof PIXI.utils + * @function uid + * @return {number} The next unique identifier to use. + */ +function uid() +{ + return ++nextUid; +} + +/** + * Returns sign of number + * + * @memberof PIXI.utils + * @function sign + * @param {number} n - the number to check the sign of + * @returns {number} 0 if `n` is 0, -1 if `n` is negative, 1 if `n` is positive + */ +function sign$1(n) +{ + if (n === 0) { return 0; } + + return n < 0 ? -1 : 1; +} + +// Taken from the bit-twiddle package + +/** + * Rounds to next power of two. + * + * @function nextPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} + */ +function nextPow2(v) +{ + v += v === 0; + --v; + v |= v >>> 1; + v |= v >>> 2; + v |= v >>> 4; + v |= v >>> 8; + v |= v >>> 16; + + return v + 1; +} + +/** + * Checks if a number is a power of two. + * + * @function isPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {boolean} `true` if value is power of two + */ +function isPow2(v) +{ + return !(v & (v - 1)) && (!!v); +} + +/** + * Computes ceil of log base 2 + * + * @function log2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} logarithm base 2 + */ +function log2(v) +{ + var r = (v > 0xFFFF) << 4; + + v >>>= r; + + var shift = (v > 0xFF) << 3; + + v >>>= shift; r |= shift; + shift = (v > 0xF) << 2; + v >>>= shift; r |= shift; + shift = (v > 0x3) << 1; + v >>>= shift; r |= shift; + + return r | (v >> 1); +} + +/** + * @todo Describe property usage + * + * @static + * @name ProgramCache + * @memberof PIXI.utils + * @type {Object} + */ +var ProgramCache = {}; + +/** + * @todo Describe property usage + * + * @static + * @name TextureCache + * @memberof PIXI.utils + * @type {Object} + */ +var TextureCache = Object.create(null); + +/** + * @todo Describe property usage + * + * @static + * @name BaseTextureCache + * @memberof PIXI.utils + * @type {Object} + */ + +var BaseTextureCache = Object.create(null); + +/** + * Trim transparent borders from a canvas + * + * @memberof PIXI.utils + * @function trimCanvas + * @param {HTMLCanvasElement} canvas - the canvas to trim + * @returns {object} Trim data + */ +function trimCanvas(canvas) +{ + // https://gist.github.com/remy/784508 + + var width = canvas.width; + var height = canvas.height; + + var context = canvas.getContext('2d'); + var imageData = context.getImageData(0, 0, width, height); + var pixels = imageData.data; + var len = pixels.length; + + var bound = { + top: null, + left: null, + right: null, + bottom: null, + }; + var data = null; + var i; + var x; + var y; + + for (i = 0; i < len; i += 4) + { + if (pixels[i + 3] !== 0) + { + x = (i / 4) % width; + y = ~~((i / 4) / width); + + if (bound.top === null) + { + bound.top = y; + } + + if (bound.left === null) + { + bound.left = x; + } + else if (x < bound.left) + { + bound.left = x; + } + + if (bound.right === null) + { + bound.right = x + 1; + } + else if (bound.right < x) + { + bound.right = x + 1; + } + + if (bound.bottom === null) + { + bound.bottom = y; + } + else if (bound.bottom < y) + { + bound.bottom = y; + } + } + } + + if (bound.top !== null) + { + width = bound.right - bound.left; + height = bound.bottom - bound.top + 1; + data = context.getImageData(bound.left, bound.top, width, height); + } + + return { + height: height, + width: width, + data: data, + }; +} + +/** + * Creates a Canvas element of the given size to be used as a target for rendering to. + * + * @class + * @memberof PIXI.utils + */ +var CanvasRenderTarget = function CanvasRenderTarget(width, height, resolution) +{ + /** + * The Canvas object that belongs to this CanvasRenderTarget. + * + * @member {HTMLCanvasElement} + */ + this.canvas = document.createElement('canvas'); + + /** + * A CanvasRenderingContext2D object representing a two-dimensional rendering context. + * + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + this.resolution = resolution || settings.RESOLUTION; + + this.resize(width, height); +}; + +var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + +/** + * Clears the canvas that was created by the CanvasRenderTarget class. + * + * @private + */ +CanvasRenderTarget.prototype.clear = function clear () +{ + this.context.setTransform(1, 0, 0, 1, 0, 0); + this.context.clearRect(0, 0, this.canvas.width, this.canvas.height); +}; + +/** + * Resizes the canvas to the specified width and height. + * + * @param {number} width - the new width of the canvas + * @param {number} height - the new height of the canvas + */ +CanvasRenderTarget.prototype.resize = function resize (width, height) +{ + this.canvas.width = width * this.resolution; + this.canvas.height = height * this.resolution; +}; + +/** + * Destroys this canvas. + * + */ +CanvasRenderTarget.prototype.destroy = function destroy () +{ + this.context = null; + this.canvas = null; +}; + +/** + * The width of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.width.get = function () +{ + return this.canvas.width; +}; + +prototypeAccessors.width.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.width = val; +}; + +/** + * The height of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.height.get = function () +{ + return this.canvas.height; +}; + +prototypeAccessors.height.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.height = val; +}; + +Object.defineProperties( CanvasRenderTarget.prototype, prototypeAccessors ); + +var tempAnchor; + +/** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * Nipped from the resource loader! + * + * @ignore + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ +function determineCrossOrigin(url$1, loc) +{ + if ( loc === void 0 ) loc = window.location; + + // data: and javascript: urls are considered same-origin + if (url$1.indexOf('data:') === 0) + { + return ''; + } + + // default is window.location + loc = loc || window.location; + + if (!tempAnchor) + { + tempAnchor = document.createElement('a'); + } + + // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + tempAnchor.href = url$1; + url$1 = url.parse(tempAnchor.href); + + var samePort = (!url$1.port && loc.port === '') || (url$1.port === loc.port); + + // if cross origin + if (url$1.hostname !== loc.hostname || !samePort || url$1.protocol !== loc.protocol) + { + return 'anonymous'; + } + + return ''; +} + +/** + * get the resolution / device pixel ratio of an asset by looking for the prefix + * used by spritesheets and image urls + * + * @memberof PIXI.utils + * @function getResolutionOfUrl + * @param {string} url - the image path + * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set. + * @return {number} resolution / device pixel ratio of an asset + */ +function getResolutionOfUrl(url, defaultValue) +{ + var resolution = settings.RETINA_PREFIX.exec(url); + + if (resolution) + { + return parseFloat(resolution[1]); + } + + return defaultValue !== undefined ? defaultValue : 1; +} + +// A map of warning messages already fired +var warnings = {}; + +/** + * Helper for warning developers about deprecated features & settings. + * A stack track for warnings is given; useful for tracking-down where + * deprecated methods/properties/classes are being used within the code. + * + * @memberof PIXI.utils + * @function deprecation + * @param {string} version - The version where the feature became deprecated + * @param {string} message - Message should include what is deprecated, where, and the new solution + * @param {number} [ignoreDepth=3] - The number of steps to ignore at the top of the error stack + * this is mostly to ignore internal deprecation calls. + */ +function deprecation(version, message, ignoreDepth) +{ + if ( ignoreDepth === void 0 ) ignoreDepth = 3; + + // Ignore duplicat + if (warnings[message]) + { + return; + } + + /* eslint-disable no-console */ + var stack = new Error().stack; + + // Handle IE < 10 and Safari < 6 + if (typeof stack === 'undefined') + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + } + else + { + // chop off the stack trace which includes PixiJS internal calls + stack = stack.split('\n').splice(ignoreDepth).join('\n'); + + if (console.groupCollapsed) + { + console.groupCollapsed( + '%cPixiJS Deprecation Warning: %c%s', + 'color:#614108;background:#fffbe6', + 'font-weight:normal;color:#614108;background:#fffbe6', + (message + "\nDeprecated since v" + version) + ); + console.warn(stack); + console.groupEnd(); + } + else + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + console.warn(stack); + } + } + /* eslint-enable no-console */ + + warnings[message] = true; +} + +/*! + * @pixi/math - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/math is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * @class + * @memberof PIXI + */ +var Point = function Point(x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; +}; + +/** + * Creates a clone of this point + * + * @return {PIXI.Point} a copy of the point + */ +Point.prototype.clone = function clone () +{ + return new Point(this.x, this.y); +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from + * @returns {PIXI.IPoint} Returns itself. + */ +Point.prototype.copyFrom = function copyFrom (p) +{ + this.set(p.x, p.y); + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +Point.prototype.copyTo = function copyTo (p) +{ + p.set(this.x, this.y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +Point.prototype.equals = function equals (p) +{ + return (p.x === this.x) && (p.y === this.y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +Point.prototype.set = function set (x, y) +{ + this.x = x || 0; + this.y = y || ((y !== 0) ? this.x : 0); +}; + +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * An ObservablePoint is a point that triggers a callback when the point's position is changed. + * + * @class + * @memberof PIXI + */ +var ObservablePoint = function ObservablePoint(cb, scope, x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + this._x = x; + this._y = y; + + this.cb = cb; + this.scope = scope; +}; + +var prototypeAccessors$1 = { x: { configurable: true },y: { configurable: true } }; + +/** + * Creates a clone of this point. + * The callback and scope params can be overidden otherwise they will default + * to the clone object's values. + * + * @override + * @param {Function} [cb=null] - callback when changed + * @param {object} [scope=null] - owner of callback + * @return {PIXI.ObservablePoint} a copy of the point + */ +ObservablePoint.prototype.clone = function clone (cb, scope) +{ + if ( cb === void 0 ) cb = null; + if ( scope === void 0 ) scope = null; + + var _cb = cb || this.cb; + var _scope = scope || this.scope; + + return new ObservablePoint(_cb, _scope, this._x, this._y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +ObservablePoint.prototype.set = function set (x, y) +{ + var _x = x || 0; + var _y = y || ((y !== 0) ? _x : 0); + + if (this._x !== _x || this._y !== _y) + { + this._x = _x; + this._y = _y; + this.cb.call(this.scope); + } +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from. + * @returns {PIXI.IPoint} Returns itself. + */ +ObservablePoint.prototype.copyFrom = function copyFrom (p) +{ + if (this._x !== p.x || this._y !== p.y) + { + this._x = p.x; + this._y = p.y; + this.cb.call(this.scope); + } + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +ObservablePoint.prototype.copyTo = function copyTo (p) +{ + p.set(this._x, this._y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +ObservablePoint.prototype.equals = function equals (p) +{ + return (p.x === this._x) && (p.y === this._y); +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.x.get = function () +{ + return this._x; +}; + +prototypeAccessors$1.x.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._x !== value) + { + this._x = value; + this.cb.call(this.scope); + } +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.y.get = function () +{ + return this._y; +}; + +prototypeAccessors$1.y.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._y !== value) + { + this._y = value; + this.cb.call(this.scope); + } +}; + +Object.defineProperties( ObservablePoint.prototype, prototypeAccessors$1 ); + +/** + * A number, or a string containing a number. + * @memberof PIXI + * @typedef {(PIXI.Point|PIXI.ObservablePoint)} IPoint + */ + +/** + * Two Pi. + * + * @static + * @constant {number} PI_2 + * @memberof PIXI + */ +var PI_2 = Math.PI * 2; + +/** + * Conversion factor for converting radians to degrees. + * + * @static + * @constant {number} RAD_TO_DEG + * @memberof PIXI + */ +var RAD_TO_DEG = 180 / Math.PI; + +/** + * Conversion factor for converting degrees to radians. + * + * @static + * @constant {number} DEG_TO_RAD + * @memberof PIXI + */ +var DEG_TO_RAD = Math.PI / 180; + +/** + * Constants that identify shapes, mainly to prevent `instanceof` calls. + * + * @static + * @constant + * @name SHAPES + * @memberof PIXI + * @type {object} + * @property {number} POLY Polygon + * @property {number} RECT Rectangle + * @property {number} CIRC Circle + * @property {number} ELIP Ellipse + * @property {number} RREC Rounded Rectangle + */ +var SHAPES = { + POLY: 0, + RECT: 1, + CIRC: 2, + ELIP: 3, + RREC: 4, +}; + +/** + * The PixiJS Matrix as a class makes it a lot faster. + * + * Here is a representation of it: + * ```js + * | a | c | tx| + * | b | d | ty| + * | 0 | 0 | 1 | + * ``` + * @class + * @memberof PIXI + */ +var Matrix = function Matrix(a, b, c, d, tx, ty) +{ + if ( a === void 0 ) a = 1; + if ( b === void 0 ) b = 0; + if ( c === void 0 ) c = 0; + if ( d === void 0 ) d = 1; + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + /** + * @member {number} + * @default 1 + */ + this.a = a; + + /** + * @member {number} + * @default 0 + */ + this.b = b; + + /** + * @member {number} + * @default 0 + */ + this.c = c; + + /** + * @member {number} + * @default 1 + */ + this.d = d; + + /** + * @member {number} + * @default 0 + */ + this.tx = tx; + + /** + * @member {number} + * @default 0 + */ + this.ty = ty; + + this.array = null; +}; + +var staticAccessors = { IDENTITY: { configurable: true },TEMP_MATRIX: { configurable: true } }; + +/** + * Creates a Matrix object based on the given array. The Element to Matrix mapping order is as follows: + * + * a = array[0] + * b = array[1] + * c = array[3] + * d = array[4] + * tx = array[2] + * ty = array[5] + * + * @param {number[]} array - The array that the matrix will be populated from. + */ +Matrix.prototype.fromArray = function fromArray (array) +{ + this.a = array[0]; + this.b = array[1]; + this.c = array[3]; + this.d = array[4]; + this.tx = array[2]; + this.ty = array[5]; +}; + +/** + * sets the matrix properties + * + * @param {number} a - Matrix component + * @param {number} b - Matrix component + * @param {number} c - Matrix component + * @param {number} d - Matrix component + * @param {number} tx - Matrix component + * @param {number} ty - Matrix component + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.set = function set (a, b, c, d, tx, ty) +{ + this.a = a; + this.b = b; + this.c = c; + this.d = d; + this.tx = tx; + this.ty = ty; + + return this; +}; + +/** + * Creates an array from the current Matrix object. + * + * @param {boolean} transpose - Whether we need to transpose the matrix or not + * @param {Float32Array} [out=new Float32Array(9)] - If provided the array will be assigned to out + * @return {number[]} the newly created array which contains the matrix + */ +Matrix.prototype.toArray = function toArray (transpose, out) +{ + if (!this.array) + { + this.array = new Float32Array(9); + } + + var array = out || this.array; + + if (transpose) + { + array[0] = this.a; + array[1] = this.b; + array[2] = 0; + array[3] = this.c; + array[4] = this.d; + array[5] = 0; + array[6] = this.tx; + array[7] = this.ty; + array[8] = 1; + } + else + { + array[0] = this.a; + array[1] = this.c; + array[2] = this.tx; + array[3] = this.b; + array[4] = this.d; + array[5] = this.ty; + array[6] = 0; + array[7] = 0; + array[8] = 1; + } + + return array; +}; + +/** + * Get a new position with the current transformation applied. + * Can be used to go from a child's coordinate space to the world coordinate space. (e.g. rendering) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, transformed through this matrix + */ +Matrix.prototype.apply = function apply (pos, newPos) +{ + newPos = newPos || new Point(); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.a * x) + (this.c * y) + this.tx; + newPos.y = (this.b * x) + (this.d * y) + this.ty; + + return newPos; +}; + +/** + * Get a new position with the inverse of the current transformation applied. + * Can be used to go from the world coordinate space to a child's coordinate space. (e.g. input) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, inverse-transformed through this matrix + */ +Matrix.prototype.applyInverse = function applyInverse (pos, newPos) +{ + newPos = newPos || new Point(); + + var id = 1 / ((this.a * this.d) + (this.c * -this.b)); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.d * id * x) + (-this.c * id * y) + (((this.ty * this.c) - (this.tx * this.d)) * id); + newPos.y = (this.a * id * y) + (-this.b * id * x) + (((-this.ty * this.a) + (this.tx * this.b)) * id); + + return newPos; +}; + +/** + * Translates the matrix on the x and y. + * + * @param {number} x How much to translate x by + * @param {number} y How much to translate y by + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.translate = function translate (x, y) +{ + this.tx += x; + this.ty += y; + + return this; +}; + +/** + * Applies a scale transformation to the matrix. + * + * @param {number} x The amount to scale horizontally + * @param {number} y The amount to scale vertically + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.scale = function scale (x, y) +{ + this.a *= x; + this.d *= y; + this.c *= x; + this.b *= y; + this.tx *= x; + this.ty *= y; + + return this; +}; + +/** + * Applies a rotation transformation to the matrix. + * + * @param {number} angle - The angle in radians. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.rotate = function rotate (angle) +{ + var cos = Math.cos(angle); + var sin = Math.sin(angle); + + var a1 = this.a; + var c1 = this.c; + var tx1 = this.tx; + + this.a = (a1 * cos) - (this.b * sin); + this.b = (a1 * sin) + (this.b * cos); + this.c = (c1 * cos) - (this.d * sin); + this.d = (c1 * sin) + (this.d * cos); + this.tx = (tx1 * cos) - (this.ty * sin); + this.ty = (tx1 * sin) + (this.ty * cos); + + return this; +}; + +/** + * Appends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to append. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.append = function append (matrix) +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + + this.a = (matrix.a * a1) + (matrix.b * c1); + this.b = (matrix.a * b1) + (matrix.b * d1); + this.c = (matrix.c * a1) + (matrix.d * c1); + this.d = (matrix.c * b1) + (matrix.d * d1); + + this.tx = (matrix.tx * a1) + (matrix.ty * c1) + this.tx; + this.ty = (matrix.tx * b1) + (matrix.ty * d1) + this.ty; + + return this; +}; + +/** + * Sets the matrix based on all the available properties + * + * @param {number} x - Position on the x axis + * @param {number} y - Position on the y axis + * @param {number} pivotX - Pivot on the x axis + * @param {number} pivotY - Pivot on the y axis + * @param {number} scaleX - Scale on the x axis + * @param {number} scaleY - Scale on the y axis + * @param {number} rotation - Rotation in radians + * @param {number} skewX - Skew on the x axis + * @param {number} skewY - Skew on the y axis + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.setTransform = function setTransform (x, y, pivotX, pivotY, scaleX, scaleY, rotation, skewX, skewY) +{ + this.a = Math.cos(rotation + skewY) * scaleX; + this.b = Math.sin(rotation + skewY) * scaleX; + this.c = -Math.sin(rotation - skewX) * scaleY; + this.d = Math.cos(rotation - skewX) * scaleY; + + this.tx = x - ((pivotX * this.a) + (pivotY * this.c)); + this.ty = y - ((pivotX * this.b) + (pivotY * this.d)); + + return this; +}; + +/** + * Prepends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to prepend + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.prepend = function prepend (matrix) +{ + var tx1 = this.tx; + + if (matrix.a !== 1 || matrix.b !== 0 || matrix.c !== 0 || matrix.d !== 1) + { + var a1 = this.a; + var c1 = this.c; + + this.a = (a1 * matrix.a) + (this.b * matrix.c); + this.b = (a1 * matrix.b) + (this.b * matrix.d); + this.c = (c1 * matrix.a) + (this.d * matrix.c); + this.d = (c1 * matrix.b) + (this.d * matrix.d); + } + + this.tx = (tx1 * matrix.a) + (this.ty * matrix.c) + matrix.tx; + this.ty = (tx1 * matrix.b) + (this.ty * matrix.d) + matrix.ty; + + return this; +}; + +/** + * Decomposes the matrix (x, y, scaleX, scaleY, and rotation) and sets the properties on to a transform. + * + * @param {PIXI.Transform} transform - The transform to apply the properties to. + * @return {PIXI.Transform} The transform with the newly applied properties + */ +Matrix.prototype.decompose = function decompose (transform) +{ + // sort out rotation / skew.. + var a = this.a; + var b = this.b; + var c = this.c; + var d = this.d; + + var skewX = -Math.atan2(-c, d); + var skewY = Math.atan2(b, a); + + var delta = Math.abs(skewX + skewY); + + if (delta < 0.00001 || Math.abs(PI_2 - delta) < 0.00001) + { + transform.rotation = skewY; + transform.skew.x = transform.skew.y = 0; + } + else + { + transform.rotation = 0; + transform.skew.x = skewX; + transform.skew.y = skewY; + } + + // next set scale + transform.scale.x = Math.sqrt((a * a) + (b * b)); + transform.scale.y = Math.sqrt((c * c) + (d * d)); + + // next set position + transform.position.x = this.tx; + transform.position.y = this.ty; + + return transform; +}; + +/** + * Inverts this matrix + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.invert = function invert () +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + var tx1 = this.tx; + var n = (a1 * d1) - (b1 * c1); + + this.a = d1 / n; + this.b = -b1 / n; + this.c = -c1 / n; + this.d = a1 / n; + this.tx = ((c1 * this.ty) - (d1 * tx1)) / n; + this.ty = -((a1 * this.ty) - (b1 * tx1)) / n; + + return this; +}; + +/** + * Resets this Matrix to an identity (default) matrix. + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.identity = function identity () +{ + this.a = 1; + this.b = 0; + this.c = 0; + this.d = 1; + this.tx = 0; + this.ty = 0; + + return this; +}; + +/** + * Creates a new Matrix object with the same values as this one. + * + * @return {PIXI.Matrix} A copy of this matrix. Good for chaining method calls. + */ +Matrix.prototype.clone = function clone () +{ + var matrix = new Matrix(); + + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the given matrix to be the same as the ones in this matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy to. + * @return {PIXI.Matrix} The matrix given in parameter with its values updated. + */ +Matrix.prototype.copyTo = function copyTo (matrix) +{ + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the matrix to be the same as the ones in given matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy from. + * @return {PIXI.Matrix} this + */ +Matrix.prototype.copyFrom = function copyFrom (matrix) +{ + this.a = matrix.a; + this.b = matrix.b; + this.c = matrix.c; + this.d = matrix.d; + this.tx = matrix.tx; + this.ty = matrix.ty; + + return this; +}; + +/** + * A default (identity) matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.IDENTITY.get = function () +{ + return new Matrix(); +}; + +/** + * A temp matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.TEMP_MATRIX.get = function () +{ + return new Matrix(); +}; + +Object.defineProperties( Matrix, staticAccessors ); + +// Your friendly neighbour https://en.wikipedia.org/wiki/Dihedral_group + +/* + * Transform matrix for operation n is: + * | ux | vx | + * | uy | vy | + */ + +var ux = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1]; +var uy = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vx = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vy = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1]; + +/** + * [Cayley Table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * for the composition of each rotation in the dihederal group D8. + * + * @type number[][] + * @private + */ +var rotationCayley = []; + +/** + * Matrices for each `GD8Symmetry` rotation. + * + * @type Matrix[] + * @private + */ +var rotationMatrices = []; + +/* + * Alias for {@code Math.sign}. + */ +var signum = Math.sign; + +/* + * Initializes `rotationCayley` and `rotationMatrices`. It is called + * only once below. + */ +function init() +{ + for (var i = 0; i < 16; i++) + { + var row = []; + + rotationCayley.push(row); + + for (var j = 0; j < 16; j++) + { + /* Multiplies rotation matrices i and j. */ + var _ux = signum((ux[i] * ux[j]) + (vx[i] * uy[j])); + var _uy = signum((uy[i] * ux[j]) + (vy[i] * uy[j])); + var _vx = signum((ux[i] * vx[j]) + (vx[i] * vy[j])); + var _vy = signum((uy[i] * vx[j]) + (vy[i] * vy[j])); + + /* Finds rotation matrix matching the product and pushes it. */ + for (var k = 0; k < 16; k++) + { + if (ux[k] === _ux && uy[k] === _uy + && vx[k] === _vx && vy[k] === _vy) + { + row.push(k); + break; + } + } + } + } + + for (var i$1 = 0; i$1 < 16; i$1++) + { + var mat = new Matrix(); + + mat.set(ux[i$1], uy[i$1], vx[i$1], vy[i$1], 0, 0); + rotationMatrices.push(mat); + } +} + +init(); + +/** + * @memberof PIXI + * @typedef {number} GD8Symmetry + * @see PIXI.GroupD8 + */ + +/** + * Implements the dihedral group D8, which is similar to + * [group D4]{@link http://mathworld.wolfram.com/DihedralGroupD4.html}; + * D8 is the same but with diagonals, and it is used for texture + * rotations. + * + * The directions the U- and V- axes after rotation + * of an angle of `a: GD8Constant` are the vectors `(uX(a), uY(a))` + * and `(vX(a), vY(a))`. These aren't necessarily unit vectors. + * + * **Origin:**
+ * This is the small part of gameofbombs.com portal system. It works. + * + * @see PIXI.GroupD8.E + * @see PIXI.GroupD8.SE + * @see PIXI.GroupD8.S + * @see PIXI.GroupD8.SW + * @see PIXI.GroupD8.W + * @see PIXI.GroupD8.NW + * @see PIXI.GroupD8.N + * @see PIXI.GroupD8.NE + * @author Ivan @ivanpopelyshev + * @class + * @memberof PIXI + */ +var GroupD8 = { + /** + * | Rotation | Direction | + * |----------|-----------| + * | 0° | East | + * + * @constant {PIXI.GD8Symmetry} + */ + E: 0, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 45°↻ | Southeast | + * + * @constant {PIXI.GD8Symmetry} + */ + SE: 1, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 90°↻ | South | + * + * @constant {PIXI.GD8Symmetry} + */ + S: 2, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 135°↻ | Southwest | + * + * @constant {PIXI.GD8Symmetry} + */ + SW: 3, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 180° | West | + * + * @constant {PIXI.GD8Symmetry} + */ + W: 4, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -135°/225°↻ | Northwest | + * + * @constant {PIXI.GD8Symmetry} + */ + NW: 5, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -90°/270°↻ | North | + * + * @constant {PIXI.GD8Symmetry} + */ + N: 6, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -45°/315°↻ | Northeast | + * + * @constant {PIXI.GD8Symmetry} + */ + NE: 7, + + /** + * Reflection about Y-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_VERTICAL: 8, + + /** + * Reflection about the main diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + MAIN_DIAGONAL: 10, + + /** + * Reflection about X-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_HORIZONTAL: 12, + + /** + * Reflection about reverse diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + REVERSE_DIAGONAL: 14, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the U-axis + * after rotating the axes. + */ + uX: function (ind) { return ux[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the U-axis + * after rotating the axes. + */ + uY: function (ind) { return uy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the V-axis + * after rotating the axes. + */ + vX: function (ind) { return vx[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the V-axis + * after rotating the axes. + */ + vY: function (ind) { return vy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - symmetry whose opposite + * is needed. Only rotations have opposite symmetries while + * reflections don't. + * @return {PIXI.GD8Symmetry} The opposite symmetry of `rotation` + */ + inv: function (rotation) { + if (rotation & 8)// true only if between 8 & 15 (reflections) + { + return rotation & 15;// or rotation % 16 + } + + return (-rotation) & 7;// or (8 - rotation) % 8 + }, + + /** + * Composes the two D8 operations. + * + * Taking `^` as reflection: + * + * | | E=0 | S=2 | W=4 | N=6 | E^=8 | S^=10 | W^=12 | N^=14 | + * |-------|-----|-----|-----|-----|------|-------|-------|-------| + * | E=0 | E | S | W | N | E^ | S^ | W^ | N^ | + * | S=2 | S | W | N | E | S^ | W^ | N^ | E^ | + * | W=4 | W | N | E | S | W^ | N^ | E^ | S^ | + * | N=6 | N | E | S | W | N^ | E^ | S^ | W^ | + * | E^=8 | E^ | N^ | W^ | S^ | E | N | W | S | + * | S^=10 | S^ | E^ | N^ | W^ | S | E | N | W | + * | W^=12 | W^ | S^ | E^ | N^ | W | S | E | N | + * | N^=14 | N^ | W^ | S^ | E^ | N | W | S | E | + * + * [This is a Cayley table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation, which + * is the row in the above cayley table. + * @param {PIXI.GD8Symmetry} rotationFirst - First operation, which + * is the column in the above cayley table. + * @return {PIXI.GD8Symmetry} Composed operation + */ + add: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][rotationFirst] + ); }, + + /** + * Reverse of `add`. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation + * @param {PIXI.GD8Symmetry} rotationFirst - First operation + * @return {PIXI.GD8Symmetry} Result + */ + sub: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][GroupD8.inv(rotationFirst)] + ); }, + + /** + * Adds 180 degrees to rotation, which is a commutative + * operation. + * + * @memberof PIXI.GroupD8 + * @param {number} rotation - The number to rotate. + * @returns {number} Rotated number + */ + rotate180: function (rotation) { return rotation ^ 4; }, + + /** + * Checks if the rotation angle is vertical, i.e. south + * or north. It doesn't work for reflections. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - The number to check. + * @returns {boolean} Whether or not the direction is vertical + */ + isVertical: function (rotation) { return (rotation & 3) === 2; }, // rotation % 4 === 2 + + /** + * Approximates the vector `V(dx,dy)` into one of the + * eight directions provided by `GroupD8`. + * + * @memberof PIXI.GroupD8 + * @param {number} dx - X-component of the vector + * @param {number} dy - Y-component of the vector + * @return {PIXI.GD8Symmetry} Approximation of the vector into + * one of the eight symmetries. + */ + byDirection: function (dx, dy) { + if (Math.abs(dx) * 2 <= Math.abs(dy)) + { + if (dy >= 0) + { + return GroupD8.S; + } + + return GroupD8.N; + } + else if (Math.abs(dy) * 2 <= Math.abs(dx)) + { + if (dx > 0) + { + return GroupD8.E; + } + + return GroupD8.W; + } + else if (dy > 0) + { + if (dx > 0) + { + return GroupD8.SE; + } + + return GroupD8.SW; + } + else if (dx > 0) + { + return GroupD8.NE; + } + + return GroupD8.NW; + }, + + /** + * Helps sprite to compensate texture packer rotation. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.Matrix} matrix - sprite world matrix + * @param {PIXI.GD8Symmetry} rotation - The rotation factor to use. + * @param {number} tx - sprite anchoring + * @param {number} ty - sprite anchoring + */ + matrixAppendRotationInv: function (matrix, rotation, tx, ty) { + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + // Packer used "rotation", we use "inv(rotation)" + var mat = rotationMatrices[GroupD8.inv(rotation)]; + + mat.tx = tx; + mat.ty = ty; + matrix.append(mat); + }, +}; + +/** + * Transform that takes care about its versions + * + * @class + * @memberof PIXI + */ +var Transform = function Transform() +{ + /** + * The world transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.worldTransform = new Matrix(); + + /** + * The local transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.localTransform = new Matrix(); + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * + * @member {PIXI.ObservablePoint} + */ + this.position = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The scale factor of the object. + * + * @member {PIXI.ObservablePoint} + */ + this.scale = new ObservablePoint(this.onChange, this, 1, 1); + + /** + * The pivot point of the displayObject that it rotates around. + * + * @member {PIXI.ObservablePoint} + */ + this.pivot = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The skew amount, on the x and y axis. + * + * @member {PIXI.ObservablePoint} + */ + this.skew = new ObservablePoint(this.updateSkew, this, 0, 0); + + /** + * The rotation amount. + * + * @protected + * @member {number} + */ + this._rotation = 0; + + /** + * The X-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cx = 1; + + /** + * The Y-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sx = 0; + + /** + * The X-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cy = 0; + + /** + * The Y-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sy = 1; + + /** + * The locally unique ID of the local transform. + * + * @protected + * @member {number} + */ + this._localID = 0; + + /** + * The locally unique ID of the local transform + * used to calculate the current local transformation matrix. + * + * @protected + * @member {number} + */ + this._currentLocalID = 0; + + /** + * The locally unique ID of the world transform. + * + * @protected + * @member {number} + */ + this._worldID = 0; + + /** + * The locally unique ID of the parent's world transform + * used to calculate the current world transformation matrix. + * + * @protected + * @member {number} + */ + this._parentID = 0; +}; + +var prototypeAccessors$1$1 = { rotation: { configurable: true } }; + +/** + * Called when a value changes. + * + * @protected + */ +Transform.prototype.onChange = function onChange () +{ + this._localID++; +}; + +/** + * Called when the skew or the rotation changes. + * + * @protected + */ +Transform.prototype.updateSkew = function updateSkew () +{ + this._cx = Math.cos(this._rotation + this.skew._y); + this._sx = Math.sin(this._rotation + this.skew._y); + this._cy = -Math.sin(this._rotation - this.skew._x); // cos, added PI/2 + this._sy = Math.cos(this._rotation - this.skew._x); // sin, added PI/2 + + this._localID++; +}; + +/** + * Updates the local transformation matrix. + */ +Transform.prototype.updateLocalTransform = function updateLocalTransform () +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } +}; + +/** + * Updates the local and the world transformation matrices. + * + * @param {PIXI.Transform} parentTransform - The parent transform + */ +Transform.prototype.updateTransform = function updateTransform (parentTransform) +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } + + if (this._parentID !== parentTransform._worldID) + { + // concat the parent matrix with the objects transform. + var pt = parentTransform.worldTransform; + var wt = this.worldTransform; + + wt.a = (lt.a * pt.a) + (lt.b * pt.c); + wt.b = (lt.a * pt.b) + (lt.b * pt.d); + wt.c = (lt.c * pt.a) + (lt.d * pt.c); + wt.d = (lt.c * pt.b) + (lt.d * pt.d); + wt.tx = (lt.tx * pt.a) + (lt.ty * pt.c) + pt.tx; + wt.ty = (lt.tx * pt.b) + (lt.ty * pt.d) + pt.ty; + + this._parentID = parentTransform._worldID; + + // update the id of the transform.. + this._worldID++; + } +}; + +/** + * Decomposes a matrix and sets the transforms properties based on it. + * + * @param {PIXI.Matrix} matrix - The matrix to decompose + */ +Transform.prototype.setFromMatrix = function setFromMatrix (matrix) +{ + matrix.decompose(this); + this._localID++; +}; + +/** + * The rotation of the object in radians. + * + * @member {number} + */ +prototypeAccessors$1$1.rotation.get = function () +{ + return this._rotation; +}; + +prototypeAccessors$1$1.rotation.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._rotation !== value) + { + this._rotation = value; + this.updateSkew(); + } +}; + +Object.defineProperties( Transform.prototype, prototypeAccessors$1$1 ); + +/** + * A default (identity) transform + * + * @static + * @constant + * @member {PIXI.Transform} + */ +Transform.IDENTITY = new Transform(); + +/** + * Size object, contains width and height + * + * @memberof PIXI + * @typedef {object} ISize + * @property {number} width - Width component + * @property {number} height - Height component + */ + +/** + * Rectangle object is an area defined by its position, as indicated by its top-left corner + * point (x, y) and by its width and its height. + * + * @class + * @memberof PIXI + */ +var Rectangle = function Rectangle(x, y, width, height) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = Number(x); + + /** + * @member {number} + * @default 0 + */ + this.y = Number(y); + + /** + * @member {number} + * @default 0 + */ + this.width = Number(width); + + /** + * @member {number} + * @default 0 + */ + this.height = Number(height); + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.RECT + * @see PIXI.SHAPES + */ + this.type = SHAPES.RECT; +}; + +var prototypeAccessors$2 = { left: { configurable: true },right: { configurable: true },top: { configurable: true },bottom: { configurable: true } }; +var staticAccessors$1 = { EMPTY: { configurable: true } }; + +/** + * returns the left edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.left.get = function () +{ + return this.x; +}; + +/** + * returns the right edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.right.get = function () +{ + return this.x + this.width; +}; + +/** + * returns the top edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.top.get = function () +{ + return this.y; +}; + +/** + * returns the bottom edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.bottom.get = function () +{ + return this.y + this.height; +}; + +/** + * A constant empty rectangle. + * + * @static + * @constant + * @member {PIXI.Rectangle} + */ +staticAccessors$1.EMPTY.get = function () +{ + return new Rectangle(0, 0, 0, 0); +}; + +/** + * Creates a clone of this Rectangle + * + * @return {PIXI.Rectangle} a copy of the rectangle + */ +Rectangle.prototype.clone = function clone () +{ + return new Rectangle(this.x, this.y, this.width, this.height); +}; + +/** + * Copies another rectangle to this one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy from. + * @return {PIXI.Rectangle} Returns itself. + */ +Rectangle.prototype.copyFrom = function copyFrom (rectangle) +{ + this.x = rectangle.x; + this.y = rectangle.y; + this.width = rectangle.width; + this.height = rectangle.height; + + return this; +}; + +/** + * Copies this rectangle to another one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy to. + * @return {PIXI.Rectangle} Returns given parameter. + */ +Rectangle.prototype.copyTo = function copyTo (rectangle) +{ + rectangle.x = this.x; + rectangle.y = this.y; + rectangle.width = this.width; + rectangle.height = this.height; + + return rectangle; +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rectangle + */ +Rectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + if (x >= this.x && x < this.x + this.width) + { + if (y >= this.y && y < this.y + this.height) + { + return true; + } + } + + return false; +}; + +/** + * Pads the rectangle making it grow in all directions. + * + * @param {number} paddingX - The horizontal padding amount. + * @param {number} paddingY - The vertical padding amount. + */ +Rectangle.prototype.pad = function pad (paddingX, paddingY) +{ + paddingX = paddingX || 0; + paddingY = paddingY || ((paddingY !== 0) ? paddingX : 0); + + this.x -= paddingX; + this.y -= paddingY; + + this.width += paddingX * 2; + this.height += paddingY * 2; +}; + +/** + * Fits this rectangle around the passed one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to fit. + */ +Rectangle.prototype.fit = function fit (rectangle) +{ + var x1 = Math.max(this.x, rectangle.x); + var x2 = Math.min(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.max(this.y, rectangle.y); + var y2 = Math.min(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = Math.max(x2 - x1, 0); + this.y = y1; + this.height = Math.max(y2 - y1, 0); +}; + +/** + * Enlarges rectangle that way its corners lie on grid + * + * @param {number} [resolution=1] resolution + * @param {number} [eps=0.001] precision + */ +Rectangle.prototype.ceil = function ceil (resolution, eps) +{ + if ( resolution === void 0 ) resolution = 1; + if ( eps === void 0 ) eps = 0.001; + + var x2 = Math.ceil((this.x + this.width - eps) * resolution) / resolution; + var y2 = Math.ceil((this.y + this.height - eps) * resolution) / resolution; + + this.x = Math.floor((this.x + eps) * resolution) / resolution; + this.y = Math.floor((this.y + eps) * resolution) / resolution; + + this.width = x2 - this.x; + this.height = y2 - this.y; +}; + +/** + * Enlarges this rectangle to include the passed rectangle. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to include. + */ +Rectangle.prototype.enlarge = function enlarge (rectangle) +{ + var x1 = Math.min(this.x, rectangle.x); + var x2 = Math.max(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.min(this.y, rectangle.y); + var y2 = Math.max(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = x2 - x1; + this.y = y1; + this.height = y2 - y1; +}; + +Object.defineProperties( Rectangle.prototype, prototypeAccessors$2 ); +Object.defineProperties( Rectangle, staticAccessors$1 ); + +/** + * The Circle object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Circle = function Circle(x, y, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( radius === void 0 ) radius = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.CIRC + * @see PIXI.SHAPES + */ + this.type = SHAPES.CIRC; +}; + +/** + * Creates a clone of this Circle instance + * + * @return {PIXI.Circle} a copy of the Circle + */ +Circle.prototype.clone = function clone () +{ + return new Circle(this.x, this.y, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this circle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Circle + */ +Circle.prototype.contains = function contains (x, y) +{ + if (this.radius <= 0) + { + return false; + } + + var r2 = this.radius * this.radius; + var dx = (this.x - x); + var dy = (this.y - y); + + dx *= dx; + dy *= dy; + + return (dx + dy <= r2); +}; + +/** +* Returns the framing rectangle of the circle as a Rectangle object +* +* @return {PIXI.Rectangle} the framing rectangle +*/ +Circle.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2); +}; + +/** + * The Ellipse object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Ellipse = function Ellipse(x, y, halfWidth, halfHeight) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( halfWidth === void 0 ) halfWidth = 0; + if ( halfHeight === void 0 ) halfHeight = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = halfWidth; + + /** + * @member {number} + * @default 0 + */ + this.height = halfHeight; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.ELIP + * @see PIXI.SHAPES + */ + this.type = SHAPES.ELIP; +}; + +/** + * Creates a clone of this Ellipse instance + * + * @return {PIXI.Ellipse} a copy of the ellipse + */ +Ellipse.prototype.clone = function clone () +{ + return new Ellipse(this.x, this.y, this.width, this.height); +}; + +/** + * Checks whether the x and y coordinates given are contained within this ellipse + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coords are within this ellipse + */ +Ellipse.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + // normalize the coords to an ellipse with center 0,0 + var normx = ((x - this.x) / this.width); + var normy = ((y - this.y) / this.height); + + normx *= normx; + normy *= normy; + + return (normx + normy <= 1); +}; + +/** + * Returns the framing rectangle of the ellipse as a Rectangle object + * + * @return {PIXI.Rectangle} the framing rectangle + */ +Ellipse.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height); +}; + +/** + * A class to define a shape via user defined co-orinates. + * + * @class + * @memberof PIXI + */ +var Polygon = function Polygon() +{ + var points = [], len = arguments.length; + while ( len-- ) points[ len ] = arguments[ len ]; + + if (Array.isArray(points[0])) + { + points = points[0]; + } + + // if this is an array of points, convert it to a flat array of numbers + if (points[0] instanceof Point) + { + var p = []; + + for (var i = 0, il = points.length; i < il; i++) + { + p.push(points[i].x, points[i].y); + } + + points = p; + } + + /** + * An array of the points of this polygon + * + * @member {number[]} + */ + this.points = points; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.POLY + * @see PIXI.SHAPES + */ + this.type = SHAPES.POLY; + + /** + * `false` after moveTo, `true` after `closePath`. In all other cases it is `true`. + * @member {boolean} + * @default true + */ + this.closeStroke = true; +}; + +/** + * Creates a clone of this polygon + * + * @return {PIXI.Polygon} a copy of the polygon + */ +Polygon.prototype.clone = function clone () +{ + var polygon = new Polygon(this.points.slice()); + + polygon.closeStroke = this.closeStroke; + + return polygon; +}; + +/** + * Checks whether the x and y coordinates passed to this function are contained within this polygon + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this polygon + */ +Polygon.prototype.contains = function contains (x, y) +{ + var inside = false; + + // use some raycasting to test hits + // https://github.com/substack/point-in-polygon/blob/master/index.js + var length = this.points.length / 2; + + for (var i = 0, j = length - 1; i < length; j = i++) + { + var xi = this.points[i * 2]; + var yi = this.points[(i * 2) + 1]; + var xj = this.points[j * 2]; + var yj = this.points[(j * 2) + 1]; + var intersect = ((yi > y) !== (yj > y)) && (x < ((xj - xi) * ((y - yi) / (yj - yi))) + xi); + + if (intersect) + { + inside = !inside; + } + } + + return inside; +}; + +/** + * The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its + * top-left corner point (x, y) and by its width and its height and its radius. + * + * @class + * @memberof PIXI + */ +var RoundedRectangle = function RoundedRectangle(x, y, width, height, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + if ( radius === void 0 ) radius = 20; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = width; + + /** + * @member {number} + * @default 0 + */ + this.height = height; + + /** + * @member {number} + * @default 20 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readonly + * @default PIXI.SHAPES.RREC + * @see PIXI.SHAPES + */ + this.type = SHAPES.RREC; +}; + +/** + * Creates a clone of this Rounded Rectangle + * + * @return {PIXI.RoundedRectangle} a copy of the rounded rectangle + */ +RoundedRectangle.prototype.clone = function clone () +{ + return new RoundedRectangle(this.x, this.y, this.width, this.height, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rounded Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rounded Rectangle + */ +RoundedRectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + if (x >= this.x && x <= this.x + this.width) + { + if (y >= this.y && y <= this.y + this.height) + { + if ((y >= this.y + this.radius && y <= this.y + this.height - this.radius) + || (x >= this.x + this.radius && x <= this.x + this.width - this.radius)) + { + return true; + } + var dx = x - (this.x + this.radius); + var dy = y - (this.y + this.radius); + var radius2 = this.radius * this.radius; + + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.width - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dy = y - (this.y + this.height - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + } + } + + return false; +}; + +/*! + * @pixi/display - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/display is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Sets the default value for the container property 'sortableChildren'. + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @static + * @constant + * @name SORTABLE_CHILDREN + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ +settings.SORTABLE_CHILDREN = false; + +/** + * 'Builder' pattern for bounds rectangles. + * + * This could be called an Axis-Aligned Bounding Box. + * It is not an actual shape. It is a mutable thing; no 'EMPTY' or those kind of problems. + * + * @class + * @memberof PIXI + */ +var Bounds = function Bounds() +{ + /** + * @member {number} + * @default 0 + */ + this.minX = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.minY = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxX = -Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxY = -Infinity; + + this.rect = null; +}; + +/** + * Checks if bounds are empty. + * + * @return {boolean} True if empty. + */ +Bounds.prototype.isEmpty = function isEmpty () +{ + return this.minX > this.maxX || this.minY > this.maxY; +}; + +/** + * Clears the bounds and resets. + * + */ +Bounds.prototype.clear = function clear () +{ + this.updateID++; + + this.minX = Infinity; + this.minY = Infinity; + this.maxX = -Infinity; + this.maxY = -Infinity; +}; + +/** + * Can return Rectangle.EMPTY constant, either construct new rectangle, either use your rectangle + * It is not guaranteed that it will return tempRect + * + * @param {PIXI.Rectangle} rect - temporary object will be used if AABB is not empty + * @returns {PIXI.Rectangle} A rectangle of the bounds + */ +Bounds.prototype.getRectangle = function getRectangle (rect) +{ + if (this.minX > this.maxX || this.minY > this.maxY) + { + return Rectangle.EMPTY; + } + + rect = rect || new Rectangle(0, 0, 1, 1); + + rect.x = this.minX; + rect.y = this.minY; + rect.width = this.maxX - this.minX; + rect.height = this.maxY - this.minY; + + return rect; +}; + +/** + * This function should be inlined when its possible. + * + * @param {PIXI.Point} point - The point to add. + */ +Bounds.prototype.addPoint = function addPoint (point) +{ + this.minX = Math.min(this.minX, point.x); + this.maxX = Math.max(this.maxX, point.x); + this.minY = Math.min(this.minY, point.y); + this.maxY = Math.max(this.maxY, point.y); +}; + +/** + * Adds a quad, not transformed + * + * @param {Float32Array} vertices - The verts to add. + */ +Bounds.prototype.addQuad = function addQuad (vertices) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = vertices[0]; + var y = vertices[1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[2]; + y = vertices[3]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[4]; + y = vertices[5]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[6]; + y = vertices[7]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds sprite frame, transformed. + * + * @param {PIXI.Transform} transform - TODO + * @param {number} x0 - TODO + * @param {number} y0 - TODO + * @param {number} x1 - TODO + * @param {number} y1 - TODO + */ +Bounds.prototype.addFrame = function addFrame (transform, x0, y0, x1, y1) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = (a * x0) + (c * y0) + tx; + var y = (b * x0) + (d * y0) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y0) + tx; + y = (b * x1) + (d * y0) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x0) + (c * y1) + tx; + y = (b * x0) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y1) + tx; + y = (b * x1) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds screen vertices from array + * + * @param {Float32Array} vertexData - calculated vertices + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertexData = function addVertexData (vertexData, beginOffset, endOffset) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var x = vertexData[i]; + var y = vertexData[i + 1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Add an array of mesh vertices + * + * @param {PIXI.Transform} transform - mesh transform + * @param {Float32Array} vertices - mesh coordinates in array + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertices = function addVertices (transform, vertices, beginOffset, endOffset) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var rawX = vertices[i]; + var rawY = vertices[i + 1]; + var x = (a * rawX) + (c * rawY) + tx; + var y = (d * rawY) + (b * rawX) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds other Bounds + * + * @param {PIXI.Bounds} bounds - TODO + */ +Bounds.prototype.addBounds = function addBounds (bounds) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = bounds.minX < minX ? bounds.minX : minX; + this.minY = bounds.minY < minY ? bounds.minY : minY; + this.maxX = bounds.maxX > maxX ? bounds.maxX : maxX; + this.maxY = bounds.maxY > maxY ? bounds.maxY : maxY; +}; + +/** + * Adds other Bounds, masked with Bounds + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Bounds} mask - TODO + */ +Bounds.prototype.addBoundsMask = function addBoundsMask (bounds, mask) +{ + var _minX = bounds.minX > mask.minX ? bounds.minX : mask.minX; + var _minY = bounds.minY > mask.minY ? bounds.minY : mask.minY; + var _maxX = bounds.maxX < mask.maxX ? bounds.maxX : mask.maxX; + var _maxY = bounds.maxY < mask.maxY ? bounds.maxY : mask.maxY; + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +/** + * Adds other Bounds, masked with Rectangle + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Rectangle} area - TODO + */ +Bounds.prototype.addBoundsArea = function addBoundsArea (bounds, area) +{ + var _minX = bounds.minX > area.x ? bounds.minX : area.x; + var _minY = bounds.minY > area.y ? bounds.minY : area.y; + var _maxX = bounds.maxX < area.x + area.width ? bounds.maxX : (area.x + area.width); + var _maxY = bounds.maxY < area.y + area.height ? bounds.maxY : (area.y + area.height); + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +// _tempDisplayObjectParent = new DisplayObject(); + +/** + * The base class for all objects that are rendered on the screen. + * + * This is an abstract class and should not be used on its own; rather it should be extended. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var DisplayObject = /*@__PURE__*/(function (EventEmitter) { + function DisplayObject() + { + EventEmitter.call(this); + + this.tempDisplayObjectParent = null; + + // TODO: need to create Transform from factory + /** + * World transform and local transform of this object. + * This will become read-only later, please do not assign anything there unless you know what are you doing. + * + * @member {PIXI.Transform} + */ + this.transform = new Transform(); + + /** + * The opacity of the object. + * + * @member {number} + */ + this.alpha = 1; + + /** + * The visibility of the object. If false the object will not be drawn, and + * the updateTransform function will not be called. + * + * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually. + * + * @member {boolean} + */ + this.visible = true; + + /** + * Can this object be rendered, if false the object will not be drawn but the updateTransform + * methods will still be called. + * + * Only affects recursive calls from parent. You can ask for bounds manually. + * + * @member {boolean} + */ + this.renderable = true; + + /** + * The display object container that contains this display object. + * + * @member {PIXI.Container} + * @readonly + */ + this.parent = null; + + /** + * The multiplied alpha of the displayObject. + * + * @member {number} + * @readonly + */ + this.worldAlpha = 1; + + /** + * Which index in the children array the display component was before the previous zIndex sort. + * Used by containers to help sort objects with the same zIndex, by using previous array index as the decider. + * + * @member {number} + * @protected + */ + this._lastSortedIndex = 0; + + /** + * The zIndex of the displayObject. + * A higher value will mean it will be rendered on top of other displayObjects within the same container. + * + * @member {number} + * @protected + */ + this._zIndex = 0; + + /** + * The area the filter is applied to. This is used as more of an optimization + * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle. + * + * Also works as an interaction mask. + * + * @member {?PIXI.Rectangle} + */ + this.filterArea = null; + + /** + * Sets the filters for the displayObject. + * * IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer. + * To remove filters simply set this property to `'null'`. + * + * @member {?PIXI.Filter[]} + */ + this.filters = null; + this._enabledFilters = null; + + /** + * The bounds object, this is used to calculate and store the bounds of the displayObject. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + this._boundsID = 0; + this._lastBoundsID = -1; + this._boundsRect = null; + this._localBoundsRect = null; + + /** + * The original, cached mask of the object. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + * @protected + */ + this._mask = null; + + /** + * Fired when this DisplayObject is added to a Container. + * + * @event PIXI.DisplayObject#added + * @param {PIXI.Container} container - The container added to. + */ + + /** + * Fired when this DisplayObject is removed from a Container. + * + * @event PIXI.DisplayObject#removed + * @param {PIXI.Container} container - The container removed from. + */ + + /** + * If the object has been destroyed via destroy(). If true, it should not be used. + * + * @member {boolean} + * @protected + */ + this._destroyed = false; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = false; + } + + if ( EventEmitter ) DisplayObject.__proto__ = EventEmitter; + DisplayObject.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + DisplayObject.prototype.constructor = DisplayObject; + + var prototypeAccessors = { _tempDisplayObjectParent: { configurable: true },x: { configurable: true },y: { configurable: true },worldTransform: { configurable: true },localTransform: { configurable: true },position: { configurable: true },scale: { configurable: true },pivot: { configurable: true },skew: { configurable: true },rotation: { configurable: true },angle: { configurable: true },zIndex: { configurable: true },worldVisible: { configurable: true },mask: { configurable: true } }; + + /** + * @protected + * @member {PIXI.DisplayObject} + */ + DisplayObject.mixin = function mixin (source) + { + // in ES8/ES2017, this would be really easy: + // Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); + + // get all the enumerable property keys + var keys = Object.keys(source); + + // loop through properties + for (var i = 0; i < keys.length; ++i) + { + var propertyName = keys[i]; + + // Set the property using the property descriptor - this works for accessors and normal value properties + Object.defineProperty( + DisplayObject.prototype, + propertyName, + Object.getOwnPropertyDescriptor(source, propertyName) + ); + } + }; + + prototypeAccessors._tempDisplayObjectParent.get = function () + { + if (this.tempDisplayObjectParent === null) + { + this.tempDisplayObjectParent = new DisplayObject(); + } + + return this.tempDisplayObjectParent; + }; + + /** + * Updates the object transform for rendering. + * + * TODO - Optimization pass! + */ + DisplayObject.prototype.updateTransform = function updateTransform () + { + this.transform.updateTransform(this.parent.transform); + // multiply the alphas.. + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + this._bounds.updateID++; + }; + + /** + * Recursively updates transform of all objects from the root to this one + * internal function for toLocal() + */ + DisplayObject.prototype._recursivePostUpdateTransform = function _recursivePostUpdateTransform () + { + if (this.parent) + { + this.parent._recursivePostUpdateTransform(); + this.transform.updateTransform(this.parent.transform); + } + else + { + this.transform.updateTransform(this._tempDisplayObjectParent.transform); + } + }; + + /** + * Retrieves the bounds of the displayObject as a rectangle object. + * + * @param {boolean} [skipUpdate] - Setting to `true` will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getBounds = function getBounds (skipUpdate, rect) + { + if (!skipUpdate) + { + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this._recursivePostUpdateTransform(); + this.updateTransform(); + } + } + + if (this._boundsID !== this._lastBoundsID) + { + this.calculateBounds(); + this._lastBoundsID = this._boundsID; + } + + if (!rect) + { + if (!this._boundsRect) + { + this._boundsRect = new Rectangle(); + } + + rect = this._boundsRect; + } + + return this._bounds.getRectangle(rect); + }; + + /** + * Retrieves the local bounds of the displayObject as a rectangle object. + * + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getLocalBounds = function getLocalBounds (rect) + { + var transformRef = this.transform; + var parentRef = this.parent; + + this.parent = null; + this.transform = this._tempDisplayObjectParent.transform; + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + var bounds = this.getBounds(false, rect); + + this.parent = parentRef; + this.transform = transformRef; + + return bounds; + }; + + /** + * Calculates the global position of the display object. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform. + * @return {PIXI.IPoint} A point object representing the position of this object. + */ + DisplayObject.prototype.toGlobal = function toGlobal (position, point, skipUpdate) + { + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // don't need to update the lot + return this.worldTransform.apply(position, point); + }; + + /** + * Calculates the local position of the display object relative to another point. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform + * @return {PIXI.IPoint} A point object representing the position of this object + */ + DisplayObject.prototype.toLocal = function toLocal (position, from, point, skipUpdate) + { + if (from) + { + position = from.toGlobal(position, point, skipUpdate); + } + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // simply apply the matrix.. + return this.worldTransform.applyInverse(position, point); + }; + + /** + * Renders the object using the WebGL renderer. + * + * @param {PIXI.Renderer} renderer - The renderer. + */ + DisplayObject.prototype.render = function render (renderer) // eslint-disable-line no-unused-vars + { + // OVERWRITE; + }; + + /** + * Set the parent Container of this DisplayObject. + * + * @param {PIXI.Container} container - The Container to add this DisplayObject to. + * @return {PIXI.Container} The Container that this DisplayObject was added to. + */ + DisplayObject.prototype.setParent = function setParent (container) + { + if (!container || !container.addChild) + { + throw new Error('setParent: Argument must be a Container'); + } + + container.addChild(this); + + return container; + }; + + /** + * Convenience function to set the position, scale, skew and pivot at once. + * + * @param {number} [x=0] - The X position + * @param {number} [y=0] - The Y position + * @param {number} [scaleX=1] - The X scale value + * @param {number} [scaleY=1] - The Y scale value + * @param {number} [rotation=0] - The rotation + * @param {number} [skewX=0] - The X skew value + * @param {number} [skewY=0] - The Y skew value + * @param {number} [pivotX=0] - The X pivot value + * @param {number} [pivotY=0] - The Y pivot value + * @return {PIXI.DisplayObject} The DisplayObject instance + */ + DisplayObject.prototype.setTransform = function setTransform (x, y, scaleX, scaleY, rotation, skewX, skewY, pivotX, pivotY) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( scaleX === void 0 ) scaleX = 1; + if ( scaleY === void 0 ) scaleY = 1; + if ( rotation === void 0 ) rotation = 0; + if ( skewX === void 0 ) skewX = 0; + if ( skewY === void 0 ) skewY = 0; + if ( pivotX === void 0 ) pivotX = 0; + if ( pivotY === void 0 ) pivotY = 0; + + this.position.x = x; + this.position.y = y; + this.scale.x = !scaleX ? 1 : scaleX; + this.scale.y = !scaleY ? 1 : scaleY; + this.rotation = rotation; + this.skew.x = skewX; + this.skew.y = skewY; + this.pivot.x = pivotX; + this.pivot.y = pivotY; + + return this; + }; + + /** + * Base destroy method for generic display objects. This will automatically + * remove the display object from its parent Container as well as remove + * all current event listeners and internal references. Do not use a DisplayObject + * after calling `destroy()`. + * + */ + DisplayObject.prototype.destroy = function destroy () + { + this.removeAllListeners(); + if (this.parent) + { + this.parent.removeChild(this); + } + this.transform = null; + + this.parent = null; + + this._bounds = null; + this._currentBounds = null; + this._mask = null; + + this.filterArea = null; + + this.interactive = false; + this.interactiveChildren = false; + + this._destroyed = true; + }; + + /** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * An alias to position.x + * + * @member {number} + */ + prototypeAccessors.x.get = function () + { + return this.position.x; + }; + + prototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.x = value; + }; + + /** + * The position of the displayObject on the y axis relative to the local coordinates of the parent. + * An alias to position.y + * + * @member {number} + */ + prototypeAccessors.y.get = function () + { + return this.position.y; + }; + + prototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.y = value; + }; + + /** + * Current transform of the object based on world (parent) factors. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.worldTransform.get = function () + { + return this.transform.worldTransform; + }; + + /** + * Current transform of the object based on local factors: position, scale, other stuff. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.localTransform.get = function () + { + return this.transform.localTransform; + }; + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.position.get = function () + { + return this.transform.position; + }; + + prototypeAccessors.position.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.copyFrom(value); + }; + + /** + * The scale factor of the object. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.scale.get = function () + { + return this.transform.scale; + }; + + prototypeAccessors.scale.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.scale.copyFrom(value); + }; + + /** + * The pivot point of the displayObject that it rotates around. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.pivot.get = function () + { + return this.transform.pivot; + }; + + prototypeAccessors.pivot.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.pivot.copyFrom(value); + }; + + /** + * The skew factor for the object in radians. + * Assignment by value since pixi-v4. + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.skew.get = function () + { + return this.transform.skew; + }; + + prototypeAccessors.skew.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.skew.copyFrom(value); + }; + + /** + * The rotation of the object in radians. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.rotation.get = function () + { + return this.transform.rotation; + }; + + prototypeAccessors.rotation.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value; + }; + + /** + * The angle of the object in degrees. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.angle.get = function () + { + return this.transform.rotation * RAD_TO_DEG; + }; + + prototypeAccessors.angle.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value * DEG_TO_RAD; + }; + + /** + * The zIndex of the displayObject. + * If a container has the sortableChildren property set to true, children will be automatically + * sorted by zIndex value; a higher value will mean it will be moved towards the end of the array, + * and thus rendered on top of other displayObjects within the same container. + * + * @member {number} + */ + prototypeAccessors.zIndex.get = function () + { + return this._zIndex; + }; + + prototypeAccessors.zIndex.set = function (value) // eslint-disable-line require-jsdoc + { + this._zIndex = value; + if (this.parent) + { + this.parent.sortDirty = true; + } + }; + + /** + * Indicates if the object is globally visible. + * + * @member {boolean} + * @readonly + */ + prototypeAccessors.worldVisible.get = function () + { + var item = this; + + do + { + if (!item.visible) + { + return false; + } + + item = item.parent; + } while (item); + + return true; + }; + + /** + * Sets a mask for the displayObject. A mask is an object that limits the visibility of an + * object to the shape of the mask applied to it. In PixiJS a regular mask must be a + * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it + * utilities shape clipping. To remove a mask, set this property to `null`. + * + * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask. + * @example + * const graphics = new PIXI.Graphics(); + * graphics.beginFill(0xFF3300); + * graphics.drawRect(50, 250, 100, 100); + * graphics.endFill(); + * + * const sprite = new PIXI.Sprite(texture); + * sprite.mask = graphics; + * @todo At the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + */ + prototypeAccessors.mask.get = function () + { + return this._mask; + }; + + prototypeAccessors.mask.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._mask) + { + this._mask.renderable = true; + this._mask.isMask = false; + } + + this._mask = value; + + if (this._mask) + { + this._mask.renderable = false; + this._mask.isMask = true; + } + }; + + Object.defineProperties( DisplayObject.prototype, prototypeAccessors ); + + return DisplayObject; +}(eventemitter3)); + +/** + * DisplayObject default updateTransform, does not update children of container. + * Will crash if there's no parent element. + * + * @memberof PIXI.DisplayObject# + * @function displayObjectUpdateTransform + */ +DisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform; + +function sortChildren(a, b) +{ + if (a.zIndex === b.zIndex) + { + return a._lastSortedIndex - b._lastSortedIndex; + } + + return a.zIndex - b.zIndex; +} + +/** + * A Container represents a collection of display objects. + * + * It is the base class of all display objects that act as a container for other objects (like Sprites). + * + *```js + * let container = new PIXI.Container(); + * container.addChild(sprite); + * ``` + * + * @class + * @extends PIXI.DisplayObject + * @memberof PIXI + */ +var Container = /*@__PURE__*/(function (DisplayObject) { + function Container() + { + DisplayObject.call(this); + + /** + * The array of children of this container. + * + * @member {PIXI.DisplayObject[]} + * @readonly + */ + this.children = []; + + /** + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @see PIXI.settings.SORTABLE_CHILDREN + * + * @member {boolean} + */ + this.sortableChildren = settings.SORTABLE_CHILDREN; + + /** + * Should children be sorted by zIndex at the next updateTransform call. + * Will get automatically set to true if a new child is added, or if a child's zIndex changes. + * + * @member {boolean} + */ + this.sortDirty = false; + + /** + * Fired when a DisplayObject is added to this Container. + * + * @event PIXI.Container#childAdded + * @param {PIXI.DisplayObject} child - The child added to the Container. + * @param {PIXI.Container} container - The container that added the child. + * @param {number} index - The children's index of the added child. + */ + + /** + * Fired when a DisplayObject is removed from this Container. + * + * @event PIXI.DisplayObject#removedFrom + * @param {PIXI.DisplayObject} child - The child removed from the Container. + * @param {PIXI.Container} container - The container that removed removed the child. + * @param {number} index - The former children's index of the removed child + */ + } + + if ( DisplayObject ) Container.__proto__ = DisplayObject; + Container.prototype = Object.create( DisplayObject && DisplayObject.prototype ); + Container.prototype.constructor = Container; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + + /** + * Overridable method that can be used by Container subclasses whenever the children array is modified + * + * @protected + */ + Container.prototype.onChildrenChange = function onChildrenChange () + { + /* empty */ + }; + + /** + * Adds one or more children to the container. + * + * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)` + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container + * @return {PIXI.DisplayObject} The first child that was added. + */ + Container.prototype.addChild = function addChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.addChild(arguments$1[i]); + } + } + else + { + // if the child has a parent then lets remove it as PixiJS objects can only exist in one place + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.push(child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(this.children.length - 1); + this.emit('childAdded', child, this, this.children.length - 1); + child.emit('added', this); + } + + return child; + }; + + /** + * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown + * + * @param {PIXI.DisplayObject} child - The child to add + * @param {number} index - The index to place the child in + * @return {PIXI.DisplayObject} The child that was added. + */ + Container.prototype.addChildAt = function addChildAt (child, index) + { + if (index < 0 || index > this.children.length) + { + throw new Error((child + "addChildAt: The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.splice(index, 0, child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('added', this); + this.emit('childAdded', child, this, index); + + return child; + }; + + /** + * Swaps the position of 2 Display Objects within this container. + * + * @param {PIXI.DisplayObject} child - First display object to swap + * @param {PIXI.DisplayObject} child2 - Second display object to swap + */ + Container.prototype.swapChildren = function swapChildren (child, child2) + { + if (child === child2) + { + return; + } + + var index1 = this.getChildIndex(child); + var index2 = this.getChildIndex(child2); + + this.children[index1] = child2; + this.children[index2] = child; + this.onChildrenChange(index1 < index2 ? index1 : index2); + }; + + /** + * Returns the index position of a child DisplayObject instance + * + * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify + * @return {number} The index position of the child display object to identify + */ + Container.prototype.getChildIndex = function getChildIndex (child) + { + var index = this.children.indexOf(child); + + if (index === -1) + { + throw new Error('The supplied DisplayObject must be a child of the caller'); + } + + return index; + }; + + /** + * Changes the position of an existing child in the display object container + * + * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number + * @param {number} index - The resulting index number for the child display object + */ + Container.prototype.setChildIndex = function setChildIndex (child, index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + var currentIndex = this.getChildIndex(child); + + removeItems(this.children, currentIndex, 1); // remove from old position + this.children.splice(index, 0, child); // add at new position + + this.onChildrenChange(index); + }; + + /** + * Returns the child at the specified index + * + * @param {number} index - The index to get the child at + * @return {PIXI.DisplayObject} The child at the given index, if any. + */ + Container.prototype.getChildAt = function getChildAt (index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("getChildAt: Index (" + index + ") does not exist.")); + } + + return this.children[index]; + }; + + /** + * Removes one or more children from the container. + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove + * @return {PIXI.DisplayObject} The first child that was removed. + */ + Container.prototype.removeChild = function removeChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.removeChild(arguments$1[i]); + } + } + else + { + var index = this.children.indexOf(child); + + if (index === -1) { return null; } + + child.parent = null; + // ensure child transform will be recalculated + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + } + + return child; + }; + + /** + * Removes a child from the specified index position. + * + * @param {number} index - The index to get the child from + * @return {PIXI.DisplayObject} The child that was removed. + */ + Container.prototype.removeChildAt = function removeChildAt (index) + { + var child = this.getChildAt(index); + + // ensure child transform will be recalculated.. + child.parent = null; + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + + return child; + }; + + /** + * Removes all children from this container that are within the begin and end indexes. + * + * @param {number} [beginIndex=0] - The beginning position. + * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container. + * @returns {PIXI.DisplayObject[]} List of removed children + */ + Container.prototype.removeChildren = function removeChildren (beginIndex, endIndex) + { + if ( beginIndex === void 0 ) beginIndex = 0; + + var begin = beginIndex; + var end = typeof endIndex === 'number' ? endIndex : this.children.length; + var range = end - begin; + var removed; + + if (range > 0 && range <= end) + { + removed = this.children.splice(begin, range); + + for (var i = 0; i < removed.length; ++i) + { + removed[i].parent = null; + if (removed[i].transform) + { + removed[i].transform._parentID = -1; + } + } + + this._boundsID++; + + this.onChildrenChange(beginIndex); + + for (var i$1 = 0; i$1 < removed.length; ++i$1) + { + removed[i$1].emit('removed', this); + this.emit('childRemoved', removed[i$1], this, i$1); + } + + return removed; + } + else if (range === 0 && this.children.length === 0) + { + return []; + } + + throw new RangeError('removeChildren: numeric values are outside the acceptable range.'); + }; + + /** + * Sorts children by zIndex. Previous order is mantained for 2 children with the same zIndex. + */ + Container.prototype.sortChildren = function sortChildren$1 () + { + var sortRequired = false; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + child._lastSortedIndex = i; + + if (!sortRequired && child.zIndex !== 0) + { + sortRequired = true; + } + } + + if (sortRequired && this.children.length > 1) + { + this.children.sort(sortChildren); + } + + this.sortDirty = false; + }; + + /** + * Updates the transform on all children of this container for rendering + */ + Container.prototype.updateTransform = function updateTransform () + { + if (this.sortableChildren && this.sortDirty) + { + this.sortChildren(); + } + + this._boundsID++; + + this.transform.updateTransform(this.parent.transform); + + // TODO: check render flags, how to process stuff here + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + if (child.visible) + { + child.updateTransform(); + } + } + }; + + /** + * Recalculates the bounds of the container. + * + */ + Container.prototype.calculateBounds = function calculateBounds () + { + this._bounds.clear(); + + this._calculateBounds(); + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (!child.visible || !child.renderable) + { + continue; + } + + child.calculateBounds(); + + // TODO: filter+mask, need to mask both somehow + if (child._mask) + { + child._mask.calculateBounds(); + this._bounds.addBoundsMask(child._bounds, child._mask._bounds); + } + else if (child.filterArea) + { + this._bounds.addBoundsArea(child._bounds, child.filterArea); + } + else + { + this._bounds.addBounds(child._bounds); + } + } + + this._lastBoundsID = this._boundsID; + }; + + /** + * Recalculates the bounds of the object. Override this to + * calculate the bounds of the specific object (not including children). + * + * @protected + */ + Container.prototype._calculateBounds = function _calculateBounds () + { + // FILL IN// + }; + + /** + * Renders the object using the WebGL renderer + * + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.render = function render (renderer) + { + // if the object is not visible or the alpha is 0 then no need to render this element + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + // do a quick check to see if this element has a mask or a filter. + if (this._mask || (this.filters && this.filters.length)) + { + this.renderAdvanced(renderer); + } + else + { + this._render(renderer); + + // simple render children! + for (var i = 0, j = this.children.length; i < j; ++i) + { + this.children[i].render(renderer); + } + } + }; + + /** + * Render the object using the WebGL renderer and advanced features. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.renderAdvanced = function renderAdvanced (renderer) + { + renderer.batch.flush(); + + var filters = this.filters; + var mask = this._mask; + + // push filter first as we need to ensure the stencil buffer is correct for any masking + if (filters) + { + if (!this._enabledFilters) + { + this._enabledFilters = []; + } + + this._enabledFilters.length = 0; + + for (var i = 0; i < filters.length; i++) + { + if (filters[i].enabled) + { + this._enabledFilters.push(filters[i]); + } + } + + if (this._enabledFilters.length) + { + renderer.filter.push(this, this._enabledFilters); + } + } + + if (mask) + { + renderer.mask.push(this, this._mask); + } + + // add this object to the batch, only rendered if it has a texture. + this._render(renderer); + + // now loop through the children and make sure they get rendered + for (var i$1 = 0, j = this.children.length; i$1 < j; i$1++) + { + this.children[i$1].render(renderer); + } + + renderer.batch.flush(); + + if (mask) + { + renderer.mask.pop(this, this._mask); + } + + if (filters && this._enabledFilters && this._enabledFilters.length) + { + renderer.filter.pop(); + } + }; + + /** + * To be overridden by the subclasses. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype._render = function _render (renderer) // eslint-disable-line no-unused-vars + { + // this is where content itself gets rendered... + }; + + /** + * Removes all internal references and listeners as well as removes children from the display list. + * Do not use a Container after calling `destroy`. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Container.prototype.destroy = function destroy (options) + { + DisplayObject.prototype.destroy.call(this); + + this.sortDirty = false; + + var destroyChildren = typeof options === 'boolean' ? options : options && options.children; + + var oldChildren = this.removeChildren(0, this.children.length); + + if (destroyChildren) + { + for (var i = 0; i < oldChildren.length; ++i) + { + oldChildren[i].destroy(options); + } + } + }; + + /** + * The width of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.scale.x * this.getLocalBounds().width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var width = this.getLocalBounds().width; + + if (width !== 0) + { + this.scale.x = value / width; + } + else + { + this.scale.x = 1; + } + + this._width = value; + }; + + /** + * The height of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.scale.y * this.getLocalBounds().height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var height = this.getLocalBounds().height; + + if (height !== 0) + { + this.scale.y = value / height; + } + else + { + this.scale.y = 1; + } + + this._height = value; + }; + + Object.defineProperties( Container.prototype, prototypeAccessors ); + + return Container; +}(DisplayObject)); + +// performance increase to avoid using call.. (10x faster) +Container.prototype.containerUpdateTransform = Container.prototype.updateTransform; + +/*! + * @pixi/accessibility - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/accessibility is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default property values of accessible objects + * used by {@link PIXI.accessibility.AccessibilityManager}. + * + * @private + * @function accessibleTarget + * @memberof PIXI.accessibility + * @type {Object} + * @example + * function MyObject() {} + * + * Object.assign( + * MyObject.prototype, + * PIXI.accessibility.accessibleTarget + * ); + */ +var accessibleTarget = { + /** + * Flag for if the object is accessible. If true AccessibilityManager will overlay a + * shadow div with attributes set + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + accessible: false, + + /** + * Sets the title attribute of the shadow div + * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]' + * + * @member {?string} + * @memberof PIXI.DisplayObject# + */ + accessibleTitle: null, + + /** + * Sets the aria-label attribute of the shadow div + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + accessibleHint: null, + + /** + * @member {number} + * @memberof PIXI.DisplayObject# + * @private + * @todo Needs docs. + */ + tabIndex: 0, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleActive: false, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleDiv: false, +}; + +// add some extra variables to the container.. +DisplayObject.mixin(accessibleTarget); + +var KEY_CODE_TAB = 9; + +var DIV_TOUCH_SIZE = 100; +var DIV_TOUCH_POS_X = 0; +var DIV_TOUCH_POS_Y = 0; +var DIV_TOUCH_ZINDEX = 2; + +var DIV_HOOK_SIZE = 1; +var DIV_HOOK_POS_X = -1000; +var DIV_HOOK_POS_Y = -1000; +var DIV_HOOK_ZINDEX = 2; + +/** + * The Accessibility manager recreates the ability to tab and have content read by screen readers. + * This is very important as it can possibly help people with disabilities access PixiJS content. + * + * A DisplayObject can be made accessible just like it can be made interactive. This manager will map the + * events as if the mouse was being used, minimizing the effort required to implement. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.accessibility` + * + * @class + * @memberof PIXI.accessibility + */ +var AccessibilityManager = function AccessibilityManager(renderer) +{ + /** + * @type {?HTMLElement} + * @private + */ + this._hookDiv = null; + if (isMobile.tablet || isMobile.phone) + { + this.createTouchHook(); + } + + // first we create a div that will sit over the PixiJS element. This is where the div overlays will go. + var div = document.createElement('div'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.position = 'absolute'; + div.style.top = DIV_TOUCH_POS_X + "px"; + div.style.left = DIV_TOUCH_POS_Y + "px"; + div.style.zIndex = DIV_TOUCH_ZINDEX; + + /** + * This is the dom element that will sit over the PixiJS element. This is where the div overlays will go. + * + * @type {HTMLElement} + * @private + */ + this.div = div; + + /** + * A simple pool for storing divs. + * + * @type {*} + * @private + */ + this.pool = []; + + /** + * This is a tick used to check if an object is no longer being rendered. + * + * @type {Number} + * @private + */ + this.renderId = 0; + + /** + * Setting this to true will visually show the divs. + * + * @type {boolean} + */ + this.debug = false; + + /** + * The renderer this accessibility manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * The array of currently active accessible items. + * + * @member {Array<*>} + * @private + */ + this.children = []; + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onKeyDown = this._onKeyDown.bind(this); + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onMouseMove = this._onMouseMove.bind(this); + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isActive = false; + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isMobileAccessibility = false; + + // let listen for tab.. once pressed we can fire up and show the accessibility layer + window.addEventListener('keydown', this._onKeyDown, false); +}; + +/** + * Creates the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.createTouchHook = function createTouchHook () +{ + var this$1 = this; + + var hookDiv = document.createElement('button'); + + hookDiv.style.width = DIV_HOOK_SIZE + "px"; + hookDiv.style.height = DIV_HOOK_SIZE + "px"; + hookDiv.style.position = 'absolute'; + hookDiv.style.top = DIV_HOOK_POS_X + "px"; + hookDiv.style.left = DIV_HOOK_POS_Y + "px"; + hookDiv.style.zIndex = DIV_HOOK_ZINDEX; + hookDiv.style.backgroundColor = '#FF0000'; + hookDiv.title = 'HOOK DIV'; + + hookDiv.addEventListener('focus', function () { + this$1.isMobileAccessibility = true; + this$1.activate(); + this$1.destroyTouchHook(); + }); + + document.body.appendChild(hookDiv); + this._hookDiv = hookDiv; +}; + +/** + * Destroys the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.destroyTouchHook = function destroyTouchHook () +{ + if (!this._hookDiv) + { + return; + } + document.body.removeChild(this._hookDiv); + this._hookDiv = null; +}; + +/** + * Activating will cause the Accessibility layer to be shown. + * This is called when a user presses the tab key. + * + * @private + */ +AccessibilityManager.prototype.activate = function activate () +{ + if (this.isActive) + { + return; + } + + this.isActive = true; + + window.document.addEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown, false); + + this.renderer.on('postrender', this.update, this); + + if (this.renderer.view.parentNode) + { + this.renderer.view.parentNode.appendChild(this.div); + } +}; + +/** + * Deactivating will cause the Accessibility layer to be hidden. + * This is called when a user moves the mouse. + * + * @private + */ +AccessibilityManager.prototype.deactivate = function deactivate () +{ + if (!this.isActive || this.isMobileAccessibility) + { + return; + } + + this.isActive = false; + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.addEventListener('keydown', this._onKeyDown, false); + + this.renderer.off('postrender', this.update); + + if (this.div.parentNode) + { + this.div.parentNode.removeChild(this.div); + } +}; + +/** + * This recursive function will run through the scene graph and add any new accessible objects to the DOM layer. + * + * @private + * @param {PIXI.Container} displayObject - The DisplayObject to check. + */ +AccessibilityManager.prototype.updateAccessibleObjects = function updateAccessibleObjects (displayObject) +{ + if (!displayObject.visible) + { + return; + } + + if (displayObject.accessible && displayObject.interactive) + { + if (!displayObject._accessibleActive) + { + this.addChild(displayObject); + } + + displayObject.renderId = this.renderId; + } + + var children = displayObject.children; + + for (var i = 0; i < children.length; i++) + { + this.updateAccessibleObjects(children[i]); + } +}; + +/** + * Before each render this function will ensure that all divs are mapped correctly to their DisplayObjects. + * + * @private + */ +AccessibilityManager.prototype.update = function update () +{ + if (!this.renderer.renderingToScreen) + { + return; + } + + // update children... + this.updateAccessibleObjects(this.renderer._lastObjectRendered); + + var rect = this.renderer.view.getBoundingClientRect(); + var sx = rect.width / this.renderer.width; + var sy = rect.height / this.renderer.height; + + var div = this.div; + + div.style.left = (rect.left) + "px"; + div.style.top = (rect.top) + "px"; + div.style.width = (this.renderer.width) + "px"; + div.style.height = (this.renderer.height) + "px"; + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (child.renderId !== this.renderId) + { + child._accessibleActive = false; + + removeItems(this.children, i, 1); + this.div.removeChild(child._accessibleDiv); + this.pool.push(child._accessibleDiv); + child._accessibleDiv = null; + + i--; + + if (this.children.length === 0) + { + this.deactivate(); + } + } + else + { + // map div to display.. + div = child._accessibleDiv; + var hitArea = child.hitArea; + var wt = child.worldTransform; + + if (child.hitArea) + { + div.style.left = ((wt.tx + (hitArea.x * wt.a)) * sx) + "px"; + div.style.top = ((wt.ty + (hitArea.y * wt.d)) * sy) + "px"; + + div.style.width = (hitArea.width * wt.a * sx) + "px"; + div.style.height = (hitArea.height * wt.d * sy) + "px"; + } + else + { + hitArea = child.getBounds(); + + this.capHitArea(hitArea); + + div.style.left = (hitArea.x * sx) + "px"; + div.style.top = (hitArea.y * sy) + "px"; + + div.style.width = (hitArea.width * sx) + "px"; + div.style.height = (hitArea.height * sy) + "px"; + + // update button titles and hints if they exist and they've changed + if (div.title !== child.accessibleTitle && child.accessibleTitle !== null) + { + div.title = child.accessibleTitle; + } + if (div.getAttribute('aria-label') !== child.accessibleHint + && child.accessibleHint !== null) + { + div.setAttribute('aria-label', child.accessibleHint); + } + } + } + } + + // increment the render id.. + this.renderId++; +}; + +/** + * Adjust the hit area based on the bounds of a display object + * + * @param {PIXI.Rectangle} hitArea - Bounds of the child + */ +AccessibilityManager.prototype.capHitArea = function capHitArea (hitArea) +{ + if (hitArea.x < 0) + { + hitArea.width += hitArea.x; + hitArea.x = 0; + } + + if (hitArea.y < 0) + { + hitArea.height += hitArea.y; + hitArea.y = 0; + } + + if (hitArea.x + hitArea.width > this.renderer.width) + { + hitArea.width = this.renderer.width - hitArea.x; + } + + if (hitArea.y + hitArea.height > this.renderer.height) + { + hitArea.height = this.renderer.height - hitArea.y; + } +}; + +/** + * Adds a DisplayObject to the accessibility manager + * + * @private + * @param {PIXI.DisplayObject} displayObject - The child to make accessible. + */ +AccessibilityManager.prototype.addChild = function addChild (displayObject) +{ + //this.activate(); + + var div = this.pool.pop(); + + if (!div) + { + div = document.createElement('button'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.backgroundColor = this.debug ? 'rgba(255,0,0,0.5)' : 'transparent'; + div.style.position = 'absolute'; + div.style.zIndex = DIV_TOUCH_ZINDEX; + div.style.borderStyle = 'none'; + + // ARIA attributes ensure that button title and hint updates are announced properly + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + // Chrome doesn't need aria-live to work as intended; in fact it just gets more confused. + div.setAttribute('aria-live', 'off'); + } + else + { + div.setAttribute('aria-live', 'polite'); + } + + if (navigator.userAgent.match(/rv:.*Gecko\//)) + { + // FireFox needs this to announce only the new button name + div.setAttribute('aria-relevant', 'additions'); + } + else + { + // required by IE, other browsers don't much care + div.setAttribute('aria-relevant', 'text'); + } + + div.addEventListener('click', this._onClick.bind(this)); + div.addEventListener('focus', this._onFocus.bind(this)); + div.addEventListener('focusout', this._onFocusOut.bind(this)); + } + + if (displayObject.accessibleTitle && displayObject.accessibleTitle !== null) + { + div.title = displayObject.accessibleTitle; + } + else if (!displayObject.accessibleHint + || displayObject.accessibleHint === null) + { + div.title = "displayObject " + (displayObject.tabIndex); + } + + if (displayObject.accessibleHint + && displayObject.accessibleHint !== null) + { + div.setAttribute('aria-label', displayObject.accessibleHint); + } + + // + + displayObject._accessibleActive = true; + displayObject._accessibleDiv = div; + div.displayObject = displayObject; + + this.children.push(displayObject); + this.div.appendChild(displayObject._accessibleDiv); + displayObject._accessibleDiv.tabIndex = displayObject.tabIndex; +}; + +/** + * Maps the div button press to pixi's InteractionManager (click) + * + * @private + * @param {MouseEvent} e - The click event. + */ +AccessibilityManager.prototype._onClick = function _onClick (e) +{ + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'click', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'pointertap', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'tap', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseover) + * + * @private + * @param {FocusEvent} e - The focus event. + */ +AccessibilityManager.prototype._onFocus = function _onFocus (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'assertive'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseover', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseout) + * + * @private + * @param {FocusEvent} e - The focusout event. + */ +AccessibilityManager.prototype._onFocusOut = function _onFocusOut (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'polite'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseout', interactionManager.eventData); +}; + +/** + * Is called when a key is pressed + * + * @private + * @param {KeyboardEvent} e - The keydown event. + */ +AccessibilityManager.prototype._onKeyDown = function _onKeyDown (e) +{ + if (e.keyCode !== KEY_CODE_TAB) + { + return; + } + + this.activate(); +}; + +/** + * Is called when the mouse moves across the renderer element + * + * @private + * @param {MouseEvent} e - The mouse event. + */ +AccessibilityManager.prototype._onMouseMove = function _onMouseMove (e) +{ + if (e.movementX === 0 && e.movementY === 0) + { + return; + } + + this.deactivate(); +}; + +/** + * Destroys the accessibility manager + * + */ +AccessibilityManager.prototype.destroy = function destroy () +{ + this.destroyTouchHook(); + this.div = null; + + for (var i = 0; i < this.children.length; i++) + { + this.children[i].div = null; + } + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown); + + this.pool = null; + this.children = null; + this.renderer = null; +}; + +/*! + * @pixi/runner - v5.1.1 + * Compiled Fri, 02 Aug 2019 23:20:23 UTC + * + * @pixi/runner is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * A Runner is a highly performant and simple alternative to signals. Best used in situations + * where events are dispatched to many objects at high frequency (say every frame!) + * + * + * like a signal.. + * ``` + * const myObject = { + * loaded: new PIXI.Runner('loaded') + * } + * + * const listener = { + * loaded: function(){ + * // thin + * } + * } + * + * myObject.update.add(listener); + * + * myObject.loaded.emit(); + * ``` + * + * Or for handling calling the same function on many items + * ``` + * const myGame = { + * update: new PIXI.Runner('update') + * } + * + * const gameObject = { + * update: function(time){ + * // update my gamey state + * } + * } + * + * myGame.update.add(gameObject1); + * + * myGame.update.emit(time); + * ``` + * @class + * @memberof PIXI + */ +var Runner = function Runner(name) +{ + this.items = []; + this._name = name; + this._aliasCount = 0; +}; + +var prototypeAccessors$3 = { empty: { configurable: true },name: { configurable: true } }; + +/** + * Dispatch/Broadcast Runner to all listeners added to the queue. + * @param {...any} params - optional parameters to pass to each listener + */ +Runner.prototype.emit = function emit (a0, a1, a2, a3, a4, a5, a6, a7) +{ + if (arguments.length > 8) + { + throw new Error('max arguments reached'); + } + + var ref = this; + var name = ref.name; + var items = ref.items; + + this._aliasCount++; + + for (var i = 0, len = items.length; i < len; i++) + { + items[i][name](a0, a1, a2, a3, a4, a5, a6, a7); + } + + if (items === this.items) + { + this._aliasCount--; + } + + return this; +}; + +Runner.prototype.ensureNonAliasedItems = function ensureNonAliasedItems () +{ + if (this._aliasCount > 0 && this.items.length > 1) + { + this._aliasCount = 0; + this.items = this.items.slice(0); + } +}; + +/** + * Add a listener to the Runner + * + * Runners do not need to have scope or functions passed to them. + * All that is required is to pass the listening object and ensure that it has contains a function that has the same name + * as the name provided to the Runner when it was created. + * + * Eg A listener passed to this Runner will require a 'complete' function. + * + * ``` + * const complete = new PIXI.Runner('complete'); + * ``` + * + * The scope used will be the object itself. + * + * @param {any} item - The object that will be listening. + */ +Runner.prototype.add = function add (item) +{ + if (item[this._name]) + { + this.ensureNonAliasedItems(); + this.remove(item); + this.items.push(item); + } + + return this; +}; + +/** + * Remove a single listener from the dispatch queue. + * @param {any} item - The listenr that you would like to remove. + */ +Runner.prototype.remove = function remove (item) +{ + var index = this.items.indexOf(item); + + if (index !== -1) + { + this.ensureNonAliasedItems(); + this.items.splice(index, 1); + } + + return this; +}; + +/** + * Check to see if the listener is already in the Runner + * @param {any} item - The listener that you would like to check. + */ +Runner.prototype.contains = function contains (item) +{ + return this.items.indexOf(item) !== -1; +}; + +/** + * Remove all listeners from the Runner + */ +Runner.prototype.removeAll = function removeAll () +{ + this.ensureNonAliasedItems(); + this.items.length = 0; + + return this; +}; + +/** + * Remove all references, don't use after this. + */ +Runner.prototype.destroy = function destroy () +{ + this.removeAll(); + this.items = null; + this._name = null; +}; + +/** + * `true` if there are no this Runner contains no listeners + * + * @member {boolean} + * @readonly + */ +prototypeAccessors$3.empty.get = function () +{ + return this.items.length === 0; +}; + +/** + * The name of the runner. + * + * @member {string} + * @readonly + */ +prototypeAccessors$3.name.get = function () +{ + return this._name; +}; + +Object.defineProperties( Runner.prototype, prototypeAccessors$3 ); + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method dispatch + * @see PIXI.Runner#emit + */ +Runner.prototype.dispatch = Runner.prototype.emit; + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method run + * @see PIXI.Runner#emit + */ +Runner.prototype.run = Runner.prototype.emit; + +/*! + * @pixi/ticker - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/ticker is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Target frames per millisecond. + * + * @static + * @name TARGET_FPMS + * @memberof PIXI.settings + * @type {number} + * @default 0.06 + */ +settings.TARGET_FPMS = 0.06; + +/** + * Represents the update priorities used by internal PIXI classes when registered with + * the {@link PIXI.Ticker} object. Higher priority items are updated first and lower + * priority items, such as render, should go later. + * + * @static + * @constant + * @name UPDATE_PRIORITY + * @memberof PIXI + * @type {object} + * @property {number} INTERACTION=50 Highest priority, used for {@link PIXI.interaction.InteractionManager} + * @property {number} HIGH=25 High priority updating, {@link PIXI.VideoBaseTexture} and {@link PIXI.AnimatedSprite} + * @property {number} NORMAL=0 Default priority for ticker events, see {@link PIXI.Ticker#add}. + * @property {number} LOW=-25 Low priority used for {@link PIXI.Application} rendering. + * @property {number} UTILITY=-50 Lowest priority used for {@link PIXI.prepare.BasePrepare} utility. + */ +var UPDATE_PRIORITY = { + INTERACTION: 50, + HIGH: 25, + NORMAL: 0, + LOW: -25, + UTILITY: -50, +}; + +/** + * Internal class for handling the priority sorting of ticker handlers. + * + * @private + * @class + * @memberof PIXI + */ +var TickerListener = function TickerListener(fn, context, priority, once) +{ + if ( context === void 0 ) context = null; + if ( priority === void 0 ) priority = 0; + if ( once === void 0 ) once = false; + + /** + * The handler function to execute. + * @private + * @member {Function} + */ + this.fn = fn; + + /** + * The calling to execute. + * @private + * @member {*} + */ + this.context = context; + + /** + * The current priority. + * @private + * @member {number} + */ + this.priority = priority; + + /** + * If this should only execute once. + * @private + * @member {boolean} + */ + this.once = once; + + /** + * The next item in chain. + * @private + * @member {TickerListener} + */ + this.next = null; + + /** + * The previous item in chain. + * @private + * @member {TickerListener} + */ + this.previous = null; + + /** + * `true` if this listener has been destroyed already. + * @member {boolean} + * @private + */ + this._destroyed = false; +}; + +/** + * Simple compare function to figure out if a function and context match. + * @private + * @param {Function} fn - The listener function to be added for one update + * @param {Function} context - The listener context + * @return {boolean} `true` if the listener match the arguments + */ +TickerListener.prototype.match = function match (fn, context) +{ + context = context || null; + + return this.fn === fn && this.context === context; +}; + +/** + * Emit by calling the current function. + * @private + * @param {number} deltaTime - time since the last emit. + * @return {TickerListener} Next ticker + */ +TickerListener.prototype.emit = function emit (deltaTime) +{ + if (this.fn) + { + if (this.context) + { + this.fn.call(this.context, deltaTime); + } + else + { + this.fn(deltaTime); + } + } + + var redirect = this.next; + + if (this.once) + { + this.destroy(true); + } + + // Soft-destroying should remove + // the next reference + if (this._destroyed) + { + this.next = null; + } + + return redirect; +}; + +/** + * Connect to the list. + * @private + * @param {TickerListener} previous - Input node, previous listener + */ +TickerListener.prototype.connect = function connect (previous) +{ + this.previous = previous; + if (previous.next) + { + previous.next.previous = this; + } + this.next = previous.next; + previous.next = this; +}; + +/** + * Destroy and don't use after this. + * @private + * @param {boolean} [hard = false] `true` to remove the `next` reference, this + * is considered a hard destroy. Soft destroy maintains the next reference. + * @return {TickerListener} The listener to redirect while emitting or removing. + */ +TickerListener.prototype.destroy = function destroy (hard) +{ + if ( hard === void 0 ) hard = false; + + this._destroyed = true; + this.fn = null; + this.context = null; + + // Disconnect, hook up next and previous + if (this.previous) + { + this.previous.next = this.next; + } + + if (this.next) + { + this.next.previous = this.previous; + } + + // Redirect to the next item + var redirect = this.next; + + // Remove references + this.next = hard ? null : redirect; + this.previous = null; + + return redirect; +}; + +/** + * A Ticker class that runs an update loop that other objects listen to. + * + * This class is composed around listeners meant for execution on the next requested animation frame. + * Animation frames are requested only when necessary, e.g. When the ticker is started and the emitter has listeners. + * + * @class + * @memberof PIXI + */ +var Ticker = function Ticker() +{ + var this$1 = this; + + /** + * The first listener. All new listeners added are chained on this. + * @private + * @type {TickerListener} + */ + this._head = new TickerListener(null, null, Infinity); + + /** + * Internal current frame request ID + * @type {?number} + * @private + */ + this._requestId = null; + + /** + * Internal value managed by minFPS property setter and getter. + * This is the maximum allowed milliseconds between updates. + * @type {number} + * @private + */ + this._maxElapsedMS = 100; + + /** + * Internal value managed by maxFPS property setter and getter. + * This is the minimum allowed milliseconds between updates. + * @private + */ + this._minElapsedMS = 0; + + /** + * Whether or not this ticker should invoke the method + * {@link PIXI.Ticker#start} automatically + * when a listener is added. + * + * @member {boolean} + * @default false + */ + this.autoStart = false; + + /** + * Scalar time value from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * + * @member {number} + * @default 1 + */ + this.deltaTime = 1; + + /** + * Scaler time elapsed in milliseconds from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.deltaMS = 1 / settings.TARGET_FPMS; + + /** + * Time elapsed in milliseconds from last frame to this frame. + * Opposed to what the scalar {@link PIXI.Ticker#deltaTime} + * is based, this value is neither capped nor scaled. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.elapsedMS = 1 / settings.TARGET_FPMS; + + /** + * The last time {@link PIXI.Ticker#update} was invoked. + * This value is also reset internally outside of invoking + * update, but only when a new animation frame is requested. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * + * @member {number} + * @default -1 + */ + this.lastTime = -1; + + /** + * Factor of current {@link PIXI.Ticker#deltaTime}. + * @example + * // Scales ticker.deltaTime to what would be + * // the equivalent of approximately 120 FPS + * ticker.speed = 2; + * + * @member {number} + * @default 1 + */ + this.speed = 1; + + /** + * Whether or not this ticker has been started. + * `true` if {@link PIXI.Ticker#start} has been called. + * `false` if {@link PIXI.Ticker#stop} has been called. + * While `false`, this value may change to `true` in the + * event of {@link PIXI.Ticker#autoStart} being `true` + * and a listener is added. + * + * @member {boolean} + * @default false + */ + this.started = false; + + /** + * If enabled, deleting is disabled. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + + /** + * The last time keyframe was executed. + * Maintains a relatively fixed interval with the previous value. + * @member {number} + * @default -1 + * @private + */ + this._lastFrame = -1; + + /** + * Internal tick method bound to ticker instance. + * This is because in early 2015, Function.bind + * is still 60% slower in high performance scenarios. + * Also separating frame requests from update method + * so listeners may be called at any time and with + * any animation API, just invoke ticker.update(time). + * + * @private + * @param {number} time - Time since last tick. + */ + this._tick = function (time) { + this$1._requestId = null; + + if (this$1.started) + { + // Invoke listeners now + this$1.update(time); + // Listener side effects may have modified ticker state. + if (this$1.started && this$1._requestId === null && this$1._head.next) + { + this$1._requestId = requestAnimationFrame(this$1._tick); + } + } + }; +}; + +var prototypeAccessors$4 = { FPS: { configurable: true },minFPS: { configurable: true },maxFPS: { configurable: true } }; +var staticAccessors$2 = { shared: { configurable: true },system: { configurable: true } }; + +/** + * Conditionally requests a new animation frame. + * If a frame has not already been requested, and if the internal + * emitter has listeners, a new frame is requested. + * + * @private + */ +Ticker.prototype._requestIfNeeded = function _requestIfNeeded () +{ + if (this._requestId === null && this._head.next) + { + // ensure callbacks get correct delta + this.lastTime = performance.now(); + this._lastFrame = this.lastTime; + this._requestId = requestAnimationFrame(this._tick); + } +}; + +/** + * Conditionally cancels a pending animation frame. + * + * @private + */ +Ticker.prototype._cancelIfNeeded = function _cancelIfNeeded () +{ + if (this._requestId !== null) + { + cancelAnimationFrame(this._requestId); + this._requestId = null; + } +}; + +/** + * Conditionally requests a new animation frame. + * If the ticker has been started it checks if a frame has not already + * been requested, and if the internal emitter has listeners. If these + * conditions are met, a new frame is requested. If the ticker has not + * been started, but autoStart is `true`, then the ticker starts now, + * and continues with the previous conditions to request a new frame. + * + * @private + */ +Ticker.prototype._startIfPossible = function _startIfPossible () +{ + if (this.started) + { + this._requestIfNeeded(); + } + else if (this.autoStart) + { + this.start(); + } +}; + +/** + * Register a handler for tick events. Calls continuously unless + * it is removed or the ticker is stopped. + * + * @param {Function} fn - The listener function to be added for updates + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.add = function add (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority)); +}; + +/** + * Add a handler for the tick event which is only execute once. + * + * @param {Function} fn - The listener function to be added for one update + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.addOnce = function addOnce (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority, true)); +}; + +/** + * Internally adds the event handler so that it can be sorted by priority. + * Priority allows certain handler (user, AnimatedSprite, Interaction) to be run + * before the rendering. + * + * @private + * @param {TickerListener} listener - Current listener being added. + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype._addListener = function _addListener (listener) +{ + // For attaching to head + var current = this._head.next; + var previous = this._head; + + // Add the first item + if (!current) + { + listener.connect(previous); + } + else + { + // Go from highest to lowest priority + while (current) + { + if (listener.priority > current.priority) + { + listener.connect(previous); + break; + } + previous = current; + current = current.next; + } + + // Not yet connected + if (!listener.previous) + { + listener.connect(previous); + } + } + + this._startIfPossible(); + + return this; +}; + +/** + * Removes any handlers matching the function and context parameters. + * If no handlers are left after removing, then it cancels the animation frame. + * + * @param {Function} fn - The listener function to be removed + * @param {*} [context] - The listener context to be removed + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.remove = function remove (fn, context) +{ + var listener = this._head.next; + + while (listener) + { + // We found a match, lets remove it + // no break to delete all possible matches + // incase a listener was added 2+ times + if (listener.match(fn, context)) + { + listener = listener.destroy(); + } + else + { + listener = listener.next; + } + } + + if (!this._head.next) + { + this._cancelIfNeeded(); + } + + return this; +}; + +/** + * Starts the ticker. If the ticker has listeners + * a new animation frame is requested at this point. + */ +Ticker.prototype.start = function start () +{ + if (!this.started) + { + this.started = true; + this._requestIfNeeded(); + } +}; + +/** + * Stops the ticker. If the ticker has requested + * an animation frame it is canceled at this point. + */ +Ticker.prototype.stop = function stop () +{ + if (this.started) + { + this.started = false; + this._cancelIfNeeded(); + } +}; + +/** + * Destroy the ticker and don't use after this. Calling + * this method removes all references to internal events. + */ +Ticker.prototype.destroy = function destroy () +{ + if (!this._protected) + { + this.stop(); + + var listener = this._head.next; + + while (listener) + { + listener = listener.destroy(true); + } + + this._head.destroy(); + this._head = null; + } +}; + +/** + * Triggers an update. An update entails setting the + * current {@link PIXI.Ticker#elapsedMS}, + * the current {@link PIXI.Ticker#deltaTime}, + * invoking all listeners with current deltaTime, + * and then finally setting {@link PIXI.Ticker#lastTime} + * with the value of currentTime that was provided. + * This method will be called automatically by animation + * frame callbacks if the ticker instance has been started + * and listeners are added. + * + * @param {number} [currentTime=performance.now()] - the current time of execution + */ +Ticker.prototype.update = function update (currentTime) +{ + if ( currentTime === void 0 ) currentTime = performance.now(); + + var elapsedMS; + + // If the difference in time is zero or negative, we ignore most of the work done here. + // If there is no valid difference, then should be no reason to let anyone know about it. + // A zero delta, is exactly that, nothing should update. + // + // The difference in time can be negative, and no this does not mean time traveling. + // This can be the result of a race condition between when an animation frame is requested + // on the current JavaScript engine event loop, and when the ticker's start method is invoked + // (which invokes the internal _requestIfNeeded method). If a frame is requested before + // _requestIfNeeded is invoked, then the callback for the animation frame the ticker requests, + // can receive a time argument that can be less than the lastTime value that was set within + // _requestIfNeeded. This difference is in microseconds, but this is enough to cause problems. + // + // This check covers this browser engine timing issue, as well as if consumers pass an invalid + // currentTime value. This may happen if consumers opt-out of the autoStart, and update themselves. + + if (currentTime > this.lastTime) + { + // Save uncapped elapsedMS for measurement + elapsedMS = this.elapsedMS = currentTime - this.lastTime; + + // cap the milliseconds elapsed used for deltaTime + if (elapsedMS > this._maxElapsedMS) + { + elapsedMS = this._maxElapsedMS; + } + + elapsedMS *= this.speed; + + // If not enough time has passed, exit the function. + // Get ready for next frame by setting _lastFrame, but based on _minElapsedMS + // adjustment to ensure a relatively stable interval. + if (this._minElapsedMS) + { + var delta = currentTime - this._lastFrame | 0; + + if (delta < this._minElapsedMS) + { + return; + } + + this._lastFrame = currentTime - (delta % this._minElapsedMS); + } + + this.deltaMS = elapsedMS; + this.deltaTime = this.deltaMS * settings.TARGET_FPMS; + + // Cache a local reference, in-case ticker is destroyed + // during the emit, we can still check for head.next + var head = this._head; + + // Invoke listeners added to internal emitter + var listener = head.next; + + while (listener) + { + listener = listener.emit(this.deltaTime); + } + + if (!head.next) + { + this._cancelIfNeeded(); + } + } + else + { + this.deltaTime = this.deltaMS = this.elapsedMS = 0; + } + + this.lastTime = currentTime; +}; + +/** + * The frames per second at which this ticker is running. + * The default is approximately 60 in most modern browsers. + * **Note:** This does not factor in the value of + * {@link PIXI.Ticker#speed}, which is specific + * to scaling {@link PIXI.Ticker#deltaTime}. + * + * @member {number} + * @readonly + */ +prototypeAccessors$4.FPS.get = function () +{ + return 1000 / this.elapsedMS; +}; + +/** + * Manages the maximum amount of milliseconds allowed to + * elapse between invoking {@link PIXI.Ticker#update}. + * This value is used to cap {@link PIXI.Ticker#deltaTime}, + * but does not effect the measured value of {@link PIXI.Ticker#FPS}. + * When setting this property it is clamped to a value between + * `0` and `PIXI.settings.TARGET_FPMS * 1000`. + * + * @member {number} + * @default 10 + */ +prototypeAccessors$4.minFPS.get = function () +{ + return 1000 / this._maxElapsedMS; +}; + +prototypeAccessors$4.minFPS.set = function (fps) // eslint-disable-line require-jsdoc +{ + // Minimum must be below the maxFPS + var minFPS = Math.min(this.maxFPS, fps); + + // Must be at least 0, but below 1 / settings.TARGET_FPMS + var minFPMS = Math.min(Math.max(0, minFPS) / 1000, settings.TARGET_FPMS); + + this._maxElapsedMS = 1 / minFPMS; +}; + +/** + * Manages the minimum amount of milliseconds required to + * elapse between invoking {@link PIXI.Ticker#update}. + * This will effect the measured value of {@link PIXI.Ticker#FPS}. + * If it is set to `0`, then there is no limit; PixiJS will render as many frames as it can. + * Otherwise it will be at least `minFPS` + * + * @member {number} + * @default 0 + */ +prototypeAccessors$4.maxFPS.get = function () +{ + if (this._minElapsedMS) + { + return Math.round(1000 / this._minElapsedMS); + } + + return 0; +}; + +prototypeAccessors$4.maxFPS.set = function (fps) +{ + if (fps === 0) + { + this._minElapsedMS = 0; + } + else + { + // Max must be at least the minFPS + var maxFPS = Math.max(this.minFPS, fps); + + this._minElapsedMS = 1 / (maxFPS / 1000); + } +}; + +/** + * The shared ticker instance used by {@link PIXI.AnimatedSprite} and by + * {@link PIXI.VideoResource} to update animation frames / video textures. + * + * It may also be used by {@link PIXI.Application} if created with the `sharedTicker` option property set to true. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * Please follow the examples for usage, including how to opt-out of auto-starting the shared ticker. + * + * @example + * let ticker = PIXI.Ticker.shared; + * // Set this to prevent starting this ticker when listeners are added. + * // By default this is true only for the PIXI.Ticker.shared instance. + * ticker.autoStart = false; + * // FYI, call this to ensure the ticker is stopped. It should be stopped + * // if you have not attempted to render anything yet. + * ticker.stop(); + * // Call this when you are ready for a running shared ticker. + * ticker.start(); + * + * @example + * // You may use the shared ticker to render... + * let renderer = PIXI.autoDetectRenderer(); + * let stage = new PIXI.Container(); + * document.body.appendChild(renderer.view); + * ticker.add(function (time) { + * renderer.render(stage); + * }); + * + * @example + * // Or you can just update it manually. + * ticker.autoStart = false; + * ticker.stop(); + * function animate(time) { + * ticker.update(time); + * renderer.render(stage); + * requestAnimationFrame(animate); + * } + * animate(performance.now()); + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.shared.get = function () +{ + if (!Ticker._shared) + { + var shared = Ticker._shared = new Ticker(); + + shared.autoStart = true; + shared._protected = true; + } + + return Ticker._shared; +}; + +/** + * The system ticker instance used by {@link PIXI.interaction.InteractionManager} and by + * {@link PIXI.BasePrepare} for core timing functionality that shouldn't usually need to be paused, + * unlike the `shared` ticker which drives visual animations and rendering which may want to be paused. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.system.get = function () +{ + if (!Ticker._system) + { + var system = Ticker._system = new Ticker(); + + system.autoStart = true; + system._protected = true; + } + + return Ticker._system; +}; + +Object.defineProperties( Ticker.prototype, prototypeAccessors$4 ); +Object.defineProperties( Ticker, staticAccessors$2 ); + +/** + * Middleware for for Application Ticker. + * + * @example + * import {TickerPlugin} from '@pixi/ticker'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(TickerPlugin); + * + * @class + * @memberof PIXI + */ +var TickerPlugin = function TickerPlugin () {}; + +TickerPlugin.init = function init (options) +{ + var this$1 = this; + + // Set default + options = Object.assign({ + autoStart: true, + sharedTicker: false, + }, options); + + // Create ticker setter + Object.defineProperty(this, 'ticker', + { + set: function set(ticker) + { + if (this._ticker) + { + this._ticker.remove(this.render, this); + } + this._ticker = ticker; + if (ticker) + { + ticker.add(this.render, this, UPDATE_PRIORITY.LOW); + } + }, + get: function get() + { + return this._ticker; + }, + }); + + /** + * Convenience method for stopping the render. + * + * @method PIXI.Application#stop + */ + this.stop = function () { + this$1._ticker.stop(); + }; + + /** + * Convenience method for starting the render. + * + * @method PIXI.Application#start + */ + this.start = function () { + this$1._ticker.start(); + }; + + /** + * Internal reference to the ticker. + * + * @type {PIXI.Ticker} + * @name _ticker + * @memberof PIXI.Application# + * @private + */ + this._ticker = null; + + /** + * Ticker for doing render updates. + * + * @type {PIXI.Ticker} + * @name ticker + * @memberof PIXI.Application# + * @default PIXI.Ticker.shared + */ + this.ticker = options.sharedTicker ? Ticker.shared : new Ticker(); + + // Start the rendering + if (options.autoStart) + { + this.start(); + } +}; + +/** + * Clean up the ticker, scoped to application. + * + * @static + * @private + */ +TickerPlugin.destroy = function destroy () +{ + if (this._ticker) + { + var oldTicker = this._ticker; + + this.ticker = null; + oldTicker.destroy(); + } +}; + +/*! + * @pixi/core - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/core is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Base resource class for textures that manages validation and uploading, depending on its type. + * + * Uploading of a base texture to the GPU is required. + * + * @class + * @memberof PIXI.resources + */ +var Resource = function Resource(width, height) +{ + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * Internal width of the resource + * @member {number} + * @protected + */ + this._width = width; + + /** + * Internal height of the resource + * @member {number} + * @protected + */ + this._height = height; + + /** + * If resource has been destroyed + * @member {boolean} + * @readonly + * @default false + */ + this.destroyed = false; + + /** + * `true` if resource is created by BaseTexture + * useful for doing cleanup with BaseTexture destroy + * and not cleaning up resources that were created + * externally. + * @member {boolean} + * @protected + */ + this.internal = false; + + /** + * Mini-runner for handling resize events + * + * @member {Runner} + * @private + */ + this.onResize = new Runner('setRealSize', 2); + + /** + * Mini-runner for handling update events + * + * @member {Runner} + * @private + */ + this.onUpdate = new Runner('update'); + + /** + * Handle internal errors, such as loading errors + * + * @member {Runner} + * @private + */ + this.onError = new Runner('onError', 1); +}; + +var prototypeAccessors$5 = { valid: { configurable: true },width: { configurable: true },height: { configurable: true } }; + +/** + * Bind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.bind = function bind (baseTexture) +{ + this.onResize.add(baseTexture); + this.onUpdate.add(baseTexture); + this.onError.add(baseTexture); + + // Call a resize immediate if we already + // have the width and height of the resource + if (this._width || this._height) + { + this.onResize.run(this._width, this._height); + } +}; + +/** + * Unbind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.unbind = function unbind (baseTexture) +{ + this.onResize.remove(baseTexture); + this.onUpdate.remove(baseTexture); + this.onError.remove(baseTexture); +}; + +/** + * Trigger a resize event + * @param {number} width X dimension + * @param {number} height Y dimension + */ +Resource.prototype.resize = function resize (width, height) +{ + if (width !== this._width || height !== this._height) + { + this._width = width; + this._height = height; + this.onResize.run(width, height); + } +}; + +/** + * Has been validated + * @readonly + * @member {boolean} + */ +prototypeAccessors$5.valid.get = function () +{ + return !!this._width && !!this._height; +}; + +/** + * Has been updated trigger event + */ +Resource.prototype.update = function update () +{ + if (!this.destroyed) + { + this.onUpdate.run(); + } +}; + +/** + * This can be overridden to start preloading a resource + * or do any other prepare step. + * @protected + * @return {Promise} Handle the validate event + */ +Resource.prototype.load = function load () +{ + return Promise.resolve(); +}; + +/** + * The width of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.width.get = function () +{ + return this._width; +}; + +/** + * The height of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.height.get = function () +{ + return this._height; +}; + +/** + * Uploads the texture or returns false if it cant for some reason. Override this. + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} true is success + */ +Resource.prototype.upload = function upload (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Set the style, optional to override + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} `true` is success + */ +Resource.prototype.style = function style (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Clean up anything, this happens when destroying is ready. + * + * @protected + */ +Resource.prototype.dispose = function dispose () +{ + // override +}; + +/** + * Call when destroying resource, unbind any BaseTexture object + * before calling this method, as reference counts are maintained + * internally. + */ +Resource.prototype.destroy = function destroy () +{ + if (!this.destroyed) + { + this.destroyed = true; + this.dispose(); + this.onError.removeAll(); + this.onError = null; + this.onResize.removeAll(); + this.onResize = null; + this.onUpdate.removeAll(); + this.onUpdate = null; + } +}; + +Object.defineProperties( Resource.prototype, prototypeAccessors$5 ); + +/** + * Base for all the image/canvas resources + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BaseImageResource = /*@__PURE__*/(function (Resource) { + function BaseImageResource(source) + { + var width = source.naturalWidth || source.videoWidth || source.width; + var height = source.naturalHeight || source.videoHeight || source.height; + + Resource.call(this, width, height); + + /** + * The source element + * @member {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} + * @readonly + */ + this.source = source; + + /** + * If set to `true`, will force `texImage2D` over `texSubImage2D` for uploading. + * Certain types of media (e.g. video) using `texImage2D` is more performant. + * @member {boolean} + * @default false + * @private + */ + this.noSubImage = false; + } + + if ( Resource ) BaseImageResource.__proto__ = Resource; + BaseImageResource.prototype = Object.create( Resource && Resource.prototype ); + BaseImageResource.prototype.constructor = BaseImageResource; + + /** + * Set cross origin based detecting the url and the crossorigin + * @protected + * @param {HTMLElement} element - Element to apply crossOrigin + * @param {string} url - URL to check + * @param {boolean|string} [crossorigin=true] - Cross origin value to use + */ + BaseImageResource.crossOrigin = function crossOrigin (element, url, crossorigin) + { + if (crossorigin === undefined && url.indexOf('data:') !== 0) + { + element.crossOrigin = determineCrossOrigin(url); + } + else if (crossorigin !== false) + { + element.crossOrigin = typeof crossorigin === 'string' ? crossorigin : 'anonymous'; + } + }; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture + * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} [source] (optional) + * @returns {boolean} true is success + */ + BaseImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture, source) + { + var gl = renderer.gl; + var width = baseTexture.realWidth; + var height = baseTexture.realHeight; + + source = source || this.source; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (!this.noSubImage + && baseTexture.target === gl.TEXTURE_2D + && glTexture.width === width + && glTexture.height === height) + { + gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, baseTexture.format, baseTexture.type, source); + } + else + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(baseTexture.target, 0, baseTexture.format, baseTexture.format, baseTexture.type, source); + } + + return true; + }; + + /** + * Checks if source width/height was changed, resize can cause extra baseTexture update. + * Triggers one update in any case. + */ + BaseImageResource.prototype.update = function update () + { + if (this.destroyed) + { + return; + } + + var width = this.source.naturalWidth || this.source.videoWidth || this.source.width; + var height = this.source.naturalHeight || this.source.videoHeight || this.source.height; + + this.resize(width, height); + + Resource.prototype.update.call(this); + }; + + /** + * Destroy this BaseImageResource + * @override + * @param {PIXI.BaseTexture} [fromTexture] Optional base texture + * @return {boolean} Destroy was successful + */ + BaseImageResource.prototype.dispose = function dispose () + { + this.source = null; + }; + + return BaseImageResource; +}(Resource)); + +/** + * Resource type for HTMLImageElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + */ +var ImageResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLImageElement)) + { + var imageElement = new Image(); + + BaseImageResource.crossOrigin(imageElement, source, options.crossorigin); + + imageElement.src = source; + source = imageElement; + } + + BaseImageResource.call(this, source); + + // FireFox 68, and possibly other versions, seems like setting the HTMLImageElement#width and #height + // to non-zero values before its loading completes if images are in a cache. + // Because of this, need to set the `_width` and the `_height` to zero to avoid uploading incomplete images. + // Please refer to the issue #5968 (https://github.com/pixijs/pixi.js/issues/5968). + if (!source.complete && !!this._width && !!this._height) + { + this._width = 0; + this._height = 0; + } + + /** + * URL of the image source + * @member {string} + */ + this.url = source.src; + + /** + * When process is completed + * @member {Promise} + * @private + */ + this._process = null; + + /** + * If the image should be disposed after upload + * @member {boolean} + * @default false + */ + this.preserveBitmap = false; + + /** + * If capable, convert the image using createImageBitmap API + * @member {boolean} + * @default PIXI.settings.CREATE_IMAGE_BITMAP + */ + this.createBitmap = (options.createBitmap !== undefined + ? options.createBitmap : settings.CREATE_IMAGE_BITMAP) && !!window.createImageBitmap; + + /** + * Controls texture premultiplyAlpha field + * Copies from options + * @member {boolean|null} + * @readonly + */ + this.premultiplyAlpha = options.premultiplyAlpha !== false; + + /** + * The ImageBitmap element created for HTMLImageElement + * @member {ImageBitmap} + * @default null + */ + this.bitmap = null; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) ImageResource.__proto__ = BaseImageResource; + ImageResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageResource.prototype.constructor = ImageResource; + + /** + * returns a promise when image will be loaded and processed + * + * @param {boolean} [createBitmap=true] whether process image into bitmap + * @returns {Promise} + */ + ImageResource.prototype.load = function load (createBitmap) + { + var this$1 = this; + + if (createBitmap !== undefined) + { + this.createBitmap = createBitmap; + } + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + this$1.url = this$1.source.src; + var ref = this$1; + var source = ref.source; + + var completed = function () { + if (this$1.destroyed) + { + return; + } + source.onload = null; + source.onerror = null; + + this$1.resize(source.width, source.height); + this$1._load = null; + + if (this$1.createBitmap) + { + resolve(this$1.process()); + } + else + { + resolve(this$1); + } + }; + + if (source.complete && source.src) + { + completed(); + } + else + { + source.onload = completed; + source.onerror = function (event) { return this$1.onError.run(event); }; + } + }); + + return this._load; + }; + + /** + * Called when we need to convert image into BitmapImage. + * Can be called multiple times, real promise is cached inside. + * + * @returns {Promise} cached promise to fill that bitmap + */ + ImageResource.prototype.process = function process () + { + var this$1 = this; + + if (this._process !== null) + { + return this._process; + } + if (this.bitmap !== null || !window.createImageBitmap) + { + return Promise.resolve(this); + } + + this._process = window.createImageBitmap(this.source, + 0, 0, this.source.width, this.source.height, + { + premultiplyAlpha: this.premultiplyAlpha ? 'premultiply' : 'none', + }) + .then(function (bitmap) { + if (this$1.destroyed) + { + return Promise.reject(); + } + this$1.bitmap = bitmap; + this$1.update(); + this$1._process = null; + + return Promise.resolve(this$1); + }); + + return this._process; + }; + + /** + * Upload the image resource to GPU. + * + * @param {PIXI.Renderer} renderer - Renderer to upload to + * @param {PIXI.BaseTexture} baseTexture - BaseTexture for this resource + * @param {PIXI.GLTexture} glTexture - GLTexture to use + * @returns {boolean} true is success + */ + ImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + baseTexture.premultiplyAlpha = this.premultiplyAlpha; + + if (!this.createBitmap) + { + return BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture); + } + if (!this.bitmap) + { + // yeah, ignore the output + this.process(); + if (!this.bitmap) + { + return false; + } + } + + BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture, this.bitmap); + + if (!this.preserveBitmap) + { + // checks if there are other renderers that possibly need this bitmap + + var flag = true; + + for (var key in baseTexture._glTextures) + { + var otherTex = baseTexture._glTextures[key]; + + if (otherTex !== glTexture && otherTex.dirtyId !== baseTexture.dirtyId) + { + flag = false; + break; + } + } + + if (flag) + { + if (this.bitmap.close) + { + this.bitmap.close(); + } + + this.bitmap = null; + } + } + + return true; + }; + + /** + * Destroys this texture + * @override + */ + ImageResource.prototype.dispose = function dispose () + { + this.source.onload = null; + this.source.onerror = null; + + BaseImageResource.prototype.dispose.call(this); + + if (this.bitmap) + { + this.bitmap.close(); + this.bitmap = null; + } + this._process = null; + this._load = null; + }; + + return ImageResource; +}(BaseImageResource)); + +/** + * Collection of installed resource types, class must extend {@link PIXI.resources.Resource}. + * @example + * class CustomResource extends PIXI.resources.Resource { + * // MUST have source, options constructor signature + * // for auto-detected resources to be created. + * constructor(source, options) { + * super(); + * } + * upload(renderer, baseTexture, glTexture) { + * // upload with GL + * return true; + * } + * // used to auto-detect resource + * static test(source, extension) { + * return extension === 'xyz'|| source instanceof SomeClass; + * } + * } + * // Install the new resource type + * PIXI.resources.INSTALLED.push(CustomResource); + * + * @name PIXI.resources.INSTALLED + * @type {Array<*>} + * @static + * @readonly + */ +var INSTALLED = []; + +/** + * Create a resource element from a single source element. This + * auto-detects which type of resource to create. All resources that + * are auto-detectable must have a static `test` method and a constructor + * with the arguments `(source, options?)`. Currently, the supported + * resources for auto-detection include: + * - {@link PIXI.resources.ImageResource} + * - {@link PIXI.resources.CanvasResource} + * - {@link PIXI.resources.VideoResource} + * - {@link PIXI.resources.SVGResource} + * - {@link PIXI.resources.BufferResource} + * @static + * @function PIXI.resources.autoDetectResource + * @param {string|*} source - Resource source, this can be the URL to the resource, + * a typed-array (for BufferResource), HTMLVideoElement, SVG data-uri + * or any other resource that can be auto-detected. If not resource is + * detected, it's assumed to be an ImageResource. + * @param {object} [options] - Pass-through options to use for Resource + * @param {number} [options.width] - Width of BufferResource or SVG rasterization + * @param {number} [options.height] - Height of BufferResource or SVG rasterization + * @param {boolean} [options.autoLoad=true] - Image, SVG and Video flag to start loading + * @param {number} [options.scale=1] - SVG source scale. Overridden by width, height + * @param {boolean} [options.createBitmap=PIXI.settings.CREATE_IMAGE_BITMAP] - Image option to create Bitmap object + * @param {boolean} [options.crossorigin=true] - Image and Video option to set crossOrigin + * @param {boolean} [options.autoPlay=true] - Video option to start playing video immediately + * @param {number} [options.updateFPS=0] - Video option to update how many times a second the + * texture should be updated from the video. Leave at 0 to update at every render + * @return {PIXI.resources.Resource} The created resource. + */ +function autoDetectResource(source, options) +{ + if (!source) + { + return null; + } + + var extension = ''; + + if (typeof source === 'string') + { + // search for file extension: period, 3-4 chars, then ?, # or EOL + var result = (/\.(\w{3,4})(?:$|\?|#)/i).exec(source); + + if (result) + { + extension = result[1].toLowerCase(); + } + } + + for (var i = INSTALLED.length - 1; i >= 0; --i) + { + var ResourcePlugin = INSTALLED[i]; + + if (ResourcePlugin.test && ResourcePlugin.test(source, extension)) + { + return new ResourcePlugin(source, options); + } + } + + // When in doubt: probably an image + // might be appropriate to throw an error or return null + return new ImageResource(source, options); +} + +/** + * @interface SharedArrayBuffer + */ + +/** + * Buffer resource with data of typed array. + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BufferResource = /*@__PURE__*/(function (Resource) { + function BufferResource(source, options) + { + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + if (!width || !height) + { + throw new Error('BufferResource width or height invalid'); + } + + Resource.call(this, width, height); + + /** + * Source array + * Cannot be ClampedUint8Array because it cant be uploaded to WebGL + * + * @member {Float32Array|Uint8Array|Uint32Array} + */ + this.data = source; + } + + if ( Resource ) BufferResource.__proto__ = Resource; + BufferResource.prototype = Object.create( Resource && Resource.prototype ); + BufferResource.prototype.constructor = BufferResource; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture glTexture + * @returns {boolean} true is success + */ + BufferResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + glTexture.internalFormat, + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + glTexture.type, + this.data + ); + } + + return true; + }; + + /** + * Destroy and don't use after this + * @override + */ + BufferResource.prototype.dispose = function dispose () + { + this.data = null; + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @return {boolean} `true` if + */ + BufferResource.test = function test (source) + { + return source instanceof Float32Array + || source instanceof Uint8Array + || source instanceof Uint32Array; + }; + + return BufferResource; +}(Resource)); + +var defaultBufferOptions = { + scaleMode: SCALE_MODES.NEAREST, + format: FORMATS.RGBA, + premultiplyAlpha: false, +}; + +/** + * A Texture stores the information that represents an image. + * All textures have a base texture, which contains information about the source. + * Therefore you can have many textures all using a single BaseTexture + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + * @param {PIXI.resources.Resource|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} [resource=null] + * The current resource to use, for things that aren't Resource objects, will be converted + * into a Resource. + * @param {Object} [options] - Collection of options + * @param {PIXI.MIPMAP_MODES} [options.mipmap=PIXI.settings.MIPMAP_TEXTURES] - If mipmapping is enabled for texture + * @param {number} [options.anisotropicLevel=PIXI.settings.ANISOTROPIC_LEVEL] - Anisotropic filtering level of texture + * @param {PIXI.WRAP_MODES} [options.wrapMode=PIXI.settings.WRAP_MODE] - Wrap mode for textures + * @param {PIXI.SCALE_MODES} [options.scaleMode=PIXI.settings.SCALE_MODE] - Default scale mode, linear, nearest + * @param {PIXI.FORMATS} [options.format=PIXI.FORMATS.RGBA] - GL format type + * @param {PIXI.TYPES} [options.type=PIXI.TYPES.UNSIGNED_BYTE] - GL data type + * @param {PIXI.TARGETS} [options.target=PIXI.TARGETS.TEXTURE_2D] - GL texture target + * @param {boolean} [options.premultiplyAlpha=true] - Pre multiply the image alpha + * @param {number} [options.width=0] - Width of the texture + * @param {number} [options.height=0] - Height of the texture + * @param {number} [options.resolution] - Resolution of the base texture + * @param {object} [options.resourceOptions] - Optional resource options, + * see {@link PIXI.resources.autoDetectResource autoDetectResource} + */ +var BaseTexture = /*@__PURE__*/(function (EventEmitter) { + function BaseTexture(resource, options) + { + if ( resource === void 0 ) resource = null; + if ( options === void 0 ) options = null; + + EventEmitter.call(this); + + options = options || {}; + + var premultiplyAlpha = options.premultiplyAlpha; + var mipmap = options.mipmap; + var anisotropicLevel = options.anisotropicLevel; + var scaleMode = options.scaleMode; + var width = options.width; + var height = options.height; + var wrapMode = options.wrapMode; + var format = options.format; + var type = options.type; + var target = options.target; + var resolution = options.resolution; + var resourceOptions = options.resourceOptions; + + // Convert the resource to a Resource object + if (resource && !(resource instanceof Resource)) + { + resource = autoDetectResource(resource, resourceOptions); + resource.internal = true; + } + + /** + * The width of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.width = width || 0; + + /** + * The height of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.height = height || 0; + + /** + * The resolution / device pixel ratio of the texture + * + * @member {number} + * @default PIXI.settings.RESOLUTION + */ + this.resolution = resolution || settings.RESOLUTION; + + /** + * Mipmap mode of the texture, affects downscaled images + * + * @member {PIXI.MIPMAP_MODES} + * @default PIXI.settings.MIPMAP_TEXTURES + */ + this.mipmap = mipmap !== undefined ? mipmap : settings.MIPMAP_TEXTURES; + + /** + * Anisotropic filtering level of texture + * + * @member {number} + * @default PIXI.settings.ANISOTROPIC_LEVEL + */ + this.anisotropicLevel = anisotropicLevel !== undefined ? anisotropicLevel : settings.ANISOTROPIC_LEVEL; + + /** + * How the texture wraps + * @member {number} + */ + this.wrapMode = wrapMode || settings.WRAP_MODE; + + /** + * The scale mode to apply when scaling this texture + * + * @member {PIXI.SCALE_MODES} + * @default PIXI.settings.SCALE_MODE + */ + this.scaleMode = scaleMode !== undefined ? scaleMode : settings.SCALE_MODE; + + /** + * The pixel format of the texture + * + * @member {PIXI.FORMATS} + * @default PIXI.FORMATS.RGBA + */ + this.format = format || FORMATS.RGBA; + + /** + * The type of resource data + * + * @member {PIXI.TYPES} + * @default PIXI.TYPES.UNSIGNED_BYTE + */ + this.type = type || TYPES.UNSIGNED_BYTE; + + /** + * The target type + * + * @member {PIXI.TARGETS} + * @default PIXI.TARGETS.TEXTURE_2D + */ + this.target = target || TARGETS.TEXTURE_2D; + + /** + * Set to true to enable pre-multiplied alpha + * + * @member {boolean} + * @default true + */ + this.premultiplyAlpha = premultiplyAlpha !== false; + + /** + * Global unique identifier for this BaseTexture + * + * @member {string} + * @protected + */ + this.uid = uid(); + + /** + * Used by automatic texture Garbage Collection, stores last GC tick when it was bound + * + * @member {number} + * @protected + */ + this.touched = 0; + + /** + * Whether or not the texture is a power of two, try to use power of two textures as much + * as you can + * + * @readonly + * @member {boolean} + * @default false + */ + this.isPowerOfTwo = false; + this._refreshPOT(); + + /** + * The map of render context textures where this is bound + * + * @member {Object} + * @private + */ + this._glTextures = {}; + + /** + * Used by TextureSystem to only update texture to the GPU when needed. + * Please call `update()` to increment it. + * + * @readonly + * @member {number} + */ + this.dirtyId = 0; + + /** + * Used by TextureSystem to only update texture style when needed. + * + * @protected + * @member {number} + */ + this.dirtyStyleId = 0; + + /** + * Currently default cache ID. + * + * @member {string} + */ + this.cacheId = null; + + /** + * Generally speaking means when resource is loaded. + * @readonly + * @member {boolean} + */ + this.valid = width > 0 && height > 0; + + /** + * The collection of alternative cache ids, since some BaseTextures + * can have more than one ID, short name and longer full URL + * + * @member {Array} + * @readonly + */ + this.textureCacheIds = []; + + /** + * Flag if BaseTexture has been destroyed. + * + * @member {boolean} + * @readonly + */ + this.destroyed = false; + + /** + * The resource used by this BaseTexture, there can only + * be one resource per BaseTexture, but textures can share + * resources. + * + * @member {PIXI.resources.Resource} + * @readonly + */ + this.resource = null; + + /** + * Number of the texture batch, used by multi-texture renderers + * + * @member {number} + */ + this._batchEnabled = 0; + + /** + * Fired when a not-immediately-available source finishes loading. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when a not-immediately-available source fails to load. + * + * @protected + * @event PIXI.BaseTexture#error + * @param {PIXI.BaseTexture} baseTexture - Resource errored. + * @param {ErrorEvent} event - Load error event. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#update + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being updated. + */ + + /** + * Fired when BaseTexture is destroyed. + * + * @protected + * @event PIXI.BaseTexture#dispose + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being destroyed. + */ + + // Set the resource + this.setResource(resource); + } + + if ( EventEmitter ) BaseTexture.__proto__ = EventEmitter; + BaseTexture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + BaseTexture.prototype.constructor = BaseTexture; + + var prototypeAccessors = { realWidth: { configurable: true },realHeight: { configurable: true } }; + + /** + * Pixel width of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realWidth.get = function () + { + return Math.ceil((this.width * this.resolution) - 1e-4); + }; + + /** + * Pixel height of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realHeight.get = function () + { + return Math.ceil((this.height * this.resolution) - 1e-4); + }; + + /** + * Changes style options of BaseTexture + * + * @param {PIXI.SCALE_MODES} [scaleMode] - Pixi scalemode + * @param {PIXI.MIPMAP_MODES} [mipmap] - enable mipmaps + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setStyle = function setStyle (scaleMode, mipmap) + { + var dirty; + + if (scaleMode !== undefined && scaleMode !== this.scaleMode) + { + this.scaleMode = scaleMode; + dirty = true; + } + + if (mipmap !== undefined && mipmap !== this.mipmap) + { + this.mipmap = mipmap; + dirty = true; + } + + if (dirty) + { + this.dirtyStyleId++; + } + + return this; + }; + + /** + * Changes w/h/resolution. Texture becomes valid if width and height are greater than zero. + * + * @param {number} width Visual width + * @param {number} height Visual height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setSize = function setSize (width, height, resolution) + { + this.resolution = resolution || this.resolution; + this.width = width; + this.height = height; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Sets real size of baseTexture, preserves current resolution. + * + * @param {number} realWidth Full rendered width + * @param {number} realHeight Full rendered height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setRealSize = function setRealSize (realWidth, realHeight, resolution) + { + this.resolution = resolution || this.resolution; + this.width = realWidth / this.resolution; + this.height = realHeight / this.resolution; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Refresh check for isPowerOfTwo texture based on size + * + * @private + */ + BaseTexture.prototype._refreshPOT = function _refreshPOT () + { + this.isPowerOfTwo = isPow2(this.realWidth) && isPow2(this.realHeight); + }; + + /** + * Changes resolution + * + * @param {number} [resolution] res + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResolution = function setResolution (resolution) + { + var oldResolution = this.resolution; + + if (oldResolution === resolution) + { + return this; + } + + this.resolution = resolution; + + if (this.valid) + { + this.width = this.width * oldResolution / resolution; + this.height = this.height * oldResolution / resolution; + this.emit('update', this); + } + + this._refreshPOT(); + + return this; + }; + + /** + * Sets the resource if it wasn't set. Throws error if resource already present + * + * @param {PIXI.resources.Resource} resource - that is managing this BaseTexture + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResource = function setResource (resource) + { + if (this.resource === resource) + { + return this; + } + + if (this.resource) + { + throw new Error('Resource can be set only once'); + } + + resource.bind(this); + + this.resource = resource; + + return this; + }; + + /** + * Invalidates the object. Texture becomes valid if width and height are greater than zero. + */ + BaseTexture.prototype.update = function update () + { + if (!this.valid) + { + if (this.width > 0 && this.height > 0) + { + this.valid = true; + this.emit('loaded', this); + this.emit('update', this); + } + } + else + { + this.dirtyId++; + this.dirtyStyleId++; + this.emit('update', this); + } + }; + + /** + * Handle errors with resources. + * @private + * @param {ErrorEvent} event - Error event emitted. + */ + BaseTexture.prototype.onError = function onError (event) + { + this.emit('error', this, event); + }; + + /** + * Destroys this base texture. + * The method stops if resource doesn't want this texture to be destroyed. + * Removes texture from all caches. + */ + BaseTexture.prototype.destroy = function destroy () + { + // remove and destroy the resource + if (this.resource) + { + this.resource.unbind(this); + // only destroy resourced created internally + if (this.resource.internal) + { + this.resource.destroy(); + } + this.resource = null; + } + + if (this.cacheId) + { + delete BaseTextureCache[this.cacheId]; + delete TextureCache[this.cacheId]; + + this.cacheId = null; + } + + // finally let the WebGL renderer know.. + this.dispose(); + + BaseTexture.removeFromCache(this); + this.textureCacheIds = null; + + this.destroyed = true; + }; + + /** + * Frees the texture from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseTexture.prototype.dispose = function dispose () + { + this.emit('dispose', this); + }; + + /** + * Helper function that creates a base texture based on the source you provide. + * The source can be - image url, image element, canvas element. If the + * source is an image url or an image element and not in the base texture + * cache, it will be created and loaded. + * + * @static + * @param {string|HTMLImageElement|HTMLCanvasElement|SVGElement|HTMLVideoElement} source - The + * source to create base texture from. + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @returns {PIXI.BaseTexture} The new base texture. + */ + BaseTexture.from = function from (source, options) + { + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var baseTexture = BaseTextureCache[cacheId]; + + if (!baseTexture) + { + baseTexture = new BaseTexture(source, options); + baseTexture.cacheId = cacheId; + BaseTexture.addToCache(baseTexture, cacheId); + } + + return baseTexture; + }; + + /** + * Create a new BaseTexture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.BaseTexture} The resulting new BaseTexture + */ + BaseTexture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + buffer = buffer || new Float32Array(width * height * 4); + + var resource = new BufferResource(buffer, { width: width, height: height }); + var type = buffer instanceof Float32Array ? TYPES.FLOAT : TYPES.UNSIGNED_BYTE; + + return new BaseTexture(resource, Object.assign(defaultBufferOptions, options || { width: width, height: height, type: type })); + }; + + /** + * Adds a BaseTexture to the global BaseTextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.BaseTexture} baseTexture - The BaseTexture to add to the cache. + * @param {string} id - The id that the BaseTexture will be stored against. + */ + BaseTexture.addToCache = function addToCache (baseTexture, id) + { + if (id) + { + if (baseTexture.textureCacheIds.indexOf(id) === -1) + { + baseTexture.textureCacheIds.push(id); + } + + if (BaseTextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("BaseTexture added to the cache with an id [" + id + "] that already had an entry")); + } + + BaseTextureCache[id] = baseTexture; + } + }; + + /** + * Remove a BaseTexture from the global BaseTextureCache. + * + * @static + * @param {string|PIXI.BaseTexture} baseTexture - id of a BaseTexture to be removed, or a BaseTexture instance itself. + * @return {PIXI.BaseTexture|null} The BaseTexture that was removed. + */ + BaseTexture.removeFromCache = function removeFromCache (baseTexture) + { + if (typeof baseTexture === 'string') + { + var baseTextureFromCache = BaseTextureCache[baseTexture]; + + if (baseTextureFromCache) + { + var index = baseTextureFromCache.textureCacheIds.indexOf(baseTexture); + + if (index > -1) + { + baseTextureFromCache.textureCacheIds.splice(index, 1); + } + + delete BaseTextureCache[baseTexture]; + + return baseTextureFromCache; + } + } + else if (baseTexture && baseTexture.textureCacheIds) + { + for (var i = 0; i < baseTexture.textureCacheIds.length; ++i) + { + delete BaseTextureCache[baseTexture.textureCacheIds[i]]; + } + + baseTexture.textureCacheIds.length = 0; + + return baseTexture; + } + + return null; + }; + + Object.defineProperties( BaseTexture.prototype, prototypeAccessors ); + + return BaseTexture; +}(eventemitter3)); + +/** + * Global number of the texture batch, used by multi-texture renderers + * + * @static + * @member {number} + */ +BaseTexture._globalBatch = 0; + +/** + * A resource that contains a number of sources. + * + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + * @param {number|Array<*>} source - Number of items in array or the collection + * of image URLs to use. Can also be resources, image elements, canvas, etc. + * @param {object} [options] Options to apply to {@link PIXI.resources.autoDetectResource} + * @param {number} [options.width] - Width of the resource + * @param {number} [options.height] - Height of the resource + */ +var ArrayResource = /*@__PURE__*/(function (Resource) { + function ArrayResource(source, options) + { + options = options || {}; + + var urls; + var length = source; + + if (Array.isArray(source)) + { + urls = source; + length = source.length; + } + + Resource.call(this, options.width, options.height); + + /** + * Collection of resources. + * @member {Array} + * @readonly + */ + this.items = []; + + /** + * Dirty IDs for each part + * @member {Array} + * @readonly + */ + this.itemDirtyIds = []; + + for (var i = 0; i < length; i++) + { + var partTexture = new BaseTexture(); + + this.items.push(partTexture); + this.itemDirtyIds.push(-1); + } + + /** + * Number of elements in array + * + * @member {number} + * @readonly + */ + this.length = length; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (urls) + { + for (var i$1 = 0; i$1 < length; i$1++) + { + this.addResourceAt(autoDetectResource(urls[i$1], options), i$1); + } + } + } + + if ( Resource ) ArrayResource.__proto__ = Resource; + ArrayResource.prototype = Object.create( Resource && Resource.prototype ); + ArrayResource.prototype.constructor = ArrayResource; + + /** + * Destroy this BaseImageResource + * @override + */ + ArrayResource.prototype.dispose = function dispose () + { + for (var i = 0, len = this.length; i < len; i++) + { + this.items[i].destroy(); + } + this.items = null; + this.itemDirtyIds = null; + this._load = null; + }; + + /** + * Set a resource by ID + * + * @param {PIXI.resources.Resource} resource + * @param {number} index - Zero-based index of resource to set + * @return {PIXI.resources.ArrayResource} Instance for chaining + */ + ArrayResource.prototype.addResourceAt = function addResourceAt (resource, index) + { + var baseTexture = this.items[index]; + + if (!baseTexture) + { + throw new Error(("Index " + index + " is out of bounds")); + } + + // Inherit the first resource dimensions + if (resource.valid && !this.valid) + { + this.resize(resource.width, resource.height); + } + + this.items[index].setResource(resource); + + return this; + }; + + /** + * Set the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.bind = function bind (baseTexture) + { + Resource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_2D_ARRAY; + + for (var i = 0; i < this.length; i++) + { + this.items[i].on('update', baseTexture.update, baseTexture); + } + }; + + /** + * Unset the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.unbind = function unbind (baseTexture) + { + Resource.prototype.unbind.call(this, baseTexture); + + for (var i = 0; i < this.length; i++) + { + this.items[i].off('update', baseTexture.update, baseTexture); + } + }; + + /** + * Load all the resources simultaneously + * @override + * @return {Promise} When load is resolved + */ + ArrayResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var resources = this.items.map(function (item) { return item.resource; }); + + // TODO: also implement load part-by-part strategy + var promises = resources.map(function (item) { return item.load(); }); + + this._load = Promise.all(promises) + .then(function () { + var ref = resources[0]; + var width = ref.width; + var height = ref.height; + + this$1.resize(width, height); + + return Promise.resolve(this$1); + } + ); + + return this._load; + }; + + /** + * Upload the resources to the GPU. + * @param {PIXI.Renderer} renderer + * @param {PIXI.BaseTexture} texture + * @param {PIXI.GLTexture} glTexture + * @returns {boolean} whether texture was uploaded + */ + ArrayResource.prototype.upload = function upload (renderer, texture, glTexture) + { + var ref = this; + var length = ref.length; + var itemDirtyIds = ref.itemDirtyIds; + var items = ref.items; + var gl = renderer.gl; + + if (glTexture.dirtyId < 0) + { + gl.texImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + texture.format, + this._width, + this._height, + length, + 0, + texture.format, + texture.type, + null + ); + } + + for (var i = 0; i < length; i++) + { + var item = items[i]; + + if (itemDirtyIds[i] < item.dirtyId) + { + itemDirtyIds[i] = item.dirtyId; + if (item.valid) + { + gl.texSubImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + 0, // xoffset + 0, // yoffset + i, // zoffset + item.resource.width, + item.resource.height, + 1, + texture.format, + texture.type, + item.resource.source + ); + } + } + } + + return true; + }; + + return ArrayResource; +}(Resource)); + +/** + * @interface OffscreenCanvas + */ + +/** + * Resource type for HTMLCanvasElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLCanvasElement} source - Canvas element to use + */ +var CanvasResource = /*@__PURE__*/(function (BaseImageResource) { + function CanvasResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) CanvasResource.__proto__ = BaseImageResource; + CanvasResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + CanvasResource.prototype.constructor = CanvasResource; + + CanvasResource.test = function test (source) + { + var OffscreenCanvas = window.OffscreenCanvas; + + // Check for browsers that don't yet support OffscreenCanvas + if (OffscreenCanvas && source instanceof OffscreenCanvas) + { + return true; + } + + return source instanceof HTMLCanvasElement; + }; + + return CanvasResource; +}(BaseImageResource)); + +/** + * Resource for a CubeTexture which contains six resources. + * + * @class + * @extends PIXI.resources.ArrayResource + * @memberof PIXI.resources + * @param {Array} [source] Collection of URLs or resources + * to use as the sides of the cube. + * @param {object} [options] - ImageResource options + * @param {number} [options.width] - Width of resource + * @param {number} [options.height] - Height of resource + */ +var CubeResource = /*@__PURE__*/(function (ArrayResource) { + function CubeResource(source, options) + { + options = options || {}; + + ArrayResource.call(this, source, options); + + if (this.length !== CubeResource.SIDES) + { + throw new Error(("Invalid length. Got " + (this.length) + ", expected 6")); + } + + for (var i = 0; i < CubeResource.SIDES; i++) + { + this.items[i].target = TARGETS.TEXTURE_CUBE_MAP_POSITIVE_X + i; + } + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( ArrayResource ) CubeResource.__proto__ = ArrayResource; + CubeResource.prototype = Object.create( ArrayResource && ArrayResource.prototype ); + CubeResource.prototype.constructor = CubeResource; + + /** + * Add binding + * + * @override + * @param {PIXI.BaseTexture} baseTexture - parent base texture + */ + CubeResource.prototype.bind = function bind (baseTexture) + { + ArrayResource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_CUBE_MAP; + }; + + /** + * Upload the resource + * + * @returns {boolean} true is success + */ + CubeResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var dirty = this.itemDirtyIds; + + for (var i = 0; i < CubeResource.SIDES; i++) + { + var side = this.items[i]; + + if (dirty[i] < side.dirtyId) + { + dirty[i] = side.dirtyId; + if (side.valid) + { + side.resource.upload(renderer, side, glTexture); + } + } + } + + return true; + }; + + return CubeResource; +}(ArrayResource)); + +/** + * Number of texture sides to store for CubeResources + * + * @name PIXI.resources.CubeResource.SIDES + * @static + * @member {number} + * @default 6 + */ +CubeResource.SIDES = 6; + +/** + * Resource type for SVG elements and graphics. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {string} source - Base64 encoded SVG element or URL for SVG file. + * @param {object} [options] - Options to use + * @param {number} [options.scale=1] Scale to apply to SVG. Overridden by... + * @param {number} [options.width] Rasterize SVG this wide. Aspect ratio preserved if height not specified. + * @param {number} [options.height] Rasterize SVG this high. Aspect ratio preserved if width not specified. + * @param {boolean} [options.autoLoad=true] Start loading right away. + */ +var SVGResource = /*@__PURE__*/(function (BaseImageResource) { + function SVGResource(source, options) + { + options = options || {}; + + BaseImageResource.call(this, document.createElement('canvas')); + this._width = 0; + this._height = 0; + + /** + * Base64 encoded SVG element or URL for SVG file + * @readonly + * @member {string} + */ + this.svg = source; + + /** + * The source scale to apply when rasterizing on load + * @readonly + * @member {number} + */ + this.scale = options.scale || 1; + + /** + * A width override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideWidth = options.width; + + /** + * A height override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideHeight = options.height; + + /** + * Call when completely loaded + * @private + * @member {function} + */ + this._resolve = null; + + /** + * Cross origin value to use + * @private + * @member {boolean|string} + */ + this._crossorigin = options.crossorigin; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) SVGResource.__proto__ = BaseImageResource; + SVGResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + SVGResource.prototype.constructor = SVGResource; + + SVGResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + // Save this until after load is finished + this$1._resolve = function () { + this$1.resize(this$1.source.width, this$1.source.height); + resolve(this$1); + }; + + // Convert SVG inline string to data-uri + if ((/^\]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*>/i; // eslint-disable-line max-len + +/** + * Resource type for HTMLVideoElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLVideoElement|object|string|Array} source - Video element to use. + * @param {object} [options] - Options to use + * @param {boolean} [options.autoLoad=true] - Start loading the video immediately + * @param {boolean} [options.autoPlay=true] - Start playing video immediately + * @param {number} [options.updateFPS=0] - How many times a second to update the texture from the video. + * Leave at 0 to update at every render. + * @param {boolean} [options.crossorigin=true] - Load image using cross origin + */ +var VideoResource = /*@__PURE__*/(function (BaseImageResource) { + function VideoResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLVideoElement)) + { + var videoElement = document.createElement('video'); + + // workaround for https://github.com/pixijs/pixi.js/issues/5996 + videoElement.setAttribute('preload', 'auto'); + videoElement.setAttribute('webkit-playsinline', ''); + videoElement.setAttribute('playsinline', ''); + + if (typeof source === 'string') + { + source = [source]; + } + + BaseImageResource.crossOrigin(videoElement, (source[0].src || source[0]), options.crossorigin); + + // array of objects or strings + for (var i = 0; i < source.length; ++i) + { + var sourceElement = document.createElement('source'); + + var ref = source[i]; + var src = ref.src; + var mime = ref.mime; + + src = src || source[i]; + + var baseSrc = src.split('?').shift().toLowerCase(); + var ext = baseSrc.substr(baseSrc.lastIndexOf('.') + 1); + + mime = mime || ("video/" + ext); + + sourceElement.src = src; + sourceElement.type = mime; + + videoElement.appendChild(sourceElement); + } + + // Override the source + source = videoElement; + } + + BaseImageResource.call(this, source); + + this.noSubImage = true; + this._autoUpdate = true; + this._isAutoUpdating = false; + this._updateFPS = options.updateFPS || 0; + this._msToNextUpdate = 0; + + /** + * When set to true will automatically play videos used by this texture once + * they are loaded. If false, it will not modify the playing state. + * + * @member {boolean} + * @default true + */ + this.autoPlay = options.autoPlay !== false; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + /** + * Callback when completed with load. + * @member {function} + * @private + */ + this._resolve = null; + + // Bind for listeners + this._onCanPlay = this._onCanPlay.bind(this); + this._onError = this._onError.bind(this); + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) VideoResource.__proto__ = BaseImageResource; + VideoResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + VideoResource.prototype.constructor = VideoResource; + + var prototypeAccessors = { autoUpdate: { configurable: true },updateFPS: { configurable: true } }; + + /** + * Trigger updating of the texture + * + * @param {number} [deltaTime=0] - time delta since last tick + */ + VideoResource.prototype.update = function update (deltaTime) + { + if ( deltaTime === void 0 ) deltaTime = 0; + + if (!this.destroyed) + { + // account for if video has had its playbackRate changed + var elapsedMS = Ticker.shared.elapsedMS * this.source.playbackRate; + + this._msToNextUpdate = Math.floor(this._msToNextUpdate - elapsedMS); + if (!this._updateFPS || this._msToNextUpdate <= 0) + { + BaseImageResource.prototype.update.call(this, deltaTime); + this._msToNextUpdate = this._updateFPS ? Math.floor(1000 / this._updateFPS) : 0; + } + } + }; + + /** + * Start preloading the video resource. + * + * @protected + * @return {Promise} Handle the validate event + */ + VideoResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var source = this.source; + + if ((source.readyState === source.HAVE_ENOUGH_DATA || source.readyState === source.HAVE_FUTURE_DATA) + && source.width && source.height) + { + source.complete = true; + } + + source.addEventListener('play', this._onPlayStart.bind(this)); + source.addEventListener('pause', this._onPlayStop.bind(this)); + + if (!this._isSourceReady()) + { + source.addEventListener('canplay', this._onCanPlay); + source.addEventListener('canplaythrough', this._onCanPlay); + source.addEventListener('error', this._onError, true); + } + else + { + this._onCanPlay(); + } + + this._load = new Promise(function (resolve) { + if (this$1.valid) + { + resolve(this$1); + } + else + { + this$1._resolve = resolve; + + source.load(); + } + }); + + return this._load; + }; + + /** + * Handle video error events. + * + * @private + */ + VideoResource.prototype._onError = function _onError () + { + this.source.removeEventListener('error', this._onError, true); + this.onError.run(event); + }; + + /** + * Returns true if the underlying source is playing. + * + * @private + * @return {boolean} True if playing. + */ + VideoResource.prototype._isSourcePlaying = function _isSourcePlaying () + { + var source = this.source; + + return (source.currentTime > 0 && source.paused === false && source.ended === false && source.readyState > 2); + }; + + /** + * Returns true if the underlying source is ready for playing. + * + * @private + * @return {boolean} True if ready. + */ + VideoResource.prototype._isSourceReady = function _isSourceReady () + { + return this.source.readyState === 3 || this.source.readyState === 4; + }; + + /** + * Runs the update loop when the video is ready to play + * + * @private + */ + VideoResource.prototype._onPlayStart = function _onPlayStart () + { + // Just in case the video has not received its can play even yet.. + if (!this.valid) + { + this._onCanPlay(); + } + + if (!this._isAutoUpdating && this.autoUpdate) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + }; + + /** + * Fired when a pause event is triggered, stops the update loop + * + * @private + */ + VideoResource.prototype._onPlayStop = function _onPlayStop () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + }; + + /** + * Fired when the video is loaded and ready to play + * + * @private + */ + VideoResource.prototype._onCanPlay = function _onCanPlay () + { + var ref = this; + var source = ref.source; + + source.removeEventListener('canplay', this._onCanPlay); + source.removeEventListener('canplaythrough', this._onCanPlay); + + var valid = this.valid; + + this.resize(source.videoWidth, source.videoHeight); + + // prevent multiple loaded dispatches.. + if (!valid && this._resolve) + { + this._resolve(this); + this._resolve = null; + } + + if (this._isSourcePlaying()) + { + this._onPlayStart(); + } + else if (this.autoPlay) + { + source.play(); + } + }; + + /** + * Destroys this texture + * @override + */ + VideoResource.prototype.dispose = function dispose () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + } + + if (this.source) + { + this.source.removeEventListener('error', this._onError, true); + this.source.pause(); + this.source.src = ''; + this.source.load(); + } + BaseImageResource.prototype.dispose.call(this); + }; + + /** + * Should the base texture automatically update itself, set to true by default + * + * @member {boolean} + */ + prototypeAccessors.autoUpdate.get = function () + { + return this._autoUpdate; + }; + + prototypeAccessors.autoUpdate.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._autoUpdate) + { + this._autoUpdate = value; + + if (!this._autoUpdate && this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + else if (this._autoUpdate && !this._isAutoUpdating) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + } + }; + + /** + * How many times a second to update the texture from the video. Leave at 0 to update at every render. + * A lower fps can help performance, as updating the texture at 60fps on a 30ps video may not be efficient. + * + * @member {number} + */ + prototypeAccessors.updateFPS.get = function () + { + return this._updateFPS; + }; + + prototypeAccessors.updateFPS.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._updateFPS) + { + this._updateFPS = value; + } + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @param {string} extension - The extension of source, if set + * @return {boolean} `true` if video source + */ + VideoResource.test = function test (source, extension) + { + return (source instanceof HTMLVideoElement) + || VideoResource.TYPES.indexOf(extension) > -1; + }; + + Object.defineProperties( VideoResource.prototype, prototypeAccessors ); + + return VideoResource; +}(BaseImageResource)); + +/** + * List of common video file extensions supported by VideoResource. + * @constant + * @member {Array} + * @static + * @readonly + */ +VideoResource.TYPES = ['mp4', 'm4v', 'webm', 'ogg', 'ogv', 'h264', 'avi', 'mov']; + +/** + * Resource type for ImageBitmap. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {ImageBitmap} source - Image element to use + */ +var ImageBitmapResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageBitmapResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) ImageBitmapResource.__proto__ = BaseImageResource; + ImageBitmapResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageBitmapResource.prototype.constructor = ImageBitmapResource; + + ImageBitmapResource.test = function test (source) + { + return !!window.createImageBitmap && source instanceof ImageBitmap; + }; + + return ImageBitmapResource; +}(BaseImageResource)); + +INSTALLED.push( + ImageResource, + ImageBitmapResource, + CanvasResource, + VideoResource, + SVGResource, + BufferResource, + CubeResource, + ArrayResource +); + +/** + * System is a base class used for extending systems used by the {@link PIXI.Renderer} + * + * @see PIXI.Renderer#addSystem + * @class + * @memberof PIXI + */ +var System = function System(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Generic destroy methods to be overridden by the subclass + */ +System.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Resource type for DepthTexture. + * @class + * @extends PIXI.resources.BufferResource + * @memberof PIXI.resources + */ +var DepthResource = /*@__PURE__*/(function (BufferResource) { + function DepthResource () { + BufferResource.apply(this, arguments); + } + + if ( BufferResource ) DepthResource.__proto__ = BufferResource; + DepthResource.prototype = Object.create( BufferResource && BufferResource.prototype ); + DepthResource.prototype.constructor = DepthResource; + + DepthResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + gl.DEPTH_COMPONENT16, // Needed for depth to render properly in webgl2.0 + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + baseTexture.type, + this.data + ); + } + + return true; + }; + + return DepthResource; +}(BufferResource)); + +/** + * Frame buffer used by the BaseRenderTexture + * + * @class + * @memberof PIXI + */ +var Framebuffer = function Framebuffer(width, height) +{ + this.width = Math.ceil(width || 100); + this.height = Math.ceil(height || 100); + + this.stencil = false; + this.depth = false; + + this.dirtyId = 0; + this.dirtyFormat = 0; + this.dirtySize = 0; + + this.depthTexture = null; + this.colorTextures = []; + + this.glFramebuffers = {}; + + this.disposeRunner = new Runner('disposeFramebuffer', 2); +}; + +var prototypeAccessors$1$2 = { colorTexture: { configurable: true } }; + +/** + * Reference to the colorTexture. + * + * @member {PIXI.Texture[]} + * @readonly + */ +prototypeAccessors$1$2.colorTexture.get = function () +{ + return this.colorTextures[0]; +}; + +/** + * Add texture to the colorTexture array + * + * @param {number} [index=0] - Index of the array to add the texture to + * @param {PIXI.Texture} [texture] - Texture to add to the array + */ +Framebuffer.prototype.addColorTexture = function addColorTexture (index, texture) +{ + if ( index === void 0 ) index = 0; + + // TODO add some validation to the texture - same width / height etc? + this.colorTextures[index] = texture || new BaseTexture(null, { scaleMode: 0, + resolution: 1, + mipmap: false, + width: this.width, + height: this.height });// || new Texture(); + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Add a depth texture to the frame buffer + * + * @param {PIXI.Texture} [texture] - Texture to add + */ +Framebuffer.prototype.addDepthTexture = function addDepthTexture (texture) +{ + /* eslint-disable max-len */ + this.depthTexture = texture || new BaseTexture(new DepthResource(null, { width: this.width, height: this.height }), { scaleMode: 0, + resolution: 1, + width: this.width, + height: this.height, + mipmap: false, + format: FORMATS.DEPTH_COMPONENT, + type: TYPES.UNSIGNED_SHORT });// UNSIGNED_SHORT; + /* eslint-disable max-len */ + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable depth on the frame buffer + */ +Framebuffer.prototype.enableDepth = function enableDepth () +{ + this.depth = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable stencil on the frame buffer + */ +Framebuffer.prototype.enableStencil = function enableStencil () +{ + this.stencil = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Resize the frame buffer + * + * @param {number} width - Width of the frame buffer to resize to + * @param {number} height - Height of the frame buffer to resize to + */ +Framebuffer.prototype.resize = function resize (width, height) +{ + width = Math.ceil(width); + height = Math.ceil(height); + + if (width === this.width && height === this.height) { return; } + + this.width = width; + this.height = height; + + this.dirtyId++; + this.dirtySize++; + + for (var i = 0; i < this.colorTextures.length; i++) + { + var texture = this.colorTextures[i]; + var resolution = texture.resolution; + + // take into acount the fact the texture may have a different resolution.. + texture.setSize(width / resolution, height / resolution); + } + + if (this.depthTexture) + { + var resolution$1 = this.depthTexture.resolution; + + this.depthTexture.setSize(width / resolution$1, height / resolution$1); + } +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Framebuffer.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +Object.defineProperties( Framebuffer.prototype, prototypeAccessors$1$2 ); + +/** + * A BaseRenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a BaseRenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * A BaseRenderTexture takes a snapshot of any Display Object given to its render method. The position + * and rotation of the given Display Objects is ignored. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 800, height: 600 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 100, height: 100 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.BaseTexture + * @memberof PIXI + */ +var BaseRenderTexture = /*@__PURE__*/(function (BaseTexture) { + function BaseRenderTexture(options) + { + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + // Backward compatibility of signature + var width$1 = arguments[0]; + var height$1 = arguments[1]; + var scaleMode = arguments[2]; + var resolution = arguments[3]; + + options = { width: width$1, height: height$1, scaleMode: scaleMode, resolution: resolution }; + /* eslint-enable prefer-rest-params */ + } + + BaseTexture.call(this, null, options); + + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + // Set defaults + this.mipmap = false; + this.width = Math.ceil(width) || 100; + this.height = Math.ceil(height) || 100; + this.valid = true; + + /** + * A reference to the canvas render target (we only need one as this can be shared across renderers) + * + * @protected + * @member {object} + */ + this._canvasRenderTarget = null; + + this.clearColor = [0, 0, 0, 0]; + + this.framebuffer = new Framebuffer(this.width * this.resolution, this.height * this.resolution) + .addColorTexture(0, this); + + // TODO - could this be added the systems? + + /** + * The data structure for the stencil masks. + * + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + + /** + * The data structure for the filters. + * + * @member {PIXI.Graphics[]} + */ + this.filterStack = [{}]; + } + + if ( BaseTexture ) BaseRenderTexture.__proto__ = BaseTexture; + BaseRenderTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype ); + BaseRenderTexture.prototype.constructor = BaseRenderTexture; + + /** + * Resizes the BaseRenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + */ + BaseRenderTexture.prototype.resize = function resize (width, height) + { + width = Math.ceil(width); + height = Math.ceil(height); + this.framebuffer.resize(width * this.resolution, height * this.resolution); + }; + + /** + * Frees the texture and framebuffer from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseRenderTexture.prototype.dispose = function dispose () + { + this.framebuffer.dispose(); + + BaseTexture.prototype.dispose.call(this); + }; + + /** + * Destroys this texture. + * + */ + BaseRenderTexture.prototype.destroy = function destroy () + { + BaseTexture.prototype.destroy.call(this, true); + + this.framebuffer = null; + }; + + return BaseRenderTexture; +}(BaseTexture)); + +/** + * Stores a texture's frame in UV coordinates, in + * which everything lies in the rectangle `[(0,0), (1,0), + * (1,1), (0,1)]`. + * + * | Corner | Coordinates | + * |--------------|-------------| + * | Top-Left | `(x0,y0)` | + * | Top-Right | `(x1,y1)` | + * | Bottom-Right | `(x2,y2)` | + * | Bottom-Left | `(x3,y3)` | + * + * @class + * @protected + * @memberof PIXI + */ +var TextureUvs = function TextureUvs() +{ + /** + * X-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.x0 = 0; + + /** + * Y-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.y0 = 0; + + /** + * X-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.x1 = 1; + + /** + * Y-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.y1 = 0; + + /** + * X-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.x2 = 1; + + /** + * Y-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.y2 = 1; + + /** + * X-component of bottom-left corner `(x3,y3)`. + * + * @member {number} + */ + this.x3 = 0; + + /** + * Y-component of bottom-right corner `(x3,y3)`. + * + * @member {number} + */ + this.y3 = 1; + + this.uvsFloat32 = new Float32Array(8); +}; + +/** + * Sets the texture Uvs based on the given frame information. + * + * @protected + * @param {PIXI.Rectangle} frame - The frame of the texture + * @param {PIXI.Rectangle} baseFrame - The base frame of the texture + * @param {number} rotate - Rotation of frame, see {@link PIXI.GroupD8} + */ +TextureUvs.prototype.set = function set (frame, baseFrame, rotate) +{ + var tw = baseFrame.width; + var th = baseFrame.height; + + if (rotate) + { + // width and height div 2 div baseFrame size + var w2 = frame.width / 2 / tw; + var h2 = frame.height / 2 / th; + + // coordinates of center + var cX = (frame.x / tw) + w2; + var cY = (frame.y / th) + h2; + + rotate = GroupD8.add(rotate, GroupD8.NW); // NW is top-left corner + this.x0 = cX + (w2 * GroupD8.uX(rotate)); + this.y0 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); // rotate 90 degrees clockwise + this.x1 = cX + (w2 * GroupD8.uX(rotate)); + this.y1 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x2 = cX + (w2 * GroupD8.uX(rotate)); + this.y2 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x3 = cX + (w2 * GroupD8.uX(rotate)); + this.y3 = cY + (h2 * GroupD8.uY(rotate)); + } + else + { + this.x0 = frame.x / tw; + this.y0 = frame.y / th; + + this.x1 = (frame.x + frame.width) / tw; + this.y1 = frame.y / th; + + this.x2 = (frame.x + frame.width) / tw; + this.y2 = (frame.y + frame.height) / th; + + this.x3 = frame.x / tw; + this.y3 = (frame.y + frame.height) / th; + } + + this.uvsFloat32[0] = this.x0; + this.uvsFloat32[1] = this.y0; + this.uvsFloat32[2] = this.x1; + this.uvsFloat32[3] = this.y1; + this.uvsFloat32[4] = this.x2; + this.uvsFloat32[5] = this.y2; + this.uvsFloat32[6] = this.x3; + this.uvsFloat32[7] = this.y3; +}; + +var DEFAULT_UVS = new TextureUvs(); + +/** + * A texture stores the information that represents an image or part of an image. + * + * It cannot be added to the display list directly; instead use it as the texture for a Sprite. + * If no frame is provided for a texture, then the whole image is used. + * + * You can directly create a texture from an image and then reuse it multiple times like this : + * + * ```js + * let texture = PIXI.Texture.from('assets/image.png'); + * let sprite1 = new PIXI.Sprite(texture); + * let sprite2 = new PIXI.Sprite(texture); + * ``` + * + * If you didnt pass the texture frame to constructor, it enables `noFrame` mode: + * it subscribes on baseTexture events, it automatically resizes at the same time as baseTexture. + * + * Textures made from SVGs, loaded or not, cannot be used before the file finishes processing. + * You can check for this by checking the sprite's _textureID property. + * ```js + * var texture = PIXI.Texture.from('assets/image.svg'); + * var sprite1 = new PIXI.Sprite(texture); + * //sprite1._textureID should not be undefined if the texture has finished processing the SVG file + * ``` + * You can use a ticker or rAF to ensure your sprites load the finished textures after processing. See issue #3068. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var Texture = /*@__PURE__*/(function (EventEmitter) { + function Texture(baseTexture, frame, orig, trim, rotate, anchor) + { + EventEmitter.call(this); + + /** + * Does this Texture have any frame data assigned to it? + * + * This mode is enabled automatically if no frame was passed inside constructor. + * + * In this mode texture is subscribed to baseTexture events, and fires `update` on any change. + * + * Beware, after loading or resize of baseTexture event can fired two times! + * If you want more control, subscribe on baseTexture itself. + * + * ```js + * texture.on('update', () => {}); + * ``` + * + * Any assignment of `frame` switches off `noFrame` mode. + * + * @member {boolean} + */ + this.noFrame = false; + + if (!frame) + { + this.noFrame = true; + frame = new Rectangle(0, 0, 1, 1); + } + + if (baseTexture instanceof Texture) + { + baseTexture = baseTexture.baseTexture; + } + + /** + * The base texture that this texture uses. + * + * @member {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering, + * irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases) + * + * @member {PIXI.Rectangle} + */ + this._frame = frame; + + /** + * This is the trimmed area of original texture, before it was put in atlas + * Please call `updateUvs()` after you change coordinates of `trim` manually. + * + * @member {PIXI.Rectangle} + */ + this.trim = trim; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = false; + + /** + * This will let a renderer know that a texture has been updated (used mainly for WebGL uv updates) + * + * @member {boolean} + */ + this.requiresUpdate = false; + + /** + * The WebGL UV data cache. Can be used as quad UV + * + * @member {PIXI.TextureUvs} + * @protected + */ + this._uvs = DEFAULT_UVS; + + /** + * Default TextureMatrix instance for this texture + * By default that object is not created because its heavy + * + * @member {PIXI.TextureMatrix} + */ + this.uvMatrix = null; + + /** + * This is the area of original texture, before it was put in atlas + * + * @member {PIXI.Rectangle} + */ + this.orig = orig || frame;// new Rectangle(0, 0, 1, 1); + + this._rotate = Number(rotate || 0); + + if (rotate === true) + { + // this is old texturepacker legacy, some games/libraries are passing "true" for rotated textures + this._rotate = 2; + } + else if (this._rotate % 2 !== 0) + { + throw new Error('attempt to use diamond-shaped UVs. If you are sure, set rotation manually'); + } + + /** + * Anchor point that is used as default if sprite is created with this texture. + * Changing the `defaultAnchor` at a later point of time will not update Sprite's anchor point. + * @member {PIXI.Point} + * @default {0,0} + */ + this.defaultAnchor = anchor ? new Point(anchor.x, anchor.y) : new Point(0, 0); + + /** + * Update ID is observed by sprites and TextureMatrix instances. + * Call updateUvs() to increment it. + * + * @member {number} + * @protected + */ + + this._updateID = 0; + + /** + * The ids under which this Texture has been added to the texture cache. This is + * automatically set as long as Texture.addToCache is used, but may not be set if a + * Texture is added directly to the TextureCache array. + * + * @member {string[]} + */ + this.textureCacheIds = []; + + if (!baseTexture.valid) + { + baseTexture.once('loaded', this.onBaseTextureUpdated, this); + } + else if (this.noFrame) + { + // if there is no frame we should monitor for any base texture changes.. + if (baseTexture.valid) + { + this.onBaseTextureUpdated(baseTexture); + } + } + else + { + this.frame = frame; + } + + if (this.noFrame) + { + baseTexture.on('update', this.onBaseTextureUpdated, this); + } + } + + if ( EventEmitter ) Texture.__proto__ = EventEmitter; + Texture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + Texture.prototype.constructor = Texture; + + var prototypeAccessors = { resolution: { configurable: true },frame: { configurable: true },rotate: { configurable: true },width: { configurable: true },height: { configurable: true } }; + + /** + * Updates this texture on the gpu. + * + * Calls the TextureResource update. + * + * If you adjusted `frame` manually, please call `updateUvs()` instead. + * + */ + Texture.prototype.update = function update () + { + if (this.baseTexture.resource) + { + this.baseTexture.resource.update(); + } + }; + + /** + * Called when the base texture is updated + * + * @protected + * @param {PIXI.BaseTexture} baseTexture - The base texture. + */ + Texture.prototype.onBaseTextureUpdated = function onBaseTextureUpdated (baseTexture) + { + if (this.noFrame) + { + if (!this.baseTexture.valid) + { + return; + } + + this._frame.width = baseTexture.width; + this._frame.height = baseTexture.height; + this.valid = true; + this.updateUvs(); + } + else + { + // TODO this code looks confusing.. boo to abusing getters and setters! + // if user gave us frame that has bigger size than resized texture it can be a problem + this.frame = this._frame; + } + + this.emit('update', this); + }; + + /** + * Destroys this texture + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ + Texture.prototype.destroy = function destroy (destroyBase) + { + if (this.baseTexture) + { + if (destroyBase) + { + var ref = this.baseTexture; + var resource = ref.resource; + + // delete the texture if it exists in the texture cache.. + // this only needs to be removed if the base texture is actually destroyed too.. + if (resource && TextureCache[resource.url]) + { + Texture.removeFromCache(resource.url); + } + + this.baseTexture.destroy(); + } + + this.baseTexture.off('update', this.onBaseTextureUpdated, this); + + this.baseTexture = null; + } + + this._frame = null; + this._uvs = null; + this.trim = null; + this.orig = null; + + this.valid = false; + + Texture.removeFromCache(this); + this.textureCacheIds = null; + }; + + /** + * Creates a new texture object that acts the same as this one. + * + * @return {PIXI.Texture} The new texture + */ + Texture.prototype.clone = function clone () + { + return new Texture(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor); + }; + + /** + * Updates the internal WebGL UV cache. Use it after you change `frame` or `trim` of the texture. + * Call it after changing the frame + */ + Texture.prototype.updateUvs = function updateUvs () + { + if (this._uvs === DEFAULT_UVS) + { + this._uvs = new TextureUvs(); + } + + this._uvs.set(this._frame, this.baseTexture, this.rotate); + + this._updateID++; + }; + + /** + * Helper function that creates a new Texture based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|PIXI.BaseTexture} source + * Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The newly created texture + */ + Texture.from = function from (source, options) + { + if ( options === void 0 ) options = {}; + + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var texture = TextureCache[cacheId]; + + if (!texture) + { + if (!options.resolution) + { + options.resolution = getResolutionOfUrl(source); + } + + texture = new Texture(new BaseTexture(source, options)); + texture.baseTexture.cacheId = cacheId; + + BaseTexture.addToCache(texture.baseTexture, cacheId); + Texture.addToCache(texture, cacheId); + } + + // lets assume its a base texture! + return texture; + }; + + /** + * Create a new Texture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The resulting new BaseTexture + */ + Texture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + return new Texture(BaseTexture.fromBuffer(buffer, width, height, options)); + }; + + /** + * Create a texture from a source and add to the cache. + * + * @static + * @param {HTMLImageElement|HTMLCanvasElement} source - The input source. + * @param {String} imageUrl - File name of texture, for cache and resolving resolution. + * @param {String} [name] - Human readable name for the texture cache. If no name is + * specified, only `imageUrl` will be used as the cache ID. + * @return {PIXI.Texture} Output texture + */ + Texture.fromLoader = function fromLoader (source, imageUrl, name) + { + var resource = new ImageResource(source); + + resource.url = imageUrl; + + var baseTexture = new BaseTexture(resource, { + scaleMode: settings.SCALE_MODE, + resolution: getResolutionOfUrl(imageUrl), + }); + + var texture = new Texture(baseTexture); + + // No name, use imageUrl instead + if (!name) + { + name = imageUrl; + } + + // lets also add the frame to pixi's global cache for 'fromLoader' function + BaseTexture.addToCache(texture.baseTexture, name); + Texture.addToCache(texture, name); + + // also add references by url if they are different. + if (name !== imageUrl) + { + BaseTexture.addToCache(texture.baseTexture, imageUrl); + Texture.addToCache(texture, imageUrl); + } + + return texture; + }; + + /** + * Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.Texture} texture - The Texture to add to the cache. + * @param {string} id - The id that the Texture will be stored against. + */ + Texture.addToCache = function addToCache (texture, id) + { + if (id) + { + if (texture.textureCacheIds.indexOf(id) === -1) + { + texture.textureCacheIds.push(id); + } + + if (TextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("Texture added to the cache with an id [" + id + "] that already had an entry")); + } + + TextureCache[id] = texture; + } + }; + + /** + * Remove a Texture from the global TextureCache. + * + * @static + * @param {string|PIXI.Texture} texture - id of a Texture to be removed, or a Texture instance itself + * @return {PIXI.Texture|null} The Texture that was removed + */ + Texture.removeFromCache = function removeFromCache (texture) + { + if (typeof texture === 'string') + { + var textureFromCache = TextureCache[texture]; + + if (textureFromCache) + { + var index = textureFromCache.textureCacheIds.indexOf(texture); + + if (index > -1) + { + textureFromCache.textureCacheIds.splice(index, 1); + } + + delete TextureCache[texture]; + + return textureFromCache; + } + } + else if (texture && texture.textureCacheIds) + { + for (var i = 0; i < texture.textureCacheIds.length; ++i) + { + // Check that texture matches the one being passed in before deleting it from the cache. + if (TextureCache[texture.textureCacheIds[i]] === texture) + { + delete TextureCache[texture.textureCacheIds[i]]; + } + } + + texture.textureCacheIds.length = 0; + + return texture; + } + + return null; + }; + + /** + * Returns resolution of baseTexture + * + * @member {number} + * @readonly + */ + prototypeAccessors.resolution.get = function () + { + return this.baseTexture.resolution; + }; + + /** + * The frame specifies the region of the base texture that this texture uses. + * Please call `updateUvs()` after you change coordinates of `frame` manually. + * + * @member {PIXI.Rectangle} + */ + prototypeAccessors.frame.get = function () + { + return this._frame; + }; + + prototypeAccessors.frame.set = function (frame) // eslint-disable-line require-jsdoc + { + this._frame = frame; + + this.noFrame = false; + + var x = frame.x; + var y = frame.y; + var width = frame.width; + var height = frame.height; + var xNotFit = x + width > this.baseTexture.width; + var yNotFit = y + height > this.baseTexture.height; + + if (xNotFit || yNotFit) + { + var relationship = xNotFit && yNotFit ? 'and' : 'or'; + var errorX = "X: " + x + " + " + width + " = " + (x + width) + " > " + (this.baseTexture.width); + var errorY = "Y: " + y + " + " + height + " = " + (y + height) + " > " + (this.baseTexture.height); + + throw new Error('Texture Error: frame does not fit inside the base Texture dimensions: ' + + errorX + " " + relationship + " " + errorY); + } + + this.valid = width && height && this.baseTexture.valid; + + if (!this.trim && !this.rotate) + { + this.orig = frame; + } + + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * Indicates whether the texture is rotated inside the atlas + * set to 2 to compensate for texture packer rotation + * set to 6 to compensate for spine packer rotation + * can be used to rotate or mirror sprites + * See {@link PIXI.GroupD8} for explanation + * + * @member {number} + */ + prototypeAccessors.rotate.get = function () + { + return this._rotate; + }; + + prototypeAccessors.rotate.set = function (rotate) // eslint-disable-line require-jsdoc + { + this._rotate = rotate; + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * The width of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.orig.width; + }; + + /** + * The height of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.orig.height; + }; + + Object.defineProperties( Texture.prototype, prototypeAccessors ); + + return Texture; +}(eventemitter3)); + +function createWhiteTexture() +{ + var canvas = document.createElement('canvas'); + + canvas.width = 16; + canvas.height = 16; + + var context = canvas.getContext('2d'); + + context.fillStyle = 'white'; + context.fillRect(0, 0, 16, 16); + + return new Texture(new BaseTexture(new CanvasResource(canvas))); +} + +function removeAllHandlers(tex) +{ + tex.destroy = function _emptyDestroy() { /* empty */ }; + tex.on = function _emptyOn() { /* empty */ }; + tex.once = function _emptyOnce() { /* empty */ }; + tex.emit = function _emptyEmit() { /* empty */ }; +} + +/** + * An empty texture, used often to not have to create multiple empty textures. + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.EMPTY = new Texture(new BaseTexture()); +removeAllHandlers(Texture.EMPTY); +removeAllHandlers(Texture.EMPTY.baseTexture); + +/** + * A white texture of 16x16 size, used for graphics and other things + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.WHITE = createWhiteTexture(); +removeAllHandlers(Texture.WHITE); +removeAllHandlers(Texture.WHITE.baseTexture); + +/** + * A RenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a RenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * __Hint-2__: The actual memory allocation will happen on first render. + * You shouldn't create renderTextures each frame just to delete them after, try to reuse them. + * + * A RenderTexture takes a snapshot of any Display Object given to its render method. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let renderTexture = PIXI.RenderTexture.create(800, 600); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let renderTexture = new PIXI.RenderTexture.create(100, 100); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.Texture + * @memberof PIXI + */ +var RenderTexture = /*@__PURE__*/(function (Texture) { + function RenderTexture(baseRenderTexture, frame) + { + // support for legacy.. + var _legacyRenderer = null; + + if (!(baseRenderTexture instanceof BaseRenderTexture)) + { + /* eslint-disable prefer-rest-params, no-console */ + var width = arguments[1]; + var height = arguments[2]; + var scaleMode = arguments[3]; + var resolution = arguments[4]; + + // we have an old render texture.. + console.warn(("Please use RenderTexture.create(" + width + ", " + height + ") instead of the ctor directly.")); + _legacyRenderer = arguments[0]; + /* eslint-enable prefer-rest-params, no-console */ + + frame = null; + baseRenderTexture = new BaseRenderTexture({ + width: width, + height: height, + scaleMode: scaleMode, + resolution: resolution, + }); + } + + /** + * The base texture object that this texture uses + * + * @member {PIXI.BaseTexture} + */ + Texture.call(this, baseRenderTexture, frame); + + this.legacyRenderer = _legacyRenderer; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = true; + + /** + * Stores `sourceFrame` when this texture is inside current filter stack. + * You can read it inside filters. + * + * @readonly + * @member {PIXI.Rectangle} + */ + this.filterFrame = null; + + /** + * The key for pooled texture of FilterSystem + * @protected + * @member {string} + */ + this.filterPoolKey = null; + + this.updateUvs(); + } + + if ( Texture ) RenderTexture.__proto__ = Texture; + RenderTexture.prototype = Object.create( Texture && Texture.prototype ); + RenderTexture.prototype.constructor = RenderTexture; + + /** + * Resizes the RenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + * @param {boolean} [resizeBaseTexture=true] - Should the baseTexture.width and height values be resized as well? + */ + RenderTexture.prototype.resize = function resize (width, height, resizeBaseTexture) + { + if ( resizeBaseTexture === void 0 ) resizeBaseTexture = true; + + width = Math.ceil(width); + height = Math.ceil(height); + + // TODO - could be not required.. + this.valid = (width > 0 && height > 0); + + this._frame.width = this.orig.width = width; + this._frame.height = this.orig.height = height; + + if (resizeBaseTexture) + { + this.baseTexture.resize(width, height); + } + + this.updateUvs(); + }; + + /** + * Changes the resolution of baseTexture, but does not change framebuffer size. + * + * @param {number} resolution - The new resolution to apply to RenderTexture + */ + RenderTexture.prototype.setResolution = function setResolution (resolution) + { + var ref = this; + var baseTexture = ref.baseTexture; + + if (baseTexture.resolution === resolution) + { + return; + } + + baseTexture.setResolution(resolution); + this.resize(baseTexture.width, baseTexture.height, false); + }; + + /** + * A short hand way of creating a render texture. + * + * @param {object} [options] - Options + * @param {number} [options.width=100] - The width of the render texture + * @param {number} [options.height=100] - The height of the render texture + * @param {number} [options.scaleMode=PIXI.settings.SCALE_MODE] - See {@link PIXI.SCALE_MODES} for possible values + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the texture being generated + * @return {PIXI.RenderTexture} The new render texture + */ + RenderTexture.create = function create (options) + { + // fallback, old-style: create(width, height, scaleMode, resolution) + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + options = { + width: options, + height: arguments[1], + scaleMode: arguments[2], + resolution: arguments[3], + }; + /* eslint-enable prefer-rest-params */ + } + + return new RenderTexture(new BaseRenderTexture(options)); + }; + + return RenderTexture; +}(Texture)); + +/** + * Experimental! + * + * Texture pool, used by FilterSystem and plugins + * Stores collection of temporary pow2 or screen-sized renderTextures + * + * If you use custom RenderTexturePool for your filters, you can use methods + * `getFilterTexture` and `returnFilterTexture` same as in + * + * @class + * @memberof PIXI + */ +var RenderTexturePool = function RenderTexturePool(textureOptions) +{ + this.texturePool = {}; + this.textureOptions = textureOptions || {}; + /** + * Allow renderTextures of the same size as screen, not just pow2 + * + * Automatically sets to true after `setScreenSize` + * + * @member {boolean} + * @default false + */ + this.enableFullScreen = false; + + this._pixelsWidth = 0; + this._pixelsHeight = 0; +}; + +/** + * creates of texture with params that were specified in pool constructor + * + * @param {number} realWidth width of texture in pixels + * @param {number} realHeight height of texture in pixels + * @returns {RenderTexture} + */ +RenderTexturePool.prototype.createTexture = function createTexture (realWidth, realHeight) +{ + var baseRenderTexture = new BaseRenderTexture(Object.assign({ + width: realWidth, + height: realHeight, + resolution: 1, + }, this.textureOptions)); + + return new RenderTexture(baseRenderTexture); +}; + +/** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ +RenderTexturePool.prototype.getOptimalTexture = function getOptimalTexture (minWidth, minHeight, resolution) +{ + if ( resolution === void 0 ) resolution = 1; + + var key = RenderTexturePool.SCREEN_KEY; + + minWidth *= resolution; + minHeight *= resolution; + + if (!this.enableFullScreen || minWidth !== this._pixelsWidth || minHeight !== this._pixelsHeight) + { + minWidth = nextPow2(minWidth); + minHeight = nextPow2(minHeight); + key = ((minWidth & 0xFFFF) << 16) | (minHeight & 0xFFFF); + } + + if (!this.texturePool[key]) + { + this.texturePool[key] = []; + } + + var renderTexture = this.texturePool[key].pop(); + + if (!renderTexture) + { + renderTexture = this.createTexture(minWidth, minHeight); + } + + renderTexture.filterPoolKey = key; + renderTexture.setResolution(resolution); + + return renderTexture; +}; + +/** + * Gets extra texture of the same size as input renderTexture + * + * `getFilterTexture(input, 0.5)` or `getFilterTexture(0.5, input)` + * + * @param {PIXI.RenderTexture} input renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * It overrides, it does not multiply + * @returns {PIXI.RenderTexture} + */ +RenderTexturePool.prototype.getFilterTexture = function getFilterTexture (input, resolution) +{ + var filterTexture = this.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; +}; + +/** + * Place a render texture back into the pool. + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnTexture = function returnTexture (renderTexture) +{ + var key = renderTexture.filterPoolKey; + + renderTexture.filterFrame = null; + this.texturePool[key].push(renderTexture); +}; + +/** + * Alias for returnTexture, to be compliant with FilterSystem interface + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) +{ + this.returnTexture(renderTexture); +}; + +/** + * Clears the pool + * + * @param {boolean} [destroyTextures=true] destroy all stored textures + */ +RenderTexturePool.prototype.clear = function clear (destroyTextures) +{ + destroyTextures = destroyTextures !== false; + if (destroyTextures) + { + for (var i in this.texturePool) + { + var textures = this.texturePool[i]; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + } + } + + this.texturePool = {}; +}; + +/** + * If screen size was changed, drops all screen-sized textures, + * sets new screen size, sets `enableFullScreen` to true + * + * Size is measured in pixels, `renderer.view` can be passed here, not `renderer.screen` + * + * @param {PIXI.ISize} size - Initial size of screen + */ +RenderTexturePool.prototype.setScreenSize = function setScreenSize (size) +{ + if (size.width === this._pixelsWidth + && size.height === this._pixelsHeight) + { + return; + } + + var screenKey = RenderTexturePool.SCREEN_KEY; + var textures = this.texturePool[screenKey]; + + this.enableFullScreen = size.width > 0 && size.height > 0; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + this.texturePool[screenKey] = []; + + this._pixelsWidth = size.width; + this._pixelsHeight = size.height; +}; + +/** + * Key that is used to store fullscreen renderTextures in a pool + * + * @static + * @const {string} + */ +RenderTexturePool.SCREEN_KEY = 'screen'; + +/* eslint-disable max-len */ + +/** + * Holds the information for a single attribute structure required to render geometry. + * + * This does not contain the actual data, but instead has a buffer id that maps to a {@link PIXI.Buffer} + * This can include anything from positions, uvs, normals, colors etc. + * + * @class + * @memberof PIXI + */ +var Attribute = function Attribute(buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( type === void 0 ) type = 5126; + + this.buffer = buffer; + this.size = size; + this.normalized = normalized; + this.type = type; + this.stride = stride; + this.start = start; + this.instance = instance; +}; + +/** + * Destroys the Attribute. + */ +Attribute.prototype.destroy = function destroy () +{ + this.buffer = null; +}; + +/** + * Helper function that creates an Attribute based on the information provided + * + * @static + * @param {string} buffer the id of the buffer that this attribute will look for + * @param {Number} [size=2] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 + * @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) + * @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) + * @param {Boolean} [normalized=false] should the data be normalized. + * + * @returns {PIXI.Attribute} A new {@link PIXI.Attribute} based on the information provided + */ +Attribute.from = function from (buffer, size, normalized, type, stride) +{ + return new Attribute(buffer, size, normalized, type, stride); +}; + +var UID = 0; +/* eslint-disable max-len */ + +/** + * A wrapper for data so that it can be used and uploaded by WebGL + * + * @class + * @memberof PIXI + */ +var Buffer$1 = function Buffer(data, _static, index) +{ + if ( _static === void 0 ) _static = true; + if ( index === void 0 ) index = false; + + /** + * The data in the buffer, as a typed array + * + * @member {ArrayBuffer| SharedArrayBuffer|ArrayBufferView} + */ + this.data = data || new Float32Array(1); + + /** + * A map of renderer IDs to webgl buffer + * + * @private + * @member {object} + */ + this._glBuffers = {}; + + this._updateID = 0; + + this.index = index; + + this.static = _static; + + this.id = UID++; + + this.disposeRunner = new Runner('disposeBuffer', 2); +}; + +// TODO could explore flagging only a partial upload? +/** + * flags this buffer as requiring an upload to the GPU + * @param {ArrayBuffer|SharedArrayBuffer|ArrayBufferView} [data] the data to update in the buffer. + */ +Buffer$1.prototype.update = function update (data) +{ + this.data = data || this.data; + this._updateID++; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Buffer$1.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the buffer + */ +Buffer$1.prototype.destroy = function destroy () +{ + this.dispose(); + + this.data = null; +}; + +/** + * Helper function that creates a buffer based on an array or TypedArray + * + * @static + * @param {ArrayBufferView | number[]} data the TypedArray that the buffer will store. If this is a regular Array it will be converted to a Float32Array. + * @return {PIXI.Buffer} A new Buffer based on the data provided. + */ +Buffer$1.from = function from (data) +{ + if (data instanceof Array) + { + data = new Float32Array(data); + } + + return new Buffer$1(data); +}; + +function getBufferType(array) +{ + if (array.BYTES_PER_ELEMENT === 4) + { + if (array instanceof Float32Array) + { + return 'Float32Array'; + } + else if (array instanceof Uint32Array) + { + return 'Uint32Array'; + } + + return 'Int32Array'; + } + else if (array.BYTES_PER_ELEMENT === 2) + { + if (array instanceof Uint16Array) + { + return 'Uint16Array'; + } + } + else if (array.BYTES_PER_ELEMENT === 1) + { + if (array instanceof Uint8Array) + { + return 'Uint8Array'; + } + } + + // TODO map out the rest of the array elements! + return null; +} + +/* eslint-disable object-shorthand */ +var map$2 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, +}; + +function interleaveTypedArrays(arrays, sizes) +{ + var outSize = 0; + var stride = 0; + var views = {}; + + for (var i = 0; i < arrays.length; i++) + { + stride += sizes[i]; + outSize += arrays[i].length; + } + + var buffer = new ArrayBuffer(outSize * 4); + + var out = null; + var littleOffset = 0; + + for (var i$1 = 0; i$1 < arrays.length; i$1++) + { + var size = sizes[i$1]; + var array = arrays[i$1]; + + var type = getBufferType(array); + + if (!views[type]) + { + views[type] = new map$2[type](buffer); + } + + out = views[type]; + + for (var j = 0; j < array.length; j++) + { + var indexStart = ((j / size | 0) * stride) + littleOffset; + var index = j % size; + + out[indexStart + index] = array[j]; + } + + littleOffset += size; + } + + return new Float32Array(buffer); +} + +var byteSizeMap = { 5126: 4, 5123: 2, 5121: 1 }; +var UID$1 = 0; + +/* eslint-disable object-shorthand */ +var map$1$1 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, + Uint16Array: Uint16Array, +}; + +/* eslint-disable max-len */ + +/** + * The Geometry represents a model. It consists of two components: + * - GeometryStyle - The structure of the model such as the attributes layout + * - GeometryData - the data of the model - this consists of buffers. + * This can include anything from positions, uvs, normals, colors etc. + * + * Geometry can be defined without passing in a style or data if required (thats how I prefer!) + * + * ```js + * let geometry = new PIXI.Geometry(); + * + * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2); + * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1],2) + * geometry.addIndex([0,1,2,1,3,2]) + * + * ``` + * @class + * @memberof PIXI + */ +var Geometry = function Geometry(buffers, attributes) +{ + if ( buffers === void 0 ) buffers = []; + if ( attributes === void 0 ) attributes = {}; + + this.buffers = buffers; + + this.indexBuffer = null; + + this.attributes = attributes; + + /** + * A map of renderer IDs to webgl VAOs + * + * @protected + * @type {object} + */ + this.glVertexArrayObjects = {}; + + this.id = UID$1++; + + this.instanced = false; + + /** + * Number of instances in this geometry, pass it to `GeometrySystem.draw()` + * @member {number} + * @default 1 + */ + this.instanceCount = 1; + + this.disposeRunner = new Runner('disposeGeometry', 2); + + /** + * Count of existing (not destroyed) meshes that reference this geometry + * @member {number} + */ + this.refCount = 0; +}; + +/** +* +* Adds an attribute to the geometry +* +* @param {String} id - the name of the attribute (matching up to a shader) +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it. +* @param {Number} [size=0] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 +* @param {Boolean} [normalized=false] should the data be normalized. +* @param {Number} [type=PIXI.TYPES.FLOAT] what type of number is the attribute. Check {PIXI.TYPES} to see the ones available +* @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) +* @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) +* +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addAttribute = function addAttribute (id, buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( instance === void 0 ) instance = false; + + if (!buffer) + { + throw new Error('You must pass a buffer when creating an attribute'); + } + + // check if this is a buffer! + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Float32Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + var ids = id.split('|'); + + if (ids.length > 1) + { + for (var i = 0; i < ids.length; i++) + { + this.addAttribute(ids[i], buffer, size, normalized, type); + } + + return this; + } + + var bufferIndex = this.buffers.indexOf(buffer); + + if (bufferIndex === -1) + { + this.buffers.push(buffer); + bufferIndex = this.buffers.length - 1; + } + + this.attributes[id] = new Attribute(bufferIndex, size, normalized, type, stride, start, instance); + + // assuming that if there is instanced data then this will be drawn with instancing! + this.instanced = this.instanced || instance; + + return this; +}; + +/** + * returns the requested attribute + * + * @param {String} id the name of the attribute required + * @return {PIXI.Attribute} the attribute requested. + */ +Geometry.prototype.getAttribute = function getAttribute (id) +{ + return this.attributes[id]; +}; + +/** + * returns the requested buffer + * + * @param {String} id the name of the buffer required + * @return {PIXI.Buffer} the buffer requested. + */ +Geometry.prototype.getBuffer = function getBuffer (id) +{ + return this.buffers[this.getAttribute(id).buffer]; +}; + +/** +* +* Adds an index buffer to the geometry +* The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer. +* +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it. +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addIndex = function addIndex (buffer) +{ + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Uint16Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + buffer.index = true; + this.indexBuffer = buffer; + + if (this.buffers.indexOf(buffer) === -1) + { + this.buffers.push(buffer); + } + + return this; +}; + +/** + * returns the index buffer + * + * @return {PIXI.Buffer} the index buffer. + */ +Geometry.prototype.getIndex = function getIndex () +{ + return this.indexBuffer; +}; + +/** + * this function modifies the structure so that all current attributes become interleaved into a single buffer + * This can be useful if your model remains static as it offers a little performance boost + * + * @return {PIXI.Geometry} returns self, useful for chaining. + */ +Geometry.prototype.interleave = function interleave () +{ + // a simple check to see if buffers are already interleaved.. + if (this.buffers.length === 1 || (this.buffers.length === 2 && this.indexBuffer)) { return this; } + + // assume already that no buffers are interleaved + var arrays = []; + var sizes = []; + var interleavedBuffer = new Buffer$1(); + var i; + + for (i in this.attributes) + { + var attribute = this.attributes[i]; + + var buffer = this.buffers[attribute.buffer]; + + arrays.push(buffer.data); + + sizes.push((attribute.size * byteSizeMap[attribute.type]) / 4); + + attribute.buffer = 0; + } + + interleavedBuffer.data = interleaveTypedArrays(arrays, sizes); + + for (i = 0; i < this.buffers.length; i++) + { + if (this.buffers[i] !== this.indexBuffer) + { + this.buffers[i].destroy(); + } + } + + this.buffers = [interleavedBuffer]; + + if (this.indexBuffer) + { + this.buffers.push(this.indexBuffer); + } + + return this; +}; + +Geometry.prototype.getSize = function getSize () +{ + for (var i in this.attributes) + { + var attribute = this.attributes[i]; + var buffer = this.buffers[attribute.buffer]; + + return buffer.data.length / ((attribute.stride / 4) || attribute.size); + } + + return 0; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Geometry.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the geometry. + */ +Geometry.prototype.destroy = function destroy () +{ + this.dispose(); + + this.buffers = null; + this.indexBuffer.destroy(); + + this.attributes = null; +}; + +/** + * returns a clone of the geometry + * + * @returns {PIXI.Geometry} a new clone of this geometry + */ +Geometry.prototype.clone = function clone () +{ + var geometry = new Geometry(); + + for (var i = 0; i < this.buffers.length; i++) + { + geometry.buffers[i] = new Buffer$1(this.buffers[i].data.slice()); + } + + for (var i$1 in this.attributes) + { + var attrib = this.attributes[i$1]; + + geometry.attributes[i$1] = new Attribute( + attrib.buffer, + attrib.size, + attrib.normalized, + attrib.type, + attrib.stride, + attrib.start, + attrib.instance + ); + } + + if (this.indexBuffer) + { + geometry.indexBuffer = geometry.buffers[this.buffers.indexOf(this.indexBuffer)]; + geometry.indexBuffer.index = true; + } + + return geometry; +}; + +/** + * merges an array of geometries into a new single one + * geometry attribute styles must match for this operation to work + * + * @param {PIXI.Geometry[]} geometries array of geometries to merge + * @returns {PIXI.Geometry} shiny new geometry! + */ +Geometry.merge = function merge (geometries) +{ + // todo add a geometry check! + // also a size check.. cant be too big!] + + var geometryOut = new Geometry(); + + var arrays = []; + var sizes = []; + var offsets = []; + + var geometry; + + // pass one.. get sizes.. + for (var i = 0; i < geometries.length; i++) + { + geometry = geometries[i]; + + for (var j = 0; j < geometry.buffers.length; j++) + { + sizes[j] = sizes[j] || 0; + sizes[j] += geometry.buffers[j].data.length; + offsets[j] = 0; + } + } + + // build the correct size arrays.. + for (var i$1 = 0; i$1 < geometry.buffers.length; i$1++) + { + // TODO types! + arrays[i$1] = new map$1$1[getBufferType(geometry.buffers[i$1].data)](sizes[i$1]); + geometryOut.buffers[i$1] = new Buffer$1(arrays[i$1]); + } + + // pass to set data.. + for (var i$2 = 0; i$2 < geometries.length; i$2++) + { + geometry = geometries[i$2]; + + for (var j$1 = 0; j$1 < geometry.buffers.length; j$1++) + { + arrays[j$1].set(geometry.buffers[j$1].data, offsets[j$1]); + offsets[j$1] += geometry.buffers[j$1].data.length; + } + } + + geometryOut.attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + geometryOut.indexBuffer = geometryOut.buffers[geometry.buffers.indexOf(geometry.indexBuffer)]; + geometryOut.indexBuffer.index = true; + + var offset = 0; + var stride = 0; + var offset2 = 0; + var bufferIndexToCount = 0; + + // get a buffer + for (var i$3 = 0; i$3 < geometry.buffers.length; i$3++) + { + if (geometry.buffers[i$3] !== geometry.indexBuffer) + { + bufferIndexToCount = i$3; + break; + } + } + + // figure out the stride of one buffer.. + for (var i$4 in geometry.attributes) + { + var attribute = geometry.attributes[i$4]; + + if ((attribute.buffer | 0) === bufferIndexToCount) + { + stride += ((attribute.size * byteSizeMap[attribute.type]) / 4); + } + } + + // time to off set all indexes.. + for (var i$5 = 0; i$5 < geometries.length; i$5++) + { + var indexBufferData = geometries[i$5].indexBuffer.data; + + for (var j$2 = 0; j$2 < indexBufferData.length; j$2++) + { + geometryOut.indexBuffer.data[j$2 + offset2] += offset; + } + + offset += geometry.buffers[bufferIndexToCount].data.length / (stride); + offset2 += indexBufferData.length; + } + } + + return geometryOut; +}; + +/** + * Helper class to create a quad + * + * @class + * @memberof PIXI + */ +var Quad = /*@__PURE__*/(function (Geometry) { + function Quad() + { + Geometry.call(this); + + this.addAttribute('aVertexPosition', [ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]) + .addIndex([0, 1, 3, 2]); + } + + if ( Geometry ) Quad.__proto__ = Geometry; + Quad.prototype = Object.create( Geometry && Geometry.prototype ); + Quad.prototype.constructor = Quad; + + return Quad; +}(Geometry)); + +/** + * Helper class to create a quad with uvs like in v4 + * + * @class + * @memberof PIXI + * @extends PIXI.Geometry + */ +var QuadUv = /*@__PURE__*/(function (Geometry) { + function QuadUv() + { + Geometry.call(this); + + /** + * An array of vertices + * + * @member {Float32Array} + */ + this.vertices = new Float32Array([ + -1, -1, + 1, -1, + 1, 1, + -1, 1 ]); + + /** + * The Uvs of the quad + * + * @member {Float32Array} + */ + this.uvs = new Float32Array([ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]); + + this.vertexBuffer = new Buffer$1(this.vertices); + this.uvBuffer = new Buffer$1(this.uvs); + + this.addAttribute('aVertexPosition', this.vertexBuffer) + .addAttribute('aTextureCoord', this.uvBuffer) + .addIndex([0, 1, 2, 0, 2, 3]); + } + + if ( Geometry ) QuadUv.__proto__ = Geometry; + QuadUv.prototype = Object.create( Geometry && Geometry.prototype ); + QuadUv.prototype.constructor = QuadUv; + + /** + * Maps two Rectangle to the quad. + * + * @param {PIXI.Rectangle} targetTextureFrame - the first rectangle + * @param {PIXI.Rectangle} destinationFrame - the second rectangle + * @return {PIXI.Quad} Returns itself. + */ + QuadUv.prototype.map = function map (targetTextureFrame, destinationFrame) + { + var x = 0; // destinationFrame.x / targetTextureFrame.width; + var y = 0; // destinationFrame.y / targetTextureFrame.height; + + this.uvs[0] = x; + this.uvs[1] = y; + + this.uvs[2] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[3] = y; + + this.uvs[4] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[5] = y + (destinationFrame.height / targetTextureFrame.height); + + this.uvs[6] = x; + this.uvs[7] = y + (destinationFrame.height / targetTextureFrame.height); + + x = destinationFrame.x; + y = destinationFrame.y; + + this.vertices[0] = x; + this.vertices[1] = y; + + this.vertices[2] = x + destinationFrame.width; + this.vertices[3] = y; + + this.vertices[4] = x + destinationFrame.width; + this.vertices[5] = y + destinationFrame.height; + + this.vertices[6] = x; + this.vertices[7] = y + destinationFrame.height; + + this.invalidate(); + + return this; + }; + + /** + * legacy upload method, just marks buffers dirty + * @returns {PIXI.QuadUv} Returns itself. + */ + QuadUv.prototype.invalidate = function invalidate () + { + this.vertexBuffer._updateID++; + this.uvBuffer._updateID++; + + return this; + }; + + return QuadUv; +}(Geometry)); + +var UID$2 = 0; + +/** + * Uniform group holds uniform map and some ID's for work + * + * @class + * @memberof PIXI + */ +var UniformGroup = function UniformGroup(uniforms, _static) +{ + /** + * uniform values + * @member {object} + * @readonly + */ + this.uniforms = uniforms; + + /** + * Its a group and not a single uniforms + * @member {boolean} + * @readonly + * @default true + */ + this.group = true; + + // lets generate this when the shader ? + this.syncUniforms = {}; + + /** + * dirty version + * @protected + * @member {number} + */ + this.dirtyId = 0; + + /** + * unique id + * @protected + * @member {number} + */ + this.id = UID$2++; + + /** + * Uniforms wont be changed after creation + * @member {boolean} + */ + this.static = !!_static; +}; + +UniformGroup.prototype.update = function update () +{ + this.dirtyId++; +}; + +UniformGroup.prototype.add = function add (name, uniforms, _static) +{ + this.uniforms[name] = new UniformGroup(uniforms, _static); +}; + +UniformGroup.from = function from (uniforms, _static) +{ + return new UniformGroup(uniforms, _static); +}; + +/** + * System plugin to the renderer to manage filter states. + * + * @class + * @private + */ +var FilterState = function FilterState() +{ + this.renderTexture = null; + + /** + * Target of the filters + * We store for case when custom filter wants to know the element it was applied on + * @member {PIXI.DisplayObject} + * @private + */ + this.target = null; + + /** + * Compatibility with PixiJS v4 filters + * @member {boolean} + * @default false + * @private + */ + this.legacy = false; + + /** + * Resolution of filters + * @member {number} + * @default 1 + * @private + */ + this.resolution = 1; + + // next three fields are created only for root + // re-assigned for everything else + + /** + * Source frame + * @member {PIXI.Rectangle} + * @private + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @private + */ + this.destinationFrame = new Rectangle(); + + /** + * Collection of filters + * @member {PIXI.Filter[]} + * @private + */ + this.filters = []; +}; + +/** + * clears the state + * @private + */ +FilterState.prototype.clear = function clear () +{ + this.target = null; + this.filters = null; + this.renderTexture = null; +}; + +/** + * System plugin to the renderer to manage the filters. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var FilterSystem = /*@__PURE__*/(function (System) { + function FilterSystem(renderer) + { + System.call(this, renderer); + + /** + * List of filters for the FilterSystem + * @member {Object[]} + * @readonly + */ + this.defaultFilterStack = [{}]; + + /** + * stores a bunch of PO2 textures used for filtering + * @member {Object} + */ + this.texturePool = new RenderTexturePool(); + + this.texturePool.setScreenSize(renderer.view); + + /** + * a pool for storing filter states, save us creating new ones each tick + * @member {Object[]} + */ + this.statePool = []; + + /** + * A very simple geometry used when drawing a filter effect to the screen + * @member {PIXI.Quad} + */ + this.quad = new Quad(); + + /** + * Quad UVs + * @member {PIXI.QuadUv} + */ + this.quadUv = new QuadUv(); + + /** + * Temporary rect for maths + * @type {PIXI.Rectangle} + */ + this.tempRect = new Rectangle(); + + /** + * Active state + * @member {object} + */ + this.activeState = {}; + + /** + * This uniform group is attached to filter uniforms when used + * @member {PIXI.UniformGroup} + * @property {PIXI.Rectangle} outputFrame + * @property {Float32Array} inputSize + * @property {Float32Array} inputPixel + * @property {Float32Array} inputClamp + * @property {Number} resolution + * @property {Float32Array} filterArea + * @property {Fload32Array} filterClamp + */ + this.globalUniforms = new UniformGroup({ + outputFrame: this.tempRect, + inputSize: new Float32Array(4), + inputPixel: new Float32Array(4), + inputClamp: new Float32Array(4), + resolution: 1, + + // legacy variables + filterArea: new Float32Array(4), + filterClamp: new Float32Array(4), + }, true); + + this._pixelsWidth = renderer.view.width; + this._pixelsHeight = renderer.view.height; + } + + if ( System ) FilterSystem.__proto__ = System; + FilterSystem.prototype = Object.create( System && System.prototype ); + FilterSystem.prototype.constructor = FilterSystem; + + /** + * Adds a new filter to the System. + * + * @param {PIXI.DisplayObject} target - The target of the filter to render. + * @param {PIXI.Filter[]} filters - The filters to apply. + */ + FilterSystem.prototype.push = function push (target, filters) + { + var renderer = this.renderer; + var filterStack = this.defaultFilterStack; + var state = this.statePool.pop() || new FilterState(); + + var resolution = filters[0].resolution; + var padding = filters[0].padding; + var autoFit = filters[0].autoFit; + var legacy = filters[0].legacy; + + for (var i = 1; i < filters.length; i++) + { + var filter = filters[i]; + + // lets use the lowest resolution.. + resolution = Math.min(resolution, filter.resolution); + // and the largest amount of padding! + padding = Math.max(padding, filter.padding); + // only auto fit if all filters are autofit + autoFit = autoFit || filter.autoFit; + + legacy = legacy || filter.legacy; + } + + if (filterStack.length === 1) + { + this.defaultFilterStack[0].renderTexture = renderer.renderTexture.current; + } + + filterStack.push(state); + + state.resolution = resolution; + + state.legacy = legacy; + + state.target = target; + + state.sourceFrame.copyFrom(target.filterArea || target.getBounds(true)); + + state.sourceFrame.pad(padding); + if (autoFit) + { + state.sourceFrame.fit(this.renderer.renderTexture.sourceFrame); + } + + // round to whole number based on resolution + state.sourceFrame.ceil(resolution); + + state.renderTexture = this.getOptimalFilterTexture(state.sourceFrame.width, state.sourceFrame.height, resolution); + state.filters = filters; + + state.destinationFrame.width = state.renderTexture.width; + state.destinationFrame.height = state.renderTexture.height; + + state.renderTexture.filterFrame = state.sourceFrame; + + renderer.renderTexture.bind(state.renderTexture, state.sourceFrame);// /, state.destinationFrame); + renderer.renderTexture.clear(); + }; + + /** + * Pops off the filter and applies it. + * + */ + FilterSystem.prototype.pop = function pop () + { + var filterStack = this.defaultFilterStack; + var state = filterStack.pop(); + var filters = state.filters; + + this.activeState = state; + + var globalUniforms = this.globalUniforms.uniforms; + + globalUniforms.outputFrame = state.sourceFrame; + globalUniforms.resolution = state.resolution; + + var inputSize = globalUniforms.inputSize; + var inputPixel = globalUniforms.inputPixel; + var inputClamp = globalUniforms.inputClamp; + + inputSize[0] = state.destinationFrame.width; + inputSize[1] = state.destinationFrame.height; + inputSize[2] = 1.0 / inputSize[0]; + inputSize[3] = 1.0 / inputSize[1]; + + inputPixel[0] = inputSize[0] * state.resolution; + inputPixel[1] = inputSize[1] * state.resolution; + inputPixel[2] = 1.0 / inputPixel[0]; + inputPixel[3] = 1.0 / inputPixel[1]; + + inputClamp[0] = 0.5 * inputPixel[2]; + inputClamp[1] = 0.5 * inputPixel[3]; + inputClamp[2] = (state.sourceFrame.width * inputSize[2]) - (0.5 * inputPixel[2]); + inputClamp[3] = (state.sourceFrame.height * inputSize[3]) - (0.5 * inputPixel[3]); + + // only update the rect if its legacy.. + if (state.legacy) + { + var filterArea = globalUniforms.filterArea; + + filterArea[0] = state.destinationFrame.width; + filterArea[1] = state.destinationFrame.height; + filterArea[2] = state.sourceFrame.x; + filterArea[3] = state.sourceFrame.y; + + globalUniforms.filterClamp = globalUniforms.inputClamp; + } + + this.globalUniforms.update(); + + var lastState = filterStack[filterStack.length - 1]; + + if (filters.length === 1) + { + filters[0].apply(this, state.renderTexture, lastState.renderTexture, false, state); + + this.returnFilterTexture(state.renderTexture); + } + else + { + var flip = state.renderTexture; + var flop = this.getOptimalFilterTexture( + flip.width, + flip.height, + state.resolution + ); + + flop.filterFrame = flip.filterFrame; + + var i = 0; + + for (i = 0; i < filters.length - 1; ++i) + { + filters[i].apply(this, flip, flop, true, state); + + var t = flip; + + flip = flop; + flop = t; + } + + filters[i].apply(this, flip, lastState.renderTexture, false, state); + + this.returnFilterTexture(flip); + this.returnFilterTexture(flop); + } + + state.clear(); + this.statePool.push(state); + }; + + /** + * Draws a filter. + * + * @param {PIXI.Filter} filter - The filter to draw. + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + */ + FilterSystem.prototype.applyFilter = function applyFilter (filter, input, output, clear) + { + var renderer = this.renderer; + + renderer.renderTexture.bind(output, output ? output.filterFrame : null); + + if (clear) + { + // gl.disable(gl.SCISSOR_TEST); + renderer.renderTexture.clear(); + // gl.enable(gl.SCISSOR_TEST); + } + + // set the uniforms.. + filter.uniforms.uSampler = input; + filter.uniforms.filterGlobals = this.globalUniforms; + + // TODO make it so that the order of this does not matter.. + // because it does at the moment cos of global uniforms. + // they need to get resynced + + renderer.state.set(filter.state); + renderer.shader.bind(filter); + + if (filter.legacy) + { + this.quadUv.map(input._frame, input.filterFrame); + + renderer.geometry.bind(this.quadUv); + renderer.geometry.draw(DRAW_MODES.TRIANGLES); + } + else + { + renderer.geometry.bind(this.quad); + renderer.geometry.draw(DRAW_MODES.TRIANGLE_STRIP); + } + }; + + /** + * Multiply _input normalized coordinates_ to this matrix to get _sprite texture normalized coordinates_. + * + * Use `outputMatrix * vTextureCoord` in the shader. + * + * @param {PIXI.Matrix} outputMatrix - The matrix to output to. + * @param {PIXI.Sprite} sprite - The sprite to map to. + * @return {PIXI.Matrix} The mapped matrix. + */ + FilterSystem.prototype.calculateSpriteMatrix = function calculateSpriteMatrix (outputMatrix, sprite) + { + var ref = this.activeState; + var sourceFrame = ref.sourceFrame; + var destinationFrame = ref.destinationFrame; + var ref$1 = sprite._texture; + var orig = ref$1.orig; + var mappedMatrix = outputMatrix.set(destinationFrame.width, 0, 0, + destinationFrame.height, sourceFrame.x, sourceFrame.y); + var worldTransform = sprite.worldTransform.copyTo(Matrix.TEMP_MATRIX); + + worldTransform.invert(); + mappedMatrix.prepend(worldTransform); + mappedMatrix.scale(1.0 / orig.width, 1.0 / orig.height); + mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y); + + return mappedMatrix; + }; + + /** + * Destroys this Filter System. + */ + FilterSystem.prototype.destroy = function destroy () + { + // Those textures has to be destroyed by RenderTextureSystem or FramebufferSystem + this.texturePool.clear(false); + }; + + /** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ + FilterSystem.prototype.getOptimalFilterTexture = function getOptimalFilterTexture (minWidth, minHeight, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + return this.texturePool.getOptimalTexture(minWidth, minHeight, resolution); + }; + + /** + * Gets extra render texture to use inside current filter + * To be compliant with older filters, you can use params in any order + * + * @param {PIXI.RenderTexture} [input] renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * @returns {PIXI.RenderTexture} + */ + FilterSystem.prototype.getFilterTexture = function getFilterTexture (input, resolution) + { + if (typeof input === 'number') + { + var swap = input; + + input = resolution; + resolution = swap; + } + + input = input || this.activeState.renderTexture; + + var filterTexture = this.texturePool.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; + }; + + /** + * Frees a render texture back into the pool. + * + * @param {PIXI.RenderTexture} renderTexture - The renderTarget to free + */ + FilterSystem.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) + { + this.texturePool.returnTexture(renderTexture); + }; + + /** + * Empties the texture pool. + */ + FilterSystem.prototype.emptyPool = function emptyPool () + { + this.texturePool.clear(true); + }; + + /** + * calls `texturePool.resize()`, affects fullScreen renderTextures + */ + FilterSystem.prototype.resize = function resize () + { + this.texturePool.setScreenSize(this.renderer.view); + }; + + return FilterSystem; +}(System)); + +/** + * Base for a common object renderer that can be used as a + * system renderer plugin. + * + * @class + * @extends PIXI.System + * @memberof PIXI + */ +var ObjectRenderer = function ObjectRenderer(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Stub method that should be used to empty the current + * batch by rendering objects now. + */ +ObjectRenderer.prototype.flush = function flush () +{ + // flush! +}; + +/** + * Generic destruction method that frees all resources. This + * should be called by subclasses. + */ +ObjectRenderer.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Stub method that initializes any state required before + * rendering starts. It is different from the `prerender` + * signal, which occurs every frame, in that it is called + * whenever an object requests _this_ renderer specifically. + */ +ObjectRenderer.prototype.start = function start () +{ + // set the shader.. +}; + +/** + * Stops the renderer. It should free up any state and + * become dormant. + */ +ObjectRenderer.prototype.stop = function stop () +{ + this.flush(); +}; + +/** + * Keeps the object to render. It doesn't have to be + * rendered immediately. + * + * @param {PIXI.DisplayObject} object - The object to render. + */ +ObjectRenderer.prototype.render = function render (object) // eslint-disable-line no-unused-vars +{ + // render the object +}; + +/** + * System plugin to the renderer to manage batching. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var BatchSystem = /*@__PURE__*/(function (System) { + function BatchSystem(renderer) + { + System.call(this, renderer); + + /** + * An empty renderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.emptyRenderer = new ObjectRenderer(renderer); + + /** + * The currently active ObjectRenderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.currentRenderer = this.emptyRenderer; + } + + if ( System ) BatchSystem.__proto__ = System; + BatchSystem.prototype = Object.create( System && System.prototype ); + BatchSystem.prototype.constructor = BatchSystem; + + /** + * Changes the current renderer to the one given in parameter + * + * @param {PIXI.ObjectRenderer} objectRenderer - The object renderer to use. + */ + BatchSystem.prototype.setObjectRenderer = function setObjectRenderer (objectRenderer) + { + if (this.currentRenderer === objectRenderer) + { + return; + } + + this.currentRenderer.stop(); + this.currentRenderer = objectRenderer; + + this.currentRenderer.start(); + }; + + /** + * This should be called if you wish to do some custom rendering + * It will basically render anything that may be batched up such as sprites + */ + BatchSystem.prototype.flush = function flush () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + /** + * Reset the system to an empty renderer + */ + BatchSystem.prototype.reset = function reset () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + return BatchSystem; +}(System)); + +/** + * The maximum support for using WebGL. If a device does not + * support WebGL version, for instance WebGL 2, it will still + * attempt to fallback support to WebGL 1. If you want to + * explicitly remove feature support to target a more stable + * baseline, prefer a lower environment. + * + * Due to {@link https://bugs.chromium.org/p/chromium/issues/detail?id=934823|bug in chromium} + * we disable webgl2 by default for all non-apple mobile devices. + * + * @static + * @name PREFER_ENV + * @memberof PIXI.settings + * @type {number} + * @default PIXI.ENV.WEBGL2 + */ +settings.PREFER_ENV = isMobile.any ? ENV.WEBGL : ENV.WEBGL2; + +var CONTEXT_UID = 0; + +/** + * System plugin to the renderer to manage the context. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var ContextSystem = /*@__PURE__*/(function (System) { + function ContextSystem(renderer) + { + System.call(this, renderer); + + /** + * Either 1 or 2 to reflect the WebGL version being used + * @member {number} + * @readonly + */ + this.webGLVersion = 1; + + /** + * Extensions being used + * @member {object} + * @readonly + * @property {WEBGL_draw_buffers} drawBuffers - WebGL v1 extension + * @property {WEBGL_depth_texture} depthTexture - WebGL v1 extension + * @property {OES_texture_float} floatTexture - WebGL v1 extension + * @property {WEBGL_lose_context} loseContext - WebGL v1 extension + * @property {OES_vertex_array_object} vertexArrayObject - WebGL v1 extension + * @property {EXT_texture_filter_anisotropic} anisotropicFiltering - WebGL v1 and v2 extension + */ + this.extensions = {}; + + // Bind functions + this.handleContextLost = this.handleContextLost.bind(this); + this.handleContextRestored = this.handleContextRestored.bind(this); + + renderer.view.addEventListener('webglcontextlost', this.handleContextLost, false); + renderer.view.addEventListener('webglcontextrestored', this.handleContextRestored, false); + } + + if ( System ) ContextSystem.__proto__ = System; + ContextSystem.prototype = Object.create( System && System.prototype ); + ContextSystem.prototype.constructor = ContextSystem; + + var prototypeAccessors = { isLost: { configurable: true } }; + + /** + * `true` if the context is lost + * @member {boolean} + * @readonly + */ + prototypeAccessors.isLost.get = function () + { + return (!this.gl || this.gl.isContextLost()); + }; + + /** + * Handle the context change event + * @param {WebGLRenderingContext} gl new webgl context + */ + ContextSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + + // restore a context if it was previously lost + if (gl.isContextLost() && gl.getExtension('WEBGL_lose_context')) + { + gl.getExtension('WEBGL_lose_context').restoreContext(); + } + }; + + /** + * Initialize the context + * + * @protected + * @param {WebGLRenderingContext} gl - WebGL context + */ + ContextSystem.prototype.initFromContext = function initFromContext (gl) + { + this.gl = gl; + this.validateContext(gl); + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + this.renderer.runners.contextChange.run(gl); + }; + + /** + * Initialize from context options + * + * @protected + * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext + * @param {object} options - context attributes + */ + ContextSystem.prototype.initFromOptions = function initFromOptions (options) + { + var gl = this.createContext(this.renderer.view, options); + + this.initFromContext(gl); + }; + + /** + * Helper class to create a WebGL Context + * + * @param canvas {HTMLCanvasElement} the canvas element that we will get the context from + * @param options {object} An options object that gets passed in to the canvas element containing the context attributes + * @see https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement/getContext + * @return {WebGLRenderingContext} the WebGL context + */ + ContextSystem.prototype.createContext = function createContext (canvas, options) + { + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', options); + } + + if (gl) + { + this.webGLVersion = 2; + } + else + { + this.webGLVersion = 1; + + gl = canvas.getContext('webgl', options) + || canvas.getContext('experimental-webgl', options); + + if (!gl) + { + // fail, not able to get a context + throw new Error('This browser does not support WebGL. Try using the canvas renderer'); + } + } + + this.gl = gl; + + this.getExtensions(); + + return gl; + }; + + /** + * Auto-populate the extensions + * + * @protected + */ + ContextSystem.prototype.getExtensions = function getExtensions () + { + // time to set up default extensions that Pixi uses. + var ref = this; + var gl = ref.gl; + + if (this.webGLVersion === 1) + { + Object.assign(this.extensions, { + drawBuffers: gl.getExtension('WEBGL_draw_buffers'), + depthTexture: gl.getExtension('WEBKIT_WEBGL_depth_texture'), + loseContext: gl.getExtension('WEBGL_lose_context'), + vertexArrayObject: gl.getExtension('OES_vertex_array_object') + || gl.getExtension('MOZ_OES_vertex_array_object') + || gl.getExtension('WEBKIT_OES_vertex_array_object'), + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + uint32ElementIndex: gl.getExtension('OES_element_index_uint'), + // Floats and half-floats + floatTexture: gl.getExtension('OES_texture_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + textureHalfFloat: gl.getExtension('OES_texture_half_float'), + textureHalfFloatLinear: gl.getExtension('OES_texture_half_float_linear'), + }); + } + else if (this.webGLVersion === 2) + { + Object.assign(this.extensions, { + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + // Floats and half-floats + colorBufferFloat: gl.getExtension('EXT_color_buffer_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + }); + } + }; + + /** + * Handles a lost webgl context + * + * @protected + * @param {WebGLContextEvent} event - The context lost event. + */ + ContextSystem.prototype.handleContextLost = function handleContextLost (event) + { + event.preventDefault(); + }; + + /** + * Handles a restored webgl context + * + * @protected + */ + ContextSystem.prototype.handleContextRestored = function handleContextRestored () + { + this.renderer.runners.contextChange.run(this.gl); + }; + + ContextSystem.prototype.destroy = function destroy () + { + var view = this.renderer.view; + + // remove listeners + view.removeEventListener('webglcontextlost', this.handleContextLost); + view.removeEventListener('webglcontextrestored', this.handleContextRestored); + + this.gl.useProgram(null); + + if (this.extensions.loseContext) + { + this.extensions.loseContext.loseContext(); + } + }; + + /** + * Handle the post-render runner event + * + * @protected + */ + ContextSystem.prototype.postrender = function postrender () + { + this.gl.flush(); + }; + + /** + * Validate context + * + * @protected + * @param {WebGLRenderingContext} gl - Render context + */ + ContextSystem.prototype.validateContext = function validateContext (gl) + { + var attributes = gl.getContextAttributes(); + + // this is going to be fairly simple for now.. but at least we have room to grow! + if (!attributes.stencil) + { + /* eslint-disable max-len */ + + /* eslint-disable no-console */ + console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly'); + /* eslint-enable no-console */ + + /* eslint-enable max-len */ + } + }; + + Object.defineProperties( ContextSystem.prototype, prototypeAccessors ); + + return ContextSystem; +}(System)); + +/** + * System plugin to the renderer to manage framebuffers. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var FramebufferSystem = /*@__PURE__*/(function (System) { + function FramebufferSystem(renderer) + { + System.call(this, renderer); + + /** + * A list of managed framebuffers + * @member {PIXI.Framebuffer[]} + * @readonly + */ + this.managedFramebuffers = []; + + /** + * Framebuffer value that shows that we don't know what is bound + * @member {Framebuffer} + * @readonly + */ + this.unknownFramebuffer = new Framebuffer(10, 10); + } + + if ( System ) FramebufferSystem.__proto__ = System; + FramebufferSystem.prototype = Object.create( System && System.prototype ); + FramebufferSystem.prototype.constructor = FramebufferSystem; + + var prototypeAccessors = { size: { configurable: true } }; + + /** + * Sets up the renderer context and necessary buffers. + */ + FramebufferSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + this.hasMRT = true; + this.writeDepthTexture = true; + + this.disposeAll(true); + + // webgl2 + if (this.renderer.context.webGLVersion === 1) + { + // webgl 1! + var nativeDrawBuffersExtension = this.renderer.context.extensions.drawBuffers; + var nativeDepthTextureExtension = this.renderer.context.extensions.depthTexture; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeDrawBuffersExtension = null; + nativeDepthTextureExtension = null; + } + + if (nativeDrawBuffersExtension) + { + gl.drawBuffers = function (activeTextures) { return nativeDrawBuffersExtension.drawBuffersWEBGL(activeTextures); }; + } + else + { + this.hasMRT = false; + gl.drawBuffers = function () { + // empty + }; + } + + if (!nativeDepthTextureExtension) + { + this.writeDepthTexture = false; + } + } + }; + + /** + * Bind a framebuffer + * + * @param {PIXI.Framebuffer} framebuffer + * @param {PIXI.Rectangle} [frame] frame, default is framebuffer size + */ + FramebufferSystem.prototype.bind = function bind (framebuffer, frame) + { + var ref = this; + var gl = ref.gl; + + if (framebuffer) + { + // TODO caching layer! + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID] || this.initFramebuffer(framebuffer); + + if (this.current !== framebuffer) + { + this.current = framebuffer; + gl.bindFramebuffer(gl.FRAMEBUFFER, fbo.framebuffer); + } + // make sure all textures are unbound.. + + // now check for updates... + if (fbo.dirtyId !== framebuffer.dirtyId) + { + fbo.dirtyId = framebuffer.dirtyId; + + if (fbo.dirtyFormat !== framebuffer.dirtyFormat) + { + fbo.dirtyFormat = framebuffer.dirtyFormat; + this.updateFramebuffer(framebuffer); + } + else if (fbo.dirtySize !== framebuffer.dirtySize) + { + fbo.dirtySize = framebuffer.dirtySize; + this.resizeFramebuffer(framebuffer); + } + } + + for (var i = 0; i < framebuffer.colorTextures.length; i++) + { + if (framebuffer.colorTextures[i].texturePart) + { + this.renderer.texture.unbind(framebuffer.colorTextures[i].texture); + } + else + { + this.renderer.texture.unbind(framebuffer.colorTextures[i]); + } + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.unbind(framebuffer.depthTexture); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, framebuffer.width, framebuffer.height); + } + } + else + { + if (this.current) + { + this.current = null; + gl.bindFramebuffer(gl.FRAMEBUFFER, null); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, this.renderer.width, this.renderer.height); + } + } + }; + + /** + * Set the WebGLRenderingContext's viewport. + * + * @param {Number} x - X position of viewport + * @param {Number} y - Y position of viewport + * @param {Number} width - Width of viewport + * @param {Number} height - Height of viewport + */ + FramebufferSystem.prototype.setViewport = function setViewport (x, y, width, height) + { + var v = this.viewport; + + if (v.width !== width || v.height !== height || v.x !== x || v.y !== y) + { + v.x = x; + v.y = y; + v.width = width; + v.height = height; + + this.gl.viewport(x, y, width, height); + } + }; + + /** + * Get the size of the current width and height. Returns object with `width` and `height` values. + * + * @member {object} + * @readonly + */ + prototypeAccessors.size.get = function () + { + if (this.current) + { + // TODO store temp + return { x: 0, y: 0, width: this.current.width, height: this.current.height }; + } + + return { x: 0, y: 0, width: this.renderer.width, height: this.renderer.height }; + }; + + /** + * Clear the color of the context + * + * @param {Number} r - Red value from 0 to 1 + * @param {Number} g - Green value from 0 to 1 + * @param {Number} b - Blue value from 0 to 1 + * @param {Number} a - Alpha value from 0 to 1 + */ + FramebufferSystem.prototype.clear = function clear (r, g, b, a) + { + var ref = this; + var gl = ref.gl; + + // TODO clear color can be set only one right? + gl.clearColor(r, g, b, a); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + }; + + /** + * Initialize framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.initFramebuffer = function initFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + // TODO - make this a class? + var fbo = { + framebuffer: gl.createFramebuffer(), + stencil: null, + dirtyId: 0, + dirtyFormat: 0, + dirtySize: 0, + }; + + framebuffer.glFramebuffers[this.CONTEXT_UID] = fbo; + + this.managedFramebuffers.push(framebuffer); + framebuffer.disposeRunner.add(this); + + return fbo; + }; + + /** + * Resize the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.resizeFramebuffer = function resizeFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (fbo.stencil) + { + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + } + + var colorTextures = framebuffer.colorTextures; + + for (var i = 0; i < colorTextures.length; i++) + { + this.renderer.texture.bind(colorTextures[i], 0); + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.bind(framebuffer.depthTexture, 0); + } + }; + + /** + * Update the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.updateFramebuffer = function updateFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + // bind the color texture + var colorTextures = framebuffer.colorTextures; + + var count = colorTextures.length; + + if (!gl.drawBuffers) + { + count = Math.min(count, 1); + } + + var activeTextures = []; + + for (var i = 0; i < count; i++) + { + var texture = framebuffer.colorTextures[i]; + + if (texture.texturePart) + { + this.renderer.texture.bind(texture.texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_CUBE_MAP_NEGATIVE_X + texture.side, + texture.texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + else + { + this.renderer.texture.bind(texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_2D, + texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + + activeTextures.push(gl.COLOR_ATTACHMENT0 + i); + } + + if (activeTextures.length > 1) + { + gl.drawBuffers(activeTextures); + } + + if (framebuffer.depthTexture) + { + var writeDepthTexture = this.writeDepthTexture; + + if (writeDepthTexture) + { + var depthTexture = framebuffer.depthTexture; + + this.renderer.texture.bind(depthTexture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.DEPTH_ATTACHMENT, + gl.TEXTURE_2D, + depthTexture._glTextures[this.CONTEXT_UID].texture, + 0); + } + } + + if (!fbo.stencil && (framebuffer.stencil || framebuffer.depth)) + { + fbo.stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + // TODO.. this is depth AND stencil? + if (!framebuffer.depthTexture) + { // you can't have both, so one should take priority if enabled + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, fbo.stencil); + } + } + }; + + /** + * Disposes framebuffer + * @param {PIXI.Framebuffer} framebuffer framebuffer that has to be disposed of + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeFramebuffer = function disposeFramebuffer (framebuffer, contextLost) + { + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + var gl = this.gl; + + if (!fbo) + { + return; + } + + delete framebuffer.glFramebuffers[this.CONTEXT_UID]; + + var index = this.managedFramebuffers.indexOf(framebuffer); + + if (index >= 0) + { + this.managedFramebuffers.splice(index, 1); + } + + framebuffer.disposeRunner.remove(this); + + if (!contextLost) + { + gl.deleteFramebuffer(fbo.framebuffer); + if (fbo.stencil) + { + gl.deleteRenderbuffer(fbo.stencil); + } + } + }; + + /** + * Disposes all framebuffers, but not textures bound to them + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeAll = function disposeAll (contextLost) + { + var list = this.managedFramebuffers; + + this.managedFramebuffers = []; + + for (var i = 0; i < list.length; i++) + { + this.disposeFramebuffer(list[i], contextLost); + } + }; + + /** + * Forcing creation of stencil buffer for current framebuffer, if it wasn't done before. + * Used by MaskSystem, when its time to use stencil mask for Graphics element. + * + * Its an alternative for public lazy `framebuffer.enableStencil`, in case we need stencil without rebind. + * + * @private + */ + FramebufferSystem.prototype.forceStencil = function forceStencil () + { + var framebuffer = this.current; + + if (!framebuffer) + { + return; + } + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (!fbo || fbo.stencil) + { + return; + } + framebuffer.enableStencil(); + + var w = framebuffer.width; + var h = framebuffer.height; + var gl = this.gl; + var stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, w, h); + + fbo.stencil = stencil; + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, stencil); + }; + + /** + * resets framebuffer stored state, binds screen framebuffer + * + * should be called before renderTexture reset() + */ + FramebufferSystem.prototype.reset = function reset () + { + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + }; + + Object.defineProperties( FramebufferSystem.prototype, prototypeAccessors ); + + return FramebufferSystem; +}(System)); + +var GLBuffer = function GLBuffer(buffer) +{ + this.buffer = buffer; + this.updateID = -1; + this.byteLength = -1; + this.refCount = 0; +}; + +var byteSizeMap$1 = { 5126: 4, 5123: 2, 5121: 1 }; + +/** + * System plugin to the renderer to manage geometry. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var GeometrySystem = /*@__PURE__*/(function (System) { + function GeometrySystem(renderer) + { + System.call(this, renderer); + + this._activeGeometry = null; + this._activeVao = null; + + /** + * `true` if we has `*_vertex_array_object` extension + * @member {boolean} + * @readonly + */ + this.hasVao = true; + + /** + * `true` if has `ANGLE_instanced_arrays` extension + * @member {boolean} + * @readonly + */ + this.hasInstance = true; + + /** + * `true` if support `gl.UNSIGNED_INT` in `gl.drawElements` or `gl.drawElementsInstanced` + * @member {boolean} + * @readonly + */ + this.canUseUInt32ElementIndex = false; + + /** + * A cache of currently bound buffer, + * contains only two members with keys ARRAY_BUFFER and ELEMENT_ARRAY_BUFFER + * @member {Object.} + * @readonly + */ + this.boundBuffers = {}; + + /** + * Cache for all geometries by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedGeometries = {}; + + /** + * Cache for all buffers by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedBuffers = {}; + } + + if ( System ) GeometrySystem.__proto__ = System; + GeometrySystem.prototype = Object.create( System && System.prototype ); + GeometrySystem.prototype.constructor = GeometrySystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + GeometrySystem.prototype.contextChange = function contextChange () + { + this.disposeAll(true); + + var gl = this.gl = this.renderer.gl; + var context = this.renderer.context; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + // webgl2 + if (!gl.createVertexArray) + { + // webgl 1! + var nativeVaoExtension = this.renderer.context.extensions.vertexArrayObject; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeVaoExtension = null; + } + + if (nativeVaoExtension) + { + gl.createVertexArray = function () { return nativeVaoExtension.createVertexArrayOES(); }; + + gl.bindVertexArray = function (vao) { return nativeVaoExtension.bindVertexArrayOES(vao); }; + + gl.deleteVertexArray = function (vao) { return nativeVaoExtension.deleteVertexArrayOES(vao); }; + } + else + { + this.hasVao = false; + gl.createVertexArray = function () { + // empty + }; + + gl.bindVertexArray = function () { + // empty + }; + + gl.deleteVertexArray = function () { + // empty + }; + } + } + + if (!gl.vertexAttribDivisor) + { + var instanceExt = gl.getExtension('ANGLE_instanced_arrays'); + + if (instanceExt) + { + gl.vertexAttribDivisor = function (a, b) { return instanceExt.vertexAttribDivisorANGLE(a, b); }; + + gl.drawElementsInstanced = function (a, b, c, d, e) { return instanceExt.drawElementsInstancedANGLE(a, b, c, d, e); }; + + gl.drawArraysInstanced = function (a, b, c, d) { return instanceExt.drawArraysInstancedANGLE(a, b, c, d); }; + } + else + { + this.hasInstance = false; + } + } + + this.canUseUInt32ElementIndex = context.webGLVersion === 2 || !!context.extensions.uint32ElementIndex; + }; + + /** + * Binds geometry so that is can be drawn. Creating a Vao if required + * + * @param {PIXI.Geometry} geometry instance of geometry to bind + * @param {PIXI.Shader} [shader] instance of shader to use vao for + */ + GeometrySystem.prototype.bind = function bind (geometry, shader) + { + shader = shader || this.renderer.shader.shader; + + var ref = this; + var gl = ref.gl; + + // not sure the best way to address this.. + // currently different shaders require different VAOs for the same geometry + // Still mulling over the best way to solve this one.. + // will likely need to modify the shader attribute locations at run time! + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + if (!vaos) + { + this.managedGeometries[geometry.id] = geometry; + geometry.disposeRunner.add(this); + geometry.glVertexArrayObjects[this.CONTEXT_UID] = vaos = {}; + } + + var vao = vaos[shader.program.id] || this.initGeometryVao(geometry, shader.program); + + this._activeGeometry = geometry; + + if (this._activeVao !== vao) + { + this._activeVao = vao; + + if (this.hasVao) + { + gl.bindVertexArray(vao); + } + else + { + this.activateVao(geometry, shader.program); + } + } + + // TODO - optimise later! + // don't need to loop through if nothing changed! + // maybe look to add an 'autoupdate' to geometry? + this.updateBuffers(); + }; + + /** + * Reset and unbind any active VAO and geometry + */ + GeometrySystem.prototype.reset = function reset () + { + this.unbind(); + }; + + /** + * Update buffers + * @protected + */ + GeometrySystem.prototype.updateBuffers = function updateBuffers () + { + var geometry = this._activeGeometry; + var ref = this; + var gl = ref.gl; + + for (var i = 0; i < geometry.buffers.length; i++) + { + var buffer = geometry.buffers[i]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + + if (buffer._updateID !== glBuffer.updateID) + { + glBuffer.updateID = buffer._updateID; + + // TODO can cache this on buffer! maybe added a getter / setter? + var type = buffer.index ? gl.ELEMENT_ARRAY_BUFFER : gl.ARRAY_BUFFER; + + // TODO this could change if the VAO changes... + // need to come up with a better way to cache.. + // if (this.boundBuffers[type] !== glBuffer) + // { + // this.boundBuffers[type] = glBuffer; + gl.bindBuffer(type, glBuffer.buffer); + // } + + this._boundBuffer = glBuffer; + + if (glBuffer.byteLength >= buffer.data.byteLength) + { + // offset is always zero for now! + gl.bufferSubData(type, 0, buffer.data); + } + else + { + var drawType = buffer.static ? gl.STATIC_DRAW : gl.DYNAMIC_DRAW; + + glBuffer.byteLength = buffer.data.byteLength; + gl.bufferData(type, buffer.data, drawType); + } + } + } + }; + + /** + * Check compability between a geometry and a program + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Program instance + */ + GeometrySystem.prototype.checkCompatibility = function checkCompatibility (geometry, program) + { + // geometry must have at least all the attributes that the shader requires. + var geometryAttributes = geometry.attributes; + var shaderAttributes = program.attributeData; + + for (var j in shaderAttributes) + { + if (!geometryAttributes[j]) + { + throw new Error(("shader and geometry incompatible, geometry missing the \"" + j + "\" attribute")); + } + } + }; + + /** + * Takes a geometry and program and generates a unique signature for them. + * + * @param {PIXI.Geometry} geometry to get signature from + * @param {PIXI.Program} program to test geometry against + * @returns {String} Unique signature of the geometry and program + * @protected + */ + GeometrySystem.prototype.getSignature = function getSignature (geometry, program) + { + var attribs = geometry.attributes; + var shaderAttributes = program.attributeData; + + var strings = ['g', geometry.id]; + + for (var i in attribs) + { + if (shaderAttributes[i]) + { + strings.push(i); + } + } + + return strings.join('-'); + }; + + /** + * Creates or gets Vao with the same structure as the geometry and stores it on the geometry. + * If vao is created, it is bound automatically. + * + * @protected + * @param {PIXI.Geometry} geometry - Instance of geometry to to generate Vao for + * @param {PIXI.Program} program - Instance of program + */ + GeometrySystem.prototype.initGeometryVao = function initGeometryVao (geometry, program) + { + this.checkCompatibility(geometry, program); + + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + + var signature = this.getSignature(geometry, program); + + var vaoObjectHash = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + var vao = vaoObjectHash[signature]; + + if (vao) + { + // this will give us easy access to the vao + vaoObjectHash[program.id] = vao; + + return vao; + } + + var buffers = geometry.buffers; + var attributes = geometry.attributes; + var tempStride = {}; + var tempStart = {}; + + for (var j in buffers) + { + tempStride[j] = 0; + tempStart[j] = 0; + } + + for (var j$1 in attributes) + { + if (!attributes[j$1].size && program.attributeData[j$1]) + { + attributes[j$1].size = program.attributeData[j$1].size; + } + else if (!attributes[j$1].size) + { + console.warn(("PIXI Geometry attribute '" + j$1 + "' size cannot be determined (likely the bound shader does not have the attribute)")); // eslint-disable-line + } + + tempStride[attributes[j$1].buffer] += attributes[j$1].size * byteSizeMap$1[attributes[j$1].type]; + } + + for (var j$2 in attributes) + { + var attribute = attributes[j$2]; + var attribSize = attribute.size; + + if (attribute.stride === undefined) + { + if (tempStride[attribute.buffer] === attribSize * byteSizeMap$1[attribute.type]) + { + attribute.stride = 0; + } + else + { + attribute.stride = tempStride[attribute.buffer]; + } + } + + if (attribute.start === undefined) + { + attribute.start = tempStart[attribute.buffer]; + + tempStart[attribute.buffer] += attribSize * byteSizeMap$1[attribute.type]; + } + } + + vao = gl.createVertexArray(); + + gl.bindVertexArray(vao); + + // first update - and create the buffers! + // only create a gl buffer if it actually gets + for (var i = 0; i < buffers.length; i++) + { + var buffer = buffers[i]; + + if (!buffer._glBuffers[CONTEXT_UID]) + { + buffer._glBuffers[CONTEXT_UID] = new GLBuffer(gl.createBuffer()); + this.managedBuffers[buffer.id] = buffer; + buffer.disposeRunner.add(this); + } + + buffer._glBuffers[CONTEXT_UID].refCount++; + } + + // TODO - maybe make this a data object? + // lets wait to see if we need to first! + + this.activateVao(geometry, program); + + this._activeVao = vao; + + // add it to the cache! + vaoObjectHash[program.id] = vao; + vaoObjectHash[signature] = vao; + + return vao; + }; + + /** + * Disposes buffer + * @param {PIXI.Buffer} buffer buffer with data + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeBuffer = function disposeBuffer (buffer, contextLost) + { + if (!this.managedBuffers[buffer.id]) + { + return; + } + + delete this.managedBuffers[buffer.id]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + var gl = this.gl; + + buffer.disposeRunner.remove(this); + + if (!glBuffer) + { + return; + } + + if (!contextLost) + { + gl.deleteBuffer(glBuffer.buffer); + } + + delete buffer._glBuffers[this.CONTEXT_UID]; + }; + + /** + * Disposes geometry + * @param {PIXI.Geometry} geometry Geometry with buffers. Only VAO will be disposed + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeGeometry = function disposeGeometry (geometry, contextLost) + { + if (!this.managedGeometries[geometry.id]) + { + return; + } + + delete this.managedGeometries[geometry.id]; + + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + var gl = this.gl; + var buffers = geometry.buffers; + + geometry.disposeRunner.remove(this); + + if (!vaos) + { + return; + } + + for (var i = 0; i < buffers.length; i++) + { + var buf = buffers[i]._glBuffers[this.CONTEXT_UID]; + + buf.refCount--; + if (buf.refCount === 0 && !contextLost) + { + this.disposeBuffer(buffers[i], contextLost); + } + } + + if (!contextLost) + { + for (var vaoId in vaos) + { + // delete only signatures, everything else are copies + if (vaoId[0] === 'g') + { + var vao = vaos[vaoId]; + + if (this._activeVao === vao) + { + this.unbind(); + } + gl.deleteVertexArray(vao); + } + } + } + + delete geometry.glVertexArrayObjects[this.CONTEXT_UID]; + }; + + /** + * dispose all WebGL resources of all managed geometries and buffers + * @param {boolean} [contextLost=false] If context was lost, we suppress `gl.delete` calls + */ + GeometrySystem.prototype.disposeAll = function disposeAll (contextLost) + { + var all = Object.keys(this.managedGeometries); + + for (var i = 0; i < all.length; i++) + { + this.disposeGeometry(this.managedGeometries[all[i]], contextLost); + } + all = Object.keys(this.managedBuffers); + for (var i$1 = 0; i$1 < all.length; i$1++) + { + this.disposeBuffer(this.managedBuffers[all[i$1]], contextLost); + } + }; + + /** + * Activate vertex array object + * + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Shader program instance + */ + GeometrySystem.prototype.activateVao = function activateVao (geometry, program) + { + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + var buffers = geometry.buffers; + var attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + // first update the index buffer if we have one.. + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, geometry.indexBuffer._glBuffers[CONTEXT_UID].buffer); + } + + var lastBuffer = null; + + // add a new one! + for (var j in attributes) + { + var attribute = attributes[j]; + var buffer = buffers[attribute.buffer]; + var glBuffer = buffer._glBuffers[CONTEXT_UID]; + + if (program.attributeData[j]) + { + if (lastBuffer !== glBuffer) + { + gl.bindBuffer(gl.ARRAY_BUFFER, glBuffer.buffer); + + lastBuffer = glBuffer; + } + + var location = program.attributeData[j].location; + + // TODO introduce state again + // we can optimise this for older devices that have no VAOs + gl.enableVertexAttribArray(location); + + gl.vertexAttribPointer(location, + attribute.size, + attribute.type || gl.FLOAT, + attribute.normalized, + attribute.stride, + attribute.start); + + if (attribute.instance) + { + // TODO calculate instance count based of this... + if (this.hasInstance) + { + gl.vertexAttribDivisor(location, 1); + } + else + { + throw new Error('geometry error, GPU Instancing is not supported on this device'); + } + } + } + } + }; + + /** + * Draw the geometry + * + * @param {Number} type - the type primitive to render + * @param {Number} [size] - the number of elements to be rendered + * @param {Number} [start] - Starting index + * @param {Number} [instanceCount] - the number of instances of the set of elements to execute + */ + GeometrySystem.prototype.draw = function draw (type, size, start, instanceCount) + { + var ref = this; + var gl = ref.gl; + var geometry = this._activeGeometry; + + // TODO.. this should not change so maybe cache the function? + + if (geometry.indexBuffer) + { + var byteSize = geometry.indexBuffer.data.BYTES_PER_ELEMENT; + var glType = byteSize === 2 ? gl.UNSIGNED_SHORT : gl.UNSIGNED_INT; + + if (byteSize === 2 || (byteSize === 4 && this.canUseUInt32ElementIndex)) + { + if (geometry.instanced) + { + /* eslint-disable max-len */ + gl.drawElementsInstanced(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize, instanceCount || 1); + /* eslint-enable max-len */ + } + else + { + /* eslint-disable max-len */ + gl.drawElements(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize); + /* eslint-enable max-len */ + } + } + else + { + console.warn('unsupported index buffer type: uint32'); + } + } + else if (geometry.instanced) + { + // TODO need a better way to calculate size.. + gl.drawArraysInstanced(type, start, size || geometry.getSize(), instanceCount || 1); + } + else + { + gl.drawArrays(type, start, size || geometry.getSize()); + } + + return this; + }; + + /** + * Unbind/reset everything + * @protected + */ + GeometrySystem.prototype.unbind = function unbind () + { + this.gl.bindVertexArray(null); + this._activeVao = null; + this._activeGeometry = null; + }; + + return GeometrySystem; +}(System)); + +/** + * @method compileProgram + * @private + * @memberof PIXI.glCore.shader + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @param fragmentSrc {string|string[]} The fragment shader source as an array of strings. + * @param attributeLocations {Object} An attribute location map that lets you manually set the attribute locations + * @return {WebGLProgram} the shader program + */ +function compileProgram(gl, vertexSrc, fragmentSrc, attributeLocations) +{ + var glVertShader = compileShader(gl, gl.VERTEX_SHADER, vertexSrc); + var glFragShader = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc); + + var program = gl.createProgram(); + + gl.attachShader(program, glVertShader); + gl.attachShader(program, glFragShader); + + // optionally, set the attributes manually for the program rather than letting WebGL decide.. + if (attributeLocations) + { + for (var i in attributeLocations) + { + gl.bindAttribLocation(program, attributeLocations[i], i); + } + } + + gl.linkProgram(program); + + // if linking fails, then log and cleanup + if (!gl.getProgramParameter(program, gl.LINK_STATUS)) + { + console.error('Pixi.js Error: Could not initialize shader.'); + console.error('gl.VALIDATE_STATUS', gl.getProgramParameter(program, gl.VALIDATE_STATUS)); + console.error('gl.getError()', gl.getError()); + + // if there is a program info log, log it + if (gl.getProgramInfoLog(program) !== '') + { + console.warn('Pixi.js Warning: gl.getProgramInfoLog()', gl.getProgramInfoLog(program)); + } + + gl.deleteProgram(program); + program = null; + } + + // clean up some shaders + gl.deleteShader(glVertShader); + gl.deleteShader(glFragShader); + + return program; +} + +/** + * @private + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param type {Number} the type, can be either VERTEX_SHADER or FRAGMENT_SHADER + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @return {WebGLShader} the shader + */ +function compileShader(gl, type, src) +{ + var shader = gl.createShader(type); + + gl.shaderSource(shader, src); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + console.warn(src); + console.error(gl.getShaderInfoLog(shader)); + + return null; + } + + return shader; +} + +/** + * @method defaultValue + * @memberof PIXI.glCore.shader + * @param type {String} Type of value + * @param size {Number} + * @private + */ +function defaultValue(type, size) +{ + switch (type) + { + case 'float': + return 0; + + case 'vec2': + return new Float32Array(2 * size); + + case 'vec3': + return new Float32Array(3 * size); + + case 'vec4': + return new Float32Array(4 * size); + + case 'int': + case 'sampler2D': + case 'sampler2DArray': + return 0; + + case 'ivec2': + return new Int32Array(2 * size); + + case 'ivec3': + return new Int32Array(3 * size); + + case 'ivec4': + return new Int32Array(4 * size); + + case 'bool': + return false; + + case 'bvec2': + + return booleanArray(2 * size); + + case 'bvec3': + return booleanArray(3 * size); + + case 'bvec4': + return booleanArray(4 * size); + + case 'mat2': + return new Float32Array([1, 0, + 0, 1]); + + case 'mat3': + return new Float32Array([1, 0, 0, + 0, 1, 0, + 0, 0, 1]); + + case 'mat4': + return new Float32Array([1, 0, 0, 0, + 0, 1, 0, 0, + 0, 0, 1, 0, + 0, 0, 0, 1]); + } + + return null; +} + +function booleanArray(size) +{ + var array = new Array(size); + + for (var i = 0; i < array.length; i++) + { + array[i] = false; + } + + return array; +} + +var unknownContext = {}; +var context = unknownContext; + +/** + * returns a little WebGL context to use for program inspection. + * + * @static + * @private + * @returns {webGL-context} a gl context to test with + */ +function getTestContext() +{ + if (context === unknownContext || context.isContextLost()) + { + var canvas = document.createElement('canvas'); + + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', {}); + } + + if (!gl) + { + gl = canvas.getContext('webgl', {}) + || canvas.getContext('experimental-webgl', {}); + + if (!gl) + { + // fail, not able to get a context + gl = null; + } + else + { + // for shader testing.. + gl.getExtension('WEBGL_draw_buffers'); + } + } + + context = gl; + } + + return context; +} + +var maxFragmentPrecision; + +function getMaxFragmentPrecision() +{ + if (!maxFragmentPrecision) + { + maxFragmentPrecision = PRECISION.MEDIUM; + var gl = getTestContext(); + + if (gl) + { + if (gl.getShaderPrecisionFormat) + { + var shaderFragment = gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT); + + maxFragmentPrecision = shaderFragment.precision ? PRECISION.HIGH : PRECISION.MEDIUM; + } + } + } + + return maxFragmentPrecision; +} + +/** + * Sets the float precision on the shader, ensuring the device supports the request precision. + * If the precision is already present, it just ensures that the device is able to handle it. + * + * @private + * @param {string} src - The shader source + * @param {string} requestedPrecision - The request float precision of the shader. Options are 'lowp', 'mediump' or 'highp'. + * @param {string} maxSupportedPrecision - The maximum precision the shader supports. + * + * @return {string} modified shader source + */ +function setPrecision(src, requestedPrecision, maxSupportedPrecision) +{ + if (src.substring(0, 9) !== 'precision') + { + // no precision supplied, so PixiJS will add the requested level. + var precision = requestedPrecision; + + // If highp is requested but not supported, downgrade precision to a level all devices support. + if (requestedPrecision === PRECISION.HIGH && maxSupportedPrecision !== PRECISION.HIGH) + { + precision = PRECISION.MEDIUM; + } + + return ("precision " + precision + " float;\n" + src); + } + else if (maxSupportedPrecision !== PRECISION.HIGH && src.substring(0, 15) === 'precision highp') + { + // precision was supplied, but at a level this device does not support, so downgrading to mediump. + return src.replace('precision highp', 'precision mediump'); + } + + return src; +} + +var GLSL_TO_SIZE = { + float: 1, + vec2: 2, + vec3: 3, + vec4: 4, + + int: 1, + ivec2: 2, + ivec3: 3, + ivec4: 4, + + bool: 1, + bvec2: 2, + bvec3: 3, + bvec4: 4, + + mat2: 4, + mat3: 9, + mat4: 16, + + sampler2D: 1, +}; + +/** + * @private + * @method mapSize + * @memberof PIXI.glCore.shader + * @param type {String} + * @return {Number} + */ +function mapSize(type) +{ + return GLSL_TO_SIZE[type]; +} + +var GL_TABLE = null; + +var GL_TO_GLSL_TYPES = { + FLOAT: 'float', + FLOAT_VEC2: 'vec2', + FLOAT_VEC3: 'vec3', + FLOAT_VEC4: 'vec4', + + INT: 'int', + INT_VEC2: 'ivec2', + INT_VEC3: 'ivec3', + INT_VEC4: 'ivec4', + + BOOL: 'bool', + BOOL_VEC2: 'bvec2', + BOOL_VEC3: 'bvec3', + BOOL_VEC4: 'bvec4', + + FLOAT_MAT2: 'mat2', + FLOAT_MAT3: 'mat3', + FLOAT_MAT4: 'mat4', + + SAMPLER_2D: 'sampler2D', + SAMPLER_CUBE: 'samplerCube', + SAMPLER_2D_ARRAY: 'sampler2DArray', +}; + +function mapType(gl, type) +{ + if (!GL_TABLE) + { + var typeNames = Object.keys(GL_TO_GLSL_TYPES); + + GL_TABLE = {}; + + for (var i = 0; i < typeNames.length; ++i) + { + var tn = typeNames[i]; + + GL_TABLE[gl[tn]] = GL_TO_GLSL_TYPES[tn]; + } + } + + return GL_TABLE[type]; +} + +// cv = CachedValue +// v = value +// ud = uniformData +// uv = uniformValue +// l = location +var GLSL_TO_SINGLE_SETTERS_CACHED = { + + float: "\n if(cv !== v)\n {\n cv.v = v;\n gl.uniform1f(location, v)\n }", + + vec2: "\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(location, v[0], v[1])\n }", + + vec3: "\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n\n gl.uniform3f(location, v[0], v[1], v[2])\n }", + + vec4: 'gl.uniform4f(location, v[0], v[1], v[2], v[3])', + + int: 'gl.uniform1i(location, v)', + ivec2: 'gl.uniform2i(location, v[0], v[1])', + ivec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + ivec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + bool: 'gl.uniform1i(location, v)', + bvec2: 'gl.uniform2i(location, v[0], v[1])', + bvec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + bvec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + mat2: 'gl.uniformMatrix2fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat4: 'gl.uniformMatrix4fv(location, false, v)', + + sampler2D: 'gl.uniform1i(location, v)', + samplerCube: 'gl.uniform1i(location, v)', + sampler2DArray: 'gl.uniform1i(location, v)', +}; + +var GLSL_TO_ARRAY_SETTERS = { + + float: "gl.uniform1fv(location, v)", + + vec2: "gl.uniform2fv(location, v)", + vec3: "gl.uniform3fv(location, v)", + vec4: 'gl.uniform4fv(location, v)', + + mat4: 'gl.uniformMatrix4fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat2: 'gl.uniformMatrix2fv(location, false, v)', + + int: 'gl.uniform1iv(location, v)', + ivec2: 'gl.uniform2iv(location, v)', + ivec3: 'gl.uniform3iv(location, v)', + ivec4: 'gl.uniform4iv(location, v)', + + bool: 'gl.uniform1iv(location, v)', + bvec2: 'gl.uniform2iv(location, v)', + bvec3: 'gl.uniform3iv(location, v)', + bvec4: 'gl.uniform4iv(location, v)', + + sampler2D: 'gl.uniform1iv(location, v)', + samplerCube: 'gl.uniform1iv(location, v)', + sampler2DArray: 'gl.uniform1iv(location, v)', +}; + +function generateUniformsSync(group, uniformData) +{ + var textureCount = 0; + var func = "var v = null;\n var cv = null\n var gl = renderer.gl"; + + for (var i in group.uniforms) + { + var data = uniformData[i]; + + if (!data) + { + if (group.uniforms[i].group) + { + func += "\n renderer.shader.syncUniformGroup(uv." + i + ");\n "; + } + + continue; + } + + // TODO && uniformData[i].value !== 0 <-- do we still need this? + if (data.type === 'float' && data.size === 1) + { + func += "\n if(uv." + i + " !== ud." + i + ".value)\n {\n ud." + i + ".value = uv." + i + "\n gl.uniform1f(ud." + i + ".location, uv." + i + ")\n }\n"; + } + /* eslint-disable max-len */ + else if ((data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray) + /* eslint-disable max-len */ + { + func += "\n renderer.texture.bind(uv." + i + ", " + textureCount + ");\n\n if(ud." + i + ".value !== " + textureCount + ")\n {\n ud." + i + ".value = " + textureCount + ";\n gl.uniform1i(ud." + i + ".location, " + textureCount + ");\n; // eslint-disable-line max-len\n }\n"; + + textureCount++; + } + else if (data.type === 'mat3' && data.size === 1) + { + if (group.uniforms[i].a !== undefined) + { + // TODO and some smart caching dirty ids here! + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ".toArray(true));\n \n"; + } + else + { + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ");\n \n"; + } + } + else if (data.type === 'vec2' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].x !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n gl.uniform2f(ud." + i + ".location, v.x, v.y);\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(ud." + i + ".location, v[0], v[1]);\n }\n \n"; + } + } + else if (data.type === 'vec4' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].width !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y || cv[2] !== v.width || cv[3] !== v.height)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n cv[2] = v.width;\n cv[3] = v.height;\n gl.uniform4f(ud." + i + ".location, v.x, v.y, v.width, v.height)\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2] || cv[3] !== v[3])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n cv[3] = v[3];\n\n gl.uniform4f(ud." + i + ".location, v[0], v[1], v[2], v[3])\n }\n \n"; + } + } + else + { + var templateType = (data.size === 1) ? GLSL_TO_SINGLE_SETTERS_CACHED : GLSL_TO_ARRAY_SETTERS; + + var template = templateType[data.type].replace('location', ("ud." + i + ".location")); + + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n " + template + ";\n"; + } + } + + return new Function('ud', 'uv', 'renderer', func); // eslint-disable-line no-new-func +} + +var fragTemplate = [ + 'precision mediump float;', + 'void main(void){', + 'float test = 0.1;', + '%forloop%', + 'gl_FragColor = vec4(0.0);', + '}' ].join('\n'); + +function checkMaxIfStatementsInShader(maxIfs, gl) +{ + if (maxIfs === 0) + { + throw new Error('Invalid value of `0` passed to `checkMaxIfStatementsInShader`'); + } + + var shader = gl.createShader(gl.FRAGMENT_SHADER); + + while (true) // eslint-disable-line no-constant-condition + { + var fragmentSrc = fragTemplate.replace(/%forloop%/gi, generateIfTestSrc(maxIfs)); + + gl.shaderSource(shader, fragmentSrc); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + maxIfs = (maxIfs / 2) | 0; + } + else + { + // valid! + break; + } + } + + return maxIfs; +} + +function generateIfTestSrc(maxIfs) +{ + var src = ''; + + for (var i = 0; i < maxIfs; ++i) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxIfs - 1) + { + src += "if(test == " + i + ".0){}"; + } + } + + return src; +} + +// Cache the result to prevent running this over and over +var unsafeEval; + +/** + * Not all platforms allow to generate function code (e.g., `new Function`). + * this provides the platform-level detection. + * + * @private + * @returns {boolean} + */ +function unsafeEvalSupported() +{ + if (typeof unsafeEval === 'boolean') + { + return unsafeEval; + } + + try + { + /* eslint-disable no-new-func */ + var func = new Function('param1', 'param2', 'param3', 'return param1[param2] === param3;'); + /* eslint-enable no-new-func */ + + unsafeEval = func({ a: 'b' }, 'a', 'b') === true; + } + catch (e) + { + unsafeEval = false; + } + + return unsafeEval; +} + +var defaultFragment = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor *= texture2D(uSampler, vTextureCoord);\n}"; + +var defaultVertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n vTextureCoord = aTextureCoord;\n}\n"; + +// import * as from '../systems/shader/shader'; + +var UID$3 = 0; + +var nameCache = {}; + +/** + * Helper class to create a shader program. + * + * @class + * @memberof PIXI + */ +var Program = function Program(vertexSrc, fragmentSrc, name) +{ + if ( name === void 0 ) name = 'pixi-shader'; + + this.id = UID$3++; + + /** + * The vertex shader. + * + * @member {string} + */ + this.vertexSrc = vertexSrc || Program.defaultVertexSrc; + + /** + * The fragment shader. + * + * @member {string} + */ + this.fragmentSrc = fragmentSrc || Program.defaultFragmentSrc; + + this.vertexSrc = this.vertexSrc.trim(); + this.fragmentSrc = this.fragmentSrc.trim(); + + if (this.vertexSrc.substring(0, 8) !== '#version') + { + name = name.replace(/\s+/g, '-'); + + if (nameCache[name]) + { + nameCache[name]++; + name += "-" + (nameCache[name]); + } + else + { + nameCache[name] = 1; + } + + this.vertexSrc = "#define SHADER_NAME " + name + "\n" + (this.vertexSrc); + this.fragmentSrc = "#define SHADER_NAME " + name + "\n" + (this.fragmentSrc); + + this.vertexSrc = setPrecision(this.vertexSrc, settings.PRECISION_VERTEX, PRECISION.HIGH); + this.fragmentSrc = setPrecision(this.fragmentSrc, settings.PRECISION_FRAGMENT, getMaxFragmentPrecision()); + } + + // currently this does not extract structs only default types + this.extractData(this.vertexSrc, this.fragmentSrc); + + // this is where we store shader references.. + this.glPrograms = {}; + + this.syncUniforms = null; +}; + +var staticAccessors$3 = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + +/** + * Extracts the data for a buy creating a small test program + * or reading the src directly. + * @protected + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + */ +Program.prototype.extractData = function extractData (vertexSrc, fragmentSrc) +{ + var gl = getTestContext(); + + if (gl) + { + var program = compileProgram(gl, vertexSrc, fragmentSrc); + + this.attributeData = this.getAttributeData(program, gl); + this.uniformData = this.getUniformData(program, gl); + + gl.deleteProgram(program); + } + else + { + this.uniformData = {}; + this.attributeData = {}; + } +}; + +/** + * returns the attribute data from the program + * @private + * + * @param {WebGLProgram} [program] - the WebGL program + * @param {WebGLRenderingContext} [gl] - the WebGL context + * + * @returns {object} the attribute data for this program + */ +Program.prototype.getAttributeData = function getAttributeData (program, gl) +{ + var attributes = {}; + var attributesArray = []; + + var totalAttributes = gl.getProgramParameter(program, gl.ACTIVE_ATTRIBUTES); + + for (var i = 0; i < totalAttributes; i++) + { + var attribData = gl.getActiveAttrib(program, i); + var type = mapType(gl, attribData.type); + + /*eslint-disable */ + var data = { + type: type, + name: attribData.name, + size: mapSize(type), + location: 0, + }; + /* eslint-enable */ + + attributes[attribData.name] = data; + attributesArray.push(data); + } + + attributesArray.sort(function (a, b) { return (a.name > b.name) ? 1 : -1; }); // eslint-disable-line no-confusing-arrow + + for (var i$1 = 0; i$1 < attributesArray.length; i$1++) + { + attributesArray[i$1].location = i$1; + } + + return attributes; +}; + +/** + * returns the uniform data from the program + * @private + * + * @param {webGL-program} [program] - the webgl program + * @param {context} [gl] - the WebGL context + * + * @returns {object} the uniform data for this program + */ +Program.prototype.getUniformData = function getUniformData (program, gl) +{ + var uniforms = {}; + + var totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS); + + // TODO expose this as a prop? + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + + for (var i = 0; i < totalUniforms; i++) + { + var uniformData = gl.getActiveUniform(program, i); + var name = uniformData.name.replace(/\[.*?\]/, ''); + + var isArray = uniformData.name.match(/\[.*?\]/, ''); + var type = mapType(gl, uniformData.type); + + /*eslint-disable */ + uniforms[name] = { + type: type, + size: uniformData.size, + isArray:isArray, + value: defaultValue(type, uniformData.size), + }; + /* eslint-enable */ + } + + return uniforms; +}; + +/** + * The default vertex shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultVertexSrc.get = function () +{ + return defaultVertex; +}; + +/** + * The default fragment shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultFragmentSrc.get = function () +{ + return defaultFragment; +}; + +/** + * A short hand function to create a program based of a vertex and fragment shader + * this method will also check to see if there is a cached program. + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Program} an shiny new Pixi shader! + */ +Program.from = function from (vertexSrc, fragmentSrc, name) +{ + var key = vertexSrc + fragmentSrc; + + var program = ProgramCache[key]; + + if (!program) + { + ProgramCache[key] = program = new Program(vertexSrc, fragmentSrc, name); + } + + return program; +}; + +Object.defineProperties( Program, staticAccessors$3 ); + +/** + * A helper class for shaders + * + * @class + * @memberof PIXI + */ +var Shader = function Shader(program, uniforms) +{ + /** + * Program that the shader uses + * + * @member {PIXI.Program} + */ + this.program = program; + + // lets see whats been passed in + // uniforms should be converted to a uniform group + if (uniforms) + { + if (uniforms instanceof UniformGroup) + { + this.uniformGroup = uniforms; + } + else + { + this.uniformGroup = new UniformGroup(uniforms); + } + } + else + { + this.uniformGroup = new UniformGroup({}); + } + + // time to build some getters and setters! + // I guess down the line this could sort of generate an instruction list rather than use dirty ids? + // does the trick for now though! + for (var i in program.uniformData) + { + if (this.uniformGroup.uniforms[i] instanceof Array) + { + this.uniformGroup.uniforms[i] = new Float32Array(this.uniformGroup.uniforms[i]); + } + } +}; + +var prototypeAccessors$2$1 = { uniforms: { configurable: true } }; + +// TODO move to shader system.. +Shader.prototype.checkUniformExists = function checkUniformExists (name, group) +{ + if (group.uniforms[name]) + { + return true; + } + + for (var i in group.uniforms) + { + var uniform = group.uniforms[i]; + + if (uniform.group) + { + if (this.checkUniformExists(name, uniform)) + { + return true; + } + } + } + + return false; +}; + +Shader.prototype.destroy = function destroy () +{ + // usage count on programs? + // remove if not used! + this.uniformGroup = null; +}; + +/** + * Shader uniform values, shortcut for `uniformGroup.uniforms` + * @readonly + * @member {object} + */ +prototypeAccessors$2$1.uniforms.get = function () +{ + return this.uniformGroup.uniforms; +}; + +/** + * A short hand function to create a shader based of a vertex and fragment shader + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Shader} an shiny new Pixi shader! + */ +Shader.from = function from (vertexSrc, fragmentSrc, uniforms) +{ + var program = Program.from(vertexSrc, fragmentSrc); + + return new Shader(program, uniforms); +}; + +Object.defineProperties( Shader.prototype, prototypeAccessors$2$1 ); + +/* eslint-disable max-len */ + +var BLEND = 0; +var OFFSET = 1; +var CULLING = 2; +var DEPTH_TEST = 3; +var WINDING = 4; + +/** + * This is a WebGL state, and is is passed The WebGL StateManager. + * + * Each mesh rendered may require WebGL to be in a different state. + * For example you may want different blend mode or to enable polygon offsets + * + * @class + * @memberof PIXI + */ +var State = function State() +{ + this.data = 0; + + this.blendMode = BLEND_MODES.NORMAL; + this.polygonOffset = 0; + + this.blend = true; + // this.depthTest = true; +}; + +var prototypeAccessors$3$1 = { blend: { configurable: true },offsets: { configurable: true },culling: { configurable: true },depthTest: { configurable: true },clockwiseFrontFace: { configurable: true },blendMode: { configurable: true },polygonOffset: { configurable: true } }; + +/** + * Activates blending of the computed fragment color values + * + * @member {boolean} + */ +prototypeAccessors$3$1.blend.get = function () +{ + return !!(this.data & (1 << BLEND)); +}; + +prototypeAccessors$3$1.blend.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << BLEND)) !== value) + { + this.data ^= (1 << BLEND); + } +}; + +/** + * Activates adding an offset to depth values of polygon's fragments + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.offsets.get = function () +{ + return !!(this.data & (1 << OFFSET)); +}; + +prototypeAccessors$3$1.offsets.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << OFFSET)) !== value) + { + this.data ^= (1 << OFFSET); + } +}; + +/** + * Activates culling of polygons. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.culling.get = function () +{ + return !!(this.data & (1 << CULLING)); +}; + +prototypeAccessors$3$1.culling.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << CULLING)) !== value) + { + this.data ^= (1 << CULLING); + } +}; + +/** + * Activates depth comparisons and updates to the depth buffer. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.depthTest.get = function () +{ + return !!(this.data & (1 << DEPTH_TEST)); +}; + +prototypeAccessors$3$1.depthTest.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << DEPTH_TEST)) !== value) + { + this.data ^= (1 << DEPTH_TEST); + } +}; + +/** + * Specifies whether or not front or back-facing polygons can be culled. + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.clockwiseFrontFace.get = function () +{ + return !!(this.data & (1 << WINDING)); +}; + +prototypeAccessors$3$1.clockwiseFrontFace.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << WINDING)) !== value) + { + this.data ^= (1 << WINDING); + } +}; + +/** + * The blend mode to be applied when this state is set. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * Setting this mode to anything other than NO_BLEND will automatically switch blending on. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ +prototypeAccessors$3$1.blendMode.get = function () +{ + return this._blendMode; +}; + +prototypeAccessors$3$1.blendMode.set = function (value) // eslint-disable-line require-jsdoc +{ + this.blend = (value !== BLEND_MODES.NONE); + this._blendMode = value; +}; + +/** + * The polygon offset. Setting this property to anything other than 0 will automatically enable polygon offset fill. + * + * @member {number} + * @default 0 + */ +prototypeAccessors$3$1.polygonOffset.get = function () +{ + return this._polygonOffset; +}; + +prototypeAccessors$3$1.polygonOffset.set = function (value) // eslint-disable-line require-jsdoc +{ + this.offsets = !!value; + this._polygonOffset = value; +}; + +State.for2d = function for2d () +{ + var state = new State(); + + state.depthTest = false; + state.blend = true; + + return state; +}; + +Object.defineProperties( State.prototype, prototypeAccessors$3$1 ); + +var defaultVertex$1 = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +var defaultFragment$1 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor = texture2D(uSampler, vTextureCoord);\n}\n"; + +/** + * Filter is a special type of WebGL shader that is applied to the screen. + * + * {@link http://pixijs.io/examples/#/filters/blur-filter.js Example} of the + * {@link PIXI.filters.BlurFilter BlurFilter}. + * + * ### Usage + * Filters can be applied to any DisplayObject or Container. + * PixiJS' `FilterSystem` renders the container into temporary Framebuffer, + * then filter renders it to the screen. + * Multiple filters can be added to the `filters` array property and stacked on each other. + * + * ``` + * const filter = new PIXI.Filter(myShaderVert, myShaderFrag, { myUniform: 0.5 }); + * const container = new PIXI.Container(); + * container.filters = [filter]; + * ``` + * + * ### Previous Version Differences + * + * In PixiJS **v3**, a filter was always applied to _whole screen_. + * + * In PixiJS **v4**, a filter can be applied _only part of the screen_. + * Developers had to create a set of uniforms to deal with coordinates. + * + * In PixiJS **v5** combines _both approaches_. + * Developers can use normal coordinates of v3 and then allow filter to use partial Framebuffers, + * bringing those extra uniforms into account. + * + * Also be aware that we have changed default vertex shader, please consult + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * ### Built-in Uniforms + * + * PixiJS viewport uses screen (CSS) coordinates, `(0, 0, renderer.screen.width, renderer.screen.height)`, + * and `projectionMatrix` uniform maps it to the gl viewport. + * + * **uSampler** + * + * The most important uniform is the input texture that container was rendered into. + * _Important note: as with all Framebuffers in PixiJS, both input and output are + * premultiplied by alpha._ + * + * By default, input normalized coordinates are passed to fragment shader with `vTextureCoord`. + * Use it to sample the input. + * + * ``` + * const fragment = ` + * varying vec2 vTextureCoord; + * uniform sampler2D uSampler; + * void main(void) + * { + * gl_FragColor = texture2D(uSampler, vTextureCoord); + * } + * `; + * + * const myFilter = new PIXI.Filter(null, fragment); + * ``` + * + * This filter is just one uniform less than {@link PIXI.filters.AlphaFilter AlphaFilter}. + * + * **outputFrame** + * + * The `outputFrame` holds the rectangle where filter is applied in screen (CSS) coordinates. + * It's the same as `renderer.screen` for a fullscreen filter. + * Only a part of `outputFrame.zw` size of temporary Framebuffer is used, + * `(0, 0, outputFrame.width, outputFrame.height)`, + * + * Filters uses this quad to normalized (0-1) space, its passed into `aVertexPosition` attribute. + * To calculate vertex position in screen space using normalized (0-1) space: + * + * ``` + * vec4 filterVertexPosition( void ) + * { + * vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy; + * return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0); + * } + * ``` + * + * **inputSize** + * + * Temporary framebuffer is different, it can be either the size of screen, either power-of-two. + * The `inputSize.xy` are size of temporary framebuffer that holds input. + * The `inputSize.zw` is inverted, it's a shortcut to evade division inside the shader. + * + * Set `inputSize.xy = outputFrame.zw` for a fullscreen filter. + * + * To calculate input normalized coordinate, you have to map it to filter normalized space. + * Multiply by `outputFrame.zw` to get input coordinate. + * Divide by `inputSize.xy` to get input normalized coordinate. + * + * ``` + * vec2 filterTextureCoord( void ) + * { + * return aVertexPosition * (outputFrame.zw * inputSize.zw); // same as /inputSize.xy + * } + * ``` + * **resolution** + * + * The `resolution` is the ratio of screen (CSS) pixels to real pixels. + * + * **inputPixel** + * + * `inputPixel.xy` is the size of framebuffer in real pixels, same as `inputSize.xy * resolution` + * `inputPixel.zw` is inverted `inputPixel.xy`. + * + * It's handy for filters that use neighbour pixels, like {@link PIXI.filters.FXAAFilter FXAAFilter}. + * + * **inputClamp** + * + * If you try to get info from outside of used part of Framebuffer - you'll get undefined behaviour. + * For displacements, coordinates has to be clamped. + * + * The `inputClamp.xy` is left-top pixel center, you may ignore it, because we use left-top part of Framebuffer + * `inputClamp.zw` is bottom-right pixel center. + * + * ``` + * vec4 color = texture2D(uSampler, clamp(modifigedTextureCoord, inputClamp.xy, inputClamp.zw)) + * ``` + * OR + * ``` + * vec4 color = texture2D(uSampler, min(modifigedTextureCoord, inputClamp.zw)) + * ``` + * + * ### Additional Information + * + * Complete documentation on Filter usage is located in the + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * Since PixiJS only had a handful of built-in filters, additional filters can be downloaded + * {@link https://github.com/pixijs/pixi-filters here} from the PixiJS Filters repository. + * + * @class + * @memberof PIXI + * @extends PIXI.Shader + */ +var Filter = /*@__PURE__*/(function (Shader) { + function Filter(vertexSrc, fragmentSrc, uniforms) + { + var program = Program.from(vertexSrc || Filter.defaultVertexSrc, + fragmentSrc || Filter.defaultFragmentSrc); + + Shader.call(this, program, uniforms); + + /** + * The padding of the filter. Some filters require extra space to breath such as a blur. + * Increasing this will add extra width and height to the bounds of the object that the + * filter is applied to. + * + * @member {number} + */ + this.padding = 0; + + /** + * The resolution of the filter. Setting this to be lower will lower the quality but + * increase the performance of the filter. + * + * @member {number} + */ + this.resolution = settings.FILTER_RESOLUTION; + + /** + * If enabled is true the filter is applied, if false it will not. + * + * @member {boolean} + */ + this.enabled = true; + + /** + * If enabled, PixiJS will fit the filter area into boundaries for better performance. + * Switch it off if it does not work for specific shader. + * + * @member {boolean} + */ + this.autoFit = true; + + /** + * Legacy filters use position and uvs from attributes + * @member {boolean} + * @readonly + */ + this.legacy = !!this.program.attributeData.aTextureCoord; + + /** + * The WebGL state the filter requires to render + * @member {PIXI.State} + */ + this.state = new State(); + } + + if ( Shader ) Filter.__proto__ = Shader; + Filter.prototype = Object.create( Shader && Shader.prototype ); + Filter.prototype.constructor = Filter; + + var prototypeAccessors = { blendMode: { configurable: true } }; + var staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + * @param {object} [currentState] - It's current state of filter. + * There are some useful properties in the currentState : + * target, filters, sourceFrame, destinationFrame, renderTarget, resolution + */ + Filter.prototype.apply = function apply (filterManager, input, output, clear, currentState) + { + // do as you please! + + filterManager.applyFilter(this, input, output, clear, currentState); + + // or just do a regular render.. + }; + + /** + * Sets the blendmode of the filter + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + */ + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + prototypeAccessors.blendMode.set = function (value) // eslint-disable-line require-jsdoc + { + this.state.blendMode = value; + }; + + /** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultVertexSrc.get = function () + { + return defaultVertex$1; + }; + + /** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultFragmentSrc.get = function () + { + return defaultFragment$1; + }; + + Object.defineProperties( Filter.prototype, prototypeAccessors ); + Object.defineProperties( Filter, staticAccessors ); + + return Filter; +}(Shader)); + +/** + * Used for caching shader IDs + * + * @static + * @type {object} + * @protected + */ +Filter.SOURCE_KEY_MAP = {}; + +var vertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 otherMatrix;\n\nvarying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\n}\n"; + +var fragment = "varying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform sampler2D mask;\nuniform float alpha;\nuniform float npmAlpha;\nuniform vec4 maskClamp;\n\nvoid main(void)\n{\n float clip = step(3.5,\n step(maskClamp.x, vMaskCoord.x) +\n step(maskClamp.y, vMaskCoord.y) +\n step(vMaskCoord.x, maskClamp.z) +\n step(vMaskCoord.y, maskClamp.w));\n\n vec4 original = texture2D(uSampler, vTextureCoord);\n vec4 masky = texture2D(mask, vMaskCoord);\n float alphaMul = 1.0 - npmAlpha * (1.0 - masky.a);\n\n original *= (alphaMul * masky.r * alpha * clip);\n\n gl_FragColor = original;\n}\n"; + +var tempMat = new Matrix(); + +/** + * Class controls uv mapping from Texture normal space to BaseTexture normal space. + * + * Takes `trim` and `rotate` into account. May contain clamp settings for Meshes and TilingSprite. + * + * Can be used in Texture `uvMatrix` field, or separately, you can use different clamp settings on the same texture. + * If you want to add support for texture region of certain feature or filter, that's what you're looking for. + * + * Takes track of Texture changes through `_lastTextureID` private field. + * Use `update()` method call to track it from outside. + * + * @see PIXI.Texture + * @see PIXI.Mesh + * @see PIXI.TilingSprite + * @class + * @memberof PIXI + */ +var TextureMatrix = function TextureMatrix(texture, clampMargin) +{ + this._texture = texture; + + /** + * Matrix operation that converts texture region coords to texture coords + * @member {PIXI.Matrix} + * @readonly + */ + this.mapCoord = new Matrix(); + + /** + * Clamp region for normalized coords, left-top pixel center in xy , bottom-right in zw. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampFrame = new Float32Array(4); + + /** + * Normalized clamp offset. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampOffset = new Float32Array(2); + + /** + * Tracks Texture frame changes + * @member {number} + * @protected + */ + this._updateID = -1; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to 1.5 if you texture has repeated right and bottom lines, that leads to smoother borders + * + * @default 0 + * @member {number} + */ + this.clampOffset = 0; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas + * + * @default 0.5 + * @member {number} + */ + this.clampMargin = (typeof clampMargin === 'undefined') ? 0.5 : clampMargin; + + /** + * If texture size is the same as baseTexture + * @member {boolean} + * @default false + * @readonly + */ + this.isSimple = false; +}; + +var prototypeAccessors$4$1 = { texture: { configurable: true } }; + +/** + * texture property + * @member {PIXI.Texture} + */ +prototypeAccessors$4$1.texture.get = function () +{ + return this._texture; +}; + +prototypeAccessors$4$1.texture.set = function (value) // eslint-disable-line require-jsdoc +{ + this._texture = value; + this._updateID = -1; +}; + +/** + * Multiplies uvs array to transform + * @param {Float32Array} uvs mesh uvs + * @param {Float32Array} [out=uvs] output + * @returns {Float32Array} output + */ +TextureMatrix.prototype.multiplyUvs = function multiplyUvs (uvs, out) +{ + if (out === undefined) + { + out = uvs; + } + + var mat = this.mapCoord; + + for (var i = 0; i < uvs.length; i += 2) + { + var x = uvs[i]; + var y = uvs[i + 1]; + + out[i] = (x * mat.a) + (y * mat.c) + mat.tx; + out[i + 1] = (x * mat.b) + (y * mat.d) + mat.ty; + } + + return out; +}; + +/** + * updates matrices if texture was changed + * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case + * @returns {boolean} whether or not it was updated + */ +TextureMatrix.prototype.update = function update (forceUpdate) +{ + var tex = this._texture; + + if (!tex || !tex.valid) + { + return false; + } + + if (!forceUpdate + && this._updateID === tex._updateID) + { + return false; + } + + this._updateID = tex._updateID; + + var uvs = tex._uvs; + + this.mapCoord.set(uvs.x1 - uvs.x0, uvs.y1 - uvs.y0, uvs.x3 - uvs.x0, uvs.y3 - uvs.y0, uvs.x0, uvs.y0); + + var orig = tex.orig; + var trim = tex.trim; + + if (trim) + { + tempMat.set(orig.width / trim.width, 0, 0, orig.height / trim.height, + -trim.x / trim.width, -trim.y / trim.height); + this.mapCoord.append(tempMat); + } + + var texBase = tex.baseTexture; + var frame = this.uClampFrame; + var margin = this.clampMargin / texBase.resolution; + var offset = this.clampOffset; + + frame[0] = (tex._frame.x + margin + offset) / texBase.width; + frame[1] = (tex._frame.y + margin + offset) / texBase.height; + frame[2] = (tex._frame.x + tex._frame.width - margin + offset) / texBase.width; + frame[3] = (tex._frame.y + tex._frame.height - margin + offset) / texBase.height; + this.uClampOffset[0] = offset / texBase.realWidth; + this.uClampOffset[1] = offset / texBase.realHeight; + + this.isSimple = tex._frame.width === texBase.width + && tex._frame.height === texBase.height + && tex.rotate === 0; + + return true; +}; + +Object.defineProperties( TextureMatrix.prototype, prototypeAccessors$4$1 ); + +/** + * This handles a Sprite acting as a mask, as opposed to a Graphic. + * + * WebGL only. + * + * @class + * @extends PIXI.Filter + * @memberof PIXI + */ +var SpriteMaskFilter = /*@__PURE__*/(function (Filter) { + function SpriteMaskFilter(sprite) + { + var maskMatrix = new Matrix(); + + Filter.call(this, vertex, fragment); + + sprite.renderable = false; + + /** + * Sprite mask + * @member {PIXI.Sprite} + */ + this.maskSprite = sprite; + + /** + * Mask matrix + * @member {PIXI.Matrix} + */ + this.maskMatrix = maskMatrix; + } + + if ( Filter ) SpriteMaskFilter.__proto__ = Filter; + SpriteMaskFilter.prototype = Object.create( Filter && Filter.prototype ); + SpriteMaskFilter.prototype.constructor = SpriteMaskFilter; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it. + */ + SpriteMaskFilter.prototype.apply = function apply (filterManager, input, output, clear) + { + var maskSprite = this.maskSprite; + var tex = this.maskSprite.texture; + + if (!tex.valid) + { + return; + } + if (!tex.transform) + { + // margin = 0.0, let it bleed a bit, shader code becomes easier + // assuming that atlas textures were made with 1-pixel padding + tex.transform = new TextureMatrix(tex, 0.0); + } + tex.transform.update(); + + this.uniforms.npmAlpha = tex.baseTexture.premultiplyAlpha ? 0.0 : 1.0; + this.uniforms.mask = tex; + // get _normalized sprite texture coords_ and convert them to _normalized atlas texture coords_ with `prepend` + this.uniforms.otherMatrix = filterManager.calculateSpriteMatrix(this.maskMatrix, maskSprite) + .prepend(tex.transform.mapCoord); + this.uniforms.alpha = maskSprite.worldAlpha; + this.uniforms.maskClamp = tex.transform.uClampFrame; + + filterManager.applyFilter(this, input, output, clear); + }; + + return SpriteMaskFilter; +}(Filter)); + +/** + * System plugin to the renderer to manage masks. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var MaskSystem = /*@__PURE__*/(function (System) { + function MaskSystem(renderer) + { + System.call(this, renderer); + + // TODO - we don't need both! + /** + * `true` if current pushed masked is scissor + * @member {boolean} + * @readonly + */ + this.scissor = false; + + /** + * Mask data + * @member {PIXI.Graphics} + * @readonly + */ + this.scissorData = null; + + /** + * Target to mask + * @member {PIXI.DisplayObject} + * @readonly + */ + this.scissorRenderTarget = null; + + /** + * Enable scissor + * @member {boolean} + * @readonly + */ + this.enableScissor = false; + + /** + * Pool of used sprite mask filters + * @member {PIXI.SpriteMaskFilter[]} + * @readonly + */ + this.alphaMaskPool = []; + + /** + * Current index of alpha mask pool + * @member {number} + * @default 0 + * @readonly + */ + this.alphaMaskIndex = 0; + } + + if ( System ) MaskSystem.__proto__ = System; + MaskSystem.prototype = Object.create( System && System.prototype ); + MaskSystem.prototype.constructor = MaskSystem; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.push = function push (target, maskData) + { + // TODO the root check means scissor rect will not + // be used on render textures more info here: + // https://github.com/pixijs/pixi.js/pull/3545 + + if (maskData.isSprite) + { + this.pushSpriteMask(target, maskData); + } + else if (this.enableScissor + && !this.scissor + && this.renderer._activeRenderTarget.root + && !this.renderer.stencil.stencilMaskStack.length + && maskData.isFastRect()) + { + var matrix = maskData.worldTransform; + + var rot = Math.atan2(matrix.b, matrix.a); + + // use the nearest degree! + rot = Math.round(rot * (180 / Math.PI)); + + if (rot % 90) + { + this.pushStencilMask(maskData); + } + else + { + this.pushScissorMask(target, maskData); + } + } + else + { + this.pushStencilMask(maskData); + } + }; + + /** + * Removes the last mask from the mask stack and doesn't return it. + * + * @param {PIXI.DisplayObject} target - Display Object to pop the mask from + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pop = function pop (target, maskData) + { + if (maskData.isSprite) + { + this.popSpriteMask(target, maskData); + } + else if (this.enableScissor && !this.renderer.stencil.stencilMaskStack.length) + { + this.popScissorMask(target, maskData); + } + else + { + this.popStencilMask(target, maskData); + } + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.RenderTexture} target - Display Object to push the sprite mask to + * @param {PIXI.Sprite} maskData - Sprite to be used as the mask + */ + MaskSystem.prototype.pushSpriteMask = function pushSpriteMask (target, maskData) + { + var alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex]; + + if (!alphaMaskFilter) + { + alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex] = [new SpriteMaskFilter(maskData)]; + } + + alphaMaskFilter[0].resolution = this.renderer.resolution; + alphaMaskFilter[0].maskSprite = maskData; + + var stashFilterArea = target.filterArea; + + target.filterArea = maskData.getBounds(true); + this.renderer.filter.push(target, alphaMaskFilter); + target.filterArea = stashFilterArea; + + this.alphaMaskIndex++; + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popSpriteMask = function popSpriteMask () + { + this.renderer.filter.pop(); + this.alphaMaskIndex--; + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushStencilMask = function pushStencilMask (maskData) + { + this.renderer.batch.flush(); + this.renderer.stencil.pushStencil(maskData); + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popStencilMask = function popStencilMask () + { + // this.renderer.currentRenderer.stop(); + this.renderer.stencil.popStencil(); + }; + + /** + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushScissorMask = function pushScissorMask (target, maskData) + { + maskData.renderable = true; + + var renderTarget = this.renderer._activeRenderTarget; + + var bounds = maskData.getBounds(); + + bounds.fit(renderTarget.size); + maskData.renderable = false; + + this.renderer.gl.enable(this.renderer.gl.SCISSOR_TEST); + + var resolution = this.renderer.resolution; + + this.renderer.gl.scissor( + bounds.x * resolution, + (renderTarget.root ? renderTarget.size.height - bounds.y - bounds.height : bounds.y) * resolution, + bounds.width * resolution, + bounds.height * resolution + ); + + this.scissorRenderTarget = renderTarget; + this.scissorData = maskData; + this.scissor = true; + }; + + /** + * Pop scissor mask + * + */ + MaskSystem.prototype.popScissorMask = function popScissorMask () + { + this.scissorRenderTarget = null; + this.scissorData = null; + this.scissor = false; + + // must be scissor! + var ref = this.renderer; + var gl = ref.gl; + + gl.disable(gl.SCISSOR_TEST); + }; + + return MaskSystem; +}(System)); + +/** + * System plugin to the renderer to manage stencils (used for masks). + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StencilSystem = /*@__PURE__*/(function (System) { + function StencilSystem(renderer) + { + System.call(this, renderer); + + /** + * The mask stack + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + } + + if ( System ) StencilSystem.__proto__ = System; + StencilSystem.prototype = Object.create( System && System.prototype ); + StencilSystem.prototype.constructor = StencilSystem; + + /** + * Changes the mask stack that is used by this System. + * + * @param {PIXI.Graphics[]} stencilMaskStack - The mask stack + */ + StencilSystem.prototype.setMaskStack = function setMaskStack (stencilMaskStack) + { + var gl = this.renderer.gl; + var curStackLen = this.stencilMaskStack.length; + + this.stencilMaskStack = stencilMaskStack; + if (stencilMaskStack.length !== curStackLen) + { + if (stencilMaskStack.length === 0) + { + gl.disable(gl.STENCIL_TEST); + } + else + { + gl.enable(gl.STENCIL_TEST); + this._useCurrent(); + } + } + }; + + /** + * Applies the Mask and adds it to the current stencil stack. @alvin + * + * @param {PIXI.Graphics} graphics - The mask + */ + StencilSystem.prototype.pushStencil = function pushStencil (graphics) + { + var gl = this.renderer.gl; + var prevMaskCount = this.stencilMaskStack.length; + + if (prevMaskCount === 0) + { + // force use stencil texture in current framebuffer + this.renderer.framebuffer.forceStencil(); + gl.enable(gl.STENCIL_TEST); + } + + this.stencilMaskStack.push(graphics); + + // Increment the reference stencil value where the new mask overlaps with the old ones. + gl.colorMask(false, false, false, false); + gl.stencilFunc(gl.EQUAL, prevMaskCount, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.INCR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + }; + + /** + * Removes the last mask from the stencil stack. @alvin + */ + StencilSystem.prototype.popStencil = function popStencil () + { + var gl = this.renderer.gl; + var graphics = this.stencilMaskStack.pop(); + + if (this.stencilMaskStack.length === 0) + { + // the stack is empty! + gl.disable(gl.STENCIL_TEST); + gl.clear(gl.STENCIL_BUFFER_BIT); + gl.clearStencil(0); + } + else + { + // Decrement the reference stencil value where the popped mask overlaps with the other ones + gl.colorMask(false, false, false, false); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.DECR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + } + }; + + /** + * Setup renderer to use the current stencil data. + * @private + */ + StencilSystem.prototype._useCurrent = function _useCurrent () + { + var gl = this.renderer.gl; + + gl.colorMask(true, true, true, true); + gl.stencilFunc(gl.EQUAL, this.stencilMaskStack.length, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.KEEP); + }; + + /** + * Fill 1s equal to the number of acitve stencil masks. + * @private + * @return {number} The bitwise mask. + */ + StencilSystem.prototype._getBitwiseMask = function _getBitwiseMask () + { + return (1 << this.stencilMaskStack.length) - 1; + }; + + /** + * Destroys the mask stack. + * + */ + StencilSystem.prototype.destroy = function destroy () + { + System.prototype.destroy.call(this, this); + + this.stencilMaskStack = null; + }; + + return StencilSystem; +}(System)); + +/** + * System plugin to the renderer to manage the projection matrix. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var ProjectionSystem = /*@__PURE__*/(function (System) { + function ProjectionSystem(renderer) + { + System.call(this, renderer); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = null; + + /** + * Default destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.defaultFrame = null; + + /** + * Project matrix + * @member {PIXI.Matrix} + * @readonly + */ + this.projectionMatrix = new Matrix(); + + /** + * A transform that will be appended to the projection matrix + * if null, nothing will be applied + * @member {PIXI.Matrix} + */ + this.transform = null; + } + + if ( System ) ProjectionSystem.__proto__ = System; + ProjectionSystem.prototype = Object.create( System && System.prototype ); + ProjectionSystem.prototype.constructor = ProjectionSystem; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.update = function update (destinationFrame, sourceFrame, resolution, root) + { + this.destinationFrame = destinationFrame || this.destinationFrame || this.defaultFrame; + this.sourceFrame = sourceFrame || this.sourceFrame || destinationFrame; + + this.calculateProjection(this.destinationFrame, this.sourceFrame, resolution, root); + + if (this.transform) + { + this.projectionMatrix.append(this.transform); + } + + var renderer = this.renderer; + + renderer.globalUniforms.uniforms.projectionMatrix = this.projectionMatrix; + renderer.globalUniforms.update(); + + // this will work for now + // but would be sweet to stick and even on the global uniforms.. + if (renderer.shader.shader) + { + renderer.shader.syncUniformGroup(renderer.shader.shader.uniforms.globals); + } + }; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.calculateProjection = function calculateProjection (destinationFrame, sourceFrame, resolution, root) + { + var pm = this.projectionMatrix; + + // I don't think we will need this line.. + // pm.identity(); + + if (!root) + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = -1 - (sourceFrame.y * pm.d); + } + else + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (-1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = 1 - (sourceFrame.y * pm.d); + } + }; + + /** + * Sets the transform of the active render target to the given matrix + * + * @param {PIXI.Matrix} matrix - The transformation matrix + */ + ProjectionSystem.prototype.setTransform = function setTransform ()// matrix) + { + // this._activeRenderTarget.transform = matrix; + }; + + return ProjectionSystem; +}(System)); + +var tempRect = new Rectangle(); + +/** + * System plugin to the renderer to manage render textures. + * + * Should be added after FramebufferSystem + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var RenderTextureSystem = /*@__PURE__*/(function (System) { + function RenderTextureSystem(renderer) + { + System.call(this, renderer); + + /** + * The clear background color as rgba + * @member {number[]} + */ + this.clearColor = renderer._backgroundColorRgba; + + // TODO move this property somewhere else! + /** + * List of masks for the StencilSystem + * @member {PIXI.Graphics[]} + * @readonly + */ + this.defaultMaskStack = []; + + // empty render texture? + /** + * Render texture + * @member {PIXI.RenderTexture} + * @readonly + */ + this.current = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = new Rectangle(); + } + + if ( System ) RenderTextureSystem.__proto__ = System; + RenderTextureSystem.prototype = Object.create( System && System.prototype ); + RenderTextureSystem.prototype.constructor = RenderTextureSystem; + + /** + * Bind the current render texture + * @param {PIXI.RenderTexture} [renderTexture] - RenderTexture to bind, by default its `null`, the screen + * @param {PIXI.Rectangle} [sourceFrame] - part of screen that is mapped to the renderTexture + * @param {PIXI.Rectangle} [destinationFrame] - part of renderTexture, by default it has the same size as sourceFrame + */ + RenderTextureSystem.prototype.bind = function bind (renderTexture, sourceFrame, destinationFrame) + { + if ( renderTexture === void 0 ) renderTexture = null; + + this.current = renderTexture; + + var renderer = this.renderer; + + var resolution; + + if (renderTexture) + { + var baseTexture = renderTexture.baseTexture; + + resolution = baseTexture.resolution; + + if (!destinationFrame) + { + tempRect.width = baseTexture.realWidth; + tempRect.height = baseTexture.realHeight; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + this.renderer.framebuffer.bind(baseTexture.framebuffer, destinationFrame); + + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, false); + this.renderer.stencil.setMaskStack(baseTexture.stencilMaskStack); + } + else + { + resolution = this.renderer.resolution; + + // TODO these validation checks happen deeper down.. + // thing they can be avoided.. + if (!destinationFrame) + { + tempRect.width = renderer.width; + tempRect.height = renderer.height; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + renderer.framebuffer.bind(null, destinationFrame); + + // TODO store this.. + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, true); + this.renderer.stencil.setMaskStack(this.defaultMaskStack); + } + + this.sourceFrame.copyFrom(sourceFrame); + + this.destinationFrame.x = destinationFrame.x / resolution; + this.destinationFrame.y = destinationFrame.y / resolution; + + this.destinationFrame.width = destinationFrame.width / resolution; + this.destinationFrame.height = destinationFrame.height / resolution; + + if (sourceFrame === destinationFrame) + { + this.sourceFrame.copyFrom(this.destinationFrame); + } + }; + + /** + * Erases the render texture and fills the drawing area with a colour + * + * @param {number[]} [clearColor] - The color as rgba, default to use the renderer backgroundColor + * @return {PIXI.Renderer} Returns itself. + */ + RenderTextureSystem.prototype.clear = function clear (clearColor) + { + if (this.current) + { + clearColor = clearColor || this.current.baseTexture.clearColor; + } + else + { + clearColor = clearColor || this.clearColor; + } + + this.renderer.framebuffer.clear(clearColor[0], clearColor[1], clearColor[2], clearColor[3]); + }; + + RenderTextureSystem.prototype.resize = function resize ()// screenWidth, screenHeight) + { + // resize the root only! + this.bind(null); + }; + + /** + * Resets renderTexture state + */ + RenderTextureSystem.prototype.reset = function reset () + { + this.bind(null); + }; + + return RenderTextureSystem; +}(System)); + +/** + * Helper class to create a WebGL Program + * + * @class + * @memberof PIXI + */ +var GLProgram = function GLProgram(program, uniformData) +{ + /** + * The shader program + * + * @member {WebGLProgram} + */ + this.program = program; + + /** + * holds the uniform data which contains uniform locations + * and current uniform values used for caching and preventing unneeded GPU commands + * @member {Object} + */ + this.uniformData = uniformData; + + /** + * uniformGroups holds the various upload functions for the shader. Each uniform group + * and program have a unique upload function generated. + * @member {Object} + */ + this.uniformGroups = {}; +}; + +/** + * Destroys this program + */ +GLProgram.prototype.destroy = function destroy () +{ + this.uniformData = null; + this.uniformGroups = null; + this.program = null; +}; + +var UID$4 = 0; + +/** + * System plugin to the renderer to manage shaders. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var ShaderSystem = /*@__PURE__*/(function (System) { + function ShaderSystem(renderer) + { + System.call(this, renderer); + + // Validation check that this environment support `new Function` + this.systemCheck(); + + /** + * The current WebGL rendering context + * + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.shader = null; + this.program = null; + + /** + * Cache to holds the generated functions. Stored against UniformObjects unique signature + * @type {Object} + * @private + */ + this.cache = {}; + + this.id = UID$4++; + } + + if ( System ) ShaderSystem.__proto__ = System; + ShaderSystem.prototype = Object.create( System && System.prototype ); + ShaderSystem.prototype.constructor = ShaderSystem; + + /** + * Overrideable function by `@pixi/unsafe-eval` to silence + * throwing an error if platform doesn't support unsafe-evals. + * + * @private + */ + ShaderSystem.prototype.systemCheck = function systemCheck () + { + if (!unsafeEvalSupported()) + { + throw new Error('Current environment does not allow unsafe-eval, ' + + 'please use @pixi/unsafe-eval module to enable support.'); + } + }; + + ShaderSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.reset(); + }; + + /** + * Changes the current shader to the one given in parameter + * + * @param {PIXI.Shader} shader - the new shader + * @param {boolean} dontSync - false if the shader should automatically sync its uniforms. + * @returns {PIXI.GLProgram} the glProgram that belongs to the shader. + */ + ShaderSystem.prototype.bind = function bind (shader, dontSync) + { + shader.uniforms.globals = this.renderer.globalUniforms; + + var program = shader.program; + var glProgram = program.glPrograms[this.renderer.CONTEXT_UID] || this.generateShader(shader); + + this.shader = shader; + + // TODO - some current Pixi plugins bypass this.. so it not safe to use yet.. + if (this.program !== program) + { + this.program = program; + this.gl.useProgram(glProgram.program); + } + + if (!dontSync) + { + this.syncUniformGroup(shader.uniformGroup); + } + + return glProgram; + }; + + /** + * Uploads the uniforms values to the currently bound shader. + * + * @param {object} uniforms - the uniforms values that be applied to the current shader + */ + ShaderSystem.prototype.setUniforms = function setUniforms (uniforms) + { + var shader = this.shader.program; + var glProgram = shader.glPrograms[this.renderer.CONTEXT_UID]; + + shader.syncUniforms(glProgram.uniformData, uniforms, this.renderer); + }; + + ShaderSystem.prototype.syncUniformGroup = function syncUniformGroup (group) + { + var glProgram = this.getglProgram(); + + if (!group.static || group.dirtyId !== glProgram.uniformGroups[group.id]) + { + glProgram.uniformGroups[group.id] = group.dirtyId; + + this.syncUniforms(group, glProgram); + } + }; + + /** + * Overrideable by the @pixi/unsafe-eval package to use static + * syncUnforms instead. + * + * @private + */ + ShaderSystem.prototype.syncUniforms = function syncUniforms (group, glProgram) + { + var syncFunc = group.syncUniforms[this.shader.program.id] || this.createSyncGroups(group); + + syncFunc(glProgram.uniformData, group.uniforms, this.renderer); + }; + + ShaderSystem.prototype.createSyncGroups = function createSyncGroups (group) + { + var id = this.getSignature(group, this.shader.program.uniformData); + + if (!this.cache[id]) + { + this.cache[id] = generateUniformsSync(group, this.shader.program.uniformData); + } + + group.syncUniforms[this.shader.program.id] = this.cache[id]; + + return group.syncUniforms[this.shader.program.id]; + }; + + /** + * Takes a uniform group and data and generates a unique signature for them. + * + * @param {PIXI.UniformGroup} group the uniform group to get signature of + * @param {Object} uniformData uniform information generated by the shader + * @returns {String} Unique signature of the uniform group + * @private + */ + ShaderSystem.prototype.getSignature = function getSignature (group, uniformData) + { + var uniforms = group.uniforms; + + var strings = []; + + for (var i in uniforms) + { + strings.push(i); + + if (uniformData[i]) + { + strings.push(uniformData[i].type); + } + } + + return strings.join('-'); + }; + + /** + * Returns the underlying GLShade rof the currently bound shader. + * This can be handy for when you to have a little more control over the setting of your uniforms. + * + * @return {PIXI.GLProgram} the glProgram for the currently bound Shader for this context + */ + ShaderSystem.prototype.getglProgram = function getglProgram () + { + if (this.shader) + { + return this.shader.program.glPrograms[this.renderer.CONTEXT_UID]; + } + + return null; + }; + + /** + * Generates a glProgram version of the Shader provided. + * + * @private + * @param {PIXI.Shader} shader the shader that the glProgram will be based on. + * @return {PIXI.GLProgram} A shiny new glProgram! + */ + ShaderSystem.prototype.generateShader = function generateShader (shader) + { + var gl = this.gl; + + var program = shader.program; + + var attribMap = {}; + + for (var i in program.attributeData) + { + attribMap[i] = program.attributeData[i].location; + } + + var shaderProgram = compileProgram(gl, program.vertexSrc, program.fragmentSrc, attribMap); + var uniformData = {}; + + for (var i$1 in program.uniformData) + { + var data = program.uniformData[i$1]; + + uniformData[i$1] = { + location: gl.getUniformLocation(shaderProgram, i$1), + value: defaultValue(data.type, data.size), + }; + } + + var glProgram = new GLProgram(shaderProgram, uniformData); + + program.glPrograms[this.renderer.CONTEXT_UID] = glProgram; + + return glProgram; + }; + + /** + * Resets ShaderSystem state, does not affect WebGL state + */ + ShaderSystem.prototype.reset = function reset () + { + this.program = null; + this.shader = null; + }; + + /** + * Destroys this System and removes all its textures + */ + ShaderSystem.prototype.destroy = function destroy () + { + // TODO implement destroy method for ShaderSystem + this.destroyed = true; + }; + + return ShaderSystem; +}(System)); + +/** + * Maps gl blend combinations to WebGL. + * + * @memberof PIXI + * @function mapWebGLBlendModesToPixi + * @private + * @param {WebGLRenderingContext} gl - The rendering context. + * @param {number[][]} [array=[]] - The array to output into. + * @return {number[][]} Mapped modes. + */ +function mapWebGLBlendModesToPixi(gl, array) +{ + if ( array === void 0 ) array = []; + + // TODO - premultiply alpha would be different. + // add a boolean for that! + array[BLEND_MODES.NORMAL] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD] = [gl.ONE, gl.ONE]; + array[BLEND_MODES.MULTIPLY] = [gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SCREEN] = [gl.ONE, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.OVERLAY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DARKEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LIGHTEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_DODGE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_BURN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HARD_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SOFT_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DIFFERENCE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.EXCLUSION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HUE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SATURATION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LUMINOSITY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.NONE] = [0, 0]; + + // not-premultiplied blend modes + array[BLEND_MODES.NORMAL_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD_NPM] = [gl.SRC_ALPHA, gl.ONE, gl.ONE, gl.ONE]; + array[BLEND_MODES.SCREEN_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + + // composite operations + array[BLEND_MODES.SRC_IN] = [gl.DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_OUT] = [gl.ONE_MINUS_DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_ATOP] = [gl.DST_ALPHA, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_OVER] = [gl.ONE_MINUS_DST_ALPHA, gl.ONE]; + array[BLEND_MODES.DST_IN] = [gl.ZERO, gl.SRC_ALPHA]; + array[BLEND_MODES.DST_OUT] = [gl.ZERO, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_ATOP] = [gl.ONE_MINUS_DST_ALPHA, gl.SRC_ALPHA]; + + // SUBTRACT from flash + array[BLEND_MODES.SUBTRACT] = [gl.ONE, gl.ONE, gl.ONE, gl.ONE, gl.FUNC_REVERSE_SUBTRACT, gl.FUNC_ADD]; + + return array; +} + +var BLEND$1 = 0; +var OFFSET$1 = 1; +var CULLING$1 = 2; +var DEPTH_TEST$1 = 3; +var WINDING$1 = 4; + +/** + * System plugin to the renderer to manage WebGL state machines. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StateSystem = /*@__PURE__*/(function (System) { + function StateSystem(renderer) + { + System.call(this, renderer); + + /** + * GL context + * @member {WebGLRenderingContext} + * @readonly + */ + this.gl = null; + + /** + * State ID + * @member {number} + * @readonly + */ + this.stateId = 0; + + /** + * Polygon offset + * @member {number} + * @readonly + */ + this.polygonOffset = 0; + + /** + * Blend mode + * @member {number} + * @default PIXI.BLEND_MODES.NONE + * @readonly + */ + this.blendMode = BLEND_MODES.NONE; + + /** + * Whether current blend equation is different + * @member {boolean} + * @protected + */ + this._blendEq = false; + + /** + * Collection of calls + * @member {function[]} + * @readonly + */ + this.map = []; + + // map functions for when we set state.. + this.map[BLEND$1] = this.setBlend; + this.map[OFFSET$1] = this.setOffset; + this.map[CULLING$1] = this.setCullFace; + this.map[DEPTH_TEST$1] = this.setDepthTest; + this.map[WINDING$1] = this.setFrontFace; + + /** + * Collection of check calls + * @member {function[]} + * @readonly + */ + this.checks = []; + + /** + * Default WebGL State + * @member {PIXI.State} + * @readonly + */ + this.defaultState = new State(); + this.defaultState.blend = true; + this.defaultState.depth = true; + } + + if ( System ) StateSystem.__proto__ = System; + StateSystem.prototype = Object.create( System && System.prototype ); + StateSystem.prototype.constructor = StateSystem; + + StateSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + + this.blendModes = mapWebGLBlendModesToPixi(gl); + + this.set(this.defaultState); + + this.reset(); + }; + + /** + * Sets the current state + * + * @param {*} state - The state to set. + */ + StateSystem.prototype.set = function set (state) + { + state = state || this.defaultState; + + // TODO maybe to an object check? ( this.state === state )? + if (this.stateId !== state.data) + { + var diff = this.stateId ^ state.data; + var i = 0; + + // order from least to most common + while (diff) + { + if (diff & 1) + { + // state change! + this.map[i].call(this, !!(state.data & (1 << i))); + } + + diff = diff >> 1; + i++; + } + + this.stateId = state.data; + } + + // based on the above settings we check for specific modes.. + // for example if blend is active we check and set the blend modes + // or of polygon offset is active we check the poly depth. + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + }; + + /** + * Sets the state, when previous state is unknown + * + * @param {*} state - The state to set + */ + StateSystem.prototype.forceState = function forceState (state) + { + state = state || this.defaultState; + for (var i = 0; i < this.map.length; i++) + { + this.map[i].call(this, !!(state.data & (1 << i))); + } + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + + this.stateId = state.data; + }; + + /** + * Enables or disabled blending. + * + * @param {boolean} value - Turn on or off webgl blending. + */ + StateSystem.prototype.setBlend = function setBlend (value) + { + this.updateCheck(StateSystem.checkBlendMode, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.BLEND); + }; + + /** + * Enables or disable polygon offset fill + * + * @param {boolean} value - Turn on or off webgl polygon offset testing. + */ + StateSystem.prototype.setOffset = function setOffset (value) + { + this.updateCheck(StateSystem.checkPolygonOffset, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.POLYGON_OFFSET_FILL); + }; + + /** + * Sets whether to enable or disable depth test. + * + * @param {boolean} value - Turn on or off webgl depth testing. + */ + StateSystem.prototype.setDepthTest = function setDepthTest (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.DEPTH_TEST); + }; + + /** + * Sets whether to enable or disable cull face. + * + * @param {boolean} value - Turn on or off webgl cull face. + */ + StateSystem.prototype.setCullFace = function setCullFace (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.CULL_FACE); + }; + + /** + * Sets the gl front face. + * + * @param {boolean} value - true is clockwise and false is counter-clockwise + */ + StateSystem.prototype.setFrontFace = function setFrontFace (value) + { + this.gl.frontFace(this.gl[value ? 'CW' : 'CCW']); + }; + + /** + * Sets the blend mode. + * + * @param {number} value - The blend mode to set to. + */ + StateSystem.prototype.setBlendMode = function setBlendMode (value) + { + if (value === this.blendMode) + { + return; + } + + this.blendMode = value; + + var mode = this.blendModes[value]; + var gl = this.gl; + + if (mode.length === 2) + { + gl.blendFunc(mode[0], mode[1]); + } + else + { + gl.blendFuncSeparate(mode[0], mode[1], mode[2], mode[3]); + } + if (mode.length === 6) + { + this._blendEq = true; + gl.blendEquationSeparate(mode[4], mode[5]); + } + else if (this._blendEq) + { + this._blendEq = false; + gl.blendEquationSeparate(gl.FUNC_ADD, gl.FUNC_ADD); + } + }; + + /** + * Sets the polygon offset. + * + * @param {number} value - the polygon offset + * @param {number} scale - the polygon offset scale + */ + StateSystem.prototype.setPolygonOffset = function setPolygonOffset (value, scale) + { + this.gl.polygonOffset(value, scale); + }; + + // used + /** + * Resets all the logic and disables the vaos + */ + StateSystem.prototype.reset = function reset () + { + this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false); + + this.forceState(0); + + this._blendEq = true; + this.blendMode = -1; + this.setBlendMode(0); + }; + + /** + * checks to see which updates should be checked based on which settings have been activated. + * For example, if blend is enabled then we should check the blend modes each time the state is changed + * or if polygon fill is activated then we need to check if the polygon offset changes. + * The idea is that we only check what we have too. + * + * @param {Function} func the checking function to add or remove + * @param {boolean} value should the check function be added or removed. + */ + StateSystem.prototype.updateCheck = function updateCheck (func, value) + { + var index = this.checks.indexOf(func); + + if (value && index === -1) + { + this.checks.push(func); + } + else if (!value && index !== -1) + { + this.checks.splice(index, 1); + } + }; + + /** + * A private little wrapper function that we call to check the blend mode. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkBlendMode = function checkBlendMode (system, state) + { + system.setBlendMode(state.blendMode); + }; + + /** + * A private little wrapper function that we call to check the polygon offset. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkPolygonOffset = function checkPolygonOffset (system, state) + { + system.setPolygonOffset(state.polygonOffset, 0); + }; + + return StateSystem; +}(System)); + +/** + * System plugin to the renderer to manage texture garbage collection on the GPU, + * ensuring that it does not get clogged up with textures that are no longer being used. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var TextureGCSystem = /*@__PURE__*/(function (System) { + function TextureGCSystem(renderer) + { + System.call(this, renderer); + + /** + * Count + * @member {number} + * @readonly + */ + this.count = 0; + + /** + * Check count + * @member {number} + * @readonly + */ + this.checkCount = 0; + + /** + * Maximum idle time, in seconds + * @member {number} + * @see PIXI.settings.GC_MAX_IDLE + */ + this.maxIdle = settings.GC_MAX_IDLE; + + /** + * Maximum number of item to check + * @member {number} + * @see PIXI.settings.GC_MAX_CHECK_COUNT + */ + this.checkCountMax = settings.GC_MAX_CHECK_COUNT; + + /** + * Current garabage collection mode + * @member {PIXI.GC_MODES} + * @see PIXI.settings.GC_MODE + */ + this.mode = settings.GC_MODE; + } + + if ( System ) TextureGCSystem.__proto__ = System; + TextureGCSystem.prototype = Object.create( System && System.prototype ); + TextureGCSystem.prototype.constructor = TextureGCSystem; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.postrender = function postrender () + { + this.count++; + + if (this.mode === GC_MODES.MANUAL) + { + return; + } + + this.checkCount++; + + if (this.checkCount > this.checkCountMax) + { + this.checkCount = 0; + + this.run(); + } + }; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.run = function run () + { + var tm = this.renderer.texture; + var managedTextures = tm.managedTextures; + var wasRemoved = false; + + for (var i = 0; i < managedTextures.length; i++) + { + var texture = managedTextures[i]; + + // only supports non generated textures at the moment! + if (!texture.framebuffer && this.count - texture.touched > this.maxIdle) + { + tm.destroyTexture(texture, true); + managedTextures[i] = null; + wasRemoved = true; + } + } + + if (wasRemoved) + { + var j = 0; + + for (var i$1 = 0; i$1 < managedTextures.length; i$1++) + { + if (managedTextures[i$1] !== null) + { + managedTextures[j++] = managedTextures[i$1]; + } + } + + managedTextures.length = j; + } + }; + + /** + * Removes all the textures within the specified displayObject and its children from the GPU + * + * @param {PIXI.DisplayObject} displayObject - the displayObject to remove the textures from. + */ + TextureGCSystem.prototype.unload = function unload (displayObject) + { + var tm = this.renderer.textureSystem; + + // only destroy non generated textures + if (displayObject._texture && displayObject._texture._glRenderTargets) + { + tm.destroyTexture(displayObject._texture); + } + + for (var i = displayObject.children.length - 1; i >= 0; i--) + { + this.unload(displayObject.children[i]); + } + }; + + return TextureGCSystem; +}(System)); + +/** + * Internal texture for WebGL context + * @class + * @memberof PIXI + */ +var GLTexture = function GLTexture(texture) +{ + /** + * The WebGL texture + * @member {WebGLTexture} + */ + this.texture = texture; + + /** + * Width of texture that was used in texImage2D + * @member {number} + */ + this.width = -1; + + /** + * Height of texture that was used in texImage2D + * @member {number} + */ + this.height = -1; + + /** + * Texture contents dirty flag + * @member {number} + */ + this.dirtyId = -1; + + /** + * Texture style dirty flag + * @member {number} + */ + this.dirtyStyleId = -1; + + /** + * Whether mip levels has to be generated + * @member {boolean} + */ + this.mipmap = false; + + /** + * WrapMode copied from baseTexture + * @member {number} + */ + this.wrapMode = 33071; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.type = 6408; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.internalFormat = 5121; +}; + +/** + * System plugin to the renderer to manage textures. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var TextureSystem = /*@__PURE__*/(function (System) { + function TextureSystem(renderer) + { + System.call(this, renderer); + + // TODO set to max textures... + /** + * Bound textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.boundTextures = []; + /** + * Current location + * @member {number} + * @readonly + */ + this.currentLocation = -1; + + /** + * List of managed textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.managedTextures = []; + + /** + * Did someone temper with textures state? We'll overwrite them when we need to unbind something. + * @member {boolean} + * @private + */ + this._unknownBoundTextures = false; + + /** + * BaseTexture value that shows that we don't know what is bound + * @member {PIXI.BaseTexture} + * @readonly + */ + this.unknownTexture = new BaseTexture(); + } + + if ( System ) TextureSystem.__proto__ = System; + TextureSystem.prototype = Object.create( System && System.prototype ); + TextureSystem.prototype.constructor = TextureSystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + TextureSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + this.webGLVersion = this.renderer.context.webGLVersion; + + var maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS); + + this.boundTextures.length = maxTextures; + + for (var i = 0; i < maxTextures; i++) + { + this.boundTextures[i] = null; + } + + // TODO move this.. to a nice make empty textures class.. + this.emptyTextures = {}; + + var emptyTexture2D = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_2D, emptyTexture2D.texture); + gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4)); + + this.emptyTextures[gl.TEXTURE_2D] = emptyTexture2D; + this.emptyTextures[gl.TEXTURE_CUBE_MAP] = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_CUBE_MAP, this.emptyTextures[gl.TEXTURE_CUBE_MAP].texture); + + for (var i$1 = 0; i$1 < 6; i$1++) + { + gl.texImage2D(gl.TEXTURE_CUBE_MAP_POSITIVE_X + i$1, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, null); + } + + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + + for (var i$2 = 0; i$2 < this.boundTextures.length; i$2++) + { + this.bind(null, i$2); + } + }; + + /** + * Bind a texture to a specific location + * + * If you want to unbind something, please use `unbind(texture)` instead of `bind(null, textureLocation)` + * + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + * @param {number} [location=0] - Location to bind at + */ + TextureSystem.prototype.bind = function bind (texture, location) + { + if ( location === void 0 ) location = 0; + + var ref = this; + var gl = ref.gl; + + if (texture) + { + texture = texture.baseTexture || texture; + + if (texture.valid) + { + texture.touched = this.renderer.textureGC.count; + + var glTexture = texture._glTextures[this.CONTEXT_UID] || this.initTexture(texture); + + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + if (this.boundTextures[location] !== texture) + { + gl.bindTexture(texture.target, glTexture.texture); + } + + if (glTexture.dirtyId !== texture.dirtyId) + { + this.updateTexture(texture); + } + + this.boundTextures[location] = texture; + } + } + else + { + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[gl.TEXTURE_2D].texture); + this.boundTextures[location] = null; + } + }; + + /** + * Resets texture location and bound textures + * + * Actual `bind(null, i)` calls will be performed at next `unbind()` call + */ + TextureSystem.prototype.reset = function reset () + { + this._unknownBoundTextures = true; + this.currentLocation = -1; + + for (var i = 0; i < this.boundTextures.length; i++) + { + this.boundTextures[i] = this.unknownTexture; + } + }; + + /** + * Unbind a texture + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + */ + TextureSystem.prototype.unbind = function unbind (texture) + { + var ref = this; + var gl = ref.gl; + var boundTextures = ref.boundTextures; + + if (this._unknownBoundTextures) + { + this._unknownBoundTextures = false; + // someone changed webGL state, + // we have to be sure that our texture does not appear in multi-texture renderer samplers + for (var i = 0; i < boundTextures.length; i++) + { + if (boundTextures[i] === this.unknownTexture) + { + this.bind(null, i); + } + } + } + + for (var i$1 = 0; i$1 < boundTextures.length; i$1++) + { + if (boundTextures[i$1] === texture) + { + if (this.currentLocation !== i$1) + { + gl.activeTexture(gl.TEXTURE0 + i$1); + this.currentLocation = i$1; + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[texture.target].texture); + boundTextures[i$1] = null; + } + } + }; + + /** + * Initialize a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.initTexture = function initTexture (texture) + { + var glTexture = new GLTexture(this.gl.createTexture()); + + // guarantee an update.. + glTexture.dirtyId = -1; + + texture._glTextures[this.CONTEXT_UID] = glTexture; + + this.managedTextures.push(texture); + texture.on('dispose', this.destroyTexture, this); + + return glTexture; + }; + + TextureSystem.prototype.initTextureType = function initTextureType (texture, glTexture) + { + glTexture.internalFormat = texture.format; + glTexture.type = texture.type; + if (this.webGLVersion !== 2) + { + return; + } + var gl = this.renderer.gl; + + if (texture.type === gl.FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA32F; + } + // that's WebGL1 HALF_FLOAT_OES + // we have to convert it to WebGL HALF_FLOAT + if (texture.type === TYPES.HALF_FLOAT) + { + glTexture.type = gl.HALF_FLOAT; + } + if (glTexture.type === gl.HALF_FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA16F; + } + }; + + /** + * Update a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.updateTexture = function updateTexture (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + var renderer = this.renderer; + + this.initTextureType(texture, glTexture); + + if (texture.resource && texture.resource.upload(renderer, texture, glTexture)) + ; + else + { + // default, renderTexture-like logic + var width = texture.realWidth; + var height = texture.realHeight; + var gl = renderer.gl; + + if (glTexture.width !== width + || glTexture.height !== height + || glTexture.dirtyId < 0) + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(texture.target, 0, + glTexture.internalFormat, + width, + height, + 0, + texture.format, + glTexture.type, + null); + } + } + + // lets only update what changes.. + if (texture.dirtyStyleId !== glTexture.dirtyStyleId) + { + this.updateTextureStyle(texture); + } + glTexture.dirtyId = texture.dirtyId; + }; + + /** + * Deletes the texture from WebGL + * + * @private + * @param {PIXI.BaseTexture|PIXI.Texture} texture - the texture to destroy + * @param {boolean} [skipRemove=false] - Whether to skip removing the texture from the TextureManager. + */ + TextureSystem.prototype.destroyTexture = function destroyTexture (texture, skipRemove) + { + var ref = this; + var gl = ref.gl; + + texture = texture.baseTexture || texture; + + if (texture._glTextures[this.CONTEXT_UID]) + { + this.unbind(texture); + + gl.deleteTexture(texture._glTextures[this.CONTEXT_UID].texture); + texture.off('dispose', this.destroyTexture, this); + + delete texture._glTextures[this.CONTEXT_UID]; + + if (!skipRemove) + { + var i = this.managedTextures.indexOf(texture); + + if (i !== -1) + { + removeItems(this.managedTextures, i, 1); + } + } + } + }; + + /** + * Update texture style such as mipmap flag + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + */ + TextureSystem.prototype.updateTextureStyle = function updateTextureStyle (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + if ((texture.mipmap === MIPMAP_MODES.POW2 || this.webGLVersion !== 2) && !texture.isPowerOfTwo) + { + glTexture.mipmap = 0; + glTexture.wrapMode = WRAP_MODES.CLAMP; + } + else + { + glTexture.mipmap = texture.mipmap >= 1; + glTexture.wrapMode = texture.wrapMode; + } + + if (texture.resource && texture.resource.style(this.renderer, texture, glTexture)) + ; + else + { + this.setStyle(texture, glTexture); + } + + glTexture.dirtyStyleId = texture.dirtyStyleId; + }; + + /** + * Set style for texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + * @param {PIXI.GLTexture} glTexture + */ + TextureSystem.prototype.setStyle = function setStyle (texture, glTexture) + { + var gl = this.gl; + + if (glTexture.mipmap) + { + gl.generateMipmap(texture.target); + } + + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_S, glTexture.wrapMode); + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_T, glTexture.wrapMode); + + if (glTexture.mipmap) + { + /* eslint-disable max-len */ + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR_MIPMAP_LINEAR : gl.NEAREST_MIPMAP_NEAREST); + /* eslint-disable max-len */ + + var anisotropicExt = this.renderer.context.extensions.anisotropicFiltering; + + if (anisotropicExt && texture.anisotropicLevel > 0 && texture.scaleMode === SCALE_MODES.LINEAR) + { + var level = Math.min(texture.anisotropicLevel, gl.getParameter(anisotropicExt.MAX_TEXTURE_MAX_ANISOTROPY_EXT)); + + gl.texParameterf(texture.target, anisotropicExt.TEXTURE_MAX_ANISOTROPY_EXT, level); + } + } + else + { + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + } + + gl.texParameteri(texture.target, gl.TEXTURE_MAG_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + }; + + return TextureSystem; +}(System)); + +var tempMatrix = new Matrix(); + +/** + * The AbstractRenderer is the base for a PixiJS Renderer. It is extended by the {@link PIXI.CanvasRenderer} + * and {@link PIXI.Renderer} which can be used for rendering a PixiJS scene. + * + * @abstract + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var AbstractRenderer = /*@__PURE__*/(function (EventEmitter) { + function AbstractRenderer(system, options) + { + EventEmitter.call(this); + + // Add the default render options + options = Object.assign({}, settings.RENDER_OPTIONS, options); + + // Deprecation notice for renderer roundPixels option + if (options.roundPixels) + { + settings.ROUND_PIXELS = options.roundPixels; + deprecation('5.0.0', 'Renderer roundPixels option is deprecated, please use PIXI.settings.ROUND_PIXELS', 2); + } + + /** + * The supplied constructor options. + * + * @member {Object} + * @readOnly + */ + this.options = options; + + /** + * The type of the renderer. + * + * @member {number} + * @default PIXI.RENDERER_TYPE.UNKNOWN + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.UNKNOWN; + + /** + * Measurements of the screen. (0, 0, screenWidth, screenHeight). + * + * Its safe to use as filterArea or hitArea for the whole stage. + * + * @member {PIXI.Rectangle} + */ + this.screen = new Rectangle(0, 0, options.width, options.height); + + /** + * The canvas element that everything is drawn to. + * + * @member {HTMLCanvasElement} + */ + this.view = options.view || document.createElement('canvas'); + + /** + * The resolution / device pixel ratio of the renderer. + * + * @member {number} + * @default 1 + */ + this.resolution = options.resolution || settings.RESOLUTION; + + /** + * Whether the render view is transparent. + * + * @member {boolean} + */ + this.transparent = options.transparent; + + /** + * Whether CSS dimensions of canvas view should be resized to screen dimensions automatically. + * + * @member {boolean} + */ + this.autoDensity = options.autoDensity || options.autoResize || false; + // autoResize is deprecated, provides fallback support + + /** + * The value of the preserveDrawingBuffer flag affects whether or not the contents of + * the stencil buffer is retained after rendering. + * + * @member {boolean} + */ + this.preserveDrawingBuffer = options.preserveDrawingBuffer; + + /** + * This sets if the CanvasRenderer will clear the canvas or not before the new render pass. + * If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every + * frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect + * to clear the canvas every frame. Disable this by setting this to false. For example, if + * your game has a canvas filling background image you often don't need this set. + * + * @member {boolean} + * @default + */ + this.clearBeforeRender = options.clearBeforeRender; + + /** + * The background color as a number. + * + * @member {number} + * @protected + */ + this._backgroundColor = 0x000000; + + /** + * The background color as an [R, G, B] array. + * + * @member {number[]} + * @protected + */ + this._backgroundColorRgba = [0, 0, 0, 0]; + + /** + * The background color as a string. + * + * @member {string} + * @protected + */ + this._backgroundColorString = '#000000'; + + this.backgroundColor = options.backgroundColor || this._backgroundColor; // run bg color setter + + /** + * This temporary display object used as the parent of the currently being rendered item. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._tempDisplayObjectParent = new Container(); + + /** + * The last root object that the renderer tried to render. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._lastObjectRendered = this._tempDisplayObjectParent; + + /** + * Collection of plugins. + * @readonly + * @member {object} + */ + this.plugins = {}; + } + + if ( EventEmitter ) AbstractRenderer.__proto__ = EventEmitter; + AbstractRenderer.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + AbstractRenderer.prototype.constructor = AbstractRenderer; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },backgroundColor: { configurable: true } }; + + /** + * Initialize the plugins. + * + * @protected + * @param {object} staticMap - The dictionary of statically saved plugins. + */ + AbstractRenderer.prototype.initPlugins = function initPlugins (staticMap) + { + for (var o in staticMap) + { + this.plugins[o] = new (staticMap[o])(this); + } + }; + + /** + * Same as view.width, actual number of pixels in the canvas by horizontal. + * + * @member {number} + * @readonly + * @default 800 + */ + prototypeAccessors.width.get = function () + { + return this.view.width; + }; + + /** + * Same as view.height, actual number of pixels in the canvas by vertical. + * + * @member {number} + * @readonly + * @default 600 + */ + prototypeAccessors.height.get = function () + { + return this.view.height; + }; + + /** + * Resizes the screen and canvas to the specified width and height. + * Canvas dimensions are multiplied by resolution. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + AbstractRenderer.prototype.resize = function resize (screenWidth, screenHeight) + { + this.screen.width = screenWidth; + this.screen.height = screenHeight; + + this.view.width = screenWidth * this.resolution; + this.view.height = screenHeight * this.resolution; + + if (this.autoDensity) + { + this.view.style.width = screenWidth + "px"; + this.view.style.height = screenHeight + "px"; + } + }; + + /** + * Useful function that returns a texture of the display object that can then be used to create sprites + * This can be quite useful if your displayObject is complicated and needs to be reused multiple times. + * + * @param {PIXI.DisplayObject} displayObject - The displayObject the object will be generated from. + * @param {number} scaleMode - Should be one of the scaleMode consts. + * @param {number} resolution - The resolution / device pixel ratio of the texture being generated. + * @param {PIXI.Rectangle} [region] - The region of the displayObject, that shall be rendered, + * if no region is specified, defaults to the local bounds of the displayObject. + * @return {PIXI.RenderTexture} A texture of the graphics object. + */ + AbstractRenderer.prototype.generateTexture = function generateTexture (displayObject, scaleMode, resolution, region) + { + region = region || displayObject.getLocalBounds(); + + // minimum texture size is 1x1, 0x0 will throw an error + if (region.width === 0) { region.width = 1; } + if (region.height === 0) { region.height = 1; } + + var renderTexture = RenderTexture.create(region.width | 0, region.height | 0, scaleMode, resolution); + + tempMatrix.tx = -region.x; + tempMatrix.ty = -region.y; + + this.render(displayObject, renderTexture, false, tempMatrix, !!displayObject.parent); + + return renderTexture; + }; + + /** + * Removes everything from the renderer and optionally removes the Canvas DOM element. + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + */ + AbstractRenderer.prototype.destroy = function destroy (removeView) + { + for (var o in this.plugins) + { + this.plugins[o].destroy(); + this.plugins[o] = null; + } + + if (removeView && this.view.parentNode) + { + this.view.parentNode.removeChild(this.view); + } + + this.plugins = null; + + this.type = RENDERER_TYPE.UNKNOWN; + + this.view = null; + + this.screen = null; + + this.resolution = 0; + + this.transparent = false; + + this.autoDensity = false; + + this.blendModes = null; + + this.options = null; + + this.preserveDrawingBuffer = false; + this.clearBeforeRender = false; + + this._backgroundColor = 0; + this._backgroundColorRgba = null; + this._backgroundColorString = null; + + this._tempDisplayObjectParent = null; + this._lastObjectRendered = null; + }; + + /** + * The background color to fill if not transparent + * + * @member {number} + */ + prototypeAccessors.backgroundColor.get = function () + { + return this._backgroundColor; + }; + + prototypeAccessors.backgroundColor.set = function (value) // eslint-disable-line require-jsdoc + { + this._backgroundColor = value; + this._backgroundColorString = hex2string(value); + hex2rgb(value, this._backgroundColorRgba); + }; + + Object.defineProperties( AbstractRenderer.prototype, prototypeAccessors ); + + return AbstractRenderer; +}(eventemitter3)); + +/** + * The Renderer draws the scene and all its content onto a WebGL enabled canvas. + * + * This renderer should be used for browsers that support WebGL. + * + * This renderer works by automatically managing WebGLBatchesm, so no need for Sprite Batches or Sprite Clouds. + * Don't forget to add the view to your DOM or you will not see anything! + * + * @class + * @memberof PIXI + * @extends PIXI.AbstractRenderer + */ +var Renderer = /*@__PURE__*/(function (AbstractRenderer) { + function Renderer(options) + { + if ( options === void 0 ) options = {}; + + AbstractRenderer.call(this, 'WebGL', options); + + // the options will have been modified here in the super constructor with pixi's default settings.. + options = this.options; + + /** + * The type of this renderer as a standardized const + * + * @member {number} + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.WEBGL; + + /** + * WebGL context, set by the contextSystem (this.context) + * + * @readonly + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.CONTEXT_UID = 0; + + // TODO legacy! + + /** + * Internal signal instances of **runner**, these + * are assigned to each system created. + * @see PIXI.Runner + * @name PIXI.Renderer#runners + * @private + * @type {object} + * @readonly + * @property {PIXI.Runner} destroy - Destroy runner + * @property {PIXI.Runner} contextChange - Context change runner + * @property {PIXI.Runner} reset - Reset runner + * @property {PIXI.Runner} update - Update runner + * @property {PIXI.Runner} postrender - Post-render runner + * @property {PIXI.Runner} prerender - Pre-render runner + * @property {PIXI.Runner} resize - Resize runner + */ + this.runners = { + destroy: new Runner('destroy'), + contextChange: new Runner('contextChange', 1), + reset: new Runner('reset'), + update: new Runner('update'), + postrender: new Runner('postrender'), + prerender: new Runner('prerender'), + resize: new Runner('resize', 2), + }; + + /** + * Global uniforms + * @member {PIXI.UniformGroup} + */ + this.globalUniforms = new UniformGroup({ + projectionMatrix: new Matrix(), + }, true); + + /** + * Mask system instance + * @member {PIXI.systems.MaskSystem} mask + * @memberof PIXI.Renderer# + * @readonly + */ + this.addSystem(MaskSystem, 'mask') + /** + * Context system instance + * @member {PIXI.systems.ContextSystem} context + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ContextSystem, 'context') + /** + * State system instance + * @member {PIXI.systems.StateSystem} state + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StateSystem, 'state') + /** + * Shader system instance + * @member {PIXI.systems.ShaderSystem} shader + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ShaderSystem, 'shader') + /** + * Texture system instance + * @member {PIXI.systems.TextureSystem} texture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureSystem, 'texture') + /** + * Geometry system instance + * @member {PIXI.systems.GeometrySystem} geometry + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(GeometrySystem, 'geometry') + /** + * Framebuffer system instance + * @member {PIXI.systems.FramebufferSystem} framebuffer + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FramebufferSystem, 'framebuffer') + /** + * Stencil system instance + * @member {PIXI.systems.StencilSystem} stencil + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StencilSystem, 'stencil') + /** + * Projection system instance + * @member {PIXI.systems.ProjectionSystem} projection + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ProjectionSystem, 'projection') + /** + * Texture garbage collector system instance + * @member {PIXI.systems.TextureGCSystem} textureGC + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureGCSystem, 'textureGC') + /** + * Filter system instance + * @member {PIXI.systems.FilterSystem} filter + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FilterSystem, 'filter') + /** + * RenderTexture system instance + * @member {PIXI.systems.RenderTextureSystem} renderTexture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(RenderTextureSystem, 'renderTexture') + + /** + * Batch system instance + * @member {PIXI.systems.BatchSystem} batch + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(BatchSystem, 'batch'); + + this.initPlugins(Renderer.__plugins); + + /** + * The options passed in to create a new WebGL context. + */ + if (options.context) + { + this.context.initFromContext(options.context); + } + else + { + this.context.initFromOptions({ + alpha: this.transparent, + antialias: options.antialias, + premultipliedAlpha: this.transparent && this.transparent !== 'notMultiplied', + stencil: true, + preserveDrawingBuffer: options.preserveDrawingBuffer, + powerPreference: this.options.powerPreference, + }); + } + + /** + * Flag if we are rendering to the screen vs renderTexture + * @member {boolean} + * @readonly + * @default true + */ + this.renderingToScreen = true; + + sayHello(this.context.webGLVersion === 2 ? 'WebGL 2' : 'WebGL 1'); + + this.resize(this.options.width, this.options.height); + } + + if ( AbstractRenderer ) Renderer.__proto__ = AbstractRenderer; + Renderer.prototype = Object.create( AbstractRenderer && AbstractRenderer.prototype ); + Renderer.prototype.constructor = Renderer; + + /** + * Add a new system to the renderer. + * @param {Function} ClassRef - Class reference + * @param {string} [name] - Property name for system, if not specified + * will use a static `name` property on the class itself. This + * name will be assigned as s property on the Renderer so make + * sure it doesn't collide with properties on Renderer. + * @return {PIXI.Renderer} Return instance of renderer + */ + Renderer.create = function create (options) + { + if (isWebGLSupported()) + { + return new Renderer(options); + } + + throw new Error('WebGL unsupported in this browser, use "pixi.js-legacy" for fallback canvas2d support.'); + }; + + Renderer.prototype.addSystem = function addSystem (ClassRef, name) + { + if (!name) + { + name = ClassRef.name; + } + + var system = new ClassRef(this); + + if (this[name]) + { + throw new Error(("Whoops! The name \"" + name + "\" is already in use")); + } + + this[name] = system; + + for (var i in this.runners) + { + this.runners[i].add(system); + } + + /** + * Fired after rendering finishes. + * + * @event PIXI.Renderer#postrender + */ + + /** + * Fired before rendering starts. + * + * @event PIXI.Renderer#prerender + */ + + /** + * Fired when the WebGL context is set. + * + * @event PIXI.Renderer#context + * @param {WebGLRenderingContext} gl - WebGL context. + */ + + return this; + }; + + /** + * Renders the object to its WebGL view + * + * @param {PIXI.DisplayObject} displayObject - The object to be rendered. + * @param {PIXI.RenderTexture} [renderTexture] - The render texture to render to. + * @param {boolean} [clear=true] - Should the canvas be cleared before the new render. + * @param {PIXI.Matrix} [transform] - A transform to apply to the render texture before rendering. + * @param {boolean} [skipUpdateTransform=false] - Should we skip the update transform pass? + */ + Renderer.prototype.render = function render (displayObject, renderTexture, clear, transform, skipUpdateTransform) + { + // can be handy to know! + this.renderingToScreen = !renderTexture; + + this.runners.prerender.run(); + this.emit('prerender'); + + // apply a transform at a GPU level + this.projection.transform = transform; + + // no point rendering if our context has been blown up! + if (this.context.isLost) + { + return; + } + + if (!renderTexture) + { + this._lastObjectRendered = displayObject; + } + + if (!skipUpdateTransform) + { + // update the scene graph + var cacheParent = displayObject.parent; + + displayObject.parent = this._tempDisplayObjectParent; + displayObject.updateTransform(); + displayObject.parent = cacheParent; + // displayObject.hitArea = //TODO add a temp hit area + } + + this.renderTexture.bind(renderTexture); + this.batch.currentRenderer.start(); + + if (clear !== undefined ? clear : this.clearBeforeRender) + { + this.renderTexture.clear(); + } + + displayObject.render(this); + + // apply transform.. + this.batch.currentRenderer.flush(); + + if (renderTexture) + { + renderTexture.baseTexture.update(); + } + + this.runners.postrender.run(); + + // reset transform after render + this.projection.transform = null; + + this.emit('postrender'); + }; + + /** + * Resizes the WebGL view to the specified width and height. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + Renderer.prototype.resize = function resize (screenWidth, screenHeight) + { + AbstractRenderer.prototype.resize.call(this, screenWidth, screenHeight); + + this.runners.resize.run(screenWidth, screenHeight); + }; + + /** + * Resets the WebGL state so you can render things however you fancy! + * + * @return {PIXI.Renderer} Returns itself. + */ + Renderer.prototype.reset = function reset () + { + this.runners.reset.run(); + + return this; + }; + + /** + * Clear the frame buffer + */ + Renderer.prototype.clear = function clear () + { + this.framebuffer.bind(); + this.framebuffer.clear(); + }; + + /** + * Removes everything from the renderer (event listeners, spritebatch, etc...) + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + * See: https://github.com/pixijs/pixi.js/issues/2233 + */ + Renderer.prototype.destroy = function destroy (removeView) + { + this.runners.destroy.run(); + + for (var r in this.runners) + { + this.runners[r].destroy(); + } + + // call base destroy + AbstractRenderer.prototype.destroy.call(this, removeView); + + // TODO nullify all the managers.. + this.gl = null; + }; + + /** + * Collection of installed plugins. These are included by default in PIXI, but can be excluded + * by creating a custom build. Consult the README for more information about creating custom + * builds and excluding plugins. + * @name PIXI.Renderer#plugins + * @type {object} + * @readonly + * @property {PIXI.accessibility.AccessibilityManager} accessibility Support tabbing interactive elements. + * @property {PIXI.extract.Extract} extract Extract image data from renderer. + * @property {PIXI.interaction.InteractionManager} interaction Handles mouse, touch and pointer events. + * @property {PIXI.prepare.Prepare} prepare Pre-render display objects. + */ + + /** + * Adds a plugin to the renderer. + * + * @method + * @param {string} pluginName - The name of the plugin. + * @param {Function} ctor - The constructor function or class for the plugin. + */ + Renderer.registerPlugin = function registerPlugin (pluginName, ctor) + { + Renderer.__plugins = Renderer.__plugins || {}; + Renderer.__plugins[pluginName] = ctor; + }; + + return Renderer; +}(AbstractRenderer)); + +/** + * This helper function will automatically detect which renderer you should be using. + * WebGL is the preferred renderer as it is a lot faster. If WebGL is not supported by + * the browser then this function will return a canvas renderer + * + * @memberof PIXI + * @function autoDetectRenderer + * @param {object} [options] - The optional renderer parameters + * @param {number} [options.width=800] - the width of the renderers view + * @param {number} [options.height=600] - the height of the renderers view + * @param {HTMLCanvasElement} [options.view] - the canvas to use as a view, optional + * @param {boolean} [options.transparent=false] - If the render view is transparent, default false + * @param {boolean} [options.autoDensity=false] - Resizes renderer view in CSS pixels to allow for + * resolutions other than 1 + * @param {boolean} [options.antialias=false] - sets antialias + * @param {boolean} [options.preserveDrawingBuffer=false] - enables drawing buffer preservation, enable this if you + * need to call toDataUrl on the webgl context + * @param {number} [options.backgroundColor=0x000000] - The background color of the rendered area + * (shown if not transparent). + * @param {boolean} [options.clearBeforeRender=true] - This sets if the renderer will clear the canvas or + * not before the new render pass. + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the renderer, retina would be 2 + * @param {boolean} [options.forceCanvas=false] - prevents selection of WebGL renderer, even if such is present, this + * option only is available when using **pixi.js-legacy** or **@pixi/canvas-renderer** modules, otherwise + * it is ignored. + * @param {boolean} [options.forceFXAA=false] - forces FXAA antialiasing to be used over native. + * FXAA is faster, but may not always look as great **webgl only** + * @param {string} [options.powerPreference] - Parameter passed to webgl context, set to "high-performance" + * for devices with dual graphics card **webgl only** + * @return {PIXI.Renderer|PIXI.CanvasRenderer} Returns WebGL renderer if available, otherwise CanvasRenderer + */ +function autoDetectRenderer(options) +{ + return Renderer.create(options); +} + +var defaultFilter = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +/** + * Used by the batcher to draw batches. + * Each one of these contains all information required to draw a bound geometry. + * + * @class + * @memberof PIXI + */ +var BatchDrawCall = function BatchDrawCall() +{ + this.textures = []; + this.ids = []; + this.blend = 0; + this.textureCount = 0; + this.start = 0; + this.size = 0; + this.type = 4; +}; + +/** + * Flexible wrapper around `ArrayBuffer` that also provides + * typed array views on demand. + * + * @class + * @memberof PIXI + */ +var ViewableBuffer = function ViewableBuffer(size) +{ + /** + * Underlying `ArrayBuffer` that holds all the data + * and is of capacity `size`. + * + * @member {ArrayBuffer} + */ + this.rawBinaryData = new ArrayBuffer(size); + + /** + * View on the raw binary data as a `Uint32Array`. + * + * @member {Uint32Array} + */ + this.uint32View = new Uint32Array(this.rawBinaryData); + + /** + * View on the raw binary data as a `Float32Array`. + * + * @member {Float32Array} + */ + this.float32View = new Float32Array(this.rawBinaryData); +}; + +var prototypeAccessors$5$1 = { int8View: { configurable: true },uint8View: { configurable: true },int16View: { configurable: true },uint16View: { configurable: true },int32View: { configurable: true } }; + +/** + * View on the raw binary data as a `Int8Array`. + * + * @member {Int8Array} + */ +prototypeAccessors$5$1.int8View.get = function () +{ + if (!this._int8View) + { + this._int8View = new Int8Array(this.rawBinaryData); + } + + return this._int8View; +}; + +/** + * View on the raw binary data as a `Uint8Array`. + * + * @member {Uint8Array} + */ +prototypeAccessors$5$1.uint8View.get = function () +{ + if (!this._uint8View) + { + this._uint8View = new Uint8Array(this.rawBinaryData); + } + + return this._uint8View; +}; + +/** + * View on the raw binary data as a `Int16Array`. + * + * @member {Int16Array} + */ +prototypeAccessors$5$1.int16View.get = function () +{ + if (!this._int16View) + { + this._int16View = new Int16Array(this.rawBinaryData); + } + + return this._int16View; +}; + +/** + * View on the raw binary data as a `Uint16Array`. + * + * @member {Uint16Array} + */ +prototypeAccessors$5$1.uint16View.get = function () +{ + if (!this._uint16View) + { + this._uint16View = new Uint16Array(this.rawBinaryData); + } + + return this._uint16View; +}; + +/** + * View on the raw binary data as a `Int32Array`. + * + * @member {Int32Array} + */ +prototypeAccessors$5$1.int32View.get = function () +{ + if (!this._int32View) + { + this._int32View = new Int32Array(this.rawBinaryData); + } + + return this._int32View; +}; + +/** + * Returns the view of the given type. + * + * @param {string} type - One of `int8`, `uint8`, `int16`, + *`uint16`, `int32`, `uint32`, and `float32`. + * @return {object} typed array of given type + */ +ViewableBuffer.prototype.view = function view (type) +{ + return this[(type + "View")]; +}; + +/** + * Destroys all buffer references. Do not use after calling + * this. + */ +ViewableBuffer.prototype.destroy = function destroy () +{ + this.rawBinaryData = null; + this._int8View = null; + this._uint8View = null; + this._int16View = null; + this._uint16View = null; + this._int32View = null; + this.uint32View = null; + this.float32View = null; +}; + +ViewableBuffer.sizeOf = function sizeOf (type) +{ + switch (type) + { + case 'int8': + case 'uint8': + return 1; + case 'int16': + case 'uint16': + return 2; + case 'int32': + case 'uint32': + case 'float32': + return 4; + default: + throw new Error((type + " isn't a valid view type")); + } +}; + +Object.defineProperties( ViewableBuffer.prototype, prototypeAccessors$5$1 ); + +/** + * Renderer dedicated to drawing and batching sprites. + * + * This is the default batch renderer. It buffers objects + * with texture-based geometries and renders them in + * batches. It uploads multiple textures to the GPU to + * reduce to the number of draw calls. + * + * @class + * @protected + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var AbstractBatchRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function AbstractBatchRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + /** + * This is used to generate a shader that can + * color each vertex based on a `aTextureId` + * attribute that points to an texture in `uSampler`. + * + * This enables the objects with different textures + * to be drawn in the same draw call. + * + * You can customize your shader by creating your + * custom shader generator. + * + * @member {PIXI.BatchShaderGenerator} + * @protected + */ + this.shaderGenerator = null; + + /** + * The class that represents the geometry of objects + * that are going to be batched with this. + * + * @member {object} + * @default PIXI.BatchGeometry + * @protected + */ + this.geometryClass = null; + + /** + * Size of data being buffered per vertex in the + * attribute buffers (in floats). By default, the + * batch-renderer plugin uses 6: + * + * | aVertexPosition | 2 | + * |-----------------|---| + * | aTextureCoords | 2 | + * | aColor | 1 | + * | aTextureId | 1 | + * + * @member {number} + * @readonly + */ + this.vertexSize = null; + + /** + * The WebGL state in which this renderer will work. + * + * @member {PIXI.State} + * @readonly + */ + this.state = State.for2d(); + + /** + * The number of bufferable objects before a flush + * occurs automatically. + * + * @member {number} + * @default settings.SPRITE_MAX_TEXTURES + */ + this.size = 2000 * 4;// settings.SPRITE_BATCH_SIZE, 2000 is a nice balance between mobile/desktop + + /** + * Total count of all vertices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._vertexCount = 0; + + /** + * Total count of all indices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._indexCount = 0; + + /** + * Buffer of objects that are yet to be rendered. + * + * @member {PIXI.DisplayObject[]} + * @private + */ + this._bufferedElements = []; + + /** + * Number of elements that are buffered and are + * waiting to be flushed. + * + * @member {number} + * @private + */ + this._bufferSize = 0; + + /** + * This shader is generated by `this.shaderGenerator`. + * + * It is generated specifically to handle the required + * number of textures being batched together. + * + * @member {PIXI.Shader} + * @protected + */ + this._shader = null; + + /** + * Pool of `this.geometryClass` geometry objects + * that store buffers. They are used to pass data + * to the shader on each draw call. + * + * These are never re-allocated again, unless a + * context change occurs; however, the pool may + * be expanded if required. + * + * @member {PIXI.Geometry[]} + * @private + * @see PIXI.AbstractBatchRenderer.contextChange + */ + this._packedGeometries = []; + + /** + * Size of `this._packedGeometries`. It can be expanded + * if more than `this._packedGeometryPoolSize` flushes + * occur in a single frame. + * + * @member {number} + * @private + */ + this._packedGeometryPoolSize = 2; + + /** + * A flush may occur multiple times in a single + * frame. On iOS devices or when + * `settings.CAN_UPLOAD_SAME_BUFFER` is false, the + * batch renderer does not upload data to the same + * `WebGLBuffer` for performance reasons. + * + * This is the index into `packedGeometries` that points to + * geometry holding the most recent buffers. + * + * @member {number} + * @private + */ + this._flushId = 0; + + /** + * Pool of `BatchDrawCall` objects that `flush` used + * to create "batches" of the objects being rendered. + * + * These are never re-allocated again. + * + * @member BatchDrawCall[] + * @private + */ + this._drawCalls = []; + + for (var k = 0; k < this.size / 4; k++) + { // initialize the draw-calls pool to max size. + this._drawCalls[k] = new BatchDrawCall(); + } + + /** + * Pool of `ViewableBuffer` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing attributes. + * + * The first buffer has a size of 8; each subsequent + * buffer has double capacity of its previous. + * + * @member {PIXI.ViewableBuffer} + * @private + * @see PIXI.AbstractBatchRenderer#getAttributeBuffer + */ + this._aBuffers = {}; + + /** + * Pool of `Uint16Array` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing indices. + * + * The first buffer has a size of 12; each subsequent + * buffer has double capacity of its previous. + * + * @member {Uint16Array[]} + * @private + * @see PIXI.AbstractBatchRenderer#getIndexBuffer + */ + this._iBuffers = {}; + + /** + * Maximum number of textures that can be uploaded to + * the GPU under the current context. It is initialized + * properly in `this.contextChange`. + * + * @member {number} + * @see PIXI.AbstractBatchRenderer#contextChange + * @readonly + */ + this.MAX_TEXTURES = 1; + + this.renderer.on('prerender', this.onPrerender, this); + renderer.runners.contextChange.add(this); + } + + if ( ObjectRenderer ) AbstractBatchRenderer.__proto__ = ObjectRenderer; + AbstractBatchRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + AbstractBatchRenderer.prototype.constructor = AbstractBatchRenderer; + + /** + * Handles the `contextChange` signal. + * + * It calculates `this.MAX_TEXTURES` and allocating the + * packed-geometry object pool. + */ + AbstractBatchRenderer.prototype.contextChange = function contextChange () + { + var gl = this.renderer.gl; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + this.MAX_TEXTURES = 1; + } + else + { + // step 1: first check max textures the GPU can handle. + this.MAX_TEXTURES = Math.min( + gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS), + settings.SPRITE_MAX_TEXTURES); + + // step 2: check the maximum number of if statements the shader can have too.. + this.MAX_TEXTURES = checkMaxIfStatementsInShader( + this.MAX_TEXTURES, gl); + } + + this._shader = this.shaderGenerator.generateShader(this.MAX_TEXTURES); + + // we use the second shader as the first one depending on your browser + // may omit aTextureId as it is not used by the shader so is optimized out. + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + /* eslint-disable max-len */ + this._packedGeometries[i] = new (this.geometryClass)(); + } + }; + + /** + * Handles the `prerender` signal. + * + * It ensures that flushes start from the first geometry + * object again. + */ + AbstractBatchRenderer.prototype.onPrerender = function onPrerender () + { + this._flushId = 0; + }; + + /** + * Buffers the "batchable" object. It need not be rendered + * immediately. + * + * @param {PIXI.Sprite} sprite - the sprite to render when + * using this spritebatch + */ + AbstractBatchRenderer.prototype.render = function render (element) + { + if (!element._texture.valid) + { + return; + } + + if (this._vertexCount + (element.vertexData.length / 2) > this.size) + { + this.flush(); + } + + this._vertexCount += element.vertexData.length / 2; + this._indexCount += element.indices.length; + this._bufferedElements[this._bufferSize++] = element; + }; + + /** + * Renders the content _now_ and empties the current batch. + */ + AbstractBatchRenderer.prototype.flush = function flush () + { + if (this._vertexCount === 0) + { + return; + } + + var attributeBuffer = this.getAttributeBuffer(this._vertexCount); + var indexBuffer = this.getIndexBuffer(this._indexCount); + var gl = this.renderer.gl; + + var ref = this; + var elements = ref._bufferedElements; + var drawCalls = ref._drawCalls; + var MAX_TEXTURES = ref.MAX_TEXTURES; + var packedGeometries = ref._packedGeometries; + var vertexSize = ref.vertexSize; + + var touch = this.renderer.textureGC.count; + + var index = 0; + var _indexCount = 0; + + var nextTexture; + var currentTexture; + var textureCount = 0; + + var currentGroup = drawCalls[0]; + var groupCount = 0; + + var blendMode = -1;// blend-mode of previous element/sprite/object! + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.blend = blendMode; + + var TICK = ++BaseTexture._globalBatch; + var i; + + for (i = 0; i < this._bufferSize; ++i) + { + var sprite = elements[i]; + + elements[i] = null; + nextTexture = sprite._texture.baseTexture; + + var spriteBlendMode = premultiplyBlendMode[ + nextTexture.premultiplyAlpha ? 1 : 0][sprite.blendMode]; + + if (blendMode !== spriteBlendMode) + { + blendMode = spriteBlendMode; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + currentGroup.size = _indexCount - currentGroup.start; + + currentGroup = drawCalls[groupCount++]; + currentGroup.textureCount = 0; + currentGroup.blend = blendMode; + currentGroup.start = _indexCount; + } + + nextTexture.touched = touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + this.packInterleavedGeometry(sprite, attributeBuffer, + indexBuffer, index, _indexCount); + + // push a graphics.. + index += (sprite.vertexData.length / 2) * vertexSize; + _indexCount += sprite.indices.length; + } + + BaseTexture._globalBatch = TICK; + currentGroup.size = _indexCount - currentGroup.start; + + if (!settings.CAN_UPLOAD_SAME_BUFFER) + { /* Usually on iOS devices, where the browser doesn't + like uploads to the same buffer in a single frame. */ + if (this._packedGeometryPoolSize <= this._flushId) + { + this._packedGeometryPoolSize++; + packedGeometries[this._flushId] = new (this.geometryClass)(); + } + + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.bind(packedGeometries[this._flushId]); + this.renderer.geometry.updateBuffers(); + this._flushId++; + } + else + { + // lets use the faster option, always use buffer number 0 + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.updateBuffers(); + } + + var textureSystem = this.renderer.texture; + var stateSystem = this.renderer.state; + + // Upload textures and do the draw calls + for (i = 0; i < groupCount; i++) + { + var group = drawCalls[i]; + var groupTextureCount = group.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + textureSystem.bind(group.textures[j], j); + group.textures[j] = null; + } + + stateSystem.setBlendMode(group.blend); + gl.drawElements(group.type, group.size, gl.UNSIGNED_SHORT, group.start * 2); + } + + // reset elements for the next flush + this._bufferSize = 0; + this._vertexCount = 0; + this._indexCount = 0; + }; + + /** + * Starts a new sprite batch. + */ + AbstractBatchRenderer.prototype.start = function start () + { + this.renderer.state.set(this.state); + + this.renderer.shader.bind(this._shader); + + if (settings.CAN_UPLOAD_SAME_BUFFER) + { + // bind buffer #0, we don't need others + this.renderer.geometry.bind(this._packedGeometries[this._flushId]); + } + }; + + /** + * Stops and flushes the current batch. + */ + AbstractBatchRenderer.prototype.stop = function stop () + { + this.flush(); + }; + + /** + * Destroys this `AbstractBatchRenderer`. It cannot be used again. + */ + AbstractBatchRenderer.prototype.destroy = function destroy () + { + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + if (this._packedGeometries[i]) + { + this._packedGeometries[i].destroy(); + } + } + + this.renderer.off('prerender', this.onPrerender, this); + + this._aBuffers = null; + this._iBuffers = null; + this._packedGeometries = null; + this._drawCalls = null; + + if (this._shader) + { + this._shader.destroy(); + this._shader = null; + } + + ObjectRenderer.prototype.destroy.call(this); + }; + + /** + * Fetches an attribute buffer from `this._aBuffers` that + * can hold atleast `size` floats. + * + * @param {number} size - minimum capacity required + * @return {ViewableBuffer} - buffer than can hold atleast `size` floats + * @private + */ + AbstractBatchRenderer.prototype.getAttributeBuffer = function getAttributeBuffer (size) + { + // 8 vertices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 8)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 8; + + if (this._aBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._aBuffers[roundedSize]; + + if (!buffer) + { + this._aBuffers[roundedSize] = buffer = new ViewableBuffer(roundedSize * this.vertexSize * 4); + } + + return buffer; + }; + + /** + * Fetches an index buffer from `this._iBuffers` that can + * has atleast `size` capacity. + * + * @param {number} size - minimum required capacity + * @return {Uint16Array} - buffer that can fit `size` + * indices. + * @private + */ + AbstractBatchRenderer.prototype.getIndexBuffer = function getIndexBuffer (size) + { + // 12 indices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 12)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 12; + + if (this._iBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._iBuffers[roundedSizeIndex]; + + if (!buffer) + { + this._iBuffers[roundedSizeIndex] = buffer = new Uint16Array(roundedSize); + } + + return buffer; + }; + + /** + * Takes the four batching parameters of `element`, interleaves + * and pushes them into the batching attribute/index buffers given. + * + * It uses these properties: `vertexData` `uvs`, `textureId` and + * `indicies`. It also uses the "tint" of the base-texture, if + * present. + * + * @param {PIXI.Sprite} element - element being rendered + * @param {PIXI.ViewableBuffer} attributeBuffer - attribute buffer. + * @param {Uint16Array} indexBuffer - index buffer + * @param {number} aIndex - number of floats already in the attribute buffer + * @param {number} iIndex - number of indices already in `indexBuffer` + */ + AbstractBatchRenderer.prototype.packInterleavedGeometry = function packInterleavedGeometry (element, attributeBuffer, indexBuffer, aIndex, iIndex) + { + var uint32View = attributeBuffer.uint32View; + var float32View = attributeBuffer.float32View; + + var packedVertices = aIndex / this.vertexSize; + var uvs = element.uvs; + var indicies = element.indices; + var vertexData = element.vertexData; + var textureId = element._texture.baseTexture._id; + + var alpha = Math.min(element.worldAlpha, 1.0); + var argb = (alpha < 1.0 + && element._texture.baseTexture.premultiplyAlpha) + ? premultiplyTint(element._tintRGB, alpha) + : element._tintRGB + (alpha * 255 << 24); + + // lets not worry about tint! for now.. + for (var i = 0; i < vertexData.length; i += 2) + { + float32View[aIndex++] = vertexData[i]; + float32View[aIndex++] = vertexData[i + 1]; + float32View[aIndex++] = uvs[i]; + float32View[aIndex++] = uvs[i + 1]; + uint32View[aIndex++] = argb; + float32View[aIndex++] = textureId; + } + + for (var i$1 = 0; i$1 < indicies.length; i$1++) + { + indexBuffer[iIndex++] = packedVertices + indicies[i$1]; + } + }; + + return AbstractBatchRenderer; +}(ObjectRenderer)); + +/** + * Helper that generates batching multi-texture shader. Use it with your new BatchRenderer + * + * @class + * @memberof PIXI + */ +var BatchShaderGenerator = function BatchShaderGenerator(vertexSrc, fragTemplate) +{ + /** + * Reference to the vertex shader source. + * + * @member {string} + */ + this.vertexSrc = vertexSrc; + + /** + * Reference to the fragement shader template. Must contain "%count%" and "%forloop%". + * + * @member {string} + */ + this.fragTemplate = fragTemplate; + + this.programCache = {}; + this.defaultGroupCache = {}; + + if (fragTemplate.indexOf('%count%') < 0) + { + throw new Error('Fragment template must contain "%count%".'); + } + + if (fragTemplate.indexOf('%forloop%') < 0) + { + throw new Error('Fragment template must contain "%forloop%".'); + } +}; + +BatchShaderGenerator.prototype.generateShader = function generateShader (maxTextures) +{ + if (!this.programCache[maxTextures]) + { + var sampleValues = new Int32Array(maxTextures); + + for (var i = 0; i < maxTextures; i++) + { + sampleValues[i] = i; + } + + this.defaultGroupCache[maxTextures] = UniformGroup.from({ uSamplers: sampleValues }, true); + + var fragmentSrc = this.fragTemplate; + + fragmentSrc = fragmentSrc.replace(/%count%/gi, ("" + maxTextures)); + fragmentSrc = fragmentSrc.replace(/%forloop%/gi, this.generateSampleSrc(maxTextures)); + + this.programCache[maxTextures] = new Program(this.vertexSrc, fragmentSrc); + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: this.defaultGroupCache[maxTextures], + }; + + return new Shader(this.programCache[maxTextures], uniforms); +}; + +BatchShaderGenerator.prototype.generateSampleSrc = function generateSampleSrc (maxTextures) +{ + var src = ''; + + src += '\n'; + src += '\n'; + + for (var i = 0; i < maxTextures; i++) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxTextures - 1) + { + src += "if(vTextureId < " + i + ".5)"; + } + + src += '\n{'; + src += "\n\tcolor = texture2D(uSamplers[" + i + "], vTextureCoord);"; + src += '\n}'; + } + + src += '\n'; + src += '\n'; + + return src; +}; + +/** + * Geometry used to batch standard PIXI content (e.g. Mesh, Sprite, Graphics objects). + * + * @class + * @memberof PIXI + */ +var BatchGeometry = /*@__PURE__*/(function (Geometry) { + function BatchGeometry(_static) + { + if ( _static === void 0 ) _static = false; + + Geometry.call(this); + + /** + * Buffer used for position, color, texture IDs + * + * @member {PIXI.Buffer} + * @protected + */ + this._buffer = new Buffer$1(null, _static, false); + + /** + * Index buffer data + * + * @member {PIXI.Buffer} + * @protected + */ + this._indexBuffer = new Buffer$1(null, _static, true); + + this.addAttribute('aVertexPosition', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aTextureCoord', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aColor', this._buffer, 4, true, TYPES.UNSIGNED_BYTE) + .addAttribute('aTextureId', this._buffer, 1, true, TYPES.FLOAT) + .addIndex(this._indexBuffer); + } + + if ( Geometry ) BatchGeometry.__proto__ = Geometry; + BatchGeometry.prototype = Object.create( Geometry && Geometry.prototype ); + BatchGeometry.prototype.constructor = BatchGeometry; + + return BatchGeometry; +}(Geometry)); + +var defaultVertex$2 = "precision highp float;\nattribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\nattribute float aTextureId;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform vec4 tint;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vTextureId = aTextureId;\n vColor = aColor * tint;\n}\n"; + +var defaultFragment$2 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\nuniform sampler2D uSamplers[%count%];\n\nvoid main(void){\n vec4 color;\n %forloop%\n gl_FragColor = color * vColor;\n}\n"; + +/** + * @class + * @memberof PIXI + * @hideconstructor + */ +var BatchPluginFactory = function BatchPluginFactory () {}; + +var staticAccessors$1$1 = { defaultVertexSrc: { configurable: true },defaultFragmentTemplate: { configurable: true } }; + +BatchPluginFactory.create = function create (options) +{ + var ref = Object.assign({ + vertex: defaultVertex$2, + fragment: defaultFragment$2, + geometryClass: BatchGeometry, + vertexSize: 6, + }, options); + var vertex = ref.vertex; + var fragment = ref.fragment; + var vertexSize = ref.vertexSize; + var geometryClass = ref.geometryClass; + + return /*@__PURE__*/(function (AbstractBatchRenderer) { + function BatchPlugin(renderer) + { + AbstractBatchRenderer.call(this, renderer); + + this.shaderGenerator = new BatchShaderGenerator(vertex, fragment); + this.geometryClass = geometryClass; + this.vertexSize = vertexSize; + } + + if ( AbstractBatchRenderer ) BatchPlugin.__proto__ = AbstractBatchRenderer; + BatchPlugin.prototype = Object.create( AbstractBatchRenderer && AbstractBatchRenderer.prototype ); + BatchPlugin.prototype.constructor = BatchPlugin; + + return BatchPlugin; + }(AbstractBatchRenderer)); +}; + +/** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultVertexSrc.get = function () +{ + return defaultVertex$2; +}; + +/** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultFragmentTemplate.get = function () +{ + return defaultFragment$2; +}; + +Object.defineProperties( BatchPluginFactory, staticAccessors$1$1 ); + +// Setup the default BatchRenderer plugin, this is what +// we'll actually export at the root level +var BatchRenderer = BatchPluginFactory.create(); + +/*! + * @pixi/extract - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/extract is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var TEMP_RECT = new Rectangle(); +var BYTES_PER_PIXEL = 4; + +/** + * The extract manager provides functionality to export content from the renderers. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.extract` + * + * @class + * @memberof PIXI.extract + */ +var Extract = function Extract(renderer) +{ + this.renderer = renderer; + /** + * Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture + * + * @member {PIXI.extract.Extract} extract + * @memberof PIXI.Renderer# + * @see PIXI.extract.Extract + */ + renderer.extract = this; +}; + +/** + * Will return a HTML Image of the target + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {HTMLImageElement} HTML Image of the target + */ +Extract.prototype.image = function image (target, format, quality) +{ + var image = new Image(); + + image.src = this.base64(target, format, quality); + + return image; +}; + +/** + * Will return a a base64 encoded string of this target. It works by calling + * `Extract.getCanvas` and then running toDataURL on that. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {string} A base64 encoded string of the texture. + */ +Extract.prototype.base64 = function base64 (target, format, quality) +{ + return this.canvas(target).toDataURL(format, quality); +}; + +/** + * Creates a Canvas element, renders this target to it and then returns it. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {HTMLCanvasElement} A Canvas element with the texture rendered on. + */ +Extract.prototype.canvas = function canvas (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var flipY = false; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + flipY = false; + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = this.renderer.resolution; + + flipY = true; + + frame = TEMP_RECT; + frame.width = this.renderer.width; + frame.height = this.renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = Math.floor(frame.width * resolution); + var height = Math.floor(frame.height * resolution); + + var canvasBuffer = new CanvasRenderTarget(width, height, 1); + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + // add the pixels to the canvas + var canvasData = canvasBuffer.context.getImageData(0, 0, width, height); + + Extract.arrayPostDivide(webglPixels, canvasData.data); + + canvasBuffer.context.putImageData(canvasData, 0, 0); + + // pulling pixels + if (flipY) + { + canvasBuffer.context.scale(1, -1); + canvasBuffer.context.drawImage(canvasBuffer.canvas, 0, -height); + } + + if (generated) + { + renderTexture.destroy(true); + } + + // send the canvas back.. + return canvasBuffer.canvas; +}; + +/** + * Will return a one-dimensional array containing the pixel data of the entire texture in RGBA + * order, with integer values between 0 and 255 (included). + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {Uint8Array} One-dimensional array containing the pixel data of the entire texture + */ +Extract.prototype.pixels = function pixels (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + + // bind the buffer + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = renderer.resolution; + + frame = TEMP_RECT; + frame.width = renderer.width; + frame.height = renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = frame.width * resolution; + var height = frame.height * resolution; + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + if (generated) + { + renderTexture.destroy(true); + } + + Extract.arrayPostDivide(webglPixels, webglPixels); + + return webglPixels; +}; + +/** + * Destroys the extract + * + */ +Extract.prototype.destroy = function destroy () +{ + this.renderer.extract = null; + this.renderer = null; +}; + +/** + * Takes premultiplied pixel data and produces regular pixel data + * + * @private + * @param pixels {number[] | Uint8Array | Uint8ClampedArray} array of pixel data + * @param out {number[] | Uint8Array | Uint8ClampedArray} output array + */ +Extract.arrayPostDivide = function arrayPostDivide (pixels, out) +{ + for (var i = 0; i < pixels.length; i += 4) + { + var alpha = out[i + 3] = pixels[i + 3]; + + if (alpha !== 0) + { + out[i] = Math.round(Math.min(pixels[i] * 255.0 / alpha, 255.0)); + out[i + 1] = Math.round(Math.min(pixels[i + 1] * 255.0 / alpha, 255.0)); + out[i + 2] = Math.round(Math.min(pixels[i + 2] * 255.0 / alpha, 255.0)); + } + else + { + out[i] = pixels[i]; + out[i + 1] = pixels[i + 1]; + out[i + 2] = pixels[i + 2]; + } + } +}; + +/*! + * @pixi/interaction - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/interaction is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Holds all information related to an Interaction event + * + * @class + * @memberof PIXI.interaction + */ +var InteractionData = function InteractionData() +{ + /** + * This point stores the global coords of where the touch/mouse event happened + * + * @member {PIXI.Point} + */ + this.global = new Point(); + + /** + * The target Sprite that was interacted with + * + * @member {PIXI.Sprite} + */ + this.target = null; + + /** + * When passed to an event handler, this will be the original DOM Event that was captured + * + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent + * @member {MouseEvent|TouchEvent|PointerEvent} + */ + this.originalEvent = null; + + /** + * Unique identifier for this interaction + * + * @member {number} + */ + this.identifier = null; + + /** + * Indicates whether or not the pointer device that created the event is the primary pointer. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary + * @type {Boolean} + */ + this.isPrimary = false; + + /** + * Indicates which button was pressed on the mouse or pointer device to trigger the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button + * @type {number} + */ + this.button = 0; + + /** + * Indicates which buttons are pressed on the mouse or pointer device when the event is triggered. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/buttons + * @type {number} + */ + this.buttons = 0; + + /** + * The width of the pointer's contact along the x-axis, measured in CSS pixels. + * radiusX of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width + * @type {number} + */ + this.width = 0; + + /** + * The height of the pointer's contact along the y-axis, measured in CSS pixels. + * radiusY of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height + * @type {number} + */ + this.height = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX + * @type {number} + */ + this.tiltX = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY + * @type {number} + */ + this.tiltY = 0; + + /** + * The type of pointer that triggered the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType + * @type {string} + */ + this.pointerType = null; + + /** + * Pressure applied by the pointing device during the event. A Touch's force property + * will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure + * @type {number} + */ + this.pressure = 0; + + /** + * From TouchEvents (not PointerEvents triggered by touches), the rotationAngle of the Touch. + * @see https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle + * @type {number} + */ + this.rotationAngle = 0; + + /** + * Twist of a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.twist = 0; + + /** + * Barrel pressure on a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.tangentialPressure = 0; +}; + +var prototypeAccessors$6 = { pointerId: { configurable: true } }; + +/** + * The unique identifier of the pointer. It will be the same as `identifier`. + * @readonly + * @member {number} + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId + */ +prototypeAccessors$6.pointerId.get = function () +{ + return this.identifier; +}; + +/** + * This will return the local coordinates of the specified displayObject for this InteractionData + * + * @param {PIXI.DisplayObject} displayObject - The DisplayObject that you would like the local + * coords off + * @param {PIXI.Point} [point] - A Point object in which to store the value, optional (otherwise + * will create a new point) + * @param {PIXI.Point} [globalPos] - A Point object containing your custom global coords, optional + * (otherwise will use the current global coords) + * @return {PIXI.Point} A point containing the coordinates of the InteractionData position relative + * to the DisplayObject + */ +InteractionData.prototype.getLocalPosition = function getLocalPosition (displayObject, point, globalPos) +{ + return displayObject.worldTransform.applyInverse(globalPos || this.global, point); +}; + +/** + * Copies properties from normalized event data. + * + * @param {Touch|MouseEvent|PointerEvent} event The normalized event data + */ +InteractionData.prototype.copyEvent = function copyEvent (event) +{ + // isPrimary should only change on touchstart/pointerdown, so we don't want to overwrite + // it with "false" on later events when our shim for it on touch events might not be + // accurate + if (event.isPrimary) + { + this.isPrimary = true; + } + this.button = event.button; + // event.buttons is not available in all browsers (ie. Safari), but it does have a non-standard + // event.which property instead, which conveys the same information. + this.buttons = Number.isInteger(event.buttons) ? event.buttons : event.which; + this.width = event.width; + this.height = event.height; + this.tiltX = event.tiltX; + this.tiltY = event.tiltY; + this.pointerType = event.pointerType; + this.pressure = event.pressure; + this.rotationAngle = event.rotationAngle; + this.twist = event.twist || 0; + this.tangentialPressure = event.tangentialPressure || 0; +}; + +/** + * Resets the data for pooling. + */ +InteractionData.prototype.reset = function reset () +{ + // isPrimary is the only property that we really need to reset - everything else is + // guaranteed to be overwritten + this.isPrimary = false; +}; + +Object.defineProperties( InteractionData.prototype, prototypeAccessors$6 ); + +/** + * Event class that mimics native DOM events. + * + * @class + * @memberof PIXI.interaction + */ +var InteractionEvent = function InteractionEvent() +{ + /** + * Whether this event will continue propagating in the tree. + * + * Remaining events for the {@link stopsPropagatingAt} object + * will still be dispatched. + * + * @member {boolean} + */ + this.stopped = false; + + /** + * At which object this event stops propagating. + * + * @private + * @member {PIXI.DisplayObject} + */ + this.stopsPropagatingAt = null; + + /** + * Whether we already reached the element we want to + * stop propagating at. This is important for delayed events, + * where we start over deeper in the tree again. + * + * @private + * @member {boolean} + */ + this.stopPropagationHint = false; + + /** + * The object which caused this event to be dispatched. + * For listener callback see {@link PIXI.interaction.InteractionEvent.currentTarget}. + * + * @member {PIXI.DisplayObject} + */ + this.target = null; + + /** + * The object whose event listener’s callback is currently being invoked. + * + * @member {PIXI.DisplayObject} + */ + this.currentTarget = null; + + /** + * Type of the event + * + * @member {string} + */ + this.type = null; + + /** + * InteractionData related to this event + * + * @member {PIXI.interaction.InteractionData} + */ + this.data = null; +}; + +/** + * Prevents event from reaching any objects other than the current object. + * + */ +InteractionEvent.prototype.stopPropagation = function stopPropagation () +{ + this.stopped = true; + this.stopPropagationHint = true; + this.stopsPropagatingAt = this.currentTarget; +}; + +/** + * Resets the event. + */ +InteractionEvent.prototype.reset = function reset () +{ + this.stopped = false; + this.stopsPropagatingAt = null; + this.stopPropagationHint = false; + this.currentTarget = null; + this.target = null; +}; + +/** + * DisplayObjects with the {@link PIXI.interaction.interactiveTarget} mixin use this class to track interactions + * + * @class + * @private + * @memberof PIXI.interaction + */ +var InteractionTrackingData = function InteractionTrackingData(pointerId) +{ + this._pointerId = pointerId; + this._flags = InteractionTrackingData.FLAGS.NONE; +}; + +var prototypeAccessors$1$3 = { pointerId: { configurable: true },flags: { configurable: true },none: { configurable: true },over: { configurable: true },rightDown: { configurable: true },leftDown: { configurable: true } }; + +/** + * + * @private + * @param {number} flag - The interaction flag to set + * @param {boolean} yn - Should the flag be set or unset + */ +InteractionTrackingData.prototype._doSet = function _doSet (flag, yn) +{ + if (yn) + { + this._flags = this._flags | flag; + } + else + { + this._flags = this._flags & (~flag); + } +}; + +/** + * Unique pointer id of the event + * + * @readonly + * @private + * @member {number} + */ +prototypeAccessors$1$3.pointerId.get = function () +{ + return this._pointerId; +}; + +/** + * State of the tracking data, expressed as bit flags + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.flags.get = function () +{ + return this._flags; +}; + +prototypeAccessors$1$3.flags.set = function (flags) // eslint-disable-line require-jsdoc +{ + this._flags = flags; +}; + +/** + * Is the tracked event inactive (not over or down)? + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.none.get = function () +{ + return this._flags === this.constructor.FLAGS.NONE; +}; + +/** + * Is the tracked event over the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.over.get = function () +{ + return (this._flags & this.constructor.FLAGS.OVER) !== 0; +}; + +prototypeAccessors$1$3.over.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.OVER, yn); +}; + +/** + * Did the right mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.rightDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.RIGHT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.rightDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.RIGHT_DOWN, yn); +}; + +/** + * Did the left mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.leftDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.LEFT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.leftDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.LEFT_DOWN, yn); +}; + +Object.defineProperties( InteractionTrackingData.prototype, prototypeAccessors$1$3 ); + +InteractionTrackingData.FLAGS = Object.freeze({ + NONE: 0, + OVER: 1 << 0, + LEFT_DOWN: 1 << 1, + RIGHT_DOWN: 1 << 2, +}); + +/** + * Interface for classes that represent a hit area. + * + * It is implemented by the following classes: + * - {@link PIXI.Circle} + * - {@link PIXI.Ellipse} + * - {@link PIXI.Polygon} + * - {@link PIXI.RoundedRectangle} + * + * @interface IHitArea + * @memberof PIXI + */ + +/** + * Checks whether the x and y coordinates given are contained within this area + * + * @method + * @name contains + * @memberof PIXI.IHitArea# + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this area + */ + +/** + * Default property values of interactive objects + * Used by {@link PIXI.interaction.InteractionManager} to automatically give all DisplayObjects these properties + * + * @private + * @name interactiveTarget + * @type {Object} + * @memberof PIXI.interaction + * @example + * function MyObject() {} + * + * Object.assign( + * DisplayObject.prototype, + * PIXI.interaction.interactiveTarget + * ); + */ +var interactiveTarget = { + + /** + * Enable interaction events for the DisplayObject. Touch, pointer and mouse + * events will not be emitted unless `interactive` is set to `true`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.on('tap', (event) => { + * //handle event + * }); + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + interactive: false, + + /** + * Determines if the children to the displayObject can be clicked/touched + * Setting this to false allows PixiJS to bypass a recursive `hitTest` function + * + * @member {boolean} + * @memberof PIXI.Container# + */ + interactiveChildren: true, + + /** + * Interaction shape. Children will be hit first, then this shape will be checked. + * Setting this will cause this shape to be checked in hit tests rather than the displayObject's bounds. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.hitArea = new PIXI.Rectangle(0, 0, 100, 100); + * @member {PIXI.IHitArea} + * @memberof PIXI.DisplayObject# + */ + hitArea: null, + + /** + * If enabled, the mouse cursor use the pointer behavior when hovered over the displayObject if it is interactive + * Setting this changes the 'cursor' property to `'pointer'`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.buttonMode = true; + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + get buttonMode() + { + return this.cursor === 'pointer'; + }, + set buttonMode(value) + { + if (value) + { + this.cursor = 'pointer'; + } + else if (this.cursor === 'pointer') + { + this.cursor = null; + } + }, + + /** + * This defines what cursor mode is used when the mouse cursor + * is hovered over the displayObject. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.cursor = 'wait'; + * @see https://developer.mozilla.org/en/docs/Web/CSS/cursor + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + cursor: null, + + /** + * Internal set of all active pointers, by identifier + * + * @member {Map} + * @memberof PIXI.DisplayObject# + * @private + */ + get trackedPointers() + { + if (this._trackedPointers === undefined) { this._trackedPointers = {}; } + + return this._trackedPointers; + }, + + /** + * Map of all tracked pointers, by identifier. Use trackedPointers to access. + * + * @private + * @type {Map} + */ + _trackedPointers: undefined, +}; + +// Mix interactiveTarget into DisplayObject.prototype, +// after deprecation has been handled +DisplayObject.mixin(interactiveTarget); + +var MOUSE_POINTER_ID = 1; + +// helpers for hitTest() - only used inside hitTest() +var hitTestEvent = { + target: null, + data: { + global: null, + }, +}; + +/** + * The interaction manager deals with mouse, touch and pointer events. + * + * Any DisplayObject can be interactive if its `interactive` property is set to true. + * + * This manager also supports multitouch. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.interaction` + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI.interaction + */ +var InteractionManager = /*@__PURE__*/(function (EventEmitter) { + function InteractionManager(renderer, options) + { + EventEmitter.call(this); + + options = options || {}; + + /** + * The renderer this interaction manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * Should default browser actions automatically be prevented. + * Does not apply to pointer events for backwards compatibility + * preventDefault on pointer events stops mouse events from firing + * Thus, for every pointer event, there will always be either a mouse of touch event alongside it. + * + * @member {boolean} + * @default true + */ + this.autoPreventDefault = options.autoPreventDefault !== undefined ? options.autoPreventDefault : true; + + /** + * Frequency in milliseconds that the mousemove, mouseover & mouseout interaction events will be checked. + * + * @member {number} + * @default 10 + */ + this.interactionFrequency = options.interactionFrequency || 10; + + /** + * The mouse data + * + * @member {PIXI.interaction.InteractionData} + */ + this.mouse = new InteractionData(); + this.mouse.identifier = MOUSE_POINTER_ID; + + // setting the mouse to start off far off screen will mean that mouse over does + // not get called before we even move the mouse. + this.mouse.global.set(-999999); + + /** + * Actively tracked InteractionData + * + * @private + * @member {Object.} + */ + this.activeInteractionData = {}; + this.activeInteractionData[MOUSE_POINTER_ID] = this.mouse; + + /** + * Pool of unused InteractionData + * + * @private + * @member {PIXI.interaction.InteractionData[]} + */ + this.interactionDataPool = []; + + /** + * An event data object to handle all the event tracking/dispatching + * + * @member {object} + */ + this.eventData = new InteractionEvent(); + + /** + * The DOM element to bind to. + * + * @protected + * @member {HTMLElement} + */ + this.interactionDOMElement = null; + + /** + * This property determines if mousemove and touchmove events are fired only when the cursor + * is over the object. + * Setting to true will make things work more in line with how the DOM version works. + * Setting to false can make things easier for things like dragging + * It is currently set to false as this is how PixiJS used to work. This will be set to true in + * future versions of pixi. + * + * @member {boolean} + * @default false + */ + this.moveWhenInside = false; + + /** + * Have events been attached to the dom element? + * + * @protected + * @member {boolean} + */ + this.eventsAdded = false; + + /** + * Is the mouse hovering over the renderer? + * + * @protected + * @member {boolean} + */ + this.mouseOverRenderer = false; + + /** + * Does the device support touch events + * https://www.w3.org/TR/touch-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsTouchEvents = 'ontouchstart' in window; + + /** + * Does the device support pointer events + * https://www.w3.org/Submission/pointer-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsPointerEvents = !!window.PointerEvent; + + // this will make it so that you don't have to call bind all the time + + /** + * @private + * @member {Function} + */ + this.onPointerUp = this.onPointerUp.bind(this); + this.processPointerUp = this.processPointerUp.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerCancel = this.onPointerCancel.bind(this); + this.processPointerCancel = this.processPointerCancel.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerDown = this.onPointerDown.bind(this); + this.processPointerDown = this.processPointerDown.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerMove = this.onPointerMove.bind(this); + this.processPointerMove = this.processPointerMove.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOut = this.onPointerOut.bind(this); + this.processPointerOverOut = this.processPointerOverOut.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOver = this.onPointerOver.bind(this); + + /** + * Dictionary of how different cursor modes are handled. Strings are handled as CSS cursor + * values, objects are handled as dictionaries of CSS values for interactionDOMElement, + * and functions are called instead of changing the CSS. + * Default CSS cursor values are provided for 'default' and 'pointer' modes. + * @member {Object.} + */ + this.cursorStyles = { + default: 'inherit', + pointer: 'pointer', + }; + + /** + * The mode of the cursor that is being used. + * The value of this is a key from the cursorStyles dictionary. + * + * @member {string} + */ + this.currentCursorMode = null; + + /** + * Internal cached let. + * + * @private + * @member {string} + */ + this.cursor = null; + + /** + * Internal cached let. + * + * @private + * @member {PIXI.Point} + */ + this._tempPoint = new Point(); + + /** + * The current resolution / device pixel ratio. + * + * @member {number} + * @default 1 + */ + this.resolution = 1; + + /** + * Delayed pointer events. Used to guarantee correct ordering of over/out events. + * + * @private + * @member {Array} + */ + this.delayedEvents = []; + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display + * object. + * + * @event PIXI.interaction.InteractionManager#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. + * + * @event PIXI.interaction.InteractionManager#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. + * + * @event PIXI.interaction.InteractionManager#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. + * + * @event PIXI.interaction.InteractionManager#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. + * + * @event PIXI.interaction.InteractionManager#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. + * + * @event PIXI.interaction.InteractionManager#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown}. + * + * @event PIXI.interaction.InteractionManager#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.interaction.InteractionManager#event:rightdown}. + * + * @event PIXI.interaction.InteractionManager#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object + * + * @event PIXI.interaction.InteractionManager#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * + * @event PIXI.interaction.InteractionManager#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * Not always fired when some buttons are held down while others are released. In those cases, + * use [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown} and + * [mouseup]{@link PIXI.interaction.InteractionManager#event:mouseup} instead. + * + * @event PIXI.interaction.InteractionManager#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event + * + * @event PIXI.interaction.InteractionManager#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * + * @event PIXI.interaction.InteractionManager#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.interaction.InteractionManager#event:pointerdown}. + * + * @event PIXI.interaction.InteractionManager#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object + * + * @event PIXI.interaction.InteractionManager#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * + * @event PIXI.interaction.InteractionManager#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * + * @event PIXI.interaction.InteractionManager#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch + * + * @event PIXI.interaction.InteractionManager#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * + * @event PIXI.interaction.InteractionManager#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.interaction.InteractionManager#event:touchstart}. + * + * @event PIXI.interaction.InteractionManager#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * + * @event PIXI.interaction.InteractionManager#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display. + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.DisplayObject#event:mousedown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.DisplayObject#event:rightdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.DisplayObject#event:pointerdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.DisplayObject#event:touchstart}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + this.setTargetElement(this.renderer.view, this.renderer.resolution); + } + + if ( EventEmitter ) InteractionManager.__proto__ = EventEmitter; + InteractionManager.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + InteractionManager.prototype.constructor = InteractionManager; + + /** + * Hit tests a point against the display tree, returning the first interactive object that is hit. + * + * @param {PIXI.Point} globalPoint - A point to hit test with, in global space. + * @param {PIXI.Container} [root] - The root display object to start from. If omitted, defaults + * to the last rendered root of the associated renderer. + * @return {PIXI.DisplayObject} The hit display object, if any. + */ + InteractionManager.prototype.hitTest = function hitTest (globalPoint, root) + { + // clear the target for our hit test + hitTestEvent.target = null; + // assign the global point + hitTestEvent.data.global = globalPoint; + // ensure safety of the root + if (!root) + { + root = this.renderer._lastObjectRendered; + } + // run the hit test + this.processInteractive(hitTestEvent, root, null, true); + // return our found object - it'll be null if we didn't hit anything + + return hitTestEvent.target; + }; + + /** + * Sets the DOM element which will receive mouse/touch events. This is useful for when you have + * other DOM elements on top of the renderers Canvas element. With this you'll be bale to delegate + * another DOM element to receive those events. + * + * @param {HTMLElement} element - the DOM element which will receive mouse and touch events. + * @param {number} [resolution=1] - The resolution / device pixel ratio of the new element (relative to the canvas). + */ + InteractionManager.prototype.setTargetElement = function setTargetElement (element, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + this.removeEvents(); + + this.interactionDOMElement = element; + + this.resolution = resolution; + + this.addEvents(); + }; + + /** + * Registers all the DOM events + * + * @private + */ + InteractionManager.prototype.addEvents = function addEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.add(this.update, this, UPDATE_PRIORITY.INTERACTION); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = 'none'; + this.interactionDOMElement.style['-ms-touch-action'] = 'none'; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = 'none'; + } + + /** + * These events are added first, so that if pointer events are normalized, they are fired + * in the same order as non-normalized events. ie. pointer event 1st, mouse / touch 2nd + */ + if (this.supportsPointerEvents) + { + window.document.addEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('pointerdown', this.onPointerDown, true); + // pointerout is fired in addition to pointerup (for touch events) and pointercancel + // we already handle those, so for the purposes of what we do in onPointerOut, we only + // care about the pointerleave event + this.interactionDOMElement.addEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('pointerover', this.onPointerOver, true); + window.addEventListener('pointercancel', this.onPointerCancel, true); + window.addEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.addEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('mouseover', this.onPointerOver, true); + window.addEventListener('mouseup', this.onPointerUp, true); + } + + // always look directly for touch events so that we can provide original data + // In a future version we should change this to being just a fallback and rely solely on + // PointerEvents whenever available + if (this.supportsTouchEvents) + { + this.interactionDOMElement.addEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.addEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.addEventListener('touchmove', this.onPointerMove, true); + } + + this.eventsAdded = true; + }; + + /** + * Removes all the DOM events that were previously registered + * + * @private + */ + InteractionManager.prototype.removeEvents = function removeEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.remove(this.update, this); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = ''; + this.interactionDOMElement.style['-ms-touch-action'] = ''; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = ''; + } + + if (this.supportsPointerEvents) + { + window.document.removeEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('pointerdown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('pointerover', this.onPointerOver, true); + window.removeEventListener('pointercancel', this.onPointerCancel, true); + window.removeEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.removeEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('mouseover', this.onPointerOver, true); + window.removeEventListener('mouseup', this.onPointerUp, true); + } + + if (this.supportsTouchEvents) + { + this.interactionDOMElement.removeEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.removeEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.removeEventListener('touchmove', this.onPointerMove, true); + } + + this.interactionDOMElement = null; + + this.eventsAdded = false; + }; + + /** + * Updates the state of interactive objects. + * Invoked by a throttled ticker update from {@link PIXI.Ticker.system}. + * + * @param {number} deltaTime - time delta since last tick + */ + InteractionManager.prototype.update = function update (deltaTime) + { + this._deltaTime += deltaTime; + + if (this._deltaTime < this.interactionFrequency) + { + return; + } + + this._deltaTime = 0; + + if (!this.interactionDOMElement) + { + return; + } + + // if the user move the mouse this check has already been done using the mouse move! + if (this.didMove) + { + this.didMove = false; + + return; + } + + this.cursor = null; + + // Resets the flag as set by a stopPropagation call. This flag is usually reset by a user interaction of any kind, + // but there was a scenario of a display object moving under a static mouse cursor. + // In this case, mouseover and mouseevents would not pass the flag test in dispatchEvent function + for (var k in this.activeInteractionData) + { + // eslint-disable-next-line no-prototype-builtins + if (this.activeInteractionData.hasOwnProperty(k)) + { + var interactionData = this.activeInteractionData[k]; + + if (interactionData.originalEvent && interactionData.pointerType !== 'touch') + { + var interactionEvent = this.configureInteractionEventForDOMEvent( + this.eventData, + interactionData.originalEvent, + interactionData + ); + + this.processInteractive( + interactionEvent, + this.renderer._lastObjectRendered, + this.processPointerOverOut, + true + ); + } + } + } + + this.setCursorMode(this.cursor); + }; + + /** + * Sets the current cursor mode, handling any callbacks or CSS style changes. + * + * @param {string} mode - cursor mode, a key from the cursorStyles dictionary + */ + InteractionManager.prototype.setCursorMode = function setCursorMode (mode) + { + mode = mode || 'default'; + // if the mode didn't actually change, bail early + if (this.currentCursorMode === mode) + { + return; + } + this.currentCursorMode = mode; + var style = this.cursorStyles[mode]; + + // only do things if there is a cursor style for it + if (style) + { + switch (typeof style) + { + case 'string': + // string styles are handled as cursor CSS + this.interactionDOMElement.style.cursor = style; + break; + case 'function': + // functions are just called, and passed the cursor mode + style(mode); + break; + case 'object': + // if it is an object, assume that it is a dictionary of CSS styles, + // apply it to the interactionDOMElement + Object.assign(this.interactionDOMElement.style, style); + break; + } + } + else if (typeof mode === 'string' && !Object.prototype.hasOwnProperty.call(this.cursorStyles, mode)) + { + // if it mode is a string (not a Symbol) and cursorStyles doesn't have any entry + // for the mode, then assume that the dev wants it to be CSS for the cursor. + this.interactionDOMElement.style.cursor = mode; + } + }; + + /** + * Dispatches an event on the display object that was interacted with + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.dispatchEvent = function dispatchEvent (displayObject, eventString, eventData) + { + // Even if the event was stopped, at least dispatch any remaining events + // for the same display object. + if (!eventData.stopPropagationHint || displayObject === eventData.stopsPropagatingAt) + { + eventData.currentTarget = displayObject; + eventData.type = eventString; + + displayObject.emit(eventString, eventData); + + if (displayObject[eventString]) + { + displayObject[eventString](eventData); + } + } + }; + + /** + * Puts a event on a queue to be dispatched later. This is used to guarantee correct + * ordering of over/out events. + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.delayDispatchEvent = function delayDispatchEvent (displayObject, eventString, eventData) + { + this.delayedEvents.push({ displayObject: displayObject, eventString: eventString, eventData: eventData }); + }; + + /** + * Maps x and y coords from a DOM object and maps them correctly to the PixiJS view. The + * resulting value is stored in the point. This takes into account the fact that the DOM + * element could be scaled and positioned anywhere on the screen. + * + * @param {PIXI.Point} point - the point that the result will be stored in + * @param {number} x - the x coord of the position to map + * @param {number} y - the y coord of the position to map + */ + InteractionManager.prototype.mapPositionToPoint = function mapPositionToPoint (point, x, y) + { + var rect; + + // IE 11 fix + if (!this.interactionDOMElement.parentElement) + { + rect = { x: 0, y: 0, width: 0, height: 0 }; + } + else + { + rect = this.interactionDOMElement.getBoundingClientRect(); + } + + var resolutionMultiplier = 1.0 / this.resolution; + + point.x = ((x - rect.left) * (this.interactionDOMElement.width / rect.width)) * resolutionMultiplier; + point.y = ((y - rect.top) * (this.interactionDOMElement.height / rect.height)) * resolutionMultiplier; + }; + + /** + * This function is provides a neat way of crawling through the scene graph and running a + * specified function on all interactive objects it finds. It will also take care of hit + * testing the interactive objects and passes the hit across in the function. + * + * @protected + * @param {PIXI.interaction.InteractionEvent} interactionEvent - event containing the point that + * is tested for collision + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the displayObject + * that will be hit test (recursively crawls its children) + * @param {Function} [func] - the function that will be called on each interactive object. The + * interactionEvent, displayObject and hit will be passed to the function + * @param {boolean} [hitTest] - this indicates if the objects inside should be hit test against the point + * @param {boolean} [interactive] - Whether the displayObject is interactive + * @param {boolean} [skipDelayed] - Whether to process delayed events before returning. This is + * used to avoid processing them too early during recursive calls. + * @return {boolean} returns true if the displayObject hit the point + */ + InteractionManager.prototype.processInteractive = function processInteractive (interactionEvent, displayObject, func, hitTest, interactive, skipDelayed) + { + if (!displayObject || !displayObject.visible) + { + return false; + } + + var point = interactionEvent.data.global; + + // Took a little while to rework this function correctly! But now it is done and nice and optimized! ^_^ + // + // This function will now loop through all objects and then only hit test the objects it HAS + // to, not all of them. MUCH faster.. + // An object will be hit test if the following is true: + // + // 1: It is interactive. + // 2: It belongs to a parent that is interactive AND one of the parents children have not already been hit. + // + // As another little optimization once an interactive object has been hit we can carry on + // through the scenegraph, but we know that there will be no more hits! So we can avoid extra hit tests + // A final optimization is that an object is not hit test directly if a child has already been hit. + + interactive = displayObject.interactive || interactive; + + var hit = false; + var interactiveParent = interactive; + + // Flag here can set to false if the event is outside the parents hitArea or mask + var hitTestChildren = true; + + // If there is a hitArea, no need to test against anything else if the pointer is not within the hitArea + // There is also no longer a need to hitTest children. + if (displayObject.hitArea) + { + if (hitTest) + { + displayObject.worldTransform.applyInverse(point, this._tempPoint); + if (!displayObject.hitArea.contains(this._tempPoint.x, this._tempPoint.y)) + { + hitTest = false; + hitTestChildren = false; + } + else + { + hit = true; + } + } + interactiveParent = false; + } + // If there is a mask, no need to hitTest against anything else if the pointer is not within the mask. + // We still want to hitTestChildren, however, to ensure a mouseout can still be generated. + // https://github.com/pixijs/pixi.js/issues/5135 + else if (displayObject._mask) + { + if (hitTest) + { + if (!(displayObject._mask.containsPoint && displayObject._mask.containsPoint(point))) + { + hitTest = false; + } + } + } + + // ** FREE TIP **! If an object is not interactive or has no buttons in it + // (such as a game scene!) set interactiveChildren to false for that displayObject. + // This will allow PixiJS to completely ignore and bypass checking the displayObjects children. + if (hitTestChildren && displayObject.interactiveChildren && displayObject.children) + { + var children = displayObject.children; + + for (var i = children.length - 1; i >= 0; i--) + { + var child = children[i]; + + // time to get recursive.. if this function will return if something is hit.. + var childHit = this.processInteractive(interactionEvent, child, func, hitTest, interactiveParent, true); + + if (childHit) + { + // its a good idea to check if a child has lost its parent. + // this means it has been removed whilst looping so its best + if (!child.parent) + { + continue; + } + + // we no longer need to hit test any more objects in this container as we we + // now know the parent has been hit + interactiveParent = false; + + // If the child is interactive , that means that the object hit was actually + // interactive and not just the child of an interactive object. + // This means we no longer need to hit test anything else. We still need to run + // through all objects, but we don't need to perform any hit tests. + + if (childHit) + { + if (interactionEvent.target) + { + hitTest = false; + } + hit = true; + } + } + } + } + + // no point running this if the item is not interactive or does not have an interactive parent. + if (interactive) + { + // if we are hit testing (as in we have no hit any objects yet) + // We also don't need to worry about hit testing if once of the displayObjects children + // has already been hit - but only if it was interactive, otherwise we need to keep + // looking for an interactive child, just in case we hit one + if (hitTest && !interactionEvent.target) + { + // already tested against hitArea if it is defined + if (!displayObject.hitArea && displayObject.containsPoint) + { + if (displayObject.containsPoint(point)) + { + hit = true; + } + } + } + + if (displayObject.interactive) + { + if (hit && !interactionEvent.target) + { + interactionEvent.target = displayObject; + } + + if (func) + { + func(interactionEvent, displayObject, !!hit); + } + } + } + + var delayedEvents = this.delayedEvents; + + if (delayedEvents.length && !skipDelayed) + { + // Reset the propagation hint, because we start deeper in the tree again. + interactionEvent.stopPropagationHint = false; + + var delayedLen = delayedEvents.length; + + this.delayedEvents = []; + + for (var i$1 = 0; i$1 < delayedLen; i$1++) + { + var ref = delayedEvents[i$1]; + var displayObject$1 = ref.displayObject; + var eventString = ref.eventString; + var eventData = ref.eventData; + + // When we reach the object we wanted to stop propagating at, + // set the propagation hint. + if (eventData.stopsPropagatingAt === displayObject$1) + { + eventData.stopPropagationHint = true; + } + + this.dispatchEvent(displayObject$1, eventString, eventData); + } + } + + return hit; + }; + + /** + * Is called when the pointer button is pressed down on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being pressed down + */ + InteractionManager.prototype.onPointerDown = function onPointerDown (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + /** + * No need to prevent default on natural pointer events, as there are no side effects + * Normalized events, however, may have the double mousedown/touchstart issue on the native android browser, + * so still need to be prevented. + */ + + // Guaranteed that there will be at least one event in events, and all events must have the same pointer type + + if (this.autoPreventDefault && events[0].isNormalized) + { + var cancelable = originalEvent.cancelable || !('cancelable' in originalEvent); + + if (cancelable) + { + originalEvent.preventDefault(); + } + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerDown, true); + + this.emit('pointerdown', interactionEvent); + if (event.pointerType === 'touch') + { + this.emit('touchstart', interactionEvent); + } + // emit a mouse event for "pen" pointers, the way a browser would emit a fallback event + else if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? 'rightdown' : 'mousedown', this.eventData); + } + } + }; + + /** + * Processes the result of the pointer down check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerDown = function processPointerDown (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + var id = interactionEvent.data.identifier; + + if (hit) + { + if (!displayObject.trackedPointers[id]) + { + displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + this.dispatchEvent(displayObject, 'pointerdown', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchstart', interactionEvent); + } + else if (data.pointerType === 'mouse' || data.pointerType === 'pen') + { + var isRightButton = data.button === 2; + + if (isRightButton) + { + displayObject.trackedPointers[id].rightDown = true; + } + else + { + displayObject.trackedPointers[id].leftDown = true; + } + + this.dispatchEvent(displayObject, isRightButton ? 'rightdown' : 'mousedown', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being released + * @param {boolean} cancelled - true if the pointer is cancelled + * @param {Function} func - Function passed to {@link processInteractive} + */ + InteractionManager.prototype.onPointerComplete = function onPointerComplete (originalEvent, cancelled, func) + { + var events = this.normalizeToPointerData(originalEvent); + + var eventLen = events.length; + + // if the event wasn't targeting our canvas, then consider it to be pointerupoutside + // in all cases (unless it was a pointercancel) + var eventAppend = originalEvent.target !== this.interactionDOMElement ? 'outside' : ''; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + // perform hit testing for events targeting our canvas or cancel events + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, func, cancelled || !eventAppend); + + this.emit(cancelled ? 'pointercancel' : ("pointerup" + eventAppend), interactionEvent); + + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? ("rightup" + eventAppend) : ("mouseup" + eventAppend), interactionEvent); + } + else if (event.pointerType === 'touch') + { + this.emit(cancelled ? 'touchcancel' : ("touchend" + eventAppend), interactionEvent); + this.releaseInteractionDataForPointerId(event.pointerId, interactionData); + } + } + }; + + /** + * Is called when the pointer button is cancelled + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerCancel = function onPointerCancel (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, true, this.processPointerCancel); + }; + + /** + * Processes the result of the pointer cancel check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + */ + InteractionManager.prototype.processPointerCancel = function processPointerCancel (interactionEvent, displayObject) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + if (displayObject.trackedPointers[id] !== undefined) + { + delete displayObject.trackedPointers[id]; + this.dispatchEvent(displayObject, 'pointercancel', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchcancel', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerUp = function onPointerUp (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, false, this.processPointerUp); + }; + + /** + * Processes the result of the pointer up check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerUp = function processPointerUp (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var trackingData = displayObject.trackedPointers[id]; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + // need to track mouse down status in the mouse block so that we can emit + // event in a later block + var isMouseTap = false; + + // Mouse only + if (isMouse) + { + var isRightButton = data.button === 2; + + var flags = InteractionTrackingData.FLAGS; + + var test = isRightButton ? flags.RIGHT_DOWN : flags.LEFT_DOWN; + + var isDown = trackingData !== undefined && (trackingData.flags & test); + + if (hit) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightup' : 'mouseup', interactionEvent); + + if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightclick' : 'click', interactionEvent); + // because we can confirm that the mousedown happened on this object, flag for later emit of pointertap + isMouseTap = true; + } + } + else if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightupoutside' : 'mouseupoutside', interactionEvent); + } + // update the down state of the tracking data + if (trackingData) + { + if (isRightButton) + { + trackingData.rightDown = false; + } + else + { + trackingData.leftDown = false; + } + } + } + + // Pointers and Touches, and Mouse + if (hit) + { + this.dispatchEvent(displayObject, 'pointerup', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchend', interactionEvent); } + + if (trackingData) + { + // emit pointertap if not a mouse, or if the mouse block decided it was a tap + if (!isMouse || isMouseTap) + { + this.dispatchEvent(displayObject, 'pointertap', interactionEvent); + } + if (isTouch) + { + this.dispatchEvent(displayObject, 'tap', interactionEvent); + // touches are no longer over (if they ever were) when we get the touchend + // so we should ensure that we don't keep pretending that they are + trackingData.over = false; + } + } + } + else if (trackingData) + { + this.dispatchEvent(displayObject, 'pointerupoutside', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchendoutside', interactionEvent); } + } + // Only remove the tracking data if there is no over/down state still associated with it + if (trackingData && trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + }; + + /** + * Is called when the pointer moves across the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer moving + */ + InteractionManager.prototype.onPointerMove = function onPointerMove (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + if (events[0].pointerType === 'mouse' || events[0].pointerType === 'pen') + { + this.didMove = true; + + this.cursor = null; + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerMove, true); + + this.emit('pointermove', interactionEvent); + if (event.pointerType === 'touch') { this.emit('touchmove', interactionEvent); } + if (event.pointerType === 'mouse' || event.pointerType === 'pen') { this.emit('mousemove', interactionEvent); } + } + + if (events[0].pointerType === 'mouse') + { + this.setCursorMode(this.cursor); + + // TODO BUG for parents interactive object (border order issue) + } + }; + + /** + * Processes the result of the pointer move check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerMove = function processPointerMove (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + if (isMouse) + { + this.processPointerOverOut(interactionEvent, displayObject, hit); + } + + if (!this.moveWhenInside || hit) + { + this.dispatchEvent(displayObject, 'pointermove', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchmove', interactionEvent); } + if (isMouse) { this.dispatchEvent(displayObject, 'mousemove', interactionEvent); } + } + }; + + /** + * Is called when the pointer is moved out of the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer being moved out + */ + InteractionManager.prototype.onPointerOut = function onPointerOut (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOut, so events will always be length 1 + var event = events[0]; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = false; + this.setCursorMode(null); + } + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerOverOut, false); + + this.emit('pointerout', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseout', interactionEvent); + } + else + { + // we can get touchleave events after touchend, so we want to make sure we don't + // introduce memory leaks + this.releaseInteractionDataForPointerId(interactionData.identifier); + } + }; + + /** + * Processes the result of the pointer over/out check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerOverOut = function processPointerOverOut (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + var trackingData = displayObject.trackedPointers[id]; + + // if we just moused over the display object, then we need to track that state + if (hit && !trackingData) + { + trackingData = displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + + if (trackingData === undefined) { return; } + + if (hit && this.mouseOverRenderer) + { + if (!trackingData.over) + { + trackingData.over = true; + this.delayDispatchEvent(displayObject, 'pointerover', interactionEvent); + if (isMouse) + { + this.delayDispatchEvent(displayObject, 'mouseover', interactionEvent); + } + } + + // only change the cursor if it has not already been changed (by something deeper in the + // display tree) + if (isMouse && this.cursor === null) + { + this.cursor = displayObject.cursor; + } + } + else if (trackingData.over) + { + trackingData.over = false; + this.dispatchEvent(displayObject, 'pointerout', this.eventData); + if (isMouse) + { + this.dispatchEvent(displayObject, 'mouseout', interactionEvent); + } + // if there is no mouse down information for the pointer, then it is safe to delete + if (trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + } + }; + + /** + * Is called when the pointer is moved into the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being moved into the renderer view + */ + InteractionManager.prototype.onPointerOver = function onPointerOver (originalEvent) + { + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOver, so events will always be length 1 + var event = events[0]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = true; + } + + this.emit('pointerover', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseover', interactionEvent); + } + }; + + /** + * Get InteractionData for a given pointerId. Store that data as well + * + * @private + * @param {PointerEvent} event - Normalized pointer event, output from normalizeToPointerData + * @return {PIXI.interaction.InteractionData} - Interaction data for the given pointer identifier + */ + InteractionManager.prototype.getInteractionDataForPointerId = function getInteractionDataForPointerId (event) + { + var pointerId = event.pointerId; + + var interactionData; + + if (pointerId === MOUSE_POINTER_ID || event.pointerType === 'mouse') + { + interactionData = this.mouse; + } + else if (this.activeInteractionData[pointerId]) + { + interactionData = this.activeInteractionData[pointerId]; + } + else + { + interactionData = this.interactionDataPool.pop() || new InteractionData(); + interactionData.identifier = pointerId; + this.activeInteractionData[pointerId] = interactionData; + } + // copy properties from the event, so that we can make sure that touch/pointer specific + // data is available + interactionData.copyEvent(event); + + return interactionData; + }; + + /** + * Return unused InteractionData to the pool, for a given pointerId + * + * @private + * @param {number} pointerId - Identifier from a pointer event + */ + InteractionManager.prototype.releaseInteractionDataForPointerId = function releaseInteractionDataForPointerId (pointerId) + { + var interactionData = this.activeInteractionData[pointerId]; + + if (interactionData) + { + delete this.activeInteractionData[pointerId]; + interactionData.reset(); + this.interactionDataPool.push(interactionData); + } + }; + + /** + * Configure an InteractionEvent to wrap a DOM PointerEvent and InteractionData + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The event to be configured + * @param {PointerEvent} pointerEvent - The DOM event that will be paired with the InteractionEvent + * @param {PIXI.interaction.InteractionData} interactionData - The InteractionData that will be paired + * with the InteractionEvent + * @return {PIXI.interaction.InteractionEvent} the interaction event that was passed in + */ + InteractionManager.prototype.configureInteractionEventForDOMEvent = function configureInteractionEventForDOMEvent (interactionEvent, pointerEvent, interactionData) + { + interactionEvent.data = interactionData; + + this.mapPositionToPoint(interactionData.global, pointerEvent.clientX, pointerEvent.clientY); + + // Not really sure why this is happening, but it's how a previous version handled things + if (pointerEvent.pointerType === 'touch') + { + pointerEvent.globalX = interactionData.global.x; + pointerEvent.globalY = interactionData.global.y; + } + + interactionData.originalEvent = pointerEvent; + interactionEvent.reset(); + + return interactionEvent; + }; + + /** + * Ensures that the original event object contains all data that a regular pointer event would have + * + * @private + * @param {TouchEvent|MouseEvent|PointerEvent} event - The original event data from a touch or mouse event + * @return {PointerEvent[]} An array containing a single normalized pointer event, in the case of a pointer + * or mouse event, or a multiple normalized pointer events if there are multiple changed touches + */ + InteractionManager.prototype.normalizeToPointerData = function normalizeToPointerData (event) + { + var normalizedEvents = []; + + if (this.supportsTouchEvents && event instanceof TouchEvent) + { + for (var i = 0, li = event.changedTouches.length; i < li; i++) + { + var touch = event.changedTouches[i]; + + if (typeof touch.button === 'undefined') { touch.button = event.touches.length ? 1 : 0; } + if (typeof touch.buttons === 'undefined') { touch.buttons = event.touches.length ? 1 : 0; } + if (typeof touch.isPrimary === 'undefined') + { + touch.isPrimary = event.touches.length === 1 && event.type === 'touchstart'; + } + if (typeof touch.width === 'undefined') { touch.width = touch.radiusX || 1; } + if (typeof touch.height === 'undefined') { touch.height = touch.radiusY || 1; } + if (typeof touch.tiltX === 'undefined') { touch.tiltX = 0; } + if (typeof touch.tiltY === 'undefined') { touch.tiltY = 0; } + if (typeof touch.pointerType === 'undefined') { touch.pointerType = 'touch'; } + if (typeof touch.pointerId === 'undefined') { touch.pointerId = touch.identifier || 0; } + if (typeof touch.pressure === 'undefined') { touch.pressure = touch.force || 0.5; } + if (typeof touch.twist === 'undefined') { touch.twist = 0; } + if (typeof touch.tangentialPressure === 'undefined') { touch.tangentialPressure = 0; } + // TODO: Remove these, as layerX/Y is not a standard, is deprecated, has uneven + // support, and the fill ins are not quite the same + // offsetX/Y might be okay, but is not the same as clientX/Y when the canvas's top + // left is not 0,0 on the page + if (typeof touch.layerX === 'undefined') { touch.layerX = touch.offsetX = touch.clientX; } + if (typeof touch.layerY === 'undefined') { touch.layerY = touch.offsetY = touch.clientY; } + + // mark the touch as normalized, just so that we know we did it + touch.isNormalized = true; + + normalizedEvents.push(touch); + } + } + // apparently PointerEvent subclasses MouseEvent, so yay + else if (event instanceof MouseEvent && (!this.supportsPointerEvents || !(event instanceof window.PointerEvent))) + { + if (typeof event.isPrimary === 'undefined') { event.isPrimary = true; } + if (typeof event.width === 'undefined') { event.width = 1; } + if (typeof event.height === 'undefined') { event.height = 1; } + if (typeof event.tiltX === 'undefined') { event.tiltX = 0; } + if (typeof event.tiltY === 'undefined') { event.tiltY = 0; } + if (typeof event.pointerType === 'undefined') { event.pointerType = 'mouse'; } + if (typeof event.pointerId === 'undefined') { event.pointerId = MOUSE_POINTER_ID; } + if (typeof event.pressure === 'undefined') { event.pressure = 0.5; } + if (typeof event.twist === 'undefined') { event.twist = 0; } + if (typeof event.tangentialPressure === 'undefined') { event.tangentialPressure = 0; } + + // mark the mouse event as normalized, just so that we know we did it + event.isNormalized = true; + + normalizedEvents.push(event); + } + else + { + normalizedEvents.push(event); + } + + return normalizedEvents; + }; + + /** + * Destroys the interaction manager + * + */ + InteractionManager.prototype.destroy = function destroy () + { + this.removeEvents(); + + this.removeAllListeners(); + + this.renderer = null; + + this.mouse = null; + + this.eventData = null; + + this.interactionDOMElement = null; + + this.onPointerDown = null; + this.processPointerDown = null; + + this.onPointerUp = null; + this.processPointerUp = null; + + this.onPointerCancel = null; + this.processPointerCancel = null; + + this.onPointerMove = null; + this.processPointerMove = null; + + this.onPointerOut = null; + this.processPointerOverOut = null; + + this.onPointerOver = null; + + this._tempPoint = null; + }; + + return InteractionManager; +}(eventemitter3)); + +/*! + * @pixi/graphics - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/graphics is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Graphics curves resolution settings. If `adaptive` flag is set to `true`, + * the resolution is calculated based on the curve's length to ensure better visual quality. + * Adaptive draw works with `bezierCurveTo` and `quadraticCurveTo`. + * + * @static + * @constant + * @memberof PIXI + * @name GRAPHICS_CURVES + * @type {object} + * @property {boolean} adaptive=false - flag indicating if the resolution should be adaptive + * @property {number} maxLength=10 - maximal length of a single segment of the curve (if adaptive = false, ignored) + * @property {number} minSegments=8 - minimal number of segments in the curve (if adaptive = false, ignored) + * @property {number} maxSegments=2048 - maximal number of segments in the curve (if adaptive = false, ignored) + */ +var GRAPHICS_CURVES = { + adaptive: true, + maxLength: 10, + minSegments: 8, + maxSegments: 2048, + _segmentsCount: function _segmentsCount(length, defaultSegments) + { + if ( defaultSegments === void 0 ) defaultSegments = 20; + + if (!this.adaptive) + { + return defaultSegments; + } + + var result = Math.ceil(length / this.maxLength); + + if (result < this.minSegments) + { + result = this.minSegments; + } + else if (result > this.maxSegments) + { + result = this.maxSegments; + } + + return result; + }, +}; + +/** + * Fill style object for Graphics. + * + * @class + * @memberof PIXI + */ +var FillStyle = function FillStyle() +{ + this.reset(); +}; + +/** + * Clones the object + * + * @return {PIXI.FillStyle} + */ +FillStyle.prototype.clone = function clone () +{ + var obj = new FillStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + + return obj; +}; + +/** + * Reset + */ +FillStyle.prototype.reset = function reset () +{ + /** + * The hex color value used when coloring the Graphics object. + * + * @member {number} + * @default 1 + */ + this.color = 0xFFFFFF; + + /** + * The alpha value used when filling the Graphics object. + * + * @member {number} + * @default 1 + */ + this.alpha = 1; + + /** + * The texture to be used for the fill. + * + * @member {string} + * @default 0 + */ + this.texture = Texture.WHITE; + + /** + * The transform aplpied to the texture. + * + * @member {string} + * @default 0 + */ + this.matrix = null; + + /** + * If the current fill is visible. + * + * @member {boolean} + * @default false + */ + this.visible = false; +}; + +/** + * Destroy and don't use after this + */ +FillStyle.prototype.destroy = function destroy () +{ + this.texture = null; + this.matrix = null; +}; + +/** + * A class to contain data useful for Graphics objects + * + * @class + * @memberof PIXI + */ +var GraphicsData = function GraphicsData(shape, fillStyle, lineStyle, matrix) +{ + if ( fillStyle === void 0 ) fillStyle = null; + if ( lineStyle === void 0 ) lineStyle = null; + if ( matrix === void 0 ) matrix = null; + + /** + * The shape object to draw. + * @member {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} + */ + this.shape = shape; + + /** + * The style of the line. + * @member {PIXI.LineStyle} + */ + this.lineStyle = lineStyle; + + /** + * The style of the fill. + * @member {PIXI.FillStyle} + */ + this.fillStyle = fillStyle; + + /** + * The transform matrix. + * @member {PIXI.Matrix} + */ + this.matrix = matrix; + + /** + * The type of the shape, see the Const.Shapes file for all the existing types, + * @member {number} + */ + this.type = shape.type; + + /** + * The collection of points. + * @member {number[]} + */ + this.points = []; + + /** + * The collection of holes. + * @member {PIXI.GraphicsData[]} + */ + this.holes = []; +}; + +/** + * Creates a new GraphicsData object with the same values as this one. + * + * @return {PIXI.GraphicsData} Cloned GraphicsData object + */ +GraphicsData.prototype.clone = function clone () +{ + return new GraphicsData( + this.shape, + this.fillStyle, + this.lineStyle, + this.matrix + ); +}; + +/** + * Destroys the Graphics data. + */ +GraphicsData.prototype.destroy = function destroy () +{ + this.shape = null; + this.holes.length = 0; + this.holes = null; + this.points.length = 0; + this.points = null; + this.lineStyle = null; + this.fillStyle = null; +}; + +/** + * Builds a circle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object to draw + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildCircle = { + + build: function build(graphicsData) + { + // need to convert points to a nice regular data + var circleData = graphicsData.shape; + var points = graphicsData.points; + var x = circleData.x; + var y = circleData.y; + var width; + var height; + + points.length = 0; + + // TODO - bit hacky?? + if (graphicsData.type === SHAPES.CIRC) + { + width = circleData.radius; + height = circleData.radius; + } + else + { + width = circleData.width; + height = circleData.height; + } + + if (width === 0 || height === 0) + { + return; + } + + var totalSegs = Math.floor(30 * Math.sqrt(circleData.radius)) + || Math.floor(15 * Math.sqrt(circleData.width + circleData.height)); + + totalSegs /= 2.3; + + var seg = (Math.PI * 2) / totalSegs; + + for (var i = 0; i < totalSegs; i++) + { + points.push( + x + (Math.sin(-seg * i) * width), + y + (Math.cos(-seg * i) * height) + ); + } + + points.push( + points[0], + points[1] + ); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vertPos = verts.length / 2; + var center = vertPos; + + verts.push(graphicsData.shape.x, graphicsData.shape.y); + + for (var i = 0; i < points.length; i += 2) + { + verts.push(points[i], points[i + 1]); + + // add some uvs + indices.push(vertPos++, center, vertPos); + } + }, +}; + +/** + * Builds a line to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine (graphicsData, graphicsGeometry) +{ + if (graphicsData.lineStyle.native) + { + buildNativeLine(graphicsData, graphicsGeometry); + } + else + { + buildLine$1(graphicsData, graphicsGeometry); + } +} + +/** + * Builds a line to draw using the polygon method. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine$1(graphicsData, graphicsGeometry) +{ + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points.slice(); + var eps = graphicsGeometry.closePointEps; + + if (points.length === 0) + { + return; + } + // if the line width is an odd number add 0.5 to align to a whole pixel + // commenting this out fixes #711 and #1620 + // if (graphicsData.lineWidth%2) + // { + // for (i = 0; i < points.length; i++) + // { + // points[i] += 0.5; + // } + // } + + var style = graphicsData.lineStyle; + + // get first and last point.. figure out the middle! + var firstPoint = new Point(points[0], points[1]); + var lastPoint = new Point(points[points.length - 2], points[points.length - 1]); + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + var closedPath = Math.abs(firstPoint.x - lastPoint.x) < eps + && Math.abs(firstPoint.y - lastPoint.y) < eps; + + // if the first point is the last point - gonna have issues :) + if (closedShape) + { + // need to clone as we are going to slightly modify the shape.. + points = points.slice(); + + if (closedPath) + { + points.pop(); + points.pop(); + lastPoint.set(points[points.length - 2], points[points.length - 1]); + } + + var midPointX = lastPoint.x + ((firstPoint.x - lastPoint.x) * 0.5); + var midPointY = lastPoint.y + ((firstPoint.y - lastPoint.y) * 0.5); + + points.unshift(midPointX, midPointY); + points.push(midPointX, midPointY); + } + + var verts = graphicsGeometry.points; + var length = points.length / 2; + var indexCount = points.length; + var indexStart = verts.length / 2; + + // DRAW the Line + var width = style.width / 2; + + // sort color + var p1x = points[0]; + var p1y = points[1]; + var p2x = points[2]; + var p2y = points[3]; + var p3x = 0; + var p3y = 0; + + var perpx = -(p1y - p2y); + var perpy = p1x - p2x; + var perp2x = 0; + var perp2y = 0; + var perp3x = 0; + var perp3y = 0; + + var dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + var ratio = style.alignment;// 0.5; + var r1 = (1 - ratio) * 2; + var r2 = ratio * 2; + + // start + verts.push( + p1x - (perpx * r1), + p1y - (perpy * r1)); + + verts.push( + p1x + (perpx * r2), + p1y + (perpy * r2)); + + for (var i = 1; i < length - 1; ++i) + { + p1x = points[(i - 1) * 2]; + p1y = points[((i - 1) * 2) + 1]; + + p2x = points[i * 2]; + p2y = points[(i * 2) + 1]; + + p3x = points[(i + 1) * 2]; + p3y = points[((i + 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + perp2x = -(p2y - p3y); + perp2y = p2x - p3x; + + dist = Math.sqrt((perp2x * perp2x) + (perp2y * perp2y)); + perp2x /= dist; + perp2y /= dist; + perp2x *= width; + perp2y *= width; + + var a1 = (-perpy + p1y) - (-perpy + p2y); + var b1 = (-perpx + p2x) - (-perpx + p1x); + var c1 = ((-perpx + p1x) * (-perpy + p2y)) - ((-perpx + p2x) * (-perpy + p1y)); + var a2 = (-perp2y + p3y) - (-perp2y + p2y); + var b2 = (-perp2x + p2x) - (-perp2x + p3x); + var c2 = ((-perp2x + p3x) * (-perp2y + p2y)) - ((-perp2x + p2x) * (-perp2y + p3y)); + + var denom = (a1 * b2) - (a2 * b1); + + if (Math.abs(denom) < 0.1) + { + denom += 10.1; + verts.push( + p2x - (perpx * r1), + p2y - (perpy * r1)); + + verts.push( + p2x + (perpx * r2), + p2y + (perpy * r2)); + + continue; + } + + var px = ((b1 * c2) - (b2 * c1)) / denom; + var py = ((a2 * c1) - (a1 * c2)) / denom; + var pdist = ((px - p2x) * (px - p2x)) + ((py - p2y) * (py - p2y)); + + if (pdist > (196 * width * width)) + { + perp3x = perpx - perp2x; + perp3y = perpy - perp2y; + + dist = Math.sqrt((perp3x * perp3x) + (perp3y * perp3y)); + perp3x /= dist; + perp3y /= dist; + perp3x *= width; + perp3y *= width; + + verts.push(p2x - (perp3x * r1), p2y - (perp3y * r1)); + + verts.push(p2x + (perp3x * r2), p2y + (perp3y * r2)); + + verts.push(p2x - (perp3x * r2 * r1), p2y - (perp3y * r1)); + + indexCount++; + } + else + { + verts.push(p2x + ((px - p2x) * r1), p2y + ((py - p2y) * r1)); + + verts.push(p2x - ((px - p2x) * r2), p2y - ((py - p2y) * r2)); + } + } + + p1x = points[(length - 2) * 2]; + p1y = points[((length - 2) * 2) + 1]; + + p2x = points[(length - 1) * 2]; + p2y = points[((length - 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + verts.push(p2x - (perpx * r1), p2y - (perpy * r1)); + + verts.push(p2x + (perpx * r2), p2y + (perpy * r2)); + + var indices = graphicsGeometry.indices; + + // indices.push(indexStart); + + for (var i$1 = 0; i$1 < indexCount - 2; ++i$1) + { + indices.push(indexStart, indexStart + 1, indexStart + 2); + + indexStart++; + } +} + +/** + * Builds a line to draw using the gl.drawArrays(gl.LINES) method + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildNativeLine(graphicsData, graphicsGeometry) +{ + var i = 0; + + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points; + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + + if (points.length === 0) { return; } + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + var length = points.length / 2; + + var startIndex = verts.length / 2; + var currentIndex = startIndex; + + verts.push(points[0], points[1]); + + for (i = 1; i < length; i++) + { + verts.push(points[i * 2], points[(i * 2) + 1]); + indices.push(currentIndex, currentIndex + 1); + + currentIndex++; + } + + if (closedShape) + { + indices.push(currentIndex, startIndex); + } +} + +/** + * Builds a polygon to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildPoly = { + + build: function build(graphicsData) + { + graphicsData.points = graphicsData.shape.points.slice(); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var holes = graphicsData.holes; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + if (points.length >= 6) + { + var holeArray = []; + // Process holes.. + + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + holeArray.push(points.length / 2); + points = points.concat(hole.points); + } + + // sort color + var triangles = earcut_1(points, holeArray, 2); + + if (!triangles) + { + return; + } + + var vertPos = verts.length / 2; + + for (var i$1 = 0; i$1 < triangles.length; i$1 += 3) + { + indices.push(triangles[i$1] + vertPos); + indices.push(triangles[i$1 + 1] + vertPos); + indices.push(triangles[i$1 + 2] + vertPos); + } + + for (var i$2 = 0; i$2 < points.length; i$2++) + { + verts.push(points[i$2]); + } + } + }, +}; + +/** + * Builds a rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRectangle = { + + build: function build(graphicsData) + { + // --- // + // need to convert points to a nice regular data + // + var rectData = graphicsData.shape; + var x = rectData.x; + var y = rectData.y; + var width = rectData.width; + var height = rectData.height; + + var points = graphicsData.points; + + points.length = 0; + + points.push(x, y, + x + width, y, + x + width, y + height, + x, y + height); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + + var vertPos = verts.length / 2; + + verts.push(points[0], points[1], + points[2], points[3], + points[6], points[7], + points[4], points[5]); + + graphicsGeometry.indices.push(vertPos, vertPos + 1, vertPos + 2, + vertPos + 1, vertPos + 2, vertPos + 3); + }, +}; + +/** + * Builds a rounded rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRoundedRectangle = { + + build: function build(graphicsData) + { + var rrectData = graphicsData.shape; + var points = graphicsData.points; + var x = rrectData.x; + var y = rrectData.y; + var width = rrectData.width; + var height = rrectData.height; + + var radius = rrectData.radius; + + points.length = 0; + + quadraticBezierCurve(x, y + radius, + x, y, + x + radius, y, + points); + quadraticBezierCurve(x + width - radius, + y, x + width, y, + x + width, y + radius, + points); + quadraticBezierCurve(x + width, y + height - radius, + x + width, y + height, + x + width - radius, y + height, + points); + quadraticBezierCurve(x + radius, y + height, + x, y + height, + x, y + height - radius, + points); + + // this tiny number deals with the issue that occurs when points overlap and earcut fails to triangulate the item. + // TODO - fix this properly, this is not very elegant.. but it works for now. + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vecPos = verts.length / 2; + + var triangles = earcut_1(points, null, 2); + + for (var i = 0, j = triangles.length; i < j; i += 3) + { + indices.push(triangles[i] + vecPos); + // indices.push(triangles[i] + vecPos); + indices.push(triangles[i + 1] + vecPos); + // indices.push(triangles[i + 2] + vecPos); + indices.push(triangles[i + 2] + vecPos); + } + + for (var i$1 = 0, j$1 = points.length; i$1 < j$1; i$1++) + { + verts.push(points[i$1], points[++i$1]); + } + }, +}; + +/** + * Calculate a single point for a quadratic bezier curve. + * Utility function used by quadraticBezierCurve. + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} n1 - first number + * @param {number} n2 - second number + * @param {number} perc - percentage + * @return {number} the result + * + */ +function getPt(n1, n2, perc) +{ + var diff = n2 - n1; + + return n1 + (diff * perc); +} + +/** + * Calculate the points for a quadratic bezier curve. (helper function..) + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} fromX - Origin point x + * @param {number} fromY - Origin point x + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} [out=[]] - The output array to add points into. If not passed, a new array is created. + * @return {number[]} an array of points + */ +function quadraticBezierCurve(fromX, fromY, cpX, cpY, toX, toY, out) +{ + if ( out === void 0 ) out = []; + + var n = 20; + var points = out; + + var xa = 0; + var ya = 0; + var xb = 0; + var yb = 0; + var x = 0; + var y = 0; + + for (var i = 0, j = 0; i <= n; ++i) + { + j = i / n; + + // The Green Line + xa = getPt(fromX, cpX, j); + ya = getPt(fromY, cpY, j); + xb = getPt(cpX, toX, j); + yb = getPt(cpY, toY, j); + + // The Black Dot + x = getPt(xa, xb, j); + y = getPt(ya, yb, j); + + points.push(x, y); + } + + return points; +} + +var BATCH_POOL = []; +var DRAW_CALL_POOL = []; +var tmpPoint = new Point(); + +/** + * Map of fill commands for each shape type. + * + * @member {Object} + * @private + */ +var fillCommands = {}; + +fillCommands[SHAPES.POLY] = buildPoly; +fillCommands[SHAPES.CIRC] = buildCircle; +fillCommands[SHAPES.ELIP] = buildCircle; +fillCommands[SHAPES.RECT] = buildRectangle; +fillCommands[SHAPES.RREC] = buildRoundedRectangle; + +/** + * A little internal structure to hold interim batch objects. + * + * @private + */ +var BatchPart = function BatchPart() +{ + this.style = null; + this.size = 0; + this.start = 0; + this.attribStart = 0; + this.attribSize = 0; +}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * GraphicsGeometry is designed to not be continually updating the geometry since it's expensive + * to re-tesselate using **earcut**. Consider using {@link PIXI.Mesh} for this use-case, it's much faster. + * + * @class + * @extends PIXI.BatchGeometry + * @memberof PIXI + */ +var GraphicsGeometry = /*@__PURE__*/(function (BatchGeometry) { + function GraphicsGeometry() + { + BatchGeometry.call(this); + + /** + * An array of points to draw, 2 numbers per point + * + * @member {number[]} + * @protected + */ + this.points = []; + + /** + * The collection of colors + * + * @member {number[]} + * @protected + */ + this.colors = []; + + /** + * The UVs collection + * + * @member {number[]} + * @protected + */ + this.uvs = []; + + /** + * The indices of the vertices + * + * @member {number[]} + * @protected + */ + this.indices = []; + + /** + * Reference to the texture IDs. + * + * @member {number[]} + * @protected + */ + this.textureIds = []; + + /** + * The collection of drawn shapes. + * + * @member {PIXI.GraphicsData[]} + * @protected + */ + this.graphicsData = []; + + /** + * Used to detect if the graphics object has changed. + * + * @member {number} + * @protected + */ + this.dirty = 0; + + /** + * Batches need to regenerated if the geometry is updated. + * + * @member {number} + * @protected + */ + this.batchDirty = -1; + + /** + * Used to check if the cache is dirty. + * + * @member {number} + * @protected + */ + this.cacheDirty = -1; + + /** + * Used to detect if we cleared the graphicsData. + * + * @member {number} + * @default 0 + * @protected + */ + this.clearDirty = 0; + + /** + * List of current draw calls drived from the batches. + * + * @member {object[]} + * @protected + */ + this.drawCalls = []; + + /** + * Intermediate abstract format sent to batch system. + * Can be converted to drawCalls or to batchable objects. + * + * @member {object[]} + * @protected + */ + this.batches = []; + + /** + * Index of the last batched shape in the stack of calls. + * + * @member {number} + * @protected + */ + this.shapeIndex = 0; + + /** + * Cached bounds. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + + /** + * The bounds dirty flag. + * + * @member {number} + * @protected + */ + this.boundsDirty = -1; + + /** + * Padding to add to the bounds. + * + * @member {number} + * @default 0 + */ + this.boundsPadding = 0; + + this.batchable = false; + + this.indicesUint16 = null; + + this.uvsFloat32 = null; + + /** + * Minimal distance between points that are considered different. + * Affects line tesselation. + * + * @member {number} + */ + this.closePointEps = 1e-4; + } + + if ( BatchGeometry ) GraphicsGeometry.__proto__ = BatchGeometry; + GraphicsGeometry.prototype = Object.create( BatchGeometry && BatchGeometry.prototype ); + GraphicsGeometry.prototype.constructor = GraphicsGeometry; + + var prototypeAccessors = { bounds: { configurable: true } }; + + /** + * Get the current bounds of the graphic geometry. + * + * @member {PIXI.Bounds} + * @readonly + */ + prototypeAccessors.bounds.get = function () + { + if (this.boundsDirty !== this.dirty) + { + this.boundsDirty = this.dirty; + this.calculateBounds(); + } + + return this._bounds; + }; + + /** + * Call if you changed graphicsData manually. + * Empties all batch buffers. + */ + GraphicsGeometry.prototype.invalidate = function invalidate () + { + this.boundsDirty = -1; + this.dirty++; + this.batchDirty++; + this.shapeIndex = 0; + + this.points.length = 0; + this.colors.length = 0; + this.uvs.length = 0; + this.indices.length = 0; + this.textureIds.length = 0; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var batch = this.batches[i$1]; + + batch.start = 0; + batch.attribStart = 0; + batch.style = null; + BATCH_POOL.push(batch); + } + + this.batches.length = 0; + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.GraphicsGeometry} This GraphicsGeometry object. Good for chaining method calls + */ + GraphicsGeometry.prototype.clear = function clear () + { + if (this.graphicsData.length > 0) + { + this.invalidate(); + this.clearDirty++; + this.graphicsData.length = 0; + } + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.FillStyle} fillStyle - Defines style of the fill. + * @param {PIXI.LineStyle} lineStyle - Defines style of the lines. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawShape = function drawShape (shape, fillStyle, lineStyle, matrix) + { + var data = new GraphicsData(shape, fillStyle, lineStyle, matrix); + + this.graphicsData.push(data); + this.dirty++; + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawHole = function drawHole (shape, matrix) + { + if (!this.graphicsData.length) + { + return null; + } + + var data = new GraphicsData(shape, null, null, matrix); + + var lastShape = this.graphicsData[this.graphicsData.length - 1]; + + data.lineStyle = lastShape.lineStyle; + + lastShape.holes.push(data); + + this.dirty++; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + GraphicsGeometry.prototype.destroy = function destroy (options) + { + BatchGeometry.prototype.destroy.call(this, options); + + // destroy each of the GraphicsData objects + for (var i = 0; i < this.graphicsData.length; ++i) + { + this.graphicsData[i].destroy(); + } + + this.points.length = 0; + this.points = null; + this.colors.length = 0; + this.colors = null; + this.uvs.length = 0; + this.uvs = null; + this.indices.length = 0; + this.indices = null; + this.indexBuffer.destroy(); + this.indexBuffer = null; + this.graphicsData.length = 0; + this.graphicsData = null; + this.drawCalls.length = 0; + this.drawCalls = null; + this.batches.length = 0; + this.batches = null; + this._bounds = null; + }; + + /** + * Check to see if a point is contained within this geometry. + * + * @param {PIXI.Point} point - Point to check if it's contained. + * @return {Boolean} `true` if the point is contained within geometry. + */ + GraphicsGeometry.prototype.containsPoint = function containsPoint (point) + { + var graphicsData = this.graphicsData; + + for (var i = 0; i < graphicsData.length; ++i) + { + var data = graphicsData[i]; + + if (!data.fillStyle.visible) + { + continue; + } + + // only deal with fills.. + if (data.shape) + { + if (data.matrix) + { + data.matrix.applyInverse(point, tmpPoint); + } + else + { + tmpPoint.copyFrom(point); + } + + if (data.shape.contains(tmpPoint.x, tmpPoint.y)) + { + if (data.holes) + { + for (var i$1 = 0; i$1 < data.holes.length; i$1++) + { + var hole = data.holes[i$1]; + + if (hole.shape.contains(tmpPoint.x, tmpPoint.y)) + { + return false; + } + } + } + + return true; + } + } + } + + return false; + }; + + /** + * Generates intermediate batch data. Either gets converted to drawCalls + * or used to convert to batch objects directly by the Graphics object. + */ + GraphicsGeometry.prototype.updateBatches = function updateBatches () + { + if (this.dirty === this.cacheDirty) { return; } + if (this.graphicsData.length === 0) + { + this.batchable = true; + + return; + } + + if (this.dirty !== this.cacheDirty) + { + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + if (data.fillStyle && !data.fillStyle.texture.baseTexture.valid) { return; } + if (data.lineStyle && !data.lineStyle.texture.baseTexture.valid) { return; } + } + } + + this.cacheDirty = this.dirty; + + var uvs = this.uvs; + + var batchPart = null; + var currentTexture = null; + var currentColor = 0; + var currentNative = false; + + if (this.batches.length > 0) + { + batchPart = this.batches[this.batches.length - 1]; + + var style = batchPart.style; + + currentTexture = style.texture.baseTexture; + currentColor = style.color + style.alpha; + currentNative = !!style.native; + } + + for (var i$1 = this.shapeIndex; i$1 < this.graphicsData.length; i$1++) + { + this.shapeIndex++; + + var data$1 = this.graphicsData[i$1]; + var command = fillCommands[data$1.type]; + + var fillStyle = data$1.fillStyle; + var lineStyle = data$1.lineStyle; + + // build out the shapes points.. + command.build(data$1); + + if (data$1.matrix) + { + this.transformPoints(data$1.points, data$1.matrix); + } + + for (var j = 0; j < 2; j++) + { + var style$1 = (j === 0) ? fillStyle : lineStyle; + + if (!style$1.visible) { continue; } + + var nextTexture = style$1.texture.baseTexture; + + var index$1 = this.indices.length; + var attribIndex = this.points.length / 2; + + // close batch if style is different + if (batchPart + && (currentTexture !== nextTexture + || currentColor !== (style$1.color + style$1.alpha) + || currentNative !== !!style$1.native)) + { + batchPart.size = index$1 - batchPart.start; + batchPart.attribSize = attribIndex - batchPart.attribStart; + + if (batchPart.size > 0) + { + batchPart = null; + } + } + // spawn new batch if its first batch or previous was closed + if (!batchPart) + { + batchPart = BATCH_POOL.pop() || new BatchPart(); + this.batches.push(batchPart); + nextTexture.wrapMode = WRAP_MODES.REPEAT; + currentTexture = nextTexture; + currentColor = style$1.color + style$1.alpha; + currentNative = style$1.native; + + batchPart.style = style$1; + batchPart.start = index$1; + batchPart.attribStart = attribIndex; + } + + var start = this.points.length / 2; + + if (j === 0) + { + if (data$1.holes.length) + { + this.processHoles(data$1.holes); + + buildPoly.triangulate(data$1, this); + } + else + { + command.triangulate(data$1, this); + } + } + else + { + buildLine(data$1, this); + + for (var i$2 = 0; i$2 < data$1.holes.length; i$2++) + { + buildLine(data$1.holes[i$2], this); + } + } + + var size = (this.points.length / 2) - start; + + this.addUvs(this.points, uvs, style$1.texture, start, size, style$1.matrix); + } + } + + var index = this.indices.length; + var attrib = this.points.length / 2; + + if (!batchPart) + { + // there are no visible styles in GraphicsData + // its possible that someone wants Graphics just for the bounds + this.batchable = true; + + return; + } + + batchPart.size = index - batchPart.start; + batchPart.attribSize = attrib - batchPart.attribStart; + this.indicesUint16 = new Uint16Array(this.indices); + + // TODO make this a const.. + this.batchable = this.isBatchable(); + + if (this.batchable) + { + this.batchDirty++; + + this.uvsFloat32 = new Float32Array(this.uvs); + + // offset the indices so that it works with the batcher... + for (var i$3 = 0; i$3 < this.batches.length; i$3++) + { + var batch = this.batches[i$3]; + + for (var j$1 = 0; j$1 < batch.size; j$1++) + { + var index$2 = batch.start + j$1; + + this.indicesUint16[index$2] = this.indicesUint16[index$2] - batch.attribStart; + } + } + } + else + { + this.buildDrawCalls(); + } + }; + + /** + * Checks to see if this graphics geometry can be batched. + * Currently it needs to be small enough and not contain any native lines. + * @protected + */ + GraphicsGeometry.prototype.isBatchable = function isBatchable () + { + var batches = this.batches; + + for (var i = 0; i < batches.length; i++) + { + if (batches[i].style.native) + { + return false; + } + } + + return (this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2); + }; + + /** + * Converts intermediate batches data to drawCalls. + * @protected + */ + GraphicsGeometry.prototype.buildDrawCalls = function buildDrawCalls () + { + var TICK = ++BaseTexture._globalBatch; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + var uvs = this.uvs; + var colors = this.colors; + var textureIds = this.textureIds; + + var currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.size = 0; + currentGroup.type = DRAW_MODES.TRIANGLES; + + var textureCount = 0; + var currentTexture = null; + var textureId = 0; + var native = false; + var drawMode = DRAW_MODES.TRIANGLES; + + var index = 0; + + this.drawCalls.push(currentGroup); + + // TODO - this can be simplified + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var data = this.batches[i$1]; + + // TODO add some full on MAX_TEXTURE CODE.. + var MAX_TEXTURES = 8; + + var style = data.style; + + var nextTexture = style.texture.baseTexture; + + if (native !== !!style.native) + { + native = style.native; + drawMode = native ? DRAW_MODES.LINES : DRAW_MODES.TRIANGLES; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + if (currentGroup.size > 0) + { + currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + this.drawCalls.push(currentGroup); + } + + currentGroup.start = index; + currentGroup.size = 0; + currentGroup.textureCount = 0; + currentGroup.type = drawMode; + } + + // TODO add this to the render part.. + nextTexture.touched = 1;// touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + nextTexture.wrapMode = 10497; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + currentGroup.size += data.size; + index += data.size; + + textureId = nextTexture._id; + + this.addColors(colors, style.color, style.alpha, data.attribSize); + this.addTextureIds(textureIds, textureId, data.attribSize); + } + + BaseTexture._globalBatch = TICK; + + // upload.. + // merge for now! + var verts = this.points; + + // verts are 2 positions.. so we * by 3 as there are 6 properties.. then 4 cos its bytes + var glPoints = new ArrayBuffer(verts.length * 3 * 4); + var f32 = new Float32Array(glPoints); + var u32 = new Uint32Array(glPoints); + + var p = 0; + + for (var i$2 = 0; i$2 < verts.length / 2; i$2++) + { + f32[p++] = verts[i$2 * 2]; + f32[p++] = verts[(i$2 * 2) + 1]; + + f32[p++] = uvs[i$2 * 2]; + f32[p++] = uvs[(i$2 * 2) + 1]; + + u32[p++] = colors[i$2]; + + f32[p++] = textureIds[i$2]; + } + + this._buffer.update(glPoints); + this._indexBuffer.update(this.indicesUint16); + }; + + /** + * Process the holes data. + * + * @param {PIXI.GraphicsData[]} holes - Holes to render + * @protected + */ + GraphicsGeometry.prototype.processHoles = function processHoles (holes) + { + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + var command = fillCommands[hole.type]; + + command.build(hole); + + if (hole.matrix) + { + this.transformPoints(hole.points, hole.matrix); + } + } + }; + + /** + * Update the local bounds of the object. Expensive to use performance-wise. + * @protected + */ + GraphicsGeometry.prototype.calculateBounds = function calculateBounds () + { + var minX = Infinity; + var maxX = -Infinity; + + var minY = Infinity; + var maxY = -Infinity; + + if (this.graphicsData.length) + { + var shape = null; + var x = 0; + var y = 0; + var w = 0; + var h = 0; + + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + var type = data.type; + var lineWidth = data.lineStyle ? data.lineStyle.width : 0; + + shape = data.shape; + + if (type === SHAPES.RECT || type === SHAPES.RREC) + { + x = shape.x - (lineWidth / 2); + y = shape.y - (lineWidth / 2); + w = shape.width + lineWidth; + h = shape.height + lineWidth; + + minX = x < minX ? x : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y < minY ? y : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.CIRC) + { + x = shape.x; + y = shape.y; + w = shape.radius + (lineWidth / 2); + h = shape.radius + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.ELIP) + { + x = shape.x; + y = shape.y; + w = shape.width + (lineWidth / 2); + h = shape.height + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else + { + // POLY + var points = shape.points; + var x2 = 0; + var y2 = 0; + var dx = 0; + var dy = 0; + var rw = 0; + var rh = 0; + var cx = 0; + var cy = 0; + + for (var j = 0; j + 2 < points.length; j += 2) + { + x = points[j]; + y = points[j + 1]; + x2 = points[j + 2]; + y2 = points[j + 3]; + dx = Math.abs(x2 - x); + dy = Math.abs(y2 - y); + h = lineWidth; + w = Math.sqrt((dx * dx) + (dy * dy)); + + if (w < 1e-9) + { + continue; + } + + rw = ((h / w * dy) + dx) / 2; + rh = ((h / w * dx) + dy) / 2; + cx = (x2 + x) / 2; + cy = (y2 + y) / 2; + + minX = cx - rw < minX ? cx - rw : minX; + maxX = cx + rw > maxX ? cx + rw : maxX; + + minY = cy - rh < minY ? cy - rh : minY; + maxY = cy + rh > maxY ? cy + rh : maxY; + } + } + } + } + else + { + minX = 0; + maxX = 0; + minY = 0; + maxY = 0; + } + + var padding = this.boundsPadding; + + this._bounds.minX = minX - padding; + this._bounds.maxX = maxX + padding; + + this._bounds.minY = minY - padding; + this._bounds.maxY = maxY + padding; + }; + + /** + * Transform points using matrix. + * + * @protected + * @param {number[]} points - Points to transform + * @param {PIXI.Matrix} matrix - Transform matrix + */ + GraphicsGeometry.prototype.transformPoints = function transformPoints (points, matrix) + { + for (var i = 0; i < points.length / 2; i++) + { + var x = points[(i * 2)]; + var y = points[(i * 2) + 1]; + + points[(i * 2)] = (matrix.a * x) + (matrix.c * y) + matrix.tx; + points[(i * 2) + 1] = (matrix.b * x) + (matrix.d * y) + matrix.ty; + } + }; + + /** + * Add colors. + * + * @protected + * @param {number[]} colors - List of colors to add to + * @param {number} color - Color to add + * @param {number} alpha - Alpha to use + * @param {number} size - Number of colors to add + */ + GraphicsGeometry.prototype.addColors = function addColors (colors, color, alpha, size) + { + // TODO use the premultiply bits Ivan added + var rgb = (color >> 16) + (color & 0xff00) + ((color & 0xff) << 16); + + var rgba = premultiplyTint(rgb, alpha); + + while (size-- > 0) + { + colors.push(rgba); + } + }; + + /** + * Add texture id that the shader/fragment wants to use. + * + * @protected + * @param {number[]} textureIds + * @param {number} id + * @param {number} size + */ + GraphicsGeometry.prototype.addTextureIds = function addTextureIds (textureIds, id, size) + { + while (size-- > 0) + { + textureIds.push(id); + } + }; + + /** + * Generates the UVs for a shape. + * + * @protected + * @param {number[]} verts - Vertices + * @param {number[]} uvs - UVs + * @param {PIXI.Texture} texture - Reference to Texture + * @param {number} start - Index buffer start index. + * @param {number} size - The size/length for index buffer. + * @param {PIXI.Matrix} [matrix] - Optional transform for all points. + */ + GraphicsGeometry.prototype.addUvs = function addUvs (verts, uvs, texture, start, size, matrix) + { + var index = 0; + var uvsStart = uvs.length; + var frame = texture.frame; + + while (index < size) + { + var x = verts[(start + index) * 2]; + var y = verts[((start + index) * 2) + 1]; + + if (matrix) + { + var nx = (matrix.a * x) + (matrix.c * y) + matrix.tx; + + y = (matrix.b * x) + (matrix.d * y) + matrix.ty; + x = nx; + } + + index++; + + uvs.push(x / frame.width, y / frame.height); + } + + var baseTexture = texture.baseTexture; + + if (frame.width < baseTexture.width + || frame.height < baseTexture.height) + { + this.adjustUvs(uvs, texture, uvsStart, size); + } + }; + + /** + * Modify uvs array according to position of texture region + * Does not work with rotated or trimmed textures + * @param {number[]} uvs array + * @param {PIXI.Texture} texture region + * @param {number} start starting index for uvs + * @param {number} size how many points to adjust + */ + GraphicsGeometry.prototype.adjustUvs = function adjustUvs (uvs, texture, start, size) + { + var baseTexture = texture.baseTexture; + var eps = 1e-6; + var finish = start + (size * 2); + var frame = texture.frame; + var scaleX = frame.width / baseTexture.width; + var scaleY = frame.height / baseTexture.height; + var offsetX = frame.x / frame.width; + var offsetY = frame.y / frame.height; + var minX = Math.floor(uvs[start] + eps); + var minY = Math.floor(uvs[start + 1] + eps); + + for (var i = start + 2; i < finish; i += 2) + { + minX = Math.min(minX, Math.floor(uvs[i] + eps)); + minY = Math.min(minY, Math.floor(uvs[i + 1] + eps)); + } + offsetX -= minX; + offsetY -= minY; + for (var i$1 = start; i$1 < finish; i$1 += 2) + { + uvs[i$1] = (uvs[i$1] + offsetX) * scaleX; + uvs[i$1 + 1] = (uvs[i$1 + 1] + offsetY) * scaleY; + } + }; + + Object.defineProperties( GraphicsGeometry.prototype, prototypeAccessors ); + + return GraphicsGeometry; +}(BatchGeometry)); + +/** + * The maximum number of points to consider an object "batchable", + * able to be batched by the renderer's batch system. + * + * @memberof PIXI.GraphicsGeometry + * @static + * @member {number} BATCHABLE_SIZE + * @default 100 + */ +GraphicsGeometry.BATCHABLE_SIZE = 100; + +/** + * Represents the line style for Graphics. + * @memberof PIXI + * @class + * @extends PIXI.FillStyle + */ +var LineStyle = /*@__PURE__*/(function (FillStyle) { + function LineStyle () { + FillStyle.apply(this, arguments); + } + + if ( FillStyle ) LineStyle.__proto__ = FillStyle; + LineStyle.prototype = Object.create( FillStyle && FillStyle.prototype ); + LineStyle.prototype.constructor = LineStyle; + + LineStyle.prototype.clone = function clone () + { + var obj = new LineStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + obj.width = this.width; + obj.alignment = this.alignment; + obj.native = this.native; + + return obj; + }; + /** + * Reset the line style to default. + */ + LineStyle.prototype.reset = function reset () + { + FillStyle.prototype.reset.call(this); + + // Override default line style color + this.color = 0x0; + + /** + * The width (thickness) of any lines drawn. + * + * @member {number} + * @default 0 + */ + this.width = 0; + + /** + * The alignment of any lines drawn (0.5 = middle, 1 = outter, 0 = inner). + * + * @member {number} + * @default 0 + */ + this.alignment = 0.5; + + /** + * If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * + * @member {boolean} + * @default false + */ + this.native = false; + }; + + return LineStyle; +}(FillStyle)); + +/** + * Utilities for bezier curves + * @class + * @private + */ +var BezierUtils = function BezierUtils () {}; + +BezierUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) +{ + var n = 10; + var result = 0.0; + var t = 0.0; + var t2 = 0.0; + var t3 = 0.0; + var nt = 0.0; + var nt2 = 0.0; + var nt3 = 0.0; + var x = 0.0; + var y = 0.0; + var dx = 0.0; + var dy = 0.0; + var prevX = fromX; + var prevY = fromY; + + for (var i = 1; i <= n; ++i) + { + t = i / n; + t2 = t * t; + t3 = t2 * t; + nt = (1.0 - t); + nt2 = nt * nt; + nt3 = nt2 * nt; + + x = (nt3 * fromX) + (3.0 * nt2 * t * cpX) + (3.0 * nt * t2 * cpX2) + (t3 * toX); + y = (nt3 * fromY) + (3.0 * nt2 * t * cpY) + (3 * nt * t2 * cpY2) + (t3 * toY); + dx = prevX - x; + dy = prevY - y; + prevX = x; + prevY = y; + + result += Math.sqrt((dx * dx) + (dy * dy)); + } + + return result; +}; + +/** + * Calculate the points for a bezier curve and then draws it. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Path array to push points into + */ +BezierUtils.curveTo = function curveTo (cpX, cpY, cpX2, cpY2, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + points.length -= 2; + + var n = GRAPHICS_CURVES._segmentsCount( + BezierUtils.curveLength(fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) + ); + + var dt = 0; + var dt2 = 0; + var dt3 = 0; + var t2 = 0; + var t3 = 0; + + points.push(fromX, fromY); + + for (var i = 1, j = 0; i <= n; ++i) + { + j = i / n; + + dt = (1 - j); + dt2 = dt * dt; + dt3 = dt2 * dt; + + t2 = j * j; + t3 = t2 * j; + + points.push( + (dt3 * fromX) + (3 * dt2 * j * cpX) + (3 * dt * t2 * cpX2) + (t3 * toX), + (dt3 * fromY) + (3 * dt2 * j * cpY) + (3 * dt * t2 * cpY2) + (t3 * toY) + ); + } +}; + +/** + * Utilities for quadratic curves + * @class + * @private + */ +var QuadraticUtils = function QuadraticUtils () {}; + +QuadraticUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, toX, toY) +{ + var ax = fromX - (2.0 * cpX) + toX; + var ay = fromY - (2.0 * cpY) + toY; + var bx = (2.0 * cpX) - (2.0 * fromX); + var by = (2.0 * cpY) - (2.0 * fromY); + var a = 4.0 * ((ax * ax) + (ay * ay)); + var b = 4.0 * ((ax * bx) + (ay * by)); + var c = (bx * bx) + (by * by); + + var s = 2.0 * Math.sqrt(a + b + c); + var a2 = Math.sqrt(a); + var a32 = 2.0 * a * a2; + var c2 = 2.0 * Math.sqrt(c); + var ba = b / a2; + + return ( + (a32 * s) + + (a2 * b * (s - c2)) + + ( + ((4.0 * c * a) - (b * b)) + * Math.log(((2.0 * a2) + ba + s) / (ba + c2)) + ) + ) / (4.0 * a32); +}; + +/** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @private + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Points to add segments to. + */ +QuadraticUtils.curveTo = function curveTo (cpX, cpY, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var n = GRAPHICS_CURVES._segmentsCount( + QuadraticUtils.curveLength(fromX, fromY, cpX, cpY, toX, toY) + ); + + var xa = 0; + var ya = 0; + + for (var i = 1; i <= n; ++i) + { + var j = i / n; + + xa = fromX + ((cpX - fromX) * j); + ya = fromY + ((cpY - fromY) * j); + + points.push(xa + (((cpX + ((toX - cpX) * j)) - xa) * j), + ya + (((cpY + ((toY - cpY) * j)) - ya) * j)); + } +}; + +/** + * Utilities for arc curves + * @class + * @private + */ +var ArcUtils = function ArcUtils () {}; + +ArcUtils.curveTo = function curveTo (x1, y1, x2, y2, radius, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var a1 = fromY - y1; + var b1 = fromX - x1; + var a2 = y2 - y1; + var b2 = x2 - x1; + var mm = Math.abs((a1 * b2) - (b1 * a2)); + + if (mm < 1.0e-8 || radius === 0) + { + if (points[points.length - 2] !== x1 || points[points.length - 1] !== y1) + { + points.push(x1, y1); + } + + return null; + } + + var dd = (a1 * a1) + (b1 * b1); + var cc = (a2 * a2) + (b2 * b2); + var tt = (a1 * a2) + (b1 * b2); + var k1 = radius * Math.sqrt(dd) / mm; + var k2 = radius * Math.sqrt(cc) / mm; + var j1 = k1 * tt / dd; + var j2 = k2 * tt / cc; + var cx = (k1 * b2) + (k2 * b1); + var cy = (k1 * a2) + (k2 * a1); + var px = b1 * (k2 + j1); + var py = a1 * (k2 + j1); + var qx = b2 * (k1 + j2); + var qy = a2 * (k1 + j2); + var startAngle = Math.atan2(py - cy, px - cx); + var endAngle = Math.atan2(qy - cy, qx - cx); + + return { + cx: (cx + x1), + cy: (cy + y1), + radius: radius, + startAngle: startAngle, + endAngle: endAngle, + anticlockwise: (b1 * a2 > b2 * a1), + }; +}; + +/** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @private + * @param {number} startX - Start x location of arc + * @param {number} startY - Start y location of arc + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} anticlockwise - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @param {number} n - Number of segments + * @param {number[]} points - Collection of points to add to + */ +ArcUtils.arc = function arc (startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points) +{ + var sweep = endAngle - startAngle; + var n = GRAPHICS_CURVES._segmentsCount( + Math.abs(sweep) * radius, + Math.ceil(Math.abs(sweep) / PI_2) * 40 + ); + + var theta = (sweep) / (n * 2); + var theta2 = theta * 2; + var cTheta = Math.cos(theta); + var sTheta = Math.sin(theta); + var segMinus = n - 1; + var remainder = (segMinus % 1) / segMinus; + + for (var i = 0; i <= segMinus; ++i) + { + var real = i + (remainder * i); + var angle = ((theta) + startAngle + (theta2 * real)); + var c = Math.cos(angle); + var s = -Math.sin(angle); + + points.push( + (((cTheta * c) + (sTheta * s)) * radius) + cx, + (((cTheta * -s) + (sTheta * c)) * radius) + cy + ); + } +}; + +/** + * Draw a star shape with an arbitrary number of points. + * + * @class + * @extends PIXI.Polygon + * @memberof PIXI + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ +var Star = /*@__PURE__*/(function (Polygon) { + function Star(x, y, points, radius, innerRadius, rotation) + { + innerRadius = innerRadius || radius / 2; + + var startAngle = (-1 * Math.PI / 2) + rotation; + var len = points * 2; + var delta = PI_2 / len; + var polygon = []; + + for (var i = 0; i < len; i++) + { + var r = i % 2 ? innerRadius : radius; + var angle = (i * delta) + startAngle; + + polygon.push( + x + (r * Math.cos(angle)), + y + (r * Math.sin(angle)) + ); + } + + Polygon.call(this, polygon); + } + + if ( Polygon ) Star.__proto__ = Polygon; + Star.prototype = Object.create( Polygon && Polygon.prototype ); + Star.prototype.constructor = Star; + + return Star; +}(Polygon)); + +var temp = new Float32Array(3); + +// a default shaders map used by graphics.. +var DEFAULT_SHADERS = {}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * Note that because Graphics can share a GraphicsGeometry with other instances, + * it is necessary to call `destroy()` to properly dereference the underlying + * GraphicsGeometry and avoid a memory leak. Alternatively, keep using the same + * Graphics instance and call `clear()` between redraws. + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Graphics = /*@__PURE__*/(function (Container) { + function Graphics(geometry) + { + if ( geometry === void 0 ) geometry = null; + + Container.call(this); + /** + * Includes vertex positions, face indices, normals, colors, UVs, and + * custom attributes within buffers, reducing the cost of passing all + * this data to the GPU. Can be shared between multiple Mesh or Graphics objects. + * @member {PIXI.GraphicsGeometry} + * @readonly + */ + this.geometry = geometry || new GraphicsGeometry(); + + this.geometry.refCount++; + + /** + * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU. + * Can be shared between multiple Graphics objects. + * @member {PIXI.Shader} + */ + this.shader = null; + + /** + * Represents the WebGL state the Graphics required to render, excludes shader and geometry. E.g., + * blend mode, culling, depth testing, direction of rendering triangles, backface, etc. + * @member {PIXI.State} + */ + this.state = State.for2d(); + + /** + * Current fill style + * + * @member {PIXI.FillStyle} + * @protected + */ + this._fillStyle = new FillStyle(); + + /** + * Current line style + * + * @member {PIXI.LineStyle} + * @protected + */ + this._lineStyle = new LineStyle(); + + /** + * Current shape transform matrix. + * + * @member {PIXI.Matrix} + * @protected + */ + this._matrix = null; + + /** + * Current hole mode is enabled. + * + * @member {boolean} + * @default false + * @protected + */ + this._holeMode = false; + + /** + * Current path + * + * @member {PIXI.Polygon} + * @protected + */ + this.currentPath = null; + + /** + * When cacheAsBitmap is set to true the graphics object will be rendered as if it was a sprite. + * This is useful if your graphics element does not change often, as it will speed up the rendering + * of the object in exchange for taking up texture memory. It is also useful if you need the graphics + * object to be anti-aliased, because it will be rendered using canvas. This is not recommended if + * you are constantly redrawing the graphics element. + * + * @name cacheAsBitmap + * @member {boolean} + * @memberof PIXI.Graphics# + * @default false + */ + + /** + * A collections of batches! These can be drawn by the renderer batch system. + * + * @protected + * @member {object[]} + */ + this.batches = []; + + /** + * Update dirty for limiting calculating tints for batches. + * + * @protected + * @member {number} + * @default -1 + */ + this.batchTint = -1; + + /** + * Copy of the object vertex data. + * + * @protected + * @member {Float32Array} + */ + this.vertexData = null; + + this._transformID = -1; + this.batchDirty = -1; + + /** + * Renderer plugin for batching + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + // Set default + this.tint = 0xFFFFFF; + this.blendMode = BLEND_MODES.NORMAL; + } + + if ( Container ) Graphics.__proto__ = Container; + Graphics.prototype = Object.create( Container && Container.prototype ); + Graphics.prototype.constructor = Graphics; + + var prototypeAccessors = { blendMode: { configurable: true },tint: { configurable: true },fill: { configurable: true },line: { configurable: true } }; + + /** + * Creates a new Graphics object with the same values as this one. + * Note that the only the properties of the object are cloned, not its transform (position,scale,etc) + * + * @return {PIXI.Graphics} A clone of the graphics object + */ + Graphics.prototype.clone = function clone () + { + this.finishPoly(); + + return new Graphics(this.geometry); + }; + + /** + * The blend mode to be applied to the graphic shape. Apply a value of + * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL; + * @see PIXI.BLEND_MODES + */ + prototypeAccessors.blendMode.set = function (value) + { + this.state.blendMode = value; + }; + + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + /** + * The tint applied to the graphic shape. This is a hex value. A value of + * 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + prototypeAccessors.tint.set = function (value) + { + this._tint = value; + }; + + /** + * The current fill style. + * + * @member {PIXI.FillStyle} + * @readonly + */ + prototypeAccessors.fill.get = function () + { + return this._fillStyle; + }; + + /** + * The current line style. + * + * @member {PIXI.LineStyle} + * @readonly + */ + prototypeAccessors.line.get = function () + { + return this._lineStyle; + }; + + /** + * Specifies the line style used for subsequent calls to Graphics methods such as the lineTo() + * method or the drawCircle() method. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineStyle = function lineStyle (width, color, alpha, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + this.lineTextureStyle(width, Texture.WHITE, color, alpha, null, alignment, native); + + return this; + }; + + /** + * Like line style but support texture for line fill. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to use + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {PIXI.Matrix} [matrix=null] Texture matrix to transform texture + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTextureStyle = function lineTextureStyle (width, texture, color, alpha, + matrix, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = width > 0 && alpha > 0; + + if (!visible) + { + this._lineStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._lineStyle, { + color: color, + width: width, + alpha: alpha, + matrix: matrix, + texture: texture, + alignment: alignment, + native: native, + visible: visible, + }); + } + + return this; + }; + + /** + * Start a polygon object internally + * @protected + */ + Graphics.prototype.startPoly = function startPoly () + { + if (this.currentPath) + { + var points = this.currentPath.points; + var len = this.currentPath.points.length; + + if (len > 2) + { + this.drawShape(this.currentPath); + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + this.currentPath.points.push(points[len - 2], points[len - 1]); + } + } + else + { + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + } + }; + + /** + * Finish the polygon object. + * @protected + */ + Graphics.prototype.finishPoly = function finishPoly () + { + if (this.currentPath) + { + if (this.currentPath.points.length > 2) + { + this.drawShape(this.currentPath); + this.currentPath = null; + } + else + { + this.currentPath.points.length = 0; + } + } + }; + + /** + * Moves the current drawing position to x, y. + * + * @param {number} x - the X coordinate to move to + * @param {number} y - the Y coordinate to move to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.moveTo = function moveTo (x, y) + { + this.startPoly(); + this.currentPath.points[0] = x; + this.currentPath.points[1] = y; + + return this; + }; + + /** + * Draws a line using the current line style from the current drawing position to (x, y); + * The current drawing position is then set to (x, y). + * + * @param {number} x - the X coordinate to draw to + * @param {number} y - the Y coordinate to draw to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTo = function lineTo (x, y) + { + if (!this.currentPath) + { + this.moveTo(0, 0); + } + + // remove duplicates.. + var points = this.currentPath.points; + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + if (fromX !== x || fromY !== y) + { + points.push(x, y); + } + + return this; + }; + + /** + * Initialize the curve + * + * @protected + * @param {number} [x=0] + * @param {number} [y=0] + */ + Graphics.prototype._initCurve = function _initCurve (x, y) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + if (this.currentPath) + { + if (this.currentPath.points.length === 0) + { + this.currentPath.points = [x, y]; + } + } + else + { + this.moveTo(x, y); + } + }; + + /** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.quadraticCurveTo = function quadraticCurveTo (cpX, cpY, toX, toY) + { + this._initCurve(); + + var points = this.currentPath.points; + + if (points.length === 0) + { + this.moveTo(0, 0); + } + + QuadraticUtils.curveTo(cpX, cpY, toX, toY, points); + + return this; + }; + + /** + * Calculate the points for a bezier curve and then draws it. + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.bezierCurveTo = function bezierCurveTo (cpX, cpY, cpX2, cpY2, toX, toY) + { + this._initCurve(); + + BezierUtils.curveTo(cpX, cpY, cpX2, cpY2, toX, toY, this.currentPath.points); + + return this; + }; + + /** + * The arcTo() method creates an arc/curve between two tangents on the canvas. + * + * "borrowed" from https://code.google.com/p/fxcanvas/ - thanks google! + * + * @param {number} x1 - The x-coordinate of the first tangent point of the arc + * @param {number} y1 - The y-coordinate of the first tangent point of the arc + * @param {number} x2 - The x-coordinate of the end of the arc + * @param {number} y2 - The y-coordinate of the end of the arc + * @param {number} radius - The radius of the arc + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arcTo = function arcTo (x1, y1, x2, y2, radius) + { + this._initCurve(x1, y1); + + var points = this.currentPath.points; + + var result = ArcUtils.curveTo(x1, y1, x2, y2, radius, points); + + if (result) + { + var cx = result.cx; + var cy = result.cy; + var radius$1 = result.radius; + var startAngle = result.startAngle; + var endAngle = result.endAngle; + var anticlockwise = result.anticlockwise; + + this.arc(cx, cy, radius$1, startAngle, endAngle, anticlockwise); + } + + return this; + }; + + /** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arc = function arc (cx, cy, radius, startAngle, endAngle, anticlockwise) + { + if ( anticlockwise === void 0 ) anticlockwise = false; + + if (startAngle === endAngle) + { + return this; + } + + if (!anticlockwise && endAngle <= startAngle) + { + endAngle += PI_2; + } + else if (anticlockwise && startAngle <= endAngle) + { + startAngle += PI_2; + } + + var sweep = endAngle - startAngle; + + if (sweep === 0) + { + return this; + } + + var startX = cx + (Math.cos(startAngle) * radius); + var startY = cy + (Math.sin(startAngle) * radius); + var eps = this.geometry.closePointEps; + + // If the currentPath exists, take its points. Otherwise call `moveTo` to start a path. + var points = this.currentPath ? this.currentPath.points : null; + + if (points) + { + // TODO: make a better fix. + + // We check how far our start is from the last existing point + var xDiff = Math.abs(points[points.length - 2] - startX); + var yDiff = Math.abs(points[points.length - 1] - startY); + + if (xDiff < eps && yDiff < eps) + ; + else + { + points.push(startX, startY); + } + } + else + { + this.moveTo(startX, startY); + points = this.currentPath.points; + } + + ArcUtils.arc(startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points); + + return this; + }; + + /** + * Specifies a simple one-color fill that subsequent calls to other Graphics methods + * (such as lineTo() or drawCircle()) use when drawing. + * + * @param {number} [color=0] - the color of the fill + * @param {number} [alpha=1] - the alpha of the fill + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginFill = function beginFill (color, alpha) + { + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + + return this.beginTextureFill(Texture.WHITE, color, alpha); + }; + + /** + * Begin the texture fill + * + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to fill + * @param {number} [color=0xffffff] - Background to fill behind texture + * @param {number} [alpha=1] - Alpha of fill + * @param {PIXI.Matrix} [matrix=null] - Transform matrix + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginTextureFill = function beginTextureFill (texture, color, alpha, matrix) + { + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = alpha > 0; + + if (!visible) + { + this._fillStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._fillStyle, { + color: color, + alpha: alpha, + texture: texture, + matrix: matrix, + visible: visible, + }); + } + + return this; + }; + + /** + * Applies a fill to the lines and shapes that were added since the last call to the beginFill() method. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.endFill = function endFill () + { + this.finishPoly(); + + this._fillStyle.reset(); + + return this; + }; + + /** + * Draws a rectangle shape. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRect = function drawRect (x, y, width, height) + { + return this.drawShape(new Rectangle(x, y, width, height)); + }; + + /** + * Draw a rectangle shape with rounded/beveled corners. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @param {number} radius - Radius of the rectangle corners + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRoundedRect = function drawRoundedRect (x, y, width, height, radius) + { + return this.drawShape(new RoundedRectangle(x, y, width, height, radius)); + }; + + /** + * Draws a circle. + * + * @param {number} x - The X coordinate of the center of the circle + * @param {number} y - The Y coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawCircle = function drawCircle (x, y, radius) + { + return this.drawShape(new Circle(x, y, radius)); + }; + + /** + * Draws an ellipse. + * + * @param {number} x - The X coordinate of the center of the ellipse + * @param {number} y - The Y coordinate of the center of the ellipse + * @param {number} width - The half width of the ellipse + * @param {number} height - The half height of the ellipse + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawEllipse = function drawEllipse (x, y, width, height) + { + return this.drawShape(new Ellipse(x, y, width, height)); + }; + + /** + * Draws a polygon using the given path. + * + * @param {number[]|PIXI.Point[]|PIXI.Polygon} path - The path data used to construct the polygon. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawPolygon = function drawPolygon (path) + { + var arguments$1 = arguments; + + // prevents an argument assignment deopt + // see section 3.1: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + var points = path; + + var closeStroke = true;// !!this._fillStyle; + + // check if data has points.. + if (points.points) + { + closeStroke = points.closeStroke; + points = points.points; + } + + if (!Array.isArray(points)) + { + // prevents an argument leak deopt + // see section 3.2: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + points = new Array(arguments.length); + + for (var i = 0; i < points.length; ++i) + { + points[i] = arguments$1[i]; // eslint-disable-line prefer-rest-params + } + } + + var shape = new Polygon(points); + + shape.closeStroke = closeStroke; + + this.drawShape(shape); + + return this; + }; + + /** + * Draw any shape. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - Shape to draw + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawShape = function drawShape (shape) + { + if (!this._holeMode) + { + this.geometry.drawShape( + shape, + this._fillStyle.clone(), + this._lineStyle.clone(), + this._matrix + ); + } + else + { + this.geometry.drawHole(shape, this._matrix); + } + + return this; + }; + + /** + * Draw a star shape with an arbitrary number of points. + * + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawStar = function drawStar (x, y, points, radius, innerRadius, rotation) + { + if ( rotation === void 0 ) rotation = 0; + + return this.drawPolygon(new Star(x, y, points, radius, innerRadius, rotation)); + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.clear = function clear () + { + this.geometry.clear(); + this._lineStyle.reset(); + this._fillStyle.reset(); + + this._matrix = null; + this._holeMode = false; + this.currentPath = null; + + return this; + }; + + /** + * True if graphics consists of one rectangle, and thus, can be drawn like a Sprite and + * masked with gl.scissor. + * + * @returns {boolean} True if only 1 rect. + */ + Graphics.prototype.isFastRect = function isFastRect () + { + // will fix this! + return false; + // this.graphicsData.length === 1 + // && this.graphicsData[0].shape.type === SHAPES.RECT + // && !this.graphicsData[0].lineWidth; + }; + + /** + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._render = function _render (renderer) + { + this.finishPoly(); + + var geometry = this.geometry; + + // batch part.. + // batch it! + geometry.updateBatches(); + + if (geometry.batchable) + { + if (this.batchDirty !== geometry.batchDirty) + { + this._populateBatches(); + } + + this._renderBatched(renderer); + } + else + { + // no batching... + renderer.batch.flush(); + + this._renderDirect(renderer); + } + }; + + /** + * Populating batches for rendering + * + * @protected + */ + Graphics.prototype._populateBatches = function _populateBatches () + { + var geometry = this.geometry; + var blendMode = this.blendMode; + + this.batches = []; + this.batchTint = -1; + this._transformID = -1; + this.batchDirty = geometry.batchDirty; + + this.vertexData = new Float32Array(geometry.points); + + for (var i = 0, l = geometry.batches.length; i < l; i++) + { + var gI = geometry.batches[i]; + var color = gI.style.color; + var vertexData = new Float32Array(this.vertexData.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var uvs = new Float32Array(geometry.uvsFloat32.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var indices = new Uint16Array(geometry.indicesUint16.buffer, + gI.start * 2, + gI.size); + + var batch = { + vertexData: vertexData, + blendMode: blendMode, + indices: indices, + uvs: uvs, + _batchRGB: hex2rgb(color), + _tintRGB: color, + _texture: gI.style.texture, + alpha: gI.style.alpha, + worldAlpha: 1 }; + + this.batches[i] = batch; + } + }; + + /** + * Renders the batches using the BathedRenderer plugin + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderBatched = function _renderBatched (renderer) + { + if (!this.batches.length) + { + return; + } + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + + this.calculateVertices(); + this.calculateTints(); + + for (var i = 0, l = this.batches.length; i < l; i++) + { + var batch = this.batches[i]; + + batch.worldAlpha = this.worldAlpha * batch.alpha; + + renderer.plugins[this.pluginName].render(batch); + } + }; + + /** + * Renders the graphics direct + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderDirect = function _renderDirect (renderer) + { + var shader = this._resolveDirectShader(renderer); + + var geometry = this.geometry; + var tint = this.tint; + var worldAlpha = this.worldAlpha; + var uniforms = shader.uniforms; + var drawCalls = geometry.drawCalls; + + // lets set the transfomr + uniforms.translationMatrix = this.transform.worldTransform; + + // and then lets set the tint.. + uniforms.tint[0] = (((tint >> 16) & 0xFF) / 255) * worldAlpha; + uniforms.tint[1] = (((tint >> 8) & 0xFF) / 255) * worldAlpha; + uniforms.tint[2] = ((tint & 0xFF) / 255) * worldAlpha; + uniforms.tint[3] = worldAlpha; + + // the first draw call, we can set the uniforms of the shader directly here. + + // this means that we can tack advantage of the sync function of pixi! + // bind and sync uniforms.. + // there is a way to optimise this.. + renderer.shader.bind(shader); + renderer.geometry.bind(geometry, shader); + + // set state.. + renderer.state.set(this.state); + + // then render the rest of them... + for (var i = 0, l = drawCalls.length; i < l; i++) + { + this._renderDrawCallDirect(renderer, geometry.drawCalls[i]); + } + }; + + /** + * Renders specific DrawCall + * + * @param {PIXI.Renderer} renderer + * @param {PIXI.BatchDrawCall} drawCall + */ + Graphics.prototype._renderDrawCallDirect = function _renderDrawCallDirect (renderer, drawCall) + { + var groupTextureCount = drawCall.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + renderer.texture.bind(drawCall.textures[j], j); + } + + renderer.geometry.draw(drawCall.type, drawCall.size, drawCall.start); + }; + + /** + * Resolves shader for direct rendering + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._resolveDirectShader = function _resolveDirectShader (renderer) + { + var shader = this.shader; + + var pluginName = this.pluginName; + + if (!shader) + { + // if there is no shader here, we can use the default shader. + // and that only gets created if we actually need it.. + // but may be more than one plugins for graphics + if (!DEFAULT_SHADERS[pluginName]) + { + var sampleValues = new Int32Array(16); + + for (var i = 0; i < 16; i++) + { + sampleValues[i] = i; + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: UniformGroup.from({ uSamplers: sampleValues }, true), + }; + + var program = renderer.plugins[pluginName]._shader.program; + + DEFAULT_SHADERS[pluginName] = new Shader(program, uniforms); + } + + shader = DEFAULT_SHADERS[pluginName]; + } + + return shader; + }; + + /** + * Retrieves the bounds of the graphic shape as a rectangle object + * + * @protected + */ + Graphics.prototype._calculateBounds = function _calculateBounds () + { + this.finishPoly(); + var lb = this.geometry.bounds; + + this._bounds.addFrame(this.transform, lb.minX, lb.minY, lb.maxX, lb.maxY); + }; + + /** + * Tests if a point is inside this graphics object + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Graphics.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, Graphics._TEMP_POINT); + + return this.geometry.containsPoint(Graphics._TEMP_POINT); + }; + + /** + * Recalcuate the tint by applying tin to batches using Graphics tint. + * @protected + */ + Graphics.prototype.calculateTints = function calculateTints () + { + if (this.batchTint !== this.tint) + { + this.batchTint = this.tint; + + var tintRGB = hex2rgb(this.tint, temp); + + for (var i = 0; i < this.batches.length; i++) + { + var batch = this.batches[i]; + + var batchTint = batch._batchRGB; + + var r = (tintRGB[0] * batchTint[0]) * 255; + var g = (tintRGB[1] * batchTint[1]) * 255; + var b = (tintRGB[2] * batchTint[2]) * 255; + + // TODO Ivan, can this be done in one go? + var color = (r << 16) + (g << 8) + (b | 0); + + batch._tintRGB = (color >> 16) + + (color & 0xff00) + + ((color & 0xff) << 16); + } + } + }; + + /** + * If there's a transform update or a change to the shape of the + * geometry, recaculate the vertices. + * @protected + */ + Graphics.prototype.calculateVertices = function calculateVertices () + { + if (this._transformID === this.transform._worldID) + { + return; + } + + this._transformID = this.transform._worldID; + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var data = this.geometry.points;// batch.vertexDataOriginal; + var vertexData = this.vertexData; + + var count = 0; + + for (var i = 0; i < data.length; i += 2) + { + var x = data[i]; + var y = data[i + 1]; + + vertexData[count++] = (a * x) + (c * y) + tx; + vertexData[count++] = (d * y) + (b * x) + ty; + } + }; + + /** + * Closes the current path. + * + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.closePath = function closePath () + { + var currentPath = this.currentPath; + + if (currentPath) + { + // we don't need to add extra point in the end because buildLine will take care of that + currentPath.closeStroke = true; + } + + return this; + }; + + /** + * Apply a matrix to the positional data. + * + * @param {PIXI.Matrix} matrix - Matrix to use for transform current shape. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.setMatrix = function setMatrix (matrix) + { + this._matrix = matrix; + + return this; + }; + + /** + * Begin adding holes to the last draw shape + * IMPORTANT: holes must be fully inside a shape to work + * Also weirdness ensues if holes overlap! + * Ellipses, Circles, Rectangles and Rounded Rectangles cannot be holes or host for holes in CanvasRenderer, + * please use `moveTo` `lineTo`, `quadraticCurveTo` if you rely on pixi-legacy bundle. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.beginHole = function beginHole () + { + this.finishPoly(); + this._holeMode = true; + + return this; + }; + + /** + * End adding holes to the last draw shape + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.endHole = function endHole () + { + this.finishPoly(); + this._holeMode = false; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Graphics.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this.geometry.refCount--; + if (this.geometry.refCount === 0) + { + this.geometry.dispose(); + } + + this._matrix = null; + this.currentPath = null; + this._lineStyle.destroy(); + this._lineStyle = null; + this._fillStyle.destroy(); + this._fillStyle = null; + this.geometry = null; + this.shader = null; + this.vertexData = null; + this.batches.length = 0; + this.batches = null; + + Container.prototype.destroy.call(this, options); + }; + + Object.defineProperties( Graphics.prototype, prototypeAccessors ); + + return Graphics; +}(Container)); + +/** + * Temporary point to use for containsPoint + * + * @static + * @private + * @member {PIXI.Point} + */ +Graphics._TEMP_POINT = new Point(); + +/*! + * @pixi/sprite - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint = new Point(); +var indices = new Uint16Array([0, 1, 2, 0, 2, 3]); + +/** + * The Sprite object is the base for all textured objects that are rendered to the screen +* + * A sprite can be created directly from an image like this: + * + * ```js + * let sprite = PIXI.Sprite.from('assets/image.png'); + * ``` + * + * The more efficient way to create sprites is using a {@link PIXI.Spritesheet}, + * as swapping base textures when rendering to the screen is inefficient. + * + * ```js + * PIXI.Loader.shared.add("assets/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["assets/spritesheet.json"].spritesheet; + * let sprite = new PIXI.Sprite(sheet.textures["image.png"]); + * ... + * } + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Sprite = /*@__PURE__*/(function (Container) { + function Sprite(texture) + { + Container.call(this); + + /** + * The anchor point defines the normalized coordinates + * in the texture that map to the position of this + * sprite. + * + * By default, this is `(0,0)` (or `texture.defaultAnchor` + * if you have modified that), which means the position + * `(x,y)` of this `Sprite` will be the top-left corner. + * + * Note: Updating `texture.defaultAnchor` after + * constructing a `Sprite` does _not_ update its anchor. + * + * {@link https://docs.cocos2d-x.org/cocos2d-x/en/sprites/manipulation.html} + * + * @default `texture.defaultAnchor` + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint( + this._onAnchorUpdate, + this, + (texture ? texture.defaultAnchor.x : 0), + (texture ? texture.defaultAnchor.y : 0) + ); + + /** + * The texture that the sprite is using + * + * @private + * @member {PIXI.Texture} + */ + this._texture = null; + + /** + * The width of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._width = 0; + + /** + * The height of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._height = 0; + + /** + * The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect. + * + * @private + * @member {number} + * @default 0xFFFFFF + */ + this._tint = null; + this._tintRGB = null; + this.tint = 0xFFFFFF; + + /** + * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ + this.blendMode = BLEND_MODES.NORMAL; + + /** + * The shader that will be used to render the sprite. Set to null to remove a current shader. + * + * @member {PIXI.Filter|PIXI.Shader} + */ + this.shader = null; + + /** + * Cached tint value so we can tell when the tint is changed. + * Value is used for 2d CanvasRenderer. + * + * @protected + * @member {number} + * @default 0xFFFFFF + */ + this._cachedTint = 0xFFFFFF; + + /** + * this is used to store the uvs data of the sprite, assigned at the same time + * as the vertexData in calculateVertices() + * + * @private + * @member {Float32Array} + */ + this.uvs = null; + + // call texture setter + this.texture = texture || Texture.EMPTY; + + /** + * this is used to store the vertex data of the sprite (basically a quad) + * + * @private + * @member {Float32Array} + */ + this.vertexData = new Float32Array(8); + + /** + * This is used to calculate the bounds of the object IF it is a trimmed sprite + * + * @private + * @member {Float32Array} + */ + this.vertexTrimmedData = null; + + this._transformID = -1; + this._textureID = -1; + + this._transformTrimmedID = -1; + this._textureTrimmedID = -1; + + // Batchable stuff.. + // TODO could make this a mixin? + this.indices = indices; + this.size = 4; + this.start = 0; + + /** + * Plugin that is responsible for rendering this element. + * Allows to customize the rendering process without overriding '_render' & '_renderCanvas' methods. + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = true; + + /** + * Internal roundPixels field + * + * @member {boolean} + * @private + */ + this._roundPixels = settings.ROUND_PIXELS; + } + + if ( Container ) Sprite.__proto__ = Container; + Sprite.prototype = Object.create( Container && Container.prototype ); + Sprite.prototype.constructor = Sprite; + + var prototypeAccessors = { roundPixels: { configurable: true },width: { configurable: true },height: { configurable: true },anchor: { configurable: true },tint: { configurable: true },texture: { configurable: true } }; + + /** + * When the texture is updated, this event will fire to update the scale and frame + * + * @private + */ + Sprite.prototype._onTextureUpdate = function _onTextureUpdate () + { + this._textureID = -1; + this._textureTrimmedID = -1; + this._cachedTint = 0xFFFFFF; + + // so if _width is 0 then width was not set.. + if (this._width) + { + this.scale.x = sign$1(this.scale.x) * this._width / this._texture.orig.width; + } + + if (this._height) + { + this.scale.y = sign$1(this.scale.y) * this._height / this._texture.orig.height; + } + }; + + /** + * Called when the anchor position updates. + * + * @private + */ + Sprite.prototype._onAnchorUpdate = function _onAnchorUpdate () + { + this._transformID = -1; + this._transformTrimmedID = -1; + }; + + /** + * calculates worldTransform * vertices, store it in vertexData + */ + Sprite.prototype.calculateVertices = function calculateVertices () + { + var texture = this._texture; + + if (this._transformID === this.transform._worldID && this._textureID === texture._updateID) + { + return; + } + + // update texture UV here, because base texture can be changed without calling `_onTextureUpdate` + if (this._textureID !== texture._updateID) + { + this.uvs = this._texture._uvs.uvsFloat32; + } + + this._transformID = this.transform._worldID; + this._textureID = texture._updateID; + + // set the vertex data + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + var vertexData = this.vertexData; + var trim = texture.trim; + var orig = texture.orig; + var anchor = this._anchor; + + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the extra + // space before transforming the sprite coords. + w1 = trim.x - (anchor._x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (anchor._y * orig.height); + h0 = h1 + trim.height; + } + else + { + w1 = -anchor._x * orig.width; + w0 = w1 + orig.width; + + h1 = -anchor._y * orig.height; + h0 = h1 + orig.height; + } + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + + if (this._roundPixels) + { + for (var i = 0; i < 8; i++) + { + vertexData[i] = Math.round(vertexData[i]); + } + } + }; + + /** + * calculates worldTransform * vertices for a non texture with a trim. store it in vertexTrimmedData + * This is used to ensure that the true width and height of a trimmed texture is respected + */ + Sprite.prototype.calculateTrimmedVertices = function calculateTrimmedVertices () + { + if (!this.vertexTrimmedData) + { + this.vertexTrimmedData = new Float32Array(8); + } + else if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID) + { + return; + } + + this._transformTrimmedID = this.transform._worldID; + this._textureTrimmedID = this._texture._updateID; + + // lets do some special trim code! + var texture = this._texture; + var vertexData = this.vertexTrimmedData; + var orig = texture.orig; + var anchor = this._anchor; + + // lets calculate the new untrimmed bounds.. + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var w1 = -anchor._x * orig.width; + var w0 = w1 + orig.width; + + var h1 = -anchor._y * orig.height; + var h0 = h1 + orig.height; + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + }; + + /** + * + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The webgl renderer to use. + */ + Sprite.prototype._render = function _render (renderer) + { + this.calculateVertices(); + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + renderer.plugins[this.pluginName].render(this); + }; + + /** + * Updates the bounds of the sprite. + * + * @protected + */ + Sprite.prototype._calculateBounds = function _calculateBounds () + { + var trim = this._texture.trim; + var orig = this._texture.orig; + + // First lets check to see if the current texture has a trim.. + if (!trim || (trim.width === orig.width && trim.height === orig.height)) + { + // no trim! lets use the usual calculations.. + this.calculateVertices(); + this._bounds.addQuad(this.vertexData); + } + else + { + // lets calculate a special trimmed bounds... + this.calculateTrimmedVertices(); + this._bounds.addQuad(this.vertexTrimmedData); + } + }; + + /** + * Gets the local bounds of the sprite object. + * + * @param {PIXI.Rectangle} [rect] - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Sprite.prototype.getLocalBounds = function getLocalBounds (rect) + { + // we can do a fast local bounds if the sprite has no children! + if (this.children.length === 0) + { + this._bounds.minX = this._texture.orig.width * -this._anchor._x; + this._bounds.minY = this._texture.orig.height * -this._anchor._y; + this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x); + this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y); + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + return this._bounds.getRectangle(rect); + } + + return Container.prototype.getLocalBounds.call(this, rect); + }; + + /** + * Tests if a point is inside this sprite + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Sprite.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, tempPoint); + + var width = this._texture.orig.width; + var height = this._texture.orig.height; + var x1 = -width * this.anchor.x; + var y1 = 0; + + if (tempPoint.x >= x1 && tempPoint.x < x1 + width) + { + y1 = -height * this.anchor.y; + + if (tempPoint.y >= y1 && tempPoint.y < y1 + height) + { + return true; + } + } + + return false; + }; + + /** + * Destroys this sprite and optionally its texture and children + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well + */ + Sprite.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this._texture.off('update', this._onTextureUpdate, this); + + this._anchor = null; + + var destroyTexture = typeof options === 'boolean' ? options : options && options.texture; + + if (destroyTexture) + { + var destroyBaseTexture = typeof options === 'boolean' ? options : options && options.baseTexture; + + this._texture.destroy(!!destroyBaseTexture); + } + + this._texture = null; + this.shader = null; + }; + + // some helper functions.. + + /** + * Helper function that creates a new sprite based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Sprite} The newly created sprite + */ + Sprite.from = function from (source, options) + { + var texture = (source instanceof Texture) + ? source + : Texture.from(source, options); + + return new Sprite(texture); + }; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + prototypeAccessors.roundPixels.set = function (value) + { + if (this._roundPixels !== value) + { + this._transformID = -1; + } + this._roundPixels = value; + }; + + prototypeAccessors.roundPixels.get = function () + { + return this._roundPixels; + }; + + /** + * The width of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * The anchor sets the origin point of the text. The default value is taken from the {@link PIXI.Texture|Texture} + * and passed to the constructor. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * If you pass only single parameter, it will set both x and y to the same value as shown in the example below. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.anchor.set(0.5); // This will set the origin to center. (0.5) is same as (0.5, 0.5). + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + this._anchor.copyFrom(value); + }; + + /** + * The tint applied to the sprite. This is a hex value. + * A value of 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._tint = value; + this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16); + }; + + /** + * The texture that the sprite is using + * + * @member {PIXI.Texture} + */ + prototypeAccessors.texture.get = function () + { + return this._texture; + }; + + prototypeAccessors.texture.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._texture === value) + { + return; + } + + this._texture = value || Texture.EMPTY; + this._cachedTint = 0xFFFFFF; + + this._textureID = -1; + this._textureTrimmedID = -1; + + if (value) + { + // wait for the texture to load + if (value.baseTexture.valid) + { + this._onTextureUpdate(); + } + else + { + value.once('update', this._onTextureUpdate, this); + } + } + }; + + Object.defineProperties( Sprite.prototype, prototypeAccessors ); + + return Sprite; +}(Container)); + +/*! + * @pixi/text - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Constants that define the type of gradient on text. + * + * @static + * @constant + * @name TEXT_GRADIENT + * @memberof PIXI + * @type {object} + * @property {number} LINEAR_VERTICAL Vertical gradient + * @property {number} LINEAR_HORIZONTAL Linear gradient + */ +var TEXT_GRADIENT = { + LINEAR_VERTICAL: 0, + LINEAR_HORIZONTAL: 1, +}; + +// disabling eslint for now, going to rewrite this in v5 + +var defaultStyle = { + align: 'left', + breakWords: false, + dropShadow: false, + dropShadowAlpha: 1, + dropShadowAngle: Math.PI / 6, + dropShadowBlur: 0, + dropShadowColor: 'black', + dropShadowDistance: 5, + fill: 'black', + fillGradientType: TEXT_GRADIENT.LINEAR_VERTICAL, + fillGradientStops: [], + fontFamily: 'Arial', + fontSize: 26, + fontStyle: 'normal', + fontVariant: 'normal', + fontWeight: 'normal', + letterSpacing: 0, + lineHeight: 0, + lineJoin: 'miter', + miterLimit: 10, + padding: 0, + stroke: 'black', + strokeThickness: 0, + textBaseline: 'alphabetic', + trim: false, + whiteSpace: 'pre', + wordWrap: false, + wordWrapWidth: 100, + leading: 0, +}; + +var genericFontFamilies = [ + 'serif', + 'sans-serif', + 'monospace', + 'cursive', + 'fantasy', + 'system-ui' ]; + +/** + * A TextStyle Object contains information to decorate a Text objects. + * + * An instance can be shared between multiple Text objects; then changing the style will update all text objects using it. + * + * A tool can be used to generate a text style [here](https://pixijs.io/pixi-text-style). + * + * @class + * @memberof PIXI + */ +var TextStyle = function TextStyle(style) +{ + this.styleID = 0; + + this.reset(); + + deepCopyProperties(this, style, style); +}; + +var prototypeAccessors$7 = { align: { configurable: true },breakWords: { configurable: true },dropShadow: { configurable: true },dropShadowAlpha: { configurable: true },dropShadowAngle: { configurable: true },dropShadowBlur: { configurable: true },dropShadowColor: { configurable: true },dropShadowDistance: { configurable: true },fill: { configurable: true },fillGradientType: { configurable: true },fillGradientStops: { configurable: true },fontFamily: { configurable: true },fontSize: { configurable: true },fontStyle: { configurable: true },fontVariant: { configurable: true },fontWeight: { configurable: true },letterSpacing: { configurable: true },lineHeight: { configurable: true },leading: { configurable: true },lineJoin: { configurable: true },miterLimit: { configurable: true },padding: { configurable: true },stroke: { configurable: true },strokeThickness: { configurable: true },textBaseline: { configurable: true },trim: { configurable: true },whiteSpace: { configurable: true },wordWrap: { configurable: true },wordWrapWidth: { configurable: true } }; + +/** + * Creates a new TextStyle object with the same values as this one. + * Note that the only the properties of the object are cloned. + * + * @return {PIXI.TextStyle} New cloned TextStyle object + */ +TextStyle.prototype.clone = function clone () +{ + var clonedProperties = {}; + + deepCopyProperties(clonedProperties, this, defaultStyle); + + return new TextStyle(clonedProperties); +}; + +/** + * Resets all properties to the defaults specified in TextStyle.prototype._default + */ +TextStyle.prototype.reset = function reset () +{ + deepCopyProperties(this, defaultStyle, defaultStyle); +}; + +/** + * Alignment for multiline text ('left', 'center' or 'right'), does not affect single line text + * + * @member {string} + */ +prototypeAccessors$7.align.get = function () +{ + return this._align; +}; +prototypeAccessors$7.align.set = function (align) // eslint-disable-line require-jsdoc +{ + if (this._align !== align) + { + this._align = align; + this.styleID++; + } +}; + +/** + * Indicates if lines can be wrapped within words, it needs wordWrap to be set to true + * + * @member {boolean} + */ +prototypeAccessors$7.breakWords.get = function () +{ + return this._breakWords; +}; +prototypeAccessors$7.breakWords.set = function (breakWords) // eslint-disable-line require-jsdoc +{ + if (this._breakWords !== breakWords) + { + this._breakWords = breakWords; + this.styleID++; + } +}; + +/** + * Set a drop shadow for the text + * + * @member {boolean} + */ +prototypeAccessors$7.dropShadow.get = function () +{ + return this._dropShadow; +}; +prototypeAccessors$7.dropShadow.set = function (dropShadow) // eslint-disable-line require-jsdoc +{ + if (this._dropShadow !== dropShadow) + { + this._dropShadow = dropShadow; + this.styleID++; + } +}; + +/** + * Set alpha for the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAlpha.get = function () +{ + return this._dropShadowAlpha; +}; +prototypeAccessors$7.dropShadowAlpha.set = function (dropShadowAlpha) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAlpha !== dropShadowAlpha) + { + this._dropShadowAlpha = dropShadowAlpha; + this.styleID++; + } +}; + +/** + * Set a angle of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAngle.get = function () +{ + return this._dropShadowAngle; +}; +prototypeAccessors$7.dropShadowAngle.set = function (dropShadowAngle) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAngle !== dropShadowAngle) + { + this._dropShadowAngle = dropShadowAngle; + this.styleID++; + } +}; + +/** + * Set a shadow blur radius + * + * @member {number} + */ +prototypeAccessors$7.dropShadowBlur.get = function () +{ + return this._dropShadowBlur; +}; +prototypeAccessors$7.dropShadowBlur.set = function (dropShadowBlur) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowBlur !== dropShadowBlur) + { + this._dropShadowBlur = dropShadowBlur; + this.styleID++; + } +}; + +/** + * A fill style to be used on the dropshadow e.g 'red', '#00FF00' + * + * @member {string|number} + */ +prototypeAccessors$7.dropShadowColor.get = function () +{ + return this._dropShadowColor; +}; +prototypeAccessors$7.dropShadowColor.set = function (dropShadowColor) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(dropShadowColor); + if (this._dropShadowColor !== outputColor) + { + this._dropShadowColor = outputColor; + this.styleID++; + } +}; + +/** + * Set a distance of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowDistance.get = function () +{ + return this._dropShadowDistance; +}; +prototypeAccessors$7.dropShadowDistance.set = function (dropShadowDistance) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowDistance !== dropShadowDistance) + { + this._dropShadowDistance = dropShadowDistance; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text e.g 'red', '#00FF00'. + * Can be an array to create a gradient eg ['#000000','#FFFFFF'] + * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle|MDN} + * + * @member {string|string[]|number|number[]|CanvasGradient|CanvasPattern} + */ +prototypeAccessors$7.fill.get = function () +{ + return this._fill; +}; +prototypeAccessors$7.fill.set = function (fill) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(fill); + if (this._fill !== outputColor) + { + this._fill = outputColor; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this can change the type/direction of the gradient. + * See {@link PIXI.TEXT_GRADIENT} + * + * @member {number} + */ +prototypeAccessors$7.fillGradientType.get = function () +{ + return this._fillGradientType; +}; +prototypeAccessors$7.fillGradientType.set = function (fillGradientType) // eslint-disable-line require-jsdoc +{ + if (this._fillGradientType !== fillGradientType) + { + this._fillGradientType = fillGradientType; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this array can set the stop points + * (numbers between 0 and 1) for the color, overriding the default behaviour of evenly spacing them. + * + * @member {number[]} + */ +prototypeAccessors$7.fillGradientStops.get = function () +{ + return this._fillGradientStops; +}; +prototypeAccessors$7.fillGradientStops.set = function (fillGradientStops) // eslint-disable-line require-jsdoc +{ + if (!areArraysEqual(this._fillGradientStops,fillGradientStops)) + { + this._fillGradientStops = fillGradientStops; + this.styleID++; + } +}; + +/** + * The font family + * + * @member {string|string[]} + */ +prototypeAccessors$7.fontFamily.get = function () +{ + return this._fontFamily; +}; +prototypeAccessors$7.fontFamily.set = function (fontFamily) // eslint-disable-line require-jsdoc +{ + if (this.fontFamily !== fontFamily) + { + this._fontFamily = fontFamily; + this.styleID++; + } +}; + +/** + * The font size + * (as a number it converts to px, but as a string, equivalents are '26px','20pt','160%' or '1.6em') + * + * @member {number|string} + */ +prototypeAccessors$7.fontSize.get = function () +{ + return this._fontSize; +}; +prototypeAccessors$7.fontSize.set = function (fontSize) // eslint-disable-line require-jsdoc +{ + if (this._fontSize !== fontSize) + { + this._fontSize = fontSize; + this.styleID++; + } +}; + +/** + * The font style + * ('normal', 'italic' or 'oblique') + * + * @member {string} + */ +prototypeAccessors$7.fontStyle.get = function () +{ + return this._fontStyle; +}; +prototypeAccessors$7.fontStyle.set = function (fontStyle) // eslint-disable-line require-jsdoc +{ + if (this._fontStyle !== fontStyle) + { + this._fontStyle = fontStyle; + this.styleID++; + } +}; + +/** + * The font variant + * ('normal' or 'small-caps') + * + * @member {string} + */ +prototypeAccessors$7.fontVariant.get = function () +{ + return this._fontVariant; +}; +prototypeAccessors$7.fontVariant.set = function (fontVariant) // eslint-disable-line require-jsdoc +{ + if (this._fontVariant !== fontVariant) + { + this._fontVariant = fontVariant; + this.styleID++; + } +}; + +/** + * The font weight + * ('normal', 'bold', 'bolder', 'lighter' and '100', '200', '300', '400', '500', '600', '700', 800' or '900') + * + * @member {string} + */ +prototypeAccessors$7.fontWeight.get = function () +{ + return this._fontWeight; +}; +prototypeAccessors$7.fontWeight.set = function (fontWeight) // eslint-disable-line require-jsdoc +{ + if (this._fontWeight !== fontWeight) + { + this._fontWeight = fontWeight; + this.styleID++; + } +}; + +/** + * The amount of spacing between letters, default is 0 + * + * @member {number} + */ +prototypeAccessors$7.letterSpacing.get = function () +{ + return this._letterSpacing; +}; +prototypeAccessors$7.letterSpacing.set = function (letterSpacing) // eslint-disable-line require-jsdoc +{ + if (this._letterSpacing !== letterSpacing) + { + this._letterSpacing = letterSpacing; + this.styleID++; + } +}; + +/** + * The line height, a number that represents the vertical space that a letter uses + * + * @member {number} + */ +prototypeAccessors$7.lineHeight.get = function () +{ + return this._lineHeight; +}; +prototypeAccessors$7.lineHeight.set = function (lineHeight) // eslint-disable-line require-jsdoc +{ + if (this._lineHeight !== lineHeight) + { + this._lineHeight = lineHeight; + this.styleID++; + } +}; + +/** + * The space between lines + * + * @member {number} + */ +prototypeAccessors$7.leading.get = function () +{ + return this._leading; +}; +prototypeAccessors$7.leading.set = function (leading) // eslint-disable-line require-jsdoc +{ + if (this._leading !== leading) + { + this._leading = leading; + this.styleID++; + } +}; + +/** + * The lineJoin property sets the type of corner created, it can resolve spiked text issues. + * Default is 'miter' (creates a sharp corner). + * + * @member {string} + */ +prototypeAccessors$7.lineJoin.get = function () +{ + return this._lineJoin; +}; +prototypeAccessors$7.lineJoin.set = function (lineJoin) // eslint-disable-line require-jsdoc +{ + if (this._lineJoin !== lineJoin) + { + this._lineJoin = lineJoin; + this.styleID++; + } +}; + +/** + * The miter limit to use when using the 'miter' lineJoin mode + * This can reduce or increase the spikiness of rendered text. + * + * @member {number} + */ +prototypeAccessors$7.miterLimit.get = function () +{ + return this._miterLimit; +}; +prototypeAccessors$7.miterLimit.set = function (miterLimit) // eslint-disable-line require-jsdoc +{ + if (this._miterLimit !== miterLimit) + { + this._miterLimit = miterLimit; + this.styleID++; + } +}; + +/** + * Occasionally some fonts are cropped. Adding some padding will prevent this from happening + * by adding padding to all sides of the text. + * + * @member {number} + */ +prototypeAccessors$7.padding.get = function () +{ + return this._padding; +}; +prototypeAccessors$7.padding.set = function (padding) // eslint-disable-line require-jsdoc +{ + if (this._padding !== padding) + { + this._padding = padding; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text stroke + * e.g 'blue', '#FCFF00' + * + * @member {string|number} + */ +prototypeAccessors$7.stroke.get = function () +{ + return this._stroke; +}; +prototypeAccessors$7.stroke.set = function (stroke) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(stroke); + if (this._stroke !== outputColor) + { + this._stroke = outputColor; + this.styleID++; + } +}; + +/** + * A number that represents the thickness of the stroke. + * Default is 0 (no stroke) + * + * @member {number} + */ +prototypeAccessors$7.strokeThickness.get = function () +{ + return this._strokeThickness; +}; +prototypeAccessors$7.strokeThickness.set = function (strokeThickness) // eslint-disable-line require-jsdoc +{ + if (this._strokeThickness !== strokeThickness) + { + this._strokeThickness = strokeThickness; + this.styleID++; + } +}; + +/** + * The baseline of the text that is rendered. + * + * @member {string} + */ +prototypeAccessors$7.textBaseline.get = function () +{ + return this._textBaseline; +}; +prototypeAccessors$7.textBaseline.set = function (textBaseline) // eslint-disable-line require-jsdoc +{ + if (this._textBaseline !== textBaseline) + { + this._textBaseline = textBaseline; + this.styleID++; + } +}; + +/** + * Trim transparent borders + * + * @member {boolean} + */ +prototypeAccessors$7.trim.get = function () +{ + return this._trim; +}; +prototypeAccessors$7.trim.set = function (trim) // eslint-disable-line require-jsdoc +{ + if (this._trim !== trim) + { + this._trim = trim; + this.styleID++; + } +}; + +/** + * How newlines and spaces should be handled. + * Default is 'pre' (preserve, preserve). + * + * value | New lines | Spaces + * --- | --- | --- + * 'normal' | Collapse | Collapse + * 'pre' | Preserve | Preserve + * 'pre-line' | Preserve | Collapse + * + * @member {string} + */ +prototypeAccessors$7.whiteSpace.get = function () +{ + return this._whiteSpace; +}; +prototypeAccessors$7.whiteSpace.set = function (whiteSpace) // eslint-disable-line require-jsdoc +{ + if (this._whiteSpace !== whiteSpace) + { + this._whiteSpace = whiteSpace; + this.styleID++; + } +}; + +/** + * Indicates if word wrap should be used + * + * @member {boolean} + */ +prototypeAccessors$7.wordWrap.get = function () +{ + return this._wordWrap; +}; +prototypeAccessors$7.wordWrap.set = function (wordWrap) // eslint-disable-line require-jsdoc +{ + if (this._wordWrap !== wordWrap) + { + this._wordWrap = wordWrap; + this.styleID++; + } +}; + +/** + * The width at which text will wrap, it needs wordWrap to be set to true + * + * @member {number} + */ +prototypeAccessors$7.wordWrapWidth.get = function () +{ + return this._wordWrapWidth; +}; +prototypeAccessors$7.wordWrapWidth.set = function (wordWrapWidth) // eslint-disable-line require-jsdoc +{ + if (this._wordWrapWidth !== wordWrapWidth) + { + this._wordWrapWidth = wordWrapWidth; + this.styleID++; + } +}; + +/** + * Generates a font style string to use for `TextMetrics.measureFont()`. + * + * @return {string} Font style string, for passing to `TextMetrics.measureFont()` + */ +TextStyle.prototype.toFontString = function toFontString () +{ + // build canvas api font setting from individual components. Convert a numeric this.fontSize to px + var fontSizeString = (typeof this.fontSize === 'number') ? ((this.fontSize) + "px") : this.fontSize; + + // Clean-up fontFamily property by quoting each font name + // this will support font names with spaces + var fontFamilies = this.fontFamily; + + if (!Array.isArray(this.fontFamily)) + { + fontFamilies = this.fontFamily.split(','); + } + + for (var i = fontFamilies.length - 1; i >= 0; i--) + { + // Trim any extra white-space + var fontFamily = fontFamilies[i].trim(); + + // Check if font already contains strings + if (!(/([\"\'])[^\'\"]+\1/).test(fontFamily) && genericFontFamilies.indexOf(fontFamily) < 0) + { + fontFamily = "\"" + fontFamily + "\""; + } + fontFamilies[i] = fontFamily; + } + + return ((this.fontStyle) + " " + (this.fontVariant) + " " + (this.fontWeight) + " " + fontSizeString + " " + (fontFamilies.join(','))); +}; + +Object.defineProperties( TextStyle.prototype, prototypeAccessors$7 ); + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getSingleColor(color) +{ + if (typeof color === 'number') + { + return hex2string(color); + } + else if ( typeof color === 'string' ) + { + if ( color.indexOf('0x') === 0 ) + { + color = color.replace('0x', '#'); + } + } + + return color; +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getColor(color) +{ + if (!Array.isArray(color)) + { + return getSingleColor(color); + } + else + { + for (var i = 0; i < color.length; ++i) + { + color[i] = getSingleColor(color[i]); + } + + return color; + } +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {Array} array1 First array to compare + * @param {Array} array2 Second array to compare + * @return {boolean} Do the arrays contain the same values in the same order + */ +function areArraysEqual(array1, array2) +{ + if (!Array.isArray(array1) || !Array.isArray(array2)) + { + return false; + } + + if (array1.length !== array2.length) + { + return false; + } + + for (var i = 0; i < array1.length; ++i) + { + if (array1[i] !== array2[i]) + { + return false; + } + } + + return true; +} + +/** + * Utility function to ensure that object properties are copied by value, and not by reference + * @private + * @param {Object} target Target object to copy properties into + * @param {Object} source Source object for the properties to copy + * @param {string} propertyObj Object containing properties names we want to loop over + */ +function deepCopyProperties(target, source, propertyObj) { + for (var prop in propertyObj) { + if (Array.isArray(source[prop])) { + target[prop] = source[prop].slice(); + } else { + target[prop] = source[prop]; + } + } +} + +/** + * The TextMetrics object represents the measurement of a block of text with a specified style. + * + * ```js + * let style = new PIXI.TextStyle({fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}) + * let textMetrics = PIXI.TextMetrics.measureText('Your text', style) + * ``` + * + * @class + * @memberof PIXI + */ +var TextMetrics = function TextMetrics(text, style, width, height, lines, lineWidths, lineHeight, maxLineWidth, fontProperties) +{ + /** + * The text that was measured + * + * @member {string} + */ + this.text = text; + + /** + * The style that was measured + * + * @member {PIXI.TextStyle} + */ + this.style = style; + + /** + * The measured width of the text + * + * @member {number} + */ + this.width = width; + + /** + * The measured height of the text + * + * @member {number} + */ + this.height = height; + + /** + * An array of lines of the text broken by new lines and wrapping is specified in style + * + * @member {string[]} + */ + this.lines = lines; + + /** + * An array of the line widths for each line matched to `lines` + * + * @member {number[]} + */ + this.lineWidths = lineWidths; + + /** + * The measured line height for this style + * + * @member {number} + */ + this.lineHeight = lineHeight; + + /** + * The maximum line width for all measured lines + * + * @member {number} + */ + this.maxLineWidth = maxLineWidth; + + /** + * The font properties object from TextMetrics.measureFont + * + * @member {PIXI.IFontMetrics} + */ + this.fontProperties = fontProperties; +}; + +/** + * Measures the supplied string of text and returns a Rectangle. + * + * @param {string} text - the text to measure. + * @param {PIXI.TextStyle} style - the text style to use for measuring + * @param {boolean} [wordWrap] - optional override for if word-wrap should be applied to the text. + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {PIXI.TextMetrics} measured width and height of the text. + */ +TextMetrics.measureText = function measureText (text, style, wordWrap, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + wordWrap = (wordWrap === undefined || wordWrap === null) ? style.wordWrap : wordWrap; + var font = style.toFontString(); + var fontProperties = TextMetrics.measureFont(font); + + // fallback in case UA disallow canvas data extraction + // (toDataURI, getImageData functions) + if (fontProperties.fontSize === 0) + { + fontProperties.fontSize = style.fontSize; + fontProperties.ascent = style.fontSize; + } + + var context = canvas.getContext('2d'); + + context.font = font; + + var outputText = wordWrap ? TextMetrics.wordWrap(text, style, canvas) : text; + var lines = outputText.split(/(?:\r\n|\r|\n)/); + var lineWidths = new Array(lines.length); + var maxLineWidth = 0; + + for (var i = 0; i < lines.length; i++) + { + var lineWidth = context.measureText(lines[i]).width + ((lines[i].length - 1) * style.letterSpacing); + + lineWidths[i] = lineWidth; + maxLineWidth = Math.max(maxLineWidth, lineWidth); + } + var width = maxLineWidth + style.strokeThickness; + + if (style.dropShadow) + { + width += style.dropShadowDistance; + } + + var lineHeight = style.lineHeight || fontProperties.fontSize + style.strokeThickness; + var height = Math.max(lineHeight, fontProperties.fontSize + style.strokeThickness) + + ((lines.length - 1) * (lineHeight + style.leading)); + + if (style.dropShadow) + { + height += style.dropShadowDistance; + } + + return new TextMetrics( + text, + style, + width, + height, + lines, + lineWidths, + lineHeight + style.leading, + maxLineWidth, + fontProperties + ); +}; + +/** + * Applies newlines to a string to have it optimally fit into the horizontal + * bounds set by the Text object's wordWrapWidth property. + * + * @private + * @param {string} text - String to apply word wrapping to + * @param {PIXI.TextStyle} style - the style to use when wrapping + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {string} New string with new lines applied where required + */ +TextMetrics.wordWrap = function wordWrap (text, style, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + var context = canvas.getContext('2d'); + + var width = 0; + var line = ''; + var lines = ''; + + var cache = {}; + var letterSpacing = style.letterSpacing; + var whiteSpace = style.whiteSpace; + + // How to handle whitespaces + var collapseSpaces = TextMetrics.collapseSpaces(whiteSpace); + var collapseNewlines = TextMetrics.collapseNewlines(whiteSpace); + + // whether or not spaces may be added to the beginning of lines + var canPrependSpaces = !collapseSpaces; + + // There is letterSpacing after every char except the last one + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_! + // so for convenience the above needs to be compared to width + 1 extra letterSpace + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!_ + // ________________________________________________ + // And then the final space is simply no appended to each line + var wordWrapWidth = style.wordWrapWidth + letterSpacing; + + // break text into words, spaces and newline chars + var tokens = TextMetrics.tokenize(text); + + for (var i = 0; i < tokens.length; i++) + { + // get the word, space or newlineChar + var token = tokens[i]; + + // if word is a new line + if (TextMetrics.isNewline(token)) + { + // keep the new line + if (!collapseNewlines) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = !collapseSpaces; + line = ''; + width = 0; + continue; + } + + // if we should collapse new lines + // we simply convert it into a space + token = ' '; + } + + // if we should collapse repeated whitespaces + if (collapseSpaces) + { + // check both this and the last tokens for spaces + var currIsBreakingSpace = TextMetrics.isBreakingSpace(token); + var lastIsBreakingSpace = TextMetrics.isBreakingSpace(line[line.length - 1]); + + if (currIsBreakingSpace && lastIsBreakingSpace) + { + continue; + } + } + + // get word width from cache if possible + var tokenWidth = TextMetrics.getFromCache(token, letterSpacing, cache, context); + + // word is longer than desired bounds + if (tokenWidth > wordWrapWidth) + { + // if we are not already at the beginning of a line + if (line !== '') + { + // start newlines for overflow words + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + // break large word over multiple lines + if (TextMetrics.canBreakWords(token, style.breakWords)) + { + // break word into characters + var characters = token.split(''); + + // loop the characters + for (var j = 0; j < characters.length; j++) + { + var char = characters[j]; + + var k = 1; + // we are not at the end of the token + + while (characters[j + k]) + { + var nextChar = characters[j + k]; + var lastChar = char[char.length - 1]; + + // should not split chars + if (!TextMetrics.canBreakChars(lastChar, nextChar, token, j, style.breakWords)) + { + // combine chars & move forward one + char += nextChar; + } + else + { + break; + } + + k++; + } + + j += char.length - 1; + + var characterWidth = TextMetrics.getFromCache(char, letterSpacing, cache, context); + + if (characterWidth + width > wordWrapWidth) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = false; + line = ''; + width = 0; + } + + line += char; + width += characterWidth; + } + } + + // run word out of the bounds + else + { + // if there are words in this line already + // finish that line and start a new one + if (line.length > 0) + { + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + var isLastToken = i === tokens.length - 1; + + // give it its own line if it's not the end + lines += TextMetrics.addLine(token, !isLastToken); + canPrependSpaces = false; + line = ''; + width = 0; + } + } + + // word could fit + else + { + // word won't fit because of existing words + // start a new line + if (tokenWidth + width > wordWrapWidth) + { + // if its a space we don't want it + canPrependSpaces = false; + + // add a new line + lines += TextMetrics.addLine(line); + + // start a new line + line = ''; + width = 0; + } + + // don't add spaces to the beginning of lines + if (line.length > 0 || !TextMetrics.isBreakingSpace(token) || canPrependSpaces) + { + // add the word to the current line + line += token; + + // update width counter + width += tokenWidth; + } + } + } + + lines += TextMetrics.addLine(line, false); + + return lines; +}; + +/** + * Convienience function for logging each line added during the wordWrap + * method + * + * @private + * @param {string} line - The line of text to add + * @param {boolean} newLine - Add new line character to end + * @return {string} A formatted line + */ +TextMetrics.addLine = function addLine (line, newLine) +{ + if ( newLine === void 0 ) newLine = true; + + line = TextMetrics.trimRight(line); + + line = (newLine) ? (line + "\n") : line; + + return line; +}; + +/** + * Gets & sets the widths of calculated characters in a cache object + * + * @private + * @param {string} key The key + * @param {number} letterSpacing The letter spacing + * @param {object} cache The cache + * @param {CanvasRenderingContext2D} context The canvas context + * @return {number} The from cache. + */ +TextMetrics.getFromCache = function getFromCache (key, letterSpacing, cache, context) +{ + var width = cache[key]; + + if (width === undefined) + { + var spacing = ((key.length) * letterSpacing); + + width = context.measureText(key).width + spacing; + cache[key] = width; + } + + return width; +}; + +/** + * Determines whether we should collapse breaking spaces + * + * @private + * @param {string} whiteSpace The TextStyle property whiteSpace + * @return {boolean} should collapse + */ +TextMetrics.collapseSpaces = function collapseSpaces (whiteSpace) +{ + return (whiteSpace === 'normal' || whiteSpace === 'pre-line'); +}; + +/** + * Determines whether we should collapse newLine chars + * + * @private + * @param {string} whiteSpace The white space + * @return {boolean} should collapse + */ +TextMetrics.collapseNewlines = function collapseNewlines (whiteSpace) +{ + return (whiteSpace === 'normal'); +}; + +/** + * trims breaking whitespaces from string + * + * @private + * @param {string} text The text + * @return {string} trimmed string + */ +TextMetrics.trimRight = function trimRight (text) +{ + if (typeof text !== 'string') + { + return ''; + } + + for (var i = text.length - 1; i >= 0; i--) + { + var char = text[i]; + + if (!TextMetrics.isBreakingSpace(char)) + { + break; + } + + text = text.slice(0, -1); + } + + return text; +}; + +/** + * Determines if char is a newline. + * + * @private + * @param {string} char The character + * @return {boolean} True if newline, False otherwise. + */ +TextMetrics.isNewline = function isNewline (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._newlines.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Determines if char is a breaking whitespace. + * + * @private + * @param {string} char The character + * @return {boolean} True if whitespace, False otherwise. + */ +TextMetrics.isBreakingSpace = function isBreakingSpace (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._breakingSpaces.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Splits a string into words, breaking-spaces and newLine characters + * + * @private + * @param {string} text The text + * @return {string[]} A tokenized array + */ +TextMetrics.tokenize = function tokenize (text) +{ + var tokens = []; + var token = ''; + + if (typeof text !== 'string') + { + return tokens; + } + + for (var i = 0; i < text.length; i++) + { + var char = text[i]; + + if (TextMetrics.isBreakingSpace(char) || TextMetrics.isNewline(char)) + { + if (token !== '') + { + tokens.push(token); + token = ''; + } + + tokens.push(char); + + continue; + } + + token += char; + } + + if (token !== '') + { + tokens.push(token); + } + + return tokens; +}; + +/** + * This method exists to be easily overridden + * It allows one to customise which words should break + * Examples are if the token is CJK or numbers. + * It must return a boolean. + * + * @private + * @param {string} token The token + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakWords = function canBreakWords (token, breakWords) +{ + return breakWords; +}; + +/** + * This method exists to be easily overridden + * It allows one to determine whether a pair of characters + * should be broken by newlines + * For example certain characters in CJK langs or numbers. + * It must return a boolean. + * + * @private + * @param {string} char The character + * @param {string} nextChar The next character + * @param {string} token The token/word the characters are from + * @param {number} index The index in the token of the char + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakChars = function canBreakChars (char, nextChar, token, index, breakWords) // eslint-disable-line no-unused-vars +{ + return true; +}; + +/** + * Calculates the ascent, descent and fontSize of a given font-style + * + * @static + * @param {string} font - String representing the style of the font + * @return {PIXI.IFontMetrics} Font properties object + */ +TextMetrics.measureFont = function measureFont (font) +{ + // as this method is used for preparing assets, don't recalculate things if we don't need to + if (TextMetrics._fonts[font]) + { + return TextMetrics._fonts[font]; + } + + var properties = {}; + + var canvas = TextMetrics._canvas; + var context = TextMetrics._context; + + context.font = font; + + var metricsString = TextMetrics.METRICS_STRING + TextMetrics.BASELINE_SYMBOL; + var width = Math.ceil(context.measureText(metricsString).width); + var baseline = Math.ceil(context.measureText(TextMetrics.BASELINE_SYMBOL).width); + var height = 2 * baseline; + + baseline = baseline * TextMetrics.BASELINE_MULTIPLIER | 0; + + canvas.width = width; + canvas.height = height; + + context.fillStyle = '#f00'; + context.fillRect(0, 0, width, height); + + context.font = font; + + context.textBaseline = 'alphabetic'; + context.fillStyle = '#000'; + context.fillText(metricsString, 0, baseline); + + var imagedata = context.getImageData(0, 0, width, height).data; + var pixels = imagedata.length; + var line = width * 4; + + var i = 0; + var idx = 0; + var stop = false; + + // ascent. scan from top to bottom until we find a non red pixel + for (i = 0; i < baseline; ++i) + { + for (var j = 0; j < line; j += 4) + { + if (imagedata[idx + j] !== 255) + { + stop = true; + break; + } + } + if (!stop) + { + idx += line; + } + else + { + break; + } + } + + properties.ascent = baseline - i; + + idx = pixels - line; + stop = false; + + // descent. scan from bottom to top until we find a non red pixel + for (i = height; i > baseline; --i) + { + for (var j$1 = 0; j$1 < line; j$1 += 4) + { + if (imagedata[idx + j$1] !== 255) + { + stop = true; + break; + } + } + + if (!stop) + { + idx -= line; + } + else + { + break; + } + } + + properties.descent = i - baseline; + properties.fontSize = properties.ascent + properties.descent; + + TextMetrics._fonts[font] = properties; + + return properties; +}; + +/** + * Clear font metrics in metrics cache. + * + * @static + * @param {string} [font] - font name. If font name not set then clear cache for all fonts. + */ +TextMetrics.clearMetrics = function clearMetrics (font) +{ + if ( font === void 0 ) font = ''; + + if (font) + { + delete TextMetrics._fonts[font]; + } + else + { + TextMetrics._fonts = {}; + } +}; + +/** + * Internal return object for {@link PIXI.TextMetrics.measureFont `TextMetrics.measureFont`}. + * + * @typedef {object} FontMetrics + * @property {number} ascent - The ascent distance + * @property {number} descent - The descent distance + * @property {number} fontSize - Font size from ascent to descent + * @memberof PIXI.TextMetrics + * @private + */ + +var canvas = (function () { + try + { + // OffscreenCanvas2D measureText can be up to 40% faster. + var c = new OffscreenCanvas(0, 0); + + return c.getContext('2d') ? c : document.createElement('canvas'); + } + catch (ex) + { + return document.createElement('canvas'); + } +})(); + +canvas.width = canvas.height = 10; + +/** + * Cached canvas element for measuring text + * + * @memberof PIXI.TextMetrics + * @type {HTMLCanvasElement} + * @private + */ +TextMetrics._canvas = canvas; + +/** + * Cache for context to use. + * + * @memberof PIXI.TextMetrics + * @type {CanvasRenderingContext2D} + * @private + */ +TextMetrics._context = canvas.getContext('2d'); + +/** + * Cache of {@see PIXI.TextMetrics.FontMetrics} objects. + * + * @memberof PIXI.TextMetrics + * @type {Object} + * @private + */ +TextMetrics._fonts = {}; + +/** + * String used for calculate font metrics. + * These characters are all tall to help calculate the height required for text. + * + * @static + * @memberof PIXI.TextMetrics + * @name METRICS_STRING + * @type {string} + * @default |ÉqÅ + */ +TextMetrics.METRICS_STRING = '|ÉqÅ'; + +/** + * Baseline symbol for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_SYMBOL + * @type {string} + * @default M + */ +TextMetrics.BASELINE_SYMBOL = 'M'; + +/** + * Baseline multiplier for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_MULTIPLIER + * @type {number} + * @default 1.4 + */ +TextMetrics.BASELINE_MULTIPLIER = 1.4; + +/** + * Cache of new line chars. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._newlines = [ + 0x000A, // line feed + 0x000D ]; + +/** + * Cache of breaking spaces. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._breakingSpaces = [ + 0x0009, // character tabulation + 0x0020, // space + 0x2000, // en quad + 0x2001, // em quad + 0x2002, // en space + 0x2003, // em space + 0x2004, // three-per-em space + 0x2005, // four-per-em space + 0x2006, // six-per-em space + 0x2008, // punctuation space + 0x2009, // thin space + 0x200A, // hair space + 0x205F, // medium mathematical space + 0x3000 ]; + +/** + * A number, or a string containing a number. + * + * @memberof PIXI + * @typedef IFontMetrics + * @property {number} ascent - Font ascent + * @property {number} descent - Font descent + * @property {number} fontSize - Font size + */ + +/* eslint max-depth: [2, 8] */ + +var defaultDestroyOptions = { + texture: true, + children: false, + baseTexture: true, +}; + +/** + * A Text Object will create a line or multiple lines of text. + * + * The text is created using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API). + * + * The primary advantage of this class over BitmapText is that you have great control over the style of the next, + * which you can change at runtime. + * + * The primary disadvantages is that each piece of text has it's own texture, which can use more memory. + * When text changes, this texture has to be re-generated and re-uploaded to the GPU, taking up time. + * + * To split a line you can use '\n' in your text string, or, on the `style` object, + * change its `wordWrap` property to true and and give the `wordWrapWidth` property a value. + * + * A Text can be created directly from a string and a style object, + * which can be generated [here](https://pixijs.io/pixi-text-style). + * + * ```js + * let text = new PIXI.Text('This is a PixiJS text',{fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}); + * ``` + * + * @class + * @extends PIXI.Sprite + * @memberof PIXI + */ +var Text = /*@__PURE__*/(function (Sprite) { + function Text(text, style, canvas) + { + canvas = canvas || document.createElement('canvas'); + + canvas.width = 3; + canvas.height = 3; + + var texture = Texture.from(canvas); + + texture.orig = new Rectangle(); + texture.trim = new Rectangle(); + + Sprite.call(this, texture); + + /** + * The canvas element that everything is drawn to + * + * @member {HTMLCanvasElement} + */ + this.canvas = canvas; + + /** + * The canvas 2d context that everything is drawn with + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + this._resolution = settings.RESOLUTION; + this._autoResolution = true; + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = null; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._style = null; + /** + * Private listener to track style changes. + * + * @member {Function} + * @private + */ + this._styleListener = null; + + /** + * Private tracker for the current font. + * + * @member {string} + * @private + */ + this._font = ''; + + this.text = text; + this.style = style; + + this.localStyleID = -1; + } + + if ( Sprite ) Text.__proto__ = Sprite; + Text.prototype = Object.create( Sprite && Sprite.prototype ); + Text.prototype.constructor = Text; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },style: { configurable: true },text: { configurable: true },resolution: { configurable: true } }; + + /** + * Renders text and updates it when needed. + * + * @private + * @param {boolean} respectDirty - Whether to abort updating the text if the Text isn't dirty and the function is called. + */ + Text.prototype.updateText = function updateText (respectDirty) + { + var style = this._style; + + // check if style has changed.. + if (this.localStyleID !== style.styleID) + { + this.dirty = true; + this.localStyleID = style.styleID; + } + + if (!this.dirty && respectDirty) + { + return; + } + + this._font = this._style.toFontString(); + + var context = this.context; + var measured = TextMetrics.measureText(this._text || ' ', this._style, this._style.wordWrap, this.canvas); + var width = measured.width; + var height = measured.height; + var lines = measured.lines; + var lineHeight = measured.lineHeight; + var lineWidths = measured.lineWidths; + var maxLineWidth = measured.maxLineWidth; + var fontProperties = measured.fontProperties; + + this.canvas.width = Math.ceil((Math.max(1, width) + (style.padding * 2)) * this._resolution); + this.canvas.height = Math.ceil((Math.max(1, height) + (style.padding * 2)) * this._resolution); + + context.scale(this._resolution, this._resolution); + + context.clearRect(0, 0, this.canvas.width, this.canvas.height); + + context.font = this._font; + context.lineWidth = style.strokeThickness; + context.textBaseline = style.textBaseline; + context.lineJoin = style.lineJoin; + context.miterLimit = style.miterLimit; + + var linePositionX; + var linePositionY; + + // require 2 passes if a shadow; the first to draw the drop shadow, the second to draw the text + var passesCount = style.dropShadow ? 2 : 1; + + // For v4, we drew text at the colours of the drop shadow underneath the normal text. This gave the correct zIndex, + // but features such as alpha and shadowblur did not look right at all, since we were using actual text as a shadow. + // + // For v5.0.0, we moved over to just use the canvas API for drop shadows, which made them look much nicer and more + // visually please, but now because the stroke is drawn and then the fill, drop shadows would appear on both the fill + // and the stroke; and fill drop shadows would appear over the top of the stroke. + // + // For v5.1.1, the new route is to revert to v4 style of drawing text first to get the drop shadows underneath normal + // text, but instead drawing text in the correct location, we'll draw it off screen (-paddingY), and then adjust the + // drop shadow so only that appears on screen (+paddingY). Now we'll have the correct draw order of the shadow + // beneath the text, whilst also having the proper text shadow styling. + for (var i = 0; i < passesCount; ++i) + { + var isShadowPass = style.dropShadow && i === 0; + var dsOffsetText = isShadowPass ? height * 2 : 0; // we only want the drop shadow, so put text way off-screen + var dsOffsetShadow = dsOffsetText * this.resolution; + + if (isShadowPass) + { + // On Safari, text with gradient and drop shadows together do not position correctly + // if the scale of the canvas is not 1: https://bugs.webkit.org/show_bug.cgi?id=197689 + // Therefore we'll set the styles to be a plain black whilst generating this drop shadow + context.fillStyle = 'black'; + context.strokeStyle = 'black'; + + var dropShadowColor = style.dropShadowColor; + var rgb = hex2rgb(typeof dropShadowColor === 'number' ? dropShadowColor : string2hex(dropShadowColor)); + + context.shadowColor = "rgba(" + (rgb[0] * 255) + "," + (rgb[1] * 255) + "," + (rgb[2] * 255) + "," + (style.dropShadowAlpha) + ")"; + context.shadowBlur = style.dropShadowBlur; + context.shadowOffsetX = Math.cos(style.dropShadowAngle) * style.dropShadowDistance; + context.shadowOffsetY = (Math.sin(style.dropShadowAngle) * style.dropShadowDistance) + dsOffsetShadow; + } + else + { + // set canvas text styles + context.fillStyle = this._generateFillStyle(style, lines); + context.strokeStyle = style.stroke; + + context.shadowColor = 0; + context.shadowBlur = 0; + context.shadowOffsetX = 0; + context.shadowOffsetY = 0; + } + + // draw lines line by line + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + linePositionX = style.strokeThickness / 2; + linePositionY = ((style.strokeThickness / 2) + (i$1 * lineHeight)) + fontProperties.ascent; + + if (style.align === 'right') + { + linePositionX += maxLineWidth - lineWidths[i$1]; + } + else if (style.align === 'center') + { + linePositionX += (maxLineWidth - lineWidths[i$1]) / 2; + } + + if (style.stroke && style.strokeThickness) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText, + true + ); + } + + if (style.fill) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText + ); + } + } + } + + this.updateTexture(); + }; + + /** + * Render the text with letter-spacing. + * @param {string} text - The text to draw + * @param {number} x - Horizontal position to draw the text + * @param {number} y - Vertical position to draw the text + * @param {boolean} [isStroke=false] - Is this drawing for the outside stroke of the + * text? If not, it's for the inside fill + * @private + */ + Text.prototype.drawLetterSpacing = function drawLetterSpacing (text, x, y, isStroke) + { + if ( isStroke === void 0 ) isStroke = false; + + var style = this._style; + + // letterSpacing of 0 means normal + var letterSpacing = style.letterSpacing; + + if (letterSpacing === 0) + { + if (isStroke) + { + this.context.strokeText(text, x, y); + } + else + { + this.context.fillText(text, x, y); + } + + return; + } + + var currentPosition = x; + + // Using Array.from correctly splits characters whilst keeping emoji together. + // This is not supported on IE as it requires ES6, so regular text splitting occurs. + // This also doesn't account for emoji that are multiple emoji put together to make something else. + // Handling all of this would require a big library itself. + // https://medium.com/@giltayar/iterating-over-emoji-characters-the-es6-way-f06e4589516 + // https://github.com/orling/grapheme-splitter + var stringArray = Array.from ? Array.from(text) : text.split(''); + var previousWidth = this.context.measureText(text).width; + var currentWidth = 0; + + for (var i = 0; i < stringArray.length; ++i) + { + var currentChar = stringArray[i]; + + if (isStroke) + { + this.context.strokeText(currentChar, currentPosition, y); + } + else + { + this.context.fillText(currentChar, currentPosition, y); + } + currentWidth = this.context.measureText(text.substring(i + 1)).width; + currentPosition += previousWidth - currentWidth + letterSpacing; + previousWidth = currentWidth; + } + }; + + /** + * Updates texture size based on canvas size + * + * @private + */ + Text.prototype.updateTexture = function updateTexture () + { + var canvas = this.canvas; + + if (this._style.trim) + { + var trimmed = trimCanvas(canvas); + + if (trimmed.data) + { + canvas.width = trimmed.width; + canvas.height = trimmed.height; + this.context.putImageData(trimmed.data, 0, 0); + } + } + + var texture = this._texture; + var style = this._style; + var padding = style.trim ? 0 : style.padding; + var baseTexture = texture.baseTexture; + + texture.trim.width = texture._frame.width = Math.ceil(canvas.width / this._resolution); + texture.trim.height = texture._frame.height = Math.ceil(canvas.height / this._resolution); + texture.trim.x = -padding; + texture.trim.y = -padding; + + texture.orig.width = texture._frame.width - (padding * 2); + texture.orig.height = texture._frame.height - (padding * 2); + + // call sprite onTextureUpdate to update scale if _width or _height were set + this._onTextureUpdate(); + + baseTexture.setRealSize(canvas.width, canvas.height, this._resolution); + + this.dirty = false; + }; + + /** + * Renders the object using the WebGL renderer + * + * @private + * @param {PIXI.Renderer} renderer - The renderer + */ + Text.prototype._render = function _render (renderer) + { + if (this._autoResolution && this._resolution !== renderer.resolution) + { + this._resolution = renderer.resolution; + this.dirty = true; + } + + this.updateText(true); + + Sprite.prototype._render.call(this, renderer); + }; + + /** + * Gets the local bounds of the text object. + * + * @param {PIXI.Rectangle} rect - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Text.prototype.getLocalBounds = function getLocalBounds (rect) + { + this.updateText(true); + + return Sprite.prototype.getLocalBounds.call(this, rect); + }; + + /** + * calculates the bounds of the Text as a rectangle. The bounds calculation takes the worldTransform into account. + * @protected + */ + Text.prototype._calculateBounds = function _calculateBounds () + { + this.updateText(true); + this.calculateVertices(); + // if we have already done this on THIS frame. + this._bounds.addQuad(this.vertexData); + }; + + /** + * Method to be called upon a TextStyle change. + * @private + */ + Text.prototype._onStyleChange = function _onStyleChange () + { + this.dirty = true; + }; + + /** + * Generates the fill style. Can automatically generate a gradient based on the fill style being an array + * + * @private + * @param {object} style - The style. + * @param {string[]} lines - The lines of text. + * @return {string|number|CanvasGradient} The fill style + */ + Text.prototype._generateFillStyle = function _generateFillStyle (style, lines) + { + if (!Array.isArray(style.fill)) + { + return style.fill; + } + else if (style.fill.length === 1) + { + return style.fill[0]; + } + + // the gradient will be evenly spaced out according to how large the array is. + // ['#FF0000', '#00FF00', '#0000FF'] would created stops at 0.25, 0.5 and 0.75 + var gradient; + var totalIterations; + var currentIteration; + var stop; + + var width = Math.ceil(this.canvas.width / this._resolution); + var height = Math.ceil(this.canvas.height / this._resolution); + + // make a copy of the style settings, so we can manipulate them later + var fill = style.fill.slice(); + var fillGradientStops = style.fillGradientStops.slice(); + + // wanting to evenly distribute the fills. So an array of 4 colours should give fills of 0.25, 0.5 and 0.75 + if (!fillGradientStops.length) + { + var lengthPlus1 = fill.length + 1; + + for (var i = 1; i < lengthPlus1; ++i) + { + fillGradientStops.push(i / lengthPlus1); + } + } + + // stop the bleeding of the last gradient on the line above to the top gradient of the this line + // by hard defining the first gradient colour at point 0, and last gradient colour at point 1 + fill.unshift(style.fill[0]); + fillGradientStops.unshift(0); + + fill.push(style.fill[style.fill.length - 1]); + fillGradientStops.push(1); + + if (style.fillGradientType === TEXT_GRADIENT.LINEAR_VERTICAL) + { + // start the gradient at the top center of the canvas, and end at the bottom middle of the canvas + gradient = this.context.createLinearGradient(width / 2, 0, width / 2, height); + + // we need to repeat the gradient so that each individual line of text has the same vertical gradient effect + // ['#FF0000', '#00FF00', '#0000FF'] over 2 lines would create stops at 0.125, 0.25, 0.375, 0.625, 0.75, 0.875 + totalIterations = (fill.length + 1) * lines.length; + currentIteration = 0; + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + currentIteration += 1; + for (var j = 0; j < fill.length; j++) + { + if (typeof fillGradientStops[j] === 'number') + { + stop = (fillGradientStops[j] / lines.length) + (i$1 / lines.length); + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[j]); + currentIteration++; + } + } + } + else + { + // start the gradient at the center left of the canvas, and end at the center right of the canvas + gradient = this.context.createLinearGradient(0, height / 2, width, height / 2); + + // can just evenly space out the gradients in this case, as multiple lines makes no difference + // to an even left to right gradient + totalIterations = fill.length + 1; + currentIteration = 1; + + for (var i$2 = 0; i$2 < fill.length; i$2++) + { + if (typeof fillGradientStops[i$2] === 'number') + { + stop = fillGradientStops[i$2]; + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[i$2]); + currentIteration++; + } + } + + return gradient; + }; + + /** + * Destroys this text object. + * Note* Unlike a Sprite, a Text object will automatically destroy its baseTexture and texture as + * the majority of the time the texture will not be shared with any other Sprites. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their + * destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=true] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=true] - Should it destroy the base texture of the sprite as well + */ + Text.prototype.destroy = function destroy (options) + { + if (typeof options === 'boolean') + { + options = { children: options }; + } + + options = Object.assign({}, defaultDestroyOptions, options); + + Sprite.prototype.destroy.call(this, options); + + // make sure to reset the the context and canvas.. dont want this hanging around in memory! + this.context = null; + this.canvas = null; + + this._style = null; + }; + + /** + * The width of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * Set the style of the text. Set up an event listener to listen for changes on the style + * object and mark the text as dirty. + * + * @member {object|PIXI.TextStyle} + */ + prototypeAccessors.style.get = function () + { + return this._style; + }; + + prototypeAccessors.style.set = function (style) // eslint-disable-line require-jsdoc + { + style = style || {}; + + if (style instanceof TextStyle) + { + this._style = style; + } + else + { + this._style = new TextStyle(style); + } + + this.localStyleID = -1; + this.dirty = true; + }; + + /** + * Set the copy for the text object. To split a line you can use '\n'. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + prototypeAccessors.resolution.get = function () + { + return this._resolution; + }; + + prototypeAccessors.resolution.set = function (value) // eslint-disable-line require-jsdoc + { + this._autoResolution = false; + + if (this._resolution === value) + { + return; + } + + this._resolution = value; + this.dirty = true; + }; + + Object.defineProperties( Text.prototype, prototypeAccessors ); + + return Text; +}(Sprite)); + +/*! + * @pixi/prepare - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/prepare is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default number of uploads per frame using prepare plugin. + * + * @static + * @memberof PIXI.settings + * @name UPLOADS_PER_FRAME + * @type {number} + * @default 4 + */ +settings.UPLOADS_PER_FRAME = 4; + +/** + * CountLimiter limits the number of items handled by a {@link PIXI.prepare.BasePrepare} to a specified + * number of items per frame. + * + * @class + * @memberof PIXI.prepare + */ +var CountLimiter = function CountLimiter(maxItemsPerFrame) +{ + /** + * The maximum number of items that can be prepared each frame. + * @type {number} + * @private + */ + this.maxItemsPerFrame = maxItemsPerFrame; + /** + * The number of items that can be prepared in the current frame. + * @type {number} + * @private + */ + this.itemsLeft = 0; +}; + +/** + * Resets any counting properties to start fresh on a new frame. + */ +CountLimiter.prototype.beginFrame = function beginFrame () +{ + this.itemsLeft = this.maxItemsPerFrame; +}; + +/** + * Checks to see if another item can be uploaded. This should only be called once per item. + * @return {boolean} If the item is allowed to be uploaded. + */ +CountLimiter.prototype.allowedToUpload = function allowedToUpload () +{ + return this.itemsLeft-- > 0; +}; + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * BasePrepare handles basic queuing functionality and is extended by + * {@link PIXI.prepare.Prepare} and {@link PIXI.prepare.CanvasPrepare} + * to provide preparation capabilities specific to their respective renderers. + * + * @example + * // Create a sprite + * const sprite = PIXI.Sprite.from('something.png'); + * + * // Load object into GPU + * app.renderer.plugins.prepare.upload(sprite, () => { + * + * //Texture(s) has been uploaded to GPU + * app.stage.addChild(sprite); + * + * }) + * + * @abstract + * @class + * @memberof PIXI.prepare + */ +var BasePrepare = function BasePrepare(renderer) +{ + var this$1 = this; + + /** + * The limiter to be used to control how quickly items are prepared. + * @type {PIXI.prepare.CountLimiter|PIXI.prepare.TimeLimiter} + */ + this.limiter = new CountLimiter(settings.UPLOADS_PER_FRAME); + + /** + * Reference to the renderer. + * @type {PIXI.AbstractRenderer} + * @protected + */ + this.renderer = renderer; + + /** + * The only real difference between CanvasPrepare and Prepare is what they pass + * to upload hooks. That different parameter is stored here. + * @type {PIXI.prepare.CanvasPrepare|PIXI.Renderer} + * @protected + */ + this.uploadHookHelper = null; + + /** + * Collection of items to uploads at once. + * @type {Array<*>} + * @private + */ + this.queue = []; + + /** + * Collection of additional hooks for finding assets. + * @type {Array} + * @private + */ + this.addHooks = []; + + /** + * Collection of additional hooks for processing assets. + * @type {Array} + * @private + */ + this.uploadHooks = []; + + /** + * Callback to call after completed. + * @type {Array} + * @private + */ + this.completes = []; + + /** + * If prepare is ticking (running). + * @type {boolean} + * @private + */ + this.ticking = false; + + /** + * 'bound' call for prepareItems(). + * @type {Function} + * @private + */ + this.delayedTick = function () { + // unlikely, but in case we were destroyed between tick() and delayedTick() + if (!this$1.queue) + { + return; + } + this$1.prepareItems(); + }; + + // hooks to find the correct texture + this.registerFindHook(findText); + this.registerFindHook(findTextStyle); + this.registerFindHook(findMultipleBaseTextures); + this.registerFindHook(findBaseTexture); + this.registerFindHook(findTexture); + + // upload hooks + this.registerUploadHook(drawText); + this.registerUploadHook(calculateTextStyle); +}; + +/** + * Upload all the textures and graphics to the GPU. + * + * @param {Function|PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text} item - + * Either the container or display object to search for items to upload, the items to upload themselves, + * or the callback function, if items have been added using `prepare.add`. + * @param {Function} [done] - Optional callback when all queued uploads have completed + */ +BasePrepare.prototype.upload = function upload (item, done) +{ + if (typeof item === 'function') + { + done = item; + item = null; + } + + // If a display object, search for items + // that we could upload + if (item) + { + this.add(item); + } + + // Get the items for upload from the display + if (this.queue.length) + { + if (done) + { + this.completes.push(done); + } + + if (!this.ticking) + { + this.ticking = true; + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } + } + else if (done) + { + done(); + } +}; + +/** + * Handle tick update + * + * @private + */ +BasePrepare.prototype.tick = function tick () +{ + setTimeout(this.delayedTick, 0); +}; + +/** + * Actually prepare items. This is handled outside of the tick because it will take a while + * and we do NOT want to block the current animation frame from rendering. + * + * @private + */ +BasePrepare.prototype.prepareItems = function prepareItems () +{ + this.limiter.beginFrame(); + // Upload the graphics + while (this.queue.length && this.limiter.allowedToUpload()) + { + var item = this.queue[0]; + var uploaded = false; + + if (item && !item._destroyed) + { + for (var i = 0, len = this.uploadHooks.length; i < len; i++) + { + if (this.uploadHooks[i](this.uploadHookHelper, item)) + { + this.queue.shift(); + uploaded = true; + break; + } + } + } + + if (!uploaded) + { + this.queue.shift(); + } + } + + // We're finished + if (!this.queue.length) + { + this.ticking = false; + + var completes = this.completes.slice(0); + + this.completes.length = 0; + + for (var i$1 = 0, len$1 = completes.length; i$1 < len$1; i$1++) + { + completes[i$1](); + } + } + else + { + // if we are not finished, on the next rAF do this again + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } +}; + +/** + * Adds hooks for finding items. + * + * @param {Function} addHook - Function call that takes two parameters: `item:*, queue:Array` + * function must return `true` if it was able to add item to the queue. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerFindHook = function registerFindHook (addHook) +{ + if (addHook) + { + this.addHooks.push(addHook); + } + + return this; +}; + +/** + * Adds hooks for uploading items. + * + * @param {Function} uploadHook - Function call that takes two parameters: `prepare:CanvasPrepare, item:*` and + * function must return `true` if it was able to handle upload of item. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerUploadHook = function registerUploadHook (uploadHook) +{ + if (uploadHook) + { + this.uploadHooks.push(uploadHook); + } + + return this; +}; + +/** + * Manually add an item to the uploading queue. + * + * @param {PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text|*} item - Object to + * add to the queue + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.add = function add (item) +{ + // Add additional hooks for finding elements on special + // types of objects that + for (var i = 0, len = this.addHooks.length; i < len; i++) + { + if (this.addHooks[i](item, this.queue)) + { + break; + } + } + + // Get children recursively + if (item instanceof Container) + { + for (var i$1 = item.children.length - 1; i$1 >= 0; i$1--) + { + this.add(item.children[i$1]); + } + } + + return this; +}; + +/** + * Destroys the plugin, don't use after this. + * + */ +BasePrepare.prototype.destroy = function destroy () +{ + if (this.ticking) + { + Ticker.system.remove(this.tick, this); + } + this.ticking = false; + this.addHooks = null; + this.uploadHooks = null; + this.renderer = null; + this.completes = null; + this.queue = null; + this.limiter = null; + this.uploadHookHelper = null; +}; + +/** + * Built-in hook to find multiple textures from objects like AnimatedSprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findMultipleBaseTextures(item, queue) +{ + var result = false; + + // Objects with multiple textures + if (item && item._textures && item._textures.length) + { + for (var i = 0; i < item._textures.length; i++) + { + if (item._textures[i] instanceof Texture) + { + var baseTexture = item._textures[i].baseTexture; + + if (queue.indexOf(baseTexture) === -1) + { + queue.push(baseTexture); + result = true; + } + } + } + } + + return result; +} + +/** + * Built-in hook to find BaseTextures from Sprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findBaseTexture(item, queue) +{ + // Objects with textures, like Sprites/Text + if (item instanceof BaseTexture) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find textures from objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findTexture(item, queue) +{ + if (item._texture && item._texture instanceof Texture) + { + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to draw PIXI.Text to its texture. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function drawText(helper, item) +{ + if (item instanceof Text) + { + // updating text will return early if it is not dirty + item.updateText(true); + + return true; + } + + return false; +} + +/** + * Built-in hook to calculate a text style for a PIXI.Text object. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function calculateTextStyle(helper, item) +{ + if (item instanceof TextStyle) + { + var font = item.toFontString(); + + TextMetrics.measureFont(font); + + return true; + } + + return false; +} + +/** + * Built-in hook to find Text objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Text object was found. + */ +function findText(item, queue) +{ + if (item instanceof Text) + { + // push the text style to prepare it - this can be really expensive + if (queue.indexOf(item.style) === -1) + { + queue.push(item.style); + } + // also push the text object so that we can render it (to canvas/texture) if needed + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + // also push the Text's texture for upload to GPU + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find TextStyle objects. + * + * @private + * @param {PIXI.TextStyle} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.TextStyle object was found. + */ +function findTextStyle(item, queue) +{ + if (item instanceof TextStyle) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.prepare` + * + * @class + * @extends PIXI.prepare.BasePrepare + * @memberof PIXI.prepare + */ +var Prepare = /*@__PURE__*/(function (BasePrepare) { + function Prepare(renderer) + { + BasePrepare.call(this, renderer); + + this.uploadHookHelper = this.renderer; + + // Add textures and graphics to upload + this.registerFindHook(findGraphics); + this.registerUploadHook(uploadBaseTextures); + this.registerUploadHook(uploadGraphics); + } + + if ( BasePrepare ) Prepare.__proto__ = BasePrepare; + Prepare.prototype = Object.create( BasePrepare && BasePrepare.prototype ); + Prepare.prototype.constructor = Prepare; + + return Prepare; +}(BasePrepare)); +/** + * Built-in hook to upload PIXI.Texture objects to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadBaseTextures(renderer, item) +{ + if (item instanceof BaseTexture) + { + // if the texture already has a GL texture, then the texture has been prepared or rendered + // before now. If the texture changed, then the changer should be calling texture.update() which + // reuploads the texture without need for preparing it again + if (!item._glTextures[renderer.CONTEXT_UID]) + { + renderer.texture.bind(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to upload PIXI.Graphics to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadGraphics(renderer, item) +{ + if (item instanceof Graphics) + { + // if the item is not dirty and already has webgl data, then it got prepared or rendered + // before now and we shouldn't waste time updating it again + if (item.dirty || item.clearDirty || !item._webGL[renderer.plugins.graphics.CONTEXT_UID]) + { + renderer.plugins.graphics.updateGraphics(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find graphics. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Graphics object was found. + */ +function findGraphics(item, queue) +{ + if (item instanceof Graphics) + { + queue.push(item); + + return true; + } + + return false; +} + +/*! + * @pixi/app - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/app is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Convenience class to create a new PIXI application. + * + * This class automatically creates the renderer, ticker and root container. + * + * @example + * // Create the application + * const app = new PIXI.Application(); + * + * // Add the view to the DOM + * document.body.appendChild(app.view); + * + * // ex, add display objects + * app.stage.addChild(PIXI.Sprite.from('something.png')); + * + * @class + * @memberof PIXI + */ +var Application = function Application(options) +{ + var this$1 = this; + + // The default options + options = Object.assign({ + forceCanvas: false, + }, options); + + /** + * WebGL renderer if available, otherwise CanvasRenderer. + * @member {PIXI.Renderer|PIXI.CanvasRenderer} + */ + this.renderer = autoDetectRenderer(options); + + /** + * The root display container that's rendered. + * @member {PIXI.Container} + */ + this.stage = new Container(); + + // install plugins here + Application._plugins.forEach(function (plugin) { + plugin.init.call(this$1, options); + }); +}; + +var prototypeAccessors$8 = { view: { configurable: true },screen: { configurable: true } }; + +/** + * Register a middleware plugin for the application + * @static + * @param {PIXI.Application.Plugin} plugin - Plugin being installed + */ +Application.registerPlugin = function registerPlugin (plugin) +{ + Application._plugins.push(plugin); +}; + +/** + * Render the current stage. + */ +Application.prototype.render = function render () +{ + this.renderer.render(this.stage); +}; + +/** + * Reference to the renderer's canvas element. + * @member {HTMLCanvasElement} + * @readonly + */ +prototypeAccessors$8.view.get = function () +{ + return this.renderer.view; +}; + +/** + * Reference to the renderer's screen rectangle. Its safe to use as `filterArea` or `hitArea` for the whole screen. + * @member {PIXI.Rectangle} + * @readonly + */ +prototypeAccessors$8.screen.get = function () +{ + return this.renderer.screen; +}; + +/** + * Destroy and don't use after this. + * @param {Boolean} [removeView=false] Automatically remove canvas from DOM. + * @param {object|boolean} [stageOptions] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [stageOptions.children=false] - if set to true, all the children will have their destroy + * method called as well. 'stageOptions' will be passed on to those calls. + * @param {boolean} [stageOptions.texture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the texture of the child sprite + * @param {boolean} [stageOptions.baseTexture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the base texture of the child sprite + */ +Application.prototype.destroy = function destroy (removeView, stageOptions) +{ + var this$1 = this; + + // Destroy plugins in the opposite order + // which they were constructed + var plugins = Application._plugins.slice(0); + + plugins.reverse(); + plugins.forEach(function (plugin) { + plugin.destroy.call(this$1); + }); + + this.stage.destroy(stageOptions); + this.stage = null; + + this.renderer.destroy(removeView); + this.renderer = null; + + this._options = null; +}; + +Object.defineProperties( Application.prototype, prototypeAccessors$8 ); + +/** + * @memberof PIXI.Application + * @typedef {object} Plugin + * @property {function} init - Called when Application is constructed, scoped to Application instance. + * Passes in `options` as the only argument, which are Application constructor options. + * @property {function} destroy - Called when destroying Application, scoped to Application instance + */ + +/** + * Collection of installed plugins. + * @static + * @private + * @type {PIXI.Application.Plugin[]} + */ +Application._plugins = []; + +/** + * Middleware for for Application's resize functionality + * @private + * @class + */ +var ResizePlugin = function ResizePlugin () {}; + +ResizePlugin.init = function init (options) +{ + var this$1 = this; + + /** + * The element or window to resize the application to. + * @type {Window|HTMLElement} + * @name resizeTo + * @memberof PIXI.Application# + */ + Object.defineProperty(this, 'resizeTo', + { + set: function set(dom) + { + window.removeEventListener('resize', this.resize); + this._resizeTo = dom; + if (dom) + { + window.addEventListener('resize', this.resize); + this.resize(); + } + }, + get: function get() + { + return this._resizeTo; + }, + }); + + /** + * If `resizeTo` is set, calling this function + * will resize to the width and height of that element. + * @method PIXI.Application#resize + */ + this.resize = function () { + if (this$1._resizeTo) + { + // Resize to the window + if (this$1._resizeTo === window) + { + this$1.renderer.resize( + window.innerWidth, + window.innerHeight + ); + } + // Resize to other HTML entities + else + { + this$1.renderer.resize( + this$1._resizeTo.clientWidth, + this$1._resizeTo.clientHeight + ); + } + } + }; + + // On resize + this._resizeTo = null; + this.resizeTo = options.resizeTo || null; +}; + +/** + * Clean up the ticker, scoped to application + * @static + * @private + */ +ResizePlugin.destroy = function destroy () +{ + this.resizeTo = null; + this.resize = null; +}; + +Application.registerPlugin(ResizePlugin); + +var parseUri = function parseURI (str, opts) { + opts = opts || {}; + + var o = { + key: ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'], + q: { + name: 'queryKey', + parser: /(?:^|&)([^&=]*)=?([^&]*)/g + }, + parser: { + strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/, + loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/ + } + }; + + var m = o.parser[opts.strictMode ? 'strict' : 'loose'].exec(str); + var uri = {}; + var i = 14; + + while (i--) uri[o.key[i]] = m[i] || ''; + + uri[o.q.name] = {}; + uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) { + if ($1) uri[o.q.name][$1] = $2; + }); + + return uri +}; + +var miniSignals = createCommonjsModule(function (module, exports) { + +Object.defineProperty(exports, '__esModule', { + value: true +}); + +var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + +var MiniSignalBinding = (function () { + function MiniSignalBinding(fn, once, thisArg) { + if (once === undefined) once = false; + + _classCallCheck(this, MiniSignalBinding); + + this._fn = fn; + this._once = once; + this._thisArg = thisArg; + this._next = this._prev = this._owner = null; + } + + _createClass(MiniSignalBinding, [{ + key: 'detach', + value: function detach() { + if (this._owner === null) return false; + this._owner.detach(this); + return true; + } + }]); + + return MiniSignalBinding; +})(); + +function _addMiniSignalBinding(self, node) { + if (!self._head) { + self._head = node; + self._tail = node; + } else { + self._tail._next = node; + node._prev = self._tail; + self._tail = node; + } + + node._owner = self; + + return node; +} + +var MiniSignal = (function () { + function MiniSignal() { + _classCallCheck(this, MiniSignal); + + this._head = this._tail = undefined; + } + + _createClass(MiniSignal, [{ + key: 'handlers', + value: function handlers() { + var exists = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0]; + + var node = this._head; + + if (exists) return !!node; + + var ee = []; + + while (node) { + ee.push(node); + node = node._next; + } + + return ee; + } + }, { + key: 'has', + value: function has(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#has(): First arg must be a MiniSignalBinding object.'); + } + + return node._owner === this; + } + }, { + key: 'dispatch', + value: function dispatch() { + var node = this._head; + + if (!node) return false; + + while (node) { + if (node._once) this.detach(node); + node._fn.apply(node._thisArg, arguments); + node = node._next; + } + + return true; + } + }, { + key: 'add', + value: function add(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#add(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, false, thisArg)); + } + }, { + key: 'once', + value: function once(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#once(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, true, thisArg)); + } + }, { + key: 'detach', + value: function detach(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#detach(): First arg must be a MiniSignalBinding object.'); + } + if (node._owner !== this) return this; + + if (node._prev) node._prev._next = node._next; + if (node._next) node._next._prev = node._prev; + + if (node === this._head) { + this._head = node._next; + if (node._next === null) { + this._tail = null; + } + } else if (node === this._tail) { + this._tail = node._prev; + this._tail._next = null; + } + + node._owner = null; + return this; + } + }, { + key: 'detachAll', + value: function detachAll() { + var node = this._head; + if (!node) return this; + + this._head = this._tail = null; + + while (node) { + node._owner = null; + node = node._next; + } + return this; + } + }]); + + return MiniSignal; +})(); + +MiniSignal.MiniSignalBinding = MiniSignalBinding; + +exports['default'] = MiniSignal; +module.exports = exports['default']; +}); + +var Signal = unwrapExports(miniSignals); + +/*! + * resource-loader - v3.0.1 + * https://github.com/pixijs/pixi-sound + * Compiled Tue, 02 Jul 2019 14:06:18 UTC + * + * resource-loader is licensed under the MIT license. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Smaller version of the async library constructs. + * + * @namespace async + */ + +/** + * Noop function + * + * @ignore + * @function + * @memberof async + */ +function _noop() {} +/* empty */ + +/** + * Iterates an array in series. + * + * @memberof async + * @function eachSeries + * @param {Array.<*>} array - Array to iterate. + * @param {function} iterator - Function to call for each element. + * @param {function} callback - Function to call when done, or on error. + * @param {boolean} [deferNext=false] - Break synchronous each loop by calling next with a setTimeout of 1. + */ + + +function eachSeries(array, iterator, callback, deferNext) { + var i = 0; + var len = array.length; + + (function next(err) { + if (err || i === len) { + if (callback) { + callback(err); + } + + return; + } + + if (deferNext) { + setTimeout(function () { + iterator(array[i++], next); + }, 1); + } else { + iterator(array[i++], next); + } + })(); +} +/** + * Ensures a function is only called once. + * + * @ignore + * @memberof async + * @param {function} fn - The function to wrap. + * @return {function} The wrapping function. + */ + +function onlyOnce(fn) { + return function onceWrapper() { + if (fn === null) { + throw new Error('Callback was already called.'); + } + + var callFn = fn; + fn = null; + callFn.apply(this, arguments); + }; +} +/** + * Async queue implementation, + * + * @memberof async + * @function queue + * @param {function} worker - The worker function to call for each task. + * @param {number} concurrency - How many workers to run in parrallel. + * @return {*} The async queue object. + */ + + +function queue(worker, concurrency) { + if (concurrency == null) { + // eslint-disable-line no-eq-null,eqeqeq + concurrency = 1; + } else if (concurrency === 0) { + throw new Error('Concurrency must not be zero'); + } + + var workers = 0; + var q = { + _tasks: [], + concurrency: concurrency, + saturated: _noop, + unsaturated: _noop, + buffer: concurrency / 4, + empty: _noop, + drain: _noop, + error: _noop, + started: false, + paused: false, + push: function push(data, callback) { + _insert(data, false, callback); + }, + kill: function kill() { + workers = 0; + q.drain = _noop; + q.started = false; + q._tasks = []; + }, + unshift: function unshift(data, callback) { + _insert(data, true, callback); + }, + process: function process() { + while (!q.paused && workers < q.concurrency && q._tasks.length) { + var task = q._tasks.shift(); + + if (q._tasks.length === 0) { + q.empty(); + } + + workers += 1; + + if (workers === q.concurrency) { + q.saturated(); + } + + worker(task.data, onlyOnce(_next(task))); + } + }, + length: function length() { + return q._tasks.length; + }, + running: function running() { + return workers; + }, + idle: function idle() { + return q._tasks.length + workers === 0; + }, + pause: function pause() { + if (q.paused === true) { + return; + } + + q.paused = true; + }, + resume: function resume() { + if (q.paused === false) { + return; + } + + q.paused = false; // Need to call q.process once per concurrent + // worker to preserve full concurrency after pause + + for (var w = 1; w <= q.concurrency; w++) { + q.process(); + } + } + }; + + function _insert(data, insertAtFront, callback) { + if (callback != null && typeof callback !== 'function') { + // eslint-disable-line no-eq-null,eqeqeq + throw new Error('task callback must be a function'); + } + + q.started = true; + + if (data == null && q.idle()) { + // eslint-disable-line no-eq-null,eqeqeq + // call drain immediately if there are no tasks + setTimeout(function () { + return q.drain(); + }, 1); + return; + } + + var item = { + data: data, + callback: typeof callback === 'function' ? callback : _noop + }; + + if (insertAtFront) { + q._tasks.unshift(item); + } else { + q._tasks.push(item); + } + + setTimeout(function () { + return q.process(); + }, 1); + } + + function _next(task) { + return function next() { + workers -= 1; + task.callback.apply(task, arguments); + + if (arguments[0] != null) { + // eslint-disable-line no-eq-null,eqeqeq + q.error(arguments[0], task.data); + } + + if (workers <= q.concurrency - q.buffer) { + q.unsaturated(); + } + + if (q.idle()) { + q.drain(); + } + + q.process(); + }; + } + + return q; +} + +// a simple in-memory cache for resources +var cache = {}; +/** + * A simple in-memory cache for resource. + * + * @memberof middleware + * @function caching + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.caching); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function caching(resource, next) { + var _this = this; + + // if cached, then set data and complete the resource + if (cache[resource.url]) { + resource.data = cache[resource.url]; + resource.complete(); // marks resource load complete and stops processing before middlewares + } // if not cached, wait for complete and store it in the cache. + else { + resource.onComplete.once(function () { + return cache[_this.url] = _this.data; + }); + } + + next(); +} + +function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } +} + +function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + return Constructor; +} + +var useXdr = !!(window.XDomainRequest && !('withCredentials' in new XMLHttpRequest())); +var tempAnchor$1 = null; // some status constants + +var STATUS_NONE = 0; +var STATUS_OK = 200; +var STATUS_EMPTY = 204; +var STATUS_IE_BUG_EMPTY = 1223; +var STATUS_TYPE_OK = 2; // noop + +function _noop$1() {} +/* empty */ + +/** + * Manages the state and loading of a resource and all child resources. + * + * @class + */ + + +var Resource$1 = +/*#__PURE__*/ +function () { + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.LOAD_TYPE} loadType - The load type to set it to. + */ + Resource.setExtensionLoadType = function setExtensionLoadType(extname, loadType) { + setExtMap(Resource._loadTypeMap, extname, loadType); + } + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.XHR_RESPONSE_TYPE} xhrType - The xhr type to set it to. + */ + ; + + Resource.setExtensionXhrType = function setExtensionXhrType(extname, xhrType) { + setExtMap(Resource._xhrTypeMap, extname, xhrType); + } + /** + * @param {string} name - The name of the resource to load. + * @param {string|string[]} url - The url for this resource, for audio/video loads you can pass + * an array of sources. + * @param {object} [options] - The options for the load. + * @param {string|boolean} [options.crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @param {number} [options.timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @param {Resource.LOAD_TYPE} [options.loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @param {Resource.XHR_RESPONSE_TYPE} [options.xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @param {Resource.IMetadata} [options.metadata] - Extra configuration for middleware and the Resource object. + */ + ; + + function Resource(name, url, options) { + if (typeof name !== 'string' || typeof url !== 'string') { + throw new Error('Both name and url are required for constructing a resource.'); + } + + options = options || {}; + /** + * The state flags of this resource. + * + * @private + * @member {number} + */ + + this._flags = 0; // set data url flag, needs to be set early for some _determineX checks to work. + + this._setFlag(Resource.STATUS_FLAGS.DATA_URL, url.indexOf('data:') === 0); + /** + * The name of this resource. + * + * @readonly + * @member {string} + */ + + + this.name = name; + /** + * The url used to load this resource. + * + * @readonly + * @member {string} + */ + + this.url = url; + /** + * The extension used to load this resource. + * + * @readonly + * @member {string} + */ + + this.extension = this._getExtension(); + /** + * The data that was loaded by the resource. + * + * @member {any} + */ + + this.data = null; + /** + * Is this request cross-origin? If unset, determined automatically. + * + * @member {string} + */ + + this.crossOrigin = options.crossOrigin === true ? 'anonymous' : options.crossOrigin; + /** + * A timeout in milliseconds for the load. If the load takes longer than this time + * it is cancelled and the load is considered a failure. If this value is set to `0` + * then there is no explicit timeout. + * + * @member {number} + */ + + this.timeout = options.timeout || 0; + /** + * The method of loading to use for this resource. + * + * @member {Resource.LOAD_TYPE} + */ + + this.loadType = options.loadType || this._determineLoadType(); + /** + * The type used to load the resource via XHR. If unset, determined automatically. + * + * @member {string} + */ + + this.xhrType = options.xhrType; + /** + * Extra info for middleware, and controlling specifics about how the resource loads. + * + * Note that if you pass in a `loadElement`, the Resource class takes ownership of it. + * Meaning it will modify it as it sees fit. + * + * @member {Resource.IMetadata} + */ + + this.metadata = options.metadata || {}; + /** + * The error that occurred while loading (if any). + * + * @readonly + * @member {Error} + */ + + this.error = null; + /** + * The XHR object that was used to load this resource. This is only set + * when `loadType` is `Resource.LOAD_TYPE.XHR`. + * + * @readonly + * @member {XMLHttpRequest} + */ + + this.xhr = null; + /** + * The child resources this resource owns. + * + * @readonly + * @member {Resource[]} + */ + + this.children = []; + /** + * The resource type. + * + * @readonly + * @member {Resource.TYPE} + */ + + this.type = Resource.TYPE.UNKNOWN; + /** + * The progress chunk owned by this resource. + * + * @readonly + * @member {number} + */ + + this.progressChunk = 0; + /** + * The `dequeue` method that will be used a storage place for the async queue dequeue method + * used privately by the loader. + * + * @private + * @member {function} + */ + + this._dequeue = _noop$1; + /** + * Used a storage place for the on load binding used privately by the loader. + * + * @private + * @member {function} + */ + + this._onLoadBinding = null; + /** + * The timer for element loads to check if they timeout. + * + * @private + * @member {number} + */ + + this._elementTimer = 0; + /** + * The `complete` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundComplete = this.complete.bind(this); + /** + * The `_onError` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnError = this._onError.bind(this); + /** + * The `_onProgress` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnProgress = this._onProgress.bind(this); + /** + * The `_onTimeout` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnTimeout = this._onTimeout.bind(this); // xhr callbacks + + this._boundXhrOnError = this._xhrOnError.bind(this); + this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this); + this._boundXhrOnAbort = this._xhrOnAbort.bind(this); + this._boundXhrOnLoad = this._xhrOnLoad.bind(this); + /** + * Dispatched when the resource beings to load. + * + * The callback looks like {@link Resource.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched each time progress of this resource load updates. + * Not all resources types and loader systems can support this event + * so sometimes it may not be available. If the resource + * is being loaded on a modern browser, using XHR, and the remote server + * properly sets Content-Length headers, then this will be available. + * + * The callback looks like {@link Resource.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once this resource has loaded, if there was an error it will + * be in the `error` property. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); + /** + * Dispatched after this resource has had all the *after* middleware run on it. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onAfterMiddleware = new Signal(); + } + /** + * When the resource starts to load. + * + * @memberof Resource + * @callback OnStartSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * When the resource reports loading progress. + * + * @memberof Resource + * @callback OnProgressSignal + * @param {Resource} resource - The resource that the event happened on. + * @param {number} percentage - The progress of the load in the range [0, 1]. + */ + + /** + * When the resource finishes loading. + * + * @memberof Resource + * @callback OnCompleteSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * @memberof Resource + * @typedef {object} IMetadata + * @property {HTMLImageElement|HTMLAudioElement|HTMLVideoElement} [loadElement=null] - The + * element to use for loading, instead of creating one. + * @property {boolean} [skipSource=false] - Skips adding source(s) to the load element. This + * is useful if you want to pass in a `loadElement` that you already added load sources to. + * @property {string|string[]} [mimeType] - The mime type to use for the source element + * of a video/audio elment. If the urls are an array, you can pass this as an array as well + * where each index is the mime type to use for the corresponding url index. + */ + + /** + * Stores whether or not this url is a data url. + * + * @readonly + * @member {boolean} + */ + + + var _proto = Resource.prototype; + + /** + * Marks the resource as complete. + * + */ + _proto.complete = function complete() { + this._clearEvents(); + + this._finish(); + } + /** + * Aborts the loading of this resource, with an optional message. + * + * @param {string} message - The message to use for the error + */ + ; + + _proto.abort = function abort(message) { + // abort can be called multiple times, ignore subsequent calls. + if (this.error) { + return; + } // store error + + + this.error = new Error(message); // clear events before calling aborts + + this._clearEvents(); // abort the actual loading + + + if (this.xhr) { + this.xhr.abort(); + } else if (this.xdr) { + this.xdr.abort(); + } else if (this.data) { + // single source + if (this.data.src) { + this.data.src = Resource.EMPTY_GIF; + } // multi-source + else { + while (this.data.firstChild) { + this.data.removeChild(this.data.firstChild); + } + } + } // done now. + + + this._finish(); + } + /** + * Kicks off loading of this resource. This method is asynchronous. + * + * @param {Resource.OnCompleteSignal} [cb] - Optional callback to call once the resource is loaded. + */ + ; + + _proto.load = function load(cb) { + var _this = this; + + if (this.isLoading) { + return; + } + + if (this.isComplete) { + if (cb) { + setTimeout(function () { + return cb(_this); + }, 1); + } + + return; + } else if (cb) { + this.onComplete.once(cb); + } + + this._setFlag(Resource.STATUS_FLAGS.LOADING, true); + + this.onStart.dispatch(this); // if unset, determine the value + + if (this.crossOrigin === false || typeof this.crossOrigin !== 'string') { + this.crossOrigin = this._determineCrossOrigin(this.url); + } + + switch (this.loadType) { + case Resource.LOAD_TYPE.IMAGE: + this.type = Resource.TYPE.IMAGE; + + this._loadElement('image'); + + break; + + case Resource.LOAD_TYPE.AUDIO: + this.type = Resource.TYPE.AUDIO; + + this._loadSourceElement('audio'); + + break; + + case Resource.LOAD_TYPE.VIDEO: + this.type = Resource.TYPE.VIDEO; + + this._loadSourceElement('video'); + + break; + + case Resource.LOAD_TYPE.XHR: + /* falls through */ + + default: + if (useXdr && this.crossOrigin) { + this._loadXdr(); + } else { + this._loadXhr(); + } + + break; + } + } + /** + * Checks if the flag is set. + * + * @private + * @param {number} flag - The flag to check. + * @return {boolean} True if the flag is set. + */ + ; + + _proto._hasFlag = function _hasFlag(flag) { + return (this._flags & flag) !== 0; + } + /** + * (Un)Sets the flag. + * + * @private + * @param {number} flag - The flag to (un)set. + * @param {boolean} value - Whether to set or (un)set the flag. + */ + ; + + _proto._setFlag = function _setFlag(flag, value) { + this._flags = value ? this._flags | flag : this._flags & ~flag; + } + /** + * Clears all the events from the underlying loading source. + * + * @private + */ + ; + + _proto._clearEvents = function _clearEvents() { + clearTimeout(this._elementTimer); + + if (this.data && this.data.removeEventListener) { + this.data.removeEventListener('error', this._boundOnError, false); + this.data.removeEventListener('load', this._boundComplete, false); + this.data.removeEventListener('progress', this._boundOnProgress, false); + this.data.removeEventListener('canplaythrough', this._boundComplete, false); + } + + if (this.xhr) { + if (this.xhr.removeEventListener) { + this.xhr.removeEventListener('error', this._boundXhrOnError, false); + this.xhr.removeEventListener('timeout', this._boundXhrOnTimeout, false); + this.xhr.removeEventListener('abort', this._boundXhrOnAbort, false); + this.xhr.removeEventListener('progress', this._boundOnProgress, false); + this.xhr.removeEventListener('load', this._boundXhrOnLoad, false); + } else { + this.xhr.onerror = null; + this.xhr.ontimeout = null; + this.xhr.onprogress = null; + this.xhr.onload = null; + } + } + } + /** + * Finalizes the load. + * + * @private + */ + ; + + _proto._finish = function _finish() { + if (this.isComplete) { + throw new Error('Complete called again for an already completed resource.'); + } + + this._setFlag(Resource.STATUS_FLAGS.COMPLETE, true); + + this._setFlag(Resource.STATUS_FLAGS.LOADING, false); + + this.onComplete.dispatch(this); + } + /** + * Loads this resources using an element that has a single source, + * like an HTMLImageElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadElement = function _loadElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'image' && typeof window.Image !== 'undefined') { + this.data = new Image(); + } else { + this.data = document.createElement(type); + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + this.data.src = this.url; + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an element that has multiple sources, + * like an HTMLAudioElement or HTMLVideoElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadSourceElement = function _loadSourceElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'audio' && typeof window.Audio !== 'undefined') { + this.data = new Audio(); + } else { + this.data = document.createElement(type); + } + + if (this.data === null) { + this.abort("Unsupported element: " + type); + return; + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + // support for CocoonJS Canvas+ runtime, lacks document.createElement('source') + if (navigator.isCocoonJS) { + this.data.src = Array.isArray(this.url) ? this.url[0] : this.url; + } else if (Array.isArray(this.url)) { + var mimeTypes = this.metadata.mimeType; + + for (var i = 0; i < this.url.length; ++i) { + this.data.appendChild(this._createSource(type, this.url[i], Array.isArray(mimeTypes) ? mimeTypes[i] : mimeTypes)); + } + } else { + var _mimeTypes = this.metadata.mimeType; + this.data.appendChild(this._createSource(type, this.url, Array.isArray(_mimeTypes) ? _mimeTypes[0] : _mimeTypes)); + } + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + this.data.addEventListener('canplaythrough', this._boundComplete, false); + this.data.load(); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an XMLHttpRequest. + * + * @private + */ + ; + + _proto._loadXhr = function _loadXhr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xhr = this.xhr = new XMLHttpRequest(); // set the request type and url + + xhr.open('GET', this.url, true); + xhr.timeout = this.timeout; // load json as text and parse it ourselves. We do this because some browsers + // *cough* safari *cough* can't deal with it. + + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON || this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + xhr.responseType = Resource.XHR_RESPONSE_TYPE.TEXT; + } else { + xhr.responseType = this.xhrType; + } + + xhr.addEventListener('error', this._boundXhrOnError, false); + xhr.addEventListener('timeout', this._boundXhrOnTimeout, false); + xhr.addEventListener('abort', this._boundXhrOnAbort, false); + xhr.addEventListener('progress', this._boundOnProgress, false); + xhr.addEventListener('load', this._boundXhrOnLoad, false); + xhr.send(); + } + /** + * Loads this resources using an XDomainRequest. This is here because we need to support IE9 (gross). + * + * @private + */ + ; + + _proto._loadXdr = function _loadXdr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xdr = this.xhr = new XDomainRequest(); // eslint-disable-line no-undef + // XDomainRequest has a few quirks. Occasionally it will abort requests + // A way to avoid this is to make sure ALL callbacks are set even if not used + // More info here: http://stackoverflow.com/questions/15786966/xdomainrequest-aborts-post-on-ie-9 + + xdr.timeout = this.timeout || 5000; // XDR needs a timeout value or it breaks in IE9 + + xdr.onerror = this._boundXhrOnError; + xdr.ontimeout = this._boundXhrOnTimeout; + xdr.onprogress = this._boundOnProgress; + xdr.onload = this._boundXhrOnLoad; + xdr.open('GET', this.url, true); // Note: The xdr.send() call is wrapped in a timeout to prevent an + // issue with the interface where some requests are lost if multiple + // XDomainRequests are being sent at the same time. + // Some info here: https://github.com/photonstorm/phaser/issues/1248 + + setTimeout(function () { + return xdr.send(); + }, 1); + } + /** + * Creates a source used in loading via an element. + * + * @private + * @param {string} type - The element type (video or audio). + * @param {string} url - The source URL to load from. + * @param {string} [mime] - The mime type of the video + * @return {HTMLSourceElement} The source element. + */ + ; + + _proto._createSource = function _createSource(type, url, mime) { + if (!mime) { + mime = type + "/" + this._getExtension(url); + } + + var source = document.createElement('source'); + source.src = url; + source.type = mime; + return source; + } + /** + * Called if a load errors out. + * + * @param {Event} event - The error event from the element that emits it. + * @private + */ + ; + + _proto._onError = function _onError(event) { + this.abort("Failed to load element using: " + event.target.nodeName); + } + /** + * Called if a load progress event fires for an element or xhr/xdr. + * + * @private + * @param {XMLHttpRequestProgressEvent|Event} event - Progress event. + */ + ; + + _proto._onProgress = function _onProgress(event) { + if (event && event.lengthComputable) { + this.onProgress.dispatch(this, event.loaded / event.total); + } + } + /** + * Called if a timeout event fires for an element. + * + * @private + */ + ; + + _proto._onTimeout = function _onTimeout() { + this.abort("Load timed out."); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnError = function _xhrOnError() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request failed. Status: " + xhr.status + ", text: \"" + xhr.statusText + "\""); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnTimeout = function _xhrOnTimeout() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request timed out."); + } + /** + * Called if an abort event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnAbort = function _xhrOnAbort() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request was aborted by the user."); + } + /** + * Called when data successfully loads from an xhr/xdr request. + * + * @private + * @param {XMLHttpRequestLoadEvent|Event} event - Load event + */ + ; + + _proto._xhrOnLoad = function _xhrOnLoad() { + var xhr = this.xhr; + var text = ''; + var status = typeof xhr.status === 'undefined' ? STATUS_OK : xhr.status; // XDR has no `.status`, assume 200. + // responseText is accessible only if responseType is '' or 'text' and on older browsers + + if (xhr.responseType === '' || xhr.responseType === 'text' || typeof xhr.responseType === 'undefined') { + text = xhr.responseText; + } // status can be 0 when using the `file://` protocol so we also check if a response is set. + // If it has a response, we assume 200; otherwise a 0 status code with no contents is an aborted request. + + + if (status === STATUS_NONE && (text.length > 0 || xhr.responseType === Resource.XHR_RESPONSE_TYPE.BUFFER)) { + status = STATUS_OK; + } // handle IE9 bug: http://stackoverflow.com/questions/10046972/msie-returns-status-code-of-1223-for-ajax-request + else if (status === STATUS_IE_BUG_EMPTY) { + status = STATUS_EMPTY; + } + + var statusType = status / 100 | 0; + + if (statusType === STATUS_TYPE_OK) { + // if text, just return it + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.TEXT) { + this.data = text; + this.type = Resource.TYPE.TEXT; + } // if json, parse into json object + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON) { + try { + this.data = JSON.parse(text); + this.type = Resource.TYPE.JSON; + } catch (e) { + this.abort("Error trying to parse loaded json: " + e); + return; + } + } // if xml, parse into an xml document or div element + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + try { + if (window.DOMParser) { + var domparser = new DOMParser(); + this.data = domparser.parseFromString(text, 'text/xml'); + } else { + var div = document.createElement('div'); + div.innerHTML = text; + this.data = div; + } + + this.type = Resource.TYPE.XML; + } catch (e) { + this.abort("Error trying to parse loaded xml: " + e); + return; + } + } // other types just return the response + else { + this.data = xhr.response || text; + } + } else { + this.abort("[" + xhr.status + "] " + xhr.statusText + ": " + xhr.responseURL); + return; + } + + this.complete(); + } + /** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * + * @private + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ + ; + + _proto._determineCrossOrigin = function _determineCrossOrigin(url, loc) { + // data: and javascript: urls are considered same-origin + if (url.indexOf('data:') === 0) { + return ''; + } // A sandboxed iframe without the 'allow-same-origin' attribute will have a special + // origin designed not to match window.location.origin, and will always require + // crossOrigin requests regardless of whether the location matches. + + + if (window.origin !== window.location.origin) { + return 'anonymous'; + } // default is window.location + + + loc = loc || window.location; + + if (!tempAnchor$1) { + tempAnchor$1 = document.createElement('a'); + } // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + + + tempAnchor$1.href = url; + url = parseUri(tempAnchor$1.href, { + strictMode: true + }); + var samePort = !url.port && loc.port === '' || url.port === loc.port; + var protocol = url.protocol ? url.protocol + ":" : ''; // if cross origin + + if (url.host !== loc.hostname || !samePort || protocol !== loc.protocol) { + return 'anonymous'; + } + + return ''; + } + /** + * Determines the responseType of an XHR request based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.XHR_RESPONSE_TYPE} The responseType to use. + */ + ; + + _proto._determineXhrType = function _determineXhrType() { + return Resource._xhrTypeMap[this.extension] || Resource.XHR_RESPONSE_TYPE.TEXT; + } + /** + * Determines the loadType of a resource based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.LOAD_TYPE} The loadType to use. + */ + ; + + _proto._determineLoadType = function _determineLoadType() { + return Resource._loadTypeMap[this.extension] || Resource.LOAD_TYPE.XHR; + } + /** + * Extracts the extension (sans '.') of the file being loaded by the resource. + * + * @private + * @return {string} The extension. + */ + ; + + _proto._getExtension = function _getExtension() { + var url = this.url; + var ext = ''; + + if (this.isDataUrl) { + var slashIndex = url.indexOf('/'); + ext = url.substring(slashIndex + 1, url.indexOf(';', slashIndex)); + } else { + var queryStart = url.indexOf('?'); + var hashStart = url.indexOf('#'); + var index = Math.min(queryStart > -1 ? queryStart : url.length, hashStart > -1 ? hashStart : url.length); + url = url.substring(0, index); + ext = url.substring(url.lastIndexOf('.') + 1); + } + + return ext.toLowerCase(); + } + /** + * Determines the mime type of an XHR request based on the responseType of + * resource being loaded. + * + * @private + * @param {Resource.XHR_RESPONSE_TYPE} type - The type to get a mime type for. + * @return {string} The mime type to use. + */ + ; + + _proto._getMimeFromXhrType = function _getMimeFromXhrType(type) { + switch (type) { + case Resource.XHR_RESPONSE_TYPE.BUFFER: + return 'application/octet-binary'; + + case Resource.XHR_RESPONSE_TYPE.BLOB: + return 'application/blob'; + + case Resource.XHR_RESPONSE_TYPE.DOCUMENT: + return 'application/xml'; + + case Resource.XHR_RESPONSE_TYPE.JSON: + return 'application/json'; + + case Resource.XHR_RESPONSE_TYPE.DEFAULT: + case Resource.XHR_RESPONSE_TYPE.TEXT: + /* falls through */ + + default: + return 'text/plain'; + } + }; + + _createClass(Resource, [{ + key: "isDataUrl", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.DATA_URL); + } + /** + * Describes if this resource has finished loading. Is true when the resource has completely + * loaded. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isComplete", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.COMPLETE); + } + /** + * Describes if this resource is currently loading. Is true when the resource starts loading, + * and is false again when complete. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isLoading", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.LOADING); + } + }]); + + return Resource; +}(); +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + + +Resource$1.STATUS_FLAGS = { + NONE: 0, + DATA_URL: 1 << 0, + COMPLETE: 1 << 1, + LOADING: 1 << 2 +}; +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.TYPE = { + UNKNOWN: 0, + JSON: 1, + XML: 2, + IMAGE: 3, + AUDIO: 4, + VIDEO: 5, + TEXT: 6 +}; +/** + * The types of loading a resource can use. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.LOAD_TYPE = { + /** Uses XMLHttpRequest to load the resource. */ + XHR: 1, + + /** Uses an `Image` object to load the resource. */ + IMAGE: 2, + + /** Uses an `Audio` object to load the resource. */ + AUDIO: 3, + + /** Uses a `Video` object to load the resource. */ + VIDEO: 4 +}; +/** + * The XHR ready states, used internally. + * + * @static + * @readonly + * @enum {string} + */ + +Resource$1.XHR_RESPONSE_TYPE = { + /** string */ + DEFAULT: 'text', + + /** ArrayBuffer */ + BUFFER: 'arraybuffer', + + /** Blob */ + BLOB: 'blob', + + /** Document */ + DOCUMENT: 'document', + + /** Object */ + JSON: 'json', + + /** String */ + TEXT: 'text' +}; +Resource$1._loadTypeMap = { + // images + gif: Resource$1.LOAD_TYPE.IMAGE, + png: Resource$1.LOAD_TYPE.IMAGE, + bmp: Resource$1.LOAD_TYPE.IMAGE, + jpg: Resource$1.LOAD_TYPE.IMAGE, + jpeg: Resource$1.LOAD_TYPE.IMAGE, + tif: Resource$1.LOAD_TYPE.IMAGE, + tiff: Resource$1.LOAD_TYPE.IMAGE, + webp: Resource$1.LOAD_TYPE.IMAGE, + tga: Resource$1.LOAD_TYPE.IMAGE, + svg: Resource$1.LOAD_TYPE.IMAGE, + 'svg+xml': Resource$1.LOAD_TYPE.IMAGE, + // for SVG data urls + // audio + mp3: Resource$1.LOAD_TYPE.AUDIO, + ogg: Resource$1.LOAD_TYPE.AUDIO, + wav: Resource$1.LOAD_TYPE.AUDIO, + // videos + mp4: Resource$1.LOAD_TYPE.VIDEO, + webm: Resource$1.LOAD_TYPE.VIDEO +}; +Resource$1._xhrTypeMap = { + // xml + xhtml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + html: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + htm: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + xml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + tmx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + svg: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // This was added to handle Tiled Tileset XML, but .tsx is also a TypeScript React Component. + // Since it is way less likely for people to be loading TypeScript files instead of Tiled files, + // this should probably be fine. + tsx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // images + gif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + png: Resource$1.XHR_RESPONSE_TYPE.BLOB, + bmp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpeg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tiff: Resource$1.XHR_RESPONSE_TYPE.BLOB, + webp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tga: Resource$1.XHR_RESPONSE_TYPE.BLOB, + // json + json: Resource$1.XHR_RESPONSE_TYPE.JSON, + // text + text: Resource$1.XHR_RESPONSE_TYPE.TEXT, + txt: Resource$1.XHR_RESPONSE_TYPE.TEXT, + // fonts + ttf: Resource$1.XHR_RESPONSE_TYPE.BUFFER, + otf: Resource$1.XHR_RESPONSE_TYPE.BUFFER +}; // We can't set the `src` attribute to empty string, so on abort we set it to this 1px transparent gif + +Resource$1.EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='; +/** + * Quick helper to set a value on one of the extension maps. Ensures there is no + * dot at the start of the extension. + * + * @ignore + * @param {object} map - The map to set on. + * @param {string} extname - The extension (or key) to set. + * @param {number} val - The value to set. + */ + +function setExtMap(map, extname, val) { + if (extname && extname.indexOf('.') === 0) { + extname = extname.substring(1); + } + + if (!extname) { + return; + } + + map[extname] = val; +} +/** + * Quick helper to get string xhr type. + * + * @ignore + * @param {XMLHttpRequest|XDomainRequest} xhr - The request to check. + * @return {string} The type. + */ + + +function reqType(xhr) { + return xhr.toString().replace('object ', ''); +} + +var _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; +/** + * Encodes binary into base64. + * + * @function encodeBinary + * @param {string} input The input data to encode. + * @returns {string} The encoded base64 string + */ + +function encodeBinary(input) { + var output = ''; + var inx = 0; + + while (inx < input.length) { + // Fill byte buffer array + var bytebuffer = [0, 0, 0]; + var encodedCharIndexes = [0, 0, 0, 0]; + + for (var jnx = 0; jnx < bytebuffer.length; ++jnx) { + if (inx < input.length) { + // throw away high-order byte, as documented at: + // https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data + bytebuffer[jnx] = input.charCodeAt(inx++) & 0xff; + } else { + bytebuffer[jnx] = 0; + } + } // Get each encoded character, 6 bits at a time + // index 1: first 6 bits + + + encodedCharIndexes[0] = bytebuffer[0] >> 2; // index 2: second 6 bits (2 least significant bits from input byte 1 + 4 most significant bits from byte 2) + + encodedCharIndexes[1] = (bytebuffer[0] & 0x3) << 4 | bytebuffer[1] >> 4; // index 3: third 6 bits (4 least significant bits from input byte 2 + 2 most significant bits from byte 3) + + encodedCharIndexes[2] = (bytebuffer[1] & 0x0f) << 2 | bytebuffer[2] >> 6; // index 3: forth 6 bits (6 least significant bits from input byte 3) + + encodedCharIndexes[3] = bytebuffer[2] & 0x3f; // Determine whether padding happened, and adjust accordingly + + var paddingBytes = inx - (input.length - 1); + + switch (paddingBytes) { + case 2: + // Set last 2 characters to padding char + encodedCharIndexes[3] = 64; + encodedCharIndexes[2] = 64; + break; + + case 1: + // Set last character to padding char + encodedCharIndexes[3] = 64; + break; + + default: + break; + // No padding - proceed + } // Now we will grab each appropriate character out of our keystring + // based on our index array and append it to the output string + + + for (var _jnx = 0; _jnx < encodedCharIndexes.length; ++_jnx) { + output += _keyStr.charAt(encodedCharIndexes[_jnx]); + } + } + + return output; +} + +var Url$1 = window.URL || window.webkitURL; +/** + * A middleware for transforming XHR loaded Blobs into more useful objects + * + * @memberof middleware + * @function parsing + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.parsing); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function parsing(resource, next) { + if (!resource.data) { + next(); + return; + } // if this was an XHR load of a blob + + + if (resource.xhr && resource.xhrType === Resource$1.XHR_RESPONSE_TYPE.BLOB) { + // if there is no blob support we probably got a binary string back + if (!window.Blob || typeof resource.data === 'string') { + var type = resource.xhr.getResponseHeader('content-type'); // this is an image, convert the binary string into a data url + + if (type && type.indexOf('image') === 0) { + resource.data = new Image(); + resource.data.src = "data:" + type + ";base64," + encodeBinary(resource.xhr.responseText); + resource.type = Resource$1.TYPE.IMAGE; // wait until the image loads and then callback + + resource.data.onload = function () { + resource.data.onload = null; + next(); + }; // next will be called on load + + + return; + } + } // if content type says this is an image, then we should transform the blob into an Image object + else if (resource.data.type.indexOf('image') === 0) { + var src = Url$1.createObjectURL(resource.data); + resource.blob = resource.data; + resource.data = new Image(); + resource.data.src = src; + resource.type = Resource$1.TYPE.IMAGE; // cleanup the no longer used blob after the image loads + // TODO: Is this correct? Will the image be invalid after revoking? + + resource.data.onload = function () { + Url$1.revokeObjectURL(src); + resource.data.onload = null; + next(); + }; // next will be called on load. + + + return; + } + } + + next(); +} + +/** + * @namespace middleware + */ + +var index = ({ + caching: caching, + parsing: parsing +}); + +var MAX_PROGRESS = 100; +var rgxExtractUrlHash = /(#[\w-]+)?$/; +/** + * Manages the state and loading of multiple resources to load. + * + * @class + */ + +var Loader = +/*#__PURE__*/ +function () { + /** + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ + function Loader(baseUrl, concurrency) { + var _this = this; + + if (baseUrl === void 0) { + baseUrl = ''; + } + + if (concurrency === void 0) { + concurrency = 10; + } + + /** + * The base url for all resources loaded by this loader. + * + * @member {string} + */ + this.baseUrl = baseUrl; + /** + * The progress percent of the loader going through the queue. + * + * @member {number} + * @default 0 + */ + + this.progress = 0; + /** + * Loading state of the loader, true if it is currently loading resources. + * + * @member {boolean} + * @default false + */ + + this.loading = false; + /** + * A querystring to append to every URL added to the loader. + * + * This should be a valid query string *without* the question-mark (`?`). The loader will + * also *not* escape values for you. Make sure to escape your parameters with + * [`encodeURIComponent`](https://mdn.io/encodeURIComponent) before assigning this property. + * + * @example + * const loader = new Loader(); + * + * loader.defaultQueryString = 'user=me&password=secret'; + * + * // This will request 'image.png?user=me&password=secret' + * loader.add('image.png').load(); + * + * loader.reset(); + * + * // This will request 'image.png?v=1&user=me&password=secret' + * loader.add('iamge.png?v=1').load(); + * + * @member {string} + * @default '' + */ + + this.defaultQueryString = ''; + /** + * The middleware to run before loading each resource. + * + * @private + * @member {function[]} + */ + + this._beforeMiddleware = []; + /** + * The middleware to run after loading each resource. + * + * @private + * @member {function[]} + */ + + this._afterMiddleware = []; + /** + * The tracks the resources we are currently completing parsing for. + * + * @private + * @member {Resource[]} + */ + + this._resourcesParsing = []; + /** + * The `_loadResource` function bound with this object context. + * + * @private + * @member {function} + * @param {Resource} r - The resource to load + * @param {Function} d - The dequeue function + * @return {undefined} + */ + + this._boundLoadResource = function (r, d) { + return _this._loadResource(r, d); + }; + /** + * The resources waiting to be loaded. + * + * @private + * @member {Resource[]} + */ + + + this._queue = queue(this._boundLoadResource, concurrency); + + this._queue.pause(); + /** + * All the resources for this loader keyed by name. + * + * @member {object} + */ + + + this.resources = {}; + /** + * Dispatched once per loaded or errored resource. + * + * The callback looks like {@link Loader.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once per errored resource. + * + * The callback looks like {@link Loader.OnErrorSignal}. + * + * @member {Signal} + */ + + this.onError = new Signal(); + /** + * Dispatched once per loaded resource. + * + * The callback looks like {@link Loader.OnLoadSignal}. + * + * @member {Signal} + */ + + this.onLoad = new Signal(); + /** + * Dispatched when the loader begins to process the queue. + * + * The callback looks like {@link Loader.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched when the queued resources all load. + * + * The callback looks like {@link Loader.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); // Add default before middleware + + for (var i = 0; i < Loader._defaultBeforeMiddleware.length; ++i) { + this.pre(Loader._defaultBeforeMiddleware[i]); + } // Add default after middleware + + + for (var _i = 0; _i < Loader._defaultAfterMiddleware.length; ++_i) { + this.use(Loader._defaultAfterMiddleware[_i]); + } + } + /** + * When the progress changes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnProgressSignal + * @param {Loader} loader - The loader the progress is advancing on. + * @param {Resource} resource - The resource that has completed or failed to cause the progress to advance. + */ + + /** + * When an error occurrs the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnErrorSignal + * @param {Loader} loader - The loader the error happened in. + * @param {Resource} resource - The resource that caused the error. + */ + + /** + * When a load completes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnLoadSignal + * @param {Loader} loader - The loader that laoded the resource. + * @param {Resource} resource - The resource that has completed loading. + */ + + /** + * When the loader starts loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnStartSignal + * @param {Loader} loader - The loader that has started loading resources. + */ + + /** + * When the loader completes loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnCompleteSignal + * @param {Loader} loader - The loader that has finished loading resources. + */ + + /** + * Options for a call to `.add()`. + * + * @see Loader#add + * + * @typedef {object} IAddOptions + * @property {string} [name] - The name of the resource to load, if not passed the url is used. + * @property {string} [key] - Alias for `name`. + * @property {string} [url] - The url for this resource, relative to the baseUrl of this loader. + * @property {string|boolean} [crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @property {number} [timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @property {Resource.LOAD_TYPE} [loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @property {Resource.XHR_RESPONSE_TYPE} [xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @property {Resource.OnCompleteSignal} [onComplete] - Callback to add an an onComplete signal istener. + * @property {Resource.OnCompleteSignal} [callback] - Alias for `onComplete`. + * @property {Resource.IMetadata} [metadata] - Extra configuration for middleware and the Resource object. + */ + + /* eslint-disable require-jsdoc,valid-jsdoc */ + + /** + * Adds a resource (or multiple resources) to the loader queue. + * + * This function can take a wide variety of different parameters. The only thing that is always + * required the url to load. All the following will work: + * + * ```js + * loader + * // normal param syntax + * .add('key', 'http://...', function () {}) + * .add('http://...', function () {}) + * .add('http://...') + * + * // object syntax + * .add({ + * name: 'key2', + * url: 'http://...' + * }, function () {}) + * .add({ + * url: 'http://...' + * }, function () {}) + * .add({ + * name: 'key3', + * url: 'http://...' + * onComplete: function () {} + * }) + * .add({ + * url: 'https://...', + * onComplete: function () {}, + * crossOrigin: true + * }) + * + * // you can also pass an array of objects or urls or both + * .add([ + * { name: 'key4', url: 'http://...', onComplete: function () {} }, + * { url: 'http://...', onComplete: function () {} }, + * 'http://...' + * ]) + * + * // and you can use both params and options + * .add('key', 'http://...', { crossOrigin: true }, function () {}) + * .add('http://...', { crossOrigin: true }, function () {}); + * ``` + * + * @function + * @variation 1 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 2 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 3 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 4 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 5 + * @param {IAddOptions} options - The options for the load. This object must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 6 + * @param {Array} resources - An array of resources to load, where each is + * either an object with the options or a string url. If you pass an object, it must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + + var _proto = Loader.prototype; + + _proto.add = function add(name, url, options, cb) { + // special case of an array of objects or urls + if (Array.isArray(name)) { + for (var i = 0; i < name.length; ++i) { + this.add(name[i]); + } + + return this; + } // if an object is passed instead of params + + + if (typeof name === 'object') { + cb = url || name.callback || name.onComplete; + options = name; + url = name.url; + name = name.name || name.key || name.url; + } // case where no name is passed shift all args over by one. + + + if (typeof url !== 'string') { + cb = options; + options = url; + url = name; + } // now that we shifted make sure we have a proper url. + + + if (typeof url !== 'string') { + throw new Error('No url passed to add resource to loader.'); + } // options are optional so people might pass a function and no options + + + if (typeof options === 'function') { + cb = options; + options = null; + } // if loading already you can only add resources that have a parent. + + + if (this.loading && (!options || !options.parentResource)) { + throw new Error('Cannot add resources while the loader is running.'); + } // check if resource already exists. + + + if (this.resources[name]) { + throw new Error("Resource named \"" + name + "\" already exists."); + } // add base url if this isn't an absolute url + + + url = this._prepareUrl(url); // create the store the resource + + this.resources[name] = new Resource$1(name, url, options); + + if (typeof cb === 'function') { + this.resources[name].onAfterMiddleware.once(cb); + } // if actively loading, make sure to adjust progress chunks for that parent and its children + + + if (this.loading) { + var parent = options.parentResource; + var incompleteChildren = []; + + for (var _i2 = 0; _i2 < parent.children.length; ++_i2) { + if (!parent.children[_i2].isComplete) { + incompleteChildren.push(parent.children[_i2]); + } + } + + var fullChunk = parent.progressChunk * (incompleteChildren.length + 1); // +1 for parent + + var eachChunk = fullChunk / (incompleteChildren.length + 2); // +2 for parent & new child + + parent.children.push(this.resources[name]); + parent.progressChunk = eachChunk; + + for (var _i3 = 0; _i3 < incompleteChildren.length; ++_i3) { + incompleteChildren[_i3].progressChunk = eachChunk; + } + + this.resources[name].progressChunk = eachChunk; + } // add the resource to the queue + + + this._queue.push(this.resources[name]); + + return this; + } + /* eslint-enable require-jsdoc,valid-jsdoc */ + + /** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.pre = function pre(fn) { + this._beforeMiddleware.push(fn); + + return this; + } + /** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.use = function use(fn) { + this._afterMiddleware.push(fn); + + return this; + } + /** + * Resets the queue of the loader to prepare for a new load. + * + * @return {this} Returns itself. + */ + ; + + _proto.reset = function reset() { + this.progress = 0; + this.loading = false; + + this._queue.kill(); + + this._queue.pause(); // abort all resource loads + + + for (var k in this.resources) { + var res = this.resources[k]; + + if (res._onLoadBinding) { + res._onLoadBinding.detach(); + } + + if (res.isLoading) { + res.abort(); + } + } + + this.resources = {}; + return this; + } + /** + * Starts loading the queued resources. + * + * @param {function} [cb] - Optional callback that will be bound to the `complete` event. + * @return {this} Returns itself. + */ + ; + + _proto.load = function load(cb) { + // register complete callback if they pass one + if (typeof cb === 'function') { + this.onComplete.once(cb); + } // if the queue has already started we are done here + + + if (this.loading) { + return this; + } + + if (this._queue.idle()) { + this._onStart(); + + this._onComplete(); + } else { + // distribute progress chunks + var numTasks = this._queue._tasks.length; + var chunk = MAX_PROGRESS / numTasks; + + for (var i = 0; i < this._queue._tasks.length; ++i) { + this._queue._tasks[i].data.progressChunk = chunk; + } // notify we are starting + + + this._onStart(); // start loading + + + this._queue.resume(); + } + + return this; + } + /** + * The number of resources to load concurrently. + * + * @member {number} + * @default 10 + */ + ; + + /** + * Prepares a url for usage based on the configuration of this object + * + * @private + * @param {string} url - The url to prepare. + * @return {string} The prepared url. + */ + _proto._prepareUrl = function _prepareUrl(url) { + var parsedUrl = parseUri(url, { + strictMode: true + }); + var result; // absolute url, just use it as is. + + if (parsedUrl.protocol || !parsedUrl.path || url.indexOf('//') === 0) { + result = url; + } // if baseUrl doesn't end in slash and url doesn't start with slash, then add a slash inbetween + else if (this.baseUrl.length && this.baseUrl.lastIndexOf('/') !== this.baseUrl.length - 1 && url.charAt(0) !== '/') { + result = this.baseUrl + "/" + url; + } else { + result = this.baseUrl + url; + } // if we need to add a default querystring, there is a bit more work + + + if (this.defaultQueryString) { + var hash = rgxExtractUrlHash.exec(result)[0]; + result = result.substr(0, result.length - hash.length); + + if (result.indexOf('?') !== -1) { + result += "&" + this.defaultQueryString; + } else { + result += "?" + this.defaultQueryString; + } + + result += hash; + } + + return result; + } + /** + * Loads a single resource. + * + * @private + * @param {Resource} resource - The resource to load. + * @param {function} dequeue - The function to call when we need to dequeue this item. + */ + ; + + _proto._loadResource = function _loadResource(resource, dequeue) { + var _this2 = this; + + resource._dequeue = dequeue; // run before middleware + + eachSeries(this._beforeMiddleware, function (fn, next) { + fn.call(_this2, resource, function () { + // if the before middleware marks the resource as complete, + // break and don't process any more before middleware + next(resource.isComplete ? {} : null); + }); + }, function () { + if (resource.isComplete) { + _this2._onLoad(resource); + } else { + resource._onLoadBinding = resource.onComplete.once(_this2._onLoad, _this2); + resource.load(); + } + }, true); + } + /** + * Called once loading has started. + * + * @private + */ + ; + + _proto._onStart = function _onStart() { + this.progress = 0; + this.loading = true; + this.onStart.dispatch(this); + } + /** + * Called once each resource has loaded. + * + * @private + */ + ; + + _proto._onComplete = function _onComplete() { + this.progress = MAX_PROGRESS; + this.loading = false; + this.onComplete.dispatch(this, this.resources); + } + /** + * Called each time a resources is loaded. + * + * @private + * @param {Resource} resource - The resource that was loaded + */ + ; + + _proto._onLoad = function _onLoad(resource) { + var _this3 = this; + + resource._onLoadBinding = null; // remove this resource from the async queue, and add it to our list of resources that are being parsed + + this._resourcesParsing.push(resource); + + resource._dequeue(); // run all the after middleware for this resource + + + eachSeries(this._afterMiddleware, function (fn, next) { + fn.call(_this3, resource, next); + }, function () { + resource.onAfterMiddleware.dispatch(resource); + _this3.progress = Math.min(MAX_PROGRESS, _this3.progress + resource.progressChunk); + + _this3.onProgress.dispatch(_this3, resource); + + if (resource.error) { + _this3.onError.dispatch(resource.error, _this3, resource); + } else { + _this3.onLoad.dispatch(_this3, resource); + } + + _this3._resourcesParsing.splice(_this3._resourcesParsing.indexOf(resource), 1); // do completion check + + + if (_this3._queue.idle() && _this3._resourcesParsing.length === 0) { + _this3._onComplete(); + } + }, true); + }; + + _createClass(Loader, [{ + key: "concurrency", + get: function get() { + return this._queue.concurrency; + } // eslint-disable-next-line require-jsdoc + , + set: function set(concurrency) { + this._queue.concurrency = concurrency; + } + }]); + + return Loader; +}(); +/** + * A default array of middleware to run before loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + + +Loader._defaultBeforeMiddleware = []; +/** + * A default array of middleware to run after loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + +Loader._defaultAfterMiddleware = []; +/** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + +Loader.pre = function LoaderPreStatic(fn) { + Loader._defaultBeforeMiddleware.push(fn); + + return Loader; +}; +/** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + + +Loader.use = function LoaderUseStatic(fn) { + Loader._defaultAfterMiddleware.push(fn); + + return Loader; +}; + +/*! + * @pixi/loaders - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/loaders is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Loader plugin for handling Texture resources. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var TextureLoader = function TextureLoader () {}; + +TextureLoader.use = function use (resource, next) +{ + // create a new texture if the data is an Image object + if (resource.data && resource.type === Resource$1.TYPE.IMAGE) + { + resource.texture = Texture.fromLoader( + resource.data, + resource.url, + resource.name + ); + } + next(); +}; + +/** + * The new loader, extends Resource Loader by Chad Engler: https://github.com/englercj/resource-loader + * + * ```js + * const loader = PIXI.Loader.shared; // PixiJS exposes a premade instance for you to use. + * //or + * const loader = new PIXI.Loader(); // you can also create your own if you want + * + * const sprites = {}; + * + * // Chainable `add` to enqueue a resource + * loader.add('bunny', 'data/bunny.png') + * .add('spaceship', 'assets/spritesheet.json'); + * loader.add('scoreFont', 'assets/score.fnt'); + * + * // Chainable `pre` to add a middleware that runs for each resource, *before* loading that resource. + * // This is useful to implement custom caching modules (using filesystem, indexeddb, memory, etc). + * loader.pre(cachingMiddleware); + * + * // Chainable `use` to add a middleware that runs for each resource, *after* loading that resource. + * // This is useful to implement custom parsing modules (like spritesheet parsers, spine parser, etc). + * loader.use(parsingMiddleware); + * + * // The `load` method loads the queue of resources, and calls the passed in callback called once all + * // resources have loaded. + * loader.load((loader, resources) => { + * // resources is an object where the key is the name of the resource loaded and the value is the resource object. + * // They have a couple default properties: + * // - `url`: The URL that the resource was loaded from + * // - `error`: The error that happened when trying to load (if any) + * // - `data`: The raw data that was loaded + * // also may contain other properties based on the middleware that runs. + * sprites.bunny = new PIXI.TilingSprite(resources.bunny.texture); + * sprites.spaceship = new PIXI.TilingSprite(resources.spaceship.texture); + * sprites.scoreFont = new PIXI.TilingSprite(resources.scoreFont.texture); + * }); + * + * // throughout the process multiple signals can be dispatched. + * loader.onProgress.add(() => {}); // called once per loaded/errored file + * loader.onError.add(() => {}); // called once per errored file + * loader.onLoad.add(() => {}); // called once per loaded file + * loader.onComplete.add(() => {}); // called once when the queued resources all load. + * ``` + * + * @see https://github.com/englercj/resource-loader + * + * @class Loader + * @memberof PIXI + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ +var Loader$1 = /*@__PURE__*/(function (ResourceLoader) { + function Loader(baseUrl, concurrency) + { + var this$1 = this; + + ResourceLoader.call(this, baseUrl, concurrency); + eventemitter3.call(this); + + for (var i = 0; i < Loader._plugins.length; ++i) + { + var plugin = Loader._plugins[i]; + var pre = plugin.pre; + var use = plugin.use; + + if (pre) + { + this.pre(pre); + } + + if (use) + { + this.use(use); + } + } + + // Compat layer, translate the new v2 signals into old v1 events. + this.onStart.add(function (l) { return this$1.emit('start', l); }); + this.onProgress.add(function (l, r) { return this$1.emit('progress', l, r); }); + this.onError.add(function (e, l, r) { return this$1.emit('error', e, l, r); }); + this.onLoad.add(function (l, r) { return this$1.emit('load', l, r); }); + this.onComplete.add(function (l, r) { return this$1.emit('complete', l, r); }); + + /** + * If this loader cannot be destroyed. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + } + + if ( ResourceLoader ) Loader.__proto__ = ResourceLoader; + Loader.prototype = Object.create( ResourceLoader && ResourceLoader.prototype ); + Loader.prototype.constructor = Loader; + + var staticAccessors = { shared: { configurable: true } }; + + /** + * Destroy the loader, removes references. + * @private + */ + Loader.prototype.destroy = function destroy () + { + if (!this._protected) + { + this.removeAllListeners(); + this.reset(); + } + }; + + /** + * A premade instance of the loader that can be used to load resources. + * @name shared + * @type {PIXI.Loader} + * @static + * @memberof PIXI.Loader + */ + staticAccessors.shared.get = function () + { + var shared = Loader._shared; + + if (!shared) + { + shared = new Loader(); + shared._protected = true; + Loader._shared = shared; + } + + return shared; + }; + + Object.defineProperties( Loader, staticAccessors ); + + return Loader; +}(Loader)); + +// Copy EE3 prototype (mixin) +Object.assign(Loader$1.prototype, eventemitter3.prototype); + +/** + * Collection of all installed `use` middleware for Loader. + * + * @static + * @member {Array} _plugins + * @memberof PIXI.Loader + * @private + */ +Loader$1._plugins = []; + +/** + * Adds a Loader plugin for the global shared loader and all + * new Loader instances created. + * + * @static + * @method registerPlugin + * @memberof PIXI.Loader + * @param {PIXI.ILoaderPlugin} plugin - The plugin to add + * @return {PIXI.Loader} Reference to PIXI.Loader for chaining + */ +Loader$1.registerPlugin = function registerPlugin(plugin) +{ + Loader$1._plugins.push(plugin); + + if (plugin.add) + { + plugin.add(); + } + + return Loader$1; +}; + +// parse any blob into more usable objects (e.g. Image) +Loader$1.registerPlugin({ use: index.parsing }); + +// parse any Image objects into textures +Loader$1.registerPlugin(TextureLoader); + +/** + * Plugin to be installed for handling specific Loader resources. + * + * @memberof PIXI + * @typedef ILoaderPlugin + * @property {function} [add] - Function to call immediate after registering plugin. + * @property {PIXI.Loader.loaderMiddleware} [pre] - Middleware function to run before load, the + * arguments for this are `(resource, next)` + * @property {PIXI.Loader.loaderMiddleware} [use] - Middleware function to run after load, the + * arguments for this are `(resource, next)` + */ + +/** + * @memberof PIXI.Loader + * @callback loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onStart + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onProgress + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onError + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onLoad + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onComplete + */ + +/** + * Application plugin for supporting loader option. Installing the LoaderPlugin + * is not necessary if using **pixi.js** or **pixi.js-legacy**. + * @example + * import {AppLoaderPlugin} from '@pixi/loaders'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(AppLoaderPlugin); + * @class + * @memberof PIXI + */ +var AppLoaderPlugin = function AppLoaderPlugin () {}; + +AppLoaderPlugin.init = function init (options) +{ + options = Object.assign({ + sharedLoader: false, + }, options); + + /** + * Loader instance to help with asset loading. + * @name PIXI.Application#loader + * @type {PIXI.Loader} + * @readonly + */ + this.loader = options.sharedLoader ? Loader$1.shared : new Loader$1(); +}; + +/** + * Called when application destroyed + * @private + */ +AppLoaderPlugin.destroy = function destroy () +{ + if (this.loader) + { + this.loader.destroy(); + this.loader = null; + } +}; + +/** + * Reference to **{@link https://github.com/englercj/resource-loader + * resource-loader}**'s Resource class. + * @see http://englercj.github.io/resource-loader/Resource.html + * @class LoaderResource + * @memberof PIXI + */ +var LoaderResource = Resource$1; + +/*! + * @pixi/particles - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/particles is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that + * they now share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleBuffer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleBuffer.java + */ + +/** + * The particle buffer manages the static and dynamic buffers for a particle container. + * + * @class + * @private + * @memberof PIXI + */ +var ParticleBuffer = function ParticleBuffer(properties, dynamicPropertyFlags, size) +{ + this.geometry = new Geometry(); + + this.indexBuffer = null; + + /** + * The number of particles the buffer can hold + * + * @private + * @member {number} + */ + this.size = size; + + /** + * A list of the properties that are dynamic. + * + * @private + * @member {object[]} + */ + this.dynamicProperties = []; + + /** + * A list of the properties that are static. + * + * @private + * @member {object[]} + */ + this.staticProperties = []; + + for (var i = 0; i < properties.length; ++i) + { + var property = properties[i]; + + // Make copy of properties object so that when we edit the offset it doesn't + // change all other instances of the object literal + property = { + attributeName: property.attributeName, + size: property.size, + uploadFunction: property.uploadFunction, + type: property.type || TYPES.FLOAT, + offset: property.offset, + }; + + if (dynamicPropertyFlags[i]) + { + this.dynamicProperties.push(property); + } + else + { + this.staticProperties.push(property); + } + } + + this.staticStride = 0; + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + + this.dynamicStride = 0; + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this._updateID = 0; + + this.initBuffers(); +}; + +/** + * Sets up the renderer context and necessary buffers. + * + * @private + */ +ParticleBuffer.prototype.initBuffers = function initBuffers () +{ + var geometry = this.geometry; + + var dynamicOffset = 0; + + /** + * Holds the indices of the geometry (quads) to draw + * + * @member {Uint16Array} + * @private + */ + this.indexBuffer = new Buffer$1(createIndicesForQuads(this.size), true, true); + geometry.addIndex(this.indexBuffer); + + this.dynamicStride = 0; + + for (var i = 0; i < this.dynamicProperties.length; ++i) + { + var property = this.dynamicProperties[i]; + + property.offset = dynamicOffset; + dynamicOffset += property.size; + this.dynamicStride += property.size; + } + + var dynBuffer = new ArrayBuffer(this.size * this.dynamicStride * 4 * 4); + + this.dynamicData = new Float32Array(dynBuffer); + this.dynamicDataUint32 = new Uint32Array(dynBuffer); + this.dynamicBuffer = new Buffer$1(this.dynamicData, false, false); + + // static // + var staticOffset = 0; + + this.staticStride = 0; + + for (var i$1 = 0; i$1 < this.staticProperties.length; ++i$1) + { + var property$1 = this.staticProperties[i$1]; + + property$1.offset = staticOffset; + staticOffset += property$1.size; + this.staticStride += property$1.size; + } + + var statBuffer = new ArrayBuffer(this.size * this.staticStride * 4 * 4); + + this.staticData = new Float32Array(statBuffer); + this.staticDataUint32 = new Uint32Array(statBuffer); + this.staticBuffer = new Buffer$1(this.staticData, true, false); + + for (var i$2 = 0; i$2 < this.dynamicProperties.length; ++i$2) + { + var property$2 = this.dynamicProperties[i$2]; + + geometry.addAttribute( + property$2.attributeName, + this.dynamicBuffer, + 0, + property$2.type === TYPES.UNSIGNED_BYTE, + property$2.type, + this.dynamicStride * 4, + property$2.offset * 4 + ); + } + + for (var i$3 = 0; i$3 < this.staticProperties.length; ++i$3) + { + var property$3 = this.staticProperties[i$3]; + + geometry.addAttribute( + property$3.attributeName, + this.staticBuffer, + 0, + property$3.type === TYPES.UNSIGNED_BYTE, + property$3.type, + this.staticStride * 4, + property$3.offset * 4 + ); + } +}; + +/** + * Uploads the dynamic properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadDynamic = function uploadDynamic (children, startIndex, amount) +{ + for (var i = 0; i < this.dynamicProperties.length; i++) + { + var property = this.dynamicProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.dynamicDataUint32 : this.dynamicData, + this.dynamicStride, property.offset); + } + + this.dynamicBuffer._updateID++; +}; + +/** + * Uploads the static properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadStatic = function uploadStatic (children, startIndex, amount) +{ + for (var i = 0; i < this.staticProperties.length; i++) + { + var property = this.staticProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.staticDataUint32 : this.staticData, + this.staticStride, property.offset); + } + + this.staticBuffer._updateID++; +}; + +/** + * Destroys the ParticleBuffer. + * + * @private + */ +ParticleBuffer.prototype.destroy = function destroy () +{ + this.indexBuffer = null; + + this.dynamicProperties = null; + // this.dynamicBuffer.destroy(); + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this.staticProperties = null; + // this.staticBuffer.destroy(); + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + // all buffers are destroyed inside geometry + this.geometry.destroy(); +}; + +var vertex$1 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\n\nattribute vec2 aPositionCoord;\nattribute float aRotation;\n\nuniform mat3 translationMatrix;\nuniform vec4 uColor;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nvoid main(void){\n float x = (aVertexPosition.x) * cos(aRotation) - (aVertexPosition.y) * sin(aRotation);\n float y = (aVertexPosition.x) * sin(aRotation) + (aVertexPosition.y) * cos(aRotation);\n\n vec2 v = vec2(x, y);\n v = v + aPositionCoord;\n\n gl_Position = vec4((translationMatrix * vec3(v, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vColor = aColor * uColor;\n}\n"; + +var fragment$1 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n vec4 color = texture2D(uSampler, vTextureCoord) * vColor;\n gl_FragColor = color;\n}"; + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that they now + * share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleRenderer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleRenderer.java + */ + +/** + * Renderer for Particles that is designer for speed over feature set. + * + * @class + * @memberof PIXI + */ +var ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function ParticleRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + // 65535 is max vertex index in the index buffer (see ParticleRenderer) + // so max number of particles is 65536 / 4 = 16384 + // and max number of element in the index buffer is 16384 * 6 = 98304 + // Creating a full index buffer, overhead is 98304 * 2 = 196Ko + // let numIndices = 98304; + + /** + * The default shader that is used if a sprite doesn't have a more specific one. + * + * @member {PIXI.Shader} + */ + this.shader = null; + + this.properties = null; + + this.tempMatrix = new Matrix(); + + this.properties = [ + // verticesData + { + attributeName: 'aVertexPosition', + size: 2, + uploadFunction: this.uploadVertices, + offset: 0, + }, + // positionData + { + attributeName: 'aPositionCoord', + size: 2, + uploadFunction: this.uploadPosition, + offset: 0, + }, + // rotationData + { + attributeName: 'aRotation', + size: 1, + uploadFunction: this.uploadRotation, + offset: 0, + }, + // uvsData + { + attributeName: 'aTextureCoord', + size: 2, + uploadFunction: this.uploadUvs, + offset: 0, + }, + // tintData + { + attributeName: 'aColor', + size: 1, + type: TYPES.UNSIGNED_BYTE, + uploadFunction: this.uploadTint, + offset: 0, + } ]; + + this.shader = Shader.from(vertex$1, fragment$1, {}); + } + + if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer; + ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + ParticleRenderer.prototype.constructor = ParticleRenderer; + + /** + * Renders the particle container object. + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + */ + ParticleRenderer.prototype.render = function render (container) + { + var children = container.children; + var maxSize = container._maxSize; + var batchSize = container._batchSize; + var renderer = this.renderer; + var totalChildren = children.length; + + if (totalChildren === 0) + { + return; + } + else if (totalChildren > maxSize && !container.autoResize) + { + totalChildren = maxSize; + } + + var buffers = container._buffers; + + if (!buffers) + { + buffers = container._buffers = this.generateBuffers(container); + } + + var baseTexture = children[0]._texture.baseTexture; + + // if the uvs have not updated then no point rendering just yet! + this.renderer.state.setBlendMode(correctBlendMode(container.blendMode, baseTexture.premultiplyAlpha)); + + var gl = renderer.gl; + + var m = container.worldTransform.copyTo(this.tempMatrix); + + m.prepend(renderer.globalUniforms.uniforms.projectionMatrix); + + this.shader.uniforms.translationMatrix = m.toArray(true); + + this.shader.uniforms.uColor = premultiplyRgba(container.tintRgb, + container.worldAlpha, this.shader.uniforms.uColor, baseTexture.premultiplyAlpha); + + this.shader.uniforms.uSampler = baseTexture; + + this.renderer.shader.bind(this.shader); + + var updateStatic = false; + + // now lets upload and render the buffers.. + for (var i = 0, j = 0; i < totalChildren; i += batchSize, j += 1) + { + var amount = (totalChildren - i); + + if (amount > batchSize) + { + amount = batchSize; + } + + if (j >= buffers.length) + { + buffers.push(this._generateOneMoreBuffer(container)); + } + + var buffer = buffers[j]; + + // we always upload the dynamic + buffer.uploadDynamic(children, i, amount); + + var bid = container._bufferUpdateIDs[j] || 0; + + updateStatic = updateStatic || (buffer._updateID < bid); + // we only upload the static content when we have to! + if (updateStatic) + { + buffer._updateID = container._updateID; + buffer.uploadStatic(children, i, amount); + } + + // bind the buffer + renderer.geometry.bind(buffer.geometry); + gl.drawElements(gl.TRIANGLES, amount * 6, gl.UNSIGNED_SHORT, 0); + } + }; + + /** + * Creates one particle buffer for each child in the container we want to render and updates internal properties + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer[]} The buffers + * @private + */ + ParticleRenderer.prototype.generateBuffers = function generateBuffers (container) + { + var buffers = []; + var size = container._maxSize; + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + for (var i = 0; i < size; i += batchSize) + { + buffers.push(new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize)); + } + + return buffers; + }; + + /** + * Creates one more particle buffer, because container has autoResize feature + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer} generated buffer + * @private + */ + ParticleRenderer.prototype._generateOneMoreBuffer = function _generateOneMoreBuffer (container) + { + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + return new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize); + }; + + /** + * Uploads the vertices. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their vertices uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadVertices = function uploadVertices (children, startIndex, amount, array, stride, offset) + { + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var texture = sprite._texture; + var sx = sprite.scale.x; + var sy = sprite.scale.y; + var trim = texture.trim; + var orig = texture.orig; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the + // extra space before transforming the sprite coords.. + w1 = trim.x - (sprite.anchor.x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (sprite.anchor.y * orig.height); + h0 = h1 + trim.height; + } + else + { + w0 = (orig.width) * (1 - sprite.anchor.x); + w1 = (orig.width) * -sprite.anchor.x; + + h0 = orig.height * (1 - sprite.anchor.y); + h1 = orig.height * -sprite.anchor.y; + } + + array[offset] = w1 * sx; + array[offset + 1] = h1 * sy; + + array[offset + stride] = w0 * sx; + array[offset + stride + 1] = h1 * sy; + + array[offset + (stride * 2)] = w0 * sx; + array[offset + (stride * 2) + 1] = h0 * sy; + + array[offset + (stride * 3)] = w1 * sx; + array[offset + (stride * 3) + 1] = h0 * sy; + + offset += stride * 4; + } + }; + + /** + * Uploads the position. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their positions uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadPosition = function uploadPosition (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spritePosition = children[startIndex + i].position; + + array[offset] = spritePosition.x; + array[offset + 1] = spritePosition.y; + + array[offset + stride] = spritePosition.x; + array[offset + stride + 1] = spritePosition.y; + + array[offset + (stride * 2)] = spritePosition.x; + array[offset + (stride * 2) + 1] = spritePosition.y; + + array[offset + (stride * 3)] = spritePosition.x; + array[offset + (stride * 3) + 1] = spritePosition.y; + + offset += stride * 4; + } + }; + + /** + * Uploads the rotiation. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadRotation = function uploadRotation (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spriteRotation = children[startIndex + i].rotation; + + array[offset] = spriteRotation; + array[offset + stride] = spriteRotation; + array[offset + (stride * 2)] = spriteRotation; + array[offset + (stride * 3)] = spriteRotation; + + offset += stride * 4; + } + }; + + /** + * Uploads the Uvs + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadUvs = function uploadUvs (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var textureUvs = children[startIndex + i]._texture._uvs; + + if (textureUvs) + { + array[offset] = textureUvs.x0; + array[offset + 1] = textureUvs.y0; + + array[offset + stride] = textureUvs.x1; + array[offset + stride + 1] = textureUvs.y1; + + array[offset + (stride * 2)] = textureUvs.x2; + array[offset + (stride * 2) + 1] = textureUvs.y2; + + array[offset + (stride * 3)] = textureUvs.x3; + array[offset + (stride * 3) + 1] = textureUvs.y3; + + offset += stride * 4; + } + else + { + // TODO you know this can be easier! + array[offset] = 0; + array[offset + 1] = 0; + + array[offset + stride] = 0; + array[offset + stride + 1] = 0; + + array[offset + (stride * 2)] = 0; + array[offset + (stride * 2) + 1] = 0; + + array[offset + (stride * 3)] = 0; + array[offset + (stride * 3) + 1] = 0; + + offset += stride * 4; + } + } + }; + + /** + * Uploads the tint. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadTint = function uploadTint (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var premultiplied = sprite._texture.baseTexture.premultiplyAlpha; + var alpha = sprite.alpha; + // we dont call extra function if alpha is 1.0, that's faster + var argb = alpha < 1.0 && premultiplied ? premultiplyTint(sprite._tintRGB, alpha) + : sprite._tintRGB + (alpha * 255 << 24); + + array[offset] = argb; + array[offset + stride] = argb; + array[offset + (stride * 2)] = argb; + array[offset + (stride * 3)] = argb; + + offset += stride * 4; + } + }; + + /** + * Destroys the ParticleRenderer. + */ + ParticleRenderer.prototype.destroy = function destroy () + { + ObjectRenderer.prototype.destroy.call(this); + + if (this.shader) + { + this.shader.destroy(); + this.shader = null; + } + + this.tempMatrix = null; + }; + + return ParticleRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/spritesheet - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/spritesheet is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Utility class for maintaining reference to a collection + * of Textures on a single Spritesheet. + * + * To access a sprite sheet from your code pass its JSON data file to Pixi's loader: + * + * ```js + * PIXI.Loader.shared.add("images/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["images/spritesheet.json"].spritesheet; + * ... + * } + * ``` + * With the `sheet.textures` you can create Sprite objects,`sheet.animations` can be used to create an AnimatedSprite. + * + * Sprite sheets can be packed using tools like {@link https://codeandweb.com/texturepacker|TexturePacker}, + * {@link https://renderhjs.net/shoebox/|Shoebox} or {@link https://github.com/krzysztof-o/spritesheet.js|Spritesheet.js}. + * Default anchor points (see {@link PIXI.Texture#defaultAnchor}) and grouping of animation sprites are currently only + * supported by TexturePacker. + * + * @class + * @memberof PIXI + */ +var Spritesheet = function Spritesheet(baseTexture, data, resolutionFilename) +{ + if ( resolutionFilename === void 0 ) resolutionFilename = null; + + /** + * Reference to ths source texture + * @type {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * A map containing all textures of the sprite sheet. + * Can be used to create a {@link PIXI.Sprite|Sprite}: + * ```js + * new PIXI.Sprite(sheet.textures["image.png"]); + * ``` + * @member {Object} + */ + this.textures = {}; + + /** + * A map containing the textures for each animation. + * Can be used to create an {@link PIXI.AnimatedSprite|AnimatedSprite}: + * ```js + * new PIXI.AnimatedSprite(sheet.animations["anim_name"]) + * ``` + * @member {Object} + */ + this.animations = {}; + + /** + * Reference to the original JSON data. + * @type {Object} + */ + this.data = data; + + /** + * The resolution of the spritesheet. + * @type {number} + */ + this.resolution = this._updateResolution( + resolutionFilename + || (this.baseTexture.resource ? this.baseTexture.resource.url : null) + ); + + /** + * Map of spritesheet frames. + * @type {Object} + * @private + */ + this._frames = this.data.frames; + + /** + * Collection of frame names. + * @type {string[]} + * @private + */ + this._frameKeys = Object.keys(this._frames); + + /** + * Current batch index being processed. + * @type {number} + * @private + */ + this._batchIndex = 0; + + /** + * Callback when parse is completed. + * @type {Function} + * @private + */ + this._callback = null; +}; + +var staticAccessors$4 = { BATCH_SIZE: { configurable: true } }; + +/** + * Generate the resolution from the filename or fallback + * to the meta.scale field of the JSON data. + * + * @private + * @param {string} resolutionFilename - The filename to use for resolving + * the default resolution. + * @return {number} Resolution to use for spritesheet. + */ +staticAccessors$4.BATCH_SIZE.get = function () +{ + return 1000; +}; + +Spritesheet.prototype._updateResolution = function _updateResolution (resolutionFilename) +{ + var scale = this.data.meta.scale; + + // Use a defaultValue of `null` to check if a url-based resolution is set + var resolution = getResolutionOfUrl(resolutionFilename, null); + + // No resolution found via URL + if (resolution === null) + { + // Use the scale value or default to 1 + resolution = scale !== undefined ? parseFloat(scale) : 1; + } + + // For non-1 resolutions, update baseTexture + if (resolution !== 1) + { + this.baseTexture.setResolution(resolution); + } + + return resolution; +}; + +/** + * Parser spritesheet from loaded data. This is done asynchronously + * to prevent creating too many Texture within a single process. + * + * @param {Function} callback - Callback when complete returns + * a map of the Textures for this spritesheet. + */ +Spritesheet.prototype.parse = function parse (callback) +{ + this._batchIndex = 0; + this._callback = callback; + + if (this._frameKeys.length <= Spritesheet.BATCH_SIZE) + { + this._processFrames(0); + this._processAnimations(); + this._parseComplete(); + } + else + { + this._nextBatch(); + } +}; + +/** + * Process a batch of frames + * + * @private + * @param {number} initialFrameIndex - The index of frame to start. + */ +Spritesheet.prototype._processFrames = function _processFrames (initialFrameIndex) +{ + var frameIndex = initialFrameIndex; + var maxFrames = Spritesheet.BATCH_SIZE; + + while (frameIndex - initialFrameIndex < maxFrames && frameIndex < this._frameKeys.length) + { + var i = this._frameKeys[frameIndex]; + var data = this._frames[i]; + var rect = data.frame; + + if (rect) + { + var frame = null; + var trim = null; + var sourceSize = data.trimmed !== false && data.sourceSize + ? data.sourceSize : data.frame; + + var orig = new Rectangle( + 0, + 0, + Math.floor(sourceSize.w) / this.resolution, + Math.floor(sourceSize.h) / this.resolution + ); + + if (data.rotated) + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.h) / this.resolution, + Math.floor(rect.w) / this.resolution + ); + } + else + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + // Check to see if the sprite is trimmed + if (data.trimmed !== false && data.spriteSourceSize) + { + trim = new Rectangle( + Math.floor(data.spriteSourceSize.x) / this.resolution, + Math.floor(data.spriteSourceSize.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + this.textures[i] = new Texture( + this.baseTexture, + frame, + orig, + trim, + data.rotated ? 2 : 0, + data.anchor + ); + + // lets also add the frame to pixi's global cache for 'from' and 'fromLoader' functions + Texture.addToCache(this.textures[i], i); + } + + frameIndex++; + } +}; + +/** + * Parse animations config + * + * @private + */ +Spritesheet.prototype._processAnimations = function _processAnimations () +{ + var animations = this.data.animations || {}; + + for (var animName in animations) + { + this.animations[animName] = []; + for (var i = 0; i < animations[animName].length; i++) + { + var frameName = animations[animName][i]; + + this.animations[animName].push(this.textures[frameName]); + } + } +}; + +/** + * The parse has completed. + * + * @private + */ +Spritesheet.prototype._parseComplete = function _parseComplete () +{ + var callback = this._callback; + + this._callback = null; + this._batchIndex = 0; + callback.call(this, this.textures); +}; + +/** + * Begin the next batch of textures. + * + * @private + */ +Spritesheet.prototype._nextBatch = function _nextBatch () +{ + var this$1 = this; + + this._processFrames(this._batchIndex * Spritesheet.BATCH_SIZE); + this._batchIndex++; + setTimeout(function () { + if (this$1._batchIndex * Spritesheet.BATCH_SIZE < this$1._frameKeys.length) + { + this$1._nextBatch(); + } + else + { + this$1._processAnimations(); + this$1._parseComplete(); + } + }, 0); +}; + +/** + * Destroy Spritesheet and don't use after this. + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ +Spritesheet.prototype.destroy = function destroy (destroyBase) +{ + if ( destroyBase === void 0 ) destroyBase = false; + + for (var i in this.textures) + { + this.textures[i].destroy(); + } + this._frames = null; + this._frameKeys = null; + this.data = null; + this.textures = null; + if (destroyBase) + { + this.baseTexture.destroy(); + } + this.baseTexture = null; +}; + +Object.defineProperties( Spritesheet, staticAccessors$4 ); + +/** + * {@link PIXI.Loader Loader} middleware for loading texture atlases that have been created with + * TexturePacker or similar JSON-based spritesheet. + * + * This middleware automatically generates Texture resources. + * + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var SpritesheetLoader = function SpritesheetLoader () {}; + +SpritesheetLoader.use = function use (resource, next) +{ + var imageResourceName = (resource.name) + "_image"; + + // skip if no data, its not json, it isn't spritesheet data, or the image resource already exists + if (!resource.data + || resource.type !== LoaderResource.TYPE.JSON + || !resource.data.frames + || this.resources[imageResourceName] + ) + { + next(); + + return; + } + + var loadOptions = { + crossOrigin: resource.crossOrigin, + metadata: resource.metadata.imageMetadata, + parentResource: resource, + }; + + var resourcePath = SpritesheetLoader.getResourcePath(resource, this.baseUrl); + + // load the image for this sheet + this.add(imageResourceName, resourcePath, loadOptions, function onImageLoad(res) + { + if (res.error) + { + next(res.error); + + return; + } + + var spritesheet = new Spritesheet( + res.texture.baseTexture, + resource.data, + resource.url + ); + + spritesheet.parse(function () { + resource.spritesheet = spritesheet; + resource.textures = spritesheet.textures; + next(); + }); + }); +}; + +/** + * Get the spritesheets root path + * @param {PIXI.LoaderResource} resource - Resource to check path + * @param {string} baseUrl - Base root url + */ +SpritesheetLoader.getResourcePath = function getResourcePath (resource, baseUrl) +{ + // Prepend url path unless the resource image is a data url + if (resource.isDataUrl) + { + return resource.data.meta.image; + } + + return url.resolve(resource.url.replace(baseUrl, ''), resource.data.meta.image); +}; + +/*! + * @pixi/sprite-tiling - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite-tiling is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$1 = new Point(); + +var vertex$2 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform mat3 uTransform;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = (uTransform * vec3(aTextureCoord, 1.0)).xy;\n}\n"; + +var fragment$2 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\nuniform mat3 uMapCoord;\nuniform vec4 uClampFrame;\nuniform vec2 uClampOffset;\n\nvoid main(void)\n{\n vec2 coord = mod(vTextureCoord - uClampOffset, vec2(1.0, 1.0)) + uClampOffset;\n coord = (uMapCoord * vec3(coord, 1.0)).xy;\n coord = clamp(coord, uClampFrame.xy, uClampFrame.zw);\n\n vec4 sample = texture2D(uSampler, coord);\n gl_FragColor = sample * uColor;\n}\n"; + +var fragmentSimple = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\n\nvoid main(void)\n{\n vec4 sample = texture2D(uSampler, vTextureCoord);\n gl_FragColor = sample * uColor;\n}\n"; + +var tempMat$1 = new Matrix(); + +/** + * WebGL renderer plugin for tiling sprites + * + * @class + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function TilingSpriteRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + var uniforms = { globals: this.renderer.globalUniforms }; + + this.shader = Shader.from(vertex$2, fragment$2, uniforms); + + this.simpleShader = Shader.from(vertex$2, fragmentSimple, uniforms); + + this.quad = new QuadUv(); + } + + if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer; + TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer; + + /** + * + * @param {PIXI.TilingSprite} ts tilingSprite to be rendered + */ + TilingSpriteRenderer.prototype.render = function render (ts) + { + var renderer = this.renderer; + var quad = this.quad; + + var vertices = quad.vertices; + + vertices[0] = vertices[6] = (ts._width) * -ts.anchor.x; + vertices[1] = vertices[3] = ts._height * -ts.anchor.y; + + vertices[2] = vertices[4] = (ts._width) * (1.0 - ts.anchor.x); + vertices[5] = vertices[7] = ts._height * (1.0 - ts.anchor.y); + + if (ts.uvRespectAnchor) + { + vertices = quad.uvs; + + vertices[0] = vertices[6] = -ts.anchor.x; + vertices[1] = vertices[3] = -ts.anchor.y; + + vertices[2] = vertices[4] = 1.0 - ts.anchor.x; + vertices[5] = vertices[7] = 1.0 - ts.anchor.y; + } + + quad.invalidate(); + + var tex = ts._texture; + var baseTex = tex.baseTexture; + var lt = ts.tileTransform.localTransform; + var uv = ts.uvMatrix; + var isSimple = baseTex.isPowerOfTwo + && tex.frame.width === baseTex.width && tex.frame.height === baseTex.height; + + // auto, force repeat wrapMode for big tiling textures + if (isSimple) + { + if (!baseTex._glTextures[renderer.CONTEXT_UID]) + { + if (baseTex.wrapMode === WRAP_MODES.CLAMP) + { + baseTex.wrapMode = WRAP_MODES.REPEAT; + } + } + else + { + isSimple = baseTex.wrapMode !== WRAP_MODES.CLAMP; + } + } + + var shader = isSimple ? this.simpleShader : this.shader; + + var w = tex.width; + var h = tex.height; + var W = ts._width; + var H = ts._height; + + tempMat$1.set(lt.a * w / W, + lt.b * w / H, + lt.c * h / W, + lt.d * h / H, + lt.tx / W, + lt.ty / H); + + // that part is the same as above: + // tempMat.identity(); + // tempMat.scale(tex.width, tex.height); + // tempMat.prepend(lt); + // tempMat.scale(1.0 / ts._width, 1.0 / ts._height); + + tempMat$1.invert(); + if (isSimple) + { + tempMat$1.prepend(uv.mapCoord); + } + else + { + shader.uniforms.uMapCoord = uv.mapCoord.toArray(true); + shader.uniforms.uClampFrame = uv.uClampFrame; + shader.uniforms.uClampOffset = uv.uClampOffset; + } + + shader.uniforms.uTransform = tempMat$1.toArray(true); + shader.uniforms.uColor = premultiplyTintToRgba(ts.tint, ts.worldAlpha, + shader.uniforms.uColor, baseTex.premultiplyAlpha); + shader.uniforms.translationMatrix = ts.transform.worldTransform.toArray(true); + shader.uniforms.uSampler = tex; + + renderer.shader.bind(shader); + renderer.geometry.bind(quad);// , renderer.shader.getGLShader()); + + renderer.state.setBlendMode(correctBlendMode(ts.blendMode, baseTex.premultiplyAlpha)); + renderer.geometry.draw(this.renderer.gl.TRIANGLES, 6, 0); + }; + + return TilingSpriteRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/text-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * A BitmapText object will create a line or multiple lines of text using bitmap font. + * + * The primary advantage of this class over Text is that all of your textures are pre-generated and loading, + * meaning that rendering is fast, and changing text has no performance implications. + * + * The primary disadvantage is that you need to preload the bitmap font assets, and thus the styling is set in stone. + * Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters. + * + * To split a line you can use '\n', '\r' or '\r\n' in your string. + * + * You can generate the fnt files using + * http://www.angelcode.com/products/bmfont/ for Windows or + * http://www.bmglyph.com/ for Mac. + * + * A BitmapText can only be created when the font is loaded. + * + * ```js + * // in this case the font is in a file called 'desyrel.fnt' + * let bitmapText = new PIXI.BitmapText("text using a fancy font!", {font: "35px Desyrel", align: "right"}); + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var BitmapText = /*@__PURE__*/(function (Container) { + function BitmapText(text, style) + { + var this$1 = this; + if ( style === void 0 ) style = {}; + + Container.call(this); + + /** + * Private tracker for the width of the overall text + * + * @member {number} + * @private + */ + this._textWidth = 0; + + /** + * Private tracker for the height of the overall text + * + * @member {number} + * @private + */ + this._textHeight = 0; + + /** + * Private tracker for the letter sprite pool. + * + * @member {PIXI.Sprite[]} + * @private + */ + this._glyphs = []; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._font = { + tint: style.tint !== undefined ? style.tint : 0xFFFFFF, + align: style.align || 'left', + name: null, + size: 0, + }; + + /** + * Private tracker for the current font. + * + * @member {object} + * @private + */ + this.font = style.font; // run font setter + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = text; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting value to 0 + * + * @member {number} + * @private + */ + this._maxWidth = 0; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * ie: when trying to vertically align. + * + * @member {number} + * @private + */ + this._maxLineHeight = 0; + + /** + * Letter spacing. This is useful for setting the space between characters. + * @member {number} + * @private + */ + this._letterSpacing = 0; + + /** + * Text anchor. read-only + * + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint(function () { this$1.dirty = true; }, this, 0, 0); + + /** + * The dirty state of this object. + * + * @member {boolean} + */ + this.dirty = false; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + this.roundPixels = settings.ROUND_PIXELS; + + this.updateText(); + } + + if ( Container ) BitmapText.__proto__ = Container; + BitmapText.prototype = Object.create( Container && Container.prototype ); + BitmapText.prototype.constructor = BitmapText; + + var prototypeAccessors = { tint: { configurable: true },align: { configurable: true },anchor: { configurable: true },font: { configurable: true },text: { configurable: true },maxWidth: { configurable: true },maxLineHeight: { configurable: true },textWidth: { configurable: true },letterSpacing: { configurable: true },textHeight: { configurable: true } }; + + /** + * Renders text and updates it when needed + * + * @private + */ + BitmapText.prototype.updateText = function updateText () + { + var data = BitmapText.fonts[this._font.name]; + var scale = this._font.size / data.size; + var pos = new Point(); + var chars = []; + var lineWidths = []; + var text = this._text.replace(/(?:\r\n|\r)/g, '\n') || ' '; + var textLength = text.length; + var maxWidth = this._maxWidth * data.size / this._font.size; + + var prevCharCode = null; + var lastLineWidth = 0; + var maxLineWidth = 0; + var line = 0; + var lastBreakPos = -1; + var lastBreakWidth = 0; + var spacesRemoved = 0; + var maxLineHeight = 0; + + for (var i = 0; i < textLength; i++) + { + var charCode = text.charCodeAt(i); + var char = text.charAt(i); + + if ((/(?:\s)/).test(char)) + { + lastBreakPos = i; + lastBreakWidth = lastLineWidth; + } + + if (char === '\r' || char === '\n') + { + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + ++line; + ++spacesRemoved; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + continue; + } + + var charData = data.chars[charCode]; + + if (!charData) + { + continue; + } + + if (prevCharCode && charData.kerning[prevCharCode]) + { + pos.x += charData.kerning[prevCharCode]; + } + + chars.push({ + texture: charData.texture, + line: line, + charCode: charCode, + position: new Point(pos.x + charData.xOffset + (this._letterSpacing / 2), pos.y + charData.yOffset), + }); + pos.x += charData.xAdvance + this._letterSpacing; + lastLineWidth = pos.x; + maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height)); + prevCharCode = charCode; + + if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth) + { + ++spacesRemoved; + removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos); + i = lastBreakPos; + lastBreakPos = -1; + + lineWidths.push(lastBreakWidth); + maxLineWidth = Math.max(maxLineWidth, lastBreakWidth); + line++; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + } + } + + var lastChar = text.charAt(text.length - 1); + + if (lastChar !== '\r' && lastChar !== '\n') + { + if ((/(?:\s)/).test(lastChar)) + { + lastLineWidth = lastBreakWidth; + } + + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + } + + var lineAlignOffsets = []; + + for (var i$1 = 0; i$1 <= line; i$1++) + { + var alignOffset = 0; + + if (this._font.align === 'right') + { + alignOffset = maxLineWidth - lineWidths[i$1]; + } + else if (this._font.align === 'center') + { + alignOffset = (maxLineWidth - lineWidths[i$1]) / 2; + } + + lineAlignOffsets.push(alignOffset); + } + + var lenChars = chars.length; + var tint = this.tint; + + for (var i$2 = 0; i$2 < lenChars; i$2++) + { + var c = this._glyphs[i$2]; // get the next glyph sprite + + if (c) + { + c.texture = chars[i$2].texture; + } + else + { + c = new Sprite(chars[i$2].texture); + c.roundPixels = this.roundPixels; + this._glyphs.push(c); + } + + c.position.x = (chars[i$2].position.x + lineAlignOffsets[chars[i$2].line]) * scale; + c.position.y = chars[i$2].position.y * scale; + c.scale.x = c.scale.y = scale; + c.tint = tint; + + if (!c.parent) + { + this.addChild(c); + } + } + + // remove unnecessary children. + for (var i$3 = lenChars; i$3 < this._glyphs.length; ++i$3) + { + this.removeChild(this._glyphs[i$3]); + } + + this._textWidth = maxLineWidth * scale; + this._textHeight = (pos.y + data.lineHeight) * scale; + + // apply anchor + if (this.anchor.x !== 0 || this.anchor.y !== 0) + { + for (var i$4 = 0; i$4 < lenChars; i$4++) + { + this._glyphs[i$4].x -= this._textWidth * this.anchor.x; + this._glyphs[i$4].y -= this._textHeight * this.anchor.y; + } + } + this._maxLineHeight = maxLineHeight * scale; + }; + + /** + * Updates the transform of this object + * + * @private + */ + BitmapText.prototype.updateTransform = function updateTransform () + { + this.validate(); + this.containerUpdateTransform(); + }; + + /** + * Validates text before calling parent's getLocalBounds + * + * @return {PIXI.Rectangle} The rectangular bounding area + */ + BitmapText.prototype.getLocalBounds = function getLocalBounds () + { + this.validate(); + + return Container.prototype.getLocalBounds.call(this); + }; + + /** + * Updates text when needed + * + * @private + */ + BitmapText.prototype.validate = function validate () + { + if (this.dirty) + { + this.updateText(); + this.dirty = false; + } + }; + + /** + * The tint of the BitmapText object. + * + * @member {number} + */ + prototypeAccessors.tint.get = function () + { + return this._font.tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.tint = (typeof value === 'number' && value >= 0) ? value : 0xFFFFFF; + + this.dirty = true; + }; + + /** + * The alignment of the BitmapText object. + * + * @member {string} + * @default 'left' + */ + prototypeAccessors.align.get = function () + { + return this._font.align; + }; + + prototypeAccessors.align.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.align = value || 'left'; + + this.dirty = true; + }; + + /** + * The anchor sets the origin point of the text. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * @member {PIXI.Point | number} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + if (typeof value === 'number') + { + this._anchor.set(value); + } + else + { + this._anchor.copyFrom(value); + } + }; + + /** + * The font descriptor of the BitmapText object. + * + * @member {object} + */ + prototypeAccessors.font.get = function () + { + return this._font; + }; + + prototypeAccessors.font.set = function (value) // eslint-disable-line require-jsdoc + { + if (!value) + { + return; + } + + if (typeof value === 'string') + { + value = value.split(' '); + + this._font.name = value.length === 1 ? value[0] : value.slice(1).join(' '); + this._font.size = value.length >= 2 ? parseInt(value[0], 10) : BitmapText.fonts[this._font.name].size; + } + else + { + this._font.name = value.name; + this._font.size = typeof value.size === 'number' ? value.size : parseInt(value.size, 10); + } + + this.dirty = true; + }; + + /** + * The text of the BitmapText object. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting the value to 0. + * + * @member {number} + */ + prototypeAccessors.maxWidth.get = function () + { + return this._maxWidth; + }; + + prototypeAccessors.maxWidth.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._maxWidth === value) + { + return; + } + this._maxWidth = value; + this.dirty = true; + }; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * i.e. when trying to vertically align. + * + * @member {number} + * @readonly + */ + prototypeAccessors.maxLineHeight.get = function () + { + this.validate(); + + return this._maxLineHeight; + }; + + /** + * The width of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textWidth.get = function () + { + this.validate(); + + return this._textWidth; + }; + + /** + * Additional space between characters. + * + * @member {number} + */ + prototypeAccessors.letterSpacing.get = function () + { + return this._letterSpacing; + }; + + prototypeAccessors.letterSpacing.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._letterSpacing !== value) + { + this._letterSpacing = value; + this.dirty = true; + } + }; + + /** + * The height of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textHeight.get = function () + { + this.validate(); + + return this._textHeight; + }; + + /** + * Register a bitmap font with data and a texture. + * + * @static + * @param {XMLDocument} xml - The XML document data. + * @param {Object.|PIXI.Texture|PIXI.Texture[]} textures - List of textures for each page. + * If providing an object, the key is the `` element's `file` attribute in the FNT file. + * @return {Object} Result font object with font, size, lineHeight and char fields. + */ + BitmapText.registerFont = function registerFont (xml, textures) + { + var data = {}; + var info = xml.getElementsByTagName('info')[0]; + var common = xml.getElementsByTagName('common')[0]; + var pages = xml.getElementsByTagName('page'); + var res = getResolutionOfUrl(pages[0].getAttribute('file'), settings.RESOLUTION); + var pagesTextures = {}; + + data.font = info.getAttribute('face'); + data.size = parseInt(info.getAttribute('size'), 10); + data.lineHeight = parseInt(common.getAttribute('lineHeight'), 10) / res; + data.chars = {}; + + // Single texture, convert to list + if (textures instanceof Texture) + { + textures = [textures]; + } + + // Convert the input Texture, Textures or object + // into a page Texture lookup by "id" + for (var i = 0; i < pages.length; i++) + { + var id = pages[i].getAttribute('id'); + var file = pages[i].getAttribute('file'); + + pagesTextures[id] = textures instanceof Array ? textures[i] : textures[file]; + } + + // parse letters + var letters = xml.getElementsByTagName('char'); + + for (var i$1 = 0; i$1 < letters.length; i$1++) + { + var letter = letters[i$1]; + var charCode = parseInt(letter.getAttribute('id'), 10); + var page = letter.getAttribute('page') || 0; + var textureRect = new Rectangle( + (parseInt(letter.getAttribute('x'), 10) / res) + (pagesTextures[page].frame.x / res), + (parseInt(letter.getAttribute('y'), 10) / res) + (pagesTextures[page].frame.y / res), + parseInt(letter.getAttribute('width'), 10) / res, + parseInt(letter.getAttribute('height'), 10) / res + ); + + data.chars[charCode] = { + xOffset: parseInt(letter.getAttribute('xoffset'), 10) / res, + yOffset: parseInt(letter.getAttribute('yoffset'), 10) / res, + xAdvance: parseInt(letter.getAttribute('xadvance'), 10) / res, + kerning: {}, + texture: new Texture(pagesTextures[page].baseTexture, textureRect), + page: page, + }; + } + + // parse kernings + var kernings = xml.getElementsByTagName('kerning'); + + for (var i$2 = 0; i$2 < kernings.length; i$2++) + { + var kerning = kernings[i$2]; + var first = parseInt(kerning.getAttribute('first'), 10) / res; + var second = parseInt(kerning.getAttribute('second'), 10) / res; + var amount = parseInt(kerning.getAttribute('amount'), 10) / res; + + if (data.chars[second]) + { + data.chars[second].kerning[first] = amount; + } + } + + // I'm leaving this as a temporary fix so we can test the bitmap fonts in v3 + // but it's very likely to change + BitmapText.fonts[data.font] = data; + + return data; + }; + + Object.defineProperties( BitmapText.prototype, prototypeAccessors ); + + return BitmapText; +}(Container)); + +BitmapText.fonts = {}; + +/** + * {@link PIXI.Loader Loader} middleware for loading + * bitmap-based fonts suitable for using with {@link PIXI.BitmapText}. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var BitmapFontLoader = function BitmapFontLoader () {}; + +BitmapFontLoader.parse = function parse (resource, texture) +{ + resource.bitmapFont = BitmapText.registerFont(resource.data, texture); +}; + +/** + * Called when the plugin is installed. + * + * @see PIXI.Loader.registerPlugin + */ +BitmapFontLoader.add = function add () +{ + LoaderResource.setExtensionXhrType('fnt', LoaderResource.XHR_RESPONSE_TYPE.DOCUMENT); +}; + +/** + * Replacement for NodeJS's path.dirname + * @private + * @param {string} url Path to get directory for + */ +BitmapFontLoader.dirname = function dirname (url) +{ + var dir = url + .replace(/\/$/, '') // replace trailing slash + .replace(/\/[^\/]*$/, ''); // remove everything after the last + + // File request is relative, use current directory + if (dir === url) + { + return '.'; + } + // Started with a slash + else if (dir === '') + { + return '/'; + } + + return dir; +}; + +/** + * Called after a resource is loaded. + * @see PIXI.Loader.loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ +BitmapFontLoader.use = function use (resource, next) +{ + // skip if no data or not xml data + if (!resource.data || resource.type !== LoaderResource.TYPE.XML) + { + next(); + + return; + } + + // skip if not bitmap font data, using some silly duck-typing + if (resource.data.getElementsByTagName('page').length === 0 + || resource.data.getElementsByTagName('info').length === 0 + || resource.data.getElementsByTagName('info')[0].getAttribute('face') === null + ) + { + next(); + + return; + } + + var xmlUrl = !resource.isDataUrl ? BitmapFontLoader.dirname(resource.url) : ''; + + if (resource.isDataUrl) + { + if (xmlUrl === '.') + { + xmlUrl = ''; + } + + if (this.baseUrl && xmlUrl) + { + // if baseurl has a trailing slash then add one to xmlUrl so the replace works below + if (this.baseUrl.charAt(this.baseUrl.length - 1) === '/') + { + xmlUrl += '/'; + } + } + } + + // remove baseUrl from xmlUrl + xmlUrl = xmlUrl.replace(this.baseUrl, ''); + + // if there is an xmlUrl now, it needs a trailing slash. Ensure that it does if the string isn't empty. + if (xmlUrl && xmlUrl.charAt(xmlUrl.length - 1) !== '/') + { + xmlUrl += '/'; + } + + var pages = resource.data.getElementsByTagName('page'); + var textures = {}; + + // Handle completed, when the number of textures + // load is the same number as references in the fnt file + var completed = function (page) { + textures[page.metadata.pageFile] = page.texture; + + if (Object.keys(textures).length === pages.length) + { + BitmapFontLoader.parse(resource, textures); + next(); + } + }; + + for (var i = 0; i < pages.length; ++i) + { + var pageFile = pages[i].getAttribute('file'); + var url = xmlUrl + pageFile; + var exists = false; + + // incase the image is loaded outside + // using the same loader, resource will be available + for (var name in this.resources) + { + var bitmapResource = this.resources[name]; + + if (bitmapResource.url === url) + { + bitmapResource.metadata.pageFile = pageFile; + if (bitmapResource.texture) + { + completed(bitmapResource); + } + else + { + bitmapResource.onAfterMiddleware.add(completed); + } + exists = true; + break; + } + } + + // texture is not loaded, we'll attempt to add + // it to the load and add the texture to the list + if (!exists) + { + // Standard loading options for images + var options = { + crossOrigin: resource.crossOrigin, + loadType: LoaderResource.LOAD_TYPE.IMAGE, + metadata: Object.assign( + { pageFile: pageFile }, + resource.metadata.imageMetadata + ), + parentResource: resource, + }; + + this.add(url, options, completed); + } + } +}; + +/*! + * @pixi/filter-color-matrix - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/filter-color-matrix is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var fragment$3 = "varying vec2 vTextureCoord;\nuniform sampler2D uSampler;\nuniform float m[20];\nuniform float uAlpha;\n\nvoid main(void)\n{\n vec4 c = texture2D(uSampler, vTextureCoord);\n\n if (uAlpha == 0.0) {\n gl_FragColor = c;\n return;\n }\n\n // Un-premultiply alpha before applying the color matrix. See issue #3539.\n if (c.a > 0.0) {\n c.rgb /= c.a;\n }\n\n vec4 result;\n\n result.r = (m[0] * c.r);\n result.r += (m[1] * c.g);\n result.r += (m[2] * c.b);\n result.r += (m[3] * c.a);\n result.r += m[4];\n\n result.g = (m[5] * c.r);\n result.g += (m[6] * c.g);\n result.g += (m[7] * c.b);\n result.g += (m[8] * c.a);\n result.g += m[9];\n\n result.b = (m[10] * c.r);\n result.b += (m[11] * c.g);\n result.b += (m[12] * c.b);\n result.b += (m[13] * c.a);\n result.b += m[14];\n\n result.a = (m[15] * c.r);\n result.a += (m[16] * c.g);\n result.a += (m[17] * c.b);\n result.a += (m[18] * c.a);\n result.a += m[19];\n\n vec3 rgb = mix(c.rgb, result.rgb, uAlpha);\n\n // Premultiply alpha again.\n rgb *= result.a;\n\n gl_FragColor = vec4(rgb, result.a);\n}\n"; + +/** + * The ColorMatrixFilter class lets you apply a 5x4 matrix transformation on the RGBA + * color and alpha values of every pixel on your displayObject to produce a result + * with a new set of RGBA color and alpha values. It's pretty powerful! + * + * ```js + * let colorMatrix = new PIXI.filters.ColorMatrixFilter(); + * container.filters = [colorMatrix]; + * colorMatrix.contrast(2); + * ``` + * @author Clément Chenebault + * @class + * @extends PIXI.Filter + * @memberof PIXI.filters + */ +var ColorMatrixFilter = /*@__PURE__*/(function (Filter) { + function ColorMatrixFilter() + { + var uniforms = { + m: new Float32Array([1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0]), + uAlpha: 1, + }; + + Filter.call(this, defaultFilter, fragment$3, uniforms); + + this.alpha = 1; + } + + if ( Filter ) ColorMatrixFilter.__proto__ = Filter; + ColorMatrixFilter.prototype = Object.create( Filter && Filter.prototype ); + ColorMatrixFilter.prototype.constructor = ColorMatrixFilter; + + var prototypeAccessors = { matrix: { configurable: true },alpha: { configurable: true } }; + + /** + * Transforms current matrix and set the new one + * + * @param {number[]} matrix - 5x4 matrix + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype._loadMatrix = function _loadMatrix (matrix, multiply) + { + if ( multiply === void 0 ) multiply = false; + + var newMatrix = matrix; + + if (multiply) + { + this._multiply(newMatrix, this.uniforms.m, matrix); + newMatrix = this._colorMatrix(newMatrix); + } + + // set the new matrix + this.uniforms.m = newMatrix; + }; + + /** + * Multiplies two mat5's + * + * @private + * @param {number[]} out - 5x4 matrix the receiving matrix + * @param {number[]} a - 5x4 matrix the first operand + * @param {number[]} b - 5x4 matrix the second operand + * @returns {number[]} 5x4 matrix + */ + ColorMatrixFilter.prototype._multiply = function _multiply (out, a, b) + { + // Red Channel + out[0] = (a[0] * b[0]) + (a[1] * b[5]) + (a[2] * b[10]) + (a[3] * b[15]); + out[1] = (a[0] * b[1]) + (a[1] * b[6]) + (a[2] * b[11]) + (a[3] * b[16]); + out[2] = (a[0] * b[2]) + (a[1] * b[7]) + (a[2] * b[12]) + (a[3] * b[17]); + out[3] = (a[0] * b[3]) + (a[1] * b[8]) + (a[2] * b[13]) + (a[3] * b[18]); + out[4] = (a[0] * b[4]) + (a[1] * b[9]) + (a[2] * b[14]) + (a[3] * b[19]) + a[4]; + + // Green Channel + out[5] = (a[5] * b[0]) + (a[6] * b[5]) + (a[7] * b[10]) + (a[8] * b[15]); + out[6] = (a[5] * b[1]) + (a[6] * b[6]) + (a[7] * b[11]) + (a[8] * b[16]); + out[7] = (a[5] * b[2]) + (a[6] * b[7]) + (a[7] * b[12]) + (a[8] * b[17]); + out[8] = (a[5] * b[3]) + (a[6] * b[8]) + (a[7] * b[13]) + (a[8] * b[18]); + out[9] = (a[5] * b[4]) + (a[6] * b[9]) + (a[7] * b[14]) + (a[8] * b[19]) + a[9]; + + // Blue Channel + out[10] = (a[10] * b[0]) + (a[11] * b[5]) + (a[12] * b[10]) + (a[13] * b[15]); + out[11] = (a[10] * b[1]) + (a[11] * b[6]) + (a[12] * b[11]) + (a[13] * b[16]); + out[12] = (a[10] * b[2]) + (a[11] * b[7]) + (a[12] * b[12]) + (a[13] * b[17]); + out[13] = (a[10] * b[3]) + (a[11] * b[8]) + (a[12] * b[13]) + (a[13] * b[18]); + out[14] = (a[10] * b[4]) + (a[11] * b[9]) + (a[12] * b[14]) + (a[13] * b[19]) + a[14]; + + // Alpha Channel + out[15] = (a[15] * b[0]) + (a[16] * b[5]) + (a[17] * b[10]) + (a[18] * b[15]); + out[16] = (a[15] * b[1]) + (a[16] * b[6]) + (a[17] * b[11]) + (a[18] * b[16]); + out[17] = (a[15] * b[2]) + (a[16] * b[7]) + (a[17] * b[12]) + (a[18] * b[17]); + out[18] = (a[15] * b[3]) + (a[16] * b[8]) + (a[17] * b[13]) + (a[18] * b[18]); + out[19] = (a[15] * b[4]) + (a[16] * b[9]) + (a[17] * b[14]) + (a[18] * b[19]) + a[19]; + + return out; + }; + + /** + * Create a Float32 Array and normalize the offset component to 0-1 + * + * @private + * @param {number[]} matrix - 5x4 matrix + * @return {number[]} 5x4 matrix with all values between 0-1 + */ + ColorMatrixFilter.prototype._colorMatrix = function _colorMatrix (matrix) + { + // Create a Float32 Array and normalize the offset component to 0-1 + var m = new Float32Array(matrix); + + m[4] /= 255; + m[9] /= 255; + m[14] /= 255; + m[19] /= 255; + + return m; + }; + + /** + * Adjusts brightness + * + * @param {number} b - value of the brigthness (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.brightness = function brightness (b, multiply) + { + var matrix = [ + b, 0, 0, 0, 0, + 0, b, 0, 0, 0, + 0, 0, b, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the matrices in grey scales + * + * @param {number} scale - value of the grey (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.greyscale = function greyscale (scale, multiply) + { + var matrix = [ + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the black and white matrice. + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.blackAndWhite = function blackAndWhite (multiply) + { + var matrix = [ + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the hue property of the color + * + * @param {number} rotation - in degrees + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.hue = function hue (rotation, multiply) + { + rotation = (rotation || 0) / 180 * Math.PI; + + var cosR = Math.cos(rotation); + var sinR = Math.sin(rotation); + var sqrt = Math.sqrt; + + /* a good approximation for hue rotation + This matrix is far better than the versions with magic luminance constants + formerly used here, but also used in the starling framework (flash) and known from this + old part of the internet: quasimondo.com/archives/000565.php + + This new matrix is based on rgb cube rotation in space. Look here for a more descriptive + implementation as a shader not a general matrix: + https://github.com/evanw/glfx.js/blob/58841c23919bd59787effc0333a4897b43835412/src/filters/adjust/huesaturation.js + + This is the source for the code: + see http://stackoverflow.com/questions/8507885/shift-hue-of-an-rgb-color/8510751#8510751 + */ + + var w = 1 / 3; + var sqrW = sqrt(w); // weight is + + var a00 = cosR + ((1.0 - cosR) * w); + var a01 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a02 = (w * (1.0 - cosR)) + (sqrW * sinR); + + var a10 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a11 = cosR + (w * (1.0 - cosR)); + var a12 = (w * (1.0 - cosR)) - (sqrW * sinR); + + var a20 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a21 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a22 = cosR + (w * (1.0 - cosR)); + + var matrix = [ + a00, a01, a02, 0, 0, + a10, a11, a12, 0, 0, + a20, a21, a22, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the contrast matrix, increase the separation between dark and bright + * Increase contrast : shadows darker and highlights brighter + * Decrease contrast : bring the shadows up and the highlights down + * + * @param {number} amount - value of the contrast (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.contrast = function contrast (amount, multiply) + { + var v = (amount || 0) + 1; + var o = -0.5 * (v - 1); + + var matrix = [ + v, 0, 0, 0, o, + 0, v, 0, 0, o, + 0, 0, v, 0, o, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the saturation matrix, increase the separation between colors + * Increase saturation : increase contrast, brightness, and sharpness + * + * @param {number} amount - The saturation amount (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.saturate = function saturate (amount, multiply) + { + if ( amount === void 0 ) amount = 0; + + var x = (amount * 2 / 3) + 1; + var y = ((x - 1) * -0.5); + + var matrix = [ + x, y, y, 0, 0, + y, x, y, 0, 0, + y, y, x, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Desaturate image (remove color) + * + * Call the saturate function + * + */ + ColorMatrixFilter.prototype.desaturate = function desaturate () // eslint-disable-line no-unused-vars + { + this.saturate(-1); + }; + + /** + * Negative image (inverse of classic rgb matrix) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.negative = function negative (multiply) + { + var matrix = [ + -1, 0, 0, 1, 0, + 0, -1, 0, 1, 0, + 0, 0, -1, 1, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Sepia image + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.sepia = function sepia (multiply) + { + var matrix = [ + 0.393, 0.7689999, 0.18899999, 0, 0, + 0.349, 0.6859999, 0.16799999, 0, 0, + 0.272, 0.5339999, 0.13099999, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color motion picture process invented in 1916 (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.technicolor = function technicolor (multiply) + { + var matrix = [ + 1.9125277891456083, -0.8545344976951645, -0.09155508482755585, 0, 11.793603434377337, + -0.3087833385928097, 1.7658908555458428, -0.10601743074722245, 0, -70.35205161461398, + -0.231103377548616, -0.7501899197440212, 1.847597816108189, 0, 30.950940869491138, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Polaroid filter + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.polaroid = function polaroid (multiply) + { + var matrix = [ + 1.438, -0.062, -0.062, 0, 0, + -0.122, 1.378, -0.122, 0, 0, + -0.016, -0.016, 1.483, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Filter who transforms : Red -> Blue and Blue -> Red + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.toBGR = function toBGR (multiply) + { + var matrix = [ + 0, 0, 1, 0, 0, + 0, 1, 0, 0, 0, + 1, 0, 0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color reversal film introduced by Eastman Kodak in 1935. (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.kodachrome = function kodachrome (multiply) + { + var matrix = [ + 1.1285582396593525, -0.3967382283601348, -0.03992559172921793, 0, 63.72958762196502, + -0.16404339962244616, 1.0835251566291304, -0.05498805115633132, 0, 24.732407896706203, + -0.16786010706155763, -0.5603416277695248, 1.6014850761964943, 0, 35.62982807460946, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Brown delicious browni filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.browni = function browni (multiply) + { + var matrix = [ + 0.5997023498159715, 0.34553243048391263, -0.2708298674538042, 0, 47.43192855600873, + -0.037703249837783157, 0.8609577587992641, 0.15059552388459913, 0, -36.96841498319127, + 0.24113635128153335, -0.07441037908422492, 0.44972182064877153, 0, -7.562075277591283, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Vintage filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.vintage = function vintage (multiply) + { + var matrix = [ + 0.6279345635605994, 0.3202183420819367, -0.03965408211312453, 0, 9.651285835294123, + 0.02578397704808868, 0.6441188644374771, 0.03259127616149294, 0, 7.462829176470591, + 0.0466055556782719, -0.0851232987247891, 0.5241648018700465, 0, 5.159190588235296, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * We don't know exactly what it does, kind of gradient map, but funny to play with! + * + * @param {number} desaturation - Tone values. + * @param {number} toned - Tone values. + * @param {string} lightColor - Tone values, example: `0xFFE580` + * @param {string} darkColor - Tone values, example: `0xFFE580` + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.colorTone = function colorTone (desaturation, toned, lightColor, darkColor, multiply) + { + desaturation = desaturation || 0.2; + toned = toned || 0.15; + lightColor = lightColor || 0xFFE580; + darkColor = darkColor || 0x338000; + + var lR = ((lightColor >> 16) & 0xFF) / 255; + var lG = ((lightColor >> 8) & 0xFF) / 255; + var lB = (lightColor & 0xFF) / 255; + + var dR = ((darkColor >> 16) & 0xFF) / 255; + var dG = ((darkColor >> 8) & 0xFF) / 255; + var dB = (darkColor & 0xFF) / 255; + + var matrix = [ + 0.3, 0.59, 0.11, 0, 0, + lR, lG, lB, desaturation, 0, + dR, dG, dB, toned, 0, + lR - dR, lG - dG, lB - dB, 0, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Night effect + * + * @param {number} intensity - The intensity of the night effect. + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.night = function night (intensity, multiply) + { + intensity = intensity || 0.1; + var matrix = [ + intensity * (-2.0), -intensity, 0, 0, 0, + -intensity, 0, intensity, 0, 0, + 0, intensity, intensity * 2.0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Predator effect + * + * Erase the current matrix by setting a new indepent one + * + * @param {number} amount - how much the predator feels his future victim + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.predator = function predator (amount, multiply) + { + var matrix = [ + // row 1 + 11.224130630493164 * amount, + -4.794486999511719 * amount, + -2.8746118545532227 * amount, + 0 * amount, + 0.40342438220977783 * amount, + // row 2 + -3.6330697536468506 * amount, + 9.193157196044922 * amount, + -2.951810836791992 * amount, + 0 * amount, + -1.316135048866272 * amount, + // row 3 + -3.2184197902679443 * amount, + -4.2375030517578125 * amount, + 7.476448059082031 * amount, + 0 * amount, + 0.8044459223747253 * amount, + // row 4 + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * LSD effect + * + * Multiply the current matrix + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.lsd = function lsd (multiply) + { + var matrix = [ + 2, -0.4, 0.5, 0, 0, + -0.5, 2, -0.4, 0, 0, + -0.4, -0.5, 3, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Erase the current matrix by setting the default one + * + */ + ColorMatrixFilter.prototype.reset = function reset () + { + var matrix = [ + 1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, false); + }; + + /** + * The matrix of the color matrix filter + * + * @member {number[]} + * @default [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0] + */ + prototypeAccessors.matrix.get = function () + { + return this.uniforms.m; + }; + + prototypeAccessors.matrix.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.m = value; + }; + + /** + * The opacity value to use when mixing the original and resultant colors. + * + * When the value is 0, the original color is used without modification. + * When the value is 1, the result color is used. + * When in the range (0, 1) the color is interpolated between the original and result by this amount. + * + * @member {number} + * @default 1 + */ + prototypeAccessors.alpha.get = function () + { + return this.uniforms.uAlpha; + }; + + prototypeAccessors.alpha.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.uAlpha = value; + }; + + Object.defineProperties( ColorMatrixFilter.prototype, prototypeAccessors ); + + return ColorMatrixFilter; +}(Filter)); + +// Americanized alias +ColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale; + +/*! + * @pixi/mixin-cache-as-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mixin-cache-as-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var _tempMatrix = new Matrix(); + +DisplayObject.prototype._cacheAsBitmap = false; +DisplayObject.prototype._cacheData = false; + +// figured theres no point adding ALL the extra variables to prototype. +// this model can hold the information needed. This can also be generated on demand as +// most objects are not cached as bitmaps. +/** + * @class + * @ignore + */ +var CacheData = function CacheData() +{ + this.textureCacheId = null; + + this.originalRender = null; + this.originalRenderCanvas = null; + this.originalCalculateBounds = null; + this.originalGetLocalBounds = null; + + this.originalUpdateTransform = null; + this.originalHitTest = null; + this.originalDestroy = null; + this.originalMask = null; + this.originalFilterArea = null; + this.sprite = null; +}; + +Object.defineProperties(DisplayObject.prototype, { + /** + * Set this to true if you want this display object to be cached as a bitmap. + * This basically takes a snap shot of the display object as it is at that moment. It can + * provide a performance benefit for complex static displayObjects. + * To remove simply set this property to `false` + * + * IMPORTANT GOTCHA - Make sure that all your textures are preloaded BEFORE setting this property to true + * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear. + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + cacheAsBitmap: { + get: function get() + { + return this._cacheAsBitmap; + }, + set: function set(value) + { + if (this._cacheAsBitmap === value) + { + return; + } + + this._cacheAsBitmap = value; + + var data; + + if (value) + { + if (!this._cacheData) + { + this._cacheData = new CacheData(); + } + + data = this._cacheData; + + data.originalRender = this.render; + data.originalRenderCanvas = this.renderCanvas; + + data.originalUpdateTransform = this.updateTransform; + data.originalCalculateBounds = this.calculateBounds; + data.originalGetLocalBounds = this.getLocalBounds; + + data.originalDestroy = this.destroy; + + data.originalContainsPoint = this.containsPoint; + + data.originalMask = this._mask; + data.originalFilterArea = this.filterArea; + + this.render = this._renderCached; + this.renderCanvas = this._renderCachedCanvas; + + this.destroy = this._cacheAsBitmapDestroy; + } + else + { + data = this._cacheData; + + if (data.sprite) + { + this._destroyCachedDisplayObject(); + } + + this.render = data.originalRender; + this.renderCanvas = data.originalRenderCanvas; + this.calculateBounds = data.originalCalculateBounds; + this.getLocalBounds = data.originalGetLocalBounds; + + this.destroy = data.originalDestroy; + + this.updateTransform = data.originalUpdateTransform; + this.containsPoint = data.originalContainsPoint; + + this._mask = data.originalMask; + this.filterArea = data.originalFilterArea; + } + }, + }, +}); + +/** + * Renders a cached version of the sprite with WebGL + * + * @private + * @function _renderCached + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCached = function _renderCached(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObject(renderer); + + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._render(renderer); +}; + +/** + * Prepares the WebGL renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObject + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObject = function _initCachedDisplayObject(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // make sure alpha is set to 1 otherwise it will get rendered as invisible! + var cacheAlpha = this.alpha; + + this.alpha = 1; + + // first we flush anything left in the renderer (otherwise it would get rendered to the cached texture) + renderer.batch.flush(); + // this.filters= []; + + // next we find the dimensions of the untransformed object + // this function also calls updatetransform on all its children as part of the measuring. + // This means we don't need to update the transform again in this function + // TODO pass an object to clone too? saves having to create a new one each time! + var bounds = this.getLocalBounds().clone(); + + // add some padding! + if (this.filters) + { + var padding = this.filters[0].padding; + + bounds.pad(padding); + } + + bounds.ceil(settings.RESOLUTION); + + // for now we cache the current renderTarget that the WebGL renderer is currently using. + // this could be more elegant.. + var cachedRenderTexture = renderer.renderTexture.current; + var cachedSourceFrame = renderer.renderTexture.sourceFrame; + var cachedProjectionTransform = renderer.projection.transform; + + // We also store the filter stack - I will definitely look to change how this works a little later down the line. + // const stack = renderer.filterManager.filterStack; + + // this renderTexture will be used to store the cached DisplayObject + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + m.tx = -bounds.x; + m.ty = -bounds.y; + + // reset + this.transform.worldTransform.identity(); + + // set all properties to there original so we can render to a texture + this.render = this._cacheData.originalRender; + + renderer.render(this, renderTexture, true, m, true); + + // now restore the state be setting the new properties + renderer.projection.transform = cachedProjectionTransform; + renderer.renderTexture.bind(cachedRenderTexture, cachedSourceFrame); + + // renderer.filterManager.filterStack = stack; + + this.render = this._renderCached; + // the rest is the same as for Canvas + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Renders a cached version of the sprite with canvas + * + * @private + * @function _renderCachedCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCachedCanvas = function _renderCachedCanvas(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObjectCanvas(renderer); + + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._renderCanvas(renderer); +}; + +// TODO this can be the same as the WebGL version.. will need to do a little tweaking first though.. +/** + * Prepares the Canvas renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObjectCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObjectCanvas = function _initCachedDisplayObjectCanvas(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // get bounds actually transforms the object for us already! + var bounds = this.getLocalBounds(); + + var cacheAlpha = this.alpha; + + this.alpha = 1; + + var cachedRenderTarget = renderer.context; + + bounds.ceil(settings.RESOLUTION); + + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + this.transform.localTransform.copyTo(m); + m.invert(); + + m.tx -= bounds.x; + m.ty -= bounds.y; + + // m.append(this.transform.worldTransform.) + // set all properties to there original so we can render to a texture + this.renderCanvas = this._cacheData.originalRenderCanvas; + + // renderTexture.render(this, m, true); + renderer.render(this, renderTexture, true, m, false); + + // now restore the state be setting the new properties + renderer.context = cachedRenderTarget; + + this.renderCanvas = this._renderCachedCanvas; + // the rest is the same as for WebGL + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Calculates the bounds of the cached sprite + * + * @private + */ +DisplayObject.prototype._calculateCachedBounds = function _calculateCachedBounds() +{ + this._bounds.clear(); + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite._calculateBounds(); + this._lastBoundsID = this._boundsID; +}; + +/** + * Gets the bounds of the cached sprite. + * + * @private + * @return {Rectangle} The local bounds. + */ +DisplayObject.prototype._getCachedLocalBounds = function _getCachedLocalBounds() +{ + return this._cacheData.sprite.getLocalBounds(); +}; + +/** + * Destroys the cached sprite. + * + * @private + */ +DisplayObject.prototype._destroyCachedDisplayObject = function _destroyCachedDisplayObject() +{ + this._cacheData.sprite._texture.destroy(true); + this._cacheData.sprite = null; + + BaseTexture.removeFromCache(this._cacheData.textureCacheId); + Texture.removeFromCache(this._cacheData.textureCacheId); + + this._cacheData.textureCacheId = null; +}; + +/** + * Destroys the cached object. + * + * @private + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value. + * Used when destroying containers, see the Container.destroy method. + */ +DisplayObject.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy(options) +{ + this.cacheAsBitmap = false; + this.destroy(options); +}; + +/*! + * @pixi/mixin-get-child-by-name - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-child-by-name is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The instance name of the object. + * + * @memberof PIXI.DisplayObject# + * @member {string} name + */ +DisplayObject.prototype.name = null; + +/** + * Returns the display object in the container. + * + * @method getChildByName + * @memberof PIXI.Container# + * @param {string} name - Instance name. + * @return {PIXI.DisplayObject} The child with the specified name. + */ +Container.prototype.getChildByName = function getChildByName(name) +{ + for (var i = 0; i < this.children.length; i++) + { + if (this.children[i].name === name) + { + return this.children[i]; + } + } + + return null; +}; + +/*! + * @pixi/mixin-get-global-position - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-global-position is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Returns the global position of the displayObject. Does not depend on object scale, rotation and pivot. + * + * @method getGlobalPosition + * @memberof PIXI.DisplayObject# + * @param {PIXI.Point} [point=new PIXI.Point()] - The point to write the global value to. + * @param {boolean} [skipUpdate=false] - Setting to true will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @return {PIXI.Point} The updated point. + */ +DisplayObject.prototype.getGlobalPosition = function getGlobalPosition(point, skipUpdate) +{ + if ( point === void 0 ) point = new Point(); + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (this.parent) + { + this.parent.toGlobal(this.position, point, skipUpdate); + } + else + { + point.x = this.position.x; + point.y = this.position.y; + } + + return point; +}; + +/*! + * @pixi/mesh - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mesh is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$2 = new Point(); +var tempPolygon = new Polygon(); + +/*! + * pixi.js - v5.1.4 + * Compiled Sat, 21 Sep 2019 07:35:21 UTC + * + * pixi.js is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Install renderer plugins +Renderer.registerPlugin('accessibility', AccessibilityManager); +Renderer.registerPlugin('extract', Extract); +Renderer.registerPlugin('interaction', InteractionManager); +Renderer.registerPlugin('particle', ParticleRenderer); +Renderer.registerPlugin('prepare', Prepare); +Renderer.registerPlugin('batch', BatchRenderer); +Renderer.registerPlugin('tilingSprite', TilingSpriteRenderer); + +Loader$1.registerPlugin(BitmapFontLoader); +Loader$1.registerPlugin(SpritesheetLoader); + +Application.registerPlugin(TickerPlugin); +Application.registerPlugin(AppLoaderPlugin); + +function fromConstructor(constr) { + return constr; +} + +let clipboard_text = ""; +const contexts = []; +const contextIOs = []; +class ImGuiImplInternalRenderer extends ObjectRenderer { + constructor(r) { + super(r); + } + render(owner) { + if (!(owner instanceof ImGuiWindowLayer)) + return; + const window = owner.window; + const io = window.io; + const draw_data = GetDrawData(); + if (draw_data === null) { + throw new Error(); + } + gl || console.log(draw_data); + // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) + const fb_width = io.DisplaySize.x * io.DisplayFramebufferScale.x; + const fb_height = io.DisplaySize.y * io.DisplayFramebufferScale.y; + if (fb_width === 0 || fb_height === 0) { + return; + } + draw_data.ScaleClipRects(io.DisplayFramebufferScale); + // Backup GL state + const last_program = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null; + const last_active_texture = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null; + gl && gl.activeTexture(gl.TEXTURE0); + const last_texture0 = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null; + const last_vertex_array = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null; + const last_array_buffer = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null; + const last_element_array_buffer = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null; + // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode); + const last_viewport = gl && gl.getParameter(gl.VIEWPORT) || null; + const last_scissor_box = gl && gl.getParameter(gl.SCISSOR_BOX) || null; + const last_blend_src_rgb = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null; + const last_blend_dst_rgb = gl && gl.getParameter(gl.BLEND_DST_RGB) || null; + const last_blend_src_alpha = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null; + const last_blend_dst_alpha = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null; + const last_blend_equation_rgb = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null; + const last_blend_equation_alpha = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null; + const last_enable_blend = gl && gl.getParameter(gl.BLEND) || null; + const last_enable_cull_face = gl && gl.getParameter(gl.CULL_FACE) || null; + const last_enable_depth_test = gl && gl.getParameter(gl.DEPTH_TEST) || null; + const last_enable_scissor_test = gl && gl.getParameter(gl.SCISSOR_TEST) || null; + gl.clearColor(0, 0, 0, 0); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl && gl.bindVertexArray(g_VaoHandle); + // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill + gl && gl.enable(gl.BLEND); + gl && gl.blendEquation(gl.FUNC_ADD); + gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE); + gl && gl.disable(gl.CULL_FACE); + gl && gl.disable(gl.DEPTH_TEST); + gl && gl.enable(gl.SCISSOR_TEST); + // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + // Setup viewport, orthographic projection matrix + // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps. + gl && gl.viewport(0, 0, fb_width, fb_height); + const L = draw_data.DisplayPos.x; + const R = draw_data.DisplayPos.x + draw_data.DisplaySize.x; + const T = draw_data.DisplayPos.y; + const B = draw_data.DisplayPos.y + draw_data.DisplaySize.y; + // we actually flip the bottom and top here to match with PIXI's texture usage + const ortho_projection = new Float32Array([ + 2.0 / (R - L), 0.0, 0.0, 0.0, + 0.0, 2.0 / (B - T), 0.0, 0.0, + 0.0, 0.0, -1.0, 0.0, + (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0, + ]); + gl && gl.useProgram(g_ShaderHandle); + gl && gl.uniform1i(g_AttribLocationTex, 0); + gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection); + // Render command lists + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.enableVertexAttribArray(g_AttribLocationPosition); + gl && gl.enableVertexAttribArray(g_AttribLocationUV); + gl && gl.enableVertexAttribArray(g_AttribLocationColor); + gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertPosOffset); + gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertUVOffset); + gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImDrawVertSize, ImDrawVertColOffset); + // Draw + const pos = draw_data.DisplayPos; + const idx_buffer_type = gl && ( gl.UNSIGNED_SHORT) || 0; + draw_data.IterateDrawLists((draw_list) => { + gl || console.log(draw_list); + gl || console.log("VtxBuffer.length", draw_list.VtxBuffer.length); + gl || console.log("IdxBuffer.length", draw_list.IdxBuffer.length); + let idx_buffer_offset = 0; + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW); + gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle); + gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW); + draw_list.IterateDrawCmds((draw_cmd) => { + gl || console.log(draw_cmd); + gl || console.log("ElemCount", draw_cmd.ElemCount); + gl || console.log("ClipRect", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y); + gl || console.log("TextureId", draw_cmd.TextureId); + if (!gl) { + console.log("i: pos.x pos.y uv.x uv.y col"); + for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) { + const view = new ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImDrawVertSize); + console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${("00000000" + view.col[0].toString(16)).substr(-8)}`); + } + } + if (draw_cmd.UserCallback !== null) { + // User callback (registered via ImDrawList::AddCallback) + draw_cmd.UserCallback(draw_list, draw_cmd); + } + else { + const clip_rect = new ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y); + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) { + // Apply scissor/clipping rectangle + gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y); + // Bind texture, Draw + gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId); + gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset); + } + } + idx_buffer_offset += draw_cmd.ElemCount * ImDrawIdxSize; + }); + }); + // Restore modified GL state + gl && (last_program !== null) && gl.useProgram(last_program); + gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0); + gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture); + gl && gl.disableVertexAttribArray(g_AttribLocationPosition); + gl && gl.disableVertexAttribArray(g_AttribLocationUV); + gl && gl.disableVertexAttribArray(g_AttribLocationColor); + gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array); + gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer); + gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer); + gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]); + gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]); + gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha); + gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); + gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND)); + gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE)); + gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST)); + gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST)); + // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]); + } +} +let gl = null; +let app = null; +class ImGuiWindowLayer extends Sprite { + constructor(window, tex) { + super(); + this.pluginName = "imgui_renderer"; + this.window = window; + } +} +class ImGuiWindow extends Container { + constructor(sizeX, sizeY, update) { + super(); + this.baseTex = new BaseRenderTexture({ scaleMode: SCALE_MODES.LINEAR, resolution: 1, type: TYPES.FLOAT, format: FORMATS.RGBA }); + this.tex = new RenderTexture(this.baseTex); + this.surface = new Sprite(this.tex); + this.imgui = new ImGuiWindowLayer(this, this.tex); + this.ctx = CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts); + SetCurrentContext(this.ctx); + this.io = GetIO(); + contexts.push(this.ctx); + contextIOs.push(this.io); + if (contexts.length == 1) { + CreateFontsTexture(); + } + if (typeof (window) !== "undefined") { + LoadIniSettingsFromMemory(window.localStorage.getItem("imgui.ini") || ""); + } + if (typeof (navigator) !== "undefined") { + this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null; + } + this.io.SetClipboardTextFn = (user_data, text) => { + clipboard_text = text; + // console.log(`set clipboard_text: "${clipboard_text}"`); + if (typeof navigator !== "undefined" && typeof navigator.clipboard !== "undefined") { + // console.log(`clipboard.writeText: "${clipboard_text}"`); + navigator.clipboard.writeText(clipboard_text).then(() => { + // console.log(`clipboard.writeText: "${clipboard_text}" done.`); + }); + } + }; + this.io.GetClipboardTextFn = (user_data) => { + // if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.readText: "${clipboard_text}"`); + // (navigator as any).clipboard.readText().then((text: string): void => { + // clipboard_text = text; + // console.log(`clipboard.readText: "${clipboard_text}" done.`); + // }); + // } + // console.log(`get clipboard_text: "${clipboard_text}"`); + return clipboard_text; + }; + this.io.ClipboardUserData = null; + // Setup back-end capabilities flags + this.io.BackendFlags |= ImGuiBackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional) + // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array. + this.io.KeyMap[ImGuiKey.Tab] = 9; + this.io.KeyMap[ImGuiKey.LeftArrow] = 37; + this.io.KeyMap[ImGuiKey.RightArrow] = 39; + this.io.KeyMap[ImGuiKey.UpArrow] = 38; + this.io.KeyMap[ImGuiKey.DownArrow] = 40; + this.io.KeyMap[ImGuiKey.PageUp] = 33; + this.io.KeyMap[ImGuiKey.PageDown] = 34; + this.io.KeyMap[ImGuiKey.Home] = 36; + this.io.KeyMap[ImGuiKey.End] = 35; + this.io.KeyMap[ImGuiKey.Insert] = 45; + this.io.KeyMap[ImGuiKey.Delete] = 46; + this.io.KeyMap[ImGuiKey.Backspace] = 8; + this.io.KeyMap[ImGuiKey.Space] = 32; + this.io.KeyMap[ImGuiKey.Enter] = 13; + this.io.KeyMap[ImGuiKey.Escape] = 27; + this.io.KeyMap[ImGuiKey.A] = 65; + this.io.KeyMap[ImGuiKey.C] = 67; + this.io.KeyMap[ImGuiKey.V] = 86; + this.io.KeyMap[ImGuiKey.X] = 88; + this.io.KeyMap[ImGuiKey.Y] = 89; + this.io.KeyMap[ImGuiKey.Z] = 90; + this.update = update; + this.resize(sizeX, sizeY); + this.imgui.pluginName = 'imgui_renderer'; + this.addChild(this.surface); + app.renderer.plugins.interaction.addListener("mousedown", this.mouseDown.bind(this)); + app.renderer.plugins.interaction.addListener("mouseup", this.mouseUp.bind(this)); + app.ticker.add(this.updateInternal.bind(this)); + this.interactive = false; + this.interactiveChildren = true; + this.surface.interactive = false; + } + getSizeX() { return this.sizeX; } + getSizeY() { return this.sizeY; } + withContext(cb) { + SetCurrentContext(this.ctx); + cb(); + } + mouseDown(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = true; + } + } + mouseUp(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = false; + } + } + resize(sizeX, sizeY) { + this.sizeX = sizeX; + this.sizeY = sizeY; + this.baseTex.resize(sizeX, sizeY); + this.tex.frame = new Rectangle(0, 0, this.baseTex.width, this.baseTex.height); + } + updateInternal(deltaTime) { + const dt = deltaTime * 1 / (1000 * settings.TARGET_FPMS); + SetCurrentContext(this.ctx); + if (this.io.WantSaveIniSettings) { + this.io.WantSaveIniSettings = false; + if (typeof (window) !== "undefined") { + window.localStorage.setItem("imgui.ini", SaveIniSettingsToMemory()); + } + } + this.io.DisplaySize.x = this.sizeX; + this.io.DisplaySize.y = this.sizeY; + this.io.DisplayFramebufferScale.x = 1; + this.io.DisplayFramebufferScale.y = 1; + this.io.DeltaTime = dt; + let localPos = this.toLocal(app.renderer.plugins.interaction.mouse.global); + if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY) { + localPos = new Point(-Number.MAX_VALUE, -Number.MAX_VALUE); + } + this.io.MousePos.x = localPos.x; + this.io.MousePos.y = localPos.y; + if (this.io.WantSetMousePos) { + console.log("TODO: MousePos", this.io.MousePos.x, this.io.MousePos.y); + } + if (typeof (document) !== "undefined") { + if (this.io.MouseDrawCursor) { + document.body.style.cursor = "none"; + } + else { + switch (GetMouseCursor()) { + case ImGuiMouseCursor.None: + document.body.style.cursor = "none"; + break; + default: + case ImGuiMouseCursor.Arrow: + document.body.style.cursor = "default"; + break; + case ImGuiMouseCursor.TextInput: + document.body.style.cursor = "text"; + break; // When hovering over InputText, etc. + case ImGuiMouseCursor.ResizeAll: + document.body.style.cursor = "move"; + break; // Unused + case ImGuiMouseCursor.ResizeNS: + document.body.style.cursor = "ns-resize"; + break; // When hovering over an horizontal border + case ImGuiMouseCursor.ResizeEW: + document.body.style.cursor = "ew-resize"; + break; // When hovering over a vertical border or a column + case ImGuiMouseCursor.ResizeNESW: + document.body.style.cursor = "nesw-resize"; + break; // When hovering over the bottom-left corner of a window + case ImGuiMouseCursor.ResizeNWSE: + document.body.style.cursor = "nwse-resize"; + break; // When hovering over the bottom-right corner of a window + case ImGuiMouseCursor.Hand: + document.body.style.cursor = "move"; + break; + } + } + } + // Gamepad navigation mapping [BETA] + for (let i = 0; i < this.io.NavInputs.length; ++i) { + this.io.NavInputs[i] = 0.0; + } + if (this.io.ConfigFlags & ImGuiConfigFlags.NavEnableGamepad) { + // Update gamepad inputs + const gamepads = (typeof (navigator) !== "undefined" && typeof (navigator.getGamepads) === "function") ? navigator.getGamepads() : []; + for (let i = 0; i < gamepads.length; ++i) { + const gamepad = gamepads[i]; + if (!gamepad) { + continue; + } + const buttons_count = gamepad.buttons.length; + const axes_count = gamepad.axes.length; + const MAP_BUTTON = function (NAV_NO, BUTTON_NO) { + if (!gamepad) { + return; + } + if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed) + this.io.NavInputs[NAV_NO] = 1.0; + }; + const MAP_ANALOG = function (NAV_NO, AXIS_NO, V0, V1) { + if (!gamepad) { + return; + } + let v = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0; + v = (v - V0) / (V1 - V0); + if (v > 1.0) + v = 1.0; + if (this.io.NavInputs[NAV_NO] < v) + this.io.NavInputs[NAV_NO] = v; + }; + // TODO: map input based on vendor and product id + // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id + const match = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/); + const match_chrome = gamepad.id.match(/^.*\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\).*$/); + const vendor = (match && match[1]) || (match_chrome && match_chrome[1]) || "0000"; + const product = (match && match[2]) || (match_chrome && match_chrome[2]) || "0000"; + switch (vendor + product) { + case "046dc216": // Logitech Logitech Dual Action (Vendor: 046d Product: c216) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 2); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 0); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "046dc21d": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d) + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_ANALOG(ImGuiNavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT + MAP_ANALOG(ImGuiNavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "2dc86001": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001) + case "2dc86101": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 0); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 4); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 6); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 7); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 8); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + default: // standard gamepad: https://w3c.github.io/gamepad/#remapping + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + } + } + } + NewFrame(); + this.update(dt); + EndFrame(); + Render(); + app.renderer.render(this.imgui, this.tex); + this.surface.interactive = this.io.WantCaptureMouse; + } +} +let canvas$1 = null; +//export let gl: WebGL2RenderingContext | null = null; +let g_ShaderHandle = null; +let g_VertHandle = null; +let g_FragHandle = null; +let g_AttribLocationTex = null; +let g_AttribLocationProjMtx = null; +let g_AttribLocationPosition = -1; +let g_AttribLocationUV = -1; +let g_AttribLocationColor = -1; +let g_VaoHandle = null; +let g_VboHandle = null; +let g_ElementsHandle = null; +let g_FontTexture = null; +function document_on_copy(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_cut(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_paste(event) { + if (event.clipboardData) { + clipboard_text = event.clipboardData.getData("text/plain"); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function window_on_gamepadconnected(event /* GamepadEvent */) { + console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.", event.gamepad.index, event.gamepad.id, event.gamepad.buttons.length, event.gamepad.axes.length); +} +function window_on_gamepaddisconnected(event /* GamepadEvent */) { + console.log("Gamepad disconnected at index %d: %s.", event.gamepad.index, event.gamepad.id); +} +function canvas_on_blur(event) { + for (var io of contextIOs) { + io.KeyCtrl = false; + io.KeyShift = false; + io.KeyAlt = false; + io.KeySuper = false; + for (let i = 0; i < io.KeysDown.length; ++i) { + io.KeysDown[i] = false; + } + for (let i = 0; i < io.MouseDown.length; ++i) { + io.MouseDown[i] = false; + } + } +} +function canvas_on_keydown(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = true; + // forward to the keypress event + if ( /*io.WantCaptureKeyboard ||*/event.key === "Tab") { + event.preventDefault(); + } + } +} +function canvas_on_keyup(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = false; + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +function canvas_on_keypress(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.AddInputCharacter(event.charCode); + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +// MouseEvent.button +// A number representing a given button: +// 0: Main button pressed, usually the left button or the un-initialized state +// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present) +// 2: Secondary button pressed, usually the right button +// 3: Fourth button, typically the Browser Back button +// 4: Fifth button, typically the Browser Forward button +const mouse_button_map = [0, 2, 1, 3, 4]; +function canvas_on_contextmenu(event) { + for (var io of contextIOs) { + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function canvas_on_wheel(event) { + for (var io of contextIOs) { + let scale = 1.0; + switch (event.deltaMode) { + case event.DOM_DELTA_PIXEL: + scale = 0.01; + break; + case event.DOM_DELTA_LINE: + scale = 0.2; + break; + case event.DOM_DELTA_PAGE: + scale = 1.0; + break; + } + io.MouseWheelH = event.deltaX * scale; + io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text. + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function PrePIXIInit() { + Renderer.registerPlugin("imgui_renderer", fromConstructor(ImGuiImplInternalRenderer)); +} +function Init(_app) { + // Setup Dear ImGui binding + IMGUI_CHECKVERSION(); + if (typeof (document) !== "undefined") { + document.body.addEventListener("copy", document_on_copy); + document.body.addEventListener("cut", document_on_cut); + document.body.addEventListener("paste", document_on_paste); + } + if (typeof (window) !== "undefined") { + window.addEventListener("gamepadconnected", window_on_gamepadconnected); + window.addEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + app = _app; + gl = app.renderer.gl; + canvas$1 = app.view; + gl.getExtension("EXT_color_buffer_float"); + if (canvas$1 !== null) { + canvas$1.style.touchAction = "none"; // Disable browser handling of all panning and zooming gestures. + canvas$1.addEventListener("blur", canvas_on_blur); + canvas$1.addEventListener("keydown", canvas_on_keydown); + canvas$1.addEventListener("keyup", canvas_on_keyup); + canvas$1.addEventListener("keypress", canvas_on_keypress); + canvas$1.addEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.addEventListener("wheel", canvas_on_wheel); + } + CreateDeviceObjects(); +} +function Shutdown() { + DestroyDeviceObjects(); + if (canvas$1 !== null) { + canvas$1.removeEventListener("blur", canvas_on_blur); + canvas$1.removeEventListener("keydown", canvas_on_keydown); + canvas$1.removeEventListener("keyup", canvas_on_keyup); + canvas$1.removeEventListener("keypress", canvas_on_keypress); + canvas$1.removeEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.removeEventListener("wheel", canvas_on_wheel); + } + app = null; + canvas$1 = null; + if (typeof (window) !== "undefined") { + window.removeEventListener("gamepadconnected", window_on_gamepadconnected); + window.removeEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + if (typeof (document) !== "undefined") { + document.body.removeEventListener("copy", document_on_copy); + document.body.removeEventListener("cut", document_on_cut); + document.body.removeEventListener("paste", document_on_paste); + } +} +function CreateFontsTexture() { + const io = GetIO(); + // Backup GL state + const last_texture = gl && gl.getParameter(gl.TEXTURE_BINDING_2D); + // Build texture atlas + // const width: number = 256; + // const height: number = 256; + // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff); + const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory. + // console.log(`font texture ${width} x ${height} @ ${pixels.length}`); + // Upload texture to graphics system + g_FontTexture = gl && gl.createTexture(); + gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2 + gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels); + // Store our identifier + io.Fonts.TexID = g_FontTexture || { foo: "bar" }; + // console.log("font texture id", g_FontTexture); + // Restore modified GL state + gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture); +} +function DestroyFontsTexture() { + const io = GetIO(); + io.Fonts.TexID = null; + gl && gl.deleteTexture(g_FontTexture); + g_FontTexture = null; +} +function CreateDeviceObjects() { + const vertex_shader = [ + "#version 300 es", + "uniform mat4 ProjMtx;", + "in vec2 Position;", + "in vec2 UV;", + "in vec4 Color;", + "out vec2 Frag_UV;", + "out vec4 Frag_Color;", + "void main() {", + " Frag_UV = UV;", + " Frag_Color = Color;", + " gl_Position = ProjMtx * vec4(Position.xy,0,1);", + "}", + ]; + const fragment_shader = [ + "#version 300 es", + "precision mediump float;", + "uniform sampler2D Texture;", + "in vec2 Frag_UV;", + "in vec4 Frag_Color;", + "out vec4 OutColor;", + "void main() {", + " OutColor = Frag_Color * texture(Texture, Frag_UV);", + "}", + ]; + g_ShaderHandle = gl && gl.createProgram(); + g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER); + g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER); + gl && gl.shaderSource(g_VertHandle, vertex_shader.join("\n")); + gl && gl.shaderSource(g_FragHandle, fragment_shader.join("\n")); + gl && gl.compileShader(g_VertHandle); + gl && gl.compileShader(g_FragHandle); + gl && gl.attachShader(g_ShaderHandle, g_VertHandle); + gl && gl.attachShader(g_ShaderHandle, g_FragHandle); + gl && gl.linkProgram(g_ShaderHandle); + g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle, "Texture"); + g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle, "ProjMtx"); + g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle, "Position") || 0; + g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle, "UV") || 0; + g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle, "Color") || 0; + g_VaoHandle = gl && gl.createVertexArray(); + g_VboHandle = gl && gl.createBuffer(); + g_ElementsHandle = gl && gl.createBuffer(); +} +function DestroyDeviceObjects() { + DestroyFontsTexture(); + gl && gl.deleteVertexArray(g_VaoHandle); + g_VaoHandle = null; + gl && gl.deleteBuffer(g_VboHandle); + g_VboHandle = null; + gl && gl.deleteBuffer(g_ElementsHandle); + g_ElementsHandle = null; + g_AttribLocationTex = null; + g_AttribLocationProjMtx = null; + g_AttribLocationPosition = -1; + g_AttribLocationUV = -1; + g_AttribLocationColor = -1; + gl && gl.deleteProgram(g_ShaderHandle); + g_ShaderHandle = null; + gl && gl.deleteShader(g_VertHandle); + g_VertHandle = null; + gl && gl.deleteShader(g_FragHandle); + g_FragHandle = null; +} + +exports.ImGuiWindow = ImGuiWindow; +exports.Init = Init; +exports.PrePIXIInit = PrePIXIInit; +exports.Shutdown = Shutdown; +//# sourceMappingURL=imgui_impl.js.map diff --git a/imgui_impl.js.map b/imgui_impl.js.map new file mode 100644 index 0000000..30848af --- /dev/null +++ b/imgui_impl.js.map @@ -0,0 +1 @@ +{"version":3,"file":"imgui_impl.js","sources":["node_modules/rollup-plugin-node-builtins/src/es6/empty.js","node_modules/rollup-plugin-node-builtins/src/es6/path.js","node_modules/imgui-js/bind-imgui.js","node_modules/imgui-js/imgui.ts","node_modules/es6-promise-polyfill/promise.js","node_modules/object-assign/index.js","node_modules/@pixi/polyfill/lib/polyfill.es.js","node_modules/ismobilejs/src/isMobile.js","node_modules/@pixi/settings/lib/settings.es.js","node_modules/eventemitter3/index.js","node_modules/earcut/src/earcut.js","node_modules/rollup-plugin-node-builtins/src/es6/punycode.js","node_modules/rollup-plugin-node-builtins/src/es6/util.js","node_modules/rollup-plugin-node-builtins/src/es6/qs.js","node_modules/rollup-plugin-node-builtins/src/es6/url.js","node_modules/@pixi/constants/lib/constants.es.js","node_modules/@pixi/utils/lib/utils.es.js","node_modules/@pixi/math/lib/math.es.js","node_modules/@pixi/display/lib/display.es.js","node_modules/@pixi/accessibility/lib/accessibility.es.js","node_modules/@pixi/runner/lib/runner.es.js","node_modules/@pixi/ticker/lib/ticker.es.js","node_modules/@pixi/core/lib/core.es.js","node_modules/@pixi/extract/lib/extract.es.js","node_modules/@pixi/interaction/lib/interaction.es.js","node_modules/@pixi/graphics/lib/graphics.es.js","node_modules/@pixi/sprite/lib/sprite.es.js","node_modules/@pixi/text/lib/text.es.js","node_modules/@pixi/prepare/lib/prepare.es.js","node_modules/@pixi/app/lib/app.es.js","node_modules/parse-uri/index.js","node_modules/mini-signals/lib/mini-signals.js","node_modules/resource-loader/dist/resource-loader.esm.js","node_modules/@pixi/loaders/lib/loaders.es.js","node_modules/@pixi/particles/lib/particles.es.js","node_modules/@pixi/spritesheet/lib/spritesheet.es.js","node_modules/@pixi/sprite-tiling/lib/sprite-tiling.es.js","node_modules/@pixi/text-bitmap/lib/text-bitmap.es.js","node_modules/@pixi/filter-color-matrix/lib/filter-color-matrix.es.js","node_modules/@pixi/mixin-cache-as-bitmap/lib/mixin-cache-as-bitmap.es.js","node_modules/@pixi/mixin-get-child-by-name/lib/mixin-get-child-by-name.es.js","node_modules/@pixi/mixin-get-global-position/lib/mixin-get-global-position.es.js","node_modules/@pixi/mesh/lib/mesh.es.js","node_modules/pixi.js/lib/pixi.es.js","utils.ts","imgui_impl.ts"],"sourcesContent":["export default {};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// resolves . and .. elements in a path array with directory names there\n// must be no slashes, empty elements, or device names (c:\\) in the array\n// (so also no leading and trailing slashes - it does not distinguish\n// relative and absolute paths)\nfunction normalizeArray(parts, allowAboveRoot) {\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = parts.length - 1; i >= 0; i--) {\n var last = parts[i];\n if (last === '.') {\n parts.splice(i, 1);\n } else if (last === '..') {\n parts.splice(i, 1);\n up++;\n } else if (up) {\n parts.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (allowAboveRoot) {\n for (; up--; up) {\n parts.unshift('..');\n }\n }\n\n return parts;\n}\n\n// Split a filename into [root, dir, basename, ext], unix version\n// 'root' is just a slash, or nothing.\nvar splitPathRe =\n /^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;\nvar splitPath = function(filename) {\n return splitPathRe.exec(filename).slice(1);\n};\n\n// path.resolve([from ...], to)\n// posix version\nexport function resolve() {\n var resolvedPath = '',\n resolvedAbsolute = false;\n\n for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {\n var path = (i >= 0) ? arguments[i] : '/';\n\n // Skip empty and invalid entries\n if (typeof path !== 'string') {\n throw new TypeError('Arguments to path.resolve must be strings');\n } else if (!path) {\n continue;\n }\n\n resolvedPath = path + '/' + resolvedPath;\n resolvedAbsolute = path.charAt(0) === '/';\n }\n\n // At this point the path should be resolved to a full absolute path, but\n // handle relative paths to be safe (might happen when process.cwd() fails)\n\n // Normalize the path\n resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {\n return !!p;\n }), !resolvedAbsolute).join('/');\n\n return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';\n};\n\n// path.normalize(path)\n// posix version\nexport function normalize(path) {\n var isPathAbsolute = isAbsolute(path),\n trailingSlash = substr(path, -1) === '/';\n\n // Normalize the path\n path = normalizeArray(filter(path.split('/'), function(p) {\n return !!p;\n }), !isPathAbsolute).join('/');\n\n if (!path && !isPathAbsolute) {\n path = '.';\n }\n if (path && trailingSlash) {\n path += '/';\n }\n\n return (isPathAbsolute ? '/' : '') + path;\n};\n\n// posix version\nexport function isAbsolute(path) {\n return path.charAt(0) === '/';\n}\n\n// posix version\nexport function join() {\n var paths = Array.prototype.slice.call(arguments, 0);\n return normalize(filter(paths, function(p, index) {\n if (typeof p !== 'string') {\n throw new TypeError('Arguments to path.join must be strings');\n }\n return p;\n }).join('/'));\n}\n\n\n// path.relative(from, to)\n// posix version\nexport function relative(from, to) {\n from = resolve(from).substr(1);\n to = resolve(to).substr(1);\n\n function trim(arr) {\n var start = 0;\n for (; start < arr.length; start++) {\n if (arr[start] !== '') break;\n }\n\n var end = arr.length - 1;\n for (; end >= 0; end--) {\n if (arr[end] !== '') break;\n }\n\n if (start > end) return [];\n return arr.slice(start, end - start + 1);\n }\n\n var fromParts = trim(from.split('/'));\n var toParts = trim(to.split('/'));\n\n var length = Math.min(fromParts.length, toParts.length);\n var samePartsLength = length;\n for (var i = 0; i < length; i++) {\n if (fromParts[i] !== toParts[i]) {\n samePartsLength = i;\n break;\n }\n }\n\n var outputParts = [];\n for (var i = samePartsLength; i < fromParts.length; i++) {\n outputParts.push('..');\n }\n\n outputParts = outputParts.concat(toParts.slice(samePartsLength));\n\n return outputParts.join('/');\n}\n\nexport var sep = '/';\nexport var delimiter = ':';\n\nexport function dirname(path) {\n var result = splitPath(path),\n root = result[0],\n dir = result[1];\n\n if (!root && !dir) {\n // No dirname whatsoever\n return '.';\n }\n\n if (dir) {\n // It has a dirname, strip trailing slash\n dir = dir.substr(0, dir.length - 1);\n }\n\n return root + dir;\n}\n\nexport function basename(path, ext) {\n var f = splitPath(path)[2];\n // TODO: make this comparison case-insensitive on windows?\n if (ext && f.substr(-1 * ext.length) === ext) {\n f = f.substr(0, f.length - ext.length);\n }\n return f;\n}\n\n\nexport function extname(path) {\n return splitPath(path)[3];\n}\nexport default {\n extname: extname,\n basename: basename,\n dirname: dirname,\n sep: sep,\n delimiter: delimiter,\n relative: relative,\n join: join,\n isAbsolute: isAbsolute,\n normalize: normalize,\n resolve: resolve\n};\nfunction filter (xs, f) {\n if (xs.filter) return xs.filter(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n if (f(xs[i], i, xs)) res.push(xs[i]);\n }\n return res;\n}\n\n// String.prototype.substr - negative index don't work in IE8\nvar substr = 'ab'.substr(-1) === 'b' ?\n function (str, start, len) { return str.substr(start, len) } :\n function (str, start, len) {\n if (start < 0) start = str.length + start;\n return str.substr(start, len);\n }\n;\n","\nvar Module = (function() {\n var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;\n return (\nfunction(Module) {\n Module = Module || {};\n\nvar Module=typeof Module!==\"undefined\"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key]}}Module[\"arguments\"]=[];Module[\"thisProgram\"]=\"./this.program\";Module[\"quit\"]=function(status,toThrow){throw toThrow};Module[\"preRun\"]=[];Module[\"postRun\"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window===\"object\";ENVIRONMENT_IS_WORKER=typeof importScripts===\"function\";ENVIRONMENT_HAS_NODE=typeof process===\"object\"&&typeof require===\"function\";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory=\"\";function locateFile(path){if(Module[\"locateFile\"]){return Module[\"locateFile\"](path,scriptDirectory)}else{return scriptDirectory+path}}if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+\"/\";var nodeFS;var nodePath;Module[\"read\"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require(\"fs\");if(!nodePath)nodePath=require(\"path\");filename=nodePath[\"normalize\"](filename);ret=nodeFS[\"readFileSync\"](filename)}return binary?ret:ret.toString()};Module[\"readBinary\"]=function readBinary(filename){var ret=Module[\"read\"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}assert(ret.buffer);return ret};if(process[\"argv\"].length>1){Module[\"thisProgram\"]=process[\"argv\"][1].replace(/\\\\/g,\"/\")}Module[\"arguments\"]=process[\"argv\"].slice(2);process[\"on\"](\"uncaughtException\",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process[\"on\"](\"unhandledRejection\",abort);Module[\"quit\"]=function(status){process[\"exit\"](status)};Module[\"inspect\"]=function(){return\"[Emscripten Module object]\"}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!=\"undefined\"){Module[\"read\"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)}}Module[\"readBinary\"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer===\"function\"){return new Uint8Array(readbuffer(f))}data=read(f,\"binary\");assert(typeof data===\"object\");return data};if(typeof scriptArgs!=\"undefined\"){Module[\"arguments\"]=scriptArgs}else if(typeof arguments!=\"undefined\"){Module[\"arguments\"]=arguments}if(typeof quit===\"function\"){Module[\"quit\"]=function(status){quit(status)}}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf(\"blob:\")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf(\"/\")+1)}else{scriptDirectory=\"\"}Module[\"read\"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module[\"readBinary\"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.responseType=\"arraybuffer\";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}}}Module[\"readAsync\"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,true);xhr.responseType=\"arraybuffer\";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror()};xhr.onerror=onerror;xhr.send(null)};Module[\"setWindowTitle\"]=function(title){document.title=title}}else{}var out=Module[\"print\"]||(typeof console!==\"undefined\"?console.log.bind(console):typeof print!==\"undefined\"?print:null);var err=Module[\"printErr\"]||(typeof printErr!==\"undefined\"?printErr:typeof console!==\"undefined\"&&console.warn.bind(console)||out);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key]}}moduleOverrides=undefined;var asm2wasmImports={\"f64-rem\":function(x,y){return x%y},\"debugger\":function(){debugger}};var functionPointers=new Array(0);var tempRet0=0;var setTempRet0=function(value){tempRet0=value};if(typeof WebAssembly!==\"object\"){err(\"no native wasm support detected\")}var wasmMemory;var wasmTable;var ABORT=false;var EXITSTATUS=0;function assert(condition,text){if(!condition){abort(\"Assertion failed: \"+text)}}var UTF8Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf8\"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str=\"\";while(idx>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):\"\"}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4}return len}var UTF16Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf-16le\"):undefined;var WASM_PAGE_SIZE=65536;var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferViews(){Module[\"HEAP8\"]=HEAP8=new Int8Array(buffer);Module[\"HEAP16\"]=HEAP16=new Int16Array(buffer);Module[\"HEAP32\"]=HEAP32=new Int32Array(buffer);Module[\"HEAPU8\"]=HEAPU8=new Uint8Array(buffer);Module[\"HEAPU16\"]=HEAPU16=new Uint16Array(buffer);Module[\"HEAPU32\"]=HEAPU32=new Uint32Array(buffer);Module[\"HEAPF32\"]=HEAPF32=new Float32Array(buffer);Module[\"HEAPF64\"]=HEAPF64=new Float64Array(buffer)}var DYNAMIC_BASE=5315584,DYNAMICTOP_PTR=72672;var TOTAL_STACK=5242880;var INITIAL_TOTAL_MEMORY=Module[\"TOTAL_MEMORY\"]||16777216;if(INITIAL_TOTAL_MEMORY>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback==\"function\"){callback();continue}var func=callback.func;if(typeof func===\"number\"){if(callback.arg===undefined){Module[\"dynCall_v\"](func)}else{Module[\"dynCall_vi\"](func,callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;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 ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__)}function preMain(){callRuntimeCallbacks(__ATMAIN__)}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 addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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()}}}Module[\"preloadedImages\"]={};Module[\"preloadedAudios\"]={};var dataURIPrefix=\"data:application/octet-stream;base64,\";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile=\"data:application/octet-stream;base64,AGFzbQEAAAAB2AyxAWACf38Bf2ACf38AYAJ8fAF8YAF/AX9gAX8AYAN/f38Bf2AEf39/fwBgA39/fwBgAn9/AX1gBH9/f38Bf2AEf399fwBgAn99AX9gA399fQF/YAZ9fX1/f38AYAR/fX9/AGAFf39/fX8AYAABfGADf31/AGAFf39/f38Bf2AIf39/f39/f38Bf2AHf39/f39/fwF/YAZ/f39/f38Bf2AGf398fH9/AX9gCX9/f39/f39/fwF/YAN9f38AYAl/f39/f39/f38AYAZ/f39/f38AYAJ/fQBgAX8BfWAAAX9gAn19AGABfQBgAAF9YAAAYAN/f30Bf2AGf39/fX9/AGAIf399fX1/f38AYAR/fX99AX9gBn9/fX9/fwBgBX9/f399AGAHf39/f31/fQBgBn9/f399fwBgB39/f39/f38AYAd/f39/f399AGAGf39/f399AGAFf39/f38AYAZ/f31/f30AYAV/f31/fwBgCH9/fX9/f31/AGALf39/f39/f39/f38AYAl/f39/f39/fX8AYAh/f39/f399fwBgBH9/f30AYAZ/f319fX8AYAp/f39/f39/f39/AGADf399AGAGf3x/f39/AX9gA39+fwF+YAF/AXxgA39/fwF9YAR/f319AX9gCH9/fX19f39/AX9gBH9/fX8Bf2AFf399f30Bf2AHf39/fHx/fwF/YAR/f399AX9gBX9/f31/AX9gBn9/f31/fwF/YAp/f39/f39/f39/AX9gA399fQBgB399fX1/f38AYAd/f399fX1/AGAHf39/fX9/fQBgB39/f31/f38AYAl/f399f39/fX8AYAd/f39/f31/AGAIf39/f399f30AYAh/f39/f39/fQBgCH9/f39/f39/AGAKf39/f39/f399fwBgDH9/f39/f39/f39/fwBgDX9/f39/f39/f39/f38AYAN/f3wAYAN/f38BfGABfQF9YAJ9fQF9YAV/fX19fQBgBH9/fX0AYAJ/fQF9YAR9fX19AX9gBX9/f319AGADfX19AX1gAn19AX9gBH19fX0BfWALf319fX19fX19fX8AYAl/f31/f39/fX8AYAp/f31/f39/f31/AGAFf31/f30Bf2AIf399fX9/f38AYAt/f319fX19fX19fQBgCH9/f39/fX1/AGAHf39/fX1/fwBgBX9/fX9/AX9gCH9/f399fX9/AGAHf39/fX19fQBgCn9/fX19fX19fX8AYAx/f319fX19fX19fX8AYAd/fX19fX19AGAEf31/fwF/YAh/f399f39/fQF/YAV/fX9/fwF/YAV/fX5+fwF/YAZ/fX19f30Bf2AGf318fH99AX9gAn98AXxgAn9+AX5gCX9/f399f39/fQF/YAd/f319fX99AX9gCX9/f319fX9/fQF/YAZ/f31/f38Bf2AIf39/fX9/f38Bf2AKf39/f39/f31/fwF/YAl/f39/f399f38Bf2AJf39/fn5/fX9/AX9gCX9/f319f31/fwF/YAl/f398fH99f38Bf2AFfHx8fX0BfWADfHx9AXxgA3x8fAF8YAV9fX19fQF9YAN+fn4BfWADfn5+AX5gBX5+fn19AX1gBX9/f319AX1gB39/f39/f30Bf2AIf39/f39/f30Bf2AGf399fX99AX9gB39/f319f30Bf2AGf399fX9/AX9gB39/f31/fX8AYAl/f39/f399fX8AYAd/f39/fX1/AGAEf319fQF9YAZ/f39/f30Bf2AHf399f39/fQF/YAJ/fgBgAn9/AX5gA35/fwF/YAJ+fwF/YAJ8fwF8YAV/f39/fwF8YAZ/f39/f38BfGACfX8BfWABfAF9YAJ9fwF/YAN/f34AYAF/AX5gAn9/AXxgBH9/f38BfWAHf398f39/fwF/YAV/f399fQF/YAl/f399fX1/f38Bf2AGf39/fX99AX9gCH9/f398fH9/AX9gBX9/f399AX9gBn9/f399fwF/YAd/f39/fX9/AX9gC39/f39/f39/f39/AX9gCX9/f319fX9/fwBgCH9/f399fX1/AGAHf39/f31/fwBgCH9/f399f399AGAIf39/f31/f38AYAp/f39/fX9/f31/AGAJf39/f39/fX99AGAJf39/f39/f399AGALf39/f39/f39/fX8AAvQDNwNlbnYBYgA2A2VudgFjAE4DZW52AWQAGgNlbnYBZQAEA2VudgFmAAADZW52AWcAUQNlbnYBaABTA2VudgFpAAcDZW52AWoAAANlbnYBawAtA2VudgFsACEDZW52AW0ABwNlbnYBbgAAA2VudgFvAAYDZW52AXAAAANlbnYBcQAaA2VudgFyAAQDZW52AXMABANlbnYBdAAEA2VudgF1AAAI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/AYLC0H89gEoAgAhASAAQZypBCgCACABQf8BcUHyBmoRAQALWgEDfyMEIQIjBEEQaiQEIAJBmKkEKAIAIgNBsCtqIABBBHRqIgApAgA3AgAgAiAAKQIINwIIIAIgAioCDCADQZAqaioCACABlJQ4AgwgAhChAyEEIAIkBCAECxYAIAAgASkCADcCACAAIAIpAgA3AggLBgBBNBADCwwAIAAgASAAIAFdGwvGAwEDfyACQYDAAE4EQCAAIAEgAhAjGiAADwsgACEEIAAgAmohAyAAQQNxIAFBA3FGBEADQCAAQQNxBEAgAkUEQCAEDwsgACABLAAAOgAAIABBAWohACABQQFqIQEgAkEBayECDAELCyADQXxxIgJBQGohBQNAIAAgBUwEQCAAIAEoAgA2AgAgACABKAIENgIEIAAgASgCCDYCCCAAIAEoAgw2AgwgACABKAIQNgIQIAAgASgCFDYCFCAAIAEoAhg2AhggACABKAIcNgIcIAAgASgCIDYCICAAIAEoAiQ2AiQgACABKAIoNgIoIAAgASgCLDYCLCAAIAEoAjA2AjAgACABKAI0NgI0IAAgASgCODYCOCAAIAEoAjw2AjwgAEFAayEAIAFBQGshAQwBCwsDQCAAIAJIBEAgACABKAIANgIAIABBBGohACABQQRqIQEMAQsLBSADQQRrIQIDQCAAIAJIBEAgACABLAAAOgAAIAAgASwAAToAASAAIAEsAAI6AAIgACABLAADOgADIABBBGohACABQQRqIQEMAQsLCwNAIAAgA0gEQCAAIAEsAAA6AAAgAEEBaiEAIAFBAWohAQwBCwsgBAsSACAAQbT4ATYCACAAQQRqED4LKgAgACgCEBBbBEBBACEABSAAQQRqIgAsAAtBAEgEQCAAKAIAIQALCyAACxIAIAAgARDpECAAQcD4ATYCAAsQACAALQABIAAtAABBCHRyCyoBAX8jBCEBIwRBEGokBCABIAA2AgBBBBA/IgAgASgCADYCACABJAQgAAslAQF/IAEoAgAhAiAAQgA3AgAgAEEANgIIIAAgAUEEaiACEJMBCwgAQQwQA0EACwcAIABBBGoLJwEBfyAAKAIIIgEEQCAAQQA2AgQgAEEANgIAIAEQQSAAQQA2AggLCw0AIAAoAgggAUECdGoLFgAgACABKgIAIAKUIAEqAgQgApQQMgsp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QCADIAMoApACQQFyNgKQAgtBAQsLBgAgAKiyCw0AIABB1ABqIAEQmgILFAAgASACIAAgACACXhsgACABXRsLEQBBACAAQQRqIAAoAggQWxsLIQAgAEP//39/Q///f38QMiAAQQhqQ///f/9D//9//xAyCxAAIAAoAggiAARAIAAQQQsLFwAgAEEANgIEIABBADYCACAAQQA2AggLIQEBfyMEIQIjBEEQaiQEIAIgATYCACAAIAIQ2gIgAiQEC5gCAQR/IAAgAmohBCABQf8BcSEDIAJBwwBOBEADQCAAQQNxBEAgACADOgAAIABBAWohAAwBCwsgA0EIdCADciADQRB0ciADQRh0ciEBIARBfHEiBUFAaiEGA0AgACAGTARAIAAgATYCACAAIAE2AgQgACABNgIIIAAgATYCDCAAIAE2AhAgACABNgIUIAAgATYCGCAAIAE2AhwgACABNgIgIAAgATYCJCAAIAE2AiggACABNgIsIAAgATYCMCAAIAE2AjQgACABNgI4IAAgATYCPCAAQUBrIQAMAQsLA0AgACAFSARAIAAgATYCACAAQQRqIQAMAQsLCwNAIAAgBEgEQCAAIAM6AAAgAEEBaiEADAELCyAEIAJrC58BAQN/EDwiAiwAf0UEQEGYqQQoAgAhBCABQwAAAABdIQMgAEMAAAAAXARAIAIqArQDQwAAAAAgASADGyACKgIMIAIqAliTIACSkpIhACACKgK4AyEBBSADBEAgBEHUKmoqAgAhAQsgAioC0AEhAAsgAiABIACSOALIASACIAIoAtQBNgLMASACIAIpAvQBNwLoASACIAIoAvwBNgLwAQsLqwECA38BfSMEIQUjBEEQaiQEQZipBCgCACEGIAMEQCABIAIQkAEhAgsgBSEDIAZBsDFqKAIAIQcgBkG0MWoqAgAhCCABIAJGBEAgAEMAAAAAIAgQMgUgAyAHIAhD//9/fyAEIAEgAkEAEJoDIAMqAgAiBEMAAAAAXgRAIAMgBCAIIAcqAgCVkyIEOAIACyADIARDMzNzP5KosjgCACAAIAMpAwA3AgALIAUkBAsnAEGYqQQoAgBBNGogAEECdGooAgAiAEF/SgR/IAAgARD2AgVBAAsLNQECfyMEIQMjBEEQaiQEAn8gACgCACEEIAMgARB3IAQLIAMoAgAgAigCABALIAMQMSADJAQL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KAIIRgRAIAEQ4QELIAEgACABKAIAEPIFIgI2AgAgASACNgIIIAAgARCCAQwFCyABEOEBIAFBADYCCCABQQA2AgAgAUEAOgAPDAQLIAEQ4QEgASAAKAIsIgI2AgggASACNgIAIAFBADoADwwDCyAAKAIsIQQgACABEIIBIAEQ4QEgASwAEARAIAEgBDYCACAEIQIFIAEoAgAiAiAESARAA0ACQAJ/IAAgAhDiAUH//wNxQQpGIQwgASgCACECIAwLDQAgASACQQFqIgI2AgAgAiAESA0BCwsLCyABIAI2AgggAUEAOgAPDAILQQMhAwwBCyAFQYCADEgEQCAFQY2ABGsEQEEDIQMMAgsgASgCBCABKAIIRgRAIAEgACABKAIAEPIFNgIAIAAgARCCAQUgACABELgECwwBCwJAAkACQCAFQYCADGsOAgIAAQsgARDhASABIAEoAghBAWo2AgggACABEIIBIAEgASgCCDYCACABQQA6AA8MAgtBAyEDDAELIAAgARCCASABEOEBIAEoAggiAkEASgRAIAEgAkF/aiICNgIICyABIAI2AgAgAUEAOgAPCyADQQNGBEBBACAFIAVB//8DShsiAkEASgRAAkAgBiACOwEAIAJBCkYEQCABLAAQDQELAkACQCABLAAMRQ0AIAEoAgQgASgCCEcNACABKAIAIgIgACgCLE4NACAAIQUgAUEYaiACQQFBARC5BCIEBEAgBCAFIAIQ4gE7AQALIAAgASgCAEEBENkDIAAgASgCACAGQQEQkgMEQCABIAEoAgBBAWo2AgAgAUEAOgAPCwwBCyAAIAEQkwMgACABKAIAIAZBARCSAwRAIAEgASgCAEEBEPcFIAEgASgCAEEBajYCACABQQA6AA8LCwsLBSADQckARgRAIAEoAgQgASgCCEYEQCABKAIAIgIgACgCLEgEQCAAIAEgAkEBENoDCwUgACABEJMDCyABQQA6AA8FIANBzgBGBEAgASgCBCABKAIIRgRAIAAgARCCASABKAIAIgJBAEoEQCAAIAEgAkF/akEBENoDIAEgASgCAEF/ajYCAAsFIAAgARCTAwsgAUEAOgAPCwsLIAkkBAtIAQF/IAFBGGogAiADQQAQuQQiBEEARyADQQBKcQRAQQAhAQNAIAFBAXQgBGogACABIAJqEOIBOwEAIAFBAWoiASADRw0A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CyQAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAAQQNxQZwLahExAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBA3FBmAtqETYACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBlAtqERkACyIAIAEgAiADIAQgBSAGIAcgCCAJIAogAEEBcUGSC2oRTwALHgAgASACIAMgBCAFIAYgByAIIABBA3FBjgtqEU4ACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBigtqETIACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQYgLahFNAAscACABIAIgAyAEIAUgBiAHIABBB3FBgAtqESoACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQf4KahEzAAscACABIAIgAyAEIAUgBiAHIABBA3FB+gpqESsACxoAIAEgAiADIAQgBSAGIABBD3FB6gpqERoACw0AIABB+ClqQQAQwAELHgAgASACIAMgBCAFIAYgByAIIABBAXFB6ApqEUwACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHmCmoRSwALGgAgASACIAMgBCAFIAYgAEEDcUHiCmoRLAALGAAgASACIAMgBCAFIABBD3FB0gpqES0ACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHQCmoRKAALGgAgASACIAMgBCAFIAYgAEEDcUHMCmoRKQALGAAgASACIAMgBCAFIABBA3FByApqEScACxYAIAEgAiADIAQgAEEfcUGoCmoRBgALIAAgASACIAMgBCAFIAYgByAIIAkgAEEBcUGmCmoRSgALHAAgASACIAMgBCAFIAYgByAAQQFxQaQKahFJAAscACABIAIgAyAEIAUgBiAHIABBAXFBogpqEUgACxoAIAEgAiADIAQgBSAGIABBA3FBngpqESMACxgAIAEgAiADIAQgBSAAQQNxQZoKahEPAAscACABIAIgAyAEIAUgBiAHIABBAXFBmApqEUcACxYAIAEgAiADIAQgAEEDcUGUCmoRNAALFQAgASACIAMgAEH/AHFBlAlqEQcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQZIJahEwAAsaACABIAIgAyAEIAUgBiAAQQFxQZAJahEmAAsaACABIAIgAyAEIAUgBiAAQQFxQY4JahEuAAsYACABIAIgAyAEIAUgAEEDcUGKCWoRLwALFgAgASACIAMgBCAAQQNxQYYJahEKAAseACABIAIgAyAEIAUgBiAHIAggAEEBcUGECWoRJAALGgAgASACIAMgBCAFIAYgAEEBcUGCCWoRNQALFAAgASACIAMgAEEPcUHyCGoRNwALFgAgASACIAMgBCAAQQNxQe4GahEOAAsUACABIAIgAyAAQQFxQewGahERAAscACABIAIgAyAEIAUgBiAHIABBAXFB6gZqEUYACxQAIAEgAiADIABBAXFB6AZqEUUACxQAIAEgAiADIABBAXFB3gRqERgACxoAIAEgAiADIAQgBSAGIABBA3FB2gRqEQ0ACxUAQZipBCgCAEE0aiAAQQJ0aigCAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBAXFBggRqEUQACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBB3FB+gNqERcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQ9xQeoDahETAAscACABIAIgAyAEIAUgBiAHIABBD3FB2gNqERQACxoAIAEgAiADIAQgBSAGIABBH3FBugNqERUACxgAIAEgAiADIAQgBSAAQQ9xQaoDahESAAsWACABIAIgAyAEIABBH3FBigNqEQkACxoAIAEgAiADIAQgBSAGIABBAXFBiANqEUMACxgAIAEgAiADIAQgBSAAQQFxQYYDahFCAAsWACABIAIgAyAEIABBAXFBhANqEUEACxwAIAEgAiADIAQgBSAGIAcgAEEBcUGCA2oRQAALGAAgASACIAMgBCAFIABBAXFBwAJqET8ACxYAIAEgAiADIAQgAEEBcUG+AmoRPgALHgAgASACIAMgBCAFIAYgByAIIABBAXFBvAJqET0ACxYAIAEgAiADIAQgAEEBcUG6AmoRPAALFAAgASACIAMgAEEDcUG2AmoRIgALGgAgASACIAMgBCAFIAYgAEEBcUG0AmoRFgALFgAgASACIAMgBCAAQQFxQbIBahElAAsUACABIAIgAyAAQQFxQbABahEMAAsaACABIAIgAyAEIAUgBiAAQQFxQawBahE4AAsUACABIAIgAyAAQQNxQcgAahE7AAsRACABIAIgAEEfcUEoahEIAAsPACABIABBA3FBJGoRHAALDQAgAEEfcUEEahEgAAsPACABIABBAXFBAmoROgALCgAgAEEBcREQAAvS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AiADIAQgBUEPcUHSCmoRLQAMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIAFBADoANCABQQA6ADUgACgCCCIAKAIAKAIUIQMgACABIAIgAkEBIAQgA0EPcUHqCmoRGgAgAQJ/AkAgASwANQR/IAEsADQNAUEBBUEACyEAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAA0CQQQMAwsLIAANAEEEDAELQQMLNgIsDAILCyADQQFGBEAgAUEBNgIgCwsLC0QBAX8gACABKAIIEIUBBEAgASACIAMgBBCFBQUgACgCCCIAKAIAKAIUIQYgACABIAIgAyAEIAUgBkEPcUHqCmoRGgALCxgAIAAgASgCCBCFAQRAIAEgAiADEIcFCwuPAQAgACABKAIIEIUBBEAgASACIAMQhgUFIAAgASgCABCFAQRAAkAgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASACNgIUIAEgASgCKEEBajYCKCABKAIkQQFGBEAgASgCGEECRgRAIAFBAToANgsLIAFBBDYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwsLGgAgACABKAIIEIUBBEAgASACIAMgBBCFBQsLyQEBA38jBCEEIwRBQGskBCAEIQMgACABEIUBBH9BAQUgAQR/IAFB4PQBEJQEIgEEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyABNgIAIAMgADYCCCADQX82AgwgA0EBNgIwIAEoAgAoAhwhACABIAMgAigCAEEBIABBH3FBqApqEQYAIAMoAhhBAUYEfyACIAMoAhA2AgBBAQVBAAsFQQALBUEACwshBSAEJAQgBQt4AQN/IwQhASMEQRBqJAQgASEAAn9BAEGMrgQoAgBB37femgFGDQAaQbMEESEAQYyuBEHft96aATYCAEEACwRAQZSKAyAAEMICBQJ/An9BAEGQrgQoAgAiACgCBEHOlZoSRw0AGiAAKAIACyECIAEkBCACCw8LQQALowICB38BfiMEIQIjBEEwaiQEIAJBGGohASACQRBqIQMgAiEEIAJBJGohBRDLCyIABEAgACgCACIABEAgACkDMCIHQoB+g0KA1qyZ9MiT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AgAhBCAAEIoCIAAoAiAQtgcgBAsQigILCyAAQdQyaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAwRAIAMQjRIgAxBBCyABQQFqIgEgAigCAEgNAAsLIAIQTyAAQeAyahBPIABB7DJqEE8gAEGUM2pBADYCACAAQfgyahBPIABBhDNqEE8gAEGgNWpBADYCACAAQZgzakEANgIAIABBnDNqQQA2AgAgAEHcM2pBADYCACAAQdgzakEANgIAIABB9DNqQQA2AgAgAEH4M2oQTyAAQYQ0ahBPIABBkDRqEE8gAEGcNGoQTyAAQag0ahBPIABBwDdqIQJBACEBA0AgAUEMbCACahBPIAFBAWoiAUECRw0ACyAAQdw3ahDdBCAAQYTYAGoQTyAAQZA6ahBPIABBnDpqEE8gAEGoOmoQTyAAQcDYAGoiAigCAEEASgRAQQAhAQNAIAIgARBVKAIAEPYHIAFBAWoiASACKAIASA0ACwsgAhBPIABBtNgAahBPIABB0NgAaiICKAIAIgFBzIECKAIARiABRXJFBEAgARDDAhogAkEANgIACyAAQdTYAGoQTyAAQQA6AAALCwsAIAAQngUgABBUC00BAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACQYz8ATYCACACIAE2AgggAhCvBSAAIAJBBGoQ5AMhAyACEJ4FIAIkBCADCwsAIAAQnwUgABBUC08BAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADQfT7ATYCACADIAE2AgggAxDGByAAIANBBGogAhCABiEEIAMQnwUgAyQEIAQLMwAgAEGYqQQoAgAgABsiABCxD0GYqQQoAgAgAEYEQEEAEIoCCyAABEAgABDkCSAAEEELC1QBAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQygEgACACIAMQTiIAKAIARhC5AiIBBEAgACACNgIACyABIQQgAxC0ASADJAQgBAtWAgJ/An0jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQcSABQQhqIgIgAEE8aiAAQUBrIAEQywcgAhA9IQQgAhAxIAEQMSABJAQgBAsHACABELgPC4kBAgJ/An0jBCEJIwRBMGokBEGwqQQoAgAiCkE8aiABEIgBIApBQGsg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QYAHaiIKEDogAEGwB2ohAyAAQYgHaiEBA0AgARA6IAFBCGoiASADRw0ACyAAQbwIaiEDIABBlAhqIQEDQCABEDogAUEIaiIBIANHDQALIABB+ClqEGggAEEAQYgqEGoaIAJDAACAv0MAAIC/EDIgBSACKQMANwIAIABDiYiIPDgCECAAQwAAoEA4AhQgAEHmhQI2AhggAEHwhQI2AhwgAEOamZk+OAIgIABDAADAQDgCJCAAQSxqIgFCfzcCACABQn83AgggAUJ/NwIQIAFCfzcCGCABQn83AiAgAUJ/NwIoIAFCfzcCMCABQn83AjggAUFAa0J/NwIAIAFCfzcCSCABQX82AlAgAEMAAIA+OAKAASAAQ83MTD04AoQBIABBADYCiAEgAEEANgKMASAAQwAAgD84ApABIABBADYCmAEgAEEAOgCUASACQwAAgD9DAACAPxAyIAYgAikDADcCACACQwAAAABDAAAAABAyIAggAikDACILNwIAIAcgCzcCACAAQQA6ALUBIABBAToAtgEgAEEBOgC3ASAAQQA6ALgBIABCADcCvAEgAEIANwLEASAAQQA2AswBIABBAzYC0AEgAEECNgLUASAAQQA2AtgBIABBAzYC3AEgAEEANgLgASACQ///f/9D//9//xAyIAkgAikDADcCACACQ///f/9D//9//xAyIAogAikDADcCACAAQwAAwEA4AihBACEBA0AgAEGACGogAUECdGpDAACAvzgCACAAQewHaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEFRw0AC0EAIQEDQCAAQdAYaiABQQJ0akMAAIC/OAIAIABB0AhqIAFBAnRqQwAAgL84AgAgAUEBaiIBQYAERw0AC0EAIQEDQCAAQdAoaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEVRw0ACyAEJAQLNAECfyMEIQQjBEEQaiQEIARBCGoiBSABIAIQwgogBCADEG8gACAFIAQQgQEgBBAxIAQkBAtCAQJ/IwQhBCMEQRBqJAQgBCADEDQgBEEEaiIDIAEgAiAEIABBA3FBhglqEQoAIAMQfSEFIAMQMSAEEDEgBCQEIAULKwEBfxDVByIBQZquBCABGyEBIABCADcCACAAQQA2AgggACABIAEQXBCTAQsxAQF/IwQhASMEQRBqJAQgASAAEJ8BIAEoAgAgASABLAAL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C0EASAR/IAAoAgAFIAALIAEQqwgLGAAgACwAC0EASAR/IAAoAgAFIAALEJMKCwkAIAAgARDiEAsqAQJ/An8jBCEBIwRBEGokBEHEvgJBBEHAywFBicsCQRJBFxACIAELJAQLCwAgACABIAIQ4BALCQAgACABEN8QCwsAIAAgASACEN4QCxgAIAAsAAtBAEgEfyAAKAIABSAACxCpAwsJACAAIAEQ3BALGAAgACwAC0EASAR/IAAoAgAFIAALEKsDCyoBAn8CfyMEIQEjBEEQaiQEQem9AkEFQdDLAUG7zAJBDUELEAIgAQskBAsNACAAIAEgAiADENsQCyoBAn8CfyMEIQEjBEEQaiQEQd69AkEFQfDLAUG7zAJBDEEKEAIgAQskBAsNACAAIAEgAiADENoQCxoAIAAsAAtBAEgEfyAAKAIABSAACyABEK8ICwcAIAAQ2RALKgECfwJ/IwQhASMEQRBqJARB6bwCQQRBkMwBQd3NAkECQQEQAiABCyQECwsAIAAgASACENcQCyoBAn8CfyMEIQEjBEEQaiQEQeG8AkEDQez4AUHjzQJBEUEdEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHZvAJBA0H4+AFB480CQRBBHBACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB0bwCQQNBhPkBQePNAkEPQRsQAiABCyQECxoAIAAsAAtBAEgEfyAAKAIABSAACyABELUICyoBAn8CfyMEIQEjBEEQaiQEQbO8AkEEQaDMAUGJywJBEUEVEAIgAQskBAscACAALAALQQBIBH8gACgCAAUgAAsgASACEM8FCwkAIAAgARDVEAsRACAAIAEgAiADIAQgBRDUEAsqAQJ/An8jBCEBIwRBEGokBEGPvAJBBkGwzAFB6M0CQRFBBhACIAELJAQLDwAgACABIAIgAyAEEM0QCw0AIAAgASACIAMQyhALKgECfwJ/IwQhASMEQRBqJARB9bsCQQVB0MwBQbvMAkELQQgQAiABCyQECw0AIAAgASACIAMQyBALCwAgACABIAIQxxALNQEBfyAALAALQQBIBEAgACgCACEACxA8IgIsAH8Ef0EABSACIAAQXiABQRpyIABBABDTAgsLBwAgABC9CAsYACAALAALQQBIBH8gACgCAAUgAAsQvggLKgECfwJ/IwQhASMEQRBqJARB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AAtBAEgEfyAAKAIABSAACyABELkCCyoBAn8CfyMEIQEjBEEQaiQEQc61AkEEQfDSAUGJywJBDkEJEAIgAQskBAsLACAAIAEgAhC1DwsJACAAIAEQsw8LKgECfwJ/IwQhASMEQRBqJARBubUCQQhBgNMBQYfRAkEEQQEQAiABCyQECxMAIAAgASACIAMgBCAFIAYQrw8LKgECfwJ/IwQhASMEQRBqJARBs7UCQQdBoNMBQZ/TAkEBQQQQAiABCyQECxEAIAAgASACIAMgBCAFEK0PCwkAIAAgARCsDwsaACAALAALQQBIBH8gACgCAAUgAAsgARCDCQsYACAALAALQQBIBH8gACgCAAUgAAsQxAQLCQAgACABEKkPC6cEAgF/AX4jBCEBIwRBEGokBCAAEDogAEEIahA6IABBEGoQOiAAQRhqEDogAEEgahA6IABBLGoQOiAAQcwAahBmIABB3ABqEGYgAEGAAWoQOiAAQYgBahBoIABBADYCsAEgAEEANgKsASAAQQA2ArQBIABBuAFqEGggAEHEAWoQaCAAQQA2AtQBIABBADYC0AEgAEEANgLYASAAQegBahDnAiAAQewBahDnAiAAQfABahDnAiABQwAAAABDAAAAABAyIAAgASkDACICNwIYIAAgAjcCECAAIAI3AgggACACNwIAIAFDAAAAAEMAAAAAEDIgACABKQMAIgI3AiwgACACNwIgIABDAAAAADgCNCAAQwAAAAA4AiggAEMAAIC/OAI4IABCADcCPCAAQgA3AkQgARBmIAAgASkCADcCXCAAIAEpAgg3AmQgACABKQIANwJMIAAgASkCCDcCVCAAQQA2AnggAEEANgJ0IABBADYCbCAAQQE2AnAgAEEAOgB8IABBADoAfSAAQQA6AH4gAUMAAAAAQwAAAAAQMiAAIAEpAwA3AoABIABBADYClAEgAEEBNgKcASAAQQE2ApgBIABDAAAAADgCpAEgAEEANgKgASAAQwAAgL84AqgBIABCADcC3AEgAEEANgLkASABEOcCIAAgASgCADYC6AEgARDnAiAAIAEoAgA2AuwBIAEQ5wIgACABKAIANgLwASAAQQA2AvQBIAEkBAsaACAALAALQQBIBH8gACgCAAUgAAtBABC5AQsHACAAEKAPC9AHAgV/AX4jBCEFIwRBEGokBCAFIQMgAEEMahA6IABBFGoQOiAAQRxqEDogAEEkahA6IABBLGoQOiAAQTRqEDogAEE8ahA6IABB2ABqEDogAEHgAGoQOiAAQegAahA6IABB8ABqEDogAEG4AWoQOiAAQcABahA6IABByAFqEMoSIABBwANqIgYiBEEANgIEIARBADYCACAEQQA2AgggAEHMA2oQZiAAQdwDahBmIABB7ANqEGYgAEH8A2oQZiAAQYwEahBmIABBpARqEN4DIABB1ARqEGggAEEANgLkBCAAQQA2AuAEIABBADYC6AQgAEH4BGoiByABQbwxahD4ByAAQagGaiEEIABBiAZqIQEDQCABEGYgAUEQaiIBIARHDQALIAAgAhDaBjYCACAAQQRqIgEgAkEAQQAQuwE2AgAgBiABEHggAEEANgIIIANDAAAAAEMAAAAAEDIgACADKQMANwIMIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AhwgACAINwIUIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AjQgACAINwIsIANDAAAAAEMAAAAAEDIgACADKQMANwI8IABDAAAAADgCRCAAQwAAAAA4AkggACACEFxBAWo2AkwgACAAQf6FAhBeNgJQIABBADYCVCADQwAAAABDAAAAABAyIAAgAykDADcCWCADQ///f39D//9/fxAyIAAgAykDADcCYCADQwAAAD9DAAAAPxAyIAAgAykDADcCaCADQwAAAABDAAAAABAyIAAgAykDADcCcCAAQQA7AYQBIABCADcCeCAAQQA7AYABIABBADoAggEgAEF/OwGGASAAQX87AYgBIABBADYCjAEgAEF/NgKUASAAQX82ApABIABBADoAmAEgAEEANgKcASAAQX82AqABIABBADYCqAEgAEEANgKkASAAQQ82ArQBIABBDzYCsAEgAEEPNgKsASADQ///f39D//9/fxAyIAAgAykDACIINwLAASAAIAg3ArgBIABBfzYCnAQgAEMAAAAAOAKgBCAAQwAAgD84AuwEIABBfzYC8AQgACAHNgL0BCAAIAAoAgA2AqQFIABBADYChAYgAEEANgKABiAAQgA3AuwFIABCADcC9AUgAxBmIAAgAykCADcCmAYgACADKQIINwKgBiAAIAMpAgA3AogGIAAgAykCCDcCkAYgAEEANgL8BSAAQX82AqwGIABBfzYCqAYgAEH/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ICAtICAgICAgICAgIFguWCAgICAgICAgICAtWC4uLi4uWCAgICAgICAgICAtICAgICAgICAgIFguLi4uLlgtICAgIFguLlggICAgICAgICAtLS0gICAgICAgICAtWFhYLlhYWC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtWC4uLi5YICAgICAgICAgICAtICAgICAgICAgICBYLi4uLlgtICAgIFguLlggICAgICAgICBYICAgICAgICAgICAtICBYLlggIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtWC4uLlggICAgICAgICAgICAtICAgICAgICAgICAgWC4uLlgtICAgIFguLlggICAgICAgICBYWCAgICAgICAgICAtICBYLlggIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtWC4uWC5YICAgICAgICAgICAtICAgICAgICAgICBYLlguLlgtICAgIFguLlggICAgICAgICBYLlggICAgICAgICAtICBYLlggIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtWC5YIFguWCAgICAgICAgICAtICAgICAgICAgIFguWCBYLlgtICAgIFguLlhYWCAgICAgICBYLi5YICAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWFggICBYLlggICAgICAgICAtICAgICAgICAgWC5YICAgWFgtICAgIFguLlguLlhYWCAgICBYLi4uWCAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgWC5YICAgICAgICAtICAgICAgICBYLlggICAgICAtICAgIFguLlguLlguLlhYICBYLi4uLlggICAgICAtICBYLlggIC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgIFguWCAgICAgICAtICAgICAgIFguWCAgICAgICAtICAgIFguLlguLlguLlguWCBYLi4uLi5YICAgICAtICBYLlggIC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICBYLlggICAgICAtICAgICAgWC5YICAgICAgICAtWFhYIFguLlguLlguLlguLlhYLi4uLi4uWCAgICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgWC5YICAgWFgtWFggICBYLlggICAgICAgICAtWC4uWFguLi4uLi4uLlguLlhYLi4uLi4uLlggICAtICBYLlggIC0gICBYLlggICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgIFguWCBYLlgtWC5YIFguWCAgICAgICAgICAtWC4uLlguLi4uLi4uLi4uLlhYLi4uLi4uLi5YICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgICBYLlguLlgtWC4uWC5YICAgICAgICAgICAtIFguLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uWCAtWFhYLlhYWC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICAgICAgWC4uLlgtWC4uLlggICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uLlgtWC4uLi4uWC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgICAgICBYLi4uLlgtWC4uLi5YICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uWFhYWFgtWFhYWFhYWC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgICAgIFguLi4uLlgtWC4uLi4uWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uLlhYLi4uWC4uWCAgICAtLS0tLS0tLS0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtWFhYWFhYWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uWCBYLi5YIFguLlggICAtICAgICAgIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tICAgIFguLi4uLi4uLi4uWCBYLlggIFguLlggICAtICAgICAgIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAtICAgIFguLi4uLi4uLi4uWCBYWCAgICBYLi5YICAtICAgICAgIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICBYLi5YICAgICAgICAgIC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICAgWFggICAgICAgICAgIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAtICAgICBYWFhYWFhYWFhYICAtLS0tLS0tLS0tLS0gICAgICAgIC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0gICAgICAgICAgICAgICAgICAgIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAQaAiC8xdN10pIyMjIyMjI2hWMHFzJy8jIyNbKSwjIy9sOiQjUTY+IyM1W240Mj5jLVRIYC0+PiMvZT4xMU5OVj1CdigqOi5GP3V1IyhnUlUubzBYR0hgJHZoTEcxaHh0OT9XYCMsNUxzQ3AjLWk+LnIkPCQ2cEQ+TGInOzlDcmM2dGdYbUtWZVUyY0Q0RW8zUi8yKj5dYihNQzskalBmWS47aF5gSVdNOTxMaDJUbFMrZi1zJG82UTxCV0hgWWlVLnhmTHEkTjskMGlSL0dYOlUoamNXMnAvVypxPy1xbW5VQ0k7akhTQWlGV00uUiprVUBDPUdIP2E5d3A4ZiRlLi00XlFnMSlRLUdMKGxmKHIvN0dyUmd3ViVNUz1DI2A4TkQ+UW8jdCdYIyh2I1k5dzAjMUQkQ0lmO1cnI3BXVVBYT3V4WHVVKEg5TSgxPHEtVUUzMSNeLVYnOElSVW83UWYuL0w+PUtlJCQnNUYlKV0wXiMwWEBVLmE8cjpRTHRGc0xjTDYjI2xPaikjLlk1PC1SJktnTHdxSmZMZ04mO1E/Z0leI0RZMnVMaUBeck1sOXQ9Y1dxNiMjd2VnPiRGQmpWUVRTRGdFS25JUzdFTTk+Wlk5dzAjTDs+PiNNeCY0TXZ0Ly9MW01rQSNXQGxLLk4nWzAjN1JMXyYjdytGJUh0RzlNI1hMYE4mLixHTTRQZzstPG5MRU5odng+LVZzTS5NMHJKZkxIMmVUTWAqb0pNSFJDYE5rZmltTTJKLFctalhTOilyMHdLI0BGZ2UkVT5gdydON0cjJCNmQiMkRV4kIzo5OmhrK2VPZS0tNngpRjcqRSU/NzYlXkdNSGVQVy1aNWwnJkdpRiMkOTU2OnJTP2RBI2ZpSzopWXIrYCYjMGpAJ0RiRyYjXiRQRy5MbCtETmE8WENNS0VWKk4pTE4vTipiPSVRNnBpYS1YZzhJJDxNUiYsVmRKZSQ8KDdHO0NrbCcmaEY7OyQ8Xz1YKGIuUlMlJSkjIyNNUEJ1dUUxVjp2JmNYJiMybSMoJmNWXWBrOU9oTE1ibiVzJEcyLEIkQmZEM1gqc3A1I2wsJFIjXXhfWDF4S1glYjVVKltyNWlNZlVvOVVgTjk5aEcpdG0rL1VzOXBHKVhQdWA8MHMtKVdUdChnQ1J4SWcoJTZzZmg9a3RNS24zaik8NjxiNVNrXy8wKF5dQWFOIyhwL0w+JlZaPjFpJWgxUzl1NW9AWWFhVyRlK2I8VFdGbi9aOk9oKEN4MiRsTkVvTl5lKSNDRllAQEk7Qk9RKnNSd1p0WnhSY1U3dVc2Q1hvdzBpKD8kUVtjak9kW1A0ZCldPlJPUE9weFRPN1N0d2kxOjppQjFxKUNfPWRWMjZKOzIsXTdvcCRddVFyQF9WNyRxXiVsUXd0dUhZXT1EWCxuM0wjMFBIRE80Zjk+ZENATz5IQnVLUHBQKkUsTitiM0wjbHBSL01yVEVILklBUWsuYT5EWy5lO21jLnhdSXAuUEheJy9hcVVPLyQxV3hMb1cwW2lMQTxRVDs1SEtEK0BxUSdOUSgzX1BMaEU0OFIucUFQU3dRMC9XSz9aLFt4Py1KO2pRVFdBMFhAS0ooX1k4Ti06L003NDovLVpwS3JVc3M/ZCNkWnFdREFia1UqSnFrTCtud1hAQDQ3YDU+dz00aCg5LmBHQ1JVeEhQZVJgNU1qb2woZFVXeFphKD5TVHJQa3JKaVd4YDVVN0YjLmcqanJvaEdnYGNnOmxTVHZFWS9FVl83SDRROVtaJWNudjtKUVlaNXEubDdaZWFzOkhPSVpPQj9HPE5hbGQkcXNdQF1MPEo3YlIqPmd2Ols3TUkyaykuJzIoJDVGTlAmRVEoLClVXVddK2ZoMTgudnNhaTAwKTtEM0A0a3U1UD9EUDhhSnQrO3FVTV09K2InOEA7bVZpQkt4MERFWy1hdUdsODpQSiZEaitNNk9DXU9eKCgjI11gMGkpZHJUOy03WGA9LUgzW2lnVW5QRy1OWmxvLiNrQGgjPU9yayRtPmE+JC0/VG0kVVYoPyNQNllZIycvIyMjeGU3cS43M3JJMypwUC8kMT5zOSlXLEpyTTdTTl0nLzRDI3YkVWAwI1YuWzA+eFFzSCRmRW1QTWdZMnU3S2goRyVzaUlmTFNvUytNSzJlVE0kPTUsTThwYEEuO19SJSN1W0sjJHg0QUc4LmtLL0hTQj09LSdJZS9RVHRHPy0uKl5OLTRCL1pNXzNZbFFDNyhwN3EpJl0oYDZfYykkLypKTChMLV4oXSR3SU1gZFB0T2RHQSxVMzp3Mk0tMDxxLV1MXz9eKTF2dycuLE1Sc3FWci5MO2FOJiMvRWdKKVBCY1stZj4rV29tWDJ1N2xxTTJpRXVtTVRjc0Y/LWFUPVotOTdVRW5YZ2xFbjFLLWJuRU9gZ3VGdChjJT07QW1fUXNAakxvb0kmTlg7XTAjajQjRjE0O2dsOC1HUXBnd2hycTgnPWxfZi1iNDknVU9xa0x1Ny0jI29EWTJMKHRlK01jaCZnTFl0SixNRXRKZkxoJ3gnTT0kQ1MtWlolUF04Ylo+I1M/WVkjJVEmcSczXkZ3Jj9EKVVETnJvY00zQTc2Ly9vTD8jaDdnbDg1W3FXL05ET2slMTZpajsrOjFhJ2lOSWRiLW91OC5QKncsdjUjRUkkVFdTPlBvdC1SKkgnLVNFcEE6ZylmK08kJSVga0EjRz04Uk1tRzEmT2A+dG84YkNdVCYkLG4uTG9PPjI5c3AzZHQtNTJVJVZNI3E3J0RIcGcrI1o5JUhbSzxMJWEyRS1ncldWTTNAMj0tazIydExdNCQjIzZXZSc4VUpDS0VbZF89JXdJOyc2WC1Hc0xYNGpeU2dKJCMjUip3LHZQM3dLI2lpVyYjKmheRCZSP2pwNysvdSYjKEFQIyNYVThjJGZTWVctSjk1Xy1EcFtnOXdjTyYjTS1oMU9jSmxjLSp2cHcweFVYJiNPUUZLTlhAUUknSW9QcDduYixRVS8vTVEmWkRrS1ApWDxXU1ZMKDY4dVZsJiNjJ1swIyhzMVgmeG0kWSVCNypLOmVEQTMyM2o5OThHWGJBI3B3TXMtamdEJDlRSVNCLUFfKGFONHhvRk1eQEM1OEQwK1ErcTNuMCMzVTFJbkRqRjY4Mi1Tak1YSkspKGgkaHh1YV9LXXVsOTIlJ0JPVSYjQlJSaC1zbGc4S0RscjolTDcxS2E6LkE7JVlVTGpEUG1MPExZczhpI1h3Sk9ZYUtQS2MxaDonOUtlLGcpYiksNzg9STM5Qjt4aVkkYmdHdy0mLlppOUluWER1WWElRypmMkJxN21uOV4jcDF2diUjKFdpLTsvWjVobzsjMjo7JWQmI3g5djY4QzVnP250WDBYKXBUYDslcEIzcTdtZ0dOKTMlKFA4blRkNUw3R2VBLUdMQCslSjN1MjooWWY+ZXRgZTspZiNLbTgmK0RDJEk0Nj4jS3JdXXUtWz05OXR0czEucWIjcTcyZzFXSk84MXErZU4nMDMnZU0+JjFYeFktY2FFbk9qJTJuOCkpLD9JTFI1Xi5JYm48LVgtTXE3W2E4MkxxOkYmI2NlK1M5d3NDSyp4YDU2OUU4ZXcnSGVdaDpzSVsyTE0kW2d1a2EzWlJkNjp0JUlHOjskJVlpSjpOcT0/ZUF3Oy86bm5EcTAoQ1ljTXBHKXFMTjQkIyMmSjxqJFVwSzxRNGExXU11cFdeLXNqXyQlW0hLJSdGIyMjI1FSWko6OlkzRUdsNCdAJUZraUFPZyNwWyMjT2BndWtUZkJIYWdMPExIdyVxJk9WMCMjRj02LzpjaEltMEBlQ1A4WF06a0ZJJWhsOGhnT0BSY0JoUy1AUWIkJSttPWhQRExnKiVLOGxuKHdjZjMvJ0RXLSQubFI/bltuQ0gtZVhPT05USmxoOi5SWUYlMydwNnNxOlVJTUE5NDUmXkhGUzg3QCRFUDJpRzwtbENPJCVjYHVLR0QzckMkeDBCTDhhRm4tLWBrZSUjSE1QJ3ZoMS9SJk9fSjkndW0sLjx0eFtAJXdzSmsmYlVUMmAwdU12N2dnI3FwL2lqLkw1NidobDsuczVDVXJ4ak9NNy0jIy5sK0F1J0EmTzotVDcyTF1QYCY9O2N0cCdYU2NYKnJVLj4tWFR0LCVPVlU0KVMxK1ItI2RnMC9Obj9LdTFeMGYkQipQOlJvd3dtLWAwUEtqWURETSczXWQzOVZaSEVsNCwuaiddUGstTS5oXiY6MEZBQ20kbWFxLSZzZ3cwdDcvNiheeHRrJUx1SDg4RmotZWttPkdBI18+NTY4eDYoT0ZSbC1JWnBgJmIsX1AnJE08Sm5xNzlWc0pXL21XUypQVWlxNzY7XS9OTV8+aExieGZjJG1qYCxPOyYlVzJtYFpoOi8pVWV0dzphSiVdSzloOlRjRl11Xy1TajksVkszTS4qJyYwRFtDYV1KOWdwOCxrQVddJSg/QSVSJGY8LT5adHMnXmtuPS1eQGM0JS1wWTZxSSVKJTFJR3hmTFU5Q1A4Y2JQbFh2KTtDPWIpLDwybU92UDh1cCxVVmYzODM5YWNBV0FXLVc/I2FvL14jJUtZbzhmUlVMTmQyLj4lbV1VSzpuJXIkJ3N3XUo7NXBBb09fIzJtTzNuLCc9SDUoZXRIZypgK1JMZ3Y+PTRVOGd1RCRJJUQ6Vz4tcjVWKiVqKlc6S3Zlai5McCQ8TS1TR1onOitRX2srdXZPU0xpRW8oPGFEL0s8Q0NjYCdMeD4nPzsrK08nPigpakxSLV51NjhQSG04WkZXZStlajhoOjlyNkwqMC8vYyZpSCZSOHBSYkEjS2ptJXVwVjFnOmFfI1VyN0Z1QSModFJoIy5ZNUsrQD8zPC04bTAkUEVuO0o6cmg2P0k2dUc8LWB3TVUnaXJjcDBMYUVfT3RsTWImMSM2VC4jRkRLdSMxTHcldSUrR00rWCdlP1lMZmpNW1ZPME1idUZwNzs+USYjV0lvKTBARiVxN2MjNFhBWE4tVSZWQjxIRkYqcUwoJC9WLDsoa1haZWpXT2A8WzU/P2V3WSgqOT0ld0RjOyx1PCc5dDNXLShIMXRoMytHXXVjUV1rTHM3ZGYoJC8qSkxdQCp0N0J1X0czXzdtcDc8aWFRak9ALmtMZzt4M0IwbHFwN0hmLF5aZTctIyNAL2M1OE1vKDM7a25wMCUpQTc/LVcrZUknbzgpYjxuS253J0hvOEM9WT5wcUI+MGllJmpoWls/aUxSQEBfQXZBLWlRQyg9a3NSWlJWcDdgLj0rTnBCQyVyaCYzXVI6OFhEbUU1XlY4Tyh4PDxhRy8xTiQjRlgkMFY1WTZ4J2FFckkzSSQ3eCVFYHY8LUJZLCklLT9Qc2YqbD8lQzMubU0oPS9NMDpKeEcnPzdXaEglbydhPC04MGcwTkJ4b08oR0g8ZE1dbi4rJXFAakg/Zi5Vc0oyR2dzJjQ8LWU0NyZLbCtmLy85QGBiKz8uVGVOXyZCOFNzP3Y7XlRyaztmI1l2SmtsJnckXT4tK2s/Jyg8Uzo2OHRxKldvRGZadSc7bU0/OFhbbWE4VyUqYC09O0QuKG5jNy87KWc6VDE9XkokJkJSVigtbFRtTkI2eHFCW0AwKm8uZXJNKjxTV0ZddTI9c3QtKig2dj5eXShILmFSRVpTaSwjMTpbSVhhWkZPbTwtdWkjcVVxMiQjI1JpO3U3NU9LIyhSdGFXLUstRmBTK2NGXXVOYC1LTVElclAvWHJpLkxSY0IjIz1ZTDNCZ00vM01EP0BmJjEnQlctKUp1PEwyNWdsOHVoVm0xaEwkIyMqOCMjIydBMy9Ma0tXKyhecldYPzVXXzhnKWEobSZLOFA+I2JtbVdDTWtrJiNUUmBDLDVkPmcpRjt0LDQ6QF9sOEcvNWg0dlVkJSYlOTUwOlZYRCdRZFdvWS1GJEJ0VXdtZmUkWXFMJzgoUFdYKFA/XkBQbzMkIyNgTVNzP0RXQlovUz4rNCU+ZlgsVld2L3cnS0RgTFA1SWJIO3JUVj5uM2NFSzhVI2JYXWwtL1YrXmxqMzt2bE1iJls1WVE4I3Bla1g5SlAzWFVDNzJMLCw/K05pJmNvN0Fwbk8qNU5LLCgoVy1pOiQsa3AnVURBTyhHMFNxN01WakpzYkl1KSdaLCpbPmJyNWZYXjpGUEFXci1tMktnTDxMVU4wOThrVEYmI2x2bzU4PS92akRvOy47KUthKmhMUiMvaz1yS2J4dVZgPlFfbk42Jzh1VEcmIzFUNWcpdUx2Ojg3M1VwVExnSCsjRmdwSCdfbzE3ODBQaDhLbXhRSjgjSDcyTDRANzY4QFRtJlFoNENCLzVPdm1BJixRJlFiVW9pJGFfJTNNMDFIKTR4N0leJktRVmd0Rm5WKztbUGM+W200ay8vLF0xPyNgVllbSnIqMyYmc2xSZkxpVlpKOl0/PUszU3c9WyQ9dVJCPzN4azQ4QGFlZzxaJzwkIzRIKTYsPmUwalQ2J04jKHElLk89PzJTXXUqKG08LVY4SicoMSlHXVs2OGhXJDUncVtHQyY1amBURT9tJ2VzRkdOUk0paixmZlo/LXF4ODstPmc0dCo6Q0lQL1tRYXA3LzknIygxc2FvN3ctLnFOVWRrSil0Q0YmI0JeO3hHdm4ycjlGRVBGRkZjTEAuaUZOa1R2ZSRtJSNRdlFTOFVAKTJaKzNLOkFLTTVpc1o4OCtkS1EpVzY+SiVDTDxLRT5gLmQqKEJgLW44RDlvSzxVcF1jJFgkKCwpTThadDcvW3Jka3FUZ2wtMGN1R012Jz8+LVhWMXFbJy01aydjQVo2OWU7RF8/JFpQUCZzXis3XSkkKiQjQFFZaTksNVAmIzlyKyQlQ0U9Njg+SzhyMD1kU0MlJShAcDcubTdqaWxRMDInMC1WV0FnPGEvJyczdS49NEwkWSk2ay9LOl9bMz0manZMPEwwQy8yJ3Y6XjstRElCVyxCNEU2ODprWjslPzgoUThCSD1rTzY1Qlc/eFNHJiNAdVUsRFMqLD8uKyhvKCMxdkNTOCNDSEY+VGxHVydiKVRxN1ZUOXFeKl4kJC46Jk5AQCQmKVdIdFBtKjVfck8wJmUlSyYjLTMwaihFNCMnWmIuby8oVHBtJD5LJ2ZAW1B2RmwsaGZJTlROVTZ1JzBwYW83JVhVcDldNS4+JWhgOF89VllieHVlbC5OVFNzSmZMYWNGdTNCJ2xRU3UvbTYtT3FlbThUK29FLS0kMGEva111ajlFd3NHPiV2ZVIqaHZeQkZwUWo6SycjU0osc0ItJyNdKGouTGc5MnJUdy0qbiVALzszOXJySkYsbCNxViVPcnRCZUM2Lyw7cUIzZWJOV1s/LEhxajJMLjFOUCZHalVSPTFEOFFhUzNVcCZAKjl3UD8rbG83Yj9AJSdrNGBwMFokMjIlSzMraUNaaj9YSk40Tm0mK1lGXXVALVckVSVWRVEvLCw+PiMpRDxoI2ApaDA6PFE2OTA5dWErJlZVJW4yOmNHM0ZKLSVAQmotRGdMcmBIdyZIQUtqS2pzZUs8L3hLVCopQixOOVgzXWtyYzEydCdwZ1RWKEx2LXRMW3hnXyU9TV9xN2FeeD83VWJkPiMlOGNZI1laPz0sYFdkeHUvYWUmI3c2KVI4OXRJIzZAcycoNkJmN2EmP1M9XlpJX2tTJmFpYCY9dEU3MkxfRCw7XlIpN1skczxFaCNjJilxLk1YSSUjdjlST2E1RlpPJXNGN3E3TndiJiNwdFVKOmFxSmUkU2w2OCUuRCMjI0VDPjw/LWFGJiNSTlF2Pm84bEtOJTUvJCh2ZGZxNytlYkEjdTFwXW92VUtXJlklcV0nPiQxQC1beGZuJDdaVHA3bU0sRyxLbzdhJkd1JUdbUk14SnNbME1NJXdjaS5MRkRLKSg8Y2BROE4pakVJRiorP1AyYThnJSkkcV1vMmFIOEMmPFNpYkMvcSwoZTp2Oy1iIzZbJE50RFo4NEplMktOdkIjJFA1P3RRM250KDBkPWouTFFmLi9MbDMzKyg7cTNMLXc9OGRYJCNXRiZ1SUpALWJmST4lOl9pMkI1Q3NSOCY5WiYjPW1QRW5tMGZgPCZjKVFMNXVKIyV1JWxKaitELXI7Qm9GJiM0RG9TOTdoNWcpRSNvOiZTNHdlREYsOV5Ib2VgaCpMK19hKk5yTFctMXBHXyYyVWRCODZlJUIvOj0+KU40eGVXLip3ZnQtOyQnNTgtRVNxcjxiP1VJKF8lQFtQNDY+I1VgJzZBUV1tJjYvYFo+I1M/WVkjVmM7cjdVMiYzMjZkPXcmSCMjIyM/VFpgKjQ/Ji5NSz9MUDhWeGc+JFtRWGMlUUp2OTIuKERiKkIpZ2IqQk05ZE0qaEpNQW8qYyYjYjB2PVBqZXJdJGdHJkpYRGYtPidTdHZVNzUwNWw5JEFGdmdZUkleJjxeYjY4P2ojcTlRWDRTTSdSTyMmc0wxSU0uckpmTFVBajIyMV1kIyNEVz1tODN1NTsnYll4LCpTbDBoTChXOzskZG9CJk8vVFE6KFpeeEJkTGpMPExuaTsnJ1guYCQjOCsxR0Q6ayRZVVdzYm44b2doNnJ4WjJaOV0lbmQrPlYjKjhVXzcyTGgrMlE4Q2owaTo2aHAmJEMvOnAoSEs+VDhZW2dIUTRgNCknJEFiKE5vZiVWJzhoTCYjPE5FZHRnKG4nPVMxQShRMS9JJjQoWyVkTWAsSXUnMTpfaEw+U2ZEMDcmNkQ8ZnA4ZEhNNy9nK3RsUE45SipyS2FQY3QmPyd1QkNlbV5qbiU5X0spPCxDNUszcz01ZyZHbUpiKltTWXE3SztUUkxHQ3NNLSQkO1MlOllAcjdBSzBwcHJwTDxMcmgscTdlLyVLV0s6NTBJXittJ3ZpYDM/JVpwKzwtZCskTC1TdjpALm8xOW4kczAmMzk7a247UyVCU3EqJDNXb0pTQ0x3ZVZbYVonTVFJak88NztYLVg7JitkTUx2dSNeVXNHRUM5V0VjW1god0k3IzIuKEYwalYqZVpmPC1RdjNKLWMrSjVBbHJCIyRwKEg2OEx2RUEncTNuMCNtLFtgKjhGdClGY1lnRXVkXUNXZm02OCwoYUxBJEBFRlRnTFhvQnEvVVBscDc6ZFsvO3JfaXg9OlRGYFM1SC1iPExJJkhZKEs9aCMpXUxrJEsxNGxWZm06eCRIPDNeUWw8TWAkT2hhcEJua3VwJ0QjTCRQYl9gTipnXTJlO1gvRHRnLGJzaiZLIzJbLTppWXInX3dnSClOVUlSOGExbiNTP1llaidoOF41OFViWmQrXkZLRCpUQDs2QTdhUUNbSzhkLSh2NkdJJHg6VDwmJ0dwNVVmPkBNLipKOjskLXJ2MjknTV04cU12LXRMcCwnODg2aWFDPUhiKllKb0tKLChqJUs9SGBLLnY5SGdncUJJaVp1J1F2QlQuIz0pMHVrcnVWJi4pMz0oXjFgbypQajQ8LTxhTigoXjcoJyNaMHdLIzVHWEA3dV1bYCpTXjQzOTMzQTRybF1bYCpPNENnTEVsXXYkMVEzQWVGMzdkYlhrLC4pdmojeCdkYDtxZ2JRUiVGVywyKD9MTz1zJVNjNjglTlAnIyNBb3RsOHg9QkUjajFVRChbMyRNKF1VSTJMWDNScEtOQDsvI2YnZi8mX210JkYpWGRGPDl0NClRYS4qa1RMd1EnKFRUQjkueEgnPiNNSitnTHE5LSMjQEh1WlBOMF11Omg3LlQuLkc6OyQvVXNqKFQ3YFE4dFQ3MkxuWWw8LXF4ODstSFY3US0mWGR4JTFhLGhDPTB1K0hsc1Y+bnVJUUwtNTxOPylOQlMpUU4qX0ksPyYpMidJTSVMM0kpWCgoZS9kbDImOCc8TTpeI00qUStbVC5YcmkuTFlTM3YlZkZgNjhoO2ItWFsvRW4nQ1IucTdFKXAnL2tsZTJITSx1O14lT0tDLU4rTGwlRjlDRjxOZideI3QyTCw7MjdXOjBPQDYjI1U2Vzc6JHJKZkxXSGokIyl3b3FCZWZJWi5QSzxiKnQ3ZWQ7cCpfbTs0RXhLI2hAJl0+Xz5Aa1hRdE1hY2ZELm0tVkFiODtJUmVNMyR3ZjAnJ2hyYSpzbzU2OCdJcCZ2UnM4NDknTVJZU3AlOnQ6aDVxU2d3cEVyJEI+USw7cyhDIyQpYHN2UXVGJCMjLUQsIyMsZzY4QDJbVDsuWFNkTjlRZSlycHQuX0stIzV3RilzUCcjI3AjQzBjJS1HYiVoZCs8LWonQWkqeCYmSE1rVF1DJ09TbCMjNVJHW0pYYUhOO2QndUEjeC5fVTsuYFBVQChaM2R0NHIxNTJAOnYsJ1IuU2ondyMwPC07a1BJKUZmSiYjQVlKJiMvLyk+LWs9bT0qWG5LJD49KTcyTF0wSSU+Lkc2OTBhOiQjIzwsKTs/OzcyIz94OStkO15WJzk7allAOyliciNxXllRcHg6WCNUZSRaXic9LT1iR2hMZjpENiZiTndaOS1aRCNuXjlIaExNcjVHOyddZCY2J3dZbVRGbUw8TEQpRl4lW3RDJzg7KzlFI0MkZyUjNVk+cTl3ST5QKDltSVs+a0MtZWtMQy9SJkNIK3MnQjtLLU02JEVCJWlzMDA6K0E0Wzd4a3MuTHJOazAmRSl3SUxZRkAyTCcwTmIkK3B2PCgyLjc2OC9GclkmaCReM2kmQCtHJUpUJzwtLHZgMztfKUk5TV5BRV1DTj9DbDJBWmcrJTRpVHBUMzxuLSYlSCViPEZEajJNPGhIPSZFaDwyTGVuJGIqYVRYPS04UXhOKWsxMUlNMWNeaiU5czxMPE5GU28pQj8rPC0oR3hzRixeLUVoQCQ0ZFhoTiQrI3J4SzgnamUnRDdrYGU7KTJwWXdQQSdfcDkmQF4xOG1sMV5bQGc0dCpbSk9hKls9UXA3KHFKX29PTF4oJzdmQiZIcS06c2Ysc05qOHhxXj4kVTRPXUdLeCdtOSliQHA3WXN2SzN3XllSLUNkUSo6SXI8KCR1JikjKCY/TDlSZzNIKTRmaUVwXmlJOU84S25UaixdSD9EKnI3J007UHdaOUswRV5rJi1jcEk7LnAvNl92d29GTVY8LT4jJVhpLkx4Vm5yVSg0JjgvUCs6aExTS2okI1UlXTQ5dCdJOnJnTWknRkxAYTowWS11QVszOScsKHZibWEqaFUlPC1TUkZgVHQ6NTQyUl9WViRwQFtwOERWW0EsPzE4MzlGV2RGPFRkZEY8OUFoLTYmOXRXb0RsaF0mMVNwR01xPlRpMU8qSCYjKEFMOFtfUCUuTT52Xi0pKXFPVCpGNUNxMGBZZSUrJEI2aTo3QDBJWDxOK1QrME1sTUJQUSpWaj5Tc0Q8VTRKSFk4a0QyKTJmVS9NIyRlLilUNCxfPThoTGltWyYpOz9Va0snLXg/Jyg6c2lJZkw8JHBGTWBpPD8lVyhtR0RITSU+aVdQLCMjUGAlL0w8ZVhpOkBaOUMuN289QChwWGRBTy9OTFE4bFBsK0hQT1FhOHdEOD1eR2xQYThUS0kxQ2poc0NUU0xKTScvV2w+LVMocXclc2YvQCUjQjY7L1U3S111WmJpXk9jXjJuPGJoUG1Va013PiV0PCknbUVWRScnbmBXbkpyYSReVEt2WDVCPjtfYVNFSycsKGh3YTA6aTRHPy5CY2kuKFhbP2IqKCQsPS1uPC5RJWAoWD0/K0BBbSpKczAmPTNiaDhLXW1MPExvTnMnNiwnODVgMD90LydfVTU5QF1kZEY8I0xkRjxlV2RGPE91Ti80NXJZPC1MQCYjK2ZtPjY5PUxiLE9jWlYvKTtUVG04Vkk7PyVPdEo8KGI0bXE3TTY6dT9LUmRGPGdSQDJMPUZOVS08YlsoOWMvTUwzbTtaWyRvRjNnKUdBV3FwQVJjPTxST3U3Y0w1bDstW0FdJS8rZnNkO2wjU2FmVC9mKlddMD1PJyQoVGI8WykqQGU3NzVSLTpZb2IlZyo+bCo6eFA/WWIuNSkld19JPzd1azVKQytGUyhtI2knay4nYTBpKTk8N2InZnMnNTlocSQqNVVodiMjcGleOCtoSUVCRmBudm9gOydsMC5eUzE8LXdVSzIvQ29oNThLS2hMak09U08qcmZPYCtxQ2BXLU9uLj1BSjU2Pj5pMkAyTEg2QTomNXFgPzlJM0BAJzA0JnAyL0xWYSpULTQ8LWkzO005VXZaZCtONz5iKmVJd2c6Q0MpYzw+bk8mIzxJR2U7X18udGhqWmw8JXcoV2syeG1wNFFASSNJOSxERl11Ny1QPS4tXzpZSl1hU0BWPzYqQygpZE9wNzpXTCxiJjNSZy8uY21NOSZyXj4kKD4uWi1JJkooUTBIZDVRJTdDby1iYC1jPE4oNnJAaXArQXVySzxtODZRSXRoKiN2Oy1PQnFpK0w3d0RFLUlyOEtbJ20rRERTTHdLJi8uPy1WJVVfJTM6cUtOdSRfYipCLWtwN05hRCdRZFdRUEtZcVtAPlApaEk7Kl9GXXVgUmJbLmo4X1EvPCY+dXUrVnNIJHNNOVRBJT8pKHZtSjgwKSxQN0U+KXRqRCUyTD0tdCNmS1slYHY9UTg8RmZOa2dnXm9JYmFoKiM4L1F0JEYmOksqLShOLycrMXZNQix1KCktYS5WVVUqI1tlJWdBQU8oUz5XbEEyKTtTYT5nWG04WUJgMWRASyNuXTc2LWEkVSxtRjxmWF1pZHFkKTwzLF1KN0ptVzRgNl11a3M9NC03MkwoakVrKzpiSjBNXnEtOERtX1o/MG9sUDFDOVNhJkhbZCZjJG9vUVVqXUV4ZCozWk1ALVdHVzIlcycsQi1fTSU+JVVsOiMvJ3hvRk05UVgtJC5RTic+WyUkWiR1RjZwQTZLaTJPNTo4dyp2UDE8LTFgW0csKS1tIz4wYFAmI2ViIy4zaSlydEI2MShvJyQ/WDNCPC9SOTA7ZVpdJU5jcTstVGxdI0Y+MlFmdF5hZV81dEtMOU1VZTliKnNMRVE5NUMmYD1HP0BNaj13aConM0U+PS08KUd0Kkl3KSdRRzpgQEl3T2Y3Jl0xaSdTMDFCK0V2L05hYyM5Uzs9O1lRcGdfNlVgKmtWWTM5eEssWy82QWo3OicxQm0tXzFFWWZhMStvJm80aHA3S05fUShPbElvQFMlO2pWZG4wJzE8VmM1Mj11YDNeby1uMSdnNHY1OEhqJjZfdDckIyM/TSljPCRiZ1FfJ1NZKCgteGtBI1koLHAnSDlySVZZLWIsJyViQ1BGNy5KPFVwXiwoZFUxVlkqNSNXa1RVPmgxOXcsV1FoTEkpM1MjZiQyKGViLGpyKmI7M1Z3XSo3TkglJGM0VnMsZUQ5PlhXOD9OXW8rKCpwZ0MlLzcyTFYtdTxIcCwzQGVeOVVCMUorYWs5LVROL21oS1BnK0FKWWQkTWx2QUZfakNLKi5PLV4oNjNhZE1ULT5XJWlld1M4VzZtMnJ0Q3BvJ1JTMVI4ND1AcGFUS3QpPj0lJjFbKSp2cCd1K3gsVnJ3TjsmXWt1TzlKRGJnPXBPJEoqLmpWZTt1J20wZHI5bCw8KndNSypPZT1nOGxWX0tFQkZrTydvVV1ePVstNzkyI29rLClpXWxSOHFRMm9BOHdjUkNaXjd3L05qaDs/LnN0WD9RMT5TMXE0Qm4kKUsxPC1yR2RPJyRXci5MYy5DRykkLypKTDR0TlIvLFNWTzMsYVV3J0RKTjopU3M7d0duOUEzMmlqdyVGTCtaMEZuLlU5O3JlU3EpYm1JMzJVPT01QUx1RyYjVmYxMzk4L3BWbzEqYy0oYVkxNjhvPGBKc1Niay0sMU47JD4wOk9VYXMoMzo4Wjk3MkxTZkY4ZWI9Yy07PlNQdzcuNmhuM21gOV5Ya24oci5xU1swO1QlJlFjPStTVFJ4WCdxMUJOazMmKmV1MjsmOHEkJng+USNRN15UZis2PChkJVpWbWoyYkRpJS4zTDJuKzRXJyRQaURERylnLHIlKz8sJEA/dW91NXRTZTJhTl9BUVUqPGhgZS1HSTcpP09LMkEuZDdfYyk/d1E1QVNAREwzciM3ZlNrZ2w2LSsrRDonQSx1cTdTdmxCJHBjcEgncTNuMCNfJWRZI3hDcHItbDxGME5SQC0jI0ZFVjZOVEY2IyMkbDg0TjF3P0FPPidJQU9VUlEjI1ZeRnYtWEZiR003RmwoTjwzRGhMR0YlcS4xckMkIzpUX18mUGk2OCUweGlfJltxRkooNzdqXyZKV29GLlY3MzUmVCxbUio6eEZSKks1Pj4jYGJXLT80TmVfJjZOZV8mNk5lXyZuYGtyLSNHSmNNNlg7dU02WDt1TSguYS4uXjJUa0wlb1IoIzt1LlQlZkFyJTR0SjgmPjwxPUdIWl8rbTkvI0gxRl5SI1NDIypOPUJBOShEP3ZbVWlGWT4+XjhwLEtLRi5XXUwyOXVMa0xsdS8rNFQ8WG9JQiZoeD1UMVBjRGFCJjtISCstQUZyPyhtOUhaVilGS1M4SkN3O1NEPTZbXi9EWlVMYEVVRGZdR0dsRyY+dyQpRi4vXm4zK3JsbytEQjs1c0lZR05rK2kxdC02OUpnLS0wcGFvN1NtI0spcGRIVyY7THVETkhASD4jL1gtVEkoO1A+IyxHYz4jMFN1PiM0YDE/IzhsQz8jPHhVPyNALmk/I0Q6JUAjSEY3QCNMUklAI1BfW0AjVGtuQCNYdypBI10tPUEjYTlPQSNkPEYmIyo7RyMjLkdZIyMyU2wjIzZgKCQjOmw6JCM+eEwkI0IuYCQjRjpyJCNKRi4lI05SQCUjUl9SJSNWa2UlI1p3dyUjXy00JiMzXlJoJVNmbHItaydNUy5vPy41L3NXZWwvd3BFTTAlMycvMSlLXmYxLWQ+RzIxJnYoMzU+VmAzOVY3QTQ9b254NEExT1k1RUkwOzZJYmdyNk0kSFM3UTwpNThDNXcsO1dvQSojWyVUKiNgMWcqI2Q9IysjaEk1KyNsVUcrI3BiWSsjdG5sKyN4JCksIyYxOywjKj1NLCMuSWAsIzJVciwjNmIuLSM7d1tII2lRdEEjbV4wQiNxakJCI3V2VEIjIy1oQiMnOSRDIytFNkMjL1FIQyMzXlpDIzdqbUMjO3YpRCM/LDxEI0M4TkQjR0RhRCNLUHNEI09dL0UjZzFBNSNLQSoxI2dDMTcjTUdkOyM4KDAyI0wtZDMjcldNNCNIZ2ExIyw8dzAjVC5qPCNPIycyI0NZTjEjcWFeOiNfNG0zI29ALz0jZUc4PSN0OEo1I2ArNzgjNHVJLSNtM0IyI1NCWzgjUTBAOCNpWyo5I2lPbjgjMU5tOyNec045I3FoPDkjOj14LSNQO0syIyQlWDkjYkMrLiNSZzs8I21OPS4jTVRGLiNSWk8uIzI/KTQjWSMoLyNbKTEvI2I7TC8jZEFVLyMwU3Y7I2xZJDAjbmAtMCNzZjYwIyhGMjQjd3JIMCMlL2UwI1RtRDwjJUpTTUZvdmU6Q1RCRVhJOjxlaDJnKUIsM2gyXkczaTsjZDNqRD4pNGtNWUQ0bFZ1YDRtYDomNW5pVUE1QChBNUJBMV1QQkI6eGxCQ0M9MkNETFhNQ0VVdGlDZiYwZzIndE4/UEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQLXFla0NgLjlrRWdeK0Yka3dWaUZKVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVvLF48LTI4WkknTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cDs3cS0jbExZSTp4dkQ9IwBB9v8ACwpAQAAAQEEAAJhBAEGKgAELugFQQQAAAAAAAOBAAACAQQAAgD8AAABBAAD4QQAAAAAAALhBAAC4QQAAMEEAADBBAACoQQAAAAAAABBBAAC4QQAAgEAAADBBAABcQgAAkEEAALhBAAAQQQAAMEEAAIBAAACSQgAAAAAAAIhBAACIQQAAAEEAAABBAABcQgAAAAAAAIhBAACIQQAAAEEAAABBAAC2QgAAAAAAAIhBAACwQQAAoEAAAAAAIAD/AAAw/zDwMf8xAP/v/wBOr58AQdCBAQuXJyAA/wAAMP8w8DH/MQD/7/8AAAEAAgAEAAEAAQABAAEAAgABAAMAAgABAAIAAgABAAEAAQABAAEABQACAAEAAgADAAMAAwACAAIABAABAAEAAQACAAEABQACAAMAAQACAAEAAgABAAEAAgABAAEAAgACAAEABAABAAEAAQABAAUACgABAAIAEwACAAEAAgABAAIAAQACAAEAAgABAAUAAQAGAAMAAgABAAIAAgABAAEAAQAEAAgABQABAAEABAABAAEAAwABAAIAAQAFAAEAAgABAAEAAQAKAAEAAQAFAAIABAAGAAEABAACAAIAAgAMAAIAAQABAAYAAQABAAEABAABAAEABAAGAAUAAQAEAAIAAgAEAAoABwABAAEABAACAAQAAgABAAQAAwAGAAoADAAFAAcAAgAOAAIACQABAAEABgAHAAoABAAHAA0AAQAFAAQACAAEAAEAAQACABwABQAGAAEAAQAFAAIABQAUAAIAAgAJAAgACwACAAkAEQABAAgABgAIABsABAAGAAkAFAALABsABgBEAAIAAgABAAEAAQACAAEAAgACAAcABgALAAMAAwABAAEAAwABAAIAAQABAAEAAQABAAMAAQABAAgAAwAEAAEABQAHAAIAAQAEAAQACAAEAAIAAQACAAEAAQAEAAUABgADAAYAAgAMAAMAAQADAAkAAgAEAAMABAABAAUAAwADAAEAAwAHAAEABQABAAEAAQABAAIAAwAEAAUAAgADAAIABgABAAEAAgABAAcAAQAHAAMABAAFAA8AAgACAAEABQADABYAEwACAAEAAQABAAEAAgAFAAEAAQABAAYAAQABAAwACAACAAkAEgAWAAQAAQABAAUAAQAQAAEAAgAHAAoADwABAAEABgACAAQAAQACAAQAAQAGAAEAAQADAAIABAABAAYABAAFAAEAAgABAAEAAgABAAoAAwABAAMAAgABAAkAAwACAAUABwACABMABAADAAYAAQABAAEAAQABAAQAAwACAAEAAQABAAIABQADAAEAAQABAAIAAgABAAEAAgABAAEAAgABAAMAAQABAAEAAwAHAAEABAABAAEAAgABAAEAAgABAAIABAAEAAMACAABAAEAAQACAAEAAwAFAAEAAwABAAMABAAGAAIAAgAOAAQABgAGAAsACQABAA8AAwABABwABQACAAUABQADAAEAAwAEAAUABAAGAA4AAwACAAMABQAVAAIABwAUAAoAAQACABMAAgAEABwAHAACAAMAAgABAA4ABAABABoAHAAqAAwAKAADADQATwAFAA4AEQADAAIAAgALAAMABAAGAAMAAQAIAAIAFwAEAAUACAAKAAQAAgAHAAMABQABAAEABgADAAEAAgACAAIABQAcAAEAAQAHAAcAFAAFAAMAHQADABEAGgABAAgABAAbAAMABgALABcABQADAAQABgANABgAEAAGAAUACgAZACMABwADAAIAAwADAA4AAwAGAAIABgABAAQAAgADAAgAAgABAAEAAwADAAMABAABAAEADQACAAIABAAFAAIAAQAOAA4AAQACAAIAAQAEAAUAAgADAAEADgADAAwAAwARAAIAEAAFAAEAAgABAAgACQADABMABAACAAIABAARABkAFQAUABwASwABAAoAHQBnAAQAAQACAAEAAQAEAAIABAABAAIAAwAYAAIAAgACAAEAAQACAAEAAwAIAAEAAQABAAIAAQABAAMAAQABAAEABgABAAUAAwABAAEAAQADAAQAAQABAAUAAgABAAUABgANAAkAEAABAAEAAQABAAMAAgADAAIABAAFAAIABQACAAIAAwAHAA0ABwACAAIAAQABAAEAAQACAAMAAwACAAEABgAEAAkAAgABAA4AAgAOAAIAAQASAAMABAAOAAQACwApAA8AFwAPABcAsAABAAMABAABAAEAAQABAAUAAwABAAIAAwAHAAMAAQABAAIAAQACAAQABAAGAAIABAABAAkABwABAAoABQAIABAAHQABAAEAAgACAAMAAQADAAUAAgAEAAUABAABAAEAAgACAAMAAwAHAAEABgAKAAEAEQABACwABAAGAAIAAQABAAYABQAEAAIACgABAAYACQACAAgAAQAYAAEAAgANAAcACAAIAAIAAQAEAAEAAwABAAMAAwAFAAIABQAKAAkABAAJAAwAAgABAAYAAQAKAAEAAQAHAAcABAAKAAgAAwABAA0ABAADAAEABgABAAMABQACAAEAAgARABAABQACABAABgABAAQAAgABAAMAAwAGAAgABQALAAsAAQADAAMAAgAEAAYACgAJAAUABwAEAAcABAAHAAEAAQAEAAIAAQADAAYACAAHAAEABgALAAUABQADABgACQAEAAIABwANAAUAAQAIAFIAEAA9AAEAAQABAAQAAgACABAACgADAAgAAQABAAYABAACAAEAAwABAAEAAQAEAAMACAAEAAIAAgABAAEAAQABAAEABgADAAUAAQABAAQABgAJAAIAAQABAAEAAgABAAcAAgABAAYAAQAFAAQABAADAAEACAABAAMAAwABAAMAAgACAAIAAgADAAEABgABAAIAAQACAAEAAwAHAAEACAACAAEAAgABAAUAAgAFAAMABQAKAAEAAgABAAEAAwACAAUACwADAAkAAwAFAAEAAQAFAAkAAQACAAEABQAHAAkACQAIAAEAAwADAAMABgAIAAIAAwACAAEAAQAgAAYAAQACAA8ACQADAAcADQABAAMACgANAAIADgABAA0ACgACAAEAAwAKAAQADwACAA8ADwAKAAEAAwAJAAYACQAgABkAGgAvAAcAAwACAAMAAQAGAAMABAADAAIACAAFAAQAAQAJAAQAAgACABMACgAGAAIAAwAIAAEAAgACAAQAAgABAAkABAAEAAQABgAEAAgACQACAAMAAQABAAEAAQADAAUABQABAAMACAAEAAYAAgABAAQADAABAAUAAwAHAA0AAgAFAAgAAQAGAAEAAgAFAA4ABgABAAUAAgAEAAgADwAFAAEAFwAGAD4AAgAKAAEAAQAIAAEAAgACAAoABAACAAIACQACAAEAAQADAAIAAwABAAUAAwADAAIAAQADAAgAAQABAAEACwADAAEAAQAEAAMABwABAA4AAQACAAMADAAFAAIABQABAAYABwAFAAcADgALAAEAAwABAAgACQAMAAIAAQALAAgABAAEAAIABgAKAAkADQABAAEAAwABAAUAAQADAAIABAAEAAEAEgACAAMADgALAAQAHQAEAAIABwABAAMADQAJAAIAAgAFAAMABQAUAAcAEAAIAAUASAAiAAYABAAWAAwADAAcAC0AJAAJAAcAJwAJAL8AAQABAAEABAALAAgABAAJAAIAAwAWAAEAAQABAAEABAARAAEABwAHAAEACwAfAAoAAgAEAAgAAgADAAIAAQAEAAIAEAAEACAAAgADABMADQAEAAkAAQAFAAIADgAIAAEAAQADAAYAEwAGAAUAAQAQAAYAAgAKAAgABQABAAIAAwABAAUABQABAAsABgAGAAEAAwADAAIABgADAAgAAQABAAQACgAHAAUABwAHAAUACAAJAAIAAQADAAQAAQABAAMAAQADAAMAAgAGABAAAQAEAAYAAwABAAoABgABAAMADwACAAkAAgAKABkADQAJABAABgACAAIACgALAAQAAwAJAAEAAgAGAAYABQAEAB4AKAABAAoABwAMAA4AIQAGAAMABgAHAAMAAQADAAEACwAOAAQACQAFAAwACwAxABIAMwAfAIwAHwACAAIAAQAFAAEACAABAAoAAQAEAAQAAwAYAAEACgABAAMABgAGABAAAwAEAAUAAgABAAQAAgA5AAoABgAWAAIAFgADAAcAFgAGAAoACwAkABIAEAAhACQAAgAFAAUAAQABAAEABAAKAAEABAANAAIABwAFAAIACQADAAQAAQAHACsAAwAHAAMACQAOAAcACQABAAsAAQABAAMABwAEABIADQABAA4AAQADAAYACgBJAAIAAgAeAAYAAQALABIAEwANABYAAwAuACoAJQBZAAcAAwAQACIAAgACAAMACQABAAcAAQABAAEAAgACAAQACgAHAAMACgADAAkABQAcAAkAAgAGAA0ABwADAAEAAwAKAAIABwACAAsAAwAGABUANgBVAAIAAQAEAAIAAgABACcAAwAVAAIAAgAFAAEAAQABAAQAAQABAAMABAAPAAEAAwACAAQABAACAAMACAACABQAAQAIAAcADQAEAAEAGgAGAAIACQAiAAQAFQA0AAoABAAEAAEABQAMAAIACwABAAcAAgAeAAwALAACAB4AAQABAAMABgAQAAkAEQAnAFIAAgACABgABwABAAcAAwAQAAkADgAsAAIAAQACAAEAAgADAAUAAgAEAAEABgAHAAUAAwACAAYAAQALAAUACwACAAEAEgATAAgAAQADABgAHQACAAEAAwAFAAIAAgABAA0ABgAFAAEALgALAAMABQABAAEABQAIAAIACgAGAAwABgADAAcACwACAAQAEAANAAIABQABAAEAAgACAAUAAgAcAAUAAgAXAAoACAAEAAQAFgAnAF8AJgAIAA4ACQAFAAEADQAFAAQAAwANAAwACwABAAkAAQAbACUAAgAFAAQABAA/ANMAXwACAAIAAgABAAMABQACAAEAAQACAAIAAQABAAEAAwACAAQAAQACAAEAAQAFAAIAAgABAAEAAgADAAEAAwABAAEAAQADAAEABAACAAEAAwAGAAEAAQADAAcADwAFAAMAAgAFAAMACQALAAQAAgAWAAEABgADAAgABwABAAQAHAAEABAAAwADABkABAAEABsAGwABAAQAAQACAAIABwABAAMABQACABwACAACAA4AAQAIAAYAEAAZAAMAAwADAA4AAwADAAEAAQACAAEABAAGAAMACAAEAAEAAQABAAIAAwAGAAoABgACAAMAEgADAAIABQAFAAQAAwABAAUAAgAFAAQAFwAHAAYADAAGAAQAEQALAAkABQABAAEACgAFAAwAAQABAAsAGgAhAAcAAwAGAAEAEQAHAAEABQAMAAEACwACAAQAAQAIAA4AEQAXAAEAAgABAAcACAAQAAsACQAGAAUAAgAGAAQAEAACAAgADgABAAsACAAJAAEAAQABAAkAGQAEAAsAEwAHAAIADwACAAwACAA0AAcABQATAAIAEAAEACQACAABABAACAAYABoABAAGAAIACQAFAAQAJAADABwADAAZAA8AJQAbABEADAA7ACYABQAgAH8AAQACAAkAEQAOAAQAAQACAAEAAQAIAAsAMgAEAA4AAgATABAABAARAAUABAAFABoADAAtAAIAFwAtAGgAHgAMAAgAAwAKAAIAAgADAAMAAQAEABQABwACAAkABgAPAAIAFAABAAMAEAAEAAsADwAGAIYAAgAFADsAAQACAAIAAgABAAkAEQADABoAiQAKANMAOwABAAIABAABAAQAAQABAAEAAgAGAAIAAwABAAEAAgADAAIAAwABAAMABAAEAAIAAwADAAEABAADAAEABwACAAIAAwABAAIAAQADAAMAAwACAAIAAwACAAEAAwAOAAYAAQADAAIACQAGAA8AGwAJACIAkQABAAEAAgABAAEAAQABAAIAAQABAAEAAQACAAIAAgADAAEAAgABAAEAAQACAAMABQAIAAMABQACAAQAAQADAAIAAgACAAwABAABAAEAAQAKAAQABQABABQABAAQAAEADwAJAAUADAACAAkAAgAFAAQAAgAaABMABwABABoABAAeAAwADwAqAAEABgAIAKwAAQABAAQAAgABAAEACwACAAIABAACAAEAAgABAAoACAABAAIAAQAEAAUAAQACAAUAAQAIAAQAAQADAAQAAgABAAYAAgABAAMABAABAAIAAQABAAEAAQAMAAUABwACAAQAAwABAAEAAQADAAMABgABAAIAAgADAAMAAwACAAEAAgAMAA4ACwAGAAYABAAMAAIACAABAAcACgABACMABwAEAA0ADwAEAAMAFwAVABwANAAFABoABQAGAAEABwAKAAIABwA1AAMAAgABAAEAAQACAKMAFAIBAAoACwABAAMAAwAEAAgAAgAIAAYAAgACABcAFgAEAAIAAgAEAAIAAQADAAEAAwADAAUACQAIAAIAAQACAAgAAQAKAAIADAAVABQADwBpAAIAAwABAAEAAwACAAMAAQABAAIABQABAAQADwALABMAAQABAAEAAQAFAAQABQABAAEAAgAFAAMABQAMAAEAAgAFAAEACwABAAEADwAJAAEABAAFAAMAGgAIAAIAAQADAAEAAQAPABMAAgAMAAEAAgAFAAIABwACABMAAgAUAAYAGgAHAAUAAgACAAcAIgAVAA0ARgACAIAAAQABAAIAAQABAAIAAQABAAMAAgACAAIADwABAAQAAQADAAQAKgAKAAYAAQAxAFUACAABAAIAAQABAAQABAACAAMABgABAAUABwAEAAMA0wAEAAEAAgABAAIABQABAAIABAACAAIABgAFAAYACgADAAQAMABkAAYAAgAQACgBBQAbAIMBAgACAAMABwAQAAgABQAmAA8AJwAVAAkACgADAAcAOwANABsAFQAvAAUAFQAGAEHyqAELsR4BAAIABAABAAEAAQABAAIAAQAGAAIAAgABAAgABQAHAAsAAQACAAoACgAIAAIABAAUAAIACwAIAAIAAQACAAEABgACAAEABwAFAAMABwABAAEADQAHAAkAAQAEAAYAAQACAAEACgABAAEACQACAAIABAAFAAYADgABAAEACQADABIABQAEAAIAAgAKAAcAAQABAAEAAwACAAQAAwAXAAIACgAMAAIADgACAAQADQABAAYACgADAAEABwANAAYABAANAAUAAgADABEAAgACAAUABwAGAAQAAQAHAA4AEAAGAA0ACQAPAAEAAQAHABAABAAHAAEAEwAJAAIABwAPAAIABgAFAA0AGQAEAA4ADQALABkAAQABAAEAAgABAAIAAgADAAoACwADAAMAAQABAAQABAACAAEABAAJAAEABAADAAUABQACAAcADAALAA8ABwAQAAQABQAQAAIAAQABAAYAAwADAAEAAQACAAcABgAGAAcAAQAEAAcABgABAAEAAgABAAwAAwADAAkABQAIAAEACwABAAIAAwASABQABAABAAMABgABAAcAAwAFAAUABwACAAIADAADAAEABAACAAMAAgADAAsACAAHAAQAEQABAAkAGQABAAEABAACAAIABAABAAIABwABAAEAAQADAAEAAgAGABAAAQACAAEAAQADAAwAFAACAAUAFAAIAAcABgACAAEAAQABAAEABgACAAEAAgAKAAEAAQAGAAEAAwABAAIAAQAEAAEADAAEAAEAAwABAAEAAQABAAEACgAEAAcABQANAAEADwABAAEAHgALAAkAAQAPACYADgABACAAEQAUAAEACQAfAAIAFQAJAAQAMQAWAAIAAQANAAEACwAtACMAKwA3AAwAEwBTAAEAAwACAAMADQACAAEABwADABIAAwANAAgAAQAIABIABQADAAcAGQAYAAkAGAAoAAMAEQAYAAIAAQAGAAIAAwAQAA8ABgAHAAMADAABAAkABwADAAMAAwAPABUABQAQAAQABQAMAAsACwADAAYAAwACAB8AAwACAAEAAQAXAAYABgABAAQAAgAGAAUAAgABAAEAAwADABYAAgAGAAIAAwARAAMAAgAEAAUAAQAJAAUAAQABAAYADwAMAAMAEQACAA4AAgAIAAEAFwAQAAQAAgAXAAgADwAXABQADAAZABMALwALABUAQQAuAAQAAwABAAUABgABAAIABQAaAAIAAQABAAMACwABAAEAAQACAAEAAgADAAEAAQAKAAIAAwABAAEAAQADAAYAAwACAAIABgAGAAkAAgACAAIABgACAAUACgACAAQAAQACAAEAAgACAAMAAQABAAMAAQACAAkAFwAJAAIAAQABAAEAAQAFAAMAAgABAAoACQAGAAEACgACAB8AGQADAAcABQAoAAEADwAGABEABwAbALQAAQADAAIAAgABAAEAAQAGAAMACgAHAAEAAwAGABEACAAGAAIAAgABAAMABQAFAAgAEAAOAA8AAQABAAQAAQACAAEAAQABAAMAAgAHAAUABgACAAUACgABAAQAAgAJAAEAAQALAAYAAQAsAAEAAwAHAAkABQABAAMAAQABAAoABwABAAoABAACAAcAFQAPAAcAAgAFAAEACAADAAQAAQADAAEABgABAAQAAgABAAQACgAIAAEABAAFAAEABQAKAAIABwABAAoAAQABAAMABAALAAoAHQAEAAcAAwAFAAIAAwAhAAUAAgATAAMAAQAEAAIABgAfAAsAAQADAAMAAwABAAgACgAJAAwACwAMAAgAAwAOAAgABgALAAEABAApAAMAAQACAAcADQABAAUABgACAAYADAAMABYABQAJAAQACAAJAAkAIgAGABgAAQABABQACQAJAAMABAABAAcAAgACAAIABgACABwABQADAAYAAQAEAAYABwAEAAIAAQAEAAIADQAGAAQABAADAAEACAAIAAMAAgABAAUAAQACAAIAAwABAAsACwAHAAMABgAKAAgABgAQABAAFgAHAAwABgAVAAUABAAGAAYAAwAGAAEAAwACAAEAAgAIAB0AAQAKAAEABgANAAYABgATAB8AAQANAAQABAAWABEAGgAhAAoABAAPAAwAGQAGAEMACgACAAMAAQAGAAoAAgAGAAIACQABAAkABAAEAAEAAgAQAAIABQAJAAIAAwAIAAEACAADAAkABAAIAAYABAAIAAsAAwACAAEAAQADABoAAQAHAAUAAQALAAEABQADAAUAAgANAAYAJwAFAAEABQACAAsABgAKAAUAAQAPAAUAAwAGABMAFQAWAAIABAABAAYAAQAIAAEABAAIAAIABAACAAIACQACAAEAAQABAAQAAwAGAAMADAAHAAEADgACAAQACgACAA0AAQARAAcAAwACAAEAAwACAA0ABwAOAAwAAwABAB0AAgAIAAkADwAOAAkADgABAAMAAQAGAAUACQALAAMAJgArABQABwAHAAgABQAPAAwAEwAPAFEACAAHAAEABQBJAA0AJQAcAAgACAABAA8AEgAUAKUAHAABAAYACwAIAAQADgAHAA8AAQADAAMABgAEAAEABwAOAAEAAQALAB4AAQAFAAEABAAOAAEABAACAAcANAACAAYAHQADAAEACQABABUAAwAFAAEAGgADAAsADgALAAEAEQAFAAEAAgABAAMAAgAIAAEAAgAJAAwAAQABAAIAAwAIAAMAGAAMAAcABwAFABEAAwADAAMAAQAXAAoABAAEAAYAAwABABAAEQAWAAMACgAVABAAEAAGAAQACgACAAEAAQACAAgACAAGAAUAAwADAAMAJwAZAA8AAQABABAABgAHABkADwAGAAYADAABABYADQABAAQACQAFAAwAAgAJAAEADAAcAAgAAwAFAAoAFgA8AAEAAgAoAAQAPQA/AAQAAQANAAwAAQAEAB8ADAABAA4AWQAFABAABgAdAA4AAgAFADEAEgASAAUAHQAhAC8AAQARAAEAEwAMAAIACQAHACcADAADAAcADAAnAAMAAQAuAAQADAADAAgACQAFAB8ADwASAAMAAgACAEIAEwANABEABQADAC4AfAANADkAIgACAAUABAAFAAgAAQABAAEABAADAAEAEQAFAAMABQADAAEACAAFAAYAAwAbAAMAGgAHAAwABwACABEAAwAHABIATgAQAAQAJAABAAIAAQAGAAIAAQAnABEABwAEAA0ABAAEAAQAAQAKAAQAAgAEAAYAAwAKAAEAEwABABoAAgAEACEAAgBJAC8ABwADAAgAAgAEAA8AEgABAB0AAgApAA4AAQAVABAAKQAHACcAGQANACwAAgACAAoAAQANAAcAAQAHAAMABQAUAAQACAACADEAAQAKAAYAAQAGAAcACgAHAAsAEAADAAwAFAAEAAoAAwABAAIACwACABwACQACAAQABwACAA8AAQAbAAEAHAARAAQABQAKAAcAAwAYAAoACwAGABoAAwACAAcAAgACADEAEAAKABAADwAEAAUAGwA9AB4ADgAmABYAAgAHAAUAAQADAAwAFwAYABEAEQADAAMAAgAEAAEABgACAAcABQABAAEABQABAAEACQAEAAEAAwAGAAEACAACAAgABAAOAAMABQALAAQAAQADACAAAQATAAQAAQANAAsABQACAAEACAAGAAgAAQAGAAUADQADABcACwAFAAMAEAADAAkACgABABgAAwDGADQABAACAAIABQAOAAUABAAWAAUAFAAEAAsABgApAAEABQACAAIACwAFAAIAHAAjAAgAFgADABIAAwAKAAcABQADAAQAAQAFAAMACAAJAAMABgACABAAFgAEAAUABQADAAMAEgAXAAIABgAXAAUAGwAIAAEAIQACAAwAKwAQAAUAAgADAAYAAQAUAAQAAgAJAAcAAQALAAIACgADAA4AHwAJAAMAGQASABQAAgAFAAUAGgAOAAEACwARAAwAKAATAAkABgAfAFMAAgAHAAkAEwBOAAwADgAVAEwADABxAE8AIgAEAAEAAQA9ABIAVQAKAAIAAgANAB8ACwAyAAYAIQCfALMABgAGAAcABAAEAAIABAACAAUACAAHABQAIAAWAAEAAwAKAAYABwAcAAUACgAJAAIATQATAA0AAgAFAAEABAAEAAcABAANAAMACQAfABEAAwAaAAIABgAGAAUABAABAAcACwADAAQAAgABAAYAAgAUAAQAAQAJAAIABgADAAcAAQABAAEAFAACAAMAAQAGAAIAAwAGAAIABAAIAAEABQANAAgABAALABcAAQAKAAYAAgABAAMAFQACAAIABAAYAB8ABAAKAAoAAgAFAMAADwAEABAABwAJADMAAQACAAEAAQAFAAEAAQACAAEAAwAFAAMAAQADAAQAAQADAAEAAwADAAkACAABAAIAAgACAAQABAASAAwAXAACAAoABAADAA4ABQAZABAAKgAEAA4ABAACABUABQB+AB4AHwACAAEABQANAAMAFgAFAAYABgAUAAwAAQAOAAwAVwADABMAAQAIAAIACQAJAAMAAwAXAAIAAwAHAAYAAwABAAIAAwAJAAEAAwABAAYAAwACAAEAAwALAAMAAQAGAAoAAwACAAMAAQACAAEABQABAAEACwADAAYABAABAAcAAgABAAIABQAFACIABAAOABIABAATAAcABQAIAAIABgBPAAEABQACAA4ACAACAAkAAgABACQAHAAQAAQAAQABAAEAAgAMAAYAKgAnABAAFwAHAA8ADwADAAIADAAHABUAQAAGAAkAHAAIAAwAAwADACkAOwAYADMANwA5ACYBCQAJAAIABgACAA8AAQACAA0AJgBaAAkACQAJAAMACwAHAAEAAQABAAUABgADAAIAAQACAAIAAwAIAAEABAAEAAEABQAHAAEABAADABQABAAJAAEAAQABAAUABQARAAEABQACAAYAAgAEAAEABAAFAAcAAwASAAsACwAgAAcABQAEAAcACwB/AAgABAADAAMAAQAKAAEAAQAGABUADgABABAAAQAHAAEAAwAGAAkAQQAzAAQAAwANAAMACgABAAEADAAJABUAbgADABMAGAABAAEACgA+AAQAAQAdACoATgAcABQAEgBSAAYAAwAPAAYAVAA6AP0ADwCbAAgBDwAVAAkADgAHADoAKAAnAEGwxwELECAA/wAABC8F4C3/LUCmn6YAQdLHAQsmgD/NzMw9CtcjPG8SgzoXt9E4rMUnN703hjWVv9Yzd8wrMl9wiTAAQYDIAQtGBAAAAOeOAADnjgAABAAAAPGOAADxjgAACAAAAPSOAAD0jgAACAAAAPmOAAD5jgAABAAAAOqOAADqjgAACAAAAOqOAADtjgBB0MgBC5IC/5AAAAORAAAHkQAAC5EAAMGQAADBkAAAwZAAAMGQAADHkAAAz5AAANeQAADfkAAA55AAAO+QAAD3kAAA35AAAJOQAACTkAAAk5AAAJOQAACXkAAAnZAAAKOQAACpkAAAr5AAALWQAAC7kAAAqZAAAP8AAP///wD/AP8A/wD///8AAP///wD///8AAP8AAAAA6HoAANB0AADQdAAA0HQAANB0AAA4ewAAWHsAANB0AAAIewAA0HQAANB0AAAIewAAOHsAADh7AABYewAAWHsAAOh6AABYewAAWHsAAFh7AADQdAAA0HQAANB0AAAAAAAACHsAAEB7AAAIdQAAOHsAAOh6AAA4ewAAWHsAANB0AADQdABB8MoBCxLQdAAA2HQAAAh7AABYewAA0HQAQZDLAQsi6HoAANB0AADQdAAACHsAAAh7AADYdAAA0HQAAFB7AAA4ewBBwMsBCyIIewAA0HQAADh7AAAIewAACHsAANh0AADQdAAA0HQAAAh7AEHwywELEgh7AADYdAAA0HQAAAh7AAAIewBBkMwBCzboegAA2HQAAFh7AADQdAAACHsAANh0AAA4ewAAOHsAAAh7AADYdAAA0HQAANB0AAA4ewAAOHsAQdDMAQsSCHsAANh0AAAIewAAOHsAANB0AEHwzAELMgh7AAA4ewAAOHsAANh0AAAIewAA2HQAADh7AADYdAAACHsAANh0AADQdAAAOHsAANB0AEGwzQELIgh7AADYdAAA0HQAADh7AADQdAAA0HQAANB0AADQdAAA0HQAQeDNAQs2CHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AAA4ewAAOHsAANB0AEGgzgELEgh7AADYdAAA0HQAANB0AADQdABBwM4BC3YIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAAAAAAAAh7AADYdAAAOHsAANB0AADQdAAA0HQAANB0AAA4ewAACHsAANh0AADQdAAAYHsAAGB7AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AAA4ewAAOHsAADh7AEHAzwELEgh7AADYdAAA0HQAANB0AAA4ewBB4M8BC4IBCHsAANh0AADQdAAA0HQAANB0AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AABQewAA0HQAADh7AADQdAAA0HQAAAh7AADYdAAA0HQAAFB7AAA4ewAA0HQAANB0AAAAAAAACHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AADQdABB8NABCyIIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AEGg0QELRgh7AADYdAAA0HQAANB0AAA4ewAAOHsAANB0AAAAAAAACHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQfDRAQt2CHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AADQdAAA0HQAADh7AAA4ewAAAAAAAOh6AABYewAA0HQAANB0AADoegAA2HQAANB0AADQdAAAOHsAADh7AADQdAAA0HQAANB0AADQdABB8NIBC5IBCHsAANh0AADQdAAAQHsAAAh7AADQdAAA0HQAANB0AADQdAAAOHsAANB0AADQdAAA6HoAANB0AADQdAAA0HQAANB0AADQdAAA0HQAAAAAAADoegAAOHsAANB0AAAIewAA6HoAANh0AAAIewAAOHsAAOh6AADYdAAA0HQAADh7AADoegAA0HQAANB0AADQdAAA0HQAQZDUAQsi6HoAANB0AAA4ewAA0HQAAAh7AADQdAAA0HQAAAh7AAA4ewBBwNQBC4YBCHsAANh0AADQdAAAOHsAAAh7AADYdAAAUHsAAFB7AABQewAAUHsAAFB7AAAAAAAACHsAAFh2AAA4ewAA0HQAAAh7AACYdgAAOHsAAFh7AAAIewAAmHYAADh7AAAIewAACHsAAJh2AAA4ewAAOHsAANB0AADIdgAA0HQAAFh7AADQdAAA0HQAQdDVAQsy6HoAACB2AADQdAAAWHsAANB0AABAewAAMHsAAAAAAAA4ewAAIHYAAFh7AADYdAAAWHsAQZDWAQti0HQAACB2AABYewAAWHsAAFh7AADYdAAA0HQAANB0AADoegAAQHUAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAQYDXAQs26HoAADB1AAA4ewAAOHsAAOh6AABAdQAA0HQAANB0AADoegAAQHUAANB0AADQdAAAWHsAADh7AEHA1wELFuh6AABAdQAA0HQAANB0AADQdAAAOHsAQeDXAQsW6HoAAEB1AADQdAAAWHsAADh7AAA4ewBBgNgBCzLoegAAQHUAANB0AABYewAAWHsAAFh7AAA4ewAAAAAAAOh6AABAdQAAQHsAAAh7AABYewBBwNgBCyLoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHw2AELEuh6AABAdQAA0HQAADh7AABAewBBkNkBC0boegAAQHUAANB0AAA4ewAAQHsAAAh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHg2QELcuh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAA6HoAAEB1AADQdAAAWHsAANB0AABAewAA2HQAAFh7AADQdABB4NoBCxLoegAAQHUAANB0AABAewAA2HQAQYDbAQsW6HoAAEB1AADQdAAAWHsAAEB7AAA4ewBBoNsBCzboegAAQHUAANB0AABYewAAQHsAADh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAAQHsAQeDbAQvWAeh6AABAdQAA0HQAANB0AADQdAAAQHsAAFh7AAAAAAAA6HoAAEB1AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAQHsAAEB7AABAewAA6HoAAEB1AADQdAAA0HQAAEB7AABYewAAOHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAAFh7AAA4ewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAWHsAQcDdAQsS6HoAAEB1AADQdAAA0HQAAAh7AEHg3QELRuh6AADgdwAAOHsAAFh7AADoegAA+HUAADh7AADYdAAA6HoAAOh1AAA4ewAAOHsAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQbDeAQvhA9B0AADQdAAA0HQAANB0AAACAADAAwAAwAQAAMAFAADABgAAwAcAAMAIAADACQAAwAoAAMALAADADAAAwA0AAMAOAADADwAAwBAAAMARAADAEgAAwBMAAMAUAADAFQAAwBYAAMAXAADAGAAAwBkAAMAaAADAGwAAwBwAAMAdAADAHgAAwB8AAMAAAACzAQAAwwIAAMMDAADDBAAAwwUAAMMGAADDBwAAwwgAAMMJAADDCgAAwwsAAMMMAADDDQAA0w4AAMMPAADDAAAMuwEADMMCAAzDAwAMwwQADNMAAAAA/////////////////////////////////////////////////////////////////wABAgMEBQYHCAn/////////CgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiP///////8KCwwNDg8QERITFBUWFxgZGhscHR4fICEiI/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AQaDiAQsYEQAKABEREQAAAAAFAAAAAAAACQAAAAALAEHA4gELIREADwoREREDCgcAARMJCwsAAAkGCwAACwAGEQAAABEREQBB8eIBCwELAEH64gELGBEACgoREREACgAAAgAJCwAAAAkACwAACwBBq+MBCwEMAEG34wELFQwAAAAADAAAAAAJDAAAAAAADAAADABB5eMBCwEOAEHx4wELFQ0AAAAEDQAAAAAJDgAAAAAADgAADgBBn+QBCwEQAEGr5AELHg8AAAAADwAAAAAJEAAAAAAAEAAAEAAAEgAAABISEgBB4uQBCw4SAAAAEhISAAAAAAAACQBBk+UBCwELAEGf5QELFQoAAAAACgAAAAAJCwAAAAAACwAACwBBzeUBCwEMAEHZ5QEL3gIMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYKAAAAZAAAAOgDAAAQJwAAoIYBAEBCDwCAlpgAAOH1BQMAAAAEAAAABAAAAAYAAACD+aIARE5uAPwpFQDRVycA3TT1AGLbwAA8mZUAQZBDAGNR/gC73qsAt2HFADpuJADSTUIASQbgAAnqLgAcktEA6x3+ACmxHADoPqcA9TWCAES7LgCc6YQAtCZwAEF+XwDWkTkAU4M5AJz0OQCLX4QAKPm9APgfOwDe/5cAD5gFABEv7wAKWosAbR9tAM9+NgAJyycARk+3AJ5mPwAt6l8Auid1AOXrxwA9e/EA9zkHAJJSigD7a+oAH7FfAAhdjQAwA1YAe/xGAPCrawAgvM8ANvSaAOOpHQBeYZEACBvmAIWZZQCgFF8AjUBoAIDY/wAnc00ABgYxAMpWFQDJqHMAe+JgAGuMwABBw+gBC21A+yH5PwAAAAAtRHQ+AAAAgJhG+DwAAABgUcx4OwAAAICDG/A5AAAAQCAlejgAAACAIoLjNgAAAAAd82k1OGPtPtoPST9emHs/2g/JP2k3rDFoISIztA8UM2ghojMAAAAAAADwPwAAAAAAAPg/AEG46QELCAbQ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aXZlAFBsb3RMaW5lc0hvdmVyZWQAUGxvdEhpc3RvZ3JhbUhvdmVyZWQAVGV4dFNlbGVjdGVkQmcARHJhZ0Ryb3BUYXJnZXQATmF2SGlnaGxpZ2h0AE5hdldpbmRvd2luZ0hpZ2hsaWdodABOYXZXaW5kb3dpbmdEaW1CZwBNb2RhbFdpbmRvd0RpbUJnAFVua25vd24AIyNUb29sdGlwXyUwMmQAIyNNZW51XyUwMmQAIyNQb3B1cF8lMDh4AHdpbmRvd19jb250ZXh0AHZvaWRfY29udGV4dABjb2x1bW5zACNTb3VyY2VFeHRlcm4ACiUqcyUuKnMAICUuKnMAYWIACgBMb2cgVG8gVFRZAExvZyBUbyBGaWxlAExvZyBUbyBDbGlwYm9hcmQARGVwdGgAcmIAd3QASW1HdWkgTWV0cmljcwABRGVhciBJbUd1aSAlcwBBcHBsaWNhdGlvbiBhdmVyYWdlICUuM2YgbXMvZnJhbWUgKCUuMWYgRlBTKQAlZCB2ZXJ0aWNlcywgJWQgaW5kaWNlcyAoJWQgdHJpYW5nbGVzKQAlZCBhY3RpdmUgd2luZG93cyAoJWQgdmlzaWJsZSkAJWQgYWxsb2NhdGlvbnMAU2hvdyBjbGlwcGluZyByZWN0YW5nbGVzIHdoZW4gaG92ZXJpbmcgZHJhdyBjb21tYW5kcwBDdHJsIHNob3dzIHdpbmRvdyBiZWdpbiBvcmRlcgBXaW5kb3dzAERyYXdMaXN0AEFjdGl2ZSBEcmF3TGlzdHMgKCVkKQBQb3B1cHMAUG9wdXBzICglZCkAUG9wdXBJRDogJTA4eCwgV2luZG93OiAnJXMnJXMlcwBOVUxMACBDaGlsZFdpbmRvdwAgQ2hpbGRNZW51AFRhYkJhcnMAVGFiIEJhcnMgKCVkKQBJbnRlcm5hbCBzdGF0ZQBOb25lAE1vdXNlAE5hdgBOYXZLZXlib2FyZABOYXZHYW1lcGFkAEhvdmVyZWRXaW5kb3c6ICclcycASG92ZXJlZFJvb3RXaW5kb3c6ICclcycASG92ZXJlZElkOiAweCUwOFgvMHglMDhYICglLjJmIHNlYyksIEFsbG93T3ZlcmxhcDogJWQAQWN0aXZlSWQ6IDB4JTA4WC8weCUwOFggKCUuMmYgc2VjKSwgQWxsb3dPdmVybGFwOiAlZCwgU291cmNlOiAlcwBBY3RpdmVJZFdpbmRvdzogJyVzJwBNb3ZpbmdXaW5kb3c6ICclcycATmF2V2luZG93OiAnJXMnAE5hdklkOiAweCUwOFgsIE5hdkxheWVyOiAlZABOYXZJbnB1dFNvdXJjZTogJXMATmF2QWN0aXZlOiAlZCwgTmF2VmlzaWJsZTogJWQATmF2QWN0aXZhdGVJZDogMHglMDhYLCBOYXZJbnB1dElkOiAweCUwOFgATmF2RGlzYWJsZUhpZ2hsaWdodDogJWQsIE5hdkRpc2FibGVNb3VzZUhvdmVyOiAlZABOYXZXaW5kb3dpbmdUYXJnZXQ6ICclcycARHJhZ0Ryb3A6ICVkLCBTb3VyY2VJZCA9IDB4JTA4WCwgUGF5bG9hZCAiJXMiICglZCBieXRlcykAIyNPdmVybGF5ACVzLyVzXyUwOFgAJXMvJTA4WAAjUkVTSVpFACMjI05hdldpbmRvd2luZ0xpc3QAKFBvcHVwKQAoTWFpbiBtZW51IGJhcikAKFVudGl0bGVkKQBQb3M9JWYsJWYAU2l6ZT0lZiwlZgBDb2xsYXBzZWQ9JWQAIyMjAFslc11bJXNdCgBQb3M9JWQsJWQKAFNpemU9JWQsJWQKAENvbGxhcHNlZD0lZAoAJXMgKCVkKQAlcyAnJXMnLCAlZCBAIDB4JXAAUG9zOiAoJS4xZiwlLjFmKSwgU2l6ZTogKCUuMWYsJS4xZiksIFNpemVDb250ZW50cyAoJS4xZiwlLjFmKQBGbGFnczogMHglMDhYICglcyVzJXMlcyVzJXMlcyVzJXMuLikAQ2hpbGQgAFRvb2x0aXAgAFBvcHVwIABNb2RhbCAAQ2hpbGRNZW51IABOb1NhdmVkU2V0dGluZ3MgAE5vTW91c2VJbnB1dHMATm9OYXZJbnB1dHMAQWx3YXlzQXV0b1Jlc2l6ZQBTY3JvbGw6ICglLjJmLyUuMmYsJS4yZi8lLjJmKQBBY3RpdmU6ICVkLyVkLCBXcml0ZUFjY2Vzc2VkOiAlZCwgQmVnaW5PcmRlcldpdGhpbkNvbnRleHQ6ICVkAEFwcGVhcmluZzogJWQsIEhpZGRlbjogJWQgKFJlZyAlZCBSZXNpemUgJWQpLCBTa2lwSXRlbXM6ICVkAE5hdkxhc3RJZHM6IDB4JTA4WCwweCUwOFgsIE5hdkxheWVyQWN0aXZlTWFzazogJVgATmF2TGFzdENoaWxkTmF2V2luZG93OiAlcwBOYXZSZWN0UmVsWzBdOiAoJS4xZiwlLjFmKSglLjFmLCUuMWYpAE5hdlJlY3RSZWxbMF06IDxOb25lPgBSb290V2luZG93AFBhcmVudFdpbmRvdwBDaGlsZFdpbmRvd3MAQ29sdW1ucyBzZXRzICglZCkAQ29sdW1ucyBJZDogMHglMDhYLCBDb3VudDogJWQsIEZsYWdzOiAweCUwNFgAV2lkdGg6ICUuMWYgKE1pblg6ICUuMWYsIE1heFg6ICUuMWYpAENvbHVtbiAlMDJkOiBPZmZzZXROb3JtICUuM2YgKD0gJS4xZiBweCkAU3RvcmFnZTogJWQgYnl0ZXMAJXM6ICclcycgJWQgdnR4LCAlZCBpbmRpY2VzLCAlZCBjbWRzAENVUlJFTlRMWSBBUFBFTkRJTkcAQ2FsbGJhY2sgJXAsIHVzZXJfZGF0YSAlcABEcmF3ICU0ZCAlcyB2dHgsIHRleCAweCVwLCBjbGlwX3JlY3QgKCU0LjBmLCU0LjBmKS0oJTQuMGYsJTQuMGYpAGluZGV4ZWQAbm9uLWluZGV4ZWQAJXMgJTA0ZDogcG9zICglOC4yZiwlOC4yZiksIHV2ICglLjZmLCUuNmYpLCBjb2wgJTA4WAoAdnR4ACAgIABUYWJCYXIgKCVkIHRhYnMpJXMAICpJbmFjdGl2ZSoAPAAlMDJkJWMgVGFiIDB4JTA4WABjbWFwAGxvY2EAaGVhZABnbHlmAGhoZWEAaG10eABrZXJuAEdQT1MAQ0ZGIABtYXhwAFByb2dneUNsZWFuLnR0ZiwgMTNweAAjU0NST0xMWAAjU0NST0xMWQAjaW1hZ2UAWyBdAFt4XQAoeCkAKCApACUuMGYlJQAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQAgfAAjI0NvbWJvXyUwMmQAKlVua25vd24gaXRlbSoAJWQAJWYAJWxmACV1ACVsbGQAJWxsdQAjI3YAIyNtaW4AIyNtYXgALQArACUwOFgATTowLjAwMABNOjAwMABjb250ZXh0ACMlMDJYJTAyWCUwMlglMDJYACMlMDJYJTAyWCUwMlgAIyNUZXh0ACUwMlglMDJYJTAyWCUwMlgAJTAyWCUwMlglMDJYACMjQ29sb3JCdXR0b24AcGlja2VyACMjcGlja2VyAF9DT0wzRgBfQ09MNEYAaHN2AHN2AGh1ZQBhbHBoYQBDdXJyZW50ACMjY3VycmVudABPcmlnaW5hbAAjI29yaWdpbmFsACMjcmdiACMjaHN2ACMjaGV4ACMjc2VsZWN0YWJsZQAjI2R1bW15cGlja2VyAEFscGhhIEJhcgBDb2xvcgAjI3ByZXZpZXcAIyUwMlglMDJYJTAyWApSOiAlZCwgRzogJWQsIEI6ICVkCiglLjNmLCAlLjNmLCAlLjNmKQAjJTAyWCUwMlglMDJYJTAyWApSOiVkLCBHOiVkLCBCOiVkLCBBOiVkCiglLjNmLCAlLjNmLCAlLjNmLCAlLjNmKQAlM2QAUjolM2QARzolM2QAQjolM2QAQTolM2QASDolM2QAUzolM2QAVjolM2QAJTAuM2YAUjolMC4zZgBHOiUwLjNmAEI6JTAuM2YAQTolMC4zZgBIOiUwLjNmAFM6JTAuM2YAVjolMC4zZgAjI1gAIyNZACMjWgAjI1cAUkdCAEhTVgBIRVgAMC4uMjU1ADAuMDAuLjEuMDAAQ29weSBhcy4uACglLjNmZiwgJS4zZmYsICUuM2ZmLCAlLjNmZikAKCVkLCVkLCVkLCVkKQAweCUwMlglMDJYJTAyWAAweCUwMlglMDJYJTAyWCUwMlgACiMjACMjAD4AI1RyZWVQdXNoACVkOiAlOC40ZwolZDogJTguNGcAJWQ6ICU4LjRnAHRydWUAZmFsc2UAJXM6ICVzACVzOiAlZAAlJXM6ICVzACVzOiAlLjNmACMjTWFpbk1lbnVCYXIAIyNtZW51YmFyACMjPAAjIz4AJS4qcwAqADEuNjcASU1HVUlfVkVSU0lPTgBJTUdVSV9DSEVDS1ZFUlNJT04ASW1HdWlJT1NpemUASW1HdWlTdHlsZVNpemUASW1WZWMyU2l6ZQBJbVZlYzRTaXplAEltRHJhd1ZlcnRTaXplAEltRHJhd0lkeFNpemUASW1EcmF3VmVydFBvc09mZnNldABJbURyYXdWZXJ0VVZPZmZzZXQASW1EcmF3VmVydENvbE9mZnNldABDcmVhdGVDb250ZXh0AERlc3Ryb3lDb250ZXh0AEdldEN1cnJlbnRDb250ZXh0AFNldEN1cnJlbnRDb250ZXh0AERlYnVnQ2hlY2tWZXJzaW9uQW5kRGF0YUxheW91dABHZXRJTwBHZXRTdHlsZQBHZXREcmF3RGF0YQBOZXdGcmFtZQBSZW5kZXIARW5kRnJhbWUAU2hvd0RlbW9XaW5kb3cAU2hvd0Fib3V0V2luZG93AFNob3dNZXRyaWNzV2luZG93AFNob3dTdHlsZUVkaXRvcgBTaG93U3R5bGVTZWxlY3RvcgBTaG93Rm9udFNlbGVjdG9yAFNob3dVc2VyR3VpZGUAR2V0VmVyc2lvbgBTdHlsZUNvbG9yc0RhcmsAU3R5bGVDb2xvcnNDbGFzc2ljAFN0eWxlQ29sb3JzTGlnaHQAQmVnaW4ARW5kAEJlZ2luQ2hpbGQARW5kQ2hpbGQAR2V0Q29udGVudFJlZ2lvbk1heABHZXRDb250ZW50UmVnaW9uQXZhaWwAR2V0Q29udGVudFJlZ2lvbkF2YWlsV2lkdGgAR2V0V2luZG93Q29udGVudFJlZ2lvbk1pbgBHZXRXaW5kb3dDb250ZW50UmVnaW9uTWF4AEdldFdpbmRvd0NvbnRlbnRSZWdpb25XaWR0aABHZXRXaW5kb3dEcmF3TGlzdABHZXRXaW5kb3dQb3MAR2V0V2luZG93U2l6ZQBHZXRXaW5kb3dXaWR0aABHZXRXaW5kb3dIZWlnaHQASXNXaW5kb3dDb2xsYXBzZWQASXNXaW5kb3dBcHBlYXJpbmcAU2V0V2luZG93Rm9udFNjYWxlAFNldE5leHRXaW5kb3dQb3MAU2V0TmV4dFdpbmRvd1NpemUAU2V0TmV4dFdpbmRvd1NpemVDb25zdHJhaW50cwBTZXROZXh0V2luZG93Q29udGVudFNpemUAU2V0TmV4dFdpbmRvd0NvbGxhcHNlZABTZXROZXh0V2luZG93Rm9jdXMAU2V0TmV4dFdpbmRvd0JnQWxwaGEAU2V0V2luZG93UG9zAFNldFdpbmRvd1NpemUAU2V0V2luZG93Q29sbGFwc2VkAFNldFdpbmRvd0ZvY3VzAFNldFdpbmRvd05hbWVQb3MAU2V0V2luZG93TmFtZVNpemUAU2V0V2luZG93TmFtZUNvbGxhcHNlZABTZXRXaW5kb3dOYW1lRm9jdXMAR2V0U2Nyb2xsWABHZXRTY3JvbGxZAEdldFNjcm9sbE1heFgAR2V0U2Nyb2xsTWF4WQBTZXRTY3JvbGxYAFNldFNjcm9sbFkAU2V0U2Nyb2xsSGVyZVkAU2V0U2Nyb2xsRnJvbVBvc1kAU2V0U3RhdGVTdG9yYWdlAEdldFN0YXRlU3RvcmFnZQBQdXNoRm9udABQb3BGb250AFB1c2hTdHlsZUNvbG9yAFBvcFN0eWxlQ29sb3IAUHVzaFN0eWxlVmFyAFBvcFN0eWxlVmFyAEdldFN0eWxlQ29sb3JWZWM0AEdldEZvbnQAR2V0Rm9udFNpemUAR2V0Rm9udFRleFV2V2hpdGVQaXhlbABHZXRDb2xvclUzMl9BAEdldENvbG9yVTMyX0IAR2V0Q29sb3JVMzJfQwBQdXNoSXRlbVdpZHRoAFBvcEl0ZW1XaWR0aABDYWxjSXRlbVdpZHRoAFB1c2hUZXh0V3JhcFBvcwBQb3BUZXh0V3JhcFBvcwBQdXNoQWxsb3dLZXlib2FyZEZvY3VzAFBvcEFsbG93S2V5Ym9hcmRGb2N1cwBQdXNoQnV0dG9uUmVwZWF0AFBvcEJ1dHRvblJlcGVhdABTZXBhcmF0b3IAU2FtZUxpbmUATmV3TGluZQBTcGFjaW5nAER1bW15AEluZGVudABVbmluZGVudABCZWdpbkdyb3VwAEVuZEdyb3VwAEdldEN1cnNvclBvcwBHZXRDdXJzb3JQb3NYAEdldEN1cnNvclBvc1kAU2V0Q3Vyc29yUG9zAFNldEN1cnNvclBvc1gAU2V0Q3Vyc29yUG9zWQBHZXRDdXJzb3JTdGFydFBvcwBHZXRDdXJzb3JTY3JlZW5Qb3MAU2V0Q3Vyc29yU2NyZWVuUG9zAEFsaWduVGV4dFRvRnJhbWVQYWRkaW5nAEdldFRleHRMaW5lSGVpZ2h0AEdldFRleHRMaW5lSGVpZ2h0V2l0aFNwYWNpbmcAR2V0RnJhbWVIZWlnaHQAR2V0RnJhbWVIZWlnaHRXaXRoU3BhY2luZwBDb2x1bW5zAE5leHRDb2x1bW4AR2V0Q29sdW1uSW5kZXgAR2V0Q29sdW1uV2lkdGgAU2V0Q29sdW1uV2lkdGgAR2V0Q29sdW1uT2Zmc2V0AFNldENvbHVtbk9mZnNldABHZXRDb2x1bW5zQ291bnQAUHVzaElEAFBvcElEAEdldElEAFRleHRVbmZvcm1hdHRlZABUZXh0AFRleHRWAFRleHRDb2xvcmVkAFRleHRDb2xvcmVkVgBUZXh0RGlzYWJsZWQAVGV4dERpc2FibGVkVgBUZXh0V3JhcHBlZABUZXh0V3JhcHBlZFYATGFiZWxUZXh0AExhYmVsVGV4dFYAQnVsbGV0VGV4dABCdWxsZXRUZXh0VgBCdWxsZXQAQnV0dG9uAFNtYWxsQnV0dG9uAEFycm93QnV0dG9uAEludmlzaWJsZUJ1dHRvbgBJbWFnZQBJbWFnZUJ1dHRvbgBDaGVja2JveABDaGVja2JveEZsYWdzAFJhZGlvQnV0dG9uX0EAUmFkaW9CdXR0b25fQgBQbG90TGluZXMAUGxvdEhpc3RvZ3JhbQBQcm9ncmVzc0JhcgBCZWdpbkNvbWJvAEVuZENvbWJvAENvbWJvAERyYWdGbG9hdABEcmFnRmxvYXQyAERyYWdGbG9hdDMARHJhZ0Zsb2F0NABEcmFnRmxvYXRSYW5nZTIARHJhZ0ludABEcmFnSW50MgBEcmFnSW50MwBEcmFnSW50NABEcmFnSW50UmFuZ2UyAERyYWdTY2FsYXIASW5wdXRUZXh0AElucHV0VGV4dE11bHRpbGluZQBJbnB1dEZsb2F0AElucHV0RmxvYXQyAElucHV0RmxvYXQzAElucHV0RmxvYXQ0AElucHV0SW50AElucHV0SW50MgBJbnB1dEludDMASW5wdXRJbnQ0AElucHV0RG91YmxlAElucHV0U2NhbGFyAFNsaWRlckZsb2F0AFNsaWRlckZsb2F0MgBTbGlkZXJGbG9hdDMAU2xpZGVyRmxvYXQ0AFNsaWRlckFuZ2xlAFNsaWRlckludABTbGlkZXJJbnQyAFNsaWRlckludDMAU2xpZGVySW50NABTbGlkZXJTY2FsYXIAVlNsaWRlckZsb2F0AFZTbGlkZXJJbnQAVlNsaWRlclNjYWxhcgBDb2xvckVkaXQzAENvbG9yRWRpdDQAQ29sb3JQaWNrZXIzAENvbG9yUGlja2VyNABDb2xvckJ1dHRvbgBTZXRDb2xvckVkaXRPcHRpb25zAFRyZWVOb2RlX0EAVHJlZU5vZGVfQgBUcmVlTm9kZV9DAFRyZWVOb2RlRXhfQQBUcmVlTm9kZUV4X0IAVHJlZU5vZGVFeF9DAFRyZWVQdXNoX0EAVHJlZVB1c2hfQgBUcmVlUG9wAFRyZWVBZHZhbmNlVG9MYWJlbFBvcwBHZXRUcmVlTm9kZVRvTGFiZWxTcGFjaW5nAFNldE5leHRUcmVlTm9kZU9wZW4AQ29sbGFwc2luZ0hlYWRlcl9BAENvbGxhcHNpbmdIZWFkZXJfQgBTZWxlY3RhYmxlX0EAU2VsZWN0YWJsZV9CAExpc3RCb3hfQQBMaXN0Qm94X0IATGlzdEJveEhlYWRlcl9BAExpc3RCb3hIZWFkZXJfQgBMaXN0Qm94Rm9vdGVyAFZhbHVlX0EAVmFsdWVfQgBWYWx1ZV9DAFZhbHVlX0QAU2V0VG9vbHRpcABCZWdpblRvb2x0aXAARW5kVG9vbHRpcABCZWdpbk1haW5NZW51QmFyAEVuZE1haW5NZW51QmFyAEJlZ2luTWVudUJhcgBFbmRNZW51QmFyAEJlZ2luTWVudQBFbmRNZW51AE1lbnVJdGVtX0EATWVudUl0ZW1fQgBPcGVuUG9wdXAAT3BlblBvcHVwT25JdGVtQ2xpY2sAQmVnaW5Qb3B1cABCZWdpblBvcHVwTW9kYWwAQmVnaW5Qb3B1cENvbnRleHRJdGVtAEJlZ2luUG9wdXBDb250ZXh0V2luZG93AEJlZ2luUG9wdXBDb250ZXh0Vm9pZABFbmRQb3B1cABJc1BvcHVwT3BlbgBDbG9zZUN1cnJlbnRQb3B1cABCZWdpblRhYkJhcgBFbmRUYWJCYXIAQmVnaW5UYWJJdGVtAEVuZFRhYkl0ZW0AU2V0VGFiSXRlbUNsb3NlZABMb2dUb1RUWQBMb2dUb0ZpbGUATG9nVG9DbGlwYm9hcmQATG9nRmluaXNoAExvZ0J1dHRvbnMATG9nVGV4dABCZWdpbkRyYWdEcm9wU291cmNlAFNldERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFNvdXJjZQBCZWdpbkRyYWdEcm9wVGFyZ2V0AEFjY2VwdERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFRhcmdldABHZXREcmFnRHJvcFBheWxvYWQAUHVzaENsaXBSZWN0AFBvcENsaXBSZWN0AFNldEl0ZW1EZWZhdWx0Rm9jdXMAU2V0S2V5Ym9hcmRGb2N1c0hlcmUASXNJdGVtSG92ZXJlZABJc0l0ZW1BY3RpdmUASXNJdGVtRWRpdGVkAElzSXRlbUZvY3VzZWQASXNJdGVtQ2xpY2tlZABJc0l0ZW1WaXNpYmxlAElzSXRlbURlYWN0aXZhdGVkAElzSXRlbURlYWN0aXZhdGVkQWZ0ZXJFZGl0AElzQW55SXRlbUhvdmVyZWQASXNBbnlJdGVtQWN0aXZlAElzQW55SXRlbUZvY3VzZWQAR2V0SXRlbVJlY3RNaW4AR2V0SXRlbVJlY3RNYXgAR2V0SXRlbVJlY3RTaXplAFNldEl0ZW1BbGxvd092ZXJsYXAASXNXaW5kb3dGb2N1c2VkAElzV2luZG93SG92ZXJlZABJc1JlY3RWaXNpYmxlX0EASXNSZWN0VmlzaWJsZV9CAEdldFRpbWUAR2V0RnJhbWVDb3VudABHZXRPdmVybGF5RHJhd0xpc3QAR2V0RHJhd0xpc3RTaGFyZWREYXRhAEdldFN0eWxlQ29sb3JOYW1lAENhbGNUZXh0U2l6ZQBDYWxjTGlzdENsaXBwaW5nAEJlZ2luQ2hpbGRGcmFtZQBFbmRDaGlsZEZyYW1lAENvbG9yQ29udmVydFUzMlRvRmxvYXQ0AENvbG9yQ29udmVydEZsb2F0NFRvVTMyAENvbG9yQ29udmVydFJHQnRvSFNWAENvbG9yQ29udmVydEhTVnRvUkdCAEdldEtleUluZGV4AElzS2V5RG93bgBJc0tleVByZXNzZWQASXNLZXlSZWxlYXNlZABHZXRLZXlQcmVzc2VkQW1vdW50AElzTW91c2VEb3duAElzQW55TW91c2VEb3duAElzTW91c2VDbGlja2VkAElzTW91c2VEb3VibGVDbGlja2VkAElzTW91c2VSZWxlYXNlZABJc01vdXNlRHJhZ2dpbmcASXNNb3VzZUhvdmVyaW5nUmVjdABJc01vdXNlUG9zVmFsaWQAR2V0TW91c2VQb3MAR2V0TW91c2VQb3NPbk9wZW5pbmdDdXJyZW50UG9wdXAAR2V0TW91c2VEcmFnRGVsdGEAUmVzZXRNb3VzZURyYWdEZWx0YQBHZXRNb3VzZUN1cnNvcgBTZXRNb3VzZUN1cnNvcgBDYXB0dXJlS2V5Ym9hcmRGcm9tQXBwAENhcHR1cmVNb3VzZUZyb21BcHAAR2V0Q2xpcGJvYXJkVGV4dABTZXRDbGlwYm9hcmRUZXh0AExvYWRJbmlTZXR0aW5nc0Zyb21NZW1vcnkAU2F2ZUluaVNldHRpbmdzVG9NZW1vcnkAU2V0QWxsb2NhdG9yRnVuY3Rpb25zAE1lbUFsbG9jAE1lbUZyZWUAaWlpAE4xMGVtc2NyaXB0ZW4zdmFsRQB2aWlpaQBOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TXzExY2hhcl90cmFpdHNJY0VFTlNfOWFsbG9jYXRvckljRUVFRQBOU3QzX18yMjFfX2Jhc2ljX3N0cmluZ19jb21tb25JTGIxRUVFAGlpaWZpAHgAeQAyM2ltcG9ydF9tYXliZV9udWxsX3ZhbHVlSTZJbVZlYzJFAGlpaWlpAGlpaWYAaWlpZmYAaWlpaQAxMmFjY2Vzc192YWx1ZUlmTG0xRUUAdmlmZmZpaWkAegB3ADZJbVZlYzIAdmlpZmlpADEyYWNjZXNzX3ZhbHVlSWlMbTFFRQBpaWlpZmkAUDIwSW1EcmF3TGlzdFNoYXJlZERhdGEAMjBJbURyYXdMaXN0U2hhcmVkRGF0YQBQMTBJbURyYXdMaXN0ADEwSW1EcmF3TGlzdABkaQBpaWlpaWkAJXMAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TMF8xMWNoYXJfdHJhaXRzSWNFRU5TMF85YWxsb2NhdG9ySWNFRUVFRQAyNGltcG9ydF9tYXliZV9udWxsX3N0cmluZwAyM2FjY2Vzc19tYXliZV9udWxsX3ZhbHVlSWJMbTFFRQB2aWlmaQB2aWlpAGlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJZkxtNEVFADIzYWNjZXNzX21heWJlX251bGxfdmFsdWVJZkxtNEVFADEyYWNjZXNzX3ZhbHVlSWZMbTNFRQBpaWlpaWlpaWlpAHNldABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lkRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlkRQBsZW5ndGgAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lmRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlmRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lqRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlqRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lpRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlpRQBpaWlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJaUxtNEVFADEyYWNjZXNzX3ZhbHVlSWlMbTNFRQAxMmFjY2Vzc192YWx1ZUlpTG0yRUUAJS4wZiBkZWcAMTJhY2Nlc3NfdmFsdWVJZkxtMkVFAGlpaWlpaWlpAGlpaWlkZGlpADEyYWNjZXNzX3ZhbHVlSWRMbTFFRQBQMjZJbUd1aUlucHV0VGV4dENhbGxiYWNrRGF0YQAyNkltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAGlpaWlpaWlpaWlpAHZpZmlpAHZpaWlpaWlpaWlpADEyYWNjZXNzX3ZhbHVlSWpMbTFFRQAxMmFjY2Vzc192YWx1ZUliTG0xRUUAdmlpaWlpaWkAbnVtYmVyAHZpaWYAZmlpAGlpAHZpaQBQNkltRm9udAA2SW1Gb250AFBLNkltVmVjNAA2SW1WZWM0AFRPRE86ICVzCgBhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoZW1zY3JpcHRlbjo6dmFsKSBjb25zdAB2aWZmAHZpaWlpaQBQMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAdmlmAGZpAHN0cmluZwBQMTBJbUd1aVN0eWxlADEwSW1HdWlTdHlsZQB2aQBQMTBJbURyYXdEYXRhADEwSW1EcmF3RGF0YQBQN0ltR3VpSU8AN0ltR3VpSU8AUDE2V3JhcEltR3VpQ29udGV4dAAxNldyYXBJbUd1aUNvbnRleHQAUDExSW1Gb250QXRsYXMAMTFJbUZvbnRBdGxhcwBJbUd1aVN0eWxlAEFscGhhAFdpbmRvd1BhZGRpbmcAV2luZG93Um91bmRpbmcAV2luZG93Qm9yZGVyU2l6ZQBXaW5kb3dNaW5TaXplAFdpbmRvd1RpdGxlQWxpZ24AQ2hpbGRSb3VuZGluZwBDaGlsZEJvcmRlclNpemUAUG9wdXBSb3VuZGluZwBQb3B1cEJvcmRlclNpemUARnJhbWVQYWRkaW5nAEZyYW1lUm91bmRpbmcARnJhbWVCb3JkZXJTaXplAEl0ZW1TcGFjaW5nAEl0ZW1Jbm5lclNwYWNpbmcAVG91Y2hFeHRyYVBhZGRpbmcASW5kZW50U3BhY2luZwBDb2x1bW5zTWluU3BhY2luZwBTY3JvbGxiYXJTaXplAFNjcm9sbGJhclJvdW5kaW5nAEdyYWJNaW5TaXplAEdyYWJSb3VuZGluZwBUYWJSb3VuZGluZwBUYWJCb3JkZXJTaXplAEJ1dHRvblRleHRBbGlnbgBEaXNwbGF5V2luZG93UGFkZGluZwBEaXNwbGF5U2FmZUFyZWFQYWRkaW5nAE1vdXNlQ3Vyc29yU2NhbGUAQW50aUFsaWFzZWRMaW5lcwBBbnRpQWxpYXNlZEZpbGwAQ3VydmVUZXNzZWxsYXRpb25Ub2wAX2dldEF0X0NvbG9ycwBfc2V0QXRfQ29sb3JzAFNjYWxlQWxsU2l6ZXMAUDZJbVZlYzQAUEs2SW1WZWMyAHYAUEsxMEltR3VpU3R5bGUASW1HdWlJTwBDb25maWdGbGFncwBCYWNrZW5kRmxhZ3MARGlzcGxheVNpemUARGVsdGFUaW1lAEluaVNhdmluZ1JhdGUASW5pRmlsZW5hbWUATG9nRmlsZW5hbWUATW91c2VEb3VibGVDbGlja1RpbWUATW91c2VEb3VibGVDbGlja01heERpc3QATW91c2VEcmFnVGhyZXNob2xkAF9nZXRBdF9LZXlNYXAAX3NldEF0X0tleU1hcABLZXlSZXBlYXREZWxheQBLZXlSZXBlYXRSYXRlAFVzZXJEYXRhAEZvbnRzAEZvbnRHbG9iYWxTY2FsZQBGb250QWxsb3dVc2VyU2NhbGluZwBGb250RGVmYXVsdABEaXNwbGF5RnJhbWVidWZmZXJTY2FsZQBEaXNwbGF5VmlzaWJsZU1pbgBEaXNwbGF5VmlzaWJsZU1heABNb3VzZURyYXdDdXJzb3IAQ29uZmlnTWFjT1NYQmVoYXZpb3JzAENvbmZpZ0lucHV0VGV4dEN1cnNvckJsaW5rAENvbmZpZ1dpbmRvd3NSZXNpemVGcm9tRWRnZXMAQ29uZmlnV2luZG93c01vdmVGcm9tVGl0bGVCYXJPbmx5AEdldENsaXBib2FyZFRleHRGbgBTZXRDbGlwYm9hcmRUZXh0Rm4AQ2xpcGJvYXJkVXNlckRhdGEATW91c2VQb3MAX2dldEF0X01vdXNlRG93bgBfc2V0QXRfTW91c2VEb3duAE1vdXNlV2hlZWwAS2V5Q3RybABLZXlTaGlmdABLZXlBbHQAS2V5U3VwZXIAX2dldEF0X0tleXNEb3duAF9zZXRBdF9LZXlzRG93bgBfZ2V0QXRfTmF2SW5wdXRzAF9zZXRBdF9OYXZJbnB1dHMAQWRkSW5wdXRDaGFyYWN0ZXIAQWRkSW5wdXRDaGFyYWN0ZXJzVVRGOABDbGVhcklucHV0Q2hhcmFjdGVycwBXYW50Q2FwdHVyZU1vdXNlAFdhbnRDYXB0dXJlS2V5Ym9hcmQAV2FudFRleHRJbnB1dABXYW50U2V0TW91c2VQb3MAV2FudFNhdmVJbmlTZXR0aW5ncwBOYXZBY3RpdmUATmF2VmlzaWJsZQBGcmFtZXJhdGUATWV0cmljc1JlbmRlclZlcnRpY2VzAE1ldHJpY3NSZW5kZXJJbmRpY2VzAE1ldHJpY3NSZW5kZXJXaW5kb3dzAE1ldHJpY3NBY3RpdmVXaW5kb3dzAE1ldHJpY3NBY3RpdmVBbGxvY2F0aW9ucwBNb3VzZURlbHRhAF9nZXRBdF9Nb3VzZUNsaWNrZWRQb3MAX2dldEF0X01vdXNlRG93bkR1cmF0aW9uAF9nZXRBdF9LZXlzRG93bkR1cmF0aW9uAF9nZXRBdF9OYXZJbnB1dHNEb3duRHVyYXRpb24AUEs3SW1HdWlJTwBpaWlpZgBmaWlpAEltRm9udEF0bGFzAEFkZEZvbnREZWZhdWx0AEFkZEZvbnRGcm9tTWVtb3J5VFRGAENsZWFyVGV4RGF0YQBDbGVhcklucHV0RGF0YQBDbGVhckZvbnRzAENsZWFyAEJ1aWxkAElzQnVpbHQAR2V0VGV4RGF0YUFzQWxwaGE4AEdldFRleERhdGFBc1JHQkEzMgBHZXRHbHlwaFJhbmdlc0RlZmF1bHQAR2V0R2x5cGhSYW5nZXNLb3JlYW4AR2V0R2x5cGhSYW5nZXNKYXBhbmVzZQBHZXRHbHlwaFJhbmdlc0NoaW5lc2VGdWxsAEdldEdseXBoUmFuZ2VzQ2hpbmVzZVNpbXBsaWZpZWRDb21tb24AR2V0R2x5cGhSYW5nZXNDeXJpbGxpYwBHZXRHbHlwaFJhbmdlc1RoYWkATG9ja2VkAEZsYWdzAFRleElEAFRleERlc2lyZWRXaWR0aABUZXhHbHlwaFBhZGRpbmcAVGV4V2lkdGgAVGV4SGVpZ2h0AFRleFV2U2NhbGUAVGV4VXZXaGl0ZVBpeGVsAEl0ZXJhdGVGb250cwBwaXhlbHMAd2lkdGgAaGVpZ2h0AGJ5dGVzX3Blcl9waXhlbABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0loRUUAaWlpaWZpaQBGb250RGF0YQBidWZmZXIAYnl0ZU9mZnNldABieXRlTGVuZ3RoAFRPRE86IEZvbnREYXRhICV6dSAlenUKAEZvbnREYXRhT3duZWRCeUF0bGFzAEZvbnRObwBTaXplUGl4ZWxzAE92ZXJzYW1wbGVIAE92ZXJzYW1wbGVWAFBpeGVsU25hcEgAR2x5cGhFeHRyYVNwYWNpbmcAR2x5cGhPZmZzZXQAR2x5cGhSYW5nZXMAR2x5cGhNaW5BZHZhbmNlWABHbHlwaE1heEFkdmFuY2VYAE1lcmdlTW9kZQBSYXN0ZXJpemVyRmxhZ3MAUmFzdGVyaXplck11bHRpcGx5AE5hbWUAUEsxMUltRm9udEF0bGFzAEltRm9udABGb250U2l6ZQBTY2FsZQBEaXNwbGF5T2Zmc2V0AEl0ZXJhdGVHbHlwaHMARmFsbGJhY2tHbHlwaABGYWxsYmFja0FkdmFuY2VYAEZhbGxiYWNrQ2hhcgBDb25maWdEYXRhQ291bnQASXRlcmF0ZUNvbmZpZ0RhdGEAQXNjZW50AERlc2NlbnQATWV0cmljc1RvdGFsU3VyZmFjZQBDbGVhck91dHB1dERhdGEAQnVpbGRMb29rdXBUYWJsZQBGaW5kR2x5cGgARmluZEdseXBoTm9GYWxsYmFjawBTZXRGYWxsYmFja0NoYXIAR2V0Q2hhckFkdmFuY2UASXNMb2FkZWQAR2V0RGVidWdOYW1lAENhbGNUZXh0U2l6ZUEAQ2FsY1dvcmRXcmFwUG9zaXRpb25BAFJlbmRlckNoYXIAdmlpaWZpaWkAaWlpZmlmAGlpaWZmZmlpaQA8dW5rbm93bj4AUEs2SW1Gb250AFBLMTFJbUZvbnRHbHlwaAAxMUltRm9udEdseXBoAFAxMkltRm9udENvbmZpZwAxMkltRm9udENvbmZpZwBQMTFJbUZvbnRHbHlwaABJbUZvbnRDb25maWcARHN0Rm9udABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShJbUZvbnRDb25maWcgJiwgZW1zY3JpcHRlbjo6dmFsKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShjb25zdCBJbUZvbnRDb25maWcgJikgY29uc3QAUEsxMkltRm9udENvbmZpZwBJbUZvbnRHbHlwaABDb2RlcG9pbnQAQWR2YW5jZVgAWDAAWTAAWDEAWTEAVTAAVjAAVTEAVjEASW1EcmF3RGF0YQBJdGVyYXRlRHJhd0xpc3RzAFZhbGlkAENtZExpc3RzQ291bnQAVG90YWxJZHhDb3VudABUb3RhbFZ0eENvdW50AERpc3BsYXlQb3MARGVJbmRleEFsbEJ1ZmZlcnMAU2NhbGVDbGlwUmVjdHMAUEsxMEltRHJhd0RhdGEAUEsxMEltRHJhd0xpc3QASW1EcmF3TGlzdABJdGVyYXRlRHJhd0NtZHMASWR4QnVmZmVyAFZ0eEJ1ZmZlcgBQdXNoQ2xpcFJlY3RGdWxsU2NyZWVuAFB1c2hUZXh0dXJlSUQAUG9wVGV4dHVyZUlEAEdldENsaXBSZWN0TWluAEdldENsaXBSZWN0TWF4AEFkZExpbmUAQWRkUmVjdABBZGRSZWN0RmlsbGVkAEFkZFJlY3RGaWxsZWRNdWx0aUNvbG9yAEFkZFF1YWQAQWRkUXVhZEZpbGxlZABBZGRUcmlhbmdsZQBBZGRUcmlhbmdsZUZpbGxlZABBZGRDaXJjbGUAQWRkQ2lyY2xlRmlsbGVkAEFkZFRleHRfQQBBZGRUZXh0X0IAQWRkSW1hZ2UAQWRkSW1hZ2VRdWFkAEFkZEltYWdlUm91bmRlZABBZGRQb2x5bGluZQBBZGRDb252ZXhQb2x5RmlsbGVkAEFkZEJlemllckN1cnZlAFBhdGhDbGVhcgBQYXRoTGluZVRvAFBhdGhMaW5lVG9NZXJnZUR1cGxpY2F0ZQBQYXRoRmlsbENvbnZleABQYXRoU3Ryb2tlAFBhdGhBcmNUbwBQYXRoQXJjVG9GYXN0AFBhdGhCZXppZXJDdXJ2ZVRvAFBhdGhSZWN0AENoYW5uZWxzU3BsaXQAQ2hhbm5lbHNNZXJnZQBDaGFubmVsc1NldEN1cnJlbnQAQWRkQ2FsbGJhY2sAQWRkRHJhd0NtZABDbGVhckZyZWVNZW1vcnkAUHJpbVJlc2VydmUAUHJpbVJlY3QAUHJpbVJlY3RVVgBQcmltUXVhZFVWAFByaW1Xcml0ZVZ0eABQcmltV3JpdGVJZHgAUHJpbVZ0eABVcGRhdGVDbGlwUmVjdABVcGRhdGVUZXh0dXJlSUQAdmlpaWlpaWlpaWlpAHZpaWlpZmkAdmlpaWZmZmkAdmlpaWlmAHZpaWlpaWlpZmkAdmlpaWlpaWlpZmkAdmlpaWlpaWlpaWlpaQB2aWlpZmlpaWZpADIzaW1wb3J0X21heWJlX251bGxfdmFsdWVJNkltVmVjNEUAdmlpaWZpaQB2aWlpZmlpZgB2aWlpaWlpAHZpaWlpaWlmAHZpaWlpaWlpZgB2aWlpaWlpaWkAdmlpaWlpZmkAdmlpaWlpZmlmAHZpaWlpaWYATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJY0VFAFBLOUltRHJhd0NtZAA5SW1EcmF3Q21kAEltRHJhd0NtZABFbGVtQ291bnQAQ2xpcFJlY3QAVGV4dHVyZUlkAFA5SW1EcmF3Q21kAEltR3VpTGlzdENsaXBwZXIAU3RhcnRQb3NZAEl0ZW1zSGVpZ2h0AEl0ZW1zQ291bnQAU3RlcE5vAERpc3BsYXlTdGFydABEaXNwbGF5RW5kAFN0ZXAAUDE2SW1HdWlMaXN0Q2xpcHBlcgAxNkltR3VpTGlzdENsaXBwZXIAdmlpaWYAUEsxNkltR3VpTGlzdENsaXBwZXIASW1HdWlTaXplQ2FsbGJhY2tEYXRhAFBvcwBDdXJyZW50U2l6ZQBEZXNpcmVkU2l6ZQBQSzIxSW1HdWlTaXplQ2FsbGJhY2tEYXRhAEltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAEV2ZW50RmxhZwBFdmVudENoYXIARXZlbnRLZXkAQnVmAEJ1ZlRleHRMZW4AQnVmU2l6ZQBCdWZEaXJ0eQBDdXJzb3JQb3MAU2VsZWN0aW9uU3RhcnQAU2VsZWN0aW9uRW5kAERlbGV0ZUNoYXJzAEluc2VydENoYXJzAEhhc1NlbGVjdGlvbgBQSzI2SW1HdWlJbnB1dFRleHRDYWxsYmFja0RhdGEASW1WZWM0AFNldABDb3B5AEVxdWFscwBJbVZlYzIAUDZJbVZlYzIAV3JhcEltR3VpQ29udGV4dABQSzE2V3JhcEltR3VpQ29udGV4dABtYWxsaW5mbwBhcmVuYQBvcmRibGtzAHNtYmxrcwBoYmxrcwBoYmxraGQAdXNtYmxrcwBmc21ibGtzAHVvcmRibGtzAGZvcmRibGtzAGtlZXBjb3N0AHZvaWQAYm9vbABzdGQ6OnN0cmluZwBzdGQ6OmJhc2ljX3N0cmluZzx1bnNpZ25lZCBjaGFyPgBzdGQ6OndzdHJpbmcAZW1zY3JpcHRlbjo6dmFsAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgc2hvcnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgaW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludDE2X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQzMl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZyBkb3VibGU+AE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SWVFRQBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxkb3VibGU+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBsb25nPgBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0ltRUUAZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZz4ATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJbEVFAE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SXRFRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lzRUUATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJYUVFAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGNoYXI+AE5TdDNfXzIxMmJhc2ljX3N0cmluZ0l3TlNfMTFjaGFyX3RyYWl0c0l3RUVOU185YWxsb2NhdG9ySXdFRUVFAE5TdDNfXzIxMmJhc2ljX3N0cmluZ0loTlNfMTFjaGFyX3RyYWl0c0loRUVOU185YWxsb2NhdG9ySWhFRUVFAGRvdWJsZQBmbG9hdAB1bnNpZ25lZCBsb25nAGxvbmcAdW5zaWduZWQgaW50AGludAB1bnNpZ25lZCBzaG9ydABzaG9ydAB1bnNpZ25lZCBjaGFyAHNpZ25lZCBjaGFyAGNoYXIAAAECBAcDBgUALSsgICAwWDB4AChudWxsKQAtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBOQU4ALgBpbmZpbml0eQBuYW4AcndhAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXM6ICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXMAdGVybWluYXRpbmcgd2l0aCAlcyBmb3JlaWduIGV4Y2VwdGlvbgB0ZXJtaW5hdGluZwB1bmNhdWdodABTdDlleGNlcHRpb24ATjEwX19jeHhhYml2MTE2X19zaGltX3R5cGVfaW5mb0UAU3Q5dHlwZV9pbmZvAE4xMF9fY3h4YWJpdjEyMF9fc2lfY2xhc3NfdHlwZV9pbmZvRQBOMTBfX2N4eGFiaXYxMTdfX2NsYXNzX3R5cGVfaW5mb0UAcHRocmVhZF9vbmNlIGZhaWx1cmUgaW4gX19jeGFfZ2V0X2dsb2JhbHNfZmFzdCgpAGNhbm5vdCBjcmVhdGUgcHRocmVhZCBrZXkgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAY2Fubm90IHplcm8gb3V0IHRocmVhZCB2YWx1ZSBmb3IgX19jeGFfZ2V0X2dsb2JhbHMoKQB0ZXJtaW5hdGVfaGFuZGxlciB1bmV4cGVjdGVkbHkgcmV0dXJuZWQAU3QxMWxvZ2ljX2Vycm9yAFN0MTJsZW5ndGhfZXJyb3IATjEwX19jeHhhYml2MTE5X19wb2ludGVyX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19wYmFzZV90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjEyM19fZnVuZGFtZW50YWxfdHlwZV9pbmZvRQB2AFB2AERuAGIAYwBoAGEAcwB0AGkAagBsAG0AZgBkAE4xMF9fY3h4YWJpdjEyMV9fdm1pX2NsYXNzX3R5cGVfaW5mb0U=\";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}function getBinary(){try{if(Module[\"wasmBinary\"]){return new Uint8Array(Module[\"wasmBinary\"])}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(Module[\"readBinary\"]){return Module[\"readBinary\"](wasmBinaryFile)}else{throw\"both async and sync fetching of the wasm failed\"}}catch(err){abort(err)}}function getBinaryPromise(){if(!Module[\"wasmBinary\"]&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch===\"function\"){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()})}return new Promise(function(resolve,reject){resolve(getBinary())})}function createWasm(env){var info={\"env\":env,\"global\":{\"NaN\":NaN,Infinity:Infinity},\"global.Math\":Math,\"asm2wasm\":asm2wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module[\"asm\"]=exports;removeRunDependency(\"wasm-instantiate\")}addRunDependency(\"wasm-instantiate\");function receiveInstantiatedSource(output){receiveInstance(output[\"instance\"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err(\"failed to asynchronously prepare wasm: \"+reason);abort(reason)})}function instantiateAsync(){if(!Module[\"wasmBinary\"]&&typeof WebAssembly.instantiateStreaming===\"function\"&&!isDataURI(wasmBinaryFile)&&typeof fetch===\"function\"){return WebAssembly.instantiateStreaming(fetch(wasmBinaryFile,{credentials:\"same-origin\"}),info).then(receiveInstantiatedSource,function(reason){err(\"wasm streaming compile failed: \"+reason);err(\"falling back to ArrayBuffer instantiation\");instantiateArrayBuffer(receiveInstantiatedSource)})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module[\"instantiateWasm\"]){try{return Module[\"instantiateWasm\"](info,receiveInstance)}catch(e){err(\"Module.instantiateWasm callback failed with error: \"+e);return false}}instantiateAsync();return{}}Module[\"asm\"]=function(global,env,providedBuffer){env[\"memory\"]=wasmMemory;env[\"table\"]=wasmTable=new WebAssembly.Table({\"initial\":1442,\"maximum\":1442,\"element\":\"anyfunc\"});env[\"__memory_base\"]=1024;env[\"__table_base\"]=0;var exports=createWasm(env);return exports};__ATINIT__.push({func:function(){globalCtors()}});function ___cxa_allocate_exception(size){return _malloc(size)}function __ZSt18uncaught_exceptionv(){return!!__ZSt18uncaught_exceptionv.uncaught_exception}function ___cxa_free_exception(ptr){try{return _free(ptr)}catch(e){}}var EXCEPTIONS={last:0,caught:[],infos:{},deAdjust:function(adjusted){if(!adjusted||EXCEPTIONS.infos[adjusted])return adjusted;for(var key in EXCEPTIONS.infos){var ptr=+key;var adj=EXCEPTIONS.infos[ptr].adjusted;var len=adj.length;for(var i=0;i0);info.refcount--;if(info.refcount===0&&!info.rethrown){if(info.destructor){Module[\"dynCall_vi\"](info.destructor,ptr)}delete EXCEPTIONS.infos[ptr];___cxa_free_exception(ptr)}},clearRef:function(ptr){if(!ptr)return;var info=EXCEPTIONS.infos[ptr];info.refcount=0}};function ___cxa_throw(ptr,type,destructor){EXCEPTIONS.infos[ptr]={ptr:ptr,adjusted:[ptr],type:type,destructor:destructor,refcount:0,caught:false,rethrown:false};EXCEPTIONS.last=ptr;if(!(\"uncaught_exception\"in __ZSt18uncaught_exceptionv)){__ZSt18uncaught_exceptionv.uncaught_exception=1}else{__ZSt18uncaught_exceptionv.uncaught_exception++}throw ptr}function ___lock(){}var PATH={splitPath:function(filename){var splitPathRe=/^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:function(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:function(path){var isAbsolute=path.charAt(0)===\"/\",trailingSlash=path.substr(-1)===\"/\";path=PATH.normalizeArray(path.split(\"/\").filter(function(p){return!!p}),!isAbsolute).join(\"/\");if(!path&&!isAbsolute){path=\".\"}if(path&&trailingSlash){path+=\"/\"}return(isAbsolute?\"/\":\"\")+path},dirname:function(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:function(path){if(path===\"/\")return\"/\";var lastSlash=path.lastIndexOf(\"/\");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},extname:function(path){return PATH.splitPath(path)[3]},join:function(){var paths=Array.prototype.slice.call(arguments,0);return PATH.normalize(paths.join(\"/\"))},join2:function(l,r){return PATH.normalize(l+\"/\"+r)}};var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0}else{buffer.push(curr)}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get()}};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall145(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();return SYSCALLS.doReadv(stream,iov,iovcnt)}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j>2]=value;return value}function ___syscall221(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___unlock(){}function getShiftFromSize(size){switch(size){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError(\"Unknown type size: \"+size)}}function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<256;++i){codes[i]=String.fromCharCode(i)}embind_charCodes=codes}var embind_charCodes=undefined;function readLatin1String(ptr){var ret=\"\";var c=ptr;while(HEAPU8[c]){ret+=embind_charCodes[HEAPU8[c++]]}return ret}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return\"_unknown\"}name=name.replace(/[^a-zA-Z0-9_]/g,\"$\");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return\"_\"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return new Function(\"body\",\"return function \"+name+\"() {\\n\"+' \"use strict\";'+\" return body.apply(this, arguments);\\n\"+\"};\\n\")(body)}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+\"\\n\"+stack.replace(/^Error(:[^\\n]*)?\\n/,\"\")}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+\": \"+this.message}};return errorClass}var BindingError=undefined;function throwBindingError(message){throw new BindingError(message)}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError(\"Mismatched type converter count\")}for(var i=0;i>shift])},destructorFunction:null})}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return{count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+\" instance already deleted\")}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr)}else{$$.ptrType.registeredClass.rawDestructor($$.ptr)}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$)}}function attachFinalizer(handle){if(\"undefined\"===typeof FinalizationGroup){attachFinalizer=function(handle){return handle};return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn(\"object already deleted: \"+$$.ptr)}else{releaseClassHandle($$)}}});attachFinalizer=function(handle){finalizationGroup.register(handle,handle.$$,handle.$$);return handle};detachFinalizer=function(handle){finalizationGroup.unregister(handle.$$)};return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError(\"Object already scheduled for deletion\")}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined}}function ClassHandle_isDeleted(){return!this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj[\"delete\"]()}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError(\"Object already scheduled for deletion\")}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes)}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype[\"isAliasOf\"]=ClassHandle_isAliasOf;ClassHandle.prototype[\"clone\"]=ClassHandle_clone;ClassHandle.prototype[\"delete\"]=ClassHandle_delete;ClassHandle.prototype[\"isDeleted\"]=ClassHandle_isDeleted;ClassHandle.prototype[\"deleteLater\"]=ClassHandle_deleteLater}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError(\"Function '\"+humanName+\"' called with an invalid number of arguments (\"+arguments.length+\") - expects one of (\"+proto[methodName].overloadTable+\")!\")}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError(\"Cannot register public name '\"+name+\"' twice\")}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError(\"Cannot register multiple overloads of a function with the same number of arguments (\"+numArguments+\")!\")}Module[name].overloadTable[numArguments]=value}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[]}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError(\"Expected null or instance of \"+desiredClass.name+\", got an instance of \"+ptrClass.name)}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr)}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError(\"Cannot convert argument of type \"+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+\" to parameter type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError(\"Passing raw pointer to smart pointer is illegal\")}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{throwBindingError(\"Cannot convert argument of type \"+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+\" to parameter type \"+this.name)}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{var clonedHandle=handle[\"clone\"]();ptr=this.rawShare(ptr,__emval_register(function(){clonedHandle[\"delete\"]()}));if(destructors!==null){destructors.push(this.rawDestructor,ptr)}}break;default:throwBindingError(\"Unsupporting sharing policy\")}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}if(handle.$$.ptrType.isConst){throwBindingError(\"Cannot convert argument of type \"+handle.$$.ptrType.name+\" to parameter type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function simpleReadValueFromPointer(pointer){return this[\"fromWireType\"](HEAPU32[pointer>>2])}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr)}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr)}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle[\"delete\"]()}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k])}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes)}}function init_embind(){Module[\"getInheritedInstanceCount\"]=getInheritedInstanceCount;Module[\"getLiveInheritedInstances\"]=getLiveInheritedInstances;Module[\"flushPendingDeletes\"]=flushPendingDeletes;Module[\"setDelayFunction\"]=setDelayFunction}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError(\"ptr should not be undefined\")}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError(\"makeClassHandle requires ptr and ptrType\")}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError(\"Both smartPtrType and smartPtr must be specified\")}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance[\"clone\"]()}else{var rv=registeredInstance[\"clone\"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType}else{toType=registeredPointerRecord.pointerType}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype[\"argPackAdvance\"]=8;RegisteredPointer.prototype[\"readValueFromPointer\"]=simpleReadValueFromPointer;RegisteredPointer.prototype[\"deleteObject\"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype[\"fromWireType\"]=RegisteredPointer_fromWireType}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this[\"toWireType\"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null}else{this[\"toWireType\"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null}}else{this[\"toWireType\"]=genericPointerToWireType}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError(\"Replacing nonexistant public symbol\")}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value}else{Module[name]=value;Module[name].argCount=numArguments}}function embind__requireFunction(signature,rawFunction){signature=readLatin1String(signature);function makeDynCaller(dynCall){var args=[];for(var i=1;i>2)+i])}return array}function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr)}}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName=\"constructor \"+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[]}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError(\"Cannot register multiple constructors with identical number of parameters (\"+(argCount-1)+\") for class '\"+classType.name+\"'! Overload resolution is currently only performed using the parameter count, not actual type info!\")}classType.registeredClass.constructor_body[argCount-1]=function unboundTypeHandler(){throwUnboundTypeError(\"Cannot construct \"+classType.name+\" due to unbound types\",rawArgTypes)};whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){classType.registeredClass.constructor_body[argCount-1]=function constructor_body(){if(arguments.length!==argCount-1){throwBindingError(humanName+\" called with \"+arguments.length+\" arguments, expected \"+(argCount-1))}var destructors=[];var args=new Array(argCount);args[0]=rawConstructor;for(var i=1;i0?\", \":\"\")+argsListWired}invokerFnBody+=(returns?\"var rv = \":\"\")+\"invoker(fn\"+(argsListWired.length>0?\", \":\"\")+argsListWired+\");\\n\";if(needsDestructorStack){invokerFnBody+=\"runDestructors(destructors);\\n\"}else{for(var i=isClassMethodFunc?1:2;i4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle)}}function count_emval_handles(){var count=0;for(var i=5;i>2])};case 3:return function(pointer){return this[\"fromWireType\"](HEAPF64[pointer>>3])};default:throw new TypeError(\"Unknown float type: \"+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,\"fromWireType\":function(value){return value},\"toWireType\":function(destructors,value){if(typeof value!==\"number\"&&typeof value!==\"boolean\"){throw new TypeError('Cannot convert \"'+_embind_repr(value)+'\" to '+this.name)}return value},\"argPackAdvance\":8,\"readValueFromPointer\":floatReadValueFromPointer(name,shift),destructorFunction:null})}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError(\"Cannot call \"+name+\" due to unbound types\",argTypes)},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return[]})}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError(\"Unknown integer type: \"+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295}var shift=getShiftFromSize(size);var fromWireType=function(value){return value};if(minRange===0){var bitshift=32-8*size;fromWireType=function(value){return value<>>bitshift}}var isUnsignedType=name.indexOf(\"unsigned\")!=-1;registerType(primitiveType,{name:name,\"fromWireType\":fromWireType,\"toWireType\":function(destructors,value){if(typeof value!==\"number\"&&typeof value!==\"boolean\"){throw new TypeError('Cannot convert \"'+_embind_repr(value)+'\" to '+this.name)}if(valuemaxRange){throw new TypeError('Passing a number \"'+_embind_repr(value)+'\" from JS side to C/C++ side to an argument of type \"'+name+'\", which is outside the valid range ['+minRange+\", \"+maxRange+\"]!\")}return isUnsignedType?value>>>0:value|0},\"argPackAdvance\":8,\"readValueFromPointer\":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null})}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(heap[\"buffer\"],data,size)}name=readLatin1String(name);registerType(rawType,{name:name,\"fromWireType\":decodeMemoryView,\"argPackAdvance\":8,\"readValueFromPointer\":decodeMemoryView},{ignoreDuplicateRegistrations:true})}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name===\"std::string\";registerType(rawType,{name:name,\"fromWireType\":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var endChar=HEAPU8[value+4+length];var endCharSwap=0;if(endChar!=0){endCharSwap=endChar;HEAPU8[value+4+length]=0}var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(HEAPU8[currentBytePtr]==0){var stringSegment=UTF8ToString(decodeStartPtr);if(str===undefined)str=stringSegment;else{str+=String.fromCharCode(0);str+=stringSegment}decodeStartPtr=currentBytePtr+1}}if(endCharSwap!=0)HEAPU8[value+4+length]=endCharSwap}else{var a=new Array(length);for(var i=0;i>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1)}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError(\"String has UTF-16 code units that do not fit in 8 bits\")}HEAPU8[ptr+4+i]=charCode}}else{for(var i=0;i>2];var a=new Array(length);var start=value+4>>shift;for(var i=0;i>2]=length;var start=ptr+4>>shift;for(var i=0;i>2]=rd;return returnType[\"toWireType\"](destructors,handle)}function __emval_lookupTypes(argCount,argTypes,argWireTypes){var a=new Array(argCount);for(var i=0;i>2)+i],\"parameter \"+i)}return a}function __emval_call(handle,argCount,argTypes,argv){handle=requireHandle(handle);var types=__emval_lookupTypes(argCount,argTypes);var args=new Array(argCount);for(var i=0;i4){emval_handle_array[handle].refcount+=1}}function __emval_new_array(){return __emval_register([])}function __emval_new_cstring(v){return __emval_register(getStringOrSymbol(v))}function __emval_new_object(){return __emval_register({})}function __emval_run_destructors(handle){var destructors=emval_handle_array[handle].value;runDestructors(destructors);__emval_decref(handle)}function __emval_set_property(handle,key,value){handle=requireHandle(handle);key=requireHandle(key);value=requireHandle(value);handle[key]=value}function __emval_strictly_equals(first,second){first=requireHandle(first);second=requireHandle(second);return first===second}function __emval_take_value(type,argv){type=requireRegisteredType(type,\"_emval_take_value\");var v=type[\"readValueFromPointer\"](argv);return __emval_register(v)}function __emval_typeof(handle){handle=requireHandle(handle);return __emval_register(typeof handle)}function _abort(){Module[\"abort\"]()}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest)}function abortOnCannotGrowMemory(requestedSize){abort(\"OOM\")}function _emscripten_resize_heap(requestedSize){abortOnCannotGrowMemory(requestedSize)}embind_init_charCodes();BindingError=Module[\"BindingError\"]=extendError(Error,\"BindingError\");InternalError=Module[\"InternalError\"]=extendError(Error,\"InternalError\");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module[\"UnboundTypeError\"]=extendError(Error,\"UnboundTypeError\");init_emval();var ASSERTIONS=false;function intArrayToString(array){var ret=[];for(var i=0;i255){if(ASSERTIONS){assert(false,\"Character code \"+chr+\" (\"+String.fromCharCode(chr)+\") at offset \"+i+\" not in 0x00-0xFF.\")}chr&=255}ret.push(String.fromCharCode(chr))}return ret.join(\"\")}var decodeBase64=typeof atob===\"function\"?atob:function(input){var keyStr=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";var output=\"\";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\\+\\/\\=]/g,\"\");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(i0){return}preRun();if(runDependencies>0)return;if(Module[\"calledRun\"])return;function doRun(){if(Module[\"calledRun\"])return;Module[\"calledRun\"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module[\"onRuntimeInitialized\"])Module[\"onRuntimeInitialized\"]();postRun()}if(Module[\"setStatus\"]){Module[\"setStatus\"](\"Running...\");setTimeout(function(){setTimeout(function(){Module[\"setStatus\"](\"\")},1);doRun()},1)}else{doRun()}}Module[\"run\"]=run;function abort(what){if(Module[\"onAbort\"]){Module[\"onAbort\"](what)}if(what!==undefined){out(what);err(what);what=JSON.stringify(what)}else{what=\"\"}ABORT=true;EXITSTATUS=1;throw\"abort(\"+what+\"). Build with -s ASSERTIONS=1 for more info.\"}Module[\"abort\"]=abort;if(Module[\"preInit\"]){if(typeof Module[\"preInit\"]==\"function\")Module[\"preInit\"]=[Module[\"preInit\"]];while(Module[\"preInit\"].length>0){Module[\"preInit\"].pop()()}}Module[\"noExitRuntime\"]=true;run();\n\n\n return Module\n}\n);\n})();\nif (typeof exports === 'object' && typeof module === 'object')\n module.exports = Module;\n else if (typeof define === 'function' && define['amd'])\n define([], function() { return Module; });\n else if (typeof exports === 'object')\n exports[\"Module\"] = Module;\n ","export interface XY { x: number, y: number; }\nexport interface XYZ extends XY { z: number; }\nexport interface XYZW extends XYZ { w: number; }\n\nexport interface RGB { r: number; g: number; b: number; }\nexport interface RGBA extends RGB { a: number; }\n\nimport * as Bind from \"./bind-imgui\";\nexport { Bind };\n\nlet bind: Bind.Module;\nexport default async function(value?: Partial): Promise {\n return new Promise((resolve: () => void) => {\n Bind.default(value).then((value: Bind.Module): void => {\n bind = value;\n resolve();\n });\n });\n}\nexport { bind };\n\nfunction import_Scalar(sca: XY | XYZ | XYZW | Bind.ImAccess | Bind.ImScalar | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImScalar {\n if (Array.isArray(sca)) { return [ sca[0] ]; }\n if (typeof sca === \"function\") { return [ sca() ]; }\n return [ sca.x ];\n}\n\nfunction export_Scalar(tuple: Bind.ImScalar, sca: XY | XYZ | XYZW | Bind.ImAccess | Bind.ImScalar | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(sca)) { sca[0] = tuple[0]; return; }\n if (typeof sca === \"function\") { sca(tuple[0]); return; }\n sca.x = tuple[0];\n}\n\nfunction import_Vector2(vec: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple2 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1] ]; }\n return [ vec.x, vec.y ];\n}\n\nfunction export_Vector2(tuple: Bind.ImTuple2, vec: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; return; }\n vec.x = tuple[0]; vec.y = tuple[1];\n}\n\nfunction import_Vector3(vec: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple3 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1], vec[2] ]; }\n return [ vec.x, vec.y, vec.z ];\n}\n\nfunction export_Vector3(tuple: Bind.ImTuple3, vec: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; vec[2] = tuple[2]; return; }\n vec.x = tuple[0]; vec.y = tuple[1]; vec.z = tuple[2];\n}\n\nfunction import_Vector4(vec: XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple4 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1], vec[2], vec[3] || 0 ]; }\n return [ vec.x, vec.y, vec.z, vec.w ];\n}\n\nfunction export_Vector4(tuple: Bind.ImTuple4, vec: XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; vec[2] = tuple[2]; vec[3] = tuple[3]; return; }\n vec.x = tuple[0]; vec.y = tuple[1]; vec.z = tuple[2]; vec.w = tuple[3];\n}\n\nfunction import_Color3(col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple3 {\n if (Array.isArray(col)) { return [ col[0], col[1], col[2] ]; }\n if (\"r\" in col) { return [ col.r, col.g, col.b ]; }\n return [ col.x, col.y, col.z ];\n}\n\nfunction export_Color3(tuple: Bind.ImTuple3, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(col)) { col[0] = tuple[0]; col[1] = tuple[1]; col[2] = tuple[2]; return; }\n if (\"r\" in col) { col.r = tuple[0]; col.g = tuple[1]; col.b = tuple[2]; return; }\n col.x = tuple[0]; col.y = tuple[1]; col.z = tuple[2];\n}\n\nfunction import_Color4(col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4 | RGBA): Bind.ImTuple4 {\n if (Array.isArray(col)) { return [ col[0], col[1], col[2], col[3] ]; }\n if (\"r\" in col) { return [ col.r, col.g, col.b, col.a ]; }\n return [ col.x, col.y, col.z, col.w ];\n}\n\nfunction export_Color4(tuple: Bind.ImTuple4, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4 | RGBA): void {\n if (Array.isArray(col)) { col[0] = tuple[0]; col[1] = tuple[1]; col[2] = tuple[2]; return; }\n if (\"r\" in col) { col.r = tuple[0]; col.g = tuple[1]; col.b = tuple[2]; return; }\n col.x = tuple[0]; col.y = tuple[1]; col.z = tuple[2];\n}\n\nimport * as config from \"./imconfig\";\n\nexport const IMGUI_VERSION: string = \"1.71\"; // bind.IMGUI_VERSION;\nexport const IMGUI_VERSION_NUM: number = 17100; // bind.IMGUI_VERSION_NUM;\n\n// #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert))\nexport function IMGUI_CHECKVERSION(): boolean { return DebugCheckVersionAndDataLayout(IMGUI_VERSION, bind.ImGuiIOSize, bind.ImGuiStyleSize, bind.ImVec2Size, bind.ImVec4Size, bind.ImDrawVertSize, bind.ImDrawIdxSize); }\n\nexport function IM_ASSERT(_EXPR: boolean | number): void { if (!_EXPR) { throw new Error(); } }\n\nexport function IM_ARRAYSIZE(_ARR: ArrayLike | ImStringBuffer): number {\n if (_ARR instanceof ImStringBuffer) {\n return _ARR.size;\n } else {\n return _ARR.length;\n }\n}\n\nexport class ImStringBuffer {\n constructor(public size: number, public buffer: string = \"\") {}\n}\n\nexport { ImAccess } from \"./bind-imgui\";\nexport { ImScalar } from \"./bind-imgui\";\nexport { ImTuple2 } from \"./bind-imgui\";\nexport { ImTuple3 } from \"./bind-imgui\";\nexport { ImTuple4 } from \"./bind-imgui\";\n\nexport type ImTextureID = WebGLTexture;\n\n// Flags for ImGui::Begin()\nexport { ImGuiWindowFlags as WindowFlags };\nexport enum ImGuiWindowFlags {\n None = 0,\n NoTitleBar = 1 << 0, // Disable title-bar\n NoResize = 1 << 1, // Disable user resizing with the lower-right grip\n NoMove = 1 << 2, // Disable user moving the window\n NoScrollbar = 1 << 3, // Disable scrollbars (window can still scroll with mouse or programatically)\n NoScrollWithMouse = 1 << 4, // Disable user vertically scrolling with mouse wheel. On child window, mouse wheel will be forwarded to the parent unless NoScrollbar is also set.\n NoCollapse = 1 << 5, // Disable user collapsing window by double-clicking on it\n AlwaysAutoResize = 1 << 6, // Resize every window to its content every frame\n NoBackground = 1 << 7, // Disable drawing background color (WindowBg, etc.) and outside border. Similar as using SetNextWindowBgAlpha(0.0f).\n NoSavedSettings = 1 << 8, // Never load/save settings in .ini file\n NoMouseInputs = 1 << 9, // Disable catching mouse or keyboard inputs, hovering test with pass through.\n MenuBar = 1 << 10, // Has a menu-bar\n HorizontalScrollbar = 1 << 11, // Allow horizontal scrollbar to appear (off by default). You may use SetNextWindowContentSize(ImVec2(width,0.0f)); prior to calling Begin() to specify width. Read code in imgui_demo in the \"Horizontal Scrolling\" section.\n NoFocusOnAppearing = 1 << 12, // Disable taking focus when transitioning from hidden to visible state\n NoBringToFrontOnFocus = 1 << 13, // Disable bringing window to front when taking focus (e.g. clicking on it or programatically giving it focus)\n AlwaysVerticalScrollbar= 1 << 14, // Always show vertical scrollbar (even if ContentSize.y < Size.y)\n AlwaysHorizontalScrollbar= 1 << 15, // Always show horizontal scrollbar (even if ContentSize.x < Size.x)\n AlwaysUseWindowPadding = 1 << 16, // Ensure child windows without border uses style.WindowPadding (ignored by default for non-bordered child windows, because more convenient)\n NoNavInputs = 1 << 18, // No gamepad/keyboard navigation within the window\n NoNavFocus = 1 << 19, // No focusing toward this window with gamepad/keyboard navigation (e.g. skipped by CTRL+TAB)\n UnsavedDocument = 1 << 20, // Append '*' to title without affecting the ID, as a convenience to avoid using the ### operator. When used in a tab/docking context, tab is selected on closure and closure is deferred by one frame to allow code to cancel the closure (with a confirmation popup, etc.) without flicker.\n NoNav = NoNavInputs | NoNavFocus,\n NoDecoration = NoTitleBar | NoResize | NoScrollbar | NoCollapse,\n NoInputs = NoMouseInputs | NoNavInputs | NoNavFocus,\n\n // [Internal]\n NavFlattened = 1 << 23, // (WIP) Allow gamepad/keyboard navigation to cross over parent border to this child (only use on child that have no scrolling!)\n ChildWindow = 1 << 24, // Don't use! For internal use by BeginChild()\n Tooltip = 1 << 25, // Don't use! For internal use by BeginTooltip()\n Popup = 1 << 26, // Don't use! For internal use by BeginPopup()\n Modal = 1 << 27, // Don't use! For internal use by BeginPopupModal()\n ChildMenu = 1 << 28, // Don't use! For internal use by BeginMenu()\n}\n\n// Flags for ImGui::InputText()\nexport { ImGuiInputTextFlags as InputTextFlags };\nexport enum ImGuiInputTextFlags {\n None = 0,\n CharsDecimal = 1 << 0, // Allow 0123456789.+-*/\n CharsHexadecimal = 1 << 1, // Allow 0123456789ABCDEFabcdef\n CharsUppercase = 1 << 2, // Turn a..z into A..Z\n CharsNoBlank = 1 << 3, // Filter out spaces, tabs\n AutoSelectAll = 1 << 4, // Select entire text when first taking mouse focus\n EnterReturnsTrue = 1 << 5, // Return 'true' when Enter is pressed (as opposed to when the value was modified)\n CallbackCompletion = 1 << 6, // Call user function on pressing TAB (for completion handling)\n CallbackHistory = 1 << 7, // Call user function on pressing Up/Down arrows (for history handling)\n CallbackAlways = 1 << 8, // Call user function every time. User code may query cursor position, modify text buffer.\n CallbackCharFilter = 1 << 9, // Call user function to filter character. Modify data->EventChar to replace/filter input, or return 1 to discard character.\n AllowTabInput = 1 << 10, // Pressing TAB input a '\\t' character into the text field\n CtrlEnterForNewLine = 1 << 11, // In multi-line mode, unfocus with Enter, add new line with Ctrl+Enter (default is opposite: unfocus with Ctrl+Enter, add line with Enter).\n NoHorizontalScroll = 1 << 12, // Disable following the cursor horizontally\n AlwaysInsertMode = 1 << 13, // Insert mode\n ReadOnly = 1 << 14, // Read-only mode\n Password = 1 << 15, // Password mode, display all characters as '*'\n NoUndoRedo = 1 << 16, // Disable undo/redo. Note that input text owns the text data while active, if you want to provide your own undo/redo stack you need e.g. to call ClearActiveID().\n CharsScientific = 1 << 17, // Allow 0123456789.+-*/eE (Scientific notation input)\n CallbackResize = 1 << 18, // Allow buffer capacity resize + notify when the string wants to be resized (for string types which hold a cache of their Size) (see misc/stl/imgui_stl.h for an example of using this)\n // [Internal]\n Multiline = 1 << 20, // For internal use by InputTextMultiline()\n NoMarkEdited = 1 << 21, // For internal use by functions using InputText() before reformatting data\n}\n\n// Flags for ImGui::TreeNodeEx(), ImGui::CollapsingHeader*()\nexport { ImGuiTreeNodeFlags as TreeNodeFlags };\nexport enum ImGuiTreeNodeFlags {\n None = 0,\n Selected = 1 << 0, // Draw as selected\n Framed = 1 << 1, // Full colored frame (e.g. for CollapsingHeader)\n AllowItemOverlap = 1 << 2, // Hit testing to allow subsequent widgets to overlap this one\n NoTreePushOnOpen = 1 << 3, // Don't do a TreePush() when open (e.g. for CollapsingHeader) = no extra indent nor pushing on ID stack\n NoAutoOpenOnLog = 1 << 4, // Don't automatically and temporarily open node when Logging is active (by default logging will automatically open tree nodes)\n DefaultOpen = 1 << 5, // Default node to be open\n OpenOnDoubleClick = 1 << 6, // Need double-click to open node\n OpenOnArrow = 1 << 7, // Only open when clicking on the arrow part. If OpenOnDoubleClick is also set, single-click arrow or double-click all box to open.\n Leaf = 1 << 8, // No collapsing, no arrow (use as a convenience for leaf nodes).\n Bullet = 1 << 9, // Display a bullet instead of arrow\n FramePadding = 1 << 10, // Use FramePadding (even for an unframed text node) to vertically align text baseline to regular widget height. Equivalent to calling AlignTextToFramePadding().\n //SpanAllAvailWidth = 1 << 11, // FIXME: TODO: Extend hit box horizontally even if not framed\n //NoScrollOnOpen = 1 << 12, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible\n NavLeftJumpsBackHere = 1 << 13, // (WIP) Nav: left direction may move to this TreeNode() from any of its child (items submitted between TreeNode and TreePop)\n CollapsingHeader = Framed | NoTreePushOnOpen | NoAutoOpenOnLog,\n}\n\n// Flags for ImGui::Selectable()\nexport { ImGuiSelectableFlags as SelectableFlags };\nexport enum ImGuiSelectableFlags {\n None = 0,\n DontClosePopups = 1 << 0, // Clicking this don't close parent popup window\n SpanAllColumns = 1 << 1, // Selectable frame can span all columns (text will still fit in current column)\n AllowDoubleClick = 1 << 2, // Generate press events on double clicks too\n Disabled = 1 << 3 // Cannot be selected, display greyed out text\n}\n\n// Flags for ImGui::BeginCombo()\nexport { ImGuiComboFlags as ComboFlags };\nexport enum ImGuiComboFlags {\n None = 0,\n PopupAlignLeft = 1 << 0, // Align the popup toward the left by default\n HeightSmall = 1 << 1, // Max ~4 items visible. Tip: If you want your combo popup to be a specific size you can use SetNextWindowSizeConstraints() prior to calling BeginCombo()\n HeightRegular = 1 << 2, // Max ~8 items visible (default)\n HeightLarge = 1 << 3, // Max ~20 items visible\n HeightLargest = 1 << 4, // As many fitting items as possible\n NoArrowButton = 1 << 5, // Display on the preview box without the square arrow button\n NoPreview = 1 << 6, // Display only a square arrow button\n HeightMask_ = HeightSmall | HeightRegular | HeightLarge | HeightLargest,\n}\n\n// Flags for ImGui::BeginTabBar()\nexport { ImGuiTabBarFlags as TabBarFlags };\nexport enum ImGuiTabBarFlags {\n None = 0,\n Reorderable = 1 << 0, // Allow manually dragging tabs to re-order them + New tabs are appended at the end of list\n AutoSelectNewTabs = 1 << 1, // Automatically select new tabs when they appear\n TabListPopupButton = 1 << 2,\n NoCloseWithMiddleMouseButton = 1 << 3, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.\n NoTabListScrollingButtons = 1 << 4,\n NoTooltip = 1 << 5, // Disable tooltips when hovering a tab\n FittingPolicyResizeDown = 1 << 6, // Resize tabs when they don't fit\n FittingPolicyScroll = 1 << 7, // Add scroll buttons when tabs don't fit\n FittingPolicyMask_ = FittingPolicyResizeDown | FittingPolicyScroll,\n FittingPolicyDefault_ = FittingPolicyResizeDown\n};\n\n// Flags for ImGui::BeginTabItem()\nexport { ImGuiTabItemFlags as TabItemFlags };\nexport enum ImGuiTabItemFlags\n{\n ImGuiTabItemFlags_None = 0,\n ImGuiTabItemFlags_UnsavedDocument = 1 << 0, // Append '*' to title without affecting the ID, as a convenience to avoid using the ### operator. Also: tab is selected on closure and closure is deferred by one frame to allow code to undo it without flicker.\n ImGuiTabItemFlags_SetSelected = 1 << 1, // Trigger flag to programatically make the tab selected when calling BeginTabItem()\n ImGuiTabItemFlags_NoCloseWithMiddleMouseButton = 1 << 2, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.\n ImGuiTabItemFlags_NoPushId = 1 << 3 // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem()\n};\n\n// Flags for ImGui::IsWindowFocused()\nexport { ImGuiFocusedFlags as FocusedFlags };\nexport enum ImGuiFocusedFlags {\n None = 0,\n ChildWindows = 1 << 0, // IsWindowFocused(): Return true if any children of the window is focused\n RootWindow = 1 << 1, // IsWindowFocused(): Test from root window (top most parent of the current hierarchy)\n AnyWindow = 1 << 2, // IsWindowFocused(): Return true if any window is focused\n RootAndChildWindows = RootWindow | ChildWindows,\n}\n\n// Flags for ImGui::IsItemHovered(), ImGui::IsWindowHovered()\nexport { ImGuiHoveredFlags as HoveredFlags };\nexport enum ImGuiHoveredFlags {\n None = 0, // Return true if directly over the item/window, not obstructed by another window, not obstructed by an active popup or modal blocking inputs under them.\n ChildWindows = 1 << 0, // IsWindowHovered() only: Return true if any children of the window is hovered\n RootWindow = 1 << 1, // IsWindowHovered() only: Test from root window (top most parent of the current hierarchy)\n AnyWindow = 1 << 2, // IsWindowHovered() only: Return true if any window is hovered\n AllowWhenBlockedByPopup = 1 << 3, // Return true even if a popup window is normally blocking access to this item/window\n //AllowWhenBlockedByModal = 1 << 4, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet.\n AllowWhenBlockedByActiveItem = 1 << 5, // Return true even if an active item is blocking access to this item/window. Useful for Drag and Drop patterns.\n AllowWhenOverlapped = 1 << 6, // Return true even if the position is overlapped by another window\n AllowWhenDisabled = 1 << 7, // Return true even if the item is disabled\n RectOnly = AllowWhenBlockedByPopup | AllowWhenBlockedByActiveItem | AllowWhenOverlapped,\n RootAndChildWindows = RootWindow | ChildWindows,\n}\n\n// Flags for ImGui::BeginDragDropSource(), ImGui::AcceptDragDropPayload()\nexport { ImGuiDragDropFlags as DragDropFlags };\nexport enum ImGuiDragDropFlags {\n // BeginDragDropSource() flags\n None = 0,\n SourceNoPreviewTooltip = 1 << 0, // By default, a successful call to BeginDragDropSource opens a tooltip so you can display a preview or description of the source contents. This flag disable this behavior.\n SourceNoDisableHover = 1 << 1, // By default, when dragging we clear data so that IsItemHovered() will return true, to avoid subsequent user code submitting tooltips. This flag disable this behavior so you can still call IsItemHovered() on the source item.\n SourceNoHoldToOpenOthers = 1 << 2, // Disable the behavior that allows to open tree nodes and collapsing header by holding over them while dragging a source item.\n SourceAllowNullID = 1 << 3, // Allow items such as Text(), Image() that have no unique identifier to be used as drag source, by manufacturing a temporary identifier based on their window-relative position. This is extremely unusual within the dear imgui ecosystem and so we made it explicit.\n SourceExtern = 1 << 4, // External source (from outside of imgui), won't attempt to read current item/window info. Will always return true. Only one Extern source can be active simultaneously.\n SourceAutoExpirePayload = 1 << 5, // Automatically expire the payload if the source cease to be submitted (otherwise payloads are persisting while being dragged)\n // AcceptDragDropPayload() flags\n AcceptBeforeDelivery = 1 << 10, // AcceptDragDropPayload() will returns true even before the mouse button is released. You can then call IsDelivery() to test if the payload needs to be delivered.\n AcceptNoDrawDefaultRect = 1 << 11, // Do not draw the default highlight rectangle when hovering over target.\n AcceptNoPreviewTooltip = 1 << 12, // Request hiding the BeginDragDropSource tooltip from the BeginDragDropTarget site.\n AcceptPeekOnly = AcceptBeforeDelivery | AcceptNoDrawDefaultRect, // For peeking ahead and inspecting the payload before delivery.\n}\n\n// Standard Drag and Drop payload types. You can define you own payload types using 12-characters long strings. Types starting with '_' are defined by Dear ImGui.\nexport const IMGUI_PAYLOAD_TYPE_COLOR_3F: string = \"_COL3F\"; // float[3] // Standard type for colors, without alpha. User code may use this type.\nexport const IMGUI_PAYLOAD_TYPE_COLOR_4F: string = \"_COL4F\"; // float[4] // Standard type for colors. User code may use this type.\n\n// A primary data type\nexport { ImGuiDataType as DataType };\nexport enum ImGuiDataType {\n S8, // char\n U8, // unsigned char\n S16, // short\n U16, // unsigned short\n S32, // int\n U32, // unsigned int\n S64, // long long, __int64\n U64, // unsigned long long, unsigned __int64\n Float, // float\n Double, // double\n COUNT\n}\n\n// A cardinal direction\nexport { ImGuiDir as Dir };\nexport enum ImGuiDir {\n None = -1,\n Left = 0,\n Right = 1,\n Up = 2,\n Down = 3,\n COUNT\n}\n\n// User fill ImGuiIO.KeyMap[] array with indices into the ImGuiIO.KeysDown[512] array\nexport { ImGuiKey as Key };\nexport enum ImGuiKey {\n Tab,\n LeftArrow,\n RightArrow,\n UpArrow,\n DownArrow,\n PageUp,\n PageDown,\n Home,\n End,\n Insert,\n Delete,\n Backspace,\n Space,\n Enter,\n Escape,\n A, // for text edit CTRL+A: select all\n C, // for text edit CTRL+C: copy\n V, // for text edit CTRL+V: paste\n X, // for text edit CTRL+X: cut\n Y, // for text edit CTRL+Y: redo\n Z, // for text edit CTRL+Z: undo\n COUNT,\n}\n\n// [BETA] Gamepad/Keyboard directional navigation\n// Keyboard: Set io.ConfigFlags |= EnableKeyboard to enable. NewFrame() will automatically fill io.NavInputs[] based on your io.KeyDown[] + io.KeyMap[] arrays.\n// Gamepad: Set io.ConfigFlags |= EnableGamepad to enable. Fill the io.NavInputs[] fields before calling NewFrame(). Note that io.NavInputs[] is cleared by EndFrame().\n// Read instructions in imgui.cpp for more details.\nexport { ImGuiNavInput as NavInput };\nexport enum ImGuiNavInput\n{\n // Gamepad Mapping\n Activate, // activate / open / toggle / tweak value // e.g. Circle (PS4), A (Xbox), B (Switch), Space (Keyboard)\n Cancel, // cancel / close / exit // e.g. Cross (PS4), B (Xbox), A (Switch), Escape (Keyboard)\n Input, // text input / on-screen keyboard // e.g. Triang.(PS4), Y (Xbox), X (Switch), Return (Keyboard)\n Menu, // tap: toggle menu / hold: focus, move, resize // e.g. Square (PS4), X (Xbox), Y (Switch), Alt (Keyboard)\n DpadLeft, // move / tweak / resize window (w/ PadMenu) // e.g. D-pad Left/Right/Up/Down (Gamepads), Arrow keys (Keyboard)\n DpadRight, //\n DpadUp, //\n DpadDown, //\n LStickLeft, // scroll / move window (w/ PadMenu) // e.g. Left Analog Stick Left/Right/Up/Down\n LStickRight, //\n LStickUp, //\n LStickDown, //\n FocusPrev, // next window (w/ PadMenu) // e.g. L1 or L2 (PS4), LB or LT (Xbox), L or ZL (Switch)\n FocusNext, // prev window (w/ PadMenu) // e.g. R1 or R2 (PS4), RB or RT (Xbox), R or ZL (Switch)\n TweakSlow, // slower tweaks // e.g. L1 or L2 (PS4), LB or LT (Xbox), L or ZL (Switch)\n TweakFast, // faster tweaks // e.g. R1 or R2 (PS4), RB or RT (Xbox), R or ZL (Switch)\n\n // [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them.\n // Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) may be directly reading from io.KeyDown[] instead of io.NavInputs[].\n KeyMenu_, // toggle menu // = io.KeyAlt\n KeyTab_, // tab // = Tab key\n KeyLeft_, // move left // = Arrow keys\n KeyRight_, // move right\n KeyUp_, // move up\n KeyDown_, // move down\n COUNT,\n InternalStart_ = KeyMenu_,\n}\n\n// [BETA] Gamepad/Keyboard directional navigation flags, stored in io.ConfigFlags\nexport { ImGuiConfigFlags as ConfigFlags };\nexport enum ImGuiConfigFlags\n{\n None = 0,\n NavEnableKeyboard = 1 << 0, // Master keyboard navigation enable flag. NewFrame() will automatically fill io.NavInputs[] based on io.KeyDown[].\n NavEnableGamepad = 1 << 1, // Master gamepad navigation enable flag. This is mostly to instruct your imgui back-end to fill io.NavInputs[].\n NavEnableSetMousePos = 1 << 2, // Request navigation to allow moving the mouse cursor. May be useful on TV/console systems where moving a virtual mouse is awkward. Will update io.MousePos and set io.WantMoveMouse=true. If enabled you MUST honor io.WantMoveMouse requests in your binding, otherwise ImGui will react as if the mouse is jumping around back and forth.\n NavNoCaptureKeyboard = 1 << 3, // Do not set the io.WantCaptureKeyboard flag with io.NavActive is set.\n NoMouse = 1 << 4, // Instruct imgui to clear mouse position/buttons in NewFrame(). This allows ignoring the mouse information back-end\n NoMouseCursorChange = 1 << 5, // Instruct back-end to not alter mouse cursor shape and visibility.\n\n IsSRGB = 1 << 20, // Application is SRGB-aware.\n IsTouchScreen = 1 << 21 // Application is using a touch screen instead of a mouse.\n}\n\n// Enumeration for PushStyleColor() / PopStyleColor()\nexport { ImGuiCol as Col };\nexport enum ImGuiCol {\n Text,\n TextDisabled,\n WindowBg, // Background of normal windows\n ChildBg, // Background of child windows\n PopupBg, // Background of popups, menus, tooltips windows\n Border,\n BorderShadow,\n FrameBg, // Background of checkbox, radio button, plot, slider, text input\n FrameBgHovered,\n FrameBgActive,\n TitleBg,\n TitleBgActive,\n TitleBgCollapsed,\n MenuBarBg,\n ScrollbarBg,\n ScrollbarGrab,\n ScrollbarGrabHovered,\n ScrollbarGrabActive,\n CheckMark,\n SliderGrab,\n SliderGrabActive,\n Button,\n ButtonHovered,\n ButtonActive,\n Header,\n HeaderHovered,\n HeaderActive,\n Separator,\n SeparatorHovered,\n SeparatorActive,\n ResizeGrip,\n ResizeGripHovered,\n ResizeGripActive,\n Tab,\n TabHovered,\n TabActive,\n TabUnfocused,\n TabUnfocusedActive,\n PlotLines,\n PlotLinesHovered,\n PlotHistogram,\n PlotHistogramHovered,\n TextSelectedBg,\n DragDropTarget,\n NavHighlight, // Gamepad/keyboard: current highlighted item\n NavWindowingHighlight, // Highlight window when using CTRL+TAB\n NavWindowingDimBg, // Darken/colorize entire screen behind the CTRL+TAB window list, when active\n ModalWindowDimBg, // Darken/colorize entire screen behind a modal window, when one is active\n COUNT,\n}\n\n// Enumeration for PushStyleVar() / PopStyleVar() to temporarily modify the ImGuiStyle structure.\n// NB: the enum only refers to fields of ImGuiStyle which makes sense to be pushed/popped inside UI code. During initialization, feel free to just poke into ImGuiStyle directly.\n// NB: if changing this enum, you need to update the associated internal table GStyleVarInfo[] accordingly. This is where we link enum values to members offset/type.\nexport { ImGuiStyleVar as StyleVar };\nexport enum ImGuiStyleVar {\n // Enum name ......................// Member in ImGuiStyle structure (see ImGuiStyle for descriptions)\n Alpha, // float Alpha\n WindowPadding, // ImVec2 WindowPadding\n WindowRounding, // float WindowRounding\n WindowBorderSize, // float WindowBorderSize\n WindowMinSize, // ImVec2 WindowMinSize\n WindowTitleAlign, // ImVec2 WindowTitleAlign\n // WindowMenuButtonPosition, // ImGuiDir WindowMenuButtonPosition\n ChildRounding, // float ChildRounding\n ChildBorderSize, // float ChildBorderSize\n PopupRounding, // float PopupRounding\n PopupBorderSize, // float PopupBorderSize\n FramePadding, // ImVec2 FramePadding\n FrameRounding, // float FrameRounding\n FrameBorderSize, // float FrameBorderSize\n ItemSpacing, // ImVec2 ItemSpacing\n ItemInnerSpacing, // ImVec2 ItemInnerSpacing\n IndentSpacing, // float IndentSpacing\n ScrollbarSize, // float ScrollbarSize\n ScrollbarRounding, // float ScrollbarRounding\n GrabMinSize, // float GrabMinSize\n GrabRounding, // float GrabRounding\n TabRounding, // float TabRounding\n ButtonTextAlign, // ImVec2 ButtonTextAlign\n SelectableTextAlign, // ImVec2 SelectableTextAlign\n Count_, COUNT = Count_,\n}\n\n// Back-end capabilities flags stored in io.BackendFlags. Set by imgui_impl_xxx or custom back-end.\nexport { ImGuiBackendFlags as BackendFlags };\nexport enum ImGuiBackendFlags {\n None = 0,\n HasGamepad = 1 << 0, // Back-end has a connected gamepad.\n HasMouseCursors = 1 << 1, // Back-end can honor GetMouseCursor() values and change the OS cursor shape.\n HasSetMousePos = 1 << 2, // Back-end can honor io.WantSetMousePos and reposition the mouse (only used if ImGuiConfigFlags_NavEnableSetMousePos is set).\n RendererHasVtxOffset = 1 << 3, // Back-end Renderer supports ImDrawCmd::VtxOffset. This enables output of large meshes (64K+ vertices) while still using 16-bits indices.\n}\n\n// Enumeration for ColorEdit3() / ColorEdit4() / ColorPicker3() / ColorPicker4() / ColorButton()\nexport { ImGuiColorEditFlags as ColorEditFlags };\nexport enum ImGuiColorEditFlags {\n None = 0,\n NoAlpha = 1 << 1, // // ColorEdit, ColorPicker, ColorButton: ignore Alpha component (read 3 components from the input pointer).\n NoPicker = 1 << 2, // // ColorEdit: disable picker when clicking on colored square.\n NoOptions = 1 << 3, // // ColorEdit: disable toggling options menu when right-clicking on inputs/small preview.\n NoSmallPreview = 1 << 4, // // ColorEdit, ColorPicker: disable colored square preview next to the inputs. (e.g. to show only the inputs)\n NoInputs = 1 << 5, // // ColorEdit, ColorPicker: disable inputs sliders/text widgets (e.g. to show only the small preview colored square).\n NoTooltip = 1 << 6, // // ColorEdit, ColorPicker, ColorButton: disable tooltip when hovering the preview.\n NoLabel = 1 << 7, // // ColorEdit, ColorPicker: disable display of inline text label (the label is still forwarded to the tooltip and picker).\n NoSidePreview = 1 << 8, // // ColorPicker: disable bigger color preview on right side of the picker, use small colored square preview instead.\n NoDragDrop = 1 << 9, // // ColorEdit: disable drag and drop target. ColorButton: disable drag and drop source.\n // User Options (right-click on widget to change some of them). You can set application defaults using SetColorEditOptions(). The idea is that you probably don't want to override them in most of your calls, let the user choose and/or call SetColorEditOptions() during startup.\n AlphaBar = 1 << 16, // // ColorEdit, ColorPicker: show vertical alpha bar/gradient in picker.\n AlphaPreview = 1 << 17, // // ColorEdit, ColorPicker, ColorButton: display preview as a transparent color over a checkerboard, instead of opaque.\n AlphaPreviewHalf= 1 << 18, // // ColorEdit, ColorPicker, ColorButton: display half opaque / half checkerboard, instead of opaque.\n HDR = 1 << 19, // // (WIP) ColorEdit: Currently only disable 0.0f..1.0f limits in RGBA edition (note: you probably want to use Float flag as well).\n DisplayRGB = 1 << 20, // [Inputs] // ColorEdit: choose one among RGB/HSV/HEX. ColorPicker: choose any combination using RGB/HSV/HEX.\n DisplayHSV = 1 << 21, // [Inputs] // \"\n DisplayHex = 1 << 22, // [Inputs] // \"\n Uint8 = 1 << 23, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0..255.\n Float = 1 << 24, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0.0f..1.0f floats instead of 0..255 integers. No round-trip of value via integers.\n PickerHueBar = 1 << 25, // [PickerMode] // ColorPicker: bar for Hue, rectangle for Sat/Value.\n PickerHueWheel = 1 << 26, // [PickerMode] // ColorPicker: wheel for Hue, triangle for Sat/Value.\n InputRGB = 1 << 27, // [Input] // ColorEdit, ColorPicker: input and output data in RGB format.\n InputHSV = 1 << 28, // [Input] // ColorEdit, ColorPicker: input and output data in HSV format.\n\n // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to\n // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup.\n _OptionsDefault = Uint8|DisplayRGB|InputRGB|PickerHueBar,\n\n // [Internal] Masks\n _DisplayMask = DisplayRGB|DisplayHSV|DisplayHex,\n _DataTypeMask = Uint8|Float,\n _PickerMask = PickerHueWheel|PickerHueBar,\n _InputMask = InputRGB|InputHSV,\n}\n\n// Enumeration for GetMouseCursor()\nexport { ImGuiMouseCursor as MouseCursor };\nexport enum ImGuiMouseCursor {\n None = -1,\n Arrow = 0,\n TextInput, // When hovering over InputText, etc.\n ResizeAll, // (Unused by imgui functions)\n ResizeNS, // When hovering over an horizontal border\n ResizeEW, // When hovering over a vertical border or a column\n ResizeNESW, // When hovering over the bottom-left corner of a window\n ResizeNWSE, // When hovering over the bottom-right corner of a window\n Hand, // (Unused by imgui functions. Use for e.g. hyperlinks)\n Count_, COUNT = Count_,\n}\n\n// Condition for ImGui::SetWindow***(), SetNextWindow***(), SetNextTreeNode***() functions\n// All those functions treat 0 as a shortcut to Always. From the point of view of the user use this as an enum (don't combine multiple values into flags).\nexport { ImGuiCond as Cond };\nexport enum ImGuiCond {\n Always = 1 << 0, // Set the variable\n Once = 1 << 1, // Set the variable once per runtime session (only the first call with succeed)\n FirstUseEver = 1 << 2, // Set the variable if the window has no saved data (if doesn't exist in the .ini file)\n Appearing = 1 << 3, // Set the variable if the window is appearing after being hidden/inactive (or the first time)\n}\n\nexport { ImDrawCornerFlags as wCornerFlags };\nexport enum ImDrawCornerFlags\n{\n TopLeft = 1 << 0, // 0x1\n TopRight = 1 << 1, // 0x2\n BotLeft = 1 << 2, // 0x4\n BotRight = 1 << 3, // 0x8\n Top = TopLeft | TopRight, // 0x3\n Bot = BotLeft | BotRight, // 0xC\n Left = TopLeft | BotLeft, // 0x5\n Right = TopRight | BotRight, // 0xA\n All = 0xF, // In your function calls you may use ~0 (= all bits sets) instead of All, as a convenience\n}\n\nexport { ImDrawListFlags as wListFlags };\nexport enum ImDrawListFlags\n{\n None = 0,\n AntiAliasedLines = 1 << 0,\n AntiAliasedFill = 1 << 1,\n}\n\nexport { ImU32 } from \"./bind-imgui\";\n\nexport { interface_ImVec2 } from \"./bind-imgui\";\nexport { reference_ImVec2 } from \"./bind-imgui\";\n\nexport class ImVec2 implements Bind.interface_ImVec2 {\n public static readonly ZERO: Readonly = new ImVec2(0.0, 0.0);\n public static readonly UNIT: Readonly = new ImVec2(1.0, 1.0);\n public static readonly UNIT_X: Readonly = new ImVec2(1.0, 0.0);\n public static readonly UNIT_Y: Readonly = new ImVec2(0.0, 1.0);\n\n constructor(public x: number = 0.0, public y: number = 0.0) {}\n\n public Set(x: number, y: number): this {\n this.x = x;\n this.y = y;\n return this;\n }\n\n public Copy(other: Readonly): this {\n this.x = other.x;\n this.y = other.y;\n return this;\n }\n\n public Equals(other: Readonly): boolean {\n if (this.x !== other.x) { return false; }\n if (this.y !== other.y) { return false; }\n return true;\n }\n}\n\nexport { interface_ImVec4 } from \"./bind-imgui\";\nexport { reference_ImVec4 } from \"./bind-imgui\";\n\nexport class ImVec4 implements Bind.interface_ImVec4 {\n public static readonly ZERO: Readonly = new ImVec4(0.0, 0.0, 0.0, 0.0);\n public static readonly UNIT: Readonly = new ImVec4(1.0, 1.0, 1.0, 1.0);\n public static readonly UNIT_X: Readonly = new ImVec4(1.0, 0.0, 0.0, 0.0);\n public static readonly UNIT_Y: Readonly = new ImVec4(0.0, 1.0, 0.0, 0.0);\n public static readonly UNIT_Z: Readonly = new ImVec4(0.0, 0.0, 1.0, 0.0);\n public static readonly UNIT_W: Readonly = new ImVec4(0.0, 0.0, 0.0, 1.0);\n public static readonly BLACK: Readonly = new ImVec4(0.0, 0.0, 0.0, 1.0);\n public static readonly WHITE: Readonly = new ImVec4(1.0, 1.0, 1.0, 1.0);\n\n constructor(public x: number = 0.0, public y: number = 0.0, public z: number = 0.0, public w: number = 1.0) {}\n\n public Set(x: number, y: number, z: number, w: number): this {\n this.x = x;\n this.y = y;\n this.z = z;\n this.w = w;\n return this;\n }\n\n public Copy(other: Readonly): this {\n this.x = other.x;\n this.y = other.y;\n this.z = other.z;\n this.w = other.w;\n return this;\n }\n\n public Equals(other: Readonly): boolean {\n if (this.x !== other.x) { return false; }\n if (this.y !== other.y) { return false; }\n if (this.z !== other.z) { return false; }\n if (this.w !== other.w) { return false; }\n return true;\n }\n}\n\n//-----------------------------------------------------------------------------\n// Helpers\n//-----------------------------------------------------------------------------\n\n// Lightweight std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug).\n// Our implementation does NOT call C++ constructors/destructors. This is intentional and we do not require it. Do not use this class as a straight std::vector replacement in your code!\nexport class ImVector extends Array\n{\n public get Size(): number { return this.length; }\n public Data: T[] = this;\n public empty(): boolean { return this.length === 0; }\n public clear(): void { this.length = 0; }\n public pop_back(): T | undefined { return this.pop(); }\n public push_back(value: T): void { this.push(value); }\n // public:\n // int Size;\n // int Capacity;\n // T* Data;\n\n // typedef T value_type;\n // typedef value_type* iterator;\n // typedef const value_type* const_iterator;\n\n // inline ImVector() { Size = Capacity = 0; Data = NULL; }\n // inline ~ImVector() { if (Data) ImGui::MemFree(Data); }\n\n // inline bool empty() const { return Size == 0; }\n // inline int size() const { return Size; }\n // inline int capacity() const { return Capacity; }\n\n // inline value_type& operator[](int i) { IM_ASSERT(i < Size); return Data[i]; }\n // inline const value_type& operator[](int i) const { IM_ASSERT(i < Size); return Data[i]; }\n\n // inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } }\n // inline iterator begin() { return Data; }\n // inline const_iterator begin() const { return Data; }\n // inline iterator end() { return Data + Size; }\n // inline const_iterator end() const { return Data + Size; }\n // inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; }\n // inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; }\n // inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; }\n // inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; }\n // inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; }\n\n // inline int _grow_capacity(int size) const { int new_capacity = Capacity ? (Capacity + Capacity/2) : 8; return new_capacity > size ? new_capacity : size; }\n\n // inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; }\n // inline void resize(int new_size, const T& v){ if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) Data[n] = v; Size = new_size; }\n // inline void reserve(int new_capacity)\n // {\n // if (new_capacity <= Capacity)\n // return;\n // T* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T));\n // if (Data)\n // memcpy(new_data, Data, (size_t)Size * sizeof(T));\n // ImGui::MemFree(Data);\n // Data = new_data;\n // Capacity = new_capacity;\n // }\n\n // inline void push_back(const value_type& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); Data[Size++] = v; }\n // inline void pop_back() { IM_ASSERT(Size > 0); Size--; }\n // inline void push_front(const value_type& v) { if (Size == 0) push_back(v); else insert(Data, v); }\n\n // inline iterator erase(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; }\n // inline iterator erase(const_iterator it, const_iterator it_last){ IM_ASSERT(it >= Data && it < Data+Size && it_last > it && it_last <= Data+Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - count) * sizeof(value_type)); Size -= (int)count; return Data + off; }\n // inline iterator erase_unsorted(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; if (it < Data+Size-1) memcpy(Data + off, Data + Size - 1, sizeof(value_type)); Size--; return Data + off; }\n // inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= Data && it <= Data+Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; }\n // inline bool contains(const value_type& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; }\n}\n\n// Helper: Parse and apply text filters. In format \"aaaaa[,bbbb][,ccccc]\"\nexport class ImGuiTextFilter\n{\n // IMGUI_API ImGuiTextFilter(const char* default_filter = \"\");\n constructor(default_filter: string = \"\") {\n if (default_filter)\n {\n // ImStrncpy(InputBuf, default_filter, IM_ARRAYSIZE(InputBuf));\n this.InputBuf.buffer = default_filter;\n this.Build();\n }\n else\n {\n // InputBuf[0] = 0;\n this.InputBuf.buffer = \"\";\n this.CountGrep = 0;\n }\n }\n // IMGUI_API bool Draw(const char* label = \"Filter (inc,-exc)\", float width = 0.0f); // Helper calling InputText+Build\n public Draw(label: string = \"Filter (inc,-exc)\", width: number = 0.0): boolean {\n if (width !== 0.0)\n bind.PushItemWidth(width);\n const value_changed: boolean = InputText(label, this.InputBuf, IM_ARRAYSIZE(this.InputBuf));\n if (width !== 0.0)\n bind.PopItemWidth();\n if (value_changed)\n this.Build();\n return value_changed;\n }\n // IMGUI_API bool PassFilter(const char* text, const char* text_end = NULL) const;\n public PassFilter(text: string, text_end: number | null = null): boolean {\n // if (Filters.empty())\n // return true;\n\n // if (text == NULL)\n // text = \"\";\n\n // for (int i = 0; i != Filters.Size; i++)\n // {\n // const TextRange& f = Filters[i];\n // if (f.empty())\n // continue;\n // if (f.front() == '-')\n // {\n // // Subtract\n // if (ImStristr(text, text_end, f.begin()+1, f.end()) != NULL)\n // return false;\n // }\n // else\n // {\n // // Grep\n // if (ImStristr(text, text_end, f.begin(), f.end()) != NULL)\n // return true;\n // }\n // }\n\n // Implicit * grep\n if (this.CountGrep === 0)\n return true;\n\n return false;\n }\n // IMGUI_API void Build();\n public Build(): void {\n // Filters.resize(0);\n // TextRange input_range(InputBuf, InputBuf+strlen(InputBuf));\n // input_range.split(',', Filters);\n\n this.CountGrep = 0;\n // for (int i = 0; i != Filters.Size; i++)\n // {\n // Filters[i].trim_blanks();\n // if (Filters[i].empty())\n // continue;\n // if (Filters[i].front() != '-')\n // CountGrep += 1;\n // }\n }\n // void Clear() { InputBuf[0] = 0; Build(); }\n public Clear(): void { this.InputBuf.buffer = \"\"; this.Build(); }\n // bool IsActive() const { return !Filters.empty(); }\n public IsActive(): boolean { return false; }\n\n // [Internal]\n // struct TextRange\n // {\n // const char* b;\n // const char* e;\n\n // TextRange() { b = e = NULL; }\n // TextRange(const char* _b, const char* _e) { b = _b; e = _e; }\n // const char* begin() const { return b; }\n // const char* end() const { return e; }\n // bool empty() const { return b == e; }\n // char front() const { return *b; }\n // static bool is_blank(char c) { return c == ' ' || c == '\\t'; }\n // void trim_blanks() { while (b < e && is_blank(*b)) b++; while (e > b && is_blank(*(e-1))) e--; }\n // IMGUI_API void split(char separator, ImVector& out);\n // };\n\n // char InputBuf[256];\n public InputBuf: ImStringBuffer = new ImStringBuffer(256);\n // ImVector Filters;\n // int CountGrep;\n public CountGrep: number = 0;\n}\n\n// Helper: Text buffer for logging/accumulating text\nexport class ImGuiTextBuffer\n{\n // ImVector Buf;\n public Buf: string = \"\";\n public begin(): string { return this.Buf; }\n public size(): number { return this.Buf.length; }\n public clear(): void { this.Buf = \"\"; }\n public append(text: string): void { this.Buf += text; }\n\n // ImGuiTextBuffer() { Buf.push_back(0); }\n // inline char operator[](int i) { return Buf.Data[i]; }\n // const char* begin() const { return &Buf.front(); }\n // const char* end() const { return &Buf.back(); } // Buf is zero-terminated, so end() will point on the zero-terminator\n // int size() const { return Buf.Size - 1; }\n // bool empty() { return Buf.Size <= 1; }\n // void clear() { Buf.clear(); Buf.push_back(0); }\n // void reserve(int capacity) { Buf.reserve(capacity); }\n // const char* c_str() const { return Buf.Data; }\n // IMGUI_API void appendf(const char* fmt, ...) IM_FMTARGS(2);\n // IMGUI_API void appendfv(const char* fmt, va_list args) IM_FMTLIST(2);\n}\n\n// Helper: Simple Key->value storage\n// Typically you don't have to worry about this since a storage is held within each Window.\n// We use it to e.g. store collapse state for a tree (Int 0/1), store color edit options.\n// This is optimized for efficient reading (dichotomy into a contiguous buffer), rare writing (typically tied to user interactions)\n// You can use it as custom user storage for temporary values. Declare your own storage if, for example:\n// - You want to manipulate the open/close state of a particular sub-tree in your interface (tree node uses Int 0/1 to store their state).\n// - You want to store custom debug data easily without adding or editing structures in your code (probably not efficient, but convenient)\n// Types are NOT stored, so it is up to you to make sure your Key don't collide with different types.\nexport class ImGuiStorage\n{\n // struct Pair\n // {\n // ImGuiID key;\n // union { int val_i; float val_f; void* val_p; };\n // Pair(ImGuiID _key, int _val_i) { key = _key; val_i = _val_i; }\n // Pair(ImGuiID _key, float _val_f) { key = _key; val_f = _val_f; }\n // Pair(ImGuiID _key, void* _val_p) { key = _key; val_p = _val_p; }\n // };\n // ImVector Data;\n\n // - Get***() functions find pair, never add/allocate. Pairs are sorted so a query is O(log N)\n // - Set***() functions find pair, insertion on demand if missing.\n // - Sorted insertion is costly, paid once. A typical frame shouldn't need to insert any new pair.\n // void Clear() { Data.clear(); }\n // IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const;\n // IMGUI_API void SetInt(ImGuiID key, int val);\n // IMGUI_API bool GetBool(ImGuiID key, bool default_val = false) const;\n // IMGUI_API void SetBool(ImGuiID key, bool val);\n // IMGUI_API float GetFloat(ImGuiID key, float default_val = 0.0f) const;\n // IMGUI_API void SetFloat(ImGuiID key, float val);\n // IMGUI_API void* GetVoidPtr(ImGuiID key) const; // default_val is NULL\n // IMGUI_API void SetVoidPtr(ImGuiID key, void* val);\n\n // - Get***Ref() functions finds pair, insert on demand if missing, return pointer. Useful if you intend to do Get+Set.\n // - References are only valid until a new value is added to the storage. Calling a Set***() function or a Get***Ref() function invalidates the pointer.\n // - A typical use case where this is convenient for quick hacking (e.g. add storage during a live Edit&Continue session if you can't modify existing struct)\n // float* pvar = ImGui::GetFloatRef(key); ImGui::SliderFloat(\"var\", pvar, 0, 100.0f); some_var += *pvar;\n // IMGUI_API int* GetIntRef(ImGuiID key, int default_val = 0);\n // IMGUI_API bool* GetBoolRef(ImGuiID key, bool default_val = false);\n // IMGUI_API float* GetFloatRef(ImGuiID key, float default_val = 0.0f);\n // IMGUI_API void** GetVoidPtrRef(ImGuiID key, void* default_val = NULL);\n\n // Use on your own storage if you know only integer are being stored (open/close all tree nodes)\n // IMGUI_API void SetAllInt(int val);\n\n // For quicker full rebuild of a storage (instead of an incremental one), you may add all your contents and then sort once.\n // IMGUI_API void BuildSortByKey();\n}\n\n// Data payload for Drag and Drop operations\nexport interface ImGuiPayload\n{\n // Members\n // void* Data; // Data (copied and owned by dear imgui)\n Data: T;\n // int DataSize; // Data size\n\n // [Internal]\n // ImGuiID SourceId; // Source item id\n // ImGuiID SourceParentId; // Source parent id (if available)\n // int DataFrameCount; // Data timestamp\n // char DataType[12 + 1]; // Data type tag (short user-supplied string, 12 characters max)\n // bool Preview; // Set when AcceptDragDropPayload() was called and mouse has been hovering the target item (nb: handle overlapping drag targets)\n // bool Delivery; // Set when AcceptDragDropPayload() was called and mouse button is released over the target item.\n\n // ImGuiPayload() { Clear(); }\n // void Clear() { SourceId = SourceParentId = 0; Data = NULL; DataSize = 0; memset(DataType, 0, sizeof(DataType)); DataFrameCount = -1; Preview = Delivery = false; }\n // bool IsDataType(const char* type) const { return DataFrameCount != -1 && strcmp(type, DataType) == 0; }\n // bool IsPreview() const { return Preview; }\n // bool IsDelivery() const { return Delivery; }\n}\n\n// Helpers macros to generate 32-bits encoded colors\nexport const IM_COL32_R_SHIFT: number = config.IMGUI_USE_BGRA_PACKED_COLOR ? 16 : 0;\nexport const IM_COL32_G_SHIFT: number = 8;\nexport const IM_COL32_B_SHIFT: number = config.IMGUI_USE_BGRA_PACKED_COLOR ? 0 : 16;\nexport const IM_COL32_A_SHIFT: number = 24;\nexport const IM_COL32_A_MASK: number = 0xFF000000;\nexport function IM_COL32(R: number, G: number, B: number, A: number = 255): number {\n return ((A << IM_COL32_A_SHIFT) | (B << IM_COL32_B_SHIFT) | (G << IM_COL32_G_SHIFT) | (R << IM_COL32_R_SHIFT)) >>> 0;\n}\nexport const IM_COL32_WHITE: number = IM_COL32(255, 255, 255, 255); // Opaque white = 0xFFFFFFFF\nexport const IM_COL32_BLACK: number = IM_COL32(0, 0, 0, 255); // Opaque black\nexport const IM_COL32_BLACK_TRANS: number = IM_COL32(0, 0, 0, 0); // Transparent black = 0x00000000\n\n// ImColor() helper to implicity converts colors to either ImU32 (packed 4x1 byte) or ImVec4 (4x1 float)\n// Prefer using IM_COL32() macros if you want a guaranteed compile-time ImU32 for usage with ImDrawList API.\n// **Avoid storing ImColor! Store either u32 of ImVec4. This is not a full-featured color class. MAY OBSOLETE.\n// **None of the ImGui API are using ImColor directly but you can use it as a convenience to pass colors in either ImU32 or ImVec4 formats. Explicitly cast to ImU32 or ImVec4 if needed.\nexport class ImColor\n{\n // ImVec4 Value;\n public Value: ImVec4 = new ImVec4();\n\n // ImColor() { Value.x = Value.y = Value.z = Value.w = 0.0f; }\n // ImColor(int r, int g, int b, int a = 255) { float sc = 1.0f/255.0f; Value.x = (float)r * sc; Value.y = (float)g * sc; Value.z = (float)b * sc; Value.w = (float)a * sc; }\n // ImColor(ImU32 rgba) { float sc = 1.0f/255.0f; Value.x = (float)((rgba>>IM_COL32_R_SHIFT)&0xFF) * sc; Value.y = (float)((rgba>>IM_COL32_G_SHIFT)&0xFF) * sc; Value.z = (float)((rgba>>IM_COL32_B_SHIFT)&0xFF) * sc; Value.w = (float)((rgba>>IM_COL32_A_SHIFT)&0xFF) * sc; }\n // ImColor(float r, float g, float b, float a = 1.0f) { Value.x = r; Value.y = g; Value.z = b; Value.w = a; }\n // ImColor(const ImVec4& col) { Value = col; }\n constructor();\n constructor(r: number, g: number, b: number);\n constructor(r: number, g: number, b: number, a: number);\n constructor(rgba: Bind.ImU32);\n constructor(col: Readonly);\n constructor(r: number | Bind.ImU32 | Readonly = 0.0, g: number = 0.0, b: number = 0.0, a: number = 1.0) {\n if (typeof(r) === \"number\") {\n if (r > 255 && g === 0.0 && b === 0.0 && a === 1.0) {\n this.Value.x = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_R_SHIFT) & 0xFF) / 255));\n this.Value.y = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_G_SHIFT) & 0xFF) / 255));\n this.Value.z = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_B_SHIFT) & 0xFF) / 255));\n this.Value.w = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_A_SHIFT) & 0xFF) / 255));\n } else if (r <= 1.0 && g <= 1.0 && b <= 1.0 && a <= 1.0) {\n this.Value.x = Math.max(0.0, r);\n this.Value.y = Math.max(0.0, g);\n this.Value.z = Math.max(0.0, b);\n this.Value.w = Math.max(0.0, a);\n } else {\n this.Value.x = Math.max(0.0, Math.min(1.0, r / 255));\n this.Value.y = Math.max(0.0, Math.min(1.0, g / 255));\n this.Value.z = Math.max(0.0, Math.min(1.0, b / 255));\n if (a <= 1.0) {\n this.Value.w = Math.max(0.0, a);\n } else {\n this.Value.w = Math.max(0.0, Math.min(1.0, a / 255));\n }\n }\n } else {\n this.Value.Copy(r);\n }\n }\n // inline operator ImU32() const { return ImGui::ColorConvertFloat4ToU32(Value); }\n public toImU32(): Bind.ImU32 { return ColorConvertFloat4ToU32(this.Value); }\n // inline operator ImVec4() const { return Value; }\n public toImVec4(): ImVec4 { return this.Value; }\n\n // FIXME-OBSOLETE: May need to obsolete/cleanup those helpers.\n // inline void SetHSV(float h, float s, float v, float a = 1.0f){ ImGui::ColorConvertHSVtoRGB(h, s, v, Value.x, Value.y, Value.z); Value.w = a; }\n public SetHSV(h: number, s: number, v: number, a: number = 1.0): void {\n const ref_r: Bind.ImScalar = [ this.Value.x ];\n const ref_g: Bind.ImScalar = [ this.Value.y ];\n const ref_b: Bind.ImScalar = [ this.Value.z ];\n ColorConvertHSVtoRGB(h, s, v, ref_r, ref_g, ref_b);\n this.Value.x = ref_r[0];\n this.Value.y = ref_g[0];\n this.Value.z = ref_b[0];\n this.Value.w = a;\n }\n // static ImColor HSV(float h, float s, float v, float a = 1.0f) { float r,g,b; ImGui::ColorConvertHSVtoRGB(h, s, v, r, g, b); return ImColor(r,g,b,a); }\n public static HSV(h: number, s: number, v: number, a: number = 1.0): ImColor {\n const color = new ImColor();\n color.SetHSV(h, s, v, a);\n return color;\n }\n}\n\nexport const ImGuiInputTextDefaultSize: number = 128;\n\nexport type ImGuiInputTextCallback = (data: ImGuiInputTextCallbackData) => number;\n\n// Shared state of InputText(), passed to callback when a ImGuiInputTextFlags_Callback* flag is used and the corresponding callback is triggered.\nexport class ImGuiInputTextCallbackData {\n constructor(public readonly native: Bind.reference_ImGuiInputTextCallbackData, public readonly UserData: any) {}\n\n // ImGuiInputTextFlags EventFlag; // One of ImGuiInputTextFlags_Callback* // Read-only\n public get EventFlag(): ImGuiInputTextFlags { return this.native.EventFlag; }\n // ImGuiInputTextFlags Flags; // What user passed to InputText() // Read-only\n public get Flags(): ImGuiInputTextFlags { return this.native.Flags; }\n // void* UserData; // What user passed to InputText() // Read-only\n // public get UserData(): any { return this.native.UserData; }\n\n // CharFilter event:\n // ImWchar EventChar; // Character input // Read-write (replace character or set to zero)\n public get EventChar(): Bind.ImWchar { return this.native.EventChar; }\n public set EventChar(value: Bind.ImWchar) { this.native.EventChar = value; }\n\n // Completion,History,Always events:\n // If you modify the buffer contents make sure you update 'BufTextLen' and set 'BufDirty' to true.\n // ImGuiKey EventKey; // Key pressed (Up/Down/TAB) // Read-only\n public get EventKey(): ImGuiKey { return this.native.EventKey; }\n // char* Buf; // Current text buffer // Read-write (pointed data only, can't replace the actual pointer)\n public get Buf(): string { return this.native.Buf; }\n public set Buf(value: string) { this.native.Buf = value; }\n // int BufTextLen; // Current text length in bytes // Read-write\n public get BufTextLen(): number { return this.native.BufTextLen; }\n public set BufTextLen(value: number) { this.native.BufTextLen = value; }\n // int BufSize; // Maximum text length in bytes // Read-only\n public get BufSize(): number { return this.native.BufSize; }\n // bool BufDirty; // Set if you modify Buf/BufTextLen!! // Write\n public set BufDirty(value: boolean) { this.native.BufDirty = value; }\n // int CursorPos; // // Read-write\n public get CursorPos(): number { return this.native.CursorPos; }\n public set CursorPos(value: number) { this.native.CursorPos = value; }\n // int SelectionStart; // // Read-write (== to SelectionEnd when no selection)\n public get SelectionStart(): number { return this.native.SelectionStart; }\n public set SelectionStart(value: number) { this.native.SelectionStart = value; }\n // int SelectionEnd; // // Read-write\n public get SelectionEnd(): number { return this.native.SelectionEnd; }\n public set SelectionEnd(value: number) { this.native.SelectionEnd = value; }\n\n // NB: Helper functions for text manipulation. Calling those function loses selection.\n // IMGUI_API void DeleteChars(int pos, int bytes_count);\n public DeleteChars(pos: number, bytes_count: number): void { return this.native.DeleteChars(pos, bytes_count); }\n // IMGUI_API void InsertChars(int pos, const char* text, const char* text_end = NULL);\n public InsertChars(pos: number, text: string, text_end: number | null = null): void { return this.native.InsertChars(pos, text_end !== null ? text.substring(0, text_end) : text); }\n // bool HasSelection() const { return SelectionStart != SelectionEnd; }\n public HasSelection(): boolean { return this.native.HasSelection(); }\n}\n\nexport type ImGuiSizeConstraintCallback = (data: ImGuiSizeCallbackData) => void;\n\n// Resizing callback data to apply custom constraint. As enabled by SetNextWindowSizeConstraints(). Callback is called during the next Begin().\n// NB: For basic min/max size constraint on each axis you don't need to use the callback! The SetNextWindowSizeConstraints() parameters are enough.\nexport class ImGuiSizeCallbackData {\n constructor(public readonly native: Bind.reference_ImGuiSizeCallbackData, public readonly UserData: any) {}\n\n get Pos(): Readonly { return this.native.Pos; }\n get CurrentSize(): Readonly { return this.native.CurrentSize; }\n get DesiredSize(): Bind.interface_ImVec2 { return this.native.DesiredSize; }\n}\n\nexport class ImGuiListClipper\n{\n private native: Bind.ImGuiListClipper;\n\n public get StartPosY(): number { return this.native.StartPosY; }\n public get ItemsHeight(): number { return this.native.ItemsHeight; }\n public get ItemsCount(): number { return this.native.ItemsCount; }\n public get StepNo(): number { return this.native.StepNo; }\n public get DisplayStart(): number { return this.native.DisplayStart; }\n public get DisplayEnd(): number { return this.native.DisplayEnd; }\n\n // items_count: Use -1 to ignore (you can call Begin later). Use INT_MAX if you don't know how many items you have (in which case the cursor won't be advanced in the final step).\n // items_height: Use -1.0f to be calculated automatically on first step. Otherwise pass in the distance between your items, typically GetTextLineHeightWithSpacing() or GetFrameHeightWithSpacing().\n // If you don't specify an items_height, you NEED to call Step(). If you specify items_height you may call the old Begin()/End() api directly, but prefer calling Step().\n // ImGuiListClipper(int items_count = -1, float items_height = -1.0f) { Begin(items_count, items_height); } // NB: Begin() initialize every fields (as we allow user to call Begin/End multiple times on a same instance if they want).\n constructor(items_count: number = -1, items_height: number = -1.0) {\n this.native = new bind.ImGuiListClipper(items_count, items_height);\n }\n // ~ImGuiListClipper() { IM_ASSERT(ItemsCount == -1); } // Assert if user forgot to call End() or Step() until false.\n public delete(): void {\n if (this.native) {\n this.native.delete();\n delete this.native;\n }\n }\n\n // IMGUI_API bool Step(); // Call until it returns false. The DisplayStart/DisplayEnd fields will be set and you can process/draw those items.\n public Step(): boolean {\n if (!this.native) { throw new Error(); }\n const busy: boolean = this.native.Step();\n if (!busy) {\n this.delete();\n }\n return busy;\n }\n // IMGUI_API void Begin(int items_count, float items_height = -1.0f); // Automatically called by constructor if you passed 'items_count' or by Step() in Step 1.\n public Begin(items_count: number, items_height: number = -1.0): void {\n if (!this.native) {\n this.native = new Bind.ImGuiListClipper(items_count, items_height);\n }\n this.native.Begin(items_count, items_height);\n }\n // IMGUI_API void End(); // Automatically called on the last call of Step() that returns false.\n public End(): void {\n if (!this.native) { throw new Error(); }\n this.native.End();\n this.delete();\n }\n}\n\n//-----------------------------------------------------------------------------\n// Draw List\n// Hold a series of drawing commands. The user provides a renderer for ImDrawData which essentially contains an array of ImDrawList.\n//-----------------------------------------------------------------------------\n\n// Draw callbacks for advanced uses.\n// NB- You most likely do NOT need to use draw callbacks just to create your own widget or customized UI rendering (you can poke into the draw list for that)\n// Draw callback may be useful for example, A) Change your GPU render state, B) render a complex 3D scene inside a UI element (without an intermediate texture/render target), etc.\n// The expected behavior from your rendering function is 'if (cmd.UserCallback != NULL) cmd.UserCallback(parent_list, cmd); else RenderTriangles()'\n// typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd);\nexport type ImDrawCallback = (parent_list: Readonly, cmd: Readonly) => void;\n\n// Special Draw callback value to request renderer back-end to reset the graphics/render state.\n// The renderer back-end needs to handle this special value, otherwise it will crash trying to call a function at this address.\n// This is useful for example if you submitted callbacks which you know have altered the render state and you want it to be restored.\n// It is not done by default because they are many perfectly useful way of altering render state for imgui contents (e.g. changing shader/blending settings before an Image call).\nexport const ImDrawCallback_ResetRenderState = -1;\n\n// Typically, 1 command = 1 GPU draw call (unless command is a callback)\n// Pre 1.71 back-ends will typically ignore the VtxOffset/IdxOffset fields. When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset'\n// is enabled, those fields allow us to render meshes larger than 64K vertices while keeping 16-bits indices.\nexport class ImDrawCmd\n{\n constructor(public readonly native: Bind.reference_ImDrawCmd) {}\n\n // unsigned int ElemCount; // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[].\n get ElemCount(): number { return this.native.ElemCount; }\n // ImVec4 ClipRect; // Clipping rectangle (x1, y1, x2, y2)\n get ClipRect(): Readonly { return this.native.ClipRect; }\n // ImTextureID TextureId; // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas.\n get TextureId(): ImTextureID | null {\n return ImGuiContext.getTexture(this.native.TextureId);\n }\n // unsigned int VtxOffset; // Start offset in vertex buffer. Pre-1.71 or without ImGuiBackendFlags_RendererHasVtxOffset: always 0. With ImGuiBackendFlags_RendererHasVtxOffset: may be >0 to support meshes larger than 64K vertices with 16-bits indices.\n get VtxOffset(): number { return this.native.VtxOffset; }\n // unsigned int IdxOffset; // Start offset in index buffer. Always equal to sum of ElemCount drawn so far.\n get IdxOffset(): number { return this.native.IdxOffset; }\n // ImDrawCallback UserCallback; // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally.\n public readonly UserCallback: ImDrawCallback | null = null; // TODO\n // void* UserCallbackData; // The draw callback code can access this.\n public readonly UserCallbackData: any = null; // TODO\n\n // ImDrawCmd() { ElemCount = 0; ClipRect.x = ClipRect.y = ClipRect.z = ClipRect.w = 0.0f; TextureId = NULL; UserCallback = NULL; UserCallbackData = NULL; }\n}\n\n// Vertex index \n// (to allow large meshes with 16-bits indices: set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset in the renderer back-end)\n// (to use 32-bits indices: override with '#define ImDrawIdx unsigned int' in imconfig.h)\n// #ifndef ImDrawIdx\n// typedef unsigned short ImDrawIdx;\n// #endif\nexport const ImDrawIdxSize: number = 2; // bind.ImDrawIdxSize;\nexport type ImDrawIdx = number;\n\n// Vertex layout\n// #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT\nexport const ImDrawVertSize: number = 20; // bind.ImDrawVertSize;\nexport const ImDrawVertPosOffset: number = 0; // bind.ImDrawVertPosOffset;\nexport const ImDrawVertUVOffset: number = 8; // bind.ImDrawVertUVOffset;\nexport const ImDrawVertColOffset: number = 16; // bind.ImDrawVertColOffset;\nexport class ImDrawVert\n{\n // ImVec2 pos;\n public pos: Float32Array;\n // ImVec2 uv;\n public uv: Float32Array;\n // ImU32 col;\n public col: Uint32Array;\n\n constructor(buffer: ArrayBuffer, byteOffset: number = 0) {\n this.pos = new Float32Array(buffer, byteOffset + bind.ImDrawVertPosOffset, 2);\n this.uv = new Float32Array(buffer, byteOffset + bind.ImDrawVertUVOffset, 2);\n this.col = new Uint32Array(buffer, byteOffset + bind.ImDrawVertColOffset, 1);\n }\n}\n// #else\n// You can override the vertex format layout by defining IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT in imconfig.h\n// The code expect ImVec2 pos (8 bytes), ImVec2 uv (8 bytes), ImU32 col (4 bytes), but you can re-order them or add other fields as needed to simplify integration in your engine.\n// The type has to be described within the macro (you can either declare the struct or use a typedef)\n// NOTE: IMGUI DOESN'T CLEAR THE STRUCTURE AND DOESN'T CALL A CONSTRUCTOR SO ANY CUSTOM FIELD WILL BE UNINITIALIZED. IF YOU ADD EXTRA FIELDS (SUCH AS A 'Z' COORDINATES) YOU WILL NEED TO CLEAR THEM DURING RENDER OR TO IGNORE THEM.\n// IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT;\n// #endif\n\n// Draw channels are used by the Columns API to \"split\" the render list into different channels while building, so items of each column can be batched together.\n// You can also use them to simulate drawing layers and submit primitives in a different order than how they will be rendered.\nexport class ImDrawChannel\n{\n // ImVector CmdBuffer;\n // ImVector IdxBuffer;\n}\n\nexport class ImDrawListSharedData\n{\n constructor(public readonly native: Bind.reference_ImDrawListSharedData) {}\n}\n\n// Draw command list\n// This is the low-level list of polygons that ImGui functions are filling. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering.\n// Each ImGui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to access the current window draw list and draw custom primitives.\n// You can interleave normal ImGui:: calls and adding primitives to the current draw list.\n// All positions are generally in pixel coordinates (top-left at (0,0), bottom-right at io.DisplaySize), however you are totally free to apply whatever transformation matrix to want to the data (if you apply such transformation you'll want to apply it to ClipRect as well)\n// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects.\nexport class ImDrawList\n{\n constructor(public readonly native: Bind.reference_ImDrawList) {}\n\n public IterateDrawCmds(callback: (draw_cmd: ImDrawCmd, ElemStart: number) => void): void {\n this.native.IterateDrawCmds((draw_cmd: Bind.reference_ImDrawCmd, ElemStart: number): void => {\n callback(new ImDrawCmd(draw_cmd), ElemStart);\n });\n }\n\n // This is what you have to render\n // ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback.\n // ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those\n get IdxBuffer(): Uint8Array { return this.native.IdxBuffer; }\n // ImVector VtxBuffer; // Vertex buffer.\n get VtxBuffer(): Uint8Array { return this.native.VtxBuffer; }\n // ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive.\n get Flags(): ImDrawListFlags { return this.native.Flags; }\n set Flags(value: ImDrawListFlags) { this.native.Flags = value; }\n\n // [Internal, used while building lists]\n // const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context)\n // const char* _OwnerName; // Pointer to owner window's name for debugging\n // unsigned int _VtxCurrentIdx; // [Internal] == VtxBuffer.Size\n // ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)\n // ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)\n // ImVector _ClipRectStack; // [Internal]\n // ImVector _TextureIdStack; // [Internal]\n // ImVector _Path; // [Internal] current path building\n // int _ChannelsCurrent; // [Internal] current channel number (0)\n // int _ChannelsCount; // [Internal] number of active channels (1+)\n // ImVector _Channels; // [Internal] draw channels for columns API (not resized down so _ChannelsCount may be smaller than _Channels.Size)\n\n // ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clear(); }\n // ~ImDrawList() { ClearFreeMemory(); }\n // IMGUI_API void PushClipRect(ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling)\n public PushClipRect(clip_rect_min: Readonly, clip_rect_max: Readonly, intersect_with_current_clip_rect: boolean = false): void {\n this.native.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect);\n }\n // IMGUI_API void PushClipRectFullScreen();\n public PushClipRectFullScreen(): void { this.native.PushClipRectFullScreen(); }\n // IMGUI_API void PopClipRect();\n public PopClipRect(): void { this.native.PopClipRect(); }\n // IMGUI_API void PushTextureID(ImTextureID texture_id);\n public PushTextureID(texture_id: ImTextureID): void {\n this.native.PushTextureID(ImGuiContext.setTexture(texture_id));\n }\n // IMGUI_API void PopTextureID();\n public PopTextureID(): void { this.native.PopTextureID(); }\n // inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); }\n public GetClipRectMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return this.native.GetClipRectMin(out);\n }\n // inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); }\n public GetClipRectMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return this.native.GetClipRectMax(out);\n }\n\n // Primitives\n // IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness = 1.0f);\n public AddLine(a: Readonly, b: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddLine(a, b, col, thickness);\n }\n // IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All, float thickness = 1.0f); // a: upper-left, b: lower-right, rounding_corners_flags: 4-bits corresponding to which corner to round\n public AddRect(a: Readonly, b: Readonly, col: Bind.ImU32, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All, thickness: number = 1.0): void {\n this.native.AddRect(a, b, col, rounding, rounding_corners_flags, thickness);\n }\n // IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); // a: upper-left, b: lower-right\n public AddRectFilled(a: Readonly, b: Readonly, col: Bind.ImU32, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All): void {\n this.native.AddRectFilled(a, b, col, rounding, rounding_corners_flags);\n }\n // IMGUI_API void AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left);\n public AddRectFilledMultiColor(a: Readonly, b: Readonly, col_upr_left: Bind.ImU32, col_upr_right: Bind.ImU32, col_bot_right: Bind.ImU32, col_bot_left: Bind.ImU32): void {\n this.native.AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left);\n }\n // IMGUI_API void AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness = 1.0f);\n public AddQuad(a: Readonly, b: Readonly, c: Readonly, d: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddQuad(a, b, c, d, col, thickness);\n }\n // IMGUI_API void AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col);\n public AddQuadFilled(a: Readonly, b: Readonly, c: Readonly, d: Readonly, col: Bind.ImU32): void {\n this.native.AddQuadFilled(a, b, c, d, col);\n }\n // IMGUI_API void AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness = 1.0f);\n public AddTriangle(a: Readonly, b: Readonly, c: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddTriangle(a, b, c, col, thickness);\n }\n // IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col);\n public AddTriangleFilled(a: Readonly, b: Readonly, c: Readonly, col: Bind.ImU32): void {\n this.native.AddTriangleFilled(a, b, c, col);\n }\n // IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f);\n public AddCircle(centre: Readonly, radius: number, col: Bind.ImU32, num_segments: number = 12, thickness: number = 1.0): void {\n this.native.AddCircle(centre, radius, col, num_segments, thickness);\n }\n // IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12);\n public AddCircleFilled(centre: Readonly, radius: number, col: Bind.ImU32, num_segments: number = 12): void {\n this.native.AddCircleFilled(centre, radius, col, num_segments);\n }\n // IMGUI_API void AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL);\n // IMGUI_API void AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL, float wrap_width = 0.0f, const ImVec4* cpu_fine_clip_rect = NULL);\n public AddText(pos: Readonly, col: Bind.ImU32, text_begin: string, text_end?: number | null): void;\n public AddText(font: ImFont, font_size: number, pos: Readonly, col: Bind.ImU32, text_begin: string, text_end?: number | null, wrap_width?: number, cpu_fine_clip_rect?: Readonly | null): void;\n public AddText(...args: any[]): void {\n if (args[0] instanceof ImFont) {\n const font: ImFont = args[0];\n const font_size: number = args[1];\n const pos: Readonly = args[2];\n const col: Bind.ImU32 = args[3];\n const text_begin: string = args[4];\n const text_end: number | null = args[5] || null;\n const wrap_width: number = args[6] = 0.0;\n const cpu_fine_clip_rect: Readonly | null = args[7] || null;\n this.native.AddText_B(font.native, font_size, pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin, wrap_width, cpu_fine_clip_rect);\n } else {\n const pos: Readonly = args[0];\n const col: Bind.ImU32 = args[1];\n const text_begin: string = args[2];\n const text_end: number | null = args[3] || null;\n this.native.AddText_A(pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin);\n }\n }\n // IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,1), ImU32 col = 0xFFFFFFFF);\n public AddImage(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, uv_a: Readonly = ImVec2.ZERO, uv_b: Readonly = ImVec2.UNIT, col: Bind.ImU32 = 0xFFFFFFFF): void {\n this.native.AddImage(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col);\n }\n // IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,0), const ImVec2& uv_c = ImVec2(1,1), const ImVec2& uv_d = ImVec2(0,1), ImU32 col = 0xFFFFFFFF);\n public AddImageQuad(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, c: Readonly, d: Readonly, uv_a: Readonly = ImVec2.ZERO, uv_b: Readonly = ImVec2.UNIT_X, uv_c: Readonly = ImVec2.UNIT, uv_d: Readonly = ImVec2.UNIT_Y, col: Bind.ImU32 = 0xFFFFFFFF): void {\n this.native.AddImageQuad(ImGuiContext.setTexture(user_texture_id), a, b, c, d, uv_a, uv_b, uv_c, uv_d, col);\n }\n // IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col, float rounding, int rounding_corners = ImDrawCornerFlags_All);\n public AddImageRounded(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, uv_a: Readonly, uv_b: Readonly, col: Bind.ImU32, rounding: number, rounding_corners: ImDrawCornerFlags = ImDrawCornerFlags.All): void {\n this.native.AddImageRounded(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col, rounding, rounding_corners);\n }\n // IMGUI_API void AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness);\n public AddPolyline(points: Array>, num_points: number, col: Bind.ImU32, closed: boolean, thickness: number): void {\n this.native.AddPolyline(points, num_points, col, closed, thickness);\n }\n // IMGUI_API void AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col);\n public AddConvexPolyFilled(points: Array>, num_points: number, col: Bind.ImU32): void {\n this.native.AddConvexPolyFilled(points, num_points, col);\n }\n // IMGUI_API void AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments = 0);\n public AddBezierCurve(pos0: Readonly, cp0: Readonly, cp1: Readonly, pos1: Readonly, col: Bind.ImU32, thickness: number = 1.0, num_segments: number = 0): void {\n this.native.AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments);\n }\n\n // Stateful path API, add points then finish with PathFill() or PathStroke()\n // inline void PathClear() { _Path.resize(0); }\n public PathClear(): void { this.native.PathClear(); }\n // inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); }\n public PathLineTo(pos: Readonly): void { this.native.PathLineTo(pos); }\n // inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path[_Path.Size-1], &pos, 8) != 0) _Path.push_back(pos); }\n public PathLineToMergeDuplicate(pos: Readonly): void { this.native.PathLineToMergeDuplicate(pos); }\n // inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); PathClear(); }\n public PathFillConvex(col: Bind.ImU32): void { this.native.PathFillConvex(col); }\n // inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness); PathClear(); }\n public PathStroke(col: Bind.ImU32, closed: boolean, thickness: number = 1.0): void { this.native.PathStroke(col, closed, thickness); }\n // IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_segments = 10);\n public PathArcTo(centre: Readonly, radius: number, a_min: number, a_max: number, num_segments: number = 10): void { this.native.PathArcTo(centre, radius, a_min, a_max, num_segments); }\n // IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle\n public PathArcToFast(centre: Readonly, radius: number, a_min_of_12: number, a_max_of_12: number): void { this.native.PathArcToFast(centre, radius, a_min_of_12, a_max_of_12); }\n // IMGUI_API void PathBezierCurveTo(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, int num_segments = 0);\n public PathBezierCurveTo(p1: Readonly, p2: Readonly, p3: Readonly, num_segments: number = 0): void { this.native.PathBezierCurveTo(p1, p2, p3, num_segments); }\n // IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All);\n public PathRect(rect_min: Readonly, rect_max: Readonly, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All): void { this.native.PathRect(rect_min, rect_max, rounding, rounding_corners_flags); }\n\n // Channels\n // - Use to simulate layers. By switching channels to can render out-of-order (e.g. submit foreground primitives before background primitives)\n // - Use to minimize draw calls (e.g. if going back-and-forth between multiple non-overlapping clipping rectangles, prefer to append into separate channels then merge at the end)\n // IMGUI_API void ChannelsSplit(int channels_count);\n public ChannelsSplit(channels_count: number): void { this.native.ChannelsSplit(channels_count); }\n // IMGUI_API void ChannelsMerge();\n public ChannelsMerge(): void { this.native.ChannelsMerge(); }\n // IMGUI_API void ChannelsSetCurrent(int channel_index);\n public ChannelsSetCurrent(channel_index: number): void { this.native.ChannelsSetCurrent(channel_index); }\n\n // Advanced\n // IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles.\n public AddCallback(callback: ImDrawCallback, callback_data: any): void {\n const _callback: Bind.ImDrawCallback = (parent_list: Readonly, draw_cmd: Readonly): void => {\n callback(new ImDrawList(parent_list), new ImDrawCmd(draw_cmd));\n };\n this.native.AddCallback(_callback, callback_data);\n }\n // IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible\n public AddDrawCmd(): void { this.native.AddDrawCmd(); }\n\n // Internal helpers\n // NB: all primitives needs to be reserved via PrimReserve() beforehand!\n // IMGUI_API void Clear();\n public Clear(): void { this.native.Clear(); }\n // IMGUI_API void ClearFreeMemory();\n public ClearFreeMemory(): void { this.native.ClearFreeMemory(); }\n // IMGUI_API void PrimReserve(int idx_count, int vtx_count);\n public PrimReserve(idx_count: number, vtx_count: number): void { this.native.PrimReserve(idx_count, vtx_count); }\n // IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles)\n public PrimRect(a: Readonly, b: Readonly, col: Bind.ImU32): void { this.native.PrimRect(a, b, col); }\n // IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col);\n public PrimRectUV(a: Readonly, b: Readonly, uv_a: Readonly, uv_b: Readonly, col: Bind.ImU32): void { this.native.PrimRectUV(a, b, uv_a, uv_b, col); }\n // IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col);\n public PrimQuadUV(a: Readonly, b: Readonly, c: Readonly, d: Readonly, uv_a: Readonly, uv_b: Readonly, uv_c: Readonly, uv_d: Readonly, col: Bind.ImU32): void { this.native.PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); }\n // inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; }\n public PrimWriteVtx(pos: Readonly, uv: Readonly, col: Bind.ImU32): void { this.native.PrimWriteVtx(pos, uv, col); }\n // inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; }\n public PrimWriteIdx(idx: ImDrawIdx): void { this.native.PrimWriteIdx(idx); }\n // inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); }\n public PrimVtx(pos: Readonly, uv: Readonly, col: Bind.ImU32): void { this.native.PrimVtx(pos, uv, col); }\n // IMGUI_API void UpdateClipRect();\n public UpdateClipRect(): void { this.native.UpdateClipRect(); }\n // IMGUI_API void UpdateTextureID();\n public UpdateTextureID(): void { this.native.UpdateTextureID(); }\n}\n\n// All draw data to render an ImGui frame\nexport class ImDrawData\n{\n constructor(public readonly native: Bind.reference_ImDrawData) {}\n\n public IterateDrawLists(callback: (draw_list: ImDrawList) => void): void {\n this.native.IterateDrawLists((draw_list: Bind.reference_ImDrawList): void => {\n callback(new ImDrawList(draw_list));\n });\n }\n\n // bool Valid; // Only valid after Render() is called and before the next NewFrame() is called.\n get Valid(): boolean { return this.native.Valid; }\n // ImDrawList** CmdLists;\n // int CmdListsCount;\n get CmdListsCount(): number { return this.native.CmdListsCount; }\n // int TotalIdxCount; // For convenience, sum of all cmd_lists idx_buffer.Size\n get TotalIdxCount(): number { return this.native.TotalIdxCount; }\n // int TotalVtxCount; // For convenience, sum of all cmd_lists vtx_buffer.Size\n get TotalVtxCount(): number { return this.native.TotalVtxCount; }\n // ImVec2 DisplayPos; // Upper-left position of the viewport to render (== upper-left of the orthogonal projection matrix to use)\n get DisplayPos(): Readonly { return this.native.DisplayPos; }\n // ImVec2 DisplaySize; // Size of the viewport to render (== io.DisplaySize for the main viewport) (DisplayPos + DisplaySize == lower-right of the orthogonal projection matrix to use)\n get DisplaySize(): Readonly { return this.native.DisplaySize; }\n // ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display.\n get FramebufferScale(): Readonly { return this.native.FramebufferScale; }\n\n // Functions\n // ImDrawData() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCount = 0; }\n // IMGUI_API void DeIndexAllBuffers(); // For backward compatibility or convenience: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering!\n public DeIndexAllBuffers(): void { this.native.DeIndexAllBuffers(); }\n // IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than ImGui expects, or if there is a difference between your window resolution and framebuffer resolution.\n public ScaleClipRects(fb_scale: Readonly): void {\n this.native.ScaleClipRects(fb_scale);\n }\n}\n\nexport class script_ImFontConfig implements Bind.interface_ImFontConfig\n{\n // void* FontData; // // TTF/OTF data\n // int FontDataSize; // // TTF/OTF data size\n FontData: DataView | null = null;\n // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself).\n FontDataOwnedByAtlas: boolean = true;\n // int FontNo; // 0 // Index of font within TTF/OTF file\n FontNo: number = 0;\n // float SizePixels; // // Size in pixels for rasterizer.\n SizePixels: number = 0;\n // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis.\n OversampleH: number = 3;\n OversampleV: number = 1;\n // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1.\n PixelSnapH: boolean = false;\n // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now.\n GlyphExtraSpacing: ImVec2 = new ImVec2(0, 0);\n // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input.\n GlyphOffset: ImVec2 = new ImVec2(0, 0);\n // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE.\n GlyphRanges: number | null = null;\n // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font\n GlyphMinAdvanceX: number = 0;\n // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs\n GlyphMaxAdvanceX: number = Number.MAX_VALUE;\n // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights.\n MergeMode: boolean = false;\n // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one.\n RasterizerFlags: number = 0;\n // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable.\n RasterizerMultiply: number = 1.0;\n\n // [Internal]\n // char Name[32]; // Name (strictly to ease debugging)\n Name: string = \"\";\n // ImFont* DstFont;\n DstFont: Bind.reference_ImFont | null = null;\n\n // IMGUI_API ImFontConfig();\n}\n\nexport class ImFontConfig {\n constructor(public readonly internal: Bind.interface_ImFontConfig = new script_ImFontConfig()) {}\n\n // void* FontData; // // TTF/OTF data\n // int FontDataSize; // // TTF/OTF data size\n get FontData(): DataView | null { return this.internal.FontData; }\n // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself).\n get FontDataOwnedByAtlas(): boolean { return this.internal.FontDataOwnedByAtlas; }\n // int FontNo; // 0 // Index of font within TTF/OTF file\n get FontNo(): number { return this.internal.FontNo; }\n // float SizePixels; // // Size in pixels for rasterizer.\n get SizePixels(): number { return this.internal.SizePixels; }\n // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis.\n get OversampleH(): number { return this.internal.OversampleH; }\n get OversampleV(): number { return this.internal.OversampleV; }\n // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1.\n get PixelSnapH(): boolean { return this.internal.PixelSnapH; }\n // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now.\n get GlyphExtraSpacing(): ImVec2 { return this.internal.GlyphExtraSpacing; }\n // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input.\n get GlyphOffset(): ImVec2 { return this.internal.GlyphOffset; }\n // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE.\n get GlyphRanges(): number | null { return this.internal.GlyphRanges; }\n // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font\n get GlyphMinAdvanceX(): number { return this.internal.GlyphMinAdvanceX; }\n // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs\n get GlyphMaxAdvanceX(): number { return this.internal.GlyphMaxAdvanceX; }\n // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights.\n get MergeMode(): boolean { return this.internal.MergeMode; }\n // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one.\n get RasterizerFlags(): number { return this.internal.RasterizerFlags; }\n // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable.\n get RasterizerMultiply(): number { return this.internal.RasterizerMultiply; }\n\n // [Internal]\n // char Name[32]; // Name (strictly to ease debugging)\n get Name(): string { return this.internal.Name; }\n set Name(value: string) { this.internal.Name = value; }\n // ImFont* DstFont;\n get DstFont(): ImFont | null {\n const font = this.internal.DstFont;\n return font && new ImFont(font);\n }\n\n // IMGUI_API ImFontConfig();\n}\n\n// struct ImFontGlyph\nexport class script_ImFontGlyph implements Bind.interface_ImFontGlyph\n{\n // ImWchar Codepoint; // 0x0000..0xFFFF\n Codepoint: number = 0;\n // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in)\n AdvanceX: number = 0.0;\n // float X0, Y0, X1, Y1; // Glyph corners\n X0: number = 0.0;\n Y0: number = 0.0;\n X1: number = 1.0;\n Y1: number = 1.0;\n // float U0, V0, U1, V1; // Texture coordinates\n U0: number = 0.0;\n V0: number = 0.0;\n U1: number = 1.0;\n V1: number = 1.0;\n}\n\nexport class ImFontGlyph implements Bind.interface_ImFontGlyph {\n constructor(public readonly internal: Bind.interface_ImFontGlyph = new script_ImFontGlyph()) {}\n // ImWchar Codepoint; // 0x0000..0xFFFF\n get Codepoint(): number { return this.internal.Codepoint; }\n // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in)\n get AdvanceX(): number { return this.internal.AdvanceX; };\n // float X0, Y0, X1, Y1; // Glyph corners\n get X0(): number { return this.internal.X0; };\n get Y0(): number { return this.internal.Y0; };\n get X1(): number { return this.internal.X1; };\n get Y1(): number { return this.internal.Y1; };\n // float U0, V0, U1, V1; // Texture coordinates\n get U0(): number { return this.internal.U0; };\n get V0(): number { return this.internal.V0; };\n get U1(): number { return this.internal.U1; };\n get V1(): number { return this.internal.V1; };\n}\n\nexport enum ImFontAtlasFlags\n{\n None = 0,\n NoPowerOfTwoHeight = 1 << 0, // Don't round the height to next power of two\n NoMouseCursors = 1 << 1, // Don't build software mouse cursors into the atlas\n}\n\n// Load and rasterize multiple TTF/OTF fonts into a same texture.\n// Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering.\n// We also add custom graphic data into the texture that serves for ImGui.\n// 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you.\n// 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data.\n// 3. Upload the pixels data into a texture within your graphics system.\n// 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture.\n// IMPORTANT: If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the ImFont is build (when calling GetTextData*** or Build()). We only copy the pointer, not the data.\nexport class ImFontAtlas\n{\n constructor(public readonly native: Bind.reference_ImFontAtlas) {}\n\n // IMGUI_API ImFontAtlas();\n // IMGUI_API ~ImFontAtlas();\n // IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg);\n // IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL);\n public AddFontDefault(font_cfg: Bind.interface_ImFontConfig | null = null): ImFont {\n return new ImFont(this.native.AddFontDefault(font_cfg));\n }\n // IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL);\n // IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after Build(). Set font_cfg->FontDataOwnedByAtlas to false to keep ownership.\n public AddFontFromMemoryTTF(data: ArrayBuffer, size_pixels: number, font_cfg: ImFontConfig | null = null, glyph_ranges: number | null = null): ImFont {\n return new ImFont(this.native.AddFontFromMemoryTTF(new Uint8Array(data), size_pixels, font_cfg && font_cfg.internal, glyph_ranges));\n }\n // IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp.\n // IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter.\n // IMGUI_API void ClearTexData(); // Clear the CPU-side texture data. Saves RAM once the texture has been copied to graphics memory.\n public ClearTexData(): void { this.native.ClearTexData(); }\n // IMGUI_API void ClearInputData(); // Clear the input TTF data (inc sizes, glyph ranges)\n public ClearInputData(): void { this.native.ClearInputData(); }\n // IMGUI_API void ClearFonts(); // Clear the ImGui-side font data (glyphs storage, UV coordinates)\n public ClearFonts(): void { this.native.ClearFonts(); }\n // IMGUI_API void Clear(); // Clear all\n public Clear(): void { this.native.Clear(); }\n\n // Build atlas, retrieve pixel data.\n // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID().\n // RGBA32 format is provided for convenience and compatibility, but note that unless you use CustomRect to draw color data, the RGB pixels emitted from Fonts will all be white (~75% of waste).\n // Pitch = Width * BytesPerPixels\n // IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions.\n public Build(): boolean { return this.native.Build(); }\n // IMGUI_API bool IsBuilt() { return Fonts.Size > 0 && (TexPixelsAlpha8 != NULL || TexPixelsRGBA32 != NULL); }\n public IsBuilt(): boolean { return this.native.IsBuilt(); }\n // IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel\n public GetTexDataAsAlpha8(): { pixels: Uint8ClampedArray, width: number, height: number, bytes_per_pixel: number } {\n return this.native.GetTexDataAsAlpha8();\n }\n // IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel\n public GetTexDataAsRGBA32(): { pixels: Uint8ClampedArray, width: number, height: number, bytes_per_pixel: number } {\n return this.native.GetTexDataAsRGBA32();\n }\n // void SetTexID(ImTextureID id) { TexID = id; }\n public SetTexID(id: ImTextureID | null): void { this.TexID = id; }\n\n //-------------------------------------------\n // Glyph Ranges\n //-------------------------------------------\n\n // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list)\n // NB: Make sure that your string are UTF-8 and NOT in your local code page. In C++11, you can create UTF-8 string literal using the u8\"Hello world\" syntax. See FAQ for details.\n // IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin\n GetGlyphRangesDefault(): number { return this.native.GetGlyphRangesDefault(); }\n // IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters\n GetGlyphRangesKorean(): number { return this.native.GetGlyphRangesKorean(); }\n // IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs\n GetGlyphRangesJapanese(): number { return this.native.GetGlyphRangesJapanese(); }\n // IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs\n GetGlyphRangesChineseFull(): number { return this.native.GetGlyphRangesChineseFull(); }\n // IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese\n GetGlyphRangesChineseSimplifiedCommon(): number { return this.native.GetGlyphRangesChineseSimplifiedCommon(); }\n // IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters\n GetGlyphRangesCyrillic(): number { return this.native.GetGlyphRangesCyrillic(); }\n // IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters\n GetGlyphRangesThai(): number { return this.native.GetGlyphRangesThai(); }\n // IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters\n GetGlyphRangesVietnamese(): number { return this.native.GetGlyphRangesVietnamese(); }\n\n // Helpers to build glyph ranges from text data. Feed your application strings/characters to it then call BuildRanges().\n // struct GlyphRangesBuilder\n // {\n // ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used)\n // GlyphRangesBuilder() { UsedChars.resize(0x10000 / 8); memset(UsedChars.Data, 0, 0x10000 / 8); }\n // bool GetBit(int n) const { return (UsedChars[n >> 3] & (1 << (n & 7))) != 0; }\n // void SetBit(int n) { UsedChars[n >> 3] |= 1 << (n & 7); } // Set bit 'c' in the array\n // void AddChar(ImWchar c) { SetBit(c); } // Add character\n // IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added)\n // IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault) to force add all of ASCII/Latin+Ext\n // IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges\n // };\n\n //-------------------------------------------\n // Custom Rectangles/Glyphs API\n //-------------------------------------------\n\n // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. After calling Build(), you can query the rectangle position and render your pixels.\n // You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs.\n // struct CustomRect\n // {\n // unsigned int ID; // Input // User ID. Use <0x10000 to map into a font glyph, >=0x10000 for other/internal/custom texture data.\n // unsigned short Width, Height; // Input // Desired rectangle dimension\n // unsigned short X, Y; // Output // Packed position in Atlas\n // float GlyphAdvanceX; // Input // For custom font glyphs only (ID<0x10000): glyph xadvance\n // ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph display offset\n // ImFont* Font; // Input // For custom font glyphs only (ID<0x10000): target font\n // CustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); Font = NULL; }\n // bool IsPacked() const { return X != 0xFFFF; }\n // };\n\n // IMGUI_API int AddCustomRectRegular(unsigned int id, int width, int height); // Id needs to be >= 0x10000. Id >= 0x80000000 are reserved for ImGui and ImDrawList\n // IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0,0)); // Id needs to be < 0x10000 to register a rectangle to map into a specific font.\n // IMGUI_API void CalcCustomRectUV(const CustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max);\n // const CustomRect* GetCustomRectByIndex(int index) const { if (index < 0) return NULL; return &CustomRects[index]; }\n\n //-------------------------------------------\n // Members\n //-------------------------------------------\n\n // bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert.\n get Locked(): boolean { return this.native.Locked; }\n set Locked(value: boolean) { this.native.Locked = value; }\n // ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_)\n get Flags(): ImFontAtlasFlags { return this.native.Flags; }\n set Flags(value: ImFontAtlasFlags) { this.native.Flags = value; }\n // ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure.\n get TexID(): ImTextureID | null {\n return ImGuiContext.getTexture(this.native.TexID);\n }\n set TexID(value: ImTextureID | null) {\n this.native.TexID = ImGuiContext.setTexture(value);\n }\n // int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height.\n get TexDesiredWidth(): number { return this.native.TexDesiredWidth; }\n set TexDesiredWidth(value: number) { this.native.TexDesiredWidth = value; }\n // int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1.\n get TexGlyphPadding(): number { return this.native.TexGlyphPadding; }\n set TexGlyphPadding(value: number) { this.native.TexGlyphPadding = value; }\n\n // [Internal]\n // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you.\n // unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight\n // unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4\n // int TexWidth; // Texture width calculated during Build().\n get TexWidth(): number { return this.native.TexWidth; }\n // int TexHeight; // Texture height calculated during Build().\n get TexHeight(): number { return this.native.TexHeight; }\n // ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight)\n get TexUvScale(): Readonly { return this.native.TexUvScale; }\n // ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel\n get TexUvWhitePixel(): Readonly { return this.native.TexUvWhitePixel; }\n // ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font.\n get Fonts(): ImVector {\n const fonts: ImVector = new ImVector();\n this.native.IterateFonts((font: Bind.reference_ImFont) => {\n fonts.push(new ImFont(font));\n });\n return fonts;\n }\n // ImVector CustomRects; // Rectangles for packing custom texture data into the atlas.\n // ImVector ConfigData; // Internal data\n // int CustomRectIds[1]; // Identifiers of custom texture rectangle used by ImFontAtlas/ImDrawList\n}\n\n// Font runtime data and rendering\n// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32().\nexport class ImFont\n{\n constructor(public readonly native: Bind.reference_ImFont) {}\n\n // Members: Hot ~62/78 bytes\n // float FontSize; // // Height of characters, set during loading (don't change after loading)\n get FontSize(): number { return this.native.FontSize; }\n // float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale()\n get Scale(): number { return this.native.Scale; }\n set Scale(value: number) { this.native.Scale = value; }\n // ImVec2 DisplayOffset; // = (0.f,1.f) // Offset font rendering by xx pixels\n get DisplayOffset(): Bind.interface_ImVec2 { return this.native.DisplayOffset; }\n // ImVector Glyphs; // // All glyphs.\n get Glyphs(): ImVector {\n const glyphs = new ImVector();\n this.native.IterateGlyphs((glyph: Bind.reference_ImFontGlyph): void => {\n glyphs.push(new ImFontGlyph(glyph)); // TODO: wrap native\n });\n return glyphs;\n }\n // ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI).\n // get IndexAdvanceX(): any { return this.native.IndexAdvanceX; }\n // ImVector IndexLookup; // // Sparse. Index glyphs by Unicode code-point.\n // get IndexLookup(): any { return this.native.IndexLookup; }\n // const ImFontGlyph* FallbackGlyph; // == FindGlyph(FontFallbackChar)\n get FallbackGlyph(): ImFontGlyph | null {\n const glyph = this.native.FallbackGlyph;\n return glyph && new ImFontGlyph(glyph);\n }\n set FallbackGlyph(value: ImFontGlyph | null) {\n this.native.FallbackGlyph = value && value.internal as Bind.reference_ImFontGlyph;\n }\n // float FallbackAdvanceX; // == FallbackGlyph->AdvanceX\n get FallbackAdvanceX(): number { return this.native.FallbackAdvanceX; }\n // ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found. Only set via SetFallbackChar()\n get FallbackChar(): number { return this.native.FallbackChar; }\n\n // Members: Cold ~18/26 bytes\n // short ConfigDataCount; // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont.\n get ConfigDataCount(): number { return this.ConfigData.length; }\n // ImFontConfig* ConfigData; // // Pointer within ContainerAtlas->ConfigData\n get ConfigData(): ImFontConfig[] {\n const cfg_data: ImFontConfig[] = [];\n this.native.IterateConfigData((cfg: Bind.interface_ImFontConfig): void => {\n cfg_data.push(new ImFontConfig(cfg));\n });\n return cfg_data;\n }\n // ImFontAtlas* ContainerAtlas; // // What we has been loaded into\n get ContainerAtlas(): ImFontAtlas | null { return null; }\n // float Ascent, Descent; // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize]\n get Ascent(): number { return this.native.Ascent; }\n get Descent(): number { return this.native.Descent; }\n // int MetricsTotalSurface;// // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs)\n get MetricsTotalSurface(): number { return this.native.MetricsTotalSurface; }\n\n // Methods\n // IMGUI_API ImFont();\n // IMGUI_API ~ImFont();\n // IMGUI_API void ClearOutputData();\n public ClearOutputData(): void { return this.native.ClearOutputData(); }\n // IMGUI_API void BuildLookupTable();\n public BuildLookupTable(): void { return this.native.BuildLookupTable(); }\n // IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const;\n public FindGlyph(c: number): Readonly | null {\n const glyph: Readonly | null = this.native.FindGlyph(c);\n return glyph && new ImFontGlyph(glyph);\n }\n // IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const;\n public FindGlyphNoFallback(c: number): ImFontGlyph | null {\n const glyph: Readonly | null = this.native.FindGlyphNoFallback(c);\n return glyph && new ImFontGlyph(glyph);\n }\n // IMGUI_API void SetFallbackChar(ImWchar c);\n public SetFallbackChar(c: number): void { return this.native.SetFallbackChar(c); }\n // float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; }\n public GetCharAdvance(c: number): number { return this.native.GetCharAdvance(c); }\n // bool IsLoaded() const { return ContainerAtlas != NULL; }\n public IsLoaded(): boolean { return this.native.IsLoaded(); }\n // const char* GetDebugName() const { return ConfigData ? ConfigData->Name : \"\"; }\n public GetDebugName(): string { return this.native.GetDebugName(); }\n\n // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable.\n // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable.\n // IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8\n public CalcTextSizeA(size: number, max_width: number, wrap_width: number, text_begin: string, text_end: number | null = null, remaining: Bind.ImScalar | null = null): Bind.interface_ImVec2 {\n return this.native.CalcTextSizeA(size, max_width, wrap_width, text_end !== null ? text_begin.substring(0, text_end) : text_begin, remaining, new ImVec2());\n }\n // IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const;\n public CalcWordWrapPositionA(scale: number, text: string, text_end: number | null = null, wrap_width: number): number {\n return this.native.CalcWordWrapPositionA(scale, text_end !== null ? text.substring(0, text_end) : text, wrap_width);\n }\n // IMGUI_API void RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, unsigned short c) const;\n public RenderChar(draw_list: ImDrawList, size: number, pos: Readonly, col: Bind.ImU32, c: Bind.ImWchar): void {\n this.native.RenderChar(draw_list.native, size, pos, col, c);\n }\n // IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const;\n public RenderText(draw_list: ImDrawList, size: number, pos: Readonly, col: Bind.ImU32, clip_rect: Readonly, text_begin: string, text_end: number | null = null, wrap_width: number = 0.0, cpu_fine_clip: boolean = false): void {}\n\n // [Internal]\n // IMGUI_API void GrowIndex(int new_size);\n // IMGUI_API void AddGlyph(ImWchar c, float x0, float y0, float x1, float y1, float u0, float v0, float u1, float v1, float advance_x);\n // IMGUI_API void AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst = true); // Makes 'dst' character/glyph points to 'src' character/glyph. Currently needs to be called AFTER fonts have been built.\n\n // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS\n // typedef ImFontGlyph Glyph; // OBSOLETE 1.52+\n // #endif\n}\n\n// a script version of BindImGui.ImGuiStyle with matching interface\nclass script_ImGuiStyle implements Bind.interface_ImGuiStyle {\n public Alpha: number = 1.0;\n public WindowPadding: ImVec2 = new ImVec2(8, 8);\n public WindowRounding: number = 7.0;\n public WindowBorderSize: number = 0.0;\n public WindowMinSize: ImVec2 = new ImVec2(32, 32);\n public WindowTitleAlign: ImVec2 = new ImVec2(0.0, 0.5);\n public WindowMenuButtonPosition: ImGuiDir = ImGuiDir.Left;\n public ChildRounding: number = 0.0;\n public ChildBorderSize: number = 1.0;\n public PopupRounding: number = 0.0;\n public PopupBorderSize: number = 1.0;\n public FramePadding: ImVec2 = new ImVec2(4, 3);\n public FrameRounding: number = 0.0;\n public FrameBorderSize: number = 0.0;\n public ItemSpacing: ImVec2 = new ImVec2(8, 4);\n public ItemInnerSpacing: ImVec2 = new ImVec2(4, 4);\n public TouchExtraPadding: ImVec2 = new ImVec2(0, 0);\n public IndentSpacing: number = 21.0;\n public ColumnsMinSpacing: number = 6.0;\n public ScrollbarSize: number = 16.0;\n public ScrollbarRounding: number = 9.0;\n public GrabMinSize: number = 10.0;\n public GrabRounding: number = 0.0;\n public TabRounding: number = 0.0;\n public TabBorderSize: number = 0.0;\n public ButtonTextAlign: ImVec2 = new ImVec2(0.5, 0.5);\n public SelectableTextAlign: ImVec2 = new ImVec2(0.0, 0.0);\n public DisplayWindowPadding: ImVec2 = new ImVec2(22, 22);\n public DisplaySafeAreaPadding: ImVec2 = new ImVec2(4, 4);\n public MouseCursorScale: number = 1;\n public AntiAliasedLines: boolean = true;\n public AntiAliasedFill: boolean = true;\n public CurveTessellationTol: number = 1.25;\n private Colors: ImVec4[] = [];\n public _getAt_Colors(index: number): Bind.interface_ImVec4 { return this.Colors[index]; }\n public _setAt_Colors(index: number, color: Readonly): boolean { this.Colors[index].Copy(color); return true; }\n\n constructor() {\n for (let i = 0; i < ImGuiCol.COUNT; ++i) {\n this.Colors[i] = new ImVec4();\n }\n const _this = new ImGuiStyle(this);\n const native = new bind.ImGuiStyle();\n const _that = new ImGuiStyle(native);\n _that.Copy(_this);\n bind.StyleColorsClassic(native);\n _this.Copy(_that);\n native.delete();\n }\n\n public ScaleAllSizes(scale_factor: number): void {\n const _this = new ImGuiStyle(this);\n const native = new bind.ImGuiStyle();\n const _that = new ImGuiStyle(native);\n _that.Copy(_this);\n native.ScaleAllSizes(scale_factor);\n _this.Copy(_that);\n native.delete();\n }\n}\n\nexport class ImGuiStyle\n{\n constructor(public readonly internal: Bind.interface_ImGuiStyle = new script_ImGuiStyle()) {}\n\n get Alpha(): number { return this.internal.Alpha; } set Alpha(value: number) { this.internal.Alpha = value; }\n get WindowPadding(): Bind.interface_ImVec2 { return this.internal.WindowPadding; }\n get WindowRounding(): number { return this.internal.WindowRounding; } set WindowRounding(value: number) { this.internal.WindowRounding = value; }\n get WindowBorderSize(): number { return this.internal.WindowBorderSize; } set WindowBorderSize(value: number) { this.internal.WindowBorderSize = value; }\n get WindowMinSize(): Bind.interface_ImVec2 { return this.internal.WindowMinSize; }\n get WindowTitleAlign(): Bind.interface_ImVec2 { return this.internal.WindowTitleAlign; }\n get WindowMenuButtonPosition(): ImGuiDir { return this.internal.WindowMenuButtonPosition; } set WindowMenuButtonPosition(value: ImGuiDir) { this.internal.WindowMenuButtonPosition = value; }\n get ChildRounding(): number { return this.internal.ChildRounding; } set ChildRounding(value: number) { this.internal.ChildRounding = value; }\n get ChildBorderSize(): number { return this.internal.ChildBorderSize; } set ChildBorderSize(value: number) { this.internal.ChildBorderSize = value; }\n get PopupRounding(): number { return this.internal.PopupRounding; } set PopupRounding(value: number) { this.internal.PopupRounding = value; }\n get PopupBorderSize(): number { return this.internal.PopupBorderSize; } set PopupBorderSize(value: number) { this.internal.PopupBorderSize = value; }\n get FramePadding(): Bind.interface_ImVec2 { return this.internal.FramePadding; }\n get FrameRounding(): number { return this.internal.FrameRounding; } set FrameRounding(value: number) { this.internal.FrameRounding = value; }\n get FrameBorderSize(): number { return this.internal.FrameBorderSize; } set FrameBorderSize(value: number) { this.internal.FrameBorderSize = value; }\n get ItemSpacing(): Bind.interface_ImVec2 { return this.internal.ItemSpacing; }\n get ItemInnerSpacing(): Bind.interface_ImVec2 { return this.internal.ItemInnerSpacing; }\n get TouchExtraPadding(): Bind.interface_ImVec2 { return this.internal.TouchExtraPadding; }\n get IndentSpacing(): number { return this.internal.IndentSpacing; } set IndentSpacing(value: number) { this.internal.IndentSpacing = value; }\n get ColumnsMinSpacing(): number { return this.internal.ColumnsMinSpacing; } set ColumnsMinSpacing(value: number) { this.internal.ColumnsMinSpacing = value; }\n get ScrollbarSize(): number { return this.internal.ScrollbarSize; } set ScrollbarSize(value: number) { this.internal.ScrollbarSize = value; }\n get ScrollbarRounding(): number { return this.internal.ScrollbarRounding; } set ScrollbarRounding(value: number) { this.internal.ScrollbarRounding = value; }\n get GrabMinSize(): number { return this.internal.GrabMinSize; } set GrabMinSize(value: number) { this.internal.GrabMinSize = value; }\n get GrabRounding(): number { return this.internal.GrabRounding; } set GrabRounding(value: number) { this.internal.GrabRounding = value; }\n get TabRounding(): number { return this.internal.TabRounding; } set TabRounding(value: number) { this.internal.TabRounding = value; }\n get TabBorderSize(): number { return this.internal.TabBorderSize; } set TabBorderSize(value: number) { this.internal.TabBorderSize = value; }\n get ButtonTextAlign(): Bind.interface_ImVec2 { return this.internal.ButtonTextAlign; }\n get SelectableTextAlign(): Bind.interface_ImVec2 { return this.internal.SelectableTextAlign; }\n get DisplayWindowPadding(): Bind.interface_ImVec2 { return this.internal.DisplayWindowPadding; }\n get DisplaySafeAreaPadding(): Bind.interface_ImVec2 { return this.internal.DisplaySafeAreaPadding; }\n get MouseCursorScale(): number { return this.internal.MouseCursorScale; } set MouseCursorScale(value: number) { this.internal.MouseCursorScale = value; }\n get AntiAliasedLines(): boolean { return this.internal.AntiAliasedLines; } set AntiAliasedLines(value: boolean) { this.internal.AntiAliasedLines = value; }\n get AntiAliasedFill(): boolean { return this.internal.AntiAliasedFill; } set AntiAliasedFill(value: boolean) { this.internal.AntiAliasedFill = value; }\n get CurveTessellationTol(): number { return this.internal.CurveTessellationTol; } set CurveTessellationTol(value: number) { this.internal.CurveTessellationTol = value; }\n public Colors: Bind.interface_ImVec4[] = new Proxy([], {\n get: (target: Bind.interface_ImVec4[], key: PropertyKey): number | Bind.interface_ImVec4 => {\n if (key === \"length\") { return ImGuiCol.COUNT; }\n return this.internal._getAt_Colors(Number(key));\n },\n set: (target: Bind.interface_ImVec4[], key: PropertyKey, value: Readonly): boolean => {\n return this.internal._setAt_Colors(Number(key), value);\n },\n });\n\n public Copy(other: Readonly): this {\n this.Alpha = other.Alpha;\n this.WindowPadding.Copy(other.WindowPadding);\n this.WindowRounding = other.WindowRounding;\n this.WindowBorderSize = other.WindowBorderSize;\n this.WindowMinSize.Copy(other.WindowMinSize);\n this.WindowTitleAlign.Copy(other.WindowTitleAlign);\n this.WindowMenuButtonPosition = other.WindowMenuButtonPosition;\n this.ChildRounding = other.ChildRounding;\n this.ChildBorderSize = other.ChildBorderSize;\n this.PopupRounding = other.PopupRounding;\n this.PopupBorderSize = other.PopupBorderSize;\n this.FramePadding.Copy(other.FramePadding);\n this.FrameRounding = other.FrameRounding;\n this.FrameBorderSize = other.FrameBorderSize;\n this.ItemSpacing.Copy(other.ItemSpacing);\n this.ItemInnerSpacing.Copy(other.ItemInnerSpacing);\n this.TouchExtraPadding.Copy(other.TouchExtraPadding);\n this.IndentSpacing = other.IndentSpacing;\n this.ColumnsMinSpacing = other.ColumnsMinSpacing;\n this.ScrollbarSize = other.ScrollbarSize;\n this.ScrollbarRounding = other.ScrollbarRounding;\n this.GrabMinSize = other.GrabMinSize;\n this.GrabRounding = other.GrabRounding;\n this.TabRounding = other.TabRounding;\n this.TabBorderSize = other.TabBorderSize;\n this.ButtonTextAlign.Copy(other.ButtonTextAlign);\n this.DisplayWindowPadding.Copy(other.DisplayWindowPadding);\n this.DisplaySafeAreaPadding.Copy(other.DisplaySafeAreaPadding);\n this.MouseCursorScale = other.MouseCursorScale;\n this.AntiAliasedLines = other.AntiAliasedLines;\n this.AntiAliasedFill = other.AntiAliasedFill;\n this.CurveTessellationTol = other.CurveTessellationTol;\n for (let i = 0; i < ImGuiCol.COUNT; ++i) {\n this.Colors[i].Copy(other.Colors[i]);\n }\n return this;\n }\n\n public ScaleAllSizes(scale_factor: number): void { this.internal.ScaleAllSizes(scale_factor); }\n}\n\n// This is where your app communicate with Dear ImGui. Access via ImGui::GetIO().\n// Read 'Programmer guide' section in .cpp file for general usage.\nexport class ImGuiIO\n{\n constructor(public readonly native: Bind.reference_ImGuiIO) {}\n\n //------------------------------------------------------------------\n // Settings (fill once) // Default value:\n //------------------------------------------------------------------\n\n // ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc.\n get ConfigFlags(): ImGuiConfigFlags { return this.native.ConfigFlags; }\n set ConfigFlags(value: ImGuiConfigFlags) { this.native.ConfigFlags = value; }\n // ImGuiBackendFlags BackendFlags; // = 0 // Set ImGuiBackendFlags_ enum. Set by imgui_impl_xxx files or custom back-end to communicate features supported by the back-end.\n get BackendFlags(): ImGuiBackendFlags { return this.native.BackendFlags; }\n set BackendFlags(value: ImGuiBackendFlags) { this.native.BackendFlags = value; }\n // ImVec2 DisplaySize; // // Display size, in pixels. For clamping windows positions.\n get DisplaySize(): Bind.reference_ImVec2 { return this.native.DisplaySize; }\n // float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds.\n get DeltaTime(): number { return this.native.DeltaTime; }\n set DeltaTime(value: number) { this.native.DeltaTime = value; }\n // float IniSavingRate; // = 5.0f // Maximum time between saving positions/sizes to .ini file, in seconds.\n get IniSavingRate(): number { return this.native.IniSavingRate; }\n set IniSavingRate(value: number) { this.native.IniSavingRate = value; }\n // const char* IniFilename; // = \"imgui.ini\" // Path to .ini file. NULL to disable .ini saving.\n get IniFilename(): string { return this.native.IniFilename; }\n set IniFilename(value: string) { this.native.IniFilename = value; }\n // const char* LogFilename; // = \"imgui_log.txt\" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified).\n get LogFilename(): string { return this.native.LogFilename; }\n set LogFilename(value: string) { this.native.LogFilename = value; }\n // float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds.\n get MouseDoubleClickTime(): number { return this.native.MouseDoubleClickTime; }\n set MouseDoubleClickTime(value: number) { this.native.MouseDoubleClickTime = value; }\n // float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels.\n get MouseDoubleClickMaxDist(): number { return this.native.MouseDoubleClickMaxDist; }\n set MouseDoubleClickMaxDist(value: number) { this.native.MouseDoubleClickMaxDist = value; }\n // float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging\n get MouseDragThreshold(): number { return this.native.MouseDragThreshold; }\n set MouseDragThreshold(value: number) { this.native.MouseDragThreshold = value; }\n // int KeyMap[ImGuiKey_COUNT]; // // Map of indices into the KeysDown[512] entries array\n public KeyMap: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiKey.COUNT; }\n return this.native._getAt_KeyMap(Number(key));\n },\n set: (target: number[], key: PropertyKey, value: number): boolean => {\n return this.native._setAt_KeyMap(Number(key), value);\n },\n });\n // float KeyRepeatDelay; // = 0.250f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.).\n get KeyRepeatDelay(): number { return this.native.KeyRepeatDelay; }\n set KeyRepeatDelay(value: number) { this.native.KeyRepeatDelay = value; }\n // float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds.\n get KeyRepeatRate(): number { return this.native.KeyRepeatRate; }\n set KeyRepeatRate(value: number) { this.native.KeyRepeatRate = value; }\n // void* UserData; // = NULL // Store your own data for retrieval by callbacks.\n get UserData(): any { return this.native.UserData; }\n set UserData(value: any) { this.native.UserData = value; }\n\n // ImFontAtlas* Fonts; // // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array.\n get Fonts(): ImFontAtlas { return new ImFontAtlas(this.native.Fonts); }\n // float FontGlobalScale; // = 1.0f // Global scale all fonts\n get FontGlobalScale(): number { return this.native.FontGlobalScale; }\n set FontGlobalScale(value: number) { this.native.FontGlobalScale = value; }\n // bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel.\n get FontAllowUserScaling(): boolean { return this.native.FontAllowUserScaling; }\n set FontAllowUserScaling(value: boolean) { this.native.FontAllowUserScaling = value; }\n // ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0].\n get FontDefault(): ImFont | null {\n const font: Bind.reference_ImFont | null = this.native.FontDefault;\n return (font === null) ? null : new ImFont(font);\n }\n set FontDefault(value: ImFont | null) {\n this.native.FontDefault = value && value.native;\n }\n // ImVec2 DisplayFramebufferScale; // = (1.0f,1.0f) // For retina display or other situations where window coordinates are different from framebuffer coordinates. User storage only, presently not used by ImGui.\n get DisplayFramebufferScale(): Bind.reference_ImVec2 { return this.native.DisplayFramebufferScale; }\n\n // Miscellaneous configuration options\n // bool OptMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl\n get ConfigMacOSXBehaviors(): boolean { return this.native.ConfigMacOSXBehaviors; }\n set ConfigMacOSXBehaviors(value: boolean) { this.native.ConfigMacOSXBehaviors = value; }\n // bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor, for users who consider it annoying.\n get ConfigInputTextCursorBlink(): boolean { return this.native.ConfigInputTextCursorBlink; }\n set ConfigInputTextCursorBlink(value: boolean) { this.native.ConfigInputTextCursorBlink = value; }\n // bool ConfigWindowsResizeFromEdges; // = false // [BETA] Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be the ImGuiWindowFlags_ResizeFromAnySide flag)\n get ConfigWindowsResizeFromEdges(): boolean { return this.native.ConfigWindowsResizeFromEdges; }\n set ConfigWindowsResizeFromEdges(value: boolean) { this.native.ConfigWindowsResizeFromEdges = value; }\n // bool ConfigWindowsMoveFromTitleBarOnly;// = false // [BETA] Set to true to only allow moving windows when clicked+dragged from the title bar. Windows without a title bar are not affected.\n get ConfigWindowsMoveFromTitleBarOnly(): boolean { return this.native.ConfigWindowsMoveFromTitleBarOnly; }\n set ConfigWindowsMoveFromTitleBarOnly(value: boolean) { this.native.ConfigWindowsMoveFromTitleBarOnly = value; }\n\n //------------------------------------------------------------------\n // Settings (User Functions)\n //------------------------------------------------------------------\n\n // Optional: Platform/Renderer back-end name (informational only! will be displayed in About Window) + User data for back-end/wrappers to store their own stuff.\n // const char* BackendPlatformName; // = NULL\n get BackendPlatformName(): string | null { return this.native.BackendPlatformName; }\n set BackendPlatformName(value: string | null) { this.native.BackendPlatformName = value; }\n // const char* BackendRendererName; // = NULL\n get BackendRendererName(): string | null { return this.native.BackendRendererName; }\n set BackendRendererName(value: string | null) { this.native.BackendRendererName = value; }\n // void* BackendPlatformUserData; // = NULL\n get BackendPlatformUserData(): string | null { return this.native.BackendPlatformUserData; }\n set BackendPlatformUserData(value: string | null) { this.native.BackendPlatformUserData = value; }\n // void* BackendRendererUserData; // = NULL\n get BackendRendererUserData(): string | null { return this.native.BackendRendererUserData; }\n set BackendRendererUserData(value: string | null) { this.native.BackendRendererUserData = value; }\n // void* BackendLanguageUserData; // = NULL\n get BackendLanguageUserData(): string | null { return this.native.BackendLanguageUserData; }\n set BackendLanguageUserData(value: string | null) { this.native.BackendLanguageUserData = value; }\n\n // Optional: access OS clipboard\n // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures)\n // const char* (*GetClipboardTextFn)(void* user_data);\n get GetClipboardTextFn(): ((user_data: any) => string) | null { return this.native.GetClipboardTextFn; }\n set GetClipboardTextFn(value: ((user_data: any) => string) | null) { this.native.GetClipboardTextFn = value; }\n // void (*SetClipboardTextFn)(void* user_data, const char* text);\n get SetClipboardTextFn(): ((user_data: any, text: string) => void) | null { return this.native.SetClipboardTextFn; }\n set SetClipboardTextFn(value: ((user_data: any, text: string) => void) | null) { this.native.SetClipboardTextFn = value; }\n // void* ClipboardUserData;\n get ClipboardUserData(): any { return this.native.ClipboardUserData; }\n set ClipboardUserData(value: any) { this.native.ClipboardUserData = value; }\n\n // Optional: override memory allocations. MemFreeFn() may be called with a NULL pointer.\n // (default to posix malloc/free)\n // void* (*MemAllocFn)(size_t sz);\n // void (*MemFreeFn)(void* ptr);\n\n // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME in Windows)\n // (default to use native imm32 api on Windows)\n // void (*ImeSetInputScreenPosFn)(int x, int y);\n // void* ImeWindowHandle; // (Windows) Set this to your HWND to get automatic IME cursor positioning.\n\n //------------------------------------------------------------------\n // Input - Fill before calling NewFrame()\n //------------------------------------------------------------------\n\n // ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX,-FLT_MAX) if mouse is unavailable (on another screen, etc.)\n get MousePos(): Bind.reference_ImVec2 { return this.native.MousePos; }\n // bool MouseDown[5]; // Mouse buttons: left, right, middle + extras. ImGui itself mostly only uses left button (BeginPopupContext** are using right button). Others buttons allows us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API.\n public MouseDown: boolean[] = new Proxy([], {\n get: (target: boolean[], key: PropertyKey): number | boolean => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseDown(Number(key));\n },\n set: (target: boolean[], key: PropertyKey, value: boolean): boolean => {\n return this.native._setAt_MouseDown(Number(key), value);\n },\n });\n // float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text.\n public get MouseWheel(): number { return this.native.MouseWheel; }\n public set MouseWheel(value: number) { this.native.MouseWheel = value; }\n // float MouseWheelH; // Mouse wheel (Horizontal). Most users don't have a mouse with an horizontal wheel, may not be filled by all back-ends.\n public get MouseWheelH(): number { return this.native.MouseWheelH; }\n public set MouseWheelH(value: number) { this.native.MouseWheelH = value; }\n // bool MouseDrawCursor; // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor).\n get MouseDrawCursor(): boolean { return this.native.MouseDrawCursor; } set MouseDrawCursor(value: boolean) { this.native.MouseDrawCursor = value; }\n // bool KeyCtrl; // Keyboard modifier pressed: Control\n get KeyCtrl(): boolean { return this.native.KeyCtrl; } set KeyCtrl(value: boolean) { this.native.KeyCtrl = value; }\n // bool KeyShift; // Keyboard modifier pressed: Shift\n get KeyShift(): boolean { return this.native.KeyShift; } set KeyShift(value: boolean) { this.native.KeyShift = value; }\n // bool KeyAlt; // Keyboard modifier pressed: Alt\n get KeyAlt(): boolean { return this.native.KeyAlt; } set KeyAlt(value: boolean) { this.native.KeyAlt = value; }\n // bool KeySuper; // Keyboard modifier pressed: Cmd/Super/Windows\n get KeySuper(): boolean { return this.native.KeySuper; } set KeySuper(value: boolean) { this.native.KeySuper = value; }\n // bool KeysDown[512]; // Keyboard keys that are pressed (in whatever storage order you naturally have access to keyboard data)\n public KeysDown: boolean[] = new Proxy([], {\n get: (target: boolean[], key: PropertyKey): number | boolean => {\n if (key === \"length\") { return 512; }\n return this.native._getAt_KeysDown(Number(key));\n },\n set: (target: boolean[], key: PropertyKey, value: boolean): boolean => {\n return this.native._setAt_KeysDown(Number(key), value);\n },\n });\n // float NavInputs[ImGuiNavInput_COUNT]; // Gamepad inputs (keyboard keys will be auto-mapped and be written here by ImGui::NewFrame)\n public NavInputs: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiNavInput.COUNT; }\n return this.native._getAt_NavInputs(Number(key));\n },\n set: (target: number[], key: PropertyKey, value: number): boolean => {\n return this.native._setAt_NavInputs(Number(key), value);\n },\n });\n\n // Functions\n // IMGUI_API void AddInputCharacter(ImWchar c); // Add new character into InputCharacters[]\n public AddInputCharacter(c: number): void { this.native.AddInputCharacter(c); }\n // IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Add new characters into InputCharacters[] from an UTF-8 string\n public AddInputCharactersUTF8(utf8_chars: string): void { this.native.AddInputCharactersUTF8(utf8_chars); }\n // inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Clear the text input buffer manually\n public ClearInputCharacters(): void { this.native.ClearInputCharacters(); }\n\n //------------------------------------------------------------------\n // Output - Retrieve after calling NewFrame()\n //------------------------------------------------------------------\n\n // bool WantCaptureMouse; // When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. This is set by ImGui when it wants to use your mouse (e.g. unclicked mouse is hovering a window, or a widget is active).\n get WantCaptureMouse(): boolean { return this.native.WantCaptureMouse; } set WantCaptureMouse(value: boolean) { this.native.WantCaptureMouse = value; }\n // bool WantCaptureKeyboard; // When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. This is set by ImGui when it wants to use your keyboard inputs.\n get WantCaptureKeyboard(): boolean { return this.native.WantCaptureKeyboard; } set WantCaptureKeyboard(value: boolean) { this.native.WantCaptureKeyboard = value; }\n // bool WantTextInput; // Mobile/console: when io.WantTextInput is true, you may display an on-screen keyboard. This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active).\n get WantTextInput(): boolean { return this.native.WantTextInput; } set WantTextInput(value: boolean) { this.native.WantTextInput = value; }\n // bool WantSetMousePos; // [BETA-NAV] MousePos has been altered, back-end should reposition mouse on next frame. Set only when 'NavMovesMouse=true'.\n get WantSetMousePos(): boolean { return this.native.WantSetMousePos; } set WantSetMousePos(value: boolean) { this.native.WantSetMousePos = value; }\n // bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. IMPORTANT: You need to clear io.WantSaveIniSettings yourself.\n get WantSaveIniSettings(): boolean { return this.native.WantSaveIniSettings; } set WantSaveIniSettings(value: boolean) { this.native.WantSaveIniSettings = value; }\n // bool NavActive; // Directional navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag.\n get NavActive(): boolean { return this.native.NavActive; } set NavActive(value: boolean) { this.native.NavActive = value; }\n // bool NavVisible; // Directional navigation is visible and allowed (will handle ImGuiKey_NavXXX events).\n get NavVisible(): boolean { return this.native.NavVisible; } set NavVisible(value: boolean) { this.native.NavVisible = value; }\n // float Framerate; // Application framerate estimation, in frame per second. Solely for convenience. Rolling average estimation based on IO.DeltaTime over 120 frames\n get Framerate(): number { return this.native.Framerate; }\n // int MetricsRenderVertices; // Vertices output during last call to Render()\n get MetricsRenderVertices(): number { return this.native.MetricsRenderVertices; }\n // int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3\n get MetricsRenderIndices(): number { return this.native.MetricsRenderIndices; }\n // int MetricsRenderWindows; // Number of visible windows\n get MetricsRenderWindows(): number { return this.native.MetricsRenderWindows; }\n // int MetricsActiveWindows; // Number of visible root windows (exclude child windows)\n get MetricsActiveWindows(): number { return this.native.MetricsActiveWindows; }\n // int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts.\n get MetricsActiveAllocations(): number { return this.native.MetricsActiveAllocations; }\n // ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta.\n get MouseDelta(): Readonly { return this.native.MouseDelta; }\n\n //------------------------------------------------------------------\n // [Internal] ImGui will maintain those fields. Forward compatibility not guaranteed!\n //------------------------------------------------------------------\n\n // ImVec2 MousePosPrev; // Previous mouse position temporary storage (nb: not for public use, set to MousePos in NewFrame())\n // ImVec2 MouseClickedPos[5]; // Position at time of clicking\n public MouseClickedPos: Array> = new Proxy([], {\n get: (target: Array>, key: PropertyKey): number | Readonly => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseClickedPos(Number(key));\n },\n });\n // float MouseClickedTime[5]; // Time of last click (used to figure out double-click)\n // bool MouseClicked[5]; // Mouse button went from !Down to Down\n // bool MouseDoubleClicked[5]; // Has mouse button been double-clicked?\n // bool MouseReleased[5]; // Mouse button went from Down to !Down\n // bool MouseDownOwned[5]; // Track if button was clicked inside a window. We don't request mouse capture from the application if click started outside ImGui bounds.\n // float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked)\n public MouseDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseDownDuration(Number(key));\n },\n });\n // float MouseDownDurationPrev[5]; // Previous time the mouse button has been down\n // ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point\n // float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point\n // float KeysDownDuration[512]; // Duration the keyboard key has been down (0.0f == just pressed)\n public KeysDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return 512; }\n return this.native._getAt_KeysDownDuration(Number(key));\n },\n });\n // float KeysDownDurationPrev[512]; // Previous duration the key has been down\n // float NavInputsDownDuration[ImGuiNavInput_COUNT];\n public NavInputsDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiNavInput.COUNT; }\n return this.native._getAt_NavInputsDownDuration(Number(key));\n },\n });\n // float NavInputsDownDurationPrev[ImGuiNavInput_COUNT];\n\n // IMGUI_API ImGuiIO();\n}\n\nconst _texturesById: Array = [];\n\n// Context creation and access, if you want to use multiple context, share context between modules (e.g. DLL).\n// All contexts share a same ImFontAtlas by default. If you want different font atlas, you can new() them and overwrite the GetIO().Fonts variable of an ImGui context.\n// All those functions are not reliant on the current context.\nexport class ImGuiContext {\n public static current_ctx: ImGuiContext | null = null;\n public static getTexture(index: number): ImTextureID | null {\n return _texturesById[index] || null;\n }\n public static setTexture(texture: ImTextureID | null): number {\n let index = _texturesById.indexOf(texture);\n if (index === -1) {\n for (let i = 0; i < _texturesById.length; ++i) {\n if (_texturesById[i] === null) {\n _texturesById[i] = texture;\n return i;\n }\n }\n index = _texturesById.length;\n _texturesById.push(texture);\n }\n return index;\n }\n\n constructor(public readonly native: Bind.WrapImGuiContext) {}\n}\n// IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL);\nexport function CreateContext(shared_font_atlas: ImFontAtlas | null = null): ImGuiContext | null {\n const ctx: ImGuiContext = new ImGuiContext(bind.CreateContext(shared_font_atlas ? shared_font_atlas.native : null));\n if (ImGuiContext.current_ctx === null) {\n ImGuiContext.current_ctx = ctx;\n }\n return ctx;\n}\n// IMGUI_API void DestroyContext(ImGuiContext* ctx = NULL); // NULL = Destroy current context\nexport function DestroyContext(ctx: ImGuiContext | null = null): void {\n if (ctx === null) {\n ctx = ImGuiContext.current_ctx;\n ImGuiContext.current_ctx = null;\n }\n bind.DestroyContext((ctx === null) ? null : ctx.native);\n}\n// IMGUI_API ImGuiContext* GetCurrentContext();\nexport function GetCurrentContext(): ImGuiContext | null {\n // const ctx_native: BindImGui.ImGuiContext | null = bind.GetCurrentContext();\n return ImGuiContext.current_ctx;\n}\n// IMGUI_API void SetCurrentContext(ImGuiContext* ctx);\nexport function SetCurrentContext(ctx: ImGuiContext | null): void {\n bind.SetCurrentContext((ctx === null) ? null : ctx.native);\n ImGuiContext.current_ctx = ctx;\n}\n\n// IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert);\nexport function DebugCheckVersionAndDataLayout(version_str: string, sz_io: number, sz_style: number, sz_vec2: number, sz_vec4: number, sz_draw_vert: number, sz_draw_idx: number): boolean {\n return bind.DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx);\n}\n\n// Main\n// IMGUI_API ImGuiIO& GetIO();\nexport function GetIO(): ImGuiIO { return new ImGuiIO(bind.GetIO()); }\n// IMGUI_API ImGuiStyle& GetStyle();\nexport function GetStyle(): ImGuiStyle { return new ImGuiStyle(bind.GetStyle()); }\n// IMGUI_API void NewFrame(); // start a new ImGui frame, you can submit any command from this point until Render()/EndFrame().\nexport function NewFrame(): void { bind.NewFrame(); }\n// IMGUI_API void EndFrame(); // ends the ImGui frame. automatically called by Render(), so most likely don't need to ever call that yourself directly. If you don't need to render you may call EndFrame() but you'll have wasted CPU already. If you don't need to render, better to not create any imgui windows instead!\nexport function EndFrame(): void { bind.EndFrame(); }\n// IMGUI_API void Render(); // ends the ImGui frame, finalize the draw data, then call your io.RenderDrawListsFn() function if set.\nexport function Render(): void { bind.Render(); }\n// IMGUI_API ImDrawData* GetDrawData(); // same value as passed to your io.RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame()\nexport function GetDrawData(): ImDrawData | null {\n const draw_data: Bind.reference_ImDrawData | null = bind.GetDrawData();\n return (draw_data === null) ? null : new ImDrawData(draw_data);\n}\n\n// Demo, Debug, Informations\n// IMGUI_API void ShowDemoWindow(bool* p_open = NULL); // create demo/test window (previously called ShowTestWindow). demonstrate most ImGui features. call this to learn about the library! try to make it always available in your application!\nexport function ShowDemoWindow(p_open: Bind.ImScalar | null = null): void { bind.ShowDemoWindow(p_open); }\n// IMGUI_API void ShowAboutWindow(bool* p_open = NULL); // create about window. display Dear ImGui version, credits and build/system information.\nexport function ShowAboutWindow(p_open: Bind.ImScalar | Bind.ImAccess | null = null): void {\n if (p_open === null) {\n bind.ShowAboutWindow(null);\n } else if (Array.isArray(p_open)) {\n bind.ShowAboutWindow(p_open);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n bind.ShowAboutWindow(ref_open);\n p_open(ref_open[0]);\n }\n}\n// IMGUI_API void ShowMetricsWindow(bool* p_open = NULL); // create metrics window. display ImGui internals: draw commands (with individual draw calls and vertices), window list, basic internal state, etc.\nexport function ShowMetricsWindow(p_open: Bind.ImScalar | Bind.ImAccess | null = null): void {\n if (p_open === null) {\n bind.ShowMetricsWindow(null);\n } else if (Array.isArray(p_open)) {\n bind.ShowMetricsWindow(p_open);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n bind.ShowMetricsWindow(ref_open);\n p_open(ref_open[0]);\n }\n}\n// IMGUI_API void ShowStyleEditor(ImGuiStyle* ref = NULL); // add style editor block (not a window). you can pass in a reference ImGuiStyle structure to compare to, revert to and save to (else it uses the default style)\nexport function ShowStyleEditor(ref: ImGuiStyle | null = null): void {\n if (ref === null) {\n bind.ShowStyleEditor(null);\n } else if (ref.internal instanceof bind.ImGuiStyle) {\n bind.ShowStyleEditor(ref.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(ref);\n bind.ShowStyleEditor(native);\n ref.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API bool ShowStyleSelector(const char* label);\nexport function ShowStyleSelector(label: string): boolean { return bind.ShowStyleSelector(label); }\n// IMGUI_API void ShowFontSelector(const char* label);\nexport function ShowFontSelector(label: string): void { bind.ShowFontSelector(label); }\n// IMGUI_API void ShowUserGuide(); // add basic help/info block (not a window): how to manipulate ImGui as a end-user (mouse/keyboard controls).\nexport function ShowUserGuide(): void { bind.ShowUserGuide(); }\n// IMGUI_API const char* GetVersion();\nexport function GetVersion(): string { return bind.GetVersion(); }\n\n// Styles\n// IMGUI_API void StyleColorsClassic(ImGuiStyle* dst = NULL);\nexport function StyleColorsClassic(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsClassic(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsClassic(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsClassic(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API void StyleColorsDark(ImGuiStyle* dst = NULL);\nexport function StyleColorsDark(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsDark(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsDark(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsDark(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API void StyleColorsLight(ImGuiStyle* dst = NULL);\nexport function StyleColorsLight(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsLight(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsLight(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsLight(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n\n// Window\n// IMGUI_API bool Begin(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); // push window to the stack and start appending to it. see .cpp for details. return false when window is collapsed, so you can early out in your code. 'bool* p_open' creates a widget on the upper-right to close the window (which sets your bool to false).\nexport function Begin(name: string, open: Bind.ImScalar | Bind.ImAccess | null = null, flags: ImGuiWindowFlags = 0): boolean {\n if (open === null) {\n return bind.Begin(name, null, flags);\n } else if (Array.isArray(open)) {\n return bind.Begin(name, open, flags);\n } else {\n const ref_open: Bind.ImScalar = [ open() ];\n const opened: boolean = bind.Begin(name, ref_open, flags);\n open(ref_open[0]);\n return opened;\n }\n}\n// IMGUI_API void End(); // finish appending to current window, pop it off the window stack.\nexport function End(): void { bind.End(); }\n// IMGUI_API bool BeginChild(const char* str_id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags extra_flags = 0); // begin a scrolling region. size==0.0f: use remaining window size, size<0.0f: use remaining window size minus abs(size). size>0.0f: fixed size. each axis can use a different mode, e.g. ImVec2(0,400).\n// IMGUI_API bool BeginChild(ImGuiID id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags extra_flags = 0); // \"\nexport function BeginChild(id: string | Bind.ImGuiID, size: Readonly = ImVec2.ZERO, border: boolean = false, extra_flags: ImGuiWindowFlags = 0): boolean {\n return bind.BeginChild(id, size, border, extra_flags);\n}\n// IMGUI_API void EndChild();\nexport function EndChild(): void { bind.EndChild(); }\n// IMGUI_API ImVec2 GetContentRegionMax(); // current content boundaries (typically window boundaries including scrolling, or current column boundaries), in windows coordinates\nexport function GetContentRegionMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetContentRegionMax(out);\n}\n// IMGUI_API ImVec2 GetContentRegionAvail(); // == GetContentRegionMax() - GetCursorPos()\nexport function GetContentRegionAvail(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetContentRegionAvail(out);\n}\n// IMGUI_API ImVec2 GetWindowContentRegionMin(); // content boundaries min (roughly (0,0)-Scroll), in window coordinates\nexport function GetWindowContentRegionMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowContentRegionMin(out);\n}\n// IMGUI_API ImVec2 GetWindowContentRegionMax(); // content boundaries max (roughly (0,0)+Size-Scroll) where Size can be override with SetNextWindowContentSize(), in window coordinates\nexport function GetWindowContentRegionMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowContentRegionMax(out);\n}\n// IMGUI_API float GetWindowContentRegionWidth(); //\nexport function GetWindowContentRegionWidth(): number { return bind.GetWindowContentRegionWidth(); }\n// IMGUI_API ImDrawList* GetWindowDrawList(); // get rendering command-list if you want to append your own draw primitives\nexport function GetWindowDrawList(): ImDrawList {\n return new ImDrawList(bind.GetWindowDrawList());\n}\n// IMGUI_API ImVec2 GetWindowPos(); // get current window position in screen space (useful if you want to do your own drawing via the DrawList api)\nexport function GetWindowPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowPos(out);\n}\n// IMGUI_API ImVec2 GetWindowSize(); // get current window size\nexport function GetWindowSize(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowSize(out);\n}\n// IMGUI_API float GetWindowWidth();\nexport function GetWindowWidth(): number { return bind.GetWindowWidth(); }\n// IMGUI_API float GetWindowHeight();\nexport function GetWindowHeight(): number { return bind.GetWindowHeight(); }\n// IMGUI_API bool IsWindowCollapsed();\nexport function IsWindowCollapsed(): boolean { return bind.IsWindowCollapsed(); }\n// IMGUI_API bool IsWindowAppearing();\nexport function IsWindowAppearing(): boolean { return bind.IsWindowAppearing(); }\n// IMGUI_API void SetWindowFontScale(float scale); // per-window font scale. Adjust IO.FontGlobalScale if you want to scale all windows\nexport function SetWindowFontScale(scale: number): void { bind.SetWindowFontScale(scale); }\n\n// IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivot = ImVec2(0,0)); // set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc.\nexport function SetNextWindowPos(pos: Readonly, cond: ImGuiCond = 0, pivot: Readonly = ImVec2.ZERO): void {\n bind.SetNextWindowPos(pos, cond, pivot);\n}\n// IMGUI_API void SetNextWindowSize(const ImVec2& size, ImGuiCond cond = 0); // set next window size. set axis to 0.0f to force an auto-fit on this axis. call before Begin()\nexport function SetNextWindowSize(pos: Readonly, cond: ImGuiCond = 0): void {\n bind.SetNextWindowSize(pos, cond);\n}\n// IMGUI_API void SetNextWindowSizeConstraints(const ImVec2& size_min, const ImVec2& size_max, ImGuiSizeConstraintCallback custom_callback = NULL, void* custom_callback_data = NULL); // set next window size limits. use -1,-1 on either X/Y axis to preserve the current size. Use callback to apply non-trivial programmatic constraints.\nexport function SetNextWindowSizeConstraints(size_min: Readonly, size_max: Readonly, custom_callback: ImGuiSizeConstraintCallback | null = null, custom_callback_data: any = null): void {\n if (custom_callback) {\n bind.SetNextWindowSizeConstraints(size_min, size_max, (data: Bind.reference_ImGuiSizeCallbackData): void => {\n custom_callback(new ImGuiSizeCallbackData(data, custom_callback_data));\n }, null);\n } else {\n bind.SetNextWindowSizeConstraints(size_min, size_max, null, null);\n }\n}\n// IMGUI_API void SetNextWindowContentSize(const ImVec2& size); // set next window content size (~ enforce the range of scrollbars). not including window decorations (title bar, menu bar, etc.). set an axis to 0.0f to leave it automatic. call before Begin()\nexport function SetNextWindowContentSize(size: Readonly): void {\n bind.SetNextWindowContentSize(size);\n}\n// IMGUI_API void SetNextWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // set next window collapsed state. call before Begin()\nexport function SetNextWindowCollapsed(collapsed: boolean, cond: ImGuiCond = 0): void {\n bind.SetNextWindowCollapsed(collapsed, cond);\n}\n// IMGUI_API void SetNextWindowFocus(); // set next window to be focused / front-most. call before Begin()\nexport function SetNextWindowFocus(): void { bind.SetNextWindowFocus(); }\n// IMGUI_API void SetNextWindowBgAlpha(float alpha); // set next window background color alpha. helper to easily modify ImGuiCol_WindowBg/ChildBg/PopupBg.\nexport function SetNextWindowBgAlpha(alpha: number): void { bind.SetNextWindowBgAlpha(alpha); }\n// IMGUI_API void SetWindowPos(const ImVec2& pos, ImGuiCond cond = 0); // (not recommended) set current window position - call within Begin()/End(). prefer using SetNextWindowPos(), as this may incur tearing and side-effects.\n// IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); // (not recommended) set current window size - call within Begin()/End(). set to ImVec2(0,0) to force an auto-fit. prefer using SetNextWindowSize(), as this may incur tearing and minor side-effects.\n// IMGUI_API void SetWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // (not recommended) set current window collapsed state. prefer using SetNextWindowCollapsed().\n// IMGUI_API void SetWindowFocus(); // (not recommended) set current window to be focused / front-most. prefer using SetNextWindowFocus().\n// IMGUI_API void SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond = 0); // set named window position.\n// IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); // set named window size. set axis to 0.0f to force an auto-fit on this axis.\n// IMGUI_API void SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond = 0); // set named window collapsed state\n// IMGUI_API void SetWindowFocus(const char* name); // set named window to be focused / front-most. use NULL to remove focus.\nexport function SetWindowPos(name_or_pos: string | Readonly, pos_or_cond: Readonly | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_pos) === \"string\") {\n bind.SetWindowNamePos(name_or_pos, pos_or_cond as Readonly, cond);\n return;\n } else {\n bind.SetWindowPos(name_or_pos, pos_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowSize(name_or_size: string | Readonly, size_or_cond: Readonly | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_size) === \"string\") {\n bind.SetWindowNamePos(name_or_size, size_or_cond as Readonly, cond);\n } else {\n bind.SetWindowSize(name_or_size, size_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowCollapsed(name_or_collapsed: string | boolean, collapsed_or_cond: boolean | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_collapsed) === \"string\") {\n bind.SetWindowNameCollapsed(name_or_collapsed, collapsed_or_cond as boolean, cond);\n } else {\n bind.SetWindowCollapsed(name_or_collapsed, collapsed_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowFocus(name?: string): void {\n if (typeof(name) === \"string\") {\n bind.SetWindowNameFocus(name);\n } else {\n bind.SetWindowFocus();\n }\n}\n\n// IMGUI_API float GetScrollX(); // get scrolling amount [0..GetScrollMaxX()]\nexport function GetScrollX(): number { return bind.GetScrollX(); }\n// IMGUI_API float GetScrollY(); // get scrolling amount [0..GetScrollMaxY()]\nexport function GetScrollY(): number { return bind.GetScrollY(); }\n// IMGUI_API float GetScrollMaxX(); // get maximum scrolling amount ~~ ContentSize.X - WindowSize.X\nexport function GetScrollMaxX(): number { return bind.GetScrollMaxX(); }\n// IMGUI_API float GetScrollMaxY(); // get maximum scrolling amount ~~ ContentSize.Y - WindowSize.Y\nexport function GetScrollMaxY(): number { return bind.GetScrollMaxY(); }\n// IMGUI_API void SetScrollX(float scroll_x); // set scrolling amount [0..GetScrollMaxX()]\nexport function SetScrollX(scroll_x: number): void { bind.SetScrollX(scroll_x); }\n// IMGUI_API void SetScrollY(float scroll_y); // set scrolling amount [0..GetScrollMaxY()]\nexport function SetScrollY(scroll_y: number): void { bind.SetScrollY(scroll_y); }\n// IMGUI_API void SetScrollHereY(float center_y_ratio = 0.5f); // adjust scrolling amount to make current cursor position visible. center_y_ratio=0.0: top, 0.5: center, 1.0: bottom. When using to make a \"default/current item\" visible, consider using SetItemDefaultFocus() instead.\nexport function SetScrollHereY(center_y_ratio: number = 0.5): void {\n bind.SetScrollHereY(center_y_ratio);\n}\n// IMGUI_API void SetScrollFromPosY(float pos_y, float center_y_ratio = 0.5f); // adjust scrolling amount to make given position valid. use GetCursorPos() or GetCursorStartPos()+offset to get valid positions.\nexport function SetScrollFromPosY(pos_y: number, center_y_ratio: number = 0.5): void {\n bind.SetScrollFromPosY(pos_y, center_y_ratio);\n}\n// IMGUI_API void SetStateStorage(ImGuiStorage* tree); // replace tree state storage with our own (if you want to manipulate it yourself, typically clear subsection of it)\n// IMGUI_API ImGuiStorage* GetStateStorage();\n\n// Parameters stacks (shared)\n// IMGUI_API void PushFont(ImFont* font); // use NULL as a shortcut to push default font\nexport function PushFont(font: ImFont | null): void { bind.PushFont(font ? font.native : null); }\n// IMGUI_API void PopFont();\nexport function PopFont(): void { bind.PopFont(); }\n// IMGUI_API void PushStyleColor(ImGuiCol idx, ImU32 col);\n// IMGUI_API void PushStyleColor(ImGuiCol idx, const ImVec4& col);\nexport function PushStyleColor(idx: ImGuiCol, col: Bind.ImU32 | Readonly | Readonly): void {\n if (col instanceof ImColor) {\n bind.PushStyleColor(idx, col.Value);\n } else {\n bind.PushStyleColor(idx, col as (Bind.ImU32 | Readonly));\n }\n}\n// IMGUI_API void PopStyleColor(int count = 1);\nexport function PopStyleColor(count: number = 1): void {\n bind.PopStyleColor(count);\n}\n// IMGUI_API void PushStyleVar(ImGuiStyleVar idx, float val);\n// IMGUI_API void PushStyleVar(ImGuiStyleVar idx, const ImVec2& val);\nexport function PushStyleVar(idx: ImGuiStyleVar, val: number | Readonly): void {\n bind.PushStyleVar(idx, val);\n}\n// IMGUI_API void PopStyleVar(int count = 1);\nexport function PopStyleVar(count: number = 1): void {\n bind.PopStyleVar(count);\n}\n// IMGUI_API const ImVec4& GetStyleColorVec4(ImGuiCol idx); // retrieve style color as stored in ImGuiStyle structure. use to feed back into PushStyleColor(), otherwhise use GetColorU32() to get style color + style alpha.\nexport function GetStyleColorVec4(idx: ImGuiCol): Readonly {\n return bind.GetStyleColorVec4(idx);\n}\n// IMGUI_API ImFont* GetFont(); // get current font\nexport function GetFont(): ImFont {\n return new ImFont(bind.GetFont());\n}\n// IMGUI_API float GetFontSize(); // get current font size (= height in pixels) of current font with current scale applied\nexport function GetFontSize(): number { return bind.GetFontSize(); }\n// IMGUI_API ImVec2 GetFontTexUvWhitePixel(); // get UV coordinate for a while pixel, useful to draw custom shapes via the ImDrawList API\nexport function GetFontTexUvWhitePixel(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetFontTexUvWhitePixel(out);\n}\n// IMGUI_API ImU32 GetColorU32(ImGuiCol idx, float alpha_mul = 1.0f); // retrieve given style color with style alpha applied and optional extra alpha multiplier\n// IMGUI_API ImU32 GetColorU32(const ImVec4& col); // retrieve given color with style alpha applied\n// IMGUI_API ImU32 GetColorU32(ImU32 col); // retrieve given color with style alpha applied\nexport function GetColorU32(idx: ImGuiCol, alpha_mul?: number): Bind.ImU32;\nexport function GetColorU32(col: Readonly): Bind.ImU32;\nexport function GetColorU32(col: Bind.ImU32): Bind.ImU32;\nexport function GetColorU32(...args: any[]): Bind.ImU32 {\n if (args.length === 1) {\n if (typeof(args[0]) === \"number\") {\n // TODO: ImGuiCol or ImU32\n const idx: ImGuiCol = args[0];\n return bind.GetColorU32_A(idx, 1.0);\n } else {\n const col: Readonly = args[0];\n return bind.GetColorU32_B(col);\n }\n } else {\n const idx: ImGuiCol = args[0];\n const alpha_mul: number = args[1];\n return bind.GetColorU32_A(idx, alpha_mul);\n }\n}\n\n// Parameters stacks (current window)\n// IMGUI_API void PushItemWidth(float item_width); // width of items for the common item+label case, pixels. 0.0f = default to ~2/3 of windows width, >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)\nexport function PushItemWidth(item_width: number): void { bind.PushItemWidth(item_width); }\n// IMGUI_API void PopItemWidth();\nexport function PopItemWidth(): void { bind.PopItemWidth(); }\n// IMGUI_API float CalcItemWidth(); // width of item given pushed settings and current cursor position\nexport function SetNextItemWidth(item_width: number): void { bind.SetNextItemWidth(item_width); } // set width of the _next_ common large \"item+label\" widget. >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)\nexport function CalcItemWidth(): number { return bind.CalcItemWidth(); }\n// IMGUI_API void PushTextWrapPos(float wrap_pos_x = 0.0f); // word-wrapping for Text*() commands. < 0.0f: no wrapping; 0.0f: wrap to end of window (or column); > 0.0f: wrap at 'wrap_pos_x' position in window local space\nexport function PushTextWrapPos(wrap_pos_x: number = 0.0): void {\n bind.PushTextWrapPos(wrap_pos_x);\n}\n// IMGUI_API void PopTextWrapPos();\nexport function PopTextWrapPos(): void { bind.PopTextWrapPos(); }\n// IMGUI_API void PushAllowKeyboardFocus(bool allow_keyboard_focus); // allow focusing using TAB/Shift-TAB, enabled by default but you can disable it for certain widgets\nexport function PushAllowKeyboardFocus(allow_keyboard_focus: boolean): void { bind.PushAllowKeyboardFocus(allow_keyboard_focus); }\n// IMGUI_API void PopAllowKeyboardFocus();\nexport function PopAllowKeyboardFocus(): void { bind.PopAllowKeyboardFocus(); }\n// IMGUI_API void PushButtonRepeat(bool repeat); // in 'repeat' mode, Button*() functions return repeated true in a typematic manner (using io.KeyRepeatDelay/io.KeyRepeatRate setting). Note that you can call IsItemActive() after any Button() to tell if the button is held in the current frame.\nexport function PushButtonRepeat(repeat: boolean): void { bind.PushButtonRepeat(repeat); }\n// IMGUI_API void PopButtonRepeat();\nexport function PopButtonRepeat(): void { bind.PopButtonRepeat(); }\n\n// Cursor / Layout\n// IMGUI_API void Separator(); // separator, generally horizontal. inside a menu bar or in horizontal layout mode, this becomes a vertical separator.\nexport function Separator(): void { bind.Separator(); }\n// IMGUI_API void SameLine(float pos_x = 0.0f, float spacing_w = -1.0f); // call between widgets or groups to layout them horizontally\nexport function SameLine(pos_x: number = 0.0, spacing_w: number = -1.0): void {\n bind.SameLine(pos_x, spacing_w);\n}\n// IMGUI_API void NewLine(); // undo a SameLine()\nexport function NewLine(): void { bind.NewLine(); }\n// IMGUI_API void Spacing(); // add vertical spacing\nexport function Spacing(): void { bind.Spacing(); }\n// IMGUI_API void Dummy(const ImVec2& size); // add a dummy item of given size\nexport function Dummy(size: Readonly): void { bind.Dummy(size); }\n// IMGUI_API void Indent(float indent_w = 0.0f); // move content position toward the right, by style.IndentSpacing or indent_w if != 0\nexport function Indent(indent_w: number = 0.0) { bind.Indent(indent_w); }\n// IMGUI_API void Unindent(float indent_w = 0.0f); // move content position back to the left, by style.IndentSpacing or indent_w if != 0\nexport function Unindent(indent_w: number = 0.0) { bind.Unindent(indent_w); }\n// IMGUI_API void BeginGroup(); // lock horizontal starting position + capture group bounding box into one \"item\" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.)\nexport function BeginGroup(): void { bind.BeginGroup(); }\n// IMGUI_API void EndGroup();\nexport function EndGroup(): void { bind.EndGroup(); }\n// IMGUI_API ImVec2 GetCursorPos(); // cursor position is relative to window position\nexport function GetCursorPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorPos(out); }\n// IMGUI_API float GetCursorPosX(); // \"\nexport function GetCursorPosX(): number { return bind.GetCursorPosX(); }\n// IMGUI_API float GetCursorPosY(); // \"\nexport function GetCursorPosY(): number { return bind.GetCursorPosY(); }\n// IMGUI_API void SetCursorPos(const ImVec2& local_pos); // \"\nexport function SetCursorPos(local_pos: Readonly): void { bind.SetCursorPos(local_pos); }\n// IMGUI_API void SetCursorPosX(float x); // \"\nexport function SetCursorPosX(x: number): void { bind.SetCursorPosX(x); }\n// IMGUI_API void SetCursorPosY(float y); // \"\nexport function SetCursorPosY(y: number): void { bind.SetCursorPosY(y); }\n// IMGUI_API ImVec2 GetCursorStartPos(); // initial cursor position\nexport function GetCursorStartPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorStartPos(out); }\n// IMGUI_API ImVec2 GetCursorScreenPos(); // cursor position in absolute screen coordinates [0..io.DisplaySize] (useful to work with ImDrawList API)\nexport function GetCursorScreenPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorScreenPos(out); }\n// IMGUI_API void SetCursorScreenPos(const ImVec2& pos); // cursor position in absolute screen coordinates [0..io.DisplaySize]\nexport function SetCursorScreenPos(pos: Readonly): void { bind.SetCursorScreenPos(pos); }\n// IMGUI_API void AlignTextToFramePadding(); // vertically align/lower upcoming text to FramePadding.y so that it will aligns to upcoming widgets (call if you have text on a line before regular widgets)\nexport function AlignTextToFramePadding(): void { bind.AlignTextToFramePadding(); }\n// IMGUI_API float GetTextLineHeight(); // ~ FontSize\nexport function GetTextLineHeight(): number { return bind.GetTextLineHeight(); }\n// IMGUI_API float GetTextLineHeightWithSpacing(); // ~ FontSize + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of text)\nexport function GetTextLineHeightWithSpacing(): number { return bind.GetTextLineHeightWithSpacing(); }\n// IMGUI_API float GetFrameHeight(); // ~ FontSize + style.FramePadding.y * 2\nexport function GetFrameHeight(): number { return bind.GetFrameHeight(); }\n// IMGUI_API float GetFrameHeightWithSpacing(); // ~ FontSize + style.FramePadding.y * 2 + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of framed widgets)\nexport function GetFrameHeightWithSpacing(): number { return bind.GetFrameHeightWithSpacing(); }\n\n// Columns\n// You can also use SameLine(pos_x) for simplified columns. The columns API is still work-in-progress and rather lacking.\n// IMGUI_API void Columns(int count = 1, const char* id = NULL, bool border = true);\nexport function Columns(count: number = 1, id: string | null = null, border: boolean = true): void {\n id = id || \"\";\n bind.Columns(count, id, border);\n}\n// IMGUI_API void NextColumn(); // next column, defaults to current row or next row if the current row is finished\nexport function NextColumn(): void { bind.NextColumn(); }\n// IMGUI_API int GetColumnIndex(); // get current column index\nexport function GetColumnIndex(): number { return bind.GetColumnIndex(); }\n// IMGUI_API float GetColumnWidth(int column_index = -1); // get column width (in pixels). pass -1 to use current column\nexport function GetColumnWidth(column_index: number = -1): number {\n return bind.GetColumnWidth(column_index);\n}\n// IMGUI_API void SetColumnWidth(int column_index, float width); // set column width (in pixels). pass -1 to use current column\nexport function SetColumnWidth(column_index: number, width: number): void { bind.SetColumnWidth(column_index, width); }\n// IMGUI_API float GetColumnOffset(int column_index = -1); // get position of column line (in pixels, from the left side of the contents region). pass -1 to use current column, otherwise 0..GetColumnsCount() inclusive. column 0 is typically 0.0f\nexport function GetColumnOffset(column_index: number = -1): number {\n return bind.GetColumnOffset(column_index);\n}\n// IMGUI_API void SetColumnOffset(int column_index, float offset_x); // set position of column line (in pixels, from the left side of the contents region). pass -1 to use current column\nexport function SetColumnOffset(column_index: number, offset_x: number): void { bind.SetColumnOffset(column_index, offset_x); }\n// IMGUI_API int GetColumnsCount();\nexport function GetColumnsCount(): number { return bind.GetColumnsCount(); }\n\n// ID scopes\n// If you are creating widgets in a loop you most likely want to push a unique identifier (e.g. object pointer, loop index) so ImGui can differentiate them.\n// You can also use the \"##foobar\" syntax within widget label to distinguish them from each others. Read \"A primer on the use of labels/IDs\" in the FAQ for more details.\n// IMGUI_API void PushID(const char* str_id); // push identifier into the ID stack. IDs are hash of the entire stack!\n// IMGUI_API void PushID(const char* str_id_begin, const char* str_id_end);\n// IMGUI_API void PushID(const void* ptr_id);\n// IMGUI_API void PushID(int int_id);\nexport function PushID(id: string | number): void { bind.PushID(id); }\n// IMGUI_API void PopID();\nexport function PopID(): void { bind.PopID(); }\n// IMGUI_API ImGuiID GetID(const char* str_id); // calculate unique ID (hash of whole ID stack + given parameter). e.g. if you want to query into ImGuiStorage yourself\n// IMGUI_API ImGuiID GetID(const char* str_id_begin, const char* str_id_end);\n// IMGUI_API ImGuiID GetID(const void* ptr_id);\nexport function GetID(id: string | number): Bind.ImGuiID { return bind.GetID(id); }\n\n// Widgets: Text\n// IMGUI_API void TextUnformatted(const char* text, const char* text_end = NULL); // raw text without formatting. Roughly equivalent to Text(\"%s\", text) but: A) doesn't require null terminated string if 'text_end' is specified, B) it's faster, no memory copy is done, no buffer size limits, recommended for long chunks of text.\nexport function TextUnformatted(text: string, text_end: number | null = null): void { bind.TextUnformatted(text_end !== null ? text.substring(0, text_end) : text); }\n// IMGUI_API void Text(const char* fmt, ...) IM_FMTARGS(1); // simple formatted text\n// IMGUI_API void TextV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function Text(fmt: string/*, ...args: any[]*/): void { bind.Text(fmt/*, ...args*/); }\n// IMGUI_API void TextColored(const ImVec4& col, const char* fmt, ...) IM_FMTARGS(2); // shortcut for PushStyleColor(ImGuiCol_Text, col); Text(fmt, ...); PopStyleColor();\n// IMGUI_API void TextColoredV(const ImVec4& col, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function TextColored(col: Readonly | Readonly, fmt: string/*, ...args: any[]*/): void {\n bind.TextColored((col instanceof ImColor) ? col.Value : col as Readonly, fmt/*, ...args*/);\n}\n// IMGUI_API void TextDisabled(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushStyleColor(ImGuiCol_Text, style.Colors[ImGuiCol_TextDisabled]); Text(fmt, ...); PopStyleColor();\n// IMGUI_API void TextDisabledV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function TextDisabled(fmt: string/*, ...args: any[]*/): void { bind.TextDisabled(fmt/*, ...args*/); }\n// IMGUI_API void TextWrapped(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize().\n// IMGUI_API void TextWrappedV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function TextWrapped(fmt: string/*, ...args: any[]*/): void { bind.TextWrapped(fmt/*, ...args*/); }\n// IMGUI_API void LabelText(const char* label, const char* fmt, ...) IM_FMTARGS(2); // display text+label aligned the same way as value+label widgets\n// IMGUI_API void LabelTextV(const char* label, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function LabelText(label: string, fmt: string/*, ...args: any[]*/): void { bind.LabelText(label, fmt/*, ...args*/); }\n// IMGUI_API void BulletText(const char* fmt, ...) IM_FMTARGS(1); // shortcut for Bullet()+Text()\n// IMGUI_API void BulletTextV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function BulletText(fmt: string/*, ...args: any[]*/): void { bind.BulletText(fmt/*, ...args*/); }\n// IMGUI_API void Bullet(); // draw a small circle and keep the cursor on the same line. advance cursor x position by GetTreeNodeToLabelSpacing(), same distance that TreeNode() uses\nexport function Bullet(): void { bind.Bullet(); }\n\n// Widgets: Main\n// IMGUI_API bool Button(const char* label, const ImVec2& size = ImVec2(0,0)); // button\nexport function Button(label: string, size: Readonly = ImVec2.ZERO): boolean {\n return bind.Button(label, size);\n}\n// IMGUI_API bool SmallButton(const char* label); // button with FramePadding=(0,0) to easily embed within text\nexport function SmallButton(label: string): boolean { return bind.SmallButton(label); }\n// IMGUI_API bool ArrowButton(const char* str_id, ImGuiDir dir); // square button with an arrow shape\nexport function ArrowButton(str_id: string, dir: ImGuiDir): boolean { return bind.ArrowButton(str_id, dir); }\n// IMGUI_API bool InvisibleButton(const char* str_id, const ImVec2& size); // button behavior without the visuals, useful to build custom behaviors using the public api (along with IsItemActive, IsItemHovered, etc.)\nexport function InvisibleButton(str_id: string, size: Readonly): boolean {\n return bind.InvisibleButton(str_id, size);\n}\n// IMGUI_API void Image(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0,0), const ImVec2& uv1 = ImVec2(1,1), const ImVec4& tint_col = ImVec4(1,1,1,1), const ImVec4& border_col = ImVec4(0,0,0,0));\nexport function Image(user_texture_id: ImTextureID | null, size: Readonly, uv0: Readonly = ImVec2.ZERO, uv1: Readonly = ImVec2.UNIT, tint_col: Readonly = ImVec4.WHITE, border_col: Readonly = ImVec4.ZERO): void {\n bind.Image(ImGuiContext.setTexture(user_texture_id), size, uv0, uv1, tint_col, border_col);\n}\n// IMGUI_API bool ImageButton(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0,0), const ImVec2& uv1 = ImVec2(1,1), int frame_padding = -1, const ImVec4& bg_col = ImVec4(0,0,0,0), const ImVec4& tint_col = ImVec4(1,1,1,1)); // <0 frame_padding uses default frame padding settings. 0 for no padding\nexport function ImageButton(user_texture_id: ImTextureID | null, size: Readonly, uv0: Readonly = ImVec2.ZERO, uv1: Readonly = ImVec2.UNIT, frame_padding: number = -1, bg_col: Readonly = ImVec4.ZERO, tint_col: Readonly = ImVec4.WHITE): boolean {\n return bind.ImageButton(ImGuiContext.setTexture(user_texture_id), size, uv0, uv1, frame_padding, bg_col, tint_col);\n}\n// IMGUI_API bool Checkbox(const char* label, bool* v);\nexport function Checkbox(label: string, v: Bind.ImScalar | Bind.ImAccess): boolean {\n if (Array.isArray(v)) {\n return bind.Checkbox(label, v);\n } else {\n const ref_v: Bind.ImScalar = [ v() ];\n const ret = bind.Checkbox(label, ref_v);\n v(ref_v[0]);\n return ret;\n }\n}\n// IMGUI_API bool CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value);\nexport function CheckboxFlags(label: string, flags: Bind.ImAccess | Bind.ImScalar, flags_value: number): boolean {\n if (Array.isArray(flags)) {\n return bind.CheckboxFlags(label, flags, flags_value);\n } else {\n const ref_flags: Bind.ImScalar = [ flags() ];\n const ret = bind.CheckboxFlags(label, ref_flags, flags_value);\n flags(ref_flags[0]);\n return ret;\n }\n}\n// IMGUI_API bool RadioButton(const char* label, bool active);\n// IMGUI_API bool RadioButton(const char* label, int* v, int v_button);\nexport function RadioButton(label: string, active: boolean): boolean;\nexport function RadioButton(label: string, v: Bind.ImAccess | Bind.ImScalar, v_button: number): boolean;\nexport function RadioButton(label: string, ...args: any[]): boolean {\n if (typeof(args[0]) === \"boolean\") {\n const active: boolean = args[0];\n return bind.RadioButton_A(label, active);\n } else {\n const v: Bind.ImAccess | Bind.ImScalar = args[0];\n const v_button: number = args[1];\n const _v: Bind.ImScalar = Array.isArray(v) ? v : [ v() ];\n const ret = bind.RadioButton_B(label, _v, v_button);\n if (!Array.isArray(v)) { v(_v[0]); }\n return ret;\n }\n}\n// IMGUI_API void PlotLines(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), int stride = sizeof(float));\n// IMGUI_API void PlotLines(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));\nexport type PlotLinesValueGetter = (data: any, idx: number) => number;\nexport function PlotLines(label: string, values: ArrayLike, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly, stride?: number): void;\nexport function PlotLines(label: string, values_getter: PlotLinesValueGetter, data: any, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly): void;\nexport function PlotLines(label: string, ...args: any[]): void {\n if (Array.isArray(args[0])) {\n const values: ArrayLike = args[0];\n const values_getter: PlotLinesValueGetter = (data: any, idx: number): number => values[idx * stride];\n const values_count: number = typeof(args[1]) === \"number\" ? args[1] : values.length;\n const values_offset: number = typeof(args[2]) === \"number\" ? args[2] : 0;\n const overlay_text: string | null = typeof(args[3]) === \"string\" ? args[3] : null;\n const scale_min: number = typeof(args[4]) === \"number\" ? args[4] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const graph_size: Readonly = args[6] || ImVec2.ZERO;\n const stride: number = typeof(args[7]) === \"number\" ? args[7] : 1;\n bind.PlotLines(label, values_getter, null, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n } else {\n const values_getter: PlotLinesValueGetter = args[0];\n const data: any = args[1];\n const values_count: number = args[2];\n const values_offset: number = typeof(args[3]) === \"number\" ? args[3] : 0;\n const overlay_text: string | null = typeof(args[4]) === \"string\" ? args[4] : null;\n const scale_min: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[6]) === \"number\" ? args[6] : Number.MAX_VALUE;\n const graph_size: Readonly = args[7] || ImVec2.ZERO;\n bind.PlotLines(label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n }\n}\n// IMGUI_API void PlotHistogram(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), int stride = sizeof(float));\n// IMGUI_API void PlotHistogram(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));\nexport type PlotHistogramValueGetter = (data: any, idx: number) => number;\nexport function PlotHistogram(label: string, values: ArrayLike, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly, stride?: number): void;\nexport function PlotHistogram(label: string, values_getter: PlotHistogramValueGetter, data: any, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly): void;\nexport function PlotHistogram(label: string, ...args: any[]): void {\n if (Array.isArray(args[0])) {\n const values: ArrayLike = args[0];\n const values_getter: PlotHistogramValueGetter = (data: any, idx: number): number => values[idx * stride];\n const values_count: number = typeof(args[1]) === \"number\" ? args[1] : values.length;\n const values_offset: number = typeof(args[2]) === \"number\" ? args[2] : 0;\n const overlay_text: string | null = typeof(args[3]) === \"string\" ? args[3] : null;\n const scale_min: number = typeof(args[4]) === \"number\" ? args[4] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const graph_size: Readonly = args[6] || ImVec2.ZERO;\n const stride: number = typeof(args[7]) === \"number\" ? args[7] : 1;\n bind.PlotHistogram(label, values_getter, null, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n } else {\n const values_getter: PlotHistogramValueGetter = args[0];\n const data: any = args[1];\n const values_count: number = args[2];\n const values_offset: number = typeof(args[3]) === \"number\" ? args[3] : 0;\n const overlay_text: string | null = typeof(args[4]) === \"string\" ? args[4] : null;\n const scale_min: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[6]) === \"number\" ? args[6] : Number.MAX_VALUE;\n const graph_size: Readonly = args[7] || ImVec2.ZERO;\n bind.PlotHistogram(label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n }\n}\n// IMGUI_API void ProgressBar(float fraction, const ImVec2& size_arg = ImVec2(-1,0), const char* overlay = NULL);\nexport function ProgressBar(fraction: number, size_arg: Readonly = new ImVec2(-1, 0), overlay: string | null = null): void {\n bind.ProgressBar(fraction, size_arg, overlay);\n}\n\n// Widgets: Combo Box\n// The new BeginCombo()/EndCombo() api allows you to manage your contents and selection state however you want it.\n// The old Combo() api are helpers over BeginCombo()/EndCombo() which are kept available for convenience purpose.\n// IMGUI_API bool BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags = 0);\nexport function BeginCombo(label: string, preview_value: string | null = null, flags: ImGuiComboFlags = 0): boolean {\n return bind.BeginCombo(label, preview_value, flags);\n}\n// IMGUI_API void EndCombo();\nexport function EndCombo(): void { bind.EndCombo(); }\n// IMGUI_API bool Combo(const char* label, int* current_item, const char* const items[], int items_count, int popup_max_height_in_items = -1);\n// IMGUI_API bool Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int popup_max_height_in_items = -1); // Separate items with \\0 within a string, end item-list with \\0\\0. e.g. \"One\\0Two\\0Three\\0\"\n// IMGUI_API bool Combo(const char* label, int* current_item, bool(*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int popup_max_height_in_items = -1);\nexport type ComboValueGetter = (data: any, idx: number, out_text: [string]) => boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items: string[], items_count?: number, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_separated_by_zeros: string, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_getter: ComboValueGetter, data: any, items_count: number, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, ...args: any[]): boolean {\n let ret = false;\n const _current_item: Bind.ImScalar = Array.isArray(current_item) ? current_item : [ current_item() ];\n if (Array.isArray(args[0])) {\n const items: string[] = args[0];\n const items_count = typeof(args[1]) === \"number\" ? args[1] : items.length;\n const popup_max_height_in_items: number = typeof(args[2]) === \"number\" ? args[2] : -1;\n const items_getter = (data: any, idx: number, out_text: [string]): boolean => { out_text[0] = items[idx]; return true; };\n ret = bind.Combo(label, _current_item, items_getter, null, items_count, popup_max_height_in_items);\n } else if (typeof(args[0]) === \"string\") {\n const items_separated_by_zeros: string = args[0]\n const popup_max_height_in_items: number = typeof(args[1]) === \"number\" ? args[1] : -1;\n const items: string[] = items_separated_by_zeros.replace(/^\\0+|\\0+$/g, \"\").split(\"\\0\");\n const items_count: number = items.length;\n const items_getter = (data: any, idx: number, out_text: [string]): boolean => { out_text[0] = items[idx]; return true; };\n ret = bind.Combo(label, _current_item, items_getter, null, items_count, popup_max_height_in_items);\n } else {\n const items_getter: (data: any, idx: number, out_text: [string]) => boolean = args[0];\n const data: any = args[1];\n const items_count = args[2];\n const popup_max_height_in_items: number = typeof(args[3]) === \"number\" ? args[3] : -1;\n ret = bind.Combo(label, _current_item, items_getter, data, items_count, popup_max_height_in_items);\n }\n if (!Array.isArray(current_item)) { current_item(_current_item[0]); }\n return ret;\n}\n\n// Widgets: Drags (tip: ctrl+click on a drag box to input with keyboard. manually input values aren't clamped, can go off-bounds)\n// For all the Float2/Float3/Float4/Int2/Int3/Int4 versions of every functions, note that a 'float v[X]' function argument is the same as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. You can pass address of your first element out of a contiguous set, e.g. &myvector.x\n// IMGUI_API bool DragFloat(const char* label, float* v, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f); // If v_min >= v_max we have no bound\nexport function DragFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string | null = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.DragFloat(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat2(const char* label, float v[2], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | ImVec2, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.DragFloat2(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.DragFloat3(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat4(const char* label, float v[4], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat4(label: string, v: XYZW | Bind.ImTuple4 | ImVec4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.DragFloat4(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", const char* display_format_max = NULL, float power = 1.0f);\nexport function DragFloatRange2(label: string, v_current_min: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_current_max: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", display_format_max: string | null = null, power: number = 1.0): boolean {\n const _v_current_min = import_Scalar(v_current_min);\n const _v_current_max = import_Scalar(v_current_max);\n const ret = bind.DragFloatRange2(label, _v_current_min, _v_current_max, v_speed, v_min, v_max, display_format, display_format_max, power);\n export_Scalar(_v_current_min, v_current_min);\n export_Scalar(_v_current_max, v_current_max);\n return ret;\n}\n// IMGUI_API bool DragInt(const char* label, int* v, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = \"%d\"); // If v_min >= v_max we have no bound\nexport function DragInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.DragInt(label, _v, v_speed, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt2(const char* label, int v[2], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector2(v);\n const ret = bind.DragInt2(label, _v, v_speed, v_min, v_max, format);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt3(const char* label, int v[3], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector3(v);\n const ret = bind.DragInt3(label, _v, v_speed, v_min, v_max, format);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt4(const char* label, int v[4], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt4(label: string, v: XYZW | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector4(v);\n const ret = bind.DragInt4(label, _v, v_speed, v_min, v_max, format);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = \"%.0f\", const char* display_format_max = NULL);\nexport function DragIntRange2(label: string, v_current_min: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_current_max: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\", format_max: string | null = null): boolean {\n const _v_current_min = import_Scalar(v_current_min);\n const _v_current_max = import_Scalar(v_current_max);\n const ret = bind.DragIntRange2(label, _v_current_min, _v_current_max, v_speed, v_min, v_max, format, format_max);\n export_Scalar(_v_current_min, v_current_min);\n export_Scalar(_v_current_max, v_current_max);\n return ret;\n}\n// IMGUI_API bool DragScalar(const char* label, ImGuiDataType data_type, void* v, float v_speed, const void* v_min = NULL, const void* v_max = NULL, const char* format = NULL, float power = 1.0f);\n// IMGUI_API bool DragScalarN(const char* label, ImGuiDataType data_type, void* v, int components, float v_speed, const void* v_min = NULL, const void* v_max = NULL, const char* format = NULL, float power = 1.0f);\nexport function DragScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, v_speed: number, v_min: number | null = null, v_max: number | null = null, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.DragScalar(label, ImGuiDataType.S8, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.DragScalar(label, ImGuiDataType.U8, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.DragScalar(label, ImGuiDataType.S16, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.DragScalar(label, ImGuiDataType.U16, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.DragScalar(label, ImGuiDataType.S32, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.DragScalar(label, ImGuiDataType.U32, v, v_speed, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.DragScalar(label, ImGuiDataType.S64, v, v_speed, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.DragScalar(label, ImGuiDataType.U64, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.DragScalar(label, ImGuiDataType.Float, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.DragScalar(label, ImGuiDataType.Double, v, v_speed, v_min, v_max, format, power); }\n throw new Error();\n}\n\n// Widgets: Input with Keyboard\n// IMGUI_API bool InputText(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputText(label: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputText(label, buf, buf_size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputText(label, ref_buf, _buf_size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputText(label, ref_buf, buf_size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputTextWithHint(const char* label, const char* hint, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputTextWithHint(label: string, hint: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputTextWithHint(label, hint, buf, buf_size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputTextWithHint(label, hint, ref_buf, _buf_size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputTextWithHint(label, hint, ref_buf, buf_size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputTextMultiline(const char* label, char* buf, size_t buf_size, const ImVec2& size = ImVec2(0,0), ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputTextMultiline(label: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, size: Readonly = ImVec2.ZERO, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputTextMultiline(label, buf, buf_size, size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputTextMultiline(label, ref_buf, _buf_size, size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputTextMultiline(label, ref_buf, buf_size, size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputFloat(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 0.0, step_fast: number = 0.0, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputFloat(label, _v, step, step_fast, format, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat2(const char* label, float v[2], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.InputFloat2(label, _v, format, extra_flags);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat3(const char* label, float v[3], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.InputFloat3(label, _v, format, extra_flags);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat4(const char* label, float v[4], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat4(label: string, v: XYZW | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.InputFloat4(label, _v, format, extra_flags);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt(const char* label, int* v, int step = 1, int step_fast = 100, ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 1, step_fast: number = 100, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputInt(label, _v, step, step_fast, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt2(const char* label, int v[2], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.InputInt2(label, _v, extra_flags);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt3(const char* label, int v[3], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.InputInt3(label, _v, extra_flags);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt4(const char* label, int v[4], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt4(label: string, v: XYZW | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.InputInt4(label, _v, extra_flags);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool InputDouble(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = \"%.6f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputDouble(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 0.0, step_fast: number = 0.0, format: string = \"%.6f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputDouble(label, _v, step, step_fast, format, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputScalar(const char* label, ImGuiDataType data_type, void* v, const void* step = NULL, const void* step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags extra_flags = 0);\n// IMGUI_API bool InputScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* step = NULL, const void* step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags extra_flags = 0);\nexport function InputScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, step: number | null = null, step_fast: number | null = null, format: string | null = null, extra_flags: ImGuiInputTextFlags = 0): boolean {\n if (v instanceof Int8Array) { return bind.InputScalar(label, ImGuiDataType.S8, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint8Array) { return bind.InputScalar(label, ImGuiDataType.U8, v, step, step_fast, format, extra_flags); }\n if (v instanceof Int16Array) { return bind.InputScalar(label, ImGuiDataType.S16, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint16Array) { return bind.InputScalar(label, ImGuiDataType.U16, v, step, step_fast, format, extra_flags); }\n if (v instanceof Int32Array) { return bind.InputScalar(label, ImGuiDataType.S32, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint32Array) { return bind.InputScalar(label, ImGuiDataType.U32, v, step, step_fast, format, extra_flags); }\n // if (v instanceof Int64Array) { return bind.InputScalar(label, ImGuiDataType.S64, v, step, step_fast, format, extra_flags); }\n // if (v instanceof Uint64Array) { return bind.InputScalar(label, ImGuiDataType.U64, v, step, step_fast, format, extra_flags); }\n if (v instanceof Float32Array) { return bind.InputScalar(label, ImGuiDataType.Float, v, step, step_fast, format, extra_flags); }\n if (v instanceof Float64Array) { return bind.InputScalar(label, ImGuiDataType.Double, v, step, step_fast, format, extra_flags); }\n throw new Error();\n}\n\n// Widgets: Sliders (tip: ctrl+click on a slider to input with keyboard. manually input values aren't clamped, can go off-bounds)\n// IMGUI_API bool SliderFloat(const char* label, float* v, float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f); // adjust format to decorate the value with a prefix or a suffix for in-slider labels or unit display. Use power!=1.0 for logarithmic sliders\nexport function SliderFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.SliderFloat(label, _v, v_min, v_max, format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec2, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.SliderFloat2(label, _v, v_min, v_max, format, power);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.SliderFloat3(label, _v, v_min, v_max, format, power);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat4(label: string, v: XYZW | Bind.ImTuple4 | XYZW, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.SliderFloat4(label, _v, v_min, v_max, format, power);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderAngle(const char* label, float* v_rad, float v_degrees_min = -360.0f, float v_degrees_max = +360.0f);\nexport function SliderAngle(label: string, v_rad: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_degrees_min: number = -360.0, v_degrees_max: number = +360.0): boolean {\n const _v_rad = import_Scalar(v_rad);\n const ret = bind.SliderAngle(label, _v_rad, v_degrees_min, v_degrees_max);\n export_Scalar(_v_rad, v_rad);\n return ret;\n}\nexport function SliderAngle3(label: string, v_rad: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_degrees_min: number = -360.0, v_degrees_max: number = +360.0): boolean {\n const _v_rad = import_Vector3(v_rad);\n _v_rad[0] = Math.floor(_v_rad[0] * 180 / Math.PI);\n _v_rad[1] = Math.floor(_v_rad[1] * 180 / Math.PI);\n _v_rad[2] = Math.floor(_v_rad[2] * 180 / Math.PI);\n const ret = bind.SliderInt3(label, _v_rad, v_degrees_min, v_degrees_max, \"%d deg\");\n _v_rad[0] = _v_rad[0] * Math.PI / 180;\n _v_rad[1] = _v_rad[1] * Math.PI / 180;\n _v_rad[2] = _v_rad[2] * Math.PI / 180;\n export_Vector3(_v_rad, v_rad);\n return ret;\n}\n// IMGUI_API bool SliderInt(const char* label, int* v, int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.SliderInt(label, _v, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector2(v);\n const ret = bind.SliderInt2(label, _v, v_min, v_max, format);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt3(const char* label, int v[3], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector3(v);\n const ret = bind.SliderInt3(label, _v, v_min, v_max, format);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt4(const char* label, int v[4], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt4(label: string, v: XYZW | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector4(v);\n const ret = bind.SliderInt4(label, _v, v_min, v_max, format);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderScalar(const char* label, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\n// IMGUI_API bool SliderScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\nexport function SliderScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, v_min: number, v_max: number, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.SliderScalar(label, ImGuiDataType.S8, v, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.SliderScalar(label, ImGuiDataType.U8, v, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.SliderScalar(label, ImGuiDataType.S16, v, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.SliderScalar(label, ImGuiDataType.U16, v, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.SliderScalar(label, ImGuiDataType.S32, v, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.SliderScalar(label, ImGuiDataType.U32, v, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.SliderScalar(label, ImGuiDataType.S64, v, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.SliderScalar(label, ImGuiDataType.U64, v, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.SliderScalar(label, ImGuiDataType.Float, v, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.SliderScalar(label, ImGuiDataType.Double, v, v_min, v_max, format, power); }\n throw new Error();\n}\n// IMGUI_API bool VSliderFloat(const char* label, const ImVec2& size, float* v, float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function VSliderFloat(label: string, size: Readonly, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.VSliderFloat(label, size, _v, v_min, v_max, format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, const char* format = \"%d\");\nexport function VSliderInt(label: string, size: Readonly, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.VSliderInt(label, size, _v, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool VSliderScalar(const char* label, const ImVec2& size, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\nexport function VSliderScalar(label: string, size: Readonly, data_type: ImGuiDataType, v: Bind.ImAccess | Bind.ImScalar, v_min: number, v_max: number, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S8, v, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U8, v, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S16, v, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U16, v, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S32, v, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U32, v, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S64, v, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U64, v, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.Float, v, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.Double, v, v_min, v_max, format, power); }\n throw new Error();\n}\n\n// Widgets: Color Editor/Picker (tip: the ColorEdit* functions have a little colored preview square that can be left-clicked to open a picker, and right-clicked to open an option menu.)\n// Note that a 'float v[X]' function argument is the same as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. You can the pass the address of a first float element out of a contiguous structure, e.g. &myvector.x\n// IMGUI_API bool ColorEdit3(const char* label, float col[3], ImGuiColorEditFlags flags = 0);\nexport function ColorEdit3(label: string, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color3(col);\n const ret = bind.ColorEdit3(label, _col, flags);\n export_Color3(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags = 0);\nexport function ColorEdit4(label: string, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color4(col);\n const ret = bind.ColorEdit4(label, _col, flags);\n export_Color4(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorPicker3(const char* label, float col[3], ImGuiColorEditFlags flags = 0);\nexport function ColorPicker3(label: string, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color3(col);\n const ret = bind.ColorPicker3(label, _col, flags);\n export_Color3(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags flags = 0, const float* ref_col = NULL);\nexport function ColorPicker4(label: string, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0, ref_col: Bind.ImTuple4 | Bind.interface_ImVec4 | null = null): boolean {\n const _col = import_Color4(col);\n const _ref_col = ref_col ? import_Color4(ref_col) : null;\n const ret = bind.ColorPicker4(label, _col, flags, _ref_col);\n export_Color4(_col, col);\n if (_ref_col && ref_col) { export_Color4(_ref_col, ref_col); }\n return ret;\n}\n// IMGUI_API bool ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFlags flags = 0, ImVec2 size = ImVec2(0,0)); // display a colored square/button, hover for details, return true when pressed.\nexport function ColorButton(desc_id: string, col: Readonly, flags: ImGuiColorEditFlags = 0, size: Readonly = ImVec2.ZERO): boolean {\n return bind.ColorButton(desc_id, col, flags, size);\n}\n// IMGUI_API void SetColorEditOptions(ImGuiColorEditFlags flags); // initialize current options (generally on application startup) if you want to select a default format, picker type, etc. User will be able to change many settings, unless you pass the _NoOptions flag to your calls.\nexport function SetColorEditOptions(flags: ImGuiColorEditFlags): void {\n bind.SetColorEditOptions(flags);\n}\n\n// Widgets: Trees\n// IMGUI_API bool TreeNode(const char* label); // if returning 'true' the node is open and the tree id is pushed into the id stack. user is responsible for calling TreePop().\n// IMGUI_API bool TreeNode(const char* str_id, const char* fmt, ...) IM_FMTARGS(2); // read the FAQ about why and how to use ID. to align arbitrary text at the same level as a TreeNode() you can use Bullet().\n// IMGUI_API bool TreeNode(const void* ptr_id, const char* fmt, ...) IM_FMTARGS(2); // \"\n// IMGUI_API bool TreeNodeV(const char* str_id, const char* fmt, va_list args) IM_FMTLIST(2);\n// IMGUI_API bool TreeNodeV(const void* ptr_id, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function TreeNode(label: string): boolean;\nexport function TreeNode(label: string, fmt: string): boolean;\nexport function TreeNode(label: number, fmt: string): boolean;\nexport function TreeNode(...args: any[]): boolean {\n if (typeof(args[0]) === \"string\") {\n if (args.length === 1) {\n const label: string = args[0];\n return bind.TreeNode_A(label);\n } else {\n const str_id: string = args[0];\n const fmt: string = args[1];\n return bind.TreeNode_B(str_id, fmt);\n }\n } else {\n const ptr_id: number = args[0];\n const fmt: string = args[1];\n return bind.TreeNode_C(ptr_id, fmt);\n }\n}\n// IMGUI_API bool TreeNodeEx(const char* label, ImGuiTreeNodeFlags flags = 0);\n// IMGUI_API bool TreeNodeEx(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3);\n// IMGUI_API bool TreeNodeEx(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3);\n// IMGUI_API bool TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3);\n// IMGUI_API bool TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3);\nexport function TreeNodeEx(label: string, flags?: ImGuiTreeNodeFlags): boolean;\nexport function TreeNodeEx(str_id: string, flags: ImGuiTreeNodeFlags, fmt: string): boolean;\nexport function TreeNodeEx(ptr_id: number, flags: ImGuiTreeNodeFlags, fmt: string): boolean;\nexport function TreeNodeEx(...args: any[]): boolean {\n if (typeof(args[0]) === \"string\") {\n if (args.length < 3) {\n const label: string = args[0];\n const flags: ImGuiTreeNodeFlags = args[1] || 0;\n return bind.TreeNodeEx_A(label, flags);\n } else {\n const str_id: string = args[0];\n const flags: ImGuiTreeNodeFlags = args[1];\n const fmt: string = args[2];\n return bind.TreeNodeEx_B(str_id, flags, fmt);\n }\n } else {\n const ptr_id: number = args[0];\n const flags: ImGuiTreeNodeFlags = args[1];\n const fmt: string = args[2];\n return bind.TreeNodeEx_C(ptr_id, flags, fmt);\n }\n}\n// IMGUI_API void TreePush(const char* str_id); // ~ Indent()+PushId(). Already called by TreeNode() when returning true, but you can call Push/Pop yourself for layout purpose\n// IMGUI_API void TreePush(const void* ptr_id = NULL); // \"\nexport function TreePush(str_id: string): void;\nexport function TreePush(ptr_id: number): void;\nexport function TreePush(...args: any[]): void {\n if (typeof(args[0]) === \"string\") {\n const str_id: string = args[0];\n bind.TreePush_A(str_id);\n } else {\n const ptr_id: number = args[0];\n bind.TreePush_B(ptr_id);\n }\n}\n// IMGUI_API void TreePop(); // ~ Unindent()+PopId()\nexport function TreePop(): void { bind.TreePop(); }\n// IMGUI_API void TreeAdvanceToLabelPos(); // advance cursor x position by GetTreeNodeToLabelSpacing()\nexport function TreeAdvanceToLabelPos(): void { bind.TreeAdvanceToLabelPos(); }\n// IMGUI_API float GetTreeNodeToLabelSpacing(); // horizontal distance preceding label when using TreeNode*() or Bullet() == (g.FontSize + style.FramePadding.x*2) for a regular unframed TreeNode\nexport function GetTreeNodeToLabelSpacing(): number { return bind.GetTreeNodeToLabelSpacing(); }\n// IMGUI_API bool CollapsingHeader(const char* label, ImGuiTreeNodeFlags flags = 0); // if returning 'true' the header is open. doesn't indent nor push on ID stack. user doesn't have to call TreePop().\n// IMGUI_API bool CollapsingHeader(const char* label, bool* p_open, ImGuiTreeNodeFlags flags = 0); // when 'p_open' isn't NULL, display an additional small close button on upper right of the header\nexport function CollapsingHeader(label: string, flags?: ImGuiTreeNodeFlags): boolean;\nexport function CollapsingHeader(label: string, p_open: Bind.ImScalar | Bind.ImAccess, flags?: ImGuiTreeNodeFlags): boolean;\nexport function CollapsingHeader(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.CollapsingHeader_A(label, 0);\n } else {\n if (typeof(args[0]) === \"number\") {\n const flags: ImGuiTreeNodeFlags = args[0];\n return bind.CollapsingHeader_A(label, flags);\n } else {\n const p_open: Bind.ImScalar | Bind.ImAccess = args[0];\n const flags: ImGuiTreeNodeFlags = args[1] || 0;\n const ref_open: Bind.ImScalar = Array.isArray(p_open) ? p_open : [ p_open() ];\n const ret = bind.CollapsingHeader_B(label, ref_open, flags);\n if (!Array.isArray(p_open)) { p_open(ref_open[0]); }\n return ret;\n }\n }\n}\n// IMGUI_API void SetNextItemOpen(bool is_open, ImGuiCond cond = 0); // set next TreeNode/CollapsingHeader open state.\nexport function SetNextItemOpen(is_open: boolean, cond: ImGuiCond = 0): void {\n bind.SetNextItemOpen(is_open, cond);\n}\n\n// Widgets: Selectable / Lists\n// IMGUI_API bool Selectable(const char* label, bool selected = false, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0,0)); // size.x==0.0: use remaining width, size.x>0.0: specify width. size.y==0.0: use label height, size.y>0.0: specify height\n// IMGUI_API bool Selectable(const char* label, bool* p_selected, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0,0));\nexport function Selectable(label: string, selected?: boolean, flags?: ImGuiSelectableFlags, size?: Readonly): boolean;\nexport function Selectable(label: string, p_selected: Bind.ImScalar | Bind.ImAccess, flags?: ImGuiSelectableFlags, size?: Readonly): boolean;\nexport function Selectable(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.Selectable_A(label, false, 0, ImVec2.ZERO);\n } else {\n if (typeof(args[0]) === \"boolean\") {\n const selected: boolean = args[0];\n const flags: ImGuiSelectableFlags = args[1] || 0;\n const size: Readonly = args[2] || ImVec2.ZERO;\n return bind.Selectable_A(label, selected, flags, size);\n } else {\n const p_selected: Bind.ImScalar | Bind.ImAccess = args[0];\n const flags: ImGuiSelectableFlags = args[1] || 0;\n const size: Readonly = args[2] || ImVec2.ZERO;\n const ref_selected: Bind.ImScalar = Array.isArray(p_selected) ? p_selected : [ p_selected() ];\n const ret = bind.Selectable_B(label, ref_selected, flags, size);\n if (!Array.isArray(p_selected)) { p_selected(ref_selected[0]); }\n return ret;\n }\n }\n}\n// IMGUI_API bool ListBox(const char* label, int* current_item, const char* const* items, int items_count, int height_in_items = -1);\n// IMGUI_API bool ListBox(const char* label, int* current_item, bool (*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int height_in_items = -1);\nexport type ListBoxItemGetter = (data: any, idx: number, out_text: [string]) => boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items: string[], items_count?: number, height_in_items?: number): boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_getter: ListBoxItemGetter, data: any, items_count: number, height_in_items?: number): boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, ...args: any[]): boolean {\n let ret: boolean = false;\n const _current_item: Bind.ImScalar = Array.isArray(current_item) ? current_item : [ current_item() ];\n if (Array.isArray(args[0])) {\n const items: string[] = args[0];\n const items_count: number = typeof(args[1]) === \"number\" ? args[1] : items.length;\n const height_in_items: number = typeof(args[2]) === \"number\" ? args[2] : -1;\n ret = bind.ListBox_A(label, _current_item, items, items_count, height_in_items);\n } else {\n const items_getter: ListBoxItemGetter = args[0];\n const data: any = args[1];\n const items_count: number = args[2];\n const height_in_items: number = typeof(args[3]) === \"number\" ? args[3] : -1;\n ret = bind.ListBox_B(label, _current_item, items_getter, data, items_count, height_in_items);\n }\n if (!Array.isArray(current_item)) { current_item(_current_item[0]); }\n return ret;\n}\n// IMGUI_API bool ListBoxHeader(const char* label, const ImVec2& size = ImVec2(0,0)); // use if you want to reimplement ListBox() will custom data or interactions. make sure to call ListBoxFooter() afterwards.\n// IMGUI_API bool ListBoxHeader(const char* label, int items_count, int height_in_items = -1); // \"\nexport function ListBoxHeader(label: string, size: Readonly): boolean;\nexport function ListBoxHeader(label: string, items_count: number, height_in_items?: number): boolean;\nexport function ListBoxHeader(label: string, ...args: any[]): boolean {\n if (typeof(args[0]) === \"object\") {\n const size: Readonly = args[0];\n return bind.ListBoxHeader_A(label, size);\n } else {\n const items_count: number = args[0];\n const height_in_items: number = typeof(args[1]) === \"number\" ? args[1] : -1;\n return bind.ListBoxHeader_B(label, items_count, height_in_items);\n }\n}\n// IMGUI_API void ListBoxFooter(); // terminate the scrolling region\nexport function ListBoxFooter(): void {\n bind.ListBoxFooter();\n}\n\n// Widgets: Value() Helpers. Output single value in \"name: value\" format (tip: freely declare more in your code to handle your types. you can add functions to the ImGui namespace)\n// IMGUI_API void Value(const char* prefix, bool b);\n// IMGUI_API void Value(const char* prefix, int v);\n// IMGUI_API void Value(const char* prefix, unsigned int v);\n// IMGUI_API void Value(const char* prefix, float v, const char* float_format = NULL);\nexport function Value(prefix: string, b: boolean): void;\nexport function Value(prefix: string, v: number): void;\nexport function Value(prefix: string, v: number, float_format?: string | null): void;\nexport function Value(prefix: string, v: any): void;\nexport function Value(prefix: string, ...args: any[]): void {\n if (typeof(args[0]) === \"boolean\") {\n bind.Value_A(prefix, args[0]);\n } else if (typeof(args[0]) === \"number\") {\n if (Number.isInteger(args[0])) {\n bind.Value_B(prefix, args[0]);\n } else {\n bind.Value_D(prefix, args[0], typeof(args[1]) === \"string\" ? args[1] : null);\n }\n } else {\n bind.Text(prefix + String(args[0]));\n }\n}\n\n// Tooltips\n// IMGUI_API void BeginTooltip(); // begin/append a tooltip window. to create full-featured tooltip (with any kind of contents).\nexport function BeginTooltip(): void { bind.BeginTooltip(); }\n// IMGUI_API void EndTooltip();\nexport function EndTooltip(): void { bind.EndTooltip(); }\n// IMGUI_API void SetTooltip(const char* fmt, ...) IM_FMTARGS(1); // set text tooltip under mouse-cursor, typically use with ImGui::IsItemHovered(). overidde any previous call to SetTooltip().\n// IMGUI_API void SetTooltipV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function SetTooltip(fmt: string): void {\n bind.SetTooltip(fmt);\n}\n\n// Menus\n// IMGUI_API bool BeginMainMenuBar(); // create and append to a full screen menu-bar. only call EndMainMenuBar() if this returns true!\nexport function BeginMainMenuBar(): boolean { return bind.BeginMainMenuBar(); }\n// IMGUI_API void EndMainMenuBar();\nexport function EndMainMenuBar(): void { bind.EndMainMenuBar(); }\n// IMGUI_API bool BeginMenuBar(); // append to menu-bar of current window (requires ImGuiWindowFlags_MenuBar flag set on parent window). only call EndMenuBar() if this returns true!\nexport function BeginMenuBar(): boolean { return bind.BeginMenuBar(); }\n// IMGUI_API void EndMenuBar();\nexport function EndMenuBar(): void { bind.EndMenuBar(); }\n// IMGUI_API bool BeginMenu(const char* label, bool enabled = true); // create a sub-menu entry. only call EndMenu() if this returns true!\nexport function BeginMenu(label: string, enabled: boolean = true): boolean { return bind.BeginMenu(label, enabled); }\n// IMGUI_API void EndMenu();\nexport function EndMenu(): void { bind.EndMenu(); }\n// IMGUI_API bool MenuItem(const char* label, const char* shortcut = NULL, bool selected = false, bool enabled = true); // return true when activated. shortcuts are displayed for convenience but not processed by ImGui at the moment\n// IMGUI_API bool MenuItem(const char* label, const char* shortcut, bool* p_selected, bool enabled = true); // return true when activated + toggle (*p_selected) if p_selected != NULL\nexport function MenuItem(label: string, shortcut?: string | null, selected?: boolean, enabled?: boolean): boolean;\nexport function MenuItem(label: string, shortcut: string | null, p_selected: Bind.ImScalar | Bind.ImAccess | null, enabled?: boolean): boolean;\nexport function MenuItem(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.MenuItem_A(label, null, false, true);\n } else if (args.length === 1) {\n const shortcut: string | null = args[0];\n return bind.MenuItem_A(label, shortcut, false, true);\n } else {\n const shortcut: string | null = args[0];\n if (typeof(args[1]) === \"boolean\") {\n const selected: boolean = args[1];\n const enabled: boolean = typeof(args[2]) === \"boolean\" ? args[2] : true;\n return bind.MenuItem_A(label, shortcut, selected, enabled);\n } else {\n const p_selected: Bind.ImScalar | Bind.ImAccess = args[1];\n const enabled: boolean = typeof(args[2]) === \"boolean\" ? args[2] : true;\n const ref_selected: Bind.ImScalar = Array.isArray(p_selected) ? p_selected : [ p_selected() ];\n const ret = bind.MenuItem_B(label, shortcut, ref_selected, enabled);\n if (!Array.isArray(p_selected)) { p_selected(ref_selected[0]); }\n return ret;\n }\n }\n}\n\n// Popups\n// IMGUI_API void OpenPopup(const char* str_id); // call to mark popup as open (don't call every frame!). popups are closed when user click outside, or if CloseCurrentPopup() is called within a BeginPopup()/EndPopup() block. By default, Selectable()/MenuItem() are calling CloseCurrentPopup(). Popup identifiers are relative to the current ID-stack (so OpenPopup and BeginPopup needs to be at the same level).\nexport function OpenPopup(str_id: string): void { bind.OpenPopup(str_id); }\n// IMGUI_API bool OpenPopupOnItemClick(const char* str_id = NULL, int mouse_button = 1); // helper to open popup when clicked on last item. return true when just opened.\nexport function OpenPopupOnItemClick(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.OpenPopupOnItemClick(str_id, mouse_button);\n}\n// IMGUI_API bool BeginPopup(const char* str_id); // return true if the popup is open, and you can start outputting to it. only call EndPopup() if BeginPopup() returned true!\nexport function BeginPopup(str_id: string): boolean { return bind.BeginPopup(str_id); }\n// IMGUI_API bool BeginPopupModal(const char* name, bool* p_open = NULL, ImGuiWindowFlags extra_flags = 0); // modal dialog (block interactions behind the modal window, can't close the modal window by clicking outside)\nexport function BeginPopupModal(str_id: string = \"\", p_open: Bind.ImScalar | Bind.ImAccess | null = null, extra_flags: ImGuiWindowFlags = 0): boolean {\n if (Array.isArray(p_open)) {\n return bind.BeginPopupModal(str_id, p_open, extra_flags);\n } else if (typeof(p_open) === \"function\") {\n const _p_open: Bind.ImScalar = [ p_open() ];\n const ret = bind.BeginPopupModal(str_id, _p_open, extra_flags);\n p_open(_p_open[0]);\n return ret;\n } else {\n return bind.BeginPopupModal(str_id, null, extra_flags);\n }\n}\n// IMGUI_API bool BeginPopupContextItem(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked on last item. if you can pass a NULL str_id only if the previous item had an id. If you want to use that on a non-interactive item such as Text() you need to pass in an explicit ID here. read comments in .cpp!\nexport function BeginPopupContextItem(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.BeginPopupContextItem(str_id, mouse_button);\n}\n// IMGUI_API bool BeginPopupContextWindow(const char* str_id = NULL, int mouse_button = 1, bool also_over_items = true); // helper to open and begin popup when clicked on current window.\nexport function BeginPopupContextWindow(str_id: string | null = null, mouse_button: number = 1, also_over_items: boolean = true): boolean {\n return bind.BeginPopupContextWindow(str_id, mouse_button, also_over_items);\n}\n// IMGUI_API bool BeginPopupContextVoid(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked in void (where there are no imgui windows).\nexport function BeginPopupContextVoid(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.BeginPopupContextVoid(str_id, mouse_button);\n}\n// IMGUI_API void EndPopup();\nexport function EndPopup(): void { bind.EndPopup(); }\n// IMGUI_API bool IsPopupOpen(const char* str_id); // return true if the popup is open\nexport function IsPopupOpen(str_id: string): boolean { return bind.IsPopupOpen(str_id); }\n// IMGUI_API void CloseCurrentPopup(); // close the popup we have begin-ed into. clicking on a MenuItem or Selectable automatically close the current popup.\nexport function CloseCurrentPopup(): void { bind.CloseCurrentPopup(); }\n\n// Tab Bars, Tabs\n// [BETA API] API may evolve!\n// IMGUI_API bool BeginTabBar(const char* str_id, ImGuiTabBarFlags flags = 0); // create and append into a TabBar\nexport function BeginTabBar(str_id: string, flags: ImGuiTabBarFlags = 0): boolean { return bind.BeginTabBar(str_id, flags); }\n// IMGUI_API void EndTabBar(); // only call EndTabBar() if BeginTabBar() returns true!\nexport function EndTabBar(): void { bind.EndTabBar(); }\n// IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags flags = 0);// create a Tab. Returns true if the Tab is selected.\nexport function BeginTabItem(label: string, p_open: Bind.ImScalar | Bind.ImAccess | null = null, flags: ImGuiTabItemFlags = 0): boolean {\n // return bind.BeginTabItem(label, p_open, flags);\n if (p_open === null) {\n return bind.BeginTabItem(label, null, flags);\n } else if (Array.isArray(p_open)) {\n return bind.BeginTabItem(label, p_open, flags);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n const ret = bind.BeginTabItem(label, ref_open, flags);\n p_open(ref_open[0]);\n return ret;\n }\n}\n// IMGUI_API void EndTabItem(); // only call EndTabItem() if BeginTabItem() returns true!\nexport function EndTabItem(): void { bind.EndTabItem(); }\n// IMGUI_API void SetTabItemClosed(const char* tab_or_docked_window_label); // notify TabBar or Docking system of a closed tab/window ahead (useful to reduce visual flicker on reorderable tab bars). For tab-bar: call after BeginTabBar() and before Tab submissions. Otherwise call with a window name.\nexport function SetTabItemClosed(tab_or_docked_window_label: string): void { bind.SetTabItemClosed(tab_or_docked_window_label); }\n\n// Logging/Capture: all text output from interface is captured to tty/file/clipboard. By default, tree nodes are automatically opened during logging.\n// IMGUI_API void LogToTTY(int max_depth = -1); // start logging to tty\nexport function LogToTTY(max_depth: number = -1): void {\n bind.LogToTTY(max_depth);\n}\n// IMGUI_API void LogToFile(int max_depth = -1, const char* filename = NULL); // start logging to file\nexport function LogToFile(max_depth: number = -1, filename: string | null = null): void {\n bind.LogToFile(max_depth, filename);\n}\n// IMGUI_API void LogToClipboard(int max_depth = -1); // start logging to OS clipboard\nexport function LogToClipboard(max_depth: number = -1): void {\n bind.LogToClipboard(max_depth);\n}\n// IMGUI_API void LogFinish(); // stop logging (close file, etc.)\nexport function LogFinish(): void { bind.LogFinish(); }\n// IMGUI_API void LogButtons(); // helper to display buttons for logging to tty/file/clipboard\nexport function LogButtons(): void { bind.LogButtons(); }\n// IMGUI_API void LogText(const char* fmt, ...) IM_FMTARGS(1); // pass text data straight to log (without being displayed)\nexport function LogText(fmt: string): void {\n bind.LogText(fmt);\n}\n\nconst _ImGui_DragDropPayload_data: {[key: string]: any} = {};\n// Drag and Drop\n// [BETA API] Missing Demo code. API may evolve.\n// IMGUI_API bool BeginDragDropSource(ImGuiDragDropFlags flags = 0); // call when the current item is active. If this return true, you can call SetDragDropPayload() + EndDragDropSource()\nexport function BeginDragDropSource(flags: ImGuiDragDropFlags = 0): boolean {\n return bind.BeginDragDropSource(flags);\n}\n// IMGUI_API bool SetDragDropPayload(const char* type, const void* data, size_t size, ImGuiCond cond = 0);// type is a user defined string of maximum 8 characters. Strings starting with '_' are reserved for dear imgui internal types. Data is copied and held by imgui.\nexport function SetDragDropPayload(type: string, data: T, cond: ImGuiCond = 0): boolean {\n _ImGui_DragDropPayload_data[type] = data;\n return bind.SetDragDropPayload(type, data, 0, cond);\n}\n// IMGUI_API void EndDragDropSource();\nexport function EndDragDropSource(): void {\n bind.EndDragDropSource();\n}\n// IMGUI_API bool BeginDragDropTarget(); // call after submitting an item that may receive an item. If this returns true, you can call AcceptDragDropPayload() + EndDragDropTarget()\nexport function BeginDragDropTarget(): boolean {\n return bind.BeginDragDropTarget();\n}\n// IMGUI_API const ImGuiPayload* AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags = 0); // accept contents of a given type. If ImGuiDragDropFlags_AcceptBeforeDelivery is set you can peek into the payload before the mouse button is released.\nexport function AcceptDragDropPayload(type: string, flags: ImGuiDragDropFlags = 0): ImGuiPayload | null {\n const data: T = _ImGui_DragDropPayload_data[type];\n return bind.AcceptDragDropPayload(type, flags) ? { Data: data } : null;\n}\n// IMGUI_API void EndDragDropTarget();\nexport function EndDragDropTarget(): void {\n bind.EndDragDropTarget();\n}\n\n// Clipping\n// IMGUI_API void PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect);\nexport function PushClipRect(clip_rect_min: Readonly, clip_rect_max: Readonly, intersect_with_current_clip_rect: boolean): void {\n bind.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect);\n}\n// IMGUI_API void PopClipRect();\nexport function PopClipRect(): void {\n bind.PopClipRect();\n}\n\n// Focus\n// (FIXME: Those functions will be reworked after we merge the navigation branch + have a pass at focusing/tabbing features.)\n// (Prefer using \"SetItemDefaultFocus()\" over \"if (IsWindowAppearing()) SetScrollHere()\" when applicable, to make your code more forward compatible when navigation branch is merged)\n// IMGUI_API void SetItemDefaultFocus(); // make last item the default focused item of a window (WIP navigation branch only). Pleaase use instead of SetScrollHere().\nexport function SetItemDefaultFocus(): void { bind.SetItemDefaultFocus(); }\n// IMGUI_API void SetKeyboardFocusHere(int offset = 0); // focus keyboard on the next widget. Use positive 'offset' to access sub components of a multiple component widget. Use -1 to access previous widget.\nexport function SetKeyboardFocusHere(offset: number = 0): void {\n bind.SetKeyboardFocusHere(offset);\n}\n\n// Utilities\n// IMGUI_API bool IsItemHovered(ImGuiHoveredFlags flags = 0); // is the last item hovered? (and usable, aka not blocked by a popup, etc.). See ImGuiHoveredFlags for more options.\nexport function IsItemHovered(flags: ImGuiHoveredFlags = 0): boolean {\n return bind.IsItemHovered(flags);\n}\n// IMGUI_API bool IsItemActive(); // is the last item active? (e.g. button being held, text field being edited- items that don't interact will always return false)\nexport function IsItemActive(): boolean { return bind.IsItemActive(); }\n// IMGUI_API bool IsItemEdited(); // is the last item active? (e.g. button being held, text field being edited- items that don't interact will always return false)\nexport function IsItemEdited(): boolean { return bind.IsItemEdited(); }\n// IMGUI_API bool IsItemFocused(); // is the last item focused for keyboard/gamepad navigation?\nexport function IsItemFocused(): boolean { return bind.IsItemFocused(); }\n// IMGUI_API bool IsItemClicked(int mouse_button = 0); // is the last item clicked? (e.g. button/node just clicked on)\nexport function IsItemClicked(mouse_button: number = 0): boolean {\n return bind.IsItemClicked(mouse_button);\n}\n// IMGUI_API bool IsItemVisible(); // is the last item visible? (aka not out of sight due to clipping/scrolling.)\nexport function IsItemVisible(): boolean { return bind.IsItemVisible(); }\n// IMGUI_API bool IsItemActivated(); // was the last item just made active (item was previously inactive).\nexport function IsItemActivated(): boolean { return bind.IsItemActivated(); }\n// IMGUI_API bool IsItemDeactivated(); // was the last item just made inactive (item was previously active). Useful for Undo/Redo patterns with widgets that requires continuous editing.\nexport function IsItemDeactivated(): boolean { return bind.IsItemDeactivated(); }\n// IMGUI_API bool IsItemDeactivatedAfterEdit(); // was the last item just made inactive and made a value change when it was active? (e.g. Slider/Drag moved). Useful for Undo/Redo patterns with widgets that requires continuous editing. Note that you may get false positives (some widgets such as Combo()/ListBox()/Selectable() will return true even when clicking an already selected item).\nexport function IsItemDeactivatedAfterEdit(): boolean { return bind.IsItemDeactivatedAfterEdit(); }\n// IMGUI_API bool IsAnyItemHovered();\nexport function IsAnyItemHovered(): boolean { return bind.IsAnyItemHovered(); }\n// IMGUI_API bool IsAnyItemActive();\nexport function IsAnyItemActive(): boolean { return bind.IsAnyItemActive(); }\n// IMGUI_API bool IsAnyItemFocused();\nexport function IsAnyItemFocused(): boolean { return bind.IsAnyItemFocused(); }\n// IMGUI_API ImVec2 GetItemRectMin(); // get bounding rectangle of last item, in screen space\nexport function GetItemRectMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectMin(out);\n}\n// IMGUI_API ImVec2 GetItemRectMax(); // \"\nexport function GetItemRectMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectMax(out);\n}\n// IMGUI_API ImVec2 GetItemRectSize(); // get size of last item, in screen space\nexport function GetItemRectSize(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectSize(out);\n}\n// IMGUI_API void SetItemAllowOverlap(); // allow last item to be overlapped by a subsequent item. sometimes useful with invisible buttons, selectables, etc. to catch unused area.\nexport function SetItemAllowOverlap(): void { bind.SetItemAllowOverlap(); }\n// IMGUI_API bool IsWindowFocused(ImGuiFocusedFlags flags = 0); // is current window focused? or its root/child, depending on flags. see flags for options.\nexport function IsWindowFocused(flags: ImGuiFocusedFlags = 0): boolean {\n return bind.IsWindowFocused(flags);\n}\n// IMGUI_API bool IsWindowHovered(ImGuiHoveredFlags flags = 0); // is current window hovered (and typically: not blocked by a popup/modal)? see flags for options.\nexport function IsWindowHovered(flags: ImGuiHoveredFlags = 0): boolean {\n return bind.IsWindowHovered(flags);\n}\n// IMGUI_API bool IsRectVisible(const ImVec2& size); // test if rectangle (of given size, starting from cursor position) is visible / not clipped.\n// IMGUI_API bool IsRectVisible(const ImVec2& rect_min, const ImVec2& rect_max); // test if rectangle (in screen space) is visible / not clipped. to perform coarse clipping on user's side.\nexport function IsRectVisible(size: Readonly): boolean;\nexport function IsRectVisible(rect_min: Readonly, rect_max: Readonly): boolean;\nexport function IsRectVisible(...args: any[]): boolean {\n if (args.length === 1) {\n const size: Readonly = args[0];\n return bind.IsRectVisible_A(size);\n } else {\n const rect_min: Readonly = args[0];\n const rect_max: Readonly = args[1];\n return bind.IsRectVisible_B(rect_min, rect_max);\n }\n}\n// IMGUI_API float GetTime();\nexport function GetTime(): number { return bind.GetTime(); }\n// IMGUI_API int GetFrameCount();\nexport function GetFrameCount(): number { return bind.GetFrameCount(); }\nexport function GetBackgroundDrawList(): ImDrawList {\n return new ImDrawList(bind.GetBackgroundDrawList());\n}\nexport function GetForegroundDrawList(): ImDrawList {\n return new ImDrawList(bind.GetForegroundDrawList());\n}\n// IMGUI_API ImDrawListSharedData* GetDrawListSharedData();\nexport function GetDrawListSharedData(): ImDrawListSharedData {\n return new ImDrawListSharedData(bind.GetDrawListSharedData());\n}\n// IMGUI_API const char* GetStyleColorName(ImGuiCol idx);\nexport function GetStyleColorName(idx: ImGuiCol): string { return bind.GetStyleColorName(idx); }\n// IMGUI_API ImVec2 CalcTextSize(const char* text, const char* text_end = NULL, bool hide_text_after_double_hash = false, float wrap_width = -1.0f);\nexport function CalcTextSize(text: string, text_end: number | null = null, hide_text_after_double_hash: boolean = false, wrap_width: number = -1, out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.CalcTextSize(text_end !== null ? text.substring(0, text_end) : text, hide_text_after_double_hash, wrap_width, out);\n}\n// IMGUI_API void CalcListClipping(int items_count, float items_height, int* out_items_display_start, int* out_items_display_end); // calculate coarse clipping for large list of evenly sized items. Prefer using the ImGuiListClipper higher-level helper if you can.\nexport function CalcListClipping(items_count: number, items_height: number, out_items_display_start: Bind.ImScalar, out_items_display_end: Bind.ImScalar): void {\n return bind.CalcListClipping(items_count, items_height, out_items_display_start, out_items_display_end);\n}\n\n// IMGUI_API bool BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags extra_flags = 0); // helper to create a child window / scrolling region that looks like a normal widget frame\nexport function BeginChildFrame(id: Bind.ImGuiID, size: Readonly, extra_flags: ImGuiWindowFlags = 0): boolean {\n return bind.BeginChildFrame(id, size, extra_flags);\n}\n// IMGUI_API void EndChildFrame();\nexport function EndChildFrame(): void { bind.EndChildFrame(); }\n\n// IMGUI_API ImVec4 ColorConvertU32ToFloat4(ImU32 in);\nexport function ColorConvertU32ToFloat4(in_: Bind.ImU32, out: Bind.interface_ImVec4 = new ImVec4()): typeof out {\n return bind.ColorConvertU32ToFloat4(in_, out);\n}\n// IMGUI_API ImU32 ColorConvertFloat4ToU32(const ImVec4& in);\nexport function ColorConvertFloat4ToU32(in_: Readonly): Bind.ImU32 {\n return bind.ColorConvertFloat4ToU32(in_);\n}\n// IMGUI_API void ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v);\nexport function ColorConvertRGBtoHSV(r: number, g: number, b: number, out_h: Bind.ImScalar, out_s: Bind.ImScalar, out_v: Bind.ImScalar): void { bind.ColorConvertRGBtoHSV(r, g, b, out_h, out_s, out_v); }\n// IMGUI_API void ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g, float& out_b);\nexport function ColorConvertHSVtoRGB(h: number, s: number, v: number, out_r: Bind.ImScalar, out_g: Bind.ImScalar, out_b: Bind.ImScalar): void { bind.ColorConvertHSVtoRGB(h, s, v, out_r, out_g, out_b); }\n\n// Inputs\n// IMGUI_API int GetKeyIndex(ImGuiKey imgui_key); // map ImGuiKey_* values into user's key index. == io.KeyMap[key]\nexport function GetKeyIndex(imgui_key: ImGuiKey): number {\n return bind.GetKeyIndex(imgui_key);\n}\n// IMGUI_API bool IsKeyDown(int user_key_index); // is key being held. == io.KeysDown[user_key_index]. note that imgui doesn't know the semantic of each entry of io.KeyDown[]. Use your own indices/enums according to how your backend/engine stored them into KeyDown[]!\nexport function IsKeyDown(user_key_index: number): boolean {\n return bind.IsKeyDown(user_key_index);\n}\n// IMGUI_API bool IsKeyPressed(int user_key_index, bool repeat = true); // was key pressed (went from !Down to Down). if repeat=true, uses io.KeyRepeatDelay / KeyRepeatRate\nexport function IsKeyPressed(user_key_index: number, repeat: boolean = true): boolean {\n return bind.IsKeyPressed(user_key_index, repeat);\n}\n// IMGUI_API bool IsKeyReleased(int user_key_index); // was key released (went from Down to !Down)..\nexport function IsKeyReleased(user_key_index: number): boolean {\n return bind.IsKeyReleased(user_key_index);\n}\n// IMGUI_API int GetKeyPressedAmount(int key_index, float repeat_delay, float rate); // uses provided repeat rate/delay. return a count, most often 0 or 1 but might be >1 if RepeatRate is small enough that DeltaTime > RepeatRate\nexport function GetKeyPressedAmount(user_key_index: number, repeat_delay: number, rate: number): number {\n return bind.GetKeyPressedAmount(user_key_index, repeat_delay, rate);\n}\n// IMGUI_API bool IsMouseDown(int button); // is mouse button held\nexport function IsMouseDown(button: number): boolean {\n return bind.IsMouseDown(button);\n}\n// IMGUI_API bool IsMouseClicked(int button, bool repeat = false); // did mouse button clicked (went from !Down to Down)\nexport function IsMouseClicked(button: number, repeat: boolean = false): boolean {\n return bind.IsMouseClicked(button, repeat);\n}\n// IMGUI_API bool IsMouseDoubleClicked(int button); // did mouse button double-clicked. a double-click returns false in IsMouseClicked(). uses io.MouseDoubleClickTime.\nexport function IsMouseDoubleClicked(button: number): boolean {\n return bind.IsMouseDoubleClicked(button);\n}\n// IMGUI_API bool IsMouseReleased(int button); // did mouse button released (went from Down to !Down)\nexport function IsMouseReleased(button: number): boolean {\n return bind.IsMouseReleased(button);\n}\n// IMGUI_API bool IsMouseDragging(int button = 0, float lock_threshold = -1.0f); // is mouse dragging. if lock_threshold < -1.0f uses io.MouseDraggingThreshold\nexport function IsMouseDragging(button: number = 0, lock_threshold: number = -1.0): boolean {\n return bind.IsMouseDragging(button, lock_threshold);\n}\n// IMGUI_API bool IsMouseHoveringRect(const ImVec2& r_min, const ImVec2& r_max, bool clip = true); // is mouse hovering given bounding rect (in screen space). clipped by current clipping settings. disregarding of consideration of focus/window ordering/blocked by a popup.\nexport function IsMouseHoveringRect(r_min: Readonly, r_max: Readonly, clip: boolean = true): boolean {\n return bind.IsMouseHoveringRect(r_min, r_max, clip);\n}\n// IMGUI_API bool IsMousePosValid(const ImVec2* mouse_pos = NULL); //\nexport function IsMousePosValid(mouse_pos: Readonly | null = null): boolean {\n return bind.IsMousePosValid(mouse_pos);\n}\n// IMGUI_API ImVec2 GetMousePos(); // shortcut to ImGui::GetIO().MousePos provided by user, to be consistent with other calls\nexport function GetMousePos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMousePos(out);\n}\n// IMGUI_API ImVec2 GetMousePosOnOpeningCurrentPopup(); // retrieve backup of mouse positioning at the time of opening popup we have BeginPopup() into\nexport function GetMousePosOnOpeningCurrentPopup(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMousePosOnOpeningCurrentPopup(out);\n}\n// IMGUI_API ImVec2 GetMouseDragDelta(int button = 0, float lock_threshold = -1.0f); // dragging amount since clicking. if lock_threshold < -1.0f uses io.MouseDraggingThreshold\nexport function GetMouseDragDelta(button: number = 0, lock_threshold: number = -1.0, out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMouseDragDelta(button, lock_threshold, out);\n}\n// IMGUI_API void ResetMouseDragDelta(int button = 0); //\nexport function ResetMouseDragDelta(button: number = 0): void {\n bind.ResetMouseDragDelta(button);\n}\n// IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you\nexport function GetMouseCursor(): ImGuiMouseCursor { return bind.GetMouseCursor(); }\n// IMGUI_API void SetMouseCursor(ImGuiMouseCursor type); // set desired cursor type\nexport function SetMouseCursor(type: ImGuiMouseCursor): void { bind.SetMouseCursor(type); }\n// IMGUI_API void CaptureKeyboardFromApp(bool capture = true); // manually override io.WantCaptureKeyboard flag next frame (said flag is entirely left for your application handle). e.g. force capture keyboard when your widget is being hovered.\nexport function CaptureKeyboardFromApp(capture: boolean = true) {\n return bind.CaptureKeyboardFromApp(capture);\n}\n// IMGUI_API void CaptureMouseFromApp(bool capture = true); // manually override io.WantCaptureMouse flag next frame (said flag is entirely left for your application handle).\nexport function CaptureMouseFromApp(capture: boolean = true): void {\n bind.CaptureMouseFromApp(capture);\n}\n\n// Clipboard Utilities (also see the LogToClipboard() function to capture or output text data to the clipboard)\n// IMGUI_API const char* GetClipboardText();\nexport function GetClipboardText(): string { return bind.GetClipboardText(); }\n// IMGUI_API void SetClipboardText(const char* text);\nexport function SetClipboardText(text: string): void { bind.SetClipboardText(text); }\n\n// Settings/.Ini Utilities\n// The disk functions are automatically called if io.IniFilename != NULL (default is \"imgui.ini\").\n// Set io.IniFilename to NULL to load/save manually. Read io.WantSaveIniSettings description about handling .ini saving manually.\n// IMGUI_API void LoadIniSettingsFromDisk(const char* ini_filename); // call after CreateContext() and before the first call to NewFrame(). NewFrame() automatically calls LoadIniSettingsFromDisk(io.IniFilename).\nexport function LoadIniSettingsFromDisk(ini_filename: string): void { throw new Error(); } // TODO\n// IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source.\nexport function LoadIniSettingsFromMemory(ini_data: string, ini_size: number = 0): void { bind.LoadIniSettingsFromMemory(ini_data); }\n// IMGUI_API void SaveIniSettingsToDisk(const char* ini_filename);\nexport function SaveIniSettingsToDisk(ini_filename: string): void { throw new Error(); } // TODO\n// IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings.\nexport function SaveIniSettingsToMemory(out_ini_size: Bind.ImScalar | null = null): string { return bind.SaveIniSettingsToMemory(); }\n\n// Memory Utilities\n// All those functions are not reliant on the current context.\n// If you reload the contents of imgui.cpp at runtime, you may need to call SetCurrentContext() + SetAllocatorFunctions() again.\n// IMGUI_API void SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void(*free_func)(void* ptr, void* user_data), void* user_data = NULL);\nexport function SetAllocatorFunctions(alloc_func: (sz: number, user_data: any) => number, free_func: (ptr: number, user_data: any) => void, user_data: any = null): void {\n bind.SetAllocatorFunctions(alloc_func, free_func, user_data);\n}\n// IMGUI_API void* MemAlloc(size_t sz);\nexport function MemAlloc(sz: number): void { bind.MemAlloc(sz); }\n// IMGUI_API void MemFree(void* ptr);\nexport function MemFree(ptr: any): void { bind.MemFree(ptr); }\n","(function(global){\n\n//\n// Check for native Promise and it has correct interface\n//\n\nvar NativePromise = global['Promise'];\nvar nativePromiseSupported =\n NativePromise &&\n // Some of these methods are missing from\n // Firefox/Chrome experimental implementations\n 'resolve' in NativePromise &&\n 'reject' in NativePromise &&\n 'all' in NativePromise &&\n 'race' in NativePromise &&\n // Older version of the spec had a resolver object\n // as the arg rather than a function\n (function(){\n var resolve;\n new NativePromise(function(r){ resolve = r; });\n return typeof resolve === 'function';\n })();\n\n\n//\n// export if necessary\n//\n\nif (typeof exports !== 'undefined' && exports)\n{\n // node.js\n exports.Promise = nativePromiseSupported ? NativePromise : Promise;\n exports.Polyfill = Promise;\n}\nelse\n{\n // AMD\n if (typeof define == 'function' && define.amd)\n {\n define(function(){\n return nativePromiseSupported ? NativePromise : Promise;\n });\n }\n else\n {\n // in browser add to global\n if (!nativePromiseSupported)\n global['Promise'] = Promise;\n }\n}\n\n\n//\n// Polyfill\n//\n\nvar PENDING = 'pending';\nvar SEALED = 'sealed';\nvar FULFILLED = 'fulfilled';\nvar REJECTED = 'rejected';\nvar NOOP = function(){};\n\nfunction isArray(value) {\n return Object.prototype.toString.call(value) === '[object Array]';\n}\n\n// async calls\nvar asyncSetTimer = typeof setImmediate !== 'undefined' ? setImmediate : setTimeout;\nvar asyncQueue = [];\nvar asyncTimer;\n\nfunction asyncFlush(){\n // run promise callbacks\n for (var i = 0; i < asyncQueue.length; i++)\n asyncQueue[i][0](asyncQueue[i][1]);\n\n // reset async asyncQueue\n asyncQueue = [];\n asyncTimer = false;\n}\n\nfunction asyncCall(callback, arg){\n asyncQueue.push([callback, arg]);\n\n if (!asyncTimer)\n {\n asyncTimer = true;\n asyncSetTimer(asyncFlush, 0);\n }\n}\n\n\nfunction invokeResolver(resolver, promise) {\n function resolvePromise(value) {\n resolve(promise, value);\n }\n\n function rejectPromise(reason) {\n reject(promise, reason);\n }\n\n try {\n resolver(resolvePromise, rejectPromise);\n } catch(e) {\n rejectPromise(e);\n }\n}\n\nfunction invokeCallback(subscriber){\n var owner = subscriber.owner;\n var settled = owner.state_;\n var value = owner.data_; \n var callback = subscriber[settled];\n var promise = subscriber.then;\n\n if (typeof callback === 'function')\n {\n settled = FULFILLED;\n try {\n value = callback(value);\n } catch(e) {\n reject(promise, e);\n }\n }\n\n if (!handleThenable(promise, value))\n {\n if (settled === FULFILLED)\n resolve(promise, value);\n\n if (settled === REJECTED)\n reject(promise, value);\n }\n}\n\nfunction handleThenable(promise, value) {\n var resolved;\n\n try {\n if (promise === value)\n throw new TypeError('A promises callback cannot return that same promise.');\n\n if (value && (typeof value === 'function' || typeof value === 'object'))\n {\n var then = value.then; // then should be retrived only once\n\n if (typeof then === 'function')\n {\n then.call(value, function(val){\n if (!resolved)\n {\n resolved = true;\n\n if (value !== val)\n resolve(promise, val);\n else\n fulfill(promise, val);\n }\n }, function(reason){\n if (!resolved)\n {\n resolved = true;\n\n reject(promise, reason);\n }\n });\n\n return true;\n }\n }\n } catch (e) {\n if (!resolved)\n reject(promise, e);\n\n return true;\n }\n\n return false;\n}\n\nfunction resolve(promise, value){\n if (promise === value || !handleThenable(promise, value))\n fulfill(promise, value);\n}\n\nfunction fulfill(promise, value){\n if (promise.state_ === PENDING)\n {\n promise.state_ = SEALED;\n promise.data_ = value;\n\n asyncCall(publishFulfillment, promise);\n }\n}\n\nfunction reject(promise, reason){\n if (promise.state_ === PENDING)\n {\n promise.state_ = SEALED;\n promise.data_ = reason;\n\n asyncCall(publishRejection, promise);\n }\n}\n\nfunction publish(promise) {\n var callbacks = promise.then_;\n promise.then_ = undefined;\n\n for (var i = 0; i < callbacks.length; i++) {\n invokeCallback(callbacks[i]);\n }\n}\n\nfunction publishFulfillment(promise){\n promise.state_ = FULFILLED;\n publish(promise);\n}\n\nfunction publishRejection(promise){\n promise.state_ = REJECTED;\n publish(promise);\n}\n\n/**\n* @class\n*/\nfunction Promise(resolver){\n if (typeof resolver !== 'function')\n throw new TypeError('Promise constructor takes a function argument');\n\n if (this instanceof Promise === false)\n throw new TypeError('Failed to construct \\'Promise\\': Please use the \\'new\\' operator, this object constructor cannot be called as a function.');\n\n this.then_ = [];\n\n invokeResolver(resolver, this);\n}\n\nPromise.prototype = {\n constructor: Promise,\n\n state_: PENDING,\n then_: null,\n data_: undefined,\n\n then: function(onFulfillment, onRejection){\n var subscriber = {\n owner: this,\n then: new this.constructor(NOOP),\n fulfilled: onFulfillment,\n rejected: onRejection\n };\n\n if (this.state_ === FULFILLED || this.state_ === REJECTED)\n {\n // already resolved, call callback async\n asyncCall(invokeCallback, subscriber);\n }\n else\n {\n // subscribe\n this.then_.push(subscriber);\n }\n\n return subscriber.then;\n },\n\n 'catch': function(onRejection) {\n return this.then(null, onRejection);\n }\n};\n\nPromise.all = function(promises){\n var Class = this;\n\n if (!isArray(promises))\n throw new TypeError('You must pass an array to Promise.all().');\n\n return new Class(function(resolve, reject){\n var results = [];\n var remaining = 0;\n\n function resolver(index){\n remaining++;\n return function(value){\n results[index] = value;\n if (!--remaining)\n resolve(results);\n };\n }\n\n for (var i = 0, promise; i < promises.length; i++)\n {\n promise = promises[i];\n\n if (promise && typeof promise.then === 'function')\n promise.then(resolver(i), reject);\n else\n results[i] = promise;\n }\n\n if (!remaining)\n resolve(results);\n });\n};\n\nPromise.race = function(promises){\n var Class = this;\n\n if (!isArray(promises))\n throw new TypeError('You must pass an array to Promise.race().');\n\n return new Class(function(resolve, reject) {\n for (var i = 0, promise; i < promises.length; i++)\n {\n promise = promises[i];\n\n if (promise && typeof promise.then === 'function')\n promise.then(resolve, reject);\n else\n resolve(promise);\n }\n });\n};\n\nPromise.resolve = function(value){\n var Class = this;\n\n if (value && typeof value === 'object' && value.constructor === Class)\n return value;\n\n return new Class(function(resolve){\n resolve(value);\n });\n};\n\nPromise.reject = function(reason){\n var Class = this;\n\n return new Class(function(resolve, reject){\n reject(reason);\n });\n};\n\n})(typeof window != 'undefined' ? window : typeof global != 'undefined' ? global : typeof self != 'undefined' ? self : this);\n","/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\n\n'use strict';\n/* eslint-disable no-unused-vars */\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\n\nfunction toObject(val) {\n\tif (val === null || val === undefined) {\n\t\tthrow new TypeError('Object.assign cannot be called with null or undefined');\n\t}\n\n\treturn Object(val);\n}\n\nfunction shouldUseNative() {\n\ttry {\n\t\tif (!Object.assign) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Detect buggy property enumeration order in older V8 versions.\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=4118\n\t\tvar test1 = new String('abc'); // eslint-disable-line no-new-wrappers\n\t\ttest1[5] = 'de';\n\t\tif (Object.getOwnPropertyNames(test1)[0] === '5') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test2 = {};\n\t\tfor (var i = 0; i < 10; i++) {\n\t\t\ttest2['_' + String.fromCharCode(i)] = i;\n\t\t}\n\t\tvar order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n\t\t\treturn test2[n];\n\t\t});\n\t\tif (order2.join('') !== '0123456789') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test3 = {};\n\t\t'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n\t\t\ttest3[letter] = letter;\n\t\t});\n\t\tif (Object.keys(Object.assign({}, test3)).join('') !==\n\t\t\t\t'abcdefghijklmnopqrst') {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t} catch (err) {\n\t\t// We don't expect any of the above to throw, but better to be safe.\n\t\treturn false;\n\t}\n}\n\nmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n\tvar from;\n\tvar to = toObject(target);\n\tvar symbols;\n\n\tfor (var s = 1; s < arguments.length; s++) {\n\t\tfrom = Object(arguments[s]);\n\n\t\tfor (var key in from) {\n\t\t\tif (hasOwnProperty.call(from, key)) {\n\t\t\t\tto[key] = from[key];\n\t\t\t}\n\t\t}\n\n\t\tif (getOwnPropertySymbols) {\n\t\t\tsymbols = getOwnPropertySymbols(from);\n\t\t\tfor (var i = 0; i < symbols.length; i++) {\n\t\t\t\tif (propIsEnumerable.call(from, symbols[i])) {\n\t\t\t\t\tto[symbols[i]] = from[symbols[i]];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn to;\n};\n","/*!\n * @pixi/polyfill - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/polyfill is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Polyfill } from 'es6-promise-polyfill';\nimport objectAssign from 'object-assign';\n\n// Support for IE 9 - 11 which does not include Promises\nif (!window.Promise)\n{\n window.Promise = Polyfill;\n}\n\n// References:\n\nif (!Object.assign)\n{\n Object.assign = objectAssign;\n}\n\nvar commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\n// References:\n// http://paulirish.com/2011/requestanimationframe-for-smart-animating/\n// https://gist.github.com/1579671\n// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision\n// https://gist.github.com/timhall/4078614\n// https://github.com/Financial-Times/polyfill-service/tree/master/polyfills/requestAnimationFrame\n\n// Expected to be used with Browserfiy\n// Browserify automatically detects the use of `global` and passes the\n// correct reference of `global`, `self`, and finally `window`\n\nvar ONE_FRAME_TIME = 16;\n\n// Date.now\nif (!(Date.now && Date.prototype.getTime))\n{\n Date.now = function now()\n {\n return new Date().getTime();\n };\n}\n\n// performance.now\nif (!(commonjsGlobal.performance && commonjsGlobal.performance.now))\n{\n var startTime = Date.now();\n\n if (!commonjsGlobal.performance)\n {\n commonjsGlobal.performance = {};\n }\n\n commonjsGlobal.performance.now = function () { return Date.now() - startTime; };\n}\n\n// requestAnimationFrame\nvar lastTime = Date.now();\nvar vendors = ['ms', 'moz', 'webkit', 'o'];\n\nfor (var x = 0; x < vendors.length && !commonjsGlobal.requestAnimationFrame; ++x)\n{\n var p = vendors[x];\n\n commonjsGlobal.requestAnimationFrame = commonjsGlobal[(p + \"RequestAnimationFrame\")];\n commonjsGlobal.cancelAnimationFrame = commonjsGlobal[(p + \"CancelAnimationFrame\")] || commonjsGlobal[(p + \"CancelRequestAnimationFrame\")];\n}\n\nif (!commonjsGlobal.requestAnimationFrame)\n{\n commonjsGlobal.requestAnimationFrame = function (callback) {\n if (typeof callback !== 'function')\n {\n throw new TypeError((callback + \"is not a function\"));\n }\n\n var currentTime = Date.now();\n var delay = ONE_FRAME_TIME + lastTime - currentTime;\n\n if (delay < 0)\n {\n delay = 0;\n }\n\n lastTime = currentTime;\n\n return setTimeout(function () {\n lastTime = Date.now();\n callback(performance.now());\n }, delay);\n };\n}\n\nif (!commonjsGlobal.cancelAnimationFrame)\n{\n commonjsGlobal.cancelAnimationFrame = function (id) { return clearTimeout(id); };\n}\n\n// References:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign\n\nif (!Math.sign)\n{\n Math.sign = function mathSign(x)\n {\n x = Number(x);\n\n if (x === 0 || isNaN(x))\n {\n return x;\n }\n\n return x > 0 ? 1 : -1;\n };\n}\n\n// References:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger\n\nif (!Number.isInteger)\n{\n Number.isInteger = function numberIsInteger(value)\n {\n return typeof value === 'number' && isFinite(value) && Math.floor(value) === value;\n };\n}\n\nif (!window.ArrayBuffer)\n{\n window.ArrayBuffer = Array;\n}\n\nif (!window.Float32Array)\n{\n window.Float32Array = Array;\n}\n\nif (!window.Uint32Array)\n{\n window.Uint32Array = Array;\n}\n\nif (!window.Uint16Array)\n{\n window.Uint16Array = Array;\n}\n\nif (!window.Uint8Array)\n{\n window.Uint8Array = Array;\n}\n\nif (!window.Int32Array)\n{\n window.Int32Array = Array;\n}\n//# sourceMappingURL=polyfill.es.js.map\n","(function(global) {\n var apple_phone = /iPhone/i,\n apple_ipod = /iPod/i,\n apple_tablet = /iPad/i,\n android_phone = /\\bAndroid(?:.+)Mobile\\b/i, // Match 'Android' AND 'Mobile'\n android_tablet = /Android/i,\n amazon_phone = /\\bAndroid(?:.+)SD4930UR\\b/i,\n amazon_tablet = /\\bAndroid(?:.+)(?:KF[A-Z]{2,4})\\b/i,\n windows_phone = /Windows Phone/i,\n windows_tablet = /\\bWindows(?:.+)ARM\\b/i, // Match 'Windows' AND 'ARM'\n other_blackberry = /BlackBerry/i,\n other_blackberry_10 = /BB10/i,\n other_opera = /Opera Mini/i,\n other_chrome = /\\b(CriOS|Chrome)(?:.+)Mobile/i,\n other_firefox = /Mobile(?:.+)Firefox\\b/i; // Match 'Mobile' AND 'Firefox'\n\n function match(regex, userAgent) {\n return regex.test(userAgent);\n }\n\n function isMobile(userAgent) {\n var ua =\n userAgent ||\n (typeof navigator !== 'undefined' ? navigator.userAgent : '');\n\n // Facebook mobile app's integrated browser adds a bunch of strings that\n // match everything. Strip it out if it exists.\n var tmp = ua.split('[FBAN');\n if (typeof tmp[1] !== 'undefined') {\n ua = tmp[0];\n }\n\n // Twitter mobile app's integrated browser on iPad adds a \"Twitter for\n // iPhone\" string. Same probably happens on other tablet platforms.\n // This will confuse detection so strip it out if it exists.\n tmp = ua.split('Twitter');\n if (typeof tmp[1] !== 'undefined') {\n ua = tmp[0];\n }\n\n var result = {\n apple: {\n phone: match(apple_phone, ua) && !match(windows_phone, ua),\n ipod: match(apple_ipod, ua),\n tablet:\n !match(apple_phone, ua) &&\n match(apple_tablet, ua) &&\n !match(windows_phone, ua),\n device:\n (match(apple_phone, ua) ||\n match(apple_ipod, ua) ||\n match(apple_tablet, ua)) &&\n !match(windows_phone, ua)\n },\n amazon: {\n phone: match(amazon_phone, ua),\n tablet: !match(amazon_phone, ua) && match(amazon_tablet, ua),\n device: match(amazon_phone, ua) || match(amazon_tablet, ua)\n },\n android: {\n phone:\n (!match(windows_phone, ua) && match(amazon_phone, ua)) ||\n (!match(windows_phone, ua) && match(android_phone, ua)),\n tablet:\n !match(windows_phone, ua) &&\n !match(amazon_phone, ua) &&\n !match(android_phone, ua) &&\n (match(amazon_tablet, ua) || match(android_tablet, ua)),\n device:\n (!match(windows_phone, ua) &&\n (match(amazon_phone, ua) ||\n match(amazon_tablet, ua) ||\n match(android_phone, ua) ||\n match(android_tablet, ua))) ||\n match(/\\bokhttp\\b/i, ua)\n },\n windows: {\n phone: match(windows_phone, ua),\n tablet: match(windows_tablet, ua),\n device: match(windows_phone, ua) || match(windows_tablet, ua)\n },\n other: {\n blackberry: match(other_blackberry, ua),\n blackberry10: match(other_blackberry_10, ua),\n opera: match(other_opera, ua),\n firefox: match(other_firefox, ua),\n chrome: match(other_chrome, ua),\n device:\n match(other_blackberry, ua) ||\n match(other_blackberry_10, ua) ||\n match(other_opera, ua) ||\n match(other_firefox, ua) ||\n match(other_chrome, ua)\n }\n };\n (result.any =\n result.apple.device ||\n result.android.device ||\n result.windows.device ||\n result.other.device),\n // excludes 'other' devices and ipods, targeting touchscreen phones\n (result.phone =\n result.apple.phone || result.android.phone || result.windows.phone),\n (result.tablet =\n result.apple.tablet || result.android.tablet || result.windows.tablet);\n\n return result;\n }\n\n if (\n typeof module !== 'undefined' &&\n module.exports &&\n typeof window === 'undefined'\n ) {\n // Node.js\n module.exports = isMobile;\n } else if (\n typeof module !== 'undefined' &&\n module.exports &&\n typeof window !== 'undefined'\n ) {\n // Browserify\n module.exports = isMobile();\n module.exports.isMobile = isMobile;\n } else if (typeof define === 'function' && define.amd) {\n // AMD\n define([], (global.isMobile = isMobile()));\n } else {\n global.isMobile = isMobile();\n }\n})(this);\n","/*!\n * @pixi/settings - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/settings is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport isMobile from 'ismobilejs';\nexport { default as isMobile } from 'ismobilejs';\n\n/**\n * The maximum recommended texture units to use.\n * In theory the bigger the better, and for desktop we'll use as many as we can.\n * But some mobile devices slow down if there is to many branches in the shader.\n * So in practice there seems to be a sweet spot size that varies depending on the device.\n *\n * In v4, all mobile devices were limited to 4 texture units because for this.\n * In v5, we allow all texture units to be used on modern Apple or Android devices.\n *\n * @private\n * @param {number} max\n * @returns {number}\n */\nfunction maxRecommendedTextures(max)\n{\n var allowMax = true;\n\n if (isMobile.tablet || isMobile.phone)\n {\n allowMax = false;\n\n if (isMobile.apple.device)\n {\n var match = (navigator.userAgent).match(/OS (\\d+)_(\\d+)?/);\n\n if (match)\n {\n var majorVersion = parseInt(match[1], 10);\n\n // All texture units can be used on devices that support ios 11 or above\n if (majorVersion >= 11)\n {\n allowMax = true;\n }\n }\n }\n if (isMobile.android.device)\n {\n var match$1 = (navigator.userAgent).match(/Android\\s([0-9.]*)/);\n\n if (match$1)\n {\n var majorVersion$1 = parseInt(match$1[1], 10);\n\n // All texture units can be used on devices that support Android 7 (Nougat) or above\n if (majorVersion$1 >= 7)\n {\n allowMax = true;\n }\n }\n }\n }\n\n return allowMax ? max : 4;\n}\n\n/**\n * Uploading the same buffer multiple times in a single frame can cause performance issues.\n * Apparent on iOS so only check for that at the moment\n * This check may become more complex if this issue pops up elsewhere.\n *\n * @private\n * @returns {boolean}\n */\nfunction canUploadSameBuffer()\n{\n return !isMobile.apple.device;\n}\n\n/**\n * User's customizable globals for overriding the default PIXI settings, such\n * as a renderer's default resolution, framerate, float precision, etc.\n * @example\n * // Use the native window resolution as the default resolution\n * // will support high-density displays when rendering\n * PIXI.settings.RESOLUTION = window.devicePixelRatio;\n *\n * // Disable interpolation when scaling, will make texture be pixelated\n * PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST;\n * @namespace PIXI.settings\n */\nvar settings = {\n\n /**\n * If set to true WebGL will attempt make textures mimpaped by default.\n * Mipmapping will only succeed if the base texture uploaded has power of two dimensions.\n *\n * @static\n * @name MIPMAP_TEXTURES\n * @memberof PIXI.settings\n * @type {PIXI.MIPMAP_MODES}\n * @default PIXI.MIPMAP_MODES.POW2\n */\n MIPMAP_TEXTURES: 1,\n\n /**\n * Default anisotropic filtering level of textures.\n * Usually from 0 to 16\n *\n * @static\n * @name ANISOTROPIC_LEVEL\n * @memberof PIXI.settings\n * @type {number}\n * @default 0\n */\n ANISOTROPIC_LEVEL: 0,\n\n /**\n * Default resolution / device pixel ratio of the renderer.\n *\n * @static\n * @name RESOLUTION\n * @memberof PIXI.settings\n * @type {number}\n * @default 1\n */\n RESOLUTION: 1,\n\n /**\n * Default filter resolution.\n *\n * @static\n * @name FILTER_RESOLUTION\n * @memberof PIXI.settings\n * @type {number}\n * @default 1\n */\n FILTER_RESOLUTION: 1,\n\n /**\n * The maximum textures that this device supports.\n *\n * @static\n * @name SPRITE_MAX_TEXTURES\n * @memberof PIXI.settings\n * @type {number}\n * @default 32\n */\n SPRITE_MAX_TEXTURES: maxRecommendedTextures(32),\n\n // TODO: maybe change to SPRITE.BATCH_SIZE: 2000\n // TODO: maybe add PARTICLE.BATCH_SIZE: 15000\n\n /**\n * The default sprite batch size.\n *\n * The default aims to balance desktop and mobile devices.\n *\n * @static\n * @name SPRITE_BATCH_SIZE\n * @memberof PIXI.settings\n * @type {number}\n * @default 4096\n */\n SPRITE_BATCH_SIZE: 4096,\n\n /**\n * The default render options if none are supplied to {@link PIXI.Renderer}\n * or {@link PIXI.CanvasRenderer}.\n *\n * @static\n * @name RENDER_OPTIONS\n * @memberof PIXI.settings\n * @type {object}\n * @property {HTMLCanvasElement} view=null\n * @property {number} resolution=1\n * @property {boolean} antialias=false\n * @property {boolean} forceFXAA=false\n * @property {boolean} autoDensity=false\n * @property {boolean} transparent=false\n * @property {number} backgroundColor=0x000000\n * @property {boolean} clearBeforeRender=true\n * @property {boolean} preserveDrawingBuffer=false\n * @property {number} width=800\n * @property {number} height=600\n * @property {boolean} legacy=false\n */\n RENDER_OPTIONS: {\n view: null,\n antialias: false,\n forceFXAA: false,\n autoDensity: false,\n transparent: false,\n backgroundColor: 0x000000,\n clearBeforeRender: true,\n preserveDrawingBuffer: false,\n width: 800,\n height: 600,\n legacy: false,\n },\n\n /**\n * Default Garbage Collection mode.\n *\n * @static\n * @name GC_MODE\n * @memberof PIXI.settings\n * @type {PIXI.GC_MODES}\n * @default PIXI.GC_MODES.AUTO\n */\n GC_MODE: 0,\n\n /**\n * Default Garbage Collection max idle.\n *\n * @static\n * @name GC_MAX_IDLE\n * @memberof PIXI.settings\n * @type {number}\n * @default 3600\n */\n GC_MAX_IDLE: 60 * 60,\n\n /**\n * Default Garbage Collection maximum check count.\n *\n * @static\n * @name GC_MAX_CHECK_COUNT\n * @memberof PIXI.settings\n * @type {number}\n * @default 600\n */\n GC_MAX_CHECK_COUNT: 60 * 10,\n\n /**\n * Default wrap modes that are supported by pixi.\n *\n * @static\n * @name WRAP_MODE\n * @memberof PIXI.settings\n * @type {PIXI.WRAP_MODES}\n * @default PIXI.WRAP_MODES.CLAMP\n */\n WRAP_MODE: 33071,\n\n /**\n * Default scale mode for textures.\n *\n * @static\n * @name SCALE_MODE\n * @memberof PIXI.settings\n * @type {PIXI.SCALE_MODES}\n * @default PIXI.SCALE_MODES.LINEAR\n */\n SCALE_MODE: 1,\n\n /**\n * Default specify float precision in vertex shader.\n *\n * @static\n * @name PRECISION_VERTEX\n * @memberof PIXI.settings\n * @type {PIXI.PRECISION}\n * @default PIXI.PRECISION.HIGH\n */\n PRECISION_VERTEX: 'highp',\n\n /**\n * Default specify float precision in fragment shader.\n * iOS is best set at highp due to https://github.com/pixijs/pixi.js/issues/3742\n *\n * @static\n * @name PRECISION_FRAGMENT\n * @memberof PIXI.settings\n * @type {PIXI.PRECISION}\n * @default PIXI.PRECISION.MEDIUM\n */\n PRECISION_FRAGMENT: isMobile.apple.device ? 'highp' : 'mediump',\n\n /**\n * Can we upload the same buffer in a single frame?\n *\n * @static\n * @name CAN_UPLOAD_SAME_BUFFER\n * @memberof PIXI.settings\n * @type {boolean}\n */\n CAN_UPLOAD_SAME_BUFFER: canUploadSameBuffer(),\n\n /**\n * Enables bitmap creation before image load. This feature is experimental.\n *\n * @static\n * @name CREATE_IMAGE_BITMAP\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\n CREATE_IMAGE_BITMAP: false,\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n *\n * @static\n * @constant\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\n ROUND_PIXELS: false,\n};\n\nexport { settings };\n//# sourceMappingURL=settings.es.js.map\n","'use strict';\n\nvar has = Object.prototype.hasOwnProperty\n , prefix = '~';\n\n/**\n * Constructor to create a storage for our `EE` objects.\n * An `Events` instance is a plain object whose properties are event names.\n *\n * @constructor\n * @private\n */\nfunction Events() {}\n\n//\n// We try to not inherit from `Object.prototype`. In some engines creating an\n// instance in this way is faster than calling `Object.create(null)` directly.\n// If `Object.create(null)` is not supported we prefix the event names with a\n// character to make sure that the built-in object properties are not\n// overridden or used as an attack vector.\n//\nif (Object.create) {\n Events.prototype = Object.create(null);\n\n //\n // This hack is needed because the `__proto__` property is still inherited in\n // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5.\n //\n if (!new Events().__proto__) prefix = false;\n}\n\n/**\n * Representation of a single event listener.\n *\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} [once=false] Specify if the listener is a one-time listener.\n * @constructor\n * @private\n */\nfunction EE(fn, context, once) {\n this.fn = fn;\n this.context = context;\n this.once = once || false;\n}\n\n/**\n * Add a listener for a given event.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} once Specify if the listener is a one-time listener.\n * @returns {EventEmitter}\n * @private\n */\nfunction addListener(emitter, event, fn, context, once) {\n if (typeof fn !== 'function') {\n throw new TypeError('The listener must be a function');\n }\n\n var listener = new EE(fn, context || emitter, once)\n , evt = prefix ? prefix + event : event;\n\n if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;\n else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);\n else emitter._events[evt] = [emitter._events[evt], listener];\n\n return emitter;\n}\n\n/**\n * Clear event by name.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} evt The Event name.\n * @private\n */\nfunction clearEvent(emitter, evt) {\n if (--emitter._eventsCount === 0) emitter._events = new Events();\n else delete emitter._events[evt];\n}\n\n/**\n * Minimal `EventEmitter` interface that is molded against the Node.js\n * `EventEmitter` interface.\n *\n * @constructor\n * @public\n */\nfunction EventEmitter() {\n this._events = new Events();\n this._eventsCount = 0;\n}\n\n/**\n * Return an array listing the events for which the emitter has registered\n * listeners.\n *\n * @returns {Array}\n * @public\n */\nEventEmitter.prototype.eventNames = function eventNames() {\n var names = []\n , events\n , name;\n\n if (this._eventsCount === 0) return names;\n\n for (name in (events = this._events)) {\n if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);\n }\n\n if (Object.getOwnPropertySymbols) {\n return names.concat(Object.getOwnPropertySymbols(events));\n }\n\n return names;\n};\n\n/**\n * Return the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Array} The registered listeners.\n * @public\n */\nEventEmitter.prototype.listeners = function listeners(event) {\n var evt = prefix ? prefix + event : event\n , handlers = this._events[evt];\n\n if (!handlers) return [];\n if (handlers.fn) return [handlers.fn];\n\n for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) {\n ee[i] = handlers[i].fn;\n }\n\n return ee;\n};\n\n/**\n * Return the number of listeners listening to a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Number} The number of listeners.\n * @public\n */\nEventEmitter.prototype.listenerCount = function listenerCount(event) {\n var evt = prefix ? prefix + event : event\n , listeners = this._events[evt];\n\n if (!listeners) return 0;\n if (listeners.fn) return 1;\n return listeners.length;\n};\n\n/**\n * Calls each of the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Boolean} `true` if the event had listeners, else `false`.\n * @public\n */\nEventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return false;\n\n var listeners = this._events[evt]\n , len = arguments.length\n , args\n , i;\n\n if (listeners.fn) {\n if (listeners.once) this.removeListener(event, listeners.fn, undefined, true);\n\n switch (len) {\n case 1: return listeners.fn.call(listeners.context), true;\n case 2: return listeners.fn.call(listeners.context, a1), true;\n case 3: return listeners.fn.call(listeners.context, a1, a2), true;\n case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true;\n case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;\n case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;\n }\n\n for (i = 1, args = new Array(len -1); i < len; i++) {\n args[i - 1] = arguments[i];\n }\n\n listeners.fn.apply(listeners.context, args);\n } else {\n var length = listeners.length\n , j;\n\n for (i = 0; i < length; i++) {\n if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true);\n\n switch (len) {\n case 1: listeners[i].fn.call(listeners[i].context); break;\n case 2: listeners[i].fn.call(listeners[i].context, a1); break;\n case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break;\n case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break;\n default:\n if (!args) for (j = 1, args = new Array(len -1); j < len; j++) {\n args[j - 1] = arguments[j];\n }\n\n listeners[i].fn.apply(listeners[i].context, args);\n }\n }\n }\n\n return true;\n};\n\n/**\n * Add a listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.on = function on(event, fn, context) {\n return addListener(this, event, fn, context, false);\n};\n\n/**\n * Add a one-time listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.once = function once(event, fn, context) {\n return addListener(this, event, fn, context, true);\n};\n\n/**\n * Remove the listeners of a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn Only remove the listeners that match this function.\n * @param {*} context Only remove the listeners that have this context.\n * @param {Boolean} once Only remove one-time listeners.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return this;\n if (!fn) {\n clearEvent(this, evt);\n return this;\n }\n\n var listeners = this._events[evt];\n\n if (listeners.fn) {\n if (\n listeners.fn === fn &&\n (!once || listeners.once) &&\n (!context || listeners.context === context)\n ) {\n clearEvent(this, evt);\n }\n } else {\n for (var i = 0, events = [], length = listeners.length; i < length; i++) {\n if (\n listeners[i].fn !== fn ||\n (once && !listeners[i].once) ||\n (context && listeners[i].context !== context)\n ) {\n events.push(listeners[i]);\n }\n }\n\n //\n // Reset the array, or remove it completely if we have no more listeners.\n //\n if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;\n else clearEvent(this, evt);\n }\n\n return this;\n};\n\n/**\n * Remove all listeners, or those of the specified event.\n *\n * @param {(String|Symbol)} [event] The event name.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {\n var evt;\n\n if (event) {\n evt = prefix ? prefix + event : event;\n if (this._events[evt]) clearEvent(this, evt);\n } else {\n this._events = new Events();\n this._eventsCount = 0;\n }\n\n return this;\n};\n\n//\n// Alias methods names because people roll like that.\n//\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\nEventEmitter.prototype.addListener = EventEmitter.prototype.on;\n\n//\n// Expose the prefix.\n//\nEventEmitter.prefixed = prefix;\n\n//\n// Allow `EventEmitter` to be imported as module namespace.\n//\nEventEmitter.EventEmitter = EventEmitter;\n\n//\n// Expose the module.\n//\nif ('undefined' !== typeof module) {\n module.exports = EventEmitter;\n}\n","'use strict';\n\nmodule.exports = earcut;\nmodule.exports.default = earcut;\n\nfunction earcut(data, holeIndices, dim) {\n\n dim = dim || 2;\n\n var hasHoles = holeIndices && holeIndices.length,\n outerLen = hasHoles ? holeIndices[0] * dim : data.length,\n outerNode = linkedList(data, 0, outerLen, dim, true),\n triangles = [];\n\n if (!outerNode || outerNode.next === outerNode.prev) return triangles;\n\n var minX, minY, maxX, maxY, x, y, invSize;\n\n if (hasHoles) outerNode = eliminateHoles(data, holeIndices, outerNode, dim);\n\n // if the shape is not too simple, we'll use z-order curve hash later; calculate polygon bbox\n if (data.length > 80 * dim) {\n minX = maxX = data[0];\n minY = maxY = data[1];\n\n for (var i = dim; i < outerLen; i += dim) {\n x = data[i];\n y = data[i + 1];\n if (x < minX) minX = x;\n if (y < minY) minY = y;\n if (x > maxX) maxX = x;\n if (y > maxY) maxY = y;\n }\n\n // minX, minY and invSize are later used to transform coords into integers for z-order calculation\n invSize = Math.max(maxX - minX, maxY - minY);\n invSize = invSize !== 0 ? 1 / invSize : 0;\n }\n\n earcutLinked(outerNode, triangles, dim, minX, minY, invSize);\n\n return triangles;\n}\n\n// create a circular doubly linked list from polygon points in the specified winding order\nfunction linkedList(data, start, end, dim, clockwise) {\n var i, last;\n\n if (clockwise === (signedArea(data, start, end, dim) > 0)) {\n for (i = start; i < end; i += dim) last = insertNode(i, data[i], data[i + 1], last);\n } else {\n for (i = end - dim; i >= start; i -= dim) last = insertNode(i, data[i], data[i + 1], last);\n }\n\n if (last && equals(last, last.next)) {\n removeNode(last);\n last = last.next;\n }\n\n return last;\n}\n\n// eliminate colinear or duplicate points\nfunction filterPoints(start, end) {\n if (!start) return start;\n if (!end) end = start;\n\n var p = start,\n again;\n do {\n again = false;\n\n if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) {\n removeNode(p);\n p = end = p.prev;\n if (p === p.next) break;\n again = true;\n\n } else {\n p = p.next;\n }\n } while (again || p !== end);\n\n return end;\n}\n\n// main ear slicing loop which triangulates a polygon (given as a linked list)\nfunction earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) {\n if (!ear) return;\n\n // interlink polygon nodes in z-order\n if (!pass && invSize) indexCurve(ear, minX, minY, invSize);\n\n var stop = ear,\n prev, next;\n\n // iterate through ears, slicing them one by one\n while (ear.prev !== ear.next) {\n prev = ear.prev;\n next = ear.next;\n\n if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) {\n // cut off the triangle\n triangles.push(prev.i / dim);\n triangles.push(ear.i / dim);\n triangles.push(next.i / dim);\n\n removeNode(ear);\n\n // skipping the next vertex leads to less sliver triangles\n ear = next.next;\n stop = next.next;\n\n continue;\n }\n\n ear = next;\n\n // if we looped through the whole remaining polygon and can't find any more ears\n if (ear === stop) {\n // try filtering points and slicing again\n if (!pass) {\n earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1);\n\n // if this didn't work, try curing all small self-intersections locally\n } else if (pass === 1) {\n ear = cureLocalIntersections(filterPoints(ear), triangles, dim);\n earcutLinked(ear, triangles, dim, minX, minY, invSize, 2);\n\n // as a last resort, try splitting the remaining polygon into two\n } else if (pass === 2) {\n splitEarcut(ear, triangles, dim, minX, minY, invSize);\n }\n\n break;\n }\n }\n}\n\n// check whether a polygon node forms a valid ear with adjacent nodes\nfunction isEar(ear) {\n var a = ear.prev,\n b = ear,\n c = ear.next;\n\n if (area(a, b, c) >= 0) return false; // reflex, can't be an ear\n\n // now make sure we don't have other points inside the potential ear\n var p = ear.next.next;\n\n while (p !== ear.prev) {\n if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.next;\n }\n\n return true;\n}\n\nfunction isEarHashed(ear, minX, minY, invSize) {\n var a = ear.prev,\n b = ear,\n c = ear.next;\n\n if (area(a, b, c) >= 0) return false; // reflex, can't be an ear\n\n // triangle bbox; min & max are calculated like this for speed\n var minTX = a.x < b.x ? (a.x < c.x ? a.x : c.x) : (b.x < c.x ? b.x : c.x),\n minTY = a.y < b.y ? (a.y < c.y ? a.y : c.y) : (b.y < c.y ? b.y : c.y),\n maxTX = a.x > b.x ? (a.x > c.x ? a.x : c.x) : (b.x > c.x ? b.x : c.x),\n maxTY = a.y > b.y ? (a.y > c.y ? a.y : c.y) : (b.y > c.y ? b.y : c.y);\n\n // z-order range for the current triangle bbox;\n var minZ = zOrder(minTX, minTY, minX, minY, invSize),\n maxZ = zOrder(maxTX, maxTY, minX, minY, invSize);\n\n var p = ear.prevZ,\n n = ear.nextZ;\n\n // look for points inside the triangle in both directions\n while (p && p.z >= minZ && n && n.z <= maxZ) {\n if (p !== ear.prev && p !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.prevZ;\n\n if (n !== ear.prev && n !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) &&\n area(n.prev, n, n.next) >= 0) return false;\n n = n.nextZ;\n }\n\n // look for remaining points in decreasing z-order\n while (p && p.z >= minZ) {\n if (p !== ear.prev && p !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.prevZ;\n }\n\n // look for remaining points in increasing z-order\n while (n && n.z <= maxZ) {\n if (n !== ear.prev && n !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) &&\n area(n.prev, n, n.next) >= 0) return false;\n n = n.nextZ;\n }\n\n return true;\n}\n\n// go through all polygon nodes and cure small local self-intersections\nfunction cureLocalIntersections(start, triangles, dim) {\n var p = start;\n do {\n var a = p.prev,\n b = p.next.next;\n\n if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) {\n\n triangles.push(a.i / dim);\n triangles.push(p.i / dim);\n triangles.push(b.i / dim);\n\n // remove two nodes involved\n removeNode(p);\n removeNode(p.next);\n\n p = start = b;\n }\n p = p.next;\n } while (p !== start);\n\n return filterPoints(p);\n}\n\n// try splitting polygon into two and triangulate them independently\nfunction splitEarcut(start, triangles, dim, minX, minY, invSize) {\n // look for a valid diagonal that divides the polygon into two\n var a = start;\n do {\n var b = a.next.next;\n while (b !== a.prev) {\n if (a.i !== b.i && isValidDiagonal(a, b)) {\n // split the polygon in two by the diagonal\n var c = splitPolygon(a, b);\n\n // filter colinear points around the cuts\n a = filterPoints(a, a.next);\n c = filterPoints(c, c.next);\n\n // run earcut on each half\n earcutLinked(a, triangles, dim, minX, minY, invSize);\n earcutLinked(c, triangles, dim, minX, minY, invSize);\n return;\n }\n b = b.next;\n }\n a = a.next;\n } while (a !== start);\n}\n\n// link every hole into the outer loop, producing a single-ring polygon without holes\nfunction eliminateHoles(data, holeIndices, outerNode, dim) {\n var queue = [],\n i, len, start, end, list;\n\n for (i = 0, len = holeIndices.length; i < len; i++) {\n start = holeIndices[i] * dim;\n end = i < len - 1 ? holeIndices[i + 1] * dim : data.length;\n list = linkedList(data, start, end, dim, false);\n if (list === list.next) list.steiner = true;\n queue.push(getLeftmost(list));\n }\n\n queue.sort(compareX);\n\n // process holes from left to right\n for (i = 0; i < queue.length; i++) {\n eliminateHole(queue[i], outerNode);\n outerNode = filterPoints(outerNode, outerNode.next);\n }\n\n return outerNode;\n}\n\nfunction compareX(a, b) {\n return a.x - b.x;\n}\n\n// find a bridge between vertices that connects hole with an outer ring and and link it\nfunction eliminateHole(hole, outerNode) {\n outerNode = findHoleBridge(hole, outerNode);\n if (outerNode) {\n var b = splitPolygon(outerNode, hole);\n filterPoints(b, b.next);\n }\n}\n\n// David Eberly's algorithm for finding a bridge between hole and outer polygon\nfunction findHoleBridge(hole, outerNode) {\n var p = outerNode,\n hx = hole.x,\n hy = hole.y,\n qx = -Infinity,\n m;\n\n // find a segment intersected by a ray from the hole's leftmost point to the left;\n // segment's endpoint with lesser x will be potential connection point\n do {\n if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) {\n var x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y);\n if (x <= hx && x > qx) {\n qx = x;\n if (x === hx) {\n if (hy === p.y) return p;\n if (hy === p.next.y) return p.next;\n }\n m = p.x < p.next.x ? p : p.next;\n }\n }\n p = p.next;\n } while (p !== outerNode);\n\n if (!m) return null;\n\n if (hx === qx) return m; // hole touches outer segment; pick leftmost endpoint\n\n // look for points inside the triangle of hole point, segment intersection and endpoint;\n // if there are no points found, we have a valid connection;\n // otherwise choose the point of the minimum angle with the ray as connection point\n\n var stop = m,\n mx = m.x,\n my = m.y,\n tanMin = Infinity,\n tan;\n\n p = m;\n\n do {\n if (hx >= p.x && p.x >= mx && hx !== p.x &&\n pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) {\n\n tan = Math.abs(hy - p.y) / (hx - p.x); // tangential\n\n if (locallyInside(p, hole) &&\n (tan < tanMin || (tan === tanMin && (p.x > m.x || (p.x === m.x && sectorContainsSector(m, p)))))) {\n m = p;\n tanMin = tan;\n }\n }\n\n p = p.next;\n } while (p !== stop);\n\n return m;\n}\n\n// whether sector in vertex m contains sector in vertex p in the same coordinates\nfunction sectorContainsSector(m, p) {\n return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0;\n}\n\n// interlink polygon nodes in z-order\nfunction indexCurve(start, minX, minY, invSize) {\n var p = start;\n do {\n if (p.z === null) p.z = zOrder(p.x, p.y, minX, minY, invSize);\n p.prevZ = p.prev;\n p.nextZ = p.next;\n p = p.next;\n } while (p !== start);\n\n p.prevZ.nextZ = null;\n p.prevZ = null;\n\n sortLinked(p);\n}\n\n// Simon Tatham's linked list merge sort algorithm\n// http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html\nfunction sortLinked(list) {\n var i, p, q, e, tail, numMerges, pSize, qSize,\n inSize = 1;\n\n do {\n p = list;\n list = null;\n tail = null;\n numMerges = 0;\n\n while (p) {\n numMerges++;\n q = p;\n pSize = 0;\n for (i = 0; i < inSize; i++) {\n pSize++;\n q = q.nextZ;\n if (!q) break;\n }\n qSize = inSize;\n\n while (pSize > 0 || (qSize > 0 && q)) {\n\n if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) {\n e = p;\n p = p.nextZ;\n pSize--;\n } else {\n e = q;\n q = q.nextZ;\n qSize--;\n }\n\n if (tail) tail.nextZ = e;\n else list = e;\n\n e.prevZ = tail;\n tail = e;\n }\n\n p = q;\n }\n\n tail.nextZ = null;\n inSize *= 2;\n\n } while (numMerges > 1);\n\n return list;\n}\n\n// z-order of a point given coords and inverse of the longer side of data bbox\nfunction zOrder(x, y, minX, minY, invSize) {\n // coords are transformed into non-negative 15-bit integer range\n x = 32767 * (x - minX) * invSize;\n y = 32767 * (y - minY) * invSize;\n\n x = (x | (x << 8)) & 0x00FF00FF;\n x = (x | (x << 4)) & 0x0F0F0F0F;\n x = (x | (x << 2)) & 0x33333333;\n x = (x | (x << 1)) & 0x55555555;\n\n y = (y | (y << 8)) & 0x00FF00FF;\n y = (y | (y << 4)) & 0x0F0F0F0F;\n y = (y | (y << 2)) & 0x33333333;\n y = (y | (y << 1)) & 0x55555555;\n\n return x | (y << 1);\n}\n\n// find the leftmost node of a polygon ring\nfunction getLeftmost(start) {\n var p = start,\n leftmost = start;\n do {\n if (p.x < leftmost.x || (p.x === leftmost.x && p.y < leftmost.y)) leftmost = p;\n p = p.next;\n } while (p !== start);\n\n return leftmost;\n}\n\n// check if a point lies within a convex triangle\nfunction pointInTriangle(ax, ay, bx, by, cx, cy, px, py) {\n return (cx - px) * (ay - py) - (ax - px) * (cy - py) >= 0 &&\n (ax - px) * (by - py) - (bx - px) * (ay - py) >= 0 &&\n (bx - px) * (cy - py) - (cx - px) * (by - py) >= 0;\n}\n\n// check if a diagonal between two polygon nodes is valid (lies in polygon interior)\nfunction isValidDiagonal(a, b) {\n return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && // dones't intersect other edges\n (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && // locally visible\n (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors\n equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case\n}\n\n// signed area of a triangle\nfunction area(p, q, r) {\n return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y);\n}\n\n// check if two points are equal\nfunction equals(p1, p2) {\n return p1.x === p2.x && p1.y === p2.y;\n}\n\n// check if two segments intersect\nfunction intersects(p1, q1, p2, q2) {\n var o1 = sign(area(p1, q1, p2));\n var o2 = sign(area(p1, q1, q2));\n var o3 = sign(area(p2, q2, p1));\n var o4 = sign(area(p2, q2, q1));\n\n if (o1 !== o2 && o3 !== o4) return true; // general case\n\n if (o1 === 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p1q1\n if (o2 === 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p1q1\n if (o3 === 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p2q2\n if (o4 === 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p2q2\n\n return false;\n}\n\n// for collinear points p, q, r, check if point q lies on segment pr\nfunction onSegment(p, q, r) {\n return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y);\n}\n\nfunction sign(num) {\n return num > 0 ? 1 : num < 0 ? -1 : 0;\n}\n\n// check if a polygon diagonal intersects any polygon segments\nfunction intersectsPolygon(a, b) {\n var p = a;\n do {\n if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i &&\n intersects(p, p.next, a, b)) return true;\n p = p.next;\n } while (p !== a);\n\n return false;\n}\n\n// check if a polygon diagonal is locally inside the polygon\nfunction locallyInside(a, b) {\n return area(a.prev, a, a.next) < 0 ?\n area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 :\n area(a, b, a.prev) < 0 || area(a, a.next, b) < 0;\n}\n\n// check if the middle point of a polygon diagonal is inside the polygon\nfunction middleInside(a, b) {\n var p = a,\n inside = false,\n px = (a.x + b.x) / 2,\n py = (a.y + b.y) / 2;\n do {\n if (((p.y > py) !== (p.next.y > py)) && p.next.y !== p.y &&\n (px < (p.next.x - p.x) * (py - p.y) / (p.next.y - p.y) + p.x))\n inside = !inside;\n p = p.next;\n } while (p !== a);\n\n return inside;\n}\n\n// link two polygon vertices with a bridge; if the vertices belong to the same ring, it splits polygon into two;\n// if one belongs to the outer ring and another to a hole, it merges it into a single ring\nfunction splitPolygon(a, b) {\n var a2 = new Node(a.i, a.x, a.y),\n b2 = new Node(b.i, b.x, b.y),\n an = a.next,\n bp = b.prev;\n\n a.next = b;\n b.prev = a;\n\n a2.next = an;\n an.prev = a2;\n\n b2.next = a2;\n a2.prev = b2;\n\n bp.next = b2;\n b2.prev = bp;\n\n return b2;\n}\n\n// create a node and optionally link it with previous one (in a circular doubly linked list)\nfunction insertNode(i, x, y, last) {\n var p = new Node(i, x, y);\n\n if (!last) {\n p.prev = p;\n p.next = p;\n\n } else {\n p.next = last.next;\n p.prev = last;\n last.next.prev = p;\n last.next = p;\n }\n return p;\n}\n\nfunction removeNode(p) {\n p.next.prev = p.prev;\n p.prev.next = p.next;\n\n if (p.prevZ) p.prevZ.nextZ = p.nextZ;\n if (p.nextZ) p.nextZ.prevZ = p.prevZ;\n}\n\nfunction Node(i, x, y) {\n // vertex index in coordinates array\n this.i = i;\n\n // vertex coordinates\n this.x = x;\n this.y = y;\n\n // previous and next vertex nodes in a polygon ring\n this.prev = null;\n this.next = null;\n\n // z-order curve value\n this.z = null;\n\n // previous and next nodes in z-order\n this.prevZ = null;\n this.nextZ = null;\n\n // indicates whether this is a steiner point\n this.steiner = false;\n}\n\n// return a percentage difference between the polygon area and its triangulation area;\n// used to verify correctness of triangulation\nearcut.deviation = function (data, holeIndices, dim, triangles) {\n var hasHoles = holeIndices && holeIndices.length;\n var outerLen = hasHoles ? holeIndices[0] * dim : data.length;\n\n var polygonArea = Math.abs(signedArea(data, 0, outerLen, dim));\n if (hasHoles) {\n for (var i = 0, len = holeIndices.length; i < len; i++) {\n var start = holeIndices[i] * dim;\n var end = i < len - 1 ? holeIndices[i + 1] * dim : data.length;\n polygonArea -= Math.abs(signedArea(data, start, end, dim));\n }\n }\n\n var trianglesArea = 0;\n for (i = 0; i < triangles.length; i += 3) {\n var a = triangles[i] * dim;\n var b = triangles[i + 1] * dim;\n var c = triangles[i + 2] * dim;\n trianglesArea += Math.abs(\n (data[a] - data[c]) * (data[b + 1] - data[a + 1]) -\n (data[a] - data[b]) * (data[c + 1] - data[a + 1]));\n }\n\n return polygonArea === 0 && trianglesArea === 0 ? 0 :\n Math.abs((trianglesArea - polygonArea) / polygonArea);\n};\n\nfunction signedArea(data, start, end, dim) {\n var sum = 0;\n for (var i = start, j = end - dim; i < end; i += dim) {\n sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]);\n j = i;\n }\n return sum;\n}\n\n// turn a polygon in a multi-dimensional array form (e.g. as in GeoJSON) into a form Earcut accepts\nearcut.flatten = function (data) {\n var dim = data[0][0].length,\n result = {vertices: [], holes: [], dimensions: dim},\n holeIndex = 0;\n\n for (var i = 0; i < data.length; i++) {\n for (var j = 0; j < data[i].length; j++) {\n for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]);\n }\n if (i > 0) {\n holeIndex += data[i - 1].length;\n result.holes.push(holeIndex);\n }\n }\n return result;\n};\n","/*! https://mths.be/punycode v1.4.1 by @mathias */\n\n\n/** Highest positive signed 32-bit float value */\nvar maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1\n\n/** Bootstring parameters */\nvar base = 36;\nvar tMin = 1;\nvar tMax = 26;\nvar skew = 38;\nvar damp = 700;\nvar initialBias = 72;\nvar initialN = 128; // 0x80\nvar delimiter = '-'; // '\\x2D'\n\n/** Regular expressions */\nvar regexPunycode = /^xn--/;\nvar regexNonASCII = /[^\\x20-\\x7E]/; // unprintable ASCII chars + non-ASCII chars\nvar regexSeparators = /[\\x2E\\u3002\\uFF0E\\uFF61]/g; // RFC 3490 separators\n\n/** Error messages */\nvar errors = {\n 'overflow': 'Overflow: input needs wider integers to process',\n 'not-basic': 'Illegal input >= 0x80 (not a basic code point)',\n 'invalid-input': 'Invalid input'\n};\n\n/** Convenience shortcuts */\nvar baseMinusTMin = base - tMin;\nvar floor = Math.floor;\nvar stringFromCharCode = String.fromCharCode;\n\n/*--------------------------------------------------------------------------*/\n\n/**\n * A generic error utility function.\n * @private\n * @param {String} type The error type.\n * @returns {Error} Throws a `RangeError` with the applicable error message.\n */\nfunction error(type) {\n throw new RangeError(errors[type]);\n}\n\n/**\n * A generic `Array#map` utility function.\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} callback The function that gets called for every array\n * item.\n * @returns {Array} A new array of values returned by the callback function.\n */\nfunction map(array, fn) {\n var length = array.length;\n var result = [];\n while (length--) {\n result[length] = fn(array[length]);\n }\n return result;\n}\n\n/**\n * A simple `Array#map`-like wrapper to work with domain name strings or email\n * addresses.\n * @private\n * @param {String} domain The domain name or email address.\n * @param {Function} callback The function that gets called for every\n * character.\n * @returns {Array} A new string of characters returned by the callback\n * function.\n */\nfunction mapDomain(string, fn) {\n var parts = string.split('@');\n var result = '';\n if (parts.length > 1) {\n // In email addresses, only the domain name should be punycoded. Leave\n // the local part (i.e. everything up to `@`) intact.\n result = parts[0] + '@';\n string = parts[1];\n }\n // Avoid `split(regex)` for IE8 compatibility. See #17.\n string = string.replace(regexSeparators, '\\x2E');\n var labels = string.split('.');\n var encoded = map(labels, fn).join('.');\n return result + encoded;\n}\n\n/**\n * Creates an array containing the numeric code points of each Unicode\n * character in the string. While JavaScript uses UCS-2 internally,\n * this function will convert a pair of surrogate halves (each of which\n * UCS-2 exposes as separate characters) into a single code point,\n * matching UTF-16.\n * @see `punycode.ucs2.encode`\n * @see \n * @memberOf punycode.ucs2\n * @name decode\n * @param {String} string The Unicode input string (UCS-2).\n * @returns {Array} The new array of code points.\n */\nfunction ucs2decode(string) {\n var output = [],\n counter = 0,\n length = string.length,\n value,\n extra;\n while (counter < length) {\n value = string.charCodeAt(counter++);\n if (value >= 0xD800 && value <= 0xDBFF && counter < length) {\n // high surrogate, and there is a next character\n extra = string.charCodeAt(counter++);\n if ((extra & 0xFC00) == 0xDC00) { // low surrogate\n output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000);\n } else {\n // unmatched surrogate; only append this code unit, in case the next\n // code unit is the high surrogate of a surrogate pair\n output.push(value);\n counter--;\n }\n } else {\n output.push(value);\n }\n }\n return output;\n}\n\n/**\n * Creates a string based on an array of numeric code points.\n * @see `punycode.ucs2.decode`\n * @memberOf punycode.ucs2\n * @name encode\n * @param {Array} codePoints The array of numeric code points.\n * @returns {String} The new Unicode string (UCS-2).\n */\nfunction ucs2encode(array) {\n return map(array, function(value) {\n var output = '';\n if (value > 0xFFFF) {\n value -= 0x10000;\n output += stringFromCharCode(value >>> 10 & 0x3FF | 0xD800);\n value = 0xDC00 | value & 0x3FF;\n }\n output += stringFromCharCode(value);\n return output;\n }).join('');\n}\n\n/**\n * Converts a basic code point into a digit/integer.\n * @see `digitToBasic()`\n * @private\n * @param {Number} codePoint The basic numeric code point value.\n * @returns {Number} The numeric value of a basic code point (for use in\n * representing integers) in the range `0` to `base - 1`, or `base` if\n * the code point does not represent a value.\n */\nfunction basicToDigit(codePoint) {\n if (codePoint - 48 < 10) {\n return codePoint - 22;\n }\n if (codePoint - 65 < 26) {\n return codePoint - 65;\n }\n if (codePoint - 97 < 26) {\n return codePoint - 97;\n }\n return base;\n}\n\n/**\n * Converts a digit/integer into a basic code point.\n * @see `basicToDigit()`\n * @private\n * @param {Number} digit The numeric value of a basic code point.\n * @returns {Number} The basic code point whose value (when used for\n * representing integers) is `digit`, which needs to be in the range\n * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is\n * used; else, the lowercase form is used. The behavior is undefined\n * if `flag` is non-zero and `digit` has no uppercase form.\n */\nfunction digitToBasic(digit, flag) {\n // 0..25 map to ASCII a..z or A..Z\n // 26..35 map to ASCII 0..9\n return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5);\n}\n\n/**\n * Bias adaptation function as per section 3.4 of RFC 3492.\n * https://tools.ietf.org/html/rfc3492#section-3.4\n * @private\n */\nfunction adapt(delta, numPoints, firstTime) {\n var k = 0;\n delta = firstTime ? floor(delta / damp) : delta >> 1;\n delta += floor(delta / numPoints);\n for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) {\n delta = floor(delta / baseMinusTMin);\n }\n return floor(k + (baseMinusTMin + 1) * delta / (delta + skew));\n}\n\n/**\n * Converts a Punycode string of ASCII-only symbols to a string of Unicode\n * symbols.\n * @memberOf punycode\n * @param {String} input The Punycode string of ASCII-only symbols.\n * @returns {String} The resulting string of Unicode symbols.\n */\nexport function decode(input) {\n // Don't use UCS-2\n var output = [],\n inputLength = input.length,\n out,\n i = 0,\n n = initialN,\n bias = initialBias,\n basic,\n j,\n index,\n oldi,\n w,\n k,\n digit,\n t,\n /** Cached calculation results */\n baseMinusT;\n\n // Handle the basic code points: let `basic` be the number of input code\n // points before the last delimiter, or `0` if there is none, then copy\n // the first basic code points to the output.\n\n basic = input.lastIndexOf(delimiter);\n if (basic < 0) {\n basic = 0;\n }\n\n for (j = 0; j < basic; ++j) {\n // if it's not a basic code point\n if (input.charCodeAt(j) >= 0x80) {\n error('not-basic');\n }\n output.push(input.charCodeAt(j));\n }\n\n // Main decoding loop: start just after the last delimiter if any basic code\n // points were copied; start at the beginning otherwise.\n\n for (index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */ ) {\n\n // `index` is the index of the next character to be consumed.\n // Decode a generalized variable-length integer into `delta`,\n // which gets added to `i`. The overflow checking is easier\n // if we increase `i` as we go, then subtract off its starting\n // value at the end to obtain `delta`.\n for (oldi = i, w = 1, k = base; /* no condition */ ; k += base) {\n\n if (index >= inputLength) {\n error('invalid-input');\n }\n\n digit = basicToDigit(input.charCodeAt(index++));\n\n if (digit >= base || digit > floor((maxInt - i) / w)) {\n error('overflow');\n }\n\n i += digit * w;\n t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n\n if (digit < t) {\n break;\n }\n\n baseMinusT = base - t;\n if (w > floor(maxInt / baseMinusT)) {\n error('overflow');\n }\n\n w *= baseMinusT;\n\n }\n\n out = output.length + 1;\n bias = adapt(i - oldi, out, oldi == 0);\n\n // `i` was supposed to wrap around from `out` to `0`,\n // incrementing `n` each time, so we'll fix that now:\n if (floor(i / out) > maxInt - n) {\n error('overflow');\n }\n\n n += floor(i / out);\n i %= out;\n\n // Insert `n` at position `i` of the output\n output.splice(i++, 0, n);\n\n }\n\n return ucs2encode(output);\n}\n\n/**\n * Converts a string of Unicode symbols (e.g. a domain name label) to a\n * Punycode string of ASCII-only symbols.\n * @memberOf punycode\n * @param {String} input The string of Unicode symbols.\n * @returns {String} The resulting Punycode string of ASCII-only symbols.\n */\nexport function encode(input) {\n var n,\n delta,\n handledCPCount,\n basicLength,\n bias,\n j,\n m,\n q,\n k,\n t,\n currentValue,\n output = [],\n /** `inputLength` will hold the number of code points in `input`. */\n inputLength,\n /** Cached calculation results */\n handledCPCountPlusOne,\n baseMinusT,\n qMinusT;\n\n // Convert the input in UCS-2 to Unicode\n input = ucs2decode(input);\n\n // Cache the length\n inputLength = input.length;\n\n // Initialize the state\n n = initialN;\n delta = 0;\n bias = initialBias;\n\n // Handle the basic code points\n for (j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n if (currentValue < 0x80) {\n output.push(stringFromCharCode(currentValue));\n }\n }\n\n handledCPCount = basicLength = output.length;\n\n // `handledCPCount` is the number of code points that have been handled;\n // `basicLength` is the number of basic code points.\n\n // Finish the basic string - if it is not empty - with a delimiter\n if (basicLength) {\n output.push(delimiter);\n }\n\n // Main encoding loop:\n while (handledCPCount < inputLength) {\n\n // All non-basic code points < n have been handled already. Find the next\n // larger one:\n for (m = maxInt, j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n if (currentValue >= n && currentValue < m) {\n m = currentValue;\n }\n }\n\n // Increase `delta` enough to advance the decoder's state to ,\n // but guard against overflow\n handledCPCountPlusOne = handledCPCount + 1;\n if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) {\n error('overflow');\n }\n\n delta += (m - n) * handledCPCountPlusOne;\n n = m;\n\n for (j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n\n if (currentValue < n && ++delta > maxInt) {\n error('overflow');\n }\n\n if (currentValue == n) {\n // Represent delta as a generalized variable-length integer\n for (q = delta, k = base; /* no condition */ ; k += base) {\n t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n if (q < t) {\n break;\n }\n qMinusT = q - t;\n baseMinusT = base - t;\n output.push(\n stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0))\n );\n q = floor(qMinusT / baseMinusT);\n }\n\n output.push(stringFromCharCode(digitToBasic(q, 0)));\n bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength);\n delta = 0;\n ++handledCPCount;\n }\n }\n\n ++delta;\n ++n;\n\n }\n return output.join('');\n}\n\n/**\n * Converts a Punycode string representing a domain name or an email address\n * to Unicode. Only the Punycoded parts of the input will be converted, i.e.\n * it doesn't matter if you call it on a string that has already been\n * converted to Unicode.\n * @memberOf punycode\n * @param {String} input The Punycoded domain name or email address to\n * convert to Unicode.\n * @returns {String} The Unicode representation of the given Punycode\n * string.\n */\nexport function toUnicode(input) {\n return mapDomain(input, function(string) {\n return regexPunycode.test(string) ?\n decode(string.slice(4).toLowerCase()) :\n string;\n });\n}\n\n/**\n * Converts a Unicode string representing a domain name or an email address to\n * Punycode. Only the non-ASCII parts of the domain name will be converted,\n * i.e. it doesn't matter if you call it with a domain that's already in\n * ASCII.\n * @memberOf punycode\n * @param {String} input The domain name or email address to convert, as a\n * Unicode string.\n * @returns {String} The Punycode representation of the given domain name or\n * email address.\n */\nexport function toASCII(input) {\n return mapDomain(input, function(string) {\n return regexNonASCII.test(string) ?\n 'xn--' + encode(string) :\n string;\n });\n}\nexport var version = '1.4.1';\n/**\n * An object of methods to convert from JavaScript's internal character\n * representation (UCS-2) to Unicode code points, and back.\n * @see \n * @memberOf punycode\n * @type Object\n */\n\nexport var ucs2 = {\n decode: ucs2decode,\n encode: ucs2encode\n};\nexport default {\n version: version,\n ucs2: ucs2,\n toASCII: toASCII,\n toUnicode: toUnicode,\n encode: encode,\n decode: decode\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\nimport process from 'process';\nvar formatRegExp = /%[sdj%]/g;\nexport function format(f) {\n if (!isString(f)) {\n var objects = [];\n for (var i = 0; i < arguments.length; i++) {\n objects.push(inspect(arguments[i]));\n }\n return objects.join(' ');\n }\n\n var i = 1;\n var args = arguments;\n var len = args.length;\n var str = String(f).replace(formatRegExp, function(x) {\n if (x === '%%') return '%';\n if (i >= len) return x;\n switch (x) {\n case '%s': return String(args[i++]);\n case '%d': return Number(args[i++]);\n case '%j':\n try {\n return JSON.stringify(args[i++]);\n } catch (_) {\n return '[Circular]';\n }\n default:\n return x;\n }\n });\n for (var x = args[i]; i < len; x = args[++i]) {\n if (isNull(x) || !isObject(x)) {\n str += ' ' + x;\n } else {\n str += ' ' + inspect(x);\n }\n }\n return str;\n};\n\n\n// Mark that a method should not be used.\n// Returns a modified function which warns once by default.\n// If --no-deprecation is set, then it is a no-op.\nexport function deprecate(fn, msg) {\n // Allow for deprecating things in the process of starting up.\n if (isUndefined(global.process)) {\n return function() {\n return deprecate(fn, msg).apply(this, arguments);\n };\n }\n\n if (process.noDeprecation === true) {\n return fn;\n }\n\n var warned = false;\n function deprecated() {\n if (!warned) {\n if (process.throwDeprecation) {\n throw new Error(msg);\n } else if (process.traceDeprecation) {\n console.trace(msg);\n } else {\n console.error(msg);\n }\n warned = true;\n }\n return fn.apply(this, arguments);\n }\n\n return deprecated;\n};\n\n\nvar debugs = {};\nvar debugEnviron;\nexport function debuglog(set) {\n if (isUndefined(debugEnviron))\n debugEnviron = process.env.NODE_DEBUG || '';\n set = set.toUpperCase();\n if (!debugs[set]) {\n if (new RegExp('\\\\b' + set + '\\\\b', 'i').test(debugEnviron)) {\n var pid = 0;\n debugs[set] = function() {\n var msg = format.apply(null, arguments);\n console.error('%s %d: %s', set, pid, msg);\n };\n } else {\n debugs[set] = function() {};\n }\n }\n return debugs[set];\n};\n\n\n/**\n * Echos the value of a value. Trys to print the value out\n * in the best way possible given the different types.\n *\n * @param {Object} obj The object to print out.\n * @param {Object} opts Optional options object that alters the output.\n */\n/* legacy: obj, showHidden, depth, colors*/\nexport function inspect(obj, opts) {\n // default options\n var ctx = {\n seen: [],\n stylize: stylizeNoColor\n };\n // legacy...\n if (arguments.length >= 3) ctx.depth = arguments[2];\n if (arguments.length >= 4) ctx.colors = arguments[3];\n if (isBoolean(opts)) {\n // legacy...\n ctx.showHidden = opts;\n } else if (opts) {\n // got an \"options\" object\n _extend(ctx, opts);\n }\n // set default options\n if (isUndefined(ctx.showHidden)) ctx.showHidden = false;\n if (isUndefined(ctx.depth)) ctx.depth = 2;\n if (isUndefined(ctx.colors)) ctx.colors = false;\n if (isUndefined(ctx.customInspect)) ctx.customInspect = true;\n if (ctx.colors) ctx.stylize = stylizeWithColor;\n return formatValue(ctx, obj, ctx.depth);\n}\n\n// http://en.wikipedia.org/wiki/ANSI_escape_code#graphics\ninspect.colors = {\n 'bold' : [1, 22],\n 'italic' : [3, 23],\n 'underline' : [4, 24],\n 'inverse' : [7, 27],\n 'white' : [37, 39],\n 'grey' : [90, 39],\n 'black' : [30, 39],\n 'blue' : [34, 39],\n 'cyan' : [36, 39],\n 'green' : [32, 39],\n 'magenta' : [35, 39],\n 'red' : [31, 39],\n 'yellow' : [33, 39]\n};\n\n// Don't use 'blue' not visible on cmd.exe\ninspect.styles = {\n 'special': 'cyan',\n 'number': 'yellow',\n 'boolean': 'yellow',\n 'undefined': 'grey',\n 'null': 'bold',\n 'string': 'green',\n 'date': 'magenta',\n // \"name\": intentionally not styling\n 'regexp': 'red'\n};\n\n\nfunction stylizeWithColor(str, styleType) {\n var style = inspect.styles[styleType];\n\n if (style) {\n return '\\u001b[' + inspect.colors[style][0] + 'm' + str +\n '\\u001b[' + inspect.colors[style][1] + 'm';\n } else {\n return str;\n }\n}\n\n\nfunction stylizeNoColor(str, styleType) {\n return str;\n}\n\n\nfunction arrayToHash(array) {\n var hash = {};\n\n array.forEach(function(val, idx) {\n hash[val] = true;\n });\n\n return hash;\n}\n\n\nfunction formatValue(ctx, value, recurseTimes) {\n // Provide a hook for user-specified inspect functions.\n // Check that value is an object with an inspect function on it\n if (ctx.customInspect &&\n value &&\n isFunction(value.inspect) &&\n // Filter out the util module, it's inspect function is special\n value.inspect !== inspect &&\n // Also filter out any prototype objects using the circular check.\n !(value.constructor && value.constructor.prototype === value)) {\n var ret = value.inspect(recurseTimes, ctx);\n if (!isString(ret)) {\n ret = formatValue(ctx, ret, recurseTimes);\n }\n return ret;\n }\n\n // Primitive types cannot have properties\n var primitive = formatPrimitive(ctx, value);\n if (primitive) {\n return primitive;\n }\n\n // Look up the keys of the object.\n var keys = Object.keys(value);\n var visibleKeys = arrayToHash(keys);\n\n if (ctx.showHidden) {\n keys = Object.getOwnPropertyNames(value);\n }\n\n // IE doesn't make error fields non-enumerable\n // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx\n if (isError(value)\n && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) {\n return formatError(value);\n }\n\n // Some type of object without properties can be shortcutted.\n if (keys.length === 0) {\n if (isFunction(value)) {\n var name = value.name ? ': ' + value.name : '';\n return ctx.stylize('[Function' + name + ']', 'special');\n }\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n }\n if (isDate(value)) {\n return ctx.stylize(Date.prototype.toString.call(value), 'date');\n }\n if (isError(value)) {\n return formatError(value);\n }\n }\n\n var base = '', array = false, braces = ['{', '}'];\n\n // Make Array say that they are Array\n if (isArray(value)) {\n array = true;\n braces = ['[', ']'];\n }\n\n // Make functions say that they are functions\n if (isFunction(value)) {\n var n = value.name ? ': ' + value.name : '';\n base = ' [Function' + n + ']';\n }\n\n // Make RegExps say that they are RegExps\n if (isRegExp(value)) {\n base = ' ' + RegExp.prototype.toString.call(value);\n }\n\n // Make dates with properties first say the date\n if (isDate(value)) {\n base = ' ' + Date.prototype.toUTCString.call(value);\n }\n\n // Make error with message first say the error\n if (isError(value)) {\n base = ' ' + formatError(value);\n }\n\n if (keys.length === 0 && (!array || value.length == 0)) {\n return braces[0] + base + braces[1];\n }\n\n if (recurseTimes < 0) {\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n } else {\n return ctx.stylize('[Object]', 'special');\n }\n }\n\n ctx.seen.push(value);\n\n var output;\n if (array) {\n output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);\n } else {\n output = keys.map(function(key) {\n return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array);\n });\n }\n\n ctx.seen.pop();\n\n return reduceToSingleString(output, base, braces);\n}\n\n\nfunction formatPrimitive(ctx, value) {\n if (isUndefined(value))\n return ctx.stylize('undefined', 'undefined');\n if (isString(value)) {\n var simple = '\\'' + JSON.stringify(value).replace(/^\"|\"$/g, '')\n .replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"') + '\\'';\n return ctx.stylize(simple, 'string');\n }\n if (isNumber(value))\n return ctx.stylize('' + value, 'number');\n if (isBoolean(value))\n return ctx.stylize('' + value, 'boolean');\n // For some reason typeof null is \"object\", so special case here.\n if (isNull(value))\n return ctx.stylize('null', 'null');\n}\n\n\nfunction formatError(value) {\n return '[' + Error.prototype.toString.call(value) + ']';\n}\n\n\nfunction formatArray(ctx, value, recurseTimes, visibleKeys, keys) {\n var output = [];\n for (var i = 0, l = value.length; i < l; ++i) {\n if (hasOwnProperty(value, String(i))) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n String(i), true));\n } else {\n output.push('');\n }\n }\n keys.forEach(function(key) {\n if (!key.match(/^\\d+$/)) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n key, true));\n }\n });\n return output;\n}\n\n\nfunction formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {\n var name, str, desc;\n desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] };\n if (desc.get) {\n if (desc.set) {\n str = ctx.stylize('[Getter/Setter]', 'special');\n } else {\n str = ctx.stylize('[Getter]', 'special');\n }\n } else {\n if (desc.set) {\n str = ctx.stylize('[Setter]', 'special');\n }\n }\n if (!hasOwnProperty(visibleKeys, key)) {\n name = '[' + key + ']';\n }\n if (!str) {\n if (ctx.seen.indexOf(desc.value) < 0) {\n if (isNull(recurseTimes)) {\n str = formatValue(ctx, desc.value, null);\n } else {\n str = formatValue(ctx, desc.value, recurseTimes - 1);\n }\n if (str.indexOf('\\n') > -1) {\n if (array) {\n str = str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n').substr(2);\n } else {\n str = '\\n' + str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n');\n }\n }\n } else {\n str = ctx.stylize('[Circular]', 'special');\n }\n }\n if (isUndefined(name)) {\n if (array && key.match(/^\\d+$/)) {\n return str;\n }\n name = JSON.stringify('' + key);\n if (name.match(/^\"([a-zA-Z_][a-zA-Z_0-9]*)\"$/)) {\n name = name.substr(1, name.length - 2);\n name = ctx.stylize(name, 'name');\n } else {\n name = name.replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"')\n .replace(/(^\"|\"$)/g, \"'\");\n name = ctx.stylize(name, 'string');\n }\n }\n\n return name + ': ' + str;\n}\n\n\nfunction reduceToSingleString(output, base, braces) {\n var numLinesEst = 0;\n var length = output.reduce(function(prev, cur) {\n numLinesEst++;\n if (cur.indexOf('\\n') >= 0) numLinesEst++;\n return prev + cur.replace(/\\u001b\\[\\d\\d?m/g, '').length + 1;\n }, 0);\n\n if (length > 60) {\n return braces[0] +\n (base === '' ? '' : base + '\\n ') +\n ' ' +\n output.join(',\\n ') +\n ' ' +\n braces[1];\n }\n\n return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];\n}\n\n\n// NOTE: These type checking functions intentionally don't use `instanceof`\n// because it is fragile and can be easily faked with `Object.create()`.\nexport function isArray(ar) {\n return Array.isArray(ar);\n}\n\nexport function isBoolean(arg) {\n return typeof arg === 'boolean';\n}\n\nexport function isNull(arg) {\n return arg === null;\n}\n\nexport function isNullOrUndefined(arg) {\n return arg == null;\n}\n\nexport function isNumber(arg) {\n return typeof arg === 'number';\n}\n\nexport function isString(arg) {\n return typeof arg === 'string';\n}\n\nexport function isSymbol(arg) {\n return typeof arg === 'symbol';\n}\n\nexport function isUndefined(arg) {\n return arg === void 0;\n}\n\nexport function isRegExp(re) {\n return isObject(re) && objectToString(re) === '[object RegExp]';\n}\n\nexport function isObject(arg) {\n return typeof arg === 'object' && arg !== null;\n}\n\nexport function isDate(d) {\n return isObject(d) && objectToString(d) === '[object Date]';\n}\n\nexport function isError(e) {\n return isObject(e) &&\n (objectToString(e) === '[object Error]' || e instanceof Error);\n}\n\nexport function isFunction(arg) {\n return typeof arg === 'function';\n}\n\nexport function isPrimitive(arg) {\n return arg === null ||\n typeof arg === 'boolean' ||\n typeof arg === 'number' ||\n typeof arg === 'string' ||\n typeof arg === 'symbol' || // ES6 symbol\n typeof arg === 'undefined';\n}\n\nexport function isBuffer(maybeBuf) {\n return Buffer.isBuffer(maybeBuf);\n}\n\nfunction objectToString(o) {\n return Object.prototype.toString.call(o);\n}\n\n\nfunction pad(n) {\n return n < 10 ? '0' + n.toString(10) : n.toString(10);\n}\n\n\nvar months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep',\n 'Oct', 'Nov', 'Dec'];\n\n// 26 Feb 16:19:34\nfunction timestamp() {\n var d = new Date();\n var time = [pad(d.getHours()),\n pad(d.getMinutes()),\n pad(d.getSeconds())].join(':');\n return [d.getDate(), months[d.getMonth()], time].join(' ');\n}\n\n\n// log is just a thin wrapper to console.log that prepends a timestamp\nexport function log() {\n console.log('%s - %s', timestamp(), format.apply(null, arguments));\n}\n\n\n/**\n * Inherit the prototype methods from one constructor into another.\n *\n * The Function.prototype.inherits from lang.js rewritten as a standalone\n * function (not on Function.prototype). NOTE: If this file is to be loaded\n * during bootstrapping this function needs to be rewritten using some native\n * functions as prototype setup using normal JavaScript does not work as\n * expected during bootstrapping (see mirror.js in r114903).\n *\n * @param {function} ctor Constructor function which needs to inherit the\n * prototype.\n * @param {function} superCtor Constructor function to inherit prototype from.\n */\nimport inherits from './inherits';\nexport {inherits}\n\nexport function _extend(origin, add) {\n // Don't do anything if add isn't an object\n if (!add || !isObject(add)) return origin;\n\n var keys = Object.keys(add);\n var i = keys.length;\n while (i--) {\n origin[keys[i]] = add[keys[i]];\n }\n return origin;\n};\n\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\n\nexport default {\n inherits: inherits,\n _extend: _extend,\n log: log,\n isBuffer: isBuffer,\n isPrimitive: isPrimitive,\n isFunction: isFunction,\n isError: isError,\n isDate: isDate,\n isObject: isObject,\n isRegExp: isRegExp,\n isUndefined: isUndefined,\n isSymbol: isSymbol,\n isString: isString,\n isNumber: isNumber,\n isNullOrUndefined: isNullOrUndefined,\n isNull: isNull,\n isBoolean: isBoolean,\n isArray: isArray,\n inspect: inspect,\n deprecate: deprecate,\n format: format,\n debuglog: debuglog\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n// If obj.hasOwnProperty has been overridden, then calling\n// obj.hasOwnProperty(prop) will break.\n// See: https://github.com/joyent/node/issues/1707\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\nvar isArray = Array.isArray || function (xs) {\n return Object.prototype.toString.call(xs) === '[object Array]';\n};\nfunction stringifyPrimitive(v) {\n switch (typeof v) {\n case 'string':\n return v;\n\n case 'boolean':\n return v ? 'true' : 'false';\n\n case 'number':\n return isFinite(v) ? v : '';\n\n default:\n return '';\n }\n}\n\nexport function stringify (obj, sep, eq, name) {\n sep = sep || '&';\n eq = eq || '=';\n if (obj === null) {\n obj = undefined;\n }\n\n if (typeof obj === 'object') {\n return map(objectKeys(obj), function(k) {\n var ks = encodeURIComponent(stringifyPrimitive(k)) + eq;\n if (isArray(obj[k])) {\n return map(obj[k], function(v) {\n return ks + encodeURIComponent(stringifyPrimitive(v));\n }).join(sep);\n } else {\n return ks + encodeURIComponent(stringifyPrimitive(obj[k]));\n }\n }).join(sep);\n\n }\n\n if (!name) return '';\n return encodeURIComponent(stringifyPrimitive(name)) + eq +\n encodeURIComponent(stringifyPrimitive(obj));\n};\n\nfunction map (xs, f) {\n if (xs.map) return xs.map(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n res.push(f(xs[i], i));\n }\n return res;\n}\n\nvar objectKeys = Object.keys || function (obj) {\n var res = [];\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key);\n }\n return res;\n};\n\nexport function parse(qs, sep, eq, options) {\n sep = sep || '&';\n eq = eq || '=';\n var obj = {};\n\n if (typeof qs !== 'string' || qs.length === 0) {\n return obj;\n }\n\n var regexp = /\\+/g;\n qs = qs.split(sep);\n\n var maxKeys = 1000;\n if (options && typeof options.maxKeys === 'number') {\n maxKeys = options.maxKeys;\n }\n\n var len = qs.length;\n // maxKeys <= 0 means that we should not limit keys count\n if (maxKeys > 0 && len > maxKeys) {\n len = maxKeys;\n }\n\n for (var i = 0; i < len; ++i) {\n var x = qs[i].replace(regexp, '%20'),\n idx = x.indexOf(eq),\n kstr, vstr, k, v;\n\n if (idx >= 0) {\n kstr = x.substr(0, idx);\n vstr = x.substr(idx + 1);\n } else {\n kstr = x;\n vstr = '';\n }\n\n k = decodeURIComponent(kstr);\n v = decodeURIComponent(vstr);\n\n if (!hasOwnProperty(obj, k)) {\n obj[k] = v;\n } else if (isArray(obj[k])) {\n obj[k].push(v);\n } else {\n obj[k] = [obj[k], v];\n }\n }\n\n return obj;\n};\nexport default {\n encode: stringify,\n stringify: stringify,\n decode: parse,\n parse: parse\n}\nexport {stringify as encode, parse as decode};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nimport {toASCII} from 'punycode';\nimport {isObject,isString,isNullOrUndefined,isNull} from 'util';\nimport {parse as qsParse,stringify as qsStringify} from 'querystring';\nexport {\n urlParse as parse,\n urlResolve as resolve,\n urlResolveObject as resolveObject,\n urlFormat as format\n};\nexport default {\n parse: urlParse,\n resolve: urlResolve,\n resolveObject: urlResolveObject,\n format: urlFormat,\n Url: Url\n}\nexport function Url() {\n this.protocol = null;\n this.slashes = null;\n this.auth = null;\n this.host = null;\n this.port = null;\n this.hostname = null;\n this.hash = null;\n this.search = null;\n this.query = null;\n this.pathname = null;\n this.path = null;\n this.href = null;\n}\n\n// Reference: RFC 3986, RFC 1808, RFC 2396\n\n// define these here so at least they only have to be\n// compiled once on the first module load.\nvar protocolPattern = /^([a-z0-9.+-]+:)/i,\n portPattern = /:[0-9]*$/,\n\n // Special case for a simple path URL\n simplePathPattern = /^(\\/\\/?(?!\\/)[^\\?\\s]*)(\\?[^\\s]*)?$/,\n\n // RFC 2396: characters reserved for delimiting URLs.\n // We actually just auto-escape these.\n delims = ['<', '>', '\"', '`', ' ', '\\r', '\\n', '\\t'],\n\n // RFC 2396: characters not allowed for various reasons.\n unwise = ['{', '}', '|', '\\\\', '^', '`'].concat(delims),\n\n // Allowed by RFCs, but cause of XSS attacks. Always escape these.\n autoEscape = ['\\''].concat(unwise),\n // Characters that are never ever allowed in a hostname.\n // Note that any invalid chars are also handled, but these\n // are the ones that are *expected* to be seen, so we fast-path\n // them.\n nonHostChars = ['%', '/', '?', ';', '#'].concat(autoEscape),\n hostEndingChars = ['/', '?', '#'],\n hostnameMaxLen = 255,\n hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/,\n hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/,\n // protocols that can allow \"unsafe\" and \"unwise\" chars.\n unsafeProtocol = {\n 'javascript': true,\n 'javascript:': true\n },\n // protocols that never have a hostname.\n hostlessProtocol = {\n 'javascript': true,\n 'javascript:': true\n },\n // protocols that always contain a // bit.\n slashedProtocol = {\n 'http': true,\n 'https': true,\n 'ftp': true,\n 'gopher': true,\n 'file': true,\n 'http:': true,\n 'https:': true,\n 'ftp:': true,\n 'gopher:': true,\n 'file:': true\n };\n\nfunction urlParse(url, parseQueryString, slashesDenoteHost) {\n if (url && isObject(url) && url instanceof Url) return url;\n\n var u = new Url;\n u.parse(url, parseQueryString, slashesDenoteHost);\n return u;\n}\nUrl.prototype.parse = function(url, parseQueryString, slashesDenoteHost) {\n return parse(this, url, parseQueryString, slashesDenoteHost);\n}\n\nfunction parse(self, url, parseQueryString, slashesDenoteHost) {\n if (!isString(url)) {\n throw new TypeError('Parameter \\'url\\' must be a string, not ' + typeof url);\n }\n\n // Copy chrome, IE, opera backslash-handling behavior.\n // Back slashes before the query string get converted to forward slashes\n // See: https://code.google.com/p/chromium/issues/detail?id=25916\n var queryIndex = url.indexOf('?'),\n splitter =\n (queryIndex !== -1 && queryIndex < url.indexOf('#')) ? '?' : '#',\n uSplit = url.split(splitter),\n slashRegex = /\\\\/g;\n uSplit[0] = uSplit[0].replace(slashRegex, '/');\n url = uSplit.join(splitter);\n\n var rest = url;\n\n // trim before proceeding.\n // This is to support parse stuff like \" http://foo.com \\n\"\n rest = rest.trim();\n\n if (!slashesDenoteHost && url.split('#').length === 1) {\n // Try fast path regexp\n var simplePath = simplePathPattern.exec(rest);\n if (simplePath) {\n self.path = rest;\n self.href = rest;\n self.pathname = simplePath[1];\n if (simplePath[2]) {\n self.search = simplePath[2];\n if (parseQueryString) {\n self.query = qsParse(self.search.substr(1));\n } else {\n self.query = self.search.substr(1);\n }\n } else if (parseQueryString) {\n self.search = '';\n self.query = {};\n }\n return self;\n }\n }\n\n var proto = protocolPattern.exec(rest);\n if (proto) {\n proto = proto[0];\n var lowerProto = proto.toLowerCase();\n self.protocol = lowerProto;\n rest = rest.substr(proto.length);\n }\n\n // figure out if it's got a host\n // user@server is *always* interpreted as a hostname, and url\n // resolution will treat //foo/bar as host=foo,path=bar because that's\n // how the browser resolves relative URLs.\n if (slashesDenoteHost || proto || rest.match(/^\\/\\/[^@\\/]+@[^@\\/]+/)) {\n var slashes = rest.substr(0, 2) === '//';\n if (slashes && !(proto && hostlessProtocol[proto])) {\n rest = rest.substr(2);\n self.slashes = true;\n }\n }\n var i, hec, l, p;\n if (!hostlessProtocol[proto] &&\n (slashes || (proto && !slashedProtocol[proto]))) {\n\n // there's a hostname.\n // the first instance of /, ?, ;, or # ends the host.\n //\n // If there is an @ in the hostname, then non-host chars *are* allowed\n // to the left of the last @ sign, unless some host-ending character\n // comes *before* the @-sign.\n // URLs are obnoxious.\n //\n // ex:\n // http://a@b@c/ => user:a@b host:c\n // http://a@b?@c => user:a host:c path:/?@c\n\n // v0.12 TODO(isaacs): This is not quite how Chrome does things.\n // Review our test case against browsers more comprehensively.\n\n // find the first instance of any hostEndingChars\n var hostEnd = -1;\n for (i = 0; i < hostEndingChars.length; i++) {\n hec = rest.indexOf(hostEndingChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd))\n hostEnd = hec;\n }\n\n // at this point, either we have an explicit point where the\n // auth portion cannot go past, or the last @ char is the decider.\n var auth, atSign;\n if (hostEnd === -1) {\n // atSign can be anywhere.\n atSign = rest.lastIndexOf('@');\n } else {\n // atSign must be in auth portion.\n // http://a@b/c@d => host:b auth:a path:/c@d\n atSign = rest.lastIndexOf('@', hostEnd);\n }\n\n // Now we have a portion which is definitely the auth.\n // Pull that off.\n if (atSign !== -1) {\n auth = rest.slice(0, atSign);\n rest = rest.slice(atSign + 1);\n self.auth = decodeURIComponent(auth);\n }\n\n // the host is the remaining to the left of the first non-host char\n hostEnd = -1;\n for (i = 0; i < nonHostChars.length; i++) {\n hec = rest.indexOf(nonHostChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd))\n hostEnd = hec;\n }\n // if we still have not hit it, then the entire thing is a host.\n if (hostEnd === -1)\n hostEnd = rest.length;\n\n self.host = rest.slice(0, hostEnd);\n rest = rest.slice(hostEnd);\n\n // pull out port.\n parseHost(self);\n\n // we've indicated that there is a hostname,\n // so even if it's empty, it has to be present.\n self.hostname = self.hostname || '';\n\n // if hostname begins with [ and ends with ]\n // assume that it's an IPv6 address.\n var ipv6Hostname = self.hostname[0] === '[' &&\n self.hostname[self.hostname.length - 1] === ']';\n\n // validate a little.\n if (!ipv6Hostname) {\n var hostparts = self.hostname.split(/\\./);\n for (i = 0, l = hostparts.length; i < l; i++) {\n var part = hostparts[i];\n if (!part) continue;\n if (!part.match(hostnamePartPattern)) {\n var newpart = '';\n for (var j = 0, k = part.length; j < k; j++) {\n if (part.charCodeAt(j) > 127) {\n // we replace non-ASCII char with a temporary placeholder\n // we need this to make sure size of hostname is not\n // broken by replacing non-ASCII by nothing\n newpart += 'x';\n } else {\n newpart += part[j];\n }\n }\n // we test again with ASCII char only\n if (!newpart.match(hostnamePartPattern)) {\n var validParts = hostparts.slice(0, i);\n var notHost = hostparts.slice(i + 1);\n var bit = part.match(hostnamePartStart);\n if (bit) {\n validParts.push(bit[1]);\n notHost.unshift(bit[2]);\n }\n if (notHost.length) {\n rest = '/' + notHost.join('.') + rest;\n }\n self.hostname = validParts.join('.');\n break;\n }\n }\n }\n }\n\n if (self.hostname.length > hostnameMaxLen) {\n self.hostname = '';\n } else {\n // hostnames are always lower case.\n self.hostname = self.hostname.toLowerCase();\n }\n\n if (!ipv6Hostname) {\n // IDNA Support: Returns a punycoded representation of \"domain\".\n // It only converts parts of the domain name that\n // have non-ASCII characters, i.e. it doesn't matter if\n // you call it with a domain that already is ASCII-only.\n self.hostname = toASCII(self.hostname);\n }\n\n p = self.port ? ':' + self.port : '';\n var h = self.hostname || '';\n self.host = h + p;\n self.href += self.host;\n\n // strip [ and ] from the hostname\n // the host field still retains them, though\n if (ipv6Hostname) {\n self.hostname = self.hostname.substr(1, self.hostname.length - 2);\n if (rest[0] !== '/') {\n rest = '/' + rest;\n }\n }\n }\n\n // now rest is set to the post-host stuff.\n // chop off any delim chars.\n if (!unsafeProtocol[lowerProto]) {\n\n // First, make 100% sure that any \"autoEscape\" chars get\n // escaped, even if encodeURIComponent doesn't think they\n // need to be.\n for (i = 0, l = autoEscape.length; i < l; i++) {\n var ae = autoEscape[i];\n if (rest.indexOf(ae) === -1)\n continue;\n var esc = encodeURIComponent(ae);\n if (esc === ae) {\n esc = escape(ae);\n }\n rest = rest.split(ae).join(esc);\n }\n }\n\n\n // chop off from the tail first.\n var hash = rest.indexOf('#');\n if (hash !== -1) {\n // got a fragment string.\n self.hash = rest.substr(hash);\n rest = rest.slice(0, hash);\n }\n var qm = rest.indexOf('?');\n if (qm !== -1) {\n self.search = rest.substr(qm);\n self.query = rest.substr(qm + 1);\n if (parseQueryString) {\n self.query = qsParse(self.query);\n }\n rest = rest.slice(0, qm);\n } else if (parseQueryString) {\n // no query string, but parseQueryString still requested\n self.search = '';\n self.query = {};\n }\n if (rest) self.pathname = rest;\n if (slashedProtocol[lowerProto] &&\n self.hostname && !self.pathname) {\n self.pathname = '/';\n }\n\n //to support http.request\n if (self.pathname || self.search) {\n p = self.pathname || '';\n var s = self.search || '';\n self.path = p + s;\n }\n\n // finally, reconstruct the href based on what has been validated.\n self.href = format(self);\n return self;\n}\n\n// format a parsed object into a url string\nfunction urlFormat(obj) {\n // ensure it's an object, and not a string url.\n // If it's an obj, this is a no-op.\n // this way, you can call url_format() on strings\n // to clean up potentially wonky urls.\n if (isString(obj)) obj = parse({}, obj);\n return format(obj);\n}\n\nfunction format(self) {\n var auth = self.auth || '';\n if (auth) {\n auth = encodeURIComponent(auth);\n auth = auth.replace(/%3A/i, ':');\n auth += '@';\n }\n\n var protocol = self.protocol || '',\n pathname = self.pathname || '',\n hash = self.hash || '',\n host = false,\n query = '';\n\n if (self.host) {\n host = auth + self.host;\n } else if (self.hostname) {\n host = auth + (self.hostname.indexOf(':') === -1 ?\n self.hostname :\n '[' + this.hostname + ']');\n if (self.port) {\n host += ':' + self.port;\n }\n }\n\n if (self.query &&\n isObject(self.query) &&\n Object.keys(self.query).length) {\n query = qsStringify(self.query);\n }\n\n var search = self.search || (query && ('?' + query)) || '';\n\n if (protocol && protocol.substr(-1) !== ':') protocol += ':';\n\n // only the slashedProtocols get the //. Not mailto:, xmpp:, etc.\n // unless they had them to begin with.\n if (self.slashes ||\n (!protocol || slashedProtocol[protocol]) && host !== false) {\n host = '//' + (host || '');\n if (pathname && pathname.charAt(0) !== '/') pathname = '/' + pathname;\n } else if (!host) {\n host = '';\n }\n\n if (hash && hash.charAt(0) !== '#') hash = '#' + hash;\n if (search && search.charAt(0) !== '?') search = '?' + search;\n\n pathname = pathname.replace(/[?#]/g, function(match) {\n return encodeURIComponent(match);\n });\n search = search.replace('#', '%23');\n\n return protocol + host + pathname + search + hash;\n}\n\nUrl.prototype.format = function() {\n return format(this);\n}\n\nfunction urlResolve(source, relative) {\n return urlParse(source, false, true).resolve(relative);\n}\n\nUrl.prototype.resolve = function(relative) {\n return this.resolveObject(urlParse(relative, false, true)).format();\n};\n\nfunction urlResolveObject(source, relative) {\n if (!source) return relative;\n return urlParse(source, false, true).resolveObject(relative);\n}\n\nUrl.prototype.resolveObject = function(relative) {\n if (isString(relative)) {\n var rel = new Url();\n rel.parse(relative, false, true);\n relative = rel;\n }\n\n var result = new Url();\n var tkeys = Object.keys(this);\n for (var tk = 0; tk < tkeys.length; tk++) {\n var tkey = tkeys[tk];\n result[tkey] = this[tkey];\n }\n\n // hash is always overridden, no matter what.\n // even href=\"\" will remove it.\n result.hash = relative.hash;\n\n // if the relative url is empty, then there's nothing left to do here.\n if (relative.href === '') {\n result.href = result.format();\n return result;\n }\n\n // hrefs like //foo/bar always cut to the protocol.\n if (relative.slashes && !relative.protocol) {\n // take everything except the protocol from relative\n var rkeys = Object.keys(relative);\n for (var rk = 0; rk < rkeys.length; rk++) {\n var rkey = rkeys[rk];\n if (rkey !== 'protocol')\n result[rkey] = relative[rkey];\n }\n\n //urlParse appends trailing / to urls like http://www.example.com\n if (slashedProtocol[result.protocol] &&\n result.hostname && !result.pathname) {\n result.path = result.pathname = '/';\n }\n\n result.href = result.format();\n return result;\n }\n var relPath;\n if (relative.protocol && relative.protocol !== result.protocol) {\n // if it's a known url protocol, then changing\n // the protocol does weird things\n // first, if it's not file:, then we MUST have a host,\n // and if there was a path\n // to begin with, then we MUST have a path.\n // if it is file:, then the host is dropped,\n // because that's known to be hostless.\n // anything else is assumed to be absolute.\n if (!slashedProtocol[relative.protocol]) {\n var keys = Object.keys(relative);\n for (var v = 0; v < keys.length; v++) {\n var k = keys[v];\n result[k] = relative[k];\n }\n result.href = result.format();\n return result;\n }\n\n result.protocol = relative.protocol;\n if (!relative.host && !hostlessProtocol[relative.protocol]) {\n relPath = (relative.pathname || '').split('/');\n while (relPath.length && !(relative.host = relPath.shift()));\n if (!relative.host) relative.host = '';\n if (!relative.hostname) relative.hostname = '';\n if (relPath[0] !== '') relPath.unshift('');\n if (relPath.length < 2) relPath.unshift('');\n result.pathname = relPath.join('/');\n } else {\n result.pathname = relative.pathname;\n }\n result.search = relative.search;\n result.query = relative.query;\n result.host = relative.host || '';\n result.auth = relative.auth;\n result.hostname = relative.hostname || relative.host;\n result.port = relative.port;\n // to support http.request\n if (result.pathname || result.search) {\n var p = result.pathname || '';\n var s = result.search || '';\n result.path = p + s;\n }\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n }\n\n var isSourceAbs = (result.pathname && result.pathname.charAt(0) === '/'),\n isRelAbs = (\n relative.host ||\n relative.pathname && relative.pathname.charAt(0) === '/'\n ),\n mustEndAbs = (isRelAbs || isSourceAbs ||\n (result.host && relative.pathname)),\n removeAllDots = mustEndAbs,\n srcPath = result.pathname && result.pathname.split('/') || [],\n psychotic = result.protocol && !slashedProtocol[result.protocol];\n relPath = relative.pathname && relative.pathname.split('/') || [];\n // if the url is a non-slashed url, then relative\n // links like ../.. should be able\n // to crawl up to the hostname, as well. This is strange.\n // result.protocol has already been set by now.\n // Later on, put the first path part into the host field.\n if (psychotic) {\n result.hostname = '';\n result.port = null;\n if (result.host) {\n if (srcPath[0] === '') srcPath[0] = result.host;\n else srcPath.unshift(result.host);\n }\n result.host = '';\n if (relative.protocol) {\n relative.hostname = null;\n relative.port = null;\n if (relative.host) {\n if (relPath[0] === '') relPath[0] = relative.host;\n else relPath.unshift(relative.host);\n }\n relative.host = null;\n }\n mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === '');\n }\n var authInHost;\n if (isRelAbs) {\n // it's absolute.\n result.host = (relative.host || relative.host === '') ?\n relative.host : result.host;\n result.hostname = (relative.hostname || relative.hostname === '') ?\n relative.hostname : result.hostname;\n result.search = relative.search;\n result.query = relative.query;\n srcPath = relPath;\n // fall through to the dot-handling below.\n } else if (relPath.length) {\n // it's relative\n // throw away the existing file, and take the new path instead.\n if (!srcPath) srcPath = [];\n srcPath.pop();\n srcPath = srcPath.concat(relPath);\n result.search = relative.search;\n result.query = relative.query;\n } else if (!isNullOrUndefined(relative.search)) {\n // just pull out the search.\n // like href='?foo'.\n // Put this after the other two cases because it simplifies the booleans\n if (psychotic) {\n result.hostname = result.host = srcPath.shift();\n //occationaly the auth can get stuck only in host\n //this especially happens in cases like\n //url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n authInHost = result.host && result.host.indexOf('@') > 0 ?\n result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.host = result.hostname = authInHost.shift();\n }\n }\n result.search = relative.search;\n result.query = relative.query;\n //to support http.request\n if (!isNull(result.pathname) || !isNull(result.search)) {\n result.path = (result.pathname ? result.pathname : '') +\n (result.search ? result.search : '');\n }\n result.href = result.format();\n return result;\n }\n\n if (!srcPath.length) {\n // no path at all. easy.\n // we've already handled the other stuff above.\n result.pathname = null;\n //to support http.request\n if (result.search) {\n result.path = '/' + result.search;\n } else {\n result.path = null;\n }\n result.href = result.format();\n return result;\n }\n\n // if a url ENDs in . or .., then it must get a trailing slash.\n // however, if it ends in anything else non-slashy,\n // then it must NOT get a trailing slash.\n var last = srcPath.slice(-1)[0];\n var hasTrailingSlash = (\n (result.host || relative.host || srcPath.length > 1) &&\n (last === '.' || last === '..') || last === '');\n\n // strip single dots, resolve double dots to parent dir\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = srcPath.length; i >= 0; i--) {\n last = srcPath[i];\n if (last === '.') {\n srcPath.splice(i, 1);\n } else if (last === '..') {\n srcPath.splice(i, 1);\n up++;\n } else if (up) {\n srcPath.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (!mustEndAbs && !removeAllDots) {\n for (; up--; up) {\n srcPath.unshift('..');\n }\n }\n\n if (mustEndAbs && srcPath[0] !== '' &&\n (!srcPath[0] || srcPath[0].charAt(0) !== '/')) {\n srcPath.unshift('');\n }\n\n if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) {\n srcPath.push('');\n }\n\n var isAbsolute = srcPath[0] === '' ||\n (srcPath[0] && srcPath[0].charAt(0) === '/');\n\n // put the host back\n if (psychotic) {\n result.hostname = result.host = isAbsolute ? '' :\n srcPath.length ? srcPath.shift() : '';\n //occationaly the auth can get stuck only in host\n //this especially happens in cases like\n //url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n authInHost = result.host && result.host.indexOf('@') > 0 ?\n result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.host = result.hostname = authInHost.shift();\n }\n }\n\n mustEndAbs = mustEndAbs || (result.host && srcPath.length);\n\n if (mustEndAbs && !isAbsolute) {\n srcPath.unshift('');\n }\n\n if (!srcPath.length) {\n result.pathname = null;\n result.path = null;\n } else {\n result.pathname = srcPath.join('/');\n }\n\n //to support request.http\n if (!isNull(result.pathname) || !isNull(result.search)) {\n result.path = (result.pathname ? result.pathname : '') +\n (result.search ? result.search : '');\n }\n result.auth = relative.auth || result.auth;\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n};\n\nUrl.prototype.parseHost = function() {\n return parseHost(this);\n};\n\nfunction parseHost(self) {\n var host = self.host;\n var port = portPattern.exec(host);\n if (port) {\n port = port[0];\n if (port !== ':') {\n self.port = port.substr(1);\n }\n host = host.substr(0, host.length - port.length);\n }\n if (host) self.hostname = host;\n}\n","/*!\n * @pixi/constants - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/constants is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * Different types of environments for WebGL.\n *\n * @static\n * @memberof PIXI\n * @name ENV\n * @enum {number}\n * @property {number} WEBGL_LEGACY - Used for older v1 WebGL devices. PixiJS will aim to ensure compatibility\n * with older / less advanced devices. If you experience unexplained flickering prefer this environment.\n * @property {number} WEBGL - Version 1 of WebGL\n * @property {number} WEBGL2 - Version 2 of WebGL\n */\nvar ENV = {\n WEBGL_LEGACY: 0,\n WEBGL: 1,\n WEBGL2: 2,\n};\n\n/**\n * Constant to identify the Renderer Type.\n *\n * @static\n * @memberof PIXI\n * @name RENDERER_TYPE\n * @enum {number}\n * @property {number} UNKNOWN - Unknown render type.\n * @property {number} WEBGL - WebGL render type.\n * @property {number} CANVAS - Canvas render type.\n */\nvar RENDERER_TYPE = {\n UNKNOWN: 0,\n WEBGL: 1,\n CANVAS: 2,\n};\n\n/**\n * Various blend modes supported by PIXI.\n *\n * IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes.\n * Anything else will silently act like NORMAL.\n *\n * @memberof PIXI\n * @name BLEND_MODES\n * @enum {number}\n * @property {number} NORMAL\n * @property {number} ADD\n * @property {number} MULTIPLY\n * @property {number} SCREEN\n * @property {number} OVERLAY\n * @property {number} DARKEN\n * @property {number} LIGHTEN\n * @property {number} COLOR_DODGE\n * @property {number} COLOR_BURN\n * @property {number} HARD_LIGHT\n * @property {number} SOFT_LIGHT\n * @property {number} DIFFERENCE\n * @property {number} EXCLUSION\n * @property {number} HUE\n * @property {number} SATURATION\n * @property {number} COLOR\n * @property {number} LUMINOSITY\n * @property {number} NORMAL_NPM\n * @property {number} ADD_NPM\n * @property {number} SCREEN_NPM\n * @property {number} NONE\n * @property {number} SRC_IN\n * @property {number} SRC_OUT\n * @property {number} SRC_ATOP\n * @property {number} DST_OVER\n * @property {number} DST_IN\n * @property {number} DST_OUT\n * @property {number} DST_ATOP\n * @property {number} SUBTRACT\n * @property {number} SRC_OVER\n * @property {number} ERASE\n */\nvar BLEND_MODES = {\n NORMAL: 0,\n ADD: 1,\n MULTIPLY: 2,\n SCREEN: 3,\n OVERLAY: 4,\n DARKEN: 5,\n LIGHTEN: 6,\n COLOR_DODGE: 7,\n COLOR_BURN: 8,\n HARD_LIGHT: 9,\n SOFT_LIGHT: 10,\n DIFFERENCE: 11,\n EXCLUSION: 12,\n HUE: 13,\n SATURATION: 14,\n COLOR: 15,\n LUMINOSITY: 16,\n NORMAL_NPM: 17,\n ADD_NPM: 18,\n SCREEN_NPM: 19,\n NONE: 20,\n\n SRC_OVER: 0,\n SRC_IN: 21,\n SRC_OUT: 22,\n SRC_ATOP: 23,\n DST_OVER: 24,\n DST_IN: 25,\n DST_OUT: 26,\n DST_ATOP: 27,\n ERASE: 26,\n SUBTRACT: 28,\n};\n\n/**\n * Various webgl draw modes. These can be used to specify which GL drawMode to use\n * under certain situations and renderers.\n *\n * @memberof PIXI\n * @static\n * @name DRAW_MODES\n * @enum {number}\n * @property {number} POINTS\n * @property {number} LINES\n * @property {number} LINE_LOOP\n * @property {number} LINE_STRIP\n * @property {number} TRIANGLES\n * @property {number} TRIANGLE_STRIP\n * @property {number} TRIANGLE_FAN\n */\nvar DRAW_MODES = {\n POINTS: 0,\n LINES: 1,\n LINE_LOOP: 2,\n LINE_STRIP: 3,\n TRIANGLES: 4,\n TRIANGLE_STRIP: 5,\n TRIANGLE_FAN: 6,\n};\n\n/**\n * Various GL texture/resources formats.\n *\n * @memberof PIXI\n * @static\n * @name FORMATS\n * @enum {number}\n * @property {number} RGBA=6408\n * @property {number} RGB=6407\n * @property {number} ALPHA=6406\n * @property {number} LUMINANCE=6409\n * @property {number} LUMINANCE_ALPHA=6410\n * @property {number} DEPTH_COMPONENT=6402\n * @property {number} DEPTH_STENCIL=34041\n */\nvar FORMATS = {\n RGBA: 6408,\n RGB: 6407,\n ALPHA: 6406,\n LUMINANCE: 6409,\n LUMINANCE_ALPHA: 6410,\n DEPTH_COMPONENT: 6402,\n DEPTH_STENCIL: 34041,\n};\n\n/**\n * Various GL target types.\n *\n * @memberof PIXI\n * @static\n * @name TARGETS\n * @enum {number}\n * @property {number} TEXTURE_2D=3553\n * @property {number} TEXTURE_CUBE_MAP=34067\n * @property {number} TEXTURE_2D_ARRAY=35866\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_X=34069\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_X=34070\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Y=34071\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Y=34072\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Z=34073\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Z=34074\n */\nvar TARGETS = {\n TEXTURE_2D: 3553,\n TEXTURE_CUBE_MAP: 34067,\n TEXTURE_2D_ARRAY: 35866,\n TEXTURE_CUBE_MAP_POSITIVE_X: 34069,\n TEXTURE_CUBE_MAP_NEGATIVE_X: 34070,\n TEXTURE_CUBE_MAP_POSITIVE_Y: 34071,\n TEXTURE_CUBE_MAP_NEGATIVE_Y: 34072,\n TEXTURE_CUBE_MAP_POSITIVE_Z: 34073,\n TEXTURE_CUBE_MAP_NEGATIVE_Z: 34074,\n};\n\n/**\n * Various GL data format types.\n *\n * @memberof PIXI\n * @static\n * @name TYPES\n * @enum {number}\n * @property {number} UNSIGNED_BYTE=5121\n * @property {number} UNSIGNED_SHORT=5123\n * @property {number} UNSIGNED_SHORT_5_6_5=33635\n * @property {number} UNSIGNED_SHORT_4_4_4_4=32819\n * @property {number} UNSIGNED_SHORT_5_5_5_1=32820\n * @property {number} FLOAT=5126\n * @property {number} HALF_FLOAT=36193\n */\nvar TYPES = {\n UNSIGNED_BYTE: 5121,\n UNSIGNED_SHORT: 5123,\n UNSIGNED_SHORT_5_6_5: 33635,\n UNSIGNED_SHORT_4_4_4_4: 32819,\n UNSIGNED_SHORT_5_5_5_1: 32820,\n FLOAT: 5126,\n HALF_FLOAT: 36193,\n};\n\n/**\n * The scale modes that are supported by pixi.\n *\n * The {@link PIXI.settings.SCALE_MODE} scale mode affects the default scaling mode of future operations.\n * It can be re-assigned to either LINEAR or NEAREST, depending upon suitability.\n *\n * @memberof PIXI\n * @static\n * @name SCALE_MODES\n * @enum {number}\n * @property {number} LINEAR Smooth scaling\n * @property {number} NEAREST Pixelating scaling\n */\nvar SCALE_MODES = {\n LINEAR: 1,\n NEAREST: 0,\n};\n\n/**\n * The wrap modes that are supported by pixi.\n *\n * The {@link PIXI.settings.WRAP_MODE} wrap mode affects the default wrapping mode of future operations.\n * It can be re-assigned to either CLAMP or REPEAT, depending upon suitability.\n * If the texture is non power of two then clamp will be used regardless as WebGL can\n * only use REPEAT if the texture is po2.\n *\n * This property only affects WebGL.\n *\n * @name WRAP_MODES\n * @memberof PIXI\n * @static\n * @enum {number}\n * @property {number} CLAMP - The textures uvs are clamped\n * @property {number} REPEAT - The texture uvs tile and repeat\n * @property {number} MIRRORED_REPEAT - The texture uvs tile and repeat with mirroring\n */\nvar WRAP_MODES = {\n CLAMP: 33071,\n REPEAT: 10497,\n MIRRORED_REPEAT: 33648,\n};\n\n/**\n * Mipmap filtering modes that are supported by pixi.\n *\n * The {@link PIXI.settings.MIPMAP_TEXTURES} affects default texture filtering.\n * Mipmaps are generated for a baseTexture if its `mipmap` field is `ON`,\n * or its `POW2` and texture dimensions are powers of 2.\n * Due to platform restriction, `ON` option will work like `POW2` for webgl-1.\n *\n * This property only affects WebGL.\n *\n * @name MIPMAP_MODES\n * @memberof PIXI\n * @static\n * @enum {number}\n * @property {number} OFF - No mipmaps\n * @property {number} POW2 - Generate mipmaps if texture dimensions are pow2\n * @property {number} ON - Always generate mipmaps\n */\nvar MIPMAP_MODES = {\n OFF: 0,\n POW2: 1,\n ON: 2,\n};\n\n/**\n * The gc modes that are supported by pixi.\n *\n * The {@link PIXI.settings.GC_MODE} Garbage Collection mode for PixiJS textures is AUTO\n * If set to GC_MODE, the renderer will occasionally check textures usage. If they are not\n * used for a specified period of time they will be removed from the GPU. They will of course\n * be uploaded again when they are required. This is a silent behind the scenes process that\n * should ensure that the GPU does not get filled up.\n *\n * Handy for mobile devices!\n * This property only affects WebGL.\n *\n * @name GC_MODES\n * @enum {number}\n * @static\n * @memberof PIXI\n * @property {number} AUTO - Garbage collection will happen periodically automatically\n * @property {number} MANUAL - Garbage collection will need to be called manually\n */\nvar GC_MODES = {\n AUTO: 0,\n MANUAL: 1,\n};\n\n/**\n * Constants that specify float precision in shaders.\n *\n * @name PRECISION\n * @memberof PIXI\n * @static\n * @enum {string}\n * @constant\n * @property {string} LOW='lowp'\n * @property {string} MEDIUM='mediump'\n * @property {string} HIGH='highp'\n */\nvar PRECISION = {\n LOW: 'lowp',\n MEDIUM: 'mediump',\n HIGH: 'highp',\n};\n\nexport { BLEND_MODES, DRAW_MODES, ENV, FORMATS, GC_MODES, MIPMAP_MODES, PRECISION, RENDERER_TYPE, SCALE_MODES, TARGETS, TYPES, WRAP_MODES };\n//# sourceMappingURL=constants.es.js.map\n","/*!\n * @pixi/utils - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/utils is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nexport { isMobile } from '@pixi/settings';\nexport { default as EventEmitter } from 'eventemitter3';\nexport { default as earcut } from 'earcut';\nimport _url from 'url';\nexport { default as url } from 'url';\nimport { BLEND_MODES } from '@pixi/constants';\n\n/**\n * The prefix that denotes a URL is for a retina asset.\n *\n * @static\n * @name RETINA_PREFIX\n * @memberof PIXI.settings\n * @type {RegExp}\n * @default /@([0-9\\.]+)x/\n * @example `@2x`\n */\nsettings.RETINA_PREFIX = /@([0-9\\.]+)x/;\n\n/**\n * Should the `failIfMajorPerformanceCaveat` flag be enabled as a context option used in the `isWebGLSupported` function.\n * For most scenarios this should be left as true, as otherwise the user may have a poor experience.\n * However, it can be useful to disable under certain scenarios, such as headless unit tests.\n *\n * @static\n * @name FAIL_IF_MAJOR_PERFORMANCE_CAVEAT\n * @memberof PIXI.settings\n * @type {boolean}\n * @default true\n */\nsettings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = true;\n\nvar saidHello = false;\nvar VERSION = '5.1.3';\n\n/**\n * Skips the hello message of renderers that are created after this is run.\n *\n * @function skipHello\n * @memberof PIXI.utils\n */\nfunction skipHello()\n{\n saidHello = true;\n}\n\n/**\n * Logs out the version and renderer information for this running instance of PIXI.\n * If you don't want to see this message you can run `PIXI.utils.skipHello()` before\n * creating your renderer. Keep in mind that doing that will forever make you a jerk face.\n *\n * @static\n * @function sayHello\n * @memberof PIXI.utils\n * @param {string} type - The string renderer type to log.\n */\nfunction sayHello(type)\n{\n if (saidHello)\n {\n return;\n }\n\n if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)\n {\n var args = [\n (\"\\n %c %c %c PixiJS \" + VERSION + \" - ✰ \" + type + \" ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \\n\\n\"),\n 'background: #ff66a5; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'color: #ff66a5; background: #030307; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'background: #ffc3dc; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;' ];\n\n window.console.log.apply(console, args);\n }\n else if (window.console)\n {\n window.console.log((\"PixiJS \" + VERSION + \" - \" + type + \" - http://www.pixijs.com/\"));\n }\n\n saidHello = true;\n}\n\nvar supported;\n\n/**\n * Helper for checking for WebGL support.\n *\n * @memberof PIXI.utils\n * @function isWebGLSupported\n * @return {boolean} Is WebGL supported.\n */\nfunction isWebGLSupported()\n{\n if (typeof supported === 'undefined')\n {\n supported = (function supported()\n {\n var contextOptions = {\n stencil: true,\n failIfMajorPerformanceCaveat: settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT,\n };\n\n try\n {\n if (!window.WebGLRenderingContext)\n {\n return false;\n }\n\n var canvas = document.createElement('canvas');\n var gl = canvas.getContext('webgl', contextOptions)\n || canvas.getContext('experimental-webgl', contextOptions);\n\n var success = !!(gl && gl.getContextAttributes().stencil);\n\n if (gl)\n {\n var loseContext = gl.getExtension('WEBGL_lose_context');\n\n if (loseContext)\n {\n loseContext.loseContext();\n }\n }\n\n gl = null;\n\n return success;\n }\n catch (e)\n {\n return false;\n }\n })();\n }\n\n return supported;\n}\n\n/**\n * Converts a hexadecimal color number to an [R, G, B] array of normalized floats (numbers from 0.0 to 1.0).\n *\n * @example\n * PIXI.utils.hex2rgb(0xffffff); // returns [1, 1, 1]\n * @memberof PIXI.utils\n * @function hex2rgb\n * @param {number} hex - The hexadecimal number to convert\n * @param {number[]} [out=[]] If supplied, this array will be used rather than returning a new one\n * @return {number[]} An array representing the [R, G, B] of the color where all values are floats.\n */\nfunction hex2rgb(hex, out)\n{\n out = out || [];\n\n out[0] = ((hex >> 16) & 0xFF) / 255;\n out[1] = ((hex >> 8) & 0xFF) / 255;\n out[2] = (hex & 0xFF) / 255;\n\n return out;\n}\n\n/**\n * Converts a hexadecimal color number to a string.\n *\n * @example\n * PIXI.utils.hex2string(0xffffff); // returns \"#ffffff\"\n * @memberof PIXI.utils\n * @function hex2string\n * @param {number} hex - Number in hex (e.g., `0xffffff`)\n * @return {string} The string color (e.g., `\"#ffffff\"`).\n */\nfunction hex2string(hex)\n{\n hex = hex.toString(16);\n hex = '000000'.substr(0, 6 - hex.length) + hex;\n\n return (\"#\" + hex);\n}\n\n/**\n * Converts a hexadecimal string to a hexadecimal color number.\n *\n * @example\n * PIXI.utils.string2hex(\"#ffffff\"); // returns 0xffffff\n * @memberof PIXI.utils\n * @function string2hex\n * @param {string} The string color (e.g., `\"#ffffff\"`)\n * @return {number} Number in hexadecimal.\n */\nfunction string2hex(string)\n{\n if (typeof string === 'string' && string[0] === '#')\n {\n string = string.substr(1);\n }\n\n return parseInt(string, 16);\n}\n\n/**\n * Converts a color as an [R, G, B] array of normalized floats to a hexadecimal number.\n *\n * @example\n * PIXI.utils.rgb2hex([1, 1, 1]); // returns 0xffffff\n * @memberof PIXI.utils\n * @function rgb2hex\n * @param {number[]} rgb - Array of numbers where all values are normalized floats from 0.0 to 1.0.\n * @return {number} Number in hexadecimal.\n */\nfunction rgb2hex(rgb)\n{\n return (((rgb[0] * 255) << 16) + ((rgb[1] * 255) << 8) + (rgb[2] * 255 | 0));\n}\n\n/**\n * Corrects PixiJS blend, takes premultiplied alpha into account\n *\n * @memberof PIXI.utils\n * @function mapPremultipliedBlendModes\n * @private\n * @param {Array} [array] - The array to output into.\n * @return {Array} Mapped modes.\n */\nfunction mapPremultipliedBlendModes()\n{\n var pm = [];\n var npm = [];\n\n for (var i = 0; i < 32; i++)\n {\n pm[i] = i;\n npm[i] = i;\n }\n\n pm[BLEND_MODES.NORMAL_NPM] = BLEND_MODES.NORMAL;\n pm[BLEND_MODES.ADD_NPM] = BLEND_MODES.ADD;\n pm[BLEND_MODES.SCREEN_NPM] = BLEND_MODES.SCREEN;\n\n npm[BLEND_MODES.NORMAL] = BLEND_MODES.NORMAL_NPM;\n npm[BLEND_MODES.ADD] = BLEND_MODES.ADD_NPM;\n npm[BLEND_MODES.SCREEN] = BLEND_MODES.SCREEN_NPM;\n\n var array = [];\n\n array.push(npm);\n array.push(pm);\n\n return array;\n}\n\n/**\n * maps premultiply flag and blendMode to adjusted blendMode\n * @memberof PIXI.utils\n * @const premultiplyBlendMode\n * @type {Array}\n */\nvar premultiplyBlendMode = mapPremultipliedBlendModes();\n\n/**\n * changes blendMode according to texture format\n *\n * @memberof PIXI.utils\n * @function correctBlendMode\n * @param {number} blendMode supposed blend mode\n * @param {boolean} premultiplied whether source is premultiplied\n * @returns {number} true blend mode for this texture\n */\nfunction correctBlendMode(blendMode, premultiplied)\n{\n return premultiplyBlendMode[premultiplied ? 1 : 0][blendMode];\n}\n\n/**\n * combines rgb and alpha to out array\n *\n * @memberof PIXI.utils\n * @function premultiplyRgba\n * @param {Float32Array|number[]} rgb input rgb\n * @param {number} alpha alpha param\n * @param {Float32Array} [out] output\n * @param {boolean} [premultiply=true] do premultiply it\n * @returns {Float32Array} vec4 rgba\n */\nfunction premultiplyRgba(rgb, alpha, out, premultiply)\n{\n out = out || new Float32Array(4);\n if (premultiply || premultiply === undefined)\n {\n out[0] = rgb[0] * alpha;\n out[1] = rgb[1] * alpha;\n out[2] = rgb[2] * alpha;\n }\n else\n {\n out[0] = rgb[0];\n out[1] = rgb[1];\n out[2] = rgb[2];\n }\n out[3] = alpha;\n\n return out;\n}\n\n/**\n * premultiplies tint\n *\n * @memberof PIXI.utils\n * @function premultiplyTint\n * @param {number} tint integer RGB\n * @param {number} alpha floating point alpha (0.0-1.0)\n * @returns {number} tint multiplied by alpha\n */\nfunction premultiplyTint(tint, alpha)\n{\n if (alpha === 1.0)\n {\n return (alpha * 255 << 24) + tint;\n }\n if (alpha === 0.0)\n {\n return 0;\n }\n var R = ((tint >> 16) & 0xFF);\n var G = ((tint >> 8) & 0xFF);\n var B = (tint & 0xFF);\n\n R = ((R * alpha) + 0.5) | 0;\n G = ((G * alpha) + 0.5) | 0;\n B = ((B * alpha) + 0.5) | 0;\n\n return (alpha * 255 << 24) + (R << 16) + (G << 8) + B;\n}\n\n/**\n * converts integer tint and float alpha to vec4 form, premultiplies by default\n *\n * @memberof PIXI.utils\n * @function premultiplyTintToRgba\n * @param {number} tint input tint\n * @param {number} alpha alpha param\n * @param {Float32Array} [out] output\n * @param {boolean} [premultiply=true] do premultiply it\n * @returns {Float32Array} vec4 rgba\n */\nfunction premultiplyTintToRgba(tint, alpha, out, premultiply)\n{\n out = out || new Float32Array(4);\n out[0] = ((tint >> 16) & 0xFF) / 255.0;\n out[1] = ((tint >> 8) & 0xFF) / 255.0;\n out[2] = (tint & 0xFF) / 255.0;\n if (premultiply || premultiply === undefined)\n {\n out[0] *= alpha;\n out[1] *= alpha;\n out[2] *= alpha;\n }\n out[3] = alpha;\n\n return out;\n}\n\n/**\n * Generic Mask Stack data structure\n *\n * @memberof PIXI.utils\n * @function createIndicesForQuads\n * @param {number} size - Number of quads\n * @param {Uint16Array|Uint32Array} [outBuffer] - Buffer for output, length has to be `6 * size`\n * @return {Uint16Array|Uint32Array} - Resulting index buffer\n */\nfunction createIndicesForQuads(size, outBuffer)\n{\n if ( outBuffer === void 0 ) outBuffer = null;\n\n // the total number of indices in our array, there are 6 points per quad.\n var totalIndices = size * 6;\n\n outBuffer = outBuffer || new Uint16Array(totalIndices);\n\n if (outBuffer.length !== totalIndices)\n {\n throw new Error((\"Out buffer length is incorrect, got \" + (outBuffer.length) + \" and expected \" + totalIndices));\n }\n\n // fill the indices with the quads to draw\n for (var i = 0, j = 0; i < totalIndices; i += 6, j += 4)\n {\n outBuffer[i + 0] = j + 0;\n outBuffer[i + 1] = j + 1;\n outBuffer[i + 2] = j + 2;\n outBuffer[i + 3] = j + 0;\n outBuffer[i + 4] = j + 2;\n outBuffer[i + 5] = j + 3;\n }\n\n return outBuffer;\n}\n\n/**\n * Remove items from a javascript array without generating garbage\n *\n * @function removeItems\n * @memberof PIXI.utils\n * @param {Array} arr Array to remove elements from\n * @param {number} startIdx starting index\n * @param {number} removeCount how many to remove\n */\nfunction removeItems(arr, startIdx, removeCount)\n{\n var length = arr.length;\n var i;\n\n if (startIdx >= length || removeCount === 0)\n {\n return;\n }\n\n removeCount = (startIdx + removeCount > length ? length - startIdx : removeCount);\n\n var len = length - removeCount;\n\n for (i = startIdx; i < len; ++i)\n {\n arr[i] = arr[i + removeCount];\n }\n\n arr.length = len;\n}\n\nvar nextUid = 0;\n\n/**\n * Gets the next unique identifier\n *\n * @memberof PIXI.utils\n * @function uid\n * @return {number} The next unique identifier to use.\n */\nfunction uid()\n{\n return ++nextUid;\n}\n\n/**\n * Returns sign of number\n *\n * @memberof PIXI.utils\n * @function sign\n * @param {number} n - the number to check the sign of\n * @returns {number} 0 if `n` is 0, -1 if `n` is negative, 1 if `n` is positive\n */\nfunction sign(n)\n{\n if (n === 0) { return 0; }\n\n return n < 0 ? -1 : 1;\n}\n\n// Taken from the bit-twiddle package\n\n/**\n * Rounds to next power of two.\n *\n * @function nextPow2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {number}\n */\nfunction nextPow2(v)\n{\n v += v === 0;\n --v;\n v |= v >>> 1;\n v |= v >>> 2;\n v |= v >>> 4;\n v |= v >>> 8;\n v |= v >>> 16;\n\n return v + 1;\n}\n\n/**\n * Checks if a number is a power of two.\n *\n * @function isPow2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {boolean} `true` if value is power of two\n */\nfunction isPow2(v)\n{\n return !(v & (v - 1)) && (!!v);\n}\n\n/**\n * Computes ceil of log base 2\n *\n * @function log2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {number} logarithm base 2\n */\nfunction log2(v)\n{\n var r = (v > 0xFFFF) << 4;\n\n v >>>= r;\n\n var shift = (v > 0xFF) << 3;\n\n v >>>= shift; r |= shift;\n shift = (v > 0xF) << 2;\n v >>>= shift; r |= shift;\n shift = (v > 0x3) << 1;\n v >>>= shift; r |= shift;\n\n return r | (v >> 1);\n}\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name ProgramCache\n * @memberof PIXI.utils\n * @type {Object}\n */\nvar ProgramCache = {};\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name TextureCache\n * @memberof PIXI.utils\n * @type {Object}\n */\nvar TextureCache = Object.create(null);\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name BaseTextureCache\n * @memberof PIXI.utils\n * @type {Object}\n */\n\nvar BaseTextureCache = Object.create(null);\n/**\n * Destroys all texture in the cache\n *\n * @memberof PIXI.utils\n * @function destroyTextureCache\n */\nfunction destroyTextureCache()\n{\n var key;\n\n for (key in TextureCache)\n {\n TextureCache[key].destroy();\n }\n for (key in BaseTextureCache)\n {\n BaseTextureCache[key].destroy();\n }\n}\n\n/**\n * Removes all textures from cache, but does not destroy them\n *\n * @memberof PIXI.utils\n * @function clearTextureCache\n */\nfunction clearTextureCache()\n{\n var key;\n\n for (key in TextureCache)\n {\n delete TextureCache[key];\n }\n for (key in BaseTextureCache)\n {\n delete BaseTextureCache[key];\n }\n}\n\n/**\n * Trim transparent borders from a canvas\n *\n * @memberof PIXI.utils\n * @function trimCanvas\n * @param {HTMLCanvasElement} canvas - the canvas to trim\n * @returns {object} Trim data\n */\nfunction trimCanvas(canvas)\n{\n // https://gist.github.com/remy/784508\n\n var width = canvas.width;\n var height = canvas.height;\n\n var context = canvas.getContext('2d');\n var imageData = context.getImageData(0, 0, width, height);\n var pixels = imageData.data;\n var len = pixels.length;\n\n var bound = {\n top: null,\n left: null,\n right: null,\n bottom: null,\n };\n var data = null;\n var i;\n var x;\n var y;\n\n for (i = 0; i < len; i += 4)\n {\n if (pixels[i + 3] !== 0)\n {\n x = (i / 4) % width;\n y = ~~((i / 4) / width);\n\n if (bound.top === null)\n {\n bound.top = y;\n }\n\n if (bound.left === null)\n {\n bound.left = x;\n }\n else if (x < bound.left)\n {\n bound.left = x;\n }\n\n if (bound.right === null)\n {\n bound.right = x + 1;\n }\n else if (bound.right < x)\n {\n bound.right = x + 1;\n }\n\n if (bound.bottom === null)\n {\n bound.bottom = y;\n }\n else if (bound.bottom < y)\n {\n bound.bottom = y;\n }\n }\n }\n\n if (bound.top !== null)\n {\n width = bound.right - bound.left;\n height = bound.bottom - bound.top + 1;\n data = context.getImageData(bound.left, bound.top, width, height);\n }\n\n return {\n height: height,\n width: width,\n data: data,\n };\n}\n\n/**\n * Creates a Canvas element of the given size to be used as a target for rendering to.\n *\n * @class\n * @memberof PIXI.utils\n */\nvar CanvasRenderTarget = function CanvasRenderTarget(width, height, resolution)\n{\n /**\n * The Canvas object that belongs to this CanvasRenderTarget.\n *\n * @member {HTMLCanvasElement}\n */\n this.canvas = document.createElement('canvas');\n\n /**\n * A CanvasRenderingContext2D object representing a two-dimensional rendering context.\n *\n * @member {CanvasRenderingContext2D}\n */\n this.context = this.canvas.getContext('2d');\n\n this.resolution = resolution || settings.RESOLUTION;\n\n this.resize(width, height);\n};\n\nvar prototypeAccessors = { width: { configurable: true },height: { configurable: true } };\n\n/**\n * Clears the canvas that was created by the CanvasRenderTarget class.\n *\n * @private\n */\nCanvasRenderTarget.prototype.clear = function clear ()\n{\n this.context.setTransform(1, 0, 0, 1, 0, 0);\n this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);\n};\n\n/**\n * Resizes the canvas to the specified width and height.\n *\n * @param {number} width - the new width of the canvas\n * @param {number} height - the new height of the canvas\n */\nCanvasRenderTarget.prototype.resize = function resize (width, height)\n{\n this.canvas.width = width * this.resolution;\n this.canvas.height = height * this.resolution;\n};\n\n/**\n * Destroys this canvas.\n *\n */\nCanvasRenderTarget.prototype.destroy = function destroy ()\n{\n this.context = null;\n this.canvas = null;\n};\n\n/**\n * The width of the canvas buffer in pixels.\n *\n * @member {number}\n */\nprototypeAccessors.width.get = function ()\n{\n return this.canvas.width;\n};\n\nprototypeAccessors.width.set = function (val) // eslint-disable-line require-jsdoc\n{\n this.canvas.width = val;\n};\n\n/**\n * The height of the canvas buffer in pixels.\n *\n * @member {number}\n */\nprototypeAccessors.height.get = function ()\n{\n return this.canvas.height;\n};\n\nprototypeAccessors.height.set = function (val) // eslint-disable-line require-jsdoc\n{\n this.canvas.height = val;\n};\n\nObject.defineProperties( CanvasRenderTarget.prototype, prototypeAccessors );\n\n/**\n * Regexp for data URI.\n * Based on: {@link https://github.com/ragingwind/data-uri-regex}\n *\n * @static\n * @constant {RegExp|string} DATA_URI\n * @memberof PIXI\n * @example data:image/png;base64\n */\nvar DATA_URI = /^\\s*data:(?:([\\w-]+)\\/([\\w+.-]+))?(?:;charset=([\\w-]+))?(?:;(base64))?,(.*)/i;\n\n/**\n * Typedef for decomposeDataUri return object.\n *\n * @memberof PIXI.utils\n * @typedef {object} DecomposedDataUri\n * @property {string} mediaType Media type, eg. `image`\n * @property {string} subType Sub type, eg. `png`\n * @property {string} encoding Data encoding, eg. `base64`\n * @property {string} data The actual data\n */\n\n/**\n * Split a data URI into components. Returns undefined if\n * parameter `dataUri` is not a valid data URI.\n *\n * @memberof PIXI.utils\n * @function decomposeDataUri\n * @param {string} dataUri - the data URI to check\n * @return {PIXI.utils.DecomposedDataUri|undefined} The decomposed data uri or undefined\n */\nfunction decomposeDataUri(dataUri)\n{\n var dataUriMatch = DATA_URI.exec(dataUri);\n\n if (dataUriMatch)\n {\n return {\n mediaType: dataUriMatch[1] ? dataUriMatch[1].toLowerCase() : undefined,\n subType: dataUriMatch[2] ? dataUriMatch[2].toLowerCase() : undefined,\n charset: dataUriMatch[3] ? dataUriMatch[3].toLowerCase() : undefined,\n encoding: dataUriMatch[4] ? dataUriMatch[4].toLowerCase() : undefined,\n data: dataUriMatch[5],\n };\n }\n\n return undefined;\n}\n\nvar tempAnchor;\n\n/**\n * Sets the `crossOrigin` property for this resource based on if the url\n * for this resource is cross-origin. If crossOrigin was manually set, this\n * function does nothing.\n * Nipped from the resource loader!\n *\n * @ignore\n * @param {string} url - The url to test.\n * @param {object} [loc=window.location] - The location object to test against.\n * @return {string} The crossOrigin value to use (or empty string for none).\n */\nfunction determineCrossOrigin(url, loc)\n{\n if ( loc === void 0 ) loc = window.location;\n\n // data: and javascript: urls are considered same-origin\n if (url.indexOf('data:') === 0)\n {\n return '';\n }\n\n // default is window.location\n loc = loc || window.location;\n\n if (!tempAnchor)\n {\n tempAnchor = document.createElement('a');\n }\n\n // let the browser determine the full href for the url of this resource and then\n // parse with the node url lib, we can't use the properties of the anchor element\n // because they don't work in IE9 :(\n tempAnchor.href = url;\n url = _url.parse(tempAnchor.href);\n\n var samePort = (!url.port && loc.port === '') || (url.port === loc.port);\n\n // if cross origin\n if (url.hostname !== loc.hostname || !samePort || url.protocol !== loc.protocol)\n {\n return 'anonymous';\n }\n\n return '';\n}\n\n/**\n * get the resolution / device pixel ratio of an asset by looking for the prefix\n * used by spritesheets and image urls\n *\n * @memberof PIXI.utils\n * @function getResolutionOfUrl\n * @param {string} url - the image path\n * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set.\n * @return {number} resolution / device pixel ratio of an asset\n */\nfunction getResolutionOfUrl(url, defaultValue)\n{\n var resolution = settings.RETINA_PREFIX.exec(url);\n\n if (resolution)\n {\n return parseFloat(resolution[1]);\n }\n\n return defaultValue !== undefined ? defaultValue : 1;\n}\n\n// A map of warning messages already fired\nvar warnings = {};\n\n/**\n * Helper for warning developers about deprecated features & settings.\n * A stack track for warnings is given; useful for tracking-down where\n * deprecated methods/properties/classes are being used within the code.\n *\n * @memberof PIXI.utils\n * @function deprecation\n * @param {string} version - The version where the feature became deprecated\n * @param {string} message - Message should include what is deprecated, where, and the new solution\n * @param {number} [ignoreDepth=3] - The number of steps to ignore at the top of the error stack\n * this is mostly to ignore internal deprecation calls.\n */\nfunction deprecation(version, message, ignoreDepth)\n{\n if ( ignoreDepth === void 0 ) ignoreDepth = 3;\n\n // Ignore duplicat\n if (warnings[message])\n {\n return;\n }\n\n /* eslint-disable no-console */\n var stack = new Error().stack;\n\n // Handle IE < 10 and Safari < 6\n if (typeof stack === 'undefined')\n {\n console.warn('PixiJS Deprecation Warning: ', (message + \"\\nDeprecated since v\" + version));\n }\n else\n {\n // chop off the stack trace which includes PixiJS internal calls\n stack = stack.split('\\n').splice(ignoreDepth).join('\\n');\n\n if (console.groupCollapsed)\n {\n console.groupCollapsed(\n '%cPixiJS Deprecation Warning: %c%s',\n 'color:#614108;background:#fffbe6',\n 'font-weight:normal;color:#614108;background:#fffbe6',\n (message + \"\\nDeprecated since v\" + version)\n );\n console.warn(stack);\n console.groupEnd();\n }\n else\n {\n console.warn('PixiJS Deprecation Warning: ', (message + \"\\nDeprecated since v\" + version));\n console.warn(stack);\n }\n }\n /* eslint-enable no-console */\n\n warnings[message] = true;\n}\n\n/**\n * Generalized convenience utilities for PIXI.\n * @example\n * // Extend PIXI's internal Event Emitter.\n * class MyEmitter extends PIXI.utils.EventEmitter {\n * constructor() {\n * super();\n * console.log(\"Emitter created!\");\n * }\n * }\n *\n * // Get info on current device\n * console.log(PIXI.utils.isMobile);\n *\n * // Convert hex color to string\n * console.log(PIXI.utils.hex2string(0xff00ff)); // returns: \"#ff00ff\"\n * @namespace PIXI.utils\n */\n\nexport { BaseTextureCache, CanvasRenderTarget, DATA_URI, ProgramCache, TextureCache, clearTextureCache, correctBlendMode, createIndicesForQuads, decomposeDataUri, deprecation, destroyTextureCache, determineCrossOrigin, getResolutionOfUrl, hex2rgb, hex2string, isPow2, isWebGLSupported, log2, nextPow2, premultiplyBlendMode, premultiplyRgba, premultiplyTint, premultiplyTintToRgba, removeItems, rgb2hex, sayHello, sign, skipHello, string2hex, trimCanvas, uid };\n//# sourceMappingURL=utils.es.js.map\n","/*!\n * @pixi/math - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/math is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * The Point object represents a location in a two-dimensional coordinate system, where x represents\n * the horizontal axis and y represents the vertical axis.\n *\n * @class\n * @memberof PIXI\n */\nvar Point = function Point(x, y)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n};\n\n/**\n * Creates a clone of this point\n *\n * @return {PIXI.Point} a copy of the point\n */\nPoint.prototype.clone = function clone ()\n{\n return new Point(this.x, this.y);\n};\n\n/**\n * Copies x and y from the given point\n *\n * @param {PIXI.IPoint} p - The point to copy from\n * @returns {PIXI.IPoint} Returns itself.\n */\nPoint.prototype.copyFrom = function copyFrom (p)\n{\n this.set(p.x, p.y);\n\n return this;\n};\n\n/**\n * Copies x and y into the given point\n *\n * @param {PIXI.IPoint} p - The point to copy.\n * @returns {PIXI.IPoint} Given point with values updated\n */\nPoint.prototype.copyTo = function copyTo (p)\n{\n p.set(this.x, this.y);\n\n return p;\n};\n\n/**\n * Returns true if the given point is equal to this point\n *\n * @param {PIXI.IPoint} p - The point to check\n * @returns {boolean} Whether the given point equal to this point\n */\nPoint.prototype.equals = function equals (p)\n{\n return (p.x === this.x) && (p.y === this.y);\n};\n\n/**\n * Sets the point to a new x and y position.\n * If y is omitted, both x and y will be set to x.\n *\n * @param {number} [x=0] - position of the point on the x axis\n * @param {number} [y=0] - position of the point on the y axis\n */\nPoint.prototype.set = function set (x, y)\n{\n this.x = x || 0;\n this.y = y || ((y !== 0) ? this.x : 0);\n};\n\n/**\n * The Point object represents a location in a two-dimensional coordinate system, where x represents\n * the horizontal axis and y represents the vertical axis.\n *\n * An ObservablePoint is a point that triggers a callback when the point's position is changed.\n *\n * @class\n * @memberof PIXI\n */\nvar ObservablePoint = function ObservablePoint(cb, scope, x, y)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n this._x = x;\n this._y = y;\n\n this.cb = cb;\n this.scope = scope;\n};\n\nvar prototypeAccessors = { x: { configurable: true },y: { configurable: true } };\n\n/**\n * Creates a clone of this point.\n * The callback and scope params can be overidden otherwise they will default\n * to the clone object's values.\n *\n * @override\n * @param {Function} [cb=null] - callback when changed\n * @param {object} [scope=null] - owner of callback\n * @return {PIXI.ObservablePoint} a copy of the point\n */\nObservablePoint.prototype.clone = function clone (cb, scope)\n{\n if ( cb === void 0 ) cb = null;\n if ( scope === void 0 ) scope = null;\n\n var _cb = cb || this.cb;\n var _scope = scope || this.scope;\n\n return new ObservablePoint(_cb, _scope, this._x, this._y);\n};\n\n/**\n * Sets the point to a new x and y position.\n * If y is omitted, both x and y will be set to x.\n *\n * @param {number} [x=0] - position of the point on the x axis\n * @param {number} [y=0] - position of the point on the y axis\n */\nObservablePoint.prototype.set = function set (x, y)\n{\n var _x = x || 0;\n var _y = y || ((y !== 0) ? _x : 0);\n\n if (this._x !== _x || this._y !== _y)\n {\n this._x = _x;\n this._y = _y;\n this.cb.call(this.scope);\n }\n};\n\n/**\n * Copies x and y from the given point\n *\n * @param {PIXI.IPoint} p - The point to copy from.\n * @returns {PIXI.IPoint} Returns itself.\n */\nObservablePoint.prototype.copyFrom = function copyFrom (p)\n{\n if (this._x !== p.x || this._y !== p.y)\n {\n this._x = p.x;\n this._y = p.y;\n this.cb.call(this.scope);\n }\n\n return this;\n};\n\n/**\n * Copies x and y into the given point\n *\n * @param {PIXI.IPoint} p - The point to copy.\n * @returns {PIXI.IPoint} Given point with values updated\n */\nObservablePoint.prototype.copyTo = function copyTo (p)\n{\n p.set(this._x, this._y);\n\n return p;\n};\n\n/**\n * Returns true if the given point is equal to this point\n *\n * @param {PIXI.IPoint} p - The point to check\n * @returns {boolean} Whether the given point equal to this point\n */\nObservablePoint.prototype.equals = function equals (p)\n{\n return (p.x === this._x) && (p.y === this._y);\n};\n\n/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n *\n * @member {number}\n */\nprototypeAccessors.x.get = function ()\n{\n return this._x;\n};\n\nprototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._x !== value)\n {\n this._x = value;\n this.cb.call(this.scope);\n }\n};\n\n/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n *\n * @member {number}\n */\nprototypeAccessors.y.get = function ()\n{\n return this._y;\n};\n\nprototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._y !== value)\n {\n this._y = value;\n this.cb.call(this.scope);\n }\n};\n\nObject.defineProperties( ObservablePoint.prototype, prototypeAccessors );\n\n/**\n * A number, or a string containing a number.\n * @memberof PIXI\n * @typedef {(PIXI.Point|PIXI.ObservablePoint)} IPoint\n */\n\n/**\n * Two Pi.\n *\n * @static\n * @constant {number} PI_2\n * @memberof PIXI\n */\nvar PI_2 = Math.PI * 2;\n\n/**\n * Conversion factor for converting radians to degrees.\n *\n * @static\n * @constant {number} RAD_TO_DEG\n * @memberof PIXI\n */\nvar RAD_TO_DEG = 180 / Math.PI;\n\n/**\n * Conversion factor for converting degrees to radians.\n *\n * @static\n * @constant {number} DEG_TO_RAD\n * @memberof PIXI\n */\nvar DEG_TO_RAD = Math.PI / 180;\n\n/**\n * Constants that identify shapes, mainly to prevent `instanceof` calls.\n *\n * @static\n * @constant\n * @name SHAPES\n * @memberof PIXI\n * @type {object}\n * @property {number} POLY Polygon\n * @property {number} RECT Rectangle\n * @property {number} CIRC Circle\n * @property {number} ELIP Ellipse\n * @property {number} RREC Rounded Rectangle\n */\nvar SHAPES = {\n POLY: 0,\n RECT: 1,\n CIRC: 2,\n ELIP: 3,\n RREC: 4,\n};\n\n/**\n * The PixiJS Matrix as a class makes it a lot faster.\n *\n * Here is a representation of it:\n * ```js\n * | a | c | tx|\n * | b | d | ty|\n * | 0 | 0 | 1 |\n * ```\n * @class\n * @memberof PIXI\n */\nvar Matrix = function Matrix(a, b, c, d, tx, ty)\n{\n if ( a === void 0 ) a = 1;\n if ( b === void 0 ) b = 0;\n if ( c === void 0 ) c = 0;\n if ( d === void 0 ) d = 1;\n if ( tx === void 0 ) tx = 0;\n if ( ty === void 0 ) ty = 0;\n\n /**\n * @member {number}\n * @default 1\n */\n this.a = a;\n\n /**\n * @member {number}\n * @default 0\n */\n this.b = b;\n\n /**\n * @member {number}\n * @default 0\n */\n this.c = c;\n\n /**\n * @member {number}\n * @default 1\n */\n this.d = d;\n\n /**\n * @member {number}\n * @default 0\n */\n this.tx = tx;\n\n /**\n * @member {number}\n * @default 0\n */\n this.ty = ty;\n\n this.array = null;\n};\n\nvar staticAccessors = { IDENTITY: { configurable: true },TEMP_MATRIX: { configurable: true } };\n\n/**\n * Creates a Matrix object based on the given array. The Element to Matrix mapping order is as follows:\n *\n * a = array[0]\n * b = array[1]\n * c = array[3]\n * d = array[4]\n * tx = array[2]\n * ty = array[5]\n *\n * @param {number[]} array - The array that the matrix will be populated from.\n */\nMatrix.prototype.fromArray = function fromArray (array)\n{\n this.a = array[0];\n this.b = array[1];\n this.c = array[3];\n this.d = array[4];\n this.tx = array[2];\n this.ty = array[5];\n};\n\n/**\n * sets the matrix properties\n *\n * @param {number} a - Matrix component\n * @param {number} b - Matrix component\n * @param {number} c - Matrix component\n * @param {number} d - Matrix component\n * @param {number} tx - Matrix component\n * @param {number} ty - Matrix component\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.set = function set (a, b, c, d, tx, ty)\n{\n this.a = a;\n this.b = b;\n this.c = c;\n this.d = d;\n this.tx = tx;\n this.ty = ty;\n\n return this;\n};\n\n/**\n * Creates an array from the current Matrix object.\n *\n * @param {boolean} transpose - Whether we need to transpose the matrix or not\n * @param {Float32Array} [out=new Float32Array(9)] - If provided the array will be assigned to out\n * @return {number[]} the newly created array which contains the matrix\n */\nMatrix.prototype.toArray = function toArray (transpose, out)\n{\n if (!this.array)\n {\n this.array = new Float32Array(9);\n }\n\n var array = out || this.array;\n\n if (transpose)\n {\n array[0] = this.a;\n array[1] = this.b;\n array[2] = 0;\n array[3] = this.c;\n array[4] = this.d;\n array[5] = 0;\n array[6] = this.tx;\n array[7] = this.ty;\n array[8] = 1;\n }\n else\n {\n array[0] = this.a;\n array[1] = this.c;\n array[2] = this.tx;\n array[3] = this.b;\n array[4] = this.d;\n array[5] = this.ty;\n array[6] = 0;\n array[7] = 0;\n array[8] = 1;\n }\n\n return array;\n};\n\n/**\n * Get a new position with the current transformation applied.\n * Can be used to go from a child's coordinate space to the world coordinate space. (e.g. rendering)\n *\n * @param {PIXI.Point} pos - The origin\n * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input)\n * @return {PIXI.Point} The new point, transformed through this matrix\n */\nMatrix.prototype.apply = function apply (pos, newPos)\n{\n newPos = newPos || new Point();\n\n var x = pos.x;\n var y = pos.y;\n\n newPos.x = (this.a * x) + (this.c * y) + this.tx;\n newPos.y = (this.b * x) + (this.d * y) + this.ty;\n\n return newPos;\n};\n\n/**\n * Get a new position with the inverse of the current transformation applied.\n * Can be used to go from the world coordinate space to a child's coordinate space. (e.g. input)\n *\n * @param {PIXI.Point} pos - The origin\n * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input)\n * @return {PIXI.Point} The new point, inverse-transformed through this matrix\n */\nMatrix.prototype.applyInverse = function applyInverse (pos, newPos)\n{\n newPos = newPos || new Point();\n\n var id = 1 / ((this.a * this.d) + (this.c * -this.b));\n\n var x = pos.x;\n var y = pos.y;\n\n newPos.x = (this.d * id * x) + (-this.c * id * y) + (((this.ty * this.c) - (this.tx * this.d)) * id);\n newPos.y = (this.a * id * y) + (-this.b * id * x) + (((-this.ty * this.a) + (this.tx * this.b)) * id);\n\n return newPos;\n};\n\n/**\n * Translates the matrix on the x and y.\n *\n * @param {number} x How much to translate x by\n * @param {number} y How much to translate y by\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.translate = function translate (x, y)\n{\n this.tx += x;\n this.ty += y;\n\n return this;\n};\n\n/**\n * Applies a scale transformation to the matrix.\n *\n * @param {number} x The amount to scale horizontally\n * @param {number} y The amount to scale vertically\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.scale = function scale (x, y)\n{\n this.a *= x;\n this.d *= y;\n this.c *= x;\n this.b *= y;\n this.tx *= x;\n this.ty *= y;\n\n return this;\n};\n\n/**\n * Applies a rotation transformation to the matrix.\n *\n * @param {number} angle - The angle in radians.\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.rotate = function rotate (angle)\n{\n var cos = Math.cos(angle);\n var sin = Math.sin(angle);\n\n var a1 = this.a;\n var c1 = this.c;\n var tx1 = this.tx;\n\n this.a = (a1 * cos) - (this.b * sin);\n this.b = (a1 * sin) + (this.b * cos);\n this.c = (c1 * cos) - (this.d * sin);\n this.d = (c1 * sin) + (this.d * cos);\n this.tx = (tx1 * cos) - (this.ty * sin);\n this.ty = (tx1 * sin) + (this.ty * cos);\n\n return this;\n};\n\n/**\n * Appends the given Matrix to this Matrix.\n *\n * @param {PIXI.Matrix} matrix - The matrix to append.\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.append = function append (matrix)\n{\n var a1 = this.a;\n var b1 = this.b;\n var c1 = this.c;\n var d1 = this.d;\n\n this.a = (matrix.a * a1) + (matrix.b * c1);\n this.b = (matrix.a * b1) + (matrix.b * d1);\n this.c = (matrix.c * a1) + (matrix.d * c1);\n this.d = (matrix.c * b1) + (matrix.d * d1);\n\n this.tx = (matrix.tx * a1) + (matrix.ty * c1) + this.tx;\n this.ty = (matrix.tx * b1) + (matrix.ty * d1) + this.ty;\n\n return this;\n};\n\n/**\n * Sets the matrix based on all the available properties\n *\n * @param {number} x - Position on the x axis\n * @param {number} y - Position on the y axis\n * @param {number} pivotX - Pivot on the x axis\n * @param {number} pivotY - Pivot on the y axis\n * @param {number} scaleX - Scale on the x axis\n * @param {number} scaleY - Scale on the y axis\n * @param {number} rotation - Rotation in radians\n * @param {number} skewX - Skew on the x axis\n * @param {number} skewY - Skew on the y axis\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.setTransform = function setTransform (x, y, pivotX, pivotY, scaleX, scaleY, rotation, skewX, skewY)\n{\n this.a = Math.cos(rotation + skewY) * scaleX;\n this.b = Math.sin(rotation + skewY) * scaleX;\n this.c = -Math.sin(rotation - skewX) * scaleY;\n this.d = Math.cos(rotation - skewX) * scaleY;\n\n this.tx = x - ((pivotX * this.a) + (pivotY * this.c));\n this.ty = y - ((pivotX * this.b) + (pivotY * this.d));\n\n return this;\n};\n\n/**\n * Prepends the given Matrix to this Matrix.\n *\n * @param {PIXI.Matrix} matrix - The matrix to prepend\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.prepend = function prepend (matrix)\n{\n var tx1 = this.tx;\n\n if (matrix.a !== 1 || matrix.b !== 0 || matrix.c !== 0 || matrix.d !== 1)\n {\n var a1 = this.a;\n var c1 = this.c;\n\n this.a = (a1 * matrix.a) + (this.b * matrix.c);\n this.b = (a1 * matrix.b) + (this.b * matrix.d);\n this.c = (c1 * matrix.a) + (this.d * matrix.c);\n this.d = (c1 * matrix.b) + (this.d * matrix.d);\n }\n\n this.tx = (tx1 * matrix.a) + (this.ty * matrix.c) + matrix.tx;\n this.ty = (tx1 * matrix.b) + (this.ty * matrix.d) + matrix.ty;\n\n return this;\n};\n\n/**\n * Decomposes the matrix (x, y, scaleX, scaleY, and rotation) and sets the properties on to a transform.\n *\n * @param {PIXI.Transform} transform - The transform to apply the properties to.\n * @return {PIXI.Transform} The transform with the newly applied properties\n */\nMatrix.prototype.decompose = function decompose (transform)\n{\n // sort out rotation / skew..\n var a = this.a;\n var b = this.b;\n var c = this.c;\n var d = this.d;\n\n var skewX = -Math.atan2(-c, d);\n var skewY = Math.atan2(b, a);\n\n var delta = Math.abs(skewX + skewY);\n\n if (delta < 0.00001 || Math.abs(PI_2 - delta) < 0.00001)\n {\n transform.rotation = skewY;\n transform.skew.x = transform.skew.y = 0;\n }\n else\n {\n transform.rotation = 0;\n transform.skew.x = skewX;\n transform.skew.y = skewY;\n }\n\n // next set scale\n transform.scale.x = Math.sqrt((a * a) + (b * b));\n transform.scale.y = Math.sqrt((c * c) + (d * d));\n\n // next set position\n transform.position.x = this.tx;\n transform.position.y = this.ty;\n\n return transform;\n};\n\n/**\n * Inverts this matrix\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.invert = function invert ()\n{\n var a1 = this.a;\n var b1 = this.b;\n var c1 = this.c;\n var d1 = this.d;\n var tx1 = this.tx;\n var n = (a1 * d1) - (b1 * c1);\n\n this.a = d1 / n;\n this.b = -b1 / n;\n this.c = -c1 / n;\n this.d = a1 / n;\n this.tx = ((c1 * this.ty) - (d1 * tx1)) / n;\n this.ty = -((a1 * this.ty) - (b1 * tx1)) / n;\n\n return this;\n};\n\n/**\n * Resets this Matrix to an identity (default) matrix.\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.identity = function identity ()\n{\n this.a = 1;\n this.b = 0;\n this.c = 0;\n this.d = 1;\n this.tx = 0;\n this.ty = 0;\n\n return this;\n};\n\n/**\n * Creates a new Matrix object with the same values as this one.\n *\n * @return {PIXI.Matrix} A copy of this matrix. Good for chaining method calls.\n */\nMatrix.prototype.clone = function clone ()\n{\n var matrix = new Matrix();\n\n matrix.a = this.a;\n matrix.b = this.b;\n matrix.c = this.c;\n matrix.d = this.d;\n matrix.tx = this.tx;\n matrix.ty = this.ty;\n\n return matrix;\n};\n\n/**\n * Changes the values of the given matrix to be the same as the ones in this matrix\n *\n * @param {PIXI.Matrix} matrix - The matrix to copy to.\n * @return {PIXI.Matrix} The matrix given in parameter with its values updated.\n */\nMatrix.prototype.copyTo = function copyTo (matrix)\n{\n matrix.a = this.a;\n matrix.b = this.b;\n matrix.c = this.c;\n matrix.d = this.d;\n matrix.tx = this.tx;\n matrix.ty = this.ty;\n\n return matrix;\n};\n\n/**\n * Changes the values of the matrix to be the same as the ones in given matrix\n *\n * @param {PIXI.Matrix} matrix - The matrix to copy from.\n * @return {PIXI.Matrix} this\n */\nMatrix.prototype.copyFrom = function copyFrom (matrix)\n{\n this.a = matrix.a;\n this.b = matrix.b;\n this.c = matrix.c;\n this.d = matrix.d;\n this.tx = matrix.tx;\n this.ty = matrix.ty;\n\n return this;\n};\n\n/**\n * A default (identity) matrix\n *\n * @static\n * @const\n * @member {PIXI.Matrix}\n */\nstaticAccessors.IDENTITY.get = function ()\n{\n return new Matrix();\n};\n\n/**\n * A temp matrix\n *\n * @static\n * @const\n * @member {PIXI.Matrix}\n */\nstaticAccessors.TEMP_MATRIX.get = function ()\n{\n return new Matrix();\n};\n\nObject.defineProperties( Matrix, staticAccessors );\n\n// Your friendly neighbour https://en.wikipedia.org/wiki/Dihedral_group\n\n/*\n * Transform matrix for operation n is:\n * | ux | vx |\n * | uy | vy |\n */\n\nvar ux = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1];\nvar uy = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1];\nvar vx = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1];\nvar vy = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1];\n\n/**\n * [Cayley Table]{@link https://en.wikipedia.org/wiki/Cayley_table}\n * for the composition of each rotation in the dihederal group D8.\n *\n * @type number[][]\n * @private\n */\nvar rotationCayley = [];\n\n/**\n * Matrices for each `GD8Symmetry` rotation.\n *\n * @type Matrix[]\n * @private\n */\nvar rotationMatrices = [];\n\n/*\n * Alias for {@code Math.sign}.\n */\nvar signum = Math.sign;\n\n/*\n * Initializes `rotationCayley` and `rotationMatrices`. It is called\n * only once below.\n */\nfunction init()\n{\n for (var i = 0; i < 16; i++)\n {\n var row = [];\n\n rotationCayley.push(row);\n\n for (var j = 0; j < 16; j++)\n {\n /* Multiplies rotation matrices i and j. */\n var _ux = signum((ux[i] * ux[j]) + (vx[i] * uy[j]));\n var _uy = signum((uy[i] * ux[j]) + (vy[i] * uy[j]));\n var _vx = signum((ux[i] * vx[j]) + (vx[i] * vy[j]));\n var _vy = signum((uy[i] * vx[j]) + (vy[i] * vy[j]));\n\n /* Finds rotation matrix matching the product and pushes it. */\n for (var k = 0; k < 16; k++)\n {\n if (ux[k] === _ux && uy[k] === _uy\n && vx[k] === _vx && vy[k] === _vy)\n {\n row.push(k);\n break;\n }\n }\n }\n }\n\n for (var i$1 = 0; i$1 < 16; i$1++)\n {\n var mat = new Matrix();\n\n mat.set(ux[i$1], uy[i$1], vx[i$1], vy[i$1], 0, 0);\n rotationMatrices.push(mat);\n }\n}\n\ninit();\n\n/**\n * @memberof PIXI\n * @typedef {number} GD8Symmetry\n * @see PIXI.GroupD8\n */\n\n/**\n * Implements the dihedral group D8, which is similar to\n * [group D4]{@link http://mathworld.wolfram.com/DihedralGroupD4.html};\n * D8 is the same but with diagonals, and it is used for texture\n * rotations.\n *\n * The directions the U- and V- axes after rotation\n * of an angle of `a: GD8Constant` are the vectors `(uX(a), uY(a))`\n * and `(vX(a), vY(a))`. These aren't necessarily unit vectors.\n *\n * **Origin:**
\n * This is the small part of gameofbombs.com portal system. It works.\n *\n * @see PIXI.GroupD8.E\n * @see PIXI.GroupD8.SE\n * @see PIXI.GroupD8.S\n * @see PIXI.GroupD8.SW\n * @see PIXI.GroupD8.W\n * @see PIXI.GroupD8.NW\n * @see PIXI.GroupD8.N\n * @see PIXI.GroupD8.NE\n * @author Ivan @ivanpopelyshev\n * @class\n * @memberof PIXI\n */\nvar GroupD8 = {\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 0° | East |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n E: 0,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 45°↻ | Southeast |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n SE: 1,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 90°↻ | South |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n S: 2,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 135°↻ | Southwest |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n SW: 3,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 180° | West |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n W: 4,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -135°/225°↻ | Northwest |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n NW: 5,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -90°/270°↻ | North |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n N: 6,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -45°/315°↻ | Northeast |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n NE: 7,\n\n /**\n * Reflection about Y-axis.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MIRROR_VERTICAL: 8,\n\n /**\n * Reflection about the main diagonal.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MAIN_DIAGONAL: 10,\n\n /**\n * Reflection about X-axis.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MIRROR_HORIZONTAL: 12,\n\n /**\n * Reflection about reverse diagonal.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n REVERSE_DIAGONAL: 14,\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The X-component of the U-axis\n * after rotating the axes.\n */\n uX: function (ind) { return ux[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The Y-component of the U-axis\n * after rotating the axes.\n */\n uY: function (ind) { return uy[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The X-component of the V-axis\n * after rotating the axes.\n */\n vX: function (ind) { return vx[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The Y-component of the V-axis\n * after rotating the axes.\n */\n vY: function (ind) { return vy[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotation - symmetry whose opposite\n * is needed. Only rotations have opposite symmetries while\n * reflections don't.\n * @return {PIXI.GD8Symmetry} The opposite symmetry of `rotation`\n */\n inv: function (rotation) {\n if (rotation & 8)// true only if between 8 & 15 (reflections)\n {\n return rotation & 15;// or rotation % 16\n }\n\n return (-rotation) & 7;// or (8 - rotation) % 8\n },\n\n /**\n * Composes the two D8 operations.\n *\n * Taking `^` as reflection:\n *\n * | | E=0 | S=2 | W=4 | N=6 | E^=8 | S^=10 | W^=12 | N^=14 |\n * |-------|-----|-----|-----|-----|------|-------|-------|-------|\n * | E=0 | E | S | W | N | E^ | S^ | W^ | N^ |\n * | S=2 | S | W | N | E | S^ | W^ | N^ | E^ |\n * | W=4 | W | N | E | S | W^ | N^ | E^ | S^ |\n * | N=6 | N | E | S | W | N^ | E^ | S^ | W^ |\n * | E^=8 | E^ | N^ | W^ | S^ | E | N | W | S |\n * | S^=10 | S^ | E^ | N^ | W^ | S | E | N | W |\n * | W^=12 | W^ | S^ | E^ | N^ | W | S | E | N |\n * | N^=14 | N^ | W^ | S^ | E^ | N | W | S | E |\n *\n * [This is a Cayley table]{@link https://en.wikipedia.org/wiki/Cayley_table}\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotationSecond - Second operation, which\n * is the row in the above cayley table.\n * @param {PIXI.GD8Symmetry} rotationFirst - First operation, which\n * is the column in the above cayley table.\n * @return {PIXI.GD8Symmetry} Composed operation\n */\n add: function (rotationSecond, rotationFirst) { return (\n rotationCayley[rotationSecond][rotationFirst]\n ); },\n\n /**\n * Reverse of `add`.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotationSecond - Second operation\n * @param {PIXI.GD8Symmetry} rotationFirst - First operation\n * @return {PIXI.GD8Symmetry} Result\n */\n sub: function (rotationSecond, rotationFirst) { return (\n rotationCayley[rotationSecond][GroupD8.inv(rotationFirst)]\n ); },\n\n /**\n * Adds 180 degrees to rotation, which is a commutative\n * operation.\n *\n * @memberof PIXI.GroupD8\n * @param {number} rotation - The number to rotate.\n * @returns {number} Rotated number\n */\n rotate180: function (rotation) { return rotation ^ 4; },\n\n /**\n * Checks if the rotation angle is vertical, i.e. south\n * or north. It doesn't work for reflections.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotation - The number to check.\n * @returns {boolean} Whether or not the direction is vertical\n */\n isVertical: function (rotation) { return (rotation & 3) === 2; }, // rotation % 4 === 2\n\n /**\n * Approximates the vector `V(dx,dy)` into one of the\n * eight directions provided by `GroupD8`.\n *\n * @memberof PIXI.GroupD8\n * @param {number} dx - X-component of the vector\n * @param {number} dy - Y-component of the vector\n * @return {PIXI.GD8Symmetry} Approximation of the vector into\n * one of the eight symmetries.\n */\n byDirection: function (dx, dy) {\n if (Math.abs(dx) * 2 <= Math.abs(dy))\n {\n if (dy >= 0)\n {\n return GroupD8.S;\n }\n\n return GroupD8.N;\n }\n else if (Math.abs(dy) * 2 <= Math.abs(dx))\n {\n if (dx > 0)\n {\n return GroupD8.E;\n }\n\n return GroupD8.W;\n }\n else if (dy > 0)\n {\n if (dx > 0)\n {\n return GroupD8.SE;\n }\n\n return GroupD8.SW;\n }\n else if (dx > 0)\n {\n return GroupD8.NE;\n }\n\n return GroupD8.NW;\n },\n\n /**\n * Helps sprite to compensate texture packer rotation.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.Matrix} matrix - sprite world matrix\n * @param {PIXI.GD8Symmetry} rotation - The rotation factor to use.\n * @param {number} tx - sprite anchoring\n * @param {number} ty - sprite anchoring\n */\n matrixAppendRotationInv: function (matrix, rotation, tx, ty) {\n if ( tx === void 0 ) tx = 0;\n if ( ty === void 0 ) ty = 0;\n\n // Packer used \"rotation\", we use \"inv(rotation)\"\n var mat = rotationMatrices[GroupD8.inv(rotation)];\n\n mat.tx = tx;\n mat.ty = ty;\n matrix.append(mat);\n },\n};\n\n/**\n * Transform that takes care about its versions\n *\n * @class\n * @memberof PIXI\n */\nvar Transform = function Transform()\n{\n /**\n * The world transformation matrix.\n *\n * @member {PIXI.Matrix}\n */\n this.worldTransform = new Matrix();\n\n /**\n * The local transformation matrix.\n *\n * @member {PIXI.Matrix}\n */\n this.localTransform = new Matrix();\n\n /**\n * The coordinate of the object relative to the local coordinates of the parent.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.position = new ObservablePoint(this.onChange, this, 0, 0);\n\n /**\n * The scale factor of the object.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.scale = new ObservablePoint(this.onChange, this, 1, 1);\n\n /**\n * The pivot point of the displayObject that it rotates around.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.pivot = new ObservablePoint(this.onChange, this, 0, 0);\n\n /**\n * The skew amount, on the x and y axis.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.skew = new ObservablePoint(this.updateSkew, this, 0, 0);\n\n /**\n * The rotation amount.\n *\n * @protected\n * @member {number}\n */\n this._rotation = 0;\n\n /**\n * The X-coordinate value of the normalized local X axis,\n * the first column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._cx = 1;\n\n /**\n * The Y-coordinate value of the normalized local X axis,\n * the first column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._sx = 0;\n\n /**\n * The X-coordinate value of the normalized local Y axis,\n * the second column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._cy = 0;\n\n /**\n * The Y-coordinate value of the normalized local Y axis,\n * the second column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._sy = 1;\n\n /**\n * The locally unique ID of the local transform.\n *\n * @protected\n * @member {number}\n */\n this._localID = 0;\n\n /**\n * The locally unique ID of the local transform\n * used to calculate the current local transformation matrix.\n *\n * @protected\n * @member {number}\n */\n this._currentLocalID = 0;\n\n /**\n * The locally unique ID of the world transform.\n *\n * @protected\n * @member {number}\n */\n this._worldID = 0;\n\n /**\n * The locally unique ID of the parent's world transform\n * used to calculate the current world transformation matrix.\n *\n * @protected\n * @member {number}\n */\n this._parentID = 0;\n};\n\nvar prototypeAccessors$1 = { rotation: { configurable: true } };\n\n/**\n * Called when a value changes.\n *\n * @protected\n */\nTransform.prototype.onChange = function onChange ()\n{\n this._localID++;\n};\n\n/**\n * Called when the skew or the rotation changes.\n *\n * @protected\n */\nTransform.prototype.updateSkew = function updateSkew ()\n{\n this._cx = Math.cos(this._rotation + this.skew._y);\n this._sx = Math.sin(this._rotation + this.skew._y);\n this._cy = -Math.sin(this._rotation - this.skew._x); // cos, added PI/2\n this._sy = Math.cos(this._rotation - this.skew._x); // sin, added PI/2\n\n this._localID++;\n};\n\n/**\n * Updates the local transformation matrix.\n */\nTransform.prototype.updateLocalTransform = function updateLocalTransform ()\n{\n var lt = this.localTransform;\n\n if (this._localID !== this._currentLocalID)\n {\n // get the matrix values of the displayobject based on its transform properties..\n lt.a = this._cx * this.scale._x;\n lt.b = this._sx * this.scale._x;\n lt.c = this._cy * this.scale._y;\n lt.d = this._sy * this.scale._y;\n\n lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c));\n lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d));\n this._currentLocalID = this._localID;\n\n // force an update..\n this._parentID = -1;\n }\n};\n\n/**\n * Updates the local and the world transformation matrices.\n *\n * @param {PIXI.Transform} parentTransform - The parent transform\n */\nTransform.prototype.updateTransform = function updateTransform (parentTransform)\n{\n var lt = this.localTransform;\n\n if (this._localID !== this._currentLocalID)\n {\n // get the matrix values of the displayobject based on its transform properties..\n lt.a = this._cx * this.scale._x;\n lt.b = this._sx * this.scale._x;\n lt.c = this._cy * this.scale._y;\n lt.d = this._sy * this.scale._y;\n\n lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c));\n lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d));\n this._currentLocalID = this._localID;\n\n // force an update..\n this._parentID = -1;\n }\n\n if (this._parentID !== parentTransform._worldID)\n {\n // concat the parent matrix with the objects transform.\n var pt = parentTransform.worldTransform;\n var wt = this.worldTransform;\n\n wt.a = (lt.a * pt.a) + (lt.b * pt.c);\n wt.b = (lt.a * pt.b) + (lt.b * pt.d);\n wt.c = (lt.c * pt.a) + (lt.d * pt.c);\n wt.d = (lt.c * pt.b) + (lt.d * pt.d);\n wt.tx = (lt.tx * pt.a) + (lt.ty * pt.c) + pt.tx;\n wt.ty = (lt.tx * pt.b) + (lt.ty * pt.d) + pt.ty;\n\n this._parentID = parentTransform._worldID;\n\n // update the id of the transform..\n this._worldID++;\n }\n};\n\n/**\n * Decomposes a matrix and sets the transforms properties based on it.\n *\n * @param {PIXI.Matrix} matrix - The matrix to decompose\n */\nTransform.prototype.setFromMatrix = function setFromMatrix (matrix)\n{\n matrix.decompose(this);\n this._localID++;\n};\n\n/**\n * The rotation of the object in radians.\n *\n * @member {number}\n */\nprototypeAccessors$1.rotation.get = function ()\n{\n return this._rotation;\n};\n\nprototypeAccessors$1.rotation.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._rotation !== value)\n {\n this._rotation = value;\n this.updateSkew();\n }\n};\n\nObject.defineProperties( Transform.prototype, prototypeAccessors$1 );\n\n/**\n * A default (identity) transform\n *\n * @static\n * @constant\n * @member {PIXI.Transform}\n */\nTransform.IDENTITY = new Transform();\n\n/**\n * Size object, contains width and height\n *\n * @memberof PIXI\n * @typedef {object} ISize\n * @property {number} width - Width component\n * @property {number} height - Height component\n */\n\n/**\n * Rectangle object is an area defined by its position, as indicated by its top-left corner\n * point (x, y) and by its width and its height.\n *\n * @class\n * @memberof PIXI\n */\nvar Rectangle = function Rectangle(x, y, width, height)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = Number(x);\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = Number(y);\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = Number(width);\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = Number(height);\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.RECT\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.RECT;\n};\n\nvar prototypeAccessors$2 = { left: { configurable: true },right: { configurable: true },top: { configurable: true },bottom: { configurable: true } };\nvar staticAccessors$1 = { EMPTY: { configurable: true } };\n\n/**\n * returns the left edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.left.get = function ()\n{\n return this.x;\n};\n\n/**\n * returns the right edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.right.get = function ()\n{\n return this.x + this.width;\n};\n\n/**\n * returns the top edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.top.get = function ()\n{\n return this.y;\n};\n\n/**\n * returns the bottom edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.bottom.get = function ()\n{\n return this.y + this.height;\n};\n\n/**\n * A constant empty rectangle.\n *\n * @static\n * @constant\n * @member {PIXI.Rectangle}\n */\nstaticAccessors$1.EMPTY.get = function ()\n{\n return new Rectangle(0, 0, 0, 0);\n};\n\n/**\n * Creates a clone of this Rectangle\n *\n * @return {PIXI.Rectangle} a copy of the rectangle\n */\nRectangle.prototype.clone = function clone ()\n{\n return new Rectangle(this.x, this.y, this.width, this.height);\n};\n\n/**\n * Copies another rectangle to this one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to copy from.\n * @return {PIXI.Rectangle} Returns itself.\n */\nRectangle.prototype.copyFrom = function copyFrom (rectangle)\n{\n this.x = rectangle.x;\n this.y = rectangle.y;\n this.width = rectangle.width;\n this.height = rectangle.height;\n\n return this;\n};\n\n/**\n * Copies this rectangle to another one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to copy to.\n * @return {PIXI.Rectangle} Returns given parameter.\n */\nRectangle.prototype.copyTo = function copyTo (rectangle)\n{\n rectangle.x = this.x;\n rectangle.y = this.y;\n rectangle.width = this.width;\n rectangle.height = this.height;\n\n return rectangle;\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this Rectangle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Rectangle\n */\nRectangle.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n\n if (x >= this.x && x < this.x + this.width)\n {\n if (y >= this.y && y < this.y + this.height)\n {\n return true;\n }\n }\n\n return false;\n};\n\n/**\n * Pads the rectangle making it grow in all directions.\n *\n * @param {number} paddingX - The horizontal padding amount.\n * @param {number} paddingY - The vertical padding amount.\n */\nRectangle.prototype.pad = function pad (paddingX, paddingY)\n{\n paddingX = paddingX || 0;\n paddingY = paddingY || ((paddingY !== 0) ? paddingX : 0);\n\n this.x -= paddingX;\n this.y -= paddingY;\n\n this.width += paddingX * 2;\n this.height += paddingY * 2;\n};\n\n/**\n * Fits this rectangle around the passed one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to fit.\n */\nRectangle.prototype.fit = function fit (rectangle)\n{\n var x1 = Math.max(this.x, rectangle.x);\n var x2 = Math.min(this.x + this.width, rectangle.x + rectangle.width);\n var y1 = Math.max(this.y, rectangle.y);\n var y2 = Math.min(this.y + this.height, rectangle.y + rectangle.height);\n\n this.x = x1;\n this.width = Math.max(x2 - x1, 0);\n this.y = y1;\n this.height = Math.max(y2 - y1, 0);\n};\n\n/**\n * Enlarges rectangle that way its corners lie on grid\n *\n * @param {number} [resolution=1] resolution\n * @param {number} [eps=0.001] precision\n */\nRectangle.prototype.ceil = function ceil (resolution, eps)\n{\n if ( resolution === void 0 ) resolution = 1;\n if ( eps === void 0 ) eps = 0.001;\n\n var x2 = Math.ceil((this.x + this.width - eps) * resolution) / resolution;\n var y2 = Math.ceil((this.y + this.height - eps) * resolution) / resolution;\n\n this.x = Math.floor((this.x + eps) * resolution) / resolution;\n this.y = Math.floor((this.y + eps) * resolution) / resolution;\n\n this.width = x2 - this.x;\n this.height = y2 - this.y;\n};\n\n/**\n * Enlarges this rectangle to include the passed rectangle.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to include.\n */\nRectangle.prototype.enlarge = function enlarge (rectangle)\n{\n var x1 = Math.min(this.x, rectangle.x);\n var x2 = Math.max(this.x + this.width, rectangle.x + rectangle.width);\n var y1 = Math.min(this.y, rectangle.y);\n var y2 = Math.max(this.y + this.height, rectangle.y + rectangle.height);\n\n this.x = x1;\n this.width = x2 - x1;\n this.y = y1;\n this.height = y2 - y1;\n};\n\nObject.defineProperties( Rectangle.prototype, prototypeAccessors$2 );\nObject.defineProperties( Rectangle, staticAccessors$1 );\n\n/**\n * The Circle object is used to help draw graphics and can also be used to specify a hit area for displayObjects.\n *\n * @class\n * @memberof PIXI\n */\nvar Circle = function Circle(x, y, radius)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( radius === void 0 ) radius = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.radius = radius;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.CIRC\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.CIRC;\n};\n\n/**\n * Creates a clone of this Circle instance\n *\n * @return {PIXI.Circle} a copy of the Circle\n */\nCircle.prototype.clone = function clone ()\n{\n return new Circle(this.x, this.y, this.radius);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this circle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Circle\n */\nCircle.prototype.contains = function contains (x, y)\n{\n if (this.radius <= 0)\n {\n return false;\n }\n\n var r2 = this.radius * this.radius;\n var dx = (this.x - x);\n var dy = (this.y - y);\n\n dx *= dx;\n dy *= dy;\n\n return (dx + dy <= r2);\n};\n\n/**\n* Returns the framing rectangle of the circle as a Rectangle object\n*\n* @return {PIXI.Rectangle} the framing rectangle\n*/\nCircle.prototype.getBounds = function getBounds ()\n{\n return new Rectangle(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2);\n};\n\n/**\n * The Ellipse object is used to help draw graphics and can also be used to specify a hit area for displayObjects.\n *\n * @class\n * @memberof PIXI\n */\nvar Ellipse = function Ellipse(x, y, halfWidth, halfHeight)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( halfWidth === void 0 ) halfWidth = 0;\n if ( halfHeight === void 0 ) halfHeight = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = halfWidth;\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = halfHeight;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.ELIP\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.ELIP;\n};\n\n/**\n * Creates a clone of this Ellipse instance\n *\n * @return {PIXI.Ellipse} a copy of the ellipse\n */\nEllipse.prototype.clone = function clone ()\n{\n return new Ellipse(this.x, this.y, this.width, this.height);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this ellipse\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coords are within this ellipse\n */\nEllipse.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n\n // normalize the coords to an ellipse with center 0,0\n var normx = ((x - this.x) / this.width);\n var normy = ((y - this.y) / this.height);\n\n normx *= normx;\n normy *= normy;\n\n return (normx + normy <= 1);\n};\n\n/**\n * Returns the framing rectangle of the ellipse as a Rectangle object\n *\n * @return {PIXI.Rectangle} the framing rectangle\n */\nEllipse.prototype.getBounds = function getBounds ()\n{\n return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height);\n};\n\n/**\n * A class to define a shape via user defined co-orinates.\n *\n * @class\n * @memberof PIXI\n */\nvar Polygon = function Polygon()\n{\n var points = [], len = arguments.length;\n while ( len-- ) points[ len ] = arguments[ len ];\n\n if (Array.isArray(points[0]))\n {\n points = points[0];\n }\n\n // if this is an array of points, convert it to a flat array of numbers\n if (points[0] instanceof Point)\n {\n var p = [];\n\n for (var i = 0, il = points.length; i < il; i++)\n {\n p.push(points[i].x, points[i].y);\n }\n\n points = p;\n }\n\n /**\n * An array of the points of this polygon\n *\n * @member {number[]}\n */\n this.points = points;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.POLY\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.POLY;\n\n /**\n * `false` after moveTo, `true` after `closePath`. In all other cases it is `true`.\n * @member {boolean}\n * @default true\n */\n this.closeStroke = true;\n};\n\n/**\n * Creates a clone of this polygon\n *\n * @return {PIXI.Polygon} a copy of the polygon\n */\nPolygon.prototype.clone = function clone ()\n{\n var polygon = new Polygon(this.points.slice());\n\n polygon.closeStroke = this.closeStroke;\n\n return polygon;\n};\n\n/**\n * Checks whether the x and y coordinates passed to this function are contained within this polygon\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this polygon\n */\nPolygon.prototype.contains = function contains (x, y)\n{\n var inside = false;\n\n // use some raycasting to test hits\n // https://github.com/substack/point-in-polygon/blob/master/index.js\n var length = this.points.length / 2;\n\n for (var i = 0, j = length - 1; i < length; j = i++)\n {\n var xi = this.points[i * 2];\n var yi = this.points[(i * 2) + 1];\n var xj = this.points[j * 2];\n var yj = this.points[(j * 2) + 1];\n var intersect = ((yi > y) !== (yj > y)) && (x < ((xj - xi) * ((y - yi) / (yj - yi))) + xi);\n\n if (intersect)\n {\n inside = !inside;\n }\n }\n\n return inside;\n};\n\n/**\n * The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its\n * top-left corner point (x, y) and by its width and its height and its radius.\n *\n * @class\n * @memberof PIXI\n */\nvar RoundedRectangle = function RoundedRectangle(x, y, width, height, radius)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n if ( radius === void 0 ) radius = 20;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = width;\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = height;\n\n /**\n * @member {number}\n * @default 20\n */\n this.radius = radius;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readonly\n * @default PIXI.SHAPES.RREC\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.RREC;\n};\n\n/**\n * Creates a clone of this Rounded Rectangle\n *\n * @return {PIXI.RoundedRectangle} a copy of the rounded rectangle\n */\nRoundedRectangle.prototype.clone = function clone ()\n{\n return new RoundedRectangle(this.x, this.y, this.width, this.height, this.radius);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this Rounded Rectangle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Rounded Rectangle\n */\nRoundedRectangle.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n if (x >= this.x && x <= this.x + this.width)\n {\n if (y >= this.y && y <= this.y + this.height)\n {\n if ((y >= this.y + this.radius && y <= this.y + this.height - this.radius)\n || (x >= this.x + this.radius && x <= this.x + this.width - this.radius))\n {\n return true;\n }\n var dx = x - (this.x + this.radius);\n var dy = y - (this.y + this.radius);\n var radius2 = this.radius * this.radius;\n\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dx = x - (this.x + this.width - this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dy = y - (this.y + this.height - this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dx = x - (this.x + this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n }\n }\n\n return false;\n};\n\n/**\n * Math classes and utilities mixed into PIXI namespace.\n *\n * @lends PIXI\n */\n\nexport { Circle, DEG_TO_RAD, Ellipse, GroupD8, Matrix, ObservablePoint, PI_2, Point, Polygon, RAD_TO_DEG, Rectangle, RoundedRectangle, SHAPES, Transform };\n//# sourceMappingURL=math.es.js.map\n","/*!\n * @pixi/display - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/display is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nimport { Rectangle, RAD_TO_DEG, DEG_TO_RAD, Transform } from '@pixi/math';\nimport { EventEmitter, removeItems } from '@pixi/utils';\n\n/**\n * Sets the default value for the container property 'sortableChildren'.\n * If set to true, the container will sort its children by zIndex value\n * when updateTransform() is called, or manually if sortChildren() is called.\n *\n * This actually changes the order of elements in the array, so should be treated\n * as a basic solution that is not performant compared to other solutions,\n * such as @link https://github.com/pixijs/pixi-display\n *\n * Also be aware of that this may not work nicely with the addChildAt() function,\n * as the zIndex sorting may cause the child to automatically sorted to another position.\n *\n * @static\n * @constant\n * @name SORTABLE_CHILDREN\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\nsettings.SORTABLE_CHILDREN = false;\n\n/**\n * 'Builder' pattern for bounds rectangles.\n *\n * This could be called an Axis-Aligned Bounding Box.\n * It is not an actual shape. It is a mutable thing; no 'EMPTY' or those kind of problems.\n *\n * @class\n * @memberof PIXI\n */\nvar Bounds = function Bounds()\n{\n /**\n * @member {number}\n * @default 0\n */\n this.minX = Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.minY = Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.maxX = -Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.maxY = -Infinity;\n\n this.rect = null;\n};\n\n/**\n * Checks if bounds are empty.\n *\n * @return {boolean} True if empty.\n */\nBounds.prototype.isEmpty = function isEmpty ()\n{\n return this.minX > this.maxX || this.minY > this.maxY;\n};\n\n/**\n * Clears the bounds and resets.\n *\n */\nBounds.prototype.clear = function clear ()\n{\n this.updateID++;\n\n this.minX = Infinity;\n this.minY = Infinity;\n this.maxX = -Infinity;\n this.maxY = -Infinity;\n};\n\n/**\n * Can return Rectangle.EMPTY constant, either construct new rectangle, either use your rectangle\n * It is not guaranteed that it will return tempRect\n *\n * @param {PIXI.Rectangle} rect - temporary object will be used if AABB is not empty\n * @returns {PIXI.Rectangle} A rectangle of the bounds\n */\nBounds.prototype.getRectangle = function getRectangle (rect)\n{\n if (this.minX > this.maxX || this.minY > this.maxY)\n {\n return Rectangle.EMPTY;\n }\n\n rect = rect || new Rectangle(0, 0, 1, 1);\n\n rect.x = this.minX;\n rect.y = this.minY;\n rect.width = this.maxX - this.minX;\n rect.height = this.maxY - this.minY;\n\n return rect;\n};\n\n/**\n * This function should be inlined when its possible.\n *\n * @param {PIXI.Point} point - The point to add.\n */\nBounds.prototype.addPoint = function addPoint (point)\n{\n this.minX = Math.min(this.minX, point.x);\n this.maxX = Math.max(this.maxX, point.x);\n this.minY = Math.min(this.minY, point.y);\n this.maxY = Math.max(this.maxY, point.y);\n};\n\n/**\n * Adds a quad, not transformed\n *\n * @param {Float32Array} vertices - The verts to add.\n */\nBounds.prototype.addQuad = function addQuad (vertices)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n var x = vertices[0];\n var y = vertices[1];\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[2];\n y = vertices[3];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[4];\n y = vertices[5];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[6];\n y = vertices[7];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds sprite frame, transformed.\n *\n * @param {PIXI.Transform} transform - TODO\n * @param {number} x0 - TODO\n * @param {number} y0 - TODO\n * @param {number} x1 - TODO\n * @param {number} y1 - TODO\n */\nBounds.prototype.addFrame = function addFrame (transform, x0, y0, x1, y1)\n{\n var matrix = transform.worldTransform;\n var a = matrix.a;\n var b = matrix.b;\n var c = matrix.c;\n var d = matrix.d;\n var tx = matrix.tx;\n var ty = matrix.ty;\n\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n var x = (a * x0) + (c * y0) + tx;\n var y = (b * x0) + (d * y0) + ty;\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x1) + (c * y0) + tx;\n y = (b * x1) + (d * y0) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x0) + (c * y1) + tx;\n y = (b * x0) + (d * y1) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x1) + (c * y1) + tx;\n y = (b * x1) + (d * y1) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds screen vertices from array\n *\n * @param {Float32Array} vertexData - calculated vertices\n * @param {number} beginOffset - begin offset\n * @param {number} endOffset - end offset, excluded\n */\nBounds.prototype.addVertexData = function addVertexData (vertexData, beginOffset, endOffset)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n for (var i = beginOffset; i < endOffset; i += 2)\n {\n var x = vertexData[i];\n var y = vertexData[i + 1];\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n }\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Add an array of mesh vertices\n *\n * @param {PIXI.Transform} transform - mesh transform\n * @param {Float32Array} vertices - mesh coordinates in array\n * @param {number} beginOffset - begin offset\n * @param {number} endOffset - end offset, excluded\n */\nBounds.prototype.addVertices = function addVertices (transform, vertices, beginOffset, endOffset)\n{\n var matrix = transform.worldTransform;\n var a = matrix.a;\n var b = matrix.b;\n var c = matrix.c;\n var d = matrix.d;\n var tx = matrix.tx;\n var ty = matrix.ty;\n\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n for (var i = beginOffset; i < endOffset; i += 2)\n {\n var rawX = vertices[i];\n var rawY = vertices[i + 1];\n var x = (a * rawX) + (c * rawY) + tx;\n var y = (d * rawY) + (b * rawX) + ty;\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n }\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds other Bounds\n *\n * @param {PIXI.Bounds} bounds - TODO\n */\nBounds.prototype.addBounds = function addBounds (bounds)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = bounds.minX < minX ? bounds.minX : minX;\n this.minY = bounds.minY < minY ? bounds.minY : minY;\n this.maxX = bounds.maxX > maxX ? bounds.maxX : maxX;\n this.maxY = bounds.maxY > maxY ? bounds.maxY : maxY;\n};\n\n/**\n * Adds other Bounds, masked with Bounds\n *\n * @param {PIXI.Bounds} bounds - TODO\n * @param {PIXI.Bounds} mask - TODO\n */\nBounds.prototype.addBoundsMask = function addBoundsMask (bounds, mask)\n{\n var _minX = bounds.minX > mask.minX ? bounds.minX : mask.minX;\n var _minY = bounds.minY > mask.minY ? bounds.minY : mask.minY;\n var _maxX = bounds.maxX < mask.maxX ? bounds.maxX : mask.maxX;\n var _maxY = bounds.maxY < mask.maxY ? bounds.maxY : mask.maxY;\n\n if (_minX <= _maxX && _minY <= _maxY)\n {\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = _minX < minX ? _minX : minX;\n this.minY = _minY < minY ? _minY : minY;\n this.maxX = _maxX > maxX ? _maxX : maxX;\n this.maxY = _maxY > maxY ? _maxY : maxY;\n }\n};\n\n/**\n * Adds other Bounds, masked with Rectangle\n *\n * @param {PIXI.Bounds} bounds - TODO\n * @param {PIXI.Rectangle} area - TODO\n */\nBounds.prototype.addBoundsArea = function addBoundsArea (bounds, area)\n{\n var _minX = bounds.minX > area.x ? bounds.minX : area.x;\n var _minY = bounds.minY > area.y ? bounds.minY : area.y;\n var _maxX = bounds.maxX < area.x + area.width ? bounds.maxX : (area.x + area.width);\n var _maxY = bounds.maxY < area.y + area.height ? bounds.maxY : (area.y + area.height);\n\n if (_minX <= _maxX && _minY <= _maxY)\n {\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = _minX < minX ? _minX : minX;\n this.minY = _minY < minY ? _minY : minY;\n this.maxX = _maxX > maxX ? _maxX : maxX;\n this.maxY = _maxY > maxY ? _maxY : maxY;\n }\n};\n\n// _tempDisplayObjectParent = new DisplayObject();\n\n/**\n * The base class for all objects that are rendered on the screen.\n *\n * This is an abstract class and should not be used on its own; rather it should be extended.\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar DisplayObject = /*@__PURE__*/(function (EventEmitter) {\n function DisplayObject()\n {\n EventEmitter.call(this);\n\n this.tempDisplayObjectParent = null;\n\n // TODO: need to create Transform from factory\n /**\n * World transform and local transform of this object.\n * This will become read-only later, please do not assign anything there unless you know what are you doing.\n *\n * @member {PIXI.Transform}\n */\n this.transform = new Transform();\n\n /**\n * The opacity of the object.\n *\n * @member {number}\n */\n this.alpha = 1;\n\n /**\n * The visibility of the object. If false the object will not be drawn, and\n * the updateTransform function will not be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually.\n *\n * @member {boolean}\n */\n this.visible = true;\n\n /**\n * Can this object be rendered, if false the object will not be drawn but the updateTransform\n * methods will still be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds manually.\n *\n * @member {boolean}\n */\n this.renderable = true;\n\n /**\n * The display object container that contains this display object.\n *\n * @member {PIXI.Container}\n * @readonly\n */\n this.parent = null;\n\n /**\n * The multiplied alpha of the displayObject.\n *\n * @member {number}\n * @readonly\n */\n this.worldAlpha = 1;\n\n /**\n * Which index in the children array the display component was before the previous zIndex sort.\n * Used by containers to help sort objects with the same zIndex, by using previous array index as the decider.\n *\n * @member {number}\n * @protected\n */\n this._lastSortedIndex = 0;\n\n /**\n * The zIndex of the displayObject.\n * A higher value will mean it will be rendered on top of other displayObjects within the same container.\n *\n * @member {number}\n * @protected\n */\n this._zIndex = 0;\n\n /**\n * The area the filter is applied to. This is used as more of an optimization\n * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle.\n *\n * Also works as an interaction mask.\n *\n * @member {?PIXI.Rectangle}\n */\n this.filterArea = null;\n\n /**\n * Sets the filters for the displayObject.\n * * IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer.\n * To remove filters simply set this property to `'null'`.\n *\n * @member {?PIXI.Filter[]}\n */\n this.filters = null;\n this._enabledFilters = null;\n\n /**\n * The bounds object, this is used to calculate and store the bounds of the displayObject.\n *\n * @member {PIXI.Bounds}\n * @protected\n */\n this._bounds = new Bounds();\n this._boundsID = 0;\n this._lastBoundsID = -1;\n this._boundsRect = null;\n this._localBoundsRect = null;\n\n /**\n * The original, cached mask of the object.\n *\n * @member {PIXI.Graphics|PIXI.Sprite|null}\n * @protected\n */\n this._mask = null;\n\n /**\n * Fired when this DisplayObject is added to a Container.\n *\n * @event PIXI.DisplayObject#added\n * @param {PIXI.Container} container - The container added to.\n */\n\n /**\n * Fired when this DisplayObject is removed from a Container.\n *\n * @event PIXI.DisplayObject#removed\n * @param {PIXI.Container} container - The container removed from.\n */\n\n /**\n * If the object has been destroyed via destroy(). If true, it should not be used.\n *\n * @member {boolean}\n * @protected\n */\n this._destroyed = false;\n\n /**\n * used to fast check if a sprite is.. a sprite!\n * @member {boolean}\n */\n this.isSprite = false;\n }\n\n if ( EventEmitter ) DisplayObject.__proto__ = EventEmitter;\n DisplayObject.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n DisplayObject.prototype.constructor = DisplayObject;\n\n var prototypeAccessors = { _tempDisplayObjectParent: { configurable: true },x: { configurable: true },y: { configurable: true },worldTransform: { configurable: true },localTransform: { configurable: true },position: { configurable: true },scale: { configurable: true },pivot: { configurable: true },skew: { configurable: true },rotation: { configurable: true },angle: { configurable: true },zIndex: { configurable: true },worldVisible: { configurable: true },mask: { configurable: true } };\n\n /**\n * @protected\n * @member {PIXI.DisplayObject}\n */\n DisplayObject.mixin = function mixin (source)\n {\n // in ES8/ES2017, this would be really easy:\n // Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n\n // get all the enumerable property keys\n var keys = Object.keys(source);\n\n // loop through properties\n for (var i = 0; i < keys.length; ++i)\n {\n var propertyName = keys[i];\n\n // Set the property using the property descriptor - this works for accessors and normal value properties\n Object.defineProperty(\n DisplayObject.prototype,\n propertyName,\n Object.getOwnPropertyDescriptor(source, propertyName)\n );\n }\n };\n\n prototypeAccessors._tempDisplayObjectParent.get = function ()\n {\n if (this.tempDisplayObjectParent === null)\n {\n this.tempDisplayObjectParent = new DisplayObject();\n }\n\n return this.tempDisplayObjectParent;\n };\n\n /**\n * Updates the object transform for rendering.\n *\n * TODO - Optimization pass!\n */\n DisplayObject.prototype.updateTransform = function updateTransform ()\n {\n this.transform.updateTransform(this.parent.transform);\n // multiply the alphas..\n this.worldAlpha = this.alpha * this.parent.worldAlpha;\n\n this._bounds.updateID++;\n };\n\n /**\n * Recursively updates transform of all objects from the root to this one\n * internal function for toLocal()\n */\n DisplayObject.prototype._recursivePostUpdateTransform = function _recursivePostUpdateTransform ()\n {\n if (this.parent)\n {\n this.parent._recursivePostUpdateTransform();\n this.transform.updateTransform(this.parent.transform);\n }\n else\n {\n this.transform.updateTransform(this._tempDisplayObjectParent.transform);\n }\n };\n\n /**\n * Retrieves the bounds of the displayObject as a rectangle object.\n *\n * @param {boolean} [skipUpdate] - Setting to `true` will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost.\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation.\n * @return {PIXI.Rectangle} The rectangular bounding area.\n */\n DisplayObject.prototype.getBounds = function getBounds (skipUpdate, rect)\n {\n if (!skipUpdate)\n {\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this._recursivePostUpdateTransform();\n this.updateTransform();\n }\n }\n\n if (this._boundsID !== this._lastBoundsID)\n {\n this.calculateBounds();\n this._lastBoundsID = this._boundsID;\n }\n\n if (!rect)\n {\n if (!this._boundsRect)\n {\n this._boundsRect = new Rectangle();\n }\n\n rect = this._boundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n };\n\n /**\n * Retrieves the local bounds of the displayObject as a rectangle object.\n *\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation.\n * @return {PIXI.Rectangle} The rectangular bounding area.\n */\n DisplayObject.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n var transformRef = this.transform;\n var parentRef = this.parent;\n\n this.parent = null;\n this.transform = this._tempDisplayObjectParent.transform;\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n var bounds = this.getBounds(false, rect);\n\n this.parent = parentRef;\n this.transform = transformRef;\n\n return bounds;\n };\n\n /**\n * Calculates the global position of the display object.\n *\n * @param {PIXI.IPoint} position - The world origin to calculate from.\n * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point).\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform.\n * @return {PIXI.IPoint} A point object representing the position of this object.\n */\n DisplayObject.prototype.toGlobal = function toGlobal (position, point, skipUpdate)\n {\n if ( skipUpdate === void 0 ) skipUpdate = false;\n\n if (!skipUpdate)\n {\n this._recursivePostUpdateTransform();\n\n // this parent check is for just in case the item is a root object.\n // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly\n // this is mainly to avoid a parent check in the main loop. Every little helps for performance :)\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.displayObjectUpdateTransform();\n this.parent = null;\n }\n else\n {\n this.displayObjectUpdateTransform();\n }\n }\n\n // don't need to update the lot\n return this.worldTransform.apply(position, point);\n };\n\n /**\n * Calculates the local position of the display object relative to another point.\n *\n * @param {PIXI.IPoint} position - The world origin to calculate from.\n * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from.\n * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point).\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform\n * @return {PIXI.IPoint} A point object representing the position of this object\n */\n DisplayObject.prototype.toLocal = function toLocal (position, from, point, skipUpdate)\n {\n if (from)\n {\n position = from.toGlobal(position, point, skipUpdate);\n }\n\n if (!skipUpdate)\n {\n this._recursivePostUpdateTransform();\n\n // this parent check is for just in case the item is a root object.\n // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly\n // this is mainly to avoid a parent check in the main loop. Every little helps for performance :)\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.displayObjectUpdateTransform();\n this.parent = null;\n }\n else\n {\n this.displayObjectUpdateTransform();\n }\n }\n\n // simply apply the matrix..\n return this.worldTransform.applyInverse(position, point);\n };\n\n /**\n * Renders the object using the WebGL renderer.\n *\n * @param {PIXI.Renderer} renderer - The renderer.\n */\n DisplayObject.prototype.render = function render (renderer) // eslint-disable-line no-unused-vars\n {\n // OVERWRITE;\n };\n\n /**\n * Set the parent Container of this DisplayObject.\n *\n * @param {PIXI.Container} container - The Container to add this DisplayObject to.\n * @return {PIXI.Container} The Container that this DisplayObject was added to.\n */\n DisplayObject.prototype.setParent = function setParent (container)\n {\n if (!container || !container.addChild)\n {\n throw new Error('setParent: Argument must be a Container');\n }\n\n container.addChild(this);\n\n return container;\n };\n\n /**\n * Convenience function to set the position, scale, skew and pivot at once.\n *\n * @param {number} [x=0] - The X position\n * @param {number} [y=0] - The Y position\n * @param {number} [scaleX=1] - The X scale value\n * @param {number} [scaleY=1] - The Y scale value\n * @param {number} [rotation=0] - The rotation\n * @param {number} [skewX=0] - The X skew value\n * @param {number} [skewY=0] - The Y skew value\n * @param {number} [pivotX=0] - The X pivot value\n * @param {number} [pivotY=0] - The Y pivot value\n * @return {PIXI.DisplayObject} The DisplayObject instance\n */\n DisplayObject.prototype.setTransform = function setTransform (x, y, scaleX, scaleY, rotation, skewX, skewY, pivotX, pivotY)\n {\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( scaleX === void 0 ) scaleX = 1;\n if ( scaleY === void 0 ) scaleY = 1;\n if ( rotation === void 0 ) rotation = 0;\n if ( skewX === void 0 ) skewX = 0;\n if ( skewY === void 0 ) skewY = 0;\n if ( pivotX === void 0 ) pivotX = 0;\n if ( pivotY === void 0 ) pivotY = 0;\n\n this.position.x = x;\n this.position.y = y;\n this.scale.x = !scaleX ? 1 : scaleX;\n this.scale.y = !scaleY ? 1 : scaleY;\n this.rotation = rotation;\n this.skew.x = skewX;\n this.skew.y = skewY;\n this.pivot.x = pivotX;\n this.pivot.y = pivotY;\n\n return this;\n };\n\n /**\n * Base destroy method for generic display objects. This will automatically\n * remove the display object from its parent Container as well as remove\n * all current event listeners and internal references. Do not use a DisplayObject\n * after calling `destroy()`.\n *\n */\n DisplayObject.prototype.destroy = function destroy ()\n {\n this.removeAllListeners();\n if (this.parent)\n {\n this.parent.removeChild(this);\n }\n this.transform = null;\n\n this.parent = null;\n\n this._bounds = null;\n this._currentBounds = null;\n this._mask = null;\n\n this.filterArea = null;\n\n this.interactive = false;\n this.interactiveChildren = false;\n\n this._destroyed = true;\n };\n\n /**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n * An alias to position.x\n *\n * @member {number}\n */\n prototypeAccessors.x.get = function ()\n {\n return this.position.x;\n };\n\n prototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.x = value;\n };\n\n /**\n * The position of the displayObject on the y axis relative to the local coordinates of the parent.\n * An alias to position.y\n *\n * @member {number}\n */\n prototypeAccessors.y.get = function ()\n {\n return this.position.y;\n };\n\n prototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.y = value;\n };\n\n /**\n * Current transform of the object based on world (parent) factors.\n *\n * @member {PIXI.Matrix}\n * @readonly\n */\n prototypeAccessors.worldTransform.get = function ()\n {\n return this.transform.worldTransform;\n };\n\n /**\n * Current transform of the object based on local factors: position, scale, other stuff.\n *\n * @member {PIXI.Matrix}\n * @readonly\n */\n prototypeAccessors.localTransform.get = function ()\n {\n return this.transform.localTransform;\n };\n\n /**\n * The coordinate of the object relative to the local coordinates of the parent.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.position.get = function ()\n {\n return this.transform.position;\n };\n\n prototypeAccessors.position.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.copyFrom(value);\n };\n\n /**\n * The scale factor of the object.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.scale.get = function ()\n {\n return this.transform.scale;\n };\n\n prototypeAccessors.scale.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.scale.copyFrom(value);\n };\n\n /**\n * The pivot point of the displayObject that it rotates around.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.pivot.get = function ()\n {\n return this.transform.pivot;\n };\n\n prototypeAccessors.pivot.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.pivot.copyFrom(value);\n };\n\n /**\n * The skew factor for the object in radians.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.skew.get = function ()\n {\n return this.transform.skew;\n };\n\n prototypeAccessors.skew.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.skew.copyFrom(value);\n };\n\n /**\n * The rotation of the object in radians.\n * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees.\n *\n * @member {number}\n */\n prototypeAccessors.rotation.get = function ()\n {\n return this.transform.rotation;\n };\n\n prototypeAccessors.rotation.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.rotation = value;\n };\n\n /**\n * The angle of the object in degrees.\n * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees.\n *\n * @member {number}\n */\n prototypeAccessors.angle.get = function ()\n {\n return this.transform.rotation * RAD_TO_DEG;\n };\n\n prototypeAccessors.angle.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.rotation = value * DEG_TO_RAD;\n };\n\n /**\n * The zIndex of the displayObject.\n * If a container has the sortableChildren property set to true, children will be automatically\n * sorted by zIndex value; a higher value will mean it will be moved towards the end of the array,\n * and thus rendered on top of other displayObjects within the same container.\n *\n * @member {number}\n */\n prototypeAccessors.zIndex.get = function ()\n {\n return this._zIndex;\n };\n\n prototypeAccessors.zIndex.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._zIndex = value;\n if (this.parent)\n {\n this.parent.sortDirty = true;\n }\n };\n\n /**\n * Indicates if the object is globally visible.\n *\n * @member {boolean}\n * @readonly\n */\n prototypeAccessors.worldVisible.get = function ()\n {\n var item = this;\n\n do\n {\n if (!item.visible)\n {\n return false;\n }\n\n item = item.parent;\n } while (item);\n\n return true;\n };\n\n /**\n * Sets a mask for the displayObject. A mask is an object that limits the visibility of an\n * object to the shape of the mask applied to it. In PixiJS a regular mask must be a\n * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it\n * utilities shape clipping. To remove a mask, set this property to `null`.\n *\n * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask.\n * @example\n * const graphics = new PIXI.Graphics();\n * graphics.beginFill(0xFF3300);\n * graphics.drawRect(50, 250, 100, 100);\n * graphics.endFill();\n *\n * const sprite = new PIXI.Sprite(texture);\n * sprite.mask = graphics;\n * @todo At the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask.\n *\n * @member {PIXI.Graphics|PIXI.Sprite|null}\n */\n prototypeAccessors.mask.get = function ()\n {\n return this._mask;\n };\n\n prototypeAccessors.mask.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._mask)\n {\n this._mask.renderable = true;\n this._mask.isMask = false;\n }\n\n this._mask = value;\n\n if (this._mask)\n {\n this._mask.renderable = false;\n this._mask.isMask = true;\n }\n };\n\n Object.defineProperties( DisplayObject.prototype, prototypeAccessors );\n\n return DisplayObject;\n}(EventEmitter));\n\n/**\n * DisplayObject default updateTransform, does not update children of container.\n * Will crash if there's no parent element.\n *\n * @memberof PIXI.DisplayObject#\n * @function displayObjectUpdateTransform\n */\nDisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform;\n\nfunction sortChildren(a, b)\n{\n if (a.zIndex === b.zIndex)\n {\n return a._lastSortedIndex - b._lastSortedIndex;\n }\n\n return a.zIndex - b.zIndex;\n}\n\n/**\n * A Container represents a collection of display objects.\n *\n * It is the base class of all display objects that act as a container for other objects (like Sprites).\n *\n *```js\n * let container = new PIXI.Container();\n * container.addChild(sprite);\n * ```\n *\n * @class\n * @extends PIXI.DisplayObject\n * @memberof PIXI\n */\nvar Container = /*@__PURE__*/(function (DisplayObject) {\n function Container()\n {\n DisplayObject.call(this);\n\n /**\n * The array of children of this container.\n *\n * @member {PIXI.DisplayObject[]}\n * @readonly\n */\n this.children = [];\n\n /**\n * If set to true, the container will sort its children by zIndex value\n * when updateTransform() is called, or manually if sortChildren() is called.\n *\n * This actually changes the order of elements in the array, so should be treated\n * as a basic solution that is not performant compared to other solutions,\n * such as @link https://github.com/pixijs/pixi-display\n *\n * Also be aware of that this may not work nicely with the addChildAt() function,\n * as the zIndex sorting may cause the child to automatically sorted to another position.\n *\n * @see PIXI.settings.SORTABLE_CHILDREN\n *\n * @member {boolean}\n */\n this.sortableChildren = settings.SORTABLE_CHILDREN;\n\n /**\n * Should children be sorted by zIndex at the next updateTransform call.\n * Will get automatically set to true if a new child is added, or if a child's zIndex changes.\n *\n * @member {boolean}\n */\n this.sortDirty = false;\n\n /**\n * Fired when a DisplayObject is added to this Container.\n *\n * @event PIXI.Container#childAdded\n * @param {PIXI.DisplayObject} child - The child added to the Container.\n * @param {PIXI.Container} container - The container that added the child.\n * @param {number} index - The children's index of the added child.\n */\n\n /**\n * Fired when a DisplayObject is removed from this Container.\n *\n * @event PIXI.DisplayObject#removedFrom\n * @param {PIXI.DisplayObject} child - The child removed from the Container.\n * @param {PIXI.Container} container - The container that removed removed the child.\n * @param {number} index - The former children's index of the removed child\n */\n }\n\n if ( DisplayObject ) Container.__proto__ = DisplayObject;\n Container.prototype = Object.create( DisplayObject && DisplayObject.prototype );\n Container.prototype.constructor = Container;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true } };\n\n /**\n * Overridable method that can be used by Container subclasses whenever the children array is modified\n *\n * @protected\n */\n Container.prototype.onChildrenChange = function onChildrenChange ()\n {\n /* empty */\n };\n\n /**\n * Adds one or more children to the container.\n *\n * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)`\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container\n * @return {PIXI.DisplayObject} The first child that was added.\n */\n Container.prototype.addChild = function addChild (child)\n {\n var arguments$1 = arguments;\n\n var argumentsLength = arguments.length;\n\n // if there is only one argument we can bypass looping through the them\n if (argumentsLength > 1)\n {\n // loop through the arguments property and add all children\n // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes\n for (var i = 0; i < argumentsLength; i++)\n {\n this.addChild(arguments$1[i]);\n }\n }\n else\n {\n // if the child has a parent then lets remove it as PixiJS objects can only exist in one place\n if (child.parent)\n {\n child.parent.removeChild(child);\n }\n\n child.parent = this;\n this.sortDirty = true;\n\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n\n this.children.push(child);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(this.children.length - 1);\n this.emit('childAdded', child, this, this.children.length - 1);\n child.emit('added', this);\n }\n\n return child;\n };\n\n /**\n * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown\n *\n * @param {PIXI.DisplayObject} child - The child to add\n * @param {number} index - The index to place the child in\n * @return {PIXI.DisplayObject} The child that was added.\n */\n Container.prototype.addChildAt = function addChildAt (child, index)\n {\n if (index < 0 || index > this.children.length)\n {\n throw new Error((child + \"addChildAt: The index \" + index + \" supplied is out of bounds \" + (this.children.length)));\n }\n\n if (child.parent)\n {\n child.parent.removeChild(child);\n }\n\n child.parent = this;\n this.sortDirty = true;\n\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n\n this.children.splice(index, 0, child);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('added', this);\n this.emit('childAdded', child, this, index);\n\n return child;\n };\n\n /**\n * Swaps the position of 2 Display Objects within this container.\n *\n * @param {PIXI.DisplayObject} child - First display object to swap\n * @param {PIXI.DisplayObject} child2 - Second display object to swap\n */\n Container.prototype.swapChildren = function swapChildren (child, child2)\n {\n if (child === child2)\n {\n return;\n }\n\n var index1 = this.getChildIndex(child);\n var index2 = this.getChildIndex(child2);\n\n this.children[index1] = child2;\n this.children[index2] = child;\n this.onChildrenChange(index1 < index2 ? index1 : index2);\n };\n\n /**\n * Returns the index position of a child DisplayObject instance\n *\n * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify\n * @return {number} The index position of the child display object to identify\n */\n Container.prototype.getChildIndex = function getChildIndex (child)\n {\n var index = this.children.indexOf(child);\n\n if (index === -1)\n {\n throw new Error('The supplied DisplayObject must be a child of the caller');\n }\n\n return index;\n };\n\n /**\n * Changes the position of an existing child in the display object container\n *\n * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number\n * @param {number} index - The resulting index number for the child display object\n */\n Container.prototype.setChildIndex = function setChildIndex (child, index)\n {\n if (index < 0 || index >= this.children.length)\n {\n throw new Error((\"The index \" + index + \" supplied is out of bounds \" + (this.children.length)));\n }\n\n var currentIndex = this.getChildIndex(child);\n\n removeItems(this.children, currentIndex, 1); // remove from old position\n this.children.splice(index, 0, child); // add at new position\n\n this.onChildrenChange(index);\n };\n\n /**\n * Returns the child at the specified index\n *\n * @param {number} index - The index to get the child at\n * @return {PIXI.DisplayObject} The child at the given index, if any.\n */\n Container.prototype.getChildAt = function getChildAt (index)\n {\n if (index < 0 || index >= this.children.length)\n {\n throw new Error((\"getChildAt: Index (\" + index + \") does not exist.\"));\n }\n\n return this.children[index];\n };\n\n /**\n * Removes one or more children from the container.\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove\n * @return {PIXI.DisplayObject} The first child that was removed.\n */\n Container.prototype.removeChild = function removeChild (child)\n {\n var arguments$1 = arguments;\n\n var argumentsLength = arguments.length;\n\n // if there is only one argument we can bypass looping through the them\n if (argumentsLength > 1)\n {\n // loop through the arguments property and add all children\n // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes\n for (var i = 0; i < argumentsLength; i++)\n {\n this.removeChild(arguments$1[i]);\n }\n }\n else\n {\n var index = this.children.indexOf(child);\n\n if (index === -1) { return null; }\n\n child.parent = null;\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n removeItems(this.children, index, 1);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('removed', this);\n this.emit('childRemoved', child, this, index);\n }\n\n return child;\n };\n\n /**\n * Removes a child from the specified index position.\n *\n * @param {number} index - The index to get the child from\n * @return {PIXI.DisplayObject} The child that was removed.\n */\n Container.prototype.removeChildAt = function removeChildAt (index)\n {\n var child = this.getChildAt(index);\n\n // ensure child transform will be recalculated..\n child.parent = null;\n child.transform._parentID = -1;\n removeItems(this.children, index, 1);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('removed', this);\n this.emit('childRemoved', child, this, index);\n\n return child;\n };\n\n /**\n * Removes all children from this container that are within the begin and end indexes.\n *\n * @param {number} [beginIndex=0] - The beginning position.\n * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container.\n * @returns {PIXI.DisplayObject[]} List of removed children\n */\n Container.prototype.removeChildren = function removeChildren (beginIndex, endIndex)\n {\n if ( beginIndex === void 0 ) beginIndex = 0;\n\n var begin = beginIndex;\n var end = typeof endIndex === 'number' ? endIndex : this.children.length;\n var range = end - begin;\n var removed;\n\n if (range > 0 && range <= end)\n {\n removed = this.children.splice(begin, range);\n\n for (var i = 0; i < removed.length; ++i)\n {\n removed[i].parent = null;\n if (removed[i].transform)\n {\n removed[i].transform._parentID = -1;\n }\n }\n\n this._boundsID++;\n\n this.onChildrenChange(beginIndex);\n\n for (var i$1 = 0; i$1 < removed.length; ++i$1)\n {\n removed[i$1].emit('removed', this);\n this.emit('childRemoved', removed[i$1], this, i$1);\n }\n\n return removed;\n }\n else if (range === 0 && this.children.length === 0)\n {\n return [];\n }\n\n throw new RangeError('removeChildren: numeric values are outside the acceptable range.');\n };\n\n /**\n * Sorts children by zIndex. Previous order is mantained for 2 children with the same zIndex.\n */\n Container.prototype.sortChildren = function sortChildren$1 ()\n {\n var sortRequired = false;\n\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n var child = this.children[i];\n\n child._lastSortedIndex = i;\n\n if (!sortRequired && child.zIndex !== 0)\n {\n sortRequired = true;\n }\n }\n\n if (sortRequired && this.children.length > 1)\n {\n this.children.sort(sortChildren);\n }\n\n this.sortDirty = false;\n };\n\n /**\n * Updates the transform on all children of this container for rendering\n */\n Container.prototype.updateTransform = function updateTransform ()\n {\n if (this.sortableChildren && this.sortDirty)\n {\n this.sortChildren();\n }\n\n this._boundsID++;\n\n this.transform.updateTransform(this.parent.transform);\n\n // TODO: check render flags, how to process stuff here\n this.worldAlpha = this.alpha * this.parent.worldAlpha;\n\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n var child = this.children[i];\n\n if (child.visible)\n {\n child.updateTransform();\n }\n }\n };\n\n /**\n * Recalculates the bounds of the container.\n *\n */\n Container.prototype.calculateBounds = function calculateBounds ()\n {\n this._bounds.clear();\n\n this._calculateBounds();\n\n for (var i = 0; i < this.children.length; i++)\n {\n var child = this.children[i];\n\n if (!child.visible || !child.renderable)\n {\n continue;\n }\n\n child.calculateBounds();\n\n // TODO: filter+mask, need to mask both somehow\n if (child._mask)\n {\n child._mask.calculateBounds();\n this._bounds.addBoundsMask(child._bounds, child._mask._bounds);\n }\n else if (child.filterArea)\n {\n this._bounds.addBoundsArea(child._bounds, child.filterArea);\n }\n else\n {\n this._bounds.addBounds(child._bounds);\n }\n }\n\n this._lastBoundsID = this._boundsID;\n };\n\n /**\n * Recalculates the bounds of the object. Override this to\n * calculate the bounds of the specific object (not including children).\n *\n * @protected\n */\n Container.prototype._calculateBounds = function _calculateBounds ()\n {\n // FILL IN//\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype.render = function render (renderer)\n {\n // if the object is not visible or the alpha is 0 then no need to render this element\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n // do a quick check to see if this element has a mask or a filter.\n if (this._mask || (this.filters && this.filters.length))\n {\n this.renderAdvanced(renderer);\n }\n else\n {\n this._render(renderer);\n\n // simple render children!\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n this.children[i].render(renderer);\n }\n }\n };\n\n /**\n * Render the object using the WebGL renderer and advanced features.\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype.renderAdvanced = function renderAdvanced (renderer)\n {\n renderer.batch.flush();\n\n var filters = this.filters;\n var mask = this._mask;\n\n // push filter first as we need to ensure the stencil buffer is correct for any masking\n if (filters)\n {\n if (!this._enabledFilters)\n {\n this._enabledFilters = [];\n }\n\n this._enabledFilters.length = 0;\n\n for (var i = 0; i < filters.length; i++)\n {\n if (filters[i].enabled)\n {\n this._enabledFilters.push(filters[i]);\n }\n }\n\n if (this._enabledFilters.length)\n {\n renderer.filter.push(this, this._enabledFilters);\n }\n }\n\n if (mask)\n {\n renderer.mask.push(this, this._mask);\n }\n\n // add this object to the batch, only rendered if it has a texture.\n this._render(renderer);\n\n // now loop through the children and make sure they get rendered\n for (var i$1 = 0, j = this.children.length; i$1 < j; i$1++)\n {\n this.children[i$1].render(renderer);\n }\n\n renderer.batch.flush();\n\n if (mask)\n {\n renderer.mask.pop(this, this._mask);\n }\n\n if (filters && this._enabledFilters && this._enabledFilters.length)\n {\n renderer.filter.pop();\n }\n };\n\n /**\n * To be overridden by the subclasses.\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype._render = function _render (renderer) // eslint-disable-line no-unused-vars\n {\n // this is where content itself gets rendered...\n };\n\n /**\n * Removes all internal references and listeners as well as removes children from the display list.\n * Do not use a Container after calling `destroy`.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n Container.prototype.destroy = function destroy (options)\n {\n DisplayObject.prototype.destroy.call(this);\n\n this.sortDirty = false;\n\n var destroyChildren = typeof options === 'boolean' ? options : options && options.children;\n\n var oldChildren = this.removeChildren(0, this.children.length);\n\n if (destroyChildren)\n {\n for (var i = 0; i < oldChildren.length; ++i)\n {\n oldChildren[i].destroy(options);\n }\n }\n };\n\n /**\n * The width of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this.scale.x * this.getLocalBounds().width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n var width = this.getLocalBounds().width;\n\n if (width !== 0)\n {\n this.scale.x = value / width;\n }\n else\n {\n this.scale.x = 1;\n }\n\n this._width = value;\n };\n\n /**\n * The height of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this.scale.y * this.getLocalBounds().height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n var height = this.getLocalBounds().height;\n\n if (height !== 0)\n {\n this.scale.y = value / height;\n }\n else\n {\n this.scale.y = 1;\n }\n\n this._height = value;\n };\n\n Object.defineProperties( Container.prototype, prototypeAccessors );\n\n return Container;\n}(DisplayObject));\n\n// performance increase to avoid using call.. (10x faster)\nContainer.prototype.containerUpdateTransform = Container.prototype.updateTransform;\n\nexport { Bounds, Container, DisplayObject };\n//# sourceMappingURL=display.es.js.map\n","/*!\n * @pixi/accessibility - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/accessibility is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { isMobile, removeItems } from '@pixi/utils';\nimport { DisplayObject } from '@pixi/display';\n\n/**\n * Default property values of accessible objects\n * used by {@link PIXI.accessibility.AccessibilityManager}.\n *\n * @private\n * @function accessibleTarget\n * @memberof PIXI.accessibility\n * @type {Object}\n * @example\n * function MyObject() {}\n *\n * Object.assign(\n * MyObject.prototype,\n * PIXI.accessibility.accessibleTarget\n * );\n */\nvar accessibleTarget = {\n /**\n * Flag for if the object is accessible. If true AccessibilityManager will overlay a\n * shadow div with attributes set\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n accessible: false,\n\n /**\n * Sets the title attribute of the shadow div\n * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]'\n *\n * @member {?string}\n * @memberof PIXI.DisplayObject#\n */\n accessibleTitle: null,\n\n /**\n * Sets the aria-label attribute of the shadow div\n *\n * @member {string}\n * @memberof PIXI.DisplayObject#\n */\n accessibleHint: null,\n\n /**\n * @member {number}\n * @memberof PIXI.DisplayObject#\n * @private\n * @todo Needs docs.\n */\n tabIndex: 0,\n\n /**\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n * @todo Needs docs.\n */\n _accessibleActive: false,\n\n /**\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n * @todo Needs docs.\n */\n _accessibleDiv: false,\n};\n\n// add some extra variables to the container..\nDisplayObject.mixin(accessibleTarget);\n\nvar KEY_CODE_TAB = 9;\n\nvar DIV_TOUCH_SIZE = 100;\nvar DIV_TOUCH_POS_X = 0;\nvar DIV_TOUCH_POS_Y = 0;\nvar DIV_TOUCH_ZINDEX = 2;\n\nvar DIV_HOOK_SIZE = 1;\nvar DIV_HOOK_POS_X = -1000;\nvar DIV_HOOK_POS_Y = -1000;\nvar DIV_HOOK_ZINDEX = 2;\n\n/**\n * The Accessibility manager recreates the ability to tab and have content read by screen readers.\n * This is very important as it can possibly help people with disabilities access PixiJS content.\n *\n * A DisplayObject can be made accessible just like it can be made interactive. This manager will map the\n * events as if the mouse was being used, minimizing the effort required to implement.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.accessibility`\n *\n * @class\n * @memberof PIXI.accessibility\n */\nvar AccessibilityManager = function AccessibilityManager(renderer)\n{\n /**\n * @type {?HTMLElement}\n * @private\n */\n this._hookDiv = null;\n if (isMobile.tablet || isMobile.phone)\n {\n this.createTouchHook();\n }\n\n // first we create a div that will sit over the PixiJS element. This is where the div overlays will go.\n var div = document.createElement('div');\n\n div.style.width = DIV_TOUCH_SIZE + \"px\";\n div.style.height = DIV_TOUCH_SIZE + \"px\";\n div.style.position = 'absolute';\n div.style.top = DIV_TOUCH_POS_X + \"px\";\n div.style.left = DIV_TOUCH_POS_Y + \"px\";\n div.style.zIndex = DIV_TOUCH_ZINDEX;\n\n /**\n * This is the dom element that will sit over the PixiJS element. This is where the div overlays will go.\n *\n * @type {HTMLElement}\n * @private\n */\n this.div = div;\n\n /**\n * A simple pool for storing divs.\n *\n * @type {*}\n * @private\n */\n this.pool = [];\n\n /**\n * This is a tick used to check if an object is no longer being rendered.\n *\n * @type {Number}\n * @private\n */\n this.renderId = 0;\n\n /**\n * Setting this to true will visually show the divs.\n *\n * @type {boolean}\n */\n this.debug = false;\n\n /**\n * The renderer this accessibility manager works for.\n *\n * @member {PIXI.AbstractRenderer}\n */\n this.renderer = renderer;\n\n /**\n * The array of currently active accessible items.\n *\n * @member {Array<*>}\n * @private\n */\n this.children = [];\n\n /**\n * pre-bind the functions\n *\n * @type {Function}\n * @private\n */\n this._onKeyDown = this._onKeyDown.bind(this);\n\n /**\n * pre-bind the functions\n *\n * @type {Function}\n * @private\n */\n this._onMouseMove = this._onMouseMove.bind(this);\n\n /**\n * A flag\n * @type {boolean}\n * @readonly\n */\n this.isActive = false;\n\n /**\n * A flag\n * @type {boolean}\n * @readonly\n */\n this.isMobileAccessibility = false;\n\n // let listen for tab.. once pressed we can fire up and show the accessibility layer\n window.addEventListener('keydown', this._onKeyDown, false);\n};\n\n/**\n * Creates the touch hooks.\n *\n * @private\n */\nAccessibilityManager.prototype.createTouchHook = function createTouchHook ()\n{\n var this$1 = this;\n\n var hookDiv = document.createElement('button');\n\n hookDiv.style.width = DIV_HOOK_SIZE + \"px\";\n hookDiv.style.height = DIV_HOOK_SIZE + \"px\";\n hookDiv.style.position = 'absolute';\n hookDiv.style.top = DIV_HOOK_POS_X + \"px\";\n hookDiv.style.left = DIV_HOOK_POS_Y + \"px\";\n hookDiv.style.zIndex = DIV_HOOK_ZINDEX;\n hookDiv.style.backgroundColor = '#FF0000';\n hookDiv.title = 'HOOK DIV';\n\n hookDiv.addEventListener('focus', function () {\n this$1.isMobileAccessibility = true;\n this$1.activate();\n this$1.destroyTouchHook();\n });\n\n document.body.appendChild(hookDiv);\n this._hookDiv = hookDiv;\n};\n\n/**\n * Destroys the touch hooks.\n *\n * @private\n */\nAccessibilityManager.prototype.destroyTouchHook = function destroyTouchHook ()\n{\n if (!this._hookDiv)\n {\n return;\n }\n document.body.removeChild(this._hookDiv);\n this._hookDiv = null;\n};\n\n/**\n * Activating will cause the Accessibility layer to be shown.\n * This is called when a user presses the tab key.\n *\n * @private\n */\nAccessibilityManager.prototype.activate = function activate ()\n{\n if (this.isActive)\n {\n return;\n }\n\n this.isActive = true;\n\n window.document.addEventListener('mousemove', this._onMouseMove, true);\n window.removeEventListener('keydown', this._onKeyDown, false);\n\n this.renderer.on('postrender', this.update, this);\n\n if (this.renderer.view.parentNode)\n {\n this.renderer.view.parentNode.appendChild(this.div);\n }\n};\n\n/**\n * Deactivating will cause the Accessibility layer to be hidden.\n * This is called when a user moves the mouse.\n *\n * @private\n */\nAccessibilityManager.prototype.deactivate = function deactivate ()\n{\n if (!this.isActive || this.isMobileAccessibility)\n {\n return;\n }\n\n this.isActive = false;\n\n window.document.removeEventListener('mousemove', this._onMouseMove, true);\n window.addEventListener('keydown', this._onKeyDown, false);\n\n this.renderer.off('postrender', this.update);\n\n if (this.div.parentNode)\n {\n this.div.parentNode.removeChild(this.div);\n }\n};\n\n/**\n * This recursive function will run through the scene graph and add any new accessible objects to the DOM layer.\n *\n * @private\n * @param {PIXI.Container} displayObject - The DisplayObject to check.\n */\nAccessibilityManager.prototype.updateAccessibleObjects = function updateAccessibleObjects (displayObject)\n{\n if (!displayObject.visible)\n {\n return;\n }\n\n if (displayObject.accessible && displayObject.interactive)\n {\n if (!displayObject._accessibleActive)\n {\n this.addChild(displayObject);\n }\n\n displayObject.renderId = this.renderId;\n }\n\n var children = displayObject.children;\n\n for (var i = 0; i < children.length; i++)\n {\n this.updateAccessibleObjects(children[i]);\n }\n};\n\n/**\n * Before each render this function will ensure that all divs are mapped correctly to their DisplayObjects.\n *\n * @private\n */\nAccessibilityManager.prototype.update = function update ()\n{\n if (!this.renderer.renderingToScreen)\n {\n return;\n }\n\n // update children...\n this.updateAccessibleObjects(this.renderer._lastObjectRendered);\n\n var rect = this.renderer.view.getBoundingClientRect();\n var sx = rect.width / this.renderer.width;\n var sy = rect.height / this.renderer.height;\n\n var div = this.div;\n\n div.style.left = (rect.left) + \"px\";\n div.style.top = (rect.top) + \"px\";\n div.style.width = (this.renderer.width) + \"px\";\n div.style.height = (this.renderer.height) + \"px\";\n\n for (var i = 0; i < this.children.length; i++)\n {\n var child = this.children[i];\n\n if (child.renderId !== this.renderId)\n {\n child._accessibleActive = false;\n\n removeItems(this.children, i, 1);\n this.div.removeChild(child._accessibleDiv);\n this.pool.push(child._accessibleDiv);\n child._accessibleDiv = null;\n\n i--;\n\n if (this.children.length === 0)\n {\n this.deactivate();\n }\n }\n else\n {\n // map div to display..\n div = child._accessibleDiv;\n var hitArea = child.hitArea;\n var wt = child.worldTransform;\n\n if (child.hitArea)\n {\n div.style.left = ((wt.tx + (hitArea.x * wt.a)) * sx) + \"px\";\n div.style.top = ((wt.ty + (hitArea.y * wt.d)) * sy) + \"px\";\n\n div.style.width = (hitArea.width * wt.a * sx) + \"px\";\n div.style.height = (hitArea.height * wt.d * sy) + \"px\";\n }\n else\n {\n hitArea = child.getBounds();\n\n this.capHitArea(hitArea);\n\n div.style.left = (hitArea.x * sx) + \"px\";\n div.style.top = (hitArea.y * sy) + \"px\";\n\n div.style.width = (hitArea.width * sx) + \"px\";\n div.style.height = (hitArea.height * sy) + \"px\";\n\n // update button titles and hints if they exist and they've changed\n if (div.title !== child.accessibleTitle && child.accessibleTitle !== null)\n {\n div.title = child.accessibleTitle;\n }\n if (div.getAttribute('aria-label') !== child.accessibleHint\n && child.accessibleHint !== null)\n {\n div.setAttribute('aria-label', child.accessibleHint);\n }\n }\n }\n }\n\n // increment the render id..\n this.renderId++;\n};\n\n/**\n * Adjust the hit area based on the bounds of a display object\n *\n * @param {PIXI.Rectangle} hitArea - Bounds of the child\n */\nAccessibilityManager.prototype.capHitArea = function capHitArea (hitArea)\n{\n if (hitArea.x < 0)\n {\n hitArea.width += hitArea.x;\n hitArea.x = 0;\n }\n\n if (hitArea.y < 0)\n {\n hitArea.height += hitArea.y;\n hitArea.y = 0;\n }\n\n if (hitArea.x + hitArea.width > this.renderer.width)\n {\n hitArea.width = this.renderer.width - hitArea.x;\n }\n\n if (hitArea.y + hitArea.height > this.renderer.height)\n {\n hitArea.height = this.renderer.height - hitArea.y;\n }\n};\n\n/**\n * Adds a DisplayObject to the accessibility manager\n *\n * @private\n * @param {PIXI.DisplayObject} displayObject - The child to make accessible.\n */\nAccessibilityManager.prototype.addChild = function addChild (displayObject)\n{\n //this.activate();\n\n var div = this.pool.pop();\n\n if (!div)\n {\n div = document.createElement('button');\n\n div.style.width = DIV_TOUCH_SIZE + \"px\";\n div.style.height = DIV_TOUCH_SIZE + \"px\";\n div.style.backgroundColor = this.debug ? 'rgba(255,0,0,0.5)' : 'transparent';\n div.style.position = 'absolute';\n div.style.zIndex = DIV_TOUCH_ZINDEX;\n div.style.borderStyle = 'none';\n\n // ARIA attributes ensure that button title and hint updates are announced properly\n if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)\n {\n // Chrome doesn't need aria-live to work as intended; in fact it just gets more confused.\n div.setAttribute('aria-live', 'off');\n }\n else\n {\n div.setAttribute('aria-live', 'polite');\n }\n\n if (navigator.userAgent.match(/rv:.*Gecko\\//))\n {\n // FireFox needs this to announce only the new button name\n div.setAttribute('aria-relevant', 'additions');\n }\n else\n {\n // required by IE, other browsers don't much care\n div.setAttribute('aria-relevant', 'text');\n }\n\n div.addEventListener('click', this._onClick.bind(this));\n div.addEventListener('focus', this._onFocus.bind(this));\n div.addEventListener('focusout', this._onFocusOut.bind(this));\n }\n\n if (displayObject.accessibleTitle && displayObject.accessibleTitle !== null)\n {\n div.title = displayObject.accessibleTitle;\n }\n else if (!displayObject.accessibleHint\n || displayObject.accessibleHint === null)\n {\n div.title = \"displayObject \" + (displayObject.tabIndex);\n }\n\n if (displayObject.accessibleHint\n && displayObject.accessibleHint !== null)\n {\n div.setAttribute('aria-label', displayObject.accessibleHint);\n }\n\n //\n\n displayObject._accessibleActive = true;\n displayObject._accessibleDiv = div;\n div.displayObject = displayObject;\n\n this.children.push(displayObject);\n this.div.appendChild(displayObject._accessibleDiv);\n displayObject._accessibleDiv.tabIndex = displayObject.tabIndex;\n};\n\n/**\n * Maps the div button press to pixi's InteractionManager (click)\n *\n * @private\n * @param {MouseEvent} e - The click event.\n */\nAccessibilityManager.prototype._onClick = function _onClick (e)\n{\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'click', interactionManager.eventData);\n interactionManager.dispatchEvent(e.target.displayObject, 'pointertap', interactionManager.eventData);\n interactionManager.dispatchEvent(e.target.displayObject, 'tap', interactionManager.eventData);\n};\n\n/**\n * Maps the div focus events to pixi's InteractionManager (mouseover)\n *\n * @private\n * @param {FocusEvent} e - The focus event.\n */\nAccessibilityManager.prototype._onFocus = function _onFocus (e)\n{\n if (!e.target.getAttribute('aria-live', 'off'))\n {\n e.target.setAttribute('aria-live', 'assertive');\n }\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'mouseover', interactionManager.eventData);\n};\n\n/**\n * Maps the div focus events to pixi's InteractionManager (mouseout)\n *\n * @private\n * @param {FocusEvent} e - The focusout event.\n */\nAccessibilityManager.prototype._onFocusOut = function _onFocusOut (e)\n{\n if (!e.target.getAttribute('aria-live', 'off'))\n {\n e.target.setAttribute('aria-live', 'polite');\n }\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'mouseout', interactionManager.eventData);\n};\n\n/**\n * Is called when a key is pressed\n *\n * @private\n * @param {KeyboardEvent} e - The keydown event.\n */\nAccessibilityManager.prototype._onKeyDown = function _onKeyDown (e)\n{\n if (e.keyCode !== KEY_CODE_TAB)\n {\n return;\n }\n\n this.activate();\n};\n\n/**\n * Is called when the mouse moves across the renderer element\n *\n * @private\n * @param {MouseEvent} e - The mouse event.\n */\nAccessibilityManager.prototype._onMouseMove = function _onMouseMove (e)\n{\n if (e.movementX === 0 && e.movementY === 0)\n {\n return;\n }\n\n this.deactivate();\n};\n\n/**\n * Destroys the accessibility manager\n *\n */\nAccessibilityManager.prototype.destroy = function destroy ()\n{\n this.destroyTouchHook();\n this.div = null;\n\n for (var i = 0; i < this.children.length; i++)\n {\n this.children[i].div = null;\n }\n\n window.document.removeEventListener('mousemove', this._onMouseMove, true);\n window.removeEventListener('keydown', this._onKeyDown);\n\n this.pool = null;\n this.children = null;\n this.renderer = null;\n};\n\n/**\n * This namespace contains an accessibility plugin for allowing interaction via the keyboard.\n *\n * Do not instantiate this plugin directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @namespace PIXI.accessibility\n */\n\nexport { AccessibilityManager, accessibleTarget };\n//# sourceMappingURL=accessibility.es.js.map\n","/*!\n * @pixi/runner - v5.1.1\n * Compiled Fri, 02 Aug 2019 23:20:23 UTC\n *\n * @pixi/runner is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * A Runner is a highly performant and simple alternative to signals. Best used in situations\n * where events are dispatched to many objects at high frequency (say every frame!)\n *\n *\n * like a signal..\n * ```\n * const myObject = {\n * loaded: new PIXI.Runner('loaded')\n * }\n *\n * const listener = {\n * loaded: function(){\n * // thin\n * }\n * }\n *\n * myObject.update.add(listener);\n *\n * myObject.loaded.emit();\n * ```\n *\n * Or for handling calling the same function on many items\n * ```\n * const myGame = {\n * update: new PIXI.Runner('update')\n * }\n *\n * const gameObject = {\n * update: function(time){\n * // update my gamey state\n * }\n * }\n *\n * myGame.update.add(gameObject1);\n *\n * myGame.update.emit(time);\n * ```\n * @class\n * @memberof PIXI\n */\nvar Runner = function Runner(name)\n{\n this.items = [];\n this._name = name;\n this._aliasCount = 0;\n};\n\nvar prototypeAccessors = { empty: { configurable: true },name: { configurable: true } };\n\n/**\n * Dispatch/Broadcast Runner to all listeners added to the queue.\n * @param {...any} params - optional parameters to pass to each listener\n */\nRunner.prototype.emit = function emit (a0, a1, a2, a3, a4, a5, a6, a7)\n{\n if (arguments.length > 8)\n {\n throw new Error('max arguments reached');\n }\n\n var ref = this;\n var name = ref.name;\n var items = ref.items;\n\n this._aliasCount++;\n\n for (var i = 0, len = items.length; i < len; i++)\n {\n items[i][name](a0, a1, a2, a3, a4, a5, a6, a7);\n }\n\n if (items === this.items)\n {\n this._aliasCount--;\n }\n\n return this;\n};\n\nRunner.prototype.ensureNonAliasedItems = function ensureNonAliasedItems ()\n{\n if (this._aliasCount > 0 && this.items.length > 1)\n {\n this._aliasCount = 0;\n this.items = this.items.slice(0);\n }\n};\n\n/**\n * Add a listener to the Runner\n *\n * Runners do not need to have scope or functions passed to them.\n * All that is required is to pass the listening object and ensure that it has contains a function that has the same name\n * as the name provided to the Runner when it was created.\n *\n * Eg A listener passed to this Runner will require a 'complete' function.\n *\n * ```\n * const complete = new PIXI.Runner('complete');\n * ```\n *\n * The scope used will be the object itself.\n *\n * @param {any} item - The object that will be listening.\n */\nRunner.prototype.add = function add (item)\n{\n if (item[this._name])\n {\n this.ensureNonAliasedItems();\n this.remove(item);\n this.items.push(item);\n }\n\n return this;\n};\n\n/**\n * Remove a single listener from the dispatch queue.\n * @param {any} item - The listenr that you would like to remove.\n */\nRunner.prototype.remove = function remove (item)\n{\n var index = this.items.indexOf(item);\n\n if (index !== -1)\n {\n this.ensureNonAliasedItems();\n this.items.splice(index, 1);\n }\n\n return this;\n};\n\n/**\n * Check to see if the listener is already in the Runner\n * @param {any} item - The listener that you would like to check.\n */\nRunner.prototype.contains = function contains (item)\n{\n return this.items.indexOf(item) !== -1;\n};\n\n/**\n * Remove all listeners from the Runner\n */\nRunner.prototype.removeAll = function removeAll ()\n{\n this.ensureNonAliasedItems();\n this.items.length = 0;\n\n return this;\n};\n\n/**\n * Remove all references, don't use after this.\n */\nRunner.prototype.destroy = function destroy ()\n{\n this.removeAll();\n this.items = null;\n this._name = null;\n};\n\n/**\n * `true` if there are no this Runner contains no listeners\n *\n * @member {boolean}\n * @readonly\n */\nprototypeAccessors.empty.get = function ()\n{\n return this.items.length === 0;\n};\n\n/**\n * The name of the runner.\n *\n * @member {string}\n * @readonly\n */\nprototypeAccessors.name.get = function ()\n{\n return this._name;\n};\n\nObject.defineProperties( Runner.prototype, prototypeAccessors );\n\n/**\n * Alias for `emit`\n * @memberof PIXI.Runner#\n * @method dispatch\n * @see PIXI.Runner#emit\n */\nRunner.prototype.dispatch = Runner.prototype.emit;\n\n/**\n * Alias for `emit`\n * @memberof PIXI.Runner#\n * @method run\n * @see PIXI.Runner#emit\n */\nRunner.prototype.run = Runner.prototype.emit;\n\nexport { Runner };\n//# sourceMappingURL=runner.es.js.map\n","/*!\n * @pixi/ticker - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/ticker is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\n\n/**\n * Target frames per millisecond.\n *\n * @static\n * @name TARGET_FPMS\n * @memberof PIXI.settings\n * @type {number}\n * @default 0.06\n */\nsettings.TARGET_FPMS = 0.06;\n\n/**\n * Represents the update priorities used by internal PIXI classes when registered with\n * the {@link PIXI.Ticker} object. Higher priority items are updated first and lower\n * priority items, such as render, should go later.\n *\n * @static\n * @constant\n * @name UPDATE_PRIORITY\n * @memberof PIXI\n * @type {object}\n * @property {number} INTERACTION=50 Highest priority, used for {@link PIXI.interaction.InteractionManager}\n * @property {number} HIGH=25 High priority updating, {@link PIXI.VideoBaseTexture} and {@link PIXI.AnimatedSprite}\n * @property {number} NORMAL=0 Default priority for ticker events, see {@link PIXI.Ticker#add}.\n * @property {number} LOW=-25 Low priority used for {@link PIXI.Application} rendering.\n * @property {number} UTILITY=-50 Lowest priority used for {@link PIXI.prepare.BasePrepare} utility.\n */\nvar UPDATE_PRIORITY = {\n INTERACTION: 50,\n HIGH: 25,\n NORMAL: 0,\n LOW: -25,\n UTILITY: -50,\n};\n\n/**\n * Internal class for handling the priority sorting of ticker handlers.\n *\n * @private\n * @class\n * @memberof PIXI\n */\nvar TickerListener = function TickerListener(fn, context, priority, once)\n{\n if ( context === void 0 ) context = null;\n if ( priority === void 0 ) priority = 0;\n if ( once === void 0 ) once = false;\n\n /**\n * The handler function to execute.\n * @private\n * @member {Function}\n */\n this.fn = fn;\n\n /**\n * The calling to execute.\n * @private\n * @member {*}\n */\n this.context = context;\n\n /**\n * The current priority.\n * @private\n * @member {number}\n */\n this.priority = priority;\n\n /**\n * If this should only execute once.\n * @private\n * @member {boolean}\n */\n this.once = once;\n\n /**\n * The next item in chain.\n * @private\n * @member {TickerListener}\n */\n this.next = null;\n\n /**\n * The previous item in chain.\n * @private\n * @member {TickerListener}\n */\n this.previous = null;\n\n /**\n * `true` if this listener has been destroyed already.\n * @member {boolean}\n * @private\n */\n this._destroyed = false;\n};\n\n/**\n * Simple compare function to figure out if a function and context match.\n * @private\n * @param {Function} fn - The listener function to be added for one update\n * @param {Function} context - The listener context\n * @return {boolean} `true` if the listener match the arguments\n */\nTickerListener.prototype.match = function match (fn, context)\n{\n context = context || null;\n\n return this.fn === fn && this.context === context;\n};\n\n/**\n * Emit by calling the current function.\n * @private\n * @param {number} deltaTime - time since the last emit.\n * @return {TickerListener} Next ticker\n */\nTickerListener.prototype.emit = function emit (deltaTime)\n{\n if (this.fn)\n {\n if (this.context)\n {\n this.fn.call(this.context, deltaTime);\n }\n else\n {\n this.fn(deltaTime);\n }\n }\n\n var redirect = this.next;\n\n if (this.once)\n {\n this.destroy(true);\n }\n\n // Soft-destroying should remove\n // the next reference\n if (this._destroyed)\n {\n this.next = null;\n }\n\n return redirect;\n};\n\n/**\n * Connect to the list.\n * @private\n * @param {TickerListener} previous - Input node, previous listener\n */\nTickerListener.prototype.connect = function connect (previous)\n{\n this.previous = previous;\n if (previous.next)\n {\n previous.next.previous = this;\n }\n this.next = previous.next;\n previous.next = this;\n};\n\n/**\n * Destroy and don't use after this.\n * @private\n * @param {boolean} [hard = false] `true` to remove the `next` reference, this\n * is considered a hard destroy. Soft destroy maintains the next reference.\n * @return {TickerListener} The listener to redirect while emitting or removing.\n */\nTickerListener.prototype.destroy = function destroy (hard)\n{\n if ( hard === void 0 ) hard = false;\n\n this._destroyed = true;\n this.fn = null;\n this.context = null;\n\n // Disconnect, hook up next and previous\n if (this.previous)\n {\n this.previous.next = this.next;\n }\n\n if (this.next)\n {\n this.next.previous = this.previous;\n }\n\n // Redirect to the next item\n var redirect = this.next;\n\n // Remove references\n this.next = hard ? null : redirect;\n this.previous = null;\n\n return redirect;\n};\n\n/**\n * A Ticker class that runs an update loop that other objects listen to.\n *\n * This class is composed around listeners meant for execution on the next requested animation frame.\n * Animation frames are requested only when necessary, e.g. When the ticker is started and the emitter has listeners.\n *\n * @class\n * @memberof PIXI\n */\nvar Ticker = function Ticker()\n{\n var this$1 = this;\n\n /**\n * The first listener. All new listeners added are chained on this.\n * @private\n * @type {TickerListener}\n */\n this._head = new TickerListener(null, null, Infinity);\n\n /**\n * Internal current frame request ID\n * @type {?number}\n * @private\n */\n this._requestId = null;\n\n /**\n * Internal value managed by minFPS property setter and getter.\n * This is the maximum allowed milliseconds between updates.\n * @type {number}\n * @private\n */\n this._maxElapsedMS = 100;\n\n /**\n * Internal value managed by maxFPS property setter and getter.\n * This is the minimum allowed milliseconds between updates.\n * @private\n */\n this._minElapsedMS = 0;\n\n /**\n * Whether or not this ticker should invoke the method\n * {@link PIXI.Ticker#start} automatically\n * when a listener is added.\n *\n * @member {boolean}\n * @default false\n */\n this.autoStart = false;\n\n /**\n * Scalar time value from last frame to this frame.\n * This value is capped by setting {@link PIXI.Ticker#minFPS}\n * and is scaled with {@link PIXI.Ticker#speed}.\n * **Note:** The cap may be exceeded by scaling.\n *\n * @member {number}\n * @default 1\n */\n this.deltaTime = 1;\n\n /**\n * Scaler time elapsed in milliseconds from last frame to this frame.\n * This value is capped by setting {@link PIXI.Ticker#minFPS}\n * and is scaled with {@link PIXI.Ticker#speed}.\n * **Note:** The cap may be exceeded by scaling.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n * Defaults to target frame time\n *\n * @member {number}\n * @default 16.66\n */\n this.deltaMS = 1 / settings.TARGET_FPMS;\n\n /**\n * Time elapsed in milliseconds from last frame to this frame.\n * Opposed to what the scalar {@link PIXI.Ticker#deltaTime}\n * is based, this value is neither capped nor scaled.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n * Defaults to target frame time\n *\n * @member {number}\n * @default 16.66\n */\n this.elapsedMS = 1 / settings.TARGET_FPMS;\n\n /**\n * The last time {@link PIXI.Ticker#update} was invoked.\n * This value is also reset internally outside of invoking\n * update, but only when a new animation frame is requested.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n *\n * @member {number}\n * @default -1\n */\n this.lastTime = -1;\n\n /**\n * Factor of current {@link PIXI.Ticker#deltaTime}.\n * @example\n * // Scales ticker.deltaTime to what would be\n * // the equivalent of approximately 120 FPS\n * ticker.speed = 2;\n *\n * @member {number}\n * @default 1\n */\n this.speed = 1;\n\n /**\n * Whether or not this ticker has been started.\n * `true` if {@link PIXI.Ticker#start} has been called.\n * `false` if {@link PIXI.Ticker#stop} has been called.\n * While `false`, this value may change to `true` in the\n * event of {@link PIXI.Ticker#autoStart} being `true`\n * and a listener is added.\n *\n * @member {boolean}\n * @default false\n */\n this.started = false;\n\n /**\n * If enabled, deleting is disabled.\n * @member {boolean}\n * @default false\n * @private\n */\n this._protected = false;\n\n /**\n * The last time keyframe was executed.\n * Maintains a relatively fixed interval with the previous value.\n * @member {number}\n * @default -1\n * @private\n */\n this._lastFrame = -1;\n\n /**\n * Internal tick method bound to ticker instance.\n * This is because in early 2015, Function.bind\n * is still 60% slower in high performance scenarios.\n * Also separating frame requests from update method\n * so listeners may be called at any time and with\n * any animation API, just invoke ticker.update(time).\n *\n * @private\n * @param {number} time - Time since last tick.\n */\n this._tick = function (time) {\n this$1._requestId = null;\n\n if (this$1.started)\n {\n // Invoke listeners now\n this$1.update(time);\n // Listener side effects may have modified ticker state.\n if (this$1.started && this$1._requestId === null && this$1._head.next)\n {\n this$1._requestId = requestAnimationFrame(this$1._tick);\n }\n }\n };\n};\n\nvar prototypeAccessors = { FPS: { configurable: true },minFPS: { configurable: true },maxFPS: { configurable: true } };\nvar staticAccessors = { shared: { configurable: true },system: { configurable: true } };\n\n/**\n * Conditionally requests a new animation frame.\n * If a frame has not already been requested, and if the internal\n * emitter has listeners, a new frame is requested.\n *\n * @private\n */\nTicker.prototype._requestIfNeeded = function _requestIfNeeded ()\n{\n if (this._requestId === null && this._head.next)\n {\n // ensure callbacks get correct delta\n this.lastTime = performance.now();\n this._lastFrame = this.lastTime;\n this._requestId = requestAnimationFrame(this._tick);\n }\n};\n\n/**\n * Conditionally cancels a pending animation frame.\n *\n * @private\n */\nTicker.prototype._cancelIfNeeded = function _cancelIfNeeded ()\n{\n if (this._requestId !== null)\n {\n cancelAnimationFrame(this._requestId);\n this._requestId = null;\n }\n};\n\n/**\n * Conditionally requests a new animation frame.\n * If the ticker has been started it checks if a frame has not already\n * been requested, and if the internal emitter has listeners. If these\n * conditions are met, a new frame is requested. If the ticker has not\n * been started, but autoStart is `true`, then the ticker starts now,\n * and continues with the previous conditions to request a new frame.\n *\n * @private\n */\nTicker.prototype._startIfPossible = function _startIfPossible ()\n{\n if (this.started)\n {\n this._requestIfNeeded();\n }\n else if (this.autoStart)\n {\n this.start();\n }\n};\n\n/**\n * Register a handler for tick events. Calls continuously unless\n * it is removed or the ticker is stopped.\n *\n * @param {Function} fn - The listener function to be added for updates\n * @param {*} [context] - The listener context\n * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.add = function add (fn, context, priority)\n{\n if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL;\n\n return this._addListener(new TickerListener(fn, context, priority));\n};\n\n/**\n * Add a handler for the tick event which is only execute once.\n *\n * @param {Function} fn - The listener function to be added for one update\n * @param {*} [context] - The listener context\n * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.addOnce = function addOnce (fn, context, priority)\n{\n if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL;\n\n return this._addListener(new TickerListener(fn, context, priority, true));\n};\n\n/**\n * Internally adds the event handler so that it can be sorted by priority.\n * Priority allows certain handler (user, AnimatedSprite, Interaction) to be run\n * before the rendering.\n *\n * @private\n * @param {TickerListener} listener - Current listener being added.\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype._addListener = function _addListener (listener)\n{\n // For attaching to head\n var current = this._head.next;\n var previous = this._head;\n\n // Add the first item\n if (!current)\n {\n listener.connect(previous);\n }\n else\n {\n // Go from highest to lowest priority\n while (current)\n {\n if (listener.priority > current.priority)\n {\n listener.connect(previous);\n break;\n }\n previous = current;\n current = current.next;\n }\n\n // Not yet connected\n if (!listener.previous)\n {\n listener.connect(previous);\n }\n }\n\n this._startIfPossible();\n\n return this;\n};\n\n/**\n * Removes any handlers matching the function and context parameters.\n * If no handlers are left after removing, then it cancels the animation frame.\n *\n * @param {Function} fn - The listener function to be removed\n * @param {*} [context] - The listener context to be removed\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.remove = function remove (fn, context)\n{\n var listener = this._head.next;\n\n while (listener)\n {\n // We found a match, lets remove it\n // no break to delete all possible matches\n // incase a listener was added 2+ times\n if (listener.match(fn, context))\n {\n listener = listener.destroy();\n }\n else\n {\n listener = listener.next;\n }\n }\n\n if (!this._head.next)\n {\n this._cancelIfNeeded();\n }\n\n return this;\n};\n\n/**\n * Starts the ticker. If the ticker has listeners\n * a new animation frame is requested at this point.\n */\nTicker.prototype.start = function start ()\n{\n if (!this.started)\n {\n this.started = true;\n this._requestIfNeeded();\n }\n};\n\n/**\n * Stops the ticker. If the ticker has requested\n * an animation frame it is canceled at this point.\n */\nTicker.prototype.stop = function stop ()\n{\n if (this.started)\n {\n this.started = false;\n this._cancelIfNeeded();\n }\n};\n\n/**\n * Destroy the ticker and don't use after this. Calling\n * this method removes all references to internal events.\n */\nTicker.prototype.destroy = function destroy ()\n{\n if (!this._protected)\n {\n this.stop();\n\n var listener = this._head.next;\n\n while (listener)\n {\n listener = listener.destroy(true);\n }\n\n this._head.destroy();\n this._head = null;\n }\n};\n\n/**\n * Triggers an update. An update entails setting the\n * current {@link PIXI.Ticker#elapsedMS},\n * the current {@link PIXI.Ticker#deltaTime},\n * invoking all listeners with current deltaTime,\n * and then finally setting {@link PIXI.Ticker#lastTime}\n * with the value of currentTime that was provided.\n * This method will be called automatically by animation\n * frame callbacks if the ticker instance has been started\n * and listeners are added.\n *\n * @param {number} [currentTime=performance.now()] - the current time of execution\n */\nTicker.prototype.update = function update (currentTime)\n{\n if ( currentTime === void 0 ) currentTime = performance.now();\n\n var elapsedMS;\n\n // If the difference in time is zero or negative, we ignore most of the work done here.\n // If there is no valid difference, then should be no reason to let anyone know about it.\n // A zero delta, is exactly that, nothing should update.\n //\n // The difference in time can be negative, and no this does not mean time traveling.\n // This can be the result of a race condition between when an animation frame is requested\n // on the current JavaScript engine event loop, and when the ticker's start method is invoked\n // (which invokes the internal _requestIfNeeded method). If a frame is requested before\n // _requestIfNeeded is invoked, then the callback for the animation frame the ticker requests,\n // can receive a time argument that can be less than the lastTime value that was set within\n // _requestIfNeeded. This difference is in microseconds, but this is enough to cause problems.\n //\n // This check covers this browser engine timing issue, as well as if consumers pass an invalid\n // currentTime value. This may happen if consumers opt-out of the autoStart, and update themselves.\n\n if (currentTime > this.lastTime)\n {\n // Save uncapped elapsedMS for measurement\n elapsedMS = this.elapsedMS = currentTime - this.lastTime;\n\n // cap the milliseconds elapsed used for deltaTime\n if (elapsedMS > this._maxElapsedMS)\n {\n elapsedMS = this._maxElapsedMS;\n }\n\n elapsedMS *= this.speed;\n\n // If not enough time has passed, exit the function.\n // Get ready for next frame by setting _lastFrame, but based on _minElapsedMS\n // adjustment to ensure a relatively stable interval.\n if (this._minElapsedMS)\n {\n var delta = currentTime - this._lastFrame | 0;\n\n if (delta < this._minElapsedMS)\n {\n return;\n }\n\n this._lastFrame = currentTime - (delta % this._minElapsedMS);\n }\n\n this.deltaMS = elapsedMS;\n this.deltaTime = this.deltaMS * settings.TARGET_FPMS;\n\n // Cache a local reference, in-case ticker is destroyed\n // during the emit, we can still check for head.next\n var head = this._head;\n\n // Invoke listeners added to internal emitter\n var listener = head.next;\n\n while (listener)\n {\n listener = listener.emit(this.deltaTime);\n }\n\n if (!head.next)\n {\n this._cancelIfNeeded();\n }\n }\n else\n {\n this.deltaTime = this.deltaMS = this.elapsedMS = 0;\n }\n\n this.lastTime = currentTime;\n};\n\n/**\n * The frames per second at which this ticker is running.\n * The default is approximately 60 in most modern browsers.\n * **Note:** This does not factor in the value of\n * {@link PIXI.Ticker#speed}, which is specific\n * to scaling {@link PIXI.Ticker#deltaTime}.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.FPS.get = function ()\n{\n return 1000 / this.elapsedMS;\n};\n\n/**\n * Manages the maximum amount of milliseconds allowed to\n * elapse between invoking {@link PIXI.Ticker#update}.\n * This value is used to cap {@link PIXI.Ticker#deltaTime},\n * but does not effect the measured value of {@link PIXI.Ticker#FPS}.\n * When setting this property it is clamped to a value between\n * `0` and `PIXI.settings.TARGET_FPMS * 1000`.\n *\n * @member {number}\n * @default 10\n */\nprototypeAccessors.minFPS.get = function ()\n{\n return 1000 / this._maxElapsedMS;\n};\n\nprototypeAccessors.minFPS.set = function (fps) // eslint-disable-line require-jsdoc\n{\n // Minimum must be below the maxFPS\n var minFPS = Math.min(this.maxFPS, fps);\n\n // Must be at least 0, but below 1 / settings.TARGET_FPMS\n var minFPMS = Math.min(Math.max(0, minFPS) / 1000, settings.TARGET_FPMS);\n\n this._maxElapsedMS = 1 / minFPMS;\n};\n\n/**\n * Manages the minimum amount of milliseconds required to\n * elapse between invoking {@link PIXI.Ticker#update}.\n * This will effect the measured value of {@link PIXI.Ticker#FPS}.\n * If it is set to `0`, then there is no limit; PixiJS will render as many frames as it can.\n * Otherwise it will be at least `minFPS`\n *\n * @member {number}\n * @default 0\n */\nprototypeAccessors.maxFPS.get = function ()\n{\n if (this._minElapsedMS)\n {\n return Math.round(1000 / this._minElapsedMS);\n }\n\n return 0;\n};\n\nprototypeAccessors.maxFPS.set = function (fps)\n{\n if (fps === 0)\n {\n this._minElapsedMS = 0;\n }\n else\n {\n // Max must be at least the minFPS\n var maxFPS = Math.max(this.minFPS, fps);\n\n this._minElapsedMS = 1 / (maxFPS / 1000);\n }\n};\n\n/**\n * The shared ticker instance used by {@link PIXI.AnimatedSprite} and by\n * {@link PIXI.VideoResource} to update animation frames / video textures.\n *\n * It may also be used by {@link PIXI.Application} if created with the `sharedTicker` option property set to true.\n *\n * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance.\n * Please follow the examples for usage, including how to opt-out of auto-starting the shared ticker.\n *\n * @example\n * let ticker = PIXI.Ticker.shared;\n * // Set this to prevent starting this ticker when listeners are added.\n * // By default this is true only for the PIXI.Ticker.shared instance.\n * ticker.autoStart = false;\n * // FYI, call this to ensure the ticker is stopped. It should be stopped\n * // if you have not attempted to render anything yet.\n * ticker.stop();\n * // Call this when you are ready for a running shared ticker.\n * ticker.start();\n *\n * @example\n * // You may use the shared ticker to render...\n * let renderer = PIXI.autoDetectRenderer();\n * let stage = new PIXI.Container();\n * document.body.appendChild(renderer.view);\n * ticker.add(function (time) {\n * renderer.render(stage);\n * });\n *\n * @example\n * // Or you can just update it manually.\n * ticker.autoStart = false;\n * ticker.stop();\n * function animate(time) {\n * ticker.update(time);\n * renderer.render(stage);\n * requestAnimationFrame(animate);\n * }\n * animate(performance.now());\n *\n * @member {PIXI.Ticker}\n * @static\n */\nstaticAccessors.shared.get = function ()\n{\n if (!Ticker._shared)\n {\n var shared = Ticker._shared = new Ticker();\n\n shared.autoStart = true;\n shared._protected = true;\n }\n\n return Ticker._shared;\n};\n\n/**\n * The system ticker instance used by {@link PIXI.interaction.InteractionManager} and by\n * {@link PIXI.BasePrepare} for core timing functionality that shouldn't usually need to be paused,\n * unlike the `shared` ticker which drives visual animations and rendering which may want to be paused.\n *\n * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance.\n *\n * @member {PIXI.Ticker}\n * @static\n */\nstaticAccessors.system.get = function ()\n{\n if (!Ticker._system)\n {\n var system = Ticker._system = new Ticker();\n\n system.autoStart = true;\n system._protected = true;\n }\n\n return Ticker._system;\n};\n\nObject.defineProperties( Ticker.prototype, prototypeAccessors );\nObject.defineProperties( Ticker, staticAccessors );\n\n/**\n * Middleware for for Application Ticker.\n *\n * @example\n * import {TickerPlugin} from '@pixi/ticker';\n * import {Application} from '@pixi/app';\n * Application.registerPlugin(TickerPlugin);\n *\n * @class\n * @memberof PIXI\n */\nvar TickerPlugin = function TickerPlugin () {};\n\nTickerPlugin.init = function init (options)\n{\n var this$1 = this;\n\n // Set default\n options = Object.assign({\n autoStart: true,\n sharedTicker: false,\n }, options);\n\n // Create ticker setter\n Object.defineProperty(this, 'ticker',\n {\n set: function set(ticker)\n {\n if (this._ticker)\n {\n this._ticker.remove(this.render, this);\n }\n this._ticker = ticker;\n if (ticker)\n {\n ticker.add(this.render, this, UPDATE_PRIORITY.LOW);\n }\n },\n get: function get()\n {\n return this._ticker;\n },\n });\n\n /**\n * Convenience method for stopping the render.\n *\n * @method PIXI.Application#stop\n */\n this.stop = function () {\n this$1._ticker.stop();\n };\n\n /**\n * Convenience method for starting the render.\n *\n * @method PIXI.Application#start\n */\n this.start = function () {\n this$1._ticker.start();\n };\n\n /**\n * Internal reference to the ticker.\n *\n * @type {PIXI.Ticker}\n * @name _ticker\n * @memberof PIXI.Application#\n * @private\n */\n this._ticker = null;\n\n /**\n * Ticker for doing render updates.\n *\n * @type {PIXI.Ticker}\n * @name ticker\n * @memberof PIXI.Application#\n * @default PIXI.Ticker.shared\n */\n this.ticker = options.sharedTicker ? Ticker.shared : new Ticker();\n\n // Start the rendering\n if (options.autoStart)\n {\n this.start();\n }\n};\n\n/**\n * Clean up the ticker, scoped to application.\n *\n * @static\n * @private\n */\nTickerPlugin.destroy = function destroy ()\n{\n if (this._ticker)\n {\n var oldTicker = this._ticker;\n\n this.ticker = null;\n oldTicker.destroy();\n }\n};\n\nexport { Ticker, TickerPlugin, UPDATE_PRIORITY };\n//# sourceMappingURL=ticker.es.js.map\n","/*!\n * @pixi/core - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/core is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Runner } from '@pixi/runner';\nimport { determineCrossOrigin, isPow2, BaseTextureCache, TextureCache, uid, EventEmitter, getResolutionOfUrl, nextPow2, isMobile, ProgramCache, removeItems, hex2string, hex2rgb, deprecation, isWebGLSupported, sayHello, premultiplyBlendMode, log2, premultiplyTint } from '@pixi/utils';\nimport { settings } from '@pixi/settings';\nimport { SCALE_MODES, FORMATS, TYPES, TARGETS, DRAW_MODES, ENV, PRECISION, BLEND_MODES, GC_MODES, MIPMAP_MODES, WRAP_MODES, RENDERER_TYPE } from '@pixi/constants';\nimport { Ticker } from '@pixi/ticker';\nimport { GroupD8, Rectangle, Point, Matrix } from '@pixi/math';\nimport { Container } from '@pixi/display';\n\n/**\n * Base resource class for textures that manages validation and uploading, depending on its type.\n *\n * Uploading of a base texture to the GPU is required.\n *\n * @class\n * @memberof PIXI.resources\n */\nvar Resource = function Resource(width, height)\n{\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n\n /**\n * Internal width of the resource\n * @member {number}\n * @protected\n */\n this._width = width;\n\n /**\n * Internal height of the resource\n * @member {number}\n * @protected\n */\n this._height = height;\n\n /**\n * If resource has been destroyed\n * @member {boolean}\n * @readonly\n * @default false\n */\n this.destroyed = false;\n\n /**\n * `true` if resource is created by BaseTexture\n * useful for doing cleanup with BaseTexture destroy\n * and not cleaning up resources that were created\n * externally.\n * @member {boolean}\n * @protected\n */\n this.internal = false;\n\n /**\n * Mini-runner for handling resize events\n *\n * @member {Runner}\n * @private\n */\n this.onResize = new Runner('setRealSize', 2);\n\n /**\n * Mini-runner for handling update events\n *\n * @member {Runner}\n * @private\n */\n this.onUpdate = new Runner('update');\n\n /**\n * Handle internal errors, such as loading errors\n *\n * @member {Runner}\n * @private\n */\n this.onError = new Runner('onError', 1);\n};\n\nvar prototypeAccessors = { valid: { configurable: true },width: { configurable: true },height: { configurable: true } };\n\n/**\n * Bind to a parent BaseTexture\n *\n * @param {PIXI.BaseTexture} baseTexture - Parent texture\n */\nResource.prototype.bind = function bind (baseTexture)\n{\n this.onResize.add(baseTexture);\n this.onUpdate.add(baseTexture);\n this.onError.add(baseTexture);\n\n // Call a resize immediate if we already\n // have the width and height of the resource\n if (this._width || this._height)\n {\n this.onResize.run(this._width, this._height);\n }\n};\n\n/**\n * Unbind to a parent BaseTexture\n *\n * @param {PIXI.BaseTexture} baseTexture - Parent texture\n */\nResource.prototype.unbind = function unbind (baseTexture)\n{\n this.onResize.remove(baseTexture);\n this.onUpdate.remove(baseTexture);\n this.onError.remove(baseTexture);\n};\n\n/**\n * Trigger a resize event\n * @param {number} width X dimension\n * @param {number} height Y dimension\n */\nResource.prototype.resize = function resize (width, height)\n{\n if (width !== this._width || height !== this._height)\n {\n this._width = width;\n this._height = height;\n this.onResize.run(width, height);\n }\n};\n\n/**\n * Has been validated\n * @readonly\n * @member {boolean}\n */\nprototypeAccessors.valid.get = function ()\n{\n return !!this._width && !!this._height;\n};\n\n/**\n * Has been updated trigger event\n */\nResource.prototype.update = function update ()\n{\n if (!this.destroyed)\n {\n this.onUpdate.run();\n }\n};\n\n/**\n * This can be overridden to start preloading a resource\n * or do any other prepare step.\n * @protected\n * @return {Promise} Handle the validate event\n */\nResource.prototype.load = function load ()\n{\n return Promise.resolve();\n};\n\n/**\n * The width of the resource.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.width.get = function ()\n{\n return this._width;\n};\n\n/**\n * The height of the resource.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.height.get = function ()\n{\n return this._height;\n};\n\n/**\n * Uploads the texture or returns false if it cant for some reason. Override this.\n *\n * @param {PIXI.Renderer} renderer - yeah, renderer!\n * @param {PIXI.BaseTexture} baseTexture - the texture\n * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context\n * @returns {boolean} true is success\n */\nResource.prototype.upload = function upload (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars\n{\n return false;\n};\n\n/**\n * Set the style, optional to override\n *\n * @param {PIXI.Renderer} renderer - yeah, renderer!\n * @param {PIXI.BaseTexture} baseTexture - the texture\n * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context\n * @returns {boolean} `true` is success\n */\nResource.prototype.style = function style (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars\n{\n return false;\n};\n\n/**\n * Clean up anything, this happens when destroying is ready.\n *\n * @protected\n */\nResource.prototype.dispose = function dispose ()\n{\n // override\n};\n\n/**\n * Call when destroying resource, unbind any BaseTexture object\n * before calling this method, as reference counts are maintained\n * internally.\n */\nResource.prototype.destroy = function destroy ()\n{\n if (!this.destroyed)\n {\n this.destroyed = true;\n this.dispose();\n this.onError.removeAll();\n this.onError = null;\n this.onResize.removeAll();\n this.onResize = null;\n this.onUpdate.removeAll();\n this.onUpdate = null;\n }\n};\n\nObject.defineProperties( Resource.prototype, prototypeAccessors );\n\n/**\n * Base for all the image/canvas resources\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n */\nvar BaseImageResource = /*@__PURE__*/(function (Resource) {\n function BaseImageResource(source)\n {\n var width = source.naturalWidth || source.videoWidth || source.width;\n var height = source.naturalHeight || source.videoHeight || source.height;\n\n Resource.call(this, width, height);\n\n /**\n * The source element\n * @member {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement}\n * @readonly\n */\n this.source = source;\n\n /**\n * If set to `true`, will force `texImage2D` over `texSubImage2D` for uploading.\n * Certain types of media (e.g. video) using `texImage2D` is more performant.\n * @member {boolean}\n * @default false\n * @private\n */\n this.noSubImage = false;\n }\n\n if ( Resource ) BaseImageResource.__proto__ = Resource;\n BaseImageResource.prototype = Object.create( Resource && Resource.prototype );\n BaseImageResource.prototype.constructor = BaseImageResource;\n\n /**\n * Set cross origin based detecting the url and the crossorigin\n * @protected\n * @param {HTMLElement} element - Element to apply crossOrigin\n * @param {string} url - URL to check\n * @param {boolean|string} [crossorigin=true] - Cross origin value to use\n */\n BaseImageResource.crossOrigin = function crossOrigin (element, url, crossorigin)\n {\n if (crossorigin === undefined && url.indexOf('data:') !== 0)\n {\n element.crossOrigin = determineCrossOrigin(url);\n }\n else if (crossorigin !== false)\n {\n element.crossOrigin = typeof crossorigin === 'string' ? crossorigin : 'anonymous';\n }\n };\n\n /**\n * Upload the texture to the GPU.\n * @param {PIXI.Renderer} renderer Upload to the renderer\n * @param {PIXI.BaseTexture} baseTexture Reference to parent texture\n * @param {PIXI.GLTexture} glTexture\n * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} [source] (optional)\n * @returns {boolean} true is success\n */\n BaseImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture, source)\n {\n var gl = renderer.gl;\n var width = baseTexture.realWidth;\n var height = baseTexture.realHeight;\n\n source = source || this.source;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (!this.noSubImage\n && baseTexture.target === gl.TEXTURE_2D\n && glTexture.width === width\n && glTexture.height === height)\n {\n gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, baseTexture.format, baseTexture.type, source);\n }\n else\n {\n glTexture.width = width;\n glTexture.height = height;\n\n gl.texImage2D(baseTexture.target, 0, baseTexture.format, baseTexture.format, baseTexture.type, source);\n }\n\n return true;\n };\n\n /**\n * Checks if source width/height was changed, resize can cause extra baseTexture update.\n * Triggers one update in any case.\n */\n BaseImageResource.prototype.update = function update ()\n {\n if (this.destroyed)\n {\n return;\n }\n\n var width = this.source.naturalWidth || this.source.videoWidth || this.source.width;\n var height = this.source.naturalHeight || this.source.videoHeight || this.source.height;\n\n this.resize(width, height);\n\n Resource.prototype.update.call(this);\n };\n\n /**\n * Destroy this BaseImageResource\n * @override\n * @param {PIXI.BaseTexture} [fromTexture] Optional base texture\n * @return {boolean} Destroy was successful\n */\n BaseImageResource.prototype.dispose = function dispose ()\n {\n this.source = null;\n };\n\n return BaseImageResource;\n}(Resource));\n\n/**\n * Resource type for HTMLImageElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n */\nvar ImageResource = /*@__PURE__*/(function (BaseImageResource) {\n function ImageResource(source, options)\n {\n options = options || {};\n\n if (!(source instanceof HTMLImageElement))\n {\n var imageElement = new Image();\n\n BaseImageResource.crossOrigin(imageElement, source, options.crossorigin);\n\n imageElement.src = source;\n source = imageElement;\n }\n\n BaseImageResource.call(this, source);\n\n // FireFox 68, and possibly other versions, seems like setting the HTMLImageElement#width and #height\n // to non-zero values before its loading completes if images are in a cache.\n // Because of this, need to set the `_width` and the `_height` to zero to avoid uploading incomplete images.\n // Please refer to the issue #5968 (https://github.com/pixijs/pixi.js/issues/5968).\n if (!source.complete && !!this._width && !!this._height)\n {\n this._width = 0;\n this._height = 0;\n }\n\n /**\n * URL of the image source\n * @member {string}\n */\n this.url = source.src;\n\n /**\n * When process is completed\n * @member {Promise}\n * @private\n */\n this._process = null;\n\n /**\n * If the image should be disposed after upload\n * @member {boolean}\n * @default false\n */\n this.preserveBitmap = false;\n\n /**\n * If capable, convert the image using createImageBitmap API\n * @member {boolean}\n * @default PIXI.settings.CREATE_IMAGE_BITMAP\n */\n this.createBitmap = (options.createBitmap !== undefined\n ? options.createBitmap : settings.CREATE_IMAGE_BITMAP) && !!window.createImageBitmap;\n\n /**\n * Controls texture premultiplyAlpha field\n * Copies from options\n * @member {boolean|null}\n * @readonly\n */\n this.premultiplyAlpha = options.premultiplyAlpha !== false;\n\n /**\n * The ImageBitmap element created for HTMLImageElement\n * @member {ImageBitmap}\n * @default null\n */\n this.bitmap = null;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) ImageResource.__proto__ = BaseImageResource;\n ImageResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n ImageResource.prototype.constructor = ImageResource;\n\n /**\n * returns a promise when image will be loaded and processed\n *\n * @param {boolean} [createBitmap=true] whether process image into bitmap\n * @returns {Promise}\n */\n ImageResource.prototype.load = function load (createBitmap)\n {\n var this$1 = this;\n\n if (createBitmap !== undefined)\n {\n this.createBitmap = createBitmap;\n }\n\n if (this._load)\n {\n return this._load;\n }\n\n this._load = new Promise(function (resolve) {\n this$1.url = this$1.source.src;\n var ref = this$1;\n var source = ref.source;\n\n var completed = function () {\n if (this$1.destroyed)\n {\n return;\n }\n source.onload = null;\n source.onerror = null;\n\n this$1.resize(source.width, source.height);\n this$1._load = null;\n\n if (this$1.createBitmap)\n {\n resolve(this$1.process());\n }\n else\n {\n resolve(this$1);\n }\n };\n\n if (source.complete && source.src)\n {\n completed();\n }\n else\n {\n source.onload = completed;\n source.onerror = function (event) { return this$1.onError.run(event); };\n }\n });\n\n return this._load;\n };\n\n /**\n * Called when we need to convert image into BitmapImage.\n * Can be called multiple times, real promise is cached inside.\n *\n * @returns {Promise} cached promise to fill that bitmap\n */\n ImageResource.prototype.process = function process ()\n {\n var this$1 = this;\n\n if (this._process !== null)\n {\n return this._process;\n }\n if (this.bitmap !== null || !window.createImageBitmap)\n {\n return Promise.resolve(this);\n }\n\n this._process = window.createImageBitmap(this.source,\n 0, 0, this.source.width, this.source.height,\n {\n premultiplyAlpha: this.premultiplyAlpha ? 'premultiply' : 'none',\n })\n .then(function (bitmap) {\n if (this$1.destroyed)\n {\n return Promise.reject();\n }\n this$1.bitmap = bitmap;\n this$1.update();\n this$1._process = null;\n\n return Promise.resolve(this$1);\n });\n\n return this._process;\n };\n\n /**\n * Upload the image resource to GPU.\n *\n * @param {PIXI.Renderer} renderer - Renderer to upload to\n * @param {PIXI.BaseTexture} baseTexture - BaseTexture for this resource\n * @param {PIXI.GLTexture} glTexture - GLTexture to use\n * @returns {boolean} true is success\n */\n ImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n baseTexture.premultiplyAlpha = this.premultiplyAlpha;\n\n if (!this.createBitmap)\n {\n return BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture);\n }\n if (!this.bitmap)\n {\n // yeah, ignore the output\n this.process();\n if (!this.bitmap)\n {\n return false;\n }\n }\n\n BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture, this.bitmap);\n\n if (!this.preserveBitmap)\n {\n // checks if there are other renderers that possibly need this bitmap\n\n var flag = true;\n\n for (var key in baseTexture._glTextures)\n {\n var otherTex = baseTexture._glTextures[key];\n\n if (otherTex !== glTexture && otherTex.dirtyId !== baseTexture.dirtyId)\n {\n flag = false;\n break;\n }\n }\n\n if (flag)\n {\n if (this.bitmap.close)\n {\n this.bitmap.close();\n }\n\n this.bitmap = null;\n }\n }\n\n return true;\n };\n\n /**\n * Destroys this texture\n * @override\n */\n ImageResource.prototype.dispose = function dispose ()\n {\n this.source.onload = null;\n this.source.onerror = null;\n\n BaseImageResource.prototype.dispose.call(this);\n\n if (this.bitmap)\n {\n this.bitmap.close();\n this.bitmap = null;\n }\n this._process = null;\n this._load = null;\n };\n\n return ImageResource;\n}(BaseImageResource));\n\n/**\n * Collection of installed resource types, class must extend {@link PIXI.resources.Resource}.\n * @example\n * class CustomResource extends PIXI.resources.Resource {\n * // MUST have source, options constructor signature\n * // for auto-detected resources to be created.\n * constructor(source, options) {\n * super();\n * }\n * upload(renderer, baseTexture, glTexture) {\n * // upload with GL\n * return true;\n * }\n * // used to auto-detect resource\n * static test(source, extension) {\n * return extension === 'xyz'|| source instanceof SomeClass;\n * }\n * }\n * // Install the new resource type\n * PIXI.resources.INSTALLED.push(CustomResource);\n *\n * @name PIXI.resources.INSTALLED\n * @type {Array<*>}\n * @static\n * @readonly\n */\nvar INSTALLED = [];\n\n/**\n * Create a resource element from a single source element. This\n * auto-detects which type of resource to create. All resources that\n * are auto-detectable must have a static `test` method and a constructor\n * with the arguments `(source, options?)`. Currently, the supported\n * resources for auto-detection include:\n * - {@link PIXI.resources.ImageResource}\n * - {@link PIXI.resources.CanvasResource}\n * - {@link PIXI.resources.VideoResource}\n * - {@link PIXI.resources.SVGResource}\n * - {@link PIXI.resources.BufferResource}\n * @static\n * @function PIXI.resources.autoDetectResource\n * @param {string|*} source - Resource source, this can be the URL to the resource,\n * a typed-array (for BufferResource), HTMLVideoElement, SVG data-uri\n * or any other resource that can be auto-detected. If not resource is\n * detected, it's assumed to be an ImageResource.\n * @param {object} [options] - Pass-through options to use for Resource\n * @param {number} [options.width] - Width of BufferResource or SVG rasterization\n * @param {number} [options.height] - Height of BufferResource or SVG rasterization\n * @param {boolean} [options.autoLoad=true] - Image, SVG and Video flag to start loading\n * @param {number} [options.scale=1] - SVG source scale. Overridden by width, height\n * @param {boolean} [options.createBitmap=PIXI.settings.CREATE_IMAGE_BITMAP] - Image option to create Bitmap object\n * @param {boolean} [options.crossorigin=true] - Image and Video option to set crossOrigin\n * @param {boolean} [options.autoPlay=true] - Video option to start playing video immediately\n * @param {number} [options.updateFPS=0] - Video option to update how many times a second the\n * texture should be updated from the video. Leave at 0 to update at every render\n * @return {PIXI.resources.Resource} The created resource.\n */\nfunction autoDetectResource(source, options)\n{\n if (!source)\n {\n return null;\n }\n\n var extension = '';\n\n if (typeof source === 'string')\n {\n // search for file extension: period, 3-4 chars, then ?, # or EOL\n var result = (/\\.(\\w{3,4})(?:$|\\?|#)/i).exec(source);\n\n if (result)\n {\n extension = result[1].toLowerCase();\n }\n }\n\n for (var i = INSTALLED.length - 1; i >= 0; --i)\n {\n var ResourcePlugin = INSTALLED[i];\n\n if (ResourcePlugin.test && ResourcePlugin.test(source, extension))\n {\n return new ResourcePlugin(source, options);\n }\n }\n\n // When in doubt: probably an image\n // might be appropriate to throw an error or return null\n return new ImageResource(source, options);\n}\n\n/**\n * @interface SharedArrayBuffer\n */\n\n/**\n * Buffer resource with data of typed array.\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n */\nvar BufferResource = /*@__PURE__*/(function (Resource) {\n function BufferResource(source, options)\n {\n var ref = options || {};\n var width = ref.width;\n var height = ref.height;\n\n if (!width || !height)\n {\n throw new Error('BufferResource width or height invalid');\n }\n\n Resource.call(this, width, height);\n\n /**\n * Source array\n * Cannot be ClampedUint8Array because it cant be uploaded to WebGL\n *\n * @member {Float32Array|Uint8Array|Uint32Array}\n */\n this.data = source;\n }\n\n if ( Resource ) BufferResource.__proto__ = Resource;\n BufferResource.prototype = Object.create( Resource && Resource.prototype );\n BufferResource.prototype.constructor = BufferResource;\n\n /**\n * Upload the texture to the GPU.\n * @param {PIXI.Renderer} renderer Upload to the renderer\n * @param {PIXI.BaseTexture} baseTexture Reference to parent texture\n * @param {PIXI.GLTexture} glTexture glTexture\n * @returns {boolean} true is success\n */\n BufferResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var gl = renderer.gl;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height)\n {\n gl.texSubImage2D(\n baseTexture.target,\n 0,\n 0,\n 0,\n baseTexture.width,\n baseTexture.height,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n else\n {\n glTexture.width = baseTexture.width;\n glTexture.height = baseTexture.height;\n\n gl.texImage2D(\n baseTexture.target,\n 0,\n glTexture.internalFormat,\n baseTexture.width,\n baseTexture.height,\n 0,\n baseTexture.format,\n glTexture.type,\n this.data\n );\n }\n\n return true;\n };\n\n /**\n * Destroy and don't use after this\n * @override\n */\n BufferResource.prototype.dispose = function dispose ()\n {\n this.data = null;\n };\n\n /**\n * Used to auto-detect the type of resource.\n *\n * @static\n * @param {*} source - The source object\n * @return {boolean} `true` if \n */\n BufferResource.test = function test (source)\n {\n return source instanceof Float32Array\n || source instanceof Uint8Array\n || source instanceof Uint32Array;\n };\n\n return BufferResource;\n}(Resource));\n\nvar defaultBufferOptions = {\n scaleMode: SCALE_MODES.NEAREST,\n format: FORMATS.RGBA,\n premultiplyAlpha: false,\n};\n\n/**\n * A Texture stores the information that represents an image.\n * All textures have a base texture, which contains information about the source.\n * Therefore you can have many textures all using a single BaseTexture\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n * @param {PIXI.resources.Resource|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} [resource=null]\n * The current resource to use, for things that aren't Resource objects, will be converted\n * into a Resource.\n * @param {Object} [options] - Collection of options\n * @param {PIXI.MIPMAP_MODES} [options.mipmap=PIXI.settings.MIPMAP_TEXTURES] - If mipmapping is enabled for texture\n * @param {number} [options.anisotropicLevel=PIXI.settings.ANISOTROPIC_LEVEL] - Anisotropic filtering level of texture\n * @param {PIXI.WRAP_MODES} [options.wrapMode=PIXI.settings.WRAP_MODE] - Wrap mode for textures\n * @param {PIXI.SCALE_MODES} [options.scaleMode=PIXI.settings.SCALE_MODE] - Default scale mode, linear, nearest\n * @param {PIXI.FORMATS} [options.format=PIXI.FORMATS.RGBA] - GL format type\n * @param {PIXI.TYPES} [options.type=PIXI.TYPES.UNSIGNED_BYTE] - GL data type\n * @param {PIXI.TARGETS} [options.target=PIXI.TARGETS.TEXTURE_2D] - GL texture target\n * @param {boolean} [options.premultiplyAlpha=true] - Pre multiply the image alpha\n * @param {number} [options.width=0] - Width of the texture\n * @param {number} [options.height=0] - Height of the texture\n * @param {number} [options.resolution] - Resolution of the base texture\n * @param {object} [options.resourceOptions] - Optional resource options,\n * see {@link PIXI.resources.autoDetectResource autoDetectResource}\n */\nvar BaseTexture = /*@__PURE__*/(function (EventEmitter) {\n function BaseTexture(resource, options)\n {\n if ( resource === void 0 ) resource = null;\n if ( options === void 0 ) options = null;\n\n EventEmitter.call(this);\n\n options = options || {};\n\n var premultiplyAlpha = options.premultiplyAlpha;\n var mipmap = options.mipmap;\n var anisotropicLevel = options.anisotropicLevel;\n var scaleMode = options.scaleMode;\n var width = options.width;\n var height = options.height;\n var wrapMode = options.wrapMode;\n var format = options.format;\n var type = options.type;\n var target = options.target;\n var resolution = options.resolution;\n var resourceOptions = options.resourceOptions;\n\n // Convert the resource to a Resource object\n if (resource && !(resource instanceof Resource))\n {\n resource = autoDetectResource(resource, resourceOptions);\n resource.internal = true;\n }\n\n /**\n * The width of the base texture set when the image has loaded\n *\n * @readonly\n * @member {number}\n */\n this.width = width || 0;\n\n /**\n * The height of the base texture set when the image has loaded\n *\n * @readonly\n * @member {number}\n */\n this.height = height || 0;\n\n /**\n * The resolution / device pixel ratio of the texture\n *\n * @member {number}\n * @default PIXI.settings.RESOLUTION\n */\n this.resolution = resolution || settings.RESOLUTION;\n\n /**\n * Mipmap mode of the texture, affects downscaled images\n *\n * @member {PIXI.MIPMAP_MODES}\n * @default PIXI.settings.MIPMAP_TEXTURES\n */\n this.mipmap = mipmap !== undefined ? mipmap : settings.MIPMAP_TEXTURES;\n\n /**\n * Anisotropic filtering level of texture\n *\n * @member {number}\n * @default PIXI.settings.ANISOTROPIC_LEVEL\n */\n this.anisotropicLevel = anisotropicLevel !== undefined ? anisotropicLevel : settings.ANISOTROPIC_LEVEL;\n\n /**\n * How the texture wraps\n * @member {number}\n */\n this.wrapMode = wrapMode || settings.WRAP_MODE;\n\n /**\n * The scale mode to apply when scaling this texture\n *\n * @member {PIXI.SCALE_MODES}\n * @default PIXI.settings.SCALE_MODE\n */\n this.scaleMode = scaleMode !== undefined ? scaleMode : settings.SCALE_MODE;\n\n /**\n * The pixel format of the texture\n *\n * @member {PIXI.FORMATS}\n * @default PIXI.FORMATS.RGBA\n */\n this.format = format || FORMATS.RGBA;\n\n /**\n * The type of resource data\n *\n * @member {PIXI.TYPES}\n * @default PIXI.TYPES.UNSIGNED_BYTE\n */\n this.type = type || TYPES.UNSIGNED_BYTE;\n\n /**\n * The target type\n *\n * @member {PIXI.TARGETS}\n * @default PIXI.TARGETS.TEXTURE_2D\n */\n this.target = target || TARGETS.TEXTURE_2D;\n\n /**\n * Set to true to enable pre-multiplied alpha\n *\n * @member {boolean}\n * @default true\n */\n this.premultiplyAlpha = premultiplyAlpha !== false;\n\n /**\n * Global unique identifier for this BaseTexture\n *\n * @member {string}\n * @protected\n */\n this.uid = uid();\n\n /**\n * Used by automatic texture Garbage Collection, stores last GC tick when it was bound\n *\n * @member {number}\n * @protected\n */\n this.touched = 0;\n\n /**\n * Whether or not the texture is a power of two, try to use power of two textures as much\n * as you can\n *\n * @readonly\n * @member {boolean}\n * @default false\n */\n this.isPowerOfTwo = false;\n this._refreshPOT();\n\n /**\n * The map of render context textures where this is bound\n *\n * @member {Object}\n * @private\n */\n this._glTextures = {};\n\n /**\n * Used by TextureSystem to only update texture to the GPU when needed.\n * Please call `update()` to increment it.\n *\n * @readonly\n * @member {number}\n */\n this.dirtyId = 0;\n\n /**\n * Used by TextureSystem to only update texture style when needed.\n *\n * @protected\n * @member {number}\n */\n this.dirtyStyleId = 0;\n\n /**\n * Currently default cache ID.\n *\n * @member {string}\n */\n this.cacheId = null;\n\n /**\n * Generally speaking means when resource is loaded.\n * @readonly\n * @member {boolean}\n */\n this.valid = width > 0 && height > 0;\n\n /**\n * The collection of alternative cache ids, since some BaseTextures\n * can have more than one ID, short name and longer full URL\n *\n * @member {Array}\n * @readonly\n */\n this.textureCacheIds = [];\n\n /**\n * Flag if BaseTexture has been destroyed.\n *\n * @member {boolean}\n * @readonly\n */\n this.destroyed = false;\n\n /**\n * The resource used by this BaseTexture, there can only\n * be one resource per BaseTexture, but textures can share\n * resources.\n *\n * @member {PIXI.resources.Resource}\n * @readonly\n */\n this.resource = null;\n\n /**\n * Number of the texture batch, used by multi-texture renderers\n *\n * @member {number}\n */\n this._batchEnabled = 0;\n\n /**\n * Fired when a not-immediately-available source finishes loading.\n *\n * @protected\n * @event PIXI.BaseTexture#loaded\n * @param {PIXI.BaseTexture} baseTexture - Resource loaded.\n */\n\n /**\n * Fired when a not-immediately-available source fails to load.\n *\n * @protected\n * @event PIXI.BaseTexture#error\n * @param {PIXI.BaseTexture} baseTexture - Resource errored.\n * @param {ErrorEvent} event - Load error event.\n */\n\n /**\n * Fired when BaseTexture is updated.\n *\n * @protected\n * @event PIXI.BaseTexture#loaded\n * @param {PIXI.BaseTexture} baseTexture - Resource loaded.\n */\n\n /**\n * Fired when BaseTexture is updated.\n *\n * @protected\n * @event PIXI.BaseTexture#update\n * @param {PIXI.BaseTexture} baseTexture - Instance of texture being updated.\n */\n\n /**\n * Fired when BaseTexture is destroyed.\n *\n * @protected\n * @event PIXI.BaseTexture#dispose\n * @param {PIXI.BaseTexture} baseTexture - Instance of texture being destroyed.\n */\n\n // Set the resource\n this.setResource(resource);\n }\n\n if ( EventEmitter ) BaseTexture.__proto__ = EventEmitter;\n BaseTexture.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n BaseTexture.prototype.constructor = BaseTexture;\n\n var prototypeAccessors = { realWidth: { configurable: true },realHeight: { configurable: true } };\n\n /**\n * Pixel width of the source of this texture\n *\n * @readonly\n * @member {number}\n */\n prototypeAccessors.realWidth.get = function ()\n {\n return Math.ceil((this.width * this.resolution) - 1e-4);\n };\n\n /**\n * Pixel height of the source of this texture\n *\n * @readonly\n * @member {number}\n */\n prototypeAccessors.realHeight.get = function ()\n {\n return Math.ceil((this.height * this.resolution) - 1e-4);\n };\n\n /**\n * Changes style options of BaseTexture\n *\n * @param {PIXI.SCALE_MODES} [scaleMode] - Pixi scalemode\n * @param {PIXI.MIPMAP_MODES} [mipmap] - enable mipmaps\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setStyle = function setStyle (scaleMode, mipmap)\n {\n var dirty;\n\n if (scaleMode !== undefined && scaleMode !== this.scaleMode)\n {\n this.scaleMode = scaleMode;\n dirty = true;\n }\n\n if (mipmap !== undefined && mipmap !== this.mipmap)\n {\n this.mipmap = mipmap;\n dirty = true;\n }\n\n if (dirty)\n {\n this.dirtyStyleId++;\n }\n\n return this;\n };\n\n /**\n * Changes w/h/resolution. Texture becomes valid if width and height are greater than zero.\n *\n * @param {number} width Visual width\n * @param {number} height Visual height\n * @param {number} [resolution] Optionally set resolution\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setSize = function setSize (width, height, resolution)\n {\n this.resolution = resolution || this.resolution;\n this.width = width;\n this.height = height;\n this._refreshPOT();\n this.update();\n\n return this;\n };\n\n /**\n * Sets real size of baseTexture, preserves current resolution.\n *\n * @param {number} realWidth Full rendered width\n * @param {number} realHeight Full rendered height\n * @param {number} [resolution] Optionally set resolution\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setRealSize = function setRealSize (realWidth, realHeight, resolution)\n {\n this.resolution = resolution || this.resolution;\n this.width = realWidth / this.resolution;\n this.height = realHeight / this.resolution;\n this._refreshPOT();\n this.update();\n\n return this;\n };\n\n /**\n * Refresh check for isPowerOfTwo texture based on size\n *\n * @private\n */\n BaseTexture.prototype._refreshPOT = function _refreshPOT ()\n {\n this.isPowerOfTwo = isPow2(this.realWidth) && isPow2(this.realHeight);\n };\n\n /**\n * Changes resolution\n *\n * @param {number} [resolution] res\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setResolution = function setResolution (resolution)\n {\n var oldResolution = this.resolution;\n\n if (oldResolution === resolution)\n {\n return this;\n }\n\n this.resolution = resolution;\n\n if (this.valid)\n {\n this.width = this.width * oldResolution / resolution;\n this.height = this.height * oldResolution / resolution;\n this.emit('update', this);\n }\n\n this._refreshPOT();\n\n return this;\n };\n\n /**\n * Sets the resource if it wasn't set. Throws error if resource already present\n *\n * @param {PIXI.resources.Resource} resource - that is managing this BaseTexture\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setResource = function setResource (resource)\n {\n if (this.resource === resource)\n {\n return this;\n }\n\n if (this.resource)\n {\n throw new Error('Resource can be set only once');\n }\n\n resource.bind(this);\n\n this.resource = resource;\n\n return this;\n };\n\n /**\n * Invalidates the object. Texture becomes valid if width and height are greater than zero.\n */\n BaseTexture.prototype.update = function update ()\n {\n if (!this.valid)\n {\n if (this.width > 0 && this.height > 0)\n {\n this.valid = true;\n this.emit('loaded', this);\n this.emit('update', this);\n }\n }\n else\n {\n this.dirtyId++;\n this.dirtyStyleId++;\n this.emit('update', this);\n }\n };\n\n /**\n * Handle errors with resources.\n * @private\n * @param {ErrorEvent} event - Error event emitted.\n */\n BaseTexture.prototype.onError = function onError (event)\n {\n this.emit('error', this, event);\n };\n\n /**\n * Destroys this base texture.\n * The method stops if resource doesn't want this texture to be destroyed.\n * Removes texture from all caches.\n */\n BaseTexture.prototype.destroy = function destroy ()\n {\n // remove and destroy the resource\n if (this.resource)\n {\n this.resource.unbind(this);\n // only destroy resourced created internally\n if (this.resource.internal)\n {\n this.resource.destroy();\n }\n this.resource = null;\n }\n\n if (this.cacheId)\n {\n delete BaseTextureCache[this.cacheId];\n delete TextureCache[this.cacheId];\n\n this.cacheId = null;\n }\n\n // finally let the WebGL renderer know..\n this.dispose();\n\n BaseTexture.removeFromCache(this);\n this.textureCacheIds = null;\n\n this.destroyed = true;\n };\n\n /**\n * Frees the texture from WebGL memory without destroying this texture object.\n * This means you can still use the texture later which will upload it to GPU\n * memory again.\n *\n * @fires PIXI.BaseTexture#dispose\n */\n BaseTexture.prototype.dispose = function dispose ()\n {\n this.emit('dispose', this);\n };\n\n /**\n * Helper function that creates a base texture based on the source you provide.\n * The source can be - image url, image element, canvas element. If the\n * source is an image url or an image element and not in the base texture\n * cache, it will be created and loaded.\n *\n * @static\n * @param {string|HTMLImageElement|HTMLCanvasElement|SVGElement|HTMLVideoElement} source - The\n * source to create base texture from.\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @returns {PIXI.BaseTexture} The new base texture.\n */\n BaseTexture.from = function from (source, options)\n {\n var cacheId = null;\n\n if (typeof source === 'string')\n {\n cacheId = source;\n }\n else\n {\n if (!source._pixiId)\n {\n source._pixiId = \"pixiid_\" + (uid());\n }\n\n cacheId = source._pixiId;\n }\n\n var baseTexture = BaseTextureCache[cacheId];\n\n if (!baseTexture)\n {\n baseTexture = new BaseTexture(source, options);\n baseTexture.cacheId = cacheId;\n BaseTexture.addToCache(baseTexture, cacheId);\n }\n\n return baseTexture;\n };\n\n /**\n * Create a new BaseTexture with a BufferResource from a Float32Array.\n * RGBA values are floats from 0 to 1.\n * @static\n * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data\n * is provided, a new Float32Array is created.\n * @param {number} width - Width of the resource\n * @param {number} height - Height of the resource\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.BaseTexture} The resulting new BaseTexture\n */\n BaseTexture.fromBuffer = function fromBuffer (buffer, width, height, options)\n {\n buffer = buffer || new Float32Array(width * height * 4);\n\n var resource = new BufferResource(buffer, { width: width, height: height });\n var type = buffer instanceof Float32Array ? TYPES.FLOAT : TYPES.UNSIGNED_BYTE;\n\n return new BaseTexture(resource, Object.assign(defaultBufferOptions, options || { width: width, height: height, type: type }));\n };\n\n /**\n * Adds a BaseTexture to the global BaseTextureCache. This cache is shared across the whole PIXI object.\n *\n * @static\n * @param {PIXI.BaseTexture} baseTexture - The BaseTexture to add to the cache.\n * @param {string} id - The id that the BaseTexture will be stored against.\n */\n BaseTexture.addToCache = function addToCache (baseTexture, id)\n {\n if (id)\n {\n if (baseTexture.textureCacheIds.indexOf(id) === -1)\n {\n baseTexture.textureCacheIds.push(id);\n }\n\n if (BaseTextureCache[id])\n {\n // eslint-disable-next-line no-console\n console.warn((\"BaseTexture added to the cache with an id [\" + id + \"] that already had an entry\"));\n }\n\n BaseTextureCache[id] = baseTexture;\n }\n };\n\n /**\n * Remove a BaseTexture from the global BaseTextureCache.\n *\n * @static\n * @param {string|PIXI.BaseTexture} baseTexture - id of a BaseTexture to be removed, or a BaseTexture instance itself.\n * @return {PIXI.BaseTexture|null} The BaseTexture that was removed.\n */\n BaseTexture.removeFromCache = function removeFromCache (baseTexture)\n {\n if (typeof baseTexture === 'string')\n {\n var baseTextureFromCache = BaseTextureCache[baseTexture];\n\n if (baseTextureFromCache)\n {\n var index = baseTextureFromCache.textureCacheIds.indexOf(baseTexture);\n\n if (index > -1)\n {\n baseTextureFromCache.textureCacheIds.splice(index, 1);\n }\n\n delete BaseTextureCache[baseTexture];\n\n return baseTextureFromCache;\n }\n }\n else if (baseTexture && baseTexture.textureCacheIds)\n {\n for (var i = 0; i < baseTexture.textureCacheIds.length; ++i)\n {\n delete BaseTextureCache[baseTexture.textureCacheIds[i]];\n }\n\n baseTexture.textureCacheIds.length = 0;\n\n return baseTexture;\n }\n\n return null;\n };\n\n Object.defineProperties( BaseTexture.prototype, prototypeAccessors );\n\n return BaseTexture;\n}(EventEmitter));\n\n/**\n * Global number of the texture batch, used by multi-texture renderers\n *\n * @static\n * @member {number}\n */\nBaseTexture._globalBatch = 0;\n\n/**\n * A resource that contains a number of sources.\n *\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n * @param {number|Array<*>} source - Number of items in array or the collection\n * of image URLs to use. Can also be resources, image elements, canvas, etc.\n * @param {object} [options] Options to apply to {@link PIXI.resources.autoDetectResource}\n * @param {number} [options.width] - Width of the resource\n * @param {number} [options.height] - Height of the resource\n */\nvar ArrayResource = /*@__PURE__*/(function (Resource) {\n function ArrayResource(source, options)\n {\n options = options || {};\n\n var urls;\n var length = source;\n\n if (Array.isArray(source))\n {\n urls = source;\n length = source.length;\n }\n\n Resource.call(this, options.width, options.height);\n\n /**\n * Collection of resources.\n * @member {Array}\n * @readonly\n */\n this.items = [];\n\n /**\n * Dirty IDs for each part\n * @member {Array}\n * @readonly\n */\n this.itemDirtyIds = [];\n\n for (var i = 0; i < length; i++)\n {\n var partTexture = new BaseTexture();\n\n this.items.push(partTexture);\n this.itemDirtyIds.push(-1);\n }\n\n /**\n * Number of elements in array\n *\n * @member {number}\n * @readonly\n */\n this.length = length;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (urls)\n {\n for (var i$1 = 0; i$1 < length; i$1++)\n {\n this.addResourceAt(autoDetectResource(urls[i$1], options), i$1);\n }\n }\n }\n\n if ( Resource ) ArrayResource.__proto__ = Resource;\n ArrayResource.prototype = Object.create( Resource && Resource.prototype );\n ArrayResource.prototype.constructor = ArrayResource;\n\n /**\n * Destroy this BaseImageResource\n * @override\n */\n ArrayResource.prototype.dispose = function dispose ()\n {\n for (var i = 0, len = this.length; i < len; i++)\n {\n this.items[i].destroy();\n }\n this.items = null;\n this.itemDirtyIds = null;\n this._load = null;\n };\n\n /**\n * Set a resource by ID\n *\n * @param {PIXI.resources.Resource} resource\n * @param {number} index - Zero-based index of resource to set\n * @return {PIXI.resources.ArrayResource} Instance for chaining\n */\n ArrayResource.prototype.addResourceAt = function addResourceAt (resource, index)\n {\n var baseTexture = this.items[index];\n\n if (!baseTexture)\n {\n throw new Error((\"Index \" + index + \" is out of bounds\"));\n }\n\n // Inherit the first resource dimensions\n if (resource.valid && !this.valid)\n {\n this.resize(resource.width, resource.height);\n }\n\n this.items[index].setResource(resource);\n\n return this;\n };\n\n /**\n * Set the parent base texture\n * @member {PIXI.BaseTexture}\n * @override\n */\n ArrayResource.prototype.bind = function bind (baseTexture)\n {\n Resource.prototype.bind.call(this, baseTexture);\n\n baseTexture.target = TARGETS.TEXTURE_2D_ARRAY;\n\n for (var i = 0; i < this.length; i++)\n {\n this.items[i].on('update', baseTexture.update, baseTexture);\n }\n };\n\n /**\n * Unset the parent base texture\n * @member {PIXI.BaseTexture}\n * @override\n */\n ArrayResource.prototype.unbind = function unbind (baseTexture)\n {\n Resource.prototype.unbind.call(this, baseTexture);\n\n for (var i = 0; i < this.length; i++)\n {\n this.items[i].off('update', baseTexture.update, baseTexture);\n }\n };\n\n /**\n * Load all the resources simultaneously\n * @override\n * @return {Promise} When load is resolved\n */\n ArrayResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n var resources = this.items.map(function (item) { return item.resource; });\n\n // TODO: also implement load part-by-part strategy\n var promises = resources.map(function (item) { return item.load(); });\n\n this._load = Promise.all(promises)\n .then(function () {\n var ref = resources[0];\n var width = ref.width;\n var height = ref.height;\n\n this$1.resize(width, height);\n\n return Promise.resolve(this$1);\n }\n );\n\n return this._load;\n };\n\n /**\n * Upload the resources to the GPU.\n * @param {PIXI.Renderer} renderer\n * @param {PIXI.BaseTexture} texture\n * @param {PIXI.GLTexture} glTexture\n * @returns {boolean} whether texture was uploaded\n */\n ArrayResource.prototype.upload = function upload (renderer, texture, glTexture)\n {\n var ref = this;\n var length = ref.length;\n var itemDirtyIds = ref.itemDirtyIds;\n var items = ref.items;\n var gl = renderer.gl;\n\n if (glTexture.dirtyId < 0)\n {\n gl.texImage3D(\n gl.TEXTURE_2D_ARRAY,\n 0,\n texture.format,\n this._width,\n this._height,\n length,\n 0,\n texture.format,\n texture.type,\n null\n );\n }\n\n for (var i = 0; i < length; i++)\n {\n var item = items[i];\n\n if (itemDirtyIds[i] < item.dirtyId)\n {\n itemDirtyIds[i] = item.dirtyId;\n if (item.valid)\n {\n gl.texSubImage3D(\n gl.TEXTURE_2D_ARRAY,\n 0,\n 0, // xoffset\n 0, // yoffset\n i, // zoffset\n item.resource.width,\n item.resource.height,\n 1,\n texture.format,\n texture.type,\n item.resource.source\n );\n }\n }\n }\n\n return true;\n };\n\n return ArrayResource;\n}(Resource));\n\n/**\n * @interface OffscreenCanvas\n */\n\n/**\n * Resource type for HTMLCanvasElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {HTMLCanvasElement} source - Canvas element to use\n */\nvar CanvasResource = /*@__PURE__*/(function (BaseImageResource) {\n function CanvasResource () {\n BaseImageResource.apply(this, arguments);\n }\n\n if ( BaseImageResource ) CanvasResource.__proto__ = BaseImageResource;\n CanvasResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n CanvasResource.prototype.constructor = CanvasResource;\n\n CanvasResource.test = function test (source)\n {\n var OffscreenCanvas = window.OffscreenCanvas;\n\n // Check for browsers that don't yet support OffscreenCanvas\n if (OffscreenCanvas && source instanceof OffscreenCanvas)\n {\n return true;\n }\n\n return source instanceof HTMLCanvasElement;\n };\n\n return CanvasResource;\n}(BaseImageResource));\n\n/**\n * Resource for a CubeTexture which contains six resources.\n *\n * @class\n * @extends PIXI.resources.ArrayResource\n * @memberof PIXI.resources\n * @param {Array} [source] Collection of URLs or resources\n * to use as the sides of the cube.\n * @param {object} [options] - ImageResource options\n * @param {number} [options.width] - Width of resource\n * @param {number} [options.height] - Height of resource\n */\nvar CubeResource = /*@__PURE__*/(function (ArrayResource) {\n function CubeResource(source, options)\n {\n options = options || {};\n\n ArrayResource.call(this, source, options);\n\n if (this.length !== CubeResource.SIDES)\n {\n throw new Error((\"Invalid length. Got \" + (this.length) + \", expected 6\"));\n }\n\n for (var i = 0; i < CubeResource.SIDES; i++)\n {\n this.items[i].target = TARGETS.TEXTURE_CUBE_MAP_POSITIVE_X + i;\n }\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( ArrayResource ) CubeResource.__proto__ = ArrayResource;\n CubeResource.prototype = Object.create( ArrayResource && ArrayResource.prototype );\n CubeResource.prototype.constructor = CubeResource;\n\n /**\n * Add binding\n *\n * @override\n * @param {PIXI.BaseTexture} baseTexture - parent base texture\n */\n CubeResource.prototype.bind = function bind (baseTexture)\n {\n ArrayResource.prototype.bind.call(this, baseTexture);\n\n baseTexture.target = TARGETS.TEXTURE_CUBE_MAP;\n };\n\n /**\n * Upload the resource\n *\n * @returns {boolean} true is success\n */\n CubeResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var dirty = this.itemDirtyIds;\n\n for (var i = 0; i < CubeResource.SIDES; i++)\n {\n var side = this.items[i];\n\n if (dirty[i] < side.dirtyId)\n {\n dirty[i] = side.dirtyId;\n if (side.valid)\n {\n side.resource.upload(renderer, side, glTexture);\n }\n }\n }\n\n return true;\n };\n\n return CubeResource;\n}(ArrayResource));\n\n/**\n * Number of texture sides to store for CubeResources\n *\n * @name PIXI.resources.CubeResource.SIDES\n * @static\n * @member {number}\n * @default 6\n */\nCubeResource.SIDES = 6;\n\n/**\n * Resource type for SVG elements and graphics.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {string} source - Base64 encoded SVG element or URL for SVG file.\n * @param {object} [options] - Options to use\n * @param {number} [options.scale=1] Scale to apply to SVG. Overridden by...\n * @param {number} [options.width] Rasterize SVG this wide. Aspect ratio preserved if height not specified.\n * @param {number} [options.height] Rasterize SVG this high. Aspect ratio preserved if width not specified.\n * @param {boolean} [options.autoLoad=true] Start loading right away.\n */\nvar SVGResource = /*@__PURE__*/(function (BaseImageResource) {\n function SVGResource(source, options)\n {\n options = options || {};\n\n BaseImageResource.call(this, document.createElement('canvas'));\n this._width = 0;\n this._height = 0;\n\n /**\n * Base64 encoded SVG element or URL for SVG file\n * @readonly\n * @member {string}\n */\n this.svg = source;\n\n /**\n * The source scale to apply when rasterizing on load\n * @readonly\n * @member {number}\n */\n this.scale = options.scale || 1;\n\n /**\n * A width override for rasterization on load\n * @readonly\n * @member {number}\n */\n this._overrideWidth = options.width;\n\n /**\n * A height override for rasterization on load\n * @readonly\n * @member {number}\n */\n this._overrideHeight = options.height;\n\n /**\n * Call when completely loaded\n * @private\n * @member {function}\n */\n this._resolve = null;\n\n /**\n * Cross origin value to use\n * @private\n * @member {boolean|string}\n */\n this._crossorigin = options.crossorigin;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) SVGResource.__proto__ = BaseImageResource;\n SVGResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n SVGResource.prototype.constructor = SVGResource;\n\n SVGResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n this._load = new Promise(function (resolve) {\n // Save this until after load is finished\n this$1._resolve = function () {\n this$1.resize(this$1.source.width, this$1.source.height);\n resolve(this$1);\n };\n\n // Convert SVG inline string to data-uri\n if ((/^\\]*(?:\\s(width|height)=('|\")(\\d*(?:\\.\\d+)?)(?:px)?('|\"))[^>]*(?:\\s(width|height)=('|\")(\\d*(?:\\.\\d+)?)(?:px)?('|\"))[^>]*>/i; // eslint-disable-line max-len\n\n/**\n * Resource type for HTMLVideoElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {HTMLVideoElement|object|string|Array} source - Video element to use.\n * @param {object} [options] - Options to use\n * @param {boolean} [options.autoLoad=true] - Start loading the video immediately\n * @param {boolean} [options.autoPlay=true] - Start playing video immediately\n * @param {number} [options.updateFPS=0] - How many times a second to update the texture from the video.\n * Leave at 0 to update at every render.\n * @param {boolean} [options.crossorigin=true] - Load image using cross origin\n */\nvar VideoResource = /*@__PURE__*/(function (BaseImageResource) {\n function VideoResource(source, options)\n {\n options = options || {};\n\n if (!(source instanceof HTMLVideoElement))\n {\n var videoElement = document.createElement('video');\n\n // workaround for https://github.com/pixijs/pixi.js/issues/5996\n videoElement.setAttribute('preload', 'auto');\n videoElement.setAttribute('webkit-playsinline', '');\n videoElement.setAttribute('playsinline', '');\n\n if (typeof source === 'string')\n {\n source = [source];\n }\n\n BaseImageResource.crossOrigin(videoElement, (source[0].src || source[0]), options.crossorigin);\n\n // array of objects or strings\n for (var i = 0; i < source.length; ++i)\n {\n var sourceElement = document.createElement('source');\n\n var ref = source[i];\n var src = ref.src;\n var mime = ref.mime;\n\n src = src || source[i];\n\n var baseSrc = src.split('?').shift().toLowerCase();\n var ext = baseSrc.substr(baseSrc.lastIndexOf('.') + 1);\n\n mime = mime || (\"video/\" + ext);\n\n sourceElement.src = src;\n sourceElement.type = mime;\n\n videoElement.appendChild(sourceElement);\n }\n\n // Override the source\n source = videoElement;\n }\n\n BaseImageResource.call(this, source);\n\n this.noSubImage = true;\n this._autoUpdate = true;\n this._isAutoUpdating = false;\n this._updateFPS = options.updateFPS || 0;\n this._msToNextUpdate = 0;\n\n /**\n * When set to true will automatically play videos used by this texture once\n * they are loaded. If false, it will not modify the playing state.\n *\n * @member {boolean}\n * @default true\n */\n this.autoPlay = options.autoPlay !== false;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n /**\n * Callback when completed with load.\n * @member {function}\n * @private\n */\n this._resolve = null;\n\n // Bind for listeners\n this._onCanPlay = this._onCanPlay.bind(this);\n this._onError = this._onError.bind(this);\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) VideoResource.__proto__ = BaseImageResource;\n VideoResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n VideoResource.prototype.constructor = VideoResource;\n\n var prototypeAccessors = { autoUpdate: { configurable: true },updateFPS: { configurable: true } };\n\n /**\n * Trigger updating of the texture\n *\n * @param {number} [deltaTime=0] - time delta since last tick\n */\n VideoResource.prototype.update = function update (deltaTime)\n {\n if ( deltaTime === void 0 ) deltaTime = 0;\n\n if (!this.destroyed)\n {\n // account for if video has had its playbackRate changed\n var elapsedMS = Ticker.shared.elapsedMS * this.source.playbackRate;\n\n this._msToNextUpdate = Math.floor(this._msToNextUpdate - elapsedMS);\n if (!this._updateFPS || this._msToNextUpdate <= 0)\n {\n BaseImageResource.prototype.update.call(this, deltaTime);\n this._msToNextUpdate = this._updateFPS ? Math.floor(1000 / this._updateFPS) : 0;\n }\n }\n };\n\n /**\n * Start preloading the video resource.\n *\n * @protected\n * @return {Promise} Handle the validate event\n */\n VideoResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n var source = this.source;\n\n if ((source.readyState === source.HAVE_ENOUGH_DATA || source.readyState === source.HAVE_FUTURE_DATA)\n && source.width && source.height)\n {\n source.complete = true;\n }\n\n source.addEventListener('play', this._onPlayStart.bind(this));\n source.addEventListener('pause', this._onPlayStop.bind(this));\n\n if (!this._isSourceReady())\n {\n source.addEventListener('canplay', this._onCanPlay);\n source.addEventListener('canplaythrough', this._onCanPlay);\n source.addEventListener('error', this._onError, true);\n }\n else\n {\n this._onCanPlay();\n }\n\n this._load = new Promise(function (resolve) {\n if (this$1.valid)\n {\n resolve(this$1);\n }\n else\n {\n this$1._resolve = resolve;\n\n source.load();\n }\n });\n\n return this._load;\n };\n\n /**\n * Handle video error events.\n *\n * @private\n */\n VideoResource.prototype._onError = function _onError ()\n {\n this.source.removeEventListener('error', this._onError, true);\n this.onError.run(event);\n };\n\n /**\n * Returns true if the underlying source is playing.\n *\n * @private\n * @return {boolean} True if playing.\n */\n VideoResource.prototype._isSourcePlaying = function _isSourcePlaying ()\n {\n var source = this.source;\n\n return (source.currentTime > 0 && source.paused === false && source.ended === false && source.readyState > 2);\n };\n\n /**\n * Returns true if the underlying source is ready for playing.\n *\n * @private\n * @return {boolean} True if ready.\n */\n VideoResource.prototype._isSourceReady = function _isSourceReady ()\n {\n return this.source.readyState === 3 || this.source.readyState === 4;\n };\n\n /**\n * Runs the update loop when the video is ready to play\n *\n * @private\n */\n VideoResource.prototype._onPlayStart = function _onPlayStart ()\n {\n // Just in case the video has not received its can play even yet..\n if (!this.valid)\n {\n this._onCanPlay();\n }\n\n if (!this._isAutoUpdating && this.autoUpdate)\n {\n Ticker.shared.add(this.update, this);\n this._isAutoUpdating = true;\n }\n };\n\n /**\n * Fired when a pause event is triggered, stops the update loop\n *\n * @private\n */\n VideoResource.prototype._onPlayStop = function _onPlayStop ()\n {\n if (this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n this._isAutoUpdating = false;\n }\n };\n\n /**\n * Fired when the video is loaded and ready to play\n *\n * @private\n */\n VideoResource.prototype._onCanPlay = function _onCanPlay ()\n {\n var ref = this;\n var source = ref.source;\n\n source.removeEventListener('canplay', this._onCanPlay);\n source.removeEventListener('canplaythrough', this._onCanPlay);\n\n var valid = this.valid;\n\n this.resize(source.videoWidth, source.videoHeight);\n\n // prevent multiple loaded dispatches..\n if (!valid && this._resolve)\n {\n this._resolve(this);\n this._resolve = null;\n }\n\n if (this._isSourcePlaying())\n {\n this._onPlayStart();\n }\n else if (this.autoPlay)\n {\n source.play();\n }\n };\n\n /**\n * Destroys this texture\n * @override\n */\n VideoResource.prototype.dispose = function dispose ()\n {\n if (this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n }\n\n if (this.source)\n {\n this.source.removeEventListener('error', this._onError, true);\n this.source.pause();\n this.source.src = '';\n this.source.load();\n }\n BaseImageResource.prototype.dispose.call(this);\n };\n\n /**\n * Should the base texture automatically update itself, set to true by default\n *\n * @member {boolean}\n */\n prototypeAccessors.autoUpdate.get = function ()\n {\n return this._autoUpdate;\n };\n\n prototypeAccessors.autoUpdate.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (value !== this._autoUpdate)\n {\n this._autoUpdate = value;\n\n if (!this._autoUpdate && this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n this._isAutoUpdating = false;\n }\n else if (this._autoUpdate && !this._isAutoUpdating)\n {\n Ticker.shared.add(this.update, this);\n this._isAutoUpdating = true;\n }\n }\n };\n\n /**\n * How many times a second to update the texture from the video. Leave at 0 to update at every render.\n * A lower fps can help performance, as updating the texture at 60fps on a 30ps video may not be efficient.\n *\n * @member {number}\n */\n prototypeAccessors.updateFPS.get = function ()\n {\n return this._updateFPS;\n };\n\n prototypeAccessors.updateFPS.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (value !== this._updateFPS)\n {\n this._updateFPS = value;\n }\n };\n\n /**\n * Used to auto-detect the type of resource.\n *\n * @static\n * @param {*} source - The source object\n * @param {string} extension - The extension of source, if set\n * @return {boolean} `true` if video source\n */\n VideoResource.test = function test (source, extension)\n {\n return (source instanceof HTMLVideoElement)\n || VideoResource.TYPES.indexOf(extension) > -1;\n };\n\n Object.defineProperties( VideoResource.prototype, prototypeAccessors );\n\n return VideoResource;\n}(BaseImageResource));\n\n/**\n * List of common video file extensions supported by VideoResource.\n * @constant\n * @member {Array}\n * @static\n * @readonly\n */\nVideoResource.TYPES = ['mp4', 'm4v', 'webm', 'ogg', 'ogv', 'h264', 'avi', 'mov'];\n\n/**\n * Resource type for ImageBitmap.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {ImageBitmap} source - Image element to use\n */\nvar ImageBitmapResource = /*@__PURE__*/(function (BaseImageResource) {\n function ImageBitmapResource () {\n BaseImageResource.apply(this, arguments);\n }\n\n if ( BaseImageResource ) ImageBitmapResource.__proto__ = BaseImageResource;\n ImageBitmapResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n ImageBitmapResource.prototype.constructor = ImageBitmapResource;\n\n ImageBitmapResource.test = function test (source)\n {\n return !!window.createImageBitmap && source instanceof ImageBitmap;\n };\n\n return ImageBitmapResource;\n}(BaseImageResource));\n\nINSTALLED.push(\n ImageResource,\n ImageBitmapResource,\n CanvasResource,\n VideoResource,\n SVGResource,\n BufferResource,\n CubeResource,\n ArrayResource\n);\n\nvar index = ({\n INSTALLED: INSTALLED,\n autoDetectResource: autoDetectResource,\n ArrayResource: ArrayResource,\n BufferResource: BufferResource,\n CanvasResource: CanvasResource,\n CubeResource: CubeResource,\n ImageResource: ImageResource,\n ImageBitmapResource: ImageBitmapResource,\n SVGResource: SVGResource,\n VideoResource: VideoResource,\n Resource: Resource,\n BaseImageResource: BaseImageResource\n});\n\n/**\n * System is a base class used for extending systems used by the {@link PIXI.Renderer}\n *\n * @see PIXI.Renderer#addSystem\n * @class\n * @memberof PIXI\n */\nvar System = function System(renderer)\n{\n /**\n * The renderer this manager works for.\n *\n * @member {PIXI.Renderer}\n */\n this.renderer = renderer;\n};\n\n/**\n * Generic destroy methods to be overridden by the subclass\n */\nSystem.prototype.destroy = function destroy ()\n{\n this.renderer = null;\n};\n\n/**\n * Resource type for DepthTexture.\n * @class\n * @extends PIXI.resources.BufferResource\n * @memberof PIXI.resources\n */\nvar DepthResource = /*@__PURE__*/(function (BufferResource) {\n function DepthResource () {\n BufferResource.apply(this, arguments);\n }\n\n if ( BufferResource ) DepthResource.__proto__ = BufferResource;\n DepthResource.prototype = Object.create( BufferResource && BufferResource.prototype );\n DepthResource.prototype.constructor = DepthResource;\n\n DepthResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var gl = renderer.gl;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height)\n {\n gl.texSubImage2D(\n baseTexture.target,\n 0,\n 0,\n 0,\n baseTexture.width,\n baseTexture.height,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n else\n {\n glTexture.width = baseTexture.width;\n glTexture.height = baseTexture.height;\n\n gl.texImage2D(\n baseTexture.target,\n 0,\n gl.DEPTH_COMPONENT16, // Needed for depth to render properly in webgl2.0\n baseTexture.width,\n baseTexture.height,\n 0,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n\n return true;\n };\n\n return DepthResource;\n}(BufferResource));\n\n/**\n * Frame buffer used by the BaseRenderTexture\n *\n * @class\n * @memberof PIXI\n */\nvar Framebuffer = function Framebuffer(width, height)\n{\n this.width = Math.ceil(width || 100);\n this.height = Math.ceil(height || 100);\n\n this.stencil = false;\n this.depth = false;\n\n this.dirtyId = 0;\n this.dirtyFormat = 0;\n this.dirtySize = 0;\n\n this.depthTexture = null;\n this.colorTextures = [];\n\n this.glFramebuffers = {};\n\n this.disposeRunner = new Runner('disposeFramebuffer', 2);\n};\n\nvar prototypeAccessors$1 = { colorTexture: { configurable: true } };\n\n/**\n * Reference to the colorTexture.\n *\n * @member {PIXI.Texture[]}\n * @readonly\n */\nprototypeAccessors$1.colorTexture.get = function ()\n{\n return this.colorTextures[0];\n};\n\n/**\n * Add texture to the colorTexture array\n *\n * @param {number} [index=0] - Index of the array to add the texture to\n * @param {PIXI.Texture} [texture] - Texture to add to the array\n */\nFramebuffer.prototype.addColorTexture = function addColorTexture (index, texture)\n{\n if ( index === void 0 ) index = 0;\n\n // TODO add some validation to the texture - same width / height etc?\n this.colorTextures[index] = texture || new BaseTexture(null, { scaleMode: 0,\n resolution: 1,\n mipmap: false,\n width: this.width,\n height: this.height });// || new Texture();\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Add a depth texture to the frame buffer\n *\n * @param {PIXI.Texture} [texture] - Texture to add\n */\nFramebuffer.prototype.addDepthTexture = function addDepthTexture (texture)\n{\n /* eslint-disable max-len */\n this.depthTexture = texture || new BaseTexture(new DepthResource(null, { width: this.width, height: this.height }), { scaleMode: 0,\n resolution: 1,\n width: this.width,\n height: this.height,\n mipmap: false,\n format: FORMATS.DEPTH_COMPONENT,\n type: TYPES.UNSIGNED_SHORT });// UNSIGNED_SHORT;\n /* eslint-disable max-len */\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Enable depth on the frame buffer\n */\nFramebuffer.prototype.enableDepth = function enableDepth ()\n{\n this.depth = true;\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Enable stencil on the frame buffer\n */\nFramebuffer.prototype.enableStencil = function enableStencil ()\n{\n this.stencil = true;\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Resize the frame buffer\n *\n * @param {number} width - Width of the frame buffer to resize to\n * @param {number} height - Height of the frame buffer to resize to\n */\nFramebuffer.prototype.resize = function resize (width, height)\n{\n width = Math.ceil(width);\n height = Math.ceil(height);\n\n if (width === this.width && height === this.height) { return; }\n\n this.width = width;\n this.height = height;\n\n this.dirtyId++;\n this.dirtySize++;\n\n for (var i = 0; i < this.colorTextures.length; i++)\n {\n var texture = this.colorTextures[i];\n var resolution = texture.resolution;\n\n // take into acount the fact the texture may have a different resolution..\n texture.setSize(width / resolution, height / resolution);\n }\n\n if (this.depthTexture)\n {\n var resolution$1 = this.depthTexture.resolution;\n\n this.depthTexture.setSize(width / resolution$1, height / resolution$1);\n }\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nFramebuffer.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\nObject.defineProperties( Framebuffer.prototype, prototypeAccessors$1 );\n\n/**\n * A BaseRenderTexture is a special texture that allows any PixiJS display object to be rendered to it.\n *\n * __Hint__: All DisplayObjects (i.e. Sprites) that render to a BaseRenderTexture should be preloaded\n * otherwise black rectangles will be drawn instead.\n *\n * A BaseRenderTexture takes a snapshot of any Display Object given to its render method. The position\n * and rotation of the given Display Objects is ignored. For example:\n *\n * ```js\n * let renderer = PIXI.autoDetectRenderer();\n * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 800, height: 600 });\n * let renderTexture = new PIXI.RenderTexture(baseRenderTexture);\n * let sprite = PIXI.Sprite.from(\"spinObj_01.png\");\n *\n * sprite.position.x = 800/2;\n * sprite.position.y = 600/2;\n * sprite.anchor.x = 0.5;\n * sprite.anchor.y = 0.5;\n *\n * renderer.render(sprite, renderTexture);\n * ```\n *\n * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0\n * you can clear the transform\n *\n * ```js\n *\n * sprite.setTransform()\n *\n * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 100, height: 100 });\n * let renderTexture = new PIXI.RenderTexture(baseRenderTexture);\n *\n * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture\n * ```\n *\n * @class\n * @extends PIXI.BaseTexture\n * @memberof PIXI\n */\nvar BaseRenderTexture = /*@__PURE__*/(function (BaseTexture) {\n function BaseRenderTexture(options)\n {\n if (typeof options === 'number')\n {\n /* eslint-disable prefer-rest-params */\n // Backward compatibility of signature\n var width$1 = arguments[0];\n var height$1 = arguments[1];\n var scaleMode = arguments[2];\n var resolution = arguments[3];\n\n options = { width: width$1, height: height$1, scaleMode: scaleMode, resolution: resolution };\n /* eslint-enable prefer-rest-params */\n }\n\n BaseTexture.call(this, null, options);\n\n var ref = options || {};\n var width = ref.width;\n var height = ref.height;\n\n // Set defaults\n this.mipmap = false;\n this.width = Math.ceil(width) || 100;\n this.height = Math.ceil(height) || 100;\n this.valid = true;\n\n /**\n * A reference to the canvas render target (we only need one as this can be shared across renderers)\n *\n * @protected\n * @member {object}\n */\n this._canvasRenderTarget = null;\n\n this.clearColor = [0, 0, 0, 0];\n\n this.framebuffer = new Framebuffer(this.width * this.resolution, this.height * this.resolution)\n .addColorTexture(0, this);\n\n // TODO - could this be added the systems?\n\n /**\n * The data structure for the stencil masks.\n *\n * @member {PIXI.Graphics[]}\n */\n this.stencilMaskStack = [];\n\n /**\n * The data structure for the filters.\n *\n * @member {PIXI.Graphics[]}\n */\n this.filterStack = [{}];\n }\n\n if ( BaseTexture ) BaseRenderTexture.__proto__ = BaseTexture;\n BaseRenderTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype );\n BaseRenderTexture.prototype.constructor = BaseRenderTexture;\n\n /**\n * Resizes the BaseRenderTexture.\n *\n * @param {number} width - The width to resize to.\n * @param {number} height - The height to resize to.\n */\n BaseRenderTexture.prototype.resize = function resize (width, height)\n {\n width = Math.ceil(width);\n height = Math.ceil(height);\n this.framebuffer.resize(width * this.resolution, height * this.resolution);\n };\n\n /**\n * Frees the texture and framebuffer from WebGL memory without destroying this texture object.\n * This means you can still use the texture later which will upload it to GPU\n * memory again.\n *\n * @fires PIXI.BaseTexture#dispose\n */\n BaseRenderTexture.prototype.dispose = function dispose ()\n {\n this.framebuffer.dispose();\n\n BaseTexture.prototype.dispose.call(this);\n };\n\n /**\n * Destroys this texture.\n *\n */\n BaseRenderTexture.prototype.destroy = function destroy ()\n {\n BaseTexture.prototype.destroy.call(this, true);\n\n this.framebuffer = null;\n };\n\n return BaseRenderTexture;\n}(BaseTexture));\n\n/**\n * Stores a texture's frame in UV coordinates, in\n * which everything lies in the rectangle `[(0,0), (1,0),\n * (1,1), (0,1)]`.\n *\n * | Corner | Coordinates |\n * |--------------|-------------|\n * | Top-Left | `(x0,y0)` |\n * | Top-Right | `(x1,y1)` |\n * | Bottom-Right | `(x2,y2)` |\n * | Bottom-Left | `(x3,y3)` |\n *\n * @class\n * @protected\n * @memberof PIXI\n */\nvar TextureUvs = function TextureUvs()\n{\n /**\n * X-component of top-left corner `(x0,y0)`.\n *\n * @member {number}\n */\n this.x0 = 0;\n\n /**\n * Y-component of top-left corner `(x0,y0)`.\n *\n * @member {number}\n */\n this.y0 = 0;\n\n /**\n * X-component of top-right corner `(x1,y1)`.\n *\n * @member {number}\n */\n this.x1 = 1;\n\n /**\n * Y-component of top-right corner `(x1,y1)`.\n *\n * @member {number}\n */\n this.y1 = 0;\n\n /**\n * X-component of bottom-right corner `(x2,y2)`.\n *\n * @member {number}\n */\n this.x2 = 1;\n\n /**\n * Y-component of bottom-right corner `(x2,y2)`.\n *\n * @member {number}\n */\n this.y2 = 1;\n\n /**\n * X-component of bottom-left corner `(x3,y3)`.\n *\n * @member {number}\n */\n this.x3 = 0;\n\n /**\n * Y-component of bottom-right corner `(x3,y3)`.\n *\n * @member {number}\n */\n this.y3 = 1;\n\n this.uvsFloat32 = new Float32Array(8);\n};\n\n/**\n * Sets the texture Uvs based on the given frame information.\n *\n * @protected\n * @param {PIXI.Rectangle} frame - The frame of the texture\n * @param {PIXI.Rectangle} baseFrame - The base frame of the texture\n * @param {number} rotate - Rotation of frame, see {@link PIXI.GroupD8}\n */\nTextureUvs.prototype.set = function set (frame, baseFrame, rotate)\n{\n var tw = baseFrame.width;\n var th = baseFrame.height;\n\n if (rotate)\n {\n // width and height div 2 div baseFrame size\n var w2 = frame.width / 2 / tw;\n var h2 = frame.height / 2 / th;\n\n // coordinates of center\n var cX = (frame.x / tw) + w2;\n var cY = (frame.y / th) + h2;\n\n rotate = GroupD8.add(rotate, GroupD8.NW); // NW is top-left corner\n this.x0 = cX + (w2 * GroupD8.uX(rotate));\n this.y0 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2); // rotate 90 degrees clockwise\n this.x1 = cX + (w2 * GroupD8.uX(rotate));\n this.y1 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2);\n this.x2 = cX + (w2 * GroupD8.uX(rotate));\n this.y2 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2);\n this.x3 = cX + (w2 * GroupD8.uX(rotate));\n this.y3 = cY + (h2 * GroupD8.uY(rotate));\n }\n else\n {\n this.x0 = frame.x / tw;\n this.y0 = frame.y / th;\n\n this.x1 = (frame.x + frame.width) / tw;\n this.y1 = frame.y / th;\n\n this.x2 = (frame.x + frame.width) / tw;\n this.y2 = (frame.y + frame.height) / th;\n\n this.x3 = frame.x / tw;\n this.y3 = (frame.y + frame.height) / th;\n }\n\n this.uvsFloat32[0] = this.x0;\n this.uvsFloat32[1] = this.y0;\n this.uvsFloat32[2] = this.x1;\n this.uvsFloat32[3] = this.y1;\n this.uvsFloat32[4] = this.x2;\n this.uvsFloat32[5] = this.y2;\n this.uvsFloat32[6] = this.x3;\n this.uvsFloat32[7] = this.y3;\n};\n\nvar DEFAULT_UVS = new TextureUvs();\n\n/**\n * A texture stores the information that represents an image or part of an image.\n *\n * It cannot be added to the display list directly; instead use it as the texture for a Sprite.\n * If no frame is provided for a texture, then the whole image is used.\n *\n * You can directly create a texture from an image and then reuse it multiple times like this :\n *\n * ```js\n * let texture = PIXI.Texture.from('assets/image.png');\n * let sprite1 = new PIXI.Sprite(texture);\n * let sprite2 = new PIXI.Sprite(texture);\n * ```\n *\n * If you didnt pass the texture frame to constructor, it enables `noFrame` mode:\n * it subscribes on baseTexture events, it automatically resizes at the same time as baseTexture.\n *\n * Textures made from SVGs, loaded or not, cannot be used before the file finishes processing.\n * You can check for this by checking the sprite's _textureID property.\n * ```js\n * var texture = PIXI.Texture.from('assets/image.svg');\n * var sprite1 = new PIXI.Sprite(texture);\n * //sprite1._textureID should not be undefined if the texture has finished processing the SVG file\n * ```\n * You can use a ticker or rAF to ensure your sprites load the finished textures after processing. See issue #3068.\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar Texture = /*@__PURE__*/(function (EventEmitter) {\n function Texture(baseTexture, frame, orig, trim, rotate, anchor)\n {\n EventEmitter.call(this);\n\n /**\n * Does this Texture have any frame data assigned to it?\n *\n * This mode is enabled automatically if no frame was passed inside constructor.\n *\n * In this mode texture is subscribed to baseTexture events, and fires `update` on any change.\n *\n * Beware, after loading or resize of baseTexture event can fired two times!\n * If you want more control, subscribe on baseTexture itself.\n *\n * ```js\n * texture.on('update', () => {});\n * ```\n *\n * Any assignment of `frame` switches off `noFrame` mode.\n *\n * @member {boolean}\n */\n this.noFrame = false;\n\n if (!frame)\n {\n this.noFrame = true;\n frame = new Rectangle(0, 0, 1, 1);\n }\n\n if (baseTexture instanceof Texture)\n {\n baseTexture = baseTexture.baseTexture;\n }\n\n /**\n * The base texture that this texture uses.\n *\n * @member {PIXI.BaseTexture}\n */\n this.baseTexture = baseTexture;\n\n /**\n * This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering,\n * irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases)\n *\n * @member {PIXI.Rectangle}\n */\n this._frame = frame;\n\n /**\n * This is the trimmed area of original texture, before it was put in atlas\n * Please call `updateUvs()` after you change coordinates of `trim` manually.\n *\n * @member {PIXI.Rectangle}\n */\n this.trim = trim;\n\n /**\n * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered.\n *\n * @member {boolean}\n */\n this.valid = false;\n\n /**\n * This will let a renderer know that a texture has been updated (used mainly for WebGL uv updates)\n *\n * @member {boolean}\n */\n this.requiresUpdate = false;\n\n /**\n * The WebGL UV data cache. Can be used as quad UV\n *\n * @member {PIXI.TextureUvs}\n * @protected\n */\n this._uvs = DEFAULT_UVS;\n\n /**\n * Default TextureMatrix instance for this texture\n * By default that object is not created because its heavy\n *\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = null;\n\n /**\n * This is the area of original texture, before it was put in atlas\n *\n * @member {PIXI.Rectangle}\n */\n this.orig = orig || frame;// new Rectangle(0, 0, 1, 1);\n\n this._rotate = Number(rotate || 0);\n\n if (rotate === true)\n {\n // this is old texturepacker legacy, some games/libraries are passing \"true\" for rotated textures\n this._rotate = 2;\n }\n else if (this._rotate % 2 !== 0)\n {\n throw new Error('attempt to use diamond-shaped UVs. If you are sure, set rotation manually');\n }\n\n /**\n * Anchor point that is used as default if sprite is created with this texture.\n * Changing the `defaultAnchor` at a later point of time will not update Sprite's anchor point.\n * @member {PIXI.Point}\n * @default {0,0}\n */\n this.defaultAnchor = anchor ? new Point(anchor.x, anchor.y) : new Point(0, 0);\n\n /**\n * Update ID is observed by sprites and TextureMatrix instances.\n * Call updateUvs() to increment it.\n *\n * @member {number}\n * @protected\n */\n\n this._updateID = 0;\n\n /**\n * The ids under which this Texture has been added to the texture cache. This is\n * automatically set as long as Texture.addToCache is used, but may not be set if a\n * Texture is added directly to the TextureCache array.\n *\n * @member {string[]}\n */\n this.textureCacheIds = [];\n\n if (!baseTexture.valid)\n {\n baseTexture.once('loaded', this.onBaseTextureUpdated, this);\n }\n else if (this.noFrame)\n {\n // if there is no frame we should monitor for any base texture changes..\n if (baseTexture.valid)\n {\n this.onBaseTextureUpdated(baseTexture);\n }\n }\n else\n {\n this.frame = frame;\n }\n\n if (this.noFrame)\n {\n baseTexture.on('update', this.onBaseTextureUpdated, this);\n }\n }\n\n if ( EventEmitter ) Texture.__proto__ = EventEmitter;\n Texture.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n Texture.prototype.constructor = Texture;\n\n var prototypeAccessors = { resolution: { configurable: true },frame: { configurable: true },rotate: { configurable: true },width: { configurable: true },height: { configurable: true } };\n\n /**\n * Updates this texture on the gpu.\n *\n * Calls the TextureResource update.\n *\n * If you adjusted `frame` manually, please call `updateUvs()` instead.\n *\n */\n Texture.prototype.update = function update ()\n {\n if (this.baseTexture.resource)\n {\n this.baseTexture.resource.update();\n }\n };\n\n /**\n * Called when the base texture is updated\n *\n * @protected\n * @param {PIXI.BaseTexture} baseTexture - The base texture.\n */\n Texture.prototype.onBaseTextureUpdated = function onBaseTextureUpdated (baseTexture)\n {\n if (this.noFrame)\n {\n if (!this.baseTexture.valid)\n {\n return;\n }\n\n this._frame.width = baseTexture.width;\n this._frame.height = baseTexture.height;\n this.valid = true;\n this.updateUvs();\n }\n else\n {\n // TODO this code looks confusing.. boo to abusing getters and setters!\n // if user gave us frame that has bigger size than resized texture it can be a problem\n this.frame = this._frame;\n }\n\n this.emit('update', this);\n };\n\n /**\n * Destroys this texture\n *\n * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well\n */\n Texture.prototype.destroy = function destroy (destroyBase)\n {\n if (this.baseTexture)\n {\n if (destroyBase)\n {\n var ref = this.baseTexture;\n var resource = ref.resource;\n\n // delete the texture if it exists in the texture cache..\n // this only needs to be removed if the base texture is actually destroyed too..\n if (resource && TextureCache[resource.url])\n {\n Texture.removeFromCache(resource.url);\n }\n\n this.baseTexture.destroy();\n }\n\n this.baseTexture.off('update', this.onBaseTextureUpdated, this);\n\n this.baseTexture = null;\n }\n\n this._frame = null;\n this._uvs = null;\n this.trim = null;\n this.orig = null;\n\n this.valid = false;\n\n Texture.removeFromCache(this);\n this.textureCacheIds = null;\n };\n\n /**\n * Creates a new texture object that acts the same as this one.\n *\n * @return {PIXI.Texture} The new texture\n */\n Texture.prototype.clone = function clone ()\n {\n return new Texture(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor);\n };\n\n /**\n * Updates the internal WebGL UV cache. Use it after you change `frame` or `trim` of the texture.\n * Call it after changing the frame\n */\n Texture.prototype.updateUvs = function updateUvs ()\n {\n if (this._uvs === DEFAULT_UVS)\n {\n this._uvs = new TextureUvs();\n }\n\n this._uvs.set(this._frame, this.baseTexture, this.rotate);\n\n this._updateID++;\n };\n\n /**\n * Helper function that creates a new Texture based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|PIXI.BaseTexture} source\n * Source to create texture from\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Texture} The newly created texture\n */\n Texture.from = function from (source, options)\n {\n if ( options === void 0 ) options = {};\n\n var cacheId = null;\n\n if (typeof source === 'string')\n {\n cacheId = source;\n }\n else\n {\n if (!source._pixiId)\n {\n source._pixiId = \"pixiid_\" + (uid());\n }\n\n cacheId = source._pixiId;\n }\n\n var texture = TextureCache[cacheId];\n\n if (!texture)\n {\n if (!options.resolution)\n {\n options.resolution = getResolutionOfUrl(source);\n }\n\n texture = new Texture(new BaseTexture(source, options));\n texture.baseTexture.cacheId = cacheId;\n\n BaseTexture.addToCache(texture.baseTexture, cacheId);\n Texture.addToCache(texture, cacheId);\n }\n\n // lets assume its a base texture!\n return texture;\n };\n\n /**\n * Create a new Texture with a BufferResource from a Float32Array.\n * RGBA values are floats from 0 to 1.\n * @static\n * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data\n * is provided, a new Float32Array is created.\n * @param {number} width - Width of the resource\n * @param {number} height - Height of the resource\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Texture} The resulting new BaseTexture\n */\n Texture.fromBuffer = function fromBuffer (buffer, width, height, options)\n {\n return new Texture(BaseTexture.fromBuffer(buffer, width, height, options));\n };\n\n /**\n * Create a texture from a source and add to the cache.\n *\n * @static\n * @param {HTMLImageElement|HTMLCanvasElement} source - The input source.\n * @param {String} imageUrl - File name of texture, for cache and resolving resolution.\n * @param {String} [name] - Human readable name for the texture cache. If no name is\n * specified, only `imageUrl` will be used as the cache ID.\n * @return {PIXI.Texture} Output texture\n */\n Texture.fromLoader = function fromLoader (source, imageUrl, name)\n {\n var resource = new ImageResource(source);\n\n resource.url = imageUrl;\n\n var baseTexture = new BaseTexture(resource, {\n scaleMode: settings.SCALE_MODE,\n resolution: getResolutionOfUrl(imageUrl),\n });\n\n var texture = new Texture(baseTexture);\n\n // No name, use imageUrl instead\n if (!name)\n {\n name = imageUrl;\n }\n\n // lets also add the frame to pixi's global cache for 'fromLoader' function\n BaseTexture.addToCache(texture.baseTexture, name);\n Texture.addToCache(texture, name);\n\n // also add references by url if they are different.\n if (name !== imageUrl)\n {\n BaseTexture.addToCache(texture.baseTexture, imageUrl);\n Texture.addToCache(texture, imageUrl);\n }\n\n return texture;\n };\n\n /**\n * Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object.\n *\n * @static\n * @param {PIXI.Texture} texture - The Texture to add to the cache.\n * @param {string} id - The id that the Texture will be stored against.\n */\n Texture.addToCache = function addToCache (texture, id)\n {\n if (id)\n {\n if (texture.textureCacheIds.indexOf(id) === -1)\n {\n texture.textureCacheIds.push(id);\n }\n\n if (TextureCache[id])\n {\n // eslint-disable-next-line no-console\n console.warn((\"Texture added to the cache with an id [\" + id + \"] that already had an entry\"));\n }\n\n TextureCache[id] = texture;\n }\n };\n\n /**\n * Remove a Texture from the global TextureCache.\n *\n * @static\n * @param {string|PIXI.Texture} texture - id of a Texture to be removed, or a Texture instance itself\n * @return {PIXI.Texture|null} The Texture that was removed\n */\n Texture.removeFromCache = function removeFromCache (texture)\n {\n if (typeof texture === 'string')\n {\n var textureFromCache = TextureCache[texture];\n\n if (textureFromCache)\n {\n var index = textureFromCache.textureCacheIds.indexOf(texture);\n\n if (index > -1)\n {\n textureFromCache.textureCacheIds.splice(index, 1);\n }\n\n delete TextureCache[texture];\n\n return textureFromCache;\n }\n }\n else if (texture && texture.textureCacheIds)\n {\n for (var i = 0; i < texture.textureCacheIds.length; ++i)\n {\n // Check that texture matches the one being passed in before deleting it from the cache.\n if (TextureCache[texture.textureCacheIds[i]] === texture)\n {\n delete TextureCache[texture.textureCacheIds[i]];\n }\n }\n\n texture.textureCacheIds.length = 0;\n\n return texture;\n }\n\n return null;\n };\n\n /**\n * Returns resolution of baseTexture\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.resolution.get = function ()\n {\n return this.baseTexture.resolution;\n };\n\n /**\n * The frame specifies the region of the base texture that this texture uses.\n * Please call `updateUvs()` after you change coordinates of `frame` manually.\n *\n * @member {PIXI.Rectangle}\n */\n prototypeAccessors.frame.get = function ()\n {\n return this._frame;\n };\n\n prototypeAccessors.frame.set = function (frame) // eslint-disable-line require-jsdoc\n {\n this._frame = frame;\n\n this.noFrame = false;\n\n var x = frame.x;\n var y = frame.y;\n var width = frame.width;\n var height = frame.height;\n var xNotFit = x + width > this.baseTexture.width;\n var yNotFit = y + height > this.baseTexture.height;\n\n if (xNotFit || yNotFit)\n {\n var relationship = xNotFit && yNotFit ? 'and' : 'or';\n var errorX = \"X: \" + x + \" + \" + width + \" = \" + (x + width) + \" > \" + (this.baseTexture.width);\n var errorY = \"Y: \" + y + \" + \" + height + \" = \" + (y + height) + \" > \" + (this.baseTexture.height);\n\n throw new Error('Texture Error: frame does not fit inside the base Texture dimensions: '\n + errorX + \" \" + relationship + \" \" + errorY);\n }\n\n this.valid = width && height && this.baseTexture.valid;\n\n if (!this.trim && !this.rotate)\n {\n this.orig = frame;\n }\n\n if (this.valid)\n {\n this.updateUvs();\n }\n };\n\n /**\n * Indicates whether the texture is rotated inside the atlas\n * set to 2 to compensate for texture packer rotation\n * set to 6 to compensate for spine packer rotation\n * can be used to rotate or mirror sprites\n * See {@link PIXI.GroupD8} for explanation\n *\n * @member {number}\n */\n prototypeAccessors.rotate.get = function ()\n {\n return this._rotate;\n };\n\n prototypeAccessors.rotate.set = function (rotate) // eslint-disable-line require-jsdoc\n {\n this._rotate = rotate;\n if (this.valid)\n {\n this.updateUvs();\n }\n };\n\n /**\n * The width of the Texture in pixels.\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this.orig.width;\n };\n\n /**\n * The height of the Texture in pixels.\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this.orig.height;\n };\n\n Object.defineProperties( Texture.prototype, prototypeAccessors );\n\n return Texture;\n}(EventEmitter));\n\nfunction createWhiteTexture()\n{\n var canvas = document.createElement('canvas');\n\n canvas.width = 16;\n canvas.height = 16;\n\n var context = canvas.getContext('2d');\n\n context.fillStyle = 'white';\n context.fillRect(0, 0, 16, 16);\n\n return new Texture(new BaseTexture(new CanvasResource(canvas)));\n}\n\nfunction removeAllHandlers(tex)\n{\n tex.destroy = function _emptyDestroy() { /* empty */ };\n tex.on = function _emptyOn() { /* empty */ };\n tex.once = function _emptyOnce() { /* empty */ };\n tex.emit = function _emptyEmit() { /* empty */ };\n}\n\n/**\n * An empty texture, used often to not have to create multiple empty textures.\n * Can not be destroyed.\n *\n * @static\n * @constant\n * @member {PIXI.Texture}\n */\nTexture.EMPTY = new Texture(new BaseTexture());\nremoveAllHandlers(Texture.EMPTY);\nremoveAllHandlers(Texture.EMPTY.baseTexture);\n\n/**\n * A white texture of 16x16 size, used for graphics and other things\n * Can not be destroyed.\n *\n * @static\n * @constant\n * @member {PIXI.Texture}\n */\nTexture.WHITE = createWhiteTexture();\nremoveAllHandlers(Texture.WHITE);\nremoveAllHandlers(Texture.WHITE.baseTexture);\n\n/**\n * A RenderTexture is a special texture that allows any PixiJS display object to be rendered to it.\n *\n * __Hint__: All DisplayObjects (i.e. Sprites) that render to a RenderTexture should be preloaded\n * otherwise black rectangles will be drawn instead.\n *\n * __Hint-2__: The actual memory allocation will happen on first render.\n * You shouldn't create renderTextures each frame just to delete them after, try to reuse them.\n *\n * A RenderTexture takes a snapshot of any Display Object given to its render method. For example:\n *\n * ```js\n * let renderer = PIXI.autoDetectRenderer();\n * let renderTexture = PIXI.RenderTexture.create(800, 600);\n * let sprite = PIXI.Sprite.from(\"spinObj_01.png\");\n *\n * sprite.position.x = 800/2;\n * sprite.position.y = 600/2;\n * sprite.anchor.x = 0.5;\n * sprite.anchor.y = 0.5;\n *\n * renderer.render(sprite, renderTexture);\n * ```\n *\n * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0\n * you can clear the transform\n *\n * ```js\n *\n * sprite.setTransform()\n *\n * let renderTexture = new PIXI.RenderTexture.create(100, 100);\n *\n * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture\n * ```\n *\n * @class\n * @extends PIXI.Texture\n * @memberof PIXI\n */\nvar RenderTexture = /*@__PURE__*/(function (Texture) {\n function RenderTexture(baseRenderTexture, frame)\n {\n // support for legacy..\n var _legacyRenderer = null;\n\n if (!(baseRenderTexture instanceof BaseRenderTexture))\n {\n /* eslint-disable prefer-rest-params, no-console */\n var width = arguments[1];\n var height = arguments[2];\n var scaleMode = arguments[3];\n var resolution = arguments[4];\n\n // we have an old render texture..\n console.warn((\"Please use RenderTexture.create(\" + width + \", \" + height + \") instead of the ctor directly.\"));\n _legacyRenderer = arguments[0];\n /* eslint-enable prefer-rest-params, no-console */\n\n frame = null;\n baseRenderTexture = new BaseRenderTexture({\n width: width,\n height: height,\n scaleMode: scaleMode,\n resolution: resolution,\n });\n }\n\n /**\n * The base texture object that this texture uses\n *\n * @member {PIXI.BaseTexture}\n */\n Texture.call(this, baseRenderTexture, frame);\n\n this.legacyRenderer = _legacyRenderer;\n\n /**\n * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered.\n *\n * @member {boolean}\n */\n this.valid = true;\n\n /**\n * Stores `sourceFrame` when this texture is inside current filter stack.\n * You can read it inside filters.\n *\n * @readonly\n * @member {PIXI.Rectangle}\n */\n this.filterFrame = null;\n\n /**\n * The key for pooled texture of FilterSystem\n * @protected\n * @member {string}\n */\n this.filterPoolKey = null;\n\n this.updateUvs();\n }\n\n if ( Texture ) RenderTexture.__proto__ = Texture;\n RenderTexture.prototype = Object.create( Texture && Texture.prototype );\n RenderTexture.prototype.constructor = RenderTexture;\n\n /**\n * Resizes the RenderTexture.\n *\n * @param {number} width - The width to resize to.\n * @param {number} height - The height to resize to.\n * @param {boolean} [resizeBaseTexture=true] - Should the baseTexture.width and height values be resized as well?\n */\n RenderTexture.prototype.resize = function resize (width, height, resizeBaseTexture)\n {\n if ( resizeBaseTexture === void 0 ) resizeBaseTexture = true;\n\n width = Math.ceil(width);\n height = Math.ceil(height);\n\n // TODO - could be not required..\n this.valid = (width > 0 && height > 0);\n\n this._frame.width = this.orig.width = width;\n this._frame.height = this.orig.height = height;\n\n if (resizeBaseTexture)\n {\n this.baseTexture.resize(width, height);\n }\n\n this.updateUvs();\n };\n\n /**\n * Changes the resolution of baseTexture, but does not change framebuffer size.\n *\n * @param {number} resolution - The new resolution to apply to RenderTexture\n */\n RenderTexture.prototype.setResolution = function setResolution (resolution)\n {\n var ref = this;\n var baseTexture = ref.baseTexture;\n\n if (baseTexture.resolution === resolution)\n {\n return;\n }\n\n baseTexture.setResolution(resolution);\n this.resize(baseTexture.width, baseTexture.height, false);\n };\n\n /**\n * A short hand way of creating a render texture.\n *\n * @param {object} [options] - Options\n * @param {number} [options.width=100] - The width of the render texture\n * @param {number} [options.height=100] - The height of the render texture\n * @param {number} [options.scaleMode=PIXI.settings.SCALE_MODE] - See {@link PIXI.SCALE_MODES} for possible values\n * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the texture being generated\n * @return {PIXI.RenderTexture} The new render texture\n */\n RenderTexture.create = function create (options)\n {\n // fallback, old-style: create(width, height, scaleMode, resolution)\n if (typeof options === 'number')\n {\n /* eslint-disable prefer-rest-params */\n options = {\n width: options,\n height: arguments[1],\n scaleMode: arguments[2],\n resolution: arguments[3],\n };\n /* eslint-enable prefer-rest-params */\n }\n\n return new RenderTexture(new BaseRenderTexture(options));\n };\n\n return RenderTexture;\n}(Texture));\n\n/**\n * Experimental!\n *\n * Texture pool, used by FilterSystem and plugins\n * Stores collection of temporary pow2 or screen-sized renderTextures\n *\n * If you use custom RenderTexturePool for your filters, you can use methods\n * `getFilterTexture` and `returnFilterTexture` same as in\n *\n * @class\n * @memberof PIXI\n */\nvar RenderTexturePool = function RenderTexturePool(textureOptions)\n{\n this.texturePool = {};\n this.textureOptions = textureOptions || {};\n /**\n * Allow renderTextures of the same size as screen, not just pow2\n *\n * Automatically sets to true after `setScreenSize`\n *\n * @member {boolean}\n * @default false\n */\n this.enableFullScreen = false;\n\n this._pixelsWidth = 0;\n this._pixelsHeight = 0;\n};\n\n/**\n * creates of texture with params that were specified in pool constructor\n *\n * @param {number} realWidth width of texture in pixels\n * @param {number} realHeight height of texture in pixels\n * @returns {RenderTexture}\n */\nRenderTexturePool.prototype.createTexture = function createTexture (realWidth, realHeight)\n{\n var baseRenderTexture = new BaseRenderTexture(Object.assign({\n width: realWidth,\n height: realHeight,\n resolution: 1,\n }, this.textureOptions));\n\n return new RenderTexture(baseRenderTexture);\n};\n\n/**\n * Gets a Power-of-Two render texture or fullScreen texture\n *\n * @protected\n * @param {number} minWidth - The minimum width of the render texture in real pixels.\n * @param {number} minHeight - The minimum height of the render texture in real pixels.\n * @param {number} [resolution=1] - The resolution of the render texture.\n * @return {PIXI.RenderTexture} The new render texture.\n */\nRenderTexturePool.prototype.getOptimalTexture = function getOptimalTexture (minWidth, minHeight, resolution)\n{\n if ( resolution === void 0 ) resolution = 1;\n\n var key = RenderTexturePool.SCREEN_KEY;\n\n minWidth *= resolution;\n minHeight *= resolution;\n\n if (!this.enableFullScreen || minWidth !== this._pixelsWidth || minHeight !== this._pixelsHeight)\n {\n minWidth = nextPow2(minWidth);\n minHeight = nextPow2(minHeight);\n key = ((minWidth & 0xFFFF) << 16) | (minHeight & 0xFFFF);\n }\n\n if (!this.texturePool[key])\n {\n this.texturePool[key] = [];\n }\n\n var renderTexture = this.texturePool[key].pop();\n\n if (!renderTexture)\n {\n renderTexture = this.createTexture(minWidth, minHeight);\n }\n\n renderTexture.filterPoolKey = key;\n renderTexture.setResolution(resolution);\n\n return renderTexture;\n};\n\n/**\n * Gets extra texture of the same size as input renderTexture\n *\n * `getFilterTexture(input, 0.5)` or `getFilterTexture(0.5, input)`\n *\n * @param {PIXI.RenderTexture} input renderTexture from which size and resolution will be copied\n * @param {number} [resolution] override resolution of the renderTexture\n * It overrides, it does not multiply\n * @returns {PIXI.RenderTexture}\n */\nRenderTexturePool.prototype.getFilterTexture = function getFilterTexture (input, resolution)\n{\n var filterTexture = this.getOptimalTexture(input.width, input.height, resolution || input.resolution);\n\n filterTexture.filterFrame = input.filterFrame;\n\n return filterTexture;\n};\n\n/**\n * Place a render texture back into the pool.\n * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free\n */\nRenderTexturePool.prototype.returnTexture = function returnTexture (renderTexture)\n{\n var key = renderTexture.filterPoolKey;\n\n renderTexture.filterFrame = null;\n this.texturePool[key].push(renderTexture);\n};\n\n/**\n * Alias for returnTexture, to be compliant with FilterSystem interface\n * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free\n */\nRenderTexturePool.prototype.returnFilterTexture = function returnFilterTexture (renderTexture)\n{\n this.returnTexture(renderTexture);\n};\n\n/**\n * Clears the pool\n *\n * @param {boolean} [destroyTextures=true] destroy all stored textures\n */\nRenderTexturePool.prototype.clear = function clear (destroyTextures)\n{\n destroyTextures = destroyTextures !== false;\n if (destroyTextures)\n {\n for (var i in this.texturePool)\n {\n var textures = this.texturePool[i];\n\n if (textures)\n {\n for (var j = 0; j < textures.length; j++)\n {\n textures[j].destroy(true);\n }\n }\n }\n }\n\n this.texturePool = {};\n};\n\n/**\n * If screen size was changed, drops all screen-sized textures,\n * sets new screen size, sets `enableFullScreen` to true\n *\n * Size is measured in pixels, `renderer.view` can be passed here, not `renderer.screen`\n *\n * @param {PIXI.ISize} size - Initial size of screen\n */\nRenderTexturePool.prototype.setScreenSize = function setScreenSize (size)\n{\n if (size.width === this._pixelsWidth\n && size.height === this._pixelsHeight)\n {\n return;\n }\n\n var screenKey = RenderTexturePool.SCREEN_KEY;\n var textures = this.texturePool[screenKey];\n\n this.enableFullScreen = size.width > 0 && size.height > 0;\n\n if (textures)\n {\n for (var j = 0; j < textures.length; j++)\n {\n textures[j].destroy(true);\n }\n }\n this.texturePool[screenKey] = [];\n\n this._pixelsWidth = size.width;\n this._pixelsHeight = size.height;\n};\n\n/**\n * Key that is used to store fullscreen renderTextures in a pool\n *\n * @static\n * @const {string}\n */\nRenderTexturePool.SCREEN_KEY = 'screen';\n\n/* eslint-disable max-len */\n\n/**\n * Holds the information for a single attribute structure required to render geometry.\n *\n * This does not contain the actual data, but instead has a buffer id that maps to a {@link PIXI.Buffer}\n * This can include anything from positions, uvs, normals, colors etc.\n *\n * @class\n * @memberof PIXI\n */\nvar Attribute = function Attribute(buffer, size, normalized, type, stride, start, instance)\n{\n if ( normalized === void 0 ) normalized = false;\n if ( type === void 0 ) type = 5126;\n\n this.buffer = buffer;\n this.size = size;\n this.normalized = normalized;\n this.type = type;\n this.stride = stride;\n this.start = start;\n this.instance = instance;\n};\n\n/**\n * Destroys the Attribute.\n */\nAttribute.prototype.destroy = function destroy ()\n{\n this.buffer = null;\n};\n\n/**\n * Helper function that creates an Attribute based on the information provided\n *\n * @static\n * @param {string} buffer the id of the buffer that this attribute will look for\n * @param {Number} [size=2] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2\n * @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data)\n * @param {Number} [start=0] How far into the array to start reading values (used for interleaving data)\n * @param {Boolean} [normalized=false] should the data be normalized.\n *\n * @returns {PIXI.Attribute} A new {@link PIXI.Attribute} based on the information provided\n */\nAttribute.from = function from (buffer, size, normalized, type, stride)\n{\n return new Attribute(buffer, size, normalized, type, stride);\n};\n\nvar UID = 0;\n/* eslint-disable max-len */\n\n/**\n * A wrapper for data so that it can be used and uploaded by WebGL\n *\n * @class\n * @memberof PIXI\n */\nvar Buffer = function Buffer(data, _static, index)\n{\n if ( _static === void 0 ) _static = true;\n if ( index === void 0 ) index = false;\n\n /**\n * The data in the buffer, as a typed array\n *\n * @member {ArrayBuffer| SharedArrayBuffer|ArrayBufferView}\n */\n this.data = data || new Float32Array(1);\n\n /**\n * A map of renderer IDs to webgl buffer\n *\n * @private\n * @member {object}\n */\n this._glBuffers = {};\n\n this._updateID = 0;\n\n this.index = index;\n\n this.static = _static;\n\n this.id = UID++;\n\n this.disposeRunner = new Runner('disposeBuffer', 2);\n};\n\n// TODO could explore flagging only a partial upload?\n/**\n * flags this buffer as requiring an upload to the GPU\n * @param {ArrayBuffer|SharedArrayBuffer|ArrayBufferView} [data] the data to update in the buffer.\n */\nBuffer.prototype.update = function update (data)\n{\n this.data = data || this.data;\n this._updateID++;\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nBuffer.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\n/**\n * Destroys the buffer\n */\nBuffer.prototype.destroy = function destroy ()\n{\n this.dispose();\n\n this.data = null;\n};\n\n/**\n * Helper function that creates a buffer based on an array or TypedArray\n *\n * @static\n * @param {ArrayBufferView | number[]} data the TypedArray that the buffer will store. If this is a regular Array it will be converted to a Float32Array.\n * @return {PIXI.Buffer} A new Buffer based on the data provided.\n */\nBuffer.from = function from (data)\n{\n if (data instanceof Array)\n {\n data = new Float32Array(data);\n }\n\n return new Buffer(data);\n};\n\nfunction getBufferType(array)\n{\n if (array.BYTES_PER_ELEMENT === 4)\n {\n if (array instanceof Float32Array)\n {\n return 'Float32Array';\n }\n else if (array instanceof Uint32Array)\n {\n return 'Uint32Array';\n }\n\n return 'Int32Array';\n }\n else if (array.BYTES_PER_ELEMENT === 2)\n {\n if (array instanceof Uint16Array)\n {\n return 'Uint16Array';\n }\n }\n else if (array.BYTES_PER_ELEMENT === 1)\n {\n if (array instanceof Uint8Array)\n {\n return 'Uint8Array';\n }\n }\n\n // TODO map out the rest of the array elements!\n return null;\n}\n\n/* eslint-disable object-shorthand */\nvar map = {\n Float32Array: Float32Array,\n Uint32Array: Uint32Array,\n Int32Array: Int32Array,\n Uint8Array: Uint8Array,\n};\n\nfunction interleaveTypedArrays(arrays, sizes)\n{\n var outSize = 0;\n var stride = 0;\n var views = {};\n\n for (var i = 0; i < arrays.length; i++)\n {\n stride += sizes[i];\n outSize += arrays[i].length;\n }\n\n var buffer = new ArrayBuffer(outSize * 4);\n\n var out = null;\n var littleOffset = 0;\n\n for (var i$1 = 0; i$1 < arrays.length; i$1++)\n {\n var size = sizes[i$1];\n var array = arrays[i$1];\n\n var type = getBufferType(array);\n\n if (!views[type])\n {\n views[type] = new map[type](buffer);\n }\n\n out = views[type];\n\n for (var j = 0; j < array.length; j++)\n {\n var indexStart = ((j / size | 0) * stride) + littleOffset;\n var index = j % size;\n\n out[indexStart + index] = array[j];\n }\n\n littleOffset += size;\n }\n\n return new Float32Array(buffer);\n}\n\nvar byteSizeMap = { 5126: 4, 5123: 2, 5121: 1 };\nvar UID$1 = 0;\n\n/* eslint-disable object-shorthand */\nvar map$1 = {\n Float32Array: Float32Array,\n Uint32Array: Uint32Array,\n Int32Array: Int32Array,\n Uint8Array: Uint8Array,\n Uint16Array: Uint16Array,\n};\n\n/* eslint-disable max-len */\n\n/**\n * The Geometry represents a model. It consists of two components:\n * - GeometryStyle - The structure of the model such as the attributes layout\n * - GeometryData - the data of the model - this consists of buffers.\n * This can include anything from positions, uvs, normals, colors etc.\n *\n * Geometry can be defined without passing in a style or data if required (thats how I prefer!)\n *\n * ```js\n * let geometry = new PIXI.Geometry();\n *\n * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2);\n * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1],2)\n * geometry.addIndex([0,1,2,1,3,2])\n *\n * ```\n * @class\n * @memberof PIXI\n */\nvar Geometry = function Geometry(buffers, attributes)\n{\n if ( buffers === void 0 ) buffers = [];\n if ( attributes === void 0 ) attributes = {};\n\n this.buffers = buffers;\n\n this.indexBuffer = null;\n\n this.attributes = attributes;\n\n /**\n * A map of renderer IDs to webgl VAOs\n *\n * @protected\n * @type {object}\n */\n this.glVertexArrayObjects = {};\n\n this.id = UID$1++;\n\n this.instanced = false;\n\n /**\n * Number of instances in this geometry, pass it to `GeometrySystem.draw()`\n * @member {number}\n * @default 1\n */\n this.instanceCount = 1;\n\n this.disposeRunner = new Runner('disposeGeometry', 2);\n\n /**\n * Count of existing (not destroyed) meshes that reference this geometry\n * @member {number}\n */\n this.refCount = 0;\n};\n\n/**\n*\n* Adds an attribute to the geometry\n*\n* @param {String} id - the name of the attribute (matching up to a shader)\n* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it.\n* @param {Number} [size=0] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2\n* @param {Boolean} [normalized=false] should the data be normalized.\n* @param {Number} [type=PIXI.TYPES.FLOAT] what type of number is the attribute. Check {PIXI.TYPES} to see the ones available\n* @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data)\n* @param {Number} [start=0] How far into the array to start reading values (used for interleaving data)\n*\n* @return {PIXI.Geometry} returns self, useful for chaining.\n*/\nGeometry.prototype.addAttribute = function addAttribute (id, buffer, size, normalized, type, stride, start, instance)\n{\n if ( normalized === void 0 ) normalized = false;\n if ( instance === void 0 ) instance = false;\n\n if (!buffer)\n {\n throw new Error('You must pass a buffer when creating an attribute');\n }\n\n // check if this is a buffer!\n if (!buffer.data)\n {\n // its an array!\n if (buffer instanceof Array)\n {\n buffer = new Float32Array(buffer);\n }\n\n buffer = new Buffer(buffer);\n }\n\n var ids = id.split('|');\n\n if (ids.length > 1)\n {\n for (var i = 0; i < ids.length; i++)\n {\n this.addAttribute(ids[i], buffer, size, normalized, type);\n }\n\n return this;\n }\n\n var bufferIndex = this.buffers.indexOf(buffer);\n\n if (bufferIndex === -1)\n {\n this.buffers.push(buffer);\n bufferIndex = this.buffers.length - 1;\n }\n\n this.attributes[id] = new Attribute(bufferIndex, size, normalized, type, stride, start, instance);\n\n // assuming that if there is instanced data then this will be drawn with instancing!\n this.instanced = this.instanced || instance;\n\n return this;\n};\n\n/**\n * returns the requested attribute\n *\n * @param {String} id the name of the attribute required\n * @return {PIXI.Attribute} the attribute requested.\n */\nGeometry.prototype.getAttribute = function getAttribute (id)\n{\n return this.attributes[id];\n};\n\n/**\n * returns the requested buffer\n *\n * @param {String} id the name of the buffer required\n * @return {PIXI.Buffer} the buffer requested.\n */\nGeometry.prototype.getBuffer = function getBuffer (id)\n{\n return this.buffers[this.getAttribute(id).buffer];\n};\n\n/**\n*\n* Adds an index buffer to the geometry\n* The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer.\n*\n* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it.\n* @return {PIXI.Geometry} returns self, useful for chaining.\n*/\nGeometry.prototype.addIndex = function addIndex (buffer)\n{\n if (!buffer.data)\n {\n // its an array!\n if (buffer instanceof Array)\n {\n buffer = new Uint16Array(buffer);\n }\n\n buffer = new Buffer(buffer);\n }\n\n buffer.index = true;\n this.indexBuffer = buffer;\n\n if (this.buffers.indexOf(buffer) === -1)\n {\n this.buffers.push(buffer);\n }\n\n return this;\n};\n\n/**\n * returns the index buffer\n *\n * @return {PIXI.Buffer} the index buffer.\n */\nGeometry.prototype.getIndex = function getIndex ()\n{\n return this.indexBuffer;\n};\n\n/**\n * this function modifies the structure so that all current attributes become interleaved into a single buffer\n * This can be useful if your model remains static as it offers a little performance boost\n *\n * @return {PIXI.Geometry} returns self, useful for chaining.\n */\nGeometry.prototype.interleave = function interleave ()\n{\n // a simple check to see if buffers are already interleaved..\n if (this.buffers.length === 1 || (this.buffers.length === 2 && this.indexBuffer)) { return this; }\n\n // assume already that no buffers are interleaved\n var arrays = [];\n var sizes = [];\n var interleavedBuffer = new Buffer();\n var i;\n\n for (i in this.attributes)\n {\n var attribute = this.attributes[i];\n\n var buffer = this.buffers[attribute.buffer];\n\n arrays.push(buffer.data);\n\n sizes.push((attribute.size * byteSizeMap[attribute.type]) / 4);\n\n attribute.buffer = 0;\n }\n\n interleavedBuffer.data = interleaveTypedArrays(arrays, sizes);\n\n for (i = 0; i < this.buffers.length; i++)\n {\n if (this.buffers[i] !== this.indexBuffer)\n {\n this.buffers[i].destroy();\n }\n }\n\n this.buffers = [interleavedBuffer];\n\n if (this.indexBuffer)\n {\n this.buffers.push(this.indexBuffer);\n }\n\n return this;\n};\n\nGeometry.prototype.getSize = function getSize ()\n{\n for (var i in this.attributes)\n {\n var attribute = this.attributes[i];\n var buffer = this.buffers[attribute.buffer];\n\n return buffer.data.length / ((attribute.stride / 4) || attribute.size);\n }\n\n return 0;\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nGeometry.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\n/**\n * Destroys the geometry.\n */\nGeometry.prototype.destroy = function destroy ()\n{\n this.dispose();\n\n this.buffers = null;\n this.indexBuffer.destroy();\n\n this.attributes = null;\n};\n\n/**\n * returns a clone of the geometry\n *\n * @returns {PIXI.Geometry} a new clone of this geometry\n */\nGeometry.prototype.clone = function clone ()\n{\n var geometry = new Geometry();\n\n for (var i = 0; i < this.buffers.length; i++)\n {\n geometry.buffers[i] = new Buffer(this.buffers[i].data.slice());\n }\n\n for (var i$1 in this.attributes)\n {\n var attrib = this.attributes[i$1];\n\n geometry.attributes[i$1] = new Attribute(\n attrib.buffer,\n attrib.size,\n attrib.normalized,\n attrib.type,\n attrib.stride,\n attrib.start,\n attrib.instance\n );\n }\n\n if (this.indexBuffer)\n {\n geometry.indexBuffer = geometry.buffers[this.buffers.indexOf(this.indexBuffer)];\n geometry.indexBuffer.index = true;\n }\n\n return geometry;\n};\n\n/**\n * merges an array of geometries into a new single one\n * geometry attribute styles must match for this operation to work\n *\n * @param {PIXI.Geometry[]} geometries array of geometries to merge\n * @returns {PIXI.Geometry} shiny new geometry!\n */\nGeometry.merge = function merge (geometries)\n{\n // todo add a geometry check!\n // also a size check.. cant be too big!]\n\n var geometryOut = new Geometry();\n\n var arrays = [];\n var sizes = [];\n var offsets = [];\n\n var geometry;\n\n // pass one.. get sizes..\n for (var i = 0; i < geometries.length; i++)\n {\n geometry = geometries[i];\n\n for (var j = 0; j < geometry.buffers.length; j++)\n {\n sizes[j] = sizes[j] || 0;\n sizes[j] += geometry.buffers[j].data.length;\n offsets[j] = 0;\n }\n }\n\n // build the correct size arrays..\n for (var i$1 = 0; i$1 < geometry.buffers.length; i$1++)\n {\n // TODO types!\n arrays[i$1] = new map$1[getBufferType(geometry.buffers[i$1].data)](sizes[i$1]);\n geometryOut.buffers[i$1] = new Buffer(arrays[i$1]);\n }\n\n // pass to set data..\n for (var i$2 = 0; i$2 < geometries.length; i$2++)\n {\n geometry = geometries[i$2];\n\n for (var j$1 = 0; j$1 < geometry.buffers.length; j$1++)\n {\n arrays[j$1].set(geometry.buffers[j$1].data, offsets[j$1]);\n offsets[j$1] += geometry.buffers[j$1].data.length;\n }\n }\n\n geometryOut.attributes = geometry.attributes;\n\n if (geometry.indexBuffer)\n {\n geometryOut.indexBuffer = geometryOut.buffers[geometry.buffers.indexOf(geometry.indexBuffer)];\n geometryOut.indexBuffer.index = true;\n\n var offset = 0;\n var stride = 0;\n var offset2 = 0;\n var bufferIndexToCount = 0;\n\n // get a buffer\n for (var i$3 = 0; i$3 < geometry.buffers.length; i$3++)\n {\n if (geometry.buffers[i$3] !== geometry.indexBuffer)\n {\n bufferIndexToCount = i$3;\n break;\n }\n }\n\n // figure out the stride of one buffer..\n for (var i$4 in geometry.attributes)\n {\n var attribute = geometry.attributes[i$4];\n\n if ((attribute.buffer | 0) === bufferIndexToCount)\n {\n stride += ((attribute.size * byteSizeMap[attribute.type]) / 4);\n }\n }\n\n // time to off set all indexes..\n for (var i$5 = 0; i$5 < geometries.length; i$5++)\n {\n var indexBufferData = geometries[i$5].indexBuffer.data;\n\n for (var j$2 = 0; j$2 < indexBufferData.length; j$2++)\n {\n geometryOut.indexBuffer.data[j$2 + offset2] += offset;\n }\n\n offset += geometry.buffers[bufferIndexToCount].data.length / (stride);\n offset2 += indexBufferData.length;\n }\n }\n\n return geometryOut;\n};\n\n/**\n * Helper class to create a quad\n *\n * @class\n * @memberof PIXI\n */\nvar Quad = /*@__PURE__*/(function (Geometry) {\n function Quad()\n {\n Geometry.call(this);\n\n this.addAttribute('aVertexPosition', [\n 0, 0,\n 1, 0,\n 1, 1,\n 0, 1 ])\n .addIndex([0, 1, 3, 2]);\n }\n\n if ( Geometry ) Quad.__proto__ = Geometry;\n Quad.prototype = Object.create( Geometry && Geometry.prototype );\n Quad.prototype.constructor = Quad;\n\n return Quad;\n}(Geometry));\n\n/**\n * Helper class to create a quad with uvs like in v4\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.Geometry\n */\nvar QuadUv = /*@__PURE__*/(function (Geometry) {\n function QuadUv()\n {\n Geometry.call(this);\n\n /**\n * An array of vertices\n *\n * @member {Float32Array}\n */\n this.vertices = new Float32Array([\n -1, -1,\n 1, -1,\n 1, 1,\n -1, 1 ]);\n\n /**\n * The Uvs of the quad\n *\n * @member {Float32Array}\n */\n this.uvs = new Float32Array([\n 0, 0,\n 1, 0,\n 1, 1,\n 0, 1 ]);\n\n this.vertexBuffer = new Buffer(this.vertices);\n this.uvBuffer = new Buffer(this.uvs);\n\n this.addAttribute('aVertexPosition', this.vertexBuffer)\n .addAttribute('aTextureCoord', this.uvBuffer)\n .addIndex([0, 1, 2, 0, 2, 3]);\n }\n\n if ( Geometry ) QuadUv.__proto__ = Geometry;\n QuadUv.prototype = Object.create( Geometry && Geometry.prototype );\n QuadUv.prototype.constructor = QuadUv;\n\n /**\n * Maps two Rectangle to the quad.\n *\n * @param {PIXI.Rectangle} targetTextureFrame - the first rectangle\n * @param {PIXI.Rectangle} destinationFrame - the second rectangle\n * @return {PIXI.Quad} Returns itself.\n */\n QuadUv.prototype.map = function map (targetTextureFrame, destinationFrame)\n {\n var x = 0; // destinationFrame.x / targetTextureFrame.width;\n var y = 0; // destinationFrame.y / targetTextureFrame.height;\n\n this.uvs[0] = x;\n this.uvs[1] = y;\n\n this.uvs[2] = x + (destinationFrame.width / targetTextureFrame.width);\n this.uvs[3] = y;\n\n this.uvs[4] = x + (destinationFrame.width / targetTextureFrame.width);\n this.uvs[5] = y + (destinationFrame.height / targetTextureFrame.height);\n\n this.uvs[6] = x;\n this.uvs[7] = y + (destinationFrame.height / targetTextureFrame.height);\n\n x = destinationFrame.x;\n y = destinationFrame.y;\n\n this.vertices[0] = x;\n this.vertices[1] = y;\n\n this.vertices[2] = x + destinationFrame.width;\n this.vertices[3] = y;\n\n this.vertices[4] = x + destinationFrame.width;\n this.vertices[5] = y + destinationFrame.height;\n\n this.vertices[6] = x;\n this.vertices[7] = y + destinationFrame.height;\n\n this.invalidate();\n\n return this;\n };\n\n /**\n * legacy upload method, just marks buffers dirty\n * @returns {PIXI.QuadUv} Returns itself.\n */\n QuadUv.prototype.invalidate = function invalidate ()\n {\n this.vertexBuffer._updateID++;\n this.uvBuffer._updateID++;\n\n return this;\n };\n\n return QuadUv;\n}(Geometry));\n\nvar UID$2 = 0;\n\n/**\n * Uniform group holds uniform map and some ID's for work\n *\n * @class\n * @memberof PIXI\n */\nvar UniformGroup = function UniformGroup(uniforms, _static)\n{\n /**\n * uniform values\n * @member {object}\n * @readonly\n */\n this.uniforms = uniforms;\n\n /**\n * Its a group and not a single uniforms\n * @member {boolean}\n * @readonly\n * @default true\n */\n this.group = true;\n\n // lets generate this when the shader ?\n this.syncUniforms = {};\n\n /**\n * dirty version\n * @protected\n * @member {number}\n */\n this.dirtyId = 0;\n\n /**\n * unique id\n * @protected\n * @member {number}\n */\n this.id = UID$2++;\n\n /**\n * Uniforms wont be changed after creation\n * @member {boolean}\n */\n this.static = !!_static;\n};\n\nUniformGroup.prototype.update = function update ()\n{\n this.dirtyId++;\n};\n\nUniformGroup.prototype.add = function add (name, uniforms, _static)\n{\n this.uniforms[name] = new UniformGroup(uniforms, _static);\n};\n\nUniformGroup.from = function from (uniforms, _static)\n{\n return new UniformGroup(uniforms, _static);\n};\n\n/**\n * System plugin to the renderer to manage filter states.\n *\n * @class\n * @private\n */\nvar FilterState = function FilterState()\n{\n this.renderTexture = null;\n\n /**\n * Target of the filters\n * We store for case when custom filter wants to know the element it was applied on\n * @member {PIXI.DisplayObject}\n * @private\n */\n this.target = null;\n\n /**\n * Compatibility with PixiJS v4 filters\n * @member {boolean}\n * @default false\n * @private\n */\n this.legacy = false;\n\n /**\n * Resolution of filters\n * @member {number}\n * @default 1\n * @private\n */\n this.resolution = 1;\n\n // next three fields are created only for root\n // re-assigned for everything else\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @private\n */\n this.sourceFrame = new Rectangle();\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @private\n */\n this.destinationFrame = new Rectangle();\n\n /**\n * Collection of filters\n * @member {PIXI.Filter[]}\n * @private\n */\n this.filters = [];\n};\n\n/**\n * clears the state\n * @private\n */\nFilterState.prototype.clear = function clear ()\n{\n this.target = null;\n this.filters = null;\n this.renderTexture = null;\n};\n\n/**\n * System plugin to the renderer to manage the filters.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar FilterSystem = /*@__PURE__*/(function (System) {\n function FilterSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * List of filters for the FilterSystem\n * @member {Object[]}\n * @readonly\n */\n this.defaultFilterStack = [{}];\n\n /**\n * stores a bunch of PO2 textures used for filtering\n * @member {Object}\n */\n this.texturePool = new RenderTexturePool();\n\n this.texturePool.setScreenSize(renderer.view);\n\n /**\n * a pool for storing filter states, save us creating new ones each tick\n * @member {Object[]}\n */\n this.statePool = [];\n\n /**\n * A very simple geometry used when drawing a filter effect to the screen\n * @member {PIXI.Quad}\n */\n this.quad = new Quad();\n\n /**\n * Quad UVs\n * @member {PIXI.QuadUv}\n */\n this.quadUv = new QuadUv();\n\n /**\n * Temporary rect for maths\n * @type {PIXI.Rectangle}\n */\n this.tempRect = new Rectangle();\n\n /**\n * Active state\n * @member {object}\n */\n this.activeState = {};\n\n /**\n * This uniform group is attached to filter uniforms when used\n * @member {PIXI.UniformGroup}\n * @property {PIXI.Rectangle} outputFrame\n * @property {Float32Array} inputSize\n * @property {Float32Array} inputPixel\n * @property {Float32Array} inputClamp\n * @property {Number} resolution\n * @property {Float32Array} filterArea\n * @property {Fload32Array} filterClamp\n */\n this.globalUniforms = new UniformGroup({\n outputFrame: this.tempRect,\n inputSize: new Float32Array(4),\n inputPixel: new Float32Array(4),\n inputClamp: new Float32Array(4),\n resolution: 1,\n\n // legacy variables\n filterArea: new Float32Array(4),\n filterClamp: new Float32Array(4),\n }, true);\n\n this._pixelsWidth = renderer.view.width;\n this._pixelsHeight = renderer.view.height;\n }\n\n if ( System ) FilterSystem.__proto__ = System;\n FilterSystem.prototype = Object.create( System && System.prototype );\n FilterSystem.prototype.constructor = FilterSystem;\n\n /**\n * Adds a new filter to the System.\n *\n * @param {PIXI.DisplayObject} target - The target of the filter to render.\n * @param {PIXI.Filter[]} filters - The filters to apply.\n */\n FilterSystem.prototype.push = function push (target, filters)\n {\n var renderer = this.renderer;\n var filterStack = this.defaultFilterStack;\n var state = this.statePool.pop() || new FilterState();\n\n var resolution = filters[0].resolution;\n var padding = filters[0].padding;\n var autoFit = filters[0].autoFit;\n var legacy = filters[0].legacy;\n\n for (var i = 1; i < filters.length; i++)\n {\n var filter = filters[i];\n\n // lets use the lowest resolution..\n resolution = Math.min(resolution, filter.resolution);\n // and the largest amount of padding!\n padding = Math.max(padding, filter.padding);\n // only auto fit if all filters are autofit\n autoFit = autoFit || filter.autoFit;\n\n legacy = legacy || filter.legacy;\n }\n\n if (filterStack.length === 1)\n {\n this.defaultFilterStack[0].renderTexture = renderer.renderTexture.current;\n }\n\n filterStack.push(state);\n\n state.resolution = resolution;\n\n state.legacy = legacy;\n\n state.target = target;\n\n state.sourceFrame.copyFrom(target.filterArea || target.getBounds(true));\n\n state.sourceFrame.pad(padding);\n if (autoFit)\n {\n state.sourceFrame.fit(this.renderer.renderTexture.sourceFrame);\n }\n\n // round to whole number based on resolution\n state.sourceFrame.ceil(resolution);\n\n state.renderTexture = this.getOptimalFilterTexture(state.sourceFrame.width, state.sourceFrame.height, resolution);\n state.filters = filters;\n\n state.destinationFrame.width = state.renderTexture.width;\n state.destinationFrame.height = state.renderTexture.height;\n\n state.renderTexture.filterFrame = state.sourceFrame;\n\n renderer.renderTexture.bind(state.renderTexture, state.sourceFrame);// /, state.destinationFrame);\n renderer.renderTexture.clear();\n };\n\n /**\n * Pops off the filter and applies it.\n *\n */\n FilterSystem.prototype.pop = function pop ()\n {\n var filterStack = this.defaultFilterStack;\n var state = filterStack.pop();\n var filters = state.filters;\n\n this.activeState = state;\n\n var globalUniforms = this.globalUniforms.uniforms;\n\n globalUniforms.outputFrame = state.sourceFrame;\n globalUniforms.resolution = state.resolution;\n\n var inputSize = globalUniforms.inputSize;\n var inputPixel = globalUniforms.inputPixel;\n var inputClamp = globalUniforms.inputClamp;\n\n inputSize[0] = state.destinationFrame.width;\n inputSize[1] = state.destinationFrame.height;\n inputSize[2] = 1.0 / inputSize[0];\n inputSize[3] = 1.0 / inputSize[1];\n\n inputPixel[0] = inputSize[0] * state.resolution;\n inputPixel[1] = inputSize[1] * state.resolution;\n inputPixel[2] = 1.0 / inputPixel[0];\n inputPixel[3] = 1.0 / inputPixel[1];\n\n inputClamp[0] = 0.5 * inputPixel[2];\n inputClamp[1] = 0.5 * inputPixel[3];\n inputClamp[2] = (state.sourceFrame.width * inputSize[2]) - (0.5 * inputPixel[2]);\n inputClamp[3] = (state.sourceFrame.height * inputSize[3]) - (0.5 * inputPixel[3]);\n\n // only update the rect if its legacy..\n if (state.legacy)\n {\n var filterArea = globalUniforms.filterArea;\n\n filterArea[0] = state.destinationFrame.width;\n filterArea[1] = state.destinationFrame.height;\n filterArea[2] = state.sourceFrame.x;\n filterArea[3] = state.sourceFrame.y;\n\n globalUniforms.filterClamp = globalUniforms.inputClamp;\n }\n\n this.globalUniforms.update();\n\n var lastState = filterStack[filterStack.length - 1];\n\n if (filters.length === 1)\n {\n filters[0].apply(this, state.renderTexture, lastState.renderTexture, false, state);\n\n this.returnFilterTexture(state.renderTexture);\n }\n else\n {\n var flip = state.renderTexture;\n var flop = this.getOptimalFilterTexture(\n flip.width,\n flip.height,\n state.resolution\n );\n\n flop.filterFrame = flip.filterFrame;\n\n var i = 0;\n\n for (i = 0; i < filters.length - 1; ++i)\n {\n filters[i].apply(this, flip, flop, true, state);\n\n var t = flip;\n\n flip = flop;\n flop = t;\n }\n\n filters[i].apply(this, flip, lastState.renderTexture, false, state);\n\n this.returnFilterTexture(flip);\n this.returnFilterTexture(flop);\n }\n\n state.clear();\n this.statePool.push(state);\n };\n\n /**\n * Draws a filter.\n *\n * @param {PIXI.Filter} filter - The filter to draw.\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it\n */\n FilterSystem.prototype.applyFilter = function applyFilter (filter, input, output, clear)\n {\n var renderer = this.renderer;\n\n renderer.renderTexture.bind(output, output ? output.filterFrame : null);\n\n if (clear)\n {\n // gl.disable(gl.SCISSOR_TEST);\n renderer.renderTexture.clear();\n // gl.enable(gl.SCISSOR_TEST);\n }\n\n // set the uniforms..\n filter.uniforms.uSampler = input;\n filter.uniforms.filterGlobals = this.globalUniforms;\n\n // TODO make it so that the order of this does not matter..\n // because it does at the moment cos of global uniforms.\n // they need to get resynced\n\n renderer.state.set(filter.state);\n renderer.shader.bind(filter);\n\n if (filter.legacy)\n {\n this.quadUv.map(input._frame, input.filterFrame);\n\n renderer.geometry.bind(this.quadUv);\n renderer.geometry.draw(DRAW_MODES.TRIANGLES);\n }\n else\n {\n renderer.geometry.bind(this.quad);\n renderer.geometry.draw(DRAW_MODES.TRIANGLE_STRIP);\n }\n };\n\n /**\n * Multiply _input normalized coordinates_ to this matrix to get _sprite texture normalized coordinates_.\n *\n * Use `outputMatrix * vTextureCoord` in the shader.\n *\n * @param {PIXI.Matrix} outputMatrix - The matrix to output to.\n * @param {PIXI.Sprite} sprite - The sprite to map to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n FilterSystem.prototype.calculateSpriteMatrix = function calculateSpriteMatrix (outputMatrix, sprite)\n {\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n var ref$1 = sprite._texture;\n var orig = ref$1.orig;\n var mappedMatrix = outputMatrix.set(destinationFrame.width, 0, 0,\n destinationFrame.height, sourceFrame.x, sourceFrame.y);\n var worldTransform = sprite.worldTransform.copyTo(Matrix.TEMP_MATRIX);\n\n worldTransform.invert();\n mappedMatrix.prepend(worldTransform);\n mappedMatrix.scale(1.0 / orig.width, 1.0 / orig.height);\n mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y);\n\n return mappedMatrix;\n };\n\n /**\n * Destroys this Filter System.\n */\n FilterSystem.prototype.destroy = function destroy ()\n {\n // Those textures has to be destroyed by RenderTextureSystem or FramebufferSystem\n this.texturePool.clear(false);\n };\n\n /**\n * Gets a Power-of-Two render texture or fullScreen texture\n *\n * @protected\n * @param {number} minWidth - The minimum width of the render texture in real pixels.\n * @param {number} minHeight - The minimum height of the render texture in real pixels.\n * @param {number} [resolution=1] - The resolution of the render texture.\n * @return {PIXI.RenderTexture} The new render texture.\n */\n FilterSystem.prototype.getOptimalFilterTexture = function getOptimalFilterTexture (minWidth, minHeight, resolution)\n {\n if ( resolution === void 0 ) resolution = 1;\n\n return this.texturePool.getOptimalTexture(minWidth, minHeight, resolution);\n };\n\n /**\n * Gets extra render texture to use inside current filter\n * To be compliant with older filters, you can use params in any order\n *\n * @param {PIXI.RenderTexture} [input] renderTexture from which size and resolution will be copied\n * @param {number} [resolution] override resolution of the renderTexture\n * @returns {PIXI.RenderTexture}\n */\n FilterSystem.prototype.getFilterTexture = function getFilterTexture (input, resolution)\n {\n if (typeof input === 'number')\n {\n var swap = input;\n\n input = resolution;\n resolution = swap;\n }\n\n input = input || this.activeState.renderTexture;\n\n var filterTexture = this.texturePool.getOptimalTexture(input.width, input.height, resolution || input.resolution);\n\n filterTexture.filterFrame = input.filterFrame;\n\n return filterTexture;\n };\n\n /**\n * Frees a render texture back into the pool.\n *\n * @param {PIXI.RenderTexture} renderTexture - The renderTarget to free\n */\n FilterSystem.prototype.returnFilterTexture = function returnFilterTexture (renderTexture)\n {\n this.texturePool.returnTexture(renderTexture);\n };\n\n /**\n * Empties the texture pool.\n */\n FilterSystem.prototype.emptyPool = function emptyPool ()\n {\n this.texturePool.clear(true);\n };\n\n /**\n * calls `texturePool.resize()`, affects fullScreen renderTextures\n */\n FilterSystem.prototype.resize = function resize ()\n {\n this.texturePool.setScreenSize(this.renderer.view);\n };\n\n return FilterSystem;\n}(System));\n\n/**\n * Base for a common object renderer that can be used as a\n * system renderer plugin.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI\n */\nvar ObjectRenderer = function ObjectRenderer(renderer)\n{\n /**\n * The renderer this manager works for.\n *\n * @member {PIXI.Renderer}\n */\n this.renderer = renderer;\n};\n\n/**\n * Stub method that should be used to empty the current\n * batch by rendering objects now.\n */\nObjectRenderer.prototype.flush = function flush ()\n{\n // flush!\n};\n\n/**\n * Generic destruction method that frees all resources. This\n * should be called by subclasses.\n */\nObjectRenderer.prototype.destroy = function destroy ()\n{\n this.renderer = null;\n};\n\n/**\n * Stub method that initializes any state required before\n * rendering starts. It is different from the `prerender`\n * signal, which occurs every frame, in that it is called\n * whenever an object requests _this_ renderer specifically.\n */\nObjectRenderer.prototype.start = function start ()\n{\n // set the shader..\n};\n\n/**\n * Stops the renderer. It should free up any state and\n * become dormant.\n */\nObjectRenderer.prototype.stop = function stop ()\n{\n this.flush();\n};\n\n/**\n * Keeps the object to render. It doesn't have to be\n * rendered immediately.\n *\n * @param {PIXI.DisplayObject} object - The object to render.\n */\nObjectRenderer.prototype.render = function render (object) // eslint-disable-line no-unused-vars\n{\n // render the object\n};\n\n/**\n * System plugin to the renderer to manage batching.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar BatchSystem = /*@__PURE__*/(function (System) {\n function BatchSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * An empty renderer.\n *\n * @member {PIXI.ObjectRenderer}\n */\n this.emptyRenderer = new ObjectRenderer(renderer);\n\n /**\n * The currently active ObjectRenderer.\n *\n * @member {PIXI.ObjectRenderer}\n */\n this.currentRenderer = this.emptyRenderer;\n }\n\n if ( System ) BatchSystem.__proto__ = System;\n BatchSystem.prototype = Object.create( System && System.prototype );\n BatchSystem.prototype.constructor = BatchSystem;\n\n /**\n * Changes the current renderer to the one given in parameter\n *\n * @param {PIXI.ObjectRenderer} objectRenderer - The object renderer to use.\n */\n BatchSystem.prototype.setObjectRenderer = function setObjectRenderer (objectRenderer)\n {\n if (this.currentRenderer === objectRenderer)\n {\n return;\n }\n\n this.currentRenderer.stop();\n this.currentRenderer = objectRenderer;\n\n this.currentRenderer.start();\n };\n\n /**\n * This should be called if you wish to do some custom rendering\n * It will basically render anything that may be batched up such as sprites\n */\n BatchSystem.prototype.flush = function flush ()\n {\n this.setObjectRenderer(this.emptyRenderer);\n };\n\n /**\n * Reset the system to an empty renderer\n */\n BatchSystem.prototype.reset = function reset ()\n {\n this.setObjectRenderer(this.emptyRenderer);\n };\n\n return BatchSystem;\n}(System));\n\n/**\n * The maximum support for using WebGL. If a device does not\n * support WebGL version, for instance WebGL 2, it will still\n * attempt to fallback support to WebGL 1. If you want to\n * explicitly remove feature support to target a more stable\n * baseline, prefer a lower environment.\n *\n * Due to {@link https://bugs.chromium.org/p/chromium/issues/detail?id=934823|bug in chromium}\n * we disable webgl2 by default for all non-apple mobile devices.\n *\n * @static\n * @name PREFER_ENV\n * @memberof PIXI.settings\n * @type {number}\n * @default PIXI.ENV.WEBGL2\n */\nsettings.PREFER_ENV = isMobile.any ? ENV.WEBGL : ENV.WEBGL2;\n\nvar CONTEXT_UID = 0;\n\n/**\n * System plugin to the renderer to manage the context.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar ContextSystem = /*@__PURE__*/(function (System) {\n function ContextSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Either 1 or 2 to reflect the WebGL version being used\n * @member {number}\n * @readonly\n */\n this.webGLVersion = 1;\n\n /**\n * Extensions being used\n * @member {object}\n * @readonly\n * @property {WEBGL_draw_buffers} drawBuffers - WebGL v1 extension\n * @property {WEBGL_depth_texture} depthTexture - WebGL v1 extension\n * @property {OES_texture_float} floatTexture - WebGL v1 extension\n * @property {WEBGL_lose_context} loseContext - WebGL v1 extension\n * @property {OES_vertex_array_object} vertexArrayObject - WebGL v1 extension\n * @property {EXT_texture_filter_anisotropic} anisotropicFiltering - WebGL v1 and v2 extension\n */\n this.extensions = {};\n\n // Bind functions\n this.handleContextLost = this.handleContextLost.bind(this);\n this.handleContextRestored = this.handleContextRestored.bind(this);\n\n renderer.view.addEventListener('webglcontextlost', this.handleContextLost, false);\n renderer.view.addEventListener('webglcontextrestored', this.handleContextRestored, false);\n }\n\n if ( System ) ContextSystem.__proto__ = System;\n ContextSystem.prototype = Object.create( System && System.prototype );\n ContextSystem.prototype.constructor = ContextSystem;\n\n var prototypeAccessors = { isLost: { configurable: true } };\n\n /**\n * `true` if the context is lost\n * @member {boolean}\n * @readonly\n */\n prototypeAccessors.isLost.get = function ()\n {\n return (!this.gl || this.gl.isContextLost());\n };\n\n /**\n * Handle the context change event\n * @param {WebGLRenderingContext} gl new webgl context\n */\n ContextSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n this.renderer.gl = gl;\n this.renderer.CONTEXT_UID = CONTEXT_UID++;\n\n // restore a context if it was previously lost\n if (gl.isContextLost() && gl.getExtension('WEBGL_lose_context'))\n {\n gl.getExtension('WEBGL_lose_context').restoreContext();\n }\n };\n\n /**\n * Initialize the context\n *\n * @protected\n * @param {WebGLRenderingContext} gl - WebGL context\n */\n ContextSystem.prototype.initFromContext = function initFromContext (gl)\n {\n this.gl = gl;\n this.validateContext(gl);\n this.renderer.gl = gl;\n this.renderer.CONTEXT_UID = CONTEXT_UID++;\n this.renderer.runners.contextChange.run(gl);\n };\n\n /**\n * Initialize from context options\n *\n * @protected\n * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext\n * @param {object} options - context attributes\n */\n ContextSystem.prototype.initFromOptions = function initFromOptions (options)\n {\n var gl = this.createContext(this.renderer.view, options);\n\n this.initFromContext(gl);\n };\n\n /**\n * Helper class to create a WebGL Context\n *\n * @param canvas {HTMLCanvasElement} the canvas element that we will get the context from\n * @param options {object} An options object that gets passed in to the canvas element containing the context attributes\n * @see https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement/getContext\n * @return {WebGLRenderingContext} the WebGL context\n */\n ContextSystem.prototype.createContext = function createContext (canvas, options)\n {\n var gl;\n\n if (settings.PREFER_ENV >= ENV.WEBGL2)\n {\n gl = canvas.getContext('webgl2', options);\n }\n\n if (gl)\n {\n this.webGLVersion = 2;\n }\n else\n {\n this.webGLVersion = 1;\n\n gl = canvas.getContext('webgl', options)\n || canvas.getContext('experimental-webgl', options);\n\n if (!gl)\n {\n // fail, not able to get a context\n throw new Error('This browser does not support WebGL. Try using the canvas renderer');\n }\n }\n\n this.gl = gl;\n\n this.getExtensions();\n\n return gl;\n };\n\n /**\n * Auto-populate the extensions\n *\n * @protected\n */\n ContextSystem.prototype.getExtensions = function getExtensions ()\n {\n // time to set up default extensions that Pixi uses.\n var ref = this;\n var gl = ref.gl;\n\n if (this.webGLVersion === 1)\n {\n Object.assign(this.extensions, {\n drawBuffers: gl.getExtension('WEBGL_draw_buffers'),\n depthTexture: gl.getExtension('WEBKIT_WEBGL_depth_texture'),\n loseContext: gl.getExtension('WEBGL_lose_context'),\n vertexArrayObject: gl.getExtension('OES_vertex_array_object')\n || gl.getExtension('MOZ_OES_vertex_array_object')\n || gl.getExtension('WEBKIT_OES_vertex_array_object'),\n anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'),\n uint32ElementIndex: gl.getExtension('OES_element_index_uint'),\n // Floats and half-floats\n floatTexture: gl.getExtension('OES_texture_float'),\n floatTextureLinear: gl.getExtension('OES_texture_float_linear'),\n textureHalfFloat: gl.getExtension('OES_texture_half_float'),\n textureHalfFloatLinear: gl.getExtension('OES_texture_half_float_linear'),\n });\n }\n else if (this.webGLVersion === 2)\n {\n Object.assign(this.extensions, {\n anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'),\n // Floats and half-floats\n colorBufferFloat: gl.getExtension('EXT_color_buffer_float'),\n floatTextureLinear: gl.getExtension('OES_texture_float_linear'),\n });\n }\n };\n\n /**\n * Handles a lost webgl context\n *\n * @protected\n * @param {WebGLContextEvent} event - The context lost event.\n */\n ContextSystem.prototype.handleContextLost = function handleContextLost (event)\n {\n event.preventDefault();\n };\n\n /**\n * Handles a restored webgl context\n *\n * @protected\n */\n ContextSystem.prototype.handleContextRestored = function handleContextRestored ()\n {\n this.renderer.runners.contextChange.run(this.gl);\n };\n\n ContextSystem.prototype.destroy = function destroy ()\n {\n var view = this.renderer.view;\n\n // remove listeners\n view.removeEventListener('webglcontextlost', this.handleContextLost);\n view.removeEventListener('webglcontextrestored', this.handleContextRestored);\n\n this.gl.useProgram(null);\n\n if (this.extensions.loseContext)\n {\n this.extensions.loseContext.loseContext();\n }\n };\n\n /**\n * Handle the post-render runner event\n *\n * @protected\n */\n ContextSystem.prototype.postrender = function postrender ()\n {\n this.gl.flush();\n };\n\n /**\n * Validate context\n *\n * @protected\n * @param {WebGLRenderingContext} gl - Render context\n */\n ContextSystem.prototype.validateContext = function validateContext (gl)\n {\n var attributes = gl.getContextAttributes();\n\n // this is going to be fairly simple for now.. but at least we have room to grow!\n if (!attributes.stencil)\n {\n /* eslint-disable max-len */\n\n /* eslint-disable no-console */\n console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly');\n /* eslint-enable no-console */\n\n /* eslint-enable max-len */\n }\n };\n\n Object.defineProperties( ContextSystem.prototype, prototypeAccessors );\n\n return ContextSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage framebuffers.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar FramebufferSystem = /*@__PURE__*/(function (System) {\n function FramebufferSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * A list of managed framebuffers\n * @member {PIXI.Framebuffer[]}\n * @readonly\n */\n this.managedFramebuffers = [];\n\n /**\n * Framebuffer value that shows that we don't know what is bound\n * @member {Framebuffer}\n * @readonly\n */\n this.unknownFramebuffer = new Framebuffer(10, 10);\n }\n\n if ( System ) FramebufferSystem.__proto__ = System;\n FramebufferSystem.prototype = Object.create( System && System.prototype );\n FramebufferSystem.prototype.constructor = FramebufferSystem;\n\n var prototypeAccessors = { size: { configurable: true } };\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n FramebufferSystem.prototype.contextChange = function contextChange ()\n {\n var gl = this.gl = this.renderer.gl;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n this.current = this.unknownFramebuffer;\n this.viewport = new Rectangle();\n this.hasMRT = true;\n this.writeDepthTexture = true;\n\n this.disposeAll(true);\n\n // webgl2\n if (this.renderer.context.webGLVersion === 1)\n {\n // webgl 1!\n var nativeDrawBuffersExtension = this.renderer.context.extensions.drawBuffers;\n var nativeDepthTextureExtension = this.renderer.context.extensions.depthTexture;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n nativeDrawBuffersExtension = null;\n nativeDepthTextureExtension = null;\n }\n\n if (nativeDrawBuffersExtension)\n {\n gl.drawBuffers = function (activeTextures) { return nativeDrawBuffersExtension.drawBuffersWEBGL(activeTextures); };\n }\n else\n {\n this.hasMRT = false;\n gl.drawBuffers = function () {\n // empty\n };\n }\n\n if (!nativeDepthTextureExtension)\n {\n this.writeDepthTexture = false;\n }\n }\n };\n\n /**\n * Bind a framebuffer\n *\n * @param {PIXI.Framebuffer} framebuffer\n * @param {PIXI.Rectangle} [frame] frame, default is framebuffer size\n */\n FramebufferSystem.prototype.bind = function bind (framebuffer, frame)\n {\n var ref = this;\n var gl = ref.gl;\n\n if (framebuffer)\n {\n // TODO caching layer!\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID] || this.initFramebuffer(framebuffer);\n\n if (this.current !== framebuffer)\n {\n this.current = framebuffer;\n gl.bindFramebuffer(gl.FRAMEBUFFER, fbo.framebuffer);\n }\n // make sure all textures are unbound..\n\n // now check for updates...\n if (fbo.dirtyId !== framebuffer.dirtyId)\n {\n fbo.dirtyId = framebuffer.dirtyId;\n\n if (fbo.dirtyFormat !== framebuffer.dirtyFormat)\n {\n fbo.dirtyFormat = framebuffer.dirtyFormat;\n this.updateFramebuffer(framebuffer);\n }\n else if (fbo.dirtySize !== framebuffer.dirtySize)\n {\n fbo.dirtySize = framebuffer.dirtySize;\n this.resizeFramebuffer(framebuffer);\n }\n }\n\n for (var i = 0; i < framebuffer.colorTextures.length; i++)\n {\n if (framebuffer.colorTextures[i].texturePart)\n {\n this.renderer.texture.unbind(framebuffer.colorTextures[i].texture);\n }\n else\n {\n this.renderer.texture.unbind(framebuffer.colorTextures[i]);\n }\n }\n\n if (framebuffer.depthTexture)\n {\n this.renderer.texture.unbind(framebuffer.depthTexture);\n }\n\n if (frame)\n {\n this.setViewport(frame.x, frame.y, frame.width, frame.height);\n }\n else\n {\n this.setViewport(0, 0, framebuffer.width, framebuffer.height);\n }\n }\n else\n {\n if (this.current)\n {\n this.current = null;\n gl.bindFramebuffer(gl.FRAMEBUFFER, null);\n }\n\n if (frame)\n {\n this.setViewport(frame.x, frame.y, frame.width, frame.height);\n }\n else\n {\n this.setViewport(0, 0, this.renderer.width, this.renderer.height);\n }\n }\n };\n\n /**\n * Set the WebGLRenderingContext's viewport.\n *\n * @param {Number} x - X position of viewport\n * @param {Number} y - Y position of viewport\n * @param {Number} width - Width of viewport\n * @param {Number} height - Height of viewport\n */\n FramebufferSystem.prototype.setViewport = function setViewport (x, y, width, height)\n {\n var v = this.viewport;\n\n if (v.width !== width || v.height !== height || v.x !== x || v.y !== y)\n {\n v.x = x;\n v.y = y;\n v.width = width;\n v.height = height;\n\n this.gl.viewport(x, y, width, height);\n }\n };\n\n /**\n * Get the size of the current width and height. Returns object with `width` and `height` values.\n *\n * @member {object}\n * @readonly\n */\n prototypeAccessors.size.get = function ()\n {\n if (this.current)\n {\n // TODO store temp\n return { x: 0, y: 0, width: this.current.width, height: this.current.height };\n }\n\n return { x: 0, y: 0, width: this.renderer.width, height: this.renderer.height };\n };\n\n /**\n * Clear the color of the context\n *\n * @param {Number} r - Red value from 0 to 1\n * @param {Number} g - Green value from 0 to 1\n * @param {Number} b - Blue value from 0 to 1\n * @param {Number} a - Alpha value from 0 to 1\n */\n FramebufferSystem.prototype.clear = function clear (r, g, b, a)\n {\n var ref = this;\n var gl = ref.gl;\n\n // TODO clear color can be set only one right?\n gl.clearColor(r, g, b, a);\n gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);\n };\n\n /**\n * Initialize framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.initFramebuffer = function initFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n // TODO - make this a class?\n var fbo = {\n framebuffer: gl.createFramebuffer(),\n stencil: null,\n dirtyId: 0,\n dirtyFormat: 0,\n dirtySize: 0,\n };\n\n framebuffer.glFramebuffers[this.CONTEXT_UID] = fbo;\n\n this.managedFramebuffers.push(framebuffer);\n framebuffer.disposeRunner.add(this);\n\n return fbo;\n };\n\n /**\n * Resize the framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.resizeFramebuffer = function resizeFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n if (fbo.stencil)\n {\n gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil);\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height);\n }\n\n var colorTextures = framebuffer.colorTextures;\n\n for (var i = 0; i < colorTextures.length; i++)\n {\n this.renderer.texture.bind(colorTextures[i], 0);\n }\n\n if (framebuffer.depthTexture)\n {\n this.renderer.texture.bind(framebuffer.depthTexture, 0);\n }\n };\n\n /**\n * Update the framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.updateFramebuffer = function updateFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n // bind the color texture\n var colorTextures = framebuffer.colorTextures;\n\n var count = colorTextures.length;\n\n if (!gl.drawBuffers)\n {\n count = Math.min(count, 1);\n }\n\n var activeTextures = [];\n\n for (var i = 0; i < count; i++)\n {\n var texture = framebuffer.colorTextures[i];\n\n if (texture.texturePart)\n {\n this.renderer.texture.bind(texture.texture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.COLOR_ATTACHMENT0 + i,\n gl.TEXTURE_CUBE_MAP_NEGATIVE_X + texture.side,\n texture.texture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n else\n {\n this.renderer.texture.bind(texture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.COLOR_ATTACHMENT0 + i,\n gl.TEXTURE_2D,\n texture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n\n activeTextures.push(gl.COLOR_ATTACHMENT0 + i);\n }\n\n if (activeTextures.length > 1)\n {\n gl.drawBuffers(activeTextures);\n }\n\n if (framebuffer.depthTexture)\n {\n var writeDepthTexture = this.writeDepthTexture;\n\n if (writeDepthTexture)\n {\n var depthTexture = framebuffer.depthTexture;\n\n this.renderer.texture.bind(depthTexture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.DEPTH_ATTACHMENT,\n gl.TEXTURE_2D,\n depthTexture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n }\n\n if (!fbo.stencil && (framebuffer.stencil || framebuffer.depth))\n {\n fbo.stencil = gl.createRenderbuffer();\n\n gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil);\n\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height);\n // TODO.. this is depth AND stencil?\n if (!framebuffer.depthTexture)\n { // you can't have both, so one should take priority if enabled\n gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, fbo.stencil);\n }\n }\n };\n\n /**\n * Disposes framebuffer\n * @param {PIXI.Framebuffer} framebuffer framebuffer that has to be disposed of\n * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls\n */\n FramebufferSystem.prototype.disposeFramebuffer = function disposeFramebuffer (framebuffer, contextLost)\n {\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n var gl = this.gl;\n\n if (!fbo)\n {\n return;\n }\n\n delete framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n var index = this.managedFramebuffers.indexOf(framebuffer);\n\n if (index >= 0)\n {\n this.managedFramebuffers.splice(index, 1);\n }\n\n framebuffer.disposeRunner.remove(this);\n\n if (!contextLost)\n {\n gl.deleteFramebuffer(fbo.framebuffer);\n if (fbo.stencil)\n {\n gl.deleteRenderbuffer(fbo.stencil);\n }\n }\n };\n\n /**\n * Disposes all framebuffers, but not textures bound to them\n * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls\n */\n FramebufferSystem.prototype.disposeAll = function disposeAll (contextLost)\n {\n var list = this.managedFramebuffers;\n\n this.managedFramebuffers = [];\n\n for (var i = 0; i < list.length; i++)\n {\n this.disposeFramebuffer(list[i], contextLost);\n }\n };\n\n /**\n * Forcing creation of stencil buffer for current framebuffer, if it wasn't done before.\n * Used by MaskSystem, when its time to use stencil mask for Graphics element.\n *\n * Its an alternative for public lazy `framebuffer.enableStencil`, in case we need stencil without rebind.\n *\n * @private\n */\n FramebufferSystem.prototype.forceStencil = function forceStencil ()\n {\n var framebuffer = this.current;\n\n if (!framebuffer)\n {\n return;\n }\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n if (!fbo || fbo.stencil)\n {\n return;\n }\n framebuffer.enableStencil();\n\n var w = framebuffer.width;\n var h = framebuffer.height;\n var gl = this.gl;\n var stencil = gl.createRenderbuffer();\n\n gl.bindRenderbuffer(gl.RENDERBUFFER, stencil);\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, w, h);\n\n fbo.stencil = stencil;\n gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, stencil);\n };\n\n /**\n * resets framebuffer stored state, binds screen framebuffer\n *\n * should be called before renderTexture reset()\n */\n FramebufferSystem.prototype.reset = function reset ()\n {\n this.current = this.unknownFramebuffer;\n this.viewport = new Rectangle();\n };\n\n Object.defineProperties( FramebufferSystem.prototype, prototypeAccessors );\n\n return FramebufferSystem;\n}(System));\n\nvar GLBuffer = function GLBuffer(buffer)\n{\n this.buffer = buffer;\n this.updateID = -1;\n this.byteLength = -1;\n this.refCount = 0;\n};\n\nvar byteSizeMap$1 = { 5126: 4, 5123: 2, 5121: 1 };\n\n/**\n * System plugin to the renderer to manage geometry.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar GeometrySystem = /*@__PURE__*/(function (System) {\n function GeometrySystem(renderer)\n {\n System.call(this, renderer);\n\n this._activeGeometry = null;\n this._activeVao = null;\n\n /**\n * `true` if we has `*_vertex_array_object` extension\n * @member {boolean}\n * @readonly\n */\n this.hasVao = true;\n\n /**\n * `true` if has `ANGLE_instanced_arrays` extension\n * @member {boolean}\n * @readonly\n */\n this.hasInstance = true;\n\n /**\n * `true` if support `gl.UNSIGNED_INT` in `gl.drawElements` or `gl.drawElementsInstanced`\n * @member {boolean}\n * @readonly\n */\n this.canUseUInt32ElementIndex = false;\n\n /**\n * A cache of currently bound buffer,\n * contains only two members with keys ARRAY_BUFFER and ELEMENT_ARRAY_BUFFER\n * @member {Object.}\n * @readonly\n */\n this.boundBuffers = {};\n\n /**\n * Cache for all geometries by id, used in case renderer gets destroyed or for profiling\n * @member {object}\n * @readonly\n */\n this.managedGeometries = {};\n\n /**\n * Cache for all buffers by id, used in case renderer gets destroyed or for profiling\n * @member {object}\n * @readonly\n */\n this.managedBuffers = {};\n }\n\n if ( System ) GeometrySystem.__proto__ = System;\n GeometrySystem.prototype = Object.create( System && System.prototype );\n GeometrySystem.prototype.constructor = GeometrySystem;\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n GeometrySystem.prototype.contextChange = function contextChange ()\n {\n this.disposeAll(true);\n\n var gl = this.gl = this.renderer.gl;\n var context = this.renderer.context;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n\n // webgl2\n if (!gl.createVertexArray)\n {\n // webgl 1!\n var nativeVaoExtension = this.renderer.context.extensions.vertexArrayObject;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n nativeVaoExtension = null;\n }\n\n if (nativeVaoExtension)\n {\n gl.createVertexArray = function () { return nativeVaoExtension.createVertexArrayOES(); };\n\n gl.bindVertexArray = function (vao) { return nativeVaoExtension.bindVertexArrayOES(vao); };\n\n gl.deleteVertexArray = function (vao) { return nativeVaoExtension.deleteVertexArrayOES(vao); };\n }\n else\n {\n this.hasVao = false;\n gl.createVertexArray = function () {\n // empty\n };\n\n gl.bindVertexArray = function () {\n // empty\n };\n\n gl.deleteVertexArray = function () {\n // empty\n };\n }\n }\n\n if (!gl.vertexAttribDivisor)\n {\n var instanceExt = gl.getExtension('ANGLE_instanced_arrays');\n\n if (instanceExt)\n {\n gl.vertexAttribDivisor = function (a, b) { return instanceExt.vertexAttribDivisorANGLE(a, b); };\n\n gl.drawElementsInstanced = function (a, b, c, d, e) { return instanceExt.drawElementsInstancedANGLE(a, b, c, d, e); };\n\n gl.drawArraysInstanced = function (a, b, c, d) { return instanceExt.drawArraysInstancedANGLE(a, b, c, d); };\n }\n else\n {\n this.hasInstance = false;\n }\n }\n\n this.canUseUInt32ElementIndex = context.webGLVersion === 2 || !!context.extensions.uint32ElementIndex;\n };\n\n /**\n * Binds geometry so that is can be drawn. Creating a Vao if required\n *\n * @param {PIXI.Geometry} geometry instance of geometry to bind\n * @param {PIXI.Shader} [shader] instance of shader to use vao for\n */\n GeometrySystem.prototype.bind = function bind (geometry, shader)\n {\n shader = shader || this.renderer.shader.shader;\n\n var ref = this;\n var gl = ref.gl;\n\n // not sure the best way to address this..\n // currently different shaders require different VAOs for the same geometry\n // Still mulling over the best way to solve this one..\n // will likely need to modify the shader attribute locations at run time!\n var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n\n if (!vaos)\n {\n this.managedGeometries[geometry.id] = geometry;\n geometry.disposeRunner.add(this);\n geometry.glVertexArrayObjects[this.CONTEXT_UID] = vaos = {};\n }\n\n var vao = vaos[shader.program.id] || this.initGeometryVao(geometry, shader.program);\n\n this._activeGeometry = geometry;\n\n if (this._activeVao !== vao)\n {\n this._activeVao = vao;\n\n if (this.hasVao)\n {\n gl.bindVertexArray(vao);\n }\n else\n {\n this.activateVao(geometry, shader.program);\n }\n }\n\n // TODO - optimise later!\n // don't need to loop through if nothing changed!\n // maybe look to add an 'autoupdate' to geometry?\n this.updateBuffers();\n };\n\n /**\n * Reset and unbind any active VAO and geometry\n */\n GeometrySystem.prototype.reset = function reset ()\n {\n this.unbind();\n };\n\n /**\n * Update buffers\n * @protected\n */\n GeometrySystem.prototype.updateBuffers = function updateBuffers ()\n {\n var geometry = this._activeGeometry;\n var ref = this;\n var gl = ref.gl;\n\n for (var i = 0; i < geometry.buffers.length; i++)\n {\n var buffer = geometry.buffers[i];\n\n var glBuffer = buffer._glBuffers[this.CONTEXT_UID];\n\n if (buffer._updateID !== glBuffer.updateID)\n {\n glBuffer.updateID = buffer._updateID;\n\n // TODO can cache this on buffer! maybe added a getter / setter?\n var type = buffer.index ? gl.ELEMENT_ARRAY_BUFFER : gl.ARRAY_BUFFER;\n\n // TODO this could change if the VAO changes...\n // need to come up with a better way to cache..\n // if (this.boundBuffers[type] !== glBuffer)\n // {\n // this.boundBuffers[type] = glBuffer;\n gl.bindBuffer(type, glBuffer.buffer);\n // }\n\n this._boundBuffer = glBuffer;\n\n if (glBuffer.byteLength >= buffer.data.byteLength)\n {\n // offset is always zero for now!\n gl.bufferSubData(type, 0, buffer.data);\n }\n else\n {\n var drawType = buffer.static ? gl.STATIC_DRAW : gl.DYNAMIC_DRAW;\n\n glBuffer.byteLength = buffer.data.byteLength;\n gl.bufferData(type, buffer.data, drawType);\n }\n }\n }\n };\n\n /**\n * Check compability between a geometry and a program\n * @protected\n * @param {PIXI.Geometry} geometry - Geometry instance\n * @param {PIXI.Program} program - Program instance\n */\n GeometrySystem.prototype.checkCompatibility = function checkCompatibility (geometry, program)\n {\n // geometry must have at least all the attributes that the shader requires.\n var geometryAttributes = geometry.attributes;\n var shaderAttributes = program.attributeData;\n\n for (var j in shaderAttributes)\n {\n if (!geometryAttributes[j])\n {\n throw new Error((\"shader and geometry incompatible, geometry missing the \\\"\" + j + \"\\\" attribute\"));\n }\n }\n };\n\n /**\n * Takes a geometry and program and generates a unique signature for them.\n *\n * @param {PIXI.Geometry} geometry to get signature from\n * @param {PIXI.Program} program to test geometry against\n * @returns {String} Unique signature of the geometry and program\n * @protected\n */\n GeometrySystem.prototype.getSignature = function getSignature (geometry, program)\n {\n var attribs = geometry.attributes;\n var shaderAttributes = program.attributeData;\n\n var strings = ['g', geometry.id];\n\n for (var i in attribs)\n {\n if (shaderAttributes[i])\n {\n strings.push(i);\n }\n }\n\n return strings.join('-');\n };\n\n /**\n * Creates or gets Vao with the same structure as the geometry and stores it on the geometry.\n * If vao is created, it is bound automatically.\n *\n * @protected\n * @param {PIXI.Geometry} geometry - Instance of geometry to to generate Vao for\n * @param {PIXI.Program} program - Instance of program\n */\n GeometrySystem.prototype.initGeometryVao = function initGeometryVao (geometry, program)\n {\n this.checkCompatibility(geometry, program);\n\n var gl = this.gl;\n var CONTEXT_UID = this.CONTEXT_UID;\n\n var signature = this.getSignature(geometry, program);\n\n var vaoObjectHash = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n\n var vao = vaoObjectHash[signature];\n\n if (vao)\n {\n // this will give us easy access to the vao\n vaoObjectHash[program.id] = vao;\n\n return vao;\n }\n\n var buffers = geometry.buffers;\n var attributes = geometry.attributes;\n var tempStride = {};\n var tempStart = {};\n\n for (var j in buffers)\n {\n tempStride[j] = 0;\n tempStart[j] = 0;\n }\n\n for (var j$1 in attributes)\n {\n if (!attributes[j$1].size && program.attributeData[j$1])\n {\n attributes[j$1].size = program.attributeData[j$1].size;\n }\n else if (!attributes[j$1].size)\n {\n console.warn((\"PIXI Geometry attribute '\" + j$1 + \"' size cannot be determined (likely the bound shader does not have the attribute)\")); // eslint-disable-line\n }\n\n tempStride[attributes[j$1].buffer] += attributes[j$1].size * byteSizeMap$1[attributes[j$1].type];\n }\n\n for (var j$2 in attributes)\n {\n var attribute = attributes[j$2];\n var attribSize = attribute.size;\n\n if (attribute.stride === undefined)\n {\n if (tempStride[attribute.buffer] === attribSize * byteSizeMap$1[attribute.type])\n {\n attribute.stride = 0;\n }\n else\n {\n attribute.stride = tempStride[attribute.buffer];\n }\n }\n\n if (attribute.start === undefined)\n {\n attribute.start = tempStart[attribute.buffer];\n\n tempStart[attribute.buffer] += attribSize * byteSizeMap$1[attribute.type];\n }\n }\n\n vao = gl.createVertexArray();\n\n gl.bindVertexArray(vao);\n\n // first update - and create the buffers!\n // only create a gl buffer if it actually gets\n for (var i = 0; i < buffers.length; i++)\n {\n var buffer = buffers[i];\n\n if (!buffer._glBuffers[CONTEXT_UID])\n {\n buffer._glBuffers[CONTEXT_UID] = new GLBuffer(gl.createBuffer());\n this.managedBuffers[buffer.id] = buffer;\n buffer.disposeRunner.add(this);\n }\n\n buffer._glBuffers[CONTEXT_UID].refCount++;\n }\n\n // TODO - maybe make this a data object?\n // lets wait to see if we need to first!\n\n this.activateVao(geometry, program);\n\n this._activeVao = vao;\n\n // add it to the cache!\n vaoObjectHash[program.id] = vao;\n vaoObjectHash[signature] = vao;\n\n return vao;\n };\n\n /**\n * Disposes buffer\n * @param {PIXI.Buffer} buffer buffer with data\n * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray\n */\n GeometrySystem.prototype.disposeBuffer = function disposeBuffer (buffer, contextLost)\n {\n if (!this.managedBuffers[buffer.id])\n {\n return;\n }\n\n delete this.managedBuffers[buffer.id];\n\n var glBuffer = buffer._glBuffers[this.CONTEXT_UID];\n var gl = this.gl;\n\n buffer.disposeRunner.remove(this);\n\n if (!glBuffer)\n {\n return;\n }\n\n if (!contextLost)\n {\n gl.deleteBuffer(glBuffer.buffer);\n }\n\n delete buffer._glBuffers[this.CONTEXT_UID];\n };\n\n /**\n * Disposes geometry\n * @param {PIXI.Geometry} geometry Geometry with buffers. Only VAO will be disposed\n * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray\n */\n GeometrySystem.prototype.disposeGeometry = function disposeGeometry (geometry, contextLost)\n {\n if (!this.managedGeometries[geometry.id])\n {\n return;\n }\n\n delete this.managedGeometries[geometry.id];\n\n var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n var gl = this.gl;\n var buffers = geometry.buffers;\n\n geometry.disposeRunner.remove(this);\n\n if (!vaos)\n {\n return;\n }\n\n for (var i = 0; i < buffers.length; i++)\n {\n var buf = buffers[i]._glBuffers[this.CONTEXT_UID];\n\n buf.refCount--;\n if (buf.refCount === 0 && !contextLost)\n {\n this.disposeBuffer(buffers[i], contextLost);\n }\n }\n\n if (!contextLost)\n {\n for (var vaoId in vaos)\n {\n // delete only signatures, everything else are copies\n if (vaoId[0] === 'g')\n {\n var vao = vaos[vaoId];\n\n if (this._activeVao === vao)\n {\n this.unbind();\n }\n gl.deleteVertexArray(vao);\n }\n }\n }\n\n delete geometry.glVertexArrayObjects[this.CONTEXT_UID];\n };\n\n /**\n * dispose all WebGL resources of all managed geometries and buffers\n * @param {boolean} [contextLost=false] If context was lost, we suppress `gl.delete` calls\n */\n GeometrySystem.prototype.disposeAll = function disposeAll (contextLost)\n {\n var all = Object.keys(this.managedGeometries);\n\n for (var i = 0; i < all.length; i++)\n {\n this.disposeGeometry(this.managedGeometries[all[i]], contextLost);\n }\n all = Object.keys(this.managedBuffers);\n for (var i$1 = 0; i$1 < all.length; i$1++)\n {\n this.disposeBuffer(this.managedBuffers[all[i$1]], contextLost);\n }\n };\n\n /**\n * Activate vertex array object\n *\n * @protected\n * @param {PIXI.Geometry} geometry - Geometry instance\n * @param {PIXI.Program} program - Shader program instance\n */\n GeometrySystem.prototype.activateVao = function activateVao (geometry, program)\n {\n var gl = this.gl;\n var CONTEXT_UID = this.CONTEXT_UID;\n var buffers = geometry.buffers;\n var attributes = geometry.attributes;\n\n if (geometry.indexBuffer)\n {\n // first update the index buffer if we have one..\n gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, geometry.indexBuffer._glBuffers[CONTEXT_UID].buffer);\n }\n\n var lastBuffer = null;\n\n // add a new one!\n for (var j in attributes)\n {\n var attribute = attributes[j];\n var buffer = buffers[attribute.buffer];\n var glBuffer = buffer._glBuffers[CONTEXT_UID];\n\n if (program.attributeData[j])\n {\n if (lastBuffer !== glBuffer)\n {\n gl.bindBuffer(gl.ARRAY_BUFFER, glBuffer.buffer);\n\n lastBuffer = glBuffer;\n }\n\n var location = program.attributeData[j].location;\n\n // TODO introduce state again\n // we can optimise this for older devices that have no VAOs\n gl.enableVertexAttribArray(location);\n\n gl.vertexAttribPointer(location,\n attribute.size,\n attribute.type || gl.FLOAT,\n attribute.normalized,\n attribute.stride,\n attribute.start);\n\n if (attribute.instance)\n {\n // TODO calculate instance count based of this...\n if (this.hasInstance)\n {\n gl.vertexAttribDivisor(location, 1);\n }\n else\n {\n throw new Error('geometry error, GPU Instancing is not supported on this device');\n }\n }\n }\n }\n };\n\n /**\n * Draw the geometry\n *\n * @param {Number} type - the type primitive to render\n * @param {Number} [size] - the number of elements to be rendered\n * @param {Number} [start] - Starting index\n * @param {Number} [instanceCount] - the number of instances of the set of elements to execute\n */\n GeometrySystem.prototype.draw = function draw (type, size, start, instanceCount)\n {\n var ref = this;\n var gl = ref.gl;\n var geometry = this._activeGeometry;\n\n // TODO.. this should not change so maybe cache the function?\n\n if (geometry.indexBuffer)\n {\n var byteSize = geometry.indexBuffer.data.BYTES_PER_ELEMENT;\n var glType = byteSize === 2 ? gl.UNSIGNED_SHORT : gl.UNSIGNED_INT;\n\n if (byteSize === 2 || (byteSize === 4 && this.canUseUInt32ElementIndex))\n {\n if (geometry.instanced)\n {\n /* eslint-disable max-len */\n gl.drawElementsInstanced(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize, instanceCount || 1);\n /* eslint-enable max-len */\n }\n else\n {\n /* eslint-disable max-len */\n gl.drawElements(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize);\n /* eslint-enable max-len */\n }\n }\n else\n {\n console.warn('unsupported index buffer type: uint32');\n }\n }\n else if (geometry.instanced)\n {\n // TODO need a better way to calculate size..\n gl.drawArraysInstanced(type, start, size || geometry.getSize(), instanceCount || 1);\n }\n else\n {\n gl.drawArrays(type, start, size || geometry.getSize());\n }\n\n return this;\n };\n\n /**\n * Unbind/reset everything\n * @protected\n */\n GeometrySystem.prototype.unbind = function unbind ()\n {\n this.gl.bindVertexArray(null);\n this._activeVao = null;\n this._activeGeometry = null;\n };\n\n return GeometrySystem;\n}(System));\n\n/**\n * @method compileProgram\n * @private\n * @memberof PIXI.glCore.shader\n * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram}\n * @param vertexSrc {string|string[]} The vertex shader source as an array of strings.\n * @param fragmentSrc {string|string[]} The fragment shader source as an array of strings.\n * @param attributeLocations {Object} An attribute location map that lets you manually set the attribute locations\n * @return {WebGLProgram} the shader program\n */\nfunction compileProgram(gl, vertexSrc, fragmentSrc, attributeLocations)\n{\n var glVertShader = compileShader(gl, gl.VERTEX_SHADER, vertexSrc);\n var glFragShader = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc);\n\n var program = gl.createProgram();\n\n gl.attachShader(program, glVertShader);\n gl.attachShader(program, glFragShader);\n\n // optionally, set the attributes manually for the program rather than letting WebGL decide..\n if (attributeLocations)\n {\n for (var i in attributeLocations)\n {\n gl.bindAttribLocation(program, attributeLocations[i], i);\n }\n }\n\n gl.linkProgram(program);\n\n // if linking fails, then log and cleanup\n if (!gl.getProgramParameter(program, gl.LINK_STATUS))\n {\n console.error('Pixi.js Error: Could not initialize shader.');\n console.error('gl.VALIDATE_STATUS', gl.getProgramParameter(program, gl.VALIDATE_STATUS));\n console.error('gl.getError()', gl.getError());\n\n // if there is a program info log, log it\n if (gl.getProgramInfoLog(program) !== '')\n {\n console.warn('Pixi.js Warning: gl.getProgramInfoLog()', gl.getProgramInfoLog(program));\n }\n\n gl.deleteProgram(program);\n program = null;\n }\n\n // clean up some shaders\n gl.deleteShader(glVertShader);\n gl.deleteShader(glFragShader);\n\n return program;\n}\n\n/**\n * @private\n * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram}\n * @param type {Number} the type, can be either VERTEX_SHADER or FRAGMENT_SHADER\n * @param vertexSrc {string|string[]} The vertex shader source as an array of strings.\n * @return {WebGLShader} the shader\n */\nfunction compileShader(gl, type, src)\n{\n var shader = gl.createShader(type);\n\n gl.shaderSource(shader, src);\n gl.compileShader(shader);\n\n if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS))\n {\n console.warn(src);\n console.error(gl.getShaderInfoLog(shader));\n\n return null;\n }\n\n return shader;\n}\n\n/**\n * @method defaultValue\n * @memberof PIXI.glCore.shader\n * @param type {String} Type of value\n * @param size {Number}\n * @private\n */\nfunction defaultValue(type, size)\n{\n switch (type)\n {\n case 'float':\n return 0;\n\n case 'vec2':\n return new Float32Array(2 * size);\n\n case 'vec3':\n return new Float32Array(3 * size);\n\n case 'vec4':\n return new Float32Array(4 * size);\n\n case 'int':\n case 'sampler2D':\n case 'sampler2DArray':\n return 0;\n\n case 'ivec2':\n return new Int32Array(2 * size);\n\n case 'ivec3':\n return new Int32Array(3 * size);\n\n case 'ivec4':\n return new Int32Array(4 * size);\n\n case 'bool':\n return false;\n\n case 'bvec2':\n\n return booleanArray(2 * size);\n\n case 'bvec3':\n return booleanArray(3 * size);\n\n case 'bvec4':\n return booleanArray(4 * size);\n\n case 'mat2':\n return new Float32Array([1, 0,\n 0, 1]);\n\n case 'mat3':\n return new Float32Array([1, 0, 0,\n 0, 1, 0,\n 0, 0, 1]);\n\n case 'mat4':\n return new Float32Array([1, 0, 0, 0,\n 0, 1, 0, 0,\n 0, 0, 1, 0,\n 0, 0, 0, 1]);\n }\n\n return null;\n}\n\nfunction booleanArray(size)\n{\n var array = new Array(size);\n\n for (var i = 0; i < array.length; i++)\n {\n array[i] = false;\n }\n\n return array;\n}\n\nvar unknownContext = {};\nvar context = unknownContext;\n\n/**\n * returns a little WebGL context to use for program inspection.\n *\n * @static\n * @private\n * @returns {webGL-context} a gl context to test with\n */\nfunction getTestContext()\n{\n if (context === unknownContext || context.isContextLost())\n {\n var canvas = document.createElement('canvas');\n\n var gl;\n\n if (settings.PREFER_ENV >= ENV.WEBGL2)\n {\n gl = canvas.getContext('webgl2', {});\n }\n\n if (!gl)\n {\n gl = canvas.getContext('webgl', {})\n || canvas.getContext('experimental-webgl', {});\n\n if (!gl)\n {\n // fail, not able to get a context\n gl = null;\n }\n else\n {\n // for shader testing..\n gl.getExtension('WEBGL_draw_buffers');\n }\n }\n\n context = gl;\n }\n\n return context;\n}\n\nvar maxFragmentPrecision;\n\nfunction getMaxFragmentPrecision()\n{\n if (!maxFragmentPrecision)\n {\n maxFragmentPrecision = PRECISION.MEDIUM;\n var gl = getTestContext();\n\n if (gl)\n {\n if (gl.getShaderPrecisionFormat)\n {\n var shaderFragment = gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT);\n\n maxFragmentPrecision = shaderFragment.precision ? PRECISION.HIGH : PRECISION.MEDIUM;\n }\n }\n }\n\n return maxFragmentPrecision;\n}\n\n/**\n * Sets the float precision on the shader, ensuring the device supports the request precision.\n * If the precision is already present, it just ensures that the device is able to handle it.\n *\n * @private\n * @param {string} src - The shader source\n * @param {string} requestedPrecision - The request float precision of the shader. Options are 'lowp', 'mediump' or 'highp'.\n * @param {string} maxSupportedPrecision - The maximum precision the shader supports.\n *\n * @return {string} modified shader source\n */\nfunction setPrecision(src, requestedPrecision, maxSupportedPrecision)\n{\n if (src.substring(0, 9) !== 'precision')\n {\n // no precision supplied, so PixiJS will add the requested level.\n var precision = requestedPrecision;\n\n // If highp is requested but not supported, downgrade precision to a level all devices support.\n if (requestedPrecision === PRECISION.HIGH && maxSupportedPrecision !== PRECISION.HIGH)\n {\n precision = PRECISION.MEDIUM;\n }\n\n return (\"precision \" + precision + \" float;\\n\" + src);\n }\n else if (maxSupportedPrecision !== PRECISION.HIGH && src.substring(0, 15) === 'precision highp')\n {\n // precision was supplied, but at a level this device does not support, so downgrading to mediump.\n return src.replace('precision highp', 'precision mediump');\n }\n\n return src;\n}\n\nvar GLSL_TO_SIZE = {\n float: 1,\n vec2: 2,\n vec3: 3,\n vec4: 4,\n\n int: 1,\n ivec2: 2,\n ivec3: 3,\n ivec4: 4,\n\n bool: 1,\n bvec2: 2,\n bvec3: 3,\n bvec4: 4,\n\n mat2: 4,\n mat3: 9,\n mat4: 16,\n\n sampler2D: 1,\n};\n\n/**\n * @private\n * @method mapSize\n * @memberof PIXI.glCore.shader\n * @param type {String}\n * @return {Number}\n */\nfunction mapSize(type)\n{\n return GLSL_TO_SIZE[type];\n}\n\nvar GL_TABLE = null;\n\nvar GL_TO_GLSL_TYPES = {\n FLOAT: 'float',\n FLOAT_VEC2: 'vec2',\n FLOAT_VEC3: 'vec3',\n FLOAT_VEC4: 'vec4',\n\n INT: 'int',\n INT_VEC2: 'ivec2',\n INT_VEC3: 'ivec3',\n INT_VEC4: 'ivec4',\n\n BOOL: 'bool',\n BOOL_VEC2: 'bvec2',\n BOOL_VEC3: 'bvec3',\n BOOL_VEC4: 'bvec4',\n\n FLOAT_MAT2: 'mat2',\n FLOAT_MAT3: 'mat3',\n FLOAT_MAT4: 'mat4',\n\n SAMPLER_2D: 'sampler2D',\n SAMPLER_CUBE: 'samplerCube',\n SAMPLER_2D_ARRAY: 'sampler2DArray',\n};\n\nfunction mapType(gl, type)\n{\n if (!GL_TABLE)\n {\n var typeNames = Object.keys(GL_TO_GLSL_TYPES);\n\n GL_TABLE = {};\n\n for (var i = 0; i < typeNames.length; ++i)\n {\n var tn = typeNames[i];\n\n GL_TABLE[gl[tn]] = GL_TO_GLSL_TYPES[tn];\n }\n }\n\n return GL_TABLE[type];\n}\n\n// cv = CachedValue\n// v = value\n// ud = uniformData\n// uv = uniformValue\n// l = location\nvar GLSL_TO_SINGLE_SETTERS_CACHED = {\n\n float: \"\\n if(cv !== v)\\n {\\n cv.v = v;\\n gl.uniform1f(location, v)\\n }\",\n\n vec2: \"\\n if(cv[0] !== v[0] || cv[1] !== v[1])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n gl.uniform2f(location, v[0], v[1])\\n }\",\n\n vec3: \"\\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n cv[2] = v[2];\\n\\n gl.uniform3f(location, v[0], v[1], v[2])\\n }\",\n\n vec4: 'gl.uniform4f(location, v[0], v[1], v[2], v[3])',\n\n int: 'gl.uniform1i(location, v)',\n ivec2: 'gl.uniform2i(location, v[0], v[1])',\n ivec3: 'gl.uniform3i(location, v[0], v[1], v[2])',\n ivec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])',\n\n bool: 'gl.uniform1i(location, v)',\n bvec2: 'gl.uniform2i(location, v[0], v[1])',\n bvec3: 'gl.uniform3i(location, v[0], v[1], v[2])',\n bvec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])',\n\n mat2: 'gl.uniformMatrix2fv(location, false, v)',\n mat3: 'gl.uniformMatrix3fv(location, false, v)',\n mat4: 'gl.uniformMatrix4fv(location, false, v)',\n\n sampler2D: 'gl.uniform1i(location, v)',\n samplerCube: 'gl.uniform1i(location, v)',\n sampler2DArray: 'gl.uniform1i(location, v)',\n};\n\nvar GLSL_TO_ARRAY_SETTERS = {\n\n float: \"gl.uniform1fv(location, v)\",\n\n vec2: \"gl.uniform2fv(location, v)\",\n vec3: \"gl.uniform3fv(location, v)\",\n vec4: 'gl.uniform4fv(location, v)',\n\n mat4: 'gl.uniformMatrix4fv(location, false, v)',\n mat3: 'gl.uniformMatrix3fv(location, false, v)',\n mat2: 'gl.uniformMatrix2fv(location, false, v)',\n\n int: 'gl.uniform1iv(location, v)',\n ivec2: 'gl.uniform2iv(location, v)',\n ivec3: 'gl.uniform3iv(location, v)',\n ivec4: 'gl.uniform4iv(location, v)',\n\n bool: 'gl.uniform1iv(location, v)',\n bvec2: 'gl.uniform2iv(location, v)',\n bvec3: 'gl.uniform3iv(location, v)',\n bvec4: 'gl.uniform4iv(location, v)',\n\n sampler2D: 'gl.uniform1iv(location, v)',\n samplerCube: 'gl.uniform1iv(location, v)',\n sampler2DArray: 'gl.uniform1iv(location, v)',\n};\n\nfunction generateUniformsSync(group, uniformData)\n{\n var textureCount = 0;\n var func = \"var v = null;\\n var cv = null\\n var gl = renderer.gl\";\n\n for (var i in group.uniforms)\n {\n var data = uniformData[i];\n\n if (!data)\n {\n if (group.uniforms[i].group)\n {\n func += \"\\n renderer.shader.syncUniformGroup(uv.\" + i + \");\\n \";\n }\n\n continue;\n }\n\n // TODO && uniformData[i].value !== 0 <-- do we still need this?\n if (data.type === 'float' && data.size === 1)\n {\n func += \"\\n if(uv.\" + i + \" !== ud.\" + i + \".value)\\n {\\n ud.\" + i + \".value = uv.\" + i + \"\\n gl.uniform1f(ud.\" + i + \".location, uv.\" + i + \")\\n }\\n\";\n }\n /* eslint-disable max-len */\n else if ((data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray)\n /* eslint-disable max-len */\n {\n func += \"\\n renderer.texture.bind(uv.\" + i + \", \" + textureCount + \");\\n\\n if(ud.\" + i + \".value !== \" + textureCount + \")\\n {\\n ud.\" + i + \".value = \" + textureCount + \";\\n gl.uniform1i(ud.\" + i + \".location, \" + textureCount + \");\\n; // eslint-disable-line max-len\\n }\\n\";\n\n textureCount++;\n }\n else if (data.type === 'mat3' && data.size === 1)\n {\n if (group.uniforms[i].a !== undefined)\n {\n // TODO and some smart caching dirty ids here!\n func += \"\\n gl.uniformMatrix3fv(ud.\" + i + \".location, false, uv.\" + i + \".toArray(true));\\n \\n\";\n }\n else\n {\n func += \"\\n gl.uniformMatrix3fv(ud.\" + i + \".location, false, uv.\" + i + \");\\n \\n\";\n }\n }\n else if (data.type === 'vec2' && data.size === 1)\n {\n // TODO - do we need both here?\n // maybe we can get away with only using points?\n if (group.uniforms[i].x !== undefined)\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v.x || cv[1] !== v.y)\\n {\\n cv[0] = v.x;\\n cv[1] = v.y;\\n gl.uniform2f(ud.\" + i + \".location, v.x, v.y);\\n }\\n\";\n }\n else\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v[0] || cv[1] !== v[1])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n gl.uniform2f(ud.\" + i + \".location, v[0], v[1]);\\n }\\n \\n\";\n }\n }\n else if (data.type === 'vec4' && data.size === 1)\n {\n // TODO - do we need both here?\n // maybe we can get away with only using points?\n if (group.uniforms[i].width !== undefined)\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v.x || cv[1] !== v.y || cv[2] !== v.width || cv[3] !== v.height)\\n {\\n cv[0] = v.x;\\n cv[1] = v.y;\\n cv[2] = v.width;\\n cv[3] = v.height;\\n gl.uniform4f(ud.\" + i + \".location, v.x, v.y, v.width, v.height)\\n }\\n\";\n }\n else\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2] || cv[3] !== v[3])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n cv[2] = v[2];\\n cv[3] = v[3];\\n\\n gl.uniform4f(ud.\" + i + \".location, v[0], v[1], v[2], v[3])\\n }\\n \\n\";\n }\n }\n else\n {\n var templateType = (data.size === 1) ? GLSL_TO_SINGLE_SETTERS_CACHED : GLSL_TO_ARRAY_SETTERS;\n\n var template = templateType[data.type].replace('location', (\"ud.\" + i + \".location\"));\n\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n \" + template + \";\\n\";\n }\n }\n\n return new Function('ud', 'uv', 'renderer', func); // eslint-disable-line no-new-func\n}\n\nvar fragTemplate = [\n 'precision mediump float;',\n 'void main(void){',\n 'float test = 0.1;',\n '%forloop%',\n 'gl_FragColor = vec4(0.0);',\n '}' ].join('\\n');\n\nfunction checkMaxIfStatementsInShader(maxIfs, gl)\n{\n if (maxIfs === 0)\n {\n throw new Error('Invalid value of `0` passed to `checkMaxIfStatementsInShader`');\n }\n\n var shader = gl.createShader(gl.FRAGMENT_SHADER);\n\n while (true) // eslint-disable-line no-constant-condition\n {\n var fragmentSrc = fragTemplate.replace(/%forloop%/gi, generateIfTestSrc(maxIfs));\n\n gl.shaderSource(shader, fragmentSrc);\n gl.compileShader(shader);\n\n if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS))\n {\n maxIfs = (maxIfs / 2) | 0;\n }\n else\n {\n // valid!\n break;\n }\n }\n\n return maxIfs;\n}\n\nfunction generateIfTestSrc(maxIfs)\n{\n var src = '';\n\n for (var i = 0; i < maxIfs; ++i)\n {\n if (i > 0)\n {\n src += '\\nelse ';\n }\n\n if (i < maxIfs - 1)\n {\n src += \"if(test == \" + i + \".0){}\";\n }\n }\n\n return src;\n}\n\n// Cache the result to prevent running this over and over\nvar unsafeEval;\n\n/**\n * Not all platforms allow to generate function code (e.g., `new Function`).\n * this provides the platform-level detection.\n *\n * @private\n * @returns {boolean}\n */\nfunction unsafeEvalSupported()\n{\n if (typeof unsafeEval === 'boolean')\n {\n return unsafeEval;\n }\n\n try\n {\n /* eslint-disable no-new-func */\n var func = new Function('param1', 'param2', 'param3', 'return param1[param2] === param3;');\n /* eslint-enable no-new-func */\n\n unsafeEval = func({ a: 'b' }, 'a', 'b') === true;\n }\n catch (e)\n {\n unsafeEval = false;\n }\n\n return unsafeEval;\n}\n\nvar defaultFragment = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n gl_FragColor *= texture2D(uSampler, vTextureCoord);\\n}\";\n\nvar defaultVertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void){\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n vTextureCoord = aTextureCoord;\\n}\\n\";\n\n// import * as from '../systems/shader/shader';\n\nvar UID$3 = 0;\n\nvar nameCache = {};\n\n/**\n * Helper class to create a shader program.\n *\n * @class\n * @memberof PIXI\n */\nvar Program = function Program(vertexSrc, fragmentSrc, name)\n{\n if ( name === void 0 ) name = 'pixi-shader';\n\n this.id = UID$3++;\n\n /**\n * The vertex shader.\n *\n * @member {string}\n */\n this.vertexSrc = vertexSrc || Program.defaultVertexSrc;\n\n /**\n * The fragment shader.\n *\n * @member {string}\n */\n this.fragmentSrc = fragmentSrc || Program.defaultFragmentSrc;\n\n this.vertexSrc = this.vertexSrc.trim();\n this.fragmentSrc = this.fragmentSrc.trim();\n\n if (this.vertexSrc.substring(0, 8) !== '#version')\n {\n name = name.replace(/\\s+/g, '-');\n\n if (nameCache[name])\n {\n nameCache[name]++;\n name += \"-\" + (nameCache[name]);\n }\n else\n {\n nameCache[name] = 1;\n }\n\n this.vertexSrc = \"#define SHADER_NAME \" + name + \"\\n\" + (this.vertexSrc);\n this.fragmentSrc = \"#define SHADER_NAME \" + name + \"\\n\" + (this.fragmentSrc);\n\n this.vertexSrc = setPrecision(this.vertexSrc, settings.PRECISION_VERTEX, PRECISION.HIGH);\n this.fragmentSrc = setPrecision(this.fragmentSrc, settings.PRECISION_FRAGMENT, getMaxFragmentPrecision());\n }\n\n // currently this does not extract structs only default types\n this.extractData(this.vertexSrc, this.fragmentSrc);\n\n // this is where we store shader references..\n this.glPrograms = {};\n\n this.syncUniforms = null;\n};\n\nvar staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } };\n\n/**\n * Extracts the data for a buy creating a small test program\n * or reading the src directly.\n * @protected\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n */\nProgram.prototype.extractData = function extractData (vertexSrc, fragmentSrc)\n{\n var gl = getTestContext();\n\n if (gl)\n {\n var program = compileProgram(gl, vertexSrc, fragmentSrc);\n\n this.attributeData = this.getAttributeData(program, gl);\n this.uniformData = this.getUniformData(program, gl);\n\n gl.deleteProgram(program);\n }\n else\n {\n this.uniformData = {};\n this.attributeData = {};\n }\n};\n\n/**\n * returns the attribute data from the program\n * @private\n *\n * @param {WebGLProgram} [program] - the WebGL program\n * @param {WebGLRenderingContext} [gl] - the WebGL context\n *\n * @returns {object} the attribute data for this program\n */\nProgram.prototype.getAttributeData = function getAttributeData (program, gl)\n{\n var attributes = {};\n var attributesArray = [];\n\n var totalAttributes = gl.getProgramParameter(program, gl.ACTIVE_ATTRIBUTES);\n\n for (var i = 0; i < totalAttributes; i++)\n {\n var attribData = gl.getActiveAttrib(program, i);\n var type = mapType(gl, attribData.type);\n\n /*eslint-disable */\n var data = {\n type: type,\n name: attribData.name,\n size: mapSize(type),\n location: 0,\n };\n /* eslint-enable */\n\n attributes[attribData.name] = data;\n attributesArray.push(data);\n }\n\n attributesArray.sort(function (a, b) { return (a.name > b.name) ? 1 : -1; }); // eslint-disable-line no-confusing-arrow\n\n for (var i$1 = 0; i$1 < attributesArray.length; i$1++)\n {\n attributesArray[i$1].location = i$1;\n }\n\n return attributes;\n};\n\n/**\n * returns the uniform data from the program\n * @private\n *\n * @param {webGL-program} [program] - the webgl program\n * @param {context} [gl] - the WebGL context\n *\n * @returns {object} the uniform data for this program\n */\nProgram.prototype.getUniformData = function getUniformData (program, gl)\n{\n var uniforms = {};\n\n var totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS);\n\n // TODO expose this as a prop?\n // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$');\n // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$');\n\n for (var i = 0; i < totalUniforms; i++)\n {\n var uniformData = gl.getActiveUniform(program, i);\n var name = uniformData.name.replace(/\\[.*?\\]/, '');\n\n var isArray = uniformData.name.match(/\\[.*?\\]/, '');\n var type = mapType(gl, uniformData.type);\n\n /*eslint-disable */\n uniforms[name] = {\n type: type,\n size: uniformData.size,\n isArray:isArray,\n value: defaultValue(type, uniformData.size),\n };\n /* eslint-enable */\n }\n\n return uniforms;\n};\n\n/**\n * The default vertex shader source\n *\n * @static\n * @constant\n * @member {string}\n */\nstaticAccessors.defaultVertexSrc.get = function ()\n{\n return defaultVertex;\n};\n\n/**\n * The default fragment shader source\n *\n * @static\n * @constant\n * @member {string}\n */\nstaticAccessors.defaultFragmentSrc.get = function ()\n{\n return defaultFragment;\n};\n\n/**\n * A short hand function to create a program based of a vertex and fragment shader\n * this method will also check to see if there is a cached program.\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones.\n *\n * @returns {PIXI.Program} an shiny new Pixi shader!\n */\nProgram.from = function from (vertexSrc, fragmentSrc, name)\n{\n var key = vertexSrc + fragmentSrc;\n\n var program = ProgramCache[key];\n\n if (!program)\n {\n ProgramCache[key] = program = new Program(vertexSrc, fragmentSrc, name);\n }\n\n return program;\n};\n\nObject.defineProperties( Program, staticAccessors );\n\n/**\n * A helper class for shaders\n *\n * @class\n * @memberof PIXI\n */\nvar Shader = function Shader(program, uniforms)\n{\n /**\n * Program that the shader uses\n *\n * @member {PIXI.Program}\n */\n this.program = program;\n\n // lets see whats been passed in\n // uniforms should be converted to a uniform group\n if (uniforms)\n {\n if (uniforms instanceof UniformGroup)\n {\n this.uniformGroup = uniforms;\n }\n else\n {\n this.uniformGroup = new UniformGroup(uniforms);\n }\n }\n else\n {\n this.uniformGroup = new UniformGroup({});\n }\n\n // time to build some getters and setters!\n // I guess down the line this could sort of generate an instruction list rather than use dirty ids?\n // does the trick for now though!\n for (var i in program.uniformData)\n {\n if (this.uniformGroup.uniforms[i] instanceof Array)\n {\n this.uniformGroup.uniforms[i] = new Float32Array(this.uniformGroup.uniforms[i]);\n }\n }\n};\n\nvar prototypeAccessors$2 = { uniforms: { configurable: true } };\n\n// TODO move to shader system..\nShader.prototype.checkUniformExists = function checkUniformExists (name, group)\n{\n if (group.uniforms[name])\n {\n return true;\n }\n\n for (var i in group.uniforms)\n {\n var uniform = group.uniforms[i];\n\n if (uniform.group)\n {\n if (this.checkUniformExists(name, uniform))\n {\n return true;\n }\n }\n }\n\n return false;\n};\n\nShader.prototype.destroy = function destroy ()\n{\n // usage count on programs?\n // remove if not used!\n this.uniformGroup = null;\n};\n\n/**\n * Shader uniform values, shortcut for `uniformGroup.uniforms`\n * @readonly\n * @member {object}\n */\nprototypeAccessors$2.uniforms.get = function ()\n{\n return this.uniformGroup.uniforms;\n};\n\n/**\n * A short hand function to create a shader based of a vertex and fragment shader\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones.\n *\n * @returns {PIXI.Shader} an shiny new Pixi shader!\n */\nShader.from = function from (vertexSrc, fragmentSrc, uniforms)\n{\n var program = Program.from(vertexSrc, fragmentSrc);\n\n return new Shader(program, uniforms);\n};\n\nObject.defineProperties( Shader.prototype, prototypeAccessors$2 );\n\n/* eslint-disable max-len */\n\nvar BLEND = 0;\nvar OFFSET = 1;\nvar CULLING = 2;\nvar DEPTH_TEST = 3;\nvar WINDING = 4;\n\n/**\n * This is a WebGL state, and is is passed The WebGL StateManager.\n *\n * Each mesh rendered may require WebGL to be in a different state.\n * For example you may want different blend mode or to enable polygon offsets\n *\n * @class\n * @memberof PIXI\n */\nvar State = function State()\n{\n this.data = 0;\n\n this.blendMode = BLEND_MODES.NORMAL;\n this.polygonOffset = 0;\n\n this.blend = true;\n // this.depthTest = true;\n};\n\nvar prototypeAccessors$3 = { blend: { configurable: true },offsets: { configurable: true },culling: { configurable: true },depthTest: { configurable: true },clockwiseFrontFace: { configurable: true },blendMode: { configurable: true },polygonOffset: { configurable: true } };\n\n/**\n * Activates blending of the computed fragment color values\n *\n * @member {boolean}\n */\nprototypeAccessors$3.blend.get = function ()\n{\n return !!(this.data & (1 << BLEND));\n};\n\nprototypeAccessors$3.blend.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << BLEND)) !== value)\n {\n this.data ^= (1 << BLEND);\n }\n};\n\n/**\n * Activates adding an offset to depth values of polygon's fragments\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.offsets.get = function ()\n{\n return !!(this.data & (1 << OFFSET));\n};\n\nprototypeAccessors$3.offsets.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << OFFSET)) !== value)\n {\n this.data ^= (1 << OFFSET);\n }\n};\n\n/**\n * Activates culling of polygons.\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.culling.get = function ()\n{\n return !!(this.data & (1 << CULLING));\n};\n\nprototypeAccessors$3.culling.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << CULLING)) !== value)\n {\n this.data ^= (1 << CULLING);\n }\n};\n\n/**\n * Activates depth comparisons and updates to the depth buffer.\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.depthTest.get = function ()\n{\n return !!(this.data & (1 << DEPTH_TEST));\n};\n\nprototypeAccessors$3.depthTest.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << DEPTH_TEST)) !== value)\n {\n this.data ^= (1 << DEPTH_TEST);\n }\n};\n\n/**\n * Specifies whether or not front or back-facing polygons can be culled.\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.clockwiseFrontFace.get = function ()\n{\n return !!(this.data & (1 << WINDING));\n};\n\nprototypeAccessors$3.clockwiseFrontFace.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << WINDING)) !== value)\n {\n this.data ^= (1 << WINDING);\n }\n};\n\n/**\n * The blend mode to be applied when this state is set. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n * Setting this mode to anything other than NO_BLEND will automatically switch blending on.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\nprototypeAccessors$3.blendMode.get = function ()\n{\n return this._blendMode;\n};\n\nprototypeAccessors$3.blendMode.set = function (value) // eslint-disable-line require-jsdoc\n{\n this.blend = (value !== BLEND_MODES.NONE);\n this._blendMode = value;\n};\n\n/**\n * The polygon offset. Setting this property to anything other than 0 will automatically enable polygon offset fill.\n *\n * @member {number}\n * @default 0\n */\nprototypeAccessors$3.polygonOffset.get = function ()\n{\n return this._polygonOffset;\n};\n\nprototypeAccessors$3.polygonOffset.set = function (value) // eslint-disable-line require-jsdoc\n{\n this.offsets = !!value;\n this._polygonOffset = value;\n};\n\nState.for2d = function for2d ()\n{\n var state = new State();\n\n state.depthTest = false;\n state.blend = true;\n\n return state;\n};\n\nObject.defineProperties( State.prototype, prototypeAccessors$3 );\n\nvar defaultVertex$1 = \"attribute vec2 aVertexPosition;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nuniform vec4 inputSize;\\nuniform vec4 outputFrame;\\n\\nvec4 filterVertexPosition( void )\\n{\\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\\n\\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\\n}\\n\\nvec2 filterTextureCoord( void )\\n{\\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\\n}\\n\\nvoid main(void)\\n{\\n gl_Position = filterVertexPosition();\\n vTextureCoord = filterTextureCoord();\\n}\\n\";\n\nvar defaultFragment$1 = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n gl_FragColor = texture2D(uSampler, vTextureCoord);\\n}\\n\";\n\n/**\n * Filter is a special type of WebGL shader that is applied to the screen.\n *\n * {@link http://pixijs.io/examples/#/filters/blur-filter.js Example} of the\n * {@link PIXI.filters.BlurFilter BlurFilter}.\n *\n * ### Usage\n * Filters can be applied to any DisplayObject or Container.\n * PixiJS' `FilterSystem` renders the container into temporary Framebuffer,\n * then filter renders it to the screen.\n * Multiple filters can be added to the `filters` array property and stacked on each other.\n *\n * ```\n * const filter = new PIXI.Filter(myShaderVert, myShaderFrag, { myUniform: 0.5 });\n * const container = new PIXI.Container();\n * container.filters = [filter];\n * ```\n *\n * ### Previous Version Differences\n *\n * In PixiJS **v3**, a filter was always applied to _whole screen_.\n *\n * In PixiJS **v4**, a filter can be applied _only part of the screen_.\n * Developers had to create a set of uniforms to deal with coordinates.\n *\n * In PixiJS **v5** combines _both approaches_.\n * Developers can use normal coordinates of v3 and then allow filter to use partial Framebuffers,\n * bringing those extra uniforms into account.\n *\n * Also be aware that we have changed default vertex shader, please consult\n * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}.\n *\n * ### Built-in Uniforms\n *\n * PixiJS viewport uses screen (CSS) coordinates, `(0, 0, renderer.screen.width, renderer.screen.height)`,\n * and `projectionMatrix` uniform maps it to the gl viewport.\n *\n * **uSampler**\n *\n * The most important uniform is the input texture that container was rendered into.\n * _Important note: as with all Framebuffers in PixiJS, both input and output are\n * premultiplied by alpha._\n *\n * By default, input normalized coordinates are passed to fragment shader with `vTextureCoord`.\n * Use it to sample the input.\n *\n * ```\n * const fragment = `\n * varying vec2 vTextureCoord;\n * uniform sampler2D uSampler;\n * void main(void)\n * {\n * gl_FragColor = texture2D(uSampler, vTextureCoord);\n * }\n * `;\n *\n * const myFilter = new PIXI.Filter(null, fragment);\n * ```\n *\n * This filter is just one uniform less than {@link PIXI.filters.AlphaFilter AlphaFilter}.\n *\n * **outputFrame**\n *\n * The `outputFrame` holds the rectangle where filter is applied in screen (CSS) coordinates.\n * It's the same as `renderer.screen` for a fullscreen filter.\n * Only a part of `outputFrame.zw` size of temporary Framebuffer is used,\n * `(0, 0, outputFrame.width, outputFrame.height)`,\n *\n * Filters uses this quad to normalized (0-1) space, its passed into `aVertexPosition` attribute.\n * To calculate vertex position in screen space using normalized (0-1) space:\n *\n * ```\n * vec4 filterVertexPosition( void )\n * {\n * vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n * return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n * }\n * ```\n *\n * **inputSize**\n *\n * Temporary framebuffer is different, it can be either the size of screen, either power-of-two.\n * The `inputSize.xy` are size of temporary framebuffer that holds input.\n * The `inputSize.zw` is inverted, it's a shortcut to evade division inside the shader.\n *\n * Set `inputSize.xy = outputFrame.zw` for a fullscreen filter.\n *\n * To calculate input normalized coordinate, you have to map it to filter normalized space.\n * Multiply by `outputFrame.zw` to get input coordinate.\n * Divide by `inputSize.xy` to get input normalized coordinate.\n *\n * ```\n * vec2 filterTextureCoord( void )\n * {\n * return aVertexPosition * (outputFrame.zw * inputSize.zw); // same as /inputSize.xy\n * }\n * ```\n * **resolution**\n *\n * The `resolution` is the ratio of screen (CSS) pixels to real pixels.\n *\n * **inputPixel**\n *\n * `inputPixel.xy` is the size of framebuffer in real pixels, same as `inputSize.xy * resolution`\n * `inputPixel.zw` is inverted `inputPixel.xy`.\n *\n * It's handy for filters that use neighbour pixels, like {@link PIXI.filters.FXAAFilter FXAAFilter}.\n *\n * **inputClamp**\n *\n * If you try to get info from outside of used part of Framebuffer - you'll get undefined behaviour.\n * For displacements, coordinates has to be clamped.\n *\n * The `inputClamp.xy` is left-top pixel center, you may ignore it, because we use left-top part of Framebuffer\n * `inputClamp.zw` is bottom-right pixel center.\n *\n * ```\n * vec4 color = texture2D(uSampler, clamp(modifigedTextureCoord, inputClamp.xy, inputClamp.zw))\n * ```\n * OR\n * ```\n * vec4 color = texture2D(uSampler, min(modifigedTextureCoord, inputClamp.zw))\n * ```\n *\n * ### Additional Information\n *\n * Complete documentation on Filter usage is located in the\n * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}.\n *\n * Since PixiJS only had a handful of built-in filters, additional filters can be downloaded\n * {@link https://github.com/pixijs/pixi-filters here} from the PixiJS Filters repository.\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.Shader\n */\nvar Filter = /*@__PURE__*/(function (Shader) {\n function Filter(vertexSrc, fragmentSrc, uniforms)\n {\n var program = Program.from(vertexSrc || Filter.defaultVertexSrc,\n fragmentSrc || Filter.defaultFragmentSrc);\n\n Shader.call(this, program, uniforms);\n\n /**\n * The padding of the filter. Some filters require extra space to breath such as a blur.\n * Increasing this will add extra width and height to the bounds of the object that the\n * filter is applied to.\n *\n * @member {number}\n */\n this.padding = 0;\n\n /**\n * The resolution of the filter. Setting this to be lower will lower the quality but\n * increase the performance of the filter.\n *\n * @member {number}\n */\n this.resolution = settings.FILTER_RESOLUTION;\n\n /**\n * If enabled is true the filter is applied, if false it will not.\n *\n * @member {boolean}\n */\n this.enabled = true;\n\n /**\n * If enabled, PixiJS will fit the filter area into boundaries for better performance.\n * Switch it off if it does not work for specific shader.\n *\n * @member {boolean}\n */\n this.autoFit = true;\n\n /**\n * Legacy filters use position and uvs from attributes\n * @member {boolean}\n * @readonly\n */\n this.legacy = !!this.program.attributeData.aTextureCoord;\n\n /**\n * The WebGL state the filter requires to render\n * @member {PIXI.State}\n */\n this.state = new State();\n }\n\n if ( Shader ) Filter.__proto__ = Shader;\n Filter.prototype = Object.create( Shader && Shader.prototype );\n Filter.prototype.constructor = Filter;\n\n var prototypeAccessors = { blendMode: { configurable: true } };\n var staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } };\n\n /**\n * Applies the filter\n *\n * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it\n * @param {object} [currentState] - It's current state of filter.\n * There are some useful properties in the currentState :\n * target, filters, sourceFrame, destinationFrame, renderTarget, resolution\n */\n Filter.prototype.apply = function apply (filterManager, input, output, clear, currentState)\n {\n // do as you please!\n\n filterManager.applyFilter(this, input, output, clear, currentState);\n\n // or just do a regular render..\n };\n\n /**\n * Sets the blendmode of the filter\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n */\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n prototypeAccessors.blendMode.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.state.blendMode = value;\n };\n\n /**\n * The default vertex shader source\n *\n * @static\n * @type {string}\n * @constant\n */\n staticAccessors.defaultVertexSrc.get = function ()\n {\n return defaultVertex$1;\n };\n\n /**\n * The default fragment shader source\n *\n * @static\n * @type {string}\n * @constant\n */\n staticAccessors.defaultFragmentSrc.get = function ()\n {\n return defaultFragment$1;\n };\n\n Object.defineProperties( Filter.prototype, prototypeAccessors );\n Object.defineProperties( Filter, staticAccessors );\n\n return Filter;\n}(Shader));\n\n/**\n * Used for caching shader IDs\n *\n * @static\n * @type {object}\n * @protected\n */\nFilter.SOURCE_KEY_MAP = {};\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 otherMatrix;\\n\\nvarying vec2 vMaskCoord;\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vMaskCoord;\\nvarying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform sampler2D mask;\\nuniform float alpha;\\nuniform float npmAlpha;\\nuniform vec4 maskClamp;\\n\\nvoid main(void)\\n{\\n float clip = step(3.5,\\n step(maskClamp.x, vMaskCoord.x) +\\n step(maskClamp.y, vMaskCoord.y) +\\n step(vMaskCoord.x, maskClamp.z) +\\n step(vMaskCoord.y, maskClamp.w));\\n\\n vec4 original = texture2D(uSampler, vTextureCoord);\\n vec4 masky = texture2D(mask, vMaskCoord);\\n float alphaMul = 1.0 - npmAlpha * (1.0 - masky.a);\\n\\n original *= (alphaMul * masky.r * alpha * clip);\\n\\n gl_FragColor = original;\\n}\\n\";\n\nvar tempMat = new Matrix();\n\n/**\n * Class controls uv mapping from Texture normal space to BaseTexture normal space.\n *\n * Takes `trim` and `rotate` into account. May contain clamp settings for Meshes and TilingSprite.\n *\n * Can be used in Texture `uvMatrix` field, or separately, you can use different clamp settings on the same texture.\n * If you want to add support for texture region of certain feature or filter, that's what you're looking for.\n *\n * Takes track of Texture changes through `_lastTextureID` private field.\n * Use `update()` method call to track it from outside.\n *\n * @see PIXI.Texture\n * @see PIXI.Mesh\n * @see PIXI.TilingSprite\n * @class\n * @memberof PIXI\n */\nvar TextureMatrix = function TextureMatrix(texture, clampMargin)\n{\n this._texture = texture;\n\n /**\n * Matrix operation that converts texture region coords to texture coords\n * @member {PIXI.Matrix}\n * @readonly\n */\n this.mapCoord = new Matrix();\n\n /**\n * Clamp region for normalized coords, left-top pixel center in xy , bottom-right in zw.\n * Calculated based on clampOffset.\n * @member {Float32Array}\n * @readonly\n */\n this.uClampFrame = new Float32Array(4);\n\n /**\n * Normalized clamp offset.\n * Calculated based on clampOffset.\n * @member {Float32Array}\n * @readonly\n */\n this.uClampOffset = new Float32Array(2);\n\n /**\n * Tracks Texture frame changes\n * @member {number}\n * @protected\n */\n this._updateID = -1;\n\n /**\n * Changes frame clamping\n * Works with TilingSprite and Mesh\n * Change to 1.5 if you texture has repeated right and bottom lines, that leads to smoother borders\n *\n * @default 0\n * @member {number}\n */\n this.clampOffset = 0;\n\n /**\n * Changes frame clamping\n * Works with TilingSprite and Mesh\n * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas\n *\n * @default 0.5\n * @member {number}\n */\n this.clampMargin = (typeof clampMargin === 'undefined') ? 0.5 : clampMargin;\n\n /**\n * If texture size is the same as baseTexture\n * @member {boolean}\n * @default false\n * @readonly\n */\n this.isSimple = false;\n};\n\nvar prototypeAccessors$4 = { texture: { configurable: true } };\n\n/**\n * texture property\n * @member {PIXI.Texture}\n */\nprototypeAccessors$4.texture.get = function ()\n{\n return this._texture;\n};\n\nprototypeAccessors$4.texture.set = function (value) // eslint-disable-line require-jsdoc\n{\n this._texture = value;\n this._updateID = -1;\n};\n\n/**\n * Multiplies uvs array to transform\n * @param {Float32Array} uvs mesh uvs\n * @param {Float32Array} [out=uvs] output\n * @returns {Float32Array} output\n */\nTextureMatrix.prototype.multiplyUvs = function multiplyUvs (uvs, out)\n{\n if (out === undefined)\n {\n out = uvs;\n }\n\n var mat = this.mapCoord;\n\n for (var i = 0; i < uvs.length; i += 2)\n {\n var x = uvs[i];\n var y = uvs[i + 1];\n\n out[i] = (x * mat.a) + (y * mat.c) + mat.tx;\n out[i + 1] = (x * mat.b) + (y * mat.d) + mat.ty;\n }\n\n return out;\n};\n\n/**\n * updates matrices if texture was changed\n * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case\n * @returns {boolean} whether or not it was updated\n */\nTextureMatrix.prototype.update = function update (forceUpdate)\n{\n var tex = this._texture;\n\n if (!tex || !tex.valid)\n {\n return false;\n }\n\n if (!forceUpdate\n && this._updateID === tex._updateID)\n {\n return false;\n }\n\n this._updateID = tex._updateID;\n\n var uvs = tex._uvs;\n\n this.mapCoord.set(uvs.x1 - uvs.x0, uvs.y1 - uvs.y0, uvs.x3 - uvs.x0, uvs.y3 - uvs.y0, uvs.x0, uvs.y0);\n\n var orig = tex.orig;\n var trim = tex.trim;\n\n if (trim)\n {\n tempMat.set(orig.width / trim.width, 0, 0, orig.height / trim.height,\n -trim.x / trim.width, -trim.y / trim.height);\n this.mapCoord.append(tempMat);\n }\n\n var texBase = tex.baseTexture;\n var frame = this.uClampFrame;\n var margin = this.clampMargin / texBase.resolution;\n var offset = this.clampOffset;\n\n frame[0] = (tex._frame.x + margin + offset) / texBase.width;\n frame[1] = (tex._frame.y + margin + offset) / texBase.height;\n frame[2] = (tex._frame.x + tex._frame.width - margin + offset) / texBase.width;\n frame[3] = (tex._frame.y + tex._frame.height - margin + offset) / texBase.height;\n this.uClampOffset[0] = offset / texBase.realWidth;\n this.uClampOffset[1] = offset / texBase.realHeight;\n\n this.isSimple = tex._frame.width === texBase.width\n && tex._frame.height === texBase.height\n && tex.rotate === 0;\n\n return true;\n};\n\nObject.defineProperties( TextureMatrix.prototype, prototypeAccessors$4 );\n\n/**\n * This handles a Sprite acting as a mask, as opposed to a Graphic.\n *\n * WebGL only.\n *\n * @class\n * @extends PIXI.Filter\n * @memberof PIXI\n */\nvar SpriteMaskFilter = /*@__PURE__*/(function (Filter) {\n function SpriteMaskFilter(sprite)\n {\n var maskMatrix = new Matrix();\n\n Filter.call(this, vertex, fragment);\n\n sprite.renderable = false;\n\n /**\n * Sprite mask\n * @member {PIXI.Sprite}\n */\n this.maskSprite = sprite;\n\n /**\n * Mask matrix\n * @member {PIXI.Matrix}\n */\n this.maskMatrix = maskMatrix;\n }\n\n if ( Filter ) SpriteMaskFilter.__proto__ = Filter;\n SpriteMaskFilter.prototype = Object.create( Filter && Filter.prototype );\n SpriteMaskFilter.prototype.constructor = SpriteMaskFilter;\n\n /**\n * Applies the filter\n *\n * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it.\n */\n SpriteMaskFilter.prototype.apply = function apply (filterManager, input, output, clear)\n {\n var maskSprite = this.maskSprite;\n var tex = this.maskSprite.texture;\n\n if (!tex.valid)\n {\n return;\n }\n if (!tex.transform)\n {\n // margin = 0.0, let it bleed a bit, shader code becomes easier\n // assuming that atlas textures were made with 1-pixel padding\n tex.transform = new TextureMatrix(tex, 0.0);\n }\n tex.transform.update();\n\n this.uniforms.npmAlpha = tex.baseTexture.premultiplyAlpha ? 0.0 : 1.0;\n this.uniforms.mask = tex;\n // get _normalized sprite texture coords_ and convert them to _normalized atlas texture coords_ with `prepend`\n this.uniforms.otherMatrix = filterManager.calculateSpriteMatrix(this.maskMatrix, maskSprite)\n .prepend(tex.transform.mapCoord);\n this.uniforms.alpha = maskSprite.worldAlpha;\n this.uniforms.maskClamp = tex.transform.uClampFrame;\n\n filterManager.applyFilter(this, input, output, clear);\n };\n\n return SpriteMaskFilter;\n}(Filter));\n\n/**\n * System plugin to the renderer to manage masks.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar MaskSystem = /*@__PURE__*/(function (System) {\n function MaskSystem(renderer)\n {\n System.call(this, renderer);\n\n // TODO - we don't need both!\n /**\n * `true` if current pushed masked is scissor\n * @member {boolean}\n * @readonly\n */\n this.scissor = false;\n\n /**\n * Mask data\n * @member {PIXI.Graphics}\n * @readonly\n */\n this.scissorData = null;\n\n /**\n * Target to mask\n * @member {PIXI.DisplayObject}\n * @readonly\n */\n this.scissorRenderTarget = null;\n\n /**\n * Enable scissor\n * @member {boolean}\n * @readonly\n */\n this.enableScissor = false;\n\n /**\n * Pool of used sprite mask filters\n * @member {PIXI.SpriteMaskFilter[]}\n * @readonly\n */\n this.alphaMaskPool = [];\n\n /**\n * Current index of alpha mask pool\n * @member {number}\n * @default 0\n * @readonly\n */\n this.alphaMaskIndex = 0;\n }\n\n if ( System ) MaskSystem.__proto__ = System;\n MaskSystem.prototype = Object.create( System && System.prototype );\n MaskSystem.prototype.constructor = MaskSystem;\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.DisplayObject} target - Display Object to push the mask to\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.push = function push (target, maskData)\n {\n // TODO the root check means scissor rect will not\n // be used on render textures more info here:\n // https://github.com/pixijs/pixi.js/pull/3545\n\n if (maskData.isSprite)\n {\n this.pushSpriteMask(target, maskData);\n }\n else if (this.enableScissor\n && !this.scissor\n && this.renderer._activeRenderTarget.root\n && !this.renderer.stencil.stencilMaskStack.length\n && maskData.isFastRect())\n {\n var matrix = maskData.worldTransform;\n\n var rot = Math.atan2(matrix.b, matrix.a);\n\n // use the nearest degree!\n rot = Math.round(rot * (180 / Math.PI));\n\n if (rot % 90)\n {\n this.pushStencilMask(maskData);\n }\n else\n {\n this.pushScissorMask(target, maskData);\n }\n }\n else\n {\n this.pushStencilMask(maskData);\n }\n };\n\n /**\n * Removes the last mask from the mask stack and doesn't return it.\n *\n * @param {PIXI.DisplayObject} target - Display Object to pop the mask from\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pop = function pop (target, maskData)\n {\n if (maskData.isSprite)\n {\n this.popSpriteMask(target, maskData);\n }\n else if (this.enableScissor && !this.renderer.stencil.stencilMaskStack.length)\n {\n this.popScissorMask(target, maskData);\n }\n else\n {\n this.popStencilMask(target, maskData);\n }\n };\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.RenderTexture} target - Display Object to push the sprite mask to\n * @param {PIXI.Sprite} maskData - Sprite to be used as the mask\n */\n MaskSystem.prototype.pushSpriteMask = function pushSpriteMask (target, maskData)\n {\n var alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex];\n\n if (!alphaMaskFilter)\n {\n alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex] = [new SpriteMaskFilter(maskData)];\n }\n\n alphaMaskFilter[0].resolution = this.renderer.resolution;\n alphaMaskFilter[0].maskSprite = maskData;\n\n var stashFilterArea = target.filterArea;\n\n target.filterArea = maskData.getBounds(true);\n this.renderer.filter.push(target, alphaMaskFilter);\n target.filterArea = stashFilterArea;\n\n this.alphaMaskIndex++;\n };\n\n /**\n * Removes the last filter from the filter stack and doesn't return it.\n *\n */\n MaskSystem.prototype.popSpriteMask = function popSpriteMask ()\n {\n this.renderer.filter.pop();\n this.alphaMaskIndex--;\n };\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pushStencilMask = function pushStencilMask (maskData)\n {\n this.renderer.batch.flush();\n this.renderer.stencil.pushStencil(maskData);\n };\n\n /**\n * Removes the last filter from the filter stack and doesn't return it.\n *\n */\n MaskSystem.prototype.popStencilMask = function popStencilMask ()\n {\n // this.renderer.currentRenderer.stop();\n this.renderer.stencil.popStencil();\n };\n\n /**\n *\n * @param {PIXI.DisplayObject} target - Display Object to push the mask to\n * @param {PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pushScissorMask = function pushScissorMask (target, maskData)\n {\n maskData.renderable = true;\n\n var renderTarget = this.renderer._activeRenderTarget;\n\n var bounds = maskData.getBounds();\n\n bounds.fit(renderTarget.size);\n maskData.renderable = false;\n\n this.renderer.gl.enable(this.renderer.gl.SCISSOR_TEST);\n\n var resolution = this.renderer.resolution;\n\n this.renderer.gl.scissor(\n bounds.x * resolution,\n (renderTarget.root ? renderTarget.size.height - bounds.y - bounds.height : bounds.y) * resolution,\n bounds.width * resolution,\n bounds.height * resolution\n );\n\n this.scissorRenderTarget = renderTarget;\n this.scissorData = maskData;\n this.scissor = true;\n };\n\n /**\n * Pop scissor mask\n *\n */\n MaskSystem.prototype.popScissorMask = function popScissorMask ()\n {\n this.scissorRenderTarget = null;\n this.scissorData = null;\n this.scissor = false;\n\n // must be scissor!\n var ref = this.renderer;\n var gl = ref.gl;\n\n gl.disable(gl.SCISSOR_TEST);\n };\n\n return MaskSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage stencils (used for masks).\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar StencilSystem = /*@__PURE__*/(function (System) {\n function StencilSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * The mask stack\n * @member {PIXI.Graphics[]}\n */\n this.stencilMaskStack = [];\n }\n\n if ( System ) StencilSystem.__proto__ = System;\n StencilSystem.prototype = Object.create( System && System.prototype );\n StencilSystem.prototype.constructor = StencilSystem;\n\n /**\n * Changes the mask stack that is used by this System.\n *\n * @param {PIXI.Graphics[]} stencilMaskStack - The mask stack\n */\n StencilSystem.prototype.setMaskStack = function setMaskStack (stencilMaskStack)\n {\n var gl = this.renderer.gl;\n var curStackLen = this.stencilMaskStack.length;\n\n this.stencilMaskStack = stencilMaskStack;\n if (stencilMaskStack.length !== curStackLen)\n {\n if (stencilMaskStack.length === 0)\n {\n gl.disable(gl.STENCIL_TEST);\n }\n else\n {\n gl.enable(gl.STENCIL_TEST);\n this._useCurrent();\n }\n }\n };\n\n /**\n * Applies the Mask and adds it to the current stencil stack. @alvin\n *\n * @param {PIXI.Graphics} graphics - The mask\n */\n StencilSystem.prototype.pushStencil = function pushStencil (graphics)\n {\n var gl = this.renderer.gl;\n var prevMaskCount = this.stencilMaskStack.length;\n\n if (prevMaskCount === 0)\n {\n // force use stencil texture in current framebuffer\n this.renderer.framebuffer.forceStencil();\n gl.enable(gl.STENCIL_TEST);\n }\n\n this.stencilMaskStack.push(graphics);\n\n // Increment the reference stencil value where the new mask overlaps with the old ones.\n gl.colorMask(false, false, false, false);\n gl.stencilFunc(gl.EQUAL, prevMaskCount, this._getBitwiseMask());\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.INCR);\n\n graphics.renderable = true;\n graphics.render(this.renderer);\n this.renderer.batch.flush();\n graphics.renderable = false;\n\n this._useCurrent();\n };\n\n /**\n * Removes the last mask from the stencil stack. @alvin\n */\n StencilSystem.prototype.popStencil = function popStencil ()\n {\n var gl = this.renderer.gl;\n var graphics = this.stencilMaskStack.pop();\n\n if (this.stencilMaskStack.length === 0)\n {\n // the stack is empty!\n gl.disable(gl.STENCIL_TEST);\n gl.clear(gl.STENCIL_BUFFER_BIT);\n gl.clearStencil(0);\n }\n else\n {\n // Decrement the reference stencil value where the popped mask overlaps with the other ones\n gl.colorMask(false, false, false, false);\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.DECR);\n\n graphics.renderable = true;\n graphics.render(this.renderer);\n this.renderer.batch.flush();\n graphics.renderable = false;\n\n this._useCurrent();\n }\n };\n\n /**\n * Setup renderer to use the current stencil data.\n * @private\n */\n StencilSystem.prototype._useCurrent = function _useCurrent ()\n {\n var gl = this.renderer.gl;\n\n gl.colorMask(true, true, true, true);\n gl.stencilFunc(gl.EQUAL, this.stencilMaskStack.length, this._getBitwiseMask());\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.KEEP);\n };\n\n /**\n * Fill 1s equal to the number of acitve stencil masks.\n * @private\n * @return {number} The bitwise mask.\n */\n StencilSystem.prototype._getBitwiseMask = function _getBitwiseMask ()\n {\n return (1 << this.stencilMaskStack.length) - 1;\n };\n\n /**\n * Destroys the mask stack.\n *\n */\n StencilSystem.prototype.destroy = function destroy ()\n {\n System.prototype.destroy.call(this, this);\n\n this.stencilMaskStack = null;\n };\n\n return StencilSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage the projection matrix.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\n\nvar ProjectionSystem = /*@__PURE__*/(function (System) {\n function ProjectionSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.destinationFrame = null;\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.sourceFrame = null;\n\n /**\n * Default destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.defaultFrame = null;\n\n /**\n * Project matrix\n * @member {PIXI.Matrix}\n * @readonly\n */\n this.projectionMatrix = new Matrix();\n\n /**\n * A transform that will be appended to the projection matrix\n * if null, nothing will be applied\n * @member {PIXI.Matrix}\n */\n this.transform = null;\n }\n\n if ( System ) ProjectionSystem.__proto__ = System;\n ProjectionSystem.prototype = Object.create( System && System.prototype );\n ProjectionSystem.prototype.constructor = ProjectionSystem;\n\n /**\n * Updates the projection matrix based on a projection frame (which is a rectangle)\n *\n * @param {PIXI.Rectangle} destinationFrame - The destination frame.\n * @param {PIXI.Rectangle} sourceFrame - The source frame.\n * @param {Number} resolution - Resolution\n * @param {boolean} root - If is root\n */\n ProjectionSystem.prototype.update = function update (destinationFrame, sourceFrame, resolution, root)\n {\n this.destinationFrame = destinationFrame || this.destinationFrame || this.defaultFrame;\n this.sourceFrame = sourceFrame || this.sourceFrame || destinationFrame;\n\n this.calculateProjection(this.destinationFrame, this.sourceFrame, resolution, root);\n\n if (this.transform)\n {\n this.projectionMatrix.append(this.transform);\n }\n\n var renderer = this.renderer;\n\n renderer.globalUniforms.uniforms.projectionMatrix = this.projectionMatrix;\n renderer.globalUniforms.update();\n\n // this will work for now\n // but would be sweet to stick and even on the global uniforms..\n if (renderer.shader.shader)\n {\n renderer.shader.syncUniformGroup(renderer.shader.shader.uniforms.globals);\n }\n };\n\n /**\n * Updates the projection matrix based on a projection frame (which is a rectangle)\n *\n * @param {PIXI.Rectangle} destinationFrame - The destination frame.\n * @param {PIXI.Rectangle} sourceFrame - The source frame.\n * @param {Number} resolution - Resolution\n * @param {boolean} root - If is root\n */\n ProjectionSystem.prototype.calculateProjection = function calculateProjection (destinationFrame, sourceFrame, resolution, root)\n {\n var pm = this.projectionMatrix;\n\n // I don't think we will need this line..\n // pm.identity();\n\n if (!root)\n {\n pm.a = (1 / destinationFrame.width * 2) * resolution;\n pm.d = (1 / destinationFrame.height * 2) * resolution;\n\n pm.tx = -1 - (sourceFrame.x * pm.a);\n pm.ty = -1 - (sourceFrame.y * pm.d);\n }\n else\n {\n pm.a = (1 / destinationFrame.width * 2) * resolution;\n pm.d = (-1 / destinationFrame.height * 2) * resolution;\n\n pm.tx = -1 - (sourceFrame.x * pm.a);\n pm.ty = 1 - (sourceFrame.y * pm.d);\n }\n };\n\n /**\n * Sets the transform of the active render target to the given matrix\n *\n * @param {PIXI.Matrix} matrix - The transformation matrix\n */\n ProjectionSystem.prototype.setTransform = function setTransform ()// matrix)\n {\n // this._activeRenderTarget.transform = matrix;\n };\n\n return ProjectionSystem;\n}(System));\n\nvar tempRect = new Rectangle();\n\n/**\n * System plugin to the renderer to manage render textures.\n *\n * Should be added after FramebufferSystem\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\n\nvar RenderTextureSystem = /*@__PURE__*/(function (System) {\n function RenderTextureSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * The clear background color as rgba\n * @member {number[]}\n */\n this.clearColor = renderer._backgroundColorRgba;\n\n // TODO move this property somewhere else!\n /**\n * List of masks for the StencilSystem\n * @member {PIXI.Graphics[]}\n * @readonly\n */\n this.defaultMaskStack = [];\n\n // empty render texture?\n /**\n * Render texture\n * @member {PIXI.RenderTexture}\n * @readonly\n */\n this.current = null;\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.sourceFrame = new Rectangle();\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.destinationFrame = new Rectangle();\n }\n\n if ( System ) RenderTextureSystem.__proto__ = System;\n RenderTextureSystem.prototype = Object.create( System && System.prototype );\n RenderTextureSystem.prototype.constructor = RenderTextureSystem;\n\n /**\n * Bind the current render texture\n * @param {PIXI.RenderTexture} [renderTexture] - RenderTexture to bind, by default its `null`, the screen\n * @param {PIXI.Rectangle} [sourceFrame] - part of screen that is mapped to the renderTexture\n * @param {PIXI.Rectangle} [destinationFrame] - part of renderTexture, by default it has the same size as sourceFrame\n */\n RenderTextureSystem.prototype.bind = function bind (renderTexture, sourceFrame, destinationFrame)\n {\n if ( renderTexture === void 0 ) renderTexture = null;\n\n this.current = renderTexture;\n\n var renderer = this.renderer;\n\n var resolution;\n\n if (renderTexture)\n {\n var baseTexture = renderTexture.baseTexture;\n\n resolution = baseTexture.resolution;\n\n if (!destinationFrame)\n {\n tempRect.width = baseTexture.realWidth;\n tempRect.height = baseTexture.realHeight;\n\n destinationFrame = tempRect;\n }\n\n if (!sourceFrame)\n {\n sourceFrame = destinationFrame;\n }\n\n this.renderer.framebuffer.bind(baseTexture.framebuffer, destinationFrame);\n\n this.renderer.projection.update(destinationFrame, sourceFrame, resolution, false);\n this.renderer.stencil.setMaskStack(baseTexture.stencilMaskStack);\n }\n else\n {\n resolution = this.renderer.resolution;\n\n // TODO these validation checks happen deeper down..\n // thing they can be avoided..\n if (!destinationFrame)\n {\n tempRect.width = renderer.width;\n tempRect.height = renderer.height;\n\n destinationFrame = tempRect;\n }\n\n if (!sourceFrame)\n {\n sourceFrame = destinationFrame;\n }\n\n renderer.framebuffer.bind(null, destinationFrame);\n\n // TODO store this..\n this.renderer.projection.update(destinationFrame, sourceFrame, resolution, true);\n this.renderer.stencil.setMaskStack(this.defaultMaskStack);\n }\n\n this.sourceFrame.copyFrom(sourceFrame);\n\n this.destinationFrame.x = destinationFrame.x / resolution;\n this.destinationFrame.y = destinationFrame.y / resolution;\n\n this.destinationFrame.width = destinationFrame.width / resolution;\n this.destinationFrame.height = destinationFrame.height / resolution;\n\n if (sourceFrame === destinationFrame)\n {\n this.sourceFrame.copyFrom(this.destinationFrame);\n }\n };\n\n /**\n * Erases the render texture and fills the drawing area with a colour\n *\n * @param {number[]} [clearColor] - The color as rgba, default to use the renderer backgroundColor\n * @return {PIXI.Renderer} Returns itself.\n */\n RenderTextureSystem.prototype.clear = function clear (clearColor)\n {\n if (this.current)\n {\n clearColor = clearColor || this.current.baseTexture.clearColor;\n }\n else\n {\n clearColor = clearColor || this.clearColor;\n }\n\n this.renderer.framebuffer.clear(clearColor[0], clearColor[1], clearColor[2], clearColor[3]);\n };\n\n RenderTextureSystem.prototype.resize = function resize ()// screenWidth, screenHeight)\n {\n // resize the root only!\n this.bind(null);\n };\n\n /**\n * Resets renderTexture state\n */\n RenderTextureSystem.prototype.reset = function reset ()\n {\n this.bind(null);\n };\n\n return RenderTextureSystem;\n}(System));\n\n/**\n * Helper class to create a WebGL Program\n *\n * @class\n * @memberof PIXI\n */\nvar GLProgram = function GLProgram(program, uniformData)\n{\n /**\n * The shader program\n *\n * @member {WebGLProgram}\n */\n this.program = program;\n\n /**\n * holds the uniform data which contains uniform locations\n * and current uniform values used for caching and preventing unneeded GPU commands\n * @member {Object}\n */\n this.uniformData = uniformData;\n\n /**\n * uniformGroups holds the various upload functions for the shader. Each uniform group\n * and program have a unique upload function generated.\n * @member {Object}\n */\n this.uniformGroups = {};\n};\n\n/**\n * Destroys this program\n */\nGLProgram.prototype.destroy = function destroy ()\n{\n this.uniformData = null;\n this.uniformGroups = null;\n this.program = null;\n};\n\nvar UID$4 = 0;\n\n/**\n * System plugin to the renderer to manage shaders.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar ShaderSystem = /*@__PURE__*/(function (System) {\n function ShaderSystem(renderer)\n {\n System.call(this, renderer);\n\n // Validation check that this environment support `new Function`\n this.systemCheck();\n\n /**\n * The current WebGL rendering context\n *\n * @member {WebGLRenderingContext}\n */\n this.gl = null;\n\n this.shader = null;\n this.program = null;\n\n /**\n * Cache to holds the generated functions. Stored against UniformObjects unique signature\n * @type {Object}\n * @private\n */\n this.cache = {};\n\n this.id = UID$4++;\n }\n\n if ( System ) ShaderSystem.__proto__ = System;\n ShaderSystem.prototype = Object.create( System && System.prototype );\n ShaderSystem.prototype.constructor = ShaderSystem;\n\n /**\n * Overrideable function by `@pixi/unsafe-eval` to silence\n * throwing an error if platform doesn't support unsafe-evals.\n *\n * @private\n */\n ShaderSystem.prototype.systemCheck = function systemCheck ()\n {\n if (!unsafeEvalSupported())\n {\n throw new Error('Current environment does not allow unsafe-eval, '\n + 'please use @pixi/unsafe-eval module to enable support.');\n }\n };\n\n ShaderSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n this.reset();\n };\n\n /**\n * Changes the current shader to the one given in parameter\n *\n * @param {PIXI.Shader} shader - the new shader\n * @param {boolean} dontSync - false if the shader should automatically sync its uniforms.\n * @returns {PIXI.GLProgram} the glProgram that belongs to the shader.\n */\n ShaderSystem.prototype.bind = function bind (shader, dontSync)\n {\n shader.uniforms.globals = this.renderer.globalUniforms;\n\n var program = shader.program;\n var glProgram = program.glPrograms[this.renderer.CONTEXT_UID] || this.generateShader(shader);\n\n this.shader = shader;\n\n // TODO - some current Pixi plugins bypass this.. so it not safe to use yet..\n if (this.program !== program)\n {\n this.program = program;\n this.gl.useProgram(glProgram.program);\n }\n\n if (!dontSync)\n {\n this.syncUniformGroup(shader.uniformGroup);\n }\n\n return glProgram;\n };\n\n /**\n * Uploads the uniforms values to the currently bound shader.\n *\n * @param {object} uniforms - the uniforms values that be applied to the current shader\n */\n ShaderSystem.prototype.setUniforms = function setUniforms (uniforms)\n {\n var shader = this.shader.program;\n var glProgram = shader.glPrograms[this.renderer.CONTEXT_UID];\n\n shader.syncUniforms(glProgram.uniformData, uniforms, this.renderer);\n };\n\n ShaderSystem.prototype.syncUniformGroup = function syncUniformGroup (group)\n {\n var glProgram = this.getglProgram();\n\n if (!group.static || group.dirtyId !== glProgram.uniformGroups[group.id])\n {\n glProgram.uniformGroups[group.id] = group.dirtyId;\n\n this.syncUniforms(group, glProgram);\n }\n };\n\n /**\n * Overrideable by the @pixi/unsafe-eval package to use static\n * syncUnforms instead.\n *\n * @private\n */\n ShaderSystem.prototype.syncUniforms = function syncUniforms (group, glProgram)\n {\n var syncFunc = group.syncUniforms[this.shader.program.id] || this.createSyncGroups(group);\n\n syncFunc(glProgram.uniformData, group.uniforms, this.renderer);\n };\n\n ShaderSystem.prototype.createSyncGroups = function createSyncGroups (group)\n {\n var id = this.getSignature(group, this.shader.program.uniformData);\n\n if (!this.cache[id])\n {\n this.cache[id] = generateUniformsSync(group, this.shader.program.uniformData);\n }\n\n group.syncUniforms[this.shader.program.id] = this.cache[id];\n\n return group.syncUniforms[this.shader.program.id];\n };\n\n /**\n * Takes a uniform group and data and generates a unique signature for them.\n *\n * @param {PIXI.UniformGroup} group the uniform group to get signature of\n * @param {Object} uniformData uniform information generated by the shader\n * @returns {String} Unique signature of the uniform group\n * @private\n */\n ShaderSystem.prototype.getSignature = function getSignature (group, uniformData)\n {\n var uniforms = group.uniforms;\n\n var strings = [];\n\n for (var i in uniforms)\n {\n strings.push(i);\n\n if (uniformData[i])\n {\n strings.push(uniformData[i].type);\n }\n }\n\n return strings.join('-');\n };\n\n /**\n * Returns the underlying GLShade rof the currently bound shader.\n * This can be handy for when you to have a little more control over the setting of your uniforms.\n *\n * @return {PIXI.GLProgram} the glProgram for the currently bound Shader for this context\n */\n ShaderSystem.prototype.getglProgram = function getglProgram ()\n {\n if (this.shader)\n {\n return this.shader.program.glPrograms[this.renderer.CONTEXT_UID];\n }\n\n return null;\n };\n\n /**\n * Generates a glProgram version of the Shader provided.\n *\n * @private\n * @param {PIXI.Shader} shader the shader that the glProgram will be based on.\n * @return {PIXI.GLProgram} A shiny new glProgram!\n */\n ShaderSystem.prototype.generateShader = function generateShader (shader)\n {\n var gl = this.gl;\n\n var program = shader.program;\n\n var attribMap = {};\n\n for (var i in program.attributeData)\n {\n attribMap[i] = program.attributeData[i].location;\n }\n\n var shaderProgram = compileProgram(gl, program.vertexSrc, program.fragmentSrc, attribMap);\n var uniformData = {};\n\n for (var i$1 in program.uniformData)\n {\n var data = program.uniformData[i$1];\n\n uniformData[i$1] = {\n location: gl.getUniformLocation(shaderProgram, i$1),\n value: defaultValue(data.type, data.size),\n };\n }\n\n var glProgram = new GLProgram(shaderProgram, uniformData);\n\n program.glPrograms[this.renderer.CONTEXT_UID] = glProgram;\n\n return glProgram;\n };\n\n /**\n * Resets ShaderSystem state, does not affect WebGL state\n */\n ShaderSystem.prototype.reset = function reset ()\n {\n this.program = null;\n this.shader = null;\n };\n\n /**\n * Destroys this System and removes all its textures\n */\n ShaderSystem.prototype.destroy = function destroy ()\n {\n // TODO implement destroy method for ShaderSystem\n this.destroyed = true;\n };\n\n return ShaderSystem;\n}(System));\n\n/**\n * Maps gl blend combinations to WebGL.\n *\n * @memberof PIXI\n * @function mapWebGLBlendModesToPixi\n * @private\n * @param {WebGLRenderingContext} gl - The rendering context.\n * @param {number[][]} [array=[]] - The array to output into.\n * @return {number[][]} Mapped modes.\n */\nfunction mapWebGLBlendModesToPixi(gl, array)\n{\n if ( array === void 0 ) array = [];\n\n // TODO - premultiply alpha would be different.\n // add a boolean for that!\n array[BLEND_MODES.NORMAL] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.ADD] = [gl.ONE, gl.ONE];\n array[BLEND_MODES.MULTIPLY] = [gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SCREEN] = [gl.ONE, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.OVERLAY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DARKEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.LIGHTEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR_DODGE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR_BURN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.HARD_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SOFT_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DIFFERENCE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.EXCLUSION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.HUE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SATURATION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.LUMINOSITY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.NONE] = [0, 0];\n\n // not-premultiplied blend modes\n array[BLEND_MODES.NORMAL_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.ADD_NPM] = [gl.SRC_ALPHA, gl.ONE, gl.ONE, gl.ONE];\n array[BLEND_MODES.SCREEN_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n\n // composite operations\n array[BLEND_MODES.SRC_IN] = [gl.DST_ALPHA, gl.ZERO];\n array[BLEND_MODES.SRC_OUT] = [gl.ONE_MINUS_DST_ALPHA, gl.ZERO];\n array[BLEND_MODES.SRC_ATOP] = [gl.DST_ALPHA, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DST_OVER] = [gl.ONE_MINUS_DST_ALPHA, gl.ONE];\n array[BLEND_MODES.DST_IN] = [gl.ZERO, gl.SRC_ALPHA];\n array[BLEND_MODES.DST_OUT] = [gl.ZERO, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DST_ATOP] = [gl.ONE_MINUS_DST_ALPHA, gl.SRC_ALPHA];\n\n // SUBTRACT from flash\n array[BLEND_MODES.SUBTRACT] = [gl.ONE, gl.ONE, gl.ONE, gl.ONE, gl.FUNC_REVERSE_SUBTRACT, gl.FUNC_ADD];\n\n return array;\n}\n\nvar BLEND$1 = 0;\nvar OFFSET$1 = 1;\nvar CULLING$1 = 2;\nvar DEPTH_TEST$1 = 3;\nvar WINDING$1 = 4;\n\n/**\n * System plugin to the renderer to manage WebGL state machines.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar StateSystem = /*@__PURE__*/(function (System) {\n function StateSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * GL context\n * @member {WebGLRenderingContext}\n * @readonly\n */\n this.gl = null;\n\n /**\n * State ID\n * @member {number}\n * @readonly\n */\n this.stateId = 0;\n\n /**\n * Polygon offset\n * @member {number}\n * @readonly\n */\n this.polygonOffset = 0;\n\n /**\n * Blend mode\n * @member {number}\n * @default PIXI.BLEND_MODES.NONE\n * @readonly\n */\n this.blendMode = BLEND_MODES.NONE;\n\n /**\n * Whether current blend equation is different\n * @member {boolean}\n * @protected\n */\n this._blendEq = false;\n\n /**\n * Collection of calls\n * @member {function[]}\n * @readonly\n */\n this.map = [];\n\n // map functions for when we set state..\n this.map[BLEND$1] = this.setBlend;\n this.map[OFFSET$1] = this.setOffset;\n this.map[CULLING$1] = this.setCullFace;\n this.map[DEPTH_TEST$1] = this.setDepthTest;\n this.map[WINDING$1] = this.setFrontFace;\n\n /**\n * Collection of check calls\n * @member {function[]}\n * @readonly\n */\n this.checks = [];\n\n /**\n * Default WebGL State\n * @member {PIXI.State}\n * @readonly\n */\n this.defaultState = new State();\n this.defaultState.blend = true;\n this.defaultState.depth = true;\n }\n\n if ( System ) StateSystem.__proto__ = System;\n StateSystem.prototype = Object.create( System && System.prototype );\n StateSystem.prototype.constructor = StateSystem;\n\n StateSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n\n this.blendModes = mapWebGLBlendModesToPixi(gl);\n\n this.set(this.defaultState);\n\n this.reset();\n };\n\n /**\n * Sets the current state\n *\n * @param {*} state - The state to set.\n */\n StateSystem.prototype.set = function set (state)\n {\n state = state || this.defaultState;\n\n // TODO maybe to an object check? ( this.state === state )?\n if (this.stateId !== state.data)\n {\n var diff = this.stateId ^ state.data;\n var i = 0;\n\n // order from least to most common\n while (diff)\n {\n if (diff & 1)\n {\n // state change!\n this.map[i].call(this, !!(state.data & (1 << i)));\n }\n\n diff = diff >> 1;\n i++;\n }\n\n this.stateId = state.data;\n }\n\n // based on the above settings we check for specific modes..\n // for example if blend is active we check and set the blend modes\n // or of polygon offset is active we check the poly depth.\n for (var i$1 = 0; i$1 < this.checks.length; i$1++)\n {\n this.checks[i$1](this, state);\n }\n };\n\n /**\n * Sets the state, when previous state is unknown\n *\n * @param {*} state - The state to set\n */\n StateSystem.prototype.forceState = function forceState (state)\n {\n state = state || this.defaultState;\n for (var i = 0; i < this.map.length; i++)\n {\n this.map[i].call(this, !!(state.data & (1 << i)));\n }\n for (var i$1 = 0; i$1 < this.checks.length; i$1++)\n {\n this.checks[i$1](this, state);\n }\n\n this.stateId = state.data;\n };\n\n /**\n * Enables or disabled blending.\n *\n * @param {boolean} value - Turn on or off webgl blending.\n */\n StateSystem.prototype.setBlend = function setBlend (value)\n {\n this.updateCheck(StateSystem.checkBlendMode, value);\n\n this.gl[value ? 'enable' : 'disable'](this.gl.BLEND);\n };\n\n /**\n * Enables or disable polygon offset fill\n *\n * @param {boolean} value - Turn on or off webgl polygon offset testing.\n */\n StateSystem.prototype.setOffset = function setOffset (value)\n {\n this.updateCheck(StateSystem.checkPolygonOffset, value);\n\n this.gl[value ? 'enable' : 'disable'](this.gl.POLYGON_OFFSET_FILL);\n };\n\n /**\n * Sets whether to enable or disable depth test.\n *\n * @param {boolean} value - Turn on or off webgl depth testing.\n */\n StateSystem.prototype.setDepthTest = function setDepthTest (value)\n {\n this.gl[value ? 'enable' : 'disable'](this.gl.DEPTH_TEST);\n };\n\n /**\n * Sets whether to enable or disable cull face.\n *\n * @param {boolean} value - Turn on or off webgl cull face.\n */\n StateSystem.prototype.setCullFace = function setCullFace (value)\n {\n this.gl[value ? 'enable' : 'disable'](this.gl.CULL_FACE);\n };\n\n /**\n * Sets the gl front face.\n *\n * @param {boolean} value - true is clockwise and false is counter-clockwise\n */\n StateSystem.prototype.setFrontFace = function setFrontFace (value)\n {\n this.gl.frontFace(this.gl[value ? 'CW' : 'CCW']);\n };\n\n /**\n * Sets the blend mode.\n *\n * @param {number} value - The blend mode to set to.\n */\n StateSystem.prototype.setBlendMode = function setBlendMode (value)\n {\n if (value === this.blendMode)\n {\n return;\n }\n\n this.blendMode = value;\n\n var mode = this.blendModes[value];\n var gl = this.gl;\n\n if (mode.length === 2)\n {\n gl.blendFunc(mode[0], mode[1]);\n }\n else\n {\n gl.blendFuncSeparate(mode[0], mode[1], mode[2], mode[3]);\n }\n if (mode.length === 6)\n {\n this._blendEq = true;\n gl.blendEquationSeparate(mode[4], mode[5]);\n }\n else if (this._blendEq)\n {\n this._blendEq = false;\n gl.blendEquationSeparate(gl.FUNC_ADD, gl.FUNC_ADD);\n }\n };\n\n /**\n * Sets the polygon offset.\n *\n * @param {number} value - the polygon offset\n * @param {number} scale - the polygon offset scale\n */\n StateSystem.prototype.setPolygonOffset = function setPolygonOffset (value, scale)\n {\n this.gl.polygonOffset(value, scale);\n };\n\n // used\n /**\n * Resets all the logic and disables the vaos\n */\n StateSystem.prototype.reset = function reset ()\n {\n this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false);\n\n this.forceState(0);\n\n this._blendEq = true;\n this.blendMode = -1;\n this.setBlendMode(0);\n };\n\n /**\n * checks to see which updates should be checked based on which settings have been activated.\n * For example, if blend is enabled then we should check the blend modes each time the state is changed\n * or if polygon fill is activated then we need to check if the polygon offset changes.\n * The idea is that we only check what we have too.\n *\n * @param {Function} func the checking function to add or remove\n * @param {boolean} value should the check function be added or removed.\n */\n StateSystem.prototype.updateCheck = function updateCheck (func, value)\n {\n var index = this.checks.indexOf(func);\n\n if (value && index === -1)\n {\n this.checks.push(func);\n }\n else if (!value && index !== -1)\n {\n this.checks.splice(index, 1);\n }\n };\n\n /**\n * A private little wrapper function that we call to check the blend mode.\n *\n * @static\n * @private\n * @param {PIXI.StateSystem} System the System to perform the state check on\n * @param {PIXI.State} state the state that the blendMode will pulled from\n */\n StateSystem.checkBlendMode = function checkBlendMode (system, state)\n {\n system.setBlendMode(state.blendMode);\n };\n\n /**\n * A private little wrapper function that we call to check the polygon offset.\n *\n * @static\n * @private\n * @param {PIXI.StateSystem} System the System to perform the state check on\n * @param {PIXI.State} state the state that the blendMode will pulled from\n */\n StateSystem.checkPolygonOffset = function checkPolygonOffset (system, state)\n {\n system.setPolygonOffset(state.polygonOffset, 0);\n };\n\n return StateSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage texture garbage collection on the GPU,\n * ensuring that it does not get clogged up with textures that are no longer being used.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar TextureGCSystem = /*@__PURE__*/(function (System) {\n function TextureGCSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Count\n * @member {number}\n * @readonly\n */\n this.count = 0;\n\n /**\n * Check count\n * @member {number}\n * @readonly\n */\n this.checkCount = 0;\n\n /**\n * Maximum idle time, in seconds\n * @member {number}\n * @see PIXI.settings.GC_MAX_IDLE\n */\n this.maxIdle = settings.GC_MAX_IDLE;\n\n /**\n * Maximum number of item to check\n * @member {number}\n * @see PIXI.settings.GC_MAX_CHECK_COUNT\n */\n this.checkCountMax = settings.GC_MAX_CHECK_COUNT;\n\n /**\n * Current garabage collection mode\n * @member {PIXI.GC_MODES}\n * @see PIXI.settings.GC_MODE\n */\n this.mode = settings.GC_MODE;\n }\n\n if ( System ) TextureGCSystem.__proto__ = System;\n TextureGCSystem.prototype = Object.create( System && System.prototype );\n TextureGCSystem.prototype.constructor = TextureGCSystem;\n\n /**\n * Checks to see when the last time a texture was used\n * if the texture has not been used for a specified amount of time it will be removed from the GPU\n */\n TextureGCSystem.prototype.postrender = function postrender ()\n {\n this.count++;\n\n if (this.mode === GC_MODES.MANUAL)\n {\n return;\n }\n\n this.checkCount++;\n\n if (this.checkCount > this.checkCountMax)\n {\n this.checkCount = 0;\n\n this.run();\n }\n };\n\n /**\n * Checks to see when the last time a texture was used\n * if the texture has not been used for a specified amount of time it will be removed from the GPU\n */\n TextureGCSystem.prototype.run = function run ()\n {\n var tm = this.renderer.texture;\n var managedTextures = tm.managedTextures;\n var wasRemoved = false;\n\n for (var i = 0; i < managedTextures.length; i++)\n {\n var texture = managedTextures[i];\n\n // only supports non generated textures at the moment!\n if (!texture.framebuffer && this.count - texture.touched > this.maxIdle)\n {\n tm.destroyTexture(texture, true);\n managedTextures[i] = null;\n wasRemoved = true;\n }\n }\n\n if (wasRemoved)\n {\n var j = 0;\n\n for (var i$1 = 0; i$1 < managedTextures.length; i$1++)\n {\n if (managedTextures[i$1] !== null)\n {\n managedTextures[j++] = managedTextures[i$1];\n }\n }\n\n managedTextures.length = j;\n }\n };\n\n /**\n * Removes all the textures within the specified displayObject and its children from the GPU\n *\n * @param {PIXI.DisplayObject} displayObject - the displayObject to remove the textures from.\n */\n TextureGCSystem.prototype.unload = function unload (displayObject)\n {\n var tm = this.renderer.textureSystem;\n\n // only destroy non generated textures\n if (displayObject._texture && displayObject._texture._glRenderTargets)\n {\n tm.destroyTexture(displayObject._texture);\n }\n\n for (var i = displayObject.children.length - 1; i >= 0; i--)\n {\n this.unload(displayObject.children[i]);\n }\n };\n\n return TextureGCSystem;\n}(System));\n\n/**\n * Internal texture for WebGL context\n * @class\n * @memberof PIXI\n */\nvar GLTexture = function GLTexture(texture)\n{\n /**\n * The WebGL texture\n * @member {WebGLTexture}\n */\n this.texture = texture;\n\n /**\n * Width of texture that was used in texImage2D\n * @member {number}\n */\n this.width = -1;\n\n /**\n * Height of texture that was used in texImage2D\n * @member {number}\n */\n this.height = -1;\n\n /**\n * Texture contents dirty flag\n * @member {number}\n */\n this.dirtyId = -1;\n\n /**\n * Texture style dirty flag\n * @member {number}\n */\n this.dirtyStyleId = -1;\n\n /**\n * Whether mip levels has to be generated\n * @member {boolean}\n */\n this.mipmap = false;\n\n /**\n * WrapMode copied from baseTexture\n * @member {number}\n */\n this.wrapMode = 33071;\n\n /**\n * Type copied from baseTexture\n * @member {number}\n */\n this.type = 6408;\n\n /**\n * Type copied from baseTexture\n * @member {number}\n */\n this.internalFormat = 5121;\n};\n\n/**\n * System plugin to the renderer to manage textures.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar TextureSystem = /*@__PURE__*/(function (System) {\n function TextureSystem(renderer)\n {\n System.call(this, renderer);\n\n // TODO set to max textures...\n /**\n * Bound textures\n * @member {PIXI.BaseTexture[]}\n * @readonly\n */\n this.boundTextures = [];\n /**\n * Current location\n * @member {number}\n * @readonly\n */\n this.currentLocation = -1;\n\n /**\n * List of managed textures\n * @member {PIXI.BaseTexture[]}\n * @readonly\n */\n this.managedTextures = [];\n\n /**\n * Did someone temper with textures state? We'll overwrite them when we need to unbind something.\n * @member {boolean}\n * @private\n */\n this._unknownBoundTextures = false;\n\n /**\n * BaseTexture value that shows that we don't know what is bound\n * @member {PIXI.BaseTexture}\n * @readonly\n */\n this.unknownTexture = new BaseTexture();\n }\n\n if ( System ) TextureSystem.__proto__ = System;\n TextureSystem.prototype = Object.create( System && System.prototype );\n TextureSystem.prototype.constructor = TextureSystem;\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n TextureSystem.prototype.contextChange = function contextChange ()\n {\n var gl = this.gl = this.renderer.gl;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n\n this.webGLVersion = this.renderer.context.webGLVersion;\n\n var maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS);\n\n this.boundTextures.length = maxTextures;\n\n for (var i = 0; i < maxTextures; i++)\n {\n this.boundTextures[i] = null;\n }\n\n // TODO move this.. to a nice make empty textures class..\n this.emptyTextures = {};\n\n var emptyTexture2D = new GLTexture(gl.createTexture());\n\n gl.bindTexture(gl.TEXTURE_2D, emptyTexture2D.texture);\n gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4));\n\n this.emptyTextures[gl.TEXTURE_2D] = emptyTexture2D;\n this.emptyTextures[gl.TEXTURE_CUBE_MAP] = new GLTexture(gl.createTexture());\n\n gl.bindTexture(gl.TEXTURE_CUBE_MAP, this.emptyTextures[gl.TEXTURE_CUBE_MAP].texture);\n\n for (var i$1 = 0; i$1 < 6; i$1++)\n {\n gl.texImage2D(gl.TEXTURE_CUBE_MAP_POSITIVE_X + i$1, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, null);\n }\n\n gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR);\n gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR);\n\n for (var i$2 = 0; i$2 < this.boundTextures.length; i$2++)\n {\n this.bind(null, i$2);\n }\n };\n\n /**\n * Bind a texture to a specific location\n *\n * If you want to unbind something, please use `unbind(texture)` instead of `bind(null, textureLocation)`\n *\n * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind\n * @param {number} [location=0] - Location to bind at\n */\n TextureSystem.prototype.bind = function bind (texture, location)\n {\n if ( location === void 0 ) location = 0;\n\n var ref = this;\n var gl = ref.gl;\n\n if (texture)\n {\n texture = texture.baseTexture || texture;\n\n if (texture.valid)\n {\n texture.touched = this.renderer.textureGC.count;\n\n var glTexture = texture._glTextures[this.CONTEXT_UID] || this.initTexture(texture);\n\n if (this.currentLocation !== location)\n {\n this.currentLocation = location;\n gl.activeTexture(gl.TEXTURE0 + location);\n }\n\n if (this.boundTextures[location] !== texture)\n {\n gl.bindTexture(texture.target, glTexture.texture);\n }\n\n if (glTexture.dirtyId !== texture.dirtyId)\n {\n this.updateTexture(texture);\n }\n\n this.boundTextures[location] = texture;\n }\n }\n else\n {\n if (this.currentLocation !== location)\n {\n this.currentLocation = location;\n gl.activeTexture(gl.TEXTURE0 + location);\n }\n\n gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[gl.TEXTURE_2D].texture);\n this.boundTextures[location] = null;\n }\n };\n\n /**\n * Resets texture location and bound textures\n *\n * Actual `bind(null, i)` calls will be performed at next `unbind()` call\n */\n TextureSystem.prototype.reset = function reset ()\n {\n this._unknownBoundTextures = true;\n this.currentLocation = -1;\n\n for (var i = 0; i < this.boundTextures.length; i++)\n {\n this.boundTextures[i] = this.unknownTexture;\n }\n };\n\n /**\n * Unbind a texture\n * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind\n */\n TextureSystem.prototype.unbind = function unbind (texture)\n {\n var ref = this;\n var gl = ref.gl;\n var boundTextures = ref.boundTextures;\n\n if (this._unknownBoundTextures)\n {\n this._unknownBoundTextures = false;\n // someone changed webGL state,\n // we have to be sure that our texture does not appear in multi-texture renderer samplers\n for (var i = 0; i < boundTextures.length; i++)\n {\n if (boundTextures[i] === this.unknownTexture)\n {\n this.bind(null, i);\n }\n }\n }\n\n for (var i$1 = 0; i$1 < boundTextures.length; i$1++)\n {\n if (boundTextures[i$1] === texture)\n {\n if (this.currentLocation !== i$1)\n {\n gl.activeTexture(gl.TEXTURE0 + i$1);\n this.currentLocation = i$1;\n }\n\n gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[texture.target].texture);\n boundTextures[i$1] = null;\n }\n }\n };\n\n /**\n * Initialize a texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to initialize\n */\n TextureSystem.prototype.initTexture = function initTexture (texture)\n {\n var glTexture = new GLTexture(this.gl.createTexture());\n\n // guarantee an update..\n glTexture.dirtyId = -1;\n\n texture._glTextures[this.CONTEXT_UID] = glTexture;\n\n this.managedTextures.push(texture);\n texture.on('dispose', this.destroyTexture, this);\n\n return glTexture;\n };\n\n TextureSystem.prototype.initTextureType = function initTextureType (texture, glTexture)\n {\n glTexture.internalFormat = texture.format;\n glTexture.type = texture.type;\n if (this.webGLVersion !== 2)\n {\n return;\n }\n var gl = this.renderer.gl;\n\n if (texture.type === gl.FLOAT\n && texture.format === gl.RGBA)\n {\n glTexture.internalFormat = gl.RGBA32F;\n }\n // that's WebGL1 HALF_FLOAT_OES\n // we have to convert it to WebGL HALF_FLOAT\n if (texture.type === TYPES.HALF_FLOAT)\n {\n glTexture.type = gl.HALF_FLOAT;\n }\n if (glTexture.type === gl.HALF_FLOAT\n && texture.format === gl.RGBA)\n {\n glTexture.internalFormat = gl.RGBA16F;\n }\n };\n\n /**\n * Update a texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to initialize\n */\n TextureSystem.prototype.updateTexture = function updateTexture (texture)\n {\n var glTexture = texture._glTextures[this.CONTEXT_UID];\n\n if (!glTexture)\n {\n return;\n }\n\n var renderer = this.renderer;\n\n this.initTextureType(texture, glTexture);\n\n if (texture.resource && texture.resource.upload(renderer, texture, glTexture))\n ;\n else\n {\n // default, renderTexture-like logic\n var width = texture.realWidth;\n var height = texture.realHeight;\n var gl = renderer.gl;\n\n if (glTexture.width !== width\n || glTexture.height !== height\n || glTexture.dirtyId < 0)\n {\n glTexture.width = width;\n glTexture.height = height;\n\n gl.texImage2D(texture.target, 0,\n glTexture.internalFormat,\n width,\n height,\n 0,\n texture.format,\n glTexture.type,\n null);\n }\n }\n\n // lets only update what changes..\n if (texture.dirtyStyleId !== glTexture.dirtyStyleId)\n {\n this.updateTextureStyle(texture);\n }\n glTexture.dirtyId = texture.dirtyId;\n };\n\n /**\n * Deletes the texture from WebGL\n *\n * @private\n * @param {PIXI.BaseTexture|PIXI.Texture} texture - the texture to destroy\n * @param {boolean} [skipRemove=false] - Whether to skip removing the texture from the TextureManager.\n */\n TextureSystem.prototype.destroyTexture = function destroyTexture (texture, skipRemove)\n {\n var ref = this;\n var gl = ref.gl;\n\n texture = texture.baseTexture || texture;\n\n if (texture._glTextures[this.CONTEXT_UID])\n {\n this.unbind(texture);\n\n gl.deleteTexture(texture._glTextures[this.CONTEXT_UID].texture);\n texture.off('dispose', this.destroyTexture, this);\n\n delete texture._glTextures[this.CONTEXT_UID];\n\n if (!skipRemove)\n {\n var i = this.managedTextures.indexOf(texture);\n\n if (i !== -1)\n {\n removeItems(this.managedTextures, i, 1);\n }\n }\n }\n };\n\n /**\n * Update texture style such as mipmap flag\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to update\n */\n TextureSystem.prototype.updateTextureStyle = function updateTextureStyle (texture)\n {\n var glTexture = texture._glTextures[this.CONTEXT_UID];\n\n if (!glTexture)\n {\n return;\n }\n\n if ((texture.mipmap === MIPMAP_MODES.POW2 || this.webGLVersion !== 2) && !texture.isPowerOfTwo)\n {\n glTexture.mipmap = 0;\n glTexture.wrapMode = WRAP_MODES.CLAMP;\n }\n else\n {\n glTexture.mipmap = texture.mipmap >= 1;\n glTexture.wrapMode = texture.wrapMode;\n }\n\n if (texture.resource && texture.resource.style(this.renderer, texture, glTexture))\n ;\n else\n {\n this.setStyle(texture, glTexture);\n }\n\n glTexture.dirtyStyleId = texture.dirtyStyleId;\n };\n\n /**\n * Set style for texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to update\n * @param {PIXI.GLTexture} glTexture\n */\n TextureSystem.prototype.setStyle = function setStyle (texture, glTexture)\n {\n var gl = this.gl;\n\n if (glTexture.mipmap)\n {\n gl.generateMipmap(texture.target);\n }\n\n gl.texParameteri(texture.target, gl.TEXTURE_WRAP_S, glTexture.wrapMode);\n gl.texParameteri(texture.target, gl.TEXTURE_WRAP_T, glTexture.wrapMode);\n\n if (glTexture.mipmap)\n {\n /* eslint-disable max-len */\n gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR_MIPMAP_LINEAR : gl.NEAREST_MIPMAP_NEAREST);\n /* eslint-disable max-len */\n\n var anisotropicExt = this.renderer.context.extensions.anisotropicFiltering;\n\n if (anisotropicExt && texture.anisotropicLevel > 0 && texture.scaleMode === SCALE_MODES.LINEAR)\n {\n var level = Math.min(texture.anisotropicLevel, gl.getParameter(anisotropicExt.MAX_TEXTURE_MAX_ANISOTROPY_EXT));\n\n gl.texParameterf(texture.target, anisotropicExt.TEXTURE_MAX_ANISOTROPY_EXT, level);\n }\n }\n else\n {\n gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST);\n }\n\n gl.texParameteri(texture.target, gl.TEXTURE_MAG_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST);\n };\n\n return TextureSystem;\n}(System));\n\n/**\n * Systems are individual components to the Renderer pipeline.\n * @namespace PIXI.systems\n */\n\nvar systems = ({\n FilterSystem: FilterSystem,\n BatchSystem: BatchSystem,\n ContextSystem: ContextSystem,\n FramebufferSystem: FramebufferSystem,\n GeometrySystem: GeometrySystem,\n MaskSystem: MaskSystem,\n StencilSystem: StencilSystem,\n ProjectionSystem: ProjectionSystem,\n RenderTextureSystem: RenderTextureSystem,\n ShaderSystem: ShaderSystem,\n StateSystem: StateSystem,\n TextureGCSystem: TextureGCSystem,\n TextureSystem: TextureSystem\n});\n\nvar tempMatrix = new Matrix();\n\n/**\n * The AbstractRenderer is the base for a PixiJS Renderer. It is extended by the {@link PIXI.CanvasRenderer}\n * and {@link PIXI.Renderer} which can be used for rendering a PixiJS scene.\n *\n * @abstract\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar AbstractRenderer = /*@__PURE__*/(function (EventEmitter) {\n function AbstractRenderer(system, options)\n {\n EventEmitter.call(this);\n\n // Add the default render options\n options = Object.assign({}, settings.RENDER_OPTIONS, options);\n\n // Deprecation notice for renderer roundPixels option\n if (options.roundPixels)\n {\n settings.ROUND_PIXELS = options.roundPixels;\n deprecation('5.0.0', 'Renderer roundPixels option is deprecated, please use PIXI.settings.ROUND_PIXELS', 2);\n }\n\n /**\n * The supplied constructor options.\n *\n * @member {Object}\n * @readOnly\n */\n this.options = options;\n\n /**\n * The type of the renderer.\n *\n * @member {number}\n * @default PIXI.RENDERER_TYPE.UNKNOWN\n * @see PIXI.RENDERER_TYPE\n */\n this.type = RENDERER_TYPE.UNKNOWN;\n\n /**\n * Measurements of the screen. (0, 0, screenWidth, screenHeight).\n *\n * Its safe to use as filterArea or hitArea for the whole stage.\n *\n * @member {PIXI.Rectangle}\n */\n this.screen = new Rectangle(0, 0, options.width, options.height);\n\n /**\n * The canvas element that everything is drawn to.\n *\n * @member {HTMLCanvasElement}\n */\n this.view = options.view || document.createElement('canvas');\n\n /**\n * The resolution / device pixel ratio of the renderer.\n *\n * @member {number}\n * @default 1\n */\n this.resolution = options.resolution || settings.RESOLUTION;\n\n /**\n * Whether the render view is transparent.\n *\n * @member {boolean}\n */\n this.transparent = options.transparent;\n\n /**\n * Whether CSS dimensions of canvas view should be resized to screen dimensions automatically.\n *\n * @member {boolean}\n */\n this.autoDensity = options.autoDensity || options.autoResize || false;\n // autoResize is deprecated, provides fallback support\n\n /**\n * The value of the preserveDrawingBuffer flag affects whether or not the contents of\n * the stencil buffer is retained after rendering.\n *\n * @member {boolean}\n */\n this.preserveDrawingBuffer = options.preserveDrawingBuffer;\n\n /**\n * This sets if the CanvasRenderer will clear the canvas or not before the new render pass.\n * If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every\n * frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect\n * to clear the canvas every frame. Disable this by setting this to false. For example, if\n * your game has a canvas filling background image you often don't need this set.\n *\n * @member {boolean}\n * @default\n */\n this.clearBeforeRender = options.clearBeforeRender;\n\n /**\n * The background color as a number.\n *\n * @member {number}\n * @protected\n */\n this._backgroundColor = 0x000000;\n\n /**\n * The background color as an [R, G, B] array.\n *\n * @member {number[]}\n * @protected\n */\n this._backgroundColorRgba = [0, 0, 0, 0];\n\n /**\n * The background color as a string.\n *\n * @member {string}\n * @protected\n */\n this._backgroundColorString = '#000000';\n\n this.backgroundColor = options.backgroundColor || this._backgroundColor; // run bg color setter\n\n /**\n * This temporary display object used as the parent of the currently being rendered item.\n *\n * @member {PIXI.DisplayObject}\n * @protected\n */\n this._tempDisplayObjectParent = new Container();\n\n /**\n * The last root object that the renderer tried to render.\n *\n * @member {PIXI.DisplayObject}\n * @protected\n */\n this._lastObjectRendered = this._tempDisplayObjectParent;\n\n /**\n * Collection of plugins.\n * @readonly\n * @member {object}\n */\n this.plugins = {};\n }\n\n if ( EventEmitter ) AbstractRenderer.__proto__ = EventEmitter;\n AbstractRenderer.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n AbstractRenderer.prototype.constructor = AbstractRenderer;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true },backgroundColor: { configurable: true } };\n\n /**\n * Initialize the plugins.\n *\n * @protected\n * @param {object} staticMap - The dictionary of statically saved plugins.\n */\n AbstractRenderer.prototype.initPlugins = function initPlugins (staticMap)\n {\n for (var o in staticMap)\n {\n this.plugins[o] = new (staticMap[o])(this);\n }\n };\n\n /**\n * Same as view.width, actual number of pixels in the canvas by horizontal.\n *\n * @member {number}\n * @readonly\n * @default 800\n */\n prototypeAccessors.width.get = function ()\n {\n return this.view.width;\n };\n\n /**\n * Same as view.height, actual number of pixels in the canvas by vertical.\n *\n * @member {number}\n * @readonly\n * @default 600\n */\n prototypeAccessors.height.get = function ()\n {\n return this.view.height;\n };\n\n /**\n * Resizes the screen and canvas to the specified width and height.\n * Canvas dimensions are multiplied by resolution.\n *\n * @param {number} screenWidth - The new width of the screen.\n * @param {number} screenHeight - The new height of the screen.\n */\n AbstractRenderer.prototype.resize = function resize (screenWidth, screenHeight)\n {\n this.screen.width = screenWidth;\n this.screen.height = screenHeight;\n\n this.view.width = screenWidth * this.resolution;\n this.view.height = screenHeight * this.resolution;\n\n if (this.autoDensity)\n {\n this.view.style.width = screenWidth + \"px\";\n this.view.style.height = screenHeight + \"px\";\n }\n };\n\n /**\n * Useful function that returns a texture of the display object that can then be used to create sprites\n * This can be quite useful if your displayObject is complicated and needs to be reused multiple times.\n *\n * @param {PIXI.DisplayObject} displayObject - The displayObject the object will be generated from.\n * @param {number} scaleMode - Should be one of the scaleMode consts.\n * @param {number} resolution - The resolution / device pixel ratio of the texture being generated.\n * @param {PIXI.Rectangle} [region] - The region of the displayObject, that shall be rendered,\n * if no region is specified, defaults to the local bounds of the displayObject.\n * @return {PIXI.RenderTexture} A texture of the graphics object.\n */\n AbstractRenderer.prototype.generateTexture = function generateTexture (displayObject, scaleMode, resolution, region)\n {\n region = region || displayObject.getLocalBounds();\n\n // minimum texture size is 1x1, 0x0 will throw an error\n if (region.width === 0) { region.width = 1; }\n if (region.height === 0) { region.height = 1; }\n\n var renderTexture = RenderTexture.create(region.width | 0, region.height | 0, scaleMode, resolution);\n\n tempMatrix.tx = -region.x;\n tempMatrix.ty = -region.y;\n\n this.render(displayObject, renderTexture, false, tempMatrix, !!displayObject.parent);\n\n return renderTexture;\n };\n\n /**\n * Removes everything from the renderer and optionally removes the Canvas DOM element.\n *\n * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM.\n */\n AbstractRenderer.prototype.destroy = function destroy (removeView)\n {\n for (var o in this.plugins)\n {\n this.plugins[o].destroy();\n this.plugins[o] = null;\n }\n\n if (removeView && this.view.parentNode)\n {\n this.view.parentNode.removeChild(this.view);\n }\n\n this.plugins = null;\n\n this.type = RENDERER_TYPE.UNKNOWN;\n\n this.view = null;\n\n this.screen = null;\n\n this.resolution = 0;\n\n this.transparent = false;\n\n this.autoDensity = false;\n\n this.blendModes = null;\n\n this.options = null;\n\n this.preserveDrawingBuffer = false;\n this.clearBeforeRender = false;\n\n this._backgroundColor = 0;\n this._backgroundColorRgba = null;\n this._backgroundColorString = null;\n\n this._tempDisplayObjectParent = null;\n this._lastObjectRendered = null;\n };\n\n /**\n * The background color to fill if not transparent\n *\n * @member {number}\n */\n prototypeAccessors.backgroundColor.get = function ()\n {\n return this._backgroundColor;\n };\n\n prototypeAccessors.backgroundColor.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._backgroundColor = value;\n this._backgroundColorString = hex2string(value);\n hex2rgb(value, this._backgroundColorRgba);\n };\n\n Object.defineProperties( AbstractRenderer.prototype, prototypeAccessors );\n\n return AbstractRenderer;\n}(EventEmitter));\n\n/**\n * The Renderer draws the scene and all its content onto a WebGL enabled canvas.\n *\n * This renderer should be used for browsers that support WebGL.\n *\n * This renderer works by automatically managing WebGLBatchesm, so no need for Sprite Batches or Sprite Clouds.\n * Don't forget to add the view to your DOM or you will not see anything!\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.AbstractRenderer\n */\nvar Renderer = /*@__PURE__*/(function (AbstractRenderer) {\n function Renderer(options)\n {\n if ( options === void 0 ) options = {};\n\n AbstractRenderer.call(this, 'WebGL', options);\n\n // the options will have been modified here in the super constructor with pixi's default settings..\n options = this.options;\n\n /**\n * The type of this renderer as a standardized const\n *\n * @member {number}\n * @see PIXI.RENDERER_TYPE\n */\n this.type = RENDERER_TYPE.WEBGL;\n\n /**\n * WebGL context, set by the contextSystem (this.context)\n *\n * @readonly\n * @member {WebGLRenderingContext}\n */\n this.gl = null;\n\n this.CONTEXT_UID = 0;\n\n // TODO legacy!\n\n /**\n * Internal signal instances of **runner**, these\n * are assigned to each system created.\n * @see PIXI.Runner\n * @name PIXI.Renderer#runners\n * @private\n * @type {object}\n * @readonly\n * @property {PIXI.Runner} destroy - Destroy runner\n * @property {PIXI.Runner} contextChange - Context change runner\n * @property {PIXI.Runner} reset - Reset runner\n * @property {PIXI.Runner} update - Update runner\n * @property {PIXI.Runner} postrender - Post-render runner\n * @property {PIXI.Runner} prerender - Pre-render runner\n * @property {PIXI.Runner} resize - Resize runner\n */\n this.runners = {\n destroy: new Runner('destroy'),\n contextChange: new Runner('contextChange', 1),\n reset: new Runner('reset'),\n update: new Runner('update'),\n postrender: new Runner('postrender'),\n prerender: new Runner('prerender'),\n resize: new Runner('resize', 2),\n };\n\n /**\n * Global uniforms\n * @member {PIXI.UniformGroup}\n */\n this.globalUniforms = new UniformGroup({\n projectionMatrix: new Matrix(),\n }, true);\n\n /**\n * Mask system instance\n * @member {PIXI.systems.MaskSystem} mask\n * @memberof PIXI.Renderer#\n * @readonly\n */\n this.addSystem(MaskSystem, 'mask')\n /**\n * Context system instance\n * @member {PIXI.systems.ContextSystem} context\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ContextSystem, 'context')\n /**\n * State system instance\n * @member {PIXI.systems.StateSystem} state\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(StateSystem, 'state')\n /**\n * Shader system instance\n * @member {PIXI.systems.ShaderSystem} shader\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ShaderSystem, 'shader')\n /**\n * Texture system instance\n * @member {PIXI.systems.TextureSystem} texture\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(TextureSystem, 'texture')\n /**\n * Geometry system instance\n * @member {PIXI.systems.GeometrySystem} geometry\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(GeometrySystem, 'geometry')\n /**\n * Framebuffer system instance\n * @member {PIXI.systems.FramebufferSystem} framebuffer\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(FramebufferSystem, 'framebuffer')\n /**\n * Stencil system instance\n * @member {PIXI.systems.StencilSystem} stencil\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(StencilSystem, 'stencil')\n /**\n * Projection system instance\n * @member {PIXI.systems.ProjectionSystem} projection\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ProjectionSystem, 'projection')\n /**\n * Texture garbage collector system instance\n * @member {PIXI.systems.TextureGCSystem} textureGC\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(TextureGCSystem, 'textureGC')\n /**\n * Filter system instance\n * @member {PIXI.systems.FilterSystem} filter\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(FilterSystem, 'filter')\n /**\n * RenderTexture system instance\n * @member {PIXI.systems.RenderTextureSystem} renderTexture\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(RenderTextureSystem, 'renderTexture')\n\n /**\n * Batch system instance\n * @member {PIXI.systems.BatchSystem} batch\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(BatchSystem, 'batch');\n\n this.initPlugins(Renderer.__plugins);\n\n /**\n * The options passed in to create a new WebGL context.\n */\n if (options.context)\n {\n this.context.initFromContext(options.context);\n }\n else\n {\n this.context.initFromOptions({\n alpha: this.transparent,\n antialias: options.antialias,\n premultipliedAlpha: this.transparent && this.transparent !== 'notMultiplied',\n stencil: true,\n preserveDrawingBuffer: options.preserveDrawingBuffer,\n powerPreference: this.options.powerPreference,\n });\n }\n\n /**\n * Flag if we are rendering to the screen vs renderTexture\n * @member {boolean}\n * @readonly\n * @default true\n */\n this.renderingToScreen = true;\n\n sayHello(this.context.webGLVersion === 2 ? 'WebGL 2' : 'WebGL 1');\n\n this.resize(this.options.width, this.options.height);\n }\n\n if ( AbstractRenderer ) Renderer.__proto__ = AbstractRenderer;\n Renderer.prototype = Object.create( AbstractRenderer && AbstractRenderer.prototype );\n Renderer.prototype.constructor = Renderer;\n\n /**\n * Add a new system to the renderer.\n * @param {Function} ClassRef - Class reference\n * @param {string} [name] - Property name for system, if not specified\n * will use a static `name` property on the class itself. This\n * name will be assigned as s property on the Renderer so make\n * sure it doesn't collide with properties on Renderer.\n * @return {PIXI.Renderer} Return instance of renderer\n */\n Renderer.create = function create (options)\n {\n if (isWebGLSupported())\n {\n return new Renderer(options);\n }\n\n throw new Error('WebGL unsupported in this browser, use \"pixi.js-legacy\" for fallback canvas2d support.');\n };\n\n Renderer.prototype.addSystem = function addSystem (ClassRef, name)\n {\n if (!name)\n {\n name = ClassRef.name;\n }\n\n var system = new ClassRef(this);\n\n if (this[name])\n {\n throw new Error((\"Whoops! The name \\\"\" + name + \"\\\" is already in use\"));\n }\n\n this[name] = system;\n\n for (var i in this.runners)\n {\n this.runners[i].add(system);\n }\n\n /**\n * Fired after rendering finishes.\n *\n * @event PIXI.Renderer#postrender\n */\n\n /**\n * Fired before rendering starts.\n *\n * @event PIXI.Renderer#prerender\n */\n\n /**\n * Fired when the WebGL context is set.\n *\n * @event PIXI.Renderer#context\n * @param {WebGLRenderingContext} gl - WebGL context.\n */\n\n return this;\n };\n\n /**\n * Renders the object to its WebGL view\n *\n * @param {PIXI.DisplayObject} displayObject - The object to be rendered.\n * @param {PIXI.RenderTexture} [renderTexture] - The render texture to render to.\n * @param {boolean} [clear=true] - Should the canvas be cleared before the new render.\n * @param {PIXI.Matrix} [transform] - A transform to apply to the render texture before rendering.\n * @param {boolean} [skipUpdateTransform=false] - Should we skip the update transform pass?\n */\n Renderer.prototype.render = function render (displayObject, renderTexture, clear, transform, skipUpdateTransform)\n {\n // can be handy to know!\n this.renderingToScreen = !renderTexture;\n\n this.runners.prerender.run();\n this.emit('prerender');\n\n // apply a transform at a GPU level\n this.projection.transform = transform;\n\n // no point rendering if our context has been blown up!\n if (this.context.isLost)\n {\n return;\n }\n\n if (!renderTexture)\n {\n this._lastObjectRendered = displayObject;\n }\n\n if (!skipUpdateTransform)\n {\n // update the scene graph\n var cacheParent = displayObject.parent;\n\n displayObject.parent = this._tempDisplayObjectParent;\n displayObject.updateTransform();\n displayObject.parent = cacheParent;\n // displayObject.hitArea = //TODO add a temp hit area\n }\n\n this.renderTexture.bind(renderTexture);\n this.batch.currentRenderer.start();\n\n if (clear !== undefined ? clear : this.clearBeforeRender)\n {\n this.renderTexture.clear();\n }\n\n displayObject.render(this);\n\n // apply transform..\n this.batch.currentRenderer.flush();\n\n if (renderTexture)\n {\n renderTexture.baseTexture.update();\n }\n\n this.runners.postrender.run();\n\n // reset transform after render\n this.projection.transform = null;\n\n this.emit('postrender');\n };\n\n /**\n * Resizes the WebGL view to the specified width and height.\n *\n * @param {number} screenWidth - The new width of the screen.\n * @param {number} screenHeight - The new height of the screen.\n */\n Renderer.prototype.resize = function resize (screenWidth, screenHeight)\n {\n AbstractRenderer.prototype.resize.call(this, screenWidth, screenHeight);\n\n this.runners.resize.run(screenWidth, screenHeight);\n };\n\n /**\n * Resets the WebGL state so you can render things however you fancy!\n *\n * @return {PIXI.Renderer} Returns itself.\n */\n Renderer.prototype.reset = function reset ()\n {\n this.runners.reset.run();\n\n return this;\n };\n\n /**\n * Clear the frame buffer\n */\n Renderer.prototype.clear = function clear ()\n {\n this.framebuffer.bind();\n this.framebuffer.clear();\n };\n\n /**\n * Removes everything from the renderer (event listeners, spritebatch, etc...)\n *\n * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM.\n * See: https://github.com/pixijs/pixi.js/issues/2233\n */\n Renderer.prototype.destroy = function destroy (removeView)\n {\n this.runners.destroy.run();\n\n for (var r in this.runners)\n {\n this.runners[r].destroy();\n }\n\n // call base destroy\n AbstractRenderer.prototype.destroy.call(this, removeView);\n\n // TODO nullify all the managers..\n this.gl = null;\n };\n\n /**\n * Collection of installed plugins. These are included by default in PIXI, but can be excluded\n * by creating a custom build. Consult the README for more information about creating custom\n * builds and excluding plugins.\n * @name PIXI.Renderer#plugins\n * @type {object}\n * @readonly\n * @property {PIXI.accessibility.AccessibilityManager} accessibility Support tabbing interactive elements.\n * @property {PIXI.extract.Extract} extract Extract image data from renderer.\n * @property {PIXI.interaction.InteractionManager} interaction Handles mouse, touch and pointer events.\n * @property {PIXI.prepare.Prepare} prepare Pre-render display objects.\n */\n\n /**\n * Adds a plugin to the renderer.\n *\n * @method\n * @param {string} pluginName - The name of the plugin.\n * @param {Function} ctor - The constructor function or class for the plugin.\n */\n Renderer.registerPlugin = function registerPlugin (pluginName, ctor)\n {\n Renderer.__plugins = Renderer.__plugins || {};\n Renderer.__plugins[pluginName] = ctor;\n };\n\n return Renderer;\n}(AbstractRenderer));\n\n/**\n * This helper function will automatically detect which renderer you should be using.\n * WebGL is the preferred renderer as it is a lot faster. If WebGL is not supported by\n * the browser then this function will return a canvas renderer\n *\n * @memberof PIXI\n * @function autoDetectRenderer\n * @param {object} [options] - The optional renderer parameters\n * @param {number} [options.width=800] - the width of the renderers view\n * @param {number} [options.height=600] - the height of the renderers view\n * @param {HTMLCanvasElement} [options.view] - the canvas to use as a view, optional\n * @param {boolean} [options.transparent=false] - If the render view is transparent, default false\n * @param {boolean} [options.autoDensity=false] - Resizes renderer view in CSS pixels to allow for\n * resolutions other than 1\n * @param {boolean} [options.antialias=false] - sets antialias\n * @param {boolean} [options.preserveDrawingBuffer=false] - enables drawing buffer preservation, enable this if you\n * need to call toDataUrl on the webgl context\n * @param {number} [options.backgroundColor=0x000000] - The background color of the rendered area\n * (shown if not transparent).\n * @param {boolean} [options.clearBeforeRender=true] - This sets if the renderer will clear the canvas or\n * not before the new render pass.\n * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the renderer, retina would be 2\n * @param {boolean} [options.forceCanvas=false] - prevents selection of WebGL renderer, even if such is present, this\n * option only is available when using **pixi.js-legacy** or **@pixi/canvas-renderer** modules, otherwise\n * it is ignored.\n * @param {boolean} [options.forceFXAA=false] - forces FXAA antialiasing to be used over native.\n * FXAA is faster, but may not always look as great **webgl only**\n * @param {string} [options.powerPreference] - Parameter passed to webgl context, set to \"high-performance\"\n * for devices with dual graphics card **webgl only**\n * @return {PIXI.Renderer|PIXI.CanvasRenderer} Returns WebGL renderer if available, otherwise CanvasRenderer\n */\nfunction autoDetectRenderer(options)\n{\n return Renderer.create(options);\n}\n\nvar _default = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n vTextureCoord = aTextureCoord;\\n}\";\n\nvar defaultFilter = \"attribute vec2 aVertexPosition;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nuniform vec4 inputSize;\\nuniform vec4 outputFrame;\\n\\nvec4 filterVertexPosition( void )\\n{\\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\\n\\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\\n}\\n\\nvec2 filterTextureCoord( void )\\n{\\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\\n}\\n\\nvoid main(void)\\n{\\n gl_Position = filterVertexPosition();\\n vTextureCoord = filterTextureCoord();\\n}\\n\";\n\n/**\n * A Texture that depends on six other resources.\n *\n * @class\n * @extends PIXI.BaseTexture\n * @memberof PIXI\n */\nvar CubeTexture = /*@__PURE__*/(function (BaseTexture) {\n function CubeTexture () {\n BaseTexture.apply(this, arguments);\n }\n\n if ( BaseTexture ) CubeTexture.__proto__ = BaseTexture;\n CubeTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype );\n CubeTexture.prototype.constructor = CubeTexture;\n\n CubeTexture.from = function from (resources, options)\n {\n return new CubeTexture(new CubeResource(resources, options));\n };\n\n return CubeTexture;\n}(BaseTexture));\n\n/**\n * Used by the batcher to draw batches.\n * Each one of these contains all information required to draw a bound geometry.\n *\n * @class\n * @memberof PIXI\n */\nvar BatchDrawCall = function BatchDrawCall()\n{\n this.textures = [];\n this.ids = [];\n this.blend = 0;\n this.textureCount = 0;\n this.start = 0;\n this.size = 0;\n this.type = 4;\n};\n\n/**\n * Flexible wrapper around `ArrayBuffer` that also provides\n * typed array views on demand.\n *\n * @class\n * @memberof PIXI\n */\nvar ViewableBuffer = function ViewableBuffer(size)\n{\n /**\n * Underlying `ArrayBuffer` that holds all the data\n * and is of capacity `size`.\n *\n * @member {ArrayBuffer}\n */\n this.rawBinaryData = new ArrayBuffer(size);\n\n /**\n * View on the raw binary data as a `Uint32Array`.\n *\n * @member {Uint32Array}\n */\n this.uint32View = new Uint32Array(this.rawBinaryData);\n\n /**\n * View on the raw binary data as a `Float32Array`.\n *\n * @member {Float32Array}\n */\n this.float32View = new Float32Array(this.rawBinaryData);\n};\n\nvar prototypeAccessors$5 = { int8View: { configurable: true },uint8View: { configurable: true },int16View: { configurable: true },uint16View: { configurable: true },int32View: { configurable: true } };\n\n/**\n * View on the raw binary data as a `Int8Array`.\n *\n * @member {Int8Array}\n */\nprototypeAccessors$5.int8View.get = function ()\n{\n if (!this._int8View)\n {\n this._int8View = new Int8Array(this.rawBinaryData);\n }\n\n return this._int8View;\n};\n\n/**\n * View on the raw binary data as a `Uint8Array`.\n *\n * @member {Uint8Array}\n */\nprototypeAccessors$5.uint8View.get = function ()\n{\n if (!this._uint8View)\n {\n this._uint8View = new Uint8Array(this.rawBinaryData);\n }\n\n return this._uint8View;\n};\n\n/**\n * View on the raw binary data as a `Int16Array`.\n *\n * @member {Int16Array}\n */\nprototypeAccessors$5.int16View.get = function ()\n{\n if (!this._int16View)\n {\n this._int16View = new Int16Array(this.rawBinaryData);\n }\n\n return this._int16View;\n};\n\n/**\n * View on the raw binary data as a `Uint16Array`.\n *\n * @member {Uint16Array}\n */\nprototypeAccessors$5.uint16View.get = function ()\n{\n if (!this._uint16View)\n {\n this._uint16View = new Uint16Array(this.rawBinaryData);\n }\n\n return this._uint16View;\n};\n\n/**\n * View on the raw binary data as a `Int32Array`.\n *\n * @member {Int32Array}\n */\nprototypeAccessors$5.int32View.get = function ()\n{\n if (!this._int32View)\n {\n this._int32View = new Int32Array(this.rawBinaryData);\n }\n\n return this._int32View;\n};\n\n/**\n * Returns the view of the given type.\n *\n * @param {string} type - One of `int8`, `uint8`, `int16`,\n *`uint16`, `int32`, `uint32`, and `float32`.\n * @return {object} typed array of given type\n */\nViewableBuffer.prototype.view = function view (type)\n{\n return this[(type + \"View\")];\n};\n\n/**\n * Destroys all buffer references. Do not use after calling\n * this.\n */\nViewableBuffer.prototype.destroy = function destroy ()\n{\n this.rawBinaryData = null;\n this._int8View = null;\n this._uint8View = null;\n this._int16View = null;\n this._uint16View = null;\n this._int32View = null;\n this.uint32View = null;\n this.float32View = null;\n};\n\nViewableBuffer.sizeOf = function sizeOf (type)\n{\n switch (type)\n {\n case 'int8':\n case 'uint8':\n return 1;\n case 'int16':\n case 'uint16':\n return 2;\n case 'int32':\n case 'uint32':\n case 'float32':\n return 4;\n default:\n throw new Error((type + \" isn't a valid view type\"));\n }\n};\n\nObject.defineProperties( ViewableBuffer.prototype, prototypeAccessors$5 );\n\n/**\n * Renderer dedicated to drawing and batching sprites.\n *\n * This is the default batch renderer. It buffers objects\n * with texture-based geometries and renders them in\n * batches. It uploads multiple textures to the GPU to\n * reduce to the number of draw calls.\n *\n * @class\n * @protected\n * @memberof PIXI\n * @extends PIXI.ObjectRenderer\n */\nvar AbstractBatchRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function AbstractBatchRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n /**\n * This is used to generate a shader that can\n * color each vertex based on a `aTextureId`\n * attribute that points to an texture in `uSampler`.\n *\n * This enables the objects with different textures\n * to be drawn in the same draw call.\n *\n * You can customize your shader by creating your\n * custom shader generator.\n *\n * @member {PIXI.BatchShaderGenerator}\n * @protected\n */\n this.shaderGenerator = null;\n\n /**\n * The class that represents the geometry of objects\n * that are going to be batched with this.\n *\n * @member {object}\n * @default PIXI.BatchGeometry\n * @protected\n */\n this.geometryClass = null;\n\n /**\n * Size of data being buffered per vertex in the\n * attribute buffers (in floats). By default, the\n * batch-renderer plugin uses 6:\n *\n * | aVertexPosition | 2 |\n * |-----------------|---|\n * | aTextureCoords | 2 |\n * | aColor | 1 |\n * | aTextureId | 1 |\n *\n * @member {number}\n * @readonly\n */\n this.vertexSize = null;\n\n /**\n * The WebGL state in which this renderer will work.\n *\n * @member {PIXI.State}\n * @readonly\n */\n this.state = State.for2d();\n\n /**\n * The number of bufferable objects before a flush\n * occurs automatically.\n *\n * @member {number}\n * @default settings.SPRITE_MAX_TEXTURES\n */\n this.size = 2000 * 4;// settings.SPRITE_BATCH_SIZE, 2000 is a nice balance between mobile/desktop\n\n /**\n * Total count of all vertices used by the currently\n * buffered objects.\n *\n * @member {number}\n * @private\n */\n this._vertexCount = 0;\n\n /**\n * Total count of all indices used by the currently\n * buffered objects.\n *\n * @member {number}\n * @private\n */\n this._indexCount = 0;\n\n /**\n * Buffer of objects that are yet to be rendered.\n *\n * @member {PIXI.DisplayObject[]}\n * @private\n */\n this._bufferedElements = [];\n\n /**\n * Number of elements that are buffered and are\n * waiting to be flushed.\n *\n * @member {number}\n * @private\n */\n this._bufferSize = 0;\n\n /**\n * This shader is generated by `this.shaderGenerator`.\n *\n * It is generated specifically to handle the required\n * number of textures being batched together.\n *\n * @member {PIXI.Shader}\n * @protected\n */\n this._shader = null;\n\n /**\n * Pool of `this.geometryClass` geometry objects\n * that store buffers. They are used to pass data\n * to the shader on each draw call.\n *\n * These are never re-allocated again, unless a\n * context change occurs; however, the pool may\n * be expanded if required.\n *\n * @member {PIXI.Geometry[]}\n * @private\n * @see PIXI.AbstractBatchRenderer.contextChange\n */\n this._packedGeometries = [];\n\n /**\n * Size of `this._packedGeometries`. It can be expanded\n * if more than `this._packedGeometryPoolSize` flushes\n * occur in a single frame.\n *\n * @member {number}\n * @private\n */\n this._packedGeometryPoolSize = 2;\n\n /**\n * A flush may occur multiple times in a single\n * frame. On iOS devices or when\n * `settings.CAN_UPLOAD_SAME_BUFFER` is false, the\n * batch renderer does not upload data to the same\n * `WebGLBuffer` for performance reasons.\n *\n * This is the index into `packedGeometries` that points to\n * geometry holding the most recent buffers.\n *\n * @member {number}\n * @private\n */\n this._flushId = 0;\n\n /**\n * Pool of `BatchDrawCall` objects that `flush` used\n * to create \"batches\" of the objects being rendered.\n *\n * These are never re-allocated again.\n *\n * @member BatchDrawCall[]\n * @private\n */\n this._drawCalls = [];\n\n for (var k = 0; k < this.size / 4; k++)\n { // initialize the draw-calls pool to max size.\n this._drawCalls[k] = new BatchDrawCall();\n }\n\n /**\n * Pool of `ViewableBuffer` objects that are sorted in\n * order of increasing size. The flush method uses\n * the buffer with the least size above the amount\n * it requires. These are used for passing attributes.\n *\n * The first buffer has a size of 8; each subsequent\n * buffer has double capacity of its previous.\n *\n * @member {PIXI.ViewableBuffer}\n * @private\n * @see PIXI.AbstractBatchRenderer#getAttributeBuffer\n */\n this._aBuffers = {};\n\n /**\n * Pool of `Uint16Array` objects that are sorted in\n * order of increasing size. The flush method uses\n * the buffer with the least size above the amount\n * it requires. These are used for passing indices.\n *\n * The first buffer has a size of 12; each subsequent\n * buffer has double capacity of its previous.\n *\n * @member {Uint16Array[]}\n * @private\n * @see PIXI.AbstractBatchRenderer#getIndexBuffer\n */\n this._iBuffers = {};\n\n /**\n * Maximum number of textures that can be uploaded to\n * the GPU under the current context. It is initialized\n * properly in `this.contextChange`.\n *\n * @member {number}\n * @see PIXI.AbstractBatchRenderer#contextChange\n * @readonly\n */\n this.MAX_TEXTURES = 1;\n\n this.renderer.on('prerender', this.onPrerender, this);\n renderer.runners.contextChange.add(this);\n }\n\n if ( ObjectRenderer ) AbstractBatchRenderer.__proto__ = ObjectRenderer;\n AbstractBatchRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n AbstractBatchRenderer.prototype.constructor = AbstractBatchRenderer;\n\n /**\n * Handles the `contextChange` signal.\n *\n * It calculates `this.MAX_TEXTURES` and allocating the\n * packed-geometry object pool.\n */\n AbstractBatchRenderer.prototype.contextChange = function contextChange ()\n {\n var gl = this.renderer.gl;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n this.MAX_TEXTURES = 1;\n }\n else\n {\n // step 1: first check max textures the GPU can handle.\n this.MAX_TEXTURES = Math.min(\n gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS),\n settings.SPRITE_MAX_TEXTURES);\n\n // step 2: check the maximum number of if statements the shader can have too..\n this.MAX_TEXTURES = checkMaxIfStatementsInShader(\n this.MAX_TEXTURES, gl);\n }\n\n this._shader = this.shaderGenerator.generateShader(this.MAX_TEXTURES);\n\n // we use the second shader as the first one depending on your browser\n // may omit aTextureId as it is not used by the shader so is optimized out.\n for (var i = 0; i < this._packedGeometryPoolSize; i++)\n {\n /* eslint-disable max-len */\n this._packedGeometries[i] = new (this.geometryClass)();\n }\n };\n\n /**\n * Handles the `prerender` signal.\n *\n * It ensures that flushes start from the first geometry\n * object again.\n */\n AbstractBatchRenderer.prototype.onPrerender = function onPrerender ()\n {\n this._flushId = 0;\n };\n\n /**\n * Buffers the \"batchable\" object. It need not be rendered\n * immediately.\n *\n * @param {PIXI.Sprite} sprite - the sprite to render when\n * using this spritebatch\n */\n AbstractBatchRenderer.prototype.render = function render (element)\n {\n if (!element._texture.valid)\n {\n return;\n }\n\n if (this._vertexCount + (element.vertexData.length / 2) > this.size)\n {\n this.flush();\n }\n\n this._vertexCount += element.vertexData.length / 2;\n this._indexCount += element.indices.length;\n this._bufferedElements[this._bufferSize++] = element;\n };\n\n /**\n * Renders the content _now_ and empties the current batch.\n */\n AbstractBatchRenderer.prototype.flush = function flush ()\n {\n if (this._vertexCount === 0)\n {\n return;\n }\n\n var attributeBuffer = this.getAttributeBuffer(this._vertexCount);\n var indexBuffer = this.getIndexBuffer(this._indexCount);\n var gl = this.renderer.gl;\n\n var ref = this;\n var elements = ref._bufferedElements;\n var drawCalls = ref._drawCalls;\n var MAX_TEXTURES = ref.MAX_TEXTURES;\n var packedGeometries = ref._packedGeometries;\n var vertexSize = ref.vertexSize;\n\n var touch = this.renderer.textureGC.count;\n\n var index = 0;\n var _indexCount = 0;\n\n var nextTexture;\n var currentTexture;\n var textureCount = 0;\n\n var currentGroup = drawCalls[0];\n var groupCount = 0;\n\n var blendMode = -1;// blend-mode of previous element/sprite/object!\n\n currentGroup.textureCount = 0;\n currentGroup.start = 0;\n currentGroup.blend = blendMode;\n\n var TICK = ++BaseTexture._globalBatch;\n var i;\n\n for (i = 0; i < this._bufferSize; ++i)\n {\n var sprite = elements[i];\n\n elements[i] = null;\n nextTexture = sprite._texture.baseTexture;\n\n var spriteBlendMode = premultiplyBlendMode[\n nextTexture.premultiplyAlpha ? 1 : 0][sprite.blendMode];\n\n if (blendMode !== spriteBlendMode)\n {\n blendMode = spriteBlendMode;\n\n // force the batch to break!\n currentTexture = null;\n textureCount = MAX_TEXTURES;\n TICK++;\n }\n\n if (currentTexture !== nextTexture)\n {\n currentTexture = nextTexture;\n\n if (nextTexture._batchEnabled !== TICK)\n {\n if (textureCount === MAX_TEXTURES)\n {\n TICK++;\n\n textureCount = 0;\n\n currentGroup.size = _indexCount - currentGroup.start;\n\n currentGroup = drawCalls[groupCount++];\n currentGroup.textureCount = 0;\n currentGroup.blend = blendMode;\n currentGroup.start = _indexCount;\n }\n\n nextTexture.touched = touch;\n nextTexture._batchEnabled = TICK;\n nextTexture._id = textureCount;\n\n currentGroup.textures[currentGroup.textureCount++] = nextTexture;\n textureCount++;\n }\n }\n\n this.packInterleavedGeometry(sprite, attributeBuffer,\n indexBuffer, index, _indexCount);\n\n // push a graphics..\n index += (sprite.vertexData.length / 2) * vertexSize;\n _indexCount += sprite.indices.length;\n }\n\n BaseTexture._globalBatch = TICK;\n currentGroup.size = _indexCount - currentGroup.start;\n\n if (!settings.CAN_UPLOAD_SAME_BUFFER)\n { /* Usually on iOS devices, where the browser doesn't\n like uploads to the same buffer in a single frame. */\n if (this._packedGeometryPoolSize <= this._flushId)\n {\n this._packedGeometryPoolSize++;\n packedGeometries[this._flushId] = new (this.geometryClass)();\n }\n\n packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0);\n packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0);\n\n this.renderer.geometry.bind(packedGeometries[this._flushId]);\n this.renderer.geometry.updateBuffers();\n this._flushId++;\n }\n else\n {\n // lets use the faster option, always use buffer number 0\n packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0);\n packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0);\n\n this.renderer.geometry.updateBuffers();\n }\n\n var textureSystem = this.renderer.texture;\n var stateSystem = this.renderer.state;\n\n // Upload textures and do the draw calls\n for (i = 0; i < groupCount; i++)\n {\n var group = drawCalls[i];\n var groupTextureCount = group.textureCount;\n\n for (var j = 0; j < groupTextureCount; j++)\n {\n textureSystem.bind(group.textures[j], j);\n group.textures[j] = null;\n }\n\n stateSystem.setBlendMode(group.blend);\n gl.drawElements(group.type, group.size, gl.UNSIGNED_SHORT, group.start * 2);\n }\n\n // reset elements for the next flush\n this._bufferSize = 0;\n this._vertexCount = 0;\n this._indexCount = 0;\n };\n\n /**\n * Starts a new sprite batch.\n */\n AbstractBatchRenderer.prototype.start = function start ()\n {\n this.renderer.state.set(this.state);\n\n this.renderer.shader.bind(this._shader);\n\n if (settings.CAN_UPLOAD_SAME_BUFFER)\n {\n // bind buffer #0, we don't need others\n this.renderer.geometry.bind(this._packedGeometries[this._flushId]);\n }\n };\n\n /**\n * Stops and flushes the current batch.\n */\n AbstractBatchRenderer.prototype.stop = function stop ()\n {\n this.flush();\n };\n\n /**\n * Destroys this `AbstractBatchRenderer`. It cannot be used again.\n */\n AbstractBatchRenderer.prototype.destroy = function destroy ()\n {\n for (var i = 0; i < this._packedGeometryPoolSize; i++)\n {\n if (this._packedGeometries[i])\n {\n this._packedGeometries[i].destroy();\n }\n }\n\n this.renderer.off('prerender', this.onPrerender, this);\n\n this._aBuffers = null;\n this._iBuffers = null;\n this._packedGeometries = null;\n this._drawCalls = null;\n\n if (this._shader)\n {\n this._shader.destroy();\n this._shader = null;\n }\n\n ObjectRenderer.prototype.destroy.call(this);\n };\n\n /**\n * Fetches an attribute buffer from `this._aBuffers` that\n * can hold atleast `size` floats.\n *\n * @param {number} size - minimum capacity required\n * @return {ViewableBuffer} - buffer than can hold atleast `size` floats\n * @private\n */\n AbstractBatchRenderer.prototype.getAttributeBuffer = function getAttributeBuffer (size)\n {\n // 8 vertices is enough for 2 quads\n var roundedP2 = nextPow2(Math.ceil(size / 8));\n var roundedSizeIndex = log2(roundedP2);\n var roundedSize = roundedP2 * 8;\n\n if (this._aBuffers.length <= roundedSizeIndex)\n {\n this._iBuffers.length = roundedSizeIndex + 1;\n }\n\n var buffer = this._aBuffers[roundedSize];\n\n if (!buffer)\n {\n this._aBuffers[roundedSize] = buffer = new ViewableBuffer(roundedSize * this.vertexSize * 4);\n }\n\n return buffer;\n };\n\n /**\n * Fetches an index buffer from `this._iBuffers` that can\n * has atleast `size` capacity.\n *\n * @param {number} size - minimum required capacity\n * @return {Uint16Array} - buffer that can fit `size`\n * indices.\n * @private\n */\n AbstractBatchRenderer.prototype.getIndexBuffer = function getIndexBuffer (size)\n {\n // 12 indices is enough for 2 quads\n var roundedP2 = nextPow2(Math.ceil(size / 12));\n var roundedSizeIndex = log2(roundedP2);\n var roundedSize = roundedP2 * 12;\n\n if (this._iBuffers.length <= roundedSizeIndex)\n {\n this._iBuffers.length = roundedSizeIndex + 1;\n }\n\n var buffer = this._iBuffers[roundedSizeIndex];\n\n if (!buffer)\n {\n this._iBuffers[roundedSizeIndex] = buffer = new Uint16Array(roundedSize);\n }\n\n return buffer;\n };\n\n /**\n * Takes the four batching parameters of `element`, interleaves\n * and pushes them into the batching attribute/index buffers given.\n *\n * It uses these properties: `vertexData` `uvs`, `textureId` and\n * `indicies`. It also uses the \"tint\" of the base-texture, if\n * present.\n *\n * @param {PIXI.Sprite} element - element being rendered\n * @param {PIXI.ViewableBuffer} attributeBuffer - attribute buffer.\n * @param {Uint16Array} indexBuffer - index buffer\n * @param {number} aIndex - number of floats already in the attribute buffer\n * @param {number} iIndex - number of indices already in `indexBuffer`\n */\n AbstractBatchRenderer.prototype.packInterleavedGeometry = function packInterleavedGeometry (element, attributeBuffer, indexBuffer, aIndex, iIndex)\n {\n var uint32View = attributeBuffer.uint32View;\n var float32View = attributeBuffer.float32View;\n\n var packedVertices = aIndex / this.vertexSize;\n var uvs = element.uvs;\n var indicies = element.indices;\n var vertexData = element.vertexData;\n var textureId = element._texture.baseTexture._id;\n\n var alpha = Math.min(element.worldAlpha, 1.0);\n var argb = (alpha < 1.0\n && element._texture.baseTexture.premultiplyAlpha)\n ? premultiplyTint(element._tintRGB, alpha)\n : element._tintRGB + (alpha * 255 << 24);\n\n // lets not worry about tint! for now..\n for (var i = 0; i < vertexData.length; i += 2)\n {\n float32View[aIndex++] = vertexData[i];\n float32View[aIndex++] = vertexData[i + 1];\n float32View[aIndex++] = uvs[i];\n float32View[aIndex++] = uvs[i + 1];\n uint32View[aIndex++] = argb;\n float32View[aIndex++] = textureId;\n }\n\n for (var i$1 = 0; i$1 < indicies.length; i$1++)\n {\n indexBuffer[iIndex++] = packedVertices + indicies[i$1];\n }\n };\n\n return AbstractBatchRenderer;\n}(ObjectRenderer));\n\n/**\n * Helper that generates batching multi-texture shader. Use it with your new BatchRenderer\n *\n * @class\n * @memberof PIXI\n */\nvar BatchShaderGenerator = function BatchShaderGenerator(vertexSrc, fragTemplate)\n{\n /**\n * Reference to the vertex shader source.\n *\n * @member {string}\n */\n this.vertexSrc = vertexSrc;\n\n /**\n * Reference to the fragement shader template. Must contain \"%count%\" and \"%forloop%\".\n *\n * @member {string}\n */\n this.fragTemplate = fragTemplate;\n\n this.programCache = {};\n this.defaultGroupCache = {};\n\n if (fragTemplate.indexOf('%count%') < 0)\n {\n throw new Error('Fragment template must contain \"%count%\".');\n }\n\n if (fragTemplate.indexOf('%forloop%') < 0)\n {\n throw new Error('Fragment template must contain \"%forloop%\".');\n }\n};\n\nBatchShaderGenerator.prototype.generateShader = function generateShader (maxTextures)\n{\n if (!this.programCache[maxTextures])\n {\n var sampleValues = new Int32Array(maxTextures);\n\n for (var i = 0; i < maxTextures; i++)\n {\n sampleValues[i] = i;\n }\n\n this.defaultGroupCache[maxTextures] = UniformGroup.from({ uSamplers: sampleValues }, true);\n\n var fragmentSrc = this.fragTemplate;\n\n fragmentSrc = fragmentSrc.replace(/%count%/gi, (\"\" + maxTextures));\n fragmentSrc = fragmentSrc.replace(/%forloop%/gi, this.generateSampleSrc(maxTextures));\n\n this.programCache[maxTextures] = new Program(this.vertexSrc, fragmentSrc);\n }\n\n var uniforms = {\n tint: new Float32Array([1, 1, 1, 1]),\n translationMatrix: new Matrix(),\n default: this.defaultGroupCache[maxTextures],\n };\n\n return new Shader(this.programCache[maxTextures], uniforms);\n};\n\nBatchShaderGenerator.prototype.generateSampleSrc = function generateSampleSrc (maxTextures)\n{\n var src = '';\n\n src += '\\n';\n src += '\\n';\n\n for (var i = 0; i < maxTextures; i++)\n {\n if (i > 0)\n {\n src += '\\nelse ';\n }\n\n if (i < maxTextures - 1)\n {\n src += \"if(vTextureId < \" + i + \".5)\";\n }\n\n src += '\\n{';\n src += \"\\n\\tcolor = texture2D(uSamplers[\" + i + \"], vTextureCoord);\";\n src += '\\n}';\n }\n\n src += '\\n';\n src += '\\n';\n\n return src;\n};\n\n/**\n * Geometry used to batch standard PIXI content (e.g. Mesh, Sprite, Graphics objects).\n *\n * @class\n * @memberof PIXI\n */\nvar BatchGeometry = /*@__PURE__*/(function (Geometry) {\n function BatchGeometry(_static)\n {\n if ( _static === void 0 ) _static = false;\n\n Geometry.call(this);\n\n /**\n * Buffer used for position, color, texture IDs\n *\n * @member {PIXI.Buffer}\n * @protected\n */\n this._buffer = new Buffer(null, _static, false);\n\n /**\n * Index buffer data\n *\n * @member {PIXI.Buffer}\n * @protected\n */\n this._indexBuffer = new Buffer(null, _static, true);\n\n this.addAttribute('aVertexPosition', this._buffer, 2, false, TYPES.FLOAT)\n .addAttribute('aTextureCoord', this._buffer, 2, false, TYPES.FLOAT)\n .addAttribute('aColor', this._buffer, 4, true, TYPES.UNSIGNED_BYTE)\n .addAttribute('aTextureId', this._buffer, 1, true, TYPES.FLOAT)\n .addIndex(this._indexBuffer);\n }\n\n if ( Geometry ) BatchGeometry.__proto__ = Geometry;\n BatchGeometry.prototype = Object.create( Geometry && Geometry.prototype );\n BatchGeometry.prototype.constructor = BatchGeometry;\n\n return BatchGeometry;\n}(Geometry));\n\nvar defaultVertex$2 = \"precision highp float;\\nattribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\nattribute vec4 aColor;\\nattribute float aTextureId;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform vec4 tint;\\n\\nvarying vec2 vTextureCoord;\\nvarying vec4 vColor;\\nvarying float vTextureId;\\n\\nvoid main(void){\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vTextureId = aTextureId;\\n vColor = aColor * tint;\\n}\\n\";\n\nvar defaultFragment$2 = \"varying vec2 vTextureCoord;\\nvarying vec4 vColor;\\nvarying float vTextureId;\\nuniform sampler2D uSamplers[%count%];\\n\\nvoid main(void){\\n vec4 color;\\n %forloop%\\n gl_FragColor = color * vColor;\\n}\\n\";\n\n/**\n * @class\n * @memberof PIXI\n * @hideconstructor\n */\nvar BatchPluginFactory = function BatchPluginFactory () {};\n\nvar staticAccessors$1 = { defaultVertexSrc: { configurable: true },defaultFragmentTemplate: { configurable: true } };\n\nBatchPluginFactory.create = function create (options)\n{\n var ref = Object.assign({\n vertex: defaultVertex$2,\n fragment: defaultFragment$2,\n geometryClass: BatchGeometry,\n vertexSize: 6,\n }, options);\n var vertex = ref.vertex;\n var fragment = ref.fragment;\n var vertexSize = ref.vertexSize;\n var geometryClass = ref.geometryClass;\n\n return /*@__PURE__*/(function (AbstractBatchRenderer) {\n function BatchPlugin(renderer)\n {\n AbstractBatchRenderer.call(this, renderer);\n\n this.shaderGenerator = new BatchShaderGenerator(vertex, fragment);\n this.geometryClass = geometryClass;\n this.vertexSize = vertexSize;\n }\n\n if ( AbstractBatchRenderer ) BatchPlugin.__proto__ = AbstractBatchRenderer;\n BatchPlugin.prototype = Object.create( AbstractBatchRenderer && AbstractBatchRenderer.prototype );\n BatchPlugin.prototype.constructor = BatchPlugin;\n\n return BatchPlugin;\n }(AbstractBatchRenderer));\n};\n\n/**\n * The default vertex shader source\n *\n * @static\n * @type {string}\n * @constant\n */\nstaticAccessors$1.defaultVertexSrc.get = function ()\n{\n return defaultVertex$2;\n};\n\n/**\n * The default fragment shader source\n *\n * @static\n * @type {string}\n * @constant\n */\nstaticAccessors$1.defaultFragmentTemplate.get = function ()\n{\n return defaultFragment$2;\n};\n\nObject.defineProperties( BatchPluginFactory, staticAccessors$1 );\n\n// Setup the default BatchRenderer plugin, this is what\n// we'll actually export at the root level\nvar BatchRenderer = BatchPluginFactory.create();\n\nexport { AbstractBatchRenderer, AbstractRenderer, Attribute, BaseRenderTexture, BaseTexture, BatchDrawCall, BatchGeometry, BatchPluginFactory, BatchRenderer, BatchShaderGenerator, Buffer, CubeTexture, Filter, Framebuffer, GLProgram, BaseTexture as GLTexture, Geometry, ObjectRenderer, Program, Quad, QuadUv, RenderTexture, RenderTexturePool, Renderer, Shader, SpriteMaskFilter, State, System, Texture, TextureMatrix, TextureUvs, UniformGroup, ViewableBuffer, autoDetectRenderer, checkMaxIfStatementsInShader, defaultFilter as defaultFilterVertex, _default as defaultVertex, index as resources, systems };\n//# sourceMappingURL=core.es.js.map\n","/*!\n * @pixi/extract - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/extract is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { RenderTexture } from '@pixi/core';\nimport { CanvasRenderTarget } from '@pixi/utils';\nimport { Rectangle } from '@pixi/math';\n\nvar TEMP_RECT = new Rectangle();\nvar BYTES_PER_PIXEL = 4;\n\n/**\n * The extract manager provides functionality to export content from the renderers.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.extract`\n *\n * @class\n * @memberof PIXI.extract\n */\nvar Extract = function Extract(renderer)\n{\n this.renderer = renderer;\n /**\n * Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture\n *\n * @member {PIXI.extract.Extract} extract\n * @memberof PIXI.Renderer#\n * @see PIXI.extract.Extract\n */\n renderer.extract = this;\n};\n\n/**\n * Will return a HTML Image of the target\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @param {string} [format] - Image format, e.g. \"image/jpeg\" or \"image/webp\".\n * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92.\n * @return {HTMLImageElement} HTML Image of the target\n */\nExtract.prototype.image = function image (target, format, quality)\n{\n var image = new Image();\n\n image.src = this.base64(target, format, quality);\n\n return image;\n};\n\n/**\n * Will return a a base64 encoded string of this target. It works by calling\n * `Extract.getCanvas` and then running toDataURL on that.\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @param {string} [format] - Image format, e.g. \"image/jpeg\" or \"image/webp\".\n * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92.\n * @return {string} A base64 encoded string of the texture.\n */\nExtract.prototype.base64 = function base64 (target, format, quality)\n{\n return this.canvas(target).toDataURL(format, quality);\n};\n\n/**\n * Creates a Canvas element, renders this target to it and then returns it.\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @return {HTMLCanvasElement} A Canvas element with the texture rendered on.\n */\nExtract.prototype.canvas = function canvas (target)\n{\n var renderer = this.renderer;\n var resolution;\n var frame;\n var flipY = false;\n var renderTexture;\n var generated = false;\n\n if (target)\n {\n if (target instanceof RenderTexture)\n {\n renderTexture = target;\n }\n else\n {\n renderTexture = this.renderer.generateTexture(target);\n generated = true;\n }\n }\n\n if (renderTexture)\n {\n resolution = renderTexture.baseTexture.resolution;\n frame = renderTexture.frame;\n flipY = false;\n renderer.renderTexture.bind(renderTexture);\n }\n else\n {\n resolution = this.renderer.resolution;\n\n flipY = true;\n\n frame = TEMP_RECT;\n frame.width = this.renderer.width;\n frame.height = this.renderer.height;\n\n renderer.renderTexture.bind(null);\n }\n\n var width = Math.floor(frame.width * resolution);\n var height = Math.floor(frame.height * resolution);\n\n var canvasBuffer = new CanvasRenderTarget(width, height, 1);\n\n var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height);\n\n // read pixels to the array\n var gl = renderer.gl;\n\n gl.readPixels(\n frame.x * resolution,\n frame.y * resolution,\n width,\n height,\n gl.RGBA,\n gl.UNSIGNED_BYTE,\n webglPixels\n );\n\n // add the pixels to the canvas\n var canvasData = canvasBuffer.context.getImageData(0, 0, width, height);\n\n Extract.arrayPostDivide(webglPixels, canvasData.data);\n\n canvasBuffer.context.putImageData(canvasData, 0, 0);\n\n // pulling pixels\n if (flipY)\n {\n canvasBuffer.context.scale(1, -1);\n canvasBuffer.context.drawImage(canvasBuffer.canvas, 0, -height);\n }\n\n if (generated)\n {\n renderTexture.destroy(true);\n }\n\n // send the canvas back..\n return canvasBuffer.canvas;\n};\n\n/**\n * Will return a one-dimensional array containing the pixel data of the entire texture in RGBA\n * order, with integer values between 0 and 255 (included).\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @return {Uint8Array} One-dimensional array containing the pixel data of the entire texture\n */\nExtract.prototype.pixels = function pixels (target)\n{\n var renderer = this.renderer;\n var resolution;\n var frame;\n var renderTexture;\n var generated = false;\n\n if (target)\n {\n if (target instanceof RenderTexture)\n {\n renderTexture = target;\n }\n else\n {\n renderTexture = this.renderer.generateTexture(target);\n generated = true;\n }\n }\n\n if (renderTexture)\n {\n resolution = renderTexture.baseTexture.resolution;\n frame = renderTexture.frame;\n\n // bind the buffer\n renderer.renderTexture.bind(renderTexture);\n }\n else\n {\n resolution = renderer.resolution;\n\n frame = TEMP_RECT;\n frame.width = renderer.width;\n frame.height = renderer.height;\n\n renderer.renderTexture.bind(null);\n }\n\n var width = frame.width * resolution;\n var height = frame.height * resolution;\n\n var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height);\n\n // read pixels to the array\n var gl = renderer.gl;\n\n gl.readPixels(\n frame.x * resolution,\n frame.y * resolution,\n width,\n height,\n gl.RGBA,\n gl.UNSIGNED_BYTE,\n webglPixels\n );\n\n if (generated)\n {\n renderTexture.destroy(true);\n }\n\n Extract.arrayPostDivide(webglPixels, webglPixels);\n\n return webglPixels;\n};\n\n/**\n * Destroys the extract\n *\n */\nExtract.prototype.destroy = function destroy ()\n{\n this.renderer.extract = null;\n this.renderer = null;\n};\n\n/**\n * Takes premultiplied pixel data and produces regular pixel data\n *\n * @private\n * @param pixels {number[] | Uint8Array | Uint8ClampedArray} array of pixel data\n * @param out {number[] | Uint8Array | Uint8ClampedArray} output array\n */\nExtract.arrayPostDivide = function arrayPostDivide (pixels, out)\n{\n for (var i = 0; i < pixels.length; i += 4)\n {\n var alpha = out[i + 3] = pixels[i + 3];\n\n if (alpha !== 0)\n {\n out[i] = Math.round(Math.min(pixels[i] * 255.0 / alpha, 255.0));\n out[i + 1] = Math.round(Math.min(pixels[i + 1] * 255.0 / alpha, 255.0));\n out[i + 2] = Math.round(Math.min(pixels[i + 2] * 255.0 / alpha, 255.0));\n }\n else\n {\n out[i] = pixels[i];\n out[i + 1] = pixels[i + 1];\n out[i + 2] = pixels[i + 2];\n }\n }\n};\n\n/**\n * This namespace provides renderer-specific plugins for exporting content from a renderer.\n * For instance, these plugins can be used for saving an Image, Canvas element or for exporting the raw image data (pixels).\n *\n * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @example\n * // Create a new app (will auto-add extract plugin to renderer)\n * const app = new PIXI.Application();\n *\n * // Draw a red circle\n * const graphics = new PIXI.Graphics()\n * .beginFill(0xFF0000)\n * .drawCircle(0, 0, 50);\n *\n * // Render the graphics as an HTMLImageElement\n * const image = app.renderer.plugins.extract.image(graphics);\n * document.body.appendChild(image);\n * @namespace PIXI.extract\n */\n\nexport { Extract };\n//# sourceMappingURL=extract.es.js.map\n","/*!\n * @pixi/interaction - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/interaction is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Point } from '@pixi/math';\nimport { Ticker, UPDATE_PRIORITY } from '@pixi/ticker';\nimport { DisplayObject } from '@pixi/display';\nimport { EventEmitter } from '@pixi/utils';\n\n/**\n * Holds all information related to an Interaction event\n *\n * @class\n * @memberof PIXI.interaction\n */\nvar InteractionData = function InteractionData()\n{\n /**\n * This point stores the global coords of where the touch/mouse event happened\n *\n * @member {PIXI.Point}\n */\n this.global = new Point();\n\n /**\n * The target Sprite that was interacted with\n *\n * @member {PIXI.Sprite}\n */\n this.target = null;\n\n /**\n * When passed to an event handler, this will be the original DOM Event that was captured\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent\n * @see https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent\n * @member {MouseEvent|TouchEvent|PointerEvent}\n */\n this.originalEvent = null;\n\n /**\n * Unique identifier for this interaction\n *\n * @member {number}\n */\n this.identifier = null;\n\n /**\n * Indicates whether or not the pointer device that created the event is the primary pointer.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary\n * @type {Boolean}\n */\n this.isPrimary = false;\n\n /**\n * Indicates which button was pressed on the mouse or pointer device to trigger the event.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button\n * @type {number}\n */\n this.button = 0;\n\n /**\n * Indicates which buttons are pressed on the mouse or pointer device when the event is triggered.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/buttons\n * @type {number}\n */\n this.buttons = 0;\n\n /**\n * The width of the pointer's contact along the x-axis, measured in CSS pixels.\n * radiusX of TouchEvents will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width\n * @type {number}\n */\n this.width = 0;\n\n /**\n * The height of the pointer's contact along the y-axis, measured in CSS pixels.\n * radiusY of TouchEvents will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height\n * @type {number}\n */\n this.height = 0;\n\n /**\n * The angle, in degrees, between the pointer device and the screen.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX\n * @type {number}\n */\n this.tiltX = 0;\n\n /**\n * The angle, in degrees, between the pointer device and the screen.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY\n * @type {number}\n */\n this.tiltY = 0;\n\n /**\n * The type of pointer that triggered the event.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType\n * @type {string}\n */\n this.pointerType = null;\n\n /**\n * Pressure applied by the pointing device during the event. A Touch's force property\n * will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure\n * @type {number}\n */\n this.pressure = 0;\n\n /**\n * From TouchEvents (not PointerEvents triggered by touches), the rotationAngle of the Touch.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle\n * @type {number}\n */\n this.rotationAngle = 0;\n\n /**\n * Twist of a stylus pointer.\n * @see https://w3c.github.io/pointerevents/#pointerevent-interface\n * @type {number}\n */\n this.twist = 0;\n\n /**\n * Barrel pressure on a stylus pointer.\n * @see https://w3c.github.io/pointerevents/#pointerevent-interface\n * @type {number}\n */\n this.tangentialPressure = 0;\n};\n\nvar prototypeAccessors = { pointerId: { configurable: true } };\n\n/**\n * The unique identifier of the pointer. It will be the same as `identifier`.\n * @readonly\n * @member {number}\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId\n */\nprototypeAccessors.pointerId.get = function ()\n{\n return this.identifier;\n};\n\n/**\n * This will return the local coordinates of the specified displayObject for this InteractionData\n *\n * @param {PIXI.DisplayObject} displayObject - The DisplayObject that you would like the local\n * coords off\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional (otherwise\n * will create a new point)\n * @param {PIXI.Point} [globalPos] - A Point object containing your custom global coords, optional\n * (otherwise will use the current global coords)\n * @return {PIXI.Point} A point containing the coordinates of the InteractionData position relative\n * to the DisplayObject\n */\nInteractionData.prototype.getLocalPosition = function getLocalPosition (displayObject, point, globalPos)\n{\n return displayObject.worldTransform.applyInverse(globalPos || this.global, point);\n};\n\n/**\n * Copies properties from normalized event data.\n *\n * @param {Touch|MouseEvent|PointerEvent} event The normalized event data\n */\nInteractionData.prototype.copyEvent = function copyEvent (event)\n{\n // isPrimary should only change on touchstart/pointerdown, so we don't want to overwrite\n // it with \"false\" on later events when our shim for it on touch events might not be\n // accurate\n if (event.isPrimary)\n {\n this.isPrimary = true;\n }\n this.button = event.button;\n // event.buttons is not available in all browsers (ie. Safari), but it does have a non-standard\n // event.which property instead, which conveys the same information.\n this.buttons = Number.isInteger(event.buttons) ? event.buttons : event.which;\n this.width = event.width;\n this.height = event.height;\n this.tiltX = event.tiltX;\n this.tiltY = event.tiltY;\n this.pointerType = event.pointerType;\n this.pressure = event.pressure;\n this.rotationAngle = event.rotationAngle;\n this.twist = event.twist || 0;\n this.tangentialPressure = event.tangentialPressure || 0;\n};\n\n/**\n * Resets the data for pooling.\n */\nInteractionData.prototype.reset = function reset ()\n{\n // isPrimary is the only property that we really need to reset - everything else is\n // guaranteed to be overwritten\n this.isPrimary = false;\n};\n\nObject.defineProperties( InteractionData.prototype, prototypeAccessors );\n\n/**\n * Event class that mimics native DOM events.\n *\n * @class\n * @memberof PIXI.interaction\n */\nvar InteractionEvent = function InteractionEvent()\n{\n /**\n * Whether this event will continue propagating in the tree.\n *\n * Remaining events for the {@link stopsPropagatingAt} object\n * will still be dispatched.\n *\n * @member {boolean}\n */\n this.stopped = false;\n\n /**\n * At which object this event stops propagating.\n *\n * @private\n * @member {PIXI.DisplayObject}\n */\n this.stopsPropagatingAt = null;\n\n /**\n * Whether we already reached the element we want to\n * stop propagating at. This is important for delayed events,\n * where we start over deeper in the tree again.\n *\n * @private\n * @member {boolean}\n */\n this.stopPropagationHint = false;\n\n /**\n * The object which caused this event to be dispatched.\n * For listener callback see {@link PIXI.interaction.InteractionEvent.currentTarget}.\n *\n * @member {PIXI.DisplayObject}\n */\n this.target = null;\n\n /**\n * The object whose event listener’s callback is currently being invoked.\n *\n * @member {PIXI.DisplayObject}\n */\n this.currentTarget = null;\n\n /**\n * Type of the event\n *\n * @member {string}\n */\n this.type = null;\n\n /**\n * InteractionData related to this event\n *\n * @member {PIXI.interaction.InteractionData}\n */\n this.data = null;\n};\n\n/**\n * Prevents event from reaching any objects other than the current object.\n *\n */\nInteractionEvent.prototype.stopPropagation = function stopPropagation ()\n{\n this.stopped = true;\n this.stopPropagationHint = true;\n this.stopsPropagatingAt = this.currentTarget;\n};\n\n/**\n * Resets the event.\n */\nInteractionEvent.prototype.reset = function reset ()\n{\n this.stopped = false;\n this.stopsPropagatingAt = null;\n this.stopPropagationHint = false;\n this.currentTarget = null;\n this.target = null;\n};\n\n/**\n * DisplayObjects with the {@link PIXI.interaction.interactiveTarget} mixin use this class to track interactions\n *\n * @class\n * @private\n * @memberof PIXI.interaction\n */\nvar InteractionTrackingData = function InteractionTrackingData(pointerId)\n{\n this._pointerId = pointerId;\n this._flags = InteractionTrackingData.FLAGS.NONE;\n};\n\nvar prototypeAccessors$1 = { pointerId: { configurable: true },flags: { configurable: true },none: { configurable: true },over: { configurable: true },rightDown: { configurable: true },leftDown: { configurable: true } };\n\n/**\n *\n * @private\n * @param {number} flag - The interaction flag to set\n * @param {boolean} yn - Should the flag be set or unset\n */\nInteractionTrackingData.prototype._doSet = function _doSet (flag, yn)\n{\n if (yn)\n {\n this._flags = this._flags | flag;\n }\n else\n {\n this._flags = this._flags & (~flag);\n }\n};\n\n/**\n * Unique pointer id of the event\n *\n * @readonly\n * @private\n * @member {number}\n */\nprototypeAccessors$1.pointerId.get = function ()\n{\n return this._pointerId;\n};\n\n/**\n * State of the tracking data, expressed as bit flags\n *\n * @private\n * @member {number}\n */\nprototypeAccessors$1.flags.get = function ()\n{\n return this._flags;\n};\n\nprototypeAccessors$1.flags.set = function (flags) // eslint-disable-line require-jsdoc\n{\n this._flags = flags;\n};\n\n/**\n * Is the tracked event inactive (not over or down)?\n *\n * @private\n * @member {number}\n */\nprototypeAccessors$1.none.get = function ()\n{\n return this._flags === this.constructor.FLAGS.NONE;\n};\n\n/**\n * Is the tracked event over the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.over.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.OVER) !== 0;\n};\n\nprototypeAccessors$1.over.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.OVER, yn);\n};\n\n/**\n * Did the right mouse button come down in the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.rightDown.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.RIGHT_DOWN) !== 0;\n};\n\nprototypeAccessors$1.rightDown.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.RIGHT_DOWN, yn);\n};\n\n/**\n * Did the left mouse button come down in the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.leftDown.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.LEFT_DOWN) !== 0;\n};\n\nprototypeAccessors$1.leftDown.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.LEFT_DOWN, yn);\n};\n\nObject.defineProperties( InteractionTrackingData.prototype, prototypeAccessors$1 );\n\nInteractionTrackingData.FLAGS = Object.freeze({\n NONE: 0,\n OVER: 1 << 0,\n LEFT_DOWN: 1 << 1,\n RIGHT_DOWN: 1 << 2,\n});\n\n/**\n * Interface for classes that represent a hit area.\n *\n * It is implemented by the following classes:\n * - {@link PIXI.Circle}\n * - {@link PIXI.Ellipse}\n * - {@link PIXI.Polygon}\n * - {@link PIXI.RoundedRectangle}\n *\n * @interface IHitArea\n * @memberof PIXI\n */\n\n/**\n * Checks whether the x and y coordinates given are contained within this area\n *\n * @method\n * @name contains\n * @memberof PIXI.IHitArea#\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this area\n */\n\n/**\n * Default property values of interactive objects\n * Used by {@link PIXI.interaction.InteractionManager} to automatically give all DisplayObjects these properties\n *\n * @private\n * @name interactiveTarget\n * @type {Object}\n * @memberof PIXI.interaction\n * @example\n * function MyObject() {}\n *\n * Object.assign(\n * DisplayObject.prototype,\n * PIXI.interaction.interactiveTarget\n * );\n */\nvar interactiveTarget = {\n\n /**\n * Enable interaction events for the DisplayObject. Touch, pointer and mouse\n * events will not be emitted unless `interactive` is set to `true`.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.on('tap', (event) => {\n * //handle event\n * });\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n interactive: false,\n\n /**\n * Determines if the children to the displayObject can be clicked/touched\n * Setting this to false allows PixiJS to bypass a recursive `hitTest` function\n *\n * @member {boolean}\n * @memberof PIXI.Container#\n */\n interactiveChildren: true,\n\n /**\n * Interaction shape. Children will be hit first, then this shape will be checked.\n * Setting this will cause this shape to be checked in hit tests rather than the displayObject's bounds.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.hitArea = new PIXI.Rectangle(0, 0, 100, 100);\n * @member {PIXI.IHitArea}\n * @memberof PIXI.DisplayObject#\n */\n hitArea: null,\n\n /**\n * If enabled, the mouse cursor use the pointer behavior when hovered over the displayObject if it is interactive\n * Setting this changes the 'cursor' property to `'pointer'`.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.buttonMode = true;\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n get buttonMode()\n {\n return this.cursor === 'pointer';\n },\n set buttonMode(value)\n {\n if (value)\n {\n this.cursor = 'pointer';\n }\n else if (this.cursor === 'pointer')\n {\n this.cursor = null;\n }\n },\n\n /**\n * This defines what cursor mode is used when the mouse cursor\n * is hovered over the displayObject.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.cursor = 'wait';\n * @see https://developer.mozilla.org/en/docs/Web/CSS/cursor\n *\n * @member {string}\n * @memberof PIXI.DisplayObject#\n */\n cursor: null,\n\n /**\n * Internal set of all active pointers, by identifier\n *\n * @member {Map}\n * @memberof PIXI.DisplayObject#\n * @private\n */\n get trackedPointers()\n {\n if (this._trackedPointers === undefined) { this._trackedPointers = {}; }\n\n return this._trackedPointers;\n },\n\n /**\n * Map of all tracked pointers, by identifier. Use trackedPointers to access.\n *\n * @private\n * @type {Map}\n */\n _trackedPointers: undefined,\n};\n\n// Mix interactiveTarget into DisplayObject.prototype,\n// after deprecation has been handled\nDisplayObject.mixin(interactiveTarget);\n\nvar MOUSE_POINTER_ID = 1;\n\n// helpers for hitTest() - only used inside hitTest()\nvar hitTestEvent = {\n target: null,\n data: {\n global: null,\n },\n};\n\n/**\n * The interaction manager deals with mouse, touch and pointer events.\n *\n * Any DisplayObject can be interactive if its `interactive` property is set to true.\n *\n * This manager also supports multitouch.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.interaction`\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI.interaction\n */\nvar InteractionManager = /*@__PURE__*/(function (EventEmitter) {\n function InteractionManager(renderer, options)\n {\n EventEmitter.call(this);\n\n options = options || {};\n\n /**\n * The renderer this interaction manager works for.\n *\n * @member {PIXI.AbstractRenderer}\n */\n this.renderer = renderer;\n\n /**\n * Should default browser actions automatically be prevented.\n * Does not apply to pointer events for backwards compatibility\n * preventDefault on pointer events stops mouse events from firing\n * Thus, for every pointer event, there will always be either a mouse of touch event alongside it.\n *\n * @member {boolean}\n * @default true\n */\n this.autoPreventDefault = options.autoPreventDefault !== undefined ? options.autoPreventDefault : true;\n\n /**\n * Frequency in milliseconds that the mousemove, mouseover & mouseout interaction events will be checked.\n *\n * @member {number}\n * @default 10\n */\n this.interactionFrequency = options.interactionFrequency || 10;\n\n /**\n * The mouse data\n *\n * @member {PIXI.interaction.InteractionData}\n */\n this.mouse = new InteractionData();\n this.mouse.identifier = MOUSE_POINTER_ID;\n\n // setting the mouse to start off far off screen will mean that mouse over does\n // not get called before we even move the mouse.\n this.mouse.global.set(-999999);\n\n /**\n * Actively tracked InteractionData\n *\n * @private\n * @member {Object.}\n */\n this.activeInteractionData = {};\n this.activeInteractionData[MOUSE_POINTER_ID] = this.mouse;\n\n /**\n * Pool of unused InteractionData\n *\n * @private\n * @member {PIXI.interaction.InteractionData[]}\n */\n this.interactionDataPool = [];\n\n /**\n * An event data object to handle all the event tracking/dispatching\n *\n * @member {object}\n */\n this.eventData = new InteractionEvent();\n\n /**\n * The DOM element to bind to.\n *\n * @protected\n * @member {HTMLElement}\n */\n this.interactionDOMElement = null;\n\n /**\n * This property determines if mousemove and touchmove events are fired only when the cursor\n * is over the object.\n * Setting to true will make things work more in line with how the DOM version works.\n * Setting to false can make things easier for things like dragging\n * It is currently set to false as this is how PixiJS used to work. This will be set to true in\n * future versions of pixi.\n *\n * @member {boolean}\n * @default false\n */\n this.moveWhenInside = false;\n\n /**\n * Have events been attached to the dom element?\n *\n * @protected\n * @member {boolean}\n */\n this.eventsAdded = false;\n\n /**\n * Is the mouse hovering over the renderer?\n *\n * @protected\n * @member {boolean}\n */\n this.mouseOverRenderer = false;\n\n /**\n * Does the device support touch events\n * https://www.w3.org/TR/touch-events/\n *\n * @readonly\n * @member {boolean}\n */\n this.supportsTouchEvents = 'ontouchstart' in window;\n\n /**\n * Does the device support pointer events\n * https://www.w3.org/Submission/pointer-events/\n *\n * @readonly\n * @member {boolean}\n */\n this.supportsPointerEvents = !!window.PointerEvent;\n\n // this will make it so that you don't have to call bind all the time\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerUp = this.onPointerUp.bind(this);\n this.processPointerUp = this.processPointerUp.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerCancel = this.onPointerCancel.bind(this);\n this.processPointerCancel = this.processPointerCancel.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerDown = this.onPointerDown.bind(this);\n this.processPointerDown = this.processPointerDown.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerMove = this.onPointerMove.bind(this);\n this.processPointerMove = this.processPointerMove.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerOut = this.onPointerOut.bind(this);\n this.processPointerOverOut = this.processPointerOverOut.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerOver = this.onPointerOver.bind(this);\n\n /**\n * Dictionary of how different cursor modes are handled. Strings are handled as CSS cursor\n * values, objects are handled as dictionaries of CSS values for interactionDOMElement,\n * and functions are called instead of changing the CSS.\n * Default CSS cursor values are provided for 'default' and 'pointer' modes.\n * @member {Object.}\n */\n this.cursorStyles = {\n default: 'inherit',\n pointer: 'pointer',\n };\n\n /**\n * The mode of the cursor that is being used.\n * The value of this is a key from the cursorStyles dictionary.\n *\n * @member {string}\n */\n this.currentCursorMode = null;\n\n /**\n * Internal cached let.\n *\n * @private\n * @member {string}\n */\n this.cursor = null;\n\n /**\n * Internal cached let.\n *\n * @private\n * @member {PIXI.Point}\n */\n this._tempPoint = new Point();\n\n /**\n * The current resolution / device pixel ratio.\n *\n * @member {number}\n * @default 1\n */\n this.resolution = 1;\n\n /**\n * Delayed pointer events. Used to guarantee correct ordering of over/out events.\n *\n * @private\n * @member {Array}\n */\n this.delayedEvents = [];\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed on the display\n * object.\n *\n * @event PIXI.interaction.InteractionManager#mousedown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * on the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released over the display\n * object.\n *\n * @event PIXI.interaction.InteractionManager#mouseup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * over the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed and released on\n * the display object.\n *\n * @event PIXI.interaction.InteractionManager#click\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * and released on the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightclick\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released outside the\n * display object that initially registered a\n * [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown}.\n *\n * @event PIXI.interaction.InteractionManager#mouseupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * outside the display object that initially registered a\n * [rightdown]{@link PIXI.interaction.InteractionManager#event:rightdown}.\n *\n * @event PIXI.interaction.InteractionManager#rightupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved while over the display object\n *\n * @event PIXI.interaction.InteractionManager#mousemove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved onto the display object\n *\n * @event PIXI.interaction.InteractionManager#mouseover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved off the display object\n *\n * @event PIXI.interaction.InteractionManager#mouseout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed on the display object.\n *\n * @event PIXI.interaction.InteractionManager#pointerdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released over the display object.\n * Not always fired when some buttons are held down while others are released. In those cases,\n * use [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown} and\n * [mouseup]{@link PIXI.interaction.InteractionManager#event:mouseup} instead.\n *\n * @event PIXI.interaction.InteractionManager#pointerup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a pointer event\n *\n * @event PIXI.interaction.InteractionManager#pointercancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed and released on the display object.\n *\n * @event PIXI.interaction.InteractionManager#pointertap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released outside the display object that initially\n * registered a [pointerdown]{@link PIXI.interaction.InteractionManager#event:pointerdown}.\n *\n * @event PIXI.interaction.InteractionManager#pointerupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved while over the display object\n *\n * @event PIXI.interaction.InteractionManager#pointermove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved onto the display object\n *\n * @event PIXI.interaction.InteractionManager#pointerover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved off the display object\n *\n * @event PIXI.interaction.InteractionManager#pointerout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed on the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchstart\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed from the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchend\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a touch\n *\n * @event PIXI.interaction.InteractionManager#touchcancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed and removed from the display object.\n *\n * @event PIXI.interaction.InteractionManager#tap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed outside of the display object that initially\n * registered a [touchstart]{@link PIXI.interaction.InteractionManager#event:touchstart}.\n *\n * @event PIXI.interaction.InteractionManager#touchendoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is moved along the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchmove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed on the display.\n * object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mousedown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * on the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released over the display\n * object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * over the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed and released on\n * the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#click\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * and released on the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightclick\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released outside the\n * display object that initially registered a\n * [mousedown]{@link PIXI.DisplayObject#event:mousedown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * outside the display object that initially registered a\n * [rightdown]{@link PIXI.DisplayObject#event:rightdown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved while over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mousemove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved onto the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved off the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a pointer event.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointercancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed and released on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointertap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released outside the display object that initially\n * registered a [pointerdown]{@link PIXI.DisplayObject#event:pointerdown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved while over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointermove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved onto the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved off the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchstart\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed from the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchend\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a touch.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchcancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed and removed from the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#tap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed outside of the display object that initially\n * registered a [touchstart]{@link PIXI.DisplayObject#event:touchstart}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchendoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is moved along the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchmove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n this.setTargetElement(this.renderer.view, this.renderer.resolution);\n }\n\n if ( EventEmitter ) InteractionManager.__proto__ = EventEmitter;\n InteractionManager.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n InteractionManager.prototype.constructor = InteractionManager;\n\n /**\n * Hit tests a point against the display tree, returning the first interactive object that is hit.\n *\n * @param {PIXI.Point} globalPoint - A point to hit test with, in global space.\n * @param {PIXI.Container} [root] - The root display object to start from. If omitted, defaults\n * to the last rendered root of the associated renderer.\n * @return {PIXI.DisplayObject} The hit display object, if any.\n */\n InteractionManager.prototype.hitTest = function hitTest (globalPoint, root)\n {\n // clear the target for our hit test\n hitTestEvent.target = null;\n // assign the global point\n hitTestEvent.data.global = globalPoint;\n // ensure safety of the root\n if (!root)\n {\n root = this.renderer._lastObjectRendered;\n }\n // run the hit test\n this.processInteractive(hitTestEvent, root, null, true);\n // return our found object - it'll be null if we didn't hit anything\n\n return hitTestEvent.target;\n };\n\n /**\n * Sets the DOM element which will receive mouse/touch events. This is useful for when you have\n * other DOM elements on top of the renderers Canvas element. With this you'll be bale to delegate\n * another DOM element to receive those events.\n *\n * @param {HTMLElement} element - the DOM element which will receive mouse and touch events.\n * @param {number} [resolution=1] - The resolution / device pixel ratio of the new element (relative to the canvas).\n */\n InteractionManager.prototype.setTargetElement = function setTargetElement (element, resolution)\n {\n if ( resolution === void 0 ) resolution = 1;\n\n this.removeEvents();\n\n this.interactionDOMElement = element;\n\n this.resolution = resolution;\n\n this.addEvents();\n };\n\n /**\n * Registers all the DOM events\n *\n * @private\n */\n InteractionManager.prototype.addEvents = function addEvents ()\n {\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n Ticker.system.add(this.update, this, UPDATE_PRIORITY.INTERACTION);\n\n if (window.navigator.msPointerEnabled)\n {\n this.interactionDOMElement.style['-ms-content-zooming'] = 'none';\n this.interactionDOMElement.style['-ms-touch-action'] = 'none';\n }\n else if (this.supportsPointerEvents)\n {\n this.interactionDOMElement.style['touch-action'] = 'none';\n }\n\n /**\n * These events are added first, so that if pointer events are normalized, they are fired\n * in the same order as non-normalized events. ie. pointer event 1st, mouse / touch 2nd\n */\n if (this.supportsPointerEvents)\n {\n window.document.addEventListener('pointermove', this.onPointerMove, true);\n this.interactionDOMElement.addEventListener('pointerdown', this.onPointerDown, true);\n // pointerout is fired in addition to pointerup (for touch events) and pointercancel\n // we already handle those, so for the purposes of what we do in onPointerOut, we only\n // care about the pointerleave event\n this.interactionDOMElement.addEventListener('pointerleave', this.onPointerOut, true);\n this.interactionDOMElement.addEventListener('pointerover', this.onPointerOver, true);\n window.addEventListener('pointercancel', this.onPointerCancel, true);\n window.addEventListener('pointerup', this.onPointerUp, true);\n }\n else\n {\n window.document.addEventListener('mousemove', this.onPointerMove, true);\n this.interactionDOMElement.addEventListener('mousedown', this.onPointerDown, true);\n this.interactionDOMElement.addEventListener('mouseout', this.onPointerOut, true);\n this.interactionDOMElement.addEventListener('mouseover', this.onPointerOver, true);\n window.addEventListener('mouseup', this.onPointerUp, true);\n }\n\n // always look directly for touch events so that we can provide original data\n // In a future version we should change this to being just a fallback and rely solely on\n // PointerEvents whenever available\n if (this.supportsTouchEvents)\n {\n this.interactionDOMElement.addEventListener('touchstart', this.onPointerDown, true);\n this.interactionDOMElement.addEventListener('touchcancel', this.onPointerCancel, true);\n this.interactionDOMElement.addEventListener('touchend', this.onPointerUp, true);\n this.interactionDOMElement.addEventListener('touchmove', this.onPointerMove, true);\n }\n\n this.eventsAdded = true;\n };\n\n /**\n * Removes all the DOM events that were previously registered\n *\n * @private\n */\n InteractionManager.prototype.removeEvents = function removeEvents ()\n {\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n Ticker.system.remove(this.update, this);\n\n if (window.navigator.msPointerEnabled)\n {\n this.interactionDOMElement.style['-ms-content-zooming'] = '';\n this.interactionDOMElement.style['-ms-touch-action'] = '';\n }\n else if (this.supportsPointerEvents)\n {\n this.interactionDOMElement.style['touch-action'] = '';\n }\n\n if (this.supportsPointerEvents)\n {\n window.document.removeEventListener('pointermove', this.onPointerMove, true);\n this.interactionDOMElement.removeEventListener('pointerdown', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('pointerleave', this.onPointerOut, true);\n this.interactionDOMElement.removeEventListener('pointerover', this.onPointerOver, true);\n window.removeEventListener('pointercancel', this.onPointerCancel, true);\n window.removeEventListener('pointerup', this.onPointerUp, true);\n }\n else\n {\n window.document.removeEventListener('mousemove', this.onPointerMove, true);\n this.interactionDOMElement.removeEventListener('mousedown', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('mouseout', this.onPointerOut, true);\n this.interactionDOMElement.removeEventListener('mouseover', this.onPointerOver, true);\n window.removeEventListener('mouseup', this.onPointerUp, true);\n }\n\n if (this.supportsTouchEvents)\n {\n this.interactionDOMElement.removeEventListener('touchstart', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('touchcancel', this.onPointerCancel, true);\n this.interactionDOMElement.removeEventListener('touchend', this.onPointerUp, true);\n this.interactionDOMElement.removeEventListener('touchmove', this.onPointerMove, true);\n }\n\n this.interactionDOMElement = null;\n\n this.eventsAdded = false;\n };\n\n /**\n * Updates the state of interactive objects.\n * Invoked by a throttled ticker update from {@link PIXI.Ticker.system}.\n *\n * @param {number} deltaTime - time delta since last tick\n */\n InteractionManager.prototype.update = function update (deltaTime)\n {\n this._deltaTime += deltaTime;\n\n if (this._deltaTime < this.interactionFrequency)\n {\n return;\n }\n\n this._deltaTime = 0;\n\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n // if the user move the mouse this check has already been done using the mouse move!\n if (this.didMove)\n {\n this.didMove = false;\n\n return;\n }\n\n this.cursor = null;\n\n // Resets the flag as set by a stopPropagation call. This flag is usually reset by a user interaction of any kind,\n // but there was a scenario of a display object moving under a static mouse cursor.\n // In this case, mouseover and mouseevents would not pass the flag test in dispatchEvent function\n for (var k in this.activeInteractionData)\n {\n // eslint-disable-next-line no-prototype-builtins\n if (this.activeInteractionData.hasOwnProperty(k))\n {\n var interactionData = this.activeInteractionData[k];\n\n if (interactionData.originalEvent && interactionData.pointerType !== 'touch')\n {\n var interactionEvent = this.configureInteractionEventForDOMEvent(\n this.eventData,\n interactionData.originalEvent,\n interactionData\n );\n\n this.processInteractive(\n interactionEvent,\n this.renderer._lastObjectRendered,\n this.processPointerOverOut,\n true\n );\n }\n }\n }\n\n this.setCursorMode(this.cursor);\n };\n\n /**\n * Sets the current cursor mode, handling any callbacks or CSS style changes.\n *\n * @param {string} mode - cursor mode, a key from the cursorStyles dictionary\n */\n InteractionManager.prototype.setCursorMode = function setCursorMode (mode)\n {\n mode = mode || 'default';\n // if the mode didn't actually change, bail early\n if (this.currentCursorMode === mode)\n {\n return;\n }\n this.currentCursorMode = mode;\n var style = this.cursorStyles[mode];\n\n // only do things if there is a cursor style for it\n if (style)\n {\n switch (typeof style)\n {\n case 'string':\n // string styles are handled as cursor CSS\n this.interactionDOMElement.style.cursor = style;\n break;\n case 'function':\n // functions are just called, and passed the cursor mode\n style(mode);\n break;\n case 'object':\n // if it is an object, assume that it is a dictionary of CSS styles,\n // apply it to the interactionDOMElement\n Object.assign(this.interactionDOMElement.style, style);\n break;\n }\n }\n else if (typeof mode === 'string' && !Object.prototype.hasOwnProperty.call(this.cursorStyles, mode))\n {\n // if it mode is a string (not a Symbol) and cursorStyles doesn't have any entry\n // for the mode, then assume that the dev wants it to be CSS for the cursor.\n this.interactionDOMElement.style.cursor = mode;\n }\n };\n\n /**\n * Dispatches an event on the display object that was interacted with\n *\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question\n * @param {string} eventString - the name of the event (e.g, mousedown)\n * @param {object} eventData - the event data object\n * @private\n */\n InteractionManager.prototype.dispatchEvent = function dispatchEvent (displayObject, eventString, eventData)\n {\n // Even if the event was stopped, at least dispatch any remaining events\n // for the same display object.\n if (!eventData.stopPropagationHint || displayObject === eventData.stopsPropagatingAt)\n {\n eventData.currentTarget = displayObject;\n eventData.type = eventString;\n\n displayObject.emit(eventString, eventData);\n\n if (displayObject[eventString])\n {\n displayObject[eventString](eventData);\n }\n }\n };\n\n /**\n * Puts a event on a queue to be dispatched later. This is used to guarantee correct\n * ordering of over/out events.\n *\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question\n * @param {string} eventString - the name of the event (e.g, mousedown)\n * @param {object} eventData - the event data object\n * @private\n */\n InteractionManager.prototype.delayDispatchEvent = function delayDispatchEvent (displayObject, eventString, eventData)\n {\n this.delayedEvents.push({ displayObject: displayObject, eventString: eventString, eventData: eventData });\n };\n\n /**\n * Maps x and y coords from a DOM object and maps them correctly to the PixiJS view. The\n * resulting value is stored in the point. This takes into account the fact that the DOM\n * element could be scaled and positioned anywhere on the screen.\n *\n * @param {PIXI.Point} point - the point that the result will be stored in\n * @param {number} x - the x coord of the position to map\n * @param {number} y - the y coord of the position to map\n */\n InteractionManager.prototype.mapPositionToPoint = function mapPositionToPoint (point, x, y)\n {\n var rect;\n\n // IE 11 fix\n if (!this.interactionDOMElement.parentElement)\n {\n rect = { x: 0, y: 0, width: 0, height: 0 };\n }\n else\n {\n rect = this.interactionDOMElement.getBoundingClientRect();\n }\n\n var resolutionMultiplier = 1.0 / this.resolution;\n\n point.x = ((x - rect.left) * (this.interactionDOMElement.width / rect.width)) * resolutionMultiplier;\n point.y = ((y - rect.top) * (this.interactionDOMElement.height / rect.height)) * resolutionMultiplier;\n };\n\n /**\n * This function is provides a neat way of crawling through the scene graph and running a\n * specified function on all interactive objects it finds. It will also take care of hit\n * testing the interactive objects and passes the hit across in the function.\n *\n * @protected\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - event containing the point that\n * is tested for collision\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the displayObject\n * that will be hit test (recursively crawls its children)\n * @param {Function} [func] - the function that will be called on each interactive object. The\n * interactionEvent, displayObject and hit will be passed to the function\n * @param {boolean} [hitTest] - this indicates if the objects inside should be hit test against the point\n * @param {boolean} [interactive] - Whether the displayObject is interactive\n * @param {boolean} [skipDelayed] - Whether to process delayed events before returning. This is\n * used to avoid processing them too early during recursive calls.\n * @return {boolean} returns true if the displayObject hit the point\n */\n InteractionManager.prototype.processInteractive = function processInteractive (interactionEvent, displayObject, func, hitTest, interactive, skipDelayed)\n {\n if (!displayObject || !displayObject.visible)\n {\n return false;\n }\n\n var point = interactionEvent.data.global;\n\n // Took a little while to rework this function correctly! But now it is done and nice and optimized! ^_^\n //\n // This function will now loop through all objects and then only hit test the objects it HAS\n // to, not all of them. MUCH faster..\n // An object will be hit test if the following is true:\n //\n // 1: It is interactive.\n // 2: It belongs to a parent that is interactive AND one of the parents children have not already been hit.\n //\n // As another little optimization once an interactive object has been hit we can carry on\n // through the scenegraph, but we know that there will be no more hits! So we can avoid extra hit tests\n // A final optimization is that an object is not hit test directly if a child has already been hit.\n\n interactive = displayObject.interactive || interactive;\n\n var hit = false;\n var interactiveParent = interactive;\n\n // Flag here can set to false if the event is outside the parents hitArea or mask\n var hitTestChildren = true;\n\n // If there is a hitArea, no need to test against anything else if the pointer is not within the hitArea\n // There is also no longer a need to hitTest children.\n if (displayObject.hitArea)\n {\n if (hitTest)\n {\n displayObject.worldTransform.applyInverse(point, this._tempPoint);\n if (!displayObject.hitArea.contains(this._tempPoint.x, this._tempPoint.y))\n {\n hitTest = false;\n hitTestChildren = false;\n }\n else\n {\n hit = true;\n }\n }\n interactiveParent = false;\n }\n // If there is a mask, no need to hitTest against anything else if the pointer is not within the mask.\n // We still want to hitTestChildren, however, to ensure a mouseout can still be generated.\n // https://github.com/pixijs/pixi.js/issues/5135\n else if (displayObject._mask)\n {\n if (hitTest)\n {\n if (!(displayObject._mask.containsPoint && displayObject._mask.containsPoint(point)))\n {\n hitTest = false;\n }\n }\n }\n\n // ** FREE TIP **! If an object is not interactive or has no buttons in it\n // (such as a game scene!) set interactiveChildren to false for that displayObject.\n // This will allow PixiJS to completely ignore and bypass checking the displayObjects children.\n if (hitTestChildren && displayObject.interactiveChildren && displayObject.children)\n {\n var children = displayObject.children;\n\n for (var i = children.length - 1; i >= 0; i--)\n {\n var child = children[i];\n\n // time to get recursive.. if this function will return if something is hit..\n var childHit = this.processInteractive(interactionEvent, child, func, hitTest, interactiveParent, true);\n\n if (childHit)\n {\n // its a good idea to check if a child has lost its parent.\n // this means it has been removed whilst looping so its best\n if (!child.parent)\n {\n continue;\n }\n\n // we no longer need to hit test any more objects in this container as we we\n // now know the parent has been hit\n interactiveParent = false;\n\n // If the child is interactive , that means that the object hit was actually\n // interactive and not just the child of an interactive object.\n // This means we no longer need to hit test anything else. We still need to run\n // through all objects, but we don't need to perform any hit tests.\n\n if (childHit)\n {\n if (interactionEvent.target)\n {\n hitTest = false;\n }\n hit = true;\n }\n }\n }\n }\n\n // no point running this if the item is not interactive or does not have an interactive parent.\n if (interactive)\n {\n // if we are hit testing (as in we have no hit any objects yet)\n // We also don't need to worry about hit testing if once of the displayObjects children\n // has already been hit - but only if it was interactive, otherwise we need to keep\n // looking for an interactive child, just in case we hit one\n if (hitTest && !interactionEvent.target)\n {\n // already tested against hitArea if it is defined\n if (!displayObject.hitArea && displayObject.containsPoint)\n {\n if (displayObject.containsPoint(point))\n {\n hit = true;\n }\n }\n }\n\n if (displayObject.interactive)\n {\n if (hit && !interactionEvent.target)\n {\n interactionEvent.target = displayObject;\n }\n\n if (func)\n {\n func(interactionEvent, displayObject, !!hit);\n }\n }\n }\n\n var delayedEvents = this.delayedEvents;\n\n if (delayedEvents.length && !skipDelayed)\n {\n // Reset the propagation hint, because we start deeper in the tree again.\n interactionEvent.stopPropagationHint = false;\n\n var delayedLen = delayedEvents.length;\n\n this.delayedEvents = [];\n\n for (var i$1 = 0; i$1 < delayedLen; i$1++)\n {\n var ref = delayedEvents[i$1];\n var displayObject$1 = ref.displayObject;\n var eventString = ref.eventString;\n var eventData = ref.eventData;\n\n // When we reach the object we wanted to stop propagating at,\n // set the propagation hint.\n if (eventData.stopsPropagatingAt === displayObject$1)\n {\n eventData.stopPropagationHint = true;\n }\n\n this.dispatchEvent(displayObject$1, eventString, eventData);\n }\n }\n\n return hit;\n };\n\n /**\n * Is called when the pointer button is pressed down on the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being pressed down\n */\n InteractionManager.prototype.onPointerDown = function onPointerDown (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n /**\n * No need to prevent default on natural pointer events, as there are no side effects\n * Normalized events, however, may have the double mousedown/touchstart issue on the native android browser,\n * so still need to be prevented.\n */\n\n // Guaranteed that there will be at least one event in events, and all events must have the same pointer type\n\n if (this.autoPreventDefault && events[0].isNormalized)\n {\n var cancelable = originalEvent.cancelable || !('cancelable' in originalEvent);\n\n if (cancelable)\n {\n originalEvent.preventDefault();\n }\n }\n\n var eventLen = events.length;\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerDown, true);\n\n this.emit('pointerdown', interactionEvent);\n if (event.pointerType === 'touch')\n {\n this.emit('touchstart', interactionEvent);\n }\n // emit a mouse event for \"pen\" pointers, the way a browser would emit a fallback event\n else if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n var isRightButton = event.button === 2;\n\n this.emit(isRightButton ? 'rightdown' : 'mousedown', this.eventData);\n }\n }\n };\n\n /**\n * Processes the result of the pointer down check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerDown = function processPointerDown (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n var id = interactionEvent.data.identifier;\n\n if (hit)\n {\n if (!displayObject.trackedPointers[id])\n {\n displayObject.trackedPointers[id] = new InteractionTrackingData(id);\n }\n this.dispatchEvent(displayObject, 'pointerdown', interactionEvent);\n\n if (data.pointerType === 'touch')\n {\n this.dispatchEvent(displayObject, 'touchstart', interactionEvent);\n }\n else if (data.pointerType === 'mouse' || data.pointerType === 'pen')\n {\n var isRightButton = data.button === 2;\n\n if (isRightButton)\n {\n displayObject.trackedPointers[id].rightDown = true;\n }\n else\n {\n displayObject.trackedPointers[id].leftDown = true;\n }\n\n this.dispatchEvent(displayObject, isRightButton ? 'rightdown' : 'mousedown', interactionEvent);\n }\n }\n };\n\n /**\n * Is called when the pointer button is released on the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being released\n * @param {boolean} cancelled - true if the pointer is cancelled\n * @param {Function} func - Function passed to {@link processInteractive}\n */\n InteractionManager.prototype.onPointerComplete = function onPointerComplete (originalEvent, cancelled, func)\n {\n var events = this.normalizeToPointerData(originalEvent);\n\n var eventLen = events.length;\n\n // if the event wasn't targeting our canvas, then consider it to be pointerupoutside\n // in all cases (unless it was a pointercancel)\n var eventAppend = originalEvent.target !== this.interactionDOMElement ? 'outside' : '';\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n // perform hit testing for events targeting our canvas or cancel events\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, func, cancelled || !eventAppend);\n\n this.emit(cancelled ? 'pointercancel' : (\"pointerup\" + eventAppend), interactionEvent);\n\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n var isRightButton = event.button === 2;\n\n this.emit(isRightButton ? (\"rightup\" + eventAppend) : (\"mouseup\" + eventAppend), interactionEvent);\n }\n else if (event.pointerType === 'touch')\n {\n this.emit(cancelled ? 'touchcancel' : (\"touchend\" + eventAppend), interactionEvent);\n this.releaseInteractionDataForPointerId(event.pointerId, interactionData);\n }\n }\n };\n\n /**\n * Is called when the pointer button is cancelled\n *\n * @private\n * @param {PointerEvent} event - The DOM event of a pointer button being released\n */\n InteractionManager.prototype.onPointerCancel = function onPointerCancel (event)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && event.pointerType === 'touch') { return; }\n\n this.onPointerComplete(event, true, this.processPointerCancel);\n };\n\n /**\n * Processes the result of the pointer cancel check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n */\n InteractionManager.prototype.processPointerCancel = function processPointerCancel (interactionEvent, displayObject)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n if (displayObject.trackedPointers[id] !== undefined)\n {\n delete displayObject.trackedPointers[id];\n this.dispatchEvent(displayObject, 'pointercancel', interactionEvent);\n\n if (data.pointerType === 'touch')\n {\n this.dispatchEvent(displayObject, 'touchcancel', interactionEvent);\n }\n }\n };\n\n /**\n * Is called when the pointer button is released on the renderer element\n *\n * @private\n * @param {PointerEvent} event - The DOM event of a pointer button being released\n */\n InteractionManager.prototype.onPointerUp = function onPointerUp (event)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && event.pointerType === 'touch') { return; }\n\n this.onPointerComplete(event, false, this.processPointerUp);\n };\n\n /**\n * Processes the result of the pointer up check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerUp = function processPointerUp (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n var trackingData = displayObject.trackedPointers[id];\n\n var isTouch = data.pointerType === 'touch';\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n // need to track mouse down status in the mouse block so that we can emit\n // event in a later block\n var isMouseTap = false;\n\n // Mouse only\n if (isMouse)\n {\n var isRightButton = data.button === 2;\n\n var flags = InteractionTrackingData.FLAGS;\n\n var test = isRightButton ? flags.RIGHT_DOWN : flags.LEFT_DOWN;\n\n var isDown = trackingData !== undefined && (trackingData.flags & test);\n\n if (hit)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightup' : 'mouseup', interactionEvent);\n\n if (isDown)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightclick' : 'click', interactionEvent);\n // because we can confirm that the mousedown happened on this object, flag for later emit of pointertap\n isMouseTap = true;\n }\n }\n else if (isDown)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightupoutside' : 'mouseupoutside', interactionEvent);\n }\n // update the down state of the tracking data\n if (trackingData)\n {\n if (isRightButton)\n {\n trackingData.rightDown = false;\n }\n else\n {\n trackingData.leftDown = false;\n }\n }\n }\n\n // Pointers and Touches, and Mouse\n if (hit)\n {\n this.dispatchEvent(displayObject, 'pointerup', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchend', interactionEvent); }\n\n if (trackingData)\n {\n // emit pointertap if not a mouse, or if the mouse block decided it was a tap\n if (!isMouse || isMouseTap)\n {\n this.dispatchEvent(displayObject, 'pointertap', interactionEvent);\n }\n if (isTouch)\n {\n this.dispatchEvent(displayObject, 'tap', interactionEvent);\n // touches are no longer over (if they ever were) when we get the touchend\n // so we should ensure that we don't keep pretending that they are\n trackingData.over = false;\n }\n }\n }\n else if (trackingData)\n {\n this.dispatchEvent(displayObject, 'pointerupoutside', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchendoutside', interactionEvent); }\n }\n // Only remove the tracking data if there is no over/down state still associated with it\n if (trackingData && trackingData.none)\n {\n delete displayObject.trackedPointers[id];\n }\n };\n\n /**\n * Is called when the pointer moves across the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer moving\n */\n InteractionManager.prototype.onPointerMove = function onPointerMove (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n if (events[0].pointerType === 'mouse' || events[0].pointerType === 'pen')\n {\n this.didMove = true;\n\n this.cursor = null;\n }\n\n var eventLen = events.length;\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerMove, true);\n\n this.emit('pointermove', interactionEvent);\n if (event.pointerType === 'touch') { this.emit('touchmove', interactionEvent); }\n if (event.pointerType === 'mouse' || event.pointerType === 'pen') { this.emit('mousemove', interactionEvent); }\n }\n\n if (events[0].pointerType === 'mouse')\n {\n this.setCursorMode(this.cursor);\n\n // TODO BUG for parents interactive object (border order issue)\n }\n };\n\n /**\n * Processes the result of the pointer move check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerMove = function processPointerMove (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var isTouch = data.pointerType === 'touch';\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n\n if (isMouse)\n {\n this.processPointerOverOut(interactionEvent, displayObject, hit);\n }\n\n if (!this.moveWhenInside || hit)\n {\n this.dispatchEvent(displayObject, 'pointermove', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchmove', interactionEvent); }\n if (isMouse) { this.dispatchEvent(displayObject, 'mousemove', interactionEvent); }\n }\n };\n\n /**\n * Is called when the pointer is moved out of the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer being moved out\n */\n InteractionManager.prototype.onPointerOut = function onPointerOut (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n // Only mouse and pointer can call onPointerOut, so events will always be length 1\n var event = events[0];\n\n if (event.pointerType === 'mouse')\n {\n this.mouseOverRenderer = false;\n this.setCursorMode(null);\n }\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = event;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerOverOut, false);\n\n this.emit('pointerout', interactionEvent);\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n this.emit('mouseout', interactionEvent);\n }\n else\n {\n // we can get touchleave events after touchend, so we want to make sure we don't\n // introduce memory leaks\n this.releaseInteractionDataForPointerId(interactionData.identifier);\n }\n };\n\n /**\n * Processes the result of the pointer over/out check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerOverOut = function processPointerOverOut (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n\n var trackingData = displayObject.trackedPointers[id];\n\n // if we just moused over the display object, then we need to track that state\n if (hit && !trackingData)\n {\n trackingData = displayObject.trackedPointers[id] = new InteractionTrackingData(id);\n }\n\n if (trackingData === undefined) { return; }\n\n if (hit && this.mouseOverRenderer)\n {\n if (!trackingData.over)\n {\n trackingData.over = true;\n this.delayDispatchEvent(displayObject, 'pointerover', interactionEvent);\n if (isMouse)\n {\n this.delayDispatchEvent(displayObject, 'mouseover', interactionEvent);\n }\n }\n\n // only change the cursor if it has not already been changed (by something deeper in the\n // display tree)\n if (isMouse && this.cursor === null)\n {\n this.cursor = displayObject.cursor;\n }\n }\n else if (trackingData.over)\n {\n trackingData.over = false;\n this.dispatchEvent(displayObject, 'pointerout', this.eventData);\n if (isMouse)\n {\n this.dispatchEvent(displayObject, 'mouseout', interactionEvent);\n }\n // if there is no mouse down information for the pointer, then it is safe to delete\n if (trackingData.none)\n {\n delete displayObject.trackedPointers[id];\n }\n }\n };\n\n /**\n * Is called when the pointer is moved into the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being moved into the renderer view\n */\n InteractionManager.prototype.onPointerOver = function onPointerOver (originalEvent)\n {\n var events = this.normalizeToPointerData(originalEvent);\n\n // Only mouse and pointer can call onPointerOver, so events will always be length 1\n var event = events[0];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = event;\n\n if (event.pointerType === 'mouse')\n {\n this.mouseOverRenderer = true;\n }\n\n this.emit('pointerover', interactionEvent);\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n this.emit('mouseover', interactionEvent);\n }\n };\n\n /**\n * Get InteractionData for a given pointerId. Store that data as well\n *\n * @private\n * @param {PointerEvent} event - Normalized pointer event, output from normalizeToPointerData\n * @return {PIXI.interaction.InteractionData} - Interaction data for the given pointer identifier\n */\n InteractionManager.prototype.getInteractionDataForPointerId = function getInteractionDataForPointerId (event)\n {\n var pointerId = event.pointerId;\n\n var interactionData;\n\n if (pointerId === MOUSE_POINTER_ID || event.pointerType === 'mouse')\n {\n interactionData = this.mouse;\n }\n else if (this.activeInteractionData[pointerId])\n {\n interactionData = this.activeInteractionData[pointerId];\n }\n else\n {\n interactionData = this.interactionDataPool.pop() || new InteractionData();\n interactionData.identifier = pointerId;\n this.activeInteractionData[pointerId] = interactionData;\n }\n // copy properties from the event, so that we can make sure that touch/pointer specific\n // data is available\n interactionData.copyEvent(event);\n\n return interactionData;\n };\n\n /**\n * Return unused InteractionData to the pool, for a given pointerId\n *\n * @private\n * @param {number} pointerId - Identifier from a pointer event\n */\n InteractionManager.prototype.releaseInteractionDataForPointerId = function releaseInteractionDataForPointerId (pointerId)\n {\n var interactionData = this.activeInteractionData[pointerId];\n\n if (interactionData)\n {\n delete this.activeInteractionData[pointerId];\n interactionData.reset();\n this.interactionDataPool.push(interactionData);\n }\n };\n\n /**\n * Configure an InteractionEvent to wrap a DOM PointerEvent and InteractionData\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The event to be configured\n * @param {PointerEvent} pointerEvent - The DOM event that will be paired with the InteractionEvent\n * @param {PIXI.interaction.InteractionData} interactionData - The InteractionData that will be paired\n * with the InteractionEvent\n * @return {PIXI.interaction.InteractionEvent} the interaction event that was passed in\n */\n InteractionManager.prototype.configureInteractionEventForDOMEvent = function configureInteractionEventForDOMEvent (interactionEvent, pointerEvent, interactionData)\n {\n interactionEvent.data = interactionData;\n\n this.mapPositionToPoint(interactionData.global, pointerEvent.clientX, pointerEvent.clientY);\n\n // Not really sure why this is happening, but it's how a previous version handled things\n if (pointerEvent.pointerType === 'touch')\n {\n pointerEvent.globalX = interactionData.global.x;\n pointerEvent.globalY = interactionData.global.y;\n }\n\n interactionData.originalEvent = pointerEvent;\n interactionEvent.reset();\n\n return interactionEvent;\n };\n\n /**\n * Ensures that the original event object contains all data that a regular pointer event would have\n *\n * @private\n * @param {TouchEvent|MouseEvent|PointerEvent} event - The original event data from a touch or mouse event\n * @return {PointerEvent[]} An array containing a single normalized pointer event, in the case of a pointer\n * or mouse event, or a multiple normalized pointer events if there are multiple changed touches\n */\n InteractionManager.prototype.normalizeToPointerData = function normalizeToPointerData (event)\n {\n var normalizedEvents = [];\n\n if (this.supportsTouchEvents && event instanceof TouchEvent)\n {\n for (var i = 0, li = event.changedTouches.length; i < li; i++)\n {\n var touch = event.changedTouches[i];\n\n if (typeof touch.button === 'undefined') { touch.button = event.touches.length ? 1 : 0; }\n if (typeof touch.buttons === 'undefined') { touch.buttons = event.touches.length ? 1 : 0; }\n if (typeof touch.isPrimary === 'undefined')\n {\n touch.isPrimary = event.touches.length === 1 && event.type === 'touchstart';\n }\n if (typeof touch.width === 'undefined') { touch.width = touch.radiusX || 1; }\n if (typeof touch.height === 'undefined') { touch.height = touch.radiusY || 1; }\n if (typeof touch.tiltX === 'undefined') { touch.tiltX = 0; }\n if (typeof touch.tiltY === 'undefined') { touch.tiltY = 0; }\n if (typeof touch.pointerType === 'undefined') { touch.pointerType = 'touch'; }\n if (typeof touch.pointerId === 'undefined') { touch.pointerId = touch.identifier || 0; }\n if (typeof touch.pressure === 'undefined') { touch.pressure = touch.force || 0.5; }\n if (typeof touch.twist === 'undefined') { touch.twist = 0; }\n if (typeof touch.tangentialPressure === 'undefined') { touch.tangentialPressure = 0; }\n // TODO: Remove these, as layerX/Y is not a standard, is deprecated, has uneven\n // support, and the fill ins are not quite the same\n // offsetX/Y might be okay, but is not the same as clientX/Y when the canvas's top\n // left is not 0,0 on the page\n if (typeof touch.layerX === 'undefined') { touch.layerX = touch.offsetX = touch.clientX; }\n if (typeof touch.layerY === 'undefined') { touch.layerY = touch.offsetY = touch.clientY; }\n\n // mark the touch as normalized, just so that we know we did it\n touch.isNormalized = true;\n\n normalizedEvents.push(touch);\n }\n }\n // apparently PointerEvent subclasses MouseEvent, so yay\n else if (event instanceof MouseEvent && (!this.supportsPointerEvents || !(event instanceof window.PointerEvent)))\n {\n if (typeof event.isPrimary === 'undefined') { event.isPrimary = true; }\n if (typeof event.width === 'undefined') { event.width = 1; }\n if (typeof event.height === 'undefined') { event.height = 1; }\n if (typeof event.tiltX === 'undefined') { event.tiltX = 0; }\n if (typeof event.tiltY === 'undefined') { event.tiltY = 0; }\n if (typeof event.pointerType === 'undefined') { event.pointerType = 'mouse'; }\n if (typeof event.pointerId === 'undefined') { event.pointerId = MOUSE_POINTER_ID; }\n if (typeof event.pressure === 'undefined') { event.pressure = 0.5; }\n if (typeof event.twist === 'undefined') { event.twist = 0; }\n if (typeof event.tangentialPressure === 'undefined') { event.tangentialPressure = 0; }\n\n // mark the mouse event as normalized, just so that we know we did it\n event.isNormalized = true;\n\n normalizedEvents.push(event);\n }\n else\n {\n normalizedEvents.push(event);\n }\n\n return normalizedEvents;\n };\n\n /**\n * Destroys the interaction manager\n *\n */\n InteractionManager.prototype.destroy = function destroy ()\n {\n this.removeEvents();\n\n this.removeAllListeners();\n\n this.renderer = null;\n\n this.mouse = null;\n\n this.eventData = null;\n\n this.interactionDOMElement = null;\n\n this.onPointerDown = null;\n this.processPointerDown = null;\n\n this.onPointerUp = null;\n this.processPointerUp = null;\n\n this.onPointerCancel = null;\n this.processPointerCancel = null;\n\n this.onPointerMove = null;\n this.processPointerMove = null;\n\n this.onPointerOut = null;\n this.processPointerOverOut = null;\n\n this.onPointerOver = null;\n\n this._tempPoint = null;\n };\n\n return InteractionManager;\n}(EventEmitter));\n\n/**\n * This namespace contains a renderer plugin for handling mouse, pointer, and touch events.\n *\n * Do not instantiate this plugin directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @namespace PIXI.interaction\n */\n\nexport { InteractionData, InteractionEvent, InteractionManager, InteractionTrackingData, interactiveTarget };\n//# sourceMappingURL=interaction.es.js.map\n","/*!\n * @pixi/graphics - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/graphics is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture, BaseTexture, BatchDrawCall, BatchGeometry, UniformGroup, Shader, State } from '@pixi/core';\nimport { SHAPES, Point, PI_2, Polygon, Rectangle, RoundedRectangle, Circle, Ellipse, Matrix } from '@pixi/math';\nimport { earcut, premultiplyTint, hex2rgb } from '@pixi/utils';\nimport { Bounds, Container } from '@pixi/display';\nimport { WRAP_MODES, DRAW_MODES, BLEND_MODES } from '@pixi/constants';\n\n/**\n * Graphics curves resolution settings. If `adaptive` flag is set to `true`,\n * the resolution is calculated based on the curve's length to ensure better visual quality.\n * Adaptive draw works with `bezierCurveTo` and `quadraticCurveTo`.\n *\n * @static\n * @constant\n * @memberof PIXI\n * @name GRAPHICS_CURVES\n * @type {object}\n * @property {boolean} adaptive=false - flag indicating if the resolution should be adaptive\n * @property {number} maxLength=10 - maximal length of a single segment of the curve (if adaptive = false, ignored)\n * @property {number} minSegments=8 - minimal number of segments in the curve (if adaptive = false, ignored)\n * @property {number} maxSegments=2048 - maximal number of segments in the curve (if adaptive = false, ignored)\n */\nvar GRAPHICS_CURVES = {\n adaptive: true,\n maxLength: 10,\n minSegments: 8,\n maxSegments: 2048,\n _segmentsCount: function _segmentsCount(length, defaultSegments)\n {\n if ( defaultSegments === void 0 ) defaultSegments = 20;\n\n if (!this.adaptive)\n {\n return defaultSegments;\n }\n\n var result = Math.ceil(length / this.maxLength);\n\n if (result < this.minSegments)\n {\n result = this.minSegments;\n }\n else if (result > this.maxSegments)\n {\n result = this.maxSegments;\n }\n\n return result;\n },\n};\n\n/**\n * Fill style object for Graphics.\n *\n * @class\n * @memberof PIXI\n */\nvar FillStyle = function FillStyle()\n{\n this.reset();\n};\n\n/**\n * Clones the object\n *\n * @return {PIXI.FillStyle}\n */\nFillStyle.prototype.clone = function clone ()\n{\n var obj = new FillStyle();\n\n obj.color = this.color;\n obj.alpha = this.alpha;\n obj.texture = this.texture;\n obj.matrix = this.matrix;\n obj.visible = this.visible;\n\n return obj;\n};\n\n/**\n * Reset\n */\nFillStyle.prototype.reset = function reset ()\n{\n /**\n * The hex color value used when coloring the Graphics object.\n *\n * @member {number}\n * @default 1\n */\n this.color = 0xFFFFFF;\n\n /**\n * The alpha value used when filling the Graphics object.\n *\n * @member {number}\n * @default 1\n */\n this.alpha = 1;\n\n /**\n * The texture to be used for the fill.\n *\n * @member {string}\n * @default 0\n */\n this.texture = Texture.WHITE;\n\n /**\n * The transform aplpied to the texture.\n *\n * @member {string}\n * @default 0\n */\n this.matrix = null;\n\n /**\n * If the current fill is visible.\n *\n * @member {boolean}\n * @default false\n */\n this.visible = false;\n};\n\n/**\n * Destroy and don't use after this\n */\nFillStyle.prototype.destroy = function destroy ()\n{\n this.texture = null;\n this.matrix = null;\n};\n\n/**\n * A class to contain data useful for Graphics objects\n *\n * @class\n * @memberof PIXI\n */\nvar GraphicsData = function GraphicsData(shape, fillStyle, lineStyle, matrix)\n{\n if ( fillStyle === void 0 ) fillStyle = null;\n if ( lineStyle === void 0 ) lineStyle = null;\n if ( matrix === void 0 ) matrix = null;\n\n /**\n * The shape object to draw.\n * @member {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle}\n */\n this.shape = shape;\n\n /**\n * The style of the line.\n * @member {PIXI.LineStyle}\n */\n this.lineStyle = lineStyle;\n\n /**\n * The style of the fill.\n * @member {PIXI.FillStyle}\n */\n this.fillStyle = fillStyle;\n\n /**\n * The transform matrix.\n * @member {PIXI.Matrix}\n */\n this.matrix = matrix;\n\n /**\n * The type of the shape, see the Const.Shapes file for all the existing types,\n * @member {number}\n */\n this.type = shape.type;\n\n /**\n * The collection of points.\n * @member {number[]}\n */\n this.points = [];\n\n /**\n * The collection of holes.\n * @member {PIXI.GraphicsData[]}\n */\n this.holes = [];\n};\n\n/**\n * Creates a new GraphicsData object with the same values as this one.\n *\n * @return {PIXI.GraphicsData} Cloned GraphicsData object\n */\nGraphicsData.prototype.clone = function clone ()\n{\n return new GraphicsData(\n this.shape,\n this.fillStyle,\n this.lineStyle,\n this.matrix\n );\n};\n\n/**\n * Destroys the Graphics data.\n */\nGraphicsData.prototype.destroy = function destroy ()\n{\n this.shape = null;\n this.holes.length = 0;\n this.holes = null;\n this.points.length = 0;\n this.points = null;\n this.lineStyle = null;\n this.fillStyle = null;\n};\n\n/**\n * Builds a circle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object to draw\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildCircle = {\n\n build: function build(graphicsData)\n {\n // need to convert points to a nice regular data\n var circleData = graphicsData.shape;\n var points = graphicsData.points;\n var x = circleData.x;\n var y = circleData.y;\n var width;\n var height;\n\n points.length = 0;\n\n // TODO - bit hacky??\n if (graphicsData.type === SHAPES.CIRC)\n {\n width = circleData.radius;\n height = circleData.radius;\n }\n else\n {\n width = circleData.width;\n height = circleData.height;\n }\n\n if (width === 0 || height === 0)\n {\n return;\n }\n\n var totalSegs = Math.floor(30 * Math.sqrt(circleData.radius))\n || Math.floor(15 * Math.sqrt(circleData.width + circleData.height));\n\n totalSegs /= 2.3;\n\n var seg = (Math.PI * 2) / totalSegs;\n\n for (var i = 0; i < totalSegs; i++)\n {\n points.push(\n x + (Math.sin(-seg * i) * width),\n y + (Math.cos(-seg * i) * height)\n );\n }\n\n points.push(\n points[0],\n points[1]\n );\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n var vertPos = verts.length / 2;\n var center = vertPos;\n\n verts.push(graphicsData.shape.x, graphicsData.shape.y);\n\n for (var i = 0; i < points.length; i += 2)\n {\n verts.push(points[i], points[i + 1]);\n\n // add some uvs\n indices.push(vertPos++, center, vertPos);\n }\n },\n};\n\n/**\n * Builds a line to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildLine (graphicsData, graphicsGeometry)\n{\n if (graphicsData.lineStyle.native)\n {\n buildNativeLine(graphicsData, graphicsGeometry);\n }\n else\n {\n buildLine$1(graphicsData, graphicsGeometry);\n }\n}\n\n/**\n * Builds a line to draw using the polygon method.\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildLine$1(graphicsData, graphicsGeometry)\n{\n var shape = graphicsData.shape;\n var points = graphicsData.points || shape.points.slice();\n var eps = graphicsGeometry.closePointEps;\n\n if (points.length === 0)\n {\n return;\n }\n // if the line width is an odd number add 0.5 to align to a whole pixel\n // commenting this out fixes #711 and #1620\n // if (graphicsData.lineWidth%2)\n // {\n // for (i = 0; i < points.length; i++)\n // {\n // points[i] += 0.5;\n // }\n // }\n\n var style = graphicsData.lineStyle;\n\n // get first and last point.. figure out the middle!\n var firstPoint = new Point(points[0], points[1]);\n var lastPoint = new Point(points[points.length - 2], points[points.length - 1]);\n var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke;\n var closedPath = Math.abs(firstPoint.x - lastPoint.x) < eps\n && Math.abs(firstPoint.y - lastPoint.y) < eps;\n\n // if the first point is the last point - gonna have issues :)\n if (closedShape)\n {\n // need to clone as we are going to slightly modify the shape..\n points = points.slice();\n\n if (closedPath)\n {\n points.pop();\n points.pop();\n lastPoint.set(points[points.length - 2], points[points.length - 1]);\n }\n\n var midPointX = lastPoint.x + ((firstPoint.x - lastPoint.x) * 0.5);\n var midPointY = lastPoint.y + ((firstPoint.y - lastPoint.y) * 0.5);\n\n points.unshift(midPointX, midPointY);\n points.push(midPointX, midPointY);\n }\n\n var verts = graphicsGeometry.points;\n var length = points.length / 2;\n var indexCount = points.length;\n var indexStart = verts.length / 2;\n\n // DRAW the Line\n var width = style.width / 2;\n\n // sort color\n var p1x = points[0];\n var p1y = points[1];\n var p2x = points[2];\n var p2y = points[3];\n var p3x = 0;\n var p3y = 0;\n\n var perpx = -(p1y - p2y);\n var perpy = p1x - p2x;\n var perp2x = 0;\n var perp2y = 0;\n var perp3x = 0;\n var perp3y = 0;\n\n var dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n var ratio = style.alignment;// 0.5;\n var r1 = (1 - ratio) * 2;\n var r2 = ratio * 2;\n\n // start\n verts.push(\n p1x - (perpx * r1),\n p1y - (perpy * r1));\n\n verts.push(\n p1x + (perpx * r2),\n p1y + (perpy * r2));\n\n for (var i = 1; i < length - 1; ++i)\n {\n p1x = points[(i - 1) * 2];\n p1y = points[((i - 1) * 2) + 1];\n\n p2x = points[i * 2];\n p2y = points[(i * 2) + 1];\n\n p3x = points[(i + 1) * 2];\n p3y = points[((i + 1) * 2) + 1];\n\n perpx = -(p1y - p2y);\n perpy = p1x - p2x;\n\n dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n perp2x = -(p2y - p3y);\n perp2y = p2x - p3x;\n\n dist = Math.sqrt((perp2x * perp2x) + (perp2y * perp2y));\n perp2x /= dist;\n perp2y /= dist;\n perp2x *= width;\n perp2y *= width;\n\n var a1 = (-perpy + p1y) - (-perpy + p2y);\n var b1 = (-perpx + p2x) - (-perpx + p1x);\n var c1 = ((-perpx + p1x) * (-perpy + p2y)) - ((-perpx + p2x) * (-perpy + p1y));\n var a2 = (-perp2y + p3y) - (-perp2y + p2y);\n var b2 = (-perp2x + p2x) - (-perp2x + p3x);\n var c2 = ((-perp2x + p3x) * (-perp2y + p2y)) - ((-perp2x + p2x) * (-perp2y + p3y));\n\n var denom = (a1 * b2) - (a2 * b1);\n\n if (Math.abs(denom) < 0.1)\n {\n denom += 10.1;\n verts.push(\n p2x - (perpx * r1),\n p2y - (perpy * r1));\n\n verts.push(\n p2x + (perpx * r2),\n p2y + (perpy * r2));\n\n continue;\n }\n\n var px = ((b1 * c2) - (b2 * c1)) / denom;\n var py = ((a2 * c1) - (a1 * c2)) / denom;\n var pdist = ((px - p2x) * (px - p2x)) + ((py - p2y) * (py - p2y));\n\n if (pdist > (196 * width * width))\n {\n perp3x = perpx - perp2x;\n perp3y = perpy - perp2y;\n\n dist = Math.sqrt((perp3x * perp3x) + (perp3y * perp3y));\n perp3x /= dist;\n perp3y /= dist;\n perp3x *= width;\n perp3y *= width;\n\n verts.push(p2x - (perp3x * r1), p2y - (perp3y * r1));\n\n verts.push(p2x + (perp3x * r2), p2y + (perp3y * r2));\n\n verts.push(p2x - (perp3x * r2 * r1), p2y - (perp3y * r1));\n\n indexCount++;\n }\n else\n {\n verts.push(p2x + ((px - p2x) * r1), p2y + ((py - p2y) * r1));\n\n verts.push(p2x - ((px - p2x) * r2), p2y - ((py - p2y) * r2));\n }\n }\n\n p1x = points[(length - 2) * 2];\n p1y = points[((length - 2) * 2) + 1];\n\n p2x = points[(length - 1) * 2];\n p2y = points[((length - 1) * 2) + 1];\n\n perpx = -(p1y - p2y);\n perpy = p1x - p2x;\n\n dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n verts.push(p2x - (perpx * r1), p2y - (perpy * r1));\n\n verts.push(p2x + (perpx * r2), p2y + (perpy * r2));\n\n var indices = graphicsGeometry.indices;\n\n // indices.push(indexStart);\n\n for (var i$1 = 0; i$1 < indexCount - 2; ++i$1)\n {\n indices.push(indexStart, indexStart + 1, indexStart + 2);\n\n indexStart++;\n }\n}\n\n/**\n * Builds a line to draw using the gl.drawArrays(gl.LINES) method\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildNativeLine(graphicsData, graphicsGeometry)\n{\n var i = 0;\n\n var shape = graphicsData.shape;\n var points = graphicsData.points || shape.points;\n var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke;\n\n if (points.length === 0) { return; }\n\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n var length = points.length / 2;\n\n var startIndex = verts.length / 2;\n var currentIndex = startIndex;\n\n verts.push(points[0], points[1]);\n\n for (i = 1; i < length; i++)\n {\n verts.push(points[i * 2], points[(i * 2) + 1]);\n indices.push(currentIndex, currentIndex + 1);\n\n currentIndex++;\n }\n\n if (closedShape)\n {\n indices.push(currentIndex, startIndex);\n }\n}\n\n/**\n * Builds a polygon to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildPoly = {\n\n build: function build(graphicsData)\n {\n graphicsData.points = graphicsData.shape.points.slice();\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var holes = graphicsData.holes;\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n if (points.length >= 6)\n {\n var holeArray = [];\n // Process holes..\n\n for (var i = 0; i < holes.length; i++)\n {\n var hole = holes[i];\n\n holeArray.push(points.length / 2);\n points = points.concat(hole.points);\n }\n\n // sort color\n var triangles = earcut(points, holeArray, 2);\n\n if (!triangles)\n {\n return;\n }\n\n var vertPos = verts.length / 2;\n\n for (var i$1 = 0; i$1 < triangles.length; i$1 += 3)\n {\n indices.push(triangles[i$1] + vertPos);\n indices.push(triangles[i$1 + 1] + vertPos);\n indices.push(triangles[i$1 + 2] + vertPos);\n }\n\n for (var i$2 = 0; i$2 < points.length; i$2++)\n {\n verts.push(points[i$2]);\n }\n }\n },\n};\n\n/**\n * Builds a rectangle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildRectangle = {\n\n build: function build(graphicsData)\n {\n // --- //\n // need to convert points to a nice regular data\n //\n var rectData = graphicsData.shape;\n var x = rectData.x;\n var y = rectData.y;\n var width = rectData.width;\n var height = rectData.height;\n\n var points = graphicsData.points;\n\n points.length = 0;\n\n points.push(x, y,\n x + width, y,\n x + width, y + height,\n x, y + height);\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var verts = graphicsGeometry.points;\n\n var vertPos = verts.length / 2;\n\n verts.push(points[0], points[1],\n points[2], points[3],\n points[6], points[7],\n points[4], points[5]);\n\n graphicsGeometry.indices.push(vertPos, vertPos + 1, vertPos + 2,\n vertPos + 1, vertPos + 2, vertPos + 3);\n },\n};\n\n/**\n * Builds a rounded rectangle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildRoundedRectangle = {\n\n build: function build(graphicsData)\n {\n var rrectData = graphicsData.shape;\n var points = graphicsData.points;\n var x = rrectData.x;\n var y = rrectData.y;\n var width = rrectData.width;\n var height = rrectData.height;\n\n var radius = rrectData.radius;\n\n points.length = 0;\n\n quadraticBezierCurve(x, y + radius,\n x, y,\n x + radius, y,\n points);\n quadraticBezierCurve(x + width - radius,\n y, x + width, y,\n x + width, y + radius,\n points);\n quadraticBezierCurve(x + width, y + height - radius,\n x + width, y + height,\n x + width - radius, y + height,\n points);\n quadraticBezierCurve(x + radius, y + height,\n x, y + height,\n x, y + height - radius,\n points);\n\n // this tiny number deals with the issue that occurs when points overlap and earcut fails to triangulate the item.\n // TODO - fix this properly, this is not very elegant.. but it works for now.\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n var vecPos = verts.length / 2;\n\n var triangles = earcut(points, null, 2);\n\n for (var i = 0, j = triangles.length; i < j; i += 3)\n {\n indices.push(triangles[i] + vecPos);\n // indices.push(triangles[i] + vecPos);\n indices.push(triangles[i + 1] + vecPos);\n // indices.push(triangles[i + 2] + vecPos);\n indices.push(triangles[i + 2] + vecPos);\n }\n\n for (var i$1 = 0, j$1 = points.length; i$1 < j$1; i$1++)\n {\n verts.push(points[i$1], points[++i$1]);\n }\n },\n};\n\n/**\n * Calculate a single point for a quadratic bezier curve.\n * Utility function used by quadraticBezierCurve.\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {number} n1 - first number\n * @param {number} n2 - second number\n * @param {number} perc - percentage\n * @return {number} the result\n *\n */\nfunction getPt(n1, n2, perc)\n{\n var diff = n2 - n1;\n\n return n1 + (diff * perc);\n}\n\n/**\n * Calculate the points for a quadratic bezier curve. (helper function..)\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {number} fromX - Origin point x\n * @param {number} fromY - Origin point x\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} [out=[]] - The output array to add points into. If not passed, a new array is created.\n * @return {number[]} an array of points\n */\nfunction quadraticBezierCurve(fromX, fromY, cpX, cpY, toX, toY, out)\n{\n if ( out === void 0 ) out = [];\n\n var n = 20;\n var points = out;\n\n var xa = 0;\n var ya = 0;\n var xb = 0;\n var yb = 0;\n var x = 0;\n var y = 0;\n\n for (var i = 0, j = 0; i <= n; ++i)\n {\n j = i / n;\n\n // The Green Line\n xa = getPt(fromX, cpX, j);\n ya = getPt(fromY, cpY, j);\n xb = getPt(cpX, toX, j);\n yb = getPt(cpY, toY, j);\n\n // The Black Dot\n x = getPt(xa, xb, j);\n y = getPt(ya, yb, j);\n\n points.push(x, y);\n }\n\n return points;\n}\n\nvar BATCH_POOL = [];\nvar DRAW_CALL_POOL = [];\nvar tmpPoint = new Point();\n\n/**\n * Map of fill commands for each shape type.\n *\n * @member {Object}\n * @private\n */\nvar fillCommands = {};\n\nfillCommands[SHAPES.POLY] = buildPoly;\nfillCommands[SHAPES.CIRC] = buildCircle;\nfillCommands[SHAPES.ELIP] = buildCircle;\nfillCommands[SHAPES.RECT] = buildRectangle;\nfillCommands[SHAPES.RREC] = buildRoundedRectangle;\n\n/**\n * A little internal structure to hold interim batch objects.\n *\n * @private\n */\nvar BatchPart = function BatchPart()\n{\n this.style = null;\n this.size = 0;\n this.start = 0;\n this.attribStart = 0;\n this.attribSize = 0;\n};\n\n/**\n * The Graphics class contains methods used to draw primitive shapes such as lines, circles and\n * rectangles to the display, and to color and fill them.\n *\n * GraphicsGeometry is designed to not be continually updating the geometry since it's expensive\n * to re-tesselate using **earcut**. Consider using {@link PIXI.Mesh} for this use-case, it's much faster.\n *\n * @class\n * @extends PIXI.BatchGeometry\n * @memberof PIXI\n */\nvar GraphicsGeometry = /*@__PURE__*/(function (BatchGeometry) {\n function GraphicsGeometry()\n {\n BatchGeometry.call(this);\n\n /**\n * An array of points to draw, 2 numbers per point\n *\n * @member {number[]}\n * @protected\n */\n this.points = [];\n\n /**\n * The collection of colors\n *\n * @member {number[]}\n * @protected\n */\n this.colors = [];\n\n /**\n * The UVs collection\n *\n * @member {number[]}\n * @protected\n */\n this.uvs = [];\n\n /**\n * The indices of the vertices\n *\n * @member {number[]}\n * @protected\n */\n this.indices = [];\n\n /**\n * Reference to the texture IDs.\n *\n * @member {number[]}\n * @protected\n */\n this.textureIds = [];\n\n /**\n * The collection of drawn shapes.\n *\n * @member {PIXI.GraphicsData[]}\n * @protected\n */\n this.graphicsData = [];\n\n /**\n * Used to detect if the graphics object has changed.\n *\n * @member {number}\n * @protected\n */\n this.dirty = 0;\n\n /**\n * Batches need to regenerated if the geometry is updated.\n *\n * @member {number}\n * @protected\n */\n this.batchDirty = -1;\n\n /**\n * Used to check if the cache is dirty.\n *\n * @member {number}\n * @protected\n */\n this.cacheDirty = -1;\n\n /**\n * Used to detect if we cleared the graphicsData.\n *\n * @member {number}\n * @default 0\n * @protected\n */\n this.clearDirty = 0;\n\n /**\n * List of current draw calls drived from the batches.\n *\n * @member {object[]}\n * @protected\n */\n this.drawCalls = [];\n\n /**\n * Intermediate abstract format sent to batch system.\n * Can be converted to drawCalls or to batchable objects.\n *\n * @member {object[]}\n * @protected\n */\n this.batches = [];\n\n /**\n * Index of the last batched shape in the stack of calls.\n *\n * @member {number}\n * @protected\n */\n this.shapeIndex = 0;\n\n /**\n * Cached bounds.\n *\n * @member {PIXI.Bounds}\n * @protected\n */\n this._bounds = new Bounds();\n\n /**\n * The bounds dirty flag.\n *\n * @member {number}\n * @protected\n */\n this.boundsDirty = -1;\n\n /**\n * Padding to add to the bounds.\n *\n * @member {number}\n * @default 0\n */\n this.boundsPadding = 0;\n\n this.batchable = false;\n\n this.indicesUint16 = null;\n\n this.uvsFloat32 = null;\n\n /**\n * Minimal distance between points that are considered different.\n * Affects line tesselation.\n *\n * @member {number}\n */\n this.closePointEps = 1e-4;\n }\n\n if ( BatchGeometry ) GraphicsGeometry.__proto__ = BatchGeometry;\n GraphicsGeometry.prototype = Object.create( BatchGeometry && BatchGeometry.prototype );\n GraphicsGeometry.prototype.constructor = GraphicsGeometry;\n\n var prototypeAccessors = { bounds: { configurable: true } };\n\n /**\n * Get the current bounds of the graphic geometry.\n *\n * @member {PIXI.Bounds}\n * @readonly\n */\n prototypeAccessors.bounds.get = function ()\n {\n if (this.boundsDirty !== this.dirty)\n {\n this.boundsDirty = this.dirty;\n this.calculateBounds();\n }\n\n return this._bounds;\n };\n\n /**\n * Call if you changed graphicsData manually.\n * Empties all batch buffers.\n */\n GraphicsGeometry.prototype.invalidate = function invalidate ()\n {\n this.boundsDirty = -1;\n this.dirty++;\n this.batchDirty++;\n this.shapeIndex = 0;\n\n this.points.length = 0;\n this.colors.length = 0;\n this.uvs.length = 0;\n this.indices.length = 0;\n this.textureIds.length = 0;\n\n for (var i = 0; i < this.drawCalls.length; i++)\n {\n this.drawCalls[i].textures.length = 0;\n DRAW_CALL_POOL.push(this.drawCalls[i]);\n }\n\n this.drawCalls.length = 0;\n\n for (var i$1 = 0; i$1 < this.batches.length; i$1++)\n {\n var batch = this.batches[i$1];\n\n batch.start = 0;\n batch.attribStart = 0;\n batch.style = null;\n BATCH_POOL.push(batch);\n }\n\n this.batches.length = 0;\n };\n\n /**\n * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings.\n *\n * @return {PIXI.GraphicsGeometry} This GraphicsGeometry object. Good for chaining method calls\n */\n GraphicsGeometry.prototype.clear = function clear ()\n {\n if (this.graphicsData.length > 0)\n {\n this.invalidate();\n this.clearDirty++;\n this.graphicsData.length = 0;\n }\n\n return this;\n };\n\n /**\n * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw.\n * @param {PIXI.FillStyle} fillStyle - Defines style of the fill.\n * @param {PIXI.LineStyle} lineStyle - Defines style of the lines.\n * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape.\n * @return {PIXI.GraphicsGeometry} Returns geometry for chaining.\n */\n GraphicsGeometry.prototype.drawShape = function drawShape (shape, fillStyle, lineStyle, matrix)\n {\n var data = new GraphicsData(shape, fillStyle, lineStyle, matrix);\n\n this.graphicsData.push(data);\n this.dirty++;\n\n return this;\n };\n\n /**\n * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw.\n * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape.\n * @return {PIXI.GraphicsGeometry} Returns geometry for chaining.\n */\n GraphicsGeometry.prototype.drawHole = function drawHole (shape, matrix)\n {\n if (!this.graphicsData.length)\n {\n return null;\n }\n\n var data = new GraphicsData(shape, null, null, matrix);\n\n var lastShape = this.graphicsData[this.graphicsData.length - 1];\n\n data.lineStyle = lastShape.lineStyle;\n\n lastShape.holes.push(data);\n\n this.dirty++;\n\n return this;\n };\n\n /**\n * Destroys the Graphics object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n GraphicsGeometry.prototype.destroy = function destroy (options)\n {\n BatchGeometry.prototype.destroy.call(this, options);\n\n // destroy each of the GraphicsData objects\n for (var i = 0; i < this.graphicsData.length; ++i)\n {\n this.graphicsData[i].destroy();\n }\n\n this.points.length = 0;\n this.points = null;\n this.colors.length = 0;\n this.colors = null;\n this.uvs.length = 0;\n this.uvs = null;\n this.indices.length = 0;\n this.indices = null;\n this.indexBuffer.destroy();\n this.indexBuffer = null;\n this.graphicsData.length = 0;\n this.graphicsData = null;\n this.drawCalls.length = 0;\n this.drawCalls = null;\n this.batches.length = 0;\n this.batches = null;\n this._bounds = null;\n };\n\n /**\n * Check to see if a point is contained within this geometry.\n *\n * @param {PIXI.Point} point - Point to check if it's contained.\n * @return {Boolean} `true` if the point is contained within geometry.\n */\n GraphicsGeometry.prototype.containsPoint = function containsPoint (point)\n {\n var graphicsData = this.graphicsData;\n\n for (var i = 0; i < graphicsData.length; ++i)\n {\n var data = graphicsData[i];\n\n if (!data.fillStyle.visible)\n {\n continue;\n }\n\n // only deal with fills..\n if (data.shape)\n {\n if (data.matrix)\n {\n data.matrix.applyInverse(point, tmpPoint);\n }\n else\n {\n tmpPoint.copyFrom(point);\n }\n\n if (data.shape.contains(tmpPoint.x, tmpPoint.y))\n {\n if (data.holes)\n {\n for (var i$1 = 0; i$1 < data.holes.length; i$1++)\n {\n var hole = data.holes[i$1];\n\n if (hole.shape.contains(tmpPoint.x, tmpPoint.y))\n {\n return false;\n }\n }\n }\n\n return true;\n }\n }\n }\n\n return false;\n };\n\n /**\n * Generates intermediate batch data. Either gets converted to drawCalls\n * or used to convert to batch objects directly by the Graphics object.\n */\n GraphicsGeometry.prototype.updateBatches = function updateBatches ()\n {\n if (this.dirty === this.cacheDirty) { return; }\n if (this.graphicsData.length === 0)\n {\n this.batchable = true;\n\n return;\n }\n\n if (this.dirty !== this.cacheDirty)\n {\n for (var i = 0; i < this.graphicsData.length; i++)\n {\n var data = this.graphicsData[i];\n\n if (data.fillStyle && !data.fillStyle.texture.baseTexture.valid) { return; }\n if (data.lineStyle && !data.lineStyle.texture.baseTexture.valid) { return; }\n }\n }\n\n this.cacheDirty = this.dirty;\n\n var uvs = this.uvs;\n\n var batchPart = null;\n var currentTexture = null;\n var currentColor = 0;\n var currentNative = false;\n\n if (this.batches.length > 0)\n {\n batchPart = this.batches[this.batches.length - 1];\n\n var style = batchPart.style;\n\n currentTexture = style.texture.baseTexture;\n currentColor = style.color + style.alpha;\n currentNative = !!style.native;\n }\n\n for (var i$1 = this.shapeIndex; i$1 < this.graphicsData.length; i$1++)\n {\n this.shapeIndex++;\n\n var data$1 = this.graphicsData[i$1];\n var command = fillCommands[data$1.type];\n\n var fillStyle = data$1.fillStyle;\n var lineStyle = data$1.lineStyle;\n\n // build out the shapes points..\n command.build(data$1);\n\n if (data$1.matrix)\n {\n this.transformPoints(data$1.points, data$1.matrix);\n }\n\n for (var j = 0; j < 2; j++)\n {\n var style$1 = (j === 0) ? fillStyle : lineStyle;\n\n if (!style$1.visible) { continue; }\n\n var nextTexture = style$1.texture.baseTexture;\n\n var index$1 = this.indices.length;\n var attribIndex = this.points.length / 2;\n\n // close batch if style is different\n if (batchPart\n && (currentTexture !== nextTexture\n || currentColor !== (style$1.color + style$1.alpha)\n || currentNative !== !!style$1.native))\n {\n batchPart.size = index$1 - batchPart.start;\n batchPart.attribSize = attribIndex - batchPart.attribStart;\n\n if (batchPart.size > 0)\n {\n batchPart = null;\n }\n }\n // spawn new batch if its first batch or previous was closed\n if (!batchPart)\n {\n batchPart = BATCH_POOL.pop() || new BatchPart();\n this.batches.push(batchPart);\n nextTexture.wrapMode = WRAP_MODES.REPEAT;\n currentTexture = nextTexture;\n currentColor = style$1.color + style$1.alpha;\n currentNative = style$1.native;\n\n batchPart.style = style$1;\n batchPart.start = index$1;\n batchPart.attribStart = attribIndex;\n }\n\n var start = this.points.length / 2;\n\n if (j === 0)\n {\n if (data$1.holes.length)\n {\n this.processHoles(data$1.holes);\n\n buildPoly.triangulate(data$1, this);\n }\n else\n {\n command.triangulate(data$1, this);\n }\n }\n else\n {\n buildLine(data$1, this);\n\n for (var i$2 = 0; i$2 < data$1.holes.length; i$2++)\n {\n buildLine(data$1.holes[i$2], this);\n }\n }\n\n var size = (this.points.length / 2) - start;\n\n this.addUvs(this.points, uvs, style$1.texture, start, size, style$1.matrix);\n }\n }\n\n var index = this.indices.length;\n var attrib = this.points.length / 2;\n\n if (!batchPart)\n {\n // there are no visible styles in GraphicsData\n // its possible that someone wants Graphics just for the bounds\n this.batchable = true;\n\n return;\n }\n\n batchPart.size = index - batchPart.start;\n batchPart.attribSize = attrib - batchPart.attribStart;\n this.indicesUint16 = new Uint16Array(this.indices);\n\n // TODO make this a const..\n this.batchable = this.isBatchable();\n\n if (this.batchable)\n {\n this.batchDirty++;\n\n this.uvsFloat32 = new Float32Array(this.uvs);\n\n // offset the indices so that it works with the batcher...\n for (var i$3 = 0; i$3 < this.batches.length; i$3++)\n {\n var batch = this.batches[i$3];\n\n for (var j$1 = 0; j$1 < batch.size; j$1++)\n {\n var index$2 = batch.start + j$1;\n\n this.indicesUint16[index$2] = this.indicesUint16[index$2] - batch.attribStart;\n }\n }\n }\n else\n {\n this.buildDrawCalls();\n }\n };\n\n /**\n * Checks to see if this graphics geometry can be batched.\n * Currently it needs to be small enough and not contain any native lines.\n * @protected\n */\n GraphicsGeometry.prototype.isBatchable = function isBatchable ()\n {\n var batches = this.batches;\n\n for (var i = 0; i < batches.length; i++)\n {\n if (batches[i].style.native)\n {\n return false;\n }\n }\n\n return (this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2);\n };\n\n /**\n * Converts intermediate batches data to drawCalls.\n * @protected\n */\n GraphicsGeometry.prototype.buildDrawCalls = function buildDrawCalls ()\n {\n var TICK = ++BaseTexture._globalBatch;\n\n for (var i = 0; i < this.drawCalls.length; i++)\n {\n this.drawCalls[i].textures.length = 0;\n DRAW_CALL_POOL.push(this.drawCalls[i]);\n }\n\n this.drawCalls.length = 0;\n\n var uvs = this.uvs;\n var colors = this.colors;\n var textureIds = this.textureIds;\n\n var currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall();\n\n currentGroup.textureCount = 0;\n currentGroup.start = 0;\n currentGroup.size = 0;\n currentGroup.type = DRAW_MODES.TRIANGLES;\n\n var textureCount = 0;\n var currentTexture = null;\n var textureId = 0;\n var native = false;\n var drawMode = DRAW_MODES.TRIANGLES;\n\n var index = 0;\n\n this.drawCalls.push(currentGroup);\n\n // TODO - this can be simplified\n for (var i$1 = 0; i$1 < this.batches.length; i$1++)\n {\n var data = this.batches[i$1];\n\n // TODO add some full on MAX_TEXTURE CODE..\n var MAX_TEXTURES = 8;\n\n var style = data.style;\n\n var nextTexture = style.texture.baseTexture;\n\n if (native !== !!style.native)\n {\n native = style.native;\n drawMode = native ? DRAW_MODES.LINES : DRAW_MODES.TRIANGLES;\n\n // force the batch to break!\n currentTexture = null;\n textureCount = MAX_TEXTURES;\n TICK++;\n }\n\n if (currentTexture !== nextTexture)\n {\n currentTexture = nextTexture;\n\n if (nextTexture._batchEnabled !== TICK)\n {\n if (textureCount === MAX_TEXTURES)\n {\n TICK++;\n\n textureCount = 0;\n\n if (currentGroup.size > 0)\n {\n currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall();\n this.drawCalls.push(currentGroup);\n }\n\n currentGroup.start = index;\n currentGroup.size = 0;\n currentGroup.textureCount = 0;\n currentGroup.type = drawMode;\n }\n\n // TODO add this to the render part..\n nextTexture.touched = 1;// touch;\n nextTexture._batchEnabled = TICK;\n nextTexture._id = textureCount;\n nextTexture.wrapMode = 10497;\n\n currentGroup.textures[currentGroup.textureCount++] = nextTexture;\n textureCount++;\n }\n }\n\n currentGroup.size += data.size;\n index += data.size;\n\n textureId = nextTexture._id;\n\n this.addColors(colors, style.color, style.alpha, data.attribSize);\n this.addTextureIds(textureIds, textureId, data.attribSize);\n }\n\n BaseTexture._globalBatch = TICK;\n\n // upload..\n // merge for now!\n var verts = this.points;\n\n // verts are 2 positions.. so we * by 3 as there are 6 properties.. then 4 cos its bytes\n var glPoints = new ArrayBuffer(verts.length * 3 * 4);\n var f32 = new Float32Array(glPoints);\n var u32 = new Uint32Array(glPoints);\n\n var p = 0;\n\n for (var i$2 = 0; i$2 < verts.length / 2; i$2++)\n {\n f32[p++] = verts[i$2 * 2];\n f32[p++] = verts[(i$2 * 2) + 1];\n\n f32[p++] = uvs[i$2 * 2];\n f32[p++] = uvs[(i$2 * 2) + 1];\n\n u32[p++] = colors[i$2];\n\n f32[p++] = textureIds[i$2];\n }\n\n this._buffer.update(glPoints);\n this._indexBuffer.update(this.indicesUint16);\n };\n\n /**\n * Process the holes data.\n *\n * @param {PIXI.GraphicsData[]} holes - Holes to render\n * @protected\n */\n GraphicsGeometry.prototype.processHoles = function processHoles (holes)\n {\n for (var i = 0; i < holes.length; i++)\n {\n var hole = holes[i];\n\n var command = fillCommands[hole.type];\n\n command.build(hole);\n\n if (hole.matrix)\n {\n this.transformPoints(hole.points, hole.matrix);\n }\n }\n };\n\n /**\n * Update the local bounds of the object. Expensive to use performance-wise.\n * @protected\n */\n GraphicsGeometry.prototype.calculateBounds = function calculateBounds ()\n {\n var minX = Infinity;\n var maxX = -Infinity;\n\n var minY = Infinity;\n var maxY = -Infinity;\n\n if (this.graphicsData.length)\n {\n var shape = null;\n var x = 0;\n var y = 0;\n var w = 0;\n var h = 0;\n\n for (var i = 0; i < this.graphicsData.length; i++)\n {\n var data = this.graphicsData[i];\n\n var type = data.type;\n var lineWidth = data.lineStyle ? data.lineStyle.width : 0;\n\n shape = data.shape;\n\n if (type === SHAPES.RECT || type === SHAPES.RREC)\n {\n x = shape.x - (lineWidth / 2);\n y = shape.y - (lineWidth / 2);\n w = shape.width + lineWidth;\n h = shape.height + lineWidth;\n\n minX = x < minX ? x : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y < minY ? y : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else if (type === SHAPES.CIRC)\n {\n x = shape.x;\n y = shape.y;\n w = shape.radius + (lineWidth / 2);\n h = shape.radius + (lineWidth / 2);\n\n minX = x - w < minX ? x - w : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y - h < minY ? y - h : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else if (type === SHAPES.ELIP)\n {\n x = shape.x;\n y = shape.y;\n w = shape.width + (lineWidth / 2);\n h = shape.height + (lineWidth / 2);\n\n minX = x - w < minX ? x - w : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y - h < minY ? y - h : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else\n {\n // POLY\n var points = shape.points;\n var x2 = 0;\n var y2 = 0;\n var dx = 0;\n var dy = 0;\n var rw = 0;\n var rh = 0;\n var cx = 0;\n var cy = 0;\n\n for (var j = 0; j + 2 < points.length; j += 2)\n {\n x = points[j];\n y = points[j + 1];\n x2 = points[j + 2];\n y2 = points[j + 3];\n dx = Math.abs(x2 - x);\n dy = Math.abs(y2 - y);\n h = lineWidth;\n w = Math.sqrt((dx * dx) + (dy * dy));\n\n if (w < 1e-9)\n {\n continue;\n }\n\n rw = ((h / w * dy) + dx) / 2;\n rh = ((h / w * dx) + dy) / 2;\n cx = (x2 + x) / 2;\n cy = (y2 + y) / 2;\n\n minX = cx - rw < minX ? cx - rw : minX;\n maxX = cx + rw > maxX ? cx + rw : maxX;\n\n minY = cy - rh < minY ? cy - rh : minY;\n maxY = cy + rh > maxY ? cy + rh : maxY;\n }\n }\n }\n }\n else\n {\n minX = 0;\n maxX = 0;\n minY = 0;\n maxY = 0;\n }\n\n var padding = this.boundsPadding;\n\n this._bounds.minX = minX - padding;\n this._bounds.maxX = maxX + padding;\n\n this._bounds.minY = minY - padding;\n this._bounds.maxY = maxY + padding;\n };\n\n /**\n * Transform points using matrix.\n *\n * @protected\n * @param {number[]} points - Points to transform\n * @param {PIXI.Matrix} matrix - Transform matrix\n */\n GraphicsGeometry.prototype.transformPoints = function transformPoints (points, matrix)\n {\n for (var i = 0; i < points.length / 2; i++)\n {\n var x = points[(i * 2)];\n var y = points[(i * 2) + 1];\n\n points[(i * 2)] = (matrix.a * x) + (matrix.c * y) + matrix.tx;\n points[(i * 2) + 1] = (matrix.b * x) + (matrix.d * y) + matrix.ty;\n }\n };\n\n /**\n * Add colors.\n *\n * @protected\n * @param {number[]} colors - List of colors to add to\n * @param {number} color - Color to add\n * @param {number} alpha - Alpha to use\n * @param {number} size - Number of colors to add\n */\n GraphicsGeometry.prototype.addColors = function addColors (colors, color, alpha, size)\n {\n // TODO use the premultiply bits Ivan added\n var rgb = (color >> 16) + (color & 0xff00) + ((color & 0xff) << 16);\n\n var rgba = premultiplyTint(rgb, alpha);\n\n while (size-- > 0)\n {\n colors.push(rgba);\n }\n };\n\n /**\n * Add texture id that the shader/fragment wants to use.\n *\n * @protected\n * @param {number[]} textureIds\n * @param {number} id\n * @param {number} size\n */\n GraphicsGeometry.prototype.addTextureIds = function addTextureIds (textureIds, id, size)\n {\n while (size-- > 0)\n {\n textureIds.push(id);\n }\n };\n\n /**\n * Generates the UVs for a shape.\n *\n * @protected\n * @param {number[]} verts - Vertices\n * @param {number[]} uvs - UVs\n * @param {PIXI.Texture} texture - Reference to Texture\n * @param {number} start - Index buffer start index.\n * @param {number} size - The size/length for index buffer.\n * @param {PIXI.Matrix} [matrix] - Optional transform for all points.\n */\n GraphicsGeometry.prototype.addUvs = function addUvs (verts, uvs, texture, start, size, matrix)\n {\n var index = 0;\n var uvsStart = uvs.length;\n var frame = texture.frame;\n\n while (index < size)\n {\n var x = verts[(start + index) * 2];\n var y = verts[((start + index) * 2) + 1];\n\n if (matrix)\n {\n var nx = (matrix.a * x) + (matrix.c * y) + matrix.tx;\n\n y = (matrix.b * x) + (matrix.d * y) + matrix.ty;\n x = nx;\n }\n\n index++;\n\n uvs.push(x / frame.width, y / frame.height);\n }\n\n var baseTexture = texture.baseTexture;\n\n if (frame.width < baseTexture.width\n || frame.height < baseTexture.height)\n {\n this.adjustUvs(uvs, texture, uvsStart, size);\n }\n };\n\n /**\n * Modify uvs array according to position of texture region\n * Does not work with rotated or trimmed textures\n * @param {number[]} uvs array\n * @param {PIXI.Texture} texture region\n * @param {number} start starting index for uvs\n * @param {number} size how many points to adjust\n */\n GraphicsGeometry.prototype.adjustUvs = function adjustUvs (uvs, texture, start, size)\n {\n var baseTexture = texture.baseTexture;\n var eps = 1e-6;\n var finish = start + (size * 2);\n var frame = texture.frame;\n var scaleX = frame.width / baseTexture.width;\n var scaleY = frame.height / baseTexture.height;\n var offsetX = frame.x / frame.width;\n var offsetY = frame.y / frame.height;\n var minX = Math.floor(uvs[start] + eps);\n var minY = Math.floor(uvs[start + 1] + eps);\n\n for (var i = start + 2; i < finish; i += 2)\n {\n minX = Math.min(minX, Math.floor(uvs[i] + eps));\n minY = Math.min(minY, Math.floor(uvs[i + 1] + eps));\n }\n offsetX -= minX;\n offsetY -= minY;\n for (var i$1 = start; i$1 < finish; i$1 += 2)\n {\n uvs[i$1] = (uvs[i$1] + offsetX) * scaleX;\n uvs[i$1 + 1] = (uvs[i$1 + 1] + offsetY) * scaleY;\n }\n };\n\n Object.defineProperties( GraphicsGeometry.prototype, prototypeAccessors );\n\n return GraphicsGeometry;\n}(BatchGeometry));\n\n/**\n * The maximum number of points to consider an object \"batchable\",\n * able to be batched by the renderer's batch system.\n *\n * @memberof PIXI.GraphicsGeometry\n * @static\n * @member {number} BATCHABLE_SIZE\n * @default 100\n */\nGraphicsGeometry.BATCHABLE_SIZE = 100;\n\n/**\n * Represents the line style for Graphics.\n * @memberof PIXI\n * @class\n * @extends PIXI.FillStyle\n */\nvar LineStyle = /*@__PURE__*/(function (FillStyle) {\n function LineStyle () {\n FillStyle.apply(this, arguments);\n }\n\n if ( FillStyle ) LineStyle.__proto__ = FillStyle;\n LineStyle.prototype = Object.create( FillStyle && FillStyle.prototype );\n LineStyle.prototype.constructor = LineStyle;\n\n LineStyle.prototype.clone = function clone ()\n {\n var obj = new LineStyle();\n\n obj.color = this.color;\n obj.alpha = this.alpha;\n obj.texture = this.texture;\n obj.matrix = this.matrix;\n obj.visible = this.visible;\n obj.width = this.width;\n obj.alignment = this.alignment;\n obj.native = this.native;\n\n return obj;\n };\n /**\n * Reset the line style to default.\n */\n LineStyle.prototype.reset = function reset ()\n {\n FillStyle.prototype.reset.call(this);\n\n // Override default line style color\n this.color = 0x0;\n\n /**\n * The width (thickness) of any lines drawn.\n *\n * @member {number}\n * @default 0\n */\n this.width = 0;\n\n /**\n * The alignment of any lines drawn (0.5 = middle, 1 = outter, 0 = inner).\n *\n * @member {number}\n * @default 0\n */\n this.alignment = 0.5;\n\n /**\n * If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n *\n * @member {boolean}\n * @default false\n */\n this.native = false;\n };\n\n return LineStyle;\n}(FillStyle));\n\n/**\n * Utilities for bezier curves\n * @class\n * @private\n */\nvar BezierUtils = function BezierUtils () {};\n\nBezierUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY)\n{\n var n = 10;\n var result = 0.0;\n var t = 0.0;\n var t2 = 0.0;\n var t3 = 0.0;\n var nt = 0.0;\n var nt2 = 0.0;\n var nt3 = 0.0;\n var x = 0.0;\n var y = 0.0;\n var dx = 0.0;\n var dy = 0.0;\n var prevX = fromX;\n var prevY = fromY;\n\n for (var i = 1; i <= n; ++i)\n {\n t = i / n;\n t2 = t * t;\n t3 = t2 * t;\n nt = (1.0 - t);\n nt2 = nt * nt;\n nt3 = nt2 * nt;\n\n x = (nt3 * fromX) + (3.0 * nt2 * t * cpX) + (3.0 * nt * t2 * cpX2) + (t3 * toX);\n y = (nt3 * fromY) + (3.0 * nt2 * t * cpY) + (3 * nt * t2 * cpY2) + (t3 * toY);\n dx = prevX - x;\n dy = prevY - y;\n prevX = x;\n prevY = y;\n\n result += Math.sqrt((dx * dx) + (dy * dy));\n }\n\n return result;\n};\n\n/**\n * Calculate the points for a bezier curve and then draws it.\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} cpX2 - Second Control point x\n * @param {number} cpY2 - Second Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} points - Path array to push points into\n */\nBezierUtils.curveTo = function curveTo (cpX, cpY, cpX2, cpY2, toX, toY, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n points.length -= 2;\n\n var n = GRAPHICS_CURVES._segmentsCount(\n BezierUtils.curveLength(fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY)\n );\n\n var dt = 0;\n var dt2 = 0;\n var dt3 = 0;\n var t2 = 0;\n var t3 = 0;\n\n points.push(fromX, fromY);\n\n for (var i = 1, j = 0; i <= n; ++i)\n {\n j = i / n;\n\n dt = (1 - j);\n dt2 = dt * dt;\n dt3 = dt2 * dt;\n\n t2 = j * j;\n t3 = t2 * j;\n\n points.push(\n (dt3 * fromX) + (3 * dt2 * j * cpX) + (3 * dt * t2 * cpX2) + (t3 * toX),\n (dt3 * fromY) + (3 * dt2 * j * cpY) + (3 * dt * t2 * cpY2) + (t3 * toY)\n );\n }\n};\n\n/**\n * Utilities for quadratic curves\n * @class\n * @private\n */\nvar QuadraticUtils = function QuadraticUtils () {};\n\nQuadraticUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, toX, toY)\n{\n var ax = fromX - (2.0 * cpX) + toX;\n var ay = fromY - (2.0 * cpY) + toY;\n var bx = (2.0 * cpX) - (2.0 * fromX);\n var by = (2.0 * cpY) - (2.0 * fromY);\n var a = 4.0 * ((ax * ax) + (ay * ay));\n var b = 4.0 * ((ax * bx) + (ay * by));\n var c = (bx * bx) + (by * by);\n\n var s = 2.0 * Math.sqrt(a + b + c);\n var a2 = Math.sqrt(a);\n var a32 = 2.0 * a * a2;\n var c2 = 2.0 * Math.sqrt(c);\n var ba = b / a2;\n\n return (\n (a32 * s)\n + (a2 * b * (s - c2))\n + (\n ((4.0 * c * a) - (b * b))\n * Math.log(((2.0 * a2) + ba + s) / (ba + c2))\n )\n ) / (4.0 * a32);\n};\n\n/**\n * Calculate the points for a quadratic bezier curve and then draws it.\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * @private\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} points - Points to add segments to.\n */\nQuadraticUtils.curveTo = function curveTo (cpX, cpY, toX, toY, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n var n = GRAPHICS_CURVES._segmentsCount(\n QuadraticUtils.curveLength(fromX, fromY, cpX, cpY, toX, toY)\n );\n\n var xa = 0;\n var ya = 0;\n\n for (var i = 1; i <= n; ++i)\n {\n var j = i / n;\n\n xa = fromX + ((cpX - fromX) * j);\n ya = fromY + ((cpY - fromY) * j);\n\n points.push(xa + (((cpX + ((toX - cpX) * j)) - xa) * j),\n ya + (((cpY + ((toY - cpY) * j)) - ya) * j));\n }\n};\n\n/**\n * Utilities for arc curves\n * @class\n * @private\n */\nvar ArcUtils = function ArcUtils () {};\n\nArcUtils.curveTo = function curveTo (x1, y1, x2, y2, radius, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n var a1 = fromY - y1;\n var b1 = fromX - x1;\n var a2 = y2 - y1;\n var b2 = x2 - x1;\n var mm = Math.abs((a1 * b2) - (b1 * a2));\n\n if (mm < 1.0e-8 || radius === 0)\n {\n if (points[points.length - 2] !== x1 || points[points.length - 1] !== y1)\n {\n points.push(x1, y1);\n }\n\n return null;\n }\n\n var dd = (a1 * a1) + (b1 * b1);\n var cc = (a2 * a2) + (b2 * b2);\n var tt = (a1 * a2) + (b1 * b2);\n var k1 = radius * Math.sqrt(dd) / mm;\n var k2 = radius * Math.sqrt(cc) / mm;\n var j1 = k1 * tt / dd;\n var j2 = k2 * tt / cc;\n var cx = (k1 * b2) + (k2 * b1);\n var cy = (k1 * a2) + (k2 * a1);\n var px = b1 * (k2 + j1);\n var py = a1 * (k2 + j1);\n var qx = b2 * (k1 + j2);\n var qy = a2 * (k1 + j2);\n var startAngle = Math.atan2(py - cy, px - cx);\n var endAngle = Math.atan2(qy - cy, qx - cx);\n\n return {\n cx: (cx + x1),\n cy: (cy + y1),\n radius: radius,\n startAngle: startAngle,\n endAngle: endAngle,\n anticlockwise: (b1 * a2 > b2 * a1),\n };\n};\n\n/**\n * The arc method creates an arc/curve (used to create circles, or parts of circles).\n *\n * @private\n * @param {number} startX - Start x location of arc\n * @param {number} startY - Start y location of arc\n * @param {number} cx - The x-coordinate of the center of the circle\n * @param {number} cy - The y-coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position\n * of the arc's circle)\n * @param {number} endAngle - The ending angle, in radians\n * @param {boolean} anticlockwise - Specifies whether the drawing should be\n * counter-clockwise or clockwise. False is default, and indicates clockwise, while true\n * indicates counter-clockwise.\n * @param {number} n - Number of segments\n * @param {number[]} points - Collection of points to add to\n */\nArcUtils.arc = function arc (startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points)\n{\n var sweep = endAngle - startAngle;\n var n = GRAPHICS_CURVES._segmentsCount(\n Math.abs(sweep) * radius,\n Math.ceil(Math.abs(sweep) / PI_2) * 40\n );\n\n var theta = (sweep) / (n * 2);\n var theta2 = theta * 2;\n var cTheta = Math.cos(theta);\n var sTheta = Math.sin(theta);\n var segMinus = n - 1;\n var remainder = (segMinus % 1) / segMinus;\n\n for (var i = 0; i <= segMinus; ++i)\n {\n var real = i + (remainder * i);\n var angle = ((theta) + startAngle + (theta2 * real));\n var c = Math.cos(angle);\n var s = -Math.sin(angle);\n\n points.push(\n (((cTheta * c) + (sTheta * s)) * radius) + cx,\n (((cTheta * -s) + (sTheta * c)) * radius) + cy\n );\n }\n};\n\n/**\n * Draw a star shape with an arbitrary number of points.\n *\n * @class\n * @extends PIXI.Polygon\n * @memberof PIXI\n * @param {number} x - Center X position of the star\n * @param {number} y - Center Y position of the star\n * @param {number} points - The number of points of the star, must be > 1\n * @param {number} radius - The outer radius of the star\n * @param {number} [innerRadius] - The inner radius between points, default half `radius`\n * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\nvar Star = /*@__PURE__*/(function (Polygon) {\n function Star(x, y, points, radius, innerRadius, rotation)\n {\n innerRadius = innerRadius || radius / 2;\n\n var startAngle = (-1 * Math.PI / 2) + rotation;\n var len = points * 2;\n var delta = PI_2 / len;\n var polygon = [];\n\n for (var i = 0; i < len; i++)\n {\n var r = i % 2 ? innerRadius : radius;\n var angle = (i * delta) + startAngle;\n\n polygon.push(\n x + (r * Math.cos(angle)),\n y + (r * Math.sin(angle))\n );\n }\n\n Polygon.call(this, polygon);\n }\n\n if ( Polygon ) Star.__proto__ = Polygon;\n Star.prototype = Object.create( Polygon && Polygon.prototype );\n Star.prototype.constructor = Star;\n\n return Star;\n}(Polygon));\n\nvar temp = new Float32Array(3);\n\n// a default shaders map used by graphics..\nvar DEFAULT_SHADERS = {};\n\n/**\n * The Graphics class contains methods used to draw primitive shapes such as lines, circles and\n * rectangles to the display, and to color and fill them.\n *\n * Note that because Graphics can share a GraphicsGeometry with other instances,\n * it is necessary to call `destroy()` to properly dereference the underlying\n * GraphicsGeometry and avoid a memory leak. Alternatively, keep using the same\n * Graphics instance and call `clear()` between redraws.\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Graphics = /*@__PURE__*/(function (Container) {\n function Graphics(geometry)\n {\n if ( geometry === void 0 ) geometry = null;\n\n Container.call(this);\n /**\n * Includes vertex positions, face indices, normals, colors, UVs, and\n * custom attributes within buffers, reducing the cost of passing all\n * this data to the GPU. Can be shared between multiple Mesh or Graphics objects.\n * @member {PIXI.GraphicsGeometry}\n * @readonly\n */\n this.geometry = geometry || new GraphicsGeometry();\n\n this.geometry.refCount++;\n\n /**\n * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU.\n * Can be shared between multiple Graphics objects.\n * @member {PIXI.Shader}\n */\n this.shader = null;\n\n /**\n * Represents the WebGL state the Graphics required to render, excludes shader and geometry. E.g.,\n * blend mode, culling, depth testing, direction of rendering triangles, backface, etc.\n * @member {PIXI.State}\n */\n this.state = State.for2d();\n\n /**\n * Current fill style\n *\n * @member {PIXI.FillStyle}\n * @protected\n */\n this._fillStyle = new FillStyle();\n\n /**\n * Current line style\n *\n * @member {PIXI.LineStyle}\n * @protected\n */\n this._lineStyle = new LineStyle();\n\n /**\n * Current shape transform matrix.\n *\n * @member {PIXI.Matrix}\n * @protected\n */\n this._matrix = null;\n\n /**\n * Current hole mode is enabled.\n *\n * @member {boolean}\n * @default false\n * @protected\n */\n this._holeMode = false;\n\n /**\n * Current path\n *\n * @member {PIXI.Polygon}\n * @protected\n */\n this.currentPath = null;\n\n /**\n * When cacheAsBitmap is set to true the graphics object will be rendered as if it was a sprite.\n * This is useful if your graphics element does not change often, as it will speed up the rendering\n * of the object in exchange for taking up texture memory. It is also useful if you need the graphics\n * object to be anti-aliased, because it will be rendered using canvas. This is not recommended if\n * you are constantly redrawing the graphics element.\n *\n * @name cacheAsBitmap\n * @member {boolean}\n * @memberof PIXI.Graphics#\n * @default false\n */\n\n /**\n * A collections of batches! These can be drawn by the renderer batch system.\n *\n * @protected\n * @member {object[]}\n */\n this.batches = [];\n\n /**\n * Update dirty for limiting calculating tints for batches.\n *\n * @protected\n * @member {number}\n * @default -1\n */\n this.batchTint = -1;\n\n /**\n * Copy of the object vertex data.\n *\n * @protected\n * @member {Float32Array}\n */\n this.vertexData = null;\n\n this._transformID = -1;\n this.batchDirty = -1;\n\n /**\n * Renderer plugin for batching\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = 'batch';\n\n // Set default\n this.tint = 0xFFFFFF;\n this.blendMode = BLEND_MODES.NORMAL;\n }\n\n if ( Container ) Graphics.__proto__ = Container;\n Graphics.prototype = Object.create( Container && Container.prototype );\n Graphics.prototype.constructor = Graphics;\n\n var prototypeAccessors = { blendMode: { configurable: true },tint: { configurable: true },fill: { configurable: true },line: { configurable: true } };\n\n /**\n * Creates a new Graphics object with the same values as this one.\n * Note that the only the properties of the object are cloned, not its transform (position,scale,etc)\n *\n * @return {PIXI.Graphics} A clone of the graphics object\n */\n Graphics.prototype.clone = function clone ()\n {\n this.finishPoly();\n\n return new Graphics(this.geometry);\n };\n\n /**\n * The blend mode to be applied to the graphic shape. Apply a value of\n * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL;\n * @see PIXI.BLEND_MODES\n */\n prototypeAccessors.blendMode.set = function (value)\n {\n this.state.blendMode = value;\n };\n\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n /**\n * The tint applied to the graphic shape. This is a hex value. A value of\n * 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n prototypeAccessors.tint.set = function (value)\n {\n this._tint = value;\n };\n\n /**\n * The current fill style.\n *\n * @member {PIXI.FillStyle}\n * @readonly\n */\n prototypeAccessors.fill.get = function ()\n {\n return this._fillStyle;\n };\n\n /**\n * The current line style.\n *\n * @member {PIXI.LineStyle}\n * @readonly\n */\n prototypeAccessors.line.get = function ()\n {\n return this._lineStyle;\n };\n\n /**\n * Specifies the line style used for subsequent calls to Graphics methods such as the lineTo()\n * method or the drawCircle() method.\n *\n * @param {number} [width=0] - width of the line to draw, will update the objects stored style\n * @param {number} [color=0] - color of the line to draw, will update the objects stored style\n * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style\n * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter)\n * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineStyle = function lineStyle (width, color, alpha, alignment, native)\n {\n if ( width === void 0 ) width = 0;\n if ( color === void 0 ) color = 0;\n if ( alpha === void 0 ) alpha = 1;\n if ( alignment === void 0 ) alignment = 0.5;\n if ( native === void 0 ) native = false;\n\n this.lineTextureStyle(width, Texture.WHITE, color, alpha, null, alignment, native);\n\n return this;\n };\n\n /**\n * Like line style but support texture for line fill.\n *\n * @param {number} [width=0] - width of the line to draw, will update the objects stored style\n * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to use\n * @param {number} [color=0] - color of the line to draw, will update the objects stored style\n * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style\n * @param {PIXI.Matrix} [matrix=null] Texture matrix to transform texture\n * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter)\n * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineTextureStyle = function lineTextureStyle (width, texture, color, alpha,\n matrix, alignment, native)\n {\n if ( width === void 0 ) width = 0;\n if ( texture === void 0 ) texture = Texture.WHITE;\n if ( color === void 0 ) color = 0xFFFFFF;\n if ( alpha === void 0 ) alpha = 1;\n if ( matrix === void 0 ) matrix = null;\n if ( alignment === void 0 ) alignment = 0.5;\n if ( native === void 0 ) native = false;\n\n if (this.currentPath)\n {\n this.startPoly();\n }\n\n var visible = width > 0 && alpha > 0;\n\n if (!visible)\n {\n this._lineStyle.reset();\n }\n else\n {\n if (matrix)\n {\n matrix = matrix.clone();\n matrix.invert();\n }\n\n Object.assign(this._lineStyle, {\n color: color,\n width: width,\n alpha: alpha,\n matrix: matrix,\n texture: texture,\n alignment: alignment,\n native: native,\n visible: visible,\n });\n }\n\n return this;\n };\n\n /**\n * Start a polygon object internally\n * @protected\n */\n Graphics.prototype.startPoly = function startPoly ()\n {\n if (this.currentPath)\n {\n var points = this.currentPath.points;\n var len = this.currentPath.points.length;\n\n if (len > 2)\n {\n this.drawShape(this.currentPath);\n this.currentPath = new Polygon();\n this.currentPath.closeStroke = false;\n this.currentPath.points.push(points[len - 2], points[len - 1]);\n }\n }\n else\n {\n this.currentPath = new Polygon();\n this.currentPath.closeStroke = false;\n }\n };\n\n /**\n * Finish the polygon object.\n * @protected\n */\n Graphics.prototype.finishPoly = function finishPoly ()\n {\n if (this.currentPath)\n {\n if (this.currentPath.points.length > 2)\n {\n this.drawShape(this.currentPath);\n this.currentPath = null;\n }\n else\n {\n this.currentPath.points.length = 0;\n }\n }\n };\n\n /**\n * Moves the current drawing position to x, y.\n *\n * @param {number} x - the X coordinate to move to\n * @param {number} y - the Y coordinate to move to\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.moveTo = function moveTo (x, y)\n {\n this.startPoly();\n this.currentPath.points[0] = x;\n this.currentPath.points[1] = y;\n\n return this;\n };\n\n /**\n * Draws a line using the current line style from the current drawing position to (x, y);\n * The current drawing position is then set to (x, y).\n *\n * @param {number} x - the X coordinate to draw to\n * @param {number} y - the Y coordinate to draw to\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineTo = function lineTo (x, y)\n {\n if (!this.currentPath)\n {\n this.moveTo(0, 0);\n }\n\n // remove duplicates..\n var points = this.currentPath.points;\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n if (fromX !== x || fromY !== y)\n {\n points.push(x, y);\n }\n\n return this;\n };\n\n /**\n * Initialize the curve\n *\n * @protected\n * @param {number} [x=0]\n * @param {number} [y=0]\n */\n Graphics.prototype._initCurve = function _initCurve (x, y)\n {\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n if (this.currentPath)\n {\n if (this.currentPath.points.length === 0)\n {\n this.currentPath.points = [x, y];\n }\n }\n else\n {\n this.moveTo(x, y);\n }\n };\n\n /**\n * Calculate the points for a quadratic bezier curve and then draws it.\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.quadraticCurveTo = function quadraticCurveTo (cpX, cpY, toX, toY)\n {\n this._initCurve();\n\n var points = this.currentPath.points;\n\n if (points.length === 0)\n {\n this.moveTo(0, 0);\n }\n\n QuadraticUtils.curveTo(cpX, cpY, toX, toY, points);\n\n return this;\n };\n\n /**\n * Calculate the points for a bezier curve and then draws it.\n *\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} cpX2 - Second Control point x\n * @param {number} cpY2 - Second Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.bezierCurveTo = function bezierCurveTo (cpX, cpY, cpX2, cpY2, toX, toY)\n {\n this._initCurve();\n\n BezierUtils.curveTo(cpX, cpY, cpX2, cpY2, toX, toY, this.currentPath.points);\n\n return this;\n };\n\n /**\n * The arcTo() method creates an arc/curve between two tangents on the canvas.\n *\n * \"borrowed\" from https://code.google.com/p/fxcanvas/ - thanks google!\n *\n * @param {number} x1 - The x-coordinate of the first tangent point of the arc\n * @param {number} y1 - The y-coordinate of the first tangent point of the arc\n * @param {number} x2 - The x-coordinate of the end of the arc\n * @param {number} y2 - The y-coordinate of the end of the arc\n * @param {number} radius - The radius of the arc\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.arcTo = function arcTo (x1, y1, x2, y2, radius)\n {\n this._initCurve(x1, y1);\n\n var points = this.currentPath.points;\n\n var result = ArcUtils.curveTo(x1, y1, x2, y2, radius, points);\n\n if (result)\n {\n var cx = result.cx;\n var cy = result.cy;\n var radius$1 = result.radius;\n var startAngle = result.startAngle;\n var endAngle = result.endAngle;\n var anticlockwise = result.anticlockwise;\n\n this.arc(cx, cy, radius$1, startAngle, endAngle, anticlockwise);\n }\n\n return this;\n };\n\n /**\n * The arc method creates an arc/curve (used to create circles, or parts of circles).\n *\n * @param {number} cx - The x-coordinate of the center of the circle\n * @param {number} cy - The y-coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position\n * of the arc's circle)\n * @param {number} endAngle - The ending angle, in radians\n * @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be\n * counter-clockwise or clockwise. False is default, and indicates clockwise, while true\n * indicates counter-clockwise.\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.arc = function arc (cx, cy, radius, startAngle, endAngle, anticlockwise)\n {\n if ( anticlockwise === void 0 ) anticlockwise = false;\n\n if (startAngle === endAngle)\n {\n return this;\n }\n\n if (!anticlockwise && endAngle <= startAngle)\n {\n endAngle += PI_2;\n }\n else if (anticlockwise && startAngle <= endAngle)\n {\n startAngle += PI_2;\n }\n\n var sweep = endAngle - startAngle;\n\n if (sweep === 0)\n {\n return this;\n }\n\n var startX = cx + (Math.cos(startAngle) * radius);\n var startY = cy + (Math.sin(startAngle) * radius);\n var eps = this.geometry.closePointEps;\n\n // If the currentPath exists, take its points. Otherwise call `moveTo` to start a path.\n var points = this.currentPath ? this.currentPath.points : null;\n\n if (points)\n {\n // TODO: make a better fix.\n\n // We check how far our start is from the last existing point\n var xDiff = Math.abs(points[points.length - 2] - startX);\n var yDiff = Math.abs(points[points.length - 1] - startY);\n\n if (xDiff < eps && yDiff < eps)\n ;\n else\n {\n points.push(startX, startY);\n }\n }\n else\n {\n this.moveTo(startX, startY);\n points = this.currentPath.points;\n }\n\n ArcUtils.arc(startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points);\n\n return this;\n };\n\n /**\n * Specifies a simple one-color fill that subsequent calls to other Graphics methods\n * (such as lineTo() or drawCircle()) use when drawing.\n *\n * @param {number} [color=0] - the color of the fill\n * @param {number} [alpha=1] - the alpha of the fill\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.beginFill = function beginFill (color, alpha)\n {\n if ( color === void 0 ) color = 0;\n if ( alpha === void 0 ) alpha = 1;\n\n return this.beginTextureFill(Texture.WHITE, color, alpha);\n };\n\n /**\n * Begin the texture fill\n *\n * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to fill\n * @param {number} [color=0xffffff] - Background to fill behind texture\n * @param {number} [alpha=1] - Alpha of fill\n * @param {PIXI.Matrix} [matrix=null] - Transform matrix\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.beginTextureFill = function beginTextureFill (texture, color, alpha, matrix)\n {\n if ( texture === void 0 ) texture = Texture.WHITE;\n if ( color === void 0 ) color = 0xFFFFFF;\n if ( alpha === void 0 ) alpha = 1;\n if ( matrix === void 0 ) matrix = null;\n\n if (this.currentPath)\n {\n this.startPoly();\n }\n\n var visible = alpha > 0;\n\n if (!visible)\n {\n this._fillStyle.reset();\n }\n else\n {\n if (matrix)\n {\n matrix = matrix.clone();\n matrix.invert();\n }\n\n Object.assign(this._fillStyle, {\n color: color,\n alpha: alpha,\n texture: texture,\n matrix: matrix,\n visible: visible,\n });\n }\n\n return this;\n };\n\n /**\n * Applies a fill to the lines and shapes that were added since the last call to the beginFill() method.\n *\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.endFill = function endFill ()\n {\n this.finishPoly();\n\n this._fillStyle.reset();\n\n return this;\n };\n\n /**\n * Draws a rectangle shape.\n *\n * @param {number} x - The X coord of the top-left of the rectangle\n * @param {number} y - The Y coord of the top-left of the rectangle\n * @param {number} width - The width of the rectangle\n * @param {number} height - The height of the rectangle\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawRect = function drawRect (x, y, width, height)\n {\n return this.drawShape(new Rectangle(x, y, width, height));\n };\n\n /**\n * Draw a rectangle shape with rounded/beveled corners.\n *\n * @param {number} x - The X coord of the top-left of the rectangle\n * @param {number} y - The Y coord of the top-left of the rectangle\n * @param {number} width - The width of the rectangle\n * @param {number} height - The height of the rectangle\n * @param {number} radius - Radius of the rectangle corners\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawRoundedRect = function drawRoundedRect (x, y, width, height, radius)\n {\n return this.drawShape(new RoundedRectangle(x, y, width, height, radius));\n };\n\n /**\n * Draws a circle.\n *\n * @param {number} x - The X coordinate of the center of the circle\n * @param {number} y - The Y coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawCircle = function drawCircle (x, y, radius)\n {\n return this.drawShape(new Circle(x, y, radius));\n };\n\n /**\n * Draws an ellipse.\n *\n * @param {number} x - The X coordinate of the center of the ellipse\n * @param {number} y - The Y coordinate of the center of the ellipse\n * @param {number} width - The half width of the ellipse\n * @param {number} height - The half height of the ellipse\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawEllipse = function drawEllipse (x, y, width, height)\n {\n return this.drawShape(new Ellipse(x, y, width, height));\n };\n\n /**\n * Draws a polygon using the given path.\n *\n * @param {number[]|PIXI.Point[]|PIXI.Polygon} path - The path data used to construct the polygon.\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawPolygon = function drawPolygon (path)\n {\n var arguments$1 = arguments;\n\n // prevents an argument assignment deopt\n // see section 3.1: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments\n var points = path;\n\n var closeStroke = true;// !!this._fillStyle;\n\n // check if data has points..\n if (points.points)\n {\n closeStroke = points.closeStroke;\n points = points.points;\n }\n\n if (!Array.isArray(points))\n {\n // prevents an argument leak deopt\n // see section 3.2: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments\n points = new Array(arguments.length);\n\n for (var i = 0; i < points.length; ++i)\n {\n points[i] = arguments$1[i]; // eslint-disable-line prefer-rest-params\n }\n }\n\n var shape = new Polygon(points);\n\n shape.closeStroke = closeStroke;\n\n this.drawShape(shape);\n\n return this;\n };\n\n /**\n * Draw any shape.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - Shape to draw\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawShape = function drawShape (shape)\n {\n if (!this._holeMode)\n {\n this.geometry.drawShape(\n shape,\n this._fillStyle.clone(),\n this._lineStyle.clone(),\n this._matrix\n );\n }\n else\n {\n this.geometry.drawHole(shape, this._matrix);\n }\n\n return this;\n };\n\n /**\n * Draw a star shape with an arbitrary number of points.\n *\n * @param {number} x - Center X position of the star\n * @param {number} y - Center Y position of the star\n * @param {number} points - The number of points of the star, must be > 1\n * @param {number} radius - The outer radius of the star\n * @param {number} [innerRadius] - The inner radius between points, default half `radius`\n * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawStar = function drawStar (x, y, points, radius, innerRadius, rotation)\n {\n if ( rotation === void 0 ) rotation = 0;\n\n return this.drawPolygon(new Star(x, y, points, radius, innerRadius, rotation));\n };\n\n /**\n * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings.\n *\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.clear = function clear ()\n {\n this.geometry.clear();\n this._lineStyle.reset();\n this._fillStyle.reset();\n\n this._matrix = null;\n this._holeMode = false;\n this.currentPath = null;\n\n return this;\n };\n\n /**\n * True if graphics consists of one rectangle, and thus, can be drawn like a Sprite and\n * masked with gl.scissor.\n *\n * @returns {boolean} True if only 1 rect.\n */\n Graphics.prototype.isFastRect = function isFastRect ()\n {\n // will fix this!\n return false;\n // this.graphicsData.length === 1\n // && this.graphicsData[0].shape.type === SHAPES.RECT\n // && !this.graphicsData[0].lineWidth;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._render = function _render (renderer)\n {\n this.finishPoly();\n\n var geometry = this.geometry;\n\n // batch part..\n // batch it!\n geometry.updateBatches();\n\n if (geometry.batchable)\n {\n if (this.batchDirty !== geometry.batchDirty)\n {\n this._populateBatches();\n }\n\n this._renderBatched(renderer);\n }\n else\n {\n // no batching...\n renderer.batch.flush();\n\n this._renderDirect(renderer);\n }\n };\n\n /**\n * Populating batches for rendering\n *\n * @protected\n */\n Graphics.prototype._populateBatches = function _populateBatches ()\n {\n var geometry = this.geometry;\n var blendMode = this.blendMode;\n\n this.batches = [];\n this.batchTint = -1;\n this._transformID = -1;\n this.batchDirty = geometry.batchDirty;\n\n this.vertexData = new Float32Array(geometry.points);\n\n for (var i = 0, l = geometry.batches.length; i < l; i++)\n {\n var gI = geometry.batches[i];\n var color = gI.style.color;\n var vertexData = new Float32Array(this.vertexData.buffer,\n gI.attribStart * 4 * 2,\n gI.attribSize * 2);\n\n var uvs = new Float32Array(geometry.uvsFloat32.buffer,\n gI.attribStart * 4 * 2,\n gI.attribSize * 2);\n\n var indices = new Uint16Array(geometry.indicesUint16.buffer,\n gI.start * 2,\n gI.size);\n\n var batch = {\n vertexData: vertexData,\n blendMode: blendMode,\n indices: indices,\n uvs: uvs,\n _batchRGB: hex2rgb(color),\n _tintRGB: color,\n _texture: gI.style.texture,\n alpha: gI.style.alpha,\n worldAlpha: 1 };\n\n this.batches[i] = batch;\n }\n };\n\n /**\n * Renders the batches using the BathedRenderer plugin\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._renderBatched = function _renderBatched (renderer)\n {\n if (!this.batches.length)\n {\n return;\n }\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n\n this.calculateVertices();\n this.calculateTints();\n\n for (var i = 0, l = this.batches.length; i < l; i++)\n {\n var batch = this.batches[i];\n\n batch.worldAlpha = this.worldAlpha * batch.alpha;\n\n renderer.plugins[this.pluginName].render(batch);\n }\n };\n\n /**\n * Renders the graphics direct\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._renderDirect = function _renderDirect (renderer)\n {\n var shader = this._resolveDirectShader(renderer);\n\n var geometry = this.geometry;\n var tint = this.tint;\n var worldAlpha = this.worldAlpha;\n var uniforms = shader.uniforms;\n var drawCalls = geometry.drawCalls;\n\n // lets set the transfomr\n uniforms.translationMatrix = this.transform.worldTransform;\n\n // and then lets set the tint..\n uniforms.tint[0] = (((tint >> 16) & 0xFF) / 255) * worldAlpha;\n uniforms.tint[1] = (((tint >> 8) & 0xFF) / 255) * worldAlpha;\n uniforms.tint[2] = ((tint & 0xFF) / 255) * worldAlpha;\n uniforms.tint[3] = worldAlpha;\n\n // the first draw call, we can set the uniforms of the shader directly here.\n\n // this means that we can tack advantage of the sync function of pixi!\n // bind and sync uniforms..\n // there is a way to optimise this..\n renderer.shader.bind(shader);\n renderer.geometry.bind(geometry, shader);\n\n // set state..\n renderer.state.set(this.state);\n\n // then render the rest of them...\n for (var i = 0, l = drawCalls.length; i < l; i++)\n {\n this._renderDrawCallDirect(renderer, geometry.drawCalls[i]);\n }\n };\n\n /**\n * Renders specific DrawCall\n *\n * @param {PIXI.Renderer} renderer\n * @param {PIXI.BatchDrawCall} drawCall\n */\n Graphics.prototype._renderDrawCallDirect = function _renderDrawCallDirect (renderer, drawCall)\n {\n var groupTextureCount = drawCall.textureCount;\n\n for (var j = 0; j < groupTextureCount; j++)\n {\n renderer.texture.bind(drawCall.textures[j], j);\n }\n\n renderer.geometry.draw(drawCall.type, drawCall.size, drawCall.start);\n };\n\n /**\n * Resolves shader for direct rendering\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._resolveDirectShader = function _resolveDirectShader (renderer)\n {\n var shader = this.shader;\n\n var pluginName = this.pluginName;\n\n if (!shader)\n {\n // if there is no shader here, we can use the default shader.\n // and that only gets created if we actually need it..\n // but may be more than one plugins for graphics\n if (!DEFAULT_SHADERS[pluginName])\n {\n var sampleValues = new Int32Array(16);\n\n for (var i = 0; i < 16; i++)\n {\n sampleValues[i] = i;\n }\n\n var uniforms = {\n tint: new Float32Array([1, 1, 1, 1]),\n translationMatrix: new Matrix(),\n default: UniformGroup.from({ uSamplers: sampleValues }, true),\n };\n\n var program = renderer.plugins[pluginName]._shader.program;\n\n DEFAULT_SHADERS[pluginName] = new Shader(program, uniforms);\n }\n\n shader = DEFAULT_SHADERS[pluginName];\n }\n\n return shader;\n };\n\n /**\n * Retrieves the bounds of the graphic shape as a rectangle object\n *\n * @protected\n */\n Graphics.prototype._calculateBounds = function _calculateBounds ()\n {\n this.finishPoly();\n var lb = this.geometry.bounds;\n\n this._bounds.addFrame(this.transform, lb.minX, lb.minY, lb.maxX, lb.maxY);\n };\n\n /**\n * Tests if a point is inside this graphics object\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */\n Graphics.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, Graphics._TEMP_POINT);\n\n return this.geometry.containsPoint(Graphics._TEMP_POINT);\n };\n\n /**\n * Recalcuate the tint by applying tin to batches using Graphics tint.\n * @protected\n */\n Graphics.prototype.calculateTints = function calculateTints ()\n {\n if (this.batchTint !== this.tint)\n {\n this.batchTint = this.tint;\n\n var tintRGB = hex2rgb(this.tint, temp);\n\n for (var i = 0; i < this.batches.length; i++)\n {\n var batch = this.batches[i];\n\n var batchTint = batch._batchRGB;\n\n var r = (tintRGB[0] * batchTint[0]) * 255;\n var g = (tintRGB[1] * batchTint[1]) * 255;\n var b = (tintRGB[2] * batchTint[2]) * 255;\n\n // TODO Ivan, can this be done in one go?\n var color = (r << 16) + (g << 8) + (b | 0);\n\n batch._tintRGB = (color >> 16)\n + (color & 0xff00)\n + ((color & 0xff) << 16);\n }\n }\n };\n\n /**\n * If there's a transform update or a change to the shape of the\n * geometry, recaculate the vertices.\n * @protected\n */\n Graphics.prototype.calculateVertices = function calculateVertices ()\n {\n if (this._transformID === this.transform._worldID)\n {\n return;\n }\n\n this._transformID = this.transform._worldID;\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var data = this.geometry.points;// batch.vertexDataOriginal;\n var vertexData = this.vertexData;\n\n var count = 0;\n\n for (var i = 0; i < data.length; i += 2)\n {\n var x = data[i];\n var y = data[i + 1];\n\n vertexData[count++] = (a * x) + (c * y) + tx;\n vertexData[count++] = (d * y) + (b * x) + ty;\n }\n };\n\n /**\n * Closes the current path.\n *\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.closePath = function closePath ()\n {\n var currentPath = this.currentPath;\n\n if (currentPath)\n {\n // we don't need to add extra point in the end because buildLine will take care of that\n currentPath.closeStroke = true;\n }\n\n return this;\n };\n\n /**\n * Apply a matrix to the positional data.\n *\n * @param {PIXI.Matrix} matrix - Matrix to use for transform current shape.\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.setMatrix = function setMatrix (matrix)\n {\n this._matrix = matrix;\n\n return this;\n };\n\n /**\n * Begin adding holes to the last draw shape\n * IMPORTANT: holes must be fully inside a shape to work\n * Also weirdness ensues if holes overlap!\n * Ellipses, Circles, Rectangles and Rounded Rectangles cannot be holes or host for holes in CanvasRenderer,\n * please use `moveTo` `lineTo`, `quadraticCurveTo` if you rely on pixi-legacy bundle.\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.beginHole = function beginHole ()\n {\n this.finishPoly();\n this._holeMode = true;\n\n return this;\n };\n\n /**\n * End adding holes to the last draw shape\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.endHole = function endHole ()\n {\n this.finishPoly();\n this._holeMode = false;\n\n return this;\n };\n\n /**\n * Destroys the Graphics object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n Graphics.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.geometry.refCount--;\n if (this.geometry.refCount === 0)\n {\n this.geometry.dispose();\n }\n\n this._matrix = null;\n this.currentPath = null;\n this._lineStyle.destroy();\n this._lineStyle = null;\n this._fillStyle.destroy();\n this._fillStyle = null;\n this.geometry = null;\n this.shader = null;\n this.vertexData = null;\n this.batches.length = 0;\n this.batches = null;\n\n Container.prototype.destroy.call(this, options);\n };\n\n Object.defineProperties( Graphics.prototype, prototypeAccessors );\n\n return Graphics;\n}(Container));\n\n/**\n * Temporary point to use for containsPoint\n *\n * @static\n * @private\n * @member {PIXI.Point}\n */\nGraphics._TEMP_POINT = new Point();\n\nexport { FillStyle, GRAPHICS_CURVES, Graphics, GraphicsData, GraphicsGeometry, LineStyle };\n//# sourceMappingURL=graphics.es.js.map\n","/*!\n * @pixi/sprite - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/sprite is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Point, Rectangle, ObservablePoint } from '@pixi/math';\nimport { sign } from '@pixi/utils';\nimport { Texture } from '@pixi/core';\nimport { BLEND_MODES } from '@pixi/constants';\nimport { Container } from '@pixi/display';\nimport { settings } from '@pixi/settings';\n\nvar tempPoint = new Point();\nvar indices = new Uint16Array([0, 1, 2, 0, 2, 3]);\n\n/**\n * The Sprite object is the base for all textured objects that are rendered to the screen\n*\n * A sprite can be created directly from an image like this:\n *\n * ```js\n * let sprite = PIXI.Sprite.from('assets/image.png');\n * ```\n *\n * The more efficient way to create sprites is using a {@link PIXI.Spritesheet},\n * as swapping base textures when rendering to the screen is inefficient.\n *\n * ```js\n * PIXI.Loader.shared.add(\"assets/spritesheet.json\").load(setup);\n *\n * function setup() {\n * let sheet = PIXI.Loader.shared.resources[\"assets/spritesheet.json\"].spritesheet;\n * let sprite = new PIXI.Sprite(sheet.textures[\"image.png\"]);\n * ...\n * }\n * ```\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Sprite = /*@__PURE__*/(function (Container) {\n function Sprite(texture)\n {\n Container.call(this);\n\n /**\n * The anchor point defines the normalized coordinates\n * in the texture that map to the position of this\n * sprite.\n *\n * By default, this is `(0,0)` (or `texture.defaultAnchor`\n * if you have modified that), which means the position\n * `(x,y)` of this `Sprite` will be the top-left corner.\n *\n * Note: Updating `texture.defaultAnchor` after\n * constructing a `Sprite` does _not_ update its anchor.\n *\n * {@link https://docs.cocos2d-x.org/cocos2d-x/en/sprites/manipulation.html}\n *\n * @default `texture.defaultAnchor`\n * @member {PIXI.ObservablePoint}\n * @private\n */\n this._anchor = new ObservablePoint(\n this._onAnchorUpdate,\n this,\n (texture ? texture.defaultAnchor.x : 0),\n (texture ? texture.defaultAnchor.y : 0)\n );\n\n /**\n * The texture that the sprite is using\n *\n * @private\n * @member {PIXI.Texture}\n */\n this._texture = null;\n\n /**\n * The width of the sprite (this is initially set by the texture)\n *\n * @private\n * @member {number}\n */\n this._width = 0;\n\n /**\n * The height of the sprite (this is initially set by the texture)\n *\n * @private\n * @member {number}\n */\n this._height = 0;\n\n /**\n * The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @private\n * @member {number}\n * @default 0xFFFFFF\n */\n this._tint = null;\n this._tintRGB = null;\n this.tint = 0xFFFFFF;\n\n /**\n * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * The shader that will be used to render the sprite. Set to null to remove a current shader.\n *\n * @member {PIXI.Filter|PIXI.Shader}\n */\n this.shader = null;\n\n /**\n * Cached tint value so we can tell when the tint is changed.\n * Value is used for 2d CanvasRenderer.\n *\n * @protected\n * @member {number}\n * @default 0xFFFFFF\n */\n this._cachedTint = 0xFFFFFF;\n\n /**\n * this is used to store the uvs data of the sprite, assigned at the same time\n * as the vertexData in calculateVertices()\n *\n * @private\n * @member {Float32Array}\n */\n this.uvs = null;\n\n // call texture setter\n this.texture = texture || Texture.EMPTY;\n\n /**\n * this is used to store the vertex data of the sprite (basically a quad)\n *\n * @private\n * @member {Float32Array}\n */\n this.vertexData = new Float32Array(8);\n\n /**\n * This is used to calculate the bounds of the object IF it is a trimmed sprite\n *\n * @private\n * @member {Float32Array}\n */\n this.vertexTrimmedData = null;\n\n this._transformID = -1;\n this._textureID = -1;\n\n this._transformTrimmedID = -1;\n this._textureTrimmedID = -1;\n\n // Batchable stuff..\n // TODO could make this a mixin?\n this.indices = indices;\n this.size = 4;\n this.start = 0;\n\n /**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_render' & '_renderCanvas' methods.\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = 'batch';\n\n /**\n * used to fast check if a sprite is.. a sprite!\n * @member {boolean}\n */\n this.isSprite = true;\n\n /**\n * Internal roundPixels field\n *\n * @member {boolean}\n * @private\n */\n this._roundPixels = settings.ROUND_PIXELS;\n }\n\n if ( Container ) Sprite.__proto__ = Container;\n Sprite.prototype = Object.create( Container && Container.prototype );\n Sprite.prototype.constructor = Sprite;\n\n var prototypeAccessors = { roundPixels: { configurable: true },width: { configurable: true },height: { configurable: true },anchor: { configurable: true },tint: { configurable: true },texture: { configurable: true } };\n\n /**\n * When the texture is updated, this event will fire to update the scale and frame\n *\n * @private\n */\n Sprite.prototype._onTextureUpdate = function _onTextureUpdate ()\n {\n this._textureID = -1;\n this._textureTrimmedID = -1;\n this._cachedTint = 0xFFFFFF;\n\n // so if _width is 0 then width was not set..\n if (this._width)\n {\n this.scale.x = sign(this.scale.x) * this._width / this._texture.orig.width;\n }\n\n if (this._height)\n {\n this.scale.y = sign(this.scale.y) * this._height / this._texture.orig.height;\n }\n };\n\n /**\n * Called when the anchor position updates.\n *\n * @private\n */\n Sprite.prototype._onAnchorUpdate = function _onAnchorUpdate ()\n {\n this._transformID = -1;\n this._transformTrimmedID = -1;\n };\n\n /**\n * calculates worldTransform * vertices, store it in vertexData\n */\n Sprite.prototype.calculateVertices = function calculateVertices ()\n {\n var texture = this._texture;\n\n if (this._transformID === this.transform._worldID && this._textureID === texture._updateID)\n {\n return;\n }\n\n // update texture UV here, because base texture can be changed without calling `_onTextureUpdate`\n if (this._textureID !== texture._updateID)\n {\n this.uvs = this._texture._uvs.uvsFloat32;\n }\n\n this._transformID = this.transform._worldID;\n this._textureID = texture._updateID;\n\n // set the vertex data\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n var vertexData = this.vertexData;\n var trim = texture.trim;\n var orig = texture.orig;\n var anchor = this._anchor;\n\n var w0 = 0;\n var w1 = 0;\n var h0 = 0;\n var h1 = 0;\n\n if (trim)\n {\n // if the sprite is trimmed and is not a tilingsprite then we need to add the extra\n // space before transforming the sprite coords.\n w1 = trim.x - (anchor._x * orig.width);\n w0 = w1 + trim.width;\n\n h1 = trim.y - (anchor._y * orig.height);\n h0 = h1 + trim.height;\n }\n else\n {\n w1 = -anchor._x * orig.width;\n w0 = w1 + orig.width;\n\n h1 = -anchor._y * orig.height;\n h0 = h1 + orig.height;\n }\n\n // xy\n vertexData[0] = (a * w1) + (c * h1) + tx;\n vertexData[1] = (d * h1) + (b * w1) + ty;\n\n // xy\n vertexData[2] = (a * w0) + (c * h1) + tx;\n vertexData[3] = (d * h1) + (b * w0) + ty;\n\n // xy\n vertexData[4] = (a * w0) + (c * h0) + tx;\n vertexData[5] = (d * h0) + (b * w0) + ty;\n\n // xy\n vertexData[6] = (a * w1) + (c * h0) + tx;\n vertexData[7] = (d * h0) + (b * w1) + ty;\n\n if (this._roundPixels)\n {\n for (var i = 0; i < 8; i++)\n {\n vertexData[i] = Math.round(vertexData[i]);\n }\n }\n };\n\n /**\n * calculates worldTransform * vertices for a non texture with a trim. store it in vertexTrimmedData\n * This is used to ensure that the true width and height of a trimmed texture is respected\n */\n Sprite.prototype.calculateTrimmedVertices = function calculateTrimmedVertices ()\n {\n if (!this.vertexTrimmedData)\n {\n this.vertexTrimmedData = new Float32Array(8);\n }\n else if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID)\n {\n return;\n }\n\n this._transformTrimmedID = this.transform._worldID;\n this._textureTrimmedID = this._texture._updateID;\n\n // lets do some special trim code!\n var texture = this._texture;\n var vertexData = this.vertexTrimmedData;\n var orig = texture.orig;\n var anchor = this._anchor;\n\n // lets calculate the new untrimmed bounds..\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var w1 = -anchor._x * orig.width;\n var w0 = w1 + orig.width;\n\n var h1 = -anchor._y * orig.height;\n var h0 = h1 + orig.height;\n\n // xy\n vertexData[0] = (a * w1) + (c * h1) + tx;\n vertexData[1] = (d * h1) + (b * w1) + ty;\n\n // xy\n vertexData[2] = (a * w0) + (c * h1) + tx;\n vertexData[3] = (d * h1) + (b * w0) + ty;\n\n // xy\n vertexData[4] = (a * w0) + (c * h0) + tx;\n vertexData[5] = (d * h0) + (b * w0) + ty;\n\n // xy\n vertexData[6] = (a * w1) + (c * h0) + tx;\n vertexData[7] = (d * h0) + (b * w1) + ty;\n };\n\n /**\n *\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The webgl renderer to use.\n */\n Sprite.prototype._render = function _render (renderer)\n {\n this.calculateVertices();\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n renderer.plugins[this.pluginName].render(this);\n };\n\n /**\n * Updates the bounds of the sprite.\n *\n * @protected\n */\n Sprite.prototype._calculateBounds = function _calculateBounds ()\n {\n var trim = this._texture.trim;\n var orig = this._texture.orig;\n\n // First lets check to see if the current texture has a trim..\n if (!trim || (trim.width === orig.width && trim.height === orig.height))\n {\n // no trim! lets use the usual calculations..\n this.calculateVertices();\n this._bounds.addQuad(this.vertexData);\n }\n else\n {\n // lets calculate a special trimmed bounds...\n this.calculateTrimmedVertices();\n this._bounds.addQuad(this.vertexTrimmedData);\n }\n };\n\n /**\n * Gets the local bounds of the sprite object.\n *\n * @param {PIXI.Rectangle} [rect] - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n Sprite.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n // we can do a fast local bounds if the sprite has no children!\n if (this.children.length === 0)\n {\n this._bounds.minX = this._texture.orig.width * -this._anchor._x;\n this._bounds.minY = this._texture.orig.height * -this._anchor._y;\n this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x);\n this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y);\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n }\n\n return Container.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * Tests if a point is inside this sprite\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */\n Sprite.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, tempPoint);\n\n var width = this._texture.orig.width;\n var height = this._texture.orig.height;\n var x1 = -width * this.anchor.x;\n var y1 = 0;\n\n if (tempPoint.x >= x1 && tempPoint.x < x1 + width)\n {\n y1 = -height * this.anchor.y;\n\n if (tempPoint.y >= y1 && tempPoint.y < y1 + height)\n {\n return true;\n }\n }\n\n return false;\n };\n\n /**\n * Destroys this sprite and optionally its texture and children\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well\n */\n Sprite.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this._texture.off('update', this._onTextureUpdate, this);\n\n this._anchor = null;\n\n var destroyTexture = typeof options === 'boolean' ? options : options && options.texture;\n\n if (destroyTexture)\n {\n var destroyBaseTexture = typeof options === 'boolean' ? options : options && options.baseTexture;\n\n this._texture.destroy(!!destroyBaseTexture);\n }\n\n this._texture = null;\n this.shader = null;\n };\n\n // some helper functions..\n\n /**\n * Helper function that creates a new sprite based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source Source to create texture from\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Sprite} The newly created sprite\n */\n Sprite.from = function from (source, options)\n {\n var texture = (source instanceof Texture)\n ? source\n : Texture.from(source, options);\n\n return new Sprite(texture);\n };\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n prototypeAccessors.roundPixels.set = function (value)\n {\n if (this._roundPixels !== value)\n {\n this._transformID = -1;\n }\n this._roundPixels = value;\n };\n\n prototypeAccessors.roundPixels.get = function ()\n {\n return this._roundPixels;\n };\n\n /**\n * The width of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return Math.abs(this.scale.x) * this._texture.orig.width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n var s = sign(this.scale.x) || 1;\n\n this.scale.x = s * value / this._texture.orig.width;\n this._width = value;\n };\n\n /**\n * The height of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return Math.abs(this.scale.y) * this._texture.orig.height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n var s = sign(this.scale.y) || 1;\n\n this.scale.y = s * value / this._texture.orig.height;\n this._height = value;\n };\n\n /**\n * The anchor sets the origin point of the text. The default value is taken from the {@link PIXI.Texture|Texture}\n * and passed to the constructor.\n *\n * The default is `(0,0)`, this means the text's origin is the top left.\n *\n * Setting the anchor to `(0.5,0.5)` means the text's origin is centered.\n *\n * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner.\n *\n * If you pass only single parameter, it will set both x and y to the same value as shown in the example below.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.anchor.set(0.5); // This will set the origin to center. (0.5) is same as (0.5, 0.5).\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.anchor.get = function ()\n {\n return this._anchor;\n };\n\n prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._anchor.copyFrom(value);\n };\n\n /**\n * The tint applied to the sprite. This is a hex value.\n * A value of 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._tint = value;\n this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16);\n };\n\n /**\n * The texture that the sprite is using\n *\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this._texture;\n };\n\n prototypeAccessors.texture.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._texture === value)\n {\n return;\n }\n\n this._texture = value || Texture.EMPTY;\n this._cachedTint = 0xFFFFFF;\n\n this._textureID = -1;\n this._textureTrimmedID = -1;\n\n if (value)\n {\n // wait for the texture to load\n if (value.baseTexture.valid)\n {\n this._onTextureUpdate();\n }\n else\n {\n value.once('update', this._onTextureUpdate, this);\n }\n }\n };\n\n Object.defineProperties( Sprite.prototype, prototypeAccessors );\n\n return Sprite;\n}(Container));\n\nexport { Sprite };\n//# sourceMappingURL=sprite.es.js.map\n","/*!\n * @pixi/text - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/text is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Sprite } from '@pixi/sprite';\nimport { Texture } from '@pixi/core';\nimport { settings } from '@pixi/settings';\nimport { Rectangle } from '@pixi/math';\nimport { hex2string, hex2rgb, string2hex, trimCanvas, sign } from '@pixi/utils';\n\n/**\n * Constants that define the type of gradient on text.\n *\n * @static\n * @constant\n * @name TEXT_GRADIENT\n * @memberof PIXI\n * @type {object}\n * @property {number} LINEAR_VERTICAL Vertical gradient\n * @property {number} LINEAR_HORIZONTAL Linear gradient\n */\nvar TEXT_GRADIENT = {\n LINEAR_VERTICAL: 0,\n LINEAR_HORIZONTAL: 1,\n};\n\n// disabling eslint for now, going to rewrite this in v5\n\nvar defaultStyle = {\n align: 'left',\n breakWords: false,\n dropShadow: false,\n dropShadowAlpha: 1,\n dropShadowAngle: Math.PI / 6,\n dropShadowBlur: 0,\n dropShadowColor: 'black',\n dropShadowDistance: 5,\n fill: 'black',\n fillGradientType: TEXT_GRADIENT.LINEAR_VERTICAL,\n fillGradientStops: [],\n fontFamily: 'Arial',\n fontSize: 26,\n fontStyle: 'normal',\n fontVariant: 'normal',\n fontWeight: 'normal',\n letterSpacing: 0,\n lineHeight: 0,\n lineJoin: 'miter',\n miterLimit: 10,\n padding: 0,\n stroke: 'black',\n strokeThickness: 0,\n textBaseline: 'alphabetic',\n trim: false,\n whiteSpace: 'pre',\n wordWrap: false,\n wordWrapWidth: 100,\n leading: 0,\n};\n\nvar genericFontFamilies = [\n 'serif',\n 'sans-serif',\n 'monospace',\n 'cursive',\n 'fantasy',\n 'system-ui' ];\n\n/**\n * A TextStyle Object contains information to decorate a Text objects.\n *\n * An instance can be shared between multiple Text objects; then changing the style will update all text objects using it.\n *\n * A tool can be used to generate a text style [here](https://pixijs.io/pixi-text-style).\n *\n * @class\n * @memberof PIXI\n */\nvar TextStyle = function TextStyle(style)\n{\n this.styleID = 0;\n\n this.reset();\n\n deepCopyProperties(this, style, style);\n};\n\nvar prototypeAccessors = { align: { configurable: true },breakWords: { configurable: true },dropShadow: { configurable: true },dropShadowAlpha: { configurable: true },dropShadowAngle: { configurable: true },dropShadowBlur: { configurable: true },dropShadowColor: { configurable: true },dropShadowDistance: { configurable: true },fill: { configurable: true },fillGradientType: { configurable: true },fillGradientStops: { configurable: true },fontFamily: { configurable: true },fontSize: { configurable: true },fontStyle: { configurable: true },fontVariant: { configurable: true },fontWeight: { configurable: true },letterSpacing: { configurable: true },lineHeight: { configurable: true },leading: { configurable: true },lineJoin: { configurable: true },miterLimit: { configurable: true },padding: { configurable: true },stroke: { configurable: true },strokeThickness: { configurable: true },textBaseline: { configurable: true },trim: { configurable: true },whiteSpace: { configurable: true },wordWrap: { configurable: true },wordWrapWidth: { configurable: true } };\n\n/**\n * Creates a new TextStyle object with the same values as this one.\n * Note that the only the properties of the object are cloned.\n *\n * @return {PIXI.TextStyle} New cloned TextStyle object\n */\nTextStyle.prototype.clone = function clone ()\n{\n var clonedProperties = {};\n\n deepCopyProperties(clonedProperties, this, defaultStyle);\n\n return new TextStyle(clonedProperties);\n};\n\n/**\n * Resets all properties to the defaults specified in TextStyle.prototype._default\n */\nTextStyle.prototype.reset = function reset ()\n{\n deepCopyProperties(this, defaultStyle, defaultStyle);\n};\n\n/**\n * Alignment for multiline text ('left', 'center' or 'right'), does not affect single line text\n *\n * @member {string}\n */\nprototypeAccessors.align.get = function ()\n{\n return this._align;\n};\nprototypeAccessors.align.set = function (align) // eslint-disable-line require-jsdoc\n{\n if (this._align !== align)\n {\n this._align = align;\n this.styleID++;\n }\n};\n\n/**\n * Indicates if lines can be wrapped within words, it needs wordWrap to be set to true\n *\n * @member {boolean}\n */\nprototypeAccessors.breakWords.get = function ()\n{\n return this._breakWords;\n};\nprototypeAccessors.breakWords.set = function (breakWords) // eslint-disable-line require-jsdoc\n{\n if (this._breakWords !== breakWords)\n {\n this._breakWords = breakWords;\n this.styleID++;\n }\n};\n\n/**\n * Set a drop shadow for the text\n *\n * @member {boolean}\n */\nprototypeAccessors.dropShadow.get = function ()\n{\n return this._dropShadow;\n};\nprototypeAccessors.dropShadow.set = function (dropShadow) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadow !== dropShadow)\n {\n this._dropShadow = dropShadow;\n this.styleID++;\n }\n};\n\n/**\n * Set alpha for the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowAlpha.get = function ()\n{\n return this._dropShadowAlpha;\n};\nprototypeAccessors.dropShadowAlpha.set = function (dropShadowAlpha) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowAlpha !== dropShadowAlpha)\n {\n this._dropShadowAlpha = dropShadowAlpha;\n this.styleID++;\n }\n};\n\n/**\n * Set a angle of the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowAngle.get = function ()\n{\n return this._dropShadowAngle;\n};\nprototypeAccessors.dropShadowAngle.set = function (dropShadowAngle) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowAngle !== dropShadowAngle)\n {\n this._dropShadowAngle = dropShadowAngle;\n this.styleID++;\n }\n};\n\n/**\n * Set a shadow blur radius\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowBlur.get = function ()\n{\n return this._dropShadowBlur;\n};\nprototypeAccessors.dropShadowBlur.set = function (dropShadowBlur) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowBlur !== dropShadowBlur)\n {\n this._dropShadowBlur = dropShadowBlur;\n this.styleID++;\n }\n};\n\n/**\n * A fill style to be used on the dropshadow e.g 'red', '#00FF00'\n *\n * @member {string|number}\n */\nprototypeAccessors.dropShadowColor.get = function ()\n{\n return this._dropShadowColor;\n};\nprototypeAccessors.dropShadowColor.set = function (dropShadowColor) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(dropShadowColor);\n if (this._dropShadowColor !== outputColor)\n {\n this._dropShadowColor = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * Set a distance of the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowDistance.get = function ()\n{\n return this._dropShadowDistance;\n};\nprototypeAccessors.dropShadowDistance.set = function (dropShadowDistance) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowDistance !== dropShadowDistance)\n {\n this._dropShadowDistance = dropShadowDistance;\n this.styleID++;\n }\n};\n\n/**\n * A canvas fillstyle that will be used on the text e.g 'red', '#00FF00'.\n * Can be an array to create a gradient eg ['#000000','#FFFFFF']\n * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle|MDN}\n *\n * @member {string|string[]|number|number[]|CanvasGradient|CanvasPattern}\n */\nprototypeAccessors.fill.get = function ()\n{\n return this._fill;\n};\nprototypeAccessors.fill.set = function (fill) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(fill);\n if (this._fill !== outputColor)\n {\n this._fill = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * If fill is an array of colours to create a gradient, this can change the type/direction of the gradient.\n * See {@link PIXI.TEXT_GRADIENT}\n *\n * @member {number}\n */\nprototypeAccessors.fillGradientType.get = function ()\n{\n return this._fillGradientType;\n};\nprototypeAccessors.fillGradientType.set = function (fillGradientType) // eslint-disable-line require-jsdoc\n{\n if (this._fillGradientType !== fillGradientType)\n {\n this._fillGradientType = fillGradientType;\n this.styleID++;\n }\n};\n\n/**\n * If fill is an array of colours to create a gradient, this array can set the stop points\n * (numbers between 0 and 1) for the color, overriding the default behaviour of evenly spacing them.\n *\n * @member {number[]}\n */\nprototypeAccessors.fillGradientStops.get = function ()\n{\n return this._fillGradientStops;\n};\nprototypeAccessors.fillGradientStops.set = function (fillGradientStops) // eslint-disable-line require-jsdoc\n{\n if (!areArraysEqual(this._fillGradientStops,fillGradientStops))\n {\n this._fillGradientStops = fillGradientStops;\n this.styleID++;\n }\n};\n\n/**\n * The font family\n *\n * @member {string|string[]}\n */\nprototypeAccessors.fontFamily.get = function ()\n{\n return this._fontFamily;\n};\nprototypeAccessors.fontFamily.set = function (fontFamily) // eslint-disable-line require-jsdoc\n{\n if (this.fontFamily !== fontFamily)\n {\n this._fontFamily = fontFamily;\n this.styleID++;\n }\n};\n\n/**\n * The font size\n * (as a number it converts to px, but as a string, equivalents are '26px','20pt','160%' or '1.6em')\n *\n * @member {number|string}\n */\nprototypeAccessors.fontSize.get = function ()\n{\n return this._fontSize;\n};\nprototypeAccessors.fontSize.set = function (fontSize) // eslint-disable-line require-jsdoc\n{\n if (this._fontSize !== fontSize)\n {\n this._fontSize = fontSize;\n this.styleID++;\n }\n};\n\n/**\n * The font style\n * ('normal', 'italic' or 'oblique')\n *\n * @member {string}\n */\nprototypeAccessors.fontStyle.get = function ()\n{\n return this._fontStyle;\n};\nprototypeAccessors.fontStyle.set = function (fontStyle) // eslint-disable-line require-jsdoc\n{\n if (this._fontStyle !== fontStyle)\n {\n this._fontStyle = fontStyle;\n this.styleID++;\n }\n};\n\n/**\n * The font variant\n * ('normal' or 'small-caps')\n *\n * @member {string}\n */\nprototypeAccessors.fontVariant.get = function ()\n{\n return this._fontVariant;\n};\nprototypeAccessors.fontVariant.set = function (fontVariant) // eslint-disable-line require-jsdoc\n{\n if (this._fontVariant !== fontVariant)\n {\n this._fontVariant = fontVariant;\n this.styleID++;\n }\n};\n\n/**\n * The font weight\n * ('normal', 'bold', 'bolder', 'lighter' and '100', '200', '300', '400', '500', '600', '700', 800' or '900')\n *\n * @member {string}\n */\nprototypeAccessors.fontWeight.get = function ()\n{\n return this._fontWeight;\n};\nprototypeAccessors.fontWeight.set = function (fontWeight) // eslint-disable-line require-jsdoc\n{\n if (this._fontWeight !== fontWeight)\n {\n this._fontWeight = fontWeight;\n this.styleID++;\n }\n};\n\n/**\n * The amount of spacing between letters, default is 0\n *\n * @member {number}\n */\nprototypeAccessors.letterSpacing.get = function ()\n{\n return this._letterSpacing;\n};\nprototypeAccessors.letterSpacing.set = function (letterSpacing) // eslint-disable-line require-jsdoc\n{\n if (this._letterSpacing !== letterSpacing)\n {\n this._letterSpacing = letterSpacing;\n this.styleID++;\n }\n};\n\n/**\n * The line height, a number that represents the vertical space that a letter uses\n *\n * @member {number}\n */\nprototypeAccessors.lineHeight.get = function ()\n{\n return this._lineHeight;\n};\nprototypeAccessors.lineHeight.set = function (lineHeight) // eslint-disable-line require-jsdoc\n{\n if (this._lineHeight !== lineHeight)\n {\n this._lineHeight = lineHeight;\n this.styleID++;\n }\n};\n\n/**\n * The space between lines\n *\n * @member {number}\n */\nprototypeAccessors.leading.get = function ()\n{\n return this._leading;\n};\nprototypeAccessors.leading.set = function (leading) // eslint-disable-line require-jsdoc\n{\n if (this._leading !== leading)\n {\n this._leading = leading;\n this.styleID++;\n }\n};\n\n/**\n * The lineJoin property sets the type of corner created, it can resolve spiked text issues.\n * Default is 'miter' (creates a sharp corner).\n *\n * @member {string}\n */\nprototypeAccessors.lineJoin.get = function ()\n{\n return this._lineJoin;\n};\nprototypeAccessors.lineJoin.set = function (lineJoin) // eslint-disable-line require-jsdoc\n{\n if (this._lineJoin !== lineJoin)\n {\n this._lineJoin = lineJoin;\n this.styleID++;\n }\n};\n\n/**\n * The miter limit to use when using the 'miter' lineJoin mode\n * This can reduce or increase the spikiness of rendered text.\n *\n * @member {number}\n */\nprototypeAccessors.miterLimit.get = function ()\n{\n return this._miterLimit;\n};\nprototypeAccessors.miterLimit.set = function (miterLimit) // eslint-disable-line require-jsdoc\n{\n if (this._miterLimit !== miterLimit)\n {\n this._miterLimit = miterLimit;\n this.styleID++;\n }\n};\n\n/**\n * Occasionally some fonts are cropped. Adding some padding will prevent this from happening\n * by adding padding to all sides of the text.\n *\n * @member {number}\n */\nprototypeAccessors.padding.get = function ()\n{\n return this._padding;\n};\nprototypeAccessors.padding.set = function (padding) // eslint-disable-line require-jsdoc\n{\n if (this._padding !== padding)\n {\n this._padding = padding;\n this.styleID++;\n }\n};\n\n/**\n * A canvas fillstyle that will be used on the text stroke\n * e.g 'blue', '#FCFF00'\n *\n * @member {string|number}\n */\nprototypeAccessors.stroke.get = function ()\n{\n return this._stroke;\n};\nprototypeAccessors.stroke.set = function (stroke) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(stroke);\n if (this._stroke !== outputColor)\n {\n this._stroke = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * A number that represents the thickness of the stroke.\n * Default is 0 (no stroke)\n *\n * @member {number}\n */\nprototypeAccessors.strokeThickness.get = function ()\n{\n return this._strokeThickness;\n};\nprototypeAccessors.strokeThickness.set = function (strokeThickness) // eslint-disable-line require-jsdoc\n{\n if (this._strokeThickness !== strokeThickness)\n {\n this._strokeThickness = strokeThickness;\n this.styleID++;\n }\n};\n\n/**\n * The baseline of the text that is rendered.\n *\n * @member {string}\n */\nprototypeAccessors.textBaseline.get = function ()\n{\n return this._textBaseline;\n};\nprototypeAccessors.textBaseline.set = function (textBaseline) // eslint-disable-line require-jsdoc\n{\n if (this._textBaseline !== textBaseline)\n {\n this._textBaseline = textBaseline;\n this.styleID++;\n }\n};\n\n/**\n * Trim transparent borders\n *\n * @member {boolean}\n */\nprototypeAccessors.trim.get = function ()\n{\n return this._trim;\n};\nprototypeAccessors.trim.set = function (trim) // eslint-disable-line require-jsdoc\n{\n if (this._trim !== trim)\n {\n this._trim = trim;\n this.styleID++;\n }\n};\n\n/**\n * How newlines and spaces should be handled.\n * Default is 'pre' (preserve, preserve).\n *\n * value | New lines | Spaces\n * --- | --- | ---\n * 'normal' | Collapse | Collapse\n * 'pre' | Preserve | Preserve\n * 'pre-line' | Preserve | Collapse\n *\n * @member {string}\n */\nprototypeAccessors.whiteSpace.get = function ()\n{\n return this._whiteSpace;\n};\nprototypeAccessors.whiteSpace.set = function (whiteSpace) // eslint-disable-line require-jsdoc\n{\n if (this._whiteSpace !== whiteSpace)\n {\n this._whiteSpace = whiteSpace;\n this.styleID++;\n }\n};\n\n/**\n * Indicates if word wrap should be used\n *\n * @member {boolean}\n */\nprototypeAccessors.wordWrap.get = function ()\n{\n return this._wordWrap;\n};\nprototypeAccessors.wordWrap.set = function (wordWrap) // eslint-disable-line require-jsdoc\n{\n if (this._wordWrap !== wordWrap)\n {\n this._wordWrap = wordWrap;\n this.styleID++;\n }\n};\n\n/**\n * The width at which text will wrap, it needs wordWrap to be set to true\n *\n * @member {number}\n */\nprototypeAccessors.wordWrapWidth.get = function ()\n{\n return this._wordWrapWidth;\n};\nprototypeAccessors.wordWrapWidth.set = function (wordWrapWidth) // eslint-disable-line require-jsdoc\n{\n if (this._wordWrapWidth !== wordWrapWidth)\n {\n this._wordWrapWidth = wordWrapWidth;\n this.styleID++;\n }\n};\n\n/**\n * Generates a font style string to use for `TextMetrics.measureFont()`.\n *\n * @return {string} Font style string, for passing to `TextMetrics.measureFont()`\n */\nTextStyle.prototype.toFontString = function toFontString ()\n{\n // build canvas api font setting from individual components. Convert a numeric this.fontSize to px\n var fontSizeString = (typeof this.fontSize === 'number') ? ((this.fontSize) + \"px\") : this.fontSize;\n\n // Clean-up fontFamily property by quoting each font name\n // this will support font names with spaces\n var fontFamilies = this.fontFamily;\n\n if (!Array.isArray(this.fontFamily))\n {\n fontFamilies = this.fontFamily.split(',');\n }\n\n for (var i = fontFamilies.length - 1; i >= 0; i--)\n {\n // Trim any extra white-space\n var fontFamily = fontFamilies[i].trim();\n\n // Check if font already contains strings\n if (!(/([\\\"\\'])[^\\'\\\"]+\\1/).test(fontFamily) && genericFontFamilies.indexOf(fontFamily) < 0)\n {\n fontFamily = \"\\\"\" + fontFamily + \"\\\"\";\n }\n fontFamilies[i] = fontFamily;\n }\n\n return ((this.fontStyle) + \" \" + (this.fontVariant) + \" \" + (this.fontWeight) + \" \" + fontSizeString + \" \" + (fontFamilies.join(',')));\n};\n\nObject.defineProperties( TextStyle.prototype, prototypeAccessors );\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * @private\n * @param {number|number[]} color\n * @return {string} The color as a string.\n */\nfunction getSingleColor(color)\n{\n if (typeof color === 'number')\n {\n return hex2string(color);\n }\n else if ( typeof color === 'string' )\n {\n if ( color.indexOf('0x') === 0 )\n {\n color = color.replace('0x', '#');\n }\n }\n\n return color;\n}\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * This version can also convert array of colors\n * @private\n * @param {number|number[]} color\n * @return {string} The color as a string.\n */\nfunction getColor(color)\n{\n if (!Array.isArray(color))\n {\n return getSingleColor(color);\n }\n else\n {\n for (var i = 0; i < color.length; ++i)\n {\n color[i] = getSingleColor(color[i]);\n }\n\n return color;\n }\n}\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * This version can also convert array of colors\n * @private\n * @param {Array} array1 First array to compare\n * @param {Array} array2 Second array to compare\n * @return {boolean} Do the arrays contain the same values in the same order\n */\nfunction areArraysEqual(array1, array2)\n{\n if (!Array.isArray(array1) || !Array.isArray(array2))\n {\n return false;\n }\n\n if (array1.length !== array2.length)\n {\n return false;\n }\n\n for (var i = 0; i < array1.length; ++i)\n {\n if (array1[i] !== array2[i])\n {\n return false;\n }\n }\n\n return true;\n}\n\n/**\n * Utility function to ensure that object properties are copied by value, and not by reference\n * @private\n * @param {Object} target Target object to copy properties into\n * @param {Object} source Source object for the properties to copy\n * @param {string} propertyObj Object containing properties names we want to loop over\n */\nfunction deepCopyProperties(target, source, propertyObj) {\n for (var prop in propertyObj) {\n if (Array.isArray(source[prop])) {\n target[prop] = source[prop].slice();\n } else {\n target[prop] = source[prop];\n }\n }\n}\n\n/**\n * The TextMetrics object represents the measurement of a block of text with a specified style.\n *\n * ```js\n * let style = new PIXI.TextStyle({fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'})\n * let textMetrics = PIXI.TextMetrics.measureText('Your text', style)\n * ```\n *\n * @class\n * @memberof PIXI\n */\nvar TextMetrics = function TextMetrics(text, style, width, height, lines, lineWidths, lineHeight, maxLineWidth, fontProperties)\n{\n /**\n * The text that was measured\n *\n * @member {string}\n */\n this.text = text;\n\n /**\n * The style that was measured\n *\n * @member {PIXI.TextStyle}\n */\n this.style = style;\n\n /**\n * The measured width of the text\n *\n * @member {number}\n */\n this.width = width;\n\n /**\n * The measured height of the text\n *\n * @member {number}\n */\n this.height = height;\n\n /**\n * An array of lines of the text broken by new lines and wrapping is specified in style\n *\n * @member {string[]}\n */\n this.lines = lines;\n\n /**\n * An array of the line widths for each line matched to `lines`\n *\n * @member {number[]}\n */\n this.lineWidths = lineWidths;\n\n /**\n * The measured line height for this style\n *\n * @member {number}\n */\n this.lineHeight = lineHeight;\n\n /**\n * The maximum line width for all measured lines\n *\n * @member {number}\n */\n this.maxLineWidth = maxLineWidth;\n\n /**\n * The font properties object from TextMetrics.measureFont\n *\n * @member {PIXI.IFontMetrics}\n */\n this.fontProperties = fontProperties;\n};\n\n/**\n * Measures the supplied string of text and returns a Rectangle.\n *\n * @param {string} text - the text to measure.\n * @param {PIXI.TextStyle} style - the text style to use for measuring\n * @param {boolean} [wordWrap] - optional override for if word-wrap should be applied to the text.\n * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring.\n * @return {PIXI.TextMetrics} measured width and height of the text.\n */\nTextMetrics.measureText = function measureText (text, style, wordWrap, canvas)\n{\n if ( canvas === void 0 ) canvas = TextMetrics._canvas;\n\n wordWrap = (wordWrap === undefined || wordWrap === null) ? style.wordWrap : wordWrap;\n var font = style.toFontString();\n var fontProperties = TextMetrics.measureFont(font);\n\n // fallback in case UA disallow canvas data extraction\n // (toDataURI, getImageData functions)\n if (fontProperties.fontSize === 0)\n {\n fontProperties.fontSize = style.fontSize;\n fontProperties.ascent = style.fontSize;\n }\n\n var context = canvas.getContext('2d');\n\n context.font = font;\n\n var outputText = wordWrap ? TextMetrics.wordWrap(text, style, canvas) : text;\n var lines = outputText.split(/(?:\\r\\n|\\r|\\n)/);\n var lineWidths = new Array(lines.length);\n var maxLineWidth = 0;\n\n for (var i = 0; i < lines.length; i++)\n {\n var lineWidth = context.measureText(lines[i]).width + ((lines[i].length - 1) * style.letterSpacing);\n\n lineWidths[i] = lineWidth;\n maxLineWidth = Math.max(maxLineWidth, lineWidth);\n }\n var width = maxLineWidth + style.strokeThickness;\n\n if (style.dropShadow)\n {\n width += style.dropShadowDistance;\n }\n\n var lineHeight = style.lineHeight || fontProperties.fontSize + style.strokeThickness;\n var height = Math.max(lineHeight, fontProperties.fontSize + style.strokeThickness)\n + ((lines.length - 1) * (lineHeight + style.leading));\n\n if (style.dropShadow)\n {\n height += style.dropShadowDistance;\n }\n\n return new TextMetrics(\n text,\n style,\n width,\n height,\n lines,\n lineWidths,\n lineHeight + style.leading,\n maxLineWidth,\n fontProperties\n );\n};\n\n/**\n * Applies newlines to a string to have it optimally fit into the horizontal\n * bounds set by the Text object's wordWrapWidth property.\n *\n * @private\n * @param {string} text - String to apply word wrapping to\n * @param {PIXI.TextStyle} style - the style to use when wrapping\n * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring.\n * @return {string} New string with new lines applied where required\n */\nTextMetrics.wordWrap = function wordWrap (text, style, canvas)\n{\n if ( canvas === void 0 ) canvas = TextMetrics._canvas;\n\n var context = canvas.getContext('2d');\n\n var width = 0;\n var line = '';\n var lines = '';\n\n var cache = {};\n var letterSpacing = style.letterSpacing;\n var whiteSpace = style.whiteSpace;\n\n // How to handle whitespaces\n var collapseSpaces = TextMetrics.collapseSpaces(whiteSpace);\n var collapseNewlines = TextMetrics.collapseNewlines(whiteSpace);\n\n // whether or not spaces may be added to the beginning of lines\n var canPrependSpaces = !collapseSpaces;\n\n // There is letterSpacing after every char except the last one\n // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!\n // so for convenience the above needs to be compared to width + 1 extra letterSpace\n // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!_\n // ________________________________________________\n // And then the final space is simply no appended to each line\n var wordWrapWidth = style.wordWrapWidth + letterSpacing;\n\n // break text into words, spaces and newline chars\n var tokens = TextMetrics.tokenize(text);\n\n for (var i = 0; i < tokens.length; i++)\n {\n // get the word, space or newlineChar\n var token = tokens[i];\n\n // if word is a new line\n if (TextMetrics.isNewline(token))\n {\n // keep the new line\n if (!collapseNewlines)\n {\n lines += TextMetrics.addLine(line);\n canPrependSpaces = !collapseSpaces;\n line = '';\n width = 0;\n continue;\n }\n\n // if we should collapse new lines\n // we simply convert it into a space\n token = ' ';\n }\n\n // if we should collapse repeated whitespaces\n if (collapseSpaces)\n {\n // check both this and the last tokens for spaces\n var currIsBreakingSpace = TextMetrics.isBreakingSpace(token);\n var lastIsBreakingSpace = TextMetrics.isBreakingSpace(line[line.length - 1]);\n\n if (currIsBreakingSpace && lastIsBreakingSpace)\n {\n continue;\n }\n }\n\n // get word width from cache if possible\n var tokenWidth = TextMetrics.getFromCache(token, letterSpacing, cache, context);\n\n // word is longer than desired bounds\n if (tokenWidth > wordWrapWidth)\n {\n // if we are not already at the beginning of a line\n if (line !== '')\n {\n // start newlines for overflow words\n lines += TextMetrics.addLine(line);\n line = '';\n width = 0;\n }\n\n // break large word over multiple lines\n if (TextMetrics.canBreakWords(token, style.breakWords))\n {\n // break word into characters\n var characters = token.split('');\n\n // loop the characters\n for (var j = 0; j < characters.length; j++)\n {\n var char = characters[j];\n\n var k = 1;\n // we are not at the end of the token\n\n while (characters[j + k])\n {\n var nextChar = characters[j + k];\n var lastChar = char[char.length - 1];\n\n // should not split chars\n if (!TextMetrics.canBreakChars(lastChar, nextChar, token, j, style.breakWords))\n {\n // combine chars & move forward one\n char += nextChar;\n }\n else\n {\n break;\n }\n\n k++;\n }\n\n j += char.length - 1;\n\n var characterWidth = TextMetrics.getFromCache(char, letterSpacing, cache, context);\n\n if (characterWidth + width > wordWrapWidth)\n {\n lines += TextMetrics.addLine(line);\n canPrependSpaces = false;\n line = '';\n width = 0;\n }\n\n line += char;\n width += characterWidth;\n }\n }\n\n // run word out of the bounds\n else\n {\n // if there are words in this line already\n // finish that line and start a new one\n if (line.length > 0)\n {\n lines += TextMetrics.addLine(line);\n line = '';\n width = 0;\n }\n\n var isLastToken = i === tokens.length - 1;\n\n // give it its own line if it's not the end\n lines += TextMetrics.addLine(token, !isLastToken);\n canPrependSpaces = false;\n line = '';\n width = 0;\n }\n }\n\n // word could fit\n else\n {\n // word won't fit because of existing words\n // start a new line\n if (tokenWidth + width > wordWrapWidth)\n {\n // if its a space we don't want it\n canPrependSpaces = false;\n\n // add a new line\n lines += TextMetrics.addLine(line);\n\n // start a new line\n line = '';\n width = 0;\n }\n\n // don't add spaces to the beginning of lines\n if (line.length > 0 || !TextMetrics.isBreakingSpace(token) || canPrependSpaces)\n {\n // add the word to the current line\n line += token;\n\n // update width counter\n width += tokenWidth;\n }\n }\n }\n\n lines += TextMetrics.addLine(line, false);\n\n return lines;\n};\n\n/**\n * Convienience function for logging each line added during the wordWrap\n * method\n *\n * @private\n * @param {string} line - The line of text to add\n * @param {boolean} newLine - Add new line character to end\n * @return {string} A formatted line\n */\nTextMetrics.addLine = function addLine (line, newLine)\n{\n if ( newLine === void 0 ) newLine = true;\n\n line = TextMetrics.trimRight(line);\n\n line = (newLine) ? (line + \"\\n\") : line;\n\n return line;\n};\n\n/**\n * Gets & sets the widths of calculated characters in a cache object\n *\n * @private\n * @param {string} key The key\n * @param {number} letterSpacing The letter spacing\n * @param {object} cache The cache\n * @param {CanvasRenderingContext2D} context The canvas context\n * @return {number} The from cache.\n */\nTextMetrics.getFromCache = function getFromCache (key, letterSpacing, cache, context)\n{\n var width = cache[key];\n\n if (width === undefined)\n {\n var spacing = ((key.length) * letterSpacing);\n\n width = context.measureText(key).width + spacing;\n cache[key] = width;\n }\n\n return width;\n};\n\n/**\n * Determines whether we should collapse breaking spaces\n *\n * @private\n * @param {string} whiteSpace The TextStyle property whiteSpace\n * @return {boolean} should collapse\n */\nTextMetrics.collapseSpaces = function collapseSpaces (whiteSpace)\n{\n return (whiteSpace === 'normal' || whiteSpace === 'pre-line');\n};\n\n/**\n * Determines whether we should collapse newLine chars\n *\n * @private\n * @param {string} whiteSpace The white space\n * @return {boolean} should collapse\n */\nTextMetrics.collapseNewlines = function collapseNewlines (whiteSpace)\n{\n return (whiteSpace === 'normal');\n};\n\n/**\n * trims breaking whitespaces from string\n *\n * @private\n * @param {string} text The text\n * @return {string} trimmed string\n */\nTextMetrics.trimRight = function trimRight (text)\n{\n if (typeof text !== 'string')\n {\n return '';\n }\n\n for (var i = text.length - 1; i >= 0; i--)\n {\n var char = text[i];\n\n if (!TextMetrics.isBreakingSpace(char))\n {\n break;\n }\n\n text = text.slice(0, -1);\n }\n\n return text;\n};\n\n/**\n * Determines if char is a newline.\n *\n * @private\n * @param {string} char The character\n * @return {boolean} True if newline, False otherwise.\n */\nTextMetrics.isNewline = function isNewline (char)\n{\n if (typeof char !== 'string')\n {\n return false;\n }\n\n return (TextMetrics._newlines.indexOf(char.charCodeAt(0)) >= 0);\n};\n\n/**\n * Determines if char is a breaking whitespace.\n *\n * @private\n * @param {string} char The character\n * @return {boolean} True if whitespace, False otherwise.\n */\nTextMetrics.isBreakingSpace = function isBreakingSpace (char)\n{\n if (typeof char !== 'string')\n {\n return false;\n }\n\n return (TextMetrics._breakingSpaces.indexOf(char.charCodeAt(0)) >= 0);\n};\n\n/**\n * Splits a string into words, breaking-spaces and newLine characters\n *\n * @private\n * @param {string} text The text\n * @return {string[]} A tokenized array\n */\nTextMetrics.tokenize = function tokenize (text)\n{\n var tokens = [];\n var token = '';\n\n if (typeof text !== 'string')\n {\n return tokens;\n }\n\n for (var i = 0; i < text.length; i++)\n {\n var char = text[i];\n\n if (TextMetrics.isBreakingSpace(char) || TextMetrics.isNewline(char))\n {\n if (token !== '')\n {\n tokens.push(token);\n token = '';\n }\n\n tokens.push(char);\n\n continue;\n }\n\n token += char;\n }\n\n if (token !== '')\n {\n tokens.push(token);\n }\n\n return tokens;\n};\n\n/**\n * This method exists to be easily overridden\n * It allows one to customise which words should break\n * Examples are if the token is CJK or numbers.\n * It must return a boolean.\n *\n * @private\n * @param {string} token The token\n * @param {boolean} breakWords The style attr break words\n * @return {boolean} whether to break word or not\n */\nTextMetrics.canBreakWords = function canBreakWords (token, breakWords)\n{\n return breakWords;\n};\n\n/**\n * This method exists to be easily overridden\n * It allows one to determine whether a pair of characters\n * should be broken by newlines\n * For example certain characters in CJK langs or numbers.\n * It must return a boolean.\n *\n * @private\n * @param {string} char The character\n * @param {string} nextChar The next character\n * @param {string} token The token/word the characters are from\n * @param {number} index The index in the token of the char\n * @param {boolean} breakWords The style attr break words\n * @return {boolean} whether to break word or not\n */\nTextMetrics.canBreakChars = function canBreakChars (char, nextChar, token, index, breakWords) // eslint-disable-line no-unused-vars\n{\n return true;\n};\n\n/**\n * Calculates the ascent, descent and fontSize of a given font-style\n *\n * @static\n * @param {string} font - String representing the style of the font\n * @return {PIXI.IFontMetrics} Font properties object\n */\nTextMetrics.measureFont = function measureFont (font)\n{\n // as this method is used for preparing assets, don't recalculate things if we don't need to\n if (TextMetrics._fonts[font])\n {\n return TextMetrics._fonts[font];\n }\n\n var properties = {};\n\n var canvas = TextMetrics._canvas;\n var context = TextMetrics._context;\n\n context.font = font;\n\n var metricsString = TextMetrics.METRICS_STRING + TextMetrics.BASELINE_SYMBOL;\n var width = Math.ceil(context.measureText(metricsString).width);\n var baseline = Math.ceil(context.measureText(TextMetrics.BASELINE_SYMBOL).width);\n var height = 2 * baseline;\n\n baseline = baseline * TextMetrics.BASELINE_MULTIPLIER | 0;\n\n canvas.width = width;\n canvas.height = height;\n\n context.fillStyle = '#f00';\n context.fillRect(0, 0, width, height);\n\n context.font = font;\n\n context.textBaseline = 'alphabetic';\n context.fillStyle = '#000';\n context.fillText(metricsString, 0, baseline);\n\n var imagedata = context.getImageData(0, 0, width, height).data;\n var pixels = imagedata.length;\n var line = width * 4;\n\n var i = 0;\n var idx = 0;\n var stop = false;\n\n // ascent. scan from top to bottom until we find a non red pixel\n for (i = 0; i < baseline; ++i)\n {\n for (var j = 0; j < line; j += 4)\n {\n if (imagedata[idx + j] !== 255)\n {\n stop = true;\n break;\n }\n }\n if (!stop)\n {\n idx += line;\n }\n else\n {\n break;\n }\n }\n\n properties.ascent = baseline - i;\n\n idx = pixels - line;\n stop = false;\n\n // descent. scan from bottom to top until we find a non red pixel\n for (i = height; i > baseline; --i)\n {\n for (var j$1 = 0; j$1 < line; j$1 += 4)\n {\n if (imagedata[idx + j$1] !== 255)\n {\n stop = true;\n break;\n }\n }\n\n if (!stop)\n {\n idx -= line;\n }\n else\n {\n break;\n }\n }\n\n properties.descent = i - baseline;\n properties.fontSize = properties.ascent + properties.descent;\n\n TextMetrics._fonts[font] = properties;\n\n return properties;\n};\n\n/**\n * Clear font metrics in metrics cache.\n *\n * @static\n * @param {string} [font] - font name. If font name not set then clear cache for all fonts.\n */\nTextMetrics.clearMetrics = function clearMetrics (font)\n{\n if ( font === void 0 ) font = '';\n\n if (font)\n {\n delete TextMetrics._fonts[font];\n }\n else\n {\n TextMetrics._fonts = {};\n }\n};\n\n/**\n * Internal return object for {@link PIXI.TextMetrics.measureFont `TextMetrics.measureFont`}.\n *\n * @typedef {object} FontMetrics\n * @property {number} ascent - The ascent distance\n * @property {number} descent - The descent distance\n * @property {number} fontSize - Font size from ascent to descent\n * @memberof PIXI.TextMetrics\n * @private\n */\n\nvar canvas = (function () {\n try\n {\n // OffscreenCanvas2D measureText can be up to 40% faster.\n var c = new OffscreenCanvas(0, 0);\n\n return c.getContext('2d') ? c : document.createElement('canvas');\n }\n catch (ex)\n {\n return document.createElement('canvas');\n }\n})();\n\ncanvas.width = canvas.height = 10;\n\n/**\n * Cached canvas element for measuring text\n *\n * @memberof PIXI.TextMetrics\n * @type {HTMLCanvasElement}\n * @private\n */\nTextMetrics._canvas = canvas;\n\n/**\n * Cache for context to use.\n *\n * @memberof PIXI.TextMetrics\n * @type {CanvasRenderingContext2D}\n * @private\n */\nTextMetrics._context = canvas.getContext('2d');\n\n/**\n * Cache of {@see PIXI.TextMetrics.FontMetrics} objects.\n *\n * @memberof PIXI.TextMetrics\n * @type {Object}\n * @private\n */\nTextMetrics._fonts = {};\n\n/**\n * String used for calculate font metrics.\n * These characters are all tall to help calculate the height required for text.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name METRICS_STRING\n * @type {string}\n * @default |ÉqÅ\n */\nTextMetrics.METRICS_STRING = '|ÉqÅ';\n\n/**\n * Baseline symbol for calculate font metrics.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name BASELINE_SYMBOL\n * @type {string}\n * @default M\n */\nTextMetrics.BASELINE_SYMBOL = 'M';\n\n/**\n * Baseline multiplier for calculate font metrics.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name BASELINE_MULTIPLIER\n * @type {number}\n * @default 1.4\n */\nTextMetrics.BASELINE_MULTIPLIER = 1.4;\n\n/**\n * Cache of new line chars.\n *\n * @memberof PIXI.TextMetrics\n * @type {number[]}\n * @private\n */\nTextMetrics._newlines = [\n 0x000A, // line feed\n 0x000D ];\n\n/**\n * Cache of breaking spaces.\n *\n * @memberof PIXI.TextMetrics\n * @type {number[]}\n * @private\n */\nTextMetrics._breakingSpaces = [\n 0x0009, // character tabulation\n 0x0020, // space\n 0x2000, // en quad\n 0x2001, // em quad\n 0x2002, // en space\n 0x2003, // em space\n 0x2004, // three-per-em space\n 0x2005, // four-per-em space\n 0x2006, // six-per-em space\n 0x2008, // punctuation space\n 0x2009, // thin space\n 0x200A, // hair space\n 0x205F, // medium mathematical space\n 0x3000 ];\n\n/**\n * A number, or a string containing a number.\n *\n * @memberof PIXI\n * @typedef IFontMetrics\n * @property {number} ascent - Font ascent\n * @property {number} descent - Font descent\n * @property {number} fontSize - Font size\n */\n\n/* eslint max-depth: [2, 8] */\n\nvar defaultDestroyOptions = {\n texture: true,\n children: false,\n baseTexture: true,\n};\n\n/**\n * A Text Object will create a line or multiple lines of text.\n *\n * The text is created using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API).\n *\n * The primary advantage of this class over BitmapText is that you have great control over the style of the next,\n * which you can change at runtime.\n *\n * The primary disadvantages is that each piece of text has it's own texture, which can use more memory.\n * When text changes, this texture has to be re-generated and re-uploaded to the GPU, taking up time.\n *\n * To split a line you can use '\\n' in your text string, or, on the `style` object,\n * change its `wordWrap` property to true and and give the `wordWrapWidth` property a value.\n *\n * A Text can be created directly from a string and a style object,\n * which can be generated [here](https://pixijs.io/pixi-text-style).\n *\n * ```js\n * let text = new PIXI.Text('This is a PixiJS text',{fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'});\n * ```\n *\n * @class\n * @extends PIXI.Sprite\n * @memberof PIXI\n */\nvar Text = /*@__PURE__*/(function (Sprite) {\n function Text(text, style, canvas)\n {\n canvas = canvas || document.createElement('canvas');\n\n canvas.width = 3;\n canvas.height = 3;\n\n var texture = Texture.from(canvas);\n\n texture.orig = new Rectangle();\n texture.trim = new Rectangle();\n\n Sprite.call(this, texture);\n\n /**\n * The canvas element that everything is drawn to\n *\n * @member {HTMLCanvasElement}\n */\n this.canvas = canvas;\n\n /**\n * The canvas 2d context that everything is drawn with\n * @member {CanvasRenderingContext2D}\n */\n this.context = this.canvas.getContext('2d');\n\n /**\n * The resolution / device pixel ratio of the canvas.\n * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually.\n * @member {number}\n * @default 1\n */\n this._resolution = settings.RESOLUTION;\n this._autoResolution = true;\n\n /**\n * Private tracker for the current text.\n *\n * @member {string}\n * @private\n */\n this._text = null;\n\n /**\n * Private tracker for the current style.\n *\n * @member {object}\n * @private\n */\n this._style = null;\n /**\n * Private listener to track style changes.\n *\n * @member {Function}\n * @private\n */\n this._styleListener = null;\n\n /**\n * Private tracker for the current font.\n *\n * @member {string}\n * @private\n */\n this._font = '';\n\n this.text = text;\n this.style = style;\n\n this.localStyleID = -1;\n }\n\n if ( Sprite ) Text.__proto__ = Sprite;\n Text.prototype = Object.create( Sprite && Sprite.prototype );\n Text.prototype.constructor = Text;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true },style: { configurable: true },text: { configurable: true },resolution: { configurable: true } };\n\n /**\n * Renders text and updates it when needed.\n *\n * @private\n * @param {boolean} respectDirty - Whether to abort updating the text if the Text isn't dirty and the function is called.\n */\n Text.prototype.updateText = function updateText (respectDirty)\n {\n var style = this._style;\n\n // check if style has changed..\n if (this.localStyleID !== style.styleID)\n {\n this.dirty = true;\n this.localStyleID = style.styleID;\n }\n\n if (!this.dirty && respectDirty)\n {\n return;\n }\n\n this._font = this._style.toFontString();\n\n var context = this.context;\n var measured = TextMetrics.measureText(this._text || ' ', this._style, this._style.wordWrap, this.canvas);\n var width = measured.width;\n var height = measured.height;\n var lines = measured.lines;\n var lineHeight = measured.lineHeight;\n var lineWidths = measured.lineWidths;\n var maxLineWidth = measured.maxLineWidth;\n var fontProperties = measured.fontProperties;\n\n this.canvas.width = Math.ceil((Math.max(1, width) + (style.padding * 2)) * this._resolution);\n this.canvas.height = Math.ceil((Math.max(1, height) + (style.padding * 2)) * this._resolution);\n\n context.scale(this._resolution, this._resolution);\n\n context.clearRect(0, 0, this.canvas.width, this.canvas.height);\n\n context.font = this._font;\n context.lineWidth = style.strokeThickness;\n context.textBaseline = style.textBaseline;\n context.lineJoin = style.lineJoin;\n context.miterLimit = style.miterLimit;\n\n var linePositionX;\n var linePositionY;\n\n // require 2 passes if a shadow; the first to draw the drop shadow, the second to draw the text\n var passesCount = style.dropShadow ? 2 : 1;\n\n // For v4, we drew text at the colours of the drop shadow underneath the normal text. This gave the correct zIndex,\n // but features such as alpha and shadowblur did not look right at all, since we were using actual text as a shadow.\n //\n // For v5.0.0, we moved over to just use the canvas API for drop shadows, which made them look much nicer and more\n // visually please, but now because the stroke is drawn and then the fill, drop shadows would appear on both the fill\n // and the stroke; and fill drop shadows would appear over the top of the stroke.\n //\n // For v5.1.1, the new route is to revert to v4 style of drawing text first to get the drop shadows underneath normal\n // text, but instead drawing text in the correct location, we'll draw it off screen (-paddingY), and then adjust the\n // drop shadow so only that appears on screen (+paddingY). Now we'll have the correct draw order of the shadow\n // beneath the text, whilst also having the proper text shadow styling.\n for (var i = 0; i < passesCount; ++i)\n {\n var isShadowPass = style.dropShadow && i === 0;\n var dsOffsetText = isShadowPass ? height * 2 : 0; // we only want the drop shadow, so put text way off-screen\n var dsOffsetShadow = dsOffsetText * this.resolution;\n\n if (isShadowPass)\n {\n // On Safari, text with gradient and drop shadows together do not position correctly\n // if the scale of the canvas is not 1: https://bugs.webkit.org/show_bug.cgi?id=197689\n // Therefore we'll set the styles to be a plain black whilst generating this drop shadow\n context.fillStyle = 'black';\n context.strokeStyle = 'black';\n\n var dropShadowColor = style.dropShadowColor;\n var rgb = hex2rgb(typeof dropShadowColor === 'number' ? dropShadowColor : string2hex(dropShadowColor));\n\n context.shadowColor = \"rgba(\" + (rgb[0] * 255) + \",\" + (rgb[1] * 255) + \",\" + (rgb[2] * 255) + \",\" + (style.dropShadowAlpha) + \")\";\n context.shadowBlur = style.dropShadowBlur;\n context.shadowOffsetX = Math.cos(style.dropShadowAngle) * style.dropShadowDistance;\n context.shadowOffsetY = (Math.sin(style.dropShadowAngle) * style.dropShadowDistance) + dsOffsetShadow;\n }\n else\n {\n // set canvas text styles\n context.fillStyle = this._generateFillStyle(style, lines);\n context.strokeStyle = style.stroke;\n\n context.shadowColor = 0;\n context.shadowBlur = 0;\n context.shadowOffsetX = 0;\n context.shadowOffsetY = 0;\n }\n\n // draw lines line by line\n for (var i$1 = 0; i$1 < lines.length; i$1++)\n {\n linePositionX = style.strokeThickness / 2;\n linePositionY = ((style.strokeThickness / 2) + (i$1 * lineHeight)) + fontProperties.ascent;\n\n if (style.align === 'right')\n {\n linePositionX += maxLineWidth - lineWidths[i$1];\n }\n else if (style.align === 'center')\n {\n linePositionX += (maxLineWidth - lineWidths[i$1]) / 2;\n }\n\n if (style.stroke && style.strokeThickness)\n {\n this.drawLetterSpacing(\n lines[i$1],\n linePositionX + style.padding,\n linePositionY + style.padding - dsOffsetText,\n true\n );\n }\n\n if (style.fill)\n {\n this.drawLetterSpacing(\n lines[i$1],\n linePositionX + style.padding,\n linePositionY + style.padding - dsOffsetText\n );\n }\n }\n }\n\n this.updateTexture();\n };\n\n /**\n * Render the text with letter-spacing.\n * @param {string} text - The text to draw\n * @param {number} x - Horizontal position to draw the text\n * @param {number} y - Vertical position to draw the text\n * @param {boolean} [isStroke=false] - Is this drawing for the outside stroke of the\n * text? If not, it's for the inside fill\n * @private\n */\n Text.prototype.drawLetterSpacing = function drawLetterSpacing (text, x, y, isStroke)\n {\n if ( isStroke === void 0 ) isStroke = false;\n\n var style = this._style;\n\n // letterSpacing of 0 means normal\n var letterSpacing = style.letterSpacing;\n\n if (letterSpacing === 0)\n {\n if (isStroke)\n {\n this.context.strokeText(text, x, y);\n }\n else\n {\n this.context.fillText(text, x, y);\n }\n\n return;\n }\n\n var currentPosition = x;\n\n // Using Array.from correctly splits characters whilst keeping emoji together.\n // This is not supported on IE as it requires ES6, so regular text splitting occurs.\n // This also doesn't account for emoji that are multiple emoji put together to make something else.\n // Handling all of this would require a big library itself.\n // https://medium.com/@giltayar/iterating-over-emoji-characters-the-es6-way-f06e4589516\n // https://github.com/orling/grapheme-splitter\n var stringArray = Array.from ? Array.from(text) : text.split('');\n var previousWidth = this.context.measureText(text).width;\n var currentWidth = 0;\n\n for (var i = 0; i < stringArray.length; ++i)\n {\n var currentChar = stringArray[i];\n\n if (isStroke)\n {\n this.context.strokeText(currentChar, currentPosition, y);\n }\n else\n {\n this.context.fillText(currentChar, currentPosition, y);\n }\n currentWidth = this.context.measureText(text.substring(i + 1)).width;\n currentPosition += previousWidth - currentWidth + letterSpacing;\n previousWidth = currentWidth;\n }\n };\n\n /**\n * Updates texture size based on canvas size\n *\n * @private\n */\n Text.prototype.updateTexture = function updateTexture ()\n {\n var canvas = this.canvas;\n\n if (this._style.trim)\n {\n var trimmed = trimCanvas(canvas);\n\n if (trimmed.data)\n {\n canvas.width = trimmed.width;\n canvas.height = trimmed.height;\n this.context.putImageData(trimmed.data, 0, 0);\n }\n }\n\n var texture = this._texture;\n var style = this._style;\n var padding = style.trim ? 0 : style.padding;\n var baseTexture = texture.baseTexture;\n\n texture.trim.width = texture._frame.width = Math.ceil(canvas.width / this._resolution);\n texture.trim.height = texture._frame.height = Math.ceil(canvas.height / this._resolution);\n texture.trim.x = -padding;\n texture.trim.y = -padding;\n\n texture.orig.width = texture._frame.width - (padding * 2);\n texture.orig.height = texture._frame.height - (padding * 2);\n\n // call sprite onTextureUpdate to update scale if _width or _height were set\n this._onTextureUpdate();\n\n baseTexture.setRealSize(canvas.width, canvas.height, this._resolution);\n\n this.dirty = false;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @private\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Text.prototype._render = function _render (renderer)\n {\n if (this._autoResolution && this._resolution !== renderer.resolution)\n {\n this._resolution = renderer.resolution;\n this.dirty = true;\n }\n\n this.updateText(true);\n\n Sprite.prototype._render.call(this, renderer);\n };\n\n /**\n * Gets the local bounds of the text object.\n *\n * @param {PIXI.Rectangle} rect - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n Text.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n this.updateText(true);\n\n return Sprite.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * calculates the bounds of the Text as a rectangle. The bounds calculation takes the worldTransform into account.\n * @protected\n */\n Text.prototype._calculateBounds = function _calculateBounds ()\n {\n this.updateText(true);\n this.calculateVertices();\n // if we have already done this on THIS frame.\n this._bounds.addQuad(this.vertexData);\n };\n\n /**\n * Method to be called upon a TextStyle change.\n * @private\n */\n Text.prototype._onStyleChange = function _onStyleChange ()\n {\n this.dirty = true;\n };\n\n /**\n * Generates the fill style. Can automatically generate a gradient based on the fill style being an array\n *\n * @private\n * @param {object} style - The style.\n * @param {string[]} lines - The lines of text.\n * @return {string|number|CanvasGradient} The fill style\n */\n Text.prototype._generateFillStyle = function _generateFillStyle (style, lines)\n {\n if (!Array.isArray(style.fill))\n {\n return style.fill;\n }\n else if (style.fill.length === 1)\n {\n return style.fill[0];\n }\n\n // the gradient will be evenly spaced out according to how large the array is.\n // ['#FF0000', '#00FF00', '#0000FF'] would created stops at 0.25, 0.5 and 0.75\n var gradient;\n var totalIterations;\n var currentIteration;\n var stop;\n\n var width = Math.ceil(this.canvas.width / this._resolution);\n var height = Math.ceil(this.canvas.height / this._resolution);\n\n // make a copy of the style settings, so we can manipulate them later\n var fill = style.fill.slice();\n var fillGradientStops = style.fillGradientStops.slice();\n\n // wanting to evenly distribute the fills. So an array of 4 colours should give fills of 0.25, 0.5 and 0.75\n if (!fillGradientStops.length)\n {\n var lengthPlus1 = fill.length + 1;\n\n for (var i = 1; i < lengthPlus1; ++i)\n {\n fillGradientStops.push(i / lengthPlus1);\n }\n }\n\n // stop the bleeding of the last gradient on the line above to the top gradient of the this line\n // by hard defining the first gradient colour at point 0, and last gradient colour at point 1\n fill.unshift(style.fill[0]);\n fillGradientStops.unshift(0);\n\n fill.push(style.fill[style.fill.length - 1]);\n fillGradientStops.push(1);\n\n if (style.fillGradientType === TEXT_GRADIENT.LINEAR_VERTICAL)\n {\n // start the gradient at the top center of the canvas, and end at the bottom middle of the canvas\n gradient = this.context.createLinearGradient(width / 2, 0, width / 2, height);\n\n // we need to repeat the gradient so that each individual line of text has the same vertical gradient effect\n // ['#FF0000', '#00FF00', '#0000FF'] over 2 lines would create stops at 0.125, 0.25, 0.375, 0.625, 0.75, 0.875\n totalIterations = (fill.length + 1) * lines.length;\n currentIteration = 0;\n for (var i$1 = 0; i$1 < lines.length; i$1++)\n {\n currentIteration += 1;\n for (var j = 0; j < fill.length; j++)\n {\n if (typeof fillGradientStops[j] === 'number')\n {\n stop = (fillGradientStops[j] / lines.length) + (i$1 / lines.length);\n }\n else\n {\n stop = currentIteration / totalIterations;\n }\n gradient.addColorStop(stop, fill[j]);\n currentIteration++;\n }\n }\n }\n else\n {\n // start the gradient at the center left of the canvas, and end at the center right of the canvas\n gradient = this.context.createLinearGradient(0, height / 2, width, height / 2);\n\n // can just evenly space out the gradients in this case, as multiple lines makes no difference\n // to an even left to right gradient\n totalIterations = fill.length + 1;\n currentIteration = 1;\n\n for (var i$2 = 0; i$2 < fill.length; i$2++)\n {\n if (typeof fillGradientStops[i$2] === 'number')\n {\n stop = fillGradientStops[i$2];\n }\n else\n {\n stop = currentIteration / totalIterations;\n }\n gradient.addColorStop(stop, fill[i$2]);\n currentIteration++;\n }\n }\n\n return gradient;\n };\n\n /**\n * Destroys this text object.\n * Note* Unlike a Sprite, a Text object will automatically destroy its baseTexture and texture as\n * the majority of the time the texture will not be shared with any other Sprites.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their\n * destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=true] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=true] - Should it destroy the base texture of the sprite as well\n */\n Text.prototype.destroy = function destroy (options)\n {\n if (typeof options === 'boolean')\n {\n options = { children: options };\n }\n\n options = Object.assign({}, defaultDestroyOptions, options);\n\n Sprite.prototype.destroy.call(this, options);\n\n // make sure to reset the the context and canvas.. dont want this hanging around in memory!\n this.context = null;\n this.canvas = null;\n\n this._style = null;\n };\n\n /**\n * The width of the Text, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n this.updateText(true);\n\n return Math.abs(this.scale.x) * this._texture.orig.width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.updateText(true);\n\n var s = sign(this.scale.x) || 1;\n\n this.scale.x = s * value / this._texture.orig.width;\n this._width = value;\n };\n\n /**\n * The height of the Text, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n this.updateText(true);\n\n return Math.abs(this.scale.y) * this._texture.orig.height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.updateText(true);\n\n var s = sign(this.scale.y) || 1;\n\n this.scale.y = s * value / this._texture.orig.height;\n this._height = value;\n };\n\n /**\n * Set the style of the text. Set up an event listener to listen for changes on the style\n * object and mark the text as dirty.\n *\n * @member {object|PIXI.TextStyle}\n */\n prototypeAccessors.style.get = function ()\n {\n return this._style;\n };\n\n prototypeAccessors.style.set = function (style) // eslint-disable-line require-jsdoc\n {\n style = style || {};\n\n if (style instanceof TextStyle)\n {\n this._style = style;\n }\n else\n {\n this._style = new TextStyle(style);\n }\n\n this.localStyleID = -1;\n this.dirty = true;\n };\n\n /**\n * Set the copy for the text object. To split a line you can use '\\n'.\n *\n * @member {string}\n */\n prototypeAccessors.text.get = function ()\n {\n return this._text;\n };\n\n prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc\n {\n text = String(text === null || text === undefined ? '' : text);\n\n if (this._text === text)\n {\n return;\n }\n this._text = text;\n this.dirty = true;\n };\n\n /**\n * The resolution / device pixel ratio of the canvas.\n * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually.\n * @member {number}\n * @default 1\n */\n prototypeAccessors.resolution.get = function ()\n {\n return this._resolution;\n };\n\n prototypeAccessors.resolution.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._autoResolution = false;\n\n if (this._resolution === value)\n {\n return;\n }\n\n this._resolution = value;\n this.dirty = true;\n };\n\n Object.defineProperties( Text.prototype, prototypeAccessors );\n\n return Text;\n}(Sprite));\n\nexport { TEXT_GRADIENT, Text, TextMetrics, TextStyle };\n//# sourceMappingURL=text.es.js.map\n","/*!\n * @pixi/prepare - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/prepare is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nimport { Texture, BaseTexture } from '@pixi/core';\nimport { Graphics } from '@pixi/graphics';\nimport { Ticker, UPDATE_PRIORITY } from '@pixi/ticker';\nimport { Container } from '@pixi/display';\nimport { Text, TextStyle, TextMetrics } from '@pixi/text';\n\n/**\n * Default number of uploads per frame using prepare plugin.\n *\n * @static\n * @memberof PIXI.settings\n * @name UPLOADS_PER_FRAME\n * @type {number}\n * @default 4\n */\nsettings.UPLOADS_PER_FRAME = 4;\n\n/**\n * CountLimiter limits the number of items handled by a {@link PIXI.prepare.BasePrepare} to a specified\n * number of items per frame.\n *\n * @class\n * @memberof PIXI.prepare\n */\nvar CountLimiter = function CountLimiter(maxItemsPerFrame)\n{\n /**\n * The maximum number of items that can be prepared each frame.\n * @type {number}\n * @private\n */\n this.maxItemsPerFrame = maxItemsPerFrame;\n /**\n * The number of items that can be prepared in the current frame.\n * @type {number}\n * @private\n */\n this.itemsLeft = 0;\n};\n\n/**\n * Resets any counting properties to start fresh on a new frame.\n */\nCountLimiter.prototype.beginFrame = function beginFrame ()\n{\n this.itemsLeft = this.maxItemsPerFrame;\n};\n\n/**\n * Checks to see if another item can be uploaded. This should only be called once per item.\n * @return {boolean} If the item is allowed to be uploaded.\n */\nCountLimiter.prototype.allowedToUpload = function allowedToUpload ()\n{\n return this.itemsLeft-- > 0;\n};\n\n/**\n * The prepare manager provides functionality to upload content to the GPU.\n *\n * BasePrepare handles basic queuing functionality and is extended by\n * {@link PIXI.prepare.Prepare} and {@link PIXI.prepare.CanvasPrepare}\n * to provide preparation capabilities specific to their respective renderers.\n *\n * @example\n * // Create a sprite\n * const sprite = PIXI.Sprite.from('something.png');\n *\n * // Load object into GPU\n * app.renderer.plugins.prepare.upload(sprite, () => {\n *\n * //Texture(s) has been uploaded to GPU\n * app.stage.addChild(sprite);\n *\n * })\n *\n * @abstract\n * @class\n * @memberof PIXI.prepare\n */\nvar BasePrepare = function BasePrepare(renderer)\n{\n var this$1 = this;\n\n /**\n * The limiter to be used to control how quickly items are prepared.\n * @type {PIXI.prepare.CountLimiter|PIXI.prepare.TimeLimiter}\n */\n this.limiter = new CountLimiter(settings.UPLOADS_PER_FRAME);\n\n /**\n * Reference to the renderer.\n * @type {PIXI.AbstractRenderer}\n * @protected\n */\n this.renderer = renderer;\n\n /**\n * The only real difference between CanvasPrepare and Prepare is what they pass\n * to upload hooks. That different parameter is stored here.\n * @type {PIXI.prepare.CanvasPrepare|PIXI.Renderer}\n * @protected\n */\n this.uploadHookHelper = null;\n\n /**\n * Collection of items to uploads at once.\n * @type {Array<*>}\n * @private\n */\n this.queue = [];\n\n /**\n * Collection of additional hooks for finding assets.\n * @type {Array}\n * @private\n */\n this.addHooks = [];\n\n /**\n * Collection of additional hooks for processing assets.\n * @type {Array}\n * @private\n */\n this.uploadHooks = [];\n\n /**\n * Callback to call after completed.\n * @type {Array}\n * @private\n */\n this.completes = [];\n\n /**\n * If prepare is ticking (running).\n * @type {boolean}\n * @private\n */\n this.ticking = false;\n\n /**\n * 'bound' call for prepareItems().\n * @type {Function}\n * @private\n */\n this.delayedTick = function () {\n // unlikely, but in case we were destroyed between tick() and delayedTick()\n if (!this$1.queue)\n {\n return;\n }\n this$1.prepareItems();\n };\n\n // hooks to find the correct texture\n this.registerFindHook(findText);\n this.registerFindHook(findTextStyle);\n this.registerFindHook(findMultipleBaseTextures);\n this.registerFindHook(findBaseTexture);\n this.registerFindHook(findTexture);\n\n // upload hooks\n this.registerUploadHook(drawText);\n this.registerUploadHook(calculateTextStyle);\n};\n\n/**\n * Upload all the textures and graphics to the GPU.\n *\n * @param {Function|PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text} item -\n * Either the container or display object to search for items to upload, the items to upload themselves,\n * or the callback function, if items have been added using `prepare.add`.\n * @param {Function} [done] - Optional callback when all queued uploads have completed\n */\nBasePrepare.prototype.upload = function upload (item, done)\n{\n if (typeof item === 'function')\n {\n done = item;\n item = null;\n }\n\n // If a display object, search for items\n // that we could upload\n if (item)\n {\n this.add(item);\n }\n\n // Get the items for upload from the display\n if (this.queue.length)\n {\n if (done)\n {\n this.completes.push(done);\n }\n\n if (!this.ticking)\n {\n this.ticking = true;\n Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY);\n }\n }\n else if (done)\n {\n done();\n }\n};\n\n/**\n * Handle tick update\n *\n * @private\n */\nBasePrepare.prototype.tick = function tick ()\n{\n setTimeout(this.delayedTick, 0);\n};\n\n/**\n * Actually prepare items. This is handled outside of the tick because it will take a while\n * and we do NOT want to block the current animation frame from rendering.\n *\n * @private\n */\nBasePrepare.prototype.prepareItems = function prepareItems ()\n{\n this.limiter.beginFrame();\n // Upload the graphics\n while (this.queue.length && this.limiter.allowedToUpload())\n {\n var item = this.queue[0];\n var uploaded = false;\n\n if (item && !item._destroyed)\n {\n for (var i = 0, len = this.uploadHooks.length; i < len; i++)\n {\n if (this.uploadHooks[i](this.uploadHookHelper, item))\n {\n this.queue.shift();\n uploaded = true;\n break;\n }\n }\n }\n\n if (!uploaded)\n {\n this.queue.shift();\n }\n }\n\n // We're finished\n if (!this.queue.length)\n {\n this.ticking = false;\n\n var completes = this.completes.slice(0);\n\n this.completes.length = 0;\n\n for (var i$1 = 0, len$1 = completes.length; i$1 < len$1; i$1++)\n {\n completes[i$1]();\n }\n }\n else\n {\n // if we are not finished, on the next rAF do this again\n Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY);\n }\n};\n\n/**\n * Adds hooks for finding items.\n *\n * @param {Function} addHook - Function call that takes two parameters: `item:*, queue:Array`\n * function must return `true` if it was able to add item to the queue.\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.registerFindHook = function registerFindHook (addHook)\n{\n if (addHook)\n {\n this.addHooks.push(addHook);\n }\n\n return this;\n};\n\n/**\n * Adds hooks for uploading items.\n *\n * @param {Function} uploadHook - Function call that takes two parameters: `prepare:CanvasPrepare, item:*` and\n * function must return `true` if it was able to handle upload of item.\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.registerUploadHook = function registerUploadHook (uploadHook)\n{\n if (uploadHook)\n {\n this.uploadHooks.push(uploadHook);\n }\n\n return this;\n};\n\n/**\n * Manually add an item to the uploading queue.\n *\n * @param {PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text|*} item - Object to\n * add to the queue\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.add = function add (item)\n{\n // Add additional hooks for finding elements on special\n // types of objects that\n for (var i = 0, len = this.addHooks.length; i < len; i++)\n {\n if (this.addHooks[i](item, this.queue))\n {\n break;\n }\n }\n\n // Get children recursively\n if (item instanceof Container)\n {\n for (var i$1 = item.children.length - 1; i$1 >= 0; i$1--)\n {\n this.add(item.children[i$1]);\n }\n }\n\n return this;\n};\n\n/**\n * Destroys the plugin, don't use after this.\n *\n */\nBasePrepare.prototype.destroy = function destroy ()\n{\n if (this.ticking)\n {\n Ticker.system.remove(this.tick, this);\n }\n this.ticking = false;\n this.addHooks = null;\n this.uploadHooks = null;\n this.renderer = null;\n this.completes = null;\n this.queue = null;\n this.limiter = null;\n this.uploadHookHelper = null;\n};\n\n/**\n * Built-in hook to find multiple textures from objects like AnimatedSprites.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findMultipleBaseTextures(item, queue)\n{\n var result = false;\n\n // Objects with multiple textures\n if (item && item._textures && item._textures.length)\n {\n for (var i = 0; i < item._textures.length; i++)\n {\n if (item._textures[i] instanceof Texture)\n {\n var baseTexture = item._textures[i].baseTexture;\n\n if (queue.indexOf(baseTexture) === -1)\n {\n queue.push(baseTexture);\n result = true;\n }\n }\n }\n }\n\n return result;\n}\n\n/**\n * Built-in hook to find BaseTextures from Sprites.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findBaseTexture(item, queue)\n{\n // Objects with textures, like Sprites/Text\n if (item instanceof BaseTexture)\n {\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find textures from objects.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findTexture(item, queue)\n{\n if (item._texture && item._texture instanceof Texture)\n {\n var texture = item._texture.baseTexture;\n\n if (queue.indexOf(texture) === -1)\n {\n queue.push(texture);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to draw PIXI.Text to its texture.\n *\n * @private\n * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction drawText(helper, item)\n{\n if (item instanceof Text)\n {\n // updating text will return early if it is not dirty\n item.updateText(true);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to calculate a text style for a PIXI.Text object.\n *\n * @private\n * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction calculateTextStyle(helper, item)\n{\n if (item instanceof TextStyle)\n {\n var font = item.toFontString();\n\n TextMetrics.measureFont(font);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find Text objects.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Text object was found.\n */\nfunction findText(item, queue)\n{\n if (item instanceof Text)\n {\n // push the text style to prepare it - this can be really expensive\n if (queue.indexOf(item.style) === -1)\n {\n queue.push(item.style);\n }\n // also push the text object so that we can render it (to canvas/texture) if needed\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n // also push the Text's texture for upload to GPU\n var texture = item._texture.baseTexture;\n\n if (queue.indexOf(texture) === -1)\n {\n queue.push(texture);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find TextStyle objects.\n *\n * @private\n * @param {PIXI.TextStyle} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.TextStyle object was found.\n */\nfunction findTextStyle(item, queue)\n{\n if (item instanceof TextStyle)\n {\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * The prepare manager provides functionality to upload content to the GPU.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.prepare`\n *\n * @class\n * @extends PIXI.prepare.BasePrepare\n * @memberof PIXI.prepare\n */\nvar Prepare = /*@__PURE__*/(function (BasePrepare) {\n function Prepare(renderer)\n {\n BasePrepare.call(this, renderer);\n\n this.uploadHookHelper = this.renderer;\n\n // Add textures and graphics to upload\n this.registerFindHook(findGraphics);\n this.registerUploadHook(uploadBaseTextures);\n this.registerUploadHook(uploadGraphics);\n }\n\n if ( BasePrepare ) Prepare.__proto__ = BasePrepare;\n Prepare.prototype = Object.create( BasePrepare && BasePrepare.prototype );\n Prepare.prototype.constructor = Prepare;\n\n return Prepare;\n}(BasePrepare));\n/**\n * Built-in hook to upload PIXI.Texture objects to the GPU.\n *\n * @private\n * @param {PIXI.Renderer} renderer - instance of the webgl renderer\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction uploadBaseTextures(renderer, item)\n{\n if (item instanceof BaseTexture)\n {\n // if the texture already has a GL texture, then the texture has been prepared or rendered\n // before now. If the texture changed, then the changer should be calling texture.update() which\n // reuploads the texture without need for preparing it again\n if (!item._glTextures[renderer.CONTEXT_UID])\n {\n renderer.texture.bind(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to upload PIXI.Graphics to the GPU.\n *\n * @private\n * @param {PIXI.Renderer} renderer - instance of the webgl renderer\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction uploadGraphics(renderer, item)\n{\n if (item instanceof Graphics)\n {\n // if the item is not dirty and already has webgl data, then it got prepared or rendered\n // before now and we shouldn't waste time updating it again\n if (item.dirty || item.clearDirty || !item._webGL[renderer.plugins.graphics.CONTEXT_UID])\n {\n renderer.plugins.graphics.updateGraphics(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find graphics.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Graphics object was found.\n */\nfunction findGraphics(item, queue)\n{\n if (item instanceof Graphics)\n {\n queue.push(item);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * TimeLimiter limits the number of items handled by a {@link PIXI.BasePrepare} to a specified\n * number of milliseconds per frame.\n *\n * @class\n * @memberof PIXI.prepare\n */\nvar TimeLimiter = function TimeLimiter(maxMilliseconds)\n{\n /**\n * The maximum milliseconds that can be spent preparing items each frame.\n * @type {number}\n * @private\n */\n this.maxMilliseconds = maxMilliseconds;\n /**\n * The start time of the current frame.\n * @type {number}\n * @private\n */\n this.frameStart = 0;\n};\n\n/**\n * Resets any counting properties to start fresh on a new frame.\n */\nTimeLimiter.prototype.beginFrame = function beginFrame ()\n{\n this.frameStart = Date.now();\n};\n\n/**\n * Checks to see if another item can be uploaded. This should only be called once per item.\n * @return {boolean} If the item is allowed to be uploaded.\n */\nTimeLimiter.prototype.allowedToUpload = function allowedToUpload ()\n{\n return Date.now() - this.frameStart < this.maxMilliseconds;\n};\n\n/**\n * The prepare namespace provides renderer-specific plugins for pre-rendering DisplayObjects. These plugins are useful for\n * asynchronously preparing and uploading to the GPU assets, textures, graphics waiting to be displayed.\n *\n * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @example\n * // Create a new application\n * const app = new PIXI.Application();\n * document.body.appendChild(app.view);\n *\n * // Don't start rendering right away\n * app.stop();\n *\n * // create a display object\n * const rect = new PIXI.Graphics()\n * .beginFill(0x00ff00)\n * .drawRect(40, 40, 200, 200);\n *\n * // Add to the stage\n * app.stage.addChild(rect);\n *\n * // Don't start rendering until the graphic is uploaded to the GPU\n * app.renderer.plugins.prepare.upload(app.stage, () => {\n * app.start();\n * });\n * @namespace PIXI.prepare\n */\n\nexport { BasePrepare, CountLimiter, Prepare, TimeLimiter };\n//# sourceMappingURL=prepare.es.js.map\n","/*!\n * @pixi/app - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/app is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Container } from '@pixi/display';\nimport { autoDetectRenderer } from '@pixi/core';\n\n/**\n * Convenience class to create a new PIXI application.\n *\n * This class automatically creates the renderer, ticker and root container.\n *\n * @example\n * // Create the application\n * const app = new PIXI.Application();\n *\n * // Add the view to the DOM\n * document.body.appendChild(app.view);\n *\n * // ex, add display objects\n * app.stage.addChild(PIXI.Sprite.from('something.png'));\n *\n * @class\n * @memberof PIXI\n */\nvar Application = function Application(options)\n{\n var this$1 = this;\n\n // The default options\n options = Object.assign({\n forceCanvas: false,\n }, options);\n\n /**\n * WebGL renderer if available, otherwise CanvasRenderer.\n * @member {PIXI.Renderer|PIXI.CanvasRenderer}\n */\n this.renderer = autoDetectRenderer(options);\n\n /**\n * The root display container that's rendered.\n * @member {PIXI.Container}\n */\n this.stage = new Container();\n\n // install plugins here\n Application._plugins.forEach(function (plugin) {\n plugin.init.call(this$1, options);\n });\n};\n\nvar prototypeAccessors = { view: { configurable: true },screen: { configurable: true } };\n\n/**\n * Register a middleware plugin for the application\n * @static\n * @param {PIXI.Application.Plugin} plugin - Plugin being installed\n */\nApplication.registerPlugin = function registerPlugin (plugin)\n{\n Application._plugins.push(plugin);\n};\n\n/**\n * Render the current stage.\n */\nApplication.prototype.render = function render ()\n{\n this.renderer.render(this.stage);\n};\n\n/**\n * Reference to the renderer's canvas element.\n * @member {HTMLCanvasElement}\n * @readonly\n */\nprototypeAccessors.view.get = function ()\n{\n return this.renderer.view;\n};\n\n/**\n * Reference to the renderer's screen rectangle. Its safe to use as `filterArea` or `hitArea` for the whole screen.\n * @member {PIXI.Rectangle}\n * @readonly\n */\nprototypeAccessors.screen.get = function ()\n{\n return this.renderer.screen;\n};\n\n/**\n * Destroy and don't use after this.\n * @param {Boolean} [removeView=false] Automatically remove canvas from DOM.\n * @param {object|boolean} [stageOptions] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [stageOptions.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'stageOptions' will be passed on to those calls.\n * @param {boolean} [stageOptions.texture=false] - Only used for child Sprites if stageOptions.children is set\n * to true. Should it destroy the texture of the child sprite\n * @param {boolean} [stageOptions.baseTexture=false] - Only used for child Sprites if stageOptions.children is set\n * to true. Should it destroy the base texture of the child sprite\n */\nApplication.prototype.destroy = function destroy (removeView, stageOptions)\n{\n var this$1 = this;\n\n // Destroy plugins in the opposite order\n // which they were constructed\n var plugins = Application._plugins.slice(0);\n\n plugins.reverse();\n plugins.forEach(function (plugin) {\n plugin.destroy.call(this$1);\n });\n\n this.stage.destroy(stageOptions);\n this.stage = null;\n\n this.renderer.destroy(removeView);\n this.renderer = null;\n\n this._options = null;\n};\n\nObject.defineProperties( Application.prototype, prototypeAccessors );\n\n/**\n * @memberof PIXI.Application\n * @typedef {object} Plugin\n * @property {function} init - Called when Application is constructed, scoped to Application instance.\n * Passes in `options` as the only argument, which are Application constructor options.\n * @property {function} destroy - Called when destroying Application, scoped to Application instance\n */\n\n/**\n * Collection of installed plugins.\n * @static\n * @private\n * @type {PIXI.Application.Plugin[]}\n */\nApplication._plugins = [];\n\n/**\n * Middleware for for Application's resize functionality\n * @private\n * @class\n */\nvar ResizePlugin = function ResizePlugin () {};\n\nResizePlugin.init = function init (options)\n{\n var this$1 = this;\n\n /**\n * The element or window to resize the application to.\n * @type {Window|HTMLElement}\n * @name resizeTo\n * @memberof PIXI.Application#\n */\n Object.defineProperty(this, 'resizeTo',\n {\n set: function set(dom)\n {\n window.removeEventListener('resize', this.resize);\n this._resizeTo = dom;\n if (dom)\n {\n window.addEventListener('resize', this.resize);\n this.resize();\n }\n },\n get: function get()\n {\n return this._resizeTo;\n },\n });\n\n /**\n * If `resizeTo` is set, calling this function\n * will resize to the width and height of that element.\n * @method PIXI.Application#resize\n */\n this.resize = function () {\n if (this$1._resizeTo)\n {\n // Resize to the window\n if (this$1._resizeTo === window)\n {\n this$1.renderer.resize(\n window.innerWidth,\n window.innerHeight\n );\n }\n // Resize to other HTML entities\n else\n {\n this$1.renderer.resize(\n this$1._resizeTo.clientWidth,\n this$1._resizeTo.clientHeight\n );\n }\n }\n };\n\n // On resize\n this._resizeTo = null;\n this.resizeTo = options.resizeTo || null;\n};\n\n/**\n * Clean up the ticker, scoped to application\n * @static\n * @private\n */\nResizePlugin.destroy = function destroy ()\n{\n this.resizeTo = null;\n this.resize = null;\n};\n\nApplication.registerPlugin(ResizePlugin);\n\nexport { Application };\n//# sourceMappingURL=app.es.js.map\n","'use strict'\n\nmodule.exports = function parseURI (str, opts) {\n opts = opts || {}\n\n var o = {\n key: ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'],\n q: {\n name: 'queryKey',\n parser: /(?:^|&)([^&=]*)=?([^&]*)/g\n },\n parser: {\n strict: /^(?:([^:\\/?#]+):)?(?:\\/\\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\\/?#]*)(?::(\\d*))?))?((((?:[^?#\\/]*\\/)*)([^?#]*))(?:\\?([^#]*))?(?:#(.*))?)/,\n loose: /^(?:(?![^:@]+:[^:@\\/]*@)([^:\\/?#.]+):)?(?:\\/\\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\\/?#]*)(?::(\\d*))?)(((\\/(?:[^?#](?![^?#\\/]*\\.[^?#\\/.]+(?:[?#]|$)))*\\/?)?([^?#\\/]*))(?:\\?([^#]*))?(?:#(.*))?)/\n }\n }\n\n var m = o.parser[opts.strictMode ? 'strict' : 'loose'].exec(str)\n var uri = {}\n var i = 14\n\n while (i--) uri[o.key[i]] = m[i] || ''\n\n uri[o.q.name] = {}\n uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) {\n if ($1) uri[o.q.name][$1] = $2\n })\n\n return uri\n}\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\n\nvar _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }\n\nvar MiniSignalBinding = (function () {\n function MiniSignalBinding(fn, once, thisArg) {\n if (once === undefined) once = false;\n\n _classCallCheck(this, MiniSignalBinding);\n\n this._fn = fn;\n this._once = once;\n this._thisArg = thisArg;\n this._next = this._prev = this._owner = null;\n }\n\n _createClass(MiniSignalBinding, [{\n key: 'detach',\n value: function detach() {\n if (this._owner === null) return false;\n this._owner.detach(this);\n return true;\n }\n }]);\n\n return MiniSignalBinding;\n})();\n\nfunction _addMiniSignalBinding(self, node) {\n if (!self._head) {\n self._head = node;\n self._tail = node;\n } else {\n self._tail._next = node;\n node._prev = self._tail;\n self._tail = node;\n }\n\n node._owner = self;\n\n return node;\n}\n\nvar MiniSignal = (function () {\n function MiniSignal() {\n _classCallCheck(this, MiniSignal);\n\n this._head = this._tail = undefined;\n }\n\n _createClass(MiniSignal, [{\n key: 'handlers',\n value: function handlers() {\n var exists = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0];\n\n var node = this._head;\n\n if (exists) return !!node;\n\n var ee = [];\n\n while (node) {\n ee.push(node);\n node = node._next;\n }\n\n return ee;\n }\n }, {\n key: 'has',\n value: function has(node) {\n if (!(node instanceof MiniSignalBinding)) {\n throw new Error('MiniSignal#has(): First arg must be a MiniSignalBinding object.');\n }\n\n return node._owner === this;\n }\n }, {\n key: 'dispatch',\n value: function dispatch() {\n var node = this._head;\n\n if (!node) return false;\n\n while (node) {\n if (node._once) this.detach(node);\n node._fn.apply(node._thisArg, arguments);\n node = node._next;\n }\n\n return true;\n }\n }, {\n key: 'add',\n value: function add(fn) {\n var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];\n\n if (typeof fn !== 'function') {\n throw new Error('MiniSignal#add(): First arg must be a Function.');\n }\n return _addMiniSignalBinding(this, new MiniSignalBinding(fn, false, thisArg));\n }\n }, {\n key: 'once',\n value: function once(fn) {\n var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];\n\n if (typeof fn !== 'function') {\n throw new Error('MiniSignal#once(): First arg must be a Function.');\n }\n return _addMiniSignalBinding(this, new MiniSignalBinding(fn, true, thisArg));\n }\n }, {\n key: 'detach',\n value: function detach(node) {\n if (!(node instanceof MiniSignalBinding)) {\n throw new Error('MiniSignal#detach(): First arg must be a MiniSignalBinding object.');\n }\n if (node._owner !== this) return this;\n\n if (node._prev) node._prev._next = node._next;\n if (node._next) node._next._prev = node._prev;\n\n if (node === this._head) {\n this._head = node._next;\n if (node._next === null) {\n this._tail = null;\n }\n } else if (node === this._tail) {\n this._tail = node._prev;\n this._tail._next = null;\n }\n\n node._owner = null;\n return this;\n }\n }, {\n key: 'detachAll',\n value: function detachAll() {\n var node = this._head;\n if (!node) return this;\n\n this._head = this._tail = null;\n\n while (node) {\n node._owner = null;\n node = node._next;\n }\n return this;\n }\n }]);\n\n return MiniSignal;\n})();\n\nMiniSignal.MiniSignalBinding = MiniSignalBinding;\n\nexports['default'] = MiniSignal;\nmodule.exports = exports['default'];\n","/*!\n * resource-loader - v3.0.1\n * https://github.com/pixijs/pixi-sound\n * Compiled Tue, 02 Jul 2019 14:06:18 UTC\n *\n * resource-loader is licensed under the MIT license.\n * http://www.opensource.org/licenses/mit-license\n */\nimport parseUri from 'parse-uri';\nimport Signal from 'mini-signals';\n\n/**\n * Smaller version of the async library constructs.\n *\n * @namespace async\n */\n\n/**\n * Noop function\n *\n * @ignore\n * @function\n * @memberof async\n */\nfunction _noop() {}\n/* empty */\n\n/**\n * Iterates an array in series.\n *\n * @memberof async\n * @function eachSeries\n * @param {Array.<*>} array - Array to iterate.\n * @param {function} iterator - Function to call for each element.\n * @param {function} callback - Function to call when done, or on error.\n * @param {boolean} [deferNext=false] - Break synchronous each loop by calling next with a setTimeout of 1.\n */\n\n\nfunction eachSeries(array, iterator, callback, deferNext) {\n var i = 0;\n var len = array.length;\n\n (function next(err) {\n if (err || i === len) {\n if (callback) {\n callback(err);\n }\n\n return;\n }\n\n if (deferNext) {\n setTimeout(function () {\n iterator(array[i++], next);\n }, 1);\n } else {\n iterator(array[i++], next);\n }\n })();\n}\n/**\n * Ensures a function is only called once.\n *\n * @ignore\n * @memberof async\n * @param {function} fn - The function to wrap.\n * @return {function} The wrapping function.\n */\n\nfunction onlyOnce(fn) {\n return function onceWrapper() {\n if (fn === null) {\n throw new Error('Callback was already called.');\n }\n\n var callFn = fn;\n fn = null;\n callFn.apply(this, arguments);\n };\n}\n/**\n * Async queue implementation,\n *\n * @memberof async\n * @function queue\n * @param {function} worker - The worker function to call for each task.\n * @param {number} concurrency - How many workers to run in parrallel.\n * @return {*} The async queue object.\n */\n\n\nfunction queue(worker, concurrency) {\n if (concurrency == null) {\n // eslint-disable-line no-eq-null,eqeqeq\n concurrency = 1;\n } else if (concurrency === 0) {\n throw new Error('Concurrency must not be zero');\n }\n\n var workers = 0;\n var q = {\n _tasks: [],\n concurrency: concurrency,\n saturated: _noop,\n unsaturated: _noop,\n buffer: concurrency / 4,\n empty: _noop,\n drain: _noop,\n error: _noop,\n started: false,\n paused: false,\n push: function push(data, callback) {\n _insert(data, false, callback);\n },\n kill: function kill() {\n workers = 0;\n q.drain = _noop;\n q.started = false;\n q._tasks = [];\n },\n unshift: function unshift(data, callback) {\n _insert(data, true, callback);\n },\n process: function process() {\n while (!q.paused && workers < q.concurrency && q._tasks.length) {\n var task = q._tasks.shift();\n\n if (q._tasks.length === 0) {\n q.empty();\n }\n\n workers += 1;\n\n if (workers === q.concurrency) {\n q.saturated();\n }\n\n worker(task.data, onlyOnce(_next(task)));\n }\n },\n length: function length() {\n return q._tasks.length;\n },\n running: function running() {\n return workers;\n },\n idle: function idle() {\n return q._tasks.length + workers === 0;\n },\n pause: function pause() {\n if (q.paused === true) {\n return;\n }\n\n q.paused = true;\n },\n resume: function resume() {\n if (q.paused === false) {\n return;\n }\n\n q.paused = false; // Need to call q.process once per concurrent\n // worker to preserve full concurrency after pause\n\n for (var w = 1; w <= q.concurrency; w++) {\n q.process();\n }\n }\n };\n\n function _insert(data, insertAtFront, callback) {\n if (callback != null && typeof callback !== 'function') {\n // eslint-disable-line no-eq-null,eqeqeq\n throw new Error('task callback must be a function');\n }\n\n q.started = true;\n\n if (data == null && q.idle()) {\n // eslint-disable-line no-eq-null,eqeqeq\n // call drain immediately if there are no tasks\n setTimeout(function () {\n return q.drain();\n }, 1);\n return;\n }\n\n var item = {\n data: data,\n callback: typeof callback === 'function' ? callback : _noop\n };\n\n if (insertAtFront) {\n q._tasks.unshift(item);\n } else {\n q._tasks.push(item);\n }\n\n setTimeout(function () {\n return q.process();\n }, 1);\n }\n\n function _next(task) {\n return function next() {\n workers -= 1;\n task.callback.apply(task, arguments);\n\n if (arguments[0] != null) {\n // eslint-disable-line no-eq-null,eqeqeq\n q.error(arguments[0], task.data);\n }\n\n if (workers <= q.concurrency - q.buffer) {\n q.unsaturated();\n }\n\n if (q.idle()) {\n q.drain();\n }\n\n q.process();\n };\n }\n\n return q;\n}\n\nvar async = ({\n eachSeries: eachSeries,\n queue: queue\n});\n\n// a simple in-memory cache for resources\nvar cache = {};\n/**\n * A simple in-memory cache for resource.\n *\n * @memberof middleware\n * @function caching\n * @example\n * import { Loader, middleware } from 'resource-loader';\n * const loader = new Loader();\n * loader.use(middleware.caching);\n * @param {Resource} resource - Current Resource\n * @param {function} next - Callback when complete\n */\n\nfunction caching(resource, next) {\n var _this = this;\n\n // if cached, then set data and complete the resource\n if (cache[resource.url]) {\n resource.data = cache[resource.url];\n resource.complete(); // marks resource load complete and stops processing before middlewares\n } // if not cached, wait for complete and store it in the cache.\n else {\n resource.onComplete.once(function () {\n return cache[_this.url] = _this.data;\n });\n }\n\n next();\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nvar useXdr = !!(window.XDomainRequest && !('withCredentials' in new XMLHttpRequest()));\nvar tempAnchor = null; // some status constants\n\nvar STATUS_NONE = 0;\nvar STATUS_OK = 200;\nvar STATUS_EMPTY = 204;\nvar STATUS_IE_BUG_EMPTY = 1223;\nvar STATUS_TYPE_OK = 2; // noop\n\nfunction _noop$1() {}\n/* empty */\n\n/**\n * Manages the state and loading of a resource and all child resources.\n *\n * @class\n */\n\n\nvar Resource =\n/*#__PURE__*/\nfunction () {\n /**\n * Sets the load type to be used for a specific extension.\n *\n * @static\n * @param {string} extname - The extension to set the type for, e.g. \"png\" or \"fnt\"\n * @param {Resource.LOAD_TYPE} loadType - The load type to set it to.\n */\n Resource.setExtensionLoadType = function setExtensionLoadType(extname, loadType) {\n setExtMap(Resource._loadTypeMap, extname, loadType);\n }\n /**\n * Sets the load type to be used for a specific extension.\n *\n * @static\n * @param {string} extname - The extension to set the type for, e.g. \"png\" or \"fnt\"\n * @param {Resource.XHR_RESPONSE_TYPE} xhrType - The xhr type to set it to.\n */\n ;\n\n Resource.setExtensionXhrType = function setExtensionXhrType(extname, xhrType) {\n setExtMap(Resource._xhrTypeMap, extname, xhrType);\n }\n /**\n * @param {string} name - The name of the resource to load.\n * @param {string|string[]} url - The url for this resource, for audio/video loads you can pass\n * an array of sources.\n * @param {object} [options] - The options for the load.\n * @param {string|boolean} [options.crossOrigin] - Is this request cross-origin? Default is to\n * determine automatically.\n * @param {number} [options.timeout=0] - A timeout in milliseconds for the load. If the load takes\n * longer than this time it is cancelled and the load is considered a failure. If this value is\n * set to `0` then there is no explicit timeout.\n * @param {Resource.LOAD_TYPE} [options.loadType=Resource.LOAD_TYPE.XHR] - How should this resource\n * be loaded?\n * @param {Resource.XHR_RESPONSE_TYPE} [options.xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How\n * should the data being loaded be interpreted when using XHR?\n * @param {Resource.IMetadata} [options.metadata] - Extra configuration for middleware and the Resource object.\n */\n ;\n\n function Resource(name, url, options) {\n if (typeof name !== 'string' || typeof url !== 'string') {\n throw new Error('Both name and url are required for constructing a resource.');\n }\n\n options = options || {};\n /**\n * The state flags of this resource.\n *\n * @private\n * @member {number}\n */\n\n this._flags = 0; // set data url flag, needs to be set early for some _determineX checks to work.\n\n this._setFlag(Resource.STATUS_FLAGS.DATA_URL, url.indexOf('data:') === 0);\n /**\n * The name of this resource.\n *\n * @readonly\n * @member {string}\n */\n\n\n this.name = name;\n /**\n * The url used to load this resource.\n *\n * @readonly\n * @member {string}\n */\n\n this.url = url;\n /**\n * The extension used to load this resource.\n *\n * @readonly\n * @member {string}\n */\n\n this.extension = this._getExtension();\n /**\n * The data that was loaded by the resource.\n *\n * @member {any}\n */\n\n this.data = null;\n /**\n * Is this request cross-origin? If unset, determined automatically.\n *\n * @member {string}\n */\n\n this.crossOrigin = options.crossOrigin === true ? 'anonymous' : options.crossOrigin;\n /**\n * A timeout in milliseconds for the load. If the load takes longer than this time\n * it is cancelled and the load is considered a failure. If this value is set to `0`\n * then there is no explicit timeout.\n *\n * @member {number}\n */\n\n this.timeout = options.timeout || 0;\n /**\n * The method of loading to use for this resource.\n *\n * @member {Resource.LOAD_TYPE}\n */\n\n this.loadType = options.loadType || this._determineLoadType();\n /**\n * The type used to load the resource via XHR. If unset, determined automatically.\n *\n * @member {string}\n */\n\n this.xhrType = options.xhrType;\n /**\n * Extra info for middleware, and controlling specifics about how the resource loads.\n *\n * Note that if you pass in a `loadElement`, the Resource class takes ownership of it.\n * Meaning it will modify it as it sees fit.\n *\n * @member {Resource.IMetadata}\n */\n\n this.metadata = options.metadata || {};\n /**\n * The error that occurred while loading (if any).\n *\n * @readonly\n * @member {Error}\n */\n\n this.error = null;\n /**\n * The XHR object that was used to load this resource. This is only set\n * when `loadType` is `Resource.LOAD_TYPE.XHR`.\n *\n * @readonly\n * @member {XMLHttpRequest}\n */\n\n this.xhr = null;\n /**\n * The child resources this resource owns.\n *\n * @readonly\n * @member {Resource[]}\n */\n\n this.children = [];\n /**\n * The resource type.\n *\n * @readonly\n * @member {Resource.TYPE}\n */\n\n this.type = Resource.TYPE.UNKNOWN;\n /**\n * The progress chunk owned by this resource.\n *\n * @readonly\n * @member {number}\n */\n\n this.progressChunk = 0;\n /**\n * The `dequeue` method that will be used a storage place for the async queue dequeue method\n * used privately by the loader.\n *\n * @private\n * @member {function}\n */\n\n this._dequeue = _noop$1;\n /**\n * Used a storage place for the on load binding used privately by the loader.\n *\n * @private\n * @member {function}\n */\n\n this._onLoadBinding = null;\n /**\n * The timer for element loads to check if they timeout.\n *\n * @private\n * @member {number}\n */\n\n this._elementTimer = 0;\n /**\n * The `complete` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundComplete = this.complete.bind(this);\n /**\n * The `_onError` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnError = this._onError.bind(this);\n /**\n * The `_onProgress` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnProgress = this._onProgress.bind(this);\n /**\n * The `_onTimeout` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnTimeout = this._onTimeout.bind(this); // xhr callbacks\n\n this._boundXhrOnError = this._xhrOnError.bind(this);\n this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this);\n this._boundXhrOnAbort = this._xhrOnAbort.bind(this);\n this._boundXhrOnLoad = this._xhrOnLoad.bind(this);\n /**\n * Dispatched when the resource beings to load.\n *\n * The callback looks like {@link Resource.OnStartSignal}.\n *\n * @member {Signal}\n */\n\n this.onStart = new Signal();\n /**\n * Dispatched each time progress of this resource load updates.\n * Not all resources types and loader systems can support this event\n * so sometimes it may not be available. If the resource\n * is being loaded on a modern browser, using XHR, and the remote server\n * properly sets Content-Length headers, then this will be available.\n *\n * The callback looks like {@link Resource.OnProgressSignal}.\n *\n * @member {Signal}\n */\n\n this.onProgress = new Signal();\n /**\n * Dispatched once this resource has loaded, if there was an error it will\n * be in the `error` property.\n *\n * The callback looks like {@link Resource.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onComplete = new Signal();\n /**\n * Dispatched after this resource has had all the *after* middleware run on it.\n *\n * The callback looks like {@link Resource.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onAfterMiddleware = new Signal();\n }\n /**\n * When the resource starts to load.\n *\n * @memberof Resource\n * @callback OnStartSignal\n * @param {Resource} resource - The resource that the event happened on.\n */\n\n /**\n * When the resource reports loading progress.\n *\n * @memberof Resource\n * @callback OnProgressSignal\n * @param {Resource} resource - The resource that the event happened on.\n * @param {number} percentage - The progress of the load in the range [0, 1].\n */\n\n /**\n * When the resource finishes loading.\n *\n * @memberof Resource\n * @callback OnCompleteSignal\n * @param {Resource} resource - The resource that the event happened on.\n */\n\n /**\n * @memberof Resource\n * @typedef {object} IMetadata\n * @property {HTMLImageElement|HTMLAudioElement|HTMLVideoElement} [loadElement=null] - The\n * element to use for loading, instead of creating one.\n * @property {boolean} [skipSource=false] - Skips adding source(s) to the load element. This\n * is useful if you want to pass in a `loadElement` that you already added load sources to.\n * @property {string|string[]} [mimeType] - The mime type to use for the source element\n * of a video/audio elment. If the urls are an array, you can pass this as an array as well\n * where each index is the mime type to use for the corresponding url index.\n */\n\n /**\n * Stores whether or not this url is a data url.\n *\n * @readonly\n * @member {boolean}\n */\n\n\n var _proto = Resource.prototype;\n\n /**\n * Marks the resource as complete.\n *\n */\n _proto.complete = function complete() {\n this._clearEvents();\n\n this._finish();\n }\n /**\n * Aborts the loading of this resource, with an optional message.\n *\n * @param {string} message - The message to use for the error\n */\n ;\n\n _proto.abort = function abort(message) {\n // abort can be called multiple times, ignore subsequent calls.\n if (this.error) {\n return;\n } // store error\n\n\n this.error = new Error(message); // clear events before calling aborts\n\n this._clearEvents(); // abort the actual loading\n\n\n if (this.xhr) {\n this.xhr.abort();\n } else if (this.xdr) {\n this.xdr.abort();\n } else if (this.data) {\n // single source\n if (this.data.src) {\n this.data.src = Resource.EMPTY_GIF;\n } // multi-source\n else {\n while (this.data.firstChild) {\n this.data.removeChild(this.data.firstChild);\n }\n }\n } // done now.\n\n\n this._finish();\n }\n /**\n * Kicks off loading of this resource. This method is asynchronous.\n *\n * @param {Resource.OnCompleteSignal} [cb] - Optional callback to call once the resource is loaded.\n */\n ;\n\n _proto.load = function load(cb) {\n var _this = this;\n\n if (this.isLoading) {\n return;\n }\n\n if (this.isComplete) {\n if (cb) {\n setTimeout(function () {\n return cb(_this);\n }, 1);\n }\n\n return;\n } else if (cb) {\n this.onComplete.once(cb);\n }\n\n this._setFlag(Resource.STATUS_FLAGS.LOADING, true);\n\n this.onStart.dispatch(this); // if unset, determine the value\n\n if (this.crossOrigin === false || typeof this.crossOrigin !== 'string') {\n this.crossOrigin = this._determineCrossOrigin(this.url);\n }\n\n switch (this.loadType) {\n case Resource.LOAD_TYPE.IMAGE:\n this.type = Resource.TYPE.IMAGE;\n\n this._loadElement('image');\n\n break;\n\n case Resource.LOAD_TYPE.AUDIO:\n this.type = Resource.TYPE.AUDIO;\n\n this._loadSourceElement('audio');\n\n break;\n\n case Resource.LOAD_TYPE.VIDEO:\n this.type = Resource.TYPE.VIDEO;\n\n this._loadSourceElement('video');\n\n break;\n\n case Resource.LOAD_TYPE.XHR:\n /* falls through */\n\n default:\n if (useXdr && this.crossOrigin) {\n this._loadXdr();\n } else {\n this._loadXhr();\n }\n\n break;\n }\n }\n /**\n * Checks if the flag is set.\n *\n * @private\n * @param {number} flag - The flag to check.\n * @return {boolean} True if the flag is set.\n */\n ;\n\n _proto._hasFlag = function _hasFlag(flag) {\n return (this._flags & flag) !== 0;\n }\n /**\n * (Un)Sets the flag.\n *\n * @private\n * @param {number} flag - The flag to (un)set.\n * @param {boolean} value - Whether to set or (un)set the flag.\n */\n ;\n\n _proto._setFlag = function _setFlag(flag, value) {\n this._flags = value ? this._flags | flag : this._flags & ~flag;\n }\n /**\n * Clears all the events from the underlying loading source.\n *\n * @private\n */\n ;\n\n _proto._clearEvents = function _clearEvents() {\n clearTimeout(this._elementTimer);\n\n if (this.data && this.data.removeEventListener) {\n this.data.removeEventListener('error', this._boundOnError, false);\n this.data.removeEventListener('load', this._boundComplete, false);\n this.data.removeEventListener('progress', this._boundOnProgress, false);\n this.data.removeEventListener('canplaythrough', this._boundComplete, false);\n }\n\n if (this.xhr) {\n if (this.xhr.removeEventListener) {\n this.xhr.removeEventListener('error', this._boundXhrOnError, false);\n this.xhr.removeEventListener('timeout', this._boundXhrOnTimeout, false);\n this.xhr.removeEventListener('abort', this._boundXhrOnAbort, false);\n this.xhr.removeEventListener('progress', this._boundOnProgress, false);\n this.xhr.removeEventListener('load', this._boundXhrOnLoad, false);\n } else {\n this.xhr.onerror = null;\n this.xhr.ontimeout = null;\n this.xhr.onprogress = null;\n this.xhr.onload = null;\n }\n }\n }\n /**\n * Finalizes the load.\n *\n * @private\n */\n ;\n\n _proto._finish = function _finish() {\n if (this.isComplete) {\n throw new Error('Complete called again for an already completed resource.');\n }\n\n this._setFlag(Resource.STATUS_FLAGS.COMPLETE, true);\n\n this._setFlag(Resource.STATUS_FLAGS.LOADING, false);\n\n this.onComplete.dispatch(this);\n }\n /**\n * Loads this resources using an element that has a single source,\n * like an HTMLImageElement.\n *\n * @private\n * @param {string} type - The type of element to use.\n */\n ;\n\n _proto._loadElement = function _loadElement(type) {\n if (this.metadata.loadElement) {\n this.data = this.metadata.loadElement;\n } else if (type === 'image' && typeof window.Image !== 'undefined') {\n this.data = new Image();\n } else {\n this.data = document.createElement(type);\n }\n\n if (this.crossOrigin) {\n this.data.crossOrigin = this.crossOrigin;\n }\n\n if (!this.metadata.skipSource) {\n this.data.src = this.url;\n }\n\n this.data.addEventListener('error', this._boundOnError, false);\n this.data.addEventListener('load', this._boundComplete, false);\n this.data.addEventListener('progress', this._boundOnProgress, false);\n\n if (this.timeout) {\n this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout);\n }\n }\n /**\n * Loads this resources using an element that has multiple sources,\n * like an HTMLAudioElement or HTMLVideoElement.\n *\n * @private\n * @param {string} type - The type of element to use.\n */\n ;\n\n _proto._loadSourceElement = function _loadSourceElement(type) {\n if (this.metadata.loadElement) {\n this.data = this.metadata.loadElement;\n } else if (type === 'audio' && typeof window.Audio !== 'undefined') {\n this.data = new Audio();\n } else {\n this.data = document.createElement(type);\n }\n\n if (this.data === null) {\n this.abort(\"Unsupported element: \" + type);\n return;\n }\n\n if (this.crossOrigin) {\n this.data.crossOrigin = this.crossOrigin;\n }\n\n if (!this.metadata.skipSource) {\n // support for CocoonJS Canvas+ runtime, lacks document.createElement('source')\n if (navigator.isCocoonJS) {\n this.data.src = Array.isArray(this.url) ? this.url[0] : this.url;\n } else if (Array.isArray(this.url)) {\n var mimeTypes = this.metadata.mimeType;\n\n for (var i = 0; i < this.url.length; ++i) {\n this.data.appendChild(this._createSource(type, this.url[i], Array.isArray(mimeTypes) ? mimeTypes[i] : mimeTypes));\n }\n } else {\n var _mimeTypes = this.metadata.mimeType;\n this.data.appendChild(this._createSource(type, this.url, Array.isArray(_mimeTypes) ? _mimeTypes[0] : _mimeTypes));\n }\n }\n\n this.data.addEventListener('error', this._boundOnError, false);\n this.data.addEventListener('load', this._boundComplete, false);\n this.data.addEventListener('progress', this._boundOnProgress, false);\n this.data.addEventListener('canplaythrough', this._boundComplete, false);\n this.data.load();\n\n if (this.timeout) {\n this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout);\n }\n }\n /**\n * Loads this resources using an XMLHttpRequest.\n *\n * @private\n */\n ;\n\n _proto._loadXhr = function _loadXhr() {\n // if unset, determine the value\n if (typeof this.xhrType !== 'string') {\n this.xhrType = this._determineXhrType();\n }\n\n var xhr = this.xhr = new XMLHttpRequest(); // set the request type and url\n\n xhr.open('GET', this.url, true);\n xhr.timeout = this.timeout; // load json as text and parse it ourselves. We do this because some browsers\n // *cough* safari *cough* can't deal with it.\n\n if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON || this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) {\n xhr.responseType = Resource.XHR_RESPONSE_TYPE.TEXT;\n } else {\n xhr.responseType = this.xhrType;\n }\n\n xhr.addEventListener('error', this._boundXhrOnError, false);\n xhr.addEventListener('timeout', this._boundXhrOnTimeout, false);\n xhr.addEventListener('abort', this._boundXhrOnAbort, false);\n xhr.addEventListener('progress', this._boundOnProgress, false);\n xhr.addEventListener('load', this._boundXhrOnLoad, false);\n xhr.send();\n }\n /**\n * Loads this resources using an XDomainRequest. This is here because we need to support IE9 (gross).\n *\n * @private\n */\n ;\n\n _proto._loadXdr = function _loadXdr() {\n // if unset, determine the value\n if (typeof this.xhrType !== 'string') {\n this.xhrType = this._determineXhrType();\n }\n\n var xdr = this.xhr = new XDomainRequest(); // eslint-disable-line no-undef\n // XDomainRequest has a few quirks. Occasionally it will abort requests\n // A way to avoid this is to make sure ALL callbacks are set even if not used\n // More info here: http://stackoverflow.com/questions/15786966/xdomainrequest-aborts-post-on-ie-9\n\n xdr.timeout = this.timeout || 5000; // XDR needs a timeout value or it breaks in IE9\n\n xdr.onerror = this._boundXhrOnError;\n xdr.ontimeout = this._boundXhrOnTimeout;\n xdr.onprogress = this._boundOnProgress;\n xdr.onload = this._boundXhrOnLoad;\n xdr.open('GET', this.url, true); // Note: The xdr.send() call is wrapped in a timeout to prevent an\n // issue with the interface where some requests are lost if multiple\n // XDomainRequests are being sent at the same time.\n // Some info here: https://github.com/photonstorm/phaser/issues/1248\n\n setTimeout(function () {\n return xdr.send();\n }, 1);\n }\n /**\n * Creates a source used in loading via an element.\n *\n * @private\n * @param {string} type - The element type (video or audio).\n * @param {string} url - The source URL to load from.\n * @param {string} [mime] - The mime type of the video\n * @return {HTMLSourceElement} The source element.\n */\n ;\n\n _proto._createSource = function _createSource(type, url, mime) {\n if (!mime) {\n mime = type + \"/\" + this._getExtension(url);\n }\n\n var source = document.createElement('source');\n source.src = url;\n source.type = mime;\n return source;\n }\n /**\n * Called if a load errors out.\n *\n * @param {Event} event - The error event from the element that emits it.\n * @private\n */\n ;\n\n _proto._onError = function _onError(event) {\n this.abort(\"Failed to load element using: \" + event.target.nodeName);\n }\n /**\n * Called if a load progress event fires for an element or xhr/xdr.\n *\n * @private\n * @param {XMLHttpRequestProgressEvent|Event} event - Progress event.\n */\n ;\n\n _proto._onProgress = function _onProgress(event) {\n if (event && event.lengthComputable) {\n this.onProgress.dispatch(this, event.loaded / event.total);\n }\n }\n /**\n * Called if a timeout event fires for an element.\n *\n * @private\n */\n ;\n\n _proto._onTimeout = function _onTimeout() {\n this.abort(\"Load timed out.\");\n }\n /**\n * Called if an error event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnError = function _xhrOnError() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request failed. Status: \" + xhr.status + \", text: \\\"\" + xhr.statusText + \"\\\"\");\n }\n /**\n * Called if an error event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnTimeout = function _xhrOnTimeout() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request timed out.\");\n }\n /**\n * Called if an abort event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnAbort = function _xhrOnAbort() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request was aborted by the user.\");\n }\n /**\n * Called when data successfully loads from an xhr/xdr request.\n *\n * @private\n * @param {XMLHttpRequestLoadEvent|Event} event - Load event\n */\n ;\n\n _proto._xhrOnLoad = function _xhrOnLoad() {\n var xhr = this.xhr;\n var text = '';\n var status = typeof xhr.status === 'undefined' ? STATUS_OK : xhr.status; // XDR has no `.status`, assume 200.\n // responseText is accessible only if responseType is '' or 'text' and on older browsers\n\n if (xhr.responseType === '' || xhr.responseType === 'text' || typeof xhr.responseType === 'undefined') {\n text = xhr.responseText;\n } // status can be 0 when using the `file://` protocol so we also check if a response is set.\n // If it has a response, we assume 200; otherwise a 0 status code with no contents is an aborted request.\n\n\n if (status === STATUS_NONE && (text.length > 0 || xhr.responseType === Resource.XHR_RESPONSE_TYPE.BUFFER)) {\n status = STATUS_OK;\n } // handle IE9 bug: http://stackoverflow.com/questions/10046972/msie-returns-status-code-of-1223-for-ajax-request\n else if (status === STATUS_IE_BUG_EMPTY) {\n status = STATUS_EMPTY;\n }\n\n var statusType = status / 100 | 0;\n\n if (statusType === STATUS_TYPE_OK) {\n // if text, just return it\n if (this.xhrType === Resource.XHR_RESPONSE_TYPE.TEXT) {\n this.data = text;\n this.type = Resource.TYPE.TEXT;\n } // if json, parse into json object\n else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON) {\n try {\n this.data = JSON.parse(text);\n this.type = Resource.TYPE.JSON;\n } catch (e) {\n this.abort(\"Error trying to parse loaded json: \" + e);\n return;\n }\n } // if xml, parse into an xml document or div element\n else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) {\n try {\n if (window.DOMParser) {\n var domparser = new DOMParser();\n this.data = domparser.parseFromString(text, 'text/xml');\n } else {\n var div = document.createElement('div');\n div.innerHTML = text;\n this.data = div;\n }\n\n this.type = Resource.TYPE.XML;\n } catch (e) {\n this.abort(\"Error trying to parse loaded xml: \" + e);\n return;\n }\n } // other types just return the response\n else {\n this.data = xhr.response || text;\n }\n } else {\n this.abort(\"[\" + xhr.status + \"] \" + xhr.statusText + \": \" + xhr.responseURL);\n return;\n }\n\n this.complete();\n }\n /**\n * Sets the `crossOrigin` property for this resource based on if the url\n * for this resource is cross-origin. If crossOrigin was manually set, this\n * function does nothing.\n *\n * @private\n * @param {string} url - The url to test.\n * @param {object} [loc=window.location] - The location object to test against.\n * @return {string} The crossOrigin value to use (or empty string for none).\n */\n ;\n\n _proto._determineCrossOrigin = function _determineCrossOrigin(url, loc) {\n // data: and javascript: urls are considered same-origin\n if (url.indexOf('data:') === 0) {\n return '';\n } // A sandboxed iframe without the 'allow-same-origin' attribute will have a special\n // origin designed not to match window.location.origin, and will always require\n // crossOrigin requests regardless of whether the location matches.\n\n\n if (window.origin !== window.location.origin) {\n return 'anonymous';\n } // default is window.location\n\n\n loc = loc || window.location;\n\n if (!tempAnchor) {\n tempAnchor = document.createElement('a');\n } // let the browser determine the full href for the url of this resource and then\n // parse with the node url lib, we can't use the properties of the anchor element\n // because they don't work in IE9 :(\n\n\n tempAnchor.href = url;\n url = parseUri(tempAnchor.href, {\n strictMode: true\n });\n var samePort = !url.port && loc.port === '' || url.port === loc.port;\n var protocol = url.protocol ? url.protocol + \":\" : ''; // if cross origin\n\n if (url.host !== loc.hostname || !samePort || protocol !== loc.protocol) {\n return 'anonymous';\n }\n\n return '';\n }\n /**\n * Determines the responseType of an XHR request based on the extension of the\n * resource being loaded.\n *\n * @private\n * @return {Resource.XHR_RESPONSE_TYPE} The responseType to use.\n */\n ;\n\n _proto._determineXhrType = function _determineXhrType() {\n return Resource._xhrTypeMap[this.extension] || Resource.XHR_RESPONSE_TYPE.TEXT;\n }\n /**\n * Determines the loadType of a resource based on the extension of the\n * resource being loaded.\n *\n * @private\n * @return {Resource.LOAD_TYPE} The loadType to use.\n */\n ;\n\n _proto._determineLoadType = function _determineLoadType() {\n return Resource._loadTypeMap[this.extension] || Resource.LOAD_TYPE.XHR;\n }\n /**\n * Extracts the extension (sans '.') of the file being loaded by the resource.\n *\n * @private\n * @return {string} The extension.\n */\n ;\n\n _proto._getExtension = function _getExtension() {\n var url = this.url;\n var ext = '';\n\n if (this.isDataUrl) {\n var slashIndex = url.indexOf('/');\n ext = url.substring(slashIndex + 1, url.indexOf(';', slashIndex));\n } else {\n var queryStart = url.indexOf('?');\n var hashStart = url.indexOf('#');\n var index = Math.min(queryStart > -1 ? queryStart : url.length, hashStart > -1 ? hashStart : url.length);\n url = url.substring(0, index);\n ext = url.substring(url.lastIndexOf('.') + 1);\n }\n\n return ext.toLowerCase();\n }\n /**\n * Determines the mime type of an XHR request based on the responseType of\n * resource being loaded.\n *\n * @private\n * @param {Resource.XHR_RESPONSE_TYPE} type - The type to get a mime type for.\n * @return {string} The mime type to use.\n */\n ;\n\n _proto._getMimeFromXhrType = function _getMimeFromXhrType(type) {\n switch (type) {\n case Resource.XHR_RESPONSE_TYPE.BUFFER:\n return 'application/octet-binary';\n\n case Resource.XHR_RESPONSE_TYPE.BLOB:\n return 'application/blob';\n\n case Resource.XHR_RESPONSE_TYPE.DOCUMENT:\n return 'application/xml';\n\n case Resource.XHR_RESPONSE_TYPE.JSON:\n return 'application/json';\n\n case Resource.XHR_RESPONSE_TYPE.DEFAULT:\n case Resource.XHR_RESPONSE_TYPE.TEXT:\n /* falls through */\n\n default:\n return 'text/plain';\n }\n };\n\n _createClass(Resource, [{\n key: \"isDataUrl\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.DATA_URL);\n }\n /**\n * Describes if this resource has finished loading. Is true when the resource has completely\n * loaded.\n *\n * @readonly\n * @member {boolean}\n */\n\n }, {\n key: \"isComplete\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.COMPLETE);\n }\n /**\n * Describes if this resource is currently loading. Is true when the resource starts loading,\n * and is false again when complete.\n *\n * @readonly\n * @member {boolean}\n */\n\n }, {\n key: \"isLoading\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.LOADING);\n }\n }]);\n\n return Resource;\n}();\n/**\n * The types of resources a resource could represent.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\n\nResource.STATUS_FLAGS = {\n NONE: 0,\n DATA_URL: 1 << 0,\n COMPLETE: 1 << 1,\n LOADING: 1 << 2\n};\n/**\n * The types of resources a resource could represent.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\nResource.TYPE = {\n UNKNOWN: 0,\n JSON: 1,\n XML: 2,\n IMAGE: 3,\n AUDIO: 4,\n VIDEO: 5,\n TEXT: 6\n};\n/**\n * The types of loading a resource can use.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\nResource.LOAD_TYPE = {\n /** Uses XMLHttpRequest to load the resource. */\n XHR: 1,\n\n /** Uses an `Image` object to load the resource. */\n IMAGE: 2,\n\n /** Uses an `Audio` object to load the resource. */\n AUDIO: 3,\n\n /** Uses a `Video` object to load the resource. */\n VIDEO: 4\n};\n/**\n * The XHR ready states, used internally.\n *\n * @static\n * @readonly\n * @enum {string}\n */\n\nResource.XHR_RESPONSE_TYPE = {\n /** string */\n DEFAULT: 'text',\n\n /** ArrayBuffer */\n BUFFER: 'arraybuffer',\n\n /** Blob */\n BLOB: 'blob',\n\n /** Document */\n DOCUMENT: 'document',\n\n /** Object */\n JSON: 'json',\n\n /** String */\n TEXT: 'text'\n};\nResource._loadTypeMap = {\n // images\n gif: Resource.LOAD_TYPE.IMAGE,\n png: Resource.LOAD_TYPE.IMAGE,\n bmp: Resource.LOAD_TYPE.IMAGE,\n jpg: Resource.LOAD_TYPE.IMAGE,\n jpeg: Resource.LOAD_TYPE.IMAGE,\n tif: Resource.LOAD_TYPE.IMAGE,\n tiff: Resource.LOAD_TYPE.IMAGE,\n webp: Resource.LOAD_TYPE.IMAGE,\n tga: Resource.LOAD_TYPE.IMAGE,\n svg: Resource.LOAD_TYPE.IMAGE,\n 'svg+xml': Resource.LOAD_TYPE.IMAGE,\n // for SVG data urls\n // audio\n mp3: Resource.LOAD_TYPE.AUDIO,\n ogg: Resource.LOAD_TYPE.AUDIO,\n wav: Resource.LOAD_TYPE.AUDIO,\n // videos\n mp4: Resource.LOAD_TYPE.VIDEO,\n webm: Resource.LOAD_TYPE.VIDEO\n};\nResource._xhrTypeMap = {\n // xml\n xhtml: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n html: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n htm: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n xml: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n tmx: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n svg: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n // This was added to handle Tiled Tileset XML, but .tsx is also a TypeScript React Component.\n // Since it is way less likely for people to be loading TypeScript files instead of Tiled files,\n // this should probably be fine.\n tsx: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n // images\n gif: Resource.XHR_RESPONSE_TYPE.BLOB,\n png: Resource.XHR_RESPONSE_TYPE.BLOB,\n bmp: Resource.XHR_RESPONSE_TYPE.BLOB,\n jpg: Resource.XHR_RESPONSE_TYPE.BLOB,\n jpeg: Resource.XHR_RESPONSE_TYPE.BLOB,\n tif: Resource.XHR_RESPONSE_TYPE.BLOB,\n tiff: Resource.XHR_RESPONSE_TYPE.BLOB,\n webp: Resource.XHR_RESPONSE_TYPE.BLOB,\n tga: Resource.XHR_RESPONSE_TYPE.BLOB,\n // json\n json: Resource.XHR_RESPONSE_TYPE.JSON,\n // text\n text: Resource.XHR_RESPONSE_TYPE.TEXT,\n txt: Resource.XHR_RESPONSE_TYPE.TEXT,\n // fonts\n ttf: Resource.XHR_RESPONSE_TYPE.BUFFER,\n otf: Resource.XHR_RESPONSE_TYPE.BUFFER\n}; // We can't set the `src` attribute to empty string, so on abort we set it to this 1px transparent gif\n\nResource.EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==';\n/**\n * Quick helper to set a value on one of the extension maps. Ensures there is no\n * dot at the start of the extension.\n *\n * @ignore\n * @param {object} map - The map to set on.\n * @param {string} extname - The extension (or key) to set.\n * @param {number} val - The value to set.\n */\n\nfunction setExtMap(map, extname, val) {\n if (extname && extname.indexOf('.') === 0) {\n extname = extname.substring(1);\n }\n\n if (!extname) {\n return;\n }\n\n map[extname] = val;\n}\n/**\n * Quick helper to get string xhr type.\n *\n * @ignore\n * @param {XMLHttpRequest|XDomainRequest} xhr - The request to check.\n * @return {string} The type.\n */\n\n\nfunction reqType(xhr) {\n return xhr.toString().replace('object ', '');\n}\n\nvar _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\n/**\n * Encodes binary into base64.\n *\n * @function encodeBinary\n * @param {string} input The input data to encode.\n * @returns {string} The encoded base64 string\n */\n\nfunction encodeBinary(input) {\n var output = '';\n var inx = 0;\n\n while (inx < input.length) {\n // Fill byte buffer array\n var bytebuffer = [0, 0, 0];\n var encodedCharIndexes = [0, 0, 0, 0];\n\n for (var jnx = 0; jnx < bytebuffer.length; ++jnx) {\n if (inx < input.length) {\n // throw away high-order byte, as documented at:\n // https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data\n bytebuffer[jnx] = input.charCodeAt(inx++) & 0xff;\n } else {\n bytebuffer[jnx] = 0;\n }\n } // Get each encoded character, 6 bits at a time\n // index 1: first 6 bits\n\n\n encodedCharIndexes[0] = bytebuffer[0] >> 2; // index 2: second 6 bits (2 least significant bits from input byte 1 + 4 most significant bits from byte 2)\n\n encodedCharIndexes[1] = (bytebuffer[0] & 0x3) << 4 | bytebuffer[1] >> 4; // index 3: third 6 bits (4 least significant bits from input byte 2 + 2 most significant bits from byte 3)\n\n encodedCharIndexes[2] = (bytebuffer[1] & 0x0f) << 2 | bytebuffer[2] >> 6; // index 3: forth 6 bits (6 least significant bits from input byte 3)\n\n encodedCharIndexes[3] = bytebuffer[2] & 0x3f; // Determine whether padding happened, and adjust accordingly\n\n var paddingBytes = inx - (input.length - 1);\n\n switch (paddingBytes) {\n case 2:\n // Set last 2 characters to padding char\n encodedCharIndexes[3] = 64;\n encodedCharIndexes[2] = 64;\n break;\n\n case 1:\n // Set last character to padding char\n encodedCharIndexes[3] = 64;\n break;\n\n default:\n break;\n // No padding - proceed\n } // Now we will grab each appropriate character out of our keystring\n // based on our index array and append it to the output string\n\n\n for (var _jnx = 0; _jnx < encodedCharIndexes.length; ++_jnx) {\n output += _keyStr.charAt(encodedCharIndexes[_jnx]);\n }\n }\n\n return output;\n}\n\nvar Url = window.URL || window.webkitURL;\n/**\n * A middleware for transforming XHR loaded Blobs into more useful objects\n *\n * @memberof middleware\n * @function parsing\n * @example\n * import { Loader, middleware } from 'resource-loader';\n * const loader = new Loader();\n * loader.use(middleware.parsing);\n * @param {Resource} resource - Current Resource\n * @param {function} next - Callback when complete\n */\n\nfunction parsing(resource, next) {\n if (!resource.data) {\n next();\n return;\n } // if this was an XHR load of a blob\n\n\n if (resource.xhr && resource.xhrType === Resource.XHR_RESPONSE_TYPE.BLOB) {\n // if there is no blob support we probably got a binary string back\n if (!window.Blob || typeof resource.data === 'string') {\n var type = resource.xhr.getResponseHeader('content-type'); // this is an image, convert the binary string into a data url\n\n if (type && type.indexOf('image') === 0) {\n resource.data = new Image();\n resource.data.src = \"data:\" + type + \";base64,\" + encodeBinary(resource.xhr.responseText);\n resource.type = Resource.TYPE.IMAGE; // wait until the image loads and then callback\n\n resource.data.onload = function () {\n resource.data.onload = null;\n next();\n }; // next will be called on load\n\n\n return;\n }\n } // if content type says this is an image, then we should transform the blob into an Image object\n else if (resource.data.type.indexOf('image') === 0) {\n var src = Url.createObjectURL(resource.data);\n resource.blob = resource.data;\n resource.data = new Image();\n resource.data.src = src;\n resource.type = Resource.TYPE.IMAGE; // cleanup the no longer used blob after the image loads\n // TODO: Is this correct? Will the image be invalid after revoking?\n\n resource.data.onload = function () {\n Url.revokeObjectURL(src);\n resource.data.onload = null;\n next();\n }; // next will be called on load.\n\n\n return;\n }\n }\n\n next();\n}\n\n/**\n * @namespace middleware\n */\n\nvar index = ({\n caching: caching,\n parsing: parsing\n});\n\nvar MAX_PROGRESS = 100;\nvar rgxExtractUrlHash = /(#[\\w-]+)?$/;\n/**\n * Manages the state and loading of multiple resources to load.\n *\n * @class\n */\n\nvar Loader =\n/*#__PURE__*/\nfunction () {\n /**\n * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader.\n * @param {number} [concurrency=10] - The number of resources to load concurrently.\n */\n function Loader(baseUrl, concurrency) {\n var _this = this;\n\n if (baseUrl === void 0) {\n baseUrl = '';\n }\n\n if (concurrency === void 0) {\n concurrency = 10;\n }\n\n /**\n * The base url for all resources loaded by this loader.\n *\n * @member {string}\n */\n this.baseUrl = baseUrl;\n /**\n * The progress percent of the loader going through the queue.\n *\n * @member {number}\n * @default 0\n */\n\n this.progress = 0;\n /**\n * Loading state of the loader, true if it is currently loading resources.\n *\n * @member {boolean}\n * @default false\n */\n\n this.loading = false;\n /**\n * A querystring to append to every URL added to the loader.\n *\n * This should be a valid query string *without* the question-mark (`?`). The loader will\n * also *not* escape values for you. Make sure to escape your parameters with\n * [`encodeURIComponent`](https://mdn.io/encodeURIComponent) before assigning this property.\n *\n * @example\n * const loader = new Loader();\n *\n * loader.defaultQueryString = 'user=me&password=secret';\n *\n * // This will request 'image.png?user=me&password=secret'\n * loader.add('image.png').load();\n *\n * loader.reset();\n *\n * // This will request 'image.png?v=1&user=me&password=secret'\n * loader.add('iamge.png?v=1').load();\n *\n * @member {string}\n * @default ''\n */\n\n this.defaultQueryString = '';\n /**\n * The middleware to run before loading each resource.\n *\n * @private\n * @member {function[]}\n */\n\n this._beforeMiddleware = [];\n /**\n * The middleware to run after loading each resource.\n *\n * @private\n * @member {function[]}\n */\n\n this._afterMiddleware = [];\n /**\n * The tracks the resources we are currently completing parsing for.\n *\n * @private\n * @member {Resource[]}\n */\n\n this._resourcesParsing = [];\n /**\n * The `_loadResource` function bound with this object context.\n *\n * @private\n * @member {function}\n * @param {Resource} r - The resource to load\n * @param {Function} d - The dequeue function\n * @return {undefined}\n */\n\n this._boundLoadResource = function (r, d) {\n return _this._loadResource(r, d);\n };\n /**\n * The resources waiting to be loaded.\n *\n * @private\n * @member {Resource[]}\n */\n\n\n this._queue = queue(this._boundLoadResource, concurrency);\n\n this._queue.pause();\n /**\n * All the resources for this loader keyed by name.\n *\n * @member {object}\n */\n\n\n this.resources = {};\n /**\n * Dispatched once per loaded or errored resource.\n *\n * The callback looks like {@link Loader.OnProgressSignal}.\n *\n * @member {Signal}\n */\n\n this.onProgress = new Signal();\n /**\n * Dispatched once per errored resource.\n *\n * The callback looks like {@link Loader.OnErrorSignal}.\n *\n * @member {Signal}\n */\n\n this.onError = new Signal();\n /**\n * Dispatched once per loaded resource.\n *\n * The callback looks like {@link Loader.OnLoadSignal}.\n *\n * @member {Signal}\n */\n\n this.onLoad = new Signal();\n /**\n * Dispatched when the loader begins to process the queue.\n *\n * The callback looks like {@link Loader.OnStartSignal}.\n *\n * @member {Signal}\n */\n\n this.onStart = new Signal();\n /**\n * Dispatched when the queued resources all load.\n *\n * The callback looks like {@link Loader.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onComplete = new Signal(); // Add default before middleware\n\n for (var i = 0; i < Loader._defaultBeforeMiddleware.length; ++i) {\n this.pre(Loader._defaultBeforeMiddleware[i]);\n } // Add default after middleware\n\n\n for (var _i = 0; _i < Loader._defaultAfterMiddleware.length; ++_i) {\n this.use(Loader._defaultAfterMiddleware[_i]);\n }\n }\n /**\n * When the progress changes the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnProgressSignal\n * @param {Loader} loader - The loader the progress is advancing on.\n * @param {Resource} resource - The resource that has completed or failed to cause the progress to advance.\n */\n\n /**\n * When an error occurrs the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnErrorSignal\n * @param {Loader} loader - The loader the error happened in.\n * @param {Resource} resource - The resource that caused the error.\n */\n\n /**\n * When a load completes the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnLoadSignal\n * @param {Loader} loader - The loader that laoded the resource.\n * @param {Resource} resource - The resource that has completed loading.\n */\n\n /**\n * When the loader starts loading resources it dispatches this callback.\n *\n * @memberof Loader\n * @callback OnStartSignal\n * @param {Loader} loader - The loader that has started loading resources.\n */\n\n /**\n * When the loader completes loading resources it dispatches this callback.\n *\n * @memberof Loader\n * @callback OnCompleteSignal\n * @param {Loader} loader - The loader that has finished loading resources.\n */\n\n /**\n * Options for a call to `.add()`.\n *\n * @see Loader#add\n *\n * @typedef {object} IAddOptions\n * @property {string} [name] - The name of the resource to load, if not passed the url is used.\n * @property {string} [key] - Alias for `name`.\n * @property {string} [url] - The url for this resource, relative to the baseUrl of this loader.\n * @property {string|boolean} [crossOrigin] - Is this request cross-origin? Default is to\n * determine automatically.\n * @property {number} [timeout=0] - A timeout in milliseconds for the load. If the load takes\n * longer than this time it is cancelled and the load is considered a failure. If this value is\n * set to `0` then there is no explicit timeout.\n * @property {Resource.LOAD_TYPE} [loadType=Resource.LOAD_TYPE.XHR] - How should this resource\n * be loaded?\n * @property {Resource.XHR_RESPONSE_TYPE} [xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How\n * should the data being loaded be interpreted when using XHR?\n * @property {Resource.OnCompleteSignal} [onComplete] - Callback to add an an onComplete signal istener.\n * @property {Resource.OnCompleteSignal} [callback] - Alias for `onComplete`.\n * @property {Resource.IMetadata} [metadata] - Extra configuration for middleware and the Resource object.\n */\n\n /* eslint-disable require-jsdoc,valid-jsdoc */\n\n /**\n * Adds a resource (or multiple resources) to the loader queue.\n *\n * This function can take a wide variety of different parameters. The only thing that is always\n * required the url to load. All the following will work:\n *\n * ```js\n * loader\n * // normal param syntax\n * .add('key', 'http://...', function () {})\n * .add('http://...', function () {})\n * .add('http://...')\n *\n * // object syntax\n * .add({\n * name: 'key2',\n * url: 'http://...'\n * }, function () {})\n * .add({\n * url: 'http://...'\n * }, function () {})\n * .add({\n * name: 'key3',\n * url: 'http://...'\n * onComplete: function () {}\n * })\n * .add({\n * url: 'https://...',\n * onComplete: function () {},\n * crossOrigin: true\n * })\n *\n * // you can also pass an array of objects or urls or both\n * .add([\n * { name: 'key4', url: 'http://...', onComplete: function () {} },\n * { url: 'http://...', onComplete: function () {} },\n * 'http://...'\n * ])\n *\n * // and you can use both params and options\n * .add('key', 'http://...', { crossOrigin: true }, function () {})\n * .add('http://...', { crossOrigin: true }, function () {});\n * ```\n *\n * @function\n * @variation 1\n * @param {string} name - The name of the resource to load.\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 2\n * @param {string} name - The name of the resource to load.\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {IAddOptions} [options] - The options for the load.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 3\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 4\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {IAddOptions} [options] - The options for the load.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 5\n * @param {IAddOptions} options - The options for the load. This object must contain a `url` property.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 6\n * @param {Array} resources - An array of resources to load, where each is\n * either an object with the options or a string url. If you pass an object, it must contain a `url` property.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n\n var _proto = Loader.prototype;\n\n _proto.add = function add(name, url, options, cb) {\n // special case of an array of objects or urls\n if (Array.isArray(name)) {\n for (var i = 0; i < name.length; ++i) {\n this.add(name[i]);\n }\n\n return this;\n } // if an object is passed instead of params\n\n\n if (typeof name === 'object') {\n cb = url || name.callback || name.onComplete;\n options = name;\n url = name.url;\n name = name.name || name.key || name.url;\n } // case where no name is passed shift all args over by one.\n\n\n if (typeof url !== 'string') {\n cb = options;\n options = url;\n url = name;\n } // now that we shifted make sure we have a proper url.\n\n\n if (typeof url !== 'string') {\n throw new Error('No url passed to add resource to loader.');\n } // options are optional so people might pass a function and no options\n\n\n if (typeof options === 'function') {\n cb = options;\n options = null;\n } // if loading already you can only add resources that have a parent.\n\n\n if (this.loading && (!options || !options.parentResource)) {\n throw new Error('Cannot add resources while the loader is running.');\n } // check if resource already exists.\n\n\n if (this.resources[name]) {\n throw new Error(\"Resource named \\\"\" + name + \"\\\" already exists.\");\n } // add base url if this isn't an absolute url\n\n\n url = this._prepareUrl(url); // create the store the resource\n\n this.resources[name] = new Resource(name, url, options);\n\n if (typeof cb === 'function') {\n this.resources[name].onAfterMiddleware.once(cb);\n } // if actively loading, make sure to adjust progress chunks for that parent and its children\n\n\n if (this.loading) {\n var parent = options.parentResource;\n var incompleteChildren = [];\n\n for (var _i2 = 0; _i2 < parent.children.length; ++_i2) {\n if (!parent.children[_i2].isComplete) {\n incompleteChildren.push(parent.children[_i2]);\n }\n }\n\n var fullChunk = parent.progressChunk * (incompleteChildren.length + 1); // +1 for parent\n\n var eachChunk = fullChunk / (incompleteChildren.length + 2); // +2 for parent & new child\n\n parent.children.push(this.resources[name]);\n parent.progressChunk = eachChunk;\n\n for (var _i3 = 0; _i3 < incompleteChildren.length; ++_i3) {\n incompleteChildren[_i3].progressChunk = eachChunk;\n }\n\n this.resources[name].progressChunk = eachChunk;\n } // add the resource to the queue\n\n\n this._queue.push(this.resources[name]);\n\n return this;\n }\n /* eslint-enable require-jsdoc,valid-jsdoc */\n\n /**\n * Sets up a middleware function that will run *before* the\n * resource is loaded.\n *\n * @param {function} fn - The middleware function to register.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.pre = function pre(fn) {\n this._beforeMiddleware.push(fn);\n\n return this;\n }\n /**\n * Sets up a middleware function that will run *after* the\n * resource is loaded.\n *\n * @param {function} fn - The middleware function to register.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.use = function use(fn) {\n this._afterMiddleware.push(fn);\n\n return this;\n }\n /**\n * Resets the queue of the loader to prepare for a new load.\n *\n * @return {this} Returns itself.\n */\n ;\n\n _proto.reset = function reset() {\n this.progress = 0;\n this.loading = false;\n\n this._queue.kill();\n\n this._queue.pause(); // abort all resource loads\n\n\n for (var k in this.resources) {\n var res = this.resources[k];\n\n if (res._onLoadBinding) {\n res._onLoadBinding.detach();\n }\n\n if (res.isLoading) {\n res.abort();\n }\n }\n\n this.resources = {};\n return this;\n }\n /**\n * Starts loading the queued resources.\n *\n * @param {function} [cb] - Optional callback that will be bound to the `complete` event.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.load = function load(cb) {\n // register complete callback if they pass one\n if (typeof cb === 'function') {\n this.onComplete.once(cb);\n } // if the queue has already started we are done here\n\n\n if (this.loading) {\n return this;\n }\n\n if (this._queue.idle()) {\n this._onStart();\n\n this._onComplete();\n } else {\n // distribute progress chunks\n var numTasks = this._queue._tasks.length;\n var chunk = MAX_PROGRESS / numTasks;\n\n for (var i = 0; i < this._queue._tasks.length; ++i) {\n this._queue._tasks[i].data.progressChunk = chunk;\n } // notify we are starting\n\n\n this._onStart(); // start loading\n\n\n this._queue.resume();\n }\n\n return this;\n }\n /**\n * The number of resources to load concurrently.\n *\n * @member {number}\n * @default 10\n */\n ;\n\n /**\n * Prepares a url for usage based on the configuration of this object\n *\n * @private\n * @param {string} url - The url to prepare.\n * @return {string} The prepared url.\n */\n _proto._prepareUrl = function _prepareUrl(url) {\n var parsedUrl = parseUri(url, {\n strictMode: true\n });\n var result; // absolute url, just use it as is.\n\n if (parsedUrl.protocol || !parsedUrl.path || url.indexOf('//') === 0) {\n result = url;\n } // if baseUrl doesn't end in slash and url doesn't start with slash, then add a slash inbetween\n else if (this.baseUrl.length && this.baseUrl.lastIndexOf('/') !== this.baseUrl.length - 1 && url.charAt(0) !== '/') {\n result = this.baseUrl + \"/\" + url;\n } else {\n result = this.baseUrl + url;\n } // if we need to add a default querystring, there is a bit more work\n\n\n if (this.defaultQueryString) {\n var hash = rgxExtractUrlHash.exec(result)[0];\n result = result.substr(0, result.length - hash.length);\n\n if (result.indexOf('?') !== -1) {\n result += \"&\" + this.defaultQueryString;\n } else {\n result += \"?\" + this.defaultQueryString;\n }\n\n result += hash;\n }\n\n return result;\n }\n /**\n * Loads a single resource.\n *\n * @private\n * @param {Resource} resource - The resource to load.\n * @param {function} dequeue - The function to call when we need to dequeue this item.\n */\n ;\n\n _proto._loadResource = function _loadResource(resource, dequeue) {\n var _this2 = this;\n\n resource._dequeue = dequeue; // run before middleware\n\n eachSeries(this._beforeMiddleware, function (fn, next) {\n fn.call(_this2, resource, function () {\n // if the before middleware marks the resource as complete,\n // break and don't process any more before middleware\n next(resource.isComplete ? {} : null);\n });\n }, function () {\n if (resource.isComplete) {\n _this2._onLoad(resource);\n } else {\n resource._onLoadBinding = resource.onComplete.once(_this2._onLoad, _this2);\n resource.load();\n }\n }, true);\n }\n /**\n * Called once loading has started.\n *\n * @private\n */\n ;\n\n _proto._onStart = function _onStart() {\n this.progress = 0;\n this.loading = true;\n this.onStart.dispatch(this);\n }\n /**\n * Called once each resource has loaded.\n *\n * @private\n */\n ;\n\n _proto._onComplete = function _onComplete() {\n this.progress = MAX_PROGRESS;\n this.loading = false;\n this.onComplete.dispatch(this, this.resources);\n }\n /**\n * Called each time a resources is loaded.\n *\n * @private\n * @param {Resource} resource - The resource that was loaded\n */\n ;\n\n _proto._onLoad = function _onLoad(resource) {\n var _this3 = this;\n\n resource._onLoadBinding = null; // remove this resource from the async queue, and add it to our list of resources that are being parsed\n\n this._resourcesParsing.push(resource);\n\n resource._dequeue(); // run all the after middleware for this resource\n\n\n eachSeries(this._afterMiddleware, function (fn, next) {\n fn.call(_this3, resource, next);\n }, function () {\n resource.onAfterMiddleware.dispatch(resource);\n _this3.progress = Math.min(MAX_PROGRESS, _this3.progress + resource.progressChunk);\n\n _this3.onProgress.dispatch(_this3, resource);\n\n if (resource.error) {\n _this3.onError.dispatch(resource.error, _this3, resource);\n } else {\n _this3.onLoad.dispatch(_this3, resource);\n }\n\n _this3._resourcesParsing.splice(_this3._resourcesParsing.indexOf(resource), 1); // do completion check\n\n\n if (_this3._queue.idle() && _this3._resourcesParsing.length === 0) {\n _this3._onComplete();\n }\n }, true);\n };\n\n _createClass(Loader, [{\n key: \"concurrency\",\n get: function get() {\n return this._queue.concurrency;\n } // eslint-disable-next-line require-jsdoc\n ,\n set: function set(concurrency) {\n this._queue.concurrency = concurrency;\n }\n }]);\n\n return Loader;\n}();\n/**\n * A default array of middleware to run before loading each resource.\n * Each of these middlewares are added to any new Loader instances when they are created.\n *\n * @private\n * @member {function[]}\n */\n\n\nLoader._defaultBeforeMiddleware = [];\n/**\n * A default array of middleware to run after loading each resource.\n * Each of these middlewares are added to any new Loader instances when they are created.\n *\n * @private\n * @member {function[]}\n */\n\nLoader._defaultAfterMiddleware = [];\n/**\n * Sets up a middleware function that will run *before* the\n * resource is loaded.\n *\n * @static\n * @param {function} fn - The middleware function to register.\n * @return {Loader} Returns itself.\n */\n\nLoader.pre = function LoaderPreStatic(fn) {\n Loader._defaultBeforeMiddleware.push(fn);\n\n return Loader;\n};\n/**\n * Sets up a middleware function that will run *after* the\n * resource is loaded.\n *\n * @static\n * @param {function} fn - The middleware function to register.\n * @return {Loader} Returns itself.\n */\n\n\nLoader.use = function LoaderUseStatic(fn) {\n Loader._defaultAfterMiddleware.push(fn);\n\n return Loader;\n};\n\nexport { Loader, Resource, async, encodeBinary, index as middleware };\n//# sourceMappingURL=resource-loader.esm.js.map\n","/*!\n * @pixi/loaders - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/loaders is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Resource, Loader as Loader$1, middleware } from 'resource-loader';\nimport { EventEmitter } from '@pixi/utils';\nimport { Texture } from '@pixi/core';\n\n/**\n * Loader plugin for handling Texture resources.\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar TextureLoader = function TextureLoader () {};\n\nTextureLoader.use = function use (resource, next)\n{\n // create a new texture if the data is an Image object\n if (resource.data && resource.type === Resource.TYPE.IMAGE)\n {\n resource.texture = Texture.fromLoader(\n resource.data,\n resource.url,\n resource.name\n );\n }\n next();\n};\n\n/**\n * The new loader, extends Resource Loader by Chad Engler: https://github.com/englercj/resource-loader\n *\n * ```js\n * const loader = PIXI.Loader.shared; // PixiJS exposes a premade instance for you to use.\n * //or\n * const loader = new PIXI.Loader(); // you can also create your own if you want\n *\n * const sprites = {};\n *\n * // Chainable `add` to enqueue a resource\n * loader.add('bunny', 'data/bunny.png')\n * .add('spaceship', 'assets/spritesheet.json');\n * loader.add('scoreFont', 'assets/score.fnt');\n *\n * // Chainable `pre` to add a middleware that runs for each resource, *before* loading that resource.\n * // This is useful to implement custom caching modules (using filesystem, indexeddb, memory, etc).\n * loader.pre(cachingMiddleware);\n *\n * // Chainable `use` to add a middleware that runs for each resource, *after* loading that resource.\n * // This is useful to implement custom parsing modules (like spritesheet parsers, spine parser, etc).\n * loader.use(parsingMiddleware);\n *\n * // The `load` method loads the queue of resources, and calls the passed in callback called once all\n * // resources have loaded.\n * loader.load((loader, resources) => {\n * // resources is an object where the key is the name of the resource loaded and the value is the resource object.\n * // They have a couple default properties:\n * // - `url`: The URL that the resource was loaded from\n * // - `error`: The error that happened when trying to load (if any)\n * // - `data`: The raw data that was loaded\n * // also may contain other properties based on the middleware that runs.\n * sprites.bunny = new PIXI.TilingSprite(resources.bunny.texture);\n * sprites.spaceship = new PIXI.TilingSprite(resources.spaceship.texture);\n * sprites.scoreFont = new PIXI.TilingSprite(resources.scoreFont.texture);\n * });\n *\n * // throughout the process multiple signals can be dispatched.\n * loader.onProgress.add(() => {}); // called once per loaded/errored file\n * loader.onError.add(() => {}); // called once per errored file\n * loader.onLoad.add(() => {}); // called once per loaded file\n * loader.onComplete.add(() => {}); // called once when the queued resources all load.\n * ```\n *\n * @see https://github.com/englercj/resource-loader\n *\n * @class Loader\n * @memberof PIXI\n * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader.\n * @param {number} [concurrency=10] - The number of resources to load concurrently.\n */\nvar Loader = /*@__PURE__*/(function (ResourceLoader) {\n function Loader(baseUrl, concurrency)\n {\n var this$1 = this;\n\n ResourceLoader.call(this, baseUrl, concurrency);\n EventEmitter.call(this);\n\n for (var i = 0; i < Loader._plugins.length; ++i)\n {\n var plugin = Loader._plugins[i];\n var pre = plugin.pre;\n var use = plugin.use;\n\n if (pre)\n {\n this.pre(pre);\n }\n\n if (use)\n {\n this.use(use);\n }\n }\n\n // Compat layer, translate the new v2 signals into old v1 events.\n this.onStart.add(function (l) { return this$1.emit('start', l); });\n this.onProgress.add(function (l, r) { return this$1.emit('progress', l, r); });\n this.onError.add(function (e, l, r) { return this$1.emit('error', e, l, r); });\n this.onLoad.add(function (l, r) { return this$1.emit('load', l, r); });\n this.onComplete.add(function (l, r) { return this$1.emit('complete', l, r); });\n\n /**\n * If this loader cannot be destroyed.\n * @member {boolean}\n * @default false\n * @private\n */\n this._protected = false;\n }\n\n if ( ResourceLoader ) Loader.__proto__ = ResourceLoader;\n Loader.prototype = Object.create( ResourceLoader && ResourceLoader.prototype );\n Loader.prototype.constructor = Loader;\n\n var staticAccessors = { shared: { configurable: true } };\n\n /**\n * Destroy the loader, removes references.\n * @private\n */\n Loader.prototype.destroy = function destroy ()\n {\n if (!this._protected)\n {\n this.removeAllListeners();\n this.reset();\n }\n };\n\n /**\n * A premade instance of the loader that can be used to load resources.\n * @name shared\n * @type {PIXI.Loader}\n * @static\n * @memberof PIXI.Loader\n */\n staticAccessors.shared.get = function ()\n {\n var shared = Loader._shared;\n\n if (!shared)\n {\n shared = new Loader();\n shared._protected = true;\n Loader._shared = shared;\n }\n\n return shared;\n };\n\n Object.defineProperties( Loader, staticAccessors );\n\n return Loader;\n}(Loader$1));\n\n// Copy EE3 prototype (mixin)\nObject.assign(Loader.prototype, EventEmitter.prototype);\n\n/**\n * Collection of all installed `use` middleware for Loader.\n *\n * @static\n * @member {Array} _plugins\n * @memberof PIXI.Loader\n * @private\n */\nLoader._plugins = [];\n\n/**\n * Adds a Loader plugin for the global shared loader and all\n * new Loader instances created.\n *\n * @static\n * @method registerPlugin\n * @memberof PIXI.Loader\n * @param {PIXI.ILoaderPlugin} plugin - The plugin to add\n * @return {PIXI.Loader} Reference to PIXI.Loader for chaining\n */\nLoader.registerPlugin = function registerPlugin(plugin)\n{\n Loader._plugins.push(plugin);\n\n if (plugin.add)\n {\n plugin.add();\n }\n\n return Loader;\n};\n\n// parse any blob into more usable objects (e.g. Image)\nLoader.registerPlugin({ use: middleware.parsing });\n\n// parse any Image objects into textures\nLoader.registerPlugin(TextureLoader);\n\n/**\n * Plugin to be installed for handling specific Loader resources.\n *\n * @memberof PIXI\n * @typedef ILoaderPlugin\n * @property {function} [add] - Function to call immediate after registering plugin.\n * @property {PIXI.Loader.loaderMiddleware} [pre] - Middleware function to run before load, the\n * arguments for this are `(resource, next)`\n * @property {PIXI.Loader.loaderMiddleware} [use] - Middleware function to run after load, the\n * arguments for this are `(resource, next)`\n */\n\n/**\n * @memberof PIXI.Loader\n * @callback loaderMiddleware\n * @param {PIXI.LoaderResource} resource\n * @param {function} next\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onStart\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onProgress\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onError\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onLoad\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onComplete\n */\n\n/**\n * Application plugin for supporting loader option. Installing the LoaderPlugin\n * is not necessary if using **pixi.js** or **pixi.js-legacy**.\n * @example\n * import {AppLoaderPlugin} from '@pixi/loaders';\n * import {Application} from '@pixi/app';\n * Application.registerPlugin(AppLoaderPlugin);\n * @class\n * @memberof PIXI\n */\nvar AppLoaderPlugin = function AppLoaderPlugin () {};\n\nAppLoaderPlugin.init = function init (options)\n{\n options = Object.assign({\n sharedLoader: false,\n }, options);\n\n /**\n * Loader instance to help with asset loading.\n * @name PIXI.Application#loader\n * @type {PIXI.Loader}\n * @readonly\n */\n this.loader = options.sharedLoader ? Loader.shared : new Loader();\n};\n\n/**\n * Called when application destroyed\n * @private\n */\nAppLoaderPlugin.destroy = function destroy ()\n{\n if (this.loader)\n {\n this.loader.destroy();\n this.loader = null;\n }\n};\n\n/**\n * Reference to **{@link https://github.com/englercj/resource-loader\n * resource-loader}**'s Resource class.\n * @see http://englercj.github.io/resource-loader/Resource.html\n * @class LoaderResource\n * @memberof PIXI\n */\nvar LoaderResource = Resource;\n\nexport { AppLoaderPlugin, Loader, LoaderResource, TextureLoader };\n//# sourceMappingURL=loaders.es.js.map\n","/*!\n * @pixi/particles - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/particles is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { BLEND_MODES, TYPES } from '@pixi/constants';\nimport { hex2rgb, createIndicesForQuads, correctBlendMode, premultiplyRgba, premultiplyTint } from '@pixi/utils';\nimport { Container } from '@pixi/display';\nimport { Geometry, Buffer, ObjectRenderer, Shader } from '@pixi/core';\nimport { Matrix } from '@pixi/math';\n\n/**\n * The ParticleContainer class is a really fast version of the Container built solely for speed,\n * so use when you need a lot of sprites or particles.\n *\n * The tradeoff of the ParticleContainer is that most advanced functionality will not work.\n * ParticleContainer implements the basic object transform (position, scale, rotation)\n * and some advanced functionality like tint (as of v4.5.6).\n *\n * Other more advanced functionality like masking, children, filters, etc will not work on sprites in this batch.\n *\n * It's extremely easy to use:\n * ```js\n * let container = new ParticleContainer();\n *\n * for (let i = 0; i < 100; ++i)\n * {\n * let sprite = PIXI.Sprite.from(\"myImage.png\");\n * container.addChild(sprite);\n * }\n * ```\n *\n * And here you have a hundred sprites that will be rendered at the speed of light.\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar ParticleContainer = /*@__PURE__*/(function (Container) {\n function ParticleContainer(maxSize, properties, batchSize, autoResize)\n {\n if ( maxSize === void 0 ) maxSize = 1500;\n if ( batchSize === void 0 ) batchSize = 16384;\n if ( autoResize === void 0 ) autoResize = false;\n\n Container.call(this);\n\n // Making sure the batch size is valid\n // 65535 is max vertex index in the index buffer (see ParticleRenderer)\n // so max number of particles is 65536 / 4 = 16384\n var maxBatchSize = 16384;\n\n if (batchSize > maxBatchSize)\n {\n batchSize = maxBatchSize;\n }\n\n /**\n * Set properties to be dynamic (true) / static (false)\n *\n * @member {boolean[]}\n * @private\n */\n this._properties = [false, true, false, false, false];\n\n /**\n * @member {number}\n * @private\n */\n this._maxSize = maxSize;\n\n /**\n * @member {number}\n * @private\n */\n this._batchSize = batchSize;\n\n /**\n * @member {Array}\n * @private\n */\n this._buffers = null;\n\n /**\n * for every batch stores _updateID corresponding to the last change in that batch\n * @member {number[]}\n * @private\n */\n this._bufferUpdateIDs = [];\n\n /**\n * when child inserted, removed or changes position this number goes up\n * @member {number[]}\n * @private\n */\n this._updateID = 0;\n\n /**\n * @member {boolean}\n *\n */\n this.interactiveChildren = false;\n\n /**\n * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL`\n * to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * If true, container allocates more batches in case there are more than `maxSize` particles.\n * @member {boolean}\n * @default false\n */\n this.autoResize = autoResize;\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * Default to true here as performance is usually the priority for particles.\n *\n * @member {boolean}\n * @default true\n */\n this.roundPixels = true;\n\n /**\n * The texture used to render the children.\n *\n * @readonly\n * @member {PIXI.BaseTexture}\n */\n this.baseTexture = null;\n\n this.setProperties(properties);\n\n /**\n * The tint applied to the container.\n * This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @private\n * @member {number}\n * @default 0xFFFFFF\n */\n this._tint = 0;\n this.tintRgb = new Float32Array(4);\n this.tint = 0xFFFFFF;\n }\n\n if ( Container ) ParticleContainer.__proto__ = Container;\n ParticleContainer.prototype = Object.create( Container && Container.prototype );\n ParticleContainer.prototype.constructor = ParticleContainer;\n\n var prototypeAccessors = { tint: { configurable: true } };\n\n /**\n * Sets the private properties array to dynamic / static based on the passed properties object\n *\n * @param {object} properties - The properties to be uploaded\n */\n ParticleContainer.prototype.setProperties = function setProperties (properties)\n {\n if (properties)\n {\n this._properties[0] = 'vertices' in properties || 'scale' in properties\n ? !!properties.vertices || !!properties.scale : this._properties[0];\n this._properties[1] = 'position' in properties ? !!properties.position : this._properties[1];\n this._properties[2] = 'rotation' in properties ? !!properties.rotation : this._properties[2];\n this._properties[3] = 'uvs' in properties ? !!properties.uvs : this._properties[3];\n this._properties[4] = 'tint' in properties || 'alpha' in properties\n ? !!properties.tint || !!properties.alpha : this._properties[4];\n }\n };\n\n /**\n * Updates the object transform for rendering\n *\n * @private\n */\n ParticleContainer.prototype.updateTransform = function updateTransform ()\n {\n // TODO don't need to!\n this.displayObjectUpdateTransform();\n // PIXI.Container.prototype.updateTransform.call( this );\n };\n\n /**\n * The tint applied to the container. This is a hex value.\n * A value of 0xFFFFFF will remove any tint effect.\n ** IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer.\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._tint = value;\n hex2rgb(value, this.tintRgb);\n };\n\n /**\n * Renders the container using the WebGL renderer\n *\n * @private\n * @param {PIXI.Renderer} renderer - The webgl renderer\n */\n ParticleContainer.prototype.render = function render (renderer)\n {\n var this$1 = this;\n\n if (!this.visible || this.worldAlpha <= 0 || !this.children.length || !this.renderable)\n {\n return;\n }\n\n if (!this.baseTexture)\n {\n this.baseTexture = this.children[0]._texture.baseTexture;\n if (!this.baseTexture.valid)\n {\n this.baseTexture.once('update', function () { return this$1.onChildrenChange(0); });\n }\n }\n\n renderer.batch.setObjectRenderer(renderer.plugins.particle);\n renderer.plugins.particle.render(this);\n };\n\n /**\n * Set the flag that static data should be updated to true\n *\n * @private\n * @param {number} smallestChildIndex - The smallest child index\n */\n ParticleContainer.prototype.onChildrenChange = function onChildrenChange (smallestChildIndex)\n {\n var bufferIndex = Math.floor(smallestChildIndex / this._batchSize);\n\n while (this._bufferUpdateIDs.length < bufferIndex)\n {\n this._bufferUpdateIDs.push(0);\n }\n this._bufferUpdateIDs[bufferIndex] = ++this._updateID;\n };\n\n ParticleContainer.prototype.dispose = function dispose ()\n {\n if (this._buffers)\n {\n for (var i = 0; i < this._buffers.length; ++i)\n {\n this._buffers[i].destroy();\n }\n\n this._buffers = null;\n }\n };\n\n /**\n * Destroys the container\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their\n * destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n ParticleContainer.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.dispose();\n\n this._properties = null;\n this._buffers = null;\n this._bufferUpdateIDs = null;\n };\n\n Object.defineProperties( ParticleContainer.prototype, prototypeAccessors );\n\n return ParticleContainer;\n}(Container));\n\n/**\n * @author Mat Groves\n *\n * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/\n * for creating the original PixiJS version!\n * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that\n * they now share 4 bytes on the vertex buffer\n *\n * Heavily inspired by LibGDX's ParticleBuffer:\n * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleBuffer.java\n */\n\n/**\n * The particle buffer manages the static and dynamic buffers for a particle container.\n *\n * @class\n * @private\n * @memberof PIXI\n */\nvar ParticleBuffer = function ParticleBuffer(properties, dynamicPropertyFlags, size)\n{\n this.geometry = new Geometry();\n\n this.indexBuffer = null;\n\n /**\n * The number of particles the buffer can hold\n *\n * @private\n * @member {number}\n */\n this.size = size;\n\n /**\n * A list of the properties that are dynamic.\n *\n * @private\n * @member {object[]}\n */\n this.dynamicProperties = [];\n\n /**\n * A list of the properties that are static.\n *\n * @private\n * @member {object[]}\n */\n this.staticProperties = [];\n\n for (var i = 0; i < properties.length; ++i)\n {\n var property = properties[i];\n\n // Make copy of properties object so that when we edit the offset it doesn't\n // change all other instances of the object literal\n property = {\n attributeName: property.attributeName,\n size: property.size,\n uploadFunction: property.uploadFunction,\n type: property.type || TYPES.FLOAT,\n offset: property.offset,\n };\n\n if (dynamicPropertyFlags[i])\n {\n this.dynamicProperties.push(property);\n }\n else\n {\n this.staticProperties.push(property);\n }\n }\n\n this.staticStride = 0;\n this.staticBuffer = null;\n this.staticData = null;\n this.staticDataUint32 = null;\n\n this.dynamicStride = 0;\n this.dynamicBuffer = null;\n this.dynamicData = null;\n this.dynamicDataUint32 = null;\n\n this._updateID = 0;\n\n this.initBuffers();\n};\n\n/**\n * Sets up the renderer context and necessary buffers.\n *\n * @private\n */\nParticleBuffer.prototype.initBuffers = function initBuffers ()\n{\n var geometry = this.geometry;\n\n var dynamicOffset = 0;\n\n /**\n * Holds the indices of the geometry (quads) to draw\n *\n * @member {Uint16Array}\n * @private\n */\n this.indexBuffer = new Buffer(createIndicesForQuads(this.size), true, true);\n geometry.addIndex(this.indexBuffer);\n\n this.dynamicStride = 0;\n\n for (var i = 0; i < this.dynamicProperties.length; ++i)\n {\n var property = this.dynamicProperties[i];\n\n property.offset = dynamicOffset;\n dynamicOffset += property.size;\n this.dynamicStride += property.size;\n }\n\n var dynBuffer = new ArrayBuffer(this.size * this.dynamicStride * 4 * 4);\n\n this.dynamicData = new Float32Array(dynBuffer);\n this.dynamicDataUint32 = new Uint32Array(dynBuffer);\n this.dynamicBuffer = new Buffer(this.dynamicData, false, false);\n\n // static //\n var staticOffset = 0;\n\n this.staticStride = 0;\n\n for (var i$1 = 0; i$1 < this.staticProperties.length; ++i$1)\n {\n var property$1 = this.staticProperties[i$1];\n\n property$1.offset = staticOffset;\n staticOffset += property$1.size;\n this.staticStride += property$1.size;\n }\n\n var statBuffer = new ArrayBuffer(this.size * this.staticStride * 4 * 4);\n\n this.staticData = new Float32Array(statBuffer);\n this.staticDataUint32 = new Uint32Array(statBuffer);\n this.staticBuffer = new Buffer(this.staticData, true, false);\n\n for (var i$2 = 0; i$2 < this.dynamicProperties.length; ++i$2)\n {\n var property$2 = this.dynamicProperties[i$2];\n\n geometry.addAttribute(\n property$2.attributeName,\n this.dynamicBuffer,\n 0,\n property$2.type === TYPES.UNSIGNED_BYTE,\n property$2.type,\n this.dynamicStride * 4,\n property$2.offset * 4\n );\n }\n\n for (var i$3 = 0; i$3 < this.staticProperties.length; ++i$3)\n {\n var property$3 = this.staticProperties[i$3];\n\n geometry.addAttribute(\n property$3.attributeName,\n this.staticBuffer,\n 0,\n property$3.type === TYPES.UNSIGNED_BYTE,\n property$3.type,\n this.staticStride * 4,\n property$3.offset * 4\n );\n }\n};\n\n/**\n * Uploads the dynamic properties.\n *\n * @private\n * @param {PIXI.DisplayObject[]} children - The children to upload.\n * @param {number} startIndex - The index to start at.\n * @param {number} amount - The number to upload.\n */\nParticleBuffer.prototype.uploadDynamic = function uploadDynamic (children, startIndex, amount)\n{\n for (var i = 0; i < this.dynamicProperties.length; i++)\n {\n var property = this.dynamicProperties[i];\n\n property.uploadFunction(children, startIndex, amount,\n property.type === TYPES.UNSIGNED_BYTE ? this.dynamicDataUint32 : this.dynamicData,\n this.dynamicStride, property.offset);\n }\n\n this.dynamicBuffer._updateID++;\n};\n\n/**\n * Uploads the static properties.\n *\n * @private\n * @param {PIXI.DisplayObject[]} children - The children to upload.\n * @param {number} startIndex - The index to start at.\n * @param {number} amount - The number to upload.\n */\nParticleBuffer.prototype.uploadStatic = function uploadStatic (children, startIndex, amount)\n{\n for (var i = 0; i < this.staticProperties.length; i++)\n {\n var property = this.staticProperties[i];\n\n property.uploadFunction(children, startIndex, amount,\n property.type === TYPES.UNSIGNED_BYTE ? this.staticDataUint32 : this.staticData,\n this.staticStride, property.offset);\n }\n\n this.staticBuffer._updateID++;\n};\n\n/**\n * Destroys the ParticleBuffer.\n *\n * @private\n */\nParticleBuffer.prototype.destroy = function destroy ()\n{\n this.indexBuffer = null;\n\n this.dynamicProperties = null;\n // this.dynamicBuffer.destroy();\n this.dynamicBuffer = null;\n this.dynamicData = null;\n this.dynamicDataUint32 = null;\n\n this.staticProperties = null;\n // this.staticBuffer.destroy();\n this.staticBuffer = null;\n this.staticData = null;\n this.staticDataUint32 = null;\n // all buffers are destroyed inside geometry\n this.geometry.destroy();\n};\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\nattribute vec4 aColor;\\n\\nattribute vec2 aPositionCoord;\\nattribute float aRotation;\\n\\nuniform mat3 translationMatrix;\\nuniform vec4 uColor;\\n\\nvarying vec2 vTextureCoord;\\nvarying vec4 vColor;\\n\\nvoid main(void){\\n float x = (aVertexPosition.x) * cos(aRotation) - (aVertexPosition.y) * sin(aRotation);\\n float y = (aVertexPosition.x) * sin(aRotation) + (aVertexPosition.y) * cos(aRotation);\\n\\n vec2 v = vec2(x, y);\\n v = v + aPositionCoord;\\n\\n gl_Position = vec4((translationMatrix * vec3(v, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vColor = aColor * uColor;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\nvarying vec4 vColor;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n vec4 color = texture2D(uSampler, vTextureCoord) * vColor;\\n gl_FragColor = color;\\n}\";\n\n/**\n * @author Mat Groves\n *\n * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/\n * for creating the original PixiJS version!\n * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that they now\n * share 4 bytes on the vertex buffer\n *\n * Heavily inspired by LibGDX's ParticleRenderer:\n * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleRenderer.java\n */\n\n/**\n * Renderer for Particles that is designer for speed over feature set.\n *\n * @class\n * @memberof PIXI\n */\nvar ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function ParticleRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n // 65535 is max vertex index in the index buffer (see ParticleRenderer)\n // so max number of particles is 65536 / 4 = 16384\n // and max number of element in the index buffer is 16384 * 6 = 98304\n // Creating a full index buffer, overhead is 98304 * 2 = 196Ko\n // let numIndices = 98304;\n\n /**\n * The default shader that is used if a sprite doesn't have a more specific one.\n *\n * @member {PIXI.Shader}\n */\n this.shader = null;\n\n this.properties = null;\n\n this.tempMatrix = new Matrix();\n\n this.properties = [\n // verticesData\n {\n attributeName: 'aVertexPosition',\n size: 2,\n uploadFunction: this.uploadVertices,\n offset: 0,\n },\n // positionData\n {\n attributeName: 'aPositionCoord',\n size: 2,\n uploadFunction: this.uploadPosition,\n offset: 0,\n },\n // rotationData\n {\n attributeName: 'aRotation',\n size: 1,\n uploadFunction: this.uploadRotation,\n offset: 0,\n },\n // uvsData\n {\n attributeName: 'aTextureCoord',\n size: 2,\n uploadFunction: this.uploadUvs,\n offset: 0,\n },\n // tintData\n {\n attributeName: 'aColor',\n size: 1,\n type: TYPES.UNSIGNED_BYTE,\n uploadFunction: this.uploadTint,\n offset: 0,\n } ];\n\n this.shader = Shader.from(vertex, fragment, {});\n }\n\n if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer;\n ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n ParticleRenderer.prototype.constructor = ParticleRenderer;\n\n /**\n * Renders the particle container object.\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n */\n ParticleRenderer.prototype.render = function render (container)\n {\n var children = container.children;\n var maxSize = container._maxSize;\n var batchSize = container._batchSize;\n var renderer = this.renderer;\n var totalChildren = children.length;\n\n if (totalChildren === 0)\n {\n return;\n }\n else if (totalChildren > maxSize && !container.autoResize)\n {\n totalChildren = maxSize;\n }\n\n var buffers = container._buffers;\n\n if (!buffers)\n {\n buffers = container._buffers = this.generateBuffers(container);\n }\n\n var baseTexture = children[0]._texture.baseTexture;\n\n // if the uvs have not updated then no point rendering just yet!\n this.renderer.state.setBlendMode(correctBlendMode(container.blendMode, baseTexture.premultiplyAlpha));\n\n var gl = renderer.gl;\n\n var m = container.worldTransform.copyTo(this.tempMatrix);\n\n m.prepend(renderer.globalUniforms.uniforms.projectionMatrix);\n\n this.shader.uniforms.translationMatrix = m.toArray(true);\n\n this.shader.uniforms.uColor = premultiplyRgba(container.tintRgb,\n container.worldAlpha, this.shader.uniforms.uColor, baseTexture.premultiplyAlpha);\n\n this.shader.uniforms.uSampler = baseTexture;\n\n this.renderer.shader.bind(this.shader);\n\n var updateStatic = false;\n\n // now lets upload and render the buffers..\n for (var i = 0, j = 0; i < totalChildren; i += batchSize, j += 1)\n {\n var amount = (totalChildren - i);\n\n if (amount > batchSize)\n {\n amount = batchSize;\n }\n\n if (j >= buffers.length)\n {\n buffers.push(this._generateOneMoreBuffer(container));\n }\n\n var buffer = buffers[j];\n\n // we always upload the dynamic\n buffer.uploadDynamic(children, i, amount);\n\n var bid = container._bufferUpdateIDs[j] || 0;\n\n updateStatic = updateStatic || (buffer._updateID < bid);\n // we only upload the static content when we have to!\n if (updateStatic)\n {\n buffer._updateID = container._updateID;\n buffer.uploadStatic(children, i, amount);\n }\n\n // bind the buffer\n renderer.geometry.bind(buffer.geometry);\n gl.drawElements(gl.TRIANGLES, amount * 6, gl.UNSIGNED_SHORT, 0);\n }\n };\n\n /**\n * Creates one particle buffer for each child in the container we want to render and updates internal properties\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n * @return {PIXI.ParticleBuffer[]} The buffers\n * @private\n */\n ParticleRenderer.prototype.generateBuffers = function generateBuffers (container)\n {\n var buffers = [];\n var size = container._maxSize;\n var batchSize = container._batchSize;\n var dynamicPropertyFlags = container._properties;\n\n for (var i = 0; i < size; i += batchSize)\n {\n buffers.push(new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize));\n }\n\n return buffers;\n };\n\n /**\n * Creates one more particle buffer, because container has autoResize feature\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n * @return {PIXI.ParticleBuffer} generated buffer\n * @private\n */\n ParticleRenderer.prototype._generateOneMoreBuffer = function _generateOneMoreBuffer (container)\n {\n var batchSize = container._batchSize;\n var dynamicPropertyFlags = container._properties;\n\n return new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize);\n };\n\n /**\n * Uploads the vertices.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their vertices uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadVertices = function uploadVertices (children, startIndex, amount, array, stride, offset)\n {\n var w0 = 0;\n var w1 = 0;\n var h0 = 0;\n var h1 = 0;\n\n for (var i = 0; i < amount; ++i)\n {\n var sprite = children[startIndex + i];\n var texture = sprite._texture;\n var sx = sprite.scale.x;\n var sy = sprite.scale.y;\n var trim = texture.trim;\n var orig = texture.orig;\n\n if (trim)\n {\n // if the sprite is trimmed and is not a tilingsprite then we need to add the\n // extra space before transforming the sprite coords..\n w1 = trim.x - (sprite.anchor.x * orig.width);\n w0 = w1 + trim.width;\n\n h1 = trim.y - (sprite.anchor.y * orig.height);\n h0 = h1 + trim.height;\n }\n else\n {\n w0 = (orig.width) * (1 - sprite.anchor.x);\n w1 = (orig.width) * -sprite.anchor.x;\n\n h0 = orig.height * (1 - sprite.anchor.y);\n h1 = orig.height * -sprite.anchor.y;\n }\n\n array[offset] = w1 * sx;\n array[offset + 1] = h1 * sy;\n\n array[offset + stride] = w0 * sx;\n array[offset + stride + 1] = h1 * sy;\n\n array[offset + (stride * 2)] = w0 * sx;\n array[offset + (stride * 2) + 1] = h0 * sy;\n\n array[offset + (stride * 3)] = w1 * sx;\n array[offset + (stride * 3) + 1] = h0 * sy;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the position.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their positions uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadPosition = function uploadPosition (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; i++)\n {\n var spritePosition = children[startIndex + i].position;\n\n array[offset] = spritePosition.x;\n array[offset + 1] = spritePosition.y;\n\n array[offset + stride] = spritePosition.x;\n array[offset + stride + 1] = spritePosition.y;\n\n array[offset + (stride * 2)] = spritePosition.x;\n array[offset + (stride * 2) + 1] = spritePosition.y;\n\n array[offset + (stride * 3)] = spritePosition.x;\n array[offset + (stride * 3) + 1] = spritePosition.y;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the rotiation.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadRotation = function uploadRotation (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; i++)\n {\n var spriteRotation = children[startIndex + i].rotation;\n\n array[offset] = spriteRotation;\n array[offset + stride] = spriteRotation;\n array[offset + (stride * 2)] = spriteRotation;\n array[offset + (stride * 3)] = spriteRotation;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the Uvs\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadUvs = function uploadUvs (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; ++i)\n {\n var textureUvs = children[startIndex + i]._texture._uvs;\n\n if (textureUvs)\n {\n array[offset] = textureUvs.x0;\n array[offset + 1] = textureUvs.y0;\n\n array[offset + stride] = textureUvs.x1;\n array[offset + stride + 1] = textureUvs.y1;\n\n array[offset + (stride * 2)] = textureUvs.x2;\n array[offset + (stride * 2) + 1] = textureUvs.y2;\n\n array[offset + (stride * 3)] = textureUvs.x3;\n array[offset + (stride * 3) + 1] = textureUvs.y3;\n\n offset += stride * 4;\n }\n else\n {\n // TODO you know this can be easier!\n array[offset] = 0;\n array[offset + 1] = 0;\n\n array[offset + stride] = 0;\n array[offset + stride + 1] = 0;\n\n array[offset + (stride * 2)] = 0;\n array[offset + (stride * 2) + 1] = 0;\n\n array[offset + (stride * 3)] = 0;\n array[offset + (stride * 3) + 1] = 0;\n\n offset += stride * 4;\n }\n }\n };\n\n /**\n * Uploads the tint.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadTint = function uploadTint (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; ++i)\n {\n var sprite = children[startIndex + i];\n var premultiplied = sprite._texture.baseTexture.premultiplyAlpha;\n var alpha = sprite.alpha;\n // we dont call extra function if alpha is 1.0, that's faster\n var argb = alpha < 1.0 && premultiplied ? premultiplyTint(sprite._tintRGB, alpha)\n : sprite._tintRGB + (alpha * 255 << 24);\n\n array[offset] = argb;\n array[offset + stride] = argb;\n array[offset + (stride * 2)] = argb;\n array[offset + (stride * 3)] = argb;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Destroys the ParticleRenderer.\n */\n ParticleRenderer.prototype.destroy = function destroy ()\n {\n ObjectRenderer.prototype.destroy.call(this);\n\n if (this.shader)\n {\n this.shader.destroy();\n this.shader = null;\n }\n\n this.tempMatrix = null;\n };\n\n return ParticleRenderer;\n}(ObjectRenderer));\n\nexport { ParticleContainer, ParticleRenderer };\n//# sourceMappingURL=particles.es.js.map\n","/*!\n * @pixi/spritesheet - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/spritesheet is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Rectangle } from '@pixi/math';\nimport { Texture } from '@pixi/core';\nimport { getResolutionOfUrl, url } from '@pixi/utils';\nimport { LoaderResource } from '@pixi/loaders';\n\n/**\n * Utility class for maintaining reference to a collection\n * of Textures on a single Spritesheet.\n *\n * To access a sprite sheet from your code pass its JSON data file to Pixi's loader:\n *\n * ```js\n * PIXI.Loader.shared.add(\"images/spritesheet.json\").load(setup);\n *\n * function setup() {\n * let sheet = PIXI.Loader.shared.resources[\"images/spritesheet.json\"].spritesheet;\n * ...\n * }\n * ```\n * With the `sheet.textures` you can create Sprite objects,`sheet.animations` can be used to create an AnimatedSprite.\n *\n * Sprite sheets can be packed using tools like {@link https://codeandweb.com/texturepacker|TexturePacker},\n * {@link https://renderhjs.net/shoebox/|Shoebox} or {@link https://github.com/krzysztof-o/spritesheet.js|Spritesheet.js}.\n * Default anchor points (see {@link PIXI.Texture#defaultAnchor}) and grouping of animation sprites are currently only\n * supported by TexturePacker.\n *\n * @class\n * @memberof PIXI\n */\nvar Spritesheet = function Spritesheet(baseTexture, data, resolutionFilename)\n{\n if ( resolutionFilename === void 0 ) resolutionFilename = null;\n\n /**\n * Reference to ths source texture\n * @type {PIXI.BaseTexture}\n */\n this.baseTexture = baseTexture;\n\n /**\n * A map containing all textures of the sprite sheet.\n * Can be used to create a {@link PIXI.Sprite|Sprite}:\n * ```js\n * new PIXI.Sprite(sheet.textures[\"image.png\"]);\n * ```\n * @member {Object}\n */\n this.textures = {};\n\n /**\n * A map containing the textures for each animation.\n * Can be used to create an {@link PIXI.AnimatedSprite|AnimatedSprite}:\n * ```js\n * new PIXI.AnimatedSprite(sheet.animations[\"anim_name\"])\n * ```\n * @member {Object}\n */\n this.animations = {};\n\n /**\n * Reference to the original JSON data.\n * @type {Object}\n */\n this.data = data;\n\n /**\n * The resolution of the spritesheet.\n * @type {number}\n */\n this.resolution = this._updateResolution(\n resolutionFilename\n || (this.baseTexture.resource ? this.baseTexture.resource.url : null)\n );\n\n /**\n * Map of spritesheet frames.\n * @type {Object}\n * @private\n */\n this._frames = this.data.frames;\n\n /**\n * Collection of frame names.\n * @type {string[]}\n * @private\n */\n this._frameKeys = Object.keys(this._frames);\n\n /**\n * Current batch index being processed.\n * @type {number}\n * @private\n */\n this._batchIndex = 0;\n\n /**\n * Callback when parse is completed.\n * @type {Function}\n * @private\n */\n this._callback = null;\n};\n\nvar staticAccessors = { BATCH_SIZE: { configurable: true } };\n\n/**\n * Generate the resolution from the filename or fallback\n * to the meta.scale field of the JSON data.\n *\n * @private\n * @param {string} resolutionFilename - The filename to use for resolving\n * the default resolution.\n * @return {number} Resolution to use for spritesheet.\n */\nstaticAccessors.BATCH_SIZE.get = function ()\n{\n return 1000;\n};\n\nSpritesheet.prototype._updateResolution = function _updateResolution (resolutionFilename)\n{\n var scale = this.data.meta.scale;\n\n // Use a defaultValue of `null` to check if a url-based resolution is set\n var resolution = getResolutionOfUrl(resolutionFilename, null);\n\n // No resolution found via URL\n if (resolution === null)\n {\n // Use the scale value or default to 1\n resolution = scale !== undefined ? parseFloat(scale) : 1;\n }\n\n // For non-1 resolutions, update baseTexture\n if (resolution !== 1)\n {\n this.baseTexture.setResolution(resolution);\n }\n\n return resolution;\n};\n\n/**\n * Parser spritesheet from loaded data. This is done asynchronously\n * to prevent creating too many Texture within a single process.\n *\n * @param {Function} callback - Callback when complete returns\n * a map of the Textures for this spritesheet.\n */\nSpritesheet.prototype.parse = function parse (callback)\n{\n this._batchIndex = 0;\n this._callback = callback;\n\n if (this._frameKeys.length <= Spritesheet.BATCH_SIZE)\n {\n this._processFrames(0);\n this._processAnimations();\n this._parseComplete();\n }\n else\n {\n this._nextBatch();\n }\n};\n\n/**\n * Process a batch of frames\n *\n * @private\n * @param {number} initialFrameIndex - The index of frame to start.\n */\nSpritesheet.prototype._processFrames = function _processFrames (initialFrameIndex)\n{\n var frameIndex = initialFrameIndex;\n var maxFrames = Spritesheet.BATCH_SIZE;\n\n while (frameIndex - initialFrameIndex < maxFrames && frameIndex < this._frameKeys.length)\n {\n var i = this._frameKeys[frameIndex];\n var data = this._frames[i];\n var rect = data.frame;\n\n if (rect)\n {\n var frame = null;\n var trim = null;\n var sourceSize = data.trimmed !== false && data.sourceSize\n ? data.sourceSize : data.frame;\n\n var orig = new Rectangle(\n 0,\n 0,\n Math.floor(sourceSize.w) / this.resolution,\n Math.floor(sourceSize.h) / this.resolution\n );\n\n if (data.rotated)\n {\n frame = new Rectangle(\n Math.floor(rect.x) / this.resolution,\n Math.floor(rect.y) / this.resolution,\n Math.floor(rect.h) / this.resolution,\n Math.floor(rect.w) / this.resolution\n );\n }\n else\n {\n frame = new Rectangle(\n Math.floor(rect.x) / this.resolution,\n Math.floor(rect.y) / this.resolution,\n Math.floor(rect.w) / this.resolution,\n Math.floor(rect.h) / this.resolution\n );\n }\n\n // Check to see if the sprite is trimmed\n if (data.trimmed !== false && data.spriteSourceSize)\n {\n trim = new Rectangle(\n Math.floor(data.spriteSourceSize.x) / this.resolution,\n Math.floor(data.spriteSourceSize.y) / this.resolution,\n Math.floor(rect.w) / this.resolution,\n Math.floor(rect.h) / this.resolution\n );\n }\n\n this.textures[i] = new Texture(\n this.baseTexture,\n frame,\n orig,\n trim,\n data.rotated ? 2 : 0,\n data.anchor\n );\n\n // lets also add the frame to pixi's global cache for 'from' and 'fromLoader' functions\n Texture.addToCache(this.textures[i], i);\n }\n\n frameIndex++;\n }\n};\n\n/**\n * Parse animations config\n *\n * @private\n */\nSpritesheet.prototype._processAnimations = function _processAnimations ()\n{\n var animations = this.data.animations || {};\n\n for (var animName in animations)\n {\n this.animations[animName] = [];\n for (var i = 0; i < animations[animName].length; i++)\n {\n var frameName = animations[animName][i];\n\n this.animations[animName].push(this.textures[frameName]);\n }\n }\n};\n\n/**\n * The parse has completed.\n *\n * @private\n */\nSpritesheet.prototype._parseComplete = function _parseComplete ()\n{\n var callback = this._callback;\n\n this._callback = null;\n this._batchIndex = 0;\n callback.call(this, this.textures);\n};\n\n/**\n * Begin the next batch of textures.\n *\n * @private\n */\nSpritesheet.prototype._nextBatch = function _nextBatch ()\n{\n var this$1 = this;\n\n this._processFrames(this._batchIndex * Spritesheet.BATCH_SIZE);\n this._batchIndex++;\n setTimeout(function () {\n if (this$1._batchIndex * Spritesheet.BATCH_SIZE < this$1._frameKeys.length)\n {\n this$1._nextBatch();\n }\n else\n {\n this$1._processAnimations();\n this$1._parseComplete();\n }\n }, 0);\n};\n\n/**\n * Destroy Spritesheet and don't use after this.\n *\n * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well\n */\nSpritesheet.prototype.destroy = function destroy (destroyBase)\n{\n if ( destroyBase === void 0 ) destroyBase = false;\n\n for (var i in this.textures)\n {\n this.textures[i].destroy();\n }\n this._frames = null;\n this._frameKeys = null;\n this.data = null;\n this.textures = null;\n if (destroyBase)\n {\n this.baseTexture.destroy();\n }\n this.baseTexture = null;\n};\n\nObject.defineProperties( Spritesheet, staticAccessors );\n\n/**\n * {@link PIXI.Loader Loader} middleware for loading texture atlases that have been created with\n * TexturePacker or similar JSON-based spritesheet.\n *\n * This middleware automatically generates Texture resources.\n *\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar SpritesheetLoader = function SpritesheetLoader () {};\n\nSpritesheetLoader.use = function use (resource, next)\n{\n var imageResourceName = (resource.name) + \"_image\";\n\n // skip if no data, its not json, it isn't spritesheet data, or the image resource already exists\n if (!resource.data\n || resource.type !== LoaderResource.TYPE.JSON\n || !resource.data.frames\n || this.resources[imageResourceName]\n )\n {\n next();\n\n return;\n }\n\n var loadOptions = {\n crossOrigin: resource.crossOrigin,\n metadata: resource.metadata.imageMetadata,\n parentResource: resource,\n };\n\n var resourcePath = SpritesheetLoader.getResourcePath(resource, this.baseUrl);\n\n // load the image for this sheet\n this.add(imageResourceName, resourcePath, loadOptions, function onImageLoad(res)\n {\n if (res.error)\n {\n next(res.error);\n\n return;\n }\n\n var spritesheet = new Spritesheet(\n res.texture.baseTexture,\n resource.data,\n resource.url\n );\n\n spritesheet.parse(function () {\n resource.spritesheet = spritesheet;\n resource.textures = spritesheet.textures;\n next();\n });\n });\n};\n\n/**\n * Get the spritesheets root path\n * @param {PIXI.LoaderResource} resource - Resource to check path\n * @param {string} baseUrl - Base root url\n */\nSpritesheetLoader.getResourcePath = function getResourcePath (resource, baseUrl)\n{\n // Prepend url path unless the resource image is a data url\n if (resource.isDataUrl)\n {\n return resource.data.meta.image;\n }\n\n return url.resolve(resource.url.replace(baseUrl, ''), resource.data.meta.image);\n};\n\nexport { Spritesheet, SpritesheetLoader };\n//# sourceMappingURL=spritesheet.es.js.map\n","/*!\n * @pixi/sprite-tiling - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/sprite-tiling is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture, TextureMatrix, ObjectRenderer, Shader, QuadUv } from '@pixi/core';\nimport { Point, Rectangle, Transform, Matrix } from '@pixi/math';\nimport { TextureCache, premultiplyTintToRgba, correctBlendMode } from '@pixi/utils';\nimport { Sprite } from '@pixi/sprite';\nimport { WRAP_MODES } from '@pixi/constants';\n\nvar tempPoint = new Point();\n\n/**\n * A tiling sprite is a fast way of rendering a tiling image\n *\n * @class\n * @extends PIXI.Sprite\n * @memberof PIXI\n */\nvar TilingSprite = /*@__PURE__*/(function (Sprite) {\n function TilingSprite(texture, width, height)\n {\n if ( width === void 0 ) width = 100;\n if ( height === void 0 ) height = 100;\n\n Sprite.call(this, texture);\n\n /**\n * Tile transform\n *\n * @member {PIXI.Transform}\n */\n this.tileTransform = new Transform();\n\n // /// private\n\n /**\n * The with of the tiling sprite\n *\n * @member {number}\n * @private\n */\n this._width = width;\n\n /**\n * The height of the tiling sprite\n *\n * @member {number}\n * @private\n */\n this._height = height;\n\n /**\n * Canvas pattern\n *\n * @type {CanvasPattern}\n * @private\n */\n this._canvasPattern = null;\n\n /**\n * matrix that is applied to UV to get the coords in Texture normalized space to coords in BaseTexture space\n *\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = texture.uvMatrix || new TextureMatrix(texture);\n\n /**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_render' method.\n *\n * @member {string}\n * @default 'tilingSprite'\n */\n this.pluginName = 'tilingSprite';\n\n /**\n * Whether or not anchor affects uvs\n *\n * @member {boolean}\n * @default false\n */\n this.uvRespectAnchor = false;\n }\n\n if ( Sprite ) TilingSprite.__proto__ = Sprite;\n TilingSprite.prototype = Object.create( Sprite && Sprite.prototype );\n TilingSprite.prototype.constructor = TilingSprite;\n\n var prototypeAccessors = { clampMargin: { configurable: true },tileScale: { configurable: true },tilePosition: { configurable: true },width: { configurable: true },height: { configurable: true } };\n /**\n * Changes frame clamping in corresponding textureTransform, shortcut\n * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas\n *\n * @default 0.5\n * @member {number}\n */\n prototypeAccessors.clampMargin.get = function ()\n {\n return this.uvMatrix.clampMargin;\n };\n\n prototypeAccessors.clampMargin.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uvMatrix.clampMargin = value;\n this.uvMatrix.update(true);\n };\n\n /**\n * The scaling of the image that is being tiled\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.tileScale.get = function ()\n {\n return this.tileTransform.scale;\n };\n\n prototypeAccessors.tileScale.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.tileTransform.scale.copyFrom(value);\n };\n\n /**\n * The offset of the image that is being tiled\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.tilePosition.get = function ()\n {\n return this.tileTransform.position;\n };\n\n prototypeAccessors.tilePosition.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.tileTransform.position.copyFrom(value);\n };\n\n /**\n * @private\n */\n TilingSprite.prototype._onTextureUpdate = function _onTextureUpdate ()\n {\n if (this.uvMatrix)\n {\n this.uvMatrix.texture = this._texture;\n }\n this._cachedTint = 0xFFFFFF;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n TilingSprite.prototype._render = function _render (renderer)\n {\n // tweak our texture temporarily..\n var texture = this._texture;\n\n if (!texture || !texture.valid)\n {\n return;\n }\n\n this.tileTransform.updateLocalTransform();\n this.uvMatrix.update();\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n renderer.plugins[this.pluginName].render(this);\n };\n\n /**\n * Updates the bounds of the tiling sprite.\n *\n * @protected\n */\n TilingSprite.prototype._calculateBounds = function _calculateBounds ()\n {\n var minX = this._width * -this._anchor._x;\n var minY = this._height * -this._anchor._y;\n var maxX = this._width * (1 - this._anchor._x);\n var maxY = this._height * (1 - this._anchor._y);\n\n this._bounds.addFrame(this.transform, minX, minY, maxX, maxY);\n };\n\n /**\n * Gets the local bounds of the sprite object.\n *\n * @param {PIXI.Rectangle} rect - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n TilingSprite.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n // we can do a fast local bounds if the sprite has no children!\n if (this.children.length === 0)\n {\n this._bounds.minX = this._width * -this._anchor._x;\n this._bounds.minY = this._height * -this._anchor._y;\n this._bounds.maxX = this._width * (1 - this._anchor._x);\n this._bounds.maxY = this._height * (1 - this._anchor._y);\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n }\n\n return Sprite.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * Checks if a point is inside this tiling sprite.\n *\n * @param {PIXI.Point} point - the point to check\n * @return {boolean} Whether or not the sprite contains the point.\n */\n TilingSprite.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, tempPoint);\n\n var width = this._width;\n var height = this._height;\n var x1 = -width * this.anchor._x;\n\n if (tempPoint.x >= x1 && tempPoint.x < x1 + width)\n {\n var y1 = -height * this.anchor._y;\n\n if (tempPoint.y >= y1 && tempPoint.y < y1 + height)\n {\n return true;\n }\n }\n\n return false;\n };\n\n /**\n * Destroys this sprite and optionally its texture and children\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well\n */\n TilingSprite.prototype.destroy = function destroy (options)\n {\n Sprite.prototype.destroy.call(this, options);\n\n this.tileTransform = null;\n this.uvMatrix = null;\n };\n\n /**\n * Helper function that creates a new tiling sprite based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source - Source to create texture from\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @return {PIXI.TilingSprite} The newly created texture\n */\n TilingSprite.from = function from (source, width, height)\n {\n return new TilingSprite(Texture.from(source), width, height);\n };\n\n /**\n * Helper function that creates a tiling sprite that will use a texture from the TextureCache based on the frameId\n * The frame ids are created when a Texture packer file has been loaded\n *\n * @static\n * @param {string} frameId - The frame Id of the texture in the cache\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @return {PIXI.TilingSprite} A new TilingSprite using a texture from the texture cache matching the frameId\n */\n TilingSprite.fromFrame = function fromFrame (frameId, width, height)\n {\n var texture = TextureCache[frameId];\n\n if (!texture)\n {\n throw new Error((\"The frameId \\\"\" + frameId + \"\\\" does not exist in the texture cache \" + (this)));\n }\n\n return new TilingSprite(texture, width, height);\n };\n\n /**\n * Helper function that creates a sprite that will contain a texture based on an image url\n * If the image is not in the texture cache it will be loaded\n *\n * @static\n * @param {string} imageId - The image url of the texture\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @param {Object} [options] - See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.TilingSprite} A new TilingSprite using a texture from the texture cache matching the image id\n */\n TilingSprite.fromImage = function fromImage (imageId, width, height, options)\n {\n // Fallback support for crossorigin, scaleMode parameters\n if (options && typeof options !== 'object')\n {\n options = {\n scaleMode: arguments[4],\n resourceOptions: {\n crossorigin: arguments[3],\n },\n };\n }\n\n return new TilingSprite(Texture.from(imageId, options), width, height);\n };\n\n /**\n * The width of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this._width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._width = value;\n };\n\n /**\n * The height of the TilingSprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this._height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._height = value;\n };\n\n Object.defineProperties( TilingSprite.prototype, prototypeAccessors );\n\n return TilingSprite;\n}(Sprite));\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform mat3 uTransform;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = (uTransform * vec3(aTextureCoord, 1.0)).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform vec4 uColor;\\nuniform mat3 uMapCoord;\\nuniform vec4 uClampFrame;\\nuniform vec2 uClampOffset;\\n\\nvoid main(void)\\n{\\n vec2 coord = mod(vTextureCoord - uClampOffset, vec2(1.0, 1.0)) + uClampOffset;\\n coord = (uMapCoord * vec3(coord, 1.0)).xy;\\n coord = clamp(coord, uClampFrame.xy, uClampFrame.zw);\\n\\n vec4 sample = texture2D(uSampler, coord);\\n gl_FragColor = sample * uColor;\\n}\\n\";\n\nvar fragmentSimple = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform vec4 uColor;\\n\\nvoid main(void)\\n{\\n vec4 sample = texture2D(uSampler, vTextureCoord);\\n gl_FragColor = sample * uColor;\\n}\\n\";\n\nvar tempMat = new Matrix();\n\n/**\n * WebGL renderer plugin for tiling sprites\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.ObjectRenderer\n */\nvar TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function TilingSpriteRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n var uniforms = { globals: this.renderer.globalUniforms };\n\n this.shader = Shader.from(vertex, fragment, uniforms);\n\n this.simpleShader = Shader.from(vertex, fragmentSimple, uniforms);\n\n this.quad = new QuadUv();\n }\n\n if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer;\n TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer;\n\n /**\n *\n * @param {PIXI.TilingSprite} ts tilingSprite to be rendered\n */\n TilingSpriteRenderer.prototype.render = function render (ts)\n {\n var renderer = this.renderer;\n var quad = this.quad;\n\n var vertices = quad.vertices;\n\n vertices[0] = vertices[6] = (ts._width) * -ts.anchor.x;\n vertices[1] = vertices[3] = ts._height * -ts.anchor.y;\n\n vertices[2] = vertices[4] = (ts._width) * (1.0 - ts.anchor.x);\n vertices[5] = vertices[7] = ts._height * (1.0 - ts.anchor.y);\n\n if (ts.uvRespectAnchor)\n {\n vertices = quad.uvs;\n\n vertices[0] = vertices[6] = -ts.anchor.x;\n vertices[1] = vertices[3] = -ts.anchor.y;\n\n vertices[2] = vertices[4] = 1.0 - ts.anchor.x;\n vertices[5] = vertices[7] = 1.0 - ts.anchor.y;\n }\n\n quad.invalidate();\n\n var tex = ts._texture;\n var baseTex = tex.baseTexture;\n var lt = ts.tileTransform.localTransform;\n var uv = ts.uvMatrix;\n var isSimple = baseTex.isPowerOfTwo\n && tex.frame.width === baseTex.width && tex.frame.height === baseTex.height;\n\n // auto, force repeat wrapMode for big tiling textures\n if (isSimple)\n {\n if (!baseTex._glTextures[renderer.CONTEXT_UID])\n {\n if (baseTex.wrapMode === WRAP_MODES.CLAMP)\n {\n baseTex.wrapMode = WRAP_MODES.REPEAT;\n }\n }\n else\n {\n isSimple = baseTex.wrapMode !== WRAP_MODES.CLAMP;\n }\n }\n\n var shader = isSimple ? this.simpleShader : this.shader;\n\n var w = tex.width;\n var h = tex.height;\n var W = ts._width;\n var H = ts._height;\n\n tempMat.set(lt.a * w / W,\n lt.b * w / H,\n lt.c * h / W,\n lt.d * h / H,\n lt.tx / W,\n lt.ty / H);\n\n // that part is the same as above:\n // tempMat.identity();\n // tempMat.scale(tex.width, tex.height);\n // tempMat.prepend(lt);\n // tempMat.scale(1.0 / ts._width, 1.0 / ts._height);\n\n tempMat.invert();\n if (isSimple)\n {\n tempMat.prepend(uv.mapCoord);\n }\n else\n {\n shader.uniforms.uMapCoord = uv.mapCoord.toArray(true);\n shader.uniforms.uClampFrame = uv.uClampFrame;\n shader.uniforms.uClampOffset = uv.uClampOffset;\n }\n\n shader.uniforms.uTransform = tempMat.toArray(true);\n shader.uniforms.uColor = premultiplyTintToRgba(ts.tint, ts.worldAlpha,\n shader.uniforms.uColor, baseTex.premultiplyAlpha);\n shader.uniforms.translationMatrix = ts.transform.worldTransform.toArray(true);\n shader.uniforms.uSampler = tex;\n\n renderer.shader.bind(shader);\n renderer.geometry.bind(quad);// , renderer.shader.getGLShader());\n\n renderer.state.setBlendMode(correctBlendMode(ts.blendMode, baseTex.premultiplyAlpha));\n renderer.geometry.draw(this.renderer.gl.TRIANGLES, 6, 0);\n };\n\n return TilingSpriteRenderer;\n}(ObjectRenderer));\n\nexport { TilingSprite, TilingSpriteRenderer };\n//# sourceMappingURL=sprite-tiling.es.js.map\n","/*!\n * @pixi/text-bitmap - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/text-bitmap is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture } from '@pixi/core';\nimport { Container } from '@pixi/display';\nimport { Point, Rectangle, ObservablePoint } from '@pixi/math';\nimport { settings } from '@pixi/settings';\nimport { Sprite } from '@pixi/sprite';\nimport { removeItems, getResolutionOfUrl } from '@pixi/utils';\nimport { LoaderResource } from '@pixi/loaders';\n\n/**\n * A BitmapText object will create a line or multiple lines of text using bitmap font.\n *\n * The primary advantage of this class over Text is that all of your textures are pre-generated and loading,\n * meaning that rendering is fast, and changing text has no performance implications.\n *\n * The primary disadvantage is that you need to preload the bitmap font assets, and thus the styling is set in stone.\n * Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters.\n *\n * To split a line you can use '\\n', '\\r' or '\\r\\n' in your string.\n *\n * You can generate the fnt files using\n * http://www.angelcode.com/products/bmfont/ for Windows or\n * http://www.bmglyph.com/ for Mac.\n *\n * A BitmapText can only be created when the font is loaded.\n *\n * ```js\n * // in this case the font is in a file called 'desyrel.fnt'\n * let bitmapText = new PIXI.BitmapText(\"text using a fancy font!\", {font: \"35px Desyrel\", align: \"right\"});\n * ```\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar BitmapText = /*@__PURE__*/(function (Container) {\n function BitmapText(text, style)\n {\n var this$1 = this;\n if ( style === void 0 ) style = {};\n\n Container.call(this);\n\n /**\n * Private tracker for the width of the overall text\n *\n * @member {number}\n * @private\n */\n this._textWidth = 0;\n\n /**\n * Private tracker for the height of the overall text\n *\n * @member {number}\n * @private\n */\n this._textHeight = 0;\n\n /**\n * Private tracker for the letter sprite pool.\n *\n * @member {PIXI.Sprite[]}\n * @private\n */\n this._glyphs = [];\n\n /**\n * Private tracker for the current style.\n *\n * @member {object}\n * @private\n */\n this._font = {\n tint: style.tint !== undefined ? style.tint : 0xFFFFFF,\n align: style.align || 'left',\n name: null,\n size: 0,\n };\n\n /**\n * Private tracker for the current font.\n *\n * @member {object}\n * @private\n */\n this.font = style.font; // run font setter\n\n /**\n * Private tracker for the current text.\n *\n * @member {string}\n * @private\n */\n this._text = text;\n\n /**\n * The max width of this bitmap text in pixels. If the text provided is longer than the\n * value provided, line breaks will be automatically inserted in the last whitespace.\n * Disable by setting value to 0\n *\n * @member {number}\n * @private\n */\n this._maxWidth = 0;\n\n /**\n * The max line height. This is useful when trying to use the total height of the Text,\n * ie: when trying to vertically align.\n *\n * @member {number}\n * @private\n */\n this._maxLineHeight = 0;\n\n /**\n * Letter spacing. This is useful for setting the space between characters.\n * @member {number}\n * @private\n */\n this._letterSpacing = 0;\n\n /**\n * Text anchor. read-only\n *\n * @member {PIXI.ObservablePoint}\n * @private\n */\n this._anchor = new ObservablePoint(function () { this$1.dirty = true; }, this, 0, 0);\n\n /**\n * The dirty state of this object.\n *\n * @member {boolean}\n */\n this.dirty = false;\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n this.roundPixels = settings.ROUND_PIXELS;\n\n this.updateText();\n }\n\n if ( Container ) BitmapText.__proto__ = Container;\n BitmapText.prototype = Object.create( Container && Container.prototype );\n BitmapText.prototype.constructor = BitmapText;\n\n var prototypeAccessors = { tint: { configurable: true },align: { configurable: true },anchor: { configurable: true },font: { configurable: true },text: { configurable: true },maxWidth: { configurable: true },maxLineHeight: { configurable: true },textWidth: { configurable: true },letterSpacing: { configurable: true },textHeight: { configurable: true } };\n\n /**\n * Renders text and updates it when needed\n *\n * @private\n */\n BitmapText.prototype.updateText = function updateText ()\n {\n var data = BitmapText.fonts[this._font.name];\n var scale = this._font.size / data.size;\n var pos = new Point();\n var chars = [];\n var lineWidths = [];\n var text = this._text.replace(/(?:\\r\\n|\\r)/g, '\\n') || ' ';\n var textLength = text.length;\n var maxWidth = this._maxWidth * data.size / this._font.size;\n\n var prevCharCode = null;\n var lastLineWidth = 0;\n var maxLineWidth = 0;\n var line = 0;\n var lastBreakPos = -1;\n var lastBreakWidth = 0;\n var spacesRemoved = 0;\n var maxLineHeight = 0;\n\n for (var i = 0; i < textLength; i++)\n {\n var charCode = text.charCodeAt(i);\n var char = text.charAt(i);\n\n if ((/(?:\\s)/).test(char))\n {\n lastBreakPos = i;\n lastBreakWidth = lastLineWidth;\n }\n\n if (char === '\\r' || char === '\\n')\n {\n lineWidths.push(lastLineWidth);\n maxLineWidth = Math.max(maxLineWidth, lastLineWidth);\n ++line;\n ++spacesRemoved;\n\n pos.x = 0;\n pos.y += data.lineHeight;\n prevCharCode = null;\n continue;\n }\n\n var charData = data.chars[charCode];\n\n if (!charData)\n {\n continue;\n }\n\n if (prevCharCode && charData.kerning[prevCharCode])\n {\n pos.x += charData.kerning[prevCharCode];\n }\n\n chars.push({\n texture: charData.texture,\n line: line,\n charCode: charCode,\n position: new Point(pos.x + charData.xOffset + (this._letterSpacing / 2), pos.y + charData.yOffset),\n });\n pos.x += charData.xAdvance + this._letterSpacing;\n lastLineWidth = pos.x;\n maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height));\n prevCharCode = charCode;\n\n if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth)\n {\n ++spacesRemoved;\n removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos);\n i = lastBreakPos;\n lastBreakPos = -1;\n\n lineWidths.push(lastBreakWidth);\n maxLineWidth = Math.max(maxLineWidth, lastBreakWidth);\n line++;\n\n pos.x = 0;\n pos.y += data.lineHeight;\n prevCharCode = null;\n }\n }\n\n var lastChar = text.charAt(text.length - 1);\n\n if (lastChar !== '\\r' && lastChar !== '\\n')\n {\n if ((/(?:\\s)/).test(lastChar))\n {\n lastLineWidth = lastBreakWidth;\n }\n\n lineWidths.push(lastLineWidth);\n maxLineWidth = Math.max(maxLineWidth, lastLineWidth);\n }\n\n var lineAlignOffsets = [];\n\n for (var i$1 = 0; i$1 <= line; i$1++)\n {\n var alignOffset = 0;\n\n if (this._font.align === 'right')\n {\n alignOffset = maxLineWidth - lineWidths[i$1];\n }\n else if (this._font.align === 'center')\n {\n alignOffset = (maxLineWidth - lineWidths[i$1]) / 2;\n }\n\n lineAlignOffsets.push(alignOffset);\n }\n\n var lenChars = chars.length;\n var tint = this.tint;\n\n for (var i$2 = 0; i$2 < lenChars; i$2++)\n {\n var c = this._glyphs[i$2]; // get the next glyph sprite\n\n if (c)\n {\n c.texture = chars[i$2].texture;\n }\n else\n {\n c = new Sprite(chars[i$2].texture);\n c.roundPixels = this.roundPixels;\n this._glyphs.push(c);\n }\n\n c.position.x = (chars[i$2].position.x + lineAlignOffsets[chars[i$2].line]) * scale;\n c.position.y = chars[i$2].position.y * scale;\n c.scale.x = c.scale.y = scale;\n c.tint = tint;\n\n if (!c.parent)\n {\n this.addChild(c);\n }\n }\n\n // remove unnecessary children.\n for (var i$3 = lenChars; i$3 < this._glyphs.length; ++i$3)\n {\n this.removeChild(this._glyphs[i$3]);\n }\n\n this._textWidth = maxLineWidth * scale;\n this._textHeight = (pos.y + data.lineHeight) * scale;\n\n // apply anchor\n if (this.anchor.x !== 0 || this.anchor.y !== 0)\n {\n for (var i$4 = 0; i$4 < lenChars; i$4++)\n {\n this._glyphs[i$4].x -= this._textWidth * this.anchor.x;\n this._glyphs[i$4].y -= this._textHeight * this.anchor.y;\n }\n }\n this._maxLineHeight = maxLineHeight * scale;\n };\n\n /**\n * Updates the transform of this object\n *\n * @private\n */\n BitmapText.prototype.updateTransform = function updateTransform ()\n {\n this.validate();\n this.containerUpdateTransform();\n };\n\n /**\n * Validates text before calling parent's getLocalBounds\n *\n * @return {PIXI.Rectangle} The rectangular bounding area\n */\n BitmapText.prototype.getLocalBounds = function getLocalBounds ()\n {\n this.validate();\n\n return Container.prototype.getLocalBounds.call(this);\n };\n\n /**\n * Updates text when needed\n *\n * @private\n */\n BitmapText.prototype.validate = function validate ()\n {\n if (this.dirty)\n {\n this.updateText();\n this.dirty = false;\n }\n };\n\n /**\n * The tint of the BitmapText object.\n *\n * @member {number}\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._font.tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._font.tint = (typeof value === 'number' && value >= 0) ? value : 0xFFFFFF;\n\n this.dirty = true;\n };\n\n /**\n * The alignment of the BitmapText object.\n *\n * @member {string}\n * @default 'left'\n */\n prototypeAccessors.align.get = function ()\n {\n return this._font.align;\n };\n\n prototypeAccessors.align.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._font.align = value || 'left';\n\n this.dirty = true;\n };\n\n /**\n * The anchor sets the origin point of the text.\n *\n * The default is `(0,0)`, this means the text's origin is the top left.\n *\n * Setting the anchor to `(0.5,0.5)` means the text's origin is centered.\n *\n * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner.\n *\n * @member {PIXI.Point | number}\n */\n prototypeAccessors.anchor.get = function ()\n {\n return this._anchor;\n };\n\n prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (typeof value === 'number')\n {\n this._anchor.set(value);\n }\n else\n {\n this._anchor.copyFrom(value);\n }\n };\n\n /**\n * The font descriptor of the BitmapText object.\n *\n * @member {object}\n */\n prototypeAccessors.font.get = function ()\n {\n return this._font;\n };\n\n prototypeAccessors.font.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (!value)\n {\n return;\n }\n\n if (typeof value === 'string')\n {\n value = value.split(' ');\n\n this._font.name = value.length === 1 ? value[0] : value.slice(1).join(' ');\n this._font.size = value.length >= 2 ? parseInt(value[0], 10) : BitmapText.fonts[this._font.name].size;\n }\n else\n {\n this._font.name = value.name;\n this._font.size = typeof value.size === 'number' ? value.size : parseInt(value.size, 10);\n }\n\n this.dirty = true;\n };\n\n /**\n * The text of the BitmapText object.\n *\n * @member {string}\n */\n prototypeAccessors.text.get = function ()\n {\n return this._text;\n };\n\n prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc\n {\n text = String(text === null || text === undefined ? '' : text);\n\n if (this._text === text)\n {\n return;\n }\n this._text = text;\n this.dirty = true;\n };\n\n /**\n * The max width of this bitmap text in pixels. If the text provided is longer than the\n * value provided, line breaks will be automatically inserted in the last whitespace.\n * Disable by setting the value to 0.\n *\n * @member {number}\n */\n prototypeAccessors.maxWidth.get = function ()\n {\n return this._maxWidth;\n };\n\n prototypeAccessors.maxWidth.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._maxWidth === value)\n {\n return;\n }\n this._maxWidth = value;\n this.dirty = true;\n };\n\n /**\n * The max line height. This is useful when trying to use the total height of the Text,\n * i.e. when trying to vertically align.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.maxLineHeight.get = function ()\n {\n this.validate();\n\n return this._maxLineHeight;\n };\n\n /**\n * The width of the overall text, different from fontSize,\n * which is defined in the style object.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.textWidth.get = function ()\n {\n this.validate();\n\n return this._textWidth;\n };\n\n /**\n * Additional space between characters.\n *\n * @member {number}\n */\n prototypeAccessors.letterSpacing.get = function ()\n {\n return this._letterSpacing;\n };\n\n prototypeAccessors.letterSpacing.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._letterSpacing !== value)\n {\n this._letterSpacing = value;\n this.dirty = true;\n }\n };\n\n /**\n * The height of the overall text, different from fontSize,\n * which is defined in the style object.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.textHeight.get = function ()\n {\n this.validate();\n\n return this._textHeight;\n };\n\n /**\n * Register a bitmap font with data and a texture.\n *\n * @static\n * @param {XMLDocument} xml - The XML document data.\n * @param {Object.|PIXI.Texture|PIXI.Texture[]} textures - List of textures for each page.\n * If providing an object, the key is the `` element's `file` attribute in the FNT file.\n * @return {Object} Result font object with font, size, lineHeight and char fields.\n */\n BitmapText.registerFont = function registerFont (xml, textures)\n {\n var data = {};\n var info = xml.getElementsByTagName('info')[0];\n var common = xml.getElementsByTagName('common')[0];\n var pages = xml.getElementsByTagName('page');\n var res = getResolutionOfUrl(pages[0].getAttribute('file'), settings.RESOLUTION);\n var pagesTextures = {};\n\n data.font = info.getAttribute('face');\n data.size = parseInt(info.getAttribute('size'), 10);\n data.lineHeight = parseInt(common.getAttribute('lineHeight'), 10) / res;\n data.chars = {};\n\n // Single texture, convert to list\n if (textures instanceof Texture)\n {\n textures = [textures];\n }\n\n // Convert the input Texture, Textures or object\n // into a page Texture lookup by \"id\"\n for (var i = 0; i < pages.length; i++)\n {\n var id = pages[i].getAttribute('id');\n var file = pages[i].getAttribute('file');\n\n pagesTextures[id] = textures instanceof Array ? textures[i] : textures[file];\n }\n\n // parse letters\n var letters = xml.getElementsByTagName('char');\n\n for (var i$1 = 0; i$1 < letters.length; i$1++)\n {\n var letter = letters[i$1];\n var charCode = parseInt(letter.getAttribute('id'), 10);\n var page = letter.getAttribute('page') || 0;\n var textureRect = new Rectangle(\n (parseInt(letter.getAttribute('x'), 10) / res) + (pagesTextures[page].frame.x / res),\n (parseInt(letter.getAttribute('y'), 10) / res) + (pagesTextures[page].frame.y / res),\n parseInt(letter.getAttribute('width'), 10) / res,\n parseInt(letter.getAttribute('height'), 10) / res\n );\n\n data.chars[charCode] = {\n xOffset: parseInt(letter.getAttribute('xoffset'), 10) / res,\n yOffset: parseInt(letter.getAttribute('yoffset'), 10) / res,\n xAdvance: parseInt(letter.getAttribute('xadvance'), 10) / res,\n kerning: {},\n texture: new Texture(pagesTextures[page].baseTexture, textureRect),\n page: page,\n };\n }\n\n // parse kernings\n var kernings = xml.getElementsByTagName('kerning');\n\n for (var i$2 = 0; i$2 < kernings.length; i$2++)\n {\n var kerning = kernings[i$2];\n var first = parseInt(kerning.getAttribute('first'), 10) / res;\n var second = parseInt(kerning.getAttribute('second'), 10) / res;\n var amount = parseInt(kerning.getAttribute('amount'), 10) / res;\n\n if (data.chars[second])\n {\n data.chars[second].kerning[first] = amount;\n }\n }\n\n // I'm leaving this as a temporary fix so we can test the bitmap fonts in v3\n // but it's very likely to change\n BitmapText.fonts[data.font] = data;\n\n return data;\n };\n\n Object.defineProperties( BitmapText.prototype, prototypeAccessors );\n\n return BitmapText;\n}(Container));\n\nBitmapText.fonts = {};\n\n/**\n * {@link PIXI.Loader Loader} middleware for loading\n * bitmap-based fonts suitable for using with {@link PIXI.BitmapText}.\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar BitmapFontLoader = function BitmapFontLoader () {};\n\nBitmapFontLoader.parse = function parse (resource, texture)\n{\n resource.bitmapFont = BitmapText.registerFont(resource.data, texture);\n};\n\n/**\n * Called when the plugin is installed.\n *\n * @see PIXI.Loader.registerPlugin\n */\nBitmapFontLoader.add = function add ()\n{\n LoaderResource.setExtensionXhrType('fnt', LoaderResource.XHR_RESPONSE_TYPE.DOCUMENT);\n};\n\n/**\n * Replacement for NodeJS's path.dirname\n * @private\n * @param {string} url Path to get directory for\n */\nBitmapFontLoader.dirname = function dirname (url)\n{\n var dir = url\n .replace(/\\/$/, '') // replace trailing slash\n .replace(/\\/[^\\/]*$/, ''); // remove everything after the last\n\n // File request is relative, use current directory\n if (dir === url)\n {\n return '.';\n }\n // Started with a slash\n else if (dir === '')\n {\n return '/';\n }\n\n return dir;\n};\n\n/**\n * Called after a resource is loaded.\n * @see PIXI.Loader.loaderMiddleware\n * @param {PIXI.LoaderResource} resource\n * @param {function} next\n */\nBitmapFontLoader.use = function use (resource, next)\n{\n // skip if no data or not xml data\n if (!resource.data || resource.type !== LoaderResource.TYPE.XML)\n {\n next();\n\n return;\n }\n\n // skip if not bitmap font data, using some silly duck-typing\n if (resource.data.getElementsByTagName('page').length === 0\n || resource.data.getElementsByTagName('info').length === 0\n || resource.data.getElementsByTagName('info')[0].getAttribute('face') === null\n )\n {\n next();\n\n return;\n }\n\n var xmlUrl = !resource.isDataUrl ? BitmapFontLoader.dirname(resource.url) : '';\n\n if (resource.isDataUrl)\n {\n if (xmlUrl === '.')\n {\n xmlUrl = '';\n }\n\n if (this.baseUrl && xmlUrl)\n {\n // if baseurl has a trailing slash then add one to xmlUrl so the replace works below\n if (this.baseUrl.charAt(this.baseUrl.length - 1) === '/')\n {\n xmlUrl += '/';\n }\n }\n }\n\n // remove baseUrl from xmlUrl\n xmlUrl = xmlUrl.replace(this.baseUrl, '');\n\n // if there is an xmlUrl now, it needs a trailing slash. Ensure that it does if the string isn't empty.\n if (xmlUrl && xmlUrl.charAt(xmlUrl.length - 1) !== '/')\n {\n xmlUrl += '/';\n }\n\n var pages = resource.data.getElementsByTagName('page');\n var textures = {};\n\n // Handle completed, when the number of textures\n // load is the same number as references in the fnt file\n var completed = function (page) {\n textures[page.metadata.pageFile] = page.texture;\n\n if (Object.keys(textures).length === pages.length)\n {\n BitmapFontLoader.parse(resource, textures);\n next();\n }\n };\n\n for (var i = 0; i < pages.length; ++i)\n {\n var pageFile = pages[i].getAttribute('file');\n var url = xmlUrl + pageFile;\n var exists = false;\n\n // incase the image is loaded outside\n // using the same loader, resource will be available\n for (var name in this.resources)\n {\n var bitmapResource = this.resources[name];\n\n if (bitmapResource.url === url)\n {\n bitmapResource.metadata.pageFile = pageFile;\n if (bitmapResource.texture)\n {\n completed(bitmapResource);\n }\n else\n {\n bitmapResource.onAfterMiddleware.add(completed);\n }\n exists = true;\n break;\n }\n }\n\n // texture is not loaded, we'll attempt to add\n // it to the load and add the texture to the list\n if (!exists)\n {\n // Standard loading options for images\n var options = {\n crossOrigin: resource.crossOrigin,\n loadType: LoaderResource.LOAD_TYPE.IMAGE,\n metadata: Object.assign(\n { pageFile: pageFile },\n resource.metadata.imageMetadata\n ),\n parentResource: resource,\n };\n\n this.add(url, options, completed);\n }\n }\n};\n\nexport { BitmapFontLoader, BitmapText };\n//# sourceMappingURL=text-bitmap.es.js.map\n","/*!\n * @pixi/filter-color-matrix - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/filter-color-matrix is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Filter, defaultFilterVertex } from '@pixi/core';\n\nvar fragment = \"varying vec2 vTextureCoord;\\nuniform sampler2D uSampler;\\nuniform float m[20];\\nuniform float uAlpha;\\n\\nvoid main(void)\\n{\\n vec4 c = texture2D(uSampler, vTextureCoord);\\n\\n if (uAlpha == 0.0) {\\n gl_FragColor = c;\\n return;\\n }\\n\\n // Un-premultiply alpha before applying the color matrix. See issue #3539.\\n if (c.a > 0.0) {\\n c.rgb /= c.a;\\n }\\n\\n vec4 result;\\n\\n result.r = (m[0] * c.r);\\n result.r += (m[1] * c.g);\\n result.r += (m[2] * c.b);\\n result.r += (m[3] * c.a);\\n result.r += m[4];\\n\\n result.g = (m[5] * c.r);\\n result.g += (m[6] * c.g);\\n result.g += (m[7] * c.b);\\n result.g += (m[8] * c.a);\\n result.g += m[9];\\n\\n result.b = (m[10] * c.r);\\n result.b += (m[11] * c.g);\\n result.b += (m[12] * c.b);\\n result.b += (m[13] * c.a);\\n result.b += m[14];\\n\\n result.a = (m[15] * c.r);\\n result.a += (m[16] * c.g);\\n result.a += (m[17] * c.b);\\n result.a += (m[18] * c.a);\\n result.a += m[19];\\n\\n vec3 rgb = mix(c.rgb, result.rgb, uAlpha);\\n\\n // Premultiply alpha again.\\n rgb *= result.a;\\n\\n gl_FragColor = vec4(rgb, result.a);\\n}\\n\";\n\n/**\n * The ColorMatrixFilter class lets you apply a 5x4 matrix transformation on the RGBA\n * color and alpha values of every pixel on your displayObject to produce a result\n * with a new set of RGBA color and alpha values. It's pretty powerful!\n *\n * ```js\n * let colorMatrix = new PIXI.filters.ColorMatrixFilter();\n * container.filters = [colorMatrix];\n * colorMatrix.contrast(2);\n * ```\n * @author Clément Chenebault \n * @class\n * @extends PIXI.Filter\n * @memberof PIXI.filters\n */\nvar ColorMatrixFilter = /*@__PURE__*/(function (Filter) {\n function ColorMatrixFilter()\n {\n var uniforms = {\n m: new Float32Array([1, 0, 0, 0, 0,\n 0, 1, 0, 0, 0,\n 0, 0, 1, 0, 0,\n 0, 0, 0, 1, 0]),\n uAlpha: 1,\n };\n\n Filter.call(this, defaultFilterVertex, fragment, uniforms);\n\n this.alpha = 1;\n }\n\n if ( Filter ) ColorMatrixFilter.__proto__ = Filter;\n ColorMatrixFilter.prototype = Object.create( Filter && Filter.prototype );\n ColorMatrixFilter.prototype.constructor = ColorMatrixFilter;\n\n var prototypeAccessors = { matrix: { configurable: true },alpha: { configurable: true } };\n\n /**\n * Transforms current matrix and set the new one\n *\n * @param {number[]} matrix - 5x4 matrix\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype._loadMatrix = function _loadMatrix (matrix, multiply)\n {\n if ( multiply === void 0 ) multiply = false;\n\n var newMatrix = matrix;\n\n if (multiply)\n {\n this._multiply(newMatrix, this.uniforms.m, matrix);\n newMatrix = this._colorMatrix(newMatrix);\n }\n\n // set the new matrix\n this.uniforms.m = newMatrix;\n };\n\n /**\n * Multiplies two mat5's\n *\n * @private\n * @param {number[]} out - 5x4 matrix the receiving matrix\n * @param {number[]} a - 5x4 matrix the first operand\n * @param {number[]} b - 5x4 matrix the second operand\n * @returns {number[]} 5x4 matrix\n */\n ColorMatrixFilter.prototype._multiply = function _multiply (out, a, b)\n {\n // Red Channel\n out[0] = (a[0] * b[0]) + (a[1] * b[5]) + (a[2] * b[10]) + (a[3] * b[15]);\n out[1] = (a[0] * b[1]) + (a[1] * b[6]) + (a[2] * b[11]) + (a[3] * b[16]);\n out[2] = (a[0] * b[2]) + (a[1] * b[7]) + (a[2] * b[12]) + (a[3] * b[17]);\n out[3] = (a[0] * b[3]) + (a[1] * b[8]) + (a[2] * b[13]) + (a[3] * b[18]);\n out[4] = (a[0] * b[4]) + (a[1] * b[9]) + (a[2] * b[14]) + (a[3] * b[19]) + a[4];\n\n // Green Channel\n out[5] = (a[5] * b[0]) + (a[6] * b[5]) + (a[7] * b[10]) + (a[8] * b[15]);\n out[6] = (a[5] * b[1]) + (a[6] * b[6]) + (a[7] * b[11]) + (a[8] * b[16]);\n out[7] = (a[5] * b[2]) + (a[6] * b[7]) + (a[7] * b[12]) + (a[8] * b[17]);\n out[8] = (a[5] * b[3]) + (a[6] * b[8]) + (a[7] * b[13]) + (a[8] * b[18]);\n out[9] = (a[5] * b[4]) + (a[6] * b[9]) + (a[7] * b[14]) + (a[8] * b[19]) + a[9];\n\n // Blue Channel\n out[10] = (a[10] * b[0]) + (a[11] * b[5]) + (a[12] * b[10]) + (a[13] * b[15]);\n out[11] = (a[10] * b[1]) + (a[11] * b[6]) + (a[12] * b[11]) + (a[13] * b[16]);\n out[12] = (a[10] * b[2]) + (a[11] * b[7]) + (a[12] * b[12]) + (a[13] * b[17]);\n out[13] = (a[10] * b[3]) + (a[11] * b[8]) + (a[12] * b[13]) + (a[13] * b[18]);\n out[14] = (a[10] * b[4]) + (a[11] * b[9]) + (a[12] * b[14]) + (a[13] * b[19]) + a[14];\n\n // Alpha Channel\n out[15] = (a[15] * b[0]) + (a[16] * b[5]) + (a[17] * b[10]) + (a[18] * b[15]);\n out[16] = (a[15] * b[1]) + (a[16] * b[6]) + (a[17] * b[11]) + (a[18] * b[16]);\n out[17] = (a[15] * b[2]) + (a[16] * b[7]) + (a[17] * b[12]) + (a[18] * b[17]);\n out[18] = (a[15] * b[3]) + (a[16] * b[8]) + (a[17] * b[13]) + (a[18] * b[18]);\n out[19] = (a[15] * b[4]) + (a[16] * b[9]) + (a[17] * b[14]) + (a[18] * b[19]) + a[19];\n\n return out;\n };\n\n /**\n * Create a Float32 Array and normalize the offset component to 0-1\n *\n * @private\n * @param {number[]} matrix - 5x4 matrix\n * @return {number[]} 5x4 matrix with all values between 0-1\n */\n ColorMatrixFilter.prototype._colorMatrix = function _colorMatrix (matrix)\n {\n // Create a Float32 Array and normalize the offset component to 0-1\n var m = new Float32Array(matrix);\n\n m[4] /= 255;\n m[9] /= 255;\n m[14] /= 255;\n m[19] /= 255;\n\n return m;\n };\n\n /**\n * Adjusts brightness\n *\n * @param {number} b - value of the brigthness (0-1, where 0 is black)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.brightness = function brightness (b, multiply)\n {\n var matrix = [\n b, 0, 0, 0, 0,\n 0, b, 0, 0, 0,\n 0, 0, b, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the matrices in grey scales\n *\n * @param {number} scale - value of the grey (0-1, where 0 is black)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.greyscale = function greyscale (scale, multiply)\n {\n var matrix = [\n scale, scale, scale, 0, 0,\n scale, scale, scale, 0, 0,\n scale, scale, scale, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the black and white matrice.\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.blackAndWhite = function blackAndWhite (multiply)\n {\n var matrix = [\n 0.3, 0.6, 0.1, 0, 0,\n 0.3, 0.6, 0.1, 0, 0,\n 0.3, 0.6, 0.1, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the hue property of the color\n *\n * @param {number} rotation - in degrees\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.hue = function hue (rotation, multiply)\n {\n rotation = (rotation || 0) / 180 * Math.PI;\n\n var cosR = Math.cos(rotation);\n var sinR = Math.sin(rotation);\n var sqrt = Math.sqrt;\n\n /* a good approximation for hue rotation\n This matrix is far better than the versions with magic luminance constants\n formerly used here, but also used in the starling framework (flash) and known from this\n old part of the internet: quasimondo.com/archives/000565.php\n\n This new matrix is based on rgb cube rotation in space. Look here for a more descriptive\n implementation as a shader not a general matrix:\n https://github.com/evanw/glfx.js/blob/58841c23919bd59787effc0333a4897b43835412/src/filters/adjust/huesaturation.js\n\n This is the source for the code:\n see http://stackoverflow.com/questions/8507885/shift-hue-of-an-rgb-color/8510751#8510751\n */\n\n var w = 1 / 3;\n var sqrW = sqrt(w); // weight is\n\n var a00 = cosR + ((1.0 - cosR) * w);\n var a01 = (w * (1.0 - cosR)) - (sqrW * sinR);\n var a02 = (w * (1.0 - cosR)) + (sqrW * sinR);\n\n var a10 = (w * (1.0 - cosR)) + (sqrW * sinR);\n var a11 = cosR + (w * (1.0 - cosR));\n var a12 = (w * (1.0 - cosR)) - (sqrW * sinR);\n\n var a20 = (w * (1.0 - cosR)) - (sqrW * sinR);\n var a21 = (w * (1.0 - cosR)) + (sqrW * sinR);\n var a22 = cosR + (w * (1.0 - cosR));\n\n var matrix = [\n a00, a01, a02, 0, 0,\n a10, a11, a12, 0, 0,\n a20, a21, a22, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the contrast matrix, increase the separation between dark and bright\n * Increase contrast : shadows darker and highlights brighter\n * Decrease contrast : bring the shadows up and the highlights down\n *\n * @param {number} amount - value of the contrast (0-1)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.contrast = function contrast (amount, multiply)\n {\n var v = (amount || 0) + 1;\n var o = -0.5 * (v - 1);\n\n var matrix = [\n v, 0, 0, 0, o,\n 0, v, 0, 0, o,\n 0, 0, v, 0, o,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the saturation matrix, increase the separation between colors\n * Increase saturation : increase contrast, brightness, and sharpness\n *\n * @param {number} amount - The saturation amount (0-1)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.saturate = function saturate (amount, multiply)\n {\n if ( amount === void 0 ) amount = 0;\n\n var x = (amount * 2 / 3) + 1;\n var y = ((x - 1) * -0.5);\n\n var matrix = [\n x, y, y, 0, 0,\n y, x, y, 0, 0,\n y, y, x, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Desaturate image (remove color)\n *\n * Call the saturate function\n *\n */\n ColorMatrixFilter.prototype.desaturate = function desaturate () // eslint-disable-line no-unused-vars\n {\n this.saturate(-1);\n };\n\n /**\n * Negative image (inverse of classic rgb matrix)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.negative = function negative (multiply)\n {\n var matrix = [\n -1, 0, 0, 1, 0,\n 0, -1, 0, 1, 0,\n 0, 0, -1, 1, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Sepia image\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.sepia = function sepia (multiply)\n {\n var matrix = [\n 0.393, 0.7689999, 0.18899999, 0, 0,\n 0.349, 0.6859999, 0.16799999, 0, 0,\n 0.272, 0.5339999, 0.13099999, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Color motion picture process invented in 1916 (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.technicolor = function technicolor (multiply)\n {\n var matrix = [\n 1.9125277891456083, -0.8545344976951645, -0.09155508482755585, 0, 11.793603434377337,\n -0.3087833385928097, 1.7658908555458428, -0.10601743074722245, 0, -70.35205161461398,\n -0.231103377548616, -0.7501899197440212, 1.847597816108189, 0, 30.950940869491138,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Polaroid filter\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.polaroid = function polaroid (multiply)\n {\n var matrix = [\n 1.438, -0.062, -0.062, 0, 0,\n -0.122, 1.378, -0.122, 0, 0,\n -0.016, -0.016, 1.483, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Filter who transforms : Red -> Blue and Blue -> Red\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.toBGR = function toBGR (multiply)\n {\n var matrix = [\n 0, 0, 1, 0, 0,\n 0, 1, 0, 0, 0,\n 1, 0, 0, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Color reversal film introduced by Eastman Kodak in 1935. (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.kodachrome = function kodachrome (multiply)\n {\n var matrix = [\n 1.1285582396593525, -0.3967382283601348, -0.03992559172921793, 0, 63.72958762196502,\n -0.16404339962244616, 1.0835251566291304, -0.05498805115633132, 0, 24.732407896706203,\n -0.16786010706155763, -0.5603416277695248, 1.6014850761964943, 0, 35.62982807460946,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Brown delicious browni filter (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.browni = function browni (multiply)\n {\n var matrix = [\n 0.5997023498159715, 0.34553243048391263, -0.2708298674538042, 0, 47.43192855600873,\n -0.037703249837783157, 0.8609577587992641, 0.15059552388459913, 0, -36.96841498319127,\n 0.24113635128153335, -0.07441037908422492, 0.44972182064877153, 0, -7.562075277591283,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Vintage filter (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.vintage = function vintage (multiply)\n {\n var matrix = [\n 0.6279345635605994, 0.3202183420819367, -0.03965408211312453, 0, 9.651285835294123,\n 0.02578397704808868, 0.6441188644374771, 0.03259127616149294, 0, 7.462829176470591,\n 0.0466055556782719, -0.0851232987247891, 0.5241648018700465, 0, 5.159190588235296,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * We don't know exactly what it does, kind of gradient map, but funny to play with!\n *\n * @param {number} desaturation - Tone values.\n * @param {number} toned - Tone values.\n * @param {string} lightColor - Tone values, example: `0xFFE580`\n * @param {string} darkColor - Tone values, example: `0xFFE580`\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.colorTone = function colorTone (desaturation, toned, lightColor, darkColor, multiply)\n {\n desaturation = desaturation || 0.2;\n toned = toned || 0.15;\n lightColor = lightColor || 0xFFE580;\n darkColor = darkColor || 0x338000;\n\n var lR = ((lightColor >> 16) & 0xFF) / 255;\n var lG = ((lightColor >> 8) & 0xFF) / 255;\n var lB = (lightColor & 0xFF) / 255;\n\n var dR = ((darkColor >> 16) & 0xFF) / 255;\n var dG = ((darkColor >> 8) & 0xFF) / 255;\n var dB = (darkColor & 0xFF) / 255;\n\n var matrix = [\n 0.3, 0.59, 0.11, 0, 0,\n lR, lG, lB, desaturation, 0,\n dR, dG, dB, toned, 0,\n lR - dR, lG - dG, lB - dB, 0, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Night effect\n *\n * @param {number} intensity - The intensity of the night effect.\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.night = function night (intensity, multiply)\n {\n intensity = intensity || 0.1;\n var matrix = [\n intensity * (-2.0), -intensity, 0, 0, 0,\n -intensity, 0, intensity, 0, 0,\n 0, intensity, intensity * 2.0, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Predator effect\n *\n * Erase the current matrix by setting a new indepent one\n *\n * @param {number} amount - how much the predator feels his future victim\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.predator = function predator (amount, multiply)\n {\n var matrix = [\n // row 1\n 11.224130630493164 * amount,\n -4.794486999511719 * amount,\n -2.8746118545532227 * amount,\n 0 * amount,\n 0.40342438220977783 * amount,\n // row 2\n -3.6330697536468506 * amount,\n 9.193157196044922 * amount,\n -2.951810836791992 * amount,\n 0 * amount,\n -1.316135048866272 * amount,\n // row 3\n -3.2184197902679443 * amount,\n -4.2375030517578125 * amount,\n 7.476448059082031 * amount,\n 0 * amount,\n 0.8044459223747253 * amount,\n // row 4\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * LSD effect\n *\n * Multiply the current matrix\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.lsd = function lsd (multiply)\n {\n var matrix = [\n 2, -0.4, 0.5, 0, 0,\n -0.5, 2, -0.4, 0, 0,\n -0.4, -0.5, 3, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Erase the current matrix by setting the default one\n *\n */\n ColorMatrixFilter.prototype.reset = function reset ()\n {\n var matrix = [\n 1, 0, 0, 0, 0,\n 0, 1, 0, 0, 0,\n 0, 0, 1, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, false);\n };\n\n /**\n * The matrix of the color matrix filter\n *\n * @member {number[]}\n * @default [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]\n */\n prototypeAccessors.matrix.get = function ()\n {\n return this.uniforms.m;\n };\n\n prototypeAccessors.matrix.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uniforms.m = value;\n };\n\n /**\n * The opacity value to use when mixing the original and resultant colors.\n *\n * When the value is 0, the original color is used without modification.\n * When the value is 1, the result color is used.\n * When in the range (0, 1) the color is interpolated between the original and result by this amount.\n *\n * @member {number}\n * @default 1\n */\n prototypeAccessors.alpha.get = function ()\n {\n return this.uniforms.uAlpha;\n };\n\n prototypeAccessors.alpha.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uniforms.uAlpha = value;\n };\n\n Object.defineProperties( ColorMatrixFilter.prototype, prototypeAccessors );\n\n return ColorMatrixFilter;\n}(Filter));\n\n// Americanized alias\nColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale;\n\nexport { ColorMatrixFilter };\n//# sourceMappingURL=filter-color-matrix.es.js.map\n","/*!\n * @pixi/mixin-cache-as-bitmap - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/mixin-cache-as-bitmap is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { RenderTexture, BaseTexture, Texture } from '@pixi/core';\nimport { Sprite } from '@pixi/sprite';\nimport { DisplayObject } from '@pixi/display';\nimport { Matrix } from '@pixi/math';\nimport { uid } from '@pixi/utils';\nimport { settings } from '@pixi/settings';\n\nvar _tempMatrix = new Matrix();\n\nDisplayObject.prototype._cacheAsBitmap = false;\nDisplayObject.prototype._cacheData = false;\n\n// figured theres no point adding ALL the extra variables to prototype.\n// this model can hold the information needed. This can also be generated on demand as\n// most objects are not cached as bitmaps.\n/**\n * @class\n * @ignore\n */\nvar CacheData = function CacheData()\n{\n this.textureCacheId = null;\n\n this.originalRender = null;\n this.originalRenderCanvas = null;\n this.originalCalculateBounds = null;\n this.originalGetLocalBounds = null;\n\n this.originalUpdateTransform = null;\n this.originalHitTest = null;\n this.originalDestroy = null;\n this.originalMask = null;\n this.originalFilterArea = null;\n this.sprite = null;\n};\n\nObject.defineProperties(DisplayObject.prototype, {\n /**\n * Set this to true if you want this display object to be cached as a bitmap.\n * This basically takes a snap shot of the display object as it is at that moment. It can\n * provide a performance benefit for complex static displayObjects.\n * To remove simply set this property to `false`\n *\n * IMPORTANT GOTCHA - Make sure that all your textures are preloaded BEFORE setting this property to true\n * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n cacheAsBitmap: {\n get: function get()\n {\n return this._cacheAsBitmap;\n },\n set: function set(value)\n {\n if (this._cacheAsBitmap === value)\n {\n return;\n }\n\n this._cacheAsBitmap = value;\n\n var data;\n\n if (value)\n {\n if (!this._cacheData)\n {\n this._cacheData = new CacheData();\n }\n\n data = this._cacheData;\n\n data.originalRender = this.render;\n data.originalRenderCanvas = this.renderCanvas;\n\n data.originalUpdateTransform = this.updateTransform;\n data.originalCalculateBounds = this.calculateBounds;\n data.originalGetLocalBounds = this.getLocalBounds;\n\n data.originalDestroy = this.destroy;\n\n data.originalContainsPoint = this.containsPoint;\n\n data.originalMask = this._mask;\n data.originalFilterArea = this.filterArea;\n\n this.render = this._renderCached;\n this.renderCanvas = this._renderCachedCanvas;\n\n this.destroy = this._cacheAsBitmapDestroy;\n }\n else\n {\n data = this._cacheData;\n\n if (data.sprite)\n {\n this._destroyCachedDisplayObject();\n }\n\n this.render = data.originalRender;\n this.renderCanvas = data.originalRenderCanvas;\n this.calculateBounds = data.originalCalculateBounds;\n this.getLocalBounds = data.originalGetLocalBounds;\n\n this.destroy = data.originalDestroy;\n\n this.updateTransform = data.originalUpdateTransform;\n this.containsPoint = data.originalContainsPoint;\n\n this._mask = data.originalMask;\n this.filterArea = data.originalFilterArea;\n }\n },\n },\n});\n\n/**\n * Renders a cached version of the sprite with WebGL\n *\n * @private\n * @function _renderCached\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._renderCached = function _renderCached(renderer)\n{\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n this._initCachedDisplayObject(renderer);\n\n this._cacheData.sprite.transform._worldID = this.transform._worldID;\n this._cacheData.sprite.worldAlpha = this.worldAlpha;\n this._cacheData.sprite._render(renderer);\n};\n\n/**\n * Prepares the WebGL renderer to cache the sprite\n *\n * @private\n * @function _initCachedDisplayObject\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._initCachedDisplayObject = function _initCachedDisplayObject(renderer)\n{\n if (this._cacheData && this._cacheData.sprite)\n {\n return;\n }\n\n // make sure alpha is set to 1 otherwise it will get rendered as invisible!\n var cacheAlpha = this.alpha;\n\n this.alpha = 1;\n\n // first we flush anything left in the renderer (otherwise it would get rendered to the cached texture)\n renderer.batch.flush();\n // this.filters= [];\n\n // next we find the dimensions of the untransformed object\n // this function also calls updatetransform on all its children as part of the measuring.\n // This means we don't need to update the transform again in this function\n // TODO pass an object to clone too? saves having to create a new one each time!\n var bounds = this.getLocalBounds().clone();\n\n // add some padding!\n if (this.filters)\n {\n var padding = this.filters[0].padding;\n\n bounds.pad(padding);\n }\n\n bounds.ceil(settings.RESOLUTION);\n\n // for now we cache the current renderTarget that the WebGL renderer is currently using.\n // this could be more elegant..\n var cachedRenderTexture = renderer.renderTexture.current;\n var cachedSourceFrame = renderer.renderTexture.sourceFrame;\n var cachedProjectionTransform = renderer.projection.transform;\n\n // We also store the filter stack - I will definitely look to change how this works a little later down the line.\n // const stack = renderer.filterManager.filterStack;\n\n // this renderTexture will be used to store the cached DisplayObject\n var renderTexture = RenderTexture.create(bounds.width, bounds.height);\n\n var textureCacheId = \"cacheAsBitmap_\" + (uid());\n\n this._cacheData.textureCacheId = textureCacheId;\n\n BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId);\n Texture.addToCache(renderTexture, textureCacheId);\n\n // need to set //\n var m = _tempMatrix;\n\n m.tx = -bounds.x;\n m.ty = -bounds.y;\n\n // reset\n this.transform.worldTransform.identity();\n\n // set all properties to there original so we can render to a texture\n this.render = this._cacheData.originalRender;\n\n renderer.render(this, renderTexture, true, m, true);\n\n // now restore the state be setting the new properties\n renderer.projection.transform = cachedProjectionTransform;\n renderer.renderTexture.bind(cachedRenderTexture, cachedSourceFrame);\n\n // renderer.filterManager.filterStack = stack;\n\n this.render = this._renderCached;\n // the rest is the same as for Canvas\n this.updateTransform = this.displayObjectUpdateTransform;\n this.calculateBounds = this._calculateCachedBounds;\n this.getLocalBounds = this._getCachedLocalBounds;\n\n this._mask = null;\n this.filterArea = null;\n\n // create our cached sprite\n var cachedSprite = new Sprite(renderTexture);\n\n cachedSprite.transform.worldTransform = this.transform.worldTransform;\n cachedSprite.anchor.x = -(bounds.x / bounds.width);\n cachedSprite.anchor.y = -(bounds.y / bounds.height);\n cachedSprite.alpha = cacheAlpha;\n cachedSprite._bounds = this._bounds;\n\n this._cacheData.sprite = cachedSprite;\n\n this.transform._parentID = -1;\n // restore the transform of the cached sprite to avoid the nasty flicker..\n if (!this.parent)\n {\n this.parent = renderer._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this.updateTransform();\n }\n\n // map the hit test..\n this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite);\n};\n\n/**\n * Renders a cached version of the sprite with canvas\n *\n * @private\n * @function _renderCachedCanvas\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._renderCachedCanvas = function _renderCachedCanvas(renderer)\n{\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n this._initCachedDisplayObjectCanvas(renderer);\n\n this._cacheData.sprite.worldAlpha = this.worldAlpha;\n this._cacheData.sprite._renderCanvas(renderer);\n};\n\n// TODO this can be the same as the WebGL version.. will need to do a little tweaking first though..\n/**\n * Prepares the Canvas renderer to cache the sprite\n *\n * @private\n * @function _initCachedDisplayObjectCanvas\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._initCachedDisplayObjectCanvas = function _initCachedDisplayObjectCanvas(renderer)\n{\n if (this._cacheData && this._cacheData.sprite)\n {\n return;\n }\n\n // get bounds actually transforms the object for us already!\n var bounds = this.getLocalBounds();\n\n var cacheAlpha = this.alpha;\n\n this.alpha = 1;\n\n var cachedRenderTarget = renderer.context;\n\n bounds.ceil(settings.RESOLUTION);\n\n var renderTexture = RenderTexture.create(bounds.width, bounds.height);\n\n var textureCacheId = \"cacheAsBitmap_\" + (uid());\n\n this._cacheData.textureCacheId = textureCacheId;\n\n BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId);\n Texture.addToCache(renderTexture, textureCacheId);\n\n // need to set //\n var m = _tempMatrix;\n\n this.transform.localTransform.copyTo(m);\n m.invert();\n\n m.tx -= bounds.x;\n m.ty -= bounds.y;\n\n // m.append(this.transform.worldTransform.)\n // set all properties to there original so we can render to a texture\n this.renderCanvas = this._cacheData.originalRenderCanvas;\n\n // renderTexture.render(this, m, true);\n renderer.render(this, renderTexture, true, m, false);\n\n // now restore the state be setting the new properties\n renderer.context = cachedRenderTarget;\n\n this.renderCanvas = this._renderCachedCanvas;\n // the rest is the same as for WebGL\n this.updateTransform = this.displayObjectUpdateTransform;\n this.calculateBounds = this._calculateCachedBounds;\n this.getLocalBounds = this._getCachedLocalBounds;\n\n this._mask = null;\n this.filterArea = null;\n\n // create our cached sprite\n var cachedSprite = new Sprite(renderTexture);\n\n cachedSprite.transform.worldTransform = this.transform.worldTransform;\n cachedSprite.anchor.x = -(bounds.x / bounds.width);\n cachedSprite.anchor.y = -(bounds.y / bounds.height);\n cachedSprite.alpha = cacheAlpha;\n cachedSprite._bounds = this._bounds;\n\n this._cacheData.sprite = cachedSprite;\n\n this.transform._parentID = -1;\n // restore the transform of the cached sprite to avoid the nasty flicker..\n if (!this.parent)\n {\n this.parent = renderer._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this.updateTransform();\n }\n\n // map the hit test..\n this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite);\n};\n\n/**\n * Calculates the bounds of the cached sprite\n *\n * @private\n */\nDisplayObject.prototype._calculateCachedBounds = function _calculateCachedBounds()\n{\n this._bounds.clear();\n this._cacheData.sprite.transform._worldID = this.transform._worldID;\n this._cacheData.sprite._calculateBounds();\n this._lastBoundsID = this._boundsID;\n};\n\n/**\n * Gets the bounds of the cached sprite.\n *\n * @private\n * @return {Rectangle} The local bounds.\n */\nDisplayObject.prototype._getCachedLocalBounds = function _getCachedLocalBounds()\n{\n return this._cacheData.sprite.getLocalBounds();\n};\n\n/**\n * Destroys the cached sprite.\n *\n * @private\n */\nDisplayObject.prototype._destroyCachedDisplayObject = function _destroyCachedDisplayObject()\n{\n this._cacheData.sprite._texture.destroy(true);\n this._cacheData.sprite = null;\n\n BaseTexture.removeFromCache(this._cacheData.textureCacheId);\n Texture.removeFromCache(this._cacheData.textureCacheId);\n\n this._cacheData.textureCacheId = null;\n};\n\n/**\n * Destroys the cached object.\n *\n * @private\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value.\n * Used when destroying containers, see the Container.destroy method.\n */\nDisplayObject.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy(options)\n{\n this.cacheAsBitmap = false;\n this.destroy(options);\n};\n//# sourceMappingURL=mixin-cache-as-bitmap.es.js.map\n","/*!\n * @pixi/mixin-get-child-by-name - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/mixin-get-child-by-name is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { DisplayObject, Container } from '@pixi/display';\n\n/**\n * The instance name of the object.\n *\n * @memberof PIXI.DisplayObject#\n * @member {string} name\n */\nDisplayObject.prototype.name = null;\n\n/**\n * Returns the display object in the container.\n *\n * @method getChildByName\n * @memberof PIXI.Container#\n * @param {string} name - Instance name.\n * @return {PIXI.DisplayObject} The child with the specified name.\n */\nContainer.prototype.getChildByName = function getChildByName(name)\n{\n for (var i = 0; i < this.children.length; i++)\n {\n if (this.children[i].name === name)\n {\n return this.children[i];\n }\n }\n\n return null;\n};\n//# sourceMappingURL=mixin-get-child-by-name.es.js.map\n","/*!\n * @pixi/mixin-get-global-position - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/mixin-get-global-position is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { DisplayObject } from '@pixi/display';\nimport { Point } from '@pixi/math';\n\n/**\n * Returns the global position of the displayObject. Does not depend on object scale, rotation and pivot.\n *\n * @method getGlobalPosition\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Point} [point=new PIXI.Point()] - The point to write the global value to.\n * @param {boolean} [skipUpdate=false] - Setting to true will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost.\n * @return {PIXI.Point} The updated point.\n */\nDisplayObject.prototype.getGlobalPosition = function getGlobalPosition(point, skipUpdate)\n{\n if ( point === void 0 ) point = new Point();\n if ( skipUpdate === void 0 ) skipUpdate = false;\n\n if (this.parent)\n {\n this.parent.toGlobal(this.position, point, skipUpdate);\n }\n else\n {\n point.x = this.position.x;\n point.y = this.position.y;\n }\n\n return point;\n};\n//# sourceMappingURL=mixin-get-global-position.es.js.map\n","/*!\n * @pixi/mesh - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/mesh is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { State, Shader, Program, TextureMatrix, Geometry, Buffer } from '@pixi/core';\nimport { Point, Polygon, Matrix } from '@pixi/math';\nimport { DRAW_MODES, BLEND_MODES, TYPES } from '@pixi/constants';\nimport { Container } from '@pixi/display';\nimport { settings } from '@pixi/settings';\nimport { premultiplyTintToRgba } from '@pixi/utils';\n\n/**\n * Class controls cache for UV mapping from Texture normal space to BaseTexture normal space.\n *\n * @class\n * @memberof PIXI\n */\nvar MeshBatchUvs = function MeshBatchUvs(uvBuffer, uvMatrix)\n{\n /**\n * Buffer with normalized UV's\n * @member {PIXI.Buffer}\n */\n this.uvBuffer = uvBuffer;\n\n /**\n * Material UV matrix\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = uvMatrix;\n\n /**\n * UV Buffer data\n * @member {Float32Array}\n * @readonly\n */\n this.data = null;\n\n this._bufferUpdateId = -1;\n\n this._textureUpdateId = -1;\n\n this._updateID = 0;\n};\n\n/**\n * updates\n *\n * @param {boolean} forceUpdate - force the update\n */\nMeshBatchUvs.prototype.update = function update (forceUpdate)\n{\n if (!forceUpdate\n && this._bufferUpdateId === this.uvBuffer._updateID\n && this._textureUpdateId === this.uvMatrix._updateID)\n {\n return;\n }\n\n this._bufferUpdateId = this.uvBuffer._updateID;\n this._textureUpdateId = this.uvMatrix._updateID;\n\n var data = this.uvBuffer.data;\n\n if (!this.data || this.data.length !== data.length)\n {\n this.data = new Float32Array(data.length);\n }\n\n this.uvMatrix.multiplyUvs(data, this.data);\n\n this._updateID++;\n};\n\nvar tempPoint = new Point();\nvar tempPolygon = new Polygon();\n\n/**\n * Base mesh class.\n *\n * This class empowers you to have maximum flexibility to render any kind of WebGL visuals you can think of.\n * This class assumes a certain level of WebGL knowledge.\n * If you know a bit this should abstract enough away to make you life easier!\n *\n * Pretty much ALL WebGL can be broken down into the following:\n * - Geometry - The structure and data for the mesh. This can include anything from positions, uvs, normals, colors etc..\n * - Shader - This is the shader that PixiJS will render the geometry with (attributes in the shader must match the geometry)\n * - State - This is the state of WebGL required to render the mesh.\n *\n * Through a combination of the above elements you can render anything you want, 2D or 3D!\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Mesh = /*@__PURE__*/(function (Container) {\n function Mesh(geometry, shader, state, drawMode)// vertices, uvs, indices, drawMode)\n {\n if ( drawMode === void 0 ) drawMode = DRAW_MODES.TRIANGLES;\n\n Container.call(this);\n\n /**\n * Includes vertex positions, face indices, normals, colors, UVs, and\n * custom attributes within buffers, reducing the cost of passing all\n * this data to the GPU. Can be shared between multiple Mesh objects.\n * @member {PIXI.Geometry}\n * @readonly\n */\n this.geometry = geometry;\n\n geometry.refCount++;\n\n /**\n * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU.\n * Can be shared between multiple Mesh objects.\n * @member {PIXI.Shader|PIXI.MeshMaterial}\n */\n this.shader = shader;\n\n /**\n * Represents the WebGL state the Mesh required to render, excludes shader and geometry. E.g.,\n * blend mode, culling, depth testing, direction of rendering triangles, backface, etc.\n * @member {PIXI.State}\n */\n this.state = state || State.for2d();\n\n /**\n * The way the Mesh should be drawn, can be any of the {@link PIXI.DRAW_MODES} constants.\n *\n * @member {number}\n * @see PIXI.DRAW_MODES\n */\n this.drawMode = drawMode;\n\n /**\n * Typically the index of the IndexBuffer where to start drawing.\n * @member {number}\n * @default 0\n */\n this.start = 0;\n\n /**\n * How much of the geometry to draw, by default `0` renders everything.\n * @member {number}\n * @default 0\n */\n this.size = 0;\n\n /**\n * thease are used as easy access for batching\n * @member {Float32Array}\n * @private\n */\n this.uvs = null;\n\n /**\n * thease are used as easy access for batching\n * @member {Uint16Array}\n * @private\n */\n this.indices = null;\n\n /**\n * this is the caching layer used by the batcher\n * @member {Float32Array}\n * @private\n */\n this.vertexData = new Float32Array(1);\n\n /**\n * If geometry is changed used to decide to re-transform\n * the vertexData.\n * @member {number}\n * @private\n */\n this.vertexDirty = 0;\n\n this._transformID = -1;\n\n // Inherited from DisplayMode, set defaults\n this.tint = 0xFFFFFF;\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * Internal roundPixels field\n *\n * @member {boolean}\n * @private\n */\n this._roundPixels = settings.ROUND_PIXELS;\n\n /**\n * Batched UV's are cached for atlas textures\n * @member {PIXI.MeshBatchUvs}\n * @private\n */\n this.batchUvs = null;\n }\n\n if ( Container ) Mesh.__proto__ = Container;\n Mesh.prototype = Object.create( Container && Container.prototype );\n Mesh.prototype.constructor = Mesh;\n\n var prototypeAccessors = { uvBuffer: { configurable: true },verticesBuffer: { configurable: true },material: { configurable: true },blendMode: { configurable: true },roundPixels: { configurable: true },tint: { configurable: true },texture: { configurable: true } };\n\n /**\n * To change mesh uv's, change its uvBuffer data and increment its _updateID.\n * @member {PIXI.Buffer}\n * @readonly\n */\n prototypeAccessors.uvBuffer.get = function ()\n {\n return this.geometry.buffers[1];\n };\n\n /**\n * To change mesh vertices, change its uvBuffer data and increment its _updateID.\n * Incrementing _updateID is optional because most of Mesh objects do it anyway.\n * @member {PIXI.Buffer}\n * @readonly\n */\n prototypeAccessors.verticesBuffer.get = function ()\n {\n return this.geometry.buffers[0];\n };\n\n /**\n * Alias for {@link PIXI.Mesh#shader}.\n * @member {PIXI.Shader|PIXI.MeshMaterial}\n */\n prototypeAccessors.material.set = function (value)\n {\n this.shader = value;\n };\n\n prototypeAccessors.material.get = function ()\n {\n return this.shader;\n };\n\n /**\n * The blend mode to be applied to the Mesh. Apply a value of\n * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL;\n * @see PIXI.BLEND_MODES\n */\n prototypeAccessors.blendMode.set = function (value)\n {\n this.state.blendMode = value;\n };\n\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n prototypeAccessors.roundPixels.set = function (value)\n {\n if (this._roundPixels !== value)\n {\n this._transformID = -1;\n }\n this._roundPixels = value;\n };\n\n prototypeAccessors.roundPixels.get = function ()\n {\n return this._roundPixels;\n };\n\n /**\n * The multiply tint applied to the Mesh. This is a hex value. A value of\n * `0xFFFFFF` will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this.shader.tint;\n };\n\n prototypeAccessors.tint.set = function (value)\n {\n this.shader.tint = value;\n };\n\n /**\n * The texture that the Mesh uses.\n *\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this.shader.texture;\n };\n\n prototypeAccessors.texture.set = function (value)\n {\n this.shader.texture = value;\n };\n\n /**\n * Standard renderer draw.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._render = function _render (renderer)\n {\n // set properties for batching..\n // TODO could use a different way to grab verts?\n var vertices = this.geometry.buffers[0].data;\n\n // TODO benchmark check for attribute size..\n if (this.shader.batchable && this.drawMode === DRAW_MODES.TRIANGLES && vertices.length < Mesh.BATCHABLE_SIZE * 2)\n {\n this._renderToBatch(renderer);\n }\n else\n {\n this._renderDefault(renderer);\n }\n };\n\n /**\n * Standard non-batching way of rendering.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._renderDefault = function _renderDefault (renderer)\n {\n var shader = this.shader;\n\n shader.alpha = this.worldAlpha;\n if (shader.update)\n {\n shader.update();\n }\n\n renderer.batch.flush();\n\n if (shader.program.uniformData.translationMatrix)\n {\n shader.uniforms.translationMatrix = this.transform.worldTransform.toArray(true);\n }\n\n // bind and sync uniforms..\n renderer.shader.bind(shader);\n\n // set state..\n renderer.state.set(this.state);\n\n // bind the geometry...\n renderer.geometry.bind(this.geometry, shader);\n\n // then render it\n renderer.geometry.draw(this.drawMode, this.size, this.start, this.geometry.instanceCount);\n };\n\n /**\n * Rendering by using the Batch system.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._renderToBatch = function _renderToBatch (renderer)\n {\n var geometry = this.geometry;\n\n if (this.shader.uvMatrix)\n {\n this.shader.uvMatrix.update();\n this.calculateUvs();\n }\n\n // set properties for batching..\n this.calculateVertices();\n this.indices = geometry.indexBuffer.data;\n this._tintRGB = this.shader._tintRGB;\n this._texture = this.shader.texture;\n\n var pluginName = this.material.pluginName;\n\n renderer.batch.setObjectRenderer(renderer.plugins[pluginName]);\n renderer.plugins[pluginName].render(this);\n };\n\n /**\n * Updates vertexData field based on transform and vertices\n */\n Mesh.prototype.calculateVertices = function calculateVertices ()\n {\n var geometry = this.geometry;\n var vertices = geometry.buffers[0].data;\n\n if (geometry.vertexDirtyId === this.vertexDirty && this._transformID === this.transform._worldID)\n {\n return;\n }\n\n this._transformID = this.transform._worldID;\n\n if (this.vertexData.length !== vertices.length)\n {\n this.vertexData = new Float32Array(vertices.length);\n }\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var vertexData = this.vertexData;\n\n for (var i = 0; i < vertexData.length / 2; i++)\n {\n var x = vertices[(i * 2)];\n var y = vertices[(i * 2) + 1];\n\n vertexData[(i * 2)] = (a * x) + (c * y) + tx;\n vertexData[(i * 2) + 1] = (b * x) + (d * y) + ty;\n }\n\n if (this._roundPixels)\n {\n for (var i$1 = 0; i$1 < vertexData.length; i$1++)\n {\n vertexData[i$1] = Math.round(vertexData[i$1]);\n }\n }\n\n this.vertexDirty = geometry.vertexDirtyId;\n };\n\n /**\n * Updates uv field based on from geometry uv's or batchUvs\n */\n Mesh.prototype.calculateUvs = function calculateUvs ()\n {\n var geomUvs = this.geometry.buffers[1];\n\n if (!this.shader.uvMatrix.isSimple)\n {\n if (!this.batchUvs)\n {\n this.batchUvs = new MeshBatchUvs(geomUvs, this.shader.uvMatrix);\n }\n this.batchUvs.update();\n this.uvs = this.batchUvs.data;\n }\n else\n {\n this.uvs = geomUvs.data;\n }\n };\n\n /**\n * Updates the bounds of the mesh as a rectangle. The bounds calculation takes the worldTransform into account.\n * there must be a aVertexPosition attribute present in the geometry for bounds to be calculated correctly.\n *\n * @protected\n */\n Mesh.prototype._calculateBounds = function _calculateBounds ()\n {\n this.calculateVertices();\n\n this._bounds.addVertexData(this.vertexData, 0, this.vertexData.length);\n };\n\n /**\n * Tests if a point is inside this mesh. Works only for PIXI.DRAW_MODES.TRIANGLES.\n *\n * @param {PIXI.Point} point the point to test\n * @return {boolean} the result of the test\n */\n Mesh.prototype.containsPoint = function containsPoint (point)\n {\n if (!this.getBounds().contains(point.x, point.y))\n {\n return false;\n }\n\n this.worldTransform.applyInverse(point, tempPoint);\n\n var vertices = this.geometry.getBuffer('aVertexPosition').data;\n\n var points = tempPolygon.points;\n var indices = this.geometry.getIndex().data;\n var len = indices.length;\n var step = this.drawMode === 4 ? 3 : 1;\n\n for (var i = 0; i + 2 < len; i += step)\n {\n var ind0 = indices[i] * 2;\n var ind1 = indices[i + 1] * 2;\n var ind2 = indices[i + 2] * 2;\n\n points[0] = vertices[ind0];\n points[1] = vertices[ind0 + 1];\n points[2] = vertices[ind1];\n points[3] = vertices[ind1 + 1];\n points[4] = vertices[ind2];\n points[5] = vertices[ind2 + 1];\n\n if (tempPolygon.contains(tempPoint.x, tempPoint.y))\n {\n return true;\n }\n }\n\n return false;\n };\n /**\n * Destroys the Mesh object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n */\n Mesh.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.geometry.refCount--;\n if (this.geometry.refCount === 0)\n {\n this.geometry.dispose();\n }\n\n this.geometry = null;\n this.shader = null;\n this.state = null;\n this.uvs = null;\n this.indices = null;\n this.vertexData = null;\n };\n\n Object.defineProperties( Mesh.prototype, prototypeAccessors );\n\n return Mesh;\n}(Container));\n\n/**\n * The maximum number of vertices to consider batchable. Generally, the complexity\n * of the geometry.\n * @memberof PIXI.Mesh\n * @static\n * @member {number} BATCHABLE_SIZE\n */\nMesh.BATCHABLE_SIZE = 100;\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform mat3 uTextureMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = (uTextureMatrix * vec3(aTextureCoord, 1.0)).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\nuniform vec4 uColor;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void)\\n{\\n gl_FragColor = texture2D(uSampler, vTextureCoord) * uColor;\\n}\\n\";\n\n/**\n * Slightly opinionated default shader for PixiJS 2D objects.\n * @class\n * @memberof PIXI\n * @extends PIXI.Shader\n */\nvar MeshMaterial = /*@__PURE__*/(function (Shader) {\n function MeshMaterial(uSampler, options)\n {\n var uniforms = {\n uSampler: uSampler,\n alpha: 1,\n uTextureMatrix: Matrix.IDENTITY,\n uColor: new Float32Array([1, 1, 1, 1]),\n };\n\n // Set defaults\n options = Object.assign({\n tint: 0xFFFFFF,\n alpha: 1,\n pluginName: 'batch',\n }, options);\n\n if (options.uniforms)\n {\n Object.assign(uniforms, options.uniforms);\n }\n\n Shader.call(this, options.program || Program.from(vertex, fragment), uniforms);\n\n /**\n * Only do update if tint or alpha changes.\n * @member {boolean}\n * @private\n * @default false\n */\n this._colorDirty = false;\n\n /**\n * TextureMatrix instance for this Mesh, used to track Texture changes\n *\n * @member {PIXI.TextureMatrix}\n * @readonly\n */\n this.uvMatrix = new TextureMatrix(uSampler);\n\n /**\n * `true` if shader can be batch with the renderer's batch system.\n * @member {boolean}\n * @default true\n */\n this.batchable = options.program === undefined;\n\n /**\n * Renderer plugin for batching\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = options.pluginName;\n\n this.tint = options.tint;\n this.alpha = options.alpha;\n }\n\n if ( Shader ) MeshMaterial.__proto__ = Shader;\n MeshMaterial.prototype = Object.create( Shader && Shader.prototype );\n MeshMaterial.prototype.constructor = MeshMaterial;\n\n var prototypeAccessors = { texture: { configurable: true },alpha: { configurable: true },tint: { configurable: true } };\n\n /**\n * Reference to the texture being rendered.\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this.uniforms.uSampler;\n };\n prototypeAccessors.texture.set = function (value)\n {\n if (this.uniforms.uSampler !== value)\n {\n this.uniforms.uSampler = value;\n this.uvMatrix.texture = value;\n }\n };\n\n /**\n * This gets automatically set by the object using this.\n *\n * @default 1\n * @member {number}\n */\n prototypeAccessors.alpha.set = function (value)\n {\n if (value === this._alpha) { return; }\n\n this._alpha = value;\n this._colorDirty = true;\n };\n prototypeAccessors.alpha.get = function ()\n {\n return this._alpha;\n };\n\n /**\n * Multiply tint for the material.\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.set = function (value)\n {\n if (value === this._tint) { return; }\n\n this._tint = value;\n this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16);\n this._colorDirty = true;\n };\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n /**\n * Gets called automatically by the Mesh. Intended to be overridden for custom\n * MeshMaterial objects.\n */\n MeshMaterial.prototype.update = function update ()\n {\n if (this._colorDirty)\n {\n this._colorDirty = false;\n var baseTexture = this.texture.baseTexture;\n\n premultiplyTintToRgba(this._tint, this._alpha, this.uniforms.uColor, baseTexture.premultiplyAlpha);\n }\n if (this.uvMatrix.update())\n {\n this.uniforms.uTextureMatrix = this.uvMatrix.mapCoord;\n }\n };\n\n Object.defineProperties( MeshMaterial.prototype, prototypeAccessors );\n\n return MeshMaterial;\n}(Shader));\n\n/**\n * Standard 2D geometry used in PixiJS.\n *\n * Geometry can be defined without passing in a style or data if required.\n *\n * ```js\n * const geometry = new PIXI.Geometry();\n *\n * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2);\n * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1], 2);\n * geometry.addIndex([0,1,2,1,3,2]);\n *\n * ```\n * @class\n * @memberof PIXI\n * @extends PIXI.Geometry\n */\nvar MeshGeometry = /*@__PURE__*/(function (Geometry) {\n function MeshGeometry(vertices, uvs, index)\n {\n Geometry.call(this);\n\n var verticesBuffer = new Buffer(vertices);\n var uvsBuffer = new Buffer(uvs, true);\n var indexBuffer = new Buffer(index, true, true);\n\n this.addAttribute('aVertexPosition', verticesBuffer, 2, false, TYPES.FLOAT)\n .addAttribute('aTextureCoord', uvsBuffer, 2, false, TYPES.FLOAT)\n .addIndex(indexBuffer);\n\n /**\n * Dirty flag to limit update calls on Mesh. For example,\n * limiting updates on a single Mesh instance with a shared Geometry\n * within the render loop.\n * @private\n * @member {number}\n * @default -1\n */\n this._updateId = -1;\n }\n\n if ( Geometry ) MeshGeometry.__proto__ = Geometry;\n MeshGeometry.prototype = Object.create( Geometry && Geometry.prototype );\n MeshGeometry.prototype.constructor = MeshGeometry;\n\n var prototypeAccessors = { vertexDirtyId: { configurable: true } };\n\n /**\n * If the vertex position is updated.\n * @member {number}\n * @readonly\n * @private\n */\n prototypeAccessors.vertexDirtyId.get = function ()\n {\n return this.buffers[0]._updateID;\n };\n\n Object.defineProperties( MeshGeometry.prototype, prototypeAccessors );\n\n return MeshGeometry;\n}(Geometry));\n\nexport { Mesh, MeshBatchUvs, MeshGeometry, MeshMaterial };\n//# sourceMappingURL=mesh.es.js.map\n","/*!\n * pixi.js - v5.1.4\n * Compiled Sat, 21 Sep 2019 07:35:21 UTC\n *\n * pixi.js is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport '@pixi/polyfill';\nimport { AccessibilityManager } from '@pixi/accessibility';\nimport * as accessibility from '@pixi/accessibility';\nexport { accessibility };\nimport { Extract } from '@pixi/extract';\nimport * as extract from '@pixi/extract';\nexport { extract };\nimport { InteractionManager } from '@pixi/interaction';\nimport * as interaction from '@pixi/interaction';\nexport { interaction };\nimport { Prepare } from '@pixi/prepare';\nimport * as prepare from '@pixi/prepare';\nexport { prepare };\nimport { deprecation } from '@pixi/utils';\nimport * as utils from '@pixi/utils';\nexport { utils };\nimport { Application } from '@pixi/app';\nexport * from '@pixi/app';\nimport { Renderer, BatchRenderer } from '@pixi/core';\nexport * from '@pixi/core';\nimport { Loader, AppLoaderPlugin } from '@pixi/loaders';\nexport * from '@pixi/loaders';\nimport { ParticleRenderer } from '@pixi/particles';\nexport * from '@pixi/particles';\nimport { SpritesheetLoader } from '@pixi/spritesheet';\nexport * from '@pixi/spritesheet';\nimport { TilingSpriteRenderer } from '@pixi/sprite-tiling';\nexport * from '@pixi/sprite-tiling';\nimport { BitmapFontLoader } from '@pixi/text-bitmap';\nexport * from '@pixi/text-bitmap';\nimport { TickerPlugin } from '@pixi/ticker';\nexport * from '@pixi/ticker';\nimport { AlphaFilter } from '@pixi/filter-alpha';\nimport { BlurFilter, BlurFilterPass } from '@pixi/filter-blur';\nimport { ColorMatrixFilter } from '@pixi/filter-color-matrix';\nimport { DisplacementFilter } from '@pixi/filter-displacement';\nimport { FXAAFilter } from '@pixi/filter-fxaa';\nimport { NoiseFilter } from '@pixi/filter-noise';\nimport '@pixi/mixin-cache-as-bitmap';\nimport '@pixi/mixin-get-child-by-name';\nimport '@pixi/mixin-get-global-position';\nexport * from '@pixi/constants';\nexport * from '@pixi/display';\nexport * from '@pixi/graphics';\nexport * from '@pixi/math';\nexport * from '@pixi/mesh';\nexport * from '@pixi/mesh-extras';\nexport * from '@pixi/runner';\nexport * from '@pixi/sprite';\nexport * from '@pixi/sprite-animated';\nexport * from '@pixi/text';\nexport * from '@pixi/settings';\n\nvar v5 = '5.0.0';\n\n/**\n * Deprecations (backward compatibilities) are automatically applied for browser bundles\n * in the UMD module format. If using Webpack or Rollup, you'll need to apply these\n * deprecations manually by doing something like this:\n * @example\n * import * as PIXI from 'pixi.js';\n * PIXI.useDeprecated(); // MUST be bound to namespace\n * @memberof PIXI\n * @function useDeprecated\n */\nfunction useDeprecated()\n{\n var PIXI = this;\n\n Object.defineProperties(PIXI, {\n /**\n * @constant {RegExp|string} SVG_SIZE\n * @memberof PIXI\n * @see PIXI.resources.SVGResource.SVG_SIZE\n * @deprecated since 5.0.0\n */\n SVG_SIZE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.utils.SVG_SIZE property has moved to PIXI.resources.SVGResource.SVG_SIZE');\n\n return PIXI.SVGResource.SVG_SIZE;\n },\n },\n\n /**\n * @class PIXI.TransformStatic\n * @deprecated since 5.0.0\n * @see PIXI.Transform\n */\n TransformStatic: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TransformStatic class has been removed, use PIXI.Transform');\n\n return PIXI.Transform;\n },\n },\n\n /**\n * @class PIXI.TransformBase\n * @deprecated since 5.0.0\n * @see PIXI.Transform\n */\n TransformBase: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TransformBase class has been removed, use PIXI.Transform');\n\n return PIXI.Transform;\n },\n },\n\n /**\n * Constants that specify the transform type.\n *\n * @static\n * @constant\n * @name TRANSFORM_MODE\n * @memberof PIXI\n * @enum {number}\n * @deprecated since 5.0.0\n * @property {number} STATIC\n * @property {number} DYNAMIC\n */\n TRANSFORM_MODE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TRANSFORM_MODE property has been removed');\n\n return { STATIC: 0, DYNAMIC: 1 };\n },\n },\n\n /**\n * @class PIXI.WebGLRenderer\n * @see PIXI.Renderer\n * @deprecated since 5.0.0\n */\n WebGLRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.WebGLRenderer class has moved to PIXI.Renderer');\n\n return PIXI.Renderer;\n },\n },\n\n /**\n * @class PIXI.CanvasRenderTarget\n * @see PIXI.utils.CanvasRenderTarget\n * @deprecated since 5.0.0\n */\n CanvasRenderTarget: {\n get: function get()\n {\n deprecation(v5, 'PIXI.CanvasRenderTarget class has moved to PIXI.utils.CanvasRenderTarget');\n\n return PIXI.utils.CanvasRenderTarget;\n },\n },\n\n /**\n * @memberof PIXI\n * @name loader\n * @type {PIXI.Loader}\n * @see PIXI.Loader.shared\n * @deprecated since 5.0.0\n */\n loader: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loader instance has moved to PIXI.Loader.shared');\n\n return PIXI.Loader.shared;\n },\n },\n\n /**\n * @class PIXI.FilterManager\n * @see PIXI.systems.FilterSystem\n * @deprecated since 5.0.0\n */\n FilterManager: {\n get: function get()\n {\n deprecation(v5, 'PIXI.FilterManager class has moved to PIXI.systems.FilterSystem');\n\n return PIXI.systems.FilterSystem;\n },\n },\n\n /**\n * @namespace PIXI.CanvasTinter\n * @see PIXI.canvasUtils\n * @deprecated since 5.2.0\n */\n CanvasTinter: {\n get: function get()\n {\n deprecation('5.2.0', 'PIXI.CanvasTinter namespace has moved to PIXI.canvasUtils');\n\n return PIXI.canvasUtils;\n },\n },\n\n /**\n * @namespace PIXI.GroupD8\n * @see PIXI.groupD8\n * @deprecated since 5.2.0\n */\n GroupD8: {\n get: function get()\n {\n deprecation('5.2.0', 'PIXI.GroupD8 namespace has moved to PIXI.groupD8');\n\n return PIXI.groupD8;\n },\n },\n });\n\n /**\n * This namespace has been removed. All classes previous nested\n * under this namespace have been moved to the top-level `PIXI` object.\n * @namespace PIXI.extras\n * @deprecated since 5.0.0\n */\n PIXI.extras = {};\n\n Object.defineProperties(PIXI.extras, {\n /**\n * @class PIXI.extras.TilingSprite\n * @see PIXI.TilingSprite\n * @deprecated since 5.0.0\n */\n TilingSprite: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.TilingSprite class has moved to PIXI.TilingSprite');\n\n return PIXI.TilingSprite;\n },\n },\n /**\n * @class PIXI.extras.TilingSpriteRenderer\n * @see PIXI.TilingSpriteRenderer\n * @deprecated since 5.0.0\n */\n TilingSpriteRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.TilingSpriteRenderer class has moved to PIXI.TilingSpriteRenderer');\n\n return PIXI.TilingSpriteRenderer;\n },\n },\n /**\n * @class PIXI.extras.AnimatedSprite\n * @see PIXI.AnimatedSprite\n * @deprecated since 5.0.0\n */\n AnimatedSprite: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.AnimatedSprite class has moved to PIXI.AnimatedSprite');\n\n return PIXI.AnimatedSprite;\n },\n },\n /**\n * @class PIXI.extras.BitmapText\n * @see PIXI.BitmapText\n * @deprecated since 5.0.0\n */\n BitmapText: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.BitmapText class has moved to PIXI.BitmapText');\n\n return PIXI.BitmapText;\n },\n },\n });\n\n Object.defineProperties(PIXI.utils, {\n /**\n * @function PIXI.utils.getSvgSize\n * @see PIXI.resources.SVGResource.getSize\n * @deprecated since 5.0.0\n */\n getSvgSize: {\n get: function get()\n {\n deprecation(v5, 'PIXI.utils.getSvgSize function has moved to PIXI.resources.SVGResource.getSize');\n\n return PIXI.SVGResource.getSize;\n },\n },\n });\n\n /**\n * All classes on this namespace have moved to the high-level `PIXI` object.\n * @namespace PIXI.mesh\n * @deprecated since 5.0.0\n */\n PIXI.mesh = {};\n\n Object.defineProperties(PIXI.mesh, {\n /**\n * @class PIXI.mesh.Mesh\n * @see PIXI.SimpleMesh\n * @deprecated since 5.0.0\n */\n Mesh: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Mesh class has moved to PIXI.SimpleMesh');\n\n return PIXI.SimpleMesh;\n },\n },\n /**\n * @class PIXI.mesh.NineSlicePlane\n * @see PIXI.NineSlicePlane\n * @deprecated since 5.0.0\n */\n NineSlicePlane: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.NineSlicePlane class has moved to PIXI.NineSlicePlane');\n\n return PIXI.NineSlicePlane;\n },\n },\n /**\n * @class PIXI.mesh.Plane\n * @see PIXI.SimplePlane\n * @deprecated since 5.0.0\n */\n Plane: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Plane class has moved to PIXI.SimplePlane');\n\n return PIXI.SimplePlane;\n },\n },\n /**\n * @class PIXI.mesh.Rope\n * @see PIXI.SimpleRope\n * @deprecated since 5.0.0\n */\n Rope: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Rope class has moved to PIXI.SimpleRope');\n\n return PIXI.SimpleRope;\n },\n },\n /**\n * @class PIXI.mesh.RawMesh\n * @see PIXI.Mesh\n * @deprecated since 5.0.0\n */\n RawMesh: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.RawMesh class has moved to PIXI.Mesh');\n\n return PIXI.Mesh;\n },\n },\n /**\n * @class PIXI.mesh.CanvasMeshRenderer\n * @see PIXI.CanvasMeshRenderer\n * @deprecated since 5.0.0\n */\n CanvasMeshRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.CanvasMeshRenderer class has moved to PIXI.CanvasMeshRenderer');\n\n return PIXI.CanvasMeshRenderer;\n },\n },\n /**\n * @class PIXI.mesh.MeshRenderer\n * @see PIXI.MeshRenderer\n * @deprecated since 5.0.0\n */\n MeshRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.MeshRenderer class has moved to PIXI.MeshRenderer');\n\n return PIXI.MeshRenderer;\n },\n },\n });\n\n /**\n * This namespace has been removed and items have been moved to\n * the top-level `PIXI` object.\n * @namespace PIXI.particles\n * @deprecated since 5.0.0\n */\n PIXI.particles = {};\n\n Object.defineProperties(PIXI.particles, {\n /**\n * @class PIXI.particles.ParticleContainer\n * @deprecated since 5.0.0\n * @see PIXI.ParticleContainer\n */\n ParticleContainer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.particles.ParticleContainer class has moved to PIXI.ParticleContainer');\n\n return PIXI.ParticleContainer;\n },\n },\n /**\n * @class PIXI.particles.ParticleRenderer\n * @deprecated since 5.0.0\n * @see PIXI.ParticleRenderer\n */\n ParticleRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.particles.ParticleRenderer class has moved to PIXI.ParticleRenderer');\n\n return PIXI.ParticleRenderer;\n },\n },\n });\n\n /**\n * This namespace has been removed and items have been moved to\n * the top-level `PIXI` object.\n * @namespace PIXI.ticker\n * @deprecated since 5.0.0\n */\n PIXI.ticker = {};\n\n Object.defineProperties(PIXI.ticker, {\n /**\n * @class PIXI.ticker.Ticker\n * @deprecated since 5.0.0\n * @see PIXI.Ticker\n */\n Ticker: {\n get: function get()\n {\n deprecation(v5, 'PIXI.ticker.Ticker class has moved to PIXI.Ticker');\n\n return PIXI.Ticker;\n },\n },\n /**\n * @name PIXI.ticker.shared\n * @type {PIXI.Ticker}\n * @deprecated since 5.0.0\n * @see PIXI.Ticker.shared\n */\n shared: {\n get: function get()\n {\n deprecation(v5, 'PIXI.ticker.shared instance has moved to PIXI.Ticker.shared');\n\n return PIXI.Ticker.shared;\n },\n },\n });\n\n /**\n * All classes on this namespace have moved to the high-level `PIXI` object.\n * @namespace PIXI.loaders\n * @deprecated since 5.0.0\n */\n PIXI.loaders = {};\n\n Object.defineProperties(PIXI.loaders, {\n /**\n * @class PIXI.loaders.Loader\n * @see PIXI.Loader\n * @deprecated since 5.0.0\n */\n Loader: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.Loader class has moved to PIXI.Loader');\n\n return PIXI.Loader;\n },\n },\n /**\n * @class PIXI.loaders.Resource\n * @see PIXI.LoaderResource\n * @deprecated since 5.0.0\n */\n Resource: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.Resource class has moved to PIXI.LoaderResource');\n\n return PIXI.LoaderResource;\n },\n },\n /**\n * @function PIXI.loaders.bitmapFontParser\n * @see PIXI.BitmapFontLoader.use\n * @deprecated since 5.0.0\n */\n bitmapFontParser: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.bitmapFontParser function has moved to PIXI.BitmapFontLoader.use');\n\n return PIXI.BitmapFontLoader.use;\n },\n },\n /**\n * @function PIXI.loaders.parseBitmapFontData\n * @see PIXI.BitmapFontLoader.parse\n * @deprecated since 5.0.0\n */\n parseBitmapFontData: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.parseBitmapFontData function has moved to PIXI.BitmapFontLoader.parse');\n\n return PIXI.BitmapFontLoader.parse;\n },\n },\n /**\n * @function PIXI.loaders.spritesheetParser\n * @see PIXI.SpritesheetLoader.use\n * @deprecated since 5.0.0\n */\n spritesheetParser: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.spritesheetParser function has moved to PIXI.SpritesheetLoader.use');\n\n return PIXI.SpritesheetLoader.use;\n },\n },\n /**\n * @function PIXI.loaders.getResourcePath\n * @see PIXI.SpritesheetLoader.getResourcePath\n * @deprecated since 5.0.0\n */\n getResourcePath: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.getResourcePath property has moved to PIXI.SpritesheetLoader.getResourcePath');\n\n return PIXI.SpritesheetLoader.getResourcePath;\n },\n },\n });\n\n /**\n * @function PIXI.loaders.Loader.addPixiMiddleware\n * @see PIXI.Loader.registerPlugin\n * @deprecated since 5.0.0\n * @param {function} middleware\n */\n PIXI.Loader.addPixiMiddleware = function addPixiMiddleware(middleware)\n {\n deprecation(v5,\n 'PIXI.loaders.Loader.addPixiMiddleware function is deprecated, use PIXI.loaders.Loader.registerPlugin'\n );\n\n return PIXI.loaders.Loader.registerPlugin({ use: middleware() });\n };\n\n /**\n * @class PIXI.extract.WebGLExtract\n * @deprecated since 5.0.0\n * @see PIXI.extract.Extract\n */\n Object.defineProperty(PIXI.extract, 'WebGLExtract', {\n get: function get()\n {\n deprecation(v5, 'PIXI.extract.WebGLExtract method has moved to PIXI.extract.Extract');\n\n return PIXI.extract.Extract;\n },\n });\n\n /**\n * @class PIXI.prepare.WebGLPrepare\n * @deprecated since 5.0.0\n * @see PIXI.prepare.Prepare\n */\n Object.defineProperty(PIXI.prepare, 'WebGLPrepare', {\n get: function get()\n {\n deprecation(v5, 'PIXI.prepare.WebGLPrepare class has moved to PIXI.prepare.Prepare');\n\n return PIXI.prepare.Prepare;\n },\n });\n\n /**\n * @method PIXI.Container#_renderWebGL\n * @private\n * @deprecated since 5.0.0\n * @see PIXI.Container#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype._renderWebGL = function _renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container._renderWebGL method has moved to PIXI.Container._render');\n\n this._render(renderer);\n };\n\n /**\n * @method PIXI.Container#renderWebGL\n * @deprecated since 5.0.0\n * @see PIXI.Container#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype.renderWebGL = function renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container.renderWebGL method has moved to PIXI.Container.render');\n\n this.render(renderer);\n };\n\n /**\n * @method PIXI.DisplayObject#renderWebGL\n * @deprecated since 5.0.0\n * @see PIXI.DisplayObject#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.DisplayObject.prototype.renderWebGL = function renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.DisplayObject.renderWebGL method has moved to PIXI.DisplayObject.render');\n\n this.render(renderer);\n };\n\n /**\n * @method PIXI.Container#renderAdvancedWebGL\n * @deprecated since 5.0.0\n * @see PIXI.Container#renderAdvanced\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype.renderAdvancedWebGL = function renderAdvancedWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container.renderAdvancedWebGL method has moved to PIXI.Container.renderAdvanced');\n\n this.renderAdvanced(renderer);\n };\n\n Object.defineProperties(PIXI.settings, {\n /**\n * Default transform type.\n *\n * @static\n * @deprecated since 5.0.0\n * @memberof PIXI.settings\n * @type {PIXI.TRANSFORM_MODE}\n * @default PIXI.TRANSFORM_MODE.STATIC\n */\n TRANSFORM_MODE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.settings.TRANSFORM_MODE property has been removed');\n\n return 0;\n },\n set: function set()\n {\n deprecation(v5, 'PIXI.settings.TRANSFORM_MODE property has been removed');\n },\n },\n });\n\n var BaseTexture = PIXI.BaseTexture;\n\n /**\n * @method loadSource\n * @memberof PIXI.BaseTexture#\n * @deprecated since 5.0.0\n */\n BaseTexture.prototype.loadSource = function loadSource(image)\n {\n deprecation(v5, 'PIXI.BaseTexture.loadSource method has been deprecated');\n\n var resource = PIXI.resources.autoDetectResource(image);\n\n resource.internal = true;\n\n this.setResource(resource);\n this.update();\n };\n\n Object.defineProperties(BaseTexture.prototype, {\n /**\n * @name PIXI.BaseTexture#hasLoaded\n * @type {boolean}\n * @deprecated since 5.0.0\n * @readonly\n * @see PIXI.BaseTexture#valid\n */\n hasLoaded: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.hasLoaded property has been removed, use PIXI.BaseTexture.valid');\n\n return this.valid;\n },\n },\n /**\n * @name PIXI.BaseTexture#imageUrl\n * @type {string}\n * @deprecated since 5.0.0\n * @see PIXI.resource.ImageResource#url\n */\n imageUrl: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.imageUrl property has been removed, use PIXI.BaseTexture.resource.url');\n\n return this.resource && this.resource.url;\n },\n\n set: function set(imageUrl)\n {\n deprecation(v5, 'PIXI.BaseTexture.imageUrl property has been removed, use PIXI.BaseTexture.resource.url');\n\n if (this.resource)\n {\n this.resource.url = imageUrl;\n }\n },\n },\n /**\n * @name PIXI.BaseTexture#source\n * @type {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement}\n * @deprecated since 5.0.0\n * @readonly\n * @see PIXI.resources.BaseImageResource#source\n */\n source: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.source property has been moved, use `PIXI.BaseTexture.resource.source`');\n\n return this.resource && this.resource.source;\n },\n set: function set(source)\n {\n deprecation(v5, 'PIXI.BaseTexture.source property has been moved, use `PIXI.BaseTexture.resource.source` '\n + 'if you want to set HTMLCanvasElement. Otherwise, create new BaseTexture.');\n\n if (this.resource)\n {\n this.resource.source = source;\n }\n },\n },\n });\n\n /**\n * @method fromImage\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromImage = function fromImage(canvas, crossorigin, scaleMode, scale)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromImage method has been replaced with PIXI.BaseTexture.from');\n\n var resourceOptions = { scale: scale, crossorigin: crossorigin };\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode, resourceOptions: resourceOptions });\n };\n\n /**\n * @method fromCanvas\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromCanvas = function fromCanvas(canvas, scaleMode)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromCanvas method has been replaced with PIXI.BaseTexture.from');\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode });\n };\n\n /**\n * @method fromSVG\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromSVG = function fromSVG(canvas, crossorigin, scaleMode, scale)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromSVG method has been replaced with PIXI.BaseTexture.from');\n\n var resourceOptions = { scale: scale, crossorigin: crossorigin };\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode, resourceOptions: resourceOptions });\n };\n\n /**\n * @method PIXI.Point#copy\n * @deprecated since 5.0.0\n * @see PIXI.Point#copyFrom\n */\n PIXI.Point.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Point.copy method has been replaced with PIXI.Point.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.ObservablePoint#copy\n * @deprecated since 5.0.0\n * @see PIXI.ObservablePoint#copyFrom\n */\n PIXI.ObservablePoint.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.ObservablePoint.copy method has been replaced with PIXI.ObservablePoint.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.Rectangle#copy\n * @deprecated since 5.0.0\n * @see PIXI.Rectangle#copyFrom\n */\n PIXI.Rectangle.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Rectangle.copy method has been replaced with PIXI.Rectangle.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.Matrix#copy\n * @deprecated since 5.0.0\n * @see PIXI.Matrix#copyTo\n */\n PIXI.Matrix.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Matrix.copy method has been replaced with PIXI.Matrix.copyTo');\n\n return this.copyTo(p);\n };\n\n /**\n * @method PIXI.systems.StateSystem#setState\n * @deprecated since 5.1.0\n * @see PIXI.systems.StateSystem#set\n */\n PIXI.systems.StateSystem.prototype.setState = function setState(s)\n {\n deprecation('v5.1.0', 'StateSystem.setState has been renamed to StateSystem.set');\n\n return this.set(s);\n };\n\n Object.assign(PIXI.systems.FilterSystem.prototype, {\n /**\n * @method PIXI.FilterManager#getRenderTarget\n * @deprecated since 5.0.0\n * @see PIXI.systems.FilterSystem#getFilterTexture\n */\n getRenderTarget: function getRenderTarget(clear, resolution)\n {\n deprecation(v5,\n 'PIXI.FilterManager.getRenderTarget method has been replaced with PIXI.systems.FilterSystem#getFilterTexture'\n );\n\n return this.getFilterTexture(resolution);\n },\n\n /**\n * @method PIXI.FilterManager#returnRenderTarget\n * @deprecated since 5.0.0\n * @see PIXI.systems.FilterSystem#returnFilterTexture\n */\n returnRenderTarget: function returnRenderTarget(renderTexture)\n {\n deprecation(v5,\n 'PIXI.FilterManager.returnRenderTarget method has been replaced with '\n + 'PIXI.systems.FilterSystem.returnFilterTexture'\n );\n\n this.returnFilterTexture(renderTexture);\n },\n\n /**\n * @method PIXI.systems.FilterSystem#calculateScreenSpaceMatrix\n * @deprecated since 5.0.0\n * @param {PIXI.Matrix} outputMatrix - the matrix to output to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n calculateScreenSpaceMatrix: function calculateScreenSpaceMatrix(outputMatrix)\n {\n deprecation(v5, 'PIXI.systems.FilterSystem.calculateScreenSpaceMatrix method is removed, '\n + 'use `(vTextureCoord * inputSize.xy) + outputFrame.xy` instead');\n\n var mappedMatrix = outputMatrix.identity();\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n\n mappedMatrix.translate(sourceFrame.x / destinationFrame.width, sourceFrame.y / destinationFrame.height);\n mappedMatrix.scale(destinationFrame.width, destinationFrame.height);\n\n return mappedMatrix;\n },\n\n /**\n * @method PIXI.systems.FilterSystem#calculateNormalizedScreenSpaceMatrix\n * @deprecated since 5.0.0\n * @param {PIXI.Matrix} outputMatrix - The matrix to output to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n calculateNormalizedScreenSpaceMatrix: function calculateNormalizedScreenSpaceMatrix(outputMatrix)\n {\n deprecation(v5, 'PIXI.systems.FilterManager.calculateNormalizedScreenSpaceMatrix method is removed, '\n + 'use `((vTextureCoord * inputSize.xy) + outputFrame.xy) / outputFrame.zw` instead.');\n\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n var mappedMatrix = outputMatrix.identity();\n\n mappedMatrix.translate(sourceFrame.x / destinationFrame.width, sourceFrame.y / destinationFrame.height);\n\n var translateScaleX = (destinationFrame.width / sourceFrame.width);\n var translateScaleY = (destinationFrame.height / sourceFrame.height);\n\n mappedMatrix.scale(translateScaleX, translateScaleY);\n\n return mappedMatrix;\n },\n });\n\n Object.defineProperties(PIXI.RenderTexture.prototype, {\n /**\n * @name PIXI.RenderTexture#sourceFrame\n * @type {PIXI.Rectangle}\n * @deprecated since 5.0.0\n * @readonly\n */\n sourceFrame: {\n get: function get()\n {\n deprecation(v5, 'PIXI.RenderTexture.sourceFrame property has been removed');\n\n return this.filterFrame;\n },\n },\n /**\n * @name PIXI.RenderTexture#size\n * @type {PIXI.Rectangle}\n * @deprecated since 5.0.0\n * @readonly\n */\n size: {\n get: function get()\n {\n deprecation(v5, 'PIXI.RenderTexture.size property has been removed');\n\n return this._frame;\n },\n },\n });\n\n /**\n * @class BlurXFilter\n * @memberof PIXI.filters\n * @deprecated since 5.0.0\n * @see PIXI.filters.BlurFilterPass\n */\n var BlurXFilter = /*@__PURE__*/(function (superclass) {\n function BlurXFilter(strength, quality, resolution, kernelSize)\n {\n deprecation(v5, 'PIXI.filters.BlurXFilter class is deprecated, use PIXI.filters.BlurFilterPass');\n\n superclass.call(this, true, strength, quality, resolution, kernelSize);\n }\n\n if ( superclass ) BlurXFilter.__proto__ = superclass;\n BlurXFilter.prototype = Object.create( superclass && superclass.prototype );\n BlurXFilter.prototype.constructor = BlurXFilter;\n\n return BlurXFilter;\n }(PIXI.filters.BlurFilterPass));\n\n /**\n * @class BlurYFilter\n * @memberof PIXI.filters\n * @deprecated since 5.0.0\n * @see PIXI.filters.BlurFilterPass\n */\n var BlurYFilter = /*@__PURE__*/(function (superclass) {\n function BlurYFilter(strength, quality, resolution, kernelSize)\n {\n deprecation(v5, 'PIXI.filters.BlurYFilter class is deprecated, use PIXI.filters.BlurFilterPass');\n\n superclass.call(this, false, strength, quality, resolution, kernelSize);\n }\n\n if ( superclass ) BlurYFilter.__proto__ = superclass;\n BlurYFilter.prototype = Object.create( superclass && superclass.prototype );\n BlurYFilter.prototype.constructor = BlurYFilter;\n\n return BlurYFilter;\n }(PIXI.filters.BlurFilterPass));\n\n Object.assign(PIXI.filters, {\n BlurXFilter: BlurXFilter,\n BlurYFilter: BlurYFilter,\n });\n\n var Sprite = PIXI.Sprite;\n var Texture = PIXI.Texture;\n var Graphics = PIXI.Graphics;\n\n // Support for pixi.js-legacy bifurcation\n // give users a friendly assist to use legacy\n if (!Graphics.prototype.generateCanvasTexture)\n {\n Graphics.prototype.generateCanvasTexture = function generateCanvasTexture()\n {\n deprecation(v5, 'PIXI.Graphics.generateCanvasTexture method is only available in \"pixi.js-legacy\"');\n };\n }\n\n /**\n * @deprecated since 5.0.0\n * @member {PIXI.Graphics} PIXI.Graphics#graphicsData\n * @see PIXI.Graphics#geometry\n * @readonly\n */\n Object.defineProperty(PIXI.Graphics.prototype, 'graphicsData', {\n get: function get()\n {\n deprecation(v5, 'PIXI.Graphics.graphicsData property is deprecated, use PIXI.Graphics.geometry.graphicsData');\n\n return this.geometry.graphicsData;\n },\n });\n\n // Use these to deprecate all the Sprite from* methods\n function spriteFrom(name, source, crossorigin, scaleMode)\n {\n deprecation(v5, (\"PIXI.Sprite.\" + name + \" method is deprecated, use PIXI.Sprite.from\"));\n\n return Sprite.from(source, {\n resourceOptions: {\n scale: scaleMode,\n crossorigin: crossorigin,\n },\n });\n }\n\n /**\n * @deprecated since 5.0.0\n * @see PIXI.Sprite.from\n * @method PIXI.Sprite.fromImage\n * @return {PIXI.Sprite}\n */\n Sprite.fromImage = spriteFrom.bind(null, 'fromImage');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromSVG\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromSVG = spriteFrom.bind(null, 'fromSVG');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromCanvas\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromCanvas = spriteFrom.bind(null, 'fromCanvas');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromVideo\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromVideo = spriteFrom.bind(null, 'fromVideo');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromFrame\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromFrame = spriteFrom.bind(null, 'fromFrame');\n\n // Use these to deprecate all the Texture from* methods\n function textureFrom(name, source, crossorigin, scaleMode)\n {\n deprecation(v5, (\"PIXI.Texture.\" + name + \" method is deprecated, use PIXI.Texture.from\"));\n\n return Texture.from(source, {\n resourceOptions: {\n scale: scaleMode,\n crossorigin: crossorigin,\n },\n });\n }\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromImage\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromImage = textureFrom.bind(null, 'fromImage');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromSVG\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromSVG = textureFrom.bind(null, 'fromSVG');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromCanvas\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromCanvas = textureFrom.bind(null, 'fromCanvas');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromVideo\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromVideo = textureFrom.bind(null, 'fromVideo');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromFrame\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromFrame = textureFrom.bind(null, 'fromFrame');\n\n /**\n * @deprecated since 5.0.0\n * @member {boolean} PIXI.AbstractRenderer#autoResize\n * @see PIXI.AbstractRenderer#autoDensity\n */\n Object.defineProperty(PIXI.AbstractRenderer.prototype, 'autoResize', {\n get: function get()\n {\n deprecation(v5, 'PIXI.AbstractRenderer.autoResize property is deprecated, '\n + 'use PIXI.AbstractRenderer.autoDensity');\n\n return this.autoDensity;\n },\n set: function set(value)\n {\n deprecation(v5, 'PIXI.AbstractRenderer.autoResize property is deprecated, '\n + 'use PIXI.AbstractRenderer.autoDensity');\n\n this.autoDensity = value;\n },\n });\n\n /**\n * @deprecated since 5.0.0\n * @member {PIXI.systems.TextureSystem} PIXI.Renderer#textureManager\n * @see PIXI.Renderer#texture\n */\n Object.defineProperty(PIXI.Renderer.prototype, 'textureManager', {\n get: function get()\n {\n deprecation(v5, 'PIXI.Renderer.textureManager property is deprecated, use PIXI.Renderer.texture');\n\n return this.texture;\n },\n });\n\n /**\n * @namespace PIXI.utils.mixins\n * @deprecated since 5.0.0\n */\n PIXI.utils.mixins = {\n /**\n * @memberof PIXI.utils.mixins\n * @function mixin\n * @deprecated since 5.0.0\n */\n mixin: function mixin()\n {\n deprecation(v5, 'PIXI.utils.mixins.mixin function is no longer available');\n },\n /**\n * @memberof PIXI.utils.mixins\n * @function delayMixin\n * @deprecated since 5.0.0\n */\n delayMixin: function delayMixin()\n {\n deprecation(v5, 'PIXI.utils.mixins.delayMixin function is no longer available');\n },\n /**\n * @memberof PIXI.utils.mixins\n * @function performMixins\n * @deprecated since 5.0.0\n */\n performMixins: function performMixins()\n {\n deprecation(v5, 'PIXI.utils.mixins.performMixins function is no longer available');\n },\n };\n}\n\n// Install renderer plugins\nRenderer.registerPlugin('accessibility', AccessibilityManager);\nRenderer.registerPlugin('extract', Extract);\nRenderer.registerPlugin('interaction', InteractionManager);\nRenderer.registerPlugin('particle', ParticleRenderer);\nRenderer.registerPlugin('prepare', Prepare);\nRenderer.registerPlugin('batch', BatchRenderer);\nRenderer.registerPlugin('tilingSprite', TilingSpriteRenderer);\n\nLoader.registerPlugin(BitmapFontLoader);\nLoader.registerPlugin(SpritesheetLoader);\n\nApplication.registerPlugin(TickerPlugin);\nApplication.registerPlugin(AppLoaderPlugin);\n\n/**\n * String of the current PIXI version.\n *\n * @static\n * @constant\n * @memberof PIXI\n * @name VERSION\n * @type {string}\n */\nvar VERSION = '5.1.4';\n\n/**\n * @namespace PIXI\n */\n\n/**\n * This namespace contains WebGL-only display filters that can be applied\n * to DisplayObjects using the {@link PIXI.DisplayObject#filters filters} property.\n *\n * Since PixiJS only had a handful of built-in filters, additional filters\n * can be downloaded {@link https://github.com/pixijs/pixi-filters here} from the\n * PixiJS Filters repository.\n *\n * All filters must extend {@link PIXI.Filter}.\n *\n * @example\n * // Create a new application\n * const app = new PIXI.Application();\n *\n * // Draw a green rectangle\n * const rect = new PIXI.Graphics()\n * .beginFill(0x00ff00)\n * .drawRect(40, 40, 200, 200);\n *\n * // Add a blur filter\n * rect.filters = [new PIXI.filters.BlurFilter()];\n *\n * // Display rectangle\n * app.stage.addChild(rect);\n * document.body.appendChild(app.view);\n * @namespace PIXI.filters\n */\nvar filters = {\n AlphaFilter: AlphaFilter,\n BlurFilter: BlurFilter,\n BlurFilterPass: BlurFilterPass,\n ColorMatrixFilter: ColorMatrixFilter,\n DisplacementFilter: DisplacementFilter,\n FXAAFilter: FXAAFilter,\n NoiseFilter: NoiseFilter,\n};\n\nexport { VERSION, filters, useDeprecated };\n//# sourceMappingURL=pixi.es.js.map\n","import { ImVec4 } from \"imgui-js\";\n\nexport function fromConstructor(constr: any):((params: any[]) => any)\n{\n return constr as unknown as ((params: any[]) => any)\n}\n\nexport function vec2col(v: ImVec4): number\n{\n return (((v.x * 255) & 0xFF) << 16) +\n (((v.y * 255) & 0xFF) << 8) +\n (((v.z * 255) & 0xFF) << 0);\n}\n","import * as ImGui from \"imgui-js\";\nimport { ImVec2 } from \"imgui-js\";\nimport * as PIXI from \"pixi.js\";\nimport * as U from \"./utils\";\n\nlet clipboard_text: string = \"\";\n\nconst contexts: ImGui.ImGuiContext[] = [];\nconst contextIOs: ImGui.ImGuiIO[] = [];\nlet isFirstWindow: boolean = true;\n\nclass ImGuiImplInternalRenderer extends PIXI.ObjectRenderer\n{\n constructor(r: PIXI.Renderer)\n {\n super(r);\n }\n render(owner: PIXI.DisplayObject): void\n {\n if (!(owner instanceof ImGuiWindowLayer)) return;\n\n const window: ImGuiWindow = (owner as ImGuiWindowLayer).window;\n\n const io: ImGui.ImGuiIO = window.io;\n const draw_data: ImGui.ImDrawData = ImGui.GetDrawData();\n if (draw_data === null) { throw new Error(); }\n\n gl || console.log(draw_data);\n\n // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates)\n const fb_width: number = io.DisplaySize.x * io.DisplayFramebufferScale.x;\n const fb_height: number = io.DisplaySize.y * io.DisplayFramebufferScale.y;\n if (fb_width === 0 || fb_height === 0) {\n return;\n }\n draw_data.ScaleClipRects(io.DisplayFramebufferScale);\n\n // Backup GL state\n const last_program: WebGLProgram | null = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null;\n const last_active_texture: GLenum | null = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null;\n gl && gl.activeTexture(gl.TEXTURE0);\n const last_texture0: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null;\n const last_vertex_array: WebGLVertexArrayObject | null = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null;\n const last_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null;\n const last_element_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null;\n // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode);\n const last_viewport: Int32Array | null = gl && gl.getParameter(gl.VIEWPORT) || null;\n const last_scissor_box: Int32Array | null = gl && gl.getParameter(gl.SCISSOR_BOX) || null;\n const last_blend_src_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null;\n const last_blend_dst_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_RGB) || null;\n const last_blend_src_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null;\n const last_blend_dst_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null;\n const last_blend_equation_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null;\n const last_blend_equation_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null;\n const last_enable_blend: GLboolean | null = gl && gl.getParameter(gl.BLEND) || null;\n const last_enable_cull_face: GLboolean | null = gl && gl.getParameter(gl.CULL_FACE) || null;\n const last_enable_depth_test: GLboolean | null = gl && gl.getParameter(gl.DEPTH_TEST) || null;\n const last_enable_scissor_test: GLboolean | null = gl && gl.getParameter(gl.SCISSOR_TEST) || null;\n\n gl.clearColor(0, 0, 0, 0);\n gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);\n \n gl && gl.bindVertexArray(g_VaoHandle);\n\n // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill\n gl && gl.enable(gl.BLEND);\n gl && gl.blendEquation(gl.FUNC_ADD);\n gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE);\n gl && gl.disable(gl.CULL_FACE);\n gl && gl.disable(gl.DEPTH_TEST);\n gl && gl.enable(gl.SCISSOR_TEST);\n // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);\n\n // Setup viewport, orthographic projection matrix\n // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps.\n gl && gl.viewport(0, 0, fb_width, fb_height);\n const L: number = draw_data.DisplayPos.x;\n const R: number = draw_data.DisplayPos.x + draw_data.DisplaySize.x;\n const T: number = draw_data.DisplayPos.y;\n const B: number = draw_data.DisplayPos.y + draw_data.DisplaySize.y;\n // we actually flip the bottom and top here to match with PIXI's texture usage\n const ortho_projection: Float32Array = new Float32Array([\n 2.0 / (R - L), 0.0, 0.0, 0.0,\n 0.0, 2.0 / (B - T), 0.0, 0.0,\n 0.0, 0.0, -1.0, 0.0,\n (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0,\n ]);\n gl && gl.useProgram(g_ShaderHandle);\n gl && gl.uniform1i(g_AttribLocationTex, 0);\n gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection);\n\n // Render command lists\n gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle);\n gl && gl.enableVertexAttribArray(g_AttribLocationPosition);\n gl && gl.enableVertexAttribArray(g_AttribLocationUV);\n gl && gl.enableVertexAttribArray(g_AttribLocationColor);\n\n gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertPosOffset);\n gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertUVOffset);\n gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImGui.ImDrawVertSize, ImGui.ImDrawVertColOffset);\n\n // Draw\n const pos = draw_data.DisplayPos;\n const idx_buffer_type: GLenum = gl && ((ImGui.ImDrawIdxSize === 4) ? gl.UNSIGNED_INT : gl.UNSIGNED_SHORT) || 0;\n draw_data.IterateDrawLists((draw_list: ImGui.ImDrawList): void => {\n gl || console.log(draw_list);\n gl || console.log(\"VtxBuffer.length\", draw_list.VtxBuffer.length);\n gl || console.log(\"IdxBuffer.length\", draw_list.IdxBuffer.length);\n \n let idx_buffer_offset: number = 0;\n\n gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle);\n gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW);\n gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle);\n gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW);\n\n draw_list.IterateDrawCmds((draw_cmd: ImGui.ImDrawCmd): void => {\n gl || console.log(draw_cmd);\n gl || console.log(\"ElemCount\", draw_cmd.ElemCount);\n gl || console.log(\"ClipRect\", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y);\n gl || console.log(\"TextureId\", draw_cmd.TextureId);\n if (!gl) {\n console.log(\"i: pos.x pos.y uv.x uv.y col\");\n for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) {\n const view: ImGui.ImDrawVert = new ImGui.ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImGui.ImDrawVertSize);\n console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${(\"00000000\" + view.col[0].toString(16)).substr(-8)}`);\n }\n }\n\n if (draw_cmd.UserCallback !== null) {\n // User callback (registered via ImDrawList::AddCallback)\n draw_cmd.UserCallback(draw_list, draw_cmd);\n } else {\n const clip_rect = new ImGui.ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y);\n if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) {\n // Apply scissor/clipping rectangle\n gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y);\n\n // Bind texture, Draw\n gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId);\n gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset);\n }\n }\n\n idx_buffer_offset += draw_cmd.ElemCount * ImGui.ImDrawIdxSize;\n });\n });\n\n // Restore modified GL state\n \n gl && (last_program !== null) && gl.useProgram(last_program);\n gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0);\n gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture);\n gl && gl.disableVertexAttribArray(g_AttribLocationPosition);\n gl && gl.disableVertexAttribArray(g_AttribLocationUV);\n gl && gl.disableVertexAttribArray(g_AttribLocationColor);\n gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array);\n gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer);\n gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer);\n gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]);\n gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]);\n gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha);\n gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha);\n gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND));\n gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE));\n gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST));\n gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST));\n // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]);\n }\n}\n\nlet gl: WebGL2RenderingContext = null;\nlet app: PIXI.Application = null;\n\nclass ImGuiWindowLayer extends PIXI.Sprite\n{\n public readonly window: ImGuiWindow;\n constructor(window: ImGuiWindow, tex:PIXI.RenderTexture)\n {\n super();\n this.pluginName = \"imgui_renderer\";\n this.window = window;\n }\n}\n\nexport class ImGuiWindow extends PIXI.Container\n{\n public readonly ctx: ImGui.ImGuiContext;\n public readonly io: ImGui.ImGuiIO;\n private sizeX: number;\n private sizeY: number;\n public getSizeX(): number { return this.sizeX; }\n public getSizeY(): number { return this.sizeY; }\n\n private baseTex: PIXI.BaseRenderTexture = new PIXI.BaseRenderTexture({scaleMode: PIXI.SCALE_MODES.LINEAR, resolution: 1, type: PIXI.TYPES.FLOAT, format: PIXI.FORMATS.RGBA});\n private tex: PIXI.RenderTexture = new PIXI.RenderTexture(this.baseTex);\n \n private surface: PIXI.Sprite = new PIXI.Sprite(this.tex);\n private imgui: ImGuiWindowLayer = new ImGuiWindowLayer(this, this.tex);\n \n private update: (dt: number) => void;\n constructor(sizeX: number, sizeY: number, update: (dt: number) => void)\n {\n super();\n\n this.ctx = ImGui.CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts);\n ImGui.SetCurrentContext(this.ctx);\n this.io = ImGui.GetIO();\n\n contexts.push(this.ctx);\n contextIOs.push(this.io);\n\n if (contexts.length == 1)\n {\n CreateFontsTexture();\n }\n\n if (typeof(window) !== \"undefined\") {\n ImGui.LoadIniSettingsFromMemory(window.localStorage.getItem(\"imgui.ini\") || \"\");\n }\n\n if (typeof(navigator) !== \"undefined\") {\n this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null;\n }\n\n this.io.SetClipboardTextFn = (user_data: any, text: string): void => {\n clipboard_text = text;\n // console.log(`set clipboard_text: \"${clipboard_text}\"`);\n if (typeof navigator !== \"undefined\" && typeof (navigator as any).clipboard !== \"undefined\") {\n // console.log(`clipboard.writeText: \"${clipboard_text}\"`);\n (navigator as any).clipboard.writeText(clipboard_text).then((): void => {\n // console.log(`clipboard.writeText: \"${clipboard_text}\" done.`);\n });\n }\n };\n this.io.GetClipboardTextFn = (user_data: any): string => {\n // if (typeof navigator !== \"undefined\" && typeof (navigator as any).clipboard !== \"undefined\") {\n // console.log(`clipboard.readText: \"${clipboard_text}\"`);\n // (navigator as any).clipboard.readText().then((text: string): void => {\n // clipboard_text = text;\n // console.log(`clipboard.readText: \"${clipboard_text}\" done.`);\n // });\n // }\n // console.log(`get clipboard_text: \"${clipboard_text}\"`);\n return clipboard_text;\n };\n this.io.ClipboardUserData = null;\n\n // Setup back-end capabilities flags\n this.io.BackendFlags |= ImGui.BackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional)\n\n // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array.\n this.io.KeyMap[ImGui.Key.Tab] = 9;\n this.io.KeyMap[ImGui.Key.LeftArrow] = 37;\n this.io.KeyMap[ImGui.Key.RightArrow] = 39;\n this.io.KeyMap[ImGui.Key.UpArrow] = 38;\n this.io.KeyMap[ImGui.Key.DownArrow] = 40;\n this.io.KeyMap[ImGui.Key.PageUp] = 33;\n this.io.KeyMap[ImGui.Key.PageDown] = 34;\n this.io.KeyMap[ImGui.Key.Home] = 36;\n this.io.KeyMap[ImGui.Key.End] = 35;\n this.io.KeyMap[ImGui.Key.Insert] = 45;\n this.io.KeyMap[ImGui.Key.Delete] = 46;\n this.io.KeyMap[ImGui.Key.Backspace] = 8;\n this.io.KeyMap[ImGui.Key.Space] = 32;\n this.io.KeyMap[ImGui.Key.Enter] = 13;\n this.io.KeyMap[ImGui.Key.Escape] = 27;\n this.io.KeyMap[ImGui.Key.A] = 65;\n this.io.KeyMap[ImGui.Key.C] = 67;\n this.io.KeyMap[ImGui.Key.V] = 86;\n this.io.KeyMap[ImGui.Key.X] = 88;\n this.io.KeyMap[ImGui.Key.Y] = 89;\n this.io.KeyMap[ImGui.Key.Z] = 90;\n\n this.update = update;\n this.resize(sizeX, sizeY);\n this.imgui.pluginName = 'imgui_renderer';\n this.addChild(this.surface);\n app.renderer.plugins.interaction.addListener(\"mousedown\", this.mouseDown.bind(this));\n app.renderer.plugins.interaction.addListener(\"mouseup\", this.mouseUp.bind(this));\n app.ticker.add(this.updateInternal.bind(this));\n\n this.interactive = false;\n this.interactiveChildren = true;\n\n this.surface.interactive = false;\n }\n withContext(cb: () => void)\n {\n ImGui.SetCurrentContext(this.ctx);\n cb();\n }\n mouseDown(e: PIXI.interaction.InteractionEvent): void\n {\n if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface)\n {\n this.io.MouseDown[mouse_button_map[0]] = true;\n }\n }\n mouseUp(e: PIXI.interaction.InteractionEvent): void\n {\n if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface)\n {\n this.io.MouseDown[mouse_button_map[0]] = false;\n }\n }\n resize(sizeX: number, sizeY: number)\n {\n this.sizeX = sizeX;\n this.sizeY = sizeY;\n this.baseTex.resize(sizeX, sizeY);\n this.tex.frame = new PIXI.Rectangle(0, 0, this.baseTex.width, this.baseTex.height);\n }\n updateInternal(deltaTime: number)\n {\n const dt: number = deltaTime * 1 / (1000 * PIXI.settings.TARGET_FPMS);\n\n ImGui.SetCurrentContext(this.ctx);\n\n if (this.io.WantSaveIniSettings) {\n this.io.WantSaveIniSettings = false;\n if (typeof(window) !== \"undefined\") {\n window.localStorage.setItem(\"imgui.ini\", ImGui.SaveIniSettingsToMemory());\n }\n }\n\n this.io.DisplaySize.x = this.sizeX;\n this.io.DisplaySize.y = this.sizeY;\n this.io.DisplayFramebufferScale.x = 1;\n this.io.DisplayFramebufferScale.y = 1;\n\n this.io.DeltaTime = dt;\n\n let localPos: PIXI.Point = this.toLocal(app.renderer.plugins.interaction.mouse.global);\n if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY)\n {\n localPos = new PIXI.Point(-Number.MAX_VALUE, -Number.MAX_VALUE);\n }\n this.io.MousePos.x = localPos.x;\n this.io.MousePos.y = localPos.y;\n\n if (this.io.WantSetMousePos) {\n console.log(\"TODO: MousePos\", this.io.MousePos.x, this.io.MousePos.y);\n }\n\n if (typeof(document) !== \"undefined\") {\n if (this.io.MouseDrawCursor) {\n document.body.style.cursor = \"none\";\n } else {\n switch (ImGui.GetMouseCursor()) {\n case ImGui.MouseCursor.None: document.body.style.cursor = \"none\"; break;\n default: case ImGui.MouseCursor.Arrow: document.body.style.cursor = \"default\"; break;\n case ImGui.MouseCursor.TextInput: document.body.style.cursor = \"text\"; break; // When hovering over InputText, etc.\n case ImGui.MouseCursor.ResizeAll: document.body.style.cursor = \"move\"; break; // Unused\n case ImGui.MouseCursor.ResizeNS: document.body.style.cursor = \"ns-resize\"; break; // When hovering over an horizontal border\n case ImGui.MouseCursor.ResizeEW: document.body.style.cursor = \"ew-resize\"; break; // When hovering over a vertical border or a column\n case ImGui.MouseCursor.ResizeNESW: document.body.style.cursor = \"nesw-resize\"; break; // When hovering over the bottom-left corner of a window\n case ImGui.MouseCursor.ResizeNWSE: document.body.style.cursor = \"nwse-resize\"; break; // When hovering over the bottom-right corner of a window\n case ImGui.MouseCursor.Hand: document.body.style.cursor = \"move\"; break;\n }\n }\n }\n\n // Gamepad navigation mapping [BETA]\n for (let i = 0; i < this.io.NavInputs.length; ++i) {\n this.io.NavInputs[i] = 0.0;\n }\n if (this.io.ConfigFlags & ImGui.ConfigFlags.NavEnableGamepad) {\n // Update gamepad inputs\n const gamepads: (Gamepad | null)[] = (typeof(navigator) !== \"undefined\" && typeof(navigator.getGamepads) === \"function\") ? navigator.getGamepads() : [];\n for (let i = 0; i < gamepads.length; ++i) {\n const gamepad: Gamepad | null = gamepads[i];\n if (!gamepad) { continue; }\n const buttons_count: number = gamepad.buttons.length;\n const axes_count: number = gamepad.axes.length;\n const MAP_BUTTON = function(NAV_NO: number, BUTTON_NO: number): void {\n if (!gamepad) { return; }\n if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed)\n this.io.NavInputs[NAV_NO] = 1.0;\n }\n const MAP_ANALOG = function(NAV_NO: number, AXIS_NO: number, V0: number, V1: number): void {\n if (!gamepad) { return; }\n let v: number = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0;\n v = (v - V0) / (V1 - V0);\n if (v > 1.0) v = 1.0;\n if (this.io.NavInputs[NAV_NO] < v) this.io.NavInputs[NAV_NO] = v;\n }\n // TODO: map input based on vendor and product id\n // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id\n const match: RegExpMatchArray | null = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/);\n const match_chrome: RegExpMatchArray | null = gamepad.id.match(/^.*\\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\\).*$/);\n const vendor: string = (match && match[1]) || (match_chrome && match_chrome[1]) || \"0000\";\n const product: string = (match && match[2]) || (match_chrome && match_chrome[2]) || \"0000\";\n switch (vendor + product) {\n case \"046dc216\": // Logitech Logitech Dual Action (Vendor: 046d Product: c216)\n MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 2); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 0); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_ANALOG(ImGui.NavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left\n MAP_ANALOG(ImGui.NavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right\n MAP_ANALOG(ImGui.NavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up\n MAP_ANALOG(ImGui.NavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n case \"046dc21d\": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d)\n MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left\n MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right\n MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up\n MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_ANALOG(ImGui.NavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT\n MAP_ANALOG(ImGui.NavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n case \"2dc86001\": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001)\n case \"2dc86101\": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101)\n MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 0); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 4); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_ANALOG(ImGui.NavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left\n MAP_ANALOG(ImGui.NavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right\n MAP_ANALOG(ImGui.NavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up\n MAP_ANALOG(ImGui.NavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 6); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 7); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 8); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 9); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n default: // standard gamepad: https://w3c.github.io/gamepad/#remapping\n MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left\n MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right\n MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up\n MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n }\n }\n }\n\n ImGui.NewFrame();\n\n this.update(dt);\n\n ImGui.EndFrame();\n ImGui.Render();\n\n app.renderer.render(this.imgui, this.tex);\n\n this.surface.interactive = this.io.WantCaptureMouse;\n }\n}\n\nlet canvas: HTMLCanvasElement | null = null;\n\n//export let gl: WebGL2RenderingContext | null = null;\nlet g_ShaderHandle: WebGLProgram | null = null;\nlet g_VertHandle: WebGLShader | null = null;\nlet g_FragHandle: WebGLShader | null = null;\nlet g_AttribLocationTex: WebGLUniformLocation | null = null;\nlet g_AttribLocationProjMtx: WebGLUniformLocation | null = null;\nlet g_AttribLocationPosition: GLint = -1;\nlet g_AttribLocationUV: GLint = -1;\nlet g_AttribLocationColor: GLint = -1;\nlet g_VaoHandle: WebGLVertexArrayObject = null;\nlet g_VboHandle: WebGLBuffer | null = null;\nlet g_ElementsHandle: WebGLBuffer | null = null;\nlet g_FontTexture: WebGLTexture | null = null;\n\nfunction document_on_copy(event: ClipboardEvent): void {\n if (event.clipboardData) {\n event.clipboardData.setData(\"text/plain\", clipboard_text);\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction document_on_cut(event: ClipboardEvent): void {\n if (event.clipboardData) {\n event.clipboardData.setData(\"text/plain\", clipboard_text);\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction document_on_paste(event: ClipboardEvent): void {\n if (event.clipboardData) {\n clipboard_text = event.clipboardData.getData(\"text/plain\");\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction window_on_gamepadconnected(event: any /* GamepadEvent */): void {\n console.log(\"Gamepad connected at index %d: %s. %d buttons, %d axes.\",\n event.gamepad.index, event.gamepad.id,\n event.gamepad.buttons.length, event.gamepad.axes.length);\n}\n\nfunction window_on_gamepaddisconnected(event: any /* GamepadEvent */): void {\n console.log(\"Gamepad disconnected at index %d: %s.\",\n event.gamepad.index, event.gamepad.id);\n}\n\nfunction canvas_on_blur(event: FocusEvent): void {\n for (var io of contextIOs)\n {\n io.KeyCtrl = false;\n io.KeyShift = false;\n io.KeyAlt = false;\n io.KeySuper = false;\n for (let i = 0; i < io.KeysDown.length; ++i) {\n io.KeysDown[i] = false;\n }\n for (let i = 0; i < io.MouseDown.length; ++i) {\n io.MouseDown[i] = false;\n }\n }\n}\n\nfunction canvas_on_keydown(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.KeyCtrl = event.ctrlKey;\n io.KeyShift = event.shiftKey;\n io.KeyAlt = event.altKey;\n io.KeySuper = event.metaKey;\n ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown));\n io.KeysDown[event.keyCode] = true;\n // forward to the keypress event\n if (/*io.WantCaptureKeyboard ||*/ event.key === \"Tab\") {\n event.preventDefault();\n }\n }\n}\n\nfunction canvas_on_keyup(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.KeyCtrl = event.ctrlKey;\n io.KeyShift = event.shiftKey;\n io.KeyAlt = event.altKey;\n io.KeySuper = event.metaKey;\n ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown));\n io.KeysDown[event.keyCode] = false;\n if (io.WantCaptureKeyboard) {\n event.preventDefault();\n }\n }\n}\n\nfunction canvas_on_keypress(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.AddInputCharacter(event.charCode);\n if (io.WantCaptureKeyboard) {\n event.preventDefault();\n }\n }\n}\n\n// MouseEvent.button\n// A number representing a given button:\n// 0: Main button pressed, usually the left button or the un-initialized state\n// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present)\n// 2: Secondary button pressed, usually the right button\n// 3: Fourth button, typically the Browser Back button\n// 4: Fifth button, typically the Browser Forward button\nconst mouse_button_map: number[] = [ 0, 2, 1, 3, 4 ];\n\nfunction canvas_on_contextmenu(event: Event): void {\n for (var io of contextIOs)\n {\n if (io.WantCaptureMouse) { event.preventDefault(); }\n }\n}\n\nfunction canvas_on_wheel(event: WheelEvent): void {\n for (var io of contextIOs)\n {\n let scale: number = 1.0;\n switch (event.deltaMode) {\n case event.DOM_DELTA_PIXEL: scale = 0.01; break;\n case event.DOM_DELTA_LINE: scale = 0.2; break;\n case event.DOM_DELTA_PAGE: scale = 1.0; break;\n }\n io.MouseWheelH = event.deltaX * scale;\n io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text.\n if (io.WantCaptureMouse) {\n event.preventDefault();\n }\n }\n}\n\nexport function PrePIXIInit(): void\n{\n PIXI.Renderer.registerPlugin(\"imgui_renderer\", U.fromConstructor(ImGuiImplInternalRenderer));\n}\n\nexport function Init(_app: PIXI.Application): void {\n // Setup Dear ImGui binding\n ImGui.IMGUI_CHECKVERSION();\n\n if (typeof(document) !== \"undefined\") {\n document.body.addEventListener(\"copy\", document_on_copy);\n document.body.addEventListener(\"cut\", document_on_cut);\n document.body.addEventListener(\"paste\", document_on_paste);\n }\n\n if (typeof(window) !== \"undefined\") {\n window.addEventListener(\"gamepadconnected\", window_on_gamepadconnected);\n window.addEventListener(\"gamepaddisconnected\", window_on_gamepaddisconnected);\n }\n\n app = _app;\n gl = (app.renderer as any).gl;\n canvas = app.view;\n\n gl.getExtension(\"EXT_color_buffer_float\");\n\n if (canvas !== null) {\n canvas.style.touchAction = \"none\"; // Disable browser handling of all panning and zooming gestures.\n canvas.addEventListener(\"blur\", canvas_on_blur);\n canvas.addEventListener(\"keydown\", canvas_on_keydown);\n canvas.addEventListener(\"keyup\", canvas_on_keyup);\n canvas.addEventListener(\"keypress\", canvas_on_keypress);\n canvas.addEventListener(\"contextmenu\", canvas_on_contextmenu);\n canvas.addEventListener(\"wheel\", canvas_on_wheel);\n }\n\n CreateDeviceObjects();\n}\n\nexport function Shutdown(): void {\n DestroyDeviceObjects();\n\n if (canvas !== null) {\n canvas.removeEventListener(\"blur\", canvas_on_blur);\n canvas.removeEventListener(\"keydown\", canvas_on_keydown);\n canvas.removeEventListener(\"keyup\", canvas_on_keyup);\n canvas.removeEventListener(\"keypress\", canvas_on_keypress);\n canvas.removeEventListener(\"contextmenu\", canvas_on_contextmenu);\n canvas.removeEventListener(\"wheel\", canvas_on_wheel);\n }\n\n app = null;\n canvas = null;\n\n if (typeof(window) !== \"undefined\") {\n window.removeEventListener(\"gamepadconnected\", window_on_gamepadconnected);\n window.removeEventListener(\"gamepaddisconnected\", window_on_gamepaddisconnected);\n }\n\n if (typeof(document) !== \"undefined\") {\n document.body.removeEventListener(\"copy\", document_on_copy);\n document.body.removeEventListener(\"cut\", document_on_cut);\n document.body.removeEventListener(\"paste\", document_on_paste);\n }\n}\n\nfunction CreateFontsTexture(): void {\n const io = ImGui.GetIO();\n\n // Backup GL state\n const last_texture: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D);\n\n // Build texture atlas\n // const width: number = 256;\n // const height: number = 256;\n // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff);\n const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory.\n // console.log(`font texture ${width} x ${height} @ ${pixels.length}`);\n\n // Upload texture to graphics system\n g_FontTexture = gl && gl.createTexture();\n gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture);\n gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);\n gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR);\n // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2\n gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels);\n\n // Store our identifier\n io.Fonts.TexID = g_FontTexture || { foo: \"bar\" };\n // console.log(\"font texture id\", g_FontTexture);\n\n // Restore modified GL state\n gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture);\n}\n\nfunction DestroyFontsTexture(): void {\n const io = ImGui.GetIO();\n io.Fonts.TexID = null;\n gl && gl.deleteTexture(g_FontTexture); g_FontTexture = null;\n}\n\nfunction CreateDeviceObjects(): void {\n const vertex_shader: string[] = [\n \"#version 300 es\",\n \"uniform mat4 ProjMtx;\",\n \"in vec2 Position;\",\n \"in vec2 UV;\",\n \"in vec4 Color;\",\n \"out vec2 Frag_UV;\",\n \"out vec4 Frag_Color;\",\n \"void main() {\",\n \"\tFrag_UV = UV;\",\n \"\tFrag_Color = Color;\",\n \"\tgl_Position = ProjMtx * vec4(Position.xy,0,1);\",\n \"}\",\n ];\n\n const fragment_shader: string[] = [\n \"#version 300 es\",\n \"precision mediump float;\", // WebGL requires precision specifiers\n \"uniform sampler2D Texture;\",\n \"in vec2 Frag_UV;\",\n \"in vec4 Frag_Color;\",\n \"out vec4 OutColor;\",\n \"void main() {\",\n \"\tOutColor = Frag_Color * texture(Texture, Frag_UV);\",\n \"}\",\n ];\n\n g_ShaderHandle = gl && gl.createProgram();\n g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER);\n g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER);\n gl && gl.shaderSource(g_VertHandle as WebGLShader, vertex_shader.join(\"\\n\"));\n gl && gl.shaderSource(g_FragHandle as WebGLShader, fragment_shader.join(\"\\n\"));\n gl && gl.compileShader(g_VertHandle as WebGLShader);\n gl && gl.compileShader(g_FragHandle as WebGLShader);\n gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_VertHandle as WebGLShader);\n gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_FragHandle as WebGLShader);\n gl && gl.linkProgram(g_ShaderHandle as WebGLProgram);\n\n g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, \"Texture\");\n g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, \"ProjMtx\");\n g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"Position\") || 0;\n g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"UV\") || 0;\n g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"Color\") || 0;\n\n g_VaoHandle = gl && gl.createVertexArray();\n g_VboHandle = gl && gl.createBuffer();\n g_ElementsHandle = gl && gl.createBuffer();\n\n}\n\nfunction DestroyDeviceObjects(): void {\n DestroyFontsTexture();\n\n gl && gl.deleteVertexArray(g_VaoHandle); g_VaoHandle = null;\n gl && gl.deleteBuffer(g_VboHandle); g_VboHandle = null;\n gl && gl.deleteBuffer(g_ElementsHandle); g_ElementsHandle = null;\n\n g_AttribLocationTex = null;\n g_AttribLocationProjMtx = null;\n g_AttribLocationPosition = -1;\n g_AttribLocationUV = -1;\n g_AttribLocationColor = -1;\n\n gl && gl.deleteProgram(g_ShaderHandle); g_ShaderHandle = null;\n gl && gl.deleteShader(g_VertHandle); g_VertHandle = null;\n gl && gl.deleteShader(g_FragHandle); g_FragHandle = null;\n}\n"],"names":["require","global","this","Polyfill","commonjsGlobal","delimiter","hasOwnProperty","map","parse","qsParse","qsStringify","sign","url","_url","prototypeAccessors","prototypeAccessors$1","EventEmitter","staticAccessors","Buffer","map$1","prototypeAccessors$2","prototypeAccessors$3","prototypeAccessors$4","prototypeAccessors$5","staticAccessors$1","earcut","tempAnchor","Resource","Url","Loader","Loader$1","middleware","vertex","fragment","tempPoint","tempMat","defaultFilterVertex","PIXI.ObjectRenderer","ImGui.GetDrawData","ImGui.ImDrawVertSize","ImGui.ImDrawVertPosOffset","ImGui.ImDrawVertUVOffset","ImGui.ImDrawVertColOffset","ImGui.ImDrawVert","ImGui.ImVec4","ImGui.ImDrawIdxSize","PIXI.Sprite","PIXI.Container","PIXI.BaseRenderTexture","PIXI.SCALE_MODES","PIXI.TYPES","PIXI.FORMATS","PIXI.RenderTexture","ImGui.CreateContext","ImGui.SetCurrentContext","ImGui.GetIO","ImGui.LoadIniSettingsFromMemory","ImGui.BackendFlags","ImGui.Key","PIXI.Rectangle","PIXI.settings","ImGui.SaveIniSettingsToMemory","PIXI.Point","ImGui.GetMouseCursor","ImGui.MouseCursor","ImGui.ConfigFlags","ImGui.NavInput","ImGui.NewFrame","ImGui.EndFrame","ImGui.Render","canvas","ImGui.IM_ASSERT","ImGui.IM_ARRAYSIZE","PIXI.Renderer","U.fromConstructor","ImGui.IMGUI_CHECKVERSION"],"mappings":";;;;;;;;;;;;;;;;;;AAAA,iBAAe,EAAE,CAAC;;ACAlB;;;;;;;;;;;;;;;;;;;;;;;;;AAyBA,SAAS,cAAc,CAAC,KAAK,EAAE,cAAc,EAAE;;EAE7C,IAAI,EAAE,GAAG,CAAC,CAAC;EACX,KAAK,IAAI,CAAC,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE;IAC1C,IAAI,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IACpB,IAAI,IAAI,KAAK,GAAG,EAAE;MAChB,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;KACpB,MAAM,IAAI,IAAI,KAAK,IAAI,EAAE;MACxB,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;MACnB,EAAE,EAAE,CAAC;KACN,MAAM,IAAI,EAAE,EAAE;MACb,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;MACnB,EAAE,EAAE,CAAC;KACN;GACF;;;EAGD,IAAI,cAAc,EAAE;IAClB,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE;MACf,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;KACrB;GACF;;EAED,OAAO,KAAK,CAAC;CACd;;;;AAID,IAAI,WAAW;IACX,+DAA+D,CAAC;AACpE,IAAI,SAAS,GAAG,SAAS,QAAQ,EAAE;EACjC,OAAO,WAAW,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;CAC5C,CAAC;;;;AAIF,AAAO,SAAS,OAAO,GAAG;EACxB,IAAI,YAAY,GAAG,EAAE;MACjB,gBAAgB,GAAG,KAAK,CAAC;;EAE7B,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,EAAE,CAAC,EAAE,EAAE;IACpE,IAAI,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,SAAS,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;;;IAGzC,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;MAC5B,MAAM,IAAI,SAAS,CAAC,2CAA2C,CAAC,CAAC;KAClE,MAAM,IAAI,CAAC,IAAI,EAAE;MAChB,SAAS;KACV;;IAED,YAAY,GAAG,IAAI,GAAG,GAAG,GAAG,YAAY,CAAC;IACzC,gBAAgB,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC;GAC3C;;;;;;EAMD,YAAY,GAAG,cAAc,CAAC,MAAM,CAAC,YAAY,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,SAAS,CAAC,EAAE;IACxE,OAAO,CAAC,CAAC,CAAC,CAAC;GACZ,CAAC,EAAE,CAAC,gBAAgB,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;EAEjC,OAAO,CAAC,CAAC,gBAAgB,GAAG,GAAG,GAAG,EAAE,IAAI,YAAY,KAAK,GAAG,CAAC;CAC9D,AACD;;;AAGA,AAAO,SAAS,SAAS,CAAC,IAAI,EAAE;EAC9B,IAAI,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;MACjC,aAAa,GAAG,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC;;;EAG7C,IAAI,GAAG,cAAc,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,SAAS,CAAC,EAAE;IACxD,OAAO,CAAC,CAAC,CAAC,CAAC;GACZ,CAAC,EAAE,CAAC,cAAc,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;EAE/B,IAAI,CAAC,IAAI,IAAI,CAAC,cAAc,EAAE;IAC5B,IAAI,GAAG,GAAG,CAAC;GACZ;EACD,IAAI,IAAI,IAAI,aAAa,EAAE;IACzB,IAAI,IAAI,GAAG,CAAC;GACb;;EAED,OAAO,CAAC,cAAc,GAAG,GAAG,GAAG,EAAE,IAAI,IAAI,CAAC;CAC3C,AACD;;AAEA,AAAO,SAAS,UAAU,CAAC,IAAI,EAAE;EAC/B,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC;CAC/B;;;AAGD,AAAO,SAAS,IAAI,GAAG;EACrB,IAAI,KAAK,GAAG,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC;EACrD,OAAO,SAAS,CAAC,MAAM,CAAC,KAAK,EAAE,SAAS,CAAC,EAAE,KAAK,EAAE;IAChD,IAAI,OAAO,CAAC,KAAK,QAAQ,EAAE;MACzB,MAAM,IAAI,SAAS,CAAC,wCAAwC,CAAC,CAAC;KAC/D;IACD,OAAO,CAAC,CAAC;GACV,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;CACf;;;;;AAKD,AAAO,SAAS,QAAQ,CAAC,IAAI,EAAE,EAAE,EAAE;EACjC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;EAC/B,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;;EAE3B,SAAS,IAAI,CAAC,GAAG,EAAE;IACjB,IAAI,KAAK,GAAG,CAAC,CAAC;IACd,OAAO,KAAK,GAAG,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,EAAE;MAClC,IAAI,GAAG,CAAC,KAAK,CAAC,KAAK,EAAE,EAAE,MAAM;KAC9B;;IAED,IAAI,GAAG,GAAG,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC;IACzB,OAAO,GAAG,IAAI,CAAC,EAAE,GAAG,EAAE,EAAE;MACtB,IAAI,GAAG,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,MAAM;KAC5B;;IAED,IAAI,KAAK,GAAG,GAAG,EAAE,OAAO,EAAE,CAAC;IAC3B,OAAO,GAAG,CAAC,KAAK,CAAC,KAAK,EAAE,GAAG,GAAG,KAAK,GAAG,CAAC,CAAC,CAAC;GAC1C;;EAED,IAAI,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;EACtC,IAAI,OAAO,GAAG,IAAI,CAAC,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;;EAElC,IAAI,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,MAAM,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC;EACxD,IAAI,eAAe,GAAG,MAAM,CAAC;EAC7B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE,EAAE;IAC/B,IAAI,SAAS,CAAC,CAAC,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,EAAE;MAC/B,eAAe,GAAG,CAAC,CAAC;MACpB,MAAM;KACP;GACF;;EAED,IAAI,WAAW,GAAG,EAAE,CAAC;EACrB,KAAK,IAAI,CAAC,GAAG,eAAe,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;IACvD,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;GACxB;;EAED,WAAW,GAAG,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC;;EAEjE,OAAO,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;CAC9B;;AAED,AAAO,IAAI,GAAG,GAAG,GAAG,CAAC;AACrB,AAAO,IAAI,SAAS,GAAG,GAAG,CAAC;;AAE3B,AAAO,SAAS,OAAO,CAAC,IAAI,EAAE;EAC5B,IAAI,MAAM,GAAG,SAAS,CAAC,IAAI,CAAC;MACxB,IAAI,GAAG,MAAM,CAAC,CAAC,CAAC;MAChB,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;EAEpB,IAAI,CAAC,IAAI,IAAI,CAAC,GAAG,EAAE;;IAEjB,OAAO,GAAG,CAAC;GACZ;;EAED,IAAI,GAAG,EAAE;;IAEP,GAAG,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC,EAAE,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;GACrC;;EAED,OAAO,IAAI,GAAG,GAAG,CAAC;CACnB;;AAED,AAAO,SAAS,QAAQ,CAAC,IAAI,EAAE,GAAG,EAAE;EAClC,IAAI,CAAC,GAAG,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;;EAE3B,IAAI,GAAG,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,KAAK,GAAG,EAAE;IAC5C,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC;GACxC;EACD,OAAO,CAAC,CAAC;CACV;;;AAGD,AAAO,SAAS,OAAO,CAAC,IAAI,EAAE;EAC5B,OAAO,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;CAC3B;AACD,iBAAe;EACb,OAAO,EAAE,OAAO;EAChB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,OAAO;EAChB,GAAG,EAAE,GAAG;EACR,SAAS,EAAE,SAAS;EACpB,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,IAAI;EACV,UAAU,EAAE,UAAU;EACtB,SAAS,EAAE,SAAS;EACpB,OAAO,EAAE,OAAO;CACjB,CAAC;AACF,SAAS,MAAM,EAAE,EAAE,EAAE,CAAC,EAAE;IACpB,IAAI,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;IACnC,IAAI,GAAG,GAAG,EAAE,CAAC;IACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QAChC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;KACxC;IACD,OAAO,GAAG,CAAC;CACd;;;AAGD,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG;IAChC,UAAU,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,OAAO,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,GAAG,CAAC,EAAE;IAC5D,UAAU,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE;QACvB,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,GAAG,GAAG,CAAC,MAAM,GAAG,KAAK,CAAC;QAC1C,OAAO,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;KACjC;CACJ;;;ACxOD,IAAI,MAAM,GAAG,CAAC,WAAW;EACvB,IAAI,UAAU,GAAG,OAAO,QAAQ,KAAK,WAAW,IAAI,QAAQ,CAAC,aAAa,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG,GAAG,SAAS,CAAC;EACpH;AACF,SAAS,MAAM,EAAE;EACf,MAAM,GAAG,MAAM,IAAI,EAAE,CAAC;;AAExB,IAAI,MAAM,CAAC,OAAO,MAAM,GAAG,WAAW,CAAC,MAAM,CAAC,EAAE,CAAC,IAAI,eAAe,CAAC,EAAE,CAAC,IAAI,GAAG,CAAC,IAAI,GAAG,IAAI,MAAM,CAAC,CAAC,GAAG,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,GAAG,EAAC,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,gBAAgB,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,MAAM,CAAC,OAAO,CAAC,CAAC,MAAM,OAAO,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,IAAI,kBAAkB,CAAC,KAAK,CAAC,IAAI,qBAAqB,CAAC,KAAK,CAAC,IAAI,mBAAmB,CAAC,KAAK,CAAC,IAAI,oBAAoB,CAAC,KAAK,CAAC,IAAI,oBAAoB,CAAC,KAAK,CAAC,kBAAkB,CAAC,OAAO,MAAM,GAAG,QAAQ,CAAC,qBAAqB,CAAC,OAAO,aAAa,GAAG,UAAU,CAAC,oBAAoB,CAAC,OAAO,OAAO,GAAG,QAAQ,EAAE,OAAOA,eAAO,GAAG,UAAU,CAAC,mBAAmB,CAAC,oBAAoB,EAAE,CAAC,kBAAkB,EAAE,CAAC,qBAAqB,CAAC,oBAAoB,CAAC,CAAC,kBAAkB,EAAE,CAAC,mBAAmB,EAAE,CAAC,qBAAqB,CAAC,IAAI,eAAe,CAAC,EAAE,CAAC,SAAS,UAAU,CAAC,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,OAAO,MAAM,CAAC,YAAY,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,IAAI,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,CAAC,GAAG,mBAAmB,CAAC,CAAC,eAAe,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,IAAI,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,UAAU,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,IAAI,GAAG,CAAC,GAAG,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,UAAa,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,UAAe,CAAC,QAAQ,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,QAAQ,EAAC,CAAC,OAAO,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,SAAS,UAAU,CAAC,QAAQ,CAAC,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,IAAI,UAAU,CAAC,GAAG,EAAC,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,OAAO,GAAG,CAAC,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,EAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,mBAAmB,CAAC,SAAS,EAAE,CAAC,CAAC,GAAG,EAAE,EAAE,YAAY,UAAU,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,oBAAoB,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,MAAM,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,MAAM,EAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,UAAU,CAAC,OAAM,4BAA4B,EAAC,CAAC,KAAK,GAAG,oBAAoB,CAAC,CAAC,GAAG,OAAO,IAAI,EAAE,WAAW,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,OAAO,gBAAgB,CAAC,IAAI,CAAC,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,EAAC,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,OAAO,IAAI,CAAC,GAAG,OAAO,UAAU,GAAG,UAAU,CAAC,CAAC,OAAO,IAAI,UAAU,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,OAAO,IAAI,GAAG,QAAQ,CAAC,CAAC,OAAO,IAAI,CAAC,CAAC,GAAG,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,WAAU,CAAC,KAAK,GAAG,OAAO,SAAS,EAAE,WAAW,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,UAAS,CAAC,GAAG,OAAO,IAAI,GAAG,UAAU,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,MAAM,CAAC,CAAC,IAAI,CAAC,MAAM,EAAC,EAAC,CAAC,CAAC,KAAK,GAAG,kBAAkB,EAAE,qBAAqB,CAAC,CAAC,GAAG,qBAAqB,CAAC,CAAC,eAAe,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAI,CAAC,KAAK,GAAG,QAAQ,CAAC,aAAa,CAAC,CAAC,eAAe,CAAC,QAAQ,CAAC,aAAa,CAAC,IAAG,CAAC,GAAG,UAAU,CAAC,CAAC,eAAe,CAAC,WAAU,CAAC,GAAG,eAAe,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,eAAe,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,CAAC,eAAe,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,EAAC,CAAC,IAAI,CAAC,eAAe,CAAC,GAAE,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,GAAG,CAAC,IAAI,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,OAAO,GAAG,CAAC,YAAY,CAAC,MAAM,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,OAAO,gBAAgB,CAAC,IAAI,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,qBAAqB,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,SAAS,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,GAAG,CAAC,IAAI,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,OAAO,IAAI,UAAU,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,OAAO,IAAI,CAAC,MAAM,GAAG,CAAC,EAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,SAAS,SAAS,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,GAAG,CAAC,IAAI,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC,aAAa,CAAC,GAAG,CAAC,MAAM,CAAC,SAAS,UAAU,EAAE,CAAC,GAAG,GAAG,CAAC,MAAM,EAAE,GAAG,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,EAAE,GAAG,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,OAAO,GAAE,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,SAAS,KAAK,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAK,EAAC,CAAC,AAAM,IAAI,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,GAAG,OAAO,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,KAAK,GAAG,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,OAAO,QAAQ,GAAG,WAAW,CAAC,QAAQ,CAAC,OAAO,OAAO,GAAG,WAAW,EAAE,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,GAAG,CAAC,CAAC,IAAI,GAAG,IAAI,eAAe,CAAC,CAAC,GAAG,eAAe,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,eAAe,CAAC,GAAG,EAAC,CAAC,CAAC,eAAe,CAAC,SAAS,CAAC,IAAI,eAAe,CAAC,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,CAAC,AAAe,IAAI,WAAW,CAAC,SAAS,KAAK,CAAC,CAAC,AAAc,CAAC,CAAC,GAAG,OAAO,WAAW,GAAG,QAAQ,CAAC,CAAC,GAAG,CAAC,iCAAiC,EAAC,CAAC,IAAI,UAAU,CAAC,IAAI,SAAS,CAAC,IAAI,KAAK,CAAC,KAAK,CAAC,AAAiB,SAAS,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,IAAI,EAAC,CAAC,CAAC,IAAI,WAAW,CAAC,OAAO,WAAW,GAAG,WAAW,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,SAAS,iBAAiB,CAAC,OAAO,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,cAAc,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,MAAM,OAAO,CAAC,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC,EAAE,EAAE,OAAO,CAAC,QAAQ,EAAE,WAAW,CAAC,CAAC,OAAO,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,EAAE,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,MAAM,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,GAAG,CAAC,CAAC,GAAG,EAAE,MAAM,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,GAAE,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,GAAE,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,MAAM,CAAC,YAAY,CAAC,EAAE,EAAC,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,CAAC,YAAY,CAAC,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,IAAI,EAAC,CAAC,CAAC,CAAC,OAAO,GAAG,CAAC,SAAS,YAAY,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,MAAM,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,EAAE,CAAC,SAAS,iBAAiB,CAAC,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,GAAG,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,QAAQ,CAAC,MAAM,CAAC,IAAI,MAAM,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,KAAK,CAAC,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,KAAI,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,GAAG,MAAM,EAAE,MAAM,CAAC,MAAM,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,EAAC,CAAC,KAAK,GAAG,CAAC,EAAE,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAE,CAAC,KAAK,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAE,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAE,CAAC,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,MAAM,CAAC,QAAQ,CAAC,SAAS,YAAY,CAAC,GAAG,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,OAAO,iBAAiB,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,SAAS,eAAe,CAAC,GAAG,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,EAAE,GAAG,CAAC,KAAK,GAAG,CAAC,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,KAAK,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,KAAK,GAAG,EAAE,EAAC,CAAC,OAAO,GAAG,CAAC,IAAI,YAAY,CAAC,OAAO,WAAW,GAAG,WAAW,CAAC,IAAI,WAAW,CAAC,UAAU,CAAC,CAAC,SAAS,CAAC,IAAI,cAAc,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,SAAS,uBAAuB,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,IAAI,SAAS,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,IAAI,YAAY,CAAC,MAAM,EAAC,CAAC,IAAI,YAAY,CAAC,OAAO,CAAC,cAAc,CAAC,KAAK,CAAC,IAAI,WAAW,CAAC,OAAO,CAAC,IAAI,oBAAoB,CAAC,MAAM,CAAC,cAAc,CAAC,EAAE,QAAQ,CAAC,GAAG,oBAAoB,CAAC,WAAW,CAAC,GAAG,CAAC,sDAAsD,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAC,CAAC,IAAI,CAAC,GAAG,OAAO,WAAW,GAAG,QAAQ,EAAE,OAAO,WAAW,CAAC,MAAM,GAAG,UAAU,CAAC,CAAC,UAAU,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,oBAAoB,CAAC,cAAc,CAAC,SAAS,CAAC,oBAAoB,CAAC,cAAc,CAAC,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC,OAAM,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,WAAW,CAAC,oBAAoB,EAAC,CAAC,CAAC,uBAAuB,EAAE,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC,YAAY,CAAC,SAAS,oBAAoB,CAAC,SAAS,CAAC,CAAC,MAAM,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,QAAQ,CAAC,SAAS,CAAC,KAAK,EAAE,CAAC,GAAG,OAAO,QAAQ,EAAE,UAAU,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,OAAO,IAAI,GAAG,QAAQ,CAAC,CAAC,GAAG,QAAQ,CAAC,GAAG,GAAG,SAAS,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,IAAI,EAAC,CAAC,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,GAAG,SAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAC,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,EAAE,CAAC,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,aAAa,CAAC,EAAE,CAAC,IAAI,kBAAkB,CAAC,KAAK,CAAC,SAAS,MAAM,EAAE,CAAC,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,OAAO,MAAM,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,CAAC,WAAW,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,EAAC,CAAC,CAAC,oBAAoB,CAAC,YAAY,EAAC,CAAC,SAAS,iBAAiB,EAAE,CAAC,GAAG,kBAAkB,CAAC,OAAO,kBAAkB,CAAC,IAAI,CAAC,oBAAoB,CAAC,UAAU,EAAC,CAAC,SAAS,OAAO,EAAE,CAAC,oBAAoB,CAAC,UAAU,EAAC,CAAC,SAAS,OAAO,EAAE,CAAC,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,OAAO,MAAM,CAAC,SAAS,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,KAAK,EAAE,EAAC,CAAC,CAAC,oBAAoB,CAAC,aAAa,EAAC,CAAC,SAAS,WAAW,CAAC,EAAE,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,EAAE,EAAC,CAAC,SAAS,YAAY,CAAC,EAAE,CAAC,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE,EAAC,CAAC,IAAI,eAAe,CAAC,CAAC,CAAC,IAAI,oBAAoB,CAAC,IAAI,CAAC,IAAI,qBAAqB,CAAC,IAAI,CAAC,SAAS,gBAAgB,CAAC,EAAE,CAAC,CAAC,eAAe,EAAE,CAAC,GAAG,MAAM,CAAC,wBAAwB,CAAC,CAAC,CAAC,MAAM,CAAC,wBAAwB,CAAC,CAAC,eAAe,EAAC,CAAC,CAAC,SAAS,mBAAmB,CAAC,EAAE,CAAC,CAAC,eAAe,EAAE,CAAC,GAAG,MAAM,CAAC,wBAAwB,CAAC,CAAC,CAAC,MAAM,CAAC,wBAAwB,CAAC,CAAC,eAAe,EAAC,CAAC,GAAG,eAAe,EAAE,CAAC,CAAC,CAAC,GAAG,oBAAoB,GAAG,IAAI,CAAC,CAAC,aAAa,CAAC,oBAAoB,CAAC,CAAC,oBAAoB,CAAC,KAAI,CAAC,GAAG,qBAAqB,CAAC,CAAC,IAAI,QAAQ,CAAC,qBAAqB,CAAC,qBAAqB,CAAC,IAAI,CAAC,QAAQ,GAAE,CAAC,CAAC,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,EAAE,CAAC,IAAI,aAAa,CAAC,uCAAuC,CAAC,SAAS,SAAS,CAAC,QAAQ,CAAC,CAAC,OAAO,MAAM,CAAC,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,IAAI,cAAc,CAAC,mo2fAAmo2f,CAAC,GAAG,CAAC,SAAS,CAAC,cAAc,CAAC,CAAC,CAAC,cAAc,CAAC,UAAU,CAAC,cAAc,EAAC,CAAC,SAAS,SAAS,EAAE,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,OAAO,IAAI,UAAU,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,IAAI,MAAM,CAAC,iBAAiB,CAAC,cAAc,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,OAAO,MAAM,CAAC,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,OAAO,MAAM,CAAC,YAAY,CAAC,CAAC,cAAc,CAAC,CAAC,IAAI,CAAC,KAAK,iDAAiD,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,EAAC,CAAC,CAAC,SAAS,gBAAgB,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,kBAAkB,EAAE,qBAAqB,CAAC,EAAE,OAAO,KAAK,GAAG,UAAU,CAAC,CAAC,OAAO,KAAK,CAAC,cAAc,CAAC,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,QAAQ,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,sCAAsC,CAAC,cAAc,CAAC,GAAG,CAAC,OAAO,QAAQ,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,OAAO,SAAS,EAAE,CAAC,CAAC,CAAC,OAAO,IAAI,OAAO,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,SAAS,EAAE,EAAC,CAAC,CAAC,CAAC,SAAS,UAAU,CAAC,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,aAAa,CAAC,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC,CAAC,SAAS,eAAe,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,IAAI,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,mBAAmB,CAAC,AAAkB,EAAC,CAAC,gBAAgB,CAAC,AAAkB,CAAC,CAAC,SAAS,yBAAyB,CAAC,MAAM,CAAC,CAAC,eAAe,CAAC,MAAM,CAAC,UAAU,CAAC,EAAC,CAAC,SAAS,sBAAsB,CAAC,QAAQ,CAAC,CAAC,OAAO,gBAAgB,EAAE,CAAC,IAAI,CAAC,SAAS,MAAM,CAAC,CAAC,OAAO,WAAW,CAAC,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,SAAS,MAAM,CAAC,CAAC,GAAG,CAAC,yCAAyC,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,MAAM,EAAC,CAAC,CAAC,CAAC,SAAS,gBAAgB,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,YAAY,CAAC,EAAE,OAAO,WAAW,CAAC,oBAAoB,GAAG,UAAU,EAAE,CAAC,SAAS,CAAC,cAAc,CAAC,EAAE,OAAO,KAAK,GAAG,UAAU,CAAC,CAAC,OAAO,WAAW,CAAC,oBAAoB,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,yBAAyB,CAAC,SAAS,MAAM,CAAC,CAAC,GAAG,CAAC,iCAAiC,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,2CAA2C,CAAC,CAAC,sBAAsB,CAAC,yBAAyB,EAAC,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,sBAAsB,CAAC,yBAAyB,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,iBAAiB,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,MAAM,CAAC,iBAAiB,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,qDAAqD,CAAC,CAAC,CAAC,CAAC,OAAO,KAAK,CAAC,CAAC,gBAAgB,EAAE,CAAC,OAAM,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,SAAS,MAAM,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,SAAS,CAAC,IAAI,WAAW,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC,eAAe,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,IAAI,OAAO,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,OAAO,OAAO,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,GAAE,CAAC,CAAC,CAAC,CAAC,SAAS,yBAAyB,CAAC,IAAI,CAAC,CAAC,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC,AAAu4B,SAAS,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,AAAwS,MAAM,GAAG,CAAC,SAAS,OAAO,EAAE,EAAE,AAAqvC,IAAI,QAAQ,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC,SAAS,MAAM,CAAC,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC,EAAE,IAAI,GAAG,EAAE,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,EAAE,iBAAiB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,EAAC,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,SAAS,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,GAAG,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,GAAG,CAAC,YAAY,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,CAAC,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,OAAO,GAAG,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,QAAQ,CAAC,GAAG,GAAE,CAAC,CAAC,CAAC,SAAS,aAAa,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,QAAQ,CAAC,eAAe,EAAE,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,WAAW,EAAE,EAAE,CAAC,YAAY,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,aAAa,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,QAAQ,CAAC,eAAe,EAAE,CAAC,GAAG,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,OAAO,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,WAAW,EAAE,EAAE,CAAC,YAAY,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,aAAa,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,SAAS,CAAC,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAC,CAAC,GAAG,EAAE,IAAG,CAAC,OAAO,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,WAAW,EAAE,EAAE,CAAC,YAAY,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,CAAC,GAAG,MAAM,CAAC,mBAAmB,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,mBAAmB,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,KAAK,CAAC,SAAS,aAAa,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,WAAW,EAAE,EAAE,CAAC,YAAY,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,QAAQ,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,IAAI,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,OAAO,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,WAAW,EAAE,EAAE,CAAC,YAAY,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,YAAY,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,WAAW,EAAE,EAAE,CAAC,YAAY,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,QAAQ,CAAC,eAAe,EAAE,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,GAAG,WAAW,EAAE,EAAE,CAAC,YAAY,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,SAAS,EAAE,EAAE,SAAS,gBAAgB,CAAC,IAAI,CAAC,CAAC,OAAO,IAAI,EAAE,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,QAAQ,MAAM,IAAI,SAAS,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,qBAAqB,EAAE,CAAC,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,EAAC,CAAC,gBAAgB,CAAC,MAAK,CAAC,IAAI,gBAAgB,CAAC,SAAS,CAAC,SAAS,gBAAgB,CAAC,GAAG,CAAC,CAAC,IAAI,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAC,CAAC,OAAO,GAAG,CAAC,IAAI,oBAAoB,CAAC,EAAE,CAAC,IAAI,eAAe,CAAC,EAAE,CAAC,IAAI,gBAAgB,CAAC,EAAE,CAAC,IAAI,MAAM,CAAC,EAAE,CAAC,IAAI,MAAM,CAAC,EAAE,CAAC,SAAS,qBAAqB,CAAC,IAAI,CAAC,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,CAAC,OAAM,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC,OAAM,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,IAAI,CAAC,CAAC,SAAS,mBAAmB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC,OAAO,IAAI,QAAQ,CAAC,MAAM,CAAC,kBAAkB,CAAC,IAAI,CAAC,QAAQ,CAAC,mBAAmB,CAAC,2CAA2C,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,WAAW,CAAC,aAAa,CAAC,SAAS,CAAC,CAAC,IAAI,UAAU,CAAC,mBAAmB,CAAC,SAAS,CAAC,SAAS,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,GAAG,KAAK,GAAG,SAAS,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,oBAAoB,CAAC,EAAE,EAAC,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,SAAS,CAAC,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,SAAS,CAAC,CAAC,UAAU,CAAC,SAAS,CAAC,WAAW,CAAC,UAAU,CAAC,UAAU,CAAC,SAAS,CAAC,QAAQ,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,UAAU,CAAC,IAAI,YAAY,CAAC,SAAS,CAAC,SAAS,iBAAiB,CAAC,OAAO,CAAC,CAAC,MAAM,IAAI,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,aAAa,CAAC,SAAS,CAAC,SAAS,kBAAkB,CAAC,OAAO,CAAC,CAAC,MAAM,IAAI,aAAa,CAAC,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,OAAO,CAAC,cAAc,CAAC,iBAAiB,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,SAAS,IAAI,CAAC,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,eAAc,CAAC,CAAC,CAAC,SAAS,UAAU,CAAC,cAAc,CAAC,CAAC,IAAI,gBAAgB,CAAC,iBAAiB,CAAC,cAAc,CAAC,CAAC,GAAG,gBAAgB,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,kBAAkB,CAAC,iCAAiC,EAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,EAAC,CAAC,CAAC,IAAI,cAAc,CAAC,IAAI,KAAK,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,IAAI,iBAAiB,CAAC,EAAE,CAAC,IAAI,UAAU,CAAC,CAAC,CAAC,cAAc,CAAC,OAAO,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,eAAe,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC,EAAE,EAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,oBAAoB,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC,CAAC,oBAAoB,CAAC,EAAE,CAAC,CAAC,GAAE,CAAC,oBAAoB,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC,EAAE,UAAU,CAAC,GAAG,UAAU,GAAG,iBAAiB,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC,cAAc,EAAC,CAAC,CAAC,EAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,iBAAiB,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC,cAAc,EAAC,CAAC,CAAC,SAAS,YAAY,CAAC,OAAO,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,GAAG,EAAE,gBAAgB,GAAG,kBAAkB,CAAC,CAAC,CAAC,MAAM,IAAI,SAAS,CAAC,yDAAyD,CAAC,CAAC,IAAI,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,iBAAiB,CAAC,QAAQ,CAAC,IAAI,CAAC,+CAA+C,EAAC,CAAC,GAAG,eAAe,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,4BAA4B,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,iBAAiB,CAAC,wBAAwB,CAAC,IAAI,CAAC,SAAS,EAAC,CAAC,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC,kBAAkB,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,CAAC,GAAG,oBAAoB,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,oBAAoB,CAAC,OAAO,CAAC,CAAC,OAAO,oBAAoB,CAAC,OAAO,CAAC,CAAC,SAAS,CAAC,OAAO,CAAC,SAAS,EAAE,CAAC,CAAC,EAAE,GAAE,CAAC,EAAC,CAAC,CAAC,SAAS,sBAAsB,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,IAAI,KAAK,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,SAAS,EAAE,CAAC,CAAC,OAAM,CAAC,CAAC,EAAE,CAAC,CAAC,YAAY,CAAC,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,sBAAsB,CAAC,SAAS,OAAO,CAAC,CAAC,IAAI,IAAI,CAAC,GAAG,IAAI,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,MAAK,CAAC,KAAK,GAAG,IAAI,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,OAAM,CAAC,KAAK,GAAG,IAAI,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,OAAM,CAAC,IAAI,CAAC,MAAM,IAAI,SAAS,CAAC,6BAA6B,CAAC,IAAI,CAAC,CAAC,OAAO,IAAI,CAAC,cAAc,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,kBAAkB,CAAC,IAAI,CAAC,EAAC,CAAC,SAAS,qBAAqB,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,IAAI,YAAY,WAAW,CAAC,CAAC,CAAC,OAAO,KAAK,CAAC,GAAG,EAAE,KAAK,YAAY,WAAW,CAAC,CAAC,CAAC,OAAO,KAAK,CAAC,IAAI,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,UAAU,CAAC,KAAK,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,MAAM,SAAS,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,SAAS,CAAC,UAAS,CAAC,MAAM,UAAU,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,UAAU,CAAC,UAAU,CAAC,UAAS,CAAC,OAAO,SAAS,GAAG,UAAU,EAAE,IAAI,GAAG,KAAK,CAAC,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,OAAM,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,eAAe,CAAC,uBAAuB,CAAC,CAAC,CAAC,uBAAuB,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2BAA2B,CAAC,GAAG,CAAC,CAAC,SAAS,mBAAmB,CAAC,MAAM,CAAC,CAAC,OAAO,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,iBAAiB,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC,2BAA2B,EAAC,CAAC,IAAI,iBAAiB,CAAC,KAAK,CAAC,SAAS,eAAe,CAAC,MAAM,CAAC,EAAE,SAAS,aAAa,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,YAAY,CAAC,aAAa,CAAC,EAAE,CAAC,QAAQ,EAAC,CAAC,IAAI,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,aAAa,CAAC,EAAE,CAAC,GAAG,EAAC,CAAC,CAAC,SAAS,kBAAkB,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC,IAAI,QAAQ,CAAC,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,QAAQ,CAAC,CAAC,aAAa,CAAC,EAAE,EAAC,CAAC,CAAC,SAAS,eAAe,CAAC,MAAM,CAAC,CAAC,GAAG,WAAW,GAAG,OAAO,iBAAiB,CAAC,CAAC,eAAe,CAAC,SAAS,MAAM,CAAC,CAAC,OAAO,MAAM,CAAC,CAAC,OAAO,MAAM,CAAC,iBAAiB,CAAC,IAAI,iBAAiB,CAAC,SAAS,IAAI,CAAC,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,0BAA0B,CAAC,EAAE,CAAC,GAAG,EAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,EAAE,EAAC,CAAC,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC,SAAS,MAAM,CAAC,CAAC,iBAAiB,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,OAAO,MAAM,CAAC,CAAC,eAAe,CAAC,SAAS,MAAM,CAAC,CAAC,iBAAiB,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,EAAC,CAAC,CAAC,OAAO,eAAe,CAAC,MAAM,CAAC,CAAC,SAAS,iBAAiB,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,2BAA2B,CAAC,IAAI,EAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC,uBAAuB,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,KAAK,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,eAAe,CAAC,KAAK,CAAC,OAAO,KAAK,CAAC,CAAC,SAAS,kBAAkB,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,2BAA2B,CAAC,IAAI,EAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC,eAAe,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,uBAAuB,CAAC,CAAC,iBAAiB,CAAC,uCAAuC,EAAC,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC,kBAAkB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,uBAAuB,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,QAAQ,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,UAAS,CAAC,CAAC,SAAS,qBAAqB,EAAE,CAAC,OAAM,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,aAAa,CAAC,SAAS,CAAC,IAAI,aAAa,CAAC,EAAE,CAAC,SAAS,mBAAmB,EAAE,CAAC,MAAM,aAAa,CAAC,MAAM,CAAC,CAAC,IAAI,GAAG,CAAC,aAAa,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,eAAe,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,CAAC,GAAE,CAAC,CAAC,SAAS,uBAAuB,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,2BAA2B,CAAC,IAAI,EAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC,eAAe,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,uBAAuB,CAAC,CAAC,iBAAiB,CAAC,uCAAuC,EAAC,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,aAAa,CAAC,MAAM,GAAG,CAAC,EAAE,aAAa,CAAC,CAAC,aAAa,CAAC,mBAAmB,EAAC,CAAC,IAAI,CAAC,EAAE,CAAC,eAAe,CAAC,IAAI,CAAC,OAAO,IAAI,CAAC,SAAS,gBAAgB,EAAE,CAAC,WAAW,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC,qBAAqB,CAAC,WAAW,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,iBAAiB,CAAC,WAAW,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,kBAAkB,CAAC,WAAW,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC,qBAAqB,CAAC,WAAW,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC,wBAAuB,CAAC,SAAS,WAAW,EAAE,EAAE,IAAI,kBAAkB,CAAC,EAAE,CAAC,SAAS,mBAAmB,CAAC,KAAK,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,GAAG,SAAS,GAAG,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,CAAC,IAAI,QAAQ,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,cAAc,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,iBAAiB,CAAC,YAAY,CAAC,SAAS,CAAC,gDAAgD,CAAC,SAAS,CAAC,MAAM,CAAC,sBAAsB,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,IAAI,EAAC,CAAC,OAAO,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,EAAE,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,SAAQ,CAAC,CAAC,SAAS,kBAAkB,CAAC,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,GAAG,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,SAAS,GAAG,YAAY,EAAE,SAAS,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,aAAa,EAAE,SAAS,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC,CAAC,iBAAiB,CAAC,+BAA+B,CAAC,IAAI,CAAC,SAAS,EAAC,CAAC,mBAAmB,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC,CAAC,iBAAiB,CAAC,sFAAsF,CAAC,YAAY,CAAC,IAAI,EAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC,MAAK,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,SAAS,GAAG,YAAY,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,YAAY,CAAC,aAAY,CAAC,CAAC,CAAC,SAAS,eAAe,CAAC,IAAI,CAAC,WAAW,CAAC,iBAAiB,CAAC,aAAa,CAAC,SAAS,CAAC,aAAa,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,oBAAoB,CAAC,GAAE,CAAC,SAAS,aAAa,CAAC,GAAG,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC,MAAM,QAAQ,GAAG,YAAY,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,iBAAiB,CAAC,+BAA+B,CAAC,YAAY,CAAC,IAAI,CAAC,uBAAuB,CAAC,QAAQ,CAAC,IAAI,EAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,UAAS,CAAC,OAAO,GAAG,CAAC,SAAS,mCAAmC,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,iBAAiB,CAAC,sBAAsB,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,iBAAiB,CAAC,eAAe,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,iBAAiB,CAAC,kDAAkD,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,GAAG,CAAC,aAAa,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,OAAO,GAAG,CAAC,SAAS,wBAAwB,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,GAAG,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,iBAAiB,CAAC,sBAAsB,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,cAAc,EAAE,CAAC,GAAG,WAAW,GAAG,IAAI,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,aAAa,CAAC,GAAG,EAAC,CAAC,OAAO,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,iBAAiB,CAAC,eAAe,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,iBAAiB,CAAC,kDAAkD,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,iBAAiB,CAAC,kCAAkC,EAAE,MAAM,CAAC,EAAE,CAAC,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,GAAG,CAAC,aAAa,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC,GAAG,SAAS,GAAG,MAAM,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC,iBAAiB,CAAC,iDAAiD,EAAC,CAAC,OAAO,IAAI,CAAC,aAAa,EAAE,KAAK,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC,YAAY,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,SAAQ,CAAC,IAAI,CAAC,iBAAiB,CAAC,kCAAkC,EAAE,MAAM,CAAC,EAAE,CAAC,YAAY,CAAC,MAAM,CAAC,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,MAAM,KAAK,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,QAAQ,CAAC,MAAM,KAAK,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC,YAAY,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,SAAQ,CAAC,IAAI,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,gBAAgB,CAAC,UAAU,CAAC,YAAY,CAAC,QAAQ,CAAC,GAAE,CAAC,CAAC,CAAC,CAAC,GAAG,WAAW,GAAG,IAAI,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,aAAa,CAAC,GAAG,EAAC,CAAC,CAAC,MAAM,QAAQ,iBAAiB,CAAC,6BAA6B,EAAC,CAAC,CAAC,OAAO,GAAG,CAAC,SAAS,sCAAsC,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,iBAAiB,CAAC,sBAAsB,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,iBAAiB,CAAC,eAAe,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,iBAAiB,CAAC,kDAAkD,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,iBAAiB,CAAC,kCAAkC,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,GAAG,CAAC,aAAa,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,OAAO,GAAG,CAAC,SAAS,0BAA0B,CAAC,OAAO,CAAC,CAAC,OAAO,IAAI,CAAC,cAAc,CAAC,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,4BAA4B,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,aAAa,CAAC,GAAG,EAAC,CAAC,OAAO,GAAG,CAAC,SAAS,4BAA4B,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,GAAG,EAAC,CAAC,CAAC,SAAS,8BAA8B,CAAC,MAAM,CAAC,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAE,CAAC,CAAC,SAAS,eAAe,CAAC,GAAG,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC,GAAG,QAAQ,GAAG,YAAY,CAAC,CAAC,OAAO,GAAG,CAAC,GAAG,SAAS,GAAG,YAAY,CAAC,SAAS,CAAC,CAAC,OAAO,IAAI,CAAC,IAAI,EAAE,CAAC,eAAe,CAAC,GAAG,CAAC,QAAQ,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,OAAO,IAAI,CAAC,OAAO,YAAY,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,SAAS,yBAAyB,EAAE,CAAC,OAAO,MAAM,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,MAAM,CAAC,SAAS,yBAAyB,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,IAAI,mBAAmB,CAAC,CAAC,GAAG,mBAAmB,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,EAAC,CAAC,CAAC,OAAO,EAAE,CAAC,SAAS,gBAAgB,CAAC,EAAE,CAAC,CAAC,aAAa,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,MAAM,EAAE,aAAa,CAAC,CAAC,aAAa,CAAC,mBAAmB,EAAC,CAAC,CAAC,SAAS,WAAW,EAAE,CAAC,MAAM,CAAC,2BAA2B,CAAC,CAAC,yBAAyB,CAAC,MAAM,CAAC,2BAA2B,CAAC,CAAC,yBAAyB,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC,mBAAmB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,iBAAgB,CAAC,IAAI,mBAAmB,CAAC,EAAE,CAAC,SAAS,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,GAAG,SAAS,CAAC,CAAC,iBAAiB,CAAC,6BAA6B,EAAC,CAAC,MAAM,MAAM,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,UAAS,CAAC,OAAO,GAAG,CAAC,SAAS,oBAAoB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,OAAO,mBAAmB,CAAC,GAAG,CAAC,CAAC,SAAS,eAAe,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,kBAAkB,CAAC,0CAA0C,EAAC,CAAC,IAAI,eAAe,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,WAAW,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,eAAe,GAAG,WAAW,CAAC,CAAC,kBAAkB,CAAC,kDAAkD,EAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,eAAe,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,8BAA8B,CAAC,GAAG,CAAC,CAAC,IAAI,UAAU,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,OAAO,IAAI,CAAC,IAAI,kBAAkB,CAAC,oBAAoB,CAAC,IAAI,CAAC,eAAe,CAAC,UAAU,CAAC,CAAC,GAAG,SAAS,GAAG,kBAAkB,CAAC,CAAC,GAAG,CAAC,GAAG,kBAAkB,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,kBAAkB,CAAC,EAAE,CAAC,GAAG,CAAC,UAAU,CAAC,kBAAkB,CAAC,EAAE,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,kBAAkB,CAAC,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,kBAAkB,CAAC,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,SAAS,iBAAiB,EAAE,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,eAAe,CAAC,iBAAiB,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,UAAU,CAAC,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,eAAe,CAAC,iBAAiB,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,IAAI,CAAC,eAAe,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC,IAAI,uBAAuB,CAAC,kBAAkB,CAAC,UAAU,CAAC,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAC,OAAO,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,uBAAuB,CAAC,iBAAgB,CAAC,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,YAAW,CAAC,IAAI,EAAE,CAAC,eAAe,CAAC,UAAU,CAAC,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,OAAO,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC,OAAO,eAAe,CAAC,MAAM,CAAC,eAAe,CAAC,iBAAiB,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,eAAe,CAAC,MAAM,CAAC,eAAe,CAAC,iBAAiB,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,sBAAsB,EAAE,CAAC,iBAAiB,CAAC,SAAS,CAAC,UAAU,CAAC,4BAA4B,CAAC,iBAAiB,CAAC,SAAS,CAAC,UAAU,CAAC,4BAA4B,CAAC,iBAAiB,CAAC,SAAS,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,iBAAiB,CAAC,SAAS,CAAC,sBAAsB,CAAC,CAAC,0BAA0B,CAAC,iBAAiB,CAAC,SAAS,CAAC,cAAc,CAAC,CAAC,8BAA8B,CAAC,iBAAiB,CAAC,SAAS,CAAC,cAAc,CAAC,CAAC,+BAA8B,CAAC,SAAS,iBAAiB,CAAC,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,OAAO,CAAC,cAAc,CAAC,WAAW,CAAC,aAAa,CAAC,aAAa,CAAC,cAAc,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,eAAe,CAAC,eAAe,CAAC,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,cAAc,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,IAAI,CAAC,cAAc,CAAC,cAAc,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,GAAG,CAAC,cAAc,EAAE,eAAe,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,mCAAmC,CAAC,IAAI,CAAC,kBAAkB,CAAC,KAAI,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,sCAAsC,CAAC,IAAI,CAAC,kBAAkB,CAAC,KAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,yBAAwB,CAAC,CAAC,SAAS,mBAAmB,CAAC,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,kBAAkB,CAAC,qCAAqC,EAAC,CAAC,GAAG,SAAS,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,aAAa,EAAE,SAAS,GAAG,YAAY,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC,MAAK,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,aAAY,CAAC,CAAC,SAAS,uBAAuB,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC,SAAS,CAAC,gBAAgB,CAAC,SAAS,CAAC,CAAC,SAAS,aAAa,CAAC,OAAO,CAAC,CAAC,IAAI,IAAI,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAC,CAAC,IAAI,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,IAAI,EAAE,gCAAgC,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,OAAO,IAAI,QAAQ,CAAC,SAAS,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,IAAI,EAAE,CAAC,GAAG,MAAM,CAAC,iBAAiB,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAC,WAAW,EAAC,CAAC,KAAK,GAAG,OAAO,cAAc,GAAG,WAAW,CAAC,CAAC,EAAE,CAAC,cAAc,CAAC,WAAW,EAAC,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,MAAM,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,GAAG,EAAE,GAAG,SAAS,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,UAAU,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,GAAG,SAAS,CAAC,CAAC,iBAAiB,CAAC,oCAAoC,CAAC,SAAS,EAAC,CAAC,CAAC,EAAE,CAAC,aAAa,CAAC,EAAE,EAAC,CAAC,GAAG,OAAO,EAAE,GAAG,UAAU,CAAC,CAAC,iBAAiB,CAAC,0CAA0C,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,EAAC,CAAC,OAAO,EAAE,CAAC,IAAI,gBAAgB,CAAC,SAAS,CAAC,SAAS,WAAW,CAAC,IAAI,CAAC,CAAC,IAAI,GAAG,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,CAAC,SAAS,qBAAqB,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,IAAI,YAAY,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,EAAE,CAAC,SAAS,KAAK,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,eAAe,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,gBAAgB,CAAC,IAAI,CAAC,CAAC,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,KAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,MAAM,IAAI,gBAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,uBAAuB,CAAC,OAAO,CAAC,cAAc,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,sBAAsB,CAAC,aAAa,CAAC,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,QAAQ,CAAC,IAAI,CAAC,mBAAmB,CAAC,aAAa,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,aAAa,CAAC,uBAAuB,CAAC,sBAAsB,CAAC,aAAa,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,MAAM,CAAC,uBAAuB,CAAC,eAAe,CAAC,MAAM,EAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,QAAQ,CAAC,uBAAuB,CAAC,iBAAiB,CAAC,QAAQ,EAAC,CAAC,aAAa,CAAC,uBAAuB,CAAC,mBAAmB,CAAC,aAAa,CAAC,CAAC,IAAI,iBAAiB,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC,kBAAkB,CAAC,iBAAiB,CAAC,UAAU,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,gBAAgB,CAAC,EAAC,CAAC,CAAC,CAAC,6BAA6B,CAAC,CAAC,OAAO,CAAC,cAAc,CAAC,mBAAmB,CAAC,CAAC,gBAAgB,CAAC,CAAC,gBAAgB,CAAC,CAAC,EAAE,CAAC,SAAS,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,IAAI,aAAa,CAAC,GAAG,gBAAgB,CAAC,CAAC,SAAS,CAAC,IAAI,CAAC,eAAe,CAAC,aAAa,CAAC,SAAS,CAAC,kBAAiB,CAAC,IAAI,CAAC,aAAa,CAAC,WAAW,CAAC,UAAS,CAAC,IAAI,WAAW,CAAC,mBAAmB,CAAC,iBAAiB,CAAC,UAAU,CAAC,GAAG,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,GAAG,iBAAiB,CAAC,CAAC,MAAM,IAAI,YAAY,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC,GAAG,SAAS,GAAG,eAAe,CAAC,gBAAgB,CAAC,CAAC,MAAM,IAAI,YAAY,CAAC,IAAI,CAAC,gCAAgC,CAAC,CAAC,IAAI,IAAI,CAAC,eAAe,CAAC,gBAAgB,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,CAAC,MAAM,IAAI,YAAY,CAAC,0BAA0B,CAAC,IAAI,CAAC,sCAAsC,CAAC,SAAS,CAAC,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,IAAI,CAAC,eAAe,CAAC,gBAAgB,CAAC,CAAC,QAAQ,EAAE,CAAC,uBAAuB,CAAC,CAAC,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,SAAS,CAAC,iBAAiB,CAAC,IAAI,eAAe,CAAC,IAAI,eAAe,CAAC,IAAI,CAAC,WAAW,CAAC,iBAAiB,CAAC,aAAa,CAAC,SAAS,CAAC,aAAa,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,IAAI,kBAAkB,CAAC,IAAI,iBAAiB,CAAC,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,IAAI,gBAAgB,CAAC,IAAI,iBAAiB,CAAC,IAAI,CAAC,GAAG,CAAC,eAAe,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,IAAI,qBAAqB,CAAC,IAAI,iBAAiB,CAAC,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,qBAAqB,CAAC,CAAC,mBAAmB,CAAC,iBAAiB,CAAC,WAAW,CAAC,CAAC,OAAM,CAAC,kBAAkB,CAAC,gBAAgB,CAAC,qBAAqB,CAAC,CAAC,EAAC,CAAC,SAAS,mBAAmB,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,IAAI,KAAK,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,YAAY,EAAE,CAAC,EAAE,CAAC,CAAC,EAAC,CAAC,OAAO,KAAK,CAAC,SAAS,cAAc,CAAC,WAAW,CAAC,CAAC,MAAM,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,GAAG,CAAC,WAAW,CAAC,GAAG,EAAE,CAAC,IAAI,GAAG,CAAC,WAAW,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,GAAG,EAAC,CAAC,CAAC,SAAS,mCAAmC,CAAC,YAAY,CAAC,QAAQ,CAAC,eAAe,CAAC,gBAAgB,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,IAAI,WAAW,CAAC,mBAAmB,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC,OAAO,CAAC,uBAAuB,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC,6BAA6B,CAAC,EAAE,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,SAAS,CAAC,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,cAAc,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,SAAS,GAAG,SAAS,CAAC,eAAe,CAAC,gBAAgB,CAAC,CAAC,SAAS,CAAC,eAAe,CAAC,gBAAgB,CAAC,GAAE,CAAC,GAAG,SAAS,GAAG,SAAS,CAAC,eAAe,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,YAAY,CAAC,6EAA6E,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC,SAAS,CAAC,IAAI,CAAC,qGAAqG,CAAC,CAAC,SAAS,CAAC,eAAe,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,kBAAkB,EAAE,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,SAAS,CAAC,IAAI,CAAC,uBAAuB,CAAC,WAAW,EAAC,CAAC,CAAC,6BAA6B,CAAC,EAAE,CAAC,WAAW,CAAC,SAAS,QAAQ,CAAC,CAAC,SAAS,CAAC,eAAe,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,gBAAgB,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,iBAAiB,CAAC,SAAS,CAAC,eAAe,CAAC,SAAS,CAAC,MAAM,CAAC,uBAAuB,EAAE,QAAQ,CAAC,CAAC,CAAC,EAAC,CAAC,IAAI,WAAW,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAC,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC,OAAO,QAAQ,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,OAAM,EAAE,CAAC,CAAC,CAAC,OAAM,EAAE,CAAC,EAAC,CAAC,SAAS,IAAI,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC,GAAG,EAAE,WAAW,YAAY,QAAQ,CAAC,CAAC,CAAC,MAAM,IAAI,SAAS,CAAC,oCAAoC,CAAC,OAAO,WAAW,CAAC,0BAA0B,CAAC,CAAC,IAAI,KAAK,CAAC,mBAAmB,CAAC,WAAW,CAAC,IAAI,EAAE,qBAAqB,CAAC,UAAU,EAAE,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,WAAW,CAAC,SAAS,CAAC,IAAI,GAAG,CAAC,IAAI,KAAK,CAAC,IAAI,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC,OAAO,CAAC,YAAY,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,SAAS,oBAAoB,CAAC,SAAS,CAAC,QAAQ,CAAC,SAAS,CAAC,cAAc,CAAC,aAAa,CAAC,CAAC,IAAI,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,iBAAiB,CAAC,gFAAgF,EAAC,CAAC,IAAI,iBAAiB,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,IAAI,EAAE,SAAS,GAAG,IAAI,CAAC,IAAI,oBAAoB,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,kBAAkB,GAAG,SAAS,CAAC,CAAC,oBAAoB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,QAAQ,CAAC,EAAE,CAAC,IAAI,aAAa,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC,CAAC,aAAa,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC,CAAC,QAAO,CAAC,IAAI,aAAa,CAAC,kBAAkB,CAAC,qBAAqB,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,OAAO,CAAC,2BAA2B,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,8BAA8B,CAAC,SAAS,CAAC,4DAA4D,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,aAAa,CAAC,KAAK,CAAC,GAAG,oBAAoB,CAAC,CAAC,aAAa,EAAE,0BAAyB,CAAC,IAAI,SAAS,CAAC,oBAAoB,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,KAAK,CAAC,CAAC,mBAAmB,CAAC,SAAS,CAAC,IAAI,CAAC,gBAAgB,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC,IAAI,KAAK,CAAC,CAAC,iBAAiB,CAAC,cAAc,CAAC,aAAa,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,iBAAiB,CAAC,CAAC,aAAa,EAAE,wCAAwC,CAAC,SAAS,CAAC,aAAY,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,aAAa,EAAE,SAAS,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAC,cAAc,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAC,CAAC,GAAG,iBAAiB,CAAC,CAAC,aAAa,CAAC,WAAW,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,cAAa,CAAC,aAAa,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,EAAE,EAAE,YAAY,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,aAAa,CAAC,MAAM,CAAC,GAAG,oBAAoB,CAAC,CAAC,aAAa,EAAE,iCAAgC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,kBAAkB,GAAG,IAAI,CAAC,CAAC,aAAa,EAAE,SAAS,CAAC,QAAQ,CAAC,SAAS,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,kBAAkB,EAAC,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,aAAa,EAAE,uCAAuC,CAAC,gBAAe,CAAC,AAAM,aAAa,EAAE,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,IAAI,eAAe,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,eAAe,CAAC,SAAS,gCAAgC,CAAC,YAAY,CAAC,UAAU,CAAC,QAAQ,CAAC,eAAe,CAAC,gBAAgB,CAAC,UAAU,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,IAAI,WAAW,CAAC,mBAAmB,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,gBAAgB,CAAC,UAAU,CAAC,CAAC,UAAU,CAAC,uBAAuB,CAAC,gBAAgB,CAAC,UAAU,CAAC,CAAC,6BAA6B,CAAC,EAAE,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,SAAS,CAAC,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,aAAa,CAAC,CAAC,SAAS,CAAC,eAAe,CAAC,oBAAoB,CAAC,IAAI,CAAC,UAAU,EAAC,CAAC,SAAS,mBAAmB,EAAE,CAAC,qBAAqB,CAAC,cAAc,CAAC,SAAS,CAAC,uBAAuB,CAAC,WAAW,EAAC,CAAC,IAAI,KAAK,CAAC,SAAS,CAAC,eAAe,CAAC,iBAAiB,CAAC,IAAI,MAAM,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,GAAG,SAAS,GAAG,MAAM,EAAE,SAAS,GAAG,MAAM,CAAC,aAAa,EAAE,MAAM,CAAC,SAAS,GAAG,SAAS,CAAC,IAAI,EAAE,MAAM,CAAC,QAAQ,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,mBAAmB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,mBAAmB,CAAC,SAAS,CAAC,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,oBAAmB,CAAC,IAAI,CAAC,mBAAmB,CAAC,KAAK,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,oBAAmB,CAAC,6BAA6B,CAAC,EAAE,CAAC,WAAW,CAAC,SAAS,QAAQ,CAAC,CAAC,IAAI,cAAc,CAAC,oBAAoB,CAAC,SAAS,CAAC,QAAQ,CAAC,SAAS,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,GAAG,SAAS,GAAG,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,CAAC,cAAc,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,eAAc,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,eAAc,CAAC,OAAM,EAAE,CAAC,CAAC,CAAC,OAAM,EAAE,CAAC,EAAC,CAAC,SAAS,YAAY,CAAC,KAAK,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,GAAG,EAAE,KAAK,YAAY,MAAM,CAAC,CAAC,CAAC,iBAAiB,CAAC,SAAS,CAAC,wBAAwB,CAAC,KAAK,EAAC,CAAC,GAAG,EAAE,KAAK,YAAY,SAAS,CAAC,eAAe,CAAC,WAAW,CAAC,CAAC,CAAC,iBAAiB,CAAC,SAAS,CAAC,oCAAoC,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,EAAC,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,iBAAiB,CAAC,wCAAwC,CAAC,SAAS,CAAC,oBAAoB,EAAC,CAAC,OAAO,aAAa,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,SAAS,CAAC,eAAe,CAAC,CAAC,SAAS,gCAAgC,CAAC,SAAS,CAAC,SAAS,CAAC,gBAAgB,CAAC,eAAe,CAAC,MAAM,CAAC,aAAa,CAAC,kBAAkB,CAAC,eAAe,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,SAAS,CAAC,gBAAgB,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,uBAAuB,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,6BAA6B,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,SAAS,CAAC,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,SAAS,CAAC,uBAAuB,CAAC,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,EAAC,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,SAAS,CAAC,uBAAuB,CAAC,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,EAAC,EAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC,iBAAiB,CAAC,SAAS,CAAC,0BAA0B,EAAC,EAAC,CAAC,MAAM,CAAC,cAAc,CAAC,SAAS,CAAC,eAAe,CAAC,iBAAiB,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,6BAA6B,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,SAAS,KAAK,CAAC,CAAC,IAAI,gBAAgB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,GAAG,CAAC,YAAY,CAAC,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,OAAO,gBAAgB,CAAC,cAAc,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,MAAM,CAAC,uBAAuB,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,IAAI,kBAAkB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,YAAY,CAAC,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,IAAI,WAAW,CAAC,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,CAAC,kBAAkB,CAAC,YAAY,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC,WAAW,EAAC,EAAC,CAAC,MAAM,CAAC,cAAc,CAAC,SAAS,CAAC,eAAe,CAAC,iBAAiB,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,OAAM,EAAE,CAAC,CAAC,CAAC,OAAM,EAAE,CAAC,EAAC,CAAC,SAAS,0BAA0B,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,6BAA6B,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,KAAK,CAAC,CAAC,OAAM,EAAE,CAAC,EAAC,CAAC,IAAI,eAAe,CAAC,EAAE,CAAC,IAAI,kBAAkB,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,cAAc,CAAC,MAAM,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,EAAE,CAAC,GAAG,EAAE,kBAAkB,CAAC,MAAM,CAAC,CAAC,QAAQ,CAAC,CAAC,kBAAkB,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,eAAe,CAAC,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC,SAAS,mBAAmB,EAAE,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,kBAAkB,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,kBAAkB,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,EAAE,MAAK,CAAC,CAAC,OAAO,KAAK,CAAC,SAAS,eAAe,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,kBAAkB,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,kBAAkB,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,OAAO,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,IAAI,CAAC,SAAS,UAAU,EAAE,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC,mBAAmB,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,gBAAe,CAAC,SAAS,gBAAgB,CAAC,KAAK,CAAC,CAAC,OAAO,KAAK,EAAE,KAAK,SAAS,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,IAAI,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,eAAe,CAAC,GAAG,EAAE,CAAC,kBAAkB,CAAC,MAAM,CAAC,kBAAkB,CAAC,MAAM,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,OAAO,MAAM,CAAC,CAAC,CAAC,SAAS,uBAAuB,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,SAAS,MAAM,CAAC,CAAC,IAAI,EAAE,CAAC,kBAAkB,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,YAAY,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,CAAC,OAAO,gBAAgB,CAAC,KAAK,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,sBAAsB,CAAC,0BAA0B,CAAC,kBAAkB,CAAC,IAAI,CAAC,EAAC,CAAC,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC,OAAM,MAAM,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,GAAG,QAAQ,EAAE,CAAC,GAAG,OAAO,EAAE,CAAC,GAAG,UAAU,CAAC,CAAC,OAAO,CAAC,CAAC,QAAQ,EAAE,CAAC,IAAI,CAAC,OAAM,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,yBAAyB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,KAAK,EAAE,KAAK,CAAC,CAAC,OAAO,SAAS,OAAO,CAAC,CAAC,OAAO,IAAI,CAAC,cAAc,CAAC,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,SAAS,OAAO,CAAC,CAAC,OAAO,IAAI,CAAC,cAAc,CAAC,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,MAAM,IAAI,SAAS,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,uBAAuB,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,SAAS,KAAK,CAAC,CAAC,OAAO,KAAK,CAAC,CAAC,YAAY,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,CAAC,GAAG,OAAO,KAAK,GAAG,QAAQ,EAAE,OAAO,KAAK,GAAG,SAAS,CAAC,CAAC,MAAM,IAAI,SAAS,CAAC,kBAAkB,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,OAAO,KAAK,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,sBAAsB,CAAC,yBAAyB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,kBAAkB,CAAC,IAAI,CAAC,EAAC,CAAC,SAAS,0BAA0B,CAAC,IAAI,CAAC,QAAQ,CAAC,eAAe,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,QAAQ,CAAC,mBAAmB,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,UAAU,CAAC,uBAAuB,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,kBAAkB,CAAC,IAAI,CAAC,UAAU,CAAC,qBAAqB,CAAC,cAAc,CAAC,IAAI,CAAC,uBAAuB,CAAC,QAAQ,EAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,6BAA6B,CAAC,EAAE,CAAC,QAAQ,CAAC,SAAS,QAAQ,CAAC,CAAC,IAAI,gBAAgB,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,mBAAmB,CAAC,IAAI,CAAC,oBAAoB,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,OAAM,EAAE,CAAC,EAAC,CAAC,SAAS,2BAA2B,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,OAAO,KAAK,EAAE,KAAK,CAAC,CAAC,OAAO,MAAM,CAAC,SAAS,iBAAiB,CAAC,OAAO,CAAC,CAAC,OAAO,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,iBAAiB,CAAC,OAAO,CAAC,CAAC,OAAO,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,MAAM,CAAC,SAAS,kBAAkB,CAAC,OAAO,CAAC,CAAC,OAAO,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,kBAAkB,CAAC,OAAO,CAAC,CAAC,OAAO,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,MAAM,CAAC,SAAS,kBAAkB,CAAC,OAAO,CAAC,CAAC,OAAO,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,kBAAkB,CAAC,OAAO,CAAC,CAAC,OAAO,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,QAAQ,MAAM,IAAI,SAAS,CAAC,wBAAwB,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,yBAAyB,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,GAAG,QAAQ,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,WAAU,CAAC,IAAI,KAAK,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,IAAI,YAAY,CAAC,SAAS,KAAK,CAAC,CAAC,OAAO,KAAK,CAAC,CAAC,GAAG,QAAQ,GAAG,CAAC,CAAC,CAAC,IAAI,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,SAAS,KAAK,CAAC,CAAC,OAAO,KAAK,EAAE,QAAQ,GAAG,QAAQ,EAAC,CAAC,IAAI,cAAc,CAAC,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,YAAY,CAAC,aAAa,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,YAAY,CAAC,YAAY,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,CAAC,GAAG,OAAO,KAAK,GAAG,QAAQ,EAAE,OAAO,KAAK,GAAG,SAAS,CAAC,CAAC,MAAM,IAAI,SAAS,CAAC,kBAAkB,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC,MAAM,IAAI,SAAS,CAAC,oBAAoB,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,uDAAuD,CAAC,IAAI,CAAC,uCAAuC,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,OAAO,cAAc,CAAC,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,sBAAsB,CAAC,2BAA2B,CAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,GAAG,CAAC,CAAC,CAAC,kBAAkB,CAAC,IAAI,CAAC,EAAC,CAAC,SAAS,6BAA6B,CAAC,OAAO,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,SAAS,CAAC,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,UAAU,CAAC,WAAW,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC,IAAI,EAAE,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,SAAS,gBAAgB,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,IAAI,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,IAAI,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,CAAC,CAAC,sBAAsB,CAAC,gBAAgB,CAAC,CAAC,CAAC,4BAA4B,CAAC,IAAI,CAAC,EAAC,CAAC,SAAS,4BAA4B,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,IAAI,eAAe,CAAC,IAAI,GAAG,aAAa,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,SAAS,KAAK,CAAC,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,GAAG,eAAe,CAAC,CAAC,IAAI,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,CAAC,GAAG,OAAO,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAC,CAAC,IAAI,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,YAAY,CAAC,cAAc,CAAC,CAAC,GAAG,GAAG,GAAG,SAAS,CAAC,GAAG,CAAC,aAAa,CAAC,IAAI,CAAC,GAAG,EAAE,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,cAAa,CAAC,cAAc,CAAC,cAAc,CAAC,EAAC,CAAC,CAAC,GAAG,WAAW,EAAE,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,YAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,EAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,OAAO,GAAG,CAAC,CAAC,YAAY,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,YAAY,WAAW,CAAC,CAAC,KAAK,CAAC,IAAI,UAAU,CAAC,KAAK,EAAC,CAAC,IAAI,SAAS,CAAC,IAAI,mBAAmB,CAAC,OAAO,KAAK,GAAG,QAAQ,CAAC,GAAG,EAAE,mBAAmB,EAAE,KAAK,YAAY,UAAU,EAAE,KAAK,YAAY,iBAAiB,EAAE,KAAK,YAAY,SAAS,CAAC,CAAC,CAAC,iBAAiB,CAAC,uCAAuC,EAAC,CAAC,GAAG,eAAe,EAAE,mBAAmB,CAAC,CAAC,SAAS,CAAC,UAAU,CAAC,OAAO,eAAe,CAAC,KAAK,CAAC,EAAC,CAAC,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC,OAAO,KAAK,CAAC,MAAM,EAAC,CAAC,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,eAAe,EAAE,mBAAmB,CAAC,CAAC,YAAY,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAC,CAAC,IAAI,CAAC,GAAG,mBAAmB,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,QAAQ,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,iBAAiB,CAAC,wDAAwD,EAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAQ,CAAC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAC,CAAC,CAAC,CAAC,GAAG,WAAW,GAAG,IAAI,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,EAAC,CAAC,OAAO,GAAG,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,sBAAsB,CAAC,0BAA0B,CAAC,kBAAkB,CAAC,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,EAAC,CAAC,CAAC,EAAC,CAAC,SAAS,6BAA6B,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,IAAI,OAAO,CAAC,KAAK,CAAC,GAAG,QAAQ,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,OAAO,OAAO,CAAC,CAAC,KAAK,CAAC,EAAC,CAAC,KAAK,GAAG,QAAQ,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,OAAO,OAAO,CAAC,CAAC,KAAK,CAAC,EAAC,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,SAAS,KAAK,CAAC,CAAC,IAAI,IAAI,CAAC,OAAO,EAAE,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC,IAAI,KAAK,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,EAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,YAAY,CAAC,SAAS,WAAW,CAAC,KAAK,CAAC,CAAC,IAAI,IAAI,CAAC,OAAO,EAAE,CAAC,IAAI,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,KAAK,CAAC,GAAG,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,EAAC,CAAC,GAAG,WAAW,GAAG,IAAI,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,EAAC,CAAC,OAAO,GAAG,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,sBAAsB,CAAC,0BAA0B,CAAC,kBAAkB,CAAC,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,EAAC,CAAC,CAAC,EAAC,CAAC,SAAS,sBAAsB,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,cAAc,CAAC,UAAU,CAAC,OAAO,SAAS,CAAC,CAAC,YAAY,CAAC,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,OAAO,SAAS,CAAC,CAAC,EAAC,CAAC,SAAS,aAAa,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,iBAAiB,CAAC,mCAAmC,CAAC,MAAM,EAAC,CAAC,OAAO,kBAAkB,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,SAAS,qBAAqB,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,IAAI,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,CAAC,iBAAiB,CAAC,SAAS,CAAC,oBAAoB,CAAC,WAAW,CAAC,OAAO,CAAC,EAAC,CAAC,OAAO,IAAI,CAAC,SAAS,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC,qBAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,IAAI,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,gBAAgB,CAAC,WAAW,CAAC,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,UAAU,CAAC,YAAY,CAAC,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,SAAS,mBAAmB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,qBAAqB,CAAC,MAAM,CAAC,CAAC,QAAQ,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,EAAC,CAAC,OAAO,CAAC,CAAC,SAAS,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,IAAI,KAAK,CAAC,mBAAmB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,gBAAgB,EAAC,CAAC,IAAI,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,OAAO,gBAAgB,CAAC,EAAE,CAAC,CAAC,IAAI,aAAa,CAAC,EAAE,CAAC,SAAS,iBAAiB,CAAC,OAAO,CAAC,CAAC,IAAI,MAAM,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,GAAG,MAAM,GAAG,SAAS,CAAC,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,OAAO,MAAM,CAAC,CAAC,IAAI,mBAAmB,CAAC,EAAE,CAAC,SAAS,wBAAwB,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,mBAAmB,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC,iBAAiB,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,EAAC,CAAC,SAAS,uBAAuB,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,CAAC,mBAAmB,CAAC,MAAM,CAAC,mBAAmB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,OAAO,EAAE,CAAC,SAAS,yBAAyB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,IAAI,KAAK,CAAC,mBAAmB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,IAAI,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,CAAC,SAAS,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,QAAQ,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAC,CAAC,IAAI,YAAY,CAAC,qBAAqB,CAAC,eAAe,CAAC,aAAa,CAAC,CAAC,IAAI,YAAY,CAAC,kBAAkB,CAAC,YAAY,CAAC,uCAAuC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE,aAAa,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,4BAA4B,EAAE,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,gBAAgB,EAAC,CAAC,YAAY,EAAE,4BAA4B,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,YAAY,EAAE,aAAa,CAAC,CAAC,CAAC,mBAAmB,CAAC,CAAC,CAAC,OAAM,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,YAAY,EAAE,oDAAmD,CAAC,YAAY,EAAE,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,IAAI,eAAe,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,OAAO,uBAAuB,CAAC,eAAe,CAAC,CAAC,SAAS,oBAAoB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,OAAO,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,cAAc,CAAC,MAAM,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,kBAAkB,CAAC,MAAM,CAAC,CAAC,QAAQ,EAAE,EAAC,CAAC,CAAC,SAAS,iBAAiB,EAAE,CAAC,OAAO,gBAAgB,CAAC,EAAE,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,OAAO,gBAAgB,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,kBAAkB,EAAE,CAAC,OAAO,gBAAgB,CAAC,EAAE,CAAC,CAAC,SAAS,uBAAuB,CAAC,MAAM,CAAC,CAAC,IAAI,WAAW,CAAC,kBAAkB,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC,cAAc,CAAC,MAAM,EAAC,CAAC,SAAS,oBAAoB,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,MAAK,CAAC,SAAS,uBAAuB,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,OAAO,KAAK,GAAG,MAAM,CAAC,SAAS,kBAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,gBAAgB,CAAC,CAAC,CAAC,CAAC,SAAS,cAAc,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,OAAO,gBAAgB,CAAC,OAAO,MAAM,CAAC,CAAC,SAAS,MAAM,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,GAAE,CAAC,SAAS,yBAAyB,EAAE,CAAC,OAAO,KAAK,CAAC,MAAM,CAAC,SAAS,sBAAsB,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,IAAI,EAAC,CAAC,SAAS,uBAAuB,CAAC,aAAa,CAAC,CAAC,KAAK,CAAC,KAAK,EAAC,CAAC,SAAS,uBAAuB,CAAC,aAAa,CAAC,CAAC,uBAAuB,CAAC,AAAa,EAAC,CAAC,qBAAqB,EAAE,CAAC,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,gBAAgB,EAAE,CAAC,sBAAsB,EAAE,CAAC,WAAW,EAAE,CAAC,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,UAAU,EAAE,CAAC,AAAqB,SAAS,gBAAgB,CAAC,KAAK,CAAC,CAAC,IAAI,GAAG,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,CAAC,AAAwH,GAAG,EAAE,IAAG,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,CAAC,EAAC,CAAC,OAAO,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,YAAY,CAAC,OAAO,IAAI,GAAG,UAAU,CAAC,IAAI,CAAC,SAAS,KAAK,CAAC,CAAC,IAAI,MAAM,CAAC,mEAAmE,CAAC,IAAI,MAAM,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,qBAAqB,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,EAAC,CAAC,GAAG,IAAI,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,EAAC,CAAC,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,MAAM,EAAE,OAAO,MAAM,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,GAAG,OAAO,mBAAmB,GAAG,SAAS,EAAE,mBAAmB,CAAC,CAAC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,EAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,QAAQ,EAAC,CAAC,OAAO,IAAI,UAAU,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,GAAG,CAAC,IAAI,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,IAAI,UAAU,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,EAAC,CAAC,OAAO,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC,CAAC,SAAS,iBAAiB,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,kBAAkB,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,EAAE,CAAC,IAAI,aAAa,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,yBAAyB,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,aAAa,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,sBAAsB,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,mCAAmC,CAAC,GAAG,CAAC,gCAAgC,CAAC,GAAG,CAAC,gCAAgC,CAAC,GAAG,CAAC,0BAA0B,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,0BAA0B,CAAC,GAAG,CAAC,yBAAyB,CAAC,GAAG,CAAC,6BAA6B,CAAC,GAAG,CAAC,4BAA4B,CAAC,GAAG,CAAC,6BAA6B,CAAC,GAAG,CAAC,sBAAsB,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,wBAAwB,CAAC,GAAG,CAAC,cAAc,CAAC,GAAG,CAAC,yBAAyB,CAAC,GAAG,CAAC,oBAAoB,CAAC,GAAG,CAAC,cAAc,CAAC,GAAG,CAAC,iBAAiB,CAAC,GAAG,CAAC,mBAAmB,CAAC,GAAG,CAAC,kBAAkB,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,oBAAoB,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,kBAAkB,CAAC,GAAG,CAAC,cAAc,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,yBAAyB,CAAC,GAAG,CAAC,sBAAsB,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,uBAAuB,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,YAAY,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,OAAO,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,kBAAkB,CAAC,MAAM,CAAC,oBAAoB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,mBAAmB,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,WAAW,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,YAAY,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,kBAAkB,CAAC,MAAM,CAAC,oBAAoB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,gBAAgB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,kBAAkB,CAAC,MAAM,CAAC,oBAAoB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,iBAAiB,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,mBAAmB,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,kBAAkB,CAAC,MAAM,CAAC,oBAAoB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,mBAAmB,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,oBAAoB,CAAC,MAAM,CAAC,sBAAsB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,qBAAqB,CAAC,MAAM,CAAC,uBAAuB,CAAC,CAAC,UAAU,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,EAAC,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,sBAAsB,CAAC,CAAC,MAAM,CAAC,sBAAsB,CAAC,CAAC,UAAU,CAAC,GAAG,GAAG,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,EAAC,EAAC,CAAC,OAAO,MAAM,CAAC,CAAC,SAAS,UAAU,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,OAAO,CAAC,+BAA+B,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,OAAM,CAAC,UAAU,CAAC,SAAS,CAAC,IAAI,KAAK,CAAC,UAAU,CAAC,SAAS,CAAC,WAAW,CAAC,UAAU,CAAC,qBAAqB,CAAC,SAAS,SAAS,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,qBAAqB,CAAC,UAAS,CAAC,CAAC,SAAS,GAAG,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,WAAW,CAAC,CAAC,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,eAAe,CAAC,CAAC,CAAC,OAAO,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC,OAAO,SAAS,KAAK,EAAE,CAAC,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC,OAAO,MAAM,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,OAAO,iBAAiB,EAAE,CAAC,OAAO,EAAE,CAAC,GAAG,MAAM,CAAC,sBAAsB,CAAC,CAAC,MAAM,CAAC,sBAAsB,CAAC,EAAE,CAAC,OAAO,GAAE,CAAC,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,YAAY,CAAC,CAAC,UAAU,CAAC,UAAU,CAAC,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,EAAE,EAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,GAAE,CAAC,CAAC,CAAC,EAAC,CAAC,IAAI,CAAC,KAAK,GAAE,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,SAAS,KAAK,CAAC,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,IAAI,EAAC,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,EAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAE,CAAC,KAAK,CAAC,IAAI,CAAC,AAAa,KAAK,QAAQ,CAAC,IAAI,CAAC,8CAA8C,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,OAAO,MAAM,CAAC,SAAS,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,MAAM,MAAM,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,GAAG,EAAE,GAAE,CAAC,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;;;EAGpqjkB,OAAO,MAAM;CACd;EACC;CACD,GAAG,CAAC;AACL,AACM,cAAc,GAAG,MAAM,CAAC,AAIG;;;ACTjC,IAAI,IAAiB,CAAC;AACtB,AA8EO,MAAM,aAAa,GAAW,MAAM,CAAC;AAC5C,AAEA;AACA,SAAgB,kBAAkB,KAAc,OAAO,8BAA8B,CAAC,aAAa,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC,aAAa,CAAC,CAAC,EAAE;AAEzN,SAAgB,SAAS,CAAC,KAAuB,IAAU,IAAI,CAAC,KAAK,EAAE;IAAE,MAAM,IAAI,KAAK,EAAE,CAAC;CAAE,EAAE;AAE/F,SAAgB,YAAY,CAAC,IAAqC;IAC9D,IAAI,IAAI,YAAY,cAAc,EAAE;QAChC,OAAO,IAAI,CAAC,IAAI,CAAC;KACpB;SAAM;QACH,OAAO,IAAI,CAAC,MAAM,CAAC;KACtB;CACJ;AAED,MAAa,cAAc;IACvB,YAAmB,IAAY,EAAS,SAAiB,EAAE;QAAxC,SAAI,GAAJ,IAAI,CAAQ;QAAS,WAAM,GAAN,MAAM,CAAa;KAAI;CAClE;AAUD,AAEA,IAAY,gBAiCX;AAjCD,WAAY,gBAAgB;IACxB,uDAA0B,CAAA;IAC1B,mEAA+B,CAAA;IAC/B,+DAA+B,CAAA;IAC/B,2DAA+B,CAAA;IAC/B,qEAA+B,CAAA;IAC/B,kFAA+B,CAAA;IAC/B,oEAA+B,CAAA;IAC/B,gFAA+B,CAAA;IAC/B,yEAA+B,CAAA;IAC/B,+EAA+B,CAAA;IAC/B,2EAA+B,CAAA;IAC/B,gEAAgC,CAAA;IAChC,wFAAgC,CAAA;IAChC,sFAAgC,CAAA;IAChC,4FAAgC,CAAA;IAChC,iGAAgC,CAAA;IAChC,qGAAkC,CAAA;IAClC,+FAAgC,CAAA;IAChC,0EAAgC,CAAA;IAChC,wEAAgC,CAAA;IAChC,mFAAgC,CAAA;IAChC,8DAAiD,CAAA;IACjD,wEAAyE,CAAA;IACzE,oEAAiE,CAAA;;IAGjE,6EAAgC,CAAA;IAChC,4EAAgC,CAAA;IAChC,oEAAgC,CAAA;IAChC,gEAAgC,CAAA;IAChC,iEAAgC,CAAA;IAChC,yEAAgC,CAAA;CACnC,EAjCW,gBAAgB,KAAhB,gBAAgB,QAiC3B;AAED,AAEA,IAAY,mBAwBX;AAxBD,WAAY,mBAAmB;IAC3B,6DAAuB,CAAA;IACvB,6EAA4B,CAAA;IAC5B,qFAA4B,CAAA;IAC5B,iFAA4B,CAAA;IAC5B,6EAA4B,CAAA;IAC5B,gFAA4B,CAAA;IAC5B,sFAA4B,CAAA;IAC5B,0FAA4B,CAAA;IAC5B,qFAA4B,CAAA;IAC5B,mFAA4B,CAAA;IAC5B,2FAA4B,CAAA;IAC5B,kFAA6B,CAAA;IAC7B,8FAA6B,CAAA;IAC7B,4FAA6B,CAAA;IAC7B,wFAA6B,CAAA;IAC7B,yEAA6B,CAAA;IAC7B,yEAA6B,CAAA;IAC7B,6EAA6B,CAAA;IAC7B,wFAA6B,CAAA;IAC7B,sFAA6B,CAAA;;IAE7B,6EAA6B,CAAA;IAC7B,mFAA6B,CAAA;CAChC,EAxBW,mBAAmB,KAAnB,mBAAmB,QAwB9B;AAED,AAEA,IAAY,kBAiBX;AAjBD,WAAY,kBAAkB;IAC1B,2DAAwB,CAAA;IACxB,mEAA6B,CAAA;IAC7B,+DAA6B,CAAA;IAC7B,mFAA6B,CAAA;IAC7B,mFAA6B,CAAA;IAC7B,kFAA6B,CAAA;IAC7B,0EAA6B,CAAA;IAC7B,sFAA6B,CAAA;IAC7B,2EAA6B,CAAA;IAC7B,6DAA6B,CAAA;IAC7B,iEAA6B,CAAA;IAC7B,8EAA8B,CAAA;;;IAG9B,8FAA8B,CAAA;IAC9B,oFAAkE,CAAA;CACrE,EAjBW,kBAAkB,KAAlB,kBAAkB,QAiB7B;AAED,AAEA,IAAY,oBAMX;AAND,WAAY,oBAAoB;IAC5B,+DAAsB,CAAA;IACtB,qFAA2B,CAAA;IAC3B,mFAA2B,CAAA;IAC3B,uFAA2B,CAAA;IAC3B,uEAA2B,CAAA;CAC9B,EANW,oBAAoB,KAApB,oBAAoB,QAM/B;AAED,AAEA,IAAY,eAUX;AAVD,WAAY,eAAe;IACvB,qDAA2B,CAAA;IAC3B,yEAAgC,CAAA;IAChC,mEAAgC,CAAA;IAChC,uEAAgC,CAAA;IAChC,mEAAgC,CAAA;IAChC,wEAAgC,CAAA;IAChC,wEAAgC,CAAA;IAChC,gEAAgC,CAAA;IAChC,oEAAmF,CAAA;CACtF,EAVW,eAAe,KAAf,eAAe,QAU1B;AAED,AAEA,IAAY,gBAYX;AAZD,WAAY,gBAAgB;IACxB,uDAAkC,CAAA;IAClC,qEAAuC,CAAA;IACvC,iFAAuC,CAAA;IACvC,mFAAuC,CAAA;IACvC,uGAAuC,CAAA;IACvC,kGAAuC,CAAA;IACvC,kEAAuC,CAAA;IACvC,8FAAuC,CAAA;IACvC,uFAAuC,CAAA;IACvC,qFAA8E,CAAA;IAC9E,0FAAwD,CAAA;CAC3D,EAZW,gBAAgB,KAAhB,gBAAgB,QAY3B;AAAA,AAID,IAAY,iBAOX;AAPD,WAAY,iBAAiB;IAEzB,6FAAmD,CAAA;IACnD,mHAAwD,CAAA;IACxD,2GAAwD,CAAA;IACxD,6IAAwD,CAAA;IACxD,qGAAwD,CAAA;CAC3D,EAPW,iBAAiB,KAAjB,iBAAiB,QAO5B;AAAA,AAID,IAAY,iBAMX;AAND,WAAY,iBAAiB;IACzB,yDAAiC,CAAA;IACjC,yEAAsC,CAAA;IACtC,qEAAsC,CAAA;IACtC,mEAAsC,CAAA;IACtC,uFAAyD,CAAA;CAC5D,EANW,iBAAiB,KAAjB,iBAAiB,QAM5B;AAED,AAEA,IAAY,iBAYX;AAZD,WAAY,iBAAiB;IACzB,yDAAiC,CAAA;IACjC,yEAAsC,CAAA;IACtC,qEAAsC,CAAA;IACtC,mEAAsC,CAAA;IACtC,+FAAsC,CAAA;;IAEtC,0GAAsC,CAAA;IACtC,wFAAsC,CAAA;IACtC,qFAAsC,CAAA;IACtC,mEAA4G,CAAA;IAC5G,uFAAyD,CAAA;CAC5D,EAZW,iBAAiB,KAAjB,iBAAiB,QAY5B;AAED,AAEA,IAAY,kBAcX;AAdD,WAAY,kBAAkB;;IAE1B,2DAAgC,CAAA;IAChC,+FAAqC,CAAA;IACrC,2FAAqC,CAAA;IACrC,mGAAqC,CAAA;IACrC,qFAAqC,CAAA;IACrC,4EAAqC,CAAA;IACrC,kGAAqC,CAAA;;IAErC,8FAAsC,CAAA;IACtC,oGAAsC,CAAA;IACtC,kGAAsC,CAAA;IACtC,kFAA6E,CAAA;CAChF,EAdW,kBAAkB,KAAlB,kBAAkB,QAc7B;AAED,AAMA,IAAY,aAYX;AAZD,WAAY,aAAa;IACrB,6CAAE,CAAA;IACF,6CAAE,CAAA;IACF,+CAAG,CAAA;IACH,+CAAG,CAAA;IACH,+CAAG,CAAA;IACH,+CAAG,CAAA;IACH,+CAAG,CAAA;IACH,+CAAG,CAAA;IACH,mDAAK,CAAA;IACL,qDAAM,CAAA;IACN,oDAAK,CAAA;CACR,EAZW,aAAa,KAAb,aAAa,QAYxB;AAED,AAEA,IAAY,QAOX;AAPD,WAAY,QAAQ;IAChB,wCAAY,CAAA;IACZ,uCAAW,CAAA;IACX,yCAAW,CAAA;IACX,mCAAW,CAAA;IACX,uCAAW,CAAA;IACX,yCAAK,CAAA;CACR,EAPW,QAAQ,KAAR,QAAQ,QAOnB;AAED,AAEA,IAAY,QAuBX;AAvBD,WAAY,QAAQ;IAChB,qCAAG,CAAA;IACH,iDAAS,CAAA;IACT,mDAAU,CAAA;IACV,6CAAO,CAAA;IACP,iDAAS,CAAA;IACT,2CAAM,CAAA;IACN,+CAAQ,CAAA;IACR,uCAAI,CAAA;IACJ,qCAAG,CAAA;IACH,2CAAM,CAAA;IACN,4CAAM,CAAA;IACN,kDAAS,CAAA;IACT,0CAAK,CAAA;IACL,0CAAK,CAAA;IACL,4CAAM,CAAA;IACN,kCAAC,CAAA;IACD,kCAAC,CAAA;IACD,kCAAC,CAAA;IACD,kCAAC,CAAA;IACD,kCAAC,CAAA;IACD,kCAAC,CAAA;IACD,0CAAK,CAAA;CACR,EAvBW,QAAQ,KAAR,QAAQ,QAuBnB;AAED,AAKA,IAAY,aA8BX;AA9BD,WAAY,aAAa;;IAGrB,yDAAQ,CAAA;IACR,qDAAM,CAAA;IACN,mDAAK,CAAA;IACL,iDAAI,CAAA;IACJ,yDAAQ,CAAA;IACR,2DAAS,CAAA;IACT,qDAAM,CAAA;IACN,yDAAQ,CAAA;IACR,6DAAU,CAAA;IACV,+DAAW,CAAA;IACX,0DAAQ,CAAA;IACR,8DAAU,CAAA;IACV,4DAAS,CAAA;IACT,4DAAS,CAAA;IACT,4DAAS,CAAA;IACT,4DAAS,CAAA;;;IAIT,0DAAQ,CAAA;IACR,wDAAO,CAAA;IACP,0DAAQ,CAAA;IACR,4DAAS,CAAA;IACT,sDAAM,CAAA;IACN,0DAAQ,CAAA;IACR,oDAAK,CAAA;IACL,sEAAyB,CAAA;CAC5B,EA9BW,aAAa,KAAb,aAAa,QA8BxB;AAED,AAEA,IAAY,gBAYX;AAZD,WAAY,gBAAgB;IAExB,uDAAwB,CAAA;IACxB,iFAA6B,CAAA;IAC7B,+EAA6B,CAAA;IAC7B,uFAA6B,CAAA;IAC7B,uFAA6B,CAAA;IAC7B,8DAA6B,CAAA;IAC7B,sFAA6B,CAAA;IAE7B,iEAA8B,CAAA;IAC9B,+EAA8B,CAAA;CACjC,EAZW,gBAAgB,KAAhB,gBAAgB,QAY3B;AAED,AAEA,IAAY,QAkDX;AAlDD,WAAY,QAAQ;IAChB,uCAAI,CAAA;IACJ,uDAAY,CAAA;IACZ,+CAAQ,CAAA;IACR,6CAAO,CAAA;IACP,6CAAO,CAAA;IACP,2CAAM,CAAA;IACN,uDAAY,CAAA;IACZ,6CAAO,CAAA;IACP,2DAAc,CAAA;IACd,yDAAa,CAAA;IACb,8CAAO,CAAA;IACP,0DAAa,CAAA;IACb,gEAAgB,CAAA;IAChB,kDAAS,CAAA;IACT,sDAAW,CAAA;IACX,0DAAa,CAAA;IACb,wEAAoB,CAAA;IACpB,sEAAmB,CAAA;IACnB,kDAAS,CAAA;IACT,oDAAU,CAAA;IACV,gEAAgB,CAAA;IAChB,4CAAM,CAAA;IACN,0DAAa,CAAA;IACb,wDAAY,CAAA;IACZ,4CAAM,CAAA;IACN,0DAAa,CAAA;IACb,wDAAY,CAAA;IACZ,kDAAS,CAAA;IACT,gEAAgB,CAAA;IAChB,8DAAe,CAAA;IACf,oDAAU,CAAA;IACV,kEAAiB,CAAA;IACjB,gEAAgB,CAAA;IAChB,sCAAG,CAAA;IACH,oDAAU,CAAA;IACV,kDAAS,CAAA;IACT,wDAAY,CAAA;IACZ,oEAAkB,CAAA;IAClB,kDAAS,CAAA;IACT,gEAAgB,CAAA;IAChB,0DAAa,CAAA;IACb,wEAAoB,CAAA;IACpB,4DAAc,CAAA;IACd,4DAAc,CAAA;IACd,wDAAY,CAAA;IACZ,0EAAqB,CAAA;IACrB,kEAAiB,CAAA;IACjB,gEAAgB,CAAA;IAChB,0CAAK,CAAA;CACR,EAlDW,QAAQ,KAAR,QAAQ,QAkDnB;AAED,AAIA,IAAY,aA2BX;AA3BD,WAAY,aAAa;;IAErB,mDAAK,CAAA;IACL,mEAAa,CAAA;IACb,qEAAc,CAAA;IACd,yEAAgB,CAAA;IAChB,mEAAa,CAAA;IACb,yEAAgB,CAAA;;IAEhB,mEAAa,CAAA;IACb,uEAAe,CAAA;IACf,mEAAa,CAAA;IACb,uEAAe,CAAA;IACf,kEAAY,CAAA;IACZ,oEAAa,CAAA;IACb,wEAAe,CAAA;IACf,gEAAW,CAAA;IACX,0EAAgB,CAAA;IAChB,oEAAa,CAAA;IACb,oEAAa,CAAA;IACb,4EAAiB,CAAA;IACjB,gEAAW,CAAA;IACX,kEAAY,CAAA;IACZ,gEAAW,CAAA;IACX,wEAAe,CAAA;IACf,gFAAmB,CAAA;IACnB,sDAAM,CAAA;IAAE,oDAAc,CAAA;CACzB,EA3BW,aAAa,KAAb,aAAa,QA2BxB;AAED,AAEA,IAAY,iBAMX;AAND,WAAY,iBAAiB;IACzB,yDAAyB,CAAA;IACzB,qEAA8B,CAAA;IAC9B,+EAA8B,CAAA;IAC9B,6EAA8B,CAAA;IAC9B,yFAA8B,CAAA;CACjC,EANW,iBAAiB,KAAjB,iBAAiB,QAM5B;AAED,AAEA,IAAY,mBAmCX;AAnCD,WAAY,mBAAmB;IAC3B,6DAAmB,CAAA;IACnB,mEAAwB,CAAA;IACxB,qEAAwB,CAAA;IACxB,uEAAwB,CAAA;IACxB,kFAAwB,CAAA;IACxB,sEAAwB,CAAA;IACxB,wEAAwB,CAAA;IACxB,qEAAwB,CAAA;IACxB,iFAAwB,CAAA;IACxB,2EAAwB,CAAA;;IAExB,yEAAyB,CAAA;IACzB,kFAAyB,CAAA;IACzB,0FAAyB,CAAA;IACzB,gEAAyB,CAAA;IACzB,+EAAyB,CAAA;IACzB,+EAAyB,CAAA;IACzB,+EAAyB,CAAA;IACzB,qEAAyB,CAAA;IACzB,sEAAyB,CAAA;IACzB,oFAAyB,CAAA;IACzB,wFAAyB,CAAA;IACzB,6EAAyB,CAAA;IACzB,6EAAyB,CAAA;;;IAIzB,2FAAwD,CAAA;;IAGxD,mFAAkD,CAAA;IAClD,sFAA6B,CAAA;IAC7B,mFAA6C,CAAA;IAC7C,iFAAmC,CAAA;CACtC,EAnCW,mBAAmB,KAAnB,mBAAmB,QAmC9B;AAED,AAEA,IAAY,gBAWX;AAXD,WAAY,gBAAgB;IACxB,wDAAS,CAAA;IACT,yDAAS,CAAA;IACT,iEAAS,CAAA;IACT,iEAAS,CAAA;IACT,+DAAQ,CAAA;IACR,+DAAQ,CAAA;IACR,mEAAU,CAAA;IACV,mEAAU,CAAA;IACV,uDAAI,CAAA;IACJ,2DAAM,CAAA;IAAE,yDAAc,CAAA;CACzB,EAXW,gBAAgB,KAAhB,gBAAgB,QAW3B;AAED,AAGA,IAAY,SAKX;AALD,WAAY,SAAS;IACjB,6CAAsB,CAAA;IACtB,yCAAsB,CAAA;IACtB,yDAAsB,CAAA;IACtB,mDAAsB,CAAA;CACzB,EALW,SAAS,KAAT,SAAS,QAKpB;AAED,AACA,IAAY,iBAWX;AAXD,WAAY,iBAAiB;IAEzB,+DAAkB,CAAA;IAClB,iEAAkB,CAAA;IAClB,+DAAkB,CAAA;IAClB,iEAAkB,CAAA;IAClB,uDAA8B,CAAA;IAC9B,wDAA8B,CAAA;IAC9B,yDAA6B,CAAA;IAC7B,4DAA+B,CAAA;IAC/B,wDAAe,CAAA;CAClB,EAXW,iBAAiB,KAAjB,iBAAiB,QAW5B;AAED,AACA,IAAY,eAKX;AALD,WAAY,eAAe;IAEvB,qDAAoB,CAAA;IACpB,6EAAyB,CAAA;IACzB,2EAAyB,CAAA;CAC5B,EALW,eAAe,KAAf,eAAe,QAK1B;AAOD,MAAa,MAAM;IAMf,YAAmB,IAAY,GAAG,EAAS,IAAY,GAAG;QAAvC,MAAC,GAAD,CAAC,CAAc;QAAS,MAAC,GAAD,CAAC,CAAc;KAAI;IAEvD,GAAG,CAAC,CAAS,EAAE,CAAS;QAC3B,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;QACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;QACX,OAAO,IAAI,CAAC;KACf;IAEM,IAAI,CAAC,KAAsC;QAC9C,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QACjB,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QACjB,OAAO,IAAI,CAAC;KACf;IAEM,MAAM,CAAC,KAAsC;QAChD,IAAI,IAAI,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,EAAE;YAAE,OAAO,KAAK,CAAC;SAAE;QACzC,IAAI,IAAI,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,EAAE;YAAE,OAAO,KAAK,CAAC;SAAE;QACzC,OAAO,IAAI,CAAC;KACf;;AAvBsB,WAAI,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;AAC9C,WAAI,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;AAC9C,aAAM,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;AAChD,aAAM,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;AA0B3E,MAAa,MAAM;IAUf,YAAmB,IAAY,GAAG,EAAS,IAAY,GAAG,EAAS,IAAY,GAAG,EAAS,IAAY,GAAG;QAAvF,MAAC,GAAD,CAAC,CAAc;QAAS,MAAC,GAAD,CAAC,CAAc;QAAS,MAAC,GAAD,CAAC,CAAc;QAAS,MAAC,GAAD,CAAC,CAAc;KAAI;IAEvG,GAAG,CAAC,CAAS,EAAE,CAAS,EAAE,CAAS,EAAE,CAAS;QACjD,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;QACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;QACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;QACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;QACX,OAAO,IAAI,CAAC;KACf;IAEM,IAAI,CAAC,KAAsC;QAC9C,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QACjB,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QACjB,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QACjB,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QACjB,OAAO,IAAI,CAAC;KACf;IAEM,MAAM,CAAC,KAAsC;QAChD,IAAI,IAAI,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,EAAE;YAAE,OAAO,KAAK,CAAC;SAAE;QACzC,IAAI,IAAI,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,EAAE;YAAE,OAAO,KAAK,CAAC;SAAE;QACzC,IAAI,IAAI,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,EAAE;YAAE,OAAO,KAAK,CAAC;SAAE;QACzC,IAAI,IAAI,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,EAAE;YAAE,OAAO,KAAK,CAAC;SAAE;QACzC,OAAO,IAAI,CAAC;KACf;;AAjCsB,WAAI,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AACxD,WAAI,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AACxD,aAAM,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AAC1D,aAAM,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AAC1D,aAAM,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AAC1D,aAAM,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AAC1D,YAAK,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AACzD,YAAK,GAAqB,IAAI,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;;;;;;AAmCpF,MAAa,QAAY,SAAQ,KAAQ;IAAzC;;QAGW,SAAI,GAAQ,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KA4D3B;IA7DG,IAAW,IAAI,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,EAAE;IAE1C,KAAK,KAAc,OAAO,IAAI,CAAC,MAAM,KAAK,CAAC,CAAC,EAAE;IAC9C,KAAK,KAAW,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE;IAClC,QAAQ,KAAoB,OAAO,IAAI,CAAC,GAAG,EAAE,CAAC,EAAE;IAChD,SAAS,CAAC,KAAQ,IAAU,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE;CAwDzD;AAED,AAkaA;;;AAGA,MAAa,SAAS;IAElB,YAA4B,MAAgC;QAAhC,WAAM,GAAN,MAAM,CAA0B;;QAe5C,iBAAY,GAA0B,IAAI,CAAC;;QAE3C,qBAAgB,GAAQ,IAAI,CAAC;KAjBmB;;IAGhE,IAAI,SAAS,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;;IAEzD,IAAI,QAAQ,KAAsC,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE;;IAEhF,IAAI,SAAS;QACT,OAAO,YAAY,CAAC,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;KACzD;;IAED,IAAI,SAAS,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;;IAEzD,IAAI,SAAS,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;CAO5D;;;;;;;AAQD,AAAO,MAAM,aAAa,GAAW,CAAC,CAAC;;;AAKvC,AAAO,MAAM,cAAc,GAAW,EAAE,CAAC;AACzC,AAAO,MAAM,mBAAmB,GAAW,CAAC,CAAC;AAC7C,AAAO,MAAM,kBAAkB,GAAW,CAAC,CAAC;AAC5C,AAAO,MAAM,mBAAmB,GAAW,EAAE,CAAC;AAC9C,MAAa,UAAU;IASnB,YAAY,MAAmB,EAAE,aAAqB,CAAC;QACnD,IAAI,CAAC,GAAG,GAAG,IAAI,YAAY,CAAC,MAAM,EAAE,UAAU,GAAG,IAAI,CAAC,mBAAmB,EAAE,CAAC,CAAC,CAAC;QAC9E,IAAI,CAAC,EAAE,GAAG,IAAI,YAAY,CAAC,MAAM,EAAE,UAAU,GAAG,IAAI,CAAC,kBAAkB,EAAE,CAAC,CAAC,CAAC;QAC5E,IAAI,CAAC,GAAG,GAAG,IAAI,WAAW,CAAC,MAAM,EAAE,UAAU,GAAG,IAAI,CAAC,mBAAmB,EAAE,CAAC,CAAC,CAAC;KAChF;CACJ;AACD,AAqBA;;;;;;AAMA,MAAa,UAAU;IAEnB,YAA4B,MAAiC;QAAjC,WAAM,GAAN,MAAM,CAA2B;KAAI;IAE1D,eAAe,CAAC,QAA0D;QAC7E,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,QAAkC,EAAE,SAAiB;YAC9E,QAAQ,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,CAAC;SAChD,CAAC,CAAC;KACN;;;;IAKD,IAAI,SAAS,KAAiB,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;;IAE7D,IAAI,SAAS,KAAiB,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;;IAE7D,IAAI,KAAK,KAAsB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE;IAC1D,IAAI,KAAK,CAAC,KAAsB,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,KAAK,CAAC,EAAE;;;;;;;;;;;;;;;;IAkBzD,YAAY,CAAC,aAA8C,EAAE,aAA8C,EAAE,mCAA4C,KAAK;QACjK,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,aAAa,EAAE,aAAa,EAAE,gCAAgC,CAAC,CAAC;KAC5F;;IAEM,sBAAsB,KAAW,IAAI,CAAC,MAAM,CAAC,sBAAsB,EAAE,CAAC,EAAE;;IAExE,WAAW,KAAW,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE,CAAC,EAAE;;IAElD,aAAa,CAAC,UAAuB;QACxC,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,YAAY,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC,CAAC;KAClE;;IAEM,YAAY,KAAW,IAAI,CAAC,MAAM,CAAC,YAAY,EAAE,CAAC,EAAE;;IAEpD,cAAc,CAAC,MAA6B,IAAI,MAAM,EAAE;QAC3D,OAAO,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;KAC1C;;IAEM,cAAc,CAAC,MAA6B,IAAI,MAAM,EAAE;QAC3D,OAAO,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;KAC1C;;;IAIM,OAAO,CAAC,CAAkC,EAAE,CAAkC,EAAE,GAAe,EAAE,YAAoB,GAAG;QAC3H,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,SAAS,CAAC,CAAC;KAC7C;;IAEM,OAAO,CAAC,CAAkC,EAAE,CAAkC,EAAE,GAAe,EAAE,WAAmB,GAAG,EAAE,yBAA4C,iBAAiB,CAAC,GAAG,EAAE,YAAoB,GAAG;QACtN,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,sBAAsB,EAAE,SAAS,CAAC,CAAC;KAC/E;;IAEM,aAAa,CAAC,CAAkC,EAAE,CAAkC,EAAE,GAAe,EAAE,WAAmB,GAAG,EAAE,yBAA4C,iBAAiB,CAAC,GAAG;QACnM,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,sBAAsB,CAAC,CAAC;KAC1E;;IAEM,uBAAuB,CAAC,CAAkC,EAAE,CAAkC,EAAE,YAAwB,EAAE,aAAyB,EAAE,aAAyB,EAAE,YAAwB;QAC3M,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,CAAC,EAAE,CAAC,EAAE,YAAY,EAAE,aAAa,EAAE,aAAa,EAAE,YAAY,CAAC,CAAC;KACvG;;IAEM,OAAO,CAAC,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,GAAe,EAAE,YAAoB,GAAG;QACnM,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,SAAS,CAAC,CAAC;KACnD;;IAEM,aAAa,CAAC,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,GAAe;QAChL,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC;KAC9C;;IAEM,WAAW,CAAC,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,GAAe,EAAE,YAAoB,GAAG;QACnK,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,SAAS,CAAC,CAAC;KACpD;;IAEM,iBAAiB,CAAC,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,GAAe;QAChJ,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC;KAC/C;;IAEM,SAAS,CAAC,MAAuC,EAAE,MAAc,EAAE,GAAe,EAAE,eAAuB,EAAE,EAAE,YAAoB,GAAG;QACzI,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,YAAY,EAAE,SAAS,CAAC,CAAC;KACvE;;IAEM,eAAe,CAAC,MAAuC,EAAE,MAAc,EAAE,GAAe,EAAE,eAAuB,EAAE;QACtH,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,YAAY,CAAC,CAAC;KAClE;IAKM,OAAO,CAAC,GAAG,IAAW;QACzB,IAAI,IAAI,CAAC,CAAC,CAAC,YAAY,MAAM,EAAE;YAC3B,MAAM,IAAI,GAAW,IAAI,CAAC,CAAC,CAAC,CAAC;YAC7B,MAAM,SAAS,GAAW,IAAI,CAAC,CAAC,CAAC,CAAC;YAClC,MAAM,GAAG,GAAoC,IAAI,CAAC,CAAC,CAAC,CAAC;YACrD,MAAM,GAAG,GAAe,IAAI,CAAC,CAAC,CAAC,CAAC;YAChC,MAAM,UAAU,GAAW,IAAI,CAAC,CAAC,CAAC,CAAC;YACnC,MAAM,QAAQ,GAAkB,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC;YAChD,MAAM,UAAU,GAAW,IAAI,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;YACzC,MAAM,kBAAkB,GAA2C,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC;YACnF,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,EAAE,SAAS,EAAE,GAAG,EAAE,GAAG,EAAE,QAAQ,KAAK,IAAI,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,CAAC,GAAG,UAAU,EAAE,UAAU,EAAE,kBAAkB,CAAC,CAAC;SAC/J;aAAM;YACH,MAAM,GAAG,GAAoC,IAAI,CAAC,CAAC,CAAC,CAAC;YACrD,MAAM,GAAG,GAAe,IAAI,CAAC,CAAC,CAAC,CAAC;YAChC,MAAM,UAAU,GAAW,IAAI,CAAC,CAAC,CAAC,CAAC;YACnC,MAAM,QAAQ,GAAkB,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC;YAChD,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE,GAAG,EAAE,QAAQ,KAAK,IAAI,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,CAAC,GAAG,UAAU,CAAC,CAAC;SACvG;KACJ;;IAEM,QAAQ,CAAC,eAAmC,EAAE,CAAkC,EAAE,CAAkC,EAAE,OAAwC,MAAM,CAAC,IAAI,EAAE,OAAwC,MAAM,CAAC,IAAI,EAAE,MAAkB,UAAU;QAC/P,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAAC,UAAU,CAAC,eAAe,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC;KACzF;;IAEM,YAAY,CAAC,eAAmC,EAAE,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,OAAwC,MAAM,CAAC,IAAI,EAAE,OAAwC,MAAM,CAAC,MAAM,EAAE,OAAwC,MAAM,CAAC,IAAI,EAAE,OAAwC,MAAM,CAAC,MAAM,EAAE,MAAkB,UAAU;QACzb,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,YAAY,CAAC,UAAU,CAAC,eAAe,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC;KAC/G;;IAEM,eAAe,CAAC,eAAmC,EAAE,CAAkC,EAAE,CAAkC,EAAE,IAAqC,EAAE,IAAqC,EAAE,GAAe,EAAE,QAAgB,EAAE,mBAAsC,iBAAiB,CAAC,GAAG;QAC5S,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,YAAY,CAAC,UAAU,CAAC,eAAe,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,QAAQ,EAAE,gBAAgB,CAAC,CAAC;KAC5H;;IAEM,WAAW,CAAC,MAA8C,EAAE,UAAkB,EAAE,GAAe,EAAE,MAAe,EAAE,SAAiB;QACtI,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,EAAE,MAAM,EAAE,SAAS,CAAC,CAAC;KACvE;;IAEM,mBAAmB,CAAC,MAA8C,EAAE,UAAkB,EAAE,GAAe;QAC1G,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,CAAC,CAAC;KAC5D;;IAEM,cAAc,CAAC,IAAqC,EAAE,GAAoC,EAAE,GAAoC,EAAE,IAAqC,EAAE,GAAe,EAAE,YAAoB,GAAG,EAAE,eAAuB,CAAC;QAC9O,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,SAAS,EAAE,YAAY,CAAC,CAAC;KAClF;;;IAIM,SAAS,KAAW,IAAI,CAAC,MAAM,CAAC,SAAS,EAAE,CAAC,EAAE;;IAE9C,UAAU,CAAC,GAAoC,IAAU,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,EAAE;;IAEvF,wBAAwB,CAAC,GAAoC,IAAU,IAAI,CAAC,MAAM,CAAC,wBAAwB,CAAC,GAAG,CAAC,CAAC,EAAE;;IAEnH,cAAc,CAAC,GAAe,IAAU,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,EAAE;;IAE1E,UAAU,CAAC,GAAe,EAAE,MAAe,EAAE,YAAoB,GAAG,IAAU,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,CAAC,CAAC,EAAE;;IAE/H,SAAS,CAAC,MAAuC,EAAE,MAAc,EAAE,KAAa,EAAE,KAAa,EAAE,eAAuB,EAAE,IAAU,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC,EAAE;;IAExM,aAAa,CAAC,MAAuC,EAAE,MAAc,EAAE,WAAmB,EAAE,WAAmB,IAAU,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE,WAAW,CAAC,CAAC,EAAE;;IAE/L,iBAAiB,CAAC,EAAmC,EAAE,EAAmC,EAAE,EAAmC,EAAE,eAAuB,CAAC,IAAU,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,YAAY,CAAC,CAAC,EAAE;;IAE7N,QAAQ,CAAC,QAAyC,EAAE,QAAyC,EAAE,WAAmB,GAAG,EAAE,yBAA4C,iBAAiB,CAAC,GAAG,IAAU,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,sBAAsB,CAAC,CAAC,EAAE;;;;;IAM/Q,aAAa,CAAC,cAAsB,IAAU,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,cAAc,CAAC,CAAC,EAAE;;IAE1F,aAAa,KAAW,IAAI,CAAC,MAAM,CAAC,aAAa,EAAE,CAAC,EAAE;;IAEtD,kBAAkB,CAAC,aAAqB,IAAU,IAAI,CAAC,MAAM,CAAC,kBAAkB,CAAC,aAAa,CAAC,CAAC,EAAE;;;IAIlG,WAAW,CAAC,QAAwB,EAAE,aAAkB;QAC3D,MAAM,SAAS,GAAwB,CAAC,WAAgD,EAAE,QAA4C;YAClI,QAAQ,CAAC,IAAI,UAAU,CAAC,WAAW,CAAC,EAAE,IAAI,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC;SAClE,CAAC;QACF,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC;KACrD;;IAEM,UAAU,KAAW,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC,EAAE;;;;IAKhD,KAAK,KAAW,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,EAAE;;IAEtC,eAAe,KAAW,IAAI,CAAC,MAAM,CAAC,eAAe,EAAE,CAAC,EAAE;;IAE1D,WAAW,CAAC,SAAiB,EAAE,SAAiB,IAAU,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC,EAAE;;IAE1G,QAAQ,CAAC,CAAkC,EAAE,CAAkC,EAAE,GAAe,IAAU,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC,EAAE;;IAE5I,UAAU,CAAC,CAAkC,EAAE,CAAkC,EAAE,IAAqC,EAAE,IAAqC,EAAE,GAAe,IAAU,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE;;IAE1O,UAAU,CAAC,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,CAAkC,EAAE,IAAqC,EAAE,IAAqC,EAAE,IAAqC,EAAE,IAAqC,EAAE,GAAe,IAAU,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE;;IAElZ,YAAY,CAAC,GAAoC,EAAE,EAAmC,EAAE,GAAe,IAAU,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,EAAE,EAAE,EAAE,GAAG,CAAC,CAAC,EAAE;;IAE1J,YAAY,CAAC,GAAc,IAAU,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC,EAAE;;IAErE,OAAO,CAAC,GAAoC,EAAE,EAAmC,EAAE,GAAe,IAAU,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,EAAE,GAAG,CAAC,CAAC,EAAE;;IAEhJ,cAAc,KAAW,IAAI,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC,EAAE;;IAExD,eAAe,KAAW,IAAI,CAAC,MAAM,CAAC,eAAe,EAAE,CAAC,EAAE;CACpE;;AAGD,MAAa,UAAU;IAEnB,YAA4B,MAAiC;QAAjC,WAAM,GAAN,MAAM,CAA2B;KAAI;IAE1D,gBAAgB,CAAC,QAAyC;QAC7D,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,SAAoC;YAC9D,QAAQ,CAAC,IAAI,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC;SACvC,CAAC,CAAC;KACN;;IAGD,IAAI,KAAK,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE;;;IAGlD,IAAI,aAAa,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE;;IAEjE,IAAI,aAAa,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE;;IAEjE,IAAI,aAAa,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE;;IAEjE,IAAI,UAAU,KAAsC,OAAO,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE;;IAEpF,IAAI,WAAW,KAAsC,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE;;IAEtF,IAAI,gBAAgB,KAAsC,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,EAAE;;;;IAKzF,iBAAiB,KAAW,IAAI,CAAC,MAAM,CAAC,iBAAiB,EAAE,CAAC,EAAE;;IAE9D,cAAc,CAAC,QAAyC;QAC3D,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC;KACxC;CACJ;AAED,MAAa,mBAAmB;IAAhC;;;QAII,aAAQ,GAAoB,IAAI,CAAC;;QAEjC,yBAAoB,GAAY,IAAI,CAAC;;QAErC,WAAM,GAAW,CAAC,CAAC;;QAEnB,eAAU,GAAW,CAAC,CAAC;;QAEvB,gBAAW,GAAW,CAAC,CAAC;QACxB,gBAAW,GAAW,CAAC,CAAC;;QAExB,eAAU,GAAY,KAAK,CAAC;;QAE5B,sBAAiB,GAAW,IAAI,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;QAE7C,gBAAW,GAAW,IAAI,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;QAEvC,gBAAW,GAAkB,IAAI,CAAC;;QAElC,qBAAgB,GAAW,CAAC,CAAC;;QAE7B,qBAAgB,GAAW,MAAM,CAAC,SAAS,CAAC;;QAE5C,cAAS,GAAY,KAAK,CAAC;;QAE3B,oBAAe,GAAW,CAAC,CAAC;;QAE5B,uBAAkB,GAAW,GAAG,CAAC;;;QAIjC,SAAI,GAAW,EAAE,CAAC;;QAElB,YAAO,GAAiC,IAAI,CAAC;;KAGhD;CAAA;AAED,MAAa,YAAY;IACrB,YAA4B,WAAwC,IAAI,mBAAmB,EAAE;QAAjE,aAAQ,GAAR,QAAQ,CAAyD;KAAI;;;IAIjG,IAAI,QAAQ,KAAsB,OAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;;IAElE,IAAI,oBAAoB,KAAc,OAAO,IAAI,CAAC,QAAQ,CAAC,oBAAoB,CAAC,EAAE;;IAElF,IAAI,MAAM,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;;IAErD,IAAI,UAAU,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,EAAE;;IAE7D,IAAI,WAAW,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE;IAC/D,IAAI,WAAW,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE;;IAE/D,IAAI,UAAU,KAAc,OAAO,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,EAAE;;IAE9D,IAAI,iBAAiB,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,iBAAiB,CAAC,EAAE;;IAE3E,IAAI,WAAW,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE;;IAE/D,IAAI,WAAW,KAAoB,OAAO,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE;;IAEtE,IAAI,gBAAgB,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,gBAAgB,CAAC,EAAE;;IAEzE,IAAI,gBAAgB,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,gBAAgB,CAAC,EAAE;;IAEzE,IAAI,SAAS,KAAc,OAAO,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,EAAE;;IAE5D,IAAI,eAAe,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,eAAe,CAAC,EAAE;;IAEvE,IAAI,kBAAkB,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,kBAAkB,CAAC,EAAE;;;IAI7E,IAAI,IAAI,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;IACjD,IAAI,IAAI,CAAC,KAAa,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE;;IAEvD,IAAI,OAAO;QACP,MAAM,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC;QACnC,OAAO,IAAI,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC;KACnC;CAGJ;;AAGD,MAAa,kBAAkB;IAA/B;;QAGI,cAAS,GAAW,CAAC,CAAC;;QAEtB,aAAQ,GAAW,GAAG,CAAC;;QAEvB,OAAE,GAAW,GAAG,CAAC;QACjB,OAAE,GAAW,GAAG,CAAC;QACjB,OAAE,GAAW,GAAG,CAAC;QACjB,OAAE,GAAW,GAAG,CAAC;;QAEjB,OAAE,GAAW,GAAG,CAAC;QACjB,OAAE,GAAW,GAAG,CAAC;QACjB,OAAE,GAAW,GAAG,CAAC;QACjB,OAAE,GAAW,GAAG,CAAC;KACpB;CAAA;AAED,MAAa,WAAW;IACpB,YAA4B,WAAuC,IAAI,kBAAkB,EAAE;QAA/D,aAAQ,GAAR,QAAQ,CAAuD;KAAI;;IAE/F,IAAI,SAAS,KAAc,OAAO,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,EAAE;;IAE5D,IAAI,QAAQ,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;;;IAEzD,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;IAC7C,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;IAC7C,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;IAC7C,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;;IAE7C,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;IAC7C,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;IAC7C,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;IAC7C,IAAI,EAAE,KAAa,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;;CAChD;AAED,AAAA,IAAY,gBAKX;AALD,WAAY,gBAAgB;IAExB,uDAAsB,CAAA;IACtB,mFAA2B,CAAA;IAC3B,2EAA2B,CAAA;CAC9B,EALW,gBAAgB,KAAhB,gBAAgB,QAK3B;;;;;;;;;AAUD,MAAa,WAAW;IAEpB,YAA4B,MAAkC;QAAlC,WAAM,GAAN,MAAM,CAA4B;KAAI;;;;;IAM3D,cAAc,CAAC,WAA+C,IAAI;QACrE,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC;KAC3D;;;IAGM,oBAAoB,CAAC,IAAiB,EAAE,WAAmB,EAAE,WAAgC,IAAI,EAAE,eAA8B,IAAI;QACxI,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,IAAI,UAAU,CAAC,IAAI,CAAC,EAAE,WAAW,EAAE,QAAQ,IAAI,QAAQ,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC,CAAC;KACvI;;;;IAIM,YAAY,KAAW,IAAI,CAAC,MAAM,CAAC,YAAY,EAAE,CAAC,EAAE;;IAEpD,cAAc,KAAW,IAAI,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC,EAAE;;IAExD,UAAU,KAAW,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC,EAAE;;IAEhD,KAAK,KAAW,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,EAAE;;;;;;IAOtC,KAAK,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,EAAE;;IAEhD,OAAO,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,EAAE;;IAEpD,kBAAkB;QACrB,OAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,EAAE,CAAC;KAC3C;;IAEM,kBAAkB;QACrB,OAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,EAAE,CAAC;KAC3C;;IAEM,QAAQ,CAAC,EAAsB,IAAU,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC,EAAE;;;;;;;IASlE,qBAAqB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,qBAAqB,EAAE,CAAC,EAAE;;IAE/E,oBAAoB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,EAAE,CAAC,EAAE;;IAE7E,sBAAsB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,sBAAsB,EAAE,CAAC,EAAE;;IAEjF,yBAAyB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,yBAAyB,EAAE,CAAC,EAAE;;IAEvF,qCAAqC,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,qCAAqC,EAAE,CAAC,EAAE;;IAE/G,sBAAsB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,sBAAsB,EAAE,CAAC,EAAE;;IAEjF,kBAAkB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,EAAE,CAAC,EAAE;;IAEzE,wBAAwB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,wBAAwB,EAAE,CAAC,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA2CrF,IAAI,MAAM,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE;IACpD,IAAI,MAAM,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,KAAK,CAAC,EAAE;;IAE1D,IAAI,KAAK,KAAuB,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE;IAC3D,IAAI,KAAK,CAAC,KAAuB,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,KAAK,CAAC,EAAE;;IAEjE,IAAI,KAAK;QACL,OAAO,YAAY,CAAC,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;KACrD;IACD,IAAI,KAAK,CAAC,KAAyB;QAC/B,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,YAAY,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;KACtD;;IAED,IAAI,eAAe,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,EAAE;IACrE,IAAI,eAAe,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,eAAe,GAAG,KAAK,CAAC,EAAE;;IAE3E,IAAI,eAAe,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,EAAE;IACrE,IAAI,eAAe,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,eAAe,GAAG,KAAK,CAAC,EAAE;;;;;;IAO3E,IAAI,QAAQ,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE;;IAEvD,IAAI,SAAS,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;;IAEzD,IAAI,UAAU,KAAsC,OAAO,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE;;IAEpF,IAAI,eAAe,KAAsC,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,EAAE;;IAE9F,IAAI,KAAK;QACL,MAAM,KAAK,GAAqB,IAAI,QAAQ,EAAU,CAAC;QACvD,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,IAA2B;YACjD,KAAK,CAAC,IAAI,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;SAChC,CAAC,CAAC;QACH,OAAO,KAAK,CAAC;KAChB;CAIJ;;;AAID,MAAa,MAAM;IAEf,YAA4B,MAA6B;QAA7B,WAAM,GAAN,MAAM,CAAuB;KAAI;;;IAI7D,IAAI,QAAQ,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE;;IAEvD,IAAI,KAAK,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE;IACjD,IAAI,KAAK,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,KAAK,CAAC,EAAE;;IAEvD,IAAI,aAAa,KAA4B,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE;;IAEhF,IAAI,MAAM;QACN,MAAM,MAAM,GAAG,IAAI,QAAQ,EAAe,CAAC;QAC3C,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,KAAiC;YACxD,MAAM,CAAC,IAAI,CAAC,IAAI,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC;SACvC,CAAC,CAAC;QACH,OAAO,MAAM,CAAC;KACjB;;;;;;IAMD,IAAI,aAAa;QACb,MAAM,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC;QACxC,OAAO,KAAK,IAAI,IAAI,WAAW,CAAC,KAAK,CAAC,CAAC;KAC1C;IACD,IAAI,aAAa,CAAC,KAAyB;QACvC,IAAI,CAAC,MAAM,CAAC,aAAa,GAAG,KAAK,IAAI,KAAK,CAAC,QAAsC,CAAC;KACrF;;IAED,IAAI,gBAAgB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,EAAE;;IAEvE,IAAI,YAAY,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,EAAE;;;IAI/D,IAAI,eAAe,KAAa,OAAO,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE;;IAEhE,IAAI,UAAU;QACV,MAAM,QAAQ,GAAmB,EAAE,CAAC;QACpC,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,GAAgC;YAC3D,QAAQ,CAAC,IAAI,CAAC,IAAI,YAAY,CAAC,GAAG,CAAC,CAAC,CAAC;SACxC,CAAC,CAAC;QACH,OAAO,QAAQ,CAAC;KACnB;;IAED,IAAI,cAAc,KAAyB,OAAO,IAAI,CAAC,EAAE;;IAEzD,IAAI,MAAM,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE;IACnD,IAAI,OAAO,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE;;IAErD,IAAI,mBAAmB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,EAAE;;;;;IAMtE,eAAe,KAAW,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,EAAE,CAAC,EAAE;;IAEjE,gBAAgB,KAAW,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,CAAC,EAAE;;IAEnE,SAAS,CAAC,CAAS;QACtB,MAAM,KAAK,GAAgD,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;QACpF,OAAO,KAAK,IAAI,IAAI,WAAW,CAAC,KAAK,CAAC,CAAC;KAC1C;;IAEM,mBAAmB,CAAC,CAAS;QAChC,MAAM,KAAK,GAAgD,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAAC;QAC9F,OAAO,KAAK,IAAI,IAAI,WAAW,CAAC,KAAK,CAAC,CAAC;KAC1C;;IAEM,eAAe,CAAC,CAAS,IAAU,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE;;IAE3E,cAAc,CAAC,CAAS,IAAY,OAAO,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE;;IAE3E,QAAQ,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC,EAAE;;IAEtD,YAAY,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,YAAY,EAAE,CAAC,EAAE;;;;IAK7D,aAAa,CAAC,IAAY,EAAE,SAAiB,EAAE,UAAkB,EAAE,UAAkB,EAAE,WAA0B,IAAI,EAAE,YAA0C,IAAI;QACxK,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,IAAI,EAAE,SAAS,EAAE,UAAU,EAAE,QAAQ,KAAK,IAAI,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,CAAC,GAAG,UAAU,EAAE,SAAS,EAAE,IAAI,MAAM,EAAE,CAAC,CAAC;KAC9J;;IAEM,qBAAqB,CAAC,KAAa,EAAE,IAAY,EAAE,WAA0B,IAAI,EAAE,UAAkB;QACxG,OAAO,IAAI,CAAC,MAAM,CAAC,qBAAqB,CAAC,KAAK,EAAE,QAAQ,KAAK,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC,CAAC;KACvH;;IAEM,UAAU,CAAC,SAAqB,EAAE,IAAY,EAAE,GAAoC,EAAE,GAAe,EAAE,CAAe;QACzH,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;KAC/D;;IAEM,UAAU,CAAC,SAAqB,EAAE,IAAY,EAAE,GAAoC,EAAE,GAAe,EAAE,SAA0C,EAAE,UAAkB,EAAE,WAA0B,IAAI,EAAE,aAAqB,GAAG,EAAE,gBAAyB,KAAK,KAAU;CAUnR;AAED,AAwJA;;AAEA,MAAa,OAAO;IAEhB,YAA4B,MAA8B;QAA9B,WAAM,GAAN,MAAM,CAAwB;;QAoCnD,WAAM,GAAa,IAAI,KAAK,CAAC,EAAE,EAAE;YACpC,GAAG,EAAE,CAAC,MAAgB,EAAE,GAAgB;gBACpC,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,QAAQ,CAAC,KAAK,CAAC;iBAAE;gBAChD,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aACjD;YACD,GAAG,EAAE,CAAC,MAAgB,EAAE,GAAgB,EAAE,KAAa;gBACnD,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC;aACxD;SACJ,CAAC,CAAC;;QA8FI,cAAS,GAAc,IAAI,KAAK,CAAC,EAAE,EAAE;YACxC,GAAG,EAAE,CAAC,MAAiB,EAAE,GAAgB;gBACrC,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,CAAC,CAAC;iBAAE;gBACnC,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aACpD;YACD,GAAG,EAAE,CAAC,MAAiB,EAAE,GAAgB,EAAE,KAAc;gBACrD,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC;aAC3D;SACJ,CAAC,CAAC;;QAkBI,aAAQ,GAAc,IAAI,KAAK,CAAC,EAAE,EAAE;YACvC,GAAG,EAAE,CAAC,MAAiB,EAAE,GAAgB;gBACrC,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,GAAG,CAAC;iBAAE;gBACrC,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aACnD;YACD,GAAG,EAAE,CAAC,MAAiB,EAAE,GAAgB,EAAE,KAAc;gBACrD,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC;aAC1D;SACJ,CAAC,CAAC;;QAEI,cAAS,GAAa,IAAI,KAAK,CAAC,EAAE,EAAE;YACvC,GAAG,EAAE,CAAC,MAAgB,EAAE,GAAgB;gBACpC,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,aAAa,CAAC,KAAK,CAAC;iBAAE;gBACrD,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aACpD;YACD,GAAG,EAAE,CAAC,MAAgB,EAAE,GAAgB,EAAE,KAAa;gBACnD,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC;aAC3D;SACJ,CAAC,CAAC;;;;;;QAiDI,oBAAe,GAA2C,IAAI,KAAK,CAAC,EAAE,EAAE;YAC3E,GAAG,EAAE,CAAC,MAA8C,EAAE,GAAgB;gBAClE,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,CAAC,CAAC;iBAAE;gBACnC,OAAO,IAAI,CAAC,MAAM,CAAC,sBAAsB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aAC1D;SACJ,CAAC,CAAC;;;;;;;QAOI,sBAAiB,GAAa,IAAI,KAAK,CAAC,EAAE,EAAE;YAC/C,GAAG,EAAE,CAAC,MAAgB,EAAE,GAAgB;gBACpC,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,CAAC,CAAC;iBAAE;gBACnC,OAAO,IAAI,CAAC,MAAM,CAAC,wBAAwB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aAC5D;SACJ,CAAC,CAAC;;;;;QAKI,qBAAgB,GAAa,IAAI,KAAK,CAAC,EAAE,EAAE;YAC9C,GAAG,EAAE,CAAC,MAAgB,EAAE,GAAgB;gBACpC,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,GAAG,CAAC;iBAAE;gBACrC,OAAO,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aAC3D;SACJ,CAAC,CAAC;;;QAGI,0BAAqB,GAAa,IAAI,KAAK,CAAC,EAAE,EAAE;YACnD,GAAG,EAAE,CAAC,MAAgB,EAAE,GAAgB;gBACpC,IAAI,GAAG,KAAK,QAAQ,EAAE;oBAAE,OAAO,aAAa,CAAC,KAAK,CAAC;iBAAE;gBACrD,OAAO,IAAI,CAAC,MAAM,CAAC,4BAA4B,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aAChE;SACJ,CAAC,CAAC;KA1Q2D;;;;;IAO9D,IAAI,WAAW,KAAuB,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE;IACvE,IAAI,WAAW,CAAC,KAAuB,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,GAAG,KAAK,CAAC,EAAE;;IAE7E,IAAI,YAAY,KAAwB,OAAO,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,EAAE;IAC1E,IAAI,YAAY,CAAC,KAAwB,IAAI,IAAI,CAAC,MAAM,CAAC,YAAY,GAAG,KAAK,CAAC,EAAE;;IAEhF,IAAI,WAAW,KAA4B,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE;;IAE5E,IAAI,SAAS,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;IACzD,IAAI,SAAS,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,SAAS,GAAG,KAAK,CAAC,EAAE;;IAE/D,IAAI,aAAa,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE;IACjE,IAAI,aAAa,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,aAAa,GAAG,KAAK,CAAC,EAAE;;IAEvE,IAAI,WAAW,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE;IAC7D,IAAI,WAAW,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,GAAG,KAAK,CAAC,EAAE;;IAEnE,IAAI,WAAW,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE;IAC7D,IAAI,WAAW,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,GAAG,KAAK,CAAC,EAAE;;IAEnE,IAAI,oBAAoB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,EAAE;IAC/E,IAAI,oBAAoB,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,oBAAoB,GAAG,KAAK,CAAC,EAAE;;IAErF,IAAI,uBAAuB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,EAAE;IACrF,IAAI,uBAAuB,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,uBAAuB,GAAG,KAAK,CAAC,EAAE;;IAE3F,IAAI,kBAAkB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,CAAC,EAAE;IAC3E,IAAI,kBAAkB,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,kBAAkB,GAAG,KAAK,CAAC,EAAE;;IAYjF,IAAI,cAAc,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,EAAE;IACnE,IAAI,cAAc,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,cAAc,GAAG,KAAK,CAAC,EAAE;;IAEzE,IAAI,aAAa,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE;IACjE,IAAI,aAAa,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,aAAa,GAAG,KAAK,CAAC,EAAE;;IAEvE,IAAI,QAAQ,KAAU,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE;IACpD,IAAI,QAAQ,CAAC,KAAU,IAAI,IAAI,CAAC,MAAM,CAAC,QAAQ,GAAG,KAAK,CAAC,EAAE;;IAG1D,IAAI,KAAK,KAAkB,OAAO,IAAI,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE;;IAEvE,IAAI,eAAe,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,EAAE;IACrE,IAAI,eAAe,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,eAAe,GAAG,KAAK,CAAC,EAAE;;IAE3E,IAAI,oBAAoB,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,EAAE;IAChF,IAAI,oBAAoB,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,oBAAoB,GAAG,KAAK,CAAC,EAAE;;IAEtF,IAAI,WAAW;QACX,MAAM,IAAI,GAAiC,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC;QACnE,OAAO,CAAC,IAAI,KAAK,IAAI,IAAI,IAAI,GAAG,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC;KACpD;IACD,IAAI,WAAW,CAAC,KAAoB;QAChC,IAAI,CAAC,MAAM,CAAC,WAAW,GAAG,KAAK,IAAI,KAAK,CAAC,MAAM,CAAC;KACnD;;IAED,IAAI,uBAAuB,KAA4B,OAAO,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,EAAE;;;IAIpG,IAAI,qBAAqB,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,qBAAqB,CAAC,EAAE;IAClF,IAAI,qBAAqB,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,qBAAqB,GAAG,KAAK,CAAC,EAAE;;IAExF,IAAI,0BAA0B,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,0BAA0B,CAAC,EAAE;IAC5F,IAAI,0BAA0B,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,0BAA0B,GAAG,KAAK,CAAC,EAAE;;IAElG,IAAI,4BAA4B,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,4BAA4B,CAAC,EAAE;IAChG,IAAI,4BAA4B,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,4BAA4B,GAAG,KAAK,CAAC,EAAE;;IAEtG,IAAI,iCAAiC,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,iCAAiC,CAAC,EAAE;IAC1G,IAAI,iCAAiC,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,iCAAiC,GAAG,KAAK,CAAC,EAAE;;;;;;IAQhH,IAAI,mBAAmB,KAAoB,OAAO,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,EAAE;IACpF,IAAI,mBAAmB,CAAC,KAAoB,IAAI,IAAI,CAAC,MAAM,CAAC,mBAAmB,GAAG,KAAK,CAAC,EAAE;;IAE1F,IAAI,mBAAmB,KAAoB,OAAO,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,EAAE;IACpF,IAAI,mBAAmB,CAAC,KAAoB,IAAI,IAAI,CAAC,MAAM,CAAC,mBAAmB,GAAG,KAAK,CAAC,EAAE;;IAE1F,IAAI,uBAAuB,KAAoB,OAAO,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,EAAE;IAC5F,IAAI,uBAAuB,CAAC,KAAoB,IAAI,IAAI,CAAC,MAAM,CAAC,uBAAuB,GAAG,KAAK,CAAC,EAAE;;IAElG,IAAI,uBAAuB,KAAoB,OAAO,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,EAAE;IAC5F,IAAI,uBAAuB,CAAC,KAAoB,IAAI,IAAI,CAAC,MAAM,CAAC,uBAAuB,GAAG,KAAK,CAAC,EAAE;;IAElG,IAAI,uBAAuB,KAAoB,OAAO,IAAI,CAAC,MAAM,CAAC,uBAAuB,CAAC,EAAE;IAC5F,IAAI,uBAAuB,CAAC,KAAoB,IAAI,IAAI,CAAC,MAAM,CAAC,uBAAuB,GAAG,KAAK,CAAC,EAAE;;;;IAKlG,IAAI,kBAAkB,KAA0C,OAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,CAAC,EAAE;IACxG,IAAI,kBAAkB,CAAC,KAA0C,IAAI,IAAI,CAAC,MAAM,CAAC,kBAAkB,GAAG,KAAK,CAAC,EAAE;;IAE9G,IAAI,kBAAkB,KAAsD,OAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,CAAC,EAAE;IACpH,IAAI,kBAAkB,CAAC,KAAsD,IAAI,IAAI,CAAC,MAAM,CAAC,kBAAkB,GAAG,KAAK,CAAC,EAAE;;IAE1H,IAAI,iBAAiB,KAAU,OAAO,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,EAAE;IACtE,IAAI,iBAAiB,CAAC,KAAU,IAAI,IAAI,CAAC,MAAM,CAAC,iBAAiB,GAAG,KAAK,CAAC,EAAE;;;;;;;;;;;;;IAiB5E,IAAI,QAAQ,KAA4B,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE;;IAYtE,IAAW,UAAU,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE;IAClE,IAAW,UAAU,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,UAAU,GAAG,KAAK,CAAC,EAAE;;IAExE,IAAW,WAAW,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE;IACpE,IAAW,WAAW,CAAC,KAAa,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,GAAG,KAAK,CAAC,EAAE;;IAE1E,IAAI,eAAe,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,EAAE;IAAC,IAAI,eAAe,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,eAAe,GAAG,KAAK,CAAC,EAAE;;IAEnJ,IAAI,OAAO,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE;IAAC,IAAI,OAAO,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,GAAG,KAAK,CAAC,EAAE;;IAEnH,IAAI,QAAQ,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE;IAAC,IAAI,QAAQ,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,QAAQ,GAAG,KAAK,CAAC,EAAE;;IAEvH,IAAI,MAAM,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE;IAAC,IAAI,MAAM,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,KAAK,CAAC,EAAE;;IAE/G,IAAI,QAAQ,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE;IAAC,IAAI,QAAQ,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,QAAQ,GAAG,KAAK,CAAC,EAAE;;;IAwBhH,iBAAiB,CAAC,CAAS,IAAU,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE;;IAExE,sBAAsB,CAAC,UAAkB,IAAU,IAAI,CAAC,MAAM,CAAC,sBAAsB,CAAC,UAAU,CAAC,CAAC,EAAE;;IAEpG,oBAAoB,KAAW,IAAI,CAAC,MAAM,CAAC,oBAAoB,EAAE,CAAC,EAAE;;;;;IAO3E,IAAI,gBAAgB,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,EAAE;IAAC,IAAI,gBAAgB,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,gBAAgB,GAAG,KAAK,CAAC,EAAE;;IAEvJ,IAAI,mBAAmB,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,EAAE;IAAC,IAAI,mBAAmB,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,mBAAmB,GAAG,KAAK,CAAC,EAAE;;IAEnK,IAAI,aAAa,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE;IAAC,IAAI,aAAa,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,aAAa,GAAG,KAAK,CAAC,EAAE;;IAE3I,IAAI,eAAe,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC,EAAE;IAAC,IAAI,eAAe,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,eAAe,GAAG,KAAK,CAAC,EAAE;;IAEnJ,IAAI,mBAAmB,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,EAAE;IAAC,IAAI,mBAAmB,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,mBAAmB,GAAG,KAAK,CAAC,EAAE;;IAEnK,IAAI,SAAS,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;IAAC,IAAI,SAAS,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,SAAS,GAAG,KAAK,CAAC,EAAE;;IAE3H,IAAI,UAAU,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE;IAAC,IAAI,UAAU,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,CAAC,UAAU,GAAG,KAAK,CAAC,EAAE;;IAE/H,IAAI,SAAS,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE;;IAEzD,IAAI,qBAAqB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,qBAAqB,CAAC,EAAE;;IAEjF,IAAI,oBAAoB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,EAAE;;IAE/E,IAAI,oBAAoB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,EAAE;;IAE/E,IAAI,oBAAoB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,EAAE;;IAE/E,IAAI,wBAAwB,KAAa,OAAO,IAAI,CAAC,MAAM,CAAC,wBAAwB,CAAC,EAAE;;IAEvF,IAAI,UAAU,KAAsC,OAAO,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE;CA+CvF;AAED,MAAM,aAAa,GAA8B,EAAE,CAAC;;;;AAKpD,MAAa,YAAY;IAoBrB,YAA4B,MAA6B;QAA7B,WAAM,GAAN,MAAM,CAAuB;KAAI;IAlBtD,OAAO,UAAU,CAAC,KAAa;QAClC,OAAO,aAAa,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC;KACvC;IACM,OAAO,UAAU,CAAC,OAA2B;QAChD,IAAI,KAAK,GAAG,aAAa,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QAC3C,IAAI,KAAK,KAAK,CAAC,CAAC,EAAE;YACd,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;gBAC3C,IAAI,aAAa,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE;oBAC3B,aAAa,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC;oBAC3B,OAAO,CAAC,CAAC;iBACZ;aACJ;YACD,KAAK,GAAG,aAAa,CAAC,MAAM,CAAC;YAC7B,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;SAC/B;QACD,OAAO,KAAK,CAAC;KAChB;;AAjBa,wBAAW,GAAwB,IAAI,CAAC;;AAsB1D,SAAgB,aAAa,CAAC,oBAAwC,IAAI;IACtE,MAAM,GAAG,GAAiB,IAAI,YAAY,CAAC,IAAI,CAAC,aAAa,CAAC,iBAAiB,GAAG,iBAAiB,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC;IACpH,IAAI,YAAY,CAAC,WAAW,KAAK,IAAI,EAAE;QACnC,YAAY,CAAC,WAAW,GAAG,GAAG,CAAC;KAClC;IACD,OAAO,GAAG,CAAC;CACd;AACD,AAaA;AACA,SAAgB,iBAAiB,CAAC,GAAwB;IACtD,IAAI,CAAC,iBAAiB,CAAC,CAAC,GAAG,KAAK,IAAI,IAAI,IAAI,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC;IAC3D,YAAY,CAAC,WAAW,GAAG,GAAG,CAAC;CAClC;;AAGD,SAAgB,8BAA8B,CAAC,WAAmB,EAAE,KAAa,EAAE,QAAgB,EAAE,OAAe,EAAE,OAAe,EAAE,YAAoB,EAAE,WAAmB;IAC5K,OAAO,IAAI,CAAC,8BAA8B,CAAC,WAAW,EAAE,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,WAAW,CAAC,CAAC;CACzH;;;AAID,SAAgB,KAAK,KAAc,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,CAAC,EAAE;AACtE,AAEA;AACA,SAAgB,QAAQ,KAAW,IAAI,CAAC,QAAQ,EAAE,CAAC,EAAE;;AAErD,SAAgB,QAAQ,KAAW,IAAI,CAAC,QAAQ,EAAE,CAAC,EAAE;;AAErD,SAAgB,MAAM,KAAW,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE;;AAEjD,SAAgB,WAAW;IACvB,MAAM,SAAS,GAAqC,IAAI,CAAC,WAAW,EAAE,CAAC;IACvE,OAAO,CAAC,SAAS,KAAK,IAAI,IAAI,IAAI,GAAG,IAAI,UAAU,CAAC,SAAS,CAAC,CAAC;CAClE;AAED,AAyhDA;AACA,SAAgB,cAAc,KAAuB,OAAO,IAAI,CAAC,cAAc,EAAE,CAAC,EAAE;AACpF,AAsBA;AACA,SAAgB,yBAAyB,CAAC,QAAgB,EAAE,WAAmB,CAAC,IAAU,IAAI,CAAC,yBAAyB,CAAC,QAAQ,CAAC,CAAC,EAAE;AACrI,AAEA;AACA,SAAgB,uBAAuB,CAAC,eAA6C,IAAI,IAAY,OAAO,IAAI,CAAC,uBAAuB,EAAE,CAAC,EAAE;;;ACp5H7I,CAAC,SAAS,MAAM,CAAC;;;;;;AAMjB,IAAI,aAAa,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AACtC,IAAI,sBAAsB;EACxB,aAAa;;;EAGb,SAAS,IAAI,aAAa;EAC1B,QAAQ,IAAI,aAAa;EACzB,KAAK,IAAI,aAAa;EACtB,MAAM,IAAI,aAAa;;;EAGvB,CAAC,UAAU;IACT,IAAI,OAAO,CAAC;IACZ,IAAI,aAAa,CAAC,SAAS,CAAC,CAAC,EAAE,OAAO,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;IAC/C,OAAO,OAAO,OAAO,KAAK,UAAU,CAAC;GACtC,GAAG,CAAC;;;;;;;AAOP,IAAI,CAAkC,OAAO;AAC7C;;EAEE,eAAe,GAAG,sBAAsB,GAAG,aAAa,GAAG,OAAO,CAAC;EACnE,gBAAgB,GAAG,OAAO,CAAC;CAC5B;;AAED;;EAEE,AAOA;;IAEE,IAAI,CAAC,sBAAsB;MACzB,MAAM,CAAC,SAAS,CAAC,GAAG,OAAO,CAAC;GAC/B;CACF;;;;;;;AAOD,IAAI,OAAO,GAAG,SAAS,CAAC;AACxB,IAAI,MAAM,GAAG,QAAQ,CAAC;AACtB,IAAI,SAAS,GAAG,WAAW,CAAC;AAC5B,IAAI,QAAQ,GAAG,UAAU,CAAC;AAC1B,IAAI,IAAI,GAAG,UAAU,EAAE,CAAC;;AAExB,SAAS,OAAO,CAAC,KAAK,EAAE;EACtB,OAAO,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,gBAAgB,CAAC;CACnE;;;AAGD,IAAI,aAAa,GAAG,OAAO,YAAY,KAAK,WAAW,GAAG,YAAY,GAAG,UAAU,CAAC;AACpF,IAAI,UAAU,GAAG,EAAE,CAAC;AACpB,IAAI,UAAU,CAAC;;AAEf,SAAS,UAAU,EAAE;;EAEnB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE;IACxC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;;;EAGrC,UAAU,GAAG,EAAE,CAAC;EAChB,UAAU,GAAG,KAAK,CAAC;CACpB;;AAED,SAAS,SAAS,CAAC,QAAQ,EAAE,GAAG,CAAC;EAC/B,UAAU,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC;;EAEjC,IAAI,CAAC,UAAU;EACf;IACE,UAAU,GAAG,IAAI,CAAC;IAClB,aAAa,CAAC,UAAU,EAAE,CAAC,CAAC,CAAC;GAC9B;CACF;;;AAGD,SAAS,cAAc,CAAC,QAAQ,EAAE,OAAO,EAAE;EACzC,SAAS,cAAc,CAAC,KAAK,EAAE;IAC7B,OAAO,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;GACzB;;EAED,SAAS,aAAa,CAAC,MAAM,EAAE;IAC7B,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;GACzB;;EAED,IAAI;IACF,QAAQ,CAAC,cAAc,EAAE,aAAa,CAAC,CAAC;GACzC,CAAC,MAAM,CAAC,EAAE;IACT,aAAa,CAAC,CAAC,CAAC,CAAC;GAClB;CACF;;AAED,SAAS,cAAc,CAAC,UAAU,CAAC;EACjC,IAAI,KAAK,GAAG,UAAU,CAAC,KAAK,CAAC;EAC7B,IAAI,OAAO,GAAG,KAAK,CAAC,MAAM,CAAC;EAC3B,IAAI,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;EACxB,IAAI,QAAQ,GAAG,UAAU,CAAC,OAAO,CAAC,CAAC;EACnC,IAAI,OAAO,GAAG,UAAU,CAAC,IAAI,CAAC;;EAE9B,IAAI,OAAO,QAAQ,KAAK,UAAU;EAClC;IACE,OAAO,GAAG,SAAS,CAAC;IACpB,IAAI;MACF,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;KACzB,CAAC,MAAM,CAAC,EAAE;MACT,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;KACpB;GACF;;EAED,IAAI,CAAC,cAAc,CAAC,OAAO,EAAE,KAAK,CAAC;EACnC;IACE,IAAI,OAAO,KAAK,SAAS;MACvB,OAAO,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;;IAE1B,IAAI,OAAO,KAAK,QAAQ;MACtB,MAAM,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;GAC1B;CACF;;AAED,SAAS,cAAc,CAAC,OAAO,EAAE,KAAK,EAAE;EACtC,IAAI,QAAQ,CAAC;;EAEb,IAAI;IACF,IAAI,OAAO,KAAK,KAAK;MACnB,MAAM,IAAI,SAAS,CAAC,sDAAsD,CAAC,CAAC;;IAE9E,IAAI,KAAK,KAAK,OAAO,KAAK,KAAK,UAAU,IAAI,OAAO,KAAK,KAAK,QAAQ,CAAC;IACvE;MACE,IAAI,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC;;MAEtB,IAAI,OAAO,IAAI,KAAK,UAAU;MAC9B;QACE,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,SAAS,GAAG,CAAC;UAC5B,IAAI,CAAC,QAAQ;UACb;YACE,QAAQ,GAAG,IAAI,CAAC;;YAEhB,IAAI,KAAK,KAAK,GAAG;cACf,OAAO,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;;cAEtB,OAAO,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;WACzB;SACF,EAAE,SAAS,MAAM,CAAC;UACjB,IAAI,CAAC,QAAQ;UACb;YACE,QAAQ,GAAG,IAAI,CAAC;;YAEhB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;WACzB;SACF,CAAC,CAAC;;QAEH,OAAO,IAAI,CAAC;OACb;KACF;GACF,CAAC,OAAO,CAAC,EAAE;IACV,IAAI,CAAC,QAAQ;MACX,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;;IAErB,OAAO,IAAI,CAAC;GACb;;EAED,OAAO,KAAK,CAAC;CACd;;AAED,SAAS,OAAO,CAAC,OAAO,EAAE,KAAK,CAAC;EAC9B,IAAI,OAAO,KAAK,KAAK,IAAI,CAAC,cAAc,CAAC,OAAO,EAAE,KAAK,CAAC;IACtD,OAAO,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;CAC3B;;AAED,SAAS,OAAO,CAAC,OAAO,EAAE,KAAK,CAAC;EAC9B,IAAI,OAAO,CAAC,MAAM,KAAK,OAAO;EAC9B;IACE,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC;IACxB,OAAO,CAAC,KAAK,GAAG,KAAK,CAAC;;IAEtB,SAAS,CAAC,kBAAkB,EAAE,OAAO,CAAC,CAAC;GACxC;CACF;;AAED,SAAS,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC;EAC9B,IAAI,OAAO,CAAC,MAAM,KAAK,OAAO;EAC9B;IACE,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC;IACxB,OAAO,CAAC,KAAK,GAAG,MAAM,CAAC;;IAEvB,SAAS,CAAC,gBAAgB,EAAE,OAAO,CAAC,CAAC;GACtC;CACF;;AAED,SAAS,OAAO,CAAC,OAAO,EAAE;EACxB,IAAI,SAAS,GAAG,OAAO,CAAC,KAAK,CAAC;EAC9B,OAAO,CAAC,KAAK,GAAG,SAAS,CAAC;;EAE1B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;IACzC,cAAc,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;GAC9B;CACF;;AAED,SAAS,kBAAkB,CAAC,OAAO,CAAC;EAClC,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;EAC3B,OAAO,CAAC,OAAO,CAAC,CAAC;CAClB;;AAED,SAAS,gBAAgB,CAAC,OAAO,CAAC;EAChC,OAAO,CAAC,MAAM,GAAG,QAAQ,CAAC;EAC1B,OAAO,CAAC,OAAO,CAAC,CAAC;CAClB;;;;;AAKD,SAAS,OAAO,CAAC,QAAQ,CAAC;EACxB,IAAI,OAAO,QAAQ,KAAK,UAAU;IAChC,MAAM,IAAI,SAAS,CAAC,+CAA+C,CAAC,CAAC;;EAEvE,IAAI,IAAI,YAAY,OAAO,KAAK,KAAK;IACnC,MAAM,IAAI,SAAS,CAAC,2HAA2H,CAAC,CAAC;;EAEnJ,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;;EAEhB,cAAc,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;CAChC;;AAED,OAAO,CAAC,SAAS,GAAG;EAClB,WAAW,EAAE,OAAO;;EAEpB,MAAM,EAAE,OAAO;EACf,KAAK,EAAE,IAAI;EACX,KAAK,EAAE,SAAS;;EAEhB,IAAI,EAAE,SAAS,aAAa,EAAE,WAAW,CAAC;IACxC,IAAI,UAAU,GAAG;MACf,KAAK,EAAE,IAAI;MACX,IAAI,EAAE,IAAI,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC;MAChC,SAAS,EAAE,aAAa;MACxB,QAAQ,EAAE,WAAW;KACtB,CAAC;;IAEF,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,IAAI,IAAI,CAAC,MAAM,KAAK,QAAQ;IACzD;;MAEE,SAAS,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;KACvC;;IAED;;MAEE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;KAC7B;;IAED,OAAO,UAAU,CAAC,IAAI,CAAC;GACxB;;EAED,OAAO,EAAE,SAAS,WAAW,EAAE;IAC7B,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC;GACrC;CACF,CAAC;;AAEF,OAAO,CAAC,GAAG,GAAG,SAAS,QAAQ,CAAC;EAC9B,IAAI,KAAK,GAAG,IAAI,CAAC;;EAEjB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACpB,MAAM,IAAI,SAAS,CAAC,0CAA0C,CAAC,CAAC;;EAElE,OAAO,IAAI,KAAK,CAAC,SAAS,OAAO,EAAE,MAAM,CAAC;IACxC,IAAI,OAAO,GAAG,EAAE,CAAC;IACjB,IAAI,SAAS,GAAG,CAAC,CAAC;;IAElB,SAAS,QAAQ,CAAC,KAAK,CAAC;MACtB,SAAS,EAAE,CAAC;MACZ,OAAO,SAAS,KAAK,CAAC;QACpB,OAAO,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC;QACvB,IAAI,CAAC,EAAE,SAAS;UACd,OAAO,CAAC,OAAO,CAAC,CAAC;OACpB,CAAC;KACH;;IAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,OAAO,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;IACjD;MACE,OAAO,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;;MAEtB,IAAI,OAAO,IAAI,OAAO,OAAO,CAAC,IAAI,KAAK,UAAU;QAC/C,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;;QAElC,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC;KACxB;;IAED,IAAI,CAAC,SAAS;MACZ,OAAO,CAAC,OAAO,CAAC,CAAC;GACpB,CAAC,CAAC;CACJ,CAAC;;AAEF,OAAO,CAAC,IAAI,GAAG,SAAS,QAAQ,CAAC;EAC/B,IAAI,KAAK,GAAG,IAAI,CAAC;;EAEjB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACpB,MAAM,IAAI,SAAS,CAAC,2CAA2C,CAAC,CAAC;;EAEnE,OAAO,IAAI,KAAK,CAAC,SAAS,OAAO,EAAE,MAAM,EAAE;IACzC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,OAAO,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;IACjD;MACE,OAAO,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;;MAEtB,IAAI,OAAO,IAAI,OAAO,OAAO,CAAC,IAAI,KAAK,UAAU;QAC/C,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;;QAE9B,OAAO,CAAC,OAAO,CAAC,CAAC;KACpB;GACF,CAAC,CAAC;CACJ,CAAC;;AAEF,OAAO,CAAC,OAAO,GAAG,SAAS,KAAK,CAAC;EAC/B,IAAI,KAAK,GAAG,IAAI,CAAC;;EAEjB,IAAI,KAAK,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,CAAC,WAAW,KAAK,KAAK;IACnE,OAAO,KAAK,CAAC;;EAEf,OAAO,IAAI,KAAK,CAAC,SAAS,OAAO,CAAC;IAChC,OAAO,CAAC,KAAK,CAAC,CAAC;GAChB,CAAC,CAAC;CACJ,CAAC;;AAEF,OAAO,CAAC,MAAM,GAAG,SAAS,MAAM,CAAC;EAC/B,IAAI,KAAK,GAAG,IAAI,CAAC;;EAEjB,OAAO,IAAI,KAAK,CAAC,SAAS,OAAO,EAAE,MAAM,CAAC;IACxC,MAAM,CAAC,MAAM,CAAC,CAAC;GAChB,CAAC,CAAC;CACJ,CAAC;;CAED,EAAE,OAAO,MAAM,IAAI,WAAW,GAAG,MAAM,GAAG,OAAOC,cAAM,IAAI,WAAW,GAAGA,cAAM,GAAG,OAAO,IAAI,IAAI,WAAW,GAAG,IAAI,GAAGC,cAAI,CAAC,CAAC;;;;;ACzV7H;;;;;;AAQA,IAAI,qBAAqB,GAAG,MAAM,CAAC,qBAAqB,CAAC;AACzD,IAAI,cAAc,GAAG,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC;AACrD,IAAI,gBAAgB,GAAG,MAAM,CAAC,SAAS,CAAC,oBAAoB,CAAC;;AAE7D,SAAS,QAAQ,CAAC,GAAG,EAAE;CACtB,IAAI,GAAG,KAAK,IAAI,IAAI,GAAG,KAAK,SAAS,EAAE;EACtC,MAAM,IAAI,SAAS,CAAC,uDAAuD,CAAC,CAAC;EAC7E;;CAED,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;CACnB;;AAED,SAAS,eAAe,GAAG;CAC1B,IAAI;EACH,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE;GACnB,OAAO,KAAK,CAAC;GACb;;;;;EAKD,IAAI,KAAK,GAAG,IAAI,MAAM,CAAC,KAAK,CAAC,CAAC;EAC9B,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;EAChB,IAAI,MAAM,CAAC,mBAAmB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;GACjD,OAAO,KAAK,CAAC;GACb;;;EAGD,IAAI,KAAK,GAAG,EAAE,CAAC;EACf,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE;GAC5B,KAAK,CAAC,GAAG,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;GACxC;EACD,IAAI,MAAM,GAAG,MAAM,CAAC,mBAAmB,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE;GAC/D,OAAO,KAAK,CAAC,CAAC,CAAC,CAAC;GAChB,CAAC,CAAC;EACH,IAAI,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,KAAK,YAAY,EAAE;GACrC,OAAO,KAAK,CAAC;GACb;;;EAGD,IAAI,KAAK,GAAG,EAAE,CAAC;EACf,sBAAsB,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,OAAO,CAAC,UAAU,MAAM,EAAE;GAC1D,KAAK,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC;GACvB,CAAC,CAAC;EACH,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC;IAChD,sBAAsB,EAAE;GACzB,OAAO,KAAK,CAAC;GACb;;EAED,OAAO,IAAI,CAAC;EACZ,CAAC,OAAO,GAAG,EAAE;;EAEb,OAAO,KAAK,CAAC;EACb;CACD;;AAED,gBAAc,GAAG,eAAe,EAAE,GAAG,MAAM,CAAC,MAAM,GAAG,UAAU,MAAM,EAAE,MAAM,EAAE;CAC9E,IAAI,IAAI,CAAC;CACT,IAAI,EAAE,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC;CAC1B,IAAI,OAAO,CAAC;;CAEZ,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;EAC1C,IAAI,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;;EAE5B,KAAK,IAAI,GAAG,IAAI,IAAI,EAAE;GACrB,IAAI,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE;IACnC,EAAE,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;IACpB;GACD;;EAED,IAAI,qBAAqB,EAAE;GAC1B,OAAO,GAAG,qBAAqB,CAAC,IAAI,CAAC,CAAC;GACtC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;IACxC,IAAI,gBAAgB,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE;KAC5C,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC;KAClC;IACD;GACD;EACD;;CAED,OAAO,EAAE,CAAC;CACV,CAAC;;ACzFF;;;;;;;AAOA,AAEA;;AAEA,IAAI,CAAC,MAAM,CAAC,OAAO;AACnB;IACI,MAAM,CAAC,OAAO,GAAGC,SAAQ,CAAC;CAC7B;;;;AAID,IAAI,CAAC,MAAM,CAAC,MAAM;AAClB;IACI,MAAM,CAAC,MAAM,GAAG,YAAY,CAAC;CAChC;;AAED,IAAIC,gBAAc,GAAG,OAAO,UAAU,KAAK,WAAW,GAAG,UAAU,GAAG,OAAO,MAAM,KAAK,WAAW,GAAG,MAAM,GAAG,OAAO,MAAM,KAAK,WAAW,GAAG,MAAM,GAAG,OAAO,IAAI,KAAK,WAAW,GAAG,IAAI,GAAG,EAAE,CAAC;;;;;;;;;;;;;AAahM,IAAI,cAAc,GAAG,EAAE,CAAC;;;AAGxB,IAAI,EAAE,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC;AACzC;IACI,IAAI,CAAC,GAAG,GAAG,SAAS,GAAG;IACvB;QACI,OAAO,IAAI,IAAI,EAAE,CAAC,OAAO,EAAE,CAAC;KAC/B,CAAC;CACL;;;AAGD,IAAI,EAAEA,gBAAc,CAAC,WAAW,IAAIA,gBAAc,CAAC,WAAW,CAAC,GAAG,CAAC;AACnE;IACI,IAAI,SAAS,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;;IAE3B,IAAI,CAACA,gBAAc,CAAC,WAAW;IAC/B;QACIA,gBAAc,CAAC,WAAW,GAAG,EAAE,CAAC;KACnC;;IAEDA,gBAAc,CAAC,WAAW,CAAC,GAAG,GAAG,YAAY,EAAE,OAAO,IAAI,CAAC,GAAG,EAAE,GAAG,SAAS,CAAC,EAAE,CAAC;CACnF;;;AAGD,IAAI,QAAQ,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;AAC1B,IAAI,OAAO,GAAG,CAAC,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,GAAG,CAAC,CAAC;;AAE3C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,IAAI,CAACA,gBAAc,CAAC,qBAAqB,EAAE,EAAE,CAAC;AAChF;IACI,IAAI,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;;IAEnBA,gBAAc,CAAC,qBAAqB,GAAGA,gBAAc,EAAE,CAAC,GAAG,uBAAuB,EAAE,CAAC;IACrFA,gBAAc,CAAC,oBAAoB,GAAGA,gBAAc,EAAE,CAAC,GAAG,sBAAsB,EAAE,IAAIA,gBAAc,EAAE,CAAC,GAAG,6BAA6B,EAAE,CAAC;CAC7I;;AAED,IAAI,CAACA,gBAAc,CAAC,qBAAqB;AACzC;IACIA,gBAAc,CAAC,qBAAqB,GAAG,UAAU,QAAQ,EAAE;QACvD,IAAI,OAAO,QAAQ,KAAK,UAAU;QAClC;YACI,MAAM,IAAI,SAAS,EAAE,QAAQ,GAAG,mBAAmB,EAAE,CAAC;SACzD;;QAED,IAAI,WAAW,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;QAC7B,IAAI,KAAK,GAAG,cAAc,GAAG,QAAQ,GAAG,WAAW,CAAC;;QAEpD,IAAI,KAAK,GAAG,CAAC;QACb;YACI,KAAK,GAAG,CAAC,CAAC;SACb;;QAED,QAAQ,GAAG,WAAW,CAAC;;QAEvB,OAAO,UAAU,CAAC,YAAY;YAC1B,QAAQ,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;YACtB,QAAQ,CAAC,WAAW,CAAC,GAAG,EAAE,CAAC,CAAC;SAC/B,EAAE,KAAK,CAAC,CAAC;KACb,CAAC;CACL;;AAED,IAAI,CAACA,gBAAc,CAAC,oBAAoB;AACxC;IACIA,gBAAc,CAAC,oBAAoB,GAAG,UAAU,EAAE,EAAE,EAAE,OAAO,YAAY,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC;CACpF;;;;;AAKD,IAAI,CAAC,IAAI,CAAC,IAAI;AACd;IACI,IAAI,CAAC,IAAI,GAAG,SAAS,QAAQ,CAAC,CAAC;IAC/B;QACI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;QAEd,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC;QACvB;YACI,OAAO,CAAC,CAAC;SACZ;;QAED,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;KACzB,CAAC;CACL;;;;;AAKD,IAAI,CAAC,MAAM,CAAC,SAAS;AACrB;IACI,MAAM,CAAC,SAAS,GAAG,SAAS,eAAe,CAAC,KAAK;IACjD;QACI,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,QAAQ,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,KAAK,CAAC;KACtF,CAAC;CACL;;AAED,IAAI,CAAC,MAAM,CAAC,WAAW;AACvB;IACI,MAAM,CAAC,WAAW,GAAG,KAAK,CAAC;CAC9B;;AAED,IAAI,CAAC,MAAM,CAAC,YAAY;AACxB;IACI,MAAM,CAAC,YAAY,GAAG,KAAK,CAAC;CAC/B;;AAED,IAAI,CAAC,MAAM,CAAC,WAAW;AACvB;IACI,MAAM,CAAC,WAAW,GAAG,KAAK,CAAC;CAC9B;;AAED,IAAI,CAAC,MAAM,CAAC,WAAW;AACvB;IACI,MAAM,CAAC,WAAW,GAAG,KAAK,CAAC;CAC9B;;AAED,IAAI,CAAC,MAAM,CAAC,UAAU;AACtB;IACI,MAAM,CAAC,UAAU,GAAG,KAAK,CAAC;CAC7B;;AAED,IAAI,CAAC,MAAM,CAAC,UAAU;AACtB;IACI,MAAM,CAAC,UAAU,GAAG,KAAK,CAAC;CAC7B;;;AC/JD,CAAC,SAAS,MAAM,EAAE;EAChB,IAAI,WAAW,GAAG,SAAS;IACzB,UAAU,GAAG,OAAO;IACpB,YAAY,GAAG,OAAO;IACtB,aAAa,GAAG,0BAA0B;IAC1C,cAAc,GAAG,UAAU;IAC3B,YAAY,GAAG,4BAA4B;IAC3C,aAAa,GAAG,oCAAoC;IACpD,aAAa,GAAG,gBAAgB;IAChC,cAAc,GAAG,uBAAuB;IACxC,gBAAgB,GAAG,aAAa;IAChC,mBAAmB,GAAG,OAAO;IAC7B,WAAW,GAAG,aAAa;IAC3B,YAAY,GAAG,+BAA+B;IAC9C,aAAa,GAAG,wBAAwB,CAAC;;EAE3C,SAAS,KAAK,CAAC,KAAK,EAAE,SAAS,EAAE;IAC/B,OAAO,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;GAC9B;;EAED,SAAS,QAAQ,CAAC,SAAS,EAAE;IAC3B,IAAI,EAAE;MACJ,SAAS;OACR,OAAO,SAAS,KAAK,WAAW,GAAG,SAAS,CAAC,SAAS,GAAG,EAAE,CAAC,CAAC;;;;IAIhE,IAAI,GAAG,GAAG,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IAC5B,IAAI,OAAO,GAAG,CAAC,CAAC,CAAC,KAAK,WAAW,EAAE;MACjC,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;KACb;;;;;IAKD,GAAG,GAAG,EAAE,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;IAC1B,IAAI,OAAO,GAAG,CAAC,CAAC,CAAC,KAAK,WAAW,EAAE;MACjC,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;KACb;;IAED,IAAI,MAAM,GAAG;MACX,KAAK,EAAE;QACL,KAAK,EAAE,KAAK,CAAC,WAAW,EAAE,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;QAC1D,IAAI,EAAE,KAAK,CAAC,UAAU,EAAE,EAAE,CAAC;QAC3B,MAAM;UACJ,CAAC,KAAK,CAAC,WAAW,EAAE,EAAE,CAAC;UACvB,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;UACvB,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;QAC3B,MAAM;UACJ,CAAC,KAAK,CAAC,WAAW,EAAE,EAAE,CAAC;YACrB,KAAK,CAAC,UAAU,EAAE,EAAE,CAAC;YACrB,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;UACzB,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;OAC5B;MACD,MAAM,EAAE;QACN,KAAK,EAAE,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;QAC9B,MAAM,EAAE,CAAC,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC,IAAI,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;QAC5D,MAAM,EAAE,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC,IAAI,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;OAC5D;MACD,OAAO,EAAE;QACP,KAAK;UACH,CAAC,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC,IAAI,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;WACpD,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC,IAAI,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC,CAAC;QACzD,MAAM;UACJ,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;UACzB,CAAC,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;UACxB,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;WACxB,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC,IAAI,KAAK,CAAC,cAAc,EAAE,EAAE,CAAC,CAAC;QACzD,MAAM;UACJ,CAAC,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;aACvB,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;cACtB,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;cACxB,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;cACxB,KAAK,CAAC,cAAc,EAAE,EAAE,CAAC,CAAC;UAC9B,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;OAC3B;MACD,OAAO,EAAE;QACP,KAAK,EAAE,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;QAC/B,MAAM,EAAE,KAAK,CAAC,cAAc,EAAE,EAAE,CAAC;QACjC,MAAM,EAAE,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC,IAAI,KAAK,CAAC,cAAc,EAAE,EAAE,CAAC;OAC9D;MACD,KAAK,EAAE;QACL,UAAU,EAAE,KAAK,CAAC,gBAAgB,EAAE,EAAE,CAAC;QACvC,YAAY,EAAE,KAAK,CAAC,mBAAmB,EAAE,EAAE,CAAC;QAC5C,KAAK,EAAE,KAAK,CAAC,WAAW,EAAE,EAAE,CAAC;QAC7B,OAAO,EAAE,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;QACjC,MAAM,EAAE,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;QAC/B,MAAM;UACJ,KAAK,CAAC,gBAAgB,EAAE,EAAE,CAAC;UAC3B,KAAK,CAAC,mBAAmB,EAAE,EAAE,CAAC;UAC9B,KAAK,CAAC,WAAW,EAAE,EAAE,CAAC;UACtB,KAAK,CAAC,aAAa,EAAE,EAAE,CAAC;UACxB,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC;OAC1B;KACF,CAAC;IACF,CAAC,MAAM,CAAC,GAAG;MACT,MAAM,CAAC,KAAK,CAAC,MAAM;MACnB,MAAM,CAAC,OAAO,CAAC,MAAM;MACrB,MAAM,CAAC,OAAO,CAAC,MAAM;MACrB,MAAM,CAAC,KAAK,CAAC,MAAM;;OAElB,MAAM,CAAC,KAAK;QACX,MAAM,CAAC,KAAK,CAAC,KAAK,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK;OACnE,MAAM,CAAC,MAAM;QACZ,MAAM,CAAC,KAAK,CAAC,MAAM,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;IAE3E,OAAO,MAAM,CAAC;GACf;;EAED;IACE;IACA,MAAM,CAAC,OAAO;IACd,OAAO,MAAM,KAAK,WAAW;IAC7B;;IAEA,cAAc,GAAG,QAAQ,CAAC;GAC3B,MAAM;IACL;IACA,MAAM,CAAC,OAAO;IACd,OAAO,MAAM,KAAK,WAAW;IAC7B;;IAEA,cAAc,GAAG,QAAQ,EAAE,CAAC;IAC5B,uBAAuB,GAAG,QAAQ,CAAC;GACpC,MAAM,AAGA;IACL,MAAM,CAAC,QAAQ,GAAG,QAAQ,EAAE,CAAC;GAC9B;CACF,EAAEF,cAAI,CAAC,CAAC;;;;AClIT;;;;;;;AAOA,AAEA;;;;;;;;;;;;;;AAcA,SAAS,sBAAsB,CAAC,GAAG;AACnC;IACI,IAAI,QAAQ,GAAG,IAAI,CAAC;;IAEpB,IAAI,QAAQ,CAAC,MAAM,IAAI,QAAQ,CAAC,KAAK;IACrC;QACI,QAAQ,GAAG,KAAK,CAAC;;QAEjB,IAAI,QAAQ,CAAC,KAAK,CAAC,MAAM;QACzB;YACI,IAAI,KAAK,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,KAAK,CAAC,iBAAiB,CAAC,CAAC;;YAE3D,IAAI,KAAK;YACT;gBACI,IAAI,YAAY,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;;;gBAG1C,IAAI,YAAY,IAAI,EAAE;gBACtB;oBACI,QAAQ,GAAG,IAAI,CAAC;iBACnB;aACJ;SACJ;QACD,IAAI,QAAQ,CAAC,OAAO,CAAC,MAAM;QAC3B;YACI,IAAI,OAAO,GAAG,CAAC,SAAS,CAAC,SAAS,EAAE,KAAK,CAAC,oBAAoB,CAAC,CAAC;;YAEhE,IAAI,OAAO;YACX;gBACI,IAAI,cAAc,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;;;gBAG9C,IAAI,cAAc,IAAI,CAAC;gBACvB;oBACI,QAAQ,GAAG,IAAI,CAAC;iBACnB;aACJ;SACJ;KACJ;;IAED,OAAO,QAAQ,GAAG,GAAG,GAAG,CAAC,CAAC;CAC7B;;;;;;;;;;AAUD,SAAS,mBAAmB;AAC5B;IACI,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC;CACjC;;;;;;;;;;;;;;AAcD,IAAI,QAAQ,GAAG;;;;;;;;;;;;IAYX,eAAe,EAAE,CAAC;;;;;;;;;;;;IAYlB,iBAAiB,EAAE,CAAC;;;;;;;;;;;IAWpB,UAAU,EAAE,CAAC;;;;;;;;;;;IAWb,iBAAiB,EAAE,CAAC;;;;;;;;;;;IAWpB,mBAAmB,EAAE,sBAAsB,CAAC,EAAE,CAAC;;;;;;;;;;;;;;;;IAgB/C,iBAAiB,EAAE,IAAI;;;;;;;;;;;;;;;;;;;;;;;IAuBvB,cAAc,EAAE;QACZ,IAAI,EAAE,IAAI;QACV,SAAS,EAAE,KAAK;QAChB,SAAS,EAAE,KAAK;QAChB,WAAW,EAAE,KAAK;QAClB,WAAW,EAAE,KAAK;QAClB,eAAe,EAAE,QAAQ;QACzB,iBAAiB,EAAE,IAAI;QACvB,qBAAqB,EAAE,KAAK;QAC5B,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,GAAG;QACX,MAAM,EAAE,KAAK;KAChB;;;;;;;;;;;IAWD,OAAO,EAAE,CAAC;;;;;;;;;;;IAWV,WAAW,EAAE,EAAE,GAAG,EAAE;;;;;;;;;;;IAWpB,kBAAkB,EAAE,EAAE,GAAG,EAAE;;;;;;;;;;;IAW3B,SAAS,EAAE,KAAK;;;;;;;;;;;IAWhB,UAAU,EAAE,CAAC;;;;;;;;;;;IAWb,gBAAgB,EAAE,OAAO;;;;;;;;;;;;IAYzB,kBAAkB,EAAE,QAAQ,CAAC,KAAK,CAAC,MAAM,GAAG,OAAO,GAAG,SAAS;;;;;;;;;;IAU/D,sBAAsB,EAAE,mBAAmB,EAAE;;;;;;;;;;;IAW7C,mBAAmB,EAAE,KAAK;;;;;;;;;;;;;IAa1B,YAAY,EAAE,KAAK;CACtB,CAAC;;;ACxTF;AAEA,IAAI,GAAG,GAAG,MAAM,CAAC,SAAS,CAAC,cAAc;IACrC,MAAM,GAAG,GAAG,CAAC;;;;;;;;;AASjB,SAAS,MAAM,GAAG,EAAE;;;;;;;;;AASpB,IAAI,MAAM,CAAC,MAAM,EAAE;EACjB,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;;;;;EAMvC,IAAI,CAAC,IAAI,MAAM,EAAE,CAAC,SAAS,EAAE,MAAM,GAAG,KAAK,CAAC;CAC7C;;;;;;;;;;;AAWD,SAAS,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE;EAC7B,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;EACb,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;EACvB,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,KAAK,CAAC;CAC3B;;;;;;;;;;;;;AAaD,SAAS,WAAW,CAAC,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE;EACtD,IAAI,OAAO,EAAE,KAAK,UAAU,EAAE;IAC5B,MAAM,IAAI,SAAS,CAAC,iCAAiC,CAAC,CAAC;GACxD;;EAED,IAAI,QAAQ,GAAG,IAAI,EAAE,CAAC,EAAE,EAAE,OAAO,IAAI,OAAO,EAAE,IAAI,CAAC;MAC/C,GAAG,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,CAAC;;EAE1C,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,QAAQ,EAAE,OAAO,CAAC,YAAY,EAAE,CAAC;OAC9E,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;OAClE,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,QAAQ,CAAC,CAAC;;EAE7D,OAAO,OAAO,CAAC;CAChB;;;;;;;;;AASD,SAAS,UAAU,CAAC,OAAO,EAAE,GAAG,EAAE;EAChC,IAAI,EAAE,OAAO,CAAC,YAAY,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;OAC5D,OAAO,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;CAClC;;;;;;;;;AASD,SAAS,YAAY,GAAG;EACtB,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;EAC5B,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;CACvB;;;;;;;;;AASD,YAAY,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,GAAG;EACxD,IAAI,KAAK,GAAG,EAAE;MACV,MAAM;MACN,IAAI,CAAC;;EAET,IAAI,IAAI,CAAC,YAAY,KAAK,CAAC,EAAE,OAAO,KAAK,CAAC;;EAE1C,KAAK,IAAI,KAAK,MAAM,GAAG,IAAI,CAAC,OAAO,GAAG;IACpC,IAAI,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;GACvE;;EAED,IAAI,MAAM,CAAC,qBAAqB,EAAE;IAChC,OAAO,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,qBAAqB,CAAC,MAAM,CAAC,CAAC,CAAC;GAC3D;;EAED,OAAO,KAAK,CAAC;CACd,CAAC;;;;;;;;;AASF,YAAY,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,CAAC,KAAK,EAAE;EAC3D,IAAI,GAAG,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK;MACrC,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;;EAEjC,IAAI,CAAC,QAAQ,EAAE,OAAO,EAAE,CAAC;EACzB,IAAI,QAAQ,CAAC,EAAE,EAAE,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;;EAEtC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,EAAE,GAAG,IAAI,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;IAClE,EAAE,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;GACxB;;EAED,OAAO,EAAE,CAAC;CACX,CAAC;;;;;;;;;AASF,YAAY,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,CAAC,KAAK,EAAE;EACnE,IAAI,GAAG,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK;MACrC,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;;EAElC,IAAI,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;EACzB,IAAI,SAAS,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;EAC3B,OAAO,SAAS,CAAC,MAAM,CAAC;CACzB,CAAC;;;;;;;;;AASF,YAAY,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;EACrE,IAAI,GAAG,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,CAAC;;EAE1C,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,OAAO,KAAK,CAAC;;EAErC,IAAI,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC;MAC7B,GAAG,GAAG,SAAS,CAAC,MAAM;MACtB,IAAI;MACJ,CAAC,CAAC;;EAEN,IAAI,SAAS,CAAC,EAAE,EAAE;IAChB,IAAI,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,KAAK,EAAE,SAAS,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,CAAC,CAAC;;IAE9E,QAAQ,GAAG;MACT,KAAK,CAAC,EAAE,OAAO,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC;MAC1D,KAAK,CAAC,EAAE,OAAO,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,EAAE,EAAE,CAAC,EAAE,IAAI,CAAC;MAC9D,KAAK,CAAC,EAAE,OAAO,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,CAAC;MAClE,KAAK,CAAC,EAAE,OAAO,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,CAAC;MACtE,KAAK,CAAC,EAAE,OAAO,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,CAAC;MAC1E,KAAK,CAAC,EAAE,OAAO,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,CAAC;KAC/E;;IAED,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;MAClD,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;KAC5B;;IAED,SAAS,CAAC,EAAE,CAAC,KAAK,CAAC,SAAS,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;GAC7C,MAAM;IACL,IAAI,MAAM,GAAG,SAAS,CAAC,MAAM;QACzB,CAAC,CAAC;;IAEN,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE,EAAE;MAC3B,IAAI,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,CAAC,CAAC;;MAEpF,QAAQ,GAAG;QACT,KAAK,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM;QAC1D,KAAK,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM;QAC9D,KAAK,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM;QAClE,KAAK,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM;QACtE;UACE,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YAC7D,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;WAC5B;;UAED,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;OACrD;KACF;GACF;;EAED,OAAO,IAAI,CAAC;CACb,CAAC;;;;;;;;;;;AAWF,YAAY,CAAC,SAAS,CAAC,EAAE,GAAG,SAAS,EAAE,CAAC,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE;EAC1D,OAAO,WAAW,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE,KAAK,CAAC,CAAC;CACrD,CAAC;;;;;;;;;;;AAWF,YAAY,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE;EAC9D,OAAO,WAAW,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC;CACpD,CAAC;;;;;;;;;;;;AAYF,YAAY,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,CAAC,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE;EACxF,IAAI,GAAG,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,CAAC;;EAE1C,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,OAAO,IAAI,CAAC;EACpC,IAAI,CAAC,EAAE,EAAE;IACP,UAAU,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IACtB,OAAO,IAAI,CAAC;GACb;;EAED,IAAI,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;;EAElC,IAAI,SAAS,CAAC,EAAE,EAAE;IAChB;MACE,SAAS,CAAC,EAAE,KAAK,EAAE;OAClB,CAAC,IAAI,IAAI,SAAS,CAAC,IAAI,CAAC;OACxB,CAAC,OAAO,IAAI,SAAS,CAAC,OAAO,KAAK,OAAO,CAAC;MAC3C;MACA,UAAU,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;KACvB;GACF,MAAM;IACL,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,EAAE,EAAE,MAAM,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE,EAAE;MACvE;QACE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE;SACrB,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;SAC3B,OAAO,IAAI,SAAS,CAAC,CAAC,CAAC,CAAC,OAAO,KAAK,OAAO,CAAC;QAC7C;QACA,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;OAC3B;KACF;;;;;IAKD,IAAI,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,MAAM,KAAK,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC;SAC3E,UAAU,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;GAC5B;;EAED,OAAO,IAAI,CAAC;CACb,CAAC;;;;;;;;;AASF,YAAY,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,CAAC,KAAK,EAAE;EAC7E,IAAI,GAAG,CAAC;;EAER,IAAI,KAAK,EAAE;IACT,GAAG,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,CAAC;IACtC,IAAI,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,UAAU,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;GAC9C,MAAM;IACL,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;IAC5B,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;GACvB;;EAED,OAAO,IAAI,CAAC;CACb,CAAC;;;;;AAKF,YAAY,CAAC,SAAS,CAAC,GAAG,GAAG,YAAY,CAAC,SAAS,CAAC,cAAc,CAAC;AACnE,YAAY,CAAC,SAAS,CAAC,WAAW,GAAG,YAAY,CAAC,SAAS,CAAC,EAAE,CAAC;;;;;AAK/D,YAAY,CAAC,QAAQ,GAAG,MAAM,CAAC;;;;;AAK/B,YAAY,CAAC,YAAY,GAAG,YAAY,CAAC;;;;;AAKzC,AAAmC;EACjC,cAAc,GAAG,YAAY,CAAC;CAC/B;;;AC7UD,YAAc,GAAG,MAAM,CAAC;AACxB,aAAsB,GAAG,MAAM,CAAC;;AAEhC,SAAS,MAAM,CAAC,IAAI,EAAE,WAAW,EAAE,GAAG,EAAE;;IAEpC,GAAG,GAAG,GAAG,IAAI,CAAC,CAAC;;IAEf,IAAI,QAAQ,GAAG,WAAW,IAAI,WAAW,CAAC,MAAM;QAC5C,QAAQ,GAAG,QAAQ,GAAG,WAAW,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,MAAM;QACxD,SAAS,GAAG,UAAU,CAAC,IAAI,EAAE,CAAC,EAAE,QAAQ,EAAE,GAAG,EAAE,IAAI,CAAC;QACpD,SAAS,GAAG,EAAE,CAAC;;IAEnB,IAAI,CAAC,SAAS,IAAI,SAAS,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,EAAE,OAAO,SAAS,CAAC;;IAEtE,IAAI,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC;;IAE1C,IAAI,QAAQ,EAAE,SAAS,GAAG,cAAc,CAAC,IAAI,EAAE,WAAW,EAAE,SAAS,EAAE,GAAG,CAAC,CAAC;;;IAG5E,IAAI,IAAI,CAAC,MAAM,GAAG,EAAE,GAAG,GAAG,EAAE;QACxB,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;QACtB,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;;QAEtB,KAAK,IAAI,CAAC,GAAG,GAAG,EAAE,CAAC,GAAG,QAAQ,EAAE,CAAC,IAAI,GAAG,EAAE;YACtC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;YACZ,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YAChB,IAAI,CAAC,GAAG,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC;YACvB,IAAI,CAAC,GAAG,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC;YACvB,IAAI,CAAC,GAAG,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC;YACvB,IAAI,CAAC,GAAG,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC;SAC1B;;;QAGD,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,GAAG,IAAI,EAAE,IAAI,GAAG,IAAI,CAAC,CAAC;QAC7C,OAAO,GAAG,OAAO,KAAK,CAAC,GAAG,CAAC,GAAG,OAAO,GAAG,CAAC,CAAC;KAC7C;;IAED,YAAY,CAAC,SAAS,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;;IAE7D,OAAO,SAAS,CAAC;CACpB;;;AAGD,SAAS,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,SAAS,EAAE;IAClD,IAAI,CAAC,EAAE,IAAI,CAAC;;IAEZ,IAAI,SAAS,MAAM,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,GAAG,CAAC,CAAC,EAAE;QACvD,KAAK,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,IAAI,GAAG,EAAE,IAAI,GAAG,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;KACvF,MAAM;QACH,KAAK,CAAC,GAAG,GAAG,GAAG,GAAG,EAAE,CAAC,IAAI,KAAK,EAAE,CAAC,IAAI,GAAG,EAAE,IAAI,GAAG,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;KAC9F;;IAED,IAAI,IAAI,IAAI,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,EAAE;QACjC,UAAU,CAAC,IAAI,CAAC,CAAC;QACjB,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;KACpB;;IAED,OAAO,IAAI,CAAC;CACf;;;AAGD,SAAS,YAAY,CAAC,KAAK,EAAE,GAAG,EAAE;IAC9B,IAAI,CAAC,KAAK,EAAE,OAAO,KAAK,CAAC;IACzB,IAAI,CAAC,GAAG,EAAE,GAAG,GAAG,KAAK,CAAC;;IAEtB,IAAI,CAAC,GAAG,KAAK;QACT,KAAK,CAAC;IACV,GAAG;QACC,KAAK,GAAG,KAAK,CAAC;;QAEd,IAAI,CAAC,CAAC,CAAC,OAAO,KAAK,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE;YACpE,UAAU,CAAC,CAAC,CAAC,CAAC;YACd,CAAC,GAAG,GAAG,GAAG,CAAC,CAAC,IAAI,CAAC;YACjB,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,EAAE,MAAM;YACxB,KAAK,GAAG,IAAI,CAAC;;SAEhB,MAAM;YACH,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;SACd;KACJ,QAAQ,KAAK,IAAI,CAAC,KAAK,GAAG,EAAE;;IAE7B,OAAO,GAAG,CAAC;CACd;;;AAGD,SAAS,YAAY,CAAC,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE;IAClE,IAAI,CAAC,GAAG,EAAE,OAAO;;;IAGjB,IAAI,CAAC,IAAI,IAAI,OAAO,EAAE,UAAU,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;;IAE3D,IAAI,IAAI,GAAG,GAAG;QACV,IAAI,EAAE,IAAI,CAAC;;;IAGf,OAAO,GAAG,CAAC,IAAI,KAAK,GAAG,CAAC,IAAI,EAAE;QAC1B,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;QAChB,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;;QAEhB,IAAI,OAAO,GAAG,WAAW,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,GAAG,KAAK,CAAC,GAAG,CAAC,EAAE;;YAE9D,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;YAC7B,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;YAC5B,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;;YAE7B,UAAU,CAAC,GAAG,CAAC,CAAC;;;YAGhB,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC;YAChB,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;YAEjB,SAAS;SACZ;;QAED,GAAG,GAAG,IAAI,CAAC;;;QAGX,IAAI,GAAG,KAAK,IAAI,EAAE;;YAEd,IAAI,CAAC,IAAI,EAAE;gBACP,YAAY,CAAC,YAAY,CAAC,GAAG,CAAC,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC;;;aAG3E,MAAM,IAAI,IAAI,KAAK,CAAC,EAAE;gBACnB,GAAG,GAAG,sBAAsB,CAAC,YAAY,CAAC,GAAG,CAAC,EAAE,SAAS,EAAE,GAAG,CAAC,CAAC;gBAChE,YAAY,CAAC,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC;;;aAG7D,MAAM,IAAI,IAAI,KAAK,CAAC,EAAE;gBACnB,WAAW,CAAC,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;aACzD;;YAED,MAAM;SACT;KACJ;CACJ;;;AAGD,SAAS,KAAK,CAAC,GAAG,EAAE;IAChB,IAAI,CAAC,GAAG,GAAG,CAAC,IAAI;QACZ,CAAC,GAAG,GAAG;QACP,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC;;IAEjB,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,EAAE,OAAO,KAAK,CAAC;;;IAGrC,IAAI,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC;;IAEtB,OAAO,CAAC,KAAK,GAAG,CAAC,IAAI,EAAE;QACnB,IAAI,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvD,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,OAAO,KAAK,CAAC;QAC/C,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd;;IAED,OAAO,IAAI,CAAC;CACf;;AAED,SAAS,WAAW,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE;IAC3C,IAAI,CAAC,GAAG,GAAG,CAAC,IAAI;QACZ,CAAC,GAAG,GAAG;QACP,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC;;IAEjB,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,EAAE,OAAO,KAAK,CAAC;;;IAGrC,IAAI,KAAK,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QACrE,KAAK,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QACrE,KAAK,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QACrE,KAAK,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;IAG1E,IAAI,IAAI,GAAG,MAAM,CAAC,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC;QAChD,IAAI,GAAG,MAAM,CAAC,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;;IAErD,IAAI,CAAC,GAAG,GAAG,CAAC,KAAK;QACb,CAAC,GAAG,GAAG,CAAC,KAAK,CAAC;;;IAGlB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE;QACzC,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI;YAChC,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvD,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,OAAO,KAAK,CAAC;QAC/C,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;;QAEZ,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI;YAChC,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvD,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,OAAO,KAAK,CAAC;QAC/C,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;KACf;;;IAGD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE;QACrB,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI;YAChC,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvD,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,OAAO,KAAK,CAAC;QAC/C,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;KACf;;;IAGD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE;QACrB,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI;YAChC,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACvD,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,OAAO,KAAK,CAAC;QAC/C,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;KACf;;IAED,OAAO,IAAI,CAAC;CACf;;;AAGD,SAAS,sBAAsB,CAAC,KAAK,EAAE,SAAS,EAAE,GAAG,EAAE;IACnD,IAAI,CAAC,GAAG,KAAK,CAAC;IACd,GAAG;QACC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI;YACV,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;;QAEpB,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,UAAU,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE;;YAE5F,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;YAC1B,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;YAC1B,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;;;YAG1B,UAAU,CAAC,CAAC,CAAC,CAAC;YACd,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;YAEnB,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;SACjB;QACD,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,KAAK,EAAE;;IAEtB,OAAO,YAAY,CAAC,CAAC,CAAC,CAAC;CAC1B;;;AAGD,SAAS,WAAW,CAAC,KAAK,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE;;IAE7D,IAAI,CAAC,GAAG,KAAK,CAAC;IACd,GAAG;QACC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;QACpB,OAAO,CAAC,KAAK,CAAC,CAAC,IAAI,EAAE;YACjB,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE;;gBAEtC,IAAI,CAAC,GAAG,YAAY,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;;gBAG3B,CAAC,GAAG,YAAY,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC;gBAC5B,CAAC,GAAG,YAAY,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC;;;gBAG5B,YAAY,CAAC,CAAC,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;gBACrD,YAAY,CAAC,CAAC,EAAE,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;gBACrD,OAAO;aACV;YACD,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;SACd;QACD,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,KAAK,EAAE;CACzB;;;AAGD,SAAS,cAAc,CAAC,IAAI,EAAE,WAAW,EAAE,SAAS,EAAE,GAAG,EAAE;IACvD,IAAI,KAAK,GAAG,EAAE;QACV,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,IAAI,CAAC;;IAE7B,KAAK,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;QAChD,KAAK,GAAG,WAAW,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;QAC7B,GAAG,GAAG,CAAC,GAAG,GAAG,GAAG,CAAC,GAAG,WAAW,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC;QAC3D,IAAI,GAAG,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;QAChD,IAAI,IAAI,KAAK,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QAC5C,KAAK,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;KACjC;;IAED,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;;;IAGrB,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QAC/B,aAAa,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;QACnC,SAAS,GAAG,YAAY,CAAC,SAAS,EAAE,SAAS,CAAC,IAAI,CAAC,CAAC;KACvD;;IAED,OAAO,SAAS,CAAC;CACpB;;AAED,SAAS,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE;IACpB,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACpB;;;AAGD,SAAS,aAAa,CAAC,IAAI,EAAE,SAAS,EAAE;IACpC,SAAS,GAAG,cAAc,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;IAC5C,IAAI,SAAS,EAAE;QACX,IAAI,CAAC,GAAG,YAAY,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;QACtC,YAAY,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC;KAC3B;CACJ;;;AAGD,SAAS,cAAc,CAAC,IAAI,EAAE,SAAS,EAAE;IACrC,IAAI,CAAC,GAAG,SAAS;QACb,EAAE,GAAG,IAAI,CAAC,CAAC;QACX,EAAE,GAAG,IAAI,CAAC,CAAC;QACX,EAAE,GAAG,CAAC,QAAQ;QACd,CAAC,CAAC;;;;IAIN,GAAG;QACC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE;YACjD,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;YAC/D,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,EAAE,EAAE;gBACnB,EAAE,GAAG,CAAC,CAAC;gBACP,IAAI,CAAC,KAAK,EAAE,EAAE;oBACV,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC;oBACzB,IAAI,EAAE,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC;iBACtC;gBACD,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;aACnC;SACJ;QACD,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,SAAS,EAAE;;IAE1B,IAAI,CAAC,CAAC,EAAE,OAAO,IAAI,CAAC;;IAEpB,IAAI,EAAE,KAAK,EAAE,EAAE,OAAO,CAAC,CAAC;;;;;;IAMxB,IAAI,IAAI,GAAG,CAAC;QACR,EAAE,GAAG,CAAC,CAAC,CAAC;QACR,EAAE,GAAG,CAAC,CAAC,CAAC;QACR,MAAM,GAAG,QAAQ;QACjB,GAAG,CAAC;;IAER,CAAC,GAAG,CAAC,CAAC;;IAEN,GAAG;QACC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC;gBAChC,eAAe,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE;;YAErF,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;YAEtC,IAAI,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC;iBACrB,GAAG,GAAG,MAAM,KAAK,GAAG,KAAK,MAAM,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,oBAAoB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE;gBAClG,CAAC,GAAG,CAAC,CAAC;gBACN,MAAM,GAAG,GAAG,CAAC;aAChB;SACJ;;QAED,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,IAAI,EAAE;;IAErB,OAAO,CAAC,CAAC;CACZ;;;AAGD,SAAS,oBAAoB,CAAC,CAAC,EAAE,CAAC,EAAE;IAChC,OAAO,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;CACrE;;;AAGD,SAAS,UAAU,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE;IAC5C,IAAI,CAAC,GAAG,KAAK,CAAC;IACd,GAAG;QACC,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;QAC9D,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC;QACjB,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC;QACjB,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,KAAK,EAAE;;IAEtB,CAAC,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC;IACrB,CAAC,CAAC,KAAK,GAAG,IAAI,CAAC;;IAEf,UAAU,CAAC,CAAC,CAAC,CAAC;CACjB;;;;AAID,SAAS,UAAU,CAAC,IAAI,EAAE;IACtB,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,KAAK;QACzC,MAAM,GAAG,CAAC,CAAC;;IAEf,GAAG;QACC,CAAC,GAAG,IAAI,CAAC;QACT,IAAI,GAAG,IAAI,CAAC;QACZ,IAAI,GAAG,IAAI,CAAC;QACZ,SAAS,GAAG,CAAC,CAAC;;QAEd,OAAO,CAAC,EAAE;YACN,SAAS,EAAE,CAAC;YACZ,CAAC,GAAG,CAAC,CAAC;YACN,KAAK,GAAG,CAAC,CAAC;YACV,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE,EAAE;gBACzB,KAAK,EAAE,CAAC;gBACR,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;gBACZ,IAAI,CAAC,CAAC,EAAE,MAAM;aACjB;YACD,KAAK,GAAG,MAAM,CAAC;;YAEf,OAAO,KAAK,GAAG,CAAC,KAAK,KAAK,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE;;gBAElC,IAAI,KAAK,KAAK,CAAC,KAAK,KAAK,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE;oBAClD,CAAC,GAAG,CAAC,CAAC;oBACN,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;oBACZ,KAAK,EAAE,CAAC;iBACX,MAAM;oBACH,CAAC,GAAG,CAAC,CAAC;oBACN,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;oBACZ,KAAK,EAAE,CAAC;iBACX;;gBAED,IAAI,IAAI,EAAE,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;qBACpB,IAAI,GAAG,CAAC,CAAC;;gBAEd,CAAC,CAAC,KAAK,GAAG,IAAI,CAAC;gBACf,IAAI,GAAG,CAAC,CAAC;aACZ;;YAED,CAAC,GAAG,CAAC,CAAC;SACT;;QAED,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;QAClB,MAAM,IAAI,CAAC,CAAC;;KAEf,QAAQ,SAAS,GAAG,CAAC,EAAE;;IAExB,OAAO,IAAI,CAAC;CACf;;;AAGD,SAAS,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE;;IAEvC,CAAC,GAAG,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,OAAO,CAAC;IACjC,CAAC,GAAG,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,OAAO,CAAC;;IAEjC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;IAChC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;IAChC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;IAChC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;;IAEhC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;IAChC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;IAChC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;IAChC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;;IAEhC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;CACvB;;;AAGD,SAAS,WAAW,CAAC,KAAK,EAAE;IACxB,IAAI,CAAC,GAAG,KAAK;QACT,QAAQ,GAAG,KAAK,CAAC;IACrB,GAAG;QACC,IAAI,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,EAAE,QAAQ,GAAG,CAAC,CAAC;QAC/E,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,KAAK,EAAE;;IAEtB,OAAO,QAAQ,CAAC;CACnB;;;AAGD,SAAS,eAAe,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;IACrD,OAAO,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC;WAClD,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC;WAClD,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC;CAC7D;;;AAGD,SAAS,eAAe,CAAC,CAAC,EAAE,CAAC,EAAE;IAC3B,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,EAAE,CAAC,CAAC;YAC/D,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,YAAY,CAAC,CAAC,EAAE,CAAC,CAAC;aAC/D,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;YAC/C,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;CACvF;;;AAGD,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE;IACnB,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;CAChE;;;AAGD,SAAS,MAAM,CAAC,EAAE,EAAE,EAAE,EAAE;IACpB,OAAO,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;CACzC;;;AAGD,SAAS,UAAU,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;IAChC,IAAI,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;IAChC,IAAI,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;IAChC,IAAI,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;IAChC,IAAI,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;;IAEhC,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,OAAO,IAAI,CAAC;;IAExC,IAAI,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,OAAO,IAAI,CAAC;IACnD,IAAI,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,OAAO,IAAI,CAAC;IACnD,IAAI,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,OAAO,IAAI,CAAC;IACnD,IAAI,EAAE,KAAK,CAAC,IAAI,SAAS,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,OAAO,IAAI,CAAC;;IAEnD,OAAO,KAAK,CAAC;CAChB;;;AAGD,SAAS,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE;IACxB,OAAO,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;CAC3H;;AAED,SAAS,IAAI,CAAC,GAAG,EAAE;IACf,OAAO,GAAG,GAAG,CAAC,GAAG,CAAC,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;CACzC;;;AAGD,SAAS,iBAAiB,CAAC,CAAC,EAAE,CAAC,EAAE;IAC7B,IAAI,CAAC,GAAG,CAAC,CAAC;IACV,GAAG;QACC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;gBAC9D,UAAU,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,OAAO,IAAI,CAAC;QACjD,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,CAAC,EAAE;;IAElB,OAAO,KAAK,CAAC;CAChB;;;AAGD,SAAS,aAAa,CAAC,CAAC,EAAE,CAAC,EAAE;IACzB,OAAO,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC;QAC9B,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC;QAClD,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC;CACxD;;;AAGD,SAAS,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE;IACxB,IAAI,CAAC,GAAG,CAAC;QACL,MAAM,GAAG,KAAK;QACd,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC;QACpB,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;IACzB,GAAG;QACC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;iBAC/C,EAAE,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;YACjE,MAAM,GAAG,CAAC,MAAM,CAAC;QACrB,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;KACd,QAAQ,CAAC,KAAK,CAAC,EAAE;;IAElB,OAAO,MAAM,CAAC;CACjB;;;;AAID,SAAS,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE;IACxB,IAAI,EAAE,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;QAC5B,EAAE,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;QAC5B,EAAE,GAAG,CAAC,CAAC,IAAI;QACX,EAAE,GAAG,CAAC,CAAC,IAAI,CAAC;;IAEhB,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC;IACX,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC;;IAEX,EAAE,CAAC,IAAI,GAAG,EAAE,CAAC;IACb,EAAE,CAAC,IAAI,GAAG,EAAE,CAAC;;IAEb,EAAE,CAAC,IAAI,GAAG,EAAE,CAAC;IACb,EAAE,CAAC,IAAI,GAAG,EAAE,CAAC;;IAEb,EAAE,CAAC,IAAI,GAAG,EAAE,CAAC;IACb,EAAE,CAAC,IAAI,GAAG,EAAE,CAAC;;IAEb,OAAO,EAAE,CAAC;CACb;;;AAGD,SAAS,UAAU,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE;IAC/B,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;IAE1B,IAAI,CAAC,IAAI,EAAE;QACP,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC;QACX,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC;;KAEd,MAAM;QACH,CAAC,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACnB,CAAC,CAAC,IAAI,GAAG,IAAI,CAAC;QACd,IAAI,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;QACnB,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;KACjB;IACD,OAAO,CAAC,CAAC;CACZ;;AAED,SAAS,UAAU,CAAC,CAAC,EAAE;IACnB,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC;IACrB,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC;;IAErB,IAAI,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC;IACrC,IAAI,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC;CACxC;;AAED,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE;;IAEnB,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;IAGX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;IAGX,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;IAGjB,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC;;;IAGd,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;IAGlB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;CACxB;;;;AAID,MAAM,CAAC,SAAS,GAAG,UAAU,IAAI,EAAE,WAAW,EAAE,GAAG,EAAE,SAAS,EAAE;IAC5D,IAAI,QAAQ,GAAG,WAAW,IAAI,WAAW,CAAC,MAAM,CAAC;IACjD,IAAI,QAAQ,GAAG,QAAQ,GAAG,WAAW,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC;;IAE7D,IAAI,WAAW,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC,EAAE,QAAQ,EAAE,GAAG,CAAC,CAAC,CAAC;IAC/D,IAAI,QAAQ,EAAE;QACV,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;YACpD,IAAI,KAAK,GAAG,WAAW,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;YACjC,IAAI,GAAG,GAAG,CAAC,GAAG,GAAG,GAAG,CAAC,GAAG,WAAW,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC;YAC/D,WAAW,IAAI,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC;SAC9D;KACJ;;IAED,IAAI,aAAa,GAAG,CAAC,CAAC;IACtB,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,EAAE;QACtC,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;QAC3B,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC;QAC/B,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC;QAC/B,aAAa,IAAI,IAAI,CAAC,GAAG;YACrB,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YACjD,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;KAC1D;;IAED,OAAO,WAAW,KAAK,CAAC,IAAI,aAAa,KAAK,CAAC,GAAG,CAAC;QAC/C,IAAI,CAAC,GAAG,CAAC,CAAC,aAAa,GAAG,WAAW,IAAI,WAAW,CAAC,CAAC;CAC7D,CAAC;;AAEF,SAAS,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE;IACvC,IAAI,GAAG,GAAG,CAAC,CAAC;IACZ,KAAK,IAAI,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,GAAG,GAAG,GAAG,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,IAAI,GAAG,EAAE;QAClD,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QACzD,CAAC,GAAG,CAAC,CAAC;KACT;IACD,OAAO,GAAG,CAAC;CACd;;;AAGD,MAAM,CAAC,OAAO,GAAG,UAAU,IAAI,EAAE;IAC7B,IAAI,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM;QACvB,MAAM,GAAG,CAAC,QAAQ,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,UAAU,EAAE,GAAG,CAAC;QACnD,SAAS,GAAG,CAAC,CAAC;;IAElB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QAClC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACrC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;SACrE;QACD,IAAI,CAAC,GAAG,CAAC,EAAE;YACP,SAAS,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC;YAChC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SAChC;KACJ;IACD,OAAO,MAAM,CAAC;CACjB,CAAC;;;ACnqBF;;;;AAIA,IAAI,MAAM,GAAG,UAAU,CAAC;;;AAGxB,IAAI,IAAI,GAAG,EAAE,CAAC;AACd,IAAI,IAAI,GAAG,CAAC,CAAC;AACb,IAAI,IAAI,GAAG,EAAE,CAAC;AACd,IAAI,IAAI,GAAG,EAAE,CAAC;AACd,IAAI,IAAI,GAAG,GAAG,CAAC;AACf,IAAI,WAAW,GAAG,EAAE,CAAC;AACrB,IAAI,QAAQ,GAAG,GAAG,CAAC;AACnB,IAAIG,WAAS,GAAG,GAAG,CAAC;AACpB,AAGA,IAAI,aAAa,GAAG,cAAc,CAAC;AACnC,IAAI,eAAe,GAAG,2BAA2B,CAAC;;;AAGlD,IAAI,MAAM,GAAG;EACX,UAAU,EAAE,iDAAiD;EAC7D,WAAW,EAAE,gDAAgD;EAC7D,eAAe,EAAE,eAAe;CACjC,CAAC;;;AAGF,IAAI,aAAa,GAAG,IAAI,GAAG,IAAI,CAAC;AAChC,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;AACvB,IAAI,kBAAkB,GAAG,MAAM,CAAC,YAAY,CAAC;;;;;;;;;;AAU7C,SAAS,KAAK,CAAC,IAAI,EAAE;EACnB,MAAM,IAAI,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;CACpC;;;;;;;;;;AAUD,SAAS,GAAG,CAAC,KAAK,EAAE,EAAE,EAAE;EACtB,IAAI,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;EAC1B,IAAI,MAAM,GAAG,EAAE,CAAC;EAChB,OAAO,MAAM,EAAE,EAAE;IACf,MAAM,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;GACpC;EACD,OAAO,MAAM,CAAC;CACf;;;;;;;;;;;;AAYD,SAAS,SAAS,CAAC,MAAM,EAAE,EAAE,EAAE;EAC7B,IAAI,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;EAC9B,IAAI,MAAM,GAAG,EAAE,CAAC;EAChB,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE;;;IAGpB,MAAM,GAAG,KAAK,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;IACxB,MAAM,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;GACnB;;EAED,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,eAAe,EAAE,MAAM,CAAC,CAAC;EACjD,IAAI,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;EAC/B,IAAI,OAAO,GAAG,GAAG,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;EACxC,OAAO,MAAM,GAAG,OAAO,CAAC;CACzB;;;;;;;;;;;;;;;AAeD,SAAS,UAAU,CAAC,MAAM,EAAE;EAC1B,IAAI,MAAM,GAAG,EAAE;IACb,OAAO,GAAG,CAAC;IACX,MAAM,GAAG,MAAM,CAAC,MAAM;IACtB,KAAK;IACL,KAAK,CAAC;EACR,OAAO,OAAO,GAAG,MAAM,EAAE;IACvB,KAAK,GAAG,MAAM,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC;IACrC,IAAI,KAAK,IAAI,MAAM,IAAI,KAAK,IAAI,MAAM,IAAI,OAAO,GAAG,MAAM,EAAE;;MAE1D,KAAK,GAAG,MAAM,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC;MACrC,IAAI,CAAC,KAAK,GAAG,MAAM,KAAK,MAAM,EAAE;QAC9B,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,GAAG,KAAK,KAAK,EAAE,KAAK,KAAK,GAAG,KAAK,CAAC,GAAG,OAAO,CAAC,CAAC;OAClE,MAAM;;;QAGL,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACnB,OAAO,EAAE,CAAC;OACX;KACF,MAAM;MACL,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KACpB;GACF;EACD,OAAO,MAAM,CAAC;CACf;AACD,AA2CA;;;;;;;;;;;;AAYA,SAAS,YAAY,CAAC,KAAK,EAAE,IAAI,EAAE;;;EAGjC,OAAO,KAAK,GAAG,EAAE,GAAG,EAAE,IAAI,KAAK,GAAG,EAAE,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;CAC5D;;;;;;;AAOD,SAAS,KAAK,CAAC,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE;EAC1C,IAAI,CAAC,GAAG,CAAC,CAAC;EACV,KAAK,GAAG,SAAS,GAAG,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC,GAAG,KAAK,IAAI,CAAC,CAAC;EACrD,KAAK,IAAI,KAAK,CAAC,KAAK,GAAG,SAAS,CAAC,CAAC;EAClC,gCAAgC,KAAK,GAAG,aAAa,GAAG,IAAI,IAAI,CAAC,EAAE,CAAC,IAAI,IAAI,EAAE;IAC5E,KAAK,GAAG,KAAK,CAAC,KAAK,GAAG,aAAa,CAAC,CAAC;GACtC;EACD,OAAO,KAAK,CAAC,CAAC,GAAG,CAAC,aAAa,GAAG,CAAC,IAAI,KAAK,IAAI,KAAK,GAAG,IAAI,CAAC,CAAC,CAAC;CAChE;AACD,AAqGA;;;;;;;;AAQA,AAAO,SAAS,MAAM,CAAC,KAAK,EAAE;EAC5B,IAAI,CAAC;IACH,KAAK;IACL,cAAc;IACd,WAAW;IACX,IAAI;IACJ,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,CAAC;IACD,YAAY;IACZ,MAAM,GAAG,EAAE;;IAEX,WAAW;;IAEX,qBAAqB;IACrB,UAAU;IACV,OAAO,CAAC;;;EAGV,KAAK,GAAG,UAAU,CAAC,KAAK,CAAC,CAAC;;;EAG1B,WAAW,GAAG,KAAK,CAAC,MAAM,CAAC;;;EAG3B,CAAC,GAAG,QAAQ,CAAC;EACb,KAAK,GAAG,CAAC,CAAC;EACV,IAAI,GAAG,WAAW,CAAC;;;EAGnB,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,EAAE,CAAC,EAAE;IAChC,YAAY,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IACxB,IAAI,YAAY,GAAG,IAAI,EAAE;MACvB,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,YAAY,CAAC,CAAC,CAAC;KAC/C;GACF;;EAED,cAAc,GAAG,WAAW,GAAG,MAAM,CAAC,MAAM,CAAC;;;;;;EAM7C,IAAI,WAAW,EAAE;IACf,MAAM,CAAC,IAAI,CAACA,WAAS,CAAC,CAAC;GACxB;;;EAGD,OAAO,cAAc,GAAG,WAAW,EAAE;;;;IAInC,KAAK,CAAC,GAAG,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,EAAE,CAAC,EAAE;MAC5C,YAAY,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;MACxB,IAAI,YAAY,IAAI,CAAC,IAAI,YAAY,GAAG,CAAC,EAAE;QACzC,CAAC,GAAG,YAAY,CAAC;OAClB;KACF;;;;IAID,qBAAqB,GAAG,cAAc,GAAG,CAAC,CAAC;IAC3C,IAAI,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC,CAAC,MAAM,GAAG,KAAK,IAAI,qBAAqB,CAAC,EAAE;MAC3D,KAAK,CAAC,UAAU,CAAC,CAAC;KACnB;;IAED,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,qBAAqB,CAAC;IACzC,CAAC,GAAG,CAAC,CAAC;;IAEN,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,EAAE,CAAC,EAAE;MAChC,YAAY,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;;MAExB,IAAI,YAAY,GAAG,CAAC,IAAI,EAAE,KAAK,GAAG,MAAM,EAAE;QACxC,KAAK,CAAC,UAAU,CAAC,CAAC;OACnB;;MAED,IAAI,YAAY,IAAI,CAAC,EAAE;;QAErB,KAAK,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,IAAI,uBAAuB,CAAC,IAAI,IAAI,EAAE;UACxD,CAAC,GAAG,CAAC,IAAI,IAAI,GAAG,IAAI,IAAI,CAAC,IAAI,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;UAC5D,IAAI,CAAC,GAAG,CAAC,EAAE;YACT,MAAM;WACP;UACD,OAAO,GAAG,CAAC,GAAG,CAAC,CAAC;UAChB,UAAU,GAAG,IAAI,GAAG,CAAC,CAAC;UACtB,MAAM,CAAC,IAAI;YACT,kBAAkB,CAAC,YAAY,CAAC,CAAC,GAAG,OAAO,GAAG,UAAU,EAAE,CAAC,CAAC,CAAC;WAC9D,CAAC;UACF,CAAC,GAAG,KAAK,CAAC,OAAO,GAAG,UAAU,CAAC,CAAC;SACjC;;QAED,MAAM,CAAC,IAAI,CAAC,kBAAkB,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QACpD,IAAI,GAAG,KAAK,CAAC,KAAK,EAAE,qBAAqB,EAAE,cAAc,IAAI,WAAW,CAAC,CAAC;QAC1E,KAAK,GAAG,CAAC,CAAC;QACV,EAAE,cAAc,CAAC;OAClB;KACF;;IAED,EAAE,KAAK,CAAC;IACR,EAAE,CAAC,CAAC;;GAEL;EACD,OAAO,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;CACxB;AACD,AAmBA;;;;;;;;;;;;AAYA,AAAO,SAAS,OAAO,CAAC,KAAK,EAAE;EAC7B,OAAO,SAAS,CAAC,KAAK,EAAE,SAAS,MAAM,EAAE;IACvC,OAAO,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC;MAC/B,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;MACvB,MAAM,CAAC;GACV,CAAC,CAAC;CACJ;;ACrcD;AACA,AAqcA;AACA,AAAO,SAAS,MAAM,CAAC,GAAG,EAAE;EAC1B,OAAO,GAAG,KAAK,IAAI,CAAC;CACrB;;AAED,AAAO,SAAS,iBAAiB,CAAC,GAAG,EAAE;EACrC,OAAO,GAAG,IAAI,IAAI,CAAC;CACpB;AACD,AAIA;AACA,AAAO,SAAS,QAAQ,CAAC,GAAG,EAAE;EAC5B,OAAO,OAAO,GAAG,KAAK,QAAQ,CAAC;CAChC;AACD,AAYA;AACA,AAAO,SAAS,QAAQ,CAAC,GAAG,EAAE;EAC5B,OAAO,OAAO,GAAG,KAAK,QAAQ,IAAI,GAAG,KAAK,IAAI,CAAC;CAChD;;ACreD;;;;;;;;;;;;;;;;;;;;;;;;;AAyBA,SAASC,gBAAc,CAAC,GAAG,EAAE,IAAI,EAAE;EACjC,OAAO,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;CACxD;AACD,IAAI,OAAO,GAAG,KAAK,CAAC,OAAO,IAAI,UAAU,EAAE,EAAE;EAC3C,OAAO,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,KAAK,gBAAgB,CAAC;CAChE,CAAC;AACF,SAAS,kBAAkB,CAAC,CAAC,EAAE;EAC7B,QAAQ,OAAO,CAAC;IACd,KAAK,QAAQ;MACX,OAAO,CAAC,CAAC;;IAEX,KAAK,SAAS;MACZ,OAAO,CAAC,GAAG,MAAM,GAAG,OAAO,CAAC;;IAE9B,KAAK,QAAQ;MACX,OAAO,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC;;IAE9B;MACE,OAAO,EAAE,CAAC;GACb;CACF;;AAED,AAAO,SAAS,SAAS,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE;EAC7C,GAAG,GAAG,GAAG,IAAI,GAAG,CAAC;EACjB,EAAE,GAAG,EAAE,IAAI,GAAG,CAAC;EACf,IAAI,GAAG,KAAK,IAAI,EAAE;IAChB,GAAG,GAAG,SAAS,CAAC;GACjB;;EAED,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;IAC3B,OAAOC,KAAG,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,SAAS,CAAC,EAAE;MACtC,IAAI,EAAE,GAAG,kBAAkB,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC;MACxD,IAAI,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE;QACnB,OAAOA,KAAG,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,EAAE;UAC7B,OAAO,EAAE,GAAG,kBAAkB,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC;SACvD,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;OACd,MAAM;QACL,OAAO,EAAE,GAAG,kBAAkB,CAAC,kBAAkB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;OAC5D;KACF,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;GAEd;;EAED,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,CAAC;EACrB,OAAO,kBAAkB,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE;SACjD,kBAAkB,CAAC,kBAAkB,CAAC,GAAG,CAAC,CAAC,CAAC;CACpD,AACD;AACA,SAASA,KAAG,EAAE,EAAE,EAAE,CAAC,EAAE;EACnB,IAAI,EAAE,CAAC,GAAG,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;EAC7B,IAAI,GAAG,GAAG,EAAE,CAAC;EACb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;IAClC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;GACvB;EACD,OAAO,GAAG,CAAC;CACZ;;AAED,IAAI,UAAU,GAAG,MAAM,CAAC,IAAI,IAAI,UAAU,GAAG,EAAE;EAC7C,IAAI,GAAG,GAAG,EAAE,CAAC;EACb,KAAK,IAAI,GAAG,IAAI,GAAG,EAAE;IACnB,IAAI,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;GACnE;EACD,OAAO,GAAG,CAAC;CACZ,CAAC;;AAEF,AAAO,SAAS,KAAK,CAAC,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE;EAC1C,GAAG,GAAG,GAAG,IAAI,GAAG,CAAC;EACjB,EAAE,GAAG,EAAE,IAAI,GAAG,CAAC;EACf,IAAI,GAAG,GAAG,EAAE,CAAC;;EAEb,IAAI,OAAO,EAAE,KAAK,QAAQ,IAAI,EAAE,CAAC,MAAM,KAAK,CAAC,EAAE;IAC7C,OAAO,GAAG,CAAC;GACZ;;EAED,IAAI,MAAM,GAAG,KAAK,CAAC;EACnB,EAAE,GAAG,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;;EAEnB,IAAI,OAAO,GAAG,IAAI,CAAC;EACnB,IAAI,OAAO,IAAI,OAAO,OAAO,CAAC,OAAO,KAAK,QAAQ,EAAE;IAClD,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;GAC3B;;EAED,IAAI,GAAG,GAAG,EAAE,CAAC,MAAM,CAAC;;EAEpB,IAAI,OAAO,GAAG,CAAC,IAAI,GAAG,GAAG,OAAO,EAAE;IAChC,GAAG,GAAG,OAAO,CAAC;GACf;;EAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE;IAC5B,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC;QAChC,GAAG,GAAG,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC;QACnB,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC;;IAErB,IAAI,GAAG,IAAI,CAAC,EAAE;MACZ,IAAI,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;MACxB,IAAI,GAAG,CAAC,CAAC,MAAM,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;KAC1B,MAAM;MACL,IAAI,GAAG,CAAC,CAAC;MACT,IAAI,GAAG,EAAE,CAAC;KACX;;IAED,CAAC,GAAG,kBAAkB,CAAC,IAAI,CAAC,CAAC;IAC7B,CAAC,GAAG,kBAAkB,CAAC,IAAI,CAAC,CAAC;;IAE7B,IAAI,CAACD,gBAAc,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE;MAC3B,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;KACZ,MAAM,IAAI,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE;MAC1B,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;KAChB,MAAM;MACL,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;KACtB;GACF;;EAED,OAAO,GAAG,CAAC;CACZ;;AC3ID;AACA,AA8BA,UAAe;EACb,KAAK,EAAE,QAAQ;EACf,OAAO,EAAE,UAAU;EACnB,aAAa,EAAE,gBAAgB;EAC/B,MAAM,EAAE,SAAS;EACjB,GAAG,EAAE,GAAG;EACT;AACD,AAAO,SAAS,GAAG,GAAG;EACpB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;EACrB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;EACpB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;EACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;EACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;EACjB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;EACrB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;EACjB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;EACnB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;EAClB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;EACrB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;EACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CAClB;;;;;;AAMD,IAAI,eAAe,GAAG,mBAAmB;EACvC,WAAW,GAAG,UAAU;;;EAGxB,iBAAiB,GAAG,oCAAoC;;;;EAIxD,MAAM,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC;;;EAGpD,MAAM,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC;;;EAGvD,UAAU,GAAG,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC;;;;;EAKlC,YAAY,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC;EAC3D,eAAe,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC;EACjC,cAAc,GAAG,GAAG;EACpB,mBAAmB,GAAG,wBAAwB;EAC9C,iBAAiB,GAAG,8BAA8B;;EAElD,cAAc,GAAG;IACf,YAAY,EAAE,IAAI;IAClB,aAAa,EAAE,IAAI;GACpB;;EAED,gBAAgB,GAAG;IACjB,YAAY,EAAE,IAAI;IAClB,aAAa,EAAE,IAAI;GACpB;;EAED,eAAe,GAAG;IAChB,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,IAAI;IACb,KAAK,EAAE,IAAI;IACX,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,IAAI;IACb,QAAQ,EAAE,IAAI;IACd,MAAM,EAAE,IAAI;IACZ,SAAS,EAAE,IAAI;IACf,OAAO,EAAE,IAAI;GACd,CAAC;;AAEJ,SAAS,QAAQ,CAAC,GAAG,EAAE,gBAAgB,EAAE,iBAAiB,EAAE;EAC1D,IAAI,GAAG,IAAI,QAAQ,CAAC,GAAG,CAAC,IAAI,GAAG,YAAY,GAAG,EAAE,OAAO,GAAG,CAAC;;EAE3D,IAAI,CAAC,GAAG,IAAI,GAAG,CAAC;EAChB,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,gBAAgB,EAAE,iBAAiB,CAAC,CAAC;EAClD,OAAO,CAAC,CAAC;CACV;AACD,GAAG,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,GAAG,EAAE,gBAAgB,EAAE,iBAAiB,EAAE;EACvE,OAAOE,OAAK,CAAC,IAAI,EAAE,GAAG,EAAE,gBAAgB,EAAE,iBAAiB,CAAC,CAAC;EAC9D;;AAED,SAASA,OAAK,CAAC,IAAI,EAAE,GAAG,EAAE,gBAAgB,EAAE,iBAAiB,EAAE;EAC7D,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;IAClB,MAAM,IAAI,SAAS,CAAC,0CAA0C,GAAG,OAAO,GAAG,CAAC,CAAC;GAC9E;;;;;EAKD,IAAI,UAAU,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC;IAC/B,QAAQ;IACR,CAAC,UAAU,KAAK,CAAC,CAAC,IAAI,UAAU,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,GAAG,GAAG,GAAG;IAChE,MAAM,GAAG,GAAG,CAAC,KAAK,CAAC,QAAQ,CAAC;IAC5B,UAAU,GAAG,KAAK,CAAC;EACrB,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC;EAC/C,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;;EAE5B,IAAI,IAAI,GAAG,GAAG,CAAC;;;;EAIf,IAAI,GAAG,IAAI,CAAC,IAAI,EAAE,CAAC;;EAEnB,IAAI,CAAC,iBAAiB,IAAI,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,KAAK,CAAC,EAAE;;IAErD,IAAI,UAAU,GAAG,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAC9C,IAAI,UAAU,EAAE;MACd,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;MACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;MACjB,IAAI,CAAC,QAAQ,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;MAC9B,IAAI,UAAU,CAAC,CAAC,CAAC,EAAE;QACjB,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;QAC5B,IAAI,gBAAgB,EAAE;UACpB,IAAI,CAAC,KAAK,GAAGC,KAAO,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;SAC7C,MAAM;UACL,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;SACpC;OACF,MAAM,IAAI,gBAAgB,EAAE;QAC3B,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC;QACjB,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;OACjB;MACD,OAAO,IAAI,CAAC;KACb;GACF;;EAED,IAAI,KAAK,GAAG,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;EACvC,IAAI,KAAK,EAAE;IACT,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IACjB,IAAI,UAAU,GAAG,KAAK,CAAC,WAAW,EAAE,CAAC;IACrC,IAAI,CAAC,QAAQ,GAAG,UAAU,CAAC;IAC3B,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;GAClC;;;;;;EAMD,IAAI,iBAAiB,IAAI,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC,sBAAsB,CAAC,EAAE;IACpE,IAAI,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,IAAI,CAAC;IACzC,IAAI,OAAO,IAAI,EAAE,KAAK,IAAI,gBAAgB,CAAC,KAAK,CAAC,CAAC,EAAE;MAClD,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;MACtB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;KACrB;GACF;EACD,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,CAAC;EACjB,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC;KACzB,OAAO,KAAK,KAAK,IAAI,CAAC,eAAe,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE;;;;;;;;;;;;;;;;;;IAkBjD,IAAI,OAAO,GAAG,CAAC,CAAC,CAAC;IACjB,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,eAAe,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;MAC3C,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC;MACvC,IAAI,GAAG,KAAK,CAAC,CAAC,KAAK,OAAO,KAAK,CAAC,CAAC,IAAI,GAAG,GAAG,OAAO,CAAC;QACjD,OAAO,GAAG,GAAG,CAAC;KACjB;;;;IAID,IAAI,IAAI,EAAE,MAAM,CAAC;IACjB,IAAI,OAAO,KAAK,CAAC,CAAC,EAAE;;MAElB,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;KAChC,MAAM;;;MAGL,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;KACzC;;;;IAID,IAAI,MAAM,KAAK,CAAC,CAAC,EAAE;MACjB,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;MAC7B,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;MAC9B,IAAI,CAAC,IAAI,GAAG,kBAAkB,CAAC,IAAI,CAAC,CAAC;KACtC;;;IAGD,OAAO,GAAG,CAAC,CAAC,CAAC;IACb,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,YAAY,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;MACxC,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC;MACpC,IAAI,GAAG,KAAK,CAAC,CAAC,KAAK,OAAO,KAAK,CAAC,CAAC,IAAI,GAAG,GAAG,OAAO,CAAC;QACjD,OAAO,GAAG,GAAG,CAAC;KACjB;;IAED,IAAI,OAAO,KAAK,CAAC,CAAC;MAChB,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC;;IAExB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC;IACnC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;;;IAG3B,SAAS,CAAC,IAAI,CAAC,CAAC;;;;IAIhB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,IAAI,EAAE,CAAC;;;;IAIpC,IAAI,YAAY,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,GAAG;MACzC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,GAAG,CAAC;;;IAGlD,IAAI,CAAC,YAAY,EAAE;MACjB,IAAI,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;MAC1C,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;QAC5C,IAAI,IAAI,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;QACxB,IAAI,CAAC,IAAI,EAAE,SAAS;QACpB,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,EAAE;UACpC,IAAI,OAAO,GAAG,EAAE,CAAC;UACjB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;YAC3C,IAAI,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,GAAG,EAAE;;;;cAI5B,OAAO,IAAI,GAAG,CAAC;aAChB,MAAM;cACL,OAAO,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC;aACpB;WACF;;UAED,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,mBAAmB,CAAC,EAAE;YACvC,IAAI,UAAU,GAAG,SAAS,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;YACvC,IAAI,OAAO,GAAG,SAAS,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YACrC,IAAI,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC;YACxC,IAAI,GAAG,EAAE;cACP,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;cACxB,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;aACzB;YACD,IAAI,OAAO,CAAC,MAAM,EAAE;cAClB,IAAI,GAAG,GAAG,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;aACvC;YACD,IAAI,CAAC,QAAQ,GAAG,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YACrC,MAAM;WACP;SACF;OACF;KACF;;IAED,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,cAAc,EAAE;MACzC,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;KACpB,MAAM;;MAEL,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,EAAE,CAAC;KAC7C;;IAED,IAAI,CAAC,YAAY,EAAE;;;;;MAKjB,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;KACxC;;IAED,CAAC,GAAG,IAAI,CAAC,IAAI,GAAG,GAAG,GAAG,IAAI,CAAC,IAAI,GAAG,EAAE,CAAC;IACrC,IAAI,CAAC,GAAG,IAAI,CAAC,QAAQ,IAAI,EAAE,CAAC;IAC5B,IAAI,CAAC,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC;IAClB,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,CAAC;;;;IAIvB,IAAI,YAAY,EAAE;MAChB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;MAClE,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;QACnB,IAAI,GAAG,GAAG,GAAG,IAAI,CAAC;OACnB;KACF;GACF;;;;EAID,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,EAAE;;;;;IAK/B,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;MAC7C,IAAI,EAAE,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;MACvB,IAAI,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;QACzB,SAAS;MACX,IAAI,GAAG,GAAG,kBAAkB,CAAC,EAAE,CAAC,CAAC;MACjC,IAAI,GAAG,KAAK,EAAE,EAAE;QACd,GAAG,GAAG,MAAM,CAAC,EAAE,CAAC,CAAC;OAClB;MACD,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KACjC;GACF;;;;EAID,IAAI,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;EAC7B,IAAI,IAAI,KAAK,CAAC,CAAC,EAAE;;IAEf,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IAC9B,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;GAC5B;EACD,IAAI,EAAE,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;EAC3B,IAAI,EAAE,KAAK,CAAC,CAAC,EAAE;IACb,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IAC9B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC;IACjC,IAAI,gBAAgB,EAAE;MACpB,IAAI,CAAC,KAAK,GAAGA,KAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAClC;IACD,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;GAC1B,MAAM,IAAI,gBAAgB,EAAE;;IAE3B,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC;IACjB,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;GACjB;EACD,IAAI,IAAI,EAAE,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;EAC/B,IAAI,eAAe,CAAC,UAAU,CAAC;IAC7B,IAAI,CAAC,QAAQ,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE;IACjC,IAAI,CAAC,QAAQ,GAAG,GAAG,CAAC;GACrB;;;EAGD,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,MAAM,EAAE;IAChC,CAAC,GAAG,IAAI,CAAC,QAAQ,IAAI,EAAE,CAAC;IACxB,IAAI,CAAC,GAAG,IAAI,CAAC,MAAM,IAAI,EAAE,CAAC;IAC1B,IAAI,CAAC,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC;GACnB;;;EAGD,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC;EACzB,OAAO,IAAI,CAAC;CACb;;;AAGD,SAAS,SAAS,CAAC,GAAG,EAAE;;;;;EAKtB,IAAI,QAAQ,CAAC,GAAG,CAAC,EAAE,GAAG,GAAGD,OAAK,CAAC,EAAE,EAAE,GAAG,CAAC,CAAC;EACxC,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;CACpB;;AAED,SAAS,MAAM,CAAC,IAAI,EAAE;EACpB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,IAAI,EAAE,CAAC;EAC3B,IAAI,IAAI,EAAE;IACR,IAAI,GAAG,kBAAkB,CAAC,IAAI,CAAC,CAAC;IAChC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACjC,IAAI,IAAI,GAAG,CAAC;GACb;;EAED,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,IAAI,EAAE;IAChC,QAAQ,GAAG,IAAI,CAAC,QAAQ,IAAI,EAAE;IAC9B,IAAI,GAAG,IAAI,CAAC,IAAI,IAAI,EAAE;IACtB,IAAI,GAAG,KAAK;IACZ,KAAK,GAAG,EAAE,CAAC;;EAEb,IAAI,IAAI,CAAC,IAAI,EAAE;IACb,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;GACzB,MAAM,IAAI,IAAI,CAAC,QAAQ,EAAE;IACxB,IAAI,GAAG,IAAI,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;MAC9C,IAAI,CAAC,QAAQ;MACb,GAAG,GAAG,IAAI,CAAC,QAAQ,GAAG,GAAG,CAAC,CAAC;IAC7B,IAAI,IAAI,CAAC,IAAI,EAAE;MACb,IAAI,IAAI,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC;KACzB;GACF;;EAED,IAAI,IAAI,CAAC,KAAK;IACZ,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;IACpB,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,MAAM,EAAE;IAChC,KAAK,GAAGE,SAAW,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;GACjC;;EAED,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,KAAK,KAAK,KAAK,GAAG,GAAG,KAAK,CAAC,CAAC,IAAI,EAAE,CAAC;;EAE3D,IAAI,QAAQ,IAAI,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE,QAAQ,IAAI,GAAG,CAAC;;;;EAI7D,IAAI,IAAI,CAAC,OAAO;IACd,CAAC,CAAC,QAAQ,IAAI,eAAe,CAAC,QAAQ,CAAC,KAAK,IAAI,KAAK,KAAK,EAAE;IAC5D,IAAI,GAAG,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC,CAAC;IAC3B,IAAI,QAAQ,IAAI,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE,QAAQ,GAAG,GAAG,GAAG,QAAQ,CAAC;GACvE,MAAM,IAAI,CAAC,IAAI,EAAE;IAChB,IAAI,GAAG,EAAE,CAAC;GACX;;EAED,IAAI,IAAI,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE,IAAI,GAAG,GAAG,GAAG,IAAI,CAAC;EACtD,IAAI,MAAM,IAAI,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE,MAAM,GAAG,GAAG,GAAG,MAAM,CAAC;;EAE9D,QAAQ,GAAG,QAAQ,CAAC,OAAO,CAAC,OAAO,EAAE,SAAS,KAAK,EAAE;IACnD,OAAO,kBAAkB,CAAC,KAAK,CAAC,CAAC;GAClC,CAAC,CAAC;EACH,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;;EAEpC,OAAO,QAAQ,GAAG,IAAI,GAAG,QAAQ,GAAG,MAAM,GAAG,IAAI,CAAC;CACnD;;AAED,GAAG,CAAC,SAAS,CAAC,MAAM,GAAG,WAAW;EAChC,OAAO,MAAM,CAAC,IAAI,CAAC,CAAC;EACrB;;AAED,SAAS,UAAU,CAAC,MAAM,EAAE,QAAQ,EAAE;EACpC,OAAO,QAAQ,CAAC,MAAM,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;CACxD;;AAED,GAAG,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,QAAQ,EAAE;EACzC,OAAO,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,QAAQ,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CACrE,CAAC;;AAEF,SAAS,gBAAgB,CAAC,MAAM,EAAE,QAAQ,EAAE;EAC1C,IAAI,CAAC,MAAM,EAAE,OAAO,QAAQ,CAAC;EAC7B,OAAO,QAAQ,CAAC,MAAM,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;CAC9D;;AAED,GAAG,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,QAAQ,EAAE;EAC/C,IAAI,QAAQ,CAAC,QAAQ,CAAC,EAAE;IACtB,IAAI,GAAG,GAAG,IAAI,GAAG,EAAE,CAAC;IACpB,GAAG,CAAC,KAAK,CAAC,QAAQ,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;IACjC,QAAQ,GAAG,GAAG,CAAC;GAChB;;EAED,IAAI,MAAM,GAAG,IAAI,GAAG,EAAE,CAAC;EACvB,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;EAC9B,KAAK,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,GAAG,KAAK,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE;IACxC,IAAI,IAAI,GAAG,KAAK,CAAC,EAAE,CAAC,CAAC;IACrB,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC;GAC3B;;;;EAID,MAAM,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;;;EAG5B,IAAI,QAAQ,CAAC,IAAI,KAAK,EAAE,EAAE;IACxB,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;IAC9B,OAAO,MAAM,CAAC;GACf;;;EAGD,IAAI,QAAQ,CAAC,OAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE;;IAE1C,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;IAClC,KAAK,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,GAAG,KAAK,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE;MACxC,IAAI,IAAI,GAAG,KAAK,CAAC,EAAE,CAAC,CAAC;MACrB,IAAI,IAAI,KAAK,UAAU;QACrB,MAAM,CAAC,IAAI,CAAC,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC;KACjC;;;IAGD,IAAI,eAAe,CAAC,MAAM,CAAC,QAAQ,CAAC;MAClC,MAAM,CAAC,QAAQ,IAAI,CAAC,MAAM,CAAC,QAAQ,EAAE;MACrC,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,QAAQ,GAAG,GAAG,CAAC;KACrC;;IAED,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;IAC9B,OAAO,MAAM,CAAC;GACf;EACD,IAAI,OAAO,CAAC;EACZ,IAAI,QAAQ,CAAC,QAAQ,IAAI,QAAQ,CAAC,QAAQ,KAAK,MAAM,CAAC,QAAQ,EAAE;;;;;;;;;IAS9D,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;MACvC,IAAI,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;MACjC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QACpC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;QAChB,MAAM,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;OACzB;MACD,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;MAC9B,OAAO,MAAM,CAAC;KACf;;IAED,MAAM,CAAC,QAAQ,GAAG,QAAQ,CAAC,QAAQ,CAAC;IACpC,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,gBAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE;MAC1D,OAAO,GAAG,CAAC,QAAQ,CAAC,QAAQ,IAAI,EAAE,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;MAC/C,OAAO,OAAO,CAAC,MAAM,IAAI,EAAE,QAAQ,CAAC,IAAI,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;MAC7D,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC,IAAI,GAAG,EAAE,CAAC;MACvC,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,QAAQ,CAAC,QAAQ,GAAG,EAAE,CAAC;MAC/C,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;MAC3C,IAAI,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;MAC5C,MAAM,CAAC,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KACrC,MAAM;MACL,MAAM,CAAC,QAAQ,GAAG,QAAQ,CAAC,QAAQ,CAAC;KACrC;IACD,MAAM,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;IAChC,MAAM,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;IAC9B,MAAM,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,IAAI,EAAE,CAAC;IAClC,MAAM,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;IAC5B,MAAM,CAAC,QAAQ,GAAG,QAAQ,CAAC,QAAQ,IAAI,QAAQ,CAAC,IAAI,CAAC;IACrD,MAAM,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;;IAE5B,IAAI,MAAM,CAAC,QAAQ,IAAI,MAAM,CAAC,MAAM,EAAE;MACpC,IAAI,CAAC,GAAG,MAAM,CAAC,QAAQ,IAAI,EAAE,CAAC;MAC9B,IAAI,CAAC,GAAG,MAAM,CAAC,MAAM,IAAI,EAAE,CAAC;MAC5B,MAAM,CAAC,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC;KACrB;IACD,MAAM,CAAC,OAAO,GAAG,MAAM,CAAC,OAAO,IAAI,QAAQ,CAAC,OAAO,CAAC;IACpD,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;IAC9B,OAAO,MAAM,CAAC;GACf;;EAED,IAAI,WAAW,IAAI,MAAM,CAAC,QAAQ,IAAI,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC;IACtE,QAAQ;MACN,QAAQ,CAAC,IAAI;MACb,QAAQ,CAAC,QAAQ,IAAI,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG;KACzD;IACD,UAAU,IAAI,QAAQ,IAAI,WAAW;OAClC,MAAM,CAAC,IAAI,IAAI,QAAQ,CAAC,QAAQ,CAAC,CAAC;IACrC,aAAa,GAAG,UAAU;IAC1B,OAAO,GAAG,MAAM,CAAC,QAAQ,IAAI,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,EAAE;IAC7D,SAAS,GAAG,MAAM,CAAC,QAAQ,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;EACnE,OAAO,GAAG,QAAQ,CAAC,QAAQ,IAAI,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;;;;;;EAMlE,IAAI,SAAS,EAAE;IACb,MAAM,CAAC,QAAQ,GAAG,EAAE,CAAC;IACrB,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;IACnB,IAAI,MAAM,CAAC,IAAI,EAAE;MACf,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,IAAI,CAAC;WAC3C,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;KACnC;IACD,MAAM,CAAC,IAAI,GAAG,EAAE,CAAC;IACjB,IAAI,QAAQ,CAAC,QAAQ,EAAE;MACrB,QAAQ,CAAC,QAAQ,GAAG,IAAI,CAAC;MACzB,QAAQ,CAAC,IAAI,GAAG,IAAI,CAAC;MACrB,IAAI,QAAQ,CAAC,IAAI,EAAE;QACjB,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,IAAI,CAAC;aAC7C,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;OACrC;MACD,QAAQ,CAAC,IAAI,GAAG,IAAI,CAAC;KACtB;IACD,UAAU,GAAG,UAAU,KAAK,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC;GACrE;EACD,IAAI,UAAU,CAAC;EACf,IAAI,QAAQ,EAAE;;IAEZ,MAAM,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC,IAAI,KAAK,EAAE;MAClD,QAAQ,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;IAC9B,MAAM,CAAC,QAAQ,GAAG,CAAC,QAAQ,CAAC,QAAQ,IAAI,QAAQ,CAAC,QAAQ,KAAK,EAAE;MAC9D,QAAQ,CAAC,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC;IACtC,MAAM,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;IAChC,MAAM,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;IAC9B,OAAO,GAAG,OAAO,CAAC;;GAEnB,MAAM,IAAI,OAAO,CAAC,MAAM,EAAE;;;IAGzB,IAAI,CAAC,OAAO,EAAE,OAAO,GAAG,EAAE,CAAC;IAC3B,OAAO,CAAC,GAAG,EAAE,CAAC;IACd,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAClC,MAAM,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;IAChC,MAAM,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;GAC/B,MAAM,IAAI,CAAC,iBAAiB,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;;;;IAI9C,IAAI,SAAS,EAAE;MACb,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC,IAAI,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC;;;;MAIhD,UAAU,GAAG,MAAM,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC;QACtD,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;MACjC,IAAI,UAAU,EAAE;QACd,MAAM,CAAC,IAAI,GAAG,UAAU,CAAC,KAAK,EAAE,CAAC;QACjC,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,QAAQ,GAAG,UAAU,CAAC,KAAK,EAAE,CAAC;OACpD;KACF;IACD,MAAM,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;IAChC,MAAM,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;;IAE9B,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE;MACtD,MAAM,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC,QAAQ,GAAG,EAAE;SAClD,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;KACxC;IACD,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;IAC9B,OAAO,MAAM,CAAC;GACf;;EAED,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE;;;IAGnB,MAAM,CAAC,QAAQ,GAAG,IAAI,CAAC;;IAEvB,IAAI,MAAM,CAAC,MAAM,EAAE;MACjB,MAAM,CAAC,IAAI,GAAG,GAAG,GAAG,MAAM,CAAC,MAAM,CAAC;KACnC,MAAM;MACL,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;KACpB;IACD,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;IAC9B,OAAO,MAAM,CAAC;GACf;;;;;EAKD,IAAI,IAAI,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;EAChC,IAAI,gBAAgB;IAClB,CAAC,MAAM,CAAC,IAAI,IAAI,QAAQ,CAAC,IAAI,IAAI,OAAO,CAAC,MAAM,GAAG,CAAC;KAClD,IAAI,KAAK,GAAG,IAAI,IAAI,KAAK,IAAI,CAAC,IAAI,IAAI,KAAK,EAAE,CAAC,CAAC;;;;EAIlD,IAAI,EAAE,GAAG,CAAC,CAAC;EACX,KAAK,IAAI,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE;IACxC,IAAI,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;IAClB,IAAI,IAAI,KAAK,GAAG,EAAE;MAChB,OAAO,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;KACtB,MAAM,IAAI,IAAI,KAAK,IAAI,EAAE;MACxB,OAAO,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;MACrB,EAAE,EAAE,CAAC;KACN,MAAM,IAAI,EAAE,EAAE;MACb,OAAO,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;MACrB,EAAE,EAAE,CAAC;KACN;GACF;;;EAGD,IAAI,CAAC,UAAU,IAAI,CAAC,aAAa,EAAE;IACjC,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE;MACf,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;KACvB;GACF;;EAED,IAAI,UAAU,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE;KAChC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC,EAAE;IAC/C,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;GACrB;;EAED,IAAI,gBAAgB,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC,EAAE;IAC9D,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;GAClB;;EAED,IAAI,UAAU,GAAG,OAAO,CAAC,CAAC,CAAC,KAAK,EAAE;KAC/B,OAAO,CAAC,CAAC,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC;;;EAG/C,IAAI,SAAS,EAAE;IACb,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC,IAAI,GAAG,UAAU,GAAG,EAAE;MAC7C,OAAO,CAAC,MAAM,GAAG,OAAO,CAAC,KAAK,EAAE,GAAG,EAAE,CAAC;;;;IAIxC,UAAU,GAAG,MAAM,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC;MACtD,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;IACjC,IAAI,UAAU,EAAE;MACd,MAAM,CAAC,IAAI,GAAG,UAAU,CAAC,KAAK,EAAE,CAAC;MACjC,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,QAAQ,GAAG,UAAU,CAAC,KAAK,EAAE,CAAC;KACpD;GACF;;EAED,UAAU,GAAG,UAAU,KAAK,MAAM,CAAC,IAAI,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC;;EAE3D,IAAI,UAAU,IAAI,CAAC,UAAU,EAAE;IAC7B,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;GACrB;;EAED,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE;IACnB,MAAM,CAAC,QAAQ,GAAG,IAAI,CAAC;IACvB,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;GACpB,MAAM;IACL,MAAM,CAAC,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;GACrC;;;EAGD,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE;IACtD,MAAM,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC,QAAQ,GAAG,EAAE;OAClD,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;GACxC;EACD,MAAM,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC;EAC3C,MAAM,CAAC,OAAO,GAAG,MAAM,CAAC,OAAO,IAAI,QAAQ,CAAC,OAAO,CAAC;EACpD,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;EAC9B,OAAO,MAAM,CAAC;CACf,CAAC;;AAEF,GAAG,CAAC,SAAS,CAAC,SAAS,GAAG,WAAW;EACnC,OAAO,SAAS,CAAC,IAAI,CAAC,CAAC;CACxB,CAAC;;AAEF,SAAS,SAAS,CAAC,IAAI,EAAE;EACvB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;EACrB,IAAI,IAAI,GAAG,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;EAClC,IAAI,IAAI,EAAE;IACR,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;IACf,IAAI,IAAI,KAAK,GAAG,EAAE;MAChB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;KAC5B;IACD,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;GAClD;EACD,IAAI,IAAI,EAAE,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;CAChC;;ACxuBD;;;;;;;;;;;;;;;;;;;AAmBA,IAAI,GAAG,GAAG;IACN,YAAY,EAAE,CAAC;IACf,KAAK,EAAE,CAAC;IACR,MAAM,EAAE,CAAC;CACZ,CAAC;;;;;;;;;;;;;AAaF,IAAI,aAAa,GAAG;IAChB,OAAO,KAAK,CAAC;IACb,KAAK,OAAO,CAAC;IACb,MAAM,MAAM,CAAC;CAChB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2CF,IAAI,WAAW,GAAG;IACd,MAAM,UAAU,CAAC;IACjB,GAAG,aAAa,CAAC;IACjB,QAAQ,QAAQ,CAAC;IACjB,MAAM,UAAU,CAAC;IACjB,OAAO,SAAS,CAAC;IACjB,MAAM,UAAU,CAAC;IACjB,OAAO,SAAS,CAAC;IACjB,WAAW,KAAK,CAAC;IACjB,UAAU,MAAM,CAAC;IACjB,UAAU,MAAM,CAAC;IACjB,UAAU,MAAM,EAAE;IAClB,UAAU,MAAM,EAAE;IAClB,SAAS,OAAO,EAAE;IAClB,GAAG,aAAa,EAAE;IAClB,UAAU,MAAM,EAAE;IAClB,KAAK,WAAW,EAAE;IAClB,UAAU,MAAM,EAAE;IAClB,UAAU,MAAM,EAAE;IAClB,OAAO,SAAS,EAAE;IAClB,UAAU,MAAM,EAAE;IAClB,IAAI,YAAY,EAAE;;IAElB,QAAQ,QAAQ,CAAC;IACjB,MAAM,UAAU,EAAE;IAClB,OAAO,SAAS,EAAE;IAClB,QAAQ,QAAQ,EAAE;IAClB,QAAQ,QAAQ,EAAE;IAClB,MAAM,UAAU,EAAE;IAClB,OAAO,SAAS,EAAE;IAClB,QAAQ,QAAQ,EAAE;IAClB,KAAK,WAAW,EAAE;IAClB,QAAQ,QAAQ,EAAE;CACrB,CAAC;;;;;;;;;;;;;;;;;;AAkBF,IAAI,UAAU,GAAG;IACb,MAAM,UAAU,CAAC;IACjB,KAAK,WAAW,CAAC;IACjB,SAAS,OAAO,CAAC;IACjB,UAAU,MAAM,CAAC;IACjB,SAAS,OAAO,CAAC;IACjB,cAAc,EAAE,CAAC;IACjB,YAAY,IAAI,CAAC;CACpB,CAAC;;;;;;;;;;;;;;;;;AAiBF,IAAI,OAAO,GAAG;IACV,IAAI,cAAc,IAAI;IACtB,GAAG,eAAe,IAAI;IACtB,KAAK,aAAa,IAAI;IACtB,SAAS,SAAS,IAAI;IACtB,eAAe,GAAG,IAAI;IACtB,eAAe,GAAG,IAAI;IACtB,aAAa,KAAK,KAAK;CAC1B,CAAC;;;;;;;;;;;;;;;;;;;AAmBF,IAAI,OAAO,GAAG;IACV,UAAU,EAAE,IAAI;IAChB,gBAAgB,EAAE,KAAK;IACvB,gBAAgB,EAAE,KAAK;IACvB,2BAA2B,EAAE,KAAK;IAClC,2BAA2B,EAAE,KAAK;IAClC,2BAA2B,EAAE,KAAK;IAClC,2BAA2B,EAAE,KAAK;IAClC,2BAA2B,EAAE,KAAK;IAClC,2BAA2B,EAAE,KAAK;CACrC,CAAC;;;;;;;;;;;;;;;;;AAiBF,IAAI,KAAK,GAAG;IACR,aAAa,EAAE,IAAI;IACnB,cAAc,EAAE,IAAI;IACpB,oBAAoB,EAAE,KAAK;IAC3B,sBAAsB,EAAE,KAAK;IAC7B,sBAAsB,EAAE,KAAK;IAC7B,KAAK,EAAE,IAAI;IACX,UAAU,EAAE,KAAK;CACpB,CAAC;;;;;;;;;;;;;;;AAeF,IAAI,WAAW,GAAG;IACd,MAAM,MAAM,CAAC;IACb,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;;;;;;;;;;;;;;AAoBF,IAAI,UAAU,GAAG;IACb,KAAK,YAAY,KAAK;IACtB,MAAM,WAAW,KAAK;IACtB,eAAe,EAAE,KAAK;CACzB,CAAC;;;;;;;;;;;;;;;;;;;;AAoBF,IAAI,YAAY,GAAG;IACf,GAAG,EAAE,CAAC;IACN,IAAI,EAAE,CAAC;IACP,EAAE,EAAE,CAAC;CACR,CAAC;;;;;;;;;;;;;;;;;;;;;AAqBF,IAAI,QAAQ,GAAG;IACX,IAAI,YAAY,CAAC;IACjB,MAAM,UAAU,CAAC;CACpB,CAAC;;;;;;;;;;;;;;AAcF,IAAI,SAAS,GAAG;IACZ,GAAG,EAAE,MAAM;IACX,MAAM,EAAE,SAAS;IACjB,IAAI,EAAE,OAAO;CAChB,CAAC;;ACzUF;;;;;;;AAOA,AAOA;;;;;;;;;;;AAWA,QAAQ,CAAC,aAAa,GAAG,cAAc,CAAC;;;;;;;;;;;;;AAaxC,QAAQ,CAAC,gCAAgC,GAAG,IAAI,CAAC;;AAEjD,IAAI,SAAS,GAAG,KAAK,CAAC;AACtB,IAAI,OAAO,GAAG,OAAO,CAAC;AACtB,AAWA;;;;;;;;;;;AAWA,SAAS,QAAQ,CAAC,IAAI;AACtB;IACI,IAAI,SAAS;IACb;QACI,OAAO;KACV;;IAED,IAAI,SAAS,CAAC,SAAS,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;IAC5D;QACI,IAAI,IAAI,GAAG;aACN,qBAAqB,GAAG,OAAO,GAAG,OAAO,GAAG,IAAI,GAAG,wDAAwD;YAC5G,qCAAqC;YACrC,qCAAqC;YACrC,qDAAqD;YACrD,qCAAqC;YACrC,qCAAqC;YACrC,qCAAqC;YACrC,kDAAkD;YAClD,kDAAkD;YAClD,kDAAkD,EAAE,CAAC;;QAEzD,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;KAC3C;SACI,IAAI,MAAM,CAAC,OAAO;IACvB;QACI,MAAM,CAAC,OAAO,CAAC,GAAG,EAAE,SAAS,GAAG,OAAO,GAAG,KAAK,GAAG,IAAI,GAAG,2BAA2B,EAAE,CAAC;KAC1F;;IAED,SAAS,GAAG,IAAI,CAAC;CACpB;;AAED,IAAI,SAAS,CAAC;;;;;;;;;AASd,SAAS,gBAAgB;AACzB;IACI,IAAI,OAAO,SAAS,KAAK,WAAW;IACpC;QACI,SAAS,GAAG,CAAC,SAAS,SAAS;QAC/B;YACI,IAAI,cAAc,GAAG;gBACjB,OAAO,EAAE,IAAI;gBACb,4BAA4B,EAAE,QAAQ,CAAC,gCAAgC;aAC1E,CAAC;;YAEF;YACA;gBACI,IAAI,CAAC,MAAM,CAAC,qBAAqB;gBACjC;oBACI,OAAO,KAAK,CAAC;iBAChB;;gBAED,IAAI,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;gBAC9C,IAAI,EAAE,GAAG,MAAM,CAAC,UAAU,CAAC,OAAO,EAAE,cAAc,CAAC;uBAC5C,MAAM,CAAC,UAAU,CAAC,oBAAoB,EAAE,cAAc,CAAC,CAAC;;gBAE/D,IAAI,OAAO,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,CAAC,oBAAoB,EAAE,CAAC,OAAO,CAAC,CAAC;;gBAE1D,IAAI,EAAE;gBACN;oBACI,IAAI,WAAW,GAAG,EAAE,CAAC,YAAY,CAAC,oBAAoB,CAAC,CAAC;;oBAExD,IAAI,WAAW;oBACf;wBACI,WAAW,CAAC,WAAW,EAAE,CAAC;qBAC7B;iBACJ;;gBAED,EAAE,GAAG,IAAI,CAAC;;gBAEV,OAAO,OAAO,CAAC;aAClB;YACD,OAAO,CAAC;YACR;gBACI,OAAO,KAAK,CAAC;aAChB;SACJ,GAAG,CAAC;KACR;;IAED,OAAO,SAAS,CAAC;CACpB;;;;;;;;;;;;;AAaD,SAAS,OAAO,CAAC,GAAG,EAAE,GAAG;AACzB;IACI,GAAG,GAAG,GAAG,IAAI,EAAE,CAAC;;IAEhB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,IAAI,IAAI,IAAI,GAAG,CAAC;IACpC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI,IAAI,IAAI,GAAG,CAAC;IACnC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,GAAG,IAAI,IAAI,GAAG,CAAC;;IAE5B,OAAO,GAAG,CAAC;CACd;;;;;;;;;;;;AAYD,SAAS,UAAU,CAAC,GAAG;AACvB;IACI,GAAG,GAAG,GAAG,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;IACvB,GAAG,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,GAAG,GAAG,CAAC;;IAE/C,QAAQ,GAAG,GAAG,GAAG,EAAE;CACtB;;;;;;;;;;;;AAYD,SAAS,UAAU,CAAC,MAAM;AAC1B;IACI,IAAI,OAAO,MAAM,KAAK,QAAQ,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG;IACnD;QACI,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;KAC7B;;IAED,OAAO,QAAQ,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;CAC/B;AACD,AAeA;;;;;;;;;;AAUA,SAAS,0BAA0B;AACnC;IACI,IAAI,EAAE,GAAG,EAAE,CAAC;IACZ,IAAI,GAAG,GAAG,EAAE,CAAC;;IAEb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;IAC3B;QACI,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QACV,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;KACd;;IAED,EAAE,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,WAAW,CAAC,MAAM,CAAC;IAChD,EAAE,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,WAAW,CAAC,GAAG,CAAC;IAC1C,EAAE,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,WAAW,CAAC,MAAM,CAAC;;IAEhD,GAAG,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,WAAW,CAAC,UAAU,CAAC;IACjD,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,WAAW,CAAC,OAAO,CAAC;IAC3C,GAAG,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,WAAW,CAAC,UAAU,CAAC;;IAEjD,IAAI,KAAK,GAAG,EAAE,CAAC;;IAEf,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;IAChB,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;;IAEf,OAAO,KAAK,CAAC;CAChB;;;;;;;;AAQD,IAAI,oBAAoB,GAAG,0BAA0B,EAAE,CAAC;;;;;;;;;;;AAWxD,SAAS,gBAAgB,CAAC,SAAS,EAAE,aAAa;AAClD;IACI,OAAO,oBAAoB,CAAC,aAAa,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;CACjE;;;;;;;;;;;;;AAaD,SAAS,eAAe,CAAC,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,WAAW;AACrD;IACI,GAAG,GAAG,GAAG,IAAI,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;IACjC,IAAI,WAAW,IAAI,WAAW,KAAK,SAAS;IAC5C;QACI,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;QACxB,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;QACxB,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;KAC3B;;IAED;QACI,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;QAChB,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;QAChB,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;KACnB;IACD,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;;IAEf,OAAO,GAAG,CAAC;CACd;;;;;;;;;;;AAWD,SAAS,eAAe,CAAC,IAAI,EAAE,KAAK;AACpC;IACI,IAAI,KAAK,KAAK,GAAG;IACjB;QACI,OAAO,CAAC,KAAK,GAAG,GAAG,IAAI,EAAE,IAAI,IAAI,CAAC;KACrC;IACD,IAAI,KAAK,KAAK,GAAG;IACjB;QACI,OAAO,CAAC,CAAC;KACZ;IACD,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC,CAAC;IAC9B,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC;IAC7B,IAAI,CAAC,IAAI,IAAI,GAAG,IAAI,CAAC,CAAC;;IAEtB,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,GAAG,IAAI,CAAC,CAAC;IAC5B,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,GAAG,IAAI,CAAC,CAAC;IAC5B,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,GAAG,IAAI,CAAC,CAAC;;IAE5B,OAAO,CAAC,KAAK,GAAG,GAAG,IAAI,EAAE,KAAK,CAAC,IAAI,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;CACzD;;;;;;;;;;;;;AAaD,SAAS,qBAAqB,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,WAAW;AAC5D;IACI,GAAG,GAAG,GAAG,IAAI,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;IACjC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,IAAI,KAAK,CAAC;IACvC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,KAAK,CAAC;IACtC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,GAAG,IAAI,IAAI,KAAK,CAAC;IAC/B,IAAI,WAAW,IAAI,WAAW,KAAK,SAAS;IAC5C;QACI,GAAG,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC;QAChB,GAAG,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC;QAChB,GAAG,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC;KACnB;IACD,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;;IAEf,OAAO,GAAG,CAAC;CACd;;;;;;;;;;;AAWD,SAAS,qBAAqB,CAAC,IAAI,EAAE,SAAS;AAC9C;IACI,KAAK,SAAS,KAAK,KAAK,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC;;;IAG7C,IAAI,YAAY,GAAG,IAAI,GAAG,CAAC,CAAC;;IAE5B,SAAS,GAAG,SAAS,IAAI,IAAI,WAAW,CAAC,YAAY,CAAC,CAAC;;IAEvD,IAAI,SAAS,CAAC,MAAM,KAAK,YAAY;IACrC;QACI,MAAM,IAAI,KAAK,EAAE,sCAAsC,IAAI,SAAS,CAAC,MAAM,CAAC,GAAG,gBAAgB,GAAG,YAAY,EAAE,CAAC;KACpH;;;IAGD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,YAAY,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC;IACvD;QACI,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QACzB,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QACzB,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QACzB,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QACzB,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QACzB,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;KAC5B;;IAED,OAAO,SAAS,CAAC;CACpB;;;;;;;;;;;AAWD,SAAS,WAAW,CAAC,GAAG,EAAE,QAAQ,EAAE,WAAW;AAC/C;IACI,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;IACxB,IAAI,CAAC,CAAC;;IAEN,IAAI,QAAQ,IAAI,MAAM,IAAI,WAAW,KAAK,CAAC;IAC3C;QACI,OAAO;KACV;;IAED,WAAW,IAAI,QAAQ,GAAG,WAAW,GAAG,MAAM,GAAG,MAAM,GAAG,QAAQ,GAAG,WAAW,CAAC,CAAC;;IAElF,IAAI,GAAG,GAAG,MAAM,GAAG,WAAW,CAAC;;IAE/B,KAAK,CAAC,GAAG,QAAQ,EAAE,CAAC,GAAG,GAAG,EAAE,EAAE,CAAC;IAC/B;QACI,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,WAAW,CAAC,CAAC;KACjC;;IAED,GAAG,CAAC,MAAM,GAAG,GAAG,CAAC;CACpB;;AAED,IAAI,OAAO,GAAG,CAAC,CAAC;;;;;;;;;AAShB,SAAS,GAAG;AACZ;IACI,OAAO,EAAE,OAAO,CAAC;CACpB;;;;;;;;;;AAUD,SAASC,MAAI,CAAC,CAAC;AACf;IACI,IAAI,CAAC,KAAK,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC,EAAE;;IAE1B,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;CACzB;;;;;;;;;;;;AAYD,SAAS,QAAQ,CAAC,CAAC;AACnB;IACI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IACb,EAAE,CAAC,CAAC;IACJ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IACb,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IACb,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IACb,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IACb,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC;;IAEd,OAAO,CAAC,GAAG,CAAC,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,MAAM,CAAC,CAAC;AACjB;IACI,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;CAClC;;;;;;;;;;AAUD,SAAS,IAAI,CAAC,CAAC;AACf;IACI,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,KAAK,CAAC,CAAC;;IAE1B,CAAC,MAAM,CAAC,CAAC;;IAET,IAAI,KAAK,GAAG,CAAC,CAAC,GAAG,IAAI,KAAK,CAAC,CAAC;;IAE5B,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC;IACzB,KAAK,GAAG,CAAC,CAAC,GAAG,GAAG,KAAK,CAAC,CAAC;IACvB,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC;IACzB,KAAK,GAAG,CAAC,CAAC,GAAG,GAAG,KAAK,CAAC,CAAC;IACvB,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC;;IAEzB,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;CACvB;;;;;;;;;;AAUD,IAAI,YAAY,GAAG,EAAE,CAAC;;;;;;;;;;AAUtB,IAAI,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;;;;;;;;;;AAWvC,IAAI,gBAAgB,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;AAC3C,AAuCA;;;;;;;;;AASA,SAAS,UAAU,CAAC,MAAM;AAC1B;;;IAGI,IAAI,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC;IACzB,IAAI,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;;IAE3B,IAAI,OAAO,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;IACtC,IAAI,SAAS,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAC1D,IAAI,MAAM,GAAG,SAAS,CAAC,IAAI,CAAC;IAC5B,IAAI,GAAG,GAAG,MAAM,CAAC,MAAM,CAAC;;IAExB,IAAI,KAAK,GAAG;QACR,GAAG,EAAE,IAAI;QACT,IAAI,EAAE,IAAI;QACV,KAAK,EAAE,IAAI;QACX,MAAM,EAAE,IAAI;KACf,CAAC;IACF,IAAI,IAAI,GAAG,IAAI,CAAC;IAChB,IAAI,CAAC,CAAC;IACN,IAAI,CAAC,CAAC;IACN,IAAI,CAAC,CAAC;;IAEN,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC;IAC3B;QACI,IAAI,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC;QACvB;YACI,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,KAAK,CAAC;YACpB,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,IAAI,KAAK,CAAC,CAAC;;YAExB,IAAI,KAAK,CAAC,GAAG,KAAK,IAAI;YACtB;gBACI,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC;aACjB;;YAED,IAAI,KAAK,CAAC,IAAI,KAAK,IAAI;YACvB;gBACI,KAAK,CAAC,IAAI,GAAG,CAAC,CAAC;aAClB;iBACI,IAAI,CAAC,GAAG,KAAK,CAAC,IAAI;YACvB;gBACI,KAAK,CAAC,IAAI,GAAG,CAAC,CAAC;aAClB;;YAED,IAAI,KAAK,CAAC,KAAK,KAAK,IAAI;YACxB;gBACI,KAAK,CAAC,KAAK,GAAG,CAAC,GAAG,CAAC,CAAC;aACvB;iBACI,IAAI,KAAK,CAAC,KAAK,GAAG,CAAC;YACxB;gBACI,KAAK,CAAC,KAAK,GAAG,CAAC,GAAG,CAAC,CAAC;aACvB;;YAED,IAAI,KAAK,CAAC,MAAM,KAAK,IAAI;YACzB;gBACI,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;aACpB;iBACI,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC;YACzB;gBACI,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;aACpB;SACJ;KACJ;;IAED,IAAI,KAAK,CAAC,GAAG,KAAK,IAAI;IACtB;QACI,KAAK,GAAG,KAAK,CAAC,KAAK,GAAG,KAAK,CAAC,IAAI,CAAC;QACjC,MAAM,GAAG,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC;QACtC,IAAI,GAAG,OAAO,CAAC,YAAY,CAAC,KAAK,CAAC,IAAI,EAAE,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;KACrE;;IAED,OAAO;QACH,MAAM,EAAE,MAAM;QACd,KAAK,EAAE,KAAK;QACZ,IAAI,EAAE,IAAI;KACb,CAAC;CACL;;;;;;;;AAQD,IAAI,kBAAkB,GAAG,SAAS,kBAAkB,CAAC,KAAK,EAAE,MAAM,EAAE,UAAU;AAC9E;;;;;;IAMI,IAAI,CAAC,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;;;;;;IAO/C,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;IAE5C,IAAI,CAAC,UAAU,GAAG,UAAU,IAAI,QAAQ,CAAC,UAAU,CAAC;;IAEpD,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;CAC9B,CAAC;;AAEF,IAAI,kBAAkB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;AAO1F,kBAAkB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACnD;IACI,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IAC5C,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;CACvE,CAAC;;;;;;;;AAQF,kBAAkB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,KAAK,EAAE,MAAM;AACpE;IACI,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC;IAC5C,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC,UAAU,CAAC;CACjD,CAAC;;;;;;AAMF,kBAAkB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AACvD;IACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;CACtB,CAAC;;;;;;;AAOF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;AAC/B;IACI,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;CAC5B,CAAC;;AAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,GAAG;AAC5C;IACI,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,GAAG,CAAC;CAC3B,CAAC;;;;;;;AAOF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;CAC7B,CAAC;;AAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,GAAG;AAC7C;IACI,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,GAAG,CAAC;CAC5B,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;AAC5E,AAiDA;AACA,IAAI,UAAU,CAAC;;;;;;;;;;;;;AAaf,SAAS,oBAAoB,CAACC,KAAG,EAAE,GAAG;AACtC;IACI,KAAK,GAAG,KAAK,KAAK,CAAC,GAAG,GAAG,GAAG,MAAM,CAAC,QAAQ,CAAC;;;IAG5C,IAAIA,KAAG,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC;IAC9B;QACI,OAAO,EAAE,CAAC;KACb;;;IAGD,GAAG,GAAG,GAAG,IAAI,MAAM,CAAC,QAAQ,CAAC;;IAE7B,IAAI,CAAC,UAAU;IACf;QACI,UAAU,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;KAC5C;;;;;IAKD,UAAU,CAAC,IAAI,GAAGA,KAAG,CAAC;IACtBA,KAAG,GAAGC,GAAI,CAAC,KAAK,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;IAElC,IAAI,QAAQ,GAAG,CAAC,CAACD,KAAG,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,KAAK,EAAE,MAAMA,KAAG,CAAC,IAAI,KAAK,GAAG,CAAC,IAAI,CAAC,CAAC;;;IAGzE,IAAIA,KAAG,CAAC,QAAQ,KAAK,GAAG,CAAC,QAAQ,IAAI,CAAC,QAAQ,IAAIA,KAAG,CAAC,QAAQ,KAAK,GAAG,CAAC,QAAQ;IAC/E;QACI,OAAO,WAAW,CAAC;KACtB;;IAED,OAAO,EAAE,CAAC;CACb;;;;;;;;;;;;AAYD,SAAS,kBAAkB,CAAC,GAAG,EAAE,YAAY;AAC7C;IACI,IAAI,UAAU,GAAG,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;IAElD,IAAI,UAAU;IACd;QACI,OAAO,UAAU,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;KACpC;;IAED,OAAO,YAAY,KAAK,SAAS,GAAG,YAAY,GAAG,CAAC,CAAC;CACxD;;;AAGD,IAAI,QAAQ,GAAG,EAAE,CAAC;;;;;;;;;;;;;;AAclB,SAAS,WAAW,CAAC,OAAO,EAAE,OAAO,EAAE,WAAW;AAClD;IACI,KAAK,WAAW,KAAK,KAAK,CAAC,GAAG,WAAW,GAAG,CAAC,CAAC;;;IAG9C,IAAI,QAAQ,CAAC,OAAO,CAAC;IACrB;QACI,OAAO;KACV;;;IAGD,IAAI,KAAK,GAAG,IAAI,KAAK,EAAE,CAAC,KAAK,CAAC;;;IAG9B,IAAI,OAAO,KAAK,KAAK,WAAW;IAChC;QACI,OAAO,CAAC,IAAI,CAAC,8BAA8B,GAAG,OAAO,GAAG,sBAAsB,GAAG,OAAO,EAAE,CAAC;KAC9F;;IAED;;QAEI,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAEzD,IAAI,OAAO,CAAC,cAAc;QAC1B;YACI,OAAO,CAAC,cAAc;gBAClB,oCAAoC;gBACpC,kCAAkC;gBAClC,qDAAqD;iBACpD,OAAO,GAAG,sBAAsB,GAAG,OAAO;aAC9C,CAAC;YACF,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACpB,OAAO,CAAC,QAAQ,EAAE,CAAC;SACtB;;QAED;YACI,OAAO,CAAC,IAAI,CAAC,8BAA8B,GAAG,OAAO,GAAG,sBAAsB,GAAG,OAAO,EAAE,CAAC;YAC3F,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SACvB;KACJ;;;IAGD,QAAQ,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC;CAC5B;;AC/7BD;;;;;;;;;;;;;;AAcA,IAAI,KAAK,GAAG,SAAS,KAAK,CAAC,CAAC,EAAE,CAAC;AAC/B;IACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;;;;;;IAM1B,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;CACd,CAAC;;;;;;;AAOF,KAAK,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACtC;IACI,OAAO,IAAI,KAAK,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;CACpC,CAAC;;;;;;;;AAQF,KAAK,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC;AAC/C;IACI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;;IAEnB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,KAAK,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,CAAC;AAC3C;IACI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;;IAEtB,OAAO,CAAC,CAAC;CACZ,CAAC;;;;;;;;AAQF,KAAK,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,CAAC;AAC3C;IACI,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,CAAC;CAC/C,CAAC;;;;;;;;;AASF,KAAK,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;AACxC;IACI,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;IAChB,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;CAC1C,CAAC;;;;;;;;;;;AAWF,IAAI,eAAe,GAAG,SAAS,eAAe,CAAC,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC;AAC9D;IACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;;IAE1B,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;IACZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;IAEZ,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;IACb,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;CACtB,CAAC;;AAEF,IAAIE,oBAAkB,GAAG,EAAE,CAAC,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;;;;AAYjF,eAAe,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,EAAE,EAAE,KAAK;AAC3D;QACQ,KAAK,EAAE,KAAK,KAAK,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC;QAC/B,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC;;IAEzC,IAAI,GAAG,GAAG,EAAE,IAAI,IAAI,CAAC,EAAE,CAAC;IACxB,IAAI,MAAM,GAAG,KAAK,IAAI,IAAI,CAAC,KAAK,CAAC;;IAEjC,OAAO,IAAI,eAAe,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC;CAC7D,CAAC;;;;;;;;;AASF,eAAe,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC;AAClD;IACI,IAAI,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC;;IAEnC,IAAI,IAAI,CAAC,EAAE,KAAK,EAAE,IAAI,IAAI,CAAC,EAAE,KAAK,EAAE;IACpC;QACI,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAC5B;CACJ,CAAC;;;;;;;;AAQF,eAAe,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC;AACzD;IACI,IAAI,IAAI,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC;IACtC;QACI,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC;QACd,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC;QACd,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAC5B;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,eAAe,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,CAAC;AACrD;IACI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC;;IAExB,OAAO,CAAC,CAAC;CACZ,CAAC;;;;;;;;AAQF,eAAe,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,CAAC;AACrD;IACI,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,EAAE,CAAC,CAAC;CACjD,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG;AAC3B;IACI,OAAO,IAAI,CAAC,EAAE,CAAC;CAClB,CAAC;;AAEFA,oBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG,UAAU,KAAK;AAC1C;IACI,IAAI,IAAI,CAAC,EAAE,KAAK,KAAK;IACrB;QACI,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC;QAChB,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAC5B;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG;AAC3B;IACI,OAAO,IAAI,CAAC,EAAE,CAAC;CAClB,CAAC;;AAEFA,oBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG,UAAU,KAAK;AAC1C;IACI,IAAI,IAAI,CAAC,EAAE,KAAK,KAAK;IACrB;QACI,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC;QAChB,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAC5B;CACJ,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,eAAe,CAAC,SAAS,EAAEA,oBAAkB,EAAE,CAAC;;;;;;;;;;;;;;;AAezE,IAAI,IAAI,GAAG,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;;;AASvB,IAAI,UAAU,GAAG,GAAG,GAAG,IAAI,CAAC,EAAE,CAAC;;;;;;;;;AAS/B,IAAI,UAAU,GAAG,IAAI,CAAC,EAAE,GAAG,GAAG,CAAC;;;;;;;;;;;;;;;;AAgB/B,IAAI,MAAM,GAAG;IACT,IAAI,EAAE,CAAC;IACP,IAAI,EAAE,CAAC;IACP,IAAI,EAAE,CAAC;IACP,IAAI,EAAE,CAAC;IACP,IAAI,EAAE,CAAC;CACV,CAAC;;;;;;;;;;;;;;AAcF,IAAI,MAAM,GAAG,SAAS,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE;AAC/C;IACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,EAAE,KAAK,KAAK,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;IAC5B,KAAK,EAAE,KAAK,KAAK,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;;;;;;IAM5B,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;;;;;;IAMb,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;;IAEb,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;CACrB,CAAC;;AAEF,IAAI,eAAe,GAAG,EAAE,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,WAAW,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;;;;;;AAc/F,MAAM,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,KAAK;AACtD;IACI,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IACnB,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;CACtB,CAAC;;;;;;;;;;;;;;AAcF,MAAM,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE;AACvD;IACI,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;IACb,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;;IAEb,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;AASF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,SAAS,EAAE,GAAG;AAC3D;IACI,IAAI,CAAC,IAAI,CAAC,KAAK;IACf;QACI,IAAI,CAAC,KAAK,GAAG,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;KACpC;;IAED,IAAI,KAAK,GAAG,GAAG,IAAI,IAAI,CAAC,KAAK,CAAC;;IAE9B,IAAI,SAAS;IACb;QACI,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QACb,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QACb,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;QACnB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;QACnB,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;KAChB;;IAED;QACI,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;QACnB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAClB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;QACnB,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QACb,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QACb,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;KAChB;;IAED,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;;;;AAUF,MAAM,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,GAAG,EAAE,MAAM;AACpD;IACI,MAAM,GAAG,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;;IAE/B,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;IACd,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;;IAEd,MAAM,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IACjD,MAAM,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;;IAEjD,OAAO,MAAM,CAAC;CACjB,CAAC;;;;;;;;;;AAUF,MAAM,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,GAAG,EAAE,MAAM;AAClE;IACI,MAAM,GAAG,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;;IAE/B,IAAI,EAAE,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;;IAEtD,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;IACd,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;;IAEd,MAAM,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,CAAC,KAAK,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;IACrG,MAAM,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,CAAC,KAAK,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;;IAEtG,OAAO,MAAM,CAAC;CACjB,CAAC;;;;;;;;;AASF,MAAM,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,CAAC,EAAE,CAAC;AACrD;IACI,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC;IACb,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC;;IAEb,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;AASF,MAAM,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,CAAC,EAAE,CAAC;AAC7C;IACI,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC;IACZ,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC;IACZ,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC;IACZ,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC;IACZ,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC;IACb,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC;;IAEb,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,KAAK;AAChD;IACI,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;IAC1B,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;;IAE1B,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,GAAG,GAAG,IAAI,CAAC,EAAE,CAAC;;IAElB,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,IAAI,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;IACrC,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,IAAI,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;IACrC,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,IAAI,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;IACrC,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,IAAI,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;IACrC,IAAI,CAAC,EAAE,GAAG,CAAC,GAAG,GAAG,GAAG,KAAK,IAAI,CAAC,EAAE,GAAG,GAAG,CAAC,CAAC;IACxC,IAAI,CAAC,EAAE,GAAG,CAAC,GAAG,GAAG,GAAG,KAAK,IAAI,CAAC,EAAE,GAAG,GAAG,CAAC,CAAC;;IAExC,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,MAAM;AACjD;IACI,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;;IAEhB,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,KAAK,MAAM,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC;IAC3C,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,KAAK,MAAM,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC;IAC3C,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,KAAK,MAAM,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC;IAC3C,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,KAAK,MAAM,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC;;IAE3C,IAAI,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,KAAK,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IACxD,IAAI,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,KAAK,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;;IAExD,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;;;;;;;;AAgBF,MAAM,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK;AACnH;IACI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,QAAQ,GAAG,KAAK,CAAC,GAAG,MAAM,CAAC;IAC7C,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,QAAQ,GAAG,KAAK,CAAC,GAAG,MAAM,CAAC;IAC7C,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,QAAQ,GAAG,KAAK,CAAC,GAAG,MAAM,CAAC;IAC9C,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,QAAQ,GAAG,KAAK,CAAC,GAAG,MAAM,CAAC;;IAE7C,IAAI,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC,KAAK,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;IACtD,IAAI,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC,KAAK,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;;IAEtD,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,MAAM;AACnD;IACI,IAAI,GAAG,GAAG,IAAI,CAAC,EAAE,CAAC;;IAElB,IAAI,MAAM,CAAC,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,CAAC,KAAK,CAAC;IACxE;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;QAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;;QAEhB,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;QAC/C,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;QAC/C,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;QAC/C,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;KAClD;;IAED,IAAI,CAAC,EAAE,GAAG,CAAC,GAAG,GAAG,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,EAAE,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC;IAC9D,IAAI,CAAC,EAAE,GAAG,CAAC,GAAG,GAAG,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,EAAE,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC;;IAE9D,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,SAAS;AAC1D;;IAEI,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IACf,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IACf,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IACf,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;;IAEf,IAAI,KAAK,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IAC/B,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;IAE7B,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,GAAG,KAAK,CAAC,CAAC;;IAEpC,IAAI,KAAK,GAAG,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,IAAI,GAAG,KAAK,CAAC,GAAG,OAAO;IACvD;QACI,SAAS,CAAC,QAAQ,GAAG,KAAK,CAAC;QAC3B,SAAS,CAAC,IAAI,CAAC,CAAC,GAAG,SAAS,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;KAC3C;;IAED;QACI,SAAS,CAAC,QAAQ,GAAG,CAAC,CAAC;QACvB,SAAS,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC;QACzB,SAAS,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC;KAC5B;;;IAGD,SAAS,CAAC,KAAK,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;IACjD,SAAS,CAAC,KAAK,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;;;IAGjD,SAAS,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC/B,SAAS,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;;IAE/B,OAAO,SAAS,CAAC;CACpB,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;AACzC;IACI,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,GAAG,GAAG,IAAI,CAAC,EAAE,CAAC;IAClB,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;;IAE9B,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;IAChB,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC;IACjB,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC;IACjB,IAAI,CAAC,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;IAChB,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,KAAK,EAAE,GAAG,GAAG,CAAC,IAAI,CAAC,CAAC;IAC5C,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,KAAK,EAAE,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;;IAE7C,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ;AAC7C;IACI,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;IACZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;IAEZ,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACvC;IACI,IAAI,MAAM,GAAG,IAAI,MAAM,EAAE,CAAC;;IAE1B,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;IACpB,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;;IAEpB,OAAO,MAAM,CAAC;CACjB,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,MAAM;AACjD;IACI,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IAClB,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;IACpB,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;;IAEpB,OAAO,MAAM,CAAC;CACjB,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,MAAM;AACrD;IACI,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IAClB,IAAI,CAAC,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;IACpB,IAAI,CAAC,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;;IAEpB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;AASF,eAAe,CAAC,QAAQ,CAAC,GAAG,GAAG;AAC/B;IACI,OAAO,IAAI,MAAM,EAAE,CAAC;CACvB,CAAC;;;;;;;;;AASF,eAAe,CAAC,WAAW,CAAC,GAAG,GAAG;AAClC;IACI,OAAO,IAAI,MAAM,EAAE,CAAC;CACvB,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,MAAM,EAAE,eAAe,EAAE,CAAC;;;;;;;;;;AAUnD,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;AAChE,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;AAChE,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;AAChE,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;;;;;;;;;AAShE,IAAI,cAAc,GAAG,EAAE,CAAC;;;;;;;;AAQxB,IAAI,gBAAgB,GAAG,EAAE,CAAC;;;;;AAK1B,IAAI,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC;;;;;;AAMvB,SAAS,IAAI;AACb;IACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;IAC3B;QACI,IAAI,GAAG,GAAG,EAAE,CAAC;;QAEb,cAAc,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;QAEzB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;QAC3B;;YAEI,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;YACpD,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;YACpD,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;YACpD,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;;;YAGpD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;YAC3B;gBACI,IAAI,EAAE,CAAC,CAAC,CAAC,KAAK,GAAG,IAAI,EAAE,CAAC,CAAC,CAAC,KAAK,GAAG;yBACzB,EAAE,CAAC,CAAC,CAAC,KAAK,GAAG,IAAI,EAAE,CAAC,CAAC,CAAC,KAAK,GAAG;gBACvC;oBACI,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;oBACZ,MAAM;iBACT;aACJ;SACJ;KACJ;;IAED,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE;IACjC;QACI,IAAI,GAAG,GAAG,IAAI,MAAM,EAAE,CAAC;;QAEvB,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QAClD,gBAAgB,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KAC9B;CACJ;;AAED,IAAI,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiCP,IAAI,OAAO,GAAG;;;;;;;;IAQV,CAAC,EAAE,CAAC;;;;;;;;;IASJ,EAAE,EAAE,CAAC;;;;;;;;;IASL,CAAC,EAAE,CAAC;;;;;;;;;IASJ,EAAE,EAAE,CAAC;;;;;;;;;IASL,CAAC,EAAE,CAAC;;;;;;;;;IASJ,EAAE,EAAE,CAAC;;;;;;;;;IASL,CAAC,EAAE,CAAC;;;;;;;;;IASJ,EAAE,EAAE,CAAC;;;;;;;IAOL,eAAe,EAAE,CAAC;;;;;;;IAOlB,aAAa,EAAE,EAAE;;;;;;;IAOjB,iBAAiB,EAAE,EAAE;;;;;;;IAOrB,gBAAgB,EAAE,EAAE;;;;;;;;IAQpB,EAAE,EAAE,UAAU,GAAG,EAAE,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE;;;;;;;;IAQtC,EAAE,EAAE,UAAU,GAAG,EAAE,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE;;;;;;;;IAQtC,EAAE,EAAE,UAAU,GAAG,EAAE,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE;;;;;;;;IAQtC,EAAE,EAAE,UAAU,GAAG,EAAE,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE;;;;;;;;;IAStC,GAAG,EAAE,UAAU,QAAQ,EAAE;QACrB,IAAI,QAAQ,GAAG,CAAC;QAChB;YACI,OAAO,QAAQ,GAAG,EAAE,CAAC;SACxB;;QAED,OAAO,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC;KAC1B;;;;;;;;;;;;;;;;;;;;;;;;;;IA0BD,GAAG,EAAE,UAAU,cAAc,EAAE,aAAa,EAAE,EAAE;QAC5C,cAAc,CAAC,cAAc,CAAC,CAAC,aAAa,CAAC;MAC/C,EAAE;;;;;;;;;;IAUJ,GAAG,EAAE,UAAU,cAAc,EAAE,aAAa,EAAE,EAAE;QAC5C,cAAc,CAAC,cAAc,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;MAC5D,EAAE;;;;;;;;;;IAUJ,SAAS,EAAE,UAAU,QAAQ,EAAE,EAAE,OAAO,QAAQ,GAAG,CAAC,CAAC,EAAE;;;;;;;;;;IAUvD,UAAU,EAAE,UAAU,QAAQ,EAAE,EAAE,OAAO,CAAC,QAAQ,GAAG,CAAC,MAAM,CAAC,CAAC,EAAE;;;;;;;;;;;;IAYhE,WAAW,EAAE,UAAU,EAAE,EAAE,EAAE,EAAE;QAC3B,IAAI,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;QACpC;YACI,IAAI,EAAE,IAAI,CAAC;YACX;gBACI,OAAO,OAAO,CAAC,CAAC,CAAC;aACpB;;YAED,OAAO,OAAO,CAAC,CAAC,CAAC;SACpB;aACI,IAAI,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;QACzC;YACI,IAAI,EAAE,GAAG,CAAC;YACV;gBACI,OAAO,OAAO,CAAC,CAAC,CAAC;aACpB;;YAED,OAAO,OAAO,CAAC,CAAC,CAAC;SACpB;aACI,IAAI,EAAE,GAAG,CAAC;QACf;YACI,IAAI,EAAE,GAAG,CAAC;YACV;gBACI,OAAO,OAAO,CAAC,EAAE,CAAC;aACrB;;YAED,OAAO,OAAO,CAAC,EAAE,CAAC;SACrB;aACI,IAAI,EAAE,GAAG,CAAC;QACf;YACI,OAAO,OAAO,CAAC,EAAE,CAAC;SACrB;;QAED,OAAO,OAAO,CAAC,EAAE,CAAC;KACrB;;;;;;;;;;;IAWD,uBAAuB,EAAE,UAAU,MAAM,EAAE,QAAQ,EAAE,EAAE,EAAE,EAAE,EAAE;QACzD,KAAK,EAAE,KAAK,KAAK,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;QAC5B,KAAK,EAAE,KAAK,KAAK,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;;;QAG5B,IAAI,GAAG,GAAG,gBAAgB,CAAC,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,CAAC;;QAElD,GAAG,CAAC,EAAE,GAAG,EAAE,CAAC;QACZ,GAAG,CAAC,EAAE,GAAG,EAAE,CAAC;QACZ,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;KACtB;CACJ,CAAC;;;;;;;;AAQF,IAAI,SAAS,GAAG,SAAS,SAAS;AAClC;;;;;;IAMI,IAAI,CAAC,cAAc,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;IAOnC,IAAI,CAAC,cAAc,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;IAOnC,IAAI,CAAC,QAAQ,GAAG,IAAI,eAAe,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;;;;;;IAO/D,IAAI,CAAC,KAAK,GAAG,IAAI,eAAe,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;;;;;;IAO5D,IAAI,CAAC,KAAK,GAAG,IAAI,eAAe,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;;;;;;IAO5D,IAAI,CAAC,IAAI,GAAG,IAAI,eAAe,CAAC,IAAI,CAAC,UAAU,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;;;;;;;IAQ7D,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;;;;;;;;;IASnB,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;;;;;;;;;IASb,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;;;;;;;;;IASb,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;;;;;;;;;IASb,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;;;;;;;;IAQb,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;;;;;;;;;IASlB,IAAI,CAAC,eAAe,GAAG,CAAC,CAAC;;;;;;;;IAQzB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;;;;;;;;;IASlB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;CACtB,CAAC;;AAEF,IAAIC,sBAAoB,GAAG,EAAE,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;AAOhE,SAAS,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ;AAChD;IACI,IAAI,CAAC,QAAQ,EAAE,CAAC;CACnB,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;AACpD;IACI,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACnD,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACnD,IAAI,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACpD,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;;IAEnD,IAAI,CAAC,QAAQ,EAAE,CAAC;CACnB,CAAC;;;;;AAKF,SAAS,CAAC,SAAS,CAAC,oBAAoB,GAAG,SAAS,oBAAoB;AACxE;IACI,IAAI,EAAE,GAAG,IAAI,CAAC,cAAc,CAAC;;IAE7B,IAAI,IAAI,CAAC,QAAQ,KAAK,IAAI,CAAC,eAAe;IAC1C;;QAEI,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QAChC,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QAChC,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QAChC,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;;QAEhC,EAAE,CAAC,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QAC7E,EAAE,CAAC,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QAC7E,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,QAAQ,CAAC;;;QAGrC,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;KACvB;CACJ,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,eAAe;AAC/E;IACI,IAAI,EAAE,GAAG,IAAI,CAAC,cAAc,CAAC;;IAE7B,IAAI,IAAI,CAAC,QAAQ,KAAK,IAAI,CAAC,eAAe;IAC1C;;QAEI,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QAChC,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QAChC,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QAChC,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;;QAEhC,EAAE,CAAC,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QAC7E,EAAE,CAAC,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QAC7E,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,QAAQ,CAAC;;;QAGrC,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;KACvB;;IAED,IAAI,IAAI,CAAC,SAAS,KAAK,eAAe,CAAC,QAAQ;IAC/C;;QAEI,IAAI,EAAE,GAAG,eAAe,CAAC,cAAc,CAAC;QACxC,IAAI,EAAE,GAAG,IAAI,CAAC,cAAc,CAAC;;QAE7B,EAAE,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;QACrC,EAAE,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;QACrC,EAAE,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;QACrC,EAAE,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;QACrC,EAAE,CAAC,EAAE,GAAG,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;QAChD,EAAE,CAAC,EAAE,GAAG,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC;;QAEhD,IAAI,CAAC,SAAS,GAAG,eAAe,CAAC,QAAQ,CAAC;;;QAG1C,IAAI,CAAC,QAAQ,EAAE,CAAC;KACnB;CACJ,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,MAAM;AAClE;IACI,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;IACvB,IAAI,CAAC,QAAQ,EAAE,CAAC;CACnB,CAAC;;;;;;;AAOFA,sBAAoB,CAAC,QAAQ,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,SAAS,CAAC;CACzB,CAAC;;AAEFA,sBAAoB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,KAAK;AACnD;IACI,IAAI,IAAI,CAAC,SAAS,KAAK,KAAK;IAC5B;QACI,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QACvB,IAAI,CAAC,UAAU,EAAE,CAAC;KACrB;CACJ,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,SAAS,CAAC,SAAS,EAAEA,sBAAoB,EAAE,CAAC;;;;;;;;;AASrE,SAAS,CAAC,QAAQ,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;;;;;;;;;;;;AAkBrC,IAAI,SAAS,GAAG,SAAS,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM;AACtD;IACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;IAClC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;;;;;;IAMpC,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;;;;;IAMnB,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;;;;;IAMnB,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC;;;;;;IAM3B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;IAU7B,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;CAC3B,CAAC;;AAEF,IAAI,oBAAoB,GAAG,EAAE,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,GAAG,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;AACrJ,IAAI,iBAAiB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;AAO1D,oBAAoB,CAAC,IAAI,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,IAAI,CAAC,CAAC,CAAC;CACjB,CAAC;;;;;;;AAOF,oBAAoB,CAAC,KAAK,CAAC,GAAG,GAAG;AACjC;IACI,OAAO,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC;CAC9B,CAAC;;;;;;;AAOF,oBAAoB,CAAC,GAAG,CAAC,GAAG,GAAG;AAC/B;IACI,OAAO,IAAI,CAAC,CAAC,CAAC;CACjB,CAAC;;;;;;;AAOF,oBAAoB,CAAC,MAAM,CAAC,GAAG,GAAG;AAClC;IACI,OAAO,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC;CAC/B,CAAC;;;;;;;;;AASF,iBAAiB,CAAC,KAAK,CAAC,GAAG,GAAG;AAC9B;IACI,OAAO,IAAI,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;CACpC,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC1C;IACI,OAAO,IAAI,SAAS,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;CACjE,CAAC;;;;;;;;AAQF,SAAS,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,SAAS;AAC3D;IACI,IAAI,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC;IACrB,IAAI,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC;IACrB,IAAI,CAAC,KAAK,GAAG,SAAS,CAAC,KAAK,CAAC;IAC7B,IAAI,CAAC,MAAM,GAAG,SAAS,CAAC,MAAM,CAAC;;IAE/B,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,SAAS,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,SAAS;AACvD;IACI,SAAS,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IACrB,SAAS,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;IACrB,SAAS,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;IAC7B,SAAS,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;;IAE/B,OAAO,SAAS,CAAC;CACpB,CAAC;;;;;;;;;AASF,SAAS,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC,EAAE,CAAC;AACtD;IACI,IAAI,IAAI,CAAC,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,MAAM,IAAI,CAAC;IACvC;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK;IAC1C;QACI,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM;QAC3C;YACI,OAAO,IAAI,CAAC;SACf;KACJ;;IAED,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;;AAQF,SAAS,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,QAAQ,EAAE,QAAQ;AAC1D;IACI,QAAQ,GAAG,QAAQ,IAAI,CAAC,CAAC;IACzB,QAAQ,GAAG,QAAQ,KAAK,CAAC,QAAQ,KAAK,CAAC,IAAI,QAAQ,GAAG,CAAC,CAAC,CAAC;;IAEzD,IAAI,CAAC,CAAC,IAAI,QAAQ,CAAC;IACnB,IAAI,CAAC,CAAC,IAAI,QAAQ,CAAC;;IAEnB,IAAI,CAAC,KAAK,IAAI,QAAQ,GAAG,CAAC,CAAC;IAC3B,IAAI,CAAC,MAAM,IAAI,QAAQ,GAAG,CAAC,CAAC;CAC/B,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,SAAS;AACjD;IACI,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;IACvC,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC,GAAG,SAAS,CAAC,KAAK,CAAC,CAAC;IACtE,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;IACvC,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC;;IAExE,IAAI,CAAC,CAAC,GAAG,EAAE,CAAC;IACZ,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC;IAClC,IAAI,CAAC,CAAC,GAAG,EAAE,CAAC;IACZ,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC;CACtC,CAAC;;;;;;;;AAQF,SAAS,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,UAAU,EAAE,GAAG;AACzD;QACQ,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC;QAC5C,KAAK,GAAG,KAAK,KAAK,CAAC,GAAG,GAAG,GAAG,KAAK,CAAC;;IAEtC,IAAI,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,GAAG,GAAG,IAAI,UAAU,CAAC,GAAG,UAAU,CAAC;IAC1E,IAAI,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,GAAG,GAAG,IAAI,UAAU,CAAC,GAAG,UAAU,CAAC;;IAE3E,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,GAAG,IAAI,UAAU,CAAC,GAAG,UAAU,CAAC;IAC9D,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,GAAG,IAAI,UAAU,CAAC,GAAG,UAAU,CAAC;;IAE9D,IAAI,CAAC,KAAK,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;IACzB,IAAI,CAAC,MAAM,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC;CAC7B,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,SAAS;AACzD;IACI,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;IACvC,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC,GAAG,SAAS,CAAC,KAAK,CAAC,CAAC;IACtE,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;IACvC,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC;;IAExE,IAAI,CAAC,CAAC,GAAG,EAAE,CAAC;IACZ,IAAI,CAAC,KAAK,GAAG,EAAE,GAAG,EAAE,CAAC;IACrB,IAAI,CAAC,CAAC,GAAG,EAAE,CAAC;IACZ,IAAI,CAAC,MAAM,GAAG,EAAE,GAAG,EAAE,CAAC;CACzB,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,SAAS,CAAC,SAAS,EAAE,oBAAoB,EAAE,CAAC;AACrE,MAAM,CAAC,gBAAgB,EAAE,SAAS,EAAE,iBAAiB,EAAE,CAAC;;;;;;;;AAQxD,IAAI,MAAM,GAAG,SAAS,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,MAAM;AACzC;IACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;;;;;;IAMpC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;;;;;IAUrB,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;CAC3B,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACvC;IACI,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;CAClD,CAAC;;;;;;;;;AASF,MAAM,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC,EAAE,CAAC;AACnD;IACI,IAAI,IAAI,CAAC,MAAM,IAAI,CAAC;IACpB;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,IAAI,EAAE,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;IACnC,IAAI,EAAE,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;IACtB,IAAI,EAAE,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;;IAEtB,EAAE,IAAI,EAAE,CAAC;IACT,EAAE,IAAI,EAAE,CAAC;;IAET,QAAQ,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE;CAC1B,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;AAC/C;IACI,OAAO,IAAI,SAAS,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,GAAG,CAAC,EAAE,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;CACtG,CAAC;;;;;;;;AAQF,IAAI,OAAO,GAAG,SAAS,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,SAAS,EAAE,UAAU;AAC1D;IACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,SAAS,KAAK,KAAK,CAAC,GAAG,SAAS,GAAG,CAAC,CAAC;IAC1C,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC;;;;;;IAM5C,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,KAAK,GAAG,SAAS,CAAC;;;;;;IAMvB,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC;;;;;;;;;;IAUzB,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;CAC3B,CAAC;;;;;;;AAOF,OAAO,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACxC;IACI,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;CAC/D,CAAC;;;;;;;;;AASF,OAAO,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC,EAAE,CAAC;AACpD;IACI,IAAI,IAAI,CAAC,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,MAAM,IAAI,CAAC;IACvC;QACI,OAAO,KAAK,CAAC;KAChB;;;IAGD,IAAI,KAAK,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC;IACxC,IAAI,KAAK,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC;;IAEzC,KAAK,IAAI,KAAK,CAAC;IACf,KAAK,IAAI,KAAK,CAAC;;IAEf,QAAQ,KAAK,GAAG,KAAK,IAAI,CAAC,EAAE;CAC/B,CAAC;;;;;;;AAOF,OAAO,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;AAChD;IACI,OAAO,IAAI,SAAS,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;CAC5F,CAAC;;;;;;;;AAQF,IAAI,OAAO,GAAG,SAAS,OAAO;AAC9B;IACI,IAAI,MAAM,GAAG,EAAE,EAAE,GAAG,GAAG,SAAS,CAAC,MAAM,CAAC;IACxC,QAAQ,GAAG,EAAE,GAAG,MAAM,EAAE,GAAG,EAAE,GAAG,SAAS,EAAE,GAAG,EAAE,CAAC;;IAEjD,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;IAC5B;QACI,MAAM,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;KACtB;;;IAGD,IAAI,MAAM,CAAC,CAAC,CAAC,YAAY,KAAK;IAC9B;QACI,IAAI,CAAC,GAAG,EAAE,CAAC;;QAEX,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;QAC/C;YACI,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;SACpC;;QAED,MAAM,GAAG,CAAC,CAAC;KACd;;;;;;;IAOD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;;;;;IAUrB,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;;;;;;;IAOxB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;CAC3B,CAAC;;;;;;;AAOF,OAAO,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACxC;IACI,IAAI,OAAO,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC;;IAE/C,OAAO,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;;IAEvC,OAAO,OAAO,CAAC;CAClB,CAAC;;;;;;;;;AASF,OAAO,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC,EAAE,CAAC;AACpD;IACI,IAAI,MAAM,GAAG,KAAK,CAAC;;;;IAInB,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;IAEpC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE;IACnD;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;QAC5B,IAAI,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;QAClC,IAAI,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;QAC5B,IAAI,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;QAClC,IAAI,SAAS,GAAG,CAAC,CAAC,EAAE,GAAG,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;;QAE3F,IAAI,SAAS;QACb;YACI,MAAM,GAAG,CAAC,MAAM,CAAC;SACpB;KACJ;;IAED,OAAO,MAAM,CAAC;CACjB,CAAC;;;;;;;;;AASF,IAAI,gBAAgB,GAAG,SAAS,gBAAgB,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;AAC5E;IACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC1B,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;IAClC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;IACpC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,EAAE,CAAC;;;;;;IAMrC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;;;;;;IAMX,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;IAMnB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;IAMrB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;;;;;IAUrB,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;CAC3B,CAAC;;;;;;;AAOF,gBAAgB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACjD;IACI,OAAO,IAAI,gBAAgB,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;CACrF,CAAC;;;;;;;;;AASF,gBAAgB,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC,EAAE,CAAC;AAC7D;IACI,IAAI,IAAI,CAAC,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,MAAM,IAAI,CAAC;IACvC;QACI,OAAO,KAAK,CAAC;KAChB;IACD,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK;IAC3C;QACI,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM;QAC5C;YACI,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM;gBACrE,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;YACxE;gBACI,OAAO,IAAI,CAAC;aACf;YACD,IAAI,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;YACpC,IAAI,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;YACpC,IAAI,OAAO,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;;YAExC,IAAI,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,OAAO;YACpC;gBACI,OAAO,IAAI,CAAC;aACf;YACD,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;YAC7C,IAAI,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,OAAO;YACpC;gBACI,OAAO,IAAI,CAAC;aACf;YACD,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;YAC9C,IAAI,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,OAAO;YACpC;gBACI,OAAO,IAAI,CAAC;aACf;YACD,EAAE,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;YAChC,IAAI,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,OAAO;YACpC;gBACI,OAAO,IAAI,CAAC;aACf;SACJ;KACJ;;IAED,OAAO,KAAK,CAAC;CAChB,CAAC;;AC7iEF;;;;;;;AAOA,AAGA;;;;;;;;;;;;;;;;;;;;AAoBA,QAAQ,CAAC,iBAAiB,GAAG,KAAK,CAAC;;;;;;;;;;;AAWnC,IAAI,MAAM,GAAG,SAAS,MAAM;AAC5B;;;;;IAKI,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;;;;;;IAMrB,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;;;;;;IAMrB,IAAI,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC;;;;;;IAMtB,IAAI,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC;;IAEtB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CACpB,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC3C;IACI,OAAO,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;CACzD,CAAC;;;;;;AAMF,MAAM,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACvC;IACI,IAAI,CAAC,QAAQ,EAAE,CAAC;;IAEhB,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;IACrB,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;IACrB,IAAI,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC;CACzB,CAAC;;;;;;;;;AASF,MAAM,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,IAAI;AAC3D;IACI,IAAI,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI;IAClD;QACI,OAAO,SAAS,CAAC,KAAK,CAAC;KAC1B;;IAED,IAAI,GAAG,IAAI,IAAI,IAAI,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;IAEzC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC;IACnB,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC;IACnB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACnC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;IAEpC,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,KAAK;AACpD;IACI,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;IACzC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;IACzC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;IACzC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;CAC5C,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,QAAQ;AACrD;IACI,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;IAErB,IAAI,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IACpB,IAAI,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;;IAEpB,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAChB,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAChB,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAChB,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAChB,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAChB,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAChB,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CACpB,CAAC;;;;;;;;;;;AAWF,MAAM,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,SAAS,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACxE;IACI,IAAI,MAAM,GAAG,SAAS,CAAC,cAAc,CAAC;IACtC,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;IACnB,IAAI,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;;IAEnB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;IAErB,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;IACjC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;IAEjC,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;IAC7B,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;IAC7B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;IAC7B,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;IAC7B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;IAC7B,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;IAC7B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;IAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;;IAE3B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CACpB,CAAC;;;;;;;;;AASF,MAAM,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,UAAU,EAAE,WAAW,EAAE,SAAS;AAC3F;IACI,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;IAErB,KAAK,IAAI,CAAC,GAAG,WAAW,EAAE,CAAC,GAAG,SAAS,EAAE,CAAC,IAAI,CAAC;IAC/C;QACI,IAAI,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;QACtB,IAAI,CAAC,GAAG,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;;QAE1B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;QAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;QAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;QAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;KAC9B;;IAED,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CACpB,CAAC;;;;;;;;;;AAUF,MAAM,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS;AAChG;IACI,IAAI,MAAM,GAAG,SAAS,CAAC,cAAc,CAAC;IACtC,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC;IACjB,IAAI,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;IACnB,IAAI,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;;IAEnB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;IAErB,KAAK,IAAI,CAAC,GAAG,WAAW,EAAE,CAAC,GAAG,SAAS,EAAE,CAAC,IAAI,CAAC;IAC/C;QACI,IAAI,IAAI,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;QACvB,IAAI,IAAI,GAAG,QAAQ,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;QAC3B,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,KAAK,CAAC,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;QACrC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,KAAK,CAAC,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;;QAErC,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;QAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;QAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;QAC3B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;KAC9B;;IAED,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CACpB,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,MAAM;AACvD;IACI,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;IAErB,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;IACpD,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;IACpD,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;IACpD,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;CACvD,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,MAAM,EAAE,IAAI;AACrE;IACI,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IAC9D,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IAC9D,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;IAC9D,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;IAE9D,IAAI,KAAK,IAAI,KAAK,IAAI,KAAK,IAAI,KAAK;IACpC;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;QAErB,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;QACxC,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;QACxC,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;QACxC,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;KAC3C;CACJ,CAAC;;;;;;;;AAQF,MAAM,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,MAAM,EAAE,IAAI;AACrE;IACI,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC;IACxD,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC;IACxD,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,IAAI,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;IACpF,IAAI,KAAK,GAAG,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,IAAI,IAAI,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;;IAEtF,IAAI,KAAK,IAAI,KAAK,IAAI,KAAK,IAAI,KAAK;IACpC;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACrB,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;QAErB,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;QACxC,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;QACxC,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;QACxC,IAAI,CAAC,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,CAAC;KAC3C;CACJ,CAAC;;;;;;;;;;;;;AAaF,IAAI,aAAa,iBAAiB,UAAU,YAAY,EAAE;IACtD,SAAS,aAAa;IACtB;QACI,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAExB,IAAI,CAAC,uBAAuB,GAAG,IAAI,CAAC;;;;;;;;;QASpC,IAAI,CAAC,SAAS,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;QAOjC,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;;;QAUf,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;;;;QAUpB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;;;;;;;QAQvB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;;QAQnB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;;;;;;;;QASpB,IAAI,CAAC,gBAAgB,GAAG,CAAC,CAAC;;;;;;;;;QAS1B,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;;;;QAUjB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;;;;;;;;QASvB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;;;;;;;;QAQ5B,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;QAC5B,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;QACnB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC,CAAC;QACxB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QACxB,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;;;;;;;;QAQ7B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;QAsBlB,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;;;;;;QAMxB,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;KACzB;;IAED,KAAK,YAAY,GAAG,aAAa,CAAC,SAAS,GAAG,YAAY,CAAC;IAC3D,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,YAAY,IAAI,YAAY,CAAC,SAAS,EAAE,CAAC;IAClF,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;IAEpD,IAAI,kBAAkB,GAAG,EAAE,wBAAwB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,cAAc,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,cAAc,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,YAAY,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;IAM1e,aAAa,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,MAAM;IAC5C;;;;;QAKI,IAAI,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;;QAG/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC;QACpC;YACI,IAAI,YAAY,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;;;YAG3B,MAAM,CAAC,cAAc;gBACjB,aAAa,CAAC,SAAS;gBACvB,YAAY;gBACZ,MAAM,CAAC,wBAAwB,CAAC,MAAM,EAAE,YAAY,CAAC;aACxD,CAAC;SACL;KACJ,CAAC;;IAEF,kBAAkB,CAAC,wBAAwB,CAAC,GAAG,GAAG;IAClD;QACI,IAAI,IAAI,CAAC,uBAAuB,KAAK,IAAI;QACzC;YACI,IAAI,CAAC,uBAAuB,GAAG,IAAI,aAAa,EAAE,CAAC;SACtD;;QAED,OAAO,IAAI,CAAC,uBAAuB,CAAC;KACvC,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;IAClE;QACI,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;;QAEtD,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC;;QAEtD,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC;KAC3B,CAAC;;;;;;IAMF,aAAa,CAAC,SAAS,CAAC,6BAA6B,GAAG,SAAS,6BAA6B;IAC9F;QACI,IAAI,IAAI,CAAC,MAAM;QACf;YACI,IAAI,CAAC,MAAM,CAAC,6BAA6B,EAAE,CAAC;YAC5C,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;SACzD;;QAED;YACI,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,IAAI,CAAC,wBAAwB,CAAC,SAAS,CAAC,CAAC;SAC3E;KACJ,CAAC;;;;;;;;;;;IAWF,aAAa,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,UAAU,EAAE,IAAI;IACxE;QACI,IAAI,CAAC,UAAU;QACf;YACI,IAAI,CAAC,IAAI,CAAC,MAAM;YAChB;gBACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,wBAAwB,CAAC;gBAC5C,IAAI,CAAC,eAAe,EAAE,CAAC;gBACvB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;aACtB;;YAED;gBACI,IAAI,CAAC,6BAA6B,EAAE,CAAC;gBACrC,IAAI,CAAC,eAAe,EAAE,CAAC;aAC1B;SACJ;;QAED,IAAI,IAAI,CAAC,SAAS,KAAK,IAAI,CAAC,aAAa;QACzC;YACI,IAAI,CAAC,eAAe,EAAE,CAAC;YACvB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,SAAS,CAAC;SACvC;;QAED,IAAI,CAAC,IAAI;QACT;YACI,IAAI,CAAC,IAAI,CAAC,WAAW;YACrB;gBACI,IAAI,CAAC,WAAW,GAAG,IAAI,SAAS,EAAE,CAAC;aACtC;;YAED,IAAI,GAAG,IAAI,CAAC,WAAW,CAAC;SAC3B;;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;KAC1C,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,IAAI;IACtE;QACI,IAAI,YAAY,GAAG,IAAI,CAAC,SAAS,CAAC;QAClC,IAAI,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC;;QAE5B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,wBAAwB,CAAC,SAAS,CAAC;;QAEzD,IAAI,CAAC,IAAI;QACT;YACI,IAAI,CAAC,IAAI,CAAC,gBAAgB;YAC1B;gBACI,IAAI,CAAC,gBAAgB,GAAG,IAAI,SAAS,EAAE,CAAC;aAC3C;;YAED,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC;SAChC;;QAED,IAAI,MAAM,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC;;QAEzC,IAAI,CAAC,MAAM,GAAG,SAAS,CAAC;QACxB,IAAI,CAAC,SAAS,GAAG,YAAY,CAAC;;QAE9B,OAAO,MAAM,CAAC;KACjB,CAAC;;;;;;;;;;;IAWF,aAAa,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,UAAU;IACjF;QACI,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,KAAK,CAAC;;QAEhD,IAAI,CAAC,UAAU;QACf;YACI,IAAI,CAAC,6BAA6B,EAAE,CAAC;;;;;YAKrC,IAAI,CAAC,IAAI,CAAC,MAAM;YAChB;gBACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,wBAAwB,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;aACtB;;YAED;gBACI,IAAI,CAAC,4BAA4B,EAAE,CAAC;aACvC;SACJ;;;QAGD,OAAO,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;KACrD,CAAC;;;;;;;;;;;;IAYF,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,UAAU;IACrF;QACI,IAAI,IAAI;QACR;YACI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,KAAK,EAAE,UAAU,CAAC,CAAC;SACzD;;QAED,IAAI,CAAC,UAAU;QACf;YACI,IAAI,CAAC,6BAA6B,EAAE,CAAC;;;;;YAKrC,IAAI,CAAC,IAAI,CAAC,MAAM;YAChB;gBACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,wBAAwB,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;aACtB;;YAED;gBACI,IAAI,CAAC,4BAA4B,EAAE,CAAC;aACvC;SACJ;;;QAGD,OAAO,IAAI,CAAC,cAAc,CAAC,YAAY,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;KAC5D,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ;IAC1D;;KAEC,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,SAAS;IACjE;QACI,IAAI,CAAC,SAAS,IAAI,CAAC,SAAS,CAAC,QAAQ;QACrC;YACI,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;SAC9D;;QAED,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;;QAEzB,OAAO,SAAS,CAAC;KACpB,CAAC;;;;;;;;;;;;;;;;IAgBF,aAAa,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;IAC1H;QACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QAC1B,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;QACpC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;QACpC,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,CAAC,CAAC;QACxC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;QACpC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;;QAEpC,IAAI,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,CAAC;QACpB,IAAI,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,CAAC;QACpB,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,GAAG,MAAM,CAAC;QACpC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,GAAG,MAAM,CAAC;QACpC,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC;QACpB,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC;QACpB,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,MAAM,CAAC;QACtB,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,MAAM,CAAC;;QAEtB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;IASF,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAClD;QACI,IAAI,CAAC,kBAAkB,EAAE,CAAC;QAC1B,IAAI,IAAI,CAAC,MAAM;QACf;YACI,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;SACjC;QACD,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;;QAEtB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;QAEnB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC;QAC3B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;QAElB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;QAEvB,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;QACzB,IAAI,CAAC,mBAAmB,GAAG,KAAK,CAAC;;QAEjC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;KAC1B,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG;IAC3B;QACI,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;KAC1B,CAAC;;IAEF,kBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG,UAAU,KAAK;IAC1C;QACI,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,GAAG,KAAK,CAAC;KACrC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG;IAC3B;QACI,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;KAC1B,CAAC;;IAEF,kBAAkB,CAAC,CAAC,CAAC,GAAG,GAAG,UAAU,KAAK;IAC1C;QACI,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,GAAG,KAAK,CAAC;KACrC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,cAAc,CAAC,GAAG,GAAG;IACxC;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,cAAc,CAAC;KACxC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,cAAc,CAAC,GAAG,GAAG;IACxC;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,cAAc,CAAC;KACxC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG;IAClC;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC;KAClC,CAAC;;IAEF,kBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,KAAK;IACjD;QACI,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;KAC3C,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC;KAC/B,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;KACxC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC;KAC/B,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;KACxC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC;KAC9B,CAAC;;IAEF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,KAAK;IAC7C;QACI,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;KACvC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG;IAClC;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC;KAClC,CAAC;;IAEF,kBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,KAAK;IACjD;QACI,IAAI,CAAC,SAAS,CAAC,QAAQ,GAAG,KAAK,CAAC;KACnC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,QAAQ,GAAG,UAAU,CAAC;KAC/C,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,CAAC,SAAS,CAAC,QAAQ,GAAG,KAAK,GAAG,UAAU,CAAC;KAChD,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,OAAO,CAAC;KACvB,CAAC;;IAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,KAAK;IAC/C;QACI,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;QACrB,IAAI,IAAI,CAAC,MAAM;QACf;YACI,IAAI,CAAC,MAAM,CAAC,SAAS,GAAG,IAAI,CAAC;SAChC;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,YAAY,CAAC,GAAG,GAAG;IACtC;QACI,IAAI,IAAI,GAAG,IAAI,CAAC;;QAEhB;QACA;YACI,IAAI,CAAC,IAAI,CAAC,OAAO;YACjB;gBACI,OAAO,KAAK,CAAC;aAChB;;YAED,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC;SACtB,QAAQ,IAAI,EAAE;;QAEf,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;;;;;;;;;IAqBF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;IAEF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,KAAK;IAC7C;QACI,IAAI,IAAI,CAAC,KAAK;QACd;YACI,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,IAAI,CAAC;YAC7B,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC;SAC7B;;QAED,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;QAEnB,IAAI,IAAI,CAAC,KAAK;QACd;YACI,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,KAAK,CAAC;YAC9B,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC;SAC5B;KACJ,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,aAAa,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAEvE,OAAO,aAAa,CAAC;CACxB,CAACC,aAAY,CAAC,CAAC,CAAC;;;;;;;;;AASjB,aAAa,CAAC,SAAS,CAAC,4BAA4B,GAAG,aAAa,CAAC,SAAS,CAAC,eAAe,CAAC;;AAE/F,SAAS,YAAY,CAAC,CAAC,EAAE,CAAC;AAC1B;IACI,IAAI,CAAC,CAAC,MAAM,KAAK,CAAC,CAAC,MAAM;IACzB;QACI,OAAO,CAAC,CAAC,gBAAgB,GAAG,CAAC,CAAC,gBAAgB,CAAC;KAClD;;IAED,OAAO,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,MAAM,CAAC;CAC9B;;;;;;;;;;;;;;;;AAgBD,IAAI,SAAS,iBAAiB,UAAU,aAAa,EAAE;IACnD,SAAS,SAAS;IAClB;QACI,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;QAQzB,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;;;;;;;;;;;;;;;;;QAiBnB,IAAI,CAAC,gBAAgB,GAAG,QAAQ,CAAC,iBAAiB,CAAC;;;;;;;;QAQnD,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;;;;;;;;;;;;;;;;;;KAmB1B;;IAED,KAAK,aAAa,GAAG,SAAS,CAAC,SAAS,GAAG,aAAa,CAAC;IACzD,SAAS,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,aAAa,IAAI,aAAa,CAAC,SAAS,EAAE,CAAC;IAChF,SAAS,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,CAAC;;IAE5C,IAAI,kBAAkB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;IAO1F,SAAS,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IAChE;;KAEC,CAAC;;;;;;;;;;IAUF,SAAS,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,KAAK;IACvD;QACI,IAAI,WAAW,GAAG,SAAS,CAAC;;QAE5B,IAAI,eAAe,GAAG,SAAS,CAAC,MAAM,CAAC;;;QAGvC,IAAI,eAAe,GAAG,CAAC;QACvB;;;YAGI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,eAAe,EAAE,CAAC,EAAE;YACxC;gBACI,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC;aACjC;SACJ;;QAED;;YAEI,IAAI,KAAK,CAAC,MAAM;YAChB;gBACI,KAAK,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;aACnC;;YAED,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC;YACpB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;;;YAGtB,KAAK,CAAC,SAAS,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;;YAE/B,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;;;YAG1B,IAAI,CAAC,SAAS,EAAE,CAAC;;;YAGjB,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;YAChD,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;YAC/D,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;SAC7B;;QAED,OAAO,KAAK,CAAC;KAChB,CAAC;;;;;;;;;IASF,SAAS,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,KAAK,EAAE,KAAK;IAClE;QACI,IAAI,KAAK,GAAG,CAAC,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM;QAC7C;YACI,MAAM,IAAI,KAAK,EAAE,KAAK,GAAG,wBAAwB,GAAG,KAAK,GAAG,6BAA6B,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC;SACxH;;QAED,IAAI,KAAK,CAAC,MAAM;QAChB;YACI,KAAK,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;SACnC;;QAED,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;;;QAGtB,KAAK,CAAC,SAAS,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;;QAE/B,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,EAAE,KAAK,CAAC,CAAC;;;QAGtC,IAAI,CAAC,SAAS,EAAE,CAAC;;;QAGjB,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;QAC7B,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QAC1B,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;;QAE5C,OAAO,KAAK,CAAC;KAChB,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,KAAK,EAAE,MAAM;IACvE;QACI,IAAI,KAAK,KAAK,MAAM;QACpB;YACI,OAAO;SACV;;QAED,IAAI,MAAM,GAAG,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;QACvC,IAAI,MAAM,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;;QAExC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC;QAC/B,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC;QAC9B,IAAI,CAAC,gBAAgB,CAAC,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC,CAAC;KAC5D,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,KAAK;IACjE;QACI,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;;QAEzC,IAAI,KAAK,KAAK,CAAC,CAAC;QAChB;YACI,MAAM,IAAI,KAAK,CAAC,0DAA0D,CAAC,CAAC;SAC/E;;QAED,OAAO,KAAK,CAAC;KAChB,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,KAAK,EAAE,KAAK;IACxE;QACI,IAAI,KAAK,GAAG,CAAC,IAAI,KAAK,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM;QAC9C;YACI,MAAM,IAAI,KAAK,EAAE,YAAY,GAAG,KAAK,GAAG,6BAA6B,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC;SACpG;;QAED,IAAI,YAAY,GAAG,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;;QAE7C,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE,YAAY,EAAE,CAAC,CAAC,CAAC;QAC5C,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,EAAE,KAAK,CAAC,CAAC;;QAEtC,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;KAChC,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,KAAK;IAC3D;QACI,IAAI,KAAK,GAAG,CAAC,IAAI,KAAK,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM;QAC9C;YACI,MAAM,IAAI,KAAK,EAAE,qBAAqB,GAAG,KAAK,GAAG,mBAAmB,EAAE,CAAC;SAC1E;;QAED,OAAO,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;KAC/B,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,KAAK;IAC7D;QACI,IAAI,WAAW,GAAG,SAAS,CAAC;;QAE5B,IAAI,eAAe,GAAG,SAAS,CAAC,MAAM,CAAC;;;QAGvC,IAAI,eAAe,GAAG,CAAC;QACvB;;;YAGI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,eAAe,EAAE,CAAC,EAAE;YACxC;gBACI,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC;aACpC;SACJ;;QAED;YACI,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;;YAEzC,IAAI,KAAK,KAAK,CAAC,CAAC,EAAE,EAAE,OAAO,IAAI,CAAC,EAAE;;YAElC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC;;YAEpB,KAAK,CAAC,SAAS,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;YAC/B,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC;;;YAGrC,IAAI,CAAC,SAAS,EAAE,CAAC;;;YAGjB,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;YAC7B,KAAK,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;YAC5B,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;SACjD;;QAED,OAAO,KAAK,CAAC;KAChB,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,KAAK;IACjE;QACI,IAAI,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;;;QAGnC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC;QACpB,KAAK,CAAC,SAAS,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;QAC/B,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC;;;QAGrC,IAAI,CAAC,SAAS,EAAE,CAAC;;;QAGjB,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;QAC7B,KAAK,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;QAC5B,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;;QAE9C,OAAO,KAAK,CAAC;KAChB,CAAC;;;;;;;;;IASF,SAAS,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,UAAU,EAAE,QAAQ;IAClF;QACI,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC;;QAE5C,IAAI,KAAK,GAAG,UAAU,CAAC;QACvB,IAAI,GAAG,GAAG,OAAO,QAAQ,KAAK,QAAQ,GAAG,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC;QACzE,IAAI,KAAK,GAAG,GAAG,GAAG,KAAK,CAAC;QACxB,IAAI,OAAO,CAAC;;QAEZ,IAAI,KAAK,GAAG,CAAC,IAAI,KAAK,IAAI,GAAG;QAC7B;YACI,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;;YAE7C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC;YACvC;gBACI,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,IAAI,CAAC;gBACzB,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS;gBACxB;oBACI,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;iBACvC;aACJ;;YAED,IAAI,CAAC,SAAS,EAAE,CAAC;;YAEjB,IAAI,CAAC,gBAAgB,CAAC,UAAU,CAAC,CAAC;;YAElC,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,EAAE,EAAE,GAAG;YAC7C;gBACI,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;gBACnC,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE,OAAO,CAAC,GAAG,CAAC,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC;aACtD;;YAED,OAAO,OAAO,CAAC;SAClB;aACI,IAAI,KAAK,KAAK,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,KAAK,CAAC;QAClD;YACI,OAAO,EAAE,CAAC;SACb;;QAED,MAAM,IAAI,UAAU,CAAC,kEAAkE,CAAC,CAAC;KAC5F,CAAC;;;;;IAKF,SAAS,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,cAAc;IAC1D;QACI,IAAI,YAAY,GAAG,KAAK,CAAC;;QAEzB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC;QACpD;YACI,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;;YAE7B,KAAK,CAAC,gBAAgB,GAAG,CAAC,CAAC;;YAE3B,IAAI,CAAC,YAAY,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC;YACvC;gBACI,YAAY,GAAG,IAAI,CAAC;aACvB;SACJ;;QAED,IAAI,YAAY,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC;QAC5C;YACI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;SACpC;;QAED,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;KAC1B,CAAC;;;;;IAKF,SAAS,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;IAC9D;QACI,IAAI,IAAI,CAAC,gBAAgB,IAAI,IAAI,CAAC,SAAS;QAC3C;YACI,IAAI,CAAC,YAAY,EAAE,CAAC;SACvB;;QAED,IAAI,CAAC,SAAS,EAAE,CAAC;;QAEjB,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;;;QAGtD,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC;;QAEtD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC;QACpD;YACI,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;;YAE7B,IAAI,KAAK,CAAC,OAAO;YACjB;gBACI,KAAK,CAAC,eAAe,EAAE,CAAC;aAC3B;SACJ;KACJ,CAAC;;;;;;IAMF,SAAS,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;IAC9D;QACI,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC;;QAErB,IAAI,CAAC,gBAAgB,EAAE,CAAC;;QAExB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;QAC7C;YACI,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;;YAE7B,IAAI,CAAC,KAAK,CAAC,OAAO,IAAI,CAAC,KAAK,CAAC,UAAU;YACvC;gBACI,SAAS;aACZ;;YAED,KAAK,CAAC,eAAe,EAAE,CAAC;;;YAGxB,IAAI,KAAK,CAAC,KAAK;YACf;gBACI,KAAK,CAAC,KAAK,CAAC,eAAe,EAAE,CAAC;gBAC9B,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,KAAK,CAAC,OAAO,EAAE,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;aAClE;iBACI,IAAI,KAAK,CAAC,UAAU;YACzB;gBACI,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,KAAK,CAAC,OAAO,EAAE,KAAK,CAAC,UAAU,CAAC,CAAC;aAC/D;;YAED;gBACI,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;aACzC;SACJ;;QAED,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,SAAS,CAAC;KACvC,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IAChE;;KAEC,CAAC;;;;;;;IAOF,SAAS,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ;IACtD;;QAEI,IAAI,CAAC,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,UAAU,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU;QAC7D;YACI,OAAO;SACV;;;QAGD,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;QACvD;YACI,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC;SACjC;;QAED;YACI,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;;;YAGvB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC;YACpD;gBACI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;aACrC;SACJ;KACJ,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,QAAQ;IACtE;QACI,QAAQ,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;;QAEvB,IAAI,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC3B,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;;;QAGtB,IAAI,OAAO;QACX;YACI,IAAI,CAAC,IAAI,CAAC,eAAe;YACzB;gBACI,IAAI,CAAC,eAAe,GAAG,EAAE,CAAC;aAC7B;;YAED,IAAI,CAAC,eAAe,CAAC,MAAM,GAAG,CAAC,CAAC;;YAEhC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;YACvC;gBACI,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO;gBACtB;oBACI,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC;iBACzC;aACJ;;YAED,IAAI,IAAI,CAAC,eAAe,CAAC,MAAM;YAC/B;gBACI,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,eAAe,CAAC,CAAC;aACpD;SACJ;;QAED,IAAI,IAAI;QACR;YACI,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC;SACxC;;;QAGD,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;;;QAGvB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,GAAG,GAAG,CAAC,EAAE,GAAG,EAAE;QAC1D;YACI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;SACvC;;QAED,QAAQ,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;;QAEvB,IAAI,IAAI;QACR;YACI,QAAQ,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC;SACvC;;QAED,IAAI,OAAO,IAAI,IAAI,CAAC,eAAe,IAAI,IAAI,CAAC,eAAe,CAAC,MAAM;QAClE;YACI,QAAQ,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC;SACzB;KACJ,CAAC;;;;;;;;IAQF,SAAS,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,QAAQ;IACxD;;KAEC,CAAC;;;;;;;;;;;;;;;IAeF,SAAS,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,OAAO;IACvD;QACI,aAAa,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAE3C,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;QAEvB,IAAI,eAAe,GAAG,OAAO,OAAO,KAAK,SAAS,GAAG,OAAO,GAAG,OAAO,IAAI,OAAO,CAAC,QAAQ,CAAC;;QAE3F,IAAI,WAAW,GAAG,IAAI,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;;QAE/D,IAAI,eAAe;QACnB;YACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,MAAM,EAAE,EAAE,CAAC;YAC3C;gBACI,WAAW,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;aACnC;SACJ;KACJ,CAAC;;;;;;;IAOF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,CAAC,KAAK,CAAC;KACrD,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,KAAK,GAAG,IAAI,CAAC,cAAc,EAAE,CAAC,KAAK,CAAC;;QAExC,IAAI,KAAK,KAAK,CAAC;QACf;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,GAAG,KAAK,CAAC;SAChC;;QAED;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC;SACpB;;QAED,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;KACvB,CAAC;;;;;;;IAOF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,CAAC,MAAM,CAAC;KACtD,CAAC;;IAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,KAAK;IAC/C;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,cAAc,EAAE,CAAC,MAAM,CAAC;;QAE1C,IAAI,MAAM,KAAK,CAAC;QAChB;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,GAAG,MAAM,CAAC;SACjC;;QAED;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC;SACpB;;QAED,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;KACxB,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,SAAS,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAEnE,OAAO,SAAS,CAAC;CACpB,CAAC,aAAa,CAAC,CAAC,CAAC;;;AAGlB,SAAS,CAAC,SAAS,CAAC,wBAAwB,GAAG,SAAS,CAAC,SAAS,CAAC,eAAe,CAAC;;ACpwDnF;;;;;;;AAOA,AAEA;;;;;;;;;;;;;;;;;AAiBA,IAAI,gBAAgB,GAAG;;;;;;;;IAQnB,UAAU,EAAE,KAAK;;;;;;;;;IASjB,eAAe,EAAE,IAAI;;;;;;;;IAQrB,cAAc,EAAE,IAAI;;;;;;;;IAQpB,QAAQ,EAAE,CAAC;;;;;;;IAOX,iBAAiB,EAAE,KAAK;;;;;;;IAOxB,cAAc,EAAE,KAAK;CACxB,CAAC;;;AAGF,aAAa,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;;AAEtC,IAAI,YAAY,GAAG,CAAC,CAAC;;AAErB,IAAI,cAAc,GAAG,GAAG,CAAC;AACzB,IAAI,eAAe,GAAG,CAAC,CAAC;AACxB,IAAI,eAAe,GAAG,CAAC,CAAC;AACxB,IAAI,gBAAgB,GAAG,CAAC,CAAC;;AAEzB,IAAI,aAAa,GAAG,CAAC,CAAC;AACtB,IAAI,cAAc,GAAG,CAAC,IAAI,CAAC;AAC3B,IAAI,cAAc,GAAG,CAAC,IAAI,CAAC;AAC3B,IAAI,eAAe,GAAG,CAAC,CAAC;;;;;;;;;;;;;;AAcxB,IAAI,oBAAoB,GAAG,SAAS,oBAAoB,CAAC,QAAQ;AACjE;;;;;IAKI,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;IACrB,IAAI,QAAQ,CAAC,MAAM,IAAI,QAAQ,CAAC,KAAK;IACrC;QACI,IAAI,CAAC,eAAe,EAAE,CAAC;KAC1B;;;IAGD,IAAI,GAAG,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;;IAExC,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,cAAc,GAAG,IAAI,CAAC;IACxC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,cAAc,GAAG,IAAI,CAAC;IACzC,GAAG,CAAC,KAAK,CAAC,QAAQ,GAAG,UAAU,CAAC;IAChC,GAAG,CAAC,KAAK,CAAC,GAAG,GAAG,eAAe,GAAG,IAAI,CAAC;IACvC,GAAG,CAAC,KAAK,CAAC,IAAI,GAAG,eAAe,GAAG,IAAI,CAAC;IACxC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,gBAAgB,CAAC;;;;;;;;IAQpC,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;;;;;;;;IAQf,IAAI,CAAC,IAAI,GAAG,EAAE,CAAC;;;;;;;;IAQf,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;;;;;;;IAOlB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;;IAOnB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;;;;;;;;IAQzB,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;;;;;;;;IAQnB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;IAQ7C,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;IAOjD,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;;;;;;;IAOtB,IAAI,CAAC,qBAAqB,GAAG,KAAK,CAAC;;;IAGnC,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,IAAI,CAAC,UAAU,EAAE,KAAK,CAAC,CAAC;CAC9D,CAAC;;;;;;;AAOF,oBAAoB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;AACzE;QACQ,IAAI,MAAM,GAAG,IAAI,CAAC;;IAEtB,IAAI,OAAO,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;IAE/C,OAAO,CAAC,KAAK,CAAC,KAAK,GAAG,aAAa,GAAG,IAAI,CAAC;IAC3C,OAAO,CAAC,KAAK,CAAC,MAAM,GAAG,aAAa,GAAG,IAAI,CAAC;IAC5C,OAAO,CAAC,KAAK,CAAC,QAAQ,GAAG,UAAU,CAAC;IACpC,OAAO,CAAC,KAAK,CAAC,GAAG,GAAG,cAAc,GAAG,IAAI,CAAC;IAC1C,OAAO,CAAC,KAAK,CAAC,IAAI,GAAG,cAAc,GAAG,IAAI,CAAC;IAC3C,OAAO,CAAC,KAAK,CAAC,MAAM,GAAG,eAAe,CAAC;IACvC,OAAO,CAAC,KAAK,CAAC,eAAe,GAAG,SAAS,CAAC;IAC1C,OAAO,CAAC,KAAK,GAAG,UAAU,CAAC;;IAE3B,OAAO,CAAC,gBAAgB,CAAC,OAAO,EAAE,YAAY;QAC1C,MAAM,CAAC,qBAAqB,GAAG,IAAI,CAAC;QACpC,MAAM,CAAC,QAAQ,EAAE,CAAC;QAClB,MAAM,CAAC,gBAAgB,EAAE,CAAC;KAC7B,CAAC,CAAC;;IAEH,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;IACnC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;CAC3B,CAAC;;;;;;;AAOF,oBAAoB,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;AAC3E;IACI,IAAI,CAAC,IAAI,CAAC,QAAQ;IAClB;QACI,OAAO;KACV;IACD,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;IACzC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;CACxB,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ;AAC3D;IACI,IAAI,IAAI,CAAC,QAAQ;IACjB;QACI,OAAO;KACV;;IAED,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;IAErB,MAAM,CAAC,QAAQ,CAAC,gBAAgB,CAAC,WAAW,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;IACvE,MAAM,CAAC,mBAAmB,CAAC,SAAS,EAAE,IAAI,CAAC,UAAU,EAAE,KAAK,CAAC,CAAC;;IAE9D,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;;IAElD,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU;IACjC;QACI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KACvD;CACJ,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;AAC/D;IACI,IAAI,CAAC,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,qBAAqB;IAChD;QACI,OAAO;KACV;;IAED,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;;IAEtB,MAAM,CAAC,QAAQ,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;IAC1E,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,IAAI,CAAC,UAAU,EAAE,KAAK,CAAC,CAAC;;IAE3D,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;;IAE7C,IAAI,IAAI,CAAC,GAAG,CAAC,UAAU;IACvB;QACI,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KAC7C;CACJ,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,uBAAuB,GAAG,SAAS,uBAAuB,EAAE,aAAa;AACxG;IACI,IAAI,CAAC,aAAa,CAAC,OAAO;IAC1B;QACI,OAAO;KACV;;IAED,IAAI,aAAa,CAAC,UAAU,IAAI,aAAa,CAAC,WAAW;IACzD;QACI,IAAI,CAAC,aAAa,CAAC,iBAAiB;QACpC;YACI,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC;SAChC;;QAED,aAAa,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;KAC1C;;IAED,IAAI,QAAQ,GAAG,aAAa,CAAC,QAAQ,CAAC;;IAEtC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;IACxC;QACI,IAAI,CAAC,uBAAuB,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;KAC7C;CACJ,CAAC;;;;;;;AAOF,oBAAoB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;AACvD;IACI,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,iBAAiB;IACpC;QACI,OAAO;KACV;;;IAGD,IAAI,CAAC,uBAAuB,CAAC,IAAI,CAAC,QAAQ,CAAC,mBAAmB,CAAC,CAAC;;IAEhE,IAAI,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,qBAAqB,EAAE,CAAC;IACtD,IAAI,EAAE,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC;IAC1C,IAAI,EAAE,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC;;IAE5C,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;;IAEnB,GAAG,CAAC,KAAK,CAAC,IAAI,GAAG,CAAC,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC;IACpC,GAAG,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;IAClC,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,IAAI,IAAI,CAAC;IAC/C,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,IAAI,IAAI,CAAC;;IAEjD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;IAC7C;QACI,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;;QAE7B,IAAI,KAAK,CAAC,QAAQ,KAAK,IAAI,CAAC,QAAQ;QACpC;YACI,KAAK,CAAC,iBAAiB,GAAG,KAAK,CAAC;;YAEhC,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;YACjC,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;YAC3C,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;YACrC,KAAK,CAAC,cAAc,GAAG,IAAI,CAAC;;YAE5B,CAAC,EAAE,CAAC;;YAEJ,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,KAAK,CAAC;YAC9B;gBACI,IAAI,CAAC,UAAU,EAAE,CAAC;aACrB;SACJ;;QAED;;YAEI,GAAG,GAAG,KAAK,CAAC,cAAc,CAAC;YAC3B,IAAI,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC;YAC5B,IAAI,EAAE,GAAG,KAAK,CAAC,cAAc,CAAC;;YAE9B,IAAI,KAAK,CAAC,OAAO;YACjB;gBACI,GAAG,CAAC,KAAK,CAAC,IAAI,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,OAAO,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,IAAI,CAAC;gBAC5D,GAAG,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,OAAO,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,IAAI,CAAC;;gBAE3D,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,CAAC,OAAO,CAAC,KAAK,GAAG,EAAE,CAAC,CAAC,GAAG,EAAE,IAAI,IAAI,CAAC;gBACrD,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC,GAAG,EAAE,IAAI,IAAI,CAAC;aAC1D;;YAED;gBACI,OAAO,GAAG,KAAK,CAAC,SAAS,EAAE,CAAC;;gBAE5B,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;;gBAEzB,GAAG,CAAC,KAAK,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,IAAI,IAAI,CAAC;gBACzC,GAAG,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,IAAI,IAAI,CAAC;;gBAExC,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,CAAC,OAAO,CAAC,KAAK,GAAG,EAAE,IAAI,IAAI,CAAC;gBAC9C,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,MAAM,GAAG,EAAE,IAAI,IAAI,CAAC;;;gBAGhD,IAAI,GAAG,CAAC,KAAK,KAAK,KAAK,CAAC,eAAe,IAAI,KAAK,CAAC,eAAe,KAAK,IAAI;gBACzE;oBACI,GAAG,CAAC,KAAK,GAAG,KAAK,CAAC,eAAe,CAAC;iBACrC;gBACD,IAAI,GAAG,CAAC,YAAY,CAAC,YAAY,CAAC,KAAK,KAAK,CAAC,cAAc;uBACpD,KAAK,CAAC,cAAc,KAAK,IAAI;gBACpC;oBACI,GAAG,CAAC,YAAY,CAAC,YAAY,EAAE,KAAK,CAAC,cAAc,CAAC,CAAC;iBACxD;aACJ;SACJ;KACJ;;;IAGD,IAAI,CAAC,QAAQ,EAAE,CAAC;CACnB,CAAC;;;;;;;AAOF,oBAAoB,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,OAAO;AACxE;IACI,IAAI,OAAO,CAAC,CAAC,GAAG,CAAC;IACjB;QACI,OAAO,CAAC,KAAK,IAAI,OAAO,CAAC,CAAC,CAAC;QAC3B,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC;KACjB;;IAED,IAAI,OAAO,CAAC,CAAC,GAAG,CAAC;IACjB;QACI,OAAO,CAAC,MAAM,IAAI,OAAO,CAAC,CAAC,CAAC;QAC5B,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC;KACjB;;IAED,IAAI,OAAO,CAAC,CAAC,GAAG,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK;IACnD;QACI,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,GAAG,OAAO,CAAC,CAAC,CAAC;KACnD;;IAED,IAAI,OAAO,CAAC,CAAC,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM;IACrD;QACI,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC;KACrD;CACJ,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,aAAa;AAC1E;;;IAGI,IAAI,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;;IAE1B,IAAI,CAAC,GAAG;IACR;QACI,GAAG,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;QAEvC,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,cAAc,GAAG,IAAI,CAAC;QACxC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,cAAc,GAAG,IAAI,CAAC;QACzC,GAAG,CAAC,KAAK,CAAC,eAAe,GAAG,IAAI,CAAC,KAAK,GAAG,mBAAmB,GAAG,aAAa,CAAC;QAC7E,GAAG,CAAC,KAAK,CAAC,QAAQ,GAAG,UAAU,CAAC;QAChC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,gBAAgB,CAAC;QACpC,GAAG,CAAC,KAAK,CAAC,WAAW,GAAG,MAAM,CAAC;;;QAG/B,IAAI,SAAS,CAAC,SAAS,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;QAC5D;;YAEI,GAAG,CAAC,YAAY,CAAC,WAAW,EAAE,KAAK,CAAC,CAAC;SACxC;;QAED;YACI,GAAG,CAAC,YAAY,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC;SAC3C;;QAED,IAAI,SAAS,CAAC,SAAS,CAAC,KAAK,CAAC,cAAc,CAAC;QAC7C;;YAEI,GAAG,CAAC,YAAY,CAAC,eAAe,EAAE,WAAW,CAAC,CAAC;SAClD;;QAED;;YAEI,GAAG,CAAC,YAAY,CAAC,eAAe,EAAE,MAAM,CAAC,CAAC;SAC7C;;QAED,GAAG,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;QACxD,GAAG,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;QACxD,GAAG,CAAC,gBAAgB,CAAC,UAAU,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;KACjE;;IAED,IAAI,aAAa,CAAC,eAAe,IAAI,aAAa,CAAC,eAAe,KAAK,IAAI;IAC3E;QACI,GAAG,CAAC,KAAK,GAAG,aAAa,CAAC,eAAe,CAAC;KAC7C;SACI,IAAI,CAAC,aAAa,CAAC,cAAc;gBAC1B,aAAa,CAAC,cAAc,KAAK,IAAI;IACjD;QACI,GAAG,CAAC,KAAK,GAAG,gBAAgB,IAAI,aAAa,CAAC,QAAQ,CAAC,CAAC;KAC3D;;IAED,IAAI,aAAa,CAAC,cAAc;WACzB,aAAa,CAAC,cAAc,KAAK,IAAI;IAC5C;QACI,GAAG,CAAC,YAAY,CAAC,YAAY,EAAE,aAAa,CAAC,cAAc,CAAC,CAAC;KAChE;;;;IAID,aAAa,CAAC,iBAAiB,GAAG,IAAI,CAAC;IACvC,aAAa,CAAC,cAAc,GAAG,GAAG,CAAC;IACnC,GAAG,CAAC,aAAa,GAAG,aAAa,CAAC;;IAElC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;IAClC,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,aAAa,CAAC,cAAc,CAAC,CAAC;IACnD,aAAa,CAAC,cAAc,CAAC,QAAQ,GAAG,aAAa,CAAC,QAAQ,CAAC;CAClE,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC;AAC9D;IACI,IAAI,kBAAkB,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC;;IAE3D,kBAAkB,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,OAAO,EAAE,kBAAkB,CAAC,SAAS,CAAC,CAAC;IAChG,kBAAkB,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,YAAY,EAAE,kBAAkB,CAAC,SAAS,CAAC,CAAC;IACrG,kBAAkB,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,KAAK,EAAE,kBAAkB,CAAC,SAAS,CAAC,CAAC;CACjG,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC;AAC9D;IACI,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,WAAW,EAAE,KAAK,CAAC;IAC9C;QACI,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;KACnD;IACD,IAAI,kBAAkB,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC;;IAE3D,kBAAkB,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,WAAW,EAAE,kBAAkB,CAAC,SAAS,CAAC,CAAC;CACvG,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,CAAC;AACpE;IACI,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,WAAW,EAAE,KAAK,CAAC;IAC9C;QACI,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC;KAChD;IACD,IAAI,kBAAkB,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC;;IAE3D,kBAAkB,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,UAAU,EAAE,kBAAkB,CAAC,SAAS,CAAC,CAAC;CACtG,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,CAAC;AAClE;IACI,IAAI,CAAC,CAAC,OAAO,KAAK,YAAY;IAC9B;QACI,OAAO;KACV;;IAED,IAAI,CAAC,QAAQ,EAAE,CAAC;CACnB,CAAC;;;;;;;;AAQF,oBAAoB,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,CAAC;AACtE;IACI,IAAI,CAAC,CAAC,SAAS,KAAK,CAAC,IAAI,CAAC,CAAC,SAAS,KAAK,CAAC;IAC1C;QACI,OAAO;KACV;;IAED,IAAI,CAAC,UAAU,EAAE,CAAC;CACrB,CAAC;;;;;;AAMF,oBAAoB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AACzD;IACI,IAAI,CAAC,gBAAgB,EAAE,CAAC;IACxB,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC;;IAEhB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;IAC7C;QACI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,IAAI,CAAC;KAC/B;;IAED,MAAM,CAAC,QAAQ,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;IAC1E,MAAM,CAAC,mBAAmB,CAAC,SAAS,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;;IAEvD,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;IACrB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;CACxB,CAAC;;ACxnBF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgDA,IAAI,MAAM,GAAG,SAAS,MAAM,CAAC,IAAI;AACjC;IACI,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;IAChB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;CACxB,CAAC;;AAEF,IAAIF,oBAAkB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;AAMxF,MAAM,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACrE;IACI,IAAI,SAAS,CAAC,MAAM,GAAG,CAAC;IACxB;QACI,MAAM,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC;KAC5C;;IAED,IAAI,GAAG,GAAG,IAAI,CAAC;QACX,IAAI,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;QACpB,IAAI,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC;;IAE1B,IAAI,CAAC,WAAW,EAAE,CAAC;;IAEnB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE;IAChD;QACI,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;KAClD;;IAED,IAAI,KAAK,KAAK,IAAI,CAAC,KAAK;IACxB;QACI,IAAI,CAAC,WAAW,EAAE,CAAC;KACtB;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;AAEF,MAAM,CAAC,SAAS,CAAC,qBAAqB,GAAG,SAAS,qBAAqB;AACvE;IACI,IAAI,IAAI,CAAC,WAAW,GAAG,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC;IACjD;QACI,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;QACrB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;KACpC;CACJ,CAAC;;;;;;;;;;;;;;;;;;;AAmBF,MAAM,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,IAAI;AACzC;IACI,IAAI,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC;IACpB;QACI,IAAI,CAAC,qBAAqB,EAAE,CAAC;QAC7B,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QAClB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACzB;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;AAMF,MAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,IAAI;AAC/C;IACI,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;;IAErC,IAAI,KAAK,KAAK,CAAC,CAAC;IAChB;QACI,IAAI,CAAC,qBAAqB,EAAE,CAAC;QAC7B,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;KAC/B;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;AAMF,MAAM,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,IAAI;AACnD;IACI,OAAO,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;CAC1C,CAAC;;;;;AAKF,MAAM,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;AAC/C;IACI,IAAI,CAAC,qBAAqB,EAAE,CAAC;IAC7B,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;;IAEtB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;AAKF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC3C;IACI,IAAI,CAAC,SAAS,EAAE,CAAC;IACjB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;CACrB,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;AAC/B;IACI,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,KAAK,CAAC,CAAC;CAClC,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;AAC9B;IACI,OAAO,IAAI,CAAC,KAAK,CAAC;CACrB,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,MAAM,CAAC,SAAS,EAAEA,oBAAkB,EAAE,CAAC;;;;;;;;AAQhE,MAAM,CAAC,SAAS,CAAC,QAAQ,GAAG,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC;;;;;;;;AAQlD,MAAM,CAAC,SAAS,CAAC,GAAG,GAAG,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC;;AClN7C;;;;;;;AAOA,AACA;;;;;;;;;;AAUA,QAAQ,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;;;;;;;;;;;;AAkB5B,IAAI,eAAe,GAAG;IAClB,WAAW,EAAE,EAAE;IACf,IAAI,EAAE,EAAE;IACR,MAAM,EAAE,CAAC;IACT,GAAG,EAAE,CAAC,EAAE;IACR,OAAO,EAAE,CAAC,EAAE;CACf,CAAC;;;;;;;;;AASF,IAAI,cAAc,GAAG,SAAS,cAAc,CAAC,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI;AACxE;IACI,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,IAAI,CAAC;IACzC,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,CAAC,CAAC;IACxC,KAAK,IAAI,KAAK,KAAK,CAAC,GAAG,IAAI,GAAG,KAAK,CAAC;;;;;;;IAOpC,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;;;;;;;IAOb,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;;;;;;IAOvB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;;;;;;;IAOzB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;IAOjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;IAOjB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;;;;;IAOrB,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;CAC3B,CAAC;;;;;;;;;AASF,cAAc,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,EAAE,EAAE,OAAO;AAC5D;IACI,OAAO,GAAG,OAAO,IAAI,IAAI,CAAC;;IAE1B,OAAO,IAAI,CAAC,EAAE,KAAK,EAAE,IAAI,IAAI,CAAC,OAAO,KAAK,OAAO,CAAC;CACrD,CAAC;;;;;;;;AAQF,cAAc,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,SAAS;AACxD;IACI,IAAI,IAAI,CAAC,EAAE;IACX;QACI,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;SACzC;;QAED;YACI,IAAI,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC;SACtB;KACJ;;IAED,IAAI,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC;;IAEzB,IAAI,IAAI,CAAC,IAAI;IACb;QACI,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;KACtB;;;;IAID,IAAI,IAAI,CAAC,UAAU;IACnB;QACI,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;KACpB;;IAED,OAAO,QAAQ,CAAC;CACnB,CAAC;;;;;;;AAOF,cAAc,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,QAAQ;AAC7D;IACI,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;IACzB,IAAI,QAAQ,CAAC,IAAI;IACjB;QACI,QAAQ,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;KACjC;IACD,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;IAC1B,QAAQ,CAAC,IAAI,GAAG,IAAI,CAAC;CACxB,CAAC;;;;;;;;;AASF,cAAc,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,IAAI;AACzD;QACQ,KAAK,IAAI,KAAK,KAAK,CAAC,GAAG,IAAI,GAAG,KAAK,CAAC;;IAExC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;IACf,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;IAGpB,IAAI,IAAI,CAAC,QAAQ;IACjB;QACI,IAAI,CAAC,QAAQ,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;KAClC;;IAED,IAAI,IAAI,CAAC,IAAI;IACb;QACI,IAAI,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;KACtC;;;IAGD,IAAI,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC;;;IAGzB,IAAI,CAAC,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,QAAQ,CAAC;IACnC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;IAErB,OAAO,QAAQ,CAAC;CACnB,CAAC;;;;;;;;;;;AAWF,IAAI,MAAM,GAAG,SAAS,MAAM;AAC5B;IACI,IAAI,MAAM,GAAG,IAAI,CAAC;;;;;;;IAOlB,IAAI,CAAC,KAAK,GAAG,IAAI,cAAc,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;IAOtD,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;;;;;;;IAQvB,IAAI,CAAC,aAAa,GAAG,GAAG,CAAC;;;;;;;IAOzB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;;;;;;;;;IAUvB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;;;;;;;;;;IAWvB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;;;;;;;;;;;;;;IAcnB,IAAI,CAAC,OAAO,GAAG,CAAC,GAAG,QAAQ,CAAC,WAAW,CAAC;;;;;;;;;;;;;IAaxC,IAAI,CAAC,SAAS,GAAG,CAAC,GAAG,QAAQ,CAAC,WAAW,CAAC;;;;;;;;;;;;IAY1C,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC,CAAC;;;;;;;;;;;;IAYnB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;;;;;;IAaf,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;;;;;;;IAQrB,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;;;;;;;;;IASxB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;;;;;;;;;;;;;IAarB,IAAI,CAAC,KAAK,GAAG,UAAU,IAAI,EAAE;QACzB,MAAM,CAAC,UAAU,GAAG,IAAI,CAAC;;QAEzB,IAAI,MAAM,CAAC,OAAO;QAClB;;YAEI,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;YAEpB,IAAI,MAAM,CAAC,OAAO,IAAI,MAAM,CAAC,UAAU,KAAK,IAAI,IAAI,MAAM,CAAC,KAAK,CAAC,IAAI;YACrE;gBACI,MAAM,CAAC,UAAU,GAAG,qBAAqB,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;aAC3D;SACJ;KACJ,CAAC;CACL,CAAC;;AAEF,IAAIA,oBAAkB,GAAG,EAAE,GAAG,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;AACvH,IAAIG,iBAAe,GAAG,EAAE,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;AASxF,MAAM,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;AAC7D;IACI,IAAI,IAAI,CAAC,UAAU,KAAK,IAAI,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI;IAC/C;;QAEI,IAAI,CAAC,QAAQ,GAAG,WAAW,CAAC,GAAG,EAAE,CAAC;QAClC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC;QAChC,IAAI,CAAC,UAAU,GAAG,qBAAqB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KACvD;CACJ,CAAC;;;;;;;AAOF,MAAM,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;AAC3D;IACI,IAAI,IAAI,CAAC,UAAU,KAAK,IAAI;IAC5B;QACI,oBAAoB,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QACtC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;KAC1B;CACJ,CAAC;;;;;;;;;;;;AAYF,MAAM,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;AAC7D;IACI,IAAI,IAAI,CAAC,OAAO;IAChB;QACI,IAAI,CAAC,gBAAgB,EAAE,CAAC;KAC3B;SACI,IAAI,IAAI,CAAC,SAAS;IACvB;QACI,IAAI,CAAC,KAAK,EAAE,CAAC;KAChB;CACJ,CAAC;;;;;;;;;;;AAWF,MAAM,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,QAAQ;AAC1D;QACQ,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,eAAe,CAAC,MAAM,CAAC;;IAEjE,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,cAAc,CAAC,EAAE,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC,CAAC;CACvE,CAAC;;;;;;;;;;AAUF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,QAAQ;AAClE;QACQ,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,eAAe,CAAC,MAAM,CAAC;;IAEjE,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,cAAc,CAAC,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC,CAAC;CAC7E,CAAC;;;;;;;;;;;AAWF,MAAM,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,QAAQ;AAC/D;;IAEI,IAAI,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;IAC9B,IAAI,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC;;;IAG1B,IAAI,CAAC,OAAO;IACZ;QACI,QAAQ,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;KAC9B;;IAED;;QAEI,OAAO,OAAO;QACd;YACI,IAAI,QAAQ,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ;YACxC;gBACI,QAAQ,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;gBAC3B,MAAM;aACT;YACD,QAAQ,GAAG,OAAO,CAAC;YACnB,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC;SAC1B;;;QAGD,IAAI,CAAC,QAAQ,CAAC,QAAQ;QACtB;YACI,QAAQ,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;SAC9B;KACJ;;IAED,IAAI,CAAC,gBAAgB,EAAE,CAAC;;IAExB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;;AAUF,MAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,EAAE,EAAE,OAAO;AACtD;IACI,IAAI,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;;IAE/B,OAAO,QAAQ;IACf;;;;QAII,IAAI,QAAQ,CAAC,KAAK,CAAC,EAAE,EAAE,OAAO,CAAC;QAC/B;YACI,QAAQ,GAAG,QAAQ,CAAC,OAAO,EAAE,CAAC;SACjC;;QAED;YACI,QAAQ,GAAG,QAAQ,CAAC,IAAI,CAAC;SAC5B;KACJ;;IAED,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI;IACpB;QACI,IAAI,CAAC,eAAe,EAAE,CAAC;KAC1B;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;AAMF,MAAM,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACvC;IACI,IAAI,CAAC,IAAI,CAAC,OAAO;IACjB;QACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,gBAAgB,EAAE,CAAC;KAC3B;CACJ,CAAC;;;;;;AAMF,MAAM,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;AACrC;IACI,IAAI,IAAI,CAAC,OAAO;IAChB;QACI,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;QACrB,IAAI,CAAC,eAAe,EAAE,CAAC;KAC1B;CACJ,CAAC;;;;;;AAMF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC3C;IACI,IAAI,CAAC,IAAI,CAAC,UAAU;IACpB;QACI,IAAI,CAAC,IAAI,EAAE,CAAC;;QAEZ,IAAI,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;;QAE/B,OAAO,QAAQ;QACf;YACI,QAAQ,GAAG,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;SACrC;;QAED,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC;QACrB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB;CACJ,CAAC;;;;;;;;;;;;;;;AAeF,MAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,WAAW;AACtD;QACQ,KAAK,WAAW,KAAK,KAAK,CAAC,GAAG,WAAW,GAAG,WAAW,CAAC,GAAG,EAAE,CAAC;;IAElE,IAAI,SAAS,CAAC;;;;;;;;;;;;;;;;;IAiBd,IAAI,WAAW,GAAG,IAAI,CAAC,QAAQ;IAC/B;;QAEI,SAAS,GAAG,IAAI,CAAC,SAAS,GAAG,WAAW,GAAG,IAAI,CAAC,QAAQ,CAAC;;;QAGzD,IAAI,SAAS,GAAG,IAAI,CAAC,aAAa;QAClC;YACI,SAAS,GAAG,IAAI,CAAC,aAAa,CAAC;SAClC;;QAED,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC;;;;;QAKxB,IAAI,IAAI,CAAC,aAAa;QACtB;YACI,IAAI,KAAK,GAAG,WAAW,GAAG,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;YAE9C,IAAI,KAAK,GAAG,IAAI,CAAC,aAAa;YAC9B;gBACI,OAAO;aACV;;YAED,IAAI,CAAC,UAAU,GAAG,WAAW,IAAI,KAAK,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC;SAChE;;QAED,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC;QACzB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,OAAO,GAAG,QAAQ,CAAC,WAAW,CAAC;;;;QAIrD,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;;;QAGtB,IAAI,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC;;QAEzB,OAAO,QAAQ;QACf;YACI,QAAQ,GAAG,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SAC5C;;QAED,IAAI,CAAC,IAAI,CAAC,IAAI;QACd;YACI,IAAI,CAAC,eAAe,EAAE,CAAC;SAC1B;KACJ;;IAED;QACI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;KACtD;;IAED,IAAI,CAAC,QAAQ,GAAG,WAAW,CAAC;CAC/B,CAAC;;;;;;;;;;;;AAYFH,oBAAkB,CAAC,GAAG,CAAC,GAAG,GAAG;AAC7B;IACI,OAAO,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC;CAChC,CAAC;;;;;;;;;;;;;AAaFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC;CACpC,CAAC;;AAEFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,GAAG;AAC7C;;IAEI,IAAI,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;IAGxC,IAAI,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC,WAAW,CAAC,CAAC;;IAEzE,IAAI,CAAC,aAAa,GAAG,CAAC,GAAG,OAAO,CAAC;CACpC,CAAC;;;;;;;;;;;;AAYFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;AAChC;IACI,IAAI,IAAI,CAAC,aAAa;IACtB;QACI,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC;KAChD;;IAED,OAAO,CAAC,CAAC;CACZ,CAAC;;AAEFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,GAAG;AAC7C;IACI,IAAI,GAAG,KAAK,CAAC;IACb;QACI,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;KAC1B;;IAED;;QAEI,IAAI,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;QAExC,IAAI,CAAC,aAAa,GAAG,CAAC,IAAI,MAAM,GAAG,IAAI,CAAC,CAAC;KAC5C;CACJ,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6CFG,iBAAe,CAAC,MAAM,CAAC,GAAG,GAAG;AAC7B;IACI,IAAI,CAAC,MAAM,CAAC,OAAO;IACnB;QACI,IAAI,MAAM,GAAG,MAAM,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;QAE3C,MAAM,CAAC,SAAS,GAAG,IAAI,CAAC;QACxB,MAAM,CAAC,UAAU,GAAG,IAAI,CAAC;KAC5B;;IAED,OAAO,MAAM,CAAC,OAAO,CAAC;CACzB,CAAC;;;;;;;;;;;;AAYFA,iBAAe,CAAC,MAAM,CAAC,GAAG,GAAG;AAC7B;IACI,IAAI,CAAC,MAAM,CAAC,OAAO;IACnB;QACI,IAAI,MAAM,GAAG,MAAM,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;QAE3C,MAAM,CAAC,SAAS,GAAG,IAAI,CAAC;QACxB,MAAM,CAAC,UAAU,GAAG,IAAI,CAAC;KAC5B;;IAED,OAAO,MAAM,CAAC,OAAO,CAAC;CACzB,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,MAAM,CAAC,SAAS,EAAEH,oBAAkB,EAAE,CAAC;AAChE,MAAM,CAAC,gBAAgB,EAAE,MAAM,EAAEG,iBAAe,EAAE,CAAC;;;;;;;;;;;;;AAanD,IAAI,YAAY,GAAG,SAAS,YAAY,IAAI,EAAE,CAAC;;AAE/C,YAAY,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,OAAO;AAC1C;QACQ,IAAI,MAAM,GAAG,IAAI,CAAC;;;IAGtB,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC;QACpB,SAAS,EAAE,IAAI;QACf,YAAY,EAAE,KAAK;KACtB,EAAE,OAAO,CAAC,CAAC;;;IAGZ,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,QAAQ;QAChC;YACI,GAAG,EAAE,SAAS,GAAG,CAAC,MAAM;YACxB;gBACI,IAAI,IAAI,CAAC,OAAO;gBAChB;oBACI,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;iBAC1C;gBACD,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;gBACtB,IAAI,MAAM;gBACV;oBACI,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,EAAE,eAAe,CAAC,GAAG,CAAC,CAAC;iBACtD;aACJ;YACD,GAAG,EAAE,SAAS,GAAG;YACjB;gBACI,OAAO,IAAI,CAAC,OAAO,CAAC;aACvB;SACJ,CAAC,CAAC;;;;;;;IAOP,IAAI,CAAC,IAAI,GAAG,YAAY;QACpB,MAAM,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC;KACzB,CAAC;;;;;;;IAOF,IAAI,CAAC,KAAK,GAAG,YAAY;QACrB,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC;KAC1B,CAAC;;;;;;;;;;IAUF,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;;;;IAUpB,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,YAAY,GAAG,MAAM,CAAC,MAAM,GAAG,IAAI,MAAM,EAAE,CAAC;;;IAGlE,IAAI,OAAO,CAAC,SAAS;IACrB;QACI,IAAI,CAAC,KAAK,EAAE,CAAC;KAChB;CACJ,CAAC;;;;;;;;AAQF,YAAY,CAAC,OAAO,GAAG,SAAS,OAAO;AACvC;IACI,IAAI,IAAI,CAAC,OAAO;IAChB;QACI,IAAI,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC;;QAE7B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,SAAS,CAAC,OAAO,EAAE,CAAC;KACvB;CACJ,CAAC;;ACv7BF;;;;;;;AAOA,AAOA;;;;;;;;;AASA,IAAI,QAAQ,GAAG,SAAS,QAAQ,CAAC,KAAK,EAAE,MAAM;AAC9C;IACI,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;IAClC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC;;;;;;;IAOpC,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;;;;;;;IAOpB,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;;;;;;;;IAQtB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;;;;;;;;;IAUvB,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;;;;;;;;IAQtB,IAAI,CAAC,QAAQ,GAAG,IAAI,MAAM,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC;;;;;;;;IAQ7C,IAAI,CAAC,QAAQ,GAAG,IAAI,MAAM,CAAC,QAAQ,CAAC,CAAC;;;;;;;;IAQrC,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC;CAC3C,CAAC;;AAEF,IAAIH,oBAAkB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;AAOxH,QAAQ,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,WAAW;AACpD;IACI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IAC/B,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IAC/B,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;;;;IAI9B,IAAI,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,OAAO;IAC/B;QACI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;KAChD;CACJ,CAAC;;;;;;;AAOF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,WAAW;AACxD;IACI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;IAClC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;IAClC,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;CACpC,CAAC;;;;;;;AAOF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,KAAK,EAAE,MAAM;AAC1D;IACI,IAAI,KAAK,KAAK,IAAI,CAAC,MAAM,IAAI,MAAM,KAAK,IAAI,CAAC,OAAO;IACpD;QACI,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACpB,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;QACtB,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;KACpC;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;AAC/B;IACI,OAAO,CAAC,CAAC,IAAI,CAAC,MAAM,IAAI,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC;CAC1C,CAAC;;;;;AAKF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;AAC3C;IACI,IAAI,CAAC,IAAI,CAAC,SAAS;IACnB;QACI,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC;KACvB;CACJ,CAAC;;;;;;;;AAQF,QAAQ,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;AACvC;IACI,OAAO,OAAO,CAAC,OAAO,EAAE,CAAC;CAC5B,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;AAC/B;IACI,OAAO,IAAI,CAAC,MAAM,CAAC;CACtB,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,IAAI,CAAC,OAAO,CAAC;CACvB,CAAC;;;;;;;;;;AAUF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS;AAC7E;IACI,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;;;;AAUF,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS;AAC3E;IACI,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;AAOF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC7C;;CAEC,CAAC;;;;;;;AAOF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC7C;IACI,IAAI,CAAC,IAAI,CAAC,SAAS;IACnB;QACI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;QACtB,IAAI,CAAC,OAAO,EAAE,CAAC;QACf,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,CAAC;QACzB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,QAAQ,CAAC,SAAS,EAAE,CAAC;QAC1B,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QACrB,IAAI,CAAC,QAAQ,CAAC,SAAS,EAAE,CAAC;QAC1B,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;KACxB;CACJ,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,QAAQ,CAAC,SAAS,EAAEA,oBAAkB,EAAE,CAAC;;;;;;;;AAQlE,IAAI,iBAAiB,iBAAiB,UAAU,QAAQ,EAAE;IACtD,SAAS,iBAAiB,CAAC,MAAM;IACjC;QACI,IAAI,KAAK,GAAG,MAAM,CAAC,YAAY,IAAI,MAAM,CAAC,UAAU,IAAI,MAAM,CAAC,KAAK,CAAC;QACrE,IAAI,MAAM,GAAG,MAAM,CAAC,aAAa,IAAI,MAAM,CAAC,WAAW,IAAI,MAAM,CAAC,MAAM,CAAC;;QAEzE,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;;;;;;;QAOnC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;;;;QASrB,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;KAC3B;;IAED,KAAK,QAAQ,GAAG,iBAAiB,CAAC,SAAS,GAAG,QAAQ,CAAC;IACvD,iBAAiB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,QAAQ,IAAI,QAAQ,CAAC,SAAS,EAAE,CAAC;IAC9E,iBAAiB,CAAC,SAAS,CAAC,WAAW,GAAG,iBAAiB,CAAC;;;;;;;;;IAS5D,iBAAiB,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,OAAO,EAAE,GAAG,EAAE,WAAW;IAC/E;QACI,IAAI,WAAW,KAAK,SAAS,IAAI,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC;QAC3D;YACI,OAAO,CAAC,WAAW,GAAG,oBAAoB,CAAC,GAAG,CAAC,CAAC;SACnD;aACI,IAAI,WAAW,KAAK,KAAK;QAC9B;YACI,OAAO,CAAC,WAAW,GAAG,OAAO,WAAW,KAAK,QAAQ,GAAG,WAAW,GAAG,WAAW,CAAC;SACrF;KACJ,CAAC;;;;;;;;;;IAUF,iBAAiB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM;IAC9F;QACI,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;QACrB,IAAI,KAAK,GAAG,WAAW,CAAC,SAAS,CAAC;QAClC,IAAI,MAAM,GAAG,WAAW,CAAC,UAAU,CAAC;;QAEpC,MAAM,GAAG,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC;;QAE/B,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,8BAA8B,EAAE,WAAW,CAAC,gBAAgB,CAAC,CAAC;;QAEhF,IAAI,CAAC,IAAI,CAAC,UAAU;eACb,WAAW,CAAC,MAAM,KAAK,EAAE,CAAC,UAAU;eACpC,SAAS,CAAC,KAAK,KAAK,KAAK;eACzB,SAAS,CAAC,MAAM,KAAK,MAAM;QAClC;YACI,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC,UAAU,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,WAAW,CAAC,MAAM,EAAE,WAAW,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;SAC1F;;QAED;YACI,SAAS,CAAC,KAAK,GAAG,KAAK,CAAC;YACxB,SAAS,CAAC,MAAM,GAAG,MAAM,CAAC;;YAE1B,EAAE,CAAC,UAAU,CAAC,WAAW,CAAC,MAAM,EAAE,CAAC,EAAE,WAAW,CAAC,MAAM,EAAE,WAAW,CAAC,MAAM,EAAE,WAAW,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;SAC1G;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,iBAAiB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;IACpD;QACI,IAAI,IAAI,CAAC,SAAS;QAClB;YACI,OAAO;SACV;;QAED,IAAI,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,YAAY,IAAI,IAAI,CAAC,MAAM,CAAC,UAAU,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;QACpF,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,aAAa,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;;QAExF,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;;QAE3B,QAAQ,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACxC,CAAC;;;;;;;;IAQF,iBAAiB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACtD;QACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;KACtB,CAAC;;IAEF,OAAO,iBAAiB,CAAC;CAC5B,CAAC,QAAQ,CAAC,CAAC,CAAC;;;;;;;;AAQb,IAAI,aAAa,iBAAiB,UAAU,iBAAiB,EAAE;IAC3D,SAAS,aAAa,CAAC,MAAM,EAAE,OAAO;IACtC;QACI,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;QAExB,IAAI,EAAE,MAAM,YAAY,gBAAgB,CAAC;QACzC;YACI,IAAI,YAAY,GAAG,IAAI,KAAK,EAAE,CAAC;;YAE/B,iBAAiB,CAAC,WAAW,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,WAAW,CAAC,CAAC;;YAEzE,YAAY,CAAC,GAAG,GAAG,MAAM,CAAC;YAC1B,MAAM,GAAG,YAAY,CAAC;SACzB;;QAED,iBAAiB,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;;;;;;QAMrC,IAAI,CAAC,MAAM,CAAC,QAAQ,IAAI,CAAC,CAAC,IAAI,CAAC,MAAM,IAAI,CAAC,CAAC,IAAI,CAAC,OAAO;QACvD;YACI,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;YAChB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;SACpB;;;;;;QAMD,IAAI,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,CAAC;;;;;;;QAOtB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;;;;;QAOrB,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;;;;;;;QAO5B,IAAI,CAAC,YAAY,GAAG,CAAC,OAAO,CAAC,YAAY,KAAK,SAAS;cACjD,OAAO,CAAC,YAAY,GAAG,QAAQ,CAAC,mBAAmB,KAAK,CAAC,CAAC,MAAM,CAAC,iBAAiB,CAAC;;;;;;;;QAQzF,IAAI,CAAC,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,KAAK,KAAK,CAAC;;;;;;;QAO3D,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;;QAQnB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;QAElB,IAAI,OAAO,CAAC,QAAQ,KAAK,KAAK;QAC9B;YACI,IAAI,CAAC,IAAI,EAAE,CAAC;SACf;KACJ;;IAED,KAAK,iBAAiB,GAAG,aAAa,CAAC,SAAS,GAAG,iBAAiB,CAAC;IACrE,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,iBAAiB,IAAI,iBAAiB,CAAC,SAAS,EAAE,CAAC;IAC5F,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;;;;;;;IAQpD,aAAa,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,YAAY;IAC1D;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,IAAI,YAAY,KAAK,SAAS;QAC9B;YACI,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;SACpC;;QAED,IAAI,IAAI,CAAC,KAAK;QACd;YACI,OAAO,IAAI,CAAC,KAAK,CAAC;SACrB;;QAED,IAAI,CAAC,KAAK,GAAG,IAAI,OAAO,CAAC,UAAU,OAAO,EAAE;YACxC,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC;YAC/B,IAAI,GAAG,GAAG,MAAM,CAAC;YACjB,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;;YAExB,IAAI,SAAS,GAAG,YAAY;gBACxB,IAAI,MAAM,CAAC,SAAS;gBACpB;oBACI,OAAO;iBACV;gBACD,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC;gBACrB,MAAM,CAAC,OAAO,GAAG,IAAI,CAAC;;gBAEtB,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;gBAC3C,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC;;gBAEpB,IAAI,MAAM,CAAC,YAAY;gBACvB;oBACI,OAAO,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC;iBAC7B;;gBAED;oBACI,OAAO,CAAC,MAAM,CAAC,CAAC;iBACnB;aACJ,CAAC;;YAEF,IAAI,MAAM,CAAC,QAAQ,IAAI,MAAM,CAAC,GAAG;YACjC;gBACI,SAAS,EAAE,CAAC;aACf;;YAED;gBACI,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC;gBAC1B,MAAM,CAAC,OAAO,GAAG,UAAU,KAAK,EAAE,EAAE,OAAO,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC;aAC3E;SACJ,CAAC,CAAC;;QAEH,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAClD;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,IAAI,IAAI,CAAC,QAAQ,KAAK,IAAI;QAC1B;YACI,OAAO,IAAI,CAAC,QAAQ,CAAC;SACxB;QACD,IAAI,IAAI,CAAC,MAAM,KAAK,IAAI,IAAI,CAAC,MAAM,CAAC,iBAAiB;QACrD;YACI,OAAO,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;SAChC;;QAED,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC,iBAAiB,CAAC,IAAI,CAAC,MAAM;YAChD,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM;YAC3C;gBACI,gBAAgB,EAAE,IAAI,CAAC,gBAAgB,GAAG,aAAa,GAAG,MAAM;aACnE,CAAC;aACD,IAAI,CAAC,UAAU,MAAM,EAAE;gBACpB,IAAI,MAAM,CAAC,SAAS;gBACpB;oBACI,OAAO,OAAO,CAAC,MAAM,EAAE,CAAC;iBAC3B;gBACD,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC;gBACvB,MAAM,CAAC,MAAM,EAAE,CAAC;gBAChB,MAAM,CAAC,QAAQ,GAAG,IAAI,CAAC;;gBAEvB,OAAO,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;aAClC,CAAC,CAAC;;QAEP,OAAO,IAAI,CAAC,QAAQ,CAAC;KACxB,CAAC;;;;;;;;;;IAUF,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS;IAClF;QACI,WAAW,CAAC,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC;;QAErD,IAAI,CAAC,IAAI,CAAC,YAAY;QACtB;YACI,OAAO,iBAAiB,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS,CAAC,CAAC;SAC1F;QACD,IAAI,CAAC,IAAI,CAAC,MAAM;QAChB;;YAEI,IAAI,CAAC,OAAO,EAAE,CAAC;YACf,IAAI,CAAC,IAAI,CAAC,MAAM;YAChB;gBACI,OAAO,KAAK,CAAC;aAChB;SACJ;;QAED,iBAAiB,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;;QAE7F,IAAI,CAAC,IAAI,CAAC,cAAc;QACxB;;;YAGI,IAAI,IAAI,GAAG,IAAI,CAAC;;YAEhB,KAAK,IAAI,GAAG,IAAI,WAAW,CAAC,WAAW;YACvC;gBACI,IAAI,QAAQ,GAAG,WAAW,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;;gBAE5C,IAAI,QAAQ,KAAK,SAAS,IAAI,QAAQ,CAAC,OAAO,KAAK,WAAW,CAAC,OAAO;gBACtE;oBACI,IAAI,GAAG,KAAK,CAAC;oBACb,MAAM;iBACT;aACJ;;YAED,IAAI,IAAI;YACR;gBACI,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK;gBACrB;oBACI,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;iBACvB;;gBAED,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;aACtB;SACJ;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAClD;QACI,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC;QAC1B,IAAI,CAAC,MAAM,CAAC,OAAO,GAAG,IAAI,CAAC;;QAE3B,iBAAiB,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAE/C,IAAI,IAAI,CAAC,MAAM;QACf;YACI,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;YACpB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;SACtB;QACD,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QACrB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;IAEF,OAAO,aAAa,CAAC;CACxB,CAAC,iBAAiB,CAAC,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA4BtB,IAAI,SAAS,GAAG,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+BnB,SAAS,kBAAkB,CAAC,MAAM,EAAE,OAAO;AAC3C;IACI,IAAI,CAAC,MAAM;IACX;QACI,OAAO,IAAI,CAAC;KACf;;IAED,IAAI,SAAS,GAAG,EAAE,CAAC;;IAEnB,IAAI,OAAO,MAAM,KAAK,QAAQ;IAC9B;;QAEI,IAAI,MAAM,GAAG,CAAC,wBAAwB,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;;QAErD,IAAI,MAAM;QACV;YACI,SAAS,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;SACvC;KACJ;;IAED,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC;IAC9C;QACI,IAAI,cAAc,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;QAElC,IAAI,cAAc,CAAC,IAAI,IAAI,cAAc,CAAC,IAAI,CAAC,MAAM,EAAE,SAAS,CAAC;QACjE;YACI,OAAO,IAAI,cAAc,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;SAC9C;KACJ;;;;IAID,OAAO,IAAI,aAAa,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CAC7C;;;;;;;;;;;;AAYD,IAAI,cAAc,iBAAiB,UAAU,QAAQ,EAAE;IACnD,SAAS,cAAc,CAAC,MAAM,EAAE,OAAO;IACvC;QACI,IAAI,GAAG,GAAG,OAAO,IAAI,EAAE,CAAC;QACxB,IAAI,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC;QACtB,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;;QAExB,IAAI,CAAC,KAAK,IAAI,CAAC,MAAM;QACrB;YACI,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;SAC7D;;QAED,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;;;;;;;;QAQnC,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC;KACtB;;IAED,KAAK,QAAQ,GAAG,cAAc,CAAC,SAAS,GAAG,QAAQ,CAAC;IACpD,cAAc,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,QAAQ,IAAI,QAAQ,CAAC,SAAS,EAAE,CAAC;IAC3E,cAAc,CAAC,SAAS,CAAC,WAAW,GAAG,cAAc,CAAC;;;;;;;;;IAStD,cAAc,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS;IACnF;QACI,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;;QAErB,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,8BAA8B,EAAE,WAAW,CAAC,gBAAgB,CAAC,CAAC;;QAEhF,IAAI,SAAS,CAAC,KAAK,KAAK,WAAW,CAAC,KAAK,IAAI,SAAS,CAAC,MAAM,KAAK,WAAW,CAAC,MAAM;QACpF;YACI,EAAE,CAAC,aAAa;gBACZ,WAAW,CAAC,MAAM;gBAClB,CAAC;gBACD,CAAC;gBACD,CAAC;gBACD,WAAW,CAAC,KAAK;gBACjB,WAAW,CAAC,MAAM;gBAClB,WAAW,CAAC,MAAM;gBAClB,WAAW,CAAC,IAAI;gBAChB,IAAI,CAAC,IAAI;aACZ,CAAC;SACL;;QAED;YACI,SAAS,CAAC,KAAK,GAAG,WAAW,CAAC,KAAK,CAAC;YACpC,SAAS,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM,CAAC;;YAEtC,EAAE,CAAC,UAAU;gBACT,WAAW,CAAC,MAAM;gBAClB,CAAC;gBACD,SAAS,CAAC,cAAc;gBACxB,WAAW,CAAC,KAAK;gBACjB,WAAW,CAAC,MAAM;gBAClB,CAAC;gBACD,WAAW,CAAC,MAAM;gBAClB,SAAS,CAAC,IAAI;gBACd,IAAI,CAAC,IAAI;aACZ,CAAC;SACL;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,cAAc,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACnD;QACI,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;KACpB,CAAC;;;;;;;;;IASF,cAAc,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM;IAC3C;QACI,OAAO,MAAM,YAAY,YAAY;eAC9B,MAAM,YAAY,UAAU;eAC5B,MAAM,YAAY,WAAW,CAAC;KACxC,CAAC;;IAEF,OAAO,cAAc,CAAC;CACzB,CAAC,QAAQ,CAAC,CAAC,CAAC;;AAEb,IAAI,oBAAoB,GAAG;IACvB,SAAS,EAAE,WAAW,CAAC,OAAO;IAC9B,MAAM,EAAE,OAAO,CAAC,IAAI;IACpB,gBAAgB,EAAE,KAAK;CAC1B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA4BF,IAAI,WAAW,iBAAiB,UAAU,YAAY,EAAE;IACpD,SAAS,WAAW,CAAC,QAAQ,EAAE,OAAO;IACtC;QACI,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,IAAI,CAAC;QAC3C,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,IAAI,CAAC;;QAEzC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAExB,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;QAExB,IAAI,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,CAAC;QAChD,IAAI,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;QAC5B,IAAI,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,CAAC;QAChD,IAAI,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC;QAClC,IAAI,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;QAC1B,IAAI,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;QAC5B,IAAI,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;QAChC,IAAI,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;QAC5B,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;QACxB,IAAI,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;QAC5B,IAAI,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC;QACpC,IAAI,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;;;QAG9C,IAAI,QAAQ,IAAI,EAAE,QAAQ,YAAY,QAAQ,CAAC;QAC/C;YACI,QAAQ,GAAG,kBAAkB,CAAC,QAAQ,EAAE,eAAe,CAAC,CAAC;YACzD,QAAQ,CAAC,QAAQ,GAAG,IAAI,CAAC;SAC5B;;;;;;;;QAQD,IAAI,CAAC,KAAK,GAAG,KAAK,IAAI,CAAC,CAAC;;;;;;;;QAQxB,IAAI,CAAC,MAAM,GAAG,MAAM,IAAI,CAAC,CAAC;;;;;;;;QAQ1B,IAAI,CAAC,UAAU,GAAG,UAAU,IAAI,QAAQ,CAAC,UAAU,CAAC;;;;;;;;QAQpD,IAAI,CAAC,MAAM,GAAG,MAAM,KAAK,SAAS,GAAG,MAAM,GAAG,QAAQ,CAAC,eAAe,CAAC;;;;;;;;QAQvE,IAAI,CAAC,gBAAgB,GAAG,gBAAgB,KAAK,SAAS,GAAG,gBAAgB,GAAG,QAAQ,CAAC,iBAAiB,CAAC;;;;;;QAMvG,IAAI,CAAC,QAAQ,GAAG,QAAQ,IAAI,QAAQ,CAAC,SAAS,CAAC;;;;;;;;QAQ/C,IAAI,CAAC,SAAS,GAAG,SAAS,KAAK,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC,UAAU,CAAC;;;;;;;;QAQ3E,IAAI,CAAC,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,IAAI,CAAC;;;;;;;;QAQrC,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,KAAK,CAAC,aAAa,CAAC;;;;;;;;QAQxC,IAAI,CAAC,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,UAAU,CAAC;;;;;;;;QAQ3C,IAAI,CAAC,gBAAgB,GAAG,gBAAgB,KAAK,KAAK,CAAC;;;;;;;;QAQnD,IAAI,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;;;;;;;;QAQjB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;;;;QAUjB,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC;QAC1B,IAAI,CAAC,WAAW,EAAE,CAAC;;;;;;;;QAQnB,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;;;;;;;;;QAStB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;;QAQjB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;;;;;;;QAOtB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;QAOpB,IAAI,CAAC,KAAK,GAAG,KAAK,GAAG,CAAC,IAAI,MAAM,GAAG,CAAC,CAAC;;;;;;;;;QASrC,IAAI,CAAC,eAAe,GAAG,EAAE,CAAC;;;;;;;;QAQ1B,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;;;;;;;;;QAUvB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;;;;;QAOrB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA4CvB,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;KAC9B;;IAED,KAAK,YAAY,GAAG,WAAW,CAAC,SAAS,GAAG,YAAY,CAAC;IACzD,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,YAAY,IAAI,YAAY,CAAC,SAAS,EAAE,CAAC;IAChF,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,WAAW,CAAC;;IAEhD,IAAI,kBAAkB,GAAG,EAAE,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;IAQlG,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG;IACnC;QACI,OAAO,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,UAAU,IAAI,IAAI,CAAC,CAAC;KAC3D,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;IACpC;QACI,OAAO,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,UAAU,IAAI,IAAI,CAAC,CAAC;KAC5D,CAAC;;;;;;;;;IASF,WAAW,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,SAAS,EAAE,MAAM;IACrE;QACI,IAAI,KAAK,CAAC;;QAEV,IAAI,SAAS,KAAK,SAAS,IAAI,SAAS,KAAK,IAAI,CAAC,SAAS;QAC3D;YACI,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;YAC3B,KAAK,GAAG,IAAI,CAAC;SAChB;;QAED,IAAI,MAAM,KAAK,SAAS,IAAI,MAAM,KAAK,IAAI,CAAC,MAAM;QAClD;YACI,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;YACrB,KAAK,GAAG,IAAI,CAAC;SAChB;;QAED,IAAI,KAAK;QACT;YACI,IAAI,CAAC,YAAY,EAAE,CAAC;SACvB;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;IAUF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,UAAU;IAC3E;QACI,IAAI,CAAC,UAAU,GAAG,UAAU,IAAI,IAAI,CAAC,UAAU,CAAC;QAChD,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,WAAW,EAAE,CAAC;QACnB,IAAI,CAAC,MAAM,EAAE,CAAC;;QAEd,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;IAUF,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,SAAS,EAAE,UAAU,EAAE,UAAU;IAC3F;QACI,IAAI,CAAC,UAAU,GAAG,UAAU,IAAI,IAAI,CAAC,UAAU,CAAC;QAChD,IAAI,CAAC,KAAK,GAAG,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC;QACzC,IAAI,CAAC,MAAM,GAAG,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;QAC3C,IAAI,CAAC,WAAW,EAAE,CAAC;QACnB,IAAI,CAAC,MAAM,EAAE,CAAC;;QAEd,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;IACxD;QACI,IAAI,CAAC,YAAY,GAAG,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;KACzE,CAAC;;;;;;;;IAQF,WAAW,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,UAAU;IACxE;QACI,IAAI,aAAa,GAAG,IAAI,CAAC,UAAU,CAAC;;QAEpC,IAAI,aAAa,KAAK,UAAU;QAChC;YACI,OAAO,IAAI,CAAC;SACf;;QAED,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;;QAE7B,IAAI,IAAI,CAAC,KAAK;QACd;YACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,GAAG,aAAa,GAAG,UAAU,CAAC;YACrD,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,GAAG,aAAa,GAAG,UAAU,CAAC;YACvD,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;SAC7B;;QAED,IAAI,CAAC,WAAW,EAAE,CAAC;;QAEnB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;IAQF,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,QAAQ;IAClE;QACI,IAAI,IAAI,CAAC,QAAQ,KAAK,QAAQ;QAC9B;YACI,OAAO,IAAI,CAAC;SACf;;QAED,IAAI,IAAI,CAAC,QAAQ;QACjB;YACI,MAAM,IAAI,KAAK,CAAC,+BAA+B,CAAC,CAAC;SACpD;;QAED,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAEpB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;;QAEzB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;IAKF,WAAW,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;IAC9C;QACI,IAAI,CAAC,IAAI,CAAC,KAAK;QACf;YACI,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC;YACrC;gBACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;gBAClB,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;gBAC1B,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;aAC7B;SACJ;;QAED;YACI,IAAI,CAAC,OAAO,EAAE,CAAC;YACf,IAAI,CAAC,YAAY,EAAE,CAAC;YACpB,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;SAC7B;KACJ,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,KAAK;IACvD;QACI,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;KACnC,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAChD;;QAEI,IAAI,IAAI,CAAC,QAAQ;QACjB;YACI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;YAE3B,IAAI,IAAI,CAAC,QAAQ,CAAC,QAAQ;YAC1B;gBACI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC;aAC3B;YACD,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;SACxB;;QAED,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,OAAO,gBAAgB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;YACtC,OAAO,YAAY,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;;YAElC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;SACvB;;;QAGD,IAAI,CAAC,OAAO,EAAE,CAAC;;QAEf,WAAW,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;QAClC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;;QAE5B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;KACzB,CAAC;;;;;;;;;IASF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAChD;QACI,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;KAC9B,CAAC;;;;;;;;;;;;;;IAcF,WAAW,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,OAAO;IACjD;QACI,IAAI,OAAO,GAAG,IAAI,CAAC;;QAEnB,IAAI,OAAO,MAAM,KAAK,QAAQ;QAC9B;YACI,OAAO,GAAG,MAAM,CAAC;SACpB;;QAED;YACI,IAAI,CAAC,MAAM,CAAC,OAAO;YACnB;gBACI,MAAM,CAAC,OAAO,GAAG,SAAS,IAAI,GAAG,EAAE,CAAC,CAAC;aACxC;;YAED,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC;SAC5B;;QAED,IAAI,WAAW,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;;QAE5C,IAAI,CAAC,WAAW;QAChB;YACI,WAAW,GAAG,IAAI,WAAW,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;YAC/C,WAAW,CAAC,OAAO,GAAG,OAAO,CAAC;YAC9B,WAAW,CAAC,UAAU,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;SAChD;;QAED,OAAO,WAAW,CAAC;KACtB,CAAC;;;;;;;;;;;;;IAaF,WAAW,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO;IAC5E;QACI,MAAM,GAAG,MAAM,IAAI,IAAI,YAAY,CAAC,KAAK,GAAG,MAAM,GAAG,CAAC,CAAC,CAAC;;QAExD,IAAI,QAAQ,GAAG,IAAI,cAAc,CAAC,MAAM,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;QAC5E,IAAI,IAAI,GAAG,MAAM,YAAY,YAAY,GAAG,KAAK,CAAC,KAAK,GAAG,KAAK,CAAC,aAAa,CAAC;;QAE9E,OAAO,IAAI,WAAW,CAAC,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;KAClI,CAAC;;;;;;;;;IASF,WAAW,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,WAAW,EAAE,EAAE;IAC7D;QACI,IAAI,EAAE;QACN;YACI,IAAI,WAAW,CAAC,eAAe,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;YAClD;gBACI,WAAW,CAAC,eAAe,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;aACxC;;YAED,IAAI,gBAAgB,CAAC,EAAE,CAAC;YACxB;;gBAEI,OAAO,CAAC,IAAI,EAAE,6CAA6C,GAAG,EAAE,GAAG,6BAA6B,EAAE,CAAC;aACtG;;YAED,gBAAgB,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC;SACtC;KACJ,CAAC;;;;;;;;;IASF,WAAW,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,WAAW;IACnE;QACI,IAAI,OAAO,WAAW,KAAK,QAAQ;QACnC;YACI,IAAI,oBAAoB,GAAG,gBAAgB,CAAC,WAAW,CAAC,CAAC;;YAEzD,IAAI,oBAAoB;YACxB;gBACI,IAAI,KAAK,GAAG,oBAAoB,CAAC,eAAe,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;;gBAEtE,IAAI,KAAK,GAAG,CAAC,CAAC;gBACd;oBACI,oBAAoB,CAAC,eAAe,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;iBACzD;;gBAED,OAAO,gBAAgB,CAAC,WAAW,CAAC,CAAC;;gBAErC,OAAO,oBAAoB,CAAC;aAC/B;SACJ;aACI,IAAI,WAAW,IAAI,WAAW,CAAC,eAAe;QACnD;YACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,eAAe,CAAC,MAAM,EAAE,EAAE,CAAC;YAC3D;gBACI,OAAO,gBAAgB,CAAC,WAAW,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC;aAC3D;;YAED,WAAW,CAAC,eAAe,CAAC,MAAM,GAAG,CAAC,CAAC;;YAEvC,OAAO,WAAW,CAAC;SACtB;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,WAAW,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAErE,OAAO,WAAW,CAAC;CACtB,CAACE,aAAY,CAAC,CAAC,CAAC;;;;;;;;AAQjB,WAAW,CAAC,YAAY,GAAG,CAAC,CAAC;;;;;;;;;;;;;;AAc7B,IAAI,aAAa,iBAAiB,UAAU,QAAQ,EAAE;IAClD,SAAS,aAAa,CAAC,MAAM,EAAE,OAAO;IACtC;QACI,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;QAExB,IAAI,IAAI,CAAC;QACT,IAAI,MAAM,GAAG,MAAM,CAAC;;QAEpB,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC;QACzB;YACI,IAAI,GAAG,MAAM,CAAC;YACd,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;SAC1B;;QAED,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;QAOnD,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;;;;;;;QAOhB,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;;QAEvB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE;QAC/B;YACI,IAAI,WAAW,GAAG,IAAI,WAAW,EAAE,CAAC;;YAEpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;YAC7B,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SAC9B;;;;;;;;QAQD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;;;QAQrB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;QAElB,IAAI,IAAI;QACR;YACI,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,EAAE,GAAG,EAAE;YACrC;gBACI,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,OAAO,CAAC,EAAE,GAAG,CAAC,CAAC;aACnE;SACJ;KACJ;;IAED,KAAK,QAAQ,GAAG,aAAa,CAAC,SAAS,GAAG,QAAQ,CAAC;IACnD,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,QAAQ,IAAI,QAAQ,CAAC,SAAS,EAAE,CAAC;IAC1E,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;;;;;IAMpD,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAClD;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE;QAC/C;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;SAC3B;QACD,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;QAClB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;QACzB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;;;IASF,aAAa,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,QAAQ,EAAE,KAAK;IAC/E;QACI,IAAI,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;;QAEpC,IAAI,CAAC,WAAW;QAChB;YACI,MAAM,IAAI,KAAK,EAAE,QAAQ,GAAG,KAAK,GAAG,mBAAmB,EAAE,CAAC;SAC7D;;;QAGD,IAAI,QAAQ,CAAC,KAAK,IAAI,CAAC,IAAI,CAAC,KAAK;QACjC;YACI,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;SAChD;;QAED,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;;QAExC,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,WAAW;IACzD;QACI,QAAQ,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC;;QAEhD,WAAW,CAAC,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC;;QAE9C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE;QACpC;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;SAC/D;KACJ,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,WAAW;IAC7D;QACI,QAAQ,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC;;QAElD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE;QACpC;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;SAChE;KACJ,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;IAC5C;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,IAAI,IAAI,CAAC,KAAK;QACd;YACI,OAAO,IAAI,CAAC,KAAK,CAAC;SACrB;;QAED,IAAI,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,UAAU,IAAI,EAAE,EAAE,OAAO,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;;;QAG1E,IAAI,QAAQ,GAAG,SAAS,CAAC,GAAG,CAAC,UAAU,IAAI,EAAE,EAAE,OAAO,IAAI,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC;;QAEtE,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC;aAC7B,IAAI,CAAC,YAAY;gBACd,IAAI,GAAG,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;gBACvB,IAAI,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC;gBACtB,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;;gBAExB,MAAM,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;;gBAE7B,OAAO,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;aAClC;aACA,CAAC;;QAEN,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;;;;;;;;IASF,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ,EAAE,OAAO,EAAE,SAAS;IAC9E;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;QACxB,IAAI,YAAY,GAAG,GAAG,CAAC,YAAY,CAAC;QACpC,IAAI,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC;QACtB,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;;QAErB,IAAI,SAAS,CAAC,OAAO,GAAG,CAAC;QACzB;YACI,EAAE,CAAC,UAAU;gBACT,EAAE,CAAC,gBAAgB;gBACnB,CAAC;gBACD,OAAO,CAAC,MAAM;gBACd,IAAI,CAAC,MAAM;gBACX,IAAI,CAAC,OAAO;gBACZ,MAAM;gBACN,CAAC;gBACD,OAAO,CAAC,MAAM;gBACd,OAAO,CAAC,IAAI;gBACZ,IAAI;aACP,CAAC;SACL;;QAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE;QAC/B;YACI,IAAI,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;;YAEpB,IAAI,YAAY,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,OAAO;YAClC;gBACI,YAAY,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC;gBAC/B,IAAI,IAAI,CAAC,KAAK;gBACd;oBACI,EAAE,CAAC,aAAa;wBACZ,EAAE,CAAC,gBAAgB;wBACnB,CAAC;wBACD,CAAC;wBACD,CAAC;wBACD,CAAC;wBACD,IAAI,CAAC,QAAQ,CAAC,KAAK;wBACnB,IAAI,CAAC,QAAQ,CAAC,MAAM;wBACpB,CAAC;wBACD,OAAO,CAAC,MAAM;wBACd,OAAO,CAAC,IAAI;wBACZ,IAAI,CAAC,QAAQ,CAAC,MAAM;qBACvB,CAAC;iBACL;aACJ;SACJ;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;IAEF,OAAO,aAAa,CAAC;CACxB,CAAC,QAAQ,CAAC,CAAC,CAAC;;;;;;;;;;;;;AAab,IAAI,cAAc,iBAAiB,UAAU,iBAAiB,EAAE;IAC5D,SAAS,cAAc,IAAI;QACvB,iBAAiB,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;KAC5C;;IAED,KAAK,iBAAiB,GAAG,cAAc,CAAC,SAAS,GAAG,iBAAiB,CAAC;IACtE,cAAc,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,iBAAiB,IAAI,iBAAiB,CAAC,SAAS,EAAE,CAAC;IAC7F,cAAc,CAAC,SAAS,CAAC,WAAW,GAAG,cAAc,CAAC;;IAEtD,cAAc,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM;IAC3C;QACI,IAAI,eAAe,GAAG,MAAM,CAAC,eAAe,CAAC;;;QAG7C,IAAI,eAAe,IAAI,MAAM,YAAY,eAAe;QACxD;YACI,OAAO,IAAI,CAAC;SACf;;QAED,OAAO,MAAM,YAAY,iBAAiB,CAAC;KAC9C,CAAC;;IAEF,OAAO,cAAc,CAAC;CACzB,CAAC,iBAAiB,CAAC,CAAC,CAAC;;;;;;;;;;;;;;AActB,IAAI,YAAY,iBAAiB,UAAU,aAAa,EAAE;IACtD,SAAS,YAAY,CAAC,MAAM,EAAE,OAAO;IACrC;QACI,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;QAExB,aAAa,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC;;QAE1C,IAAI,IAAI,CAAC,MAAM,KAAK,YAAY,CAAC,KAAK;QACtC;YACI,MAAM,IAAI,KAAK,EAAE,sBAAsB,IAAI,IAAI,CAAC,MAAM,CAAC,GAAG,cAAc,EAAE,CAAC;SAC9E;;QAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,YAAY,CAAC,KAAK,EAAE,CAAC,EAAE;QAC3C;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,OAAO,CAAC,2BAA2B,GAAG,CAAC,CAAC;SAClE;;QAED,IAAI,OAAO,CAAC,QAAQ,KAAK,KAAK;QAC9B;YACI,IAAI,CAAC,IAAI,EAAE,CAAC;SACf;KACJ;;IAED,KAAK,aAAa,GAAG,YAAY,CAAC,SAAS,GAAG,aAAa,CAAC;IAC5D,YAAY,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,aAAa,IAAI,aAAa,CAAC,SAAS,EAAE,CAAC;IACnF,YAAY,CAAC,SAAS,CAAC,WAAW,GAAG,YAAY,CAAC;;;;;;;;IAQlD,YAAY,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,WAAW;IACxD;QACI,aAAa,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC;;QAErD,WAAW,CAAC,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC;KACjD,CAAC;;;;;;;IAOF,YAAY,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS;IACjF;QACI,IAAI,KAAK,GAAG,IAAI,CAAC,YAAY,CAAC;;QAE9B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,YAAY,CAAC,KAAK,EAAE,CAAC,EAAE;QAC3C;YACI,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;;YAEzB,IAAI,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,OAAO;YAC3B;gBACI,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC;gBACxB,IAAI,IAAI,CAAC,KAAK;gBACd;oBACI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,QAAQ,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC;iBACnD;aACJ;SACJ;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;IAEF,OAAO,YAAY,CAAC;CACvB,CAAC,aAAa,CAAC,CAAC,CAAC;;;;;;;;;;AAUlB,YAAY,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;;;;;;;AAcvB,IAAI,WAAW,iBAAiB,UAAU,iBAAiB,EAAE;IACzD,SAAS,WAAW,CAAC,MAAM,EAAE,OAAO;IACpC;QACI,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;QAExB,iBAAiB,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC,CAAC;QAC/D,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;QAChB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;QAOjB,IAAI,CAAC,GAAG,GAAG,MAAM,CAAC;;;;;;;QAOlB,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,IAAI,CAAC,CAAC;;;;;;;QAOhC,IAAI,CAAC,cAAc,GAAG,OAAO,CAAC,KAAK,CAAC;;;;;;;QAOpC,IAAI,CAAC,eAAe,GAAG,OAAO,CAAC,MAAM,CAAC;;;;;;;QAOtC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;;;;;QAOrB,IAAI,CAAC,YAAY,GAAG,OAAO,CAAC,WAAW,CAAC;;;;;;;;QAQxC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;QAElB,IAAI,OAAO,CAAC,QAAQ,KAAK,KAAK;QAC9B;YACI,IAAI,CAAC,IAAI,EAAE,CAAC;SACf;KACJ;;IAED,KAAK,iBAAiB,GAAG,WAAW,CAAC,SAAS,GAAG,iBAAiB,CAAC;IACnE,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,iBAAiB,IAAI,iBAAiB,CAAC,SAAS,EAAE,CAAC;IAC1F,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,WAAW,CAAC;;IAEhD,WAAW,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;IAC1C;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,IAAI,IAAI,CAAC,KAAK;QACd;YACI,OAAO,IAAI,CAAC,KAAK,CAAC;SACrB;;QAED,IAAI,CAAC,KAAK,GAAG,IAAI,OAAO,CAAC,UAAU,OAAO,EAAE;;YAExC,MAAM,CAAC,QAAQ,GAAG,YAAY;gBAC1B,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;gBACzD,OAAO,CAAC,MAAM,CAAC,CAAC;aACnB,CAAC;;;YAGF,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;YACtC;gBACI,IAAI,CAAC,IAAI;gBACT;oBACI,MAAM,IAAI,KAAK,CAAC,mDAAmD,CAAC,CAAC;iBACxE;gBACD,MAAM,CAAC,GAAG,GAAG,4BAA4B,IAAI,IAAI,CAAC,QAAQ,CAAC,kBAAkB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;aAChG;;YAED,MAAM,CAAC,QAAQ,EAAE,CAAC;SACrB,CAAC,CAAC;;QAEH,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ;IAClD;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,IAAI,SAAS,GAAG,IAAI,KAAK,EAAE,CAAC;;QAE5B,iBAAiB,CAAC,WAAW,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,YAAY,CAAC,CAAC;QACtE,SAAS,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;;QAEzB,SAAS,CAAC,OAAO,GAAG,UAAU,KAAK,EAAE;YACjC,SAAS,CAAC,OAAO,GAAG,IAAI,CAAC;YACzB,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;SAC7B,CAAC;;QAEF,SAAS,CAAC,MAAM,GAAG,YAAY;YAC3B,IAAI,QAAQ,GAAG,SAAS,CAAC,KAAK,CAAC;YAC/B,IAAI,SAAS,GAAG,SAAS,CAAC,MAAM,CAAC;;YAEjC,IAAI,CAAC,QAAQ,IAAI,CAAC,SAAS;YAC3B;gBACI,MAAM,IAAI,KAAK,CAAC,sFAAsF,CAAC,CAAC;aAC3G;;;YAGD,IAAI,KAAK,GAAG,QAAQ,GAAG,MAAM,CAAC,KAAK,CAAC;YACpC,IAAI,MAAM,GAAG,SAAS,GAAG,MAAM,CAAC,KAAK,CAAC;;YAEtC,IAAI,MAAM,CAAC,cAAc,IAAI,MAAM,CAAC,eAAe;YACnD;gBACI,KAAK,GAAG,MAAM,CAAC,cAAc,IAAI,MAAM,CAAC,eAAe,GAAG,SAAS,GAAG,QAAQ,CAAC;gBAC/E,MAAM,GAAG,MAAM,CAAC,eAAe,IAAI,MAAM,CAAC,cAAc,GAAG,QAAQ,GAAG,SAAS,CAAC;aACnF;YACD,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YAC1B,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;;;YAG5B,IAAI,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;;YAE3B,MAAM,CAAC,KAAK,GAAG,KAAK,CAAC;YACrB,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC;YACvB,MAAM,CAAC,OAAO,GAAG,SAAS,IAAI,GAAG,EAAE,CAAC,CAAC;;;YAGrC,MAAM;iBACD,UAAU,CAAC,IAAI,CAAC;iBAChB,SAAS,CAAC,SAAS,EAAE,CAAC,EAAE,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;;YAE1E,MAAM,CAAC,QAAQ,EAAE,CAAC;YAClB,MAAM,CAAC,QAAQ,GAAG,IAAI,CAAC;SAC1B,CAAC;KACL,CAAC;;;;;;;;;IASF,WAAW,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,SAAS;IACjD;QACI,IAAI,SAAS,GAAG,WAAW,CAAC,QAAQ,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QACrD,IAAI,IAAI,GAAG,EAAE,CAAC;;QAEd,IAAI,SAAS;QACb;YACI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;YAC1D,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;SAC7D;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAChD;QACI,iBAAiB,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC/C,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QACrB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;KAC5B,CAAC;;;;;;;;;IASF,WAAW,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,SAAS;IACnD;;QAEI,OAAO,SAAS,KAAK,KAAK;;gBAElB,OAAO,MAAM,KAAK,QAAQ,IAAI,MAAM,CAAC,OAAO,CAAC,2BAA2B,CAAC,KAAK,CAAC,CAAC;;gBAEhF,OAAO,MAAM,KAAK,QAAQ,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;KACvE,CAAC;;IAEF,OAAO,WAAW,CAAC;CACtB,CAAC,iBAAiB,CAAC,CAAC,CAAC;;;;;;;;;;AAUtB,WAAW,CAAC,QAAQ,GAAG,iIAAiI,CAAC;;;;;;;;;;;;;;;AAezJ,IAAI,aAAa,iBAAiB,UAAU,iBAAiB,EAAE;IAC3D,SAAS,aAAa,CAAC,MAAM,EAAE,OAAO;IACtC;QACI,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;QAExB,IAAI,EAAE,MAAM,YAAY,gBAAgB,CAAC;QACzC;YACI,IAAI,YAAY,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;;;YAGnD,YAAY,CAAC,YAAY,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;YAC7C,YAAY,CAAC,YAAY,CAAC,oBAAoB,EAAE,EAAE,CAAC,CAAC;YACpD,YAAY,CAAC,YAAY,CAAC,aAAa,EAAE,EAAE,CAAC,CAAC;;YAE7C,IAAI,OAAO,MAAM,KAAK,QAAQ;YAC9B;gBACI,MAAM,GAAG,CAAC,MAAM,CAAC,CAAC;aACrB;;YAED,iBAAiB,CAAC,WAAW,CAAC,YAAY,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;;;YAG/F,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,EAAE,CAAC;YACtC;gBACI,IAAI,aAAa,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;gBAErD,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;gBACpB,IAAI,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC;gBAClB,IAAI,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;;gBAEpB,GAAG,GAAG,GAAG,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC;;gBAEvB,IAAI,OAAO,GAAG,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,CAAC,WAAW,EAAE,CAAC;gBACnD,IAAI,GAAG,GAAG,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;;gBAEvD,IAAI,GAAG,IAAI,KAAK,QAAQ,GAAG,GAAG,CAAC,CAAC;;gBAEhC,aAAa,CAAC,GAAG,GAAG,GAAG,CAAC;gBACxB,aAAa,CAAC,IAAI,GAAG,IAAI,CAAC;;gBAE1B,YAAY,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC;aAC3C;;;YAGD,MAAM,GAAG,YAAY,CAAC;SACzB;;QAED,iBAAiB,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;;QAErC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;QACvB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QACxB,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QAC7B,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC,SAAS,IAAI,CAAC,CAAC;QACzC,IAAI,CAAC,eAAe,GAAG,CAAC,CAAC;;;;;;;;;QASzB,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,KAAK,KAAK,CAAC;;;;;;;;QAQ3C,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;;;;;QAOlB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;QAGrB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC7C,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAEzC,IAAI,OAAO,CAAC,QAAQ,KAAK,KAAK;QAC9B;YACI,IAAI,CAAC,IAAI,EAAE,CAAC;SACf;KACJ;;IAED,KAAK,iBAAiB,GAAG,aAAa,CAAC,SAAS,GAAG,iBAAiB,CAAC;IACrE,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,iBAAiB,IAAI,iBAAiB,CAAC,SAAS,EAAE,CAAC;IAC5F,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;IAEpD,IAAI,kBAAkB,GAAG,EAAE,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;IAOlG,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,SAAS;IAC3D;QACI,KAAK,SAAS,KAAK,KAAK,CAAC,GAAG,SAAS,GAAG,CAAC,CAAC;;QAE1C,IAAI,CAAC,IAAI,CAAC,SAAS;QACnB;;YAEI,IAAI,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC;;YAEnE,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,eAAe,GAAG,SAAS,CAAC,CAAC;YACpE,IAAI,CAAC,IAAI,CAAC,UAAU,IAAI,IAAI,CAAC,eAAe,IAAI,CAAC;YACjD;gBACI,iBAAiB,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;gBACzD,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;aACnF;SACJ;KACJ,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;IAC5C;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,IAAI,IAAI,CAAC,KAAK;QACd;YACI,OAAO,IAAI,CAAC,KAAK,CAAC;SACrB;;QAED,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;;QAEzB,IAAI,CAAC,MAAM,CAAC,UAAU,KAAK,MAAM,CAAC,gBAAgB,IAAI,MAAM,CAAC,UAAU,KAAK,MAAM,CAAC,gBAAgB;eAC5F,MAAM,CAAC,KAAK,IAAI,MAAM,CAAC,MAAM;QACpC;YACI,MAAM,CAAC,QAAQ,GAAG,IAAI,CAAC;SAC1B;;QAED,MAAM,CAAC,gBAAgB,CAAC,MAAM,EAAE,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;QAC9D,MAAM,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;;QAE9D,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE;QAC1B;YACI,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;YACpD,MAAM,CAAC,gBAAgB,CAAC,gBAAgB,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;YAC3D,MAAM,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;SACzD;;QAED;YACI,IAAI,CAAC,UAAU,EAAE,CAAC;SACrB;;QAED,IAAI,CAAC,KAAK,GAAG,IAAI,OAAO,CAAC,UAAU,OAAO,EAAE;YACxC,IAAI,MAAM,CAAC,KAAK;YAChB;gBACI,OAAO,CAAC,MAAM,CAAC,CAAC;aACnB;;YAED;gBACI,MAAM,CAAC,QAAQ,GAAG,OAAO,CAAC;;gBAE1B,MAAM,CAAC,IAAI,EAAE,CAAC;aACjB;SACJ,CAAC,CAAC;;QAEH,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ;IACpD;QACI,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,OAAO,EAAE,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;QAC9D,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;KAC3B,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IACpE;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;;QAEzB,QAAQ,MAAM,CAAC,WAAW,GAAG,CAAC,IAAI,MAAM,CAAC,MAAM,KAAK,KAAK,IAAI,MAAM,CAAC,KAAK,KAAK,KAAK,IAAI,MAAM,CAAC,UAAU,GAAG,CAAC,EAAE;KACjH,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;IAChE;QACI,OAAO,IAAI,CAAC,MAAM,CAAC,UAAU,KAAK,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,UAAU,KAAK,CAAC,CAAC;KACvE,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY;IAC5D;;QAEI,IAAI,CAAC,IAAI,CAAC,KAAK;QACf;YACI,IAAI,CAAC,UAAU,EAAE,CAAC;SACrB;;QAED,IAAI,CAAC,IAAI,CAAC,eAAe,IAAI,IAAI,CAAC,UAAU;QAC5C;YACI,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;SAC/B;KACJ,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;IAC1D;QACI,IAAI,IAAI,CAAC,eAAe;QACxB;YACI,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;SAChC;KACJ,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IACxD;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;;QAExB,MAAM,CAAC,mBAAmB,CAAC,SAAS,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;QACvD,MAAM,CAAC,mBAAmB,CAAC,gBAAgB,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;;QAE9D,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;;QAEvB,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,WAAW,CAAC,CAAC;;;QAGnD,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,QAAQ;QAC3B;YACI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;YACpB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;SACxB;;QAED,IAAI,IAAI,CAAC,gBAAgB,EAAE;QAC3B;YACI,IAAI,CAAC,YAAY,EAAE,CAAC;SACvB;aACI,IAAI,IAAI,CAAC,QAAQ;QACtB;YACI,MAAM,CAAC,IAAI,EAAE,CAAC;SACjB;KACJ,CAAC;;;;;;IAMF,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAClD;QACI,IAAI,IAAI,CAAC,eAAe;QACxB;YACI,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;SAC3C;;QAED,IAAI,IAAI,CAAC,MAAM;QACf;YACI,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,OAAO,EAAE,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;YAC9D,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;YACpB,IAAI,CAAC,MAAM,CAAC,GAAG,GAAG,EAAE,CAAC;YACrB,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC;SACtB;QACD,iBAAiB,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KAClD,CAAC;;;;;;;IAOF,kBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;IACpC;QACI,OAAO,IAAI,CAAC,WAAW,CAAC;KAC3B,CAAC;;IAEF,kBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,KAAK;IACnD;QACI,IAAI,KAAK,KAAK,IAAI,CAAC,WAAW;QAC9B;YACI,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;;YAEzB,IAAI,CAAC,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC,eAAe;YAC7C;gBACI,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;gBACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;aAChC;iBACI,IAAI,IAAI,CAAC,WAAW,IAAI,CAAC,IAAI,CAAC,eAAe;YAClD;gBACI,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;gBACrC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;aAC/B;SACJ;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG;IACnC;QACI,OAAO,IAAI,CAAC,UAAU,CAAC;KAC1B,CAAC;;IAEF,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG,UAAU,KAAK;IAClD;QACI,IAAI,KAAK,KAAK,IAAI,CAAC,UAAU;QAC7B;YACI,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;SAC3B;KACJ,CAAC;;;;;;;;;;IAUF,aAAa,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,SAAS;IACrD;QACI,OAAO,CAAC,MAAM,YAAY,gBAAgB;eACnC,aAAa,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC;KACtD,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,aAAa,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAEvE,OAAO,aAAa,CAAC;CACxB,CAAC,iBAAiB,CAAC,CAAC,CAAC;;;;;;;;;AAStB,aAAa,CAAC,KAAK,GAAG,CAAC,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;;;;;;;;;AASjF,IAAI,mBAAmB,iBAAiB,UAAU,iBAAiB,EAAE;IACjE,SAAS,mBAAmB,IAAI;QAC5B,iBAAiB,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;KAC5C;;IAED,KAAK,iBAAiB,GAAG,mBAAmB,CAAC,SAAS,GAAG,iBAAiB,CAAC;IAC3E,mBAAmB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,iBAAiB,IAAI,iBAAiB,CAAC,SAAS,EAAE,CAAC;IAClG,mBAAmB,CAAC,SAAS,CAAC,WAAW,GAAG,mBAAmB,CAAC;;IAEhE,mBAAmB,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM;IAChD;QACI,OAAO,CAAC,CAAC,MAAM,CAAC,iBAAiB,IAAI,MAAM,YAAY,WAAW,CAAC;KACtE,CAAC;;IAEF,OAAO,mBAAmB,CAAC;CAC9B,CAAC,iBAAiB,CAAC,CAAC,CAAC;;AAEtB,SAAS,CAAC,IAAI;IACV,aAAa;IACb,mBAAmB;IACnB,cAAc;IACd,aAAa;IACb,WAAW;IACX,cAAc;IACd,YAAY;IACZ,aAAa;CAChB,CAAC;AACF,AAeA;;;;;;;;AAQA,IAAI,MAAM,GAAG,SAAS,MAAM,CAAC,QAAQ;AACrC;;;;;;IAMI,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;CAC5B,CAAC;;;;;AAKF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC3C;IACI,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;CACxB,CAAC;;;;;;;;AAQF,IAAI,aAAa,iBAAiB,UAAU,cAAc,EAAE;IACxD,SAAS,aAAa,IAAI;QACtB,cAAc,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;KACzC;;IAED,KAAK,cAAc,GAAG,aAAa,CAAC,SAAS,GAAG,cAAc,CAAC;IAC/D,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,cAAc,IAAI,cAAc,CAAC,SAAS,EAAE,CAAC;IACtF,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;IAEpD,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS;IAClF;QACI,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;;QAErB,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,8BAA8B,EAAE,WAAW,CAAC,gBAAgB,CAAC,CAAC;;QAEhF,IAAI,SAAS,CAAC,KAAK,KAAK,WAAW,CAAC,KAAK,IAAI,SAAS,CAAC,MAAM,KAAK,WAAW,CAAC,MAAM;QACpF;YACI,EAAE,CAAC,aAAa;gBACZ,WAAW,CAAC,MAAM;gBAClB,CAAC;gBACD,CAAC;gBACD,CAAC;gBACD,WAAW,CAAC,KAAK;gBACjB,WAAW,CAAC,MAAM;gBAClB,WAAW,CAAC,MAAM;gBAClB,WAAW,CAAC,IAAI;gBAChB,IAAI,CAAC,IAAI;aACZ,CAAC;SACL;;QAED;YACI,SAAS,CAAC,KAAK,GAAG,WAAW,CAAC,KAAK,CAAC;YACpC,SAAS,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM,CAAC;;YAEtC,EAAE,CAAC,UAAU;gBACT,WAAW,CAAC,MAAM;gBAClB,CAAC;gBACD,EAAE,CAAC,iBAAiB;gBACpB,WAAW,CAAC,KAAK;gBACjB,WAAW,CAAC,MAAM;gBAClB,CAAC;gBACD,WAAW,CAAC,MAAM;gBAClB,WAAW,CAAC,IAAI;gBAChB,IAAI,CAAC,IAAI;aACZ,CAAC;SACL;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;IAEF,OAAO,aAAa,CAAC;CACxB,CAAC,cAAc,CAAC,CAAC,CAAC;;;;;;;;AAQnB,IAAI,WAAW,GAAG,SAAS,WAAW,CAAC,KAAK,EAAE,MAAM;AACpD;IACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,GAAG,CAAC,CAAC;IACrC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,IAAI,GAAG,CAAC,CAAC;;IAEvC,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;IACrB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;IAEnB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;IACjB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;IACrB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;;IAEnB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;IACzB,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;;IAExB,IAAI,CAAC,cAAc,GAAG,EAAE,CAAC;;IAEzB,IAAI,CAAC,aAAa,GAAG,IAAI,MAAM,CAAC,oBAAoB,EAAE,CAAC,CAAC,CAAC;CAC5D,CAAC;;AAEF,IAAID,sBAAoB,GAAG,EAAE,YAAY,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;AAQpEA,sBAAoB,CAAC,YAAY,CAAC,GAAG,GAAG;AACxC;IACI,OAAO,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;CAChC,CAAC;;;;;;;;AAQF,WAAW,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,KAAK,EAAE,OAAO;AAChF;QACQ,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;;;IAGtC,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,GAAG,OAAO,IAAI,IAAI,WAAW,CAAC,IAAI,EAAE,EAAE,SAAS,EAAE,CAAC;QACvE,UAAU,EAAE,CAAC;QACb,MAAM,EAAE,KAAK;QACb,KAAK,EAAE,IAAI,CAAC,KAAK;QACjB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC;;IAE3B,IAAI,CAAC,OAAO,EAAE,CAAC;IACf,IAAI,CAAC,WAAW,EAAE,CAAC;;IAEnB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;AAOF,WAAW,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,OAAO;AACzE;;IAEI,IAAI,CAAC,YAAY,GAAG,OAAO,IAAI,IAAI,WAAW,CAAC,IAAI,aAAa,CAAC,IAAI,EAAE,EAAE,KAAK,EAAE,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,SAAS,EAAE,CAAC;QAC9H,UAAU,EAAE,CAAC;QACb,KAAK,EAAE,IAAI,CAAC,KAAK;QACjB,MAAM,EAAE,IAAI,CAAC,MAAM;QACnB,MAAM,EAAE,KAAK;QACb,MAAM,EAAE,OAAO,CAAC,eAAe;QAC/B,IAAI,EAAE,KAAK,CAAC,cAAc,EAAE,CAAC,CAAC;;IAElC,IAAI,CAAC,OAAO,EAAE,CAAC;IACf,IAAI,CAAC,WAAW,EAAE,CAAC;;IAEnB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;AAKF,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;AACxD;IACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;IAElB,IAAI,CAAC,OAAO,EAAE,CAAC;IACf,IAAI,CAAC,WAAW,EAAE,CAAC;;IAEnB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;AAKF,WAAW,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;AAC5D;IACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;IAEpB,IAAI,CAAC,OAAO,EAAE,CAAC;IACf,IAAI,CAAC,WAAW,EAAE,CAAC;;IAEnB,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,WAAW,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,KAAK,EAAE,MAAM;AAC7D;IACI,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IACzB,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;IAE3B,IAAI,KAAK,KAAK,IAAI,CAAC,KAAK,IAAI,MAAM,KAAK,IAAI,CAAC,MAAM,EAAE,EAAE,OAAO,EAAE;;IAE/D,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;IACnB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;IAErB,IAAI,CAAC,OAAO,EAAE,CAAC;IACf,IAAI,CAAC,SAAS,EAAE,CAAC;;IAEjB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE;IAClD;QACI,IAAI,OAAO,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;QACpC,IAAI,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC;;;QAGpC,OAAO,CAAC,OAAO,CAAC,KAAK,GAAG,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,CAAC;KAC5D;;IAED,IAAI,IAAI,CAAC,YAAY;IACrB;QACI,IAAI,YAAY,GAAG,IAAI,CAAC,YAAY,CAAC,UAAU,CAAC;;QAEhD,IAAI,CAAC,YAAY,CAAC,OAAO,CAAC,KAAK,GAAG,YAAY,EAAE,MAAM,GAAG,YAAY,CAAC,CAAC;KAC1E;CACJ,CAAC;;;;;AAKF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAChD;IACI,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;CACvC,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,WAAW,CAAC,SAAS,EAAEA,sBAAoB,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0CvE,IAAI,iBAAiB,iBAAiB,UAAU,WAAW,EAAE;IACzD,SAAS,iBAAiB,CAAC,OAAO;IAClC;QACI,IAAI,OAAO,OAAO,KAAK,QAAQ;QAC/B;;;YAGI,IAAI,OAAO,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;YAC3B,IAAI,QAAQ,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;YAC5B,IAAI,SAAS,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7B,IAAI,UAAU,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;YAE9B,OAAO,GAAG,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,SAAS,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC;;SAEhG;;QAED,WAAW,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;;QAEtC,IAAI,GAAG,GAAG,OAAO,IAAI,EAAE,CAAC;QACxB,IAAI,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC;QACtB,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;;;QAGxB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACpB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,CAAC;QACrC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,GAAG,CAAC;QACvC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;;;;;;QAQlB,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC;;QAEhC,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;QAE/B,IAAI,CAAC,WAAW,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,UAAU,CAAC;aAC1F,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;;;;;;;;;QAS9B,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC;;;;;;;QAO3B,IAAI,CAAC,WAAW,GAAG,CAAC,EAAE,CAAC,CAAC;KAC3B;;IAED,KAAK,WAAW,GAAG,iBAAiB,CAAC,SAAS,GAAG,WAAW,CAAC;IAC7D,iBAAiB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,WAAW,IAAI,WAAW,CAAC,SAAS,EAAE,CAAC;IACpF,iBAAiB,CAAC,SAAS,CAAC,WAAW,GAAG,iBAAiB,CAAC;;;;;;;;IAQ5D,iBAAiB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,KAAK,EAAE,MAAM;IACnE;QACI,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACzB,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC3B,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC;KAC9E,CAAC;;;;;;;;;IASF,iBAAiB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACtD;QACI,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC;;QAE3B,WAAW,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KAC5C,CAAC;;;;;;IAMF,iBAAiB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACtD;QACI,WAAW,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;;QAE/C,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;KAC3B,CAAC;;IAEF,OAAO,iBAAiB,CAAC;CAC5B,CAAC,WAAW,CAAC,CAAC,CAAC;;;;;;;;;;;;;;;;;;AAkBhB,IAAI,UAAU,GAAG,SAAS,UAAU;AACpC;;;;;;IAMI,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;IAOZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;IAOZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;IAOZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;IAOZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;IAOZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;IAOZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;;;;;;IAOZ,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;;IAEZ,IAAI,CAAC,UAAU,GAAG,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;CACzC,CAAC;;;;;;;;;;AAUF,UAAU,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM;AACjE;IACI,IAAI,EAAE,GAAG,SAAS,CAAC,KAAK,CAAC;IACzB,IAAI,EAAE,GAAG,SAAS,CAAC,MAAM,CAAC;;IAE1B,IAAI,MAAM;IACV;;QAEI,IAAI,EAAE,GAAG,KAAK,CAAC,KAAK,GAAG,CAAC,GAAG,EAAE,CAAC;QAC9B,IAAI,EAAE,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,GAAG,EAAE,CAAC;;;QAG/B,IAAI,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,CAAC;QAC7B,IAAI,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,CAAC;;QAE7B,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC,CAAC;QACzC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;QACzC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;;QAEzC,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;QAChC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;QACzC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;;QAEzC,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;QAChC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;QACzC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;;QAEzC,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;QAChC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;QACzC,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;KAC5C;;IAED;QACI,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC,CAAC,GAAG,EAAE,CAAC;QACvB,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC,CAAC,GAAG,EAAE,CAAC;;QAEvB,IAAI,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC,KAAK,IAAI,EAAE,CAAC;QACvC,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC,CAAC,GAAG,EAAE,CAAC;;QAEvB,IAAI,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC,KAAK,IAAI,EAAE,CAAC;QACvC,IAAI,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC,MAAM,IAAI,EAAE,CAAC;;QAExC,IAAI,CAAC,EAAE,GAAG,KAAK,CAAC,CAAC,GAAG,EAAE,CAAC;QACvB,IAAI,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC,MAAM,IAAI,EAAE,CAAC;KAC3C;;IAED,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC7B,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC7B,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC7B,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC7B,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC7B,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC7B,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;IAC7B,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;CAChC,CAAC;;AAEF,IAAI,WAAW,GAAG,IAAI,UAAU,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgCnC,IAAI,OAAO,iBAAiB,UAAU,YAAY,EAAE;IAChD,SAAS,OAAO,CAAC,WAAW,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM;IAC/D;QACI,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;QAoBxB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;QAErB,IAAI,CAAC,KAAK;QACV;YACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;YACpB,KAAK,GAAG,IAAI,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;SACrC;;QAED,IAAI,WAAW,YAAY,OAAO;QAClC;YACI,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;SACzC;;;;;;;QAOD,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;;;;;;;;QAQ/B,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;;;;;;;;QAQpB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;QAOjB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;;QAOnB,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;;;;;;;;QAQ5B,IAAI,CAAC,IAAI,GAAG,WAAW,CAAC;;;;;;;;QAQxB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;;;;;QAOrB,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,KAAK,CAAC;;QAE1B,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC,MAAM,IAAI,CAAC,CAAC,CAAC;;QAEnC,IAAI,MAAM,KAAK,IAAI;QACnB;;YAEI,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;SACpB;aACI,IAAI,IAAI,CAAC,OAAO,GAAG,CAAC,KAAK,CAAC;QAC/B;YACI,MAAM,IAAI,KAAK,CAAC,2EAA2E,CAAC,CAAC;SAChG;;;;;;;;QAQD,IAAI,CAAC,aAAa,GAAG,MAAM,GAAG,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,IAAI,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;;;;;;;;;QAU9E,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;;;;;;;;;QASnB,IAAI,CAAC,eAAe,GAAG,EAAE,CAAC;;QAE1B,IAAI,CAAC,WAAW,CAAC,KAAK;QACtB;YACI,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,oBAAoB,EAAE,IAAI,CAAC,CAAC;SAC/D;aACI,IAAI,IAAI,CAAC,OAAO;QACrB;;YAEI,IAAI,WAAW,CAAC,KAAK;YACrB;gBACI,IAAI,CAAC,oBAAoB,CAAC,WAAW,CAAC,CAAC;aAC1C;SACJ;;QAED;YACI,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;SACtB;;QAED,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,WAAW,CAAC,EAAE,CAAC,QAAQ,EAAE,IAAI,CAAC,oBAAoB,EAAE,IAAI,CAAC,CAAC;SAC7D;KACJ;;IAED,KAAK,YAAY,GAAG,OAAO,CAAC,SAAS,GAAG,YAAY,CAAC;IACrD,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,YAAY,IAAI,YAAY,CAAC,SAAS,EAAE,CAAC;IAC5E,OAAO,CAAC,SAAS,CAAC,WAAW,GAAG,OAAO,CAAC;;IAExC,IAAI,kBAAkB,GAAG,EAAE,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;;IAU1L,OAAO,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;IAC1C;QACI,IAAI,IAAI,CAAC,WAAW,CAAC,QAAQ;QAC7B;YACI,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC;SACtC;KACJ,CAAC;;;;;;;;IAQF,OAAO,CAAC,SAAS,CAAC,oBAAoB,GAAG,SAAS,oBAAoB,EAAE,WAAW;IACnF;QACI,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK;YAC3B;gBACI,OAAO;aACV;;YAED,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,WAAW,CAAC,KAAK,CAAC;YACtC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM,CAAC;YACxC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;YAClB,IAAI,CAAC,SAAS,EAAE,CAAC;SACpB;;QAED;;;YAGI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;SAC5B;;QAED,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;KAC7B,CAAC;;;;;;;IAOF,OAAO,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,WAAW;IACzD;QACI,IAAI,IAAI,CAAC,WAAW;QACpB;YACI,IAAI,WAAW;YACf;gBACI,IAAI,GAAG,GAAG,IAAI,CAAC,WAAW,CAAC;gBAC3B,IAAI,QAAQ,GAAG,GAAG,CAAC,QAAQ,CAAC;;;;gBAI5B,IAAI,QAAQ,IAAI,YAAY,CAAC,QAAQ,CAAC,GAAG,CAAC;gBAC1C;oBACI,OAAO,CAAC,eAAe,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;iBACzC;;gBAED,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC;aAC9B;;YAED,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,QAAQ,EAAE,IAAI,CAAC,oBAAoB,EAAE,IAAI,CAAC,CAAC;;YAEhE,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;SAC3B;;QAED,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;QAEjB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;QAEnB,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;QAC9B,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;KAC/B,CAAC;;;;;;;IAOF,OAAO,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACxC;QACI,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,aAAa,CAAC,CAAC;KAC3G,CAAC;;;;;;IAMF,OAAO,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;IAChD;QACI,IAAI,IAAI,CAAC,IAAI,KAAK,WAAW;QAC7B;YACI,IAAI,CAAC,IAAI,GAAG,IAAI,UAAU,EAAE,CAAC;SAChC;;QAED,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;;QAE1D,IAAI,CAAC,SAAS,EAAE,CAAC;KACpB,CAAC;;;;;;;;;;;;IAYF,OAAO,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,OAAO;IAC7C;QACI,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,EAAE,CAAC;;QAEvC,IAAI,OAAO,GAAG,IAAI,CAAC;;QAEnB,IAAI,OAAO,MAAM,KAAK,QAAQ;QAC9B;YACI,OAAO,GAAG,MAAM,CAAC;SACpB;;QAED;YACI,IAAI,CAAC,MAAM,CAAC,OAAO;YACnB;gBACI,MAAM,CAAC,OAAO,GAAG,SAAS,IAAI,GAAG,EAAE,CAAC,CAAC;aACxC;;YAED,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC;SAC5B;;QAED,IAAI,OAAO,GAAG,YAAY,CAAC,OAAO,CAAC,CAAC;;QAEpC,IAAI,CAAC,OAAO;QACZ;YACI,IAAI,CAAC,OAAO,CAAC,UAAU;YACvB;gBACI,OAAO,CAAC,UAAU,GAAG,kBAAkB,CAAC,MAAM,CAAC,CAAC;aACnD;;YAED,OAAO,GAAG,IAAI,OAAO,CAAC,IAAI,WAAW,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;YACxD,OAAO,CAAC,WAAW,CAAC,OAAO,GAAG,OAAO,CAAC;;YAEtC,WAAW,CAAC,UAAU,CAAC,OAAO,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;YACrD,OAAO,CAAC,UAAU,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;SACxC;;;QAGD,OAAO,OAAO,CAAC;KAClB,CAAC;;;;;;;;;;;;;IAaF,OAAO,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO;IACxE;QACI,OAAO,IAAI,OAAO,CAAC,WAAW,CAAC,UAAU,CAAC,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;KAC9E,CAAC;;;;;;;;;;;;IAYF,OAAO,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI;IAChE;QACI,IAAI,QAAQ,GAAG,IAAI,aAAa,CAAC,MAAM,CAAC,CAAC;;QAEzC,QAAQ,CAAC,GAAG,GAAG,QAAQ,CAAC;;QAExB,IAAI,WAAW,GAAG,IAAI,WAAW,CAAC,QAAQ,EAAE;YACxC,SAAS,EAAE,QAAQ,CAAC,UAAU;YAC9B,UAAU,EAAE,kBAAkB,CAAC,QAAQ,CAAC;SAC3C,CAAC,CAAC;;QAEH,IAAI,OAAO,GAAG,IAAI,OAAO,CAAC,WAAW,CAAC,CAAC;;;QAGvC,IAAI,CAAC,IAAI;QACT;YACI,IAAI,GAAG,QAAQ,CAAC;SACnB;;;QAGD,WAAW,CAAC,UAAU,CAAC,OAAO,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;QAClD,OAAO,CAAC,UAAU,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;;;QAGlC,IAAI,IAAI,KAAK,QAAQ;QACrB;YACI,WAAW,CAAC,UAAU,CAAC,OAAO,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC;YACtD,OAAO,CAAC,UAAU,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;SACzC;;QAED,OAAO,OAAO,CAAC;KAClB,CAAC;;;;;;;;;IASF,OAAO,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,OAAO,EAAE,EAAE;IACrD;QACI,IAAI,EAAE;QACN;YACI,IAAI,OAAO,CAAC,eAAe,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;YAC9C;gBACI,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;aACpC;;YAED,IAAI,YAAY,CAAC,EAAE,CAAC;YACpB;;gBAEI,OAAO,CAAC,IAAI,EAAE,yCAAyC,GAAG,EAAE,GAAG,6BAA6B,EAAE,CAAC;aAClG;;YAED,YAAY,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC;SAC9B;KACJ,CAAC;;;;;;;;;IASF,OAAO,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,OAAO;IAC3D;QACI,IAAI,OAAO,OAAO,KAAK,QAAQ;QAC/B;YACI,IAAI,gBAAgB,GAAG,YAAY,CAAC,OAAO,CAAC,CAAC;;YAE7C,IAAI,gBAAgB;YACpB;gBACI,IAAI,KAAK,GAAG,gBAAgB,CAAC,eAAe,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;;gBAE9D,IAAI,KAAK,GAAG,CAAC,CAAC;gBACd;oBACI,gBAAgB,CAAC,eAAe,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;iBACrD;;gBAED,OAAO,YAAY,CAAC,OAAO,CAAC,CAAC;;gBAE7B,OAAO,gBAAgB,CAAC;aAC3B;SACJ;aACI,IAAI,OAAO,IAAI,OAAO,CAAC,eAAe;QAC3C;YACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,eAAe,CAAC,MAAM,EAAE,EAAE,CAAC;YACvD;;gBAEI,IAAI,YAAY,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,KAAK,OAAO;gBACxD;oBACI,OAAO,YAAY,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC;iBACnD;aACJ;;YAED,OAAO,CAAC,eAAe,CAAC,MAAM,GAAG,CAAC,CAAC;;YAEnC,OAAO,OAAO,CAAC;SAClB;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;IACpC;QACI,OAAO,IAAI,CAAC,WAAW,CAAC,UAAU,CAAC;KACtC,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,MAAM,CAAC;KACtB,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;;QAEpB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;QAErB,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QAChB,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;QAChB,IAAI,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;QACxB,IAAI,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;QAC1B,IAAI,OAAO,GAAG,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC;QACjD,IAAI,OAAO,GAAG,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC;;QAEnD,IAAI,OAAO,IAAI,OAAO;QACtB;YACI,IAAI,YAAY,GAAG,OAAO,IAAI,OAAO,GAAG,KAAK,GAAG,IAAI,CAAC;YACrD,IAAI,MAAM,GAAG,KAAK,GAAG,CAAC,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,IAAI,CAAC,GAAG,KAAK,CAAC,GAAG,KAAK,IAAI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;YAChG,IAAI,MAAM,GAAG,KAAK,GAAG,CAAC,GAAG,KAAK,GAAG,MAAM,GAAG,KAAK,IAAI,CAAC,GAAG,MAAM,CAAC,GAAG,KAAK,IAAI,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;;YAEnG,MAAM,IAAI,KAAK,CAAC,wEAAwE;kBAClF,MAAM,GAAG,GAAG,GAAG,YAAY,GAAG,GAAG,GAAG,MAAM,CAAC,CAAC;SACrD;;QAED,IAAI,CAAC,KAAK,GAAG,KAAK,IAAI,MAAM,IAAI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC;;QAEvD,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM;QAC9B;YACI,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC;SACrB;;QAED,IAAI,IAAI,CAAC,KAAK;QACd;YACI,IAAI,CAAC,SAAS,EAAE,CAAC;SACpB;KACJ,CAAC;;;;;;;;;;;IAWF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,OAAO,CAAC;KACvB,CAAC;;IAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,MAAM;IAChD;QACI,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;QACtB,IAAI,IAAI,CAAC,KAAK;QACd;YACI,IAAI,CAAC,SAAS,EAAE,CAAC;SACpB;KACJ,CAAC;;;;;;;IAOF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC;KAC1B,CAAC;;;;;;;IAOF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC;KAC3B,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,OAAO,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAEjE,OAAO,OAAO,CAAC;CAClB,CAACC,aAAY,CAAC,CAAC,CAAC;;AAEjB,SAAS,kBAAkB;AAC3B;IACI,IAAI,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;IAE9C,MAAM,CAAC,KAAK,GAAG,EAAE,CAAC;IAClB,MAAM,CAAC,MAAM,GAAG,EAAE,CAAC;;IAEnB,IAAI,OAAO,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;IAEtC,OAAO,CAAC,SAAS,GAAG,OAAO,CAAC;IAC5B,OAAO,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;;IAE/B,OAAO,IAAI,OAAO,CAAC,IAAI,WAAW,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;CACnE;;AAED,SAAS,iBAAiB,CAAC,GAAG;AAC9B;IACI,GAAG,CAAC,OAAO,GAAG,SAAS,aAAa,GAAG,eAAe,CAAC;IACvD,GAAG,CAAC,EAAE,GAAG,SAAS,QAAQ,GAAG,eAAe,CAAC;IAC7C,GAAG,CAAC,IAAI,GAAG,SAAS,UAAU,GAAG,eAAe,CAAC;IACjD,GAAG,CAAC,IAAI,GAAG,SAAS,UAAU,GAAG,eAAe,CAAC;CACpD;;;;;;;;;;AAUD,OAAO,CAAC,KAAK,GAAG,IAAI,OAAO,CAAC,IAAI,WAAW,EAAE,CAAC,CAAC;AAC/C,iBAAiB,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;AACjC,iBAAiB,CAAC,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;;;;;;;;;;AAU7C,OAAO,CAAC,KAAK,GAAG,kBAAkB,EAAE,CAAC;AACrC,iBAAiB,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;AACjC,iBAAiB,CAAC,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0C7C,IAAI,aAAa,iBAAiB,UAAU,OAAO,EAAE;IACjD,SAAS,aAAa,CAAC,iBAAiB,EAAE,KAAK;IAC/C;;QAEI,IAAI,eAAe,GAAG,IAAI,CAAC;;QAE3B,IAAI,EAAE,iBAAiB,YAAY,iBAAiB,CAAC;QACrD;;YAEI,IAAI,KAAK,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;YACzB,IAAI,MAAM,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;YAC1B,IAAI,SAAS,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;YAC7B,IAAI,UAAU,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;;YAG9B,OAAO,CAAC,IAAI,EAAE,kCAAkC,GAAG,KAAK,GAAG,IAAI,GAAG,MAAM,GAAG,iCAAiC,EAAE,CAAC;YAC/G,eAAe,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;;YAG/B,KAAK,GAAG,IAAI,CAAC;YACb,iBAAiB,GAAG,IAAI,iBAAiB,CAAC;gBACtC,KAAK,EAAE,KAAK;gBACZ,MAAM,EAAE,MAAM;gBACd,SAAS,EAAE,SAAS;gBACpB,UAAU,EAAE,UAAU;aACzB,CAAC,CAAC;SACN;;;;;;;QAOD,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,iBAAiB,EAAE,KAAK,CAAC,CAAC;;QAE7C,IAAI,CAAC,cAAc,GAAG,eAAe,CAAC;;;;;;;QAOtC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;;;;;;;QASlB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;QAOxB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;;QAE1B,IAAI,CAAC,SAAS,EAAE,CAAC;KACpB;;IAED,KAAK,OAAO,GAAG,aAAa,CAAC,SAAS,GAAG,OAAO,CAAC;IACjD,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,IAAI,OAAO,CAAC,SAAS,EAAE,CAAC;IACxE,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;;;;;;;;IASpD,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,iBAAiB;IAClF;QACI,KAAK,iBAAiB,KAAK,KAAK,CAAC,GAAG,iBAAiB,GAAG,IAAI,CAAC;;QAE7D,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACzB,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;;QAG3B,IAAI,CAAC,KAAK,IAAI,KAAK,GAAG,CAAC,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC;;QAEvC,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QAC5C,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;QAE/C,IAAI,iBAAiB;QACrB;YACI,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;SAC1C;;QAED,IAAI,CAAC,SAAS,EAAE,CAAC;KACpB,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,UAAU;IAC1E;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,WAAW,GAAG,GAAG,CAAC,WAAW,CAAC;;QAElC,IAAI,WAAW,CAAC,UAAU,KAAK,UAAU;QACzC;YACI,OAAO;SACV;;QAED,WAAW,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC;QACtC,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;KAC7D,CAAC;;;;;;;;;;;;IAYF,aAAa,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,OAAO;IAC/C;;QAEI,IAAI,OAAO,OAAO,KAAK,QAAQ;QAC/B;;YAEI,OAAO,GAAG;gBACN,KAAK,EAAE,OAAO;gBACd,MAAM,EAAE,SAAS,CAAC,CAAC,CAAC;gBACpB,SAAS,EAAE,SAAS,CAAC,CAAC,CAAC;gBACvB,UAAU,EAAE,SAAS,CAAC,CAAC,CAAC;aAC3B,CAAC;;SAEL;;QAED,OAAO,IAAI,aAAa,CAAC,IAAI,iBAAiB,CAAC,OAAO,CAAC,CAAC,CAAC;KAC5D,CAAC;;IAEF,OAAO,aAAa,CAAC;CACxB,CAAC,OAAO,CAAC,CAAC,CAAC;;;;;;;;;;;;;;AAcZ,IAAI,iBAAiB,GAAG,SAAS,iBAAiB,CAAC,cAAc;AACjE;IACI,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;IACtB,IAAI,CAAC,cAAc,GAAG,cAAc,IAAI,EAAE,CAAC;;;;;;;;;IAS3C,IAAI,CAAC,gBAAgB,GAAG,KAAK,CAAC;;IAE9B,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;IACtB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;CAC1B,CAAC;;;;;;;;;AASF,iBAAiB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,SAAS,EAAE,UAAU;AACzF;IACI,IAAI,iBAAiB,GAAG,IAAI,iBAAiB,CAAC,MAAM,CAAC,MAAM,CAAC;QACxD,KAAK,EAAE,SAAS;QAChB,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,CAAC;KAChB,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC;;IAEzB,OAAO,IAAI,aAAa,CAAC,iBAAiB,CAAC,CAAC;CAC/C,CAAC;;;;;;;;;;;AAWF,iBAAiB,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU;AAC3G;QACQ,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC;;IAEhD,IAAI,GAAG,GAAG,iBAAiB,CAAC,UAAU,CAAC;;IAEvC,QAAQ,IAAI,UAAU,CAAC;IACvB,SAAS,IAAI,UAAU,CAAC;;IAExB,IAAI,CAAC,IAAI,CAAC,gBAAgB,IAAI,QAAQ,KAAK,IAAI,CAAC,YAAY,IAAI,SAAS,KAAK,IAAI,CAAC,aAAa;IAChG;QACI,QAAQ,GAAG,QAAQ,CAAC,QAAQ,CAAC,CAAC;QAC9B,SAAS,GAAG,QAAQ,CAAC,SAAS,CAAC,CAAC;QAChC,GAAG,GAAG,CAAC,CAAC,QAAQ,GAAG,MAAM,KAAK,EAAE,KAAK,SAAS,GAAG,MAAM,CAAC,CAAC;KAC5D;;IAED,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC;IAC1B;QACI,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC;KAC9B;;IAED,IAAI,aAAa,GAAG,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,CAAC;;IAEhD,IAAI,CAAC,aAAa;IAClB;QACI,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC,QAAQ,EAAE,SAAS,CAAC,CAAC;KAC3D;;IAED,aAAa,CAAC,aAAa,GAAG,GAAG,CAAC;IAClC,aAAa,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC;;IAExC,OAAO,aAAa,CAAC;CACxB,CAAC;;;;;;;;;;;;AAYF,iBAAiB,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,KAAK,EAAE,UAAU;AAC3F;IACI,IAAI,aAAa,GAAG,IAAI,CAAC,iBAAiB,CAAC,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,MAAM,EAAE,UAAU,IAAI,KAAK,CAAC,UAAU,CAAC,CAAC;;IAEtG,aAAa,CAAC,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC;;IAE9C,OAAO,aAAa,CAAC;CACxB,CAAC;;;;;;AAMF,iBAAiB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,aAAa;AACjF;IACI,IAAI,GAAG,GAAG,aAAa,CAAC,aAAa,CAAC;;IAEtC,aAAa,CAAC,WAAW,GAAG,IAAI,CAAC;IACjC,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;CAC7C,CAAC;;;;;;AAMF,iBAAiB,CAAC,SAAS,CAAC,mBAAmB,GAAG,SAAS,mBAAmB,EAAE,aAAa;AAC7F;IACI,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,CAAC;CACrC,CAAC;;;;;;;AAOF,iBAAiB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,eAAe;AACnE;IACI,eAAe,GAAG,eAAe,KAAK,KAAK,CAAC;IAC5C,IAAI,eAAe;IACnB;QACI,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,WAAW;QAC9B;YACI,IAAI,QAAQ,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;;YAEnC,IAAI,QAAQ;YACZ;gBACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;gBACxC;oBACI,QAAQ,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;iBAC7B;aACJ;SACJ;KACJ;;IAED,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;CACzB,CAAC;;;;;;;;;;AAUF,iBAAiB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,IAAI;AACxE;IACI,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI,CAAC,YAAY;WAC7B,IAAI,CAAC,MAAM,KAAK,IAAI,CAAC,aAAa;IACzC;QACI,OAAO;KACV;;IAED,IAAI,SAAS,GAAG,iBAAiB,CAAC,UAAU,CAAC;IAC7C,IAAI,QAAQ,GAAG,IAAI,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC;;IAE3C,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;;IAE1D,IAAI,QAAQ;IACZ;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;QACxC;YACI,QAAQ,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;SAC7B;KACJ;IACD,IAAI,CAAC,WAAW,CAAC,SAAS,CAAC,GAAG,EAAE,CAAC;;IAEjC,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,KAAK,CAAC;IAC/B,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,MAAM,CAAC;CACpC,CAAC;;;;;;;;AAQF,iBAAiB,CAAC,UAAU,GAAG,QAAQ,CAAC;;;;;;;;;;;;;AAaxC,IAAI,SAAS,GAAG,SAAS,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ;AAC1F;IACI,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,KAAK,CAAC;IAChD,KAAK,IAAI,KAAK,KAAK,CAAC,GAAG,IAAI,GAAG,IAAI,CAAC;;IAEnC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACrB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;IAC7B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACrB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;IACnB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;CAC5B,CAAC;;;;;AAKF,SAAS,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC9C;IACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;CACtB,CAAC;;;;;;;;;;;;;;AAcF,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM;AACtE;IACI,OAAO,IAAI,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;CAChE,CAAC;;AAEF,IAAI,GAAG,GAAG,CAAC,CAAC;;;;;;;;;AASZ,IAAIE,QAAM,GAAG,SAAS,MAAM,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK;AACjD;IACI,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,IAAI,CAAC;IACzC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,KAAK,CAAC;;;;;;;IAOtC,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;;;;;;;;IAQxC,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;;IAErB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;;IAEnB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;IAEnB,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC;;IAEtB,IAAI,CAAC,EAAE,GAAG,GAAG,EAAE,CAAC;;IAEhB,IAAI,CAAC,aAAa,GAAG,IAAI,MAAM,CAAC,eAAe,EAAE,CAAC,CAAC,CAAC;CACvD,CAAC;;;;;;;AAOFA,QAAM,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,IAAI;AAC/C;IACI,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,IAAI,CAAC,IAAI,CAAC;IAC9B,IAAI,CAAC,SAAS,EAAE,CAAC;CACpB,CAAC;;;;;AAKFA,QAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC3C;IACI,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;CACvC,CAAC;;;;;AAKFA,QAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC3C;IACI,IAAI,CAAC,OAAO,EAAE,CAAC;;IAEf,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CACpB,CAAC;;;;;;;;;AASFA,QAAM,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,IAAI;AACjC;IACI,IAAI,IAAI,YAAY,KAAK;IACzB;QACI,IAAI,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,CAAC;KACjC;;IAED,OAAO,IAAIA,QAAM,CAAC,IAAI,CAAC,CAAC;CAC3B,CAAC;;AAEF,SAAS,aAAa,CAAC,KAAK;AAC5B;IACI,IAAI,KAAK,CAAC,iBAAiB,KAAK,CAAC;IACjC;QACI,IAAI,KAAK,YAAY,YAAY;QACjC;YACI,OAAO,cAAc,CAAC;SACzB;aACI,IAAI,KAAK,YAAY,WAAW;QACrC;YACI,OAAO,aAAa,CAAC;SACxB;;QAED,OAAO,YAAY,CAAC;KACvB;SACI,IAAI,KAAK,CAAC,iBAAiB,KAAK,CAAC;IACtC;QACI,IAAI,KAAK,YAAY,WAAW;QAChC;YACI,OAAO,aAAa,CAAC;SACxB;KACJ;SACI,IAAI,KAAK,CAAC,iBAAiB,KAAK,CAAC;IACtC;QACI,IAAI,KAAK,YAAY,UAAU;QAC/B;YACI,OAAO,YAAY,CAAC;SACvB;KACJ;;;IAGD,OAAO,IAAI,CAAC;CACf;;;AAGD,IAAIX,KAAG,GAAG;IACN,YAAY,EAAE,YAAY;IAC1B,WAAW,EAAE,WAAW;IACxB,UAAU,EAAE,UAAU;IACtB,UAAU,EAAE,UAAU;CACzB,CAAC;;AAEF,SAAS,qBAAqB,CAAC,MAAM,EAAE,KAAK;AAC5C;IACI,IAAI,OAAO,GAAG,CAAC,CAAC;IAChB,IAAI,MAAM,GAAG,CAAC,CAAC;IACf,IAAI,KAAK,GAAG,EAAE,CAAC;;IAEf,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,EAAE;IACtC;QACI,MAAM,IAAI,KAAK,CAAC,CAAC,CAAC,CAAC;QACnB,OAAO,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;KAC/B;;IAED,IAAI,MAAM,GAAG,IAAI,WAAW,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC;;IAE1C,IAAI,GAAG,GAAG,IAAI,CAAC;IACf,IAAI,YAAY,GAAG,CAAC,CAAC;;IAErB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,EAAE;IAC5C;QACI,IAAI,IAAI,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC;QACtB,IAAI,KAAK,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;;QAExB,IAAI,IAAI,GAAG,aAAa,CAAC,KAAK,CAAC,CAAC;;QAEhC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;QAChB;YACI,KAAK,CAAC,IAAI,CAAC,GAAG,IAAIA,KAAG,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC;SACvC;;QAED,GAAG,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC;;QAElB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE;QACrC;YACI,IAAI,UAAU,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC,IAAI,MAAM,IAAI,YAAY,CAAC;YAC1D,IAAI,KAAK,GAAG,CAAC,GAAG,IAAI,CAAC;;YAErB,GAAG,CAAC,UAAU,GAAG,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;SACtC;;QAED,YAAY,IAAI,IAAI,CAAC;KACxB;;IAED,OAAO,IAAI,YAAY,CAAC,MAAM,CAAC,CAAC;CACnC;;AAED,IAAI,WAAW,GAAG,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC;AAChD,IAAI,KAAK,GAAG,CAAC,CAAC;;;AAGd,IAAIY,OAAK,GAAG;IACR,YAAY,EAAE,YAAY;IAC1B,WAAW,EAAE,WAAW;IACxB,UAAU,EAAE,UAAU;IACtB,UAAU,EAAE,UAAU;IACtB,WAAW,EAAE,WAAW;CAC3B,CAAC;;;;;;;;;;;;;;;;;;;;;;;AAuBF,IAAI,QAAQ,GAAG,SAAS,QAAQ,CAAC,OAAO,EAAE,UAAU;AACpD;IACI,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,EAAE,CAAC;IACvC,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,EAAE,CAAC;;IAE7C,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;IAEvB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;IAExB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;;;;;;;;IAQ7B,IAAI,CAAC,oBAAoB,GAAG,EAAE,CAAC;;IAE/B,IAAI,CAAC,EAAE,GAAG,KAAK,EAAE,CAAC;;IAElB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;;;;;;IAOvB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;IAEvB,IAAI,CAAC,aAAa,GAAG,IAAI,MAAM,CAAC,iBAAiB,EAAE,CAAC,CAAC,CAAC;;;;;;IAMtD,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;CACrB,CAAC;;;;;;;;;;;;;;;;AAgBF,QAAQ,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ;AACpH;QACQ,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,KAAK,CAAC;QAChD,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,KAAK,CAAC;;IAEhD,IAAI,CAAC,MAAM;IACX;QACI,MAAM,IAAI,KAAK,CAAC,mDAAmD,CAAC,CAAC;KACxE;;;IAGD,IAAI,CAAC,MAAM,CAAC,IAAI;IAChB;;QAEI,IAAI,MAAM,YAAY,KAAK;QAC3B;YACI,MAAM,GAAG,IAAI,YAAY,CAAC,MAAM,CAAC,CAAC;SACrC;;QAED,MAAM,GAAG,IAAID,QAAM,CAAC,MAAM,CAAC,CAAC;KAC/B;;IAED,IAAI,GAAG,GAAG,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;;IAExB,IAAI,GAAG,CAAC,MAAM,GAAG,CAAC;IAClB;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,EAAE;QACnC;YACI,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC;SAC7D;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,IAAI,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;IAE/C,IAAI,WAAW,KAAK,CAAC,CAAC;IACtB;QACI,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC1B,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;KACzC;;IAED,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,GAAG,IAAI,SAAS,CAAC,WAAW,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,CAAC,CAAC;;;IAGlG,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,IAAI,QAAQ,CAAC;;IAE5C,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;AAQF,QAAQ,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,EAAE;AAC3D;IACI,OAAO,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;CAC9B,CAAC;;;;;;;;AAQF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,EAAE;AACrD;IACI,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC;CACrD,CAAC;;;;;;;;;;AAUF,QAAQ,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,MAAM;AACvD;IACI,IAAI,CAAC,MAAM,CAAC,IAAI;IAChB;;QAEI,IAAI,MAAM,YAAY,KAAK;QAC3B;YACI,MAAM,GAAG,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC;SACpC;;QAED,MAAM,GAAG,IAAIA,QAAM,CAAC,MAAM,CAAC,CAAC;KAC/B;;IAED,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,WAAW,GAAG,MAAM,CAAC;;IAE1B,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IACvC;QACI,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;KAC7B;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;AAOF,QAAQ,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ;AAC/C;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;;;;;;;;AAQF,QAAQ,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;AACnD;;IAEI,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,KAAK,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,IAAI,IAAI,CAAC,WAAW,CAAC,EAAE,EAAE,OAAO,IAAI,CAAC,EAAE;;;IAGlG,IAAI,MAAM,GAAG,EAAE,CAAC;IAChB,IAAI,KAAK,GAAG,EAAE,CAAC;IACf,IAAI,iBAAiB,GAAG,IAAIA,QAAM,EAAE,CAAC;IACrC,IAAI,CAAC,CAAC;;IAEN,KAAK,CAAC,IAAI,IAAI,CAAC,UAAU;IACzB;QACI,IAAI,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;;QAEnC,IAAI,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;;QAE5C,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;QAEzB,KAAK,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,IAAI,GAAG,WAAW,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;;QAE/D,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;KACxB;;IAED,iBAAiB,CAAC,IAAI,GAAG,qBAAqB,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;;IAE9D,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;IACxC;QACI,IAAI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,WAAW;QACxC;YACI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;SAC7B;KACJ;;IAED,IAAI,CAAC,OAAO,GAAG,CAAC,iBAAiB,CAAC,CAAC;;IAEnC,IAAI,IAAI,CAAC,WAAW;IACpB;QACI,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;KACvC;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;AAEF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC7C;IACI,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,UAAU;IAC7B;QACI,IAAI,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;QACnC,IAAI,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;;QAE5C,OAAO,MAAM,CAAC,IAAI,CAAC,MAAM,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,KAAK,SAAS,CAAC,IAAI,CAAC,CAAC;KAC1E;;IAED,OAAO,CAAC,CAAC;CACZ,CAAC;;;;;AAKF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC7C;IACI,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;CACvC,CAAC;;;;;AAKF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC7C;IACI,IAAI,CAAC,OAAO,EAAE,CAAC;;IAEf,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC;;IAE3B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;CAC1B,CAAC;;;;;;;AAOF,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACzC;IACI,IAAI,QAAQ,GAAG,IAAI,QAAQ,EAAE,CAAC;;IAE9B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;IAC5C;QACI,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,IAAIA,QAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,CAAC;KAClE;;IAED,KAAK,IAAI,GAAG,IAAI,IAAI,CAAC,UAAU;IAC/B;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;;QAElC,QAAQ,CAAC,UAAU,CAAC,GAAG,CAAC,GAAG,IAAI,SAAS;YACpC,MAAM,CAAC,MAAM;YACb,MAAM,CAAC,IAAI;YACX,MAAM,CAAC,UAAU;YACjB,MAAM,CAAC,IAAI;YACX,MAAM,CAAC,MAAM;YACb,MAAM,CAAC,KAAK;YACZ,MAAM,CAAC,QAAQ;SAClB,CAAC;KACL;;IAED,IAAI,IAAI,CAAC,WAAW;IACpB;QACI,QAAQ,CAAC,WAAW,GAAG,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;QAChF,QAAQ,CAAC,WAAW,CAAC,KAAK,GAAG,IAAI,CAAC;KACrC;;IAED,OAAO,QAAQ,CAAC;CACnB,CAAC;;;;;;;;;AASF,QAAQ,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,UAAU;AAC3C;;;;IAII,IAAI,WAAW,GAAG,IAAI,QAAQ,EAAE,CAAC;;IAEjC,IAAI,MAAM,GAAG,EAAE,CAAC;IAChB,IAAI,KAAK,GAAG,EAAE,CAAC;IACf,IAAI,OAAO,GAAG,EAAE,CAAC;;IAEjB,IAAI,QAAQ,CAAC;;;IAGb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE;IAC1C;QACI,QAAQ,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;;QAEzB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;QAChD;YACI,KAAK,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;YACzB,KAAK,CAAC,CAAC,CAAC,IAAI,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;YAC5C,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;SAClB;KACJ;;;IAGD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE;IACtD;;QAEI,MAAM,CAAC,GAAG,CAAC,GAAG,IAAIC,OAAK,CAAC,aAAa,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;QAC/E,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,IAAID,QAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;KACtD;;;IAGD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,GAAG,EAAE;IAChD;QACI,QAAQ,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;;QAE3B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE;QACtD;YACI,MAAM,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC;YAC1D,OAAO,CAAC,GAAG,CAAC,IAAI,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;SACrD;KACJ;;IAED,WAAW,CAAC,UAAU,GAAG,QAAQ,CAAC,UAAU,CAAC;;IAE7C,IAAI,QAAQ,CAAC,WAAW;IACxB;QACI,WAAW,CAAC,WAAW,GAAG,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC,CAAC;QAC9F,WAAW,CAAC,WAAW,CAAC,KAAK,GAAG,IAAI,CAAC;;QAErC,IAAI,MAAM,GAAG,CAAC,CAAC;QACf,IAAI,MAAM,GAAG,CAAC,CAAC;QACf,IAAI,OAAO,GAAG,CAAC,CAAC;QAChB,IAAI,kBAAkB,GAAG,CAAC,CAAC;;;QAG3B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE;QACtD;YACI,IAAI,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,QAAQ,CAAC,WAAW;YAClD;gBACI,kBAAkB,GAAG,GAAG,CAAC;gBACzB,MAAM;aACT;SACJ;;;QAGD,KAAK,IAAI,GAAG,IAAI,QAAQ,CAAC,UAAU;QACnC;YACI,IAAI,SAAS,GAAG,QAAQ,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;;YAEzC,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,MAAM,kBAAkB;YACjD;gBACI,MAAM,KAAK,CAAC,SAAS,CAAC,IAAI,GAAG,WAAW,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;aAClE;SACJ;;;QAGD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,GAAG,EAAE;QAChD;YACI,IAAI,eAAe,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC;;YAEvD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE;YACrD;gBACI,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,GAAG,GAAG,OAAO,CAAC,IAAI,MAAM,CAAC;aACzD;;YAED,MAAM,IAAI,QAAQ,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,IAAI,CAAC,MAAM,IAAI,MAAM,CAAC,CAAC;YACtE,OAAO,IAAI,eAAe,CAAC,MAAM,CAAC;SACrC;KACJ;;IAED,OAAO,WAAW,CAAC;CACtB,CAAC;;;;;;;;AAQF,IAAI,IAAI,iBAAiB,UAAU,QAAQ,EAAE;IACzC,SAAS,IAAI;IACb;QACI,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAEpB,IAAI,CAAC,YAAY,CAAC,iBAAiB,EAAE;YACjC,CAAC,EAAE,CAAC;YACJ,CAAC,EAAE,CAAC;YACJ,CAAC,EAAE,CAAC;YACJ,CAAC,EAAE,CAAC,EAAE,CAAC;aACN,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;KAC/B;;IAED,KAAK,QAAQ,GAAG,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;IAC1C,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,QAAQ,IAAI,QAAQ,CAAC,SAAS,EAAE,CAAC;IACjE,IAAI,CAAC,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC;;IAElC,OAAO,IAAI,CAAC;CACf,CAAC,QAAQ,CAAC,CAAC,CAAC;;;;;;;;;AASb,IAAI,MAAM,iBAAiB,UAAU,QAAQ,EAAE;IAC3C,SAAS,MAAM;IACf;QACI,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;QAOpB,IAAI,CAAC,QAAQ,GAAG,IAAI,YAAY,CAAC;YAC7B,CAAC,CAAC,EAAE,CAAC,CAAC;YACN,CAAC,EAAE,CAAC,CAAC;YACL,CAAC,EAAE,CAAC;YACJ,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;;;;;;;QAOb,IAAI,CAAC,GAAG,GAAG,IAAI,YAAY,CAAC;YACxB,CAAC,EAAE,CAAC;YACJ,CAAC,EAAE,CAAC;YACJ,CAAC,EAAE,CAAC;YACJ,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;;QAEZ,IAAI,CAAC,YAAY,GAAG,IAAIA,QAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAC9C,IAAI,CAAC,QAAQ,GAAG,IAAIA,QAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;QAErC,IAAI,CAAC,YAAY,CAAC,iBAAiB,EAAE,IAAI,CAAC,YAAY,CAAC;aAClD,YAAY,CAAC,eAAe,EAAE,IAAI,CAAC,QAAQ,CAAC;aAC5C,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;KACrC;;IAED,KAAK,QAAQ,GAAG,MAAM,CAAC,SAAS,GAAG,QAAQ,CAAC;IAC5C,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,QAAQ,IAAI,QAAQ,CAAC,SAAS,EAAE,CAAC;IACnE,MAAM,CAAC,SAAS,CAAC,WAAW,GAAG,MAAM,CAAC;;;;;;;;;IAStC,MAAM,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,kBAAkB,EAAE,gBAAgB;IACzE;QACI,IAAI,CAAC,GAAG,CAAC,CAAC;QACV,IAAI,CAAC,GAAG,CAAC,CAAC;;QAEV,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QAChB,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;;QAEhB,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,gBAAgB,CAAC,KAAK,GAAG,kBAAkB,CAAC,KAAK,CAAC,CAAC;QACtE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;;QAEhB,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,gBAAgB,CAAC,KAAK,GAAG,kBAAkB,CAAC,KAAK,CAAC,CAAC;QACtE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,gBAAgB,CAAC,MAAM,GAAG,kBAAkB,CAAC,MAAM,CAAC,CAAC;;QAExE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QAChB,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,gBAAgB,CAAC,MAAM,GAAG,kBAAkB,CAAC,MAAM,CAAC,CAAC;;QAExE,CAAC,GAAG,gBAAgB,CAAC,CAAC,CAAC;QACvB,CAAC,GAAG,gBAAgB,CAAC,CAAC,CAAC;;QAEvB,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QACrB,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;;QAErB,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,gBAAgB,CAAC,KAAK,CAAC;QAC9C,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;;QAErB,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,gBAAgB,CAAC,KAAK,CAAC;QAC9C,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,gBAAgB,CAAC,MAAM,CAAC;;QAE/C,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QACrB,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,gBAAgB,CAAC,MAAM,CAAC;;QAE/C,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,MAAM,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IACjD;QACI,IAAI,CAAC,YAAY,CAAC,SAAS,EAAE,CAAC;QAC9B,IAAI,CAAC,QAAQ,CAAC,SAAS,EAAE,CAAC;;QAE1B,OAAO,IAAI,CAAC;KACf,CAAC;;IAEF,OAAO,MAAM,CAAC;CACjB,CAAC,QAAQ,CAAC,CAAC,CAAC;;AAEb,IAAI,KAAK,GAAG,CAAC,CAAC;;;;;;;;AAQd,IAAI,YAAY,GAAG,SAAS,YAAY,CAAC,QAAQ,EAAE,OAAO;AAC1D;;;;;;IAMI,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;;;;;;;;IAQzB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;IAGlB,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;;;;;;;IAOvB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;IAOjB,IAAI,CAAC,EAAE,GAAG,KAAK,EAAE,CAAC;;;;;;IAMlB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,OAAO,CAAC;CAC3B,CAAC;;AAEF,YAAY,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;AAC/C;IACI,IAAI,CAAC,OAAO,EAAE,CAAC;CAClB,CAAC;;AAEF,YAAY,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO;AAClE;IACI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,IAAI,YAAY,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;CAC7D,CAAC;;AAEF,YAAY,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,QAAQ,EAAE,OAAO;AACpD;IACI,OAAO,IAAI,YAAY,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;CAC9C,CAAC;;;;;;;;AAQF,IAAI,WAAW,GAAG,SAAS,WAAW;AACtC;IACI,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;;;;;;;;IAQ1B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;;IAQnB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;;;;;;;;IAQpB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;;;;;;;;;IAUpB,IAAI,CAAC,WAAW,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;IAOnC,IAAI,CAAC,gBAAgB,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;IAOxC,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;CACrB,CAAC;;;;;;AAMF,WAAW,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC5C;IACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;IACnB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;CAC7B,CAAC;;;;;;;;;AASF,IAAI,YAAY,iBAAiB,UAAU,MAAM,EAAE;IAC/C,SAAS,YAAY,CAAC,QAAQ;IAC9B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;QAO5B,IAAI,CAAC,kBAAkB,GAAG,CAAC,EAAE,CAAC,CAAC;;;;;;QAM/B,IAAI,CAAC,WAAW,GAAG,IAAI,iBAAiB,EAAE,CAAC;;QAE3C,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;;;;;;QAM9C,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;;;;;;QAMpB,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;;;;;;QAMvB,IAAI,CAAC,MAAM,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;QAM3B,IAAI,CAAC,QAAQ,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;QAMhC,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;;;;;;;;;;;;;QAatB,IAAI,CAAC,cAAc,GAAG,IAAI,YAAY,CAAC;YACnC,WAAW,EAAE,IAAI,CAAC,QAAQ;YAC1B,SAAS,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC;YAC9B,UAAU,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC;YAC/B,UAAU,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC;YAC/B,UAAU,EAAE,CAAC;;;YAGb,UAAU,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC;YAC/B,WAAW,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC;SACnC,EAAE,IAAI,CAAC,CAAC;;QAET,IAAI,CAAC,YAAY,GAAG,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;QACxC,IAAI,CAAC,aAAa,GAAG,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC;KAC7C;;IAED,KAAK,MAAM,GAAG,YAAY,CAAC,SAAS,GAAG,MAAM,CAAC;IAC9C,YAAY,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACrE,YAAY,CAAC,SAAS,CAAC,WAAW,GAAG,YAAY,CAAC;;;;;;;;IAQlD,YAAY,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,OAAO;IAC5D;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;QAC7B,IAAI,WAAW,GAAG,IAAI,CAAC,kBAAkB,CAAC;QAC1C,IAAI,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC,GAAG,EAAE,IAAI,IAAI,WAAW,EAAE,CAAC;;QAEtD,IAAI,UAAU,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC;QACvC,IAAI,OAAO,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC;QACjC,IAAI,OAAO,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC;QACjC,IAAI,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;;QAE/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;QACvC;YACI,IAAI,MAAM,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC;;;YAGzB,UAAU,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC;;YAErD,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC;;YAE5C,OAAO,GAAG,OAAO,IAAI,MAAM,CAAC,OAAO,CAAC;;YAEpC,MAAM,GAAG,MAAM,IAAI,MAAM,CAAC,MAAM,CAAC;SACpC;;QAED,IAAI,WAAW,CAAC,MAAM,KAAK,CAAC;QAC5B;YACI,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,aAAa,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAC;SAC7E;;QAED,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;;QAExB,KAAK,CAAC,UAAU,GAAG,UAAU,CAAC;;QAE9B,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC;;QAEtB,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC;;QAEtB,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,MAAM,CAAC,UAAU,IAAI,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC;;QAExE,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;QAC/B,IAAI,OAAO;QACX;YACI,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,WAAW,CAAC,CAAC;SAClE;;;QAGD,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;;QAEnC,KAAK,CAAC,aAAa,GAAG,IAAI,CAAC,uBAAuB,CAAC,KAAK,CAAC,WAAW,CAAC,KAAK,EAAE,KAAK,CAAC,WAAW,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;QAClH,KAAK,CAAC,OAAO,GAAG,OAAO,CAAC;;QAExB,KAAK,CAAC,gBAAgB,CAAC,KAAK,GAAG,KAAK,CAAC,aAAa,CAAC,KAAK,CAAC;QACzD,KAAK,CAAC,gBAAgB,CAAC,MAAM,GAAG,KAAK,CAAC,aAAa,CAAC,MAAM,CAAC;;QAE3D,KAAK,CAAC,aAAa,CAAC,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC;;QAEpD,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,KAAK,CAAC,aAAa,EAAE,KAAK,CAAC,WAAW,CAAC,CAAC;QACpE,QAAQ,CAAC,aAAa,CAAC,KAAK,EAAE,CAAC;KAClC,CAAC;;;;;;IAMF,YAAY,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG;IACzC;QACI,IAAI,WAAW,GAAG,IAAI,CAAC,kBAAkB,CAAC;QAC1C,IAAI,KAAK,GAAG,WAAW,CAAC,GAAG,EAAE,CAAC;QAC9B,IAAI,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC;;QAE5B,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;;QAEzB,IAAI,cAAc,GAAG,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC;;QAElD,cAAc,CAAC,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC;QAC/C,cAAc,CAAC,UAAU,GAAG,KAAK,CAAC,UAAU,CAAC;;QAE7C,IAAI,SAAS,GAAG,cAAc,CAAC,SAAS,CAAC;QACzC,IAAI,UAAU,GAAG,cAAc,CAAC,UAAU,CAAC;QAC3C,IAAI,UAAU,GAAG,cAAc,CAAC,UAAU,CAAC;;QAE3C,SAAS,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,gBAAgB,CAAC,KAAK,CAAC;QAC5C,SAAS,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,gBAAgB,CAAC,MAAM,CAAC;QAC7C,SAAS,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;QAClC,SAAS,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;QAElC,UAAU,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,UAAU,CAAC;QAChD,UAAU,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,UAAU,CAAC;QAChD,UAAU,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;QACpC,UAAU,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;;QAEpC,UAAU,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;QACpC,UAAU,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;QACpC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,WAAW,CAAC,KAAK,GAAG,SAAS,CAAC,CAAC,CAAC,KAAK,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;QACjF,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,WAAW,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC,CAAC,KAAK,GAAG,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGlF,IAAI,KAAK,CAAC,MAAM;QAChB;YACI,IAAI,UAAU,GAAG,cAAc,CAAC,UAAU,CAAC;;YAE3C,UAAU,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,gBAAgB,CAAC,KAAK,CAAC;YAC7C,UAAU,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,gBAAgB,CAAC,MAAM,CAAC;YAC9C,UAAU,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC;YACpC,UAAU,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC;;YAEpC,cAAc,CAAC,WAAW,GAAG,cAAc,CAAC,UAAU,CAAC;SAC1D;;QAED,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC;;QAE7B,IAAI,SAAS,GAAG,WAAW,CAAC,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;QAEpD,IAAI,OAAO,CAAC,MAAM,KAAK,CAAC;QACxB;YACI,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,KAAK,CAAC,aAAa,EAAE,SAAS,CAAC,aAAa,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;;YAEnF,IAAI,CAAC,mBAAmB,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;SACjD;;QAED;YACI,IAAI,IAAI,GAAG,KAAK,CAAC,aAAa,CAAC;YAC/B,IAAI,IAAI,GAAG,IAAI,CAAC,uBAAuB;gBACnC,IAAI,CAAC,KAAK;gBACV,IAAI,CAAC,MAAM;gBACX,KAAK,CAAC,UAAU;aACnB,CAAC;;YAEF,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;;YAEpC,IAAI,CAAC,GAAG,CAAC,CAAC;;YAEV,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE,EAAE,CAAC;YACvC;gBACI,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;;gBAEhD,IAAI,CAAC,GAAG,IAAI,CAAC;;gBAEb,IAAI,GAAG,IAAI,CAAC;gBACZ,IAAI,GAAG,CAAC,CAAC;aACZ;;YAED,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,EAAE,SAAS,CAAC,aAAa,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;;YAEpE,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAC;YAC/B,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAC;SAClC;;QAED,KAAK,CAAC,KAAK,EAAE,CAAC;QACd,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAC9B,CAAC;;;;;;;;;;IAUF,YAAY,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK;IACvF;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;;QAE7B,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;;QAExE,IAAI,KAAK;QACT;;YAEI,QAAQ,CAAC,aAAa,CAAC,KAAK,EAAE,CAAC;;SAElC;;;QAGD,MAAM,CAAC,QAAQ,CAAC,QAAQ,GAAG,KAAK,CAAC;QACjC,MAAM,CAAC,QAAQ,CAAC,aAAa,GAAG,IAAI,CAAC,cAAc,CAAC;;;;;;QAMpD,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QACjC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;QAE7B,IAAI,MAAM,CAAC,MAAM;QACjB;YACI,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,EAAE,KAAK,CAAC,WAAW,CAAC,CAAC;;YAEjD,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YACpC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC;SAChD;;QAED;YACI,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YAClC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC;SACrD;KACJ,CAAC;;;;;;;;;;;IAWF,YAAY,CAAC,SAAS,CAAC,qBAAqB,GAAG,SAAS,qBAAqB,EAAE,YAAY,EAAE,MAAM;IACnG;QACI,IAAI,GAAG,GAAG,IAAI,CAAC,WAAW,CAAC;QAC3B,IAAI,WAAW,GAAG,GAAG,CAAC,WAAW,CAAC;QAClC,IAAI,gBAAgB,GAAG,GAAG,CAAC,gBAAgB,CAAC;QAC5C,IAAI,KAAK,GAAG,MAAM,CAAC,QAAQ,CAAC;QAC5B,IAAI,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC;QACtB,IAAI,YAAY,GAAG,YAAY,CAAC,GAAG,CAAC,gBAAgB,CAAC,KAAK,EAAE,CAAC,EAAE,CAAC;YAC5D,gBAAgB,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC;QAC3D,IAAI,cAAc,GAAG,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;;QAEtE,cAAc,CAAC,MAAM,EAAE,CAAC;QACxB,YAAY,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;QACrC,YAAY,CAAC,KAAK,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;QACxD,YAAY,CAAC,SAAS,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;;QAEzD,OAAO,YAAY,CAAC;KACvB,CAAC;;;;;IAKF,YAAY,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACjD;;QAEI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;KACjC,CAAC;;;;;;;;;;;IAWF,YAAY,CAAC,SAAS,CAAC,uBAAuB,GAAG,SAAS,uBAAuB,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU;IAClH;QACI,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC;;QAE5C,OAAO,IAAI,CAAC,WAAW,CAAC,iBAAiB,CAAC,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC;KAC9E,CAAC;;;;;;;;;;IAUF,YAAY,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,KAAK,EAAE,UAAU;IACtF;QACI,IAAI,OAAO,KAAK,KAAK,QAAQ;QAC7B;YACI,IAAI,IAAI,GAAG,KAAK,CAAC;;YAEjB,KAAK,GAAG,UAAU,CAAC;YACnB,UAAU,GAAG,IAAI,CAAC;SACrB;;QAED,KAAK,GAAG,KAAK,IAAI,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC;;QAEhD,IAAI,aAAa,GAAG,IAAI,CAAC,WAAW,CAAC,iBAAiB,CAAC,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,MAAM,EAAE,UAAU,IAAI,KAAK,CAAC,UAAU,CAAC,CAAC;;QAElH,aAAa,CAAC,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC;;QAE9C,OAAO,aAAa,CAAC;KACxB,CAAC;;;;;;;IAOF,YAAY,CAAC,SAAS,CAAC,mBAAmB,GAAG,SAAS,mBAAmB,EAAE,aAAa;IACxF;QACI,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,aAAa,CAAC,CAAC;KACjD,CAAC;;;;;IAKF,YAAY,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;IACrD;QACI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;KAChC,CAAC;;;;;IAKF,YAAY,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;IAC/C;QACI,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;KACtD,CAAC;;IAEF,OAAO,YAAY,CAAC;CACvB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;;AAUX,IAAI,cAAc,GAAG,SAAS,cAAc,CAAC,QAAQ;AACrD;;;;;;IAMI,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;CAC5B,CAAC;;;;;;AAMF,cAAc,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC/C;;CAEC,CAAC;;;;;;AAMF,cAAc,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AACnD;IACI,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;CACxB,CAAC;;;;;;;;AAQF,cAAc,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC/C;;CAEC,CAAC;;;;;;AAMF,cAAc,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;AAC7C;IACI,IAAI,CAAC,KAAK,EAAE,CAAC;CAChB,CAAC;;;;;;;;AAQF,cAAc,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,MAAM;AACzD;;CAEC,CAAC;;;;;;;;;AASF,IAAI,WAAW,iBAAiB,UAAU,MAAM,EAAE;IAC9C,SAAS,WAAW,CAAC,QAAQ;IAC7B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;QAO5B,IAAI,CAAC,aAAa,GAAG,IAAI,cAAc,CAAC,QAAQ,CAAC,CAAC;;;;;;;QAOlD,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,aAAa,CAAC;KAC7C;;IAED,KAAK,MAAM,GAAG,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC;IAC7C,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACpE,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,WAAW,CAAC;;;;;;;IAOhD,WAAW,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,cAAc;IACpF;QACI,IAAI,IAAI,CAAC,eAAe,KAAK,cAAc;QAC3C;YACI,OAAO;SACV;;QAED,IAAI,CAAC,eAAe,CAAC,IAAI,EAAE,CAAC;QAC5B,IAAI,CAAC,eAAe,GAAG,cAAc,CAAC;;QAEtC,IAAI,CAAC,eAAe,CAAC,KAAK,EAAE,CAAC;KAChC,CAAC;;;;;;IAMF,WAAW,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC5C;QACI,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KAC9C,CAAC;;;;;IAKF,WAAW,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC5C;QACI,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KAC9C,CAAC;;IAEF,OAAO,WAAW,CAAC;CACtB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;;;;;;;;;;AAkBX,QAAQ,CAAC,UAAU,GAAG,QAAQ,CAAC,GAAG,GAAG,GAAG,CAAC,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC;;AAE5D,IAAI,WAAW,GAAG,CAAC,CAAC;;;;;;;;;AASpB,IAAI,aAAa,iBAAiB,UAAU,MAAM,EAAE;IAChD,SAAS,aAAa,CAAC,QAAQ;IAC/B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;QAO5B,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;;;;;;;;;;;;;QAatB,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;;;QAGrB,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC3D,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAEnE,QAAQ,CAAC,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,IAAI,CAAC,iBAAiB,EAAE,KAAK,CAAC,CAAC;QAClF,QAAQ,CAAC,IAAI,CAAC,gBAAgB,CAAC,sBAAsB,EAAE,IAAI,CAAC,qBAAqB,EAAE,KAAK,CAAC,CAAC;KAC7F;;IAED,KAAK,MAAM,GAAG,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC;IAC/C,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACtE,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;IAEpD,IAAI,kBAAkB,GAAG,EAAE,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;IAO5D,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,QAAQ,CAAC,IAAI,CAAC,EAAE,IAAI,IAAI,CAAC,EAAE,CAAC,aAAa,EAAE,EAAE;KAChD,CAAC;;;;;;IAMF,aAAa,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,EAAE;IAClE;QACI,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,QAAQ,CAAC,EAAE,GAAG,EAAE,CAAC;QACtB,IAAI,CAAC,QAAQ,CAAC,WAAW,GAAG,WAAW,EAAE,CAAC;;;QAG1C,IAAI,EAAE,CAAC,aAAa,EAAE,IAAI,EAAE,CAAC,YAAY,CAAC,oBAAoB,CAAC;QAC/D;YACI,EAAE,CAAC,YAAY,CAAC,oBAAoB,CAAC,CAAC,cAAc,EAAE,CAAC;SAC1D;KACJ,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,EAAE;IACtE;QACI,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC;QACzB,IAAI,CAAC,QAAQ,CAAC,EAAE,GAAG,EAAE,CAAC;QACtB,IAAI,CAAC,QAAQ,CAAC,WAAW,GAAG,WAAW,EAAE,CAAC;QAC1C,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,aAAa,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;KAC/C,CAAC;;;;;;;;;IASF,aAAa,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,OAAO;IAC3E;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;;QAEzD,IAAI,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC;KAC5B,CAAC;;;;;;;;;;IAUF,aAAa,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,MAAM,EAAE,OAAO;IAC/E;QACI,IAAI,EAAE,CAAC;;QAEP,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,CAAC,MAAM;QACrC;YACI,EAAE,GAAG,MAAM,CAAC,UAAU,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;SAC7C;;QAED,IAAI,EAAE;QACN;YACI,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;SACzB;;QAED;YACI,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;;YAEtB,EAAE,GAAG,MAAM,CAAC,UAAU,CAAC,OAAO,EAAE,OAAO,CAAC;eACrC,MAAM,CAAC,UAAU,CAAC,oBAAoB,EAAE,OAAO,CAAC,CAAC;;YAEpD,IAAI,CAAC,EAAE;YACP;;gBAEI,MAAM,IAAI,KAAK,CAAC,oEAAoE,CAAC,CAAC;aACzF;SACJ;;QAED,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;;QAEb,IAAI,CAAC,aAAa,EAAE,CAAC;;QAErB,OAAO,EAAE,CAAC;KACb,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IAC9D;;QAEI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,IAAI,IAAI,CAAC,YAAY,KAAK,CAAC;QAC3B;YACI,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE;gBAC3B,WAAW,EAAE,EAAE,CAAC,YAAY,CAAC,oBAAoB,CAAC;gBAClD,YAAY,EAAE,EAAE,CAAC,YAAY,CAAC,4BAA4B,CAAC;gBAC3D,WAAW,EAAE,EAAE,CAAC,YAAY,CAAC,oBAAoB,CAAC;gBAClD,iBAAiB,EAAE,EAAE,CAAC,YAAY,CAAC,yBAAyB,CAAC;uBACtD,EAAE,CAAC,YAAY,CAAC,6BAA6B,CAAC;uBAC9C,EAAE,CAAC,YAAY,CAAC,gCAAgC,CAAC;gBACxD,oBAAoB,EAAE,EAAE,CAAC,YAAY,CAAC,gCAAgC,CAAC;gBACvE,kBAAkB,EAAE,EAAE,CAAC,YAAY,CAAC,wBAAwB,CAAC;;gBAE7D,YAAY,EAAE,EAAE,CAAC,YAAY,CAAC,mBAAmB,CAAC;gBAClD,kBAAkB,EAAE,EAAE,CAAC,YAAY,CAAC,0BAA0B,CAAC;gBAC/D,gBAAgB,EAAE,EAAE,CAAC,YAAY,CAAC,wBAAwB,CAAC;gBAC3D,sBAAsB,EAAE,EAAE,CAAC,YAAY,CAAC,+BAA+B,CAAC;aAC3E,CAAC,CAAC;SACN;aACI,IAAI,IAAI,CAAC,YAAY,KAAK,CAAC;QAChC;YACI,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE;gBAC3B,oBAAoB,EAAE,EAAE,CAAC,YAAY,CAAC,gCAAgC,CAAC;;gBAEvE,gBAAgB,EAAE,EAAE,CAAC,YAAY,CAAC,wBAAwB,CAAC;gBAC3D,kBAAkB,EAAE,EAAE,CAAC,YAAY,CAAC,0BAA0B,CAAC;aAClE,CAAC,CAAC;SACN;KACJ,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,KAAK;IAC7E;QACI,KAAK,CAAC,cAAc,EAAE,CAAC;KAC1B,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,qBAAqB,GAAG,SAAS,qBAAqB;IAC9E;QACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;KACpD,CAAC;;IAEF,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAClD;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC;;;QAG9B,IAAI,CAAC,mBAAmB,CAAC,kBAAkB,EAAE,IAAI,CAAC,iBAAiB,CAAC,CAAC;QACrE,IAAI,CAAC,mBAAmB,CAAC,sBAAsB,EAAE,IAAI,CAAC,qBAAqB,CAAC,CAAC;;QAE7E,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEzB,IAAI,IAAI,CAAC,UAAU,CAAC,WAAW;QAC/B;YACI,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,WAAW,EAAE,CAAC;SAC7C;KACJ,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IACxD;QACI,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC;KACnB,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,EAAE;IACtE;QACI,IAAI,UAAU,GAAG,EAAE,CAAC,oBAAoB,EAAE,CAAC;;;QAG3C,IAAI,CAAC,UAAU,CAAC,OAAO;QACvB;;;;YAII,OAAO,CAAC,IAAI,CAAC,uFAAuF,CAAC,CAAC;;;;SAIzG;KACJ,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,aAAa,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAEvE,OAAO,aAAa,CAAC;CACxB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;AASX,IAAI,iBAAiB,iBAAiB,UAAU,MAAM,EAAE;IACpD,SAAS,iBAAiB,CAAC,QAAQ;IACnC;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;QAO5B,IAAI,CAAC,mBAAmB,GAAG,EAAE,CAAC;;;;;;;QAO9B,IAAI,CAAC,kBAAkB,GAAG,IAAI,WAAW,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;KACrD;;IAED,KAAK,MAAM,GAAG,iBAAiB,CAAC,SAAS,GAAG,MAAM,CAAC;IACnD,iBAAiB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IAC1E,iBAAiB,CAAC,SAAS,CAAC,WAAW,GAAG,iBAAiB,CAAC;;IAE5D,IAAI,kBAAkB,GAAG,EAAE,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;IAK1D,iBAAiB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IAClE;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;;QAEpC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;QAC7C,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,kBAAkB,CAAC;QACvC,IAAI,CAAC,QAAQ,GAAG,IAAI,SAAS,EAAE,CAAC;QAChC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;;QAE9B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;;QAGtB,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,YAAY,KAAK,CAAC;QAC5C;;YAEI,IAAI,0BAA0B,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,WAAW,CAAC;YAC9E,IAAI,2BAA2B,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC;;YAEhF,IAAI,QAAQ,CAAC,UAAU,KAAK,GAAG,CAAC,YAAY;YAC5C;gBACI,0BAA0B,GAAG,IAAI,CAAC;gBAClC,2BAA2B,GAAG,IAAI,CAAC;aACtC;;YAED,IAAI,0BAA0B;YAC9B;gBACI,EAAE,CAAC,WAAW,GAAG,UAAU,cAAc,EAAE,EAAE,OAAO,0BAA0B,CAAC,gBAAgB,CAAC,cAAc,CAAC,CAAC,EAAE,CAAC;aACtH;;YAED;gBACI,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;gBACpB,EAAE,CAAC,WAAW,GAAG,YAAY;;iBAE5B,CAAC;aACL;;YAED,IAAI,CAAC,2BAA2B;YAChC;gBACI,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;aAClC;SACJ;KACJ,CAAC;;;;;;;;IAQF,iBAAiB,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,WAAW,EAAE,KAAK;IACpE;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,IAAI,WAAW;QACf;;;YAGI,IAAI,GAAG,GAAG,WAAW,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,eAAe,CAAC,WAAW,CAAC,CAAC;;YAE5F,IAAI,IAAI,CAAC,OAAO,KAAK,WAAW;YAChC;gBACI,IAAI,CAAC,OAAO,GAAG,WAAW,CAAC;gBAC3B,EAAE,CAAC,eAAe,CAAC,EAAE,CAAC,WAAW,EAAE,GAAG,CAAC,WAAW,CAAC,CAAC;aACvD;;;;YAID,IAAI,GAAG,CAAC,OAAO,KAAK,WAAW,CAAC,OAAO;YACvC;gBACI,GAAG,CAAC,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC;;gBAElC,IAAI,GAAG,CAAC,WAAW,KAAK,WAAW,CAAC,WAAW;gBAC/C;oBACI,GAAG,CAAC,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;oBAC1C,IAAI,CAAC,iBAAiB,CAAC,WAAW,CAAC,CAAC;iBACvC;qBACI,IAAI,GAAG,CAAC,SAAS,KAAK,WAAW,CAAC,SAAS;gBAChD;oBACI,GAAG,CAAC,SAAS,GAAG,WAAW,CAAC,SAAS,CAAC;oBACtC,IAAI,CAAC,iBAAiB,CAAC,WAAW,CAAC,CAAC;iBACvC;aACJ;;YAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE;YACzD;gBACI,IAAI,WAAW,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,WAAW;gBAC5C;oBACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;iBACtE;;gBAED;oBACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC;iBAC9D;aACJ;;YAED,IAAI,WAAW,CAAC,YAAY;YAC5B;gBACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC;aAC1D;;YAED,IAAI,KAAK;YACT;gBACI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;aACjE;;YAED;gBACI,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,CAAC,EAAE,WAAW,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;aACjE;SACJ;;QAED;YACI,IAAI,IAAI,CAAC,OAAO;YAChB;gBACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;gBACpB,EAAE,CAAC,eAAe,CAAC,EAAE,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;aAC5C;;YAED,IAAI,KAAK;YACT;gBACI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;aACjE;;YAED;gBACI,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;aACrE;SACJ;KACJ,CAAC;;;;;;;;;;IAUF,iBAAiB,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM;IACnF;QACI,IAAI,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC;;QAEtB,IAAI,CAAC,CAAC,KAAK,KAAK,KAAK,IAAI,CAAC,CAAC,MAAM,KAAK,MAAM,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC;QACtE;YACI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;YACR,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;YACR,CAAC,CAAC,KAAK,GAAG,KAAK,CAAC;YAChB,CAAC,CAAC,MAAM,GAAG,MAAM,CAAC;;YAElB,IAAI,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;SACzC;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,IAAI,IAAI,CAAC,OAAO;QAChB;;YAEI,OAAO,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC;SACjF;;QAED,OAAO,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC;KACnF,CAAC;;;;;;;;;;IAUF,iBAAiB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;IAC9D;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;;QAGhB,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QAC1B,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,gBAAgB,GAAG,EAAE,CAAC,gBAAgB,CAAC,CAAC;KACvD,CAAC;;;;;;;;IAQF,iBAAiB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,WAAW;IACnF;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;;QAGhB,IAAI,GAAG,GAAG;YACN,WAAW,EAAE,EAAE,CAAC,iBAAiB,EAAE;YACnC,OAAO,EAAE,IAAI;YACb,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,CAAC;YACd,SAAS,EAAE,CAAC;SACf,CAAC;;QAEF,WAAW,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,GAAG,CAAC;;QAEnD,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAC3C,WAAW,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;;QAEpC,OAAO,GAAG,CAAC;KACd,CAAC;;;;;;;;IAQF,iBAAiB,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,WAAW;IACvF;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,IAAI,GAAG,GAAG,WAAW,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;QAEvD,IAAI,GAAG,CAAC,OAAO;QACf;YACI,EAAE,CAAC,gBAAgB,CAAC,EAAE,CAAC,YAAY,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;YAClD,EAAE,CAAC,mBAAmB,CAAC,EAAE,CAAC,YAAY,EAAE,EAAE,CAAC,aAAa,EAAE,WAAW,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;SACpG;;QAED,IAAI,aAAa,GAAG,WAAW,CAAC,aAAa,CAAC;;QAE9C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE;QAC7C;YACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SACnD;;QAED,IAAI,WAAW,CAAC,YAAY;QAC5B;YACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,YAAY,EAAE,CAAC,CAAC,CAAC;SAC3D;KACJ,CAAC;;;;;;;;IAQF,iBAAiB,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,WAAW;IACvF;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,IAAI,GAAG,GAAG,WAAW,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;;QAGvD,IAAI,aAAa,GAAG,WAAW,CAAC,aAAa,CAAC;;QAE9C,IAAI,KAAK,GAAG,aAAa,CAAC,MAAM,CAAC;;QAEjC,IAAI,CAAC,EAAE,CAAC,WAAW;QACnB;YACI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;SAC9B;;QAED,IAAI,cAAc,GAAG,EAAE,CAAC;;QAExB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE;QAC9B;YACI,IAAI,OAAO,GAAG,WAAW,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;;YAE3C,IAAI,OAAO,CAAC,WAAW;YACvB;gBACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;;gBAE/C,EAAE,CAAC,oBAAoB,CAAC,EAAE,CAAC,WAAW;oBAClC,EAAE,CAAC,iBAAiB,GAAG,CAAC;oBACxB,EAAE,CAAC,2BAA2B,GAAG,OAAO,CAAC,IAAI;oBAC7C,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,OAAO;oBACrD,CAAC,CAAC,CAAC;aACV;;YAED;gBACI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;;gBAEvC,EAAE,CAAC,oBAAoB,CAAC,EAAE,CAAC,WAAW;oBAClC,EAAE,CAAC,iBAAiB,GAAG,CAAC;oBACxB,EAAE,CAAC,UAAU;oBACb,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,OAAO;oBAC7C,CAAC,CAAC,CAAC;aACV;;YAED,cAAc,CAAC,IAAI,CAAC,EAAE,CAAC,iBAAiB,GAAG,CAAC,CAAC,CAAC;SACjD;;QAED,IAAI,cAAc,CAAC,MAAM,GAAG,CAAC;QAC7B;YACI,EAAE,CAAC,WAAW,CAAC,cAAc,CAAC,CAAC;SAClC;;QAED,IAAI,WAAW,CAAC,YAAY;QAC5B;YACI,IAAI,iBAAiB,GAAG,IAAI,CAAC,iBAAiB,CAAC;;YAE/C,IAAI,iBAAiB;YACrB;gBACI,IAAI,YAAY,GAAG,WAAW,CAAC,YAAY,CAAC;;gBAE5C,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC,CAAC,CAAC;;gBAE5C,EAAE,CAAC,oBAAoB,CAAC,EAAE,CAAC,WAAW;oBAClC,EAAE,CAAC,gBAAgB;oBACnB,EAAE,CAAC,UAAU;oBACb,YAAY,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,OAAO;oBAClD,CAAC,CAAC,CAAC;aACV;SACJ;;QAED,IAAI,CAAC,GAAG,CAAC,OAAO,KAAK,WAAW,CAAC,OAAO,IAAI,WAAW,CAAC,KAAK,CAAC;QAC9D;YACI,GAAG,CAAC,OAAO,GAAG,EAAE,CAAC,kBAAkB,EAAE,CAAC;;YAEtC,EAAE,CAAC,gBAAgB,CAAC,EAAE,CAAC,YAAY,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;;YAElD,EAAE,CAAC,mBAAmB,CAAC,EAAE,CAAC,YAAY,EAAE,EAAE,CAAC,aAAa,EAAE,WAAW,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;;YAEjG,IAAI,CAAC,WAAW,CAAC,YAAY;YAC7B;gBACI,EAAE,CAAC,uBAAuB,CAAC,EAAE,CAAC,WAAW,EAAE,EAAE,CAAC,wBAAwB,EAAE,EAAE,CAAC,YAAY,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;aACzG;SACJ;KACJ,CAAC;;;;;;;IAOF,iBAAiB,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,WAAW,EAAE,WAAW;IACtG;QACI,IAAI,GAAG,GAAG,WAAW,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QACvD,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;;QAEjB,IAAI,CAAC,GAAG;QACR;YACI,OAAO;SACV;;QAED,OAAO,WAAW,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;QAEpD,IAAI,KAAK,GAAG,IAAI,CAAC,mBAAmB,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;;QAE1D,IAAI,KAAK,IAAI,CAAC;QACd;YACI,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;SAC7C;;QAED,WAAW,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;QAEvC,IAAI,CAAC,WAAW;QAChB;YACI,EAAE,CAAC,iBAAiB,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;YACtC,IAAI,GAAG,CAAC,OAAO;YACf;gBACI,EAAE,CAAC,kBAAkB,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;aACtC;SACJ;KACJ,CAAC;;;;;;IAMF,iBAAiB,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,WAAW;IACzE;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,mBAAmB,CAAC;;QAEpC,IAAI,CAAC,mBAAmB,GAAG,EAAE,CAAC;;QAE9B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE;QACpC;YACI,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC;SACjD;KACJ,CAAC;;;;;;;;;;IAUF,iBAAiB,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY;IAChE;QACI,IAAI,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC;;QAE/B,IAAI,CAAC,WAAW;QAChB;YACI,OAAO;SACV;;QAED,IAAI,GAAG,GAAG,WAAW,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;QAEvD,IAAI,CAAC,GAAG,IAAI,GAAG,CAAC,OAAO;QACvB;YACI,OAAO;SACV;QACD,WAAW,CAAC,aAAa,EAAE,CAAC;;QAE5B,IAAI,CAAC,GAAG,WAAW,CAAC,KAAK,CAAC;QAC1B,IAAI,CAAC,GAAG,WAAW,CAAC,MAAM,CAAC;QAC3B,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;QACjB,IAAI,OAAO,GAAG,EAAE,CAAC,kBAAkB,EAAE,CAAC;;QAEtC,EAAE,CAAC,gBAAgB,CAAC,EAAE,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC;QAC9C,EAAE,CAAC,mBAAmB,CAAC,EAAE,CAAC,YAAY,EAAE,EAAE,CAAC,aAAa,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;QAEhE,GAAG,CAAC,OAAO,GAAG,OAAO,CAAC;QACtB,EAAE,CAAC,uBAAuB,CAAC,EAAE,CAAC,WAAW,EAAE,EAAE,CAAC,wBAAwB,EAAE,EAAE,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC;KACrG,CAAC;;;;;;;IAOF,iBAAiB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAClD;QACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,kBAAkB,CAAC;QACvC,IAAI,CAAC,QAAQ,GAAG,IAAI,SAAS,EAAE,CAAC;KACnC,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,iBAAiB,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAE3E,OAAO,iBAAiB,CAAC;CAC5B,CAAC,MAAM,CAAC,CAAC,CAAC;;AAEX,IAAI,QAAQ,GAAG,SAAS,QAAQ,CAAC,MAAM;AACvC;IACI,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACrB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC,CAAC;IACnB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;IACrB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;CACrB,CAAC;;AAEF,IAAI,aAAa,GAAG,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC;;;;;;;;;AASlD,IAAI,cAAc,iBAAiB,UAAU,MAAM,EAAE;IACjD,SAAS,cAAc,CAAC,QAAQ;IAChC;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;QAE5B,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;QAC5B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;;;;;;QAOvB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;QAOnB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;QAOxB,IAAI,CAAC,wBAAwB,GAAG,KAAK,CAAC;;;;;;;;QAQtC,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;;;;;;;QAOvB,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;;;;;;;QAO5B,IAAI,CAAC,cAAc,GAAG,EAAE,CAAC;KAC5B;;IAED,KAAK,MAAM,GAAG,cAAc,CAAC,SAAS,GAAG,MAAM,CAAC;IAChD,cAAc,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACvE,cAAc,CAAC,SAAS,CAAC,WAAW,GAAG,cAAc,CAAC;;;;;IAKtD,cAAc,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IAC/D;QACI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;QACpC,IAAI,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC;;QAEpC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;;;QAG7C,IAAI,CAAC,EAAE,CAAC,iBAAiB;QACzB;;YAEI,IAAI,kBAAkB,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,iBAAiB,CAAC;;YAE5E,IAAI,QAAQ,CAAC,UAAU,KAAK,GAAG,CAAC,YAAY;YAC5C;gBACI,kBAAkB,GAAG,IAAI,CAAC;aAC7B;;YAED,IAAI,kBAAkB;YACtB;gBACI,EAAE,CAAC,iBAAiB,GAAG,YAAY,EAAE,OAAO,kBAAkB,CAAC,oBAAoB,EAAE,CAAC,EAAE,CAAC;;gBAEzF,EAAE,CAAC,eAAe,GAAG,UAAU,GAAG,EAAE,EAAE,OAAO,kBAAkB,CAAC,kBAAkB,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;;gBAE3F,EAAE,CAAC,iBAAiB,GAAG,UAAU,GAAG,EAAE,EAAE,OAAO,kBAAkB,CAAC,oBAAoB,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;aAClG;;YAED;gBACI,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;gBACpB,EAAE,CAAC,iBAAiB,GAAG,YAAY;;iBAElC,CAAC;;gBAEF,EAAE,CAAC,eAAe,GAAG,YAAY;;iBAEhC,CAAC;;gBAEF,EAAE,CAAC,iBAAiB,GAAG,YAAY;;iBAElC,CAAC;aACL;SACJ;;QAED,IAAI,CAAC,EAAE,CAAC,mBAAmB;QAC3B;YACI,IAAI,WAAW,GAAG,EAAE,CAAC,YAAY,CAAC,wBAAwB,CAAC,CAAC;;YAE5D,IAAI,WAAW;YACf;gBACI,EAAE,CAAC,mBAAmB,GAAG,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,WAAW,CAAC,wBAAwB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;;gBAEhG,EAAE,CAAC,qBAAqB,GAAG,UAAU,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,WAAW,CAAC,0BAA0B,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;;gBAEtH,EAAE,CAAC,mBAAmB,GAAG,UAAU,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,WAAW,CAAC,wBAAwB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;aAC/G;;YAED;gBACI,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;aAC5B;SACJ;;QAED,IAAI,CAAC,wBAAwB,GAAG,OAAO,CAAC,YAAY,KAAK,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,kBAAkB,CAAC;KACzG,CAAC;;;;;;;;IAQF,cAAc,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,QAAQ,EAAE,MAAM;IAC/D;QACI,MAAM,GAAG,MAAM,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC;;QAE/C,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;;;;;QAMhB,IAAI,IAAI,GAAG,QAAQ,CAAC,oBAAoB,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;QAE3D,IAAI,CAAC,IAAI;QACT;YACI,IAAI,CAAC,iBAAiB,CAAC,QAAQ,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC;YAC/C,QAAQ,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;YACjC,QAAQ,CAAC,oBAAoB,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,IAAI,GAAG,EAAE,CAAC;SAC/D;;QAED,IAAI,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,eAAe,CAAC,QAAQ,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC;;QAEpF,IAAI,CAAC,eAAe,GAAG,QAAQ,CAAC;;QAEhC,IAAI,IAAI,CAAC,UAAU,KAAK,GAAG;QAC3B;YACI,IAAI,CAAC,UAAU,GAAG,GAAG,CAAC;;YAEtB,IAAI,IAAI,CAAC,MAAM;YACf;gBACI,EAAE,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC;aAC3B;;YAED;gBACI,IAAI,CAAC,WAAW,CAAC,QAAQ,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC;aAC9C;SACJ;;;;;QAKD,IAAI,CAAC,aAAa,EAAE,CAAC;KACxB,CAAC;;;;;IAKF,cAAc,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC/C;QACI,IAAI,CAAC,MAAM,EAAE,CAAC;KACjB,CAAC;;;;;;IAMF,cAAc,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IAC/D;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,eAAe,CAAC;QACpC,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;QAChD;YACI,IAAI,MAAM,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;;YAEjC,IAAI,QAAQ,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;YAEnD,IAAI,MAAM,CAAC,SAAS,KAAK,QAAQ,CAAC,QAAQ;YAC1C;gBACI,QAAQ,CAAC,QAAQ,GAAG,MAAM,CAAC,SAAS,CAAC;;;gBAGrC,IAAI,IAAI,GAAG,MAAM,CAAC,KAAK,GAAG,EAAE,CAAC,oBAAoB,GAAG,EAAE,CAAC,YAAY,CAAC;;;;;;;gBAOpE,EAAE,CAAC,UAAU,CAAC,IAAI,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;;;gBAGrC,IAAI,CAAC,YAAY,GAAG,QAAQ,CAAC;;gBAE7B,IAAI,QAAQ,CAAC,UAAU,IAAI,MAAM,CAAC,IAAI,CAAC,UAAU;gBACjD;;oBAEI,EAAE,CAAC,aAAa,CAAC,IAAI,EAAE,CAAC,EAAE,MAAM,CAAC,IAAI,CAAC,CAAC;iBAC1C;;gBAED;oBACI,IAAI,QAAQ,GAAG,MAAM,CAAC,MAAM,GAAG,EAAE,CAAC,WAAW,GAAG,EAAE,CAAC,YAAY,CAAC;;oBAEhE,QAAQ,CAAC,UAAU,GAAG,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC;oBAC7C,EAAE,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;iBAC9C;aACJ;SACJ;KACJ,CAAC;;;;;;;;IAQF,cAAc,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,QAAQ,EAAE,OAAO;IAC5F;;QAEI,IAAI,kBAAkB,GAAG,QAAQ,CAAC,UAAU,CAAC;QAC7C,IAAI,gBAAgB,GAAG,OAAO,CAAC,aAAa,CAAC;;QAE7C,KAAK,IAAI,CAAC,IAAI,gBAAgB;QAC9B;YACI,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC;YAC1B;gBACI,MAAM,IAAI,KAAK,EAAE,2DAA2D,GAAG,CAAC,GAAG,cAAc,EAAE,CAAC;aACvG;SACJ;KACJ,CAAC;;;;;;;;;;IAUF,cAAc,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,QAAQ,EAAE,OAAO;IAChF;QACI,IAAI,OAAO,GAAG,QAAQ,CAAC,UAAU,CAAC;QAClC,IAAI,gBAAgB,GAAG,OAAO,CAAC,aAAa,CAAC;;QAE7C,IAAI,OAAO,GAAG,CAAC,GAAG,EAAE,QAAQ,CAAC,EAAE,CAAC,CAAC;;QAEjC,KAAK,IAAI,CAAC,IAAI,OAAO;QACrB;YACI,IAAI,gBAAgB,CAAC,CAAC,CAAC;YACvB;gBACI,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;aACnB;SACJ;;QAED,OAAO,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KAC5B,CAAC;;;;;;;;;;IAUF,cAAc,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,QAAQ,EAAE,OAAO;IACtF;QACI,IAAI,CAAC,kBAAkB,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;;QAE3C,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;QACjB,IAAI,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;;QAEnC,IAAI,SAAS,GAAG,IAAI,CAAC,YAAY,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;;QAErD,IAAI,aAAa,GAAG,QAAQ,CAAC,oBAAoB,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;QAEpE,IAAI,GAAG,GAAG,aAAa,CAAC,SAAS,CAAC,CAAC;;QAEnC,IAAI,GAAG;QACP;;YAEI,aAAa,CAAC,OAAO,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC;;YAEhC,OAAO,GAAG,CAAC;SACd;;QAED,IAAI,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC;QAC/B,IAAI,UAAU,GAAG,QAAQ,CAAC,UAAU,CAAC;QACrC,IAAI,UAAU,GAAG,EAAE,CAAC;QACpB,IAAI,SAAS,GAAG,EAAE,CAAC;;QAEnB,KAAK,IAAI,CAAC,IAAI,OAAO;QACrB;YACI,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;YAClB,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;SACpB;;QAED,KAAK,IAAI,GAAG,IAAI,UAAU;QAC1B;YACI,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,IAAI,IAAI,OAAO,CAAC,aAAa,CAAC,GAAG,CAAC;YACvD;gBACI,UAAU,CAAC,GAAG,CAAC,CAAC,IAAI,GAAG,OAAO,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;aAC1D;iBACI,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,IAAI;YAC9B;gBACI,OAAO,CAAC,IAAI,EAAE,2BAA2B,GAAG,GAAG,GAAG,mFAAmF,EAAE,CAAC;aAC3I;;YAED,UAAU,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,IAAI,GAAG,aAAa,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC;SACpG;;QAED,KAAK,IAAI,GAAG,IAAI,UAAU;QAC1B;YACI,IAAI,SAAS,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;YAChC,IAAI,UAAU,GAAG,SAAS,CAAC,IAAI,CAAC;;YAEhC,IAAI,SAAS,CAAC,MAAM,KAAK,SAAS;YAClC;gBACI,IAAI,UAAU,CAAC,SAAS,CAAC,MAAM,CAAC,KAAK,UAAU,GAAG,aAAa,CAAC,SAAS,CAAC,IAAI,CAAC;gBAC/E;oBACI,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;iBACxB;;gBAED;oBACI,SAAS,CAAC,MAAM,GAAG,UAAU,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;iBACnD;aACJ;;YAED,IAAI,SAAS,CAAC,KAAK,KAAK,SAAS;YACjC;gBACI,SAAS,CAAC,KAAK,GAAG,SAAS,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;;gBAE9C,SAAS,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,UAAU,GAAG,aAAa,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;aAC7E;SACJ;;QAED,GAAG,GAAG,EAAE,CAAC,iBAAiB,EAAE,CAAC;;QAE7B,EAAE,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC;;;;QAIxB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;QACvC;YACI,IAAI,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;;YAExB,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC;YACnC;gBACI,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC,GAAG,IAAI,QAAQ,CAAC,EAAE,CAAC,YAAY,EAAE,CAAC,CAAC;gBACjE,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC;gBACxC,MAAM,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;aAClC;;YAED,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,QAAQ,EAAE,CAAC;SAC7C;;;;;QAKD,IAAI,CAAC,WAAW,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;;QAEpC,IAAI,CAAC,UAAU,GAAG,GAAG,CAAC;;;QAGtB,aAAa,CAAC,OAAO,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC;QAChC,aAAa,CAAC,SAAS,CAAC,GAAG,GAAG,CAAC;;QAE/B,OAAO,GAAG,CAAC;KACd,CAAC;;;;;;;IAOF,cAAc,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,MAAM,EAAE,WAAW;IACpF;QACI,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,EAAE,CAAC;QACnC;YACI,OAAO;SACV;;QAED,OAAO,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;;QAEtC,IAAI,QAAQ,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QACnD,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;;QAEjB,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;QAElC,IAAI,CAAC,QAAQ;QACb;YACI,OAAO;SACV;;QAED,IAAI,CAAC,WAAW;QAChB;YACI,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;SACpC;;QAED,OAAO,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;KAC9C,CAAC;;;;;;;IAOF,cAAc,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,QAAQ,EAAE,WAAW;IAC1F;QACI,IAAI,CAAC,IAAI,CAAC,iBAAiB,CAAC,QAAQ,CAAC,EAAE,CAAC;QACxC;YACI,OAAO;SACV;;QAED,OAAO,IAAI,CAAC,iBAAiB,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;;QAE3C,IAAI,IAAI,GAAG,QAAQ,CAAC,oBAAoB,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAC3D,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;QACjB,IAAI,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC;;QAE/B,QAAQ,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;QAEpC,IAAI,CAAC,IAAI;QACT;YACI,OAAO;SACV;;QAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;QACvC;YACI,IAAI,GAAG,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;YAElD,GAAG,CAAC,QAAQ,EAAE,CAAC;YACf,IAAI,GAAG,CAAC,QAAQ,KAAK,CAAC,IAAI,CAAC,WAAW;YACtC;gBACI,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC;aAC/C;SACJ;;QAED,IAAI,CAAC,WAAW;QAChB;YACI,KAAK,IAAI,KAAK,IAAI,IAAI;YACtB;;gBAEI,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,GAAG;gBACpB;oBACI,IAAI,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;;oBAEtB,IAAI,IAAI,CAAC,UAAU,KAAK,GAAG;oBAC3B;wBACI,IAAI,CAAC,MAAM,EAAE,CAAC;qBACjB;oBACD,EAAE,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC;iBAC7B;aACJ;SACJ;;QAED,OAAO,QAAQ,CAAC,oBAAoB,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;KAC1D,CAAC;;;;;;IAMF,cAAc,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,WAAW;IACtE;QACI,IAAI,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;;QAE9C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,EAAE;QACnC;YACI,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC;SACrE;QACD,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;QACvC,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,GAAG,CAAC,MAAM,EAAE,GAAG,EAAE;QACzC;YACI,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC;SAClE;KACJ,CAAC;;;;;;;;;IASF,cAAc,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,QAAQ,EAAE,OAAO;IAC9E;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;QACjB,IAAI,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;QACnC,IAAI,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC;QAC/B,IAAI,UAAU,GAAG,QAAQ,CAAC,UAAU,CAAC;;QAErC,IAAI,QAAQ,CAAC,WAAW;QACxB;;YAEI,EAAE,CAAC,UAAU,CAAC,EAAE,CAAC,oBAAoB,EAAE,QAAQ,CAAC,WAAW,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,MAAM,CAAC,CAAC;SAC/F;;QAED,IAAI,UAAU,GAAG,IAAI,CAAC;;;QAGtB,KAAK,IAAI,CAAC,IAAI,UAAU;QACxB;YACI,IAAI,SAAS,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;YAC9B,IAAI,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;YACvC,IAAI,QAAQ,GAAG,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC;;YAE9C,IAAI,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;YAC5B;gBACI,IAAI,UAAU,KAAK,QAAQ;gBAC3B;oBACI,EAAE,CAAC,UAAU,CAAC,EAAE,CAAC,YAAY,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;;oBAEhD,UAAU,GAAG,QAAQ,CAAC;iBACzB;;gBAED,IAAI,QAAQ,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC;;;;gBAIjD,EAAE,CAAC,uBAAuB,CAAC,QAAQ,CAAC,CAAC;;gBAErC,EAAE,CAAC,mBAAmB,CAAC,QAAQ;oBAC3B,SAAS,CAAC,IAAI;oBACd,SAAS,CAAC,IAAI,IAAI,EAAE,CAAC,KAAK;oBAC1B,SAAS,CAAC,UAAU;oBACpB,SAAS,CAAC,MAAM;oBAChB,SAAS,CAAC,KAAK,CAAC,CAAC;;gBAErB,IAAI,SAAS,CAAC,QAAQ;gBACtB;;oBAEI,IAAI,IAAI,CAAC,WAAW;oBACpB;wBACI,EAAE,CAAC,mBAAmB,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC;qBACvC;;oBAED;wBACI,MAAM,IAAI,KAAK,CAAC,gEAAgE,CAAC,CAAC;qBACrF;iBACJ;aACJ;SACJ;KACJ,CAAC;;;;;;;;;;IAUF,cAAc,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,aAAa;IAC/E;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;QAChB,IAAI,QAAQ,GAAG,IAAI,CAAC,eAAe,CAAC;;;;QAIpC,IAAI,QAAQ,CAAC,WAAW;QACxB;YACI,IAAI,QAAQ,GAAG,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,iBAAiB,CAAC;YAC3D,IAAI,MAAM,GAAG,QAAQ,KAAK,CAAC,GAAG,EAAE,CAAC,cAAc,GAAG,EAAE,CAAC,YAAY,CAAC;;YAElE,IAAI,QAAQ,KAAK,CAAC,KAAK,QAAQ,KAAK,CAAC,IAAI,IAAI,CAAC,wBAAwB,CAAC;YACvE;gBACI,IAAI,QAAQ,CAAC,SAAS;gBACtB;;oBAEI,EAAE,CAAC,qBAAqB,CAAC,IAAI,EAAE,IAAI,IAAI,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,KAAK,IAAI,CAAC,IAAI,QAAQ,EAAE,aAAa,IAAI,CAAC,CAAC,CAAC;;iBAEjI;;gBAED;;oBAEI,EAAE,CAAC,YAAY,CAAC,IAAI,EAAE,IAAI,IAAI,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,KAAK,IAAI,CAAC,IAAI,QAAQ,CAAC,CAAC;;iBAEpG;aACJ;;YAED;gBACI,OAAO,CAAC,IAAI,CAAC,uCAAuC,CAAC,CAAC;aACzD;SACJ;aACI,IAAI,QAAQ,CAAC,SAAS;QAC3B;;YAEI,EAAE,CAAC,mBAAmB,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,IAAI,QAAQ,CAAC,OAAO,EAAE,EAAE,aAAa,IAAI,CAAC,CAAC,CAAC;SACvF;;QAED;YACI,EAAE,CAAC,UAAU,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,IAAI,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC;SAC1D;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,cAAc,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;IACjD;QACI,IAAI,CAAC,EAAE,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;QAC9B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;QACvB,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;KAC/B,CAAC;;IAEF,OAAO,cAAc,CAAC;CACzB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;;;;AAYX,SAAS,cAAc,CAAC,EAAE,EAAE,SAAS,EAAE,WAAW,EAAE,kBAAkB;AACtE;IACI,IAAI,YAAY,GAAG,aAAa,CAAC,EAAE,EAAE,EAAE,CAAC,aAAa,EAAE,SAAS,CAAC,CAAC;IAClE,IAAI,YAAY,GAAG,aAAa,CAAC,EAAE,EAAE,EAAE,CAAC,eAAe,EAAE,WAAW,CAAC,CAAC;;IAEtE,IAAI,OAAO,GAAG,EAAE,CAAC,aAAa,EAAE,CAAC;;IAEjC,EAAE,CAAC,YAAY,CAAC,OAAO,EAAE,YAAY,CAAC,CAAC;IACvC,EAAE,CAAC,YAAY,CAAC,OAAO,EAAE,YAAY,CAAC,CAAC;;;IAGvC,IAAI,kBAAkB;IACtB;QACI,KAAK,IAAI,CAAC,IAAI,kBAAkB;QAChC;YACI,EAAE,CAAC,kBAAkB,CAAC,OAAO,EAAE,kBAAkB,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SAC5D;KACJ;;IAED,EAAE,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;;;IAGxB,IAAI,CAAC,EAAE,CAAC,mBAAmB,CAAC,OAAO,EAAE,EAAE,CAAC,WAAW,CAAC;IACpD;QACI,OAAO,CAAC,KAAK,CAAC,6CAA6C,CAAC,CAAC;QAC7D,OAAO,CAAC,KAAK,CAAC,oBAAoB,EAAE,EAAE,CAAC,mBAAmB,CAAC,OAAO,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,CAAC;QACzF,OAAO,CAAC,KAAK,CAAC,eAAe,EAAE,EAAE,CAAC,QAAQ,EAAE,CAAC,CAAC;;;QAG9C,IAAI,EAAE,CAAC,iBAAiB,CAAC,OAAO,CAAC,KAAK,EAAE;QACxC;YACI,OAAO,CAAC,IAAI,CAAC,yCAAyC,EAAE,EAAE,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC,CAAC;SAC1F;;QAED,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;QAC1B,OAAO,GAAG,IAAI,CAAC;KAClB;;;IAGD,EAAE,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC;IAC9B,EAAE,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC;;IAE9B,OAAO,OAAO,CAAC;CAClB;;;;;;;;;AASD,SAAS,aAAa,CAAC,EAAE,EAAE,IAAI,EAAE,GAAG;AACpC;IACI,IAAI,MAAM,GAAG,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;;IAEnC,EAAE,CAAC,YAAY,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC7B,EAAE,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;;IAEzB,IAAI,CAAC,EAAE,CAAC,kBAAkB,CAAC,MAAM,EAAE,EAAE,CAAC,cAAc,CAAC;IACrD;QACI,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QAClB,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAC,CAAC;;QAE3C,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,MAAM,CAAC;CACjB;;;;;;;;;AASD,SAAS,YAAY,CAAC,IAAI,EAAE,IAAI;AAChC;IACI,QAAQ,IAAI;;QAER,KAAK,OAAO;YACR,OAAO,CAAC,CAAC;;QAEb,KAAK,MAAM;YACP,OAAO,IAAI,YAAY,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAEtC,KAAK,MAAM;YACP,OAAO,IAAI,YAAY,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAEtC,KAAK,MAAM;YACP,OAAO,IAAI,YAAY,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAEtC,KAAK,KAAK,CAAC;QACX,KAAK,WAAW,CAAC;QACjB,KAAK,gBAAgB;YACjB,OAAO,CAAC,CAAC;;QAEb,KAAK,OAAO;YACR,OAAO,IAAI,UAAU,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAEpC,KAAK,OAAO;YACR,OAAO,IAAI,UAAU,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAEpC,KAAK,OAAO;YACR,OAAO,IAAI,UAAU,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAEpC,KAAK,MAAM;YACP,OAAO,KAAK,CAAC;;QAEjB,KAAK,OAAO;;YAER,OAAO,YAAY,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAElC,KAAK,OAAO;YACR,OAAO,YAAY,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAElC,KAAK,OAAO;YACR,OAAO,YAAY,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;;QAElC,KAAK,MAAM;YACP,OAAO,IAAI,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC;gBACzB,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;;QAEf,KAAK,MAAM;YACP,OAAO,IAAI,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC;gBAC5B,CAAC,EAAE,CAAC,EAAE,CAAC;gBACP,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;;QAElB,KAAK,MAAM;YACP,OAAO,IAAI,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;gBAC/B,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;gBACV,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;gBACV,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;KACxB;;IAED,OAAO,IAAI,CAAC;CACf;;AAED,SAAS,YAAY,CAAC,IAAI;AAC1B;IACI,IAAI,KAAK,GAAG,IAAI,KAAK,CAAC,IAAI,CAAC,CAAC;;IAE5B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE;IACrC;QACI,KAAK,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;KACpB;;IAED,OAAO,KAAK,CAAC;CAChB;;AAED,IAAI,cAAc,GAAG,EAAE,CAAC;AACxB,IAAI,OAAO,GAAG,cAAc,CAAC;;;;;;;;;AAS7B,SAAS,cAAc;AACvB;IACI,IAAI,OAAO,KAAK,cAAc,IAAI,OAAO,CAAC,aAAa,EAAE;IACzD;QACI,IAAI,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;QAE9C,IAAI,EAAE,CAAC;;QAEP,IAAI,QAAQ,CAAC,UAAU,IAAI,GAAG,CAAC,MAAM;QACrC;YACI,EAAE,GAAG,MAAM,CAAC,UAAU,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;SACxC;;QAED,IAAI,CAAC,EAAE;QACP;YACI,EAAE,GAAG,MAAM,CAAC,UAAU,CAAC,OAAO,EAAE,EAAE,CAAC;eAChC,MAAM,CAAC,UAAU,CAAC,oBAAoB,EAAE,EAAE,CAAC,CAAC;;YAE/C,IAAI,CAAC,EAAE;YACP;;gBAEI,EAAE,GAAG,IAAI,CAAC;aACb;;YAED;;gBAEI,EAAE,CAAC,YAAY,CAAC,oBAAoB,CAAC,CAAC;aACzC;SACJ;;QAED,OAAO,GAAG,EAAE,CAAC;KAChB;;IAED,OAAO,OAAO,CAAC;CAClB;;AAED,IAAI,oBAAoB,CAAC;;AAEzB,SAAS,uBAAuB;AAChC;IACI,IAAI,CAAC,oBAAoB;IACzB;QACI,oBAAoB,GAAG,SAAS,CAAC,MAAM,CAAC;QACxC,IAAI,EAAE,GAAG,cAAc,EAAE,CAAC;;QAE1B,IAAI,EAAE;QACN;YACI,IAAI,EAAE,CAAC,wBAAwB;YAC/B;gBACI,IAAI,cAAc,GAAG,EAAE,CAAC,wBAAwB,CAAC,EAAE,CAAC,eAAe,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC;;gBAEpF,oBAAoB,GAAG,cAAc,CAAC,SAAS,GAAG,SAAS,CAAC,IAAI,GAAG,SAAS,CAAC,MAAM,CAAC;aACvF;SACJ;KACJ;;IAED,OAAO,oBAAoB,CAAC;CAC/B;;;;;;;;;;;;;AAaD,SAAS,YAAY,CAAC,GAAG,EAAE,kBAAkB,EAAE,qBAAqB;AACpE;IACI,IAAI,GAAG,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,WAAW;IACvC;;QAEI,IAAI,SAAS,GAAG,kBAAkB,CAAC;;;QAGnC,IAAI,kBAAkB,KAAK,SAAS,CAAC,IAAI,IAAI,qBAAqB,KAAK,SAAS,CAAC,IAAI;QACrF;YACI,SAAS,GAAG,SAAS,CAAC,MAAM,CAAC;SAChC;;QAED,QAAQ,YAAY,GAAG,SAAS,GAAG,WAAW,GAAG,GAAG,EAAE;KACzD;SACI,IAAI,qBAAqB,KAAK,SAAS,CAAC,IAAI,IAAI,GAAG,CAAC,SAAS,CAAC,CAAC,EAAE,EAAE,CAAC,KAAK,iBAAiB;IAC/F;;QAEI,OAAO,GAAG,CAAC,OAAO,CAAC,iBAAiB,EAAE,mBAAmB,CAAC,CAAC;KAC9D;;IAED,OAAO,GAAG,CAAC;CACd;;AAED,IAAI,YAAY,GAAG;IACf,KAAK,KAAK,CAAC;IACX,IAAI,MAAM,CAAC;IACX,IAAI,MAAM,CAAC;IACX,IAAI,MAAM,CAAC;;IAEX,GAAG,OAAO,CAAC;IACX,KAAK,KAAK,CAAC;IACX,KAAK,KAAK,CAAC;IACX,KAAK,KAAK,CAAC;;IAEX,IAAI,MAAM,CAAC;IACX,KAAK,KAAK,CAAC;IACX,KAAK,KAAK,CAAC;IACX,KAAK,KAAK,CAAC;;IAEX,IAAI,MAAM,CAAC;IACX,IAAI,MAAM,CAAC;IACX,IAAI,MAAM,EAAE;;IAEZ,SAAS,GAAG,CAAC;CAChB,CAAC;;;;;;;;;AASF,SAAS,OAAO,CAAC,IAAI;AACrB;IACI,OAAO,YAAY,CAAC,IAAI,CAAC,CAAC;CAC7B;;AAED,IAAI,QAAQ,GAAG,IAAI,CAAC;;AAEpB,IAAI,gBAAgB,GAAG;IACnB,KAAK,QAAQ,OAAO;IACpB,UAAU,GAAG,MAAM;IACnB,UAAU,GAAG,MAAM;IACnB,UAAU,GAAG,MAAM;;IAEnB,GAAG,UAAU,KAAK;IAClB,QAAQ,KAAK,OAAO;IACpB,QAAQ,KAAK,OAAO;IACpB,QAAQ,KAAK,OAAO;;IAEpB,IAAI,SAAS,MAAM;IACnB,SAAS,IAAI,OAAO;IACpB,SAAS,IAAI,OAAO;IACpB,SAAS,IAAI,OAAO;;IAEpB,UAAU,GAAG,MAAM;IACnB,UAAU,GAAG,MAAM;IACnB,UAAU,GAAG,MAAM;;IAEnB,UAAU,GAAG,WAAW;IACxB,YAAY,GAAG,aAAa;IAC5B,gBAAgB,GAAG,gBAAgB;CACtC,CAAC;;AAEF,SAAS,OAAO,CAAC,EAAE,EAAE,IAAI;AACzB;IACI,IAAI,CAAC,QAAQ;IACb;QACI,IAAI,SAAS,GAAG,MAAM,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;;QAE9C,QAAQ,GAAG,EAAE,CAAC;;QAEd,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,EAAE,CAAC;QACzC;YACI,IAAI,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;YAEtB,QAAQ,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,GAAG,gBAAgB,CAAC,EAAE,CAAC,CAAC;SAC3C;KACJ;;IAED,OAAO,QAAQ,CAAC,IAAI,CAAC,CAAC;CACzB;;;;;;;AAOD,IAAI,6BAA6B,GAAG;;IAEhC,KAAK,EAAE,wFAAwF;;IAE/F,IAAI,EAAE,oJAAoJ;;IAE1J,IAAI,EAAE,qMAAqM;;IAE3M,IAAI,MAAM,gDAAgD;;IAE1D,GAAG,OAAO,2BAA2B;IACrC,KAAK,KAAK,oCAAoC;IAC9C,KAAK,KAAK,0CAA0C;IACpD,KAAK,KAAK,gDAAgD;;IAE1D,IAAI,MAAM,2BAA2B;IACrC,KAAK,KAAK,oCAAoC;IAC9C,KAAK,KAAK,0CAA0C;IACpD,KAAK,KAAK,gDAAgD;;IAE1D,IAAI,MAAM,yCAAyC;IACnD,IAAI,MAAM,yCAAyC;IACnD,IAAI,MAAM,yCAAyC;;IAEnD,SAAS,OAAO,2BAA2B;IAC3C,WAAW,KAAK,2BAA2B;IAC3C,cAAc,EAAE,2BAA2B;CAC9C,CAAC;;AAEF,IAAI,qBAAqB,GAAG;;IAExB,KAAK,KAAK,4BAA4B;;IAEtC,IAAI,MAAM,4BAA4B;IACtC,IAAI,MAAM,4BAA4B;IACtC,IAAI,MAAM,4BAA4B;;IAEtC,IAAI,MAAM,yCAAyC;IACnD,IAAI,MAAM,yCAAyC;IACnD,IAAI,MAAM,yCAAyC;;IAEnD,GAAG,OAAO,4BAA4B;IACtC,KAAK,KAAK,4BAA4B;IACtC,KAAK,KAAK,4BAA4B;IACtC,KAAK,KAAK,4BAA4B;;IAEtC,IAAI,MAAM,4BAA4B;IACtC,KAAK,KAAK,4BAA4B;IACtC,KAAK,KAAK,4BAA4B;IACtC,KAAK,KAAK,4BAA4B;;IAEtC,SAAS,OAAO,4BAA4B;IAC5C,WAAW,KAAK,4BAA4B;IAC5C,cAAc,EAAE,4BAA4B;CAC/C,CAAC;;AAEF,SAAS,oBAAoB,CAAC,KAAK,EAAE,WAAW;AAChD;IACI,IAAI,YAAY,GAAG,CAAC,CAAC;IACrB,IAAI,IAAI,GAAG,4DAA4D,CAAC;;IAExE,KAAK,IAAI,CAAC,IAAI,KAAK,CAAC,QAAQ;IAC5B;QACI,IAAI,IAAI,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;;QAE1B,IAAI,CAAC,IAAI;QACT;YACI,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,KAAK;YAC3B;gBACI,IAAI,IAAI,4DAA4D,GAAG,CAAC,GAAG,sBAAsB,CAAC;aACrG;;YAED,SAAS;SACZ;;;QAGD,IAAI,IAAI,CAAC,IAAI,KAAK,OAAO,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC;QAC5C;YACI,IAAI,IAAI,sBAAsB,GAAG,CAAC,GAAG,UAAU,GAAG,CAAC,GAAG,6CAA6C,GAAG,CAAC,GAAG,cAAc,GAAG,CAAC,GAAG,oCAAoC,GAAG,CAAC,GAAG,gBAAgB,GAAG,CAAC,GAAG,oBAAoB,CAAC;SACzN;;aAEI,IAAI,CAAC,IAAI,CAAC,IAAI,KAAK,WAAW,IAAI,IAAI,CAAC,IAAI,KAAK,aAAa,IAAI,IAAI,CAAC,IAAI,KAAK,gBAAgB,KAAK,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO;;QAEzI;YACI,IAAI,IAAI,yCAAyC,GAAG,CAAC,GAAG,IAAI,GAAG,YAAY,GAAG,0BAA0B,GAAG,CAAC,GAAG,aAAa,GAAG,YAAY,GAAG,uCAAuC,GAAG,CAAC,GAAG,WAAW,GAAG,YAAY,GAAG,qCAAqC,GAAG,CAAC,GAAG,aAAa,GAAG,YAAY,GAAG,uDAAuD,CAAC;;YAE5V,YAAY,EAAE,CAAC;SAClB;aACI,IAAI,IAAI,CAAC,IAAI,KAAK,MAAM,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC;QAChD;YACI,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,SAAS;YACrC;;gBAEI,IAAI,IAAI,2CAA2C,GAAG,CAAC,GAAG,uBAAuB,GAAG,CAAC,GAAG,sCAAsC,CAAC;aAClI;;YAED;gBACI,IAAI,IAAI,2CAA2C,GAAG,CAAC,GAAG,uBAAuB,GAAG,CAAC,GAAG,wBAAwB,CAAC;aACpH;SACJ;aACI,IAAI,IAAI,CAAC,IAAI,KAAK,MAAM,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC;QAChD;;;YAGI,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,SAAS;YACrC;gBACI,IAAI,IAAI,4BAA4B,GAAG,CAAC,GAAG,kCAAkC,GAAG,CAAC,GAAG,sLAAsL,GAAG,CAAC,GAAG,4CAA4C,CAAC;aACjU;;YAED;gBACI,IAAI,IAAI,4BAA4B,GAAG,CAAC,GAAG,kCAAkC,GAAG,CAAC,GAAG,0LAA0L,GAAG,CAAC,GAAG,gEAAgE,CAAC;aACzV;SACJ;aACI,IAAI,IAAI,CAAC,IAAI,KAAK,MAAM,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC;QAChD;;;YAGI,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,KAAK,KAAK,SAAS;YACzC;gBACI,IAAI,IAAI,4BAA4B,GAAG,CAAC,GAAG,kCAAkC,GAAG,CAAC,GAAG,8SAA8S,GAAG,CAAC,GAAG,8DAA8D,CAAC;aAC3c;;YAED;gBACI,IAAI,IAAI,4BAA4B,GAAG,CAAC,GAAG,kCAAkC,GAAG,CAAC,GAAG,sSAAsS,GAAG,CAAC,GAAG,2EAA2E,CAAC;aAChd;SACJ;;QAED;YACI,IAAI,YAAY,GAAG,CAAC,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,6BAA6B,GAAG,qBAAqB,CAAC;;YAE7F,IAAI,QAAQ,IAAI,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,UAAU,GAAG,KAAK,GAAG,CAAC,GAAG,WAAW,EAAE,CAAC;;YAEvF,IAAI,IAAI,wBAAwB,GAAG,CAAC,GAAG,8BAA8B,GAAG,CAAC,GAAG,iBAAiB,GAAG,QAAQ,GAAG,KAAK,CAAC;SACpH;KACJ;;IAED,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC;CACrD;;AAED,IAAI,YAAY,GAAG;IACf,0BAA0B;IAC1B,kBAAkB;IAClB,mBAAmB;IACnB,WAAW;IACX,2BAA2B;IAC3B,GAAG,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;AAErB,SAAS,4BAA4B,CAAC,MAAM,EAAE,EAAE;AAChD;IACI,IAAI,MAAM,KAAK,CAAC;IAChB;QACI,MAAM,IAAI,KAAK,CAAC,+DAA+D,CAAC,CAAC;KACpF;;IAED,IAAI,MAAM,GAAG,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC,eAAe,CAAC,CAAC;;IAEjD,OAAO,IAAI;IACX;QACI,IAAI,WAAW,GAAG,YAAY,CAAC,OAAO,CAAC,aAAa,EAAE,iBAAiB,CAAC,MAAM,CAAC,CAAC,CAAC;;QAEjF,EAAE,CAAC,YAAY,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;QACrC,EAAE,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;;QAEzB,IAAI,CAAC,EAAE,CAAC,kBAAkB,CAAC,MAAM,EAAE,EAAE,CAAC,cAAc,CAAC;QACrD;YACI,MAAM,GAAG,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC;SAC7B;;QAED;;YAEI,MAAM;SACT;KACJ;;IAED,OAAO,MAAM,CAAC;CACjB;;AAED,SAAS,iBAAiB,CAAC,MAAM;AACjC;IACI,IAAI,GAAG,GAAG,EAAE,CAAC;;IAEb,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,EAAE,CAAC;IAC/B;QACI,IAAI,CAAC,GAAG,CAAC;QACT;YACI,GAAG,IAAI,SAAS,CAAC;SACpB;;QAED,IAAI,CAAC,GAAG,MAAM,GAAG,CAAC;QAClB;YACI,GAAG,IAAI,aAAa,GAAG,CAAC,GAAG,OAAO,CAAC;SACtC;KACJ;;IAED,OAAO,GAAG,CAAC;CACd;;;AAGD,IAAI,UAAU,CAAC;;;;;;;;;AASf,SAAS,mBAAmB;AAC5B;IACI,IAAI,OAAO,UAAU,KAAK,SAAS;IACnC;QACI,OAAO,UAAU,CAAC;KACrB;;IAED;IACA;;QAEI,IAAI,IAAI,GAAG,IAAI,QAAQ,CAAC,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,mCAAmC,CAAC,CAAC;;;QAG3F,UAAU,GAAG,IAAI,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,GAAG,EAAE,GAAG,CAAC,KAAK,IAAI,CAAC;KACpD;IACD,OAAO,CAAC;IACR;QACI,UAAU,GAAG,KAAK,CAAC;KACtB;;IAED,OAAO,UAAU,CAAC;CACrB;;AAED,IAAI,eAAe,GAAG,2IAA2I,CAAC;;AAElK,IAAI,aAAa,GAAG,mRAAmR,CAAC;;;;AAIxS,IAAI,KAAK,GAAG,CAAC,CAAC;;AAEd,IAAI,SAAS,GAAG,EAAE,CAAC;;;;;;;;AAQnB,IAAI,OAAO,GAAG,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE,IAAI;AAC3D;IACI,KAAK,IAAI,KAAK,KAAK,CAAC,GAAG,IAAI,GAAG,aAAa,CAAC;;IAE5C,IAAI,CAAC,EAAE,GAAG,KAAK,EAAE,CAAC;;;;;;;IAOlB,IAAI,CAAC,SAAS,GAAG,SAAS,IAAI,OAAO,CAAC,gBAAgB,CAAC;;;;;;;IAOvD,IAAI,CAAC,WAAW,GAAG,WAAW,IAAI,OAAO,CAAC,kBAAkB,CAAC;;IAE7D,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,CAAC;IACvC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC;;IAE3C,IAAI,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,UAAU;IACjD;QACI,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;QAEjC,IAAI,SAAS,CAAC,IAAI,CAAC;QACnB;YACI,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC;YAClB,IAAI,IAAI,GAAG,IAAI,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC;SACnC;;QAED;YACI,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;SACvB;;QAED,IAAI,CAAC,SAAS,GAAG,sBAAsB,GAAG,IAAI,GAAG,IAAI,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC;QACzE,IAAI,CAAC,WAAW,GAAG,sBAAsB,GAAG,IAAI,GAAG,IAAI,IAAI,IAAI,CAAC,WAAW,CAAC,CAAC;;QAE7E,IAAI,CAAC,SAAS,GAAG,YAAY,CAAC,IAAI,CAAC,SAAS,EAAE,QAAQ,CAAC,gBAAgB,EAAE,SAAS,CAAC,IAAI,CAAC,CAAC;QACzF,IAAI,CAAC,WAAW,GAAG,YAAY,CAAC,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC,kBAAkB,EAAE,uBAAuB,EAAE,CAAC,CAAC;KAC7G;;;IAGD,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC;;;IAGnD,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;;IAErB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;CAC5B,CAAC;;AAEF,IAAID,iBAAe,GAAG,EAAE,gBAAgB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,kBAAkB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;;AAU9G,OAAO,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,SAAS,EAAE,WAAW;AAC5E;IACI,IAAI,EAAE,GAAG,cAAc,EAAE,CAAC;;IAE1B,IAAI,EAAE;IACN;QACI,IAAI,OAAO,GAAG,cAAc,CAAC,EAAE,EAAE,SAAS,EAAE,WAAW,CAAC,CAAC;;QAEzD,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,gBAAgB,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;QACxD,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;;QAEpD,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;KAC7B;;IAED;QACI,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;QACtB,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;KAC3B;CACJ,CAAC;;;;;;;;;;;AAWF,OAAO,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,OAAO,EAAE,EAAE;AAC3E;IACI,IAAI,UAAU,GAAG,EAAE,CAAC;IACpB,IAAI,eAAe,GAAG,EAAE,CAAC;;IAEzB,IAAI,eAAe,GAAG,EAAE,CAAC,mBAAmB,CAAC,OAAO,EAAE,EAAE,CAAC,iBAAiB,CAAC,CAAC;;IAE5E,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,eAAe,EAAE,CAAC,EAAE;IACxC;QACI,IAAI,UAAU,GAAG,EAAE,CAAC,eAAe,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;QAChD,IAAI,IAAI,GAAG,OAAO,CAAC,EAAE,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;;;QAGxC,IAAI,IAAI,GAAG;YACP,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,UAAU,CAAC,IAAI;YACrB,IAAI,EAAE,OAAO,CAAC,IAAI,CAAC;YACnB,QAAQ,EAAE,CAAC;SACd,CAAC;;;QAGF,UAAU,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;QACnC,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KAC9B;;IAED,eAAe,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;;IAE7E,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE;IACrD;QACI,eAAe,CAAC,GAAG,CAAC,CAAC,QAAQ,GAAG,GAAG,CAAC;KACvC;;IAED,OAAO,UAAU,CAAC;CACrB,CAAC;;;;;;;;;;;AAWF,OAAO,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,OAAO,EAAE,EAAE;AACvE;IACI,IAAI,QAAQ,GAAG,EAAE,CAAC;;IAElB,IAAI,aAAa,GAAG,EAAE,CAAC,mBAAmB,CAAC,OAAO,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC;;;;;;IAMxE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,EAAE,CAAC,EAAE;IACtC;QACI,IAAI,WAAW,GAAG,EAAE,CAAC,gBAAgB,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;QAClD,IAAI,IAAI,GAAG,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;;QAEnD,IAAI,OAAO,GAAG,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;QACpD,IAAI,IAAI,GAAG,OAAO,CAAC,EAAE,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;;;QAGzC,QAAQ,CAAC,IAAI,CAAC,GAAG;YACb,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,WAAW,CAAC,IAAI;YACtB,OAAO,CAAC,OAAO;YACf,KAAK,EAAE,YAAY,CAAC,IAAI,EAAE,WAAW,CAAC,IAAI,CAAC;SAC9C,CAAC;;KAEL;;IAED,OAAO,QAAQ,CAAC;CACnB,CAAC;;;;;;;;;AASFA,iBAAe,CAAC,gBAAgB,CAAC,GAAG,GAAG;AACvC;IACI,OAAO,aAAa,CAAC;CACxB,CAAC;;;;;;;;;AASFA,iBAAe,CAAC,kBAAkB,CAAC,GAAG,GAAG;AACzC;IACI,OAAO,eAAe,CAAC;CAC1B,CAAC;;;;;;;;;;;;AAYF,OAAO,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,SAAS,EAAE,WAAW,EAAE,IAAI;AAC1D;IACI,IAAI,GAAG,GAAG,SAAS,GAAG,WAAW,CAAC;;IAElC,IAAI,OAAO,GAAG,YAAY,CAAC,GAAG,CAAC,CAAC;;IAEhC,IAAI,CAAC,OAAO;IACZ;QACI,YAAY,CAAC,GAAG,CAAC,GAAG,OAAO,GAAG,IAAI,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE,IAAI,CAAC,CAAC;KAC3E;;IAED,OAAO,OAAO,CAAC;CAClB,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,OAAO,EAAEA,iBAAe,EAAE,CAAC;;;;;;;;AAQpD,IAAI,MAAM,GAAG,SAAS,MAAM,CAAC,OAAO,EAAE,QAAQ;AAC9C;;;;;;IAMI,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;;;IAIvB,IAAI,QAAQ;IACZ;QACI,IAAI,QAAQ,YAAY,YAAY;QACpC;YACI,IAAI,CAAC,YAAY,GAAG,QAAQ,CAAC;SAChC;;QAED;YACI,IAAI,CAAC,YAAY,GAAG,IAAI,YAAY,CAAC,QAAQ,CAAC,CAAC;SAClD;KACJ;;IAED;QACI,IAAI,CAAC,YAAY,GAAG,IAAI,YAAY,CAAC,EAAE,CAAC,CAAC;KAC5C;;;;;IAKD,KAAK,IAAI,CAAC,IAAI,OAAO,CAAC,WAAW;IACjC;QACI,IAAI,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC,CAAC,YAAY,KAAK;QAClD;YACI,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;SACnF;KACJ;CACJ,CAAC;;AAEF,IAAIG,sBAAoB,GAAG,EAAE,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;AAGhE,MAAM,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,IAAI,EAAE,KAAK;AAC9E;IACI,IAAI,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC;IACxB;QACI,OAAO,IAAI,CAAC;KACf;;IAED,KAAK,IAAI,CAAC,IAAI,KAAK,CAAC,QAAQ;IAC5B;QACI,IAAI,OAAO,GAAG,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;;QAEhC,IAAI,OAAO,CAAC,KAAK;QACjB;YACI,IAAI,IAAI,CAAC,kBAAkB,CAAC,IAAI,EAAE,OAAO,CAAC;YAC1C;gBACI,OAAO,IAAI,CAAC;aACf;SACJ;KACJ;;IAED,OAAO,KAAK,CAAC;CAChB,CAAC;;AAEF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC3C;;;IAGI,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;CAC5B,CAAC;;;;;;;AAOFA,sBAAoB,CAAC,QAAQ,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC;CACrC,CAAC;;;;;;;;;;;AAWF,MAAM,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,SAAS,EAAE,WAAW,EAAE,QAAQ;AAC7D;IACI,IAAI,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,SAAS,EAAE,WAAW,CAAC,CAAC;;IAEnD,OAAO,IAAI,MAAM,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;CACxC,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,MAAM,CAAC,SAAS,EAAEA,sBAAoB,EAAE,CAAC;;;;AAIlE,IAAI,KAAK,GAAG,CAAC,CAAC;AACd,IAAI,MAAM,GAAG,CAAC,CAAC;AACf,IAAI,OAAO,GAAG,CAAC,CAAC;AAChB,IAAI,UAAU,GAAG,CAAC,CAAC;AACnB,IAAI,OAAO,GAAG,CAAC,CAAC;;;;;;;;;;;AAWhB,IAAI,KAAK,GAAG,SAAS,KAAK;AAC1B;IACI,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;;IAEd,IAAI,CAAC,SAAS,GAAG,WAAW,CAAC,MAAM,CAAC;IACpC,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;IAEvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;CAErB,CAAC;;AAEF,IAAIC,sBAAoB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,OAAO,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,OAAO,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,kBAAkB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,aAAa,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;AAOlRA,sBAAoB,CAAC,KAAK,CAAC,GAAG,GAAG;AACjC;IACI,OAAO,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC;CACvC,CAAC;;AAEFA,sBAAoB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;AAChD;IACI,IAAI,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,KAAK,CAAC,CAAC,KAAK,KAAK;IAC1C;QACI,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,CAAC;KAC7B;CACJ,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,OAAO,CAAC,GAAG,GAAG;AACnC;IACI,OAAO,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC;CACxC,CAAC;;AAEFA,sBAAoB,CAAC,OAAO,CAAC,GAAG,GAAG,UAAU,KAAK;AAClD;IACI,IAAI,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,MAAM,CAAC,CAAC,KAAK,KAAK;IAC3C;QACI,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,MAAM,CAAC,CAAC;KAC9B;CACJ,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,OAAO,CAAC,GAAG,GAAG;AACnC;IACI,OAAO,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC;CACzC,CAAC;;AAEFA,sBAAoB,CAAC,OAAO,CAAC,GAAG,GAAG,UAAU,KAAK;AAClD;IACI,IAAI,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,OAAO,CAAC,CAAC,KAAK,KAAK;IAC5C;QACI,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,OAAO,CAAC,CAAC;KAC/B;CACJ,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG;AACrC;IACI,OAAO,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,UAAU,CAAC,CAAC,CAAC;CAC5C,CAAC;;AAEFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG,UAAU,KAAK;AACpD;IACI,IAAI,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,UAAU,CAAC,CAAC,KAAK,KAAK;IAC/C;QACI,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,UAAU,CAAC,CAAC;KAClC;CACJ,CAAC;;;;;;;AAOFA,sBAAoB,CAAC,kBAAkB,CAAC,GAAG,GAAG;AAC9C;IACI,OAAO,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC;CACzC,CAAC;;AAEFA,sBAAoB,CAAC,kBAAkB,CAAC,GAAG,GAAG,UAAU,KAAK;AAC7D;IACI,IAAI,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,OAAO,CAAC,CAAC,KAAK,KAAK;IAC5C;QACI,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,OAAO,CAAC,CAAC;KAC/B;CACJ,CAAC;;;;;;;;;;AAUFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG;AACrC;IACI,OAAO,IAAI,CAAC,UAAU,CAAC;CAC1B,CAAC;;AAEFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG,UAAU,KAAK;AACpD;IACI,IAAI,CAAC,KAAK,IAAI,KAAK,KAAK,WAAW,CAAC,IAAI,CAAC,CAAC;IAC1C,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;CAC3B,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,aAAa,CAAC,GAAG,GAAG;AACzC;IACI,OAAO,IAAI,CAAC,cAAc,CAAC;CAC9B,CAAC;;AAEFA,sBAAoB,CAAC,aAAa,CAAC,GAAG,GAAG,UAAU,KAAK;AACxD;IACI,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC;IACvB,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;CAC/B,CAAC;;AAEF,KAAK,CAAC,KAAK,GAAG,SAAS,KAAK;AAC5B;IACI,IAAI,KAAK,GAAG,IAAI,KAAK,EAAE,CAAC;;IAExB,KAAK,CAAC,SAAS,GAAG,KAAK,CAAC;IACxB,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC;;IAEnB,OAAO,KAAK,CAAC;CAChB,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,KAAK,CAAC,SAAS,EAAEA,sBAAoB,EAAE,CAAC;;AAEjE,IAAI,eAAe,GAAG,8jBAA8jB,CAAC;;AAErlB,IAAI,iBAAiB,GAAG,4IAA4I,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0IrK,IAAI,MAAM,iBAAiB,UAAU,MAAM,EAAE;IACzC,SAAS,MAAM,CAAC,SAAS,EAAE,WAAW,EAAE,QAAQ;IAChD;QACI,IAAI,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,SAAS,IAAI,MAAM,CAAC,gBAAgB;YAC3D,WAAW,IAAI,MAAM,CAAC,kBAAkB,CAAC,CAAC;;QAE9C,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;;;;;;;;;QASrC,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;;QAQjB,IAAI,CAAC,UAAU,GAAG,QAAQ,CAAC,iBAAiB,CAAC;;;;;;;QAO7C,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;;QAQpB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;QAOpB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,aAAa,CAAC;;;;;;QAMzD,IAAI,CAAC,KAAK,GAAG,IAAI,KAAK,EAAE,CAAC;KAC5B;;IAED,KAAK,MAAM,GAAG,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC;IACxC,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IAC/D,MAAM,CAAC,SAAS,CAAC,WAAW,GAAG,MAAM,CAAC;;IAEtC,IAAI,kBAAkB,GAAG,EAAE,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;IAC/D,IAAI,eAAe,GAAG,EAAE,gBAAgB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,kBAAkB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;;;;;IAa9G,MAAM,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,aAAa,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,YAAY;IAC1F;;;QAGI,aAAa,CAAC,WAAW,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC;;;KAGvE,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG;IACnC;QACI,OAAO,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC;KAC/B,CAAC;;IAEF,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG,UAAU,KAAK;IAClD;QACI,IAAI,CAAC,KAAK,CAAC,SAAS,GAAG,KAAK,CAAC;KAChC,CAAC;;;;;;;;;IASF,eAAe,CAAC,gBAAgB,CAAC,GAAG,GAAG;IACvC;QACI,OAAO,eAAe,CAAC;KAC1B,CAAC;;;;;;;;;IASF,eAAe,CAAC,kBAAkB,CAAC,GAAG,GAAG;IACzC;QACI,OAAO,iBAAiB,CAAC;KAC5B,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,MAAM,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;IAChE,MAAM,CAAC,gBAAgB,EAAE,MAAM,EAAE,eAAe,EAAE,CAAC;;IAEnD,OAAO,MAAM,CAAC;CACjB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;AASX,MAAM,CAAC,cAAc,GAAG,EAAE,CAAC;;AAE3B,IAAI,MAAM,GAAG,iZAAiZ,CAAC;;AAE/Z,IAAI,QAAQ,GAAG,opBAAopB,CAAC;;AAEpqB,IAAI,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;;;;;;;;;;;AAmB3B,IAAI,aAAa,GAAG,SAAS,aAAa,CAAC,OAAO,EAAE,WAAW;AAC/D;IACI,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;;;;;;;IAOxB,IAAI,CAAC,QAAQ,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;IAQ7B,IAAI,CAAC,WAAW,GAAG,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;;;;;;;;IAQvC,IAAI,CAAC,YAAY,GAAG,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;;;;;;;IAOxC,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;;;;;;;;;;IAUpB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;;;;;;;;;;IAUrB,IAAI,CAAC,WAAW,GAAG,CAAC,OAAO,WAAW,KAAK,WAAW,IAAI,GAAG,GAAG,WAAW,CAAC;;;;;;;;IAQ5E,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;CACzB,CAAC;;AAEF,IAAIC,sBAAoB,GAAG,EAAE,OAAO,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;AAM/DA,sBAAoB,CAAC,OAAO,CAAC,GAAG,GAAG;AACnC;IACI,OAAO,IAAI,CAAC,QAAQ,CAAC;CACxB,CAAC;;AAEFA,sBAAoB,CAAC,OAAO,CAAC,GAAG,GAAG,UAAU,KAAK;AAClD;IACI,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;IACtB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;CACvB,CAAC;;;;;;;;AAQF,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,GAAG,EAAE,GAAG;AACpE;IACI,IAAI,GAAG,KAAK,SAAS;IACrB;QACI,GAAG,GAAG,GAAG,CAAC;KACb;;IAED,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC;;IAExB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC;IACtC;QACI,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;QACf,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;;QAEnB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,EAAE,CAAC;QAC5C,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,EAAE,CAAC;KACnD;;IAED,OAAO,GAAG,CAAC;CACd,CAAC;;;;;;;AAOF,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,WAAW;AAC7D;IACI,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC;;IAExB,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK;IACtB;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,IAAI,CAAC,WAAW;WACT,IAAI,CAAC,SAAS,KAAK,GAAG,CAAC,SAAS;IACvC;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,IAAI,CAAC,SAAS,GAAG,GAAG,CAAC,SAAS,CAAC;;IAE/B,IAAI,GAAG,GAAG,GAAG,CAAC,IAAI,CAAC;;IAEnB,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,EAAE,CAAC,CAAC;;IAEtG,IAAI,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;IACpB,IAAI,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;;IAEpB,IAAI,IAAI;IACR;QACI,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM;YAChE,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;QACjD,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;KACjC;;IAED,IAAI,OAAO,GAAG,GAAG,CAAC,WAAW,CAAC;IAC9B,IAAI,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC;IAC7B,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW,GAAG,OAAO,CAAC,UAAU,CAAC;IACnD,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC;;IAE9B,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,KAAK,CAAC;IAC5D,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,MAAM,CAAC;IAC7D,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,KAAK,GAAG,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,KAAK,CAAC;IAC/E,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,MAAM,GAAG,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,MAAM,CAAC;IACjF,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,GAAG,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC;IAClD,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,GAAG,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC;;IAEnD,IAAI,CAAC,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC,KAAK,KAAK,OAAO,CAAC,KAAK;WAC3C,GAAG,CAAC,MAAM,CAAC,MAAM,KAAK,OAAO,CAAC,MAAM;WACpC,GAAG,CAAC,MAAM,KAAK,CAAC,CAAC;;IAExB,OAAO,IAAI,CAAC;CACf,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,aAAa,CAAC,SAAS,EAAEA,sBAAoB,EAAE,CAAC;;;;;;;;;;;AAWzE,IAAI,gBAAgB,iBAAiB,UAAU,MAAM,EAAE;IACnD,SAAS,gBAAgB,CAAC,MAAM;IAChC;QACI,IAAI,UAAU,GAAG,IAAI,MAAM,EAAE,CAAC;;QAE9B,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC;;QAEpC,MAAM,CAAC,UAAU,GAAG,KAAK,CAAC;;;;;;QAM1B,IAAI,CAAC,UAAU,GAAG,MAAM,CAAC;;;;;;QAMzB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;KAChC;;IAED,KAAK,MAAM,GAAG,gBAAgB,CAAC,SAAS,GAAG,MAAM,CAAC;IAClD,gBAAgB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACzE,gBAAgB,CAAC,SAAS,CAAC,WAAW,GAAG,gBAAgB,CAAC;;;;;;;;;;IAU1D,gBAAgB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,aAAa,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK;IACtF;QACI,IAAI,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;QACjC,IAAI,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC;;QAElC,IAAI,CAAC,GAAG,CAAC,KAAK;QACd;YACI,OAAO;SACV;QACD,IAAI,CAAC,GAAG,CAAC,SAAS;QAClB;;;YAGI,GAAG,CAAC,SAAS,GAAG,IAAI,aAAa,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;SAC/C;QACD,GAAG,CAAC,SAAS,CAAC,MAAM,EAAE,CAAC;;QAEvB,IAAI,CAAC,QAAQ,CAAC,QAAQ,GAAG,GAAG,CAAC,WAAW,CAAC,gBAAgB,GAAG,GAAG,GAAG,GAAG,CAAC;QACtE,IAAI,CAAC,QAAQ,CAAC,IAAI,GAAG,GAAG,CAAC;;QAEzB,IAAI,CAAC,QAAQ,CAAC,WAAW,GAAG,aAAa,CAAC,qBAAqB,CAAC,IAAI,CAAC,UAAU,EAAE,UAAU,CAAC;aACvF,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC;QACrC,IAAI,CAAC,QAAQ,CAAC,KAAK,GAAG,UAAU,CAAC,UAAU,CAAC;QAC5C,IAAI,CAAC,QAAQ,CAAC,SAAS,GAAG,GAAG,CAAC,SAAS,CAAC,WAAW,CAAC;;QAEpD,aAAa,CAAC,WAAW,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;KACzD,CAAC;;IAEF,OAAO,gBAAgB,CAAC;CAC3B,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;AASX,IAAI,UAAU,iBAAiB,UAAU,MAAM,EAAE;IAC7C,SAAS,UAAU,CAAC,QAAQ;IAC5B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;;QAQ5B,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;;;;;;QAOrB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;QAOxB,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC;;;;;;;QAOhC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;;;;;;;QAO3B,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;;;;;;;;QAQxB,IAAI,CAAC,cAAc,GAAG,CAAC,CAAC;KAC3B;;IAED,KAAK,MAAM,GAAG,UAAU,CAAC,SAAS,GAAG,MAAM,CAAC;IAC5C,UAAU,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACnE,UAAU,CAAC,SAAS,CAAC,WAAW,GAAG,UAAU,CAAC;;;;;;;;IAQ9C,UAAU,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,QAAQ;IAC3D;;;;;QAKI,IAAI,QAAQ,CAAC,QAAQ;QACrB;YACI,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;SACzC;aACI,IAAI,IAAI,CAAC,aAAa;eACpB,CAAC,IAAI,CAAC,OAAO;eACb,IAAI,CAAC,QAAQ,CAAC,mBAAmB,CAAC,IAAI;eACtC,CAAC,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,gBAAgB,CAAC,MAAM;eAC9C,QAAQ,CAAC,UAAU,EAAE;QAC5B;YACI,IAAI,MAAM,GAAG,QAAQ,CAAC,cAAc,CAAC;;YAErC,IAAI,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC;;;YAGzC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,IAAI,GAAG,GAAG,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC;;YAExC,IAAI,GAAG,GAAG,EAAE;YACZ;gBACI,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC;aAClC;;YAED;gBACI,IAAI,CAAC,eAAe,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aAC1C;SACJ;;QAED;YACI,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC;SAClC;KACJ,CAAC;;;;;;;;IAQF,UAAU,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,MAAM,EAAE,QAAQ;IACzD;QACI,IAAI,QAAQ,CAAC,QAAQ;QACrB;YACI,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;SACxC;aACI,IAAI,IAAI,CAAC,aAAa,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,gBAAgB,CAAC,MAAM;QAC7E;YACI,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;SACzC;;QAED;YACI,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;SACzC;KACJ,CAAC;;;;;;;;IAQF,UAAU,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,MAAM,EAAE,QAAQ;IAC/E;QACI,IAAI,eAAe,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;;QAE9D,IAAI,CAAC,eAAe;QACpB;YACI,eAAe,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,IAAI,gBAAgB,CAAC,QAAQ,CAAC,CAAC,CAAC;SAChG;;QAED,eAAe,CAAC,CAAC,CAAC,CAAC,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC;QACzD,eAAe,CAAC,CAAC,CAAC,CAAC,UAAU,GAAG,QAAQ,CAAC;;QAEzC,IAAI,eAAe,GAAG,MAAM,CAAC,UAAU,CAAC;;QAExC,MAAM,CAAC,UAAU,GAAG,QAAQ,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;QAC7C,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;QACnD,MAAM,CAAC,UAAU,GAAG,eAAe,CAAC;;QAEpC,IAAI,CAAC,cAAc,EAAE,CAAC;KACzB,CAAC;;;;;;IAMF,UAAU,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IAC3D;QACI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC;QAC3B,IAAI,CAAC,cAAc,EAAE,CAAC;KACzB,CAAC;;;;;;;IAOF,UAAU,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,QAAQ;IACzE;QACI,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;QAC5B,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;KAC/C,CAAC;;;;;;IAMF,UAAU,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;IAC7D;;QAEI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC;KACtC,CAAC;;;;;;;IAOF,UAAU,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,MAAM,EAAE,QAAQ;IACjF;QACI,QAAQ,CAAC,UAAU,GAAG,IAAI,CAAC;;QAE3B,IAAI,YAAY,GAAG,IAAI,CAAC,QAAQ,CAAC,mBAAmB,CAAC;;QAErD,IAAI,MAAM,GAAG,QAAQ,CAAC,SAAS,EAAE,CAAC;;QAElC,MAAM,CAAC,GAAG,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;QAC9B,QAAQ,CAAC,UAAU,GAAG,KAAK,CAAC;;QAE5B,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC;;QAEvD,IAAI,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC;;QAE1C,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,OAAO;YACpB,MAAM,CAAC,CAAC,GAAG,UAAU;YACrB,CAAC,YAAY,CAAC,IAAI,GAAG,YAAY,CAAC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC,IAAI,UAAU;YACjG,MAAM,CAAC,KAAK,GAAG,UAAU;YACzB,MAAM,CAAC,MAAM,GAAG,UAAU;SAC7B,CAAC;;QAEF,IAAI,CAAC,mBAAmB,GAAG,YAAY,CAAC;QACxC,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC;QAC5B,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;KACvB,CAAC;;;;;;IAMF,UAAU,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;IAC7D;QACI,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC;QAChC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QACxB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;;QAGrB,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC;QACxB,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC;KAC/B,CAAC;;IAEF,OAAO,UAAU,CAAC;CACrB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;AASX,IAAI,aAAa,iBAAiB,UAAU,MAAM,EAAE;IAChD,SAAS,aAAa,CAAC,QAAQ;IAC/B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;QAM5B,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC;KAC9B;;IAED,KAAK,MAAM,GAAG,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC;IAC/C,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACtE,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;;;;;;IAOpD,aAAa,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,gBAAgB;IAC9E;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC1B,IAAI,WAAW,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC;;QAE/C,IAAI,CAAC,gBAAgB,GAAG,gBAAgB,CAAC;QACzC,IAAI,gBAAgB,CAAC,MAAM,KAAK,WAAW;QAC3C;YACI,IAAI,gBAAgB,CAAC,MAAM,KAAK,CAAC;YACjC;gBACI,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC;aAC/B;;YAED;gBACI,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC;gBAC3B,IAAI,CAAC,WAAW,EAAE,CAAC;aACtB;SACJ;KACJ,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,QAAQ;IACpE;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC1B,IAAI,aAAa,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC;;QAEjD,IAAI,aAAa,KAAK,CAAC;QACvB;;YAEI,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,YAAY,EAAE,CAAC;YACzC,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC;SAC9B;;QAED,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;;;QAGrC,EAAE,CAAC,SAAS,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;QACzC,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,aAAa,EAAE,IAAI,CAAC,eAAe,EAAE,CAAC,CAAC;QAChE,EAAE,CAAC,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC;;QAExC,QAAQ,CAAC,UAAU,GAAG,IAAI,CAAC;QAC3B,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAC/B,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;QAC5B,QAAQ,CAAC,UAAU,GAAG,KAAK,CAAC;;QAE5B,IAAI,CAAC,WAAW,EAAE,CAAC;KACtB,CAAC;;;;;IAKF,aAAa,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IACxD;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC1B,IAAI,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAC,GAAG,EAAE,CAAC;;QAE3C,IAAI,IAAI,CAAC,gBAAgB,CAAC,MAAM,KAAK,CAAC;QACtC;;YAEI,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC;YAC5B,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAAC,CAAC;YAChC,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;SACtB;;QAED;;YAEI,EAAE,CAAC,SAAS,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;YACzC,EAAE,CAAC,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC;;YAExC,QAAQ,CAAC,UAAU,GAAG,IAAI,CAAC;YAC3B,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;YAC/B,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;YAC5B,QAAQ,CAAC,UAAU,GAAG,KAAK,CAAC;;YAE5B,IAAI,CAAC,WAAW,EAAE,CAAC;SACtB;KACJ,CAAC;;;;;;IAMF,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;IAC1D;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;;QAE1B,EAAE,CAAC,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;QACrC,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,IAAI,CAAC,eAAe,EAAE,CAAC,CAAC;QAC/E,EAAE,CAAC,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC;KAC3C,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;IAClE;QACI,OAAO,CAAC,CAAC,IAAI,IAAI,CAAC,gBAAgB,CAAC,MAAM,IAAI,CAAC,CAAC;KAClD,CAAC;;;;;;IAMF,aAAa,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAClD;QACI,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;;QAE1C,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;KAChC,CAAC;;IAEF,OAAO,aAAa,CAAC;CACxB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;;AAUX,IAAI,gBAAgB,iBAAiB,UAAU,MAAM,EAAE;IACnD,SAAS,gBAAgB,CAAC,QAAQ;IAClC;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;QAO5B,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;;;;;;;QAO7B,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;QAOxB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;;;;;;;QAOzB,IAAI,CAAC,gBAAgB,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;QAOrC,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;KACzB;;IAED,KAAK,MAAM,GAAG,gBAAgB,CAAC,SAAS,GAAG,MAAM,CAAC;IAClD,gBAAgB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACzE,gBAAgB,CAAC,SAAS,CAAC,WAAW,GAAG,gBAAgB,CAAC;;;;;;;;;;IAU1D,gBAAgB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,gBAAgB,EAAE,WAAW,EAAE,UAAU,EAAE,IAAI;IACpG;QACI,IAAI,CAAC,gBAAgB,GAAG,gBAAgB,IAAI,IAAI,CAAC,gBAAgB,IAAI,IAAI,CAAC,YAAY,CAAC;QACvF,IAAI,CAAC,WAAW,GAAG,WAAW,IAAI,IAAI,CAAC,WAAW,IAAI,gBAAgB,CAAC;;QAEvE,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC,WAAW,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC;;QAEpF,IAAI,IAAI,CAAC,SAAS;QAClB;YACI,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SAChD;;QAED,IAAI,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC;;QAE9B,QAAQ,CAAC,cAAc,CAAC,QAAQ,CAAC,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC;QAC1E,QAAQ,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC;;;;QAIjC,IAAI,QAAQ,CAAC,MAAM,CAAC,MAAM;QAC1B;YACI,QAAQ,CAAC,MAAM,CAAC,gBAAgB,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC;SAC7E;KACJ,CAAC;;;;;;;;;;IAUF,gBAAgB,CAAC,SAAS,CAAC,mBAAmB,GAAG,SAAS,mBAAmB,EAAE,gBAAgB,EAAE,WAAW,EAAE,UAAU,EAAE,IAAI;IAC9H;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,gBAAgB,CAAC;;;;;QAK/B,IAAI,CAAC,IAAI;QACT;YACI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,gBAAgB,CAAC,KAAK,GAAG,CAAC,IAAI,UAAU,CAAC;YACrD,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,gBAAgB,CAAC,MAAM,GAAG,CAAC,IAAI,UAAU,CAAC;;YAEtD,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;YACpC,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;SACvC;;QAED;YACI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,gBAAgB,CAAC,KAAK,GAAG,CAAC,IAAI,UAAU,CAAC;YACrD,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,gBAAgB,CAAC,MAAM,GAAG,CAAC,IAAI,UAAU,CAAC;;YAEvD,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;YACpC,EAAE,CAAC,EAAE,GAAG,CAAC,IAAI,WAAW,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC;SACtC;KACJ,CAAC;;;;;;;IAOF,gBAAgB,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY;IAC/D;;KAEC,CAAC;;IAEF,OAAO,gBAAgB,CAAC;CAC3B,CAAC,MAAM,CAAC,CAAC,CAAC;;AAEX,IAAI,QAAQ,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;;;;;;AAY/B,IAAI,mBAAmB,iBAAiB,UAAU,MAAM,EAAE;IACtD,SAAS,mBAAmB,CAAC,QAAQ;IACrC;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;QAM5B,IAAI,CAAC,UAAU,GAAG,QAAQ,CAAC,oBAAoB,CAAC;;;;;;;;QAQhD,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC;;;;;;;;QAQ3B,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;QAOpB,IAAI,CAAC,WAAW,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;QAOnC,IAAI,CAAC,gBAAgB,GAAG,IAAI,SAAS,EAAE,CAAC;KAC3C;;IAED,KAAK,MAAM,GAAG,mBAAmB,CAAC,SAAS,GAAG,MAAM,CAAC;IACrD,mBAAmB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IAC5E,mBAAmB,CAAC,SAAS,CAAC,WAAW,GAAG,mBAAmB,CAAC;;;;;;;;IAQhE,mBAAmB,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,aAAa,EAAE,WAAW,EAAE,gBAAgB;IAChG;QACI,KAAK,aAAa,KAAK,KAAK,CAAC,GAAG,aAAa,GAAG,IAAI,CAAC;;QAErD,IAAI,CAAC,OAAO,GAAG,aAAa,CAAC;;QAE7B,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;;QAE7B,IAAI,UAAU,CAAC;;QAEf,IAAI,aAAa;QACjB;YACI,IAAI,WAAW,GAAG,aAAa,CAAC,WAAW,CAAC;;YAE5C,UAAU,GAAG,WAAW,CAAC,UAAU,CAAC;;YAEpC,IAAI,CAAC,gBAAgB;YACrB;gBACI,QAAQ,CAAC,KAAK,GAAG,WAAW,CAAC,SAAS,CAAC;gBACvC,QAAQ,CAAC,MAAM,GAAG,WAAW,CAAC,UAAU,CAAC;;gBAEzC,gBAAgB,GAAG,QAAQ,CAAC;aAC/B;;YAED,IAAI,CAAC,WAAW;YAChB;gBACI,WAAW,GAAG,gBAAgB,CAAC;aAClC;;YAED,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,WAAW,EAAE,gBAAgB,CAAC,CAAC;;YAE1E,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,MAAM,CAAC,gBAAgB,EAAE,WAAW,EAAE,UAAU,EAAE,KAAK,CAAC,CAAC;YAClF,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAAC;SACpE;;QAED;YACI,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC;;;;YAItC,IAAI,CAAC,gBAAgB;YACrB;gBACI,QAAQ,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;gBAChC,QAAQ,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;;gBAElC,gBAAgB,GAAG,QAAQ,CAAC;aAC/B;;YAED,IAAI,CAAC,WAAW;YAChB;gBACI,WAAW,GAAG,gBAAgB,CAAC;aAClC;;YAED,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;;;YAGlD,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,MAAM,CAAC,gBAAgB,EAAE,WAAW,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC;YACjF,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;SAC7D;;QAED,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;;QAEvC,IAAI,CAAC,gBAAgB,CAAC,CAAC,GAAG,gBAAgB,CAAC,CAAC,GAAG,UAAU,CAAC;QAC1D,IAAI,CAAC,gBAAgB,CAAC,CAAC,GAAG,gBAAgB,CAAC,CAAC,GAAG,UAAU,CAAC;;QAE1D,IAAI,CAAC,gBAAgB,CAAC,KAAK,GAAG,gBAAgB,CAAC,KAAK,GAAG,UAAU,CAAC;QAClE,IAAI,CAAC,gBAAgB,CAAC,MAAM,GAAG,gBAAgB,CAAC,MAAM,GAAG,UAAU,CAAC;;QAEpE,IAAI,WAAW,KAAK,gBAAgB;QACpC;YACI,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;SACpD;KACJ,CAAC;;;;;;;;IAQF,mBAAmB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,UAAU;IAChE;QACI,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,UAAU,GAAG,UAAU,IAAI,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,UAAU,CAAC;SAClE;;QAED;YACI,UAAU,GAAG,UAAU,IAAI,IAAI,CAAC,UAAU,CAAC;SAC9C;;QAED,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;KAC/F,CAAC;;IAEF,mBAAmB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;IACtD;;QAEI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACnB,CAAC;;;;;IAKF,mBAAmB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACpD;QACI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACnB,CAAC;;IAEF,OAAO,mBAAmB,CAAC;CAC9B,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;AAQX,IAAI,SAAS,GAAG,SAAS,SAAS,CAAC,OAAO,EAAE,WAAW;AACvD;;;;;;IAMI,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;;;;;;IAOvB,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;;;;;;;IAO/B,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;CAC3B,CAAC;;;;;AAKF,SAAS,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC9C;IACI,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;IACxB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;CACvB,CAAC;;AAEF,IAAI,KAAK,GAAG,CAAC,CAAC;;;;;;;;;AASd,IAAI,YAAY,iBAAiB,UAAU,MAAM,EAAE;IAC/C,SAAS,YAAY,CAAC,QAAQ;IAC9B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;QAG5B,IAAI,CAAC,WAAW,EAAE,CAAC;;;;;;;QAOnB,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;;QAEf,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;QAOpB,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;;QAEhB,IAAI,CAAC,EAAE,GAAG,KAAK,EAAE,CAAC;KACrB;;IAED,KAAK,MAAM,GAAG,YAAY,CAAC,SAAS,GAAG,MAAM,CAAC;IAC9C,YAAY,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACrE,YAAY,CAAC,SAAS,CAAC,WAAW,GAAG,YAAY,CAAC;;;;;;;;IAQlD,YAAY,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;IACzD;QACI,IAAI,CAAC,mBAAmB,EAAE;QAC1B;YACI,MAAM,IAAI,KAAK,CAAC,kDAAkD;kBAC5D,wDAAwD,CAAC,CAAC;SACnE;KACJ,CAAC;;IAEF,YAAY,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,EAAE;IACjE;QACI,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,KAAK,EAAE,CAAC;KAChB,CAAC;;;;;;;;;IASF,YAAY,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,QAAQ;IAC7D;QACI,MAAM,CAAC,QAAQ,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC;;QAEvD,IAAI,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC;QAC7B,IAAI,SAAS,GAAG,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC;;QAE7F,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;QAGrB,IAAI,IAAI,CAAC,OAAO,KAAK,OAAO;QAC5B;YACI,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;YACvB,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;SACzC;;QAED,IAAI,CAAC,QAAQ;QACb;YACI,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;SAC9C;;QAED,OAAO,SAAS,CAAC;KACpB,CAAC;;;;;;;IAOF,YAAY,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,QAAQ;IACnE;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC;QACjC,IAAI,SAAS,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;;QAE7D,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,WAAW,EAAE,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;KACvE,CAAC;;IAEF,YAAY,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,KAAK;IAC1E;QACI,IAAI,SAAS,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;;QAEpC,IAAI,CAAC,KAAK,CAAC,MAAM,IAAI,KAAK,CAAC,OAAO,KAAK,SAAS,CAAC,aAAa,CAAC,KAAK,CAAC,EAAE,CAAC;QACxE;YACI,SAAS,CAAC,aAAa,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,OAAO,CAAC;;YAElD,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;SACvC;KACJ,CAAC;;;;;;;;IAQF,YAAY,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,KAAK,EAAE,SAAS;IAC7E;QACI,IAAI,QAAQ,GAAG,KAAK,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;;QAE1F,QAAQ,CAAC,SAAS,CAAC,WAAW,EAAE,KAAK,CAAC,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;KAClE,CAAC;;IAEF,YAAY,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,KAAK;IAC1E;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;;QAEnE,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QACnB;YACI,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,oBAAoB,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;SACjF;;QAED,KAAK,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;;QAE5D,OAAO,KAAK,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;KACrD,CAAC;;;;;;;;;;IAUF,YAAY,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,KAAK,EAAE,WAAW;IAC/E;QACI,IAAI,QAAQ,GAAG,KAAK,CAAC,QAAQ,CAAC;;QAE9B,IAAI,OAAO,GAAG,EAAE,CAAC;;QAEjB,KAAK,IAAI,CAAC,IAAI,QAAQ;QACtB;YACI,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;;YAEhB,IAAI,WAAW,CAAC,CAAC,CAAC;YAClB;gBACI,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;aACrC;SACJ;;QAED,OAAO,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KAC5B,CAAC;;;;;;;;IAQF,YAAY,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY;IAC3D;QACI,IAAI,IAAI,CAAC,MAAM;QACf;YACI,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;SACpE;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;IASF,YAAY,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,MAAM;IACvE;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;;QAEjB,IAAI,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC;;QAE7B,IAAI,SAAS,GAAG,EAAE,CAAC;;QAEnB,KAAK,IAAI,CAAC,IAAI,OAAO,CAAC,aAAa;QACnC;YACI,SAAS,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC;SACpD;;QAED,IAAI,aAAa,GAAG,cAAc,CAAC,EAAE,EAAE,OAAO,CAAC,SAAS,EAAE,OAAO,CAAC,WAAW,EAAE,SAAS,CAAC,CAAC;QAC1F,IAAI,WAAW,GAAG,EAAE,CAAC;;QAErB,KAAK,IAAI,GAAG,IAAI,OAAO,CAAC,WAAW;QACnC;YACI,IAAI,IAAI,GAAG,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;;YAEpC,WAAW,CAAC,GAAG,CAAC,GAAG;gBACf,QAAQ,EAAE,EAAE,CAAC,kBAAkB,CAAC,aAAa,EAAE,GAAG,CAAC;gBACnD,KAAK,EAAE,YAAY,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC;aAC5C,CAAC;SACL;;QAED,IAAI,SAAS,GAAG,IAAI,SAAS,CAAC,aAAa,EAAE,WAAW,CAAC,CAAC;;QAE1D,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC;;QAE1D,OAAO,SAAS,CAAC;KACpB,CAAC;;;;;IAKF,YAAY,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC7C;QACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;KACtB,CAAC;;;;;IAKF,YAAY,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACjD;;QAEI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;KACzB,CAAC;;IAEF,OAAO,YAAY,CAAC;CACvB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;;;;AAYX,SAAS,wBAAwB,CAAC,EAAE,EAAE,KAAK;AAC3C;IACI,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,EAAE,CAAC;;;;IAInC,KAAK,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC7D,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC;IAC1C,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,SAAS,EAAE,EAAE,CAAC,mBAAmB,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACrG,KAAK,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC7F,KAAK,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC9D,KAAK,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC7D,KAAK,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC9D,KAAK,CAAC,WAAW,CAAC,WAAW,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAClE,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACjE,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACjE,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACjE,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACjE,KAAK,CAAC,WAAW,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAChE,KAAK,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC1D,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACjE,KAAK,CAAC,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC5D,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACjE,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;;IAGjC,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,SAAS,EAAE,EAAE,CAAC,mBAAmB,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACvG,KAAK,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,SAAS,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC;IACpE,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,SAAS,EAAE,EAAE,CAAC,mBAAmB,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;;;IAGvG,KAAK,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,SAAS,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC;IACpD,KAAK,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,mBAAmB,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC;IAC/D,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,SAAS,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IACrE,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,mBAAmB,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC;IAC/D,KAAK,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC;IACpD,KAAK,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC;IAC/D,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,mBAAmB,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC;;;IAGrE,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,qBAAqB,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC;;IAEtG,OAAO,KAAK,CAAC;CAChB;;AAED,IAAI,OAAO,GAAG,CAAC,CAAC;AAChB,IAAI,QAAQ,GAAG,CAAC,CAAC;AACjB,IAAI,SAAS,GAAG,CAAC,CAAC;AAClB,IAAI,YAAY,GAAG,CAAC,CAAC;AACrB,IAAI,SAAS,GAAG,CAAC,CAAC;;;;;;;;;AASlB,IAAI,WAAW,iBAAiB,UAAU,MAAM,EAAE;IAC9C,SAAS,WAAW,CAAC,QAAQ;IAC7B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;QAO5B,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;;;;;;;QAOf,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;QAOjB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;;;;;;;QAQvB,IAAI,CAAC,SAAS,GAAG,WAAW,CAAC,IAAI,CAAC;;;;;;;QAOlC,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;;;;;;;QAOtB,IAAI,CAAC,GAAG,GAAG,EAAE,CAAC;;;QAGd,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC;QAClC,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,SAAS,CAAC;QACpC,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC;QACvC,IAAI,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC;QAC3C,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC;;;;;;;QAOxC,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC;;;;;;;QAOjB,IAAI,CAAC,YAAY,GAAG,IAAI,KAAK,EAAE,CAAC;QAChC,IAAI,CAAC,YAAY,CAAC,KAAK,GAAG,IAAI,CAAC;QAC/B,IAAI,CAAC,YAAY,CAAC,KAAK,GAAG,IAAI,CAAC;KAClC;;IAED,KAAK,MAAM,GAAG,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC;IAC7C,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACpE,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,WAAW,CAAC;;IAEhD,WAAW,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,EAAE;IAChE;QACI,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;;QAEb,IAAI,CAAC,UAAU,GAAG,wBAAwB,CAAC,EAAE,CAAC,CAAC;;QAE/C,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;;QAE5B,IAAI,CAAC,KAAK,EAAE,CAAC;KAChB,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,KAAK;IAC/C;QACI,KAAK,GAAG,KAAK,IAAI,IAAI,CAAC,YAAY,CAAC;;;QAGnC,IAAI,IAAI,CAAC,OAAO,KAAK,KAAK,CAAC,IAAI;QAC/B;YACI,IAAI,IAAI,GAAG,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC,IAAI,CAAC;YACrC,IAAI,CAAC,GAAG,CAAC,CAAC;;;YAGV,OAAO,IAAI;YACX;gBACI,IAAI,IAAI,GAAG,CAAC;gBACZ;;oBAEI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;iBACrD;;gBAED,IAAI,GAAG,IAAI,IAAI,CAAC,CAAC;gBACjB,CAAC,EAAE,CAAC;aACP;;YAED,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC,IAAI,CAAC;SAC7B;;;;;QAKD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,EAAE;QACjD;YACI,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;SACjC;KACJ,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,KAAK;IAC7D;QACI,KAAK,GAAG,KAAK,IAAI,IAAI,CAAC,YAAY,CAAC;QACnC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC,EAAE;QACxC;YACI,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SACrD;QACD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,EAAE;QACjD;YACI,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;SACjC;;QAED,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC,IAAI,CAAC;KAC7B,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,KAAK;IACzD;QACI,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,cAAc,EAAE,KAAK,CAAC,CAAC;;QAEpD,IAAI,CAAC,EAAE,CAAC,KAAK,GAAG,QAAQ,GAAG,SAAS,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;KACxD,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,KAAK;IAC3D;QACI,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,kBAAkB,EAAE,KAAK,CAAC,CAAC;;QAExD,IAAI,CAAC,EAAE,CAAC,KAAK,GAAG,QAAQ,GAAG,SAAS,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,mBAAmB,CAAC,CAAC;KACtE,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,KAAK;IACjE;QACI,IAAI,CAAC,EAAE,CAAC,KAAK,GAAG,QAAQ,GAAG,SAAS,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC;KAC7D,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,KAAK;IAC/D;QACI,IAAI,CAAC,EAAE,CAAC,KAAK,GAAG,QAAQ,GAAG,SAAS,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC;KAC5D,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,KAAK;IACjE;QACI,IAAI,CAAC,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,KAAK,GAAG,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC;KACpD,CAAC;;;;;;;IAOF,WAAW,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,KAAK;IACjE;QACI,IAAI,KAAK,KAAK,IAAI,CAAC,SAAS;QAC5B;YACI,OAAO;SACV;;QAED,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;QAEvB,IAAI,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;QAClC,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;;QAEjB,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC;QACrB;YACI,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SAClC;;QAED;YACI,EAAE,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SAC5D;QACD,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC;QACrB;YACI,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;YACrB,EAAE,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SAC9C;aACI,IAAI,IAAI,CAAC,QAAQ;QACtB;YACI,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;YACtB,EAAE,CAAC,qBAAqB,CAAC,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC;SACtD;KACJ,CAAC;;;;;;;;IAQF,WAAW,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,KAAK,EAAE,KAAK;IAChF;QACI,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;KACvC,CAAC;;;;;;IAMF,WAAW,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC5C;QACI,IAAI,CAAC,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE,CAAC,mBAAmB,EAAE,KAAK,CAAC,CAAC;;QAExD,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;;QAEnB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QACrB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;QACpB,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;KACxB,CAAC;;;;;;;;;;;IAWF,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,IAAI,EAAE,KAAK;IACrE;QACI,IAAI,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;;QAEtC,IAAI,KAAK,IAAI,KAAK,KAAK,CAAC,CAAC;QACzB;YACI,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SAC1B;aACI,IAAI,CAAC,KAAK,IAAI,KAAK,KAAK,CAAC,CAAC;QAC/B;YACI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;SAChC;KACJ,CAAC;;;;;;;;;;IAUF,WAAW,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,MAAM,EAAE,KAAK;IACnE;QACI,MAAM,CAAC,YAAY,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;KACxC,CAAC;;;;;;;;;;IAUF,WAAW,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,MAAM,EAAE,KAAK;IAC3E;QACI,MAAM,CAAC,gBAAgB,CAAC,KAAK,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC;KACnD,CAAC;;IAEF,OAAO,WAAW,CAAC;CACtB,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;;;;AAUX,IAAI,eAAe,iBAAiB,UAAU,MAAM,EAAE;IAClD,SAAS,eAAe,CAAC,QAAQ;IACjC;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;QAO5B,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;QAOf,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;;;;;;QAOpB,IAAI,CAAC,OAAO,GAAG,QAAQ,CAAC,WAAW,CAAC;;;;;;;QAOpC,IAAI,CAAC,aAAa,GAAG,QAAQ,CAAC,kBAAkB,CAAC;;;;;;;QAOjD,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,OAAO,CAAC;KAChC;;IAED,KAAK,MAAM,GAAG,eAAe,CAAC,SAAS,GAAG,MAAM,CAAC;IACjD,eAAe,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACxE,eAAe,CAAC,SAAS,CAAC,WAAW,GAAG,eAAe,CAAC;;;;;;IAMxD,eAAe,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IAC1D;QACI,IAAI,CAAC,KAAK,EAAE,CAAC;;QAEb,IAAI,IAAI,CAAC,IAAI,KAAK,QAAQ,CAAC,MAAM;QACjC;YACI,OAAO;SACV;;QAED,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,IAAI,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,aAAa;QACxC;YACI,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;YAEpB,IAAI,CAAC,GAAG,EAAE,CAAC;SACd;KACJ,CAAC;;;;;;IAMF,eAAe,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG;IAC5C;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC;QAC/B,IAAI,eAAe,IAAI,EAAE,CAAC,eAAe,CAAC;QAC1C,IAAI,UAAU,GAAG,KAAK,CAAC;;QAEvB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,eAAe,CAAC,MAAM,EAAE,CAAC,EAAE;QAC/C;YACI,IAAI,OAAO,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;;;YAGjC,IAAI,CAAC,OAAO,CAAC,WAAW,IAAI,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO;YACvE;gBACI,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;gBACjC,eAAe,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;gBAC1B,UAAU,GAAG,IAAI,CAAC;aACrB;SACJ;;QAED,IAAI,UAAU;QACd;YACI,IAAI,CAAC,GAAG,CAAC,CAAC;;YAEV,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE;YACrD;gBACI,IAAI,eAAe,CAAC,GAAG,CAAC,KAAK,IAAI;gBACjC;oBACI,eAAe,CAAC,CAAC,EAAE,CAAC,GAAG,eAAe,CAAC,GAAG,CAAC,CAAC;iBAC/C;aACJ;;YAED,eAAe,CAAC,MAAM,GAAG,CAAC,CAAC;SAC9B;KACJ,CAAC;;;;;;;IAOF,eAAe,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,aAAa;IACjE;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC;;;QAGrC,IAAI,aAAa,CAAC,QAAQ,IAAI,aAAa,CAAC,QAAQ,CAAC,gBAAgB;QACrE;YACI,EAAE,CAAC,cAAc,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;SAC7C;;QAED,KAAK,IAAI,CAAC,GAAG,aAAa,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;QAC3D;YACI,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;SAC1C;KACJ,CAAC;;IAEF,OAAO,eAAe,CAAC;CAC1B,CAAC,MAAM,CAAC,CAAC,CAAC;;;;;;;AAOX,IAAI,SAAS,GAAG,SAAS,SAAS,CAAC,OAAO;AAC1C;;;;;IAKI,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;;;;;IAMvB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC;;;;;;IAMhB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;;;;;IAMjB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC;;;;;;IAMlB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;;;;;;IAMvB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;;;;;;IAMpB,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;;;;;;IAMtB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;IAMjB,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC;CAC9B,CAAC;;;;;;;;;AASF,IAAI,aAAa,iBAAiB,UAAU,MAAM,EAAE;IAChD,SAAS,aAAa,CAAC,QAAQ;IAC/B;QACI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;;QAQ5B,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;;;;;;QAMxB,IAAI,CAAC,eAAe,GAAG,CAAC,CAAC,CAAC;;;;;;;QAO1B,IAAI,CAAC,eAAe,GAAG,EAAE,CAAC;;;;;;;QAO1B,IAAI,CAAC,qBAAqB,GAAG,KAAK,CAAC;;;;;;;QAOnC,IAAI,CAAC,cAAc,GAAG,IAAI,WAAW,EAAE,CAAC;KAC3C;;IAED,KAAK,MAAM,GAAG,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC;IAC/C,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IACtE,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;;;;IAKpD,aAAa,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IAC9D;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;;QAEpC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;;QAE7C,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC;;QAEvD,IAAI,WAAW,GAAG,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC,uBAAuB,CAAC,CAAC;;QAE9D,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,WAAW,CAAC;;QAExC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,CAAC,EAAE;QACpC;YACI,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;SAChC;;;QAGD,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;;QAExB,IAAI,cAAc,GAAG,IAAI,SAAS,CAAC,EAAE,CAAC,aAAa,EAAE,CAAC,CAAC;;QAEvD,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,UAAU,EAAE,cAAc,CAAC,OAAO,CAAC,CAAC;QACtD,EAAE,CAAC,UAAU,CAAC,EAAE,CAAC,UAAU,EAAE,CAAC,EAAE,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,aAAa,EAAE,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;;QAEhG,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,UAAU,CAAC,GAAG,cAAc,CAAC;QACnD,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,gBAAgB,CAAC,GAAG,IAAI,SAAS,CAAC,EAAE,CAAC,aAAa,EAAE,CAAC,CAAC;;QAE5E,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,gBAAgB,EAAE,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,gBAAgB,CAAC,CAAC,OAAO,CAAC,CAAC;;QAErF,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC,EAAE,GAAG,EAAE;QAChC;YACI,EAAE,CAAC,UAAU,CAAC,EAAE,CAAC,2BAA2B,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;SAC7G;;QAED,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC,gBAAgB,EAAE,EAAE,CAAC,kBAAkB,EAAE,EAAE,CAAC,MAAM,CAAC,CAAC;QACxE,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC,gBAAgB,EAAE,EAAE,CAAC,kBAAkB,EAAE,EAAE,CAAC,MAAM,CAAC,CAAC;;QAExE,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE;QACxD;YACI,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;SACxB;KACJ,CAAC;;;;;;;;;;IAUF,aAAa,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,OAAO,EAAE,QAAQ;IAC/D;QACI,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,CAAC,CAAC;;QAExC,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,IAAI,OAAO;QACX;YACI,OAAO,GAAG,OAAO,CAAC,WAAW,IAAI,OAAO,CAAC;;YAEzC,IAAI,OAAO,CAAC,KAAK;YACjB;gBACI,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,KAAK,CAAC;;gBAEhD,IAAI,SAAS,GAAG,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;;gBAEnF,IAAI,IAAI,CAAC,eAAe,KAAK,QAAQ;gBACrC;oBACI,IAAI,CAAC,eAAe,GAAG,QAAQ,CAAC;oBAChC,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC,QAAQ,GAAG,QAAQ,CAAC,CAAC;iBAC5C;;gBAED,IAAI,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,KAAK,OAAO;gBAC5C;oBACI,EAAE,CAAC,WAAW,CAAC,OAAO,CAAC,MAAM,EAAE,SAAS,CAAC,OAAO,CAAC,CAAC;iBACrD;;gBAED,IAAI,SAAS,CAAC,OAAO,KAAK,OAAO,CAAC,OAAO;gBACzC;oBACI,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;iBAC/B;;gBAED,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,GAAG,OAAO,CAAC;aAC1C;SACJ;;QAED;YACI,IAAI,IAAI,CAAC,eAAe,KAAK,QAAQ;YACrC;gBACI,IAAI,CAAC,eAAe,GAAG,QAAQ,CAAC;gBAChC,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC,QAAQ,GAAG,QAAQ,CAAC,CAAC;aAC5C;;YAED,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,UAAU,EAAE,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,CAAC;YACzE,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC;SACvC;KACJ,CAAC;;;;;;;IAOF,aAAa,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC9C;QACI,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC;QAClC,IAAI,CAAC,eAAe,GAAG,CAAC,CAAC,CAAC;;QAE1B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE;QAClD;YACI,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC;SAC/C;KACJ,CAAC;;;;;;IAMF,aAAa,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,OAAO;IACzD;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;QAChB,IAAI,aAAa,GAAG,GAAG,CAAC,aAAa,CAAC;;QAEtC,IAAI,IAAI,CAAC,qBAAqB;QAC9B;YACI,IAAI,CAAC,qBAAqB,GAAG,KAAK,CAAC;;;YAGnC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE;YAC7C;gBACI,IAAI,aAAa,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,cAAc;gBAC5C;oBACI,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;iBACtB;aACJ;SACJ;;QAED,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE;QACnD;YACI,IAAI,aAAa,CAAC,GAAG,CAAC,KAAK,OAAO;YAClC;gBACI,IAAI,IAAI,CAAC,eAAe,KAAK,GAAG;gBAChC;oBACI,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC,QAAQ,GAAG,GAAG,CAAC,CAAC;oBACpC,IAAI,CAAC,eAAe,GAAG,GAAG,CAAC;iBAC9B;;gBAED,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,UAAU,EAAE,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC;gBAC1E,aAAa,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;aAC7B;SACJ;KACJ,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,OAAO;IACnE;QACI,IAAI,SAAS,GAAG,IAAI,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,aAAa,EAAE,CAAC,CAAC;;;QAGvD,SAAS,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC;;QAEvB,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC;;QAElD,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACnC,OAAO,CAAC,EAAE,CAAC,SAAS,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC;;QAEjD,OAAO,SAAS,CAAC;KACpB,CAAC;;IAEF,aAAa,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,OAAO,EAAE,SAAS;IACtF;QACI,SAAS,CAAC,cAAc,GAAG,OAAO,CAAC,MAAM,CAAC;QAC1C,SAAS,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;QAC9B,IAAI,IAAI,CAAC,YAAY,KAAK,CAAC;QAC3B;YACI,OAAO;SACV;QACD,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;;QAE1B,IAAI,OAAO,CAAC,IAAI,KAAK,EAAE,CAAC,KAAK;eACtB,OAAO,CAAC,MAAM,KAAK,EAAE,CAAC,IAAI;QACjC;YACI,SAAS,CAAC,cAAc,GAAG,EAAE,CAAC,OAAO,CAAC;SACzC;;;QAGD,IAAI,OAAO,CAAC,IAAI,KAAK,KAAK,CAAC,UAAU;QACrC;YACI,SAAS,CAAC,IAAI,GAAG,EAAE,CAAC,UAAU,CAAC;SAClC;QACD,IAAI,SAAS,CAAC,IAAI,KAAK,EAAE,CAAC,UAAU;eAC7B,OAAO,CAAC,MAAM,KAAK,EAAE,CAAC,IAAI;QACjC;YACI,SAAS,CAAC,cAAc,GAAG,EAAE,CAAC,OAAO,CAAC;SACzC;KACJ,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,OAAO;IACvE;QACI,IAAI,SAAS,GAAG,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;QAEtD,IAAI,CAAC,SAAS;QACd;YACI,OAAO;SACV;;QAED,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;;QAE7B,IAAI,CAAC,eAAe,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;;QAEzC,IAAI,OAAO,CAAC,QAAQ,IAAI,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC,QAAQ,EAAE,OAAO,EAAE,SAAS,CAAC;QAC7E,CAAC;;QAED;;YAEI,IAAI,KAAK,GAAG,OAAO,CAAC,SAAS,CAAC;YAC9B,IAAI,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC;YAChC,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;;YAErB,IAAI,SAAS,CAAC,KAAK,KAAK,KAAK;mBACtB,SAAS,CAAC,MAAM,KAAK,MAAM;mBAC3B,SAAS,CAAC,OAAO,GAAG,CAAC;YAC5B;gBACI,SAAS,CAAC,KAAK,GAAG,KAAK,CAAC;gBACxB,SAAS,CAAC,MAAM,GAAG,MAAM,CAAC;;gBAE1B,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC;oBAC3B,SAAS,CAAC,cAAc;oBACxB,KAAK;oBACL,MAAM;oBACN,CAAC;oBACD,OAAO,CAAC,MAAM;oBACd,SAAS,CAAC,IAAI;oBACd,IAAI,CAAC,CAAC;aACb;SACJ;;;QAGD,IAAI,OAAO,CAAC,YAAY,KAAK,SAAS,CAAC,YAAY;QACnD;YACI,IAAI,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;SACpC;QACD,SAAS,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;KACvC,CAAC;;;;;;;;;IASF,aAAa,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,OAAO,EAAE,UAAU;IACrF;QACI,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,EAAE,GAAG,GAAG,CAAC,EAAE,CAAC;;QAEhB,OAAO,GAAG,OAAO,CAAC,WAAW,IAAI,OAAO,CAAC;;QAEzC,IAAI,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC;QACzC;YACI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;;YAErB,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,OAAO,CAAC,CAAC;YAChE,OAAO,CAAC,GAAG,CAAC,SAAS,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC;;YAElD,OAAO,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;YAE7C,IAAI,CAAC,UAAU;YACf;gBACI,IAAI,CAAC,GAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;;gBAE9C,IAAI,CAAC,KAAK,CAAC,CAAC;gBACZ;oBACI,WAAW,CAAC,IAAI,CAAC,eAAe,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;iBAC3C;aACJ;SACJ;KACJ,CAAC;;;;;;;;IAQF,aAAa,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,OAAO;IACjF;QACI,IAAI,SAAS,GAAG,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;QAEtD,IAAI,CAAC,SAAS;QACd;YACI,OAAO;SACV;;QAED,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,YAAY,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,YAAY;QAC9F;YACI,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;YACrB,SAAS,CAAC,QAAQ,GAAG,UAAU,CAAC,KAAK,CAAC;SACzC;;QAED;YACI,SAAS,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM,IAAI,CAAC,CAAC;YACvC,SAAS,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;SACzC;;QAED,IAAI,OAAO,CAAC,QAAQ,IAAI,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,EAAE,SAAS,CAAC;QACjF,CAAC;;QAED;YACI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;SACrC;;QAED,SAAS,CAAC,YAAY,GAAG,OAAO,CAAC,YAAY,CAAC;KACjD,CAAC;;;;;;;;;IASF,aAAa,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,OAAO,EAAE,SAAS;IACxE;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;;QAEjB,IAAI,SAAS,CAAC,MAAM;QACpB;YACI,EAAE,CAAC,cAAc,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;SACrC;;QAED,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,cAAc,EAAE,SAAS,CAAC,QAAQ,CAAC,CAAC;QACxE,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,cAAc,EAAE,SAAS,CAAC,QAAQ,CAAC,CAAC;;QAExE,IAAI,SAAS,CAAC,MAAM;QACpB;;YAEI,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,kBAAkB,EAAE,OAAO,CAAC,SAAS,GAAG,EAAE,CAAC,oBAAoB,GAAG,EAAE,CAAC,sBAAsB,CAAC,CAAC;;;YAGjI,IAAI,cAAc,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,oBAAoB,CAAC;;YAE3E,IAAI,cAAc,IAAI,OAAO,CAAC,gBAAgB,GAAG,CAAC,IAAI,OAAO,CAAC,SAAS,KAAK,WAAW,CAAC,MAAM;YAC9F;gBACI,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,gBAAgB,EAAE,EAAE,CAAC,YAAY,CAAC,cAAc,CAAC,8BAA8B,CAAC,CAAC,CAAC;;gBAE/G,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,MAAM,EAAE,cAAc,CAAC,0BAA0B,EAAE,KAAK,CAAC,CAAC;aACtF;SACJ;;QAED;YACI,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,kBAAkB,EAAE,OAAO,CAAC,SAAS,GAAG,EAAE,CAAC,MAAM,GAAG,EAAE,CAAC,OAAO,CAAC,CAAC;SACvG;;QAED,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,kBAAkB,EAAE,OAAO,CAAC,SAAS,GAAG,EAAE,CAAC,MAAM,GAAG,EAAE,CAAC,OAAO,CAAC,CAAC;KACvG,CAAC;;IAEF,OAAO,aAAa,CAAC;CACxB,CAAC,MAAM,CAAC,CAAC,CAAC;AACX,AAqBA;AACA,IAAI,UAAU,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;;;AAW9B,IAAI,gBAAgB,iBAAiB,UAAU,YAAY,EAAE;IACzD,SAAS,gBAAgB,CAAC,MAAM,EAAE,OAAO;IACzC;QACI,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;QAGxB,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,CAAC,cAAc,EAAE,OAAO,CAAC,CAAC;;;QAG9D,IAAI,OAAO,CAAC,WAAW;QACvB;YACI,QAAQ,CAAC,YAAY,GAAG,OAAO,CAAC,WAAW,CAAC;YAC5C,WAAW,CAAC,OAAO,EAAE,kFAAkF,EAAE,CAAC,CAAC,CAAC;SAC/G;;;;;;;;QAQD,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;;;;;;;;QASvB,IAAI,CAAC,IAAI,GAAG,aAAa,CAAC,OAAO,CAAC;;;;;;;;;QASlC,IAAI,CAAC,MAAM,GAAG,IAAI,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;QAOjE,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,IAAI,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;;;;;;;QAQ7D,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU,IAAI,QAAQ,CAAC,UAAU,CAAC;;;;;;;QAO5D,IAAI,CAAC,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC;;;;;;;QAOvC,IAAI,CAAC,WAAW,GAAG,OAAO,CAAC,WAAW,IAAI,OAAO,CAAC,UAAU,IAAI,KAAK,CAAC;;;;;;;;;QAStE,IAAI,CAAC,qBAAqB,GAAG,OAAO,CAAC,qBAAqB,CAAC;;;;;;;;;;;;QAY3D,IAAI,CAAC,iBAAiB,GAAG,OAAO,CAAC,iBAAiB,CAAC;;;;;;;;QAQnD,IAAI,CAAC,gBAAgB,GAAG,QAAQ,CAAC;;;;;;;;QAQjC,IAAI,CAAC,oBAAoB,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;;;;;;;QAQzC,IAAI,CAAC,sBAAsB,GAAG,SAAS,CAAC;;QAExC,IAAI,CAAC,eAAe,GAAG,OAAO,CAAC,eAAe,IAAI,IAAI,CAAC,gBAAgB,CAAC;;;;;;;;QAQxE,IAAI,CAAC,wBAAwB,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;;QAQhD,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC,wBAAwB,CAAC;;;;;;;QAOzD,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;KACrB;;IAED,KAAK,YAAY,GAAG,gBAAgB,CAAC,SAAS,GAAG,YAAY,CAAC;IAC9D,gBAAgB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,YAAY,IAAI,YAAY,CAAC,SAAS,EAAE,CAAC;IACrF,gBAAgB,CAAC,SAAS,CAAC,WAAW,GAAG,gBAAgB,CAAC;;IAE1D,IAAI,kBAAkB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,eAAe,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;IAQlI,gBAAgB,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,SAAS;IACxE;QACI,KAAK,IAAI,CAAC,IAAI,SAAS;QACvB;YACI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;SAC9C;KACJ,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC;KAC1B,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC;KAC3B,CAAC;;;;;;;;;IASF,gBAAgB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,WAAW,EAAE,YAAY;IAC9E;QACI,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,WAAW,CAAC;QAChC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,YAAY,CAAC;;QAElC,IAAI,CAAC,IAAI,CAAC,KAAK,GAAG,WAAW,GAAG,IAAI,CAAC,UAAU,CAAC;QAChD,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,YAAY,GAAG,IAAI,CAAC,UAAU,CAAC;;QAElD,IAAI,IAAI,CAAC,WAAW;QACpB;YACI,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,WAAW,GAAG,IAAI,CAAC;YAC3C,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,YAAY,GAAG,IAAI,CAAC;SAChD;KACJ,CAAC;;;;;;;;;;;;;IAaF,gBAAgB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,aAAa,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM;IACnH;QACI,MAAM,GAAG,MAAM,IAAI,aAAa,CAAC,cAAc,EAAE,CAAC;;;QAGlD,IAAI,MAAM,CAAC,KAAK,KAAK,CAAC,EAAE,EAAE,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;QAC7C,IAAI,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,EAAE,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE;;QAE/C,IAAI,aAAa,GAAG,aAAa,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,GAAG,CAAC,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC;;QAErG,UAAU,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC;QAC1B,UAAU,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC;;QAE1B,IAAI,CAAC,MAAM,CAAC,aAAa,EAAE,aAAa,EAAE,KAAK,EAAE,UAAU,EAAE,CAAC,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;;QAErF,OAAO,aAAa,CAAC;KACxB,CAAC;;;;;;;IAOF,gBAAgB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,UAAU;IACjE;QACI,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,OAAO;QAC1B;YACI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;YAC1B,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;SAC1B;;QAED,IAAI,UAAU,IAAI,IAAI,CAAC,IAAI,CAAC,UAAU;QACtC;YACI,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SAC/C;;QAED,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;QAEpB,IAAI,CAAC,IAAI,GAAG,aAAa,CAAC,OAAO,CAAC;;QAElC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;QAEjB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;QAEnB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;QAEpB,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;;QAEzB,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;;QAEzB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;QAEvB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;QAEpB,IAAI,CAAC,qBAAqB,GAAG,KAAK,CAAC;QACnC,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;;QAE/B,IAAI,CAAC,gBAAgB,GAAG,CAAC,CAAC;QAC1B,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC;QACjC,IAAI,CAAC,sBAAsB,GAAG,IAAI,CAAC;;QAEnC,IAAI,CAAC,wBAAwB,GAAG,IAAI,CAAC;QACrC,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC;KACnC,CAAC;;;;;;;IAOF,kBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG;IACzC;QACI,OAAO,IAAI,CAAC,gBAAgB,CAAC;KAChC,CAAC;;IAEF,kBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG,UAAU,KAAK;IACxD;QACI,IAAI,CAAC,gBAAgB,GAAG,KAAK,CAAC;QAC9B,IAAI,CAAC,sBAAsB,GAAG,UAAU,CAAC,KAAK,CAAC,CAAC;QAChD,OAAO,CAAC,KAAK,EAAE,IAAI,CAAC,oBAAoB,CAAC,CAAC;KAC7C,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,gBAAgB,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAE1E,OAAO,gBAAgB,CAAC;CAC3B,CAACN,aAAY,CAAC,CAAC,CAAC;;;;;;;;;;;;;;AAcjB,IAAI,QAAQ,iBAAiB,UAAU,gBAAgB,EAAE;IACrD,SAAS,QAAQ,CAAC,OAAO;IACzB;QACI,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,EAAE,CAAC;;QAEvC,gBAAgB,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;;;QAG9C,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;;;;;;;;QAQvB,IAAI,CAAC,IAAI,GAAG,aAAa,CAAC,KAAK,CAAC;;;;;;;;QAQhC,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;;QAEf,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;QAoBrB,IAAI,CAAC,OAAO,GAAG;YACX,OAAO,EAAE,IAAI,MAAM,CAAC,SAAS,CAAC;YAC9B,aAAa,EAAE,IAAI,MAAM,CAAC,eAAe,EAAE,CAAC,CAAC;YAC7C,KAAK,EAAE,IAAI,MAAM,CAAC,OAAO,CAAC;YAC1B,MAAM,EAAE,IAAI,MAAM,CAAC,QAAQ,CAAC;YAC5B,UAAU,EAAE,IAAI,MAAM,CAAC,YAAY,CAAC;YACpC,SAAS,EAAE,IAAI,MAAM,CAAC,WAAW,CAAC;YAClC,MAAM,EAAE,IAAI,MAAM,CAAC,QAAQ,EAAE,CAAC,CAAC;SAClC,CAAC;;;;;;QAMF,IAAI,CAAC,cAAc,GAAG,IAAI,YAAY,CAAC;YACnC,gBAAgB,EAAE,IAAI,MAAM,EAAE;SACjC,EAAE,IAAI,CAAC,CAAC;;;;;;;;QAQT,IAAI,CAAC,SAAS,CAAC,UAAU,EAAE,MAAM,CAAC;;;;;;;aAO7B,SAAS,CAAC,aAAa,EAAE,SAAS,CAAC;;;;;;;aAOnC,SAAS,CAAC,WAAW,EAAE,OAAO,CAAC;;;;;;;aAO/B,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC;;;;;;;aAOjC,SAAS,CAAC,aAAa,EAAE,SAAS,CAAC;;;;;;;aAOnC,SAAS,CAAC,cAAc,EAAE,UAAU,CAAC;;;;;;;aAOrC,SAAS,CAAC,iBAAiB,EAAE,aAAa,CAAC;;;;;;;aAO3C,SAAS,CAAC,aAAa,EAAE,SAAS,CAAC;;;;;;;aAOnC,SAAS,CAAC,gBAAgB,EAAE,YAAY,CAAC;;;;;;;aAOzC,SAAS,CAAC,eAAe,EAAE,WAAW,CAAC;;;;;;;aAOvC,SAAS,CAAC,YAAY,EAAE,QAAQ,CAAC;;;;;;;aAOjC,SAAS,CAAC,mBAAmB,EAAE,eAAe,CAAC;;;;;;;;aAQ/C,SAAS,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;;QAErC,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;;;;;QAKrC,IAAI,OAAO,CAAC,OAAO;QACnB;YACI,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;SACjD;;QAED;YACI,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC;gBACzB,KAAK,EAAE,IAAI,CAAC,WAAW;gBACvB,SAAS,EAAE,OAAO,CAAC,SAAS;gBAC5B,kBAAkB,EAAE,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC,WAAW,KAAK,eAAe;gBAC5E,OAAO,EAAE,IAAI;gBACb,qBAAqB,EAAE,OAAO,CAAC,qBAAqB;gBACpD,eAAe,EAAE,IAAI,CAAC,OAAO,CAAC,eAAe;aAChD,CAAC,CAAC;SACN;;;;;;;;QAQD,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;;QAE9B,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,KAAK,CAAC,GAAG,SAAS,GAAG,SAAS,CAAC,CAAC;;QAElE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;KACxD;;IAED,KAAK,gBAAgB,GAAG,QAAQ,CAAC,SAAS,GAAG,gBAAgB,CAAC;IAC9D,QAAQ,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,gBAAgB,IAAI,gBAAgB,CAAC,SAAS,EAAE,CAAC;IACrF,QAAQ,CAAC,SAAS,CAAC,WAAW,GAAG,QAAQ,CAAC;;;;;;;;;;;IAW1C,QAAQ,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,OAAO;IAC1C;QACI,IAAI,gBAAgB,EAAE;QACtB;YACI,OAAO,IAAI,QAAQ,CAAC,OAAO,CAAC,CAAC;SAChC;;QAED,MAAM,IAAI,KAAK,CAAC,wFAAwF,CAAC,CAAC;KAC7G,CAAC;;IAEF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,QAAQ,EAAE,IAAI;IACjE;QACI,IAAI,CAAC,IAAI;QACT;YACI,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;SACxB;;QAED,IAAI,MAAM,GAAG,IAAI,QAAQ,CAAC,IAAI,CAAC,CAAC;;QAEhC,IAAI,IAAI,CAAC,IAAI,CAAC;QACd;YACI,MAAM,IAAI,KAAK,EAAE,qBAAqB,GAAG,IAAI,GAAG,sBAAsB,EAAE,CAAC;SAC5E;;QAED,IAAI,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC;;QAEpB,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,OAAO;QAC1B;YACI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;SAC/B;;;;;;;;;;;;;;;;;;;;;QAqBD,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;IAWF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,aAAa,EAAE,aAAa,EAAE,KAAK,EAAE,SAAS,EAAE,mBAAmB;IAChH;;QAEI,IAAI,CAAC,iBAAiB,GAAG,CAAC,aAAa,CAAC;;QAExC,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,EAAE,CAAC;QAC7B,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;;QAGvB,IAAI,CAAC,UAAU,CAAC,SAAS,GAAG,SAAS,CAAC;;;QAGtC,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM;QACvB;YACI,OAAO;SACV;;QAED,IAAI,CAAC,aAAa;QAClB;YACI,IAAI,CAAC,mBAAmB,GAAG,aAAa,CAAC;SAC5C;;QAED,IAAI,CAAC,mBAAmB;QACxB;;YAEI,IAAI,WAAW,GAAG,aAAa,CAAC,MAAM,CAAC;;YAEvC,aAAa,CAAC,MAAM,GAAG,IAAI,CAAC,wBAAwB,CAAC;YACrD,aAAa,CAAC,eAAe,EAAE,CAAC;YAChC,aAAa,CAAC,MAAM,GAAG,WAAW,CAAC;;SAEtC;;QAED,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;QACvC,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,KAAK,EAAE,CAAC;;QAEnC,IAAI,KAAK,KAAK,SAAS,GAAG,KAAK,GAAG,IAAI,CAAC,iBAAiB;QACxD;YACI,IAAI,CAAC,aAAa,CAAC,KAAK,EAAE,CAAC;SAC9B;;QAED,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;;QAG3B,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,KAAK,EAAE,CAAC;;QAEnC,IAAI,aAAa;QACjB;YACI,aAAa,CAAC,WAAW,CAAC,MAAM,EAAE,CAAC;SACtC;;QAED,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC;;;QAG9B,IAAI,CAAC,UAAU,CAAC,SAAS,GAAG,IAAI,CAAC;;QAEjC,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;KAC3B,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,WAAW,EAAE,YAAY;IACtE;QACI,gBAAgB,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,WAAW,EAAE,YAAY,CAAC,CAAC;;QAExE,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,WAAW,EAAE,YAAY,CAAC,CAAC;KACtD,CAAC;;;;;;;IAOF,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACzC;QACI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC;;QAEzB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;IAKF,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACzC;QACI,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC;QACxB,IAAI,CAAC,WAAW,CAAC,KAAK,EAAE,CAAC;KAC5B,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,UAAU;IACzD;QACI,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC;;QAE3B,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,OAAO;QAC1B;YACI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;SAC7B;;;QAGD,gBAAgB,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;;;QAG1D,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;KAClB,CAAC;;;;;;;;;;;;;;;;;;;;;;IAsBF,QAAQ,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,UAAU,EAAE,IAAI;IACnE;QACI,QAAQ,CAAC,SAAS,GAAG,QAAQ,CAAC,SAAS,IAAI,EAAE,CAAC;QAC9C,QAAQ,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;KACzC,CAAC;;IAEF,OAAO,QAAQ,CAAC;CACnB,CAAC,gBAAgB,CAAC,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiCrB,SAAS,kBAAkB,CAAC,OAAO;AACnC;IACI,OAAO,QAAQ,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;CACnC;AACD,AAEA;AACA,IAAI,aAAa,GAAG,8jBAA8jB,CAAC;AACnlB,AAwBA;;;;;;;;AAQA,IAAI,aAAa,GAAG,SAAS,aAAa;AAC1C;IACI,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;IACnB,IAAI,CAAC,GAAG,GAAG,EAAE,CAAC;IACd,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;IACf,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;IACtB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;IACf,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;IACd,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;CACjB,CAAC;;;;;;;;;AASF,IAAI,cAAc,GAAG,SAAS,cAAc,CAAC,IAAI;AACjD;;;;;;;IAOI,IAAI,CAAC,aAAa,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,CAAC;;;;;;;IAO3C,IAAI,CAAC,UAAU,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;;;;;;;IAOtD,IAAI,CAAC,WAAW,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;CAC3D,CAAC;;AAEF,IAAIO,sBAAoB,GAAG,EAAE,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;AAOzMA,sBAAoB,CAAC,QAAQ,CAAC,GAAG,GAAG;AACpC;IACI,IAAI,CAAC,IAAI,CAAC,SAAS;IACnB;QACI,IAAI,CAAC,SAAS,GAAG,IAAI,SAAS,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KACtD;;IAED,OAAO,IAAI,CAAC,SAAS,CAAC;CACzB,CAAC;;;;;;;AAOFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG;AACrC;IACI,IAAI,CAAC,IAAI,CAAC,UAAU;IACpB;QACI,IAAI,CAAC,UAAU,GAAG,IAAI,UAAU,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KACxD;;IAED,OAAO,IAAI,CAAC,UAAU,CAAC;CAC1B,CAAC;;;;;;;AAOFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG;AACrC;IACI,IAAI,CAAC,IAAI,CAAC,UAAU;IACpB;QACI,IAAI,CAAC,UAAU,GAAG,IAAI,UAAU,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KACxD;;IAED,OAAO,IAAI,CAAC,UAAU,CAAC;CAC1B,CAAC;;;;;;;AAOFA,sBAAoB,CAAC,UAAU,CAAC,GAAG,GAAG;AACtC;IACI,IAAI,CAAC,IAAI,CAAC,WAAW;IACrB;QACI,IAAI,CAAC,WAAW,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KAC1D;;IAED,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;;;;;;;AAOFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG;AACrC;IACI,IAAI,CAAC,IAAI,CAAC,UAAU;IACpB;QACI,IAAI,CAAC,UAAU,GAAG,IAAI,UAAU,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KACxD;;IAED,OAAO,IAAI,CAAC,UAAU,CAAC;CAC1B,CAAC;;;;;;;;;AASF,cAAc,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,IAAI;AACnD;IACI,OAAO,IAAI,EAAE,IAAI,GAAG,MAAM,EAAE,CAAC;CAChC,CAAC;;;;;;AAMF,cAAc,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AACnD;IACI,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;IACxB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;CAC3B,CAAC;;AAEF,cAAc,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,IAAI;AAC7C;IACI,QAAQ,IAAI;;QAER,KAAK,MAAM,CAAC;QACZ,KAAK,OAAO;YACR,OAAO,CAAC,CAAC;QACb,KAAK,OAAO,CAAC;QACb,KAAK,QAAQ;YACT,OAAO,CAAC,CAAC;QACb,KAAK,OAAO,CAAC;QACb,KAAK,QAAQ,CAAC;QACd,KAAK,SAAS;YACV,OAAO,CAAC,CAAC;QACb;YACI,MAAM,IAAI,KAAK,EAAE,IAAI,GAAG,0BAA0B,EAAE,CAAC;KAC5D;CACJ,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,cAAc,CAAC,SAAS,EAAEA,sBAAoB,EAAE,CAAC;;;;;;;;;;;;;;;AAe1E,IAAI,qBAAqB,iBAAiB,UAAU,cAAc,EAAE;IAChE,SAAS,qBAAqB,CAAC,QAAQ;IACvC;QACI,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;;;;;;;;;;QAgBpC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;;;;;;;;;;QAU5B,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;;;;;;;;;;;;;;;;QAgB1B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;;;;;;;QAQvB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,EAAE,CAAC;;;;;;;;;QAS3B,IAAI,CAAC,IAAI,GAAG,IAAI,GAAG,CAAC,CAAC;;;;;;;;;QASrB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;;;;;;;;;QAStB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;;;;;;;;QAQrB,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;;;;;;;;;QAS5B,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;;;;;;;;;;;QAWrB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;;;;;;;;;QAepB,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;;;;;;;;;;QAU5B,IAAI,CAAC,uBAAuB,GAAG,CAAC,CAAC;;;;;;;;;;;;;;;QAejC,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;;;;;;;;;;;QAWlB,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;;QAErB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,IAAI,GAAG,CAAC,EAAE,CAAC,EAAE;QACtC;YACI,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,aAAa,EAAE,CAAC;SAC5C;;;;;;;;;;;;;;;QAeD,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;;;;;;;;;;;;;;;QAepB,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;;;;;;;;;;;QAWpB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;;QAEtB,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,WAAW,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;QACtD,QAAQ,CAAC,OAAO,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;KAC5C;;IAED,KAAK,cAAc,GAAG,qBAAqB,CAAC,SAAS,GAAG,cAAc,CAAC;IACvE,qBAAqB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,cAAc,IAAI,cAAc,CAAC,SAAS,EAAE,CAAC;IAC9F,qBAAqB,CAAC,SAAS,CAAC,WAAW,GAAG,qBAAqB,CAAC;;;;;;;;IAQpE,qBAAqB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IACtE;QACI,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;;QAE1B,IAAI,QAAQ,CAAC,UAAU,KAAK,GAAG,CAAC,YAAY;QAC5C;YACI,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;SACzB;;QAED;;YAEI,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,GAAG;gBACxB,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC,uBAAuB,CAAC;gBAC3C,QAAQ,CAAC,mBAAmB,CAAC,CAAC;;;YAGlC,IAAI,CAAC,YAAY,GAAG,4BAA4B;gBAC5C,IAAI,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC;SAC9B;;QAED,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,eAAe,CAAC,cAAc,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;;;;QAItE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,uBAAuB,EAAE,CAAC,EAAE;QACrD;;YAEI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,CAAC,aAAa,GAAG,CAAC;SAC1D;KACJ,CAAC;;;;;;;;IAQF,qBAAqB,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;IAClE;QACI,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;KACrB,CAAC;;;;;;;;;IASF,qBAAqB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,OAAO;IACjE;QACI,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK;QAC3B;YACI,OAAO;SACV;;QAED,IAAI,IAAI,CAAC,YAAY,IAAI,OAAO,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI;QACnE;YACI,IAAI,CAAC,KAAK,EAAE,CAAC;SAChB;;QAED,IAAI,CAAC,YAAY,IAAI,OAAO,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,CAAC;QACnD,IAAI,CAAC,WAAW,IAAI,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC;QAC3C,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC,GAAG,OAAO,CAAC;KACxD,CAAC;;;;;IAKF,qBAAqB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACtD;QACI,IAAI,IAAI,CAAC,YAAY,KAAK,CAAC;QAC3B;YACI,OAAO;SACV;;QAED,IAAI,eAAe,GAAG,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QACjE,IAAI,WAAW,GAAG,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QACxD,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;;QAE1B,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,QAAQ,GAAG,GAAG,CAAC,iBAAiB,CAAC;QACrC,IAAI,SAAS,GAAG,GAAG,CAAC,UAAU,CAAC;QAC/B,IAAI,YAAY,GAAG,GAAG,CAAC,YAAY,CAAC;QACpC,IAAI,gBAAgB,GAAG,GAAG,CAAC,iBAAiB,CAAC;QAC7C,IAAI,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC;;QAEhC,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,KAAK,CAAC;;QAE1C,IAAI,KAAK,GAAG,CAAC,CAAC;QACd,IAAI,WAAW,GAAG,CAAC,CAAC;;QAEpB,IAAI,WAAW,CAAC;QAChB,IAAI,cAAc,CAAC;QACnB,IAAI,YAAY,GAAG,CAAC,CAAC;;QAErB,IAAI,YAAY,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;QAChC,IAAI,UAAU,GAAG,CAAC,CAAC;;QAEnB,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;;QAEnB,YAAY,CAAC,YAAY,GAAG,CAAC,CAAC;QAC9B,YAAY,CAAC,KAAK,GAAG,CAAC,CAAC;QACvB,YAAY,CAAC,KAAK,GAAG,SAAS,CAAC;;QAE/B,IAAI,IAAI,GAAG,EAAE,WAAW,CAAC,YAAY,CAAC;QACtC,IAAI,CAAC,CAAC;;QAEN,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,WAAW,EAAE,EAAE,CAAC;QACrC;YACI,IAAI,MAAM,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;;YAEzB,QAAQ,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;YACnB,WAAW,GAAG,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC;;YAE1C,IAAI,eAAe,GAAG,oBAAoB;gBACtC,WAAW,CAAC,gBAAgB,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;;YAE5D,IAAI,SAAS,KAAK,eAAe;YACjC;gBACI,SAAS,GAAG,eAAe,CAAC;;;gBAG5B,cAAc,GAAG,IAAI,CAAC;gBACtB,YAAY,GAAG,YAAY,CAAC;gBAC5B,IAAI,EAAE,CAAC;aACV;;YAED,IAAI,cAAc,KAAK,WAAW;YAClC;gBACI,cAAc,GAAG,WAAW,CAAC;;gBAE7B,IAAI,WAAW,CAAC,aAAa,KAAK,IAAI;gBACtC;oBACI,IAAI,YAAY,KAAK,YAAY;oBACjC;wBACI,IAAI,EAAE,CAAC;;wBAEP,YAAY,GAAG,CAAC,CAAC;;wBAEjB,YAAY,CAAC,IAAI,GAAG,WAAW,GAAG,YAAY,CAAC,KAAK,CAAC;;wBAErD,YAAY,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC,CAAC;wBACvC,YAAY,CAAC,YAAY,GAAG,CAAC,CAAC;wBAC9B,YAAY,CAAC,KAAK,GAAG,SAAS,CAAC;wBAC/B,YAAY,CAAC,KAAK,GAAG,WAAW,CAAC;qBACpC;;oBAED,WAAW,CAAC,OAAO,GAAG,KAAK,CAAC;oBAC5B,WAAW,CAAC,aAAa,GAAG,IAAI,CAAC;oBACjC,WAAW,CAAC,GAAG,GAAG,YAAY,CAAC;;oBAE/B,YAAY,CAAC,QAAQ,CAAC,YAAY,CAAC,YAAY,EAAE,CAAC,GAAG,WAAW,CAAC;oBACjE,YAAY,EAAE,CAAC;iBAClB;aACJ;;YAED,IAAI,CAAC,uBAAuB,CAAC,MAAM,EAAE,eAAe;gBAChD,WAAW,EAAE,KAAK,EAAE,WAAW,CAAC,CAAC;;;YAGrC,KAAK,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,IAAI,UAAU,CAAC;YACrD,WAAW,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC;SACxC;;QAED,WAAW,CAAC,YAAY,GAAG,IAAI,CAAC;QAChC,YAAY,CAAC,IAAI,GAAG,WAAW,GAAG,YAAY,CAAC,KAAK,CAAC;;QAErD,IAAI,CAAC,QAAQ,CAAC,sBAAsB;QACpC;;YAEI,IAAI,IAAI,CAAC,uBAAuB,IAAI,IAAI,CAAC,QAAQ;YACjD;gBACI,IAAI,CAAC,uBAAuB,EAAE,CAAC;gBAC/B,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,KAAK,IAAI,CAAC,aAAa,GAAG,CAAC;aAChE;;YAED,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC;YACjF,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC;;YAEpE,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;YAC7D,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,aAAa,EAAE,CAAC;YACvC,IAAI,CAAC,QAAQ,EAAE,CAAC;SACnB;;QAED;;YAEI,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC;YACjF,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC;;YAEpE,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,aAAa,EAAE,CAAC;SAC1C;;QAED,IAAI,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC;QAC1C,IAAI,WAAW,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC;;;QAGtC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,EAAE,CAAC,EAAE;QAC/B;YACI,IAAI,KAAK,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;YACzB,IAAI,iBAAiB,GAAG,KAAK,CAAC,YAAY,CAAC;;YAE3C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,iBAAiB,EAAE,CAAC,EAAE;YAC1C;gBACI,aAAa,CAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;gBACzC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;aAC5B;;YAED,WAAW,CAAC,YAAY,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YACtC,EAAE,CAAC,YAAY,CAAC,KAAK,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,cAAc,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC;SAC/E;;;QAGD,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;QACrB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;QACtB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;KACxB,CAAC;;;;;IAKF,qBAAqB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACtD;QACI,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;;QAEpC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;;QAExC,IAAI,QAAQ,CAAC,sBAAsB;QACnC;;YAEI,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;SACtE;KACJ,CAAC;;;;;IAKF,qBAAqB,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;IACpD;QACI,IAAI,CAAC,KAAK,EAAE,CAAC;KAChB,CAAC;;;;;IAKF,qBAAqB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAC1D;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,uBAAuB,EAAE,CAAC,EAAE;QACrD;YACI,IAAI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;YAC7B;gBACI,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;aACvC;SACJ;;QAED,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,WAAW,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;;QAEvD,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;QACtB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;QACtB,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;QAC9B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;QAEvB,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC;YACvB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;SACvB;;QAED,cAAc,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KAC/C,CAAC;;;;;;;;;;IAUF,qBAAqB,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,IAAI;IACtF;;QAEI,IAAI,SAAS,GAAG,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC;QAC9C,IAAI,gBAAgB,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC;QACvC,IAAI,WAAW,GAAG,SAAS,GAAG,CAAC,CAAC;;QAEhC,IAAI,IAAI,CAAC,SAAS,CAAC,MAAM,IAAI,gBAAgB;QAC7C;YACI,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,gBAAgB,GAAG,CAAC,CAAC;SAChD;;QAED,IAAI,MAAM,GAAG,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC;;QAEzC,IAAI,CAAC,MAAM;QACX;YACI,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,GAAG,MAAM,GAAG,IAAI,cAAc,CAAC,WAAW,GAAG,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;SAChG;;QAED,OAAO,MAAM,CAAC;KACjB,CAAC;;;;;;;;;;;IAWF,qBAAqB,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,IAAI;IAC9E;;QAEI,IAAI,SAAS,GAAG,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,CAAC;QAC/C,IAAI,gBAAgB,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC;QACvC,IAAI,WAAW,GAAG,SAAS,GAAG,EAAE,CAAC;;QAEjC,IAAI,IAAI,CAAC,SAAS,CAAC,MAAM,IAAI,gBAAgB;QAC7C;YACI,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,gBAAgB,GAAG,CAAC,CAAC;SAChD;;QAED,IAAI,MAAM,GAAG,IAAI,CAAC,SAAS,CAAC,gBAAgB,CAAC,CAAC;;QAE9C,IAAI,CAAC,MAAM;QACX;YACI,IAAI,CAAC,SAAS,CAAC,gBAAgB,CAAC,GAAG,MAAM,GAAG,IAAI,WAAW,CAAC,WAAW,CAAC,CAAC;SAC5E;;QAED,OAAO,MAAM,CAAC;KACjB,CAAC;;;;;;;;;;;;;;;;IAgBF,qBAAqB,CAAC,SAAS,CAAC,uBAAuB,GAAG,SAAS,uBAAuB,EAAE,OAAO,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM;IACjJ;QACI,IAAI,UAAU,GAAG,eAAe,CAAC,UAAU,CAAC;QAC5C,IAAI,WAAW,GAAG,eAAe,CAAC,WAAW,CAAC;;QAE9C,IAAI,cAAc,GAAG,MAAM,GAAG,IAAI,CAAC,UAAU,CAAC;QAC9C,IAAI,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC;QACtB,IAAI,QAAQ,GAAG,OAAO,CAAC,OAAO,CAAC;QAC/B,IAAI,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC;QACpC,IAAI,SAAS,GAAG,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,GAAG,CAAC;;QAEjD,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC;QAC9C,IAAI,IAAI,GAAG,CAAC,KAAK,GAAG,GAAG;aAClB,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,gBAAgB;cAC5C,eAAe,CAAC,OAAO,CAAC,QAAQ,EAAE,KAAK,CAAC;cACxC,OAAO,CAAC,QAAQ,IAAI,KAAK,GAAG,GAAG,IAAI,EAAE,CAAC,CAAC;;;QAG7C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC;QAC7C;YACI,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;YACtC,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YAC1C,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;YAC/B,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YACnC,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,CAAC;YAC5B,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,SAAS,CAAC;SACrC;;QAED,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAC,MAAM,EAAE,GAAG,EAAE;QAC9C;YACI,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,cAAc,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC;SAC1D;KACJ,CAAC;;IAEF,OAAO,qBAAqB,CAAC;CAChC,CAAC,cAAc,CAAC,CAAC,CAAC;;;;;;;;AAQnB,IAAI,oBAAoB,GAAG,SAAS,oBAAoB,CAAC,SAAS,EAAE,YAAY;AAChF;;;;;;IAMI,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;;;;;;;IAO3B,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;;IAEjC,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;IACvB,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;;IAE5B,IAAI,YAAY,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,CAAC;IACvC;QACI,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;KAChE;;IAED,IAAI,YAAY,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC;IACzC;QACI,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;KAClE;CACJ,CAAC;;AAEF,oBAAoB,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,WAAW;AACpF;IACI,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,WAAW,CAAC;IACnC;QACI,IAAI,YAAY,GAAG,IAAI,UAAU,CAAC,WAAW,CAAC,CAAC;;QAE/C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,CAAC,EAAE;QACpC;YACI,YAAY,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;SACvB;;QAED,IAAI,CAAC,iBAAiB,CAAC,WAAW,CAAC,GAAG,YAAY,CAAC,IAAI,CAAC,EAAE,SAAS,EAAE,YAAY,EAAE,EAAE,IAAI,CAAC,CAAC;;QAE3F,IAAI,WAAW,GAAG,IAAI,CAAC,YAAY,CAAC;;QAEpC,WAAW,GAAG,WAAW,CAAC,OAAO,CAAC,WAAW,GAAG,EAAE,GAAG,WAAW,EAAE,CAAC;QACnE,WAAW,GAAG,WAAW,CAAC,OAAO,CAAC,aAAa,EAAE,IAAI,CAAC,iBAAiB,CAAC,WAAW,CAAC,CAAC,CAAC;;QAEtF,IAAI,CAAC,YAAY,CAAC,WAAW,CAAC,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC,SAAS,EAAE,WAAW,CAAC,CAAC;KAC7E;;IAED,IAAI,QAAQ,GAAG;QACX,IAAI,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QACpC,iBAAiB,EAAE,IAAI,MAAM,EAAE;QAC/B,OAAO,EAAE,IAAI,CAAC,iBAAiB,CAAC,WAAW,CAAC;KAC/C,CAAC;;IAEF,OAAO,IAAI,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,WAAW,CAAC,EAAE,QAAQ,CAAC,CAAC;CAC/D,CAAC;;AAEF,oBAAoB,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,WAAW;AAC1F;IACI,IAAI,GAAG,GAAG,EAAE,CAAC;;IAEb,GAAG,IAAI,IAAI,CAAC;IACZ,GAAG,IAAI,IAAI,CAAC;;IAEZ,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,CAAC,EAAE;IACpC;QACI,IAAI,CAAC,GAAG,CAAC;QACT;YACI,GAAG,IAAI,SAAS,CAAC;SACpB;;QAED,IAAI,CAAC,GAAG,WAAW,GAAG,CAAC;QACvB;YACI,GAAG,IAAI,kBAAkB,GAAG,CAAC,GAAG,KAAK,CAAC;SACzC;;QAED,GAAG,IAAI,KAAK,CAAC;QACb,GAAG,IAAI,kCAAkC,GAAG,CAAC,GAAG,oBAAoB,CAAC;QACrE,GAAG,IAAI,KAAK,CAAC;KAChB;;IAED,GAAG,IAAI,IAAI,CAAC;IACZ,GAAG,IAAI,IAAI,CAAC;;IAEZ,OAAO,GAAG,CAAC;CACd,CAAC;;;;;;;;AAQF,IAAI,aAAa,iBAAiB,UAAU,QAAQ,EAAE;IAClD,SAAS,aAAa,CAAC,OAAO;IAC9B;QACI,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,KAAK,CAAC;;QAE1C,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;QAQpB,IAAI,CAAC,OAAO,GAAG,IAAIL,QAAM,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,CAAC,CAAC;;;;;;;;QAQhD,IAAI,CAAC,YAAY,GAAG,IAAIA,QAAM,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC;;QAEpD,IAAI,CAAC,YAAY,CAAC,iBAAiB,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC;aACpE,YAAY,CAAC,eAAe,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC;aAClE,YAAY,CAAC,QAAQ,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC,aAAa,CAAC;aAClE,YAAY,CAAC,YAAY,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC,KAAK,CAAC;aAC9D,QAAQ,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;KACpC;;IAED,KAAK,QAAQ,GAAG,aAAa,CAAC,SAAS,GAAG,QAAQ,CAAC;IACnD,aAAa,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,QAAQ,IAAI,QAAQ,CAAC,SAAS,EAAE,CAAC;IAC1E,aAAa,CAAC,SAAS,CAAC,WAAW,GAAG,aAAa,CAAC;;IAEpD,OAAO,aAAa,CAAC;CACxB,CAAC,QAAQ,CAAC,CAAC,CAAC;;AAEb,IAAI,eAAe,GAAG,yhBAAyhB,CAAC;;AAEhjB,IAAI,iBAAiB,GAAG,kNAAkN,CAAC;;;;;;;AAO3O,IAAI,kBAAkB,GAAG,SAAS,kBAAkB,IAAI,EAAE,CAAC;;AAE3D,IAAIM,mBAAiB,GAAG,EAAE,gBAAgB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,uBAAuB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;AAErH,kBAAkB,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,OAAO;AACpD;IACI,IAAI,GAAG,GAAG,MAAM,CAAC,MAAM,CAAC;QACpB,MAAM,EAAE,eAAe;QACvB,QAAQ,EAAE,iBAAiB;QAC3B,aAAa,EAAE,aAAa;QAC5B,UAAU,EAAE,CAAC;KAChB,EAAE,OAAO,CAAC,CAAC;QACR,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;QACxB,IAAI,QAAQ,GAAG,GAAG,CAAC,QAAQ,CAAC;QAC5B,IAAI,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC;QAChC,IAAI,aAAa,GAAG,GAAG,CAAC,aAAa,CAAC;;IAE1C,qBAAqB,UAAU,qBAAqB,EAAE;YAC9C,SAAS,WAAW,CAAC,QAAQ;QACjC;YACI,qBAAqB,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;YAE3C,IAAI,CAAC,eAAe,GAAG,IAAI,oBAAoB,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;YAClE,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;YACnC,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;SAChC;;YAEG,KAAK,qBAAqB,GAAG,WAAW,CAAC,SAAS,GAAG,qBAAqB,CAAC;YAC3E,WAAW,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,qBAAqB,IAAI,qBAAqB,CAAC,SAAS,EAAE,CAAC;YAClG,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,WAAW,CAAC;;YAEhD,OAAO,WAAW,CAAC;SACtB,CAAC,qBAAqB,CAAC,EAAE;CACjC,CAAC;;;;;;;;;AASFA,mBAAiB,CAAC,gBAAgB,CAAC,GAAG,GAAG;AACzC;IACI,OAAO,eAAe,CAAC;CAC1B,CAAC;;;;;;;;;AASFA,mBAAiB,CAAC,uBAAuB,CAAC,GAAG,GAAG;AAChD;IACI,OAAO,iBAAiB,CAAC;CAC5B,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,EAAEA,mBAAiB,EAAE,CAAC;;;;AAIjE,IAAI,aAAa,GAAG,kBAAkB,CAAC,MAAM,EAAE,CAAC;;AChpYhD;;;;;;;AAOA,AAGA;AACA,IAAI,SAAS,GAAG,IAAI,SAAS,EAAE,CAAC;AAChC,IAAI,eAAe,GAAG,CAAC,CAAC;;;;;;;;;;AAUxB,IAAI,OAAO,GAAG,SAAS,OAAO,CAAC,QAAQ;AACvC;IACI,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;;;;;;;;IAQzB,QAAQ,CAAC,OAAO,GAAG,IAAI,CAAC;CAC3B,CAAC;;;;;;;;;;;AAWF,OAAO,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO;AACjE;IACI,IAAI,KAAK,GAAG,IAAI,KAAK,EAAE,CAAC;;IAExB,KAAK,CAAC,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC;;IAEjD,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;;;;;;AAYF,OAAO,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO;AACnE;IACI,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACzD,CAAC;;;;;;;;;AASF,OAAO,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,MAAM;AAClD;IACI,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;IAC7B,IAAI,UAAU,CAAC;IACf,IAAI,KAAK,CAAC;IACV,IAAI,KAAK,GAAG,KAAK,CAAC;IAClB,IAAI,aAAa,CAAC;IAClB,IAAI,SAAS,GAAG,KAAK,CAAC;;IAEtB,IAAI,MAAM;IACV;QACI,IAAI,MAAM,YAAY,aAAa;QACnC;YACI,aAAa,GAAG,MAAM,CAAC;SAC1B;;QAED;YACI,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;YACtD,SAAS,GAAG,IAAI,CAAC;SACpB;KACJ;;IAED,IAAI,aAAa;IACjB;QACI,UAAU,GAAG,aAAa,CAAC,WAAW,CAAC,UAAU,CAAC;QAClD,KAAK,GAAG,aAAa,CAAC,KAAK,CAAC;QAC5B,KAAK,GAAG,KAAK,CAAC;QACd,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KAC9C;;IAED;QACI,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC;;QAEtC,KAAK,GAAG,IAAI,CAAC;;QAEb,KAAK,GAAG,SAAS,CAAC;QAClB,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC;QAClC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC;;QAEpC,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACrC;;IAED,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,GAAG,UAAU,CAAC,CAAC;IACjD,IAAI,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,UAAU,CAAC,CAAC;;IAEnD,IAAI,YAAY,GAAG,IAAI,kBAAkB,CAAC,KAAK,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC;;IAE5D,IAAI,WAAW,GAAG,IAAI,UAAU,CAAC,eAAe,GAAG,KAAK,GAAG,MAAM,CAAC,CAAC;;;IAGnE,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;;IAErB,EAAE,CAAC,UAAU;QACT,KAAK,CAAC,CAAC,GAAG,UAAU;QACpB,KAAK,CAAC,CAAC,GAAG,UAAU;QACpB,KAAK;QACL,MAAM;QACN,EAAE,CAAC,IAAI;QACP,EAAE,CAAC,aAAa;QAChB,WAAW;KACd,CAAC;;;IAGF,IAAI,UAAU,GAAG,YAAY,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;;IAExE,OAAO,CAAC,eAAe,CAAC,WAAW,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;;IAEtD,YAAY,CAAC,OAAO,CAAC,YAAY,CAAC,UAAU,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;;IAGpD,IAAI,KAAK;IACT;QACI,YAAY,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;QAClC,YAAY,CAAC,OAAO,CAAC,SAAS,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC;KACnE;;IAED,IAAI,SAAS;IACb;QACI,aAAa,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;KAC/B;;;IAGD,OAAO,YAAY,CAAC,MAAM,CAAC;CAC9B,CAAC;;;;;;;;;;AAUF,OAAO,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,MAAM;AAClD;IACI,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;IAC7B,IAAI,UAAU,CAAC;IACf,IAAI,KAAK,CAAC;IACV,IAAI,aAAa,CAAC;IAClB,IAAI,SAAS,GAAG,KAAK,CAAC;;IAEtB,IAAI,MAAM;IACV;QACI,IAAI,MAAM,YAAY,aAAa;QACnC;YACI,aAAa,GAAG,MAAM,CAAC;SAC1B;;QAED;YACI,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;YACtD,SAAS,GAAG,IAAI,CAAC;SACpB;KACJ;;IAED,IAAI,aAAa;IACjB;QACI,UAAU,GAAG,aAAa,CAAC,WAAW,CAAC,UAAU,CAAC;QAClD,KAAK,GAAG,aAAa,CAAC,KAAK,CAAC;;;QAG5B,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KAC9C;;IAED;QACI,UAAU,GAAG,QAAQ,CAAC,UAAU,CAAC;;QAEjC,KAAK,GAAG,SAAS,CAAC;QAClB,KAAK,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;QAC7B,KAAK,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;;QAE/B,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACrC;;IAED,IAAI,KAAK,GAAG,KAAK,CAAC,KAAK,GAAG,UAAU,CAAC;IACrC,IAAI,MAAM,GAAG,KAAK,CAAC,MAAM,GAAG,UAAU,CAAC;;IAEvC,IAAI,WAAW,GAAG,IAAI,UAAU,CAAC,eAAe,GAAG,KAAK,GAAG,MAAM,CAAC,CAAC;;;IAGnE,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;;IAErB,EAAE,CAAC,UAAU;QACT,KAAK,CAAC,CAAC,GAAG,UAAU;QACpB,KAAK,CAAC,CAAC,GAAG,UAAU;QACpB,KAAK;QACL,MAAM;QACN,EAAE,CAAC,IAAI;QACP,EAAE,CAAC,aAAa;QAChB,WAAW;KACd,CAAC;;IAEF,IAAI,SAAS;IACb;QACI,aAAa,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;KAC/B;;IAED,OAAO,CAAC,eAAe,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;;IAElD,OAAO,WAAW,CAAC;CACtB,CAAC;;;;;;AAMF,OAAO,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC5C;IACI,IAAI,CAAC,QAAQ,CAAC,OAAO,GAAG,IAAI,CAAC;IAC7B,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;CACxB,CAAC;;;;;;;;;AASF,OAAO,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,MAAM,EAAE,GAAG;AAC/D;IACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC;IACzC;QACI,IAAI,KAAK,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;;QAEvC,IAAI,KAAK,KAAK,CAAC;QACf;YACI,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,KAAK,GAAG,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC;YAChE,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,GAAG,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC;YACxE,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,GAAG,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC;SAC3E;;QAED;YACI,GAAG,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;YACnB,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;YAC3B,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;SAC9B;KACJ;CACJ,CAAC;;AChRF;;;;;;;AAOA,AAIA;;;;;;;AAOA,IAAI,eAAe,GAAG,SAAS,eAAe;AAC9C;;;;;;IAMI,IAAI,CAAC,MAAM,GAAG,IAAI,KAAK,EAAE,CAAC;;;;;;;IAO1B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;;;;IAUnB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;;;;;;;IAO1B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;;;;;;IAOvB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;;;;;;IAOvB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;;;;;;;IAOhB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;;IAQjB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;IAQf,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;;;;;;;IAOhB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;IAOf,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;IAOf,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;;IAQxB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;;;;;;;IAOlB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;;;;;;IAOvB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;IAOf,IAAI,CAAC,kBAAkB,GAAG,CAAC,CAAC;CAC/B,CAAC;;AAEF,IAAIV,oBAAkB,GAAG,EAAE,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;AAQ/DA,oBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG;AACnC;IACI,OAAO,IAAI,CAAC,UAAU,CAAC;CAC1B,CAAC;;;;;;;;;;;;;;AAcF,eAAe,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,aAAa,EAAE,KAAK,EAAE,SAAS;AACvG;IACI,OAAO,aAAa,CAAC,cAAc,CAAC,YAAY,CAAC,SAAS,IAAI,IAAI,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;CACrF,CAAC;;;;;;;AAOF,eAAe,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,KAAK;AAC/D;;;;IAII,IAAI,KAAK,CAAC,SAAS;IACnB;QACI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;KACzB;IACD,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;;;IAG3B,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,OAAO,GAAG,KAAK,CAAC,KAAK,CAAC;IAC7E,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;IACzB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;IAC3B,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;IACzB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;IACzB,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC;IACrC,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC,QAAQ,CAAC;IAC/B,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC,aAAa,CAAC;IACzC,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC;IAC9B,IAAI,CAAC,kBAAkB,GAAG,KAAK,CAAC,kBAAkB,IAAI,CAAC,CAAC;CAC3D,CAAC;;;;;AAKF,eAAe,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAChD;;;IAGI,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;CAC1B,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,eAAe,CAAC,SAAS,EAAEA,oBAAkB,EAAE,CAAC;;;;;;;;AAQzE,IAAI,gBAAgB,GAAG,SAAS,gBAAgB;AAChD;;;;;;;;;IASI,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;;;;;;;IAQrB,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC;;;;;;;;;;IAU/B,IAAI,CAAC,mBAAmB,GAAG,KAAK,CAAC;;;;;;;;IAQjC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;IAOnB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;;;;;;;IAO1B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;IAOjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;CACpB,CAAC;;;;;;AAMF,gBAAgB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;AACrE;IACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC;IAChC,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC,aAAa,CAAC;CAChD,CAAC;;;;;AAKF,gBAAgB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AACjD;IACI,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;IACrB,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC;IAC/B,IAAI,CAAC,mBAAmB,GAAG,KAAK,CAAC;IACjC,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;CACtB,CAAC;;;;;;;;;AASF,IAAI,uBAAuB,GAAG,SAAS,uBAAuB,CAAC,SAAS;AACxE;IACI,IAAI,CAAC,UAAU,GAAG,SAAS,CAAC;IAC5B,IAAI,CAAC,MAAM,GAAG,uBAAuB,CAAC,KAAK,CAAC,IAAI,CAAC;CACpD,CAAC;;AAEF,IAAIC,sBAAoB,GAAG,EAAE,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;AAQ5N,uBAAuB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,IAAI,EAAE,EAAE;AACpE;IACI,IAAI,EAAE;IACN;QACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;KACpC;;IAED;QACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,IAAI,CAAC,IAAI,CAAC,CAAC;KACvC;CACJ,CAAC;;;;;;;;;AASFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG;AACrC;IACI,OAAO,IAAI,CAAC,UAAU,CAAC;CAC1B,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,KAAK,CAAC,GAAG,GAAG;AACjC;IACI,OAAO,IAAI,CAAC,MAAM,CAAC;CACtB,CAAC;;AAEFA,sBAAoB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;AAChD;IACI,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;CACvB,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,IAAI,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,IAAI,CAAC,MAAM,KAAK,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC;CACtD,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,IAAI,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,CAAC;CAC5D,CAAC;;AAEFA,sBAAoB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,EAAE;AAC5C;IACI,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;CAChD,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG;AACrC;IACI,OAAO,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,UAAU,MAAM,CAAC,CAAC;CAClE,CAAC;;AAEFA,sBAAoB,CAAC,SAAS,CAAC,GAAG,GAAG,UAAU,EAAE;AACjD;IACI,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;CACtD,CAAC;;;;;;;;AAQFA,sBAAoB,CAAC,QAAQ,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,SAAS,MAAM,CAAC,CAAC;CACjE,CAAC;;AAEFA,sBAAoB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,EAAE;AAChD;IACI,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;CACrD,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,uBAAuB,CAAC,SAAS,EAAEA,sBAAoB,EAAE,CAAC;;AAEnF,uBAAuB,CAAC,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC;IAC1C,IAAI,EAAE,CAAC;IACP,IAAI,EAAE,CAAC,IAAI,CAAC;IACZ,SAAS,EAAE,CAAC,IAAI,CAAC;IACjB,UAAU,EAAE,CAAC,IAAI,CAAC;CACrB,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0CH,IAAI,iBAAiB,GAAG;;;;;;;;;;;;;;;IAepB,WAAW,EAAE,KAAK;;;;;;;;;IASlB,mBAAmB,EAAE,IAAI;;;;;;;;;;;;;IAazB,OAAO,EAAE,IAAI;;;;;;;;;;;;;IAab,IAAI,UAAU;IACd;QACI,OAAO,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC;KACpC;IACD,IAAI,UAAU,CAAC,KAAK;IACpB;QACI,IAAI,KAAK;QACT;YACI,IAAI,CAAC,MAAM,GAAG,SAAS,CAAC;SAC3B;aACI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS;QAClC;YACI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;SACtB;KACJ;;;;;;;;;;;;;;;IAeD,MAAM,EAAE,IAAI;;;;;;;;;IASZ,IAAI,eAAe;IACnB;QACI,IAAI,IAAI,CAAC,gBAAgB,KAAK,SAAS,EAAE,EAAE,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC,EAAE;;QAExE,OAAO,IAAI,CAAC,gBAAgB,CAAC;KAChC;;;;;;;;IAQD,gBAAgB,EAAE,SAAS;CAC9B,CAAC;;;;AAIF,aAAa,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC;;AAEvC,IAAI,gBAAgB,GAAG,CAAC,CAAC;;;AAGzB,IAAI,YAAY,GAAG;IACf,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE;QACF,MAAM,EAAE,IAAI;KACf;CACJ,CAAC;;;;;;;;;;;;;;;AAeF,IAAI,kBAAkB,iBAAiB,UAAU,YAAY,EAAE;IAC3D,SAAS,kBAAkB,CAAC,QAAQ,EAAE,OAAO;IAC7C;QACI,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAExB,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;;;;;;QAOxB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;;;;;;;;;;;QAWzB,IAAI,CAAC,kBAAkB,GAAG,OAAO,CAAC,kBAAkB,KAAK,SAAS,GAAG,OAAO,CAAC,kBAAkB,GAAG,IAAI,CAAC;;;;;;;;QAQvG,IAAI,CAAC,oBAAoB,GAAG,OAAO,CAAC,oBAAoB,IAAI,EAAE,CAAC;;;;;;;QAO/D,IAAI,CAAC,KAAK,GAAG,IAAI,eAAe,EAAE,CAAC;QACnC,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,gBAAgB,CAAC;;;;QAIzC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC;;;;;;;;QAQ/B,IAAI,CAAC,qBAAqB,GAAG,EAAE,CAAC;QAChC,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC;;;;;;;;QAQ1D,IAAI,CAAC,mBAAmB,GAAG,EAAE,CAAC;;;;;;;QAO9B,IAAI,CAAC,SAAS,GAAG,IAAI,gBAAgB,EAAE,CAAC;;;;;;;;QAQxC,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC;;;;;;;;;;;;;QAalC,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;;;;;;;;QAQ5B,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;;;;;;;;QAQzB,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;;;;;;;;;QAS/B,IAAI,CAAC,mBAAmB,GAAG,cAAc,IAAI,MAAM,CAAC;;;;;;;;;QASpD,IAAI,CAAC,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC,YAAY,CAAC;;;;;;;;QAQnD,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC/C,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;QAMzD,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACvD,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC,oBAAoB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;QAMjE,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACnD,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;QAM7D,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACnD,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;QAM7D,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACjD,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;QAMnE,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;;QASnD,IAAI,CAAC,YAAY,GAAG;YAChB,OAAO,EAAE,SAAS;YAClB,OAAO,EAAE,SAAS;SACrB,CAAC;;;;;;;;QAQF,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;;;;;;;;QAQ9B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;;QAQnB,IAAI,CAAC,UAAU,GAAG,IAAI,KAAK,EAAE,CAAC;;;;;;;;QAQ9B,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;;;;;;;QAQpB,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA8YxB,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC;KACvE;;IAED,KAAK,YAAY,GAAG,kBAAkB,CAAC,SAAS,GAAG,YAAY,CAAC;IAChE,kBAAkB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,YAAY,IAAI,YAAY,CAAC,SAAS,EAAE,CAAC;IACvF,kBAAkB,CAAC,SAAS,CAAC,WAAW,GAAG,kBAAkB,CAAC;;;;;;;;;;IAU9D,kBAAkB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,WAAW,EAAE,IAAI;IAC1E;;QAEI,YAAY,CAAC,MAAM,GAAG,IAAI,CAAC;;QAE3B,YAAY,CAAC,IAAI,CAAC,MAAM,GAAG,WAAW,CAAC;;QAEvC,IAAI,CAAC,IAAI;QACT;YACI,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,mBAAmB,CAAC;SAC5C;;QAED,IAAI,CAAC,kBAAkB,CAAC,YAAY,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;;;QAGxD,OAAO,YAAY,CAAC,MAAM,CAAC;KAC9B,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,OAAO,EAAE,UAAU;IAC9F;QACI,KAAK,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,GAAG,CAAC,CAAC;;QAE5C,IAAI,CAAC,YAAY,EAAE,CAAC;;QAEpB,IAAI,CAAC,qBAAqB,GAAG,OAAO,CAAC;;QAErC,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;;QAE7B,IAAI,CAAC,SAAS,EAAE,CAAC;KACpB,CAAC;;;;;;;IAOF,kBAAkB,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;IAC3D;QACI,IAAI,CAAC,IAAI,CAAC,qBAAqB;QAC/B;YACI,OAAO;SACV;;QAED,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,EAAE,eAAe,CAAC,WAAW,CAAC,CAAC;;QAElE,IAAI,MAAM,CAAC,SAAS,CAAC,gBAAgB;QACrC;YACI,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,qBAAqB,CAAC,GAAG,MAAM,CAAC;YACjE,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,kBAAkB,CAAC,GAAG,MAAM,CAAC;SACjE;aACI,IAAI,IAAI,CAAC,qBAAqB;QACnC;YACI,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,cAAc,CAAC,GAAG,MAAM,CAAC;SAC7D;;;;;;QAMD,IAAI,IAAI,CAAC,qBAAqB;QAC9B;YACI,MAAM,CAAC,QAAQ,CAAC,gBAAgB,CAAC,aAAa,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YAC1E,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,aAAa,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;;;;YAIrF,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,cAAc,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;YACrF,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,aAAa,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACrF,MAAM,CAAC,gBAAgB,CAAC,eAAe,EAAE,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;YACrE,MAAM,CAAC,gBAAgB,CAAC,WAAW,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;SAChE;;QAED;YACI,MAAM,CAAC,QAAQ,CAAC,gBAAgB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACxE,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACnF,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,UAAU,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;YACjF,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACnF,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;SAC9D;;;;;QAKD,IAAI,IAAI,CAAC,mBAAmB;QAC5B;YACI,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,YAAY,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACpF,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,aAAa,EAAE,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;YACvF,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,UAAU,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;YAChF,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;SACtF;;QAED,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;KAC3B,CAAC;;;;;;;IAOF,kBAAkB,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY;IACjE;QACI,IAAI,CAAC,IAAI,CAAC,qBAAqB;QAC/B;YACI,OAAO;SACV;;QAED,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;;QAExC,IAAI,MAAM,CAAC,SAAS,CAAC,gBAAgB;QACrC;YACI,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,qBAAqB,CAAC,GAAG,EAAE,CAAC;YAC7D,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,kBAAkB,CAAC,GAAG,EAAE,CAAC;SAC7D;aACI,IAAI,IAAI,CAAC,qBAAqB;QACnC;YACI,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,cAAc,CAAC,GAAG,EAAE,CAAC;SACzD;;QAED,IAAI,IAAI,CAAC,qBAAqB;QAC9B;YACI,MAAM,CAAC,QAAQ,CAAC,mBAAmB,CAAC,aAAa,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YAC7E,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,aAAa,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACxF,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,cAAc,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;YACxF,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,aAAa,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACxF,MAAM,CAAC,mBAAmB,CAAC,eAAe,EAAE,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;YACxE,MAAM,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;SACnE;;QAED;YACI,MAAM,CAAC,QAAQ,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YAC3E,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACtF,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,UAAU,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;YACpF,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACtF,MAAM,CAAC,mBAAmB,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;SACjE;;QAED,IAAI,IAAI,CAAC,mBAAmB;QAC5B;YACI,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,YAAY,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YACvF,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,aAAa,EAAE,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;YAC1F,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,UAAU,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;YACnF,IAAI,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;SACzF;;QAED,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC;;QAElC,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;KAC5B,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,SAAS;IAChE;QACI,IAAI,CAAC,UAAU,IAAI,SAAS,CAAC;;QAE7B,IAAI,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,oBAAoB;QAC/C;YACI,OAAO;SACV;;QAED,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;QAEpB,IAAI,CAAC,IAAI,CAAC,qBAAqB;QAC/B;YACI,OAAO;SACV;;;QAGD,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;YAErB,OAAO;SACV;;QAED,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;QAKnB,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,qBAAqB;QACxC;;YAEI,IAAI,IAAI,CAAC,qBAAqB,CAAC,cAAc,CAAC,CAAC,CAAC;YAChD;gBACI,IAAI,eAAe,GAAG,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,CAAC;;gBAEpD,IAAI,eAAe,CAAC,aAAa,IAAI,eAAe,CAAC,WAAW,KAAK,OAAO;gBAC5E;oBACI,IAAI,gBAAgB,GAAG,IAAI,CAAC,oCAAoC;wBAC5D,IAAI,CAAC,SAAS;wBACd,eAAe,CAAC,aAAa;wBAC7B,eAAe;qBAClB,CAAC;;oBAEF,IAAI,CAAC,kBAAkB;wBACnB,gBAAgB;wBAChB,IAAI,CAAC,QAAQ,CAAC,mBAAmB;wBACjC,IAAI,CAAC,qBAAqB;wBAC1B,IAAI;qBACP,CAAC;iBACL;aACJ;SACJ;;QAED,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;KACnC,CAAC;;;;;;;IAOF,kBAAkB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,IAAI;IACzE;QACI,IAAI,GAAG,IAAI,IAAI,SAAS,CAAC;;QAEzB,IAAI,IAAI,CAAC,iBAAiB,KAAK,IAAI;QACnC;YACI,OAAO;SACV;QACD,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;QAC9B,IAAI,KAAK,GAAG,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;;;QAGpC,IAAI,KAAK;QACT;YACI,QAAQ,OAAO,KAAK;;gBAEhB,KAAK,QAAQ;;oBAET,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC;oBAChD,MAAM;gBACV,KAAK,UAAU;;oBAEX,KAAK,CAAC,IAAI,CAAC,CAAC;oBACZ,MAAM;gBACV,KAAK,QAAQ;;;oBAGT,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,qBAAqB,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;oBACvD,MAAM;aACb;SACJ;aACI,IAAI,OAAO,IAAI,KAAK,QAAQ,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC;QACnG;;;YAGI,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC;SAClD;KACJ,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,aAAa,EAAE,WAAW,EAAE,SAAS;IAC1G;;;QAGI,IAAI,CAAC,SAAS,CAAC,mBAAmB,IAAI,aAAa,KAAK,SAAS,CAAC,kBAAkB;QACpF;YACI,SAAS,CAAC,aAAa,GAAG,aAAa,CAAC;YACxC,SAAS,CAAC,IAAI,GAAG,WAAW,CAAC;;YAE7B,aAAa,CAAC,IAAI,CAAC,WAAW,EAAE,SAAS,CAAC,CAAC;;YAE3C,IAAI,aAAa,CAAC,WAAW,CAAC;YAC9B;gBACI,aAAa,CAAC,WAAW,CAAC,CAAC,SAAS,CAAC,CAAC;aACzC;SACJ;KACJ,CAAC;;;;;;;;;;;IAWF,kBAAkB,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,aAAa,EAAE,WAAW,EAAE,SAAS;IACpH;QACI,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,EAAE,aAAa,EAAE,aAAa,EAAE,WAAW,EAAE,WAAW,EAAE,SAAS,EAAE,SAAS,EAAE,CAAC,CAAC;KAC7G,CAAC;;;;;;;;;;;IAWF,kBAAkB,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC;IAC1F;QACI,IAAI,IAAI,CAAC;;;QAGT,IAAI,CAAC,IAAI,CAAC,qBAAqB,CAAC,aAAa;QAC7C;YACI,IAAI,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,CAAC;SAC9C;;QAED;YACI,IAAI,GAAG,IAAI,CAAC,qBAAqB,CAAC,qBAAqB,EAAE,CAAC;SAC7D;;QAED,IAAI,oBAAoB,GAAG,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC;;QAEjD,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,qBAAqB,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,oBAAoB,CAAC;QACrG,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,KAAK,IAAI,CAAC,qBAAqB,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,oBAAoB,CAAC;KACzG,CAAC;;;;;;;;;;;;;;;;;;;;IAoBF,kBAAkB,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,gBAAgB,EAAE,aAAa,EAAE,IAAI,EAAE,OAAO,EAAE,WAAW,EAAE,WAAW;IACvJ;QACI,IAAI,CAAC,aAAa,IAAI,CAAC,aAAa,CAAC,OAAO;QAC5C;YACI,OAAO,KAAK,CAAC;SAChB;;QAED,IAAI,KAAK,GAAG,gBAAgB,CAAC,IAAI,CAAC,MAAM,CAAC;;;;;;;;;;;;;;;QAezC,WAAW,GAAG,aAAa,CAAC,WAAW,IAAI,WAAW,CAAC;;QAEvD,IAAI,GAAG,GAAG,KAAK,CAAC;QAChB,IAAI,iBAAiB,GAAG,WAAW,CAAC;;;QAGpC,IAAI,eAAe,GAAG,IAAI,CAAC;;;;QAI3B,IAAI,aAAa,CAAC,OAAO;QACzB;YACI,IAAI,OAAO;YACX;gBACI,aAAa,CAAC,cAAc,CAAC,YAAY,CAAC,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;gBAClE,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;gBACzE;oBACI,OAAO,GAAG,KAAK,CAAC;oBAChB,eAAe,GAAG,KAAK,CAAC;iBAC3B;;gBAED;oBACI,GAAG,GAAG,IAAI,CAAC;iBACd;aACJ;YACD,iBAAiB,GAAG,KAAK,CAAC;SAC7B;;;;aAII,IAAI,aAAa,CAAC,KAAK;QAC5B;YACI,IAAI,OAAO;YACX;gBACI,IAAI,EAAE,aAAa,CAAC,KAAK,CAAC,aAAa,IAAI,aAAa,CAAC,KAAK,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;gBACpF;oBACI,OAAO,GAAG,KAAK,CAAC;iBACnB;aACJ;SACJ;;;;;QAKD,IAAI,eAAe,IAAI,aAAa,CAAC,mBAAmB,IAAI,aAAa,CAAC,QAAQ;QAClF;YACI,IAAI,QAAQ,GAAG,aAAa,CAAC,QAAQ,CAAC;;YAEtC,KAAK,IAAI,CAAC,GAAG,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;YAC7C;gBACI,IAAI,KAAK,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;;;gBAGxB,IAAI,QAAQ,GAAG,IAAI,CAAC,kBAAkB,CAAC,gBAAgB,EAAE,KAAK,EAAE,IAAI,EAAE,OAAO,EAAE,iBAAiB,EAAE,IAAI,CAAC,CAAC;;gBAExG,IAAI,QAAQ;gBACZ;;;oBAGI,IAAI,CAAC,KAAK,CAAC,MAAM;oBACjB;wBACI,SAAS;qBACZ;;;;oBAID,iBAAiB,GAAG,KAAK,CAAC;;;;;;;oBAO1B,IAAI,QAAQ;oBACZ;wBACI,IAAI,gBAAgB,CAAC,MAAM;wBAC3B;4BACI,OAAO,GAAG,KAAK,CAAC;yBACnB;wBACD,GAAG,GAAG,IAAI,CAAC;qBACd;iBACJ;aACJ;SACJ;;;QAGD,IAAI,WAAW;QACf;;;;;YAKI,IAAI,OAAO,IAAI,CAAC,gBAAgB,CAAC,MAAM;YACvC;;gBAEI,IAAI,CAAC,aAAa,CAAC,OAAO,IAAI,aAAa,CAAC,aAAa;gBACzD;oBACI,IAAI,aAAa,CAAC,aAAa,CAAC,KAAK,CAAC;oBACtC;wBACI,GAAG,GAAG,IAAI,CAAC;qBACd;iBACJ;aACJ;;YAED,IAAI,aAAa,CAAC,WAAW;YAC7B;gBACI,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM;gBACnC;oBACI,gBAAgB,CAAC,MAAM,GAAG,aAAa,CAAC;iBAC3C;;gBAED,IAAI,IAAI;gBACR;oBACI,IAAI,CAAC,gBAAgB,EAAE,aAAa,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC;iBAChD;aACJ;SACJ;;QAED,IAAI,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC;;QAEvC,IAAI,aAAa,CAAC,MAAM,IAAI,CAAC,WAAW;QACxC;;YAEI,gBAAgB,CAAC,mBAAmB,GAAG,KAAK,CAAC;;YAE7C,IAAI,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC;;YAEtC,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;;YAExB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,EAAE,GAAG,EAAE;YACzC;gBACI,IAAI,GAAG,GAAG,aAAa,CAAC,GAAG,CAAC,CAAC;gBAC7B,IAAI,eAAe,GAAG,GAAG,CAAC,aAAa,CAAC;gBACxC,IAAI,WAAW,GAAG,GAAG,CAAC,WAAW,CAAC;gBAClC,IAAI,SAAS,GAAG,GAAG,CAAC,SAAS,CAAC;;;;gBAI9B,IAAI,SAAS,CAAC,kBAAkB,KAAK,eAAe;gBACpD;oBACI,SAAS,CAAC,mBAAmB,GAAG,IAAI,CAAC;iBACxC;;gBAED,IAAI,CAAC,aAAa,CAAC,eAAe,EAAE,WAAW,EAAE,SAAS,CAAC,CAAC;aAC/D;SACJ;;QAED,OAAO,GAAG,CAAC;KACd,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,aAAa;IAClF;;QAEI,IAAI,IAAI,CAAC,mBAAmB,IAAI,aAAa,CAAC,WAAW,KAAK,OAAO,EAAE,EAAE,OAAO,EAAE;;QAElF,IAAI,MAAM,GAAG,IAAI,CAAC,sBAAsB,CAAC,aAAa,CAAC,CAAC;;;;;;;;;;QAUxD,IAAI,IAAI,CAAC,kBAAkB,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,YAAY;QACrD;YACI,IAAI,UAAU,GAAG,aAAa,CAAC,UAAU,IAAI,EAAE,YAAY,IAAI,aAAa,CAAC,CAAC;;YAE9E,IAAI,UAAU;YACd;gBACI,aAAa,CAAC,cAAc,EAAE,CAAC;aAClC;SACJ;;QAED,IAAI,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC;;QAE7B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,EAAE,CAAC,EAAE;QACjC;YACI,IAAI,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;YAEtB,IAAI,eAAe,GAAG,IAAI,CAAC,8BAA8B,CAAC,KAAK,CAAC,CAAC;;YAEjE,IAAI,gBAAgB,GAAG,IAAI,CAAC,oCAAoC,CAAC,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,eAAe,CAAC,CAAC;;YAEzG,gBAAgB,CAAC,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;;YAEpD,IAAI,CAAC,kBAAkB,CAAC,gBAAgB,EAAE,IAAI,CAAC,QAAQ,CAAC,mBAAmB,EAAE,IAAI,CAAC,kBAAkB,EAAE,IAAI,CAAC,CAAC;;YAE5G,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,gBAAgB,CAAC,CAAC;YAC3C,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO;YACjC;gBACI,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,gBAAgB,CAAC,CAAC;aAC7C;;iBAEI,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,IAAI,KAAK,CAAC,WAAW,KAAK,KAAK;YACrE;gBACI,IAAI,aAAa,GAAG,KAAK,CAAC,MAAM,KAAK,CAAC,CAAC;;gBAEvC,IAAI,CAAC,IAAI,CAAC,aAAa,GAAG,WAAW,GAAG,WAAW,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;aACxE;SACJ;KACJ,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,gBAAgB,EAAE,aAAa,EAAE,GAAG;IACnH;QACI,IAAI,IAAI,GAAG,gBAAgB,CAAC,IAAI,CAAC;QACjC,IAAI,EAAE,GAAG,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC;;QAE1C,IAAI,GAAG;QACP;YACI,IAAI,CAAC,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC;YACtC;gBACI,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,GAAG,IAAI,uBAAuB,CAAC,EAAE,CAAC,CAAC;aACvE;YACD,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,aAAa,EAAE,gBAAgB,CAAC,CAAC;;YAEnE,IAAI,IAAI,CAAC,WAAW,KAAK,OAAO;YAChC;gBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,YAAY,EAAE,gBAAgB,CAAC,CAAC;aACrE;iBACI,IAAI,IAAI,CAAC,WAAW,KAAK,OAAO,IAAI,IAAI,CAAC,WAAW,KAAK,KAAK;YACnE;gBACI,IAAI,aAAa,GAAG,IAAI,CAAC,MAAM,KAAK,CAAC,CAAC;;gBAEtC,IAAI,aAAa;gBACjB;oBACI,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;iBACtD;;gBAED;oBACI,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC,QAAQ,GAAG,IAAI,CAAC;iBACrD;;gBAED,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,aAAa,GAAG,WAAW,GAAG,WAAW,EAAE,gBAAgB,CAAC,CAAC;aAClG;SACJ;KACJ,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,aAAa,EAAE,SAAS,EAAE,IAAI;IAC3G;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,sBAAsB,CAAC,aAAa,CAAC,CAAC;;QAExD,IAAI,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC;;;;QAI7B,IAAI,WAAW,GAAG,aAAa,CAAC,MAAM,KAAK,IAAI,CAAC,qBAAqB,GAAG,SAAS,GAAG,EAAE,CAAC;;QAEvF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,EAAE,CAAC,EAAE;QACjC;YACI,IAAI,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;YAEtB,IAAI,eAAe,GAAG,IAAI,CAAC,8BAA8B,CAAC,KAAK,CAAC,CAAC;;YAEjE,IAAI,gBAAgB,GAAG,IAAI,CAAC,oCAAoC,CAAC,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,eAAe,CAAC,CAAC;;YAEzG,gBAAgB,CAAC,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;;;YAGpD,IAAI,CAAC,kBAAkB,CAAC,gBAAgB,EAAE,IAAI,CAAC,QAAQ,CAAC,mBAAmB,EAAE,IAAI,EAAE,SAAS,IAAI,CAAC,WAAW,CAAC,CAAC;;YAE9G,IAAI,CAAC,IAAI,CAAC,SAAS,GAAG,eAAe,IAAI,WAAW,GAAG,WAAW,CAAC,EAAE,gBAAgB,CAAC,CAAC;;YAEvF,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,IAAI,KAAK,CAAC,WAAW,KAAK,KAAK;YAChE;gBACI,IAAI,aAAa,GAAG,KAAK,CAAC,MAAM,KAAK,CAAC,CAAC;;gBAEvC,IAAI,CAAC,IAAI,CAAC,aAAa,IAAI,SAAS,GAAG,WAAW,KAAK,SAAS,GAAG,WAAW,CAAC,EAAE,gBAAgB,CAAC,CAAC;aACtG;iBACI,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO;YACtC;gBACI,IAAI,CAAC,IAAI,CAAC,SAAS,GAAG,aAAa,IAAI,UAAU,GAAG,WAAW,CAAC,EAAE,gBAAgB,CAAC,CAAC;gBACpF,IAAI,CAAC,kCAAkC,CAAC,KAAK,CAAC,SAAS,EAAE,eAAe,CAAC,CAAC;aAC7E;SACJ;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,KAAK;IAC9E;;QAEI,IAAI,IAAI,CAAC,mBAAmB,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,EAAE,EAAE,OAAO,EAAE;;QAE1E,IAAI,CAAC,iBAAiB,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC,oBAAoB,CAAC,CAAC;KAClE,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,SAAS,CAAC,oBAAoB,GAAG,SAAS,oBAAoB,EAAE,gBAAgB,EAAE,aAAa;IAClH;QACI,IAAI,IAAI,GAAG,gBAAgB,CAAC,IAAI,CAAC;;QAEjC,IAAI,EAAE,GAAG,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC;;QAE1C,IAAI,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,KAAK,SAAS;QACnD;YACI,OAAO,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC;YACzC,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,eAAe,EAAE,gBAAgB,CAAC,CAAC;;YAErE,IAAI,IAAI,CAAC,WAAW,KAAK,OAAO;YAChC;gBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,aAAa,EAAE,gBAAgB,CAAC,CAAC;aACtE;SACJ;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,KAAK;IACtE;;QAEI,IAAI,IAAI,CAAC,mBAAmB,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,EAAE,EAAE,OAAO,EAAE;;QAE1E,IAAI,CAAC,iBAAiB,CAAC,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,gBAAgB,CAAC,CAAC;KAC/D,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,gBAAgB,EAAE,aAAa,EAAE,GAAG;IAC/G;QACI,IAAI,IAAI,GAAG,gBAAgB,CAAC,IAAI,CAAC;;QAEjC,IAAI,EAAE,GAAG,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC;;QAE1C,IAAI,YAAY,GAAG,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC;;QAErD,IAAI,OAAO,GAAG,IAAI,CAAC,WAAW,KAAK,OAAO,CAAC;;QAE3C,IAAI,OAAO,IAAI,IAAI,CAAC,WAAW,KAAK,OAAO,IAAI,IAAI,CAAC,WAAW,KAAK,KAAK,CAAC,CAAC;;;QAG3E,IAAI,UAAU,GAAG,KAAK,CAAC;;;QAGvB,IAAI,OAAO;QACX;YACI,IAAI,aAAa,GAAG,IAAI,CAAC,MAAM,KAAK,CAAC,CAAC;;YAEtC,IAAI,KAAK,GAAG,uBAAuB,CAAC,KAAK,CAAC;;YAE1C,IAAI,IAAI,GAAG,aAAa,GAAG,KAAK,CAAC,UAAU,GAAG,KAAK,CAAC,SAAS,CAAC;;YAE9D,IAAI,MAAM,GAAG,YAAY,KAAK,SAAS,KAAK,YAAY,CAAC,KAAK,GAAG,IAAI,CAAC,CAAC;;YAEvE,IAAI,GAAG;YACP;gBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,aAAa,GAAG,SAAS,GAAG,SAAS,EAAE,gBAAgB,CAAC,CAAC;;gBAE3F,IAAI,MAAM;gBACV;oBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,aAAa,GAAG,YAAY,GAAG,OAAO,EAAE,gBAAgB,CAAC,CAAC;;oBAE5F,UAAU,GAAG,IAAI,CAAC;iBACrB;aACJ;iBACI,IAAI,MAAM;YACf;gBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,aAAa,GAAG,gBAAgB,GAAG,gBAAgB,EAAE,gBAAgB,CAAC,CAAC;aAC5G;;YAED,IAAI,YAAY;YAChB;gBACI,IAAI,aAAa;gBACjB;oBACI,YAAY,CAAC,SAAS,GAAG,KAAK,CAAC;iBAClC;;gBAED;oBACI,YAAY,CAAC,QAAQ,GAAG,KAAK,CAAC;iBACjC;aACJ;SACJ;;;QAGD,IAAI,GAAG;QACP;YACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,CAAC;YACjE,IAAI,OAAO,EAAE,EAAE,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,UAAU,EAAE,gBAAgB,CAAC,CAAC,EAAE;;YAEjF,IAAI,YAAY;YAChB;;gBAEI,IAAI,CAAC,OAAO,IAAI,UAAU;gBAC1B;oBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,YAAY,EAAE,gBAAgB,CAAC,CAAC;iBACrE;gBACD,IAAI,OAAO;gBACX;oBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,KAAK,EAAE,gBAAgB,CAAC,CAAC;;;oBAG3D,YAAY,CAAC,IAAI,GAAG,KAAK,CAAC;iBAC7B;aACJ;SACJ;aACI,IAAI,YAAY;QACrB;YACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,kBAAkB,EAAE,gBAAgB,CAAC,CAAC;YACxE,IAAI,OAAO,EAAE,EAAE,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,iBAAiB,EAAE,gBAAgB,CAAC,CAAC,EAAE;SAC3F;;QAED,IAAI,YAAY,IAAI,YAAY,CAAC,IAAI;QACrC;YACI,OAAO,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC;SAC5C;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,aAAa;IAClF;;QAEI,IAAI,IAAI,CAAC,mBAAmB,IAAI,aAAa,CAAC,WAAW,KAAK,OAAO,EAAE,EAAE,OAAO,EAAE;;QAElF,IAAI,MAAM,GAAG,IAAI,CAAC,sBAAsB,CAAC,aAAa,CAAC,CAAC;;QAExD,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,KAAK,OAAO,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,KAAK,KAAK;QACxE;YACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;YAEpB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;SACtB;;QAED,IAAI,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC;;QAE7B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,EAAE,CAAC,EAAE;QACjC;YACI,IAAI,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;YAEtB,IAAI,eAAe,GAAG,IAAI,CAAC,8BAA8B,CAAC,KAAK,CAAC,CAAC;;YAEjE,IAAI,gBAAgB,GAAG,IAAI,CAAC,oCAAoC,CAAC,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,eAAe,CAAC,CAAC;;YAEzG,gBAAgB,CAAC,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;;YAEpD,IAAI,CAAC,kBAAkB,CAAC,gBAAgB,EAAE,IAAI,CAAC,QAAQ,CAAC,mBAAmB,EAAE,IAAI,CAAC,kBAAkB,EAAE,IAAI,CAAC,CAAC;;YAE5G,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,gBAAgB,CAAC,CAAC;YAC3C,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,EAAE,EAAE,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,gBAAgB,CAAC,CAAC,EAAE;YAChF,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,IAAI,KAAK,CAAC,WAAW,KAAK,KAAK,EAAE,EAAE,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,gBAAgB,CAAC,CAAC,EAAE;SAClH;;QAED,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,KAAK,OAAO;QACrC;YACI,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;;SAGnC;KACJ,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,gBAAgB,EAAE,aAAa,EAAE,GAAG;IACnH;QACI,IAAI,IAAI,GAAG,gBAAgB,CAAC,IAAI,CAAC;;QAEjC,IAAI,OAAO,GAAG,IAAI,CAAC,WAAW,KAAK,OAAO,CAAC;;QAE3C,IAAI,OAAO,IAAI,IAAI,CAAC,WAAW,KAAK,OAAO,IAAI,IAAI,CAAC,WAAW,KAAK,KAAK,CAAC,CAAC;;QAE3E,IAAI,OAAO;QACX;YACI,IAAI,CAAC,qBAAqB,CAAC,gBAAgB,EAAE,aAAa,EAAE,GAAG,CAAC,CAAC;SACpE;;QAED,IAAI,CAAC,IAAI,CAAC,cAAc,IAAI,GAAG;QAC/B;YACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,aAAa,EAAE,gBAAgB,CAAC,CAAC;YACnE,IAAI,OAAO,EAAE,EAAE,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,CAAC,EAAE;YAClF,IAAI,OAAO,EAAE,EAAE,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,CAAC,EAAE;SACrF;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,aAAa;IAChF;;QAEI,IAAI,IAAI,CAAC,mBAAmB,IAAI,aAAa,CAAC,WAAW,KAAK,OAAO,EAAE,EAAE,OAAO,EAAE;;QAElF,IAAI,MAAM,GAAG,IAAI,CAAC,sBAAsB,CAAC,aAAa,CAAC,CAAC;;;QAGxD,IAAI,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;QAEtB,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO;QACjC;YACI,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;YAC/B,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;SAC5B;;QAED,IAAI,eAAe,GAAG,IAAI,CAAC,8BAA8B,CAAC,KAAK,CAAC,CAAC;;QAEjE,IAAI,gBAAgB,GAAG,IAAI,CAAC,oCAAoC,CAAC,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,eAAe,CAAC,CAAC;;QAEzG,gBAAgB,CAAC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;;QAE5C,IAAI,CAAC,kBAAkB,CAAC,gBAAgB,EAAE,IAAI,CAAC,QAAQ,CAAC,mBAAmB,EAAE,IAAI,CAAC,qBAAqB,EAAE,KAAK,CAAC,CAAC;;QAEhH,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,gBAAgB,CAAC,CAAC;QAC1C,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,IAAI,KAAK,CAAC,WAAW,KAAK,KAAK;QAChE;YACI,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,gBAAgB,CAAC,CAAC;SAC3C;;QAED;;;YAGI,IAAI,CAAC,kCAAkC,CAAC,eAAe,CAAC,UAAU,CAAC,CAAC;SACvE;KACJ,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,qBAAqB,GAAG,SAAS,qBAAqB,EAAE,gBAAgB,EAAE,aAAa,EAAE,GAAG;IACzH;QACI,IAAI,IAAI,GAAG,gBAAgB,CAAC,IAAI,CAAC;;QAEjC,IAAI,EAAE,GAAG,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC;;QAE1C,IAAI,OAAO,IAAI,IAAI,CAAC,WAAW,KAAK,OAAO,IAAI,IAAI,CAAC,WAAW,KAAK,KAAK,CAAC,CAAC;;QAE3E,IAAI,YAAY,GAAG,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC;;;QAGrD,IAAI,GAAG,IAAI,CAAC,YAAY;QACxB;YACI,YAAY,GAAG,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,GAAG,IAAI,uBAAuB,CAAC,EAAE,CAAC,CAAC;SACtF;;QAED,IAAI,YAAY,KAAK,SAAS,EAAE,EAAE,OAAO,EAAE;;QAE3C,IAAI,GAAG,IAAI,IAAI,CAAC,iBAAiB;QACjC;YACI,IAAI,CAAC,YAAY,CAAC,IAAI;YACtB;gBACI,YAAY,CAAC,IAAI,GAAG,IAAI,CAAC;gBACzB,IAAI,CAAC,kBAAkB,CAAC,aAAa,EAAE,aAAa,EAAE,gBAAgB,CAAC,CAAC;gBACxE,IAAI,OAAO;gBACX;oBACI,IAAI,CAAC,kBAAkB,CAAC,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,CAAC;iBACzE;aACJ;;;;YAID,IAAI,OAAO,IAAI,IAAI,CAAC,MAAM,KAAK,IAAI;YACnC;gBACI,IAAI,CAAC,MAAM,GAAG,aAAa,CAAC,MAAM,CAAC;aACtC;SACJ;aACI,IAAI,YAAY,CAAC,IAAI;QAC1B;YACI,YAAY,CAAC,IAAI,GAAG,KAAK,CAAC;YAC1B,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,YAAY,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;YAChE,IAAI,OAAO;YACX;gBACI,IAAI,CAAC,aAAa,CAAC,aAAa,EAAE,UAAU,EAAE,gBAAgB,CAAC,CAAC;aACnE;;YAED,IAAI,YAAY,CAAC,IAAI;YACrB;gBACI,OAAO,aAAa,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC;aAC5C;SACJ;KACJ,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,aAAa;IAClF;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,sBAAsB,CAAC,aAAa,CAAC,CAAC;;;QAGxD,IAAI,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;QAEtB,IAAI,eAAe,GAAG,IAAI,CAAC,8BAA8B,CAAC,KAAK,CAAC,CAAC;;QAEjE,IAAI,gBAAgB,GAAG,IAAI,CAAC,oCAAoC,CAAC,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,eAAe,CAAC,CAAC;;QAEzG,gBAAgB,CAAC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;;QAE5C,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO;QACjC;YACI,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;SACjC;;QAED,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,gBAAgB,CAAC,CAAC;QAC3C,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO,IAAI,KAAK,CAAC,WAAW,KAAK,KAAK;QAChE;YACI,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,gBAAgB,CAAC,CAAC;SAC5C;KACJ,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,SAAS,CAAC,8BAA8B,GAAG,SAAS,8BAA8B,EAAE,KAAK;IAC5G;QACI,IAAI,SAAS,GAAG,KAAK,CAAC,SAAS,CAAC;;QAEhC,IAAI,eAAe,CAAC;;QAEpB,IAAI,SAAS,KAAK,gBAAgB,IAAI,KAAK,CAAC,WAAW,KAAK,OAAO;QACnE;YACI,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC;SAChC;aACI,IAAI,IAAI,CAAC,qBAAqB,CAAC,SAAS,CAAC;QAC9C;YACI,eAAe,GAAG,IAAI,CAAC,qBAAqB,CAAC,SAAS,CAAC,CAAC;SAC3D;;QAED;YACI,eAAe,GAAG,IAAI,CAAC,mBAAmB,CAAC,GAAG,EAAE,IAAI,IAAI,eAAe,EAAE,CAAC;YAC1E,eAAe,CAAC,UAAU,GAAG,SAAS,CAAC;YACvC,IAAI,CAAC,qBAAqB,CAAC,SAAS,CAAC,GAAG,eAAe,CAAC;SAC3D;;;QAGD,eAAe,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;;QAEjC,OAAO,eAAe,CAAC;KAC1B,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,SAAS,CAAC,kCAAkC,GAAG,SAAS,kCAAkC,EAAE,SAAS;IACxH;QACI,IAAI,eAAe,GAAG,IAAI,CAAC,qBAAqB,CAAC,SAAS,CAAC,CAAC;;QAE5D,IAAI,eAAe;QACnB;YACI,OAAO,IAAI,CAAC,qBAAqB,CAAC,SAAS,CAAC,CAAC;YAC7C,eAAe,CAAC,KAAK,EAAE,CAAC;YACxB,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;SAClD;KACJ,CAAC;;;;;;;;;;;;IAYF,kBAAkB,CAAC,SAAS,CAAC,oCAAoC,GAAG,SAAS,oCAAoC,EAAE,gBAAgB,EAAE,YAAY,EAAE,eAAe;IAClK;QACI,gBAAgB,CAAC,IAAI,GAAG,eAAe,CAAC;;QAExC,IAAI,CAAC,kBAAkB,CAAC,eAAe,CAAC,MAAM,EAAE,YAAY,CAAC,OAAO,EAAE,YAAY,CAAC,OAAO,CAAC,CAAC;;;QAG5F,IAAI,YAAY,CAAC,WAAW,KAAK,OAAO;QACxC;YACI,YAAY,CAAC,OAAO,GAAG,eAAe,CAAC,MAAM,CAAC,CAAC,CAAC;YAChD,YAAY,CAAC,OAAO,GAAG,eAAe,CAAC,MAAM,CAAC,CAAC,CAAC;SACnD;;QAED,eAAe,CAAC,aAAa,GAAG,YAAY,CAAC;QAC7C,gBAAgB,CAAC,KAAK,EAAE,CAAC;;QAEzB,OAAO,gBAAgB,CAAC;KAC3B,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,sBAAsB,GAAG,SAAS,sBAAsB,EAAE,KAAK;IAC5F;QACI,IAAI,gBAAgB,GAAG,EAAE,CAAC;;QAE1B,IAAI,IAAI,CAAC,mBAAmB,IAAI,KAAK,YAAY,UAAU;QAC3D;YACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;YAC7D;gBACI,IAAI,KAAK,GAAG,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC;;gBAEpC,IAAI,OAAO,KAAK,CAAC,MAAM,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,GAAG,CAAC,CAAC,EAAE;gBACzF,IAAI,OAAO,KAAK,CAAC,OAAO,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,GAAG,CAAC,CAAC,EAAE;gBAC3F,IAAI,OAAO,KAAK,CAAC,SAAS,KAAK,WAAW;gBAC1C;oBACI,KAAK,CAAC,SAAS,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,IAAI,KAAK,CAAC,IAAI,KAAK,YAAY,CAAC;iBAC/E;gBACD,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,EAAE;gBAC7E,IAAI,OAAO,KAAK,CAAC,MAAM,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC,EAAE;gBAC/E,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;gBAC5D,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;gBAC5D,IAAI,OAAO,KAAK,CAAC,WAAW,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,WAAW,GAAG,OAAO,CAAC,EAAE;gBAC9E,IAAI,OAAO,KAAK,CAAC,SAAS,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,SAAS,GAAG,KAAK,CAAC,UAAU,IAAI,CAAC,CAAC,EAAE;gBACxF,IAAI,OAAO,KAAK,CAAC,QAAQ,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,QAAQ,GAAG,KAAK,CAAC,KAAK,IAAI,GAAG,CAAC,EAAE;gBACnF,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;gBAC5D,IAAI,OAAO,KAAK,CAAC,kBAAkB,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,kBAAkB,GAAG,CAAC,CAAC,EAAE;;;;;gBAKtF,IAAI,OAAO,KAAK,CAAC,MAAM,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,EAAE;gBAC1F,IAAI,OAAO,KAAK,CAAC,MAAM,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,EAAE;;;gBAG1F,KAAK,CAAC,YAAY,GAAG,IAAI,CAAC;;gBAE1B,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;aAChC;SACJ;;aAEI,IAAI,KAAK,YAAY,UAAU,KAAK,CAAC,IAAI,CAAC,qBAAqB,IAAI,EAAE,KAAK,YAAY,MAAM,CAAC,YAAY,CAAC,CAAC;QAChH;YACI,IAAI,OAAO,KAAK,CAAC,SAAS,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,SAAS,GAAG,IAAI,CAAC,EAAE;YACvE,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;YAC5D,IAAI,OAAO,KAAK,CAAC,MAAM,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE;YAC9D,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;YAC5D,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;YAC5D,IAAI,OAAO,KAAK,CAAC,WAAW,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,WAAW,GAAG,OAAO,CAAC,EAAE;YAC9E,IAAI,OAAO,KAAK,CAAC,SAAS,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,SAAS,GAAG,gBAAgB,CAAC,EAAE;YACnF,IAAI,OAAO,KAAK,CAAC,QAAQ,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,QAAQ,GAAG,GAAG,CAAC,EAAE;YACpE,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;YAC5D,IAAI,OAAO,KAAK,CAAC,kBAAkB,KAAK,WAAW,EAAE,EAAE,KAAK,CAAC,kBAAkB,GAAG,CAAC,CAAC,EAAE;;;YAGtF,KAAK,CAAC,YAAY,GAAG,IAAI,CAAC;;YAE1B,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SAChC;;QAED;YACI,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SAChC;;QAED,OAAO,gBAAgB,CAAC;KAC3B,CAAC;;;;;;IAMF,kBAAkB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACvD;QACI,IAAI,CAAC,YAAY,EAAE,CAAC;;QAEpB,IAAI,CAAC,kBAAkB,EAAE,CAAC;;QAE1B,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;QAErB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;QAElB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;;QAEtB,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC;;QAElC,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;QAC1B,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC;;QAE/B,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QACxB,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;;QAE7B,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;QAC5B,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC;;QAEjC,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;QAC1B,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC;;QAE/B,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;QACzB,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC;;QAElC,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;;QAE1B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;KAC1B,CAAC;;IAEF,OAAO,kBAAkB,CAAC;CAC7B,CAACC,aAAY,CAAC,CAAC,CAAC;;ACx5EjB;;;;;;;AAOA,AAKA;;;;;;;;;;;;;;;;AAgBA,IAAI,eAAe,GAAG;IAClB,QAAQ,EAAE,IAAI;IACd,SAAS,EAAE,EAAE;IACb,WAAW,EAAE,CAAC;IACd,WAAW,EAAE,IAAI;IACjB,cAAc,EAAE,SAAS,cAAc,CAAC,MAAM,EAAE,eAAe;IAC/D;QACI,KAAK,eAAe,KAAK,KAAK,CAAC,GAAG,eAAe,GAAG,EAAE,CAAC;;QAEvD,IAAI,CAAC,IAAI,CAAC,QAAQ;QAClB;YACI,OAAO,eAAe,CAAC;SAC1B;;QAED,IAAI,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC;;QAEhD,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW;QAC7B;YACI,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC;SAC7B;aACI,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW;QAClC;YACI,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC;SAC7B;;QAED,OAAO,MAAM,CAAC;KACjB;CACJ,CAAC;;;;;;;;AAQF,IAAI,SAAS,GAAG,SAAS,SAAS;AAClC;IACI,IAAI,CAAC,KAAK,EAAE,CAAC;CAChB,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC1C;IACI,IAAI,GAAG,GAAG,IAAI,SAAS,EAAE,CAAC;;IAE1B,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;IACvB,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;IACvB,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;IAC3B,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;IACzB,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;;IAE3B,OAAO,GAAG,CAAC;CACd,CAAC;;;;;AAKF,SAAS,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC1C;;;;;;;IAOI,IAAI,CAAC,KAAK,GAAG,QAAQ,CAAC;;;;;;;;IAQtB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;IAQf,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,KAAK,CAAC;;;;;;;;IAQ7B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;;IAQnB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;CACxB,CAAC;;;;;AAKF,SAAS,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAC9C;IACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;CACtB,CAAC;;;;;;;;AAQF,IAAI,YAAY,GAAG,SAAS,YAAY,CAAC,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM;AAC5E;IACI,KAAK,SAAS,KAAK,KAAK,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC;IAC7C,KAAK,SAAS,KAAK,KAAK,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC;IAC7C,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC;;;;;;IAMvC,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;IAMnB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;;;;;;IAM3B,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;;;;;;IAM3B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;IAMrB,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC;;;;;;IAMvB,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC;;;;;;IAMjB,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;CACnB,CAAC;;;;;;;AAOF,YAAY,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC7C;IACI,OAAO,IAAI,YAAY;QACnB,IAAI,CAAC,KAAK;QACV,IAAI,CAAC,SAAS;QACd,IAAI,CAAC,SAAS;QACd,IAAI,CAAC,MAAM;KACd,CAAC;CACL,CAAC;;;;;AAKF,YAAY,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AACjD;IACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;IACtB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;IACvB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;IACnB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;CACzB,CAAC;;;;;;;;;;;;;AAaF,IAAI,WAAW,GAAG;;IAEd,KAAK,EAAE,SAAS,KAAK,CAAC,YAAY;IAClC;;QAEI,IAAI,UAAU,GAAG,YAAY,CAAC,KAAK,CAAC;QACpC,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;QACjC,IAAI,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC;QACrB,IAAI,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC;QACrB,IAAI,KAAK,CAAC;QACV,IAAI,MAAM,CAAC;;QAEX,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;;QAGlB,IAAI,YAAY,CAAC,IAAI,KAAK,MAAM,CAAC,IAAI;QACrC;YACI,KAAK,GAAG,UAAU,CAAC,MAAM,CAAC;YAC1B,MAAM,GAAG,UAAU,CAAC,MAAM,CAAC;SAC9B;;QAED;YACI,KAAK,GAAG,UAAU,CAAC,KAAK,CAAC;YACzB,MAAM,GAAG,UAAU,CAAC,MAAM,CAAC;SAC9B;;QAED,IAAI,KAAK,KAAK,CAAC,IAAI,MAAM,KAAK,CAAC;QAC/B;YACI,OAAO;SACV;;QAED,IAAI,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;eACtD,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC;;QAExE,SAAS,IAAI,GAAG,CAAC;;QAEjB,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,IAAI,SAAS,CAAC;;QAEpC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE;QAClC;YACI,MAAM,CAAC,IAAI;gBACP,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC;gBAChC,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC;aACpC,CAAC;SACL;;QAED,MAAM,CAAC,IAAI;YACP,MAAM,CAAC,CAAC,CAAC;YACT,MAAM,CAAC,CAAC,CAAC;SACZ,CAAC;KACL;;IAED,WAAW,EAAE,SAAS,WAAW,CAAC,YAAY,EAAE,gBAAgB;IAChE;QACI,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;QACjC,IAAI,KAAK,GAAG,gBAAgB,CAAC,MAAM,CAAC;QACpC,IAAI,OAAO,GAAG,gBAAgB,CAAC,OAAO,CAAC;;QAEvC,IAAI,OAAO,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;QAC/B,IAAI,MAAM,GAAG,OAAO,CAAC;;QAErB,KAAK,CAAC,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,EAAE,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;;QAEvD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC;QACzC;YACI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;;;YAGrC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC;SAC5C;KACJ;CACJ,CAAC;;;;;;;;;;;;AAYF,SAAS,SAAS,EAAE,YAAY,EAAE,gBAAgB;AAClD;IACI,IAAI,YAAY,CAAC,SAAS,CAAC,MAAM;IACjC;QACI,eAAe,CAAC,YAAY,EAAE,gBAAgB,CAAC,CAAC;KACnD;;IAED;QACI,WAAW,CAAC,YAAY,EAAE,gBAAgB,CAAC,CAAC;KAC/C;CACJ;;;;;;;;;;;;AAYD,SAAS,WAAW,CAAC,YAAY,EAAE,gBAAgB;AACnD;IACI,IAAI,KAAK,GAAG,YAAY,CAAC,KAAK,CAAC;IAC/B,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;IACzD,IAAI,GAAG,GAAG,gBAAgB,CAAC,aAAa,CAAC;;IAEzC,IAAI,MAAM,CAAC,MAAM,KAAK,CAAC;IACvB;QACI,OAAO;KACV;;;;;;;;;;;IAWD,IAAI,KAAK,GAAG,YAAY,CAAC,SAAS,CAAC;;;IAGnC,IAAI,UAAU,GAAG,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;IACjD,IAAI,SAAS,GAAG,IAAI,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;IAChF,IAAI,WAAW,GAAG,KAAK,CAAC,IAAI,KAAK,MAAM,CAAC,IAAI,IAAI,KAAK,CAAC,WAAW,CAAC;IAClE,IAAI,UAAU,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,GAAG,GAAG;WACpD,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;;;IAGlD,IAAI,WAAW;IACf;;QAEI,MAAM,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC;;QAExB,IAAI,UAAU;QACd;YACI,MAAM,CAAC,GAAG,EAAE,CAAC;YACb,MAAM,CAAC,GAAG,EAAE,CAAC;YACb,SAAS,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;SACvE;;QAED,IAAI,SAAS,GAAG,SAAS,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC;QACnE,IAAI,SAAS,GAAG,SAAS,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC;;QAEnE,MAAM,CAAC,OAAO,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;QACrC,MAAM,CAAC,IAAI,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;KACrC;;IAED,IAAI,KAAK,GAAG,gBAAgB,CAAC,MAAM,CAAC;IACpC,IAAI,MAAM,GAAG,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;IAC/B,IAAI,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC;IAC/B,IAAI,UAAU,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;;;IAGlC,IAAI,KAAK,GAAG,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC;;;IAG5B,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;IACpB,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;IACpB,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;IACpB,IAAI,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;IACpB,IAAI,GAAG,GAAG,CAAC,CAAC;IACZ,IAAI,GAAG,GAAG,CAAC,CAAC;;IAEZ,IAAI,KAAK,GAAG,EAAE,GAAG,GAAG,GAAG,CAAC,CAAC;IACzB,IAAI,KAAK,GAAG,GAAG,GAAG,GAAG,CAAC;IACtB,IAAI,MAAM,GAAG,CAAC,CAAC;IACf,IAAI,MAAM,GAAG,CAAC,CAAC;IACf,IAAI,MAAM,GAAG,CAAC,CAAC;IACf,IAAI,MAAM,GAAG,CAAC,CAAC;;IAEf,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,KAAK,GAAG,KAAK,KAAK,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC;;IAExD,KAAK,IAAI,IAAI,CAAC;IACd,KAAK,IAAI,IAAI,CAAC;IACd,KAAK,IAAI,KAAK,CAAC;IACf,KAAK,IAAI,KAAK,CAAC;;IAEf,IAAI,KAAK,GAAG,KAAK,CAAC,SAAS,CAAC;IAC5B,IAAI,EAAE,GAAG,CAAC,CAAC,GAAG,KAAK,IAAI,CAAC,CAAC;IACzB,IAAI,EAAE,GAAG,KAAK,GAAG,CAAC,CAAC;;;IAGnB,KAAK,CAAC,IAAI;QACN,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC;QAClB,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC;;IAExB,KAAK,CAAC,IAAI;QACN,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC;QAClB,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC;;IAExB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,GAAG,CAAC,EAAE,EAAE,CAAC;IACnC;QACI,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;QAC1B,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;;QAEhC,GAAG,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;QACpB,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;;QAE1B,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;QAC1B,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;;QAEhC,KAAK,GAAG,EAAE,GAAG,GAAG,GAAG,CAAC,CAAC;QACrB,KAAK,GAAG,GAAG,GAAG,GAAG,CAAC;;QAElB,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,KAAK,GAAG,KAAK,KAAK,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC;QACpD,KAAK,IAAI,IAAI,CAAC;QACd,KAAK,IAAI,IAAI,CAAC;QACd,KAAK,IAAI,KAAK,CAAC;QACf,KAAK,IAAI,KAAK,CAAC;;QAEf,MAAM,GAAG,EAAE,GAAG,GAAG,GAAG,CAAC,CAAC;QACtB,MAAM,GAAG,GAAG,GAAG,GAAG,CAAC;;QAEnB,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,MAAM,GAAG,MAAM,KAAK,MAAM,GAAG,MAAM,CAAC,CAAC,CAAC;QACxD,MAAM,IAAI,IAAI,CAAC;QACf,MAAM,IAAI,IAAI,CAAC;QACf,MAAM,IAAI,KAAK,CAAC;QAChB,MAAM,IAAI,KAAK,CAAC;;QAEhB,IAAI,EAAE,GAAG,CAAC,CAAC,KAAK,GAAG,GAAG,KAAK,CAAC,KAAK,GAAG,GAAG,CAAC,CAAC;QACzC,IAAI,EAAE,GAAG,CAAC,CAAC,KAAK,GAAG,GAAG,KAAK,CAAC,KAAK,GAAG,GAAG,CAAC,CAAC;QACzC,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,GAAG,GAAG,KAAK,CAAC,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC,CAAC,KAAK,GAAG,GAAG,KAAK,CAAC,KAAK,GAAG,GAAG,CAAC,CAAC,CAAC;QAC/E,IAAI,EAAE,GAAG,CAAC,CAAC,MAAM,GAAG,GAAG,KAAK,CAAC,MAAM,GAAG,GAAG,CAAC,CAAC;QAC3C,IAAI,EAAE,GAAG,CAAC,CAAC,MAAM,GAAG,GAAG,KAAK,CAAC,MAAM,GAAG,GAAG,CAAC,CAAC;QAC3C,IAAI,EAAE,GAAG,CAAC,CAAC,CAAC,MAAM,GAAG,GAAG,KAAK,CAAC,MAAM,GAAG,GAAG,CAAC,KAAK,CAAC,CAAC,MAAM,GAAG,GAAG,KAAK,CAAC,MAAM,GAAG,GAAG,CAAC,CAAC,CAAC;;QAEnF,IAAI,KAAK,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;;QAElC,IAAI,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,GAAG;QACzB;YACI,KAAK,IAAI,IAAI,CAAC;YACd,KAAK,CAAC,IAAI;gBACN,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC;gBAClB,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC;;YAExB,KAAK,CAAC,IAAI;gBACN,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC;gBAClB,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC;;YAExB,SAAS;SACZ;;QAED,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,KAAK,CAAC;QACzC,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,KAAK,CAAC;QACzC,IAAI,KAAK,GAAG,CAAC,CAAC,EAAE,GAAG,GAAG,KAAK,EAAE,GAAG,GAAG,CAAC,KAAK,CAAC,EAAE,GAAG,GAAG,KAAK,EAAE,GAAG,GAAG,CAAC,CAAC,CAAC;;QAElE,IAAI,KAAK,IAAI,GAAG,GAAG,KAAK,GAAG,KAAK,CAAC;QACjC;YACI,MAAM,GAAG,KAAK,GAAG,MAAM,CAAC;YACxB,MAAM,GAAG,KAAK,GAAG,MAAM,CAAC;;YAExB,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,MAAM,GAAG,MAAM,KAAK,MAAM,GAAG,MAAM,CAAC,CAAC,CAAC;YACxD,MAAM,IAAI,IAAI,CAAC;YACf,MAAM,IAAI,IAAI,CAAC;YACf,MAAM,IAAI,KAAK,CAAC;YAChB,MAAM,IAAI,KAAK,CAAC;;YAEhB,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,MAAM,GAAG,EAAE,CAAC,EAAE,GAAG,IAAI,MAAM,GAAG,EAAE,CAAC,CAAC,CAAC;;YAErD,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,MAAM,GAAG,EAAE,CAAC,EAAE,GAAG,IAAI,MAAM,GAAG,EAAE,CAAC,CAAC,CAAC;;YAErD,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,MAAM,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,IAAI,MAAM,GAAG,EAAE,CAAC,CAAC,CAAC;;YAE1D,UAAU,EAAE,CAAC;SAChB;;QAED;YACI,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,EAAE,GAAG,GAAG,IAAI,EAAE,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,GAAG,GAAG,IAAI,EAAE,CAAC,CAAC,CAAC;;YAE7D,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,EAAE,GAAG,GAAG,IAAI,EAAE,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,GAAG,GAAG,IAAI,EAAE,CAAC,CAAC,CAAC;SAChE;KACJ;;IAED,GAAG,GAAG,MAAM,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;IAC/B,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;;IAErC,GAAG,GAAG,MAAM,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;IAC/B,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;;IAErC,KAAK,GAAG,EAAE,GAAG,GAAG,GAAG,CAAC,CAAC;IACrB,KAAK,GAAG,GAAG,GAAG,GAAG,CAAC;;IAElB,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,KAAK,GAAG,KAAK,KAAK,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC;IACpD,KAAK,IAAI,IAAI,CAAC;IACd,KAAK,IAAI,IAAI,CAAC;IACd,KAAK,IAAI,KAAK,CAAC;IACf,KAAK,IAAI,KAAK,CAAC;;IAEf,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,EAAE,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC;;IAEnD,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,EAAE,GAAG,IAAI,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC;;IAEnD,IAAI,OAAO,GAAG,gBAAgB,CAAC,OAAO,CAAC;;;;IAIvC,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,GAAG,CAAC,EAAE,EAAE,GAAG;IAC7C;QACI,OAAO,CAAC,IAAI,CAAC,UAAU,EAAE,UAAU,GAAG,CAAC,EAAE,UAAU,GAAG,CAAC,CAAC,CAAC;;QAEzD,UAAU,EAAE,CAAC;KAChB;CACJ;;;;;;;;;;;;AAYD,SAAS,eAAe,CAAC,YAAY,EAAE,gBAAgB;AACvD;IACI,IAAI,CAAC,GAAG,CAAC,CAAC;;IAEV,IAAI,KAAK,GAAG,YAAY,CAAC,KAAK,CAAC;IAC/B,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC;IACjD,IAAI,WAAW,GAAG,KAAK,CAAC,IAAI,KAAK,MAAM,CAAC,IAAI,IAAI,KAAK,CAAC,WAAW,CAAC;;IAElE,IAAI,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,EAAE,OAAO,EAAE;;IAEpC,IAAI,KAAK,GAAG,gBAAgB,CAAC,MAAM,CAAC;IACpC,IAAI,OAAO,GAAG,gBAAgB,CAAC,OAAO,CAAC;IACvC,IAAI,MAAM,GAAG,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;IAE/B,IAAI,UAAU,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;IAClC,IAAI,YAAY,GAAG,UAAU,CAAC;;IAE9B,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;;IAEjC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE;IAC3B;QACI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAC/C,OAAO,CAAC,IAAI,CAAC,YAAY,EAAE,YAAY,GAAG,CAAC,CAAC,CAAC;;QAE7C,YAAY,EAAE,CAAC;KAClB;;IAED,IAAI,WAAW;IACf;QACI,OAAO,CAAC,IAAI,CAAC,YAAY,EAAE,UAAU,CAAC,CAAC;KAC1C;CACJ;;;;;;;;;;;;;AAaD,IAAI,SAAS,GAAG;;IAEZ,KAAK,EAAE,SAAS,KAAK,CAAC,YAAY;IAClC;QACI,YAAY,CAAC,MAAM,GAAG,YAAY,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;KAC3D;;IAED,WAAW,EAAE,SAAS,WAAW,CAAC,YAAY,EAAE,gBAAgB;IAChE;QACI,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;QACjC,IAAI,KAAK,GAAG,YAAY,CAAC,KAAK,CAAC;QAC/B,IAAI,KAAK,GAAG,gBAAgB,CAAC,MAAM,CAAC;QACpC,IAAI,OAAO,GAAG,gBAAgB,CAAC,OAAO,CAAC;;QAEvC,IAAI,MAAM,CAAC,MAAM,IAAI,CAAC;QACtB;YACI,IAAI,SAAS,GAAG,EAAE,CAAC;;;YAGnB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE;YACrC;gBACI,IAAI,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;;gBAEpB,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;gBAClC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;aACvC;;;YAGD,IAAI,SAAS,GAAGS,QAAM,CAAC,MAAM,EAAE,SAAS,EAAE,CAAC,CAAC,CAAC;;YAE7C,IAAI,CAAC,SAAS;YACd;gBACI,OAAO;aACV;;YAED,IAAI,OAAO,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;;YAE/B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,SAAS,CAAC,MAAM,EAAE,GAAG,IAAI,CAAC;YAClD;gBACI,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,CAAC;gBACvC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC;gBAC3C,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC;aAC9C;;YAED,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,EAAE;YAC5C;gBACI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;aAC3B;SACJ;KACJ;CACJ,CAAC;;;;;;;;;;;;;AAaF,IAAI,cAAc,GAAG;;IAEjB,KAAK,EAAE,SAAS,KAAK,CAAC,YAAY;IAClC;;;;QAII,IAAI,QAAQ,GAAG,YAAY,CAAC,KAAK,CAAC;QAClC,IAAI,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC;QACnB,IAAI,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC;QACnB,IAAI,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;QAC3B,IAAI,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;;QAE7B,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;;QAEjC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;QAElB,MAAM,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC;YACZ,CAAC,GAAG,KAAK,EAAE,CAAC;YACZ,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,MAAM;YACrB,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,CAAC;KACtB;;IAED,WAAW,EAAE,SAAS,WAAW,CAAC,YAAY,EAAE,gBAAgB;IAChE;QACI,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;QACjC,IAAI,KAAK,GAAG,gBAAgB,CAAC,MAAM,CAAC;;QAEpC,IAAI,OAAO,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;;QAE/B,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC;YAC3B,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC;YACpB,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC;YACpB,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;;QAE1B,gBAAgB,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,OAAO,GAAG,CAAC,EAAE,OAAO,GAAG,CAAC;YAC3D,OAAO,GAAG,CAAC,EAAE,OAAO,GAAG,CAAC,EAAE,OAAO,GAAG,CAAC,CAAC,CAAC;KAC9C;CACJ,CAAC;;;;;;;;;;;;;AAaF,IAAI,qBAAqB,GAAG;;IAExB,KAAK,EAAE,SAAS,KAAK,CAAC,YAAY;IAClC;QACI,IAAI,SAAS,GAAG,YAAY,CAAC,KAAK,CAAC;QACnC,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;QACjC,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC;QACpB,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC;QACpB,IAAI,KAAK,GAAG,SAAS,CAAC,KAAK,CAAC;QAC5B,IAAI,MAAM,GAAG,SAAS,CAAC,MAAM,CAAC;;QAE9B,IAAI,MAAM,GAAG,SAAS,CAAC,MAAM,CAAC;;QAE9B,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;QAElB,oBAAoB,CAAC,CAAC,EAAE,CAAC,GAAG,MAAM;YAC9B,CAAC,EAAE,CAAC;YACJ,CAAC,GAAG,MAAM,EAAE,CAAC;YACb,MAAM,CAAC,CAAC;QACZ,oBAAoB,CAAC,CAAC,GAAG,KAAK,GAAG,MAAM;YACnC,CAAC,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC;YACf,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,MAAM;YACrB,MAAM,CAAC,CAAC;QACZ,oBAAoB,CAAC,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,MAAM,GAAG,MAAM;YAC/C,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,MAAM;YACrB,CAAC,GAAG,KAAK,GAAG,MAAM,EAAE,CAAC,GAAG,MAAM;YAC9B,MAAM,CAAC,CAAC;QACZ,oBAAoB,CAAC,CAAC,GAAG,MAAM,EAAE,CAAC,GAAG,MAAM;YACvC,CAAC,EAAE,CAAC,GAAG,MAAM;YACb,CAAC,EAAE,CAAC,GAAG,MAAM,GAAG,MAAM;YACtB,MAAM,CAAC,CAAC;;;;KAIf;;IAED,WAAW,EAAE,SAAS,WAAW,CAAC,YAAY,EAAE,gBAAgB;IAChE;QACI,IAAI,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;;QAEjC,IAAI,KAAK,GAAG,gBAAgB,CAAC,MAAM,CAAC;QACpC,IAAI,OAAO,GAAG,gBAAgB,CAAC,OAAO,CAAC;;QAEvC,IAAI,MAAM,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;;QAE9B,IAAI,SAAS,GAAGA,QAAM,CAAC,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;;QAExC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC;QACnD;YACI,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC;;YAEpC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC;;YAExC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC;SAC3C;;QAED,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,GAAG,GAAG,EAAE,GAAG,EAAE;QACvD;YACI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,MAAM,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC;SAC1C;KACJ;CACJ,CAAC;;;;;;;;;;;;;;;AAeF,SAAS,KAAK,CAAC,EAAE,EAAE,EAAE,EAAE,IAAI;AAC3B;IACI,IAAI,IAAI,GAAG,EAAE,GAAG,EAAE,CAAC;;IAEnB,OAAO,EAAE,IAAI,IAAI,GAAG,IAAI,CAAC,CAAC;CAC7B;;;;;;;;;;;;;;;;;;;AAmBD,SAAS,oBAAoB,CAAC,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG;AACnE;IACI,KAAK,GAAG,KAAK,KAAK,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;;IAE/B,IAAI,CAAC,GAAG,EAAE,CAAC;IACX,IAAI,MAAM,GAAG,GAAG,CAAC;;IAEjB,IAAI,EAAE,GAAG,CAAC,CAAC;IACX,IAAI,EAAE,GAAG,CAAC,CAAC;IACX,IAAI,EAAE,GAAG,CAAC,CAAC;IACX,IAAI,EAAE,GAAG,CAAC,CAAC;IACX,IAAI,CAAC,GAAG,CAAC,CAAC;IACV,IAAI,CAAC,GAAG,CAAC,CAAC;;IAEV,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC;IAClC;QACI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;;;QAGV,EAAE,GAAG,KAAK,CAAC,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;QAC1B,EAAE,GAAG,KAAK,CAAC,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;QAC1B,EAAE,GAAG,KAAK,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;QACxB,EAAE,GAAG,KAAK,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;;;QAGxB,CAAC,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;QACrB,CAAC,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC;;QAErB,MAAM,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;KACrB;;IAED,OAAO,MAAM,CAAC;CACjB;;AAED,IAAI,UAAU,GAAG,EAAE,CAAC;AACpB,IAAI,cAAc,GAAG,EAAE,CAAC;AACxB,IAAI,QAAQ,GAAG,IAAI,KAAK,EAAE,CAAC;;;;;;;;AAQ3B,IAAI,YAAY,GAAG,EAAE,CAAC;;AAEtB,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,SAAS,CAAC;AACtC,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,WAAW,CAAC;AACxC,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,WAAW,CAAC;AACxC,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,cAAc,CAAC;AAC3C,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,qBAAqB,CAAC;;;;;;;AAOlD,IAAI,SAAS,GAAG,SAAS,SAAS;AAClC;IACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;IACd,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;IACf,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;IACrB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;CACvB,CAAC;;;;;;;;;;;;;AAaF,IAAI,gBAAgB,iBAAiB,UAAU,aAAa,EAAE;IAC1D,SAAS,gBAAgB;IACzB;QACI,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;QAQzB,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC;;;;;;;;QAQjB,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC;;;;;;;;QAQjB,IAAI,CAAC,GAAG,GAAG,EAAE,CAAC;;;;;;;;QAQd,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;;;;;;;;QAQlB,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;;;;;;;;QAQrB,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;;;;;;;;QAQvB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;QAQf,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;;;;;;;;QAQrB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;;;;;;;;;QASrB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;;;;;;;QAQpB,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;;;;;;;;;QASpB,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;;;;;;;;QAQlB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;;;;;;;QAQpB,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;QAQ5B,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC,CAAC;;;;;;;;QAQtB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;QAEvB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;QAEvB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;;QAE1B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;;;;;;;QAQvB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;KAC7B;;IAED,KAAK,aAAa,GAAG,gBAAgB,CAAC,SAAS,GAAG,aAAa,CAAC;IAChE,gBAAgB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,aAAa,IAAI,aAAa,CAAC,SAAS,EAAE,CAAC;IACvF,gBAAgB,CAAC,SAAS,CAAC,WAAW,GAAG,gBAAgB,CAAC;;IAE1D,IAAI,kBAAkB,GAAG,EAAE,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;IAQ5D,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,IAAI,IAAI,CAAC,WAAW,KAAK,IAAI,CAAC,KAAK;QACnC;YACI,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC;YAC9B,IAAI,CAAC,eAAe,EAAE,CAAC;SAC1B;;QAED,OAAO,IAAI,CAAC,OAAO,CAAC;KACvB,CAAC;;;;;;IAMF,gBAAgB,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IAC3D;QACI,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC,CAAC;QACtB,IAAI,CAAC,KAAK,EAAE,CAAC;QACb,IAAI,CAAC,UAAU,EAAE,CAAC;QAClB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;QAEpB,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;QACvB,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;QACvB,IAAI,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC;QACpB,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;QACxB,IAAI,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,CAAC;;QAE3B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE;QAC9C;YACI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC;YACtC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;SAC1C;;QAED,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;;QAE1B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE;QAClD;YACI,IAAI,KAAK,IAAI,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;;YAE/B,KAAK,CAAC,KAAK,GAAG,CAAC,CAAC;YAChB,KAAK,CAAC,WAAW,GAAG,CAAC,CAAC;YACtB,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC;YACnB,UAAU,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SAC1B;;QAED,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;KAC3B,CAAC;;;;;;;IAOF,gBAAgB,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACjD;QACI,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,GAAG,CAAC;QAChC;YACI,IAAI,CAAC,UAAU,EAAE,CAAC;YAClB,IAAI,CAAC,UAAU,EAAE,CAAC;YAClB,IAAI,CAAC,YAAY,CAAC,MAAM,GAAG,CAAC,CAAC;SAChC;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;IAWF,gBAAgB,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM;IAC9F;QACI,IAAI,IAAI,GAAG,IAAI,YAAY,CAAC,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC;;QAEjE,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC7B,IAAI,CAAC,KAAK,EAAE,CAAC;;QAEb,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;IASF,gBAAgB,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,KAAK,EAAE,MAAM;IACtE;QACI,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,MAAM;QAC7B;YACI,OAAO,IAAI,CAAC;SACf;;QAED,IAAI,IAAI,GAAG,IAAI,YAAY,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;;QAEvD,IAAI,SAAS,GAAG,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,YAAY,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;QAEhE,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC,SAAS,CAAC;;QAErC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAE3B,IAAI,CAAC,KAAK,EAAE,CAAC;;QAEb,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;;IAcF,gBAAgB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,OAAO;IAC9D;QACI,aAAa,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;;;QAGpD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,EAAE,CAAC;QACjD;YACI,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;SAClC;;QAED,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;QACvB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;QACvB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC;QACpB,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC;QAChB,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;QACxB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC;QAC3B,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QACxB,IAAI,CAAC,YAAY,CAAC,MAAM,GAAG,CAAC,CAAC;QAC7B,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;QACzB,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;QAC1B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;QACtB,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;QACxB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;KACvB,CAAC;;;;;;;;IAQF,gBAAgB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,KAAK;IACxE;QACI,IAAI,YAAY,GAAG,IAAI,CAAC,YAAY,CAAC;;QAErC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,YAAY,CAAC,MAAM,EAAE,EAAE,CAAC;QAC5C;YACI,IAAI,IAAI,GAAG,YAAY,CAAC,CAAC,CAAC,CAAC;;YAE3B,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO;YAC3B;gBACI,SAAS;aACZ;;;YAGD,IAAI,IAAI,CAAC,KAAK;YACd;gBACI,IAAI,IAAI,CAAC,MAAM;gBACf;oBACI,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;iBAC7C;;gBAED;oBACI,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;iBAC5B;;gBAED,IAAI,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC;gBAC/C;oBACI,IAAI,IAAI,CAAC,KAAK;oBACd;wBACI,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,GAAG,EAAE;wBAChD;4BACI,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;;4BAE3B,IAAI,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC;4BAC/C;gCACI,OAAO,KAAK,CAAC;6BAChB;yBACJ;qBACJ;;oBAED,OAAO,IAAI,CAAC;iBACf;aACJ;SACJ;;QAED,OAAO,KAAK,CAAC;KAChB,CAAC;;;;;;IAMF,gBAAgB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IACjE;QACI,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI,CAAC,UAAU,EAAE,EAAE,OAAO,EAAE;QAC/C,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,KAAK,CAAC;QAClC;YACI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;;YAEtB,OAAO;SACV;;QAED,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI,CAAC,UAAU;QAClC;YACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,EAAE;YACjD;gBACI,IAAI,IAAI,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;;gBAEhC,IAAI,IAAI,CAAC,SAAS,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,WAAW,CAAC,KAAK,EAAE,EAAE,OAAO,EAAE;gBAC5E,IAAI,IAAI,CAAC,SAAS,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,WAAW,CAAC,KAAK,EAAE,EAAE,OAAO,EAAE;aAC/E;SACJ;;QAED,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC;;QAE7B,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;;QAEnB,IAAI,SAAS,GAAG,IAAI,CAAC;QACrB,IAAI,cAAc,GAAG,IAAI,CAAC;QAC1B,IAAI,YAAY,GAAG,CAAC,CAAC;QACrB,IAAI,aAAa,GAAG,KAAK,CAAC;;QAE1B,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC;QAC3B;YACI,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;YAElD,IAAI,KAAK,GAAG,SAAS,CAAC,KAAK,CAAC;;YAE5B,cAAc,GAAG,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC;YAC3C,YAAY,GAAG,KAAK,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;YACzC,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC;SAClC;;QAED,KAAK,IAAI,GAAG,GAAG,IAAI,CAAC,UAAU,EAAE,GAAG,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,GAAG,EAAE;QACrE;YACI,IAAI,CAAC,UAAU,EAAE,CAAC;;YAElB,IAAI,MAAM,GAAG,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC;YACpC,IAAI,OAAO,GAAG,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;;YAExC,IAAI,SAAS,GAAG,MAAM,CAAC,SAAS,CAAC;YACjC,IAAI,SAAS,GAAG,MAAM,CAAC,SAAS,CAAC;;;YAGjC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;;YAEtB,IAAI,MAAM,CAAC,MAAM;YACjB;gBACI,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;aACtD;;YAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE;YAC1B;gBACI,IAAI,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,SAAS,GAAG,SAAS,CAAC;;gBAEhD,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,SAAS,EAAE;;gBAEnC,IAAI,WAAW,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC;;gBAE9C,IAAI,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;gBAClC,IAAI,WAAW,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;;gBAGzC,IAAI,SAAS;wBACL,cAAc,KAAK,WAAW;uBAC/B,YAAY,MAAM,OAAO,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;uBAChD,aAAa,KAAK,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC;gBAC1C;oBACI,SAAS,CAAC,IAAI,GAAG,OAAO,GAAG,SAAS,CAAC,KAAK,CAAC;oBAC3C,SAAS,CAAC,UAAU,GAAG,WAAW,GAAG,SAAS,CAAC,WAAW,CAAC;;oBAE3D,IAAI,SAAS,CAAC,IAAI,GAAG,CAAC;oBACtB;wBACI,SAAS,GAAG,IAAI,CAAC;qBACpB;iBACJ;;gBAED,IAAI,CAAC,SAAS;gBACd;oBACI,SAAS,GAAG,UAAU,CAAC,GAAG,EAAE,IAAI,IAAI,SAAS,EAAE,CAAC;oBAChD,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;oBAC7B,WAAW,CAAC,QAAQ,GAAG,UAAU,CAAC,MAAM,CAAC;oBACzC,cAAc,GAAG,WAAW,CAAC;oBAC7B,YAAY,GAAG,OAAO,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;oBAC7C,aAAa,GAAG,OAAO,CAAC,MAAM,CAAC;;oBAE/B,SAAS,CAAC,KAAK,GAAG,OAAO,CAAC;oBAC1B,SAAS,CAAC,KAAK,GAAG,OAAO,CAAC;oBAC1B,SAAS,CAAC,WAAW,GAAG,WAAW,CAAC;iBACvC;;gBAED,IAAI,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;gBAEnC,IAAI,CAAC,KAAK,CAAC;gBACX;oBACI,IAAI,MAAM,CAAC,KAAK,CAAC,MAAM;oBACvB;wBACI,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;;wBAEhC,SAAS,CAAC,WAAW,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;qBACvC;;oBAED;wBACI,OAAO,CAAC,WAAW,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;qBACrC;iBACJ;;gBAED;oBACI,SAAS,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;;oBAExB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,KAAK,CAAC,MAAM,EAAE,GAAG,EAAE;oBAClD;wBACI,SAAS,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,IAAI,CAAC,CAAC;qBACtC;iBACJ;;gBAED,IAAI,IAAI,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,IAAI,KAAK,CAAC;;gBAE5C,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,EAAE,OAAO,CAAC,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC;aAC/E;SACJ;;QAED,IAAI,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;QAChC,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;QAEpC,IAAI,CAAC,SAAS;QACd;;;YAGI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;;YAEtB,OAAO;SACV;;QAED,SAAS,CAAC,IAAI,GAAG,KAAK,GAAG,SAAS,CAAC,KAAK,CAAC;QACzC,SAAS,CAAC,UAAU,GAAG,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC;QACtD,IAAI,CAAC,aAAa,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;;;QAGnD,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,WAAW,EAAE,CAAC;;QAEpC,IAAI,IAAI,CAAC,SAAS;QAClB;YACI,IAAI,CAAC,UAAU,EAAE,CAAC;;YAElB,IAAI,CAAC,UAAU,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;;YAG7C,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE;YAClD;gBACI,IAAI,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;;gBAE9B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,IAAI,EAAE,GAAG,EAAE;gBACzC;oBACI,IAAI,OAAO,GAAG,KAAK,CAAC,KAAK,GAAG,GAAG,CAAC;;oBAEhC,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,WAAW,CAAC;iBACjF;aACJ;SACJ;;QAED;YACI,IAAI,CAAC,cAAc,EAAE,CAAC;SACzB;KACJ,CAAC;;;;;;;IAOF,gBAAgB,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;IAC7D;QACI,IAAI,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;;QAE3B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;QACvC;YACI,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM;YAC3B;gBACI,OAAO,KAAK,CAAC;aAChB;SACJ;;QAED,QAAQ,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,gBAAgB,CAAC,cAAc,GAAG,CAAC,EAAE;KACrE,CAAC;;;;;;IAMF,gBAAgB,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;IACnE;QACI,IAAI,IAAI,GAAG,EAAE,WAAW,CAAC,YAAY,CAAC;;QAEtC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE;QAC9C;YACI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC;YACtC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;SAC1C;;QAED,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;;QAE1B,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;QACnB,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;QACzB,IAAI,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;;QAEjC,IAAI,YAAY,IAAI,cAAc,CAAC,GAAG,EAAE,IAAI,IAAI,aAAa,EAAE,CAAC;;QAEhE,YAAY,CAAC,YAAY,GAAG,CAAC,CAAC;QAC9B,YAAY,CAAC,KAAK,GAAG,CAAC,CAAC;QACvB,YAAY,CAAC,IAAI,GAAG,CAAC,CAAC;QACtB,YAAY,CAAC,IAAI,GAAG,UAAU,CAAC,SAAS,CAAC;;QAEzC,IAAI,YAAY,GAAG,CAAC,CAAC;QACrB,IAAI,cAAc,GAAG,IAAI,CAAC;QAC1B,IAAI,SAAS,GAAG,CAAC,CAAC;QAClB,IAAI,MAAM,GAAG,KAAK,CAAC;QACnB,IAAI,QAAQ,GAAG,UAAU,CAAC,SAAS,CAAC;;QAEpC,IAAI,KAAK,GAAG,CAAC,CAAC;;QAEd,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;;;QAGlC,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE;QAClD;YACI,IAAI,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;;;YAG7B,IAAI,YAAY,GAAG,CAAC,CAAC;;YAErB,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;;YAEvB,IAAI,WAAW,GAAG,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC;;YAE5C,IAAI,MAAM,KAAK,CAAC,CAAC,KAAK,CAAC,MAAM;YAC7B;gBACI,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;gBACtB,QAAQ,GAAG,MAAM,GAAG,UAAU,CAAC,KAAK,GAAG,UAAU,CAAC,SAAS,CAAC;;;gBAG5D,cAAc,GAAG,IAAI,CAAC;gBACtB,YAAY,GAAG,YAAY,CAAC;gBAC5B,IAAI,EAAE,CAAC;aACV;;YAED,IAAI,cAAc,KAAK,WAAW;YAClC;gBACI,cAAc,GAAG,WAAW,CAAC;;gBAE7B,IAAI,WAAW,CAAC,aAAa,KAAK,IAAI;gBACtC;oBACI,IAAI,YAAY,KAAK,YAAY;oBACjC;wBACI,IAAI,EAAE,CAAC;;wBAEP,YAAY,GAAG,CAAC,CAAC;;wBAEjB,IAAI,YAAY,CAAC,IAAI,GAAG,CAAC;wBACzB;4BACI,YAAY,GAAG,cAAc,CAAC,GAAG,EAAE,IAAI,IAAI,aAAa,EAAE,CAAC;4BAC3D,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;yBACrC;;wBAED,YAAY,CAAC,KAAK,GAAG,KAAK,CAAC;wBAC3B,YAAY,CAAC,IAAI,GAAG,CAAC,CAAC;wBACtB,YAAY,CAAC,YAAY,GAAG,CAAC,CAAC;wBAC9B,YAAY,CAAC,IAAI,GAAG,QAAQ,CAAC;qBAChC;;;oBAGD,WAAW,CAAC,OAAO,GAAG,CAAC,CAAC;oBACxB,WAAW,CAAC,aAAa,GAAG,IAAI,CAAC;oBACjC,WAAW,CAAC,GAAG,GAAG,YAAY,CAAC;oBAC/B,WAAW,CAAC,QAAQ,GAAG,KAAK,CAAC;;oBAE7B,YAAY,CAAC,QAAQ,CAAC,YAAY,CAAC,YAAY,EAAE,CAAC,GAAG,WAAW,CAAC;oBACjE,YAAY,EAAE,CAAC;iBAClB;aACJ;;YAED,YAAY,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,CAAC;YAC/B,KAAK,IAAI,IAAI,CAAC,IAAI,CAAC;;YAEnB,SAAS,GAAG,WAAW,CAAC,GAAG,CAAC;;YAE5B,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;YAClE,IAAI,CAAC,aAAa,CAAC,UAAU,EAAE,SAAS,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;SAC9D;;QAED,WAAW,CAAC,YAAY,GAAG,IAAI,CAAC;;;;QAIhC,IAAI,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;;;QAGxB,IAAI,QAAQ,GAAG,IAAI,WAAW,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;QACrD,IAAI,GAAG,GAAG,IAAI,YAAY,CAAC,QAAQ,CAAC,CAAC;QACrC,IAAI,GAAG,GAAG,IAAI,WAAW,CAAC,QAAQ,CAAC,CAAC;;QAEpC,IAAI,CAAC,GAAG,CAAC,CAAC;;QAEV,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,GAAG,EAAE;QAC/C;YACI,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;YAC1B,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;;YAEhC,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;YACxB,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;;YAE9B,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;;YAEvB,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;SAC9B;;QAED,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QAC9B,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KAChD,CAAC;;;;;;;;IAQF,gBAAgB,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,KAAK;IACtE;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE;QACrC;YACI,IAAI,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;;YAEpB,IAAI,OAAO,GAAG,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;YAEtC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;;YAEpB,IAAI,IAAI,CAAC,MAAM;YACf;gBACI,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;aAClD;SACJ;KACJ,CAAC;;;;;;IAMF,gBAAgB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;IACrE;QACI,IAAI,IAAI,GAAG,QAAQ,CAAC;QACpB,IAAI,IAAI,GAAG,CAAC,QAAQ,CAAC;;QAErB,IAAI,IAAI,GAAG,QAAQ,CAAC;QACpB,IAAI,IAAI,GAAG,CAAC,QAAQ,CAAC;;QAErB,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM;QAC5B;YACI,IAAI,KAAK,GAAG,IAAI,CAAC;YACjB,IAAI,CAAC,GAAG,CAAC,CAAC;YACV,IAAI,CAAC,GAAG,CAAC,CAAC;YACV,IAAI,CAAC,GAAG,CAAC,CAAC;YACV,IAAI,CAAC,GAAG,CAAC,CAAC;;YAEV,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC,EAAE;YACjD;gBACI,IAAI,IAAI,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;;gBAEhC,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;gBACrB,IAAI,SAAS,GAAG,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,GAAG,CAAC,CAAC;;gBAE1D,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;;gBAEnB,IAAI,IAAI,KAAK,MAAM,CAAC,IAAI,IAAI,IAAI,KAAK,MAAM,CAAC,IAAI;gBAChD;oBACI,CAAC,GAAG,KAAK,CAAC,CAAC,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;oBAC9B,CAAC,GAAG,KAAK,CAAC,CAAC,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;oBAC9B,CAAC,GAAG,KAAK,CAAC,KAAK,GAAG,SAAS,CAAC;oBAC5B,CAAC,GAAG,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC;;oBAE7B,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;oBAC3B,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;;oBAEnC,IAAI,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,IAAI,CAAC;oBAC3B,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;iBACtC;qBACI,IAAI,IAAI,KAAK,MAAM,CAAC,IAAI;gBAC7B;oBACI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;oBACZ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;oBACZ,CAAC,GAAG,KAAK,CAAC,MAAM,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;oBACnC,CAAC,GAAG,KAAK,CAAC,MAAM,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;;oBAEnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;oBACnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;;oBAEnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;oBACnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;iBACtC;qBACI,IAAI,IAAI,KAAK,MAAM,CAAC,IAAI;gBAC7B;oBACI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;oBACZ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;oBACZ,CAAC,GAAG,KAAK,CAAC,KAAK,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;oBAClC,CAAC,GAAG,KAAK,CAAC,MAAM,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;;oBAEnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;oBACnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;;oBAEnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;oBACnC,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;iBACtC;;gBAED;;oBAEI,IAAI,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;oBAC1B,IAAI,EAAE,GAAG,CAAC,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,CAAC;;oBAEX,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC;oBAC7C;wBACI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;wBACd,CAAC,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;wBAClB,EAAE,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;wBACnB,EAAE,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;wBACnB,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC;wBACtB,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC;wBACtB,CAAC,GAAG,SAAS,CAAC;wBACd,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;;wBAErC,IAAI,CAAC,GAAG,IAAI;wBACZ;4BACI,SAAS;yBACZ;;wBAED,EAAE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;wBAC7B,EAAE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;wBAC7B,EAAE,GAAG,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC;wBAClB,EAAE,GAAG,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC;;wBAElB,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC;wBACvC,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC;;wBAEvC,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC;wBACvC,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC;qBAC1C;iBACJ;aACJ;SACJ;;QAED;YACI,IAAI,GAAG,CAAC,CAAC;YACT,IAAI,GAAG,CAAC,CAAC;YACT,IAAI,GAAG,CAAC,CAAC;YACT,IAAI,GAAG,CAAC,CAAC;SACZ;;QAED,IAAI,OAAO,GAAG,IAAI,CAAC,aAAa,CAAC;;QAEjC,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,GAAG,OAAO,CAAC;QACnC,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,GAAG,OAAO,CAAC;;QAEnC,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,GAAG,OAAO,CAAC;QACnC,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,GAAG,OAAO,CAAC;KACtC,CAAC;;;;;;;;;IASF,gBAAgB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,MAAM,EAAE,MAAM;IACrF;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,EAAE;QAC1C;YACI,IAAI,CAAC,GAAG,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC;YACxB,IAAI,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;;YAE5B,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,KAAK,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC;YAC9D,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,KAAK,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC;SACrE;KACJ,CAAC;;;;;;;;;;;IAWF,gBAAgB,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI;IACrF;;QAEI,IAAI,GAAG,GAAG,CAAC,KAAK,IAAI,EAAE,KAAK,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,GAAG,IAAI,KAAK,EAAE,CAAC,CAAC;;QAEpE,IAAI,IAAI,IAAI,eAAe,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;;QAExC,OAAO,IAAI,EAAE,GAAG,CAAC;QACjB;YACI,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SACrB;KACJ,CAAC;;;;;;;;;;IAUF,gBAAgB,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,UAAU,EAAE,EAAE,EAAE,IAAI;IACvF;QACI,OAAO,IAAI,EAAE,GAAG,CAAC;QACjB;YACI,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;SACvB;KACJ,CAAC;;;;;;;;;;;;;IAaF,gBAAgB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM;IAC7F;QACI,IAAI,KAAK,GAAG,CAAC,CAAC;QACd,IAAI,QAAQ,GAAG,GAAG,CAAC,MAAM,CAAC;QAC1B,IAAI,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;;QAE1B,OAAO,KAAK,GAAG,IAAI;QACnB;YACI,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,KAAK,GAAG,KAAK,IAAI,CAAC,CAAC,CAAC;YACnC,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,GAAG,KAAK,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;;YAEzC,IAAI,MAAM;YACV;gBACI,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,KAAK,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC;;gBAErD,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,KAAK,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,EAAE,CAAC;gBAChD,CAAC,GAAG,EAAE,CAAC;aACV;;YAED,KAAK,EAAE,CAAC;;YAER,GAAG,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,KAAK,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC;SAC/C;;QAED,IAAI,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC;;QAEtC,IAAI,KAAK,CAAC,KAAK,GAAG,WAAW,CAAC,KAAK;eAC5B,KAAK,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM;QACxC;YACI,IAAI,CAAC,SAAS,CAAC,GAAG,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC;SAChD;KACJ,CAAC;;;;;;;;;;IAUF,gBAAgB,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,GAAG,EAAE,OAAO,EAAE,KAAK,EAAE,IAAI;IACpF;QACI,IAAI,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC;QACtC,IAAI,GAAG,GAAG,IAAI,CAAC;QACf,IAAI,MAAM,GAAG,KAAK,IAAI,IAAI,GAAG,CAAC,CAAC,CAAC;QAChC,IAAI,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;QAC1B,IAAI,MAAM,GAAG,KAAK,CAAC,KAAK,GAAG,WAAW,CAAC,KAAK,CAAC;QAC7C,IAAI,MAAM,GAAG,KAAK,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM,CAAC;QAC/C,IAAI,OAAO,GAAG,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC,KAAK,CAAC;QACpC,IAAI,OAAO,GAAG,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC;QACrC,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,CAAC;QACxC,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;;QAE5C,KAAK,IAAI,CAAC,GAAG,KAAK,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,IAAI,CAAC;QAC1C;YACI,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;YAChD,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;SACvD;QACD,OAAO,IAAI,IAAI,CAAC;QAChB,OAAO,IAAI,IAAI,CAAC;QAChB,KAAK,IAAI,GAAG,GAAG,KAAK,EAAE,GAAG,GAAG,MAAM,EAAE,GAAG,IAAI,CAAC;QAC5C;YACI,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,OAAO,IAAI,MAAM,CAAC;YACzC,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,OAAO,IAAI,MAAM,CAAC;SACpD;KACJ,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,gBAAgB,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAE1E,OAAO,gBAAgB,CAAC;CAC3B,CAAC,aAAa,CAAC,CAAC,CAAC;;;;;;;;;;;AAWlB,gBAAgB,CAAC,cAAc,GAAG,GAAG,CAAC;;;;;;;;AAQtC,IAAI,SAAS,iBAAiB,UAAU,SAAS,EAAE;IAC/C,SAAS,SAAS,IAAI;QAClB,SAAS,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;KACpC;;IAED,KAAK,SAAS,GAAG,SAAS,CAAC,SAAS,GAAG,SAAS,CAAC;IACjD,SAAS,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,SAAS,IAAI,SAAS,CAAC,SAAS,EAAE,CAAC;IACxE,SAAS,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,CAAC;;IAE5C,SAAS,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC1C;QACI,IAAI,GAAG,GAAG,IAAI,SAAS,EAAE,CAAC;;QAE1B,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;QACvB,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;QACvB,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC3B,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;QACzB,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC3B,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;QACvB,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC;QAC/B,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;;QAEzB,OAAO,GAAG,CAAC;KACd,CAAC;;;;IAIF,SAAS,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IAC1C;QACI,SAAS,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;QAGrC,IAAI,CAAC,KAAK,GAAG,GAAG,CAAC;;;;;;;;QAQjB,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;QAQf,IAAI,CAAC,SAAS,GAAG,GAAG,CAAC;;;;;;;;QAQrB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;KACvB,CAAC;;IAEF,OAAO,SAAS,CAAC;CACpB,CAAC,SAAS,CAAC,CAAC,CAAC;;;;;;;AAOd,IAAI,WAAW,GAAG,SAAS,WAAW,IAAI,EAAE,CAAC;;AAE7C,WAAW,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG;AAC5F;IACI,IAAI,CAAC,GAAG,EAAE,CAAC;IACX,IAAI,MAAM,GAAG,GAAG,CAAC;IACjB,IAAI,CAAC,GAAG,GAAG,CAAC;IACZ,IAAI,EAAE,GAAG,GAAG,CAAC;IACb,IAAI,EAAE,GAAG,GAAG,CAAC;IACb,IAAI,EAAE,GAAG,GAAG,CAAC;IACb,IAAI,GAAG,GAAG,GAAG,CAAC;IACd,IAAI,GAAG,GAAG,GAAG,CAAC;IACd,IAAI,CAAC,GAAG,GAAG,CAAC;IACZ,IAAI,CAAC,GAAG,GAAG,CAAC;IACZ,IAAI,EAAE,GAAG,GAAG,CAAC;IACb,IAAI,EAAE,GAAG,GAAG,CAAC;IACb,IAAI,KAAK,GAAG,KAAK,CAAC;IAClB,IAAI,KAAK,GAAG,KAAK,CAAC;;IAElB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC;IAC3B;QACI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QACV,EAAE,GAAG,CAAC,GAAG,CAAC,CAAC;QACX,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;QACZ,EAAE,IAAI,GAAG,GAAG,CAAC,CAAC,CAAC;QACf,GAAG,GAAG,EAAE,GAAG,EAAE,CAAC;QACd,GAAG,GAAG,GAAG,GAAG,EAAE,CAAC;;QAEf,CAAC,GAAG,CAAC,GAAG,GAAG,KAAK,KAAK,GAAG,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,IAAI,GAAG,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,IAAI,EAAE,GAAG,GAAG,CAAC,CAAC;QAChF,CAAC,GAAG,CAAC,GAAG,GAAG,KAAK,KAAK,GAAG,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,IAAI,EAAE,GAAG,GAAG,CAAC,CAAC;QAC9E,EAAE,GAAG,KAAK,GAAG,CAAC,CAAC;QACf,EAAE,GAAG,KAAK,GAAG,CAAC,CAAC;QACf,KAAK,GAAG,CAAC,CAAC;QACV,KAAK,GAAG,CAAC,CAAC;;QAEV,MAAM,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;KAC9C;;IAED,OAAO,MAAM,CAAC;CACjB,CAAC;;;;;;;;;;;;;;;;AAgBF,WAAW,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM;AAC9E;IACI,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;IACtC,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;IAEtC,MAAM,CAAC,MAAM,IAAI,CAAC,CAAC;;IAEnB,IAAI,CAAC,GAAG,eAAe,CAAC,cAAc;QAClC,WAAW,CAAC,WAAW,CAAC,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC;KACxE,CAAC;;IAEF,IAAI,EAAE,GAAG,CAAC,CAAC;IACX,IAAI,GAAG,GAAG,CAAC,CAAC;IACZ,IAAI,GAAG,GAAG,CAAC,CAAC;IACZ,IAAI,EAAE,GAAG,CAAC,CAAC;IACX,IAAI,EAAE,GAAG,CAAC,CAAC;;IAEX,MAAM,CAAC,IAAI,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;;IAE1B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC;IAClC;QACI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;;QAEV,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;QACb,GAAG,GAAG,EAAE,GAAG,EAAE,CAAC;QACd,GAAG,GAAG,GAAG,GAAG,EAAE,CAAC;;QAEf,EAAE,GAAG,CAAC,GAAG,CAAC,CAAC;QACX,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;;QAEZ,MAAM,CAAC,IAAI;YACP,CAAC,GAAG,GAAG,KAAK,KAAK,CAAC,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,IAAI,EAAE,GAAG,GAAG,CAAC;YACvE,CAAC,GAAG,GAAG,KAAK,KAAK,CAAC,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,IAAI,EAAE,GAAG,GAAG,CAAC;SAC1E,CAAC;KACL;CACJ,CAAC;;;;;;;AAOF,IAAI,cAAc,GAAG,SAAS,cAAc,IAAI,EAAE,CAAC;;AAEnD,cAAc,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG;AACnF;IACI,IAAI,EAAE,GAAG,KAAK,IAAI,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC;IACnC,IAAI,EAAE,GAAG,KAAK,IAAI,GAAG,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC;IACnC,IAAI,EAAE,GAAG,CAAC,GAAG,GAAG,GAAG,KAAK,GAAG,GAAG,KAAK,CAAC,CAAC;IACrC,IAAI,EAAE,GAAG,CAAC,GAAG,GAAG,GAAG,KAAK,GAAG,GAAG,KAAK,CAAC,CAAC;IACrC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;IACtC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;IACtC,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;;IAE9B,IAAI,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;IACnC,IAAI,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IACtB,IAAI,GAAG,GAAG,GAAG,GAAG,CAAC,GAAG,EAAE,CAAC;IACvB,IAAI,EAAE,GAAG,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAC5B,IAAI,EAAE,GAAG,CAAC,GAAG,EAAE,CAAC;;IAEhB,OAAO;QACH,CAAC,GAAG,GAAG,CAAC;eACD,EAAE,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;;gBAEjB,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;iBACvB,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,CAAC,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;aAC/C;SACJ,GAAG,GAAG,GAAG,CAAC,CAAC;CACnB,CAAC;;;;;;;;;;;;;AAaF,cAAc,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM;AACrE;IACI,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;IACtC,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;IAEtC,IAAI,CAAC,GAAG,eAAe,CAAC,cAAc;QAClC,cAAc,CAAC,WAAW,CAAC,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC;KAC/D,CAAC;;IAEF,IAAI,EAAE,GAAG,CAAC,CAAC;IACX,IAAI,EAAE,GAAG,CAAC,CAAC;;IAEX,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC;IAC3B;QACI,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;;QAEd,EAAE,GAAG,KAAK,IAAI,CAAC,GAAG,GAAG,KAAK,IAAI,CAAC,CAAC,CAAC;QACjC,EAAE,GAAG,KAAK,IAAI,CAAC,GAAG,GAAG,KAAK,IAAI,CAAC,CAAC,CAAC;;QAEjC,MAAM,CAAC,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;YACnD,EAAE,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;KACpD;CACJ,CAAC;;;;;;;AAOF,IAAI,QAAQ,GAAG,SAAS,QAAQ,IAAI,EAAE,CAAC;;AAEvC,QAAQ,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM;AACnE;IACI,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;IACtC,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;IAEtC,IAAI,EAAE,GAAG,KAAK,GAAG,EAAE,CAAC;IACpB,IAAI,EAAE,GAAG,KAAK,GAAG,EAAE,CAAC;IACpB,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;IACjB,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;IACjB,IAAI,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,CAAC;;IAEzC,IAAI,EAAE,GAAG,MAAM,IAAI,MAAM,KAAK,CAAC;IAC/B;QACI,IAAI,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,EAAE,IAAI,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,EAAE;QACxE;YACI,MAAM,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;SACvB;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,IAAI,EAAE,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;IAC/B,IAAI,EAAE,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;IAC/B,IAAI,EAAE,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;IAC/B,IAAI,EAAE,GAAG,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC;IACrC,IAAI,EAAE,GAAG,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC;IACrC,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;IACtB,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;IACtB,IAAI,EAAE,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;IAC/B,IAAI,EAAE,GAAG,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;IAC/B,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC;IACxB,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC;IACxB,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC;IACxB,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC;IACxB,IAAI,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC;IAC9C,IAAI,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC;;IAE5C,OAAO;QACH,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;QACb,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;QACb,MAAM,EAAE,MAAM;QACd,UAAU,EAAE,UAAU;QACtB,QAAQ,EAAE,QAAQ;QAClB,aAAa,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;KACrC,CAAC;CACL,CAAC;;;;;;;;;;;;;;;;;;;;AAoBF,QAAQ,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM;AACxG;IACI,IAAI,KAAK,GAAG,QAAQ,GAAG,UAAU,CAAC;IAClC,IAAI,CAAC,GAAG,eAAe,CAAC,cAAc;QAClC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,MAAM;QACxB,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,GAAG,EAAE;KACzC,CAAC;;IAEF,IAAI,KAAK,GAAG,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;IAC9B,IAAI,MAAM,GAAG,KAAK,GAAG,CAAC,CAAC;IACvB,IAAI,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;IAC7B,IAAI,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;IAC7B,IAAI,QAAQ,GAAG,CAAC,GAAG,CAAC,CAAC;IACrB,IAAI,SAAS,GAAG,CAAC,QAAQ,GAAG,CAAC,IAAI,QAAQ,CAAC;;IAE1C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,QAAQ,EAAE,EAAE,CAAC;IAClC;QACI,IAAI,IAAI,GAAG,CAAC,IAAI,SAAS,GAAG,CAAC,CAAC,CAAC;QAC/B,IAAI,KAAK,IAAI,CAAC,KAAK,IAAI,UAAU,IAAI,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC;QACrD,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;QACxB,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;;QAEzB,MAAM,CAAC,IAAI;YACP,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,KAAK,MAAM,GAAG,CAAC,CAAC,IAAI,MAAM,IAAI,EAAE;YAC7C,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,MAAM,GAAG,CAAC,CAAC,IAAI,MAAM,IAAI,EAAE;SACjD,CAAC;KACL;CACJ,CAAC;;;;;;;;;;;;;;;;AAgBF,IAAI,IAAI,iBAAiB,UAAU,OAAO,EAAE;IACxC,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE,QAAQ;IACzD;QACI,WAAW,GAAG,WAAW,IAAI,MAAM,GAAG,CAAC,CAAC;;QAExC,IAAI,UAAU,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,GAAG,CAAC,IAAI,QAAQ,CAAC;QAC/C,IAAI,GAAG,GAAG,MAAM,GAAG,CAAC,CAAC;QACrB,IAAI,KAAK,GAAG,IAAI,GAAG,GAAG,CAAC;QACvB,IAAI,OAAO,GAAG,EAAE,CAAC;;QAEjB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE;QAC5B;YACI,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,WAAW,GAAG,MAAM,CAAC;YACrC,IAAI,KAAK,GAAG,CAAC,CAAC,GAAG,KAAK,IAAI,UAAU,CAAC;;YAErC,OAAO,CAAC,IAAI;gBACR,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;gBACzB,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;aAC5B,CAAC;SACL;;QAED,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;KAC/B;;IAED,KAAK,OAAO,GAAG,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC;IACxC,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,IAAI,OAAO,CAAC,SAAS,EAAE,CAAC;IAC/D,IAAI,CAAC,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC;;IAElC,OAAO,IAAI,CAAC;CACf,CAAC,OAAO,CAAC,CAAC,CAAC;;AAEZ,IAAI,IAAI,GAAG,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;;;AAG/B,IAAI,eAAe,GAAG,EAAE,CAAC;;;;;;;;;;;;;;;AAezB,IAAI,QAAQ,iBAAiB,UAAU,SAAS,EAAE;IAC9C,SAAS,QAAQ,CAAC,QAAQ;IAC1B;QACI,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,IAAI,CAAC;;QAE3C,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;QAQrB,IAAI,CAAC,QAAQ,GAAG,QAAQ,IAAI,IAAI,gBAAgB,EAAE,CAAC;;QAEnD,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC;;;;;;;QAOzB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;QAOnB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,EAAE,CAAC;;;;;;;;QAQ3B,IAAI,CAAC,UAAU,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;;QAQlC,IAAI,CAAC,UAAU,GAAG,IAAI,SAAS,EAAE,CAAC;;;;;;;;QAQlC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;;;;;;;;QASpB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;;;;;;;QAQvB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;QAqBxB,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;;;;;;;;;QASlB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;;;;;;;;QAQpB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;QAEvB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;QACvB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;;;;;;;;QAQrB,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC;;;QAG1B,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;QACrB,IAAI,CAAC,SAAS,GAAG,WAAW,CAAC,MAAM,CAAC;KACvC;;IAED,KAAK,SAAS,GAAG,QAAQ,CAAC,SAAS,GAAG,SAAS,CAAC;IAChD,QAAQ,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,SAAS,IAAI,SAAS,CAAC,SAAS,EAAE,CAAC;IACvE,QAAQ,CAAC,SAAS,CAAC,WAAW,GAAG,QAAQ,CAAC;;IAE1C,IAAI,kBAAkB,GAAG,EAAE,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;IAQtJ,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACzC;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,OAAO,IAAI,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;KACtC,CAAC;;;;;;;;;;IAUF,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG,UAAU,KAAK;IAClD;QACI,IAAI,CAAC,KAAK,CAAC,SAAS,GAAG,KAAK,CAAC;KAChC,CAAC;;IAEF,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG;IACnC;QACI,OAAO,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC;KAC/B,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;IACF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,KAAK;IAC7C;QACI,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;KACtB,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,UAAU,CAAC;KAC1B,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,UAAU,CAAC;KAC1B,CAAC;;;;;;;;;;;;;IAaF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM;IACzF;QACI,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,SAAS,KAAK,KAAK,CAAC,GAAG,SAAS,GAAG,GAAG,CAAC;QAC5C,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,KAAK,CAAC;;QAExC,IAAI,CAAC,gBAAgB,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC;;QAEnF,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;;IAcF,QAAQ,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,KAAK;QACzF,MAAM,EAAE,SAAS,EAAE,MAAM;IAC7B;QACI,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,OAAO,CAAC,KAAK,CAAC;QAClD,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,QAAQ,CAAC;QACzC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC;QACvC,KAAK,SAAS,KAAK,KAAK,CAAC,GAAG,SAAS,GAAG,GAAG,CAAC;QAC5C,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,KAAK,CAAC;;QAExC,IAAI,IAAI,CAAC,WAAW;QACpB;YACI,IAAI,CAAC,SAAS,EAAE,CAAC;SACpB;;QAED,IAAI,OAAO,GAAG,KAAK,GAAG,CAAC,IAAI,KAAK,GAAG,CAAC,CAAC;;QAErC,IAAI,CAAC,OAAO;QACZ;YACI,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC;SAC3B;;QAED;YACI,IAAI,MAAM;YACV;gBACI,MAAM,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC;gBACxB,MAAM,CAAC,MAAM,EAAE,CAAC;aACnB;;YAED,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE;gBAC3B,KAAK,EAAE,KAAK;gBACZ,KAAK,EAAE,KAAK;gBACZ,KAAK,EAAE,KAAK;gBACZ,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE,OAAO;gBAChB,SAAS,EAAE,SAAS;gBACpB,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE,OAAO;aACnB,CAAC,CAAC;SACN;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;IACjD;QACI,IAAI,IAAI,CAAC,WAAW;QACpB;YACI,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC;YACrC,IAAI,GAAG,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,CAAC;;YAEzC,IAAI,GAAG,GAAG,CAAC;YACX;gBACI,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;gBACjC,IAAI,CAAC,WAAW,GAAG,IAAI,OAAO,EAAE,CAAC;gBACjC,IAAI,CAAC,WAAW,CAAC,WAAW,GAAG,KAAK,CAAC;gBACrC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;aAClE;SACJ;;QAED;YACI,IAAI,CAAC,WAAW,GAAG,IAAI,OAAO,EAAE,CAAC;YACjC,IAAI,CAAC,WAAW,CAAC,WAAW,GAAG,KAAK,CAAC;SACxC;KACJ,CAAC;;;;;;IAMF,QAAQ,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IACnD;QACI,IAAI,IAAI,CAAC,WAAW;QACpB;YACI,IAAI,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC;YACtC;gBACI,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;gBACjC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;aAC3B;;YAED;gBACI,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;aACtC;SACJ;KACJ,CAAC;;;;;;;;;IASF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,CAAC,EAAE,CAAC;IACjD;QACI,IAAI,CAAC,SAAS,EAAE,CAAC;QACjB,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QAC/B,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;;QAE/B,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;IAUF,QAAQ,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,CAAC,EAAE,CAAC;IACjD;QACI,IAAI,CAAC,IAAI,CAAC,WAAW;QACrB;YACI,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SACrB;;;QAGD,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC;QACrC,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;QACtC,IAAI,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;QAEtC,IAAI,KAAK,KAAK,CAAC,IAAI,KAAK,KAAK,CAAC;QAC9B;YACI,MAAM,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SACrB;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;IASF,QAAQ,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,CAAC,EAAE,CAAC;IACzD;QACI,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QAC1B,KAAK,CAAC,KAAK,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;;QAE1B,IAAI,IAAI,CAAC,WAAW;QACpB;YACI,IAAI,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,KAAK,CAAC;YACxC;gBACI,IAAI,CAAC,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;aACpC;SACJ;;QAED;YACI,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SACrB;KACJ,CAAC;;;;;;;;;;;;IAYF,QAAQ,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG;IACnF;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC;;QAErC,IAAI,MAAM,CAAC,MAAM,KAAK,CAAC;QACvB;YACI,IAAI,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SACrB;;QAED,cAAc,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,CAAC,CAAC;;QAEnD,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;IAaF,QAAQ,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG;IACzF;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,WAAW,CAAC,OAAO,CAAC,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;;QAE7E,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;;IAcF,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM;IACjE;QACI,IAAI,CAAC,UAAU,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;;QAExB,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC;;QAErC,IAAI,MAAM,GAAG,QAAQ,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;;QAE9D,IAAI,MAAM;QACV;YACI,IAAI,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;YACnB,IAAI,EAAE,GAAG,MAAM,CAAC,EAAE,CAAC;YACnB,IAAI,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC;YAC7B,IAAI,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;YACnC,IAAI,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC;YAC/B,IAAI,aAAa,GAAG,MAAM,CAAC,aAAa,CAAC;;YAEzC,IAAI,CAAC,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,QAAQ,EAAE,UAAU,EAAE,QAAQ,EAAE,aAAa,CAAC,CAAC;SACnE;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;;;;IAgBF,QAAQ,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,aAAa;IAC1F;QACI,KAAK,aAAa,KAAK,KAAK,CAAC,GAAG,aAAa,GAAG,KAAK,CAAC;;QAEtD,IAAI,UAAU,KAAK,QAAQ;QAC3B;YACI,OAAO,IAAI,CAAC;SACf;;QAED,IAAI,CAAC,aAAa,IAAI,QAAQ,IAAI,UAAU;QAC5C;YACI,QAAQ,IAAI,IAAI,CAAC;SACpB;aACI,IAAI,aAAa,IAAI,UAAU,IAAI,QAAQ;QAChD;YACI,UAAU,IAAI,IAAI,CAAC;SACtB;;QAED,IAAI,KAAK,GAAG,QAAQ,GAAG,UAAU,CAAC;;QAElC,IAAI,KAAK,KAAK,CAAC;QACf;YACI,OAAO,IAAI,CAAC;SACf;;QAED,IAAI,MAAM,GAAG,EAAE,IAAI,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,MAAM,CAAC,CAAC;QAClD,IAAI,MAAM,GAAG,EAAE,IAAI,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,MAAM,CAAC,CAAC;QAClD,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC;;;QAGtC,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC;;QAE/D,IAAI,MAAM;QACV;;;;YAII,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC;YACzD,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC;;YAEzD,IAAI,KAAK,GAAG,GAAG,IAAI,KAAK,GAAG,GAAG;YAC9B,CAAC;;YAED;gBACI,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;aAC/B;SACJ;;QAED;YACI,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;YAC5B,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC;SACpC;;QAED,QAAQ,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,CAAC,CAAC;;QAE1F,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;IAUF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,KAAK,EAAE,KAAK;IAC/D;QACI,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;;QAElC,OAAO,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;KAC7D,CAAC;;;;;;;;;;;IAWF,QAAQ,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM;IAC9F;QACI,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,OAAO,CAAC,KAAK,CAAC;QAClD,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,QAAQ,CAAC;QACzC,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC;QAClC,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,IAAI,CAAC;;QAEvC,IAAI,IAAI,CAAC,WAAW;QACpB;YACI,IAAI,CAAC,SAAS,EAAE,CAAC;SACpB;;QAED,IAAI,OAAO,GAAG,KAAK,GAAG,CAAC,CAAC;;QAExB,IAAI,CAAC,OAAO;QACZ;YACI,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC;SAC3B;;QAED;YACI,IAAI,MAAM;YACV;gBACI,MAAM,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC;gBACxB,MAAM,CAAC,MAAM,EAAE,CAAC;aACnB;;YAED,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE;gBAC3B,KAAK,EAAE,KAAK;gBACZ,KAAK,EAAE,KAAK;gBACZ,OAAO,EAAE,OAAO;gBAChB,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE,OAAO;aACnB,CAAC,CAAC;SACN;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;IAOF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAC7C;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC;;QAExB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;IAWF,QAAQ,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM;IACpE;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC;KAC7D,CAAC;;;;;;;;;;;;IAYF,QAAQ,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;IAC1F;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,gBAAgB,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC;KAC5E,CAAC;;;;;;;;;;IAUF,QAAQ,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM;IACjE;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC;KACnD,CAAC;;;;;;;;;;;IAWF,QAAQ,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM;IAC1E;QACI,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC;KAC3D,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,IAAI;IAC3D;QACI,IAAI,WAAW,GAAG,SAAS,CAAC;;;;QAI5B,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,IAAI,WAAW,GAAG,IAAI,CAAC;;;QAGvB,IAAI,MAAM,CAAC,MAAM;QACjB;YACI,WAAW,GAAG,MAAM,CAAC,WAAW,CAAC;YACjC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;SAC1B;;QAED,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC;QAC1B;;;YAGI,MAAM,GAAG,IAAI,KAAK,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;;YAErC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,EAAE,CAAC;YACtC;gBACI,MAAM,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;aAC9B;SACJ;;QAED,IAAI,KAAK,GAAG,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC;;QAEhC,KAAK,CAAC,WAAW,GAAG,WAAW,CAAC;;QAEhC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;;QAEtB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,KAAK;IACxD;QACI,IAAI,CAAC,IAAI,CAAC,SAAS;QACnB;YACI,IAAI,CAAC,QAAQ,CAAC,SAAS;gBACnB,KAAK;gBACL,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE;gBACvB,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE;gBACvB,IAAI,CAAC,OAAO;aACf,CAAC;SACL;;QAED;YACI,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;SAC/C;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;IAaF,QAAQ,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE,QAAQ;IAC5F;QACI,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,CAAC,CAAC;;QAExC,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE,QAAQ,CAAC,CAAC,CAAC;KAClF,CAAC;;;;;;;IAOF,QAAQ,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;IACzC;QACI,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC;QACxB,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC;;QAExB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QACvB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;QAExB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IACnD;;QAEI,OAAO,KAAK,CAAC;;;;KAIhB,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,QAAQ;IACvD;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;;;;QAI7B,QAAQ,CAAC,aAAa,EAAE,CAAC;;QAEzB,IAAI,QAAQ,CAAC,SAAS;QACtB;YACI,IAAI,IAAI,CAAC,UAAU,KAAK,QAAQ,CAAC,UAAU;YAC3C;gBACI,IAAI,CAAC,gBAAgB,EAAE,CAAC;aAC3B;;YAED,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC;SACjC;;QAED;;YAEI,QAAQ,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;;YAEvB,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;SAChC;KACJ,CAAC;;;;;;;IAOF,QAAQ,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IAC/D;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;QAC7B,IAAI,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC;;QAE/B,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;QAClB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;QACpB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;QACvB,IAAI,CAAC,UAAU,GAAG,QAAQ,CAAC,UAAU,CAAC;;QAEtC,IAAI,CAAC,UAAU,GAAG,IAAI,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;;QAEpD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE;QACvD;YACI,IAAI,EAAE,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;YAC7B,IAAI,KAAK,GAAG,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC;YAC3B,IAAI,UAAU,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM;gBACpD,EAAE,CAAC,WAAW,GAAG,CAAC,GAAG,CAAC;gBACtB,EAAE,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;;YAEvB,IAAI,GAAG,GAAG,IAAI,YAAY,CAAC,QAAQ,CAAC,UAAU,CAAC,MAAM;gBACjD,EAAE,CAAC,WAAW,GAAG,CAAC,GAAG,CAAC;gBACtB,EAAE,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;;YAEvB,IAAI,OAAO,GAAG,IAAI,WAAW,CAAC,QAAQ,CAAC,aAAa,CAAC,MAAM;gBACvD,EAAE,CAAC,KAAK,GAAG,CAAC;gBACZ,EAAE,CAAC,IAAI,CAAC,CAAC;;YAEb,IAAI,KAAK,GAAG;gBACR,UAAU,EAAE,UAAU;gBACtB,SAAS,EAAE,SAAS;gBACpB,OAAO,EAAE,OAAO;gBAChB,GAAG,EAAE,GAAG;gBACR,SAAS,EAAE,OAAO,CAAC,KAAK,CAAC;gBACzB,QAAQ,EAAE,KAAK;gBACf,QAAQ,EAAE,EAAE,CAAC,KAAK,CAAC,OAAO;gBAC1B,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK;gBACrB,UAAU,EAAE,CAAC,EAAE,CAAC;;YAEpB,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;SAC3B;KACJ,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,QAAQ;IACrE;QACI,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM;QACxB;YACI,OAAO;SACV;;QAED,QAAQ,CAAC,KAAK,CAAC,iBAAiB,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;;QAEpE,IAAI,CAAC,iBAAiB,EAAE,CAAC;QACzB,IAAI,CAAC,cAAc,EAAE,CAAC;;QAEtB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE;QACnD;YACI,IAAI,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;;YAE5B,KAAK,CAAC,UAAU,GAAG,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC,KAAK,CAAC;;YAEjD,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;SACnD;KACJ,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,QAAQ;IACnE;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,oBAAoB,CAAC,QAAQ,CAAC,CAAC;;QAEjD,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;QAC7B,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACrB,IAAI,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;QACjC,IAAI,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC;QAC/B,IAAI,SAAS,GAAG,QAAQ,CAAC,SAAS,CAAC;;;QAGnC,QAAQ,CAAC,iBAAiB,GAAG,IAAI,CAAC,SAAS,CAAC,cAAc,CAAC;;;QAG3D,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,IAAI,GAAG,IAAI,UAAU,CAAC;QAC9D,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,GAAG,IAAI,UAAU,CAAC;QAC7D,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,GAAG,IAAI,IAAI,GAAG,IAAI,UAAU,CAAC;QACtD,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC;;;;;;;QAO9B,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC7B,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;;;QAGzC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;;;QAG/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE;QAChD;YACI,IAAI,CAAC,qBAAqB,CAAC,QAAQ,EAAE,QAAQ,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;SAC/D;KACJ,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,qBAAqB,GAAG,SAAS,qBAAqB,EAAE,QAAQ,EAAE,QAAQ;IAC7F;QACI,IAAI,iBAAiB,GAAG,QAAQ,CAAC,YAAY,CAAC;;QAE9C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,iBAAiB,EAAE,CAAC,EAAE;QAC1C;YACI,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SAClD;;QAED,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC;KACxE,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,oBAAoB,GAAG,SAAS,oBAAoB,EAAE,QAAQ;IACjF;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;;QAEzB,IAAI,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;;QAEjC,IAAI,CAAC,MAAM;QACX;;;;YAII,IAAI,CAAC,eAAe,CAAC,UAAU,CAAC;YAChC;gBACI,IAAI,YAAY,GAAG,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC;;gBAEtC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;gBAC3B;oBACI,YAAY,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;iBACvB;;gBAED,IAAI,QAAQ,GAAG;oBACX,IAAI,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;oBACpC,iBAAiB,EAAE,IAAI,MAAM,EAAE;oBAC/B,OAAO,EAAE,YAAY,CAAC,IAAI,CAAC,EAAE,SAAS,EAAE,YAAY,EAAE,EAAE,IAAI,CAAC;iBAChE,CAAC;;gBAEF,IAAI,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC;;gBAE3D,eAAe,CAAC,UAAU,CAAC,GAAG,IAAI,MAAM,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;aAC/D;;YAED,MAAM,GAAG,eAAe,CAAC,UAAU,CAAC,CAAC;SACxC;;QAED,OAAO,MAAM,CAAC;KACjB,CAAC;;;;;;;IAOF,QAAQ,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IAC/D;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;QAClB,IAAI,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC;;QAE9B,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC;KAC7E,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,KAAK;IAChE;QACI,IAAI,CAAC,cAAc,CAAC,YAAY,CAAC,KAAK,EAAE,QAAQ,CAAC,WAAW,CAAC,CAAC;;QAE9D,OAAO,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;KAC5D,CAAC;;;;;;IAMF,QAAQ,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;IAC3D;QACI,IAAI,IAAI,CAAC,SAAS,KAAK,IAAI,CAAC,IAAI;QAChC;YACI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC;;YAE3B,IAAI,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;;YAEvC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE;YAC5C;gBACI,IAAI,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;;gBAE5B,IAAI,SAAS,GAAG,KAAK,CAAC,SAAS,CAAC;;gBAEhC,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC;gBAC1C,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC;gBAC1C,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC;;;gBAG1C,IAAI,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;;gBAE3C,KAAK,CAAC,QAAQ,GAAG,CAAC,KAAK,IAAI,EAAE;2BAClB,KAAK,GAAG,MAAM,CAAC;2BACf,CAAC,KAAK,GAAG,IAAI,KAAK,EAAE,CAAC,CAAC;aACpC;SACJ;KACJ,CAAC;;;;;;;IAOF,QAAQ,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB;IACjE;QACI,IAAI,IAAI,CAAC,YAAY,KAAK,IAAI,CAAC,SAAS,CAAC,QAAQ;QACjD;YACI,OAAO;SACV;;QAED,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC;;QAE5C,IAAI,EAAE,GAAG,IAAI,CAAC,SAAS,CAAC,cAAc,CAAC;QACvC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;QACf,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;;QAEf,IAAI,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC;QAChC,IAAI,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;;QAEjC,IAAI,KAAK,GAAG,CAAC,CAAC;;QAEd,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC;QACvC;YACI,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;YAChB,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;;YAEpB,UAAU,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,CAAC;YAC7C,UAAU,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,CAAC;SAChD;KACJ,CAAC;;;;;;;IAOF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;IACjD;QACI,IAAI,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;;QAEnC,IAAI,WAAW;QACf;;YAEI,WAAW,CAAC,WAAW,GAAG,IAAI,CAAC;SAClC;;QAED,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;IAQF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,MAAM;IACzD;QACI,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;;QAEtB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;IAUF,QAAQ,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS;IACjD;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;QAClB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;;QAEtB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;IAMF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAC7C;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;QAClB,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;;QAEvB,OAAO,IAAI,CAAC;KACf,CAAC;;;;;;;;;;;;;;IAcF,QAAQ,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,OAAO;IACtD;QACI,SAAS,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;;QAEhD,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC;QACzB,IAAI,IAAI,CAAC,QAAQ,CAAC,QAAQ,KAAK,CAAC;QAChC;YACI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC;SAC3B;;QAED,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QACxB,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC;QAC1B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;QACvB,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC;QAC1B,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;QACvB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;QACvB,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;QACxB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;QAEpB,SAAS,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;KACnD,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,QAAQ,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAElE,OAAO,QAAQ,CAAC;CACnB,CAAC,SAAS,CAAC,CAAC,CAAC;;;;;;;;;AASd,QAAQ,CAAC,WAAW,GAAG,IAAI,KAAK,EAAE,CAAC;;ACz7GnC;;;;;;;AAOA,AAMA;AACA,IAAI,SAAS,GAAG,IAAI,KAAK,EAAE,CAAC;AAC5B,IAAI,OAAO,GAAG,IAAI,WAAW,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA4BlD,IAAI,MAAM,iBAAiB,UAAU,SAAS,EAAE;IAC5C,SAAS,MAAM,CAAC,OAAO;IACvB;QACI,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;QAoBrB,IAAI,CAAC,OAAO,GAAG,IAAI,eAAe;YAC9B,IAAI,CAAC,eAAe;YACpB,IAAI;aACH,OAAO,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC,GAAG,CAAC;aACrC,OAAO,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC,GAAG,CAAC;SACzC,CAAC;;;;;;;;QAQF,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;;;;;;QAQrB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;;;;;;;;QAQhB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;;;;;;;;QASjB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;QAClB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QACrB,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;;;;;;;;;QASrB,IAAI,CAAC,SAAS,GAAG,WAAW,CAAC,MAAM,CAAC;;;;;;;QAOpC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;;;;QAUnB,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC;;;;;;;;;QAS5B,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC;;;QAGhB,IAAI,CAAC,OAAO,GAAG,OAAO,IAAI,OAAO,CAAC,KAAK,CAAC;;;;;;;;QAQxC,IAAI,CAAC,UAAU,GAAG,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;;;;;;;;QAQtC,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;;QAE9B,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;QACvB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;;QAErB,IAAI,CAAC,mBAAmB,GAAG,CAAC,CAAC,CAAC;QAC9B,IAAI,CAAC,iBAAiB,GAAG,CAAC,CAAC,CAAC;;;;QAI5B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;QACd,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;;QASf,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC;;;;;;QAM1B,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;;;;;;;QAQrB,IAAI,CAAC,YAAY,GAAG,QAAQ,CAAC,YAAY,CAAC;KAC7C;;IAED,KAAK,SAAS,GAAG,MAAM,CAAC,SAAS,GAAG,SAAS,CAAC;IAC9C,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,SAAS,IAAI,SAAS,CAAC,SAAS,EAAE,CAAC;IACrE,MAAM,CAAC,SAAS,CAAC,WAAW,GAAG,MAAM,CAAC;;IAEtC,IAAI,kBAAkB,GAAG,EAAE,WAAW,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,OAAO,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;IAO1N,MAAM,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IAC7D;QACI,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;QACrB,IAAI,CAAC,iBAAiB,GAAG,CAAC,CAAC,CAAC;QAC5B,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC;;;QAG5B,IAAI,IAAI,CAAC,MAAM;QACf;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,GAAGd,MAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;SAC9E;;QAED,IAAI,IAAI,CAAC,OAAO;QAChB;YACI,IAAI,CAAC,KAAK,CAAC,CAAC,GAAGA,MAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC;SAChF;KACJ,CAAC;;;;;;;IAOF,MAAM,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;IAC3D;QACI,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;QACvB,IAAI,CAAC,mBAAmB,GAAG,CAAC,CAAC,CAAC;KACjC,CAAC;;;;;IAKF,MAAM,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB;IAC/D;QACI,IAAI,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC;;QAE5B,IAAI,IAAI,CAAC,YAAY,KAAK,IAAI,CAAC,SAAS,CAAC,QAAQ,IAAI,IAAI,CAAC,UAAU,KAAK,OAAO,CAAC,SAAS;QAC1F;YACI,OAAO;SACV;;;QAGD,IAAI,IAAI,CAAC,UAAU,KAAK,OAAO,CAAC,SAAS;QACzC;YACI,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC;SAC5C;;QAED,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC;QAC5C,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC,SAAS,CAAC;;;;QAIpC,IAAI,EAAE,GAAG,IAAI,CAAC,SAAS,CAAC,cAAc,CAAC;QACvC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;QACf,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;QACf,IAAI,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;QACjC,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;QACxB,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;QACxB,IAAI,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC;;QAE1B,IAAI,EAAE,GAAG,CAAC,CAAC;QACX,IAAI,EAAE,GAAG,CAAC,CAAC;QACX,IAAI,EAAE,GAAG,CAAC,CAAC;QACX,IAAI,EAAE,GAAG,CAAC,CAAC;;QAEX,IAAI,IAAI;QACR;;;YAGI,EAAE,GAAG,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;YACvC,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;;YAErB,EAAE,GAAG,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;YACxC,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC;SACzB;;QAED;YACI,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;YAC7B,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;;YAErB,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC;YAC9B,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC;SACzB;;;QAGD,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;;QAGzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;;QAGzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;;QAGzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;QAEzC,IAAI,IAAI,CAAC,YAAY;QACrB;YACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE;YAC1B;gBACI,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;aAC7C;SACJ;KACJ,CAAC;;;;;;IAMF,MAAM,CAAC,SAAS,CAAC,wBAAwB,GAAG,SAAS,wBAAwB;IAC7E;QACI,IAAI,CAAC,IAAI,CAAC,iBAAiB;QAC3B;YACI,IAAI,CAAC,iBAAiB,GAAG,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC;SAChD;aACI,IAAI,IAAI,CAAC,mBAAmB,KAAK,IAAI,CAAC,SAAS,CAAC,QAAQ,IAAI,IAAI,CAAC,iBAAiB,KAAK,IAAI,CAAC,QAAQ,CAAC,SAAS;QACnH;YACI,OAAO;SACV;;QAED,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC;QACnD,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC;;;QAGjD,IAAI,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC;QAC5B,IAAI,UAAU,GAAG,IAAI,CAAC,iBAAiB,CAAC;QACxC,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;QACxB,IAAI,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC;;;QAG1B,IAAI,EAAE,GAAG,IAAI,CAAC,SAAS,CAAC,cAAc,CAAC;QACvC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACb,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;QACf,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;;QAEf,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;QACjC,IAAI,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;;QAEzB,IAAI,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC;QAClC,IAAI,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC;;;QAG1B,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;;QAGzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;;QAGzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;;;QAGzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;QACzC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,CAAC;KAC5C,CAAC;;;;;;;;;IASF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,QAAQ;IACrD;QACI,IAAI,CAAC,iBAAiB,EAAE,CAAC;;QAEzB,QAAQ,CAAC,KAAK,CAAC,iBAAiB,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;QACpE,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;KAClD,CAAC;;;;;;;IAOF,MAAM,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IAC7D;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC;QAC9B,IAAI,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC;;;QAG9B,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,KAAK,KAAK,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,MAAM,KAAK,IAAI,CAAC,MAAM,CAAC;QACvE;;YAEI,IAAI,CAAC,iBAAiB,EAAE,CAAC;YACzB,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;SACzC;;QAED;;YAEI,IAAI,CAAC,wBAAwB,EAAE,CAAC;YAChC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;SAChD;KACJ,CAAC;;;;;;;;IAQF,MAAM,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,IAAI;IAC/D;;QAEI,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,KAAK,CAAC;QAC9B;YACI,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC;YAChE,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC;YACjE,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;YACrE,IAAI,CAAC,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,IAAI,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;;YAEtE,IAAI,CAAC,IAAI;YACT;gBACI,IAAI,CAAC,IAAI,CAAC,gBAAgB;gBAC1B;oBACI,IAAI,CAAC,gBAAgB,GAAG,IAAI,SAAS,EAAE,CAAC;iBAC3C;;gBAED,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC;aAChC;;YAED,OAAO,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;SAC1C;;QAED,OAAO,SAAS,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;KAC9D,CAAC;;;;;;;;IAQF,MAAM,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,KAAK;IAC9D;QACI,IAAI,CAAC,cAAc,CAAC,YAAY,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;;QAEnD,IAAI,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;QACrC,IAAI,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC;QACvC,IAAI,EAAE,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;QAChC,IAAI,EAAE,GAAG,CAAC,CAAC;;QAEX,IAAI,SAAS,CAAC,CAAC,IAAI,EAAE,IAAI,SAAS,CAAC,CAAC,GAAG,EAAE,GAAG,KAAK;QACjD;YACI,EAAE,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;;YAE7B,IAAI,SAAS,CAAC,CAAC,IAAI,EAAE,IAAI,SAAS,CAAC,CAAC,GAAG,EAAE,GAAG,MAAM;YAClD;gBACI,OAAO,IAAI,CAAC;aACf;SACJ;;QAED,OAAO,KAAK,CAAC;KAChB,CAAC;;;;;;;;;;;;IAYF,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,OAAO;IACpD;QACI,SAAS,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;;QAEhD,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,EAAE,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC,CAAC;;QAEzD,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;;QAEpB,IAAI,cAAc,GAAG,OAAO,OAAO,KAAK,SAAS,GAAG,OAAO,GAAG,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC;;QAEzF,IAAI,cAAc;QAClB;YACI,IAAI,kBAAkB,GAAG,OAAO,OAAO,KAAK,SAAS,GAAG,OAAO,GAAG,OAAO,IAAI,OAAO,CAAC,WAAW,CAAC;;YAEjG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,kBAAkB,CAAC,CAAC;SAC/C;;QAED,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;KACtB,CAAC;;;;;;;;;;;;;IAaF,MAAM,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,MAAM,EAAE,OAAO;IAC5C;QACI,IAAI,OAAO,GAAG,CAAC,MAAM,YAAY,OAAO;cAClC,MAAM;cACN,OAAO,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;;QAEpC,OAAO,IAAI,MAAM,CAAC,OAAO,CAAC,CAAC;KAC9B,CAAC;;;;;;;;;;;IAWF,kBAAkB,CAAC,WAAW,CAAC,GAAG,GAAG,UAAU,KAAK;IACpD;QACI,IAAI,IAAI,CAAC,YAAY,KAAK,KAAK;QAC/B;YACI,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;SAC1B;QACD,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC;KAC7B,CAAC;;IAEF,kBAAkB,CAAC,WAAW,CAAC,GAAG,GAAG;IACrC;QACI,OAAO,IAAI,CAAC,YAAY,CAAC;KAC5B,CAAC;;;;;;;IAOF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;KAC5D,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,CAAC,GAAGA,MAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;QAEhC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;QACpD,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;KACvB,CAAC;;;;;;;IAOF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC;KAC7D,CAAC;;IAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,KAAK;IAC/C;QACI,IAAI,CAAC,GAAGA,MAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;QAEhC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC;QACrD,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;KACxB,CAAC;;;;;;;;;;;;;;;;;;;;IAoBF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,OAAO,CAAC;KACvB,CAAC;;IAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,KAAK;IAC/C;QACI,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;KAChC,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;IAEF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,KAAK;IAC7C;QACI,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,QAAQ,GAAG,CAAC,KAAK,IAAI,EAAE,KAAK,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,GAAG,IAAI,KAAK,EAAE,CAAC,CAAC;KAC7E,CAAC;;;;;;;IAOF,kBAAkB,CAAC,OAAO,CAAC,GAAG,GAAG;IACjC;QACI,OAAO,IAAI,CAAC,QAAQ,CAAC;KACxB,CAAC;;IAEF,kBAAkB,CAAC,OAAO,CAAC,GAAG,GAAG,UAAU,KAAK;IAChD;QACI,IAAI,IAAI,CAAC,QAAQ,KAAK,KAAK;QAC3B;YACI,OAAO;SACV;;QAED,IAAI,CAAC,QAAQ,GAAG,KAAK,IAAI,OAAO,CAAC,KAAK,CAAC;QACvC,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC;;QAE5B,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;QACrB,IAAI,CAAC,iBAAiB,GAAG,CAAC,CAAC,CAAC;;QAE5B,IAAI,KAAK;QACT;;YAEI,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK;YAC3B;gBACI,IAAI,CAAC,gBAAgB,EAAE,CAAC;aAC3B;;YAED;gBACI,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC,CAAC;aACrD;SACJ;KACJ,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,MAAM,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAEhE,OAAO,MAAM,CAAC;CACjB,CAAC,SAAS,CAAC,CAAC,CAAC;;AClqBd;;;;;;;AAOA,AAKA;;;;;;;;;;;;AAYA,IAAI,aAAa,GAAG;IAChB,eAAe,EAAE,CAAC;IAClB,iBAAiB,EAAE,CAAC;CACvB,CAAC;;;;AAIF,IAAI,YAAY,GAAG;IACf,KAAK,EAAE,MAAM;IACb,UAAU,EAAE,KAAK;IACjB,UAAU,EAAE,KAAK;IACjB,eAAe,EAAE,CAAC;IAClB,eAAe,EAAE,IAAI,CAAC,EAAE,GAAG,CAAC;IAC5B,cAAc,EAAE,CAAC;IACjB,eAAe,EAAE,OAAO;IACxB,kBAAkB,EAAE,CAAC;IACrB,IAAI,EAAE,OAAO;IACb,gBAAgB,EAAE,aAAa,CAAC,eAAe;IAC/C,iBAAiB,EAAE,EAAE;IACrB,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,EAAE;IACZ,SAAS,EAAE,QAAQ;IACnB,WAAW,EAAE,QAAQ;IACrB,UAAU,EAAE,QAAQ;IACpB,aAAa,EAAE,CAAC;IAChB,UAAU,EAAE,CAAC;IACb,QAAQ,EAAE,OAAO;IACjB,UAAU,EAAE,EAAE;IACd,OAAO,EAAE,CAAC;IACV,MAAM,EAAE,OAAO;IACf,eAAe,EAAE,CAAC;IAClB,YAAY,EAAE,YAAY;IAC1B,IAAI,EAAE,KAAK;IACX,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,KAAK;IACf,aAAa,EAAE,GAAG;IAClB,OAAO,EAAE,CAAC;CACb,CAAC;;AAEF,IAAI,mBAAmB,GAAG;IACtB,OAAO;IACP,YAAY;IACZ,WAAW;IACX,SAAS;IACT,SAAS;IACT,WAAW,EAAE,CAAC;;;;;;;;;;;;AAYlB,IAAI,SAAS,GAAG,SAAS,SAAS,CAAC,KAAK;AACxC;IACI,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;;IAEjB,IAAI,CAAC,KAAK,EAAE,CAAC;;IAEb,kBAAkB,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;CAC1C,CAAC;;AAEF,IAAIG,oBAAkB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,eAAe,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,eAAe,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,cAAc,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,eAAe,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,kBAAkB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,gBAAgB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,iBAAiB,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,WAAW,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,aAAa,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,OAAO,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,OAAO,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,eAAe,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,YAAY,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,aAAa,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;AAQxiC,SAAS,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC1C;IACI,IAAI,gBAAgB,GAAG,EAAE,CAAC;;IAE1B,kBAAkB,CAAC,gBAAgB,EAAE,IAAI,EAAE,YAAY,CAAC,CAAC;;IAEzD,OAAO,IAAI,SAAS,CAAC,gBAAgB,CAAC,CAAC;CAC1C,CAAC;;;;;AAKF,SAAS,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK;AAC1C;IACI,kBAAkB,CAAC,IAAI,EAAE,YAAY,EAAE,YAAY,CAAC,CAAC;CACxD,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;AAC/B;IACI,OAAO,IAAI,CAAC,MAAM,CAAC;CACtB,CAAC;AACFA,oBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;AAC9C;IACI,IAAI,IAAI,CAAC,MAAM,KAAK,KAAK;IACzB;QACI,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACpB,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;AACFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,UAAU;AACxD;IACI,IAAI,IAAI,CAAC,WAAW,KAAK,UAAU;IACnC;QACI,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;QAC9B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;AACFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,UAAU;AACxD;IACI,IAAI,IAAI,CAAC,WAAW,KAAK,UAAU;IACnC;QACI,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;QAC9B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG;AACzC;IACI,OAAO,IAAI,CAAC,gBAAgB,CAAC;CAChC,CAAC;AACFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG,UAAU,eAAe;AAClE;IACI,IAAI,IAAI,CAAC,gBAAgB,KAAK,eAAe;IAC7C;QACI,IAAI,CAAC,gBAAgB,GAAG,eAAe,CAAC;QACxC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG;AACzC;IACI,OAAO,IAAI,CAAC,gBAAgB,CAAC;CAChC,CAAC;AACFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG,UAAU,eAAe;AAClE;IACI,IAAI,IAAI,CAAC,gBAAgB,KAAK,eAAe;IAC7C;QACI,IAAI,CAAC,gBAAgB,GAAG,eAAe,CAAC;QACxC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,cAAc,CAAC,GAAG,GAAG;AACxC;IACI,OAAO,IAAI,CAAC,eAAe,CAAC;CAC/B,CAAC;AACFA,oBAAkB,CAAC,cAAc,CAAC,GAAG,GAAG,UAAU,cAAc;AAChE;IACI,IAAI,IAAI,CAAC,eAAe,KAAK,cAAc;IAC3C;QACI,IAAI,CAAC,eAAe,GAAG,cAAc,CAAC;QACtC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG;AACzC;IACI,OAAO,IAAI,CAAC,gBAAgB,CAAC;CAChC,CAAC;AACFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG,UAAU,eAAe;AAClE;IACI,IAAI,WAAW,GAAG,QAAQ,CAAC,eAAe,CAAC,CAAC;IAC5C,IAAI,IAAI,CAAC,gBAAgB,KAAK,WAAW;IACzC;QACI,IAAI,CAAC,gBAAgB,GAAG,WAAW,CAAC;QACpC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,kBAAkB,CAAC,GAAG,GAAG;AAC5C;IACI,OAAO,IAAI,CAAC,mBAAmB,CAAC;CACnC,CAAC;AACFA,oBAAkB,CAAC,kBAAkB,CAAC,GAAG,GAAG,UAAU,kBAAkB;AACxE;IACI,IAAI,IAAI,CAAC,mBAAmB,KAAK,kBAAkB;IACnD;QACI,IAAI,CAAC,mBAAmB,GAAG,kBAAkB,CAAC;QAC9C,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;;AASFA,oBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;AAC9B;IACI,OAAO,IAAI,CAAC,KAAK,CAAC;CACrB,CAAC;AACFA,oBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,IAAI;AAC5C;IACI,IAAI,WAAW,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC;IACjC,IAAI,IAAI,CAAC,KAAK,KAAK,WAAW;IAC9B;QACI,IAAI,CAAC,KAAK,GAAG,WAAW,CAAC;QACzB,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,gBAAgB,CAAC,GAAG,GAAG;AAC1C;IACI,OAAO,IAAI,CAAC,iBAAiB,CAAC;CACjC,CAAC;AACFA,oBAAkB,CAAC,gBAAgB,CAAC,GAAG,GAAG,UAAU,gBAAgB;AACpE;IACI,IAAI,IAAI,CAAC,iBAAiB,KAAK,gBAAgB;IAC/C;QACI,IAAI,CAAC,iBAAiB,GAAG,gBAAgB,CAAC;QAC1C,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,iBAAiB,CAAC,GAAG,GAAG;AAC3C;IACI,OAAO,IAAI,CAAC,kBAAkB,CAAC;CAClC,CAAC;AACFA,oBAAkB,CAAC,iBAAiB,CAAC,GAAG,GAAG,UAAU,iBAAiB;AACtE;IACI,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,kBAAkB,CAAC,iBAAiB,CAAC;IAC9D;QACI,IAAI,CAAC,kBAAkB,GAAG,iBAAiB,CAAC;QAC5C,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;AACFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,UAAU;AACxD;IACI,IAAI,IAAI,CAAC,UAAU,KAAK,UAAU;IAClC;QACI,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;QAC9B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG;AAClC;IACI,OAAO,IAAI,CAAC,SAAS,CAAC;CACzB,CAAC;AACFA,oBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,QAAQ;AACpD;IACI,IAAI,IAAI,CAAC,SAAS,KAAK,QAAQ;IAC/B;QACI,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;QAC1B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG;AACnC;IACI,OAAO,IAAI,CAAC,UAAU,CAAC;CAC1B,CAAC;AACFA,oBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG,UAAU,SAAS;AACtD;IACI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS;IACjC;QACI,IAAI,CAAC,UAAU,GAAG,SAAS,CAAC;QAC5B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,WAAW,CAAC,GAAG,GAAG;AACrC;IACI,OAAO,IAAI,CAAC,YAAY,CAAC;CAC5B,CAAC;AACFA,oBAAkB,CAAC,WAAW,CAAC,GAAG,GAAG,UAAU,WAAW;AAC1D;IACI,IAAI,IAAI,CAAC,YAAY,KAAK,WAAW;IACrC;QACI,IAAI,CAAC,YAAY,GAAG,WAAW,CAAC;QAChC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;AACFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,UAAU;AACxD;IACI,IAAI,IAAI,CAAC,WAAW,KAAK,UAAU;IACnC;QACI,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;QAC9B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,aAAa,CAAC,GAAG,GAAG;AACvC;IACI,OAAO,IAAI,CAAC,cAAc,CAAC;CAC9B,CAAC;AACFA,oBAAkB,CAAC,aAAa,CAAC,GAAG,GAAG,UAAU,aAAa;AAC9D;IACI,IAAI,IAAI,CAAC,cAAc,KAAK,aAAa;IACzC;QACI,IAAI,CAAC,cAAc,GAAG,aAAa,CAAC;QACpC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;AACFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,UAAU;AACxD;IACI,IAAI,IAAI,CAAC,WAAW,KAAK,UAAU;IACnC;QACI,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;QAC9B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,OAAO,CAAC,GAAG,GAAG;AACjC;IACI,OAAO,IAAI,CAAC,QAAQ,CAAC;CACxB,CAAC;AACFA,oBAAkB,CAAC,OAAO,CAAC,GAAG,GAAG,UAAU,OAAO;AAClD;IACI,IAAI,IAAI,CAAC,QAAQ,KAAK,OAAO;IAC7B;QACI,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;QACxB,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG;AAClC;IACI,OAAO,IAAI,CAAC,SAAS,CAAC;CACzB,CAAC;AACFA,oBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,QAAQ;AACpD;IACI,IAAI,IAAI,CAAC,SAAS,KAAK,QAAQ;IAC/B;QACI,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;QAC1B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;AACFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,UAAU;AACxD;IACI,IAAI,IAAI,CAAC,WAAW,KAAK,UAAU;IACnC;QACI,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;QAC9B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,OAAO,CAAC,GAAG,GAAG;AACjC;IACI,OAAO,IAAI,CAAC,QAAQ,CAAC;CACxB,CAAC;AACFA,oBAAkB,CAAC,OAAO,CAAC,GAAG,GAAG,UAAU,OAAO;AAClD;IACI,IAAI,IAAI,CAAC,QAAQ,KAAK,OAAO;IAC7B;QACI,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;QACxB,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,IAAI,CAAC,OAAO,CAAC;CACvB,CAAC;AACFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,MAAM;AAChD;IACI,IAAI,WAAW,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC;IACnC,IAAI,IAAI,CAAC,OAAO,KAAK,WAAW;IAChC;QACI,IAAI,CAAC,OAAO,GAAG,WAAW,CAAC;QAC3B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;AAQFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG;AACzC;IACI,OAAO,IAAI,CAAC,gBAAgB,CAAC;CAChC,CAAC;AACFA,oBAAkB,CAAC,eAAe,CAAC,GAAG,GAAG,UAAU,eAAe;AAClE;IACI,IAAI,IAAI,CAAC,gBAAgB,KAAK,eAAe;IAC7C;QACI,IAAI,CAAC,gBAAgB,GAAG,eAAe,CAAC;QACxC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,YAAY,CAAC,GAAG,GAAG;AACtC;IACI,OAAO,IAAI,CAAC,aAAa,CAAC;CAC7B,CAAC;AACFA,oBAAkB,CAAC,YAAY,CAAC,GAAG,GAAG,UAAU,YAAY;AAC5D;IACI,IAAI,IAAI,CAAC,aAAa,KAAK,YAAY;IACvC;QACI,IAAI,CAAC,aAAa,GAAG,YAAY,CAAC;QAClC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;AAC9B;IACI,OAAO,IAAI,CAAC,KAAK,CAAC;CACrB,CAAC;AACFA,oBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,IAAI;AAC5C;IACI,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI;IACvB;QACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;QAClB,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;;;;;;;;AAcFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;AACpC;IACI,OAAO,IAAI,CAAC,WAAW,CAAC;CAC3B,CAAC;AACFA,oBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,UAAU;AACxD;IACI,IAAI,IAAI,CAAC,WAAW,KAAK,UAAU;IACnC;QACI,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;QAC9B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG;AAClC;IACI,OAAO,IAAI,CAAC,SAAS,CAAC;CACzB,CAAC;AACFA,oBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,QAAQ;AACpD;IACI,IAAI,IAAI,CAAC,SAAS,KAAK,QAAQ;IAC/B;QACI,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;QAC1B,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,aAAa,CAAC,GAAG,GAAG;AACvC;IACI,OAAO,IAAI,CAAC,cAAc,CAAC;CAC9B,CAAC;AACFA,oBAAkB,CAAC,aAAa,CAAC,GAAG,GAAG,UAAU,aAAa;AAC9D;IACI,IAAI,IAAI,CAAC,cAAc,KAAK,aAAa;IACzC;QACI,IAAI,CAAC,cAAc,GAAG,aAAa,CAAC;QACpC,IAAI,CAAC,OAAO,EAAE,CAAC;KAClB;CACJ,CAAC;;;;;;;AAOF,SAAS,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY;AACxD;;IAEI,IAAI,cAAc,GAAG,CAAC,OAAO,IAAI,CAAC,QAAQ,KAAK,QAAQ,KAAK,CAAC,IAAI,CAAC,QAAQ,IAAI,IAAI,IAAI,IAAI,CAAC,QAAQ,CAAC;;;;IAIpG,IAAI,YAAY,GAAG,IAAI,CAAC,UAAU,CAAC;;IAEnC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC;IACnC;QACI,YAAY,GAAG,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;KAC7C;;IAED,KAAK,IAAI,CAAC,GAAG,YAAY,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;IACjD;;QAEI,IAAI,UAAU,GAAG,YAAY,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC;;;QAGxC,IAAI,CAAC,CAAC,oBAAoB,EAAE,IAAI,CAAC,UAAU,CAAC,IAAI,mBAAmB,CAAC,OAAO,CAAC,UAAU,CAAC,GAAG,CAAC;QAC3F;YACI,UAAU,GAAG,IAAI,GAAG,UAAU,GAAG,IAAI,CAAC;SACzC;QACD,YAAY,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC;KAChC;;IAED,QAAQ,CAAC,IAAI,CAAC,SAAS,IAAI,GAAG,IAAI,IAAI,CAAC,WAAW,CAAC,GAAG,GAAG,IAAI,IAAI,CAAC,UAAU,CAAC,GAAG,GAAG,GAAG,cAAc,GAAG,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE;CAC1I,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,SAAS,CAAC,SAAS,EAAEA,oBAAkB,EAAE,CAAC;;;;;;;;AAQnE,SAAS,cAAc,CAAC,KAAK;AAC7B;IACI,IAAI,OAAO,KAAK,KAAK,QAAQ;IAC7B;QACI,OAAO,UAAU,CAAC,KAAK,CAAC,CAAC;KAC5B;SACI,KAAK,OAAO,KAAK,KAAK,QAAQ;IACnC;QACI,KAAK,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC;QAC9B;YACI,KAAK,GAAG,KAAK,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;SACpC;KACJ;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;AASD,SAAS,QAAQ,CAAC,KAAK;AACvB;IACI,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC;IACzB;QACI,OAAO,cAAc,CAAC,KAAK,CAAC,CAAC;KAChC;;IAED;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,EAAE,CAAC;QACrC;YACI,KAAK,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;SACvC;;QAED,OAAO,KAAK,CAAC;KAChB;CACJ;;;;;;;;;;AAUD,SAAS,cAAc,CAAC,MAAM,EAAE,MAAM;AACtC;IACI,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC;IACpD;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,IAAI,MAAM,CAAC,MAAM,KAAK,MAAM,CAAC,MAAM;IACnC;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,EAAE,CAAC;IACtC;QACI,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,MAAM,CAAC,CAAC,CAAC;QAC3B;YACI,OAAO,KAAK,CAAC;SAChB;KACJ;;IAED,OAAO,IAAI,CAAC;CACf;;;;;;;;;AASD,SAAS,kBAAkB,CAAC,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE;IACrD,KAAK,IAAI,IAAI,IAAI,WAAW,EAAE;QAC1B,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,EAAE;YAC7B,MAAM,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,CAAC;SACvC,MAAM;YACH,MAAM,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC;SAC/B;KACJ;CACJ;;;;;;;;;;;;;AAaD,IAAI,WAAW,GAAG,SAAS,WAAW,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,YAAY,EAAE,cAAc;AAC9H;;;;;;IAMI,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;IAOjB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;;IAOnB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;;IAOnB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;;IAOrB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;;IAOnB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;;;;;;;IAO7B,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;;;;;;;IAO7B,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;;;;;;;IAOjC,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;CACxC,CAAC;;;;;;;;;;;AAWF,WAAW,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM;AAC7E;QACQ,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC;;IAE1D,QAAQ,GAAG,CAAC,QAAQ,KAAK,SAAS,IAAI,QAAQ,KAAK,IAAI,IAAI,KAAK,CAAC,QAAQ,GAAG,QAAQ,CAAC;IACrF,IAAI,IAAI,GAAG,KAAK,CAAC,YAAY,EAAE,CAAC;IAChC,IAAI,cAAc,GAAG,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;;;;IAInD,IAAI,cAAc,CAAC,QAAQ,KAAK,CAAC;IACjC;QACI,cAAc,CAAC,QAAQ,GAAG,KAAK,CAAC,QAAQ,CAAC;QACzC,cAAc,CAAC,MAAM,GAAG,KAAK,CAAC,QAAQ,CAAC;KAC1C;;IAED,IAAI,OAAO,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;IAEtC,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC;;IAEpB,IAAI,UAAU,GAAG,QAAQ,GAAG,WAAW,CAAC,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,CAAC,GAAG,IAAI,CAAC;IAC7E,IAAI,KAAK,GAAG,UAAU,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;IAC/C,IAAI,UAAU,GAAG,IAAI,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACzC,IAAI,YAAY,GAAG,CAAC,CAAC;;IAErB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE;IACrC;QACI,IAAI,SAAS,GAAG,OAAO,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,KAAK,CAAC,aAAa,CAAC,CAAC;;QAEpG,UAAU,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC;QAC1B,YAAY,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,SAAS,CAAC,CAAC;KACpD;IACD,IAAI,KAAK,GAAG,YAAY,GAAG,KAAK,CAAC,eAAe,CAAC;;IAEjD,IAAI,KAAK,CAAC,UAAU;IACpB;QACI,KAAK,IAAI,KAAK,CAAC,kBAAkB,CAAC;KACrC;;IAED,IAAI,UAAU,GAAG,KAAK,CAAC,UAAU,IAAI,cAAc,CAAC,QAAQ,GAAG,KAAK,CAAC,eAAe,CAAC;IACrF,IAAI,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,EAAE,cAAc,CAAC,QAAQ,GAAG,KAAK,CAAC,eAAe,CAAC;WAC3E,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,KAAK,UAAU,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;;IAE1D,IAAI,KAAK,CAAC,UAAU;IACpB;QACI,MAAM,IAAI,KAAK,CAAC,kBAAkB,CAAC;KACtC;;IAED,OAAO,IAAI,WAAW;QAClB,IAAI;QACJ,KAAK;QACL,KAAK;QACL,MAAM;QACN,KAAK;QACL,UAAU;QACV,UAAU,GAAG,KAAK,CAAC,OAAO;QAC1B,YAAY;QACZ,cAAc;KACjB,CAAC;CACL,CAAC;;;;;;;;;;;;AAYF,WAAW,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM;AAC7D;QACQ,KAAK,MAAM,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC;;IAE1D,IAAI,OAAO,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;IAEtC,IAAI,KAAK,GAAG,CAAC,CAAC;IACd,IAAI,IAAI,GAAG,EAAE,CAAC;IACd,IAAI,KAAK,GAAG,EAAE,CAAC;;IAEf,IAAI,KAAK,GAAG,EAAE,CAAC;IACf,IAAI,aAAa,GAAG,KAAK,CAAC,aAAa,CAAC;QACpC,IAAI,UAAU,GAAG,KAAK,CAAC,UAAU,CAAC;;;IAGtC,IAAI,cAAc,GAAG,WAAW,CAAC,cAAc,CAAC,UAAU,CAAC,CAAC;IAC5D,IAAI,gBAAgB,GAAG,WAAW,CAAC,gBAAgB,CAAC,UAAU,CAAC,CAAC;;;IAGhE,IAAI,gBAAgB,GAAG,CAAC,cAAc,CAAC;;;;;;;;IAQvC,IAAI,aAAa,GAAG,KAAK,CAAC,aAAa,GAAG,aAAa,CAAC;;;IAGxD,IAAI,MAAM,GAAG,WAAW,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;;IAExC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,EAAE;IACtC;;QAEI,IAAI,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;;QAGtB,IAAI,WAAW,CAAC,SAAS,CAAC,KAAK,CAAC;QAChC;;YAEI,IAAI,CAAC,gBAAgB;YACrB;gBACI,KAAK,IAAI,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;gBACnC,gBAAgB,GAAG,CAAC,cAAc,CAAC;gBACnC,IAAI,GAAG,EAAE,CAAC;gBACV,KAAK,GAAG,CAAC,CAAC;gBACV,SAAS;aACZ;;;;YAID,KAAK,GAAG,GAAG,CAAC;SACf;;;QAGD,IAAI,cAAc;QAClB;;YAEI,IAAI,mBAAmB,GAAG,WAAW,CAAC,eAAe,CAAC,KAAK,CAAC,CAAC;YAC7D,IAAI,mBAAmB,GAAG,WAAW,CAAC,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;;YAE7E,IAAI,mBAAmB,IAAI,mBAAmB;YAC9C;gBACI,SAAS;aACZ;SACJ;;;QAGD,IAAI,UAAU,GAAG,WAAW,CAAC,YAAY,CAAC,KAAK,EAAE,aAAa,EAAE,KAAK,EAAE,OAAO,CAAC,CAAC;;;QAGhF,IAAI,UAAU,GAAG,aAAa;QAC9B;;YAEI,IAAI,IAAI,KAAK,EAAE;YACf;;gBAEI,KAAK,IAAI,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;gBACnC,IAAI,GAAG,EAAE,CAAC;gBACV,KAAK,GAAG,CAAC,CAAC;aACb;;;YAGD,IAAI,WAAW,CAAC,aAAa,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC;YACtD;;gBAEI,IAAI,UAAU,GAAG,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;;;gBAGjC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE;gBAC1C;oBACI,IAAI,IAAI,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;;oBAEzB,IAAI,CAAC,GAAG,CAAC,CAAC;;;oBAGV,OAAO,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC;oBACxB;wBACI,IAAI,QAAQ,GAAG,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;wBACjC,IAAI,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;;wBAGrC,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC;wBAC9E;;4BAEI,IAAI,IAAI,QAAQ,CAAC;yBACpB;;wBAED;4BACI,MAAM;yBACT;;wBAED,CAAC,EAAE,CAAC;qBACP;;oBAED,CAAC,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;;oBAErB,IAAI,cAAc,GAAG,WAAW,CAAC,YAAY,CAAC,IAAI,EAAE,aAAa,EAAE,KAAK,EAAE,OAAO,CAAC,CAAC;;oBAEnF,IAAI,cAAc,GAAG,KAAK,GAAG,aAAa;oBAC1C;wBACI,KAAK,IAAI,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;wBACnC,gBAAgB,GAAG,KAAK,CAAC;wBACzB,IAAI,GAAG,EAAE,CAAC;wBACV,KAAK,GAAG,CAAC,CAAC;qBACb;;oBAED,IAAI,IAAI,IAAI,CAAC;oBACb,KAAK,IAAI,cAAc,CAAC;iBAC3B;aACJ;;;;YAID;;;gBAGI,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC;gBACnB;oBACI,KAAK,IAAI,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;oBACnC,IAAI,GAAG,EAAE,CAAC;oBACV,KAAK,GAAG,CAAC,CAAC;iBACb;;gBAED,IAAI,WAAW,GAAG,CAAC,KAAK,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;;gBAG1C,KAAK,IAAI,WAAW,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,WAAW,CAAC,CAAC;gBAClD,gBAAgB,GAAG,KAAK,CAAC;gBACzB,IAAI,GAAG,EAAE,CAAC;gBACV,KAAK,GAAG,CAAC,CAAC;aACb;SACJ;;;;QAID;;;YAGI,IAAI,UAAU,GAAG,KAAK,GAAG,aAAa;YACtC;;gBAEI,gBAAgB,GAAG,KAAK,CAAC;;;gBAGzB,KAAK,IAAI,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;;;gBAGnC,IAAI,GAAG,EAAE,CAAC;gBACV,KAAK,GAAG,CAAC,CAAC;aACb;;;YAGD,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,WAAW,CAAC,eAAe,CAAC,KAAK,CAAC,IAAI,gBAAgB;YAC9E;;gBAEI,IAAI,IAAI,KAAK,CAAC;;;gBAGd,KAAK,IAAI,UAAU,CAAC;aACvB;SACJ;KACJ;;IAED,KAAK,IAAI,WAAW,CAAC,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;;IAE1C,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;;;;;AAWF,WAAW,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,IAAI,EAAE,OAAO;AACrD;QACQ,KAAK,OAAO,KAAK,KAAK,CAAC,GAAG,OAAO,GAAG,IAAI,CAAC;;IAE7C,IAAI,GAAG,WAAW,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;;IAEnC,IAAI,GAAG,CAAC,OAAO,KAAK,IAAI,GAAG,IAAI,IAAI,IAAI,CAAC;;IAExC,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;;;;AAYF,WAAW,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,GAAG,EAAE,aAAa,EAAE,KAAK,EAAE,OAAO;AACpF;IACI,IAAI,KAAK,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC;;IAEvB,IAAI,KAAK,KAAK,SAAS;IACvB;QACI,IAAI,OAAO,IAAI,CAAC,GAAG,CAAC,MAAM,IAAI,aAAa,CAAC,CAAC;;QAE7C,KAAK,GAAG,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,KAAK,GAAG,OAAO,CAAC;QACjD,KAAK,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;KACtB;;IAED,OAAO,KAAK,CAAC;CAChB,CAAC;;;;;;;;;AASF,WAAW,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,UAAU;AAChE;IACI,QAAQ,UAAU,KAAK,QAAQ,IAAI,UAAU,KAAK,UAAU,EAAE;CACjE,CAAC;;;;;;;;;AASF,WAAW,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,UAAU;AACpE;IACI,QAAQ,UAAU,KAAK,QAAQ,EAAE;CACpC,CAAC;;;;;;;;;AASF,WAAW,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,IAAI;AAChD;IACI,IAAI,OAAO,IAAI,KAAK,QAAQ;IAC5B;QACI,OAAO,EAAE,CAAC;KACb;;IAED,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;IACzC;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;;QAEnB,IAAI,CAAC,WAAW,CAAC,eAAe,CAAC,IAAI,CAAC;QACtC;YACI,MAAM;SACT;;QAED,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;KAC5B;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;AASF,WAAW,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,IAAI;AAChD;IACI,IAAI,OAAO,IAAI,KAAK,QAAQ;IAC5B;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,QAAQ,WAAW,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE;CACnE,CAAC;;;;;;;;;AASF,WAAW,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,IAAI;AAC5D;IACI,IAAI,OAAO,IAAI,KAAK,QAAQ;IAC5B;QACI,OAAO,KAAK,CAAC;KAChB;;IAED,QAAQ,WAAW,CAAC,eAAe,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE;CACzE,CAAC;;;;;;;;;AASF,WAAW,CAAC,QAAQ,GAAG,SAAS,QAAQ,EAAE,IAAI;AAC9C;IACI,IAAI,MAAM,GAAG,EAAE,CAAC;IAChB,IAAI,KAAK,GAAG,EAAE,CAAC;;IAEf,IAAI,OAAO,IAAI,KAAK,QAAQ;IAC5B;QACI,OAAO,MAAM,CAAC;KACjB;;IAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE;IACpC;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;;QAEnB,IAAI,WAAW,CAAC,eAAe,CAAC,IAAI,CAAC,IAAI,WAAW,CAAC,SAAS,CAAC,IAAI,CAAC;QACpE;YACI,IAAI,KAAK,KAAK,EAAE;YAChB;gBACI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;gBACnB,KAAK,GAAG,EAAE,CAAC;aACd;;YAED,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;YAElB,SAAS;SACZ;;QAED,KAAK,IAAI,IAAI,CAAC;KACjB;;IAED,IAAI,KAAK,KAAK,EAAE;IAChB;QACI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KACtB;;IAED,OAAO,MAAM,CAAC;CACjB,CAAC;;;;;;;;;;;;;AAaF,WAAW,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,KAAK,EAAE,UAAU;AACrE;IACI,OAAO,UAAU,CAAC;CACrB,CAAC;;;;;;;;;;;;;;;;;AAiBF,WAAW,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK,EAAE,UAAU;AAC5F;IACI,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;AASF,WAAW,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,IAAI;AACpD;;IAEI,IAAI,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC;IAC5B;QACI,OAAO,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;KACnC;;IAED,IAAI,UAAU,GAAG,EAAE,CAAC;;IAEpB,IAAI,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC;IACjC,IAAI,OAAO,GAAG,WAAW,CAAC,QAAQ,CAAC;;IAEnC,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC;;IAEpB,IAAI,aAAa,GAAG,WAAW,CAAC,cAAc,GAAG,WAAW,CAAC,eAAe,CAAC;IAC7E,IAAI,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC,KAAK,CAAC,CAAC;IAChE,IAAI,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,WAAW,CAAC,eAAe,CAAC,CAAC,KAAK,CAAC,CAAC;IACjF,IAAI,MAAM,GAAG,CAAC,GAAG,QAAQ,CAAC;;IAE1B,QAAQ,GAAG,QAAQ,GAAG,WAAW,CAAC,mBAAmB,GAAG,CAAC,CAAC;;IAE1D,MAAM,CAAC,KAAK,GAAG,KAAK,CAAC;IACrB,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC;;IAEvB,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC;IAC3B,OAAO,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;;IAEtC,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC;;IAEpB,OAAO,CAAC,YAAY,GAAG,YAAY,CAAC;IACpC,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC;IAC3B,OAAO,CAAC,QAAQ,CAAC,aAAa,EAAE,CAAC,EAAE,QAAQ,CAAC,CAAC;;IAE7C,IAAI,SAAS,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC;IAC/D,IAAI,MAAM,GAAG,SAAS,CAAC,MAAM,CAAC;IAC9B,IAAI,IAAI,GAAG,KAAK,GAAG,CAAC,CAAC;;IAErB,IAAI,CAAC,GAAG,CAAC,CAAC;IACV,IAAI,GAAG,GAAG,CAAC,CAAC;IACZ,IAAI,IAAI,GAAG,KAAK,CAAC;;;IAGjB,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,EAAE,EAAE,CAAC;IAC7B;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,IAAI,CAAC;QAChC;YACI,IAAI,SAAS,CAAC,GAAG,GAAG,CAAC,CAAC,KAAK,GAAG;YAC9B;gBACI,IAAI,GAAG,IAAI,CAAC;gBACZ,MAAM;aACT;SACJ;QACD,IAAI,CAAC,IAAI;QACT;YACI,GAAG,IAAI,IAAI,CAAC;SACf;;QAED;YACI,MAAM;SACT;KACJ;;IAED,UAAU,CAAC,MAAM,GAAG,QAAQ,GAAG,CAAC,CAAC;;IAEjC,GAAG,GAAG,MAAM,GAAG,IAAI,CAAC;IACpB,IAAI,GAAG,KAAK,CAAC;;;IAGb,KAAK,CAAC,GAAG,MAAM,EAAE,CAAC,GAAG,QAAQ,EAAE,EAAE,CAAC;IAClC;QACI,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,EAAE,GAAG,IAAI,CAAC;QACtC;YACI,IAAI,SAAS,CAAC,GAAG,GAAG,GAAG,CAAC,KAAK,GAAG;YAChC;gBACI,IAAI,GAAG,IAAI,CAAC;gBACZ,MAAM;aACT;SACJ;;QAED,IAAI,CAAC,IAAI;QACT;YACI,GAAG,IAAI,IAAI,CAAC;SACf;;QAED;YACI,MAAM;SACT;KACJ;;IAED,UAAU,CAAC,OAAO,GAAG,CAAC,GAAG,QAAQ,CAAC;IAClC,UAAU,CAAC,QAAQ,GAAG,UAAU,CAAC,MAAM,GAAG,UAAU,CAAC,OAAO,CAAC;;IAE7D,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,UAAU,CAAC;;IAEtC,OAAO,UAAU,CAAC;CACrB,CAAC;;;;;;;;AAQF,WAAW,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,IAAI;AACtD;QACQ,KAAK,IAAI,KAAK,KAAK,CAAC,GAAG,IAAI,GAAG,EAAE,CAAC;;IAErC,IAAI,IAAI;IACR;QACI,OAAO,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;KACnC;;IAED;QACI,WAAW,CAAC,MAAM,GAAG,EAAE,CAAC;KAC3B;CACJ,CAAC;;;;;;;;;;;;;AAaF,IAAI,MAAM,GAAG,CAAC,YAAY;IACtB;IACA;;QAEI,IAAI,CAAC,GAAG,IAAI,eAAe,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;QAElC,OAAO,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;KACpE;IACD,OAAO,EAAE;IACT;QACI,OAAO,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;KAC3C;CACJ,GAAG,CAAC;;AAEL,MAAM,CAAC,KAAK,GAAG,MAAM,CAAC,MAAM,GAAG,EAAE,CAAC;;;;;;;;;AASlC,WAAW,CAAC,OAAO,GAAG,MAAM,CAAC;;;;;;;;;AAS7B,WAAW,CAAC,QAAQ,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;;;;;;;;AAS/C,WAAW,CAAC,MAAM,GAAG,EAAE,CAAC;;;;;;;;;;;;AAYxB,WAAW,CAAC,cAAc,GAAG,MAAM,CAAC;;;;;;;;;;;AAWpC,WAAW,CAAC,eAAe,GAAG,GAAG,CAAC;;;;;;;;;;;AAWlC,WAAW,CAAC,mBAAmB,GAAG,GAAG,CAAC;;;;;;;;;AAStC,WAAW,CAAC,SAAS,GAAG;IACpB,MAAM;IACN,MAAM,EAAE,CAAC;;;;;;;;;AASb,WAAW,CAAC,eAAe,GAAG;IAC1B,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM;IACN,MAAM,EAAE,CAAC;;;;;;;;;;;;;;AAcb,IAAI,qBAAqB,GAAG;IACxB,OAAO,EAAE,IAAI;IACb,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,IAAI;CACpB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2BF,IAAI,IAAI,iBAAiB,UAAU,MAAM,EAAE;IACvC,SAAS,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM;IACjC;QACI,MAAM,GAAG,MAAM,IAAI,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;;QAEpD,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC;QACjB,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;;QAElB,IAAI,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;QAEnC,OAAO,CAAC,IAAI,GAAG,IAAI,SAAS,EAAE,CAAC;QAC/B,OAAO,CAAC,IAAI,GAAG,IAAI,SAAS,EAAE,CAAC;;QAE/B,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;;;;;;;QAO3B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;;;;;QAMrB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;;;;;;;QAQ5C,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC,UAAU,CAAC;QACvC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;;;;;;;;QAQ5B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;;;;;;QAQlB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;;;;;;QAOnB,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC;;;;;;;;QAQ3B,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;;QAEhB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;QAEnB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;KAC1B;;IAED,KAAK,MAAM,GAAG,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC;IACtC,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IAC7D,IAAI,CAAC,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC;;IAElC,IAAI,kBAAkB,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;IAQxL,IAAI,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,YAAY;IAC7D;QACI,IAAI,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;;;QAGxB,IAAI,IAAI,CAAC,YAAY,KAAK,KAAK,CAAC,OAAO;QACvC;YACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;YAClB,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC,OAAO,CAAC;SACrC;;QAED,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,YAAY;QAC/B;YACI,OAAO;SACV;;QAED,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,YAAY,EAAE,CAAC;;QAExC,IAAI,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC3B,IAAI,QAAQ,GAAG,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,IAAI,GAAG,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;QAC1G,IAAI,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;QAC3B,IAAI,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;QAC7B,IAAI,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;QAC3B,IAAI,UAAU,GAAG,QAAQ,CAAC,UAAU,CAAC;QACrC,IAAI,UAAU,GAAG,QAAQ,CAAC,UAAU,CAAC;QACrC,IAAI,YAAY,GAAG,QAAQ,CAAC,YAAY,CAAC;QACzC,IAAI,cAAc,GAAG,QAAQ,CAAC,cAAc,CAAC;;QAE7C,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,KAAK,CAAC,OAAO,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,WAAW,CAAC,CAAC;QAC7F,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,IAAI,KAAK,CAAC,OAAO,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,WAAW,CAAC,CAAC;;QAE/F,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC;;QAElD,OAAO,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;;QAE/D,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;QAC1B,OAAO,CAAC,SAAS,GAAG,KAAK,CAAC,eAAe,CAAC;QAC1C,OAAO,CAAC,YAAY,GAAG,KAAK,CAAC,YAAY,CAAC;QAC1C,OAAO,CAAC,QAAQ,GAAG,KAAK,CAAC,QAAQ,CAAC;QAClC,OAAO,CAAC,UAAU,GAAG,KAAK,CAAC,UAAU,CAAC;;QAEtC,IAAI,aAAa,CAAC;QAClB,IAAI,aAAa,CAAC;;;QAGlB,IAAI,WAAW,GAAG,KAAK,CAAC,UAAU,GAAG,CAAC,GAAG,CAAC,CAAC;;;;;;;;;;;;;QAa3C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,EAAE,CAAC;QACpC;YACI,IAAI,YAAY,GAAG,KAAK,CAAC,UAAU,IAAI,CAAC,KAAK,CAAC,CAAC;YAC/C,IAAI,YAAY,GAAG,YAAY,GAAG,MAAM,GAAG,CAAC,GAAG,CAAC,CAAC;YACjD,IAAI,cAAc,GAAG,YAAY,GAAG,IAAI,CAAC,UAAU,CAAC;;YAEpD,IAAI,YAAY;YAChB;;;;gBAII,OAAO,CAAC,SAAS,GAAG,OAAO,CAAC;gBAC5B,OAAO,CAAC,WAAW,GAAG,OAAO,CAAC;;gBAE9B,IAAI,eAAe,GAAG,KAAK,CAAC,eAAe,CAAC;gBAC5C,IAAI,GAAG,GAAG,OAAO,CAAC,OAAO,eAAe,KAAK,QAAQ,GAAG,eAAe,GAAG,UAAU,CAAC,eAAe,CAAC,CAAC,CAAC;;gBAEvG,OAAO,CAAC,WAAW,GAAG,OAAO,IAAI,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,GAAG,IAAI,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,GAAG,IAAI,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,GAAG,IAAI,KAAK,CAAC,eAAe,CAAC,GAAG,GAAG,CAAC;gBACnI,OAAO,CAAC,UAAU,GAAG,KAAK,CAAC,cAAc,CAAC;gBAC1C,OAAO,CAAC,aAAa,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,kBAAkB,CAAC;gBACnF,OAAO,CAAC,aAAa,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,kBAAkB,IAAI,cAAc,CAAC;aACzG;;YAED;;gBAEI,OAAO,CAAC,SAAS,GAAG,IAAI,CAAC,kBAAkB,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;gBAC1D,OAAO,CAAC,WAAW,GAAG,KAAK,CAAC,MAAM,CAAC;;gBAEnC,OAAO,CAAC,WAAW,GAAG,CAAC,CAAC;gBACxB,OAAO,CAAC,UAAU,GAAG,CAAC,CAAC;gBACvB,OAAO,CAAC,aAAa,GAAG,CAAC,CAAC;gBAC1B,OAAO,CAAC,aAAa,GAAG,CAAC,CAAC;aAC7B;;;YAGD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,GAAG,EAAE;YAC3C;gBACI,aAAa,GAAG,KAAK,CAAC,eAAe,GAAG,CAAC,CAAC;gBAC1C,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,eAAe,GAAG,CAAC,KAAK,GAAG,GAAG,UAAU,CAAC,IAAI,cAAc,CAAC,MAAM,CAAC;;gBAE3F,IAAI,KAAK,CAAC,KAAK,KAAK,OAAO;gBAC3B;oBACI,aAAa,IAAI,YAAY,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;iBACnD;qBACI,IAAI,KAAK,CAAC,KAAK,KAAK,QAAQ;gBACjC;oBACI,aAAa,IAAI,CAAC,YAAY,GAAG,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;iBACzD;;gBAED,IAAI,KAAK,CAAC,MAAM,IAAI,KAAK,CAAC,eAAe;gBACzC;oBACI,IAAI,CAAC,iBAAiB;wBAClB,KAAK,CAAC,GAAG,CAAC;wBACV,aAAa,GAAG,KAAK,CAAC,OAAO;wBAC7B,aAAa,GAAG,KAAK,CAAC,OAAO,GAAG,YAAY;wBAC5C,IAAI;qBACP,CAAC;iBACL;;gBAED,IAAI,KAAK,CAAC,IAAI;gBACd;oBACI,IAAI,CAAC,iBAAiB;wBAClB,KAAK,CAAC,GAAG,CAAC;wBACV,aAAa,GAAG,KAAK,CAAC,OAAO;wBAC7B,aAAa,GAAG,KAAK,CAAC,OAAO,GAAG,YAAY;qBAC/C,CAAC;iBACL;aACJ;SACJ;;QAED,IAAI,CAAC,aAAa,EAAE,CAAC;KACxB,CAAC;;;;;;;;;;;IAWF,IAAI,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,EAAE,QAAQ;IACnF;QACI,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,KAAK,CAAC;;QAE5C,IAAI,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;;;QAGxB,IAAI,aAAa,GAAG,KAAK,CAAC,aAAa,CAAC;;QAExC,IAAI,aAAa,KAAK,CAAC;QACvB;YACI,IAAI,QAAQ;YACZ;gBACI,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;aACvC;;YAED;gBACI,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;aACrC;;YAED,OAAO;SACV;;QAED,IAAI,eAAe,GAAG,CAAC,CAAC;;;;;;;;QAQxB,IAAI,WAAW,GAAG,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;QACjE,IAAI,aAAa,GAAG,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC;QACzD,IAAI,YAAY,GAAG,CAAC,CAAC;;QAErB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,MAAM,EAAE,EAAE,CAAC;QAC3C;YACI,IAAI,WAAW,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;;YAEjC,IAAI,QAAQ;YACZ;gBACI,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,WAAW,EAAE,eAAe,EAAE,CAAC,CAAC,CAAC;aAC5D;;YAED;gBACI,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,WAAW,EAAE,eAAe,EAAE,CAAC,CAAC,CAAC;aAC1D;YACD,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC;YACrE,eAAe,IAAI,aAAa,GAAG,YAAY,GAAG,aAAa,CAAC;YAChE,aAAa,GAAG,YAAY,CAAC;SAChC;KACJ,CAAC;;;;;;;IAOF,IAAI,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa;IACrD;QACI,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;;QAEzB,IAAI,IAAI,CAAC,MAAM,CAAC,IAAI;QACpB;YACI,IAAI,OAAO,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC;;YAEjC,IAAI,OAAO,CAAC,IAAI;YAChB;gBACI,MAAM,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;gBAC7B,MAAM,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;gBAC/B,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;aACjD;SACJ;;QAED,IAAI,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC;QAC5B,IAAI,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;QACxB,IAAI,OAAO,GAAG,KAAK,CAAC,IAAI,GAAG,CAAC,GAAG,KAAK,CAAC,OAAO,CAAC;QAC7C,IAAI,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC;;QAEtC,OAAO,CAAC,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC;QACvF,OAAO,CAAC,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC;QAC1F,OAAO,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC;QAC1B,OAAO,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC;;QAE1B,OAAO,CAAC,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,KAAK,IAAI,OAAO,GAAG,CAAC,CAAC,CAAC;QAC1D,OAAO,CAAC,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,IAAI,OAAO,GAAG,CAAC,CAAC,CAAC;;;QAG5D,IAAI,CAAC,gBAAgB,EAAE,CAAC;;QAExB,WAAW,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC;;QAEvE,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;KACtB,CAAC;;;;;;;;IAQF,IAAI,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,QAAQ;IACnD;QACI,IAAI,IAAI,CAAC,eAAe,IAAI,IAAI,CAAC,WAAW,KAAK,QAAQ,CAAC,UAAU;QACpE;YACI,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC,UAAU,CAAC;YACvC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;SACrB;;QAED,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;KACjD,CAAC;;;;;;;;IAQF,IAAI,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,IAAI;IAC7D;QACI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,OAAO,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;KAC3D,CAAC;;;;;;IAMF,IAAI,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB;IAC3D;QACI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,iBAAiB,EAAE,CAAC;;QAEzB,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;KACzC,CAAC;;;;;;IAMF,IAAI,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;IACvD;QACI,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;;;;IAUF,IAAI,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,KAAK,EAAE,KAAK;IAC7E;QACI,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC;QAC9B;YACI,OAAO,KAAK,CAAC,IAAI,CAAC;SACrB;aACI,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC;QAChC;YACI,OAAO,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;SACxB;;;;QAID,IAAI,QAAQ,CAAC;QACb,IAAI,eAAe,CAAC;QACpB,IAAI,gBAAgB,CAAC;QACrB,IAAI,IAAI,CAAC;;QAET,IAAI,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC;QAC5D,IAAI,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC;;;QAG9D,IAAI,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC;QAC9B,IAAI,iBAAiB,GAAG,KAAK,CAAC,iBAAiB,CAAC,KAAK,EAAE,CAAC;;;QAGxD,IAAI,CAAC,iBAAiB,CAAC,MAAM;QAC7B;YACI,IAAI,WAAW,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;;YAElC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,EAAE,CAAC;YACpC;gBACI,iBAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,WAAW,CAAC,CAAC;aAC3C;SACJ;;;;QAID,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;QAC5B,iBAAiB,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;;QAE7B,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;QAC7C,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;;QAE1B,IAAI,KAAK,CAAC,gBAAgB,KAAK,aAAa,CAAC,eAAe;QAC5D;;YAEI,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,oBAAoB,CAAC,KAAK,GAAG,CAAC,EAAE,CAAC,EAAE,KAAK,GAAG,CAAC,EAAE,MAAM,CAAC,CAAC;;;;YAI9E,eAAe,GAAG,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC;YACnD,gBAAgB,GAAG,CAAC,CAAC;YACrB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE,GAAG,EAAE;YAC3C;gBACI,gBAAgB,IAAI,CAAC,CAAC;gBACtB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE;gBACpC;oBACI,IAAI,OAAO,iBAAiB,CAAC,CAAC,CAAC,KAAK,QAAQ;oBAC5C;wBACI,IAAI,GAAG,CAAC,iBAAiB,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,MAAM,KAAK,GAAG,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC;qBACvE;;oBAED;wBACI,IAAI,GAAG,gBAAgB,GAAG,eAAe,CAAC;qBAC7C;oBACD,QAAQ,CAAC,YAAY,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;oBACrC,gBAAgB,EAAE,CAAC;iBACtB;aACJ;SACJ;;QAED;;YAEI,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,EAAE,MAAM,GAAG,CAAC,EAAE,KAAK,EAAE,MAAM,GAAG,CAAC,CAAC,CAAC;;;;YAI/E,eAAe,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;YAClC,gBAAgB,GAAG,CAAC,CAAC;;YAErB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,MAAM,EAAE,GAAG,EAAE;YAC1C;gBACI,IAAI,OAAO,iBAAiB,CAAC,GAAG,CAAC,KAAK,QAAQ;gBAC9C;oBACI,IAAI,GAAG,iBAAiB,CAAC,GAAG,CAAC,CAAC;iBACjC;;gBAED;oBACI,IAAI,GAAG,gBAAgB,GAAG,eAAe,CAAC;iBAC7C;gBACD,QAAQ,CAAC,YAAY,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;gBACvC,gBAAgB,EAAE,CAAC;aACtB;SACJ;;QAED,OAAO,QAAQ,CAAC;KACnB,CAAC;;;;;;;;;;;;;;IAcF,IAAI,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,OAAO;IAClD;QACI,IAAI,OAAO,OAAO,KAAK,SAAS;QAChC;YACI,OAAO,GAAG,EAAE,QAAQ,EAAE,OAAO,EAAE,CAAC;SACnC;;QAED,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAC;;QAE5D,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;;;QAG7C,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;QAEnB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;KACtB,CAAC;;;;;;;IAOF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,OAAO,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;KAC5D,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,IAAI,CAAC,GAAGH,MAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;QAEhC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;QACpD,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;KACvB,CAAC;;;;;;;IAOF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,OAAO,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC;KAC7D,CAAC;;IAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,KAAK;IAC/C;QACI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,IAAI,CAAC,GAAGA,MAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;QAEhC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC;QACrD,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;KACxB,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,MAAM,CAAC;KACtB,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,KAAK,GAAG,KAAK,IAAI,EAAE,CAAC;;QAEpB,IAAI,KAAK,YAAY,SAAS;QAC9B;YACI,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;SACvB;;QAED;YACI,IAAI,CAAC,MAAM,GAAG,IAAI,SAAS,CAAC,KAAK,CAAC,CAAC;SACtC;;QAED,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;IAOF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;IAEF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,IAAI;IAC5C;QACI,IAAI,GAAG,MAAM,CAAC,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC;;QAE/D,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI;QACvB;YACI,OAAO;SACV;QACD,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;QAClB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;IACpC;QACI,OAAO,IAAI,CAAC,WAAW,CAAC;KAC3B,CAAC;;IAEF,kBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG,UAAU,KAAK;IACnD;QACI,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;;QAE7B,IAAI,IAAI,CAAC,WAAW,KAAK,KAAK;QAC9B;YACI,OAAO;SACV;;QAED,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;QACzB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,IAAI,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAE9D,OAAO,IAAI,CAAC;CACf,CAAC,MAAM,CAAC,CAAC,CAAC;;ACluEX;;;;;;;AAOA,AAMA;;;;;;;;;;AAUA,QAAQ,CAAC,iBAAiB,GAAG,CAAC,CAAC;;;;;;;;;AAS/B,IAAI,YAAY,GAAG,SAAS,YAAY,CAAC,gBAAgB;AACzD;;;;;;IAMI,IAAI,CAAC,gBAAgB,GAAG,gBAAgB,CAAC;;;;;;IAMzC,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;CACtB,CAAC;;;;;AAKF,YAAY,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;AACvD;IACI,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC;CAC1C,CAAC;;;;;;AAMF,YAAY,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;AACjE;IACI,OAAO,IAAI,CAAC,SAAS,EAAE,GAAG,CAAC,CAAC;CAC/B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;AAyBF,IAAI,WAAW,GAAG,SAAS,WAAW,CAAC,QAAQ;AAC/C;IACI,IAAI,MAAM,GAAG,IAAI,CAAC;;;;;;IAMlB,IAAI,CAAC,OAAO,GAAG,IAAI,YAAY,CAAC,QAAQ,CAAC,iBAAiB,CAAC,CAAC;;;;;;;IAO5D,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;;;;;;;;IAQzB,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;;;;;;;IAO7B,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;;;;;;;IAOhB,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;;;;;;;IAOnB,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;;;;;;;IAOtB,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;;;;;;;IAOpB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;;;;;;IAOrB,IAAI,CAAC,WAAW,GAAG,YAAY;;QAE3B,IAAI,CAAC,MAAM,CAAC,KAAK;QACjB;YACI,OAAO;SACV;QACD,MAAM,CAAC,YAAY,EAAE,CAAC;KACzB,CAAC;;;IAGF,IAAI,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC;IAChC,IAAI,CAAC,gBAAgB,CAAC,aAAa,CAAC,CAAC;IACrC,IAAI,CAAC,gBAAgB,CAAC,wBAAwB,CAAC,CAAC;IAChD,IAAI,CAAC,gBAAgB,CAAC,eAAe,CAAC,CAAC;IACvC,IAAI,CAAC,gBAAgB,CAAC,WAAW,CAAC,CAAC;;;IAGnC,IAAI,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC;IAClC,IAAI,CAAC,kBAAkB,CAAC,kBAAkB,CAAC,CAAC;CAC/C,CAAC;;;;;;;;;;AAUF,WAAW,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,IAAI,EAAE,IAAI;AAC1D;IACI,IAAI,OAAO,IAAI,KAAK,UAAU;IAC9B;QACI,IAAI,GAAG,IAAI,CAAC;QACZ,IAAI,GAAG,IAAI,CAAC;KACf;;;;IAID,IAAI,IAAI;IACR;QACI,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;KAClB;;;IAGD,IAAI,IAAI,CAAC,KAAK,CAAC,MAAM;IACrB;QACI,IAAI,IAAI;QACR;YACI,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SAC7B;;QAED,IAAI,CAAC,IAAI,CAAC,OAAO;QACjB;YACI,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;YACpB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,eAAe,CAAC,OAAO,CAAC,CAAC;SACnE;KACJ;SACI,IAAI,IAAI;IACb;QACI,IAAI,EAAE,CAAC;KACV;CACJ,CAAC;;;;;;;AAOF,WAAW,CAAC,SAAS,CAAC,IAAI,GAAG,SAAS,IAAI;AAC1C;IACI,UAAU,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC;CACnC,CAAC;;;;;;;;AAQF,WAAW,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY;AAC1D;IACI,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC;;IAE1B,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,IAAI,IAAI,CAAC,OAAO,CAAC,eAAe,EAAE;IAC1D;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;QACzB,IAAI,QAAQ,GAAG,KAAK,CAAC;;QAErB,IAAI,IAAI,IAAI,CAAC,IAAI,CAAC,UAAU;QAC5B;YACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE;YAC3D;gBACI,IAAI,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC;gBACpD;oBACI,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;oBACnB,QAAQ,GAAG,IAAI,CAAC;oBAChB,MAAM;iBACT;aACJ;SACJ;;QAED,IAAI,CAAC,QAAQ;QACb;YACI,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;SACtB;KACJ;;;IAGD,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM;IACtB;QACI,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;QAErB,IAAI,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;;QAExC,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;;QAE1B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,KAAK,GAAG,SAAS,CAAC,MAAM,EAAE,GAAG,GAAG,KAAK,EAAE,GAAG,EAAE;QAC9D;YACI,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC;SACpB;KACJ;;IAED;;QAEI,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,eAAe,CAAC,OAAO,CAAC,CAAC;KACnE;CACJ,CAAC;;;;;;;;;AASF,WAAW,CAAC,SAAS,CAAC,gBAAgB,GAAG,SAAS,gBAAgB,EAAE,OAAO;AAC3E;IACI,IAAI,OAAO;IACX;QACI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;KAC/B;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;AASF,WAAW,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,EAAE,UAAU;AAClF;IACI,IAAI,UAAU;IACd;QACI,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;KACrC;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;;;;AASF,WAAW,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,IAAI;AAC9C;;;IAGI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE;IACxD;QACI,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC;QACtC;YACI,MAAM;SACT;KACJ;;;IAGD,IAAI,IAAI,YAAY,SAAS;IAC7B;QACI,KAAK,IAAI,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,GAAG,EAAE;QACxD;YACI,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC;SAChC;KACJ;;IAED,OAAO,IAAI,CAAC;CACf,CAAC;;;;;;AAMF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AAChD;IACI,IAAI,IAAI,CAAC,OAAO;IAChB;QACI,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;KACzC;IACD,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;IACrB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;IACrB,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;IACxB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;IACrB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;CAChC,CAAC;;;;;;;;;;AAUF,SAAS,wBAAwB,CAAC,IAAI,EAAE,KAAK;AAC7C;IACI,IAAI,MAAM,GAAG,KAAK,CAAC;;;IAGnB,IAAI,IAAI,IAAI,IAAI,CAAC,SAAS,IAAI,IAAI,CAAC,SAAS,CAAC,MAAM;IACnD;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE;QAC9C;YACI,IAAI,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,YAAY,OAAO;YACxC;gBACI,IAAI,WAAW,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC;;gBAEhD,IAAI,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;gBACrC;oBACI,KAAK,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;oBACxB,MAAM,GAAG,IAAI,CAAC;iBACjB;aACJ;SACJ;KACJ;;IAED,OAAO,MAAM,CAAC;CACjB;;;;;;;;;;AAUD,SAAS,eAAe,CAAC,IAAI,EAAE,KAAK;AACpC;;IAEI,IAAI,IAAI,YAAY,WAAW;IAC/B;QACI,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC9B;YACI,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SACpB;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,WAAW,CAAC,IAAI,EAAE,KAAK;AAChC;IACI,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,YAAY,OAAO;IACrD;QACI,IAAI,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;;QAExC,IAAI,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;QACjC;YACI,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;SACvB;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,QAAQ,CAAC,MAAM,EAAE,IAAI;AAC9B;IACI,IAAI,IAAI,YAAY,IAAI;IACxB;;QAEI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;;QAEtB,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,kBAAkB,CAAC,MAAM,EAAE,IAAI;AACxC;IACI,IAAI,IAAI,YAAY,SAAS;IAC7B;QACI,IAAI,IAAI,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;;QAE/B,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;;QAE9B,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,QAAQ,CAAC,IAAI,EAAE,KAAK;AAC7B;IACI,IAAI,IAAI,YAAY,IAAI;IACxB;;QAEI,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;QACpC;YACI,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SAC1B;;QAED,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC9B;YACI,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SACpB;;QAED,IAAI,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;;QAExC,IAAI,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;QACjC;YACI,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;SACvB;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,aAAa,CAAC,IAAI,EAAE,KAAK;AAClC;IACI,IAAI,IAAI,YAAY,SAAS;IAC7B;QACI,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC9B;YACI,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SACpB;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;;AAWD,IAAI,OAAO,iBAAiB,UAAU,WAAW,EAAE;IAC/C,SAAS,OAAO,CAAC,QAAQ;IACzB;QACI,WAAW,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;QAEjC,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,QAAQ,CAAC;;;QAGtC,IAAI,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAC;QACpC,IAAI,CAAC,kBAAkB,CAAC,kBAAkB,CAAC,CAAC;QAC5C,IAAI,CAAC,kBAAkB,CAAC,cAAc,CAAC,CAAC;KAC3C;;IAED,KAAK,WAAW,GAAG,OAAO,CAAC,SAAS,GAAG,WAAW,CAAC;IACnD,OAAO,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,WAAW,IAAI,WAAW,CAAC,SAAS,EAAE,CAAC;IAC1E,OAAO,CAAC,SAAS,CAAC,WAAW,GAAG,OAAO,CAAC;;IAExC,OAAO,OAAO,CAAC;CAClB,CAAC,WAAW,CAAC,CAAC,CAAC;;;;;;;;;AAShB,SAAS,kBAAkB,CAAC,QAAQ,EAAE,IAAI;AAC1C;IACI,IAAI,IAAI,YAAY,WAAW;IAC/B;;;;QAII,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,WAAW,CAAC;QAC3C;YACI,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SAC/B;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,cAAc,CAAC,QAAQ,EAAE,IAAI;AACtC;IACI,IAAI,IAAI,YAAY,QAAQ;IAC5B;;;QAGI,IAAI,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,UAAU,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC;QACxF;YACI,QAAQ,CAAC,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;SAClD;;QAED,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;;;;;;;;;AAUD,SAAS,YAAY,CAAC,IAAI,EAAE,KAAK;AACjC;IACI,IAAI,IAAI,YAAY,QAAQ;IAC5B;QACI,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAEjB,OAAO,IAAI,CAAC;KACf;;IAED,OAAO,KAAK,CAAC;CAChB;;ACxoBD;;;;;;;AAOA,AAEA;;;;;;;;;;;;;;;;;;;AAmBA,IAAI,WAAW,GAAG,SAAS,WAAW,CAAC,OAAO;AAC9C;IACI,IAAI,MAAM,GAAG,IAAI,CAAC;;;IAGlB,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC;QACpB,WAAW,EAAE,KAAK;KACrB,EAAE,OAAO,CAAC,CAAC;;;;;;IAMZ,IAAI,CAAC,QAAQ,GAAG,kBAAkB,CAAC,OAAO,CAAC,CAAC;;;;;;IAM5C,IAAI,CAAC,KAAK,GAAG,IAAI,SAAS,EAAE,CAAC;;;IAG7B,WAAW,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,MAAM,EAAE;QAC3C,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KACrC,CAAC,CAAC;CACN,CAAC;;AAEF,IAAIG,oBAAkB,GAAG,EAAE,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;AAOzF,WAAW,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,MAAM;AAC5D;IACI,WAAW,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;CACrC,CAAC;;;;;AAKF,WAAW,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM;AAC9C;IACI,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;CACpC,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;AAC9B;IACI,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC;CAC7B,CAAC;;;;;;;AAOFA,oBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;AAChC;IACI,OAAO,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC;CAC/B,CAAC;;;;;;;;;;;;;;AAcF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,UAAU,EAAE,YAAY;AAC1E;QACQ,IAAI,MAAM,GAAG,IAAI,CAAC;;;;IAItB,IAAI,OAAO,GAAG,WAAW,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;;IAE5C,OAAO,CAAC,OAAO,EAAE,CAAC;IAClB,OAAO,CAAC,OAAO,CAAC,UAAU,MAAM,EAAE;QAC9B,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;KAC/B,CAAC,CAAC;;IAEH,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;IACjC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;IAElB,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;IAClC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;;IAErB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;CACxB,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,WAAW,CAAC,SAAS,EAAEA,oBAAkB,EAAE,CAAC;;;;;;;;;;;;;;;;AAgBrE,WAAW,CAAC,QAAQ,GAAG,EAAE,CAAC;;;;;;;AAO1B,IAAI,YAAY,GAAG,SAAS,YAAY,IAAI,EAAE,CAAC;;AAE/C,YAAY,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,OAAO;AAC1C;QACQ,IAAI,MAAM,GAAG,IAAI,CAAC;;;;;;;;IAQtB,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,UAAU;QAClC;YACI,GAAG,EAAE,SAAS,GAAG,CAAC,GAAG;YACrB;gBACI,MAAM,CAAC,mBAAmB,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;gBAClD,IAAI,CAAC,SAAS,GAAG,GAAG,CAAC;gBACrB,IAAI,GAAG;gBACP;oBACI,MAAM,CAAC,gBAAgB,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;oBAC/C,IAAI,CAAC,MAAM,EAAE,CAAC;iBACjB;aACJ;YACD,GAAG,EAAE,SAAS,GAAG;YACjB;gBACI,OAAO,IAAI,CAAC,SAAS,CAAC;aACzB;SACJ,CAAC,CAAC;;;;;;;IAOP,IAAI,CAAC,MAAM,GAAG,YAAY;QACtB,IAAI,MAAM,CAAC,SAAS;QACpB;;YAEI,IAAI,MAAM,CAAC,SAAS,KAAK,MAAM;YAC/B;gBACI,MAAM,CAAC,QAAQ,CAAC,MAAM;oBAClB,MAAM,CAAC,UAAU;oBACjB,MAAM,CAAC,WAAW;iBACrB,CAAC;aACL;;;YAGD;gBACI,MAAM,CAAC,QAAQ,CAAC,MAAM;oBAClB,MAAM,CAAC,SAAS,CAAC,WAAW;oBAC5B,MAAM,CAAC,SAAS,CAAC,YAAY;iBAChC,CAAC;aACL;SACJ;KACJ,CAAC;;;IAGF,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,IAAI,IAAI,CAAC;CAC5C,CAAC;;;;;;;AAOF,YAAY,CAAC,OAAO,GAAG,SAAS,OAAO;AACvC;IACI,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;IACrB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;CACtB,CAAC;;AAEF,WAAW,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC;;AC/NzC,YAAc,GAAG,SAAS,QAAQ,EAAE,GAAG,EAAE,IAAI,EAAE;EAC7C,IAAI,GAAG,IAAI,IAAI,GAAE;;EAEjB,IAAI,CAAC,GAAG;IACN,GAAG,EAAE,CAAC,QAAQ,EAAE,UAAU,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,EAAE,OAAO,EAAE,QAAQ,CAAC;IACpJ,CAAC,EAAE;MACD,IAAI,EAAE,UAAU;MAChB,MAAM,EAAE,2BAA2B;KACpC;IACD,MAAM,EAAE;MACN,MAAM,EAAE,yIAAyI;MACjJ,KAAK,EAAE,kMAAkM;KAC1M;IACF;;EAED,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,GAAG,QAAQ,GAAG,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,EAAC;EAChE,IAAI,GAAG,GAAG,GAAE;EACZ,IAAI,CAAC,GAAG,GAAE;;EAEV,OAAO,CAAC,EAAE,EAAE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,GAAE;;EAEtC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,GAAE;EAClB,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,UAAU,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;IACvD,IAAI,EAAE,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,GAAE;GAC/B,EAAC;;EAEF,OAAO,GAAG;CACX;;;AC7BD;AAEA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE;EAC3C,KAAK,EAAE,IAAI;CACZ,CAAC,CAAC;;AAEH,IAAI,YAAY,GAAG,CAAC,YAAY,EAAE,SAAS,gBAAgB,CAAC,MAAM,EAAE,KAAK,EAAE,EAAE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,EAAE,IAAI,UAAU,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,UAAU,GAAG,UAAU,CAAC,UAAU,IAAI,KAAK,CAAC,CAAC,UAAU,CAAC,YAAY,GAAG,IAAI,CAAC,CAAC,IAAI,OAAO,IAAI,UAAU,EAAE,UAAU,CAAC,QAAQ,GAAG,IAAI,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,UAAU,CAAC,GAAG,EAAE,UAAU,CAAC,CAAC,EAAE,EAAE,CAAC,OAAO,UAAU,WAAW,EAAE,UAAU,EAAE,WAAW,EAAE,EAAE,IAAI,UAAU,EAAE,gBAAgB,CAAC,WAAW,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC,IAAI,WAAW,EAAE,gBAAgB,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC,CAAC,OAAO,WAAW,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC;;AAEtjB,SAAS,eAAe,CAAC,QAAQ,EAAE,WAAW,EAAE,EAAE,IAAI,EAAE,QAAQ,YAAY,WAAW,CAAC,EAAE,EAAE,MAAM,IAAI,SAAS,CAAC,mCAAmC,CAAC,CAAC,EAAE,EAAE;;AAEzJ,IAAI,iBAAiB,GAAG,CAAC,YAAY;EACnC,SAAS,iBAAiB,CAAC,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE;IAC5C,IAAI,IAAI,KAAK,SAAS,EAAE,IAAI,GAAG,KAAK,CAAC;;IAErC,eAAe,CAAC,IAAI,EAAE,iBAAiB,CAAC,CAAC;;IAEzC,IAAI,CAAC,GAAG,GAAG,EAAE,CAAC;IACd,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;IACxB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;GAC9C;;EAED,YAAY,CAAC,iBAAiB,EAAE,CAAC;IAC/B,GAAG,EAAE,QAAQ;IACb,KAAK,EAAE,SAAS,MAAM,GAAG;MACvB,IAAI,IAAI,CAAC,MAAM,KAAK,IAAI,EAAE,OAAO,KAAK,CAAC;MACvC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;MACzB,OAAO,IAAI,CAAC;KACb;GACF,CAAC,CAAC,CAAC;;EAEJ,OAAO,iBAAiB,CAAC;CAC1B,GAAG,CAAC;;AAEL,SAAS,qBAAqB,CAAC,IAAI,EAAE,IAAI,EAAE;EACzC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE;IACf,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;IAClB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;GACnB,MAAM;IACL,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC;IACxB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;IACxB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;GACnB;;EAED,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;EAEnB,OAAO,IAAI,CAAC;CACb;;AAED,IAAI,UAAU,GAAG,CAAC,YAAY;EAC5B,SAAS,UAAU,GAAG;IACpB,eAAe,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;;IAElC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,GAAG,SAAS,CAAC;GACrC;;EAED,YAAY,CAAC,UAAU,EAAE,CAAC;IACxB,GAAG,EAAE,UAAU;IACf,KAAK,EAAE,SAAS,QAAQ,GAAG;MACzB,IAAI,MAAM,GAAG,SAAS,CAAC,MAAM,IAAI,CAAC,IAAI,SAAS,CAAC,CAAC,CAAC,KAAK,SAAS,GAAG,KAAK,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;MAExF,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;;MAEtB,IAAI,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC;;MAE1B,IAAI,EAAE,GAAG,EAAE,CAAC;;MAEZ,OAAO,IAAI,EAAE;QACX,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACd,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;OACnB;;MAED,OAAO,EAAE,CAAC;KACX;GACF,EAAE;IACD,GAAG,EAAE,KAAK;IACV,KAAK,EAAE,SAAS,GAAG,CAAC,IAAI,EAAE;MACxB,IAAI,EAAE,IAAI,YAAY,iBAAiB,CAAC,EAAE;QACxC,MAAM,IAAI,KAAK,CAAC,iEAAiE,CAAC,CAAC;OACpF;;MAED,OAAO,IAAI,CAAC,MAAM,KAAK,IAAI,CAAC;KAC7B;GACF,EAAE;IACD,GAAG,EAAE,UAAU;IACf,KAAK,EAAE,SAAS,QAAQ,GAAG;MACzB,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;;MAEtB,IAAI,CAAC,IAAI,EAAE,OAAO,KAAK,CAAC;;MAExB,OAAO,IAAI,EAAE;QACX,IAAI,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QAClC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,SAAS,CAAC,CAAC;QACzC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;OACnB;;MAED,OAAO,IAAI,CAAC;KACb;GACF,EAAE;IACD,GAAG,EAAE,KAAK;IACV,KAAK,EAAE,SAAS,GAAG,CAAC,EAAE,EAAE;MACtB,IAAI,OAAO,GAAG,SAAS,CAAC,MAAM,IAAI,CAAC,IAAI,SAAS,CAAC,CAAC,CAAC,KAAK,SAAS,GAAG,IAAI,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;MAExF,IAAI,OAAO,EAAE,KAAK,UAAU,EAAE;QAC5B,MAAM,IAAI,KAAK,CAAC,iDAAiD,CAAC,CAAC;OACpE;MACD,OAAO,qBAAqB,CAAC,IAAI,EAAE,IAAI,iBAAiB,CAAC,EAAE,EAAE,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC;KAC/E;GACF,EAAE;IACD,GAAG,EAAE,MAAM;IACX,KAAK,EAAE,SAAS,IAAI,CAAC,EAAE,EAAE;MACvB,IAAI,OAAO,GAAG,SAAS,CAAC,MAAM,IAAI,CAAC,IAAI,SAAS,CAAC,CAAC,CAAC,KAAK,SAAS,GAAG,IAAI,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;;MAExF,IAAI,OAAO,EAAE,KAAK,UAAU,EAAE;QAC5B,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAC;OACrE;MACD,OAAO,qBAAqB,CAAC,IAAI,EAAE,IAAI,iBAAiB,CAAC,EAAE,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC;KAC9E;GACF,EAAE;IACD,GAAG,EAAE,QAAQ;IACb,KAAK,EAAE,SAAS,MAAM,CAAC,IAAI,EAAE;MAC3B,IAAI,EAAE,IAAI,YAAY,iBAAiB,CAAC,EAAE;QACxC,MAAM,IAAI,KAAK,CAAC,oEAAoE,CAAC,CAAC;OACvF;MACD,IAAI,IAAI,CAAC,MAAM,KAAK,IAAI,EAAE,OAAO,IAAI,CAAC;;MAEtC,IAAI,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;MAC9C,IAAI,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;;MAE9C,IAAI,IAAI,KAAK,IAAI,CAAC,KAAK,EAAE;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;QACxB,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI,EAAE;UACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;SACnB;OACF,MAAM,IAAI,IAAI,KAAK,IAAI,CAAC,KAAK,EAAE;QAC9B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;QACxB,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC;OACzB;;MAED,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;MACnB,OAAO,IAAI,CAAC;KACb;GACF,EAAE;IACD,GAAG,EAAE,WAAW;IAChB,KAAK,EAAE,SAAS,SAAS,GAAG;MAC1B,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;MACtB,IAAI,CAAC,IAAI,EAAE,OAAO,IAAI,CAAC;;MAEvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;MAE/B,OAAO,IAAI,EAAE;QACX,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;OACnB;MACD,OAAO,IAAI,CAAC;KACb;GACF,CAAC,CAAC,CAAC;;EAEJ,OAAO,UAAU,CAAC;CACnB,GAAG,CAAC;;AAEL,UAAU,CAAC,iBAAiB,GAAG,iBAAiB,CAAC;;AAEjD,OAAO,CAAC,SAAS,CAAC,GAAG,UAAU,CAAC;AAChC,cAAc,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC;;;;;ACpKpC;;;;;;;;AAQA,AAEA;;;;;;;;;;;;;;AAcA,SAAS,KAAK,GAAG,EAAE;;;;;;;;;;;;;;;AAenB,SAAS,UAAU,CAAC,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE;EACxD,IAAI,CAAC,GAAG,CAAC,CAAC;EACV,IAAI,GAAG,GAAG,KAAK,CAAC,MAAM,CAAC;;EAEvB,CAAC,SAAS,IAAI,CAAC,GAAG,EAAE;IAClB,IAAI,GAAG,IAAI,CAAC,KAAK,GAAG,EAAE;MACpB,IAAI,QAAQ,EAAE;QACZ,QAAQ,CAAC,GAAG,CAAC,CAAC;OACf;;MAED,OAAO;KACR;;IAED,IAAI,SAAS,EAAE;MACb,UAAU,CAAC,YAAY;QACrB,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,CAAC;OAC5B,EAAE,CAAC,CAAC,CAAC;KACP,MAAM;MACL,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,CAAC;KAC5B;GACF,GAAG,CAAC;CACN;;;;;;;;;;AAUD,SAAS,QAAQ,CAAC,EAAE,EAAE;EACpB,OAAO,SAAS,WAAW,GAAG;IAC5B,IAAI,EAAE,KAAK,IAAI,EAAE;MACf,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAC;KACjD;;IAED,IAAI,MAAM,GAAG,EAAE,CAAC;IAChB,EAAE,GAAG,IAAI,CAAC;IACV,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;GAC/B,CAAC;CACH;;;;;;;;;;;;AAYD,SAAS,KAAK,CAAC,MAAM,EAAE,WAAW,EAAE;EAClC,IAAI,WAAW,IAAI,IAAI,EAAE;;IAEvB,WAAW,GAAG,CAAC,CAAC;GACjB,MAAM,IAAI,WAAW,KAAK,CAAC,EAAE;IAC5B,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAC;GACjD;;EAED,IAAI,OAAO,GAAG,CAAC,CAAC;EAChB,IAAI,CAAC,GAAG;IACN,MAAM,EAAE,EAAE;IACV,WAAW,EAAE,WAAW;IACxB,SAAS,EAAE,KAAK;IAChB,WAAW,EAAE,KAAK;IAClB,MAAM,EAAE,WAAW,GAAG,CAAC;IACvB,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE,KAAK;IACZ,OAAO,EAAE,KAAK;IACd,MAAM,EAAE,KAAK;IACb,IAAI,EAAE,SAAS,IAAI,CAAC,IAAI,EAAE,QAAQ,EAAE;MAClC,OAAO,CAAC,IAAI,EAAE,KAAK,EAAE,QAAQ,CAAC,CAAC;KAChC;IACD,IAAI,EAAE,SAAS,IAAI,GAAG;MACpB,OAAO,GAAG,CAAC,CAAC;MACZ,CAAC,CAAC,KAAK,GAAG,KAAK,CAAC;MAChB,CAAC,CAAC,OAAO,GAAG,KAAK,CAAC;MAClB,CAAC,CAAC,MAAM,GAAG,EAAE,CAAC;KACf;IACD,OAAO,EAAE,SAAS,OAAO,CAAC,IAAI,EAAE,QAAQ,EAAE;MACxC,OAAO,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAC;KAC/B;IACD,OAAO,EAAE,SAAS,OAAO,GAAG;MAC1B,OAAO,CAAC,CAAC,CAAC,MAAM,IAAI,OAAO,GAAG,CAAC,CAAC,WAAW,IAAI,CAAC,CAAC,MAAM,CAAC,MAAM,EAAE;QAC9D,IAAI,IAAI,GAAG,CAAC,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;;QAE5B,IAAI,CAAC,CAAC,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE;UACzB,CAAC,CAAC,KAAK,EAAE,CAAC;SACX;;QAED,OAAO,IAAI,CAAC,CAAC;;QAEb,IAAI,OAAO,KAAK,CAAC,CAAC,WAAW,EAAE;UAC7B,CAAC,CAAC,SAAS,EAAE,CAAC;SACf;;QAED,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;OAC1C;KACF;IACD,MAAM,EAAE,SAAS,MAAM,GAAG;MACxB,OAAO,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC;KACxB;IACD,OAAO,EAAE,SAAS,OAAO,GAAG;MAC1B,OAAO,OAAO,CAAC;KAChB;IACD,IAAI,EAAE,SAAS,IAAI,GAAG;MACpB,OAAO,CAAC,CAAC,MAAM,CAAC,MAAM,GAAG,OAAO,KAAK,CAAC,CAAC;KACxC;IACD,KAAK,EAAE,SAAS,KAAK,GAAG;MACtB,IAAI,CAAC,CAAC,MAAM,KAAK,IAAI,EAAE;QACrB,OAAO;OACR;;MAED,CAAC,CAAC,MAAM,GAAG,IAAI,CAAC;KACjB;IACD,MAAM,EAAE,SAAS,MAAM,GAAG;MACxB,IAAI,CAAC,CAAC,MAAM,KAAK,KAAK,EAAE;QACtB,OAAO;OACR;;MAED,CAAC,CAAC,MAAM,GAAG,KAAK,CAAC;;;MAGjB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,CAAC,EAAE,EAAE;QACvC,CAAC,CAAC,OAAO,EAAE,CAAC;OACb;KACF;GACF,CAAC;;EAEF,SAAS,OAAO,CAAC,IAAI,EAAE,aAAa,EAAE,QAAQ,EAAE;IAC9C,IAAI,QAAQ,IAAI,IAAI,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;;MAEtD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;KACrD;;IAED,CAAC,CAAC,OAAO,GAAG,IAAI,CAAC;;IAEjB,IAAI,IAAI,IAAI,IAAI,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE;;;MAG5B,UAAU,CAAC,YAAY;QACrB,OAAO,CAAC,CAAC,KAAK,EAAE,CAAC;OAClB,EAAE,CAAC,CAAC,CAAC;MACN,OAAO;KACR;;IAED,IAAI,IAAI,GAAG;MACT,IAAI,EAAE,IAAI;MACV,QAAQ,EAAE,OAAO,QAAQ,KAAK,UAAU,GAAG,QAAQ,GAAG,KAAK;KAC5D,CAAC;;IAEF,IAAI,aAAa,EAAE;MACjB,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB,MAAM;MACL,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACrB;;IAED,UAAU,CAAC,YAAY;MACrB,OAAO,CAAC,CAAC,OAAO,EAAE,CAAC;KACpB,EAAE,CAAC,CAAC,CAAC;GACP;;EAED,SAAS,KAAK,CAAC,IAAI,EAAE;IACnB,OAAO,SAAS,IAAI,GAAG;MACrB,OAAO,IAAI,CAAC,CAAC;MACb,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;;MAErC,IAAI,SAAS,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE;;QAExB,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;OAClC;;MAED,IAAI,OAAO,IAAI,CAAC,CAAC,WAAW,GAAG,CAAC,CAAC,MAAM,EAAE;QACvC,CAAC,CAAC,WAAW,EAAE,CAAC;OACjB;;MAED,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE;QACZ,CAAC,CAAC,KAAK,EAAE,CAAC;OACX;;MAED,CAAC,CAAC,OAAO,EAAE,CAAC;KACb,CAAC;GACH;;EAED,OAAO,CAAC,CAAC;CACV;AACD,AAKA;;AAEA,IAAI,KAAK,GAAG,EAAE,CAAC;;;;;;;;;;;;;;AAcf,SAAS,OAAO,CAAC,QAAQ,EAAE,IAAI,EAAE;EAC/B,IAAI,KAAK,GAAG,IAAI,CAAC;;;EAGjB,IAAI,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;IACvB,QAAQ,CAAC,IAAI,GAAG,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;IACpC,QAAQ,CAAC,QAAQ,EAAE,CAAC;GACrB;OACI;MACD,QAAQ,CAAC,UAAU,CAAC,IAAI,CAAC,YAAY;QACnC,OAAO,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC,IAAI,CAAC;OACtC,CAAC,CAAC;KACJ;;EAEH,IAAI,EAAE,CAAC;CACR;;AAED,SAAS,iBAAiB,CAAC,MAAM,EAAE,KAAK,EAAE;EACxC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;IACrC,IAAI,UAAU,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;IAC1B,UAAU,CAAC,UAAU,GAAG,UAAU,CAAC,UAAU,IAAI,KAAK,CAAC;IACvD,UAAU,CAAC,YAAY,GAAG,IAAI,CAAC;IAC/B,IAAI,OAAO,IAAI,UAAU,EAAE,UAAU,CAAC,QAAQ,GAAG,IAAI,CAAC;IACtD,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,UAAU,CAAC,GAAG,EAAE,UAAU,CAAC,CAAC;GAC3D;CACF;;AAED,SAAS,YAAY,CAAC,WAAW,EAAE,UAAU,EAAE,WAAW,EAAE;EAC1D,IAAI,UAAU,EAAE,iBAAiB,CAAC,WAAW,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC;EACrE,IAAI,WAAW,EAAE,iBAAiB,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;EAC7D,OAAO,WAAW,CAAC;CACpB;;AAED,IAAI,MAAM,GAAG,CAAC,EAAE,MAAM,CAAC,cAAc,IAAI,EAAE,iBAAiB,IAAI,IAAI,cAAc,EAAE,CAAC,CAAC,CAAC;AACvF,IAAIY,YAAU,GAAG,IAAI,CAAC;;AAEtB,IAAI,WAAW,GAAG,CAAC,CAAC;AACpB,IAAI,SAAS,GAAG,GAAG,CAAC;AACpB,IAAI,YAAY,GAAG,GAAG,CAAC;AACvB,IAAI,mBAAmB,GAAG,IAAI,CAAC;AAC/B,IAAI,cAAc,GAAG,CAAC,CAAC;;AAEvB,SAAS,OAAO,GAAG,EAAE;;;;;;;;;;AAUrB,IAAIC,UAAQ;;AAEZ,YAAY;;;;;;;;EAQV,QAAQ,CAAC,oBAAoB,GAAG,SAAS,oBAAoB,CAAC,OAAO,EAAE,QAAQ,EAAE;IAC/E,SAAS,CAAC,QAAQ,CAAC,YAAY,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;GACrD;;;;;;;;GAQA;;EAED,QAAQ,CAAC,mBAAmB,GAAG,SAAS,mBAAmB,CAAC,OAAO,EAAE,OAAO,EAAE;IAC5E,SAAS,CAAC,QAAQ,CAAC,WAAW,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;GACnD;;;;;;;;;;;;;;;;;GAiBA;;EAED,SAAS,QAAQ,CAAC,IAAI,EAAE,GAAG,EAAE,OAAO,EAAE;IACpC,IAAI,OAAO,IAAI,KAAK,QAAQ,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;MACvD,MAAM,IAAI,KAAK,CAAC,6DAA6D,CAAC,CAAC;KAChF;;IAED,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;;;;;;;;IAQxB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;;IAEhB,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,QAAQ,EAAE,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC;;;;;;;;;IAS1E,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;;IAQjB,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;;;;;;;;IAQf,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,aAAa,EAAE,CAAC;;;;;;;IAOtC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;IAOjB,IAAI,CAAC,WAAW,GAAG,OAAO,CAAC,WAAW,KAAK,IAAI,GAAG,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC;;;;;;;;;IASpF,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,IAAI,CAAC,CAAC;;;;;;;IAOpC,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,IAAI,IAAI,CAAC,kBAAkB,EAAE,CAAC;;;;;;;IAO9D,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;;;;;;;;;;IAU/B,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,IAAI,EAAE,CAAC;;;;;;;;IAQvC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;;;;;;;IASlB,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC;;;;;;;;IAQhB,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;;;;;;;;IAQnB,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC;;;;;;;;IAQlC,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;;;;;;;;IASvB,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;;;;;;;;IAQxB,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC;;;;;;;;IAQ3B,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;;;;;;;IAQvB,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;IAQ/C,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;IAQ9C,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;IAQpD,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;IAElD,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACpD,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACxD,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACpD,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;;IASlD,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;;;;;IAa5B,IAAI,CAAC,UAAU,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;;IAU/B,IAAI,CAAC,UAAU,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;IAS/B,IAAI,CAAC,iBAAiB,GAAG,IAAI,MAAM,EAAE,CAAC;GACvC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8CD,IAAI,MAAM,GAAG,QAAQ,CAAC,SAAS,CAAC;;;;;;EAMhC,MAAM,CAAC,QAAQ,GAAG,SAAS,QAAQ,GAAG;IACpC,IAAI,CAAC,YAAY,EAAE,CAAC;;IAEpB,IAAI,CAAC,OAAO,EAAE,CAAC;GAChB;;;;;;GAMA;;EAED,MAAM,CAAC,KAAK,GAAG,SAAS,KAAK,CAAC,OAAO,EAAE;;IAErC,IAAI,IAAI,CAAC,KAAK,EAAE;MACd,OAAO;KACR;;;IAGD,IAAI,CAAC,KAAK,GAAG,IAAI,KAAK,CAAC,OAAO,CAAC,CAAC;;IAEhC,IAAI,CAAC,YAAY,EAAE,CAAC;;;IAGpB,IAAI,IAAI,CAAC,GAAG,EAAE;MACZ,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC;KAClB,MAAM,IAAI,IAAI,CAAC,GAAG,EAAE;MACnB,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC;KAClB,MAAM,IAAI,IAAI,CAAC,IAAI,EAAE;;MAEpB,IAAI,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;QACjB,IAAI,CAAC,IAAI,CAAC,GAAG,GAAG,QAAQ,CAAC,SAAS,CAAC;OACpC;WACI;UACD,OAAO,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE;YAC3B,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;WAC7C;SACF;KACJ;;;IAGD,IAAI,CAAC,OAAO,EAAE,CAAC;GAChB;;;;;;GAMA;;EAED,MAAM,CAAC,IAAI,GAAG,SAAS,IAAI,CAAC,EAAE,EAAE;IAC9B,IAAI,KAAK,GAAG,IAAI,CAAC;;IAEjB,IAAI,IAAI,CAAC,SAAS,EAAE;MAClB,OAAO;KACR;;IAED,IAAI,IAAI,CAAC,UAAU,EAAE;MACnB,IAAI,EAAE,EAAE;QACN,UAAU,CAAC,YAAY;UACrB,OAAO,EAAE,CAAC,KAAK,CAAC,CAAC;SAClB,EAAE,CAAC,CAAC,CAAC;OACP;;MAED,OAAO;KACR,MAAM,IAAI,EAAE,EAAE;MACb,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;KAC1B;;IAED,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;;IAEnD,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;;IAE5B,IAAI,IAAI,CAAC,WAAW,KAAK,KAAK,IAAI,OAAO,IAAI,CAAC,WAAW,KAAK,QAAQ,EAAE;MACtE,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;KACzD;;IAED,QAAQ,IAAI,CAAC,QAAQ;MACnB,KAAK,QAAQ,CAAC,SAAS,CAAC,KAAK;QAC3B,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;;QAEhC,IAAI,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;;QAE3B,MAAM;;MAER,KAAK,QAAQ,CAAC,SAAS,CAAC,KAAK;QAC3B,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;;QAEhC,IAAI,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;;QAEjC,MAAM;;MAER,KAAK,QAAQ,CAAC,SAAS,CAAC,KAAK;QAC3B,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;;QAEhC,IAAI,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;;QAEjC,MAAM;;MAER,KAAK,QAAQ,CAAC,SAAS,CAAC,GAAG,CAAC;;;MAG5B;QACE,IAAI,MAAM,IAAI,IAAI,CAAC,WAAW,EAAE;UAC9B,IAAI,CAAC,QAAQ,EAAE,CAAC;SACjB,MAAM;UACL,IAAI,CAAC,QAAQ,EAAE,CAAC;SACjB;;QAED,MAAM;KACT;GACF;;;;;;;;GAQA;;EAED,MAAM,CAAC,QAAQ,GAAG,SAAS,QAAQ,CAAC,IAAI,EAAE;IACxC,OAAO,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,MAAM,CAAC,CAAC;GACnC;;;;;;;;GAQA;;EAED,MAAM,CAAC,QAAQ,GAAG,SAAS,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE;IAC/C,IAAI,CAAC,MAAM,GAAG,KAAK,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC;GAChE;;;;;;GAMA;;EAED,MAAM,CAAC,YAAY,GAAG,SAAS,YAAY,GAAG;IAC5C,YAAY,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;;IAEjC,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,CAAC,mBAAmB,EAAE;MAC9C,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,OAAO,EAAE,IAAI,CAAC,aAAa,EAAE,KAAK,CAAC,CAAC;MAClE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,EAAE,KAAK,CAAC,CAAC;MAClE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,UAAU,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;MACxE,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,EAAE,IAAI,CAAC,cAAc,EAAE,KAAK,CAAC,CAAC;KAC7E;;IAED,IAAI,IAAI,CAAC,GAAG,EAAE;MACZ,IAAI,IAAI,CAAC,GAAG,CAAC,mBAAmB,EAAE;QAChC,IAAI,CAAC,GAAG,CAAC,mBAAmB,CAAC,OAAO,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;QACpE,IAAI,CAAC,GAAG,CAAC,mBAAmB,CAAC,SAAS,EAAE,IAAI,CAAC,kBAAkB,EAAE,KAAK,CAAC,CAAC;QACxE,IAAI,CAAC,GAAG,CAAC,mBAAmB,CAAC,OAAO,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;QACpE,IAAI,CAAC,GAAG,CAAC,mBAAmB,CAAC,UAAU,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;QACvE,IAAI,CAAC,GAAG,CAAC,mBAAmB,CAAC,MAAM,EAAE,IAAI,CAAC,eAAe,EAAE,KAAK,CAAC,CAAC;OACnE,MAAM;QACL,IAAI,CAAC,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC;QACxB,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC;QAC1B,IAAI,CAAC,GAAG,CAAC,UAAU,GAAG,IAAI,CAAC;QAC3B,IAAI,CAAC,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC;OACxB;KACF;GACF;;;;;;GAMA;;EAED,MAAM,CAAC,OAAO,GAAG,SAAS,OAAO,GAAG;IAClC,IAAI,IAAI,CAAC,UAAU,EAAE;MACnB,MAAM,IAAI,KAAK,CAAC,0DAA0D,CAAC,CAAC;KAC7E;;IAED,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;;IAEpD,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;;IAEpD,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;GAChC;;;;;;;;GAQA;;EAED,MAAM,CAAC,YAAY,GAAG,SAAS,YAAY,CAAC,IAAI,EAAE;IAChD,IAAI,IAAI,CAAC,QAAQ,CAAC,WAAW,EAAE;MAC7B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;KACvC,MAAM,IAAI,IAAI,KAAK,OAAO,IAAI,OAAO,MAAM,CAAC,KAAK,KAAK,WAAW,EAAE;MAClE,IAAI,CAAC,IAAI,GAAG,IAAI,KAAK,EAAE,CAAC;KACzB,MAAM;MACL,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;KAC1C;;IAED,IAAI,IAAI,CAAC,WAAW,EAAE;MACpB,IAAI,CAAC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;KAC1C;;IAED,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE;MAC7B,IAAI,CAAC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;KAC1B;;IAED,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,aAAa,EAAE,KAAK,CAAC,CAAC;IAC/D,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,EAAE,KAAK,CAAC,CAAC;IAC/D,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,UAAU,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;;IAErE,IAAI,IAAI,CAAC,OAAO,EAAE;MAChB,IAAI,CAAC,aAAa,GAAG,UAAU,CAAC,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;KACrE;GACF;;;;;;;;GAQA;;EAED,MAAM,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,CAAC,IAAI,EAAE;IAC5D,IAAI,IAAI,CAAC,QAAQ,CAAC,WAAW,EAAE;MAC7B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;KACvC,MAAM,IAAI,IAAI,KAAK,OAAO,IAAI,OAAO,MAAM,CAAC,KAAK,KAAK,WAAW,EAAE;MAClE,IAAI,CAAC,IAAI,GAAG,IAAI,KAAK,EAAE,CAAC;KACzB,MAAM;MACL,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;KAC1C;;IAED,IAAI,IAAI,CAAC,IAAI,KAAK,IAAI,EAAE;MACtB,IAAI,CAAC,KAAK,CAAC,uBAAuB,GAAG,IAAI,CAAC,CAAC;MAC3C,OAAO;KACR;;IAED,IAAI,IAAI,CAAC,WAAW,EAAE;MACpB,IAAI,CAAC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;KAC1C;;IAED,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE;;MAE7B,IAAI,SAAS,CAAC,UAAU,EAAE;QACxB,IAAI,CAAC,IAAI,CAAC,GAAG,GAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC;OAClE,MAAM,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE;QAClC,IAAI,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC;;QAEvC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;UACxC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC;SACnH;OACF,MAAM;QACL,IAAI,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC;QACxC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,EAAE,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC;OACnH;KACF;;IAED,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,aAAa,EAAE,KAAK,CAAC,CAAC;IAC/D,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,EAAE,KAAK,CAAC,CAAC;IAC/D,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,UAAU,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;IACrE,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,gBAAgB,EAAE,IAAI,CAAC,cAAc,EAAE,KAAK,CAAC,CAAC;IACzE,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;;IAEjB,IAAI,IAAI,CAAC,OAAO,EAAE;MAChB,IAAI,CAAC,aAAa,GAAG,UAAU,CAAC,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;KACrE;GACF;;;;;;GAMA;;EAED,MAAM,CAAC,QAAQ,GAAG,SAAS,QAAQ,GAAG;;IAEpC,IAAI,OAAO,IAAI,CAAC,OAAO,KAAK,QAAQ,EAAE;MACpC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,iBAAiB,EAAE,CAAC;KACzC;;IAED,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,cAAc,EAAE,CAAC;;IAE1C,GAAG,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IAChC,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;;;IAG3B,IAAI,IAAI,CAAC,OAAO,KAAK,QAAQ,CAAC,iBAAiB,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,QAAQ,CAAC,iBAAiB,CAAC,QAAQ,EAAE;MAC5G,GAAG,CAAC,YAAY,GAAG,QAAQ,CAAC,iBAAiB,CAAC,IAAI,CAAC;KACpD,MAAM;MACL,GAAG,CAAC,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC;KACjC;;IAED,GAAG,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;IAC5D,GAAG,CAAC,gBAAgB,CAAC,SAAS,EAAE,IAAI,CAAC,kBAAkB,EAAE,KAAK,CAAC,CAAC;IAChE,GAAG,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;IAC5D,GAAG,CAAC,gBAAgB,CAAC,UAAU,EAAE,IAAI,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;IAC/D,GAAG,CAAC,gBAAgB,CAAC,MAAM,EAAE,IAAI,CAAC,eAAe,EAAE,KAAK,CAAC,CAAC;IAC1D,GAAG,CAAC,IAAI,EAAE,CAAC;GACZ;;;;;;GAMA;;EAED,MAAM,CAAC,QAAQ,GAAG,SAAS,QAAQ,GAAG;;IAEpC,IAAI,OAAO,IAAI,CAAC,OAAO,KAAK,QAAQ,EAAE;MACpC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,iBAAiB,EAAE,CAAC;KACzC;;IAED,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,cAAc,EAAE,CAAC;;;;;IAK1C,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC;;IAEnC,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC;IACpC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,kBAAkB,CAAC;IACxC,GAAG,CAAC,UAAU,GAAG,IAAI,CAAC,gBAAgB,CAAC;IACvC,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,eAAe,CAAC;IAClC,GAAG,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;;;;;IAKhC,UAAU,CAAC,YAAY;MACrB,OAAO,GAAG,CAAC,IAAI,EAAE,CAAC;KACnB,EAAE,CAAC,CAAC,CAAC;GACP;;;;;;;;;;GAUA;;EAED,MAAM,CAAC,aAAa,GAAG,SAAS,aAAa,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE;IAC7D,IAAI,CAAC,IAAI,EAAE;MACT,IAAI,GAAG,IAAI,GAAG,GAAG,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;KAC7C;;IAED,IAAI,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;IAC9C,MAAM,CAAC,GAAG,GAAG,GAAG,CAAC;IACjB,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;IACnB,OAAO,MAAM,CAAC;GACf;;;;;;;GAOA;;EAED,MAAM,CAAC,QAAQ,GAAG,SAAS,QAAQ,CAAC,KAAK,EAAE;IACzC,IAAI,CAAC,KAAK,CAAC,gCAAgC,GAAG,KAAK,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;GACtE;;;;;;;GAOA;;EAED,MAAM,CAAC,WAAW,GAAG,SAAS,WAAW,CAAC,KAAK,EAAE;IAC/C,IAAI,KAAK,IAAI,KAAK,CAAC,gBAAgB,EAAE;MACnC,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,IAAI,EAAE,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC;KAC5D;GACF;;;;;;GAMA;;EAED,MAAM,CAAC,UAAU,GAAG,SAAS,UAAU,GAAG;IACxC,IAAI,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC;GAC/B;;;;;;GAMA;;EAED,MAAM,CAAC,WAAW,GAAG,SAAS,WAAW,GAAG;IAC1C,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;IACnB,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,2BAA2B,GAAG,GAAG,CAAC,MAAM,GAAG,YAAY,GAAG,GAAG,CAAC,UAAU,GAAG,IAAI,CAAC,CAAC;GAC5G;;;;;;GAMA;;EAED,MAAM,CAAC,aAAa,GAAG,SAAS,aAAa,GAAG;IAC9C,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;IACnB,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,qBAAqB,CAAC,CAAC;GAClD;;;;;;GAMA;;EAED,MAAM,CAAC,WAAW,GAAG,SAAS,WAAW,GAAG;IAC1C,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;IACnB,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,mCAAmC,CAAC,CAAC;GAChE;;;;;;;GAOA;;EAED,MAAM,CAAC,UAAU,GAAG,SAAS,UAAU,GAAG;IACxC,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;IACnB,IAAI,IAAI,GAAG,EAAE,CAAC;IACd,IAAI,MAAM,GAAG,OAAO,GAAG,CAAC,MAAM,KAAK,WAAW,GAAG,SAAS,GAAG,GAAG,CAAC,MAAM,CAAC;;;IAGxE,IAAI,GAAG,CAAC,YAAY,KAAK,EAAE,IAAI,GAAG,CAAC,YAAY,KAAK,MAAM,IAAI,OAAO,GAAG,CAAC,YAAY,KAAK,WAAW,EAAE;MACrG,IAAI,GAAG,GAAG,CAAC,YAAY,CAAC;KACzB;;;;IAID,IAAI,MAAM,KAAK,WAAW,KAAK,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,GAAG,CAAC,YAAY,KAAK,QAAQ,CAAC,iBAAiB,CAAC,MAAM,CAAC,EAAE;MACzG,MAAM,GAAG,SAAS,CAAC;KACpB;SACI,IAAI,MAAM,KAAK,mBAAmB,EAAE;QACrC,MAAM,GAAG,YAAY,CAAC;OACvB;;IAEH,IAAI,UAAU,GAAG,MAAM,GAAG,GAAG,GAAG,CAAC,CAAC;;IAElC,IAAI,UAAU,KAAK,cAAc,EAAE;;MAEjC,IAAI,IAAI,CAAC,OAAO,KAAK,QAAQ,CAAC,iBAAiB,CAAC,IAAI,EAAE;QACpD,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC;OAChC;WACI,IAAI,IAAI,CAAC,OAAO,KAAK,QAAQ,CAAC,iBAAiB,CAAC,IAAI,EAAE;UACvD,IAAI;YACF,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YAC7B,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC;WAChC,CAAC,OAAO,CAAC,EAAE;YACV,IAAI,CAAC,KAAK,CAAC,qCAAqC,GAAG,CAAC,CAAC,CAAC;YACtD,OAAO;WACR;SACF;aACI,IAAI,IAAI,CAAC,OAAO,KAAK,QAAQ,CAAC,iBAAiB,CAAC,QAAQ,EAAE;YAC3D,IAAI;cACF,IAAI,MAAM,CAAC,SAAS,EAAE;gBACpB,IAAI,SAAS,GAAG,IAAI,SAAS,EAAE,CAAC;gBAChC,IAAI,CAAC,IAAI,GAAG,SAAS,CAAC,eAAe,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;eACzD,MAAM;gBACL,IAAI,GAAG,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;gBACxC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC;gBACrB,IAAI,CAAC,IAAI,GAAG,GAAG,CAAC;eACjB;;cAED,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,GAAG,CAAC;aAC/B,CAAC,OAAO,CAAC,EAAE;cACV,IAAI,CAAC,KAAK,CAAC,oCAAoC,GAAG,CAAC,CAAC,CAAC;cACrD,OAAO;aACR;WACF;eACI;cACD,IAAI,CAAC,IAAI,GAAG,GAAG,CAAC,QAAQ,IAAI,IAAI,CAAC;aAClC;KACR,MAAM;MACL,IAAI,CAAC,KAAK,CAAC,GAAG,GAAG,GAAG,CAAC,MAAM,GAAG,IAAI,GAAG,GAAG,CAAC,UAAU,GAAG,IAAI,GAAG,GAAG,CAAC,WAAW,CAAC,CAAC;MAC9E,OAAO;KACR;;IAED,IAAI,CAAC,QAAQ,EAAE,CAAC;GACjB;;;;;;;;;;;GAWA;;EAED,MAAM,CAAC,qBAAqB,GAAG,SAAS,qBAAqB,CAAC,GAAG,EAAE,GAAG,EAAE;;IAEtE,IAAI,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;MAC9B,OAAO,EAAE,CAAC;KACX;;;;;IAKD,IAAI,MAAM,CAAC,MAAM,KAAK,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE;MAC5C,OAAO,WAAW,CAAC;KACpB;;;IAGD,GAAG,GAAG,GAAG,IAAI,MAAM,CAAC,QAAQ,CAAC;;IAE7B,IAAI,CAACD,YAAU,EAAE;MACfA,YAAU,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;KAC1C;;;;;IAKDA,YAAU,CAAC,IAAI,GAAG,GAAG,CAAC;IACtB,GAAG,GAAG,QAAQ,CAACA,YAAU,CAAC,IAAI,EAAE;MAC9B,UAAU,EAAE,IAAI;KACjB,CAAC,CAAC;IACH,IAAI,QAAQ,GAAG,CAAC,GAAG,CAAC,IAAI,IAAI,GAAG,CAAC,IAAI,KAAK,EAAE,IAAI,GAAG,CAAC,IAAI,KAAK,GAAG,CAAC,IAAI,CAAC;IACrE,IAAI,QAAQ,GAAG,GAAG,CAAC,QAAQ,GAAG,GAAG,CAAC,QAAQ,GAAG,GAAG,GAAG,EAAE,CAAC;;IAEtD,IAAI,GAAG,CAAC,IAAI,KAAK,GAAG,CAAC,QAAQ,IAAI,CAAC,QAAQ,IAAI,QAAQ,KAAK,GAAG,CAAC,QAAQ,EAAE;MACvE,OAAO,WAAW,CAAC;KACpB;;IAED,OAAO,EAAE,CAAC;GACX;;;;;;;;GAQA;;EAED,MAAM,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,GAAG;IACtD,OAAO,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,QAAQ,CAAC,iBAAiB,CAAC,IAAI,CAAC;GAChF;;;;;;;;GAQA;;EAED,MAAM,CAAC,kBAAkB,GAAG,SAAS,kBAAkB,GAAG;IACxD,OAAO,QAAQ,CAAC,YAAY,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,QAAQ,CAAC,SAAS,CAAC,GAAG,CAAC;GACxE;;;;;;;GAOA;;EAED,MAAM,CAAC,aAAa,GAAG,SAAS,aAAa,GAAG;IAC9C,IAAI,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;IACnB,IAAI,GAAG,GAAG,EAAE,CAAC;;IAEb,IAAI,IAAI,CAAC,SAAS,EAAE;MAClB,IAAI,UAAU,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;MAClC,GAAG,GAAG,GAAG,CAAC,SAAS,CAAC,UAAU,GAAG,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC,GAAG,EAAE,UAAU,CAAC,CAAC,CAAC;KACnE,MAAM;MACL,IAAI,UAAU,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;MAClC,IAAI,SAAS,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;MACjC,IAAI,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,GAAG,CAAC,CAAC,GAAG,UAAU,GAAG,GAAG,CAAC,MAAM,EAAE,SAAS,GAAG,CAAC,CAAC,GAAG,SAAS,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC;MACzG,GAAG,GAAG,GAAG,CAAC,SAAS,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC;MAC9B,GAAG,GAAG,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;KAC/C;;IAED,OAAO,GAAG,CAAC,WAAW,EAAE,CAAC;GAC1B;;;;;;;;;GASA;;EAED,MAAM,CAAC,mBAAmB,GAAG,SAAS,mBAAmB,CAAC,IAAI,EAAE;IAC9D,QAAQ,IAAI;MACV,KAAK,QAAQ,CAAC,iBAAiB,CAAC,MAAM;QACpC,OAAO,0BAA0B,CAAC;;MAEpC,KAAK,QAAQ,CAAC,iBAAiB,CAAC,IAAI;QAClC,OAAO,kBAAkB,CAAC;;MAE5B,KAAK,QAAQ,CAAC,iBAAiB,CAAC,QAAQ;QACtC,OAAO,iBAAiB,CAAC;;MAE3B,KAAK,QAAQ,CAAC,iBAAiB,CAAC,IAAI;QAClC,OAAO,kBAAkB,CAAC;;MAE5B,KAAK,QAAQ,CAAC,iBAAiB,CAAC,OAAO,CAAC;MACxC,KAAK,QAAQ,CAAC,iBAAiB,CAAC,IAAI,CAAC;;;MAGrC;QACE,OAAO,YAAY,CAAC;KACvB;GACF,CAAC;;EAEF,YAAY,CAAC,QAAQ,EAAE,CAAC;IACtB,GAAG,EAAE,WAAW;IAChB,GAAG,EAAE,SAAS,GAAG,GAAG;MAClB,OAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;KACtD;;;;;;;;;GASF,EAAE;IACD,GAAG,EAAE,YAAY;IACjB,GAAG,EAAE,SAAS,GAAG,GAAG;MAClB,OAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;KACtD;;;;;;;;;GASF,EAAE;IACD,GAAG,EAAE,WAAW;IAChB,GAAG,EAAE,SAAS,GAAG,GAAG;MAClB,OAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;KACrD;GACF,CAAC,CAAC,CAAC;;EAEJ,OAAO,QAAQ,CAAC;CACjB,EAAE,CAAC;;;;;;;;;;AAUJC,UAAQ,CAAC,YAAY,GAAG;EACtB,IAAI,EAAE,CAAC;EACP,QAAQ,EAAE,CAAC,IAAI,CAAC;EAChB,QAAQ,EAAE,CAAC,IAAI,CAAC;EAChB,OAAO,EAAE,CAAC,IAAI,CAAC;CAChB,CAAC;;;;;;;;;AASFA,UAAQ,CAAC,IAAI,GAAG;EACd,OAAO,EAAE,CAAC;EACV,IAAI,EAAE,CAAC;EACP,GAAG,EAAE,CAAC;EACN,KAAK,EAAE,CAAC;EACR,KAAK,EAAE,CAAC;EACR,KAAK,EAAE,CAAC;EACR,IAAI,EAAE,CAAC;CACR,CAAC;;;;;;;;;AASFA,UAAQ,CAAC,SAAS,GAAG;;EAEnB,GAAG,EAAE,CAAC;;;EAGN,KAAK,EAAE,CAAC;;;EAGR,KAAK,EAAE,CAAC;;;EAGR,KAAK,EAAE,CAAC;CACT,CAAC;;;;;;;;;AASFA,UAAQ,CAAC,iBAAiB,GAAG;;EAE3B,OAAO,EAAE,MAAM;;;EAGf,MAAM,EAAE,aAAa;;;EAGrB,IAAI,EAAE,MAAM;;;EAGZ,QAAQ,EAAE,UAAU;;;EAGpB,IAAI,EAAE,MAAM;;;EAGZ,IAAI,EAAE,MAAM;CACb,CAAC;AACFA,UAAQ,CAAC,YAAY,GAAG;;EAEtB,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,IAAI,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC9B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,IAAI,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC9B,IAAI,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC9B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,SAAS,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;;;EAGnC,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;;EAE7B,GAAG,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;EAC7B,IAAI,EAAEA,UAAQ,CAAC,SAAS,CAAC,KAAK;CAC/B,CAAC;AACFA,UAAQ,CAAC,WAAW,GAAG;;EAErB,KAAK,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,QAAQ;EAC1C,IAAI,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,QAAQ;EACzC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,QAAQ;EACxC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,QAAQ;EACxC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,QAAQ;EACxC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,QAAQ;;;;EAIxC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,QAAQ;;EAExC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACpC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACpC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACpC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACpC,IAAI,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACrC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACpC,IAAI,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACrC,IAAI,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACrC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;;EAEpC,IAAI,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;;EAErC,IAAI,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;EACrC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,IAAI;;EAEpC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,MAAM;EACtC,GAAG,EAAEA,UAAQ,CAAC,iBAAiB,CAAC,MAAM;CACvC,CAAC;;AAEFA,UAAQ,CAAC,SAAS,GAAG,oFAAoF,CAAC;;;;;;;;;;;AAW1G,SAAS,SAAS,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE;EACpC,IAAI,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE;IACzC,OAAO,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;GAChC;;EAED,IAAI,CAAC,OAAO,EAAE;IACZ,OAAO;GACR;;EAED,GAAG,CAAC,OAAO,CAAC,GAAG,GAAG,CAAC;CACpB;;;;;;;;;;AAUD,SAAS,OAAO,CAAC,GAAG,EAAE;EACpB,OAAO,GAAG,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;CAC9C;;AAED,IAAI,OAAO,GAAG,mEAAmE,CAAC;;;;;;;;;AASlF,SAAS,YAAY,CAAC,KAAK,EAAE;EAC3B,IAAI,MAAM,GAAG,EAAE,CAAC;EAChB,IAAI,GAAG,GAAG,CAAC,CAAC;;EAEZ,OAAO,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE;;IAEzB,IAAI,UAAU,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IAC3B,IAAI,kBAAkB,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;IAEtC,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,UAAU,CAAC,MAAM,EAAE,EAAE,GAAG,EAAE;MAChD,IAAI,GAAG,GAAG,KAAK,CAAC,MAAM,EAAE;;;QAGtB,UAAU,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC,GAAG,IAAI,CAAC;OAClD,MAAM;QACL,UAAU,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;OACrB;KACF;;;;IAID,kBAAkB,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;IAE3C,kBAAkB,CAAC,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,GAAG,KAAK,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;IAExE,kBAAkB,CAAC,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,KAAK,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;IAEzE,kBAAkB,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;;IAE7C,IAAI,YAAY,GAAG,GAAG,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;IAE5C,QAAQ,YAAY;MAClB,KAAK,CAAC;;QAEJ,kBAAkB,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC;QAC3B,kBAAkB,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC;QAC3B,MAAM;;MAER,KAAK,CAAC;;QAEJ,kBAAkB,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC;QAC3B,MAAM;;MAER;QACE,MAAM;;KAET;;;;IAID,KAAK,IAAI,IAAI,GAAG,CAAC,EAAE,IAAI,GAAG,kBAAkB,CAAC,MAAM,EAAE,EAAE,IAAI,EAAE;MAC3D,MAAM,IAAI,OAAO,CAAC,MAAM,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAC;KACpD;GACF;;EAED,OAAO,MAAM,CAAC;CACf;;AAED,IAAIC,KAAG,GAAG,MAAM,CAAC,GAAG,IAAI,MAAM,CAAC,SAAS,CAAC;;;;;;;;;;;;;;AAczC,SAAS,OAAO,CAAC,QAAQ,EAAE,IAAI,EAAE;EAC/B,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE;IAClB,IAAI,EAAE,CAAC;IACP,OAAO;GACR;;;EAGD,IAAI,QAAQ,CAAC,GAAG,IAAI,QAAQ,CAAC,OAAO,KAAKD,UAAQ,CAAC,iBAAiB,CAAC,IAAI,EAAE;;IAExE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,OAAO,QAAQ,CAAC,IAAI,KAAK,QAAQ,EAAE;MACrD,IAAI,IAAI,GAAG,QAAQ,CAAC,GAAG,CAAC,iBAAiB,CAAC,cAAc,CAAC,CAAC;;MAE1D,IAAI,IAAI,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;QACvC,QAAQ,CAAC,IAAI,GAAG,IAAI,KAAK,EAAE,CAAC;QAC5B,QAAQ,CAAC,IAAI,CAAC,GAAG,GAAG,OAAO,GAAG,IAAI,GAAG,UAAU,GAAG,YAAY,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;QAC1F,QAAQ,CAAC,IAAI,GAAGA,UAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;;QAEpC,QAAQ,CAAC,IAAI,CAAC,MAAM,GAAG,YAAY;UACjC,QAAQ,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;UAC5B,IAAI,EAAE,CAAC;SACR,CAAC;;;QAGF,OAAO;OACR;KACF;SACI,IAAI,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;QAChD,IAAI,GAAG,GAAGC,KAAG,CAAC,eAAe,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;QAC7C,QAAQ,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;QAC9B,QAAQ,CAAC,IAAI,GAAG,IAAI,KAAK,EAAE,CAAC;QAC5B,QAAQ,CAAC,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;QACxB,QAAQ,CAAC,IAAI,GAAGD,UAAQ,CAAC,IAAI,CAAC,KAAK,CAAC;;;QAGpC,QAAQ,CAAC,IAAI,CAAC,MAAM,GAAG,YAAY;UACjCC,KAAG,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC;UACzB,QAAQ,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;UAC5B,IAAI,EAAE,CAAC;SACR,CAAC;;;QAGF,OAAO;OACR;GACJ;;EAED,IAAI,EAAE,CAAC;CACR;;;;;;AAMD,IAAI,KAAK,IAAI;IACT,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,OAAO;CACnB,CAAC,CAAC;;AAEH,IAAI,YAAY,GAAG,GAAG,CAAC;AACvB,IAAI,iBAAiB,GAAG,aAAa,CAAC;;;;;;;AAOtC,IAAI,MAAM;;AAEV,YAAY;;;;;EAKV,SAAS,MAAM,CAAC,OAAO,EAAE,WAAW,EAAE;IACpC,IAAI,KAAK,GAAG,IAAI,CAAC;;IAEjB,IAAI,OAAO,KAAK,KAAK,CAAC,EAAE;MACtB,OAAO,GAAG,EAAE,CAAC;KACd;;IAED,IAAI,WAAW,KAAK,KAAK,CAAC,EAAE;MAC1B,WAAW,GAAG,EAAE,CAAC;KAClB;;;;;;;IAOD,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;;;;;;;IAQvB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;;;;;;;;IAQlB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;IAyBrB,IAAI,CAAC,kBAAkB,GAAG,EAAE,CAAC;;;;;;;;IAQ7B,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;;;;;;;;IAQ5B,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC;;;;;;;;IAQ3B,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;;;;;;;;;;;IAW5B,IAAI,CAAC,kBAAkB,GAAG,UAAU,CAAC,EAAE,CAAC,EAAE;MACxC,OAAO,KAAK,CAAC,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;KAClC,CAAC;;;;;;;;;IASF,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC,IAAI,CAAC,kBAAkB,EAAE,WAAW,CAAC,CAAC;;IAE1D,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;;;;;;;;IAQpB,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;;;;;;;;;IASpB,IAAI,CAAC,UAAU,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;IAS/B,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;IAS5B,IAAI,CAAC,MAAM,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;IAS3B,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;IAS5B,IAAI,CAAC,UAAU,GAAG,IAAI,MAAM,EAAE,CAAC;;IAE/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,wBAAwB,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;MAC/D,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC;KAC9C;;;IAGD,KAAK,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,GAAG,MAAM,CAAC,uBAAuB,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE;MACjE,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,uBAAuB,CAAC,EAAE,CAAC,CAAC,CAAC;KAC9C;GACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsKD,IAAI,MAAM,GAAG,MAAM,CAAC,SAAS,CAAC;;EAE9B,MAAM,CAAC,GAAG,GAAG,SAAS,GAAG,CAAC,IAAI,EAAE,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE;;IAEhD,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;MACvB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;QACpC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;OACnB;;MAED,OAAO,IAAI,CAAC;KACb;;;IAGD,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;MAC5B,EAAE,GAAG,GAAG,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,UAAU,CAAC;MAC7C,OAAO,GAAG,IAAI,CAAC;MACf,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;MACf,IAAI,GAAG,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,GAAG,CAAC;KAC1C;;;IAGD,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;MAC3B,EAAE,GAAG,OAAO,CAAC;MACb,OAAO,GAAG,GAAG,CAAC;MACd,GAAG,GAAG,IAAI,CAAC;KACZ;;;IAGD,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;MAC3B,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;KAC7D;;;IAGD,IAAI,OAAO,OAAO,KAAK,UAAU,EAAE;MACjC,EAAE,GAAG,OAAO,CAAC;MACb,OAAO,GAAG,IAAI,CAAC;KAChB;;;IAGD,IAAI,IAAI,CAAC,OAAO,KAAK,CAAC,OAAO,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,EAAE;MACzD,MAAM,IAAI,KAAK,CAAC,mDAAmD,CAAC,CAAC;KACtE;;;IAGD,IAAI,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE;MACxB,MAAM,IAAI,KAAK,CAAC,mBAAmB,GAAG,IAAI,GAAG,oBAAoB,CAAC,CAAC;KACpE;;;IAGD,GAAG,GAAG,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;;IAE5B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,IAAID,UAAQ,CAAC,IAAI,EAAE,GAAG,EAAE,OAAO,CAAC,CAAC;;IAExD,IAAI,OAAO,EAAE,KAAK,UAAU,EAAE;MAC5B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,iBAAiB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;KACjD;;;IAGD,IAAI,IAAI,CAAC,OAAO,EAAE;MAChB,IAAI,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC;MACpC,IAAI,kBAAkB,GAAG,EAAE,CAAC;;MAE5B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,EAAE,GAAG,EAAE;QACrD,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,UAAU,EAAE;UACpC,kBAAkB,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC;SAC/C;OACF;;MAED,IAAI,SAAS,GAAG,MAAM,CAAC,aAAa,IAAI,kBAAkB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;MAEvE,IAAI,SAAS,GAAG,SAAS,IAAI,kBAAkB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;MAE5D,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC;MAC3C,MAAM,CAAC,aAAa,GAAG,SAAS,CAAC;;MAEjC,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,kBAAkB,CAAC,MAAM,EAAE,EAAE,GAAG,EAAE;QACxD,kBAAkB,CAAC,GAAG,CAAC,CAAC,aAAa,GAAG,SAAS,CAAC;OACnD;;MAED,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,aAAa,GAAG,SAAS,CAAC;KAChD;;;IAGD,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC;;IAEvC,OAAO,IAAI,CAAC;GACb;;;;;;;;;;GAUA;;EAED,MAAM,CAAC,GAAG,GAAG,SAAS,GAAG,CAAC,EAAE,EAAE;IAC5B,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;;IAEhC,OAAO,IAAI,CAAC;GACb;;;;;;;;GAQA;;EAED,MAAM,CAAC,GAAG,GAAG,SAAS,GAAG,CAAC,EAAE,EAAE;IAC5B,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;;IAE/B,OAAO,IAAI,CAAC;GACb;;;;;;GAMA;;EAED,MAAM,CAAC,KAAK,GAAG,SAAS,KAAK,GAAG;IAC9B,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;IAClB,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;;IAErB,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC;;IAEnB,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;;;IAGpB,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,SAAS,EAAE;MAC5B,IAAI,GAAG,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;;MAE5B,IAAI,GAAG,CAAC,cAAc,EAAE;QACtB,GAAG,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC;OAC7B;;MAED,IAAI,GAAG,CAAC,SAAS,EAAE;QACjB,GAAG,CAAC,KAAK,EAAE,CAAC;OACb;KACF;;IAED,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;IACpB,OAAO,IAAI,CAAC;GACb;;;;;;;GAOA;;EAED,MAAM,CAAC,IAAI,GAAG,SAAS,IAAI,CAAC,EAAE,EAAE;;IAE9B,IAAI,OAAO,EAAE,KAAK,UAAU,EAAE;MAC5B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;KAC1B;;;IAGD,IAAI,IAAI,CAAC,OAAO,EAAE;MAChB,OAAO,IAAI,CAAC;KACb;;IAED,IAAI,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,EAAE;MACtB,IAAI,CAAC,QAAQ,EAAE,CAAC;;MAEhB,IAAI,CAAC,WAAW,EAAE,CAAC;KACpB,MAAM;;MAEL,IAAI,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC;MACzC,IAAI,KAAK,GAAG,YAAY,GAAG,QAAQ,CAAC;;MAEpC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;QAClD,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;OAClD;;;MAGD,IAAI,CAAC,QAAQ,EAAE,CAAC;;;MAGhB,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC;KACtB;;IAED,OAAO,IAAI,CAAC;GACb;;;;;;;GAOA;;;;;;;;;EASD,MAAM,CAAC,WAAW,GAAG,SAAS,WAAW,CAAC,GAAG,EAAE;IAC7C,IAAI,SAAS,GAAG,QAAQ,CAAC,GAAG,EAAE;MAC5B,UAAU,EAAE,IAAI;KACjB,CAAC,CAAC;IACH,IAAI,MAAM,CAAC;;IAEX,IAAI,SAAS,CAAC,QAAQ,IAAI,CAAC,SAAS,CAAC,IAAI,IAAI,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;MACpE,MAAM,GAAG,GAAG,CAAC;KACd;SACI,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,IAAI,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC,KAAK,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;QAChH,MAAM,GAAG,IAAI,CAAC,OAAO,GAAG,GAAG,GAAG,GAAG,CAAC;OACnC,MAAM;QACL,MAAM,GAAG,IAAI,CAAC,OAAO,GAAG,GAAG,CAAC;OAC7B;;;IAGH,IAAI,IAAI,CAAC,kBAAkB,EAAE;MAC3B,IAAI,IAAI,GAAG,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;MAC7C,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;;MAEvD,IAAI,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;QAC9B,MAAM,IAAI,GAAG,GAAG,IAAI,CAAC,kBAAkB,CAAC;OACzC,MAAM;QACL,MAAM,IAAI,GAAG,GAAG,IAAI,CAAC,kBAAkB,CAAC;OACzC;;MAED,MAAM,IAAI,IAAI,CAAC;KAChB;;IAED,OAAO,MAAM,CAAC;GACf;;;;;;;;GAQA;;EAED,MAAM,CAAC,aAAa,GAAG,SAAS,aAAa,CAAC,QAAQ,EAAE,OAAO,EAAE;IAC/D,IAAI,MAAM,GAAG,IAAI,CAAC;;IAElB,QAAQ,CAAC,QAAQ,GAAG,OAAO,CAAC;;IAE5B,UAAU,CAAC,IAAI,CAAC,iBAAiB,EAAE,UAAU,EAAE,EAAE,IAAI,EAAE;MACrD,EAAE,CAAC,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE,YAAY;;;QAGpC,IAAI,CAAC,QAAQ,CAAC,UAAU,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC;OACvC,CAAC,CAAC;KACJ,EAAE,YAAY;MACb,IAAI,QAAQ,CAAC,UAAU,EAAE;QACvB,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;OAC1B,MAAM;QACL,QAAQ,CAAC,cAAc,GAAG,QAAQ,CAAC,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;QAC3E,QAAQ,CAAC,IAAI,EAAE,CAAC;OACjB;KACF,EAAE,IAAI,CAAC,CAAC;GACV;;;;;;GAMA;;EAED,MAAM,CAAC,QAAQ,GAAG,SAAS,QAAQ,GAAG;IACpC,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC;IAClB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;GAC7B;;;;;;GAMA;;EAED,MAAM,CAAC,WAAW,GAAG,SAAS,WAAW,GAAG;IAC1C,IAAI,CAAC,QAAQ,GAAG,YAAY,CAAC;IAC7B,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;IACrB,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;GAChD;;;;;;;GAOA;;EAED,MAAM,CAAC,OAAO,GAAG,SAAS,OAAO,CAAC,QAAQ,EAAE;IAC1C,IAAI,MAAM,GAAG,IAAI,CAAC;;IAElB,QAAQ,CAAC,cAAc,GAAG,IAAI,CAAC;;IAE/B,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;;IAEtC,QAAQ,CAAC,QAAQ,EAAE,CAAC;;;IAGpB,UAAU,CAAC,IAAI,CAAC,gBAAgB,EAAE,UAAU,EAAE,EAAE,IAAI,EAAE;MACpD,EAAE,CAAC,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC;KACjC,EAAE,YAAY;MACb,QAAQ,CAAC,iBAAiB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;MAC9C,MAAM,CAAC,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,MAAM,CAAC,QAAQ,GAAG,QAAQ,CAAC,aAAa,CAAC,CAAC;;MAEnF,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;;MAE7C,IAAI,QAAQ,CAAC,KAAK,EAAE;QAClB,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC;OAC3D,MAAM;QACL,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;OAC1C;;MAED,MAAM,CAAC,iBAAiB,CAAC,MAAM,CAAC,MAAM,CAAC,iBAAiB,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC;;;MAG/E,IAAI,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,IAAI,MAAM,CAAC,iBAAiB,CAAC,MAAM,KAAK,CAAC,EAAE;QACjE,MAAM,CAAC,WAAW,EAAE,CAAC;OACtB;KACF,EAAE,IAAI,CAAC,CAAC;GACV,CAAC;;EAEF,YAAY,CAAC,MAAM,EAAE,CAAC;IACpB,GAAG,EAAE,aAAa;IAClB,GAAG,EAAE,SAAS,GAAG,GAAG;MAClB,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC;KAChC;;IAED,GAAG,EAAE,SAAS,GAAG,CAAC,WAAW,EAAE;MAC7B,IAAI,CAAC,MAAM,CAAC,WAAW,GAAG,WAAW,CAAC;KACvC;GACF,CAAC,CAAC,CAAC;;EAEJ,OAAO,MAAM,CAAC;CACf,EAAE,CAAC;;;;;;;;;;AAUJ,MAAM,CAAC,wBAAwB,GAAG,EAAE,CAAC;;;;;;;;;AASrC,MAAM,CAAC,uBAAuB,GAAG,EAAE,CAAC;;;;;;;;;;AAUpC,MAAM,CAAC,GAAG,GAAG,SAAS,eAAe,CAAC,EAAE,EAAE;EACxC,MAAM,CAAC,wBAAwB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;;EAEzC,OAAO,MAAM,CAAC;CACf,CAAC;;;;;;;;;;;AAWF,MAAM,CAAC,GAAG,GAAG,SAAS,eAAe,CAAC,EAAE,EAAE;EACxC,MAAM,CAAC,uBAAuB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;;EAExC,OAAO,MAAM,CAAC;CACf,CAAC;;AC/xEF;;;;;;;AAOA,AAGA;;;;;;;AAOA,IAAI,aAAa,GAAG,SAAS,aAAa,IAAI,EAAE,CAAC;;AAEjD,aAAa,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,QAAQ,EAAE,IAAI;AAChD;;IAEI,IAAI,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC,IAAI,KAAKA,UAAQ,CAAC,IAAI,CAAC,KAAK;IAC1D;QACI,QAAQ,CAAC,OAAO,GAAG,OAAO,CAAC,UAAU;YACjC,QAAQ,CAAC,IAAI;YACb,QAAQ,CAAC,GAAG;YACZ,QAAQ,CAAC,IAAI;SAChB,CAAC;KACL;IACD,IAAI,EAAE,CAAC;CACV,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqDF,IAAIE,QAAM,iBAAiB,UAAU,cAAc,EAAE;IACjD,SAAS,MAAM,CAAC,OAAO,EAAE,WAAW;IACpC;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;;QAElB,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,WAAW,CAAC,CAAC;QAChDb,aAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAExB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,EAAE,CAAC;QAC/C;YACI,IAAI,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;YAChC,IAAI,GAAG,GAAG,MAAM,CAAC,GAAG,CAAC;YACrB,IAAI,GAAG,GAAG,MAAM,CAAC,GAAG,CAAC;;YAErB,IAAI,GAAG;YACP;gBACI,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;aACjB;;YAED,IAAI,GAAG;YACP;gBACI,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;aACjB;SACJ;;;QAGD,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,EAAE,OAAO,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;QACnE,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;QAC/E,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;QAC/E,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;QACvE,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;;;;;;;;QAQ/E,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;KAC3B;;IAED,KAAK,cAAc,GAAG,MAAM,CAAC,SAAS,GAAG,cAAc,CAAC;IACxD,MAAM,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,cAAc,IAAI,cAAc,CAAC,SAAS,EAAE,CAAC;IAC/E,MAAM,CAAC,SAAS,CAAC,WAAW,GAAG,MAAM,CAAC;;IAEtC,IAAI,eAAe,GAAG,EAAE,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;IAMzD,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IAC3C;QACI,IAAI,CAAC,IAAI,CAAC,UAAU;QACpB;YACI,IAAI,CAAC,kBAAkB,EAAE,CAAC;YAC1B,IAAI,CAAC,KAAK,EAAE,CAAC;SAChB;KACJ,CAAC;;;;;;;;;IASF,eAAe,CAAC,MAAM,CAAC,GAAG,GAAG;IAC7B;QACI,IAAI,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC;;QAE5B,IAAI,CAAC,MAAM;QACX;YACI,MAAM,GAAG,IAAI,MAAM,EAAE,CAAC;YACtB,MAAM,CAAC,UAAU,GAAG,IAAI,CAAC;YACzB,MAAM,CAAC,OAAO,GAAG,MAAM,CAAC;SAC3B;;QAED,OAAO,MAAM,CAAC;KACjB,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,MAAM,EAAE,eAAe,EAAE,CAAC;;IAEnD,OAAO,MAAM,CAAC;CACjB,CAACc,MAAQ,CAAC,CAAC,CAAC;;;AAGb,MAAM,CAAC,MAAM,CAACD,QAAM,CAAC,SAAS,EAAEb,aAAY,CAAC,SAAS,CAAC,CAAC;;;;;;;;;;AAUxDa,QAAM,CAAC,QAAQ,GAAG,EAAE,CAAC;;;;;;;;;;;;AAYrBA,QAAM,CAAC,cAAc,GAAG,SAAS,cAAc,CAAC,MAAM;AACtD;IACIA,QAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;IAE7B,IAAI,MAAM,CAAC,GAAG;IACd;QACI,MAAM,CAAC,GAAG,EAAE,CAAC;KAChB;;IAED,OAAOA,QAAM,CAAC;CACjB,CAAC;;;AAGFA,QAAM,CAAC,cAAc,CAAC,EAAE,GAAG,EAAEE,KAAU,CAAC,OAAO,EAAE,CAAC,CAAC;;;AAGnDF,QAAM,CAAC,cAAc,CAAC,aAAa,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwDrC,IAAI,eAAe,GAAG,SAAS,eAAe,IAAI,EAAE,CAAC;;AAErD,eAAe,CAAC,IAAI,GAAG,SAAS,IAAI,EAAE,OAAO;AAC7C;IACI,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC;QACpB,YAAY,EAAE,KAAK;KACtB,EAAE,OAAO,CAAC,CAAC;;;;;;;;IAQZ,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,YAAY,GAAGA,QAAM,CAAC,MAAM,GAAG,IAAIA,QAAM,EAAE,CAAC;CACrE,CAAC;;;;;;AAMF,eAAe,CAAC,OAAO,GAAG,SAAS,OAAO;AAC1C;IACI,IAAI,IAAI,CAAC,MAAM;IACf;QACI,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;QACtB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;KACtB;CACJ,CAAC;;;;;;;;;AASF,IAAI,cAAc,GAAGF,UAAQ,CAAC;;AC9S9B;;;;;;;AAOA,AAiSA;;;;;;;;;;;;;;;;;;;;AAoBA,IAAI,cAAc,GAAG,SAAS,cAAc,CAAC,UAAU,EAAE,oBAAoB,EAAE,IAAI;AACnF;IACI,IAAI,CAAC,QAAQ,GAAG,IAAI,QAAQ,EAAE,CAAC;;IAE/B,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;;;;;;;IAQxB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;;;IAQjB,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;;;;;;;;IAQ5B,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC;;IAE3B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,EAAE,CAAC;IAC1C;QACI,IAAI,QAAQ,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;;;;QAI7B,QAAQ,GAAG;YACP,aAAa,EAAE,QAAQ,CAAC,aAAa;YACrC,IAAI,EAAE,QAAQ,CAAC,IAAI;YACnB,cAAc,EAAE,QAAQ,CAAC,cAAc;YACvC,IAAI,EAAE,QAAQ,CAAC,IAAI,IAAI,KAAK,CAAC,KAAK;YAClC,MAAM,EAAE,QAAQ,CAAC,MAAM;SAC1B,CAAC;;QAEF,IAAI,oBAAoB,CAAC,CAAC,CAAC;QAC3B;YACI,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;SACzC;;QAED;YACI,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;SACxC;KACJ;;IAED,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;IACtB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;IACzB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;;IAE7B,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;IACvB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;IACxB,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;;IAE9B,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;;IAEnB,IAAI,CAAC,WAAW,EAAE,CAAC;CACtB,CAAC;;;;;;;AAOF,cAAc,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW;AAC3D;IACI,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;;IAE7B,IAAI,aAAa,GAAG,CAAC,CAAC;;;;;;;;IAQtB,IAAI,CAAC,WAAW,GAAG,IAAIT,QAAM,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;IAC5E,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;IAEpC,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC;;IAEvB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,iBAAiB,CAAC,MAAM,EAAE,EAAE,CAAC;IACtD;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;;QAEzC,QAAQ,CAAC,MAAM,GAAG,aAAa,CAAC;QAChC,aAAa,IAAI,QAAQ,CAAC,IAAI,CAAC;QAC/B,IAAI,CAAC,aAAa,IAAI,QAAQ,CAAC,IAAI,CAAC;KACvC;;IAED,IAAI,SAAS,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,aAAa,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;;IAExE,IAAI,CAAC,WAAW,GAAG,IAAI,YAAY,CAAC,SAAS,CAAC,CAAC;IAC/C,IAAI,CAAC,iBAAiB,GAAG,IAAI,WAAW,CAAC,SAAS,CAAC,CAAC;IACpD,IAAI,CAAC,aAAa,GAAG,IAAIA,QAAM,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;;;IAGhE,IAAI,YAAY,GAAG,CAAC,CAAC;;IAErB,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC;;IAEtB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,EAAE,GAAG;IAC3D;QACI,IAAI,UAAU,GAAG,IAAI,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC;;QAE5C,UAAU,CAAC,MAAM,GAAG,YAAY,CAAC;QACjC,YAAY,IAAI,UAAU,CAAC,IAAI,CAAC;QAChC,IAAI,CAAC,YAAY,IAAI,UAAU,CAAC,IAAI,CAAC;KACxC;;IAED,IAAI,UAAU,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,YAAY,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;;IAExE,IAAI,CAAC,UAAU,GAAG,IAAI,YAAY,CAAC,UAAU,CAAC,CAAC;IAC/C,IAAI,CAAC,gBAAgB,GAAG,IAAI,WAAW,CAAC,UAAU,CAAC,CAAC;IACpD,IAAI,CAAC,YAAY,GAAG,IAAIA,QAAM,CAAC,IAAI,CAAC,UAAU,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;;IAE7D,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,iBAAiB,CAAC,MAAM,EAAE,EAAE,GAAG;IAC5D;QACI,IAAI,UAAU,GAAG,IAAI,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC;;QAE7C,QAAQ,CAAC,YAAY;YACjB,UAAU,CAAC,aAAa;YACxB,IAAI,CAAC,aAAa;YAClB,CAAC;YACD,UAAU,CAAC,IAAI,KAAK,KAAK,CAAC,aAAa;YACvC,UAAU,CAAC,IAAI;YACf,IAAI,CAAC,aAAa,GAAG,CAAC;YACtB,UAAU,CAAC,MAAM,GAAG,CAAC;SACxB,CAAC;KACL;;IAED,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,EAAE,GAAG;IAC3D;QACI,IAAI,UAAU,GAAG,IAAI,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC;;QAE5C,QAAQ,CAAC,YAAY;YACjB,UAAU,CAAC,aAAa;YACxB,IAAI,CAAC,YAAY;YACjB,CAAC;YACD,UAAU,CAAC,IAAI,KAAK,KAAK,CAAC,aAAa;YACvC,UAAU,CAAC,IAAI;YACf,IAAI,CAAC,YAAY,GAAG,CAAC;YACrB,UAAU,CAAC,MAAM,GAAG,CAAC;SACxB,CAAC;KACL;CACJ,CAAC;;;;;;;;;;AAUF,cAAc,CAAC,SAAS,CAAC,aAAa,GAAG,SAAS,aAAa,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM;AAC7F;IACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,iBAAiB,CAAC,MAAM,EAAE,CAAC,EAAE;IACtD;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;;QAEzC,QAAQ,CAAC,cAAc,CAAC,QAAQ,EAAE,UAAU,EAAE,MAAM;YAChD,QAAQ,CAAC,IAAI,KAAK,KAAK,CAAC,aAAa,GAAG,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,WAAW;YACjF,IAAI,CAAC,aAAa,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;KAC5C;;IAED,IAAI,CAAC,aAAa,CAAC,SAAS,EAAE,CAAC;CAClC,CAAC;;;;;;;;;;AAUF,cAAc,CAAC,SAAS,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM;AAC3F;IACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,CAAC,EAAE;IACrD;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC;;QAExC,QAAQ,CAAC,cAAc,CAAC,QAAQ,EAAE,UAAU,EAAE,MAAM;YAChD,QAAQ,CAAC,IAAI,KAAK,KAAK,CAAC,aAAa,GAAG,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,UAAU;YAC/E,IAAI,CAAC,YAAY,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;KAC3C;;IAED,IAAI,CAAC,YAAY,CAAC,SAAS,EAAE,CAAC;CACjC,CAAC;;;;;;;AAOF,cAAc,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;AACnD;IACI,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;;IAExB,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;;IAE9B,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;IACxB,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;;IAE9B,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;;IAE7B,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;IACzB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;;IAE7B,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC;CAC3B,CAAC;;AAEF,IAAIc,QAAM,GAAG,+pBAA+pB,CAAC;;AAE7qB,IAAIC,UAAQ,GAAG,mMAAmM,CAAC;;;;;;;;;;;;;;;;;;;;AAoBnN,IAAI,gBAAgB,iBAAiB,UAAU,cAAc,EAAE;IAC3D,SAAS,gBAAgB,CAAC,QAAQ;IAClC;QACI,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;;;;;;;;;;;;QAapC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;;QAEnB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;;QAEvB,IAAI,CAAC,UAAU,GAAG,IAAI,MAAM,EAAE,CAAC;;QAE/B,IAAI,CAAC,UAAU,GAAG;;YAEd;gBACI,aAAa,EAAE,iBAAiB;gBAChC,IAAI,EAAE,CAAC;gBACP,cAAc,EAAE,IAAI,CAAC,cAAc;gBACnC,MAAM,EAAE,CAAC;aACZ;;YAED;gBACI,aAAa,EAAE,gBAAgB;gBAC/B,IAAI,EAAE,CAAC;gBACP,cAAc,EAAE,IAAI,CAAC,cAAc;gBACnC,MAAM,EAAE,CAAC;aACZ;;YAED;gBACI,aAAa,EAAE,WAAW;gBAC1B,IAAI,EAAE,CAAC;gBACP,cAAc,EAAE,IAAI,CAAC,cAAc;gBACnC,MAAM,EAAE,CAAC;aACZ;;YAED;gBACI,aAAa,EAAE,eAAe;gBAC9B,IAAI,EAAE,CAAC;gBACP,cAAc,EAAE,IAAI,CAAC,SAAS;gBAC9B,MAAM,EAAE,CAAC;aACZ;;YAED;gBACI,aAAa,EAAE,QAAQ;gBACvB,IAAI,EAAE,CAAC;gBACP,IAAI,EAAE,KAAK,CAAC,aAAa;gBACzB,cAAc,EAAE,IAAI,CAAC,UAAU;gBAC/B,MAAM,EAAE,CAAC;aACZ,EAAE,CAAC;;QAER,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,IAAI,CAACD,QAAM,EAAEC,UAAQ,EAAE,EAAE,CAAC,CAAC;KACnD;;IAED,KAAK,cAAc,GAAG,gBAAgB,CAAC,SAAS,GAAG,cAAc,CAAC;IAClE,gBAAgB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,cAAc,IAAI,cAAc,CAAC,SAAS,EAAE,CAAC;IACzF,gBAAgB,CAAC,SAAS,CAAC,WAAW,GAAG,gBAAgB,CAAC;;;;;;;IAO1D,gBAAgB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,SAAS;IAC9D;QACI,IAAI,QAAQ,GAAG,SAAS,CAAC,QAAQ,CAAC;QAClC,IAAI,OAAO,GAAG,SAAS,CAAC,QAAQ,CAAC;QACjC,IAAI,SAAS,GAAG,SAAS,CAAC,UAAU,CAAC;QACrC,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;QAC7B,IAAI,aAAa,GAAG,QAAQ,CAAC,MAAM,CAAC;;QAEpC,IAAI,aAAa,KAAK,CAAC;QACvB;YACI,OAAO;SACV;aACI,IAAI,aAAa,GAAG,OAAO,IAAI,CAAC,SAAS,CAAC,UAAU;QACzD;YACI,aAAa,GAAG,OAAO,CAAC;SAC3B;;QAED,IAAI,OAAO,GAAG,SAAS,CAAC,QAAQ,CAAC;;QAEjC,IAAI,CAAC,OAAO;QACZ;YACI,OAAO,GAAG,SAAS,CAAC,QAAQ,GAAG,IAAI,CAAC,eAAe,CAAC,SAAS,CAAC,CAAC;SAClE;;QAED,IAAI,WAAW,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,WAAW,CAAC;;;QAGnD,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,YAAY,CAAC,gBAAgB,CAAC,SAAS,CAAC,SAAS,EAAE,WAAW,CAAC,gBAAgB,CAAC,CAAC,CAAC;;QAEtG,IAAI,EAAE,GAAG,QAAQ,CAAC,EAAE,CAAC;;QAErB,IAAI,CAAC,GAAG,SAAS,CAAC,cAAc,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;;QAEzD,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAC,QAAQ,CAAC,gBAAgB,CAAC,CAAC;;QAE7D,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,iBAAiB,GAAG,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;;QAEzD,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,GAAG,eAAe,CAAC,SAAS,CAAC,OAAO;YAC3D,SAAS,CAAC,UAAU,EAAE,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,WAAW,CAAC,gBAAgB,CAAC,CAAC;;QAErF,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,GAAG,WAAW,CAAC;;QAE5C,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;QAEvC,IAAI,YAAY,GAAG,KAAK,CAAC;;;QAGzB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,EAAE,CAAC,IAAI,SAAS,EAAE,CAAC,IAAI,CAAC;QAChE;YACI,IAAI,MAAM,IAAI,aAAa,GAAG,CAAC,CAAC,CAAC;;YAEjC,IAAI,MAAM,GAAG,SAAS;YACtB;gBACI,MAAM,GAAG,SAAS,CAAC;aACtB;;YAED,IAAI,CAAC,IAAI,OAAO,CAAC,MAAM;YACvB;gBACI,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,sBAAsB,CAAC,SAAS,CAAC,CAAC,CAAC;aACxD;;YAED,IAAI,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;;;YAGxB,MAAM,CAAC,aAAa,CAAC,QAAQ,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;;YAE1C,IAAI,GAAG,GAAG,SAAS,CAAC,gBAAgB,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;;YAE7C,YAAY,GAAG,YAAY,KAAK,MAAM,CAAC,SAAS,GAAG,GAAG,CAAC,CAAC;;YAExD,IAAI,YAAY;YAChB;gBACI,MAAM,CAAC,SAAS,GAAG,SAAS,CAAC,SAAS,CAAC;gBACvC,MAAM,CAAC,YAAY,CAAC,QAAQ,EAAE,CAAC,EAAE,MAAM,CAAC,CAAC;aAC5C;;;YAGD,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;YACxC,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,GAAG,CAAC,EAAE,EAAE,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC;SACnE;KACJ,CAAC;;;;;;;;;IASF,gBAAgB,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,SAAS;IAChF;QACI,IAAI,OAAO,GAAG,EAAE,CAAC;QACjB,IAAI,IAAI,GAAG,SAAS,CAAC,QAAQ,CAAC;QAC9B,IAAI,SAAS,GAAG,SAAS,CAAC,UAAU,CAAC;QACrC,IAAI,oBAAoB,GAAG,SAAS,CAAC,WAAW,CAAC;;QAEjD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,IAAI,SAAS;QACxC;YACI,OAAO,CAAC,IAAI,CAAC,IAAI,cAAc,CAAC,IAAI,CAAC,UAAU,EAAE,oBAAoB,EAAE,SAAS,CAAC,CAAC,CAAC;SACtF;;QAED,OAAO,OAAO,CAAC;KAClB,CAAC;;;;;;;;;IASF,gBAAgB,CAAC,SAAS,CAAC,sBAAsB,GAAG,SAAS,sBAAsB,EAAE,SAAS;IAC9F;QACI,IAAI,SAAS,GAAG,SAAS,CAAC,UAAU,CAAC;QACrC,IAAI,oBAAoB,GAAG,SAAS,CAAC,WAAW,CAAC;;QAEjD,OAAO,IAAI,cAAc,CAAC,IAAI,CAAC,UAAU,EAAE,oBAAoB,EAAE,SAAS,CAAC,CAAC;KAC/E,CAAC;;;;;;;;;;;;IAYF,gBAAgB,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;IACxH;QACI,IAAI,EAAE,GAAG,CAAC,CAAC;QACX,IAAI,EAAE,GAAG,CAAC,CAAC;QACX,IAAI,EAAE,GAAG,CAAC,CAAC;QACX,IAAI,EAAE,GAAG,CAAC,CAAC;;QAEX,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,EAAE,CAAC;QAC/B;YACI,IAAI,MAAM,GAAG,QAAQ,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;YACtC,IAAI,OAAO,GAAG,MAAM,CAAC,QAAQ,CAAC;YAC9B,IAAI,EAAE,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;YACxB,IAAI,EAAE,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;YACxB,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;YACxB,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;;YAExB,IAAI,IAAI;YACR;;;gBAGI,EAAE,GAAG,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;gBAC7C,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;;gBAErB,EAAE,GAAG,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;gBAC9C,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC;aACzB;;YAED;gBACI,EAAE,GAAG,CAAC,IAAI,CAAC,KAAK,KAAK,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC1C,EAAE,GAAG,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC;;gBAErC,EAAE,GAAG,IAAI,CAAC,MAAM,IAAI,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;gBACzC,EAAE,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC;aACvC;;YAED,KAAK,CAAC,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;YACxB,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;;YAE5B,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;YACjC,KAAK,CAAC,MAAM,GAAG,MAAM,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;;YAErC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;YACvC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;;YAE3C,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;YACvC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC;;YAE3C,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC;SACxB;KACJ,CAAC;;;;;;;;;;;;IAYF,gBAAgB,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;IACxH;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE;QAC/B;YACI,IAAI,cAAc,GAAG,QAAQ,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC;;YAEvD,KAAK,CAAC,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;YACjC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;;YAErC,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;YAC1C,KAAK,CAAC,MAAM,GAAG,MAAM,GAAG,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;;YAE9C,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;YAChD,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;;YAEpD,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;YAChD,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC;;YAEpD,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC;SACxB;KACJ,CAAC;;;;;;;;;;;;IAYF,gBAAgB,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;IACxH;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE;QAC/B;YACI,IAAI,cAAc,GAAG,QAAQ,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC;;YAEvD,KAAK,CAAC,MAAM,CAAC,GAAG,cAAc,CAAC;YAC/B,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,cAAc,CAAC;YACxC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC;YAC9C,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC;;YAE9C,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC;SACxB;KACJ,CAAC;;;;;;;;;;;;IAYF,gBAAgB,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;IAC9G;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,EAAE,CAAC;QAC/B;YACI,IAAI,UAAU,GAAG,QAAQ,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC;;YAExD,IAAI,UAAU;YACd;gBACI,KAAK,CAAC,MAAM,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;gBAC9B,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;;gBAElC,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;gBACvC,KAAK,CAAC,MAAM,GAAG,MAAM,GAAG,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;;gBAE3C,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;gBAC7C,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;;gBAEjD,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;gBAC7C,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,CAAC;;gBAEjD,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC;aACxB;;YAED;;gBAEI,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;gBAClB,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;;gBAEtB,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;gBAC3B,KAAK,CAAC,MAAM,GAAG,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;;gBAE/B,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;gBACjC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;;gBAErC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;gBACjC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;;gBAErC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC;aACxB;SACJ;KACJ,CAAC;;;;;;;;;;;;IAYF,gBAAgB,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM;IAChH;QACI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,EAAE,CAAC;QAC/B;YACI,IAAI,MAAM,GAAG,QAAQ,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC;YACtC,IAAI,aAAa,GAAG,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC,gBAAgB,CAAC;YACjE,IAAI,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC;;YAEzB,IAAI,IAAI,GAAG,KAAK,GAAG,GAAG,IAAI,aAAa,GAAG,eAAe,CAAC,MAAM,CAAC,QAAQ,EAAE,KAAK,CAAC;kBAC3E,MAAM,CAAC,QAAQ,IAAI,KAAK,GAAG,GAAG,IAAI,EAAE,CAAC,CAAC;;YAE5C,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;YACrB,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,IAAI,CAAC;YAC9B,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;YACpC,KAAK,CAAC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;;YAEpC,MAAM,IAAI,MAAM,GAAG,CAAC,CAAC;SACxB;KACJ,CAAC;;;;;IAKF,gBAAgB,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO;IACrD;QACI,cAAc,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAE5C,IAAI,IAAI,CAAC,MAAM;QACf;YACI,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;YACtB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;SACtB;;QAED,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;KAC1B,CAAC;;IAEF,OAAO,gBAAgB,CAAC;CAC3B,CAAC,cAAc,CAAC,CAAC,CAAC;;AC38BnB;;;;;;;AAOA,AAIA;;;;;;;;;;;;;;;;;;;;;;;;;AAyBA,IAAI,WAAW,GAAG,SAAS,WAAW,CAAC,WAAW,EAAE,IAAI,EAAE,kBAAkB;AAC5E;IACI,KAAK,kBAAkB,KAAK,KAAK,CAAC,GAAG,kBAAkB,GAAG,IAAI,CAAC;;;;;;IAM/D,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;;;;;;;;;;IAU/B,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;;;;;;;;;;IAUnB,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;;;;;;IAMrB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;;;;;IAMjB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,iBAAiB;QACpC,kBAAkB;YACd,IAAI,CAAC,WAAW,CAAC,QAAQ,GAAG,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,GAAG,IAAI,CAAC;KACxE,CAAC;;;;;;;IAOF,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC;;;;;;;IAOhC,IAAI,CAAC,UAAU,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;;;;;;;IAO5C,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;;;;;;;IAOrB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;CACzB,CAAC;;AAEF,IAAIhB,iBAAe,GAAG,EAAE,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;;;AAW7DA,iBAAe,CAAC,UAAU,CAAC,GAAG,GAAG;AACjC;IACI,OAAO,IAAI,CAAC;CACf,CAAC;;AAEF,WAAW,CAAC,SAAS,CAAC,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,kBAAkB;AACxF;IACI,IAAI,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC;;;IAGjC,IAAI,UAAU,GAAG,kBAAkB,CAAC,kBAAkB,EAAE,IAAI,CAAC,CAAC;;;IAG9D,IAAI,UAAU,KAAK,IAAI;IACvB;;QAEI,UAAU,GAAG,KAAK,KAAK,SAAS,GAAG,UAAU,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;KAC5D;;;IAGD,IAAI,UAAU,KAAK,CAAC;IACpB;QACI,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC;KAC9C;;IAED,OAAO,UAAU,CAAC;CACrB,CAAC;;;;;;;;;AASF,WAAW,CAAC,SAAS,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,QAAQ;AACtD;IACI,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;IACrB,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;;IAE1B,IAAI,IAAI,CAAC,UAAU,CAAC,MAAM,IAAI,WAAW,CAAC,UAAU;IACpD;QACI,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC;QACvB,IAAI,CAAC,kBAAkB,EAAE,CAAC;QAC1B,IAAI,CAAC,cAAc,EAAE,CAAC;KACzB;;IAED;QACI,IAAI,CAAC,UAAU,EAAE,CAAC;KACrB;CACJ,CAAC;;;;;;;;AAQF,WAAW,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc,EAAE,iBAAiB;AACjF;IACI,IAAI,UAAU,GAAG,iBAAiB,CAAC;IACnC,IAAI,SAAS,GAAG,WAAW,CAAC,UAAU,CAAC;;IAEvC,OAAO,UAAU,GAAG,iBAAiB,GAAG,SAAS,IAAI,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,MAAM;IACxF;QACI,IAAI,CAAC,GAAG,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;QACpC,IAAI,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;QAC3B,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;;QAEtB,IAAI,IAAI;QACR;YACI,IAAI,KAAK,GAAG,IAAI,CAAC;YACjB,IAAI,IAAI,GAAG,IAAI,CAAC;YAChB,IAAI,UAAU,GAAG,IAAI,CAAC,OAAO,KAAK,KAAK,IAAI,IAAI,CAAC,UAAU;kBACpD,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC;;YAEnC,IAAI,IAAI,GAAG,IAAI,SAAS;gBACpB,CAAC;gBACD,CAAC;gBACD,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;gBAC1C,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;aAC7C,CAAC;;YAEF,IAAI,IAAI,CAAC,OAAO;YAChB;gBACI,KAAK,GAAG,IAAI,SAAS;oBACjB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;iBACvC,CAAC;aACL;;YAED;gBACI,KAAK,GAAG,IAAI,SAAS;oBACjB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;iBACvC,CAAC;aACL;;;YAGD,IAAI,IAAI,CAAC,OAAO,KAAK,KAAK,IAAI,IAAI,CAAC,gBAAgB;YACnD;gBACI,IAAI,GAAG,IAAI,SAAS;oBAChB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACrD,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACrD,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;oBACpC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU;iBACvC,CAAC;aACL;;YAED,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,IAAI,OAAO;gBAC1B,IAAI,CAAC,WAAW;gBAChB,KAAK;gBACL,IAAI;gBACJ,IAAI;gBACJ,IAAI,CAAC,OAAO,GAAG,CAAC,GAAG,CAAC;gBACpB,IAAI,CAAC,MAAM;aACd,CAAC;;;YAGF,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SAC3C;;QAED,UAAU,EAAE,CAAC;KAChB;CACJ,CAAC;;;;;;;AAOF,WAAW,CAAC,SAAS,CAAC,kBAAkB,GAAG,SAAS,kBAAkB;AACtE;IACI,IAAI,UAAU,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,IAAI,EAAE,CAAC;;IAE5C,KAAK,IAAI,QAAQ,IAAI,UAAU;IAC/B;QACI,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC;QAC/B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,QAAQ,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE;QACpD;YACI,IAAI,SAAS,GAAG,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;;YAExC,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC,CAAC;SAC5D;KACJ;CACJ,CAAC;;;;;;;AAOF,WAAW,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;AAC9D;IACI,IAAI,QAAQ,GAAG,IAAI,CAAC,SAAS,CAAC;;IAE9B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;IACrB,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;CACtC,CAAC;;;;;;;AAOF,WAAW,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;AACtD;QACQ,IAAI,MAAM,GAAG,IAAI,CAAC;;IAEtB,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC,UAAU,CAAC,CAAC;IAC/D,IAAI,CAAC,WAAW,EAAE,CAAC;IACnB,UAAU,CAAC,YAAY;QACnB,IAAI,MAAM,CAAC,WAAW,GAAG,WAAW,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC,MAAM;QAC1E;YACI,MAAM,CAAC,UAAU,EAAE,CAAC;SACvB;;QAED;YACI,MAAM,CAAC,kBAAkB,EAAE,CAAC;YAC5B,MAAM,CAAC,cAAc,EAAE,CAAC;SAC3B;KACJ,EAAE,CAAC,CAAC,CAAC;CACT,CAAC;;;;;;;AAOF,WAAW,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,WAAW;AAC7D;QACQ,KAAK,WAAW,KAAK,KAAK,CAAC,GAAG,WAAW,GAAG,KAAK,CAAC;;IAEtD,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC,QAAQ;IAC3B;QACI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;KAC9B;IACD,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACpB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;IACvB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACjB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;IACrB,IAAI,WAAW;IACf;QACI,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC;KAC9B;IACD,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;CAC3B,CAAC;;AAEF,MAAM,CAAC,gBAAgB,EAAE,WAAW,EAAEA,iBAAe,EAAE,CAAC;;;;;;;;;;;;AAYxD,IAAI,iBAAiB,GAAG,SAAS,iBAAiB,IAAI,EAAE,CAAC;;AAEzD,iBAAiB,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,QAAQ,EAAE,IAAI;AACpD;IACI,IAAI,iBAAiB,GAAG,CAAC,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC;;;IAGnD,IAAI,CAAC,QAAQ,CAAC,IAAI;WACX,QAAQ,CAAC,IAAI,KAAK,cAAc,CAAC,IAAI,CAAC,IAAI;WAC1C,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM;WACrB,IAAI,CAAC,SAAS,CAAC,iBAAiB,CAAC;;IAExC;QACI,IAAI,EAAE,CAAC;;QAEP,OAAO;KACV;;IAED,IAAI,WAAW,GAAG;QACd,WAAW,EAAE,QAAQ,CAAC,WAAW;QACjC,QAAQ,EAAE,QAAQ,CAAC,QAAQ,CAAC,aAAa;QACzC,cAAc,EAAE,QAAQ;KAC3B,CAAC;;IAEF,IAAI,YAAY,GAAG,iBAAiB,CAAC,eAAe,CAAC,QAAQ,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;;;IAG7E,IAAI,CAAC,GAAG,CAAC,iBAAiB,EAAE,YAAY,EAAE,WAAW,EAAE,SAAS,WAAW,CAAC,GAAG;IAC/E;QACI,IAAI,GAAG,CAAC,KAAK;QACb;YACI,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;;YAEhB,OAAO;SACV;;QAED,IAAI,WAAW,GAAG,IAAI,WAAW;YAC7B,GAAG,CAAC,OAAO,CAAC,WAAW;YACvB,QAAQ,CAAC,IAAI;YACb,QAAQ,CAAC,GAAG;SACf,CAAC;;QAEF,WAAW,CAAC,KAAK,CAAC,YAAY;YAC1B,QAAQ,CAAC,WAAW,GAAG,WAAW,CAAC;YACnC,QAAQ,CAAC,QAAQ,GAAG,WAAW,CAAC,QAAQ,CAAC;YACzC,IAAI,EAAE,CAAC;SACV,CAAC,CAAC;KACN,CAAC,CAAC;CACN,CAAC;;;;;;;AAOF,iBAAiB,CAAC,eAAe,GAAG,SAAS,eAAe,EAAE,QAAQ,EAAE,OAAO;AAC/E;;IAEI,IAAI,QAAQ,CAAC,SAAS;IACtB;QACI,OAAO,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC;KACnC;;IAED,OAAO,GAAG,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,EAAE,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;CACnF,CAAC;;AC1ZF;;;;;;;AAOA,AAKA;AACA,IAAIiB,WAAS,GAAG,IAAI,KAAK,EAAE,CAAC;AAC5B,AAgWA;AACA,IAAIF,QAAM,GAAG,qYAAqY,CAAC;;AAEnZ,IAAIC,UAAQ,GAAG,kdAAkd,CAAC;;AAEle,IAAI,cAAc,GAAG,yMAAyM,CAAC;;AAE/N,IAAIE,SAAO,GAAG,IAAI,MAAM,EAAE,CAAC;;;;;;;;;AAS3B,IAAI,oBAAoB,iBAAiB,UAAU,cAAc,EAAE;IAC/D,SAAS,oBAAoB,CAAC,QAAQ;IACtC;QACI,cAAc,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;;QAEpC,IAAI,QAAQ,GAAG,EAAE,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,cAAc,EAAE,CAAC;;QAEzD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,IAAI,CAACH,QAAM,EAAEC,UAAQ,EAAE,QAAQ,CAAC,CAAC;;QAEtD,IAAI,CAAC,YAAY,GAAG,MAAM,CAAC,IAAI,CAACD,QAAM,EAAE,cAAc,EAAE,QAAQ,CAAC,CAAC;;QAElE,IAAI,CAAC,IAAI,GAAG,IAAI,MAAM,EAAE,CAAC;KAC5B;;IAED,KAAK,cAAc,GAAG,oBAAoB,CAAC,SAAS,GAAG,cAAc,CAAC;IACtE,oBAAoB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,cAAc,IAAI,cAAc,CAAC,SAAS,EAAE,CAAC;IAC7F,oBAAoB,CAAC,SAAS,CAAC,WAAW,GAAG,oBAAoB,CAAC;;;;;;IAMlE,oBAAoB,CAAC,SAAS,CAAC,MAAM,GAAG,SAAS,MAAM,EAAE,EAAE;IAC3D;QACI,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;QAC7B,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;QAErB,IAAI,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;;QAE7B,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,MAAM,IAAI,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;QACvD,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,OAAO,GAAG,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;;QAEtD,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,MAAM,KAAK,GAAG,GAAG,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;QAC9D,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,OAAO,IAAI,GAAG,GAAG,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;;QAE7D,IAAI,EAAE,CAAC,eAAe;QACtB;YACI,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC;;YAEpB,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;YACzC,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;;YAEzC,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;YAC9C,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;SACjD;;QAED,IAAI,CAAC,UAAU,EAAE,CAAC;;QAElB,IAAI,GAAG,GAAG,EAAE,CAAC,QAAQ,CAAC;QACtB,IAAI,OAAO,GAAG,GAAG,CAAC,WAAW,CAAC;QAC9B,IAAI,EAAE,GAAG,EAAE,CAAC,aAAa,CAAC,cAAc,CAAC;QACzC,IAAI,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC;QACrB,IAAI,QAAQ,GAAG,OAAO,CAAC,YAAY;eAC5B,GAAG,CAAC,KAAK,CAAC,KAAK,KAAK,OAAO,CAAC,KAAK,IAAI,GAAG,CAAC,KAAK,CAAC,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC;;;QAGhF,IAAI,QAAQ;QACZ;YACI,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,QAAQ,CAAC,WAAW,CAAC;YAC9C;gBACI,IAAI,OAAO,CAAC,QAAQ,KAAK,UAAU,CAAC,KAAK;gBACzC;oBACI,OAAO,CAAC,QAAQ,GAAG,UAAU,CAAC,MAAM,CAAC;iBACxC;aACJ;;YAED;gBACI,QAAQ,GAAG,OAAO,CAAC,QAAQ,KAAK,UAAU,CAAC,KAAK,CAAC;aACpD;SACJ;;QAED,IAAI,MAAM,GAAG,QAAQ,GAAG,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,MAAM,CAAC;;QAExD,IAAI,CAAC,GAAG,GAAG,CAAC,KAAK,CAAC;QAClB,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC;QACnB,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;QAClB,IAAI,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC;;QAEnBG,SAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;YACpB,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;YACZ,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;YACZ,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;YACZ,EAAE,CAAC,EAAE,GAAG,CAAC;YACT,EAAE,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC;;;;;;;;QAQfA,SAAO,CAAC,MAAM,EAAE,CAAC;QACjB,IAAI,QAAQ;QACZ;YACIA,SAAO,CAAC,OAAO,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC;SAChC;;QAED;YACI,MAAM,CAAC,QAAQ,CAAC,SAAS,GAAG,EAAE,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;YACtD,MAAM,CAAC,QAAQ,CAAC,WAAW,GAAG,EAAE,CAAC,WAAW,CAAC;YAC7C,MAAM,CAAC,QAAQ,CAAC,YAAY,GAAG,EAAE,CAAC,YAAY,CAAC;SAClD;;QAED,MAAM,CAAC,QAAQ,CAAC,UAAU,GAAGA,SAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QACnD,MAAM,CAAC,QAAQ,CAAC,MAAM,GAAG,qBAAqB,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,UAAU;YACjE,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC,gBAAgB,CAAC,CAAC;QACtD,MAAM,CAAC,QAAQ,CAAC,iBAAiB,GAAG,EAAE,CAAC,SAAS,CAAC,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAC9E,MAAM,CAAC,QAAQ,CAAC,QAAQ,GAAG,GAAG,CAAC;;QAE/B,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC7B,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;QAE7B,QAAQ,CAAC,KAAK,CAAC,YAAY,CAAC,gBAAgB,CAAC,EAAE,CAAC,SAAS,EAAE,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;QACtF,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,SAAS,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;KAC5D,CAAC;;IAEF,OAAO,oBAAoB,CAAC;CAC/B,CAAC,cAAc,CAAC,CAAC,CAAC;;ACnfnB;;;;;;;AAOA,AAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2BA,IAAI,UAAU,iBAAiB,UAAU,SAAS,EAAE;IAChD,SAAS,UAAU,CAAC,IAAI,EAAE,KAAK;IAC/B;QACI,IAAI,MAAM,GAAG,IAAI,CAAC;QAClB,KAAK,KAAK,KAAK,KAAK,CAAC,GAAG,KAAK,GAAG,EAAE,CAAC;;QAEnC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;;;;;;;;QAQrB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;;;;;;;;QAQpB,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC;;;;;;;;QAQrB,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;;;;;;;;QAQlB,IAAI,CAAC,KAAK,GAAG;YACT,IAAI,EAAE,KAAK,CAAC,IAAI,KAAK,SAAS,GAAG,KAAK,CAAC,IAAI,GAAG,QAAQ;YACtD,KAAK,EAAE,KAAK,CAAC,KAAK,IAAI,MAAM;YAC5B,IAAI,EAAE,IAAI;YACV,IAAI,EAAE,CAAC;SACV,CAAC;;;;;;;;QAQF,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC;;;;;;;;QAQvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;;;;;;;;;;QAUlB,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;;;;;;;;;QASnB,IAAI,CAAC,cAAc,GAAG,CAAC,CAAC;;;;;;;QAOxB,IAAI,CAAC,cAAc,GAAG,CAAC,CAAC;;;;;;;;QAQxB,IAAI,CAAC,OAAO,GAAG,IAAI,eAAe,CAAC,YAAY,EAAE,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;;;;;;;QAOrF,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;;;;;;;;;;QAWnB,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC,YAAY,CAAC;;QAEzC,IAAI,CAAC,UAAU,EAAE,CAAC;KACrB;;IAED,KAAK,SAAS,GAAG,UAAU,CAAC,SAAS,GAAG,SAAS,CAAC;IAClD,UAAU,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,SAAS,IAAI,SAAS,CAAC,SAAS,EAAE,CAAC;IACzE,UAAU,CAAC,SAAS,CAAC,WAAW,GAAG,UAAU,CAAC;;IAE9C,IAAI,kBAAkB,GAAG,EAAE,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,aAAa,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,aAAa,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,UAAU,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;IAOnW,UAAU,CAAC,SAAS,CAAC,UAAU,GAAG,SAAS,UAAU;IACrD;QACI,IAAI,IAAI,GAAG,UAAU,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAC7C,IAAI,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACxC,IAAI,GAAG,GAAG,IAAI,KAAK,EAAE,CAAC;QACtB,IAAI,KAAK,GAAG,EAAE,CAAC;QACf,IAAI,UAAU,GAAG,EAAE,CAAC;QACpB,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,cAAc,EAAE,IAAI,CAAC,IAAI,GAAG,CAAC;QAC3D,IAAI,UAAU,GAAG,IAAI,CAAC,MAAM,CAAC;QAC7B,IAAI,QAAQ,GAAG,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;;QAE5D,IAAI,YAAY,GAAG,IAAI,CAAC;QACxB,IAAI,aAAa,GAAG,CAAC,CAAC;QACtB,IAAI,YAAY,GAAG,CAAC,CAAC;QACrB,IAAI,IAAI,GAAG,CAAC,CAAC;QACb,IAAI,YAAY,GAAG,CAAC,CAAC,CAAC;QACtB,IAAI,cAAc,GAAG,CAAC,CAAC;QACvB,IAAI,aAAa,GAAG,CAAC,CAAC;QACtB,IAAI,aAAa,GAAG,CAAC,CAAC;;QAEtB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,EAAE,CAAC,EAAE;QACnC;YACI,IAAI,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;YAClC,IAAI,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;;YAE1B,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,IAAI,CAAC;YACzB;gBACI,YAAY,GAAG,CAAC,CAAC;gBACjB,cAAc,GAAG,aAAa,CAAC;aAClC;;YAED,IAAI,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,IAAI;YAClC;gBACI,UAAU,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;gBAC/B,YAAY,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,aAAa,CAAC,CAAC;gBACrD,EAAE,IAAI,CAAC;gBACP,EAAE,aAAa,CAAC;;gBAEhB,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;gBACV,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,UAAU,CAAC;gBACzB,YAAY,GAAG,IAAI,CAAC;gBACpB,SAAS;aACZ;;YAED,IAAI,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;;YAEpC,IAAI,CAAC,QAAQ;YACb;gBACI,SAAS;aACZ;;YAED,IAAI,YAAY,IAAI,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC;YAClD;gBACI,GAAG,CAAC,CAAC,IAAI,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;aAC3C;;YAED,KAAK,CAAC,IAAI,CAAC;gBACP,OAAO,EAAE,QAAQ,CAAC,OAAO;gBACzB,IAAI,EAAE,IAAI;gBACV,QAAQ,EAAE,QAAQ;gBAClB,QAAQ,EAAE,IAAI,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,QAAQ,CAAC,OAAO,IAAI,IAAI,CAAC,cAAc,GAAG,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC;aACtG,CAAC,CAAC;YACH,GAAG,CAAC,CAAC,IAAI,QAAQ,CAAC,QAAQ,GAAG,IAAI,CAAC,cAAc,CAAC;YACjD,aAAa,GAAG,GAAG,CAAC,CAAC,CAAC;YACtB,aAAa,GAAG,IAAI,CAAC,GAAG,CAAC,aAAa,GAAG,QAAQ,CAAC,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC;YACtF,YAAY,GAAG,QAAQ,CAAC;;YAExB,IAAI,YAAY,KAAK,CAAC,CAAC,IAAI,QAAQ,GAAG,CAAC,IAAI,GAAG,CAAC,CAAC,GAAG,QAAQ;YAC3D;gBACI,EAAE,aAAa,CAAC;gBAChB,WAAW,CAAC,KAAK,EAAE,CAAC,GAAG,YAAY,GAAG,aAAa,EAAE,CAAC,GAAG,CAAC,GAAG,YAAY,CAAC,CAAC;gBAC3E,CAAC,GAAG,YAAY,CAAC;gBACjB,YAAY,GAAG,CAAC,CAAC,CAAC;;gBAElB,UAAU,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;gBAChC,YAAY,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,cAAc,CAAC,CAAC;gBACtD,IAAI,EAAE,CAAC;;gBAEP,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;gBACV,GAAG,CAAC,CAAC,IAAI,IAAI,CAAC,UAAU,CAAC;gBACzB,YAAY,GAAG,IAAI,CAAC;aACvB;SACJ;;QAED,IAAI,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;;QAE5C,IAAI,QAAQ,KAAK,IAAI,IAAI,QAAQ,KAAK,IAAI;QAC1C;YACI,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC;YAC7B;gBACI,aAAa,GAAG,cAAc,CAAC;aAClC;;YAED,UAAU,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;YAC/B,YAAY,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,aAAa,CAAC,CAAC;SACxD;;QAED,IAAI,gBAAgB,GAAG,EAAE,CAAC;;QAE1B,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,IAAI,IAAI,EAAE,GAAG,EAAE;QACpC;YACI,IAAI,WAAW,GAAG,CAAC,CAAC;;YAEpB,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,KAAK,OAAO;YAChC;gBACI,WAAW,GAAG,YAAY,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;aAChD;iBACI,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,KAAK,QAAQ;YACtC;gBACI,WAAW,GAAG,CAAC,YAAY,GAAG,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;aACtD;;YAED,gBAAgB,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;SACtC;;QAED,IAAI,QAAQ,GAAG,KAAK,CAAC,MAAM,CAAC;QAC5B,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;;QAErB,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,EAAE,GAAG,EAAE;QACvC;YACI,IAAI,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;;YAE1B,IAAI,CAAC;YACL;gBACI,CAAC,CAAC,OAAO,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC;aAClC;;YAED;gBACI,CAAC,GAAG,IAAI,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC;gBACnC,CAAC,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;gBACjC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;aACxB;;YAED,CAAC,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,GAAG,gBAAgB,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,KAAK,CAAC;YACnF,CAAC,CAAC,QAAQ,CAAC,CAAC,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,GAAG,KAAK,CAAC;YAC7C,CAAC,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC;YAC9B,CAAC,CAAC,IAAI,GAAG,IAAI,CAAC;;YAEd,IAAI,CAAC,CAAC,CAAC,MAAM;YACb;gBACI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;aACpB;SACJ;;;QAGD,KAAK,IAAI,GAAG,GAAG,QAAQ,EAAE,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,GAAG;QACzD;YACI,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC;SACvC;;QAED,IAAI,CAAC,UAAU,GAAG,YAAY,GAAG,KAAK,CAAC;QACvC,IAAI,CAAC,WAAW,GAAG,CAAC,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,UAAU,IAAI,KAAK,CAAC;;;QAGrD,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC;QAC9C;YACI,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,EAAE,GAAG,EAAE;YACvC;gBACI,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;gBACvD,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;aAC3D;SACJ;QACD,IAAI,CAAC,cAAc,GAAG,aAAa,GAAG,KAAK,CAAC;KAC/C,CAAC;;;;;;;IAOF,UAAU,CAAC,SAAS,CAAC,eAAe,GAAG,SAAS,eAAe;IAC/D;QACI,IAAI,CAAC,QAAQ,EAAE,CAAC;QAChB,IAAI,CAAC,wBAAwB,EAAE,CAAC;KACnC,CAAC;;;;;;;IAOF,UAAU,CAAC,SAAS,CAAC,cAAc,GAAG,SAAS,cAAc;IAC7D;QACI,IAAI,CAAC,QAAQ,EAAE,CAAC;;QAEhB,OAAO,SAAS,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KACxD,CAAC;;;;;;;IAOF,UAAU,CAAC,SAAS,CAAC,QAAQ,GAAG,SAAS,QAAQ;IACjD;QACI,IAAI,IAAI,CAAC,KAAK;QACd;YACI,IAAI,CAAC,UAAU,EAAE,CAAC;YAClB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;SACtB;KACJ,CAAC;;;;;;;IAOF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;KAC1B,CAAC;;IAEF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,KAAK;IAC7C;QACI,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,CAAC,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,IAAI,CAAC,IAAI,KAAK,GAAG,QAAQ,CAAC;;QAE/E,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;;IAQF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG;IAC/B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC;KAC3B,CAAC;;IAEF,kBAAkB,CAAC,KAAK,CAAC,GAAG,GAAG,UAAU,KAAK;IAC9C;QACI,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,KAAK,IAAI,MAAM,CAAC;;QAEnC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;;;;;;;IAaF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG;IAChC;QACI,OAAO,IAAI,CAAC,OAAO,CAAC;KACvB,CAAC;;IAEF,kBAAkB,CAAC,MAAM,CAAC,GAAG,GAAG,UAAU,KAAK;IAC/C;QACI,IAAI,OAAO,KAAK,KAAK,QAAQ;QAC7B;YACI,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;SAC3B;;QAED;YACI,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;SAChC;KACJ,CAAC;;;;;;;IAOF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;IAEF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,KAAK;IAC7C;QACI,IAAI,CAAC,KAAK;QACV;YACI,OAAO;SACV;;QAED,IAAI,OAAO,KAAK,KAAK,QAAQ;QAC7B;YACI,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;;YAEzB,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,MAAM,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YAC3E,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,MAAM,IAAI,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,UAAU,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC;SACzG;;QAED;YACI,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC;YAC7B,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ,GAAG,KAAK,CAAC,IAAI,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;SAC5F;;QAED,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;IAOF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG;IAC9B;QACI,OAAO,IAAI,CAAC,KAAK,CAAC;KACrB,CAAC;;IAEF,kBAAkB,CAAC,IAAI,CAAC,GAAG,GAAG,UAAU,IAAI;IAC5C;QACI,IAAI,GAAG,MAAM,CAAC,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,SAAS,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC;;QAE/D,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI;QACvB;YACI,OAAO;SACV;QACD,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;QAClB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG;IAClC;QACI,OAAO,IAAI,CAAC,SAAS,CAAC;KACzB,CAAC;;IAEF,kBAAkB,CAAC,QAAQ,CAAC,GAAG,GAAG,UAAU,KAAK;IACjD;QACI,IAAI,IAAI,CAAC,SAAS,KAAK,KAAK;QAC5B;YACI,OAAO;SACV;QACD,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QACvB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;KACrB,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,aAAa,CAAC,GAAG,GAAG;IACvC;QACI,IAAI,CAAC,QAAQ,EAAE,CAAC;;QAEhB,OAAO,IAAI,CAAC,cAAc,CAAC;KAC9B,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,SAAS,CAAC,GAAG,GAAG;IACnC;QACI,IAAI,CAAC,QAAQ,EAAE,CAAC;;QAEhB,OAAO,IAAI,CAAC,UAAU,CAAC;KAC1B,CAAC;;;;;;;IAOF,kBAAkB,CAAC,aAAa,CAAC,GAAG,GAAG;IACvC;QACI,OAAO,IAAI,CAAC,cAAc,CAAC;KAC9B,CAAC;;IAEF,kBAAkB,CAAC,aAAa,CAAC,GAAG,GAAG,UAAU,KAAK;IACtD;QACI,IAAI,IAAI,CAAC,cAAc,KAAK,KAAK;QACjC;YACI,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;YAC5B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;SACrB;KACJ,CAAC;;;;;;;;;IASF,kBAAkB,CAAC,UAAU,CAAC,GAAG,GAAG;IACpC;QACI,IAAI,CAAC,QAAQ,EAAE,CAAC;;QAEhB,OAAO,IAAI,CAAC,WAAW,CAAC;KAC3B,CAAC;;;;;;;;;;;IAWF,UAAU,CAAC,YAAY,GAAG,SAAS,YAAY,EAAE,GAAG,EAAE,QAAQ;IAC9D;QACI,IAAI,IAAI,GAAG,EAAE,CAAC;QACd,IAAI,IAAI,GAAG,GAAG,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;QAC/C,IAAI,MAAM,GAAG,GAAG,CAAC,oBAAoB,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;QACnD,IAAI,KAAK,GAAG,GAAG,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC;QAC7C,IAAI,GAAG,GAAG,kBAAkB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,EAAE,QAAQ,CAAC,UAAU,CAAC,CAAC;QACjF,IAAI,aAAa,GAAG,EAAE,CAAC;;QAEvB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;QACtC,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC,CAAC;QACpD,IAAI,CAAC,UAAU,GAAG,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,YAAY,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG,CAAC;QACxE,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;;;QAGhB,IAAI,QAAQ,YAAY,OAAO;QAC/B;YACI,QAAQ,GAAG,CAAC,QAAQ,CAAC,CAAC;SACzB;;;;QAID,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE;QACrC;YACI,IAAI,EAAE,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;;YAEzC,aAAa,CAAC,EAAE,CAAC,GAAG,QAAQ,YAAY,KAAK,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC;SAChF;;;QAGD,IAAI,OAAO,GAAG,GAAG,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC;;QAE/C,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,EAAE,GAAG,EAAE;QAC7C;YACI,IAAI,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC;YAC1B,IAAI,QAAQ,GAAG,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC;YACvD,IAAI,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;YAC5C,IAAI,WAAW,GAAG,IAAI,SAAS;gBAC3B,CAAC,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG,KAAK,aAAa,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,GAAG,GAAG,CAAC;gBACpF,CAAC,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG,KAAK,aAAa,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,GAAG,GAAG,CAAC;gBACpF,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,OAAO,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG;gBAChD,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG;aACpD,CAAC;;YAEF,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG;gBACnB,OAAO,EAAE,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG;gBAC3D,OAAO,EAAE,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG;gBAC3D,QAAQ,EAAE,QAAQ,CAAC,MAAM,CAAC,YAAY,CAAC,UAAU,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG;gBAC7D,OAAO,EAAE,EAAE;gBACX,OAAO,EAAE,IAAI,OAAO,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,WAAW,CAAC;gBAClE,IAAI,EAAE,IAAI;aACb,CAAC;SACL;;;QAGD,IAAI,QAAQ,GAAG,GAAG,CAAC,oBAAoB,CAAC,SAAS,CAAC,CAAC;;QAEnD,KAAK,IAAI,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAC,MAAM,EAAE,GAAG,EAAE;QAC9C;YACI,IAAI,OAAO,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC;YAC5B,IAAI,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG,CAAC;YAC9D,IAAI,MAAM,GAAG,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG,CAAC;YAChE,IAAI,MAAM,GAAG,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG,CAAC;;YAEhE,IAAI,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC;YACtB;gBACI,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,MAAM,CAAC;aAC9C;SACJ;;;;QAID,UAAU,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;;QAEnC,OAAO,IAAI,CAAC;KACf,CAAC;;IAEF,MAAM,CAAC,gBAAgB,EAAE,UAAU,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAC;;IAEpE,OAAO,UAAU,CAAC;CACrB,CAAC,SAAS,CAAC,CAAC,CAAC;;AAEd,UAAU,CAAC,KAAK,GAAG,EAAE,CAAC;;;;;;;;;AAStB,IAAI,gBAAgB,GAAG,SAAS,gBAAgB,IAAI,EAAE,CAAC;;AAEvD,gBAAgB,CAAC,KAAK,GAAG,SAAS,KAAK,EAAE,QAAQ,EAAE,OAAO;AAC1D;IACI,QAAQ,CAAC,UAAU,GAAG,UAAU,CAAC,YAAY,CAAC,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;CACzE,CAAC;;;;;;;AAOF,gBAAgB,CAAC,GAAG,GAAG,SAAS,GAAG;AACnC;IACI,cAAc,CAAC,mBAAmB,CAAC,KAAK,EAAE,cAAc,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAC;CACxF,CAAC;;;;;;;AAOF,gBAAgB,CAAC,OAAO,GAAG,SAAS,OAAO,EAAE,GAAG;AAChD;IACI,IAAI,GAAG,GAAG,GAAG;SACR,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC;SAClB,OAAO,CAAC,WAAW,EAAE,EAAE,CAAC,CAAC;;;IAG9B,IAAI,GAAG,KAAK,GAAG;IACf;QACI,OAAO,GAAG,CAAC;KACd;;SAEI,IAAI,GAAG,KAAK,EAAE;IACnB;QACI,OAAO,GAAG,CAAC;KACd;;IAED,OAAO,GAAG,CAAC;CACd,CAAC;;;;;;;;AAQF,gBAAgB,CAAC,GAAG,GAAG,SAAS,GAAG,EAAE,QAAQ,EAAE,IAAI;AACnD;;IAEI,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC,IAAI,KAAK,cAAc,CAAC,IAAI,CAAC,GAAG;IAC/D;QACI,IAAI,EAAE,CAAC;;QAEP,OAAO;KACV;;;IAGD,IAAI,QAAQ,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC,MAAM,KAAK,CAAC;WACpD,QAAQ,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC,MAAM,KAAK,CAAC;WACvD,QAAQ,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,KAAK,IAAI;;IAElF;QACI,IAAI,EAAE,CAAC;;QAEP,OAAO;KACV;;IAED,IAAI,MAAM,GAAG,CAAC,QAAQ,CAAC,SAAS,GAAG,gBAAgB,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC;;IAE/E,IAAI,QAAQ,CAAC,SAAS;IACtB;QACI,IAAI,MAAM,KAAK,GAAG;QAClB;YACI,MAAM,GAAG,EAAE,CAAC;SACf;;QAED,IAAI,IAAI,CAAC,OAAO,IAAI,MAAM;QAC1B;;YAEI,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,GAAG;YACxD;gBACI,MAAM,IAAI,GAAG,CAAC;aACjB;SACJ;KACJ;;;IAGD,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;;;IAG1C,IAAI,MAAM,IAAI,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,GAAG;IACtD;QACI,MAAM,IAAI,GAAG,CAAC;KACjB;;IAED,IAAI,KAAK,GAAG,QAAQ,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC;IACvD,IAAI,QAAQ,GAAG,EAAE,CAAC;;;;IAIlB,IAAI,SAAS,GAAG,UAAU,IAAI,EAAE;QAC5B,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC;;QAEhD,IAAI,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,MAAM,KAAK,KAAK,CAAC,MAAM;QACjD;YACI,gBAAgB,CAAC,KAAK,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;YAC3C,IAAI,EAAE,CAAC;SACV;KACJ,CAAC;;IAEF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,EAAE,CAAC;IACrC;QACI,IAAI,QAAQ,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;QAC7C,IAAI,GAAG,GAAG,MAAM,GAAG,QAAQ,CAAC;QAC5B,IAAI,MAAM,GAAG,KAAK,CAAC;;;;QAInB,KAAK,IAAI,IAAI,IAAI,IAAI,CAAC,SAAS;QAC/B;YACI,IAAI,cAAc,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;;YAE1C,IAAI,cAAc,CAAC,GAAG,KAAK,GAAG;YAC9B;gBACI,cAAc,CAAC,QAAQ,CAAC,QAAQ,GAAG,QAAQ,CAAC;gBAC5C,IAAI,cAAc,CAAC,OAAO;gBAC1B;oBACI,SAAS,CAAC,cAAc,CAAC,CAAC;iBAC7B;;gBAED;oBACI,cAAc,CAAC,iBAAiB,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;iBACnD;gBACD,MAAM,GAAG,IAAI,CAAC;gBACd,MAAM;aACT;SACJ;;;;QAID,IAAI,CAAC,MAAM;QACX;;YAEI,IAAI,OAAO,GAAG;gBACV,WAAW,EAAE,QAAQ,CAAC,WAAW;gBACjC,QAAQ,EAAE,cAAc,CAAC,SAAS,CAAC,KAAK;gBACxC,QAAQ,EAAE,MAAM,CAAC,MAAM;oBACnB,EAAE,QAAQ,EAAE,QAAQ,EAAE;oBACtB,QAAQ,CAAC,QAAQ,CAAC,aAAa;iBAClC;gBACD,cAAc,EAAE,QAAQ;aAC3B,CAAC;;YAEF,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,OAAO,EAAE,SAAS,CAAC,CAAC;SACrC;KACJ;CACJ,CAAC;;AC9zBF;;;;;;;AAOA,AACA;AACA,IAAIF,UAAQ,GAAG,msCAAmsC,CAAC;;;;;;;;;;;;;;;;;AAiBntC,IAAI,iBAAiB,iBAAiB,UAAU,MAAM,EAAE;IACpD,SAAS,iBAAiB;IAC1B;QACI,IAAI,QAAQ,GAAG;YACX,CAAC,EAAE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;gBAC9B,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;gBACb,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;gBACb,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;YACnB,MAAM,EAAE,CAAC;SACZ,CAAC;;QAEF,MAAM,CAAC,IAAI,CAAC,IAAI,EAAEG,aAAmB,EAAEH,UAAQ,EAAE,QAAQ,CAAC,CAAC;;QAE3D,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;KAClB;;IAED,KAAK,MAAM,GAAG,iBAAiB,CAAC,SAAS,GAAG,MAAM,CAAC;IACnD,iBAAiB,CAAC,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,IAAI,MAAM,CAAC,SAAS,EAAE,CAAC;IAC1E,iBAAiB,CAAC,SAAS,CAAC,WAAW,GAAG,iBAAiB,CAAC;;IAE5D,IAAI,kBAAkB,GAAG,EAAE,MAAM,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,EAAE,CAAC;;;;;;;;;IAS1F,iBAAiB,CAAC,SAAS,CAAC,WAAW,GAAG,SAAS,WAAW,EAAE,MAAM,EAAE,QAAQ;IAChF;QACI,KAAK,QAAQ,KAAK,KAAK,CAAC,GAAG,QAAQ,GAAG,KAAK,CAAC;;QAE5C,IAAI,SAAS,GAAG,MAAM,CAAC;;QAEvB,IAAI,QAAQ;QACZ;YACI,IAAI,CAAC,SAAS,CAAC,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;YACnD,SAAS,GAAG,IAAI,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;SAC5C;;;QAGD,IAAI,CAAC,QAAQ,CAAC,CAAC,GAAG,SAAS,CAAC;KAC/B,CAAC;;;;;;;;;;;IAWF,iBAAiB,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,SAAS,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;IACrE;;QAEI,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGhF,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGhF,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;;;QAGtF,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAA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"} \ No newline at end of file diff --git a/imgui_impl.ts b/imgui_impl.ts new file mode 100644 index 0000000..a5dad20 --- /dev/null +++ b/imgui_impl.ts @@ -0,0 +1,797 @@ +import * as ImGui from "imgui-js"; +import { ImVec2 } from "imgui-js"; +import * as PIXI from "pixi.js"; +import * as U from "./utils"; + +let clipboard_text: string = ""; + +const contexts: ImGui.ImGuiContext[] = []; +const contextIOs: ImGui.ImGuiIO[] = []; +let isFirstWindow: boolean = true; + +class ImGuiImplInternalRenderer extends PIXI.ObjectRenderer +{ + constructor(r: PIXI.Renderer) + { + super(r); + } + render(owner: PIXI.DisplayObject): void + { + if (!(owner instanceof ImGuiWindowLayer)) return; + + const window: ImGuiWindow = (owner as ImGuiWindowLayer).window; + + const io: ImGui.ImGuiIO = window.io; + const draw_data: ImGui.ImDrawData = ImGui.GetDrawData(); + if (draw_data === null) { throw new Error(); } + + gl || console.log(draw_data); + + // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) + const fb_width: number = io.DisplaySize.x * io.DisplayFramebufferScale.x; + const fb_height: number = io.DisplaySize.y * io.DisplayFramebufferScale.y; + if (fb_width === 0 || fb_height === 0) { + return; + } + draw_data.ScaleClipRects(io.DisplayFramebufferScale); + + // Backup GL state + const last_program: WebGLProgram | null = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null; + const last_active_texture: GLenum | null = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null; + gl && gl.activeTexture(gl.TEXTURE0); + const last_texture0: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null; + const last_vertex_array: WebGLVertexArrayObject | null = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null; + const last_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null; + const last_element_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null; + // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode); + const last_viewport: Int32Array | null = gl && gl.getParameter(gl.VIEWPORT) || null; + const last_scissor_box: Int32Array | null = gl && gl.getParameter(gl.SCISSOR_BOX) || null; + const last_blend_src_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null; + const last_blend_dst_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_RGB) || null; + const last_blend_src_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null; + const last_blend_dst_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null; + const last_blend_equation_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null; + const last_blend_equation_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null; + const last_enable_blend: GLboolean | null = gl && gl.getParameter(gl.BLEND) || null; + const last_enable_cull_face: GLboolean | null = gl && gl.getParameter(gl.CULL_FACE) || null; + const last_enable_depth_test: GLboolean | null = gl && gl.getParameter(gl.DEPTH_TEST) || null; + const last_enable_scissor_test: GLboolean | null = gl && gl.getParameter(gl.SCISSOR_TEST) || null; + + gl.clearColor(0, 0, 0, 0); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + + gl && gl.bindVertexArray(g_VaoHandle); + + // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill + gl && gl.enable(gl.BLEND); + gl && gl.blendEquation(gl.FUNC_ADD); + gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE); + gl && gl.disable(gl.CULL_FACE); + gl && gl.disable(gl.DEPTH_TEST); + gl && gl.enable(gl.SCISSOR_TEST); + // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + + // Setup viewport, orthographic projection matrix + // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps. + gl && gl.viewport(0, 0, fb_width, fb_height); + const L: number = draw_data.DisplayPos.x; + const R: number = draw_data.DisplayPos.x + draw_data.DisplaySize.x; + const T: number = draw_data.DisplayPos.y; + const B: number = draw_data.DisplayPos.y + draw_data.DisplaySize.y; + // we actually flip the bottom and top here to match with PIXI's texture usage + const ortho_projection: Float32Array = new Float32Array([ + 2.0 / (R - L), 0.0, 0.0, 0.0, + 0.0, 2.0 / (B - T), 0.0, 0.0, + 0.0, 0.0, -1.0, 0.0, + (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0, + ]); + gl && gl.useProgram(g_ShaderHandle); + gl && gl.uniform1i(g_AttribLocationTex, 0); + gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection); + + // Render command lists + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.enableVertexAttribArray(g_AttribLocationPosition); + gl && gl.enableVertexAttribArray(g_AttribLocationUV); + gl && gl.enableVertexAttribArray(g_AttribLocationColor); + + gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertPosOffset); + gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertUVOffset); + gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImGui.ImDrawVertSize, ImGui.ImDrawVertColOffset); + + // Draw + const pos = draw_data.DisplayPos; + const idx_buffer_type: GLenum = gl && ((ImGui.ImDrawIdxSize === 4) ? gl.UNSIGNED_INT : gl.UNSIGNED_SHORT) || 0; + draw_data.IterateDrawLists((draw_list: ImGui.ImDrawList): void => { + gl || console.log(draw_list); + gl || console.log("VtxBuffer.length", draw_list.VtxBuffer.length); + gl || console.log("IdxBuffer.length", draw_list.IdxBuffer.length); + + let idx_buffer_offset: number = 0; + + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW); + gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle); + gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW); + + draw_list.IterateDrawCmds((draw_cmd: ImGui.ImDrawCmd): void => { + gl || console.log(draw_cmd); + gl || console.log("ElemCount", draw_cmd.ElemCount); + gl || console.log("ClipRect", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y); + gl || console.log("TextureId", draw_cmd.TextureId); + if (!gl) { + console.log("i: pos.x pos.y uv.x uv.y col"); + for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) { + const view: ImGui.ImDrawVert = new ImGui.ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImGui.ImDrawVertSize); + console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${("00000000" + view.col[0].toString(16)).substr(-8)}`); + } + } + + if (draw_cmd.UserCallback !== null) { + // User callback (registered via ImDrawList::AddCallback) + draw_cmd.UserCallback(draw_list, draw_cmd); + } else { + const clip_rect = new ImGui.ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y); + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) { + // Apply scissor/clipping rectangle + gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y); + + // Bind texture, Draw + gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId); + gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset); + } + } + + idx_buffer_offset += draw_cmd.ElemCount * ImGui.ImDrawIdxSize; + }); + }); + + // Restore modified GL state + + gl && (last_program !== null) && gl.useProgram(last_program); + gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0); + gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture); + gl && gl.disableVertexAttribArray(g_AttribLocationPosition); + gl && gl.disableVertexAttribArray(g_AttribLocationUV); + gl && gl.disableVertexAttribArray(g_AttribLocationColor); + gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array); + gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer); + gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer); + gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]); + gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]); + gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha); + gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); + gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND)); + gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE)); + gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST)); + gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST)); + // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]); + } +} + +let gl: WebGL2RenderingContext = null; +let app: PIXI.Application = null; + +class ImGuiWindowLayer extends PIXI.Sprite +{ + public readonly window: ImGuiWindow; + constructor(window: ImGuiWindow, tex:PIXI.RenderTexture) + { + super(); + this.pluginName = "imgui_renderer"; + this.window = window; + } +} + +export class ImGuiWindow extends PIXI.Container +{ + public readonly ctx: ImGui.ImGuiContext; + public readonly io: ImGui.ImGuiIO; + private sizeX: number; + private sizeY: number; + public getSizeX(): number { return this.sizeX; } + public getSizeY(): number { return this.sizeY; } + + private baseTex: PIXI.BaseRenderTexture = new PIXI.BaseRenderTexture({scaleMode: PIXI.SCALE_MODES.LINEAR, resolution: 1, type: PIXI.TYPES.FLOAT, format: PIXI.FORMATS.RGBA}); + private tex: PIXI.RenderTexture = new PIXI.RenderTexture(this.baseTex); + + private surface: PIXI.Sprite = new PIXI.Sprite(this.tex); + private imgui: ImGuiWindowLayer = new ImGuiWindowLayer(this, this.tex); + + private update: (dt: number) => void; + constructor(sizeX: number, sizeY: number, update: (dt: number) => void) + { + super(); + + this.ctx = ImGui.CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts); + ImGui.SetCurrentContext(this.ctx); + this.io = ImGui.GetIO(); + + contexts.push(this.ctx); + contextIOs.push(this.io); + + if (contexts.length == 1) + { + CreateFontsTexture(); + } + + if (typeof(window) !== "undefined") { + ImGui.LoadIniSettingsFromMemory(window.localStorage.getItem("imgui.ini") || ""); + } + + if (typeof(navigator) !== "undefined") { + this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null; + } + + this.io.SetClipboardTextFn = (user_data: any, text: string): void => { + clipboard_text = text; + // console.log(`set clipboard_text: "${clipboard_text}"`); + if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.writeText: "${clipboard_text}"`); + (navigator as any).clipboard.writeText(clipboard_text).then((): void => { + // console.log(`clipboard.writeText: "${clipboard_text}" done.`); + }); + } + }; + this.io.GetClipboardTextFn = (user_data: any): string => { + // if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.readText: "${clipboard_text}"`); + // (navigator as any).clipboard.readText().then((text: string): void => { + // clipboard_text = text; + // console.log(`clipboard.readText: "${clipboard_text}" done.`); + // }); + // } + // console.log(`get clipboard_text: "${clipboard_text}"`); + return clipboard_text; + }; + this.io.ClipboardUserData = null; + + // Setup back-end capabilities flags + this.io.BackendFlags |= ImGui.BackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional) + + // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array. + this.io.KeyMap[ImGui.Key.Tab] = 9; + this.io.KeyMap[ImGui.Key.LeftArrow] = 37; + this.io.KeyMap[ImGui.Key.RightArrow] = 39; + this.io.KeyMap[ImGui.Key.UpArrow] = 38; + this.io.KeyMap[ImGui.Key.DownArrow] = 40; + this.io.KeyMap[ImGui.Key.PageUp] = 33; + this.io.KeyMap[ImGui.Key.PageDown] = 34; + this.io.KeyMap[ImGui.Key.Home] = 36; + this.io.KeyMap[ImGui.Key.End] = 35; + this.io.KeyMap[ImGui.Key.Insert] = 45; + this.io.KeyMap[ImGui.Key.Delete] = 46; + this.io.KeyMap[ImGui.Key.Backspace] = 8; + this.io.KeyMap[ImGui.Key.Space] = 32; + this.io.KeyMap[ImGui.Key.Enter] = 13; + this.io.KeyMap[ImGui.Key.Escape] = 27; + this.io.KeyMap[ImGui.Key.A] = 65; + this.io.KeyMap[ImGui.Key.C] = 67; + this.io.KeyMap[ImGui.Key.V] = 86; + this.io.KeyMap[ImGui.Key.X] = 88; + this.io.KeyMap[ImGui.Key.Y] = 89; + this.io.KeyMap[ImGui.Key.Z] = 90; + + this.update = update; + this.resize(sizeX, sizeY); + this.imgui.pluginName = 'imgui_renderer'; + this.addChild(this.surface); + app.renderer.plugins.interaction.addListener("mousedown", this.mouseDown.bind(this)); + app.renderer.plugins.interaction.addListener("mouseup", this.mouseUp.bind(this)); + app.ticker.add(this.updateInternal.bind(this)); + + this.interactive = false; + this.interactiveChildren = true; + + this.surface.interactive = false; + } + withContext(cb: () => void) + { + ImGui.SetCurrentContext(this.ctx); + cb(); + } + mouseDown(e: PIXI.interaction.InteractionEvent): void + { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) + { + this.io.MouseDown[mouse_button_map[0]] = true; + } + } + mouseUp(e: PIXI.interaction.InteractionEvent): void + { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) + { + this.io.MouseDown[mouse_button_map[0]] = false; + } + } + resize(sizeX: number, sizeY: number) + { + this.sizeX = sizeX; + this.sizeY = sizeY; + this.baseTex.resize(sizeX, sizeY); + this.tex.frame = new PIXI.Rectangle(0, 0, this.baseTex.width, this.baseTex.height); + } + updateInternal(deltaTime: number) + { + const dt: number = deltaTime * 1 / (1000 * PIXI.settings.TARGET_FPMS); + + ImGui.SetCurrentContext(this.ctx); + + if (this.io.WantSaveIniSettings) { + this.io.WantSaveIniSettings = false; + if (typeof(window) !== "undefined") { + window.localStorage.setItem("imgui.ini", ImGui.SaveIniSettingsToMemory()); + } + } + + this.io.DisplaySize.x = this.sizeX; + this.io.DisplaySize.y = this.sizeY; + this.io.DisplayFramebufferScale.x = 1; + this.io.DisplayFramebufferScale.y = 1; + + this.io.DeltaTime = dt; + + let localPos: PIXI.Point = this.toLocal(app.renderer.plugins.interaction.mouse.global); + if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY) + { + localPos = new PIXI.Point(-Number.MAX_VALUE, -Number.MAX_VALUE); + } + this.io.MousePos.x = localPos.x; + this.io.MousePos.y = localPos.y; + + if (this.io.WantSetMousePos) { + console.log("TODO: MousePos", this.io.MousePos.x, this.io.MousePos.y); + } + + if (typeof(document) !== "undefined") { + if (this.io.MouseDrawCursor) { + document.body.style.cursor = "none"; + } else { + switch (ImGui.GetMouseCursor()) { + case ImGui.MouseCursor.None: document.body.style.cursor = "none"; break; + default: case ImGui.MouseCursor.Arrow: document.body.style.cursor = "default"; break; + case ImGui.MouseCursor.TextInput: document.body.style.cursor = "text"; break; // When hovering over InputText, etc. + case ImGui.MouseCursor.ResizeAll: document.body.style.cursor = "move"; break; // Unused + case ImGui.MouseCursor.ResizeNS: document.body.style.cursor = "ns-resize"; break; // When hovering over an horizontal border + case ImGui.MouseCursor.ResizeEW: document.body.style.cursor = "ew-resize"; break; // When hovering over a vertical border or a column + case ImGui.MouseCursor.ResizeNESW: document.body.style.cursor = "nesw-resize"; break; // When hovering over the bottom-left corner of a window + case ImGui.MouseCursor.ResizeNWSE: document.body.style.cursor = "nwse-resize"; break; // When hovering over the bottom-right corner of a window + case ImGui.MouseCursor.Hand: document.body.style.cursor = "move"; break; + } + } + } + + // Gamepad navigation mapping [BETA] + for (let i = 0; i < this.io.NavInputs.length; ++i) { + this.io.NavInputs[i] = 0.0; + } + if (this.io.ConfigFlags & ImGui.ConfigFlags.NavEnableGamepad) { + // Update gamepad inputs + const gamepads: (Gamepad | null)[] = (typeof(navigator) !== "undefined" && typeof(navigator.getGamepads) === "function") ? navigator.getGamepads() : []; + for (let i = 0; i < gamepads.length; ++i) { + const gamepad: Gamepad | null = gamepads[i]; + if (!gamepad) { continue; } + const buttons_count: number = gamepad.buttons.length; + const axes_count: number = gamepad.axes.length; + const MAP_BUTTON = function(NAV_NO: number, BUTTON_NO: number): void { + if (!gamepad) { return; } + if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed) + this.io.NavInputs[NAV_NO] = 1.0; + } + const MAP_ANALOG = function(NAV_NO: number, AXIS_NO: number, V0: number, V1: number): void { + if (!gamepad) { return; } + let v: number = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0; + v = (v - V0) / (V1 - V0); + if (v > 1.0) v = 1.0; + if (this.io.NavInputs[NAV_NO] < v) this.io.NavInputs[NAV_NO] = v; + } + // TODO: map input based on vendor and product id + // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id + const match: RegExpMatchArray | null = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/); + const match_chrome: RegExpMatchArray | null = gamepad.id.match(/^.*\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\).*$/); + const vendor: string = (match && match[1]) || (match_chrome && match_chrome[1]) || "0000"; + const product: string = (match && match[2]) || (match_chrome && match_chrome[2]) || "0000"; + switch (vendor + product) { + case "046dc216": // Logitech Logitech Dual Action (Vendor: 046d Product: c216) + MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 2); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 0); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGui.NavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGui.NavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGui.NavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGui.NavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + case "046dc21d": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d) + MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_ANALOG(ImGui.NavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT + MAP_ANALOG(ImGui.NavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + case "2dc86001": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001) + case "2dc86101": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101) + MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 0); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 4); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGui.NavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGui.NavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGui.NavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGui.NavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 6); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 7); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 8); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 9); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + default: // standard gamepad: https://w3c.github.io/gamepad/#remapping + MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + } + } + } + + ImGui.NewFrame(); + + this.update(dt); + + ImGui.EndFrame(); + ImGui.Render(); + + app.renderer.render(this.imgui, this.tex); + + this.surface.interactive = this.io.WantCaptureMouse; + } +} + +let canvas: HTMLCanvasElement | null = null; + +//export let gl: WebGL2RenderingContext | null = null; +let g_ShaderHandle: WebGLProgram | null = null; +let g_VertHandle: WebGLShader | null = null; +let g_FragHandle: WebGLShader | null = null; +let g_AttribLocationTex: WebGLUniformLocation | null = null; +let g_AttribLocationProjMtx: WebGLUniformLocation | null = null; +let g_AttribLocationPosition: GLint = -1; +let g_AttribLocationUV: GLint = -1; +let g_AttribLocationColor: GLint = -1; +let g_VaoHandle: WebGLVertexArrayObject = null; +let g_VboHandle: WebGLBuffer | null = null; +let g_ElementsHandle: WebGLBuffer | null = null; +let g_FontTexture: WebGLTexture | null = null; + +function document_on_copy(event: ClipboardEvent): void { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function document_on_cut(event: ClipboardEvent): void { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function document_on_paste(event: ClipboardEvent): void { + if (event.clipboardData) { + clipboard_text = event.clipboardData.getData("text/plain"); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function window_on_gamepadconnected(event: any /* GamepadEvent */): void { + console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.", + event.gamepad.index, event.gamepad.id, + event.gamepad.buttons.length, event.gamepad.axes.length); +} + +function window_on_gamepaddisconnected(event: any /* GamepadEvent */): void { + console.log("Gamepad disconnected at index %d: %s.", + event.gamepad.index, event.gamepad.id); +} + +function canvas_on_blur(event: FocusEvent): void { + for (var io of contextIOs) + { + io.KeyCtrl = false; + io.KeyShift = false; + io.KeyAlt = false; + io.KeySuper = false; + for (let i = 0; i < io.KeysDown.length; ++i) { + io.KeysDown[i] = false; + } + for (let i = 0; i < io.MouseDown.length; ++i) { + io.MouseDown[i] = false; + } + } +} + +function canvas_on_keydown(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = true; + // forward to the keypress event + if (/*io.WantCaptureKeyboard ||*/ event.key === "Tab") { + event.preventDefault(); + } + } +} + +function canvas_on_keyup(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = false; + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} + +function canvas_on_keypress(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.AddInputCharacter(event.charCode); + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} + +// MouseEvent.button +// A number representing a given button: +// 0: Main button pressed, usually the left button or the un-initialized state +// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present) +// 2: Secondary button pressed, usually the right button +// 3: Fourth button, typically the Browser Back button +// 4: Fifth button, typically the Browser Forward button +const mouse_button_map: number[] = [ 0, 2, 1, 3, 4 ]; + +function canvas_on_contextmenu(event: Event): void { + for (var io of contextIOs) + { + if (io.WantCaptureMouse) { event.preventDefault(); } + } +} + +function canvas_on_wheel(event: WheelEvent): void { + for (var io of contextIOs) + { + let scale: number = 1.0; + switch (event.deltaMode) { + case event.DOM_DELTA_PIXEL: scale = 0.01; break; + case event.DOM_DELTA_LINE: scale = 0.2; break; + case event.DOM_DELTA_PAGE: scale = 1.0; break; + } + io.MouseWheelH = event.deltaX * scale; + io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text. + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} + +export function PrePIXIInit(): void +{ + PIXI.Renderer.registerPlugin("imgui_renderer", U.fromConstructor(ImGuiImplInternalRenderer)); +} + +export function Init(_app: PIXI.Application): void { + // Setup Dear ImGui binding + ImGui.IMGUI_CHECKVERSION(); + + if (typeof(document) !== "undefined") { + document.body.addEventListener("copy", document_on_copy); + document.body.addEventListener("cut", document_on_cut); + document.body.addEventListener("paste", document_on_paste); + } + + if (typeof(window) !== "undefined") { + window.addEventListener("gamepadconnected", window_on_gamepadconnected); + window.addEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + + app = _app; + gl = (app.renderer as any).gl; + canvas = app.view; + + gl.getExtension("EXT_color_buffer_float"); + + if (canvas !== null) { + canvas.style.touchAction = "none"; // Disable browser handling of all panning and zooming gestures. + canvas.addEventListener("blur", canvas_on_blur); + canvas.addEventListener("keydown", canvas_on_keydown); + canvas.addEventListener("keyup", canvas_on_keyup); + canvas.addEventListener("keypress", canvas_on_keypress); + canvas.addEventListener("contextmenu", canvas_on_contextmenu); + canvas.addEventListener("wheel", canvas_on_wheel); + } + + CreateDeviceObjects(); +} + +export function Shutdown(): void { + DestroyDeviceObjects(); + + if (canvas !== null) { + canvas.removeEventListener("blur", canvas_on_blur); + canvas.removeEventListener("keydown", canvas_on_keydown); + canvas.removeEventListener("keyup", canvas_on_keyup); + canvas.removeEventListener("keypress", canvas_on_keypress); + canvas.removeEventListener("contextmenu", canvas_on_contextmenu); + canvas.removeEventListener("wheel", canvas_on_wheel); + } + + app = null; + canvas = null; + + if (typeof(window) !== "undefined") { + window.removeEventListener("gamepadconnected", window_on_gamepadconnected); + window.removeEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + + if (typeof(document) !== "undefined") { + document.body.removeEventListener("copy", document_on_copy); + document.body.removeEventListener("cut", document_on_cut); + document.body.removeEventListener("paste", document_on_paste); + } +} + +function CreateFontsTexture(): void { + const io = ImGui.GetIO(); + + // Backup GL state + const last_texture: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D); + + // Build texture atlas + // const width: number = 256; + // const height: number = 256; + // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff); + const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory. + // console.log(`font texture ${width} x ${height} @ ${pixels.length}`); + + // Upload texture to graphics system + g_FontTexture = gl && gl.createTexture(); + gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2 + gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels); + + // Store our identifier + io.Fonts.TexID = g_FontTexture || { foo: "bar" }; + // console.log("font texture id", g_FontTexture); + + // Restore modified GL state + gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture); +} + +function DestroyFontsTexture(): void { + const io = ImGui.GetIO(); + io.Fonts.TexID = null; + gl && gl.deleteTexture(g_FontTexture); g_FontTexture = null; +} + +function CreateDeviceObjects(): void { + const vertex_shader: string[] = [ + "#version 300 es", + "uniform mat4 ProjMtx;", + "in vec2 Position;", + "in vec2 UV;", + "in vec4 Color;", + "out vec2 Frag_UV;", + "out vec4 Frag_Color;", + "void main() {", + " Frag_UV = UV;", + " Frag_Color = Color;", + " gl_Position = ProjMtx * vec4(Position.xy,0,1);", + "}", + ]; + + const fragment_shader: string[] = [ + "#version 300 es", + "precision mediump float;", // WebGL requires precision specifiers + "uniform sampler2D Texture;", + "in vec2 Frag_UV;", + "in vec4 Frag_Color;", + "out vec4 OutColor;", + "void main() {", + " OutColor = Frag_Color * texture(Texture, Frag_UV);", + "}", + ]; + + g_ShaderHandle = gl && gl.createProgram(); + g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER); + g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER); + gl && gl.shaderSource(g_VertHandle as WebGLShader, vertex_shader.join("\n")); + gl && gl.shaderSource(g_FragHandle as WebGLShader, fragment_shader.join("\n")); + gl && gl.compileShader(g_VertHandle as WebGLShader); + gl && gl.compileShader(g_FragHandle as WebGLShader); + gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_VertHandle as WebGLShader); + gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_FragHandle as WebGLShader); + gl && gl.linkProgram(g_ShaderHandle as WebGLProgram); + + g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, "Texture"); + g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, "ProjMtx"); + g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "Position") || 0; + g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "UV") || 0; + g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "Color") || 0; + + g_VaoHandle = gl && gl.createVertexArray(); + g_VboHandle = gl && gl.createBuffer(); + g_ElementsHandle = gl && gl.createBuffer(); + +} + +function DestroyDeviceObjects(): void { + DestroyFontsTexture(); + + gl && gl.deleteVertexArray(g_VaoHandle); g_VaoHandle = null; + gl && gl.deleteBuffer(g_VboHandle); g_VboHandle = null; + gl && gl.deleteBuffer(g_ElementsHandle); g_ElementsHandle = null; + + g_AttribLocationTex = null; + g_AttribLocationProjMtx = null; + g_AttribLocationPosition = -1; + g_AttribLocationUV = -1; + g_AttribLocationColor = -1; + + gl && gl.deleteProgram(g_ShaderHandle); g_ShaderHandle = null; + gl && gl.deleteShader(g_VertHandle); g_VertHandle = null; + gl && gl.deleteShader(g_FragHandle); g_FragHandle = null; +} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..08ec8c9 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1639 @@ +{ + "name": "imgui-js-pixi", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@pixi/accessibility": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/accessibility/-/accessibility-5.1.5.tgz", + "integrity": "sha512-xHgcVN6sDqqpkcgk+yJ5s6tCf7ZW2YZVop7bQL9avuJaP6I/0mbwUN3evWonQ4QNO6SF8V/QXOc3ZmEdkYILPA==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/app": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/app/-/app-5.1.5.tgz", + "integrity": "sha512-BxcNAulUXVkTpOqS5gjorO2d3+wksmBfn0VFGdiq7Elbv3v0s8wCwGOlOSMJoAjYSPXz8H8t3dw8NHxqxpI53A==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3" + } + }, + "@pixi/constants": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@pixi/constants/-/constants-5.1.0.tgz", + "integrity": "sha512-86cogDvjF9yNvmxeizwkIhA0Kl2z3gUSWMf2daYx903dzyje7fwkzRrKLnqDUn6vSAxRXiska0DMJhwYsIC29w==" + }, + "@pixi/core": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/core/-/core-5.1.5.tgz", + "integrity": "sha512-pt7JTgRyGyOm1VNGhYqAjdIggQ5SjGpctLEBFwPlZDOTeEjJ85NADwCvN/E9ToIW7Gv/1urrNKsoVGlADcV6vw==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/runner": "^5.1.1", + "@pixi/settings": "^5.1.3", + "@pixi/ticker": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/display": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/display/-/display-5.1.3.tgz", + "integrity": "sha512-zQJfwH9tSilEfpajVJKM2bavIXBFMokscXyFIdokBSjLQL22mgEyR0mHZ3u6OECUa0PEVUA64eePv6KmPZ+bJQ==", + "requires": { + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/extract": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/extract/-/extract-5.1.5.tgz", + "integrity": "sha512-sn13RxtWpqZq05K9IJxF/00ddMsiDlpQAwEwA8fQIsMSbt6lBTm1fa0u/nZqQjRhJk72Q+41h4LXEhZEMMowAg==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/filter-alpha": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-alpha/-/filter-alpha-5.1.5.tgz", + "integrity": "sha512-Jb5e7lybvMOXjdTOEN883h2N5Qe5rLNdTmPxOoK43RR+LQMk8D/Iw3zWpQ1oIwpJFiUkgwn0CmO5YaK6STh34w==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/filter-blur": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-blur/-/filter-blur-5.1.5.tgz", + "integrity": "sha512-9eSJtg8kLwKrNnJmg2c1vlOcP0PYhvZdUk97D2+HrE0j1BZTJ2OxHb26UJSiMU0kBCUomtuFvCiNtFT2GCWbjg==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/settings": "^5.1.3" + } + }, + "@pixi/filter-color-matrix": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-color-matrix/-/filter-color-matrix-5.1.5.tgz", + "integrity": "sha512-zhg8FE22WA7sH1mhvjjSaWav7BXFbU63usdh9pVNv2Hd7cuDtO9x8aLy+RqGozqENfYHzRUlTdKrNdl5QEbYMg==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/filter-displacement": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-displacement/-/filter-displacement-5.1.5.tgz", + "integrity": "sha512-/ZzlTT+jFQTwg57jj6kl4lH+0Z3iwtp+tDXdYcusNDe44hZn9Wd+IzZkS/LCeay40cY4JPRrXznVwlZ6AiBsHQ==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0" + } + }, + "@pixi/filter-fxaa": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-fxaa/-/filter-fxaa-5.1.5.tgz", + "integrity": "sha512-Zg2pSBpb0pxJozWraNrHUC97C3gSjK+NSaMGBN6NpfaGcn+/xaZjFBwwYDeTpHAw6IDV+3Ln+z7D5h9pPEliKg==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/filter-noise": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-noise/-/filter-noise-5.1.5.tgz", + "integrity": "sha512-/HGr9dxvBVc+qRJ/JU/6ZHz3BshnUwCTgEfQtxJmo2I6lqn9cWoiL4q+iKk9QkGmLtLNip77zc0KveYN01eh/g==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/graphics": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/graphics/-/graphics-5.1.5.tgz", + "integrity": "sha512-u9uq/6ylS5oRCsWaTi0uOCuAimAvaXJ57ATKT/nylHRXv+GfbPoMJAHpqTWx8HojK7P6PBUJCenPa0BFVcq9gg==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/interaction": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/interaction/-/interaction-5.1.5.tgz", + "integrity": "sha512-N8SONgHZZuDLPAL3LvfMTfgRsD6084KJA9VbwJ6Ujvm95NwSInNC2HRB6uXsSYTC4I1bMcRhot3CjZkB5BEURA==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/ticker": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/loaders": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/loaders/-/loaders-5.1.5.tgz", + "integrity": "sha512-jcuJMMGIr7/o8HKtVL9YzUTQQGk4K4uNQylUbhnNDFVuJcVzuBwD/TCWJ/+2Y879vBzipXdhCw7JLA4F8w6bkg==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/utils": "^5.1.3", + "resource-loader": "^3.0.1" + } + }, + "@pixi/math": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@pixi/math/-/math-5.1.0.tgz", + "integrity": "sha512-Vf9W4SgYRRQMdSq8tFViKKKGCU3iklf0RDzd+wzp4gezOxe3m0PLB7XKwvVrP1hRjUh49zIAL9JBpYREPS1EMw==" + }, + "@pixi/mesh": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/mesh/-/mesh-5.1.5.tgz", + "integrity": "sha512-gWBwBkIV0Dj0nA+a/ymtv4oQOium3oiehKdhSynQZj9C+pwd3YUSJGjHWs4b+TIQxZm2RHEsSSw4gCw/Ih1cuw==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/mesh-extras": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/mesh-extras/-/mesh-extras-5.1.5.tgz", + "integrity": "sha512-aMjTD3kBf2h31ijYapapQOJIoQuO26i4pP7P4ux886FE8E48QSc3edXZzULq2Rc5ZdWMPUFYnd8AJ6F8dw/ocQ==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/mesh": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/mixin-cache-as-bitmap": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/mixin-cache-as-bitmap/-/mixin-cache-as-bitmap-5.1.5.tgz", + "integrity": "sha512-XRVTz5nOgj7wUFXXIixTlg+2oynNerebUwjkw11mnr+HNP3vMmt2O8ZtXEyij2VXNMuDmbYo8/O53FI+81CnAQ==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/mixin-get-child-by-name": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/mixin-get-child-by-name/-/mixin-get-child-by-name-5.1.3.tgz", + "integrity": "sha512-0nvNfcQAeND9iuzQr0AYCxINDaXQx5Kft8Fauu0T4LKbYAchO0qzuSpv7L+cD4LvKdvGQyxHHWP6u4wQ9yuKrg==", + "requires": { + "@pixi/display": "^5.1.3" + } + }, + "@pixi/mixin-get-global-position": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/mixin-get-global-position/-/mixin-get-global-position-5.1.3.tgz", + "integrity": "sha512-dgIUjjIDnI/wrNXt+ROWdv0syQeV5hlt/TJot/ULXw6HnBoDDmXqcKzIp38o3Ei6n2eQ0CUVbKYGd668tdk5EQ==", + "requires": { + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0" + } + }, + "@pixi/particles": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/particles/-/particles-5.1.5.tgz", + "integrity": "sha512-eIYd1wKyuzBL/re3EuyhUjXNRe8fkqbUgpeevV2e7tIoFcyK3g3cT4E1ajTv+7IIAvj2505xRJ3dxcAxLDzd6g==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/polyfill": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@pixi/polyfill/-/polyfill-5.1.0.tgz", + "integrity": "sha512-8M3nYCO0a599fsdLW7wv9SBYriMqS1QckKAkRuN2JualRuK/GjxZjm5Vcbcwc1gGONRUKZroH12CuPyTcU2HnQ==", + "requires": { + "es6-promise-polyfill": "^1.2.0", + "object-assign": "^4.1.1" + } + }, + "@pixi/prepare": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/prepare/-/prepare-5.1.5.tgz", + "integrity": "sha512-0Gq6whHFuLYy3uUVoVmRnVWMZU4Z0WSs7+BYGWrDqxlOqfuZ6ZS4SSEjzcUUvyCK8MWisEn7O3EnDRYFr+3K5g==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/graphics": "^5.1.5", + "@pixi/settings": "^5.1.3", + "@pixi/text": "^5.1.5", + "@pixi/ticker": "^5.1.3" + } + }, + "@pixi/runner": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@pixi/runner/-/runner-5.1.1.tgz", + "integrity": "sha512-cOkWsRZlEgOB4IuiUW0PvU0JDMNpNTtyLeECg4DwIDYW4uQ0033zaZFSsN0EOeX0TFkpBmaJsgEIwpmw32VU0w==" + }, + "@pixi/settings": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/settings/-/settings-5.1.3.tgz", + "integrity": "sha512-goYjVYuklNMFWFq54J7u4eYVe+qmLe6AQP+b+hF+Kskw7tSXrAVTHROqrEiqPqKSCL9umorOi6T/ZTXhk8i4Wg==", + "requires": { + "ismobilejs": "^0.5.1" + } + }, + "@pixi/sprite": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/sprite/-/sprite-5.1.5.tgz", + "integrity": "sha512-a8M5P7xarbYMut3YKIb5I4hr94c0/VA18jV/eOhtyOKOsS5jkjul5WGssnIyR73aQp7iaNGWfh7FD+BiWCLzXQ==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/sprite-animated": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/sprite-animated/-/sprite-animated-5.1.5.tgz", + "integrity": "sha512-jsxqmWpDpjy7BoqVFpPWNvIeJ6yePQ0/uTyvzhKZBM8ihZVFJMa1+C4IFQpQYUCp9rlZHG6og4UzAHlwceQb+A==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/sprite": "^5.1.5", + "@pixi/ticker": "^5.1.3" + } + }, + "@pixi/sprite-tiling": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/sprite-tiling/-/sprite-tiling-5.1.5.tgz", + "integrity": "sha512-9P0jyAA9I8hrDnN04rABxxs09Knb2AZr+Ky2yvWAUngumoMmIEbc/JtW9R8ich72uTBcl8Ax+bTz520wB36HpA==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/spritesheet": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/spritesheet/-/spritesheet-5.1.5.tgz", + "integrity": "sha512-kZBiI/eYRKoNxOTI9h4tl13oGdCaFkH/cOI0MZ0st0Dos6clB5OJStJ19bEe/Ik1Yt7NxGCCuFLLa3WKhQ5idQ==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/loaders": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/text": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/text/-/text-5.1.5.tgz", + "integrity": "sha512-8pKWuyccdWrZgvssyPUrOdn7CMeetRTpM8W51KYwU8gla6tnddMj3TaBW56dXRdtddadDc2KdGtDYPOuonHOfA==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/text-bitmap": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/text-bitmap/-/text-bitmap-5.1.5.tgz", + "integrity": "sha512-Qvnq35MdDWjW9JwJsLcVpnTX4ApW52zLMeMezuTtN+QrfsXmYXRE+SOeBERccbGmyxcM2yIKIItiqS2eFvlzRw==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/loaders": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/ticker": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/ticker/-/ticker-5.1.3.tgz", + "integrity": "sha512-IuJTMTfdboR6049b+HnSClGj7Lz5gObVoxuMc3flY493XAvrQk4XrBo57QDlVOdjVBiDW0gZ9DlUr1lwNFI7zQ==", + "requires": { + "@pixi/settings": "^5.1.3" + } + }, + "@pixi/utils": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/utils/-/utils-5.1.3.tgz", + "integrity": "sha512-w2ULIc97p1tnAZ7L0aSClDeIpuCYrauOKbnWYG8C8zTVfHWFKAHVamvzYnVaeXw4CN9jwERK/JYY/y2VFZXHuw==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/settings": "^5.1.3", + "earcut": "^2.1.5", + "eventemitter3": "^3.1.0", + "url": "^0.11.0" + } + }, + "@types/emscripten": { + "version": "1.38.0", + "resolved": "https://registry.npmjs.org/@types/emscripten/-/emscripten-1.38.0.tgz", + "integrity": "sha512-qfuBbl9hC0ybmW9s8SDORPgg+LdPV+KRpB8AMdTRqxuQZR4G5T7ozIAVUJLO26N7SFSM1zvDVuZ9+qOX7qt/EQ==" + }, + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "dev": true + }, + "@types/node": { + "version": "12.7.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.7.8.tgz", + "integrity": "sha512-FMdVn84tJJdV+xe+53sYiZS4R5yn1mAIxfj+DVoNiQjTYz1+OYmjwEZr1ev9nU0axXwda0QDbYl06QHanRVH3A==" + }, + "@types/resolve": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz", + "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/systemjs": { + "version": "0.20.6", + "resolved": "https://registry.npmjs.org/@types/systemjs/-/systemjs-0.20.6.tgz", + "integrity": "sha512-p3yv9sBBJXi3noUG216BpUI7VtVBUAvBIfZNTiDROUY31YBfsFHM4DreS7XMekN8IjtX0ysvCnm6r3WnirnNeA==" + }, + "abstract-leveldown": { + "version": "0.12.4", + "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-0.12.4.tgz", + "integrity": "sha1-KeGOYy5g5OIh1YECR4UqY9ey5BA=", + "dev": true, + "requires": { + "xtend": "~3.0.0" + }, + "dependencies": { + "xtend": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz", + "integrity": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=", + "dev": true + } + } + }, + "acorn": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.0.tgz", + "integrity": "sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==", + "dev": true + }, + "asn1.js": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", + "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "bl": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/bl/-/bl-0.8.2.tgz", + "integrity": "sha1-yba8oI0bwuoA/Ir7Txpf0eHGbk4=", + "dev": true, + "requires": { + "readable-stream": "~1.0.26" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "bn.js": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", + "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==", + "dev": true + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-fs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browserify-fs/-/browserify-fs-1.0.0.tgz", + "integrity": "sha1-8HWqinKdTRcW0GZiDjhvzBMRqW8=", + "dev": true, + "requires": { + "level-filesystem": "^1.0.1", + "level-js": "^2.1.3", + "levelup": "^0.18.2" + } + }, + "browserify-rsa": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", + "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", + "dev": true, + "requires": { + "bn.js": "^4.1.1", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.2", + "elliptic": "^6.0.0", + "inherits": "^2.0.1", + "parse-asn1": "^5.0.0" + } + }, + "buffer-es6": { + "version": "4.9.3", + "resolved": "https://registry.npmjs.org/buffer-es6/-/buffer-es6-4.9.3.tgz", + "integrity": "sha1-8mNHuC33b9N+GLy1KIxJcM/VxAQ=", + "dev": true + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true + }, + "builtin-modules": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz", + "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==", + "dev": true + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "clone": { + "version": "0.1.19", + "resolved": "https://registry.npmjs.org/clone/-/clone-0.1.19.tgz", + "integrity": "sha1-YT+2hjmyaklKxTJT4Vsaa9iK2oU=", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "create-ecdh": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", + "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.0.0" + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "deferred-leveldown": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-0.2.0.tgz", + "integrity": "sha1-LO8fER4cV4cNi7uK8mUOWHzS9bQ=", + "dev": true, + "requires": { + "abstract-leveldown": "~0.12.1" + } + }, + "des.js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", + "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "earcut": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.1.tgz", + "integrity": "sha512-5jIMi2RB3HtGPHcYd9Yyl0cczo84y+48lgKPxMijliNQaKAHEZJbdzLmKmdxG/mCdS/YD9DQ1gihL8mxzR0F9w==" + }, + "elliptic": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.1.tgz", + "integrity": "sha512-xvJINNLbTeWQjrl6X+7eQCrIy/YPv5XCpKW6kB5mKvtnGILoLDcySuwomfdzt0BMdLNVnuRNTuzKNHj0bva1Cg==", + "dev": true, + "requires": { + "bn.js": "^4.4.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + } + }, + "errno": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", + "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "es6-promise-polyfill": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/es6-promise-polyfill/-/es6-promise-polyfill-1.2.0.tgz", + "integrity": "sha1-84kl8jyz4+jObNqP93T867sJDN4=" + }, + "estree-walker": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", + "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==", + "dev": true + }, + "eventemitter3": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", + "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==" + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "find-cache-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.0.0.tgz", + "integrity": "sha512-t7ulV1fmbxh5G9l/492O1p5+EBbr3uwpt6odhFTMc+nWyhmbloe+ja9BZ8pIBtqFWhOmCWVjx+pTW4zDkFoclw==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.0", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "foreach": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", + "dev": true + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fwd-stream": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/fwd-stream/-/fwd-stream-1.0.4.tgz", + "integrity": "sha1-7Sgcq+1G/uz5Ie4y3ExQs3KsfPo=", + "dev": true, + "requires": { + "readable-stream": "~1.0.26-4" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "graceful-fs": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", + "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==", + "dev": true + }, + "hash-base": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", + "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "idb-wrapper": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/idb-wrapper/-/idb-wrapper-1.7.2.tgz", + "integrity": "sha512-zfNREywMuf0NzDo9mVsL0yegjsirJxHpKHvWcyRozIqQy89g0a3U+oBPOCN4cc0oCiOuYgZHimzaW/R46G1Mpg==", + "dev": true + }, + "imgui-js": { + "version": "git+https://git.mhack.io/git/mark/imgui-js.git#9536ecad287eb76812087cd3fee1aaacb448c027", + "from": "git+https://git.mhack.io/git/mark/imgui-js.git", + "requires": { + "@types/emscripten": "^1.38.0", + "@types/node": "^12.6.7", + "@types/systemjs": "^0.20.6", + "pixi.js": "file:node_modules/imgui-js/pixi.js/bundles/pixi.js/pixi.js-5.1.4.tgz" + } + }, + "indexof": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", + "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", + "dev": true + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "is": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/is/-/is-0.2.7.tgz", + "integrity": "sha1-OzSixI81mXLzUEKEkZOucmS2NWI=", + "dev": true + }, + "is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=", + "dev": true + }, + "is-object": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-0.1.2.tgz", + "integrity": "sha1-AO+8CIFsM8/ErIJR0TLhDcZQmNc=", + "dev": true + }, + "is-reference": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.1.4.tgz", + "integrity": "sha512-uJA/CDPO3Tao3GTrxYn6AwkM4nUPJiGGYu5+cB8qbC7WGFlrKZbiRo7SFKxUAEpFUfiHofWCXBUNhvYJMh+6zw==", + "dev": true, + "requires": { + "@types/estree": "0.0.39" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isbuffer": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/isbuffer/-/isbuffer-0.0.0.tgz", + "integrity": "sha1-OMFG2d9Si4v5sHAcPUPPEt8/w5s=", + "dev": true + }, + "ismobilejs": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/ismobilejs/-/ismobilejs-0.5.2.tgz", + "integrity": "sha512-ta9UdV60xVZk/ZafFtSFslQaE76SvNkcs1r73d2PVR21zVzx9xuYv9tNe4MxA1NN7WoeCc2RjGot3Bz1eHDx3Q==" + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "level-blobs": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/level-blobs/-/level-blobs-0.1.7.tgz", + "integrity": "sha1-mrm5e7mfHtv594o0M+Ie1WOGva8=", + "dev": true, + "requires": { + "level-peek": "1.0.6", + "once": "^1.3.0", + "readable-stream": "^1.0.26-4" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "level-filesystem": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/level-filesystem/-/level-filesystem-1.2.0.tgz", + "integrity": "sha1-oArKmRnEpN+v3KaoEI0iWq3/Y7M=", + "dev": true, + "requires": { + "concat-stream": "^1.4.4", + "errno": "^0.1.1", + "fwd-stream": "^1.0.4", + "level-blobs": "^0.1.7", + "level-peek": "^1.0.6", + "level-sublevel": "^5.2.0", + "octal": "^1.0.0", + "once": "^1.3.0", + "xtend": "^2.2.0" + } + }, + "level-fix-range": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/level-fix-range/-/level-fix-range-1.0.2.tgz", + "integrity": "sha1-vxW5Fa422EcMgh6IPd95zRZCCCg=", + "dev": true + }, + "level-hooks": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/level-hooks/-/level-hooks-4.5.0.tgz", + "integrity": "sha1-G5rmGSKTDzMF0aYfxNg8gQLA3ZM=", + "dev": true, + "requires": { + "string-range": "~1.2" + } + }, + "level-js": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/level-js/-/level-js-2.2.4.tgz", + "integrity": "sha1-vAVfQYBjXUSJtWHJSG+jcOjBFpc=", + "dev": true, + "requires": { + "abstract-leveldown": "~0.12.0", + "idb-wrapper": "^1.5.0", + "isbuffer": "~0.0.0", + "ltgt": "^2.1.2", + "typedarray-to-buffer": "~1.0.0", + "xtend": "~2.1.2" + }, + "dependencies": { + "object-keys": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz", + "integrity": "sha1-KKaq50KN0sOpLz2V8hM13SBOAzY=", + "dev": true + }, + "xtend": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", + "integrity": "sha1-bv7MKk2tjmlixJAbM3znuoe10os=", + "dev": true, + "requires": { + "object-keys": "~0.4.0" + } + } + } + }, + "level-peek": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/level-peek/-/level-peek-1.0.6.tgz", + "integrity": "sha1-vsUccqgu5GTTNkNMfIdsP8vM538=", + "dev": true, + "requires": { + "level-fix-range": "~1.0.2" + } + }, + "level-sublevel": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/level-sublevel/-/level-sublevel-5.2.3.tgz", + "integrity": "sha1-dEwSxy0ucr543eO5tc2E1iGRQTo=", + "dev": true, + "requires": { + "level-fix-range": "2.0", + "level-hooks": ">=4.4.0 <5", + "string-range": "~1.2.1", + "xtend": "~2.0.4" + }, + "dependencies": { + "level-fix-range": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/level-fix-range/-/level-fix-range-2.0.0.tgz", + "integrity": "sha1-xBfWIVlEIVGhnZojZ4aPFyTC1Ug=", + "dev": true, + "requires": { + "clone": "~0.1.9" + } + }, + "xtend": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.0.6.tgz", + "integrity": "sha1-XqZXptukRwacLlnFihE4ywxebO4=", + "dev": true, + "requires": { + "is-object": "~0.1.2", + "object-keys": "~0.2.0" + } + } + } + }, + "levelup": { + "version": "0.18.6", + "resolved": "https://registry.npmjs.org/levelup/-/levelup-0.18.6.tgz", + "integrity": "sha1-5qAcsIlhbI7MApHCqb0/DETj5es=", + "dev": true, + "requires": { + "bl": "~0.8.1", + "deferred-leveldown": "~0.2.0", + "errno": "~0.1.1", + "prr": "~0.0.0", + "readable-stream": "~1.0.26", + "semver": "~2.3.1", + "xtend": "~3.0.0" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "prr": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz", + "integrity": "sha1-GoS4WQgyVQFBGFPQCB7j+obikmo=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + }, + "xtend": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz", + "integrity": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=", + "dev": true + } + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "ltgt": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ltgt/-/ltgt-2.2.1.tgz", + "integrity": "sha1-81ypHEk/e3PaDgdJUwTxezH4fuU=", + "dev": true + }, + "magic-string": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.4.tgz", + "integrity": "sha512-oycWO9nEVAP2RVPbIoDoA4Y7LFIJ3xRYov93gAyJhZkET1tNuB0u7uWkZS2LpBWTJUWnmau/To8ECWRC+jKNfw==", + "dev": true, + "requires": { + "sourcemap-codec": "^1.4.4" + } + }, + "make-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.0.0.tgz", + "integrity": "sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + } + }, + "mini-signals": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mini-signals/-/mini-signals-1.2.0.tgz", + "integrity": "sha1-RbCAE8X65RokqhqTXNMXye1yHXQ=" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-keys": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.2.0.tgz", + "integrity": "sha1-zd7AKZiwkb5CvxA1rjLknxy26mc=", + "dev": true, + "requires": { + "foreach": "~2.0.1", + "indexof": "~0.0.1", + "is": "~0.2.6" + } + }, + "octal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/octal/-/octal-1.0.0.tgz", + "integrity": "sha1-Y+cWKmjvvrniE1iNWOmJ0eXEUws=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "p-limit": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", + "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "parse-asn1": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz", + "integrity": "sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==", + "dev": true, + "requires": { + "asn1.js": "^4.0.0", + "browserify-aes": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-uri": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-uri/-/parse-uri-1.0.0.tgz", + "integrity": "sha1-KHLcwi8aeXrN4Vg9igrClVLdrCA=" + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "dev": true + }, + "pbkdf2": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", + "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", + "dev": true, + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "pixi.js": { + "version": "file:node_modules/imgui-js/pixi.js/bundles/pixi.js/pixi.js-5.1.4.tgz", + "integrity": "sha512-qBtJPyfiH/b2powvEEnQoiBdoT0xQTg5LQ08CESsBJk4kFX6NE2u+KQv6WYfl5j/1pRHVvtrWhwPeJTbfp9SpQ==", + "requires": { + "@pixi/accessibility": "^5.1.4", + "@pixi/app": "^5.1.4", + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.4", + "@pixi/display": "^5.1.3", + "@pixi/extract": "^5.1.4", + "@pixi/filter-alpha": "^5.1.4", + "@pixi/filter-blur": "^5.1.4", + "@pixi/filter-color-matrix": "^5.1.4", + "@pixi/filter-displacement": "^5.1.4", + "@pixi/filter-fxaa": "^5.1.4", + "@pixi/filter-noise": "^5.1.4", + "@pixi/graphics": "^5.1.4", + "@pixi/interaction": "^5.1.4", + "@pixi/loaders": "^5.1.4", + "@pixi/math": "^5.1.0", + "@pixi/mesh": "^5.1.4", + "@pixi/mesh-extras": "^5.1.4", + "@pixi/mixin-cache-as-bitmap": "^5.1.4", + "@pixi/mixin-get-child-by-name": "^5.1.3", + "@pixi/mixin-get-global-position": "^5.1.3", + "@pixi/particles": "^5.1.4", + "@pixi/polyfill": "^5.1.0", + "@pixi/prepare": "^5.1.4", + "@pixi/runner": "^5.1.1", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.4", + "@pixi/sprite-animated": "^5.1.4", + "@pixi/sprite-tiling": "^5.1.4", + "@pixi/spritesheet": "^5.1.4", + "@pixi/text": "^5.1.4", + "@pixi/text-bitmap": "^5.1.4", + "@pixi/ticker": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "process-es6": { + "version": "0.11.6", + "resolved": "https://registry.npmjs.org/process-es6/-/process-es6-0.11.6.tgz", + "integrity": "sha1-xrs4n5qVH4K9TrFpYAEFvS/5x3g=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "resolve": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz", + "integrity": "sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "resource-loader": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/resource-loader/-/resource-loader-3.0.1.tgz", + "integrity": "sha512-fBuCRbEHdLCI1eglzQhUv9Rrdcmqkydr1r6uHE2cYHvRBrcLXeSmbE/qI/urFt8rPr/IGxir3BUwM5kUK8XoyA==", + "requires": { + "mini-signals": "^1.2.0", + "parse-uri": "^1.0.0" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "rollup": { + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-1.22.0.tgz", + "integrity": "sha512-x4l4ZrV/Mr/x/jvFTmwROdEAhbZjx16yDRTVSKWh/i4oJDuW2dVEbECT853mybYCz7BAitU8ElGlhx7dNjw3qQ==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/node": "*", + "acorn": "^7.1.0" + } + }, + "rollup-plugin-commonjs": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-commonjs/-/rollup-plugin-commonjs-10.1.0.tgz", + "integrity": "sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q==", + "dev": true, + "requires": { + "estree-walker": "^0.6.1", + "is-reference": "^1.1.2", + "magic-string": "^0.25.2", + "resolve": "^1.11.0", + "rollup-pluginutils": "^2.8.1" + } + }, + "rollup-plugin-node-builtins": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-node-builtins/-/rollup-plugin-node-builtins-2.1.2.tgz", + "integrity": "sha1-JKH+1KQyV7a2Q3HYq8bOGrFFl+k=", + "dev": true, + "requires": { + "browserify-fs": "^1.0.0", + "buffer-es6": "^4.9.2", + "crypto-browserify": "^3.11.0", + "process-es6": "^0.11.2" + } + }, + "rollup-plugin-node-resolve": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-5.2.0.tgz", + "integrity": "sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw==", + "dev": true, + "requires": { + "@types/resolve": "0.0.8", + "builtin-modules": "^3.1.0", + "is-module": "^1.0.0", + "resolve": "^1.11.1", + "rollup-pluginutils": "^2.8.1" + } + }, + "rollup-plugin-typescript2": { + "version": "0.24.3", + "resolved": "https://registry.npmjs.org/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.24.3.tgz", + "integrity": "sha512-D7yovQlhnRoz7pG/RF0ni+koxgzEShwfAGuOq6OVqKzcATHOvmUt2ePeYVdc9N0adcW1PcTzklUEM0oNWE/POw==", + "dev": true, + "requires": { + "find-cache-dir": "^3.0.0", + "fs-extra": "8.1.0", + "resolve": "1.12.0", + "rollup-pluginutils": "2.8.1", + "tslib": "1.10.0" + }, + "dependencies": { + "rollup-pluginutils": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz", + "integrity": "sha512-J5oAoysWar6GuZo0s+3bZ6sVZAC0pfqKz68De7ZgDi5z63jOVZn1uJL/+z1jeKHNbGII8kAyHF5q8LnxSX5lQg==", + "dev": true, + "requires": { + "estree-walker": "^0.6.1" + } + } + } + }, + "rollup-pluginutils": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", + "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", + "dev": true, + "requires": { + "estree-walker": "^0.6.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "semver": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-2.3.2.tgz", + "integrity": "sha1-uYSPJdbPNjMwc+ye+IVtQvEjPlI=", + "dev": true + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "sourcemap-codec": { + "version": "1.4.6", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.6.tgz", + "integrity": "sha512-1ZooVLYFxC448piVLBbtOxFcXwnymH9oUF8nRd3CuYDVvkRBxRl6pB4Mtas5a4drtL+E8LDgFkQNcgIw6tc8Hg==", + "dev": true + }, + "string-range": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/string-range/-/string-range-1.2.2.tgz", + "integrity": "sha1-qJPtNH5yKZvIO++78qaSqNI51d0=", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "tslib": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", + "dev": true + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, + "typedarray-to-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-1.0.4.tgz", + "integrity": "sha1-m7i6DoQfs/TPH+fCRenz+opf6Zw=", + "dev": true + }, + "typescript": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.6.3.tgz", + "integrity": "sha512-N7bceJL1CtRQ2RiG0AQME13ksR7DiuQh/QehubYcghzv20tnh+MQnQIuJddTmsbqYj+dztchykemz0zFzlvdQw==", + "dev": true + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "xtend": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.2.0.tgz", + "integrity": "sha1-7vax8ZjByN6vrYsXZaBNrUoBxak=", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..2a48002 --- /dev/null +++ b/package.json @@ -0,0 +1,27 @@ +{ + "name": "imgui-js-pixi", + "version": "1.0.0", + "description": "imgui bindings for PIXI renderer", + "main": "imgui_impl.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "dist": "rollup -c" + }, + "repository": { + "type": "git", + "url": "https://git.mhack.io/git/mark/imgui-js-pixi.git" + }, + "author": "Mark Bavis", + "license": "ISC", + "dependencies": { + "imgui-js": "git+https://git.mhack.io/git/mark/imgui-js.git" + }, + "devDependencies": { + "rollup": "^1.22.0", + "rollup-plugin-commonjs": "^10.1.0", + "rollup-plugin-node-builtins": "^2.1.2", + "rollup-plugin-node-resolve": "^5.2.0", + "rollup-plugin-typescript2": "^0.24.3", + "typescript": "^3.6.3" + } +} diff --git a/rollup.config.js b/rollup.config.js new file mode 100644 index 0000000..3e11089 --- /dev/null +++ b/rollup.config.js @@ -0,0 +1,34 @@ +import node from "rollup-plugin-node-resolve"; +import commonjs from "rollup-plugin-commonjs"; +import typescript from "rollup-plugin-typescript2"; +import builtins from "rollup-plugin-node-builtins"; + +const plugins = + [ + typescript({ + clean: true, + tsconfigOverride: { + compilerOptions: { + target: "ES2015", + module: "ES2015" + } + } + }), + commonjs(), + builtins(), + node({preferBuiltins: false}) + ]; + +export default [ +{ + input: "imgui_impl.ts", + output: + { + file: "imgui_impl.js", + format: "cjs", + name: "imgui_pixi_js", + sourcemap: true + }, + plugins: plugins +} +] diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..f4b9d36 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,33 @@ +{ + "compilerOptions": + { + "target": "ES2015", + "module": "system", + "esModuleInterop": true, + "noImplicitAny": true, + "listEmittedFiles":true, + "moduleResolution":"node", + "baseUrl": ".", + "sourceMap": true, + "incremental": true, + "paths": { + "*": [ + "src/types/*", + "node_modules/*" + ] + } + }, + "files": + [ + "imgui_impl.ts" + ], + "include": + [ + + "src/types/**/*.d.ts" + ], + "exclude": + [ + "node_modules/**/*" + ] +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..583e8ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +tsconfig.tsbuildinfo +*.swp +node_modules +nohup.out +.rpt2_cache diff --git a/imgui_impl.js b/imgui_impl.js new file mode 100644 index 0000000..0f4a8ec --- /dev/null +++ b/imgui_impl.js @@ -0,0 +1,41080 @@ +'use strict'; + +Object.defineProperty(exports, '__esModule', { value: true }); + +var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +function commonjsRequire () { + throw new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs'); +} + +function unwrapExports (x) { + return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x; +} + +function createCommonjsModule(fn, module) { + return module = { exports: {} }, fn(module, module.exports), module.exports; +} + +var require$$0 = {}; + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +// resolves . and .. elements in a path array with directory names there +// must be no slashes, empty elements, or device names (c:\) in the array +// (so also no leading and trailing slashes - it does not distinguish +// relative and absolute paths) +function normalizeArray(parts, allowAboveRoot) { + // if the path tries to go above the root, `up` ends up > 0 + 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 the path is allowed to go above the root, restore leading ..s + if (allowAboveRoot) { + for (; up--; up) { + parts.unshift('..'); + } + } + + return parts; +} + +// Split a filename into [root, dir, basename, ext], unix version +// 'root' is just a slash, or nothing. +var splitPathRe = + /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; +var splitPath = function(filename) { + return splitPathRe.exec(filename).slice(1); +}; + +// path.resolve([from ...], to) +// posix version +function resolve() { + var resolvedPath = '', + resolvedAbsolute = false; + + for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { + var path = (i >= 0) ? arguments[i] : '/'; + + // Skip empty and invalid entries + if (typeof path !== 'string') { + throw new TypeError('Arguments to path.resolve must be strings'); + } else if (!path) { + continue; + } + + resolvedPath = path + '/' + resolvedPath; + resolvedAbsolute = path.charAt(0) === '/'; + } + + // At this point the path should be resolved to a full absolute path, but + // handle relative paths to be safe (might happen when process.cwd() fails) + + // Normalize the path + resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) { + return !!p; + }), !resolvedAbsolute).join('/'); + + return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; +} +// path.normalize(path) +// posix version +function normalize(path) { + var isPathAbsolute = isAbsolute(path), + trailingSlash = substr(path, -1) === '/'; + + // Normalize the path + path = normalizeArray(filter(path.split('/'), function(p) { + return !!p; + }), !isPathAbsolute).join('/'); + + if (!path && !isPathAbsolute) { + path = '.'; + } + if (path && trailingSlash) { + path += '/'; + } + + return (isPathAbsolute ? '/' : '') + path; +} +// posix version +function isAbsolute(path) { + return path.charAt(0) === '/'; +} + +// posix version +function join() { + var paths = Array.prototype.slice.call(arguments, 0); + return normalize(filter(paths, function(p, index) { + if (typeof p !== 'string') { + throw new TypeError('Arguments to path.join must be strings'); + } + return p; + }).join('/')); +} + + +// path.relative(from, to) +// posix version +function relative(from, to) { + from = resolve(from).substr(1); + to = 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('/'); +} + +var sep = '/'; +var delimiter = ':'; + +function dirname(path) { + var result = splitPath(path), + root = result[0], + dir = result[1]; + + if (!root && !dir) { + // No dirname whatsoever + return '.'; + } + + if (dir) { + // It has a dirname, strip trailing slash + dir = dir.substr(0, dir.length - 1); + } + + return root + dir; +} + +function basename(path, ext) { + var f = splitPath(path)[2]; + // TODO: make this comparison case-insensitive on windows? + if (ext && f.substr(-1 * ext.length) === ext) { + f = f.substr(0, f.length - ext.length); + } + return f; +} + + +function extname(path) { + return splitPath(path)[3]; +} +var require$$1 = { + extname: extname, + basename: basename, + dirname: dirname, + sep: sep, + delimiter: delimiter, + relative: relative, + join: join, + isAbsolute: isAbsolute, + normalize: normalize, + resolve: resolve +}; +function filter (xs, f) { + if (xs.filter) return xs.filter(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + if (f(xs[i], i, xs)) res.push(xs[i]); + } + return res; +} + +// String.prototype.substr - negative index don't work in IE8 +var substr = 'ab'.substr(-1) === 'b' ? + function (str, start, len) { return str.substr(start, len) } : + function (str, start, len) { + if (start < 0) start = str.length + start; + return str.substr(start, len); + } +; + +var bindImgui = createCommonjsModule(function (module, exports) { +var Module = (function() { + var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; + return ( +function(Module) { + Module = Module || {}; + +var Module=typeof Module!=="undefined"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key];}}Module["arguments"]=[];Module["thisProgram"]="./this.program";Module["quit"]=function(status,toThrow){throw toThrow};Module["preRun"]=[];Module["postRun"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window==="object";ENVIRONMENT_IS_WORKER=typeof importScripts==="function";ENVIRONMENT_HAS_NODE=typeof process==="object"&&typeof commonjsRequire==="function";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}else{return scriptDirectory+path}}if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+"/";var nodeFS;var nodePath;Module["read"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require$$0;if(!nodePath)nodePath=require$$1;filename=nodePath["normalize"](filename);ret=nodeFS["readFileSync"](filename);}return binary?ret:ret.toString()};Module["readBinary"]=function readBinary(filename){var ret=Module["read"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret);}assert(ret.buffer);return ret};if(process["argv"].length>1){Module["thisProgram"]=process["argv"][1].replace(/\\/g,"/");}Module["arguments"]=process["argv"].slice(2);process["on"]("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process["on"]("unhandledRejection",abort);Module["quit"]=function(status){process["exit"](status);};Module["inspect"]=function(){return "[Emscripten Module object]"};}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){Module["read"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)};}Module["readBinary"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer==="function"){return new Uint8Array(readbuffer(f))}data=read(f,"binary");assert(typeof data==="object");return data};if(typeof scriptArgs!="undefined"){Module["arguments"]=scriptArgs;}else if(typeof arguments!="undefined"){Module["arguments"]=arguments;}if(typeof quit==="function"){Module["quit"]=function(status){quit(status);};}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href;}else if(document.currentScript){scriptDirectory=document.currentScript.src;}if(_scriptDir){scriptDirectory=_scriptDir;}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf("/")+1);}else{scriptDirectory="";}Module["read"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module["readBinary"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}};}Module["readAsync"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror();};xhr.onerror=onerror;xhr.send(null);};Module["setWindowTitle"]=function(title){document.title=title;};}var out=Module["print"]||(typeof console!=="undefined"?console.log.bind(console):typeof print!=="undefined"?print:null);var err=Module["printErr"]||(typeof printErr!=="undefined"?printErr:typeof console!=="undefined"&&console.warn.bind(console)||out);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key];}}moduleOverrides=undefined;var asm2wasmImports={"f64-rem":function(x,y){return x%y},"debugger":function(){debugger}};var functionPointers=new Array(0);var setTempRet0=function(value){};if(typeof WebAssembly!=="object"){err("no native wasm support detected");}var wasmMemory;var wasmTable;var ABORT=false;function assert(condition,text){if(!condition){abort("Assertion failed: "+text);}}var UTF8Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf8"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str="";while(idx>10,56320|ch&1023);}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023;}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u;}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63;}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63;}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4;}return len}var UTF16Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf-16le"):undefined;var WASM_PAGE_SIZE=65536;var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferViews(){Module["HEAP8"]=HEAP8=new Int8Array(buffer);Module["HEAP16"]=HEAP16=new Int16Array(buffer);Module["HEAP32"]=HEAP32=new Int32Array(buffer);Module["HEAPU8"]=HEAPU8=new Uint8Array(buffer);Module["HEAPU16"]=HEAPU16=new Uint16Array(buffer);Module["HEAPU32"]=HEAPU32=new Uint32Array(buffer);Module["HEAPF32"]=HEAPF32=new Float32Array(buffer);Module["HEAPF64"]=HEAPF64=new Float64Array(buffer);}var DYNAMIC_BASE=5315584,DYNAMICTOP_PTR=72672;var TOTAL_STACK=5242880;var INITIAL_TOTAL_MEMORY=Module["TOTAL_MEMORY"]||16777216;if(INITIAL_TOTAL_MEMORY>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback();continue}var func=callback.func;if(typeof func==="number"){if(callback.arg===undefined){Module["dynCall_v"](func);}else{Module["dynCall_vi"](func,callback.arg);}}else{func(callback.arg===undefined?null:callback.arg);}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;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 ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__);}function preMain(){callRuntimeCallbacks(__ATMAIN__);}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 addOnPostRun(cb){__ATPOSTRUN__.unshift(cb);}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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();}}}Module["preloadedImages"]={};Module["preloadedAudios"]={};var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile="data:application/octet-stream;base64,AGFzbQEAAAAB2AyxAWACf38Bf2ACf38AYAJ8fAF8YAF/AX9gAX8AYAN/f38Bf2AEf39/fwBgA39/fwBgAn9/AX1gBH9/f38Bf2AEf399fwBgAn99AX9gA399fQF/YAZ9fX1/f38AYAR/fX9/AGAFf39/fX8AYAABfGADf31/AGAFf39/f38Bf2AIf39/f39/f38Bf2AHf39/f39/fwF/YAZ/f39/f38Bf2AGf398fH9/AX9gCX9/f39/f39/fwF/YAN9f38AYAl/f39/f39/f38AYAZ/f39/f38AYAJ/fQBgAX8BfWAAAX9gAn19AGABfQBgAAF9YAAAYAN/f30Bf2AGf39/fX9/AGAIf399fX1/f38AYAR/fX99AX9gBn9/fX9/fwBgBX9/f399AGAHf39/f31/fQBgBn9/f399fwBgB39/f39/f38AYAd/f39/f399AGAGf39/f399AGAFf39/f38AYAZ/f31/f30AYAV/f31/fwBgCH9/fX9/f31/AGALf39/f39/f39/f38AYAl/f39/f39/fX8AYAh/f39/f399fwBgBH9/f30AYAZ/f319fX8AYAp/f39/f39/f39/AGADf399AGAGf3x/f39/AX9gA39+fwF+YAF/AXxgA39/fwF9YAR/f319AX9gCH9/fX19f39/AX9gBH9/fX8Bf2AFf399f30Bf2AHf39/fHx/fwF/YAR/f399AX9gBX9/f31/AX9gBn9/f31/fwF/YAp/f39/f39/f39/AX9gA399fQBgB399fX1/f38AYAd/f399fX1/AGAHf39/fX9/fQBgB39/f31/f38AYAl/f399f39/fX8AYAd/f39/f31/AGAIf39/f399f30AYAh/f39/f39/fQBgCH9/f39/f39/AGAKf39/f39/f399fwBgDH9/f39/f39/f39/fwBgDX9/f39/f39/f39/f38AYAN/f3wAYAN/f38BfGABfQF9YAJ9fQF9YAV/fX19fQBgBH9/fX0AYAJ/fQF9YAR9fX19AX9gBX9/f319AGADfX19AX1gAn19AX9gBH19fX0BfWALf319fX19fX19fX8AYAl/f31/f39/fX8AYAp/f31/f39/f31/AGAFf31/f30Bf2AIf399fX9/f38AYAt/f319fX19fX19fQBgCH9/f39/fX1/AGAHf39/fX1/fwBgBX9/fX9/AX9gCH9/f399fX9/AGAHf39/fX19fQBgCn9/fX19fX19fX8AYAx/f319fX19fX19fX8AYAd/fX19fX19AGAEf31/fwF/YAh/f399f39/fQF/YAV/fX9/fwF/YAV/fX5+fwF/YAZ/fX19f30Bf2AGf318fH99AX9gAn98AXxgAn9+AX5gCX9/f399f39/fQF/YAd/f319fX99AX9gCX9/f319fX9/fQF/YAZ/f31/f38Bf2AIf39/fX9/f38Bf2AKf39/f39/f31/fwF/YAl/f39/f399f38Bf2AJf39/fn5/fX9/AX9gCX9/f319f31/fwF/YAl/f398fH99f38Bf2AFfHx8fX0BfWADfHx9AXxgA3x8fAF8YAV9fX19fQF9YAN+fn4BfWADfn5+AX5gBX5+fn19AX1gBX9/f319AX1gB39/f39/f30Bf2AIf39/f39/f30Bf2AGf399fX99AX9gB39/f319f30Bf2AGf399fX9/AX9gB39/f31/fX8AYAl/f39/f399fX8AYAd/f39/fX1/AGAEf319fQF9YAZ/f39/f30Bf2AHf399f39/fQF/YAJ/fgBgAn9/AX5gA35/fwF/YAJ+fwF/YAJ8fwF8YAV/f39/fwF8YAZ/f39/f38BfGACfX8BfWABfAF9YAJ9fwF/YAN/f34AYAF/AX5gAn9/AXxgBH9/f38BfWAHf398f39/fwF/YAV/f399fQF/YAl/f399fX1/f38Bf2AGf39/fX99AX9gCH9/f398fH9/AX9gBX9/f399AX9gBn9/f399fwF/YAd/f39/fX9/AX9gC39/f39/f39/f39/AX9gCX9/f319fX9/fwBgCH9/f399fX1/AGAHf39/f31/fwBgCH9/f399f399AGAIf39/f31/f38AYAp/f39/fX9/f31/AGAJf39/f39/fX99AGAJf39/f39/f399AGALf39/f39/f39/fX8AAvQDNwNlbnYBYgA2A2VudgFjAE4DZW52AWQAGgNlbnYBZQAEA2VudgFmAAADZW52AWcAUQNlbnYBaABTA2VudgFpAAcDZW52AWoAAANlbnYBawAtA2VudgFsACEDZW52AW0ABwNlbnYBbgAAA2VudgFvAAYDZW52AXAAAANlbnYBcQAaA2VudgFyAAQDZW52AXMABANlbnYBdAAEA2VudgF1AAAI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/AYLC0H89gEoAgAhASAAQZypBCgCACABQf8BcUHyBmoRAQALWgEDfyMEIQIjBEEQaiQEIAJBmKkEKAIAIgNBsCtqIABBBHRqIgApAgA3AgAgAiAAKQIINwIIIAIgAioCDCADQZAqaioCACABlJQ4AgwgAhChAyEEIAIkBCAECxYAIAAgASkCADcCACAAIAIpAgA3AggLBgBBNBADCwwAIAAgASAAIAFdGwvGAwEDfyACQYDAAE4EQCAAIAEgAhAjGiAADwsgACEEIAAgAmohAyAAQQNxIAFBA3FGBEADQCAAQQNxBEAgAkUEQCAEDwsgACABLAAAOgAAIABBAWohACABQQFqIQEgAkEBayECDAELCyADQXxxIgJBQGohBQNAIAAgBUwEQCAAIAEoAgA2AgAgACABKAIENgIEIAAgASgCCDYCCCAAIAEoAgw2AgwgACABKAIQNgIQIAAgASgCFDYCFCAAIAEoAhg2AhggACABKAIcNgIcIAAgASgCIDYCICAAIAEoAiQ2AiQgACABKAIoNgIoIAAgASgCLDYCLCAAIAEoAjA2AjAgACABKAI0NgI0IAAgASgCODYCOCAAIAEoAjw2AjwgAEFAayEAIAFBQGshAQwBCwsDQCAAIAJIBEAgACABKAIANgIAIABBBGohACABQQRqIQEMAQsLBSADQQRrIQIDQCAAIAJIBEAgACABLAAAOgAAIAAgASwAAToAASAAIAEsAAI6AAIgACABLAADOgADIABBBGohACABQQRqIQEMAQsLCwNAIAAgA0gEQCAAIAEsAAA6AAAgAEEBaiEAIAFBAWohAQwBCwsgBAsSACAAQbT4ATYCACAAQQRqED4LKgAgACgCEBBbBEBBACEABSAAQQRqIgAsAAtBAEgEQCAAKAIAIQALCyAACxIAIAAgARDpECAAQcD4ATYCAAsQACAALQABIAAtAABBCHRyCyoBAX8jBCEBIwRBEGokBCABIAA2AgBBBBA/IgAgASgCADYCACABJAQgAAslAQF/IAEoAgAhAiAAQgA3AgAgAEEANgIIIAAgAUEEaiACEJMBCwgAQQwQA0EACwcAIABBBGoLJwEBfyAAKAIIIgEEQCAAQQA2AgQgAEEANgIAIAEQQSAAQQA2AggLCw0AIAAoAgggAUECdGoLFgAgACABKgIAIAKUIAEqAgQgApQQMgsp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QCADIAMoApACQQFyNgKQAgtBAQsLBgAgAKiyCw0AIABB1ABqIAEQmgILFAAgASACIAAgACACXhsgACABXRsLEQBBACAAQQRqIAAoAggQWxsLIQAgAEP//39/Q///f38QMiAAQQhqQ///f/9D//9//xAyCxAAIAAoAggiAARAIAAQQQsLFwAgAEEANgIEIABBADYCACAAQQA2AggLIQEBfyMEIQIjBEEQaiQEIAIgATYCACAAIAIQ2gIgAiQEC5gCAQR/IAAgAmohBCABQf8BcSEDIAJBwwBOBEADQCAAQQNxBEAgACADOgAAIABBAWohAAwBCwsgA0EIdCADciADQRB0ciADQRh0ciEBIARBfHEiBUFAaiEGA0AgACAGTARAIAAgATYCACAAIAE2AgQgACABNgIIIAAgATYCDCAAIAE2AhAgACABNgIUIAAgATYCGCAAIAE2AhwgACABNgIgIAAgATYCJCAAIAE2AiggACABNgIsIAAgATYCMCAAIAE2AjQgACABNgI4IAAgATYCPCAAQUBrIQAMAQsLA0AgACAFSARAIAAgATYCACAAQQRqIQAMAQsLCwNAIAAgBEgEQCAAIAM6AAAgAEEBaiEADAELCyAEIAJrC58BAQN/EDwiAiwAf0UEQEGYqQQoAgAhBCABQwAAAABdIQMgAEMAAAAAXARAIAIqArQDQwAAAAAgASADGyACKgIMIAIqAliTIACSkpIhACACKgK4AyEBBSADBEAgBEHUKmoqAgAhAQsgAioC0AEhAAsgAiABIACSOALIASACIAIoAtQBNgLMASACIAIpAvQBNwLoASACIAIoAvwBNgLwAQsLqwECA38BfSMEIQUjBEEQaiQEQZipBCgCACEGIAMEQCABIAIQkAEhAgsgBSEDIAZBsDFqKAIAIQcgBkG0MWoqAgAhCCABIAJGBEAgAEMAAAAAIAgQMgUgAyAHIAhD//9/fyAEIAEgAkEAEJoDIAMqAgAiBEMAAAAAXgRAIAMgBCAIIAcqAgCVkyIEOAIACyADIARDMzNzP5KosjgCACAAIAMpAwA3AgALIAUkBAsnAEGYqQQoAgBBNGogAEECdGooAgAiAEF/SgR/IAAgARD2AgVBAAsLNQECfyMEIQMjBEEQaiQEAn8gACgCACEEIAMgARB3IAQLIAMoAgAgAigCABALIAMQMSADJAQL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KAIIRgRAIAEQ4QELIAEgACABKAIAEPIFIgI2AgAgASACNgIIIAAgARCCAQwFCyABEOEBIAFBADYCCCABQQA2AgAgAUEAOgAPDAQLIAEQ4QEgASAAKAIsIgI2AgggASACNgIAIAFBADoADwwDCyAAKAIsIQQgACABEIIBIAEQ4QEgASwAEARAIAEgBDYCACAEIQIFIAEoAgAiAiAESARAA0ACQAJ/IAAgAhDiAUH//wNxQQpGIQwgASgCACECIAwLDQAgASACQQFqIgI2AgAgAiAESA0BCwsLCyABIAI2AgggAUEAOgAPDAILQQMhAwwBCyAFQYCADEgEQCAFQY2ABGsEQEEDIQMMAgsgASgCBCABKAIIRgRAIAEgACABKAIAEPIFNgIAIAAgARCCAQUgACABELgECwwBCwJAAkACQCAFQYCADGsOAgIAAQsgARDhASABIAEoAghBAWo2AgggACABEIIBIAEgASgCCDYCACABQQA6AA8MAgtBAyEDDAELIAAgARCCASABEOEBIAEoAggiAkEASgRAIAEgAkF/aiICNgIICyABIAI2AgAgAUEAOgAPCyADQQNGBEBBACAFIAVB//8DShsiAkEASgRAAkAgBiACOwEAIAJBCkYEQCABLAAQDQELAkACQCABLAAMRQ0AIAEoAgQgASgCCEcNACABKAIAIgIgACgCLE4NACAAIQUgAUEYaiACQQFBARC5BCIEBEAgBCAFIAIQ4gE7AQALIAAgASgCAEEBENkDIAAgASgCACAGQQEQkgMEQCABIAEoAgBBAWo2AgAgAUEAOgAPCwwBCyAAIAEQkwMgACABKAIAIAZBARCSAwRAIAEgASgCAEEBEPcFIAEgASgCAEEBajYCACABQQA6AA8LCwsLBSADQckARgRAIAEoAgQgASgCCEYEQCABKAIAIgIgACgCLEgEQCAAIAEgAkEBENoDCwUgACABEJMDCyABQQA6AA8FIANBzgBGBEAgASgCBCABKAIIRgRAIAAgARCCASABKAIAIgJBAEoEQCAAIAEgAkF/akEBENoDIAEgASgCAEF/ajYCAAsFIAAgARCTAwsgAUEAOgAPCwsLIAkkBAtIAQF/IAFBGGogAiADQQAQuQQiBEEARyADQQBKcQRAQQAhAQNAIAFBAXQgBGogACABIAJqEOIBOwEAIAFBAWoiASADRw0A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CyQAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAAQQNxQZwLahExAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBA3FBmAtqETYACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBlAtqERkACyIAIAEgAiADIAQgBSAGIAcgCCAJIAogAEEBcUGSC2oRTwALHgAgASACIAMgBCAFIAYgByAIIABBA3FBjgtqEU4ACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBigtqETIACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQYgLahFNAAscACABIAIgAyAEIAUgBiAHIABBB3FBgAtqESoACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQf4KahEzAAscACABIAIgAyAEIAUgBiAHIABBA3FB+gpqESsACxoAIAEgAiADIAQgBSAGIABBD3FB6gpqERoACw0AIABB+ClqQQAQwAELHgAgASACIAMgBCAFIAYgByAIIABBAXFB6ApqEUwACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHmCmoRSwALGgAgASACIAMgBCAFIAYgAEEDcUHiCmoRLAALGAAgASACIAMgBCAFIABBD3FB0gpqES0ACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHQCmoRKAALGgAgASACIAMgBCAFIAYgAEEDcUHMCmoRKQALGAAgASACIAMgBCAFIABBA3FByApqEScACxYAIAEgAiADIAQgAEEfcUGoCmoRBgALIAAgASACIAMgBCAFIAYgByAIIAkgAEEBcUGmCmoRSgALHAAgASACIAMgBCAFIAYgByAAQQFxQaQKahFJAAscACABIAIgAyAEIAUgBiAHIABBAXFBogpqEUgACxoAIAEgAiADIAQgBSAGIABBA3FBngpqESMACxgAIAEgAiADIAQgBSAAQQNxQZoKahEPAAscACABIAIgAyAEIAUgBiAHIABBAXFBmApqEUcACxYAIAEgAiADIAQgAEEDcUGUCmoRNAALFQAgASACIAMgAEH/AHFBlAlqEQcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQZIJahEwAAsaACABIAIgAyAEIAUgBiAAQQFxQZAJahEmAAsaACABIAIgAyAEIAUgBiAAQQFxQY4JahEuAAsYACABIAIgAyAEIAUgAEEDcUGKCWoRLwALFgAgASACIAMgBCAAQQNxQYYJahEKAAseACABIAIgAyAEIAUgBiAHIAggAEEBcUGECWoRJAALGgAgASACIAMgBCAFIAYgAEEBcUGCCWoRNQALFAAgASACIAMgAEEPcUHyCGoRNwALFgAgASACIAMgBCAAQQNxQe4GahEOAAsUACABIAIgAyAAQQFxQewGahERAAscACABIAIgAyAEIAUgBiAHIABBAXFB6gZqEUYACxQAIAEgAiADIABBAXFB6AZqEUUACxQAIAEgAiADIABBAXFB3gRqERgACxoAIAEgAiADIAQgBSAGIABBA3FB2gRqEQ0ACxUAQZipBCgCAEE0aiAAQQJ0aigCAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBAXFBggRqEUQACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBB3FB+gNqERcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQ9xQeoDahETAAscACABIAIgAyAEIAUgBiAHIABBD3FB2gNqERQACxoAIAEgAiADIAQgBSAGIABBH3FBugNqERUACxgAIAEgAiADIAQgBSAAQQ9xQaoDahESAAsWACABIAIgAyAEIABBH3FBigNqEQkACxoAIAEgAiADIAQgBSAGIABBAXFBiANqEUMACxgAIAEgAiADIAQgBSAAQQFxQYYDahFCAAsWACABIAIgAyAEIABBAXFBhANqEUEACxwAIAEgAiADIAQgBSAGIAcgAEEBcUGCA2oRQAALGAAgASACIAMgBCAFIABBAXFBwAJqET8ACxYAIAEgAiADIAQgAEEBcUG+AmoRPgALHgAgASACIAMgBCAFIAYgByAIIABBAXFBvAJqET0ACxYAIAEgAiADIAQgAEEBcUG6AmoRPAALFAAgASACIAMgAEEDcUG2AmoRIgALGgAgASACIAMgBCAFIAYgAEEBcUG0AmoRFgALFgAgASACIAMgBCAAQQFxQbIBahElAAsUACABIAIgAyAAQQFxQbABahEMAAsaACABIAIgAyAEIAUgBiAAQQFxQawBahE4AAsUACABIAIgAyAAQQNxQcgAahE7AAsRACABIAIgAEEfcUEoahEIAAsPACABIABBA3FBJGoRHAALDQAgAEEfcUEEahEgAAsPACABIABBAXFBAmoROgALCgAgAEEBcREQAAvS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AiADIAQgBUEPcUHSCmoRLQAMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIAFBADoANCABQQA6ADUgACgCCCIAKAIAKAIUIQMgACABIAIgAkEBIAQgA0EPcUHqCmoRGgAgAQJ/AkAgASwANQR/IAEsADQNAUEBBUEACyEAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAA0CQQQMAwsLIAANAEEEDAELQQMLNgIsDAILCyADQQFGBEAgAUEBNgIgCwsLC0QBAX8gACABKAIIEIUBBEAgASACIAMgBBCFBQUgACgCCCIAKAIAKAIUIQYgACABIAIgAyAEIAUgBkEPcUHqCmoRGgALCxgAIAAgASgCCBCFAQRAIAEgAiADEIcFCwuPAQAgACABKAIIEIUBBEAgASACIAMQhgUFIAAgASgCABCFAQRAAkAgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASACNgIUIAEgASgCKEEBajYCKCABKAIkQQFGBEAgASgCGEECRgRAIAFBAToANgsLIAFBBDYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwsLGgAgACABKAIIEIUBBEAgASACIAMgBBCFBQsLyQEBA38jBCEEIwRBQGskBCAEIQMgACABEIUBBH9BAQUgAQR/IAFB4PQBEJQEIgEEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyABNgIAIAMgADYCCCADQX82AgwgA0EBNgIwIAEoAgAoAhwhACABIAMgAigCAEEBIABBH3FBqApqEQYAIAMoAhhBAUYEfyACIAMoAhA2AgBBAQVBAAsFQQALBUEACwshBSAEJAQgBQt4AQN/IwQhASMEQRBqJAQgASEAAn9BAEGMrgQoAgBB37femgFGDQAaQbMEESEAQYyuBEHft96aATYCAEEACwRAQZSKAyAAEMICBQJ/An9BAEGQrgQoAgAiACgCBEHOlZoSRw0AGiAAKAIACyECIAEkBCACCw8LQQALowICB38BfiMEIQIjBEEwaiQEIAJBGGohASACQRBqIQMgAiEEIAJBJGohBRDLCyIABEAgACgCACIABEAgACkDMCIHQoB+g0KA1qyZ9MiTpsMAUgRAIAFBiYkDNgIAQdeIAyABEMICCyAAQdAAaiEBIAdCgdasmfTIk6bDAFEEQCAAKAIsIQELIAUgATYCACAAKAIAIgAoAgQhAUHY9AEoAgAoAhAhBkHY9AEgACAFIAZBP3FBwgJqEQUABEAgBSgCACIAKAIAKAIIIQMgACADQT9xQewAahEDACEAIARBiYkDNgIAIAQgATYCBCAEIAA2AghBgYgDIAQQwgIFIANBiYkDNgIAIAMgATYCBEGuiAMgAxDCAgsLC0H9iAMgAkEgahDCAgvVAQEDfyMEIQcjBEEQaiQEQW4gAWsgAkkEQBAKCyAALAALQQBIBH8gACgCAAUgAAshCSABQef///8HSQR/QQsgAUEBdCIIIAEgAmoiAiACIAhJGyICQRBqQXBxIAJBC0kbBUFvCyIIED8hAiAFBEAgAiAGIAUQ9wILIAMgBGsiAyIGBEAgAiAFaiAEIAlqIAYQ9wILIAFBCkcEQCAJEFQLIAAgAjYCACAAIAhBgICAgHhyNgIIIAAgAyAFaiIANgIEIAdBADoAACAAIAJqIAcQlgEgByQEC7MBAQV/IwQhBiMEQRBqJAQgBiEHIAAsAAsiBUEASCIDBH8gACgCCEH/////B3FBf2oFQQoLIgQgAkkEQCAAIAQgAiAEayADBH8gACgCBAUgBUH/AXELIgAgACACIAEQzQsFIAMEfyAAKAIABSAACyIDIQUgAiIEBEAgBSABIAQQswEaCyAHQQA6AAAgAiADaiAHEJYBIAAsAAtBAEgEQCAAIAI2AgQFIAAgAjoACwsLIAYkBAsgAQF/A0AgAUEMbCAAakEAELwDIAFBAWoiAUECRw0ACwtAAQJ/QY/PAhBcIgJBDWoQPyIBIAI2AgAgASACNgIEIAFBADYCCCABQQxqIgFBj88CIAJBAWoQRhogACABNgIAC4kDAQx/IwQhCSMEQRBqJAQgCSEDQfStBCgCAEUEQEH8rQRBgCA2AgBB+K0EQYAgNgIAQYCuBEF/NgIAQYSuBEF/NgIAQYiuBEEANgIAQditBEEANgIAQfStBCADQXBxQdiq1aoFczYCAAtBtKoEKAIAIgwEf0GoqgQoAgAiCkEoaiIGIQVBASEDQdytBCEEA0AgBCgCACIIQQhqIQEgCCAEKAIEaiEHIAhBACABa0EHcUEAIAFBB3EbaiEBA0ACQCABIAxGIAEgB09yDQAgASgCBCICQQdGDQAgAkF4cSILIAZqIQYgAkEDcUEBRiICIANqIQMgC0EAIAIbIAVqIQUgASALaiIBIAhPDQELCyAEKAIIIgEEQCABIQQMAQsLQcytBCgCACIEIAYiAWshB0HQrQQoAgAhAiAEIAVrBUEAIQNBAAshBiAAIAE2AgAgACADNgIEIABCADcCCCAAIAc2AhAgACACNgIUIABBADYCGCAAIAY2AhwgACAFNgIgIAAgCjYCJCAJJAQLkQcBCH8gACgCBCIGQXhxIQICQCAGQQNxRQRAIAFBgAJJDQEgAiABQQRqTwRAIAIgAWtB/K0EKAIAQQF0TQRAIAAPCwsMAQsgACACaiEEIAIgAU8EQCACIAFrIgJBD00EQCAADwsgACABIAZBAXFyQQJyNgIEIAAgAWoiASACQQNyNgIEIAQgBCgCBEEBcjYCBCABIAIQjAcgAA8LQbSqBCgCACAERgRAQaiqBCgCACACaiICIAFNDQEgACABIAZBAXFyQQJyNgIEIAAgAWoiAyACIAFrIgFBAXI2AgRBtKoEIAM2AgBBqKoEIAE2AgAgAA8LQbCqBCgCACAERgRAQaSqBCgCACACaiIDIAFJDQEgAyABayICQQ9LBEAgACABIAZBAXFyQQJyNgIEIAAgAWoiASACQQFyNgIEIAAgA2oiAyACNgIAIAMgAygCBEF+cTYCBAUgACADIAZBAXFyQQJyNgIEIAAgA2oiASABKAIEQQFyNgIEQQAhAUEAIQILQaSqBCACNgIAQbCqBCABNgIAIAAPCyAEKAIEIgNBAnENACACIANBeHFqIgcgAUkNACADQQN2IQUgA0GAAkkEQCAEKAIIIgIgBCgCDCIDRgRAQZyqBEGcqgQoAgBBASAFdEF/c3E2AgAFIAIgAzYCDCADIAI2AggLBQJAIAQoAhghCCAEKAIMIgIgBEYEQAJAIARBEGoiA0EEaiIFKAIAIgIEQCAFIQMFIAMoAgAiAkUEQEEAIQIMAgsLA0ACQCACQRRqIgUoAgAiCUUEQCACQRBqIgUoAgAiCUUNAQsgBSEDIAkhAgwBCwsgA0EANgIACwUgBCgCCCIDIAI2AgwgAiADNgIICyAIBEAgBCgCHCIDQQJ0QcysBGoiBSgCACAERgRAIAUgAjYCACACRQRAQaCqBEGgqgQoAgBBASADdEF/c3E2AgAMAwsFIAhBEGoiAyAIQRRqIAMoAgAgBEYbIAI2AgAgAkUNAgsgAiAINgIYIAQoAhAiAwRAIAIgAzYCECADIAI2AhgLIAQoAhQiAwRAIAIgAzYCFCADIAI2AhgLCwsLIAcgAWsiAkEQSQRAIAAgByAGQQFxckECcjYCBCAAIAdqIgEgASgCBEEBcjYCBAUgACABIAZBAXFyQQJyNgIEIAAgAWoiASACQQNyNgIEIAAgB2oiAyADKAIEQQFyNgIEIAEgAhCMBwsgAA8LQQALnwwCB38IfSABvCIFQf////8HcSIDRSAAvCIHQYCAgPwDRnIEQEMAAIA/DwsgB0H/////B3EiAkGAgID8B0sgA0GAgID8B0tyBEAgACABkg8LIAdBAEgiCAR/IANB////2wRLBH9BAgUgA0H////7A0sEf0ECIANBlgEgA0EXdmsiBHYiBkEBcWtBACADIAYgBHRGGwVBAAsLBUEACyEEAkAgBUH/////B3EiBkGAgID8B0gEQCAGQYCAgPwDaw0BIABDAACAPyAAlSAFQX9KGw8FIAZBgICA/AdrDQEgAkGAgID8A0YEQEMAAIA/DwsgBUF/SiEDIAJBgICA/ANLBEAgAUMAAAAAIAMbDwVDAAAAACABjCADGw8LAAsACyAFQYCAgIAERgRAIAAgAJQPCyAFQYCAgPgDRiAHQX9KcQRAIACRDwsgAIshCQJAAkACQCACRSACQYCAgIAEckGAgID8B0ZyBEBDAACAPyAJlSAJIAVBAEgbIQAgCEUEQCAADwsgAkGAgICEfGogBHIEQCAAjCAAIARBAUYbDwsMAQsgCARAAkACQAJAIAQOAgQAAQtDAACAvyELDAELQwAAgD8hCwsFQwAAgD8hCwsgA0GAgIDoBEsEQAJAIAJB+P//+wNJBEAgC0PK8klxlEPK8klxlCALQ2BCog2UQ2BCog2UIAVBAEgbDwsgAkGHgID8A00EQCAJQwAAgL+SIgBDAKq4P5QiCiAAQ3Cl7DaUIAAgAJRDAAAAPyAAQ6uqqj4gAEMAAIA+lJOUk5RDO6q4P5STIgmSvEGAYHG+IgAgCpMhCgwBCyALQ8rySXGUQ8rySXGUIAtDYEKiDZRDYEKiDZQgBUEAShsPCwUgCUMAAIBLlLwgAiACQYCAgARJIgIbIgNBF3VB6X5BgX8gAhtqIQQgA0H///8DcSIDQYCAgPwDciECIANB8ojzAEkEQCACIQNBACECBSACIAJBgICAfGogA0HX5/YCSSICGyEDIAQgAkEBc0EBcWohBAsgAkECdEHggwJqKgIAIg4gA74iCiACQQJ0QdCDAmoqAgAiDJMiDUMAAIA/IAwgCpKVIg+UIgm8QYBgcb4iACAAIACUIhBDAABAQJIgCSAAkiAPIA0gA0EBdUGA4P//fXFBgICAgAJyQYCAgAJqIAJBFXRqviINIACUkyAKIA0gDJOTIACUk5QiCpQgCSAJlCIAIACUIAAgACAAIAAgAENC8VM+lENVMmw+kpRDBaOLPpKUQ6uqqj6SlEO3bds+kpRDmpkZP5KUkiIMkrxBgGBxviIAlCINIAogAJQgCSAMIABDAABAwJIgEJOTlJIiCZK8QYBgcb4iAEMAQHY/lCIKIAJBAnRB2IMCaioCACAJIAAgDZOTQ084dj+UIABDxiP2OJSTkiIJkpIgBLIiDJK8QYBgcb4iACAMkyAOkyAKkyEKCyAJIAqTIAGUIAEgBUGAYHG+IgmTIACUkiEBIAAgCZQiACABkiIJvCICQYCAgJgESg0BAkACQCACQYCAgJgERgRAIAFDPKo4M5IgCSAAk14EQAwFBUGAgICYBCEDDAILAAUCQCACQf////8HcSIDQYCA2JgESw0GIAEgCSAAk19FIAJBgIDYmHxHcgRAIANBgICA+ANLBEAMBAUgAiEDQQAhAgwCCwALDAYLCwwBCyACQYCAgAQgA0EXdkGCf2p2aiIEQRd2Qf8BcSEFIAEgACAEQYCAgHwgBUGBf2p1cb6TIgCSvCEDQQAgBEH///8DcUGAgIAEckGWASAFa3YiBGsgBCACQQBIGyECCyALQwAAgD8gA0GAgH5xviIJQwByMT+UIgogCUOMvr81lCABIAkgAJOTQxhyMT+UkiIJkiIAIAAgACAAlCIBIAEgASABIAFDTLsxM5RDDurdtZKUQ1WzijiSlENhCza7kpRDq6oqPpKUkyIBlCABQwAAAMCSlSAJIAAgCpOTIgEgACABlJKTIACTkyIAvCACQRd0aiIDQYCAgARIBH0gACACEO0LBSADvguUDwsgACAAkyIAIACVDwsgC0PK8klxlEPK8klxlA8LIAtDYEKiDZRDYEKiDZQL3AMCCX8BfSMEIQUjBEEgaiQEQZipBCgCACIAQcwyaigCACIBIABByDJqIgIoAgBHBEAQpgcgAigCACEBCyAAQdAyaiABNgIAIABBADYC9AYgAEEANgLwBiAAQQA2AuwGIABBwDdqIgYQzwsgBUEIaiIHIABB3DVqKAIAIgEEfyAHIAEoAghBgMAAcQR/QQAFIAEoAvAFCyIBNgIAIABB5DVqKAIABSAHQQA2AgBBACEBQQALIgg2AgQgAEHUMmoiBCgCAARAA0AgBCADEFAoAgAiAhCIBQRAIAEgAkYgAigCCEGAgIAIcUEAR3IgAiAIRnJFBEAgAhCKBwsLIANBAWoiAyAEKAIARw0ACwsgBUEQaiEEIAUhAiABIQNBACEBA0AgAwRAIAMQiAUEQCADEIoHCwsgAUEBaiIBQQJHBEAgAUECdCAHaigCACEDDAELCyAGELkMIAAsALwBBEAgAiAAKQLwATcDACAAQaQraioCACEJIABB0DhqKAIAIQEgBCACKQIANwIAIABB3DdqIAQgCSABEI0JCyAAQfQ3aigCAARAIAYgAEHcN2oQhwcLIAYgAEGcN2oQugsgACAAQaw3aigCADYC7AYgACAAQag3aigCADYC8AYgBSQEC+YPAwt/An4IfCABvSINQiCIpyIFQf////8HcSIDIA2nIgZyRQRARAAAAAAAAPA/DwsgAL0iDkIgiKciB0GAgMD/A0YgDqciCEUiCnEEQEQAAAAAAADwPw8LAkACQAJAIAdB/////wdxIgRBgIDA/wdNBEAgBEGAgMD/B0YgCEEAR3EgA0GAgMD/B0tyRQRAIANBgIDA/wdGIgsgBkEAR3FFBEACQAJAAkAgB0EASCIJRQ0AIANB////mQRLBH9BAiECDAEFIANB//+//wNLBH8gA0EUdiECIANB////iQRLBEBBAiAGQbMIIAJrIgJ2IgxBAXFrQQAgBiAMIAJ0RhshAgwDCyAGBH9BAAVBAiADQZMIIAJrIgJ2IgZBAXFrQQAgAyAGIAJ0RhshAgwECwUMAgsLIQIMAgsgBkUNAAwBCyALBEAgCCAEQYCAwIB8anJFBEBEAAAAAAAA8D8PCyAFQX9KIQIgBEH//7//A0sEQCABRAAAAAAAAAAAIAIbDwVEAAAAAAAAAAAgAZogAhsPCwALIANBgIDA/wNGBEAgAEQAAAAAAADwPyAAoyAFQX9KGw8LIAVBgICAgARGBEAgACAAog8LIAVBgICA/wNGIAdBf0pxBEAgAJ8PCwsgAJkhDyAKBEAgBEUgBEGAgICABHJBgIDA/wdGcgRARAAAAAAAAPA/IA+jIA8gBUEASBshACAJRQRAIAAPCyAEQYCAwIB8aiACcgRAIACaIAAgAkEBRhsPCwwFCwsgCQRAAkACQAJAIAIOAgcAAQtEAAAAAAAA8L8hEQwBC0QAAAAAAADwPyERCwVEAAAAAAAA8D8hEQsgA0GAgICPBEsEQAJAIANBgIDAnwRLBEAgBEGAgMD/A0kEQCMDRAAAAAAAAAAAIAVBAEgbDwUjA0QAAAAAAAAAACAFQQBKGw8LAAsgBEH//7//A0kEQCARRJx1AIg85Dd+okScdQCIPOQ3fqIgEURZ8/jCH26lAaJEWfP4wh9upQGiIAVBAEgbDwsgBEGAgMD/A00EQCAPRAAAAAAAAPC/oCIARAAAAGBHFfc/oiIQIABERN9d+AuuVD6iIAAgAKJEAAAAAAAA4D8gAERVVVVVVVXVPyAARAAAAAAAANA/oqGioaJE/oIrZUcV9z+ioSIPoL1CgICAgHCDvyIAIBChIRAMAQsgEUScdQCIPOQ3fqJEnHUAiDzkN36iIBFEWfP4wh9upQGiRFnz+MIfbqUBoiAFQQBKGw8LBSAPRAAAAAAAAEBDoiIAvUIgiKcgBCAEQYCAwABJIgUbIgJBFHVBzHdBgXggBRtqIQQgAkH//z9xIgNBgIDA/wNyIQIgA0GPsQ5JBEAgAiEDQQAhAgUgAiACQYCAQGogA0H67C5JIgIbIQMgBCACQQFzQQFxaiEECyACQQN0QcDpAWorAwAiFCAAIA8gBRu9Qv////8PgyADrUIghoS/IhAgAkEDdEGg6QFqKwMAIhKhIhNEAAAAAAAA8D8gEiAQoKMiFaIiD71CgICAgHCDvyIAIAAgAKIiFkQAAAAAAAAIQKAgDyAAoCAVIBMgA0EBdUGAgICAAnJBgIAgaiACQRJ0aq1CIIa/IhMgAKKhIBAgEyASoaEgAKKhoiIQoiAPIA+iIgAgAKIgACAAIAAgACAARO9ORUoofso/okRl28mTSobNP6CiRAFBHalgdNE/oKJETSaPUVVV1T+gokT/q2/btm3bP6CiRAMzMzMzM+M/oKKgIhKgvUKAgICAcIO/IgCiIhMgECAAoiAPIBIgAEQAAAAAAAAIwKAgFqGhoqAiD6C9QoCAgIBwg78iAEQAAADgCcfuP6IiECACQQN0QbDpAWorAwAgDyAAIBOhoUT9AzrcCcfuP6IgAET1AVsU4C8+PqKhoCIPoKAgBLciEqC9QoCAgIBwg78iACASoSAUoSAQoSEQCyAPIBChIAGiIAEgDUKAgICAcIO/Ig+hIACioCEBIAAgD6IiACABoCIPvSINQiCIpyECIA2nIQMgAkH//7+EBEoEQCADIAJBgIDA+3tqciABRP6CK2VHFZc8oCAPIAChZHINBQUgAkGA+P//B3FB/5fDhARLBEAgAyACQYDovPsDanIgASAPIAChZXINBwsLIAJB/////wdxIgNBgICA/wNLBH8gAkGAgMAAIANBFHZBgnhqdmoiA0EUdkH/D3EhBCABIAAgA0GAgEAgBEGBeGp1ca1CIIa/oSIAoL0hDUEAIANB//8/cUGAgMAAckGTCCAEa3YiA2sgAyACQQBIGwVBAAshAiARRAAAAAAAAPA/IA1CgICAgHCDvyIPRAAAAABDLuY/oiIQIAEgDyAAoaFE7zn6/kIu5j+iIA9EOWyoDGFcID6ioSIPoCIAIAAgACAAoiIBIAEgASABIAFE0KS+cmk3Zj6iRPFr0sVBvbu+oKJELN4lr2pWET+gokSTvb4WbMFmv6CiRD5VVVVVVcU/oKKhIgGiIAFEAAAAAAAAAMCgoyAPIAAgEKGhIgEgACABoqChIAChoSIAvSINQiCIpyACQRR0aiIDQYCAwABIBHwgACACEIYCBSANQv////8PgyADrUIghoS/C6IPCwsLIAAgAaAPCyAAIAChIgAgAKMPCyARRJx1AIg85Dd+okScdQCIPOQ3fqIPCyARRFnz+MIfbqUBokRZ8/jCH26lAaIL8wMBBn8CQAJAIAG8IgVB/////wdxIgZBgICA/AdLDQAgALwiAkH/////B3EiA0GAgID8B0sNAAJAIAVBgICA/ANGBEAgABCOByEADAELIAJBH3YiByAFQR52QQJxciECIANFBEACQAJAAkAgAkEDcQ4EBAQAAQILQ9sPSUAhAAwDC0PbD0nAIQAMAgsLAkAgBUH/////B3EiBEGAgID8B0gEQCAEDQFD2w/Jv0PbD8k/IAcbIQAMAgUgBEGAgID8B2sNASACQf8BcSEEIANBgICA/AdGBEACQAJAAkACQAJAIARBA3EOBAABAgMEC0PbD0k/IQAMBwtD2w9JvyEADAYLQ+TLFkAhAAwFC0PkyxbAIQAMBAsFAkACQAJAAkACQCAEQQNxDgQAAQIDBAtDAAAAACEADAcLQwAAAIAhAAwGC0PbD0lAIQAMBQtD2w9JwCEADAQLCwsLIANBgICA/AdGIAZBgICA6ABqIANJcgRAQ9sPyb9D2w/JPyAHGyEADAELIAVBAEggA0GAgIDoAGogBklxBH1DAAAAAAUgACABlYsQjgcLIQACQAJAAkAgAkEDcQ4DAwABAgsgAIwhAAwCC0PbD0lAIABDLr27M5KTIQAMAQsgAEMuvbszkkPbD0nAkiEACwwBCyAAIAGSIQALIAAL4gICAn8CfSAAvCICQf////8HcSIBQf////sDSwRAIAFBgICA/ANGBEBD2g9JQEMAAAAAIAJBAEgbDwVDAAAAACAAIACTlQ8LAAsgAUGAgID4A0kEQCABQYGAgJQDSQRAQ9oPyT8PC0PaD8k/IABDaCGiMyAAIACUIgMgA0O6Ey+9IANDa9MNPJSTlEN1qio+kpRDAACAPyADQ67lND+Uk5UgAJSTk5MPCyACQQBIBH1D2g/JPyAAQwAAgD+SQwAAAD+UIgCRIgMgACAAQ7oTL70gAENr0w08lJOUQ3WqKj6SlEMAAIA/IABDruU0P5STlSADlENoIaKzkpKTQwAAAECUBUMAAIA/IACTQwAAAD+UIgCRIgS8QYBgcb4hAyAAIABDuhMvvSAAQ2vTDTyUk5RDdaoqPpKUQwAAgD8gAEOu5TQ/lJOVIASUIAAgAyADlJMgBCADkpWSIAOSQwAAAECUCwvIAQEDfyACKAJMQX9KBH9BAQVBAAsaIAIgAiwASiIDIANB/wFqcjoASiABIQUCQCACKAIIIAIoAgQiA2siBEEASgR/IAAgAyAEIAUgBCAFSRsiAxBGGiACIAIoAgQgA2o2AgQgACADaiEAIAUgA2sFIAULIgNFDQAgACEEIAMhAANAAkAgAhClBw0AIAIgBCAAIAIoAiBBP3FBwgJqEQUAIgNBAWpBAkkNACAAIANrIgBFDQIgAyAEaiEEDAELCyAFIABrIQELIAELewEBfwJAIAAoAkxBAE4EQAJAIAAsAEtBCkYNACAAKAIUIgEgACgCEE8NACAAIAFBAWo2AhQgAUEKOgAADAILIAAQlAcMAQsgACwAS0EKRwRAIAAoAhQiASAAKAIQSQRAIAAgAUEBajYCFCABQQo6AAAMAgsLIAAQlAcLC2QCAX8BfiAAKAIoIQEgAEIAIAAoAgBBgAFxBH9BAkEBIAAoAhQgACgCHEsbBUEBCyABQQFxQYQEahE5ACICQgBZBEAgACgCFCAAKAIca6wgAiAAKAIIIAAoAgRrrH18IQILIAILlgIBAn8CQAJAIAEiBCAAc0EDcQ0AAkAgAkEARyIDIARBA3FBAEdxBEADQCAAIAEsAAAiAzoAACADRQ0CIABBAWohACACQX9qIgJBAEciAyABQQFqIgFBA3FBAEdxDQALCyADBEAgASwAAARAIAJBA0sEQANAIAEoAgAiA0GAgYKEeHFBgIGChHhzIANB//37d2pxRQRAIAAgAzYCACABQQRqIQEgAEEEaiEAIAJBfGoiAkEDSw0BCwsLDAMLBUEAIQILCwwBCyABIQMgAgR/IAIhAQN/IAAgAywAACICOgAAIAJFBEAgASECDAMLIANBAWohAyAAQQFqIQAgAUF/aiIBDQBBAAsFQQALIQILIABBACACEGoaC8YHARF/IwQhDCMEQaAIaiQEIAwhDSAMQYAIaiILQgA3AwAgC0IANwMIIAtCADcDECALQgA3AxgCQAJAQZyUAiwAACICBEACQANAIAAgBmosAABFBEBBACEADAILIAJB/wFxIgFBBXZBAnQgC2oiAiACKAIAQQEgAUEfcXRyNgIAIAFBAnQgDWogBkEBaiIGNgIAIAZBnJQCaiwAACICDQALIAZBAUsiCQRAQQEhA0F/IQFBASEEQQEhBQNAIAEgBGpBnJQCaiwAACICIANBnJQCaiwAACIIRgRAIAQgBUYEfyAFIAdqIQdBAQUgBEEBagshBCABIQIFIAJB/wFxIAhB/wFxSgR/IAEhAkEBIQQgAyIHIAFrBSAHIgJBAWohB0EBIQRBAQshBQsgBCAHaiIDIAZJBEAgAiEBDAELCyAJBEBBASEJQX8hB0EAIQRBASEIQQEhAwNAIAcgCGpBnJQCaiwAACIBIAlBnJQCaiwAACIKRgRAIAMgCEYEfyADIARqIQRBAQUgCEEBagshCCAHIQEFIAFB/wFxIApB/wFxSAR/QQEhCCAJIgQgByIBawUgBCIBQQFqIQRBASEIQQELIQMLIAQgCGoiCSAGTw0FIAEhBwwAAAsABUF/IQFBASEDDAQLAAVBfyECQX8hAUEBIQVBASEDDAMLAAsFQX8hAkF/IQFBASEFQQEhAwwBCwwBCyAGQT9yIQ4gBkF/aiEPQZyUAiADIAUgAUEBaiACQQFqSyIDGyIHQZyUAmogASACIAMbIgpBAWoiBBDFAgR/IAogBiAKa0F/aiIBIAogAUsbQQFqIgEhByAGIAFrIQhBAAUgBiAHayIICyIJQQBHIRBBACEDIAAhAgNAIAIgACIBayAGSQRAIAJBACAOEOkBIgUEfyAFIAFrIAZJBH9BACEADAQFIAULBSACIA5qCyECCyAAIA9qLQAAIgFBBXZBAnQgC2ooAgBBASABQR9xdHEEQAJAIAYgAUECdCANaigCAGsiAQRAIAggASAQIANBAEdxIAEgB0lxGyEFQQAhAQwBCyAEIAMgBCADSyIRGyIBQZyUAmosAAAiBQRAAkADQCAAIAFqLQAAIAVB/wFxRgRAIAFBAWoiAUGclAJqLAAAIgVFDQIMAQsLIAEgCmshBUEAIQEMAgsLIBFFDQMgBCEBA0AgAUF/aiIBQZyUAmosAAAgACABaiwAAEcEQCAHIQUgCSEBDAILIAEgA0sNAAsMAwsFIAYhBUEAIQELIAAgBWohACABIQMMAAALAAsgDCQEIAALqgEBBH9Bn5QCLQAAQZyUAi0AAEEYdEGdlAItAABBEHRyQZ6UAi0AAEEIdHJyIgMgAEEDaiIBLAAAIgRB/wFxIAAtAABBGHQgAC0AAUEQdHIgAC0AAkEIdHJyIgJGIARFIgByRQRAIAEhACACIQEDfyADIABBAWoiACwAACICQf8BcSABQQh0ciIBRiACRSICcgR/IAAhASACBQwBCwshAAtBACABQX1qIAAbC5QBAQN/IAAtAABBGHQgAC0AAUEQdHIgAEECaiIALAAAIgFB/wFxQQh0ciICQZyUAi0AAEEYdEGdlAItAABBEHRyQZ6UAi0AAEEIdHIiA0YgAUUiAXJFBEAgAiEBA38gAyAAQQFqIgAsAAAiAkH/AXEgAXJBCHQiAUYgAkUiAnIEfyACBQwBCwshAQtBACAAQX5qIAEbC3cBA39BnZQCLQAAQZyUAi0AAEEIdHIhAyAAQQFqIgEsAAAiAgR/An8gAkH/AXEgAC0AAEEIdHIhAANAIAMgAEH//wNxIgBHBEAgAUEBaiIBLAAAIgJB/wFxIABBCHRyIQBBACACRQ0CGgwBCwsgAUF/agsFQQALC4wBAQF/QZyUAiwAACIBBH8gACABEKcCIgAEf0GdlAIsAAAEfyAALAABBH8Cf0GelAIsAABFBEAgABDfCwwBCyAALAACBH9Bn5QCLAAARQRAIAAQ3gsMAgsgACwAAwR/QaCUAiwAAAR/IAAQ3AsFIAAQ3QsLBUEACwVBAAsLBUEACwUgAAsFQQALBSAACwuhAQEBfiABQQFGBEBCACAAKAIIIAAoAgRrrH0hAgsCfwJAIAAoAhQgACgCHE0NACAAQQBBACAAKAIkQT9xQcICahEFABogACgCFA0AQX8MAQsgAEEANgIQIABBADYCHCAAQQA2AhQgACACIAEgACgCKEEBcUGEBGoROQBCAFMEf0F/BSAAQQA2AgggAEEANgIEIAAgACgCAEFvcTYCAEEACwsLVgEDfyAAKAJUIgNBACACQYACaiIFEOkBIQQgASADIAQgA2sgBSAEGyIBIAIgASACSRsiAhBGGiAAIAIgA2o2AgQgACABIANqIgE2AgggACABNgJUIAILVQEDfyMEIQIjBEEQaiQEIAIiAyAAKAIANgIAA0AgAygCAEEDakF8cSIAKAIAIQQgAyAAQQRqNgIAIAFBf2ohACABQQFLBEAgACEBDAELCyACJAQgBAvLFAMRfwN+AXwjBCEQIwRBoAJqJAQgACgCTEF/SgR/QQEFQQALGiAQQYgCaiEPIBAiCUGEAmohESAJQZACaiESIAEsAAAiCwRAAkACQAJAAkACQANAAkAgC0H/AXEQ+wIEQANAIAFBAWoiAy0AABD7AgRAIAMhAQwBCwsgAEIAEMEBA0AgACgCBCIDIAAoAmhJBH8gACADQQFqNgIEIAMtAAAFIAAQWQsQ+wINAAsgACgCaARAIAAgACgCBEF/aiILNgIEBSAAKAIEIQsLIAsgACgCCGusIAApA3ggFHx8IRQFAkAgASwAAEElRiIHBEACQAJ/AkACQCABQQFqIgMsAAAiBEElaw4GAwEBAQEAAQtBACEHIAFBAmoMAQsgBEH/AXEQqAIEQCABLAACQSRGBEAgAiADLQAAQVBqEOMLIQcgAUEDagwCCwsgAigCAEEDakF8cSIBKAIAIQcgAiABQQRqNgIAIAMLIgEtAAAQqAIEf0EAIQQDfyABLQAAIARBCmxBUGpqIQQgAUEBaiIBLQAAEKgCDQAgAQsFQQAhBCABCyIDQQFqIQggAywAACIKQe0ARgR/IAgsAAAhCkEAIQUgA0ECaiEBIAghA0EAIQYgB0EARwUgCCEBQQALIQtBAQJ/AkACQAJAAkACQAJAIApBwQBrDjoFDgUOBQUFDg4ODgQODg4ODg4FDg4ODgUODgUODg4ODgUOBQUFBQUABQIOAQ4FBQUODgUDBQ4OBQ4DDgsgA0ECaiABIAEsAABB6ABGIgMbIQFBfkF/IAMbDAULIANBAmogASABLAAAQewARiIDGyEBQQNBASADGwwEC0EDDAMLQQEMAgtBAgwBCyADIQFBAAsgAS0AACIDQS9xQQNGIggbIQwCQAJAAkACQCADQSByIAMgCBsiDUH/AXEiCEEYdEEYdUHbAGsOFAMCAgICAgICAAICAgICAgICAgIBAgsgBEEBIARBAUobIQQMAgsgByAMIBQQkwcMBAsgAEIAEMEBA0AgACgCBCIDIAAoAmhJBH8gACADQQFqNgIEIAMtAAAFIAAQWQsQ+wINAAsgACgCaARAIAAgACgCBEF/aiIDNgIEBSAAKAIEIQMLIAMgACgCCGusIAApA3ggFHx8IRQLIAAgBKwiFRDBASAAKAIEIgogACgCaCIDSQRAIAAgCkEBajYCBAUgABBZQQBIDQggACgCaCEDCyADBEAgACAAKAIEQX9qNgIECwJAAkACQAJAAkACQAJAAkAgCEEYdEEYdUHBAGsOOAUHBwcFBQUHBwcHBwcHBwcHBwcHBwcHAQcHAAcHBwcHBQcAAwUFBQcEBwcHBwcCAQcHAAcDBwcBBwsgDUEQckHzAEYEQCAJQX9BgQIQahogCUEAOgAAIA1B8wBGBEAgCUEAOgAhIAlBADYBCiAJQQA6AA4LIAEhAwUCQCAJIAFBAWoiAywAAEHeAEYiCiIIQYECEGoaIAlBADoAAAJAAkACQCABQQJqIAMgChsiAywAAEEtayIBBEAgAUEwRgRADAIFDAMLAAsgCSAIQQFzIgo6AC4gA0EBaiEDDAILIAkgCEEBcyIKOgBeIANBAWohAwwBCyAIQQFzIQoLA0ACQAJAIAMsAAAiAQ5eEwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAwELAkAgA0EBaiIILAAAIgEiEwRAIBNB3QBHDQELQS0hAQwBCyADQX9qLQAAIgMgAUH/AXFIBH8gAyEBA38gAUEBaiIBIAlqIAo6AAAgASAILAAAIgNB/wFxSQ0AIAMhASAICwUgCAshAwsgAUH/AXFBAWogCWogCjoAACADQQFqIQMMAAALAAsLIARBAWpBHyANQeMARiINGyEBIAtBAEchCCAMQQFGIgwEfyAIBEAgAUECdBDJASIFRQRAQQAhBUEAIQYMEQsFIAchBQsgD0EANgIAIA9BADYCBEEAIQYDQAJAIAVFIQoDQANAAkAgACgCBCIEIAAoAmhJBH8gACAEQQFqNgIEIAQtAAAFIAAQWQsiBEEBaiAJaiwAAEUNAyASIAQ6AAACQAJAIBEgEiAPEO4LQX5rDgIBAAILQQAhBgwVCwwBCwsgCkUEQCAGQQJ0IAVqIBEoAgA2AgAgBkEBaiEGCyABIAZGIAhxRQ0ACyAFIAFBAXRBAXIiAUECdBCNByIEBEAgBCEFDAIFQQAhBgwSCwALCyAPIgEEfyABKAIARQVBAQsEfyAGIQRBACEGIAUFQQAhBgwQCwUCfyAIBEAgARDJASIGRQRAQQAhBUEAIQYMEgtBACEFA0ADQCAAKAIEIgQgACgCaEkEfyAAIARBAWo2AgQgBC0AAAUgABBZCyIEQQFqIAlqLAAARQRAIAUhBEEAIQVBAAwECyAFIAZqIAQ6AAAgASAFQQFqIgVHDQALIAYgAUEBdEEBciIBEI0HIgQEQCAEIQYMAQVBACEFDBMLAAALAAsgB0UEQANAIAAoAgQiASAAKAJoSQR/IAAgAUEBajYCBCABLQAABSAAEFkLQQFqIAlqLAAADQBBACEEQQAhBkEAIQVBAAwCAAsAC0EAIQQDfyAAKAIEIgEgACgCaEkEfyAAIAFBAWo2AgQgAS0AAAUgABBZCyIBQQFqIAlqLAAABH8gBCAHaiABOgAAIARBAWohBAwBBSAHIQZBACEFQQALCwsLIQEgACgCaARAIAAgACgCBEF/aiIKNgIEBSAAKAIEIQoLIAApA3ggCiAAKAIIa6x8IhZCAFEEQCABIQUMDAsgDUEBcyAVIBZRckUEQCABIQUMDAsgCARAIAwEQCAHIAU2AgAFIAcgBjYCAAsLIA1FBEAgBQRAIARBAnQgBWpBADYCAAsgBkUEQCABIQUgAyEBQQAhBgwICyAEIAZqQQA6AAALIAEhBSADIQEMBgtBECEDDAQLQQghAwwDC0EKIQMMAgtBACEDDAELIAAgDEEAEJoHIRcgACkDeEIAIAAoAgQgACgCCGusfVENBiAHBEACQAJAAkAgDA4DAAECBQsgByAXtjgCAAwECyAHIBc5AwAMAwsgByAXOQMADAILDAELIAAgAxD9CyEVIAApA3hCACAAKAIEIAAoAghrrH1RDQUgDUHwAEYgB0EAR3EEQCAHIBU+AgAFIAcgDCAVEJMHCwsgB0EARyAOaiEOIAAoAgQgACgCCGusIAApA3ggFHx8IRQMAgsLIABCABDBASAAKAIEIgMgACgCaEkEfyAAIANBAWo2AgQgAy0AAAUgABBZCyIDIAEgB2oiAS0AAEcNBCAUQgF8IRQLCyABQQFqIgEsAAAiCw0BDAYLCwwDCyAAKAJoBEAgACAAKAIEQX9qNgIECyADQX9KIA5yDQNBACELDAELIA5FDQAMAQtBfyEOCyALBEAgBhBUIAUQVAsLCyAQJAQgDgsLACAAIAEgAhDiCwtHAQJ/IwQhAyMEQZABaiQEIANBAEGQARBqGiADQTY2AiAgAyAANgIsIANBfzYCTCADIAA2AlQgAyABIAIQ5AshBCADJAQgBAsvAQJ/IAAQjAUiASgCADYCOCABKAIAIgIEQCACIAA2AjQLIAEgADYCAEGQqgQQEguXAwEHfyMEIQMjBEFAayQEIANBKGohBCADQRhqIQUgA0EQaiEHIAMhBiADQThqIQhB/YcDIAEsAAAQpwIEQEGYCRDJASICBEAgAkEAQZABEGoaIAFBKxCnAkUEQCACQQhBBCABLAAAQfIARhs2AgALIAFB5QAQpwIEQCAGIAA2AgAgBkECNgIEIAZBATYCCEHdASAGEA4aCyABLAAAQeEARgRAIAcgADYCACAHQQM2AgRB3QEgBxAOIgFBgAhxRQRAIAUgADYCACAFQQQ2AgQgBSABQYAIcjYCCEHdASAFEA4aCyACIAIoAgBBgAFyIgE2AgAFIAIoAgAhAQsgAiAANgI8IAIgAkGYAWo2AiwgAkGACDYCMCACQX86AEsgAUEIcUUEQCAEIAA2AgAgBEGTqAE2AgQgBCAINgIIQTYgBBAbRQRAIAJBCjoASwsLIAJBNTYCICACQQE2AiQgAkEBNgIoIAJBATYCDEHMqQQoAgBFBEAgAkF/NgJMCyACEOcLBUEAIQILBUGIqgRBFjYCAAsgAyQEIAILcAECfyAAQSsQpwJFIQEgACwAACICQfIAR0ECIAEbIgEgAUGAAXIgAEH4ABCnAkUbIgEgAUGAgCByIABB5QAQpwJFGyIAIABBwAByIAJB8gBGGyIAQYAEciAAIAJB9wBGGyIAQYAIciAAIAJB4QBGGwvAAQEGfyMEIQMjBEEwaiQEIANBIGohBSADQRBqIQQgAyECQf2HAyABLAAAEKcCBH8gARDpCyEGIAIgADYCACACIAZBgIACcjYCBCACQbYDNgIIQQUgAhAdEPwCIgJBAEgEf0EABSAGQYCAIHEEQCAEIAI2AgAgBEECNgIEIARBATYCCEHdASAEEA4aCyACIAEQ6AsiAAR/IAAFIAUgAjYCAEEGIAUQGhpBAAsLBUGIqgRBFjYCAEEACyEHIAMkBCAHCz4BAX8gACgCRARAIAAoAoQBIgEEQCABIAAoAoABNgKAAQsgACgCgAEiAAR/IABBhAFqBUG8gwILIAE2AgALC6UMAhZ/AXwjBCENIwRBsARqJAQgDUHAAmohDiACQX1qQRhtIgNBACADQQBKGyELQaDmASgCACIKQQBOBEAgCkEBaiEFQQAhAyALIQQDQCADQQN0IA5qIARBAEgEfEQAAAAAAAAAAAUgBEECdEGw5gFqKAIAtws5AwAgBEEBaiEEIANBAWoiAyAFRw0ACwsgDUHgA2ohCCANQaABaiEQIA0hDCALQWhsIhQgAkFoamohB0EAIQQDQCAEIQVEAAAAAAAAAAAhGUEAIQMDQCAZIANBA3QgAGorAwAgBSADa0EDdCAOaisDAKKgIRkgA0EBaiIDQQFHDQALIARBA3QgDGogGTkDACAEQQFqIQMgBCAKSARAIAMhBAwBCwsgB0EASiERQRggB2shEkEXIAdrIRUgB0UhFiAKIQMCQAJAA0ACQCADQQN0IAxqKwMAIRkgA0EASiIJBEBBACEFIAMhBANAIAVBAnQgCGogGSAZRAAAAAAAAHA+oqq3IhlEAAAAAAAAcEGioao2AgAgBEF/aiIGQQN0IAxqKwMAIBmgIRkgBUEBaiEFIARBAUoEQCAGIQQMAQsLCyAZIAcQhgIiGSAZRAAAAAAAAMA/opxEAAAAAAAAIECioSIZqiEEIBkgBLehIRkCQAJAAkAgEQR/IANBf2pBAnQgCGoiBigCACIPIBJ1IQUgBiAPIAUgEnRrIgY2AgAgBiAVdSEGIAQgBWohBAwBBSAWBH8gA0F/akECdCAIaigCAEEXdSEGDAIFIBlEAAAAAAAA4D9mBH9BAiEGDAQFQQALCwshBgwCCyAGQQBKDQAMAQsCfyAEIRggCQR/QQAhBEEAIQkDfyAJQQJ0IAhqIhcoAgAhDwJAAkAgBAR/Qf///wchEwwBBSAPBH9BgICACCETQQEhBAwCBUEACwshBAwBCyAXIBMgD2s2AgALIAMgCUEBaiIJRw0AIAQLBUEACyEJIBEEQAJAAkACQCAHQQFrDgIAAQILIANBf2pBAnQgCGoiBCAEKAIAQf///wNxNgIADAELIANBf2pBAnQgCGoiBCAEKAIAQf///wFxNgIACwsgGAtBAWohBCAGQQJGBEBEAAAAAAAA8D8gGaEhGSAJBEAgGUQAAAAAAADwPyAHEIYCoSEZC0ECIQYLCyAZRAAAAAAAAAAAYg0CIAMgCkoEQCADIQVBACEJA0AgBUF/aiIFQQJ0IAhqKAIAIAlyIQkgBSAKSg0ACyAJDQELQQEhBQNAIAVBAWohBCAKIAVrQQJ0IAhqKAIARQRAIAQhBQwBCwsgAyAFaiEFA0AgA0EBaiIGQQN0IA5qIANBAWoiBCALakECdEGw5gFqKAIAtzkDAEQAAAAAAAAAACEZQQAhAwNAIBkgA0EDdCAAaisDACAGIANrQQN0IA5qKwMAoqAhGSADQQFqIgNBAUcNAAsgBEEDdCAMaiAZOQMAIAQgBUgEQCAEIQMMAQsLIAUhAwwBCwsgAyEAIAchAgNAIAJBaGohAiAAQX9qIgBBAnQgCGooAgBFDQALDAELIBlBACAHaxCGAiIZRAAAAAAAAHBBZgR/IANBAnQgCGogGSAZRAAAAAAAAHA+oqoiBbdEAAAAAAAAcEGioao2AgAgAiAUaiECIANBAWoFIBmqIQUgByECIAMLIgBBAnQgCGogBTYCAAtEAAAAAAAA8D8gAhCGAiEZIABBf0oiBwRAIAAhAgNAIAJBA3QgDGogGSACQQJ0IAhqKAIAt6I5AwAgGUQAAAAAAABwPqIhGSACQX9qIQMgAkEASgRAIAMhAgwBCwsgBwRAIAAhAgNAIAAgAmshC0QAAAAAAAAAACEZQQAhAwNAIBkgA0EDdEHA6AFqKwMAIAIgA2pBA3QgDGorAwCioCEZIANBAWohBSADIApOIAMgC09yRQRAIAUhAwwBCwsgC0EDdCAQaiAZOQMAIAJBf2ohAyACQQBKBEAgAyECDAELCwsLIAcEQEQAAAAAAAAAACEZA0AgGSAAQQN0IBBqKwMAoCEZIABBf2ohAiAAQQBKBEAgAiEADAELCwVEAAAAAAAAAAAhGQsgASAZmiAZIAYbOQMAIA0kBCAEQQdxC5sBAQF/IAFB/wBKBEAgAUGCfmoiAkH/ACACQf8ASBsgAUGBf2ogAUH+AUoiAhshASAAQwAAAH+UIgBDAAAAf5QgACACGyEABSABQYJ/SARAIAFB/AFqIgJBgn8gAkGCf0obIAFB/gBqIAFBhH5IIgIbIQEgAEMAAIAAlCIAQwAAgACUIAAgAhshAAsLIAAgAUEXdEGAgID8A2q+lAv5AgEGfyMEIQYjBEEQaiQEIAYhAyACQYyqBCACGyIEKAIAIQICfwJAIAEEfwJ/IAAgAyAAGyEDAkACQCACBEAgAiEAQQEhAgwBBSABLAAAIgBBf0oEQCADIABB/wFxNgIAIABBAEcMBAsgASwAACEAQZCDAigCACgCAEUEQCADIABB/78DcTYCAEEBDAQLIABB/wFxQb5+aiIAQTJLDQUgAUEBaiEBIABBAnRBwN4BaigCACEAQQAiAg0BCwwBCyABLQAAIgVBA3YiByAAQRp1aiAHQXBqckEHSw0DIAJBf2ohAiAFQYB/aiAAQQZ0ciIAQQBIBEADQCACRQ0CIAFBAWoiASwAACIFQcABcUGAAUcNBSACQX9qIQIgBUH/AXFBgH9qIABBBnRyIgBBAEgNAAsLIARBADYCACADIAA2AgBBASACawwBCyAEIAA2AgBBfgsFIAINAUEACwwBCyAEQQA2AgBBiKoEQdQANgIAQX8LIQggBiQEIAgL+wEBA38gAUH/AXEiAgRAAkAgAEEDcQRAIAFB/wFxIQMDQCAALAAAIgQgA0EYdEEYdUYgBEVyDQIgAEEBaiIAQQNxDQALCyACQYGChAhsIQMgACgCACICQYCBgoR4cUGAgYKEeHMgAkH//ft3anFFBEADQCACIANzIgJBgIGChHhxQYCBgoR4cyACQf/9+3dqcUUEQAEgAEEEaiIAKAIAIgJBgIGChHhxQYCBgoR4cyACQf/9+3dqcUUNAQsLCyABQf8BcSECA0AgAEEBaiEBIAAsAAAiAyACQRh0QRh1RiADRXJFBEAgASEADAELCwsFIAAQXCAAaiEACyAAC4EEAgN/BX4gAL0iB0I0iKdB/w9xIQIgAb0iBkI0iKdB/w9xIQQgB0KAgICAgICAgIB/gyEJAnwCQCAGQgGGIgVCAFENAAJ8IAJB/w9GIAG9Qv///////////wCDQoCAgICAgID4/wBWcg0BIAdCAYYiCCAFWARAIABEAAAAAAAAAACiIAAgBSAIURsPCyACBH4gB0L/////////B4NCgICAgICAgAiEBSAHQgyGIgVCf1UEQEEAIQIDQCACQX9qIQIgBUIBhiIFQn9VDQALBUEAIQILIAdBASACa62GCyIIIAQEfiAGQv////////8Hg0KAgICAgICACIQFIAZCDIYiBUJ/VQRAA0AgA0F/aiEDIAVCAYYiBUJ/VQ0ACwsgBkEBIAMiBGuthgsiBn0iBUJ/VSEDIAIgBEoEQAJAA0ACQCADBEAgBUIAUQ0BBSAIIQULIAVCAYYiCCAGfSIFQn9VIQMgAkF/aiICIARKDQEMAgsLIABEAAAAAAAAAACiDAILCyADBEAgAEQAAAAAAAAAAKIgBUIAUQ0BGgUgCCEFCyAFQoCAgICAgIAIVARAA0AgAkF/aiECIAVCAYYiBUKAgICAgICACFQNAAsLIAkgBUKAgICAgICAeHwgAq1CNIaEIAVBASACa62IIAJBAEobhL8LDAELIAAgAaIiACAAowsLmBQDEH8Dfgd8IwQhEiMEQYAEaiQEIBIhCUEAIAIgA2oiE2shFAJAAkADQAJAAkAgAUEuaw4DAwEAAQsgACgCBCIBIAAoAmhJBH8gACABQQFqNgIEIAEtAAAFIAAQWQshAUEBIQsMAQsLDAELIAAoAgQiASAAKAJoSQR/IAAgAUEBajYCBCABLQAABSAAEFkLIgFBMEYEQAN/IBdCf3whFyAAKAIEIgEgACgCaEkEfyAAIAFBAWo2AgQgAS0AAAUgABBZCyIBQTBGDQBBASENQQELIQsFQQEhDQsLIAlBADYCAAJ8AkACQAJAAkAgAUEuRiIOIAFBUGoiBkEKSXIEQAJAIAEhCEEAIQEDQAJAIA4EfiANDQFBASENIBYiFwUCfiAWQgF8IRYgCEEwRyEOIAFB/QBOBEAgFiAORQ0BGiAJIAkoAvADQQFyNgLwAyAWDAELIAFBAnQgCWoiDCAHBH8gCEFQaiAMKAIAQQpsagUgBgs2AgAgB0EBaiIGQQlGIQhBASELQQAgBiAIGyEHIAEgCGohASAWpyAKIA4bIQogFgsLIRggACgCBCIGIAAoAmhJBH8gACAGQQFqNgIEIAYtAAAFIAAQWQsiBkFQaiIMQQpJIAZBLkYiDnJFDQIgBiEIIBghFiAMIQYMAQsLIBYhGCALQQBHIQUMAgsFIAEhBkEAIQELIBcgGCANGyEXIAtBAEciCCAGQSByQeUARnFFBEAgBkF/SgRAIAghBQwCBSAIIQUMAwsACyAAIAUQmQciFkKAgICAgICAgIB/UQRAIAVFBEAgAEIAEMEBRAAAAAAAAAAADAYLIAAoAmgEQCAAIAAoAgRBf2o2AgQLQgAhFgsgByEAIBYgF3whFwwDCyAAKAJoBEAgACAAKAIEQX9qNgIEIAVFDQIgByEADAMLCyAFRQ0AIAchAAwBC0GIqgRBFjYCACAAQgAQwQFEAAAAAAAAAAAMAQsgBLdEAAAAAAAAAACiIAkoAgAiBUUNABogFyAYUSAYQgpTcQRAIAS3IAW4oiAFIAJ2RSACQR5Kcg0BGgsgFyADQX5trFUEQEGIqgRBIjYCACAEt0T////////vf6JE////////73+iDAELIBcgA0GWf2qsUwRAQYiqBEEiNgIAIAS3RAAAAAAAABAAokQAAAAAAAAQAKIMAQsgAAR/IABBCUgEQCABQQJ0IAlqIgcoAgAhBQNAIAVBCmwhBSAAQQFqIQYgAEEISARAIAYhAAwBCwsgByAFNgIACyABQQFqBSABCyEFIBenIQAgCkEJSARAIABBEkggCiAATHEEQCAAQQlGBEAgBLcgCSgCALiiDAMLIABBCUgEQCAEtyAJKAIAuKJBACAAa0ECdEGg5gFqKAIAt6MMAwsgAkEbaiAAQX1saiIGQR5KIAkoAgAiASAGdkVyBEAgBLcgAbiiIABBAnRB2OUBaigCALeiDAMLCwsgAEEJbyIBBH9BACABIAFBCWogAEF/ShsiDmtBAnRBoOYBaigCACEPIAUEf0GAlOvcAyAPbSELQQAhAUEAIQpBACEHA0AgCiAHQQJ0IAlqIgwoAgAiCCAPbiIGaiEQIAwgEDYCACAIIAYgD2xrIAtsIQogAEF3aiAAIBBFIAEgB0ZxIgYbIQAgAUEBakH/AHEgASAGGyEBIAUgB0EBaiIHRw0ACyAKBH8gBUECdCAJaiAKNgIAIAVBAWoFIAULBUEAIQFBAAshFSAAQQkgDmtqIQcgFQVBACEBIAAhByAFCyEAQQAhBQNAAkAgB0ESSCEQIAdBEkYhDiABQQJ0IAlqIQwDQCAQRQRAIA5FDQIgDCgCAEHf4KUETwRAQRIhBwwDCwtBACEKIABB/wBqIQ0DQCAKrSANQf8AcSIPQQJ0IAlqIgYoAgCtQh2GfCIWpyELIBZCgJTr3ANWBH8gFiAWQoCU69wDgCIWQoCU69wDfn2nIQsgFqcFQQALIQogBiALNgIAIAAgACAPIAsbIAEgD0YiCCAAQf8AakH/AHEgD0dyGyEGIA9Bf2ohDSAIRQRAIAYhAAwBCwsgBUFjaiEFIApFDQALIAZB/wBqQf8AcSEIIAZB/gBqQf8AcUECdCAJaiEMIAFB/wBqQf8AcSIBIAZGBEAgDCAIQQJ0IAlqKAIAIAwoAgByNgIAIAghAAsgAUECdCAJaiAKNgIAIAdBCWohBwwBCwsDQAJAIABBAWpB/wBxIQYgAEH/AGpB/wBxQQJ0IAlqIQ8DQAJAIAdBEkYhC0EJQQEgB0EbShshEQNAQQAhCgJAAkADQAJAIAEgCmpB/wBxIgggAEYNAiAIQQJ0IAlqKAIAIgwgCkECdEHIgwJqKAIAIghJDQIgDCAISw0AIApBAWpBAk8NAkEBIQoMAQsLDAELIAsNBAsgBSARaiEFIAAgAUYEQCAAIQEMAQsLQQEgEXRBf2ohDkGAlOvcAyARdiEMIAEhCkEAIQ0gASELA0AgDSALQQJ0IAlqIggoAgAiASARdmohECAIIBA2AgAgASAOcSAMbCENIAdBd2ogByAQRSAKIAtGcSIBGyEHIApBAWpB/wBxIAogARshASAAIAtBAWpB/wBxIgtHBEAgASEKDAELCyANBEAgASAGRw0BIA8gDygCAEEBcjYCAAsMAQsLIABBAnQgCWogDTYCACAGIQAMAQsLQQAhBwNAIABBAWpB/wBxIQYgASAHakH/AHEiCCAARgRAIAZBf2pBAnQgCWpBADYCACAGIQALIBlEAAAAAGXNzUGiIAhBAnQgCWooAgC4oCEZIAdBAWoiB0ECRw0ACyAZIAS3IhyiIRsgBUE1aiIEIANrIgYgAkghAyAGQQAgBkEAShsgAiADGyIHQTVIBEBEAAAAAAAA8D9B6QAgB2sQhgIgGxCYByIdIR4gG0QAAAAAAADwP0E1IAdrEIYCEJcHIhohGSAdIBsgGqGgIRsFRAAAAAAAAAAAIRkLIAAgAUECakH/AHEiAkcEQAJAIAJBAnQgCWooAgAiAkGAyrXuAUkEfCACRQRAIAFBA2pB/wBxIABGDQILIBxEAAAAAAAA0D+iIBmgBSACQYDKte4BRwRAIBxEAAAAAAAA6D+iIBmgIRkMAgsgHEQAAAAAAADgP6IgGaAgHEQAAAAAAADoP6IgGaAgAUEDakH/AHEgAEYbCyEZC0E1IAdrQQFKBHwgGUQAAAAAAADwPxCXB0QAAAAAAAAAAGEEfCAZRAAAAAAAAPA/oAUgGQsFIBkLIRkLIBsgGaAgHqEhGiAEQf////8HcUF+IBNrSgR8AnwgBSAamUQAAAAAAABAQ2ZFIgBBAXNqIQUgGiAaRAAAAAAAAOA/oiAAGyEaIAVBMmogFEwEQCAaIAMgACAGIAdHcnEgGUQAAAAAAAAAAGJxRQ0BGgtBiKoEQSI2AgAgGgsFIBoLIAUQlgcLIR8gEiQEIB8LjwkDCH8FfgN8IAAoAgQiBSAAKAJoSQR/IAAgBUEBajYCBCAFLQAABSAAEFkLIQUCQAJAA0ACQAJAIAVBLmsOAwMBAAELIAAoAgQiBSAAKAJoSQR/IAAgBUEBajYCBCAFLQAABSAAEFkLIQVBASEIDAELCwwBCyAAKAIEIgUgACgCaEkEfyAAIAVBAWo2AgQgBS0AAAUgABBZCyIFQTBGBH4DfiANQn98IQ0gACgCBCIFIAAoAmhJBH8gACAFQQFqNgIEIAUtAAAFIAAQWQsiBUEwRg0AQQEhCEEBIQcgDQsFQQEhB0IACyEPCyAFIQZCACENRAAAAAAAAPA/IRJBACEFA0ACQCAGQSByIQkCQAJAIAZBUGoiC0EKSQ0AIAZBLkYiDCAJQZ9/akEGSXJFDQIgDEUNACAHBH5BLiEGDAMFIA0hDkEBIQcgDQshDwwBCyAJQal/aiALIAZBOUobIQYgDUIIUwRAIBIhFCAGIAVBBHRqIQUFIA1CDlMEfCASRAAAAAAAALA/oiISIRQgEyASIAa3oqAFIApBASAGRSAKQQBHciIGGyEKIBIhFCATIBMgEkQAAAAAAADgP6KgIAYbCyETCyANQgF8IQ5BASEIIBQhEgsgACgCBCIGIAAoAmhJBH8gACAGQQFqNgIEIAYtAAAFIAAQWQshBiAOIQ0MAQsLIAgEfAJ8IA1CCFMEQCANIQ4DQCAFQQR0IQUgDkIBfCEQIA5CB1MEQCAQIQ4MAQsLCwJ+IAZBIHJB8ABGBH4gACAEEJkHIg5CgICAgICAgICAf1EEfiAERQRAIABCABDBAUQAAAAAAAAAAAwECyAAKAJoBEAgACAAKAIEQX9qNgIEC0IABSAOCwUgACgCaARAIAAgACgCBEF/ajYCBAtCAAshESADt0QAAAAAAAAAAKIgBUUNARogEQsgDyANIAcbQgKGQmB8fCINQQAgAmusVQRAQYiqBEEiNgIAIAO3RP///////+9/okT////////vf6IMAQsgDSACQZZ/aqxTBEBBiKoEQSI2AgAgA7dEAAAAAAAAEACiRAAAAAAAABAAogwBCyAFQX9KBEADQCATRAAAAAAAAOA/ZkUiAEEBcyAFQQF0ciEFIBMgEyATRAAAAAAAAPC/oCAAG6AhEyANQn98IQ0gBUF/Sg0ACwsCfAJAQiAgAqx9IA18Ig4gAaxTBEAgDqciAUEATARAQQAhAUHUACEADAILC0HUACABayEAIAFBNUgNACADtyESRAAAAAAAAAAADAELRAAAAAAAAPA/IAAQhgIgA7ciEhCYBwshFEQAAAAAAAAAACATIAVBAXFFIAFBIEggE0QAAAAAAAAAAGJxcSIAGyASoiAUIBIgACAFariioKAgFKEiEkQAAAAAAAAAAGEEQEGIqgRBIjYCAAsgEiANpxCWBwsFIAAoAmhFIgFFBEAgACAAKAIEQX9qNgIECyAEBEAgAUUEQCAAIAAoAgRBf2o2AgQgASAHRXJFBEAgACAAKAIEQX9qNgIECwsFIABCABDBAQsgA7dEAAAAAAAAAACiCws1AQJ/IAIgACgCECAAKAIUIgRrIgMgAyACSxshAyAEIAEgAxBGGiAAIAAoAhQgA2o2AhQgAgulAgAgAAR/An8gAUGAAUkEQCAAIAE6AABBAQwBC0GQgwIoAgAoAgBFBEAgAUGAf3FBgL8DRgRAIAAgAToAAEEBDAIFQYiqBEHUADYCAEF/DAILAAsgAUGAEEkEQCAAIAFBBnZBwAFyOgAAIAAgAUE/cUGAAXI6AAFBAgwBCyABQYBAcUGAwANGIAFBgLADSXIEQCAAIAFBDHZB4AFyOgAAIAAgAUEGdkE/cUGAAXI6AAEgACABQT9xQYABcjoAAkEDDAELIAFBgIB8akGAgMAASQR/IAAgAUESdkHwAXI6AAAgACABQQx2QT9xQYABcjoAASAAIAFBBnZBP3FBgAFyOgACIAAgAUE/cUGAAXI6AANBBAVBiKoEQdQANgIAQX8LCwVBAQsL1gIBCH8jBCEFIwRBEGokBCAFQQhqIQAgBSEBQZipBCgCACICQdw1aiEGIAJB6DVqKgIAQ5qZGT5dRQRAIAJB5DVqIgMoAgBFBEAgA0HDkwIQoQI2AgALIAAgAkEQaiIDKgIAQ83MTD6UIAIqAhRDzcxMPpQQMiABQ///f39D//9/fxAyIAAgAUEAEK8DIAAgA0MAAAA/EFEgAUMAAAA/QwAAAD8QMiAAQQEgARCcAiAAIAJBlCpqQwAAAEAQUUEBIAAQvgJBw5MCQQBBx6YwEOsBGiACQeAyaiIHKAIAIgFBAEoEQANAIAcgAUF/aiICEFAoAgAiBBDbBgRAIAQoAgAiAyADQQAQkAFGBEAgBBDqCSEDCyAEIAYoAgBGIQQgAEMAAAAAQwAAAAAQMiADIARBACAAEK8BGgsgAUEBSgRAIAIhAQwBCwsLENUBQQEQowILIAUkBAsuACAAQgBSBEADQCABQX9qIgEgAKdBB3FBMHI6AAAgAEIDiCIAQgBSDQALCyABCzYAIABCAFIEQANAIAFBf2oiASACIACnQQ9xQfDlAWotAAByOgAAIABCBIgiAEIAUg0ACwsgAQvaAgEHfyMEIQQjBEHgAWokBCAEIQUgBEGgAWoiA0IANwMAIANCADcDCCADQgA3AxAgA0IANwMYIANCADcDICAEQdABaiIGIAIoAgA2AgBBACABIAYgBEHQAGoiAiADEJAFQQBIBH9BfwUgACgCTEF/SgR/QQEFQQALGiAAKAIAIQcgACwASkEBSARAIAAgB0FfcTYCAAsgACgCMARAIAAgASAGIAIgAxCQBSEBBSAAKAIsIQggACAFNgIsIAAgBTYCHCAAIAU2AhQgAEHQADYCMCAAIAVB0ABqNgIQIAAgASAGIAIgAxCQBSEBIAgEQCAAQQBBACAAKAIkQT9xQcICahEFABogAUF/IAAoAhQbIQEgACAINgIsIABBADYCMCAAQQA2AhAgAEEANgIcIABBADYCFAsLIAAgACgCACIAIAdBIHFyNgIAQX8gASAAQSBxGwshCSAEJAQgCQspAgF/AXwgASgCAEEHakF4cSICKwMAIQMgASACQQhqNgIAIAAgAzkDAAvQFwMUfwN+AXwjBCEZIwRBsARqJAQgGUGYBGoiD0EANgIAIAG9IhpCAFMEfyABmiIBvSEaQc+HAyEVQQEFQdKHA0HVhwNB0IcDIARBAXEbIARBgBBxGyEVIARBgRBxQQBHCyEWIBlBIGohCCAZIgwhEyAMQZwEaiIHQQxqIRQgGkKAgICAgICA+P8Ag0KAgICAgICA+P8AUQR/IABBICACIBZBA2oiBiAEQf//e3EQjgEgACAVIBYQhgEgAEH5hwNB6ocDIAVBIHFBAEciAxtB4ocDQeaHAyADGyABIAFiG0EDEIYBIABBICACIAYgBEGAwABzEI4BIAYFAn8gASAPEJ4HRAAAAAAAAABAoiIBRAAAAAAAAAAAYiIGBEAgDyAPKAIAQX9qNgIACyAFQSByIhdB4QBGBEAgFUEJaiAVIAVBIHEiChshCUEMIANrIgZFIANBC0tyRQRARAAAAAAAACBAIR0DQCAdRAAAAAAAADBAoiEdIAZBf2oiBg0ACyAJLAAAQS1GBHwgHSABmiAdoaCaBSABIB2gIB2hCyEBCyAUQQAgDygCACIIayAIIAhBAEgbrCAUEPoCIgZGBEAgB0ELaiIGQTA6AAALIBZBAnIhDiAGQX9qIAhBH3VBAnFBK2o6AAAgBkF+aiILIAVBD2o6AAAgA0EBSCEIIARBCHFFIQcgDCEFA0AgBSAKIAGqIgZB8OUBai0AAHI6AAAgASAGt6FEAAAAAAAAMECiIQEgBUEBaiIGIBNrQQFGBH8gCCABRAAAAAAAAAAAYXEgB3EEfyAGBSAGQS46AAAgBUECagsFIAYLIQUgAUQAAAAAAAAAAGINAAsCfyADRSAFQX4gE2tqIANOckUEQCAUIANBAmpqIAtrIQggCwwBCyAFIBQgE2sgC2tqIQggCwshAyAAQSAgAiAIIA5qIgYgBBCOASAAIAkgDhCGASAAQTAgAiAGIARBgIAEcxCOASAAIAwgBSATayIFEIYBIABBMCAIIAUgFCADayIDamtBAEEAEI4BIAAgCyADEIYBIABBICACIAYgBEGAwABzEI4BIAYMAQsgBgRAIA8gDygCAEFkaiIGNgIAIAFEAAAAAAAAsEGiIQEFIA8oAgAhBgsgCCAIQaACaiAGQQBIGyIOIQcDQCAHIAGrIgg2AgAgB0EEaiEHIAEgCLihRAAAAABlzc1BoiIBRAAAAAAAAAAAYg0ACyAGQQBKBEAgBiEIIA4hBgNAIAhBHSAIQR1IGyEJIAdBfGoiCCAGTwRAIAmtIRxBACEKA0AgCq0gCCgCAK0gHIZ8IhpCgJTr3AOAIRsgCCAaIBtCgJTr3AN+fT4CACAbpyEKIAhBfGoiCCAGTw0ACyAKBEAgBkF8aiIGIAo2AgALCyAHIAZLBEACQAN/IAdBfGoiCCgCAA0BIAggBksEfyAIIQcMAQUgCAsLIQcLCyAPIA8oAgAgCWsiCDYCACAIQQBKDQALBSAGIQggDiEGC0EGIAMgA0EASBshDSAOIQsgCEEASAR/IA1BGWpBCW1BAWohESAXQeYARiEYIAchAwN/QQAgCGsiB0EJIAdBCUgbIRIgBiADSQRAQQEgEnRBf2ohEEGAlOvcAyASdiEJQQAhCCAGIQcDQCAHIAggBygCACIKIBJ2ajYCACAKIBBxIAlsIQggB0EEaiIHIANJDQALIAYgBkEEaiAGKAIAGyEGIAgEQCADIAg2AgAgA0EEaiEDCwUgBiAGQQRqIAYoAgAbIQYLIA4gBiAYGyIHIBFBAnRqIAMgAyAHa0ECdSARShshCiAPIA8oAgAgEmoiCDYCACAIQQBIBH8gCiEDDAEFIAYLCwUgByEKIAYLIgMgCkkEQCALIANrQQJ1QQlsIQYgAygCACIIQQpPBEBBCiEHA0AgBkEBaiEGIAggB0EKbCIHTw0ACwsFQQAhBgsgDUEAIAYgF0HmAEYbayAXQecARiIRIA1BAEciGHFBH3RBH3VqIgcgCiALa0ECdUEJbEF3akgEfyAHQYDIAGoiB0EJbSEQIAcgEEEJbGsiB0EISARAQQohCANAIAdBAWohCSAIQQpsIQggB0EHSARAIAkhBwwBCwsFQQohCAsgEEECdCAOakGEYGoiBygCACIXIAhuIQkgB0EEaiAKRiIQIBcgCCAJbGsiEkVxRQRARAEAAAAAAEBDRAAAAAAAAEBDIAlBAXEbIQFEAAAAAAAA4D9EAAAAAAAA8D9EAAAAAAAA+D8gECASIAhBAXYiCUZxGyASIAlJGyEdIBYEQCABmiABIBUsAABBLUYiCRshASAdmiAdIAkbIR0LIAcgFyASayIJNgIAIAEgHaAgAWIEQCAHIAggCWoiBjYCACAGQf+T69wDSwRAA0AgB0EANgIAIAdBfGoiByADSQRAIANBfGoiA0EANgIACyAHIAcoAgBBAWoiBjYCACAGQf+T69wDSw0ACwsgCyADa0ECdUEJbCEGIAMoAgAiCUEKTwRAQQohCANAIAZBAWohBiAJIAhBCmwiCE8NAAsLCwsgAyEIIAYhCSAHQQRqIgMgCiAKIANLGwUgAyEIIAYhCSAKCyIDIAhLBH8DfwJ/IANBfGoiBigCAARAIAMhBkEBDAELIAYgCEsEfyAGIQMMAgVBAAsLCwUgAyEGQQALIRAgEQR/IBhBAXMgDWoiAyAJSiAJQXtKcQR/IANBf2ogCWshCiAFQX9qBSADQX9qIQogBUF+agshBSAEQQhxBH8gCgUgEARAIAZBfGooAgAiDQRAIA1BCnAEQEEAIQMFQQohB0EAIQMDQCADQQFqIQMgDSAHQQpsIgdwRQ0ACwsFQQkhAwsFQQkhAwsgBiALa0ECdUEJbEF3aiEHIAVBIHJB5gBGBH8gCiAHIANrIgNBACADQQBKGyIDIAogA0gbBSAKIAcgCWogA2siA0EAIANBAEobIgMgCiADSBsLCwUgDQshA0EAIAlrIQcgAEEgIAIgBUEgckHmAEYiDQR/QQAhCiAJQQAgCUEAShsFIBQiCyAHIAkgCUEASBusIAsQ+gIiB2tBAkgEQANAIAdBf2oiB0EwOgAAIAsgB2tBAkgNAAsLIAdBf2ogCUEfdUECcUErajoAACAHQX5qIgogBToAACALIAprCyAWQQFqIANqQQEgBEEDdkEBcSADQQBHIgsbamoiESAEEI4BIAAgFSAWEIYBIABBMCACIBEgBEGAgARzEI4BIA0EQCAMQQlqIg0hCSAMQQhqIQogDiAIIAggDksbIgghBwNAIAcoAgCtIA0Q+gIhBSAHIAhGBEAgBSANRgRAIApBMDoAACAKIQULBSAFIAxLBEAgDEEwIAUgE2sQahoDQCAFQX9qIgUgDEsNAAsLCyAAIAUgCSAFaxCGASAHQQRqIgUgDk0EQCAFIQcMAQsLIARBCHFFIAtBAXNxRQRAIABB7ocDQQEQhgELIABBMCAFIAZJIANBAEpxBH8DfyAFKAIArSANEPoCIgcgDEsEQCAMQTAgByATaxBqGgNAIAdBf2oiByAMSw0ACwsgACAHIANBCSADQQlIGxCGASADQXdqIQcgBUEEaiIFIAZJIANBCUpxBH8gByEDDAEFIAcLCwUgAwtBCWpBCUEAEI4BBSAAQTAgCCAGIAhBBGogEBsiEEkgA0F/SnEEfyAEQQhxRSENIAxBCWoiGCELQQAgE2shCSAMQQhqIQ4gCCEGIAMhBQN/IBggBigCAK0gGBD6AiIDRgRAIA5BMDoAACAOIQMLAkAgBiAIRgRAIANBAWohByAAIANBARCGASAFQQFIIA1xBEAgByEDDAILIABB7ocDQQEQhgEgByEDBSADIAxNDQEgDEEwIAMgCWoQahoDQCADQX9qIgMgDEsNAAsLCyAAIAMgCyADayIDIAUgBSADShsQhgEgBkEEaiIGIBBJIAUgA2siBUF/SnENACAFCwUgAwtBEmpBEkEAEI4BIAAgCiAUIAprEIYBCyAAQSAgAiARIARBgMAAcxCOASARCwshACAZJAQgAiAAIAAgAkgbC00BBH8jBCEBIwRBEGokBCABIQIgABClBwR/QX8FIAAoAiAhAyAAIAJBASADQT9xQcICahEFAEEBRgR/IAItAAAFQX8LCyEEIAEkBCAEC20BBX8jBCEDIwRBEGokBCADIgJBBGohBCABLAAABEAgAEH4KWohBQNAIAJBADYCACACIAFBABCmAiEGIAIoAgAiAEF/akH//wNJBEAgBCAAOwEAIAUgBBCvBwsgASAGaiIBLAAADQALCyADJAQL6QoCBn8GfkJ/IQkgAUEkSwRAQYiqBEEWNgIAQgAhCQUCQANAIAAoAgQiAiAAKAJoSQR/IAAgAkEBajYCBCACLQAABSAAEFkLIgMQ+wINAAsCQAJAIANBK2sOAwABAAELIANBLUZBH3RBH3UhBiAAKAIEIgIgACgCaEkEfyAAIAJBAWo2AgQgAi0AAAUgABBZCyEDCyABRSEFAkACQAJAIAFBEHJBEEYgA0EwRnEEQAJAIAAoAgQiAiAAKAJoSQR/IAAgAkEBajYCBCACLQAABSAAEFkLIgJBIHJB+ABHBEAgBQRAQQghAQwEBQwCCwALIAAoAgQiASAAKAJoSQR/IAAgAUEBajYCBCABLQAABSAAEFkLIgJBkeABai0AAEEPSgRAIAAoAmgEQCAAIAAoAgRBf2o2AgQLIABCABDBAUIAIQkMBgVBECEBDAMLAAsFQQogASAFGyIBIANBkeABai0AAEsEfyADBSAAKAJoBEAgACAAKAIEQX9qNgIECyAAQgAQwQFBiKoEQRY2AgBCACEJDAULIQILIAFBCkcNACACQVBqIgJBCkkEQEEAIQEDQCABQQpsIAJqIQEgACgCBCICIAAoAmhJBH8gACACQQFqNgIEIAItAAAFIAAQWQsiA0FQaiICQQpJIAFBmbPmzAFJcQ0ACyABrSEIIAJBCkkEQCADIQEDQCAIQgp+IgogAqwiC0J/hVYEQEEKIQIMBQsgCiALfCEIIAAoAgQiASAAKAJoSQR/IAAgAUEBajYCBCABLQAABSAAEFkLIgFBUGoiAkEKSSAIQpqz5syZs+bMGVRxDQALIAJBCU0EQEEKIQIMBAsLCwwCCyABIAFBf2pxRQRAIAFBF2xBBXZBB3FBtYcDaiwAACEHIAEgAkGR4AFqLAAAIgNB/wFxIgRLBH4gBCECQQAhBANAIAIgBCAHdHIiBEGAgIDAAEkgASAAKAIEIgIgACgCaEkEfyAAIAJBAWo2AgQgAi0AAAUgABBZCyIFQZHgAWosAAAiA0H/AXEiAktxDQALIAStBSACIQUgBCECQgALIQggASACTUJ/IAetIgqIIgsgCFRyBEAgASECIAUhAQwCCwNAIAEgACgCBCICIAAoAmhJBH8gACACQQFqNgIEIAItAAAFIAAQWQsiBUGR4AFqLAAAIgJB/wFxTSADQf8Bca0gCCAKhoQiCCALVnIEQCABIQIgBSEBDAMFIAIhAwwBCwAACwALIAEgAkGR4AFqLAAAIgVB/wFxIgRLBH4gBCECQQAhBANAIAIgASAEbGoiBEHH4/E4SSABIAAoAgQiAiAAKAJoSQR/IAAgAkEBajYCBCACLQAABSAAEFkLIgNBkeABaiwAACIFQf8BcSICS3ENAAsgBK0FIAIhAyAEIQJCAAshCCABrSEKIAEgAksEf0J/IAqAIQsDfyAIIAtWBEAgASECIAMhAQwDCyAIIAp+IgwgBUH/AXGtIg1Cf4VWBEAgASECIAMhAQwDCyAMIA18IQggASAAKAIEIgIgACgCaEkEfyAAIAJBAWo2AgQgAi0AAAUgABBZCyIDQZHgAWosAAAiBUH/AXFLDQAgASECIAMLBSABIQIgAwshAQsgAiABQZHgAWotAABLBEADQCACIAAoAgQiASAAKAJoSQR/IAAgAUEBajYCBCABLQAABSAAEFkLQZHgAWotAABLDQALQYiqBEEiNgIAQQAhBkJ/IQgLCyAAKAJoBEAgACAAKAIEQX9qNgIECyAIQn9aBEAgBkEAR0EBckUEQEGIqgRBIjYCAEJ+IQkMAgsgCEJ/VgRAQYiqBEEiNgIADAILCyAIIAasIgmFIAl9IQkLCyAJC2cBBH8jBCEEIwRBIGokBCAEIgNBEGohBSAAQQE2AiQgACgCAEHAAHFFBEAgAyAAKAI8NgIAIANBk6gBNgIEIAMgBTYCCEE2IAMQGwRAIABBfzoASwsLIAAgASACEKcHIQYgBCQEIAYL1QEBBH8jBCEFIwRBIGokBCAFIgQgATYCACAEIAIgACgCMCIDQQBHazYCBCAEIAAoAiw2AgggBCADNgIMIARBEGoiAyAAKAI8NgIAIAMgBDYCBCADQQI2AghBkQEgAxAeEPwCIgNBAUgEQCAAIAAoAgAgA0EwcUEQc3I2AgAgAyECBSADIAQoAgQiBksEQCAAIAAoAiwiBDYCBCAAIAQgAyAGa2o2AgggACgCMARAIAAgBEEBajYCBCABIAJBf2pqIAQsAAA6AAALBSADIQILCyAFJAQgAgtoAgJ/AX4jBCEEIwRBIGokBCAEQQhqIgMgACgCPDYCACADIAFCIIg+AgQgAyABPgIIIAMgBCIANgIMIAMgAjYCEEGMASADEB8Q/AJBAEgEfiAAQn83AwBCfwUgACkDAAshBSAEJAQgBQsqAQJ/IwQhASMEQRBqJAQgASAAKAI8NgIAQQYgARAaEPwCIQIgASQEIAILJQECfyAAKAIEIgAQXEEBaiIBEMkBIgIEfyACIAAgARBGBUEACwulAwBB6PUBQeD+AhAtQYj2AUHl/gJBAUEBQQAQMEGQ9gFBsIcDQQFBgH9B/wAQCUGg9gFBpIcDQQFBgH9B/wAQCUGY9gFBlocDQQFBAEH/ARAJQaj2AUGQhwNBAkGAgH5B//8BEAlBsPYBQYGHA0ECQQBB//8DEAlBuPYBQf2GA0EEQYCAgIB4Qf////8HEAlBwPYBQfCGA0EEQQBBfxAJQcj2AUHrhgNBBEGAgICAeEH/////BxAJQdD2AUHdhgNBBEEAQX8QCUHY9gFB14YDQQQQF0Hg9gFB0IYDQQgQF0HY6QFB6v4CEBZBkPEBQfb+AhAWQfjwAUEEQZf/AhAuQdDpAUGk/wIQL0Gw7wFBAEG0hQMQB0G0/wIQrQdB2f8CEKwHQYCAAxCrB0GfgAMQqgdBx4ADEKkHQeSAAxCoB0HY8AFBBEGahAMQB0HQ8AFBBUHUgwMQB0GKgQMQrQdBqoEDEKwHQcuBAxCrB0HsgQMQqgdBjoIDEKkHQa+CAxCoB0GQ6wFBBkG1gwMQB0GA6wFBB0GVgwMQB0HI8AFBB0HRggMQBwuFAgECfyMEIQEjBEEwaiQEIAFBCGoiAhDRCyAAEJYFIAEgAhBxIABBk/4CIAEQbiABEDEgASACQQRqEHEgAEGZ/gIgARBuIAEQMSABIAJBCGoQcSAAQaH+AiABEG4gARAxIAEgAkEMahBxIABBqP4CIAEQbiABEDEgASACQRBqEHEgAEGu/gIgARBuIAEQMSABIAJBFGoQcSAAQbX+AiABEG4gARAxIAEgAkEYahBxIABBvf4CIAEQbiABEDEgASACQRxqEHEgAEHF/gIgARBuIAEQMSABIAJBIGoQcSAAQc7+AiABEG4gARAxIAEgAkEkahBxIABB1/4CIAEQbiABEDEgASQECwYAQbDtAQtzAQV/IwQhBCMEQRBqJAQgBEEEaiICIABB4soCEFcgBCIDIAFB4soCEFcCfyACIAMQ1wEhBiADEDEgAhAxIAYLBEAgAiAAQeTKAhBXIAMgAUHkygIQVyACIAMQ1wEhACADEDEgAhAxBUEAIQALIAQkBCAAC0oBAX8jBCEDIwRBEGokBCADIAJB4soCEFcgAUHiygIgAxBuIAMQMSADIAJB5MoCEFcgAUHkygIgAxBuIAMQMSAAIAEQiQMgAyQEC2cBA38jBCEEIwRBEGokBCAAKAIAIQUgBEEIaiIAIAEQNCAEQQRqIgEgAhA0IAQgAxA0IARBDGoiAiAAIAEgBCAFQR9xQagKahEGACACEH0hBiACEDEgBBAxIAEQMSAAEDEgBCQEIAYLHQAgAUHiygIgAhBuIAFB5MoCIAMQbiAAIAEQiQMLBgBBiOoBC5gCAQN/IwQhACMEQRBqJARBiOoBQajwAUHg7QFBAEG40wJBN0Hn2wJBAEHn2wJBAEHU/QJBy9YCQaYBEAUgAEEANgIAQYjqAUHiygJB2PYBQbTTAkEQIAAQM0HY9gFBr9MCQQsgABAzEAAgAEEENgIAQYjqAUHkygJB2PYBQbTTAkEQIAAQM0HY9gFBr9MCQQsgABAzEAAgAEEWNgIAQYjqAUHE/QJBBEGw3gFBicsCAn9BGSECQQQQPyIBIAAoAgA2AgAgAgsgAUEAEAEgAEHDADYCAEGI6gFByP0CQQNBvIECQZrLAkEzIAAQM0EAEAEgAEHRADYCAEGI6gFBzf0CQQNBkPgBQZrLAkE0IAAQM0EAEAEgACQEC0gBA38jBCEDIwRBEGokBCAAKAIAIQQgA0EEaiIAIAEQNCADIAIQNCAAIAMgBEH/AHFBtAFqEQAAIQUgAxAxIAAQMSADJAQgBQvXAQEHfyMEIQUjBEEQaiQEIAVBBGoiAiAAQeLKAhBXIAUiAyABQeLKAhBXAn8gAiADENcBIQYgAxAxIAIQMSAGCwRAIAIgAEHkygIQVyADIAFB5MoCEFcCfyACIAMQ1wEhByADEDEgAhAxIAcLBEAgAiAAQb7LAhBXIAMgAUG+ywIQVwJ/IAIgAxDXASEIIAMQMSACEDEgCAsEQCACIABBwMsCEFcgAyABQcDLAhBXIAIgAxDXASEAIAMQMSACEDEFQQAhAAsFQQAhAAsFQQAhAAsgBSQEIAALVwEDfyMEIQMjBEEQaiQEIAAoAgAhBCADQQRqIgAgARA0IAMgAhA0IANBCGoiASAAIAMgBEH/AHFBlAlqEQcAIAEQfSEFIAEQMSADEDEgABAxIAMkBCAFC3oBAX8jBCEDIwRBEGokBCADIAJB4soCEFcgAUHiygIgAxBuIAMQMSADIAJB5MoCEFcgAUHkygIgAxBuIAMQMSADIAJBvssCEFcgAUG+ywIgAxBuIAMQMSADIAJBwMsCEFcgAUHAywIgAxBuIAMQMSAAIAEQiQMgAyQEC4kBAQN/IwQhBiMEQSBqJAQgACgCACEHIAZBEGoiACABEDQgBkEMaiIBIAIQNCAGQQhqIgIgAxA0IAZBBGoiAyAEEDQgBiAFEDQgBkEUaiIEIAAgASACIAMgBiAHQQ9xQeoKahEaACAEEH0hCCAEEDEgBhAxIAMQMSACEDEgARAxIAAQMSAGJAQgCAsxACABQeLKAiACEG4gAUHkygIgAxBuIAFBvssCIAQQbiABQcDLAiAFEG4gACABEIkDCwYAQbjsAQvyAgEDfyMEIQAjBEEQaiQEQbjsAUHQ7QFBqOwBQQBBuNMCQTZB59sCQQBB59sCQQBBvf0CQcvWAkGlARAFIABBADYCAEG47AFB4soCQdj2AUG00wJBDyAAEDNB2PYBQa/TAkEKIAAQMxAAIABBBDYCAEG47AFB5MoCQdj2AUG00wJBDyAAEDNB2PYBQa/TAkEKIAAQMxAAIABBCDYCAEG47AFBvssCQdj2AUG00wJBDyAAEDNB2PYBQa/TAkEKIAAQMxAAIABBDDYCAEG47AFBwMsCQdj2AUG00wJBDyAAEDNB2PYBQa/TAkEKIAAQMxAAIABBCTYCAEG47AFBxP0CQQZBkN4BQejNAgJ/QRIhAkEEED8iASAAKAIANgIAIAILIAFBABABIABBwgA2AgBBuOwBQcj9AkEDQbyBAkGaywJBMyAAEDNBABABIABB0AA2AgBBuOwBQc39AkEDQZD4AUGaywJBNCAAEDNBABABIAAkBAs+AQF/IwQhAiMEQRBqJAQgASgCFCEBIAJCADcCACACQQA2AgggAiABIAEQXBCTASAAIAIQzQMgAhA+IAIkBAtFAQN/IwQhAiMEQRBqJAQCfyAAKAIUIQQgAiABEJ8BIAQLIAIoAgAgAiACLAALQQBIGyAAKAIcQX9qEJUEIAIQPiACJAQLDQAgACgCKCAAKAIsRws3AQF/IwQhBCMEQRBqJAQgACgCACEAIAQgAxBMIAEgAiAEIABB/wBxQZQJahEHACAEED4gBCQECxwAIAAgASACLAALQQBIBH8gAigCAAUgAgsQyQgLKwECfyMEIQAjBEEQaiQEIABBhgE2AgBBBBA/IgEgACgCADYCACAAJAQgAQsJACAAIAEQlQwLKwECfyMEIQAjBEEQaiQEIABBhQE2AgBBBBA/IgEgACgCADYCACAAJAQgAQsJACAAIAEQlAwLBgBB+OsBC4QGAQZ/IwQhACMEQRBqJARB+OsBQejrAUGY8AFBAEG40wJBNEHn2wJBAEHn2wJBAEH7+wJBy9YCQaQBEAUgAEEANgIAQfjrAUGW/AJBuPYBQdrJAkHLACAAEDNBuPYBQePNAkE8IAAQMxAAIABBBDYCAEH46wFBh+cCQbj2AUHayQJBywAgABAzQbj2AUHjzQJBPCAAEDMQACAAQQw2AgBB+OsBQaD8AkGw9gFB2skCQcwAIAAQM0Gw9gFB480CQT0gABAzEAAgAEEQNgIAQfjrAUGq/AJBuPYBQdrJAkHLACAAEDNBuPYBQePNAkE8IAAQMxAAQfjrAUGz/AJB0OkBQdrJAkHNABCbDEHQ6QFB480CQT4QmQwQACAAQRg2AgBB+OsBQbf8AkG49gFB2skCQcsAIAAQM0G49gFB480CQTwgABAzEAAgAEEcNgIAQfjrAUHC/AJBuPYBQdrJAkHLACAAEDNBuPYBQePNAkE8IAAQMxAAIABBIDYCAEH46wFByvwCQYj2AUHayQJBzgAgABAzQYj2AUHjzQJBPyAAEDMQACAAQSQ2AgBB+OsBQdP8AkG49gFB2skCQcsAIAAQM0G49gFB480CQTwgABAzEAAgAEEoNgIAQfjrAUHd/AJBuPYBQdrJAkHLACAAEDNBuPYBQePNAkE8IAAQMxAAIABBLDYCAEH46wFB7PwCQbj2AUHayQJBywAgABAzQbj2AUHjzQJBPCAAEDMQACAAQcAANgIAIABBADYCBEH46wFB+fwCQQRBgN4BQfHJAgJ/QRQhA0EIED8hASAAKAIEIQIgASAAKAIANgIAIAEgAjYCBCADCyABQQAQASAAQcEANgIAQfjrAUGF/QJBBEHw3QFB8ckCAn9BFSEEQQQQPyIBIAAoAgA2AgAgBAsgAUEAEAEgAEE1NgIAIABBADYCBEH46wFBkf0CQQJBtIECQdrJAgJ/Qc8AIQVBCBA/IQEgACgCBCECIAEgACgCADYCACABIAI2AgQgBQsgAUEAEAEgACQECyMBAX8jBCECIwRBEGokBCACIAFBDGo2AgAgACACEHsgAiQECwkAIAAgARCfDAsGAEHQ7AELlQEAQdDsAUHA7AFBiPABQQBBuNMCQTNB59sCQQBB59sCQQBBr/sCQcvWAkGjARAFQdDsAUHF+wJB0OkBQdrJAkHKAEGCARBLQQBBAEEAQQAQAEHQ7AFByfsCQdDpAUHayQJBygBBgwEQS0EAQQBBAEEAEABB0OwBQdX7AkHQ6QFB2skCQcoAQYQBEEtBAEEAQQBBABAAC0UBAn8CfyABIQUgACgCACEBIAULIAAoAgQiAEEBdWoiBCACIAMgAEEBcQR/IAEgBCgCAGooAgAFIAELQQ9xQfIIahE3AAsZAQF/QRgQPyICIAAoAgAgASoCABClAyACCzsBA38jBCEDIwRBEGokBCADQQRqIgQgATYCACADIAI4AgAgBCADIABB/wBxQbQBahEAACEFIAMkBCAFCxkBAX9BGBA/IgEgACgCAEMAAIC/EKUDIAELLAECfyMEIQIjBEEQaiQEIAIgATYCACACIABBP3FB7ABqEQMAIQMgAiQEIAMLFgEBf0EYED8iAEF/QwAAgL8QpQMgAAsGAEHw7wEL+gQBBn8jBCEAIwRBEGokBEHw7wFB4O8BQfjvAUEAQbjTAkEvQefbAkEAQefbAkEAQZf6AkHL1gJBoQEQBUHw7wFBAUGwgQJBuNMCQTBBFxAPQfDvAUECQaiBAkHayQJBxgBBMRAPQfDvAUEDQZyBAkGPywJBA0HHABAPIABBADYCAEHw7wFBqPoCQdj2AUG00wJBDiAAEDNB2PYBQa/TAkEIIAAQMxAAIABBBDYCAEHw7wFBsvoCQdj2AUG00wJBDiAAEDNB2PYBQa/TAkEIIAAQMxAAIABBCDYCAEHw7wFBvvoCQbj2AUHayQJByAAgABAzQbj2AUHjzQJBOyAAEDMQACAAQQw2AgBB8O8BQcn6AkG49gFB2skCQcgAIAAQM0G49gFB480CQTsgABAzEAAgAEEQNgIAQfDvAUHQ+gJBuPYBQdrJAkHIACAAEDNBuPYBQePNAkE7IAAQMxAAIABBFDYCAEHw7wFB3foCQbj2AUHayQJByAAgABAzQbj2AUHjzQJBOyAAEDMQACAAQTI2AgAgAEEANgIEQfDvAUHo+gJBAkGUgQJB2skCAn9ByQAhA0EIED8hASAAKAIEIQIgASAAKAIANgIAIAEgAjYCBCADCyABQQAQASAAQQk2AgAgAEEANgIEQfDvAUH6pwJBBEHg3QFBlPsCAn9BAiEEQQgQPyEBIAAoAgQhAiABIAAoAgA2AgAgASACNgIEIAQLIAFBABABIABBogE2AgAgAEEANgIEQfDvAUGAqAJBAkGMgQJBu9MCAn9BgQEhBUEIED8hASAAKAIEIQIgASAAKAIANgIAIAEgAjYCBCAFCyABQQAQASAAJAQLJAEBfyMEIQIjBEEQaiQEIAIgAUEEajYCACAAIAIQxAcgAiQECyMBAX8jBCECIwRBEGokBCACIAEoAhQ2AgAgACACEHEgAiQECwkAIAAgARCsDAsJACAAIAEQqwwLBgBByO8BC7IBAQF/IwQhACMEQRBqJARByO8BQdDvAUG47wFBAEG40wJBLkHn2wJBAEHn2wJBAEHk+QJBy9YCQaABEAUgAEEANgIAQcjvAUHu+QJBwPYBQdrJAkHEACAAEDNBwPYBQePNAkE6IAAQMxAAQcjvAUH4+QJB0OkBQdrJAkHFAEH/ABBLQQBBAEEAQQAQAEHI7wFBgfoCQdDpAUHayQJBxQBBgAEQS0EAQQBBAEEAEAAgACQECzMBAX8jBCEEIwRBIGokBCAEIAIgAxCzBSAAIAEoAgBBAkHc/QEgBEGfAxEJABBfIAQkBAsnAQF/IwQhAiMEQRBqJAQgAiABEI8BIABBuO8BIAIQBDYCACACJAQLoAEBB38jBCECIwRBIGokBCACQQRqIQggAkEIaiEEIAIhBSACQRBqIgZBADYCACACQQxqIgcgACgCCCIDNgIAIAAQ+wMgA0cEQANAIAQgBxCyDCAFIAYQxwcgCCABIAQgBRCxDCAIEDEgBRAxIAQQMSAGIAcoAgAiAygCACAGKAIAajYCACAHIANBIGoiAzYCACAAEPsDIANHDQALCyACJAQLMQEBfyMEIQIjBEEQaiQEIAIgAUEMaiIBKAIAQQF0IAEoAggQoQEgACACEK4HIAIkBAsxAQF/IwQhAiMEQRBqJAQgAiABQRhqIgEoAgBBFGwgASgCCBChASAAIAIQrgcgAiQEC00BAn8jBCEEIwRBIGokBCAEQQhqIgUgARA3IAQgAhA3IARBEGoiASAFKQIANwIAIARBGGoiAiAEKQIANwIAIAAgASACIAMQogMgBCQEC0EBAn8jBCEDIwRBEGokBCADQQhqIgQgAUE8ahD9AiIBKgIAIAEqAgQQMiADIAIQbyAAIAQgAxCBASADEDEgAyQEC0EBAn8jBCEDIwRBEGokBCADQQhqIgQgAUE8ahD9AiIBKgIIIAEqAgwQMiADIAIQbyAAIAQgAxCBASADEDEgAyQEC0EBAn8gACAAKAIAIgIgACgCDGoQvAMgAEEMaiIBKAIABEAgACACEFAgAUEAEFAgASgCAEECdBBGGiABQQAQvAMLCzEBAn8jBCEFIwRBEGokBCAFQQhqIgYgARA3IAUgAhA3IAAgBiAFIAMgBBDFASAFJAQLNQECfyMEIQcjBEEQaiQEIAdBCGoiCCABEDcgByACEDcgACAIIAcgAyAEIAUgBhCkASAHJAQLMgECfyMEIQYjBEEQaiQEIAZBCGoiByABEDcgBiACEDcgACAHIAYgAyAEIAUQdSAGJAQLNQECfyMEIQcjBEEQaiQEIAdBCGoiCCABEDcgByACEDcgACAIIAcgAyAEIAUgBhCfAyAHJAQLSwECfyMEIQcjBEEgaiQEIAdBGGoiCCABEDcgB0EQaiIBIAIQNyAHQQhqIgIgAxA3IAcgBBA3IAAgCCABIAIgByAFIAYQ2QkgByQEC0kBAn8jBCEGIwRBIGokBCAGQRhqIgcgARA3IAZBEGoiASACEDcgBkEIaiICIAMQNyAGIAQQNyAAIAcgASACIAYgBRDYCSAGJAQLPgECfyMEIQYjBEEgaiQEIAZBEGoiByABEDcgBkEIaiIBIAIQNyAGIAMQNyAAIAcgASAGIAQgBRCmBiAGJAQLPAECfyMEIQUjBEEgaiQEIAVBEGoiBiABEDcgBUEIaiIBIAIQNyAFIAMQNyAAIAYgASAFIAQQ4wIgBSQECygBAX8jBCEGIwRBEGokBCAGIAEQNyAAIAYgAiADIAQgBRC7AiAGJAQLJgEBfyMEIQUjBEEQaiQEIAUgARA3IAAgBSACIAMgBBCVAiAFJAQLRQEBfyMEIQQjBEEQaiQEIAQgARA3IABBAEMAAAAAIAQgAiADLAALQQBIBH8gAygCAAUgAwtBAEMAAAAAQQAQ/QEgBCQECzEBAX8jBCEBIwRBEGokBCABIAAoAhQQ2AEgACABKQIANwIEIAAgASkCCDcCDCABJAQLOwAgAEHcgAI2AgAgAEEEahD3ASAAIAE2AhQgARBbRQRAIAAoAgAoAgAhASAAIAFB/wFxQeAEahEEAAsLagECfyMEIQgjBEEwaiQEIAhBGGoiCSAILAAgOgAAIAEQnQUhASAJIAMQNyAFLAALQQBIBEAgBSgCACEFCyAIIAcQxgwgACABIAIgCSAEIAVBACAGQQAgCEEEaiAIKAIUEFsbEP0BIAgkBAtSAQJ/IwQhByMEQSBqJAQgARCHASEBIAdBGGoiCCACEDcgB0EQaiICIAMQNyAHQQhqIgMgBBA3IAcgBRA3IAAgASAIIAIgAyAHIAYQ/AEgByQEC4YBAQJ/IwQhCyMEQUBrJAQgARCHASEBIAtBOGoiDCACEDcgC0EwaiICIAMQNyALQShqIgMgBBA3IAtBIGoiBCAFEDcgC0EYaiIFIAYQNyALQRBqIgYgBxA3IAtBCGoiByAIEDcgCyAJEDcgACABIAwgAiADIAQgBSAGIAcgCyAKENUJIAskBAtWAQJ/IwQhCSMEQSBqJAQgARCHASEBIAlBGGoiCiACEDcgCUEQaiICIAMQNyAJQQhqIgMgBBA3IAkgBRA3IAAgASAKIAIgAyAJIAYgByAIENQJIAkkBAvEAQEHfyMEIQgjBEEQaiQEIAhBDGohBiAIIQsgCEEIaiEKIwQhCSMEIAJBA3RBD2pBcHFqJAQgAgRAIAJBA3QgCWohDCAJIQcDQCAHEDogB0EIaiIHIAxHDQALIAZBADYCACACQQBKBEADQCAKIAEgBhCMAiALIAoQNyAGKAIAQQN0IAlqIAspAwA3AwAgChAxIAYgBigCAEEBaiIHNgIAIAcgAkgNAAsLBSAGQQA2AgALIAAgCSACIAMgBCAFEPIDIAgkBAvAAQEHfyMEIQYjBEEQaiQEIAZBDGohBCAGIQkgBkEIaiEIIwQhByMEIAJBA3RBD2pBcHFqJAQgAgRAIAJBA3QgB2ohCiAHIQUDQCAFEDogBUEIaiIFIApHDQALIARBADYCACACQQBKBEADQCAIIAEgBBCMAiAJIAgQNyAEKAIAQQN0IAdqIAkpAwA3AwAgCBAxIAQgBCgCAEEBaiIFNgIAIAUgAkgNAAsLBSAEQQA2AgALIAAgByACIAMQ2QQgBiQEC00BAn8jBCEIIwRBIGokBCAIQRhqIgkgARA3IAhBEGoiASACEDcgCEEIaiICIAMQNyAIIAQQNyAAIAkgASACIAggBSAGIAcQ1wkgCCQECzoBAn8CQAJAIABB1ABqIgIoAgAiA0UNACAAKAJcIANBf2pBA3RqIAFBCBDFAg0ADAELIAIgARCaAgsLKAEBfyMEIQYjBEEQaiQEIAYgARA3IAAgBiACIAMgBCAFEJcCIAYkBAsmAQF/IwQhBSMEQRBqJAQgBSABEDcgACAFIAIgAyAEEMYBIAUkBAs8AQJ/IwQhBSMEQSBqJAQgBUEQaiIGIAEQNyAFQQhqIgEgAhA3IAUgAxA3IAAgBiABIAUgBBCnBiAFJAQLMQECfyMEIQUjBEEQaiQEIAVBCGoiBiABEDcgBSACEDcgACAGIAUgAyAEEKADIAUkBAsvAQJ/IwQhBCMEQRBqJAQgBEEIaiIFIAEQNyAEIAIQNyAAIAUgBCADEKgGIAQkBAtJAQJ/IwQhBiMEQSBqJAQgBkEYaiIHIAEQNyAGQRBqIgEgAhA3IAZBCGoiAiADEDcgBiAEEDcgACAHIAEgAiAGIAUQ8wMgBiQEC30BAn8jBCEKIwRBQGskBCAKQThqIgsgARA3IApBMGoiASACEDcgCkEoaiICIAMQNyAKQSBqIgMgBBA3IApBGGoiBCAFEDcgCkEQaiIFIAYQNyAKQQhqIgYgBxA3IAogCBA3IAAgCyABIAIgAyAEIAUgBiAKIAkQ2gQgCiQECy8BAn8jBCEEIwRBEGokBCAEQQhqIgUgARA3IAQgAhA3IAAgBSAEIAMQ5AIgBCQECy8BAn8jBCEEIwRBEGokBCAEQQhqIgUgARA3IAQgAhA3IAAgBSAEIAMQtwIgBCQEC64DAQt/IwQhBSMEQTBqJAQgAEHA2ABqIQkgAEHUMmoiBigCAARAA0AgBiAHEFAoAgAiBCgCCEGAAnFFBEAgBCgC8AQiA0F/RgRAIAQoAgQQ6AQiA0UEQCAEIAkgBCgCABDCBiIDEP0DNgLwBAsFIAkgAxBVIQMLIAMgBCkCDDcCCCADIAQpAhw3AhAgAyAELAB9OgAYCyAHQQFqIgcgBigCAEcNAAsLIAVBIGohDCAFQRhqIQogBUEQaiEGIAVBCGohByAFIQQgAiACEOkEIABBwNgAaiILKAIAQeAAbGoQlwMgCygCAARAQQAhAANAIAkgABBVIgMqAghD//9/f1wEQCADKAIAIg0Q4AshCCAEIAEoAgA2AgAgBCAIIA0gCBs2AgQgAkGglAIgBBCVAyADKgIMqCEIIAcgAyoCCKg2AgAgByAINgIEIAJBqpQCIAcQlQMgAyoCFKghCCAGIAMqAhCoNgIAIAYgCDYCBCACQbWUAiAGEJUDIAogAy0AGDYCACACQcGUAiAKEJUDIAJB3osCIAwQlQMLIABBAWoiACALKAIARw0ACwsgBSQECw0AIAAgASACIAMQ1wwLCQAgACABEJYCCw0AIAAgASACIAMQ1gwLrQEBAn8jBCELIwRBIGokBCAAKAIAIQwgC0EcaiIAIAIQNCALQRhqIgIgAxA0IAtBFGoiAyAEEDQgC0EQaiIEIAUQNCALQQxqIgUgBhA0IAtBCGoiBiAHEDQgC0EEaiIHIAgQNCALIAkQNCABIAAgAiADIAQgBSAGIAcgCyAKIAxBA3FBmAtqETYAIAsQMSAHEDEgBhAxIAUQMSAEEDEgAxAxIAIQMSAAEDEgCyQECxkAIAAgASACIAMgBCAFIAYgByAIIAkQ1QwLEQAgACABIAIgAyAEIAUQ1AwLDQAgACABIAIgAxDTDAtGAQJ/IwQhBCMEQRBqJAQgACgCACEFIARBBGoiACACEDQgBCADEDQgASAAIAQgBUH/AHFBlAlqEQcAIAQQMSAAEDEgBCQEC0kBAn8jBCEGIwRBEGokBCAAKAIAIQcgBkEEaiIAIAIQNCAGIAMQNCABIAAgBiAEIAUgB0EDcUGaCmoRDwAgBhAxIAAQMSAGJAQL3wEBBX8jBCEAIwRBIGokBCAAQRBqIQUgAEEIaiEEIABBFGohBiAAIgEgAEEcaiIHNgIAIAAgAEEYaiIINgIEIANB+pMCIAAQqAFBAkYEQCABIAAqAhwgACoCGBAyIAIgASkDADcCCAUCQCAEIAc2AgAgBCAINgIEIANBhJQCIAQQqAFBAkYEQCABIAAqAhwgACoCGBAyIAQgAUGYqQQoAgBBpCpqEKYBIAIgBCkDADcCEAwBCyAFIAY2AgAgA0GPlAIgBRCoAUEBRgRAIAIgACgCFEEARzoAGAsLCyAAJAQLDwAgACABIAIgAyAEENIMCw8AIAAgASACIAMgBBDRDAsPACAAIAEgAiADIAQQ0AwLPAEBfyMEIQcjBEEQaiQEIAAoAgAhACAHIAIQNCABIAcgAyAEIAUgBiAAQQFxQYIJahE1ACAHEDEgByQECxEAIAAgASACIAMgBCAFEM8MCxkAIAEgAiADIAQgACgCAEEDcUGUCmoRNAALDQAgACABIAIgAxCPAgsJACAAIAEQgQILIAEBfyMEIQIjBEEQaiQEIAIgARA3IAAgAhDODCACJAQLHQAgAkEAQQAQuwEQ6AQiAEUEQCACEMIGIQALIAALHwEBfyMEIQIjBEEQaiQEIAIgARA3IAAgAhBjIAIkBAttAQJ/IwQhCSMEQRBqJAQgACgCACEKIAlBDGoiACACEDQgCUEIaiICIAMQNCAJQQRqIgMgBBA0IAkgBRA0IAEgACACIAMgCSAGIAcgCCAKQQFxQf4KahEzACAJEDEgAxAxIAIQMSAAEDEgCSQECxUAIAAgASACIAMgBCAFIAYgBxDNDAs4AQF/IwQhBSMEQRBqJAQgACgCACEAIAUgAhA0IAEgBSADIAQgAEEfcUGoCmoRBgAgBRAxIAUkBAsNACAAIAEgAiADEMwMCzwBAX8jBCEHIwRBEGokBCAAKAIAIQAgByACEDQgASAHIAMgBCAFIAYgAEEDcUHiCmoRLAAgBxAxIAckBAsRACAAIAEgAiADIAQgBRDLDAt+AQJ/IwQhCiMEQSBqJAQgACgCACELIApBEGoiACACEDQgCkEMaiICIAMQNCAKQQhqIgMgBBA0IApBBGoiBCAFEDQgCiAGEDQgASAAIAIgAyAEIAogByAIIAkgC0EDcUGKC2oRMgAgChAxIAQQMSADEDEgAhAxIAAQMSAKJAQLFwAgACABIAIgAyAEIAUgBiAHIAgQygwLvgEBAn8jBCEMIwRBMGokBCAAKAIAIQ0gDEEgaiIAIAIQNCAMQRxqIgIgAxA0IAxBGGoiAyAEEDQgDEEUaiIEIAUQNCAMQRBqIgUgBhA0IAxBDGoiBiAHEDQgDEEIaiIHIAgQNCAMQQRqIgggCRA0IAwgChA0IAEgACACIAMgBCAFIAYgByAIIAwgCyANQQNxQZwLahExACAMEDEgCBAxIAcQMSAGEDEgBRAxIAQQMSADEDEgAhAxIAAQMSAMJAQLGwAgACABIAIgAyAEIAUgBiAHIAggCSAKEMkMC3oBAn8jBCEIIwRBIGokBCAAKAIAIQkgCEEQaiIAIAIQNCAIQQxqIgIgAxA0IAhBCGoiAyAEEDQgCEEEaiIEIAUQNCAIIAYQNCABIAAgAiADIAQgCCAHIAlBB3FBgAtqESoAIAgQMSAEEDEgAxAxIAIQMSAAEDEgCCQECxMAIAAgASACIAMgBCAFIAYQyAwLbQECfyMEIQkjBEEgaiQEIAAoAgAhCiAJQRRqIgAgAhA0IAlBEGoiAiAEEDQgCUEEaiIEIAYQTCAJIAgQNCABIAAgAyACIAUgBCAHIAkgCkEBcUGSCWoRMAAgCRAxIAQQPiACEDEgABAxIAkkBAsVACAAIAEgAiADIAQgBSAGIAcQxwwLRwECfyMEIQUjBEEQaiQEIAAoAgAhBiAFQQxqIgAgAhA0IAUgBBBMIAEgACADIAUgBkEfcUGoCmoRBgAgBRA+IAAQMSAFJAQLDQAgACABIAIgAxDEDAsPACAAIAEgAiADIAQQwwwLPAEBfyMEIQcjBEEQaiQEIAAoAgAhACAHIAIQNCABIAcgAyAEIAUgBiAAQQFxQY4JahEuACAHEDEgByQECxEAIAAgASACIAMgBCAFEMIMCw8AIAAgASACIAMgBBDBDAtaAQJ/IwQhByMEQRBqJAQgACgCACEIIAdBCGoiACACEDQgB0EEaiICIAMQNCAHIAQQNCABIAAgAiAHIAUgBiAIQQNxQeIKahEsACAHEDEgAhAxIAAQMSAHJAQLEQAgACABIAIgAyAEIAUQwAwLaQECfyMEIQcjBEEQaiQEIAAoAgAhCCAHQQxqIgAgAhA0IAdBCGoiAiADEDQgB0EEaiIDIAQQNCAHIAUQNCABIAAgAiADIAcgBiAIQQ9xQeoKahEaACAHEDEgAxAxIAIQMSAAEDEgByQECxEAIAAgASACIAMgBCAFEL8MC2sBAn8jBCEIIwRBEGokBCAAKAIAIQkgCEEMaiIAIAIQNCAIQQhqIgIgAxA0IAhBBGoiAyAEEDQgCCAFEDQgASAAIAIgAyAIIAYgByAJQQNxQfoKahErACAIEDEgAxAxIAIQMSAAEDEgCCQECxMAIAAgASACIAMgBCAFIAYQvgwLTQECfyMEIQgjBEEQaiQEIAAoAgAhCSAIQQRqIgAgAhA0IAggAxA0IAEgACAIIAQgBSAGIAcgCUEHcUGAC2oRKgAgCBAxIAAQMSAIJAQLEwAgACABIAIgAyAEIAUgBhC9DAtLAQJ/IwQhByMEQRBqJAQgACgCACEIIAdBBGoiACACEDQgByADEDQgASAAIAcgBCAFIAYgCEEDcUHMCmoRKQAgBxAxIAAQMSAHJAQLEQAgACABIAIgAyAEIAUQvAwLTQECfyMEIQgjBEEQaiQEIAAoAgAhCSAIQQRqIgAgAhA0IAggAxA0IAEgACAIIAQgBSAGIAcgCUEBcUHQCmoRKAAgCBAxIAAQMSAIJAQLEwAgACABIAIgAyAEIAUgBhC7DAtJAQJ/IwQhBiMEQRBqJAQgACgCACEHIAZBBGoiACACEDQgBiADEDQgASAAIAYgBCAFIAdBA3FByApqEScAIAYQMSAAEDEgBiQECw8AIAAgASACIAMgBBC6DAsLACAAIAEgAhC4DAsLACAAIAEgAhC3DAsMACAAIAEQhwEQmAILDQAgACABIAIgAxC2DAsJACAAIAEQtQwLCQAgACABELQMCwkAIAAgARCzDAsQACAABEAgABC4BSAAEFQLCwYAQcDqAQvlFAEgfyMEIQAjBEEQaiQEQcDqAUGw6gFBmO8BQQBBuNMCQS1B59sCQQBB59sCQQBBu/ICQcvWAkGVARAFIABB9AA2AgBBwOoBQcbyAkEDQYCBAkHjzQICf0EwIQNBBBA/IgEgACgCADYCACADCyABQQAQAUHA6gFB1vICQdDpAUHayQJBwgBB9QAQS0EAQQBBAEEAEABBwOoBQeDyAkHQ6QFB2skCQcIAQfYAEEtBAEEAQQBBABAAIABBJDYCAEHA6gFBh+cCQbj2AUHayQJBwwAgABAzQbj2AUHjzQJBMSAAEDMQACAAQQw2AgBBwOoBQZ/BAkEFQcDdAUHq1QICf0EFIQRBBBA/IgEgACgCADYCACAECyABQQAQASAAQZYBNgIAIABBADYCBEHA6gFB6vICQQJB+IACQbvTAkH3ACAAEIABQQAQASAAQZcBNgIAIABBADYCBEHA6gFBrMECQQJB+IACQbvTAkH3ACAAEIABQQAQASAAQfgANgIAQcDqAUGB8wJBA0HsgAJB480CQTIgABAzQQAQASAAQZgBNgIAIABBADYCBEHA6gFBj/MCQQJB+IACQbvTAkH3ACAAEIABQQAQASAAQTM2AgBBwOoBQZzzAkEDQeCAAkGaywJBMiAAEDNBABABIABBNDYCAEHA6gFBq/MCQQNB4IACQZrLAkEyIAAQM0EAEAEgAEEBNgIAQcDqAUG68wJBBkGg3QFBpfkCAn9BASEFQQQQPyIBIAAoAgA2AgAgBQsgAUEAEAEgAEEBNgIAQcDqAUHC8wJBCEGA3QFBm/kCAn9BASEGQQQQPyIBIAAoAgA2AgAgBgsgAUEAEAEgAEEBNgIAQcDqAUHK8wJBB0Hg3AFBkvkCAn9BASEHQQQQPyIBIAAoAgA2AgAgBwsgAUEAEAEgAEECNgIAQcDqAUHY8wJBCEHA3AFBiPkCAn9BASEIQQQQPyIBIAAoAgA2AgAgCAsgAUEAEAEgAEEBNgIAQcDqAUHw8wJBCEGg3AFB/vgCAn9BASEJQQQQPyIBIAAoAgA2AgAgCQsgAUEAEAEgAEEFNgIAQcDqAUH48wJBB0GA3AFBn9MCQQMgABAzQQAQASAAQQI2AgBBwOoBQYb0AkEHQeDbAUH1+AICf0ECIQpBBBA/IgEgACgCADYCACAKCyABQQAQASAAQQY2AgBBwOoBQZL0AkEGQcDbAUHt+AICf0EGIQtBBBA/IgEgACgCADYCACALCyABQQAQASAAQQE2AgBBwOoBQaT0AkEHQaDbAUHk+AICf0EBIQxBBBA/IgEgACgCADYCACAMCyABQQAQASAAQQI2AgBBwOoBQa70AkEGQYDbAUHc+AICf0ECIQ1BBBA/IgEgACgCADYCACANCyABQQAQASAAQQ02AgBBwOoBQb70AkEFQeDaAUHq1QICf0EHIQ5BBBA/IgEgACgCADYCACAOCyABQQAQASAAQQE2AgBBwOoBQcj0AkEJQbDaAUGu+AICf0EBIQ9BBBA/IgEgACgCADYCACAPCyABQQAQASAAQQQ2AgBBwOoBQdL0AkEIQZDaAUGI+QICf0ECIRBBBBA/IgEgACgCADYCACAQCyABQQAQASAAQQE2AgBBwOoBQdv0AkEMQeDZAUGg+AICf0EBIRFBBBA/IgEgACgCADYCACARCyABQQAQASAAQQE2AgBBwOoBQej0AkEKQbDZAUGU+AICf0EBIRJBBBA/IgEgACgCADYCACASCyABQQAQASAAQQM2AgBBwOoBQfj0AkEHQZDZAUH1+AICf0EDIRNBBBA/IgEgACgCADYCACATCyABQQAQASAAQQ42AgBBwOoBQYT1AkEFQfDYAUHq1QICf0EIIRRBBBA/IgEgACgCADYCACAUCyABQQAQASAAQQE2AgBBwOoBQZj1AkEJQcDYAUGJ+AICf0ECIRVBBBA/IgEgACgCADYCACAVCyABQQAQASAAQZkBNgIAIABBADYCBEHA6gFBp/UCQQJB+IACQbvTAkH3ACAAEIABQQAQASAAQfkANgIAQcDqAUGx9QJBA0HsgAJB480CQTIgABAzQQAQASAAQfoANgIAQcDqAUG89QJBA0HsgAJB480CQTIgABAzQQAQASAAQfsANgIAQcDqAUHV9QJBA0HIgAJB480CAn9BNSEWQQQQPyIBIAAoAgA2AgAgFgsgAUEAEAEgAEEBNgIAQcDqAUHk9QJBBUGg2AFBgvgCAn9BAiEXQQQQPyIBIAAoAgA2AgAgFwsgAUEAEAEgAEEBNgIAQcDqAUHv9QJBB0GA2AFB+fcCAn9BASEYQQQQPyIBIAAoAgA2AgAgGAsgAUEAEAEgAEEDNgIAQcDqAUH59QJBBkHg1wFB3PgCAn9BAyEZQQQQPyIBIAAoAgA2AgAgGQsgAUEAEAEgAEEJNgIAQcDqAUGH9gJBBkHA1wFB7fgCAn9BByEaQQQQPyIBIAAoAgA2AgAgGgsgAUEAEAEgAEECNgIAQcDqAUGZ9gJBBkGg1wFB8fcCAn9BAiEbQQQQPyIBIAAoAgA2AgAgGwsgAUEAEAEgAEH8ADYCACAAQQA2AgRBwOoBQaL2AkEDQbyAAkHjzQJBNiAAEIABQQAQASAAQZoBNgIAIABBADYCBEHA6gFBsPYCQQJB+IACQbvTAkH3ACAAEIABQQAQASAAQf0ANgIAIABBADYCBEHA6gFBvvYCQQNBvIACQePNAkE2IAAQgAFBABABIABBNzYCAEHA6gFB0fYCQQRBkNcBQfHJAgJ/QQ8hHEEEED8iASAAKAIANgIAIBwLIAFBABABIABBmwE2AgAgAEEANgIEQcDqAUHd9gJBAkH4gAJBu9MCQfcAIAAQgAFBABABIABBnAE2AgAgAEEANgIEQcDqAUGa5QJBAkH4gAJBu9MCQfcAIAAQgAFBABABIABBnQE2AgAgAEEANgIEQcDqAUHo9gJBAkH4gAJBu9MCQfcAIAAQgAFBABABIABBODYCACAAQQA2AgRBwOoBQfj2AkEEQYDXAUHxyQICf0EQIR1BCBA/IQEgACgCBCECIAEgACgCADYCACABIAI2AgQgHQsgAUEAEAEgAEERNgIAQcDqAUGE9wJBBUHg1gFB6tUCQQogABAzQQAQASAAQQg2AgBBwOoBQY33AkEHQYDcAUGf0wJBAyAAEDNBABABIABBAjYCAEHA6gFBmPcCQQtBsNYBQeT3AgJ/QQIhHkEEED8iASAAKAIANgIAIB4LIAFBABABIABBEjYCAEHA6gFBo/cCQQVB4NYBQerVAkEKIAAQM0EAEAEgAEH+ADYCAEHA6gFBsPcCQQNBsIACQePNAgJ/QTkhH0EEED8iASAAKAIANgIAIB8LIAFBABABIABBEzYCAEHA6gFBvfcCQQVB4NYBQerVAkEKIAAQM0EAEAEgAEGeATYCACAAQQA2AgRBwOoBQcX3AkECQfiAAkG70wJB9wAgABCAAUEAEAEgAEGfATYCACAAQQA2AgRBwOoBQdT3AkECQfiAAkG70wJB9wAgABCAAUEAEAEgACQECycBAX8jBCECIwRBEGokBCACIAEQjwEgAEGY7wEgAhAENgIAIAIkBAttAQV/IwQhAiMEQRBqJAQgAkEIaiEFIAIhBiACQQRqIQMgACgCCEEASgRAA0AgBSAAKAIEIARBAnRqKAIANgIAIAMgBRCaDSAGIAEgAxDIAiAGEDEgAxAxIARBAWoiBCAAKAIISA0ACwsgAiQECyABAX8jBCECIwRBEGokBCACIAEQNyAAIAIQ0gkgAiQECwkAIAAgARCbDQsQACAABEAgABCbBCAAEFQLCwYAQYDtAQv4AwEGfyMEIQAjBEEQaiQEQYDtAUHw7AFBiO8BQQBBuNMCQSxB59sCQQBB59sCQQBBpfECQcvWAkGTARAFIABB7wA2AgBBgO0BQbDxAkEDQaSAAkHjzQICf0EsIQNBBBA/IgEgACgCADYCACADCyABQQAQASAAQQA2AgBBgO0BQcHxAkGI9gFB2skCQT8gABAzQYj2AUHjzQJBLSAAEDMQACAAQQg2AgBBgO0BQcfxAkG49gFB2skCQcAAIAAQM0G49gFB480CQS4gABAzEAAgAEEMNgIAQYDtAUHV8QJBuPYBQdrJAkHAACAAEDNBuPYBQePNAkEuIAAQMxAAIABBEDYCAEGA7QFB4/ECQbj2AUHayQJBwAAgABAzQbj2AUHjzQJBLiAAEDMQAEGA7QFB8fECQdDpAUHayQJBwQBB8AAQS0EAQQBBAEEAEABBgO0BQZncAkHQ6QFB2skCQcEAQfEAEEtBAEEAQQBBABAAIABBlAE2AgAgAEEANgIEQYDtAUH88QJBAkGcgAJBu9MCAn9B8gAhBEEIED8hASAAKAIEIQIgASAAKAIANgIAIAEgAjYCBCAECyABQQAQASAAQfMANgIAQYDtAUGO8gJBA0GQgAJB480CAn9BLyEFQQQQPyIBIAAoAgA2AgAgBQsgAUEAEAEgACQECwYAQcjuAQuCBAEBfyMEIQAjBEEQaiQEQcjuAUHo7gFBuO4BQQBBuNMCQStB59sCQQBB59sCQQBB7vACQcvWAkGSARAFIABBADYCAEHI7gFB+vACQbD2AUHayQJBPiAAEDNBsPYBQePNAkErIAAQMxAAIABBBDYCAEHI7gFBhPECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBCDYCAEHI7gFBjfECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBDDYCAEHI7gFBkPECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBEDYCAEHI7gFBk/ECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBFDYCAEHI7gFBlvECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBGDYCAEHI7gFBmfECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBHDYCAEHI7gFBnPECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBIDYCAEHI7gFBn/ECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBJDYCAEHI7gFBovECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIAAkBAsqAQF/IwQhASMEQRBqJAQgAUHG7wI2AgBB4tMCIAEQugMgABCeASABJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEgajYCACAAIAIQeyACJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEoajYCACAAIAIQeyACJAQL9AMCC38CfSMEIQMjBEEgaiQEIANBGGohCCADQRBqIQYgA0EIaiEJIAMhCkGYqQQoAgAiAUGYM2ooAgAiAgRAIAIsAH1FBEACQCABKgKAAiILQwAAAABbBEAgASoChAJDAAAAAFsNAQsgAigCCCIEQZiEgAhxQZCAgAhGBEACQCACIQADfyAAKALsBSIFRQ0BIAUoAggiBEGYhIAIcUGQgIAIRgR/IAUhAAwBBSAFCwshAAsFIAIhAAsgBEGQBHFFIQQgC0MAAAAAXARAIAEsAIgCBEAgASwAnAEEQCALQ83MzD2UIAIqAuwEIgySQwAAAD9DAAAgQBBkIgsgDJUhDCACIAs4AuwEIAkgAkEUaiIHQwAAgD8gDJMQUSAKIAFB8AFqIAJBDGoiBRBAIAYgCSAKEKACIAggBioCACAHKgIAlSAGKgIEIAcqAgSVEDIgBSAIELYCIAcgDBCoAyACQRxqIAwQqAMLBSAERQ0CIAAQ5QFDAACgQJQgAEGMBGoQjQEgAEFAayoCAEMAAABAlJJDH4UrP5QQRaiyIQsgACAAKgJcIAEqAoACIAuUkxC9AgsLIARBAXMgASoChAJDAAAAAFtyRQRAIAEsAIgCRQRAIAAQ5QEhCyAAIAAqAlggCyABKgKEApSTEPQECwsLCwsgAyQECzUBAn8jBCECIwRBEGokBCACIQMgASgCMCIBBEAgAyABNgIAIAAgAxCqAgUgABCeAQsgAiQECz0BAX8jBCECIwRBEGokBCACQgA3AgAgAkEANgIIIAIgAUHIAGoiASABEFwQkwEgACACEM0DIAIQPiACJAQLOQEBfyMEIQIjBEEQaiQEIAIgARCfASAAQcgAaiACKAIAIAIgAiwAC0EASBtBJxCVBCACED4gAiQECzMBAn8jBCECIwRBEGokBCACIgMgASgCcCIBNgIAIAEEQCAAIAMQgwMFIAAQngELIAIkBAsJACAAIAEQqg0LCQAgACABEKkNCwkAIAAgARCoDQsJACAAIAEQpw0LCQAgACABEKUNCwkAIAAgARCkDQvhBgQLfwF+AX0BfCMEIQYjBEEQaiQEIAYhAkGYqQQoAgAiAEHwAWoiBBCVAQRAIAIgBBCZASAAQewzaiACKQMAIgs3AgAgBCALNwIACyAAQf81aiEHAn8CQCAEEJUBRQ0AIABBiAdqIgUQlQFFDQAgAiAEIAUQQCAAIAIpAwAiCzcCgAcgC0IgiKchASALpwwBCyACQwAAAABDAAAAABAyIAAgAikDACILNwKAByALQiCIpyEBIAunC75DAAAAAFwgAb5DAAAAAFxyBEAgB0EAOgAACyAAIAQpAgA3AogHIABBwDJqIQhBACEBA0AgASAAQfgBamosAAAEQAJAIAEgAEHgB2pqIgUgAEH0B2ogAUECdGoiAyoCACIMQwAAAABdIgk6AAAgASAAQeoHampBADoAACAAQYgIaiABQQJ0aiAMOAIAIAMgDEMAAAAAXQR9QwAAAAAFIAwgACoCGJILOAIAIAEgAEHlB2pqIgpBADoAACAJRQRAIAQQlQEEQCACIAQgAEGQB2ogAUEDdGoQQAUgAkMAAAAAQwAAAAAQMgsgAEHECGogAUECdGoiAyoCACEMIAMgDCACEJ0CEDk4AgAgAEGcCGogAUEDdGoiAyADKgIAIAIqAgAiDIwgDCAMQwAAAABdGxA5OAIAIAAgAUEDdGpBoAhqIgMgAyoCACACKgIEIgyMIAwgDEMAAAAAXRsQOTgCAAwBCyAAKgIoIAgrAwAiDSAAQbgHaiABQQN0aiIDKwMAobZeBEAgBBCVAQRAIAIgBCAAQZAHaiABQQN0ahBABSACQwAAAABDAAAAABAyCyACEJ0CIAAqAiwiDCAMlF0EQCAKQQE6AAALIANEAAAA4P//78c5AwAFIAMgDTkDAAsgAEGQB2ogAUEDdGogBCkCADcCACACQwAAAABDAAAAABAyIABBnAhqIAFBA3RqIAIpAwA3AgAgAEHECGogAUECdGpDAAAAADgCAAsFIAEgAEHgB2pqIgVBADoAACABIABB6gdqaiAAQfQHaiABQQJ0aiIDKgIAIgxDAAAAAGA6AAAgAEGICGogAUECdGogDDgCACADQwAAgL84AgAgASAAQeUHampBADoAAAsgBSwAAARAIAdBADoAAAsgAUEBaiIBQQVHDQALIAYkBAsjACMEIQAjBEEQaiQEIABBpO4CNgIAQeLTAiAAELoDIAAkBAsHACAAEKMNCwYAQeDuAQuFBgEBfyMEIQAjBEEQaiQEQeDuAUHQ7gFB+O4BQQBBuNMCQSpB59sCQQBB59sCQQBBj+4CQcvWAkGRARAFQeDuAUG56AJB0OkBQdrJAkE6QecAEEtB0OkBQePNAkEnQegAEEsQACAAQQg2AgBB4O4BQffoAkGI9gFB2skCQTsgABAzQYj2AUHjzQJBKCAAEDMQACAAQQw2AgBB4O4BQYzpAkG49gFB2skCQTwgABAzQbj2AUHjzQJBKSAAEDMQACAAQRA2AgBB4O4BQZPpAkHY9gFBtNMCQQwgABAzQdj2AUGv0wJBBiAAEDMQACAAQRQ2AgBB4O4BQZ7pAkG49gFB2skCQTwgABAzQbj2AUHjzQJBKSAAEDMQACAAQRg2AgBB4O4BQarpAkG49gFB2skCQTwgABAzQbj2AUHjzQJBKSAAEDMQACAAQRw2AgBB4O4BQbbpAkGI9gFB2skCQTsgABAzQYj2AUHjzQJBKCAAEDMQAEHg7gFBwekCQdDpAUHayQJBOkHpABBLQQBBAEEAQQAQAEHg7gFB0+kCQdDpAUHayQJBOkHqABBLQQBBAEEAQQAQAEHg7gFB3+kCQdDpAUHayQJBOkHrABBLQQBBAEEAQQAQACAAQTQ2AgBB4O4BQevpAkHY9gFBtNMCQQwgABAzQdj2AUGv0wJBBiAAEDMQACAAQTg2AgBB4O4BQfzpAkHY9gFBtNMCQQwgABAzQdj2AUGv0wJBBiAAEDMQACAAQTw2AgBB4O4BQY3qAkGI9gFB2skCQTsgABAzQYj2AUHjzQJBKCAAEDMQACAAQcAANgIAQeDuAUGX6gJBwPYBQdrJAkE9IAAQM0HA9gFB480CQSogABAzEAAgAEHEADYCAEHg7gFBp+oCQdj2AUG00wJBDCAAEDNB2PYBQa/TAkEGIAAQMxAAQeDuAUG66gJB0OkBQdrJAkE6QewAEEtB0OkBQePNAkEnQe0AEEsQAEHg7gFBnO4CQdDpAUHayQJBOkHuABBLQQBBAEEAQQAQACAAJAQLJwEBfyMEIQIjBEEQaiQEIAIgARCPASAAQejuASACEAQ2AgAgAiQEC28BBX8jBCECIwRBEGokBCACQQhqIQQgAiEFIAJBBGohAyAAQRBqIgYoAgBBAEoEQEEAIQADQCAEIAYgABDtAzYCACADIAQQtg0gBSABIAMQyAIgBRAxIAMQMSAAQQFqIgAgBigCAEgNAAsLIAIkBAszAQJ/IwQhAiMEQRBqJAQgAiIDIAEoAjQiATYCACABBEAgACADEJIFBSAAEJ4BCyACJAQLQgICfwJ8IwQhASMEQRBqJAQCfCAAKAIAQYCAAigCACABQQRqEAYhBCABIAEoAgQQXyAEC6shAiABEMwBIAEkBCACCzwBA38jBCECIwRBEGokBCACQQFqIQMgAiEEIAAgARBbBH9BAAUgAyAELAAAOgAAIAEQuQ0LNgI0IAIkBAsnAQF/IwQhAiMEQRBqJAQgAiABEI8BIABB0O4BIAIQBDYCACACJAQLxRgDFX8BfgN9IwQhCCMEQdAAaiQEQZipBCgCACIAQQA6AOMGIAAoAggiA0ECcQR/IAAoAgxBAXEEfwJ/IAAqAowGQwAAAABeRQRAIAAqApQGQwAAAABeRQRAIAAqApAGQwAAAABeRQRAQQEgACoCmAZDAAAAAF5FDQMaCwsLIABBxDVqQQQ2AgBBAQsFQQALBUEACyEGIANBAXFBAEciDwRAIAAoAmQQ6AEEQCAAQwAAgD84AowGIABBxDVqQQM2AgALIAAoAmgQ6AEEQCAAQwAAgD84ApQGIABBxDVqQQM2AgALIAAoAmwQ6AEEQCAAQwAAgD84ApAGIABBxDVqQQM2AgALIAAoAjgQ6AEEQCAAQwAAgD84AtAGIABBxDVqQQM2AgALIAAoAjwQ6AEEQCAAQwAAgD84AtQGIABBxDVqQQM2AgALIABBQGsoAgAQ6AEEQCAAQwAAgD84AtgGIABBxDVqQQM2AgALIAAoAkQQ6AEEQCAAQwAAgD84AtwGIABBxDVqQQM2AgALIAAsAIgCBEAgAEMAAIA/OALEBgsgACwAiQIEQCAAQwAAgD84AsgGCyAALACKAgRAIABDAACAPzgCzAYLCyAAQawpaiIDIABB2ChqIgEpAgA3AgAgAyABKQIINwIIIAMgASkCEDcCECADIAEpAhg3AhggAyABKQIgNwIgIAMgASkCKDcCKCADIAEpAjA3AjAgAyABKQI4NwI4IANBQGsgAUFAaykCADcCACADIAEpAkg3AkggAyABKAJQNgJQQQAhAQNAIABB2ChqIAFBAnRqIgMgAEGMBmogAUECdGoqAgBDAAAAAF4EfSADKgIAIhZDAAAAAF0EfUMAAAAABSAWIAAqAhiSCwVDAACAvws4AgAgAUEBaiIBQRVHDQALIABBhDZqIhEoAgAiAwRAAkAgAEGCNmoiCSwAAEUhBQJAAkAgAEH+NWosAAAEfyAFDQMgAEH0NWoiASgCACECDAEFIABB9DVqIgEoAgAhAiAFRQ0BIAMgAhCKAyAAQYg2agshAgwBCyADIAIgAEGINmoiAhCqBAsgAEGgNWooAgBBiAZqIAEoAgBBBHRqIgMgAikCADcCACADIAIpAgg3AggLBSAAQYI2aiEJCyAAQYE2aiISQQA6AAAgCUEAOgAAIBFBADYCACAAQbw1akEANgIAIABBmTZqIgosAAAEQBDwCQsgAEGgNmoiDSgCAEECRgRAIABBsDZqKAIARQRAIABB+DZqKAIARQRAIABB/jVqQQA6AAALCyANQQA2AgALIAghAyAAQfw1aiECIABB/TVqIgQsAAAEQCACLAAABEAgACgCCEEEcQRAIAAoAgxBBHEEQCAAQf41aiwAAEUEQCAAQf81aiwAAARAIABBoDVqKAIABEAgAxDwBCAAIAMpAwAiFTcCiAcgACAVNwLwASAAQQE6AOMGCwsLCwsgBEEAOgAACwsgAkEAOgAAIABBuDVqQQA2AgAgAEH0NWohByAAQaA1aiIFKAIAIgEEQCABEO8JIAUoAgAiAQRAIAEoAvwFBEAgBygCAEUEQCABQQA2AvwFCwsLCxDuCSAAAn8CQAJAIAYgD3JFDQAgBSgCACIBRQ0AIAAgASgCCEGAgBBxIgFBEnZBAXM6AOUGIAENASAAQaQ1aigCAEUNASAAQf41aiwAAA0BQQEMAgsgAEEAOgDlBgsgAEHcNWooAgAEf0EBBSASLAAAQQBHCwtBAXE6AOYGQQFBARCZAgRAAkAgAEG0M2ooAgAEQBByDAELIAUoAgAiAUUiBkUEQCABKAIIQYCAgChxQYCAgAhGBEAgASgC7AUiCwRAIAsQdCABKAJUQQAQigMgAkEAOgAAIABB/zVqLAAARQ0DIARBAToAAAwDCwsLIABBnDRqIgIoAgBBAEoEQCACEOsGKAIEKAIIQYCAgMAAcQ0BIAIoAgBBf2pBARDrAgwBCyAHKAIABEBBABC4BgwBCyAGRQRAIAEoAghBgICAKHFBgICACEcEQCABQQA2AoAGCwsgAEGkNWpBADYCAAsLIABBtDVqIRMgAEGwNWohBCAAQaw1aiELIABBqDVqIg5CADcDACAOQgA3AwgCQAJAIABBpDVqIgYoAgBFDQAgAEH+NWosAAANACAAQdw1aigCAA0AIAUoAgAiAQR/IAEoAghBgIAQcQ0BAkACQEEAEIwBBEACQEEAQQEQmQIhDCAGKAIAIQIgDEEBcyIQIABBtDNqKAIAIgFFIhRBAXNyRQRAIA4gAjYCAAsgFARAIAsgAjYCACAMRQ0BIAQgAjYCAAwBCyABIAJHIgwNAiALIAE2AgAgDCAQcg0CIAQgATYCAAsFIABBtDNqKAIAIgEEQCAGKAIAIQIMAgsLDAELIAEgAkcNAgtBAkEBEJkCRQ0BIBMgBigCADYCAAwBBUEBIQxBAAshAQwBCyAFKAIAIgEEfyABKAIIQYCAEHEEQCAAQf41akEBOgAAC0EABUEAIQFBAQshDAsgCkEAOgAAIABBwDVqIhAoAgAiAgRAIBMgAjYCACAEIAI2AgAgCyACNgIAIA4gAjYCAAsgEEEANgIAIABBtDNqKAIABH8gAEHMM2ooAgAFQX8LIQIgAEGkNmohBCANKAIABEAgDUECNgIABSAEQX82AgAgAEGcNmpBADYCACAMRQRAIABB3DVqKAIARSACQQBHcQRAIAEoAghBgIAQcUUEQAJAIAJBAXEEQEEEQREQ/AMEQCAEQQA2AgALCyACQQJxBEBBBUESEPwDBEAgBEEBNgIACwsgAkEEcQRAQQZBExD8AwRAIARBAjYCAAsLIAJBCHFFDQBBB0EUEPwDRQ0AIARBAzYCAAsLCwsgAEGsNmogBCgCADYCAAsgDwR9IAIQ7QkFQwAAAAALIRgCQAJAIAQoAgAiAUF/RgRAIAosAAANAQUgCkEBOgAAIABBqDZqIAE2AgAMAQsMAQsgBigCAEUEQCAJQQE6AAAgEkEBOgAAIBFBADYCACAAQf41akEAOgAACwsQrQMgBSgCACICBEAgAigCCEGAgBBxRQRAIABB3DVqKAIARQRAIAIQ5QFDAADIQpQgACoCGJRDAAAAP5IQYiEWIAIoArwCRQRAAkAgAiwAxQJFDQAgCiwAAEUNACAEKAIAIgFBAkkEQCACIBZDAACAP0MAAIC/IAEblCACKgJYkhBiEPQEIAQoAgAhAQsgAUF+cUECRw0AIAIgFkMAAIC/QwAAgD8gAUECRhuUIAIqAlySEGIQvQILCyADQQRBAEPNzMw9QwAAIEEQkgEgAyoCACIXQwAAAABcBEAgAiwAeARAIAIgFiAXlCACKgJYkhBiEPQEIABBmDZqQQE6AAALCyADKgIEIhdDAAAAAFwEQCACIBYgF5QgAioCXJIQYhC9AiAAQZg2akEBOgAACwsLCyAIQThqIQIgCEEwaiEEIAhBKGohCSAIQSBqIQ0gCEEYaiELIAhBEGohDiAAQbA2ahD/AyAAQdQ2ahD/AyAAQfg2ahD/AyAKLAAABEAgAEGYNmoiDywAAARAIAcoAgBFBEAgBSgCACIBQQxqIQogBCABQewDaiAKEEAgCUMAAIA/QwAAgD8QMiACIAQgCRBAIAsgAUH0A2ogChBAIA5DAACAP0MAAIA/EDIgDSALIA4QNSADIAIgDRBDIAMgAUGIBmogBygCAEEEdGoQjQJFBEAgARDlAUMAAAA/lCEWIAIgAxB2IBYQRYwgAxCNASAWEEWMEDIgAyACENACIAFBiAZqIAcoAgBBBHRqIAMQtQIgBkEANgIACyAPQQA6AAALCwsCQAJAIAUoAgAiAUUNACABQYgGaiAHKAIAQQR0ahDjBA0AIAMgBSgCACIBQYgGaiAHKAIAQQR0aiIHKQIANwIAIAMgBykCCDcCCAwBCyADQwAAAABDAAAAAEMAAAAAQwAAAAAQXSAFKAIAIQELIAEEQCAEIAFBDGogAxA1IAkgBSgCAEEMaiADQQhqEDUgAiAEIAkQQwUgAhCMBAsgAEHINWoiAyACKQIANwIAIAMgAikCCDcCCCADIAMqAgQgGJI4AgQgAyADKgIMIBiSOAIMIABByDVqIgEqAgBDAACAP5IgAEHQNWoiAioCABBFIRYgASAWOAIAIAIgFjgCACADEOMEGiAAQdg1akEANgIAIAgkBAslAQF/IwQhAiMEQRBqJAQgAiABOwEAIABB+ClqIAIQrwcgAiQEC3IBBn8jBCECIwRBEGokBCACQQhqIQUgAiEGIAJBBGohAyAALgE+QQBKBEAgAEFAayEHA0AgBSAHKAIAIARB9ABsajYCACADIAUQuw0gBiABIAMQyAIgBhAxIAMQMSAEQQFqIgQgAC4BPkgNAAsLIAIkBAs1AQJ/IwQhAyMEQRBqJAQgAyIEIAEgAhDhAiIBNgIAIAEEQCAAIAQQkgUFIAAQngELIAMkBAs1AQJ/IwQhAyMEQRBqJAQgAyIEIAEgAhCUBiIBNgIAIAEEQCAAIAQQkgUFIAAQngELIAMkBAtLAQR/IwQhAyMEQRBqJAQCfyAAKAIAIQYgA0EEaiIAIAEQcSAGCwJ/IAAoAgAhBSADIAIQcSAFCyADKAIAEAsgAxAxIAAQMSADJAQLjwEBBX8jBCEIIwRBIGokBCAFLAALQQBIBEAgBSgCACEFCyAIQQhqIQkgCEEEaiEKIAhBGGoiC0EANgIAIAhBEGoiDCABIAIgAyAEIAVBACALEJoDIAYQW0UEQCAJQQA2AgAgCiALKAIAIAVrNgIAIAYgCSAKEMENCyAIIAcQbyAAIAwgCBCBASAIEDEgCCQECyQAIAIsAAtBAEgEQCACKAIAIQILIAAgASACQQAgAxDXBCACawtCAgJ/AnwjBCEBIwRBEGokBAJ8IAAoAgBBwP8BKAIAIAFBBGoQBiEEIAEgASgCBBBfIAQLqyECIAEQzAEgASQEIAILSAECfyMEIQYjBEEgaiQEIAZBCGoiByAGLAAQOgAAIAEQxA0hASAGIAMQNyAHIAYpAgA3AgAgACABIAIgByAEIAUQjgkgBiQEC0sBAn8jBCEHIwRBEGokBCAAKAIAIQggB0EEaiIAIAIQNCAHIAQQNCABIAAgAyAHIAUgBiAIQQFxQZAJahEmACAHEDEgABAxIAckBAsRACAAIAEgAiADIAQgBRDFDQtLAQJ/IwQhBSMEQRBqJAQgACgCACEAIAUgAxBMIAVBDGoiAyABIAIgBSAEIABBAXFBsgFqESUANgIAIAMoAgAhBiAFED4gBSQEIAYLDQAgACABIAIgAxDDDQtvAQN/IwQhCCMEQSBqJAQgACgCACEJIAhBCGoiACAFEEwgCEEEaiIFIAYQNCAIIAcQNCAIQRRqIgYgASACIAMgBCAAIAUgCCAJQQFxQYQJahEkACAGEH0hCiAGEDEgCBAxIAUQMSAAED4gCCQEIAoLFQAgACABIAIgAyAEIAUgBiAHEMINCzQBAn8jBCECIwRBEGokBCACIAEgACgCAEH/AXFB8gZqEQEAIAIQhwMhAyACED4gAiQEIAMLMgAgAUFAaygCACIBQcgAakGv7QIgARshASAAQgA3AgAgAEEANgIIIAAgASABEFwQkwELXgICfwJ9IwQhAyMEQRBqJAQgASEEIAAoAgAhASADIAQgACgCBCIAQQF1aiIEIAIgAEEBcQR/IAEgBCgCAGooAgAFIAELQR9xQShqEQgAOAIAIAMqAgAhBiADJAQgBgsLACAAIAEgAhDADQsLACAAIAEgAhC/DQsJACAAIAEQvg0LKwECfyMEIQAjBEEQaiQEIABB4gA2AgBBBBA/IgEgACgCADYCACAAJAQgAQsJACAAIAEQug0LCQAgACABELgNCwkAIAAgARC3DQsQACAABEAgABDVBCAAEFQLCwYAQaDsAQubCQEKfyMEIQAjBEEQaiQEQaDsAUGQ7AFBqO4BQQBBuNMCQShB59sCQQBB59sCQQBBz+oCQcvWAkGOARAFIABBADYCAEGg7AFB1uoCQdj2AUG00wJBCiAAEDNB2PYBQa/TAkEFIAAQMxAAIABBBDYCAEGg7AFB3+oCQdj2AUG00wJBCiAAEDNB2PYBQa/TAkEFIAAQMxAAQaDsAUHl6gJB0OkBQdrJAkE0Qd8AEEtBAEEAQQBBABAAIABB4AA2AgBBoOwBQfPqAkEDQYSAAkHjzQJBHyAAEDNBABABQaDsAUGB6wJB0OkBQdrJAkE0QeEAEEtB0OkBQePNAkEgENINEAAgAEE4NgIAQaDsAUGP6wJB2PYBQbTTAkEKIAAQM0HY9gFBr9MCQQUgABAzEAAgAEE8NgIAQaDsAUGg6wJBsPYBQdrJAkE1IAAQM0Gw9gFB480CQSEgABAzEAAgAEE+NgIAQaDsAUGt6wJBqPYBQdrJAkE2IAAQM0Go9gFB480CQSIgABAzEAAgAEHjADYCAEGg7AFBvesCQQNBhIACQePNAkEfIAAQM0EAEAEgAEHIADYCAEGg7AFBz+sCQdj2AUG00wJBCiAAEDNB2PYBQa/TAkEFIAAQMxAAIABBzAA2AgBBoOwBQdbrAkHY9gFBtNMCQQogABAzQdj2AUGv0wJBBSAAEDMQACAAQdQANgIAQaDsAUHe6wJBuPYBQdrJAkE3IAAQM0G49gFB480CQSMgABAzEAAgAEGPATYCACAAQQA2AgRBoOwBQfLrAkECQfj/AUG70wJB5AAgABCAAUEAEAEgAEGQATYCACAAQQA2AgRBoOwBQYLsAkECQfj/AUG70wJB5AAgABCAAUEAEAEgAEEkNgIAQaDsAUGT7AJBA0Hs/wFBmssCQTEgABAzQQAQASAAQSU2AgBBoOwBQZ3sAkEDQez/AUGaywJBMSAAEDNBABABIABB5QA2AgAgAEEANgIEQaDsAUGx7AJBA0Hg/wFB480CAn9BJiEDQQgQPyEBIAAoAgQhAiABIAAoAgA2AgAgASACNgIEIAMLIAFBABABIABBCzYCACAAQQA2AgRBoOwBQcHsAkEDQdT/AUG+5AICf0ECIQRBCBA/IQEgACgCBCECIAEgACgCADYCACABIAI2AgQgBAsgAUEAEAEgAEEpNgIAIABBADYCBEGg7AFB0OwCQQJBzP8BQdrJAgJ/QTghBUEIED8hASAAKAIEIQIgASAAKAIANgIAIAEgAjYCBCAFCyABQQAQASAAQeYANgIAQaDsAUHZ7AJBAkHE/wFB2skCAn9BOSEGQQQQPyIBIAAoAgA2AgAgBgsgAUEAEAEgAEEBNgIAQaDsAUHm7AJBCEGQ1gFBpe0CAn9BASEHQQQQPyIBIAAoAgA2AgAgBwsgAUEAEAEgAEEBNgIAQaDsAUH07AJBBUHw1QFBnu0CAn9BASEIQQQQPyIBIAAoAgA2AgAgCAsgAUEAEAEgAEEBNgIAQaDsAUGK7QJBB0HQ1QFBle0CAn9BASEJQQQQPyIBIAAoAgA2AgAgCQsgAUEAEAEgACQEC1wBA38jBCEEIwRBgAFqJAQgBEEIaiEFIAQhAyACEFsEQCAFEN8CBSADIAIQbyAFIAMQuAcgAxAxCyAEQQRqIgMgAUEAIAUgAhBbGxCeBjYCACAAIAMQgwMgBCQECykBAX8gACgCBCIBIAAoAghHBEAgACABNgIICyAAKAIAIgAEQCAAEFQLC5kBAQR/IAFBBGoiAigCACAAKAIEIAAoAgAiA2siBWshBCACIAQ2AgAgBUEASgR/IAQgAyAFEEYaIAIhAyACKAIABSACIQMgBAshAiAAKAIAIQQgACACNgIAIAMgBDYCACAAKAIEIQIgACABKAIINgIEIAEgAjYCCCAAKAIIIQIgACABKAIMNgIIIAEgAjYCDCABIAMoAgA2AgALLQEBfyAAKAIIIQIDQCACQQA6AAAgACAAKAIIQQFqIgI2AgggAUF/aiIBDQALC0AAIABBADYCDCAAIAM2AhAgACABBH8gARA/BUEACyIDNgIAIAAgAiADaiICNgIIIAAgAjYCBCAAIAEgA2o2AgwLLQEBfyAAKAIEIQIDQCACQQA6AAAgACAAKAIEQQFqIgI2AgQgAUF/aiIBDQALC50BAQZ/IwQhBCMEQSBqJAQgBCECIAAoAgggACgCBCIDayABSQRAQf////8HIAEgAyAAKAIAa2oiBUkEQBAKBSACIAUgACgCCCAAKAIAIgZrIgdBAXQiAyADIAVJG0H/////ByAHQf////8DSRsgACgCBCAGayAAQQhqEN0NIAIgARDcDSAAIAIQ2w0gAhDaDQsFIAAgARDeDQsgBCQECzMBAX8jBCECIwRBEGokBCABKAIAIQEgAkG66gIQdyAAIAEgAigCABAIEF8gAhAxIAIkBAszAQF/IwQhAiMEQRBqJAQgASgCACEBIAJBp+oCEHcgACABIAIoAgAQCBBfIAIQMSACJAQLMwEBfyMEIQIjBEEQaiQEIAEoAgAhASACQZfqAhB3IAAgASACKAIAEAgQXyACEDEgAiQECzMBAX8jBCECIwRBEGokBCABKAIAIQEgAkGN6gIQdyAAIAEgAigCABAIEF8gAhAxIAIkBAszAQF/IwQhAiMEQRBqJAQgASgCACEBIAJBwekCEHcgACABIAIoAgAQCBBfIAIQMSACJAQLMwEBfyMEIQIjBEEQaiQEIAEoAgAhASACQffoAhB3IAAgASACKAIAEAgQXyACEDEgAiQECzMBAX8jBCECIwRBEGokBCABKAIAIQEgAkG56AIQdyAAIAEgAigCABAIEF8gAhAxIAIkBAs2AQJ/IAAoAgQgACgCACIDayICIAFJBEAgACABIAJrEN8NBSACIAFLBEAgACABIANqNgIECwsL/AEBBn8jBCEIIwRBkAFqJAQgCEEIaiEJIAhBgAFqIgZBADYCACAGQQA2AgQgBkEANgIIIAhBDGoiByACQYjPAhBXIAYgBxDKAhDnDSAHEDEgCCILIAYoAgQgBigCACIKayAKEKEBIAcgCBCVBSAHIAIQygMgBxAxIAYoAgQgBigCAGsiAhBTIgogBigCACACEEYaIAQQWwRAIAcQ3wIFIAkgBBBvIAcgCRC4ByAJEDELIAUQWwR/QQAFIAUQtwcLIQUgCyABIAogAiADQQAgByAEEFsbIAUQhgY2AgAgACALEIMDIAYoAgAiAARAIAYgADYCBCAAEFQLIAgkBAv3AQEFfyMEIQMjBEEgaiQEIANBHGoiAkEANgIAIANBGGoiBEF/NgIAIANBFGoiBUF/NgIAIANBEGoiBkF/NgIAIAEgAiAEIAUgBhCfBiAAEJYFIANBDGoiAUHu5wIQdyADIAYoAgAgBCgCACAFKAIAbGwgAigCABChASADQQhqIgIgAxCVBSAAIAEgAhCpAiACEDEgARAxIAFB9ecCEHcgAiAEEHEgACABIAIQqQIgAhAxIAEQMSABQfvnAhB3IAIgBRBxIAAgASACEKkCIAIQMSABEDEgAUGC6AIQdyACIAYQcSAAIAEgAhCpAiACEDEgARAxIAMkBAs2AQJ/IwQhASMEQRBqJAQgASICQQA2AgAgACABEIAKIgAEQCAAIAIoAgAQwQYgABBBCyABJAQL9wEBBX8jBCEDIwRBIGokBCADQRxqIgJBADYCACADQRhqIgRBfzYCACADQRRqIgVBfzYCACADQRBqIgZBfzYCACABIAIgBCAFIAYQkwkgABCWBSADQQxqIgFB7ucCEHcgAyAGKAIAIAQoAgAgBSgCAGxsIAIoAgAQoQEgA0EIaiICIAMQlQUgACABIAIQqQIgAhAxIAEQMSABQfXnAhB3IAIgBBBxIAAgASACEKkCIAIQMSABEDEgAUH75wIQdyACIAUQcSAAIAEgAhCpAiACEDEgARAxIAFBgugCEHcgAiAGEHEgACABIAIQqQIgAhAxIAEQMSADJAQLIwEBfyMEIQIjBEEQaiQEIAIgASgCCDYCACAAIAIQcSACJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEkajYCACAAIAIQeyACJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEsajYCACAAIAIQeyACJAQLbQEFfyMEIQIjBEEQaiQEIAJBCGohBSACIQYgAkEEaiEDIAAoAjRBAEoEQANAIAUgACgCPCAEQQJ0aigCADYCACADIAUQgwMgBiABIAMQyAIgBhAxIAMQMSAEQQFqIgQgACgCNEgNAAsLIAIkBAsJACAAIAEQ7w0LCQAgACABEO4NCwkAIAAgARDtDQsrAQJ/IwQhACMEQRBqJAQgAEHbADYCAEEEED8iASAAKAIANgIAIAAkBCABCwwAIAAgARCHATYCCAsJACAAIAEQ7A0LIQAjBCEBIwRBEGokBCABQdiFAjYCACAAIAEQqgIgASQECyEAIwQhASMEQRBqJAQgAUGwxwE2AgAgACABEKoCIAEkBAsgACMEIQEjBEEQaiQEIAEQkQk2AgAgACABEKoCIAEkBAshACMEIQEjBEEQaiQEIAFBsIEBNgIAIAAgARCqAiABJAQLIAAjBCEBIwRBEGokBCABEJAJNgIAIAAgARCqAiABJAQLIQAjBCEBIwRBEGokBCABQcqFAjYCACAAIAEQqgIgASQEC9UNAgl/An0jBCEHIwRBEGokBEGYqQQoAgAiACgClAFBNGpBABBQKAIAEL4DGiAALAC/AQRAIAAoAgxBAnFFBEAgAEEAOgC/AQsLIABBoNgAaiIBLAAARQRAIABBwNgAaigCABogACgCICIEBEAgBBDqDQsgAUEBOgAACyAAQaTYAGoiASoCACIJQwAAAABeBEAgASAJIAAqAhiTIgk4AgAgCUMAAAAAXwRAIAAoAiAiBARAIAQQtgcFIABBAToA5AYLIAFDAAAAADgCAAsLIABBwDJqIgEgASsDACAAKgIYu6A5AwAgAEEBOgABIABByDJqIgEgASgCAEEBajYCACAAQYDYAGpBADYCACAAQZAzakEANgIAIAAoApQBQQE6AAAQkwUQlAUgAEGwMWooAgAQvgMaIAciBEMAAAAAQwAAAAAgACoCECAAKgIUEDYgAEHQMWoiASAEKQIANwIAIAEgBCkCCDcCCCAAQcwxaiAAQawraigCADYCACAAQdw3aiIBEPgDIAEgACgClAEoAggQmAIgARCrBiAAQYA4aiAAQagrai0AAEECQQAgAEGpK2osAAAbcjYCACAAQZw3ahCbBCAAQdQ4aiwAAARAIABB7DhqKAIAIgEgAEG0M2ooAgBGBEAgARC0AgsLAkACQCAAQagzaiIIKAIABEAgAEGgM2oiBSgCACIBBEAgASAAQbQzaigCAEYEQCAAQbAzakMAAAAAOAIACwwCCwUgAEGsM2pDAAAAADgCACAAQaAzaiIFKAIAIQEgAEGwM2pDAAAAADgCACABDQELIABBtDNqIgYoAgAhAQwBCyAAQawzaiICIAAqAhgiCSACKgIAkjgCACAAQbQzaiIGKAIAIgMgAUYEQCABIQIFIABBsDNqIgIgCSACKgIAkjgCACABIQIgAyEBCwsgCCACNgIAIAVBADYCACAAQaQzakEAOgAAIAEgAEG8M2oiAigCAEcEQCABRSABIABBuDNqKAIAR3JFBEAQciAGKAIAIQELCyAAKgIYIQkgAQRAIABBwDNqIgMgCSADKgIAkjgCAAsgAEHoM2oiAyAJIAMqAgCSOAIAIABBuDNqIAE2AgAgAEHcM2ogAEHYM2ooAgA2AgAgAEHIM2ogAEHGM2osAAA6AAAgAkEANgIAIABBxzNqQQA6AAAgAEHEM2pBADoAACABIABB1NcAaiICKAIAIgNGIANFckUEQCACQQA2AgALIABBvDlqIABBuDlqIgEoAgA2AgAgAUEANgIAIABBtDlqQ///f384AgAgAEHVOGpBADoAACAAQdgYaiAAQdgIakGAEBBGGkEAIQEDQCAAQdgIaiABQQJ0aiICIAEgAEGMAmpqLAAABH0gAioCACIKQwAAAABdBH1DAAAAAAUgCSAKkgsFQwAAgL8LOAIAIAFBAWoiAUGABEcNAAsQvA0QsQ0gAEHM3ABqIgEgASoCACAAKgIYIgkgAEHo2ABqIABByNwAaiICKAIAIgNBAnRqIgUqAgCTkjgCACAFIAk4AgAgAiADQQFqQfgAbzYCACAAIAEqAgAiCUMAAAAAXgR9QwAAgD8gCUMAAPBClZUFQ///f38LOALoBhDzDhChDgJAAkAQ/wINACAAQdw1aigCAARAIABB7DVqKgIAQwAAAABeDQELIABB2DdqIgEgASoCACAAKgIYQwAAIEGUk0MAAAAAEDk4AgAMAQsgAEHYN2oiASABKgIAIAAqAhhDAADAQJSSQwAAgD8QRTgCAAsgAEHQOGpBADYCACAAQdjcAGpBfzYCACAAQdTcAGpBfzYCACAAQdDcAGpBfzYCACAEQwAAgD9DAACAPxAyIABBkNgAaiAEKQMANwIAEKYNIAYoAgBFBEAgAEGgNWoiASgCACICBEAgAiwAegRAIAIoAghBgIAQcUUEQCAALACIAkUEQEEAQQAQbQRAAkAgAEGkNWooAgAEQCAAQfg1aigCACICQf////8HRwRAIAEoAgAgAkEBakF/QQEgACwAiQIbajYCvAYMAgsLIAEoAgAgACwAiQJBB3RB/wFxQRh0QR91QRh0QRh1NgK8BgsLCwsLCwsgAEH4NWpB/////wc2AgAgAEHUMmoiAygCAARAQQAhAQNAIAMgARBQKAIAIgIgAiwAejoAeyACQQA6AHogAkEAOgB8IAFBAWoiASADKAIARw0ACwsgAEGgNWoiASgCACICBEAgAiwAe0UEQEEAELUHCwsgAEH4MmoQvQMgAEGoNGpBABCRBSABKAIAEJkFIARDAADIQ0MAAMhDEDIgBEEEEJoEQYSGAkEAQQAQ6wEaIABBAToAAiAHJAQLIQAjBCEBIwRBEGokBCABQcSFAjYCACAAIAEQqgIgASQECwkAIAAgARDrDQszAQJ/IwQhAiMEQRBqJAQgAiABIAAoAgBB/wFxQfIGahEBACACEH0hAyACEDEgAiQEIAMLCQAgACABEOkNCyMAIAAoAjRBAEoEfyAAKAIUBH9BAQUgACgCGEEARwsFQQALC2sBA38jBCEGIwRBEGokBCAAKAIAIQcgBkEIaiIAIAIQNCAGQQRqIgIgBBA0IAYgBRA0IAZBDGoiBCABIAAgAyACIAYgB0EDcUGeCmoRIwAgBBB9IQggBBAxIAYQMSACEDEgABAxIAYkBCAICxEAIAAgASACIAMgBCAFEOgNCwsAIAAgASACENkNCxAAIAAEQCAAEKMGIAAQVAsLBgBByO0BC6cJAQV/IwQhACMEQRBqJARByO0BQbjtAUGY7gFBAEG40wJBJUHn2wJBAEHn2wJBAEHD5AJBy9YCQYkBEAUgAEEaNgIAQcjtAUHP5AJBA0G0/wFBmssCAn9BMCECQQQQPyIBIAAoAgA2AgAgAgsgAUEAEAEgAEEBNgIAQcjtAUHe5AJBBkGw1QFBsegCAn9BASEDQQQQPyIBIAAoAgA2AgAgAwsgAUEAEAEgAEGKATYCACAAQQA2AgRByO0BQfPkAkECQaj/AUG70wJB0AAgABCAAUEAEAEgAEGLATYCACAAQQA2AgRByO0BQYDlAkECQaj/AUG70wJB0AAgABCAAUEAEAEgAEGMATYCACAAQQA2AgRByO0BQY/lAkECQaj/AUG70wJB0AAgABCAAUEAEAEgAEGNATYCACAAQQA2AgRByO0BQZrlAkECQaj/AUG70wJB0AAgABCAAUEAEAEgAEEmNgIAIABBADYCBEHI7QFBoOUCQQJBoP8BQdrJAkEvIAAQgAFBABABIABBJzYCACAAQQA2AgRByO0BQablAkECQaD/AUHayQJBLyAAEIABQQAQASAAQdEANgIAQcjtAUGu5QJBAkGY/wFB2skCQTAgABAzQQAQASAAQdIANgIAQcjtAUHB5QJBAkGY/wFB2skCQTAgABAzQQAQASAAQdMANgIAQcjtAUHU5QJBAkGY/wFB2skCQTAgABAzQQAQASAAQdQANgIAQcjtAUHq5QJBAkGY/wFB2skCQTAgABAzQQAQASAAQdUANgIAQcjtAUH/5QJBAkGY/wFB2skCQTAgABAzQQAQASAAQdYANgIAQcjtAUGW5gJBAkGY/wFB2skCQTAgABAzQQAQASAAQdcANgIAQcjtAUGw5gJBAkGY/wFB2skCQTAgABAzQQAQASAAQdgANgIAQcjtAUHW5gJBAkGY/wFB2skCQTAgABAzQQAQASAAQdkANgIAQcjtAUHt5gJBAkGY/wFB2skCQTAgABAzQQAQASAAQQA2AgBByO0BQYDnAkGI9gFB2skCQTEgABAzQYj2AUHjzQJBGyAAEDMQACAAQQQ2AgBByO0BQYfnAkG49gFB2skCQTIgABAzQbj2AUHjzQJBHCAAEDMQAEHI7QFBjecCQdDpAUHayQJBM0HaABBLQdDpAUHjzQJBHRDzDRAAIABBDDYCAEHI7QFBk+cCQbj2AUHayQJBMiAAEDNBuPYBQePNAkEcIAAQMxAAIABBEDYCAEHI7QFBo+cCQbj2AUHayQJBMiAAEDNBuPYBQePNAkEcIAAQMxAAIABBHDYCAEHI7QFBs+cCQbj2AUHayQJBMiAAEDNBuPYBQePNAkEcIAAQMxAAIABBIDYCAEHI7QFBvOcCQbj2AUHayQJBMiAAEDNBuPYBQePNAkEcIAAQMxAAQcjtAUHG5wJB0OkBQdrJAkEzQdwAEEtBAEEAQQBBABAAQcjtAUHR5wJB0OkBQdrJAkEzQd0AEEtBAEEAQQBBABAAIABB3gA2AgBByO0BQeHnAkEDQYz/AUHjzQICf0EeIQRBBBA/IgEgACgCADYCACAECyABQQAQASAAJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEIajYCACAAIAIQeyACJAQLwAEBB38jBCEFIwRBEGokBCAFQQxqIQRBsKkEKAIAIQYgBSIDIAEQnwEgBkEEaiICLAALQQBIBEACfyACKAIAIQggBEEAOgAAIAgLIAQQlgEgBkEANgIIBSAEQQA6AAAgAiAEEJYBIAJBADoACwsgAkEAEIQCIAIgAykCADcCACACIAMoAgg2AgggA0IANwIAIANBADYCCCADED4gACABEFsEf0EABSACLAALQQBIBH8gAigCAAUgAgsLNgIYIAUkBAvAAQEHfyMEIQUjBEEQaiQEIAVBDGohBEGwqQQoAgAhBiAFIgMgARCfASAGQRBqIgIsAAtBAEgEQAJ/IAIoAgAhCCAEQQA6AAAgCAsgBBCWASAGQQA2AhQFIARBADoAACACIAQQlgEgAkEAOgALCyACQQAQhAIgAiADKQIANwIAIAIgAygCCDYCCCADQgA3AgAgA0EANgIIIAMQPiAAIAEQWwR/QQAFIAIsAAtBAEgEfyACKAIABSACCws2AhwgBSQECx8AIAFBFUkEfyAAQSxqIAFBAnRqIAI2AgBBAQVBAAsLJwEBfyMEIQIjBEEQaiQEIAIgARCPASAAQbjtASACEAQ2AgAgAiQECzQBAn8jBCECIwRBEGokBCACIgMgASgCjAEiATYCACABBEAgACADEIwOBSAAEJ4BCyACJAQLNAECfyMEIQIjBEEQaiQEIAIiAyABKAKYASIBNgIAIAEEQCAAIAMQgwMFIAAQngELIAIkBAs9AQN/IwQhAiMEQRBqJAQgAkEBaiEDIAIhBCAAIAEQWwR/QQAFIAMgBCwAADoAACABEJ0FCzYCmAEgAiQECyQBAX8jBCECIwRBEGokBCACIAFBnAFqNgIAIAAgAhB7IAIkBAskAQF/IwQhAiMEQRBqJAQgAiABQaQBajYCACAAIAIQeyACJAQLJAEBfyMEIQIjBEEQaiQEIAIgAUGsAWo2AgAgACACEHsgAiQECyQBAX8jBCECIwRBEGokBCACIAFB6AFqNgIAIAAgAhB7IAIkBAsgACABQQVJBH8gASAAQfABamogAkEBcToAAEEBBUEACwshACABQYAESQR/IAEgAEGEAmpqIAJBAXE6AABBAQVBAAsLIAAgAUEVSQR/IABBhAZqIAFBAnRqIAI4AgBBAQVBAAsLJAEBfyMEIQIjBEEQaiQEIAIgAUH4Bmo2AgAgACACEHsgAiQEC/ACAgt/AX4jBCEFIwRBIGokBEGYqQQoAgAiAkH0M2ooAgAiAAR/QQAgACAAKAIIQYAEcRsFQQALIQAgBSEGIAVBEGohAyAFQQhqIgcgAkHkKmoiBCkCACILNwMAIAIsAL8BBEAgA0MAAIBAQwAAgEAQMiAGIAQgAxCmAQUgBiALNwMACyACQZwzagJ/AkAgAkHUMmoiCCgCACIEQQBKBEACQCACQfABaiEJA0ACQCAIIARBf2oiChBQKAIAIgEsAHoEQCABLACBAUUEQCABKAIIQYAEcUUEQCADIAEpAtwDNwIAIAMgASkC5AM3AgggASgCCEGCgIAIcQRAIAMgBxDQAgUgAyAGENACCyAAIAEgABshASADIAkQmgUEQCABDQRBACEACwsLCyAEQQFMDQIgCiEEDAELCyACQZgzaiABNgIAIAEhAAwCCwsgAkGYM2ogADYCACAABH8MAQVBAAsMAQsgACgC8AULNgIAIAUkBAs8AQJ/IwQhAyMEQRBqJAQgAyEEIAJBBUkEQCAEIAFBiAdqIAJBA3RqNgIAIAAgBBB7BSAAEJQBCyADJAQLHwAgAUEVSQR9IABB0ChqIAFBAnRqKgIABUMAAIC/CwsgACABQYAESQR9IABB0AhqIAFBAnRqKgIABUMAAIC/CwsfACABQQVJBH0gAEHsB2ogAUECdGoqAgAFQwAAgL8LCwsAIAAgASACEJkOCwkAIAAgARCXDgs1AQF/IwQhAyMEQRBqJAQgACgCACEAIAMgAhBMIAEgAyAAQf8BcUHyBmoRAQAgAxA+IAMkBAsaACAAIAEsAAtBAEgEfyABKAIABSABCxD8CwudBAEIf0GYqQQoAgAhABCYDhD/AiIBQQBHIgYEQCAAQZwzaiICKAIAIgMEQCADIAEQlwVFBEAgAEGYM2pBADYCACACQQA2AgALCwsgACgCCEEQcQRAIABBnDNqQQA2AgAgAEGYM2oiBEEANgIABSAAQZgzaiEECyAAQZw0aiEFQQAhAkEAIQNBfyEBA0AgAiAAQeAHamosAAAEQCACIABB7wdqaiAEKAIABH9BAQUgBRB+QQFzC0EBcToAAAsgAiAAQfgBamosAAAiB0H/AXEgA0EBcXJBAEchAyAHBEACQCABQX9HBEAgAEG4B2ogAkEDdGorAwAgAEG4B2ogAUEDdGorAwBjRQ0BCyACIQELCyACQQFqIgJBBUcNAAsgAEHUOGosAAAEfyAAQdg4aigCAEEQcUEARwVBAAsgAUF/RgR/QQEFIAEgAEHvB2pqLAAAQQBHCyIBckUEQCAAQZwzakEANgIAIARBADYCAAsgAEHQ3ABqKAIAIgJBf0YEQCAAAn8CQCABRQ0AIAQoAgBBAEcgA3JFDQBBAQwBCyAFEH5BAXNBAXELOgDgBgUgACACQQBHOgDgBgsgACAAQdTcAGooAgAiAUF/RgR/IABBtDNqKAIAQQBHIAZyBSABQQBHC0EBcToA4QYgACwA5QYEQCAAKAIIQQlxQQFGBEAgAEEBOgDhBgsLIAAgAEHY3ABqKAIAQQFqQQFLOgDiBgsXACABIAIgAyAAKAIAQQNxQbYCahEiAAsLACAAIAEgAhCWDgs1AgF/An0jBCEDIwRBEGokBCADIAEgAiAAKAIAQR9xQShqEQgAOAIAIAMqAgAhBSADJAQgBQsfACABQRVJBH0gAEGEBmogAUECdGoqAgAFQwAAAAALCwsAIAAgASACEJUOCx0AIAFBgARJBH8gASAAQYQCamosAABBAEcFQQALCwsAIAAgASACEJQOCxYAIAEgAiAAKAIAQf8AcUG0AWoRAAALHAAgAUEFSQR/IAEgAEHwAWpqLAAAQQBHBUEACwsJACAAIAEQkw4LEQBBsKkEKAIAQTRqIAEQiAELEAAgAEGwqQQoAgBBNGoQbwsRAEGwqQQoAgBBMGogARCIAQsQACAAQbCpBCgCAEEwahBvCxEAQbCpBCgCAEEsaiABEIgBCxAAIABBsKkEKAIAQSxqEG8LCQAgACABEJIOCwkAIAAgARCRDgsJACAAIAEQkA4LCQAgACABEI8OCwkAIAAgARCODgsJACAAIAEQjQ4LEQBBsKkEKAIAQRxqIAEQiAELEAAgAEGwqQQoAgBBHGoQbwsLACAAIAEgAhCLDgs1AQJ/IwQhAyMEQRBqJAQgAyABIAIgACgCAEH/AHFBtAFqEQAANgIAIAMoAgAhBCADJAQgBAsbACABQRVJBH8gAEEsaiABQQJ0aigCAAVBfwsLCQAgACABEIoOCxgAIAEoAhwiAQRAIAAgARB3BSAAEJ4BCwsJACAAIAEQiQ4LGAAgASgCGCIBBEAgACABEHcFIAAQngELCxAAIAAEQCAAELwGIAAQVAsLBgBBmO0BC5AWAQp/IwQhACMEQRBqJARBmO0BQYjtAUGA7gFBAEG40wJBJEHn2wJBAEHn2wJBAEH42wJBy9YCQYcBEAUgAEEANgIAQZjtAUGA3AJBuPYBQdrJAkEpIAAQM0G49gFB480CQRQgABAzEAAgAEEENgIAQZjtAUGM3AJBuPYBQdrJAkEpIAAQM0G49gFB480CQRQgABAzEABBmO0BQZncAkHQ6QFB2skCQSpBOBBLQQBBAEEAQQAQACAAQRA2AgBBmO0BQaXcAkHY9gFBtNMCQQUgABAzQdj2AUGv0wJBBCAAEDMQACAAQRQ2AgBBmO0BQa/cAkHY9gFBtNMCQQUgABAzQdj2AUGv0wJBBCAAEDMQAEGY7QFBvdwCQdDpAUHayQJBKkE5EEtB0OkBQePNAkEVQToQSxAAQZjtAUHJ3AJB0OkBQdrJAkEqQTsQS0HQ6QFB480CQRVBPBBLEAAgAEEgNgIAQZjtAUHV3AJB2PYBQbTTAkEFIAAQM0HY9gFBr9MCQQQgABAzEAAgAEEkNgIAQZjtAUHq3AJB2PYBQbTTAkEFIAAQM0HY9gFBr9MCQQQgABAzEAAgAEEoNgIAQZjtAUGC3QJB2PYBQbTTAkEFIAAQM0HY9gFBr9MCQQQgABAzEAAgAEErNgIAQZjtAUGV3QJBA0GA/wFBmssCAn9BKiEDQQQQPyIBIAAoAgA2AgAgAwsgAUEAEAEgAEErNgIAQZjtAUGj3QJBBEGg1QFBicsCAn9BFyEEQQQQPyIBIAAoAgA2AgAgBAsgAUEAEAEgAEGAATYCAEGY7QFBsd0CQdj2AUG00wJBBSAAEDNB2PYBQa/TAkEEIAAQMxAAIABBhAE2AgBBmO0BQcDdAkHY9gFBtNMCQQUgABAzQdj2AUGv0wJBBCAAEDMQAEGY7QFBzt0CQdDpAUHayQJBKkE9EEtB0OkBQePNAkEVQT4QSxAAQZjtAUHX3QJB0OkBQdrJAkEqQT8QS0EAQQBBAEEAEAAgAEGQATYCAEGY7QFB3d0CQdj2AUG00wJBBSAAEDNB2PYBQa/TAkEEIAAQMxAAIABBlAE2AgBBmO0BQe3dAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQAEGY7QFBgt4CQdDpAUHayQJBKkHAABBLQdDpAUHjzQJBFUHBABBLEABBmO0BQY7eAkHQ6QFB2skCQSpBwgAQS0EAQQBBAEEAEABBmO0BQabeAkHQ6QFB2skCQSpBwwAQS0EAQQBBAEEAEABBmO0BQbjeAkHQ6QFB2skCQSpBxAAQS0EAQQBBAEEAEAAgAEG0ATYCAEGY7QFByt4CQYj2AUHayQJBLCAAEDNBiPYBQePNAkEWIAAQMxAAIABBtQE2AgBBmO0BQdreAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQACAAQbYBNgIAQZjtAUHw3gJBiPYBQdrJAkEsIAAQM0GI9gFB480CQRYgABAzEAAgAEG3ATYCAEGY7QFBi98CQYj2AUHayQJBLCAAEDNBiPYBQePNAkEWIAAQMxAAIABBuAE2AgBBmO0BQajfAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQAEGY7QFByt8CQdDpAUHayQJBKkHFABBLQdDpAUHjzQJBFUHGABBLEABBmO0BQd3fAkHQ6QFB2skCQSpBxwAQS0HQ6QFB480CQRVByAAQSxAAQZjtAUHw3wJB0OkBQdrJAkEqQckAEEtB0OkBQePNAkEVQcoAEEsQAEGY7QFBguACQdDpAUHayQJBKkHLABBLQQBBAEEAQQAQACAAQS02AgBBmO0BQYvgAkEDQfT+AUGaywJBLCAAEDNBABABIABBLTYCAEGY7QFBnOACQQRBkNUBQYnLAkEYIAAQM0EAEAEgAEH4ATYCAEGY7QFBreACQdj2AUG00wJBBSAAEDNB2PYBQa/TAkEEIAAQMxAAIABBgAI2AgBBmO0BQbjgAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQACAAQYECNgIAQZjtAUHA4AJBiPYBQdrJAkEsIAAQM0GI9gFB480CQRYgABAzEAAgAEGCAjYCAEGY7QFByeACQYj2AUHayQJBLCAAEDNBiPYBQePNAkEWIAAQMxAAIABBgwI2AgBBmO0BQdDgAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQACAAQS42AgBBmO0BQdngAkEDQfT+AUGaywJBLCAAEDNBABABIABBLjYCAEGY7QFB6eACQQRBkNUBQYnLAkEYIAAQM0EAEAEgAEEGNgIAQZjtAUH54AJBA0G8/gFBvuQCQQEgABAzQQAQASAAQQI2AgBBmO0BQYrhAkEEQYDVAUG45AICf0EBIQVBBBA/IgEgACgCADYCACAFCyABQQAQASAAQcwANgIAIABBADYCBEGY7QFBm+ECQQNB6P4BQePNAgJ/QRchBkEIED8hASAAKAIEIQIgASAAKAIANgIAIAEgAjYCBCAGCyABQQAQASAAQc0ANgIAQZjtAUGt4QJBA0Hc/gFB480CAn9BGCEHQQQQPyIBIAAoAgA2AgAgBwsgAUEAEAEgAEGIATYCACAAQQA2AgRBmO0BQcThAkECQdT+AUG70wICf0HOACEIQQgQPyEBIAAoAgQhAiABIAAoAgA2AgAgASACNgIEIAgLIAFBABABIABB2AY2AgBBmO0BQdnhAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQACAAQdkGNgIAQZjtAUHq4QJBiPYBQdrJAkEsIAAQM0GI9gFB480CQRYgABAzEAAgAEHaBjYCAEGY7QFB/uECQYj2AUHayQJBLCAAEDNBiPYBQePNAkEWIAAQMxAAIABB2wY2AgBBmO0BQYziAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQACAAQdwGNgIAQZjtAUGc4gJBiPYBQdrJAkEsIAAQM0GI9gFB480CQRYgABAzEAAgAEHdBjYCAEGY7QFBsOICQYj2AUHayQJBLCAAEDNBiPYBQePNAkEWIAAQMxAAIABB3gY2AgBBmO0BQbriAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQACAAQeAGNgIAQZjtAUHF4gJB2PYBQbTTAkEFIAAQM0HY9gFBr9MCQQQgABAzEAAgAEHkBjYCAEGY7QFBz+ICQbj2AUHayQJBKSAAEDNBuPYBQePNAkEUIAAQMxAAIABB6AY2AgBBmO0BQeXiAkG49gFB2skCQSkgABAzQbj2AUHjzQJBFCAAEDMQACAAQewGNgIAQZjtAUH64gJBuPYBQdrJAkEpIAAQM0G49gFB480CQRQgABAzEAAgAEHwBjYCAEGY7QFBj+MCQbj2AUHayQJBKSAAEDNBuPYBQePNAkEUIAAQMxAAIABB9AY2AgBBmO0BQaTjAkG49gFB2skCQSkgABAzQbj2AUHjzQJBFCAAEDMQAEGY7QFBveMCQdDpAUHayQJBKkHPABBLQQBBAEEAQQAQACAAQRk2AgBBmO0BQcjjAkEDQcj+AUGaywICf0EvIQlBBBA/IgEgACgCADYCACAJCyABQQAQASAAQQc2AgBBmO0BQd/jAkEDQbz+AUG+5AJBASAAEDNBABABIABBCDYCAEGY7QFB+OMCQQNBvP4BQb7kAkEBIAAQM0EAEAEgAEEJNgIAQZjtAUGQ5AJBA0G8/gFBvuQCQQEgABAzQQAQASAAJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEEajYCACAAIAIQeyACJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEUajYCACAAIAIQeyACJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEcajYCACAAIAIQeyACJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUE0ajYCACAAIAIQeyACJAQLJAEBfyMEIQIjBEEQaiQEIAIgAUHEAGo2AgAgACACEHsgAiQECyQBAX8jBCECIwRBEGokBCACIAFBzABqNgIAIAAgAhB7IAIkBAskAQF/IwQhAiMEQRBqJAQgAiABQdQAajYCACAAIAIQeyACJAQLJAEBfyMEIQIjBEEQaiQEIAIgAUH8AGo2AgAgACACEHsgAiQECyQBAX8jBCECIwRBEGokBCACIAFBhAFqNgIAIAAgAhB7IAIkBAskAQF/IwQhAiMEQRBqJAQgAiABQYwBajYCACAAIAIQeyACJAQLJwEBfyMEIQIjBEEQaiQEIAIgARCPASAAQdDtASACEAQ2AgAgAiQECz0BAn8jBCEDIwRBEGokBCADIQQgAkEwSQRAIAQgAUGgAWogAkEEdGo2AgAgACAEEM4OBSAAEJQBCyADJAQLTwEDfyMEIQQjBEEQaiQEIAQhAyABQTBJBH8gAyACENgBIABBoAFqIAFBBHRqIgAgAykCADcCACAAIAMpAgg3AghBAQVBAAshBSAEJAQgBQtDAQJ/An8gASEEIAAoAgAhASAECyAAKAIEIgBBAXVqIgMgAiAAQQFxBH8gASADKAIAaigCAAUgAQtBB3FB4AZqERsACzoBAn8jBCEEIwRBEGokBCAAKAIAIQAgBCADEDQgASACIAQgAEE/cUHCAmoRBQAhBSAEEDEgBCQEIAULCwAgACABIAIQ0A4LCwAgACABIAIQzw4LxgIBCH8jBCEEIwRBEGokBCAEIQFBmKkEKAIAIgBBtDNqKAIARQRAIABBoDNqKAIARQRAAkAgAEGgNWooAgAiAkUiA0UEQCACLACAAQ0BCyAALADgBwRAAkAgAEGcM2oiAigCAEUEQCADDQEQ/wINAUEAEHQMAQsgAEGYM2ooAgAQwAcgACwAwAEEQCACKAIAIgIoAghBAXFFBEAgASACEJ8EIAEgAEGQB2oQmgVFBEAgAEH0M2pBADYCAAsLCwsLIAAsAOEHBEACQAJAEP8CIgJFIgEgAEHUMmoiBSgCACIDQQFIcg0AIABBmDNqIQYgAyEBA0ACQCAFIAFBf2oiAxBQKAIAIgcgAkYNACABQQJIIAcgBigCAEYiAXINAiADIQEMAQsLDAELIAEEQCAAQZgzaigCACECCwsgAhCZBQsLCwsgBCQECwkAIAAgARDNDgsJACAAIAEQzA4LCQAgACABEMsOCwkAIAAgARDKDgsJACAAIAEQyQ4LCQAgACABEMgOCwkAIAAgARDHDgsQAQF/QaAHED8iABC0BiAACwYAQejsAQuLDAEGfyMEIQAjBEEQaiQEQejsAUHY7AFB8O0BQQBBuNMCQSJB59sCQQBB59sCQQBBwNcCQcvWAkGGARAFQejsAUEBQfT9AUG40wJBI0EWEA8gAEEANgIAQejsAUHL1wJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEABB6OwBQdHXAkHQ6QFB2skCQSdBLhBLQQBBAEEAQQAQACAAQQw2AgBB6OwBQd/XAkHY9gFBtNMCQQQgABAzQdj2AUGv0wJBAiAAEDMQACAAQRA2AgBB6OwBQe7XAkHY9gFBtNMCQQQgABAzQdj2AUGv0wJBAiAAEDMQAEHo7AFB/9cCQdDpAUHayQJBJ0EvEEtBAEEAQQBBABAAQejsAUGN2AJB0OkBQdrJAkEnQTAQS0EAQQBBAEEAEAAgAEEkNgIAQejsAUGe2AJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEAAgAEEoNgIAQejsAUGs2AJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEAAgAEEsNgIAQejsAUG82AJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEAAgAEEwNgIAQejsAUHK2AJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEABB6OwBQdrYAkHQ6QFB2skCQSdBMRBLQQBBAEEAQQAQACAAQTw2AgBB6OwBQefYAkHY9gFBtNMCQQQgABAzQdj2AUGv0wJBAiAAEDMQACAAQcAANgIAQejsAUH12AJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEABB6OwBQYXZAkHQ6QFB2skCQSdBMhBLQQBBAEEAQQAQAEHo7AFBkdkCQdDpAUHayQJBJ0EzEEtBAEEAQQBBABAAQejsAUGi2QJB0OkBQdrJAkEnQTQQS0EAQQBBAEEAEAAgAEHcADYCAEHo7AFBtNkCQdj2AUG00wJBBCAAEDNB2PYBQa/TAkECIAAQMxAAIABB4AA2AgBB6OwBQcLZAkHY9gFBtNMCQQQgABAzQdj2AUGv0wJBAiAAEDMQACAAQeQANgIAQejsAUHU2QJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEAAgAEHoADYCAEHo7AFB4tkCQdj2AUG00wJBBCAAEDNB2PYBQa/TAkECIAAQMxAAIABB7AA2AgBB6OwBQfTZAkHY9gFBtNMCQQQgABAzQdj2AUGv0wJBAiAAEDMQACAAQfAANgIAQejsAUGA2gJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEAAgAEH0ADYCAEHo7AFBjdoCQdj2AUG00wJBBCAAEDNB2PYBQa/TAkECIAAQMxAAIABB+AA2AgBB6OwBQZnaAkHY9gFBtNMCQQQgABAzQdj2AUGv0wJBAiAAEDMQAEHo7AFBp9oCQdDpAUHayQJBJ0E1EEtBAEEAQQBBABAAQejsAUG32gJB0OkBQdrJAkEnQTYQS0EAQQBBAEEAEABB6OwBQczaAkHQ6QFB2skCQSdBNxBLQQBBAEEAQQAQACAAQZQBNgIAQejsAUHj2gJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEAAgAEGYATYCAEHo7AFB9NoCQYj2AUHayQJBKCAAEDNBiPYBQePNAkESIAAQMxAAIABBmQE2AgBB6OwBQYXbAkGI9gFB2skCQSggABAzQYj2AUHjzQJBEiAAEDMQACAAQZwBNgIAQejsAUGV2wJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEAAgAEETNgIAQejsAUGq2wJBA0Gw/gFBmssCAn9BKCEDQQQQPyIBIAAoAgA2AgAgAwsgAUEAEAEgAEEpNgIAQejsAUG42wJBBEHw1AFBicsCAn9BFiEEQQQQPyIBIAAoAgA2AgAgBAsgAUEAEAEgAEEENgIAIABBADYCBEHo7AFBxtsCQQNBpP4BQa/TAgJ/QQMhBUEIED8hASAAKAIEIQIgASAAKAIANgIAIAEgAjYCBCAFCyABQQAQASAAJAQLMQEBfyMEIQMjBEEQaiQEIAMgAhCmBSAAIAEoAgBBAUGg/gEgA0GfAxEJABBfIAMkBAstAQF/IwQhAyMEQRBqJAQgAyAANgIAIAMgARB9EPIBIAMgAhCHAxDyASADJAQLMwEBfyMEIQQjBEEgaiQEIAQgAiADEOEOIAAgASgCAEECQZj+ASAEQZ8DEQkAEF8gBCQEC0kBA38jBCEAIwRBEGokBCAAIQJBsKkEKAIAIgNBIGoiBCABEIkFIANBMGoiARBbRQRAIAIgASADQTRqIAQQ4g4gAhAxCyAAJAQL6QEBCH8jBCEEIwRBIGokBCAEQRBqIQUgBEEEaiEBIAQhAkGwqQQoAgAiA0EsaiIAEFsEfyADQSBqIgIhACACQQtqBSACIAAgA0E0ahDgDiABIAIQnwEgA0EgaiIAQQtqIgYsAABBAEgEQAJ/IAAoAgAhCCAFQQA6AAAgCAsgBRCWASADQQA2AiQFIAVBADoAACAAIAUQlgEgBkEAOgAACyAAQQAQhAIgACABKQIANwIAIAAgASgCCDYCCCABQgA3AgAgAUEANgIIIAEQPiACEDEgBgssAABBAEgEQCADKAIgIQALIAQkBCAAC78DAQF/IAAgARDhDzYCACAAQQRqIgFCADcCACABQQA2AgggAUGargRBmq4EEFwQkwEgAEEQaiIBQgA3AgAgAUEANgIIIAFBmq4EQZquBBBcEJMBIABBHGoQngEgAEEgaiIBQgA3AgAgAUEANgIIIAFBmq4EQZquBBBcEJMBIABBLGoQngEgAEEwahCeASAAQTRqEJ4BIABBOGoQlAEgAEE8ahCUASAAQUBrEJQBIABBxABqEJQBIABByABqEJQBIABBzABqEJQBIABB0ABqEJQBIABCADcCVCAAQgA3AlwgAEHYAGpBmq4EQZquBBBcEJMBIABB5ABqEJQBIABB6ABqEJQBIABB7ABqEJQBIABCADcCcCAAQgA3AnggAEH0AGpBmq4EQZquBBBcEJMBIABBgAFqEJQBIABBhAFqEJQBIABCADcCiAEgAEIANwKQASAAQYwBakGargRBmq4EEFwQkwEgAEGYAWoQlAEgAEGcAWoQlAEgAEGgAWoQlAECf0GYqQQoAgAhAiAAKAIAEIoCEMMDIgBBADYCGCAAQQA2AhwgAEEhNgLQASAAQS02AtQBIABBADYC2AEgAgsQigILkwIBA38Cf0GYqQQoAgAhAyAAKAIAEIoCEMMDIgFBADYCGCABQQA2AhwgAUEANgLQASABQQA2AtQBIAFBADYC2AEgAwsQigIgACgCABC2DyAAQQA2AgAgAEGgAWoQMSAAQZwBahAxIABBmAFqEDEgAEGMAWoQPiAAQYQBahAxIABBgAFqEDEgAEH0AGoQPiAAQewAahAxIABB6ABqEDEgAEHkAGoQMSAAQdgAahA+IABB0ABqEDEgAEHMAGoQMSAAQcgAahAxIABBxABqEDEgAEFAaxAxIABBPGoQMSAAQThqEDEgAEE0ahAxIABBMGoQMSAAQSxqEDEgAEEgahA+IABBHGoQMSAAQRBqED4gAEEEahA+CyMAIAAsAAtBAEgEQCAAKAIAIQALIAAgASACIAMgBCAFEM8HCzkBAn8jBCEHIwRBEGokBCAHIAEQTCAHIAIgAyAEIAUgBiAAQR9xQboDahEVACEIIAcQPiAHJAQgCAsDAAELJwEBfyMEIQIjBEEQaiQEIAIgARCPASAAQYjtASACEAQ2AgAgAiQECycBAX8jBCECIwRBEGokBCACIAEQjwEgAEHY7AEgAhAENgIAIAIkBAsnAQF/IwQhAiMEQRBqJAQgAiABEI8BIABB8OwBIAIQBDYCACACJAQLLAEBfyMEIQIjBEEQaiQEIAIgARA0IAIgAEH/AXFB4ARqEQQAIAIQMSACJAQLJAEBfyMEIQEjBEEQaiQEIAEgABCyAiABEGUaIAEQ8AEgASQECyYBAX8jBCEBIwRBEGokBCABIAAQsgIgARBlEP4JIAEQ8AEgASQECz8CAX8CfCMEIQEjBEEQaiQEAnwgACgCAEH0/QEoAgAgAUEEahAGIQMgASABKAIEEF8gAwurGiABEMwBIAEkBAs1AQN/IwQhASMEQRBqJAQgAUEBaiECIAEhAyAAEFtFBEAgAiADLAAAOgAAIAAQ8A4LIAEkBAssAQF/IwQhAiMEQRBqJAQgAiABEEwgAiAAQf8BcUHgBGoRBAAgAhA+IAIkBAvfAQEGfyMEIQQjBEEQaiQEIAQhAEGYqQQoAgAiAUH0M2oiAygCAARAAkAgAUG0M2ooAgAQtAIgAygCACgC8AUhAiABLAD4AQRAIAFB8AFqIgUQlQEEQCAAIAUgAUHQM2oQQAJAAkAgAioCDCAAKgIAXA0AIAIqAhAgACoCBFwNAAwBCyACEIIDIAIgAEEBEL8DCyADKAIAEHQMAgsLEHIgA0EANgIACwUgAUHYM2ooAgAiAARAIAAoAlAiACABQbQzaigCAEYEQCAAELQCIAEsAPgBRQRAEHILCwsLIAQkBAsvAQJ/IwQhASMEQRBqJAQgASAAQf8BcUHgBGoRBAAgARCHAyECIAEQPiABJAQgAgtAAQJ/IwQhAyMEQRBqJAQgACwAC0EASARAIAAoAgAhAAsgAyABELICIAAgAxBlIAIQ6wEhBCADEPABIAMkBCAEC6EBAQd/IwQhBiMEQSBqJAQgBkEIaiIEIAAQwgMgBiIFQanWAhB3An8gBCAFENcBIQggBRAxIAQQMSAICwRAIAQgABCfASAELAALIQACfyAEKAIAIQkgBSABEDcgCQsgBCAAQQBIGyIAEDwgABBeIAUgAiADEPEGIQAgBBA+BQJ/IAAQyAMhCiAEIAEQNyAKCyAEIAIgAxDwBiEACyAGJAQgAAtEAQN/IwQhBSMEQRBqJAQgBUEEaiIGIAEQNCAFIAIQNCAGIAUgAyAEIABBH3FBigNqEQkAIQcgBRAxIAYQMSAFJAQgBwswAQJ/IwQhAiMEQRBqJAQgAkEIaiIDEMkCIAIgARBvIAAgAyACEIEBIAIQMSACJAQLPwECfyMEIQIjBEEQaiQEIAIgARA0IAJBBGoiASACIABB/wFxQfIGahEBACABEH0hAyABEDEgAhAxIAIkBCADCzABAn8jBCECIwRBEGokBCACQQhqIgMQ8AIgAiABEG8gACADIAIQgQEgAhAxIAIkBAsuAgF/An0jBCEBIwRBEGokBCABIABBH3FBBGoRIAA4AgAgASoCACEDIAEkBCADCzwBA38jBCECIwRBEGokBCACQQhqIgMQYCIEQYwEaiAEQQxqEEAgAiABEG8gACADIAIQgQEgAhAxIAIkBAswAQJ/IwQhAiMEQRBqJAQgAkEIaiIDENgGIAIgARBvIAAgAyACEIEBIAIQMSACJAQLQQECfyMEIQIjBEEQaiQEIAJBCGoiA0GYqQQoAgBBlDNqKAIAKQIMNwIAIAIgARBvIAAgAyACEIEBIAIQMSACJAQLNQECfyMEIQIjBEEQaiQEIAJBCGoiAxBgKQIUNwIAIAIgARBvIAAgAyACEIEBIAIQMSACJAQLLQECfyMEIQMjBEEQaiQEIANBCGoiBCAAEDcgAyACEDcgBCABIAMQnAIgAyQECz8BAn8jBCEEIwRBEGokBCAEQQRqIgUgARA0IAQgAxA0IAUgAiAEIABB/wBxQZQJahEHACAEEDEgBRAxIAQkBAsuAQF/IwQhAyMEQRBqJAQgAyABEDQgAyACIABB/wFxQfIGahEBACADEDEgAyQECycBAX8jBCECIwRBEGokBCACIAEQjwEgAEHA7AEgAhAENgIAIAIkBAtIAQN/IwQhASMEQRBqJAQgAUEEaiICIAA2AgBBsKkEKAIAQThqIQMgAUEIaiIAIAIQgw8gASADIAAQyAIgARAxIAAQMSABJAQLBwAgABCEDwtgAQN/IwQhBSMEQRBqJAQgBUEIaiEDIAUhBCACEFsEQCADIAAQNyAEIAEQNyADIARBABCvAwVBsKkEKAIAQThqIAIQiAEgAyAAEDcgBCABEDcgAyAEQYUBEK8DCyAFJAQLXgECfyMEIQUjBEEQaiQEIAVBDGoiBiABEDQgBUEIaiIBIAIQNCAFQQRqIgIgAxA0IAUgBBA0IAYgASACIAUgAEEfcUGoCmoRBgAgBRAxIAIQMSABEDEgBhAxIAUkBAtCAQF/IwQhAyMEQRBqJAQgACwAC0EASARAIAAoAgAhAAsgAyABEDcgAyEBIAAQoQIiAARAIAAgASACEL8DCyADJAQLPwECfyMEIQQjBEEQaiQEIARBBGoiBSABEEwgBCACEDQgBSAEIAMgAEH/AHFBlAlqEQcAIAQQMSAFED4gBCQEC0IBAX8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQNyADIQEgABChAiIABEAgACABIAIQ/QQLIAMkBAswAQF/IwQhBCMEQRBqJAQgBCABEEwgBCACIAMgAEH/AHFBlAlqEQcAIAQQPiAEJAQLKgEBfyMEIQEjBEEQaiQEIAFB7NMCNgIAQeLTAiABELoDIAAQngEgASQECy4BAn8jBCEBIwRBEGokBCABIABB/wFxQeAEahEEACABEH0hAiABEDEgASQEIAILOgEDfyMEIQEjBEEQaiQEIAFBAWohAiABIQMgABBbBH9BAAUgAiADLAAAOgAAIAAQnQULEOQGIAEkBAtZAQR/IwQhAiMEQSBqJAQgAkEIaiIDIAEQwgMgAkGo0wIQdwJ/IAMgAhDXASEFIAIQMSADEDEgBQsEQCAAIAEQyAMQrQoFIAMgARDYASAAIAMQggILIAIkBAsuAQF/IwQhAyMEQRBqJAQgAyACEDQgASADIABB/wFxQfIGahEBACADEDEgAyQEC1cBBH8jBCECIwRBEGokBCACQQhqIgMgARDCAyACQajTAhB3An8gAyACENcBIQUgAhAxIAMQMSAFCwRAIAAgARA9EI4EBSADIAEQNyAAIAMQvgILIAIkBAswAQF/IwQhAiMEQRBqJAQgAkGYqQQoAgBBsCtqIAFBBHRqNgIAIAAgAhDEByACJAQLMAECfyMEIQIjBEEQaiQEIAJBCGoiAxDXBiACIAEQbyAAIAMgAhCBASACEDEgAiQEC0EBAn8jBCEDIwRBEGokBCADIAIQNCADQQRqIgIgASADIABB/wBxQbQBahEAADYCACACKAIAIQQgAxAxIAMkBCAECyMBAn8jBCEBIwRBEGokBCABIAAQ2AEgARDkASECIAEkBCACCxAAQZipBCgCAEHAMmorAwALPgECfyMEIQIjBEEQaiQEIAIgARA0IAJBBGoiASACIABBP3FB7ABqEQMANgIAIAEoAgAhAyACEDEgAiQEIAMLMAECfyMEIQIjBEEQaiQEIAJBCGoiAxCgCiACIAEQbyAAIAMgAhCBASACEDEgAiQECzwBA38jBCECIwRBEGokBCACQQhqIgMQYCIEQdgBaiAEQQxqEEAgAiABEG8gACADIAIQgQEgAhAxIAIkBAswAQJ/IwQhAiMEQRBqJAQgAkEIaiIDENUGIAIgARBvIAAgAyACEIEBIAIQMSACJAQLKAEBfyMEIQMjBEEgaiQEIAMgARBJIAAgAxBIIAIQhAogAxBHIAMkBAswAQF/IwQhBCMEQRBqJAQgBCACEDQgASAEIAMgAEH/AHFBlAlqEQcAIAQQMSAEJAQLLQECfyMEIQEjBEEQaiQEIAEgAEEfcUHMAGoRHQA2AgAgASgCACECIAEkBCACCzACAX8CfSMEIQIjBEEQaiQEIAIgASAAQQNxQSRqERwAOAIAIAIqAgAhBCACJAQgBAtnAQR/IwQhAiMEQRBqJAQgAkEEaiIBIAAQwgMgAkGo0wIQdwJ/IAEgAhDXASEEIAIQMSABEDEgBAsEQCAAEIcBENABBSABIAAQnwEgASgCACABIAEsAAtBAEgbEL0BIAEQPgsgAiQEC38BBH8jBCECIwRBEGokBCACQQRqIgEgABDCAyACQajTAhB3An8gASACENcBIQQgAhAxIAEQMSAECwRAIAAQhwEhAEGYqQQoAgBBlDNqKAIAIAAQiwMhAAUgASAAEJ8BIAEoAgAgASABLAALQQBIGxDRBiEAIAEQPgsgAiQEIAALNAEBfyMEIQEjBEEQaiQEIAAsAAtBAEgEQCAAKAIAIQALIAEgADYCAEHCzAIgARBpIAEkBAs9AQJ/IwQhAyMEQRBqJAQgA0EMaiIEIAEQNCADIAIQTCAEIAMgAEH/AXFB8gZqEQEAIAMQPiAEEDEgAyQEC0MBAn8jBCECIwRBIGokBCACQQhqIgMgABDYASABLAALQQBIBEAgASgCACEBCyACIAE2AgAgA0HCzAIgAhCDBiACJAQLMQEBfyMEIQEjBEEQaiQEIAAsAAtBAEgEQCAAKAIAIQALIAEgADYCACABEIkJIAEkBAsxAQF/IwQhASMEQRBqJAQgACwAC0EASARAIAAoAgAhAAsgASAANgIAIAEQiAkgASQECz0BAn8jBCEDIwRBIGokBCADQQxqIgQgARBMIAMgAhBMIAQgAyAAQf8BcUHyBmoRAQAgAxA+IAQQPiADJAQLRQEBfyMEIQIjBEEQaiQEIAAsAAtBAEgEQCAAKAIAIQALIAEsAAtBAEgEQCABKAIAIQELIAIgATYCACAAIAIQhgkgAiQECzUBAX8jBCEBIwRBEGokBCAALAALQQBIBEAgACgCACEACyABIAA2AgBBwswCIAEQoAEgASQECzYBAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACIAEQNyAAIAIQmQMhAyACJAQgAwtBAQN/IwQhAyMEQRBqJAQgA0EEaiIEIAEQTCADIAIQNCAEIAMgAEH/AHFBtAFqEQAAIQUgAxAxIAQQPiADJAQgBQsvAQJ/IwQhAiMEQRBqJAQgAiABEEwgAiAAQT9xQewAahEDACEDIAIQPiACJAQgAws2AQJ/IwQhAiMEQRBqJAQgACwAC0EASARAIAAoAgAhAAsgAiABEDcgACACEJgDIQMgAiQEIAMLYAEDfyMEIQYjBEFAayQEAn8gABCHASEIIAZBMGoiByABEDcgBkEoaiIBIAIQNyAGQSBqIgIgAxA3IAZBEGoiAyAEENgBIAYgBRDYASAICyAHIAEgAiADIAYQgQkgBiQEC4ABAQJ/IwQhByMEQSBqJAQgB0EUaiIIIAEQNCAHQRBqIgEgAhA0IAdBDGoiAiADEDQgB0EIaiIDIAQQNCAHQQRqIgQgBRA0IAcgBhA0IAggASACIAMgBCAHIABBD3FB6gpqERoAIAcQMSAEEDEgAxAxIAIQMSABEDEgCBAxIAckBAtmAQR/IwQhByMEQUBrJAQCfyAAEIcBIQkgB0EwaiIIIAEQNyAHQShqIgEgAhA3IAdBIGoiAiADEDcgB0EQaiIDIAUQ2AEgByAGENgBIAkLIAggASACIAQgAyAHEIAJIQogByQEIAoLhgEBA38jBCEIIwRBIGokBCAIQRRqIgkgARA0IAhBEGoiASACEDQgCEEMaiICIAMQNCAIQQhqIgMgBBA0IAhBBGoiBCAGEDQgCCAHEDQgCSABIAIgAyAFIAQgCCAAQQ9xQdoDahEUACEKIAgQMSAEEDEgAxAxIAIQMSABEDEgCRAxIAgkBCAKC5EEAQR/IAAoApQBIgEEQCAALAADBEAgAUEAOgAAIAEEQCABEKMGIAEQQQsLCyAAQQA2ApQBIAAsAAAEQCAAQaDYAGosAAAEQCAAKAIgBEACf0GYqQQoAgAhBCAAEIoCIAAoAiAQtgcgBAsQigILCyAAQdQyaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAwRAIAMQjRIgAxBBCyABQQFqIgEgAigCAEgNAAsLIAIQTyAAQeAyahBPIABB7DJqEE8gAEGUM2pBADYCACAAQfgyahBPIABBhDNqEE8gAEGgNWpBADYCACAAQZgzakEANgIAIABBnDNqQQA2AgAgAEHcM2pBADYCACAAQdgzakEANgIAIABB9DNqQQA2AgAgAEH4M2oQTyAAQYQ0ahBPIABBkDRqEE8gAEGcNGoQTyAAQag0ahBPIABBwDdqIQJBACEBA0AgAUEMbCACahBPIAFBAWoiAUECRw0ACyAAQdw3ahDdBCAAQYTYAGoQTyAAQZA6ahBPIABBnDpqEE8gAEGoOmoQTyAAQcDYAGoiAigCAEEASgRAQQAhAQNAIAIgARBVKAIAEPYHIAFBAWoiASACKAIASA0ACwsgAhBPIABBtNgAahBPIABB0NgAaiICKAIAIgFBzIECKAIARiABRXJFBEAgARDDAhogAkEANgIACyAAQdTYAGoQTyAAQQA6AAALCwsAIAAQngUgABBUC00BAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACQYz8ATYCACACIAE2AgggAhCvBSAAIAJBBGoQ5AMhAyACEJ4FIAIkBCADCwsAIAAQnwUgABBUC08BAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADQfT7ATYCACADIAE2AgggAxDGByAAIANBBGogAhCABiEEIAMQnwUgAyQEIAQLMwAgAEGYqQQoAgAgABsiABCxD0GYqQQoAgAgAEYEQEEAEIoCCyAABEAgABDkCSAAEEELC1QBAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQygEgACACIAMQTiIAKAIARhC5AiIBBEAgACACNgIACyABIQQgAxC0ASADJAQgBAtWAgJ/An0jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQcSABQQhqIgIgAEE8aiAAQUBrIAEQywcgAhA9IQQgAhAxIAEQMSABJAQgBAsHACABELgPC4kBAgJ/An0jBCEJIwRBMGokBEGwqQQoAgAiCkE8aiABEIgBIApBQGsg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QYAHaiIKEDogAEGwB2ohAyAAQYgHaiEBA0AgARA6IAFBCGoiASADRw0ACyAAQbwIaiEDIABBlAhqIQEDQCABEDogAUEIaiIBIANHDQALIABB+ClqEGggAEEAQYgqEGoaIAJDAACAv0MAAIC/EDIgBSACKQMANwIAIABDiYiIPDgCECAAQwAAoEA4AhQgAEHmhQI2AhggAEHwhQI2AhwgAEOamZk+OAIgIABDAADAQDgCJCAAQSxqIgFCfzcCACABQn83AgggAUJ/NwIQIAFCfzcCGCABQn83AiAgAUJ/NwIoIAFCfzcCMCABQn83AjggAUFAa0J/NwIAIAFCfzcCSCABQX82AlAgAEMAAIA+OAKAASAAQ83MTD04AoQBIABBADYCiAEgAEEANgKMASAAQwAAgD84ApABIABBADYCmAEgAEEAOgCUASACQwAAgD9DAACAPxAyIAYgAikDADcCACACQwAAAABDAAAAABAyIAggAikDACILNwIAIAcgCzcCACAAQQA6ALUBIABBAToAtgEgAEEBOgC3ASAAQQA6ALgBIABCADcCvAEgAEIANwLEASAAQQA2AswBIABBAzYC0AEgAEECNgLUASAAQQA2AtgBIABBAzYC3AEgAEEANgLgASACQ///f/9D//9//xAyIAkgAikDADcCACACQ///f/9D//9//xAyIAogAikDADcCACAAQwAAwEA4AihBACEBA0AgAEGACGogAUECdGpDAACAvzgCACAAQewHaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEFRw0AC0EAIQEDQCAAQdAYaiABQQJ0akMAAIC/OAIAIABB0AhqIAFBAnRqQwAAgL84AgAgAUEBaiIBQYAERw0AC0EAIQEDQCAAQdAoaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEVRw0ACyAEJAQLNAECfyMEIQQjBEEQaiQEIARBCGoiBSABIAIQwgogBCADEG8gACAFIAQQgQEgBBAxIAQkBAtCAQJ/IwQhBCMEQRBqJAQgBCADEDQgBEEEaiIDIAEgAiAEIABBA3FBhglqEQoAIAMQfSEFIAMQMSAEEDEgBCQEIAULKwEBfxDVByIBQZquBCABGyEBIABCADcCACAAQQA2AgggACABIAEQXBCTAQsxAQF/IwQhASMEQRBqJAQgASAAEJ8BIAEoAgAgASABLAALQQBIGxCEAyABED4gASQEC2UBA38jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQsgUgAUEIaiICIABBmAFqIAEgAEGgAWoQ7QcgAUENaiABLAAMOgAAIAIQ8AchAyACEDEgARAxIAEkBCADCzMBAX8jBCEEIwRBIGokBCAEIAIgAxCzBSAAIAEoAgBBAkGM9wEgBEGfAxEJABBfIAQkBAtPAQN/IwQhASMEQRBqJAQgAUEEaiIDIAA2AgBBsKkEKAIAIQAgAUEIaiICIAMQ7gcgASAAQZwBaiACIABBoAFqEO0HIAEQMSACEDEgASQECwcAIAAQmRELBwAgABCXEQtOAQF/QbCpBCgCACIDQZgBaiAAEIgBIANBnAFqIAEQiAEgA0GgAWogAhCIAQJAAkAgABBbDQAgARBbDQBBJkEsEM4HDAELQQBBABDOBwsLTgECfyMEIQQjBEEQaiQEIARBCGoiBSABEDQgBEEEaiIBIAIQNCAEIAMQNCAFIAEgBCAAQf8AcUGUCWoRBwAgBBAxIAEQMSAFEDEgBCQECyMBAX8jBCECIwRBEGokBCACIAEQUzYCACAAIAIQ7gcgAiQECykBAn8jBCEBIwRBEGokBCABQQFqIgIgASwAADoAACAAEPAHEEEgASQECwcAIAAQnxELKgECfwJ/IwQhASMEQRBqJARByckCQQJBhPcBQdrJAkElQSUQAiABCyQECwkAIAAgARCeEQsqAQJ/An8jBCEBIwRBEGokBEGzyQJBBEHgyQFB8ckCQQtBCRACIAELJAQLCwAgACABIAIQnBELJAEBf0EAEMAGIQEgAEIANwIAIABBADYCCCAAIAEgARBcEJMBCxoAIAAsAAtBAEgEfyAAKAIABSAAC0EAEMEGCwcAIAAQlhELBwAgABCVEQsqAQJ/An8jBCEBIwRBEGokBEHwxwJBBEHwyQFB3MoCQQFBARACIAELJAQLDQAgACABIAIgAxCTEQsJACAAIAEQjxELCQAgACABEI4RCwcAIAAQjRELKgECfwJ/IwQhASMEQRBqJARBn8cCQQRBgMoBQYnLAkEUQRoQAiABCyQECwsAIAAgASACEIgRCyoBAn8CfyMEIQEjBEEQaiQEQY/HAkEDQaj3AUGPywJBAUEBEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEGsxgJBBEGQygFBlMsCQQFBARACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB+8UCQQJBwPcBQdrJAkEkQRMQAiABCyQECxEAIAAgASACIAMgBCAFEIYRCxEAIAAgASACIAMgBCAFEIMRCwcAIAAQghELKgECfwJ/IwQhASMEQRBqJARBocUCQQNB4PcBQZrLAkEjQQgQAiABCyQECwsAIAAgASACEP8QCyoBAn8CfyMEIQEjBEEQaiQEQYPFAkEEQcDKAUGJywJBE0EZEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHyxAJBBUHQygFByssCQQFBARACIAELJAQLDQAgACABIAIgAxD8EAsqAQJ/An8jBCEBIwRBEGokBEHlxAJBBUHwygFB58sCQQFBARACIAELJAQLDwAgACABIAIgAyAEEPkQCyoBAn8CfyMEIQEjBEEQaiQEQdPEAkECQYj4AUHayQJBI0EiEAIgAQskBAsiACABEKwKIQEgAEIANwIAIABBADYCCCAAIAEgARBcEJMBCyoBAX8jBCEBIwRBEGokBCABQZipBCgCAEG8MWo2AgAgACABEPcQIAEkBAsqAQF/IwQhASMEQRBqJAQgAUGYqQQoAgBB3DdqNgIAIAAgARDkByABJAQLMAECfyMEIQIjBEEQaiQEIAIgATYCACACQQQgAEHAA2oQcCgCABC7ASEDIAIkBCADCyoBAn8CfyMEIQEjBEEQaiQEQZTEAkEBQaT3AUG4zAJBAUEBEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEGExAJBA0GQ+AFBmssCQSJBGBACIAELJAQLCQAgACABEPQQCwcAIAAQ8hALCQAgACABEPEQCwkAIAAgARDwEAsJACAAIAEQ7xALKgECfwJ/IwQhASMEQRBqJARBn8ECQQRBkMsBQfHJAkEKQQcQAiABCyQECwsAIAAgASACEO0QCwcAIAAQngELHQAgACwAC0EASAR/IAAoAgAFIAALIAEQ6wRBAEcLKgECfwJ/IwQhASMEQRBqJARBq8ACQQVBoMsBQbvMAkEOQQwQAiABCyQECx4AIAAsAAtBAEgEfyAAKAIABSAAC0EAQQAgAxDsBAsHACAAEOwQCwkAIAAgARDrEAsYACAALAALQQBIBH8gACgCAAUgAAsQlggLCwAgACABIAIQ6BALGgAgACwAC0EASAR/IAAoAgAFIAALIAEQqwgLGAAgACwAC0EASAR/IAAoAgAFIAALEJMKCwkAIAAgARDiEAsqAQJ/An8jBCEBIwRBEGokBEHEvgJBBEHAywFBicsCQRJBFxACIAELJAQLCwAgACABIAIQ4BALCQAgACABEN8QCwsAIAAgASACEN4QCxgAIAAsAAtBAEgEfyAAKAIABSAACxCpAwsJACAAIAEQ3BALGAAgACwAC0EASAR/IAAoAgAFIAALEKsDCyoBAn8CfyMEIQEjBEEQaiQEQem9AkEFQdDLAUG7zAJBDUELEAIgAQskBAsNACAAIAEgAiADENsQCyoBAn8CfyMEIQEjBEEQaiQEQd69AkEFQfDLAUG7zAJBDEEKEAIgAQskBAsNACAAIAEgAiADENoQCxoAIAAsAAtBAEgEfyAAKAIABSAACyABEK8ICwcAIAAQ2RALKgECfwJ/IwQhASMEQRBqJARB6bwCQQRBkMwBQd3NAkECQQEQAiABCyQECwsAIAAgASACENcQCyoBAn8CfyMEIQEjBEEQaiQEQeG8AkEDQez4AUHjzQJBEUEdEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHZvAJBA0H4+AFB480CQRBBHBACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB0bwCQQNBhPkBQePNAkEPQRsQAiABCyQECxoAIAAsAAtBAEgEfyAAKAIABSAACyABELUICyoBAn8CfyMEIQEjBEEQaiQEQbO8AkEEQaDMAUGJywJBEUEVEAIgAQskBAscACAALAALQQBIBH8gACgCAAUgAAsgASACEM8FCwkAIAAgARDVEAsRACAAIAEgAiADIAQgBRDUEAsqAQJ/An8jBCEBIwRBEGokBEGPvAJBBkGwzAFB6M0CQRFBBhACIAELJAQLDwAgACABIAIgAyAEEM0QCw0AIAAgASACIAMQyhALKgECfwJ/IwQhASMEQRBqJARB9bsCQQVB0MwBQbvMAkELQQgQAiABCyQECw0AIAAgASACIAMQyBALCwAgACABIAIQxxALNQEBfyAALAALQQBIBEAgACgCACEACxA8IgIsAH8Ef0EABSACIAAQXiABQRpyIABBABDTAgsLBwAgABC9CAsYACAALAALQQBIBH8gACgCAAUgAAsQvggLKgECfwJ/IwQhASMEQRBqJARB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AAtBAEgEfyAAKAIABSAACyABELkCCyoBAn8CfyMEIQEjBEEQaiQEQc61AkEEQfDSAUGJywJBDkEJEAIgAQskBAsLACAAIAEgAhC1DwsJACAAIAEQsw8LKgECfwJ/IwQhASMEQRBqJARBubUCQQhBgNMBQYfRAkEEQQEQAiABCyQECxMAIAAgASACIAMgBCAFIAYQrw8LKgECfwJ/IwQhASMEQRBqJARBs7UCQQdBoNMBQZ/TAkEBQQQQAiABCyQECxEAIAAgASACIAMgBCAFEK0PCwkAIAAgARCsDwsaACAALAALQQBIBH8gACgCAAUgAAsgARCDCQsYACAALAALQQBIBH8gACgCAAUgAAsQxAQLCQAgACABEKkPC6cEAgF/AX4jBCEBIwRBEGokBCAAEDogAEEIahA6IABBEGoQOiAAQRhqEDogAEEgahA6IABBLGoQOiAAQcwAahBmIABB3ABqEGYgAEGAAWoQOiAAQYgBahBoIABBADYCsAEgAEEANgKsASAAQQA2ArQBIABBuAFqEGggAEHEAWoQaCAAQQA2AtQBIABBADYC0AEgAEEANgLYASAAQegBahDnAiAAQewBahDnAiAAQfABahDnAiABQwAAAABDAAAAABAyIAAgASkDACICNwIYIAAgAjcCECAAIAI3AgggACACNwIAIAFDAAAAAEMAAAAAEDIgACABKQMAIgI3AiwgACACNwIgIABDAAAAADgCNCAAQwAAAAA4AiggAEMAAIC/OAI4IABCADcCPCAAQgA3AkQgARBmIAAgASkCADcCXCAAIAEpAgg3AmQgACABKQIANwJMIAAgASkCCDcCVCAAQQA2AnggAEEANgJ0IABBADYCbCAAQQE2AnAgAEEAOgB8IABBADoAfSAAQQA6AH4gAUMAAAAAQwAAAAAQMiAAIAEpAwA3AoABIABBADYClAEgAEEBNgKcASAAQQE2ApgBIABDAAAAADgCpAEgAEEANgKgASAAQwAAgL84AqgBIABCADcC3AEgAEEANgLkASABEOcCIAAgASgCADYC6AEgARDnAiAAIAEoAgA2AuwBIAEQ5wIgACABKAIANgLwASAAQQA2AvQBIAEkBAsaACAALAALQQBIBH8gACgCAAUgAAtBABC5AQsHACAAEKAPC9AHAgV/AX4jBCEFIwRBEGokBCAFIQMgAEEMahA6IABBFGoQOiAAQRxqEDogAEEkahA6IABBLGoQOiAAQTRqEDogAEE8ahA6IABB2ABqEDogAEHgAGoQOiAAQegAahA6IABB8ABqEDogAEG4AWoQOiAAQcABahA6IABByAFqEMoSIABBwANqIgYiBEEANgIEIARBADYCACAEQQA2AgggAEHMA2oQZiAAQdwDahBmIABB7ANqEGYgAEH8A2oQZiAAQYwEahBmIABBpARqEN4DIABB1ARqEGggAEEANgLkBCAAQQA2AuAEIABBADYC6AQgAEH4BGoiByABQbwxahD4ByAAQagGaiEEIABBiAZqIQEDQCABEGYgAUEQaiIBIARHDQALIAAgAhDaBjYCACAAQQRqIgEgAkEAQQAQuwE2AgAgBiABEHggAEEANgIIIANDAAAAAEMAAAAAEDIgACADKQMANwIMIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AhwgACAINwIUIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AjQgACAINwIsIANDAAAAAEMAAAAAEDIgACADKQMANwI8IABDAAAAADgCRCAAQwAAAAA4AkggACACEFxBAWo2AkwgACAAQf6FAhBeNgJQIABBADYCVCADQwAAAABDAAAAABAyIAAgAykDADcCWCADQ///f39D//9/fxAyIAAgAykDADcCYCADQwAAAD9DAAAAPxAyIAAgAykDADcCaCADQwAAAABDAAAAABAyIAAgAykDADcCcCAAQQA7AYQBIABCADcCeCAAQQA7AYABIABBADoAggEgAEF/OwGGASAAQX87AYgBIABBADYCjAEgAEF/NgKUASAAQX82ApABIABBADoAmAEgAEEANgKcASAAQX82AqABIABBADYCqAEgAEEANgKkASAAQQ82ArQBIABBDzYCsAEgAEEPNgKsASADQ///f39D//9/fxAyIAAgAykDACIINwLAASAAIAg3ArgBIABBfzYCnAQgAEMAAAAAOAKgBCAAQwAAgD84AuwEIABBfzYC8AQgACAHNgL0BCAAIAAoAgA2AqQFIABBADYChAYgAEEANgKABiAAQgA3AuwFIABCADcC9AUgAxBmIAAgAykCADcCmAYgACADKQIINwKgBiAAIAMpAgA3AogGIAAgAykCCDcCkAYgAEEANgL8BSAAQX82AqwGIABBfzYCqAYgAEH/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ICAtICAgICAgICAgIFguWCAgICAgICAgICAtWC4uLi4uWCAgICAgICAgICAtICAgICAgICAgIFguLi4uLlgtICAgIFguLlggICAgICAgICAtLS0gICAgICAgICAtWFhYLlhYWC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtWC4uLi5YICAgICAgICAgICAtICAgICAgICAgICBYLi4uLlgtICAgIFguLlggICAgICAgICBYICAgICAgICAgICAtICBYLlggIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtWC4uLlggICAgICAgICAgICAtICAgICAgICAgICAgWC4uLlgtICAgIFguLlggICAgICAgICBYWCAgICAgICAgICAtICBYLlggIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtWC4uWC5YICAgICAgICAgICAtICAgICAgICAgICBYLlguLlgtICAgIFguLlggICAgICAgICBYLlggICAgICAgICAtICBYLlggIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtWC5YIFguWCAgICAgICAgICAtICAgICAgICAgIFguWCBYLlgtICAgIFguLlhYWCAgICAgICBYLi5YICAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWFggICBYLlggICAgICAgICAtICAgICAgICAgWC5YICAgWFgtICAgIFguLlguLlhYWCAgICBYLi4uWCAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgWC5YICAgICAgICAtICAgICAgICBYLlggICAgICAtICAgIFguLlguLlguLlhYICBYLi4uLlggICAgICAtICBYLlggIC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgIFguWCAgICAgICAtICAgICAgIFguWCAgICAgICAtICAgIFguLlguLlguLlguWCBYLi4uLi5YICAgICAtICBYLlggIC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICBYLlggICAgICAtICAgICAgWC5YICAgICAgICAtWFhYIFguLlguLlguLlguLlhYLi4uLi4uWCAgICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgWC5YICAgWFgtWFggICBYLlggICAgICAgICAtWC4uWFguLi4uLi4uLlguLlhYLi4uLi4uLlggICAtICBYLlggIC0gICBYLlggICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgIFguWCBYLlgtWC5YIFguWCAgICAgICAgICAtWC4uLlguLi4uLi4uLi4uLlhYLi4uLi4uLi5YICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgICBYLlguLlgtWC4uWC5YICAgICAgICAgICAtIFguLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uWCAtWFhYLlhYWC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICAgICAgWC4uLlgtWC4uLlggICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uLlgtWC4uLi4uWC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgICAgICBYLi4uLlgtWC4uLi5YICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uWFhYWFgtWFhYWFhYWC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgICAgIFguLi4uLlgtWC4uLi4uWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uLlhYLi4uWC4uWCAgICAtLS0tLS0tLS0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtWFhYWFhYWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uWCBYLi5YIFguLlggICAtICAgICAgIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tICAgIFguLi4uLi4uLi4uWCBYLlggIFguLlggICAtICAgICAgIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAtICAgIFguLi4uLi4uLi4uWCBYWCAgICBYLi5YICAtICAgICAgIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICBYLi5YICAgICAgICAgIC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICAgWFggICAgICAgICAgIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAtICAgICBYWFhYWFhYWFhYICAtLS0tLS0tLS0tLS0gICAgICAgIC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0gICAgICAgICAgICAgICAgICAgIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAQaAiC8xdN10pIyMjIyMjI2hWMHFzJy8jIyNbKSwjIy9sOiQjUTY+IyM1W240Mj5jLVRIYC0+PiMvZT4xMU5OVj1CdigqOi5GP3V1IyhnUlUubzBYR0hgJHZoTEcxaHh0OT9XYCMsNUxzQ3AjLWk+LnIkPCQ2cEQ+TGInOzlDcmM2dGdYbUtWZVUyY0Q0RW8zUi8yKj5dYihNQzskalBmWS47aF5gSVdNOTxMaDJUbFMrZi1zJG82UTxCV0hgWWlVLnhmTHEkTjskMGlSL0dYOlUoamNXMnAvVypxPy1xbW5VQ0k7akhTQWlGV00uUiprVUBDPUdIP2E5d3A4ZiRlLi00XlFnMSlRLUdMKGxmKHIvN0dyUmd3ViVNUz1DI2A4TkQ+UW8jdCdYIyh2I1k5dzAjMUQkQ0lmO1cnI3BXVVBYT3V4WHVVKEg5TSgxPHEtVUUzMSNeLVYnOElSVW83UWYuL0w+PUtlJCQnNUYlKV0wXiMwWEBVLmE8cjpRTHRGc0xjTDYjI2xPaikjLlk1PC1SJktnTHdxSmZMZ04mO1E/Z0leI0RZMnVMaUBeck1sOXQ9Y1dxNiMjd2VnPiRGQmpWUVRTRGdFS25JUzdFTTk+Wlk5dzAjTDs+PiNNeCY0TXZ0Ly9MW01rQSNXQGxLLk4nWzAjN1JMXyYjdytGJUh0RzlNI1hMYE4mLixHTTRQZzstPG5MRU5odng+LVZzTS5NMHJKZkxIMmVUTWAqb0pNSFJDYE5rZmltTTJKLFctalhTOilyMHdLI0BGZ2UkVT5gdydON0cjJCNmQiMkRV4kIzo5OmhrK2VPZS0tNngpRjcqRSU/NzYlXkdNSGVQVy1aNWwnJkdpRiMkOTU2OnJTP2RBI2ZpSzopWXIrYCYjMGpAJ0RiRyYjXiRQRy5MbCtETmE8WENNS0VWKk4pTE4vTipiPSVRNnBpYS1YZzhJJDxNUiYsVmRKZSQ8KDdHO0NrbCcmaEY7OyQ8Xz1YKGIuUlMlJSkjIyNNUEJ1dUUxVjp2JmNYJiMybSMoJmNWXWBrOU9oTE1ibiVzJEcyLEIkQmZEM1gqc3A1I2wsJFIjXXhfWDF4S1glYjVVKltyNWlNZlVvOVVgTjk5aEcpdG0rL1VzOXBHKVhQdWA8MHMtKVdUdChnQ1J4SWcoJTZzZmg9a3RNS24zaik8NjxiNVNrXy8wKF5dQWFOIyhwL0w+JlZaPjFpJWgxUzl1NW9AWWFhVyRlK2I8VFdGbi9aOk9oKEN4MiRsTkVvTl5lKSNDRllAQEk7Qk9RKnNSd1p0WnhSY1U3dVc2Q1hvdzBpKD8kUVtjak9kW1A0ZCldPlJPUE9weFRPN1N0d2kxOjppQjFxKUNfPWRWMjZKOzIsXTdvcCRddVFyQF9WNyRxXiVsUXd0dUhZXT1EWCxuM0wjMFBIRE80Zjk+ZENATz5IQnVLUHBQKkUsTitiM0wjbHBSL01yVEVILklBUWsuYT5EWy5lO21jLnhdSXAuUEheJy9hcVVPLyQxV3hMb1cwW2lMQTxRVDs1SEtEK0BxUSdOUSgzX1BMaEU0OFIucUFQU3dRMC9XSz9aLFt4Py1KO2pRVFdBMFhAS0ooX1k4Ti06L003NDovLVpwS3JVc3M/ZCNkWnFdREFia1UqSnFrTCtud1hAQDQ3YDU+dz00aCg5LmBHQ1JVeEhQZVJgNU1qb2woZFVXeFphKD5TVHJQa3JKaVd4YDVVN0YjLmcqanJvaEdnYGNnOmxTVHZFWS9FVl83SDRROVtaJWNudjtKUVlaNXEubDdaZWFzOkhPSVpPQj9HPE5hbGQkcXNdQF1MPEo3YlIqPmd2Ols3TUkyaykuJzIoJDVGTlAmRVEoLClVXVddK2ZoMTgudnNhaTAwKTtEM0A0a3U1UD9EUDhhSnQrO3FVTV09K2InOEA7bVZpQkt4MERFWy1hdUdsODpQSiZEaitNNk9DXU9eKCgjI11gMGkpZHJUOy03WGA9LUgzW2lnVW5QRy1OWmxvLiNrQGgjPU9yayRtPmE+JC0/VG0kVVYoPyNQNllZIycvIyMjeGU3cS43M3JJMypwUC8kMT5zOSlXLEpyTTdTTl0nLzRDI3YkVWAwI1YuWzA+eFFzSCRmRW1QTWdZMnU3S2goRyVzaUlmTFNvUytNSzJlVE0kPTUsTThwYEEuO19SJSN1W0sjJHg0QUc4LmtLL0hTQj09LSdJZS9RVHRHPy0uKl5OLTRCL1pNXzNZbFFDNyhwN3EpJl0oYDZfYykkLypKTChMLV4oXSR3SU1gZFB0T2RHQSxVMzp3Mk0tMDxxLV1MXz9eKTF2dycuLE1Sc3FWci5MO2FOJiMvRWdKKVBCY1stZj4rV29tWDJ1N2xxTTJpRXVtTVRjc0Y/LWFUPVotOTdVRW5YZ2xFbjFLLWJuRU9gZ3VGdChjJT07QW1fUXNAakxvb0kmTlg7XTAjajQjRjE0O2dsOC1HUXBnd2hycTgnPWxfZi1iNDknVU9xa0x1Ny0jI29EWTJMKHRlK01jaCZnTFl0SixNRXRKZkxoJ3gnTT0kQ1MtWlolUF04Ylo+I1M/WVkjJVEmcSczXkZ3Jj9EKVVETnJvY00zQTc2Ly9vTD8jaDdnbDg1W3FXL05ET2slMTZpajsrOjFhJ2lOSWRiLW91OC5QKncsdjUjRUkkVFdTPlBvdC1SKkgnLVNFcEE6ZylmK08kJSVga0EjRz04Uk1tRzEmT2A+dG84YkNdVCYkLG4uTG9PPjI5c3AzZHQtNTJVJVZNI3E3J0RIcGcrI1o5JUhbSzxMJWEyRS1ncldWTTNAMj0tazIydExdNCQjIzZXZSc4VUpDS0VbZF89JXdJOyc2WC1Hc0xYNGpeU2dKJCMjUip3LHZQM3dLI2lpVyYjKmheRCZSP2pwNysvdSYjKEFQIyNYVThjJGZTWVctSjk1Xy1EcFtnOXdjTyYjTS1oMU9jSmxjLSp2cHcweFVYJiNPUUZLTlhAUUknSW9QcDduYixRVS8vTVEmWkRrS1ApWDxXU1ZMKDY4dVZsJiNjJ1swIyhzMVgmeG0kWSVCNypLOmVEQTMyM2o5OThHWGJBI3B3TXMtamdEJDlRSVNCLUFfKGFONHhvRk1eQEM1OEQwK1ErcTNuMCMzVTFJbkRqRjY4Mi1Tak1YSkspKGgkaHh1YV9LXXVsOTIlJ0JPVSYjQlJSaC1zbGc4S0RscjolTDcxS2E6LkE7JVlVTGpEUG1MPExZczhpI1h3Sk9ZYUtQS2MxaDonOUtlLGcpYiksNzg9STM5Qjt4aVkkYmdHdy0mLlppOUluWER1WWElRypmMkJxN21uOV4jcDF2diUjKFdpLTsvWjVobzsjMjo7JWQmI3g5djY4QzVnP250WDBYKXBUYDslcEIzcTdtZ0dOKTMlKFA4blRkNUw3R2VBLUdMQCslSjN1MjooWWY+ZXRgZTspZiNLbTgmK0RDJEk0Nj4jS3JdXXUtWz05OXR0czEucWIjcTcyZzFXSk84MXErZU4nMDMnZU0+JjFYeFktY2FFbk9qJTJuOCkpLD9JTFI1Xi5JYm48LVgtTXE3W2E4MkxxOkYmI2NlK1M5d3NDSyp4YDU2OUU4ZXcnSGVdaDpzSVsyTE0kW2d1a2EzWlJkNjp0JUlHOjskJVlpSjpOcT0/ZUF3Oy86bm5EcTAoQ1ljTXBHKXFMTjQkIyMmSjxqJFVwSzxRNGExXU11cFdeLXNqXyQlW0hLJSdGIyMjI1FSWko6OlkzRUdsNCdAJUZraUFPZyNwWyMjT2BndWtUZkJIYWdMPExIdyVxJk9WMCMjRj02LzpjaEltMEBlQ1A4WF06a0ZJJWhsOGhnT0BSY0JoUy1AUWIkJSttPWhQRExnKiVLOGxuKHdjZjMvJ0RXLSQubFI/bltuQ0gtZVhPT05USmxoOi5SWUYlMydwNnNxOlVJTUE5NDUmXkhGUzg3QCRFUDJpRzwtbENPJCVjYHVLR0QzckMkeDBCTDhhRm4tLWBrZSUjSE1QJ3ZoMS9SJk9fSjkndW0sLjx0eFtAJXdzSmsmYlVUMmAwdU12N2dnI3FwL2lqLkw1NidobDsuczVDVXJ4ak9NNy0jIy5sK0F1J0EmTzotVDcyTF1QYCY9O2N0cCdYU2NYKnJVLj4tWFR0LCVPVlU0KVMxK1ItI2RnMC9Obj9LdTFeMGYkQipQOlJvd3dtLWAwUEtqWURETSczXWQzOVZaSEVsNCwuaiddUGstTS5oXiY6MEZBQ20kbWFxLSZzZ3cwdDcvNiheeHRrJUx1SDg4RmotZWttPkdBI18+NTY4eDYoT0ZSbC1JWnBgJmIsX1AnJE08Sm5xNzlWc0pXL21XUypQVWlxNzY7XS9OTV8+aExieGZjJG1qYCxPOyYlVzJtYFpoOi8pVWV0dzphSiVdSzloOlRjRl11Xy1TajksVkszTS4qJyYwRFtDYV1KOWdwOCxrQVddJSg/QSVSJGY8LT5adHMnXmtuPS1eQGM0JS1wWTZxSSVKJTFJR3hmTFU5Q1A4Y2JQbFh2KTtDPWIpLDwybU92UDh1cCxVVmYzODM5YWNBV0FXLVc/I2FvL14jJUtZbzhmUlVMTmQyLj4lbV1VSzpuJXIkJ3N3XUo7NXBBb09fIzJtTzNuLCc9SDUoZXRIZypgK1JMZ3Y+PTRVOGd1RCRJJUQ6Vz4tcjVWKiVqKlc6S3Zlai5McCQ8TS1TR1onOitRX2srdXZPU0xpRW8oPGFEL0s8Q0NjYCdMeD4nPzsrK08nPigpakxSLV51NjhQSG04WkZXZStlajhoOjlyNkwqMC8vYyZpSCZSOHBSYkEjS2ptJXVwVjFnOmFfI1VyN0Z1QSModFJoIy5ZNUsrQD8zPC04bTAkUEVuO0o6cmg2P0k2dUc8LWB3TVUnaXJjcDBMYUVfT3RsTWImMSM2VC4jRkRLdSMxTHcldSUrR00rWCdlP1lMZmpNW1ZPME1idUZwNzs+USYjV0lvKTBARiVxN2MjNFhBWE4tVSZWQjxIRkYqcUwoJC9WLDsoa1haZWpXT2A8WzU/P2V3WSgqOT0ld0RjOyx1PCc5dDNXLShIMXRoMytHXXVjUV1rTHM3ZGYoJC8qSkxdQCp0N0J1X0czXzdtcDc8aWFRak9ALmtMZzt4M0IwbHFwN0hmLF5aZTctIyNAL2M1OE1vKDM7a25wMCUpQTc/LVcrZUknbzgpYjxuS253J0hvOEM9WT5wcUI+MGllJmpoWls/aUxSQEBfQXZBLWlRQyg9a3NSWlJWcDdgLj0rTnBCQyVyaCYzXVI6OFhEbUU1XlY4Tyh4PDxhRy8xTiQjRlgkMFY1WTZ4J2FFckkzSSQ3eCVFYHY8LUJZLCklLT9Qc2YqbD8lQzMubU0oPS9NMDpKeEcnPzdXaEglbydhPC04MGcwTkJ4b08oR0g8ZE1dbi4rJXFAakg/Zi5Vc0oyR2dzJjQ8LWU0NyZLbCtmLy85QGBiKz8uVGVOXyZCOFNzP3Y7XlRyaztmI1l2SmtsJnckXT4tK2s/Jyg8Uzo2OHRxKldvRGZadSc7bU0/OFhbbWE4VyUqYC09O0QuKG5jNy87KWc6VDE9XkokJkJSVigtbFRtTkI2eHFCW0AwKm8uZXJNKjxTV0ZddTI9c3QtKig2dj5eXShILmFSRVpTaSwjMTpbSVhhWkZPbTwtdWkjcVVxMiQjI1JpO3U3NU9LIyhSdGFXLUstRmBTK2NGXXVOYC1LTVElclAvWHJpLkxSY0IjIz1ZTDNCZ00vM01EP0BmJjEnQlctKUp1PEwyNWdsOHVoVm0xaEwkIyMqOCMjIydBMy9Ma0tXKyhecldYPzVXXzhnKWEobSZLOFA+I2JtbVdDTWtrJiNUUmBDLDVkPmcpRjt0LDQ6QF9sOEcvNWg0dlVkJSYlOTUwOlZYRCdRZFdvWS1GJEJ0VXdtZmUkWXFMJzgoUFdYKFA/XkBQbzMkIyNgTVNzP0RXQlovUz4rNCU+ZlgsVld2L3cnS0RgTFA1SWJIO3JUVj5uM2NFSzhVI2JYXWwtL1YrXmxqMzt2bE1iJls1WVE4I3Bla1g5SlAzWFVDNzJMLCw/K05pJmNvN0Fwbk8qNU5LLCgoVy1pOiQsa3AnVURBTyhHMFNxN01WakpzYkl1KSdaLCpbPmJyNWZYXjpGUEFXci1tMktnTDxMVU4wOThrVEYmI2x2bzU4PS92akRvOy47KUthKmhMUiMvaz1yS2J4dVZgPlFfbk42Jzh1VEcmIzFUNWcpdUx2Ojg3M1VwVExnSCsjRmdwSCdfbzE3ODBQaDhLbXhRSjgjSDcyTDRANzY4QFRtJlFoNENCLzVPdm1BJixRJlFiVW9pJGFfJTNNMDFIKTR4N0leJktRVmd0Rm5WKztbUGM+W200ay8vLF0xPyNgVllbSnIqMyYmc2xSZkxpVlpKOl0/PUszU3c9WyQ9dVJCPzN4azQ4QGFlZzxaJzwkIzRIKTYsPmUwalQ2J04jKHElLk89PzJTXXUqKG08LVY4SicoMSlHXVs2OGhXJDUncVtHQyY1amBURT9tJ2VzRkdOUk0paixmZlo/LXF4ODstPmc0dCo6Q0lQL1tRYXA3LzknIygxc2FvN3ctLnFOVWRrSil0Q0YmI0JeO3hHdm4ycjlGRVBGRkZjTEAuaUZOa1R2ZSRtJSNRdlFTOFVAKTJaKzNLOkFLTTVpc1o4OCtkS1EpVzY+SiVDTDxLRT5gLmQqKEJgLW44RDlvSzxVcF1jJFgkKCwpTThadDcvW3Jka3FUZ2wtMGN1R012Jz8+LVhWMXFbJy01aydjQVo2OWU7RF8/JFpQUCZzXis3XSkkKiQjQFFZaTksNVAmIzlyKyQlQ0U9Njg+SzhyMD1kU0MlJShAcDcubTdqaWxRMDInMC1WV0FnPGEvJyczdS49NEwkWSk2ay9LOl9bMz0manZMPEwwQy8yJ3Y6XjstRElCVyxCNEU2ODprWjslPzgoUThCSD1rTzY1Qlc/eFNHJiNAdVUsRFMqLD8uKyhvKCMxdkNTOCNDSEY+VGxHVydiKVRxN1ZUOXFeKl4kJC46Jk5AQCQmKVdIdFBtKjVfck8wJmUlSyYjLTMwaihFNCMnWmIuby8oVHBtJD5LJ2ZAW1B2RmwsaGZJTlROVTZ1JzBwYW83JVhVcDldNS4+JWhgOF89VllieHVlbC5OVFNzSmZMYWNGdTNCJ2xRU3UvbTYtT3FlbThUK29FLS0kMGEva111ajlFd3NHPiV2ZVIqaHZeQkZwUWo6SycjU0osc0ItJyNdKGouTGc5MnJUdy0qbiVALzszOXJySkYsbCNxViVPcnRCZUM2Lyw7cUIzZWJOV1s/LEhxajJMLjFOUCZHalVSPTFEOFFhUzNVcCZAKjl3UD8rbG83Yj9AJSdrNGBwMFokMjIlSzMraUNaaj9YSk40Tm0mK1lGXXVALVckVSVWRVEvLCw+PiMpRDxoI2ApaDA6PFE2OTA5dWErJlZVJW4yOmNHM0ZKLSVAQmotRGdMcmBIdyZIQUtqS2pzZUs8L3hLVCopQixOOVgzXWtyYzEydCdwZ1RWKEx2LXRMW3hnXyU9TV9xN2FeeD83VWJkPiMlOGNZI1laPz0sYFdkeHUvYWUmI3c2KVI4OXRJIzZAcycoNkJmN2EmP1M9XlpJX2tTJmFpYCY9dEU3MkxfRCw7XlIpN1skczxFaCNjJilxLk1YSSUjdjlST2E1RlpPJXNGN3E3TndiJiNwdFVKOmFxSmUkU2w2OCUuRCMjI0VDPjw/LWFGJiNSTlF2Pm84bEtOJTUvJCh2ZGZxNytlYkEjdTFwXW92VUtXJlklcV0nPiQxQC1beGZuJDdaVHA3bU0sRyxLbzdhJkd1JUdbUk14SnNbME1NJXdjaS5MRkRLKSg8Y2BROE4pakVJRiorP1AyYThnJSkkcV1vMmFIOEMmPFNpYkMvcSwoZTp2Oy1iIzZbJE50RFo4NEplMktOdkIjJFA1P3RRM250KDBkPWouTFFmLi9MbDMzKyg7cTNMLXc9OGRYJCNXRiZ1SUpALWJmST4lOl9pMkI1Q3NSOCY5WiYjPW1QRW5tMGZgPCZjKVFMNXVKIyV1JWxKaitELXI7Qm9GJiM0RG9TOTdoNWcpRSNvOiZTNHdlREYsOV5Ib2VgaCpMK19hKk5yTFctMXBHXyYyVWRCODZlJUIvOj0+KU40eGVXLip3ZnQtOyQnNTgtRVNxcjxiP1VJKF8lQFtQNDY+I1VgJzZBUV1tJjYvYFo+I1M/WVkjVmM7cjdVMiYzMjZkPXcmSCMjIyM/VFpgKjQ/Ji5NSz9MUDhWeGc+JFtRWGMlUUp2OTIuKERiKkIpZ2IqQk05ZE0qaEpNQW8qYyYjYjB2PVBqZXJdJGdHJkpYRGYtPidTdHZVNzUwNWw5JEFGdmdZUkleJjxeYjY4P2ojcTlRWDRTTSdSTyMmc0wxSU0uckpmTFVBajIyMV1kIyNEVz1tODN1NTsnYll4LCpTbDBoTChXOzskZG9CJk8vVFE6KFpeeEJkTGpMPExuaTsnJ1guYCQjOCsxR0Q6ayRZVVdzYm44b2doNnJ4WjJaOV0lbmQrPlYjKjhVXzcyTGgrMlE4Q2owaTo2aHAmJEMvOnAoSEs+VDhZW2dIUTRgNCknJEFiKE5vZiVWJzhoTCYjPE5FZHRnKG4nPVMxQShRMS9JJjQoWyVkTWAsSXUnMTpfaEw+U2ZEMDcmNkQ8ZnA4ZEhNNy9nK3RsUE45SipyS2FQY3QmPyd1QkNlbV5qbiU5X0spPCxDNUszcz01ZyZHbUpiKltTWXE3SztUUkxHQ3NNLSQkO1MlOllAcjdBSzBwcHJwTDxMcmgscTdlLyVLV0s6NTBJXittJ3ZpYDM/JVpwKzwtZCskTC1TdjpALm8xOW4kczAmMzk7a247UyVCU3EqJDNXb0pTQ0x3ZVZbYVonTVFJak88NztYLVg7JitkTUx2dSNeVXNHRUM5V0VjW1god0k3IzIuKEYwalYqZVpmPC1RdjNKLWMrSjVBbHJCIyRwKEg2OEx2RUEncTNuMCNtLFtgKjhGdClGY1lnRXVkXUNXZm02OCwoYUxBJEBFRlRnTFhvQnEvVVBscDc6ZFsvO3JfaXg9OlRGYFM1SC1iPExJJkhZKEs9aCMpXUxrJEsxNGxWZm06eCRIPDNeUWw8TWAkT2hhcEJua3VwJ0QjTCRQYl9gTipnXTJlO1gvRHRnLGJzaiZLIzJbLTppWXInX3dnSClOVUlSOGExbiNTP1llaidoOF41OFViWmQrXkZLRCpUQDs2QTdhUUNbSzhkLSh2NkdJJHg6VDwmJ0dwNVVmPkBNLipKOjskLXJ2MjknTV04cU12LXRMcCwnODg2aWFDPUhiKllKb0tKLChqJUs9SGBLLnY5SGdncUJJaVp1J1F2QlQuIz0pMHVrcnVWJi4pMz0oXjFgbypQajQ8LTxhTigoXjcoJyNaMHdLIzVHWEA3dV1bYCpTXjQzOTMzQTRybF1bYCpPNENnTEVsXXYkMVEzQWVGMzdkYlhrLC4pdmojeCdkYDtxZ2JRUiVGVywyKD9MTz1zJVNjNjglTlAnIyNBb3RsOHg9QkUjajFVRChbMyRNKF1VSTJMWDNScEtOQDsvI2YnZi8mX210JkYpWGRGPDl0NClRYS4qa1RMd1EnKFRUQjkueEgnPiNNSitnTHE5LSMjQEh1WlBOMF11Omg3LlQuLkc6OyQvVXNqKFQ3YFE4dFQ3MkxuWWw8LXF4ODstSFY3US0mWGR4JTFhLGhDPTB1K0hsc1Y+bnVJUUwtNTxOPylOQlMpUU4qX0ksPyYpMidJTSVMM0kpWCgoZS9kbDImOCc8TTpeI00qUStbVC5YcmkuTFlTM3YlZkZgNjhoO2ItWFsvRW4nQ1IucTdFKXAnL2tsZTJITSx1O14lT0tDLU4rTGwlRjlDRjxOZideI3QyTCw7MjdXOjBPQDYjI1U2Vzc6JHJKZkxXSGokIyl3b3FCZWZJWi5QSzxiKnQ3ZWQ7cCpfbTs0RXhLI2hAJl0+Xz5Aa1hRdE1hY2ZELm0tVkFiODtJUmVNMyR3ZjAnJ2hyYSpzbzU2OCdJcCZ2UnM4NDknTVJZU3AlOnQ6aDVxU2d3cEVyJEI+USw7cyhDIyQpYHN2UXVGJCMjLUQsIyMsZzY4QDJbVDsuWFNkTjlRZSlycHQuX0stIzV3RilzUCcjI3AjQzBjJS1HYiVoZCs8LWonQWkqeCYmSE1rVF1DJ09TbCMjNVJHW0pYYUhOO2QndUEjeC5fVTsuYFBVQChaM2R0NHIxNTJAOnYsJ1IuU2ondyMwPC07a1BJKUZmSiYjQVlKJiMvLyk+LWs9bT0qWG5LJD49KTcyTF0wSSU+Lkc2OTBhOiQjIzwsKTs/OzcyIz94OStkO15WJzk7allAOyliciNxXllRcHg6WCNUZSRaXic9LT1iR2hMZjpENiZiTndaOS1aRCNuXjlIaExNcjVHOyddZCY2J3dZbVRGbUw8TEQpRl4lW3RDJzg7KzlFI0MkZyUjNVk+cTl3ST5QKDltSVs+a0MtZWtMQy9SJkNIK3MnQjtLLU02JEVCJWlzMDA6K0E0Wzd4a3MuTHJOazAmRSl3SUxZRkAyTCcwTmIkK3B2PCgyLjc2OC9GclkmaCReM2kmQCtHJUpUJzwtLHZgMztfKUk5TV5BRV1DTj9DbDJBWmcrJTRpVHBUMzxuLSYlSCViPEZEajJNPGhIPSZFaDwyTGVuJGIqYVRYPS04UXhOKWsxMUlNMWNeaiU5czxMPE5GU28pQj8rPC0oR3hzRixeLUVoQCQ0ZFhoTiQrI3J4SzgnamUnRDdrYGU7KTJwWXdQQSdfcDkmQF4xOG1sMV5bQGc0dCpbSk9hKls9UXA3KHFKX29PTF4oJzdmQiZIcS06c2Ysc05qOHhxXj4kVTRPXUdLeCdtOSliQHA3WXN2SzN3XllSLUNkUSo6SXI8KCR1JikjKCY/TDlSZzNIKTRmaUVwXmlJOU84S25UaixdSD9EKnI3J007UHdaOUswRV5rJi1jcEk7LnAvNl92d29GTVY8LT4jJVhpLkx4Vm5yVSg0JjgvUCs6aExTS2okI1UlXTQ5dCdJOnJnTWknRkxAYTowWS11QVszOScsKHZibWEqaFUlPC1TUkZgVHQ6NTQyUl9WViRwQFtwOERWW0EsPzE4MzlGV2RGPFRkZEY8OUFoLTYmOXRXb0RsaF0mMVNwR01xPlRpMU8qSCYjKEFMOFtfUCUuTT52Xi0pKXFPVCpGNUNxMGBZZSUrJEI2aTo3QDBJWDxOK1QrME1sTUJQUSpWaj5Tc0Q8VTRKSFk4a0QyKTJmVS9NIyRlLilUNCxfPThoTGltWyYpOz9Va0snLXg/Jyg6c2lJZkw8JHBGTWBpPD8lVyhtR0RITSU+aVdQLCMjUGAlL0w8ZVhpOkBaOUMuN289QChwWGRBTy9OTFE4bFBsK0hQT1FhOHdEOD1eR2xQYThUS0kxQ2poc0NUU0xKTScvV2w+LVMocXclc2YvQCUjQjY7L1U3S111WmJpXk9jXjJuPGJoUG1Va013PiV0PCknbUVWRScnbmBXbkpyYSReVEt2WDVCPjtfYVNFSycsKGh3YTA6aTRHPy5CY2kuKFhbP2IqKCQsPS1uPC5RJWAoWD0/K0BBbSpKczAmPTNiaDhLXW1MPExvTnMnNiwnODVgMD90LydfVTU5QF1kZEY8I0xkRjxlV2RGPE91Ti80NXJZPC1MQCYjK2ZtPjY5PUxiLE9jWlYvKTtUVG04Vkk7PyVPdEo8KGI0bXE3TTY6dT9LUmRGPGdSQDJMPUZOVS08YlsoOWMvTUwzbTtaWyRvRjNnKUdBV3FwQVJjPTxST3U3Y0w1bDstW0FdJS8rZnNkO2wjU2FmVC9mKlddMD1PJyQoVGI8WykqQGU3NzVSLTpZb2IlZyo+bCo6eFA/WWIuNSkld19JPzd1azVKQytGUyhtI2knay4nYTBpKTk8N2InZnMnNTlocSQqNVVodiMjcGleOCtoSUVCRmBudm9gOydsMC5eUzE8LXdVSzIvQ29oNThLS2hMak09U08qcmZPYCtxQ2BXLU9uLj1BSjU2Pj5pMkAyTEg2QTomNXFgPzlJM0BAJzA0JnAyL0xWYSpULTQ8LWkzO005VXZaZCtONz5iKmVJd2c6Q0MpYzw+bk8mIzxJR2U7X18udGhqWmw8JXcoV2syeG1wNFFASSNJOSxERl11Ny1QPS4tXzpZSl1hU0BWPzYqQygpZE9wNzpXTCxiJjNSZy8uY21NOSZyXj4kKD4uWi1JJkooUTBIZDVRJTdDby1iYC1jPE4oNnJAaXArQXVySzxtODZRSXRoKiN2Oy1PQnFpK0w3d0RFLUlyOEtbJ20rRERTTHdLJi8uPy1WJVVfJTM6cUtOdSRfYipCLWtwN05hRCdRZFdRUEtZcVtAPlApaEk7Kl9GXXVgUmJbLmo4X1EvPCY+dXUrVnNIJHNNOVRBJT8pKHZtSjgwKSxQN0U+KXRqRCUyTD0tdCNmS1slYHY9UTg8RmZOa2dnXm9JYmFoKiM4L1F0JEYmOksqLShOLycrMXZNQix1KCktYS5WVVUqI1tlJWdBQU8oUz5XbEEyKTtTYT5nWG04WUJgMWRASyNuXTc2LWEkVSxtRjxmWF1pZHFkKTwzLF1KN0ptVzRgNl11a3M9NC03MkwoakVrKzpiSjBNXnEtOERtX1o/MG9sUDFDOVNhJkhbZCZjJG9vUVVqXUV4ZCozWk1ALVdHVzIlcycsQi1fTSU+JVVsOiMvJ3hvRk05UVgtJC5RTic+WyUkWiR1RjZwQTZLaTJPNTo4dyp2UDE8LTFgW0csKS1tIz4wYFAmI2ViIy4zaSlydEI2MShvJyQ/WDNCPC9SOTA7ZVpdJU5jcTstVGxdI0Y+MlFmdF5hZV81dEtMOU1VZTliKnNMRVE5NUMmYD1HP0BNaj13aConM0U+PS08KUd0Kkl3KSdRRzpgQEl3T2Y3Jl0xaSdTMDFCK0V2L05hYyM5Uzs9O1lRcGdfNlVgKmtWWTM5eEssWy82QWo3OicxQm0tXzFFWWZhMStvJm80aHA3S05fUShPbElvQFMlO2pWZG4wJzE8VmM1Mj11YDNeby1uMSdnNHY1OEhqJjZfdDckIyM/TSljPCRiZ1FfJ1NZKCgteGtBI1koLHAnSDlySVZZLWIsJyViQ1BGNy5KPFVwXiwoZFUxVlkqNSNXa1RVPmgxOXcsV1FoTEkpM1MjZiQyKGViLGpyKmI7M1Z3XSo3TkglJGM0VnMsZUQ5PlhXOD9OXW8rKCpwZ0MlLzcyTFYtdTxIcCwzQGVeOVVCMUorYWs5LVROL21oS1BnK0FKWWQkTWx2QUZfakNLKi5PLV4oNjNhZE1ULT5XJWlld1M4VzZtMnJ0Q3BvJ1JTMVI4ND1AcGFUS3QpPj0lJjFbKSp2cCd1K3gsVnJ3TjsmXWt1TzlKRGJnPXBPJEoqLmpWZTt1J20wZHI5bCw8KndNSypPZT1nOGxWX0tFQkZrTydvVV1ePVstNzkyI29rLClpXWxSOHFRMm9BOHdjUkNaXjd3L05qaDs/LnN0WD9RMT5TMXE0Qm4kKUsxPC1yR2RPJyRXci5MYy5DRykkLypKTDR0TlIvLFNWTzMsYVV3J0RKTjopU3M7d0duOUEzMmlqdyVGTCtaMEZuLlU5O3JlU3EpYm1JMzJVPT01QUx1RyYjVmYxMzk4L3BWbzEqYy0oYVkxNjhvPGBKc1Niay0sMU47JD4wOk9VYXMoMzo4Wjk3MkxTZkY4ZWI9Yy07PlNQdzcuNmhuM21gOV5Ya24oci5xU1swO1QlJlFjPStTVFJ4WCdxMUJOazMmKmV1MjsmOHEkJng+USNRN15UZis2PChkJVpWbWoyYkRpJS4zTDJuKzRXJyRQaURERylnLHIlKz8sJEA/dW91NXRTZTJhTl9BUVUqPGhgZS1HSTcpP09LMkEuZDdfYyk/d1E1QVNAREwzciM3ZlNrZ2w2LSsrRDonQSx1cTdTdmxCJHBjcEgncTNuMCNfJWRZI3hDcHItbDxGME5SQC0jI0ZFVjZOVEY2IyMkbDg0TjF3P0FPPidJQU9VUlEjI1ZeRnYtWEZiR003RmwoTjwzRGhMR0YlcS4xckMkIzpUX18mUGk2OCUweGlfJltxRkooNzdqXyZKV29GLlY3MzUmVCxbUio6eEZSKks1Pj4jYGJXLT80TmVfJjZOZV8mNk5lXyZuYGtyLSNHSmNNNlg7dU02WDt1TSguYS4uXjJUa0wlb1IoIzt1LlQlZkFyJTR0SjgmPjwxPUdIWl8rbTkvI0gxRl5SI1NDIypOPUJBOShEP3ZbVWlGWT4+XjhwLEtLRi5XXUwyOXVMa0xsdS8rNFQ8WG9JQiZoeD1UMVBjRGFCJjtISCstQUZyPyhtOUhaVilGS1M4SkN3O1NEPTZbXi9EWlVMYEVVRGZdR0dsRyY+dyQpRi4vXm4zK3JsbytEQjs1c0lZR05rK2kxdC02OUpnLS0wcGFvN1NtI0spcGRIVyY7THVETkhASD4jL1gtVEkoO1A+IyxHYz4jMFN1PiM0YDE/IzhsQz8jPHhVPyNALmk/I0Q6JUAjSEY3QCNMUklAI1BfW0AjVGtuQCNYdypBI10tPUEjYTlPQSNkPEYmIyo7RyMjLkdZIyMyU2wjIzZgKCQjOmw6JCM+eEwkI0IuYCQjRjpyJCNKRi4lI05SQCUjUl9SJSNWa2UlI1p3dyUjXy00JiMzXlJoJVNmbHItaydNUy5vPy41L3NXZWwvd3BFTTAlMycvMSlLXmYxLWQ+RzIxJnYoMzU+VmAzOVY3QTQ9b254NEExT1k1RUkwOzZJYmdyNk0kSFM3UTwpNThDNXcsO1dvQSojWyVUKiNgMWcqI2Q9IysjaEk1KyNsVUcrI3BiWSsjdG5sKyN4JCksIyYxOywjKj1NLCMuSWAsIzJVciwjNmIuLSM7d1tII2lRdEEjbV4wQiNxakJCI3V2VEIjIy1oQiMnOSRDIytFNkMjL1FIQyMzXlpDIzdqbUMjO3YpRCM/LDxEI0M4TkQjR0RhRCNLUHNEI09dL0UjZzFBNSNLQSoxI2dDMTcjTUdkOyM4KDAyI0wtZDMjcldNNCNIZ2ExIyw8dzAjVC5qPCNPIycyI0NZTjEjcWFeOiNfNG0zI29ALz0jZUc4PSN0OEo1I2ArNzgjNHVJLSNtM0IyI1NCWzgjUTBAOCNpWyo5I2lPbjgjMU5tOyNec045I3FoPDkjOj14LSNQO0syIyQlWDkjYkMrLiNSZzs8I21OPS4jTVRGLiNSWk8uIzI/KTQjWSMoLyNbKTEvI2I7TC8jZEFVLyMwU3Y7I2xZJDAjbmAtMCNzZjYwIyhGMjQjd3JIMCMlL2UwI1RtRDwjJUpTTUZvdmU6Q1RCRVhJOjxlaDJnKUIsM2gyXkczaTsjZDNqRD4pNGtNWUQ0bFZ1YDRtYDomNW5pVUE1QChBNUJBMV1QQkI6eGxCQ0M9MkNETFhNQ0VVdGlDZiYwZzIndE4/UEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQLXFla0NgLjlrRWdeK0Yka3dWaUZKVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVvLF48LTI4WkknTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cDs3cS0jbExZSTp4dkQ9IwBB9v8ACwpAQAAAQEEAAJhBAEGKgAELugFQQQAAAAAAAOBAAACAQQAAgD8AAABBAAD4QQAAAAAAALhBAAC4QQAAMEEAADBBAACoQQAAAAAAABBBAAC4QQAAgEAAADBBAABcQgAAkEEAALhBAAAQQQAAMEEAAIBAAACSQgAAAAAAAIhBAACIQQAAAEEAAABBAABcQgAAAAAAAIhBAACIQQAAAEEAAABBAAC2QgAAAAAAAIhBAACwQQAAoEAAAAAAIAD/AAAw/zDwMf8xAP/v/wBOr58AQdCBAQuXJyAA/wAAMP8w8DH/MQD/7/8AAAEAAgAEAAEAAQABAAEAAgABAAMAAgABAAIAAgABAAEAAQABAAEABQACAAEAAgADAAMAAwACAAIABAABAAEAAQACAAEABQACAAMAAQACAAEAAgABAAEAAgABAAEAAgACAAEABAABAAEAAQABAAUACgABAAIAEwACAAEAAgABAAIAAQACAAEAAgABAAUAAQAGAAMAAgABAAIAAgABAAEAAQAEAAgABQABAAEABAABAAEAAwABAAIAAQAFAAEAAgABAAEAAQAKAAEAAQAFAAIABAAGAAEABAACAAIAAgAMAAIAAQABAAYAAQABAAEABAABAAEABAAGAAUAAQAEAAIAAgAEAAoABwABAAEABAACAAQAAgABAAQAAwAGAAoADAAFAAcAAgAOAAIACQABAAEABgAHAAoABAAHAA0AAQAFAAQACAAEAAEAAQACABwABQAGAAEAAQAFAAIABQAUAAIAAgAJAAgACwACAAkAEQABAAgABgAIABsABAAGAAkAFAALABsABgBEAAIAAgABAAEAAQACAAEAAgACAAcABgALAAMAAwABAAEAAwABAAIAAQABAAEAAQABAAMAAQABAAgAAwAEAAEABQAHAAIAAQAEAAQACAAEAAIAAQACAAEAAQAEAAUABgADAAYAAgAMAAMAAQADAAkAAgAEAAMABAABAAUAAwADAAEAAwAHAAEABQABAAEAAQABAAIAAwAEAAUAAgADAAIABgABAAEAAgABAAcAAQAHAAMABAAFAA8AAgACAAEABQADABYAEwACAAEAAQABAAEAAgAFAAEAAQABAAYAAQABAAwACAACAAkAEgAWAAQAAQABAAUAAQAQAAEAAgAHAAoADwABAAEABgACAAQAAQACAAQAAQAGAAEAAQADAAIABAABAAYABAAFAAEAAgABAAEAAgABAAoAAwABAAMAAgABAAkAAwACAAUABwACABMABAADAAYAAQABAAEAAQABAAQAAwACAAEAAQABAAIABQADAAEAAQABAAIAAgABAAEAAgABAAEAAgABAAMAAQABAAEAAwAHAAEABAABAAEAAgABAAEAAgABAAIABAAEAAMACAABAAEAAQACAAEAAwAFAAEAAwABAAMABAAGAAIAAgAOAAQABgAGAAsACQABAA8AAwABABwABQACAAUABQADAAEAAwAEAAUABAAGAA4AAwACAAMABQAVAAIABwAUAAoAAQACABMAAgAEABwAHAACAAMAAgABAA4ABAABABoAHAAqAAwAKAADADQATwAFAA4AEQADAAIAAgALAAMABAAGAAMAAQAIAAIAFwAEAAUACAAKAAQAAgAHAAMABQABAAEABgADAAEAAgACAAIABQAcAAEAAQAHAAcAFAAFAAMAHQADABEAGgABAAgABAAbAAMABgALABcABQADAAQABgANABgAEAAGAAUACgAZACMABwADAAIAAwADAA4AAwAGAAIABgABAAQAAgADAAgAAgABAAEAAwADAAMABAABAAEADQACAAIABAAFAAIAAQAOAA4AAQACAAIAAQAEAAUAAgADAAEADgADAAwAAwARAAIAEAAFAAEAAgABAAgACQADABMABAACAAIABAARABkAFQAUABwASwABAAoAHQBnAAQAAQACAAEAAQAEAAIABAABAAIAAwAYAAIAAgACAAEAAQACAAEAAwAIAAEAAQABAAIAAQABAAMAAQABAAEABgABAAUAAwABAAEAAQADAAQAAQABAAUAAgABAAUABgANAAkAEAABAAEAAQABAAMAAgADAAIABAAFAAIABQACAAIAAwAHAA0ABwACAAIAAQABAAEAAQACAAMAAwACAAEABgAEAAkAAgABAA4AAgAOAAIAAQASAAMABAAOAAQACwApAA8AFwAPABcAsAABAAMABAABAAEAAQABAAUAAwABAAIAAwAHAAMAAQABAAIAAQACAAQABAAGAAIABAABAAkABwABAAoABQAIABAAHQABAAEAAgACAAMAAQADAAUAAgAEAAUABAABAAEAAgACAAMAAwAHAAEABgAKAAEAEQABACwABAAGAAIAAQABAAYABQAEAAIACgABAAYACQACAAgAAQAYAAEAAgANAAcACAAIAAIAAQAEAAEAAwABAAMAAwAFAAIABQAKAAkABAAJAAwAAgABAAYAAQAKAAEAAQAHAAcABAAKAAgAAwABAA0ABAADAAEABgABAAMABQACAAEAAgARABAABQACABAABgABAAQAAgABAAMAAwAGAAgABQALAAsAAQADAAMAAgAEAAYACgAJAAUABwAEAAcABAAHAAEAAQAEAAIAAQADAAYACAAHAAEABgALAAUABQADABgACQAEAAIABwANAAUAAQAIAFIAEAA9AAEAAQABAAQAAgACABAACgADAAgAAQABAAYABAACAAEAAwABAAEAAQAEAAMACAAEAAIAAgABAAEAAQABAAEABgADAAUAAQABAAQABgAJAAIAAQABAAEAAgABAAcAAgABAAYAAQAFAAQABAADAAEACAABAAMAAwABAAMAAgACAAIAAgADAAEABgABAAIAAQACAAEAAwAHAAEACAACAAEAAgABAAUAAgAFAAMABQAKAAEAAgABAAEAAwACAAUACwADAAkAAwAFAAEAAQAFAAkAAQACAAEABQAHAAkACQAIAAEAAwADAAMABgAIAAIAAwACAAEAAQAgAAYAAQACAA8ACQADAAcADQABAAMACgANAAIADgABAA0ACgACAAEAAwAKAAQADwACAA8ADwAKAAEAAwAJAAYACQAgABkAGgAvAAcAAwACAAMAAQAGAAMABAADAAIACAAFAAQAAQAJAAQAAgACABMACgAGAAIAAwAIAAEAAgACAAQAAgABAAkABAAEAAQABgAEAAgACQACAAMAAQABAAEAAQADAAUABQABAAMACAAEAAYAAgABAAQADAABAAUAAwAHAA0AAgAFAAgAAQAGAAEAAgAFAA4ABgABAAUAAgAEAAgADwAFAAEAFwAGAD4AAgAKAAEAAQAIAAEAAgACAAoABAACAAIACQACAAEAAQADAAIAAwABAAUAAwADAAIAAQADAAgAAQABAAEACwADAAEAAQAEAAMABwABAA4AAQACAAMADAAFAAIABQABAAYABwAFAAcADgALAAEAAwABAAgACQAMAAIAAQALAAgABAAEAAIABgAKAAkADQABAAEAAwABAAUAAQADAAIABAAEAAEAEgACAAMADgALAAQAHQAEAAIABwABAAMADQAJAAIAAgAFAAMABQAUAAcAEAAIAAUASAAiAAYABAAWAAwADAAcAC0AJAAJAAcAJwAJAL8AAQABAAEABAALAAgABAAJAAIAAwAWAAEAAQABAAEABAARAAEABwAHAAEACwAfAAoAAgAEAAgAAgADAAIAAQAEAAIAEAAEACAAAgADABMADQAEAAkAAQAFAAIADgAIAAEAAQADAAYAEwAGAAUAAQAQAAYAAgAKAAgABQABAAIAAwABAAUABQABAAsABgAGAAEAAwADAAIABgADAAgAAQABAAQACgAHAAUABwAHAAUACAAJAAIAAQADAAQAAQABAAMAAQADAAMAAgAGABAAAQAEAAYAAwABAAoABgABAAMADwACAAkAAgAKABkADQAJABAABgACAAIACgALAAQAAwAJAAEAAgAGAAYABQAEAB4AKAABAAoABwAMAA4AIQAGAAMABgAHAAMAAQADAAEACwAOAAQACQAFAAwACwAxABIAMwAfAIwAHwACAAIAAQAFAAEACAABAAoAAQAEAAQAAwAYAAEACgABAAMABgAGABAAAwAEAAUAAgABAAQAAgA5AAoABgAWAAIAFgADAAcAFgAGAAoACwAkABIAEAAhACQAAgAFAAUAAQABAAEABAAKAAEABAANAAIABwAFAAIACQADAAQAAQAHACsAAwAHAAMACQAOAAcACQABAAsAAQABAAMABwAEABIADQABAA4AAQADAAYACgBJAAIAAgAeAAYAAQALABIAEwANABYAAwAuACoAJQBZAAcAAwAQACIAAgACAAMACQABAAcAAQABAAEAAgACAAQACgAHAAMACgADAAkABQAcAAkAAgAGAA0ABwADAAEAAwAKAAIABwACAAsAAwAGABUANgBVAAIAAQAEAAIAAgABACcAAwAVAAIAAgAFAAEAAQABAAQAAQABAAMABAAPAAEAAwACAAQABAACAAMACAACABQAAQAIAAcADQAEAAEAGgAGAAIACQAiAAQAFQA0AAoABAAEAAEABQAMAAIACwABAAcAAgAeAAwALAACAB4AAQABAAMABgAQAAkAEQAnAFIAAgACABgABwABAAcAAwAQAAkADgAsAAIAAQACAAEAAgADAAUAAgAEAAEABgAHAAUAAwACAAYAAQALAAUACwACAAEAEgATAAgAAQADABgAHQACAAEAAwAFAAIAAgABAA0ABgAFAAEALgALAAMABQABAAEABQAIAAIACgAGAAwABgADAAcACwACAAQAEAANAAIABQABAAEAAgACAAUAAgAcAAUAAgAXAAoACAAEAAQAFgAnAF8AJgAIAA4ACQAFAAEADQAFAAQAAwANAAwACwABAAkAAQAbACUAAgAFAAQABAA/ANMAXwACAAIAAgABAAMABQACAAEAAQACAAIAAQABAAEAAwACAAQAAQACAAEAAQAFAAIAAgABAAEAAgADAAEAAwABAAEAAQADAAEABAACAAEAAwAGAAEAAQADAAcADwAFAAMAAgAFAAMACQALAAQAAgAWAAEABgADAAgABwABAAQAHAAEABAAAwADABkABAAEABsAGwABAAQAAQACAAIABwABAAMABQACABwACAACAA4AAQAIAAYAEAAZAAMAAwADAA4AAwADAAEAAQACAAEABAAGAAMACAAEAAEAAQABAAIAAwAGAAoABgACAAMAEgADAAIABQAFAAQAAwABAAUAAgAFAAQAFwAHAAYADAAGAAQAEQALAAkABQABAAEACgAFAAwAAQABAAsAGgAhAAcAAwAGAAEAEQAHAAEABQAMAAEACwACAAQAAQAIAA4AEQAXAAEAAgABAAcACAAQAAsACQAGAAUAAgAGAAQAEAACAAgADgABAAsACAAJAAEAAQABAAkAGQAEAAsAEwAHAAIADwACAAwACAA0AAcABQATAAIAEAAEACQACAABABAACAAYABoABAAGAAIACQAFAAQAJAADABwADAAZAA8AJQAbABEADAA7ACYABQAgAH8AAQACAAkAEQAOAAQAAQACAAEAAQAIAAsAMgAEAA4AAgATABAABAARAAUABAAFABoADAAtAAIAFwAtAGgAHgAMAAgAAwAKAAIAAgADAAMAAQAEABQABwACAAkABgAPAAIAFAABAAMAEAAEAAsADwAGAIYAAgAFADsAAQACAAIAAgABAAkAEQADABoAiQAKANMAOwABAAIABAABAAQAAQABAAEAAgAGAAIAAwABAAEAAgADAAIAAwABAAMABAAEAAIAAwADAAEABAADAAEABwACAAIAAwABAAIAAQADAAMAAwACAAIAAwACAAEAAwAOAAYAAQADAAIACQAGAA8AGwAJACIAkQABAAEAAgABAAEAAQABAAIAAQABAAEAAQACAAIAAgADAAEAAgABAAEAAQACAAMABQAIAAMABQACAAQAAQADAAIAAgACAAwABAABAAEAAQAKAAQABQABABQABAAQAAEADwAJAAUADAACAAkAAgAFAAQAAgAaABMABwABABoABAAeAAwADwAqAAEABgAIAKwAAQABAAQAAgABAAEACwACAAIABAACAAEAAgABAAoACAABAAIAAQAEAAUAAQACAAUAAQAIAAQAAQADAAQAAgABAAYAAgABAAMABAABAAIAAQABAAEAAQAMAAUABwACAAQAAwABAAEAAQADAAMABgABAAIAAgADAAMAAwACAAEAAgAMAA4ACwAGAAYABAAMAAIACAABAAcACgABACMABwAEAA0ADwAEAAMAFwAVABwANAAFABoABQAGAAEABwAKAAIABwA1AAMAAgABAAEAAQACAKMAFAIBAAoACwABAAMAAwAEAAgAAgAIAAYAAgACABcAFgAEAAIAAgAEAAIAAQADAAEAAwADAAUACQAIAAIAAQACAAgAAQAKAAIADAAVABQADwBpAAIAAwABAAEAAwACAAMAAQABAAIABQABAAQADwALABMAAQABAAEAAQAFAAQABQABAAEAAgAFAAMABQAMAAEAAgAFAAEACwABAAEADwAJAAEABAAFAAMAGgAIAAIAAQADAAEAAQAPABMAAgAMAAEAAgAFAAIABwACABMAAgAUAAYAGgAHAAUAAgACAAcAIgAVAA0ARgACAIAAAQABAAIAAQABAAIAAQABAAMAAgACAAIADwABAAQAAQADAAQAKgAKAAYAAQAxAFUACAABAAIAAQABAAQABAACAAMABgABAAUABwAEAAMA0wAEAAEAAgABAAIABQABAAIABAACAAIABgAFAAYACgADAAQAMABkAAYAAgAQACgBBQAbAIMBAgACAAMABwAQAAgABQAmAA8AJwAVAAkACgADAAcAOwANABsAFQAvAAUAFQAGAEHyqAELsR4BAAIABAABAAEAAQABAAIAAQAGAAIAAgABAAgABQAHAAsAAQACAAoACgAIAAIABAAUAAIACwAIAAIAAQACAAEABgACAAEABwAFAAMABwABAAEADQAHAAkAAQAEAAYAAQACAAEACgABAAEACQACAAIABAAFAAYADgABAAEACQADABIABQAEAAIAAgAKAAcAAQABAAEAAwACAAQAAwAXAAIACgAMAAIADgACAAQADQABAAYACgADAAEABwANAAYABAANAAUAAgADABEAAgACAAUABwAGAAQAAQAHAA4AEAAGAA0ACQAPAAEAAQAHABAABAAHAAEAEwAJAAIABwAPAAIABgAFAA0AGQAEAA4ADQALABkAAQABAAEAAgABAAIAAgADAAoACwADAAMAAQABAAQABAACAAEABAAJAAEABAADAAUABQACAAcADAALAA8ABwAQAAQABQAQAAIAAQABAAYAAwADAAEAAQACAAcABgAGAAcAAQAEAAcABgABAAEAAgABAAwAAwADAAkABQAIAAEACwABAAIAAwASABQABAABAAMABgABAAcAAwAFAAUABwACAAIADAADAAEABAACAAMAAgADAAsACAAHAAQAEQABAAkAGQABAAEABAACAAIABAABAAIABwABAAEAAQADAAEAAgAGABAAAQACAAEAAQADAAwAFAACAAUAFAAIAAcABgACAAEAAQABAAEABgACAAEAAgAKAAEAAQAGAAEAAwABAAIAAQAEAAEADAAEAAEAAwABAAEAAQABAAEACgAEAAcABQANAAEADwABAAEAHgALAAkAAQAPACYADgABACAAEQAUAAEACQAfAAIAFQAJAAQAMQAWAAIAAQANAAEACwAtACMAKwA3AAwAEwBTAAEAAwACAAMADQACAAEABwADABIAAwANAAgAAQAIABIABQADAAcAGQAYAAkAGAAoAAMAEQAYAAIAAQAGAAIAAwAQAA8ABgAHAAMADAABAAkABwADAAMAAwAPABUABQAQAAQABQAMAAsACwADAAYAAwACAB8AAwACAAEAAQAXAAYABgABAAQAAgAGAAUAAgABAAEAAwADABYAAgAGAAIAAwARAAMAAgAEAAUAAQAJAAUAAQABAAYADwAMAAMAEQACAA4AAgAIAAEAFwAQAAQAAgAXAAgADwAXABQADAAZABMALwALABUAQQAuAAQAAwABAAUABgABAAIABQAaAAIAAQABAAMACwABAAEAAQACAAEAAgADAAEAAQAKAAIAAwABAAEAAQADAAYAAwACAAIABgAGAAkAAgACAAIABgACAAUACgACAAQAAQACAAEAAgACAAMAAQABAAMAAQACAAkAFwAJAAIAAQABAAEAAQAFAAMAAgABAAoACQAGAAEACgACAB8AGQADAAcABQAoAAEADwAGABEABwAbALQAAQADAAIAAgABAAEAAQAGAAMACgAHAAEAAwAGABEACAAGAAIAAgABAAMABQAFAAgAEAAOAA8AAQABAAQAAQACAAEAAQABAAMAAgAHAAUABgACAAUACgABAAQAAgAJAAEAAQALAAYAAQAsAAEAAwAHAAkABQABAAMAAQABAAoABwABAAoABAACAAcAFQAPAAcAAgAFAAEACAADAAQAAQADAAEABgABAAQAAgABAAQACgAIAAEABAAFAAEABQAKAAIABwABAAoAAQABAAMABAALAAoAHQAEAAcAAwAFAAIAAwAhAAUAAgATAAMAAQAEAAIABgAfAAsAAQADAAMAAwABAAgACgAJAAwACwAMAAgAAwAOAAgABgALAAEABAApAAMAAQACAAcADQABAAUABgACAAYADAAMABYABQAJAAQACAAJAAkAIgAGABgAAQABABQACQAJAAMABAABAAcAAgACAAIABgACABwABQADAAYAAQAEAAYABwAEAAIAAQAEAAIADQAGAAQABAADAAEACAAIAAMAAgABAAUAAQACAAIAAwABAAsACwAHAAMABgAKAAgABgAQABAAFgAHAAwABgAVAAUABAAGAAYAAwAGAAEAAwACAAEAAgAIAB0AAQAKAAEABgANAAYABgATAB8AAQANAAQABAAWABEAGgAhAAoABAAPAAwAGQAGAEMACgACAAMAAQAGAAoAAgAGAAIACQABAAkABAAEAAEAAgAQAAIABQAJAAIAAwAIAAEACAADAAkABAAIAAYABAAIAAsAAwACAAEAAQADABoAAQAHAAUAAQALAAEABQADAAUAAgANAAYAJwAFAAEABQACAAsABgAKAAUAAQAPAAUAAwAGABMAFQAWAAIABAABAAYAAQAIAAEABAAIAAIABAACAAIACQACAAEAAQABAAQAAwAGAAMADAAHAAEADgACAAQACgACAA0AAQARAAcAAwACAAEAAwACAA0ABwAOAAwAAwABAB0AAgAIAAkADwAOAAkADgABAAMAAQAGAAUACQALAAMAJgArABQABwAHAAgABQAPAAwAEwAPAFEACAAHAAEABQBJAA0AJQAcAAgACAABAA8AEgAUAKUAHAABAAYACwAIAAQADgAHAA8AAQADAAMABgAEAAEABwAOAAEAAQALAB4AAQAFAAEABAAOAAEABAACAAcANAACAAYAHQADAAEACQABABUAAwAFAAEAGgADAAsADgALAAEAEQAFAAEAAgABAAMAAgAIAAEAAgAJAAwAAQABAAIAAwAIAAMAGAAMAAcABwAFABEAAwADAAMAAQAXAAoABAAEAAYAAwABABAAEQAWAAMACgAVABAAEAAGAAQACgACAAEAAQACAAgACAAGAAUAAwADAAMAJwAZAA8AAQABABAABgAHABkADwAGAAYADAABABYADQABAAQACQAFAAwAAgAJAAEADAAcAAgAAwAFAAoAFgA8AAEAAgAoAAQAPQA/AAQAAQANAAwAAQAEAB8ADAABAA4AWQAFABAABgAdAA4AAgAFADEAEgASAAUAHQAhAC8AAQARAAEAEwAMAAIACQAHACcADAADAAcADAAnAAMAAQAuAAQADAADAAgACQAFAB8ADwASAAMAAgACAEIAEwANABEABQADAC4AfAANADkAIgACAAUABAAFAAgAAQABAAEABAADAAEAEQAFAAMABQADAAEACAAFAAYAAwAbAAMAGgAHAAwABwACABEAAwAHABIATgAQAAQAJAABAAIAAQAGAAIAAQAnABEABwAEAA0ABAAEAAQAAQAKAAQAAgAEAAYAAwAKAAEAEwABABoAAgAEACEAAgBJAC8ABwADAAgAAgAEAA8AEgABAB0AAgApAA4AAQAVABAAKQAHACcAGQANACwAAgACAAoAAQANAAcAAQAHAAMABQAUAAQACAACADEAAQAKAAYAAQAGAAcACgAHAAsAEAADAAwAFAAEAAoAAwABAAIACwACABwACQACAAQABwACAA8AAQAbAAEAHAARAAQABQAKAAcAAwAYAAoACwAGABoAAwACAAcAAgACADEAEAAKABAADwAEAAUAGwA9AB4ADgAmABYAAgAHAAUAAQADAAwAFwAYABEAEQADAAMAAgAEAAEABgACAAcABQABAAEABQABAAEACQAEAAEAAwAGAAEACAACAAgABAAOAAMABQALAAQAAQADACAAAQATAAQAAQANAAsABQACAAEACAAGAAgAAQAGAAUADQADABcACwAFAAMAEAADAAkACgABABgAAwDGADQABAACAAIABQAOAAUABAAWAAUAFAAEAAsABgApAAEABQACAAIACwAFAAIAHAAjAAgAFgADABIAAwAKAAcABQADAAQAAQAFAAMACAAJAAMABgACABAAFgAEAAUABQADAAMAEgAXAAIABgAXAAUAGwAIAAEAIQACAAwAKwAQAAUAAgADAAYAAQAUAAQAAgAJAAcAAQALAAIACgADAA4AHwAJAAMAGQASABQAAgAFAAUAGgAOAAEACwARAAwAKAATAAkABgAfAFMAAgAHAAkAEwBOAAwADgAVAEwADABxAE8AIgAEAAEAAQA9ABIAVQAKAAIAAgANAB8ACwAyAAYAIQCfALMABgAGAAcABAAEAAIABAACAAUACAAHABQAIAAWAAEAAwAKAAYABwAcAAUACgAJAAIATQATAA0AAgAFAAEABAAEAAcABAANAAMACQAfABEAAwAaAAIABgAGAAUABAABAAcACwADAAQAAgABAAYAAgAUAAQAAQAJAAIABgADAAcAAQABAAEAFAACAAMAAQAGAAIAAwAGAAIABAAIAAEABQANAAgABAALABcAAQAKAAYAAgABAAMAFQACAAIABAAYAB8ABAAKAAoAAgAFAMAADwAEABAABwAJADMAAQACAAEAAQAFAAEAAQACAAEAAwAFAAMAAQADAAQAAQADAAEAAwADAAkACAABAAIAAgACAAQABAASAAwAXAACAAoABAADAA4ABQAZABAAKgAEAA4ABAACABUABQB+AB4AHwACAAEABQANAAMAFgAFAAYABgAUAAwAAQAOAAwAVwADABMAAQAIAAIACQAJAAMAAwAXAAIAAwAHAAYAAwABAAIAAwAJAAEAAwABAAYAAwACAAEAAwALAAMAAQAGAAoAAwACAAMAAQACAAEABQABAAEACwADAAYABAABAAcAAgABAAIABQAFACIABAAOABIABAATAAcABQAIAAIABgBPAAEABQACAA4ACAACAAkAAgABACQAHAAQAAQAAQABAAEAAgAMAAYAKgAnABAAFwAHAA8ADwADAAIADAAHABUAQAAGAAkAHAAIAAwAAwADACkAOwAYADMANwA5ACYBCQAJAAIABgACAA8AAQACAA0AJgBaAAkACQAJAAMACwAHAAEAAQABAAUABgADAAIAAQACAAIAAwAIAAEABAAEAAEABQAHAAEABAADABQABAAJAAEAAQABAAUABQARAAEABQACAAYAAgAEAAEABAAFAAcAAwASAAsACwAgAAcABQAEAAcACwB/AAgABAADAAMAAQAKAAEAAQAGABUADgABABAAAQAHAAEAAwAGAAkAQQAzAAQAAwANAAMACgABAAEADAAJABUAbgADABMAGAABAAEACgA+AAQAAQAdACoATgAcABQAEgBSAAYAAwAPAAYAVAA6AP0ADwCbAAgBDwAVAAkADgAHADoAKAAnAEGwxwELECAA/wAABC8F4C3/LUCmn6YAQdLHAQsmgD/NzMw9CtcjPG8SgzoXt9E4rMUnN703hjWVv9Yzd8wrMl9wiTAAQYDIAQtGBAAAAOeOAADnjgAABAAAAPGOAADxjgAACAAAAPSOAAD0jgAACAAAAPmOAAD5jgAABAAAAOqOAADqjgAACAAAAOqOAADtjgBB0MgBC5IC/5AAAAORAAAHkQAAC5EAAMGQAADBkAAAwZAAAMGQAADHkAAAz5AAANeQAADfkAAA55AAAO+QAAD3kAAA35AAAJOQAACTkAAAk5AAAJOQAACXkAAAnZAAAKOQAACpkAAAr5AAALWQAAC7kAAAqZAAAP8AAP///wD/AP8A/wD///8AAP///wD///8AAP8AAAAA6HoAANB0AADQdAAA0HQAANB0AAA4ewAAWHsAANB0AAAIewAA0HQAANB0AAAIewAAOHsAADh7AABYewAAWHsAAOh6AABYewAAWHsAAFh7AADQdAAA0HQAANB0AAAAAAAACHsAAEB7AAAIdQAAOHsAAOh6AAA4ewAAWHsAANB0AADQdABB8MoBCxLQdAAA2HQAAAh7AABYewAA0HQAQZDLAQsi6HoAANB0AADQdAAACHsAAAh7AADYdAAA0HQAAFB7AAA4ewBBwMsBCyIIewAA0HQAADh7AAAIewAACHsAANh0AADQdAAA0HQAAAh7AEHwywELEgh7AADYdAAA0HQAAAh7AAAIewBBkMwBCzboegAA2HQAAFh7AADQdAAACHsAANh0AAA4ewAAOHsAAAh7AADYdAAA0HQAANB0AAA4ewAAOHsAQdDMAQsSCHsAANh0AAAIewAAOHsAANB0AEHwzAELMgh7AAA4ewAAOHsAANh0AAAIewAA2HQAADh7AADYdAAACHsAANh0AADQdAAAOHsAANB0AEGwzQELIgh7AADYdAAA0HQAADh7AADQdAAA0HQAANB0AADQdAAA0HQAQeDNAQs2CHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AAA4ewAAOHsAANB0AEGgzgELEgh7AADYdAAA0HQAANB0AADQdABBwM4BC3YIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAAAAAAAAh7AADYdAAAOHsAANB0AADQdAAA0HQAANB0AAA4ewAACHsAANh0AADQdAAAYHsAAGB7AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AAA4ewAAOHsAADh7AEHAzwELEgh7AADYdAAA0HQAANB0AAA4ewBB4M8BC4IBCHsAANh0AADQdAAA0HQAANB0AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AABQewAA0HQAADh7AADQdAAA0HQAAAh7AADYdAAA0HQAAFB7AAA4ewAA0HQAANB0AAAAAAAACHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AADQdABB8NABCyIIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AEGg0QELRgh7AADYdAAA0HQAANB0AAA4ewAAOHsAANB0AAAAAAAACHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQfDRAQt2CHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AADQdAAA0HQAADh7AAA4ewAAAAAAAOh6AABYewAA0HQAANB0AADoegAA2HQAANB0AADQdAAAOHsAADh7AADQdAAA0HQAANB0AADQdABB8NIBC5IBCHsAANh0AADQdAAAQHsAAAh7AADQdAAA0HQAANB0AADQdAAAOHsAANB0AADQdAAA6HoAANB0AADQdAAA0HQAANB0AADQdAAA0HQAAAAAAADoegAAOHsAANB0AAAIewAA6HoAANh0AAAIewAAOHsAAOh6AADYdAAA0HQAADh7AADoegAA0HQAANB0AADQdAAA0HQAQZDUAQsi6HoAANB0AAA4ewAA0HQAAAh7AADQdAAA0HQAAAh7AAA4ewBBwNQBC4YBCHsAANh0AADQdAAAOHsAAAh7AADYdAAAUHsAAFB7AABQewAAUHsAAFB7AAAAAAAACHsAAFh2AAA4ewAA0HQAAAh7AACYdgAAOHsAAFh7AAAIewAAmHYAADh7AAAIewAACHsAAJh2AAA4ewAAOHsAANB0AADIdgAA0HQAAFh7AADQdAAA0HQAQdDVAQsy6HoAACB2AADQdAAAWHsAANB0AABAewAAMHsAAAAAAAA4ewAAIHYAAFh7AADYdAAAWHsAQZDWAQti0HQAACB2AABYewAAWHsAAFh7AADYdAAA0HQAANB0AADoegAAQHUAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAQYDXAQs26HoAADB1AAA4ewAAOHsAAOh6AABAdQAA0HQAANB0AADoegAAQHUAANB0AADQdAAAWHsAADh7AEHA1wELFuh6AABAdQAA0HQAANB0AADQdAAAOHsAQeDXAQsW6HoAAEB1AADQdAAAWHsAADh7AAA4ewBBgNgBCzLoegAAQHUAANB0AABYewAAWHsAAFh7AAA4ewAAAAAAAOh6AABAdQAAQHsAAAh7AABYewBBwNgBCyLoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHw2AELEuh6AABAdQAA0HQAADh7AABAewBBkNkBC0boegAAQHUAANB0AAA4ewAAQHsAAAh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHg2QELcuh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAA6HoAAEB1AADQdAAAWHsAANB0AABAewAA2HQAAFh7AADQdABB4NoBCxLoegAAQHUAANB0AABAewAA2HQAQYDbAQsW6HoAAEB1AADQdAAAWHsAAEB7AAA4ewBBoNsBCzboegAAQHUAANB0AABYewAAQHsAADh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAAQHsAQeDbAQvWAeh6AABAdQAA0HQAANB0AADQdAAAQHsAAFh7AAAAAAAA6HoAAEB1AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAQHsAAEB7AABAewAA6HoAAEB1AADQdAAA0HQAAEB7AABYewAAOHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAAFh7AAA4ewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAWHsAQcDdAQsS6HoAAEB1AADQdAAA0HQAAAh7AEHg3QELRuh6AADgdwAAOHsAAFh7AADoegAA+HUAADh7AADYdAAA6HoAAOh1AAA4ewAAOHsAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQbDeAQvhA9B0AADQdAAA0HQAANB0AAACAADAAwAAwAQAAMAFAADABgAAwAcAAMAIAADACQAAwAoAAMALAADADAAAwA0AAMAOAADADwAAwBAAAMARAADAEgAAwBMAAMAUAADAFQAAwBYAAMAXAADAGAAAwBkAAMAaAADAGwAAwBwAAMAdAADAHgAAwB8AAMAAAACzAQAAwwIAAMMDAADDBAAAwwUAAMMGAADDBwAAwwgAAMMJAADDCgAAwwsAAMMMAADDDQAA0w4AAMMPAADDAAAMuwEADMMCAAzDAwAMwwQADNMAAAAA/////////////////////////////////////////////////////////////////wABAgMEBQYHCAn/////////CgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiP///////8KCwwNDg8QERITFBUWFxgZGhscHR4fICEiI/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AQaDiAQsYEQAKABEREQAAAAAFAAAAAAAACQAAAAALAEHA4gELIREADwoREREDCgcAARMJCwsAAAkGCwAACwAGEQAAABEREQBB8eIBCwELAEH64gELGBEACgoREREACgAAAgAJCwAAAAkACwAACwBBq+MBCwEMAEG34wELFQwAAAAADAAAAAAJDAAAAAAADAAADABB5eMBCwEOAEHx4wELFQ0AAAAEDQAAAAAJDgAAAAAADgAADgBBn+QBCwEQAEGr5AELHg8AAAAADwAAAAAJEAAAAAAAEAAAEAAAEgAAABISEgBB4uQBCw4SAAAAEhISAAAAAAAACQBBk+UBCwELAEGf5QELFQoAAAAACgAAAAAJCwAAAAAACwAACwBBzeUBCwEMAEHZ5QEL3gIMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYKAAAAZAAAAOgDAAAQJwAAoIYBAEBCDwCAlpgAAOH1BQMAAAAEAAAABAAAAAYAAACD+aIARE5uAPwpFQDRVycA3TT1AGLbwAA8mZUAQZBDAGNR/gC73qsAt2HFADpuJADSTUIASQbgAAnqLgAcktEA6x3+ACmxHADoPqcA9TWCAES7LgCc6YQAtCZwAEF+XwDWkTkAU4M5AJz0OQCLX4QAKPm9APgfOwDe/5cAD5gFABEv7wAKWosAbR9tAM9+NgAJyycARk+3AJ5mPwAt6l8Auid1AOXrxwA9e/EA9zkHAJJSigD7a+oAH7FfAAhdjQAwA1YAe/xGAPCrawAgvM8ANvSaAOOpHQBeYZEACBvmAIWZZQCgFF8AjUBoAIDY/wAnc00ABgYxAMpWFQDJqHMAe+JgAGuMwABBw+gBC21A+yH5PwAAAAAtRHQ+AAAAgJhG+DwAAABgUcx4OwAAAICDG/A5AAAAQCAlejgAAACAIoLjNgAAAAAd82k1OGPtPtoPST9emHs/2g/JP2k3rDFoISIztA8UM2ghojMAAAAAAADwPwAAAAAAAPg/AEG46QELCAbQ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aXZlAFBsb3RMaW5lc0hvdmVyZWQAUGxvdEhpc3RvZ3JhbUhvdmVyZWQAVGV4dFNlbGVjdGVkQmcARHJhZ0Ryb3BUYXJnZXQATmF2SGlnaGxpZ2h0AE5hdldpbmRvd2luZ0hpZ2hsaWdodABOYXZXaW5kb3dpbmdEaW1CZwBNb2RhbFdpbmRvd0RpbUJnAFVua25vd24AIyNUb29sdGlwXyUwMmQAIyNNZW51XyUwMmQAIyNQb3B1cF8lMDh4AHdpbmRvd19jb250ZXh0AHZvaWRfY29udGV4dABjb2x1bW5zACNTb3VyY2VFeHRlcm4ACiUqcyUuKnMAICUuKnMAYWIACgBMb2cgVG8gVFRZAExvZyBUbyBGaWxlAExvZyBUbyBDbGlwYm9hcmQARGVwdGgAcmIAd3QASW1HdWkgTWV0cmljcwABRGVhciBJbUd1aSAlcwBBcHBsaWNhdGlvbiBhdmVyYWdlICUuM2YgbXMvZnJhbWUgKCUuMWYgRlBTKQAlZCB2ZXJ0aWNlcywgJWQgaW5kaWNlcyAoJWQgdHJpYW5nbGVzKQAlZCBhY3RpdmUgd2luZG93cyAoJWQgdmlzaWJsZSkAJWQgYWxsb2NhdGlvbnMAU2hvdyBjbGlwcGluZyByZWN0YW5nbGVzIHdoZW4gaG92ZXJpbmcgZHJhdyBjb21tYW5kcwBDdHJsIHNob3dzIHdpbmRvdyBiZWdpbiBvcmRlcgBXaW5kb3dzAERyYXdMaXN0AEFjdGl2ZSBEcmF3TGlzdHMgKCVkKQBQb3B1cHMAUG9wdXBzICglZCkAUG9wdXBJRDogJTA4eCwgV2luZG93OiAnJXMnJXMlcwBOVUxMACBDaGlsZFdpbmRvdwAgQ2hpbGRNZW51AFRhYkJhcnMAVGFiIEJhcnMgKCVkKQBJbnRlcm5hbCBzdGF0ZQBOb25lAE1vdXNlAE5hdgBOYXZLZXlib2FyZABOYXZHYW1lcGFkAEhvdmVyZWRXaW5kb3c6ICclcycASG92ZXJlZFJvb3RXaW5kb3c6ICclcycASG92ZXJlZElkOiAweCUwOFgvMHglMDhYICglLjJmIHNlYyksIEFsbG93T3ZlcmxhcDogJWQAQWN0aXZlSWQ6IDB4JTA4WC8weCUwOFggKCUuMmYgc2VjKSwgQWxsb3dPdmVybGFwOiAlZCwgU291cmNlOiAlcwBBY3RpdmVJZFdpbmRvdzogJyVzJwBNb3ZpbmdXaW5kb3c6ICclcycATmF2V2luZG93OiAnJXMnAE5hdklkOiAweCUwOFgsIE5hdkxheWVyOiAlZABOYXZJbnB1dFNvdXJjZTogJXMATmF2QWN0aXZlOiAlZCwgTmF2VmlzaWJsZTogJWQATmF2QWN0aXZhdGVJZDogMHglMDhYLCBOYXZJbnB1dElkOiAweCUwOFgATmF2RGlzYWJsZUhpZ2hsaWdodDogJWQsIE5hdkRpc2FibGVNb3VzZUhvdmVyOiAlZABOYXZXaW5kb3dpbmdUYXJnZXQ6ICclcycARHJhZ0Ryb3A6ICVkLCBTb3VyY2VJZCA9IDB4JTA4WCwgUGF5bG9hZCAiJXMiICglZCBieXRlcykAIyNPdmVybGF5ACVzLyVzXyUwOFgAJXMvJTA4WAAjUkVTSVpFACMjI05hdldpbmRvd2luZ0xpc3QAKFBvcHVwKQAoTWFpbiBtZW51IGJhcikAKFVudGl0bGVkKQBQb3M9JWYsJWYAU2l6ZT0lZiwlZgBDb2xsYXBzZWQ9JWQAIyMjAFslc11bJXNdCgBQb3M9JWQsJWQKAFNpemU9JWQsJWQKAENvbGxhcHNlZD0lZAoAJXMgKCVkKQAlcyAnJXMnLCAlZCBAIDB4JXAAUG9zOiAoJS4xZiwlLjFmKSwgU2l6ZTogKCUuMWYsJS4xZiksIFNpemVDb250ZW50cyAoJS4xZiwlLjFmKQBGbGFnczogMHglMDhYICglcyVzJXMlcyVzJXMlcyVzJXMuLikAQ2hpbGQgAFRvb2x0aXAgAFBvcHVwIABNb2RhbCAAQ2hpbGRNZW51IABOb1NhdmVkU2V0dGluZ3MgAE5vTW91c2VJbnB1dHMATm9OYXZJbnB1dHMAQWx3YXlzQXV0b1Jlc2l6ZQBTY3JvbGw6ICglLjJmLyUuMmYsJS4yZi8lLjJmKQBBY3RpdmU6ICVkLyVkLCBXcml0ZUFjY2Vzc2VkOiAlZCwgQmVnaW5PcmRlcldpdGhpbkNvbnRleHQ6ICVkAEFwcGVhcmluZzogJWQsIEhpZGRlbjogJWQgKFJlZyAlZCBSZXNpemUgJWQpLCBTa2lwSXRlbXM6ICVkAE5hdkxhc3RJZHM6IDB4JTA4WCwweCUwOFgsIE5hdkxheWVyQWN0aXZlTWFzazogJVgATmF2TGFzdENoaWxkTmF2V2luZG93OiAlcwBOYXZSZWN0UmVsWzBdOiAoJS4xZiwlLjFmKSglLjFmLCUuMWYpAE5hdlJlY3RSZWxbMF06IDxOb25lPgBSb290V2luZG93AFBhcmVudFdpbmRvdwBDaGlsZFdpbmRvd3MAQ29sdW1ucyBzZXRzICglZCkAQ29sdW1ucyBJZDogMHglMDhYLCBDb3VudDogJWQsIEZsYWdzOiAweCUwNFgAV2lkdGg6ICUuMWYgKE1pblg6ICUuMWYsIE1heFg6ICUuMWYpAENvbHVtbiAlMDJkOiBPZmZzZXROb3JtICUuM2YgKD0gJS4xZiBweCkAU3RvcmFnZTogJWQgYnl0ZXMAJXM6ICclcycgJWQgdnR4LCAlZCBpbmRpY2VzLCAlZCBjbWRzAENVUlJFTlRMWSBBUFBFTkRJTkcAQ2FsbGJhY2sgJXAsIHVzZXJfZGF0YSAlcABEcmF3ICU0ZCAlcyB2dHgsIHRleCAweCVwLCBjbGlwX3JlY3QgKCU0LjBmLCU0LjBmKS0oJTQuMGYsJTQuMGYpAGluZGV4ZWQAbm9uLWluZGV4ZWQAJXMgJTA0ZDogcG9zICglOC4yZiwlOC4yZiksIHV2ICglLjZmLCUuNmYpLCBjb2wgJTA4WAoAdnR4ACAgIABUYWJCYXIgKCVkIHRhYnMpJXMAICpJbmFjdGl2ZSoAPAAlMDJkJWMgVGFiIDB4JTA4WABjbWFwAGxvY2EAaGVhZABnbHlmAGhoZWEAaG10eABrZXJuAEdQT1MAQ0ZGIABtYXhwAFByb2dneUNsZWFuLnR0ZiwgMTNweAAjU0NST0xMWAAjU0NST0xMWQAjaW1hZ2UAWyBdAFt4XQAoeCkAKCApACUuMGYlJQAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQAgfAAjI0NvbWJvXyUwMmQAKlVua25vd24gaXRlbSoAJWQAJWYAJWxmACV1ACVsbGQAJWxsdQAjI3YAIyNtaW4AIyNtYXgALQArACUwOFgATTowLjAwMABNOjAwMABjb250ZXh0ACMlMDJYJTAyWCUwMlglMDJYACMlMDJYJTAyWCUwMlgAIyNUZXh0ACUwMlglMDJYJTAyWCUwMlgAJTAyWCUwMlglMDJYACMjQ29sb3JCdXR0b24AcGlja2VyACMjcGlja2VyAF9DT0wzRgBfQ09MNEYAaHN2AHN2AGh1ZQBhbHBoYQBDdXJyZW50ACMjY3VycmVudABPcmlnaW5hbAAjI29yaWdpbmFsACMjcmdiACMjaHN2ACMjaGV4ACMjc2VsZWN0YWJsZQAjI2R1bW15cGlja2VyAEFscGhhIEJhcgBDb2xvcgAjI3ByZXZpZXcAIyUwMlglMDJYJTAyWApSOiAlZCwgRzogJWQsIEI6ICVkCiglLjNmLCAlLjNmLCAlLjNmKQAjJTAyWCUwMlglMDJYJTAyWApSOiVkLCBHOiVkLCBCOiVkLCBBOiVkCiglLjNmLCAlLjNmLCAlLjNmLCAlLjNmKQAlM2QAUjolM2QARzolM2QAQjolM2QAQTolM2QASDolM2QAUzolM2QAVjolM2QAJTAuM2YAUjolMC4zZgBHOiUwLjNmAEI6JTAuM2YAQTolMC4zZgBIOiUwLjNmAFM6JTAuM2YAVjolMC4zZgAjI1gAIyNZACMjWgAjI1cAUkdCAEhTVgBIRVgAMC4uMjU1ADAuMDAuLjEuMDAAQ29weSBhcy4uACglLjNmZiwgJS4zZmYsICUuM2ZmLCAlLjNmZikAKCVkLCVkLCVkLCVkKQAweCUwMlglMDJYJTAyWAAweCUwMlglMDJYJTAyWCUwMlgACiMjACMjAD4AI1RyZWVQdXNoACVkOiAlOC40ZwolZDogJTguNGcAJWQ6ICU4LjRnAHRydWUAZmFsc2UAJXM6ICVzACVzOiAlZAAlJXM6ICVzACVzOiAlLjNmACMjTWFpbk1lbnVCYXIAIyNtZW51YmFyACMjPAAjIz4AJS4qcwAqADEuNjcASU1HVUlfVkVSU0lPTgBJTUdVSV9DSEVDS1ZFUlNJT04ASW1HdWlJT1NpemUASW1HdWlTdHlsZVNpemUASW1WZWMyU2l6ZQBJbVZlYzRTaXplAEltRHJhd1ZlcnRTaXplAEltRHJhd0lkeFNpemUASW1EcmF3VmVydFBvc09mZnNldABJbURyYXdWZXJ0VVZPZmZzZXQASW1EcmF3VmVydENvbE9mZnNldABDcmVhdGVDb250ZXh0AERlc3Ryb3lDb250ZXh0AEdldEN1cnJlbnRDb250ZXh0AFNldEN1cnJlbnRDb250ZXh0AERlYnVnQ2hlY2tWZXJzaW9uQW5kRGF0YUxheW91dABHZXRJTwBHZXRTdHlsZQBHZXREcmF3RGF0YQBOZXdGcmFtZQBSZW5kZXIARW5kRnJhbWUAU2hvd0RlbW9XaW5kb3cAU2hvd0Fib3V0V2luZG93AFNob3dNZXRyaWNzV2luZG93AFNob3dTdHlsZUVkaXRvcgBTaG93U3R5bGVTZWxlY3RvcgBTaG93Rm9udFNlbGVjdG9yAFNob3dVc2VyR3VpZGUAR2V0VmVyc2lvbgBTdHlsZUNvbG9yc0RhcmsAU3R5bGVDb2xvcnNDbGFzc2ljAFN0eWxlQ29sb3JzTGlnaHQAQmVnaW4ARW5kAEJlZ2luQ2hpbGQARW5kQ2hpbGQAR2V0Q29udGVudFJlZ2lvbk1heABHZXRDb250ZW50UmVnaW9uQXZhaWwAR2V0Q29udGVudFJlZ2lvbkF2YWlsV2lkdGgAR2V0V2luZG93Q29udGVudFJlZ2lvbk1pbgBHZXRXaW5kb3dDb250ZW50UmVnaW9uTWF4AEdldFdpbmRvd0NvbnRlbnRSZWdpb25XaWR0aABHZXRXaW5kb3dEcmF3TGlzdABHZXRXaW5kb3dQb3MAR2V0V2luZG93U2l6ZQBHZXRXaW5kb3dXaWR0aABHZXRXaW5kb3dIZWlnaHQASXNXaW5kb3dDb2xsYXBzZWQASXNXaW5kb3dBcHBlYXJpbmcAU2V0V2luZG93Rm9udFNjYWxlAFNldE5leHRXaW5kb3dQb3MAU2V0TmV4dFdpbmRvd1NpemUAU2V0TmV4dFdpbmRvd1NpemVDb25zdHJhaW50cwBTZXROZXh0V2luZG93Q29udGVudFNpemUAU2V0TmV4dFdpbmRvd0NvbGxhcHNlZABTZXROZXh0V2luZG93Rm9jdXMAU2V0TmV4dFdpbmRvd0JnQWxwaGEAU2V0V2luZG93UG9zAFNldFdpbmRvd1NpemUAU2V0V2luZG93Q29sbGFwc2VkAFNldFdpbmRvd0ZvY3VzAFNldFdpbmRvd05hbWVQb3MAU2V0V2luZG93TmFtZVNpemUAU2V0V2luZG93TmFtZUNvbGxhcHNlZABTZXRXaW5kb3dOYW1lRm9jdXMAR2V0U2Nyb2xsWABHZXRTY3JvbGxZAEdldFNjcm9sbE1heFgAR2V0U2Nyb2xsTWF4WQBTZXRTY3JvbGxYAFNldFNjcm9sbFkAU2V0U2Nyb2xsSGVyZVkAU2V0U2Nyb2xsRnJvbVBvc1kAU2V0U3RhdGVTdG9yYWdlAEdldFN0YXRlU3RvcmFnZQBQdXNoRm9udABQb3BGb250AFB1c2hTdHlsZUNvbG9yAFBvcFN0eWxlQ29sb3IAUHVzaFN0eWxlVmFyAFBvcFN0eWxlVmFyAEdldFN0eWxlQ29sb3JWZWM0AEdldEZvbnQAR2V0Rm9udFNpemUAR2V0Rm9udFRleFV2V2hpdGVQaXhlbABHZXRDb2xvclUzMl9BAEdldENvbG9yVTMyX0IAR2V0Q29sb3JVMzJfQwBQdXNoSXRlbVdpZHRoAFBvcEl0ZW1XaWR0aABDYWxjSXRlbVdpZHRoAFB1c2hUZXh0V3JhcFBvcwBQb3BUZXh0V3JhcFBvcwBQdXNoQWxsb3dLZXlib2FyZEZvY3VzAFBvcEFsbG93S2V5Ym9hcmRGb2N1cwBQdXNoQnV0dG9uUmVwZWF0AFBvcEJ1dHRvblJlcGVhdABTZXBhcmF0b3IAU2FtZUxpbmUATmV3TGluZQBTcGFjaW5nAER1bW15AEluZGVudABVbmluZGVudABCZWdpbkdyb3VwAEVuZEdyb3VwAEdldEN1cnNvclBvcwBHZXRDdXJzb3JQb3NYAEdldEN1cnNvclBvc1kAU2V0Q3Vyc29yUG9zAFNldEN1cnNvclBvc1gAU2V0Q3Vyc29yUG9zWQBHZXRDdXJzb3JTdGFydFBvcwBHZXRDdXJzb3JTY3JlZW5Qb3MAU2V0Q3Vyc29yU2NyZWVuUG9zAEFsaWduVGV4dFRvRnJhbWVQYWRkaW5nAEdldFRleHRMaW5lSGVpZ2h0AEdldFRleHRMaW5lSGVpZ2h0V2l0aFNwYWNpbmcAR2V0RnJhbWVIZWlnaHQAR2V0RnJhbWVIZWlnaHRXaXRoU3BhY2luZwBDb2x1bW5zAE5leHRDb2x1bW4AR2V0Q29sdW1uSW5kZXgAR2V0Q29sdW1uV2lkdGgAU2V0Q29sdW1uV2lkdGgAR2V0Q29sdW1uT2Zmc2V0AFNldENvbHVtbk9mZnNldABHZXRDb2x1bW5zQ291bnQAUHVzaElEAFBvcElEAEdldElEAFRleHRVbmZvcm1hdHRlZABUZXh0AFRleHRWAFRleHRDb2xvcmVkAFRleHRDb2xvcmVkVgBUZXh0RGlzYWJsZWQAVGV4dERpc2FibGVkVgBUZXh0V3JhcHBlZABUZXh0V3JhcHBlZFYATGFiZWxUZXh0AExhYmVsVGV4dFYAQnVsbGV0VGV4dABCdWxsZXRUZXh0VgBCdWxsZXQAQnV0dG9uAFNtYWxsQnV0dG9uAEFycm93QnV0dG9uAEludmlzaWJsZUJ1dHRvbgBJbWFnZQBJbWFnZUJ1dHRvbgBDaGVja2JveABDaGVja2JveEZsYWdzAFJhZGlvQnV0dG9uX0EAUmFkaW9CdXR0b25fQgBQbG90TGluZXMAUGxvdEhpc3RvZ3JhbQBQcm9ncmVzc0JhcgBCZWdpbkNvbWJvAEVuZENvbWJvAENvbWJvAERyYWdGbG9hdABEcmFnRmxvYXQyAERyYWdGbG9hdDMARHJhZ0Zsb2F0NABEcmFnRmxvYXRSYW5nZTIARHJhZ0ludABEcmFnSW50MgBEcmFnSW50MwBEcmFnSW50NABEcmFnSW50UmFuZ2UyAERyYWdTY2FsYXIASW5wdXRUZXh0AElucHV0VGV4dE11bHRpbGluZQBJbnB1dEZsb2F0AElucHV0RmxvYXQyAElucHV0RmxvYXQzAElucHV0RmxvYXQ0AElucHV0SW50AElucHV0SW50MgBJbnB1dEludDMASW5wdXRJbnQ0AElucHV0RG91YmxlAElucHV0U2NhbGFyAFNsaWRlckZsb2F0AFNsaWRlckZsb2F0MgBTbGlkZXJGbG9hdDMAU2xpZGVyRmxvYXQ0AFNsaWRlckFuZ2xlAFNsaWRlckludABTbGlkZXJJbnQyAFNsaWRlckludDMAU2xpZGVySW50NABTbGlkZXJTY2FsYXIAVlNsaWRlckZsb2F0AFZTbGlkZXJJbnQAVlNsaWRlclNjYWxhcgBDb2xvckVkaXQzAENvbG9yRWRpdDQAQ29sb3JQaWNrZXIzAENvbG9yUGlja2VyNABDb2xvckJ1dHRvbgBTZXRDb2xvckVkaXRPcHRpb25zAFRyZWVOb2RlX0EAVHJlZU5vZGVfQgBUcmVlTm9kZV9DAFRyZWVOb2RlRXhfQQBUcmVlTm9kZUV4X0IAVHJlZU5vZGVFeF9DAFRyZWVQdXNoX0EAVHJlZVB1c2hfQgBUcmVlUG9wAFRyZWVBZHZhbmNlVG9MYWJlbFBvcwBHZXRUcmVlTm9kZVRvTGFiZWxTcGFjaW5nAFNldE5leHRUcmVlTm9kZU9wZW4AQ29sbGFwc2luZ0hlYWRlcl9BAENvbGxhcHNpbmdIZWFkZXJfQgBTZWxlY3RhYmxlX0EAU2VsZWN0YWJsZV9CAExpc3RCb3hfQQBMaXN0Qm94X0IATGlzdEJveEhlYWRlcl9BAExpc3RCb3hIZWFkZXJfQgBMaXN0Qm94Rm9vdGVyAFZhbHVlX0EAVmFsdWVfQgBWYWx1ZV9DAFZhbHVlX0QAU2V0VG9vbHRpcABCZWdpblRvb2x0aXAARW5kVG9vbHRpcABCZWdpbk1haW5NZW51QmFyAEVuZE1haW5NZW51QmFyAEJlZ2luTWVudUJhcgBFbmRNZW51QmFyAEJlZ2luTWVudQBFbmRNZW51AE1lbnVJdGVtX0EATWVudUl0ZW1fQgBPcGVuUG9wdXAAT3BlblBvcHVwT25JdGVtQ2xpY2sAQmVnaW5Qb3B1cABCZWdpblBvcHVwTW9kYWwAQmVnaW5Qb3B1cENvbnRleHRJdGVtAEJlZ2luUG9wdXBDb250ZXh0V2luZG93AEJlZ2luUG9wdXBDb250ZXh0Vm9pZABFbmRQb3B1cABJc1BvcHVwT3BlbgBDbG9zZUN1cnJlbnRQb3B1cABCZWdpblRhYkJhcgBFbmRUYWJCYXIAQmVnaW5UYWJJdGVtAEVuZFRhYkl0ZW0AU2V0VGFiSXRlbUNsb3NlZABMb2dUb1RUWQBMb2dUb0ZpbGUATG9nVG9DbGlwYm9hcmQATG9nRmluaXNoAExvZ0J1dHRvbnMATG9nVGV4dABCZWdpbkRyYWdEcm9wU291cmNlAFNldERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFNvdXJjZQBCZWdpbkRyYWdEcm9wVGFyZ2V0AEFjY2VwdERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFRhcmdldABHZXREcmFnRHJvcFBheWxvYWQAUHVzaENsaXBSZWN0AFBvcENsaXBSZWN0AFNldEl0ZW1EZWZhdWx0Rm9jdXMAU2V0S2V5Ym9hcmRGb2N1c0hlcmUASXNJdGVtSG92ZXJlZABJc0l0ZW1BY3RpdmUASXNJdGVtRWRpdGVkAElzSXRlbUZvY3VzZWQASXNJdGVtQ2xpY2tlZABJc0l0ZW1WaXNpYmxlAElzSXRlbURlYWN0aXZhdGVkAElzSXRlbURlYWN0aXZhdGVkQWZ0ZXJFZGl0AElzQW55SXRlbUhvdmVyZWQASXNBbnlJdGVtQWN0aXZlAElzQW55SXRlbUZvY3VzZWQAR2V0SXRlbVJlY3RNaW4AR2V0SXRlbVJlY3RNYXgAR2V0SXRlbVJlY3RTaXplAFNldEl0ZW1BbGxvd092ZXJsYXAASXNXaW5kb3dGb2N1c2VkAElzV2luZG93SG92ZXJlZABJc1JlY3RWaXNpYmxlX0EASXNSZWN0VmlzaWJsZV9CAEdldFRpbWUAR2V0RnJhbWVDb3VudABHZXRPdmVybGF5RHJhd0xpc3QAR2V0RHJhd0xpc3RTaGFyZWREYXRhAEdldFN0eWxlQ29sb3JOYW1lAENhbGNUZXh0U2l6ZQBDYWxjTGlzdENsaXBwaW5nAEJlZ2luQ2hpbGRGcmFtZQBFbmRDaGlsZEZyYW1lAENvbG9yQ29udmVydFUzMlRvRmxvYXQ0AENvbG9yQ29udmVydEZsb2F0NFRvVTMyAENvbG9yQ29udmVydFJHQnRvSFNWAENvbG9yQ29udmVydEhTVnRvUkdCAEdldEtleUluZGV4AElzS2V5RG93bgBJc0tleVByZXNzZWQASXNLZXlSZWxlYXNlZABHZXRLZXlQcmVzc2VkQW1vdW50AElzTW91c2VEb3duAElzQW55TW91c2VEb3duAElzTW91c2VDbGlja2VkAElzTW91c2VEb3VibGVDbGlja2VkAElzTW91c2VSZWxlYXNlZABJc01vdXNlRHJhZ2dpbmcASXNNb3VzZUhvdmVyaW5nUmVjdABJc01vdXNlUG9zVmFsaWQAR2V0TW91c2VQb3MAR2V0TW91c2VQb3NPbk9wZW5pbmdDdXJyZW50UG9wdXAAR2V0TW91c2VEcmFnRGVsdGEAUmVzZXRNb3VzZURyYWdEZWx0YQBHZXRNb3VzZUN1cnNvcgBTZXRNb3VzZUN1cnNvcgBDYXB0dXJlS2V5Ym9hcmRGcm9tQXBwAENhcHR1cmVNb3VzZUZyb21BcHAAR2V0Q2xpcGJvYXJkVGV4dABTZXRDbGlwYm9hcmRUZXh0AExvYWRJbmlTZXR0aW5nc0Zyb21NZW1vcnkAU2F2ZUluaVNldHRpbmdzVG9NZW1vcnkAU2V0QWxsb2NhdG9yRnVuY3Rpb25zAE1lbUFsbG9jAE1lbUZyZWUAaWlpAE4xMGVtc2NyaXB0ZW4zdmFsRQB2aWlpaQBOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TXzExY2hhcl90cmFpdHNJY0VFTlNfOWFsbG9jYXRvckljRUVFRQBOU3QzX18yMjFfX2Jhc2ljX3N0cmluZ19jb21tb25JTGIxRUVFAGlpaWZpAHgAeQAyM2ltcG9ydF9tYXliZV9udWxsX3ZhbHVlSTZJbVZlYzJFAGlpaWlpAGlpaWYAaWlpZmYAaWlpaQAxMmFjY2Vzc192YWx1ZUlmTG0xRUUAdmlmZmZpaWkAegB3ADZJbVZlYzIAdmlpZmlpADEyYWNjZXNzX3ZhbHVlSWlMbTFFRQBpaWlpZmkAUDIwSW1EcmF3TGlzdFNoYXJlZERhdGEAMjBJbURyYXdMaXN0U2hhcmVkRGF0YQBQMTBJbURyYXdMaXN0ADEwSW1EcmF3TGlzdABkaQBpaWlpaWkAJXMAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TMF8xMWNoYXJfdHJhaXRzSWNFRU5TMF85YWxsb2NhdG9ySWNFRUVFRQAyNGltcG9ydF9tYXliZV9udWxsX3N0cmluZwAyM2FjY2Vzc19tYXliZV9udWxsX3ZhbHVlSWJMbTFFRQB2aWlmaQB2aWlpAGlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJZkxtNEVFADIzYWNjZXNzX21heWJlX251bGxfdmFsdWVJZkxtNEVFADEyYWNjZXNzX3ZhbHVlSWZMbTNFRQBpaWlpaWlpaWlpAHNldABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lkRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlkRQBsZW5ndGgAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lmRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlmRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lqRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlqRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lpRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlpRQBpaWlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJaUxtNEVFADEyYWNjZXNzX3ZhbHVlSWlMbTNFRQAxMmFjY2Vzc192YWx1ZUlpTG0yRUUAJS4wZiBkZWcAMTJhY2Nlc3NfdmFsdWVJZkxtMkVFAGlpaWlpaWlpAGlpaWlkZGlpADEyYWNjZXNzX3ZhbHVlSWRMbTFFRQBQMjZJbUd1aUlucHV0VGV4dENhbGxiYWNrRGF0YQAyNkltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAGlpaWlpaWlpaWlpAHZpZmlpAHZpaWlpaWlpaWlpADEyYWNjZXNzX3ZhbHVlSWpMbTFFRQAxMmFjY2Vzc192YWx1ZUliTG0xRUUAdmlpaWlpaWkAbnVtYmVyAHZpaWYAZmlpAGlpAHZpaQBQNkltRm9udAA2SW1Gb250AFBLNkltVmVjNAA2SW1WZWM0AFRPRE86ICVzCgBhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoZW1zY3JpcHRlbjo6dmFsKSBjb25zdAB2aWZmAHZpaWlpaQBQMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAdmlmAGZpAHN0cmluZwBQMTBJbUd1aVN0eWxlADEwSW1HdWlTdHlsZQB2aQBQMTBJbURyYXdEYXRhADEwSW1EcmF3RGF0YQBQN0ltR3VpSU8AN0ltR3VpSU8AUDE2V3JhcEltR3VpQ29udGV4dAAxNldyYXBJbUd1aUNvbnRleHQAUDExSW1Gb250QXRsYXMAMTFJbUZvbnRBdGxhcwBJbUd1aVN0eWxlAEFscGhhAFdpbmRvd1BhZGRpbmcAV2luZG93Um91bmRpbmcAV2luZG93Qm9yZGVyU2l6ZQBXaW5kb3dNaW5TaXplAFdpbmRvd1RpdGxlQWxpZ24AQ2hpbGRSb3VuZGluZwBDaGlsZEJvcmRlclNpemUAUG9wdXBSb3VuZGluZwBQb3B1cEJvcmRlclNpemUARnJhbWVQYWRkaW5nAEZyYW1lUm91bmRpbmcARnJhbWVCb3JkZXJTaXplAEl0ZW1TcGFjaW5nAEl0ZW1Jbm5lclNwYWNpbmcAVG91Y2hFeHRyYVBhZGRpbmcASW5kZW50U3BhY2luZwBDb2x1bW5zTWluU3BhY2luZwBTY3JvbGxiYXJTaXplAFNjcm9sbGJhclJvdW5kaW5nAEdyYWJNaW5TaXplAEdyYWJSb3VuZGluZwBUYWJSb3VuZGluZwBUYWJCb3JkZXJTaXplAEJ1dHRvblRleHRBbGlnbgBEaXNwbGF5V2luZG93UGFkZGluZwBEaXNwbGF5U2FmZUFyZWFQYWRkaW5nAE1vdXNlQ3Vyc29yU2NhbGUAQW50aUFsaWFzZWRMaW5lcwBBbnRpQWxpYXNlZEZpbGwAQ3VydmVUZXNzZWxsYXRpb25Ub2wAX2dldEF0X0NvbG9ycwBfc2V0QXRfQ29sb3JzAFNjYWxlQWxsU2l6ZXMAUDZJbVZlYzQAUEs2SW1WZWMyAHYAUEsxMEltR3VpU3R5bGUASW1HdWlJTwBDb25maWdGbGFncwBCYWNrZW5kRmxhZ3MARGlzcGxheVNpemUARGVsdGFUaW1lAEluaVNhdmluZ1JhdGUASW5pRmlsZW5hbWUATG9nRmlsZW5hbWUATW91c2VEb3VibGVDbGlja1RpbWUATW91c2VEb3VibGVDbGlja01heERpc3QATW91c2VEcmFnVGhyZXNob2xkAF9nZXRBdF9LZXlNYXAAX3NldEF0X0tleU1hcABLZXlSZXBlYXREZWxheQBLZXlSZXBlYXRSYXRlAFVzZXJEYXRhAEZvbnRzAEZvbnRHbG9iYWxTY2FsZQBGb250QWxsb3dVc2VyU2NhbGluZwBGb250RGVmYXVsdABEaXNwbGF5RnJhbWVidWZmZXJTY2FsZQBEaXNwbGF5VmlzaWJsZU1pbgBEaXNwbGF5VmlzaWJsZU1heABNb3VzZURyYXdDdXJzb3IAQ29uZmlnTWFjT1NYQmVoYXZpb3JzAENvbmZpZ0lucHV0VGV4dEN1cnNvckJsaW5rAENvbmZpZ1dpbmRvd3NSZXNpemVGcm9tRWRnZXMAQ29uZmlnV2luZG93c01vdmVGcm9tVGl0bGVCYXJPbmx5AEdldENsaXBib2FyZFRleHRGbgBTZXRDbGlwYm9hcmRUZXh0Rm4AQ2xpcGJvYXJkVXNlckRhdGEATW91c2VQb3MAX2dldEF0X01vdXNlRG93bgBfc2V0QXRfTW91c2VEb3duAE1vdXNlV2hlZWwAS2V5Q3RybABLZXlTaGlmdABLZXlBbHQAS2V5U3VwZXIAX2dldEF0X0tleXNEb3duAF9zZXRBdF9LZXlzRG93bgBfZ2V0QXRfTmF2SW5wdXRzAF9zZXRBdF9OYXZJbnB1dHMAQWRkSW5wdXRDaGFyYWN0ZXIAQWRkSW5wdXRDaGFyYWN0ZXJzVVRGOABDbGVhcklucHV0Q2hhcmFjdGVycwBXYW50Q2FwdHVyZU1vdXNlAFdhbnRDYXB0dXJlS2V5Ym9hcmQAV2FudFRleHRJbnB1dABXYW50U2V0TW91c2VQb3MAV2FudFNhdmVJbmlTZXR0aW5ncwBOYXZBY3RpdmUATmF2VmlzaWJsZQBGcmFtZXJhdGUATWV0cmljc1JlbmRlclZlcnRpY2VzAE1ldHJpY3NSZW5kZXJJbmRpY2VzAE1ldHJpY3NSZW5kZXJXaW5kb3dzAE1ldHJpY3NBY3RpdmVXaW5kb3dzAE1ldHJpY3NBY3RpdmVBbGxvY2F0aW9ucwBNb3VzZURlbHRhAF9nZXRBdF9Nb3VzZUNsaWNrZWRQb3MAX2dldEF0X01vdXNlRG93bkR1cmF0aW9uAF9nZXRBdF9LZXlzRG93bkR1cmF0aW9uAF9nZXRBdF9OYXZJbnB1dHNEb3duRHVyYXRpb24AUEs3SW1HdWlJTwBpaWlpZgBmaWlpAEltRm9udEF0bGFzAEFkZEZvbnREZWZhdWx0AEFkZEZvbnRGcm9tTWVtb3J5VFRGAENsZWFyVGV4RGF0YQBDbGVhcklucHV0RGF0YQBDbGVhckZvbnRzAENsZWFyAEJ1aWxkAElzQnVpbHQAR2V0VGV4RGF0YUFzQWxwaGE4AEdldFRleERhdGFBc1JHQkEzMgBHZXRHbHlwaFJhbmdlc0RlZmF1bHQAR2V0R2x5cGhSYW5nZXNLb3JlYW4AR2V0R2x5cGhSYW5nZXNKYXBhbmVzZQBHZXRHbHlwaFJhbmdlc0NoaW5lc2VGdWxsAEdldEdseXBoUmFuZ2VzQ2hpbmVzZVNpbXBsaWZpZWRDb21tb24AR2V0R2x5cGhSYW5nZXNDeXJpbGxpYwBHZXRHbHlwaFJhbmdlc1RoYWkATG9ja2VkAEZsYWdzAFRleElEAFRleERlc2lyZWRXaWR0aABUZXhHbHlwaFBhZGRpbmcAVGV4V2lkdGgAVGV4SGVpZ2h0AFRleFV2U2NhbGUAVGV4VXZXaGl0ZVBpeGVsAEl0ZXJhdGVGb250cwBwaXhlbHMAd2lkdGgAaGVpZ2h0AGJ5dGVzX3Blcl9waXhlbABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0loRUUAaWlpaWZpaQBGb250RGF0YQBidWZmZXIAYnl0ZU9mZnNldABieXRlTGVuZ3RoAFRPRE86IEZvbnREYXRhICV6dSAlenUKAEZvbnREYXRhT3duZWRCeUF0bGFzAEZvbnRObwBTaXplUGl4ZWxzAE92ZXJzYW1wbGVIAE92ZXJzYW1wbGVWAFBpeGVsU25hcEgAR2x5cGhFeHRyYVNwYWNpbmcAR2x5cGhPZmZzZXQAR2x5cGhSYW5nZXMAR2x5cGhNaW5BZHZhbmNlWABHbHlwaE1heEFkdmFuY2VYAE1lcmdlTW9kZQBSYXN0ZXJpemVyRmxhZ3MAUmFzdGVyaXplck11bHRpcGx5AE5hbWUAUEsxMUltRm9udEF0bGFzAEltRm9udABGb250U2l6ZQBTY2FsZQBEaXNwbGF5T2Zmc2V0AEl0ZXJhdGVHbHlwaHMARmFsbGJhY2tHbHlwaABGYWxsYmFja0FkdmFuY2VYAEZhbGxiYWNrQ2hhcgBDb25maWdEYXRhQ291bnQASXRlcmF0ZUNvbmZpZ0RhdGEAQXNjZW50AERlc2NlbnQATWV0cmljc1RvdGFsU3VyZmFjZQBDbGVhck91dHB1dERhdGEAQnVpbGRMb29rdXBUYWJsZQBGaW5kR2x5cGgARmluZEdseXBoTm9GYWxsYmFjawBTZXRGYWxsYmFja0NoYXIAR2V0Q2hhckFkdmFuY2UASXNMb2FkZWQAR2V0RGVidWdOYW1lAENhbGNUZXh0U2l6ZUEAQ2FsY1dvcmRXcmFwUG9zaXRpb25BAFJlbmRlckNoYXIAdmlpaWZpaWkAaWlpZmlmAGlpaWZmZmlpaQA8dW5rbm93bj4AUEs2SW1Gb250AFBLMTFJbUZvbnRHbHlwaAAxMUltRm9udEdseXBoAFAxMkltRm9udENvbmZpZwAxMkltRm9udENvbmZpZwBQMTFJbUZvbnRHbHlwaABJbUZvbnRDb25maWcARHN0Rm9udABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShJbUZvbnRDb25maWcgJiwgZW1zY3JpcHRlbjo6dmFsKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShjb25zdCBJbUZvbnRDb25maWcgJikgY29uc3QAUEsxMkltRm9udENvbmZpZwBJbUZvbnRHbHlwaABDb2RlcG9pbnQAQWR2YW5jZVgAWDAAWTAAWDEAWTEAVTAAVjAAVTEAVjEASW1EcmF3RGF0YQBJdGVyYXRlRHJhd0xpc3RzAFZhbGlkAENtZExpc3RzQ291bnQAVG90YWxJZHhDb3VudABUb3RhbFZ0eENvdW50AERpc3BsYXlQb3MARGVJbmRleEFsbEJ1ZmZlcnMAU2NhbGVDbGlwUmVjdHMAUEsxMEltRHJhd0RhdGEAUEsxMEltRHJhd0xpc3QASW1EcmF3TGlzdABJdGVyYXRlRHJhd0NtZHMASWR4QnVmZmVyAFZ0eEJ1ZmZlcgBQdXNoQ2xpcFJlY3RGdWxsU2NyZWVuAFB1c2hUZXh0dXJlSUQAUG9wVGV4dHVyZUlEAEdldENsaXBSZWN0TWluAEdldENsaXBSZWN0TWF4AEFkZExpbmUAQWRkUmVjdABBZGRSZWN0RmlsbGVkAEFkZFJlY3RGaWxsZWRNdWx0aUNvbG9yAEFkZFF1YWQAQWRkUXVhZEZpbGxlZABBZGRUcmlhbmdsZQBBZGRUcmlhbmdsZUZpbGxlZABBZGRDaXJjbGUAQWRkQ2lyY2xlRmlsbGVkAEFkZFRleHRfQQBBZGRUZXh0X0IAQWRkSW1hZ2UAQWRkSW1hZ2VRdWFkAEFkZEltYWdlUm91bmRlZABBZGRQb2x5bGluZQBBZGRDb252ZXhQb2x5RmlsbGVkAEFkZEJlemllckN1cnZlAFBhdGhDbGVhcgBQYXRoTGluZVRvAFBhdGhMaW5lVG9NZXJnZUR1cGxpY2F0ZQBQYXRoRmlsbENvbnZleABQYXRoU3Ryb2tlAFBhdGhBcmNUbwBQYXRoQXJjVG9GYXN0AFBhdGhCZXppZXJDdXJ2ZVRvAFBhdGhSZWN0AENoYW5uZWxzU3BsaXQAQ2hhbm5lbHNNZXJnZQBDaGFubmVsc1NldEN1cnJlbnQAQWRkQ2FsbGJhY2sAQWRkRHJhd0NtZABDbGVhckZyZWVNZW1vcnkAUHJpbVJlc2VydmUAUHJpbVJlY3QAUHJpbVJlY3RVVgBQcmltUXVhZFVWAFByaW1Xcml0ZVZ0eABQcmltV3JpdGVJZHgAUHJpbVZ0eABVcGRhdGVDbGlwUmVjdABVcGRhdGVUZXh0dXJlSUQAdmlpaWlpaWlpaWlpAHZpaWlpZmkAdmlpaWZmZmkAdmlpaWlmAHZpaWlpaWlpZmkAdmlpaWlpaWlpZmkAdmlpaWlpaWlpaWlpaQB2aWlpZmlpaWZpADIzaW1wb3J0X21heWJlX251bGxfdmFsdWVJNkltVmVjNEUAdmlpaWZpaQB2aWlpZmlpZgB2aWlpaWlpAHZpaWlpaWlmAHZpaWlpaWlpZgB2aWlpaWlpaWkAdmlpaWlpZmkAdmlpaWlpZmlmAHZpaWlpaWYATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJY0VFAFBLOUltRHJhd0NtZAA5SW1EcmF3Q21kAEltRHJhd0NtZABFbGVtQ291bnQAQ2xpcFJlY3QAVGV4dHVyZUlkAFA5SW1EcmF3Q21kAEltR3VpTGlzdENsaXBwZXIAU3RhcnRQb3NZAEl0ZW1zSGVpZ2h0AEl0ZW1zQ291bnQAU3RlcE5vAERpc3BsYXlTdGFydABEaXNwbGF5RW5kAFN0ZXAAUDE2SW1HdWlMaXN0Q2xpcHBlcgAxNkltR3VpTGlzdENsaXBwZXIAdmlpaWYAUEsxNkltR3VpTGlzdENsaXBwZXIASW1HdWlTaXplQ2FsbGJhY2tEYXRhAFBvcwBDdXJyZW50U2l6ZQBEZXNpcmVkU2l6ZQBQSzIxSW1HdWlTaXplQ2FsbGJhY2tEYXRhAEltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAEV2ZW50RmxhZwBFdmVudENoYXIARXZlbnRLZXkAQnVmAEJ1ZlRleHRMZW4AQnVmU2l6ZQBCdWZEaXJ0eQBDdXJzb3JQb3MAU2VsZWN0aW9uU3RhcnQAU2VsZWN0aW9uRW5kAERlbGV0ZUNoYXJzAEluc2VydENoYXJzAEhhc1NlbGVjdGlvbgBQSzI2SW1HdWlJbnB1dFRleHRDYWxsYmFja0RhdGEASW1WZWM0AFNldABDb3B5AEVxdWFscwBJbVZlYzIAUDZJbVZlYzIAV3JhcEltR3VpQ29udGV4dABQSzE2V3JhcEltR3VpQ29udGV4dABtYWxsaW5mbwBhcmVuYQBvcmRibGtzAHNtYmxrcwBoYmxrcwBoYmxraGQAdXNtYmxrcwBmc21ibGtzAHVvcmRibGtzAGZvcmRibGtzAGtlZXBjb3N0AHZvaWQAYm9vbABzdGQ6OnN0cmluZwBzdGQ6OmJhc2ljX3N0cmluZzx1bnNpZ25lZCBjaGFyPgBzdGQ6OndzdHJpbmcAZW1zY3JpcHRlbjo6dmFsAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgc2hvcnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgaW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludDE2X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQzMl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZyBkb3VibGU+AE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SWVFRQBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxkb3VibGU+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBsb25nPgBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0ltRUUAZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZz4ATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJbEVFAE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SXRFRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lzRUUATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJYUVFAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGNoYXI+AE5TdDNfXzIxMmJhc2ljX3N0cmluZ0l3TlNfMTFjaGFyX3RyYWl0c0l3RUVOU185YWxsb2NhdG9ySXdFRUVFAE5TdDNfXzIxMmJhc2ljX3N0cmluZ0loTlNfMTFjaGFyX3RyYWl0c0loRUVOU185YWxsb2NhdG9ySWhFRUVFAGRvdWJsZQBmbG9hdAB1bnNpZ25lZCBsb25nAGxvbmcAdW5zaWduZWQgaW50AGludAB1bnNpZ25lZCBzaG9ydABzaG9ydAB1bnNpZ25lZCBjaGFyAHNpZ25lZCBjaGFyAGNoYXIAAAECBAcDBgUALSsgICAwWDB4AChudWxsKQAtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBOQU4ALgBpbmZpbml0eQBuYW4AcndhAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXM6ICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXMAdGVybWluYXRpbmcgd2l0aCAlcyBmb3JlaWduIGV4Y2VwdGlvbgB0ZXJtaW5hdGluZwB1bmNhdWdodABTdDlleGNlcHRpb24ATjEwX19jeHhhYml2MTE2X19zaGltX3R5cGVfaW5mb0UAU3Q5dHlwZV9pbmZvAE4xMF9fY3h4YWJpdjEyMF9fc2lfY2xhc3NfdHlwZV9pbmZvRQBOMTBfX2N4eGFiaXYxMTdfX2NsYXNzX3R5cGVfaW5mb0UAcHRocmVhZF9vbmNlIGZhaWx1cmUgaW4gX19jeGFfZ2V0X2dsb2JhbHNfZmFzdCgpAGNhbm5vdCBjcmVhdGUgcHRocmVhZCBrZXkgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAY2Fubm90IHplcm8gb3V0IHRocmVhZCB2YWx1ZSBmb3IgX19jeGFfZ2V0X2dsb2JhbHMoKQB0ZXJtaW5hdGVfaGFuZGxlciB1bmV4cGVjdGVkbHkgcmV0dXJuZWQAU3QxMWxvZ2ljX2Vycm9yAFN0MTJsZW5ndGhfZXJyb3IATjEwX19jeHhhYml2MTE5X19wb2ludGVyX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19wYmFzZV90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjEyM19fZnVuZGFtZW50YWxfdHlwZV9pbmZvRQB2AFB2AERuAGIAYwBoAGEAcwB0AGkAagBsAG0AZgBkAE4xMF9fY3h4YWJpdjEyMV9fdm1pX2NsYXNzX3R5cGVfaW5mb0U=";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile);}function getBinary(){try{if(Module["wasmBinary"]){return new Uint8Array(Module["wasmBinary"])}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(Module["readBinary"]){return Module["readBinary"](wasmBinaryFile)}else{throw"both async and sync fetching of the wasm failed"}}catch(err){abort(err);}}function getBinaryPromise(){if(!Module["wasmBinary"]&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch==="function"){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()})}return new Promise(function(resolve,reject){resolve(getBinary());})}function createWasm(env){var info={"env":env,"global":{"NaN":NaN,Infinity:Infinity},"global.Math":Math,"asm2wasm":asm2wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;removeRunDependency();}addRunDependency();function receiveInstantiatedSource(output){receiveInstance(output["instance"]);}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason);})}function instantiateAsync(){if(!Module["wasmBinary"]&&typeof WebAssembly.instantiateStreaming==="function"&&!isDataURI(wasmBinaryFile)&&typeof fetch==="function"){return WebAssembly.instantiateStreaming(fetch(wasmBinaryFile,{credentials:"same-origin"}),info).then(receiveInstantiatedSource,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");instantiateArrayBuffer(receiveInstantiatedSource);})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module["instantiateWasm"]){try{return Module["instantiateWasm"](info,receiveInstance)}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}}instantiateAsync();return {}}Module["asm"]=function(global,env,providedBuffer){env["memory"]=wasmMemory;env["table"]=wasmTable=new WebAssembly.Table({"initial":1442,"maximum":1442,"element":"anyfunc"});env["__memory_base"]=1024;env["__table_base"]=0;var exports=createWasm(env);return exports};__ATINIT__.push({func:function(){globalCtors();}});function ___cxa_allocate_exception(size){return _malloc(size)}function ___cxa_throw(ptr,type,destructor){throw ptr}function ___lock(){}var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0;}else{buffer.push(curr);}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get();}};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall145(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();return SYSCALLS.doReadv(stream,iov,iovcnt)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j>2]=value;return value}function ___syscall221(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return -e.errno}}function ___unlock(){}function getShiftFromSize(size){switch(size){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError("Unknown type size: "+size)}}function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<256;++i){codes[i]=String.fromCharCode(i);}embind_charCodes=codes;}var embind_charCodes=undefined;function readLatin1String(ptr){var ret="";var c=ptr;while(HEAPU8[c]){ret+=embind_charCodes[HEAPU8[c++]];}return ret}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return "_unknown"}name=name.replace(/[^a-zA-Z0-9_]/g,"$");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return "_"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return new Function("body","return function "+name+"() {\n"+' "use strict";'+" return body.apply(this, arguments);\n"+"};\n")(body)}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+"\n"+stack.replace(/^Error(:[^\n]*)?\n/,"");}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+": "+this.message}};return errorClass}var BindingError=undefined;function throwBindingError(message){throw new BindingError(message)}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes;});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError("Mismatched type converter count");}for(var i=0;i>shift])},destructorFunction:null});}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass;}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass;}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return {count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+" instance already deleted");}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr);}else{$$.ptrType.registeredClass.rawDestructor($$.ptr);}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$);}}function attachFinalizer(handle){if("undefined"===typeof FinalizationGroup){attachFinalizer=function(handle){return handle};return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn("object already deleted: "+$$.ptr);}else{releaseClassHandle($$);}}});attachFinalizer=function(handle){finalizationGroup.register(handle,handle.$$,handle.$$);return handle};detachFinalizer=function(handle){finalizationGroup.unregister(handle.$$);};return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined;}}function ClassHandle_isDeleted(){return !this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj["delete"]();}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this);}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError("Object already scheduled for deletion");}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes);}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype["isAliasOf"]=ClassHandle_isAliasOf;ClassHandle.prototype["clone"]=ClassHandle_clone;ClassHandle.prototype["delete"]=ClassHandle_delete;ClassHandle.prototype["isDeleted"]=ClassHandle_isDeleted;ClassHandle.prototype["deleteLater"]=ClassHandle_deleteLater;}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError("Function '"+humanName+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+proto[methodName].overloadTable+")!");}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc;}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError("Cannot register public name '"+name+"' twice");}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError("Cannot register multiple overloads of a function with the same number of arguments ("+numArguments+")!");}Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments;}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[];}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError("Expected null or instance of "+desiredClass.name+", got an instance of "+ptrClass.name);}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass;}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr);}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError("Passing raw pointer to smart pointer is illegal");}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{throwBindingError("Cannot convert argument of type "+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+" to parameter type "+this.name);}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr;}else{var clonedHandle=handle["clone"]();ptr=this.rawShare(ptr,__emval_register(function(){clonedHandle["delete"]();}));if(destructors!==null){destructors.push(this.rawDestructor,ptr);}}break;default:throwBindingError("Unsupporting sharing policy");}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError("null is not a valid "+this.name);}return 0}if(!handle.$$){throwBindingError('Cannot pass "'+_embind_repr(handle)+'" as a '+this.name);}if(!handle.$$.ptr){throwBindingError("Cannot pass deleted object as a pointer of type "+this.name);}if(handle.$$.ptrType.isConst){throwBindingError("Cannot convert argument of type "+handle.$$.ptrType.name+" to parameter type "+this.name);}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function simpleReadValueFromPointer(pointer){return this["fromWireType"](HEAPU32[pointer>>2])}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr);}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr);}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle["delete"]();}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k]);}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes);}}function init_embind(){Module["getInheritedInstanceCount"]=getInheritedInstanceCount;Module["getLiveInheritedInstances"]=getLiveInheritedInstances;Module["flushPendingDeletes"]=flushPendingDeletes;Module["setDelayFunction"]=setDelayFunction;}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError("ptr should not be undefined");}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass;}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError("makeClassHandle requires ptr and ptrType");}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError("Both smartPtrType and smartPtr must be specified");}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance["clone"]()}else{var rv=registeredInstance["clone"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType;}else{toType=registeredPointerRecord.pointerType;}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype["argPackAdvance"]=8;RegisteredPointer.prototype["readValueFromPointer"]=simpleReadValueFromPointer;RegisteredPointer.prototype["deleteObject"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype["fromWireType"]=RegisteredPointer_fromWireType;}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this["toWireType"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}else{this["toWireType"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null;}}else{this["toWireType"]=genericPointerToWireType;}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError("Replacing nonexistant public symbol");}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value;}else{Module[name]=value;Module[name].argCount=numArguments;}}function embind__requireFunction(signature,rawFunction){signature=readLatin1String(signature);function makeDynCaller(dynCall){var args=[];for(var i=1;i>2)+i]);}return array}function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr);}}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName="constructor "+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[];}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError("Cannot register multiple constructors with identical number of parameters ("+(argCount-1)+") for class '"+classType.name+"'! Overload resolution is currently only performed using the parameter count, not actual type info!")}classType.registeredClass.constructor_body[argCount-1]=function unboundTypeHandler(){throwUnboundTypeError("Cannot construct "+classType.name+" due to unbound types",rawArgTypes);};whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){classType.registeredClass.constructor_body[argCount-1]=function constructor_body(){if(arguments.length!==argCount-1){throwBindingError(humanName+" called with "+arguments.length+" arguments, expected "+(argCount-1));}var destructors=[];var args=new Array(argCount);args[0]=rawConstructor;for(var i=1;i0?", ":"")+argsListWired;}invokerFnBody+=(returns?"var rv = ":"")+"invoker(fn"+(argsListWired.length>0?", ":"")+argsListWired+");\n";if(needsDestructorStack){invokerFnBody+="runDestructors(destructors);\n";}else{for(var i=isClassMethodFunc?1:2;i4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle);}}function count_emval_handles(){var count=0;for(var i=5;i>2])};case 3:return function(pointer){return this["fromWireType"](HEAPF64[pointer>>3])};default:throw new TypeError("Unknown float type: "+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":function(value){return value},"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}return value},"argPackAdvance":8,"readValueFromPointer":floatReadValueFromPointer(name,shift),destructorFunction:null});}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError("Cannot call "+name+" due to unbound types",argTypes);},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return []});}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError("Unknown integer type: "+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295;}var shift=getShiftFromSize(size);var fromWireType=function(value){return value};if(minRange===0){var bitshift=32-8*size;fromWireType=function(value){return value<>>bitshift};}var isUnsignedType=name.indexOf("unsigned")!=-1;registerType(primitiveType,{name:name,"fromWireType":fromWireType,"toWireType":function(destructors,value){if(typeof value!=="number"&&typeof value!=="boolean"){throw new TypeError('Cannot convert "'+_embind_repr(value)+'" to '+this.name)}if(valuemaxRange){throw new TypeError('Passing a number "'+_embind_repr(value)+'" from JS side to C/C++ side to an argument of type "'+name+'", which is outside the valid range ['+minRange+", "+maxRange+"]!")}return isUnsignedType?value>>>0:value|0},"argPackAdvance":8,"readValueFromPointer":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null});}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(heap["buffer"],data,size)}name=readLatin1String(name);registerType(rawType,{name:name,"fromWireType":decodeMemoryView,"argPackAdvance":8,"readValueFromPointer":decodeMemoryView},{ignoreDuplicateRegistrations:true});}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name==="std::string";registerType(rawType,{name:name,"fromWireType":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var endChar=HEAPU8[value+4+length];var endCharSwap=0;if(endChar!=0){endCharSwap=endChar;HEAPU8[value+4+length]=0;}var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(HEAPU8[currentBytePtr]==0){var stringSegment=UTF8ToString(decodeStartPtr);if(str===undefined)str=stringSegment;else{str+=String.fromCharCode(0);str+=stringSegment;}decodeStartPtr=currentBytePtr+1;}}if(endCharSwap!=0)HEAPU8[value+4+length]=endCharSwap;}else{var a=new Array(length);for(var i=0;i>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1);}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError("String has UTF-16 code units that do not fit in 8 bits");}HEAPU8[ptr+4+i]=charCode;}}else{for(var i=0;i>2];var a=new Array(length);var start=value+4>>shift;for(var i=0;i>2]=length;var start=ptr+4>>shift;for(var i=0;i>2]=rd;return returnType["toWireType"](destructors,handle)}function __emval_lookupTypes(argCount,argTypes,argWireTypes){var a=new Array(argCount);for(var i=0;i>2)+i],"parameter "+i);}return a}function __emval_call(handle,argCount,argTypes,argv){handle=requireHandle(handle);var types=__emval_lookupTypes(argCount,argTypes);var args=new Array(argCount);for(var i=0;i4){emval_handle_array[handle].refcount+=1;}}function __emval_new_array(){return __emval_register([])}function __emval_new_cstring(v){return __emval_register(getStringOrSymbol(v))}function __emval_new_object(){return __emval_register({})}function __emval_run_destructors(handle){var destructors=emval_handle_array[handle].value;runDestructors(destructors);__emval_decref(handle);}function __emval_set_property(handle,key,value){handle=requireHandle(handle);key=requireHandle(key);value=requireHandle(value);handle[key]=value;}function __emval_strictly_equals(first,second){first=requireHandle(first);second=requireHandle(second);return first===second}function __emval_take_value(type,argv){type=requireRegisteredType(type,"_emval_take_value");var v=type["readValueFromPointer"](argv);return __emval_register(v)}function __emval_typeof(handle){handle=requireHandle(handle);return __emval_register(typeof handle)}function _abort(){Module["abort"]();}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest);}function abortOnCannotGrowMemory(requestedSize){abort("OOM");}function _emscripten_resize_heap(requestedSize){abortOnCannotGrowMemory();}embind_init_charCodes();BindingError=Module["BindingError"]=extendError(Error,"BindingError");InternalError=Module["InternalError"]=extendError(Error,"InternalError");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module["UnboundTypeError"]=extendError(Error,"UnboundTypeError");init_emval();function intArrayToString(array){var ret=[];for(var i=0;i255){chr&=255;}ret.push(String.fromCharCode(chr));}return ret.join("")}var decodeBase64=typeof atob==="function"?atob:function(input){var keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2);}if(enc4!==64){output=output+String.fromCharCode(chr3);}}while(i0){return}preRun();if(runDependencies>0)return;if(Module["calledRun"])return;function doRun(){if(Module["calledRun"])return;Module["calledRun"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun();}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("");},1);doRun();},1);}else{doRun();}}Module["run"]=run;function abort(what){if(Module["onAbort"]){Module["onAbort"](what);}if(what!==undefined){out(what);err(what);what=JSON.stringify(what);}else{what="";}ABORT=true;throw"abort("+what+"). Build with -s ASSERTIONS=1 for more info."}Module["abort"]=abort;if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()();}}Module["noExitRuntime"]=true;run(); + + + return Module +} +); +})(); +module.exports = Module; +}); + +let bind; +const IMGUI_VERSION = "1.71"; // bind.IMGUI_VERSION; +// #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert)) +function IMGUI_CHECKVERSION() { return DebugCheckVersionAndDataLayout(IMGUI_VERSION, bind.ImGuiIOSize, bind.ImGuiStyleSize, bind.ImVec2Size, bind.ImVec4Size, bind.ImDrawVertSize, bind.ImDrawIdxSize); } +function IM_ASSERT(_EXPR) { if (!_EXPR) { + throw new Error(); +} } +function IM_ARRAYSIZE(_ARR) { + if (_ARR instanceof ImStringBuffer) { + return _ARR.size; + } + else { + return _ARR.length; + } +} +class ImStringBuffer { + constructor(size, buffer = "") { + this.size = size; + this.buffer = buffer; + } +} +var ImGuiWindowFlags; +(function (ImGuiWindowFlags) { + ImGuiWindowFlags[ImGuiWindowFlags["None"] = 0] = "None"; + ImGuiWindowFlags[ImGuiWindowFlags["NoTitleBar"] = 1] = "NoTitleBar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoResize"] = 2] = "NoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMove"] = 4] = "NoMove"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollbar"] = 8] = "NoScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoScrollWithMouse"] = 16] = "NoScrollWithMouse"; + ImGuiWindowFlags[ImGuiWindowFlags["NoCollapse"] = 32] = "NoCollapse"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysAutoResize"] = 64] = "AlwaysAutoResize"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBackground"] = 128] = "NoBackground"; + ImGuiWindowFlags[ImGuiWindowFlags["NoSavedSettings"] = 256] = "NoSavedSettings"; + ImGuiWindowFlags[ImGuiWindowFlags["NoMouseInputs"] = 512] = "NoMouseInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["MenuBar"] = 1024] = "MenuBar"; + ImGuiWindowFlags[ImGuiWindowFlags["HorizontalScrollbar"] = 2048] = "HorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["NoFocusOnAppearing"] = 4096] = "NoFocusOnAppearing"; + ImGuiWindowFlags[ImGuiWindowFlags["NoBringToFrontOnFocus"] = 8192] = "NoBringToFrontOnFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysVerticalScrollbar"] = 16384] = "AlwaysVerticalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysHorizontalScrollbar"] = 32768] = "AlwaysHorizontalScrollbar"; + ImGuiWindowFlags[ImGuiWindowFlags["AlwaysUseWindowPadding"] = 65536] = "AlwaysUseWindowPadding"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavInputs"] = 262144] = "NoNavInputs"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNavFocus"] = 524288] = "NoNavFocus"; + ImGuiWindowFlags[ImGuiWindowFlags["UnsavedDocument"] = 1048576] = "UnsavedDocument"; + ImGuiWindowFlags[ImGuiWindowFlags["NoNav"] = 786432] = "NoNav"; + ImGuiWindowFlags[ImGuiWindowFlags["NoDecoration"] = 43] = "NoDecoration"; + ImGuiWindowFlags[ImGuiWindowFlags["NoInputs"] = 786944] = "NoInputs"; + // [Internal] + ImGuiWindowFlags[ImGuiWindowFlags["NavFlattened"] = 8388608] = "NavFlattened"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildWindow"] = 16777216] = "ChildWindow"; + ImGuiWindowFlags[ImGuiWindowFlags["Tooltip"] = 33554432] = "Tooltip"; + ImGuiWindowFlags[ImGuiWindowFlags["Popup"] = 67108864] = "Popup"; + ImGuiWindowFlags[ImGuiWindowFlags["Modal"] = 134217728] = "Modal"; + ImGuiWindowFlags[ImGuiWindowFlags["ChildMenu"] = 268435456] = "ChildMenu"; +})(ImGuiWindowFlags || (ImGuiWindowFlags = {})); +var ImGuiInputTextFlags; +(function (ImGuiInputTextFlags) { + ImGuiInputTextFlags[ImGuiInputTextFlags["None"] = 0] = "None"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsDecimal"] = 1] = "CharsDecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsHexadecimal"] = 2] = "CharsHexadecimal"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsUppercase"] = 4] = "CharsUppercase"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsNoBlank"] = 8] = "CharsNoBlank"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AutoSelectAll"] = 16] = "AutoSelectAll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["EnterReturnsTrue"] = 32] = "EnterReturnsTrue"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCompletion"] = 64] = "CallbackCompletion"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackHistory"] = 128] = "CallbackHistory"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackAlways"] = 256] = "CallbackAlways"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackCharFilter"] = 512] = "CallbackCharFilter"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AllowTabInput"] = 1024] = "AllowTabInput"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CtrlEnterForNewLine"] = 2048] = "CtrlEnterForNewLine"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoHorizontalScroll"] = 4096] = "NoHorizontalScroll"; + ImGuiInputTextFlags[ImGuiInputTextFlags["AlwaysInsertMode"] = 8192] = "AlwaysInsertMode"; + ImGuiInputTextFlags[ImGuiInputTextFlags["ReadOnly"] = 16384] = "ReadOnly"; + ImGuiInputTextFlags[ImGuiInputTextFlags["Password"] = 32768] = "Password"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoUndoRedo"] = 65536] = "NoUndoRedo"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CharsScientific"] = 131072] = "CharsScientific"; + ImGuiInputTextFlags[ImGuiInputTextFlags["CallbackResize"] = 262144] = "CallbackResize"; + // [Internal] + ImGuiInputTextFlags[ImGuiInputTextFlags["Multiline"] = 1048576] = "Multiline"; + ImGuiInputTextFlags[ImGuiInputTextFlags["NoMarkEdited"] = 2097152] = "NoMarkEdited"; +})(ImGuiInputTextFlags || (ImGuiInputTextFlags = {})); +var ImGuiTreeNodeFlags; +(function (ImGuiTreeNodeFlags) { + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["None"] = 0] = "None"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Selected"] = 1] = "Selected"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Framed"] = 2] = "Framed"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["AllowItemOverlap"] = 4] = "AllowItemOverlap"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoTreePushOnOpen"] = 8] = "NoTreePushOnOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NoAutoOpenOnLog"] = 16] = "NoAutoOpenOnLog"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["DefaultOpen"] = 32] = "DefaultOpen"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnDoubleClick"] = 64] = "OpenOnDoubleClick"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["OpenOnArrow"] = 128] = "OpenOnArrow"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Leaf"] = 256] = "Leaf"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["Bullet"] = 512] = "Bullet"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["FramePadding"] = 1024] = "FramePadding"; + //SpanAllAvailWidth = 1 << 11, // FIXME: TODO: Extend hit box horizontally even if not framed + //NoScrollOnOpen = 1 << 12, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["NavLeftJumpsBackHere"] = 8192] = "NavLeftJumpsBackHere"; + ImGuiTreeNodeFlags[ImGuiTreeNodeFlags["CollapsingHeader"] = 26] = "CollapsingHeader"; +})(ImGuiTreeNodeFlags || (ImGuiTreeNodeFlags = {})); +var ImGuiSelectableFlags; +(function (ImGuiSelectableFlags) { + ImGuiSelectableFlags[ImGuiSelectableFlags["None"] = 0] = "None"; + ImGuiSelectableFlags[ImGuiSelectableFlags["DontClosePopups"] = 1] = "DontClosePopups"; + ImGuiSelectableFlags[ImGuiSelectableFlags["SpanAllColumns"] = 2] = "SpanAllColumns"; + ImGuiSelectableFlags[ImGuiSelectableFlags["AllowDoubleClick"] = 4] = "AllowDoubleClick"; + ImGuiSelectableFlags[ImGuiSelectableFlags["Disabled"] = 8] = "Disabled"; // Cannot be selected, display greyed out text +})(ImGuiSelectableFlags || (ImGuiSelectableFlags = {})); +var ImGuiComboFlags; +(function (ImGuiComboFlags) { + ImGuiComboFlags[ImGuiComboFlags["None"] = 0] = "None"; + ImGuiComboFlags[ImGuiComboFlags["PopupAlignLeft"] = 1] = "PopupAlignLeft"; + ImGuiComboFlags[ImGuiComboFlags["HeightSmall"] = 2] = "HeightSmall"; + ImGuiComboFlags[ImGuiComboFlags["HeightRegular"] = 4] = "HeightRegular"; + ImGuiComboFlags[ImGuiComboFlags["HeightLarge"] = 8] = "HeightLarge"; + ImGuiComboFlags[ImGuiComboFlags["HeightLargest"] = 16] = "HeightLargest"; + ImGuiComboFlags[ImGuiComboFlags["NoArrowButton"] = 32] = "NoArrowButton"; + ImGuiComboFlags[ImGuiComboFlags["NoPreview"] = 64] = "NoPreview"; + ImGuiComboFlags[ImGuiComboFlags["HeightMask_"] = 30] = "HeightMask_"; +})(ImGuiComboFlags || (ImGuiComboFlags = {})); +var ImGuiTabBarFlags; +(function (ImGuiTabBarFlags) { + ImGuiTabBarFlags[ImGuiTabBarFlags["None"] = 0] = "None"; + ImGuiTabBarFlags[ImGuiTabBarFlags["Reorderable"] = 1] = "Reorderable"; + ImGuiTabBarFlags[ImGuiTabBarFlags["AutoSelectNewTabs"] = 2] = "AutoSelectNewTabs"; + ImGuiTabBarFlags[ImGuiTabBarFlags["TabListPopupButton"] = 4] = "TabListPopupButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoCloseWithMiddleMouseButton"] = 8] = "NoCloseWithMiddleMouseButton"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTabListScrollingButtons"] = 16] = "NoTabListScrollingButtons"; + ImGuiTabBarFlags[ImGuiTabBarFlags["NoTooltip"] = 32] = "NoTooltip"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyResizeDown"] = 64] = "FittingPolicyResizeDown"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyScroll"] = 128] = "FittingPolicyScroll"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyMask_"] = 192] = "FittingPolicyMask_"; + ImGuiTabBarFlags[ImGuiTabBarFlags["FittingPolicyDefault_"] = 64] = "FittingPolicyDefault_"; +})(ImGuiTabBarFlags || (ImGuiTabBarFlags = {})); +var ImGuiTabItemFlags; +(function (ImGuiTabItemFlags) { + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_None"] = 0] = "ImGuiTabItemFlags_None"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_UnsavedDocument"] = 1] = "ImGuiTabItemFlags_UnsavedDocument"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_SetSelected"] = 2] = "ImGuiTabItemFlags_SetSelected"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"] = 4] = "ImGuiTabItemFlags_NoCloseWithMiddleMouseButton"; + ImGuiTabItemFlags[ImGuiTabItemFlags["ImGuiTabItemFlags_NoPushId"] = 8] = "ImGuiTabItemFlags_NoPushId"; // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem() +})(ImGuiTabItemFlags || (ImGuiTabItemFlags = {})); +var ImGuiFocusedFlags; +(function (ImGuiFocusedFlags) { + ImGuiFocusedFlags[ImGuiFocusedFlags["None"] = 0] = "None"; + ImGuiFocusedFlags[ImGuiFocusedFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiFocusedFlags[ImGuiFocusedFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiFocusedFlags || (ImGuiFocusedFlags = {})); +var ImGuiHoveredFlags; +(function (ImGuiHoveredFlags) { + ImGuiHoveredFlags[ImGuiHoveredFlags["None"] = 0] = "None"; + ImGuiHoveredFlags[ImGuiHoveredFlags["ChildWindows"] = 1] = "ChildWindows"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootWindow"] = 2] = "RootWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AnyWindow"] = 4] = "AnyWindow"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByPopup"] = 8] = "AllowWhenBlockedByPopup"; + //AllowWhenBlockedByModal = 1 << 4, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet. + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenBlockedByActiveItem"] = 32] = "AllowWhenBlockedByActiveItem"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenOverlapped"] = 64] = "AllowWhenOverlapped"; + ImGuiHoveredFlags[ImGuiHoveredFlags["AllowWhenDisabled"] = 128] = "AllowWhenDisabled"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RectOnly"] = 104] = "RectOnly"; + ImGuiHoveredFlags[ImGuiHoveredFlags["RootAndChildWindows"] = 3] = "RootAndChildWindows"; +})(ImGuiHoveredFlags || (ImGuiHoveredFlags = {})); +var ImGuiDragDropFlags; +(function (ImGuiDragDropFlags) { + // BeginDragDropSource() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["None"] = 0] = "None"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoPreviewTooltip"] = 1] = "SourceNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoDisableHover"] = 2] = "SourceNoDisableHover"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceNoHoldToOpenOthers"] = 4] = "SourceNoHoldToOpenOthers"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAllowNullID"] = 8] = "SourceAllowNullID"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceExtern"] = 16] = "SourceExtern"; + ImGuiDragDropFlags[ImGuiDragDropFlags["SourceAutoExpirePayload"] = 32] = "SourceAutoExpirePayload"; + // AcceptDragDropPayload() flags + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptBeforeDelivery"] = 1024] = "AcceptBeforeDelivery"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoDrawDefaultRect"] = 2048] = "AcceptNoDrawDefaultRect"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptNoPreviewTooltip"] = 4096] = "AcceptNoPreviewTooltip"; + ImGuiDragDropFlags[ImGuiDragDropFlags["AcceptPeekOnly"] = 3072] = "AcceptPeekOnly"; +})(ImGuiDragDropFlags || (ImGuiDragDropFlags = {})); +var ImGuiDataType; +(function (ImGuiDataType) { + ImGuiDataType[ImGuiDataType["S8"] = 0] = "S8"; + ImGuiDataType[ImGuiDataType["U8"] = 1] = "U8"; + ImGuiDataType[ImGuiDataType["S16"] = 2] = "S16"; + ImGuiDataType[ImGuiDataType["U16"] = 3] = "U16"; + ImGuiDataType[ImGuiDataType["S32"] = 4] = "S32"; + ImGuiDataType[ImGuiDataType["U32"] = 5] = "U32"; + ImGuiDataType[ImGuiDataType["S64"] = 6] = "S64"; + ImGuiDataType[ImGuiDataType["U64"] = 7] = "U64"; + ImGuiDataType[ImGuiDataType["Float"] = 8] = "Float"; + ImGuiDataType[ImGuiDataType["Double"] = 9] = "Double"; + ImGuiDataType[ImGuiDataType["COUNT"] = 10] = "COUNT"; +})(ImGuiDataType || (ImGuiDataType = {})); +var ImGuiDir; +(function (ImGuiDir) { + ImGuiDir[ImGuiDir["None"] = -1] = "None"; + ImGuiDir[ImGuiDir["Left"] = 0] = "Left"; + ImGuiDir[ImGuiDir["Right"] = 1] = "Right"; + ImGuiDir[ImGuiDir["Up"] = 2] = "Up"; + ImGuiDir[ImGuiDir["Down"] = 3] = "Down"; + ImGuiDir[ImGuiDir["COUNT"] = 4] = "COUNT"; +})(ImGuiDir || (ImGuiDir = {})); +var ImGuiKey; +(function (ImGuiKey) { + ImGuiKey[ImGuiKey["Tab"] = 0] = "Tab"; + ImGuiKey[ImGuiKey["LeftArrow"] = 1] = "LeftArrow"; + ImGuiKey[ImGuiKey["RightArrow"] = 2] = "RightArrow"; + ImGuiKey[ImGuiKey["UpArrow"] = 3] = "UpArrow"; + ImGuiKey[ImGuiKey["DownArrow"] = 4] = "DownArrow"; + ImGuiKey[ImGuiKey["PageUp"] = 5] = "PageUp"; + ImGuiKey[ImGuiKey["PageDown"] = 6] = "PageDown"; + ImGuiKey[ImGuiKey["Home"] = 7] = "Home"; + ImGuiKey[ImGuiKey["End"] = 8] = "End"; + ImGuiKey[ImGuiKey["Insert"] = 9] = "Insert"; + ImGuiKey[ImGuiKey["Delete"] = 10] = "Delete"; + ImGuiKey[ImGuiKey["Backspace"] = 11] = "Backspace"; + ImGuiKey[ImGuiKey["Space"] = 12] = "Space"; + ImGuiKey[ImGuiKey["Enter"] = 13] = "Enter"; + ImGuiKey[ImGuiKey["Escape"] = 14] = "Escape"; + ImGuiKey[ImGuiKey["A"] = 15] = "A"; + ImGuiKey[ImGuiKey["C"] = 16] = "C"; + ImGuiKey[ImGuiKey["V"] = 17] = "V"; + ImGuiKey[ImGuiKey["X"] = 18] = "X"; + ImGuiKey[ImGuiKey["Y"] = 19] = "Y"; + ImGuiKey[ImGuiKey["Z"] = 20] = "Z"; + ImGuiKey[ImGuiKey["COUNT"] = 21] = "COUNT"; +})(ImGuiKey || (ImGuiKey = {})); +var ImGuiNavInput; +(function (ImGuiNavInput) { + // Gamepad Mapping + ImGuiNavInput[ImGuiNavInput["Activate"] = 0] = "Activate"; + ImGuiNavInput[ImGuiNavInput["Cancel"] = 1] = "Cancel"; + ImGuiNavInput[ImGuiNavInput["Input"] = 2] = "Input"; + ImGuiNavInput[ImGuiNavInput["Menu"] = 3] = "Menu"; + ImGuiNavInput[ImGuiNavInput["DpadLeft"] = 4] = "DpadLeft"; + ImGuiNavInput[ImGuiNavInput["DpadRight"] = 5] = "DpadRight"; + ImGuiNavInput[ImGuiNavInput["DpadUp"] = 6] = "DpadUp"; + ImGuiNavInput[ImGuiNavInput["DpadDown"] = 7] = "DpadDown"; + ImGuiNavInput[ImGuiNavInput["LStickLeft"] = 8] = "LStickLeft"; + ImGuiNavInput[ImGuiNavInput["LStickRight"] = 9] = "LStickRight"; + ImGuiNavInput[ImGuiNavInput["LStickUp"] = 10] = "LStickUp"; + ImGuiNavInput[ImGuiNavInput["LStickDown"] = 11] = "LStickDown"; + ImGuiNavInput[ImGuiNavInput["FocusPrev"] = 12] = "FocusPrev"; + ImGuiNavInput[ImGuiNavInput["FocusNext"] = 13] = "FocusNext"; + ImGuiNavInput[ImGuiNavInput["TweakSlow"] = 14] = "TweakSlow"; + ImGuiNavInput[ImGuiNavInput["TweakFast"] = 15] = "TweakFast"; + // [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them. + // Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) may be directly reading from io.KeyDown[] instead of io.NavInputs[]. + ImGuiNavInput[ImGuiNavInput["KeyMenu_"] = 16] = "KeyMenu_"; + ImGuiNavInput[ImGuiNavInput["KeyTab_"] = 17] = "KeyTab_"; + ImGuiNavInput[ImGuiNavInput["KeyLeft_"] = 18] = "KeyLeft_"; + ImGuiNavInput[ImGuiNavInput["KeyRight_"] = 19] = "KeyRight_"; + ImGuiNavInput[ImGuiNavInput["KeyUp_"] = 20] = "KeyUp_"; + ImGuiNavInput[ImGuiNavInput["KeyDown_"] = 21] = "KeyDown_"; + ImGuiNavInput[ImGuiNavInput["COUNT"] = 22] = "COUNT"; + ImGuiNavInput[ImGuiNavInput["InternalStart_"] = 16] = "InternalStart_"; +})(ImGuiNavInput || (ImGuiNavInput = {})); +var ImGuiConfigFlags; +(function (ImGuiConfigFlags) { + ImGuiConfigFlags[ImGuiConfigFlags["None"] = 0] = "None"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableKeyboard"] = 1] = "NavEnableKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableGamepad"] = 2] = "NavEnableGamepad"; + ImGuiConfigFlags[ImGuiConfigFlags["NavEnableSetMousePos"] = 4] = "NavEnableSetMousePos"; + ImGuiConfigFlags[ImGuiConfigFlags["NavNoCaptureKeyboard"] = 8] = "NavNoCaptureKeyboard"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouse"] = 16] = "NoMouse"; + ImGuiConfigFlags[ImGuiConfigFlags["NoMouseCursorChange"] = 32] = "NoMouseCursorChange"; + ImGuiConfigFlags[ImGuiConfigFlags["IsSRGB"] = 1048576] = "IsSRGB"; + ImGuiConfigFlags[ImGuiConfigFlags["IsTouchScreen"] = 2097152] = "IsTouchScreen"; // Application is using a touch screen instead of a mouse. +})(ImGuiConfigFlags || (ImGuiConfigFlags = {})); +var ImGuiCol; +(function (ImGuiCol) { + ImGuiCol[ImGuiCol["Text"] = 0] = "Text"; + ImGuiCol[ImGuiCol["TextDisabled"] = 1] = "TextDisabled"; + ImGuiCol[ImGuiCol["WindowBg"] = 2] = "WindowBg"; + ImGuiCol[ImGuiCol["ChildBg"] = 3] = "ChildBg"; + ImGuiCol[ImGuiCol["PopupBg"] = 4] = "PopupBg"; + ImGuiCol[ImGuiCol["Border"] = 5] = "Border"; + ImGuiCol[ImGuiCol["BorderShadow"] = 6] = "BorderShadow"; + ImGuiCol[ImGuiCol["FrameBg"] = 7] = "FrameBg"; + ImGuiCol[ImGuiCol["FrameBgHovered"] = 8] = "FrameBgHovered"; + ImGuiCol[ImGuiCol["FrameBgActive"] = 9] = "FrameBgActive"; + ImGuiCol[ImGuiCol["TitleBg"] = 10] = "TitleBg"; + ImGuiCol[ImGuiCol["TitleBgActive"] = 11] = "TitleBgActive"; + ImGuiCol[ImGuiCol["TitleBgCollapsed"] = 12] = "TitleBgCollapsed"; + ImGuiCol[ImGuiCol["MenuBarBg"] = 13] = "MenuBarBg"; + ImGuiCol[ImGuiCol["ScrollbarBg"] = 14] = "ScrollbarBg"; + ImGuiCol[ImGuiCol["ScrollbarGrab"] = 15] = "ScrollbarGrab"; + ImGuiCol[ImGuiCol["ScrollbarGrabHovered"] = 16] = "ScrollbarGrabHovered"; + ImGuiCol[ImGuiCol["ScrollbarGrabActive"] = 17] = "ScrollbarGrabActive"; + ImGuiCol[ImGuiCol["CheckMark"] = 18] = "CheckMark"; + ImGuiCol[ImGuiCol["SliderGrab"] = 19] = "SliderGrab"; + ImGuiCol[ImGuiCol["SliderGrabActive"] = 20] = "SliderGrabActive"; + ImGuiCol[ImGuiCol["Button"] = 21] = "Button"; + ImGuiCol[ImGuiCol["ButtonHovered"] = 22] = "ButtonHovered"; + ImGuiCol[ImGuiCol["ButtonActive"] = 23] = "ButtonActive"; + ImGuiCol[ImGuiCol["Header"] = 24] = "Header"; + ImGuiCol[ImGuiCol["HeaderHovered"] = 25] = "HeaderHovered"; + ImGuiCol[ImGuiCol["HeaderActive"] = 26] = "HeaderActive"; + ImGuiCol[ImGuiCol["Separator"] = 27] = "Separator"; + ImGuiCol[ImGuiCol["SeparatorHovered"] = 28] = "SeparatorHovered"; + ImGuiCol[ImGuiCol["SeparatorActive"] = 29] = "SeparatorActive"; + ImGuiCol[ImGuiCol["ResizeGrip"] = 30] = "ResizeGrip"; + ImGuiCol[ImGuiCol["ResizeGripHovered"] = 31] = "ResizeGripHovered"; + ImGuiCol[ImGuiCol["ResizeGripActive"] = 32] = "ResizeGripActive"; + ImGuiCol[ImGuiCol["Tab"] = 33] = "Tab"; + ImGuiCol[ImGuiCol["TabHovered"] = 34] = "TabHovered"; + ImGuiCol[ImGuiCol["TabActive"] = 35] = "TabActive"; + ImGuiCol[ImGuiCol["TabUnfocused"] = 36] = "TabUnfocused"; + ImGuiCol[ImGuiCol["TabUnfocusedActive"] = 37] = "TabUnfocusedActive"; + ImGuiCol[ImGuiCol["PlotLines"] = 38] = "PlotLines"; + ImGuiCol[ImGuiCol["PlotLinesHovered"] = 39] = "PlotLinesHovered"; + ImGuiCol[ImGuiCol["PlotHistogram"] = 40] = "PlotHistogram"; + ImGuiCol[ImGuiCol["PlotHistogramHovered"] = 41] = "PlotHistogramHovered"; + ImGuiCol[ImGuiCol["TextSelectedBg"] = 42] = "TextSelectedBg"; + ImGuiCol[ImGuiCol["DragDropTarget"] = 43] = "DragDropTarget"; + ImGuiCol[ImGuiCol["NavHighlight"] = 44] = "NavHighlight"; + ImGuiCol[ImGuiCol["NavWindowingHighlight"] = 45] = "NavWindowingHighlight"; + ImGuiCol[ImGuiCol["NavWindowingDimBg"] = 46] = "NavWindowingDimBg"; + ImGuiCol[ImGuiCol["ModalWindowDimBg"] = 47] = "ModalWindowDimBg"; + ImGuiCol[ImGuiCol["COUNT"] = 48] = "COUNT"; +})(ImGuiCol || (ImGuiCol = {})); +var ImGuiStyleVar; +(function (ImGuiStyleVar) { + // Enum name ......................// Member in ImGuiStyle structure (see ImGuiStyle for descriptions) + ImGuiStyleVar[ImGuiStyleVar["Alpha"] = 0] = "Alpha"; + ImGuiStyleVar[ImGuiStyleVar["WindowPadding"] = 1] = "WindowPadding"; + ImGuiStyleVar[ImGuiStyleVar["WindowRounding"] = 2] = "WindowRounding"; + ImGuiStyleVar[ImGuiStyleVar["WindowBorderSize"] = 3] = "WindowBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowMinSize"] = 4] = "WindowMinSize"; + ImGuiStyleVar[ImGuiStyleVar["WindowTitleAlign"] = 5] = "WindowTitleAlign"; + // WindowMenuButtonPosition, // ImGuiDir WindowMenuButtonPosition + ImGuiStyleVar[ImGuiStyleVar["ChildRounding"] = 6] = "ChildRounding"; + ImGuiStyleVar[ImGuiStyleVar["ChildBorderSize"] = 7] = "ChildBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["PopupRounding"] = 8] = "PopupRounding"; + ImGuiStyleVar[ImGuiStyleVar["PopupBorderSize"] = 9] = "PopupBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["FramePadding"] = 10] = "FramePadding"; + ImGuiStyleVar[ImGuiStyleVar["FrameRounding"] = 11] = "FrameRounding"; + ImGuiStyleVar[ImGuiStyleVar["FrameBorderSize"] = 12] = "FrameBorderSize"; + ImGuiStyleVar[ImGuiStyleVar["ItemSpacing"] = 13] = "ItemSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ItemInnerSpacing"] = 14] = "ItemInnerSpacing"; + ImGuiStyleVar[ImGuiStyleVar["IndentSpacing"] = 15] = "IndentSpacing"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarSize"] = 16] = "ScrollbarSize"; + ImGuiStyleVar[ImGuiStyleVar["ScrollbarRounding"] = 17] = "ScrollbarRounding"; + ImGuiStyleVar[ImGuiStyleVar["GrabMinSize"] = 18] = "GrabMinSize"; + ImGuiStyleVar[ImGuiStyleVar["GrabRounding"] = 19] = "GrabRounding"; + ImGuiStyleVar[ImGuiStyleVar["TabRounding"] = 20] = "TabRounding"; + ImGuiStyleVar[ImGuiStyleVar["ButtonTextAlign"] = 21] = "ButtonTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["SelectableTextAlign"] = 22] = "SelectableTextAlign"; + ImGuiStyleVar[ImGuiStyleVar["Count_"] = 23] = "Count_"; + ImGuiStyleVar[ImGuiStyleVar["COUNT"] = 23] = "COUNT"; +})(ImGuiStyleVar || (ImGuiStyleVar = {})); +var ImGuiBackendFlags; +(function (ImGuiBackendFlags) { + ImGuiBackendFlags[ImGuiBackendFlags["None"] = 0] = "None"; + ImGuiBackendFlags[ImGuiBackendFlags["HasGamepad"] = 1] = "HasGamepad"; + ImGuiBackendFlags[ImGuiBackendFlags["HasMouseCursors"] = 2] = "HasMouseCursors"; + ImGuiBackendFlags[ImGuiBackendFlags["HasSetMousePos"] = 4] = "HasSetMousePos"; + ImGuiBackendFlags[ImGuiBackendFlags["RendererHasVtxOffset"] = 8] = "RendererHasVtxOffset"; +})(ImGuiBackendFlags || (ImGuiBackendFlags = {})); +var ImGuiColorEditFlags; +(function (ImGuiColorEditFlags) { + ImGuiColorEditFlags[ImGuiColorEditFlags["None"] = 0] = "None"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoAlpha"] = 2] = "NoAlpha"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoPicker"] = 4] = "NoPicker"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoOptions"] = 8] = "NoOptions"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSmallPreview"] = 16] = "NoSmallPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoInputs"] = 32] = "NoInputs"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoTooltip"] = 64] = "NoTooltip"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoLabel"] = 128] = "NoLabel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoSidePreview"] = 256] = "NoSidePreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["NoDragDrop"] = 512] = "NoDragDrop"; + // User Options (right-click on widget to change some of them). You can set application defaults using SetColorEditOptions(). The idea is that you probably don't want to override them in most of your calls, let the user choose and/or call SetColorEditOptions() during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaBar"] = 65536] = "AlphaBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreview"] = 131072] = "AlphaPreview"; + ImGuiColorEditFlags[ImGuiColorEditFlags["AlphaPreviewHalf"] = 262144] = "AlphaPreviewHalf"; + ImGuiColorEditFlags[ImGuiColorEditFlags["HDR"] = 524288] = "HDR"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayRGB"] = 1048576] = "DisplayRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHSV"] = 2097152] = "DisplayHSV"; + ImGuiColorEditFlags[ImGuiColorEditFlags["DisplayHex"] = 4194304] = "DisplayHex"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Uint8"] = 8388608] = "Uint8"; + ImGuiColorEditFlags[ImGuiColorEditFlags["Float"] = 16777216] = "Float"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueBar"] = 33554432] = "PickerHueBar"; + ImGuiColorEditFlags[ImGuiColorEditFlags["PickerHueWheel"] = 67108864] = "PickerHueWheel"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputRGB"] = 134217728] = "InputRGB"; + ImGuiColorEditFlags[ImGuiColorEditFlags["InputHSV"] = 268435456] = "InputHSV"; + // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to + // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup. + ImGuiColorEditFlags[ImGuiColorEditFlags["_OptionsDefault"] = 177209344] = "_OptionsDefault"; + // [Internal] Masks + ImGuiColorEditFlags[ImGuiColorEditFlags["_DisplayMask"] = 7340032] = "_DisplayMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_DataTypeMask"] = 25165824] = "_DataTypeMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_PickerMask"] = 100663296] = "_PickerMask"; + ImGuiColorEditFlags[ImGuiColorEditFlags["_InputMask"] = 402653184] = "_InputMask"; +})(ImGuiColorEditFlags || (ImGuiColorEditFlags = {})); +var ImGuiMouseCursor; +(function (ImGuiMouseCursor) { + ImGuiMouseCursor[ImGuiMouseCursor["None"] = -1] = "None"; + ImGuiMouseCursor[ImGuiMouseCursor["Arrow"] = 0] = "Arrow"; + ImGuiMouseCursor[ImGuiMouseCursor["TextInput"] = 1] = "TextInput"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeAll"] = 2] = "ResizeAll"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNS"] = 3] = "ResizeNS"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeEW"] = 4] = "ResizeEW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNESW"] = 5] = "ResizeNESW"; + ImGuiMouseCursor[ImGuiMouseCursor["ResizeNWSE"] = 6] = "ResizeNWSE"; + ImGuiMouseCursor[ImGuiMouseCursor["Hand"] = 7] = "Hand"; + ImGuiMouseCursor[ImGuiMouseCursor["Count_"] = 8] = "Count_"; + ImGuiMouseCursor[ImGuiMouseCursor["COUNT"] = 8] = "COUNT"; +})(ImGuiMouseCursor || (ImGuiMouseCursor = {})); +var ImGuiCond; +(function (ImGuiCond) { + ImGuiCond[ImGuiCond["Always"] = 1] = "Always"; + ImGuiCond[ImGuiCond["Once"] = 2] = "Once"; + ImGuiCond[ImGuiCond["FirstUseEver"] = 4] = "FirstUseEver"; + ImGuiCond[ImGuiCond["Appearing"] = 8] = "Appearing"; +})(ImGuiCond || (ImGuiCond = {})); +var ImDrawCornerFlags; +(function (ImDrawCornerFlags) { + ImDrawCornerFlags[ImDrawCornerFlags["TopLeft"] = 1] = "TopLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["TopRight"] = 2] = "TopRight"; + ImDrawCornerFlags[ImDrawCornerFlags["BotLeft"] = 4] = "BotLeft"; + ImDrawCornerFlags[ImDrawCornerFlags["BotRight"] = 8] = "BotRight"; + ImDrawCornerFlags[ImDrawCornerFlags["Top"] = 3] = "Top"; + ImDrawCornerFlags[ImDrawCornerFlags["Bot"] = 12] = "Bot"; + ImDrawCornerFlags[ImDrawCornerFlags["Left"] = 5] = "Left"; + ImDrawCornerFlags[ImDrawCornerFlags["Right"] = 10] = "Right"; + ImDrawCornerFlags[ImDrawCornerFlags["All"] = 15] = "All"; +})(ImDrawCornerFlags || (ImDrawCornerFlags = {})); +var ImDrawListFlags; +(function (ImDrawListFlags) { + ImDrawListFlags[ImDrawListFlags["None"] = 0] = "None"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedLines"] = 1] = "AntiAliasedLines"; + ImDrawListFlags[ImDrawListFlags["AntiAliasedFill"] = 2] = "AntiAliasedFill"; +})(ImDrawListFlags || (ImDrawListFlags = {})); +class ImVec2 { + constructor(x = 0.0, y = 0.0) { + this.x = x; + this.y = y; + } + Set(x, y) { + this.x = x; + this.y = y; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + return true; + } +} +ImVec2.ZERO = new ImVec2(0.0, 0.0); +ImVec2.UNIT = new ImVec2(1.0, 1.0); +ImVec2.UNIT_X = new ImVec2(1.0, 0.0); +ImVec2.UNIT_Y = new ImVec2(0.0, 1.0); +class ImVec4 { + constructor(x = 0.0, y = 0.0, z = 0.0, w = 1.0) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + } + Set(x, y, z, w) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + return this; + } + Copy(other) { + this.x = other.x; + this.y = other.y; + this.z = other.z; + this.w = other.w; + return this; + } + Equals(other) { + if (this.x !== other.x) { + return false; + } + if (this.y !== other.y) { + return false; + } + if (this.z !== other.z) { + return false; + } + if (this.w !== other.w) { + return false; + } + return true; + } +} +ImVec4.ZERO = new ImVec4(0.0, 0.0, 0.0, 0.0); +ImVec4.UNIT = new ImVec4(1.0, 1.0, 1.0, 1.0); +ImVec4.UNIT_X = new ImVec4(1.0, 0.0, 0.0, 0.0); +ImVec4.UNIT_Y = new ImVec4(0.0, 1.0, 0.0, 0.0); +ImVec4.UNIT_Z = new ImVec4(0.0, 0.0, 1.0, 0.0); +ImVec4.UNIT_W = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.BLACK = new ImVec4(0.0, 0.0, 0.0, 1.0); +ImVec4.WHITE = new ImVec4(1.0, 1.0, 1.0, 1.0); +//----------------------------------------------------------------------------- +// Helpers +//----------------------------------------------------------------------------- +// Lightweight std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug). +// Our implementation does NOT call C++ constructors/destructors. This is intentional and we do not require it. Do not use this class as a straight std::vector replacement in your code! +class ImVector extends Array { + constructor() { + super(...arguments); + this.Data = this; + // public: + // int Size; + // int Capacity; + // T* Data; + // typedef T value_type; + // typedef value_type* iterator; + // typedef const value_type* const_iterator; + // inline ImVector() { Size = Capacity = 0; Data = NULL; } + // inline ~ImVector() { if (Data) ImGui::MemFree(Data); } + // inline bool empty() const { return Size == 0; } + // inline int size() const { return Size; } + // inline int capacity() const { return Capacity; } + // inline value_type& operator[](int i) { IM_ASSERT(i < Size); return Data[i]; } + // inline const value_type& operator[](int i) const { IM_ASSERT(i < Size); return Data[i]; } + // inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } } + // inline iterator begin() { return Data; } + // inline const_iterator begin() const { return Data; } + // inline iterator end() { return Data + Size; } + // inline const_iterator end() const { return Data + Size; } + // inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; } + // inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; } + // inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; } + // inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; } + // inline int _grow_capacity(int size) const { int new_capacity = Capacity ? (Capacity + Capacity/2) : 8; return new_capacity > size ? new_capacity : size; } + // inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; } + // inline void resize(int new_size, const T& v){ if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) Data[n] = v; Size = new_size; } + // inline void reserve(int new_capacity) + // { + // if (new_capacity <= Capacity) + // return; + // T* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T)); + // if (Data) + // memcpy(new_data, Data, (size_t)Size * sizeof(T)); + // ImGui::MemFree(Data); + // Data = new_data; + // Capacity = new_capacity; + // } + // inline void push_back(const value_type& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); Data[Size++] = v; } + // inline void pop_back() { IM_ASSERT(Size > 0); Size--; } + // inline void push_front(const value_type& v) { if (Size == 0) push_back(v); else insert(Data, v); } + // inline iterator erase(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; } + // inline iterator erase(const_iterator it, const_iterator it_last){ IM_ASSERT(it >= Data && it < Data+Size && it_last > it && it_last <= Data+Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - count) * sizeof(value_type)); Size -= (int)count; return Data + off; } + // inline iterator erase_unsorted(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; if (it < Data+Size-1) memcpy(Data + off, Data + Size - 1, sizeof(value_type)); Size--; return Data + off; } + // inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= Data && it <= Data+Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; } + // inline bool contains(const value_type& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; } + } + get Size() { return this.length; } + empty() { return this.length === 0; } + clear() { this.length = 0; } + pop_back() { return this.pop(); } + push_back(value) { this.push(value); } +} +// Typically, 1 command = 1 GPU draw call (unless command is a callback) +// Pre 1.71 back-ends will typically ignore the VtxOffset/IdxOffset fields. When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset' +// is enabled, those fields allow us to render meshes larger than 64K vertices while keeping 16-bits indices. +class ImDrawCmd { + constructor(native) { + this.native = native; + // ImDrawCallback UserCallback; // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally. + this.UserCallback = null; // TODO + // void* UserCallbackData; // The draw callback code can access this. + this.UserCallbackData = null; // TODO + } + // unsigned int ElemCount; // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[]. + get ElemCount() { return this.native.ElemCount; } + // ImVec4 ClipRect; // Clipping rectangle (x1, y1, x2, y2) + get ClipRect() { return this.native.ClipRect; } + // ImTextureID TextureId; // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas. + get TextureId() { + return ImGuiContext.getTexture(this.native.TextureId); + } + // unsigned int VtxOffset; // Start offset in vertex buffer. Pre-1.71 or without ImGuiBackendFlags_RendererHasVtxOffset: always 0. With ImGuiBackendFlags_RendererHasVtxOffset: may be >0 to support meshes larger than 64K vertices with 16-bits indices. + get VtxOffset() { return this.native.VtxOffset; } + // unsigned int IdxOffset; // Start offset in index buffer. Always equal to sum of ElemCount drawn so far. + get IdxOffset() { return this.native.IdxOffset; } +} +// Vertex index +// (to allow large meshes with 16-bits indices: set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset in the renderer back-end) +// (to use 32-bits indices: override with '#define ImDrawIdx unsigned int' in imconfig.h) +// #ifndef ImDrawIdx +// typedef unsigned short ImDrawIdx; +// #endif +const ImDrawIdxSize = 2; // bind.ImDrawIdxSize; +// Vertex layout +// #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT +const ImDrawVertSize = 20; // bind.ImDrawVertSize; +const ImDrawVertPosOffset = 0; // bind.ImDrawVertPosOffset; +const ImDrawVertUVOffset = 8; // bind.ImDrawVertUVOffset; +const ImDrawVertColOffset = 16; // bind.ImDrawVertColOffset; +class ImDrawVert { + constructor(buffer, byteOffset = 0) { + this.pos = new Float32Array(buffer, byteOffset + bind.ImDrawVertPosOffset, 2); + this.uv = new Float32Array(buffer, byteOffset + bind.ImDrawVertUVOffset, 2); + this.col = new Uint32Array(buffer, byteOffset + bind.ImDrawVertColOffset, 1); + } +} +// Draw command list +// This is the low-level list of polygons that ImGui functions are filling. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering. +// Each ImGui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to access the current window draw list and draw custom primitives. +// You can interleave normal ImGui:: calls and adding primitives to the current draw list. +// All positions are generally in pixel coordinates (top-left at (0,0), bottom-right at io.DisplaySize), however you are totally free to apply whatever transformation matrix to want to the data (if you apply such transformation you'll want to apply it to ClipRect as well) +// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects. +class ImDrawList { + constructor(native) { + this.native = native; + } + IterateDrawCmds(callback) { + this.native.IterateDrawCmds((draw_cmd, ElemStart) => { + callback(new ImDrawCmd(draw_cmd), ElemStart); + }); + } + // This is what you have to render + // ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback. + // ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those + get IdxBuffer() { return this.native.IdxBuffer; } + // ImVector VtxBuffer; // Vertex buffer. + get VtxBuffer() { return this.native.VtxBuffer; } + // ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive. + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // [Internal, used while building lists] + // const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context) + // const char* _OwnerName; // Pointer to owner window's name for debugging + // unsigned int _VtxCurrentIdx; // [Internal] == VtxBuffer.Size + // ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + // ImVector _ClipRectStack; // [Internal] + // ImVector _TextureIdStack; // [Internal] + // ImVector _Path; // [Internal] current path building + // int _ChannelsCurrent; // [Internal] current channel number (0) + // int _ChannelsCount; // [Internal] number of active channels (1+) + // ImVector _Channels; // [Internal] draw channels for columns API (not resized down so _ChannelsCount may be smaller than _Channels.Size) + // ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clear(); } + // ~ImDrawList() { ClearFreeMemory(); } + // IMGUI_API void PushClipRect(ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling) + PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect = false) { + this.native.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect); + } + // IMGUI_API void PushClipRectFullScreen(); + PushClipRectFullScreen() { this.native.PushClipRectFullScreen(); } + // IMGUI_API void PopClipRect(); + PopClipRect() { this.native.PopClipRect(); } + // IMGUI_API void PushTextureID(ImTextureID texture_id); + PushTextureID(texture_id) { + this.native.PushTextureID(ImGuiContext.setTexture(texture_id)); + } + // IMGUI_API void PopTextureID(); + PopTextureID() { this.native.PopTextureID(); } + // inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); } + GetClipRectMin(out = new ImVec2()) { + return this.native.GetClipRectMin(out); + } + // inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); } + GetClipRectMax(out = new ImVec2()) { + return this.native.GetClipRectMax(out); + } + // Primitives + // IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness = 1.0f); + AddLine(a, b, col, thickness = 1.0) { + this.native.AddLine(a, b, col, thickness); + } + // IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All, float thickness = 1.0f); // a: upper-left, b: lower-right, rounding_corners_flags: 4-bits corresponding to which corner to round + AddRect(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All, thickness = 1.0) { + this.native.AddRect(a, b, col, rounding, rounding_corners_flags, thickness); + } + // IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); // a: upper-left, b: lower-right + AddRectFilled(a, b, col, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { + this.native.AddRectFilled(a, b, col, rounding, rounding_corners_flags); + } + // IMGUI_API void AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left); + AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left) { + this.native.AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left); + } + // IMGUI_API void AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness = 1.0f); + AddQuad(a, b, c, d, col, thickness = 1.0) { + this.native.AddQuad(a, b, c, d, col, thickness); + } + // IMGUI_API void AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col); + AddQuadFilled(a, b, c, d, col) { + this.native.AddQuadFilled(a, b, c, d, col); + } + // IMGUI_API void AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness = 1.0f); + AddTriangle(a, b, c, col, thickness = 1.0) { + this.native.AddTriangle(a, b, c, col, thickness); + } + // IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col); + AddTriangleFilled(a, b, c, col) { + this.native.AddTriangleFilled(a, b, c, col); + } + // IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f); + AddCircle(centre, radius, col, num_segments = 12, thickness = 1.0) { + this.native.AddCircle(centre, radius, col, num_segments, thickness); + } + // IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12); + AddCircleFilled(centre, radius, col, num_segments = 12) { + this.native.AddCircleFilled(centre, radius, col, num_segments); + } + AddText(...args) { + if (args[0] instanceof ImFont) { + const font = args[0]; + const font_size = args[1]; + const pos = args[2]; + const col = args[3]; + const text_begin = args[4]; + const text_end = args[5] || null; + const wrap_width = args[6] = 0.0; + const cpu_fine_clip_rect = args[7] || null; + this.native.AddText_B(font.native, font_size, pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin, wrap_width, cpu_fine_clip_rect); + } + else { + const pos = args[0]; + const col = args[1]; + const text_begin = args[2]; + const text_end = args[3] || null; + this.native.AddText_A(pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin); + } + } + // IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,1), ImU32 col = 0xFFFFFFFF); + AddImage(user_texture_id, a, b, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT, col = 0xFFFFFFFF) { + this.native.AddImage(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col); + } + // IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,0), const ImVec2& uv_c = ImVec2(1,1), const ImVec2& uv_d = ImVec2(0,1), ImU32 col = 0xFFFFFFFF); + AddImageQuad(user_texture_id, a, b, c, d, uv_a = ImVec2.ZERO, uv_b = ImVec2.UNIT_X, uv_c = ImVec2.UNIT, uv_d = ImVec2.UNIT_Y, col = 0xFFFFFFFF) { + this.native.AddImageQuad(ImGuiContext.setTexture(user_texture_id), a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); + } + // IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col, float rounding, int rounding_corners = ImDrawCornerFlags_All); + AddImageRounded(user_texture_id, a, b, uv_a, uv_b, col, rounding, rounding_corners = ImDrawCornerFlags.All) { + this.native.AddImageRounded(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col, rounding, rounding_corners); + } + // IMGUI_API void AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness); + AddPolyline(points, num_points, col, closed, thickness) { + this.native.AddPolyline(points, num_points, col, closed, thickness); + } + // IMGUI_API void AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col); + AddConvexPolyFilled(points, num_points, col) { + this.native.AddConvexPolyFilled(points, num_points, col); + } + // IMGUI_API void AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments = 0); + AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness = 1.0, num_segments = 0) { + this.native.AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments); + } + // Stateful path API, add points then finish with PathFill() or PathStroke() + // inline void PathClear() { _Path.resize(0); } + PathClear() { this.native.PathClear(); } + // inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); } + PathLineTo(pos) { this.native.PathLineTo(pos); } + // inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path[_Path.Size-1], &pos, 8) != 0) _Path.push_back(pos); } + PathLineToMergeDuplicate(pos) { this.native.PathLineToMergeDuplicate(pos); } + // inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); PathClear(); } + PathFillConvex(col) { this.native.PathFillConvex(col); } + // inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness); PathClear(); } + PathStroke(col, closed, thickness = 1.0) { this.native.PathStroke(col, closed, thickness); } + // IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_segments = 10); + PathArcTo(centre, radius, a_min, a_max, num_segments = 10) { this.native.PathArcTo(centre, radius, a_min, a_max, num_segments); } + // IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle + PathArcToFast(centre, radius, a_min_of_12, a_max_of_12) { this.native.PathArcToFast(centre, radius, a_min_of_12, a_max_of_12); } + // IMGUI_API void PathBezierCurveTo(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, int num_segments = 0); + PathBezierCurveTo(p1, p2, p3, num_segments = 0) { this.native.PathBezierCurveTo(p1, p2, p3, num_segments); } + // IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); + PathRect(rect_min, rect_max, rounding = 0.0, rounding_corners_flags = ImDrawCornerFlags.All) { this.native.PathRect(rect_min, rect_max, rounding, rounding_corners_flags); } + // Channels + // - Use to simulate layers. By switching channels to can render out-of-order (e.g. submit foreground primitives before background primitives) + // - Use to minimize draw calls (e.g. if going back-and-forth between multiple non-overlapping clipping rectangles, prefer to append into separate channels then merge at the end) + // IMGUI_API void ChannelsSplit(int channels_count); + ChannelsSplit(channels_count) { this.native.ChannelsSplit(channels_count); } + // IMGUI_API void ChannelsMerge(); + ChannelsMerge() { this.native.ChannelsMerge(); } + // IMGUI_API void ChannelsSetCurrent(int channel_index); + ChannelsSetCurrent(channel_index) { this.native.ChannelsSetCurrent(channel_index); } + // Advanced + // IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles. + AddCallback(callback, callback_data) { + const _callback = (parent_list, draw_cmd) => { + callback(new ImDrawList(parent_list), new ImDrawCmd(draw_cmd)); + }; + this.native.AddCallback(_callback, callback_data); + } + // IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible + AddDrawCmd() { this.native.AddDrawCmd(); } + // Internal helpers + // NB: all primitives needs to be reserved via PrimReserve() beforehand! + // IMGUI_API void Clear(); + Clear() { this.native.Clear(); } + // IMGUI_API void ClearFreeMemory(); + ClearFreeMemory() { this.native.ClearFreeMemory(); } + // IMGUI_API void PrimReserve(int idx_count, int vtx_count); + PrimReserve(idx_count, vtx_count) { this.native.PrimReserve(idx_count, vtx_count); } + // IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles) + PrimRect(a, b, col) { this.native.PrimRect(a, b, col); } + // IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col); + PrimRectUV(a, b, uv_a, uv_b, col) { this.native.PrimRectUV(a, b, uv_a, uv_b, col); } + // IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col); + PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col) { this.native.PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); } + // inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; } + PrimWriteVtx(pos, uv, col) { this.native.PrimWriteVtx(pos, uv, col); } + // inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; } + PrimWriteIdx(idx) { this.native.PrimWriteIdx(idx); } + // inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); } + PrimVtx(pos, uv, col) { this.native.PrimVtx(pos, uv, col); } + // IMGUI_API void UpdateClipRect(); + UpdateClipRect() { this.native.UpdateClipRect(); } + // IMGUI_API void UpdateTextureID(); + UpdateTextureID() { this.native.UpdateTextureID(); } +} +// All draw data to render an ImGui frame +class ImDrawData { + constructor(native) { + this.native = native; + } + IterateDrawLists(callback) { + this.native.IterateDrawLists((draw_list) => { + callback(new ImDrawList(draw_list)); + }); + } + // bool Valid; // Only valid after Render() is called and before the next NewFrame() is called. + get Valid() { return this.native.Valid; } + // ImDrawList** CmdLists; + // int CmdListsCount; + get CmdListsCount() { return this.native.CmdListsCount; } + // int TotalIdxCount; // For convenience, sum of all cmd_lists idx_buffer.Size + get TotalIdxCount() { return this.native.TotalIdxCount; } + // int TotalVtxCount; // For convenience, sum of all cmd_lists vtx_buffer.Size + get TotalVtxCount() { return this.native.TotalVtxCount; } + // ImVec2 DisplayPos; // Upper-left position of the viewport to render (== upper-left of the orthogonal projection matrix to use) + get DisplayPos() { return this.native.DisplayPos; } + // ImVec2 DisplaySize; // Size of the viewport to render (== io.DisplaySize for the main viewport) (DisplayPos + DisplaySize == lower-right of the orthogonal projection matrix to use) + get DisplaySize() { return this.native.DisplaySize; } + // ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display. + get FramebufferScale() { return this.native.FramebufferScale; } + // Functions + // ImDrawData() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCount = 0; } + // IMGUI_API void DeIndexAllBuffers(); // For backward compatibility or convenience: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering! + DeIndexAllBuffers() { this.native.DeIndexAllBuffers(); } + // IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than ImGui expects, or if there is a difference between your window resolution and framebuffer resolution. + ScaleClipRects(fb_scale) { + this.native.ScaleClipRects(fb_scale); + } +} +class script_ImFontConfig { + constructor() { + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + this.FontData = null; + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + this.FontDataOwnedByAtlas = true; + // int FontNo; // 0 // Index of font within TTF/OTF file + this.FontNo = 0; + // float SizePixels; // // Size in pixels for rasterizer. + this.SizePixels = 0; + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + this.OversampleH = 3; + this.OversampleV = 1; + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + this.PixelSnapH = false; + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + this.GlyphExtraSpacing = new ImVec2(0, 0); + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + this.GlyphOffset = new ImVec2(0, 0); + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + this.GlyphRanges = null; + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + this.GlyphMinAdvanceX = 0; + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + this.GlyphMaxAdvanceX = Number.MAX_VALUE; + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + this.MergeMode = false; + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + this.RasterizerFlags = 0; + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + this.RasterizerMultiply = 1.0; + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + this.Name = ""; + // ImFont* DstFont; + this.DstFont = null; + // IMGUI_API ImFontConfig(); + } +} +class ImFontConfig { + constructor(internal = new script_ImFontConfig()) { + this.internal = internal; + } + // void* FontData; // // TTF/OTF data + // int FontDataSize; // // TTF/OTF data size + get FontData() { return this.internal.FontData; } + // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + get FontDataOwnedByAtlas() { return this.internal.FontDataOwnedByAtlas; } + // int FontNo; // 0 // Index of font within TTF/OTF file + get FontNo() { return this.internal.FontNo; } + // float SizePixels; // // Size in pixels for rasterizer. + get SizePixels() { return this.internal.SizePixels; } + // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis. + get OversampleH() { return this.internal.OversampleH; } + get OversampleV() { return this.internal.OversampleV; } + // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + get PixelSnapH() { return this.internal.PixelSnapH; } + // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + get GlyphExtraSpacing() { return this.internal.GlyphExtraSpacing; } + // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + get GlyphOffset() { return this.internal.GlyphOffset; } + // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. + get GlyphRanges() { return this.internal.GlyphRanges; } + // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + get GlyphMinAdvanceX() { return this.internal.GlyphMinAdvanceX; } + // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + get GlyphMaxAdvanceX() { return this.internal.GlyphMaxAdvanceX; } + // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + get MergeMode() { return this.internal.MergeMode; } + // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one. + get RasterizerFlags() { return this.internal.RasterizerFlags; } + // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + get RasterizerMultiply() { return this.internal.RasterizerMultiply; } + // [Internal] + // char Name[32]; // Name (strictly to ease debugging) + get Name() { return this.internal.Name; } + set Name(value) { this.internal.Name = value; } + // ImFont* DstFont; + get DstFont() { + const font = this.internal.DstFont; + return font && new ImFont(font); + } +} +// struct ImFontGlyph +class script_ImFontGlyph { + constructor() { + // ImWchar Codepoint; // 0x0000..0xFFFF + this.Codepoint = 0; + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + this.AdvanceX = 0.0; + // float X0, Y0, X1, Y1; // Glyph corners + this.X0 = 0.0; + this.Y0 = 0.0; + this.X1 = 1.0; + this.Y1 = 1.0; + // float U0, V0, U1, V1; // Texture coordinates + this.U0 = 0.0; + this.V0 = 0.0; + this.U1 = 1.0; + this.V1 = 1.0; + } +} +class ImFontGlyph { + constructor(internal = new script_ImFontGlyph()) { + this.internal = internal; + } + // ImWchar Codepoint; // 0x0000..0xFFFF + get Codepoint() { return this.internal.Codepoint; } + // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + get AdvanceX() { return this.internal.AdvanceX; } + ; + // float X0, Y0, X1, Y1; // Glyph corners + get X0() { return this.internal.X0; } + ; + get Y0() { return this.internal.Y0; } + ; + get X1() { return this.internal.X1; } + ; + get Y1() { return this.internal.Y1; } + ; + // float U0, V0, U1, V1; // Texture coordinates + get U0() { return this.internal.U0; } + ; + get V0() { return this.internal.V0; } + ; + get U1() { return this.internal.U1; } + ; + get V1() { return this.internal.V1; } + ; +} +var ImFontAtlasFlags; +(function (ImFontAtlasFlags) { + ImFontAtlasFlags[ImFontAtlasFlags["None"] = 0] = "None"; + ImFontAtlasFlags[ImFontAtlasFlags["NoPowerOfTwoHeight"] = 1] = "NoPowerOfTwoHeight"; + ImFontAtlasFlags[ImFontAtlasFlags["NoMouseCursors"] = 2] = "NoMouseCursors"; +})(ImFontAtlasFlags || (ImFontAtlasFlags = {})); +// Load and rasterize multiple TTF/OTF fonts into a same texture. +// Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering. +// We also add custom graphic data into the texture that serves for ImGui. +// 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you. +// 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data. +// 3. Upload the pixels data into a texture within your graphics system. +// 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture. +// IMPORTANT: If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the ImFont is build (when calling GetTextData*** or Build()). We only copy the pointer, not the data. +class ImFontAtlas { + constructor(native) { + this.native = native; + } + // IMGUI_API ImFontAtlas(); + // IMGUI_API ~ImFontAtlas(); + // IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg); + // IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL); + AddFontDefault(font_cfg = null) { + return new ImFont(this.native.AddFontDefault(font_cfg)); + } + // IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); + // IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after Build(). Set font_cfg->FontDataOwnedByAtlas to false to keep ownership. + AddFontFromMemoryTTF(data, size_pixels, font_cfg = null, glyph_ranges = null) { + return new ImFont(this.native.AddFontFromMemoryTTF(new Uint8Array(data), size_pixels, font_cfg && font_cfg.internal, glyph_ranges)); + } + // IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp. + // IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter. + // IMGUI_API void ClearTexData(); // Clear the CPU-side texture data. Saves RAM once the texture has been copied to graphics memory. + ClearTexData() { this.native.ClearTexData(); } + // IMGUI_API void ClearInputData(); // Clear the input TTF data (inc sizes, glyph ranges) + ClearInputData() { this.native.ClearInputData(); } + // IMGUI_API void ClearFonts(); // Clear the ImGui-side font data (glyphs storage, UV coordinates) + ClearFonts() { this.native.ClearFonts(); } + // IMGUI_API void Clear(); // Clear all + Clear() { this.native.Clear(); } + // Build atlas, retrieve pixel data. + // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID(). + // RGBA32 format is provided for convenience and compatibility, but note that unless you use CustomRect to draw color data, the RGB pixels emitted from Fonts will all be white (~75% of waste). + // Pitch = Width * BytesPerPixels + // IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions. + Build() { return this.native.Build(); } + // IMGUI_API bool IsBuilt() { return Fonts.Size > 0 && (TexPixelsAlpha8 != NULL || TexPixelsRGBA32 != NULL); } + IsBuilt() { return this.native.IsBuilt(); } + // IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel + GetTexDataAsAlpha8() { + return this.native.GetTexDataAsAlpha8(); + } + // IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel + GetTexDataAsRGBA32() { + return this.native.GetTexDataAsRGBA32(); + } + // void SetTexID(ImTextureID id) { TexID = id; } + SetTexID(id) { this.TexID = id; } + //------------------------------------------- + // Glyph Ranges + //------------------------------------------- + // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list) + // NB: Make sure that your string are UTF-8 and NOT in your local code page. In C++11, you can create UTF-8 string literal using the u8"Hello world" syntax. See FAQ for details. + // IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin + GetGlyphRangesDefault() { return this.native.GetGlyphRangesDefault(); } + // IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters + GetGlyphRangesKorean() { return this.native.GetGlyphRangesKorean(); } + // IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs + GetGlyphRangesJapanese() { return this.native.GetGlyphRangesJapanese(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs + GetGlyphRangesChineseFull() { return this.native.GetGlyphRangesChineseFull(); } + // IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese + GetGlyphRangesChineseSimplifiedCommon() { return this.native.GetGlyphRangesChineseSimplifiedCommon(); } + // IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters + GetGlyphRangesCyrillic() { return this.native.GetGlyphRangesCyrillic(); } + // IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters + GetGlyphRangesThai() { return this.native.GetGlyphRangesThai(); } + // IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters + GetGlyphRangesVietnamese() { return this.native.GetGlyphRangesVietnamese(); } + // Helpers to build glyph ranges from text data. Feed your application strings/characters to it then call BuildRanges(). + // struct GlyphRangesBuilder + // { + // ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used) + // GlyphRangesBuilder() { UsedChars.resize(0x10000 / 8); memset(UsedChars.Data, 0, 0x10000 / 8); } + // bool GetBit(int n) const { return (UsedChars[n >> 3] & (1 << (n & 7))) != 0; } + // void SetBit(int n) { UsedChars[n >> 3] |= 1 << (n & 7); } // Set bit 'c' in the array + // void AddChar(ImWchar c) { SetBit(c); } // Add character + // IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added) + // IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault) to force add all of ASCII/Latin+Ext + // IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges + // }; + //------------------------------------------- + // Custom Rectangles/Glyphs API + //------------------------------------------- + // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. After calling Build(), you can query the rectangle position and render your pixels. + // You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs. + // struct CustomRect + // { + // unsigned int ID; // Input // User ID. Use <0x10000 to map into a font glyph, >=0x10000 for other/internal/custom texture data. + // unsigned short Width, Height; // Input // Desired rectangle dimension + // unsigned short X, Y; // Output // Packed position in Atlas + // float GlyphAdvanceX; // Input // For custom font glyphs only (ID<0x10000): glyph xadvance + // ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph display offset + // ImFont* Font; // Input // For custom font glyphs only (ID<0x10000): target font + // CustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); Font = NULL; } + // bool IsPacked() const { return X != 0xFFFF; } + // }; + // IMGUI_API int AddCustomRectRegular(unsigned int id, int width, int height); // Id needs to be >= 0x10000. Id >= 0x80000000 are reserved for ImGui and ImDrawList + // IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0,0)); // Id needs to be < 0x10000 to register a rectangle to map into a specific font. + // IMGUI_API void CalcCustomRectUV(const CustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max); + // const CustomRect* GetCustomRectByIndex(int index) const { if (index < 0) return NULL; return &CustomRects[index]; } + //------------------------------------------- + // Members + //------------------------------------------- + // bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert. + get Locked() { return this.native.Locked; } + set Locked(value) { this.native.Locked = value; } + // ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_) + get Flags() { return this.native.Flags; } + set Flags(value) { this.native.Flags = value; } + // ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure. + get TexID() { + return ImGuiContext.getTexture(this.native.TexID); + } + set TexID(value) { + this.native.TexID = ImGuiContext.setTexture(value); + } + // int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height. + get TexDesiredWidth() { return this.native.TexDesiredWidth; } + set TexDesiredWidth(value) { this.native.TexDesiredWidth = value; } + // int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1. + get TexGlyphPadding() { return this.native.TexGlyphPadding; } + set TexGlyphPadding(value) { this.native.TexGlyphPadding = value; } + // [Internal] + // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you. + // unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight + // unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4 + // int TexWidth; // Texture width calculated during Build(). + get TexWidth() { return this.native.TexWidth; } + // int TexHeight; // Texture height calculated during Build(). + get TexHeight() { return this.native.TexHeight; } + // ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight) + get TexUvScale() { return this.native.TexUvScale; } + // ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel + get TexUvWhitePixel() { return this.native.TexUvWhitePixel; } + // ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font. + get Fonts() { + const fonts = new ImVector(); + this.native.IterateFonts((font) => { + fonts.push(new ImFont(font)); + }); + return fonts; + } +} +// Font runtime data and rendering +// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32(). +class ImFont { + constructor(native) { + this.native = native; + } + // Members: Hot ~62/78 bytes + // float FontSize; // // Height of characters, set during loading (don't change after loading) + get FontSize() { return this.native.FontSize; } + // float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale() + get Scale() { return this.native.Scale; } + set Scale(value) { this.native.Scale = value; } + // ImVec2 DisplayOffset; // = (0.f,1.f) // Offset font rendering by xx pixels + get DisplayOffset() { return this.native.DisplayOffset; } + // ImVector Glyphs; // // All glyphs. + get Glyphs() { + const glyphs = new ImVector(); + this.native.IterateGlyphs((glyph) => { + glyphs.push(new ImFontGlyph(glyph)); // TODO: wrap native + }); + return glyphs; + } + // ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI). + // get IndexAdvanceX(): any { return this.native.IndexAdvanceX; } + // ImVector IndexLookup; // // Sparse. Index glyphs by Unicode code-point. + // get IndexLookup(): any { return this.native.IndexLookup; } + // const ImFontGlyph* FallbackGlyph; // == FindGlyph(FontFallbackChar) + get FallbackGlyph() { + const glyph = this.native.FallbackGlyph; + return glyph && new ImFontGlyph(glyph); + } + set FallbackGlyph(value) { + this.native.FallbackGlyph = value && value.internal; + } + // float FallbackAdvanceX; // == FallbackGlyph->AdvanceX + get FallbackAdvanceX() { return this.native.FallbackAdvanceX; } + // ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found. Only set via SetFallbackChar() + get FallbackChar() { return this.native.FallbackChar; } + // Members: Cold ~18/26 bytes + // short ConfigDataCount; // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont. + get ConfigDataCount() { return this.ConfigData.length; } + // ImFontConfig* ConfigData; // // Pointer within ContainerAtlas->ConfigData + get ConfigData() { + const cfg_data = []; + this.native.IterateConfigData((cfg) => { + cfg_data.push(new ImFontConfig(cfg)); + }); + return cfg_data; + } + // ImFontAtlas* ContainerAtlas; // // What we has been loaded into + get ContainerAtlas() { return null; } + // float Ascent, Descent; // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize] + get Ascent() { return this.native.Ascent; } + get Descent() { return this.native.Descent; } + // int MetricsTotalSurface;// // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs) + get MetricsTotalSurface() { return this.native.MetricsTotalSurface; } + // Methods + // IMGUI_API ImFont(); + // IMGUI_API ~ImFont(); + // IMGUI_API void ClearOutputData(); + ClearOutputData() { return this.native.ClearOutputData(); } + // IMGUI_API void BuildLookupTable(); + BuildLookupTable() { return this.native.BuildLookupTable(); } + // IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const; + FindGlyph(c) { + const glyph = this.native.FindGlyph(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const; + FindGlyphNoFallback(c) { + const glyph = this.native.FindGlyphNoFallback(c); + return glyph && new ImFontGlyph(glyph); + } + // IMGUI_API void SetFallbackChar(ImWchar c); + SetFallbackChar(c) { return this.native.SetFallbackChar(c); } + // float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; } + GetCharAdvance(c) { return this.native.GetCharAdvance(c); } + // bool IsLoaded() const { return ContainerAtlas != NULL; } + IsLoaded() { return this.native.IsLoaded(); } + // const char* GetDebugName() const { return ConfigData ? ConfigData->Name : ""; } + GetDebugName() { return this.native.GetDebugName(); } + // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable. + // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable. + // IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8 + CalcTextSizeA(size, max_width, wrap_width, text_begin, text_end = null, remaining = null) { + return this.native.CalcTextSizeA(size, max_width, wrap_width, text_end !== null ? text_begin.substring(0, text_end) : text_begin, remaining, new ImVec2()); + } + // IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const; + CalcWordWrapPositionA(scale, text, text_end = null, wrap_width) { + return this.native.CalcWordWrapPositionA(scale, text_end !== null ? text.substring(0, text_end) : text, wrap_width); + } + // IMGUI_API void RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, unsigned short c) const; + RenderChar(draw_list, size, pos, col, c) { + this.native.RenderChar(draw_list.native, size, pos, col, c); + } + // IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const; + RenderText(draw_list, size, pos, col, clip_rect, text_begin, text_end = null, wrap_width = 0.0, cpu_fine_clip = false) { } +} +// This is where your app communicate with Dear ImGui. Access via ImGui::GetIO(). +// Read 'Programmer guide' section in .cpp file for general usage. +class ImGuiIO { + constructor(native) { + this.native = native; + // int KeyMap[ImGuiKey_COUNT]; // // Map of indices into the KeysDown[512] entries array + this.KeyMap = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiKey.COUNT; + } + return this.native._getAt_KeyMap(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeyMap(Number(key), value); + }, + }); + // bool MouseDown[5]; // Mouse buttons: left, right, middle + extras. ImGui itself mostly only uses left button (BeginPopupContext** are using right button). Others buttons allows us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API. + this.MouseDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_MouseDown(Number(key), value); + }, + }); + // bool KeysDown[512]; // Keyboard keys that are pressed (in whatever storage order you naturally have access to keyboard data) + this.KeysDown = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDown(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_KeysDown(Number(key), value); + }, + }); + // float NavInputs[ImGuiNavInput_COUNT]; // Gamepad inputs (keyboard keys will be auto-mapped and be written here by ImGui::NewFrame) + this.NavInputs = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputs(Number(key)); + }, + set: (target, key, value) => { + return this.native._setAt_NavInputs(Number(key), value); + }, + }); + //------------------------------------------------------------------ + // [Internal] ImGui will maintain those fields. Forward compatibility not guaranteed! + //------------------------------------------------------------------ + // ImVec2 MousePosPrev; // Previous mouse position temporary storage (nb: not for public use, set to MousePos in NewFrame()) + // ImVec2 MouseClickedPos[5]; // Position at time of clicking + this.MouseClickedPos = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseClickedPos(Number(key)); + }, + }); + // float MouseClickedTime[5]; // Time of last click (used to figure out double-click) + // bool MouseClicked[5]; // Mouse button went from !Down to Down + // bool MouseDoubleClicked[5]; // Has mouse button been double-clicked? + // bool MouseReleased[5]; // Mouse button went from Down to !Down + // bool MouseDownOwned[5]; // Track if button was clicked inside a window. We don't request mouse capture from the application if click started outside ImGui bounds. + // float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked) + this.MouseDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 5; + } + return this.native._getAt_MouseDownDuration(Number(key)); + }, + }); + // float MouseDownDurationPrev[5]; // Previous time the mouse button has been down + // ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point + // float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point + // float KeysDownDuration[512]; // Duration the keyboard key has been down (0.0f == just pressed) + this.KeysDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return 512; + } + return this.native._getAt_KeysDownDuration(Number(key)); + }, + }); + // float KeysDownDurationPrev[512]; // Previous duration the key has been down + // float NavInputsDownDuration[ImGuiNavInput_COUNT]; + this.NavInputsDownDuration = new Proxy([], { + get: (target, key) => { + if (key === "length") { + return ImGuiNavInput.COUNT; + } + return this.native._getAt_NavInputsDownDuration(Number(key)); + }, + }); + } + //------------------------------------------------------------------ + // Settings (fill once) // Default value: + //------------------------------------------------------------------ + // ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc. + get ConfigFlags() { return this.native.ConfigFlags; } + set ConfigFlags(value) { this.native.ConfigFlags = value; } + // ImGuiBackendFlags BackendFlags; // = 0 // Set ImGuiBackendFlags_ enum. Set by imgui_impl_xxx files or custom back-end to communicate features supported by the back-end. + get BackendFlags() { return this.native.BackendFlags; } + set BackendFlags(value) { this.native.BackendFlags = value; } + // ImVec2 DisplaySize; // // Display size, in pixels. For clamping windows positions. + get DisplaySize() { return this.native.DisplaySize; } + // float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds. + get DeltaTime() { return this.native.DeltaTime; } + set DeltaTime(value) { this.native.DeltaTime = value; } + // float IniSavingRate; // = 5.0f // Maximum time between saving positions/sizes to .ini file, in seconds. + get IniSavingRate() { return this.native.IniSavingRate; } + set IniSavingRate(value) { this.native.IniSavingRate = value; } + // const char* IniFilename; // = "imgui.ini" // Path to .ini file. NULL to disable .ini saving. + get IniFilename() { return this.native.IniFilename; } + set IniFilename(value) { this.native.IniFilename = value; } + // const char* LogFilename; // = "imgui_log.txt" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified). + get LogFilename() { return this.native.LogFilename; } + set LogFilename(value) { this.native.LogFilename = value; } + // float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds. + get MouseDoubleClickTime() { return this.native.MouseDoubleClickTime; } + set MouseDoubleClickTime(value) { this.native.MouseDoubleClickTime = value; } + // float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels. + get MouseDoubleClickMaxDist() { return this.native.MouseDoubleClickMaxDist; } + set MouseDoubleClickMaxDist(value) { this.native.MouseDoubleClickMaxDist = value; } + // float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging + get MouseDragThreshold() { return this.native.MouseDragThreshold; } + set MouseDragThreshold(value) { this.native.MouseDragThreshold = value; } + // float KeyRepeatDelay; // = 0.250f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.). + get KeyRepeatDelay() { return this.native.KeyRepeatDelay; } + set KeyRepeatDelay(value) { this.native.KeyRepeatDelay = value; } + // float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds. + get KeyRepeatRate() { return this.native.KeyRepeatRate; } + set KeyRepeatRate(value) { this.native.KeyRepeatRate = value; } + // void* UserData; // = NULL // Store your own data for retrieval by callbacks. + get UserData() { return this.native.UserData; } + set UserData(value) { this.native.UserData = value; } + // ImFontAtlas* Fonts; // // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array. + get Fonts() { return new ImFontAtlas(this.native.Fonts); } + // float FontGlobalScale; // = 1.0f // Global scale all fonts + get FontGlobalScale() { return this.native.FontGlobalScale; } + set FontGlobalScale(value) { this.native.FontGlobalScale = value; } + // bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel. + get FontAllowUserScaling() { return this.native.FontAllowUserScaling; } + set FontAllowUserScaling(value) { this.native.FontAllowUserScaling = value; } + // ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0]. + get FontDefault() { + const font = this.native.FontDefault; + return (font === null) ? null : new ImFont(font); + } + set FontDefault(value) { + this.native.FontDefault = value && value.native; + } + // ImVec2 DisplayFramebufferScale; // = (1.0f,1.0f) // For retina display or other situations where window coordinates are different from framebuffer coordinates. User storage only, presently not used by ImGui. + get DisplayFramebufferScale() { return this.native.DisplayFramebufferScale; } + // Miscellaneous configuration options + // bool OptMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl + get ConfigMacOSXBehaviors() { return this.native.ConfigMacOSXBehaviors; } + set ConfigMacOSXBehaviors(value) { this.native.ConfigMacOSXBehaviors = value; } + // bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor, for users who consider it annoying. + get ConfigInputTextCursorBlink() { return this.native.ConfigInputTextCursorBlink; } + set ConfigInputTextCursorBlink(value) { this.native.ConfigInputTextCursorBlink = value; } + // bool ConfigWindowsResizeFromEdges; // = false // [BETA] Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be the ImGuiWindowFlags_ResizeFromAnySide flag) + get ConfigWindowsResizeFromEdges() { return this.native.ConfigWindowsResizeFromEdges; } + set ConfigWindowsResizeFromEdges(value) { this.native.ConfigWindowsResizeFromEdges = value; } + // bool ConfigWindowsMoveFromTitleBarOnly;// = false // [BETA] Set to true to only allow moving windows when clicked+dragged from the title bar. Windows without a title bar are not affected. + get ConfigWindowsMoveFromTitleBarOnly() { return this.native.ConfigWindowsMoveFromTitleBarOnly; } + set ConfigWindowsMoveFromTitleBarOnly(value) { this.native.ConfigWindowsMoveFromTitleBarOnly = value; } + //------------------------------------------------------------------ + // Settings (User Functions) + //------------------------------------------------------------------ + // Optional: Platform/Renderer back-end name (informational only! will be displayed in About Window) + User data for back-end/wrappers to store their own stuff. + // const char* BackendPlatformName; // = NULL + get BackendPlatformName() { return this.native.BackendPlatformName; } + set BackendPlatformName(value) { this.native.BackendPlatformName = value; } + // const char* BackendRendererName; // = NULL + get BackendRendererName() { return this.native.BackendRendererName; } + set BackendRendererName(value) { this.native.BackendRendererName = value; } + // void* BackendPlatformUserData; // = NULL + get BackendPlatformUserData() { return this.native.BackendPlatformUserData; } + set BackendPlatformUserData(value) { this.native.BackendPlatformUserData = value; } + // void* BackendRendererUserData; // = NULL + get BackendRendererUserData() { return this.native.BackendRendererUserData; } + set BackendRendererUserData(value) { this.native.BackendRendererUserData = value; } + // void* BackendLanguageUserData; // = NULL + get BackendLanguageUserData() { return this.native.BackendLanguageUserData; } + set BackendLanguageUserData(value) { this.native.BackendLanguageUserData = value; } + // Optional: access OS clipboard + // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures) + // const char* (*GetClipboardTextFn)(void* user_data); + get GetClipboardTextFn() { return this.native.GetClipboardTextFn; } + set GetClipboardTextFn(value) { this.native.GetClipboardTextFn = value; } + // void (*SetClipboardTextFn)(void* user_data, const char* text); + get SetClipboardTextFn() { return this.native.SetClipboardTextFn; } + set SetClipboardTextFn(value) { this.native.SetClipboardTextFn = value; } + // void* ClipboardUserData; + get ClipboardUserData() { return this.native.ClipboardUserData; } + set ClipboardUserData(value) { this.native.ClipboardUserData = value; } + // Optional: override memory allocations. MemFreeFn() may be called with a NULL pointer. + // (default to posix malloc/free) + // void* (*MemAllocFn)(size_t sz); + // void (*MemFreeFn)(void* ptr); + // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME in Windows) + // (default to use native imm32 api on Windows) + // void (*ImeSetInputScreenPosFn)(int x, int y); + // void* ImeWindowHandle; // (Windows) Set this to your HWND to get automatic IME cursor positioning. + //------------------------------------------------------------------ + // Input - Fill before calling NewFrame() + //------------------------------------------------------------------ + // ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX,-FLT_MAX) if mouse is unavailable (on another screen, etc.) + get MousePos() { return this.native.MousePos; } + // float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text. + get MouseWheel() { return this.native.MouseWheel; } + set MouseWheel(value) { this.native.MouseWheel = value; } + // float MouseWheelH; // Mouse wheel (Horizontal). Most users don't have a mouse with an horizontal wheel, may not be filled by all back-ends. + get MouseWheelH() { return this.native.MouseWheelH; } + set MouseWheelH(value) { this.native.MouseWheelH = value; } + // bool MouseDrawCursor; // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor). + get MouseDrawCursor() { return this.native.MouseDrawCursor; } + set MouseDrawCursor(value) { this.native.MouseDrawCursor = value; } + // bool KeyCtrl; // Keyboard modifier pressed: Control + get KeyCtrl() { return this.native.KeyCtrl; } + set KeyCtrl(value) { this.native.KeyCtrl = value; } + // bool KeyShift; // Keyboard modifier pressed: Shift + get KeyShift() { return this.native.KeyShift; } + set KeyShift(value) { this.native.KeyShift = value; } + // bool KeyAlt; // Keyboard modifier pressed: Alt + get KeyAlt() { return this.native.KeyAlt; } + set KeyAlt(value) { this.native.KeyAlt = value; } + // bool KeySuper; // Keyboard modifier pressed: Cmd/Super/Windows + get KeySuper() { return this.native.KeySuper; } + set KeySuper(value) { this.native.KeySuper = value; } + // Functions + // IMGUI_API void AddInputCharacter(ImWchar c); // Add new character into InputCharacters[] + AddInputCharacter(c) { this.native.AddInputCharacter(c); } + // IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Add new characters into InputCharacters[] from an UTF-8 string + AddInputCharactersUTF8(utf8_chars) { this.native.AddInputCharactersUTF8(utf8_chars); } + // inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Clear the text input buffer manually + ClearInputCharacters() { this.native.ClearInputCharacters(); } + //------------------------------------------------------------------ + // Output - Retrieve after calling NewFrame() + //------------------------------------------------------------------ + // bool WantCaptureMouse; // When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. This is set by ImGui when it wants to use your mouse (e.g. unclicked mouse is hovering a window, or a widget is active). + get WantCaptureMouse() { return this.native.WantCaptureMouse; } + set WantCaptureMouse(value) { this.native.WantCaptureMouse = value; } + // bool WantCaptureKeyboard; // When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. This is set by ImGui when it wants to use your keyboard inputs. + get WantCaptureKeyboard() { return this.native.WantCaptureKeyboard; } + set WantCaptureKeyboard(value) { this.native.WantCaptureKeyboard = value; } + // bool WantTextInput; // Mobile/console: when io.WantTextInput is true, you may display an on-screen keyboard. This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active). + get WantTextInput() { return this.native.WantTextInput; } + set WantTextInput(value) { this.native.WantTextInput = value; } + // bool WantSetMousePos; // [BETA-NAV] MousePos has been altered, back-end should reposition mouse on next frame. Set only when 'NavMovesMouse=true'. + get WantSetMousePos() { return this.native.WantSetMousePos; } + set WantSetMousePos(value) { this.native.WantSetMousePos = value; } + // bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. IMPORTANT: You need to clear io.WantSaveIniSettings yourself. + get WantSaveIniSettings() { return this.native.WantSaveIniSettings; } + set WantSaveIniSettings(value) { this.native.WantSaveIniSettings = value; } + // bool NavActive; // Directional navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag. + get NavActive() { return this.native.NavActive; } + set NavActive(value) { this.native.NavActive = value; } + // bool NavVisible; // Directional navigation is visible and allowed (will handle ImGuiKey_NavXXX events). + get NavVisible() { return this.native.NavVisible; } + set NavVisible(value) { this.native.NavVisible = value; } + // float Framerate; // Application framerate estimation, in frame per second. Solely for convenience. Rolling average estimation based on IO.DeltaTime over 120 frames + get Framerate() { return this.native.Framerate; } + // int MetricsRenderVertices; // Vertices output during last call to Render() + get MetricsRenderVertices() { return this.native.MetricsRenderVertices; } + // int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3 + get MetricsRenderIndices() { return this.native.MetricsRenderIndices; } + // int MetricsRenderWindows; // Number of visible windows + get MetricsRenderWindows() { return this.native.MetricsRenderWindows; } + // int MetricsActiveWindows; // Number of visible root windows (exclude child windows) + get MetricsActiveWindows() { return this.native.MetricsActiveWindows; } + // int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts. + get MetricsActiveAllocations() { return this.native.MetricsActiveAllocations; } + // ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta. + get MouseDelta() { return this.native.MouseDelta; } +} +const _texturesById = []; +// Context creation and access, if you want to use multiple context, share context between modules (e.g. DLL). +// All contexts share a same ImFontAtlas by default. If you want different font atlas, you can new() them and overwrite the GetIO().Fonts variable of an ImGui context. +// All those functions are not reliant on the current context. +class ImGuiContext { + constructor(native) { + this.native = native; + } + static getTexture(index) { + return _texturesById[index] || null; + } + static setTexture(texture) { + let index = _texturesById.indexOf(texture); + if (index === -1) { + for (let i = 0; i < _texturesById.length; ++i) { + if (_texturesById[i] === null) { + _texturesById[i] = texture; + return i; + } + } + index = _texturesById.length; + _texturesById.push(texture); + } + return index; + } +} +ImGuiContext.current_ctx = null; +// IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL); +function CreateContext(shared_font_atlas = null) { + const ctx = new ImGuiContext(bind.CreateContext(shared_font_atlas ? shared_font_atlas.native : null)); + if (ImGuiContext.current_ctx === null) { + ImGuiContext.current_ctx = ctx; + } + return ctx; +} +// IMGUI_API void SetCurrentContext(ImGuiContext* ctx); +function SetCurrentContext(ctx) { + bind.SetCurrentContext((ctx === null) ? null : ctx.native); + ImGuiContext.current_ctx = ctx; +} +// IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert); +function DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx) { + return bind.DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx); +} +// Main +// IMGUI_API ImGuiIO& GetIO(); +function GetIO() { return new ImGuiIO(bind.GetIO()); } +// IMGUI_API void NewFrame(); // start a new ImGui frame, you can submit any command from this point until Render()/EndFrame(). +function NewFrame() { bind.NewFrame(); } +// IMGUI_API void EndFrame(); // ends the ImGui frame. automatically called by Render(), so most likely don't need to ever call that yourself directly. If you don't need to render you may call EndFrame() but you'll have wasted CPU already. If you don't need to render, better to not create any imgui windows instead! +function EndFrame() { bind.EndFrame(); } +// IMGUI_API void Render(); // ends the ImGui frame, finalize the draw data, then call your io.RenderDrawListsFn() function if set. +function Render() { bind.Render(); } +// IMGUI_API ImDrawData* GetDrawData(); // same value as passed to your io.RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame() +function GetDrawData() { + const draw_data = bind.GetDrawData(); + return (draw_data === null) ? null : new ImDrawData(draw_data); +} +// IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you +function GetMouseCursor() { return bind.GetMouseCursor(); } +// IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source. +function LoadIniSettingsFromMemory(ini_data, ini_size = 0) { bind.LoadIniSettingsFromMemory(ini_data); } +// IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings. +function SaveIniSettingsToMemory(out_ini_size = null) { return bind.SaveIniSettingsToMemory(); } + +var promise = createCommonjsModule(function (module, exports) { +(function(global){ + +// +// Check for native Promise and it has correct interface +// + +var NativePromise = global['Promise']; +var nativePromiseSupported = + NativePromise && + // Some of these methods are missing from + // Firefox/Chrome experimental implementations + 'resolve' in NativePromise && + 'reject' in NativePromise && + 'all' in NativePromise && + 'race' in NativePromise && + // Older version of the spec had a resolver object + // as the arg rather than a function + (function(){ + var resolve; + new NativePromise(function(r){ resolve = r; }); + return typeof resolve === 'function'; + })(); + + +// +// export if necessary +// + +if ( exports) +{ + // node.js + exports.Promise = nativePromiseSupported ? NativePromise : Promise; + exports.Polyfill = Promise; +} +else +{ + // AMD + { + // in browser add to global + if (!nativePromiseSupported) + global['Promise'] = Promise; + } +} + + +// +// Polyfill +// + +var PENDING = 'pending'; +var SEALED = 'sealed'; +var FULFILLED = 'fulfilled'; +var REJECTED = 'rejected'; +var NOOP = function(){}; + +function isArray(value) { + return Object.prototype.toString.call(value) === '[object Array]'; +} + +// async calls +var asyncSetTimer = typeof setImmediate !== 'undefined' ? setImmediate : setTimeout; +var asyncQueue = []; +var asyncTimer; + +function asyncFlush(){ + // run promise callbacks + for (var i = 0; i < asyncQueue.length; i++) + asyncQueue[i][0](asyncQueue[i][1]); + + // reset async asyncQueue + asyncQueue = []; + asyncTimer = false; +} + +function asyncCall(callback, arg){ + asyncQueue.push([callback, arg]); + + if (!asyncTimer) + { + asyncTimer = true; + asyncSetTimer(asyncFlush, 0); + } +} + + +function invokeResolver(resolver, promise) { + function resolvePromise(value) { + resolve(promise, value); + } + + function rejectPromise(reason) { + reject(promise, reason); + } + + try { + resolver(resolvePromise, rejectPromise); + } catch(e) { + rejectPromise(e); + } +} + +function invokeCallback(subscriber){ + var owner = subscriber.owner; + var settled = owner.state_; + var value = owner.data_; + var callback = subscriber[settled]; + var promise = subscriber.then; + + if (typeof callback === 'function') + { + settled = FULFILLED; + try { + value = callback(value); + } catch(e) { + reject(promise, e); + } + } + + if (!handleThenable(promise, value)) + { + if (settled === FULFILLED) + resolve(promise, value); + + if (settled === REJECTED) + reject(promise, value); + } +} + +function handleThenable(promise, value) { + var resolved; + + try { + if (promise === value) + throw new TypeError('A promises callback cannot return that same promise.'); + + if (value && (typeof value === 'function' || typeof value === 'object')) + { + var then = value.then; // then should be retrived only once + + if (typeof then === 'function') + { + then.call(value, function(val){ + if (!resolved) + { + resolved = true; + + if (value !== val) + resolve(promise, val); + else + fulfill(promise, val); + } + }, function(reason){ + if (!resolved) + { + resolved = true; + + reject(promise, reason); + } + }); + + return true; + } + } + } catch (e) { + if (!resolved) + reject(promise, e); + + return true; + } + + return false; +} + +function resolve(promise, value){ + if (promise === value || !handleThenable(promise, value)) + fulfill(promise, value); +} + +function fulfill(promise, value){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = value; + + asyncCall(publishFulfillment, promise); + } +} + +function reject(promise, reason){ + if (promise.state_ === PENDING) + { + promise.state_ = SEALED; + promise.data_ = reason; + + asyncCall(publishRejection, promise); + } +} + +function publish(promise) { + var callbacks = promise.then_; + promise.then_ = undefined; + + for (var i = 0; i < callbacks.length; i++) { + invokeCallback(callbacks[i]); + } +} + +function publishFulfillment(promise){ + promise.state_ = FULFILLED; + publish(promise); +} + +function publishRejection(promise){ + promise.state_ = REJECTED; + publish(promise); +} + +/** +* @class +*/ +function Promise(resolver){ + if (typeof resolver !== 'function') + throw new TypeError('Promise constructor takes a function argument'); + + if (this instanceof Promise === false) + throw new TypeError('Failed to construct \'Promise\': Please use the \'new\' operator, this object constructor cannot be called as a function.'); + + this.then_ = []; + + invokeResolver(resolver, this); +} + +Promise.prototype = { + constructor: Promise, + + state_: PENDING, + then_: null, + data_: undefined, + + then: function(onFulfillment, onRejection){ + var subscriber = { + owner: this, + then: new this.constructor(NOOP), + fulfilled: onFulfillment, + rejected: onRejection + }; + + if (this.state_ === FULFILLED || this.state_ === REJECTED) + { + // already resolved, call callback async + asyncCall(invokeCallback, subscriber); + } + else + { + // subscribe + this.then_.push(subscriber); + } + + return subscriber.then; + }, + + 'catch': function(onRejection) { + return this.then(null, onRejection); + } +}; + +Promise.all = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.all().'); + + return new Class(function(resolve, reject){ + var results = []; + var remaining = 0; + + function resolver(index){ + remaining++; + return function(value){ + results[index] = value; + if (!--remaining) + resolve(results); + }; + } + + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolver(i), reject); + else + results[i] = promise; + } + + if (!remaining) + resolve(results); + }); +}; + +Promise.race = function(promises){ + var Class = this; + + if (!isArray(promises)) + throw new TypeError('You must pass an array to Promise.race().'); + + return new Class(function(resolve, reject) { + for (var i = 0, promise; i < promises.length; i++) + { + promise = promises[i]; + + if (promise && typeof promise.then === 'function') + promise.then(resolve, reject); + else + resolve(promise); + } + }); +}; + +Promise.resolve = function(value){ + var Class = this; + + if (value && typeof value === 'object' && value.constructor === Class) + return value; + + return new Class(function(resolve){ + resolve(value); + }); +}; + +Promise.reject = function(reason){ + var Class = this; + + return new Class(function(resolve, reject){ + reject(reason); + }); +}; + +})(typeof window != 'undefined' ? window : typeof commonjsGlobal != 'undefined' ? commonjsGlobal : typeof self != 'undefined' ? self : commonjsGlobal); +}); +var promise_1 = promise.Promise; +var promise_2 = promise.Polyfill; + +/* +object-assign +(c) Sindre Sorhus +@license MIT +*/ +/* eslint-disable no-unused-vars */ +var getOwnPropertySymbols = Object.getOwnPropertySymbols; +var hasOwnProperty = Object.prototype.hasOwnProperty; +var propIsEnumerable = Object.prototype.propertyIsEnumerable; + +function toObject(val) { + if (val === null || val === undefined) { + throw new TypeError('Object.assign cannot be called with null or undefined'); + } + + return Object(val); +} + +function shouldUseNative() { + try { + if (!Object.assign) { + return false; + } + + // Detect buggy property enumeration order in older V8 versions. + + // https://bugs.chromium.org/p/v8/issues/detail?id=4118 + var test1 = new String('abc'); // eslint-disable-line no-new-wrappers + test1[5] = 'de'; + if (Object.getOwnPropertyNames(test1)[0] === '5') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test2 = {}; + for (var i = 0; i < 10; i++) { + test2['_' + String.fromCharCode(i)] = i; + } + var order2 = Object.getOwnPropertyNames(test2).map(function (n) { + return test2[n]; + }); + if (order2.join('') !== '0123456789') { + return false; + } + + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test3 = {}; + 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { + test3[letter] = letter; + }); + if (Object.keys(Object.assign({}, test3)).join('') !== + 'abcdefghijklmnopqrst') { + return false; + } + + return true; + } catch (err) { + // We don't expect any of the above to throw, but better to be safe. + return false; + } +} + +var objectAssign = shouldUseNative() ? Object.assign : function (target, source) { + var from; + var to = toObject(target); + var symbols; + + for (var s = 1; s < arguments.length; s++) { + from = Object(arguments[s]); + + for (var key in from) { + if (hasOwnProperty.call(from, key)) { + to[key] = from[key]; + } + } + + if (getOwnPropertySymbols) { + symbols = getOwnPropertySymbols(from); + for (var i = 0; i < symbols.length; i++) { + if (propIsEnumerable.call(from, symbols[i])) { + to[symbols[i]] = from[symbols[i]]; + } + } + } + } + + return to; +}; + +/*! + * @pixi/polyfill - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/polyfill is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Support for IE 9 - 11 which does not include Promises +if (!window.Promise) +{ + window.Promise = promise_2; +} + +// References: + +if (!Object.assign) +{ + Object.assign = objectAssign; +} + +var commonjsGlobal$1 = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +// References: +// http://paulirish.com/2011/requestanimationframe-for-smart-animating/ +// https://gist.github.com/1579671 +// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision +// https://gist.github.com/timhall/4078614 +// https://github.com/Financial-Times/polyfill-service/tree/master/polyfills/requestAnimationFrame + +// Expected to be used with Browserfiy +// Browserify automatically detects the use of `global` and passes the +// correct reference of `global`, `self`, and finally `window` + +var ONE_FRAME_TIME = 16; + +// Date.now +if (!(Date.now && Date.prototype.getTime)) +{ + Date.now = function now() + { + return new Date().getTime(); + }; +} + +// performance.now +if (!(commonjsGlobal$1.performance && commonjsGlobal$1.performance.now)) +{ + var startTime = Date.now(); + + if (!commonjsGlobal$1.performance) + { + commonjsGlobal$1.performance = {}; + } + + commonjsGlobal$1.performance.now = function () { return Date.now() - startTime; }; +} + +// requestAnimationFrame +var lastTime = Date.now(); +var vendors = ['ms', 'moz', 'webkit', 'o']; + +for (var x = 0; x < vendors.length && !commonjsGlobal$1.requestAnimationFrame; ++x) +{ + var p = vendors[x]; + + commonjsGlobal$1.requestAnimationFrame = commonjsGlobal$1[(p + "RequestAnimationFrame")]; + commonjsGlobal$1.cancelAnimationFrame = commonjsGlobal$1[(p + "CancelAnimationFrame")] || commonjsGlobal$1[(p + "CancelRequestAnimationFrame")]; +} + +if (!commonjsGlobal$1.requestAnimationFrame) +{ + commonjsGlobal$1.requestAnimationFrame = function (callback) { + if (typeof callback !== 'function') + { + throw new TypeError((callback + "is not a function")); + } + + var currentTime = Date.now(); + var delay = ONE_FRAME_TIME + lastTime - currentTime; + + if (delay < 0) + { + delay = 0; + } + + lastTime = currentTime; + + return setTimeout(function () { + lastTime = Date.now(); + callback(performance.now()); + }, delay); + }; +} + +if (!commonjsGlobal$1.cancelAnimationFrame) +{ + commonjsGlobal$1.cancelAnimationFrame = function (id) { return clearTimeout(id); }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign + +if (!Math.sign) +{ + Math.sign = function mathSign(x) + { + x = Number(x); + + if (x === 0 || isNaN(x)) + { + return x; + } + + return x > 0 ? 1 : -1; + }; +} + +// References: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger + +if (!Number.isInteger) +{ + Number.isInteger = function numberIsInteger(value) + { + return typeof value === 'number' && isFinite(value) && Math.floor(value) === value; + }; +} + +if (!window.ArrayBuffer) +{ + window.ArrayBuffer = Array; +} + +if (!window.Float32Array) +{ + window.Float32Array = Array; +} + +if (!window.Uint32Array) +{ + window.Uint32Array = Array; +} + +if (!window.Uint16Array) +{ + window.Uint16Array = Array; +} + +if (!window.Uint8Array) +{ + window.Uint8Array = Array; +} + +if (!window.Int32Array) +{ + window.Int32Array = Array; +} + +var isMobile = createCommonjsModule(function (module) { +(function(global) { + var apple_phone = /iPhone/i, + apple_ipod = /iPod/i, + apple_tablet = /iPad/i, + android_phone = /\bAndroid(?:.+)Mobile\b/i, // Match 'Android' AND 'Mobile' + android_tablet = /Android/i, + amazon_phone = /\bAndroid(?:.+)SD4930UR\b/i, + amazon_tablet = /\bAndroid(?:.+)(?:KF[A-Z]{2,4})\b/i, + windows_phone = /Windows Phone/i, + windows_tablet = /\bWindows(?:.+)ARM\b/i, // Match 'Windows' AND 'ARM' + other_blackberry = /BlackBerry/i, + other_blackberry_10 = /BB10/i, + other_opera = /Opera Mini/i, + other_chrome = /\b(CriOS|Chrome)(?:.+)Mobile/i, + other_firefox = /Mobile(?:.+)Firefox\b/i; // Match 'Mobile' AND 'Firefox' + + function match(regex, userAgent) { + return regex.test(userAgent); + } + + function isMobile(userAgent) { + var ua = + userAgent || + (typeof navigator !== 'undefined' ? navigator.userAgent : ''); + + // Facebook mobile app's integrated browser adds a bunch of strings that + // match everything. Strip it out if it exists. + var tmp = ua.split('[FBAN'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + // Twitter mobile app's integrated browser on iPad adds a "Twitter for + // iPhone" string. Same probably happens on other tablet platforms. + // This will confuse detection so strip it out if it exists. + tmp = ua.split('Twitter'); + if (typeof tmp[1] !== 'undefined') { + ua = tmp[0]; + } + + var result = { + apple: { + phone: match(apple_phone, ua) && !match(windows_phone, ua), + ipod: match(apple_ipod, ua), + tablet: + !match(apple_phone, ua) && + match(apple_tablet, ua) && + !match(windows_phone, ua), + device: + (match(apple_phone, ua) || + match(apple_ipod, ua) || + match(apple_tablet, ua)) && + !match(windows_phone, ua) + }, + amazon: { + phone: match(amazon_phone, ua), + tablet: !match(amazon_phone, ua) && match(amazon_tablet, ua), + device: match(amazon_phone, ua) || match(amazon_tablet, ua) + }, + android: { + phone: + (!match(windows_phone, ua) && match(amazon_phone, ua)) || + (!match(windows_phone, ua) && match(android_phone, ua)), + tablet: + !match(windows_phone, ua) && + !match(amazon_phone, ua) && + !match(android_phone, ua) && + (match(amazon_tablet, ua) || match(android_tablet, ua)), + device: + (!match(windows_phone, ua) && + (match(amazon_phone, ua) || + match(amazon_tablet, ua) || + match(android_phone, ua) || + match(android_tablet, ua))) || + match(/\bokhttp\b/i, ua) + }, + windows: { + phone: match(windows_phone, ua), + tablet: match(windows_tablet, ua), + device: match(windows_phone, ua) || match(windows_tablet, ua) + }, + other: { + blackberry: match(other_blackberry, ua), + blackberry10: match(other_blackberry_10, ua), + opera: match(other_opera, ua), + firefox: match(other_firefox, ua), + chrome: match(other_chrome, ua), + device: + match(other_blackberry, ua) || + match(other_blackberry_10, ua) || + match(other_opera, ua) || + match(other_firefox, ua) || + match(other_chrome, ua) + } + }; + (result.any = + result.apple.device || + result.android.device || + result.windows.device || + result.other.device), + // excludes 'other' devices and ipods, targeting touchscreen phones + (result.phone = + result.apple.phone || result.android.phone || result.windows.phone), + (result.tablet = + result.apple.tablet || result.android.tablet || result.windows.tablet); + + return result; + } + + if ( + + module.exports && + typeof window === 'undefined' + ) { + // Node.js + module.exports = isMobile; + } else if ( + + module.exports && + typeof window !== 'undefined' + ) { + // Browserify + module.exports = isMobile(); + module.exports.isMobile = isMobile; + } else { + global.isMobile = isMobile(); + } +})(commonjsGlobal); +}); +var isMobile_1 = isMobile.isMobile; + +/*! + * @pixi/settings - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/settings is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The maximum recommended texture units to use. + * In theory the bigger the better, and for desktop we'll use as many as we can. + * But some mobile devices slow down if there is to many branches in the shader. + * So in practice there seems to be a sweet spot size that varies depending on the device. + * + * In v4, all mobile devices were limited to 4 texture units because for this. + * In v5, we allow all texture units to be used on modern Apple or Android devices. + * + * @private + * @param {number} max + * @returns {number} + */ +function maxRecommendedTextures(max) +{ + var allowMax = true; + + if (isMobile.tablet || isMobile.phone) + { + allowMax = false; + + if (isMobile.apple.device) + { + var match = (navigator.userAgent).match(/OS (\d+)_(\d+)?/); + + if (match) + { + var majorVersion = parseInt(match[1], 10); + + // All texture units can be used on devices that support ios 11 or above + if (majorVersion >= 11) + { + allowMax = true; + } + } + } + if (isMobile.android.device) + { + var match$1 = (navigator.userAgent).match(/Android\s([0-9.]*)/); + + if (match$1) + { + var majorVersion$1 = parseInt(match$1[1], 10); + + // All texture units can be used on devices that support Android 7 (Nougat) or above + if (majorVersion$1 >= 7) + { + allowMax = true; + } + } + } + } + + return allowMax ? max : 4; +} + +/** + * Uploading the same buffer multiple times in a single frame can cause performance issues. + * Apparent on iOS so only check for that at the moment + * This check may become more complex if this issue pops up elsewhere. + * + * @private + * @returns {boolean} + */ +function canUploadSameBuffer() +{ + return !isMobile.apple.device; +} + +/** + * User's customizable globals for overriding the default PIXI settings, such + * as a renderer's default resolution, framerate, float precision, etc. + * @example + * // Use the native window resolution as the default resolution + * // will support high-density displays when rendering + * PIXI.settings.RESOLUTION = window.devicePixelRatio; + * + * // Disable interpolation when scaling, will make texture be pixelated + * PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST; + * @namespace PIXI.settings + */ +var settings = { + + /** + * If set to true WebGL will attempt make textures mimpaped by default. + * Mipmapping will only succeed if the base texture uploaded has power of two dimensions. + * + * @static + * @name MIPMAP_TEXTURES + * @memberof PIXI.settings + * @type {PIXI.MIPMAP_MODES} + * @default PIXI.MIPMAP_MODES.POW2 + */ + MIPMAP_TEXTURES: 1, + + /** + * Default anisotropic filtering level of textures. + * Usually from 0 to 16 + * + * @static + * @name ANISOTROPIC_LEVEL + * @memberof PIXI.settings + * @type {number} + * @default 0 + */ + ANISOTROPIC_LEVEL: 0, + + /** + * Default resolution / device pixel ratio of the renderer. + * + * @static + * @name RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + RESOLUTION: 1, + + /** + * Default filter resolution. + * + * @static + * @name FILTER_RESOLUTION + * @memberof PIXI.settings + * @type {number} + * @default 1 + */ + FILTER_RESOLUTION: 1, + + /** + * The maximum textures that this device supports. + * + * @static + * @name SPRITE_MAX_TEXTURES + * @memberof PIXI.settings + * @type {number} + * @default 32 + */ + SPRITE_MAX_TEXTURES: maxRecommendedTextures(32), + + // TODO: maybe change to SPRITE.BATCH_SIZE: 2000 + // TODO: maybe add PARTICLE.BATCH_SIZE: 15000 + + /** + * The default sprite batch size. + * + * The default aims to balance desktop and mobile devices. + * + * @static + * @name SPRITE_BATCH_SIZE + * @memberof PIXI.settings + * @type {number} + * @default 4096 + */ + SPRITE_BATCH_SIZE: 4096, + + /** + * The default render options if none are supplied to {@link PIXI.Renderer} + * or {@link PIXI.CanvasRenderer}. + * + * @static + * @name RENDER_OPTIONS + * @memberof PIXI.settings + * @type {object} + * @property {HTMLCanvasElement} view=null + * @property {number} resolution=1 + * @property {boolean} antialias=false + * @property {boolean} forceFXAA=false + * @property {boolean} autoDensity=false + * @property {boolean} transparent=false + * @property {number} backgroundColor=0x000000 + * @property {boolean} clearBeforeRender=true + * @property {boolean} preserveDrawingBuffer=false + * @property {number} width=800 + * @property {number} height=600 + * @property {boolean} legacy=false + */ + RENDER_OPTIONS: { + view: null, + antialias: false, + forceFXAA: false, + autoDensity: false, + transparent: false, + backgroundColor: 0x000000, + clearBeforeRender: true, + preserveDrawingBuffer: false, + width: 800, + height: 600, + legacy: false, + }, + + /** + * Default Garbage Collection mode. + * + * @static + * @name GC_MODE + * @memberof PIXI.settings + * @type {PIXI.GC_MODES} + * @default PIXI.GC_MODES.AUTO + */ + GC_MODE: 0, + + /** + * Default Garbage Collection max idle. + * + * @static + * @name GC_MAX_IDLE + * @memberof PIXI.settings + * @type {number} + * @default 3600 + */ + GC_MAX_IDLE: 60 * 60, + + /** + * Default Garbage Collection maximum check count. + * + * @static + * @name GC_MAX_CHECK_COUNT + * @memberof PIXI.settings + * @type {number} + * @default 600 + */ + GC_MAX_CHECK_COUNT: 60 * 10, + + /** + * Default wrap modes that are supported by pixi. + * + * @static + * @name WRAP_MODE + * @memberof PIXI.settings + * @type {PIXI.WRAP_MODES} + * @default PIXI.WRAP_MODES.CLAMP + */ + WRAP_MODE: 33071, + + /** + * Default scale mode for textures. + * + * @static + * @name SCALE_MODE + * @memberof PIXI.settings + * @type {PIXI.SCALE_MODES} + * @default PIXI.SCALE_MODES.LINEAR + */ + SCALE_MODE: 1, + + /** + * Default specify float precision in vertex shader. + * + * @static + * @name PRECISION_VERTEX + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.HIGH + */ + PRECISION_VERTEX: 'highp', + + /** + * Default specify float precision in fragment shader. + * iOS is best set at highp due to https://github.com/pixijs/pixi.js/issues/3742 + * + * @static + * @name PRECISION_FRAGMENT + * @memberof PIXI.settings + * @type {PIXI.PRECISION} + * @default PIXI.PRECISION.MEDIUM + */ + PRECISION_FRAGMENT: isMobile.apple.device ? 'highp' : 'mediump', + + /** + * Can we upload the same buffer in a single frame? + * + * @static + * @name CAN_UPLOAD_SAME_BUFFER + * @memberof PIXI.settings + * @type {boolean} + */ + CAN_UPLOAD_SAME_BUFFER: canUploadSameBuffer(), + + /** + * Enables bitmap creation before image load. This feature is experimental. + * + * @static + * @name CREATE_IMAGE_BITMAP + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + CREATE_IMAGE_BITMAP: false, + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * + * @static + * @constant + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ + ROUND_PIXELS: false, +}; + +var eventemitter3 = createCommonjsModule(function (module) { + +var has = Object.prototype.hasOwnProperty + , prefix = '~'; + +/** + * Constructor to create a storage for our `EE` objects. + * An `Events` instance is a plain object whose properties are event names. + * + * @constructor + * @private + */ +function Events() {} + +// +// We try to not inherit from `Object.prototype`. In some engines creating an +// instance in this way is faster than calling `Object.create(null)` directly. +// If `Object.create(null)` is not supported we prefix the event names with a +// character to make sure that the built-in object properties are not +// overridden or used as an attack vector. +// +if (Object.create) { + Events.prototype = Object.create(null); + + // + // This hack is needed because the `__proto__` property is still inherited in + // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5. + // + if (!new Events().__proto__) prefix = false; +} + +/** + * Representation of a single event listener. + * + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} [once=false] Specify if the listener is a one-time listener. + * @constructor + * @private + */ +function EE(fn, context, once) { + this.fn = fn; + this.context = context; + this.once = once || false; +} + +/** + * Add a listener for a given event. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} context The context to invoke the listener with. + * @param {Boolean} once Specify if the listener is a one-time listener. + * @returns {EventEmitter} + * @private + */ +function addListener(emitter, event, fn, context, once) { + if (typeof fn !== 'function') { + throw new TypeError('The listener must be a function'); + } + + var listener = new EE(fn, context || emitter, once) + , evt = prefix ? prefix + event : event; + + if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++; + else if (!emitter._events[evt].fn) emitter._events[evt].push(listener); + else emitter._events[evt] = [emitter._events[evt], listener]; + + return emitter; +} + +/** + * Clear event by name. + * + * @param {EventEmitter} emitter Reference to the `EventEmitter` instance. + * @param {(String|Symbol)} evt The Event name. + * @private + */ +function clearEvent(emitter, evt) { + if (--emitter._eventsCount === 0) emitter._events = new Events(); + else delete emitter._events[evt]; +} + +/** + * Minimal `EventEmitter` interface that is molded against the Node.js + * `EventEmitter` interface. + * + * @constructor + * @public + */ +function EventEmitter() { + this._events = new Events(); + this._eventsCount = 0; +} + +/** + * Return an array listing the events for which the emitter has registered + * listeners. + * + * @returns {Array} + * @public + */ +EventEmitter.prototype.eventNames = function eventNames() { + var names = [] + , events + , name; + + if (this._eventsCount === 0) return names; + + for (name in (events = this._events)) { + if (has.call(events, name)) names.push(prefix ? name.slice(1) : name); + } + + if (Object.getOwnPropertySymbols) { + return names.concat(Object.getOwnPropertySymbols(events)); + } + + return names; +}; + +/** + * Return the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Array} The registered listeners. + * @public + */ +EventEmitter.prototype.listeners = function listeners(event) { + var evt = prefix ? prefix + event : event + , handlers = this._events[evt]; + + if (!handlers) return []; + if (handlers.fn) return [handlers.fn]; + + for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) { + ee[i] = handlers[i].fn; + } + + return ee; +}; + +/** + * Return the number of listeners listening to a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Number} The number of listeners. + * @public + */ +EventEmitter.prototype.listenerCount = function listenerCount(event) { + var evt = prefix ? prefix + event : event + , listeners = this._events[evt]; + + if (!listeners) return 0; + if (listeners.fn) return 1; + return listeners.length; +}; + +/** + * Calls each of the listeners registered for a given event. + * + * @param {(String|Symbol)} event The event name. + * @returns {Boolean} `true` if the event had listeners, else `false`. + * @public + */ +EventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return false; + + var listeners = this._events[evt] + , len = arguments.length + , args + , i; + + if (listeners.fn) { + if (listeners.once) this.removeListener(event, listeners.fn, undefined, true); + + switch (len) { + case 1: return listeners.fn.call(listeners.context), true; + case 2: return listeners.fn.call(listeners.context, a1), true; + case 3: return listeners.fn.call(listeners.context, a1, a2), true; + case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true; + case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true; + case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true; + } + + for (i = 1, args = new Array(len -1); i < len; i++) { + args[i - 1] = arguments[i]; + } + + listeners.fn.apply(listeners.context, args); + } else { + var length = listeners.length + , j; + + for (i = 0; i < length; i++) { + if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true); + + switch (len) { + case 1: listeners[i].fn.call(listeners[i].context); break; + case 2: listeners[i].fn.call(listeners[i].context, a1); break; + case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break; + case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break; + default: + if (!args) for (j = 1, args = new Array(len -1); j < len; j++) { + args[j - 1] = arguments[j]; + } + + listeners[i].fn.apply(listeners[i].context, args); + } + } + } + + return true; +}; + +/** + * Add a listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.on = function on(event, fn, context) { + return addListener(this, event, fn, context, false); +}; + +/** + * Add a one-time listener for a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn The listener function. + * @param {*} [context=this] The context to invoke the listener with. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.once = function once(event, fn, context) { + return addListener(this, event, fn, context, true); +}; + +/** + * Remove the listeners of a given event. + * + * @param {(String|Symbol)} event The event name. + * @param {Function} fn Only remove the listeners that match this function. + * @param {*} context Only remove the listeners that have this context. + * @param {Boolean} once Only remove one-time listeners. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) { + var evt = prefix ? prefix + event : event; + + if (!this._events[evt]) return this; + if (!fn) { + clearEvent(this, evt); + return this; + } + + var listeners = this._events[evt]; + + if (listeners.fn) { + if ( + listeners.fn === fn && + (!once || listeners.once) && + (!context || listeners.context === context) + ) { + clearEvent(this, evt); + } + } else { + for (var i = 0, events = [], length = listeners.length; i < length; i++) { + if ( + listeners[i].fn !== fn || + (once && !listeners[i].once) || + (context && listeners[i].context !== context) + ) { + events.push(listeners[i]); + } + } + + // + // Reset the array, or remove it completely if we have no more listeners. + // + if (events.length) this._events[evt] = events.length === 1 ? events[0] : events; + else clearEvent(this, evt); + } + + return this; +}; + +/** + * Remove all listeners, or those of the specified event. + * + * @param {(String|Symbol)} [event] The event name. + * @returns {EventEmitter} `this`. + * @public + */ +EventEmitter.prototype.removeAllListeners = function removeAllListeners(event) { + var evt; + + if (event) { + evt = prefix ? prefix + event : event; + if (this._events[evt]) clearEvent(this, evt); + } else { + this._events = new Events(); + this._eventsCount = 0; + } + + return this; +}; + +// +// Alias methods names because people roll like that. +// +EventEmitter.prototype.off = EventEmitter.prototype.removeListener; +EventEmitter.prototype.addListener = EventEmitter.prototype.on; + +// +// Expose the prefix. +// +EventEmitter.prefixed = prefix; + +// +// Allow `EventEmitter` to be imported as module namespace. +// +EventEmitter.EventEmitter = EventEmitter; + +// +// Expose the module. +// +{ + module.exports = EventEmitter; +} +}); + +var earcut_1 = earcut; +var default_1 = earcut; + +function earcut(data, holeIndices, dim) { + + dim = dim || 2; + + var hasHoles = holeIndices && holeIndices.length, + outerLen = hasHoles ? holeIndices[0] * dim : data.length, + outerNode = linkedList(data, 0, outerLen, dim, true), + triangles = []; + + if (!outerNode || outerNode.next === outerNode.prev) return triangles; + + var minX, minY, maxX, maxY, x, y, invSize; + + if (hasHoles) outerNode = eliminateHoles(data, holeIndices, outerNode, dim); + + // if the shape is not too simple, we'll use z-order curve hash later; calculate polygon bbox + if (data.length > 80 * dim) { + minX = maxX = data[0]; + minY = maxY = data[1]; + + for (var i = dim; i < outerLen; i += dim) { + x = data[i]; + y = data[i + 1]; + if (x < minX) minX = x; + if (y < minY) minY = y; + if (x > maxX) maxX = x; + if (y > maxY) maxY = y; + } + + // minX, minY and invSize are later used to transform coords into integers for z-order calculation + invSize = Math.max(maxX - minX, maxY - minY); + invSize = invSize !== 0 ? 1 / invSize : 0; + } + + earcutLinked(outerNode, triangles, dim, minX, minY, invSize); + + return triangles; +} + +// create a circular doubly linked list from polygon points in the specified winding order +function linkedList(data, start, end, dim, clockwise) { + var i, last; + + if (clockwise === (signedArea(data, start, end, dim) > 0)) { + for (i = start; i < end; i += dim) last = insertNode(i, data[i], data[i + 1], last); + } else { + for (i = end - dim; i >= start; i -= dim) last = insertNode(i, data[i], data[i + 1], last); + } + + if (last && equals(last, last.next)) { + removeNode(last); + last = last.next; + } + + return last; +} + +// eliminate colinear or duplicate points +function filterPoints(start, end) { + if (!start) return start; + if (!end) end = start; + + var p = start, + again; + do { + again = false; + + if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) { + removeNode(p); + p = end = p.prev; + if (p === p.next) break; + again = true; + + } else { + p = p.next; + } + } while (again || p !== end); + + return end; +} + +// main ear slicing loop which triangulates a polygon (given as a linked list) +function earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) { + if (!ear) return; + + // interlink polygon nodes in z-order + if (!pass && invSize) indexCurve(ear, minX, minY, invSize); + + var stop = ear, + prev, next; + + // iterate through ears, slicing them one by one + while (ear.prev !== ear.next) { + prev = ear.prev; + next = ear.next; + + if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) { + // cut off the triangle + triangles.push(prev.i / dim); + triangles.push(ear.i / dim); + triangles.push(next.i / dim); + + removeNode(ear); + + // skipping the next vertex leads to less sliver triangles + ear = next.next; + stop = next.next; + + continue; + } + + ear = next; + + // if we looped through the whole remaining polygon and can't find any more ears + if (ear === stop) { + // try filtering points and slicing again + if (!pass) { + earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1); + + // if this didn't work, try curing all small self-intersections locally + } else if (pass === 1) { + ear = cureLocalIntersections(filterPoints(ear), triangles, dim); + earcutLinked(ear, triangles, dim, minX, minY, invSize, 2); + + // as a last resort, try splitting the remaining polygon into two + } else if (pass === 2) { + splitEarcut(ear, triangles, dim, minX, minY, invSize); + } + + break; + } + } +} + +// check whether a polygon node forms a valid ear with adjacent nodes +function isEar(ear) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // now make sure we don't have other points inside the potential ear + var p = ear.next.next; + + while (p !== ear.prev) { + if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.next; + } + + return true; +} + +function isEarHashed(ear, minX, minY, invSize) { + var a = ear.prev, + b = ear, + c = ear.next; + + if (area(a, b, c) >= 0) return false; // reflex, can't be an ear + + // triangle bbox; min & max are calculated like this for speed + var minTX = a.x < b.x ? (a.x < c.x ? a.x : c.x) : (b.x < c.x ? b.x : c.x), + minTY = a.y < b.y ? (a.y < c.y ? a.y : c.y) : (b.y < c.y ? b.y : c.y), + maxTX = a.x > b.x ? (a.x > c.x ? a.x : c.x) : (b.x > c.x ? b.x : c.x), + maxTY = a.y > b.y ? (a.y > c.y ? a.y : c.y) : (b.y > c.y ? b.y : c.y); + + // z-order range for the current triangle bbox; + var minZ = zOrder(minTX, minTY, minX, minY, invSize), + maxZ = zOrder(maxTX, maxTY, minX, minY, invSize); + + var p = ear.prevZ, + n = ear.nextZ; + + // look for points inside the triangle in both directions + while (p && p.z >= minZ && n && n.z <= maxZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + // look for remaining points in decreasing z-order + while (p && p.z >= minZ) { + if (p !== ear.prev && p !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) && + area(p.prev, p, p.next) >= 0) return false; + p = p.prevZ; + } + + // look for remaining points in increasing z-order + while (n && n.z <= maxZ) { + if (n !== ear.prev && n !== ear.next && + pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) && + area(n.prev, n, n.next) >= 0) return false; + n = n.nextZ; + } + + return true; +} + +// go through all polygon nodes and cure small local self-intersections +function cureLocalIntersections(start, triangles, dim) { + var p = start; + do { + var a = p.prev, + b = p.next.next; + + if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) { + + triangles.push(a.i / dim); + triangles.push(p.i / dim); + triangles.push(b.i / dim); + + // remove two nodes involved + removeNode(p); + removeNode(p.next); + + p = start = b; + } + p = p.next; + } while (p !== start); + + return filterPoints(p); +} + +// try splitting polygon into two and triangulate them independently +function splitEarcut(start, triangles, dim, minX, minY, invSize) { + // look for a valid diagonal that divides the polygon into two + var a = start; + do { + var b = a.next.next; + while (b !== a.prev) { + if (a.i !== b.i && isValidDiagonal(a, b)) { + // split the polygon in two by the diagonal + var c = splitPolygon(a, b); + + // filter colinear points around the cuts + a = filterPoints(a, a.next); + c = filterPoints(c, c.next); + + // run earcut on each half + earcutLinked(a, triangles, dim, minX, minY, invSize); + earcutLinked(c, triangles, dim, minX, minY, invSize); + return; + } + b = b.next; + } + a = a.next; + } while (a !== start); +} + +// link every hole into the outer loop, producing a single-ring polygon without holes +function eliminateHoles(data, holeIndices, outerNode, dim) { + var queue = [], + i, len, start, end, list; + + for (i = 0, len = holeIndices.length; i < len; i++) { + start = holeIndices[i] * dim; + end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + list = linkedList(data, start, end, dim, false); + if (list === list.next) list.steiner = true; + queue.push(getLeftmost(list)); + } + + queue.sort(compareX); + + // process holes from left to right + for (i = 0; i < queue.length; i++) { + eliminateHole(queue[i], outerNode); + outerNode = filterPoints(outerNode, outerNode.next); + } + + return outerNode; +} + +function compareX(a, b) { + return a.x - b.x; +} + +// find a bridge between vertices that connects hole with an outer ring and and link it +function eliminateHole(hole, outerNode) { + outerNode = findHoleBridge(hole, outerNode); + if (outerNode) { + var b = splitPolygon(outerNode, hole); + filterPoints(b, b.next); + } +} + +// David Eberly's algorithm for finding a bridge between hole and outer polygon +function findHoleBridge(hole, outerNode) { + var p = outerNode, + hx = hole.x, + hy = hole.y, + qx = -Infinity, + m; + + // find a segment intersected by a ray from the hole's leftmost point to the left; + // segment's endpoint with lesser x will be potential connection point + do { + if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) { + var x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y); + if (x <= hx && x > qx) { + qx = x; + if (x === hx) { + if (hy === p.y) return p; + if (hy === p.next.y) return p.next; + } + m = p.x < p.next.x ? p : p.next; + } + } + p = p.next; + } while (p !== outerNode); + + if (!m) return null; + + if (hx === qx) return m; // hole touches outer segment; pick leftmost endpoint + + // look for points inside the triangle of hole point, segment intersection and endpoint; + // if there are no points found, we have a valid connection; + // otherwise choose the point of the minimum angle with the ray as connection point + + var stop = m, + mx = m.x, + my = m.y, + tanMin = Infinity, + tan; + + p = m; + + do { + if (hx >= p.x && p.x >= mx && hx !== p.x && + pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) { + + tan = Math.abs(hy - p.y) / (hx - p.x); // tangential + + if (locallyInside(p, hole) && + (tan < tanMin || (tan === tanMin && (p.x > m.x || (p.x === m.x && sectorContainsSector(m, p)))))) { + m = p; + tanMin = tan; + } + } + + p = p.next; + } while (p !== stop); + + return m; +} + +// whether sector in vertex m contains sector in vertex p in the same coordinates +function sectorContainsSector(m, p) { + return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0; +} + +// interlink polygon nodes in z-order +function indexCurve(start, minX, minY, invSize) { + var p = start; + do { + if (p.z === null) p.z = zOrder(p.x, p.y, minX, minY, invSize); + p.prevZ = p.prev; + p.nextZ = p.next; + p = p.next; + } while (p !== start); + + p.prevZ.nextZ = null; + p.prevZ = null; + + sortLinked(p); +} + +// Simon Tatham's linked list merge sort algorithm +// http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html +function sortLinked(list) { + var i, p, q, e, tail, numMerges, pSize, qSize, + inSize = 1; + + do { + p = list; + list = null; + tail = null; + numMerges = 0; + + while (p) { + numMerges++; + q = p; + pSize = 0; + for (i = 0; i < inSize; i++) { + pSize++; + q = q.nextZ; + if (!q) break; + } + qSize = inSize; + + while (pSize > 0 || (qSize > 0 && q)) { + + if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) { + e = p; + p = p.nextZ; + pSize--; + } else { + e = q; + q = q.nextZ; + qSize--; + } + + if (tail) tail.nextZ = e; + else list = e; + + e.prevZ = tail; + tail = e; + } + + p = q; + } + + tail.nextZ = null; + inSize *= 2; + + } while (numMerges > 1); + + return list; +} + +// z-order of a point given coords and inverse of the longer side of data bbox +function zOrder(x, y, minX, minY, invSize) { + // coords are transformed into non-negative 15-bit integer range + x = 32767 * (x - minX) * invSize; + y = 32767 * (y - minY) * invSize; + + x = (x | (x << 8)) & 0x00FF00FF; + x = (x | (x << 4)) & 0x0F0F0F0F; + x = (x | (x << 2)) & 0x33333333; + x = (x | (x << 1)) & 0x55555555; + + y = (y | (y << 8)) & 0x00FF00FF; + y = (y | (y << 4)) & 0x0F0F0F0F; + y = (y | (y << 2)) & 0x33333333; + y = (y | (y << 1)) & 0x55555555; + + return x | (y << 1); +} + +// find the leftmost node of a polygon ring +function getLeftmost(start) { + var p = start, + leftmost = start; + do { + if (p.x < leftmost.x || (p.x === leftmost.x && p.y < leftmost.y)) leftmost = p; + p = p.next; + } while (p !== start); + + return leftmost; +} + +// check if a point lies within a convex triangle +function pointInTriangle(ax, ay, bx, by, cx, cy, px, py) { + return (cx - px) * (ay - py) - (ax - px) * (cy - py) >= 0 && + (ax - px) * (by - py) - (bx - px) * (ay - py) >= 0 && + (bx - px) * (cy - py) - (cx - px) * (by - py) >= 0; +} + +// check if a diagonal between two polygon nodes is valid (lies in polygon interior) +function isValidDiagonal(a, b) { + return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && // dones't intersect other edges + (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && // locally visible + (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors + equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case +} + +// signed area of a triangle +function area(p, q, r) { + return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y); +} + +// check if two points are equal +function equals(p1, p2) { + return p1.x === p2.x && p1.y === p2.y; +} + +// check if two segments intersect +function intersects(p1, q1, p2, q2) { + var o1 = sign(area(p1, q1, p2)); + var o2 = sign(area(p1, q1, q2)); + var o3 = sign(area(p2, q2, p1)); + var o4 = sign(area(p2, q2, q1)); + + if (o1 !== o2 && o3 !== o4) return true; // general case + + if (o1 === 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p1q1 + if (o2 === 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p1q1 + if (o3 === 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p2q2 + if (o4 === 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p2q2 + + return false; +} + +// for collinear points p, q, r, check if point q lies on segment pr +function onSegment(p, q, r) { + return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y); +} + +function sign(num) { + return num > 0 ? 1 : num < 0 ? -1 : 0; +} + +// check if a polygon diagonal intersects any polygon segments +function intersectsPolygon(a, b) { + var p = a; + do { + if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i && + intersects(p, p.next, a, b)) return true; + p = p.next; + } while (p !== a); + + return false; +} + +// check if a polygon diagonal is locally inside the polygon +function locallyInside(a, b) { + return area(a.prev, a, a.next) < 0 ? + area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 : + area(a, b, a.prev) < 0 || area(a, a.next, b) < 0; +} + +// check if the middle point of a polygon diagonal is inside the polygon +function middleInside(a, b) { + var p = a, + inside = false, + px = (a.x + b.x) / 2, + py = (a.y + b.y) / 2; + do { + if (((p.y > py) !== (p.next.y > py)) && p.next.y !== p.y && + (px < (p.next.x - p.x) * (py - p.y) / (p.next.y - p.y) + p.x)) + inside = !inside; + p = p.next; + } while (p !== a); + + return inside; +} + +// link two polygon vertices with a bridge; if the vertices belong to the same ring, it splits polygon into two; +// if one belongs to the outer ring and another to a hole, it merges it into a single ring +function splitPolygon(a, b) { + var a2 = new Node(a.i, a.x, a.y), + b2 = new Node(b.i, b.x, b.y), + an = a.next, + bp = b.prev; + + a.next = b; + b.prev = a; + + a2.next = an; + an.prev = a2; + + b2.next = a2; + a2.prev = b2; + + bp.next = b2; + b2.prev = bp; + + return b2; +} + +// create a node and optionally link it with previous one (in a circular doubly linked list) +function insertNode(i, x, y, last) { + var p = new Node(i, x, y); + + if (!last) { + p.prev = p; + p.next = p; + + } else { + p.next = last.next; + p.prev = last; + last.next.prev = p; + last.next = p; + } + return p; +} + +function removeNode(p) { + p.next.prev = p.prev; + p.prev.next = p.next; + + if (p.prevZ) p.prevZ.nextZ = p.nextZ; + if (p.nextZ) p.nextZ.prevZ = p.prevZ; +} + +function Node(i, x, y) { + // vertex index in coordinates array + this.i = i; + + // vertex coordinates + this.x = x; + this.y = y; + + // previous and next vertex nodes in a polygon ring + this.prev = null; + this.next = null; + + // z-order curve value + this.z = null; + + // previous and next nodes in z-order + this.prevZ = null; + this.nextZ = null; + + // indicates whether this is a steiner point + this.steiner = false; +} + +// return a percentage difference between the polygon area and its triangulation area; +// used to verify correctness of triangulation +earcut.deviation = function (data, holeIndices, dim, triangles) { + var hasHoles = holeIndices && holeIndices.length; + var outerLen = hasHoles ? holeIndices[0] * dim : data.length; + + var polygonArea = Math.abs(signedArea(data, 0, outerLen, dim)); + if (hasHoles) { + for (var i = 0, len = holeIndices.length; i < len; i++) { + var start = holeIndices[i] * dim; + var end = i < len - 1 ? holeIndices[i + 1] * dim : data.length; + polygonArea -= Math.abs(signedArea(data, start, end, dim)); + } + } + + var trianglesArea = 0; + for (i = 0; i < triangles.length; i += 3) { + var a = triangles[i] * dim; + var b = triangles[i + 1] * dim; + var c = triangles[i + 2] * dim; + trianglesArea += Math.abs( + (data[a] - data[c]) * (data[b + 1] - data[a + 1]) - + (data[a] - data[b]) * (data[c + 1] - data[a + 1])); + } + + return polygonArea === 0 && trianglesArea === 0 ? 0 : + Math.abs((trianglesArea - polygonArea) / polygonArea); +}; + +function signedArea(data, start, end, dim) { + var sum = 0; + for (var i = start, j = end - dim; i < end; i += dim) { + sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]); + j = i; + } + return sum; +} + +// turn a polygon in a multi-dimensional array form (e.g. as in GeoJSON) into a form Earcut accepts +earcut.flatten = function (data) { + var dim = data[0][0].length, + result = {vertices: [], holes: [], dimensions: dim}, + holeIndex = 0; + + for (var i = 0; i < data.length; i++) { + for (var j = 0; j < data[i].length; j++) { + for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]); + } + if (i > 0) { + holeIndex += data[i - 1].length; + result.holes.push(holeIndex); + } + } + return result; +}; +earcut_1.default = default_1; + +/*! https://mths.be/punycode v1.4.1 by @mathias */ + + +/** Highest positive signed 32-bit float value */ +var maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1 + +/** Bootstring parameters */ +var base = 36; +var tMin = 1; +var tMax = 26; +var skew = 38; +var damp = 700; +var initialBias = 72; +var initialN = 128; // 0x80 +var delimiter$1 = '-'; // '\x2D' +var regexNonASCII = /[^\x20-\x7E]/; // unprintable ASCII chars + non-ASCII chars +var regexSeparators = /[\x2E\u3002\uFF0E\uFF61]/g; // RFC 3490 separators + +/** Error messages */ +var errors = { + 'overflow': 'Overflow: input needs wider integers to process', + 'not-basic': 'Illegal input >= 0x80 (not a basic code point)', + 'invalid-input': 'Invalid input' +}; + +/** Convenience shortcuts */ +var baseMinusTMin = base - tMin; +var floor = Math.floor; +var stringFromCharCode = String.fromCharCode; + +/*--------------------------------------------------------------------------*/ + +/** + * A generic error utility function. + * @private + * @param {String} type The error type. + * @returns {Error} Throws a `RangeError` with the applicable error message. + */ +function error(type) { + throw new RangeError(errors[type]); +} + +/** + * A generic `Array#map` utility function. + * @private + * @param {Array} array The array to iterate over. + * @param {Function} callback The function that gets called for every array + * item. + * @returns {Array} A new array of values returned by the callback function. + */ +function map(array, fn) { + var length = array.length; + var result = []; + while (length--) { + result[length] = fn(array[length]); + } + return result; +} + +/** + * A simple `Array#map`-like wrapper to work with domain name strings or email + * addresses. + * @private + * @param {String} domain The domain name or email address. + * @param {Function} callback The function that gets called for every + * character. + * @returns {Array} A new string of characters returned by the callback + * function. + */ +function mapDomain(string, fn) { + var parts = string.split('@'); + var result = ''; + if (parts.length > 1) { + // In email addresses, only the domain name should be punycoded. Leave + // the local part (i.e. everything up to `@`) intact. + result = parts[0] + '@'; + string = parts[1]; + } + // Avoid `split(regex)` for IE8 compatibility. See #17. + string = string.replace(regexSeparators, '\x2E'); + var labels = string.split('.'); + var encoded = map(labels, fn).join('.'); + return result + encoded; +} + +/** + * Creates an array containing the numeric code points of each Unicode + * character in the string. While JavaScript uses UCS-2 internally, + * this function will convert a pair of surrogate halves (each of which + * UCS-2 exposes as separate characters) into a single code point, + * matching UTF-16. + * @see `punycode.ucs2.encode` + * @see + * @memberOf punycode.ucs2 + * @name decode + * @param {String} string The Unicode input string (UCS-2). + * @returns {Array} The new array of code points. + */ +function ucs2decode(string) { + var output = [], + counter = 0, + length = string.length, + value, + extra; + while (counter < length) { + value = string.charCodeAt(counter++); + if (value >= 0xD800 && value <= 0xDBFF && counter < length) { + // high surrogate, and there is a next character + extra = string.charCodeAt(counter++); + if ((extra & 0xFC00) == 0xDC00) { // low surrogate + output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000); + } else { + // unmatched surrogate; only append this code unit, in case the next + // code unit is the high surrogate of a surrogate pair + output.push(value); + counter--; + } + } else { + output.push(value); + } + } + return output; +} + +/** + * Converts a digit/integer into a basic code point. + * @see `basicToDigit()` + * @private + * @param {Number} digit The numeric value of a basic code point. + * @returns {Number} The basic code point whose value (when used for + * representing integers) is `digit`, which needs to be in the range + * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is + * used; else, the lowercase form is used. The behavior is undefined + * if `flag` is non-zero and `digit` has no uppercase form. + */ +function digitToBasic(digit, flag) { + // 0..25 map to ASCII a..z or A..Z + // 26..35 map to ASCII 0..9 + return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5); +} + +/** + * Bias adaptation function as per section 3.4 of RFC 3492. + * https://tools.ietf.org/html/rfc3492#section-3.4 + * @private + */ +function adapt(delta, numPoints, firstTime) { + var k = 0; + delta = firstTime ? floor(delta / damp) : delta >> 1; + delta += floor(delta / numPoints); + for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) { + delta = floor(delta / baseMinusTMin); + } + return floor(k + (baseMinusTMin + 1) * delta / (delta + skew)); +} + +/** + * Converts a string of Unicode symbols (e.g. a domain name label) to a + * Punycode string of ASCII-only symbols. + * @memberOf punycode + * @param {String} input The string of Unicode symbols. + * @returns {String} The resulting Punycode string of ASCII-only symbols. + */ +function encode(input) { + var n, + delta, + handledCPCount, + basicLength, + bias, + j, + m, + q, + k, + t, + currentValue, + output = [], + /** `inputLength` will hold the number of code points in `input`. */ + inputLength, + /** Cached calculation results */ + handledCPCountPlusOne, + baseMinusT, + qMinusT; + + // Convert the input in UCS-2 to Unicode + input = ucs2decode(input); + + // Cache the length + inputLength = input.length; + + // Initialize the state + n = initialN; + delta = 0; + bias = initialBias; + + // Handle the basic code points + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue < 0x80) { + output.push(stringFromCharCode(currentValue)); + } + } + + handledCPCount = basicLength = output.length; + + // `handledCPCount` is the number of code points that have been handled; + // `basicLength` is the number of basic code points. + + // Finish the basic string - if it is not empty - with a delimiter + if (basicLength) { + output.push(delimiter$1); + } + + // Main encoding loop: + while (handledCPCount < inputLength) { + + // All non-basic code points < n have been handled already. Find the next + // larger one: + for (m = maxInt, j = 0; j < inputLength; ++j) { + currentValue = input[j]; + if (currentValue >= n && currentValue < m) { + m = currentValue; + } + } + + // Increase `delta` enough to advance the decoder's state to , + // but guard against overflow + handledCPCountPlusOne = handledCPCount + 1; + if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) { + error('overflow'); + } + + delta += (m - n) * handledCPCountPlusOne; + n = m; + + for (j = 0; j < inputLength; ++j) { + currentValue = input[j]; + + if (currentValue < n && ++delta > maxInt) { + error('overflow'); + } + + if (currentValue == n) { + // Represent delta as a generalized variable-length integer + for (q = delta, k = base; /* no condition */ ; k += base) { + t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias); + if (q < t) { + break; + } + qMinusT = q - t; + baseMinusT = base - t; + output.push( + stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0)) + ); + q = floor(qMinusT / baseMinusT); + } + + output.push(stringFromCharCode(digitToBasic(q, 0))); + bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength); + delta = 0; + ++handledCPCount; + } + } + + ++delta; + ++n; + + } + return output.join(''); +} + +/** + * Converts a Unicode string representing a domain name or an email address to + * Punycode. Only the non-ASCII parts of the domain name will be converted, + * i.e. it doesn't matter if you call it with a domain that's already in + * ASCII. + * @memberOf punycode + * @param {String} input The domain name or email address to convert, as a + * Unicode string. + * @returns {String} The Punycode representation of the given domain name or + * email address. + */ +function toASCII(input) { + return mapDomain(input, function(string) { + return regexNonASCII.test(string) ? + 'xn--' + encode(string) : + string; + }); +} + +// Copyright Joyent, Inc. and other Node contributors. + +function isNull(arg) { + return arg === null; +} + +function isNullOrUndefined(arg) { + return arg == null; +} + +function isString(arg) { + return typeof arg === 'string'; +} + +function isObject(arg) { + return typeof arg === 'object' && arg !== null; +} + +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + + +// If obj.hasOwnProperty has been overridden, then calling +// obj.hasOwnProperty(prop) will break. +// See: https://github.com/joyent/node/issues/1707 +function hasOwnProperty$1(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop); +} +var isArray = Array.isArray || function (xs) { + return Object.prototype.toString.call(xs) === '[object Array]'; +}; +function stringifyPrimitive(v) { + switch (typeof v) { + case 'string': + return v; + + case 'boolean': + return v ? 'true' : 'false'; + + case 'number': + return isFinite(v) ? v : ''; + + default: + return ''; + } +} + +function stringify (obj, sep, eq, name) { + sep = sep || '&'; + eq = eq || '='; + if (obj === null) { + obj = undefined; + } + + if (typeof obj === 'object') { + return map$1(objectKeys(obj), function(k) { + var ks = encodeURIComponent(stringifyPrimitive(k)) + eq; + if (isArray(obj[k])) { + return map$1(obj[k], function(v) { + return ks + encodeURIComponent(stringifyPrimitive(v)); + }).join(sep); + } else { + return ks + encodeURIComponent(stringifyPrimitive(obj[k])); + } + }).join(sep); + + } + + if (!name) return ''; + return encodeURIComponent(stringifyPrimitive(name)) + eq + + encodeURIComponent(stringifyPrimitive(obj)); +} +function map$1 (xs, f) { + if (xs.map) return xs.map(f); + var res = []; + for (var i = 0; i < xs.length; i++) { + res.push(f(xs[i], i)); + } + return res; +} + +var objectKeys = Object.keys || function (obj) { + var res = []; + for (var key in obj) { + if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key); + } + return res; +}; + +function parse(qs, sep, eq, options) { + sep = sep || '&'; + eq = eq || '='; + var obj = {}; + + if (typeof qs !== 'string' || qs.length === 0) { + return obj; + } + + var regexp = /\+/g; + qs = qs.split(sep); + + var maxKeys = 1000; + if (options && typeof options.maxKeys === 'number') { + maxKeys = options.maxKeys; + } + + var len = qs.length; + // maxKeys <= 0 means that we should not limit keys count + if (maxKeys > 0 && len > maxKeys) { + len = maxKeys; + } + + for (var i = 0; i < len; ++i) { + var x = qs[i].replace(regexp, '%20'), + idx = x.indexOf(eq), + kstr, vstr, k, v; + + if (idx >= 0) { + kstr = x.substr(0, idx); + vstr = x.substr(idx + 1); + } else { + kstr = x; + vstr = ''; + } + + k = decodeURIComponent(kstr); + v = decodeURIComponent(vstr); + + if (!hasOwnProperty$1(obj, k)) { + obj[k] = v; + } else if (isArray(obj[k])) { + obj[k].push(v); + } else { + obj[k] = [obj[k], v]; + } + } + + return obj; +} + +// Copyright Joyent, Inc. and other Node contributors. +var url = { + parse: urlParse, + resolve: urlResolve, + resolveObject: urlResolveObject, + format: urlFormat, + Url: Url +}; +function Url() { + this.protocol = null; + this.slashes = null; + this.auth = null; + this.host = null; + this.port = null; + this.hostname = null; + this.hash = null; + this.search = null; + this.query = null; + this.pathname = null; + this.path = null; + this.href = null; +} + +// Reference: RFC 3986, RFC 1808, RFC 2396 + +// define these here so at least they only have to be +// compiled once on the first module load. +var protocolPattern = /^([a-z0-9.+-]+:)/i, + portPattern = /:[0-9]*$/, + + // Special case for a simple path URL + simplePathPattern = /^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/, + + // RFC 2396: characters reserved for delimiting URLs. + // We actually just auto-escape these. + delims = ['<', '>', '"', '`', ' ', '\r', '\n', '\t'], + + // RFC 2396: characters not allowed for various reasons. + unwise = ['{', '}', '|', '\\', '^', '`'].concat(delims), + + // Allowed by RFCs, but cause of XSS attacks. Always escape these. + autoEscape = ['\''].concat(unwise), + // Characters that are never ever allowed in a hostname. + // Note that any invalid chars are also handled, but these + // are the ones that are *expected* to be seen, so we fast-path + // them. + nonHostChars = ['%', '/', '?', ';', '#'].concat(autoEscape), + hostEndingChars = ['/', '?', '#'], + hostnameMaxLen = 255, + hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/, + hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/, + // protocols that can allow "unsafe" and "unwise" chars. + unsafeProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that never have a hostname. + hostlessProtocol = { + 'javascript': true, + 'javascript:': true + }, + // protocols that always contain a // bit. + slashedProtocol = { + 'http': true, + 'https': true, + 'ftp': true, + 'gopher': true, + 'file': true, + 'http:': true, + 'https:': true, + 'ftp:': true, + 'gopher:': true, + 'file:': true + }; + +function urlParse(url, parseQueryString, slashesDenoteHost) { + if (url && isObject(url) && url instanceof Url) return url; + + var u = new Url; + u.parse(url, parseQueryString, slashesDenoteHost); + return u; +} +Url.prototype.parse = function(url, parseQueryString, slashesDenoteHost) { + return parse$1(this, url, parseQueryString, slashesDenoteHost); +}; + +function parse$1(self, url, parseQueryString, slashesDenoteHost) { + if (!isString(url)) { + throw new TypeError('Parameter \'url\' must be a string, not ' + typeof url); + } + + // Copy chrome, IE, opera backslash-handling behavior. + // Back slashes before the query string get converted to forward slashes + // See: https://code.google.com/p/chromium/issues/detail?id=25916 + var queryIndex = url.indexOf('?'), + splitter = + (queryIndex !== -1 && queryIndex < url.indexOf('#')) ? '?' : '#', + uSplit = url.split(splitter), + slashRegex = /\\/g; + uSplit[0] = uSplit[0].replace(slashRegex, '/'); + url = uSplit.join(splitter); + + var rest = url; + + // trim before proceeding. + // This is to support parse stuff like " http://foo.com \n" + rest = rest.trim(); + + if (!slashesDenoteHost && url.split('#').length === 1) { + // Try fast path regexp + var simplePath = simplePathPattern.exec(rest); + if (simplePath) { + self.path = rest; + self.href = rest; + self.pathname = simplePath[1]; + if (simplePath[2]) { + self.search = simplePath[2]; + if (parseQueryString) { + self.query = parse(self.search.substr(1)); + } else { + self.query = self.search.substr(1); + } + } else if (parseQueryString) { + self.search = ''; + self.query = {}; + } + return self; + } + } + + var proto = protocolPattern.exec(rest); + if (proto) { + proto = proto[0]; + var lowerProto = proto.toLowerCase(); + self.protocol = lowerProto; + rest = rest.substr(proto.length); + } + + // figure out if it's got a host + // user@server is *always* interpreted as a hostname, and url + // resolution will treat //foo/bar as host=foo,path=bar because that's + // how the browser resolves relative URLs. + if (slashesDenoteHost || proto || rest.match(/^\/\/[^@\/]+@[^@\/]+/)) { + var slashes = rest.substr(0, 2) === '//'; + if (slashes && !(proto && hostlessProtocol[proto])) { + rest = rest.substr(2); + self.slashes = true; + } + } + var i, hec, l, p; + if (!hostlessProtocol[proto] && + (slashes || (proto && !slashedProtocol[proto]))) { + + // there's a hostname. + // the first instance of /, ?, ;, or # ends the host. + // + // If there is an @ in the hostname, then non-host chars *are* allowed + // to the left of the last @ sign, unless some host-ending character + // comes *before* the @-sign. + // URLs are obnoxious. + // + // ex: + // http://a@b@c/ => user:a@b host:c + // http://a@b?@c => user:a host:c path:/?@c + + // v0.12 TODO(isaacs): This is not quite how Chrome does things. + // Review our test case against browsers more comprehensively. + + // find the first instance of any hostEndingChars + var hostEnd = -1; + for (i = 0; i < hostEndingChars.length; i++) { + hec = rest.indexOf(hostEndingChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + + // at this point, either we have an explicit point where the + // auth portion cannot go past, or the last @ char is the decider. + var auth, atSign; + if (hostEnd === -1) { + // atSign can be anywhere. + atSign = rest.lastIndexOf('@'); + } else { + // atSign must be in auth portion. + // http://a@b/c@d => host:b auth:a path:/c@d + atSign = rest.lastIndexOf('@', hostEnd); + } + + // Now we have a portion which is definitely the auth. + // Pull that off. + if (atSign !== -1) { + auth = rest.slice(0, atSign); + rest = rest.slice(atSign + 1); + self.auth = decodeURIComponent(auth); + } + + // the host is the remaining to the left of the first non-host char + hostEnd = -1; + for (i = 0; i < nonHostChars.length; i++) { + hec = rest.indexOf(nonHostChars[i]); + if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) + hostEnd = hec; + } + // if we still have not hit it, then the entire thing is a host. + if (hostEnd === -1) + hostEnd = rest.length; + + self.host = rest.slice(0, hostEnd); + rest = rest.slice(hostEnd); + + // pull out port. + parseHost(self); + + // we've indicated that there is a hostname, + // so even if it's empty, it has to be present. + self.hostname = self.hostname || ''; + + // if hostname begins with [ and ends with ] + // assume that it's an IPv6 address. + var ipv6Hostname = self.hostname[0] === '[' && + self.hostname[self.hostname.length - 1] === ']'; + + // validate a little. + if (!ipv6Hostname) { + var hostparts = self.hostname.split(/\./); + for (i = 0, l = hostparts.length; i < l; i++) { + var part = hostparts[i]; + if (!part) continue; + if (!part.match(hostnamePartPattern)) { + var newpart = ''; + for (var j = 0, k = part.length; j < k; j++) { + if (part.charCodeAt(j) > 127) { + // we replace non-ASCII char with a temporary placeholder + // we need this to make sure size of hostname is not + // broken by replacing non-ASCII by nothing + newpart += 'x'; + } else { + newpart += part[j]; + } + } + // we test again with ASCII char only + if (!newpart.match(hostnamePartPattern)) { + var validParts = hostparts.slice(0, i); + var notHost = hostparts.slice(i + 1); + var bit = part.match(hostnamePartStart); + if (bit) { + validParts.push(bit[1]); + notHost.unshift(bit[2]); + } + if (notHost.length) { + rest = '/' + notHost.join('.') + rest; + } + self.hostname = validParts.join('.'); + break; + } + } + } + } + + if (self.hostname.length > hostnameMaxLen) { + self.hostname = ''; + } else { + // hostnames are always lower case. + self.hostname = self.hostname.toLowerCase(); + } + + if (!ipv6Hostname) { + // IDNA Support: Returns a punycoded representation of "domain". + // It only converts parts of the domain name that + // have non-ASCII characters, i.e. it doesn't matter if + // you call it with a domain that already is ASCII-only. + self.hostname = toASCII(self.hostname); + } + + p = self.port ? ':' + self.port : ''; + var h = self.hostname || ''; + self.host = h + p; + self.href += self.host; + + // strip [ and ] from the hostname + // the host field still retains them, though + if (ipv6Hostname) { + self.hostname = self.hostname.substr(1, self.hostname.length - 2); + if (rest[0] !== '/') { + rest = '/' + rest; + } + } + } + + // now rest is set to the post-host stuff. + // chop off any delim chars. + if (!unsafeProtocol[lowerProto]) { + + // First, make 100% sure that any "autoEscape" chars get + // escaped, even if encodeURIComponent doesn't think they + // need to be. + for (i = 0, l = autoEscape.length; i < l; i++) { + var ae = autoEscape[i]; + if (rest.indexOf(ae) === -1) + continue; + var esc = encodeURIComponent(ae); + if (esc === ae) { + esc = escape(ae); + } + rest = rest.split(ae).join(esc); + } + } + + + // chop off from the tail first. + var hash = rest.indexOf('#'); + if (hash !== -1) { + // got a fragment string. + self.hash = rest.substr(hash); + rest = rest.slice(0, hash); + } + var qm = rest.indexOf('?'); + if (qm !== -1) { + self.search = rest.substr(qm); + self.query = rest.substr(qm + 1); + if (parseQueryString) { + self.query = parse(self.query); + } + rest = rest.slice(0, qm); + } else if (parseQueryString) { + // no query string, but parseQueryString still requested + self.search = ''; + self.query = {}; + } + if (rest) self.pathname = rest; + if (slashedProtocol[lowerProto] && + self.hostname && !self.pathname) { + self.pathname = '/'; + } + + //to support http.request + if (self.pathname || self.search) { + p = self.pathname || ''; + var s = self.search || ''; + self.path = p + s; + } + + // finally, reconstruct the href based on what has been validated. + self.href = format(self); + return self; +} + +// format a parsed object into a url string +function urlFormat(obj) { + // ensure it's an object, and not a string url. + // If it's an obj, this is a no-op. + // this way, you can call url_format() on strings + // to clean up potentially wonky urls. + if (isString(obj)) obj = parse$1({}, obj); + return format(obj); +} + +function format(self) { + var auth = self.auth || ''; + if (auth) { + auth = encodeURIComponent(auth); + auth = auth.replace(/%3A/i, ':'); + auth += '@'; + } + + var protocol = self.protocol || '', + pathname = self.pathname || '', + hash = self.hash || '', + host = false, + query = ''; + + if (self.host) { + host = auth + self.host; + } else if (self.hostname) { + host = auth + (self.hostname.indexOf(':') === -1 ? + self.hostname : + '[' + this.hostname + ']'); + if (self.port) { + host += ':' + self.port; + } + } + + if (self.query && + isObject(self.query) && + Object.keys(self.query).length) { + query = stringify(self.query); + } + + var search = self.search || (query && ('?' + query)) || ''; + + if (protocol && protocol.substr(-1) !== ':') protocol += ':'; + + // only the slashedProtocols get the //. Not mailto:, xmpp:, etc. + // unless they had them to begin with. + if (self.slashes || + (!protocol || slashedProtocol[protocol]) && host !== false) { + host = '//' + (host || ''); + if (pathname && pathname.charAt(0) !== '/') pathname = '/' + pathname; + } else if (!host) { + host = ''; + } + + if (hash && hash.charAt(0) !== '#') hash = '#' + hash; + if (search && search.charAt(0) !== '?') search = '?' + search; + + pathname = pathname.replace(/[?#]/g, function(match) { + return encodeURIComponent(match); + }); + search = search.replace('#', '%23'); + + return protocol + host + pathname + search + hash; +} + +Url.prototype.format = function() { + return format(this); +}; + +function urlResolve(source, relative) { + return urlParse(source, false, true).resolve(relative); +} + +Url.prototype.resolve = function(relative) { + return this.resolveObject(urlParse(relative, false, true)).format(); +}; + +function urlResolveObject(source, relative) { + if (!source) return relative; + return urlParse(source, false, true).resolveObject(relative); +} + +Url.prototype.resolveObject = function(relative) { + if (isString(relative)) { + var rel = new Url(); + rel.parse(relative, false, true); + relative = rel; + } + + var result = new Url(); + var tkeys = Object.keys(this); + for (var tk = 0; tk < tkeys.length; tk++) { + var tkey = tkeys[tk]; + result[tkey] = this[tkey]; + } + + // hash is always overridden, no matter what. + // even href="" will remove it. + result.hash = relative.hash; + + // if the relative url is empty, then there's nothing left to do here. + if (relative.href === '') { + result.href = result.format(); + return result; + } + + // hrefs like //foo/bar always cut to the protocol. + if (relative.slashes && !relative.protocol) { + // take everything except the protocol from relative + var rkeys = Object.keys(relative); + for (var rk = 0; rk < rkeys.length; rk++) { + var rkey = rkeys[rk]; + if (rkey !== 'protocol') + result[rkey] = relative[rkey]; + } + + //urlParse appends trailing / to urls like http://www.example.com + if (slashedProtocol[result.protocol] && + result.hostname && !result.pathname) { + result.path = result.pathname = '/'; + } + + result.href = result.format(); + return result; + } + var relPath; + if (relative.protocol && relative.protocol !== result.protocol) { + // if it's a known url protocol, then changing + // the protocol does weird things + // first, if it's not file:, then we MUST have a host, + // and if there was a path + // to begin with, then we MUST have a path. + // if it is file:, then the host is dropped, + // because that's known to be hostless. + // anything else is assumed to be absolute. + if (!slashedProtocol[relative.protocol]) { + var keys = Object.keys(relative); + for (var v = 0; v < keys.length; v++) { + var k = keys[v]; + result[k] = relative[k]; + } + result.href = result.format(); + return result; + } + + result.protocol = relative.protocol; + if (!relative.host && !hostlessProtocol[relative.protocol]) { + relPath = (relative.pathname || '').split('/'); + while (relPath.length && !(relative.host = relPath.shift())); + if (!relative.host) relative.host = ''; + if (!relative.hostname) relative.hostname = ''; + if (relPath[0] !== '') relPath.unshift(''); + if (relPath.length < 2) relPath.unshift(''); + result.pathname = relPath.join('/'); + } else { + result.pathname = relative.pathname; + } + result.search = relative.search; + result.query = relative.query; + result.host = relative.host || ''; + result.auth = relative.auth; + result.hostname = relative.hostname || relative.host; + result.port = relative.port; + // to support http.request + if (result.pathname || result.search) { + var p = result.pathname || ''; + var s = result.search || ''; + result.path = p + s; + } + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; + } + + var isSourceAbs = (result.pathname && result.pathname.charAt(0) === '/'), + isRelAbs = ( + relative.host || + relative.pathname && relative.pathname.charAt(0) === '/' + ), + mustEndAbs = (isRelAbs || isSourceAbs || + (result.host && relative.pathname)), + removeAllDots = mustEndAbs, + srcPath = result.pathname && result.pathname.split('/') || [], + psychotic = result.protocol && !slashedProtocol[result.protocol]; + relPath = relative.pathname && relative.pathname.split('/') || []; + // if the url is a non-slashed url, then relative + // links like ../.. should be able + // to crawl up to the hostname, as well. This is strange. + // result.protocol has already been set by now. + // Later on, put the first path part into the host field. + if (psychotic) { + result.hostname = ''; + result.port = null; + if (result.host) { + if (srcPath[0] === '') srcPath[0] = result.host; + else srcPath.unshift(result.host); + } + result.host = ''; + if (relative.protocol) { + relative.hostname = null; + relative.port = null; + if (relative.host) { + if (relPath[0] === '') relPath[0] = relative.host; + else relPath.unshift(relative.host); + } + relative.host = null; + } + mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === ''); + } + var authInHost; + if (isRelAbs) { + // it's absolute. + result.host = (relative.host || relative.host === '') ? + relative.host : result.host; + result.hostname = (relative.hostname || relative.hostname === '') ? + relative.hostname : result.hostname; + result.search = relative.search; + result.query = relative.query; + srcPath = relPath; + // fall through to the dot-handling below. + } else if (relPath.length) { + // it's relative + // throw away the existing file, and take the new path instead. + if (!srcPath) srcPath = []; + srcPath.pop(); + srcPath = srcPath.concat(relPath); + result.search = relative.search; + result.query = relative.query; + } else if (!isNullOrUndefined(relative.search)) { + // just pull out the search. + // like href='?foo'. + // Put this after the other two cases because it simplifies the booleans + if (psychotic) { + result.hostname = result.host = srcPath.shift(); + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + result.search = relative.search; + result.query = relative.query; + //to support http.request + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.href = result.format(); + return result; + } + + if (!srcPath.length) { + // no path at all. easy. + // we've already handled the other stuff above. + result.pathname = null; + //to support http.request + if (result.search) { + result.path = '/' + result.search; + } else { + result.path = null; + } + result.href = result.format(); + return result; + } + + // if a url ENDs in . or .., then it must get a trailing slash. + // however, if it ends in anything else non-slashy, + // then it must NOT get a trailing slash. + var last = srcPath.slice(-1)[0]; + var hasTrailingSlash = ( + (result.host || relative.host || srcPath.length > 1) && + (last === '.' || last === '..') || last === ''); + + // strip single dots, resolve double dots to parent dir + // if the path tries to go above the root, `up` ends up > 0 + var up = 0; + for (var i = srcPath.length; i >= 0; i--) { + last = srcPath[i]; + if (last === '.') { + srcPath.splice(i, 1); + } else if (last === '..') { + srcPath.splice(i, 1); + up++; + } else if (up) { + srcPath.splice(i, 1); + up--; + } + } + + // if the path is allowed to go above the root, restore leading ..s + if (!mustEndAbs && !removeAllDots) { + for (; up--; up) { + srcPath.unshift('..'); + } + } + + if (mustEndAbs && srcPath[0] !== '' && + (!srcPath[0] || srcPath[0].charAt(0) !== '/')) { + srcPath.unshift(''); + } + + if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) { + srcPath.push(''); + } + + var isAbsolute = srcPath[0] === '' || + (srcPath[0] && srcPath[0].charAt(0) === '/'); + + // put the host back + if (psychotic) { + result.hostname = result.host = isAbsolute ? '' : + srcPath.length ? srcPath.shift() : ''; + //occationaly the auth can get stuck only in host + //this especially happens in cases like + //url.resolveObject('mailto:local1@domain1', 'local2@domain2') + authInHost = result.host && result.host.indexOf('@') > 0 ? + result.host.split('@') : false; + if (authInHost) { + result.auth = authInHost.shift(); + result.host = result.hostname = authInHost.shift(); + } + } + + mustEndAbs = mustEndAbs || (result.host && srcPath.length); + + if (mustEndAbs && !isAbsolute) { + srcPath.unshift(''); + } + + if (!srcPath.length) { + result.pathname = null; + result.path = null; + } else { + result.pathname = srcPath.join('/'); + } + + //to support request.http + if (!isNull(result.pathname) || !isNull(result.search)) { + result.path = (result.pathname ? result.pathname : '') + + (result.search ? result.search : ''); + } + result.auth = relative.auth || result.auth; + result.slashes = result.slashes || relative.slashes; + result.href = result.format(); + return result; +}; + +Url.prototype.parseHost = function() { + return parseHost(this); +}; + +function parseHost(self) { + var host = self.host; + var port = portPattern.exec(host); + if (port) { + port = port[0]; + if (port !== ':') { + self.port = port.substr(1); + } + host = host.substr(0, host.length - port.length); + } + if (host) self.hostname = host; +} + +/*! + * @pixi/constants - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/constants is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * Different types of environments for WebGL. + * + * @static + * @memberof PIXI + * @name ENV + * @enum {number} + * @property {number} WEBGL_LEGACY - Used for older v1 WebGL devices. PixiJS will aim to ensure compatibility + * with older / less advanced devices. If you experience unexplained flickering prefer this environment. + * @property {number} WEBGL - Version 1 of WebGL + * @property {number} WEBGL2 - Version 2 of WebGL + */ +var ENV = { + WEBGL_LEGACY: 0, + WEBGL: 1, + WEBGL2: 2, +}; + +/** + * Constant to identify the Renderer Type. + * + * @static + * @memberof PIXI + * @name RENDERER_TYPE + * @enum {number} + * @property {number} UNKNOWN - Unknown render type. + * @property {number} WEBGL - WebGL render type. + * @property {number} CANVAS - Canvas render type. + */ +var RENDERER_TYPE = { + UNKNOWN: 0, + WEBGL: 1, + CANVAS: 2, +}; + +/** + * Various blend modes supported by PIXI. + * + * IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes. + * Anything else will silently act like NORMAL. + * + * @memberof PIXI + * @name BLEND_MODES + * @enum {number} + * @property {number} NORMAL + * @property {number} ADD + * @property {number} MULTIPLY + * @property {number} SCREEN + * @property {number} OVERLAY + * @property {number} DARKEN + * @property {number} LIGHTEN + * @property {number} COLOR_DODGE + * @property {number} COLOR_BURN + * @property {number} HARD_LIGHT + * @property {number} SOFT_LIGHT + * @property {number} DIFFERENCE + * @property {number} EXCLUSION + * @property {number} HUE + * @property {number} SATURATION + * @property {number} COLOR + * @property {number} LUMINOSITY + * @property {number} NORMAL_NPM + * @property {number} ADD_NPM + * @property {number} SCREEN_NPM + * @property {number} NONE + * @property {number} SRC_IN + * @property {number} SRC_OUT + * @property {number} SRC_ATOP + * @property {number} DST_OVER + * @property {number} DST_IN + * @property {number} DST_OUT + * @property {number} DST_ATOP + * @property {number} SUBTRACT + * @property {number} SRC_OVER + * @property {number} ERASE + */ +var BLEND_MODES = { + NORMAL: 0, + ADD: 1, + MULTIPLY: 2, + SCREEN: 3, + OVERLAY: 4, + DARKEN: 5, + LIGHTEN: 6, + COLOR_DODGE: 7, + COLOR_BURN: 8, + HARD_LIGHT: 9, + SOFT_LIGHT: 10, + DIFFERENCE: 11, + EXCLUSION: 12, + HUE: 13, + SATURATION: 14, + COLOR: 15, + LUMINOSITY: 16, + NORMAL_NPM: 17, + ADD_NPM: 18, + SCREEN_NPM: 19, + NONE: 20, + + SRC_OVER: 0, + SRC_IN: 21, + SRC_OUT: 22, + SRC_ATOP: 23, + DST_OVER: 24, + DST_IN: 25, + DST_OUT: 26, + DST_ATOP: 27, + ERASE: 26, + SUBTRACT: 28, +}; + +/** + * Various webgl draw modes. These can be used to specify which GL drawMode to use + * under certain situations and renderers. + * + * @memberof PIXI + * @static + * @name DRAW_MODES + * @enum {number} + * @property {number} POINTS + * @property {number} LINES + * @property {number} LINE_LOOP + * @property {number} LINE_STRIP + * @property {number} TRIANGLES + * @property {number} TRIANGLE_STRIP + * @property {number} TRIANGLE_FAN + */ +var DRAW_MODES = { + POINTS: 0, + LINES: 1, + LINE_LOOP: 2, + LINE_STRIP: 3, + TRIANGLES: 4, + TRIANGLE_STRIP: 5, + TRIANGLE_FAN: 6, +}; + +/** + * Various GL texture/resources formats. + * + * @memberof PIXI + * @static + * @name FORMATS + * @enum {number} + * @property {number} RGBA=6408 + * @property {number} RGB=6407 + * @property {number} ALPHA=6406 + * @property {number} LUMINANCE=6409 + * @property {number} LUMINANCE_ALPHA=6410 + * @property {number} DEPTH_COMPONENT=6402 + * @property {number} DEPTH_STENCIL=34041 + */ +var FORMATS = { + RGBA: 6408, + RGB: 6407, + ALPHA: 6406, + LUMINANCE: 6409, + LUMINANCE_ALPHA: 6410, + DEPTH_COMPONENT: 6402, + DEPTH_STENCIL: 34041, +}; + +/** + * Various GL target types. + * + * @memberof PIXI + * @static + * @name TARGETS + * @enum {number} + * @property {number} TEXTURE_2D=3553 + * @property {number} TEXTURE_CUBE_MAP=34067 + * @property {number} TEXTURE_2D_ARRAY=35866 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_X=34069 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_X=34070 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Y=34071 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Y=34072 + * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Z=34073 + * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Z=34074 + */ +var TARGETS = { + TEXTURE_2D: 3553, + TEXTURE_CUBE_MAP: 34067, + TEXTURE_2D_ARRAY: 35866, + TEXTURE_CUBE_MAP_POSITIVE_X: 34069, + TEXTURE_CUBE_MAP_NEGATIVE_X: 34070, + TEXTURE_CUBE_MAP_POSITIVE_Y: 34071, + TEXTURE_CUBE_MAP_NEGATIVE_Y: 34072, + TEXTURE_CUBE_MAP_POSITIVE_Z: 34073, + TEXTURE_CUBE_MAP_NEGATIVE_Z: 34074, +}; + +/** + * Various GL data format types. + * + * @memberof PIXI + * @static + * @name TYPES + * @enum {number} + * @property {number} UNSIGNED_BYTE=5121 + * @property {number} UNSIGNED_SHORT=5123 + * @property {number} UNSIGNED_SHORT_5_6_5=33635 + * @property {number} UNSIGNED_SHORT_4_4_4_4=32819 + * @property {number} UNSIGNED_SHORT_5_5_5_1=32820 + * @property {number} FLOAT=5126 + * @property {number} HALF_FLOAT=36193 + */ +var TYPES = { + UNSIGNED_BYTE: 5121, + UNSIGNED_SHORT: 5123, + UNSIGNED_SHORT_5_6_5: 33635, + UNSIGNED_SHORT_4_4_4_4: 32819, + UNSIGNED_SHORT_5_5_5_1: 32820, + FLOAT: 5126, + HALF_FLOAT: 36193, +}; + +/** + * The scale modes that are supported by pixi. + * + * The {@link PIXI.settings.SCALE_MODE} scale mode affects the default scaling mode of future operations. + * It can be re-assigned to either LINEAR or NEAREST, depending upon suitability. + * + * @memberof PIXI + * @static + * @name SCALE_MODES + * @enum {number} + * @property {number} LINEAR Smooth scaling + * @property {number} NEAREST Pixelating scaling + */ +var SCALE_MODES = { + LINEAR: 1, + NEAREST: 0, +}; + +/** + * The wrap modes that are supported by pixi. + * + * The {@link PIXI.settings.WRAP_MODE} wrap mode affects the default wrapping mode of future operations. + * It can be re-assigned to either CLAMP or REPEAT, depending upon suitability. + * If the texture is non power of two then clamp will be used regardless as WebGL can + * only use REPEAT if the texture is po2. + * + * This property only affects WebGL. + * + * @name WRAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} CLAMP - The textures uvs are clamped + * @property {number} REPEAT - The texture uvs tile and repeat + * @property {number} MIRRORED_REPEAT - The texture uvs tile and repeat with mirroring + */ +var WRAP_MODES = { + CLAMP: 33071, + REPEAT: 10497, + MIRRORED_REPEAT: 33648, +}; + +/** + * Mipmap filtering modes that are supported by pixi. + * + * The {@link PIXI.settings.MIPMAP_TEXTURES} affects default texture filtering. + * Mipmaps are generated for a baseTexture if its `mipmap` field is `ON`, + * or its `POW2` and texture dimensions are powers of 2. + * Due to platform restriction, `ON` option will work like `POW2` for webgl-1. + * + * This property only affects WebGL. + * + * @name MIPMAP_MODES + * @memberof PIXI + * @static + * @enum {number} + * @property {number} OFF - No mipmaps + * @property {number} POW2 - Generate mipmaps if texture dimensions are pow2 + * @property {number} ON - Always generate mipmaps + */ +var MIPMAP_MODES = { + OFF: 0, + POW2: 1, + ON: 2, +}; + +/** + * The gc modes that are supported by pixi. + * + * The {@link PIXI.settings.GC_MODE} Garbage Collection mode for PixiJS textures is AUTO + * If set to GC_MODE, the renderer will occasionally check textures usage. If they are not + * used for a specified period of time they will be removed from the GPU. They will of course + * be uploaded again when they are required. This is a silent behind the scenes process that + * should ensure that the GPU does not get filled up. + * + * Handy for mobile devices! + * This property only affects WebGL. + * + * @name GC_MODES + * @enum {number} + * @static + * @memberof PIXI + * @property {number} AUTO - Garbage collection will happen periodically automatically + * @property {number} MANUAL - Garbage collection will need to be called manually + */ +var GC_MODES = { + AUTO: 0, + MANUAL: 1, +}; + +/** + * Constants that specify float precision in shaders. + * + * @name PRECISION + * @memberof PIXI + * @static + * @enum {string} + * @constant + * @property {string} LOW='lowp' + * @property {string} MEDIUM='mediump' + * @property {string} HIGH='highp' + */ +var PRECISION = { + LOW: 'lowp', + MEDIUM: 'mediump', + HIGH: 'highp', +}; + +/*! + * @pixi/utils - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/utils is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The prefix that denotes a URL is for a retina asset. + * + * @static + * @name RETINA_PREFIX + * @memberof PIXI.settings + * @type {RegExp} + * @default /@([0-9\.]+)x/ + * @example `@2x` + */ +settings.RETINA_PREFIX = /@([0-9\.]+)x/; + +/** + * Should the `failIfMajorPerformanceCaveat` flag be enabled as a context option used in the `isWebGLSupported` function. + * For most scenarios this should be left as true, as otherwise the user may have a poor experience. + * However, it can be useful to disable under certain scenarios, such as headless unit tests. + * + * @static + * @name FAIL_IF_MAJOR_PERFORMANCE_CAVEAT + * @memberof PIXI.settings + * @type {boolean} + * @default true + */ +settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = true; + +var saidHello = false; +var VERSION = '5.1.3'; + +/** + * Logs out the version and renderer information for this running instance of PIXI. + * If you don't want to see this message you can run `PIXI.utils.skipHello()` before + * creating your renderer. Keep in mind that doing that will forever make you a jerk face. + * + * @static + * @function sayHello + * @memberof PIXI.utils + * @param {string} type - The string renderer type to log. + */ +function sayHello(type) +{ + if (saidHello) + { + return; + } + + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + var args = [ + ("\n %c %c %c PixiJS " + VERSION + " - ✰ " + type + " ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \n\n"), + 'background: #ff66a5; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff66a5; background: #030307; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'background: #ffc3dc; padding:5px 0;', + 'background: #ff66a5; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;', + 'color: #ff2424; background: #fff; padding:5px 0;' ]; + + window.console.log.apply(console, args); + } + else if (window.console) + { + window.console.log(("PixiJS " + VERSION + " - " + type + " - http://www.pixijs.com/")); + } + + saidHello = true; +} + +var supported; + +/** + * Helper for checking for WebGL support. + * + * @memberof PIXI.utils + * @function isWebGLSupported + * @return {boolean} Is WebGL supported. + */ +function isWebGLSupported() +{ + if (typeof supported === 'undefined') + { + supported = (function supported() + { + var contextOptions = { + stencil: true, + failIfMajorPerformanceCaveat: settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT, + }; + + try + { + if (!window.WebGLRenderingContext) + { + return false; + } + + var canvas = document.createElement('canvas'); + var gl = canvas.getContext('webgl', contextOptions) + || canvas.getContext('experimental-webgl', contextOptions); + + var success = !!(gl && gl.getContextAttributes().stencil); + + if (gl) + { + var loseContext = gl.getExtension('WEBGL_lose_context'); + + if (loseContext) + { + loseContext.loseContext(); + } + } + + gl = null; + + return success; + } + catch (e) + { + return false; + } + })(); + } + + return supported; +} + +/** + * Converts a hexadecimal color number to an [R, G, B] array of normalized floats (numbers from 0.0 to 1.0). + * + * @example + * PIXI.utils.hex2rgb(0xffffff); // returns [1, 1, 1] + * @memberof PIXI.utils + * @function hex2rgb + * @param {number} hex - The hexadecimal number to convert + * @param {number[]} [out=[]] If supplied, this array will be used rather than returning a new one + * @return {number[]} An array representing the [R, G, B] of the color where all values are floats. + */ +function hex2rgb(hex, out) +{ + out = out || []; + + out[0] = ((hex >> 16) & 0xFF) / 255; + out[1] = ((hex >> 8) & 0xFF) / 255; + out[2] = (hex & 0xFF) / 255; + + return out; +} + +/** + * Converts a hexadecimal color number to a string. + * + * @example + * PIXI.utils.hex2string(0xffffff); // returns "#ffffff" + * @memberof PIXI.utils + * @function hex2string + * @param {number} hex - Number in hex (e.g., `0xffffff`) + * @return {string} The string color (e.g., `"#ffffff"`). + */ +function hex2string(hex) +{ + hex = hex.toString(16); + hex = '000000'.substr(0, 6 - hex.length) + hex; + + return ("#" + hex); +} + +/** + * Converts a hexadecimal string to a hexadecimal color number. + * + * @example + * PIXI.utils.string2hex("#ffffff"); // returns 0xffffff + * @memberof PIXI.utils + * @function string2hex + * @param {string} The string color (e.g., `"#ffffff"`) + * @return {number} Number in hexadecimal. + */ +function string2hex(string) +{ + if (typeof string === 'string' && string[0] === '#') + { + string = string.substr(1); + } + + return parseInt(string, 16); +} + +/** + * Corrects PixiJS blend, takes premultiplied alpha into account + * + * @memberof PIXI.utils + * @function mapPremultipliedBlendModes + * @private + * @param {Array} [array] - The array to output into. + * @return {Array} Mapped modes. + */ +function mapPremultipliedBlendModes() +{ + var pm = []; + var npm = []; + + for (var i = 0; i < 32; i++) + { + pm[i] = i; + npm[i] = i; + } + + pm[BLEND_MODES.NORMAL_NPM] = BLEND_MODES.NORMAL; + pm[BLEND_MODES.ADD_NPM] = BLEND_MODES.ADD; + pm[BLEND_MODES.SCREEN_NPM] = BLEND_MODES.SCREEN; + + npm[BLEND_MODES.NORMAL] = BLEND_MODES.NORMAL_NPM; + npm[BLEND_MODES.ADD] = BLEND_MODES.ADD_NPM; + npm[BLEND_MODES.SCREEN] = BLEND_MODES.SCREEN_NPM; + + var array = []; + + array.push(npm); + array.push(pm); + + return array; +} + +/** + * maps premultiply flag and blendMode to adjusted blendMode + * @memberof PIXI.utils + * @const premultiplyBlendMode + * @type {Array} + */ +var premultiplyBlendMode = mapPremultipliedBlendModes(); + +/** + * changes blendMode according to texture format + * + * @memberof PIXI.utils + * @function correctBlendMode + * @param {number} blendMode supposed blend mode + * @param {boolean} premultiplied whether source is premultiplied + * @returns {number} true blend mode for this texture + */ +function correctBlendMode(blendMode, premultiplied) +{ + return premultiplyBlendMode[premultiplied ? 1 : 0][blendMode]; +} + +/** + * combines rgb and alpha to out array + * + * @memberof PIXI.utils + * @function premultiplyRgba + * @param {Float32Array|number[]} rgb input rgb + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyRgba(rgb, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + if (premultiply || premultiply === undefined) + { + out[0] = rgb[0] * alpha; + out[1] = rgb[1] * alpha; + out[2] = rgb[2] * alpha; + } + else + { + out[0] = rgb[0]; + out[1] = rgb[1]; + out[2] = rgb[2]; + } + out[3] = alpha; + + return out; +} + +/** + * premultiplies tint + * + * @memberof PIXI.utils + * @function premultiplyTint + * @param {number} tint integer RGB + * @param {number} alpha floating point alpha (0.0-1.0) + * @returns {number} tint multiplied by alpha + */ +function premultiplyTint(tint, alpha) +{ + if (alpha === 1.0) + { + return (alpha * 255 << 24) + tint; + } + if (alpha === 0.0) + { + return 0; + } + var R = ((tint >> 16) & 0xFF); + var G = ((tint >> 8) & 0xFF); + var B = (tint & 0xFF); + + R = ((R * alpha) + 0.5) | 0; + G = ((G * alpha) + 0.5) | 0; + B = ((B * alpha) + 0.5) | 0; + + return (alpha * 255 << 24) + (R << 16) + (G << 8) + B; +} + +/** + * converts integer tint and float alpha to vec4 form, premultiplies by default + * + * @memberof PIXI.utils + * @function premultiplyTintToRgba + * @param {number} tint input tint + * @param {number} alpha alpha param + * @param {Float32Array} [out] output + * @param {boolean} [premultiply=true] do premultiply it + * @returns {Float32Array} vec4 rgba + */ +function premultiplyTintToRgba(tint, alpha, out, premultiply) +{ + out = out || new Float32Array(4); + out[0] = ((tint >> 16) & 0xFF) / 255.0; + out[1] = ((tint >> 8) & 0xFF) / 255.0; + out[2] = (tint & 0xFF) / 255.0; + if (premultiply || premultiply === undefined) + { + out[0] *= alpha; + out[1] *= alpha; + out[2] *= alpha; + } + out[3] = alpha; + + return out; +} + +/** + * Generic Mask Stack data structure + * + * @memberof PIXI.utils + * @function createIndicesForQuads + * @param {number} size - Number of quads + * @param {Uint16Array|Uint32Array} [outBuffer] - Buffer for output, length has to be `6 * size` + * @return {Uint16Array|Uint32Array} - Resulting index buffer + */ +function createIndicesForQuads(size, outBuffer) +{ + if ( outBuffer === void 0 ) outBuffer = null; + + // the total number of indices in our array, there are 6 points per quad. + var totalIndices = size * 6; + + outBuffer = outBuffer || new Uint16Array(totalIndices); + + if (outBuffer.length !== totalIndices) + { + throw new Error(("Out buffer length is incorrect, got " + (outBuffer.length) + " and expected " + totalIndices)); + } + + // fill the indices with the quads to draw + for (var i = 0, j = 0; i < totalIndices; i += 6, j += 4) + { + outBuffer[i + 0] = j + 0; + outBuffer[i + 1] = j + 1; + outBuffer[i + 2] = j + 2; + outBuffer[i + 3] = j + 0; + outBuffer[i + 4] = j + 2; + outBuffer[i + 5] = j + 3; + } + + return outBuffer; +} + +/** + * Remove items from a javascript array without generating garbage + * + * @function removeItems + * @memberof PIXI.utils + * @param {Array} arr Array to remove elements from + * @param {number} startIdx starting index + * @param {number} removeCount how many to remove + */ +function removeItems(arr, startIdx, removeCount) +{ + var length = arr.length; + var i; + + if (startIdx >= length || removeCount === 0) + { + return; + } + + removeCount = (startIdx + removeCount > length ? length - startIdx : removeCount); + + var len = length - removeCount; + + for (i = startIdx; i < len; ++i) + { + arr[i] = arr[i + removeCount]; + } + + arr.length = len; +} + +var nextUid = 0; + +/** + * Gets the next unique identifier + * + * @memberof PIXI.utils + * @function uid + * @return {number} The next unique identifier to use. + */ +function uid() +{ + return ++nextUid; +} + +/** + * Returns sign of number + * + * @memberof PIXI.utils + * @function sign + * @param {number} n - the number to check the sign of + * @returns {number} 0 if `n` is 0, -1 if `n` is negative, 1 if `n` is positive + */ +function sign$1(n) +{ + if (n === 0) { return 0; } + + return n < 0 ? -1 : 1; +} + +// Taken from the bit-twiddle package + +/** + * Rounds to next power of two. + * + * @function nextPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} + */ +function nextPow2(v) +{ + v += v === 0; + --v; + v |= v >>> 1; + v |= v >>> 2; + v |= v >>> 4; + v |= v >>> 8; + v |= v >>> 16; + + return v + 1; +} + +/** + * Checks if a number is a power of two. + * + * @function isPow2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {boolean} `true` if value is power of two + */ +function isPow2(v) +{ + return !(v & (v - 1)) && (!!v); +} + +/** + * Computes ceil of log base 2 + * + * @function log2 + * @memberof PIXI.utils + * @param {number} v input value + * @return {number} logarithm base 2 + */ +function log2(v) +{ + var r = (v > 0xFFFF) << 4; + + v >>>= r; + + var shift = (v > 0xFF) << 3; + + v >>>= shift; r |= shift; + shift = (v > 0xF) << 2; + v >>>= shift; r |= shift; + shift = (v > 0x3) << 1; + v >>>= shift; r |= shift; + + return r | (v >> 1); +} + +/** + * @todo Describe property usage + * + * @static + * @name ProgramCache + * @memberof PIXI.utils + * @type {Object} + */ +var ProgramCache = {}; + +/** + * @todo Describe property usage + * + * @static + * @name TextureCache + * @memberof PIXI.utils + * @type {Object} + */ +var TextureCache = Object.create(null); + +/** + * @todo Describe property usage + * + * @static + * @name BaseTextureCache + * @memberof PIXI.utils + * @type {Object} + */ + +var BaseTextureCache = Object.create(null); + +/** + * Trim transparent borders from a canvas + * + * @memberof PIXI.utils + * @function trimCanvas + * @param {HTMLCanvasElement} canvas - the canvas to trim + * @returns {object} Trim data + */ +function trimCanvas(canvas) +{ + // https://gist.github.com/remy/784508 + + var width = canvas.width; + var height = canvas.height; + + var context = canvas.getContext('2d'); + var imageData = context.getImageData(0, 0, width, height); + var pixels = imageData.data; + var len = pixels.length; + + var bound = { + top: null, + left: null, + right: null, + bottom: null, + }; + var data = null; + var i; + var x; + var y; + + for (i = 0; i < len; i += 4) + { + if (pixels[i + 3] !== 0) + { + x = (i / 4) % width; + y = ~~((i / 4) / width); + + if (bound.top === null) + { + bound.top = y; + } + + if (bound.left === null) + { + bound.left = x; + } + else if (x < bound.left) + { + bound.left = x; + } + + if (bound.right === null) + { + bound.right = x + 1; + } + else if (bound.right < x) + { + bound.right = x + 1; + } + + if (bound.bottom === null) + { + bound.bottom = y; + } + else if (bound.bottom < y) + { + bound.bottom = y; + } + } + } + + if (bound.top !== null) + { + width = bound.right - bound.left; + height = bound.bottom - bound.top + 1; + data = context.getImageData(bound.left, bound.top, width, height); + } + + return { + height: height, + width: width, + data: data, + }; +} + +/** + * Creates a Canvas element of the given size to be used as a target for rendering to. + * + * @class + * @memberof PIXI.utils + */ +var CanvasRenderTarget = function CanvasRenderTarget(width, height, resolution) +{ + /** + * The Canvas object that belongs to this CanvasRenderTarget. + * + * @member {HTMLCanvasElement} + */ + this.canvas = document.createElement('canvas'); + + /** + * A CanvasRenderingContext2D object representing a two-dimensional rendering context. + * + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + this.resolution = resolution || settings.RESOLUTION; + + this.resize(width, height); +}; + +var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + +/** + * Clears the canvas that was created by the CanvasRenderTarget class. + * + * @private + */ +CanvasRenderTarget.prototype.clear = function clear () +{ + this.context.setTransform(1, 0, 0, 1, 0, 0); + this.context.clearRect(0, 0, this.canvas.width, this.canvas.height); +}; + +/** + * Resizes the canvas to the specified width and height. + * + * @param {number} width - the new width of the canvas + * @param {number} height - the new height of the canvas + */ +CanvasRenderTarget.prototype.resize = function resize (width, height) +{ + this.canvas.width = width * this.resolution; + this.canvas.height = height * this.resolution; +}; + +/** + * Destroys this canvas. + * + */ +CanvasRenderTarget.prototype.destroy = function destroy () +{ + this.context = null; + this.canvas = null; +}; + +/** + * The width of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.width.get = function () +{ + return this.canvas.width; +}; + +prototypeAccessors.width.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.width = val; +}; + +/** + * The height of the canvas buffer in pixels. + * + * @member {number} + */ +prototypeAccessors.height.get = function () +{ + return this.canvas.height; +}; + +prototypeAccessors.height.set = function (val) // eslint-disable-line require-jsdoc +{ + this.canvas.height = val; +}; + +Object.defineProperties( CanvasRenderTarget.prototype, prototypeAccessors ); + +var tempAnchor; + +/** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * Nipped from the resource loader! + * + * @ignore + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ +function determineCrossOrigin(url$1, loc) +{ + if ( loc === void 0 ) loc = window.location; + + // data: and javascript: urls are considered same-origin + if (url$1.indexOf('data:') === 0) + { + return ''; + } + + // default is window.location + loc = loc || window.location; + + if (!tempAnchor) + { + tempAnchor = document.createElement('a'); + } + + // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + tempAnchor.href = url$1; + url$1 = url.parse(tempAnchor.href); + + var samePort = (!url$1.port && loc.port === '') || (url$1.port === loc.port); + + // if cross origin + if (url$1.hostname !== loc.hostname || !samePort || url$1.protocol !== loc.protocol) + { + return 'anonymous'; + } + + return ''; +} + +/** + * get the resolution / device pixel ratio of an asset by looking for the prefix + * used by spritesheets and image urls + * + * @memberof PIXI.utils + * @function getResolutionOfUrl + * @param {string} url - the image path + * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set. + * @return {number} resolution / device pixel ratio of an asset + */ +function getResolutionOfUrl(url, defaultValue) +{ + var resolution = settings.RETINA_PREFIX.exec(url); + + if (resolution) + { + return parseFloat(resolution[1]); + } + + return defaultValue !== undefined ? defaultValue : 1; +} + +// A map of warning messages already fired +var warnings = {}; + +/** + * Helper for warning developers about deprecated features & settings. + * A stack track for warnings is given; useful for tracking-down where + * deprecated methods/properties/classes are being used within the code. + * + * @memberof PIXI.utils + * @function deprecation + * @param {string} version - The version where the feature became deprecated + * @param {string} message - Message should include what is deprecated, where, and the new solution + * @param {number} [ignoreDepth=3] - The number of steps to ignore at the top of the error stack + * this is mostly to ignore internal deprecation calls. + */ +function deprecation(version, message, ignoreDepth) +{ + if ( ignoreDepth === void 0 ) ignoreDepth = 3; + + // Ignore duplicat + if (warnings[message]) + { + return; + } + + /* eslint-disable no-console */ + var stack = new Error().stack; + + // Handle IE < 10 and Safari < 6 + if (typeof stack === 'undefined') + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + } + else + { + // chop off the stack trace which includes PixiJS internal calls + stack = stack.split('\n').splice(ignoreDepth).join('\n'); + + if (console.groupCollapsed) + { + console.groupCollapsed( + '%cPixiJS Deprecation Warning: %c%s', + 'color:#614108;background:#fffbe6', + 'font-weight:normal;color:#614108;background:#fffbe6', + (message + "\nDeprecated since v" + version) + ); + console.warn(stack); + console.groupEnd(); + } + else + { + console.warn('PixiJS Deprecation Warning: ', (message + "\nDeprecated since v" + version)); + console.warn(stack); + } + } + /* eslint-enable no-console */ + + warnings[message] = true; +} + +/*! + * @pixi/math - v5.1.0 + * Compiled Fri, 19 Jul 2019 21:54:36 UTC + * + * @pixi/math is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * @class + * @memberof PIXI + */ +var Point = function Point(x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; +}; + +/** + * Creates a clone of this point + * + * @return {PIXI.Point} a copy of the point + */ +Point.prototype.clone = function clone () +{ + return new Point(this.x, this.y); +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from + * @returns {PIXI.IPoint} Returns itself. + */ +Point.prototype.copyFrom = function copyFrom (p) +{ + this.set(p.x, p.y); + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +Point.prototype.copyTo = function copyTo (p) +{ + p.set(this.x, this.y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +Point.prototype.equals = function equals (p) +{ + return (p.x === this.x) && (p.y === this.y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +Point.prototype.set = function set (x, y) +{ + this.x = x || 0; + this.y = y || ((y !== 0) ? this.x : 0); +}; + +/** + * The Point object represents a location in a two-dimensional coordinate system, where x represents + * the horizontal axis and y represents the vertical axis. + * + * An ObservablePoint is a point that triggers a callback when the point's position is changed. + * + * @class + * @memberof PIXI + */ +var ObservablePoint = function ObservablePoint(cb, scope, x, y) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + this._x = x; + this._y = y; + + this.cb = cb; + this.scope = scope; +}; + +var prototypeAccessors$1 = { x: { configurable: true },y: { configurable: true } }; + +/** + * Creates a clone of this point. + * The callback and scope params can be overidden otherwise they will default + * to the clone object's values. + * + * @override + * @param {Function} [cb=null] - callback when changed + * @param {object} [scope=null] - owner of callback + * @return {PIXI.ObservablePoint} a copy of the point + */ +ObservablePoint.prototype.clone = function clone (cb, scope) +{ + if ( cb === void 0 ) cb = null; + if ( scope === void 0 ) scope = null; + + var _cb = cb || this.cb; + var _scope = scope || this.scope; + + return new ObservablePoint(_cb, _scope, this._x, this._y); +}; + +/** + * Sets the point to a new x and y position. + * If y is omitted, both x and y will be set to x. + * + * @param {number} [x=0] - position of the point on the x axis + * @param {number} [y=0] - position of the point on the y axis + */ +ObservablePoint.prototype.set = function set (x, y) +{ + var _x = x || 0; + var _y = y || ((y !== 0) ? _x : 0); + + if (this._x !== _x || this._y !== _y) + { + this._x = _x; + this._y = _y; + this.cb.call(this.scope); + } +}; + +/** + * Copies x and y from the given point + * + * @param {PIXI.IPoint} p - The point to copy from. + * @returns {PIXI.IPoint} Returns itself. + */ +ObservablePoint.prototype.copyFrom = function copyFrom (p) +{ + if (this._x !== p.x || this._y !== p.y) + { + this._x = p.x; + this._y = p.y; + this.cb.call(this.scope); + } + + return this; +}; + +/** + * Copies x and y into the given point + * + * @param {PIXI.IPoint} p - The point to copy. + * @returns {PIXI.IPoint} Given point with values updated + */ +ObservablePoint.prototype.copyTo = function copyTo (p) +{ + p.set(this._x, this._y); + + return p; +}; + +/** + * Returns true if the given point is equal to this point + * + * @param {PIXI.IPoint} p - The point to check + * @returns {boolean} Whether the given point equal to this point + */ +ObservablePoint.prototype.equals = function equals (p) +{ + return (p.x === this._x) && (p.y === this._y); +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.x.get = function () +{ + return this._x; +}; + +prototypeAccessors$1.x.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._x !== value) + { + this._x = value; + this.cb.call(this.scope); + } +}; + +/** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * + * @member {number} + */ +prototypeAccessors$1.y.get = function () +{ + return this._y; +}; + +prototypeAccessors$1.y.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._y !== value) + { + this._y = value; + this.cb.call(this.scope); + } +}; + +Object.defineProperties( ObservablePoint.prototype, prototypeAccessors$1 ); + +/** + * A number, or a string containing a number. + * @memberof PIXI + * @typedef {(PIXI.Point|PIXI.ObservablePoint)} IPoint + */ + +/** + * Two Pi. + * + * @static + * @constant {number} PI_2 + * @memberof PIXI + */ +var PI_2 = Math.PI * 2; + +/** + * Conversion factor for converting radians to degrees. + * + * @static + * @constant {number} RAD_TO_DEG + * @memberof PIXI + */ +var RAD_TO_DEG = 180 / Math.PI; + +/** + * Conversion factor for converting degrees to radians. + * + * @static + * @constant {number} DEG_TO_RAD + * @memberof PIXI + */ +var DEG_TO_RAD = Math.PI / 180; + +/** + * Constants that identify shapes, mainly to prevent `instanceof` calls. + * + * @static + * @constant + * @name SHAPES + * @memberof PIXI + * @type {object} + * @property {number} POLY Polygon + * @property {number} RECT Rectangle + * @property {number} CIRC Circle + * @property {number} ELIP Ellipse + * @property {number} RREC Rounded Rectangle + */ +var SHAPES = { + POLY: 0, + RECT: 1, + CIRC: 2, + ELIP: 3, + RREC: 4, +}; + +/** + * The PixiJS Matrix as a class makes it a lot faster. + * + * Here is a representation of it: + * ```js + * | a | c | tx| + * | b | d | ty| + * | 0 | 0 | 1 | + * ``` + * @class + * @memberof PIXI + */ +var Matrix = function Matrix(a, b, c, d, tx, ty) +{ + if ( a === void 0 ) a = 1; + if ( b === void 0 ) b = 0; + if ( c === void 0 ) c = 0; + if ( d === void 0 ) d = 1; + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + /** + * @member {number} + * @default 1 + */ + this.a = a; + + /** + * @member {number} + * @default 0 + */ + this.b = b; + + /** + * @member {number} + * @default 0 + */ + this.c = c; + + /** + * @member {number} + * @default 1 + */ + this.d = d; + + /** + * @member {number} + * @default 0 + */ + this.tx = tx; + + /** + * @member {number} + * @default 0 + */ + this.ty = ty; + + this.array = null; +}; + +var staticAccessors = { IDENTITY: { configurable: true },TEMP_MATRIX: { configurable: true } }; + +/** + * Creates a Matrix object based on the given array. The Element to Matrix mapping order is as follows: + * + * a = array[0] + * b = array[1] + * c = array[3] + * d = array[4] + * tx = array[2] + * ty = array[5] + * + * @param {number[]} array - The array that the matrix will be populated from. + */ +Matrix.prototype.fromArray = function fromArray (array) +{ + this.a = array[0]; + this.b = array[1]; + this.c = array[3]; + this.d = array[4]; + this.tx = array[2]; + this.ty = array[5]; +}; + +/** + * sets the matrix properties + * + * @param {number} a - Matrix component + * @param {number} b - Matrix component + * @param {number} c - Matrix component + * @param {number} d - Matrix component + * @param {number} tx - Matrix component + * @param {number} ty - Matrix component + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.set = function set (a, b, c, d, tx, ty) +{ + this.a = a; + this.b = b; + this.c = c; + this.d = d; + this.tx = tx; + this.ty = ty; + + return this; +}; + +/** + * Creates an array from the current Matrix object. + * + * @param {boolean} transpose - Whether we need to transpose the matrix or not + * @param {Float32Array} [out=new Float32Array(9)] - If provided the array will be assigned to out + * @return {number[]} the newly created array which contains the matrix + */ +Matrix.prototype.toArray = function toArray (transpose, out) +{ + if (!this.array) + { + this.array = new Float32Array(9); + } + + var array = out || this.array; + + if (transpose) + { + array[0] = this.a; + array[1] = this.b; + array[2] = 0; + array[3] = this.c; + array[4] = this.d; + array[5] = 0; + array[6] = this.tx; + array[7] = this.ty; + array[8] = 1; + } + else + { + array[0] = this.a; + array[1] = this.c; + array[2] = this.tx; + array[3] = this.b; + array[4] = this.d; + array[5] = this.ty; + array[6] = 0; + array[7] = 0; + array[8] = 1; + } + + return array; +}; + +/** + * Get a new position with the current transformation applied. + * Can be used to go from a child's coordinate space to the world coordinate space. (e.g. rendering) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, transformed through this matrix + */ +Matrix.prototype.apply = function apply (pos, newPos) +{ + newPos = newPos || new Point(); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.a * x) + (this.c * y) + this.tx; + newPos.y = (this.b * x) + (this.d * y) + this.ty; + + return newPos; +}; + +/** + * Get a new position with the inverse of the current transformation applied. + * Can be used to go from the world coordinate space to a child's coordinate space. (e.g. input) + * + * @param {PIXI.Point} pos - The origin + * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input) + * @return {PIXI.Point} The new point, inverse-transformed through this matrix + */ +Matrix.prototype.applyInverse = function applyInverse (pos, newPos) +{ + newPos = newPos || new Point(); + + var id = 1 / ((this.a * this.d) + (this.c * -this.b)); + + var x = pos.x; + var y = pos.y; + + newPos.x = (this.d * id * x) + (-this.c * id * y) + (((this.ty * this.c) - (this.tx * this.d)) * id); + newPos.y = (this.a * id * y) + (-this.b * id * x) + (((-this.ty * this.a) + (this.tx * this.b)) * id); + + return newPos; +}; + +/** + * Translates the matrix on the x and y. + * + * @param {number} x How much to translate x by + * @param {number} y How much to translate y by + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.translate = function translate (x, y) +{ + this.tx += x; + this.ty += y; + + return this; +}; + +/** + * Applies a scale transformation to the matrix. + * + * @param {number} x The amount to scale horizontally + * @param {number} y The amount to scale vertically + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.scale = function scale (x, y) +{ + this.a *= x; + this.d *= y; + this.c *= x; + this.b *= y; + this.tx *= x; + this.ty *= y; + + return this; +}; + +/** + * Applies a rotation transformation to the matrix. + * + * @param {number} angle - The angle in radians. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.rotate = function rotate (angle) +{ + var cos = Math.cos(angle); + var sin = Math.sin(angle); + + var a1 = this.a; + var c1 = this.c; + var tx1 = this.tx; + + this.a = (a1 * cos) - (this.b * sin); + this.b = (a1 * sin) + (this.b * cos); + this.c = (c1 * cos) - (this.d * sin); + this.d = (c1 * sin) + (this.d * cos); + this.tx = (tx1 * cos) - (this.ty * sin); + this.ty = (tx1 * sin) + (this.ty * cos); + + return this; +}; + +/** + * Appends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to append. + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.append = function append (matrix) +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + + this.a = (matrix.a * a1) + (matrix.b * c1); + this.b = (matrix.a * b1) + (matrix.b * d1); + this.c = (matrix.c * a1) + (matrix.d * c1); + this.d = (matrix.c * b1) + (matrix.d * d1); + + this.tx = (matrix.tx * a1) + (matrix.ty * c1) + this.tx; + this.ty = (matrix.tx * b1) + (matrix.ty * d1) + this.ty; + + return this; +}; + +/** + * Sets the matrix based on all the available properties + * + * @param {number} x - Position on the x axis + * @param {number} y - Position on the y axis + * @param {number} pivotX - Pivot on the x axis + * @param {number} pivotY - Pivot on the y axis + * @param {number} scaleX - Scale on the x axis + * @param {number} scaleY - Scale on the y axis + * @param {number} rotation - Rotation in radians + * @param {number} skewX - Skew on the x axis + * @param {number} skewY - Skew on the y axis + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.setTransform = function setTransform (x, y, pivotX, pivotY, scaleX, scaleY, rotation, skewX, skewY) +{ + this.a = Math.cos(rotation + skewY) * scaleX; + this.b = Math.sin(rotation + skewY) * scaleX; + this.c = -Math.sin(rotation - skewX) * scaleY; + this.d = Math.cos(rotation - skewX) * scaleY; + + this.tx = x - ((pivotX * this.a) + (pivotY * this.c)); + this.ty = y - ((pivotX * this.b) + (pivotY * this.d)); + + return this; +}; + +/** + * Prepends the given Matrix to this Matrix. + * + * @param {PIXI.Matrix} matrix - The matrix to prepend + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.prepend = function prepend (matrix) +{ + var tx1 = this.tx; + + if (matrix.a !== 1 || matrix.b !== 0 || matrix.c !== 0 || matrix.d !== 1) + { + var a1 = this.a; + var c1 = this.c; + + this.a = (a1 * matrix.a) + (this.b * matrix.c); + this.b = (a1 * matrix.b) + (this.b * matrix.d); + this.c = (c1 * matrix.a) + (this.d * matrix.c); + this.d = (c1 * matrix.b) + (this.d * matrix.d); + } + + this.tx = (tx1 * matrix.a) + (this.ty * matrix.c) + matrix.tx; + this.ty = (tx1 * matrix.b) + (this.ty * matrix.d) + matrix.ty; + + return this; +}; + +/** + * Decomposes the matrix (x, y, scaleX, scaleY, and rotation) and sets the properties on to a transform. + * + * @param {PIXI.Transform} transform - The transform to apply the properties to. + * @return {PIXI.Transform} The transform with the newly applied properties + */ +Matrix.prototype.decompose = function decompose (transform) +{ + // sort out rotation / skew.. + var a = this.a; + var b = this.b; + var c = this.c; + var d = this.d; + + var skewX = -Math.atan2(-c, d); + var skewY = Math.atan2(b, a); + + var delta = Math.abs(skewX + skewY); + + if (delta < 0.00001 || Math.abs(PI_2 - delta) < 0.00001) + { + transform.rotation = skewY; + transform.skew.x = transform.skew.y = 0; + } + else + { + transform.rotation = 0; + transform.skew.x = skewX; + transform.skew.y = skewY; + } + + // next set scale + transform.scale.x = Math.sqrt((a * a) + (b * b)); + transform.scale.y = Math.sqrt((c * c) + (d * d)); + + // next set position + transform.position.x = this.tx; + transform.position.y = this.ty; + + return transform; +}; + +/** + * Inverts this matrix + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.invert = function invert () +{ + var a1 = this.a; + var b1 = this.b; + var c1 = this.c; + var d1 = this.d; + var tx1 = this.tx; + var n = (a1 * d1) - (b1 * c1); + + this.a = d1 / n; + this.b = -b1 / n; + this.c = -c1 / n; + this.d = a1 / n; + this.tx = ((c1 * this.ty) - (d1 * tx1)) / n; + this.ty = -((a1 * this.ty) - (b1 * tx1)) / n; + + return this; +}; + +/** + * Resets this Matrix to an identity (default) matrix. + * + * @return {PIXI.Matrix} This matrix. Good for chaining method calls. + */ +Matrix.prototype.identity = function identity () +{ + this.a = 1; + this.b = 0; + this.c = 0; + this.d = 1; + this.tx = 0; + this.ty = 0; + + return this; +}; + +/** + * Creates a new Matrix object with the same values as this one. + * + * @return {PIXI.Matrix} A copy of this matrix. Good for chaining method calls. + */ +Matrix.prototype.clone = function clone () +{ + var matrix = new Matrix(); + + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the given matrix to be the same as the ones in this matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy to. + * @return {PIXI.Matrix} The matrix given in parameter with its values updated. + */ +Matrix.prototype.copyTo = function copyTo (matrix) +{ + matrix.a = this.a; + matrix.b = this.b; + matrix.c = this.c; + matrix.d = this.d; + matrix.tx = this.tx; + matrix.ty = this.ty; + + return matrix; +}; + +/** + * Changes the values of the matrix to be the same as the ones in given matrix + * + * @param {PIXI.Matrix} matrix - The matrix to copy from. + * @return {PIXI.Matrix} this + */ +Matrix.prototype.copyFrom = function copyFrom (matrix) +{ + this.a = matrix.a; + this.b = matrix.b; + this.c = matrix.c; + this.d = matrix.d; + this.tx = matrix.tx; + this.ty = matrix.ty; + + return this; +}; + +/** + * A default (identity) matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.IDENTITY.get = function () +{ + return new Matrix(); +}; + +/** + * A temp matrix + * + * @static + * @const + * @member {PIXI.Matrix} + */ +staticAccessors.TEMP_MATRIX.get = function () +{ + return new Matrix(); +}; + +Object.defineProperties( Matrix, staticAccessors ); + +// Your friendly neighbour https://en.wikipedia.org/wiki/Dihedral_group + +/* + * Transform matrix for operation n is: + * | ux | vx | + * | uy | vy | + */ + +var ux = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1]; +var uy = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vx = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1]; +var vy = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1]; + +/** + * [Cayley Table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * for the composition of each rotation in the dihederal group D8. + * + * @type number[][] + * @private + */ +var rotationCayley = []; + +/** + * Matrices for each `GD8Symmetry` rotation. + * + * @type Matrix[] + * @private + */ +var rotationMatrices = []; + +/* + * Alias for {@code Math.sign}. + */ +var signum = Math.sign; + +/* + * Initializes `rotationCayley` and `rotationMatrices`. It is called + * only once below. + */ +function init() +{ + for (var i = 0; i < 16; i++) + { + var row = []; + + rotationCayley.push(row); + + for (var j = 0; j < 16; j++) + { + /* Multiplies rotation matrices i and j. */ + var _ux = signum((ux[i] * ux[j]) + (vx[i] * uy[j])); + var _uy = signum((uy[i] * ux[j]) + (vy[i] * uy[j])); + var _vx = signum((ux[i] * vx[j]) + (vx[i] * vy[j])); + var _vy = signum((uy[i] * vx[j]) + (vy[i] * vy[j])); + + /* Finds rotation matrix matching the product and pushes it. */ + for (var k = 0; k < 16; k++) + { + if (ux[k] === _ux && uy[k] === _uy + && vx[k] === _vx && vy[k] === _vy) + { + row.push(k); + break; + } + } + } + } + + for (var i$1 = 0; i$1 < 16; i$1++) + { + var mat = new Matrix(); + + mat.set(ux[i$1], uy[i$1], vx[i$1], vy[i$1], 0, 0); + rotationMatrices.push(mat); + } +} + +init(); + +/** + * @memberof PIXI + * @typedef {number} GD8Symmetry + * @see PIXI.GroupD8 + */ + +/** + * Implements the dihedral group D8, which is similar to + * [group D4]{@link http://mathworld.wolfram.com/DihedralGroupD4.html}; + * D8 is the same but with diagonals, and it is used for texture + * rotations. + * + * The directions the U- and V- axes after rotation + * of an angle of `a: GD8Constant` are the vectors `(uX(a), uY(a))` + * and `(vX(a), vY(a))`. These aren't necessarily unit vectors. + * + * **Origin:**
+ * This is the small part of gameofbombs.com portal system. It works. + * + * @see PIXI.GroupD8.E + * @see PIXI.GroupD8.SE + * @see PIXI.GroupD8.S + * @see PIXI.GroupD8.SW + * @see PIXI.GroupD8.W + * @see PIXI.GroupD8.NW + * @see PIXI.GroupD8.N + * @see PIXI.GroupD8.NE + * @author Ivan @ivanpopelyshev + * @class + * @memberof PIXI + */ +var GroupD8 = { + /** + * | Rotation | Direction | + * |----------|-----------| + * | 0° | East | + * + * @constant {PIXI.GD8Symmetry} + */ + E: 0, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 45°↻ | Southeast | + * + * @constant {PIXI.GD8Symmetry} + */ + SE: 1, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 90°↻ | South | + * + * @constant {PIXI.GD8Symmetry} + */ + S: 2, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 135°↻ | Southwest | + * + * @constant {PIXI.GD8Symmetry} + */ + SW: 3, + + /** + * | Rotation | Direction | + * |----------|-----------| + * | 180° | West | + * + * @constant {PIXI.GD8Symmetry} + */ + W: 4, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -135°/225°↻ | Northwest | + * + * @constant {PIXI.GD8Symmetry} + */ + NW: 5, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -90°/270°↻ | North | + * + * @constant {PIXI.GD8Symmetry} + */ + N: 6, + + /** + * | Rotation | Direction | + * |-------------|--------------| + * | -45°/315°↻ | Northeast | + * + * @constant {PIXI.GD8Symmetry} + */ + NE: 7, + + /** + * Reflection about Y-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_VERTICAL: 8, + + /** + * Reflection about the main diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + MAIN_DIAGONAL: 10, + + /** + * Reflection about X-axis. + * + * @constant {PIXI.GD8Symmetry} + */ + MIRROR_HORIZONTAL: 12, + + /** + * Reflection about reverse diagonal. + * + * @constant {PIXI.GD8Symmetry} + */ + REVERSE_DIAGONAL: 14, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the U-axis + * after rotating the axes. + */ + uX: function (ind) { return ux[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the U-axis + * after rotating the axes. + */ + uY: function (ind) { return uy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The X-component of the V-axis + * after rotating the axes. + */ + vX: function (ind) { return vx[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} ind - sprite rotation angle. + * @return {PIXI.GD8Symmetry} The Y-component of the V-axis + * after rotating the axes. + */ + vY: function (ind) { return vy[ind]; }, + + /** + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - symmetry whose opposite + * is needed. Only rotations have opposite symmetries while + * reflections don't. + * @return {PIXI.GD8Symmetry} The opposite symmetry of `rotation` + */ + inv: function (rotation) { + if (rotation & 8)// true only if between 8 & 15 (reflections) + { + return rotation & 15;// or rotation % 16 + } + + return (-rotation) & 7;// or (8 - rotation) % 8 + }, + + /** + * Composes the two D8 operations. + * + * Taking `^` as reflection: + * + * | | E=0 | S=2 | W=4 | N=6 | E^=8 | S^=10 | W^=12 | N^=14 | + * |-------|-----|-----|-----|-----|------|-------|-------|-------| + * | E=0 | E | S | W | N | E^ | S^ | W^ | N^ | + * | S=2 | S | W | N | E | S^ | W^ | N^ | E^ | + * | W=4 | W | N | E | S | W^ | N^ | E^ | S^ | + * | N=6 | N | E | S | W | N^ | E^ | S^ | W^ | + * | E^=8 | E^ | N^ | W^ | S^ | E | N | W | S | + * | S^=10 | S^ | E^ | N^ | W^ | S | E | N | W | + * | W^=12 | W^ | S^ | E^ | N^ | W | S | E | N | + * | N^=14 | N^ | W^ | S^ | E^ | N | W | S | E | + * + * [This is a Cayley table]{@link https://en.wikipedia.org/wiki/Cayley_table} + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation, which + * is the row in the above cayley table. + * @param {PIXI.GD8Symmetry} rotationFirst - First operation, which + * is the column in the above cayley table. + * @return {PIXI.GD8Symmetry} Composed operation + */ + add: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][rotationFirst] + ); }, + + /** + * Reverse of `add`. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotationSecond - Second operation + * @param {PIXI.GD8Symmetry} rotationFirst - First operation + * @return {PIXI.GD8Symmetry} Result + */ + sub: function (rotationSecond, rotationFirst) { return ( + rotationCayley[rotationSecond][GroupD8.inv(rotationFirst)] + ); }, + + /** + * Adds 180 degrees to rotation, which is a commutative + * operation. + * + * @memberof PIXI.GroupD8 + * @param {number} rotation - The number to rotate. + * @returns {number} Rotated number + */ + rotate180: function (rotation) { return rotation ^ 4; }, + + /** + * Checks if the rotation angle is vertical, i.e. south + * or north. It doesn't work for reflections. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.GD8Symmetry} rotation - The number to check. + * @returns {boolean} Whether or not the direction is vertical + */ + isVertical: function (rotation) { return (rotation & 3) === 2; }, // rotation % 4 === 2 + + /** + * Approximates the vector `V(dx,dy)` into one of the + * eight directions provided by `GroupD8`. + * + * @memberof PIXI.GroupD8 + * @param {number} dx - X-component of the vector + * @param {number} dy - Y-component of the vector + * @return {PIXI.GD8Symmetry} Approximation of the vector into + * one of the eight symmetries. + */ + byDirection: function (dx, dy) { + if (Math.abs(dx) * 2 <= Math.abs(dy)) + { + if (dy >= 0) + { + return GroupD8.S; + } + + return GroupD8.N; + } + else if (Math.abs(dy) * 2 <= Math.abs(dx)) + { + if (dx > 0) + { + return GroupD8.E; + } + + return GroupD8.W; + } + else if (dy > 0) + { + if (dx > 0) + { + return GroupD8.SE; + } + + return GroupD8.SW; + } + else if (dx > 0) + { + return GroupD8.NE; + } + + return GroupD8.NW; + }, + + /** + * Helps sprite to compensate texture packer rotation. + * + * @memberof PIXI.GroupD8 + * @param {PIXI.Matrix} matrix - sprite world matrix + * @param {PIXI.GD8Symmetry} rotation - The rotation factor to use. + * @param {number} tx - sprite anchoring + * @param {number} ty - sprite anchoring + */ + matrixAppendRotationInv: function (matrix, rotation, tx, ty) { + if ( tx === void 0 ) tx = 0; + if ( ty === void 0 ) ty = 0; + + // Packer used "rotation", we use "inv(rotation)" + var mat = rotationMatrices[GroupD8.inv(rotation)]; + + mat.tx = tx; + mat.ty = ty; + matrix.append(mat); + }, +}; + +/** + * Transform that takes care about its versions + * + * @class + * @memberof PIXI + */ +var Transform = function Transform() +{ + /** + * The world transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.worldTransform = new Matrix(); + + /** + * The local transformation matrix. + * + * @member {PIXI.Matrix} + */ + this.localTransform = new Matrix(); + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * + * @member {PIXI.ObservablePoint} + */ + this.position = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The scale factor of the object. + * + * @member {PIXI.ObservablePoint} + */ + this.scale = new ObservablePoint(this.onChange, this, 1, 1); + + /** + * The pivot point of the displayObject that it rotates around. + * + * @member {PIXI.ObservablePoint} + */ + this.pivot = new ObservablePoint(this.onChange, this, 0, 0); + + /** + * The skew amount, on the x and y axis. + * + * @member {PIXI.ObservablePoint} + */ + this.skew = new ObservablePoint(this.updateSkew, this, 0, 0); + + /** + * The rotation amount. + * + * @protected + * @member {number} + */ + this._rotation = 0; + + /** + * The X-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cx = 1; + + /** + * The Y-coordinate value of the normalized local X axis, + * the first column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sx = 0; + + /** + * The X-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._cy = 0; + + /** + * The Y-coordinate value of the normalized local Y axis, + * the second column of the local transformation matrix without a scale. + * + * @protected + * @member {number} + */ + this._sy = 1; + + /** + * The locally unique ID of the local transform. + * + * @protected + * @member {number} + */ + this._localID = 0; + + /** + * The locally unique ID of the local transform + * used to calculate the current local transformation matrix. + * + * @protected + * @member {number} + */ + this._currentLocalID = 0; + + /** + * The locally unique ID of the world transform. + * + * @protected + * @member {number} + */ + this._worldID = 0; + + /** + * The locally unique ID of the parent's world transform + * used to calculate the current world transformation matrix. + * + * @protected + * @member {number} + */ + this._parentID = 0; +}; + +var prototypeAccessors$1$1 = { rotation: { configurable: true } }; + +/** + * Called when a value changes. + * + * @protected + */ +Transform.prototype.onChange = function onChange () +{ + this._localID++; +}; + +/** + * Called when the skew or the rotation changes. + * + * @protected + */ +Transform.prototype.updateSkew = function updateSkew () +{ + this._cx = Math.cos(this._rotation + this.skew._y); + this._sx = Math.sin(this._rotation + this.skew._y); + this._cy = -Math.sin(this._rotation - this.skew._x); // cos, added PI/2 + this._sy = Math.cos(this._rotation - this.skew._x); // sin, added PI/2 + + this._localID++; +}; + +/** + * Updates the local transformation matrix. + */ +Transform.prototype.updateLocalTransform = function updateLocalTransform () +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } +}; + +/** + * Updates the local and the world transformation matrices. + * + * @param {PIXI.Transform} parentTransform - The parent transform + */ +Transform.prototype.updateTransform = function updateTransform (parentTransform) +{ + var lt = this.localTransform; + + if (this._localID !== this._currentLocalID) + { + // get the matrix values of the displayobject based on its transform properties.. + lt.a = this._cx * this.scale._x; + lt.b = this._sx * this.scale._x; + lt.c = this._cy * this.scale._y; + lt.d = this._sy * this.scale._y; + + lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c)); + lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d)); + this._currentLocalID = this._localID; + + // force an update.. + this._parentID = -1; + } + + if (this._parentID !== parentTransform._worldID) + { + // concat the parent matrix with the objects transform. + var pt = parentTransform.worldTransform; + var wt = this.worldTransform; + + wt.a = (lt.a * pt.a) + (lt.b * pt.c); + wt.b = (lt.a * pt.b) + (lt.b * pt.d); + wt.c = (lt.c * pt.a) + (lt.d * pt.c); + wt.d = (lt.c * pt.b) + (lt.d * pt.d); + wt.tx = (lt.tx * pt.a) + (lt.ty * pt.c) + pt.tx; + wt.ty = (lt.tx * pt.b) + (lt.ty * pt.d) + pt.ty; + + this._parentID = parentTransform._worldID; + + // update the id of the transform.. + this._worldID++; + } +}; + +/** + * Decomposes a matrix and sets the transforms properties based on it. + * + * @param {PIXI.Matrix} matrix - The matrix to decompose + */ +Transform.prototype.setFromMatrix = function setFromMatrix (matrix) +{ + matrix.decompose(this); + this._localID++; +}; + +/** + * The rotation of the object in radians. + * + * @member {number} + */ +prototypeAccessors$1$1.rotation.get = function () +{ + return this._rotation; +}; + +prototypeAccessors$1$1.rotation.set = function (value) // eslint-disable-line require-jsdoc +{ + if (this._rotation !== value) + { + this._rotation = value; + this.updateSkew(); + } +}; + +Object.defineProperties( Transform.prototype, prototypeAccessors$1$1 ); + +/** + * A default (identity) transform + * + * @static + * @constant + * @member {PIXI.Transform} + */ +Transform.IDENTITY = new Transform(); + +/** + * Size object, contains width and height + * + * @memberof PIXI + * @typedef {object} ISize + * @property {number} width - Width component + * @property {number} height - Height component + */ + +/** + * Rectangle object is an area defined by its position, as indicated by its top-left corner + * point (x, y) and by its width and its height. + * + * @class + * @memberof PIXI + */ +var Rectangle = function Rectangle(x, y, width, height) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = Number(x); + + /** + * @member {number} + * @default 0 + */ + this.y = Number(y); + + /** + * @member {number} + * @default 0 + */ + this.width = Number(width); + + /** + * @member {number} + * @default 0 + */ + this.height = Number(height); + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.RECT + * @see PIXI.SHAPES + */ + this.type = SHAPES.RECT; +}; + +var prototypeAccessors$2 = { left: { configurable: true },right: { configurable: true },top: { configurable: true },bottom: { configurable: true } }; +var staticAccessors$1 = { EMPTY: { configurable: true } }; + +/** + * returns the left edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.left.get = function () +{ + return this.x; +}; + +/** + * returns the right edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.right.get = function () +{ + return this.x + this.width; +}; + +/** + * returns the top edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.top.get = function () +{ + return this.y; +}; + +/** + * returns the bottom edge of the rectangle + * + * @member {number} + */ +prototypeAccessors$2.bottom.get = function () +{ + return this.y + this.height; +}; + +/** + * A constant empty rectangle. + * + * @static + * @constant + * @member {PIXI.Rectangle} + */ +staticAccessors$1.EMPTY.get = function () +{ + return new Rectangle(0, 0, 0, 0); +}; + +/** + * Creates a clone of this Rectangle + * + * @return {PIXI.Rectangle} a copy of the rectangle + */ +Rectangle.prototype.clone = function clone () +{ + return new Rectangle(this.x, this.y, this.width, this.height); +}; + +/** + * Copies another rectangle to this one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy from. + * @return {PIXI.Rectangle} Returns itself. + */ +Rectangle.prototype.copyFrom = function copyFrom (rectangle) +{ + this.x = rectangle.x; + this.y = rectangle.y; + this.width = rectangle.width; + this.height = rectangle.height; + + return this; +}; + +/** + * Copies this rectangle to another one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to copy to. + * @return {PIXI.Rectangle} Returns given parameter. + */ +Rectangle.prototype.copyTo = function copyTo (rectangle) +{ + rectangle.x = this.x; + rectangle.y = this.y; + rectangle.width = this.width; + rectangle.height = this.height; + + return rectangle; +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rectangle + */ +Rectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + if (x >= this.x && x < this.x + this.width) + { + if (y >= this.y && y < this.y + this.height) + { + return true; + } + } + + return false; +}; + +/** + * Pads the rectangle making it grow in all directions. + * + * @param {number} paddingX - The horizontal padding amount. + * @param {number} paddingY - The vertical padding amount. + */ +Rectangle.prototype.pad = function pad (paddingX, paddingY) +{ + paddingX = paddingX || 0; + paddingY = paddingY || ((paddingY !== 0) ? paddingX : 0); + + this.x -= paddingX; + this.y -= paddingY; + + this.width += paddingX * 2; + this.height += paddingY * 2; +}; + +/** + * Fits this rectangle around the passed one. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to fit. + */ +Rectangle.prototype.fit = function fit (rectangle) +{ + var x1 = Math.max(this.x, rectangle.x); + var x2 = Math.min(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.max(this.y, rectangle.y); + var y2 = Math.min(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = Math.max(x2 - x1, 0); + this.y = y1; + this.height = Math.max(y2 - y1, 0); +}; + +/** + * Enlarges rectangle that way its corners lie on grid + * + * @param {number} [resolution=1] resolution + * @param {number} [eps=0.001] precision + */ +Rectangle.prototype.ceil = function ceil (resolution, eps) +{ + if ( resolution === void 0 ) resolution = 1; + if ( eps === void 0 ) eps = 0.001; + + var x2 = Math.ceil((this.x + this.width - eps) * resolution) / resolution; + var y2 = Math.ceil((this.y + this.height - eps) * resolution) / resolution; + + this.x = Math.floor((this.x + eps) * resolution) / resolution; + this.y = Math.floor((this.y + eps) * resolution) / resolution; + + this.width = x2 - this.x; + this.height = y2 - this.y; +}; + +/** + * Enlarges this rectangle to include the passed rectangle. + * + * @param {PIXI.Rectangle} rectangle - The rectangle to include. + */ +Rectangle.prototype.enlarge = function enlarge (rectangle) +{ + var x1 = Math.min(this.x, rectangle.x); + var x2 = Math.max(this.x + this.width, rectangle.x + rectangle.width); + var y1 = Math.min(this.y, rectangle.y); + var y2 = Math.max(this.y + this.height, rectangle.y + rectangle.height); + + this.x = x1; + this.width = x2 - x1; + this.y = y1; + this.height = y2 - y1; +}; + +Object.defineProperties( Rectangle.prototype, prototypeAccessors$2 ); +Object.defineProperties( Rectangle, staticAccessors$1 ); + +/** + * The Circle object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Circle = function Circle(x, y, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( radius === void 0 ) radius = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.CIRC + * @see PIXI.SHAPES + */ + this.type = SHAPES.CIRC; +}; + +/** + * Creates a clone of this Circle instance + * + * @return {PIXI.Circle} a copy of the Circle + */ +Circle.prototype.clone = function clone () +{ + return new Circle(this.x, this.y, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this circle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Circle + */ +Circle.prototype.contains = function contains (x, y) +{ + if (this.radius <= 0) + { + return false; + } + + var r2 = this.radius * this.radius; + var dx = (this.x - x); + var dy = (this.y - y); + + dx *= dx; + dy *= dy; + + return (dx + dy <= r2); +}; + +/** +* Returns the framing rectangle of the circle as a Rectangle object +* +* @return {PIXI.Rectangle} the framing rectangle +*/ +Circle.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2); +}; + +/** + * The Ellipse object is used to help draw graphics and can also be used to specify a hit area for displayObjects. + * + * @class + * @memberof PIXI + */ +var Ellipse = function Ellipse(x, y, halfWidth, halfHeight) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( halfWidth === void 0 ) halfWidth = 0; + if ( halfHeight === void 0 ) halfHeight = 0; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = halfWidth; + + /** + * @member {number} + * @default 0 + */ + this.height = halfHeight; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.ELIP + * @see PIXI.SHAPES + */ + this.type = SHAPES.ELIP; +}; + +/** + * Creates a clone of this Ellipse instance + * + * @return {PIXI.Ellipse} a copy of the ellipse + */ +Ellipse.prototype.clone = function clone () +{ + return new Ellipse(this.x, this.y, this.width, this.height); +}; + +/** + * Checks whether the x and y coordinates given are contained within this ellipse + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coords are within this ellipse + */ +Ellipse.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + + // normalize the coords to an ellipse with center 0,0 + var normx = ((x - this.x) / this.width); + var normy = ((y - this.y) / this.height); + + normx *= normx; + normy *= normy; + + return (normx + normy <= 1); +}; + +/** + * Returns the framing rectangle of the ellipse as a Rectangle object + * + * @return {PIXI.Rectangle} the framing rectangle + */ +Ellipse.prototype.getBounds = function getBounds () +{ + return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height); +}; + +/** + * A class to define a shape via user defined co-orinates. + * + * @class + * @memberof PIXI + */ +var Polygon = function Polygon() +{ + var points = [], len = arguments.length; + while ( len-- ) points[ len ] = arguments[ len ]; + + if (Array.isArray(points[0])) + { + points = points[0]; + } + + // if this is an array of points, convert it to a flat array of numbers + if (points[0] instanceof Point) + { + var p = []; + + for (var i = 0, il = points.length; i < il; i++) + { + p.push(points[i].x, points[i].y); + } + + points = p; + } + + /** + * An array of the points of this polygon + * + * @member {number[]} + */ + this.points = points; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readOnly + * @default PIXI.SHAPES.POLY + * @see PIXI.SHAPES + */ + this.type = SHAPES.POLY; + + /** + * `false` after moveTo, `true` after `closePath`. In all other cases it is `true`. + * @member {boolean} + * @default true + */ + this.closeStroke = true; +}; + +/** + * Creates a clone of this polygon + * + * @return {PIXI.Polygon} a copy of the polygon + */ +Polygon.prototype.clone = function clone () +{ + var polygon = new Polygon(this.points.slice()); + + polygon.closeStroke = this.closeStroke; + + return polygon; +}; + +/** + * Checks whether the x and y coordinates passed to this function are contained within this polygon + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this polygon + */ +Polygon.prototype.contains = function contains (x, y) +{ + var inside = false; + + // use some raycasting to test hits + // https://github.com/substack/point-in-polygon/blob/master/index.js + var length = this.points.length / 2; + + for (var i = 0, j = length - 1; i < length; j = i++) + { + var xi = this.points[i * 2]; + var yi = this.points[(i * 2) + 1]; + var xj = this.points[j * 2]; + var yj = this.points[(j * 2) + 1]; + var intersect = ((yi > y) !== (yj > y)) && (x < ((xj - xi) * ((y - yi) / (yj - yi))) + xi); + + if (intersect) + { + inside = !inside; + } + } + + return inside; +}; + +/** + * The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its + * top-left corner point (x, y) and by its width and its height and its radius. + * + * @class + * @memberof PIXI + */ +var RoundedRectangle = function RoundedRectangle(x, y, width, height, radius) +{ + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + if ( radius === void 0 ) radius = 20; + + /** + * @member {number} + * @default 0 + */ + this.x = x; + + /** + * @member {number} + * @default 0 + */ + this.y = y; + + /** + * @member {number} + * @default 0 + */ + this.width = width; + + /** + * @member {number} + * @default 0 + */ + this.height = height; + + /** + * @member {number} + * @default 20 + */ + this.radius = radius; + + /** + * The type of the object, mainly used to avoid `instanceof` checks + * + * @member {number} + * @readonly + * @default PIXI.SHAPES.RREC + * @see PIXI.SHAPES + */ + this.type = SHAPES.RREC; +}; + +/** + * Creates a clone of this Rounded Rectangle + * + * @return {PIXI.RoundedRectangle} a copy of the rounded rectangle + */ +RoundedRectangle.prototype.clone = function clone () +{ + return new RoundedRectangle(this.x, this.y, this.width, this.height, this.radius); +}; + +/** + * Checks whether the x and y coordinates given are contained within this Rounded Rectangle + * + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this Rounded Rectangle + */ +RoundedRectangle.prototype.contains = function contains (x, y) +{ + if (this.width <= 0 || this.height <= 0) + { + return false; + } + if (x >= this.x && x <= this.x + this.width) + { + if (y >= this.y && y <= this.y + this.height) + { + if ((y >= this.y + this.radius && y <= this.y + this.height - this.radius) + || (x >= this.x + this.radius && x <= this.x + this.width - this.radius)) + { + return true; + } + var dx = x - (this.x + this.radius); + var dy = y - (this.y + this.radius); + var radius2 = this.radius * this.radius; + + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.width - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dy = y - (this.y + this.height - this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + dx = x - (this.x + this.radius); + if ((dx * dx) + (dy * dy) <= radius2) + { + return true; + } + } + } + + return false; +}; + +/*! + * @pixi/display - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/display is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Sets the default value for the container property 'sortableChildren'. + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @static + * @constant + * @name SORTABLE_CHILDREN + * @memberof PIXI.settings + * @type {boolean} + * @default false + */ +settings.SORTABLE_CHILDREN = false; + +/** + * 'Builder' pattern for bounds rectangles. + * + * This could be called an Axis-Aligned Bounding Box. + * It is not an actual shape. It is a mutable thing; no 'EMPTY' or those kind of problems. + * + * @class + * @memberof PIXI + */ +var Bounds = function Bounds() +{ + /** + * @member {number} + * @default 0 + */ + this.minX = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.minY = Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxX = -Infinity; + + /** + * @member {number} + * @default 0 + */ + this.maxY = -Infinity; + + this.rect = null; +}; + +/** + * Checks if bounds are empty. + * + * @return {boolean} True if empty. + */ +Bounds.prototype.isEmpty = function isEmpty () +{ + return this.minX > this.maxX || this.minY > this.maxY; +}; + +/** + * Clears the bounds and resets. + * + */ +Bounds.prototype.clear = function clear () +{ + this.updateID++; + + this.minX = Infinity; + this.minY = Infinity; + this.maxX = -Infinity; + this.maxY = -Infinity; +}; + +/** + * Can return Rectangle.EMPTY constant, either construct new rectangle, either use your rectangle + * It is not guaranteed that it will return tempRect + * + * @param {PIXI.Rectangle} rect - temporary object will be used if AABB is not empty + * @returns {PIXI.Rectangle} A rectangle of the bounds + */ +Bounds.prototype.getRectangle = function getRectangle (rect) +{ + if (this.minX > this.maxX || this.minY > this.maxY) + { + return Rectangle.EMPTY; + } + + rect = rect || new Rectangle(0, 0, 1, 1); + + rect.x = this.minX; + rect.y = this.minY; + rect.width = this.maxX - this.minX; + rect.height = this.maxY - this.minY; + + return rect; +}; + +/** + * This function should be inlined when its possible. + * + * @param {PIXI.Point} point - The point to add. + */ +Bounds.prototype.addPoint = function addPoint (point) +{ + this.minX = Math.min(this.minX, point.x); + this.maxX = Math.max(this.maxX, point.x); + this.minY = Math.min(this.minY, point.y); + this.maxY = Math.max(this.maxY, point.y); +}; + +/** + * Adds a quad, not transformed + * + * @param {Float32Array} vertices - The verts to add. + */ +Bounds.prototype.addQuad = function addQuad (vertices) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = vertices[0]; + var y = vertices[1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[2]; + y = vertices[3]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[4]; + y = vertices[5]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = vertices[6]; + y = vertices[7]; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds sprite frame, transformed. + * + * @param {PIXI.Transform} transform - TODO + * @param {number} x0 - TODO + * @param {number} y0 - TODO + * @param {number} x1 - TODO + * @param {number} y1 - TODO + */ +Bounds.prototype.addFrame = function addFrame (transform, x0, y0, x1, y1) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + var x = (a * x0) + (c * y0) + tx; + var y = (b * x0) + (d * y0) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y0) + tx; + y = (b * x1) + (d * y0) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x0) + (c * y1) + tx; + y = (b * x0) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + x = (a * x1) + (c * y1) + tx; + y = (b * x1) + (d * y1) + ty; + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds screen vertices from array + * + * @param {Float32Array} vertexData - calculated vertices + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertexData = function addVertexData (vertexData, beginOffset, endOffset) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var x = vertexData[i]; + var y = vertexData[i + 1]; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Add an array of mesh vertices + * + * @param {PIXI.Transform} transform - mesh transform + * @param {Float32Array} vertices - mesh coordinates in array + * @param {number} beginOffset - begin offset + * @param {number} endOffset - end offset, excluded + */ +Bounds.prototype.addVertices = function addVertices (transform, vertices, beginOffset, endOffset) +{ + var matrix = transform.worldTransform; + var a = matrix.a; + var b = matrix.b; + var c = matrix.c; + var d = matrix.d; + var tx = matrix.tx; + var ty = matrix.ty; + + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + for (var i = beginOffset; i < endOffset; i += 2) + { + var rawX = vertices[i]; + var rawY = vertices[i + 1]; + var x = (a * rawX) + (c * rawY) + tx; + var y = (d * rawY) + (b * rawX) + ty; + + minX = x < minX ? x : minX; + minY = y < minY ? y : minY; + maxX = x > maxX ? x : maxX; + maxY = y > maxY ? y : maxY; + } + + this.minX = minX; + this.minY = minY; + this.maxX = maxX; + this.maxY = maxY; +}; + +/** + * Adds other Bounds + * + * @param {PIXI.Bounds} bounds - TODO + */ +Bounds.prototype.addBounds = function addBounds (bounds) +{ + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = bounds.minX < minX ? bounds.minX : minX; + this.minY = bounds.minY < minY ? bounds.minY : minY; + this.maxX = bounds.maxX > maxX ? bounds.maxX : maxX; + this.maxY = bounds.maxY > maxY ? bounds.maxY : maxY; +}; + +/** + * Adds other Bounds, masked with Bounds + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Bounds} mask - TODO + */ +Bounds.prototype.addBoundsMask = function addBoundsMask (bounds, mask) +{ + var _minX = bounds.minX > mask.minX ? bounds.minX : mask.minX; + var _minY = bounds.minY > mask.minY ? bounds.minY : mask.minY; + var _maxX = bounds.maxX < mask.maxX ? bounds.maxX : mask.maxX; + var _maxY = bounds.maxY < mask.maxY ? bounds.maxY : mask.maxY; + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +/** + * Adds other Bounds, masked with Rectangle + * + * @param {PIXI.Bounds} bounds - TODO + * @param {PIXI.Rectangle} area - TODO + */ +Bounds.prototype.addBoundsArea = function addBoundsArea (bounds, area) +{ + var _minX = bounds.minX > area.x ? bounds.minX : area.x; + var _minY = bounds.minY > area.y ? bounds.minY : area.y; + var _maxX = bounds.maxX < area.x + area.width ? bounds.maxX : (area.x + area.width); + var _maxY = bounds.maxY < area.y + area.height ? bounds.maxY : (area.y + area.height); + + if (_minX <= _maxX && _minY <= _maxY) + { + var minX = this.minX; + var minY = this.minY; + var maxX = this.maxX; + var maxY = this.maxY; + + this.minX = _minX < minX ? _minX : minX; + this.minY = _minY < minY ? _minY : minY; + this.maxX = _maxX > maxX ? _maxX : maxX; + this.maxY = _maxY > maxY ? _maxY : maxY; + } +}; + +// _tempDisplayObjectParent = new DisplayObject(); + +/** + * The base class for all objects that are rendered on the screen. + * + * This is an abstract class and should not be used on its own; rather it should be extended. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var DisplayObject = /*@__PURE__*/(function (EventEmitter) { + function DisplayObject() + { + EventEmitter.call(this); + + this.tempDisplayObjectParent = null; + + // TODO: need to create Transform from factory + /** + * World transform and local transform of this object. + * This will become read-only later, please do not assign anything there unless you know what are you doing. + * + * @member {PIXI.Transform} + */ + this.transform = new Transform(); + + /** + * The opacity of the object. + * + * @member {number} + */ + this.alpha = 1; + + /** + * The visibility of the object. If false the object will not be drawn, and + * the updateTransform function will not be called. + * + * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually. + * + * @member {boolean} + */ + this.visible = true; + + /** + * Can this object be rendered, if false the object will not be drawn but the updateTransform + * methods will still be called. + * + * Only affects recursive calls from parent. You can ask for bounds manually. + * + * @member {boolean} + */ + this.renderable = true; + + /** + * The display object container that contains this display object. + * + * @member {PIXI.Container} + * @readonly + */ + this.parent = null; + + /** + * The multiplied alpha of the displayObject. + * + * @member {number} + * @readonly + */ + this.worldAlpha = 1; + + /** + * Which index in the children array the display component was before the previous zIndex sort. + * Used by containers to help sort objects with the same zIndex, by using previous array index as the decider. + * + * @member {number} + * @protected + */ + this._lastSortedIndex = 0; + + /** + * The zIndex of the displayObject. + * A higher value will mean it will be rendered on top of other displayObjects within the same container. + * + * @member {number} + * @protected + */ + this._zIndex = 0; + + /** + * The area the filter is applied to. This is used as more of an optimization + * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle. + * + * Also works as an interaction mask. + * + * @member {?PIXI.Rectangle} + */ + this.filterArea = null; + + /** + * Sets the filters for the displayObject. + * * IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer. + * To remove filters simply set this property to `'null'`. + * + * @member {?PIXI.Filter[]} + */ + this.filters = null; + this._enabledFilters = null; + + /** + * The bounds object, this is used to calculate and store the bounds of the displayObject. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + this._boundsID = 0; + this._lastBoundsID = -1; + this._boundsRect = null; + this._localBoundsRect = null; + + /** + * The original, cached mask of the object. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + * @protected + */ + this._mask = null; + + /** + * Fired when this DisplayObject is added to a Container. + * + * @event PIXI.DisplayObject#added + * @param {PIXI.Container} container - The container added to. + */ + + /** + * Fired when this DisplayObject is removed from a Container. + * + * @event PIXI.DisplayObject#removed + * @param {PIXI.Container} container - The container removed from. + */ + + /** + * If the object has been destroyed via destroy(). If true, it should not be used. + * + * @member {boolean} + * @protected + */ + this._destroyed = false; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = false; + } + + if ( EventEmitter ) DisplayObject.__proto__ = EventEmitter; + DisplayObject.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + DisplayObject.prototype.constructor = DisplayObject; + + var prototypeAccessors = { _tempDisplayObjectParent: { configurable: true },x: { configurable: true },y: { configurable: true },worldTransform: { configurable: true },localTransform: { configurable: true },position: { configurable: true },scale: { configurable: true },pivot: { configurable: true },skew: { configurable: true },rotation: { configurable: true },angle: { configurable: true },zIndex: { configurable: true },worldVisible: { configurable: true },mask: { configurable: true } }; + + /** + * @protected + * @member {PIXI.DisplayObject} + */ + DisplayObject.mixin = function mixin (source) + { + // in ES8/ES2017, this would be really easy: + // Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); + + // get all the enumerable property keys + var keys = Object.keys(source); + + // loop through properties + for (var i = 0; i < keys.length; ++i) + { + var propertyName = keys[i]; + + // Set the property using the property descriptor - this works for accessors and normal value properties + Object.defineProperty( + DisplayObject.prototype, + propertyName, + Object.getOwnPropertyDescriptor(source, propertyName) + ); + } + }; + + prototypeAccessors._tempDisplayObjectParent.get = function () + { + if (this.tempDisplayObjectParent === null) + { + this.tempDisplayObjectParent = new DisplayObject(); + } + + return this.tempDisplayObjectParent; + }; + + /** + * Updates the object transform for rendering. + * + * TODO - Optimization pass! + */ + DisplayObject.prototype.updateTransform = function updateTransform () + { + this.transform.updateTransform(this.parent.transform); + // multiply the alphas.. + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + this._bounds.updateID++; + }; + + /** + * Recursively updates transform of all objects from the root to this one + * internal function for toLocal() + */ + DisplayObject.prototype._recursivePostUpdateTransform = function _recursivePostUpdateTransform () + { + if (this.parent) + { + this.parent._recursivePostUpdateTransform(); + this.transform.updateTransform(this.parent.transform); + } + else + { + this.transform.updateTransform(this._tempDisplayObjectParent.transform); + } + }; + + /** + * Retrieves the bounds of the displayObject as a rectangle object. + * + * @param {boolean} [skipUpdate] - Setting to `true` will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getBounds = function getBounds (skipUpdate, rect) + { + if (!skipUpdate) + { + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this._recursivePostUpdateTransform(); + this.updateTransform(); + } + } + + if (this._boundsID !== this._lastBoundsID) + { + this.calculateBounds(); + this._lastBoundsID = this._boundsID; + } + + if (!rect) + { + if (!this._boundsRect) + { + this._boundsRect = new Rectangle(); + } + + rect = this._boundsRect; + } + + return this._bounds.getRectangle(rect); + }; + + /** + * Retrieves the local bounds of the displayObject as a rectangle object. + * + * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation. + * @return {PIXI.Rectangle} The rectangular bounding area. + */ + DisplayObject.prototype.getLocalBounds = function getLocalBounds (rect) + { + var transformRef = this.transform; + var parentRef = this.parent; + + this.parent = null; + this.transform = this._tempDisplayObjectParent.transform; + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + var bounds = this.getBounds(false, rect); + + this.parent = parentRef; + this.transform = transformRef; + + return bounds; + }; + + /** + * Calculates the global position of the display object. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform. + * @return {PIXI.IPoint} A point object representing the position of this object. + */ + DisplayObject.prototype.toGlobal = function toGlobal (position, point, skipUpdate) + { + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // don't need to update the lot + return this.worldTransform.apply(position, point); + }; + + /** + * Calculates the local position of the display object relative to another point. + * + * @param {PIXI.IPoint} position - The world origin to calculate from. + * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from. + * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional + * (otherwise will create a new Point). + * @param {boolean} [skipUpdate=false] - Should we skip the update transform + * @return {PIXI.IPoint} A point object representing the position of this object + */ + DisplayObject.prototype.toLocal = function toLocal (position, from, point, skipUpdate) + { + if (from) + { + position = from.toGlobal(position, point, skipUpdate); + } + + if (!skipUpdate) + { + this._recursivePostUpdateTransform(); + + // this parent check is for just in case the item is a root object. + // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly + // this is mainly to avoid a parent check in the main loop. Every little helps for performance :) + if (!this.parent) + { + this.parent = this._tempDisplayObjectParent; + this.displayObjectUpdateTransform(); + this.parent = null; + } + else + { + this.displayObjectUpdateTransform(); + } + } + + // simply apply the matrix.. + return this.worldTransform.applyInverse(position, point); + }; + + /** + * Renders the object using the WebGL renderer. + * + * @param {PIXI.Renderer} renderer - The renderer. + */ + DisplayObject.prototype.render = function render (renderer) // eslint-disable-line no-unused-vars + { + // OVERWRITE; + }; + + /** + * Set the parent Container of this DisplayObject. + * + * @param {PIXI.Container} container - The Container to add this DisplayObject to. + * @return {PIXI.Container} The Container that this DisplayObject was added to. + */ + DisplayObject.prototype.setParent = function setParent (container) + { + if (!container || !container.addChild) + { + throw new Error('setParent: Argument must be a Container'); + } + + container.addChild(this); + + return container; + }; + + /** + * Convenience function to set the position, scale, skew and pivot at once. + * + * @param {number} [x=0] - The X position + * @param {number} [y=0] - The Y position + * @param {number} [scaleX=1] - The X scale value + * @param {number} [scaleY=1] - The Y scale value + * @param {number} [rotation=0] - The rotation + * @param {number} [skewX=0] - The X skew value + * @param {number} [skewY=0] - The Y skew value + * @param {number} [pivotX=0] - The X pivot value + * @param {number} [pivotY=0] - The Y pivot value + * @return {PIXI.DisplayObject} The DisplayObject instance + */ + DisplayObject.prototype.setTransform = function setTransform (x, y, scaleX, scaleY, rotation, skewX, skewY, pivotX, pivotY) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + if ( scaleX === void 0 ) scaleX = 1; + if ( scaleY === void 0 ) scaleY = 1; + if ( rotation === void 0 ) rotation = 0; + if ( skewX === void 0 ) skewX = 0; + if ( skewY === void 0 ) skewY = 0; + if ( pivotX === void 0 ) pivotX = 0; + if ( pivotY === void 0 ) pivotY = 0; + + this.position.x = x; + this.position.y = y; + this.scale.x = !scaleX ? 1 : scaleX; + this.scale.y = !scaleY ? 1 : scaleY; + this.rotation = rotation; + this.skew.x = skewX; + this.skew.y = skewY; + this.pivot.x = pivotX; + this.pivot.y = pivotY; + + return this; + }; + + /** + * Base destroy method for generic display objects. This will automatically + * remove the display object from its parent Container as well as remove + * all current event listeners and internal references. Do not use a DisplayObject + * after calling `destroy()`. + * + */ + DisplayObject.prototype.destroy = function destroy () + { + this.removeAllListeners(); + if (this.parent) + { + this.parent.removeChild(this); + } + this.transform = null; + + this.parent = null; + + this._bounds = null; + this._currentBounds = null; + this._mask = null; + + this.filterArea = null; + + this.interactive = false; + this.interactiveChildren = false; + + this._destroyed = true; + }; + + /** + * The position of the displayObject on the x axis relative to the local coordinates of the parent. + * An alias to position.x + * + * @member {number} + */ + prototypeAccessors.x.get = function () + { + return this.position.x; + }; + + prototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.x = value; + }; + + /** + * The position of the displayObject on the y axis relative to the local coordinates of the parent. + * An alias to position.y + * + * @member {number} + */ + prototypeAccessors.y.get = function () + { + return this.position.y; + }; + + prototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.y = value; + }; + + /** + * Current transform of the object based on world (parent) factors. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.worldTransform.get = function () + { + return this.transform.worldTransform; + }; + + /** + * Current transform of the object based on local factors: position, scale, other stuff. + * + * @member {PIXI.Matrix} + * @readonly + */ + prototypeAccessors.localTransform.get = function () + { + return this.transform.localTransform; + }; + + /** + * The coordinate of the object relative to the local coordinates of the parent. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.position.get = function () + { + return this.transform.position; + }; + + prototypeAccessors.position.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.position.copyFrom(value); + }; + + /** + * The scale factor of the object. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.scale.get = function () + { + return this.transform.scale; + }; + + prototypeAccessors.scale.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.scale.copyFrom(value); + }; + + /** + * The pivot point of the displayObject that it rotates around. + * Assignment by value since pixi-v4. + * + * @member {PIXI.IPoint} + */ + prototypeAccessors.pivot.get = function () + { + return this.transform.pivot; + }; + + prototypeAccessors.pivot.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.pivot.copyFrom(value); + }; + + /** + * The skew factor for the object in radians. + * Assignment by value since pixi-v4. + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.skew.get = function () + { + return this.transform.skew; + }; + + prototypeAccessors.skew.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.skew.copyFrom(value); + }; + + /** + * The rotation of the object in radians. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.rotation.get = function () + { + return this.transform.rotation; + }; + + prototypeAccessors.rotation.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value; + }; + + /** + * The angle of the object in degrees. + * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees. + * + * @member {number} + */ + prototypeAccessors.angle.get = function () + { + return this.transform.rotation * RAD_TO_DEG; + }; + + prototypeAccessors.angle.set = function (value) // eslint-disable-line require-jsdoc + { + this.transform.rotation = value * DEG_TO_RAD; + }; + + /** + * The zIndex of the displayObject. + * If a container has the sortableChildren property set to true, children will be automatically + * sorted by zIndex value; a higher value will mean it will be moved towards the end of the array, + * and thus rendered on top of other displayObjects within the same container. + * + * @member {number} + */ + prototypeAccessors.zIndex.get = function () + { + return this._zIndex; + }; + + prototypeAccessors.zIndex.set = function (value) // eslint-disable-line require-jsdoc + { + this._zIndex = value; + if (this.parent) + { + this.parent.sortDirty = true; + } + }; + + /** + * Indicates if the object is globally visible. + * + * @member {boolean} + * @readonly + */ + prototypeAccessors.worldVisible.get = function () + { + var item = this; + + do + { + if (!item.visible) + { + return false; + } + + item = item.parent; + } while (item); + + return true; + }; + + /** + * Sets a mask for the displayObject. A mask is an object that limits the visibility of an + * object to the shape of the mask applied to it. In PixiJS a regular mask must be a + * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it + * utilities shape clipping. To remove a mask, set this property to `null`. + * + * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask. + * @example + * const graphics = new PIXI.Graphics(); + * graphics.beginFill(0xFF3300); + * graphics.drawRect(50, 250, 100, 100); + * graphics.endFill(); + * + * const sprite = new PIXI.Sprite(texture); + * sprite.mask = graphics; + * @todo At the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask. + * + * @member {PIXI.Graphics|PIXI.Sprite|null} + */ + prototypeAccessors.mask.get = function () + { + return this._mask; + }; + + prototypeAccessors.mask.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._mask) + { + this._mask.renderable = true; + this._mask.isMask = false; + } + + this._mask = value; + + if (this._mask) + { + this._mask.renderable = false; + this._mask.isMask = true; + } + }; + + Object.defineProperties( DisplayObject.prototype, prototypeAccessors ); + + return DisplayObject; +}(eventemitter3)); + +/** + * DisplayObject default updateTransform, does not update children of container. + * Will crash if there's no parent element. + * + * @memberof PIXI.DisplayObject# + * @function displayObjectUpdateTransform + */ +DisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform; + +function sortChildren(a, b) +{ + if (a.zIndex === b.zIndex) + { + return a._lastSortedIndex - b._lastSortedIndex; + } + + return a.zIndex - b.zIndex; +} + +/** + * A Container represents a collection of display objects. + * + * It is the base class of all display objects that act as a container for other objects (like Sprites). + * + *```js + * let container = new PIXI.Container(); + * container.addChild(sprite); + * ``` + * + * @class + * @extends PIXI.DisplayObject + * @memberof PIXI + */ +var Container = /*@__PURE__*/(function (DisplayObject) { + function Container() + { + DisplayObject.call(this); + + /** + * The array of children of this container. + * + * @member {PIXI.DisplayObject[]} + * @readonly + */ + this.children = []; + + /** + * If set to true, the container will sort its children by zIndex value + * when updateTransform() is called, or manually if sortChildren() is called. + * + * This actually changes the order of elements in the array, so should be treated + * as a basic solution that is not performant compared to other solutions, + * such as @link https://github.com/pixijs/pixi-display + * + * Also be aware of that this may not work nicely with the addChildAt() function, + * as the zIndex sorting may cause the child to automatically sorted to another position. + * + * @see PIXI.settings.SORTABLE_CHILDREN + * + * @member {boolean} + */ + this.sortableChildren = settings.SORTABLE_CHILDREN; + + /** + * Should children be sorted by zIndex at the next updateTransform call. + * Will get automatically set to true if a new child is added, or if a child's zIndex changes. + * + * @member {boolean} + */ + this.sortDirty = false; + + /** + * Fired when a DisplayObject is added to this Container. + * + * @event PIXI.Container#childAdded + * @param {PIXI.DisplayObject} child - The child added to the Container. + * @param {PIXI.Container} container - The container that added the child. + * @param {number} index - The children's index of the added child. + */ + + /** + * Fired when a DisplayObject is removed from this Container. + * + * @event PIXI.DisplayObject#removedFrom + * @param {PIXI.DisplayObject} child - The child removed from the Container. + * @param {PIXI.Container} container - The container that removed removed the child. + * @param {number} index - The former children's index of the removed child + */ + } + + if ( DisplayObject ) Container.__proto__ = DisplayObject; + Container.prototype = Object.create( DisplayObject && DisplayObject.prototype ); + Container.prototype.constructor = Container; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true } }; + + /** + * Overridable method that can be used by Container subclasses whenever the children array is modified + * + * @protected + */ + Container.prototype.onChildrenChange = function onChildrenChange () + { + /* empty */ + }; + + /** + * Adds one or more children to the container. + * + * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)` + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container + * @return {PIXI.DisplayObject} The first child that was added. + */ + Container.prototype.addChild = function addChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.addChild(arguments$1[i]); + } + } + else + { + // if the child has a parent then lets remove it as PixiJS objects can only exist in one place + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.push(child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(this.children.length - 1); + this.emit('childAdded', child, this, this.children.length - 1); + child.emit('added', this); + } + + return child; + }; + + /** + * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown + * + * @param {PIXI.DisplayObject} child - The child to add + * @param {number} index - The index to place the child in + * @return {PIXI.DisplayObject} The child that was added. + */ + Container.prototype.addChildAt = function addChildAt (child, index) + { + if (index < 0 || index > this.children.length) + { + throw new Error((child + "addChildAt: The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + if (child.parent) + { + child.parent.removeChild(child); + } + + child.parent = this; + this.sortDirty = true; + + // ensure child transform will be recalculated + child.transform._parentID = -1; + + this.children.splice(index, 0, child); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('added', this); + this.emit('childAdded', child, this, index); + + return child; + }; + + /** + * Swaps the position of 2 Display Objects within this container. + * + * @param {PIXI.DisplayObject} child - First display object to swap + * @param {PIXI.DisplayObject} child2 - Second display object to swap + */ + Container.prototype.swapChildren = function swapChildren (child, child2) + { + if (child === child2) + { + return; + } + + var index1 = this.getChildIndex(child); + var index2 = this.getChildIndex(child2); + + this.children[index1] = child2; + this.children[index2] = child; + this.onChildrenChange(index1 < index2 ? index1 : index2); + }; + + /** + * Returns the index position of a child DisplayObject instance + * + * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify + * @return {number} The index position of the child display object to identify + */ + Container.prototype.getChildIndex = function getChildIndex (child) + { + var index = this.children.indexOf(child); + + if (index === -1) + { + throw new Error('The supplied DisplayObject must be a child of the caller'); + } + + return index; + }; + + /** + * Changes the position of an existing child in the display object container + * + * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number + * @param {number} index - The resulting index number for the child display object + */ + Container.prototype.setChildIndex = function setChildIndex (child, index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("The index " + index + " supplied is out of bounds " + (this.children.length))); + } + + var currentIndex = this.getChildIndex(child); + + removeItems(this.children, currentIndex, 1); // remove from old position + this.children.splice(index, 0, child); // add at new position + + this.onChildrenChange(index); + }; + + /** + * Returns the child at the specified index + * + * @param {number} index - The index to get the child at + * @return {PIXI.DisplayObject} The child at the given index, if any. + */ + Container.prototype.getChildAt = function getChildAt (index) + { + if (index < 0 || index >= this.children.length) + { + throw new Error(("getChildAt: Index (" + index + ") does not exist.")); + } + + return this.children[index]; + }; + + /** + * Removes one or more children from the container. + * + * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove + * @return {PIXI.DisplayObject} The first child that was removed. + */ + Container.prototype.removeChild = function removeChild (child) + { + var arguments$1 = arguments; + + var argumentsLength = arguments.length; + + // if there is only one argument we can bypass looping through the them + if (argumentsLength > 1) + { + // loop through the arguments property and add all children + // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes + for (var i = 0; i < argumentsLength; i++) + { + this.removeChild(arguments$1[i]); + } + } + else + { + var index = this.children.indexOf(child); + + if (index === -1) { return null; } + + child.parent = null; + // ensure child transform will be recalculated + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + } + + return child; + }; + + /** + * Removes a child from the specified index position. + * + * @param {number} index - The index to get the child from + * @return {PIXI.DisplayObject} The child that was removed. + */ + Container.prototype.removeChildAt = function removeChildAt (index) + { + var child = this.getChildAt(index); + + // ensure child transform will be recalculated.. + child.parent = null; + child.transform._parentID = -1; + removeItems(this.children, index, 1); + + // ensure bounds will be recalculated + this._boundsID++; + + // TODO - lets either do all callbacks or all events.. not both! + this.onChildrenChange(index); + child.emit('removed', this); + this.emit('childRemoved', child, this, index); + + return child; + }; + + /** + * Removes all children from this container that are within the begin and end indexes. + * + * @param {number} [beginIndex=0] - The beginning position. + * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container. + * @returns {PIXI.DisplayObject[]} List of removed children + */ + Container.prototype.removeChildren = function removeChildren (beginIndex, endIndex) + { + if ( beginIndex === void 0 ) beginIndex = 0; + + var begin = beginIndex; + var end = typeof endIndex === 'number' ? endIndex : this.children.length; + var range = end - begin; + var removed; + + if (range > 0 && range <= end) + { + removed = this.children.splice(begin, range); + + for (var i = 0; i < removed.length; ++i) + { + removed[i].parent = null; + if (removed[i].transform) + { + removed[i].transform._parentID = -1; + } + } + + this._boundsID++; + + this.onChildrenChange(beginIndex); + + for (var i$1 = 0; i$1 < removed.length; ++i$1) + { + removed[i$1].emit('removed', this); + this.emit('childRemoved', removed[i$1], this, i$1); + } + + return removed; + } + else if (range === 0 && this.children.length === 0) + { + return []; + } + + throw new RangeError('removeChildren: numeric values are outside the acceptable range.'); + }; + + /** + * Sorts children by zIndex. Previous order is mantained for 2 children with the same zIndex. + */ + Container.prototype.sortChildren = function sortChildren$1 () + { + var sortRequired = false; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + child._lastSortedIndex = i; + + if (!sortRequired && child.zIndex !== 0) + { + sortRequired = true; + } + } + + if (sortRequired && this.children.length > 1) + { + this.children.sort(sortChildren); + } + + this.sortDirty = false; + }; + + /** + * Updates the transform on all children of this container for rendering + */ + Container.prototype.updateTransform = function updateTransform () + { + if (this.sortableChildren && this.sortDirty) + { + this.sortChildren(); + } + + this._boundsID++; + + this.transform.updateTransform(this.parent.transform); + + // TODO: check render flags, how to process stuff here + this.worldAlpha = this.alpha * this.parent.worldAlpha; + + for (var i = 0, j = this.children.length; i < j; ++i) + { + var child = this.children[i]; + + if (child.visible) + { + child.updateTransform(); + } + } + }; + + /** + * Recalculates the bounds of the container. + * + */ + Container.prototype.calculateBounds = function calculateBounds () + { + this._bounds.clear(); + + this._calculateBounds(); + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (!child.visible || !child.renderable) + { + continue; + } + + child.calculateBounds(); + + // TODO: filter+mask, need to mask both somehow + if (child._mask) + { + child._mask.calculateBounds(); + this._bounds.addBoundsMask(child._bounds, child._mask._bounds); + } + else if (child.filterArea) + { + this._bounds.addBoundsArea(child._bounds, child.filterArea); + } + else + { + this._bounds.addBounds(child._bounds); + } + } + + this._lastBoundsID = this._boundsID; + }; + + /** + * Recalculates the bounds of the object. Override this to + * calculate the bounds of the specific object (not including children). + * + * @protected + */ + Container.prototype._calculateBounds = function _calculateBounds () + { + // FILL IN// + }; + + /** + * Renders the object using the WebGL renderer + * + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.render = function render (renderer) + { + // if the object is not visible or the alpha is 0 then no need to render this element + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + // do a quick check to see if this element has a mask or a filter. + if (this._mask || (this.filters && this.filters.length)) + { + this.renderAdvanced(renderer); + } + else + { + this._render(renderer); + + // simple render children! + for (var i = 0, j = this.children.length; i < j; ++i) + { + this.children[i].render(renderer); + } + } + }; + + /** + * Render the object using the WebGL renderer and advanced features. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype.renderAdvanced = function renderAdvanced (renderer) + { + renderer.batch.flush(); + + var filters = this.filters; + var mask = this._mask; + + // push filter first as we need to ensure the stencil buffer is correct for any masking + if (filters) + { + if (!this._enabledFilters) + { + this._enabledFilters = []; + } + + this._enabledFilters.length = 0; + + for (var i = 0; i < filters.length; i++) + { + if (filters[i].enabled) + { + this._enabledFilters.push(filters[i]); + } + } + + if (this._enabledFilters.length) + { + renderer.filter.push(this, this._enabledFilters); + } + } + + if (mask) + { + renderer.mask.push(this, this._mask); + } + + // add this object to the batch, only rendered if it has a texture. + this._render(renderer); + + // now loop through the children and make sure they get rendered + for (var i$1 = 0, j = this.children.length; i$1 < j; i$1++) + { + this.children[i$1].render(renderer); + } + + renderer.batch.flush(); + + if (mask) + { + renderer.mask.pop(this, this._mask); + } + + if (filters && this._enabledFilters && this._enabledFilters.length) + { + renderer.filter.pop(); + } + }; + + /** + * To be overridden by the subclasses. + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Container.prototype._render = function _render (renderer) // eslint-disable-line no-unused-vars + { + // this is where content itself gets rendered... + }; + + /** + * Removes all internal references and listeners as well as removes children from the display list. + * Do not use a Container after calling `destroy`. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Container.prototype.destroy = function destroy (options) + { + DisplayObject.prototype.destroy.call(this); + + this.sortDirty = false; + + var destroyChildren = typeof options === 'boolean' ? options : options && options.children; + + var oldChildren = this.removeChildren(0, this.children.length); + + if (destroyChildren) + { + for (var i = 0; i < oldChildren.length; ++i) + { + oldChildren[i].destroy(options); + } + } + }; + + /** + * The width of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.scale.x * this.getLocalBounds().width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var width = this.getLocalBounds().width; + + if (width !== 0) + { + this.scale.x = value / width; + } + else + { + this.scale.x = 1; + } + + this._width = value; + }; + + /** + * The height of the Container, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.scale.y * this.getLocalBounds().height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var height = this.getLocalBounds().height; + + if (height !== 0) + { + this.scale.y = value / height; + } + else + { + this.scale.y = 1; + } + + this._height = value; + }; + + Object.defineProperties( Container.prototype, prototypeAccessors ); + + return Container; +}(DisplayObject)); + +// performance increase to avoid using call.. (10x faster) +Container.prototype.containerUpdateTransform = Container.prototype.updateTransform; + +/*! + * @pixi/accessibility - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/accessibility is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default property values of accessible objects + * used by {@link PIXI.accessibility.AccessibilityManager}. + * + * @private + * @function accessibleTarget + * @memberof PIXI.accessibility + * @type {Object} + * @example + * function MyObject() {} + * + * Object.assign( + * MyObject.prototype, + * PIXI.accessibility.accessibleTarget + * ); + */ +var accessibleTarget = { + /** + * Flag for if the object is accessible. If true AccessibilityManager will overlay a + * shadow div with attributes set + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + accessible: false, + + /** + * Sets the title attribute of the shadow div + * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]' + * + * @member {?string} + * @memberof PIXI.DisplayObject# + */ + accessibleTitle: null, + + /** + * Sets the aria-label attribute of the shadow div + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + accessibleHint: null, + + /** + * @member {number} + * @memberof PIXI.DisplayObject# + * @private + * @todo Needs docs. + */ + tabIndex: 0, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleActive: false, + + /** + * @member {boolean} + * @memberof PIXI.DisplayObject# + * @todo Needs docs. + */ + _accessibleDiv: false, +}; + +// add some extra variables to the container.. +DisplayObject.mixin(accessibleTarget); + +var KEY_CODE_TAB = 9; + +var DIV_TOUCH_SIZE = 100; +var DIV_TOUCH_POS_X = 0; +var DIV_TOUCH_POS_Y = 0; +var DIV_TOUCH_ZINDEX = 2; + +var DIV_HOOK_SIZE = 1; +var DIV_HOOK_POS_X = -1000; +var DIV_HOOK_POS_Y = -1000; +var DIV_HOOK_ZINDEX = 2; + +/** + * The Accessibility manager recreates the ability to tab and have content read by screen readers. + * This is very important as it can possibly help people with disabilities access PixiJS content. + * + * A DisplayObject can be made accessible just like it can be made interactive. This manager will map the + * events as if the mouse was being used, minimizing the effort required to implement. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.accessibility` + * + * @class + * @memberof PIXI.accessibility + */ +var AccessibilityManager = function AccessibilityManager(renderer) +{ + /** + * @type {?HTMLElement} + * @private + */ + this._hookDiv = null; + if (isMobile.tablet || isMobile.phone) + { + this.createTouchHook(); + } + + // first we create a div that will sit over the PixiJS element. This is where the div overlays will go. + var div = document.createElement('div'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.position = 'absolute'; + div.style.top = DIV_TOUCH_POS_X + "px"; + div.style.left = DIV_TOUCH_POS_Y + "px"; + div.style.zIndex = DIV_TOUCH_ZINDEX; + + /** + * This is the dom element that will sit over the PixiJS element. This is where the div overlays will go. + * + * @type {HTMLElement} + * @private + */ + this.div = div; + + /** + * A simple pool for storing divs. + * + * @type {*} + * @private + */ + this.pool = []; + + /** + * This is a tick used to check if an object is no longer being rendered. + * + * @type {Number} + * @private + */ + this.renderId = 0; + + /** + * Setting this to true will visually show the divs. + * + * @type {boolean} + */ + this.debug = false; + + /** + * The renderer this accessibility manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * The array of currently active accessible items. + * + * @member {Array<*>} + * @private + */ + this.children = []; + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onKeyDown = this._onKeyDown.bind(this); + + /** + * pre-bind the functions + * + * @type {Function} + * @private + */ + this._onMouseMove = this._onMouseMove.bind(this); + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isActive = false; + + /** + * A flag + * @type {boolean} + * @readonly + */ + this.isMobileAccessibility = false; + + // let listen for tab.. once pressed we can fire up and show the accessibility layer + window.addEventListener('keydown', this._onKeyDown, false); +}; + +/** + * Creates the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.createTouchHook = function createTouchHook () +{ + var this$1 = this; + + var hookDiv = document.createElement('button'); + + hookDiv.style.width = DIV_HOOK_SIZE + "px"; + hookDiv.style.height = DIV_HOOK_SIZE + "px"; + hookDiv.style.position = 'absolute'; + hookDiv.style.top = DIV_HOOK_POS_X + "px"; + hookDiv.style.left = DIV_HOOK_POS_Y + "px"; + hookDiv.style.zIndex = DIV_HOOK_ZINDEX; + hookDiv.style.backgroundColor = '#FF0000'; + hookDiv.title = 'HOOK DIV'; + + hookDiv.addEventListener('focus', function () { + this$1.isMobileAccessibility = true; + this$1.activate(); + this$1.destroyTouchHook(); + }); + + document.body.appendChild(hookDiv); + this._hookDiv = hookDiv; +}; + +/** + * Destroys the touch hooks. + * + * @private + */ +AccessibilityManager.prototype.destroyTouchHook = function destroyTouchHook () +{ + if (!this._hookDiv) + { + return; + } + document.body.removeChild(this._hookDiv); + this._hookDiv = null; +}; + +/** + * Activating will cause the Accessibility layer to be shown. + * This is called when a user presses the tab key. + * + * @private + */ +AccessibilityManager.prototype.activate = function activate () +{ + if (this.isActive) + { + return; + } + + this.isActive = true; + + window.document.addEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown, false); + + this.renderer.on('postrender', this.update, this); + + if (this.renderer.view.parentNode) + { + this.renderer.view.parentNode.appendChild(this.div); + } +}; + +/** + * Deactivating will cause the Accessibility layer to be hidden. + * This is called when a user moves the mouse. + * + * @private + */ +AccessibilityManager.prototype.deactivate = function deactivate () +{ + if (!this.isActive || this.isMobileAccessibility) + { + return; + } + + this.isActive = false; + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.addEventListener('keydown', this._onKeyDown, false); + + this.renderer.off('postrender', this.update); + + if (this.div.parentNode) + { + this.div.parentNode.removeChild(this.div); + } +}; + +/** + * This recursive function will run through the scene graph and add any new accessible objects to the DOM layer. + * + * @private + * @param {PIXI.Container} displayObject - The DisplayObject to check. + */ +AccessibilityManager.prototype.updateAccessibleObjects = function updateAccessibleObjects (displayObject) +{ + if (!displayObject.visible) + { + return; + } + + if (displayObject.accessible && displayObject.interactive) + { + if (!displayObject._accessibleActive) + { + this.addChild(displayObject); + } + + displayObject.renderId = this.renderId; + } + + var children = displayObject.children; + + for (var i = 0; i < children.length; i++) + { + this.updateAccessibleObjects(children[i]); + } +}; + +/** + * Before each render this function will ensure that all divs are mapped correctly to their DisplayObjects. + * + * @private + */ +AccessibilityManager.prototype.update = function update () +{ + if (!this.renderer.renderingToScreen) + { + return; + } + + // update children... + this.updateAccessibleObjects(this.renderer._lastObjectRendered); + + var rect = this.renderer.view.getBoundingClientRect(); + var sx = rect.width / this.renderer.width; + var sy = rect.height / this.renderer.height; + + var div = this.div; + + div.style.left = (rect.left) + "px"; + div.style.top = (rect.top) + "px"; + div.style.width = (this.renderer.width) + "px"; + div.style.height = (this.renderer.height) + "px"; + + for (var i = 0; i < this.children.length; i++) + { + var child = this.children[i]; + + if (child.renderId !== this.renderId) + { + child._accessibleActive = false; + + removeItems(this.children, i, 1); + this.div.removeChild(child._accessibleDiv); + this.pool.push(child._accessibleDiv); + child._accessibleDiv = null; + + i--; + + if (this.children.length === 0) + { + this.deactivate(); + } + } + else + { + // map div to display.. + div = child._accessibleDiv; + var hitArea = child.hitArea; + var wt = child.worldTransform; + + if (child.hitArea) + { + div.style.left = ((wt.tx + (hitArea.x * wt.a)) * sx) + "px"; + div.style.top = ((wt.ty + (hitArea.y * wt.d)) * sy) + "px"; + + div.style.width = (hitArea.width * wt.a * sx) + "px"; + div.style.height = (hitArea.height * wt.d * sy) + "px"; + } + else + { + hitArea = child.getBounds(); + + this.capHitArea(hitArea); + + div.style.left = (hitArea.x * sx) + "px"; + div.style.top = (hitArea.y * sy) + "px"; + + div.style.width = (hitArea.width * sx) + "px"; + div.style.height = (hitArea.height * sy) + "px"; + + // update button titles and hints if they exist and they've changed + if (div.title !== child.accessibleTitle && child.accessibleTitle !== null) + { + div.title = child.accessibleTitle; + } + if (div.getAttribute('aria-label') !== child.accessibleHint + && child.accessibleHint !== null) + { + div.setAttribute('aria-label', child.accessibleHint); + } + } + } + } + + // increment the render id.. + this.renderId++; +}; + +/** + * Adjust the hit area based on the bounds of a display object + * + * @param {PIXI.Rectangle} hitArea - Bounds of the child + */ +AccessibilityManager.prototype.capHitArea = function capHitArea (hitArea) +{ + if (hitArea.x < 0) + { + hitArea.width += hitArea.x; + hitArea.x = 0; + } + + if (hitArea.y < 0) + { + hitArea.height += hitArea.y; + hitArea.y = 0; + } + + if (hitArea.x + hitArea.width > this.renderer.width) + { + hitArea.width = this.renderer.width - hitArea.x; + } + + if (hitArea.y + hitArea.height > this.renderer.height) + { + hitArea.height = this.renderer.height - hitArea.y; + } +}; + +/** + * Adds a DisplayObject to the accessibility manager + * + * @private + * @param {PIXI.DisplayObject} displayObject - The child to make accessible. + */ +AccessibilityManager.prototype.addChild = function addChild (displayObject) +{ + //this.activate(); + + var div = this.pool.pop(); + + if (!div) + { + div = document.createElement('button'); + + div.style.width = DIV_TOUCH_SIZE + "px"; + div.style.height = DIV_TOUCH_SIZE + "px"; + div.style.backgroundColor = this.debug ? 'rgba(255,0,0,0.5)' : 'transparent'; + div.style.position = 'absolute'; + div.style.zIndex = DIV_TOUCH_ZINDEX; + div.style.borderStyle = 'none'; + + // ARIA attributes ensure that button title and hint updates are announced properly + if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) + { + // Chrome doesn't need aria-live to work as intended; in fact it just gets more confused. + div.setAttribute('aria-live', 'off'); + } + else + { + div.setAttribute('aria-live', 'polite'); + } + + if (navigator.userAgent.match(/rv:.*Gecko\//)) + { + // FireFox needs this to announce only the new button name + div.setAttribute('aria-relevant', 'additions'); + } + else + { + // required by IE, other browsers don't much care + div.setAttribute('aria-relevant', 'text'); + } + + div.addEventListener('click', this._onClick.bind(this)); + div.addEventListener('focus', this._onFocus.bind(this)); + div.addEventListener('focusout', this._onFocusOut.bind(this)); + } + + if (displayObject.accessibleTitle && displayObject.accessibleTitle !== null) + { + div.title = displayObject.accessibleTitle; + } + else if (!displayObject.accessibleHint + || displayObject.accessibleHint === null) + { + div.title = "displayObject " + (displayObject.tabIndex); + } + + if (displayObject.accessibleHint + && displayObject.accessibleHint !== null) + { + div.setAttribute('aria-label', displayObject.accessibleHint); + } + + // + + displayObject._accessibleActive = true; + displayObject._accessibleDiv = div; + div.displayObject = displayObject; + + this.children.push(displayObject); + this.div.appendChild(displayObject._accessibleDiv); + displayObject._accessibleDiv.tabIndex = displayObject.tabIndex; +}; + +/** + * Maps the div button press to pixi's InteractionManager (click) + * + * @private + * @param {MouseEvent} e - The click event. + */ +AccessibilityManager.prototype._onClick = function _onClick (e) +{ + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'click', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'pointertap', interactionManager.eventData); + interactionManager.dispatchEvent(e.target.displayObject, 'tap', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseover) + * + * @private + * @param {FocusEvent} e - The focus event. + */ +AccessibilityManager.prototype._onFocus = function _onFocus (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'assertive'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseover', interactionManager.eventData); +}; + +/** + * Maps the div focus events to pixi's InteractionManager (mouseout) + * + * @private + * @param {FocusEvent} e - The focusout event. + */ +AccessibilityManager.prototype._onFocusOut = function _onFocusOut (e) +{ + if (!e.target.getAttribute('aria-live', 'off')) + { + e.target.setAttribute('aria-live', 'polite'); + } + var interactionManager = this.renderer.plugins.interaction; + + interactionManager.dispatchEvent(e.target.displayObject, 'mouseout', interactionManager.eventData); +}; + +/** + * Is called when a key is pressed + * + * @private + * @param {KeyboardEvent} e - The keydown event. + */ +AccessibilityManager.prototype._onKeyDown = function _onKeyDown (e) +{ + if (e.keyCode !== KEY_CODE_TAB) + { + return; + } + + this.activate(); +}; + +/** + * Is called when the mouse moves across the renderer element + * + * @private + * @param {MouseEvent} e - The mouse event. + */ +AccessibilityManager.prototype._onMouseMove = function _onMouseMove (e) +{ + if (e.movementX === 0 && e.movementY === 0) + { + return; + } + + this.deactivate(); +}; + +/** + * Destroys the accessibility manager + * + */ +AccessibilityManager.prototype.destroy = function destroy () +{ + this.destroyTouchHook(); + this.div = null; + + for (var i = 0; i < this.children.length; i++) + { + this.children[i].div = null; + } + + window.document.removeEventListener('mousemove', this._onMouseMove, true); + window.removeEventListener('keydown', this._onKeyDown); + + this.pool = null; + this.children = null; + this.renderer = null; +}; + +/*! + * @pixi/runner - v5.1.1 + * Compiled Fri, 02 Aug 2019 23:20:23 UTC + * + * @pixi/runner is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ +/** + * A Runner is a highly performant and simple alternative to signals. Best used in situations + * where events are dispatched to many objects at high frequency (say every frame!) + * + * + * like a signal.. + * ``` + * const myObject = { + * loaded: new PIXI.Runner('loaded') + * } + * + * const listener = { + * loaded: function(){ + * // thin + * } + * } + * + * myObject.update.add(listener); + * + * myObject.loaded.emit(); + * ``` + * + * Or for handling calling the same function on many items + * ``` + * const myGame = { + * update: new PIXI.Runner('update') + * } + * + * const gameObject = { + * update: function(time){ + * // update my gamey state + * } + * } + * + * myGame.update.add(gameObject1); + * + * myGame.update.emit(time); + * ``` + * @class + * @memberof PIXI + */ +var Runner = function Runner(name) +{ + this.items = []; + this._name = name; + this._aliasCount = 0; +}; + +var prototypeAccessors$3 = { empty: { configurable: true },name: { configurable: true } }; + +/** + * Dispatch/Broadcast Runner to all listeners added to the queue. + * @param {...any} params - optional parameters to pass to each listener + */ +Runner.prototype.emit = function emit (a0, a1, a2, a3, a4, a5, a6, a7) +{ + if (arguments.length > 8) + { + throw new Error('max arguments reached'); + } + + var ref = this; + var name = ref.name; + var items = ref.items; + + this._aliasCount++; + + for (var i = 0, len = items.length; i < len; i++) + { + items[i][name](a0, a1, a2, a3, a4, a5, a6, a7); + } + + if (items === this.items) + { + this._aliasCount--; + } + + return this; +}; + +Runner.prototype.ensureNonAliasedItems = function ensureNonAliasedItems () +{ + if (this._aliasCount > 0 && this.items.length > 1) + { + this._aliasCount = 0; + this.items = this.items.slice(0); + } +}; + +/** + * Add a listener to the Runner + * + * Runners do not need to have scope or functions passed to them. + * All that is required is to pass the listening object and ensure that it has contains a function that has the same name + * as the name provided to the Runner when it was created. + * + * Eg A listener passed to this Runner will require a 'complete' function. + * + * ``` + * const complete = new PIXI.Runner('complete'); + * ``` + * + * The scope used will be the object itself. + * + * @param {any} item - The object that will be listening. + */ +Runner.prototype.add = function add (item) +{ + if (item[this._name]) + { + this.ensureNonAliasedItems(); + this.remove(item); + this.items.push(item); + } + + return this; +}; + +/** + * Remove a single listener from the dispatch queue. + * @param {any} item - The listenr that you would like to remove. + */ +Runner.prototype.remove = function remove (item) +{ + var index = this.items.indexOf(item); + + if (index !== -1) + { + this.ensureNonAliasedItems(); + this.items.splice(index, 1); + } + + return this; +}; + +/** + * Check to see if the listener is already in the Runner + * @param {any} item - The listener that you would like to check. + */ +Runner.prototype.contains = function contains (item) +{ + return this.items.indexOf(item) !== -1; +}; + +/** + * Remove all listeners from the Runner + */ +Runner.prototype.removeAll = function removeAll () +{ + this.ensureNonAliasedItems(); + this.items.length = 0; + + return this; +}; + +/** + * Remove all references, don't use after this. + */ +Runner.prototype.destroy = function destroy () +{ + this.removeAll(); + this.items = null; + this._name = null; +}; + +/** + * `true` if there are no this Runner contains no listeners + * + * @member {boolean} + * @readonly + */ +prototypeAccessors$3.empty.get = function () +{ + return this.items.length === 0; +}; + +/** + * The name of the runner. + * + * @member {string} + * @readonly + */ +prototypeAccessors$3.name.get = function () +{ + return this._name; +}; + +Object.defineProperties( Runner.prototype, prototypeAccessors$3 ); + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method dispatch + * @see PIXI.Runner#emit + */ +Runner.prototype.dispatch = Runner.prototype.emit; + +/** + * Alias for `emit` + * @memberof PIXI.Runner# + * @method run + * @see PIXI.Runner#emit + */ +Runner.prototype.run = Runner.prototype.emit; + +/*! + * @pixi/ticker - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/ticker is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Target frames per millisecond. + * + * @static + * @name TARGET_FPMS + * @memberof PIXI.settings + * @type {number} + * @default 0.06 + */ +settings.TARGET_FPMS = 0.06; + +/** + * Represents the update priorities used by internal PIXI classes when registered with + * the {@link PIXI.Ticker} object. Higher priority items are updated first and lower + * priority items, such as render, should go later. + * + * @static + * @constant + * @name UPDATE_PRIORITY + * @memberof PIXI + * @type {object} + * @property {number} INTERACTION=50 Highest priority, used for {@link PIXI.interaction.InteractionManager} + * @property {number} HIGH=25 High priority updating, {@link PIXI.VideoBaseTexture} and {@link PIXI.AnimatedSprite} + * @property {number} NORMAL=0 Default priority for ticker events, see {@link PIXI.Ticker#add}. + * @property {number} LOW=-25 Low priority used for {@link PIXI.Application} rendering. + * @property {number} UTILITY=-50 Lowest priority used for {@link PIXI.prepare.BasePrepare} utility. + */ +var UPDATE_PRIORITY = { + INTERACTION: 50, + HIGH: 25, + NORMAL: 0, + LOW: -25, + UTILITY: -50, +}; + +/** + * Internal class for handling the priority sorting of ticker handlers. + * + * @private + * @class + * @memberof PIXI + */ +var TickerListener = function TickerListener(fn, context, priority, once) +{ + if ( context === void 0 ) context = null; + if ( priority === void 0 ) priority = 0; + if ( once === void 0 ) once = false; + + /** + * The handler function to execute. + * @private + * @member {Function} + */ + this.fn = fn; + + /** + * The calling to execute. + * @private + * @member {*} + */ + this.context = context; + + /** + * The current priority. + * @private + * @member {number} + */ + this.priority = priority; + + /** + * If this should only execute once. + * @private + * @member {boolean} + */ + this.once = once; + + /** + * The next item in chain. + * @private + * @member {TickerListener} + */ + this.next = null; + + /** + * The previous item in chain. + * @private + * @member {TickerListener} + */ + this.previous = null; + + /** + * `true` if this listener has been destroyed already. + * @member {boolean} + * @private + */ + this._destroyed = false; +}; + +/** + * Simple compare function to figure out if a function and context match. + * @private + * @param {Function} fn - The listener function to be added for one update + * @param {Function} context - The listener context + * @return {boolean} `true` if the listener match the arguments + */ +TickerListener.prototype.match = function match (fn, context) +{ + context = context || null; + + return this.fn === fn && this.context === context; +}; + +/** + * Emit by calling the current function. + * @private + * @param {number} deltaTime - time since the last emit. + * @return {TickerListener} Next ticker + */ +TickerListener.prototype.emit = function emit (deltaTime) +{ + if (this.fn) + { + if (this.context) + { + this.fn.call(this.context, deltaTime); + } + else + { + this.fn(deltaTime); + } + } + + var redirect = this.next; + + if (this.once) + { + this.destroy(true); + } + + // Soft-destroying should remove + // the next reference + if (this._destroyed) + { + this.next = null; + } + + return redirect; +}; + +/** + * Connect to the list. + * @private + * @param {TickerListener} previous - Input node, previous listener + */ +TickerListener.prototype.connect = function connect (previous) +{ + this.previous = previous; + if (previous.next) + { + previous.next.previous = this; + } + this.next = previous.next; + previous.next = this; +}; + +/** + * Destroy and don't use after this. + * @private + * @param {boolean} [hard = false] `true` to remove the `next` reference, this + * is considered a hard destroy. Soft destroy maintains the next reference. + * @return {TickerListener} The listener to redirect while emitting or removing. + */ +TickerListener.prototype.destroy = function destroy (hard) +{ + if ( hard === void 0 ) hard = false; + + this._destroyed = true; + this.fn = null; + this.context = null; + + // Disconnect, hook up next and previous + if (this.previous) + { + this.previous.next = this.next; + } + + if (this.next) + { + this.next.previous = this.previous; + } + + // Redirect to the next item + var redirect = this.next; + + // Remove references + this.next = hard ? null : redirect; + this.previous = null; + + return redirect; +}; + +/** + * A Ticker class that runs an update loop that other objects listen to. + * + * This class is composed around listeners meant for execution on the next requested animation frame. + * Animation frames are requested only when necessary, e.g. When the ticker is started and the emitter has listeners. + * + * @class + * @memberof PIXI + */ +var Ticker = function Ticker() +{ + var this$1 = this; + + /** + * The first listener. All new listeners added are chained on this. + * @private + * @type {TickerListener} + */ + this._head = new TickerListener(null, null, Infinity); + + /** + * Internal current frame request ID + * @type {?number} + * @private + */ + this._requestId = null; + + /** + * Internal value managed by minFPS property setter and getter. + * This is the maximum allowed milliseconds between updates. + * @type {number} + * @private + */ + this._maxElapsedMS = 100; + + /** + * Internal value managed by maxFPS property setter and getter. + * This is the minimum allowed milliseconds between updates. + * @private + */ + this._minElapsedMS = 0; + + /** + * Whether or not this ticker should invoke the method + * {@link PIXI.Ticker#start} automatically + * when a listener is added. + * + * @member {boolean} + * @default false + */ + this.autoStart = false; + + /** + * Scalar time value from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * + * @member {number} + * @default 1 + */ + this.deltaTime = 1; + + /** + * Scaler time elapsed in milliseconds from last frame to this frame. + * This value is capped by setting {@link PIXI.Ticker#minFPS} + * and is scaled with {@link PIXI.Ticker#speed}. + * **Note:** The cap may be exceeded by scaling. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.deltaMS = 1 / settings.TARGET_FPMS; + + /** + * Time elapsed in milliseconds from last frame to this frame. + * Opposed to what the scalar {@link PIXI.Ticker#deltaTime} + * is based, this value is neither capped nor scaled. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * Defaults to target frame time + * + * @member {number} + * @default 16.66 + */ + this.elapsedMS = 1 / settings.TARGET_FPMS; + + /** + * The last time {@link PIXI.Ticker#update} was invoked. + * This value is also reset internally outside of invoking + * update, but only when a new animation frame is requested. + * If the platform supports DOMHighResTimeStamp, + * this value will have a precision of 1 µs. + * + * @member {number} + * @default -1 + */ + this.lastTime = -1; + + /** + * Factor of current {@link PIXI.Ticker#deltaTime}. + * @example + * // Scales ticker.deltaTime to what would be + * // the equivalent of approximately 120 FPS + * ticker.speed = 2; + * + * @member {number} + * @default 1 + */ + this.speed = 1; + + /** + * Whether or not this ticker has been started. + * `true` if {@link PIXI.Ticker#start} has been called. + * `false` if {@link PIXI.Ticker#stop} has been called. + * While `false`, this value may change to `true` in the + * event of {@link PIXI.Ticker#autoStart} being `true` + * and a listener is added. + * + * @member {boolean} + * @default false + */ + this.started = false; + + /** + * If enabled, deleting is disabled. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + + /** + * The last time keyframe was executed. + * Maintains a relatively fixed interval with the previous value. + * @member {number} + * @default -1 + * @private + */ + this._lastFrame = -1; + + /** + * Internal tick method bound to ticker instance. + * This is because in early 2015, Function.bind + * is still 60% slower in high performance scenarios. + * Also separating frame requests from update method + * so listeners may be called at any time and with + * any animation API, just invoke ticker.update(time). + * + * @private + * @param {number} time - Time since last tick. + */ + this._tick = function (time) { + this$1._requestId = null; + + if (this$1.started) + { + // Invoke listeners now + this$1.update(time); + // Listener side effects may have modified ticker state. + if (this$1.started && this$1._requestId === null && this$1._head.next) + { + this$1._requestId = requestAnimationFrame(this$1._tick); + } + } + }; +}; + +var prototypeAccessors$4 = { FPS: { configurable: true },minFPS: { configurable: true },maxFPS: { configurable: true } }; +var staticAccessors$2 = { shared: { configurable: true },system: { configurable: true } }; + +/** + * Conditionally requests a new animation frame. + * If a frame has not already been requested, and if the internal + * emitter has listeners, a new frame is requested. + * + * @private + */ +Ticker.prototype._requestIfNeeded = function _requestIfNeeded () +{ + if (this._requestId === null && this._head.next) + { + // ensure callbacks get correct delta + this.lastTime = performance.now(); + this._lastFrame = this.lastTime; + this._requestId = requestAnimationFrame(this._tick); + } +}; + +/** + * Conditionally cancels a pending animation frame. + * + * @private + */ +Ticker.prototype._cancelIfNeeded = function _cancelIfNeeded () +{ + if (this._requestId !== null) + { + cancelAnimationFrame(this._requestId); + this._requestId = null; + } +}; + +/** + * Conditionally requests a new animation frame. + * If the ticker has been started it checks if a frame has not already + * been requested, and if the internal emitter has listeners. If these + * conditions are met, a new frame is requested. If the ticker has not + * been started, but autoStart is `true`, then the ticker starts now, + * and continues with the previous conditions to request a new frame. + * + * @private + */ +Ticker.prototype._startIfPossible = function _startIfPossible () +{ + if (this.started) + { + this._requestIfNeeded(); + } + else if (this.autoStart) + { + this.start(); + } +}; + +/** + * Register a handler for tick events. Calls continuously unless + * it is removed or the ticker is stopped. + * + * @param {Function} fn - The listener function to be added for updates + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.add = function add (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority)); +}; + +/** + * Add a handler for the tick event which is only execute once. + * + * @param {Function} fn - The listener function to be added for one update + * @param {*} [context] - The listener context + * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.addOnce = function addOnce (fn, context, priority) +{ + if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL; + + return this._addListener(new TickerListener(fn, context, priority, true)); +}; + +/** + * Internally adds the event handler so that it can be sorted by priority. + * Priority allows certain handler (user, AnimatedSprite, Interaction) to be run + * before the rendering. + * + * @private + * @param {TickerListener} listener - Current listener being added. + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype._addListener = function _addListener (listener) +{ + // For attaching to head + var current = this._head.next; + var previous = this._head; + + // Add the first item + if (!current) + { + listener.connect(previous); + } + else + { + // Go from highest to lowest priority + while (current) + { + if (listener.priority > current.priority) + { + listener.connect(previous); + break; + } + previous = current; + current = current.next; + } + + // Not yet connected + if (!listener.previous) + { + listener.connect(previous); + } + } + + this._startIfPossible(); + + return this; +}; + +/** + * Removes any handlers matching the function and context parameters. + * If no handlers are left after removing, then it cancels the animation frame. + * + * @param {Function} fn - The listener function to be removed + * @param {*} [context] - The listener context to be removed + * @returns {PIXI.Ticker} This instance of a ticker + */ +Ticker.prototype.remove = function remove (fn, context) +{ + var listener = this._head.next; + + while (listener) + { + // We found a match, lets remove it + // no break to delete all possible matches + // incase a listener was added 2+ times + if (listener.match(fn, context)) + { + listener = listener.destroy(); + } + else + { + listener = listener.next; + } + } + + if (!this._head.next) + { + this._cancelIfNeeded(); + } + + return this; +}; + +/** + * Starts the ticker. If the ticker has listeners + * a new animation frame is requested at this point. + */ +Ticker.prototype.start = function start () +{ + if (!this.started) + { + this.started = true; + this._requestIfNeeded(); + } +}; + +/** + * Stops the ticker. If the ticker has requested + * an animation frame it is canceled at this point. + */ +Ticker.prototype.stop = function stop () +{ + if (this.started) + { + this.started = false; + this._cancelIfNeeded(); + } +}; + +/** + * Destroy the ticker and don't use after this. Calling + * this method removes all references to internal events. + */ +Ticker.prototype.destroy = function destroy () +{ + if (!this._protected) + { + this.stop(); + + var listener = this._head.next; + + while (listener) + { + listener = listener.destroy(true); + } + + this._head.destroy(); + this._head = null; + } +}; + +/** + * Triggers an update. An update entails setting the + * current {@link PIXI.Ticker#elapsedMS}, + * the current {@link PIXI.Ticker#deltaTime}, + * invoking all listeners with current deltaTime, + * and then finally setting {@link PIXI.Ticker#lastTime} + * with the value of currentTime that was provided. + * This method will be called automatically by animation + * frame callbacks if the ticker instance has been started + * and listeners are added. + * + * @param {number} [currentTime=performance.now()] - the current time of execution + */ +Ticker.prototype.update = function update (currentTime) +{ + if ( currentTime === void 0 ) currentTime = performance.now(); + + var elapsedMS; + + // If the difference in time is zero or negative, we ignore most of the work done here. + // If there is no valid difference, then should be no reason to let anyone know about it. + // A zero delta, is exactly that, nothing should update. + // + // The difference in time can be negative, and no this does not mean time traveling. + // This can be the result of a race condition between when an animation frame is requested + // on the current JavaScript engine event loop, and when the ticker's start method is invoked + // (which invokes the internal _requestIfNeeded method). If a frame is requested before + // _requestIfNeeded is invoked, then the callback for the animation frame the ticker requests, + // can receive a time argument that can be less than the lastTime value that was set within + // _requestIfNeeded. This difference is in microseconds, but this is enough to cause problems. + // + // This check covers this browser engine timing issue, as well as if consumers pass an invalid + // currentTime value. This may happen if consumers opt-out of the autoStart, and update themselves. + + if (currentTime > this.lastTime) + { + // Save uncapped elapsedMS for measurement + elapsedMS = this.elapsedMS = currentTime - this.lastTime; + + // cap the milliseconds elapsed used for deltaTime + if (elapsedMS > this._maxElapsedMS) + { + elapsedMS = this._maxElapsedMS; + } + + elapsedMS *= this.speed; + + // If not enough time has passed, exit the function. + // Get ready for next frame by setting _lastFrame, but based on _minElapsedMS + // adjustment to ensure a relatively stable interval. + if (this._minElapsedMS) + { + var delta = currentTime - this._lastFrame | 0; + + if (delta < this._minElapsedMS) + { + return; + } + + this._lastFrame = currentTime - (delta % this._minElapsedMS); + } + + this.deltaMS = elapsedMS; + this.deltaTime = this.deltaMS * settings.TARGET_FPMS; + + // Cache a local reference, in-case ticker is destroyed + // during the emit, we can still check for head.next + var head = this._head; + + // Invoke listeners added to internal emitter + var listener = head.next; + + while (listener) + { + listener = listener.emit(this.deltaTime); + } + + if (!head.next) + { + this._cancelIfNeeded(); + } + } + else + { + this.deltaTime = this.deltaMS = this.elapsedMS = 0; + } + + this.lastTime = currentTime; +}; + +/** + * The frames per second at which this ticker is running. + * The default is approximately 60 in most modern browsers. + * **Note:** This does not factor in the value of + * {@link PIXI.Ticker#speed}, which is specific + * to scaling {@link PIXI.Ticker#deltaTime}. + * + * @member {number} + * @readonly + */ +prototypeAccessors$4.FPS.get = function () +{ + return 1000 / this.elapsedMS; +}; + +/** + * Manages the maximum amount of milliseconds allowed to + * elapse between invoking {@link PIXI.Ticker#update}. + * This value is used to cap {@link PIXI.Ticker#deltaTime}, + * but does not effect the measured value of {@link PIXI.Ticker#FPS}. + * When setting this property it is clamped to a value between + * `0` and `PIXI.settings.TARGET_FPMS * 1000`. + * + * @member {number} + * @default 10 + */ +prototypeAccessors$4.minFPS.get = function () +{ + return 1000 / this._maxElapsedMS; +}; + +prototypeAccessors$4.minFPS.set = function (fps) // eslint-disable-line require-jsdoc +{ + // Minimum must be below the maxFPS + var minFPS = Math.min(this.maxFPS, fps); + + // Must be at least 0, but below 1 / settings.TARGET_FPMS + var minFPMS = Math.min(Math.max(0, minFPS) / 1000, settings.TARGET_FPMS); + + this._maxElapsedMS = 1 / minFPMS; +}; + +/** + * Manages the minimum amount of milliseconds required to + * elapse between invoking {@link PIXI.Ticker#update}. + * This will effect the measured value of {@link PIXI.Ticker#FPS}. + * If it is set to `0`, then there is no limit; PixiJS will render as many frames as it can. + * Otherwise it will be at least `minFPS` + * + * @member {number} + * @default 0 + */ +prototypeAccessors$4.maxFPS.get = function () +{ + if (this._minElapsedMS) + { + return Math.round(1000 / this._minElapsedMS); + } + + return 0; +}; + +prototypeAccessors$4.maxFPS.set = function (fps) +{ + if (fps === 0) + { + this._minElapsedMS = 0; + } + else + { + // Max must be at least the minFPS + var maxFPS = Math.max(this.minFPS, fps); + + this._minElapsedMS = 1 / (maxFPS / 1000); + } +}; + +/** + * The shared ticker instance used by {@link PIXI.AnimatedSprite} and by + * {@link PIXI.VideoResource} to update animation frames / video textures. + * + * It may also be used by {@link PIXI.Application} if created with the `sharedTicker` option property set to true. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * Please follow the examples for usage, including how to opt-out of auto-starting the shared ticker. + * + * @example + * let ticker = PIXI.Ticker.shared; + * // Set this to prevent starting this ticker when listeners are added. + * // By default this is true only for the PIXI.Ticker.shared instance. + * ticker.autoStart = false; + * // FYI, call this to ensure the ticker is stopped. It should be stopped + * // if you have not attempted to render anything yet. + * ticker.stop(); + * // Call this when you are ready for a running shared ticker. + * ticker.start(); + * + * @example + * // You may use the shared ticker to render... + * let renderer = PIXI.autoDetectRenderer(); + * let stage = new PIXI.Container(); + * document.body.appendChild(renderer.view); + * ticker.add(function (time) { + * renderer.render(stage); + * }); + * + * @example + * // Or you can just update it manually. + * ticker.autoStart = false; + * ticker.stop(); + * function animate(time) { + * ticker.update(time); + * renderer.render(stage); + * requestAnimationFrame(animate); + * } + * animate(performance.now()); + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.shared.get = function () +{ + if (!Ticker._shared) + { + var shared = Ticker._shared = new Ticker(); + + shared.autoStart = true; + shared._protected = true; + } + + return Ticker._shared; +}; + +/** + * The system ticker instance used by {@link PIXI.interaction.InteractionManager} and by + * {@link PIXI.BasePrepare} for core timing functionality that shouldn't usually need to be paused, + * unlike the `shared` ticker which drives visual animations and rendering which may want to be paused. + * + * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance. + * + * @member {PIXI.Ticker} + * @static + */ +staticAccessors$2.system.get = function () +{ + if (!Ticker._system) + { + var system = Ticker._system = new Ticker(); + + system.autoStart = true; + system._protected = true; + } + + return Ticker._system; +}; + +Object.defineProperties( Ticker.prototype, prototypeAccessors$4 ); +Object.defineProperties( Ticker, staticAccessors$2 ); + +/** + * Middleware for for Application Ticker. + * + * @example + * import {TickerPlugin} from '@pixi/ticker'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(TickerPlugin); + * + * @class + * @memberof PIXI + */ +var TickerPlugin = function TickerPlugin () {}; + +TickerPlugin.init = function init (options) +{ + var this$1 = this; + + // Set default + options = Object.assign({ + autoStart: true, + sharedTicker: false, + }, options); + + // Create ticker setter + Object.defineProperty(this, 'ticker', + { + set: function set(ticker) + { + if (this._ticker) + { + this._ticker.remove(this.render, this); + } + this._ticker = ticker; + if (ticker) + { + ticker.add(this.render, this, UPDATE_PRIORITY.LOW); + } + }, + get: function get() + { + return this._ticker; + }, + }); + + /** + * Convenience method for stopping the render. + * + * @method PIXI.Application#stop + */ + this.stop = function () { + this$1._ticker.stop(); + }; + + /** + * Convenience method for starting the render. + * + * @method PIXI.Application#start + */ + this.start = function () { + this$1._ticker.start(); + }; + + /** + * Internal reference to the ticker. + * + * @type {PIXI.Ticker} + * @name _ticker + * @memberof PIXI.Application# + * @private + */ + this._ticker = null; + + /** + * Ticker for doing render updates. + * + * @type {PIXI.Ticker} + * @name ticker + * @memberof PIXI.Application# + * @default PIXI.Ticker.shared + */ + this.ticker = options.sharedTicker ? Ticker.shared : new Ticker(); + + // Start the rendering + if (options.autoStart) + { + this.start(); + } +}; + +/** + * Clean up the ticker, scoped to application. + * + * @static + * @private + */ +TickerPlugin.destroy = function destroy () +{ + if (this._ticker) + { + var oldTicker = this._ticker; + + this.ticker = null; + oldTicker.destroy(); + } +}; + +/*! + * @pixi/core - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/core is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Base resource class for textures that manages validation and uploading, depending on its type. + * + * Uploading of a base texture to the GPU is required. + * + * @class + * @memberof PIXI.resources + */ +var Resource = function Resource(width, height) +{ + if ( width === void 0 ) width = 0; + if ( height === void 0 ) height = 0; + + /** + * Internal width of the resource + * @member {number} + * @protected + */ + this._width = width; + + /** + * Internal height of the resource + * @member {number} + * @protected + */ + this._height = height; + + /** + * If resource has been destroyed + * @member {boolean} + * @readonly + * @default false + */ + this.destroyed = false; + + /** + * `true` if resource is created by BaseTexture + * useful for doing cleanup with BaseTexture destroy + * and not cleaning up resources that were created + * externally. + * @member {boolean} + * @protected + */ + this.internal = false; + + /** + * Mini-runner for handling resize events + * + * @member {Runner} + * @private + */ + this.onResize = new Runner('setRealSize', 2); + + /** + * Mini-runner for handling update events + * + * @member {Runner} + * @private + */ + this.onUpdate = new Runner('update'); + + /** + * Handle internal errors, such as loading errors + * + * @member {Runner} + * @private + */ + this.onError = new Runner('onError', 1); +}; + +var prototypeAccessors$5 = { valid: { configurable: true },width: { configurable: true },height: { configurable: true } }; + +/** + * Bind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.bind = function bind (baseTexture) +{ + this.onResize.add(baseTexture); + this.onUpdate.add(baseTexture); + this.onError.add(baseTexture); + + // Call a resize immediate if we already + // have the width and height of the resource + if (this._width || this._height) + { + this.onResize.run(this._width, this._height); + } +}; + +/** + * Unbind to a parent BaseTexture + * + * @param {PIXI.BaseTexture} baseTexture - Parent texture + */ +Resource.prototype.unbind = function unbind (baseTexture) +{ + this.onResize.remove(baseTexture); + this.onUpdate.remove(baseTexture); + this.onError.remove(baseTexture); +}; + +/** + * Trigger a resize event + * @param {number} width X dimension + * @param {number} height Y dimension + */ +Resource.prototype.resize = function resize (width, height) +{ + if (width !== this._width || height !== this._height) + { + this._width = width; + this._height = height; + this.onResize.run(width, height); + } +}; + +/** + * Has been validated + * @readonly + * @member {boolean} + */ +prototypeAccessors$5.valid.get = function () +{ + return !!this._width && !!this._height; +}; + +/** + * Has been updated trigger event + */ +Resource.prototype.update = function update () +{ + if (!this.destroyed) + { + this.onUpdate.run(); + } +}; + +/** + * This can be overridden to start preloading a resource + * or do any other prepare step. + * @protected + * @return {Promise} Handle the validate event + */ +Resource.prototype.load = function load () +{ + return Promise.resolve(); +}; + +/** + * The width of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.width.get = function () +{ + return this._width; +}; + +/** + * The height of the resource. + * + * @member {number} + * @readonly + */ +prototypeAccessors$5.height.get = function () +{ + return this._height; +}; + +/** + * Uploads the texture or returns false if it cant for some reason. Override this. + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} true is success + */ +Resource.prototype.upload = function upload (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Set the style, optional to override + * + * @param {PIXI.Renderer} renderer - yeah, renderer! + * @param {PIXI.BaseTexture} baseTexture - the texture + * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context + * @returns {boolean} `true` is success + */ +Resource.prototype.style = function style (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars +{ + return false; +}; + +/** + * Clean up anything, this happens when destroying is ready. + * + * @protected + */ +Resource.prototype.dispose = function dispose () +{ + // override +}; + +/** + * Call when destroying resource, unbind any BaseTexture object + * before calling this method, as reference counts are maintained + * internally. + */ +Resource.prototype.destroy = function destroy () +{ + if (!this.destroyed) + { + this.destroyed = true; + this.dispose(); + this.onError.removeAll(); + this.onError = null; + this.onResize.removeAll(); + this.onResize = null; + this.onUpdate.removeAll(); + this.onUpdate = null; + } +}; + +Object.defineProperties( Resource.prototype, prototypeAccessors$5 ); + +/** + * Base for all the image/canvas resources + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BaseImageResource = /*@__PURE__*/(function (Resource) { + function BaseImageResource(source) + { + var width = source.naturalWidth || source.videoWidth || source.width; + var height = source.naturalHeight || source.videoHeight || source.height; + + Resource.call(this, width, height); + + /** + * The source element + * @member {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} + * @readonly + */ + this.source = source; + + /** + * If set to `true`, will force `texImage2D` over `texSubImage2D` for uploading. + * Certain types of media (e.g. video) using `texImage2D` is more performant. + * @member {boolean} + * @default false + * @private + */ + this.noSubImage = false; + } + + if ( Resource ) BaseImageResource.__proto__ = Resource; + BaseImageResource.prototype = Object.create( Resource && Resource.prototype ); + BaseImageResource.prototype.constructor = BaseImageResource; + + /** + * Set cross origin based detecting the url and the crossorigin + * @protected + * @param {HTMLElement} element - Element to apply crossOrigin + * @param {string} url - URL to check + * @param {boolean|string} [crossorigin=true] - Cross origin value to use + */ + BaseImageResource.crossOrigin = function crossOrigin (element, url, crossorigin) + { + if (crossorigin === undefined && url.indexOf('data:') !== 0) + { + element.crossOrigin = determineCrossOrigin(url); + } + else if (crossorigin !== false) + { + element.crossOrigin = typeof crossorigin === 'string' ? crossorigin : 'anonymous'; + } + }; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture + * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} [source] (optional) + * @returns {boolean} true is success + */ + BaseImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture, source) + { + var gl = renderer.gl; + var width = baseTexture.realWidth; + var height = baseTexture.realHeight; + + source = source || this.source; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (!this.noSubImage + && baseTexture.target === gl.TEXTURE_2D + && glTexture.width === width + && glTexture.height === height) + { + gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, baseTexture.format, baseTexture.type, source); + } + else + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(baseTexture.target, 0, baseTexture.format, baseTexture.format, baseTexture.type, source); + } + + return true; + }; + + /** + * Checks if source width/height was changed, resize can cause extra baseTexture update. + * Triggers one update in any case. + */ + BaseImageResource.prototype.update = function update () + { + if (this.destroyed) + { + return; + } + + var width = this.source.naturalWidth || this.source.videoWidth || this.source.width; + var height = this.source.naturalHeight || this.source.videoHeight || this.source.height; + + this.resize(width, height); + + Resource.prototype.update.call(this); + }; + + /** + * Destroy this BaseImageResource + * @override + * @param {PIXI.BaseTexture} [fromTexture] Optional base texture + * @return {boolean} Destroy was successful + */ + BaseImageResource.prototype.dispose = function dispose () + { + this.source = null; + }; + + return BaseImageResource; +}(Resource)); + +/** + * Resource type for HTMLImageElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + */ +var ImageResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLImageElement)) + { + var imageElement = new Image(); + + BaseImageResource.crossOrigin(imageElement, source, options.crossorigin); + + imageElement.src = source; + source = imageElement; + } + + BaseImageResource.call(this, source); + + // FireFox 68, and possibly other versions, seems like setting the HTMLImageElement#width and #height + // to non-zero values before its loading completes if images are in a cache. + // Because of this, need to set the `_width` and the `_height` to zero to avoid uploading incomplete images. + // Please refer to the issue #5968 (https://github.com/pixijs/pixi.js/issues/5968). + if (!source.complete && !!this._width && !!this._height) + { + this._width = 0; + this._height = 0; + } + + /** + * URL of the image source + * @member {string} + */ + this.url = source.src; + + /** + * When process is completed + * @member {Promise} + * @private + */ + this._process = null; + + /** + * If the image should be disposed after upload + * @member {boolean} + * @default false + */ + this.preserveBitmap = false; + + /** + * If capable, convert the image using createImageBitmap API + * @member {boolean} + * @default PIXI.settings.CREATE_IMAGE_BITMAP + */ + this.createBitmap = (options.createBitmap !== undefined + ? options.createBitmap : settings.CREATE_IMAGE_BITMAP) && !!window.createImageBitmap; + + /** + * Controls texture premultiplyAlpha field + * Copies from options + * @member {boolean|null} + * @readonly + */ + this.premultiplyAlpha = options.premultiplyAlpha !== false; + + /** + * The ImageBitmap element created for HTMLImageElement + * @member {ImageBitmap} + * @default null + */ + this.bitmap = null; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) ImageResource.__proto__ = BaseImageResource; + ImageResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageResource.prototype.constructor = ImageResource; + + /** + * returns a promise when image will be loaded and processed + * + * @param {boolean} [createBitmap=true] whether process image into bitmap + * @returns {Promise} + */ + ImageResource.prototype.load = function load (createBitmap) + { + var this$1 = this; + + if (createBitmap !== undefined) + { + this.createBitmap = createBitmap; + } + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + this$1.url = this$1.source.src; + var ref = this$1; + var source = ref.source; + + var completed = function () { + if (this$1.destroyed) + { + return; + } + source.onload = null; + source.onerror = null; + + this$1.resize(source.width, source.height); + this$1._load = null; + + if (this$1.createBitmap) + { + resolve(this$1.process()); + } + else + { + resolve(this$1); + } + }; + + if (source.complete && source.src) + { + completed(); + } + else + { + source.onload = completed; + source.onerror = function (event) { return this$1.onError.run(event); }; + } + }); + + return this._load; + }; + + /** + * Called when we need to convert image into BitmapImage. + * Can be called multiple times, real promise is cached inside. + * + * @returns {Promise} cached promise to fill that bitmap + */ + ImageResource.prototype.process = function process () + { + var this$1 = this; + + if (this._process !== null) + { + return this._process; + } + if (this.bitmap !== null || !window.createImageBitmap) + { + return Promise.resolve(this); + } + + this._process = window.createImageBitmap(this.source, + 0, 0, this.source.width, this.source.height, + { + premultiplyAlpha: this.premultiplyAlpha ? 'premultiply' : 'none', + }) + .then(function (bitmap) { + if (this$1.destroyed) + { + return Promise.reject(); + } + this$1.bitmap = bitmap; + this$1.update(); + this$1._process = null; + + return Promise.resolve(this$1); + }); + + return this._process; + }; + + /** + * Upload the image resource to GPU. + * + * @param {PIXI.Renderer} renderer - Renderer to upload to + * @param {PIXI.BaseTexture} baseTexture - BaseTexture for this resource + * @param {PIXI.GLTexture} glTexture - GLTexture to use + * @returns {boolean} true is success + */ + ImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + baseTexture.premultiplyAlpha = this.premultiplyAlpha; + + if (!this.createBitmap) + { + return BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture); + } + if (!this.bitmap) + { + // yeah, ignore the output + this.process(); + if (!this.bitmap) + { + return false; + } + } + + BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture, this.bitmap); + + if (!this.preserveBitmap) + { + // checks if there are other renderers that possibly need this bitmap + + var flag = true; + + for (var key in baseTexture._glTextures) + { + var otherTex = baseTexture._glTextures[key]; + + if (otherTex !== glTexture && otherTex.dirtyId !== baseTexture.dirtyId) + { + flag = false; + break; + } + } + + if (flag) + { + if (this.bitmap.close) + { + this.bitmap.close(); + } + + this.bitmap = null; + } + } + + return true; + }; + + /** + * Destroys this texture + * @override + */ + ImageResource.prototype.dispose = function dispose () + { + this.source.onload = null; + this.source.onerror = null; + + BaseImageResource.prototype.dispose.call(this); + + if (this.bitmap) + { + this.bitmap.close(); + this.bitmap = null; + } + this._process = null; + this._load = null; + }; + + return ImageResource; +}(BaseImageResource)); + +/** + * Collection of installed resource types, class must extend {@link PIXI.resources.Resource}. + * @example + * class CustomResource extends PIXI.resources.Resource { + * // MUST have source, options constructor signature + * // for auto-detected resources to be created. + * constructor(source, options) { + * super(); + * } + * upload(renderer, baseTexture, glTexture) { + * // upload with GL + * return true; + * } + * // used to auto-detect resource + * static test(source, extension) { + * return extension === 'xyz'|| source instanceof SomeClass; + * } + * } + * // Install the new resource type + * PIXI.resources.INSTALLED.push(CustomResource); + * + * @name PIXI.resources.INSTALLED + * @type {Array<*>} + * @static + * @readonly + */ +var INSTALLED = []; + +/** + * Create a resource element from a single source element. This + * auto-detects which type of resource to create. All resources that + * are auto-detectable must have a static `test` method and a constructor + * with the arguments `(source, options?)`. Currently, the supported + * resources for auto-detection include: + * - {@link PIXI.resources.ImageResource} + * - {@link PIXI.resources.CanvasResource} + * - {@link PIXI.resources.VideoResource} + * - {@link PIXI.resources.SVGResource} + * - {@link PIXI.resources.BufferResource} + * @static + * @function PIXI.resources.autoDetectResource + * @param {string|*} source - Resource source, this can be the URL to the resource, + * a typed-array (for BufferResource), HTMLVideoElement, SVG data-uri + * or any other resource that can be auto-detected. If not resource is + * detected, it's assumed to be an ImageResource. + * @param {object} [options] - Pass-through options to use for Resource + * @param {number} [options.width] - Width of BufferResource or SVG rasterization + * @param {number} [options.height] - Height of BufferResource or SVG rasterization + * @param {boolean} [options.autoLoad=true] - Image, SVG and Video flag to start loading + * @param {number} [options.scale=1] - SVG source scale. Overridden by width, height + * @param {boolean} [options.createBitmap=PIXI.settings.CREATE_IMAGE_BITMAP] - Image option to create Bitmap object + * @param {boolean} [options.crossorigin=true] - Image and Video option to set crossOrigin + * @param {boolean} [options.autoPlay=true] - Video option to start playing video immediately + * @param {number} [options.updateFPS=0] - Video option to update how many times a second the + * texture should be updated from the video. Leave at 0 to update at every render + * @return {PIXI.resources.Resource} The created resource. + */ +function autoDetectResource(source, options) +{ + if (!source) + { + return null; + } + + var extension = ''; + + if (typeof source === 'string') + { + // search for file extension: period, 3-4 chars, then ?, # or EOL + var result = (/\.(\w{3,4})(?:$|\?|#)/i).exec(source); + + if (result) + { + extension = result[1].toLowerCase(); + } + } + + for (var i = INSTALLED.length - 1; i >= 0; --i) + { + var ResourcePlugin = INSTALLED[i]; + + if (ResourcePlugin.test && ResourcePlugin.test(source, extension)) + { + return new ResourcePlugin(source, options); + } + } + + // When in doubt: probably an image + // might be appropriate to throw an error or return null + return new ImageResource(source, options); +} + +/** + * @interface SharedArrayBuffer + */ + +/** + * Buffer resource with data of typed array. + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + */ +var BufferResource = /*@__PURE__*/(function (Resource) { + function BufferResource(source, options) + { + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + if (!width || !height) + { + throw new Error('BufferResource width or height invalid'); + } + + Resource.call(this, width, height); + + /** + * Source array + * Cannot be ClampedUint8Array because it cant be uploaded to WebGL + * + * @member {Float32Array|Uint8Array|Uint32Array} + */ + this.data = source; + } + + if ( Resource ) BufferResource.__proto__ = Resource; + BufferResource.prototype = Object.create( Resource && Resource.prototype ); + BufferResource.prototype.constructor = BufferResource; + + /** + * Upload the texture to the GPU. + * @param {PIXI.Renderer} renderer Upload to the renderer + * @param {PIXI.BaseTexture} baseTexture Reference to parent texture + * @param {PIXI.GLTexture} glTexture glTexture + * @returns {boolean} true is success + */ + BufferResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + glTexture.internalFormat, + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + glTexture.type, + this.data + ); + } + + return true; + }; + + /** + * Destroy and don't use after this + * @override + */ + BufferResource.prototype.dispose = function dispose () + { + this.data = null; + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @return {boolean} `true` if + */ + BufferResource.test = function test (source) + { + return source instanceof Float32Array + || source instanceof Uint8Array + || source instanceof Uint32Array; + }; + + return BufferResource; +}(Resource)); + +var defaultBufferOptions = { + scaleMode: SCALE_MODES.NEAREST, + format: FORMATS.RGBA, + premultiplyAlpha: false, +}; + +/** + * A Texture stores the information that represents an image. + * All textures have a base texture, which contains information about the source. + * Therefore you can have many textures all using a single BaseTexture + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + * @param {PIXI.resources.Resource|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} [resource=null] + * The current resource to use, for things that aren't Resource objects, will be converted + * into a Resource. + * @param {Object} [options] - Collection of options + * @param {PIXI.MIPMAP_MODES} [options.mipmap=PIXI.settings.MIPMAP_TEXTURES] - If mipmapping is enabled for texture + * @param {number} [options.anisotropicLevel=PIXI.settings.ANISOTROPIC_LEVEL] - Anisotropic filtering level of texture + * @param {PIXI.WRAP_MODES} [options.wrapMode=PIXI.settings.WRAP_MODE] - Wrap mode for textures + * @param {PIXI.SCALE_MODES} [options.scaleMode=PIXI.settings.SCALE_MODE] - Default scale mode, linear, nearest + * @param {PIXI.FORMATS} [options.format=PIXI.FORMATS.RGBA] - GL format type + * @param {PIXI.TYPES} [options.type=PIXI.TYPES.UNSIGNED_BYTE] - GL data type + * @param {PIXI.TARGETS} [options.target=PIXI.TARGETS.TEXTURE_2D] - GL texture target + * @param {boolean} [options.premultiplyAlpha=true] - Pre multiply the image alpha + * @param {number} [options.width=0] - Width of the texture + * @param {number} [options.height=0] - Height of the texture + * @param {number} [options.resolution] - Resolution of the base texture + * @param {object} [options.resourceOptions] - Optional resource options, + * see {@link PIXI.resources.autoDetectResource autoDetectResource} + */ +var BaseTexture = /*@__PURE__*/(function (EventEmitter) { + function BaseTexture(resource, options) + { + if ( resource === void 0 ) resource = null; + if ( options === void 0 ) options = null; + + EventEmitter.call(this); + + options = options || {}; + + var premultiplyAlpha = options.premultiplyAlpha; + var mipmap = options.mipmap; + var anisotropicLevel = options.anisotropicLevel; + var scaleMode = options.scaleMode; + var width = options.width; + var height = options.height; + var wrapMode = options.wrapMode; + var format = options.format; + var type = options.type; + var target = options.target; + var resolution = options.resolution; + var resourceOptions = options.resourceOptions; + + // Convert the resource to a Resource object + if (resource && !(resource instanceof Resource)) + { + resource = autoDetectResource(resource, resourceOptions); + resource.internal = true; + } + + /** + * The width of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.width = width || 0; + + /** + * The height of the base texture set when the image has loaded + * + * @readonly + * @member {number} + */ + this.height = height || 0; + + /** + * The resolution / device pixel ratio of the texture + * + * @member {number} + * @default PIXI.settings.RESOLUTION + */ + this.resolution = resolution || settings.RESOLUTION; + + /** + * Mipmap mode of the texture, affects downscaled images + * + * @member {PIXI.MIPMAP_MODES} + * @default PIXI.settings.MIPMAP_TEXTURES + */ + this.mipmap = mipmap !== undefined ? mipmap : settings.MIPMAP_TEXTURES; + + /** + * Anisotropic filtering level of texture + * + * @member {number} + * @default PIXI.settings.ANISOTROPIC_LEVEL + */ + this.anisotropicLevel = anisotropicLevel !== undefined ? anisotropicLevel : settings.ANISOTROPIC_LEVEL; + + /** + * How the texture wraps + * @member {number} + */ + this.wrapMode = wrapMode || settings.WRAP_MODE; + + /** + * The scale mode to apply when scaling this texture + * + * @member {PIXI.SCALE_MODES} + * @default PIXI.settings.SCALE_MODE + */ + this.scaleMode = scaleMode !== undefined ? scaleMode : settings.SCALE_MODE; + + /** + * The pixel format of the texture + * + * @member {PIXI.FORMATS} + * @default PIXI.FORMATS.RGBA + */ + this.format = format || FORMATS.RGBA; + + /** + * The type of resource data + * + * @member {PIXI.TYPES} + * @default PIXI.TYPES.UNSIGNED_BYTE + */ + this.type = type || TYPES.UNSIGNED_BYTE; + + /** + * The target type + * + * @member {PIXI.TARGETS} + * @default PIXI.TARGETS.TEXTURE_2D + */ + this.target = target || TARGETS.TEXTURE_2D; + + /** + * Set to true to enable pre-multiplied alpha + * + * @member {boolean} + * @default true + */ + this.premultiplyAlpha = premultiplyAlpha !== false; + + /** + * Global unique identifier for this BaseTexture + * + * @member {string} + * @protected + */ + this.uid = uid(); + + /** + * Used by automatic texture Garbage Collection, stores last GC tick when it was bound + * + * @member {number} + * @protected + */ + this.touched = 0; + + /** + * Whether or not the texture is a power of two, try to use power of two textures as much + * as you can + * + * @readonly + * @member {boolean} + * @default false + */ + this.isPowerOfTwo = false; + this._refreshPOT(); + + /** + * The map of render context textures where this is bound + * + * @member {Object} + * @private + */ + this._glTextures = {}; + + /** + * Used by TextureSystem to only update texture to the GPU when needed. + * Please call `update()` to increment it. + * + * @readonly + * @member {number} + */ + this.dirtyId = 0; + + /** + * Used by TextureSystem to only update texture style when needed. + * + * @protected + * @member {number} + */ + this.dirtyStyleId = 0; + + /** + * Currently default cache ID. + * + * @member {string} + */ + this.cacheId = null; + + /** + * Generally speaking means when resource is loaded. + * @readonly + * @member {boolean} + */ + this.valid = width > 0 && height > 0; + + /** + * The collection of alternative cache ids, since some BaseTextures + * can have more than one ID, short name and longer full URL + * + * @member {Array} + * @readonly + */ + this.textureCacheIds = []; + + /** + * Flag if BaseTexture has been destroyed. + * + * @member {boolean} + * @readonly + */ + this.destroyed = false; + + /** + * The resource used by this BaseTexture, there can only + * be one resource per BaseTexture, but textures can share + * resources. + * + * @member {PIXI.resources.Resource} + * @readonly + */ + this.resource = null; + + /** + * Number of the texture batch, used by multi-texture renderers + * + * @member {number} + */ + this._batchEnabled = 0; + + /** + * Fired when a not-immediately-available source finishes loading. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when a not-immediately-available source fails to load. + * + * @protected + * @event PIXI.BaseTexture#error + * @param {PIXI.BaseTexture} baseTexture - Resource errored. + * @param {ErrorEvent} event - Load error event. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#loaded + * @param {PIXI.BaseTexture} baseTexture - Resource loaded. + */ + + /** + * Fired when BaseTexture is updated. + * + * @protected + * @event PIXI.BaseTexture#update + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being updated. + */ + + /** + * Fired when BaseTexture is destroyed. + * + * @protected + * @event PIXI.BaseTexture#dispose + * @param {PIXI.BaseTexture} baseTexture - Instance of texture being destroyed. + */ + + // Set the resource + this.setResource(resource); + } + + if ( EventEmitter ) BaseTexture.__proto__ = EventEmitter; + BaseTexture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + BaseTexture.prototype.constructor = BaseTexture; + + var prototypeAccessors = { realWidth: { configurable: true },realHeight: { configurable: true } }; + + /** + * Pixel width of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realWidth.get = function () + { + return Math.ceil((this.width * this.resolution) - 1e-4); + }; + + /** + * Pixel height of the source of this texture + * + * @readonly + * @member {number} + */ + prototypeAccessors.realHeight.get = function () + { + return Math.ceil((this.height * this.resolution) - 1e-4); + }; + + /** + * Changes style options of BaseTexture + * + * @param {PIXI.SCALE_MODES} [scaleMode] - Pixi scalemode + * @param {PIXI.MIPMAP_MODES} [mipmap] - enable mipmaps + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setStyle = function setStyle (scaleMode, mipmap) + { + var dirty; + + if (scaleMode !== undefined && scaleMode !== this.scaleMode) + { + this.scaleMode = scaleMode; + dirty = true; + } + + if (mipmap !== undefined && mipmap !== this.mipmap) + { + this.mipmap = mipmap; + dirty = true; + } + + if (dirty) + { + this.dirtyStyleId++; + } + + return this; + }; + + /** + * Changes w/h/resolution. Texture becomes valid if width and height are greater than zero. + * + * @param {number} width Visual width + * @param {number} height Visual height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setSize = function setSize (width, height, resolution) + { + this.resolution = resolution || this.resolution; + this.width = width; + this.height = height; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Sets real size of baseTexture, preserves current resolution. + * + * @param {number} realWidth Full rendered width + * @param {number} realHeight Full rendered height + * @param {number} [resolution] Optionally set resolution + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setRealSize = function setRealSize (realWidth, realHeight, resolution) + { + this.resolution = resolution || this.resolution; + this.width = realWidth / this.resolution; + this.height = realHeight / this.resolution; + this._refreshPOT(); + this.update(); + + return this; + }; + + /** + * Refresh check for isPowerOfTwo texture based on size + * + * @private + */ + BaseTexture.prototype._refreshPOT = function _refreshPOT () + { + this.isPowerOfTwo = isPow2(this.realWidth) && isPow2(this.realHeight); + }; + + /** + * Changes resolution + * + * @param {number} [resolution] res + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResolution = function setResolution (resolution) + { + var oldResolution = this.resolution; + + if (oldResolution === resolution) + { + return this; + } + + this.resolution = resolution; + + if (this.valid) + { + this.width = this.width * oldResolution / resolution; + this.height = this.height * oldResolution / resolution; + this.emit('update', this); + } + + this._refreshPOT(); + + return this; + }; + + /** + * Sets the resource if it wasn't set. Throws error if resource already present + * + * @param {PIXI.resources.Resource} resource - that is managing this BaseTexture + * @returns {PIXI.BaseTexture} this + */ + BaseTexture.prototype.setResource = function setResource (resource) + { + if (this.resource === resource) + { + return this; + } + + if (this.resource) + { + throw new Error('Resource can be set only once'); + } + + resource.bind(this); + + this.resource = resource; + + return this; + }; + + /** + * Invalidates the object. Texture becomes valid if width and height are greater than zero. + */ + BaseTexture.prototype.update = function update () + { + if (!this.valid) + { + if (this.width > 0 && this.height > 0) + { + this.valid = true; + this.emit('loaded', this); + this.emit('update', this); + } + } + else + { + this.dirtyId++; + this.dirtyStyleId++; + this.emit('update', this); + } + }; + + /** + * Handle errors with resources. + * @private + * @param {ErrorEvent} event - Error event emitted. + */ + BaseTexture.prototype.onError = function onError (event) + { + this.emit('error', this, event); + }; + + /** + * Destroys this base texture. + * The method stops if resource doesn't want this texture to be destroyed. + * Removes texture from all caches. + */ + BaseTexture.prototype.destroy = function destroy () + { + // remove and destroy the resource + if (this.resource) + { + this.resource.unbind(this); + // only destroy resourced created internally + if (this.resource.internal) + { + this.resource.destroy(); + } + this.resource = null; + } + + if (this.cacheId) + { + delete BaseTextureCache[this.cacheId]; + delete TextureCache[this.cacheId]; + + this.cacheId = null; + } + + // finally let the WebGL renderer know.. + this.dispose(); + + BaseTexture.removeFromCache(this); + this.textureCacheIds = null; + + this.destroyed = true; + }; + + /** + * Frees the texture from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseTexture.prototype.dispose = function dispose () + { + this.emit('dispose', this); + }; + + /** + * Helper function that creates a base texture based on the source you provide. + * The source can be - image url, image element, canvas element. If the + * source is an image url or an image element and not in the base texture + * cache, it will be created and loaded. + * + * @static + * @param {string|HTMLImageElement|HTMLCanvasElement|SVGElement|HTMLVideoElement} source - The + * source to create base texture from. + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @returns {PIXI.BaseTexture} The new base texture. + */ + BaseTexture.from = function from (source, options) + { + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var baseTexture = BaseTextureCache[cacheId]; + + if (!baseTexture) + { + baseTexture = new BaseTexture(source, options); + baseTexture.cacheId = cacheId; + BaseTexture.addToCache(baseTexture, cacheId); + } + + return baseTexture; + }; + + /** + * Create a new BaseTexture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.BaseTexture} The resulting new BaseTexture + */ + BaseTexture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + buffer = buffer || new Float32Array(width * height * 4); + + var resource = new BufferResource(buffer, { width: width, height: height }); + var type = buffer instanceof Float32Array ? TYPES.FLOAT : TYPES.UNSIGNED_BYTE; + + return new BaseTexture(resource, Object.assign(defaultBufferOptions, options || { width: width, height: height, type: type })); + }; + + /** + * Adds a BaseTexture to the global BaseTextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.BaseTexture} baseTexture - The BaseTexture to add to the cache. + * @param {string} id - The id that the BaseTexture will be stored against. + */ + BaseTexture.addToCache = function addToCache (baseTexture, id) + { + if (id) + { + if (baseTexture.textureCacheIds.indexOf(id) === -1) + { + baseTexture.textureCacheIds.push(id); + } + + if (BaseTextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("BaseTexture added to the cache with an id [" + id + "] that already had an entry")); + } + + BaseTextureCache[id] = baseTexture; + } + }; + + /** + * Remove a BaseTexture from the global BaseTextureCache. + * + * @static + * @param {string|PIXI.BaseTexture} baseTexture - id of a BaseTexture to be removed, or a BaseTexture instance itself. + * @return {PIXI.BaseTexture|null} The BaseTexture that was removed. + */ + BaseTexture.removeFromCache = function removeFromCache (baseTexture) + { + if (typeof baseTexture === 'string') + { + var baseTextureFromCache = BaseTextureCache[baseTexture]; + + if (baseTextureFromCache) + { + var index = baseTextureFromCache.textureCacheIds.indexOf(baseTexture); + + if (index > -1) + { + baseTextureFromCache.textureCacheIds.splice(index, 1); + } + + delete BaseTextureCache[baseTexture]; + + return baseTextureFromCache; + } + } + else if (baseTexture && baseTexture.textureCacheIds) + { + for (var i = 0; i < baseTexture.textureCacheIds.length; ++i) + { + delete BaseTextureCache[baseTexture.textureCacheIds[i]]; + } + + baseTexture.textureCacheIds.length = 0; + + return baseTexture; + } + + return null; + }; + + Object.defineProperties( BaseTexture.prototype, prototypeAccessors ); + + return BaseTexture; +}(eventemitter3)); + +/** + * Global number of the texture batch, used by multi-texture renderers + * + * @static + * @member {number} + */ +BaseTexture._globalBatch = 0; + +/** + * A resource that contains a number of sources. + * + * @class + * @extends PIXI.resources.Resource + * @memberof PIXI.resources + * @param {number|Array<*>} source - Number of items in array or the collection + * of image URLs to use. Can also be resources, image elements, canvas, etc. + * @param {object} [options] Options to apply to {@link PIXI.resources.autoDetectResource} + * @param {number} [options.width] - Width of the resource + * @param {number} [options.height] - Height of the resource + */ +var ArrayResource = /*@__PURE__*/(function (Resource) { + function ArrayResource(source, options) + { + options = options || {}; + + var urls; + var length = source; + + if (Array.isArray(source)) + { + urls = source; + length = source.length; + } + + Resource.call(this, options.width, options.height); + + /** + * Collection of resources. + * @member {Array} + * @readonly + */ + this.items = []; + + /** + * Dirty IDs for each part + * @member {Array} + * @readonly + */ + this.itemDirtyIds = []; + + for (var i = 0; i < length; i++) + { + var partTexture = new BaseTexture(); + + this.items.push(partTexture); + this.itemDirtyIds.push(-1); + } + + /** + * Number of elements in array + * + * @member {number} + * @readonly + */ + this.length = length; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (urls) + { + for (var i$1 = 0; i$1 < length; i$1++) + { + this.addResourceAt(autoDetectResource(urls[i$1], options), i$1); + } + } + } + + if ( Resource ) ArrayResource.__proto__ = Resource; + ArrayResource.prototype = Object.create( Resource && Resource.prototype ); + ArrayResource.prototype.constructor = ArrayResource; + + /** + * Destroy this BaseImageResource + * @override + */ + ArrayResource.prototype.dispose = function dispose () + { + for (var i = 0, len = this.length; i < len; i++) + { + this.items[i].destroy(); + } + this.items = null; + this.itemDirtyIds = null; + this._load = null; + }; + + /** + * Set a resource by ID + * + * @param {PIXI.resources.Resource} resource + * @param {number} index - Zero-based index of resource to set + * @return {PIXI.resources.ArrayResource} Instance for chaining + */ + ArrayResource.prototype.addResourceAt = function addResourceAt (resource, index) + { + var baseTexture = this.items[index]; + + if (!baseTexture) + { + throw new Error(("Index " + index + " is out of bounds")); + } + + // Inherit the first resource dimensions + if (resource.valid && !this.valid) + { + this.resize(resource.width, resource.height); + } + + this.items[index].setResource(resource); + + return this; + }; + + /** + * Set the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.bind = function bind (baseTexture) + { + Resource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_2D_ARRAY; + + for (var i = 0; i < this.length; i++) + { + this.items[i].on('update', baseTexture.update, baseTexture); + } + }; + + /** + * Unset the parent base texture + * @member {PIXI.BaseTexture} + * @override + */ + ArrayResource.prototype.unbind = function unbind (baseTexture) + { + Resource.prototype.unbind.call(this, baseTexture); + + for (var i = 0; i < this.length; i++) + { + this.items[i].off('update', baseTexture.update, baseTexture); + } + }; + + /** + * Load all the resources simultaneously + * @override + * @return {Promise} When load is resolved + */ + ArrayResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var resources = this.items.map(function (item) { return item.resource; }); + + // TODO: also implement load part-by-part strategy + var promises = resources.map(function (item) { return item.load(); }); + + this._load = Promise.all(promises) + .then(function () { + var ref = resources[0]; + var width = ref.width; + var height = ref.height; + + this$1.resize(width, height); + + return Promise.resolve(this$1); + } + ); + + return this._load; + }; + + /** + * Upload the resources to the GPU. + * @param {PIXI.Renderer} renderer + * @param {PIXI.BaseTexture} texture + * @param {PIXI.GLTexture} glTexture + * @returns {boolean} whether texture was uploaded + */ + ArrayResource.prototype.upload = function upload (renderer, texture, glTexture) + { + var ref = this; + var length = ref.length; + var itemDirtyIds = ref.itemDirtyIds; + var items = ref.items; + var gl = renderer.gl; + + if (glTexture.dirtyId < 0) + { + gl.texImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + texture.format, + this._width, + this._height, + length, + 0, + texture.format, + texture.type, + null + ); + } + + for (var i = 0; i < length; i++) + { + var item = items[i]; + + if (itemDirtyIds[i] < item.dirtyId) + { + itemDirtyIds[i] = item.dirtyId; + if (item.valid) + { + gl.texSubImage3D( + gl.TEXTURE_2D_ARRAY, + 0, + 0, // xoffset + 0, // yoffset + i, // zoffset + item.resource.width, + item.resource.height, + 1, + texture.format, + texture.type, + item.resource.source + ); + } + } + } + + return true; + }; + + return ArrayResource; +}(Resource)); + +/** + * @interface OffscreenCanvas + */ + +/** + * Resource type for HTMLCanvasElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLCanvasElement} source - Canvas element to use + */ +var CanvasResource = /*@__PURE__*/(function (BaseImageResource) { + function CanvasResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) CanvasResource.__proto__ = BaseImageResource; + CanvasResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + CanvasResource.prototype.constructor = CanvasResource; + + CanvasResource.test = function test (source) + { + var OffscreenCanvas = window.OffscreenCanvas; + + // Check for browsers that don't yet support OffscreenCanvas + if (OffscreenCanvas && source instanceof OffscreenCanvas) + { + return true; + } + + return source instanceof HTMLCanvasElement; + }; + + return CanvasResource; +}(BaseImageResource)); + +/** + * Resource for a CubeTexture which contains six resources. + * + * @class + * @extends PIXI.resources.ArrayResource + * @memberof PIXI.resources + * @param {Array} [source] Collection of URLs or resources + * to use as the sides of the cube. + * @param {object} [options] - ImageResource options + * @param {number} [options.width] - Width of resource + * @param {number} [options.height] - Height of resource + */ +var CubeResource = /*@__PURE__*/(function (ArrayResource) { + function CubeResource(source, options) + { + options = options || {}; + + ArrayResource.call(this, source, options); + + if (this.length !== CubeResource.SIDES) + { + throw new Error(("Invalid length. Got " + (this.length) + ", expected 6")); + } + + for (var i = 0; i < CubeResource.SIDES; i++) + { + this.items[i].target = TARGETS.TEXTURE_CUBE_MAP_POSITIVE_X + i; + } + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( ArrayResource ) CubeResource.__proto__ = ArrayResource; + CubeResource.prototype = Object.create( ArrayResource && ArrayResource.prototype ); + CubeResource.prototype.constructor = CubeResource; + + /** + * Add binding + * + * @override + * @param {PIXI.BaseTexture} baseTexture - parent base texture + */ + CubeResource.prototype.bind = function bind (baseTexture) + { + ArrayResource.prototype.bind.call(this, baseTexture); + + baseTexture.target = TARGETS.TEXTURE_CUBE_MAP; + }; + + /** + * Upload the resource + * + * @returns {boolean} true is success + */ + CubeResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var dirty = this.itemDirtyIds; + + for (var i = 0; i < CubeResource.SIDES; i++) + { + var side = this.items[i]; + + if (dirty[i] < side.dirtyId) + { + dirty[i] = side.dirtyId; + if (side.valid) + { + side.resource.upload(renderer, side, glTexture); + } + } + } + + return true; + }; + + return CubeResource; +}(ArrayResource)); + +/** + * Number of texture sides to store for CubeResources + * + * @name PIXI.resources.CubeResource.SIDES + * @static + * @member {number} + * @default 6 + */ +CubeResource.SIDES = 6; + +/** + * Resource type for SVG elements and graphics. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {string} source - Base64 encoded SVG element or URL for SVG file. + * @param {object} [options] - Options to use + * @param {number} [options.scale=1] Scale to apply to SVG. Overridden by... + * @param {number} [options.width] Rasterize SVG this wide. Aspect ratio preserved if height not specified. + * @param {number} [options.height] Rasterize SVG this high. Aspect ratio preserved if width not specified. + * @param {boolean} [options.autoLoad=true] Start loading right away. + */ +var SVGResource = /*@__PURE__*/(function (BaseImageResource) { + function SVGResource(source, options) + { + options = options || {}; + + BaseImageResource.call(this, document.createElement('canvas')); + this._width = 0; + this._height = 0; + + /** + * Base64 encoded SVG element or URL for SVG file + * @readonly + * @member {string} + */ + this.svg = source; + + /** + * The source scale to apply when rasterizing on load + * @readonly + * @member {number} + */ + this.scale = options.scale || 1; + + /** + * A width override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideWidth = options.width; + + /** + * A height override for rasterization on load + * @readonly + * @member {number} + */ + this._overrideHeight = options.height; + + /** + * Call when completely loaded + * @private + * @member {function} + */ + this._resolve = null; + + /** + * Cross origin value to use + * @private + * @member {boolean|string} + */ + this._crossorigin = options.crossorigin; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) SVGResource.__proto__ = BaseImageResource; + SVGResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + SVGResource.prototype.constructor = SVGResource; + + SVGResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + this._load = new Promise(function (resolve) { + // Save this until after load is finished + this$1._resolve = function () { + this$1.resize(this$1.source.width, this$1.source.height); + resolve(this$1); + }; + + // Convert SVG inline string to data-uri + if ((/^\]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*>/i; // eslint-disable-line max-len + +/** + * Resource type for HTMLVideoElement. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {HTMLVideoElement|object|string|Array} source - Video element to use. + * @param {object} [options] - Options to use + * @param {boolean} [options.autoLoad=true] - Start loading the video immediately + * @param {boolean} [options.autoPlay=true] - Start playing video immediately + * @param {number} [options.updateFPS=0] - How many times a second to update the texture from the video. + * Leave at 0 to update at every render. + * @param {boolean} [options.crossorigin=true] - Load image using cross origin + */ +var VideoResource = /*@__PURE__*/(function (BaseImageResource) { + function VideoResource(source, options) + { + options = options || {}; + + if (!(source instanceof HTMLVideoElement)) + { + var videoElement = document.createElement('video'); + + // workaround for https://github.com/pixijs/pixi.js/issues/5996 + videoElement.setAttribute('preload', 'auto'); + videoElement.setAttribute('webkit-playsinline', ''); + videoElement.setAttribute('playsinline', ''); + + if (typeof source === 'string') + { + source = [source]; + } + + BaseImageResource.crossOrigin(videoElement, (source[0].src || source[0]), options.crossorigin); + + // array of objects or strings + for (var i = 0; i < source.length; ++i) + { + var sourceElement = document.createElement('source'); + + var ref = source[i]; + var src = ref.src; + var mime = ref.mime; + + src = src || source[i]; + + var baseSrc = src.split('?').shift().toLowerCase(); + var ext = baseSrc.substr(baseSrc.lastIndexOf('.') + 1); + + mime = mime || ("video/" + ext); + + sourceElement.src = src; + sourceElement.type = mime; + + videoElement.appendChild(sourceElement); + } + + // Override the source + source = videoElement; + } + + BaseImageResource.call(this, source); + + this.noSubImage = true; + this._autoUpdate = true; + this._isAutoUpdating = false; + this._updateFPS = options.updateFPS || 0; + this._msToNextUpdate = 0; + + /** + * When set to true will automatically play videos used by this texture once + * they are loaded. If false, it will not modify the playing state. + * + * @member {boolean} + * @default true + */ + this.autoPlay = options.autoPlay !== false; + + /** + * Promise when loading + * @member {Promise} + * @private + * @default null + */ + this._load = null; + + /** + * Callback when completed with load. + * @member {function} + * @private + */ + this._resolve = null; + + // Bind for listeners + this._onCanPlay = this._onCanPlay.bind(this); + this._onError = this._onError.bind(this); + + if (options.autoLoad !== false) + { + this.load(); + } + } + + if ( BaseImageResource ) VideoResource.__proto__ = BaseImageResource; + VideoResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + VideoResource.prototype.constructor = VideoResource; + + var prototypeAccessors = { autoUpdate: { configurable: true },updateFPS: { configurable: true } }; + + /** + * Trigger updating of the texture + * + * @param {number} [deltaTime=0] - time delta since last tick + */ + VideoResource.prototype.update = function update (deltaTime) + { + if ( deltaTime === void 0 ) deltaTime = 0; + + if (!this.destroyed) + { + // account for if video has had its playbackRate changed + var elapsedMS = Ticker.shared.elapsedMS * this.source.playbackRate; + + this._msToNextUpdate = Math.floor(this._msToNextUpdate - elapsedMS); + if (!this._updateFPS || this._msToNextUpdate <= 0) + { + BaseImageResource.prototype.update.call(this, deltaTime); + this._msToNextUpdate = this._updateFPS ? Math.floor(1000 / this._updateFPS) : 0; + } + } + }; + + /** + * Start preloading the video resource. + * + * @protected + * @return {Promise} Handle the validate event + */ + VideoResource.prototype.load = function load () + { + var this$1 = this; + + if (this._load) + { + return this._load; + } + + var source = this.source; + + if ((source.readyState === source.HAVE_ENOUGH_DATA || source.readyState === source.HAVE_FUTURE_DATA) + && source.width && source.height) + { + source.complete = true; + } + + source.addEventListener('play', this._onPlayStart.bind(this)); + source.addEventListener('pause', this._onPlayStop.bind(this)); + + if (!this._isSourceReady()) + { + source.addEventListener('canplay', this._onCanPlay); + source.addEventListener('canplaythrough', this._onCanPlay); + source.addEventListener('error', this._onError, true); + } + else + { + this._onCanPlay(); + } + + this._load = new Promise(function (resolve) { + if (this$1.valid) + { + resolve(this$1); + } + else + { + this$1._resolve = resolve; + + source.load(); + } + }); + + return this._load; + }; + + /** + * Handle video error events. + * + * @private + */ + VideoResource.prototype._onError = function _onError () + { + this.source.removeEventListener('error', this._onError, true); + this.onError.run(event); + }; + + /** + * Returns true if the underlying source is playing. + * + * @private + * @return {boolean} True if playing. + */ + VideoResource.prototype._isSourcePlaying = function _isSourcePlaying () + { + var source = this.source; + + return (source.currentTime > 0 && source.paused === false && source.ended === false && source.readyState > 2); + }; + + /** + * Returns true if the underlying source is ready for playing. + * + * @private + * @return {boolean} True if ready. + */ + VideoResource.prototype._isSourceReady = function _isSourceReady () + { + return this.source.readyState === 3 || this.source.readyState === 4; + }; + + /** + * Runs the update loop when the video is ready to play + * + * @private + */ + VideoResource.prototype._onPlayStart = function _onPlayStart () + { + // Just in case the video has not received its can play even yet.. + if (!this.valid) + { + this._onCanPlay(); + } + + if (!this._isAutoUpdating && this.autoUpdate) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + }; + + /** + * Fired when a pause event is triggered, stops the update loop + * + * @private + */ + VideoResource.prototype._onPlayStop = function _onPlayStop () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + }; + + /** + * Fired when the video is loaded and ready to play + * + * @private + */ + VideoResource.prototype._onCanPlay = function _onCanPlay () + { + var ref = this; + var source = ref.source; + + source.removeEventListener('canplay', this._onCanPlay); + source.removeEventListener('canplaythrough', this._onCanPlay); + + var valid = this.valid; + + this.resize(source.videoWidth, source.videoHeight); + + // prevent multiple loaded dispatches.. + if (!valid && this._resolve) + { + this._resolve(this); + this._resolve = null; + } + + if (this._isSourcePlaying()) + { + this._onPlayStart(); + } + else if (this.autoPlay) + { + source.play(); + } + }; + + /** + * Destroys this texture + * @override + */ + VideoResource.prototype.dispose = function dispose () + { + if (this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + } + + if (this.source) + { + this.source.removeEventListener('error', this._onError, true); + this.source.pause(); + this.source.src = ''; + this.source.load(); + } + BaseImageResource.prototype.dispose.call(this); + }; + + /** + * Should the base texture automatically update itself, set to true by default + * + * @member {boolean} + */ + prototypeAccessors.autoUpdate.get = function () + { + return this._autoUpdate; + }; + + prototypeAccessors.autoUpdate.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._autoUpdate) + { + this._autoUpdate = value; + + if (!this._autoUpdate && this._isAutoUpdating) + { + Ticker.shared.remove(this.update, this); + this._isAutoUpdating = false; + } + else if (this._autoUpdate && !this._isAutoUpdating) + { + Ticker.shared.add(this.update, this); + this._isAutoUpdating = true; + } + } + }; + + /** + * How many times a second to update the texture from the video. Leave at 0 to update at every render. + * A lower fps can help performance, as updating the texture at 60fps on a 30ps video may not be efficient. + * + * @member {number} + */ + prototypeAccessors.updateFPS.get = function () + { + return this._updateFPS; + }; + + prototypeAccessors.updateFPS.set = function (value) // eslint-disable-line require-jsdoc + { + if (value !== this._updateFPS) + { + this._updateFPS = value; + } + }; + + /** + * Used to auto-detect the type of resource. + * + * @static + * @param {*} source - The source object + * @param {string} extension - The extension of source, if set + * @return {boolean} `true` if video source + */ + VideoResource.test = function test (source, extension) + { + return (source instanceof HTMLVideoElement) + || VideoResource.TYPES.indexOf(extension) > -1; + }; + + Object.defineProperties( VideoResource.prototype, prototypeAccessors ); + + return VideoResource; +}(BaseImageResource)); + +/** + * List of common video file extensions supported by VideoResource. + * @constant + * @member {Array} + * @static + * @readonly + */ +VideoResource.TYPES = ['mp4', 'm4v', 'webm', 'ogg', 'ogv', 'h264', 'avi', 'mov']; + +/** + * Resource type for ImageBitmap. + * @class + * @extends PIXI.resources.BaseImageResource + * @memberof PIXI.resources + * @param {ImageBitmap} source - Image element to use + */ +var ImageBitmapResource = /*@__PURE__*/(function (BaseImageResource) { + function ImageBitmapResource () { + BaseImageResource.apply(this, arguments); + } + + if ( BaseImageResource ) ImageBitmapResource.__proto__ = BaseImageResource; + ImageBitmapResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype ); + ImageBitmapResource.prototype.constructor = ImageBitmapResource; + + ImageBitmapResource.test = function test (source) + { + return !!window.createImageBitmap && source instanceof ImageBitmap; + }; + + return ImageBitmapResource; +}(BaseImageResource)); + +INSTALLED.push( + ImageResource, + ImageBitmapResource, + CanvasResource, + VideoResource, + SVGResource, + BufferResource, + CubeResource, + ArrayResource +); + +/** + * System is a base class used for extending systems used by the {@link PIXI.Renderer} + * + * @see PIXI.Renderer#addSystem + * @class + * @memberof PIXI + */ +var System = function System(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Generic destroy methods to be overridden by the subclass + */ +System.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Resource type for DepthTexture. + * @class + * @extends PIXI.resources.BufferResource + * @memberof PIXI.resources + */ +var DepthResource = /*@__PURE__*/(function (BufferResource) { + function DepthResource () { + BufferResource.apply(this, arguments); + } + + if ( BufferResource ) DepthResource.__proto__ = BufferResource; + DepthResource.prototype = Object.create( BufferResource && BufferResource.prototype ); + DepthResource.prototype.constructor = DepthResource; + + DepthResource.prototype.upload = function upload (renderer, baseTexture, glTexture) + { + var gl = renderer.gl; + + gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha); + + if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height) + { + gl.texSubImage2D( + baseTexture.target, + 0, + 0, + 0, + baseTexture.width, + baseTexture.height, + baseTexture.format, + baseTexture.type, + this.data + ); + } + else + { + glTexture.width = baseTexture.width; + glTexture.height = baseTexture.height; + + gl.texImage2D( + baseTexture.target, + 0, + gl.DEPTH_COMPONENT16, // Needed for depth to render properly in webgl2.0 + baseTexture.width, + baseTexture.height, + 0, + baseTexture.format, + baseTexture.type, + this.data + ); + } + + return true; + }; + + return DepthResource; +}(BufferResource)); + +/** + * Frame buffer used by the BaseRenderTexture + * + * @class + * @memberof PIXI + */ +var Framebuffer = function Framebuffer(width, height) +{ + this.width = Math.ceil(width || 100); + this.height = Math.ceil(height || 100); + + this.stencil = false; + this.depth = false; + + this.dirtyId = 0; + this.dirtyFormat = 0; + this.dirtySize = 0; + + this.depthTexture = null; + this.colorTextures = []; + + this.glFramebuffers = {}; + + this.disposeRunner = new Runner('disposeFramebuffer', 2); +}; + +var prototypeAccessors$1$2 = { colorTexture: { configurable: true } }; + +/** + * Reference to the colorTexture. + * + * @member {PIXI.Texture[]} + * @readonly + */ +prototypeAccessors$1$2.colorTexture.get = function () +{ + return this.colorTextures[0]; +}; + +/** + * Add texture to the colorTexture array + * + * @param {number} [index=0] - Index of the array to add the texture to + * @param {PIXI.Texture} [texture] - Texture to add to the array + */ +Framebuffer.prototype.addColorTexture = function addColorTexture (index, texture) +{ + if ( index === void 0 ) index = 0; + + // TODO add some validation to the texture - same width / height etc? + this.colorTextures[index] = texture || new BaseTexture(null, { scaleMode: 0, + resolution: 1, + mipmap: false, + width: this.width, + height: this.height });// || new Texture(); + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Add a depth texture to the frame buffer + * + * @param {PIXI.Texture} [texture] - Texture to add + */ +Framebuffer.prototype.addDepthTexture = function addDepthTexture (texture) +{ + /* eslint-disable max-len */ + this.depthTexture = texture || new BaseTexture(new DepthResource(null, { width: this.width, height: this.height }), { scaleMode: 0, + resolution: 1, + width: this.width, + height: this.height, + mipmap: false, + format: FORMATS.DEPTH_COMPONENT, + type: TYPES.UNSIGNED_SHORT });// UNSIGNED_SHORT; + /* eslint-disable max-len */ + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable depth on the frame buffer + */ +Framebuffer.prototype.enableDepth = function enableDepth () +{ + this.depth = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Enable stencil on the frame buffer + */ +Framebuffer.prototype.enableStencil = function enableStencil () +{ + this.stencil = true; + + this.dirtyId++; + this.dirtyFormat++; + + return this; +}; + +/** + * Resize the frame buffer + * + * @param {number} width - Width of the frame buffer to resize to + * @param {number} height - Height of the frame buffer to resize to + */ +Framebuffer.prototype.resize = function resize (width, height) +{ + width = Math.ceil(width); + height = Math.ceil(height); + + if (width === this.width && height === this.height) { return; } + + this.width = width; + this.height = height; + + this.dirtyId++; + this.dirtySize++; + + for (var i = 0; i < this.colorTextures.length; i++) + { + var texture = this.colorTextures[i]; + var resolution = texture.resolution; + + // take into acount the fact the texture may have a different resolution.. + texture.setSize(width / resolution, height / resolution); + } + + if (this.depthTexture) + { + var resolution$1 = this.depthTexture.resolution; + + this.depthTexture.setSize(width / resolution$1, height / resolution$1); + } +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Framebuffer.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +Object.defineProperties( Framebuffer.prototype, prototypeAccessors$1$2 ); + +/** + * A BaseRenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a BaseRenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * A BaseRenderTexture takes a snapshot of any Display Object given to its render method. The position + * and rotation of the given Display Objects is ignored. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 800, height: 600 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 100, height: 100 }); + * let renderTexture = new PIXI.RenderTexture(baseRenderTexture); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.BaseTexture + * @memberof PIXI + */ +var BaseRenderTexture = /*@__PURE__*/(function (BaseTexture) { + function BaseRenderTexture(options) + { + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + // Backward compatibility of signature + var width$1 = arguments[0]; + var height$1 = arguments[1]; + var scaleMode = arguments[2]; + var resolution = arguments[3]; + + options = { width: width$1, height: height$1, scaleMode: scaleMode, resolution: resolution }; + /* eslint-enable prefer-rest-params */ + } + + BaseTexture.call(this, null, options); + + var ref = options || {}; + var width = ref.width; + var height = ref.height; + + // Set defaults + this.mipmap = false; + this.width = Math.ceil(width) || 100; + this.height = Math.ceil(height) || 100; + this.valid = true; + + /** + * A reference to the canvas render target (we only need one as this can be shared across renderers) + * + * @protected + * @member {object} + */ + this._canvasRenderTarget = null; + + this.clearColor = [0, 0, 0, 0]; + + this.framebuffer = new Framebuffer(this.width * this.resolution, this.height * this.resolution) + .addColorTexture(0, this); + + // TODO - could this be added the systems? + + /** + * The data structure for the stencil masks. + * + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + + /** + * The data structure for the filters. + * + * @member {PIXI.Graphics[]} + */ + this.filterStack = [{}]; + } + + if ( BaseTexture ) BaseRenderTexture.__proto__ = BaseTexture; + BaseRenderTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype ); + BaseRenderTexture.prototype.constructor = BaseRenderTexture; + + /** + * Resizes the BaseRenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + */ + BaseRenderTexture.prototype.resize = function resize (width, height) + { + width = Math.ceil(width); + height = Math.ceil(height); + this.framebuffer.resize(width * this.resolution, height * this.resolution); + }; + + /** + * Frees the texture and framebuffer from WebGL memory without destroying this texture object. + * This means you can still use the texture later which will upload it to GPU + * memory again. + * + * @fires PIXI.BaseTexture#dispose + */ + BaseRenderTexture.prototype.dispose = function dispose () + { + this.framebuffer.dispose(); + + BaseTexture.prototype.dispose.call(this); + }; + + /** + * Destroys this texture. + * + */ + BaseRenderTexture.prototype.destroy = function destroy () + { + BaseTexture.prototype.destroy.call(this, true); + + this.framebuffer = null; + }; + + return BaseRenderTexture; +}(BaseTexture)); + +/** + * Stores a texture's frame in UV coordinates, in + * which everything lies in the rectangle `[(0,0), (1,0), + * (1,1), (0,1)]`. + * + * | Corner | Coordinates | + * |--------------|-------------| + * | Top-Left | `(x0,y0)` | + * | Top-Right | `(x1,y1)` | + * | Bottom-Right | `(x2,y2)` | + * | Bottom-Left | `(x3,y3)` | + * + * @class + * @protected + * @memberof PIXI + */ +var TextureUvs = function TextureUvs() +{ + /** + * X-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.x0 = 0; + + /** + * Y-component of top-left corner `(x0,y0)`. + * + * @member {number} + */ + this.y0 = 0; + + /** + * X-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.x1 = 1; + + /** + * Y-component of top-right corner `(x1,y1)`. + * + * @member {number} + */ + this.y1 = 0; + + /** + * X-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.x2 = 1; + + /** + * Y-component of bottom-right corner `(x2,y2)`. + * + * @member {number} + */ + this.y2 = 1; + + /** + * X-component of bottom-left corner `(x3,y3)`. + * + * @member {number} + */ + this.x3 = 0; + + /** + * Y-component of bottom-right corner `(x3,y3)`. + * + * @member {number} + */ + this.y3 = 1; + + this.uvsFloat32 = new Float32Array(8); +}; + +/** + * Sets the texture Uvs based on the given frame information. + * + * @protected + * @param {PIXI.Rectangle} frame - The frame of the texture + * @param {PIXI.Rectangle} baseFrame - The base frame of the texture + * @param {number} rotate - Rotation of frame, see {@link PIXI.GroupD8} + */ +TextureUvs.prototype.set = function set (frame, baseFrame, rotate) +{ + var tw = baseFrame.width; + var th = baseFrame.height; + + if (rotate) + { + // width and height div 2 div baseFrame size + var w2 = frame.width / 2 / tw; + var h2 = frame.height / 2 / th; + + // coordinates of center + var cX = (frame.x / tw) + w2; + var cY = (frame.y / th) + h2; + + rotate = GroupD8.add(rotate, GroupD8.NW); // NW is top-left corner + this.x0 = cX + (w2 * GroupD8.uX(rotate)); + this.y0 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); // rotate 90 degrees clockwise + this.x1 = cX + (w2 * GroupD8.uX(rotate)); + this.y1 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x2 = cX + (w2 * GroupD8.uX(rotate)); + this.y2 = cY + (h2 * GroupD8.uY(rotate)); + + rotate = GroupD8.add(rotate, 2); + this.x3 = cX + (w2 * GroupD8.uX(rotate)); + this.y3 = cY + (h2 * GroupD8.uY(rotate)); + } + else + { + this.x0 = frame.x / tw; + this.y0 = frame.y / th; + + this.x1 = (frame.x + frame.width) / tw; + this.y1 = frame.y / th; + + this.x2 = (frame.x + frame.width) / tw; + this.y2 = (frame.y + frame.height) / th; + + this.x3 = frame.x / tw; + this.y3 = (frame.y + frame.height) / th; + } + + this.uvsFloat32[0] = this.x0; + this.uvsFloat32[1] = this.y0; + this.uvsFloat32[2] = this.x1; + this.uvsFloat32[3] = this.y1; + this.uvsFloat32[4] = this.x2; + this.uvsFloat32[5] = this.y2; + this.uvsFloat32[6] = this.x3; + this.uvsFloat32[7] = this.y3; +}; + +var DEFAULT_UVS = new TextureUvs(); + +/** + * A texture stores the information that represents an image or part of an image. + * + * It cannot be added to the display list directly; instead use it as the texture for a Sprite. + * If no frame is provided for a texture, then the whole image is used. + * + * You can directly create a texture from an image and then reuse it multiple times like this : + * + * ```js + * let texture = PIXI.Texture.from('assets/image.png'); + * let sprite1 = new PIXI.Sprite(texture); + * let sprite2 = new PIXI.Sprite(texture); + * ``` + * + * If you didnt pass the texture frame to constructor, it enables `noFrame` mode: + * it subscribes on baseTexture events, it automatically resizes at the same time as baseTexture. + * + * Textures made from SVGs, loaded or not, cannot be used before the file finishes processing. + * You can check for this by checking the sprite's _textureID property. + * ```js + * var texture = PIXI.Texture.from('assets/image.svg'); + * var sprite1 = new PIXI.Sprite(texture); + * //sprite1._textureID should not be undefined if the texture has finished processing the SVG file + * ``` + * You can use a ticker or rAF to ensure your sprites load the finished textures after processing. See issue #3068. + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var Texture = /*@__PURE__*/(function (EventEmitter) { + function Texture(baseTexture, frame, orig, trim, rotate, anchor) + { + EventEmitter.call(this); + + /** + * Does this Texture have any frame data assigned to it? + * + * This mode is enabled automatically if no frame was passed inside constructor. + * + * In this mode texture is subscribed to baseTexture events, and fires `update` on any change. + * + * Beware, after loading or resize of baseTexture event can fired two times! + * If you want more control, subscribe on baseTexture itself. + * + * ```js + * texture.on('update', () => {}); + * ``` + * + * Any assignment of `frame` switches off `noFrame` mode. + * + * @member {boolean} + */ + this.noFrame = false; + + if (!frame) + { + this.noFrame = true; + frame = new Rectangle(0, 0, 1, 1); + } + + if (baseTexture instanceof Texture) + { + baseTexture = baseTexture.baseTexture; + } + + /** + * The base texture that this texture uses. + * + * @member {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering, + * irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases) + * + * @member {PIXI.Rectangle} + */ + this._frame = frame; + + /** + * This is the trimmed area of original texture, before it was put in atlas + * Please call `updateUvs()` after you change coordinates of `trim` manually. + * + * @member {PIXI.Rectangle} + */ + this.trim = trim; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = false; + + /** + * This will let a renderer know that a texture has been updated (used mainly for WebGL uv updates) + * + * @member {boolean} + */ + this.requiresUpdate = false; + + /** + * The WebGL UV data cache. Can be used as quad UV + * + * @member {PIXI.TextureUvs} + * @protected + */ + this._uvs = DEFAULT_UVS; + + /** + * Default TextureMatrix instance for this texture + * By default that object is not created because its heavy + * + * @member {PIXI.TextureMatrix} + */ + this.uvMatrix = null; + + /** + * This is the area of original texture, before it was put in atlas + * + * @member {PIXI.Rectangle} + */ + this.orig = orig || frame;// new Rectangle(0, 0, 1, 1); + + this._rotate = Number(rotate || 0); + + if (rotate === true) + { + // this is old texturepacker legacy, some games/libraries are passing "true" for rotated textures + this._rotate = 2; + } + else if (this._rotate % 2 !== 0) + { + throw new Error('attempt to use diamond-shaped UVs. If you are sure, set rotation manually'); + } + + /** + * Anchor point that is used as default if sprite is created with this texture. + * Changing the `defaultAnchor` at a later point of time will not update Sprite's anchor point. + * @member {PIXI.Point} + * @default {0,0} + */ + this.defaultAnchor = anchor ? new Point(anchor.x, anchor.y) : new Point(0, 0); + + /** + * Update ID is observed by sprites and TextureMatrix instances. + * Call updateUvs() to increment it. + * + * @member {number} + * @protected + */ + + this._updateID = 0; + + /** + * The ids under which this Texture has been added to the texture cache. This is + * automatically set as long as Texture.addToCache is used, but may not be set if a + * Texture is added directly to the TextureCache array. + * + * @member {string[]} + */ + this.textureCacheIds = []; + + if (!baseTexture.valid) + { + baseTexture.once('loaded', this.onBaseTextureUpdated, this); + } + else if (this.noFrame) + { + // if there is no frame we should monitor for any base texture changes.. + if (baseTexture.valid) + { + this.onBaseTextureUpdated(baseTexture); + } + } + else + { + this.frame = frame; + } + + if (this.noFrame) + { + baseTexture.on('update', this.onBaseTextureUpdated, this); + } + } + + if ( EventEmitter ) Texture.__proto__ = EventEmitter; + Texture.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + Texture.prototype.constructor = Texture; + + var prototypeAccessors = { resolution: { configurable: true },frame: { configurable: true },rotate: { configurable: true },width: { configurable: true },height: { configurable: true } }; + + /** + * Updates this texture on the gpu. + * + * Calls the TextureResource update. + * + * If you adjusted `frame` manually, please call `updateUvs()` instead. + * + */ + Texture.prototype.update = function update () + { + if (this.baseTexture.resource) + { + this.baseTexture.resource.update(); + } + }; + + /** + * Called when the base texture is updated + * + * @protected + * @param {PIXI.BaseTexture} baseTexture - The base texture. + */ + Texture.prototype.onBaseTextureUpdated = function onBaseTextureUpdated (baseTexture) + { + if (this.noFrame) + { + if (!this.baseTexture.valid) + { + return; + } + + this._frame.width = baseTexture.width; + this._frame.height = baseTexture.height; + this.valid = true; + this.updateUvs(); + } + else + { + // TODO this code looks confusing.. boo to abusing getters and setters! + // if user gave us frame that has bigger size than resized texture it can be a problem + this.frame = this._frame; + } + + this.emit('update', this); + }; + + /** + * Destroys this texture + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ + Texture.prototype.destroy = function destroy (destroyBase) + { + if (this.baseTexture) + { + if (destroyBase) + { + var ref = this.baseTexture; + var resource = ref.resource; + + // delete the texture if it exists in the texture cache.. + // this only needs to be removed if the base texture is actually destroyed too.. + if (resource && TextureCache[resource.url]) + { + Texture.removeFromCache(resource.url); + } + + this.baseTexture.destroy(); + } + + this.baseTexture.off('update', this.onBaseTextureUpdated, this); + + this.baseTexture = null; + } + + this._frame = null; + this._uvs = null; + this.trim = null; + this.orig = null; + + this.valid = false; + + Texture.removeFromCache(this); + this.textureCacheIds = null; + }; + + /** + * Creates a new texture object that acts the same as this one. + * + * @return {PIXI.Texture} The new texture + */ + Texture.prototype.clone = function clone () + { + return new Texture(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor); + }; + + /** + * Updates the internal WebGL UV cache. Use it after you change `frame` or `trim` of the texture. + * Call it after changing the frame + */ + Texture.prototype.updateUvs = function updateUvs () + { + if (this._uvs === DEFAULT_UVS) + { + this._uvs = new TextureUvs(); + } + + this._uvs.set(this._frame, this.baseTexture, this.rotate); + + this._updateID++; + }; + + /** + * Helper function that creates a new Texture based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|PIXI.BaseTexture} source + * Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The newly created texture + */ + Texture.from = function from (source, options) + { + if ( options === void 0 ) options = {}; + + var cacheId = null; + + if (typeof source === 'string') + { + cacheId = source; + } + else + { + if (!source._pixiId) + { + source._pixiId = "pixiid_" + (uid()); + } + + cacheId = source._pixiId; + } + + var texture = TextureCache[cacheId]; + + if (!texture) + { + if (!options.resolution) + { + options.resolution = getResolutionOfUrl(source); + } + + texture = new Texture(new BaseTexture(source, options)); + texture.baseTexture.cacheId = cacheId; + + BaseTexture.addToCache(texture.baseTexture, cacheId); + Texture.addToCache(texture, cacheId); + } + + // lets assume its a base texture! + return texture; + }; + + /** + * Create a new Texture with a BufferResource from a Float32Array. + * RGBA values are floats from 0 to 1. + * @static + * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data + * is provided, a new Float32Array is created. + * @param {number} width - Width of the resource + * @param {number} height - Height of the resource + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Texture} The resulting new BaseTexture + */ + Texture.fromBuffer = function fromBuffer (buffer, width, height, options) + { + return new Texture(BaseTexture.fromBuffer(buffer, width, height, options)); + }; + + /** + * Create a texture from a source and add to the cache. + * + * @static + * @param {HTMLImageElement|HTMLCanvasElement} source - The input source. + * @param {String} imageUrl - File name of texture, for cache and resolving resolution. + * @param {String} [name] - Human readable name for the texture cache. If no name is + * specified, only `imageUrl` will be used as the cache ID. + * @return {PIXI.Texture} Output texture + */ + Texture.fromLoader = function fromLoader (source, imageUrl, name) + { + var resource = new ImageResource(source); + + resource.url = imageUrl; + + var baseTexture = new BaseTexture(resource, { + scaleMode: settings.SCALE_MODE, + resolution: getResolutionOfUrl(imageUrl), + }); + + var texture = new Texture(baseTexture); + + // No name, use imageUrl instead + if (!name) + { + name = imageUrl; + } + + // lets also add the frame to pixi's global cache for 'fromLoader' function + BaseTexture.addToCache(texture.baseTexture, name); + Texture.addToCache(texture, name); + + // also add references by url if they are different. + if (name !== imageUrl) + { + BaseTexture.addToCache(texture.baseTexture, imageUrl); + Texture.addToCache(texture, imageUrl); + } + + return texture; + }; + + /** + * Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object. + * + * @static + * @param {PIXI.Texture} texture - The Texture to add to the cache. + * @param {string} id - The id that the Texture will be stored against. + */ + Texture.addToCache = function addToCache (texture, id) + { + if (id) + { + if (texture.textureCacheIds.indexOf(id) === -1) + { + texture.textureCacheIds.push(id); + } + + if (TextureCache[id]) + { + // eslint-disable-next-line no-console + console.warn(("Texture added to the cache with an id [" + id + "] that already had an entry")); + } + + TextureCache[id] = texture; + } + }; + + /** + * Remove a Texture from the global TextureCache. + * + * @static + * @param {string|PIXI.Texture} texture - id of a Texture to be removed, or a Texture instance itself + * @return {PIXI.Texture|null} The Texture that was removed + */ + Texture.removeFromCache = function removeFromCache (texture) + { + if (typeof texture === 'string') + { + var textureFromCache = TextureCache[texture]; + + if (textureFromCache) + { + var index = textureFromCache.textureCacheIds.indexOf(texture); + + if (index > -1) + { + textureFromCache.textureCacheIds.splice(index, 1); + } + + delete TextureCache[texture]; + + return textureFromCache; + } + } + else if (texture && texture.textureCacheIds) + { + for (var i = 0; i < texture.textureCacheIds.length; ++i) + { + // Check that texture matches the one being passed in before deleting it from the cache. + if (TextureCache[texture.textureCacheIds[i]] === texture) + { + delete TextureCache[texture.textureCacheIds[i]]; + } + } + + texture.textureCacheIds.length = 0; + + return texture; + } + + return null; + }; + + /** + * Returns resolution of baseTexture + * + * @member {number} + * @readonly + */ + prototypeAccessors.resolution.get = function () + { + return this.baseTexture.resolution; + }; + + /** + * The frame specifies the region of the base texture that this texture uses. + * Please call `updateUvs()` after you change coordinates of `frame` manually. + * + * @member {PIXI.Rectangle} + */ + prototypeAccessors.frame.get = function () + { + return this._frame; + }; + + prototypeAccessors.frame.set = function (frame) // eslint-disable-line require-jsdoc + { + this._frame = frame; + + this.noFrame = false; + + var x = frame.x; + var y = frame.y; + var width = frame.width; + var height = frame.height; + var xNotFit = x + width > this.baseTexture.width; + var yNotFit = y + height > this.baseTexture.height; + + if (xNotFit || yNotFit) + { + var relationship = xNotFit && yNotFit ? 'and' : 'or'; + var errorX = "X: " + x + " + " + width + " = " + (x + width) + " > " + (this.baseTexture.width); + var errorY = "Y: " + y + " + " + height + " = " + (y + height) + " > " + (this.baseTexture.height); + + throw new Error('Texture Error: frame does not fit inside the base Texture dimensions: ' + + errorX + " " + relationship + " " + errorY); + } + + this.valid = width && height && this.baseTexture.valid; + + if (!this.trim && !this.rotate) + { + this.orig = frame; + } + + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * Indicates whether the texture is rotated inside the atlas + * set to 2 to compensate for texture packer rotation + * set to 6 to compensate for spine packer rotation + * can be used to rotate or mirror sprites + * See {@link PIXI.GroupD8} for explanation + * + * @member {number} + */ + prototypeAccessors.rotate.get = function () + { + return this._rotate; + }; + + prototypeAccessors.rotate.set = function (rotate) // eslint-disable-line require-jsdoc + { + this._rotate = rotate; + if (this.valid) + { + this.updateUvs(); + } + }; + + /** + * The width of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return this.orig.width; + }; + + /** + * The height of the Texture in pixels. + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return this.orig.height; + }; + + Object.defineProperties( Texture.prototype, prototypeAccessors ); + + return Texture; +}(eventemitter3)); + +function createWhiteTexture() +{ + var canvas = document.createElement('canvas'); + + canvas.width = 16; + canvas.height = 16; + + var context = canvas.getContext('2d'); + + context.fillStyle = 'white'; + context.fillRect(0, 0, 16, 16); + + return new Texture(new BaseTexture(new CanvasResource(canvas))); +} + +function removeAllHandlers(tex) +{ + tex.destroy = function _emptyDestroy() { /* empty */ }; + tex.on = function _emptyOn() { /* empty */ }; + tex.once = function _emptyOnce() { /* empty */ }; + tex.emit = function _emptyEmit() { /* empty */ }; +} + +/** + * An empty texture, used often to not have to create multiple empty textures. + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.EMPTY = new Texture(new BaseTexture()); +removeAllHandlers(Texture.EMPTY); +removeAllHandlers(Texture.EMPTY.baseTexture); + +/** + * A white texture of 16x16 size, used for graphics and other things + * Can not be destroyed. + * + * @static + * @constant + * @member {PIXI.Texture} + */ +Texture.WHITE = createWhiteTexture(); +removeAllHandlers(Texture.WHITE); +removeAllHandlers(Texture.WHITE.baseTexture); + +/** + * A RenderTexture is a special texture that allows any PixiJS display object to be rendered to it. + * + * __Hint__: All DisplayObjects (i.e. Sprites) that render to a RenderTexture should be preloaded + * otherwise black rectangles will be drawn instead. + * + * __Hint-2__: The actual memory allocation will happen on first render. + * You shouldn't create renderTextures each frame just to delete them after, try to reuse them. + * + * A RenderTexture takes a snapshot of any Display Object given to its render method. For example: + * + * ```js + * let renderer = PIXI.autoDetectRenderer(); + * let renderTexture = PIXI.RenderTexture.create(800, 600); + * let sprite = PIXI.Sprite.from("spinObj_01.png"); + * + * sprite.position.x = 800/2; + * sprite.position.y = 600/2; + * sprite.anchor.x = 0.5; + * sprite.anchor.y = 0.5; + * + * renderer.render(sprite, renderTexture); + * ``` + * + * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0 + * you can clear the transform + * + * ```js + * + * sprite.setTransform() + * + * let renderTexture = new PIXI.RenderTexture.create(100, 100); + * + * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture + * ``` + * + * @class + * @extends PIXI.Texture + * @memberof PIXI + */ +var RenderTexture = /*@__PURE__*/(function (Texture) { + function RenderTexture(baseRenderTexture, frame) + { + // support for legacy.. + var _legacyRenderer = null; + + if (!(baseRenderTexture instanceof BaseRenderTexture)) + { + /* eslint-disable prefer-rest-params, no-console */ + var width = arguments[1]; + var height = arguments[2]; + var scaleMode = arguments[3]; + var resolution = arguments[4]; + + // we have an old render texture.. + console.warn(("Please use RenderTexture.create(" + width + ", " + height + ") instead of the ctor directly.")); + _legacyRenderer = arguments[0]; + /* eslint-enable prefer-rest-params, no-console */ + + frame = null; + baseRenderTexture = new BaseRenderTexture({ + width: width, + height: height, + scaleMode: scaleMode, + resolution: resolution, + }); + } + + /** + * The base texture object that this texture uses + * + * @member {PIXI.BaseTexture} + */ + Texture.call(this, baseRenderTexture, frame); + + this.legacyRenderer = _legacyRenderer; + + /** + * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered. + * + * @member {boolean} + */ + this.valid = true; + + /** + * Stores `sourceFrame` when this texture is inside current filter stack. + * You can read it inside filters. + * + * @readonly + * @member {PIXI.Rectangle} + */ + this.filterFrame = null; + + /** + * The key for pooled texture of FilterSystem + * @protected + * @member {string} + */ + this.filterPoolKey = null; + + this.updateUvs(); + } + + if ( Texture ) RenderTexture.__proto__ = Texture; + RenderTexture.prototype = Object.create( Texture && Texture.prototype ); + RenderTexture.prototype.constructor = RenderTexture; + + /** + * Resizes the RenderTexture. + * + * @param {number} width - The width to resize to. + * @param {number} height - The height to resize to. + * @param {boolean} [resizeBaseTexture=true] - Should the baseTexture.width and height values be resized as well? + */ + RenderTexture.prototype.resize = function resize (width, height, resizeBaseTexture) + { + if ( resizeBaseTexture === void 0 ) resizeBaseTexture = true; + + width = Math.ceil(width); + height = Math.ceil(height); + + // TODO - could be not required.. + this.valid = (width > 0 && height > 0); + + this._frame.width = this.orig.width = width; + this._frame.height = this.orig.height = height; + + if (resizeBaseTexture) + { + this.baseTexture.resize(width, height); + } + + this.updateUvs(); + }; + + /** + * Changes the resolution of baseTexture, but does not change framebuffer size. + * + * @param {number} resolution - The new resolution to apply to RenderTexture + */ + RenderTexture.prototype.setResolution = function setResolution (resolution) + { + var ref = this; + var baseTexture = ref.baseTexture; + + if (baseTexture.resolution === resolution) + { + return; + } + + baseTexture.setResolution(resolution); + this.resize(baseTexture.width, baseTexture.height, false); + }; + + /** + * A short hand way of creating a render texture. + * + * @param {object} [options] - Options + * @param {number} [options.width=100] - The width of the render texture + * @param {number} [options.height=100] - The height of the render texture + * @param {number} [options.scaleMode=PIXI.settings.SCALE_MODE] - See {@link PIXI.SCALE_MODES} for possible values + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the texture being generated + * @return {PIXI.RenderTexture} The new render texture + */ + RenderTexture.create = function create (options) + { + // fallback, old-style: create(width, height, scaleMode, resolution) + if (typeof options === 'number') + { + /* eslint-disable prefer-rest-params */ + options = { + width: options, + height: arguments[1], + scaleMode: arguments[2], + resolution: arguments[3], + }; + /* eslint-enable prefer-rest-params */ + } + + return new RenderTexture(new BaseRenderTexture(options)); + }; + + return RenderTexture; +}(Texture)); + +/** + * Experimental! + * + * Texture pool, used by FilterSystem and plugins + * Stores collection of temporary pow2 or screen-sized renderTextures + * + * If you use custom RenderTexturePool for your filters, you can use methods + * `getFilterTexture` and `returnFilterTexture` same as in + * + * @class + * @memberof PIXI + */ +var RenderTexturePool = function RenderTexturePool(textureOptions) +{ + this.texturePool = {}; + this.textureOptions = textureOptions || {}; + /** + * Allow renderTextures of the same size as screen, not just pow2 + * + * Automatically sets to true after `setScreenSize` + * + * @member {boolean} + * @default false + */ + this.enableFullScreen = false; + + this._pixelsWidth = 0; + this._pixelsHeight = 0; +}; + +/** + * creates of texture with params that were specified in pool constructor + * + * @param {number} realWidth width of texture in pixels + * @param {number} realHeight height of texture in pixels + * @returns {RenderTexture} + */ +RenderTexturePool.prototype.createTexture = function createTexture (realWidth, realHeight) +{ + var baseRenderTexture = new BaseRenderTexture(Object.assign({ + width: realWidth, + height: realHeight, + resolution: 1, + }, this.textureOptions)); + + return new RenderTexture(baseRenderTexture); +}; + +/** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ +RenderTexturePool.prototype.getOptimalTexture = function getOptimalTexture (minWidth, minHeight, resolution) +{ + if ( resolution === void 0 ) resolution = 1; + + var key = RenderTexturePool.SCREEN_KEY; + + minWidth *= resolution; + minHeight *= resolution; + + if (!this.enableFullScreen || minWidth !== this._pixelsWidth || minHeight !== this._pixelsHeight) + { + minWidth = nextPow2(minWidth); + minHeight = nextPow2(minHeight); + key = ((minWidth & 0xFFFF) << 16) | (minHeight & 0xFFFF); + } + + if (!this.texturePool[key]) + { + this.texturePool[key] = []; + } + + var renderTexture = this.texturePool[key].pop(); + + if (!renderTexture) + { + renderTexture = this.createTexture(minWidth, minHeight); + } + + renderTexture.filterPoolKey = key; + renderTexture.setResolution(resolution); + + return renderTexture; +}; + +/** + * Gets extra texture of the same size as input renderTexture + * + * `getFilterTexture(input, 0.5)` or `getFilterTexture(0.5, input)` + * + * @param {PIXI.RenderTexture} input renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * It overrides, it does not multiply + * @returns {PIXI.RenderTexture} + */ +RenderTexturePool.prototype.getFilterTexture = function getFilterTexture (input, resolution) +{ + var filterTexture = this.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; +}; + +/** + * Place a render texture back into the pool. + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnTexture = function returnTexture (renderTexture) +{ + var key = renderTexture.filterPoolKey; + + renderTexture.filterFrame = null; + this.texturePool[key].push(renderTexture); +}; + +/** + * Alias for returnTexture, to be compliant with FilterSystem interface + * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free + */ +RenderTexturePool.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) +{ + this.returnTexture(renderTexture); +}; + +/** + * Clears the pool + * + * @param {boolean} [destroyTextures=true] destroy all stored textures + */ +RenderTexturePool.prototype.clear = function clear (destroyTextures) +{ + destroyTextures = destroyTextures !== false; + if (destroyTextures) + { + for (var i in this.texturePool) + { + var textures = this.texturePool[i]; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + } + } + + this.texturePool = {}; +}; + +/** + * If screen size was changed, drops all screen-sized textures, + * sets new screen size, sets `enableFullScreen` to true + * + * Size is measured in pixels, `renderer.view` can be passed here, not `renderer.screen` + * + * @param {PIXI.ISize} size - Initial size of screen + */ +RenderTexturePool.prototype.setScreenSize = function setScreenSize (size) +{ + if (size.width === this._pixelsWidth + && size.height === this._pixelsHeight) + { + return; + } + + var screenKey = RenderTexturePool.SCREEN_KEY; + var textures = this.texturePool[screenKey]; + + this.enableFullScreen = size.width > 0 && size.height > 0; + + if (textures) + { + for (var j = 0; j < textures.length; j++) + { + textures[j].destroy(true); + } + } + this.texturePool[screenKey] = []; + + this._pixelsWidth = size.width; + this._pixelsHeight = size.height; +}; + +/** + * Key that is used to store fullscreen renderTextures in a pool + * + * @static + * @const {string} + */ +RenderTexturePool.SCREEN_KEY = 'screen'; + +/* eslint-disable max-len */ + +/** + * Holds the information for a single attribute structure required to render geometry. + * + * This does not contain the actual data, but instead has a buffer id that maps to a {@link PIXI.Buffer} + * This can include anything from positions, uvs, normals, colors etc. + * + * @class + * @memberof PIXI + */ +var Attribute = function Attribute(buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( type === void 0 ) type = 5126; + + this.buffer = buffer; + this.size = size; + this.normalized = normalized; + this.type = type; + this.stride = stride; + this.start = start; + this.instance = instance; +}; + +/** + * Destroys the Attribute. + */ +Attribute.prototype.destroy = function destroy () +{ + this.buffer = null; +}; + +/** + * Helper function that creates an Attribute based on the information provided + * + * @static + * @param {string} buffer the id of the buffer that this attribute will look for + * @param {Number} [size=2] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 + * @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) + * @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) + * @param {Boolean} [normalized=false] should the data be normalized. + * + * @returns {PIXI.Attribute} A new {@link PIXI.Attribute} based on the information provided + */ +Attribute.from = function from (buffer, size, normalized, type, stride) +{ + return new Attribute(buffer, size, normalized, type, stride); +}; + +var UID = 0; +/* eslint-disable max-len */ + +/** + * A wrapper for data so that it can be used and uploaded by WebGL + * + * @class + * @memberof PIXI + */ +var Buffer$1 = function Buffer(data, _static, index) +{ + if ( _static === void 0 ) _static = true; + if ( index === void 0 ) index = false; + + /** + * The data in the buffer, as a typed array + * + * @member {ArrayBuffer| SharedArrayBuffer|ArrayBufferView} + */ + this.data = data || new Float32Array(1); + + /** + * A map of renderer IDs to webgl buffer + * + * @private + * @member {object} + */ + this._glBuffers = {}; + + this._updateID = 0; + + this.index = index; + + this.static = _static; + + this.id = UID++; + + this.disposeRunner = new Runner('disposeBuffer', 2); +}; + +// TODO could explore flagging only a partial upload? +/** + * flags this buffer as requiring an upload to the GPU + * @param {ArrayBuffer|SharedArrayBuffer|ArrayBufferView} [data] the data to update in the buffer. + */ +Buffer$1.prototype.update = function update (data) +{ + this.data = data || this.data; + this._updateID++; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Buffer$1.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the buffer + */ +Buffer$1.prototype.destroy = function destroy () +{ + this.dispose(); + + this.data = null; +}; + +/** + * Helper function that creates a buffer based on an array or TypedArray + * + * @static + * @param {ArrayBufferView | number[]} data the TypedArray that the buffer will store. If this is a regular Array it will be converted to a Float32Array. + * @return {PIXI.Buffer} A new Buffer based on the data provided. + */ +Buffer$1.from = function from (data) +{ + if (data instanceof Array) + { + data = new Float32Array(data); + } + + return new Buffer$1(data); +}; + +function getBufferType(array) +{ + if (array.BYTES_PER_ELEMENT === 4) + { + if (array instanceof Float32Array) + { + return 'Float32Array'; + } + else if (array instanceof Uint32Array) + { + return 'Uint32Array'; + } + + return 'Int32Array'; + } + else if (array.BYTES_PER_ELEMENT === 2) + { + if (array instanceof Uint16Array) + { + return 'Uint16Array'; + } + } + else if (array.BYTES_PER_ELEMENT === 1) + { + if (array instanceof Uint8Array) + { + return 'Uint8Array'; + } + } + + // TODO map out the rest of the array elements! + return null; +} + +/* eslint-disable object-shorthand */ +var map$2 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, +}; + +function interleaveTypedArrays(arrays, sizes) +{ + var outSize = 0; + var stride = 0; + var views = {}; + + for (var i = 0; i < arrays.length; i++) + { + stride += sizes[i]; + outSize += arrays[i].length; + } + + var buffer = new ArrayBuffer(outSize * 4); + + var out = null; + var littleOffset = 0; + + for (var i$1 = 0; i$1 < arrays.length; i$1++) + { + var size = sizes[i$1]; + var array = arrays[i$1]; + + var type = getBufferType(array); + + if (!views[type]) + { + views[type] = new map$2[type](buffer); + } + + out = views[type]; + + for (var j = 0; j < array.length; j++) + { + var indexStart = ((j / size | 0) * stride) + littleOffset; + var index = j % size; + + out[indexStart + index] = array[j]; + } + + littleOffset += size; + } + + return new Float32Array(buffer); +} + +var byteSizeMap = { 5126: 4, 5123: 2, 5121: 1 }; +var UID$1 = 0; + +/* eslint-disable object-shorthand */ +var map$1$1 = { + Float32Array: Float32Array, + Uint32Array: Uint32Array, + Int32Array: Int32Array, + Uint8Array: Uint8Array, + Uint16Array: Uint16Array, +}; + +/* eslint-disable max-len */ + +/** + * The Geometry represents a model. It consists of two components: + * - GeometryStyle - The structure of the model such as the attributes layout + * - GeometryData - the data of the model - this consists of buffers. + * This can include anything from positions, uvs, normals, colors etc. + * + * Geometry can be defined without passing in a style or data if required (thats how I prefer!) + * + * ```js + * let geometry = new PIXI.Geometry(); + * + * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2); + * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1],2) + * geometry.addIndex([0,1,2,1,3,2]) + * + * ``` + * @class + * @memberof PIXI + */ +var Geometry = function Geometry(buffers, attributes) +{ + if ( buffers === void 0 ) buffers = []; + if ( attributes === void 0 ) attributes = {}; + + this.buffers = buffers; + + this.indexBuffer = null; + + this.attributes = attributes; + + /** + * A map of renderer IDs to webgl VAOs + * + * @protected + * @type {object} + */ + this.glVertexArrayObjects = {}; + + this.id = UID$1++; + + this.instanced = false; + + /** + * Number of instances in this geometry, pass it to `GeometrySystem.draw()` + * @member {number} + * @default 1 + */ + this.instanceCount = 1; + + this.disposeRunner = new Runner('disposeGeometry', 2); + + /** + * Count of existing (not destroyed) meshes that reference this geometry + * @member {number} + */ + this.refCount = 0; +}; + +/** +* +* Adds an attribute to the geometry +* +* @param {String} id - the name of the attribute (matching up to a shader) +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it. +* @param {Number} [size=0] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2 +* @param {Boolean} [normalized=false] should the data be normalized. +* @param {Number} [type=PIXI.TYPES.FLOAT] what type of number is the attribute. Check {PIXI.TYPES} to see the ones available +* @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data) +* @param {Number} [start=0] How far into the array to start reading values (used for interleaving data) +* +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addAttribute = function addAttribute (id, buffer, size, normalized, type, stride, start, instance) +{ + if ( normalized === void 0 ) normalized = false; + if ( instance === void 0 ) instance = false; + + if (!buffer) + { + throw new Error('You must pass a buffer when creating an attribute'); + } + + // check if this is a buffer! + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Float32Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + var ids = id.split('|'); + + if (ids.length > 1) + { + for (var i = 0; i < ids.length; i++) + { + this.addAttribute(ids[i], buffer, size, normalized, type); + } + + return this; + } + + var bufferIndex = this.buffers.indexOf(buffer); + + if (bufferIndex === -1) + { + this.buffers.push(buffer); + bufferIndex = this.buffers.length - 1; + } + + this.attributes[id] = new Attribute(bufferIndex, size, normalized, type, stride, start, instance); + + // assuming that if there is instanced data then this will be drawn with instancing! + this.instanced = this.instanced || instance; + + return this; +}; + +/** + * returns the requested attribute + * + * @param {String} id the name of the attribute required + * @return {PIXI.Attribute} the attribute requested. + */ +Geometry.prototype.getAttribute = function getAttribute (id) +{ + return this.attributes[id]; +}; + +/** + * returns the requested buffer + * + * @param {String} id the name of the buffer required + * @return {PIXI.Buffer} the buffer requested. + */ +Geometry.prototype.getBuffer = function getBuffer (id) +{ + return this.buffers[this.getAttribute(id).buffer]; +}; + +/** +* +* Adds an index buffer to the geometry +* The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer. +* +* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it. +* @return {PIXI.Geometry} returns self, useful for chaining. +*/ +Geometry.prototype.addIndex = function addIndex (buffer) +{ + if (!buffer.data) + { + // its an array! + if (buffer instanceof Array) + { + buffer = new Uint16Array(buffer); + } + + buffer = new Buffer$1(buffer); + } + + buffer.index = true; + this.indexBuffer = buffer; + + if (this.buffers.indexOf(buffer) === -1) + { + this.buffers.push(buffer); + } + + return this; +}; + +/** + * returns the index buffer + * + * @return {PIXI.Buffer} the index buffer. + */ +Geometry.prototype.getIndex = function getIndex () +{ + return this.indexBuffer; +}; + +/** + * this function modifies the structure so that all current attributes become interleaved into a single buffer + * This can be useful if your model remains static as it offers a little performance boost + * + * @return {PIXI.Geometry} returns self, useful for chaining. + */ +Geometry.prototype.interleave = function interleave () +{ + // a simple check to see if buffers are already interleaved.. + if (this.buffers.length === 1 || (this.buffers.length === 2 && this.indexBuffer)) { return this; } + + // assume already that no buffers are interleaved + var arrays = []; + var sizes = []; + var interleavedBuffer = new Buffer$1(); + var i; + + for (i in this.attributes) + { + var attribute = this.attributes[i]; + + var buffer = this.buffers[attribute.buffer]; + + arrays.push(buffer.data); + + sizes.push((attribute.size * byteSizeMap[attribute.type]) / 4); + + attribute.buffer = 0; + } + + interleavedBuffer.data = interleaveTypedArrays(arrays, sizes); + + for (i = 0; i < this.buffers.length; i++) + { + if (this.buffers[i] !== this.indexBuffer) + { + this.buffers[i].destroy(); + } + } + + this.buffers = [interleavedBuffer]; + + if (this.indexBuffer) + { + this.buffers.push(this.indexBuffer); + } + + return this; +}; + +Geometry.prototype.getSize = function getSize () +{ + for (var i in this.attributes) + { + var attribute = this.attributes[i]; + var buffer = this.buffers[attribute.buffer]; + + return buffer.data.length / ((attribute.stride / 4) || attribute.size); + } + + return 0; +}; + +/** + * disposes WebGL resources that are connected to this geometry + */ +Geometry.prototype.dispose = function dispose () +{ + this.disposeRunner.run(this, false); +}; + +/** + * Destroys the geometry. + */ +Geometry.prototype.destroy = function destroy () +{ + this.dispose(); + + this.buffers = null; + this.indexBuffer.destroy(); + + this.attributes = null; +}; + +/** + * returns a clone of the geometry + * + * @returns {PIXI.Geometry} a new clone of this geometry + */ +Geometry.prototype.clone = function clone () +{ + var geometry = new Geometry(); + + for (var i = 0; i < this.buffers.length; i++) + { + geometry.buffers[i] = new Buffer$1(this.buffers[i].data.slice()); + } + + for (var i$1 in this.attributes) + { + var attrib = this.attributes[i$1]; + + geometry.attributes[i$1] = new Attribute( + attrib.buffer, + attrib.size, + attrib.normalized, + attrib.type, + attrib.stride, + attrib.start, + attrib.instance + ); + } + + if (this.indexBuffer) + { + geometry.indexBuffer = geometry.buffers[this.buffers.indexOf(this.indexBuffer)]; + geometry.indexBuffer.index = true; + } + + return geometry; +}; + +/** + * merges an array of geometries into a new single one + * geometry attribute styles must match for this operation to work + * + * @param {PIXI.Geometry[]} geometries array of geometries to merge + * @returns {PIXI.Geometry} shiny new geometry! + */ +Geometry.merge = function merge (geometries) +{ + // todo add a geometry check! + // also a size check.. cant be too big!] + + var geometryOut = new Geometry(); + + var arrays = []; + var sizes = []; + var offsets = []; + + var geometry; + + // pass one.. get sizes.. + for (var i = 0; i < geometries.length; i++) + { + geometry = geometries[i]; + + for (var j = 0; j < geometry.buffers.length; j++) + { + sizes[j] = sizes[j] || 0; + sizes[j] += geometry.buffers[j].data.length; + offsets[j] = 0; + } + } + + // build the correct size arrays.. + for (var i$1 = 0; i$1 < geometry.buffers.length; i$1++) + { + // TODO types! + arrays[i$1] = new map$1$1[getBufferType(geometry.buffers[i$1].data)](sizes[i$1]); + geometryOut.buffers[i$1] = new Buffer$1(arrays[i$1]); + } + + // pass to set data.. + for (var i$2 = 0; i$2 < geometries.length; i$2++) + { + geometry = geometries[i$2]; + + for (var j$1 = 0; j$1 < geometry.buffers.length; j$1++) + { + arrays[j$1].set(geometry.buffers[j$1].data, offsets[j$1]); + offsets[j$1] += geometry.buffers[j$1].data.length; + } + } + + geometryOut.attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + geometryOut.indexBuffer = geometryOut.buffers[geometry.buffers.indexOf(geometry.indexBuffer)]; + geometryOut.indexBuffer.index = true; + + var offset = 0; + var stride = 0; + var offset2 = 0; + var bufferIndexToCount = 0; + + // get a buffer + for (var i$3 = 0; i$3 < geometry.buffers.length; i$3++) + { + if (geometry.buffers[i$3] !== geometry.indexBuffer) + { + bufferIndexToCount = i$3; + break; + } + } + + // figure out the stride of one buffer.. + for (var i$4 in geometry.attributes) + { + var attribute = geometry.attributes[i$4]; + + if ((attribute.buffer | 0) === bufferIndexToCount) + { + stride += ((attribute.size * byteSizeMap[attribute.type]) / 4); + } + } + + // time to off set all indexes.. + for (var i$5 = 0; i$5 < geometries.length; i$5++) + { + var indexBufferData = geometries[i$5].indexBuffer.data; + + for (var j$2 = 0; j$2 < indexBufferData.length; j$2++) + { + geometryOut.indexBuffer.data[j$2 + offset2] += offset; + } + + offset += geometry.buffers[bufferIndexToCount].data.length / (stride); + offset2 += indexBufferData.length; + } + } + + return geometryOut; +}; + +/** + * Helper class to create a quad + * + * @class + * @memberof PIXI + */ +var Quad = /*@__PURE__*/(function (Geometry) { + function Quad() + { + Geometry.call(this); + + this.addAttribute('aVertexPosition', [ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]) + .addIndex([0, 1, 3, 2]); + } + + if ( Geometry ) Quad.__proto__ = Geometry; + Quad.prototype = Object.create( Geometry && Geometry.prototype ); + Quad.prototype.constructor = Quad; + + return Quad; +}(Geometry)); + +/** + * Helper class to create a quad with uvs like in v4 + * + * @class + * @memberof PIXI + * @extends PIXI.Geometry + */ +var QuadUv = /*@__PURE__*/(function (Geometry) { + function QuadUv() + { + Geometry.call(this); + + /** + * An array of vertices + * + * @member {Float32Array} + */ + this.vertices = new Float32Array([ + -1, -1, + 1, -1, + 1, 1, + -1, 1 ]); + + /** + * The Uvs of the quad + * + * @member {Float32Array} + */ + this.uvs = new Float32Array([ + 0, 0, + 1, 0, + 1, 1, + 0, 1 ]); + + this.vertexBuffer = new Buffer$1(this.vertices); + this.uvBuffer = new Buffer$1(this.uvs); + + this.addAttribute('aVertexPosition', this.vertexBuffer) + .addAttribute('aTextureCoord', this.uvBuffer) + .addIndex([0, 1, 2, 0, 2, 3]); + } + + if ( Geometry ) QuadUv.__proto__ = Geometry; + QuadUv.prototype = Object.create( Geometry && Geometry.prototype ); + QuadUv.prototype.constructor = QuadUv; + + /** + * Maps two Rectangle to the quad. + * + * @param {PIXI.Rectangle} targetTextureFrame - the first rectangle + * @param {PIXI.Rectangle} destinationFrame - the second rectangle + * @return {PIXI.Quad} Returns itself. + */ + QuadUv.prototype.map = function map (targetTextureFrame, destinationFrame) + { + var x = 0; // destinationFrame.x / targetTextureFrame.width; + var y = 0; // destinationFrame.y / targetTextureFrame.height; + + this.uvs[0] = x; + this.uvs[1] = y; + + this.uvs[2] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[3] = y; + + this.uvs[4] = x + (destinationFrame.width / targetTextureFrame.width); + this.uvs[5] = y + (destinationFrame.height / targetTextureFrame.height); + + this.uvs[6] = x; + this.uvs[7] = y + (destinationFrame.height / targetTextureFrame.height); + + x = destinationFrame.x; + y = destinationFrame.y; + + this.vertices[0] = x; + this.vertices[1] = y; + + this.vertices[2] = x + destinationFrame.width; + this.vertices[3] = y; + + this.vertices[4] = x + destinationFrame.width; + this.vertices[5] = y + destinationFrame.height; + + this.vertices[6] = x; + this.vertices[7] = y + destinationFrame.height; + + this.invalidate(); + + return this; + }; + + /** + * legacy upload method, just marks buffers dirty + * @returns {PIXI.QuadUv} Returns itself. + */ + QuadUv.prototype.invalidate = function invalidate () + { + this.vertexBuffer._updateID++; + this.uvBuffer._updateID++; + + return this; + }; + + return QuadUv; +}(Geometry)); + +var UID$2 = 0; + +/** + * Uniform group holds uniform map and some ID's for work + * + * @class + * @memberof PIXI + */ +var UniformGroup = function UniformGroup(uniforms, _static) +{ + /** + * uniform values + * @member {object} + * @readonly + */ + this.uniforms = uniforms; + + /** + * Its a group and not a single uniforms + * @member {boolean} + * @readonly + * @default true + */ + this.group = true; + + // lets generate this when the shader ? + this.syncUniforms = {}; + + /** + * dirty version + * @protected + * @member {number} + */ + this.dirtyId = 0; + + /** + * unique id + * @protected + * @member {number} + */ + this.id = UID$2++; + + /** + * Uniforms wont be changed after creation + * @member {boolean} + */ + this.static = !!_static; +}; + +UniformGroup.prototype.update = function update () +{ + this.dirtyId++; +}; + +UniformGroup.prototype.add = function add (name, uniforms, _static) +{ + this.uniforms[name] = new UniformGroup(uniforms, _static); +}; + +UniformGroup.from = function from (uniforms, _static) +{ + return new UniformGroup(uniforms, _static); +}; + +/** + * System plugin to the renderer to manage filter states. + * + * @class + * @private + */ +var FilterState = function FilterState() +{ + this.renderTexture = null; + + /** + * Target of the filters + * We store for case when custom filter wants to know the element it was applied on + * @member {PIXI.DisplayObject} + * @private + */ + this.target = null; + + /** + * Compatibility with PixiJS v4 filters + * @member {boolean} + * @default false + * @private + */ + this.legacy = false; + + /** + * Resolution of filters + * @member {number} + * @default 1 + * @private + */ + this.resolution = 1; + + // next three fields are created only for root + // re-assigned for everything else + + /** + * Source frame + * @member {PIXI.Rectangle} + * @private + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @private + */ + this.destinationFrame = new Rectangle(); + + /** + * Collection of filters + * @member {PIXI.Filter[]} + * @private + */ + this.filters = []; +}; + +/** + * clears the state + * @private + */ +FilterState.prototype.clear = function clear () +{ + this.target = null; + this.filters = null; + this.renderTexture = null; +}; + +/** + * System plugin to the renderer to manage the filters. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var FilterSystem = /*@__PURE__*/(function (System) { + function FilterSystem(renderer) + { + System.call(this, renderer); + + /** + * List of filters for the FilterSystem + * @member {Object[]} + * @readonly + */ + this.defaultFilterStack = [{}]; + + /** + * stores a bunch of PO2 textures used for filtering + * @member {Object} + */ + this.texturePool = new RenderTexturePool(); + + this.texturePool.setScreenSize(renderer.view); + + /** + * a pool for storing filter states, save us creating new ones each tick + * @member {Object[]} + */ + this.statePool = []; + + /** + * A very simple geometry used when drawing a filter effect to the screen + * @member {PIXI.Quad} + */ + this.quad = new Quad(); + + /** + * Quad UVs + * @member {PIXI.QuadUv} + */ + this.quadUv = new QuadUv(); + + /** + * Temporary rect for maths + * @type {PIXI.Rectangle} + */ + this.tempRect = new Rectangle(); + + /** + * Active state + * @member {object} + */ + this.activeState = {}; + + /** + * This uniform group is attached to filter uniforms when used + * @member {PIXI.UniformGroup} + * @property {PIXI.Rectangle} outputFrame + * @property {Float32Array} inputSize + * @property {Float32Array} inputPixel + * @property {Float32Array} inputClamp + * @property {Number} resolution + * @property {Float32Array} filterArea + * @property {Fload32Array} filterClamp + */ + this.globalUniforms = new UniformGroup({ + outputFrame: this.tempRect, + inputSize: new Float32Array(4), + inputPixel: new Float32Array(4), + inputClamp: new Float32Array(4), + resolution: 1, + + // legacy variables + filterArea: new Float32Array(4), + filterClamp: new Float32Array(4), + }, true); + + this._pixelsWidth = renderer.view.width; + this._pixelsHeight = renderer.view.height; + } + + if ( System ) FilterSystem.__proto__ = System; + FilterSystem.prototype = Object.create( System && System.prototype ); + FilterSystem.prototype.constructor = FilterSystem; + + /** + * Adds a new filter to the System. + * + * @param {PIXI.DisplayObject} target - The target of the filter to render. + * @param {PIXI.Filter[]} filters - The filters to apply. + */ + FilterSystem.prototype.push = function push (target, filters) + { + var renderer = this.renderer; + var filterStack = this.defaultFilterStack; + var state = this.statePool.pop() || new FilterState(); + + var resolution = filters[0].resolution; + var padding = filters[0].padding; + var autoFit = filters[0].autoFit; + var legacy = filters[0].legacy; + + for (var i = 1; i < filters.length; i++) + { + var filter = filters[i]; + + // lets use the lowest resolution.. + resolution = Math.min(resolution, filter.resolution); + // and the largest amount of padding! + padding = Math.max(padding, filter.padding); + // only auto fit if all filters are autofit + autoFit = autoFit || filter.autoFit; + + legacy = legacy || filter.legacy; + } + + if (filterStack.length === 1) + { + this.defaultFilterStack[0].renderTexture = renderer.renderTexture.current; + } + + filterStack.push(state); + + state.resolution = resolution; + + state.legacy = legacy; + + state.target = target; + + state.sourceFrame.copyFrom(target.filterArea || target.getBounds(true)); + + state.sourceFrame.pad(padding); + if (autoFit) + { + state.sourceFrame.fit(this.renderer.renderTexture.sourceFrame); + } + + // round to whole number based on resolution + state.sourceFrame.ceil(resolution); + + state.renderTexture = this.getOptimalFilterTexture(state.sourceFrame.width, state.sourceFrame.height, resolution); + state.filters = filters; + + state.destinationFrame.width = state.renderTexture.width; + state.destinationFrame.height = state.renderTexture.height; + + state.renderTexture.filterFrame = state.sourceFrame; + + renderer.renderTexture.bind(state.renderTexture, state.sourceFrame);// /, state.destinationFrame); + renderer.renderTexture.clear(); + }; + + /** + * Pops off the filter and applies it. + * + */ + FilterSystem.prototype.pop = function pop () + { + var filterStack = this.defaultFilterStack; + var state = filterStack.pop(); + var filters = state.filters; + + this.activeState = state; + + var globalUniforms = this.globalUniforms.uniforms; + + globalUniforms.outputFrame = state.sourceFrame; + globalUniforms.resolution = state.resolution; + + var inputSize = globalUniforms.inputSize; + var inputPixel = globalUniforms.inputPixel; + var inputClamp = globalUniforms.inputClamp; + + inputSize[0] = state.destinationFrame.width; + inputSize[1] = state.destinationFrame.height; + inputSize[2] = 1.0 / inputSize[0]; + inputSize[3] = 1.0 / inputSize[1]; + + inputPixel[0] = inputSize[0] * state.resolution; + inputPixel[1] = inputSize[1] * state.resolution; + inputPixel[2] = 1.0 / inputPixel[0]; + inputPixel[3] = 1.0 / inputPixel[1]; + + inputClamp[0] = 0.5 * inputPixel[2]; + inputClamp[1] = 0.5 * inputPixel[3]; + inputClamp[2] = (state.sourceFrame.width * inputSize[2]) - (0.5 * inputPixel[2]); + inputClamp[3] = (state.sourceFrame.height * inputSize[3]) - (0.5 * inputPixel[3]); + + // only update the rect if its legacy.. + if (state.legacy) + { + var filterArea = globalUniforms.filterArea; + + filterArea[0] = state.destinationFrame.width; + filterArea[1] = state.destinationFrame.height; + filterArea[2] = state.sourceFrame.x; + filterArea[3] = state.sourceFrame.y; + + globalUniforms.filterClamp = globalUniforms.inputClamp; + } + + this.globalUniforms.update(); + + var lastState = filterStack[filterStack.length - 1]; + + if (filters.length === 1) + { + filters[0].apply(this, state.renderTexture, lastState.renderTexture, false, state); + + this.returnFilterTexture(state.renderTexture); + } + else + { + var flip = state.renderTexture; + var flop = this.getOptimalFilterTexture( + flip.width, + flip.height, + state.resolution + ); + + flop.filterFrame = flip.filterFrame; + + var i = 0; + + for (i = 0; i < filters.length - 1; ++i) + { + filters[i].apply(this, flip, flop, true, state); + + var t = flip; + + flip = flop; + flop = t; + } + + filters[i].apply(this, flip, lastState.renderTexture, false, state); + + this.returnFilterTexture(flip); + this.returnFilterTexture(flop); + } + + state.clear(); + this.statePool.push(state); + }; + + /** + * Draws a filter. + * + * @param {PIXI.Filter} filter - The filter to draw. + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + */ + FilterSystem.prototype.applyFilter = function applyFilter (filter, input, output, clear) + { + var renderer = this.renderer; + + renderer.renderTexture.bind(output, output ? output.filterFrame : null); + + if (clear) + { + // gl.disable(gl.SCISSOR_TEST); + renderer.renderTexture.clear(); + // gl.enable(gl.SCISSOR_TEST); + } + + // set the uniforms.. + filter.uniforms.uSampler = input; + filter.uniforms.filterGlobals = this.globalUniforms; + + // TODO make it so that the order of this does not matter.. + // because it does at the moment cos of global uniforms. + // they need to get resynced + + renderer.state.set(filter.state); + renderer.shader.bind(filter); + + if (filter.legacy) + { + this.quadUv.map(input._frame, input.filterFrame); + + renderer.geometry.bind(this.quadUv); + renderer.geometry.draw(DRAW_MODES.TRIANGLES); + } + else + { + renderer.geometry.bind(this.quad); + renderer.geometry.draw(DRAW_MODES.TRIANGLE_STRIP); + } + }; + + /** + * Multiply _input normalized coordinates_ to this matrix to get _sprite texture normalized coordinates_. + * + * Use `outputMatrix * vTextureCoord` in the shader. + * + * @param {PIXI.Matrix} outputMatrix - The matrix to output to. + * @param {PIXI.Sprite} sprite - The sprite to map to. + * @return {PIXI.Matrix} The mapped matrix. + */ + FilterSystem.prototype.calculateSpriteMatrix = function calculateSpriteMatrix (outputMatrix, sprite) + { + var ref = this.activeState; + var sourceFrame = ref.sourceFrame; + var destinationFrame = ref.destinationFrame; + var ref$1 = sprite._texture; + var orig = ref$1.orig; + var mappedMatrix = outputMatrix.set(destinationFrame.width, 0, 0, + destinationFrame.height, sourceFrame.x, sourceFrame.y); + var worldTransform = sprite.worldTransform.copyTo(Matrix.TEMP_MATRIX); + + worldTransform.invert(); + mappedMatrix.prepend(worldTransform); + mappedMatrix.scale(1.0 / orig.width, 1.0 / orig.height); + mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y); + + return mappedMatrix; + }; + + /** + * Destroys this Filter System. + */ + FilterSystem.prototype.destroy = function destroy () + { + // Those textures has to be destroyed by RenderTextureSystem or FramebufferSystem + this.texturePool.clear(false); + }; + + /** + * Gets a Power-of-Two render texture or fullScreen texture + * + * @protected + * @param {number} minWidth - The minimum width of the render texture in real pixels. + * @param {number} minHeight - The minimum height of the render texture in real pixels. + * @param {number} [resolution=1] - The resolution of the render texture. + * @return {PIXI.RenderTexture} The new render texture. + */ + FilterSystem.prototype.getOptimalFilterTexture = function getOptimalFilterTexture (minWidth, minHeight, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + return this.texturePool.getOptimalTexture(minWidth, minHeight, resolution); + }; + + /** + * Gets extra render texture to use inside current filter + * To be compliant with older filters, you can use params in any order + * + * @param {PIXI.RenderTexture} [input] renderTexture from which size and resolution will be copied + * @param {number} [resolution] override resolution of the renderTexture + * @returns {PIXI.RenderTexture} + */ + FilterSystem.prototype.getFilterTexture = function getFilterTexture (input, resolution) + { + if (typeof input === 'number') + { + var swap = input; + + input = resolution; + resolution = swap; + } + + input = input || this.activeState.renderTexture; + + var filterTexture = this.texturePool.getOptimalTexture(input.width, input.height, resolution || input.resolution); + + filterTexture.filterFrame = input.filterFrame; + + return filterTexture; + }; + + /** + * Frees a render texture back into the pool. + * + * @param {PIXI.RenderTexture} renderTexture - The renderTarget to free + */ + FilterSystem.prototype.returnFilterTexture = function returnFilterTexture (renderTexture) + { + this.texturePool.returnTexture(renderTexture); + }; + + /** + * Empties the texture pool. + */ + FilterSystem.prototype.emptyPool = function emptyPool () + { + this.texturePool.clear(true); + }; + + /** + * calls `texturePool.resize()`, affects fullScreen renderTextures + */ + FilterSystem.prototype.resize = function resize () + { + this.texturePool.setScreenSize(this.renderer.view); + }; + + return FilterSystem; +}(System)); + +/** + * Base for a common object renderer that can be used as a + * system renderer plugin. + * + * @class + * @extends PIXI.System + * @memberof PIXI + */ +var ObjectRenderer = function ObjectRenderer(renderer) +{ + /** + * The renderer this manager works for. + * + * @member {PIXI.Renderer} + */ + this.renderer = renderer; +}; + +/** + * Stub method that should be used to empty the current + * batch by rendering objects now. + */ +ObjectRenderer.prototype.flush = function flush () +{ + // flush! +}; + +/** + * Generic destruction method that frees all resources. This + * should be called by subclasses. + */ +ObjectRenderer.prototype.destroy = function destroy () +{ + this.renderer = null; +}; + +/** + * Stub method that initializes any state required before + * rendering starts. It is different from the `prerender` + * signal, which occurs every frame, in that it is called + * whenever an object requests _this_ renderer specifically. + */ +ObjectRenderer.prototype.start = function start () +{ + // set the shader.. +}; + +/** + * Stops the renderer. It should free up any state and + * become dormant. + */ +ObjectRenderer.prototype.stop = function stop () +{ + this.flush(); +}; + +/** + * Keeps the object to render. It doesn't have to be + * rendered immediately. + * + * @param {PIXI.DisplayObject} object - The object to render. + */ +ObjectRenderer.prototype.render = function render (object) // eslint-disable-line no-unused-vars +{ + // render the object +}; + +/** + * System plugin to the renderer to manage batching. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var BatchSystem = /*@__PURE__*/(function (System) { + function BatchSystem(renderer) + { + System.call(this, renderer); + + /** + * An empty renderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.emptyRenderer = new ObjectRenderer(renderer); + + /** + * The currently active ObjectRenderer. + * + * @member {PIXI.ObjectRenderer} + */ + this.currentRenderer = this.emptyRenderer; + } + + if ( System ) BatchSystem.__proto__ = System; + BatchSystem.prototype = Object.create( System && System.prototype ); + BatchSystem.prototype.constructor = BatchSystem; + + /** + * Changes the current renderer to the one given in parameter + * + * @param {PIXI.ObjectRenderer} objectRenderer - The object renderer to use. + */ + BatchSystem.prototype.setObjectRenderer = function setObjectRenderer (objectRenderer) + { + if (this.currentRenderer === objectRenderer) + { + return; + } + + this.currentRenderer.stop(); + this.currentRenderer = objectRenderer; + + this.currentRenderer.start(); + }; + + /** + * This should be called if you wish to do some custom rendering + * It will basically render anything that may be batched up such as sprites + */ + BatchSystem.prototype.flush = function flush () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + /** + * Reset the system to an empty renderer + */ + BatchSystem.prototype.reset = function reset () + { + this.setObjectRenderer(this.emptyRenderer); + }; + + return BatchSystem; +}(System)); + +/** + * The maximum support for using WebGL. If a device does not + * support WebGL version, for instance WebGL 2, it will still + * attempt to fallback support to WebGL 1. If you want to + * explicitly remove feature support to target a more stable + * baseline, prefer a lower environment. + * + * Due to {@link https://bugs.chromium.org/p/chromium/issues/detail?id=934823|bug in chromium} + * we disable webgl2 by default for all non-apple mobile devices. + * + * @static + * @name PREFER_ENV + * @memberof PIXI.settings + * @type {number} + * @default PIXI.ENV.WEBGL2 + */ +settings.PREFER_ENV = isMobile.any ? ENV.WEBGL : ENV.WEBGL2; + +var CONTEXT_UID = 0; + +/** + * System plugin to the renderer to manage the context. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var ContextSystem = /*@__PURE__*/(function (System) { + function ContextSystem(renderer) + { + System.call(this, renderer); + + /** + * Either 1 or 2 to reflect the WebGL version being used + * @member {number} + * @readonly + */ + this.webGLVersion = 1; + + /** + * Extensions being used + * @member {object} + * @readonly + * @property {WEBGL_draw_buffers} drawBuffers - WebGL v1 extension + * @property {WEBGL_depth_texture} depthTexture - WebGL v1 extension + * @property {OES_texture_float} floatTexture - WebGL v1 extension + * @property {WEBGL_lose_context} loseContext - WebGL v1 extension + * @property {OES_vertex_array_object} vertexArrayObject - WebGL v1 extension + * @property {EXT_texture_filter_anisotropic} anisotropicFiltering - WebGL v1 and v2 extension + */ + this.extensions = {}; + + // Bind functions + this.handleContextLost = this.handleContextLost.bind(this); + this.handleContextRestored = this.handleContextRestored.bind(this); + + renderer.view.addEventListener('webglcontextlost', this.handleContextLost, false); + renderer.view.addEventListener('webglcontextrestored', this.handleContextRestored, false); + } + + if ( System ) ContextSystem.__proto__ = System; + ContextSystem.prototype = Object.create( System && System.prototype ); + ContextSystem.prototype.constructor = ContextSystem; + + var prototypeAccessors = { isLost: { configurable: true } }; + + /** + * `true` if the context is lost + * @member {boolean} + * @readonly + */ + prototypeAccessors.isLost.get = function () + { + return (!this.gl || this.gl.isContextLost()); + }; + + /** + * Handle the context change event + * @param {WebGLRenderingContext} gl new webgl context + */ + ContextSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + + // restore a context if it was previously lost + if (gl.isContextLost() && gl.getExtension('WEBGL_lose_context')) + { + gl.getExtension('WEBGL_lose_context').restoreContext(); + } + }; + + /** + * Initialize the context + * + * @protected + * @param {WebGLRenderingContext} gl - WebGL context + */ + ContextSystem.prototype.initFromContext = function initFromContext (gl) + { + this.gl = gl; + this.validateContext(gl); + this.renderer.gl = gl; + this.renderer.CONTEXT_UID = CONTEXT_UID++; + this.renderer.runners.contextChange.run(gl); + }; + + /** + * Initialize from context options + * + * @protected + * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext + * @param {object} options - context attributes + */ + ContextSystem.prototype.initFromOptions = function initFromOptions (options) + { + var gl = this.createContext(this.renderer.view, options); + + this.initFromContext(gl); + }; + + /** + * Helper class to create a WebGL Context + * + * @param canvas {HTMLCanvasElement} the canvas element that we will get the context from + * @param options {object} An options object that gets passed in to the canvas element containing the context attributes + * @see https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement/getContext + * @return {WebGLRenderingContext} the WebGL context + */ + ContextSystem.prototype.createContext = function createContext (canvas, options) + { + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', options); + } + + if (gl) + { + this.webGLVersion = 2; + } + else + { + this.webGLVersion = 1; + + gl = canvas.getContext('webgl', options) + || canvas.getContext('experimental-webgl', options); + + if (!gl) + { + // fail, not able to get a context + throw new Error('This browser does not support WebGL. Try using the canvas renderer'); + } + } + + this.gl = gl; + + this.getExtensions(); + + return gl; + }; + + /** + * Auto-populate the extensions + * + * @protected + */ + ContextSystem.prototype.getExtensions = function getExtensions () + { + // time to set up default extensions that Pixi uses. + var ref = this; + var gl = ref.gl; + + if (this.webGLVersion === 1) + { + Object.assign(this.extensions, { + drawBuffers: gl.getExtension('WEBGL_draw_buffers'), + depthTexture: gl.getExtension('WEBKIT_WEBGL_depth_texture'), + loseContext: gl.getExtension('WEBGL_lose_context'), + vertexArrayObject: gl.getExtension('OES_vertex_array_object') + || gl.getExtension('MOZ_OES_vertex_array_object') + || gl.getExtension('WEBKIT_OES_vertex_array_object'), + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + uint32ElementIndex: gl.getExtension('OES_element_index_uint'), + // Floats and half-floats + floatTexture: gl.getExtension('OES_texture_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + textureHalfFloat: gl.getExtension('OES_texture_half_float'), + textureHalfFloatLinear: gl.getExtension('OES_texture_half_float_linear'), + }); + } + else if (this.webGLVersion === 2) + { + Object.assign(this.extensions, { + anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'), + // Floats and half-floats + colorBufferFloat: gl.getExtension('EXT_color_buffer_float'), + floatTextureLinear: gl.getExtension('OES_texture_float_linear'), + }); + } + }; + + /** + * Handles a lost webgl context + * + * @protected + * @param {WebGLContextEvent} event - The context lost event. + */ + ContextSystem.prototype.handleContextLost = function handleContextLost (event) + { + event.preventDefault(); + }; + + /** + * Handles a restored webgl context + * + * @protected + */ + ContextSystem.prototype.handleContextRestored = function handleContextRestored () + { + this.renderer.runners.contextChange.run(this.gl); + }; + + ContextSystem.prototype.destroy = function destroy () + { + var view = this.renderer.view; + + // remove listeners + view.removeEventListener('webglcontextlost', this.handleContextLost); + view.removeEventListener('webglcontextrestored', this.handleContextRestored); + + this.gl.useProgram(null); + + if (this.extensions.loseContext) + { + this.extensions.loseContext.loseContext(); + } + }; + + /** + * Handle the post-render runner event + * + * @protected + */ + ContextSystem.prototype.postrender = function postrender () + { + this.gl.flush(); + }; + + /** + * Validate context + * + * @protected + * @param {WebGLRenderingContext} gl - Render context + */ + ContextSystem.prototype.validateContext = function validateContext (gl) + { + var attributes = gl.getContextAttributes(); + + // this is going to be fairly simple for now.. but at least we have room to grow! + if (!attributes.stencil) + { + /* eslint-disable max-len */ + + /* eslint-disable no-console */ + console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly'); + /* eslint-enable no-console */ + + /* eslint-enable max-len */ + } + }; + + Object.defineProperties( ContextSystem.prototype, prototypeAccessors ); + + return ContextSystem; +}(System)); + +/** + * System plugin to the renderer to manage framebuffers. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var FramebufferSystem = /*@__PURE__*/(function (System) { + function FramebufferSystem(renderer) + { + System.call(this, renderer); + + /** + * A list of managed framebuffers + * @member {PIXI.Framebuffer[]} + * @readonly + */ + this.managedFramebuffers = []; + + /** + * Framebuffer value that shows that we don't know what is bound + * @member {Framebuffer} + * @readonly + */ + this.unknownFramebuffer = new Framebuffer(10, 10); + } + + if ( System ) FramebufferSystem.__proto__ = System; + FramebufferSystem.prototype = Object.create( System && System.prototype ); + FramebufferSystem.prototype.constructor = FramebufferSystem; + + var prototypeAccessors = { size: { configurable: true } }; + + /** + * Sets up the renderer context and necessary buffers. + */ + FramebufferSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + this.hasMRT = true; + this.writeDepthTexture = true; + + this.disposeAll(true); + + // webgl2 + if (this.renderer.context.webGLVersion === 1) + { + // webgl 1! + var nativeDrawBuffersExtension = this.renderer.context.extensions.drawBuffers; + var nativeDepthTextureExtension = this.renderer.context.extensions.depthTexture; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeDrawBuffersExtension = null; + nativeDepthTextureExtension = null; + } + + if (nativeDrawBuffersExtension) + { + gl.drawBuffers = function (activeTextures) { return nativeDrawBuffersExtension.drawBuffersWEBGL(activeTextures); }; + } + else + { + this.hasMRT = false; + gl.drawBuffers = function () { + // empty + }; + } + + if (!nativeDepthTextureExtension) + { + this.writeDepthTexture = false; + } + } + }; + + /** + * Bind a framebuffer + * + * @param {PIXI.Framebuffer} framebuffer + * @param {PIXI.Rectangle} [frame] frame, default is framebuffer size + */ + FramebufferSystem.prototype.bind = function bind (framebuffer, frame) + { + var ref = this; + var gl = ref.gl; + + if (framebuffer) + { + // TODO caching layer! + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID] || this.initFramebuffer(framebuffer); + + if (this.current !== framebuffer) + { + this.current = framebuffer; + gl.bindFramebuffer(gl.FRAMEBUFFER, fbo.framebuffer); + } + // make sure all textures are unbound.. + + // now check for updates... + if (fbo.dirtyId !== framebuffer.dirtyId) + { + fbo.dirtyId = framebuffer.dirtyId; + + if (fbo.dirtyFormat !== framebuffer.dirtyFormat) + { + fbo.dirtyFormat = framebuffer.dirtyFormat; + this.updateFramebuffer(framebuffer); + } + else if (fbo.dirtySize !== framebuffer.dirtySize) + { + fbo.dirtySize = framebuffer.dirtySize; + this.resizeFramebuffer(framebuffer); + } + } + + for (var i = 0; i < framebuffer.colorTextures.length; i++) + { + if (framebuffer.colorTextures[i].texturePart) + { + this.renderer.texture.unbind(framebuffer.colorTextures[i].texture); + } + else + { + this.renderer.texture.unbind(framebuffer.colorTextures[i]); + } + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.unbind(framebuffer.depthTexture); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, framebuffer.width, framebuffer.height); + } + } + else + { + if (this.current) + { + this.current = null; + gl.bindFramebuffer(gl.FRAMEBUFFER, null); + } + + if (frame) + { + this.setViewport(frame.x, frame.y, frame.width, frame.height); + } + else + { + this.setViewport(0, 0, this.renderer.width, this.renderer.height); + } + } + }; + + /** + * Set the WebGLRenderingContext's viewport. + * + * @param {Number} x - X position of viewport + * @param {Number} y - Y position of viewport + * @param {Number} width - Width of viewport + * @param {Number} height - Height of viewport + */ + FramebufferSystem.prototype.setViewport = function setViewport (x, y, width, height) + { + var v = this.viewport; + + if (v.width !== width || v.height !== height || v.x !== x || v.y !== y) + { + v.x = x; + v.y = y; + v.width = width; + v.height = height; + + this.gl.viewport(x, y, width, height); + } + }; + + /** + * Get the size of the current width and height. Returns object with `width` and `height` values. + * + * @member {object} + * @readonly + */ + prototypeAccessors.size.get = function () + { + if (this.current) + { + // TODO store temp + return { x: 0, y: 0, width: this.current.width, height: this.current.height }; + } + + return { x: 0, y: 0, width: this.renderer.width, height: this.renderer.height }; + }; + + /** + * Clear the color of the context + * + * @param {Number} r - Red value from 0 to 1 + * @param {Number} g - Green value from 0 to 1 + * @param {Number} b - Blue value from 0 to 1 + * @param {Number} a - Alpha value from 0 to 1 + */ + FramebufferSystem.prototype.clear = function clear (r, g, b, a) + { + var ref = this; + var gl = ref.gl; + + // TODO clear color can be set only one right? + gl.clearColor(r, g, b, a); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + }; + + /** + * Initialize framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.initFramebuffer = function initFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + // TODO - make this a class? + var fbo = { + framebuffer: gl.createFramebuffer(), + stencil: null, + dirtyId: 0, + dirtyFormat: 0, + dirtySize: 0, + }; + + framebuffer.glFramebuffers[this.CONTEXT_UID] = fbo; + + this.managedFramebuffers.push(framebuffer); + framebuffer.disposeRunner.add(this); + + return fbo; + }; + + /** + * Resize the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.resizeFramebuffer = function resizeFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (fbo.stencil) + { + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + } + + var colorTextures = framebuffer.colorTextures; + + for (var i = 0; i < colorTextures.length; i++) + { + this.renderer.texture.bind(colorTextures[i], 0); + } + + if (framebuffer.depthTexture) + { + this.renderer.texture.bind(framebuffer.depthTexture, 0); + } + }; + + /** + * Update the framebuffer + * + * @protected + * @param {PIXI.Framebuffer} framebuffer + */ + FramebufferSystem.prototype.updateFramebuffer = function updateFramebuffer (framebuffer) + { + var ref = this; + var gl = ref.gl; + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + // bind the color texture + var colorTextures = framebuffer.colorTextures; + + var count = colorTextures.length; + + if (!gl.drawBuffers) + { + count = Math.min(count, 1); + } + + var activeTextures = []; + + for (var i = 0; i < count; i++) + { + var texture = framebuffer.colorTextures[i]; + + if (texture.texturePart) + { + this.renderer.texture.bind(texture.texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_CUBE_MAP_NEGATIVE_X + texture.side, + texture.texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + else + { + this.renderer.texture.bind(texture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.COLOR_ATTACHMENT0 + i, + gl.TEXTURE_2D, + texture._glTextures[this.CONTEXT_UID].texture, + 0); + } + + activeTextures.push(gl.COLOR_ATTACHMENT0 + i); + } + + if (activeTextures.length > 1) + { + gl.drawBuffers(activeTextures); + } + + if (framebuffer.depthTexture) + { + var writeDepthTexture = this.writeDepthTexture; + + if (writeDepthTexture) + { + var depthTexture = framebuffer.depthTexture; + + this.renderer.texture.bind(depthTexture, 0); + + gl.framebufferTexture2D(gl.FRAMEBUFFER, + gl.DEPTH_ATTACHMENT, + gl.TEXTURE_2D, + depthTexture._glTextures[this.CONTEXT_UID].texture, + 0); + } + } + + if (!fbo.stencil && (framebuffer.stencil || framebuffer.depth)) + { + fbo.stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil); + + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height); + // TODO.. this is depth AND stencil? + if (!framebuffer.depthTexture) + { // you can't have both, so one should take priority if enabled + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, fbo.stencil); + } + } + }; + + /** + * Disposes framebuffer + * @param {PIXI.Framebuffer} framebuffer framebuffer that has to be disposed of + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeFramebuffer = function disposeFramebuffer (framebuffer, contextLost) + { + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + var gl = this.gl; + + if (!fbo) + { + return; + } + + delete framebuffer.glFramebuffers[this.CONTEXT_UID]; + + var index = this.managedFramebuffers.indexOf(framebuffer); + + if (index >= 0) + { + this.managedFramebuffers.splice(index, 1); + } + + framebuffer.disposeRunner.remove(this); + + if (!contextLost) + { + gl.deleteFramebuffer(fbo.framebuffer); + if (fbo.stencil) + { + gl.deleteRenderbuffer(fbo.stencil); + } + } + }; + + /** + * Disposes all framebuffers, but not textures bound to them + * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls + */ + FramebufferSystem.prototype.disposeAll = function disposeAll (contextLost) + { + var list = this.managedFramebuffers; + + this.managedFramebuffers = []; + + for (var i = 0; i < list.length; i++) + { + this.disposeFramebuffer(list[i], contextLost); + } + }; + + /** + * Forcing creation of stencil buffer for current framebuffer, if it wasn't done before. + * Used by MaskSystem, when its time to use stencil mask for Graphics element. + * + * Its an alternative for public lazy `framebuffer.enableStencil`, in case we need stencil without rebind. + * + * @private + */ + FramebufferSystem.prototype.forceStencil = function forceStencil () + { + var framebuffer = this.current; + + if (!framebuffer) + { + return; + } + + var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID]; + + if (!fbo || fbo.stencil) + { + return; + } + framebuffer.enableStencil(); + + var w = framebuffer.width; + var h = framebuffer.height; + var gl = this.gl; + var stencil = gl.createRenderbuffer(); + + gl.bindRenderbuffer(gl.RENDERBUFFER, stencil); + gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, w, h); + + fbo.stencil = stencil; + gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, stencil); + }; + + /** + * resets framebuffer stored state, binds screen framebuffer + * + * should be called before renderTexture reset() + */ + FramebufferSystem.prototype.reset = function reset () + { + this.current = this.unknownFramebuffer; + this.viewport = new Rectangle(); + }; + + Object.defineProperties( FramebufferSystem.prototype, prototypeAccessors ); + + return FramebufferSystem; +}(System)); + +var GLBuffer = function GLBuffer(buffer) +{ + this.buffer = buffer; + this.updateID = -1; + this.byteLength = -1; + this.refCount = 0; +}; + +var byteSizeMap$1 = { 5126: 4, 5123: 2, 5121: 1 }; + +/** + * System plugin to the renderer to manage geometry. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var GeometrySystem = /*@__PURE__*/(function (System) { + function GeometrySystem(renderer) + { + System.call(this, renderer); + + this._activeGeometry = null; + this._activeVao = null; + + /** + * `true` if we has `*_vertex_array_object` extension + * @member {boolean} + * @readonly + */ + this.hasVao = true; + + /** + * `true` if has `ANGLE_instanced_arrays` extension + * @member {boolean} + * @readonly + */ + this.hasInstance = true; + + /** + * `true` if support `gl.UNSIGNED_INT` in `gl.drawElements` or `gl.drawElementsInstanced` + * @member {boolean} + * @readonly + */ + this.canUseUInt32ElementIndex = false; + + /** + * A cache of currently bound buffer, + * contains only two members with keys ARRAY_BUFFER and ELEMENT_ARRAY_BUFFER + * @member {Object.} + * @readonly + */ + this.boundBuffers = {}; + + /** + * Cache for all geometries by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedGeometries = {}; + + /** + * Cache for all buffers by id, used in case renderer gets destroyed or for profiling + * @member {object} + * @readonly + */ + this.managedBuffers = {}; + } + + if ( System ) GeometrySystem.__proto__ = System; + GeometrySystem.prototype = Object.create( System && System.prototype ); + GeometrySystem.prototype.constructor = GeometrySystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + GeometrySystem.prototype.contextChange = function contextChange () + { + this.disposeAll(true); + + var gl = this.gl = this.renderer.gl; + var context = this.renderer.context; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + // webgl2 + if (!gl.createVertexArray) + { + // webgl 1! + var nativeVaoExtension = this.renderer.context.extensions.vertexArrayObject; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + nativeVaoExtension = null; + } + + if (nativeVaoExtension) + { + gl.createVertexArray = function () { return nativeVaoExtension.createVertexArrayOES(); }; + + gl.bindVertexArray = function (vao) { return nativeVaoExtension.bindVertexArrayOES(vao); }; + + gl.deleteVertexArray = function (vao) { return nativeVaoExtension.deleteVertexArrayOES(vao); }; + } + else + { + this.hasVao = false; + gl.createVertexArray = function () { + // empty + }; + + gl.bindVertexArray = function () { + // empty + }; + + gl.deleteVertexArray = function () { + // empty + }; + } + } + + if (!gl.vertexAttribDivisor) + { + var instanceExt = gl.getExtension('ANGLE_instanced_arrays'); + + if (instanceExt) + { + gl.vertexAttribDivisor = function (a, b) { return instanceExt.vertexAttribDivisorANGLE(a, b); }; + + gl.drawElementsInstanced = function (a, b, c, d, e) { return instanceExt.drawElementsInstancedANGLE(a, b, c, d, e); }; + + gl.drawArraysInstanced = function (a, b, c, d) { return instanceExt.drawArraysInstancedANGLE(a, b, c, d); }; + } + else + { + this.hasInstance = false; + } + } + + this.canUseUInt32ElementIndex = context.webGLVersion === 2 || !!context.extensions.uint32ElementIndex; + }; + + /** + * Binds geometry so that is can be drawn. Creating a Vao if required + * + * @param {PIXI.Geometry} geometry instance of geometry to bind + * @param {PIXI.Shader} [shader] instance of shader to use vao for + */ + GeometrySystem.prototype.bind = function bind (geometry, shader) + { + shader = shader || this.renderer.shader.shader; + + var ref = this; + var gl = ref.gl; + + // not sure the best way to address this.. + // currently different shaders require different VAOs for the same geometry + // Still mulling over the best way to solve this one.. + // will likely need to modify the shader attribute locations at run time! + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + if (!vaos) + { + this.managedGeometries[geometry.id] = geometry; + geometry.disposeRunner.add(this); + geometry.glVertexArrayObjects[this.CONTEXT_UID] = vaos = {}; + } + + var vao = vaos[shader.program.id] || this.initGeometryVao(geometry, shader.program); + + this._activeGeometry = geometry; + + if (this._activeVao !== vao) + { + this._activeVao = vao; + + if (this.hasVao) + { + gl.bindVertexArray(vao); + } + else + { + this.activateVao(geometry, shader.program); + } + } + + // TODO - optimise later! + // don't need to loop through if nothing changed! + // maybe look to add an 'autoupdate' to geometry? + this.updateBuffers(); + }; + + /** + * Reset and unbind any active VAO and geometry + */ + GeometrySystem.prototype.reset = function reset () + { + this.unbind(); + }; + + /** + * Update buffers + * @protected + */ + GeometrySystem.prototype.updateBuffers = function updateBuffers () + { + var geometry = this._activeGeometry; + var ref = this; + var gl = ref.gl; + + for (var i = 0; i < geometry.buffers.length; i++) + { + var buffer = geometry.buffers[i]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + + if (buffer._updateID !== glBuffer.updateID) + { + glBuffer.updateID = buffer._updateID; + + // TODO can cache this on buffer! maybe added a getter / setter? + var type = buffer.index ? gl.ELEMENT_ARRAY_BUFFER : gl.ARRAY_BUFFER; + + // TODO this could change if the VAO changes... + // need to come up with a better way to cache.. + // if (this.boundBuffers[type] !== glBuffer) + // { + // this.boundBuffers[type] = glBuffer; + gl.bindBuffer(type, glBuffer.buffer); + // } + + this._boundBuffer = glBuffer; + + if (glBuffer.byteLength >= buffer.data.byteLength) + { + // offset is always zero for now! + gl.bufferSubData(type, 0, buffer.data); + } + else + { + var drawType = buffer.static ? gl.STATIC_DRAW : gl.DYNAMIC_DRAW; + + glBuffer.byteLength = buffer.data.byteLength; + gl.bufferData(type, buffer.data, drawType); + } + } + } + }; + + /** + * Check compability between a geometry and a program + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Program instance + */ + GeometrySystem.prototype.checkCompatibility = function checkCompatibility (geometry, program) + { + // geometry must have at least all the attributes that the shader requires. + var geometryAttributes = geometry.attributes; + var shaderAttributes = program.attributeData; + + for (var j in shaderAttributes) + { + if (!geometryAttributes[j]) + { + throw new Error(("shader and geometry incompatible, geometry missing the \"" + j + "\" attribute")); + } + } + }; + + /** + * Takes a geometry and program and generates a unique signature for them. + * + * @param {PIXI.Geometry} geometry to get signature from + * @param {PIXI.Program} program to test geometry against + * @returns {String} Unique signature of the geometry and program + * @protected + */ + GeometrySystem.prototype.getSignature = function getSignature (geometry, program) + { + var attribs = geometry.attributes; + var shaderAttributes = program.attributeData; + + var strings = ['g', geometry.id]; + + for (var i in attribs) + { + if (shaderAttributes[i]) + { + strings.push(i); + } + } + + return strings.join('-'); + }; + + /** + * Creates or gets Vao with the same structure as the geometry and stores it on the geometry. + * If vao is created, it is bound automatically. + * + * @protected + * @param {PIXI.Geometry} geometry - Instance of geometry to to generate Vao for + * @param {PIXI.Program} program - Instance of program + */ + GeometrySystem.prototype.initGeometryVao = function initGeometryVao (geometry, program) + { + this.checkCompatibility(geometry, program); + + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + + var signature = this.getSignature(geometry, program); + + var vaoObjectHash = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + + var vao = vaoObjectHash[signature]; + + if (vao) + { + // this will give us easy access to the vao + vaoObjectHash[program.id] = vao; + + return vao; + } + + var buffers = geometry.buffers; + var attributes = geometry.attributes; + var tempStride = {}; + var tempStart = {}; + + for (var j in buffers) + { + tempStride[j] = 0; + tempStart[j] = 0; + } + + for (var j$1 in attributes) + { + if (!attributes[j$1].size && program.attributeData[j$1]) + { + attributes[j$1].size = program.attributeData[j$1].size; + } + else if (!attributes[j$1].size) + { + console.warn(("PIXI Geometry attribute '" + j$1 + "' size cannot be determined (likely the bound shader does not have the attribute)")); // eslint-disable-line + } + + tempStride[attributes[j$1].buffer] += attributes[j$1].size * byteSizeMap$1[attributes[j$1].type]; + } + + for (var j$2 in attributes) + { + var attribute = attributes[j$2]; + var attribSize = attribute.size; + + if (attribute.stride === undefined) + { + if (tempStride[attribute.buffer] === attribSize * byteSizeMap$1[attribute.type]) + { + attribute.stride = 0; + } + else + { + attribute.stride = tempStride[attribute.buffer]; + } + } + + if (attribute.start === undefined) + { + attribute.start = tempStart[attribute.buffer]; + + tempStart[attribute.buffer] += attribSize * byteSizeMap$1[attribute.type]; + } + } + + vao = gl.createVertexArray(); + + gl.bindVertexArray(vao); + + // first update - and create the buffers! + // only create a gl buffer if it actually gets + for (var i = 0; i < buffers.length; i++) + { + var buffer = buffers[i]; + + if (!buffer._glBuffers[CONTEXT_UID]) + { + buffer._glBuffers[CONTEXT_UID] = new GLBuffer(gl.createBuffer()); + this.managedBuffers[buffer.id] = buffer; + buffer.disposeRunner.add(this); + } + + buffer._glBuffers[CONTEXT_UID].refCount++; + } + + // TODO - maybe make this a data object? + // lets wait to see if we need to first! + + this.activateVao(geometry, program); + + this._activeVao = vao; + + // add it to the cache! + vaoObjectHash[program.id] = vao; + vaoObjectHash[signature] = vao; + + return vao; + }; + + /** + * Disposes buffer + * @param {PIXI.Buffer} buffer buffer with data + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeBuffer = function disposeBuffer (buffer, contextLost) + { + if (!this.managedBuffers[buffer.id]) + { + return; + } + + delete this.managedBuffers[buffer.id]; + + var glBuffer = buffer._glBuffers[this.CONTEXT_UID]; + var gl = this.gl; + + buffer.disposeRunner.remove(this); + + if (!glBuffer) + { + return; + } + + if (!contextLost) + { + gl.deleteBuffer(glBuffer.buffer); + } + + delete buffer._glBuffers[this.CONTEXT_UID]; + }; + + /** + * Disposes geometry + * @param {PIXI.Geometry} geometry Geometry with buffers. Only VAO will be disposed + * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray + */ + GeometrySystem.prototype.disposeGeometry = function disposeGeometry (geometry, contextLost) + { + if (!this.managedGeometries[geometry.id]) + { + return; + } + + delete this.managedGeometries[geometry.id]; + + var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID]; + var gl = this.gl; + var buffers = geometry.buffers; + + geometry.disposeRunner.remove(this); + + if (!vaos) + { + return; + } + + for (var i = 0; i < buffers.length; i++) + { + var buf = buffers[i]._glBuffers[this.CONTEXT_UID]; + + buf.refCount--; + if (buf.refCount === 0 && !contextLost) + { + this.disposeBuffer(buffers[i], contextLost); + } + } + + if (!contextLost) + { + for (var vaoId in vaos) + { + // delete only signatures, everything else are copies + if (vaoId[0] === 'g') + { + var vao = vaos[vaoId]; + + if (this._activeVao === vao) + { + this.unbind(); + } + gl.deleteVertexArray(vao); + } + } + } + + delete geometry.glVertexArrayObjects[this.CONTEXT_UID]; + }; + + /** + * dispose all WebGL resources of all managed geometries and buffers + * @param {boolean} [contextLost=false] If context was lost, we suppress `gl.delete` calls + */ + GeometrySystem.prototype.disposeAll = function disposeAll (contextLost) + { + var all = Object.keys(this.managedGeometries); + + for (var i = 0; i < all.length; i++) + { + this.disposeGeometry(this.managedGeometries[all[i]], contextLost); + } + all = Object.keys(this.managedBuffers); + for (var i$1 = 0; i$1 < all.length; i$1++) + { + this.disposeBuffer(this.managedBuffers[all[i$1]], contextLost); + } + }; + + /** + * Activate vertex array object + * + * @protected + * @param {PIXI.Geometry} geometry - Geometry instance + * @param {PIXI.Program} program - Shader program instance + */ + GeometrySystem.prototype.activateVao = function activateVao (geometry, program) + { + var gl = this.gl; + var CONTEXT_UID = this.CONTEXT_UID; + var buffers = geometry.buffers; + var attributes = geometry.attributes; + + if (geometry.indexBuffer) + { + // first update the index buffer if we have one.. + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, geometry.indexBuffer._glBuffers[CONTEXT_UID].buffer); + } + + var lastBuffer = null; + + // add a new one! + for (var j in attributes) + { + var attribute = attributes[j]; + var buffer = buffers[attribute.buffer]; + var glBuffer = buffer._glBuffers[CONTEXT_UID]; + + if (program.attributeData[j]) + { + if (lastBuffer !== glBuffer) + { + gl.bindBuffer(gl.ARRAY_BUFFER, glBuffer.buffer); + + lastBuffer = glBuffer; + } + + var location = program.attributeData[j].location; + + // TODO introduce state again + // we can optimise this for older devices that have no VAOs + gl.enableVertexAttribArray(location); + + gl.vertexAttribPointer(location, + attribute.size, + attribute.type || gl.FLOAT, + attribute.normalized, + attribute.stride, + attribute.start); + + if (attribute.instance) + { + // TODO calculate instance count based of this... + if (this.hasInstance) + { + gl.vertexAttribDivisor(location, 1); + } + else + { + throw new Error('geometry error, GPU Instancing is not supported on this device'); + } + } + } + } + }; + + /** + * Draw the geometry + * + * @param {Number} type - the type primitive to render + * @param {Number} [size] - the number of elements to be rendered + * @param {Number} [start] - Starting index + * @param {Number} [instanceCount] - the number of instances of the set of elements to execute + */ + GeometrySystem.prototype.draw = function draw (type, size, start, instanceCount) + { + var ref = this; + var gl = ref.gl; + var geometry = this._activeGeometry; + + // TODO.. this should not change so maybe cache the function? + + if (geometry.indexBuffer) + { + var byteSize = geometry.indexBuffer.data.BYTES_PER_ELEMENT; + var glType = byteSize === 2 ? gl.UNSIGNED_SHORT : gl.UNSIGNED_INT; + + if (byteSize === 2 || (byteSize === 4 && this.canUseUInt32ElementIndex)) + { + if (geometry.instanced) + { + /* eslint-disable max-len */ + gl.drawElementsInstanced(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize, instanceCount || 1); + /* eslint-enable max-len */ + } + else + { + /* eslint-disable max-len */ + gl.drawElements(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize); + /* eslint-enable max-len */ + } + } + else + { + console.warn('unsupported index buffer type: uint32'); + } + } + else if (geometry.instanced) + { + // TODO need a better way to calculate size.. + gl.drawArraysInstanced(type, start, size || geometry.getSize(), instanceCount || 1); + } + else + { + gl.drawArrays(type, start, size || geometry.getSize()); + } + + return this; + }; + + /** + * Unbind/reset everything + * @protected + */ + GeometrySystem.prototype.unbind = function unbind () + { + this.gl.bindVertexArray(null); + this._activeVao = null; + this._activeGeometry = null; + }; + + return GeometrySystem; +}(System)); + +/** + * @method compileProgram + * @private + * @memberof PIXI.glCore.shader + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @param fragmentSrc {string|string[]} The fragment shader source as an array of strings. + * @param attributeLocations {Object} An attribute location map that lets you manually set the attribute locations + * @return {WebGLProgram} the shader program + */ +function compileProgram(gl, vertexSrc, fragmentSrc, attributeLocations) +{ + var glVertShader = compileShader(gl, gl.VERTEX_SHADER, vertexSrc); + var glFragShader = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc); + + var program = gl.createProgram(); + + gl.attachShader(program, glVertShader); + gl.attachShader(program, glFragShader); + + // optionally, set the attributes manually for the program rather than letting WebGL decide.. + if (attributeLocations) + { + for (var i in attributeLocations) + { + gl.bindAttribLocation(program, attributeLocations[i], i); + } + } + + gl.linkProgram(program); + + // if linking fails, then log and cleanup + if (!gl.getProgramParameter(program, gl.LINK_STATUS)) + { + console.error('Pixi.js Error: Could not initialize shader.'); + console.error('gl.VALIDATE_STATUS', gl.getProgramParameter(program, gl.VALIDATE_STATUS)); + console.error('gl.getError()', gl.getError()); + + // if there is a program info log, log it + if (gl.getProgramInfoLog(program) !== '') + { + console.warn('Pixi.js Warning: gl.getProgramInfoLog()', gl.getProgramInfoLog(program)); + } + + gl.deleteProgram(program); + program = null; + } + + // clean up some shaders + gl.deleteShader(glVertShader); + gl.deleteShader(glFragShader); + + return program; +} + +/** + * @private + * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram} + * @param type {Number} the type, can be either VERTEX_SHADER or FRAGMENT_SHADER + * @param vertexSrc {string|string[]} The vertex shader source as an array of strings. + * @return {WebGLShader} the shader + */ +function compileShader(gl, type, src) +{ + var shader = gl.createShader(type); + + gl.shaderSource(shader, src); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + console.warn(src); + console.error(gl.getShaderInfoLog(shader)); + + return null; + } + + return shader; +} + +/** + * @method defaultValue + * @memberof PIXI.glCore.shader + * @param type {String} Type of value + * @param size {Number} + * @private + */ +function defaultValue(type, size) +{ + switch (type) + { + case 'float': + return 0; + + case 'vec2': + return new Float32Array(2 * size); + + case 'vec3': + return new Float32Array(3 * size); + + case 'vec4': + return new Float32Array(4 * size); + + case 'int': + case 'sampler2D': + case 'sampler2DArray': + return 0; + + case 'ivec2': + return new Int32Array(2 * size); + + case 'ivec3': + return new Int32Array(3 * size); + + case 'ivec4': + return new Int32Array(4 * size); + + case 'bool': + return false; + + case 'bvec2': + + return booleanArray(2 * size); + + case 'bvec3': + return booleanArray(3 * size); + + case 'bvec4': + return booleanArray(4 * size); + + case 'mat2': + return new Float32Array([1, 0, + 0, 1]); + + case 'mat3': + return new Float32Array([1, 0, 0, + 0, 1, 0, + 0, 0, 1]); + + case 'mat4': + return new Float32Array([1, 0, 0, 0, + 0, 1, 0, 0, + 0, 0, 1, 0, + 0, 0, 0, 1]); + } + + return null; +} + +function booleanArray(size) +{ + var array = new Array(size); + + for (var i = 0; i < array.length; i++) + { + array[i] = false; + } + + return array; +} + +var unknownContext = {}; +var context = unknownContext; + +/** + * returns a little WebGL context to use for program inspection. + * + * @static + * @private + * @returns {webGL-context} a gl context to test with + */ +function getTestContext() +{ + if (context === unknownContext || context.isContextLost()) + { + var canvas = document.createElement('canvas'); + + var gl; + + if (settings.PREFER_ENV >= ENV.WEBGL2) + { + gl = canvas.getContext('webgl2', {}); + } + + if (!gl) + { + gl = canvas.getContext('webgl', {}) + || canvas.getContext('experimental-webgl', {}); + + if (!gl) + { + // fail, not able to get a context + gl = null; + } + else + { + // for shader testing.. + gl.getExtension('WEBGL_draw_buffers'); + } + } + + context = gl; + } + + return context; +} + +var maxFragmentPrecision; + +function getMaxFragmentPrecision() +{ + if (!maxFragmentPrecision) + { + maxFragmentPrecision = PRECISION.MEDIUM; + var gl = getTestContext(); + + if (gl) + { + if (gl.getShaderPrecisionFormat) + { + var shaderFragment = gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT); + + maxFragmentPrecision = shaderFragment.precision ? PRECISION.HIGH : PRECISION.MEDIUM; + } + } + } + + return maxFragmentPrecision; +} + +/** + * Sets the float precision on the shader, ensuring the device supports the request precision. + * If the precision is already present, it just ensures that the device is able to handle it. + * + * @private + * @param {string} src - The shader source + * @param {string} requestedPrecision - The request float precision of the shader. Options are 'lowp', 'mediump' or 'highp'. + * @param {string} maxSupportedPrecision - The maximum precision the shader supports. + * + * @return {string} modified shader source + */ +function setPrecision(src, requestedPrecision, maxSupportedPrecision) +{ + if (src.substring(0, 9) !== 'precision') + { + // no precision supplied, so PixiJS will add the requested level. + var precision = requestedPrecision; + + // If highp is requested but not supported, downgrade precision to a level all devices support. + if (requestedPrecision === PRECISION.HIGH && maxSupportedPrecision !== PRECISION.HIGH) + { + precision = PRECISION.MEDIUM; + } + + return ("precision " + precision + " float;\n" + src); + } + else if (maxSupportedPrecision !== PRECISION.HIGH && src.substring(0, 15) === 'precision highp') + { + // precision was supplied, but at a level this device does not support, so downgrading to mediump. + return src.replace('precision highp', 'precision mediump'); + } + + return src; +} + +var GLSL_TO_SIZE = { + float: 1, + vec2: 2, + vec3: 3, + vec4: 4, + + int: 1, + ivec2: 2, + ivec3: 3, + ivec4: 4, + + bool: 1, + bvec2: 2, + bvec3: 3, + bvec4: 4, + + mat2: 4, + mat3: 9, + mat4: 16, + + sampler2D: 1, +}; + +/** + * @private + * @method mapSize + * @memberof PIXI.glCore.shader + * @param type {String} + * @return {Number} + */ +function mapSize(type) +{ + return GLSL_TO_SIZE[type]; +} + +var GL_TABLE = null; + +var GL_TO_GLSL_TYPES = { + FLOAT: 'float', + FLOAT_VEC2: 'vec2', + FLOAT_VEC3: 'vec3', + FLOAT_VEC4: 'vec4', + + INT: 'int', + INT_VEC2: 'ivec2', + INT_VEC3: 'ivec3', + INT_VEC4: 'ivec4', + + BOOL: 'bool', + BOOL_VEC2: 'bvec2', + BOOL_VEC3: 'bvec3', + BOOL_VEC4: 'bvec4', + + FLOAT_MAT2: 'mat2', + FLOAT_MAT3: 'mat3', + FLOAT_MAT4: 'mat4', + + SAMPLER_2D: 'sampler2D', + SAMPLER_CUBE: 'samplerCube', + SAMPLER_2D_ARRAY: 'sampler2DArray', +}; + +function mapType(gl, type) +{ + if (!GL_TABLE) + { + var typeNames = Object.keys(GL_TO_GLSL_TYPES); + + GL_TABLE = {}; + + for (var i = 0; i < typeNames.length; ++i) + { + var tn = typeNames[i]; + + GL_TABLE[gl[tn]] = GL_TO_GLSL_TYPES[tn]; + } + } + + return GL_TABLE[type]; +} + +// cv = CachedValue +// v = value +// ud = uniformData +// uv = uniformValue +// l = location +var GLSL_TO_SINGLE_SETTERS_CACHED = { + + float: "\n if(cv !== v)\n {\n cv.v = v;\n gl.uniform1f(location, v)\n }", + + vec2: "\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(location, v[0], v[1])\n }", + + vec3: "\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n\n gl.uniform3f(location, v[0], v[1], v[2])\n }", + + vec4: 'gl.uniform4f(location, v[0], v[1], v[2], v[3])', + + int: 'gl.uniform1i(location, v)', + ivec2: 'gl.uniform2i(location, v[0], v[1])', + ivec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + ivec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + bool: 'gl.uniform1i(location, v)', + bvec2: 'gl.uniform2i(location, v[0], v[1])', + bvec3: 'gl.uniform3i(location, v[0], v[1], v[2])', + bvec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])', + + mat2: 'gl.uniformMatrix2fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat4: 'gl.uniformMatrix4fv(location, false, v)', + + sampler2D: 'gl.uniform1i(location, v)', + samplerCube: 'gl.uniform1i(location, v)', + sampler2DArray: 'gl.uniform1i(location, v)', +}; + +var GLSL_TO_ARRAY_SETTERS = { + + float: "gl.uniform1fv(location, v)", + + vec2: "gl.uniform2fv(location, v)", + vec3: "gl.uniform3fv(location, v)", + vec4: 'gl.uniform4fv(location, v)', + + mat4: 'gl.uniformMatrix4fv(location, false, v)', + mat3: 'gl.uniformMatrix3fv(location, false, v)', + mat2: 'gl.uniformMatrix2fv(location, false, v)', + + int: 'gl.uniform1iv(location, v)', + ivec2: 'gl.uniform2iv(location, v)', + ivec3: 'gl.uniform3iv(location, v)', + ivec4: 'gl.uniform4iv(location, v)', + + bool: 'gl.uniform1iv(location, v)', + bvec2: 'gl.uniform2iv(location, v)', + bvec3: 'gl.uniform3iv(location, v)', + bvec4: 'gl.uniform4iv(location, v)', + + sampler2D: 'gl.uniform1iv(location, v)', + samplerCube: 'gl.uniform1iv(location, v)', + sampler2DArray: 'gl.uniform1iv(location, v)', +}; + +function generateUniformsSync(group, uniformData) +{ + var textureCount = 0; + var func = "var v = null;\n var cv = null\n var gl = renderer.gl"; + + for (var i in group.uniforms) + { + var data = uniformData[i]; + + if (!data) + { + if (group.uniforms[i].group) + { + func += "\n renderer.shader.syncUniformGroup(uv." + i + ");\n "; + } + + continue; + } + + // TODO && uniformData[i].value !== 0 <-- do we still need this? + if (data.type === 'float' && data.size === 1) + { + func += "\n if(uv." + i + " !== ud." + i + ".value)\n {\n ud." + i + ".value = uv." + i + "\n gl.uniform1f(ud." + i + ".location, uv." + i + ")\n }\n"; + } + /* eslint-disable max-len */ + else if ((data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray) + /* eslint-disable max-len */ + { + func += "\n renderer.texture.bind(uv." + i + ", " + textureCount + ");\n\n if(ud." + i + ".value !== " + textureCount + ")\n {\n ud." + i + ".value = " + textureCount + ";\n gl.uniform1i(ud." + i + ".location, " + textureCount + ");\n; // eslint-disable-line max-len\n }\n"; + + textureCount++; + } + else if (data.type === 'mat3' && data.size === 1) + { + if (group.uniforms[i].a !== undefined) + { + // TODO and some smart caching dirty ids here! + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ".toArray(true));\n \n"; + } + else + { + func += "\n gl.uniformMatrix3fv(ud." + i + ".location, false, uv." + i + ");\n \n"; + } + } + else if (data.type === 'vec2' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].x !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n gl.uniform2f(ud." + i + ".location, v.x, v.y);\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n gl.uniform2f(ud." + i + ".location, v[0], v[1]);\n }\n \n"; + } + } + else if (data.type === 'vec4' && data.size === 1) + { + // TODO - do we need both here? + // maybe we can get away with only using points? + if (group.uniforms[i].width !== undefined) + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v.x || cv[1] !== v.y || cv[2] !== v.width || cv[3] !== v.height)\n {\n cv[0] = v.x;\n cv[1] = v.y;\n cv[2] = v.width;\n cv[3] = v.height;\n gl.uniform4f(ud." + i + ".location, v.x, v.y, v.width, v.height)\n }\n"; + } + else + { + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2] || cv[3] !== v[3])\n {\n cv[0] = v[0];\n cv[1] = v[1];\n cv[2] = v[2];\n cv[3] = v[3];\n\n gl.uniform4f(ud." + i + ".location, v[0], v[1], v[2], v[3])\n }\n \n"; + } + } + else + { + var templateType = (data.size === 1) ? GLSL_TO_SINGLE_SETTERS_CACHED : GLSL_TO_ARRAY_SETTERS; + + var template = templateType[data.type].replace('location', ("ud." + i + ".location")); + + func += "\n cv = ud." + i + ".value;\n v = uv." + i + ";\n " + template + ";\n"; + } + } + + return new Function('ud', 'uv', 'renderer', func); // eslint-disable-line no-new-func +} + +var fragTemplate = [ + 'precision mediump float;', + 'void main(void){', + 'float test = 0.1;', + '%forloop%', + 'gl_FragColor = vec4(0.0);', + '}' ].join('\n'); + +function checkMaxIfStatementsInShader(maxIfs, gl) +{ + if (maxIfs === 0) + { + throw new Error('Invalid value of `0` passed to `checkMaxIfStatementsInShader`'); + } + + var shader = gl.createShader(gl.FRAGMENT_SHADER); + + while (true) // eslint-disable-line no-constant-condition + { + var fragmentSrc = fragTemplate.replace(/%forloop%/gi, generateIfTestSrc(maxIfs)); + + gl.shaderSource(shader, fragmentSrc); + gl.compileShader(shader); + + if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) + { + maxIfs = (maxIfs / 2) | 0; + } + else + { + // valid! + break; + } + } + + return maxIfs; +} + +function generateIfTestSrc(maxIfs) +{ + var src = ''; + + for (var i = 0; i < maxIfs; ++i) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxIfs - 1) + { + src += "if(test == " + i + ".0){}"; + } + } + + return src; +} + +// Cache the result to prevent running this over and over +var unsafeEval; + +/** + * Not all platforms allow to generate function code (e.g., `new Function`). + * this provides the platform-level detection. + * + * @private + * @returns {boolean} + */ +function unsafeEvalSupported() +{ + if (typeof unsafeEval === 'boolean') + { + return unsafeEval; + } + + try + { + /* eslint-disable no-new-func */ + var func = new Function('param1', 'param2', 'param3', 'return param1[param2] === param3;'); + /* eslint-enable no-new-func */ + + unsafeEval = func({ a: 'b' }, 'a', 'b') === true; + } + catch (e) + { + unsafeEval = false; + } + + return unsafeEval; +} + +var defaultFragment = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor *= texture2D(uSampler, vTextureCoord);\n}"; + +var defaultVertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n vTextureCoord = aTextureCoord;\n}\n"; + +// import * as from '../systems/shader/shader'; + +var UID$3 = 0; + +var nameCache = {}; + +/** + * Helper class to create a shader program. + * + * @class + * @memberof PIXI + */ +var Program = function Program(vertexSrc, fragmentSrc, name) +{ + if ( name === void 0 ) name = 'pixi-shader'; + + this.id = UID$3++; + + /** + * The vertex shader. + * + * @member {string} + */ + this.vertexSrc = vertexSrc || Program.defaultVertexSrc; + + /** + * The fragment shader. + * + * @member {string} + */ + this.fragmentSrc = fragmentSrc || Program.defaultFragmentSrc; + + this.vertexSrc = this.vertexSrc.trim(); + this.fragmentSrc = this.fragmentSrc.trim(); + + if (this.vertexSrc.substring(0, 8) !== '#version') + { + name = name.replace(/\s+/g, '-'); + + if (nameCache[name]) + { + nameCache[name]++; + name += "-" + (nameCache[name]); + } + else + { + nameCache[name] = 1; + } + + this.vertexSrc = "#define SHADER_NAME " + name + "\n" + (this.vertexSrc); + this.fragmentSrc = "#define SHADER_NAME " + name + "\n" + (this.fragmentSrc); + + this.vertexSrc = setPrecision(this.vertexSrc, settings.PRECISION_VERTEX, PRECISION.HIGH); + this.fragmentSrc = setPrecision(this.fragmentSrc, settings.PRECISION_FRAGMENT, getMaxFragmentPrecision()); + } + + // currently this does not extract structs only default types + this.extractData(this.vertexSrc, this.fragmentSrc); + + // this is where we store shader references.. + this.glPrograms = {}; + + this.syncUniforms = null; +}; + +var staticAccessors$3 = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + +/** + * Extracts the data for a buy creating a small test program + * or reading the src directly. + * @protected + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + */ +Program.prototype.extractData = function extractData (vertexSrc, fragmentSrc) +{ + var gl = getTestContext(); + + if (gl) + { + var program = compileProgram(gl, vertexSrc, fragmentSrc); + + this.attributeData = this.getAttributeData(program, gl); + this.uniformData = this.getUniformData(program, gl); + + gl.deleteProgram(program); + } + else + { + this.uniformData = {}; + this.attributeData = {}; + } +}; + +/** + * returns the attribute data from the program + * @private + * + * @param {WebGLProgram} [program] - the WebGL program + * @param {WebGLRenderingContext} [gl] - the WebGL context + * + * @returns {object} the attribute data for this program + */ +Program.prototype.getAttributeData = function getAttributeData (program, gl) +{ + var attributes = {}; + var attributesArray = []; + + var totalAttributes = gl.getProgramParameter(program, gl.ACTIVE_ATTRIBUTES); + + for (var i = 0; i < totalAttributes; i++) + { + var attribData = gl.getActiveAttrib(program, i); + var type = mapType(gl, attribData.type); + + /*eslint-disable */ + var data = { + type: type, + name: attribData.name, + size: mapSize(type), + location: 0, + }; + /* eslint-enable */ + + attributes[attribData.name] = data; + attributesArray.push(data); + } + + attributesArray.sort(function (a, b) { return (a.name > b.name) ? 1 : -1; }); // eslint-disable-line no-confusing-arrow + + for (var i$1 = 0; i$1 < attributesArray.length; i$1++) + { + attributesArray[i$1].location = i$1; + } + + return attributes; +}; + +/** + * returns the uniform data from the program + * @private + * + * @param {webGL-program} [program] - the webgl program + * @param {context} [gl] - the WebGL context + * + * @returns {object} the uniform data for this program + */ +Program.prototype.getUniformData = function getUniformData (program, gl) +{ + var uniforms = {}; + + var totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS); + + // TODO expose this as a prop? + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$'); + + for (var i = 0; i < totalUniforms; i++) + { + var uniformData = gl.getActiveUniform(program, i); + var name = uniformData.name.replace(/\[.*?\]/, ''); + + var isArray = uniformData.name.match(/\[.*?\]/, ''); + var type = mapType(gl, uniformData.type); + + /*eslint-disable */ + uniforms[name] = { + type: type, + size: uniformData.size, + isArray:isArray, + value: defaultValue(type, uniformData.size), + }; + /* eslint-enable */ + } + + return uniforms; +}; + +/** + * The default vertex shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultVertexSrc.get = function () +{ + return defaultVertex; +}; + +/** + * The default fragment shader source + * + * @static + * @constant + * @member {string} + */ +staticAccessors$3.defaultFragmentSrc.get = function () +{ + return defaultFragment; +}; + +/** + * A short hand function to create a program based of a vertex and fragment shader + * this method will also check to see if there is a cached program. + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Program} an shiny new Pixi shader! + */ +Program.from = function from (vertexSrc, fragmentSrc, name) +{ + var key = vertexSrc + fragmentSrc; + + var program = ProgramCache[key]; + + if (!program) + { + ProgramCache[key] = program = new Program(vertexSrc, fragmentSrc, name); + } + + return program; +}; + +Object.defineProperties( Program, staticAccessors$3 ); + +/** + * A helper class for shaders + * + * @class + * @memberof PIXI + */ +var Shader = function Shader(program, uniforms) +{ + /** + * Program that the shader uses + * + * @member {PIXI.Program} + */ + this.program = program; + + // lets see whats been passed in + // uniforms should be converted to a uniform group + if (uniforms) + { + if (uniforms instanceof UniformGroup) + { + this.uniformGroup = uniforms; + } + else + { + this.uniformGroup = new UniformGroup(uniforms); + } + } + else + { + this.uniformGroup = new UniformGroup({}); + } + + // time to build some getters and setters! + // I guess down the line this could sort of generate an instruction list rather than use dirty ids? + // does the trick for now though! + for (var i in program.uniformData) + { + if (this.uniformGroup.uniforms[i] instanceof Array) + { + this.uniformGroup.uniforms[i] = new Float32Array(this.uniformGroup.uniforms[i]); + } + } +}; + +var prototypeAccessors$2$1 = { uniforms: { configurable: true } }; + +// TODO move to shader system.. +Shader.prototype.checkUniformExists = function checkUniformExists (name, group) +{ + if (group.uniforms[name]) + { + return true; + } + + for (var i in group.uniforms) + { + var uniform = group.uniforms[i]; + + if (uniform.group) + { + if (this.checkUniformExists(name, uniform)) + { + return true; + } + } + } + + return false; +}; + +Shader.prototype.destroy = function destroy () +{ + // usage count on programs? + // remove if not used! + this.uniformGroup = null; +}; + +/** + * Shader uniform values, shortcut for `uniformGroup.uniforms` + * @readonly + * @member {object} + */ +prototypeAccessors$2$1.uniforms.get = function () +{ + return this.uniformGroup.uniforms; +}; + +/** + * A short hand function to create a shader based of a vertex and fragment shader + * + * @param {string} [vertexSrc] - The source of the vertex shader. + * @param {string} [fragmentSrc] - The source of the fragment shader. + * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones. + * + * @returns {PIXI.Shader} an shiny new Pixi shader! + */ +Shader.from = function from (vertexSrc, fragmentSrc, uniforms) +{ + var program = Program.from(vertexSrc, fragmentSrc); + + return new Shader(program, uniforms); +}; + +Object.defineProperties( Shader.prototype, prototypeAccessors$2$1 ); + +/* eslint-disable max-len */ + +var BLEND = 0; +var OFFSET = 1; +var CULLING = 2; +var DEPTH_TEST = 3; +var WINDING = 4; + +/** + * This is a WebGL state, and is is passed The WebGL StateManager. + * + * Each mesh rendered may require WebGL to be in a different state. + * For example you may want different blend mode or to enable polygon offsets + * + * @class + * @memberof PIXI + */ +var State = function State() +{ + this.data = 0; + + this.blendMode = BLEND_MODES.NORMAL; + this.polygonOffset = 0; + + this.blend = true; + // this.depthTest = true; +}; + +var prototypeAccessors$3$1 = { blend: { configurable: true },offsets: { configurable: true },culling: { configurable: true },depthTest: { configurable: true },clockwiseFrontFace: { configurable: true },blendMode: { configurable: true },polygonOffset: { configurable: true } }; + +/** + * Activates blending of the computed fragment color values + * + * @member {boolean} + */ +prototypeAccessors$3$1.blend.get = function () +{ + return !!(this.data & (1 << BLEND)); +}; + +prototypeAccessors$3$1.blend.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << BLEND)) !== value) + { + this.data ^= (1 << BLEND); + } +}; + +/** + * Activates adding an offset to depth values of polygon's fragments + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.offsets.get = function () +{ + return !!(this.data & (1 << OFFSET)); +}; + +prototypeAccessors$3$1.offsets.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << OFFSET)) !== value) + { + this.data ^= (1 << OFFSET); + } +}; + +/** + * Activates culling of polygons. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.culling.get = function () +{ + return !!(this.data & (1 << CULLING)); +}; + +prototypeAccessors$3$1.culling.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << CULLING)) !== value) + { + this.data ^= (1 << CULLING); + } +}; + +/** + * Activates depth comparisons and updates to the depth buffer. + * + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.depthTest.get = function () +{ + return !!(this.data & (1 << DEPTH_TEST)); +}; + +prototypeAccessors$3$1.depthTest.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << DEPTH_TEST)) !== value) + { + this.data ^= (1 << DEPTH_TEST); + } +}; + +/** + * Specifies whether or not front or back-facing polygons can be culled. + * @member {boolean} + * @default false + */ +prototypeAccessors$3$1.clockwiseFrontFace.get = function () +{ + return !!(this.data & (1 << WINDING)); +}; + +prototypeAccessors$3$1.clockwiseFrontFace.set = function (value) // eslint-disable-line require-jsdoc +{ + if (!!(this.data & (1 << WINDING)) !== value) + { + this.data ^= (1 << WINDING); + } +}; + +/** + * The blend mode to be applied when this state is set. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * Setting this mode to anything other than NO_BLEND will automatically switch blending on. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ +prototypeAccessors$3$1.blendMode.get = function () +{ + return this._blendMode; +}; + +prototypeAccessors$3$1.blendMode.set = function (value) // eslint-disable-line require-jsdoc +{ + this.blend = (value !== BLEND_MODES.NONE); + this._blendMode = value; +}; + +/** + * The polygon offset. Setting this property to anything other than 0 will automatically enable polygon offset fill. + * + * @member {number} + * @default 0 + */ +prototypeAccessors$3$1.polygonOffset.get = function () +{ + return this._polygonOffset; +}; + +prototypeAccessors$3$1.polygonOffset.set = function (value) // eslint-disable-line require-jsdoc +{ + this.offsets = !!value; + this._polygonOffset = value; +}; + +State.for2d = function for2d () +{ + var state = new State(); + + state.depthTest = false; + state.blend = true; + + return state; +}; + +Object.defineProperties( State.prototype, prototypeAccessors$3$1 ); + +var defaultVertex$1 = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +var defaultFragment$1 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n gl_FragColor = texture2D(uSampler, vTextureCoord);\n}\n"; + +/** + * Filter is a special type of WebGL shader that is applied to the screen. + * + * {@link http://pixijs.io/examples/#/filters/blur-filter.js Example} of the + * {@link PIXI.filters.BlurFilter BlurFilter}. + * + * ### Usage + * Filters can be applied to any DisplayObject or Container. + * PixiJS' `FilterSystem` renders the container into temporary Framebuffer, + * then filter renders it to the screen. + * Multiple filters can be added to the `filters` array property and stacked on each other. + * + * ``` + * const filter = new PIXI.Filter(myShaderVert, myShaderFrag, { myUniform: 0.5 }); + * const container = new PIXI.Container(); + * container.filters = [filter]; + * ``` + * + * ### Previous Version Differences + * + * In PixiJS **v3**, a filter was always applied to _whole screen_. + * + * In PixiJS **v4**, a filter can be applied _only part of the screen_. + * Developers had to create a set of uniforms to deal with coordinates. + * + * In PixiJS **v5** combines _both approaches_. + * Developers can use normal coordinates of v3 and then allow filter to use partial Framebuffers, + * bringing those extra uniforms into account. + * + * Also be aware that we have changed default vertex shader, please consult + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * ### Built-in Uniforms + * + * PixiJS viewport uses screen (CSS) coordinates, `(0, 0, renderer.screen.width, renderer.screen.height)`, + * and `projectionMatrix` uniform maps it to the gl viewport. + * + * **uSampler** + * + * The most important uniform is the input texture that container was rendered into. + * _Important note: as with all Framebuffers in PixiJS, both input and output are + * premultiplied by alpha._ + * + * By default, input normalized coordinates are passed to fragment shader with `vTextureCoord`. + * Use it to sample the input. + * + * ``` + * const fragment = ` + * varying vec2 vTextureCoord; + * uniform sampler2D uSampler; + * void main(void) + * { + * gl_FragColor = texture2D(uSampler, vTextureCoord); + * } + * `; + * + * const myFilter = new PIXI.Filter(null, fragment); + * ``` + * + * This filter is just one uniform less than {@link PIXI.filters.AlphaFilter AlphaFilter}. + * + * **outputFrame** + * + * The `outputFrame` holds the rectangle where filter is applied in screen (CSS) coordinates. + * It's the same as `renderer.screen` for a fullscreen filter. + * Only a part of `outputFrame.zw` size of temporary Framebuffer is used, + * `(0, 0, outputFrame.width, outputFrame.height)`, + * + * Filters uses this quad to normalized (0-1) space, its passed into `aVertexPosition` attribute. + * To calculate vertex position in screen space using normalized (0-1) space: + * + * ``` + * vec4 filterVertexPosition( void ) + * { + * vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy; + * return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0); + * } + * ``` + * + * **inputSize** + * + * Temporary framebuffer is different, it can be either the size of screen, either power-of-two. + * The `inputSize.xy` are size of temporary framebuffer that holds input. + * The `inputSize.zw` is inverted, it's a shortcut to evade division inside the shader. + * + * Set `inputSize.xy = outputFrame.zw` for a fullscreen filter. + * + * To calculate input normalized coordinate, you have to map it to filter normalized space. + * Multiply by `outputFrame.zw` to get input coordinate. + * Divide by `inputSize.xy` to get input normalized coordinate. + * + * ``` + * vec2 filterTextureCoord( void ) + * { + * return aVertexPosition * (outputFrame.zw * inputSize.zw); // same as /inputSize.xy + * } + * ``` + * **resolution** + * + * The `resolution` is the ratio of screen (CSS) pixels to real pixels. + * + * **inputPixel** + * + * `inputPixel.xy` is the size of framebuffer in real pixels, same as `inputSize.xy * resolution` + * `inputPixel.zw` is inverted `inputPixel.xy`. + * + * It's handy for filters that use neighbour pixels, like {@link PIXI.filters.FXAAFilter FXAAFilter}. + * + * **inputClamp** + * + * If you try to get info from outside of used part of Framebuffer - you'll get undefined behaviour. + * For displacements, coordinates has to be clamped. + * + * The `inputClamp.xy` is left-top pixel center, you may ignore it, because we use left-top part of Framebuffer + * `inputClamp.zw` is bottom-right pixel center. + * + * ``` + * vec4 color = texture2D(uSampler, clamp(modifigedTextureCoord, inputClamp.xy, inputClamp.zw)) + * ``` + * OR + * ``` + * vec4 color = texture2D(uSampler, min(modifigedTextureCoord, inputClamp.zw)) + * ``` + * + * ### Additional Information + * + * Complete documentation on Filter usage is located in the + * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}. + * + * Since PixiJS only had a handful of built-in filters, additional filters can be downloaded + * {@link https://github.com/pixijs/pixi-filters here} from the PixiJS Filters repository. + * + * @class + * @memberof PIXI + * @extends PIXI.Shader + */ +var Filter = /*@__PURE__*/(function (Shader) { + function Filter(vertexSrc, fragmentSrc, uniforms) + { + var program = Program.from(vertexSrc || Filter.defaultVertexSrc, + fragmentSrc || Filter.defaultFragmentSrc); + + Shader.call(this, program, uniforms); + + /** + * The padding of the filter. Some filters require extra space to breath such as a blur. + * Increasing this will add extra width and height to the bounds of the object that the + * filter is applied to. + * + * @member {number} + */ + this.padding = 0; + + /** + * The resolution of the filter. Setting this to be lower will lower the quality but + * increase the performance of the filter. + * + * @member {number} + */ + this.resolution = settings.FILTER_RESOLUTION; + + /** + * If enabled is true the filter is applied, if false it will not. + * + * @member {boolean} + */ + this.enabled = true; + + /** + * If enabled, PixiJS will fit the filter area into boundaries for better performance. + * Switch it off if it does not work for specific shader. + * + * @member {boolean} + */ + this.autoFit = true; + + /** + * Legacy filters use position and uvs from attributes + * @member {boolean} + * @readonly + */ + this.legacy = !!this.program.attributeData.aTextureCoord; + + /** + * The WebGL state the filter requires to render + * @member {PIXI.State} + */ + this.state = new State(); + } + + if ( Shader ) Filter.__proto__ = Shader; + Filter.prototype = Object.create( Shader && Shader.prototype ); + Filter.prototype.constructor = Filter; + + var prototypeAccessors = { blendMode: { configurable: true } }; + var staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } }; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it + * @param {object} [currentState] - It's current state of filter. + * There are some useful properties in the currentState : + * target, filters, sourceFrame, destinationFrame, renderTarget, resolution + */ + Filter.prototype.apply = function apply (filterManager, input, output, clear, currentState) + { + // do as you please! + + filterManager.applyFilter(this, input, output, clear, currentState); + + // or just do a regular render.. + }; + + /** + * Sets the blendmode of the filter + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + */ + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + prototypeAccessors.blendMode.set = function (value) // eslint-disable-line require-jsdoc + { + this.state.blendMode = value; + }; + + /** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultVertexSrc.get = function () + { + return defaultVertex$1; + }; + + /** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ + staticAccessors.defaultFragmentSrc.get = function () + { + return defaultFragment$1; + }; + + Object.defineProperties( Filter.prototype, prototypeAccessors ); + Object.defineProperties( Filter, staticAccessors ); + + return Filter; +}(Shader)); + +/** + * Used for caching shader IDs + * + * @static + * @type {object} + * @protected + */ +Filter.SOURCE_KEY_MAP = {}; + +var vertex = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 otherMatrix;\n\nvarying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\n}\n"; + +var fragment = "varying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform sampler2D mask;\nuniform float alpha;\nuniform float npmAlpha;\nuniform vec4 maskClamp;\n\nvoid main(void)\n{\n float clip = step(3.5,\n step(maskClamp.x, vMaskCoord.x) +\n step(maskClamp.y, vMaskCoord.y) +\n step(vMaskCoord.x, maskClamp.z) +\n step(vMaskCoord.y, maskClamp.w));\n\n vec4 original = texture2D(uSampler, vTextureCoord);\n vec4 masky = texture2D(mask, vMaskCoord);\n float alphaMul = 1.0 - npmAlpha * (1.0 - masky.a);\n\n original *= (alphaMul * masky.r * alpha * clip);\n\n gl_FragColor = original;\n}\n"; + +var tempMat = new Matrix(); + +/** + * Class controls uv mapping from Texture normal space to BaseTexture normal space. + * + * Takes `trim` and `rotate` into account. May contain clamp settings for Meshes and TilingSprite. + * + * Can be used in Texture `uvMatrix` field, or separately, you can use different clamp settings on the same texture. + * If you want to add support for texture region of certain feature or filter, that's what you're looking for. + * + * Takes track of Texture changes through `_lastTextureID` private field. + * Use `update()` method call to track it from outside. + * + * @see PIXI.Texture + * @see PIXI.Mesh + * @see PIXI.TilingSprite + * @class + * @memberof PIXI + */ +var TextureMatrix = function TextureMatrix(texture, clampMargin) +{ + this._texture = texture; + + /** + * Matrix operation that converts texture region coords to texture coords + * @member {PIXI.Matrix} + * @readonly + */ + this.mapCoord = new Matrix(); + + /** + * Clamp region for normalized coords, left-top pixel center in xy , bottom-right in zw. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampFrame = new Float32Array(4); + + /** + * Normalized clamp offset. + * Calculated based on clampOffset. + * @member {Float32Array} + * @readonly + */ + this.uClampOffset = new Float32Array(2); + + /** + * Tracks Texture frame changes + * @member {number} + * @protected + */ + this._updateID = -1; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to 1.5 if you texture has repeated right and bottom lines, that leads to smoother borders + * + * @default 0 + * @member {number} + */ + this.clampOffset = 0; + + /** + * Changes frame clamping + * Works with TilingSprite and Mesh + * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas + * + * @default 0.5 + * @member {number} + */ + this.clampMargin = (typeof clampMargin === 'undefined') ? 0.5 : clampMargin; + + /** + * If texture size is the same as baseTexture + * @member {boolean} + * @default false + * @readonly + */ + this.isSimple = false; +}; + +var prototypeAccessors$4$1 = { texture: { configurable: true } }; + +/** + * texture property + * @member {PIXI.Texture} + */ +prototypeAccessors$4$1.texture.get = function () +{ + return this._texture; +}; + +prototypeAccessors$4$1.texture.set = function (value) // eslint-disable-line require-jsdoc +{ + this._texture = value; + this._updateID = -1; +}; + +/** + * Multiplies uvs array to transform + * @param {Float32Array} uvs mesh uvs + * @param {Float32Array} [out=uvs] output + * @returns {Float32Array} output + */ +TextureMatrix.prototype.multiplyUvs = function multiplyUvs (uvs, out) +{ + if (out === undefined) + { + out = uvs; + } + + var mat = this.mapCoord; + + for (var i = 0; i < uvs.length; i += 2) + { + var x = uvs[i]; + var y = uvs[i + 1]; + + out[i] = (x * mat.a) + (y * mat.c) + mat.tx; + out[i + 1] = (x * mat.b) + (y * mat.d) + mat.ty; + } + + return out; +}; + +/** + * updates matrices if texture was changed + * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case + * @returns {boolean} whether or not it was updated + */ +TextureMatrix.prototype.update = function update (forceUpdate) +{ + var tex = this._texture; + + if (!tex || !tex.valid) + { + return false; + } + + if (!forceUpdate + && this._updateID === tex._updateID) + { + return false; + } + + this._updateID = tex._updateID; + + var uvs = tex._uvs; + + this.mapCoord.set(uvs.x1 - uvs.x0, uvs.y1 - uvs.y0, uvs.x3 - uvs.x0, uvs.y3 - uvs.y0, uvs.x0, uvs.y0); + + var orig = tex.orig; + var trim = tex.trim; + + if (trim) + { + tempMat.set(orig.width / trim.width, 0, 0, orig.height / trim.height, + -trim.x / trim.width, -trim.y / trim.height); + this.mapCoord.append(tempMat); + } + + var texBase = tex.baseTexture; + var frame = this.uClampFrame; + var margin = this.clampMargin / texBase.resolution; + var offset = this.clampOffset; + + frame[0] = (tex._frame.x + margin + offset) / texBase.width; + frame[1] = (tex._frame.y + margin + offset) / texBase.height; + frame[2] = (tex._frame.x + tex._frame.width - margin + offset) / texBase.width; + frame[3] = (tex._frame.y + tex._frame.height - margin + offset) / texBase.height; + this.uClampOffset[0] = offset / texBase.realWidth; + this.uClampOffset[1] = offset / texBase.realHeight; + + this.isSimple = tex._frame.width === texBase.width + && tex._frame.height === texBase.height + && tex.rotate === 0; + + return true; +}; + +Object.defineProperties( TextureMatrix.prototype, prototypeAccessors$4$1 ); + +/** + * This handles a Sprite acting as a mask, as opposed to a Graphic. + * + * WebGL only. + * + * @class + * @extends PIXI.Filter + * @memberof PIXI + */ +var SpriteMaskFilter = /*@__PURE__*/(function (Filter) { + function SpriteMaskFilter(sprite) + { + var maskMatrix = new Matrix(); + + Filter.call(this, vertex, fragment); + + sprite.renderable = false; + + /** + * Sprite mask + * @member {PIXI.Sprite} + */ + this.maskSprite = sprite; + + /** + * Mask matrix + * @member {PIXI.Matrix} + */ + this.maskMatrix = maskMatrix; + } + + if ( Filter ) SpriteMaskFilter.__proto__ = Filter; + SpriteMaskFilter.prototype = Object.create( Filter && Filter.prototype ); + SpriteMaskFilter.prototype.constructor = SpriteMaskFilter; + + /** + * Applies the filter + * + * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from + * @param {PIXI.RenderTexture} input - The input render target. + * @param {PIXI.RenderTexture} output - The target to output to. + * @param {boolean} clear - Should the output be cleared before rendering to it. + */ + SpriteMaskFilter.prototype.apply = function apply (filterManager, input, output, clear) + { + var maskSprite = this.maskSprite; + var tex = this.maskSprite.texture; + + if (!tex.valid) + { + return; + } + if (!tex.transform) + { + // margin = 0.0, let it bleed a bit, shader code becomes easier + // assuming that atlas textures were made with 1-pixel padding + tex.transform = new TextureMatrix(tex, 0.0); + } + tex.transform.update(); + + this.uniforms.npmAlpha = tex.baseTexture.premultiplyAlpha ? 0.0 : 1.0; + this.uniforms.mask = tex; + // get _normalized sprite texture coords_ and convert them to _normalized atlas texture coords_ with `prepend` + this.uniforms.otherMatrix = filterManager.calculateSpriteMatrix(this.maskMatrix, maskSprite) + .prepend(tex.transform.mapCoord); + this.uniforms.alpha = maskSprite.worldAlpha; + this.uniforms.maskClamp = tex.transform.uClampFrame; + + filterManager.applyFilter(this, input, output, clear); + }; + + return SpriteMaskFilter; +}(Filter)); + +/** + * System plugin to the renderer to manage masks. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var MaskSystem = /*@__PURE__*/(function (System) { + function MaskSystem(renderer) + { + System.call(this, renderer); + + // TODO - we don't need both! + /** + * `true` if current pushed masked is scissor + * @member {boolean} + * @readonly + */ + this.scissor = false; + + /** + * Mask data + * @member {PIXI.Graphics} + * @readonly + */ + this.scissorData = null; + + /** + * Target to mask + * @member {PIXI.DisplayObject} + * @readonly + */ + this.scissorRenderTarget = null; + + /** + * Enable scissor + * @member {boolean} + * @readonly + */ + this.enableScissor = false; + + /** + * Pool of used sprite mask filters + * @member {PIXI.SpriteMaskFilter[]} + * @readonly + */ + this.alphaMaskPool = []; + + /** + * Current index of alpha mask pool + * @member {number} + * @default 0 + * @readonly + */ + this.alphaMaskIndex = 0; + } + + if ( System ) MaskSystem.__proto__ = System; + MaskSystem.prototype = Object.create( System && System.prototype ); + MaskSystem.prototype.constructor = MaskSystem; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.push = function push (target, maskData) + { + // TODO the root check means scissor rect will not + // be used on render textures more info here: + // https://github.com/pixijs/pixi.js/pull/3545 + + if (maskData.isSprite) + { + this.pushSpriteMask(target, maskData); + } + else if (this.enableScissor + && !this.scissor + && this.renderer._activeRenderTarget.root + && !this.renderer.stencil.stencilMaskStack.length + && maskData.isFastRect()) + { + var matrix = maskData.worldTransform; + + var rot = Math.atan2(matrix.b, matrix.a); + + // use the nearest degree! + rot = Math.round(rot * (180 / Math.PI)); + + if (rot % 90) + { + this.pushStencilMask(maskData); + } + else + { + this.pushScissorMask(target, maskData); + } + } + else + { + this.pushStencilMask(maskData); + } + }; + + /** + * Removes the last mask from the mask stack and doesn't return it. + * + * @param {PIXI.DisplayObject} target - Display Object to pop the mask from + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pop = function pop (target, maskData) + { + if (maskData.isSprite) + { + this.popSpriteMask(target, maskData); + } + else if (this.enableScissor && !this.renderer.stencil.stencilMaskStack.length) + { + this.popScissorMask(target, maskData); + } + else + { + this.popStencilMask(target, maskData); + } + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.RenderTexture} target - Display Object to push the sprite mask to + * @param {PIXI.Sprite} maskData - Sprite to be used as the mask + */ + MaskSystem.prototype.pushSpriteMask = function pushSpriteMask (target, maskData) + { + var alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex]; + + if (!alphaMaskFilter) + { + alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex] = [new SpriteMaskFilter(maskData)]; + } + + alphaMaskFilter[0].resolution = this.renderer.resolution; + alphaMaskFilter[0].maskSprite = maskData; + + var stashFilterArea = target.filterArea; + + target.filterArea = maskData.getBounds(true); + this.renderer.filter.push(target, alphaMaskFilter); + target.filterArea = stashFilterArea; + + this.alphaMaskIndex++; + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popSpriteMask = function popSpriteMask () + { + this.renderer.filter.pop(); + this.alphaMaskIndex--; + }; + + /** + * Applies the Mask and adds it to the current filter stack. + * + * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushStencilMask = function pushStencilMask (maskData) + { + this.renderer.batch.flush(); + this.renderer.stencil.pushStencil(maskData); + }; + + /** + * Removes the last filter from the filter stack and doesn't return it. + * + */ + MaskSystem.prototype.popStencilMask = function popStencilMask () + { + // this.renderer.currentRenderer.stop(); + this.renderer.stencil.popStencil(); + }; + + /** + * + * @param {PIXI.DisplayObject} target - Display Object to push the mask to + * @param {PIXI.Graphics} maskData - The masking data. + */ + MaskSystem.prototype.pushScissorMask = function pushScissorMask (target, maskData) + { + maskData.renderable = true; + + var renderTarget = this.renderer._activeRenderTarget; + + var bounds = maskData.getBounds(); + + bounds.fit(renderTarget.size); + maskData.renderable = false; + + this.renderer.gl.enable(this.renderer.gl.SCISSOR_TEST); + + var resolution = this.renderer.resolution; + + this.renderer.gl.scissor( + bounds.x * resolution, + (renderTarget.root ? renderTarget.size.height - bounds.y - bounds.height : bounds.y) * resolution, + bounds.width * resolution, + bounds.height * resolution + ); + + this.scissorRenderTarget = renderTarget; + this.scissorData = maskData; + this.scissor = true; + }; + + /** + * Pop scissor mask + * + */ + MaskSystem.prototype.popScissorMask = function popScissorMask () + { + this.scissorRenderTarget = null; + this.scissorData = null; + this.scissor = false; + + // must be scissor! + var ref = this.renderer; + var gl = ref.gl; + + gl.disable(gl.SCISSOR_TEST); + }; + + return MaskSystem; +}(System)); + +/** + * System plugin to the renderer to manage stencils (used for masks). + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StencilSystem = /*@__PURE__*/(function (System) { + function StencilSystem(renderer) + { + System.call(this, renderer); + + /** + * The mask stack + * @member {PIXI.Graphics[]} + */ + this.stencilMaskStack = []; + } + + if ( System ) StencilSystem.__proto__ = System; + StencilSystem.prototype = Object.create( System && System.prototype ); + StencilSystem.prototype.constructor = StencilSystem; + + /** + * Changes the mask stack that is used by this System. + * + * @param {PIXI.Graphics[]} stencilMaskStack - The mask stack + */ + StencilSystem.prototype.setMaskStack = function setMaskStack (stencilMaskStack) + { + var gl = this.renderer.gl; + var curStackLen = this.stencilMaskStack.length; + + this.stencilMaskStack = stencilMaskStack; + if (stencilMaskStack.length !== curStackLen) + { + if (stencilMaskStack.length === 0) + { + gl.disable(gl.STENCIL_TEST); + } + else + { + gl.enable(gl.STENCIL_TEST); + this._useCurrent(); + } + } + }; + + /** + * Applies the Mask and adds it to the current stencil stack. @alvin + * + * @param {PIXI.Graphics} graphics - The mask + */ + StencilSystem.prototype.pushStencil = function pushStencil (graphics) + { + var gl = this.renderer.gl; + var prevMaskCount = this.stencilMaskStack.length; + + if (prevMaskCount === 0) + { + // force use stencil texture in current framebuffer + this.renderer.framebuffer.forceStencil(); + gl.enable(gl.STENCIL_TEST); + } + + this.stencilMaskStack.push(graphics); + + // Increment the reference stencil value where the new mask overlaps with the old ones. + gl.colorMask(false, false, false, false); + gl.stencilFunc(gl.EQUAL, prevMaskCount, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.INCR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + }; + + /** + * Removes the last mask from the stencil stack. @alvin + */ + StencilSystem.prototype.popStencil = function popStencil () + { + var gl = this.renderer.gl; + var graphics = this.stencilMaskStack.pop(); + + if (this.stencilMaskStack.length === 0) + { + // the stack is empty! + gl.disable(gl.STENCIL_TEST); + gl.clear(gl.STENCIL_BUFFER_BIT); + gl.clearStencil(0); + } + else + { + // Decrement the reference stencil value where the popped mask overlaps with the other ones + gl.colorMask(false, false, false, false); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.DECR); + + graphics.renderable = true; + graphics.render(this.renderer); + this.renderer.batch.flush(); + graphics.renderable = false; + + this._useCurrent(); + } + }; + + /** + * Setup renderer to use the current stencil data. + * @private + */ + StencilSystem.prototype._useCurrent = function _useCurrent () + { + var gl = this.renderer.gl; + + gl.colorMask(true, true, true, true); + gl.stencilFunc(gl.EQUAL, this.stencilMaskStack.length, this._getBitwiseMask()); + gl.stencilOp(gl.KEEP, gl.KEEP, gl.KEEP); + }; + + /** + * Fill 1s equal to the number of acitve stencil masks. + * @private + * @return {number} The bitwise mask. + */ + StencilSystem.prototype._getBitwiseMask = function _getBitwiseMask () + { + return (1 << this.stencilMaskStack.length) - 1; + }; + + /** + * Destroys the mask stack. + * + */ + StencilSystem.prototype.destroy = function destroy () + { + System.prototype.destroy.call(this, this); + + this.stencilMaskStack = null; + }; + + return StencilSystem; +}(System)); + +/** + * System plugin to the renderer to manage the projection matrix. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var ProjectionSystem = /*@__PURE__*/(function (System) { + function ProjectionSystem(renderer) + { + System.call(this, renderer); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = null; + + /** + * Default destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.defaultFrame = null; + + /** + * Project matrix + * @member {PIXI.Matrix} + * @readonly + */ + this.projectionMatrix = new Matrix(); + + /** + * A transform that will be appended to the projection matrix + * if null, nothing will be applied + * @member {PIXI.Matrix} + */ + this.transform = null; + } + + if ( System ) ProjectionSystem.__proto__ = System; + ProjectionSystem.prototype = Object.create( System && System.prototype ); + ProjectionSystem.prototype.constructor = ProjectionSystem; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.update = function update (destinationFrame, sourceFrame, resolution, root) + { + this.destinationFrame = destinationFrame || this.destinationFrame || this.defaultFrame; + this.sourceFrame = sourceFrame || this.sourceFrame || destinationFrame; + + this.calculateProjection(this.destinationFrame, this.sourceFrame, resolution, root); + + if (this.transform) + { + this.projectionMatrix.append(this.transform); + } + + var renderer = this.renderer; + + renderer.globalUniforms.uniforms.projectionMatrix = this.projectionMatrix; + renderer.globalUniforms.update(); + + // this will work for now + // but would be sweet to stick and even on the global uniforms.. + if (renderer.shader.shader) + { + renderer.shader.syncUniformGroup(renderer.shader.shader.uniforms.globals); + } + }; + + /** + * Updates the projection matrix based on a projection frame (which is a rectangle) + * + * @param {PIXI.Rectangle} destinationFrame - The destination frame. + * @param {PIXI.Rectangle} sourceFrame - The source frame. + * @param {Number} resolution - Resolution + * @param {boolean} root - If is root + */ + ProjectionSystem.prototype.calculateProjection = function calculateProjection (destinationFrame, sourceFrame, resolution, root) + { + var pm = this.projectionMatrix; + + // I don't think we will need this line.. + // pm.identity(); + + if (!root) + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = -1 - (sourceFrame.y * pm.d); + } + else + { + pm.a = (1 / destinationFrame.width * 2) * resolution; + pm.d = (-1 / destinationFrame.height * 2) * resolution; + + pm.tx = -1 - (sourceFrame.x * pm.a); + pm.ty = 1 - (sourceFrame.y * pm.d); + } + }; + + /** + * Sets the transform of the active render target to the given matrix + * + * @param {PIXI.Matrix} matrix - The transformation matrix + */ + ProjectionSystem.prototype.setTransform = function setTransform ()// matrix) + { + // this._activeRenderTarget.transform = matrix; + }; + + return ProjectionSystem; +}(System)); + +var tempRect = new Rectangle(); + +/** + * System plugin to the renderer to manage render textures. + * + * Should be added after FramebufferSystem + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ + +var RenderTextureSystem = /*@__PURE__*/(function (System) { + function RenderTextureSystem(renderer) + { + System.call(this, renderer); + + /** + * The clear background color as rgba + * @member {number[]} + */ + this.clearColor = renderer._backgroundColorRgba; + + // TODO move this property somewhere else! + /** + * List of masks for the StencilSystem + * @member {PIXI.Graphics[]} + * @readonly + */ + this.defaultMaskStack = []; + + // empty render texture? + /** + * Render texture + * @member {PIXI.RenderTexture} + * @readonly + */ + this.current = null; + + /** + * Source frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.sourceFrame = new Rectangle(); + + /** + * Destination frame + * @member {PIXI.Rectangle} + * @readonly + */ + this.destinationFrame = new Rectangle(); + } + + if ( System ) RenderTextureSystem.__proto__ = System; + RenderTextureSystem.prototype = Object.create( System && System.prototype ); + RenderTextureSystem.prototype.constructor = RenderTextureSystem; + + /** + * Bind the current render texture + * @param {PIXI.RenderTexture} [renderTexture] - RenderTexture to bind, by default its `null`, the screen + * @param {PIXI.Rectangle} [sourceFrame] - part of screen that is mapped to the renderTexture + * @param {PIXI.Rectangle} [destinationFrame] - part of renderTexture, by default it has the same size as sourceFrame + */ + RenderTextureSystem.prototype.bind = function bind (renderTexture, sourceFrame, destinationFrame) + { + if ( renderTexture === void 0 ) renderTexture = null; + + this.current = renderTexture; + + var renderer = this.renderer; + + var resolution; + + if (renderTexture) + { + var baseTexture = renderTexture.baseTexture; + + resolution = baseTexture.resolution; + + if (!destinationFrame) + { + tempRect.width = baseTexture.realWidth; + tempRect.height = baseTexture.realHeight; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + this.renderer.framebuffer.bind(baseTexture.framebuffer, destinationFrame); + + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, false); + this.renderer.stencil.setMaskStack(baseTexture.stencilMaskStack); + } + else + { + resolution = this.renderer.resolution; + + // TODO these validation checks happen deeper down.. + // thing they can be avoided.. + if (!destinationFrame) + { + tempRect.width = renderer.width; + tempRect.height = renderer.height; + + destinationFrame = tempRect; + } + + if (!sourceFrame) + { + sourceFrame = destinationFrame; + } + + renderer.framebuffer.bind(null, destinationFrame); + + // TODO store this.. + this.renderer.projection.update(destinationFrame, sourceFrame, resolution, true); + this.renderer.stencil.setMaskStack(this.defaultMaskStack); + } + + this.sourceFrame.copyFrom(sourceFrame); + + this.destinationFrame.x = destinationFrame.x / resolution; + this.destinationFrame.y = destinationFrame.y / resolution; + + this.destinationFrame.width = destinationFrame.width / resolution; + this.destinationFrame.height = destinationFrame.height / resolution; + + if (sourceFrame === destinationFrame) + { + this.sourceFrame.copyFrom(this.destinationFrame); + } + }; + + /** + * Erases the render texture and fills the drawing area with a colour + * + * @param {number[]} [clearColor] - The color as rgba, default to use the renderer backgroundColor + * @return {PIXI.Renderer} Returns itself. + */ + RenderTextureSystem.prototype.clear = function clear (clearColor) + { + if (this.current) + { + clearColor = clearColor || this.current.baseTexture.clearColor; + } + else + { + clearColor = clearColor || this.clearColor; + } + + this.renderer.framebuffer.clear(clearColor[0], clearColor[1], clearColor[2], clearColor[3]); + }; + + RenderTextureSystem.prototype.resize = function resize ()// screenWidth, screenHeight) + { + // resize the root only! + this.bind(null); + }; + + /** + * Resets renderTexture state + */ + RenderTextureSystem.prototype.reset = function reset () + { + this.bind(null); + }; + + return RenderTextureSystem; +}(System)); + +/** + * Helper class to create a WebGL Program + * + * @class + * @memberof PIXI + */ +var GLProgram = function GLProgram(program, uniformData) +{ + /** + * The shader program + * + * @member {WebGLProgram} + */ + this.program = program; + + /** + * holds the uniform data which contains uniform locations + * and current uniform values used for caching and preventing unneeded GPU commands + * @member {Object} + */ + this.uniformData = uniformData; + + /** + * uniformGroups holds the various upload functions for the shader. Each uniform group + * and program have a unique upload function generated. + * @member {Object} + */ + this.uniformGroups = {}; +}; + +/** + * Destroys this program + */ +GLProgram.prototype.destroy = function destroy () +{ + this.uniformData = null; + this.uniformGroups = null; + this.program = null; +}; + +var UID$4 = 0; + +/** + * System plugin to the renderer to manage shaders. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var ShaderSystem = /*@__PURE__*/(function (System) { + function ShaderSystem(renderer) + { + System.call(this, renderer); + + // Validation check that this environment support `new Function` + this.systemCheck(); + + /** + * The current WebGL rendering context + * + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.shader = null; + this.program = null; + + /** + * Cache to holds the generated functions. Stored against UniformObjects unique signature + * @type {Object} + * @private + */ + this.cache = {}; + + this.id = UID$4++; + } + + if ( System ) ShaderSystem.__proto__ = System; + ShaderSystem.prototype = Object.create( System && System.prototype ); + ShaderSystem.prototype.constructor = ShaderSystem; + + /** + * Overrideable function by `@pixi/unsafe-eval` to silence + * throwing an error if platform doesn't support unsafe-evals. + * + * @private + */ + ShaderSystem.prototype.systemCheck = function systemCheck () + { + if (!unsafeEvalSupported()) + { + throw new Error('Current environment does not allow unsafe-eval, ' + + 'please use @pixi/unsafe-eval module to enable support.'); + } + }; + + ShaderSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + this.reset(); + }; + + /** + * Changes the current shader to the one given in parameter + * + * @param {PIXI.Shader} shader - the new shader + * @param {boolean} dontSync - false if the shader should automatically sync its uniforms. + * @returns {PIXI.GLProgram} the glProgram that belongs to the shader. + */ + ShaderSystem.prototype.bind = function bind (shader, dontSync) + { + shader.uniforms.globals = this.renderer.globalUniforms; + + var program = shader.program; + var glProgram = program.glPrograms[this.renderer.CONTEXT_UID] || this.generateShader(shader); + + this.shader = shader; + + // TODO - some current Pixi plugins bypass this.. so it not safe to use yet.. + if (this.program !== program) + { + this.program = program; + this.gl.useProgram(glProgram.program); + } + + if (!dontSync) + { + this.syncUniformGroup(shader.uniformGroup); + } + + return glProgram; + }; + + /** + * Uploads the uniforms values to the currently bound shader. + * + * @param {object} uniforms - the uniforms values that be applied to the current shader + */ + ShaderSystem.prototype.setUniforms = function setUniforms (uniforms) + { + var shader = this.shader.program; + var glProgram = shader.glPrograms[this.renderer.CONTEXT_UID]; + + shader.syncUniforms(glProgram.uniformData, uniforms, this.renderer); + }; + + ShaderSystem.prototype.syncUniformGroup = function syncUniformGroup (group) + { + var glProgram = this.getglProgram(); + + if (!group.static || group.dirtyId !== glProgram.uniformGroups[group.id]) + { + glProgram.uniformGroups[group.id] = group.dirtyId; + + this.syncUniforms(group, glProgram); + } + }; + + /** + * Overrideable by the @pixi/unsafe-eval package to use static + * syncUnforms instead. + * + * @private + */ + ShaderSystem.prototype.syncUniforms = function syncUniforms (group, glProgram) + { + var syncFunc = group.syncUniforms[this.shader.program.id] || this.createSyncGroups(group); + + syncFunc(glProgram.uniformData, group.uniforms, this.renderer); + }; + + ShaderSystem.prototype.createSyncGroups = function createSyncGroups (group) + { + var id = this.getSignature(group, this.shader.program.uniformData); + + if (!this.cache[id]) + { + this.cache[id] = generateUniformsSync(group, this.shader.program.uniformData); + } + + group.syncUniforms[this.shader.program.id] = this.cache[id]; + + return group.syncUniforms[this.shader.program.id]; + }; + + /** + * Takes a uniform group and data and generates a unique signature for them. + * + * @param {PIXI.UniformGroup} group the uniform group to get signature of + * @param {Object} uniformData uniform information generated by the shader + * @returns {String} Unique signature of the uniform group + * @private + */ + ShaderSystem.prototype.getSignature = function getSignature (group, uniformData) + { + var uniforms = group.uniforms; + + var strings = []; + + for (var i in uniforms) + { + strings.push(i); + + if (uniformData[i]) + { + strings.push(uniformData[i].type); + } + } + + return strings.join('-'); + }; + + /** + * Returns the underlying GLShade rof the currently bound shader. + * This can be handy for when you to have a little more control over the setting of your uniforms. + * + * @return {PIXI.GLProgram} the glProgram for the currently bound Shader for this context + */ + ShaderSystem.prototype.getglProgram = function getglProgram () + { + if (this.shader) + { + return this.shader.program.glPrograms[this.renderer.CONTEXT_UID]; + } + + return null; + }; + + /** + * Generates a glProgram version of the Shader provided. + * + * @private + * @param {PIXI.Shader} shader the shader that the glProgram will be based on. + * @return {PIXI.GLProgram} A shiny new glProgram! + */ + ShaderSystem.prototype.generateShader = function generateShader (shader) + { + var gl = this.gl; + + var program = shader.program; + + var attribMap = {}; + + for (var i in program.attributeData) + { + attribMap[i] = program.attributeData[i].location; + } + + var shaderProgram = compileProgram(gl, program.vertexSrc, program.fragmentSrc, attribMap); + var uniformData = {}; + + for (var i$1 in program.uniformData) + { + var data = program.uniformData[i$1]; + + uniformData[i$1] = { + location: gl.getUniformLocation(shaderProgram, i$1), + value: defaultValue(data.type, data.size), + }; + } + + var glProgram = new GLProgram(shaderProgram, uniformData); + + program.glPrograms[this.renderer.CONTEXT_UID] = glProgram; + + return glProgram; + }; + + /** + * Resets ShaderSystem state, does not affect WebGL state + */ + ShaderSystem.prototype.reset = function reset () + { + this.program = null; + this.shader = null; + }; + + /** + * Destroys this System and removes all its textures + */ + ShaderSystem.prototype.destroy = function destroy () + { + // TODO implement destroy method for ShaderSystem + this.destroyed = true; + }; + + return ShaderSystem; +}(System)); + +/** + * Maps gl blend combinations to WebGL. + * + * @memberof PIXI + * @function mapWebGLBlendModesToPixi + * @private + * @param {WebGLRenderingContext} gl - The rendering context. + * @param {number[][]} [array=[]] - The array to output into. + * @return {number[][]} Mapped modes. + */ +function mapWebGLBlendModesToPixi(gl, array) +{ + if ( array === void 0 ) array = []; + + // TODO - premultiply alpha would be different. + // add a boolean for that! + array[BLEND_MODES.NORMAL] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD] = [gl.ONE, gl.ONE]; + array[BLEND_MODES.MULTIPLY] = [gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SCREEN] = [gl.ONE, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.OVERLAY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DARKEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LIGHTEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_DODGE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR_BURN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HARD_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SOFT_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DIFFERENCE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.EXCLUSION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.HUE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.SATURATION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.COLOR] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.LUMINOSITY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.NONE] = [0, 0]; + + // not-premultiplied blend modes + array[BLEND_MODES.NORMAL_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.ADD_NPM] = [gl.SRC_ALPHA, gl.ONE, gl.ONE, gl.ONE]; + array[BLEND_MODES.SCREEN_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA]; + + // composite operations + array[BLEND_MODES.SRC_IN] = [gl.DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_OUT] = [gl.ONE_MINUS_DST_ALPHA, gl.ZERO]; + array[BLEND_MODES.SRC_ATOP] = [gl.DST_ALPHA, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_OVER] = [gl.ONE_MINUS_DST_ALPHA, gl.ONE]; + array[BLEND_MODES.DST_IN] = [gl.ZERO, gl.SRC_ALPHA]; + array[BLEND_MODES.DST_OUT] = [gl.ZERO, gl.ONE_MINUS_SRC_ALPHA]; + array[BLEND_MODES.DST_ATOP] = [gl.ONE_MINUS_DST_ALPHA, gl.SRC_ALPHA]; + + // SUBTRACT from flash + array[BLEND_MODES.SUBTRACT] = [gl.ONE, gl.ONE, gl.ONE, gl.ONE, gl.FUNC_REVERSE_SUBTRACT, gl.FUNC_ADD]; + + return array; +} + +var BLEND$1 = 0; +var OFFSET$1 = 1; +var CULLING$1 = 2; +var DEPTH_TEST$1 = 3; +var WINDING$1 = 4; + +/** + * System plugin to the renderer to manage WebGL state machines. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var StateSystem = /*@__PURE__*/(function (System) { + function StateSystem(renderer) + { + System.call(this, renderer); + + /** + * GL context + * @member {WebGLRenderingContext} + * @readonly + */ + this.gl = null; + + /** + * State ID + * @member {number} + * @readonly + */ + this.stateId = 0; + + /** + * Polygon offset + * @member {number} + * @readonly + */ + this.polygonOffset = 0; + + /** + * Blend mode + * @member {number} + * @default PIXI.BLEND_MODES.NONE + * @readonly + */ + this.blendMode = BLEND_MODES.NONE; + + /** + * Whether current blend equation is different + * @member {boolean} + * @protected + */ + this._blendEq = false; + + /** + * Collection of calls + * @member {function[]} + * @readonly + */ + this.map = []; + + // map functions for when we set state.. + this.map[BLEND$1] = this.setBlend; + this.map[OFFSET$1] = this.setOffset; + this.map[CULLING$1] = this.setCullFace; + this.map[DEPTH_TEST$1] = this.setDepthTest; + this.map[WINDING$1] = this.setFrontFace; + + /** + * Collection of check calls + * @member {function[]} + * @readonly + */ + this.checks = []; + + /** + * Default WebGL State + * @member {PIXI.State} + * @readonly + */ + this.defaultState = new State(); + this.defaultState.blend = true; + this.defaultState.depth = true; + } + + if ( System ) StateSystem.__proto__ = System; + StateSystem.prototype = Object.create( System && System.prototype ); + StateSystem.prototype.constructor = StateSystem; + + StateSystem.prototype.contextChange = function contextChange (gl) + { + this.gl = gl; + + this.blendModes = mapWebGLBlendModesToPixi(gl); + + this.set(this.defaultState); + + this.reset(); + }; + + /** + * Sets the current state + * + * @param {*} state - The state to set. + */ + StateSystem.prototype.set = function set (state) + { + state = state || this.defaultState; + + // TODO maybe to an object check? ( this.state === state )? + if (this.stateId !== state.data) + { + var diff = this.stateId ^ state.data; + var i = 0; + + // order from least to most common + while (diff) + { + if (diff & 1) + { + // state change! + this.map[i].call(this, !!(state.data & (1 << i))); + } + + diff = diff >> 1; + i++; + } + + this.stateId = state.data; + } + + // based on the above settings we check for specific modes.. + // for example if blend is active we check and set the blend modes + // or of polygon offset is active we check the poly depth. + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + }; + + /** + * Sets the state, when previous state is unknown + * + * @param {*} state - The state to set + */ + StateSystem.prototype.forceState = function forceState (state) + { + state = state || this.defaultState; + for (var i = 0; i < this.map.length; i++) + { + this.map[i].call(this, !!(state.data & (1 << i))); + } + for (var i$1 = 0; i$1 < this.checks.length; i$1++) + { + this.checks[i$1](this, state); + } + + this.stateId = state.data; + }; + + /** + * Enables or disabled blending. + * + * @param {boolean} value - Turn on or off webgl blending. + */ + StateSystem.prototype.setBlend = function setBlend (value) + { + this.updateCheck(StateSystem.checkBlendMode, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.BLEND); + }; + + /** + * Enables or disable polygon offset fill + * + * @param {boolean} value - Turn on or off webgl polygon offset testing. + */ + StateSystem.prototype.setOffset = function setOffset (value) + { + this.updateCheck(StateSystem.checkPolygonOffset, value); + + this.gl[value ? 'enable' : 'disable'](this.gl.POLYGON_OFFSET_FILL); + }; + + /** + * Sets whether to enable or disable depth test. + * + * @param {boolean} value - Turn on or off webgl depth testing. + */ + StateSystem.prototype.setDepthTest = function setDepthTest (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.DEPTH_TEST); + }; + + /** + * Sets whether to enable or disable cull face. + * + * @param {boolean} value - Turn on or off webgl cull face. + */ + StateSystem.prototype.setCullFace = function setCullFace (value) + { + this.gl[value ? 'enable' : 'disable'](this.gl.CULL_FACE); + }; + + /** + * Sets the gl front face. + * + * @param {boolean} value - true is clockwise and false is counter-clockwise + */ + StateSystem.prototype.setFrontFace = function setFrontFace (value) + { + this.gl.frontFace(this.gl[value ? 'CW' : 'CCW']); + }; + + /** + * Sets the blend mode. + * + * @param {number} value - The blend mode to set to. + */ + StateSystem.prototype.setBlendMode = function setBlendMode (value) + { + if (value === this.blendMode) + { + return; + } + + this.blendMode = value; + + var mode = this.blendModes[value]; + var gl = this.gl; + + if (mode.length === 2) + { + gl.blendFunc(mode[0], mode[1]); + } + else + { + gl.blendFuncSeparate(mode[0], mode[1], mode[2], mode[3]); + } + if (mode.length === 6) + { + this._blendEq = true; + gl.blendEquationSeparate(mode[4], mode[5]); + } + else if (this._blendEq) + { + this._blendEq = false; + gl.blendEquationSeparate(gl.FUNC_ADD, gl.FUNC_ADD); + } + }; + + /** + * Sets the polygon offset. + * + * @param {number} value - the polygon offset + * @param {number} scale - the polygon offset scale + */ + StateSystem.prototype.setPolygonOffset = function setPolygonOffset (value, scale) + { + this.gl.polygonOffset(value, scale); + }; + + // used + /** + * Resets all the logic and disables the vaos + */ + StateSystem.prototype.reset = function reset () + { + this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false); + + this.forceState(0); + + this._blendEq = true; + this.blendMode = -1; + this.setBlendMode(0); + }; + + /** + * checks to see which updates should be checked based on which settings have been activated. + * For example, if blend is enabled then we should check the blend modes each time the state is changed + * or if polygon fill is activated then we need to check if the polygon offset changes. + * The idea is that we only check what we have too. + * + * @param {Function} func the checking function to add or remove + * @param {boolean} value should the check function be added or removed. + */ + StateSystem.prototype.updateCheck = function updateCheck (func, value) + { + var index = this.checks.indexOf(func); + + if (value && index === -1) + { + this.checks.push(func); + } + else if (!value && index !== -1) + { + this.checks.splice(index, 1); + } + }; + + /** + * A private little wrapper function that we call to check the blend mode. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkBlendMode = function checkBlendMode (system, state) + { + system.setBlendMode(state.blendMode); + }; + + /** + * A private little wrapper function that we call to check the polygon offset. + * + * @static + * @private + * @param {PIXI.StateSystem} System the System to perform the state check on + * @param {PIXI.State} state the state that the blendMode will pulled from + */ + StateSystem.checkPolygonOffset = function checkPolygonOffset (system, state) + { + system.setPolygonOffset(state.polygonOffset, 0); + }; + + return StateSystem; +}(System)); + +/** + * System plugin to the renderer to manage texture garbage collection on the GPU, + * ensuring that it does not get clogged up with textures that are no longer being used. + * + * @class + * @memberof PIXI.systems + * @extends PIXI.System + */ +var TextureGCSystem = /*@__PURE__*/(function (System) { + function TextureGCSystem(renderer) + { + System.call(this, renderer); + + /** + * Count + * @member {number} + * @readonly + */ + this.count = 0; + + /** + * Check count + * @member {number} + * @readonly + */ + this.checkCount = 0; + + /** + * Maximum idle time, in seconds + * @member {number} + * @see PIXI.settings.GC_MAX_IDLE + */ + this.maxIdle = settings.GC_MAX_IDLE; + + /** + * Maximum number of item to check + * @member {number} + * @see PIXI.settings.GC_MAX_CHECK_COUNT + */ + this.checkCountMax = settings.GC_MAX_CHECK_COUNT; + + /** + * Current garabage collection mode + * @member {PIXI.GC_MODES} + * @see PIXI.settings.GC_MODE + */ + this.mode = settings.GC_MODE; + } + + if ( System ) TextureGCSystem.__proto__ = System; + TextureGCSystem.prototype = Object.create( System && System.prototype ); + TextureGCSystem.prototype.constructor = TextureGCSystem; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.postrender = function postrender () + { + this.count++; + + if (this.mode === GC_MODES.MANUAL) + { + return; + } + + this.checkCount++; + + if (this.checkCount > this.checkCountMax) + { + this.checkCount = 0; + + this.run(); + } + }; + + /** + * Checks to see when the last time a texture was used + * if the texture has not been used for a specified amount of time it will be removed from the GPU + */ + TextureGCSystem.prototype.run = function run () + { + var tm = this.renderer.texture; + var managedTextures = tm.managedTextures; + var wasRemoved = false; + + for (var i = 0; i < managedTextures.length; i++) + { + var texture = managedTextures[i]; + + // only supports non generated textures at the moment! + if (!texture.framebuffer && this.count - texture.touched > this.maxIdle) + { + tm.destroyTexture(texture, true); + managedTextures[i] = null; + wasRemoved = true; + } + } + + if (wasRemoved) + { + var j = 0; + + for (var i$1 = 0; i$1 < managedTextures.length; i$1++) + { + if (managedTextures[i$1] !== null) + { + managedTextures[j++] = managedTextures[i$1]; + } + } + + managedTextures.length = j; + } + }; + + /** + * Removes all the textures within the specified displayObject and its children from the GPU + * + * @param {PIXI.DisplayObject} displayObject - the displayObject to remove the textures from. + */ + TextureGCSystem.prototype.unload = function unload (displayObject) + { + var tm = this.renderer.textureSystem; + + // only destroy non generated textures + if (displayObject._texture && displayObject._texture._glRenderTargets) + { + tm.destroyTexture(displayObject._texture); + } + + for (var i = displayObject.children.length - 1; i >= 0; i--) + { + this.unload(displayObject.children[i]); + } + }; + + return TextureGCSystem; +}(System)); + +/** + * Internal texture for WebGL context + * @class + * @memberof PIXI + */ +var GLTexture = function GLTexture(texture) +{ + /** + * The WebGL texture + * @member {WebGLTexture} + */ + this.texture = texture; + + /** + * Width of texture that was used in texImage2D + * @member {number} + */ + this.width = -1; + + /** + * Height of texture that was used in texImage2D + * @member {number} + */ + this.height = -1; + + /** + * Texture contents dirty flag + * @member {number} + */ + this.dirtyId = -1; + + /** + * Texture style dirty flag + * @member {number} + */ + this.dirtyStyleId = -1; + + /** + * Whether mip levels has to be generated + * @member {boolean} + */ + this.mipmap = false; + + /** + * WrapMode copied from baseTexture + * @member {number} + */ + this.wrapMode = 33071; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.type = 6408; + + /** + * Type copied from baseTexture + * @member {number} + */ + this.internalFormat = 5121; +}; + +/** + * System plugin to the renderer to manage textures. + * + * @class + * @extends PIXI.System + * @memberof PIXI.systems + */ +var TextureSystem = /*@__PURE__*/(function (System) { + function TextureSystem(renderer) + { + System.call(this, renderer); + + // TODO set to max textures... + /** + * Bound textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.boundTextures = []; + /** + * Current location + * @member {number} + * @readonly + */ + this.currentLocation = -1; + + /** + * List of managed textures + * @member {PIXI.BaseTexture[]} + * @readonly + */ + this.managedTextures = []; + + /** + * Did someone temper with textures state? We'll overwrite them when we need to unbind something. + * @member {boolean} + * @private + */ + this._unknownBoundTextures = false; + + /** + * BaseTexture value that shows that we don't know what is bound + * @member {PIXI.BaseTexture} + * @readonly + */ + this.unknownTexture = new BaseTexture(); + } + + if ( System ) TextureSystem.__proto__ = System; + TextureSystem.prototype = Object.create( System && System.prototype ); + TextureSystem.prototype.constructor = TextureSystem; + + /** + * Sets up the renderer context and necessary buffers. + */ + TextureSystem.prototype.contextChange = function contextChange () + { + var gl = this.gl = this.renderer.gl; + + this.CONTEXT_UID = this.renderer.CONTEXT_UID; + + this.webGLVersion = this.renderer.context.webGLVersion; + + var maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS); + + this.boundTextures.length = maxTextures; + + for (var i = 0; i < maxTextures; i++) + { + this.boundTextures[i] = null; + } + + // TODO move this.. to a nice make empty textures class.. + this.emptyTextures = {}; + + var emptyTexture2D = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_2D, emptyTexture2D.texture); + gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4)); + + this.emptyTextures[gl.TEXTURE_2D] = emptyTexture2D; + this.emptyTextures[gl.TEXTURE_CUBE_MAP] = new GLTexture(gl.createTexture()); + + gl.bindTexture(gl.TEXTURE_CUBE_MAP, this.emptyTextures[gl.TEXTURE_CUBE_MAP].texture); + + for (var i$1 = 0; i$1 < 6; i$1++) + { + gl.texImage2D(gl.TEXTURE_CUBE_MAP_POSITIVE_X + i$1, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, null); + } + + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + + for (var i$2 = 0; i$2 < this.boundTextures.length; i$2++) + { + this.bind(null, i$2); + } + }; + + /** + * Bind a texture to a specific location + * + * If you want to unbind something, please use `unbind(texture)` instead of `bind(null, textureLocation)` + * + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + * @param {number} [location=0] - Location to bind at + */ + TextureSystem.prototype.bind = function bind (texture, location) + { + if ( location === void 0 ) location = 0; + + var ref = this; + var gl = ref.gl; + + if (texture) + { + texture = texture.baseTexture || texture; + + if (texture.valid) + { + texture.touched = this.renderer.textureGC.count; + + var glTexture = texture._glTextures[this.CONTEXT_UID] || this.initTexture(texture); + + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + if (this.boundTextures[location] !== texture) + { + gl.bindTexture(texture.target, glTexture.texture); + } + + if (glTexture.dirtyId !== texture.dirtyId) + { + this.updateTexture(texture); + } + + this.boundTextures[location] = texture; + } + } + else + { + if (this.currentLocation !== location) + { + this.currentLocation = location; + gl.activeTexture(gl.TEXTURE0 + location); + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[gl.TEXTURE_2D].texture); + this.boundTextures[location] = null; + } + }; + + /** + * Resets texture location and bound textures + * + * Actual `bind(null, i)` calls will be performed at next `unbind()` call + */ + TextureSystem.prototype.reset = function reset () + { + this._unknownBoundTextures = true; + this.currentLocation = -1; + + for (var i = 0; i < this.boundTextures.length; i++) + { + this.boundTextures[i] = this.unknownTexture; + } + }; + + /** + * Unbind a texture + * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind + */ + TextureSystem.prototype.unbind = function unbind (texture) + { + var ref = this; + var gl = ref.gl; + var boundTextures = ref.boundTextures; + + if (this._unknownBoundTextures) + { + this._unknownBoundTextures = false; + // someone changed webGL state, + // we have to be sure that our texture does not appear in multi-texture renderer samplers + for (var i = 0; i < boundTextures.length; i++) + { + if (boundTextures[i] === this.unknownTexture) + { + this.bind(null, i); + } + } + } + + for (var i$1 = 0; i$1 < boundTextures.length; i$1++) + { + if (boundTextures[i$1] === texture) + { + if (this.currentLocation !== i$1) + { + gl.activeTexture(gl.TEXTURE0 + i$1); + this.currentLocation = i$1; + } + + gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[texture.target].texture); + boundTextures[i$1] = null; + } + } + }; + + /** + * Initialize a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.initTexture = function initTexture (texture) + { + var glTexture = new GLTexture(this.gl.createTexture()); + + // guarantee an update.. + glTexture.dirtyId = -1; + + texture._glTextures[this.CONTEXT_UID] = glTexture; + + this.managedTextures.push(texture); + texture.on('dispose', this.destroyTexture, this); + + return glTexture; + }; + + TextureSystem.prototype.initTextureType = function initTextureType (texture, glTexture) + { + glTexture.internalFormat = texture.format; + glTexture.type = texture.type; + if (this.webGLVersion !== 2) + { + return; + } + var gl = this.renderer.gl; + + if (texture.type === gl.FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA32F; + } + // that's WebGL1 HALF_FLOAT_OES + // we have to convert it to WebGL HALF_FLOAT + if (texture.type === TYPES.HALF_FLOAT) + { + glTexture.type = gl.HALF_FLOAT; + } + if (glTexture.type === gl.HALF_FLOAT + && texture.format === gl.RGBA) + { + glTexture.internalFormat = gl.RGBA16F; + } + }; + + /** + * Update a texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to initialize + */ + TextureSystem.prototype.updateTexture = function updateTexture (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + var renderer = this.renderer; + + this.initTextureType(texture, glTexture); + + if (texture.resource && texture.resource.upload(renderer, texture, glTexture)) + ; + else + { + // default, renderTexture-like logic + var width = texture.realWidth; + var height = texture.realHeight; + var gl = renderer.gl; + + if (glTexture.width !== width + || glTexture.height !== height + || glTexture.dirtyId < 0) + { + glTexture.width = width; + glTexture.height = height; + + gl.texImage2D(texture.target, 0, + glTexture.internalFormat, + width, + height, + 0, + texture.format, + glTexture.type, + null); + } + } + + // lets only update what changes.. + if (texture.dirtyStyleId !== glTexture.dirtyStyleId) + { + this.updateTextureStyle(texture); + } + glTexture.dirtyId = texture.dirtyId; + }; + + /** + * Deletes the texture from WebGL + * + * @private + * @param {PIXI.BaseTexture|PIXI.Texture} texture - the texture to destroy + * @param {boolean} [skipRemove=false] - Whether to skip removing the texture from the TextureManager. + */ + TextureSystem.prototype.destroyTexture = function destroyTexture (texture, skipRemove) + { + var ref = this; + var gl = ref.gl; + + texture = texture.baseTexture || texture; + + if (texture._glTextures[this.CONTEXT_UID]) + { + this.unbind(texture); + + gl.deleteTexture(texture._glTextures[this.CONTEXT_UID].texture); + texture.off('dispose', this.destroyTexture, this); + + delete texture._glTextures[this.CONTEXT_UID]; + + if (!skipRemove) + { + var i = this.managedTextures.indexOf(texture); + + if (i !== -1) + { + removeItems(this.managedTextures, i, 1); + } + } + } + }; + + /** + * Update texture style such as mipmap flag + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + */ + TextureSystem.prototype.updateTextureStyle = function updateTextureStyle (texture) + { + var glTexture = texture._glTextures[this.CONTEXT_UID]; + + if (!glTexture) + { + return; + } + + if ((texture.mipmap === MIPMAP_MODES.POW2 || this.webGLVersion !== 2) && !texture.isPowerOfTwo) + { + glTexture.mipmap = 0; + glTexture.wrapMode = WRAP_MODES.CLAMP; + } + else + { + glTexture.mipmap = texture.mipmap >= 1; + glTexture.wrapMode = texture.wrapMode; + } + + if (texture.resource && texture.resource.style(this.renderer, texture, glTexture)) + ; + else + { + this.setStyle(texture, glTexture); + } + + glTexture.dirtyStyleId = texture.dirtyStyleId; + }; + + /** + * Set style for texture + * + * @private + * @param {PIXI.BaseTexture} texture - Texture to update + * @param {PIXI.GLTexture} glTexture + */ + TextureSystem.prototype.setStyle = function setStyle (texture, glTexture) + { + var gl = this.gl; + + if (glTexture.mipmap) + { + gl.generateMipmap(texture.target); + } + + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_S, glTexture.wrapMode); + gl.texParameteri(texture.target, gl.TEXTURE_WRAP_T, glTexture.wrapMode); + + if (glTexture.mipmap) + { + /* eslint-disable max-len */ + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR_MIPMAP_LINEAR : gl.NEAREST_MIPMAP_NEAREST); + /* eslint-disable max-len */ + + var anisotropicExt = this.renderer.context.extensions.anisotropicFiltering; + + if (anisotropicExt && texture.anisotropicLevel > 0 && texture.scaleMode === SCALE_MODES.LINEAR) + { + var level = Math.min(texture.anisotropicLevel, gl.getParameter(anisotropicExt.MAX_TEXTURE_MAX_ANISOTROPY_EXT)); + + gl.texParameterf(texture.target, anisotropicExt.TEXTURE_MAX_ANISOTROPY_EXT, level); + } + } + else + { + gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + } + + gl.texParameteri(texture.target, gl.TEXTURE_MAG_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST); + }; + + return TextureSystem; +}(System)); + +var tempMatrix = new Matrix(); + +/** + * The AbstractRenderer is the base for a PixiJS Renderer. It is extended by the {@link PIXI.CanvasRenderer} + * and {@link PIXI.Renderer} which can be used for rendering a PixiJS scene. + * + * @abstract + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI + */ +var AbstractRenderer = /*@__PURE__*/(function (EventEmitter) { + function AbstractRenderer(system, options) + { + EventEmitter.call(this); + + // Add the default render options + options = Object.assign({}, settings.RENDER_OPTIONS, options); + + // Deprecation notice for renderer roundPixels option + if (options.roundPixels) + { + settings.ROUND_PIXELS = options.roundPixels; + deprecation('5.0.0', 'Renderer roundPixels option is deprecated, please use PIXI.settings.ROUND_PIXELS', 2); + } + + /** + * The supplied constructor options. + * + * @member {Object} + * @readOnly + */ + this.options = options; + + /** + * The type of the renderer. + * + * @member {number} + * @default PIXI.RENDERER_TYPE.UNKNOWN + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.UNKNOWN; + + /** + * Measurements of the screen. (0, 0, screenWidth, screenHeight). + * + * Its safe to use as filterArea or hitArea for the whole stage. + * + * @member {PIXI.Rectangle} + */ + this.screen = new Rectangle(0, 0, options.width, options.height); + + /** + * The canvas element that everything is drawn to. + * + * @member {HTMLCanvasElement} + */ + this.view = options.view || document.createElement('canvas'); + + /** + * The resolution / device pixel ratio of the renderer. + * + * @member {number} + * @default 1 + */ + this.resolution = options.resolution || settings.RESOLUTION; + + /** + * Whether the render view is transparent. + * + * @member {boolean} + */ + this.transparent = options.transparent; + + /** + * Whether CSS dimensions of canvas view should be resized to screen dimensions automatically. + * + * @member {boolean} + */ + this.autoDensity = options.autoDensity || options.autoResize || false; + // autoResize is deprecated, provides fallback support + + /** + * The value of the preserveDrawingBuffer flag affects whether or not the contents of + * the stencil buffer is retained after rendering. + * + * @member {boolean} + */ + this.preserveDrawingBuffer = options.preserveDrawingBuffer; + + /** + * This sets if the CanvasRenderer will clear the canvas or not before the new render pass. + * If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every + * frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect + * to clear the canvas every frame. Disable this by setting this to false. For example, if + * your game has a canvas filling background image you often don't need this set. + * + * @member {boolean} + * @default + */ + this.clearBeforeRender = options.clearBeforeRender; + + /** + * The background color as a number. + * + * @member {number} + * @protected + */ + this._backgroundColor = 0x000000; + + /** + * The background color as an [R, G, B] array. + * + * @member {number[]} + * @protected + */ + this._backgroundColorRgba = [0, 0, 0, 0]; + + /** + * The background color as a string. + * + * @member {string} + * @protected + */ + this._backgroundColorString = '#000000'; + + this.backgroundColor = options.backgroundColor || this._backgroundColor; // run bg color setter + + /** + * This temporary display object used as the parent of the currently being rendered item. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._tempDisplayObjectParent = new Container(); + + /** + * The last root object that the renderer tried to render. + * + * @member {PIXI.DisplayObject} + * @protected + */ + this._lastObjectRendered = this._tempDisplayObjectParent; + + /** + * Collection of plugins. + * @readonly + * @member {object} + */ + this.plugins = {}; + } + + if ( EventEmitter ) AbstractRenderer.__proto__ = EventEmitter; + AbstractRenderer.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + AbstractRenderer.prototype.constructor = AbstractRenderer; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },backgroundColor: { configurable: true } }; + + /** + * Initialize the plugins. + * + * @protected + * @param {object} staticMap - The dictionary of statically saved plugins. + */ + AbstractRenderer.prototype.initPlugins = function initPlugins (staticMap) + { + for (var o in staticMap) + { + this.plugins[o] = new (staticMap[o])(this); + } + }; + + /** + * Same as view.width, actual number of pixels in the canvas by horizontal. + * + * @member {number} + * @readonly + * @default 800 + */ + prototypeAccessors.width.get = function () + { + return this.view.width; + }; + + /** + * Same as view.height, actual number of pixels in the canvas by vertical. + * + * @member {number} + * @readonly + * @default 600 + */ + prototypeAccessors.height.get = function () + { + return this.view.height; + }; + + /** + * Resizes the screen and canvas to the specified width and height. + * Canvas dimensions are multiplied by resolution. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + AbstractRenderer.prototype.resize = function resize (screenWidth, screenHeight) + { + this.screen.width = screenWidth; + this.screen.height = screenHeight; + + this.view.width = screenWidth * this.resolution; + this.view.height = screenHeight * this.resolution; + + if (this.autoDensity) + { + this.view.style.width = screenWidth + "px"; + this.view.style.height = screenHeight + "px"; + } + }; + + /** + * Useful function that returns a texture of the display object that can then be used to create sprites + * This can be quite useful if your displayObject is complicated and needs to be reused multiple times. + * + * @param {PIXI.DisplayObject} displayObject - The displayObject the object will be generated from. + * @param {number} scaleMode - Should be one of the scaleMode consts. + * @param {number} resolution - The resolution / device pixel ratio of the texture being generated. + * @param {PIXI.Rectangle} [region] - The region of the displayObject, that shall be rendered, + * if no region is specified, defaults to the local bounds of the displayObject. + * @return {PIXI.RenderTexture} A texture of the graphics object. + */ + AbstractRenderer.prototype.generateTexture = function generateTexture (displayObject, scaleMode, resolution, region) + { + region = region || displayObject.getLocalBounds(); + + // minimum texture size is 1x1, 0x0 will throw an error + if (region.width === 0) { region.width = 1; } + if (region.height === 0) { region.height = 1; } + + var renderTexture = RenderTexture.create(region.width | 0, region.height | 0, scaleMode, resolution); + + tempMatrix.tx = -region.x; + tempMatrix.ty = -region.y; + + this.render(displayObject, renderTexture, false, tempMatrix, !!displayObject.parent); + + return renderTexture; + }; + + /** + * Removes everything from the renderer and optionally removes the Canvas DOM element. + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + */ + AbstractRenderer.prototype.destroy = function destroy (removeView) + { + for (var o in this.plugins) + { + this.plugins[o].destroy(); + this.plugins[o] = null; + } + + if (removeView && this.view.parentNode) + { + this.view.parentNode.removeChild(this.view); + } + + this.plugins = null; + + this.type = RENDERER_TYPE.UNKNOWN; + + this.view = null; + + this.screen = null; + + this.resolution = 0; + + this.transparent = false; + + this.autoDensity = false; + + this.blendModes = null; + + this.options = null; + + this.preserveDrawingBuffer = false; + this.clearBeforeRender = false; + + this._backgroundColor = 0; + this._backgroundColorRgba = null; + this._backgroundColorString = null; + + this._tempDisplayObjectParent = null; + this._lastObjectRendered = null; + }; + + /** + * The background color to fill if not transparent + * + * @member {number} + */ + prototypeAccessors.backgroundColor.get = function () + { + return this._backgroundColor; + }; + + prototypeAccessors.backgroundColor.set = function (value) // eslint-disable-line require-jsdoc + { + this._backgroundColor = value; + this._backgroundColorString = hex2string(value); + hex2rgb(value, this._backgroundColorRgba); + }; + + Object.defineProperties( AbstractRenderer.prototype, prototypeAccessors ); + + return AbstractRenderer; +}(eventemitter3)); + +/** + * The Renderer draws the scene and all its content onto a WebGL enabled canvas. + * + * This renderer should be used for browsers that support WebGL. + * + * This renderer works by automatically managing WebGLBatchesm, so no need for Sprite Batches or Sprite Clouds. + * Don't forget to add the view to your DOM or you will not see anything! + * + * @class + * @memberof PIXI + * @extends PIXI.AbstractRenderer + */ +var Renderer = /*@__PURE__*/(function (AbstractRenderer) { + function Renderer(options) + { + if ( options === void 0 ) options = {}; + + AbstractRenderer.call(this, 'WebGL', options); + + // the options will have been modified here in the super constructor with pixi's default settings.. + options = this.options; + + /** + * The type of this renderer as a standardized const + * + * @member {number} + * @see PIXI.RENDERER_TYPE + */ + this.type = RENDERER_TYPE.WEBGL; + + /** + * WebGL context, set by the contextSystem (this.context) + * + * @readonly + * @member {WebGLRenderingContext} + */ + this.gl = null; + + this.CONTEXT_UID = 0; + + // TODO legacy! + + /** + * Internal signal instances of **runner**, these + * are assigned to each system created. + * @see PIXI.Runner + * @name PIXI.Renderer#runners + * @private + * @type {object} + * @readonly + * @property {PIXI.Runner} destroy - Destroy runner + * @property {PIXI.Runner} contextChange - Context change runner + * @property {PIXI.Runner} reset - Reset runner + * @property {PIXI.Runner} update - Update runner + * @property {PIXI.Runner} postrender - Post-render runner + * @property {PIXI.Runner} prerender - Pre-render runner + * @property {PIXI.Runner} resize - Resize runner + */ + this.runners = { + destroy: new Runner('destroy'), + contextChange: new Runner('contextChange', 1), + reset: new Runner('reset'), + update: new Runner('update'), + postrender: new Runner('postrender'), + prerender: new Runner('prerender'), + resize: new Runner('resize', 2), + }; + + /** + * Global uniforms + * @member {PIXI.UniformGroup} + */ + this.globalUniforms = new UniformGroup({ + projectionMatrix: new Matrix(), + }, true); + + /** + * Mask system instance + * @member {PIXI.systems.MaskSystem} mask + * @memberof PIXI.Renderer# + * @readonly + */ + this.addSystem(MaskSystem, 'mask') + /** + * Context system instance + * @member {PIXI.systems.ContextSystem} context + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ContextSystem, 'context') + /** + * State system instance + * @member {PIXI.systems.StateSystem} state + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StateSystem, 'state') + /** + * Shader system instance + * @member {PIXI.systems.ShaderSystem} shader + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ShaderSystem, 'shader') + /** + * Texture system instance + * @member {PIXI.systems.TextureSystem} texture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureSystem, 'texture') + /** + * Geometry system instance + * @member {PIXI.systems.GeometrySystem} geometry + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(GeometrySystem, 'geometry') + /** + * Framebuffer system instance + * @member {PIXI.systems.FramebufferSystem} framebuffer + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FramebufferSystem, 'framebuffer') + /** + * Stencil system instance + * @member {PIXI.systems.StencilSystem} stencil + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(StencilSystem, 'stencil') + /** + * Projection system instance + * @member {PIXI.systems.ProjectionSystem} projection + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(ProjectionSystem, 'projection') + /** + * Texture garbage collector system instance + * @member {PIXI.systems.TextureGCSystem} textureGC + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(TextureGCSystem, 'textureGC') + /** + * Filter system instance + * @member {PIXI.systems.FilterSystem} filter + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(FilterSystem, 'filter') + /** + * RenderTexture system instance + * @member {PIXI.systems.RenderTextureSystem} renderTexture + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(RenderTextureSystem, 'renderTexture') + + /** + * Batch system instance + * @member {PIXI.systems.BatchSystem} batch + * @memberof PIXI.Renderer# + * @readonly + */ + .addSystem(BatchSystem, 'batch'); + + this.initPlugins(Renderer.__plugins); + + /** + * The options passed in to create a new WebGL context. + */ + if (options.context) + { + this.context.initFromContext(options.context); + } + else + { + this.context.initFromOptions({ + alpha: this.transparent, + antialias: options.antialias, + premultipliedAlpha: this.transparent && this.transparent !== 'notMultiplied', + stencil: true, + preserveDrawingBuffer: options.preserveDrawingBuffer, + powerPreference: this.options.powerPreference, + }); + } + + /** + * Flag if we are rendering to the screen vs renderTexture + * @member {boolean} + * @readonly + * @default true + */ + this.renderingToScreen = true; + + sayHello(this.context.webGLVersion === 2 ? 'WebGL 2' : 'WebGL 1'); + + this.resize(this.options.width, this.options.height); + } + + if ( AbstractRenderer ) Renderer.__proto__ = AbstractRenderer; + Renderer.prototype = Object.create( AbstractRenderer && AbstractRenderer.prototype ); + Renderer.prototype.constructor = Renderer; + + /** + * Add a new system to the renderer. + * @param {Function} ClassRef - Class reference + * @param {string} [name] - Property name for system, if not specified + * will use a static `name` property on the class itself. This + * name will be assigned as s property on the Renderer so make + * sure it doesn't collide with properties on Renderer. + * @return {PIXI.Renderer} Return instance of renderer + */ + Renderer.create = function create (options) + { + if (isWebGLSupported()) + { + return new Renderer(options); + } + + throw new Error('WebGL unsupported in this browser, use "pixi.js-legacy" for fallback canvas2d support.'); + }; + + Renderer.prototype.addSystem = function addSystem (ClassRef, name) + { + if (!name) + { + name = ClassRef.name; + } + + var system = new ClassRef(this); + + if (this[name]) + { + throw new Error(("Whoops! The name \"" + name + "\" is already in use")); + } + + this[name] = system; + + for (var i in this.runners) + { + this.runners[i].add(system); + } + + /** + * Fired after rendering finishes. + * + * @event PIXI.Renderer#postrender + */ + + /** + * Fired before rendering starts. + * + * @event PIXI.Renderer#prerender + */ + + /** + * Fired when the WebGL context is set. + * + * @event PIXI.Renderer#context + * @param {WebGLRenderingContext} gl - WebGL context. + */ + + return this; + }; + + /** + * Renders the object to its WebGL view + * + * @param {PIXI.DisplayObject} displayObject - The object to be rendered. + * @param {PIXI.RenderTexture} [renderTexture] - The render texture to render to. + * @param {boolean} [clear=true] - Should the canvas be cleared before the new render. + * @param {PIXI.Matrix} [transform] - A transform to apply to the render texture before rendering. + * @param {boolean} [skipUpdateTransform=false] - Should we skip the update transform pass? + */ + Renderer.prototype.render = function render (displayObject, renderTexture, clear, transform, skipUpdateTransform) + { + // can be handy to know! + this.renderingToScreen = !renderTexture; + + this.runners.prerender.run(); + this.emit('prerender'); + + // apply a transform at a GPU level + this.projection.transform = transform; + + // no point rendering if our context has been blown up! + if (this.context.isLost) + { + return; + } + + if (!renderTexture) + { + this._lastObjectRendered = displayObject; + } + + if (!skipUpdateTransform) + { + // update the scene graph + var cacheParent = displayObject.parent; + + displayObject.parent = this._tempDisplayObjectParent; + displayObject.updateTransform(); + displayObject.parent = cacheParent; + // displayObject.hitArea = //TODO add a temp hit area + } + + this.renderTexture.bind(renderTexture); + this.batch.currentRenderer.start(); + + if (clear !== undefined ? clear : this.clearBeforeRender) + { + this.renderTexture.clear(); + } + + displayObject.render(this); + + // apply transform.. + this.batch.currentRenderer.flush(); + + if (renderTexture) + { + renderTexture.baseTexture.update(); + } + + this.runners.postrender.run(); + + // reset transform after render + this.projection.transform = null; + + this.emit('postrender'); + }; + + /** + * Resizes the WebGL view to the specified width and height. + * + * @param {number} screenWidth - The new width of the screen. + * @param {number} screenHeight - The new height of the screen. + */ + Renderer.prototype.resize = function resize (screenWidth, screenHeight) + { + AbstractRenderer.prototype.resize.call(this, screenWidth, screenHeight); + + this.runners.resize.run(screenWidth, screenHeight); + }; + + /** + * Resets the WebGL state so you can render things however you fancy! + * + * @return {PIXI.Renderer} Returns itself. + */ + Renderer.prototype.reset = function reset () + { + this.runners.reset.run(); + + return this; + }; + + /** + * Clear the frame buffer + */ + Renderer.prototype.clear = function clear () + { + this.framebuffer.bind(); + this.framebuffer.clear(); + }; + + /** + * Removes everything from the renderer (event listeners, spritebatch, etc...) + * + * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM. + * See: https://github.com/pixijs/pixi.js/issues/2233 + */ + Renderer.prototype.destroy = function destroy (removeView) + { + this.runners.destroy.run(); + + for (var r in this.runners) + { + this.runners[r].destroy(); + } + + // call base destroy + AbstractRenderer.prototype.destroy.call(this, removeView); + + // TODO nullify all the managers.. + this.gl = null; + }; + + /** + * Collection of installed plugins. These are included by default in PIXI, but can be excluded + * by creating a custom build. Consult the README for more information about creating custom + * builds and excluding plugins. + * @name PIXI.Renderer#plugins + * @type {object} + * @readonly + * @property {PIXI.accessibility.AccessibilityManager} accessibility Support tabbing interactive elements. + * @property {PIXI.extract.Extract} extract Extract image data from renderer. + * @property {PIXI.interaction.InteractionManager} interaction Handles mouse, touch and pointer events. + * @property {PIXI.prepare.Prepare} prepare Pre-render display objects. + */ + + /** + * Adds a plugin to the renderer. + * + * @method + * @param {string} pluginName - The name of the plugin. + * @param {Function} ctor - The constructor function or class for the plugin. + */ + Renderer.registerPlugin = function registerPlugin (pluginName, ctor) + { + Renderer.__plugins = Renderer.__plugins || {}; + Renderer.__plugins[pluginName] = ctor; + }; + + return Renderer; +}(AbstractRenderer)); + +/** + * This helper function will automatically detect which renderer you should be using. + * WebGL is the preferred renderer as it is a lot faster. If WebGL is not supported by + * the browser then this function will return a canvas renderer + * + * @memberof PIXI + * @function autoDetectRenderer + * @param {object} [options] - The optional renderer parameters + * @param {number} [options.width=800] - the width of the renderers view + * @param {number} [options.height=600] - the height of the renderers view + * @param {HTMLCanvasElement} [options.view] - the canvas to use as a view, optional + * @param {boolean} [options.transparent=false] - If the render view is transparent, default false + * @param {boolean} [options.autoDensity=false] - Resizes renderer view in CSS pixels to allow for + * resolutions other than 1 + * @param {boolean} [options.antialias=false] - sets antialias + * @param {boolean} [options.preserveDrawingBuffer=false] - enables drawing buffer preservation, enable this if you + * need to call toDataUrl on the webgl context + * @param {number} [options.backgroundColor=0x000000] - The background color of the rendered area + * (shown if not transparent). + * @param {boolean} [options.clearBeforeRender=true] - This sets if the renderer will clear the canvas or + * not before the new render pass. + * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the renderer, retina would be 2 + * @param {boolean} [options.forceCanvas=false] - prevents selection of WebGL renderer, even if such is present, this + * option only is available when using **pixi.js-legacy** or **@pixi/canvas-renderer** modules, otherwise + * it is ignored. + * @param {boolean} [options.forceFXAA=false] - forces FXAA antialiasing to be used over native. + * FXAA is faster, but may not always look as great **webgl only** + * @param {string} [options.powerPreference] - Parameter passed to webgl context, set to "high-performance" + * for devices with dual graphics card **webgl only** + * @return {PIXI.Renderer|PIXI.CanvasRenderer} Returns WebGL renderer if available, otherwise CanvasRenderer + */ +function autoDetectRenderer(options) +{ + return Renderer.create(options); +} + +var defaultFilter = "attribute vec2 aVertexPosition;\n\nuniform mat3 projectionMatrix;\n\nvarying vec2 vTextureCoord;\n\nuniform vec4 inputSize;\nuniform vec4 outputFrame;\n\nvec4 filterVertexPosition( void )\n{\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n}\n\nvec2 filterTextureCoord( void )\n{\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\n}\n\nvoid main(void)\n{\n gl_Position = filterVertexPosition();\n vTextureCoord = filterTextureCoord();\n}\n"; + +/** + * Used by the batcher to draw batches. + * Each one of these contains all information required to draw a bound geometry. + * + * @class + * @memberof PIXI + */ +var BatchDrawCall = function BatchDrawCall() +{ + this.textures = []; + this.ids = []; + this.blend = 0; + this.textureCount = 0; + this.start = 0; + this.size = 0; + this.type = 4; +}; + +/** + * Flexible wrapper around `ArrayBuffer` that also provides + * typed array views on demand. + * + * @class + * @memberof PIXI + */ +var ViewableBuffer = function ViewableBuffer(size) +{ + /** + * Underlying `ArrayBuffer` that holds all the data + * and is of capacity `size`. + * + * @member {ArrayBuffer} + */ + this.rawBinaryData = new ArrayBuffer(size); + + /** + * View on the raw binary data as a `Uint32Array`. + * + * @member {Uint32Array} + */ + this.uint32View = new Uint32Array(this.rawBinaryData); + + /** + * View on the raw binary data as a `Float32Array`. + * + * @member {Float32Array} + */ + this.float32View = new Float32Array(this.rawBinaryData); +}; + +var prototypeAccessors$5$1 = { int8View: { configurable: true },uint8View: { configurable: true },int16View: { configurable: true },uint16View: { configurable: true },int32View: { configurable: true } }; + +/** + * View on the raw binary data as a `Int8Array`. + * + * @member {Int8Array} + */ +prototypeAccessors$5$1.int8View.get = function () +{ + if (!this._int8View) + { + this._int8View = new Int8Array(this.rawBinaryData); + } + + return this._int8View; +}; + +/** + * View on the raw binary data as a `Uint8Array`. + * + * @member {Uint8Array} + */ +prototypeAccessors$5$1.uint8View.get = function () +{ + if (!this._uint8View) + { + this._uint8View = new Uint8Array(this.rawBinaryData); + } + + return this._uint8View; +}; + +/** + * View on the raw binary data as a `Int16Array`. + * + * @member {Int16Array} + */ +prototypeAccessors$5$1.int16View.get = function () +{ + if (!this._int16View) + { + this._int16View = new Int16Array(this.rawBinaryData); + } + + return this._int16View; +}; + +/** + * View on the raw binary data as a `Uint16Array`. + * + * @member {Uint16Array} + */ +prototypeAccessors$5$1.uint16View.get = function () +{ + if (!this._uint16View) + { + this._uint16View = new Uint16Array(this.rawBinaryData); + } + + return this._uint16View; +}; + +/** + * View on the raw binary data as a `Int32Array`. + * + * @member {Int32Array} + */ +prototypeAccessors$5$1.int32View.get = function () +{ + if (!this._int32View) + { + this._int32View = new Int32Array(this.rawBinaryData); + } + + return this._int32View; +}; + +/** + * Returns the view of the given type. + * + * @param {string} type - One of `int8`, `uint8`, `int16`, + *`uint16`, `int32`, `uint32`, and `float32`. + * @return {object} typed array of given type + */ +ViewableBuffer.prototype.view = function view (type) +{ + return this[(type + "View")]; +}; + +/** + * Destroys all buffer references. Do not use after calling + * this. + */ +ViewableBuffer.prototype.destroy = function destroy () +{ + this.rawBinaryData = null; + this._int8View = null; + this._uint8View = null; + this._int16View = null; + this._uint16View = null; + this._int32View = null; + this.uint32View = null; + this.float32View = null; +}; + +ViewableBuffer.sizeOf = function sizeOf (type) +{ + switch (type) + { + case 'int8': + case 'uint8': + return 1; + case 'int16': + case 'uint16': + return 2; + case 'int32': + case 'uint32': + case 'float32': + return 4; + default: + throw new Error((type + " isn't a valid view type")); + } +}; + +Object.defineProperties( ViewableBuffer.prototype, prototypeAccessors$5$1 ); + +/** + * Renderer dedicated to drawing and batching sprites. + * + * This is the default batch renderer. It buffers objects + * with texture-based geometries and renders them in + * batches. It uploads multiple textures to the GPU to + * reduce to the number of draw calls. + * + * @class + * @protected + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var AbstractBatchRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function AbstractBatchRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + /** + * This is used to generate a shader that can + * color each vertex based on a `aTextureId` + * attribute that points to an texture in `uSampler`. + * + * This enables the objects with different textures + * to be drawn in the same draw call. + * + * You can customize your shader by creating your + * custom shader generator. + * + * @member {PIXI.BatchShaderGenerator} + * @protected + */ + this.shaderGenerator = null; + + /** + * The class that represents the geometry of objects + * that are going to be batched with this. + * + * @member {object} + * @default PIXI.BatchGeometry + * @protected + */ + this.geometryClass = null; + + /** + * Size of data being buffered per vertex in the + * attribute buffers (in floats). By default, the + * batch-renderer plugin uses 6: + * + * | aVertexPosition | 2 | + * |-----------------|---| + * | aTextureCoords | 2 | + * | aColor | 1 | + * | aTextureId | 1 | + * + * @member {number} + * @readonly + */ + this.vertexSize = null; + + /** + * The WebGL state in which this renderer will work. + * + * @member {PIXI.State} + * @readonly + */ + this.state = State.for2d(); + + /** + * The number of bufferable objects before a flush + * occurs automatically. + * + * @member {number} + * @default settings.SPRITE_MAX_TEXTURES + */ + this.size = 2000 * 4;// settings.SPRITE_BATCH_SIZE, 2000 is a nice balance between mobile/desktop + + /** + * Total count of all vertices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._vertexCount = 0; + + /** + * Total count of all indices used by the currently + * buffered objects. + * + * @member {number} + * @private + */ + this._indexCount = 0; + + /** + * Buffer of objects that are yet to be rendered. + * + * @member {PIXI.DisplayObject[]} + * @private + */ + this._bufferedElements = []; + + /** + * Number of elements that are buffered and are + * waiting to be flushed. + * + * @member {number} + * @private + */ + this._bufferSize = 0; + + /** + * This shader is generated by `this.shaderGenerator`. + * + * It is generated specifically to handle the required + * number of textures being batched together. + * + * @member {PIXI.Shader} + * @protected + */ + this._shader = null; + + /** + * Pool of `this.geometryClass` geometry objects + * that store buffers. They are used to pass data + * to the shader on each draw call. + * + * These are never re-allocated again, unless a + * context change occurs; however, the pool may + * be expanded if required. + * + * @member {PIXI.Geometry[]} + * @private + * @see PIXI.AbstractBatchRenderer.contextChange + */ + this._packedGeometries = []; + + /** + * Size of `this._packedGeometries`. It can be expanded + * if more than `this._packedGeometryPoolSize` flushes + * occur in a single frame. + * + * @member {number} + * @private + */ + this._packedGeometryPoolSize = 2; + + /** + * A flush may occur multiple times in a single + * frame. On iOS devices or when + * `settings.CAN_UPLOAD_SAME_BUFFER` is false, the + * batch renderer does not upload data to the same + * `WebGLBuffer` for performance reasons. + * + * This is the index into `packedGeometries` that points to + * geometry holding the most recent buffers. + * + * @member {number} + * @private + */ + this._flushId = 0; + + /** + * Pool of `BatchDrawCall` objects that `flush` used + * to create "batches" of the objects being rendered. + * + * These are never re-allocated again. + * + * @member BatchDrawCall[] + * @private + */ + this._drawCalls = []; + + for (var k = 0; k < this.size / 4; k++) + { // initialize the draw-calls pool to max size. + this._drawCalls[k] = new BatchDrawCall(); + } + + /** + * Pool of `ViewableBuffer` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing attributes. + * + * The first buffer has a size of 8; each subsequent + * buffer has double capacity of its previous. + * + * @member {PIXI.ViewableBuffer} + * @private + * @see PIXI.AbstractBatchRenderer#getAttributeBuffer + */ + this._aBuffers = {}; + + /** + * Pool of `Uint16Array` objects that are sorted in + * order of increasing size. The flush method uses + * the buffer with the least size above the amount + * it requires. These are used for passing indices. + * + * The first buffer has a size of 12; each subsequent + * buffer has double capacity of its previous. + * + * @member {Uint16Array[]} + * @private + * @see PIXI.AbstractBatchRenderer#getIndexBuffer + */ + this._iBuffers = {}; + + /** + * Maximum number of textures that can be uploaded to + * the GPU under the current context. It is initialized + * properly in `this.contextChange`. + * + * @member {number} + * @see PIXI.AbstractBatchRenderer#contextChange + * @readonly + */ + this.MAX_TEXTURES = 1; + + this.renderer.on('prerender', this.onPrerender, this); + renderer.runners.contextChange.add(this); + } + + if ( ObjectRenderer ) AbstractBatchRenderer.__proto__ = ObjectRenderer; + AbstractBatchRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + AbstractBatchRenderer.prototype.constructor = AbstractBatchRenderer; + + /** + * Handles the `contextChange` signal. + * + * It calculates `this.MAX_TEXTURES` and allocating the + * packed-geometry object pool. + */ + AbstractBatchRenderer.prototype.contextChange = function contextChange () + { + var gl = this.renderer.gl; + + if (settings.PREFER_ENV === ENV.WEBGL_LEGACY) + { + this.MAX_TEXTURES = 1; + } + else + { + // step 1: first check max textures the GPU can handle. + this.MAX_TEXTURES = Math.min( + gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS), + settings.SPRITE_MAX_TEXTURES); + + // step 2: check the maximum number of if statements the shader can have too.. + this.MAX_TEXTURES = checkMaxIfStatementsInShader( + this.MAX_TEXTURES, gl); + } + + this._shader = this.shaderGenerator.generateShader(this.MAX_TEXTURES); + + // we use the second shader as the first one depending on your browser + // may omit aTextureId as it is not used by the shader so is optimized out. + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + /* eslint-disable max-len */ + this._packedGeometries[i] = new (this.geometryClass)(); + } + }; + + /** + * Handles the `prerender` signal. + * + * It ensures that flushes start from the first geometry + * object again. + */ + AbstractBatchRenderer.prototype.onPrerender = function onPrerender () + { + this._flushId = 0; + }; + + /** + * Buffers the "batchable" object. It need not be rendered + * immediately. + * + * @param {PIXI.Sprite} sprite - the sprite to render when + * using this spritebatch + */ + AbstractBatchRenderer.prototype.render = function render (element) + { + if (!element._texture.valid) + { + return; + } + + if (this._vertexCount + (element.vertexData.length / 2) > this.size) + { + this.flush(); + } + + this._vertexCount += element.vertexData.length / 2; + this._indexCount += element.indices.length; + this._bufferedElements[this._bufferSize++] = element; + }; + + /** + * Renders the content _now_ and empties the current batch. + */ + AbstractBatchRenderer.prototype.flush = function flush () + { + if (this._vertexCount === 0) + { + return; + } + + var attributeBuffer = this.getAttributeBuffer(this._vertexCount); + var indexBuffer = this.getIndexBuffer(this._indexCount); + var gl = this.renderer.gl; + + var ref = this; + var elements = ref._bufferedElements; + var drawCalls = ref._drawCalls; + var MAX_TEXTURES = ref.MAX_TEXTURES; + var packedGeometries = ref._packedGeometries; + var vertexSize = ref.vertexSize; + + var touch = this.renderer.textureGC.count; + + var index = 0; + var _indexCount = 0; + + var nextTexture; + var currentTexture; + var textureCount = 0; + + var currentGroup = drawCalls[0]; + var groupCount = 0; + + var blendMode = -1;// blend-mode of previous element/sprite/object! + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.blend = blendMode; + + var TICK = ++BaseTexture._globalBatch; + var i; + + for (i = 0; i < this._bufferSize; ++i) + { + var sprite = elements[i]; + + elements[i] = null; + nextTexture = sprite._texture.baseTexture; + + var spriteBlendMode = premultiplyBlendMode[ + nextTexture.premultiplyAlpha ? 1 : 0][sprite.blendMode]; + + if (blendMode !== spriteBlendMode) + { + blendMode = spriteBlendMode; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + currentGroup.size = _indexCount - currentGroup.start; + + currentGroup = drawCalls[groupCount++]; + currentGroup.textureCount = 0; + currentGroup.blend = blendMode; + currentGroup.start = _indexCount; + } + + nextTexture.touched = touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + this.packInterleavedGeometry(sprite, attributeBuffer, + indexBuffer, index, _indexCount); + + // push a graphics.. + index += (sprite.vertexData.length / 2) * vertexSize; + _indexCount += sprite.indices.length; + } + + BaseTexture._globalBatch = TICK; + currentGroup.size = _indexCount - currentGroup.start; + + if (!settings.CAN_UPLOAD_SAME_BUFFER) + { /* Usually on iOS devices, where the browser doesn't + like uploads to the same buffer in a single frame. */ + if (this._packedGeometryPoolSize <= this._flushId) + { + this._packedGeometryPoolSize++; + packedGeometries[this._flushId] = new (this.geometryClass)(); + } + + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.bind(packedGeometries[this._flushId]); + this.renderer.geometry.updateBuffers(); + this._flushId++; + } + else + { + // lets use the faster option, always use buffer number 0 + packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0); + packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0); + + this.renderer.geometry.updateBuffers(); + } + + var textureSystem = this.renderer.texture; + var stateSystem = this.renderer.state; + + // Upload textures and do the draw calls + for (i = 0; i < groupCount; i++) + { + var group = drawCalls[i]; + var groupTextureCount = group.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + textureSystem.bind(group.textures[j], j); + group.textures[j] = null; + } + + stateSystem.setBlendMode(group.blend); + gl.drawElements(group.type, group.size, gl.UNSIGNED_SHORT, group.start * 2); + } + + // reset elements for the next flush + this._bufferSize = 0; + this._vertexCount = 0; + this._indexCount = 0; + }; + + /** + * Starts a new sprite batch. + */ + AbstractBatchRenderer.prototype.start = function start () + { + this.renderer.state.set(this.state); + + this.renderer.shader.bind(this._shader); + + if (settings.CAN_UPLOAD_SAME_BUFFER) + { + // bind buffer #0, we don't need others + this.renderer.geometry.bind(this._packedGeometries[this._flushId]); + } + }; + + /** + * Stops and flushes the current batch. + */ + AbstractBatchRenderer.prototype.stop = function stop () + { + this.flush(); + }; + + /** + * Destroys this `AbstractBatchRenderer`. It cannot be used again. + */ + AbstractBatchRenderer.prototype.destroy = function destroy () + { + for (var i = 0; i < this._packedGeometryPoolSize; i++) + { + if (this._packedGeometries[i]) + { + this._packedGeometries[i].destroy(); + } + } + + this.renderer.off('prerender', this.onPrerender, this); + + this._aBuffers = null; + this._iBuffers = null; + this._packedGeometries = null; + this._drawCalls = null; + + if (this._shader) + { + this._shader.destroy(); + this._shader = null; + } + + ObjectRenderer.prototype.destroy.call(this); + }; + + /** + * Fetches an attribute buffer from `this._aBuffers` that + * can hold atleast `size` floats. + * + * @param {number} size - minimum capacity required + * @return {ViewableBuffer} - buffer than can hold atleast `size` floats + * @private + */ + AbstractBatchRenderer.prototype.getAttributeBuffer = function getAttributeBuffer (size) + { + // 8 vertices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 8)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 8; + + if (this._aBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._aBuffers[roundedSize]; + + if (!buffer) + { + this._aBuffers[roundedSize] = buffer = new ViewableBuffer(roundedSize * this.vertexSize * 4); + } + + return buffer; + }; + + /** + * Fetches an index buffer from `this._iBuffers` that can + * has atleast `size` capacity. + * + * @param {number} size - minimum required capacity + * @return {Uint16Array} - buffer that can fit `size` + * indices. + * @private + */ + AbstractBatchRenderer.prototype.getIndexBuffer = function getIndexBuffer (size) + { + // 12 indices is enough for 2 quads + var roundedP2 = nextPow2(Math.ceil(size / 12)); + var roundedSizeIndex = log2(roundedP2); + var roundedSize = roundedP2 * 12; + + if (this._iBuffers.length <= roundedSizeIndex) + { + this._iBuffers.length = roundedSizeIndex + 1; + } + + var buffer = this._iBuffers[roundedSizeIndex]; + + if (!buffer) + { + this._iBuffers[roundedSizeIndex] = buffer = new Uint16Array(roundedSize); + } + + return buffer; + }; + + /** + * Takes the four batching parameters of `element`, interleaves + * and pushes them into the batching attribute/index buffers given. + * + * It uses these properties: `vertexData` `uvs`, `textureId` and + * `indicies`. It also uses the "tint" of the base-texture, if + * present. + * + * @param {PIXI.Sprite} element - element being rendered + * @param {PIXI.ViewableBuffer} attributeBuffer - attribute buffer. + * @param {Uint16Array} indexBuffer - index buffer + * @param {number} aIndex - number of floats already in the attribute buffer + * @param {number} iIndex - number of indices already in `indexBuffer` + */ + AbstractBatchRenderer.prototype.packInterleavedGeometry = function packInterleavedGeometry (element, attributeBuffer, indexBuffer, aIndex, iIndex) + { + var uint32View = attributeBuffer.uint32View; + var float32View = attributeBuffer.float32View; + + var packedVertices = aIndex / this.vertexSize; + var uvs = element.uvs; + var indicies = element.indices; + var vertexData = element.vertexData; + var textureId = element._texture.baseTexture._id; + + var alpha = Math.min(element.worldAlpha, 1.0); + var argb = (alpha < 1.0 + && element._texture.baseTexture.premultiplyAlpha) + ? premultiplyTint(element._tintRGB, alpha) + : element._tintRGB + (alpha * 255 << 24); + + // lets not worry about tint! for now.. + for (var i = 0; i < vertexData.length; i += 2) + { + float32View[aIndex++] = vertexData[i]; + float32View[aIndex++] = vertexData[i + 1]; + float32View[aIndex++] = uvs[i]; + float32View[aIndex++] = uvs[i + 1]; + uint32View[aIndex++] = argb; + float32View[aIndex++] = textureId; + } + + for (var i$1 = 0; i$1 < indicies.length; i$1++) + { + indexBuffer[iIndex++] = packedVertices + indicies[i$1]; + } + }; + + return AbstractBatchRenderer; +}(ObjectRenderer)); + +/** + * Helper that generates batching multi-texture shader. Use it with your new BatchRenderer + * + * @class + * @memberof PIXI + */ +var BatchShaderGenerator = function BatchShaderGenerator(vertexSrc, fragTemplate) +{ + /** + * Reference to the vertex shader source. + * + * @member {string} + */ + this.vertexSrc = vertexSrc; + + /** + * Reference to the fragement shader template. Must contain "%count%" and "%forloop%". + * + * @member {string} + */ + this.fragTemplate = fragTemplate; + + this.programCache = {}; + this.defaultGroupCache = {}; + + if (fragTemplate.indexOf('%count%') < 0) + { + throw new Error('Fragment template must contain "%count%".'); + } + + if (fragTemplate.indexOf('%forloop%') < 0) + { + throw new Error('Fragment template must contain "%forloop%".'); + } +}; + +BatchShaderGenerator.prototype.generateShader = function generateShader (maxTextures) +{ + if (!this.programCache[maxTextures]) + { + var sampleValues = new Int32Array(maxTextures); + + for (var i = 0; i < maxTextures; i++) + { + sampleValues[i] = i; + } + + this.defaultGroupCache[maxTextures] = UniformGroup.from({ uSamplers: sampleValues }, true); + + var fragmentSrc = this.fragTemplate; + + fragmentSrc = fragmentSrc.replace(/%count%/gi, ("" + maxTextures)); + fragmentSrc = fragmentSrc.replace(/%forloop%/gi, this.generateSampleSrc(maxTextures)); + + this.programCache[maxTextures] = new Program(this.vertexSrc, fragmentSrc); + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: this.defaultGroupCache[maxTextures], + }; + + return new Shader(this.programCache[maxTextures], uniforms); +}; + +BatchShaderGenerator.prototype.generateSampleSrc = function generateSampleSrc (maxTextures) +{ + var src = ''; + + src += '\n'; + src += '\n'; + + for (var i = 0; i < maxTextures; i++) + { + if (i > 0) + { + src += '\nelse '; + } + + if (i < maxTextures - 1) + { + src += "if(vTextureId < " + i + ".5)"; + } + + src += '\n{'; + src += "\n\tcolor = texture2D(uSamplers[" + i + "], vTextureCoord);"; + src += '\n}'; + } + + src += '\n'; + src += '\n'; + + return src; +}; + +/** + * Geometry used to batch standard PIXI content (e.g. Mesh, Sprite, Graphics objects). + * + * @class + * @memberof PIXI + */ +var BatchGeometry = /*@__PURE__*/(function (Geometry) { + function BatchGeometry(_static) + { + if ( _static === void 0 ) _static = false; + + Geometry.call(this); + + /** + * Buffer used for position, color, texture IDs + * + * @member {PIXI.Buffer} + * @protected + */ + this._buffer = new Buffer$1(null, _static, false); + + /** + * Index buffer data + * + * @member {PIXI.Buffer} + * @protected + */ + this._indexBuffer = new Buffer$1(null, _static, true); + + this.addAttribute('aVertexPosition', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aTextureCoord', this._buffer, 2, false, TYPES.FLOAT) + .addAttribute('aColor', this._buffer, 4, true, TYPES.UNSIGNED_BYTE) + .addAttribute('aTextureId', this._buffer, 1, true, TYPES.FLOAT) + .addIndex(this._indexBuffer); + } + + if ( Geometry ) BatchGeometry.__proto__ = Geometry; + BatchGeometry.prototype = Object.create( Geometry && Geometry.prototype ); + BatchGeometry.prototype.constructor = BatchGeometry; + + return BatchGeometry; +}(Geometry)); + +var defaultVertex$2 = "precision highp float;\nattribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\nattribute float aTextureId;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform vec4 tint;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\n\nvoid main(void){\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vTextureId = aTextureId;\n vColor = aColor * tint;\n}\n"; + +var defaultFragment$2 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\nvarying float vTextureId;\nuniform sampler2D uSamplers[%count%];\n\nvoid main(void){\n vec4 color;\n %forloop%\n gl_FragColor = color * vColor;\n}\n"; + +/** + * @class + * @memberof PIXI + * @hideconstructor + */ +var BatchPluginFactory = function BatchPluginFactory () {}; + +var staticAccessors$1$1 = { defaultVertexSrc: { configurable: true },defaultFragmentTemplate: { configurable: true } }; + +BatchPluginFactory.create = function create (options) +{ + var ref = Object.assign({ + vertex: defaultVertex$2, + fragment: defaultFragment$2, + geometryClass: BatchGeometry, + vertexSize: 6, + }, options); + var vertex = ref.vertex; + var fragment = ref.fragment; + var vertexSize = ref.vertexSize; + var geometryClass = ref.geometryClass; + + return /*@__PURE__*/(function (AbstractBatchRenderer) { + function BatchPlugin(renderer) + { + AbstractBatchRenderer.call(this, renderer); + + this.shaderGenerator = new BatchShaderGenerator(vertex, fragment); + this.geometryClass = geometryClass; + this.vertexSize = vertexSize; + } + + if ( AbstractBatchRenderer ) BatchPlugin.__proto__ = AbstractBatchRenderer; + BatchPlugin.prototype = Object.create( AbstractBatchRenderer && AbstractBatchRenderer.prototype ); + BatchPlugin.prototype.constructor = BatchPlugin; + + return BatchPlugin; + }(AbstractBatchRenderer)); +}; + +/** + * The default vertex shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultVertexSrc.get = function () +{ + return defaultVertex$2; +}; + +/** + * The default fragment shader source + * + * @static + * @type {string} + * @constant + */ +staticAccessors$1$1.defaultFragmentTemplate.get = function () +{ + return defaultFragment$2; +}; + +Object.defineProperties( BatchPluginFactory, staticAccessors$1$1 ); + +// Setup the default BatchRenderer plugin, this is what +// we'll actually export at the root level +var BatchRenderer = BatchPluginFactory.create(); + +/*! + * @pixi/extract - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/extract is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var TEMP_RECT = new Rectangle(); +var BYTES_PER_PIXEL = 4; + +/** + * The extract manager provides functionality to export content from the renderers. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.extract` + * + * @class + * @memberof PIXI.extract + */ +var Extract = function Extract(renderer) +{ + this.renderer = renderer; + /** + * Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture + * + * @member {PIXI.extract.Extract} extract + * @memberof PIXI.Renderer# + * @see PIXI.extract.Extract + */ + renderer.extract = this; +}; + +/** + * Will return a HTML Image of the target + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {HTMLImageElement} HTML Image of the target + */ +Extract.prototype.image = function image (target, format, quality) +{ + var image = new Image(); + + image.src = this.base64(target, format, quality); + + return image; +}; + +/** + * Will return a a base64 encoded string of this target. It works by calling + * `Extract.getCanvas` and then running toDataURL on that. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @param {string} [format] - Image format, e.g. "image/jpeg" or "image/webp". + * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92. + * @return {string} A base64 encoded string of the texture. + */ +Extract.prototype.base64 = function base64 (target, format, quality) +{ + return this.canvas(target).toDataURL(format, quality); +}; + +/** + * Creates a Canvas element, renders this target to it and then returns it. + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {HTMLCanvasElement} A Canvas element with the texture rendered on. + */ +Extract.prototype.canvas = function canvas (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var flipY = false; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + flipY = false; + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = this.renderer.resolution; + + flipY = true; + + frame = TEMP_RECT; + frame.width = this.renderer.width; + frame.height = this.renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = Math.floor(frame.width * resolution); + var height = Math.floor(frame.height * resolution); + + var canvasBuffer = new CanvasRenderTarget(width, height, 1); + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + // add the pixels to the canvas + var canvasData = canvasBuffer.context.getImageData(0, 0, width, height); + + Extract.arrayPostDivide(webglPixels, canvasData.data); + + canvasBuffer.context.putImageData(canvasData, 0, 0); + + // pulling pixels + if (flipY) + { + canvasBuffer.context.scale(1, -1); + canvasBuffer.context.drawImage(canvasBuffer.canvas, 0, -height); + } + + if (generated) + { + renderTexture.destroy(true); + } + + // send the canvas back.. + return canvasBuffer.canvas; +}; + +/** + * Will return a one-dimensional array containing the pixel data of the entire texture in RGBA + * order, with integer values between 0 and 255 (included). + * + * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture + * to convert. If left empty will use the main renderer + * @return {Uint8Array} One-dimensional array containing the pixel data of the entire texture + */ +Extract.prototype.pixels = function pixels (target) +{ + var renderer = this.renderer; + var resolution; + var frame; + var renderTexture; + var generated = false; + + if (target) + { + if (target instanceof RenderTexture) + { + renderTexture = target; + } + else + { + renderTexture = this.renderer.generateTexture(target); + generated = true; + } + } + + if (renderTexture) + { + resolution = renderTexture.baseTexture.resolution; + frame = renderTexture.frame; + + // bind the buffer + renderer.renderTexture.bind(renderTexture); + } + else + { + resolution = renderer.resolution; + + frame = TEMP_RECT; + frame.width = renderer.width; + frame.height = renderer.height; + + renderer.renderTexture.bind(null); + } + + var width = frame.width * resolution; + var height = frame.height * resolution; + + var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height); + + // read pixels to the array + var gl = renderer.gl; + + gl.readPixels( + frame.x * resolution, + frame.y * resolution, + width, + height, + gl.RGBA, + gl.UNSIGNED_BYTE, + webglPixels + ); + + if (generated) + { + renderTexture.destroy(true); + } + + Extract.arrayPostDivide(webglPixels, webglPixels); + + return webglPixels; +}; + +/** + * Destroys the extract + * + */ +Extract.prototype.destroy = function destroy () +{ + this.renderer.extract = null; + this.renderer = null; +}; + +/** + * Takes premultiplied pixel data and produces regular pixel data + * + * @private + * @param pixels {number[] | Uint8Array | Uint8ClampedArray} array of pixel data + * @param out {number[] | Uint8Array | Uint8ClampedArray} output array + */ +Extract.arrayPostDivide = function arrayPostDivide (pixels, out) +{ + for (var i = 0; i < pixels.length; i += 4) + { + var alpha = out[i + 3] = pixels[i + 3]; + + if (alpha !== 0) + { + out[i] = Math.round(Math.min(pixels[i] * 255.0 / alpha, 255.0)); + out[i + 1] = Math.round(Math.min(pixels[i + 1] * 255.0 / alpha, 255.0)); + out[i + 2] = Math.round(Math.min(pixels[i + 2] * 255.0 / alpha, 255.0)); + } + else + { + out[i] = pixels[i]; + out[i + 1] = pixels[i + 1]; + out[i + 2] = pixels[i + 2]; + } + } +}; + +/*! + * @pixi/interaction - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/interaction is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Holds all information related to an Interaction event + * + * @class + * @memberof PIXI.interaction + */ +var InteractionData = function InteractionData() +{ + /** + * This point stores the global coords of where the touch/mouse event happened + * + * @member {PIXI.Point} + */ + this.global = new Point(); + + /** + * The target Sprite that was interacted with + * + * @member {PIXI.Sprite} + */ + this.target = null; + + /** + * When passed to an event handler, this will be the original DOM Event that was captured + * + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent + * @member {MouseEvent|TouchEvent|PointerEvent} + */ + this.originalEvent = null; + + /** + * Unique identifier for this interaction + * + * @member {number} + */ + this.identifier = null; + + /** + * Indicates whether or not the pointer device that created the event is the primary pointer. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary + * @type {Boolean} + */ + this.isPrimary = false; + + /** + * Indicates which button was pressed on the mouse or pointer device to trigger the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button + * @type {number} + */ + this.button = 0; + + /** + * Indicates which buttons are pressed on the mouse or pointer device when the event is triggered. + * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/buttons + * @type {number} + */ + this.buttons = 0; + + /** + * The width of the pointer's contact along the x-axis, measured in CSS pixels. + * radiusX of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width + * @type {number} + */ + this.width = 0; + + /** + * The height of the pointer's contact along the y-axis, measured in CSS pixels. + * radiusY of TouchEvents will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height + * @type {number} + */ + this.height = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX + * @type {number} + */ + this.tiltX = 0; + + /** + * The angle, in degrees, between the pointer device and the screen. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY + * @type {number} + */ + this.tiltY = 0; + + /** + * The type of pointer that triggered the event. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType + * @type {string} + */ + this.pointerType = null; + + /** + * Pressure applied by the pointing device during the event. A Touch's force property + * will be represented by this value. + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure + * @type {number} + */ + this.pressure = 0; + + /** + * From TouchEvents (not PointerEvents triggered by touches), the rotationAngle of the Touch. + * @see https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle + * @type {number} + */ + this.rotationAngle = 0; + + /** + * Twist of a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.twist = 0; + + /** + * Barrel pressure on a stylus pointer. + * @see https://w3c.github.io/pointerevents/#pointerevent-interface + * @type {number} + */ + this.tangentialPressure = 0; +}; + +var prototypeAccessors$6 = { pointerId: { configurable: true } }; + +/** + * The unique identifier of the pointer. It will be the same as `identifier`. + * @readonly + * @member {number} + * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId + */ +prototypeAccessors$6.pointerId.get = function () +{ + return this.identifier; +}; + +/** + * This will return the local coordinates of the specified displayObject for this InteractionData + * + * @param {PIXI.DisplayObject} displayObject - The DisplayObject that you would like the local + * coords off + * @param {PIXI.Point} [point] - A Point object in which to store the value, optional (otherwise + * will create a new point) + * @param {PIXI.Point} [globalPos] - A Point object containing your custom global coords, optional + * (otherwise will use the current global coords) + * @return {PIXI.Point} A point containing the coordinates of the InteractionData position relative + * to the DisplayObject + */ +InteractionData.prototype.getLocalPosition = function getLocalPosition (displayObject, point, globalPos) +{ + return displayObject.worldTransform.applyInverse(globalPos || this.global, point); +}; + +/** + * Copies properties from normalized event data. + * + * @param {Touch|MouseEvent|PointerEvent} event The normalized event data + */ +InteractionData.prototype.copyEvent = function copyEvent (event) +{ + // isPrimary should only change on touchstart/pointerdown, so we don't want to overwrite + // it with "false" on later events when our shim for it on touch events might not be + // accurate + if (event.isPrimary) + { + this.isPrimary = true; + } + this.button = event.button; + // event.buttons is not available in all browsers (ie. Safari), but it does have a non-standard + // event.which property instead, which conveys the same information. + this.buttons = Number.isInteger(event.buttons) ? event.buttons : event.which; + this.width = event.width; + this.height = event.height; + this.tiltX = event.tiltX; + this.tiltY = event.tiltY; + this.pointerType = event.pointerType; + this.pressure = event.pressure; + this.rotationAngle = event.rotationAngle; + this.twist = event.twist || 0; + this.tangentialPressure = event.tangentialPressure || 0; +}; + +/** + * Resets the data for pooling. + */ +InteractionData.prototype.reset = function reset () +{ + // isPrimary is the only property that we really need to reset - everything else is + // guaranteed to be overwritten + this.isPrimary = false; +}; + +Object.defineProperties( InteractionData.prototype, prototypeAccessors$6 ); + +/** + * Event class that mimics native DOM events. + * + * @class + * @memberof PIXI.interaction + */ +var InteractionEvent = function InteractionEvent() +{ + /** + * Whether this event will continue propagating in the tree. + * + * Remaining events for the {@link stopsPropagatingAt} object + * will still be dispatched. + * + * @member {boolean} + */ + this.stopped = false; + + /** + * At which object this event stops propagating. + * + * @private + * @member {PIXI.DisplayObject} + */ + this.stopsPropagatingAt = null; + + /** + * Whether we already reached the element we want to + * stop propagating at. This is important for delayed events, + * where we start over deeper in the tree again. + * + * @private + * @member {boolean} + */ + this.stopPropagationHint = false; + + /** + * The object which caused this event to be dispatched. + * For listener callback see {@link PIXI.interaction.InteractionEvent.currentTarget}. + * + * @member {PIXI.DisplayObject} + */ + this.target = null; + + /** + * The object whose event listener’s callback is currently being invoked. + * + * @member {PIXI.DisplayObject} + */ + this.currentTarget = null; + + /** + * Type of the event + * + * @member {string} + */ + this.type = null; + + /** + * InteractionData related to this event + * + * @member {PIXI.interaction.InteractionData} + */ + this.data = null; +}; + +/** + * Prevents event from reaching any objects other than the current object. + * + */ +InteractionEvent.prototype.stopPropagation = function stopPropagation () +{ + this.stopped = true; + this.stopPropagationHint = true; + this.stopsPropagatingAt = this.currentTarget; +}; + +/** + * Resets the event. + */ +InteractionEvent.prototype.reset = function reset () +{ + this.stopped = false; + this.stopsPropagatingAt = null; + this.stopPropagationHint = false; + this.currentTarget = null; + this.target = null; +}; + +/** + * DisplayObjects with the {@link PIXI.interaction.interactiveTarget} mixin use this class to track interactions + * + * @class + * @private + * @memberof PIXI.interaction + */ +var InteractionTrackingData = function InteractionTrackingData(pointerId) +{ + this._pointerId = pointerId; + this._flags = InteractionTrackingData.FLAGS.NONE; +}; + +var prototypeAccessors$1$3 = { pointerId: { configurable: true },flags: { configurable: true },none: { configurable: true },over: { configurable: true },rightDown: { configurable: true },leftDown: { configurable: true } }; + +/** + * + * @private + * @param {number} flag - The interaction flag to set + * @param {boolean} yn - Should the flag be set or unset + */ +InteractionTrackingData.prototype._doSet = function _doSet (flag, yn) +{ + if (yn) + { + this._flags = this._flags | flag; + } + else + { + this._flags = this._flags & (~flag); + } +}; + +/** + * Unique pointer id of the event + * + * @readonly + * @private + * @member {number} + */ +prototypeAccessors$1$3.pointerId.get = function () +{ + return this._pointerId; +}; + +/** + * State of the tracking data, expressed as bit flags + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.flags.get = function () +{ + return this._flags; +}; + +prototypeAccessors$1$3.flags.set = function (flags) // eslint-disable-line require-jsdoc +{ + this._flags = flags; +}; + +/** + * Is the tracked event inactive (not over or down)? + * + * @private + * @member {number} + */ +prototypeAccessors$1$3.none.get = function () +{ + return this._flags === this.constructor.FLAGS.NONE; +}; + +/** + * Is the tracked event over the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.over.get = function () +{ + return (this._flags & this.constructor.FLAGS.OVER) !== 0; +}; + +prototypeAccessors$1$3.over.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.OVER, yn); +}; + +/** + * Did the right mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.rightDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.RIGHT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.rightDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.RIGHT_DOWN, yn); +}; + +/** + * Did the left mouse button come down in the DisplayObject? + * + * @private + * @member {boolean} + */ +prototypeAccessors$1$3.leftDown.get = function () +{ + return (this._flags & this.constructor.FLAGS.LEFT_DOWN) !== 0; +}; + +prototypeAccessors$1$3.leftDown.set = function (yn) // eslint-disable-line require-jsdoc +{ + this._doSet(this.constructor.FLAGS.LEFT_DOWN, yn); +}; + +Object.defineProperties( InteractionTrackingData.prototype, prototypeAccessors$1$3 ); + +InteractionTrackingData.FLAGS = Object.freeze({ + NONE: 0, + OVER: 1 << 0, + LEFT_DOWN: 1 << 1, + RIGHT_DOWN: 1 << 2, +}); + +/** + * Interface for classes that represent a hit area. + * + * It is implemented by the following classes: + * - {@link PIXI.Circle} + * - {@link PIXI.Ellipse} + * - {@link PIXI.Polygon} + * - {@link PIXI.RoundedRectangle} + * + * @interface IHitArea + * @memberof PIXI + */ + +/** + * Checks whether the x and y coordinates given are contained within this area + * + * @method + * @name contains + * @memberof PIXI.IHitArea# + * @param {number} x - The X coordinate of the point to test + * @param {number} y - The Y coordinate of the point to test + * @return {boolean} Whether the x/y coordinates are within this area + */ + +/** + * Default property values of interactive objects + * Used by {@link PIXI.interaction.InteractionManager} to automatically give all DisplayObjects these properties + * + * @private + * @name interactiveTarget + * @type {Object} + * @memberof PIXI.interaction + * @example + * function MyObject() {} + * + * Object.assign( + * DisplayObject.prototype, + * PIXI.interaction.interactiveTarget + * ); + */ +var interactiveTarget = { + + /** + * Enable interaction events for the DisplayObject. Touch, pointer and mouse + * events will not be emitted unless `interactive` is set to `true`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.on('tap', (event) => { + * //handle event + * }); + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + interactive: false, + + /** + * Determines if the children to the displayObject can be clicked/touched + * Setting this to false allows PixiJS to bypass a recursive `hitTest` function + * + * @member {boolean} + * @memberof PIXI.Container# + */ + interactiveChildren: true, + + /** + * Interaction shape. Children will be hit first, then this shape will be checked. + * Setting this will cause this shape to be checked in hit tests rather than the displayObject's bounds. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.hitArea = new PIXI.Rectangle(0, 0, 100, 100); + * @member {PIXI.IHitArea} + * @memberof PIXI.DisplayObject# + */ + hitArea: null, + + /** + * If enabled, the mouse cursor use the pointer behavior when hovered over the displayObject if it is interactive + * Setting this changes the 'cursor' property to `'pointer'`. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.buttonMode = true; + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + get buttonMode() + { + return this.cursor === 'pointer'; + }, + set buttonMode(value) + { + if (value) + { + this.cursor = 'pointer'; + } + else if (this.cursor === 'pointer') + { + this.cursor = null; + } + }, + + /** + * This defines what cursor mode is used when the mouse cursor + * is hovered over the displayObject. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.interactive = true; + * sprite.cursor = 'wait'; + * @see https://developer.mozilla.org/en/docs/Web/CSS/cursor + * + * @member {string} + * @memberof PIXI.DisplayObject# + */ + cursor: null, + + /** + * Internal set of all active pointers, by identifier + * + * @member {Map} + * @memberof PIXI.DisplayObject# + * @private + */ + get trackedPointers() + { + if (this._trackedPointers === undefined) { this._trackedPointers = {}; } + + return this._trackedPointers; + }, + + /** + * Map of all tracked pointers, by identifier. Use trackedPointers to access. + * + * @private + * @type {Map} + */ + _trackedPointers: undefined, +}; + +// Mix interactiveTarget into DisplayObject.prototype, +// after deprecation has been handled +DisplayObject.mixin(interactiveTarget); + +var MOUSE_POINTER_ID = 1; + +// helpers for hitTest() - only used inside hitTest() +var hitTestEvent = { + target: null, + data: { + global: null, + }, +}; + +/** + * The interaction manager deals with mouse, touch and pointer events. + * + * Any DisplayObject can be interactive if its `interactive` property is set to true. + * + * This manager also supports multitouch. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.interaction` + * + * @class + * @extends PIXI.utils.EventEmitter + * @memberof PIXI.interaction + */ +var InteractionManager = /*@__PURE__*/(function (EventEmitter) { + function InteractionManager(renderer, options) + { + EventEmitter.call(this); + + options = options || {}; + + /** + * The renderer this interaction manager works for. + * + * @member {PIXI.AbstractRenderer} + */ + this.renderer = renderer; + + /** + * Should default browser actions automatically be prevented. + * Does not apply to pointer events for backwards compatibility + * preventDefault on pointer events stops mouse events from firing + * Thus, for every pointer event, there will always be either a mouse of touch event alongside it. + * + * @member {boolean} + * @default true + */ + this.autoPreventDefault = options.autoPreventDefault !== undefined ? options.autoPreventDefault : true; + + /** + * Frequency in milliseconds that the mousemove, mouseover & mouseout interaction events will be checked. + * + * @member {number} + * @default 10 + */ + this.interactionFrequency = options.interactionFrequency || 10; + + /** + * The mouse data + * + * @member {PIXI.interaction.InteractionData} + */ + this.mouse = new InteractionData(); + this.mouse.identifier = MOUSE_POINTER_ID; + + // setting the mouse to start off far off screen will mean that mouse over does + // not get called before we even move the mouse. + this.mouse.global.set(-999999); + + /** + * Actively tracked InteractionData + * + * @private + * @member {Object.} + */ + this.activeInteractionData = {}; + this.activeInteractionData[MOUSE_POINTER_ID] = this.mouse; + + /** + * Pool of unused InteractionData + * + * @private + * @member {PIXI.interaction.InteractionData[]} + */ + this.interactionDataPool = []; + + /** + * An event data object to handle all the event tracking/dispatching + * + * @member {object} + */ + this.eventData = new InteractionEvent(); + + /** + * The DOM element to bind to. + * + * @protected + * @member {HTMLElement} + */ + this.interactionDOMElement = null; + + /** + * This property determines if mousemove and touchmove events are fired only when the cursor + * is over the object. + * Setting to true will make things work more in line with how the DOM version works. + * Setting to false can make things easier for things like dragging + * It is currently set to false as this is how PixiJS used to work. This will be set to true in + * future versions of pixi. + * + * @member {boolean} + * @default false + */ + this.moveWhenInside = false; + + /** + * Have events been attached to the dom element? + * + * @protected + * @member {boolean} + */ + this.eventsAdded = false; + + /** + * Is the mouse hovering over the renderer? + * + * @protected + * @member {boolean} + */ + this.mouseOverRenderer = false; + + /** + * Does the device support touch events + * https://www.w3.org/TR/touch-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsTouchEvents = 'ontouchstart' in window; + + /** + * Does the device support pointer events + * https://www.w3.org/Submission/pointer-events/ + * + * @readonly + * @member {boolean} + */ + this.supportsPointerEvents = !!window.PointerEvent; + + // this will make it so that you don't have to call bind all the time + + /** + * @private + * @member {Function} + */ + this.onPointerUp = this.onPointerUp.bind(this); + this.processPointerUp = this.processPointerUp.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerCancel = this.onPointerCancel.bind(this); + this.processPointerCancel = this.processPointerCancel.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerDown = this.onPointerDown.bind(this); + this.processPointerDown = this.processPointerDown.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerMove = this.onPointerMove.bind(this); + this.processPointerMove = this.processPointerMove.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOut = this.onPointerOut.bind(this); + this.processPointerOverOut = this.processPointerOverOut.bind(this); + + /** + * @private + * @member {Function} + */ + this.onPointerOver = this.onPointerOver.bind(this); + + /** + * Dictionary of how different cursor modes are handled. Strings are handled as CSS cursor + * values, objects are handled as dictionaries of CSS values for interactionDOMElement, + * and functions are called instead of changing the CSS. + * Default CSS cursor values are provided for 'default' and 'pointer' modes. + * @member {Object.} + */ + this.cursorStyles = { + default: 'inherit', + pointer: 'pointer', + }; + + /** + * The mode of the cursor that is being used. + * The value of this is a key from the cursorStyles dictionary. + * + * @member {string} + */ + this.currentCursorMode = null; + + /** + * Internal cached let. + * + * @private + * @member {string} + */ + this.cursor = null; + + /** + * Internal cached let. + * + * @private + * @member {PIXI.Point} + */ + this._tempPoint = new Point(); + + /** + * The current resolution / device pixel ratio. + * + * @member {number} + * @default 1 + */ + this.resolution = 1; + + /** + * Delayed pointer events. Used to guarantee correct ordering of over/out events. + * + * @private + * @member {Array} + */ + this.delayedEvents = []; + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display + * object. + * + * @event PIXI.interaction.InteractionManager#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. + * + * @event PIXI.interaction.InteractionManager#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. + * + * @event PIXI.interaction.InteractionManager#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. + * + * @event PIXI.interaction.InteractionManager#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. + * + * @event PIXI.interaction.InteractionManager#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. + * + * @event PIXI.interaction.InteractionManager#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown}. + * + * @event PIXI.interaction.InteractionManager#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.interaction.InteractionManager#event:rightdown}. + * + * @event PIXI.interaction.InteractionManager#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object + * + * @event PIXI.interaction.InteractionManager#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * + * @event PIXI.interaction.InteractionManager#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * Not always fired when some buttons are held down while others are released. In those cases, + * use [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown} and + * [mouseup]{@link PIXI.interaction.InteractionManager#event:mouseup} instead. + * + * @event PIXI.interaction.InteractionManager#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event + * + * @event PIXI.interaction.InteractionManager#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * + * @event PIXI.interaction.InteractionManager#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.interaction.InteractionManager#event:pointerdown}. + * + * @event PIXI.interaction.InteractionManager#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object + * + * @event PIXI.interaction.InteractionManager#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object + * + * @event PIXI.interaction.InteractionManager#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object + * + * @event PIXI.interaction.InteractionManager#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * + * @event PIXI.interaction.InteractionManager#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * + * @event PIXI.interaction.InteractionManager#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch + * + * @event PIXI.interaction.InteractionManager#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * + * @event PIXI.interaction.InteractionManager#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.interaction.InteractionManager#event:touchstart}. + * + * @event PIXI.interaction.InteractionManager#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * + * @event PIXI.interaction.InteractionManager#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed on the display. + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousedown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released over the display + * object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * over the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is pressed and released on + * the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#click + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is pressed + * and released on the display object. DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightclick + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button (usually a mouse left-button) is released outside the + * display object that initially registered a + * [mousedown]{@link PIXI.DisplayObject#event:mousedown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device secondary button (usually a mouse right-button) is released + * outside the display object that initially registered a + * [rightdown]{@link PIXI.DisplayObject#event:rightdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#rightupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mousemove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device (usually a mouse) is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#mouseout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerdown + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerup + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a pointer event. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointercancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is pressed and released on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointertap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device button is released outside the display object that initially + * registered a [pointerdown]{@link PIXI.DisplayObject#event:pointerdown}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerupoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved while over the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointermove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved onto the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerover + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a pointer device is moved off the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#pointerout + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed on the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchstart + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchend + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when the operating system cancels a touch. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchcancel + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is placed and removed from the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#tap + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is removed outside of the display object that initially + * registered a [touchstart]{@link PIXI.DisplayObject#event:touchstart}. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchendoutside + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + /** + * Fired when a touch point is moved along the display object. + * DisplayObject's `interactive` property must be set to `true` to fire event. + * + * @event PIXI.DisplayObject#touchmove + * @param {PIXI.interaction.InteractionEvent} event - Interaction event + */ + + this.setTargetElement(this.renderer.view, this.renderer.resolution); + } + + if ( EventEmitter ) InteractionManager.__proto__ = EventEmitter; + InteractionManager.prototype = Object.create( EventEmitter && EventEmitter.prototype ); + InteractionManager.prototype.constructor = InteractionManager; + + /** + * Hit tests a point against the display tree, returning the first interactive object that is hit. + * + * @param {PIXI.Point} globalPoint - A point to hit test with, in global space. + * @param {PIXI.Container} [root] - The root display object to start from. If omitted, defaults + * to the last rendered root of the associated renderer. + * @return {PIXI.DisplayObject} The hit display object, if any. + */ + InteractionManager.prototype.hitTest = function hitTest (globalPoint, root) + { + // clear the target for our hit test + hitTestEvent.target = null; + // assign the global point + hitTestEvent.data.global = globalPoint; + // ensure safety of the root + if (!root) + { + root = this.renderer._lastObjectRendered; + } + // run the hit test + this.processInteractive(hitTestEvent, root, null, true); + // return our found object - it'll be null if we didn't hit anything + + return hitTestEvent.target; + }; + + /** + * Sets the DOM element which will receive mouse/touch events. This is useful for when you have + * other DOM elements on top of the renderers Canvas element. With this you'll be bale to delegate + * another DOM element to receive those events. + * + * @param {HTMLElement} element - the DOM element which will receive mouse and touch events. + * @param {number} [resolution=1] - The resolution / device pixel ratio of the new element (relative to the canvas). + */ + InteractionManager.prototype.setTargetElement = function setTargetElement (element, resolution) + { + if ( resolution === void 0 ) resolution = 1; + + this.removeEvents(); + + this.interactionDOMElement = element; + + this.resolution = resolution; + + this.addEvents(); + }; + + /** + * Registers all the DOM events + * + * @private + */ + InteractionManager.prototype.addEvents = function addEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.add(this.update, this, UPDATE_PRIORITY.INTERACTION); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = 'none'; + this.interactionDOMElement.style['-ms-touch-action'] = 'none'; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = 'none'; + } + + /** + * These events are added first, so that if pointer events are normalized, they are fired + * in the same order as non-normalized events. ie. pointer event 1st, mouse / touch 2nd + */ + if (this.supportsPointerEvents) + { + window.document.addEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('pointerdown', this.onPointerDown, true); + // pointerout is fired in addition to pointerup (for touch events) and pointercancel + // we already handle those, so for the purposes of what we do in onPointerOut, we only + // care about the pointerleave event + this.interactionDOMElement.addEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('pointerover', this.onPointerOver, true); + window.addEventListener('pointercancel', this.onPointerCancel, true); + window.addEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.addEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.addEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.addEventListener('mouseover', this.onPointerOver, true); + window.addEventListener('mouseup', this.onPointerUp, true); + } + + // always look directly for touch events so that we can provide original data + // In a future version we should change this to being just a fallback and rely solely on + // PointerEvents whenever available + if (this.supportsTouchEvents) + { + this.interactionDOMElement.addEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.addEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.addEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.addEventListener('touchmove', this.onPointerMove, true); + } + + this.eventsAdded = true; + }; + + /** + * Removes all the DOM events that were previously registered + * + * @private + */ + InteractionManager.prototype.removeEvents = function removeEvents () + { + if (!this.interactionDOMElement) + { + return; + } + + Ticker.system.remove(this.update, this); + + if (window.navigator.msPointerEnabled) + { + this.interactionDOMElement.style['-ms-content-zooming'] = ''; + this.interactionDOMElement.style['-ms-touch-action'] = ''; + } + else if (this.supportsPointerEvents) + { + this.interactionDOMElement.style['touch-action'] = ''; + } + + if (this.supportsPointerEvents) + { + window.document.removeEventListener('pointermove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('pointerdown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('pointerleave', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('pointerover', this.onPointerOver, true); + window.removeEventListener('pointercancel', this.onPointerCancel, true); + window.removeEventListener('pointerup', this.onPointerUp, true); + } + else + { + window.document.removeEventListener('mousemove', this.onPointerMove, true); + this.interactionDOMElement.removeEventListener('mousedown', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('mouseout', this.onPointerOut, true); + this.interactionDOMElement.removeEventListener('mouseover', this.onPointerOver, true); + window.removeEventListener('mouseup', this.onPointerUp, true); + } + + if (this.supportsTouchEvents) + { + this.interactionDOMElement.removeEventListener('touchstart', this.onPointerDown, true); + this.interactionDOMElement.removeEventListener('touchcancel', this.onPointerCancel, true); + this.interactionDOMElement.removeEventListener('touchend', this.onPointerUp, true); + this.interactionDOMElement.removeEventListener('touchmove', this.onPointerMove, true); + } + + this.interactionDOMElement = null; + + this.eventsAdded = false; + }; + + /** + * Updates the state of interactive objects. + * Invoked by a throttled ticker update from {@link PIXI.Ticker.system}. + * + * @param {number} deltaTime - time delta since last tick + */ + InteractionManager.prototype.update = function update (deltaTime) + { + this._deltaTime += deltaTime; + + if (this._deltaTime < this.interactionFrequency) + { + return; + } + + this._deltaTime = 0; + + if (!this.interactionDOMElement) + { + return; + } + + // if the user move the mouse this check has already been done using the mouse move! + if (this.didMove) + { + this.didMove = false; + + return; + } + + this.cursor = null; + + // Resets the flag as set by a stopPropagation call. This flag is usually reset by a user interaction of any kind, + // but there was a scenario of a display object moving under a static mouse cursor. + // In this case, mouseover and mouseevents would not pass the flag test in dispatchEvent function + for (var k in this.activeInteractionData) + { + // eslint-disable-next-line no-prototype-builtins + if (this.activeInteractionData.hasOwnProperty(k)) + { + var interactionData = this.activeInteractionData[k]; + + if (interactionData.originalEvent && interactionData.pointerType !== 'touch') + { + var interactionEvent = this.configureInteractionEventForDOMEvent( + this.eventData, + interactionData.originalEvent, + interactionData + ); + + this.processInteractive( + interactionEvent, + this.renderer._lastObjectRendered, + this.processPointerOverOut, + true + ); + } + } + } + + this.setCursorMode(this.cursor); + }; + + /** + * Sets the current cursor mode, handling any callbacks or CSS style changes. + * + * @param {string} mode - cursor mode, a key from the cursorStyles dictionary + */ + InteractionManager.prototype.setCursorMode = function setCursorMode (mode) + { + mode = mode || 'default'; + // if the mode didn't actually change, bail early + if (this.currentCursorMode === mode) + { + return; + } + this.currentCursorMode = mode; + var style = this.cursorStyles[mode]; + + // only do things if there is a cursor style for it + if (style) + { + switch (typeof style) + { + case 'string': + // string styles are handled as cursor CSS + this.interactionDOMElement.style.cursor = style; + break; + case 'function': + // functions are just called, and passed the cursor mode + style(mode); + break; + case 'object': + // if it is an object, assume that it is a dictionary of CSS styles, + // apply it to the interactionDOMElement + Object.assign(this.interactionDOMElement.style, style); + break; + } + } + else if (typeof mode === 'string' && !Object.prototype.hasOwnProperty.call(this.cursorStyles, mode)) + { + // if it mode is a string (not a Symbol) and cursorStyles doesn't have any entry + // for the mode, then assume that the dev wants it to be CSS for the cursor. + this.interactionDOMElement.style.cursor = mode; + } + }; + + /** + * Dispatches an event on the display object that was interacted with + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.dispatchEvent = function dispatchEvent (displayObject, eventString, eventData) + { + // Even if the event was stopped, at least dispatch any remaining events + // for the same display object. + if (!eventData.stopPropagationHint || displayObject === eventData.stopsPropagatingAt) + { + eventData.currentTarget = displayObject; + eventData.type = eventString; + + displayObject.emit(eventString, eventData); + + if (displayObject[eventString]) + { + displayObject[eventString](eventData); + } + } + }; + + /** + * Puts a event on a queue to be dispatched later. This is used to guarantee correct + * ordering of over/out events. + * + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question + * @param {string} eventString - the name of the event (e.g, mousedown) + * @param {object} eventData - the event data object + * @private + */ + InteractionManager.prototype.delayDispatchEvent = function delayDispatchEvent (displayObject, eventString, eventData) + { + this.delayedEvents.push({ displayObject: displayObject, eventString: eventString, eventData: eventData }); + }; + + /** + * Maps x and y coords from a DOM object and maps them correctly to the PixiJS view. The + * resulting value is stored in the point. This takes into account the fact that the DOM + * element could be scaled and positioned anywhere on the screen. + * + * @param {PIXI.Point} point - the point that the result will be stored in + * @param {number} x - the x coord of the position to map + * @param {number} y - the y coord of the position to map + */ + InteractionManager.prototype.mapPositionToPoint = function mapPositionToPoint (point, x, y) + { + var rect; + + // IE 11 fix + if (!this.interactionDOMElement.parentElement) + { + rect = { x: 0, y: 0, width: 0, height: 0 }; + } + else + { + rect = this.interactionDOMElement.getBoundingClientRect(); + } + + var resolutionMultiplier = 1.0 / this.resolution; + + point.x = ((x - rect.left) * (this.interactionDOMElement.width / rect.width)) * resolutionMultiplier; + point.y = ((y - rect.top) * (this.interactionDOMElement.height / rect.height)) * resolutionMultiplier; + }; + + /** + * This function is provides a neat way of crawling through the scene graph and running a + * specified function on all interactive objects it finds. It will also take care of hit + * testing the interactive objects and passes the hit across in the function. + * + * @protected + * @param {PIXI.interaction.InteractionEvent} interactionEvent - event containing the point that + * is tested for collision + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the displayObject + * that will be hit test (recursively crawls its children) + * @param {Function} [func] - the function that will be called on each interactive object. The + * interactionEvent, displayObject and hit will be passed to the function + * @param {boolean} [hitTest] - this indicates if the objects inside should be hit test against the point + * @param {boolean} [interactive] - Whether the displayObject is interactive + * @param {boolean} [skipDelayed] - Whether to process delayed events before returning. This is + * used to avoid processing them too early during recursive calls. + * @return {boolean} returns true if the displayObject hit the point + */ + InteractionManager.prototype.processInteractive = function processInteractive (interactionEvent, displayObject, func, hitTest, interactive, skipDelayed) + { + if (!displayObject || !displayObject.visible) + { + return false; + } + + var point = interactionEvent.data.global; + + // Took a little while to rework this function correctly! But now it is done and nice and optimized! ^_^ + // + // This function will now loop through all objects and then only hit test the objects it HAS + // to, not all of them. MUCH faster.. + // An object will be hit test if the following is true: + // + // 1: It is interactive. + // 2: It belongs to a parent that is interactive AND one of the parents children have not already been hit. + // + // As another little optimization once an interactive object has been hit we can carry on + // through the scenegraph, but we know that there will be no more hits! So we can avoid extra hit tests + // A final optimization is that an object is not hit test directly if a child has already been hit. + + interactive = displayObject.interactive || interactive; + + var hit = false; + var interactiveParent = interactive; + + // Flag here can set to false if the event is outside the parents hitArea or mask + var hitTestChildren = true; + + // If there is a hitArea, no need to test against anything else if the pointer is not within the hitArea + // There is also no longer a need to hitTest children. + if (displayObject.hitArea) + { + if (hitTest) + { + displayObject.worldTransform.applyInverse(point, this._tempPoint); + if (!displayObject.hitArea.contains(this._tempPoint.x, this._tempPoint.y)) + { + hitTest = false; + hitTestChildren = false; + } + else + { + hit = true; + } + } + interactiveParent = false; + } + // If there is a mask, no need to hitTest against anything else if the pointer is not within the mask. + // We still want to hitTestChildren, however, to ensure a mouseout can still be generated. + // https://github.com/pixijs/pixi.js/issues/5135 + else if (displayObject._mask) + { + if (hitTest) + { + if (!(displayObject._mask.containsPoint && displayObject._mask.containsPoint(point))) + { + hitTest = false; + } + } + } + + // ** FREE TIP **! If an object is not interactive or has no buttons in it + // (such as a game scene!) set interactiveChildren to false for that displayObject. + // This will allow PixiJS to completely ignore and bypass checking the displayObjects children. + if (hitTestChildren && displayObject.interactiveChildren && displayObject.children) + { + var children = displayObject.children; + + for (var i = children.length - 1; i >= 0; i--) + { + var child = children[i]; + + // time to get recursive.. if this function will return if something is hit.. + var childHit = this.processInteractive(interactionEvent, child, func, hitTest, interactiveParent, true); + + if (childHit) + { + // its a good idea to check if a child has lost its parent. + // this means it has been removed whilst looping so its best + if (!child.parent) + { + continue; + } + + // we no longer need to hit test any more objects in this container as we we + // now know the parent has been hit + interactiveParent = false; + + // If the child is interactive , that means that the object hit was actually + // interactive and not just the child of an interactive object. + // This means we no longer need to hit test anything else. We still need to run + // through all objects, but we don't need to perform any hit tests. + + if (childHit) + { + if (interactionEvent.target) + { + hitTest = false; + } + hit = true; + } + } + } + } + + // no point running this if the item is not interactive or does not have an interactive parent. + if (interactive) + { + // if we are hit testing (as in we have no hit any objects yet) + // We also don't need to worry about hit testing if once of the displayObjects children + // has already been hit - but only if it was interactive, otherwise we need to keep + // looking for an interactive child, just in case we hit one + if (hitTest && !interactionEvent.target) + { + // already tested against hitArea if it is defined + if (!displayObject.hitArea && displayObject.containsPoint) + { + if (displayObject.containsPoint(point)) + { + hit = true; + } + } + } + + if (displayObject.interactive) + { + if (hit && !interactionEvent.target) + { + interactionEvent.target = displayObject; + } + + if (func) + { + func(interactionEvent, displayObject, !!hit); + } + } + } + + var delayedEvents = this.delayedEvents; + + if (delayedEvents.length && !skipDelayed) + { + // Reset the propagation hint, because we start deeper in the tree again. + interactionEvent.stopPropagationHint = false; + + var delayedLen = delayedEvents.length; + + this.delayedEvents = []; + + for (var i$1 = 0; i$1 < delayedLen; i$1++) + { + var ref = delayedEvents[i$1]; + var displayObject$1 = ref.displayObject; + var eventString = ref.eventString; + var eventData = ref.eventData; + + // When we reach the object we wanted to stop propagating at, + // set the propagation hint. + if (eventData.stopsPropagatingAt === displayObject$1) + { + eventData.stopPropagationHint = true; + } + + this.dispatchEvent(displayObject$1, eventString, eventData); + } + } + + return hit; + }; + + /** + * Is called when the pointer button is pressed down on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being pressed down + */ + InteractionManager.prototype.onPointerDown = function onPointerDown (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + /** + * No need to prevent default on natural pointer events, as there are no side effects + * Normalized events, however, may have the double mousedown/touchstart issue on the native android browser, + * so still need to be prevented. + */ + + // Guaranteed that there will be at least one event in events, and all events must have the same pointer type + + if (this.autoPreventDefault && events[0].isNormalized) + { + var cancelable = originalEvent.cancelable || !('cancelable' in originalEvent); + + if (cancelable) + { + originalEvent.preventDefault(); + } + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerDown, true); + + this.emit('pointerdown', interactionEvent); + if (event.pointerType === 'touch') + { + this.emit('touchstart', interactionEvent); + } + // emit a mouse event for "pen" pointers, the way a browser would emit a fallback event + else if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? 'rightdown' : 'mousedown', this.eventData); + } + } + }; + + /** + * Processes the result of the pointer down check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerDown = function processPointerDown (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + var id = interactionEvent.data.identifier; + + if (hit) + { + if (!displayObject.trackedPointers[id]) + { + displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + this.dispatchEvent(displayObject, 'pointerdown', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchstart', interactionEvent); + } + else if (data.pointerType === 'mouse' || data.pointerType === 'pen') + { + var isRightButton = data.button === 2; + + if (isRightButton) + { + displayObject.trackedPointers[id].rightDown = true; + } + else + { + displayObject.trackedPointers[id].leftDown = true; + } + + this.dispatchEvent(displayObject, isRightButton ? 'rightdown' : 'mousedown', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being released + * @param {boolean} cancelled - true if the pointer is cancelled + * @param {Function} func - Function passed to {@link processInteractive} + */ + InteractionManager.prototype.onPointerComplete = function onPointerComplete (originalEvent, cancelled, func) + { + var events = this.normalizeToPointerData(originalEvent); + + var eventLen = events.length; + + // if the event wasn't targeting our canvas, then consider it to be pointerupoutside + // in all cases (unless it was a pointercancel) + var eventAppend = originalEvent.target !== this.interactionDOMElement ? 'outside' : ''; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + // perform hit testing for events targeting our canvas or cancel events + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, func, cancelled || !eventAppend); + + this.emit(cancelled ? 'pointercancel' : ("pointerup" + eventAppend), interactionEvent); + + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + var isRightButton = event.button === 2; + + this.emit(isRightButton ? ("rightup" + eventAppend) : ("mouseup" + eventAppend), interactionEvent); + } + else if (event.pointerType === 'touch') + { + this.emit(cancelled ? 'touchcancel' : ("touchend" + eventAppend), interactionEvent); + this.releaseInteractionDataForPointerId(event.pointerId, interactionData); + } + } + }; + + /** + * Is called when the pointer button is cancelled + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerCancel = function onPointerCancel (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, true, this.processPointerCancel); + }; + + /** + * Processes the result of the pointer cancel check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + */ + InteractionManager.prototype.processPointerCancel = function processPointerCancel (interactionEvent, displayObject) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + if (displayObject.trackedPointers[id] !== undefined) + { + delete displayObject.trackedPointers[id]; + this.dispatchEvent(displayObject, 'pointercancel', interactionEvent); + + if (data.pointerType === 'touch') + { + this.dispatchEvent(displayObject, 'touchcancel', interactionEvent); + } + } + }; + + /** + * Is called when the pointer button is released on the renderer element + * + * @private + * @param {PointerEvent} event - The DOM event of a pointer button being released + */ + InteractionManager.prototype.onPointerUp = function onPointerUp (event) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && event.pointerType === 'touch') { return; } + + this.onPointerComplete(event, false, this.processPointerUp); + }; + + /** + * Processes the result of the pointer up check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerUp = function processPointerUp (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var trackingData = displayObject.trackedPointers[id]; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + // need to track mouse down status in the mouse block so that we can emit + // event in a later block + var isMouseTap = false; + + // Mouse only + if (isMouse) + { + var isRightButton = data.button === 2; + + var flags = InteractionTrackingData.FLAGS; + + var test = isRightButton ? flags.RIGHT_DOWN : flags.LEFT_DOWN; + + var isDown = trackingData !== undefined && (trackingData.flags & test); + + if (hit) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightup' : 'mouseup', interactionEvent); + + if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightclick' : 'click', interactionEvent); + // because we can confirm that the mousedown happened on this object, flag for later emit of pointertap + isMouseTap = true; + } + } + else if (isDown) + { + this.dispatchEvent(displayObject, isRightButton ? 'rightupoutside' : 'mouseupoutside', interactionEvent); + } + // update the down state of the tracking data + if (trackingData) + { + if (isRightButton) + { + trackingData.rightDown = false; + } + else + { + trackingData.leftDown = false; + } + } + } + + // Pointers and Touches, and Mouse + if (hit) + { + this.dispatchEvent(displayObject, 'pointerup', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchend', interactionEvent); } + + if (trackingData) + { + // emit pointertap if not a mouse, or if the mouse block decided it was a tap + if (!isMouse || isMouseTap) + { + this.dispatchEvent(displayObject, 'pointertap', interactionEvent); + } + if (isTouch) + { + this.dispatchEvent(displayObject, 'tap', interactionEvent); + // touches are no longer over (if they ever were) when we get the touchend + // so we should ensure that we don't keep pretending that they are + trackingData.over = false; + } + } + } + else if (trackingData) + { + this.dispatchEvent(displayObject, 'pointerupoutside', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchendoutside', interactionEvent); } + } + // Only remove the tracking data if there is no over/down state still associated with it + if (trackingData && trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + }; + + /** + * Is called when the pointer moves across the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer moving + */ + InteractionManager.prototype.onPointerMove = function onPointerMove (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + if (events[0].pointerType === 'mouse' || events[0].pointerType === 'pen') + { + this.didMove = true; + + this.cursor = null; + } + + var eventLen = events.length; + + for (var i = 0; i < eventLen; i++) + { + var event = events[i]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = originalEvent; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerMove, true); + + this.emit('pointermove', interactionEvent); + if (event.pointerType === 'touch') { this.emit('touchmove', interactionEvent); } + if (event.pointerType === 'mouse' || event.pointerType === 'pen') { this.emit('mousemove', interactionEvent); } + } + + if (events[0].pointerType === 'mouse') + { + this.setCursorMode(this.cursor); + + // TODO BUG for parents interactive object (border order issue) + } + }; + + /** + * Processes the result of the pointer move check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerMove = function processPointerMove (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var isTouch = data.pointerType === 'touch'; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + if (isMouse) + { + this.processPointerOverOut(interactionEvent, displayObject, hit); + } + + if (!this.moveWhenInside || hit) + { + this.dispatchEvent(displayObject, 'pointermove', interactionEvent); + if (isTouch) { this.dispatchEvent(displayObject, 'touchmove', interactionEvent); } + if (isMouse) { this.dispatchEvent(displayObject, 'mousemove', interactionEvent); } + } + }; + + /** + * Is called when the pointer is moved out of the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer being moved out + */ + InteractionManager.prototype.onPointerOut = function onPointerOut (originalEvent) + { + // if we support touch events, then only use those for touch events, not pointer events + if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; } + + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOut, so events will always be length 1 + var event = events[0]; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = false; + this.setCursorMode(null); + } + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerOverOut, false); + + this.emit('pointerout', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseout', interactionEvent); + } + else + { + // we can get touchleave events after touchend, so we want to make sure we don't + // introduce memory leaks + this.releaseInteractionDataForPointerId(interactionData.identifier); + } + }; + + /** + * Processes the result of the pointer over/out check and dispatches the event if need be + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event + * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested + * @param {boolean} hit - the result of the hit test on the display object + */ + InteractionManager.prototype.processPointerOverOut = function processPointerOverOut (interactionEvent, displayObject, hit) + { + var data = interactionEvent.data; + + var id = interactionEvent.data.identifier; + + var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen'); + + var trackingData = displayObject.trackedPointers[id]; + + // if we just moused over the display object, then we need to track that state + if (hit && !trackingData) + { + trackingData = displayObject.trackedPointers[id] = new InteractionTrackingData(id); + } + + if (trackingData === undefined) { return; } + + if (hit && this.mouseOverRenderer) + { + if (!trackingData.over) + { + trackingData.over = true; + this.delayDispatchEvent(displayObject, 'pointerover', interactionEvent); + if (isMouse) + { + this.delayDispatchEvent(displayObject, 'mouseover', interactionEvent); + } + } + + // only change the cursor if it has not already been changed (by something deeper in the + // display tree) + if (isMouse && this.cursor === null) + { + this.cursor = displayObject.cursor; + } + } + else if (trackingData.over) + { + trackingData.over = false; + this.dispatchEvent(displayObject, 'pointerout', this.eventData); + if (isMouse) + { + this.dispatchEvent(displayObject, 'mouseout', interactionEvent); + } + // if there is no mouse down information for the pointer, then it is safe to delete + if (trackingData.none) + { + delete displayObject.trackedPointers[id]; + } + } + }; + + /** + * Is called when the pointer is moved into the renderer element + * + * @private + * @param {PointerEvent} originalEvent - The DOM event of a pointer button being moved into the renderer view + */ + InteractionManager.prototype.onPointerOver = function onPointerOver (originalEvent) + { + var events = this.normalizeToPointerData(originalEvent); + + // Only mouse and pointer can call onPointerOver, so events will always be length 1 + var event = events[0]; + + var interactionData = this.getInteractionDataForPointerId(event); + + var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData); + + interactionEvent.data.originalEvent = event; + + if (event.pointerType === 'mouse') + { + this.mouseOverRenderer = true; + } + + this.emit('pointerover', interactionEvent); + if (event.pointerType === 'mouse' || event.pointerType === 'pen') + { + this.emit('mouseover', interactionEvent); + } + }; + + /** + * Get InteractionData for a given pointerId. Store that data as well + * + * @private + * @param {PointerEvent} event - Normalized pointer event, output from normalizeToPointerData + * @return {PIXI.interaction.InteractionData} - Interaction data for the given pointer identifier + */ + InteractionManager.prototype.getInteractionDataForPointerId = function getInteractionDataForPointerId (event) + { + var pointerId = event.pointerId; + + var interactionData; + + if (pointerId === MOUSE_POINTER_ID || event.pointerType === 'mouse') + { + interactionData = this.mouse; + } + else if (this.activeInteractionData[pointerId]) + { + interactionData = this.activeInteractionData[pointerId]; + } + else + { + interactionData = this.interactionDataPool.pop() || new InteractionData(); + interactionData.identifier = pointerId; + this.activeInteractionData[pointerId] = interactionData; + } + // copy properties from the event, so that we can make sure that touch/pointer specific + // data is available + interactionData.copyEvent(event); + + return interactionData; + }; + + /** + * Return unused InteractionData to the pool, for a given pointerId + * + * @private + * @param {number} pointerId - Identifier from a pointer event + */ + InteractionManager.prototype.releaseInteractionDataForPointerId = function releaseInteractionDataForPointerId (pointerId) + { + var interactionData = this.activeInteractionData[pointerId]; + + if (interactionData) + { + delete this.activeInteractionData[pointerId]; + interactionData.reset(); + this.interactionDataPool.push(interactionData); + } + }; + + /** + * Configure an InteractionEvent to wrap a DOM PointerEvent and InteractionData + * + * @private + * @param {PIXI.interaction.InteractionEvent} interactionEvent - The event to be configured + * @param {PointerEvent} pointerEvent - The DOM event that will be paired with the InteractionEvent + * @param {PIXI.interaction.InteractionData} interactionData - The InteractionData that will be paired + * with the InteractionEvent + * @return {PIXI.interaction.InteractionEvent} the interaction event that was passed in + */ + InteractionManager.prototype.configureInteractionEventForDOMEvent = function configureInteractionEventForDOMEvent (interactionEvent, pointerEvent, interactionData) + { + interactionEvent.data = interactionData; + + this.mapPositionToPoint(interactionData.global, pointerEvent.clientX, pointerEvent.clientY); + + // Not really sure why this is happening, but it's how a previous version handled things + if (pointerEvent.pointerType === 'touch') + { + pointerEvent.globalX = interactionData.global.x; + pointerEvent.globalY = interactionData.global.y; + } + + interactionData.originalEvent = pointerEvent; + interactionEvent.reset(); + + return interactionEvent; + }; + + /** + * Ensures that the original event object contains all data that a regular pointer event would have + * + * @private + * @param {TouchEvent|MouseEvent|PointerEvent} event - The original event data from a touch or mouse event + * @return {PointerEvent[]} An array containing a single normalized pointer event, in the case of a pointer + * or mouse event, or a multiple normalized pointer events if there are multiple changed touches + */ + InteractionManager.prototype.normalizeToPointerData = function normalizeToPointerData (event) + { + var normalizedEvents = []; + + if (this.supportsTouchEvents && event instanceof TouchEvent) + { + for (var i = 0, li = event.changedTouches.length; i < li; i++) + { + var touch = event.changedTouches[i]; + + if (typeof touch.button === 'undefined') { touch.button = event.touches.length ? 1 : 0; } + if (typeof touch.buttons === 'undefined') { touch.buttons = event.touches.length ? 1 : 0; } + if (typeof touch.isPrimary === 'undefined') + { + touch.isPrimary = event.touches.length === 1 && event.type === 'touchstart'; + } + if (typeof touch.width === 'undefined') { touch.width = touch.radiusX || 1; } + if (typeof touch.height === 'undefined') { touch.height = touch.radiusY || 1; } + if (typeof touch.tiltX === 'undefined') { touch.tiltX = 0; } + if (typeof touch.tiltY === 'undefined') { touch.tiltY = 0; } + if (typeof touch.pointerType === 'undefined') { touch.pointerType = 'touch'; } + if (typeof touch.pointerId === 'undefined') { touch.pointerId = touch.identifier || 0; } + if (typeof touch.pressure === 'undefined') { touch.pressure = touch.force || 0.5; } + if (typeof touch.twist === 'undefined') { touch.twist = 0; } + if (typeof touch.tangentialPressure === 'undefined') { touch.tangentialPressure = 0; } + // TODO: Remove these, as layerX/Y is not a standard, is deprecated, has uneven + // support, and the fill ins are not quite the same + // offsetX/Y might be okay, but is not the same as clientX/Y when the canvas's top + // left is not 0,0 on the page + if (typeof touch.layerX === 'undefined') { touch.layerX = touch.offsetX = touch.clientX; } + if (typeof touch.layerY === 'undefined') { touch.layerY = touch.offsetY = touch.clientY; } + + // mark the touch as normalized, just so that we know we did it + touch.isNormalized = true; + + normalizedEvents.push(touch); + } + } + // apparently PointerEvent subclasses MouseEvent, so yay + else if (event instanceof MouseEvent && (!this.supportsPointerEvents || !(event instanceof window.PointerEvent))) + { + if (typeof event.isPrimary === 'undefined') { event.isPrimary = true; } + if (typeof event.width === 'undefined') { event.width = 1; } + if (typeof event.height === 'undefined') { event.height = 1; } + if (typeof event.tiltX === 'undefined') { event.tiltX = 0; } + if (typeof event.tiltY === 'undefined') { event.tiltY = 0; } + if (typeof event.pointerType === 'undefined') { event.pointerType = 'mouse'; } + if (typeof event.pointerId === 'undefined') { event.pointerId = MOUSE_POINTER_ID; } + if (typeof event.pressure === 'undefined') { event.pressure = 0.5; } + if (typeof event.twist === 'undefined') { event.twist = 0; } + if (typeof event.tangentialPressure === 'undefined') { event.tangentialPressure = 0; } + + // mark the mouse event as normalized, just so that we know we did it + event.isNormalized = true; + + normalizedEvents.push(event); + } + else + { + normalizedEvents.push(event); + } + + return normalizedEvents; + }; + + /** + * Destroys the interaction manager + * + */ + InteractionManager.prototype.destroy = function destroy () + { + this.removeEvents(); + + this.removeAllListeners(); + + this.renderer = null; + + this.mouse = null; + + this.eventData = null; + + this.interactionDOMElement = null; + + this.onPointerDown = null; + this.processPointerDown = null; + + this.onPointerUp = null; + this.processPointerUp = null; + + this.onPointerCancel = null; + this.processPointerCancel = null; + + this.onPointerMove = null; + this.processPointerMove = null; + + this.onPointerOut = null; + this.processPointerOverOut = null; + + this.onPointerOver = null; + + this._tempPoint = null; + }; + + return InteractionManager; +}(eventemitter3)); + +/*! + * @pixi/graphics - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/graphics is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Graphics curves resolution settings. If `adaptive` flag is set to `true`, + * the resolution is calculated based on the curve's length to ensure better visual quality. + * Adaptive draw works with `bezierCurveTo` and `quadraticCurveTo`. + * + * @static + * @constant + * @memberof PIXI + * @name GRAPHICS_CURVES + * @type {object} + * @property {boolean} adaptive=false - flag indicating if the resolution should be adaptive + * @property {number} maxLength=10 - maximal length of a single segment of the curve (if adaptive = false, ignored) + * @property {number} minSegments=8 - minimal number of segments in the curve (if adaptive = false, ignored) + * @property {number} maxSegments=2048 - maximal number of segments in the curve (if adaptive = false, ignored) + */ +var GRAPHICS_CURVES = { + adaptive: true, + maxLength: 10, + minSegments: 8, + maxSegments: 2048, + _segmentsCount: function _segmentsCount(length, defaultSegments) + { + if ( defaultSegments === void 0 ) defaultSegments = 20; + + if (!this.adaptive) + { + return defaultSegments; + } + + var result = Math.ceil(length / this.maxLength); + + if (result < this.minSegments) + { + result = this.minSegments; + } + else if (result > this.maxSegments) + { + result = this.maxSegments; + } + + return result; + }, +}; + +/** + * Fill style object for Graphics. + * + * @class + * @memberof PIXI + */ +var FillStyle = function FillStyle() +{ + this.reset(); +}; + +/** + * Clones the object + * + * @return {PIXI.FillStyle} + */ +FillStyle.prototype.clone = function clone () +{ + var obj = new FillStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + + return obj; +}; + +/** + * Reset + */ +FillStyle.prototype.reset = function reset () +{ + /** + * The hex color value used when coloring the Graphics object. + * + * @member {number} + * @default 1 + */ + this.color = 0xFFFFFF; + + /** + * The alpha value used when filling the Graphics object. + * + * @member {number} + * @default 1 + */ + this.alpha = 1; + + /** + * The texture to be used for the fill. + * + * @member {string} + * @default 0 + */ + this.texture = Texture.WHITE; + + /** + * The transform aplpied to the texture. + * + * @member {string} + * @default 0 + */ + this.matrix = null; + + /** + * If the current fill is visible. + * + * @member {boolean} + * @default false + */ + this.visible = false; +}; + +/** + * Destroy and don't use after this + */ +FillStyle.prototype.destroy = function destroy () +{ + this.texture = null; + this.matrix = null; +}; + +/** + * A class to contain data useful for Graphics objects + * + * @class + * @memberof PIXI + */ +var GraphicsData = function GraphicsData(shape, fillStyle, lineStyle, matrix) +{ + if ( fillStyle === void 0 ) fillStyle = null; + if ( lineStyle === void 0 ) lineStyle = null; + if ( matrix === void 0 ) matrix = null; + + /** + * The shape object to draw. + * @member {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} + */ + this.shape = shape; + + /** + * The style of the line. + * @member {PIXI.LineStyle} + */ + this.lineStyle = lineStyle; + + /** + * The style of the fill. + * @member {PIXI.FillStyle} + */ + this.fillStyle = fillStyle; + + /** + * The transform matrix. + * @member {PIXI.Matrix} + */ + this.matrix = matrix; + + /** + * The type of the shape, see the Const.Shapes file for all the existing types, + * @member {number} + */ + this.type = shape.type; + + /** + * The collection of points. + * @member {number[]} + */ + this.points = []; + + /** + * The collection of holes. + * @member {PIXI.GraphicsData[]} + */ + this.holes = []; +}; + +/** + * Creates a new GraphicsData object with the same values as this one. + * + * @return {PIXI.GraphicsData} Cloned GraphicsData object + */ +GraphicsData.prototype.clone = function clone () +{ + return new GraphicsData( + this.shape, + this.fillStyle, + this.lineStyle, + this.matrix + ); +}; + +/** + * Destroys the Graphics data. + */ +GraphicsData.prototype.destroy = function destroy () +{ + this.shape = null; + this.holes.length = 0; + this.holes = null; + this.points.length = 0; + this.points = null; + this.lineStyle = null; + this.fillStyle = null; +}; + +/** + * Builds a circle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object to draw + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildCircle = { + + build: function build(graphicsData) + { + // need to convert points to a nice regular data + var circleData = graphicsData.shape; + var points = graphicsData.points; + var x = circleData.x; + var y = circleData.y; + var width; + var height; + + points.length = 0; + + // TODO - bit hacky?? + if (graphicsData.type === SHAPES.CIRC) + { + width = circleData.radius; + height = circleData.radius; + } + else + { + width = circleData.width; + height = circleData.height; + } + + if (width === 0 || height === 0) + { + return; + } + + var totalSegs = Math.floor(30 * Math.sqrt(circleData.radius)) + || Math.floor(15 * Math.sqrt(circleData.width + circleData.height)); + + totalSegs /= 2.3; + + var seg = (Math.PI * 2) / totalSegs; + + for (var i = 0; i < totalSegs; i++) + { + points.push( + x + (Math.sin(-seg * i) * width), + y + (Math.cos(-seg * i) * height) + ); + } + + points.push( + points[0], + points[1] + ); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vertPos = verts.length / 2; + var center = vertPos; + + verts.push(graphicsData.shape.x, graphicsData.shape.y); + + for (var i = 0; i < points.length; i += 2) + { + verts.push(points[i], points[i + 1]); + + // add some uvs + indices.push(vertPos++, center, vertPos); + } + }, +}; + +/** + * Builds a line to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine (graphicsData, graphicsGeometry) +{ + if (graphicsData.lineStyle.native) + { + buildNativeLine(graphicsData, graphicsGeometry); + } + else + { + buildLine$1(graphicsData, graphicsGeometry); + } +} + +/** + * Builds a line to draw using the polygon method. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildLine$1(graphicsData, graphicsGeometry) +{ + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points.slice(); + var eps = graphicsGeometry.closePointEps; + + if (points.length === 0) + { + return; + } + // if the line width is an odd number add 0.5 to align to a whole pixel + // commenting this out fixes #711 and #1620 + // if (graphicsData.lineWidth%2) + // { + // for (i = 0; i < points.length; i++) + // { + // points[i] += 0.5; + // } + // } + + var style = graphicsData.lineStyle; + + // get first and last point.. figure out the middle! + var firstPoint = new Point(points[0], points[1]); + var lastPoint = new Point(points[points.length - 2], points[points.length - 1]); + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + var closedPath = Math.abs(firstPoint.x - lastPoint.x) < eps + && Math.abs(firstPoint.y - lastPoint.y) < eps; + + // if the first point is the last point - gonna have issues :) + if (closedShape) + { + // need to clone as we are going to slightly modify the shape.. + points = points.slice(); + + if (closedPath) + { + points.pop(); + points.pop(); + lastPoint.set(points[points.length - 2], points[points.length - 1]); + } + + var midPointX = lastPoint.x + ((firstPoint.x - lastPoint.x) * 0.5); + var midPointY = lastPoint.y + ((firstPoint.y - lastPoint.y) * 0.5); + + points.unshift(midPointX, midPointY); + points.push(midPointX, midPointY); + } + + var verts = graphicsGeometry.points; + var length = points.length / 2; + var indexCount = points.length; + var indexStart = verts.length / 2; + + // DRAW the Line + var width = style.width / 2; + + // sort color + var p1x = points[0]; + var p1y = points[1]; + var p2x = points[2]; + var p2y = points[3]; + var p3x = 0; + var p3y = 0; + + var perpx = -(p1y - p2y); + var perpy = p1x - p2x; + var perp2x = 0; + var perp2y = 0; + var perp3x = 0; + var perp3y = 0; + + var dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + var ratio = style.alignment;// 0.5; + var r1 = (1 - ratio) * 2; + var r2 = ratio * 2; + + // start + verts.push( + p1x - (perpx * r1), + p1y - (perpy * r1)); + + verts.push( + p1x + (perpx * r2), + p1y + (perpy * r2)); + + for (var i = 1; i < length - 1; ++i) + { + p1x = points[(i - 1) * 2]; + p1y = points[((i - 1) * 2) + 1]; + + p2x = points[i * 2]; + p2y = points[(i * 2) + 1]; + + p3x = points[(i + 1) * 2]; + p3y = points[((i + 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + perp2x = -(p2y - p3y); + perp2y = p2x - p3x; + + dist = Math.sqrt((perp2x * perp2x) + (perp2y * perp2y)); + perp2x /= dist; + perp2y /= dist; + perp2x *= width; + perp2y *= width; + + var a1 = (-perpy + p1y) - (-perpy + p2y); + var b1 = (-perpx + p2x) - (-perpx + p1x); + var c1 = ((-perpx + p1x) * (-perpy + p2y)) - ((-perpx + p2x) * (-perpy + p1y)); + var a2 = (-perp2y + p3y) - (-perp2y + p2y); + var b2 = (-perp2x + p2x) - (-perp2x + p3x); + var c2 = ((-perp2x + p3x) * (-perp2y + p2y)) - ((-perp2x + p2x) * (-perp2y + p3y)); + + var denom = (a1 * b2) - (a2 * b1); + + if (Math.abs(denom) < 0.1) + { + denom += 10.1; + verts.push( + p2x - (perpx * r1), + p2y - (perpy * r1)); + + verts.push( + p2x + (perpx * r2), + p2y + (perpy * r2)); + + continue; + } + + var px = ((b1 * c2) - (b2 * c1)) / denom; + var py = ((a2 * c1) - (a1 * c2)) / denom; + var pdist = ((px - p2x) * (px - p2x)) + ((py - p2y) * (py - p2y)); + + if (pdist > (196 * width * width)) + { + perp3x = perpx - perp2x; + perp3y = perpy - perp2y; + + dist = Math.sqrt((perp3x * perp3x) + (perp3y * perp3y)); + perp3x /= dist; + perp3y /= dist; + perp3x *= width; + perp3y *= width; + + verts.push(p2x - (perp3x * r1), p2y - (perp3y * r1)); + + verts.push(p2x + (perp3x * r2), p2y + (perp3y * r2)); + + verts.push(p2x - (perp3x * r2 * r1), p2y - (perp3y * r1)); + + indexCount++; + } + else + { + verts.push(p2x + ((px - p2x) * r1), p2y + ((py - p2y) * r1)); + + verts.push(p2x - ((px - p2x) * r2), p2y - ((py - p2y) * r2)); + } + } + + p1x = points[(length - 2) * 2]; + p1y = points[((length - 2) * 2) + 1]; + + p2x = points[(length - 1) * 2]; + p2y = points[((length - 1) * 2) + 1]; + + perpx = -(p1y - p2y); + perpy = p1x - p2x; + + dist = Math.sqrt((perpx * perpx) + (perpy * perpy)); + perpx /= dist; + perpy /= dist; + perpx *= width; + perpy *= width; + + verts.push(p2x - (perpx * r1), p2y - (perpy * r1)); + + verts.push(p2x + (perpx * r2), p2y + (perpy * r2)); + + var indices = graphicsGeometry.indices; + + // indices.push(indexStart); + + for (var i$1 = 0; i$1 < indexCount - 2; ++i$1) + { + indices.push(indexStart, indexStart + 1, indexStart + 2); + + indexStart++; + } +} + +/** + * Builds a line to draw using the gl.drawArrays(gl.LINES) method + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output + */ +function buildNativeLine(graphicsData, graphicsGeometry) +{ + var i = 0; + + var shape = graphicsData.shape; + var points = graphicsData.points || shape.points; + var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke; + + if (points.length === 0) { return; } + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + var length = points.length / 2; + + var startIndex = verts.length / 2; + var currentIndex = startIndex; + + verts.push(points[0], points[1]); + + for (i = 1; i < length; i++) + { + verts.push(points[i * 2], points[(i * 2) + 1]); + indices.push(currentIndex, currentIndex + 1); + + currentIndex++; + } + + if (closedShape) + { + indices.push(currentIndex, startIndex); + } +} + +/** + * Builds a polygon to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildPoly = { + + build: function build(graphicsData) + { + graphicsData.points = graphicsData.shape.points.slice(); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var holes = graphicsData.holes; + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + if (points.length >= 6) + { + var holeArray = []; + // Process holes.. + + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + holeArray.push(points.length / 2); + points = points.concat(hole.points); + } + + // sort color + var triangles = earcut_1(points, holeArray, 2); + + if (!triangles) + { + return; + } + + var vertPos = verts.length / 2; + + for (var i$1 = 0; i$1 < triangles.length; i$1 += 3) + { + indices.push(triangles[i$1] + vertPos); + indices.push(triangles[i$1 + 1] + vertPos); + indices.push(triangles[i$1 + 2] + vertPos); + } + + for (var i$2 = 0; i$2 < points.length; i$2++) + { + verts.push(points[i$2]); + } + } + }, +}; + +/** + * Builds a rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRectangle = { + + build: function build(graphicsData) + { + // --- // + // need to convert points to a nice regular data + // + var rectData = graphicsData.shape; + var x = rectData.x; + var y = rectData.y; + var width = rectData.width; + var height = rectData.height; + + var points = graphicsData.points; + + points.length = 0; + + points.push(x, y, + x + width, y, + x + width, y + height, + x, y + height); + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + var verts = graphicsGeometry.points; + + var vertPos = verts.length / 2; + + verts.push(points[0], points[1], + points[2], points[3], + points[6], points[7], + points[4], points[5]); + + graphicsGeometry.indices.push(vertPos, vertPos + 1, vertPos + 2, + vertPos + 1, vertPos + 2, vertPos + 3); + }, +}; + +/** + * Builds a rounded rectangle to draw + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties + * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape + * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines + */ +var buildRoundedRectangle = { + + build: function build(graphicsData) + { + var rrectData = graphicsData.shape; + var points = graphicsData.points; + var x = rrectData.x; + var y = rrectData.y; + var width = rrectData.width; + var height = rrectData.height; + + var radius = rrectData.radius; + + points.length = 0; + + quadraticBezierCurve(x, y + radius, + x, y, + x + radius, y, + points); + quadraticBezierCurve(x + width - radius, + y, x + width, y, + x + width, y + radius, + points); + quadraticBezierCurve(x + width, y + height - radius, + x + width, y + height, + x + width - radius, y + height, + points); + quadraticBezierCurve(x + radius, y + height, + x, y + height, + x, y + height - radius, + points); + + // this tiny number deals with the issue that occurs when points overlap and earcut fails to triangulate the item. + // TODO - fix this properly, this is not very elegant.. but it works for now. + }, + + triangulate: function triangulate(graphicsData, graphicsGeometry) + { + var points = graphicsData.points; + + var verts = graphicsGeometry.points; + var indices = graphicsGeometry.indices; + + var vecPos = verts.length / 2; + + var triangles = earcut_1(points, null, 2); + + for (var i = 0, j = triangles.length; i < j; i += 3) + { + indices.push(triangles[i] + vecPos); + // indices.push(triangles[i] + vecPos); + indices.push(triangles[i + 1] + vecPos); + // indices.push(triangles[i + 2] + vecPos); + indices.push(triangles[i + 2] + vecPos); + } + + for (var i$1 = 0, j$1 = points.length; i$1 < j$1; i$1++) + { + verts.push(points[i$1], points[++i$1]); + } + }, +}; + +/** + * Calculate a single point for a quadratic bezier curve. + * Utility function used by quadraticBezierCurve. + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} n1 - first number + * @param {number} n2 - second number + * @param {number} perc - percentage + * @return {number} the result + * + */ +function getPt(n1, n2, perc) +{ + var diff = n2 - n1; + + return n1 + (diff * perc); +} + +/** + * Calculate the points for a quadratic bezier curve. (helper function..) + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @private + * @param {number} fromX - Origin point x + * @param {number} fromY - Origin point x + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} [out=[]] - The output array to add points into. If not passed, a new array is created. + * @return {number[]} an array of points + */ +function quadraticBezierCurve(fromX, fromY, cpX, cpY, toX, toY, out) +{ + if ( out === void 0 ) out = []; + + var n = 20; + var points = out; + + var xa = 0; + var ya = 0; + var xb = 0; + var yb = 0; + var x = 0; + var y = 0; + + for (var i = 0, j = 0; i <= n; ++i) + { + j = i / n; + + // The Green Line + xa = getPt(fromX, cpX, j); + ya = getPt(fromY, cpY, j); + xb = getPt(cpX, toX, j); + yb = getPt(cpY, toY, j); + + // The Black Dot + x = getPt(xa, xb, j); + y = getPt(ya, yb, j); + + points.push(x, y); + } + + return points; +} + +var BATCH_POOL = []; +var DRAW_CALL_POOL = []; +var tmpPoint = new Point(); + +/** + * Map of fill commands for each shape type. + * + * @member {Object} + * @private + */ +var fillCommands = {}; + +fillCommands[SHAPES.POLY] = buildPoly; +fillCommands[SHAPES.CIRC] = buildCircle; +fillCommands[SHAPES.ELIP] = buildCircle; +fillCommands[SHAPES.RECT] = buildRectangle; +fillCommands[SHAPES.RREC] = buildRoundedRectangle; + +/** + * A little internal structure to hold interim batch objects. + * + * @private + */ +var BatchPart = function BatchPart() +{ + this.style = null; + this.size = 0; + this.start = 0; + this.attribStart = 0; + this.attribSize = 0; +}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * GraphicsGeometry is designed to not be continually updating the geometry since it's expensive + * to re-tesselate using **earcut**. Consider using {@link PIXI.Mesh} for this use-case, it's much faster. + * + * @class + * @extends PIXI.BatchGeometry + * @memberof PIXI + */ +var GraphicsGeometry = /*@__PURE__*/(function (BatchGeometry) { + function GraphicsGeometry() + { + BatchGeometry.call(this); + + /** + * An array of points to draw, 2 numbers per point + * + * @member {number[]} + * @protected + */ + this.points = []; + + /** + * The collection of colors + * + * @member {number[]} + * @protected + */ + this.colors = []; + + /** + * The UVs collection + * + * @member {number[]} + * @protected + */ + this.uvs = []; + + /** + * The indices of the vertices + * + * @member {number[]} + * @protected + */ + this.indices = []; + + /** + * Reference to the texture IDs. + * + * @member {number[]} + * @protected + */ + this.textureIds = []; + + /** + * The collection of drawn shapes. + * + * @member {PIXI.GraphicsData[]} + * @protected + */ + this.graphicsData = []; + + /** + * Used to detect if the graphics object has changed. + * + * @member {number} + * @protected + */ + this.dirty = 0; + + /** + * Batches need to regenerated if the geometry is updated. + * + * @member {number} + * @protected + */ + this.batchDirty = -1; + + /** + * Used to check if the cache is dirty. + * + * @member {number} + * @protected + */ + this.cacheDirty = -1; + + /** + * Used to detect if we cleared the graphicsData. + * + * @member {number} + * @default 0 + * @protected + */ + this.clearDirty = 0; + + /** + * List of current draw calls drived from the batches. + * + * @member {object[]} + * @protected + */ + this.drawCalls = []; + + /** + * Intermediate abstract format sent to batch system. + * Can be converted to drawCalls or to batchable objects. + * + * @member {object[]} + * @protected + */ + this.batches = []; + + /** + * Index of the last batched shape in the stack of calls. + * + * @member {number} + * @protected + */ + this.shapeIndex = 0; + + /** + * Cached bounds. + * + * @member {PIXI.Bounds} + * @protected + */ + this._bounds = new Bounds(); + + /** + * The bounds dirty flag. + * + * @member {number} + * @protected + */ + this.boundsDirty = -1; + + /** + * Padding to add to the bounds. + * + * @member {number} + * @default 0 + */ + this.boundsPadding = 0; + + this.batchable = false; + + this.indicesUint16 = null; + + this.uvsFloat32 = null; + + /** + * Minimal distance between points that are considered different. + * Affects line tesselation. + * + * @member {number} + */ + this.closePointEps = 1e-4; + } + + if ( BatchGeometry ) GraphicsGeometry.__proto__ = BatchGeometry; + GraphicsGeometry.prototype = Object.create( BatchGeometry && BatchGeometry.prototype ); + GraphicsGeometry.prototype.constructor = GraphicsGeometry; + + var prototypeAccessors = { bounds: { configurable: true } }; + + /** + * Get the current bounds of the graphic geometry. + * + * @member {PIXI.Bounds} + * @readonly + */ + prototypeAccessors.bounds.get = function () + { + if (this.boundsDirty !== this.dirty) + { + this.boundsDirty = this.dirty; + this.calculateBounds(); + } + + return this._bounds; + }; + + /** + * Call if you changed graphicsData manually. + * Empties all batch buffers. + */ + GraphicsGeometry.prototype.invalidate = function invalidate () + { + this.boundsDirty = -1; + this.dirty++; + this.batchDirty++; + this.shapeIndex = 0; + + this.points.length = 0; + this.colors.length = 0; + this.uvs.length = 0; + this.indices.length = 0; + this.textureIds.length = 0; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var batch = this.batches[i$1]; + + batch.start = 0; + batch.attribStart = 0; + batch.style = null; + BATCH_POOL.push(batch); + } + + this.batches.length = 0; + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.GraphicsGeometry} This GraphicsGeometry object. Good for chaining method calls + */ + GraphicsGeometry.prototype.clear = function clear () + { + if (this.graphicsData.length > 0) + { + this.invalidate(); + this.clearDirty++; + this.graphicsData.length = 0; + } + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.FillStyle} fillStyle - Defines style of the fill. + * @param {PIXI.LineStyle} lineStyle - Defines style of the lines. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawShape = function drawShape (shape, fillStyle, lineStyle, matrix) + { + var data = new GraphicsData(shape, fillStyle, lineStyle, matrix); + + this.graphicsData.push(data); + this.dirty++; + + return this; + }; + + /** + * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw. + * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape. + * @return {PIXI.GraphicsGeometry} Returns geometry for chaining. + */ + GraphicsGeometry.prototype.drawHole = function drawHole (shape, matrix) + { + if (!this.graphicsData.length) + { + return null; + } + + var data = new GraphicsData(shape, null, null, matrix); + + var lastShape = this.graphicsData[this.graphicsData.length - 1]; + + data.lineStyle = lastShape.lineStyle; + + lastShape.holes.push(data); + + this.dirty++; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + GraphicsGeometry.prototype.destroy = function destroy (options) + { + BatchGeometry.prototype.destroy.call(this, options); + + // destroy each of the GraphicsData objects + for (var i = 0; i < this.graphicsData.length; ++i) + { + this.graphicsData[i].destroy(); + } + + this.points.length = 0; + this.points = null; + this.colors.length = 0; + this.colors = null; + this.uvs.length = 0; + this.uvs = null; + this.indices.length = 0; + this.indices = null; + this.indexBuffer.destroy(); + this.indexBuffer = null; + this.graphicsData.length = 0; + this.graphicsData = null; + this.drawCalls.length = 0; + this.drawCalls = null; + this.batches.length = 0; + this.batches = null; + this._bounds = null; + }; + + /** + * Check to see if a point is contained within this geometry. + * + * @param {PIXI.Point} point - Point to check if it's contained. + * @return {Boolean} `true` if the point is contained within geometry. + */ + GraphicsGeometry.prototype.containsPoint = function containsPoint (point) + { + var graphicsData = this.graphicsData; + + for (var i = 0; i < graphicsData.length; ++i) + { + var data = graphicsData[i]; + + if (!data.fillStyle.visible) + { + continue; + } + + // only deal with fills.. + if (data.shape) + { + if (data.matrix) + { + data.matrix.applyInverse(point, tmpPoint); + } + else + { + tmpPoint.copyFrom(point); + } + + if (data.shape.contains(tmpPoint.x, tmpPoint.y)) + { + if (data.holes) + { + for (var i$1 = 0; i$1 < data.holes.length; i$1++) + { + var hole = data.holes[i$1]; + + if (hole.shape.contains(tmpPoint.x, tmpPoint.y)) + { + return false; + } + } + } + + return true; + } + } + } + + return false; + }; + + /** + * Generates intermediate batch data. Either gets converted to drawCalls + * or used to convert to batch objects directly by the Graphics object. + */ + GraphicsGeometry.prototype.updateBatches = function updateBatches () + { + if (this.dirty === this.cacheDirty) { return; } + if (this.graphicsData.length === 0) + { + this.batchable = true; + + return; + } + + if (this.dirty !== this.cacheDirty) + { + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + if (data.fillStyle && !data.fillStyle.texture.baseTexture.valid) { return; } + if (data.lineStyle && !data.lineStyle.texture.baseTexture.valid) { return; } + } + } + + this.cacheDirty = this.dirty; + + var uvs = this.uvs; + + var batchPart = null; + var currentTexture = null; + var currentColor = 0; + var currentNative = false; + + if (this.batches.length > 0) + { + batchPart = this.batches[this.batches.length - 1]; + + var style = batchPart.style; + + currentTexture = style.texture.baseTexture; + currentColor = style.color + style.alpha; + currentNative = !!style.native; + } + + for (var i$1 = this.shapeIndex; i$1 < this.graphicsData.length; i$1++) + { + this.shapeIndex++; + + var data$1 = this.graphicsData[i$1]; + var command = fillCommands[data$1.type]; + + var fillStyle = data$1.fillStyle; + var lineStyle = data$1.lineStyle; + + // build out the shapes points.. + command.build(data$1); + + if (data$1.matrix) + { + this.transformPoints(data$1.points, data$1.matrix); + } + + for (var j = 0; j < 2; j++) + { + var style$1 = (j === 0) ? fillStyle : lineStyle; + + if (!style$1.visible) { continue; } + + var nextTexture = style$1.texture.baseTexture; + + var index$1 = this.indices.length; + var attribIndex = this.points.length / 2; + + // close batch if style is different + if (batchPart + && (currentTexture !== nextTexture + || currentColor !== (style$1.color + style$1.alpha) + || currentNative !== !!style$1.native)) + { + batchPart.size = index$1 - batchPart.start; + batchPart.attribSize = attribIndex - batchPart.attribStart; + + if (batchPart.size > 0) + { + batchPart = null; + } + } + // spawn new batch if its first batch or previous was closed + if (!batchPart) + { + batchPart = BATCH_POOL.pop() || new BatchPart(); + this.batches.push(batchPart); + nextTexture.wrapMode = WRAP_MODES.REPEAT; + currentTexture = nextTexture; + currentColor = style$1.color + style$1.alpha; + currentNative = style$1.native; + + batchPart.style = style$1; + batchPart.start = index$1; + batchPart.attribStart = attribIndex; + } + + var start = this.points.length / 2; + + if (j === 0) + { + if (data$1.holes.length) + { + this.processHoles(data$1.holes); + + buildPoly.triangulate(data$1, this); + } + else + { + command.triangulate(data$1, this); + } + } + else + { + buildLine(data$1, this); + + for (var i$2 = 0; i$2 < data$1.holes.length; i$2++) + { + buildLine(data$1.holes[i$2], this); + } + } + + var size = (this.points.length / 2) - start; + + this.addUvs(this.points, uvs, style$1.texture, start, size, style$1.matrix); + } + } + + var index = this.indices.length; + var attrib = this.points.length / 2; + + if (!batchPart) + { + // there are no visible styles in GraphicsData + // its possible that someone wants Graphics just for the bounds + this.batchable = true; + + return; + } + + batchPart.size = index - batchPart.start; + batchPart.attribSize = attrib - batchPart.attribStart; + this.indicesUint16 = new Uint16Array(this.indices); + + // TODO make this a const.. + this.batchable = this.isBatchable(); + + if (this.batchable) + { + this.batchDirty++; + + this.uvsFloat32 = new Float32Array(this.uvs); + + // offset the indices so that it works with the batcher... + for (var i$3 = 0; i$3 < this.batches.length; i$3++) + { + var batch = this.batches[i$3]; + + for (var j$1 = 0; j$1 < batch.size; j$1++) + { + var index$2 = batch.start + j$1; + + this.indicesUint16[index$2] = this.indicesUint16[index$2] - batch.attribStart; + } + } + } + else + { + this.buildDrawCalls(); + } + }; + + /** + * Checks to see if this graphics geometry can be batched. + * Currently it needs to be small enough and not contain any native lines. + * @protected + */ + GraphicsGeometry.prototype.isBatchable = function isBatchable () + { + var batches = this.batches; + + for (var i = 0; i < batches.length; i++) + { + if (batches[i].style.native) + { + return false; + } + } + + return (this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2); + }; + + /** + * Converts intermediate batches data to drawCalls. + * @protected + */ + GraphicsGeometry.prototype.buildDrawCalls = function buildDrawCalls () + { + var TICK = ++BaseTexture._globalBatch; + + for (var i = 0; i < this.drawCalls.length; i++) + { + this.drawCalls[i].textures.length = 0; + DRAW_CALL_POOL.push(this.drawCalls[i]); + } + + this.drawCalls.length = 0; + + var uvs = this.uvs; + var colors = this.colors; + var textureIds = this.textureIds; + + var currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + + currentGroup.textureCount = 0; + currentGroup.start = 0; + currentGroup.size = 0; + currentGroup.type = DRAW_MODES.TRIANGLES; + + var textureCount = 0; + var currentTexture = null; + var textureId = 0; + var native = false; + var drawMode = DRAW_MODES.TRIANGLES; + + var index = 0; + + this.drawCalls.push(currentGroup); + + // TODO - this can be simplified + for (var i$1 = 0; i$1 < this.batches.length; i$1++) + { + var data = this.batches[i$1]; + + // TODO add some full on MAX_TEXTURE CODE.. + var MAX_TEXTURES = 8; + + var style = data.style; + + var nextTexture = style.texture.baseTexture; + + if (native !== !!style.native) + { + native = style.native; + drawMode = native ? DRAW_MODES.LINES : DRAW_MODES.TRIANGLES; + + // force the batch to break! + currentTexture = null; + textureCount = MAX_TEXTURES; + TICK++; + } + + if (currentTexture !== nextTexture) + { + currentTexture = nextTexture; + + if (nextTexture._batchEnabled !== TICK) + { + if (textureCount === MAX_TEXTURES) + { + TICK++; + + textureCount = 0; + + if (currentGroup.size > 0) + { + currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall(); + this.drawCalls.push(currentGroup); + } + + currentGroup.start = index; + currentGroup.size = 0; + currentGroup.textureCount = 0; + currentGroup.type = drawMode; + } + + // TODO add this to the render part.. + nextTexture.touched = 1;// touch; + nextTexture._batchEnabled = TICK; + nextTexture._id = textureCount; + nextTexture.wrapMode = 10497; + + currentGroup.textures[currentGroup.textureCount++] = nextTexture; + textureCount++; + } + } + + currentGroup.size += data.size; + index += data.size; + + textureId = nextTexture._id; + + this.addColors(colors, style.color, style.alpha, data.attribSize); + this.addTextureIds(textureIds, textureId, data.attribSize); + } + + BaseTexture._globalBatch = TICK; + + // upload.. + // merge for now! + var verts = this.points; + + // verts are 2 positions.. so we * by 3 as there are 6 properties.. then 4 cos its bytes + var glPoints = new ArrayBuffer(verts.length * 3 * 4); + var f32 = new Float32Array(glPoints); + var u32 = new Uint32Array(glPoints); + + var p = 0; + + for (var i$2 = 0; i$2 < verts.length / 2; i$2++) + { + f32[p++] = verts[i$2 * 2]; + f32[p++] = verts[(i$2 * 2) + 1]; + + f32[p++] = uvs[i$2 * 2]; + f32[p++] = uvs[(i$2 * 2) + 1]; + + u32[p++] = colors[i$2]; + + f32[p++] = textureIds[i$2]; + } + + this._buffer.update(glPoints); + this._indexBuffer.update(this.indicesUint16); + }; + + /** + * Process the holes data. + * + * @param {PIXI.GraphicsData[]} holes - Holes to render + * @protected + */ + GraphicsGeometry.prototype.processHoles = function processHoles (holes) + { + for (var i = 0; i < holes.length; i++) + { + var hole = holes[i]; + + var command = fillCommands[hole.type]; + + command.build(hole); + + if (hole.matrix) + { + this.transformPoints(hole.points, hole.matrix); + } + } + }; + + /** + * Update the local bounds of the object. Expensive to use performance-wise. + * @protected + */ + GraphicsGeometry.prototype.calculateBounds = function calculateBounds () + { + var minX = Infinity; + var maxX = -Infinity; + + var minY = Infinity; + var maxY = -Infinity; + + if (this.graphicsData.length) + { + var shape = null; + var x = 0; + var y = 0; + var w = 0; + var h = 0; + + for (var i = 0; i < this.graphicsData.length; i++) + { + var data = this.graphicsData[i]; + + var type = data.type; + var lineWidth = data.lineStyle ? data.lineStyle.width : 0; + + shape = data.shape; + + if (type === SHAPES.RECT || type === SHAPES.RREC) + { + x = shape.x - (lineWidth / 2); + y = shape.y - (lineWidth / 2); + w = shape.width + lineWidth; + h = shape.height + lineWidth; + + minX = x < minX ? x : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y < minY ? y : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.CIRC) + { + x = shape.x; + y = shape.y; + w = shape.radius + (lineWidth / 2); + h = shape.radius + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else if (type === SHAPES.ELIP) + { + x = shape.x; + y = shape.y; + w = shape.width + (lineWidth / 2); + h = shape.height + (lineWidth / 2); + + minX = x - w < minX ? x - w : minX; + maxX = x + w > maxX ? x + w : maxX; + + minY = y - h < minY ? y - h : minY; + maxY = y + h > maxY ? y + h : maxY; + } + else + { + // POLY + var points = shape.points; + var x2 = 0; + var y2 = 0; + var dx = 0; + var dy = 0; + var rw = 0; + var rh = 0; + var cx = 0; + var cy = 0; + + for (var j = 0; j + 2 < points.length; j += 2) + { + x = points[j]; + y = points[j + 1]; + x2 = points[j + 2]; + y2 = points[j + 3]; + dx = Math.abs(x2 - x); + dy = Math.abs(y2 - y); + h = lineWidth; + w = Math.sqrt((dx * dx) + (dy * dy)); + + if (w < 1e-9) + { + continue; + } + + rw = ((h / w * dy) + dx) / 2; + rh = ((h / w * dx) + dy) / 2; + cx = (x2 + x) / 2; + cy = (y2 + y) / 2; + + minX = cx - rw < minX ? cx - rw : minX; + maxX = cx + rw > maxX ? cx + rw : maxX; + + minY = cy - rh < minY ? cy - rh : minY; + maxY = cy + rh > maxY ? cy + rh : maxY; + } + } + } + } + else + { + minX = 0; + maxX = 0; + minY = 0; + maxY = 0; + } + + var padding = this.boundsPadding; + + this._bounds.minX = minX - padding; + this._bounds.maxX = maxX + padding; + + this._bounds.minY = minY - padding; + this._bounds.maxY = maxY + padding; + }; + + /** + * Transform points using matrix. + * + * @protected + * @param {number[]} points - Points to transform + * @param {PIXI.Matrix} matrix - Transform matrix + */ + GraphicsGeometry.prototype.transformPoints = function transformPoints (points, matrix) + { + for (var i = 0; i < points.length / 2; i++) + { + var x = points[(i * 2)]; + var y = points[(i * 2) + 1]; + + points[(i * 2)] = (matrix.a * x) + (matrix.c * y) + matrix.tx; + points[(i * 2) + 1] = (matrix.b * x) + (matrix.d * y) + matrix.ty; + } + }; + + /** + * Add colors. + * + * @protected + * @param {number[]} colors - List of colors to add to + * @param {number} color - Color to add + * @param {number} alpha - Alpha to use + * @param {number} size - Number of colors to add + */ + GraphicsGeometry.prototype.addColors = function addColors (colors, color, alpha, size) + { + // TODO use the premultiply bits Ivan added + var rgb = (color >> 16) + (color & 0xff00) + ((color & 0xff) << 16); + + var rgba = premultiplyTint(rgb, alpha); + + while (size-- > 0) + { + colors.push(rgba); + } + }; + + /** + * Add texture id that the shader/fragment wants to use. + * + * @protected + * @param {number[]} textureIds + * @param {number} id + * @param {number} size + */ + GraphicsGeometry.prototype.addTextureIds = function addTextureIds (textureIds, id, size) + { + while (size-- > 0) + { + textureIds.push(id); + } + }; + + /** + * Generates the UVs for a shape. + * + * @protected + * @param {number[]} verts - Vertices + * @param {number[]} uvs - UVs + * @param {PIXI.Texture} texture - Reference to Texture + * @param {number} start - Index buffer start index. + * @param {number} size - The size/length for index buffer. + * @param {PIXI.Matrix} [matrix] - Optional transform for all points. + */ + GraphicsGeometry.prototype.addUvs = function addUvs (verts, uvs, texture, start, size, matrix) + { + var index = 0; + var uvsStart = uvs.length; + var frame = texture.frame; + + while (index < size) + { + var x = verts[(start + index) * 2]; + var y = verts[((start + index) * 2) + 1]; + + if (matrix) + { + var nx = (matrix.a * x) + (matrix.c * y) + matrix.tx; + + y = (matrix.b * x) + (matrix.d * y) + matrix.ty; + x = nx; + } + + index++; + + uvs.push(x / frame.width, y / frame.height); + } + + var baseTexture = texture.baseTexture; + + if (frame.width < baseTexture.width + || frame.height < baseTexture.height) + { + this.adjustUvs(uvs, texture, uvsStart, size); + } + }; + + /** + * Modify uvs array according to position of texture region + * Does not work with rotated or trimmed textures + * @param {number[]} uvs array + * @param {PIXI.Texture} texture region + * @param {number} start starting index for uvs + * @param {number} size how many points to adjust + */ + GraphicsGeometry.prototype.adjustUvs = function adjustUvs (uvs, texture, start, size) + { + var baseTexture = texture.baseTexture; + var eps = 1e-6; + var finish = start + (size * 2); + var frame = texture.frame; + var scaleX = frame.width / baseTexture.width; + var scaleY = frame.height / baseTexture.height; + var offsetX = frame.x / frame.width; + var offsetY = frame.y / frame.height; + var minX = Math.floor(uvs[start] + eps); + var minY = Math.floor(uvs[start + 1] + eps); + + for (var i = start + 2; i < finish; i += 2) + { + minX = Math.min(minX, Math.floor(uvs[i] + eps)); + minY = Math.min(minY, Math.floor(uvs[i + 1] + eps)); + } + offsetX -= minX; + offsetY -= minY; + for (var i$1 = start; i$1 < finish; i$1 += 2) + { + uvs[i$1] = (uvs[i$1] + offsetX) * scaleX; + uvs[i$1 + 1] = (uvs[i$1 + 1] + offsetY) * scaleY; + } + }; + + Object.defineProperties( GraphicsGeometry.prototype, prototypeAccessors ); + + return GraphicsGeometry; +}(BatchGeometry)); + +/** + * The maximum number of points to consider an object "batchable", + * able to be batched by the renderer's batch system. + * + * @memberof PIXI.GraphicsGeometry + * @static + * @member {number} BATCHABLE_SIZE + * @default 100 + */ +GraphicsGeometry.BATCHABLE_SIZE = 100; + +/** + * Represents the line style for Graphics. + * @memberof PIXI + * @class + * @extends PIXI.FillStyle + */ +var LineStyle = /*@__PURE__*/(function (FillStyle) { + function LineStyle () { + FillStyle.apply(this, arguments); + } + + if ( FillStyle ) LineStyle.__proto__ = FillStyle; + LineStyle.prototype = Object.create( FillStyle && FillStyle.prototype ); + LineStyle.prototype.constructor = LineStyle; + + LineStyle.prototype.clone = function clone () + { + var obj = new LineStyle(); + + obj.color = this.color; + obj.alpha = this.alpha; + obj.texture = this.texture; + obj.matrix = this.matrix; + obj.visible = this.visible; + obj.width = this.width; + obj.alignment = this.alignment; + obj.native = this.native; + + return obj; + }; + /** + * Reset the line style to default. + */ + LineStyle.prototype.reset = function reset () + { + FillStyle.prototype.reset.call(this); + + // Override default line style color + this.color = 0x0; + + /** + * The width (thickness) of any lines drawn. + * + * @member {number} + * @default 0 + */ + this.width = 0; + + /** + * The alignment of any lines drawn (0.5 = middle, 1 = outter, 0 = inner). + * + * @member {number} + * @default 0 + */ + this.alignment = 0.5; + + /** + * If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * + * @member {boolean} + * @default false + */ + this.native = false; + }; + + return LineStyle; +}(FillStyle)); + +/** + * Utilities for bezier curves + * @class + * @private + */ +var BezierUtils = function BezierUtils () {}; + +BezierUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) +{ + var n = 10; + var result = 0.0; + var t = 0.0; + var t2 = 0.0; + var t3 = 0.0; + var nt = 0.0; + var nt2 = 0.0; + var nt3 = 0.0; + var x = 0.0; + var y = 0.0; + var dx = 0.0; + var dy = 0.0; + var prevX = fromX; + var prevY = fromY; + + for (var i = 1; i <= n; ++i) + { + t = i / n; + t2 = t * t; + t3 = t2 * t; + nt = (1.0 - t); + nt2 = nt * nt; + nt3 = nt2 * nt; + + x = (nt3 * fromX) + (3.0 * nt2 * t * cpX) + (3.0 * nt * t2 * cpX2) + (t3 * toX); + y = (nt3 * fromY) + (3.0 * nt2 * t * cpY) + (3 * nt * t2 * cpY2) + (t3 * toY); + dx = prevX - x; + dy = prevY - y; + prevX = x; + prevY = y; + + result += Math.sqrt((dx * dx) + (dy * dy)); + } + + return result; +}; + +/** + * Calculate the points for a bezier curve and then draws it. + * + * Ignored from docs since it is not directly exposed. + * + * @ignore + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Path array to push points into + */ +BezierUtils.curveTo = function curveTo (cpX, cpY, cpX2, cpY2, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + points.length -= 2; + + var n = GRAPHICS_CURVES._segmentsCount( + BezierUtils.curveLength(fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY) + ); + + var dt = 0; + var dt2 = 0; + var dt3 = 0; + var t2 = 0; + var t3 = 0; + + points.push(fromX, fromY); + + for (var i = 1, j = 0; i <= n; ++i) + { + j = i / n; + + dt = (1 - j); + dt2 = dt * dt; + dt3 = dt2 * dt; + + t2 = j * j; + t3 = t2 * j; + + points.push( + (dt3 * fromX) + (3 * dt2 * j * cpX) + (3 * dt * t2 * cpX2) + (t3 * toX), + (dt3 * fromY) + (3 * dt2 * j * cpY) + (3 * dt * t2 * cpY2) + (t3 * toY) + ); + } +}; + +/** + * Utilities for quadratic curves + * @class + * @private + */ +var QuadraticUtils = function QuadraticUtils () {}; + +QuadraticUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, toX, toY) +{ + var ax = fromX - (2.0 * cpX) + toX; + var ay = fromY - (2.0 * cpY) + toY; + var bx = (2.0 * cpX) - (2.0 * fromX); + var by = (2.0 * cpY) - (2.0 * fromY); + var a = 4.0 * ((ax * ax) + (ay * ay)); + var b = 4.0 * ((ax * bx) + (ay * by)); + var c = (bx * bx) + (by * by); + + var s = 2.0 * Math.sqrt(a + b + c); + var a2 = Math.sqrt(a); + var a32 = 2.0 * a * a2; + var c2 = 2.0 * Math.sqrt(c); + var ba = b / a2; + + return ( + (a32 * s) + + (a2 * b * (s - c2)) + + ( + ((4.0 * c * a) - (b * b)) + * Math.log(((2.0 * a2) + ba + s) / (ba + c2)) + ) + ) / (4.0 * a32); +}; + +/** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @private + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @param {number[]} points - Points to add segments to. + */ +QuadraticUtils.curveTo = function curveTo (cpX, cpY, toX, toY, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var n = GRAPHICS_CURVES._segmentsCount( + QuadraticUtils.curveLength(fromX, fromY, cpX, cpY, toX, toY) + ); + + var xa = 0; + var ya = 0; + + for (var i = 1; i <= n; ++i) + { + var j = i / n; + + xa = fromX + ((cpX - fromX) * j); + ya = fromY + ((cpY - fromY) * j); + + points.push(xa + (((cpX + ((toX - cpX) * j)) - xa) * j), + ya + (((cpY + ((toY - cpY) * j)) - ya) * j)); + } +}; + +/** + * Utilities for arc curves + * @class + * @private + */ +var ArcUtils = function ArcUtils () {}; + +ArcUtils.curveTo = function curveTo (x1, y1, x2, y2, radius, points) +{ + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + var a1 = fromY - y1; + var b1 = fromX - x1; + var a2 = y2 - y1; + var b2 = x2 - x1; + var mm = Math.abs((a1 * b2) - (b1 * a2)); + + if (mm < 1.0e-8 || radius === 0) + { + if (points[points.length - 2] !== x1 || points[points.length - 1] !== y1) + { + points.push(x1, y1); + } + + return null; + } + + var dd = (a1 * a1) + (b1 * b1); + var cc = (a2 * a2) + (b2 * b2); + var tt = (a1 * a2) + (b1 * b2); + var k1 = radius * Math.sqrt(dd) / mm; + var k2 = radius * Math.sqrt(cc) / mm; + var j1 = k1 * tt / dd; + var j2 = k2 * tt / cc; + var cx = (k1 * b2) + (k2 * b1); + var cy = (k1 * a2) + (k2 * a1); + var px = b1 * (k2 + j1); + var py = a1 * (k2 + j1); + var qx = b2 * (k1 + j2); + var qy = a2 * (k1 + j2); + var startAngle = Math.atan2(py - cy, px - cx); + var endAngle = Math.atan2(qy - cy, qx - cx); + + return { + cx: (cx + x1), + cy: (cy + y1), + radius: radius, + startAngle: startAngle, + endAngle: endAngle, + anticlockwise: (b1 * a2 > b2 * a1), + }; +}; + +/** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @private + * @param {number} startX - Start x location of arc + * @param {number} startY - Start y location of arc + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} anticlockwise - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @param {number} n - Number of segments + * @param {number[]} points - Collection of points to add to + */ +ArcUtils.arc = function arc (startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points) +{ + var sweep = endAngle - startAngle; + var n = GRAPHICS_CURVES._segmentsCount( + Math.abs(sweep) * radius, + Math.ceil(Math.abs(sweep) / PI_2) * 40 + ); + + var theta = (sweep) / (n * 2); + var theta2 = theta * 2; + var cTheta = Math.cos(theta); + var sTheta = Math.sin(theta); + var segMinus = n - 1; + var remainder = (segMinus % 1) / segMinus; + + for (var i = 0; i <= segMinus; ++i) + { + var real = i + (remainder * i); + var angle = ((theta) + startAngle + (theta2 * real)); + var c = Math.cos(angle); + var s = -Math.sin(angle); + + points.push( + (((cTheta * c) + (sTheta * s)) * radius) + cx, + (((cTheta * -s) + (sTheta * c)) * radius) + cy + ); + } +}; + +/** + * Draw a star shape with an arbitrary number of points. + * + * @class + * @extends PIXI.Polygon + * @memberof PIXI + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ +var Star = /*@__PURE__*/(function (Polygon) { + function Star(x, y, points, radius, innerRadius, rotation) + { + innerRadius = innerRadius || radius / 2; + + var startAngle = (-1 * Math.PI / 2) + rotation; + var len = points * 2; + var delta = PI_2 / len; + var polygon = []; + + for (var i = 0; i < len; i++) + { + var r = i % 2 ? innerRadius : radius; + var angle = (i * delta) + startAngle; + + polygon.push( + x + (r * Math.cos(angle)), + y + (r * Math.sin(angle)) + ); + } + + Polygon.call(this, polygon); + } + + if ( Polygon ) Star.__proto__ = Polygon; + Star.prototype = Object.create( Polygon && Polygon.prototype ); + Star.prototype.constructor = Star; + + return Star; +}(Polygon)); + +var temp = new Float32Array(3); + +// a default shaders map used by graphics.. +var DEFAULT_SHADERS = {}; + +/** + * The Graphics class contains methods used to draw primitive shapes such as lines, circles and + * rectangles to the display, and to color and fill them. + * + * Note that because Graphics can share a GraphicsGeometry with other instances, + * it is necessary to call `destroy()` to properly dereference the underlying + * GraphicsGeometry and avoid a memory leak. Alternatively, keep using the same + * Graphics instance and call `clear()` between redraws. + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Graphics = /*@__PURE__*/(function (Container) { + function Graphics(geometry) + { + if ( geometry === void 0 ) geometry = null; + + Container.call(this); + /** + * Includes vertex positions, face indices, normals, colors, UVs, and + * custom attributes within buffers, reducing the cost of passing all + * this data to the GPU. Can be shared between multiple Mesh or Graphics objects. + * @member {PIXI.GraphicsGeometry} + * @readonly + */ + this.geometry = geometry || new GraphicsGeometry(); + + this.geometry.refCount++; + + /** + * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU. + * Can be shared between multiple Graphics objects. + * @member {PIXI.Shader} + */ + this.shader = null; + + /** + * Represents the WebGL state the Graphics required to render, excludes shader and geometry. E.g., + * blend mode, culling, depth testing, direction of rendering triangles, backface, etc. + * @member {PIXI.State} + */ + this.state = State.for2d(); + + /** + * Current fill style + * + * @member {PIXI.FillStyle} + * @protected + */ + this._fillStyle = new FillStyle(); + + /** + * Current line style + * + * @member {PIXI.LineStyle} + * @protected + */ + this._lineStyle = new LineStyle(); + + /** + * Current shape transform matrix. + * + * @member {PIXI.Matrix} + * @protected + */ + this._matrix = null; + + /** + * Current hole mode is enabled. + * + * @member {boolean} + * @default false + * @protected + */ + this._holeMode = false; + + /** + * Current path + * + * @member {PIXI.Polygon} + * @protected + */ + this.currentPath = null; + + /** + * When cacheAsBitmap is set to true the graphics object will be rendered as if it was a sprite. + * This is useful if your graphics element does not change often, as it will speed up the rendering + * of the object in exchange for taking up texture memory. It is also useful if you need the graphics + * object to be anti-aliased, because it will be rendered using canvas. This is not recommended if + * you are constantly redrawing the graphics element. + * + * @name cacheAsBitmap + * @member {boolean} + * @memberof PIXI.Graphics# + * @default false + */ + + /** + * A collections of batches! These can be drawn by the renderer batch system. + * + * @protected + * @member {object[]} + */ + this.batches = []; + + /** + * Update dirty for limiting calculating tints for batches. + * + * @protected + * @member {number} + * @default -1 + */ + this.batchTint = -1; + + /** + * Copy of the object vertex data. + * + * @protected + * @member {Float32Array} + */ + this.vertexData = null; + + this._transformID = -1; + this.batchDirty = -1; + + /** + * Renderer plugin for batching + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + // Set default + this.tint = 0xFFFFFF; + this.blendMode = BLEND_MODES.NORMAL; + } + + if ( Container ) Graphics.__proto__ = Container; + Graphics.prototype = Object.create( Container && Container.prototype ); + Graphics.prototype.constructor = Graphics; + + var prototypeAccessors = { blendMode: { configurable: true },tint: { configurable: true },fill: { configurable: true },line: { configurable: true } }; + + /** + * Creates a new Graphics object with the same values as this one. + * Note that the only the properties of the object are cloned, not its transform (position,scale,etc) + * + * @return {PIXI.Graphics} A clone of the graphics object + */ + Graphics.prototype.clone = function clone () + { + this.finishPoly(); + + return new Graphics(this.geometry); + }; + + /** + * The blend mode to be applied to the graphic shape. Apply a value of + * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL; + * @see PIXI.BLEND_MODES + */ + prototypeAccessors.blendMode.set = function (value) + { + this.state.blendMode = value; + }; + + prototypeAccessors.blendMode.get = function () + { + return this.state.blendMode; + }; + + /** + * The tint applied to the graphic shape. This is a hex value. A value of + * 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + prototypeAccessors.tint.set = function (value) + { + this._tint = value; + }; + + /** + * The current fill style. + * + * @member {PIXI.FillStyle} + * @readonly + */ + prototypeAccessors.fill.get = function () + { + return this._fillStyle; + }; + + /** + * The current line style. + * + * @member {PIXI.LineStyle} + * @readonly + */ + prototypeAccessors.line.get = function () + { + return this._lineStyle; + }; + + /** + * Specifies the line style used for subsequent calls to Graphics methods such as the lineTo() + * method or the drawCircle() method. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineStyle = function lineStyle (width, color, alpha, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + this.lineTextureStyle(width, Texture.WHITE, color, alpha, null, alignment, native); + + return this; + }; + + /** + * Like line style but support texture for line fill. + * + * @param {number} [width=0] - width of the line to draw, will update the objects stored style + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to use + * @param {number} [color=0] - color of the line to draw, will update the objects stored style + * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style + * @param {PIXI.Matrix} [matrix=null] Texture matrix to transform texture + * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter) + * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTextureStyle = function lineTextureStyle (width, texture, color, alpha, + matrix, alignment, native) + { + if ( width === void 0 ) width = 0; + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + if ( alignment === void 0 ) alignment = 0.5; + if ( native === void 0 ) native = false; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = width > 0 && alpha > 0; + + if (!visible) + { + this._lineStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._lineStyle, { + color: color, + width: width, + alpha: alpha, + matrix: matrix, + texture: texture, + alignment: alignment, + native: native, + visible: visible, + }); + } + + return this; + }; + + /** + * Start a polygon object internally + * @protected + */ + Graphics.prototype.startPoly = function startPoly () + { + if (this.currentPath) + { + var points = this.currentPath.points; + var len = this.currentPath.points.length; + + if (len > 2) + { + this.drawShape(this.currentPath); + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + this.currentPath.points.push(points[len - 2], points[len - 1]); + } + } + else + { + this.currentPath = new Polygon(); + this.currentPath.closeStroke = false; + } + }; + + /** + * Finish the polygon object. + * @protected + */ + Graphics.prototype.finishPoly = function finishPoly () + { + if (this.currentPath) + { + if (this.currentPath.points.length > 2) + { + this.drawShape(this.currentPath); + this.currentPath = null; + } + else + { + this.currentPath.points.length = 0; + } + } + }; + + /** + * Moves the current drawing position to x, y. + * + * @param {number} x - the X coordinate to move to + * @param {number} y - the Y coordinate to move to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.moveTo = function moveTo (x, y) + { + this.startPoly(); + this.currentPath.points[0] = x; + this.currentPath.points[1] = y; + + return this; + }; + + /** + * Draws a line using the current line style from the current drawing position to (x, y); + * The current drawing position is then set to (x, y). + * + * @param {number} x - the X coordinate to draw to + * @param {number} y - the Y coordinate to draw to + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.lineTo = function lineTo (x, y) + { + if (!this.currentPath) + { + this.moveTo(0, 0); + } + + // remove duplicates.. + var points = this.currentPath.points; + var fromX = points[points.length - 2]; + var fromY = points[points.length - 1]; + + if (fromX !== x || fromY !== y) + { + points.push(x, y); + } + + return this; + }; + + /** + * Initialize the curve + * + * @protected + * @param {number} [x=0] + * @param {number} [y=0] + */ + Graphics.prototype._initCurve = function _initCurve (x, y) + { + if ( x === void 0 ) x = 0; + if ( y === void 0 ) y = 0; + + if (this.currentPath) + { + if (this.currentPath.points.length === 0) + { + this.currentPath.points = [x, y]; + } + } + else + { + this.moveTo(x, y); + } + }; + + /** + * Calculate the points for a quadratic bezier curve and then draws it. + * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.quadraticCurveTo = function quadraticCurveTo (cpX, cpY, toX, toY) + { + this._initCurve(); + + var points = this.currentPath.points; + + if (points.length === 0) + { + this.moveTo(0, 0); + } + + QuadraticUtils.curveTo(cpX, cpY, toX, toY, points); + + return this; + }; + + /** + * Calculate the points for a bezier curve and then draws it. + * + * @param {number} cpX - Control point x + * @param {number} cpY - Control point y + * @param {number} cpX2 - Second Control point x + * @param {number} cpY2 - Second Control point y + * @param {number} toX - Destination point x + * @param {number} toY - Destination point y + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.bezierCurveTo = function bezierCurveTo (cpX, cpY, cpX2, cpY2, toX, toY) + { + this._initCurve(); + + BezierUtils.curveTo(cpX, cpY, cpX2, cpY2, toX, toY, this.currentPath.points); + + return this; + }; + + /** + * The arcTo() method creates an arc/curve between two tangents on the canvas. + * + * "borrowed" from https://code.google.com/p/fxcanvas/ - thanks google! + * + * @param {number} x1 - The x-coordinate of the first tangent point of the arc + * @param {number} y1 - The y-coordinate of the first tangent point of the arc + * @param {number} x2 - The x-coordinate of the end of the arc + * @param {number} y2 - The y-coordinate of the end of the arc + * @param {number} radius - The radius of the arc + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arcTo = function arcTo (x1, y1, x2, y2, radius) + { + this._initCurve(x1, y1); + + var points = this.currentPath.points; + + var result = ArcUtils.curveTo(x1, y1, x2, y2, radius, points); + + if (result) + { + var cx = result.cx; + var cy = result.cy; + var radius$1 = result.radius; + var startAngle = result.startAngle; + var endAngle = result.endAngle; + var anticlockwise = result.anticlockwise; + + this.arc(cx, cy, radius$1, startAngle, endAngle, anticlockwise); + } + + return this; + }; + + /** + * The arc method creates an arc/curve (used to create circles, or parts of circles). + * + * @param {number} cx - The x-coordinate of the center of the circle + * @param {number} cy - The y-coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position + * of the arc's circle) + * @param {number} endAngle - The ending angle, in radians + * @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be + * counter-clockwise or clockwise. False is default, and indicates clockwise, while true + * indicates counter-clockwise. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.arc = function arc (cx, cy, radius, startAngle, endAngle, anticlockwise) + { + if ( anticlockwise === void 0 ) anticlockwise = false; + + if (startAngle === endAngle) + { + return this; + } + + if (!anticlockwise && endAngle <= startAngle) + { + endAngle += PI_2; + } + else if (anticlockwise && startAngle <= endAngle) + { + startAngle += PI_2; + } + + var sweep = endAngle - startAngle; + + if (sweep === 0) + { + return this; + } + + var startX = cx + (Math.cos(startAngle) * radius); + var startY = cy + (Math.sin(startAngle) * radius); + var eps = this.geometry.closePointEps; + + // If the currentPath exists, take its points. Otherwise call `moveTo` to start a path. + var points = this.currentPath ? this.currentPath.points : null; + + if (points) + { + // TODO: make a better fix. + + // We check how far our start is from the last existing point + var xDiff = Math.abs(points[points.length - 2] - startX); + var yDiff = Math.abs(points[points.length - 1] - startY); + + if (xDiff < eps && yDiff < eps) + ; + else + { + points.push(startX, startY); + } + } + else + { + this.moveTo(startX, startY); + points = this.currentPath.points; + } + + ArcUtils.arc(startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points); + + return this; + }; + + /** + * Specifies a simple one-color fill that subsequent calls to other Graphics methods + * (such as lineTo() or drawCircle()) use when drawing. + * + * @param {number} [color=0] - the color of the fill + * @param {number} [alpha=1] - the alpha of the fill + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginFill = function beginFill (color, alpha) + { + if ( color === void 0 ) color = 0; + if ( alpha === void 0 ) alpha = 1; + + return this.beginTextureFill(Texture.WHITE, color, alpha); + }; + + /** + * Begin the texture fill + * + * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to fill + * @param {number} [color=0xffffff] - Background to fill behind texture + * @param {number} [alpha=1] - Alpha of fill + * @param {PIXI.Matrix} [matrix=null] - Transform matrix + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.beginTextureFill = function beginTextureFill (texture, color, alpha, matrix) + { + if ( texture === void 0 ) texture = Texture.WHITE; + if ( color === void 0 ) color = 0xFFFFFF; + if ( alpha === void 0 ) alpha = 1; + if ( matrix === void 0 ) matrix = null; + + if (this.currentPath) + { + this.startPoly(); + } + + var visible = alpha > 0; + + if (!visible) + { + this._fillStyle.reset(); + } + else + { + if (matrix) + { + matrix = matrix.clone(); + matrix.invert(); + } + + Object.assign(this._fillStyle, { + color: color, + alpha: alpha, + texture: texture, + matrix: matrix, + visible: visible, + }); + } + + return this; + }; + + /** + * Applies a fill to the lines and shapes that were added since the last call to the beginFill() method. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.endFill = function endFill () + { + this.finishPoly(); + + this._fillStyle.reset(); + + return this; + }; + + /** + * Draws a rectangle shape. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRect = function drawRect (x, y, width, height) + { + return this.drawShape(new Rectangle(x, y, width, height)); + }; + + /** + * Draw a rectangle shape with rounded/beveled corners. + * + * @param {number} x - The X coord of the top-left of the rectangle + * @param {number} y - The Y coord of the top-left of the rectangle + * @param {number} width - The width of the rectangle + * @param {number} height - The height of the rectangle + * @param {number} radius - Radius of the rectangle corners + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawRoundedRect = function drawRoundedRect (x, y, width, height, radius) + { + return this.drawShape(new RoundedRectangle(x, y, width, height, radius)); + }; + + /** + * Draws a circle. + * + * @param {number} x - The X coordinate of the center of the circle + * @param {number} y - The Y coordinate of the center of the circle + * @param {number} radius - The radius of the circle + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawCircle = function drawCircle (x, y, radius) + { + return this.drawShape(new Circle(x, y, radius)); + }; + + /** + * Draws an ellipse. + * + * @param {number} x - The X coordinate of the center of the ellipse + * @param {number} y - The Y coordinate of the center of the ellipse + * @param {number} width - The half width of the ellipse + * @param {number} height - The half height of the ellipse + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawEllipse = function drawEllipse (x, y, width, height) + { + return this.drawShape(new Ellipse(x, y, width, height)); + }; + + /** + * Draws a polygon using the given path. + * + * @param {number[]|PIXI.Point[]|PIXI.Polygon} path - The path data used to construct the polygon. + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawPolygon = function drawPolygon (path) + { + var arguments$1 = arguments; + + // prevents an argument assignment deopt + // see section 3.1: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + var points = path; + + var closeStroke = true;// !!this._fillStyle; + + // check if data has points.. + if (points.points) + { + closeStroke = points.closeStroke; + points = points.points; + } + + if (!Array.isArray(points)) + { + // prevents an argument leak deopt + // see section 3.2: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments + points = new Array(arguments.length); + + for (var i = 0; i < points.length; ++i) + { + points[i] = arguments$1[i]; // eslint-disable-line prefer-rest-params + } + } + + var shape = new Polygon(points); + + shape.closeStroke = closeStroke; + + this.drawShape(shape); + + return this; + }; + + /** + * Draw any shape. + * + * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - Shape to draw + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawShape = function drawShape (shape) + { + if (!this._holeMode) + { + this.geometry.drawShape( + shape, + this._fillStyle.clone(), + this._lineStyle.clone(), + this._matrix + ); + } + else + { + this.geometry.drawHole(shape, this._matrix); + } + + return this; + }; + + /** + * Draw a star shape with an arbitrary number of points. + * + * @param {number} x - Center X position of the star + * @param {number} y - Center Y position of the star + * @param {number} points - The number of points of the star, must be > 1 + * @param {number} radius - The outer radius of the star + * @param {number} [innerRadius] - The inner radius between points, default half `radius` + * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.drawStar = function drawStar (x, y, points, radius, innerRadius, rotation) + { + if ( rotation === void 0 ) rotation = 0; + + return this.drawPolygon(new Star(x, y, points, radius, innerRadius, rotation)); + }; + + /** + * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings. + * + * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls + */ + Graphics.prototype.clear = function clear () + { + this.geometry.clear(); + this._lineStyle.reset(); + this._fillStyle.reset(); + + this._matrix = null; + this._holeMode = false; + this.currentPath = null; + + return this; + }; + + /** + * True if graphics consists of one rectangle, and thus, can be drawn like a Sprite and + * masked with gl.scissor. + * + * @returns {boolean} True if only 1 rect. + */ + Graphics.prototype.isFastRect = function isFastRect () + { + // will fix this! + return false; + // this.graphicsData.length === 1 + // && this.graphicsData[0].shape.type === SHAPES.RECT + // && !this.graphicsData[0].lineWidth; + }; + + /** + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._render = function _render (renderer) + { + this.finishPoly(); + + var geometry = this.geometry; + + // batch part.. + // batch it! + geometry.updateBatches(); + + if (geometry.batchable) + { + if (this.batchDirty !== geometry.batchDirty) + { + this._populateBatches(); + } + + this._renderBatched(renderer); + } + else + { + // no batching... + renderer.batch.flush(); + + this._renderDirect(renderer); + } + }; + + /** + * Populating batches for rendering + * + * @protected + */ + Graphics.prototype._populateBatches = function _populateBatches () + { + var geometry = this.geometry; + var blendMode = this.blendMode; + + this.batches = []; + this.batchTint = -1; + this._transformID = -1; + this.batchDirty = geometry.batchDirty; + + this.vertexData = new Float32Array(geometry.points); + + for (var i = 0, l = geometry.batches.length; i < l; i++) + { + var gI = geometry.batches[i]; + var color = gI.style.color; + var vertexData = new Float32Array(this.vertexData.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var uvs = new Float32Array(geometry.uvsFloat32.buffer, + gI.attribStart * 4 * 2, + gI.attribSize * 2); + + var indices = new Uint16Array(geometry.indicesUint16.buffer, + gI.start * 2, + gI.size); + + var batch = { + vertexData: vertexData, + blendMode: blendMode, + indices: indices, + uvs: uvs, + _batchRGB: hex2rgb(color), + _tintRGB: color, + _texture: gI.style.texture, + alpha: gI.style.alpha, + worldAlpha: 1 }; + + this.batches[i] = batch; + } + }; + + /** + * Renders the batches using the BathedRenderer plugin + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderBatched = function _renderBatched (renderer) + { + if (!this.batches.length) + { + return; + } + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + + this.calculateVertices(); + this.calculateTints(); + + for (var i = 0, l = this.batches.length; i < l; i++) + { + var batch = this.batches[i]; + + batch.worldAlpha = this.worldAlpha * batch.alpha; + + renderer.plugins[this.pluginName].render(batch); + } + }; + + /** + * Renders the graphics direct + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._renderDirect = function _renderDirect (renderer) + { + var shader = this._resolveDirectShader(renderer); + + var geometry = this.geometry; + var tint = this.tint; + var worldAlpha = this.worldAlpha; + var uniforms = shader.uniforms; + var drawCalls = geometry.drawCalls; + + // lets set the transfomr + uniforms.translationMatrix = this.transform.worldTransform; + + // and then lets set the tint.. + uniforms.tint[0] = (((tint >> 16) & 0xFF) / 255) * worldAlpha; + uniforms.tint[1] = (((tint >> 8) & 0xFF) / 255) * worldAlpha; + uniforms.tint[2] = ((tint & 0xFF) / 255) * worldAlpha; + uniforms.tint[3] = worldAlpha; + + // the first draw call, we can set the uniforms of the shader directly here. + + // this means that we can tack advantage of the sync function of pixi! + // bind and sync uniforms.. + // there is a way to optimise this.. + renderer.shader.bind(shader); + renderer.geometry.bind(geometry, shader); + + // set state.. + renderer.state.set(this.state); + + // then render the rest of them... + for (var i = 0, l = drawCalls.length; i < l; i++) + { + this._renderDrawCallDirect(renderer, geometry.drawCalls[i]); + } + }; + + /** + * Renders specific DrawCall + * + * @param {PIXI.Renderer} renderer + * @param {PIXI.BatchDrawCall} drawCall + */ + Graphics.prototype._renderDrawCallDirect = function _renderDrawCallDirect (renderer, drawCall) + { + var groupTextureCount = drawCall.textureCount; + + for (var j = 0; j < groupTextureCount; j++) + { + renderer.texture.bind(drawCall.textures[j], j); + } + + renderer.geometry.draw(drawCall.type, drawCall.size, drawCall.start); + }; + + /** + * Resolves shader for direct rendering + * + * @protected + * @param {PIXI.Renderer} renderer - The renderer + */ + Graphics.prototype._resolveDirectShader = function _resolveDirectShader (renderer) + { + var shader = this.shader; + + var pluginName = this.pluginName; + + if (!shader) + { + // if there is no shader here, we can use the default shader. + // and that only gets created if we actually need it.. + // but may be more than one plugins for graphics + if (!DEFAULT_SHADERS[pluginName]) + { + var sampleValues = new Int32Array(16); + + for (var i = 0; i < 16; i++) + { + sampleValues[i] = i; + } + + var uniforms = { + tint: new Float32Array([1, 1, 1, 1]), + translationMatrix: new Matrix(), + default: UniformGroup.from({ uSamplers: sampleValues }, true), + }; + + var program = renderer.plugins[pluginName]._shader.program; + + DEFAULT_SHADERS[pluginName] = new Shader(program, uniforms); + } + + shader = DEFAULT_SHADERS[pluginName]; + } + + return shader; + }; + + /** + * Retrieves the bounds of the graphic shape as a rectangle object + * + * @protected + */ + Graphics.prototype._calculateBounds = function _calculateBounds () + { + this.finishPoly(); + var lb = this.geometry.bounds; + + this._bounds.addFrame(this.transform, lb.minX, lb.minY, lb.maxX, lb.maxY); + }; + + /** + * Tests if a point is inside this graphics object + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Graphics.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, Graphics._TEMP_POINT); + + return this.geometry.containsPoint(Graphics._TEMP_POINT); + }; + + /** + * Recalcuate the tint by applying tin to batches using Graphics tint. + * @protected + */ + Graphics.prototype.calculateTints = function calculateTints () + { + if (this.batchTint !== this.tint) + { + this.batchTint = this.tint; + + var tintRGB = hex2rgb(this.tint, temp); + + for (var i = 0; i < this.batches.length; i++) + { + var batch = this.batches[i]; + + var batchTint = batch._batchRGB; + + var r = (tintRGB[0] * batchTint[0]) * 255; + var g = (tintRGB[1] * batchTint[1]) * 255; + var b = (tintRGB[2] * batchTint[2]) * 255; + + // TODO Ivan, can this be done in one go? + var color = (r << 16) + (g << 8) + (b | 0); + + batch._tintRGB = (color >> 16) + + (color & 0xff00) + + ((color & 0xff) << 16); + } + } + }; + + /** + * If there's a transform update or a change to the shape of the + * geometry, recaculate the vertices. + * @protected + */ + Graphics.prototype.calculateVertices = function calculateVertices () + { + if (this._transformID === this.transform._worldID) + { + return; + } + + this._transformID = this.transform._worldID; + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var data = this.geometry.points;// batch.vertexDataOriginal; + var vertexData = this.vertexData; + + var count = 0; + + for (var i = 0; i < data.length; i += 2) + { + var x = data[i]; + var y = data[i + 1]; + + vertexData[count++] = (a * x) + (c * y) + tx; + vertexData[count++] = (d * y) + (b * x) + ty; + } + }; + + /** + * Closes the current path. + * + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.closePath = function closePath () + { + var currentPath = this.currentPath; + + if (currentPath) + { + // we don't need to add extra point in the end because buildLine will take care of that + currentPath.closeStroke = true; + } + + return this; + }; + + /** + * Apply a matrix to the positional data. + * + * @param {PIXI.Matrix} matrix - Matrix to use for transform current shape. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.setMatrix = function setMatrix (matrix) + { + this._matrix = matrix; + + return this; + }; + + /** + * Begin adding holes to the last draw shape + * IMPORTANT: holes must be fully inside a shape to work + * Also weirdness ensues if holes overlap! + * Ellipses, Circles, Rectangles and Rounded Rectangles cannot be holes or host for holes in CanvasRenderer, + * please use `moveTo` `lineTo`, `quadraticCurveTo` if you rely on pixi-legacy bundle. + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.beginHole = function beginHole () + { + this.finishPoly(); + this._holeMode = true; + + return this; + }; + + /** + * End adding holes to the last draw shape + * @return {PIXI.Graphics} Returns itself. + */ + Graphics.prototype.endHole = function endHole () + { + this.finishPoly(); + this._holeMode = false; + + return this; + }; + + /** + * Destroys the Graphics object. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all + * options have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have + * their destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the texture of the child sprite + * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true + * Should it destroy the base texture of the child sprite + */ + Graphics.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this.geometry.refCount--; + if (this.geometry.refCount === 0) + { + this.geometry.dispose(); + } + + this._matrix = null; + this.currentPath = null; + this._lineStyle.destroy(); + this._lineStyle = null; + this._fillStyle.destroy(); + this._fillStyle = null; + this.geometry = null; + this.shader = null; + this.vertexData = null; + this.batches.length = 0; + this.batches = null; + + Container.prototype.destroy.call(this, options); + }; + + Object.defineProperties( Graphics.prototype, prototypeAccessors ); + + return Graphics; +}(Container)); + +/** + * Temporary point to use for containsPoint + * + * @static + * @private + * @member {PIXI.Point} + */ +Graphics._TEMP_POINT = new Point(); + +/*! + * @pixi/sprite - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint = new Point(); +var indices = new Uint16Array([0, 1, 2, 0, 2, 3]); + +/** + * The Sprite object is the base for all textured objects that are rendered to the screen +* + * A sprite can be created directly from an image like this: + * + * ```js + * let sprite = PIXI.Sprite.from('assets/image.png'); + * ``` + * + * The more efficient way to create sprites is using a {@link PIXI.Spritesheet}, + * as swapping base textures when rendering to the screen is inefficient. + * + * ```js + * PIXI.Loader.shared.add("assets/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["assets/spritesheet.json"].spritesheet; + * let sprite = new PIXI.Sprite(sheet.textures["image.png"]); + * ... + * } + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var Sprite = /*@__PURE__*/(function (Container) { + function Sprite(texture) + { + Container.call(this); + + /** + * The anchor point defines the normalized coordinates + * in the texture that map to the position of this + * sprite. + * + * By default, this is `(0,0)` (or `texture.defaultAnchor` + * if you have modified that), which means the position + * `(x,y)` of this `Sprite` will be the top-left corner. + * + * Note: Updating `texture.defaultAnchor` after + * constructing a `Sprite` does _not_ update its anchor. + * + * {@link https://docs.cocos2d-x.org/cocos2d-x/en/sprites/manipulation.html} + * + * @default `texture.defaultAnchor` + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint( + this._onAnchorUpdate, + this, + (texture ? texture.defaultAnchor.x : 0), + (texture ? texture.defaultAnchor.y : 0) + ); + + /** + * The texture that the sprite is using + * + * @private + * @member {PIXI.Texture} + */ + this._texture = null; + + /** + * The width of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._width = 0; + + /** + * The height of the sprite (this is initially set by the texture) + * + * @private + * @member {number} + */ + this._height = 0; + + /** + * The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect. + * + * @private + * @member {number} + * @default 0xFFFFFF + */ + this._tint = null; + this._tintRGB = null; + this.tint = 0xFFFFFF; + + /** + * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode. + * + * @member {number} + * @default PIXI.BLEND_MODES.NORMAL + * @see PIXI.BLEND_MODES + */ + this.blendMode = BLEND_MODES.NORMAL; + + /** + * The shader that will be used to render the sprite. Set to null to remove a current shader. + * + * @member {PIXI.Filter|PIXI.Shader} + */ + this.shader = null; + + /** + * Cached tint value so we can tell when the tint is changed. + * Value is used for 2d CanvasRenderer. + * + * @protected + * @member {number} + * @default 0xFFFFFF + */ + this._cachedTint = 0xFFFFFF; + + /** + * this is used to store the uvs data of the sprite, assigned at the same time + * as the vertexData in calculateVertices() + * + * @private + * @member {Float32Array} + */ + this.uvs = null; + + // call texture setter + this.texture = texture || Texture.EMPTY; + + /** + * this is used to store the vertex data of the sprite (basically a quad) + * + * @private + * @member {Float32Array} + */ + this.vertexData = new Float32Array(8); + + /** + * This is used to calculate the bounds of the object IF it is a trimmed sprite + * + * @private + * @member {Float32Array} + */ + this.vertexTrimmedData = null; + + this._transformID = -1; + this._textureID = -1; + + this._transformTrimmedID = -1; + this._textureTrimmedID = -1; + + // Batchable stuff.. + // TODO could make this a mixin? + this.indices = indices; + this.size = 4; + this.start = 0; + + /** + * Plugin that is responsible for rendering this element. + * Allows to customize the rendering process without overriding '_render' & '_renderCanvas' methods. + * + * @member {string} + * @default 'batch' + */ + this.pluginName = 'batch'; + + /** + * used to fast check if a sprite is.. a sprite! + * @member {boolean} + */ + this.isSprite = true; + + /** + * Internal roundPixels field + * + * @member {boolean} + * @private + */ + this._roundPixels = settings.ROUND_PIXELS; + } + + if ( Container ) Sprite.__proto__ = Container; + Sprite.prototype = Object.create( Container && Container.prototype ); + Sprite.prototype.constructor = Sprite; + + var prototypeAccessors = { roundPixels: { configurable: true },width: { configurable: true },height: { configurable: true },anchor: { configurable: true },tint: { configurable: true },texture: { configurable: true } }; + + /** + * When the texture is updated, this event will fire to update the scale and frame + * + * @private + */ + Sprite.prototype._onTextureUpdate = function _onTextureUpdate () + { + this._textureID = -1; + this._textureTrimmedID = -1; + this._cachedTint = 0xFFFFFF; + + // so if _width is 0 then width was not set.. + if (this._width) + { + this.scale.x = sign$1(this.scale.x) * this._width / this._texture.orig.width; + } + + if (this._height) + { + this.scale.y = sign$1(this.scale.y) * this._height / this._texture.orig.height; + } + }; + + /** + * Called when the anchor position updates. + * + * @private + */ + Sprite.prototype._onAnchorUpdate = function _onAnchorUpdate () + { + this._transformID = -1; + this._transformTrimmedID = -1; + }; + + /** + * calculates worldTransform * vertices, store it in vertexData + */ + Sprite.prototype.calculateVertices = function calculateVertices () + { + var texture = this._texture; + + if (this._transformID === this.transform._worldID && this._textureID === texture._updateID) + { + return; + } + + // update texture UV here, because base texture can be changed without calling `_onTextureUpdate` + if (this._textureID !== texture._updateID) + { + this.uvs = this._texture._uvs.uvsFloat32; + } + + this._transformID = this.transform._worldID; + this._textureID = texture._updateID; + + // set the vertex data + + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + var vertexData = this.vertexData; + var trim = texture.trim; + var orig = texture.orig; + var anchor = this._anchor; + + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the extra + // space before transforming the sprite coords. + w1 = trim.x - (anchor._x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (anchor._y * orig.height); + h0 = h1 + trim.height; + } + else + { + w1 = -anchor._x * orig.width; + w0 = w1 + orig.width; + + h1 = -anchor._y * orig.height; + h0 = h1 + orig.height; + } + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + + if (this._roundPixels) + { + for (var i = 0; i < 8; i++) + { + vertexData[i] = Math.round(vertexData[i]); + } + } + }; + + /** + * calculates worldTransform * vertices for a non texture with a trim. store it in vertexTrimmedData + * This is used to ensure that the true width and height of a trimmed texture is respected + */ + Sprite.prototype.calculateTrimmedVertices = function calculateTrimmedVertices () + { + if (!this.vertexTrimmedData) + { + this.vertexTrimmedData = new Float32Array(8); + } + else if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID) + { + return; + } + + this._transformTrimmedID = this.transform._worldID; + this._textureTrimmedID = this._texture._updateID; + + // lets do some special trim code! + var texture = this._texture; + var vertexData = this.vertexTrimmedData; + var orig = texture.orig; + var anchor = this._anchor; + + // lets calculate the new untrimmed bounds.. + var wt = this.transform.worldTransform; + var a = wt.a; + var b = wt.b; + var c = wt.c; + var d = wt.d; + var tx = wt.tx; + var ty = wt.ty; + + var w1 = -anchor._x * orig.width; + var w0 = w1 + orig.width; + + var h1 = -anchor._y * orig.height; + var h0 = h1 + orig.height; + + // xy + vertexData[0] = (a * w1) + (c * h1) + tx; + vertexData[1] = (d * h1) + (b * w1) + ty; + + // xy + vertexData[2] = (a * w0) + (c * h1) + tx; + vertexData[3] = (d * h1) + (b * w0) + ty; + + // xy + vertexData[4] = (a * w0) + (c * h0) + tx; + vertexData[5] = (d * h0) + (b * w0) + ty; + + // xy + vertexData[6] = (a * w1) + (c * h0) + tx; + vertexData[7] = (d * h0) + (b * w1) + ty; + }; + + /** + * + * Renders the object using the WebGL renderer + * + * @protected + * @param {PIXI.Renderer} renderer - The webgl renderer to use. + */ + Sprite.prototype._render = function _render (renderer) + { + this.calculateVertices(); + + renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]); + renderer.plugins[this.pluginName].render(this); + }; + + /** + * Updates the bounds of the sprite. + * + * @protected + */ + Sprite.prototype._calculateBounds = function _calculateBounds () + { + var trim = this._texture.trim; + var orig = this._texture.orig; + + // First lets check to see if the current texture has a trim.. + if (!trim || (trim.width === orig.width && trim.height === orig.height)) + { + // no trim! lets use the usual calculations.. + this.calculateVertices(); + this._bounds.addQuad(this.vertexData); + } + else + { + // lets calculate a special trimmed bounds... + this.calculateTrimmedVertices(); + this._bounds.addQuad(this.vertexTrimmedData); + } + }; + + /** + * Gets the local bounds of the sprite object. + * + * @param {PIXI.Rectangle} [rect] - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Sprite.prototype.getLocalBounds = function getLocalBounds (rect) + { + // we can do a fast local bounds if the sprite has no children! + if (this.children.length === 0) + { + this._bounds.minX = this._texture.orig.width * -this._anchor._x; + this._bounds.minY = this._texture.orig.height * -this._anchor._y; + this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x); + this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y); + + if (!rect) + { + if (!this._localBoundsRect) + { + this._localBoundsRect = new Rectangle(); + } + + rect = this._localBoundsRect; + } + + return this._bounds.getRectangle(rect); + } + + return Container.prototype.getLocalBounds.call(this, rect); + }; + + /** + * Tests if a point is inside this sprite + * + * @param {PIXI.Point} point - the point to test + * @return {boolean} the result of the test + */ + Sprite.prototype.containsPoint = function containsPoint (point) + { + this.worldTransform.applyInverse(point, tempPoint); + + var width = this._texture.orig.width; + var height = this._texture.orig.height; + var x1 = -width * this.anchor.x; + var y1 = 0; + + if (tempPoint.x >= x1 && tempPoint.x < x1 + width) + { + y1 = -height * this.anchor.y; + + if (tempPoint.y >= y1 && tempPoint.y < y1 + height) + { + return true; + } + } + + return false; + }; + + /** + * Destroys this sprite and optionally its texture and children + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy + * method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well + */ + Sprite.prototype.destroy = function destroy (options) + { + Container.prototype.destroy.call(this, options); + + this._texture.off('update', this._onTextureUpdate, this); + + this._anchor = null; + + var destroyTexture = typeof options === 'boolean' ? options : options && options.texture; + + if (destroyTexture) + { + var destroyBaseTexture = typeof options === 'boolean' ? options : options && options.baseTexture; + + this._texture.destroy(!!destroyBaseTexture); + } + + this._texture = null; + this.shader = null; + }; + + // some helper functions.. + + /** + * Helper function that creates a new sprite based on the source you provide. + * The source can be - frame id, image url, video url, canvas element, video element, base texture + * + * @static + * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source Source to create texture from + * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options. + * @return {PIXI.Sprite} The newly created sprite + */ + Sprite.from = function from (source, options) + { + var texture = (source instanceof Texture) + ? source + : Texture.from(source, options); + + return new Sprite(texture); + }; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + prototypeAccessors.roundPixels.set = function (value) + { + if (this._roundPixels !== value) + { + this._transformID = -1; + } + this._roundPixels = value; + }; + + prototypeAccessors.roundPixels.get = function () + { + return this._roundPixels; + }; + + /** + * The width of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the sprite, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * The anchor sets the origin point of the text. The default value is taken from the {@link PIXI.Texture|Texture} + * and passed to the constructor. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * If you pass only single parameter, it will set both x and y to the same value as shown in the example below. + * + * @example + * const sprite = new PIXI.Sprite(texture); + * sprite.anchor.set(0.5); // This will set the origin to center. (0.5) is same as (0.5, 0.5). + * + * @member {PIXI.ObservablePoint} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + this._anchor.copyFrom(value); + }; + + /** + * The tint applied to the sprite. This is a hex value. + * A value of 0xFFFFFF will remove any tint effect. + * + * @member {number} + * @default 0xFFFFFF + */ + prototypeAccessors.tint.get = function () + { + return this._tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._tint = value; + this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16); + }; + + /** + * The texture that the sprite is using + * + * @member {PIXI.Texture} + */ + prototypeAccessors.texture.get = function () + { + return this._texture; + }; + + prototypeAccessors.texture.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._texture === value) + { + return; + } + + this._texture = value || Texture.EMPTY; + this._cachedTint = 0xFFFFFF; + + this._textureID = -1; + this._textureTrimmedID = -1; + + if (value) + { + // wait for the texture to load + if (value.baseTexture.valid) + { + this._onTextureUpdate(); + } + else + { + value.once('update', this._onTextureUpdate, this); + } + } + }; + + Object.defineProperties( Sprite.prototype, prototypeAccessors ); + + return Sprite; +}(Container)); + +/*! + * @pixi/text - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Constants that define the type of gradient on text. + * + * @static + * @constant + * @name TEXT_GRADIENT + * @memberof PIXI + * @type {object} + * @property {number} LINEAR_VERTICAL Vertical gradient + * @property {number} LINEAR_HORIZONTAL Linear gradient + */ +var TEXT_GRADIENT = { + LINEAR_VERTICAL: 0, + LINEAR_HORIZONTAL: 1, +}; + +// disabling eslint for now, going to rewrite this in v5 + +var defaultStyle = { + align: 'left', + breakWords: false, + dropShadow: false, + dropShadowAlpha: 1, + dropShadowAngle: Math.PI / 6, + dropShadowBlur: 0, + dropShadowColor: 'black', + dropShadowDistance: 5, + fill: 'black', + fillGradientType: TEXT_GRADIENT.LINEAR_VERTICAL, + fillGradientStops: [], + fontFamily: 'Arial', + fontSize: 26, + fontStyle: 'normal', + fontVariant: 'normal', + fontWeight: 'normal', + letterSpacing: 0, + lineHeight: 0, + lineJoin: 'miter', + miterLimit: 10, + padding: 0, + stroke: 'black', + strokeThickness: 0, + textBaseline: 'alphabetic', + trim: false, + whiteSpace: 'pre', + wordWrap: false, + wordWrapWidth: 100, + leading: 0, +}; + +var genericFontFamilies = [ + 'serif', + 'sans-serif', + 'monospace', + 'cursive', + 'fantasy', + 'system-ui' ]; + +/** + * A TextStyle Object contains information to decorate a Text objects. + * + * An instance can be shared between multiple Text objects; then changing the style will update all text objects using it. + * + * A tool can be used to generate a text style [here](https://pixijs.io/pixi-text-style). + * + * @class + * @memberof PIXI + */ +var TextStyle = function TextStyle(style) +{ + this.styleID = 0; + + this.reset(); + + deepCopyProperties(this, style, style); +}; + +var prototypeAccessors$7 = { align: { configurable: true },breakWords: { configurable: true },dropShadow: { configurable: true },dropShadowAlpha: { configurable: true },dropShadowAngle: { configurable: true },dropShadowBlur: { configurable: true },dropShadowColor: { configurable: true },dropShadowDistance: { configurable: true },fill: { configurable: true },fillGradientType: { configurable: true },fillGradientStops: { configurable: true },fontFamily: { configurable: true },fontSize: { configurable: true },fontStyle: { configurable: true },fontVariant: { configurable: true },fontWeight: { configurable: true },letterSpacing: { configurable: true },lineHeight: { configurable: true },leading: { configurable: true },lineJoin: { configurable: true },miterLimit: { configurable: true },padding: { configurable: true },stroke: { configurable: true },strokeThickness: { configurable: true },textBaseline: { configurable: true },trim: { configurable: true },whiteSpace: { configurable: true },wordWrap: { configurable: true },wordWrapWidth: { configurable: true } }; + +/** + * Creates a new TextStyle object with the same values as this one. + * Note that the only the properties of the object are cloned. + * + * @return {PIXI.TextStyle} New cloned TextStyle object + */ +TextStyle.prototype.clone = function clone () +{ + var clonedProperties = {}; + + deepCopyProperties(clonedProperties, this, defaultStyle); + + return new TextStyle(clonedProperties); +}; + +/** + * Resets all properties to the defaults specified in TextStyle.prototype._default + */ +TextStyle.prototype.reset = function reset () +{ + deepCopyProperties(this, defaultStyle, defaultStyle); +}; + +/** + * Alignment for multiline text ('left', 'center' or 'right'), does not affect single line text + * + * @member {string} + */ +prototypeAccessors$7.align.get = function () +{ + return this._align; +}; +prototypeAccessors$7.align.set = function (align) // eslint-disable-line require-jsdoc +{ + if (this._align !== align) + { + this._align = align; + this.styleID++; + } +}; + +/** + * Indicates if lines can be wrapped within words, it needs wordWrap to be set to true + * + * @member {boolean} + */ +prototypeAccessors$7.breakWords.get = function () +{ + return this._breakWords; +}; +prototypeAccessors$7.breakWords.set = function (breakWords) // eslint-disable-line require-jsdoc +{ + if (this._breakWords !== breakWords) + { + this._breakWords = breakWords; + this.styleID++; + } +}; + +/** + * Set a drop shadow for the text + * + * @member {boolean} + */ +prototypeAccessors$7.dropShadow.get = function () +{ + return this._dropShadow; +}; +prototypeAccessors$7.dropShadow.set = function (dropShadow) // eslint-disable-line require-jsdoc +{ + if (this._dropShadow !== dropShadow) + { + this._dropShadow = dropShadow; + this.styleID++; + } +}; + +/** + * Set alpha for the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAlpha.get = function () +{ + return this._dropShadowAlpha; +}; +prototypeAccessors$7.dropShadowAlpha.set = function (dropShadowAlpha) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAlpha !== dropShadowAlpha) + { + this._dropShadowAlpha = dropShadowAlpha; + this.styleID++; + } +}; + +/** + * Set a angle of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowAngle.get = function () +{ + return this._dropShadowAngle; +}; +prototypeAccessors$7.dropShadowAngle.set = function (dropShadowAngle) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowAngle !== dropShadowAngle) + { + this._dropShadowAngle = dropShadowAngle; + this.styleID++; + } +}; + +/** + * Set a shadow blur radius + * + * @member {number} + */ +prototypeAccessors$7.dropShadowBlur.get = function () +{ + return this._dropShadowBlur; +}; +prototypeAccessors$7.dropShadowBlur.set = function (dropShadowBlur) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowBlur !== dropShadowBlur) + { + this._dropShadowBlur = dropShadowBlur; + this.styleID++; + } +}; + +/** + * A fill style to be used on the dropshadow e.g 'red', '#00FF00' + * + * @member {string|number} + */ +prototypeAccessors$7.dropShadowColor.get = function () +{ + return this._dropShadowColor; +}; +prototypeAccessors$7.dropShadowColor.set = function (dropShadowColor) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(dropShadowColor); + if (this._dropShadowColor !== outputColor) + { + this._dropShadowColor = outputColor; + this.styleID++; + } +}; + +/** + * Set a distance of the drop shadow + * + * @member {number} + */ +prototypeAccessors$7.dropShadowDistance.get = function () +{ + return this._dropShadowDistance; +}; +prototypeAccessors$7.dropShadowDistance.set = function (dropShadowDistance) // eslint-disable-line require-jsdoc +{ + if (this._dropShadowDistance !== dropShadowDistance) + { + this._dropShadowDistance = dropShadowDistance; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text e.g 'red', '#00FF00'. + * Can be an array to create a gradient eg ['#000000','#FFFFFF'] + * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle|MDN} + * + * @member {string|string[]|number|number[]|CanvasGradient|CanvasPattern} + */ +prototypeAccessors$7.fill.get = function () +{ + return this._fill; +}; +prototypeAccessors$7.fill.set = function (fill) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(fill); + if (this._fill !== outputColor) + { + this._fill = outputColor; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this can change the type/direction of the gradient. + * See {@link PIXI.TEXT_GRADIENT} + * + * @member {number} + */ +prototypeAccessors$7.fillGradientType.get = function () +{ + return this._fillGradientType; +}; +prototypeAccessors$7.fillGradientType.set = function (fillGradientType) // eslint-disable-line require-jsdoc +{ + if (this._fillGradientType !== fillGradientType) + { + this._fillGradientType = fillGradientType; + this.styleID++; + } +}; + +/** + * If fill is an array of colours to create a gradient, this array can set the stop points + * (numbers between 0 and 1) for the color, overriding the default behaviour of evenly spacing them. + * + * @member {number[]} + */ +prototypeAccessors$7.fillGradientStops.get = function () +{ + return this._fillGradientStops; +}; +prototypeAccessors$7.fillGradientStops.set = function (fillGradientStops) // eslint-disable-line require-jsdoc +{ + if (!areArraysEqual(this._fillGradientStops,fillGradientStops)) + { + this._fillGradientStops = fillGradientStops; + this.styleID++; + } +}; + +/** + * The font family + * + * @member {string|string[]} + */ +prototypeAccessors$7.fontFamily.get = function () +{ + return this._fontFamily; +}; +prototypeAccessors$7.fontFamily.set = function (fontFamily) // eslint-disable-line require-jsdoc +{ + if (this.fontFamily !== fontFamily) + { + this._fontFamily = fontFamily; + this.styleID++; + } +}; + +/** + * The font size + * (as a number it converts to px, but as a string, equivalents are '26px','20pt','160%' or '1.6em') + * + * @member {number|string} + */ +prototypeAccessors$7.fontSize.get = function () +{ + return this._fontSize; +}; +prototypeAccessors$7.fontSize.set = function (fontSize) // eslint-disable-line require-jsdoc +{ + if (this._fontSize !== fontSize) + { + this._fontSize = fontSize; + this.styleID++; + } +}; + +/** + * The font style + * ('normal', 'italic' or 'oblique') + * + * @member {string} + */ +prototypeAccessors$7.fontStyle.get = function () +{ + return this._fontStyle; +}; +prototypeAccessors$7.fontStyle.set = function (fontStyle) // eslint-disable-line require-jsdoc +{ + if (this._fontStyle !== fontStyle) + { + this._fontStyle = fontStyle; + this.styleID++; + } +}; + +/** + * The font variant + * ('normal' or 'small-caps') + * + * @member {string} + */ +prototypeAccessors$7.fontVariant.get = function () +{ + return this._fontVariant; +}; +prototypeAccessors$7.fontVariant.set = function (fontVariant) // eslint-disable-line require-jsdoc +{ + if (this._fontVariant !== fontVariant) + { + this._fontVariant = fontVariant; + this.styleID++; + } +}; + +/** + * The font weight + * ('normal', 'bold', 'bolder', 'lighter' and '100', '200', '300', '400', '500', '600', '700', 800' or '900') + * + * @member {string} + */ +prototypeAccessors$7.fontWeight.get = function () +{ + return this._fontWeight; +}; +prototypeAccessors$7.fontWeight.set = function (fontWeight) // eslint-disable-line require-jsdoc +{ + if (this._fontWeight !== fontWeight) + { + this._fontWeight = fontWeight; + this.styleID++; + } +}; + +/** + * The amount of spacing between letters, default is 0 + * + * @member {number} + */ +prototypeAccessors$7.letterSpacing.get = function () +{ + return this._letterSpacing; +}; +prototypeAccessors$7.letterSpacing.set = function (letterSpacing) // eslint-disable-line require-jsdoc +{ + if (this._letterSpacing !== letterSpacing) + { + this._letterSpacing = letterSpacing; + this.styleID++; + } +}; + +/** + * The line height, a number that represents the vertical space that a letter uses + * + * @member {number} + */ +prototypeAccessors$7.lineHeight.get = function () +{ + return this._lineHeight; +}; +prototypeAccessors$7.lineHeight.set = function (lineHeight) // eslint-disable-line require-jsdoc +{ + if (this._lineHeight !== lineHeight) + { + this._lineHeight = lineHeight; + this.styleID++; + } +}; + +/** + * The space between lines + * + * @member {number} + */ +prototypeAccessors$7.leading.get = function () +{ + return this._leading; +}; +prototypeAccessors$7.leading.set = function (leading) // eslint-disable-line require-jsdoc +{ + if (this._leading !== leading) + { + this._leading = leading; + this.styleID++; + } +}; + +/** + * The lineJoin property sets the type of corner created, it can resolve spiked text issues. + * Default is 'miter' (creates a sharp corner). + * + * @member {string} + */ +prototypeAccessors$7.lineJoin.get = function () +{ + return this._lineJoin; +}; +prototypeAccessors$7.lineJoin.set = function (lineJoin) // eslint-disable-line require-jsdoc +{ + if (this._lineJoin !== lineJoin) + { + this._lineJoin = lineJoin; + this.styleID++; + } +}; + +/** + * The miter limit to use when using the 'miter' lineJoin mode + * This can reduce or increase the spikiness of rendered text. + * + * @member {number} + */ +prototypeAccessors$7.miterLimit.get = function () +{ + return this._miterLimit; +}; +prototypeAccessors$7.miterLimit.set = function (miterLimit) // eslint-disable-line require-jsdoc +{ + if (this._miterLimit !== miterLimit) + { + this._miterLimit = miterLimit; + this.styleID++; + } +}; + +/** + * Occasionally some fonts are cropped. Adding some padding will prevent this from happening + * by adding padding to all sides of the text. + * + * @member {number} + */ +prototypeAccessors$7.padding.get = function () +{ + return this._padding; +}; +prototypeAccessors$7.padding.set = function (padding) // eslint-disable-line require-jsdoc +{ + if (this._padding !== padding) + { + this._padding = padding; + this.styleID++; + } +}; + +/** + * A canvas fillstyle that will be used on the text stroke + * e.g 'blue', '#FCFF00' + * + * @member {string|number} + */ +prototypeAccessors$7.stroke.get = function () +{ + return this._stroke; +}; +prototypeAccessors$7.stroke.set = function (stroke) // eslint-disable-line require-jsdoc +{ + var outputColor = getColor(stroke); + if (this._stroke !== outputColor) + { + this._stroke = outputColor; + this.styleID++; + } +}; + +/** + * A number that represents the thickness of the stroke. + * Default is 0 (no stroke) + * + * @member {number} + */ +prototypeAccessors$7.strokeThickness.get = function () +{ + return this._strokeThickness; +}; +prototypeAccessors$7.strokeThickness.set = function (strokeThickness) // eslint-disable-line require-jsdoc +{ + if (this._strokeThickness !== strokeThickness) + { + this._strokeThickness = strokeThickness; + this.styleID++; + } +}; + +/** + * The baseline of the text that is rendered. + * + * @member {string} + */ +prototypeAccessors$7.textBaseline.get = function () +{ + return this._textBaseline; +}; +prototypeAccessors$7.textBaseline.set = function (textBaseline) // eslint-disable-line require-jsdoc +{ + if (this._textBaseline !== textBaseline) + { + this._textBaseline = textBaseline; + this.styleID++; + } +}; + +/** + * Trim transparent borders + * + * @member {boolean} + */ +prototypeAccessors$7.trim.get = function () +{ + return this._trim; +}; +prototypeAccessors$7.trim.set = function (trim) // eslint-disable-line require-jsdoc +{ + if (this._trim !== trim) + { + this._trim = trim; + this.styleID++; + } +}; + +/** + * How newlines and spaces should be handled. + * Default is 'pre' (preserve, preserve). + * + * value | New lines | Spaces + * --- | --- | --- + * 'normal' | Collapse | Collapse + * 'pre' | Preserve | Preserve + * 'pre-line' | Preserve | Collapse + * + * @member {string} + */ +prototypeAccessors$7.whiteSpace.get = function () +{ + return this._whiteSpace; +}; +prototypeAccessors$7.whiteSpace.set = function (whiteSpace) // eslint-disable-line require-jsdoc +{ + if (this._whiteSpace !== whiteSpace) + { + this._whiteSpace = whiteSpace; + this.styleID++; + } +}; + +/** + * Indicates if word wrap should be used + * + * @member {boolean} + */ +prototypeAccessors$7.wordWrap.get = function () +{ + return this._wordWrap; +}; +prototypeAccessors$7.wordWrap.set = function (wordWrap) // eslint-disable-line require-jsdoc +{ + if (this._wordWrap !== wordWrap) + { + this._wordWrap = wordWrap; + this.styleID++; + } +}; + +/** + * The width at which text will wrap, it needs wordWrap to be set to true + * + * @member {number} + */ +prototypeAccessors$7.wordWrapWidth.get = function () +{ + return this._wordWrapWidth; +}; +prototypeAccessors$7.wordWrapWidth.set = function (wordWrapWidth) // eslint-disable-line require-jsdoc +{ + if (this._wordWrapWidth !== wordWrapWidth) + { + this._wordWrapWidth = wordWrapWidth; + this.styleID++; + } +}; + +/** + * Generates a font style string to use for `TextMetrics.measureFont()`. + * + * @return {string} Font style string, for passing to `TextMetrics.measureFont()` + */ +TextStyle.prototype.toFontString = function toFontString () +{ + // build canvas api font setting from individual components. Convert a numeric this.fontSize to px + var fontSizeString = (typeof this.fontSize === 'number') ? ((this.fontSize) + "px") : this.fontSize; + + // Clean-up fontFamily property by quoting each font name + // this will support font names with spaces + var fontFamilies = this.fontFamily; + + if (!Array.isArray(this.fontFamily)) + { + fontFamilies = this.fontFamily.split(','); + } + + for (var i = fontFamilies.length - 1; i >= 0; i--) + { + // Trim any extra white-space + var fontFamily = fontFamilies[i].trim(); + + // Check if font already contains strings + if (!(/([\"\'])[^\'\"]+\1/).test(fontFamily) && genericFontFamilies.indexOf(fontFamily) < 0) + { + fontFamily = "\"" + fontFamily + "\""; + } + fontFamilies[i] = fontFamily; + } + + return ((this.fontStyle) + " " + (this.fontVariant) + " " + (this.fontWeight) + " " + fontSizeString + " " + (fontFamilies.join(','))); +}; + +Object.defineProperties( TextStyle.prototype, prototypeAccessors$7 ); + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getSingleColor(color) +{ + if (typeof color === 'number') + { + return hex2string(color); + } + else if ( typeof color === 'string' ) + { + if ( color.indexOf('0x') === 0 ) + { + color = color.replace('0x', '#'); + } + } + + return color; +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {number|number[]} color + * @return {string} The color as a string. + */ +function getColor(color) +{ + if (!Array.isArray(color)) + { + return getSingleColor(color); + } + else + { + for (var i = 0; i < color.length; ++i) + { + color[i] = getSingleColor(color[i]); + } + + return color; + } +} + +/** + * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string. + * This version can also convert array of colors + * @private + * @param {Array} array1 First array to compare + * @param {Array} array2 Second array to compare + * @return {boolean} Do the arrays contain the same values in the same order + */ +function areArraysEqual(array1, array2) +{ + if (!Array.isArray(array1) || !Array.isArray(array2)) + { + return false; + } + + if (array1.length !== array2.length) + { + return false; + } + + for (var i = 0; i < array1.length; ++i) + { + if (array1[i] !== array2[i]) + { + return false; + } + } + + return true; +} + +/** + * Utility function to ensure that object properties are copied by value, and not by reference + * @private + * @param {Object} target Target object to copy properties into + * @param {Object} source Source object for the properties to copy + * @param {string} propertyObj Object containing properties names we want to loop over + */ +function deepCopyProperties(target, source, propertyObj) { + for (var prop in propertyObj) { + if (Array.isArray(source[prop])) { + target[prop] = source[prop].slice(); + } else { + target[prop] = source[prop]; + } + } +} + +/** + * The TextMetrics object represents the measurement of a block of text with a specified style. + * + * ```js + * let style = new PIXI.TextStyle({fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}) + * let textMetrics = PIXI.TextMetrics.measureText('Your text', style) + * ``` + * + * @class + * @memberof PIXI + */ +var TextMetrics = function TextMetrics(text, style, width, height, lines, lineWidths, lineHeight, maxLineWidth, fontProperties) +{ + /** + * The text that was measured + * + * @member {string} + */ + this.text = text; + + /** + * The style that was measured + * + * @member {PIXI.TextStyle} + */ + this.style = style; + + /** + * The measured width of the text + * + * @member {number} + */ + this.width = width; + + /** + * The measured height of the text + * + * @member {number} + */ + this.height = height; + + /** + * An array of lines of the text broken by new lines and wrapping is specified in style + * + * @member {string[]} + */ + this.lines = lines; + + /** + * An array of the line widths for each line matched to `lines` + * + * @member {number[]} + */ + this.lineWidths = lineWidths; + + /** + * The measured line height for this style + * + * @member {number} + */ + this.lineHeight = lineHeight; + + /** + * The maximum line width for all measured lines + * + * @member {number} + */ + this.maxLineWidth = maxLineWidth; + + /** + * The font properties object from TextMetrics.measureFont + * + * @member {PIXI.IFontMetrics} + */ + this.fontProperties = fontProperties; +}; + +/** + * Measures the supplied string of text and returns a Rectangle. + * + * @param {string} text - the text to measure. + * @param {PIXI.TextStyle} style - the text style to use for measuring + * @param {boolean} [wordWrap] - optional override for if word-wrap should be applied to the text. + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {PIXI.TextMetrics} measured width and height of the text. + */ +TextMetrics.measureText = function measureText (text, style, wordWrap, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + wordWrap = (wordWrap === undefined || wordWrap === null) ? style.wordWrap : wordWrap; + var font = style.toFontString(); + var fontProperties = TextMetrics.measureFont(font); + + // fallback in case UA disallow canvas data extraction + // (toDataURI, getImageData functions) + if (fontProperties.fontSize === 0) + { + fontProperties.fontSize = style.fontSize; + fontProperties.ascent = style.fontSize; + } + + var context = canvas.getContext('2d'); + + context.font = font; + + var outputText = wordWrap ? TextMetrics.wordWrap(text, style, canvas) : text; + var lines = outputText.split(/(?:\r\n|\r|\n)/); + var lineWidths = new Array(lines.length); + var maxLineWidth = 0; + + for (var i = 0; i < lines.length; i++) + { + var lineWidth = context.measureText(lines[i]).width + ((lines[i].length - 1) * style.letterSpacing); + + lineWidths[i] = lineWidth; + maxLineWidth = Math.max(maxLineWidth, lineWidth); + } + var width = maxLineWidth + style.strokeThickness; + + if (style.dropShadow) + { + width += style.dropShadowDistance; + } + + var lineHeight = style.lineHeight || fontProperties.fontSize + style.strokeThickness; + var height = Math.max(lineHeight, fontProperties.fontSize + style.strokeThickness) + + ((lines.length - 1) * (lineHeight + style.leading)); + + if (style.dropShadow) + { + height += style.dropShadowDistance; + } + + return new TextMetrics( + text, + style, + width, + height, + lines, + lineWidths, + lineHeight + style.leading, + maxLineWidth, + fontProperties + ); +}; + +/** + * Applies newlines to a string to have it optimally fit into the horizontal + * bounds set by the Text object's wordWrapWidth property. + * + * @private + * @param {string} text - String to apply word wrapping to + * @param {PIXI.TextStyle} style - the style to use when wrapping + * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring. + * @return {string} New string with new lines applied where required + */ +TextMetrics.wordWrap = function wordWrap (text, style, canvas) +{ + if ( canvas === void 0 ) canvas = TextMetrics._canvas; + + var context = canvas.getContext('2d'); + + var width = 0; + var line = ''; + var lines = ''; + + var cache = {}; + var letterSpacing = style.letterSpacing; + var whiteSpace = style.whiteSpace; + + // How to handle whitespaces + var collapseSpaces = TextMetrics.collapseSpaces(whiteSpace); + var collapseNewlines = TextMetrics.collapseNewlines(whiteSpace); + + // whether or not spaces may be added to the beginning of lines + var canPrependSpaces = !collapseSpaces; + + // There is letterSpacing after every char except the last one + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_! + // so for convenience the above needs to be compared to width + 1 extra letterSpace + // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!_ + // ________________________________________________ + // And then the final space is simply no appended to each line + var wordWrapWidth = style.wordWrapWidth + letterSpacing; + + // break text into words, spaces and newline chars + var tokens = TextMetrics.tokenize(text); + + for (var i = 0; i < tokens.length; i++) + { + // get the word, space or newlineChar + var token = tokens[i]; + + // if word is a new line + if (TextMetrics.isNewline(token)) + { + // keep the new line + if (!collapseNewlines) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = !collapseSpaces; + line = ''; + width = 0; + continue; + } + + // if we should collapse new lines + // we simply convert it into a space + token = ' '; + } + + // if we should collapse repeated whitespaces + if (collapseSpaces) + { + // check both this and the last tokens for spaces + var currIsBreakingSpace = TextMetrics.isBreakingSpace(token); + var lastIsBreakingSpace = TextMetrics.isBreakingSpace(line[line.length - 1]); + + if (currIsBreakingSpace && lastIsBreakingSpace) + { + continue; + } + } + + // get word width from cache if possible + var tokenWidth = TextMetrics.getFromCache(token, letterSpacing, cache, context); + + // word is longer than desired bounds + if (tokenWidth > wordWrapWidth) + { + // if we are not already at the beginning of a line + if (line !== '') + { + // start newlines for overflow words + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + // break large word over multiple lines + if (TextMetrics.canBreakWords(token, style.breakWords)) + { + // break word into characters + var characters = token.split(''); + + // loop the characters + for (var j = 0; j < characters.length; j++) + { + var char = characters[j]; + + var k = 1; + // we are not at the end of the token + + while (characters[j + k]) + { + var nextChar = characters[j + k]; + var lastChar = char[char.length - 1]; + + // should not split chars + if (!TextMetrics.canBreakChars(lastChar, nextChar, token, j, style.breakWords)) + { + // combine chars & move forward one + char += nextChar; + } + else + { + break; + } + + k++; + } + + j += char.length - 1; + + var characterWidth = TextMetrics.getFromCache(char, letterSpacing, cache, context); + + if (characterWidth + width > wordWrapWidth) + { + lines += TextMetrics.addLine(line); + canPrependSpaces = false; + line = ''; + width = 0; + } + + line += char; + width += characterWidth; + } + } + + // run word out of the bounds + else + { + // if there are words in this line already + // finish that line and start a new one + if (line.length > 0) + { + lines += TextMetrics.addLine(line); + line = ''; + width = 0; + } + + var isLastToken = i === tokens.length - 1; + + // give it its own line if it's not the end + lines += TextMetrics.addLine(token, !isLastToken); + canPrependSpaces = false; + line = ''; + width = 0; + } + } + + // word could fit + else + { + // word won't fit because of existing words + // start a new line + if (tokenWidth + width > wordWrapWidth) + { + // if its a space we don't want it + canPrependSpaces = false; + + // add a new line + lines += TextMetrics.addLine(line); + + // start a new line + line = ''; + width = 0; + } + + // don't add spaces to the beginning of lines + if (line.length > 0 || !TextMetrics.isBreakingSpace(token) || canPrependSpaces) + { + // add the word to the current line + line += token; + + // update width counter + width += tokenWidth; + } + } + } + + lines += TextMetrics.addLine(line, false); + + return lines; +}; + +/** + * Convienience function for logging each line added during the wordWrap + * method + * + * @private + * @param {string} line - The line of text to add + * @param {boolean} newLine - Add new line character to end + * @return {string} A formatted line + */ +TextMetrics.addLine = function addLine (line, newLine) +{ + if ( newLine === void 0 ) newLine = true; + + line = TextMetrics.trimRight(line); + + line = (newLine) ? (line + "\n") : line; + + return line; +}; + +/** + * Gets & sets the widths of calculated characters in a cache object + * + * @private + * @param {string} key The key + * @param {number} letterSpacing The letter spacing + * @param {object} cache The cache + * @param {CanvasRenderingContext2D} context The canvas context + * @return {number} The from cache. + */ +TextMetrics.getFromCache = function getFromCache (key, letterSpacing, cache, context) +{ + var width = cache[key]; + + if (width === undefined) + { + var spacing = ((key.length) * letterSpacing); + + width = context.measureText(key).width + spacing; + cache[key] = width; + } + + return width; +}; + +/** + * Determines whether we should collapse breaking spaces + * + * @private + * @param {string} whiteSpace The TextStyle property whiteSpace + * @return {boolean} should collapse + */ +TextMetrics.collapseSpaces = function collapseSpaces (whiteSpace) +{ + return (whiteSpace === 'normal' || whiteSpace === 'pre-line'); +}; + +/** + * Determines whether we should collapse newLine chars + * + * @private + * @param {string} whiteSpace The white space + * @return {boolean} should collapse + */ +TextMetrics.collapseNewlines = function collapseNewlines (whiteSpace) +{ + return (whiteSpace === 'normal'); +}; + +/** + * trims breaking whitespaces from string + * + * @private + * @param {string} text The text + * @return {string} trimmed string + */ +TextMetrics.trimRight = function trimRight (text) +{ + if (typeof text !== 'string') + { + return ''; + } + + for (var i = text.length - 1; i >= 0; i--) + { + var char = text[i]; + + if (!TextMetrics.isBreakingSpace(char)) + { + break; + } + + text = text.slice(0, -1); + } + + return text; +}; + +/** + * Determines if char is a newline. + * + * @private + * @param {string} char The character + * @return {boolean} True if newline, False otherwise. + */ +TextMetrics.isNewline = function isNewline (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._newlines.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Determines if char is a breaking whitespace. + * + * @private + * @param {string} char The character + * @return {boolean} True if whitespace, False otherwise. + */ +TextMetrics.isBreakingSpace = function isBreakingSpace (char) +{ + if (typeof char !== 'string') + { + return false; + } + + return (TextMetrics._breakingSpaces.indexOf(char.charCodeAt(0)) >= 0); +}; + +/** + * Splits a string into words, breaking-spaces and newLine characters + * + * @private + * @param {string} text The text + * @return {string[]} A tokenized array + */ +TextMetrics.tokenize = function tokenize (text) +{ + var tokens = []; + var token = ''; + + if (typeof text !== 'string') + { + return tokens; + } + + for (var i = 0; i < text.length; i++) + { + var char = text[i]; + + if (TextMetrics.isBreakingSpace(char) || TextMetrics.isNewline(char)) + { + if (token !== '') + { + tokens.push(token); + token = ''; + } + + tokens.push(char); + + continue; + } + + token += char; + } + + if (token !== '') + { + tokens.push(token); + } + + return tokens; +}; + +/** + * This method exists to be easily overridden + * It allows one to customise which words should break + * Examples are if the token is CJK or numbers. + * It must return a boolean. + * + * @private + * @param {string} token The token + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakWords = function canBreakWords (token, breakWords) +{ + return breakWords; +}; + +/** + * This method exists to be easily overridden + * It allows one to determine whether a pair of characters + * should be broken by newlines + * For example certain characters in CJK langs or numbers. + * It must return a boolean. + * + * @private + * @param {string} char The character + * @param {string} nextChar The next character + * @param {string} token The token/word the characters are from + * @param {number} index The index in the token of the char + * @param {boolean} breakWords The style attr break words + * @return {boolean} whether to break word or not + */ +TextMetrics.canBreakChars = function canBreakChars (char, nextChar, token, index, breakWords) // eslint-disable-line no-unused-vars +{ + return true; +}; + +/** + * Calculates the ascent, descent and fontSize of a given font-style + * + * @static + * @param {string} font - String representing the style of the font + * @return {PIXI.IFontMetrics} Font properties object + */ +TextMetrics.measureFont = function measureFont (font) +{ + // as this method is used for preparing assets, don't recalculate things if we don't need to + if (TextMetrics._fonts[font]) + { + return TextMetrics._fonts[font]; + } + + var properties = {}; + + var canvas = TextMetrics._canvas; + var context = TextMetrics._context; + + context.font = font; + + var metricsString = TextMetrics.METRICS_STRING + TextMetrics.BASELINE_SYMBOL; + var width = Math.ceil(context.measureText(metricsString).width); + var baseline = Math.ceil(context.measureText(TextMetrics.BASELINE_SYMBOL).width); + var height = 2 * baseline; + + baseline = baseline * TextMetrics.BASELINE_MULTIPLIER | 0; + + canvas.width = width; + canvas.height = height; + + context.fillStyle = '#f00'; + context.fillRect(0, 0, width, height); + + context.font = font; + + context.textBaseline = 'alphabetic'; + context.fillStyle = '#000'; + context.fillText(metricsString, 0, baseline); + + var imagedata = context.getImageData(0, 0, width, height).data; + var pixels = imagedata.length; + var line = width * 4; + + var i = 0; + var idx = 0; + var stop = false; + + // ascent. scan from top to bottom until we find a non red pixel + for (i = 0; i < baseline; ++i) + { + for (var j = 0; j < line; j += 4) + { + if (imagedata[idx + j] !== 255) + { + stop = true; + break; + } + } + if (!stop) + { + idx += line; + } + else + { + break; + } + } + + properties.ascent = baseline - i; + + idx = pixels - line; + stop = false; + + // descent. scan from bottom to top until we find a non red pixel + for (i = height; i > baseline; --i) + { + for (var j$1 = 0; j$1 < line; j$1 += 4) + { + if (imagedata[idx + j$1] !== 255) + { + stop = true; + break; + } + } + + if (!stop) + { + idx -= line; + } + else + { + break; + } + } + + properties.descent = i - baseline; + properties.fontSize = properties.ascent + properties.descent; + + TextMetrics._fonts[font] = properties; + + return properties; +}; + +/** + * Clear font metrics in metrics cache. + * + * @static + * @param {string} [font] - font name. If font name not set then clear cache for all fonts. + */ +TextMetrics.clearMetrics = function clearMetrics (font) +{ + if ( font === void 0 ) font = ''; + + if (font) + { + delete TextMetrics._fonts[font]; + } + else + { + TextMetrics._fonts = {}; + } +}; + +/** + * Internal return object for {@link PIXI.TextMetrics.measureFont `TextMetrics.measureFont`}. + * + * @typedef {object} FontMetrics + * @property {number} ascent - The ascent distance + * @property {number} descent - The descent distance + * @property {number} fontSize - Font size from ascent to descent + * @memberof PIXI.TextMetrics + * @private + */ + +var canvas = (function () { + try + { + // OffscreenCanvas2D measureText can be up to 40% faster. + var c = new OffscreenCanvas(0, 0); + + return c.getContext('2d') ? c : document.createElement('canvas'); + } + catch (ex) + { + return document.createElement('canvas'); + } +})(); + +canvas.width = canvas.height = 10; + +/** + * Cached canvas element for measuring text + * + * @memberof PIXI.TextMetrics + * @type {HTMLCanvasElement} + * @private + */ +TextMetrics._canvas = canvas; + +/** + * Cache for context to use. + * + * @memberof PIXI.TextMetrics + * @type {CanvasRenderingContext2D} + * @private + */ +TextMetrics._context = canvas.getContext('2d'); + +/** + * Cache of {@see PIXI.TextMetrics.FontMetrics} objects. + * + * @memberof PIXI.TextMetrics + * @type {Object} + * @private + */ +TextMetrics._fonts = {}; + +/** + * String used for calculate font metrics. + * These characters are all tall to help calculate the height required for text. + * + * @static + * @memberof PIXI.TextMetrics + * @name METRICS_STRING + * @type {string} + * @default |ÉqÅ + */ +TextMetrics.METRICS_STRING = '|ÉqÅ'; + +/** + * Baseline symbol for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_SYMBOL + * @type {string} + * @default M + */ +TextMetrics.BASELINE_SYMBOL = 'M'; + +/** + * Baseline multiplier for calculate font metrics. + * + * @static + * @memberof PIXI.TextMetrics + * @name BASELINE_MULTIPLIER + * @type {number} + * @default 1.4 + */ +TextMetrics.BASELINE_MULTIPLIER = 1.4; + +/** + * Cache of new line chars. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._newlines = [ + 0x000A, // line feed + 0x000D ]; + +/** + * Cache of breaking spaces. + * + * @memberof PIXI.TextMetrics + * @type {number[]} + * @private + */ +TextMetrics._breakingSpaces = [ + 0x0009, // character tabulation + 0x0020, // space + 0x2000, // en quad + 0x2001, // em quad + 0x2002, // en space + 0x2003, // em space + 0x2004, // three-per-em space + 0x2005, // four-per-em space + 0x2006, // six-per-em space + 0x2008, // punctuation space + 0x2009, // thin space + 0x200A, // hair space + 0x205F, // medium mathematical space + 0x3000 ]; + +/** + * A number, or a string containing a number. + * + * @memberof PIXI + * @typedef IFontMetrics + * @property {number} ascent - Font ascent + * @property {number} descent - Font descent + * @property {number} fontSize - Font size + */ + +/* eslint max-depth: [2, 8] */ + +var defaultDestroyOptions = { + texture: true, + children: false, + baseTexture: true, +}; + +/** + * A Text Object will create a line or multiple lines of text. + * + * The text is created using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API). + * + * The primary advantage of this class over BitmapText is that you have great control over the style of the next, + * which you can change at runtime. + * + * The primary disadvantages is that each piece of text has it's own texture, which can use more memory. + * When text changes, this texture has to be re-generated and re-uploaded to the GPU, taking up time. + * + * To split a line you can use '\n' in your text string, or, on the `style` object, + * change its `wordWrap` property to true and and give the `wordWrapWidth` property a value. + * + * A Text can be created directly from a string and a style object, + * which can be generated [here](https://pixijs.io/pixi-text-style). + * + * ```js + * let text = new PIXI.Text('This is a PixiJS text',{fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'}); + * ``` + * + * @class + * @extends PIXI.Sprite + * @memberof PIXI + */ +var Text = /*@__PURE__*/(function (Sprite) { + function Text(text, style, canvas) + { + canvas = canvas || document.createElement('canvas'); + + canvas.width = 3; + canvas.height = 3; + + var texture = Texture.from(canvas); + + texture.orig = new Rectangle(); + texture.trim = new Rectangle(); + + Sprite.call(this, texture); + + /** + * The canvas element that everything is drawn to + * + * @member {HTMLCanvasElement} + */ + this.canvas = canvas; + + /** + * The canvas 2d context that everything is drawn with + * @member {CanvasRenderingContext2D} + */ + this.context = this.canvas.getContext('2d'); + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + this._resolution = settings.RESOLUTION; + this._autoResolution = true; + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = null; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._style = null; + /** + * Private listener to track style changes. + * + * @member {Function} + * @private + */ + this._styleListener = null; + + /** + * Private tracker for the current font. + * + * @member {string} + * @private + */ + this._font = ''; + + this.text = text; + this.style = style; + + this.localStyleID = -1; + } + + if ( Sprite ) Text.__proto__ = Sprite; + Text.prototype = Object.create( Sprite && Sprite.prototype ); + Text.prototype.constructor = Text; + + var prototypeAccessors = { width: { configurable: true },height: { configurable: true },style: { configurable: true },text: { configurable: true },resolution: { configurable: true } }; + + /** + * Renders text and updates it when needed. + * + * @private + * @param {boolean} respectDirty - Whether to abort updating the text if the Text isn't dirty and the function is called. + */ + Text.prototype.updateText = function updateText (respectDirty) + { + var style = this._style; + + // check if style has changed.. + if (this.localStyleID !== style.styleID) + { + this.dirty = true; + this.localStyleID = style.styleID; + } + + if (!this.dirty && respectDirty) + { + return; + } + + this._font = this._style.toFontString(); + + var context = this.context; + var measured = TextMetrics.measureText(this._text || ' ', this._style, this._style.wordWrap, this.canvas); + var width = measured.width; + var height = measured.height; + var lines = measured.lines; + var lineHeight = measured.lineHeight; + var lineWidths = measured.lineWidths; + var maxLineWidth = measured.maxLineWidth; + var fontProperties = measured.fontProperties; + + this.canvas.width = Math.ceil((Math.max(1, width) + (style.padding * 2)) * this._resolution); + this.canvas.height = Math.ceil((Math.max(1, height) + (style.padding * 2)) * this._resolution); + + context.scale(this._resolution, this._resolution); + + context.clearRect(0, 0, this.canvas.width, this.canvas.height); + + context.font = this._font; + context.lineWidth = style.strokeThickness; + context.textBaseline = style.textBaseline; + context.lineJoin = style.lineJoin; + context.miterLimit = style.miterLimit; + + var linePositionX; + var linePositionY; + + // require 2 passes if a shadow; the first to draw the drop shadow, the second to draw the text + var passesCount = style.dropShadow ? 2 : 1; + + // For v4, we drew text at the colours of the drop shadow underneath the normal text. This gave the correct zIndex, + // but features such as alpha and shadowblur did not look right at all, since we were using actual text as a shadow. + // + // For v5.0.0, we moved over to just use the canvas API for drop shadows, which made them look much nicer and more + // visually please, but now because the stroke is drawn and then the fill, drop shadows would appear on both the fill + // and the stroke; and fill drop shadows would appear over the top of the stroke. + // + // For v5.1.1, the new route is to revert to v4 style of drawing text first to get the drop shadows underneath normal + // text, but instead drawing text in the correct location, we'll draw it off screen (-paddingY), and then adjust the + // drop shadow so only that appears on screen (+paddingY). Now we'll have the correct draw order of the shadow + // beneath the text, whilst also having the proper text shadow styling. + for (var i = 0; i < passesCount; ++i) + { + var isShadowPass = style.dropShadow && i === 0; + var dsOffsetText = isShadowPass ? height * 2 : 0; // we only want the drop shadow, so put text way off-screen + var dsOffsetShadow = dsOffsetText * this.resolution; + + if (isShadowPass) + { + // On Safari, text with gradient and drop shadows together do not position correctly + // if the scale of the canvas is not 1: https://bugs.webkit.org/show_bug.cgi?id=197689 + // Therefore we'll set the styles to be a plain black whilst generating this drop shadow + context.fillStyle = 'black'; + context.strokeStyle = 'black'; + + var dropShadowColor = style.dropShadowColor; + var rgb = hex2rgb(typeof dropShadowColor === 'number' ? dropShadowColor : string2hex(dropShadowColor)); + + context.shadowColor = "rgba(" + (rgb[0] * 255) + "," + (rgb[1] * 255) + "," + (rgb[2] * 255) + "," + (style.dropShadowAlpha) + ")"; + context.shadowBlur = style.dropShadowBlur; + context.shadowOffsetX = Math.cos(style.dropShadowAngle) * style.dropShadowDistance; + context.shadowOffsetY = (Math.sin(style.dropShadowAngle) * style.dropShadowDistance) + dsOffsetShadow; + } + else + { + // set canvas text styles + context.fillStyle = this._generateFillStyle(style, lines); + context.strokeStyle = style.stroke; + + context.shadowColor = 0; + context.shadowBlur = 0; + context.shadowOffsetX = 0; + context.shadowOffsetY = 0; + } + + // draw lines line by line + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + linePositionX = style.strokeThickness / 2; + linePositionY = ((style.strokeThickness / 2) + (i$1 * lineHeight)) + fontProperties.ascent; + + if (style.align === 'right') + { + linePositionX += maxLineWidth - lineWidths[i$1]; + } + else if (style.align === 'center') + { + linePositionX += (maxLineWidth - lineWidths[i$1]) / 2; + } + + if (style.stroke && style.strokeThickness) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText, + true + ); + } + + if (style.fill) + { + this.drawLetterSpacing( + lines[i$1], + linePositionX + style.padding, + linePositionY + style.padding - dsOffsetText + ); + } + } + } + + this.updateTexture(); + }; + + /** + * Render the text with letter-spacing. + * @param {string} text - The text to draw + * @param {number} x - Horizontal position to draw the text + * @param {number} y - Vertical position to draw the text + * @param {boolean} [isStroke=false] - Is this drawing for the outside stroke of the + * text? If not, it's for the inside fill + * @private + */ + Text.prototype.drawLetterSpacing = function drawLetterSpacing (text, x, y, isStroke) + { + if ( isStroke === void 0 ) isStroke = false; + + var style = this._style; + + // letterSpacing of 0 means normal + var letterSpacing = style.letterSpacing; + + if (letterSpacing === 0) + { + if (isStroke) + { + this.context.strokeText(text, x, y); + } + else + { + this.context.fillText(text, x, y); + } + + return; + } + + var currentPosition = x; + + // Using Array.from correctly splits characters whilst keeping emoji together. + // This is not supported on IE as it requires ES6, so regular text splitting occurs. + // This also doesn't account for emoji that are multiple emoji put together to make something else. + // Handling all of this would require a big library itself. + // https://medium.com/@giltayar/iterating-over-emoji-characters-the-es6-way-f06e4589516 + // https://github.com/orling/grapheme-splitter + var stringArray = Array.from ? Array.from(text) : text.split(''); + var previousWidth = this.context.measureText(text).width; + var currentWidth = 0; + + for (var i = 0; i < stringArray.length; ++i) + { + var currentChar = stringArray[i]; + + if (isStroke) + { + this.context.strokeText(currentChar, currentPosition, y); + } + else + { + this.context.fillText(currentChar, currentPosition, y); + } + currentWidth = this.context.measureText(text.substring(i + 1)).width; + currentPosition += previousWidth - currentWidth + letterSpacing; + previousWidth = currentWidth; + } + }; + + /** + * Updates texture size based on canvas size + * + * @private + */ + Text.prototype.updateTexture = function updateTexture () + { + var canvas = this.canvas; + + if (this._style.trim) + { + var trimmed = trimCanvas(canvas); + + if (trimmed.data) + { + canvas.width = trimmed.width; + canvas.height = trimmed.height; + this.context.putImageData(trimmed.data, 0, 0); + } + } + + var texture = this._texture; + var style = this._style; + var padding = style.trim ? 0 : style.padding; + var baseTexture = texture.baseTexture; + + texture.trim.width = texture._frame.width = Math.ceil(canvas.width / this._resolution); + texture.trim.height = texture._frame.height = Math.ceil(canvas.height / this._resolution); + texture.trim.x = -padding; + texture.trim.y = -padding; + + texture.orig.width = texture._frame.width - (padding * 2); + texture.orig.height = texture._frame.height - (padding * 2); + + // call sprite onTextureUpdate to update scale if _width or _height were set + this._onTextureUpdate(); + + baseTexture.setRealSize(canvas.width, canvas.height, this._resolution); + + this.dirty = false; + }; + + /** + * Renders the object using the WebGL renderer + * + * @private + * @param {PIXI.Renderer} renderer - The renderer + */ + Text.prototype._render = function _render (renderer) + { + if (this._autoResolution && this._resolution !== renderer.resolution) + { + this._resolution = renderer.resolution; + this.dirty = true; + } + + this.updateText(true); + + Sprite.prototype._render.call(this, renderer); + }; + + /** + * Gets the local bounds of the text object. + * + * @param {PIXI.Rectangle} rect - The output rectangle. + * @return {PIXI.Rectangle} The bounds. + */ + Text.prototype.getLocalBounds = function getLocalBounds (rect) + { + this.updateText(true); + + return Sprite.prototype.getLocalBounds.call(this, rect); + }; + + /** + * calculates the bounds of the Text as a rectangle. The bounds calculation takes the worldTransform into account. + * @protected + */ + Text.prototype._calculateBounds = function _calculateBounds () + { + this.updateText(true); + this.calculateVertices(); + // if we have already done this on THIS frame. + this._bounds.addQuad(this.vertexData); + }; + + /** + * Method to be called upon a TextStyle change. + * @private + */ + Text.prototype._onStyleChange = function _onStyleChange () + { + this.dirty = true; + }; + + /** + * Generates the fill style. Can automatically generate a gradient based on the fill style being an array + * + * @private + * @param {object} style - The style. + * @param {string[]} lines - The lines of text. + * @return {string|number|CanvasGradient} The fill style + */ + Text.prototype._generateFillStyle = function _generateFillStyle (style, lines) + { + if (!Array.isArray(style.fill)) + { + return style.fill; + } + else if (style.fill.length === 1) + { + return style.fill[0]; + } + + // the gradient will be evenly spaced out according to how large the array is. + // ['#FF0000', '#00FF00', '#0000FF'] would created stops at 0.25, 0.5 and 0.75 + var gradient; + var totalIterations; + var currentIteration; + var stop; + + var width = Math.ceil(this.canvas.width / this._resolution); + var height = Math.ceil(this.canvas.height / this._resolution); + + // make a copy of the style settings, so we can manipulate them later + var fill = style.fill.slice(); + var fillGradientStops = style.fillGradientStops.slice(); + + // wanting to evenly distribute the fills. So an array of 4 colours should give fills of 0.25, 0.5 and 0.75 + if (!fillGradientStops.length) + { + var lengthPlus1 = fill.length + 1; + + for (var i = 1; i < lengthPlus1; ++i) + { + fillGradientStops.push(i / lengthPlus1); + } + } + + // stop the bleeding of the last gradient on the line above to the top gradient of the this line + // by hard defining the first gradient colour at point 0, and last gradient colour at point 1 + fill.unshift(style.fill[0]); + fillGradientStops.unshift(0); + + fill.push(style.fill[style.fill.length - 1]); + fillGradientStops.push(1); + + if (style.fillGradientType === TEXT_GRADIENT.LINEAR_VERTICAL) + { + // start the gradient at the top center of the canvas, and end at the bottom middle of the canvas + gradient = this.context.createLinearGradient(width / 2, 0, width / 2, height); + + // we need to repeat the gradient so that each individual line of text has the same vertical gradient effect + // ['#FF0000', '#00FF00', '#0000FF'] over 2 lines would create stops at 0.125, 0.25, 0.375, 0.625, 0.75, 0.875 + totalIterations = (fill.length + 1) * lines.length; + currentIteration = 0; + for (var i$1 = 0; i$1 < lines.length; i$1++) + { + currentIteration += 1; + for (var j = 0; j < fill.length; j++) + { + if (typeof fillGradientStops[j] === 'number') + { + stop = (fillGradientStops[j] / lines.length) + (i$1 / lines.length); + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[j]); + currentIteration++; + } + } + } + else + { + // start the gradient at the center left of the canvas, and end at the center right of the canvas + gradient = this.context.createLinearGradient(0, height / 2, width, height / 2); + + // can just evenly space out the gradients in this case, as multiple lines makes no difference + // to an even left to right gradient + totalIterations = fill.length + 1; + currentIteration = 1; + + for (var i$2 = 0; i$2 < fill.length; i$2++) + { + if (typeof fillGradientStops[i$2] === 'number') + { + stop = fillGradientStops[i$2]; + } + else + { + stop = currentIteration / totalIterations; + } + gradient.addColorStop(stop, fill[i$2]); + currentIteration++; + } + } + + return gradient; + }; + + /** + * Destroys this text object. + * Note* Unlike a Sprite, a Text object will automatically destroy its baseTexture and texture as + * the majority of the time the texture will not be shared with any other Sprites. + * + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [options.children=false] - if set to true, all the children will have their + * destroy method called as well. 'options' will be passed on to those calls. + * @param {boolean} [options.texture=true] - Should it destroy the current texture of the sprite as well + * @param {boolean} [options.baseTexture=true] - Should it destroy the base texture of the sprite as well + */ + Text.prototype.destroy = function destroy (options) + { + if (typeof options === 'boolean') + { + options = { children: options }; + } + + options = Object.assign({}, defaultDestroyOptions, options); + + Sprite.prototype.destroy.call(this, options); + + // make sure to reset the the context and canvas.. dont want this hanging around in memory! + this.context = null; + this.canvas = null; + + this._style = null; + }; + + /** + * The width of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.width.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.x) * this._texture.orig.width; + }; + + prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.x) || 1; + + this.scale.x = s * value / this._texture.orig.width; + this._width = value; + }; + + /** + * The height of the Text, setting this will actually modify the scale to achieve the value set + * + * @member {number} + */ + prototypeAccessors.height.get = function () + { + this.updateText(true); + + return Math.abs(this.scale.y) * this._texture.orig.height; + }; + + prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc + { + this.updateText(true); + + var s = sign$1(this.scale.y) || 1; + + this.scale.y = s * value / this._texture.orig.height; + this._height = value; + }; + + /** + * Set the style of the text. Set up an event listener to listen for changes on the style + * object and mark the text as dirty. + * + * @member {object|PIXI.TextStyle} + */ + prototypeAccessors.style.get = function () + { + return this._style; + }; + + prototypeAccessors.style.set = function (style) // eslint-disable-line require-jsdoc + { + style = style || {}; + + if (style instanceof TextStyle) + { + this._style = style; + } + else + { + this._style = new TextStyle(style); + } + + this.localStyleID = -1; + this.dirty = true; + }; + + /** + * Set the copy for the text object. To split a line you can use '\n'. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The resolution / device pixel ratio of the canvas. + * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually. + * @member {number} + * @default 1 + */ + prototypeAccessors.resolution.get = function () + { + return this._resolution; + }; + + prototypeAccessors.resolution.set = function (value) // eslint-disable-line require-jsdoc + { + this._autoResolution = false; + + if (this._resolution === value) + { + return; + } + + this._resolution = value; + this.dirty = true; + }; + + Object.defineProperties( Text.prototype, prototypeAccessors ); + + return Text; +}(Sprite)); + +/*! + * @pixi/prepare - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/prepare is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Default number of uploads per frame using prepare plugin. + * + * @static + * @memberof PIXI.settings + * @name UPLOADS_PER_FRAME + * @type {number} + * @default 4 + */ +settings.UPLOADS_PER_FRAME = 4; + +/** + * CountLimiter limits the number of items handled by a {@link PIXI.prepare.BasePrepare} to a specified + * number of items per frame. + * + * @class + * @memberof PIXI.prepare + */ +var CountLimiter = function CountLimiter(maxItemsPerFrame) +{ + /** + * The maximum number of items that can be prepared each frame. + * @type {number} + * @private + */ + this.maxItemsPerFrame = maxItemsPerFrame; + /** + * The number of items that can be prepared in the current frame. + * @type {number} + * @private + */ + this.itemsLeft = 0; +}; + +/** + * Resets any counting properties to start fresh on a new frame. + */ +CountLimiter.prototype.beginFrame = function beginFrame () +{ + this.itemsLeft = this.maxItemsPerFrame; +}; + +/** + * Checks to see if another item can be uploaded. This should only be called once per item. + * @return {boolean} If the item is allowed to be uploaded. + */ +CountLimiter.prototype.allowedToUpload = function allowedToUpload () +{ + return this.itemsLeft-- > 0; +}; + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * BasePrepare handles basic queuing functionality and is extended by + * {@link PIXI.prepare.Prepare} and {@link PIXI.prepare.CanvasPrepare} + * to provide preparation capabilities specific to their respective renderers. + * + * @example + * // Create a sprite + * const sprite = PIXI.Sprite.from('something.png'); + * + * // Load object into GPU + * app.renderer.plugins.prepare.upload(sprite, () => { + * + * //Texture(s) has been uploaded to GPU + * app.stage.addChild(sprite); + * + * }) + * + * @abstract + * @class + * @memberof PIXI.prepare + */ +var BasePrepare = function BasePrepare(renderer) +{ + var this$1 = this; + + /** + * The limiter to be used to control how quickly items are prepared. + * @type {PIXI.prepare.CountLimiter|PIXI.prepare.TimeLimiter} + */ + this.limiter = new CountLimiter(settings.UPLOADS_PER_FRAME); + + /** + * Reference to the renderer. + * @type {PIXI.AbstractRenderer} + * @protected + */ + this.renderer = renderer; + + /** + * The only real difference between CanvasPrepare and Prepare is what they pass + * to upload hooks. That different parameter is stored here. + * @type {PIXI.prepare.CanvasPrepare|PIXI.Renderer} + * @protected + */ + this.uploadHookHelper = null; + + /** + * Collection of items to uploads at once. + * @type {Array<*>} + * @private + */ + this.queue = []; + + /** + * Collection of additional hooks for finding assets. + * @type {Array} + * @private + */ + this.addHooks = []; + + /** + * Collection of additional hooks for processing assets. + * @type {Array} + * @private + */ + this.uploadHooks = []; + + /** + * Callback to call after completed. + * @type {Array} + * @private + */ + this.completes = []; + + /** + * If prepare is ticking (running). + * @type {boolean} + * @private + */ + this.ticking = false; + + /** + * 'bound' call for prepareItems(). + * @type {Function} + * @private + */ + this.delayedTick = function () { + // unlikely, but in case we were destroyed between tick() and delayedTick() + if (!this$1.queue) + { + return; + } + this$1.prepareItems(); + }; + + // hooks to find the correct texture + this.registerFindHook(findText); + this.registerFindHook(findTextStyle); + this.registerFindHook(findMultipleBaseTextures); + this.registerFindHook(findBaseTexture); + this.registerFindHook(findTexture); + + // upload hooks + this.registerUploadHook(drawText); + this.registerUploadHook(calculateTextStyle); +}; + +/** + * Upload all the textures and graphics to the GPU. + * + * @param {Function|PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text} item - + * Either the container or display object to search for items to upload, the items to upload themselves, + * or the callback function, if items have been added using `prepare.add`. + * @param {Function} [done] - Optional callback when all queued uploads have completed + */ +BasePrepare.prototype.upload = function upload (item, done) +{ + if (typeof item === 'function') + { + done = item; + item = null; + } + + // If a display object, search for items + // that we could upload + if (item) + { + this.add(item); + } + + // Get the items for upload from the display + if (this.queue.length) + { + if (done) + { + this.completes.push(done); + } + + if (!this.ticking) + { + this.ticking = true; + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } + } + else if (done) + { + done(); + } +}; + +/** + * Handle tick update + * + * @private + */ +BasePrepare.prototype.tick = function tick () +{ + setTimeout(this.delayedTick, 0); +}; + +/** + * Actually prepare items. This is handled outside of the tick because it will take a while + * and we do NOT want to block the current animation frame from rendering. + * + * @private + */ +BasePrepare.prototype.prepareItems = function prepareItems () +{ + this.limiter.beginFrame(); + // Upload the graphics + while (this.queue.length && this.limiter.allowedToUpload()) + { + var item = this.queue[0]; + var uploaded = false; + + if (item && !item._destroyed) + { + for (var i = 0, len = this.uploadHooks.length; i < len; i++) + { + if (this.uploadHooks[i](this.uploadHookHelper, item)) + { + this.queue.shift(); + uploaded = true; + break; + } + } + } + + if (!uploaded) + { + this.queue.shift(); + } + } + + // We're finished + if (!this.queue.length) + { + this.ticking = false; + + var completes = this.completes.slice(0); + + this.completes.length = 0; + + for (var i$1 = 0, len$1 = completes.length; i$1 < len$1; i$1++) + { + completes[i$1](); + } + } + else + { + // if we are not finished, on the next rAF do this again + Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY); + } +}; + +/** + * Adds hooks for finding items. + * + * @param {Function} addHook - Function call that takes two parameters: `item:*, queue:Array` + * function must return `true` if it was able to add item to the queue. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerFindHook = function registerFindHook (addHook) +{ + if (addHook) + { + this.addHooks.push(addHook); + } + + return this; +}; + +/** + * Adds hooks for uploading items. + * + * @param {Function} uploadHook - Function call that takes two parameters: `prepare:CanvasPrepare, item:*` and + * function must return `true` if it was able to handle upload of item. + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.registerUploadHook = function registerUploadHook (uploadHook) +{ + if (uploadHook) + { + this.uploadHooks.push(uploadHook); + } + + return this; +}; + +/** + * Manually add an item to the uploading queue. + * + * @param {PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text|*} item - Object to + * add to the queue + * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining. + */ +BasePrepare.prototype.add = function add (item) +{ + // Add additional hooks for finding elements on special + // types of objects that + for (var i = 0, len = this.addHooks.length; i < len; i++) + { + if (this.addHooks[i](item, this.queue)) + { + break; + } + } + + // Get children recursively + if (item instanceof Container) + { + for (var i$1 = item.children.length - 1; i$1 >= 0; i$1--) + { + this.add(item.children[i$1]); + } + } + + return this; +}; + +/** + * Destroys the plugin, don't use after this. + * + */ +BasePrepare.prototype.destroy = function destroy () +{ + if (this.ticking) + { + Ticker.system.remove(this.tick, this); + } + this.ticking = false; + this.addHooks = null; + this.uploadHooks = null; + this.renderer = null; + this.completes = null; + this.queue = null; + this.limiter = null; + this.uploadHookHelper = null; +}; + +/** + * Built-in hook to find multiple textures from objects like AnimatedSprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findMultipleBaseTextures(item, queue) +{ + var result = false; + + // Objects with multiple textures + if (item && item._textures && item._textures.length) + { + for (var i = 0; i < item._textures.length; i++) + { + if (item._textures[i] instanceof Texture) + { + var baseTexture = item._textures[i].baseTexture; + + if (queue.indexOf(baseTexture) === -1) + { + queue.push(baseTexture); + result = true; + } + } + } + } + + return result; +} + +/** + * Built-in hook to find BaseTextures from Sprites. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findBaseTexture(item, queue) +{ + // Objects with textures, like Sprites/Text + if (item instanceof BaseTexture) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find textures from objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Texture object was found. + */ +function findTexture(item, queue) +{ + if (item._texture && item._texture instanceof Texture) + { + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to draw PIXI.Text to its texture. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function drawText(helper, item) +{ + if (item instanceof Text) + { + // updating text will return early if it is not dirty + item.updateText(true); + + return true; + } + + return false; +} + +/** + * Built-in hook to calculate a text style for a PIXI.Text object. + * + * @private + * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function calculateTextStyle(helper, item) +{ + if (item instanceof TextStyle) + { + var font = item.toFontString(); + + TextMetrics.measureFont(font); + + return true; + } + + return false; +} + +/** + * Built-in hook to find Text objects. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Text object was found. + */ +function findText(item, queue) +{ + if (item instanceof Text) + { + // push the text style to prepare it - this can be really expensive + if (queue.indexOf(item.style) === -1) + { + queue.push(item.style); + } + // also push the text object so that we can render it (to canvas/texture) if needed + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + // also push the Text's texture for upload to GPU + var texture = item._texture.baseTexture; + + if (queue.indexOf(texture) === -1) + { + queue.push(texture); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find TextStyle objects. + * + * @private + * @param {PIXI.TextStyle} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.TextStyle object was found. + */ +function findTextStyle(item, queue) +{ + if (item instanceof TextStyle) + { + if (queue.indexOf(item) === -1) + { + queue.push(item); + } + + return true; + } + + return false; +} + +/** + * The prepare manager provides functionality to upload content to the GPU. + * + * An instance of this class is automatically created by default, and can be found at `renderer.plugins.prepare` + * + * @class + * @extends PIXI.prepare.BasePrepare + * @memberof PIXI.prepare + */ +var Prepare = /*@__PURE__*/(function (BasePrepare) { + function Prepare(renderer) + { + BasePrepare.call(this, renderer); + + this.uploadHookHelper = this.renderer; + + // Add textures and graphics to upload + this.registerFindHook(findGraphics); + this.registerUploadHook(uploadBaseTextures); + this.registerUploadHook(uploadGraphics); + } + + if ( BasePrepare ) Prepare.__proto__ = BasePrepare; + Prepare.prototype = Object.create( BasePrepare && BasePrepare.prototype ); + Prepare.prototype.constructor = Prepare; + + return Prepare; +}(BasePrepare)); +/** + * Built-in hook to upload PIXI.Texture objects to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadBaseTextures(renderer, item) +{ + if (item instanceof BaseTexture) + { + // if the texture already has a GL texture, then the texture has been prepared or rendered + // before now. If the texture changed, then the changer should be calling texture.update() which + // reuploads the texture without need for preparing it again + if (!item._glTextures[renderer.CONTEXT_UID]) + { + renderer.texture.bind(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to upload PIXI.Graphics to the GPU. + * + * @private + * @param {PIXI.Renderer} renderer - instance of the webgl renderer + * @param {PIXI.DisplayObject} item - Item to check + * @return {boolean} If item was uploaded. + */ +function uploadGraphics(renderer, item) +{ + if (item instanceof Graphics) + { + // if the item is not dirty and already has webgl data, then it got prepared or rendered + // before now and we shouldn't waste time updating it again + if (item.dirty || item.clearDirty || !item._webGL[renderer.plugins.graphics.CONTEXT_UID]) + { + renderer.plugins.graphics.updateGraphics(item); + } + + return true; + } + + return false; +} + +/** + * Built-in hook to find graphics. + * + * @private + * @param {PIXI.DisplayObject} item - Display object to check + * @param {Array<*>} queue - Collection of items to upload + * @return {boolean} if a PIXI.Graphics object was found. + */ +function findGraphics(item, queue) +{ + if (item instanceof Graphics) + { + queue.push(item); + + return true; + } + + return false; +} + +/*! + * @pixi/app - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/app is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Convenience class to create a new PIXI application. + * + * This class automatically creates the renderer, ticker and root container. + * + * @example + * // Create the application + * const app = new PIXI.Application(); + * + * // Add the view to the DOM + * document.body.appendChild(app.view); + * + * // ex, add display objects + * app.stage.addChild(PIXI.Sprite.from('something.png')); + * + * @class + * @memberof PIXI + */ +var Application = function Application(options) +{ + var this$1 = this; + + // The default options + options = Object.assign({ + forceCanvas: false, + }, options); + + /** + * WebGL renderer if available, otherwise CanvasRenderer. + * @member {PIXI.Renderer|PIXI.CanvasRenderer} + */ + this.renderer = autoDetectRenderer(options); + + /** + * The root display container that's rendered. + * @member {PIXI.Container} + */ + this.stage = new Container(); + + // install plugins here + Application._plugins.forEach(function (plugin) { + plugin.init.call(this$1, options); + }); +}; + +var prototypeAccessors$8 = { view: { configurable: true },screen: { configurable: true } }; + +/** + * Register a middleware plugin for the application + * @static + * @param {PIXI.Application.Plugin} plugin - Plugin being installed + */ +Application.registerPlugin = function registerPlugin (plugin) +{ + Application._plugins.push(plugin); +}; + +/** + * Render the current stage. + */ +Application.prototype.render = function render () +{ + this.renderer.render(this.stage); +}; + +/** + * Reference to the renderer's canvas element. + * @member {HTMLCanvasElement} + * @readonly + */ +prototypeAccessors$8.view.get = function () +{ + return this.renderer.view; +}; + +/** + * Reference to the renderer's screen rectangle. Its safe to use as `filterArea` or `hitArea` for the whole screen. + * @member {PIXI.Rectangle} + * @readonly + */ +prototypeAccessors$8.screen.get = function () +{ + return this.renderer.screen; +}; + +/** + * Destroy and don't use after this. + * @param {Boolean} [removeView=false] Automatically remove canvas from DOM. + * @param {object|boolean} [stageOptions] - Options parameter. A boolean will act as if all options + * have been set to that value + * @param {boolean} [stageOptions.children=false] - if set to true, all the children will have their destroy + * method called as well. 'stageOptions' will be passed on to those calls. + * @param {boolean} [stageOptions.texture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the texture of the child sprite + * @param {boolean} [stageOptions.baseTexture=false] - Only used for child Sprites if stageOptions.children is set + * to true. Should it destroy the base texture of the child sprite + */ +Application.prototype.destroy = function destroy (removeView, stageOptions) +{ + var this$1 = this; + + // Destroy plugins in the opposite order + // which they were constructed + var plugins = Application._plugins.slice(0); + + plugins.reverse(); + plugins.forEach(function (plugin) { + plugin.destroy.call(this$1); + }); + + this.stage.destroy(stageOptions); + this.stage = null; + + this.renderer.destroy(removeView); + this.renderer = null; + + this._options = null; +}; + +Object.defineProperties( Application.prototype, prototypeAccessors$8 ); + +/** + * @memberof PIXI.Application + * @typedef {object} Plugin + * @property {function} init - Called when Application is constructed, scoped to Application instance. + * Passes in `options` as the only argument, which are Application constructor options. + * @property {function} destroy - Called when destroying Application, scoped to Application instance + */ + +/** + * Collection of installed plugins. + * @static + * @private + * @type {PIXI.Application.Plugin[]} + */ +Application._plugins = []; + +/** + * Middleware for for Application's resize functionality + * @private + * @class + */ +var ResizePlugin = function ResizePlugin () {}; + +ResizePlugin.init = function init (options) +{ + var this$1 = this; + + /** + * The element or window to resize the application to. + * @type {Window|HTMLElement} + * @name resizeTo + * @memberof PIXI.Application# + */ + Object.defineProperty(this, 'resizeTo', + { + set: function set(dom) + { + window.removeEventListener('resize', this.resize); + this._resizeTo = dom; + if (dom) + { + window.addEventListener('resize', this.resize); + this.resize(); + } + }, + get: function get() + { + return this._resizeTo; + }, + }); + + /** + * If `resizeTo` is set, calling this function + * will resize to the width and height of that element. + * @method PIXI.Application#resize + */ + this.resize = function () { + if (this$1._resizeTo) + { + // Resize to the window + if (this$1._resizeTo === window) + { + this$1.renderer.resize( + window.innerWidth, + window.innerHeight + ); + } + // Resize to other HTML entities + else + { + this$1.renderer.resize( + this$1._resizeTo.clientWidth, + this$1._resizeTo.clientHeight + ); + } + } + }; + + // On resize + this._resizeTo = null; + this.resizeTo = options.resizeTo || null; +}; + +/** + * Clean up the ticker, scoped to application + * @static + * @private + */ +ResizePlugin.destroy = function destroy () +{ + this.resizeTo = null; + this.resize = null; +}; + +Application.registerPlugin(ResizePlugin); + +var parseUri = function parseURI (str, opts) { + opts = opts || {}; + + var o = { + key: ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'], + q: { + name: 'queryKey', + parser: /(?:^|&)([^&=]*)=?([^&]*)/g + }, + parser: { + strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/, + loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/ + } + }; + + var m = o.parser[opts.strictMode ? 'strict' : 'loose'].exec(str); + var uri = {}; + var i = 14; + + while (i--) uri[o.key[i]] = m[i] || ''; + + uri[o.q.name] = {}; + uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) { + if ($1) uri[o.q.name][$1] = $2; + }); + + return uri +}; + +var miniSignals = createCommonjsModule(function (module, exports) { + +Object.defineProperty(exports, '__esModule', { + value: true +}); + +var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + +var MiniSignalBinding = (function () { + function MiniSignalBinding(fn, once, thisArg) { + if (once === undefined) once = false; + + _classCallCheck(this, MiniSignalBinding); + + this._fn = fn; + this._once = once; + this._thisArg = thisArg; + this._next = this._prev = this._owner = null; + } + + _createClass(MiniSignalBinding, [{ + key: 'detach', + value: function detach() { + if (this._owner === null) return false; + this._owner.detach(this); + return true; + } + }]); + + return MiniSignalBinding; +})(); + +function _addMiniSignalBinding(self, node) { + if (!self._head) { + self._head = node; + self._tail = node; + } else { + self._tail._next = node; + node._prev = self._tail; + self._tail = node; + } + + node._owner = self; + + return node; +} + +var MiniSignal = (function () { + function MiniSignal() { + _classCallCheck(this, MiniSignal); + + this._head = this._tail = undefined; + } + + _createClass(MiniSignal, [{ + key: 'handlers', + value: function handlers() { + var exists = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0]; + + var node = this._head; + + if (exists) return !!node; + + var ee = []; + + while (node) { + ee.push(node); + node = node._next; + } + + return ee; + } + }, { + key: 'has', + value: function has(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#has(): First arg must be a MiniSignalBinding object.'); + } + + return node._owner === this; + } + }, { + key: 'dispatch', + value: function dispatch() { + var node = this._head; + + if (!node) return false; + + while (node) { + if (node._once) this.detach(node); + node._fn.apply(node._thisArg, arguments); + node = node._next; + } + + return true; + } + }, { + key: 'add', + value: function add(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#add(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, false, thisArg)); + } + }, { + key: 'once', + value: function once(fn) { + var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1]; + + if (typeof fn !== 'function') { + throw new Error('MiniSignal#once(): First arg must be a Function.'); + } + return _addMiniSignalBinding(this, new MiniSignalBinding(fn, true, thisArg)); + } + }, { + key: 'detach', + value: function detach(node) { + if (!(node instanceof MiniSignalBinding)) { + throw new Error('MiniSignal#detach(): First arg must be a MiniSignalBinding object.'); + } + if (node._owner !== this) return this; + + if (node._prev) node._prev._next = node._next; + if (node._next) node._next._prev = node._prev; + + if (node === this._head) { + this._head = node._next; + if (node._next === null) { + this._tail = null; + } + } else if (node === this._tail) { + this._tail = node._prev; + this._tail._next = null; + } + + node._owner = null; + return this; + } + }, { + key: 'detachAll', + value: function detachAll() { + var node = this._head; + if (!node) return this; + + this._head = this._tail = null; + + while (node) { + node._owner = null; + node = node._next; + } + return this; + } + }]); + + return MiniSignal; +})(); + +MiniSignal.MiniSignalBinding = MiniSignalBinding; + +exports['default'] = MiniSignal; +module.exports = exports['default']; +}); + +var Signal = unwrapExports(miniSignals); + +/*! + * resource-loader - v3.0.1 + * https://github.com/pixijs/pixi-sound + * Compiled Tue, 02 Jul 2019 14:06:18 UTC + * + * resource-loader is licensed under the MIT license. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Smaller version of the async library constructs. + * + * @namespace async + */ + +/** + * Noop function + * + * @ignore + * @function + * @memberof async + */ +function _noop() {} +/* empty */ + +/** + * Iterates an array in series. + * + * @memberof async + * @function eachSeries + * @param {Array.<*>} array - Array to iterate. + * @param {function} iterator - Function to call for each element. + * @param {function} callback - Function to call when done, or on error. + * @param {boolean} [deferNext=false] - Break synchronous each loop by calling next with a setTimeout of 1. + */ + + +function eachSeries(array, iterator, callback, deferNext) { + var i = 0; + var len = array.length; + + (function next(err) { + if (err || i === len) { + if (callback) { + callback(err); + } + + return; + } + + if (deferNext) { + setTimeout(function () { + iterator(array[i++], next); + }, 1); + } else { + iterator(array[i++], next); + } + })(); +} +/** + * Ensures a function is only called once. + * + * @ignore + * @memberof async + * @param {function} fn - The function to wrap. + * @return {function} The wrapping function. + */ + +function onlyOnce(fn) { + return function onceWrapper() { + if (fn === null) { + throw new Error('Callback was already called.'); + } + + var callFn = fn; + fn = null; + callFn.apply(this, arguments); + }; +} +/** + * Async queue implementation, + * + * @memberof async + * @function queue + * @param {function} worker - The worker function to call for each task. + * @param {number} concurrency - How many workers to run in parrallel. + * @return {*} The async queue object. + */ + + +function queue(worker, concurrency) { + if (concurrency == null) { + // eslint-disable-line no-eq-null,eqeqeq + concurrency = 1; + } else if (concurrency === 0) { + throw new Error('Concurrency must not be zero'); + } + + var workers = 0; + var q = { + _tasks: [], + concurrency: concurrency, + saturated: _noop, + unsaturated: _noop, + buffer: concurrency / 4, + empty: _noop, + drain: _noop, + error: _noop, + started: false, + paused: false, + push: function push(data, callback) { + _insert(data, false, callback); + }, + kill: function kill() { + workers = 0; + q.drain = _noop; + q.started = false; + q._tasks = []; + }, + unshift: function unshift(data, callback) { + _insert(data, true, callback); + }, + process: function process() { + while (!q.paused && workers < q.concurrency && q._tasks.length) { + var task = q._tasks.shift(); + + if (q._tasks.length === 0) { + q.empty(); + } + + workers += 1; + + if (workers === q.concurrency) { + q.saturated(); + } + + worker(task.data, onlyOnce(_next(task))); + } + }, + length: function length() { + return q._tasks.length; + }, + running: function running() { + return workers; + }, + idle: function idle() { + return q._tasks.length + workers === 0; + }, + pause: function pause() { + if (q.paused === true) { + return; + } + + q.paused = true; + }, + resume: function resume() { + if (q.paused === false) { + return; + } + + q.paused = false; // Need to call q.process once per concurrent + // worker to preserve full concurrency after pause + + for (var w = 1; w <= q.concurrency; w++) { + q.process(); + } + } + }; + + function _insert(data, insertAtFront, callback) { + if (callback != null && typeof callback !== 'function') { + // eslint-disable-line no-eq-null,eqeqeq + throw new Error('task callback must be a function'); + } + + q.started = true; + + if (data == null && q.idle()) { + // eslint-disable-line no-eq-null,eqeqeq + // call drain immediately if there are no tasks + setTimeout(function () { + return q.drain(); + }, 1); + return; + } + + var item = { + data: data, + callback: typeof callback === 'function' ? callback : _noop + }; + + if (insertAtFront) { + q._tasks.unshift(item); + } else { + q._tasks.push(item); + } + + setTimeout(function () { + return q.process(); + }, 1); + } + + function _next(task) { + return function next() { + workers -= 1; + task.callback.apply(task, arguments); + + if (arguments[0] != null) { + // eslint-disable-line no-eq-null,eqeqeq + q.error(arguments[0], task.data); + } + + if (workers <= q.concurrency - q.buffer) { + q.unsaturated(); + } + + if (q.idle()) { + q.drain(); + } + + q.process(); + }; + } + + return q; +} + +// a simple in-memory cache for resources +var cache = {}; +/** + * A simple in-memory cache for resource. + * + * @memberof middleware + * @function caching + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.caching); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function caching(resource, next) { + var _this = this; + + // if cached, then set data and complete the resource + if (cache[resource.url]) { + resource.data = cache[resource.url]; + resource.complete(); // marks resource load complete and stops processing before middlewares + } // if not cached, wait for complete and store it in the cache. + else { + resource.onComplete.once(function () { + return cache[_this.url] = _this.data; + }); + } + + next(); +} + +function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } +} + +function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + return Constructor; +} + +var useXdr = !!(window.XDomainRequest && !('withCredentials' in new XMLHttpRequest())); +var tempAnchor$1 = null; // some status constants + +var STATUS_NONE = 0; +var STATUS_OK = 200; +var STATUS_EMPTY = 204; +var STATUS_IE_BUG_EMPTY = 1223; +var STATUS_TYPE_OK = 2; // noop + +function _noop$1() {} +/* empty */ + +/** + * Manages the state and loading of a resource and all child resources. + * + * @class + */ + + +var Resource$1 = +/*#__PURE__*/ +function () { + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.LOAD_TYPE} loadType - The load type to set it to. + */ + Resource.setExtensionLoadType = function setExtensionLoadType(extname, loadType) { + setExtMap(Resource._loadTypeMap, extname, loadType); + } + /** + * Sets the load type to be used for a specific extension. + * + * @static + * @param {string} extname - The extension to set the type for, e.g. "png" or "fnt" + * @param {Resource.XHR_RESPONSE_TYPE} xhrType - The xhr type to set it to. + */ + ; + + Resource.setExtensionXhrType = function setExtensionXhrType(extname, xhrType) { + setExtMap(Resource._xhrTypeMap, extname, xhrType); + } + /** + * @param {string} name - The name of the resource to load. + * @param {string|string[]} url - The url for this resource, for audio/video loads you can pass + * an array of sources. + * @param {object} [options] - The options for the load. + * @param {string|boolean} [options.crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @param {number} [options.timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @param {Resource.LOAD_TYPE} [options.loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @param {Resource.XHR_RESPONSE_TYPE} [options.xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @param {Resource.IMetadata} [options.metadata] - Extra configuration for middleware and the Resource object. + */ + ; + + function Resource(name, url, options) { + if (typeof name !== 'string' || typeof url !== 'string') { + throw new Error('Both name and url are required for constructing a resource.'); + } + + options = options || {}; + /** + * The state flags of this resource. + * + * @private + * @member {number} + */ + + this._flags = 0; // set data url flag, needs to be set early for some _determineX checks to work. + + this._setFlag(Resource.STATUS_FLAGS.DATA_URL, url.indexOf('data:') === 0); + /** + * The name of this resource. + * + * @readonly + * @member {string} + */ + + + this.name = name; + /** + * The url used to load this resource. + * + * @readonly + * @member {string} + */ + + this.url = url; + /** + * The extension used to load this resource. + * + * @readonly + * @member {string} + */ + + this.extension = this._getExtension(); + /** + * The data that was loaded by the resource. + * + * @member {any} + */ + + this.data = null; + /** + * Is this request cross-origin? If unset, determined automatically. + * + * @member {string} + */ + + this.crossOrigin = options.crossOrigin === true ? 'anonymous' : options.crossOrigin; + /** + * A timeout in milliseconds for the load. If the load takes longer than this time + * it is cancelled and the load is considered a failure. If this value is set to `0` + * then there is no explicit timeout. + * + * @member {number} + */ + + this.timeout = options.timeout || 0; + /** + * The method of loading to use for this resource. + * + * @member {Resource.LOAD_TYPE} + */ + + this.loadType = options.loadType || this._determineLoadType(); + /** + * The type used to load the resource via XHR. If unset, determined automatically. + * + * @member {string} + */ + + this.xhrType = options.xhrType; + /** + * Extra info for middleware, and controlling specifics about how the resource loads. + * + * Note that if you pass in a `loadElement`, the Resource class takes ownership of it. + * Meaning it will modify it as it sees fit. + * + * @member {Resource.IMetadata} + */ + + this.metadata = options.metadata || {}; + /** + * The error that occurred while loading (if any). + * + * @readonly + * @member {Error} + */ + + this.error = null; + /** + * The XHR object that was used to load this resource. This is only set + * when `loadType` is `Resource.LOAD_TYPE.XHR`. + * + * @readonly + * @member {XMLHttpRequest} + */ + + this.xhr = null; + /** + * The child resources this resource owns. + * + * @readonly + * @member {Resource[]} + */ + + this.children = []; + /** + * The resource type. + * + * @readonly + * @member {Resource.TYPE} + */ + + this.type = Resource.TYPE.UNKNOWN; + /** + * The progress chunk owned by this resource. + * + * @readonly + * @member {number} + */ + + this.progressChunk = 0; + /** + * The `dequeue` method that will be used a storage place for the async queue dequeue method + * used privately by the loader. + * + * @private + * @member {function} + */ + + this._dequeue = _noop$1; + /** + * Used a storage place for the on load binding used privately by the loader. + * + * @private + * @member {function} + */ + + this._onLoadBinding = null; + /** + * The timer for element loads to check if they timeout. + * + * @private + * @member {number} + */ + + this._elementTimer = 0; + /** + * The `complete` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundComplete = this.complete.bind(this); + /** + * The `_onError` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnError = this._onError.bind(this); + /** + * The `_onProgress` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnProgress = this._onProgress.bind(this); + /** + * The `_onTimeout` function bound to this resource's context. + * + * @private + * @member {function} + */ + + this._boundOnTimeout = this._onTimeout.bind(this); // xhr callbacks + + this._boundXhrOnError = this._xhrOnError.bind(this); + this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this); + this._boundXhrOnAbort = this._xhrOnAbort.bind(this); + this._boundXhrOnLoad = this._xhrOnLoad.bind(this); + /** + * Dispatched when the resource beings to load. + * + * The callback looks like {@link Resource.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched each time progress of this resource load updates. + * Not all resources types and loader systems can support this event + * so sometimes it may not be available. If the resource + * is being loaded on a modern browser, using XHR, and the remote server + * properly sets Content-Length headers, then this will be available. + * + * The callback looks like {@link Resource.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once this resource has loaded, if there was an error it will + * be in the `error` property. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); + /** + * Dispatched after this resource has had all the *after* middleware run on it. + * + * The callback looks like {@link Resource.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onAfterMiddleware = new Signal(); + } + /** + * When the resource starts to load. + * + * @memberof Resource + * @callback OnStartSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * When the resource reports loading progress. + * + * @memberof Resource + * @callback OnProgressSignal + * @param {Resource} resource - The resource that the event happened on. + * @param {number} percentage - The progress of the load in the range [0, 1]. + */ + + /** + * When the resource finishes loading. + * + * @memberof Resource + * @callback OnCompleteSignal + * @param {Resource} resource - The resource that the event happened on. + */ + + /** + * @memberof Resource + * @typedef {object} IMetadata + * @property {HTMLImageElement|HTMLAudioElement|HTMLVideoElement} [loadElement=null] - The + * element to use for loading, instead of creating one. + * @property {boolean} [skipSource=false] - Skips adding source(s) to the load element. This + * is useful if you want to pass in a `loadElement` that you already added load sources to. + * @property {string|string[]} [mimeType] - The mime type to use for the source element + * of a video/audio elment. If the urls are an array, you can pass this as an array as well + * where each index is the mime type to use for the corresponding url index. + */ + + /** + * Stores whether or not this url is a data url. + * + * @readonly + * @member {boolean} + */ + + + var _proto = Resource.prototype; + + /** + * Marks the resource as complete. + * + */ + _proto.complete = function complete() { + this._clearEvents(); + + this._finish(); + } + /** + * Aborts the loading of this resource, with an optional message. + * + * @param {string} message - The message to use for the error + */ + ; + + _proto.abort = function abort(message) { + // abort can be called multiple times, ignore subsequent calls. + if (this.error) { + return; + } // store error + + + this.error = new Error(message); // clear events before calling aborts + + this._clearEvents(); // abort the actual loading + + + if (this.xhr) { + this.xhr.abort(); + } else if (this.xdr) { + this.xdr.abort(); + } else if (this.data) { + // single source + if (this.data.src) { + this.data.src = Resource.EMPTY_GIF; + } // multi-source + else { + while (this.data.firstChild) { + this.data.removeChild(this.data.firstChild); + } + } + } // done now. + + + this._finish(); + } + /** + * Kicks off loading of this resource. This method is asynchronous. + * + * @param {Resource.OnCompleteSignal} [cb] - Optional callback to call once the resource is loaded. + */ + ; + + _proto.load = function load(cb) { + var _this = this; + + if (this.isLoading) { + return; + } + + if (this.isComplete) { + if (cb) { + setTimeout(function () { + return cb(_this); + }, 1); + } + + return; + } else if (cb) { + this.onComplete.once(cb); + } + + this._setFlag(Resource.STATUS_FLAGS.LOADING, true); + + this.onStart.dispatch(this); // if unset, determine the value + + if (this.crossOrigin === false || typeof this.crossOrigin !== 'string') { + this.crossOrigin = this._determineCrossOrigin(this.url); + } + + switch (this.loadType) { + case Resource.LOAD_TYPE.IMAGE: + this.type = Resource.TYPE.IMAGE; + + this._loadElement('image'); + + break; + + case Resource.LOAD_TYPE.AUDIO: + this.type = Resource.TYPE.AUDIO; + + this._loadSourceElement('audio'); + + break; + + case Resource.LOAD_TYPE.VIDEO: + this.type = Resource.TYPE.VIDEO; + + this._loadSourceElement('video'); + + break; + + case Resource.LOAD_TYPE.XHR: + /* falls through */ + + default: + if (useXdr && this.crossOrigin) { + this._loadXdr(); + } else { + this._loadXhr(); + } + + break; + } + } + /** + * Checks if the flag is set. + * + * @private + * @param {number} flag - The flag to check. + * @return {boolean} True if the flag is set. + */ + ; + + _proto._hasFlag = function _hasFlag(flag) { + return (this._flags & flag) !== 0; + } + /** + * (Un)Sets the flag. + * + * @private + * @param {number} flag - The flag to (un)set. + * @param {boolean} value - Whether to set or (un)set the flag. + */ + ; + + _proto._setFlag = function _setFlag(flag, value) { + this._flags = value ? this._flags | flag : this._flags & ~flag; + } + /** + * Clears all the events from the underlying loading source. + * + * @private + */ + ; + + _proto._clearEvents = function _clearEvents() { + clearTimeout(this._elementTimer); + + if (this.data && this.data.removeEventListener) { + this.data.removeEventListener('error', this._boundOnError, false); + this.data.removeEventListener('load', this._boundComplete, false); + this.data.removeEventListener('progress', this._boundOnProgress, false); + this.data.removeEventListener('canplaythrough', this._boundComplete, false); + } + + if (this.xhr) { + if (this.xhr.removeEventListener) { + this.xhr.removeEventListener('error', this._boundXhrOnError, false); + this.xhr.removeEventListener('timeout', this._boundXhrOnTimeout, false); + this.xhr.removeEventListener('abort', this._boundXhrOnAbort, false); + this.xhr.removeEventListener('progress', this._boundOnProgress, false); + this.xhr.removeEventListener('load', this._boundXhrOnLoad, false); + } else { + this.xhr.onerror = null; + this.xhr.ontimeout = null; + this.xhr.onprogress = null; + this.xhr.onload = null; + } + } + } + /** + * Finalizes the load. + * + * @private + */ + ; + + _proto._finish = function _finish() { + if (this.isComplete) { + throw new Error('Complete called again for an already completed resource.'); + } + + this._setFlag(Resource.STATUS_FLAGS.COMPLETE, true); + + this._setFlag(Resource.STATUS_FLAGS.LOADING, false); + + this.onComplete.dispatch(this); + } + /** + * Loads this resources using an element that has a single source, + * like an HTMLImageElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadElement = function _loadElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'image' && typeof window.Image !== 'undefined') { + this.data = new Image(); + } else { + this.data = document.createElement(type); + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + this.data.src = this.url; + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an element that has multiple sources, + * like an HTMLAudioElement or HTMLVideoElement. + * + * @private + * @param {string} type - The type of element to use. + */ + ; + + _proto._loadSourceElement = function _loadSourceElement(type) { + if (this.metadata.loadElement) { + this.data = this.metadata.loadElement; + } else if (type === 'audio' && typeof window.Audio !== 'undefined') { + this.data = new Audio(); + } else { + this.data = document.createElement(type); + } + + if (this.data === null) { + this.abort("Unsupported element: " + type); + return; + } + + if (this.crossOrigin) { + this.data.crossOrigin = this.crossOrigin; + } + + if (!this.metadata.skipSource) { + // support for CocoonJS Canvas+ runtime, lacks document.createElement('source') + if (navigator.isCocoonJS) { + this.data.src = Array.isArray(this.url) ? this.url[0] : this.url; + } else if (Array.isArray(this.url)) { + var mimeTypes = this.metadata.mimeType; + + for (var i = 0; i < this.url.length; ++i) { + this.data.appendChild(this._createSource(type, this.url[i], Array.isArray(mimeTypes) ? mimeTypes[i] : mimeTypes)); + } + } else { + var _mimeTypes = this.metadata.mimeType; + this.data.appendChild(this._createSource(type, this.url, Array.isArray(_mimeTypes) ? _mimeTypes[0] : _mimeTypes)); + } + } + + this.data.addEventListener('error', this._boundOnError, false); + this.data.addEventListener('load', this._boundComplete, false); + this.data.addEventListener('progress', this._boundOnProgress, false); + this.data.addEventListener('canplaythrough', this._boundComplete, false); + this.data.load(); + + if (this.timeout) { + this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout); + } + } + /** + * Loads this resources using an XMLHttpRequest. + * + * @private + */ + ; + + _proto._loadXhr = function _loadXhr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xhr = this.xhr = new XMLHttpRequest(); // set the request type and url + + xhr.open('GET', this.url, true); + xhr.timeout = this.timeout; // load json as text and parse it ourselves. We do this because some browsers + // *cough* safari *cough* can't deal with it. + + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON || this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + xhr.responseType = Resource.XHR_RESPONSE_TYPE.TEXT; + } else { + xhr.responseType = this.xhrType; + } + + xhr.addEventListener('error', this._boundXhrOnError, false); + xhr.addEventListener('timeout', this._boundXhrOnTimeout, false); + xhr.addEventListener('abort', this._boundXhrOnAbort, false); + xhr.addEventListener('progress', this._boundOnProgress, false); + xhr.addEventListener('load', this._boundXhrOnLoad, false); + xhr.send(); + } + /** + * Loads this resources using an XDomainRequest. This is here because we need to support IE9 (gross). + * + * @private + */ + ; + + _proto._loadXdr = function _loadXdr() { + // if unset, determine the value + if (typeof this.xhrType !== 'string') { + this.xhrType = this._determineXhrType(); + } + + var xdr = this.xhr = new XDomainRequest(); // eslint-disable-line no-undef + // XDomainRequest has a few quirks. Occasionally it will abort requests + // A way to avoid this is to make sure ALL callbacks are set even if not used + // More info here: http://stackoverflow.com/questions/15786966/xdomainrequest-aborts-post-on-ie-9 + + xdr.timeout = this.timeout || 5000; // XDR needs a timeout value or it breaks in IE9 + + xdr.onerror = this._boundXhrOnError; + xdr.ontimeout = this._boundXhrOnTimeout; + xdr.onprogress = this._boundOnProgress; + xdr.onload = this._boundXhrOnLoad; + xdr.open('GET', this.url, true); // Note: The xdr.send() call is wrapped in a timeout to prevent an + // issue with the interface where some requests are lost if multiple + // XDomainRequests are being sent at the same time. + // Some info here: https://github.com/photonstorm/phaser/issues/1248 + + setTimeout(function () { + return xdr.send(); + }, 1); + } + /** + * Creates a source used in loading via an element. + * + * @private + * @param {string} type - The element type (video or audio). + * @param {string} url - The source URL to load from. + * @param {string} [mime] - The mime type of the video + * @return {HTMLSourceElement} The source element. + */ + ; + + _proto._createSource = function _createSource(type, url, mime) { + if (!mime) { + mime = type + "/" + this._getExtension(url); + } + + var source = document.createElement('source'); + source.src = url; + source.type = mime; + return source; + } + /** + * Called if a load errors out. + * + * @param {Event} event - The error event from the element that emits it. + * @private + */ + ; + + _proto._onError = function _onError(event) { + this.abort("Failed to load element using: " + event.target.nodeName); + } + /** + * Called if a load progress event fires for an element or xhr/xdr. + * + * @private + * @param {XMLHttpRequestProgressEvent|Event} event - Progress event. + */ + ; + + _proto._onProgress = function _onProgress(event) { + if (event && event.lengthComputable) { + this.onProgress.dispatch(this, event.loaded / event.total); + } + } + /** + * Called if a timeout event fires for an element. + * + * @private + */ + ; + + _proto._onTimeout = function _onTimeout() { + this.abort("Load timed out."); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnError = function _xhrOnError() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request failed. Status: " + xhr.status + ", text: \"" + xhr.statusText + "\""); + } + /** + * Called if an error event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnTimeout = function _xhrOnTimeout() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request timed out."); + } + /** + * Called if an abort event fires for xhr/xdr. + * + * @private + */ + ; + + _proto._xhrOnAbort = function _xhrOnAbort() { + var xhr = this.xhr; + this.abort(reqType(xhr) + " Request was aborted by the user."); + } + /** + * Called when data successfully loads from an xhr/xdr request. + * + * @private + * @param {XMLHttpRequestLoadEvent|Event} event - Load event + */ + ; + + _proto._xhrOnLoad = function _xhrOnLoad() { + var xhr = this.xhr; + var text = ''; + var status = typeof xhr.status === 'undefined' ? STATUS_OK : xhr.status; // XDR has no `.status`, assume 200. + // responseText is accessible only if responseType is '' or 'text' and on older browsers + + if (xhr.responseType === '' || xhr.responseType === 'text' || typeof xhr.responseType === 'undefined') { + text = xhr.responseText; + } // status can be 0 when using the `file://` protocol so we also check if a response is set. + // If it has a response, we assume 200; otherwise a 0 status code with no contents is an aborted request. + + + if (status === STATUS_NONE && (text.length > 0 || xhr.responseType === Resource.XHR_RESPONSE_TYPE.BUFFER)) { + status = STATUS_OK; + } // handle IE9 bug: http://stackoverflow.com/questions/10046972/msie-returns-status-code-of-1223-for-ajax-request + else if (status === STATUS_IE_BUG_EMPTY) { + status = STATUS_EMPTY; + } + + var statusType = status / 100 | 0; + + if (statusType === STATUS_TYPE_OK) { + // if text, just return it + if (this.xhrType === Resource.XHR_RESPONSE_TYPE.TEXT) { + this.data = text; + this.type = Resource.TYPE.TEXT; + } // if json, parse into json object + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON) { + try { + this.data = JSON.parse(text); + this.type = Resource.TYPE.JSON; + } catch (e) { + this.abort("Error trying to parse loaded json: " + e); + return; + } + } // if xml, parse into an xml document or div element + else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) { + try { + if (window.DOMParser) { + var domparser = new DOMParser(); + this.data = domparser.parseFromString(text, 'text/xml'); + } else { + var div = document.createElement('div'); + div.innerHTML = text; + this.data = div; + } + + this.type = Resource.TYPE.XML; + } catch (e) { + this.abort("Error trying to parse loaded xml: " + e); + return; + } + } // other types just return the response + else { + this.data = xhr.response || text; + } + } else { + this.abort("[" + xhr.status + "] " + xhr.statusText + ": " + xhr.responseURL); + return; + } + + this.complete(); + } + /** + * Sets the `crossOrigin` property for this resource based on if the url + * for this resource is cross-origin. If crossOrigin was manually set, this + * function does nothing. + * + * @private + * @param {string} url - The url to test. + * @param {object} [loc=window.location] - The location object to test against. + * @return {string} The crossOrigin value to use (or empty string for none). + */ + ; + + _proto._determineCrossOrigin = function _determineCrossOrigin(url, loc) { + // data: and javascript: urls are considered same-origin + if (url.indexOf('data:') === 0) { + return ''; + } // A sandboxed iframe without the 'allow-same-origin' attribute will have a special + // origin designed not to match window.location.origin, and will always require + // crossOrigin requests regardless of whether the location matches. + + + if (window.origin !== window.location.origin) { + return 'anonymous'; + } // default is window.location + + + loc = loc || window.location; + + if (!tempAnchor$1) { + tempAnchor$1 = document.createElement('a'); + } // let the browser determine the full href for the url of this resource and then + // parse with the node url lib, we can't use the properties of the anchor element + // because they don't work in IE9 :( + + + tempAnchor$1.href = url; + url = parseUri(tempAnchor$1.href, { + strictMode: true + }); + var samePort = !url.port && loc.port === '' || url.port === loc.port; + var protocol = url.protocol ? url.protocol + ":" : ''; // if cross origin + + if (url.host !== loc.hostname || !samePort || protocol !== loc.protocol) { + return 'anonymous'; + } + + return ''; + } + /** + * Determines the responseType of an XHR request based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.XHR_RESPONSE_TYPE} The responseType to use. + */ + ; + + _proto._determineXhrType = function _determineXhrType() { + return Resource._xhrTypeMap[this.extension] || Resource.XHR_RESPONSE_TYPE.TEXT; + } + /** + * Determines the loadType of a resource based on the extension of the + * resource being loaded. + * + * @private + * @return {Resource.LOAD_TYPE} The loadType to use. + */ + ; + + _proto._determineLoadType = function _determineLoadType() { + return Resource._loadTypeMap[this.extension] || Resource.LOAD_TYPE.XHR; + } + /** + * Extracts the extension (sans '.') of the file being loaded by the resource. + * + * @private + * @return {string} The extension. + */ + ; + + _proto._getExtension = function _getExtension() { + var url = this.url; + var ext = ''; + + if (this.isDataUrl) { + var slashIndex = url.indexOf('/'); + ext = url.substring(slashIndex + 1, url.indexOf(';', slashIndex)); + } else { + var queryStart = url.indexOf('?'); + var hashStart = url.indexOf('#'); + var index = Math.min(queryStart > -1 ? queryStart : url.length, hashStart > -1 ? hashStart : url.length); + url = url.substring(0, index); + ext = url.substring(url.lastIndexOf('.') + 1); + } + + return ext.toLowerCase(); + } + /** + * Determines the mime type of an XHR request based on the responseType of + * resource being loaded. + * + * @private + * @param {Resource.XHR_RESPONSE_TYPE} type - The type to get a mime type for. + * @return {string} The mime type to use. + */ + ; + + _proto._getMimeFromXhrType = function _getMimeFromXhrType(type) { + switch (type) { + case Resource.XHR_RESPONSE_TYPE.BUFFER: + return 'application/octet-binary'; + + case Resource.XHR_RESPONSE_TYPE.BLOB: + return 'application/blob'; + + case Resource.XHR_RESPONSE_TYPE.DOCUMENT: + return 'application/xml'; + + case Resource.XHR_RESPONSE_TYPE.JSON: + return 'application/json'; + + case Resource.XHR_RESPONSE_TYPE.DEFAULT: + case Resource.XHR_RESPONSE_TYPE.TEXT: + /* falls through */ + + default: + return 'text/plain'; + } + }; + + _createClass(Resource, [{ + key: "isDataUrl", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.DATA_URL); + } + /** + * Describes if this resource has finished loading. Is true when the resource has completely + * loaded. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isComplete", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.COMPLETE); + } + /** + * Describes if this resource is currently loading. Is true when the resource starts loading, + * and is false again when complete. + * + * @readonly + * @member {boolean} + */ + + }, { + key: "isLoading", + get: function get() { + return this._hasFlag(Resource.STATUS_FLAGS.LOADING); + } + }]); + + return Resource; +}(); +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + + +Resource$1.STATUS_FLAGS = { + NONE: 0, + DATA_URL: 1 << 0, + COMPLETE: 1 << 1, + LOADING: 1 << 2 +}; +/** + * The types of resources a resource could represent. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.TYPE = { + UNKNOWN: 0, + JSON: 1, + XML: 2, + IMAGE: 3, + AUDIO: 4, + VIDEO: 5, + TEXT: 6 +}; +/** + * The types of loading a resource can use. + * + * @static + * @readonly + * @enum {number} + */ + +Resource$1.LOAD_TYPE = { + /** Uses XMLHttpRequest to load the resource. */ + XHR: 1, + + /** Uses an `Image` object to load the resource. */ + IMAGE: 2, + + /** Uses an `Audio` object to load the resource. */ + AUDIO: 3, + + /** Uses a `Video` object to load the resource. */ + VIDEO: 4 +}; +/** + * The XHR ready states, used internally. + * + * @static + * @readonly + * @enum {string} + */ + +Resource$1.XHR_RESPONSE_TYPE = { + /** string */ + DEFAULT: 'text', + + /** ArrayBuffer */ + BUFFER: 'arraybuffer', + + /** Blob */ + BLOB: 'blob', + + /** Document */ + DOCUMENT: 'document', + + /** Object */ + JSON: 'json', + + /** String */ + TEXT: 'text' +}; +Resource$1._loadTypeMap = { + // images + gif: Resource$1.LOAD_TYPE.IMAGE, + png: Resource$1.LOAD_TYPE.IMAGE, + bmp: Resource$1.LOAD_TYPE.IMAGE, + jpg: Resource$1.LOAD_TYPE.IMAGE, + jpeg: Resource$1.LOAD_TYPE.IMAGE, + tif: Resource$1.LOAD_TYPE.IMAGE, + tiff: Resource$1.LOAD_TYPE.IMAGE, + webp: Resource$1.LOAD_TYPE.IMAGE, + tga: Resource$1.LOAD_TYPE.IMAGE, + svg: Resource$1.LOAD_TYPE.IMAGE, + 'svg+xml': Resource$1.LOAD_TYPE.IMAGE, + // for SVG data urls + // audio + mp3: Resource$1.LOAD_TYPE.AUDIO, + ogg: Resource$1.LOAD_TYPE.AUDIO, + wav: Resource$1.LOAD_TYPE.AUDIO, + // videos + mp4: Resource$1.LOAD_TYPE.VIDEO, + webm: Resource$1.LOAD_TYPE.VIDEO +}; +Resource$1._xhrTypeMap = { + // xml + xhtml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + html: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + htm: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + xml: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + tmx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + svg: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // This was added to handle Tiled Tileset XML, but .tsx is also a TypeScript React Component. + // Since it is way less likely for people to be loading TypeScript files instead of Tiled files, + // this should probably be fine. + tsx: Resource$1.XHR_RESPONSE_TYPE.DOCUMENT, + // images + gif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + png: Resource$1.XHR_RESPONSE_TYPE.BLOB, + bmp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + jpeg: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tif: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tiff: Resource$1.XHR_RESPONSE_TYPE.BLOB, + webp: Resource$1.XHR_RESPONSE_TYPE.BLOB, + tga: Resource$1.XHR_RESPONSE_TYPE.BLOB, + // json + json: Resource$1.XHR_RESPONSE_TYPE.JSON, + // text + text: Resource$1.XHR_RESPONSE_TYPE.TEXT, + txt: Resource$1.XHR_RESPONSE_TYPE.TEXT, + // fonts + ttf: Resource$1.XHR_RESPONSE_TYPE.BUFFER, + otf: Resource$1.XHR_RESPONSE_TYPE.BUFFER +}; // We can't set the `src` attribute to empty string, so on abort we set it to this 1px transparent gif + +Resource$1.EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='; +/** + * Quick helper to set a value on one of the extension maps. Ensures there is no + * dot at the start of the extension. + * + * @ignore + * @param {object} map - The map to set on. + * @param {string} extname - The extension (or key) to set. + * @param {number} val - The value to set. + */ + +function setExtMap(map, extname, val) { + if (extname && extname.indexOf('.') === 0) { + extname = extname.substring(1); + } + + if (!extname) { + return; + } + + map[extname] = val; +} +/** + * Quick helper to get string xhr type. + * + * @ignore + * @param {XMLHttpRequest|XDomainRequest} xhr - The request to check. + * @return {string} The type. + */ + + +function reqType(xhr) { + return xhr.toString().replace('object ', ''); +} + +var _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; +/** + * Encodes binary into base64. + * + * @function encodeBinary + * @param {string} input The input data to encode. + * @returns {string} The encoded base64 string + */ + +function encodeBinary(input) { + var output = ''; + var inx = 0; + + while (inx < input.length) { + // Fill byte buffer array + var bytebuffer = [0, 0, 0]; + var encodedCharIndexes = [0, 0, 0, 0]; + + for (var jnx = 0; jnx < bytebuffer.length; ++jnx) { + if (inx < input.length) { + // throw away high-order byte, as documented at: + // https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data + bytebuffer[jnx] = input.charCodeAt(inx++) & 0xff; + } else { + bytebuffer[jnx] = 0; + } + } // Get each encoded character, 6 bits at a time + // index 1: first 6 bits + + + encodedCharIndexes[0] = bytebuffer[0] >> 2; // index 2: second 6 bits (2 least significant bits from input byte 1 + 4 most significant bits from byte 2) + + encodedCharIndexes[1] = (bytebuffer[0] & 0x3) << 4 | bytebuffer[1] >> 4; // index 3: third 6 bits (4 least significant bits from input byte 2 + 2 most significant bits from byte 3) + + encodedCharIndexes[2] = (bytebuffer[1] & 0x0f) << 2 | bytebuffer[2] >> 6; // index 3: forth 6 bits (6 least significant bits from input byte 3) + + encodedCharIndexes[3] = bytebuffer[2] & 0x3f; // Determine whether padding happened, and adjust accordingly + + var paddingBytes = inx - (input.length - 1); + + switch (paddingBytes) { + case 2: + // Set last 2 characters to padding char + encodedCharIndexes[3] = 64; + encodedCharIndexes[2] = 64; + break; + + case 1: + // Set last character to padding char + encodedCharIndexes[3] = 64; + break; + + default: + break; + // No padding - proceed + } // Now we will grab each appropriate character out of our keystring + // based on our index array and append it to the output string + + + for (var _jnx = 0; _jnx < encodedCharIndexes.length; ++_jnx) { + output += _keyStr.charAt(encodedCharIndexes[_jnx]); + } + } + + return output; +} + +var Url$1 = window.URL || window.webkitURL; +/** + * A middleware for transforming XHR loaded Blobs into more useful objects + * + * @memberof middleware + * @function parsing + * @example + * import { Loader, middleware } from 'resource-loader'; + * const loader = new Loader(); + * loader.use(middleware.parsing); + * @param {Resource} resource - Current Resource + * @param {function} next - Callback when complete + */ + +function parsing(resource, next) { + if (!resource.data) { + next(); + return; + } // if this was an XHR load of a blob + + + if (resource.xhr && resource.xhrType === Resource$1.XHR_RESPONSE_TYPE.BLOB) { + // if there is no blob support we probably got a binary string back + if (!window.Blob || typeof resource.data === 'string') { + var type = resource.xhr.getResponseHeader('content-type'); // this is an image, convert the binary string into a data url + + if (type && type.indexOf('image') === 0) { + resource.data = new Image(); + resource.data.src = "data:" + type + ";base64," + encodeBinary(resource.xhr.responseText); + resource.type = Resource$1.TYPE.IMAGE; // wait until the image loads and then callback + + resource.data.onload = function () { + resource.data.onload = null; + next(); + }; // next will be called on load + + + return; + } + } // if content type says this is an image, then we should transform the blob into an Image object + else if (resource.data.type.indexOf('image') === 0) { + var src = Url$1.createObjectURL(resource.data); + resource.blob = resource.data; + resource.data = new Image(); + resource.data.src = src; + resource.type = Resource$1.TYPE.IMAGE; // cleanup the no longer used blob after the image loads + // TODO: Is this correct? Will the image be invalid after revoking? + + resource.data.onload = function () { + Url$1.revokeObjectURL(src); + resource.data.onload = null; + next(); + }; // next will be called on load. + + + return; + } + } + + next(); +} + +/** + * @namespace middleware + */ + +var index = ({ + caching: caching, + parsing: parsing +}); + +var MAX_PROGRESS = 100; +var rgxExtractUrlHash = /(#[\w-]+)?$/; +/** + * Manages the state and loading of multiple resources to load. + * + * @class + */ + +var Loader = +/*#__PURE__*/ +function () { + /** + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ + function Loader(baseUrl, concurrency) { + var _this = this; + + if (baseUrl === void 0) { + baseUrl = ''; + } + + if (concurrency === void 0) { + concurrency = 10; + } + + /** + * The base url for all resources loaded by this loader. + * + * @member {string} + */ + this.baseUrl = baseUrl; + /** + * The progress percent of the loader going through the queue. + * + * @member {number} + * @default 0 + */ + + this.progress = 0; + /** + * Loading state of the loader, true if it is currently loading resources. + * + * @member {boolean} + * @default false + */ + + this.loading = false; + /** + * A querystring to append to every URL added to the loader. + * + * This should be a valid query string *without* the question-mark (`?`). The loader will + * also *not* escape values for you. Make sure to escape your parameters with + * [`encodeURIComponent`](https://mdn.io/encodeURIComponent) before assigning this property. + * + * @example + * const loader = new Loader(); + * + * loader.defaultQueryString = 'user=me&password=secret'; + * + * // This will request 'image.png?user=me&password=secret' + * loader.add('image.png').load(); + * + * loader.reset(); + * + * // This will request 'image.png?v=1&user=me&password=secret' + * loader.add('iamge.png?v=1').load(); + * + * @member {string} + * @default '' + */ + + this.defaultQueryString = ''; + /** + * The middleware to run before loading each resource. + * + * @private + * @member {function[]} + */ + + this._beforeMiddleware = []; + /** + * The middleware to run after loading each resource. + * + * @private + * @member {function[]} + */ + + this._afterMiddleware = []; + /** + * The tracks the resources we are currently completing parsing for. + * + * @private + * @member {Resource[]} + */ + + this._resourcesParsing = []; + /** + * The `_loadResource` function bound with this object context. + * + * @private + * @member {function} + * @param {Resource} r - The resource to load + * @param {Function} d - The dequeue function + * @return {undefined} + */ + + this._boundLoadResource = function (r, d) { + return _this._loadResource(r, d); + }; + /** + * The resources waiting to be loaded. + * + * @private + * @member {Resource[]} + */ + + + this._queue = queue(this._boundLoadResource, concurrency); + + this._queue.pause(); + /** + * All the resources for this loader keyed by name. + * + * @member {object} + */ + + + this.resources = {}; + /** + * Dispatched once per loaded or errored resource. + * + * The callback looks like {@link Loader.OnProgressSignal}. + * + * @member {Signal} + */ + + this.onProgress = new Signal(); + /** + * Dispatched once per errored resource. + * + * The callback looks like {@link Loader.OnErrorSignal}. + * + * @member {Signal} + */ + + this.onError = new Signal(); + /** + * Dispatched once per loaded resource. + * + * The callback looks like {@link Loader.OnLoadSignal}. + * + * @member {Signal} + */ + + this.onLoad = new Signal(); + /** + * Dispatched when the loader begins to process the queue. + * + * The callback looks like {@link Loader.OnStartSignal}. + * + * @member {Signal} + */ + + this.onStart = new Signal(); + /** + * Dispatched when the queued resources all load. + * + * The callback looks like {@link Loader.OnCompleteSignal}. + * + * @member {Signal} + */ + + this.onComplete = new Signal(); // Add default before middleware + + for (var i = 0; i < Loader._defaultBeforeMiddleware.length; ++i) { + this.pre(Loader._defaultBeforeMiddleware[i]); + } // Add default after middleware + + + for (var _i = 0; _i < Loader._defaultAfterMiddleware.length; ++_i) { + this.use(Loader._defaultAfterMiddleware[_i]); + } + } + /** + * When the progress changes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnProgressSignal + * @param {Loader} loader - The loader the progress is advancing on. + * @param {Resource} resource - The resource that has completed or failed to cause the progress to advance. + */ + + /** + * When an error occurrs the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnErrorSignal + * @param {Loader} loader - The loader the error happened in. + * @param {Resource} resource - The resource that caused the error. + */ + + /** + * When a load completes the loader and resource are disaptched. + * + * @memberof Loader + * @callback OnLoadSignal + * @param {Loader} loader - The loader that laoded the resource. + * @param {Resource} resource - The resource that has completed loading. + */ + + /** + * When the loader starts loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnStartSignal + * @param {Loader} loader - The loader that has started loading resources. + */ + + /** + * When the loader completes loading resources it dispatches this callback. + * + * @memberof Loader + * @callback OnCompleteSignal + * @param {Loader} loader - The loader that has finished loading resources. + */ + + /** + * Options for a call to `.add()`. + * + * @see Loader#add + * + * @typedef {object} IAddOptions + * @property {string} [name] - The name of the resource to load, if not passed the url is used. + * @property {string} [key] - Alias for `name`. + * @property {string} [url] - The url for this resource, relative to the baseUrl of this loader. + * @property {string|boolean} [crossOrigin] - Is this request cross-origin? Default is to + * determine automatically. + * @property {number} [timeout=0] - A timeout in milliseconds for the load. If the load takes + * longer than this time it is cancelled and the load is considered a failure. If this value is + * set to `0` then there is no explicit timeout. + * @property {Resource.LOAD_TYPE} [loadType=Resource.LOAD_TYPE.XHR] - How should this resource + * be loaded? + * @property {Resource.XHR_RESPONSE_TYPE} [xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How + * should the data being loaded be interpreted when using XHR? + * @property {Resource.OnCompleteSignal} [onComplete] - Callback to add an an onComplete signal istener. + * @property {Resource.OnCompleteSignal} [callback] - Alias for `onComplete`. + * @property {Resource.IMetadata} [metadata] - Extra configuration for middleware and the Resource object. + */ + + /* eslint-disable require-jsdoc,valid-jsdoc */ + + /** + * Adds a resource (or multiple resources) to the loader queue. + * + * This function can take a wide variety of different parameters. The only thing that is always + * required the url to load. All the following will work: + * + * ```js + * loader + * // normal param syntax + * .add('key', 'http://...', function () {}) + * .add('http://...', function () {}) + * .add('http://...') + * + * // object syntax + * .add({ + * name: 'key2', + * url: 'http://...' + * }, function () {}) + * .add({ + * url: 'http://...' + * }, function () {}) + * .add({ + * name: 'key3', + * url: 'http://...' + * onComplete: function () {} + * }) + * .add({ + * url: 'https://...', + * onComplete: function () {}, + * crossOrigin: true + * }) + * + * // you can also pass an array of objects or urls or both + * .add([ + * { name: 'key4', url: 'http://...', onComplete: function () {} }, + * { url: 'http://...', onComplete: function () {} }, + * 'http://...' + * ]) + * + * // and you can use both params and options + * .add('key', 'http://...', { crossOrigin: true }, function () {}) + * .add('http://...', { crossOrigin: true }, function () {}); + * ``` + * + * @function + * @variation 1 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 2 + * @param {string} name - The name of the resource to load. + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 3 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 4 + * @param {string} url - The url for this resource, relative to the baseUrl of this loader. + * @param {IAddOptions} [options] - The options for the load. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 5 + * @param {IAddOptions} options - The options for the load. This object must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + /** + * @function + * @variation 6 + * @param {Array} resources - An array of resources to load, where each is + * either an object with the options or a string url. If you pass an object, it must contain a `url` property. + * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading. + * @return {this} Returns itself. + */ + + + var _proto = Loader.prototype; + + _proto.add = function add(name, url, options, cb) { + // special case of an array of objects or urls + if (Array.isArray(name)) { + for (var i = 0; i < name.length; ++i) { + this.add(name[i]); + } + + return this; + } // if an object is passed instead of params + + + if (typeof name === 'object') { + cb = url || name.callback || name.onComplete; + options = name; + url = name.url; + name = name.name || name.key || name.url; + } // case where no name is passed shift all args over by one. + + + if (typeof url !== 'string') { + cb = options; + options = url; + url = name; + } // now that we shifted make sure we have a proper url. + + + if (typeof url !== 'string') { + throw new Error('No url passed to add resource to loader.'); + } // options are optional so people might pass a function and no options + + + if (typeof options === 'function') { + cb = options; + options = null; + } // if loading already you can only add resources that have a parent. + + + if (this.loading && (!options || !options.parentResource)) { + throw new Error('Cannot add resources while the loader is running.'); + } // check if resource already exists. + + + if (this.resources[name]) { + throw new Error("Resource named \"" + name + "\" already exists."); + } // add base url if this isn't an absolute url + + + url = this._prepareUrl(url); // create the store the resource + + this.resources[name] = new Resource$1(name, url, options); + + if (typeof cb === 'function') { + this.resources[name].onAfterMiddleware.once(cb); + } // if actively loading, make sure to adjust progress chunks for that parent and its children + + + if (this.loading) { + var parent = options.parentResource; + var incompleteChildren = []; + + for (var _i2 = 0; _i2 < parent.children.length; ++_i2) { + if (!parent.children[_i2].isComplete) { + incompleteChildren.push(parent.children[_i2]); + } + } + + var fullChunk = parent.progressChunk * (incompleteChildren.length + 1); // +1 for parent + + var eachChunk = fullChunk / (incompleteChildren.length + 2); // +2 for parent & new child + + parent.children.push(this.resources[name]); + parent.progressChunk = eachChunk; + + for (var _i3 = 0; _i3 < incompleteChildren.length; ++_i3) { + incompleteChildren[_i3].progressChunk = eachChunk; + } + + this.resources[name].progressChunk = eachChunk; + } // add the resource to the queue + + + this._queue.push(this.resources[name]); + + return this; + } + /* eslint-enable require-jsdoc,valid-jsdoc */ + + /** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.pre = function pre(fn) { + this._beforeMiddleware.push(fn); + + return this; + } + /** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @param {function} fn - The middleware function to register. + * @return {this} Returns itself. + */ + ; + + _proto.use = function use(fn) { + this._afterMiddleware.push(fn); + + return this; + } + /** + * Resets the queue of the loader to prepare for a new load. + * + * @return {this} Returns itself. + */ + ; + + _proto.reset = function reset() { + this.progress = 0; + this.loading = false; + + this._queue.kill(); + + this._queue.pause(); // abort all resource loads + + + for (var k in this.resources) { + var res = this.resources[k]; + + if (res._onLoadBinding) { + res._onLoadBinding.detach(); + } + + if (res.isLoading) { + res.abort(); + } + } + + this.resources = {}; + return this; + } + /** + * Starts loading the queued resources. + * + * @param {function} [cb] - Optional callback that will be bound to the `complete` event. + * @return {this} Returns itself. + */ + ; + + _proto.load = function load(cb) { + // register complete callback if they pass one + if (typeof cb === 'function') { + this.onComplete.once(cb); + } // if the queue has already started we are done here + + + if (this.loading) { + return this; + } + + if (this._queue.idle()) { + this._onStart(); + + this._onComplete(); + } else { + // distribute progress chunks + var numTasks = this._queue._tasks.length; + var chunk = MAX_PROGRESS / numTasks; + + for (var i = 0; i < this._queue._tasks.length; ++i) { + this._queue._tasks[i].data.progressChunk = chunk; + } // notify we are starting + + + this._onStart(); // start loading + + + this._queue.resume(); + } + + return this; + } + /** + * The number of resources to load concurrently. + * + * @member {number} + * @default 10 + */ + ; + + /** + * Prepares a url for usage based on the configuration of this object + * + * @private + * @param {string} url - The url to prepare. + * @return {string} The prepared url. + */ + _proto._prepareUrl = function _prepareUrl(url) { + var parsedUrl = parseUri(url, { + strictMode: true + }); + var result; // absolute url, just use it as is. + + if (parsedUrl.protocol || !parsedUrl.path || url.indexOf('//') === 0) { + result = url; + } // if baseUrl doesn't end in slash and url doesn't start with slash, then add a slash inbetween + else if (this.baseUrl.length && this.baseUrl.lastIndexOf('/') !== this.baseUrl.length - 1 && url.charAt(0) !== '/') { + result = this.baseUrl + "/" + url; + } else { + result = this.baseUrl + url; + } // if we need to add a default querystring, there is a bit more work + + + if (this.defaultQueryString) { + var hash = rgxExtractUrlHash.exec(result)[0]; + result = result.substr(0, result.length - hash.length); + + if (result.indexOf('?') !== -1) { + result += "&" + this.defaultQueryString; + } else { + result += "?" + this.defaultQueryString; + } + + result += hash; + } + + return result; + } + /** + * Loads a single resource. + * + * @private + * @param {Resource} resource - The resource to load. + * @param {function} dequeue - The function to call when we need to dequeue this item. + */ + ; + + _proto._loadResource = function _loadResource(resource, dequeue) { + var _this2 = this; + + resource._dequeue = dequeue; // run before middleware + + eachSeries(this._beforeMiddleware, function (fn, next) { + fn.call(_this2, resource, function () { + // if the before middleware marks the resource as complete, + // break and don't process any more before middleware + next(resource.isComplete ? {} : null); + }); + }, function () { + if (resource.isComplete) { + _this2._onLoad(resource); + } else { + resource._onLoadBinding = resource.onComplete.once(_this2._onLoad, _this2); + resource.load(); + } + }, true); + } + /** + * Called once loading has started. + * + * @private + */ + ; + + _proto._onStart = function _onStart() { + this.progress = 0; + this.loading = true; + this.onStart.dispatch(this); + } + /** + * Called once each resource has loaded. + * + * @private + */ + ; + + _proto._onComplete = function _onComplete() { + this.progress = MAX_PROGRESS; + this.loading = false; + this.onComplete.dispatch(this, this.resources); + } + /** + * Called each time a resources is loaded. + * + * @private + * @param {Resource} resource - The resource that was loaded + */ + ; + + _proto._onLoad = function _onLoad(resource) { + var _this3 = this; + + resource._onLoadBinding = null; // remove this resource from the async queue, and add it to our list of resources that are being parsed + + this._resourcesParsing.push(resource); + + resource._dequeue(); // run all the after middleware for this resource + + + eachSeries(this._afterMiddleware, function (fn, next) { + fn.call(_this3, resource, next); + }, function () { + resource.onAfterMiddleware.dispatch(resource); + _this3.progress = Math.min(MAX_PROGRESS, _this3.progress + resource.progressChunk); + + _this3.onProgress.dispatch(_this3, resource); + + if (resource.error) { + _this3.onError.dispatch(resource.error, _this3, resource); + } else { + _this3.onLoad.dispatch(_this3, resource); + } + + _this3._resourcesParsing.splice(_this3._resourcesParsing.indexOf(resource), 1); // do completion check + + + if (_this3._queue.idle() && _this3._resourcesParsing.length === 0) { + _this3._onComplete(); + } + }, true); + }; + + _createClass(Loader, [{ + key: "concurrency", + get: function get() { + return this._queue.concurrency; + } // eslint-disable-next-line require-jsdoc + , + set: function set(concurrency) { + this._queue.concurrency = concurrency; + } + }]); + + return Loader; +}(); +/** + * A default array of middleware to run before loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + + +Loader._defaultBeforeMiddleware = []; +/** + * A default array of middleware to run after loading each resource. + * Each of these middlewares are added to any new Loader instances when they are created. + * + * @private + * @member {function[]} + */ + +Loader._defaultAfterMiddleware = []; +/** + * Sets up a middleware function that will run *before* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + +Loader.pre = function LoaderPreStatic(fn) { + Loader._defaultBeforeMiddleware.push(fn); + + return Loader; +}; +/** + * Sets up a middleware function that will run *after* the + * resource is loaded. + * + * @static + * @param {function} fn - The middleware function to register. + * @return {Loader} Returns itself. + */ + + +Loader.use = function LoaderUseStatic(fn) { + Loader._defaultAfterMiddleware.push(fn); + + return Loader; +}; + +/*! + * @pixi/loaders - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/loaders is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Loader plugin for handling Texture resources. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var TextureLoader = function TextureLoader () {}; + +TextureLoader.use = function use (resource, next) +{ + // create a new texture if the data is an Image object + if (resource.data && resource.type === Resource$1.TYPE.IMAGE) + { + resource.texture = Texture.fromLoader( + resource.data, + resource.url, + resource.name + ); + } + next(); +}; + +/** + * The new loader, extends Resource Loader by Chad Engler: https://github.com/englercj/resource-loader + * + * ```js + * const loader = PIXI.Loader.shared; // PixiJS exposes a premade instance for you to use. + * //or + * const loader = new PIXI.Loader(); // you can also create your own if you want + * + * const sprites = {}; + * + * // Chainable `add` to enqueue a resource + * loader.add('bunny', 'data/bunny.png') + * .add('spaceship', 'assets/spritesheet.json'); + * loader.add('scoreFont', 'assets/score.fnt'); + * + * // Chainable `pre` to add a middleware that runs for each resource, *before* loading that resource. + * // This is useful to implement custom caching modules (using filesystem, indexeddb, memory, etc). + * loader.pre(cachingMiddleware); + * + * // Chainable `use` to add a middleware that runs for each resource, *after* loading that resource. + * // This is useful to implement custom parsing modules (like spritesheet parsers, spine parser, etc). + * loader.use(parsingMiddleware); + * + * // The `load` method loads the queue of resources, and calls the passed in callback called once all + * // resources have loaded. + * loader.load((loader, resources) => { + * // resources is an object where the key is the name of the resource loaded and the value is the resource object. + * // They have a couple default properties: + * // - `url`: The URL that the resource was loaded from + * // - `error`: The error that happened when trying to load (if any) + * // - `data`: The raw data that was loaded + * // also may contain other properties based on the middleware that runs. + * sprites.bunny = new PIXI.TilingSprite(resources.bunny.texture); + * sprites.spaceship = new PIXI.TilingSprite(resources.spaceship.texture); + * sprites.scoreFont = new PIXI.TilingSprite(resources.scoreFont.texture); + * }); + * + * // throughout the process multiple signals can be dispatched. + * loader.onProgress.add(() => {}); // called once per loaded/errored file + * loader.onError.add(() => {}); // called once per errored file + * loader.onLoad.add(() => {}); // called once per loaded file + * loader.onComplete.add(() => {}); // called once when the queued resources all load. + * ``` + * + * @see https://github.com/englercj/resource-loader + * + * @class Loader + * @memberof PIXI + * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader. + * @param {number} [concurrency=10] - The number of resources to load concurrently. + */ +var Loader$1 = /*@__PURE__*/(function (ResourceLoader) { + function Loader(baseUrl, concurrency) + { + var this$1 = this; + + ResourceLoader.call(this, baseUrl, concurrency); + eventemitter3.call(this); + + for (var i = 0; i < Loader._plugins.length; ++i) + { + var plugin = Loader._plugins[i]; + var pre = plugin.pre; + var use = plugin.use; + + if (pre) + { + this.pre(pre); + } + + if (use) + { + this.use(use); + } + } + + // Compat layer, translate the new v2 signals into old v1 events. + this.onStart.add(function (l) { return this$1.emit('start', l); }); + this.onProgress.add(function (l, r) { return this$1.emit('progress', l, r); }); + this.onError.add(function (e, l, r) { return this$1.emit('error', e, l, r); }); + this.onLoad.add(function (l, r) { return this$1.emit('load', l, r); }); + this.onComplete.add(function (l, r) { return this$1.emit('complete', l, r); }); + + /** + * If this loader cannot be destroyed. + * @member {boolean} + * @default false + * @private + */ + this._protected = false; + } + + if ( ResourceLoader ) Loader.__proto__ = ResourceLoader; + Loader.prototype = Object.create( ResourceLoader && ResourceLoader.prototype ); + Loader.prototype.constructor = Loader; + + var staticAccessors = { shared: { configurable: true } }; + + /** + * Destroy the loader, removes references. + * @private + */ + Loader.prototype.destroy = function destroy () + { + if (!this._protected) + { + this.removeAllListeners(); + this.reset(); + } + }; + + /** + * A premade instance of the loader that can be used to load resources. + * @name shared + * @type {PIXI.Loader} + * @static + * @memberof PIXI.Loader + */ + staticAccessors.shared.get = function () + { + var shared = Loader._shared; + + if (!shared) + { + shared = new Loader(); + shared._protected = true; + Loader._shared = shared; + } + + return shared; + }; + + Object.defineProperties( Loader, staticAccessors ); + + return Loader; +}(Loader)); + +// Copy EE3 prototype (mixin) +Object.assign(Loader$1.prototype, eventemitter3.prototype); + +/** + * Collection of all installed `use` middleware for Loader. + * + * @static + * @member {Array} _plugins + * @memberof PIXI.Loader + * @private + */ +Loader$1._plugins = []; + +/** + * Adds a Loader plugin for the global shared loader and all + * new Loader instances created. + * + * @static + * @method registerPlugin + * @memberof PIXI.Loader + * @param {PIXI.ILoaderPlugin} plugin - The plugin to add + * @return {PIXI.Loader} Reference to PIXI.Loader for chaining + */ +Loader$1.registerPlugin = function registerPlugin(plugin) +{ + Loader$1._plugins.push(plugin); + + if (plugin.add) + { + plugin.add(); + } + + return Loader$1; +}; + +// parse any blob into more usable objects (e.g. Image) +Loader$1.registerPlugin({ use: index.parsing }); + +// parse any Image objects into textures +Loader$1.registerPlugin(TextureLoader); + +/** + * Plugin to be installed for handling specific Loader resources. + * + * @memberof PIXI + * @typedef ILoaderPlugin + * @property {function} [add] - Function to call immediate after registering plugin. + * @property {PIXI.Loader.loaderMiddleware} [pre] - Middleware function to run before load, the + * arguments for this are `(resource, next)` + * @property {PIXI.Loader.loaderMiddleware} [use] - Middleware function to run after load, the + * arguments for this are `(resource, next)` + */ + +/** + * @memberof PIXI.Loader + * @callback loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onStart + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onProgress + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onError + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onLoad + */ + +/** + * @memberof PIXI.Loader# + * @member {object} onComplete + */ + +/** + * Application plugin for supporting loader option. Installing the LoaderPlugin + * is not necessary if using **pixi.js** or **pixi.js-legacy**. + * @example + * import {AppLoaderPlugin} from '@pixi/loaders'; + * import {Application} from '@pixi/app'; + * Application.registerPlugin(AppLoaderPlugin); + * @class + * @memberof PIXI + */ +var AppLoaderPlugin = function AppLoaderPlugin () {}; + +AppLoaderPlugin.init = function init (options) +{ + options = Object.assign({ + sharedLoader: false, + }, options); + + /** + * Loader instance to help with asset loading. + * @name PIXI.Application#loader + * @type {PIXI.Loader} + * @readonly + */ + this.loader = options.sharedLoader ? Loader$1.shared : new Loader$1(); +}; + +/** + * Called when application destroyed + * @private + */ +AppLoaderPlugin.destroy = function destroy () +{ + if (this.loader) + { + this.loader.destroy(); + this.loader = null; + } +}; + +/** + * Reference to **{@link https://github.com/englercj/resource-loader + * resource-loader}**'s Resource class. + * @see http://englercj.github.io/resource-loader/Resource.html + * @class LoaderResource + * @memberof PIXI + */ +var LoaderResource = Resource$1; + +/*! + * @pixi/particles - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/particles is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that + * they now share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleBuffer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleBuffer.java + */ + +/** + * The particle buffer manages the static and dynamic buffers for a particle container. + * + * @class + * @private + * @memberof PIXI + */ +var ParticleBuffer = function ParticleBuffer(properties, dynamicPropertyFlags, size) +{ + this.geometry = new Geometry(); + + this.indexBuffer = null; + + /** + * The number of particles the buffer can hold + * + * @private + * @member {number} + */ + this.size = size; + + /** + * A list of the properties that are dynamic. + * + * @private + * @member {object[]} + */ + this.dynamicProperties = []; + + /** + * A list of the properties that are static. + * + * @private + * @member {object[]} + */ + this.staticProperties = []; + + for (var i = 0; i < properties.length; ++i) + { + var property = properties[i]; + + // Make copy of properties object so that when we edit the offset it doesn't + // change all other instances of the object literal + property = { + attributeName: property.attributeName, + size: property.size, + uploadFunction: property.uploadFunction, + type: property.type || TYPES.FLOAT, + offset: property.offset, + }; + + if (dynamicPropertyFlags[i]) + { + this.dynamicProperties.push(property); + } + else + { + this.staticProperties.push(property); + } + } + + this.staticStride = 0; + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + + this.dynamicStride = 0; + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this._updateID = 0; + + this.initBuffers(); +}; + +/** + * Sets up the renderer context and necessary buffers. + * + * @private + */ +ParticleBuffer.prototype.initBuffers = function initBuffers () +{ + var geometry = this.geometry; + + var dynamicOffset = 0; + + /** + * Holds the indices of the geometry (quads) to draw + * + * @member {Uint16Array} + * @private + */ + this.indexBuffer = new Buffer$1(createIndicesForQuads(this.size), true, true); + geometry.addIndex(this.indexBuffer); + + this.dynamicStride = 0; + + for (var i = 0; i < this.dynamicProperties.length; ++i) + { + var property = this.dynamicProperties[i]; + + property.offset = dynamicOffset; + dynamicOffset += property.size; + this.dynamicStride += property.size; + } + + var dynBuffer = new ArrayBuffer(this.size * this.dynamicStride * 4 * 4); + + this.dynamicData = new Float32Array(dynBuffer); + this.dynamicDataUint32 = new Uint32Array(dynBuffer); + this.dynamicBuffer = new Buffer$1(this.dynamicData, false, false); + + // static // + var staticOffset = 0; + + this.staticStride = 0; + + for (var i$1 = 0; i$1 < this.staticProperties.length; ++i$1) + { + var property$1 = this.staticProperties[i$1]; + + property$1.offset = staticOffset; + staticOffset += property$1.size; + this.staticStride += property$1.size; + } + + var statBuffer = new ArrayBuffer(this.size * this.staticStride * 4 * 4); + + this.staticData = new Float32Array(statBuffer); + this.staticDataUint32 = new Uint32Array(statBuffer); + this.staticBuffer = new Buffer$1(this.staticData, true, false); + + for (var i$2 = 0; i$2 < this.dynamicProperties.length; ++i$2) + { + var property$2 = this.dynamicProperties[i$2]; + + geometry.addAttribute( + property$2.attributeName, + this.dynamicBuffer, + 0, + property$2.type === TYPES.UNSIGNED_BYTE, + property$2.type, + this.dynamicStride * 4, + property$2.offset * 4 + ); + } + + for (var i$3 = 0; i$3 < this.staticProperties.length; ++i$3) + { + var property$3 = this.staticProperties[i$3]; + + geometry.addAttribute( + property$3.attributeName, + this.staticBuffer, + 0, + property$3.type === TYPES.UNSIGNED_BYTE, + property$3.type, + this.staticStride * 4, + property$3.offset * 4 + ); + } +}; + +/** + * Uploads the dynamic properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadDynamic = function uploadDynamic (children, startIndex, amount) +{ + for (var i = 0; i < this.dynamicProperties.length; i++) + { + var property = this.dynamicProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.dynamicDataUint32 : this.dynamicData, + this.dynamicStride, property.offset); + } + + this.dynamicBuffer._updateID++; +}; + +/** + * Uploads the static properties. + * + * @private + * @param {PIXI.DisplayObject[]} children - The children to upload. + * @param {number} startIndex - The index to start at. + * @param {number} amount - The number to upload. + */ +ParticleBuffer.prototype.uploadStatic = function uploadStatic (children, startIndex, amount) +{ + for (var i = 0; i < this.staticProperties.length; i++) + { + var property = this.staticProperties[i]; + + property.uploadFunction(children, startIndex, amount, + property.type === TYPES.UNSIGNED_BYTE ? this.staticDataUint32 : this.staticData, + this.staticStride, property.offset); + } + + this.staticBuffer._updateID++; +}; + +/** + * Destroys the ParticleBuffer. + * + * @private + */ +ParticleBuffer.prototype.destroy = function destroy () +{ + this.indexBuffer = null; + + this.dynamicProperties = null; + // this.dynamicBuffer.destroy(); + this.dynamicBuffer = null; + this.dynamicData = null; + this.dynamicDataUint32 = null; + + this.staticProperties = null; + // this.staticBuffer.destroy(); + this.staticBuffer = null; + this.staticData = null; + this.staticDataUint32 = null; + // all buffers are destroyed inside geometry + this.geometry.destroy(); +}; + +var vertex$1 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\nattribute vec4 aColor;\n\nattribute vec2 aPositionCoord;\nattribute float aRotation;\n\nuniform mat3 translationMatrix;\nuniform vec4 uColor;\n\nvarying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nvoid main(void){\n float x = (aVertexPosition.x) * cos(aRotation) - (aVertexPosition.y) * sin(aRotation);\n float y = (aVertexPosition.x) * sin(aRotation) + (aVertexPosition.y) * cos(aRotation);\n\n vec2 v = vec2(x, y);\n v = v + aPositionCoord;\n\n gl_Position = vec4((translationMatrix * vec3(v, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vColor = aColor * uColor;\n}\n"; + +var fragment$1 = "varying vec2 vTextureCoord;\nvarying vec4 vColor;\n\nuniform sampler2D uSampler;\n\nvoid main(void){\n vec4 color = texture2D(uSampler, vTextureCoord) * vColor;\n gl_FragColor = color;\n}"; + +/** + * @author Mat Groves + * + * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/ + * for creating the original PixiJS version! + * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that they now + * share 4 bytes on the vertex buffer + * + * Heavily inspired by LibGDX's ParticleRenderer: + * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleRenderer.java + */ + +/** + * Renderer for Particles that is designer for speed over feature set. + * + * @class + * @memberof PIXI + */ +var ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function ParticleRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + // 65535 is max vertex index in the index buffer (see ParticleRenderer) + // so max number of particles is 65536 / 4 = 16384 + // and max number of element in the index buffer is 16384 * 6 = 98304 + // Creating a full index buffer, overhead is 98304 * 2 = 196Ko + // let numIndices = 98304; + + /** + * The default shader that is used if a sprite doesn't have a more specific one. + * + * @member {PIXI.Shader} + */ + this.shader = null; + + this.properties = null; + + this.tempMatrix = new Matrix(); + + this.properties = [ + // verticesData + { + attributeName: 'aVertexPosition', + size: 2, + uploadFunction: this.uploadVertices, + offset: 0, + }, + // positionData + { + attributeName: 'aPositionCoord', + size: 2, + uploadFunction: this.uploadPosition, + offset: 0, + }, + // rotationData + { + attributeName: 'aRotation', + size: 1, + uploadFunction: this.uploadRotation, + offset: 0, + }, + // uvsData + { + attributeName: 'aTextureCoord', + size: 2, + uploadFunction: this.uploadUvs, + offset: 0, + }, + // tintData + { + attributeName: 'aColor', + size: 1, + type: TYPES.UNSIGNED_BYTE, + uploadFunction: this.uploadTint, + offset: 0, + } ]; + + this.shader = Shader.from(vertex$1, fragment$1, {}); + } + + if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer; + ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + ParticleRenderer.prototype.constructor = ParticleRenderer; + + /** + * Renders the particle container object. + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + */ + ParticleRenderer.prototype.render = function render (container) + { + var children = container.children; + var maxSize = container._maxSize; + var batchSize = container._batchSize; + var renderer = this.renderer; + var totalChildren = children.length; + + if (totalChildren === 0) + { + return; + } + else if (totalChildren > maxSize && !container.autoResize) + { + totalChildren = maxSize; + } + + var buffers = container._buffers; + + if (!buffers) + { + buffers = container._buffers = this.generateBuffers(container); + } + + var baseTexture = children[0]._texture.baseTexture; + + // if the uvs have not updated then no point rendering just yet! + this.renderer.state.setBlendMode(correctBlendMode(container.blendMode, baseTexture.premultiplyAlpha)); + + var gl = renderer.gl; + + var m = container.worldTransform.copyTo(this.tempMatrix); + + m.prepend(renderer.globalUniforms.uniforms.projectionMatrix); + + this.shader.uniforms.translationMatrix = m.toArray(true); + + this.shader.uniforms.uColor = premultiplyRgba(container.tintRgb, + container.worldAlpha, this.shader.uniforms.uColor, baseTexture.premultiplyAlpha); + + this.shader.uniforms.uSampler = baseTexture; + + this.renderer.shader.bind(this.shader); + + var updateStatic = false; + + // now lets upload and render the buffers.. + for (var i = 0, j = 0; i < totalChildren; i += batchSize, j += 1) + { + var amount = (totalChildren - i); + + if (amount > batchSize) + { + amount = batchSize; + } + + if (j >= buffers.length) + { + buffers.push(this._generateOneMoreBuffer(container)); + } + + var buffer = buffers[j]; + + // we always upload the dynamic + buffer.uploadDynamic(children, i, amount); + + var bid = container._bufferUpdateIDs[j] || 0; + + updateStatic = updateStatic || (buffer._updateID < bid); + // we only upload the static content when we have to! + if (updateStatic) + { + buffer._updateID = container._updateID; + buffer.uploadStatic(children, i, amount); + } + + // bind the buffer + renderer.geometry.bind(buffer.geometry); + gl.drawElements(gl.TRIANGLES, amount * 6, gl.UNSIGNED_SHORT, 0); + } + }; + + /** + * Creates one particle buffer for each child in the container we want to render and updates internal properties + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer[]} The buffers + * @private + */ + ParticleRenderer.prototype.generateBuffers = function generateBuffers (container) + { + var buffers = []; + var size = container._maxSize; + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + for (var i = 0; i < size; i += batchSize) + { + buffers.push(new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize)); + } + + return buffers; + }; + + /** + * Creates one more particle buffer, because container has autoResize feature + * + * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer + * @return {PIXI.ParticleBuffer} generated buffer + * @private + */ + ParticleRenderer.prototype._generateOneMoreBuffer = function _generateOneMoreBuffer (container) + { + var batchSize = container._batchSize; + var dynamicPropertyFlags = container._properties; + + return new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize); + }; + + /** + * Uploads the vertices. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their vertices uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadVertices = function uploadVertices (children, startIndex, amount, array, stride, offset) + { + var w0 = 0; + var w1 = 0; + var h0 = 0; + var h1 = 0; + + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var texture = sprite._texture; + var sx = sprite.scale.x; + var sy = sprite.scale.y; + var trim = texture.trim; + var orig = texture.orig; + + if (trim) + { + // if the sprite is trimmed and is not a tilingsprite then we need to add the + // extra space before transforming the sprite coords.. + w1 = trim.x - (sprite.anchor.x * orig.width); + w0 = w1 + trim.width; + + h1 = trim.y - (sprite.anchor.y * orig.height); + h0 = h1 + trim.height; + } + else + { + w0 = (orig.width) * (1 - sprite.anchor.x); + w1 = (orig.width) * -sprite.anchor.x; + + h0 = orig.height * (1 - sprite.anchor.y); + h1 = orig.height * -sprite.anchor.y; + } + + array[offset] = w1 * sx; + array[offset + 1] = h1 * sy; + + array[offset + stride] = w0 * sx; + array[offset + stride + 1] = h1 * sy; + + array[offset + (stride * 2)] = w0 * sx; + array[offset + (stride * 2) + 1] = h0 * sy; + + array[offset + (stride * 3)] = w1 * sx; + array[offset + (stride * 3) + 1] = h0 * sy; + + offset += stride * 4; + } + }; + + /** + * Uploads the position. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their positions uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadPosition = function uploadPosition (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spritePosition = children[startIndex + i].position; + + array[offset] = spritePosition.x; + array[offset + 1] = spritePosition.y; + + array[offset + stride] = spritePosition.x; + array[offset + stride + 1] = spritePosition.y; + + array[offset + (stride * 2)] = spritePosition.x; + array[offset + (stride * 2) + 1] = spritePosition.y; + + array[offset + (stride * 3)] = spritePosition.x; + array[offset + (stride * 3) + 1] = spritePosition.y; + + offset += stride * 4; + } + }; + + /** + * Uploads the rotiation. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadRotation = function uploadRotation (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; i++) + { + var spriteRotation = children[startIndex + i].rotation; + + array[offset] = spriteRotation; + array[offset + stride] = spriteRotation; + array[offset + (stride * 2)] = spriteRotation; + array[offset + (stride * 3)] = spriteRotation; + + offset += stride * 4; + } + }; + + /** + * Uploads the Uvs + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadUvs = function uploadUvs (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var textureUvs = children[startIndex + i]._texture._uvs; + + if (textureUvs) + { + array[offset] = textureUvs.x0; + array[offset + 1] = textureUvs.y0; + + array[offset + stride] = textureUvs.x1; + array[offset + stride + 1] = textureUvs.y1; + + array[offset + (stride * 2)] = textureUvs.x2; + array[offset + (stride * 2) + 1] = textureUvs.y2; + + array[offset + (stride * 3)] = textureUvs.x3; + array[offset + (stride * 3) + 1] = textureUvs.y3; + + offset += stride * 4; + } + else + { + // TODO you know this can be easier! + array[offset] = 0; + array[offset + 1] = 0; + + array[offset + stride] = 0; + array[offset + stride + 1] = 0; + + array[offset + (stride * 2)] = 0; + array[offset + (stride * 2) + 1] = 0; + + array[offset + (stride * 3)] = 0; + array[offset + (stride * 3) + 1] = 0; + + offset += stride * 4; + } + } + }; + + /** + * Uploads the tint. + * + * @param {PIXI.DisplayObject[]} children - the array of display objects to render + * @param {number} startIndex - the index to start from in the children array + * @param {number} amount - the amount of children that will have their rotation uploaded + * @param {number[]} array - The vertices to upload. + * @param {number} stride - Stride to use for iteration. + * @param {number} offset - Offset to start at. + */ + ParticleRenderer.prototype.uploadTint = function uploadTint (children, startIndex, amount, array, stride, offset) + { + for (var i = 0; i < amount; ++i) + { + var sprite = children[startIndex + i]; + var premultiplied = sprite._texture.baseTexture.premultiplyAlpha; + var alpha = sprite.alpha; + // we dont call extra function if alpha is 1.0, that's faster + var argb = alpha < 1.0 && premultiplied ? premultiplyTint(sprite._tintRGB, alpha) + : sprite._tintRGB + (alpha * 255 << 24); + + array[offset] = argb; + array[offset + stride] = argb; + array[offset + (stride * 2)] = argb; + array[offset + (stride * 3)] = argb; + + offset += stride * 4; + } + }; + + /** + * Destroys the ParticleRenderer. + */ + ParticleRenderer.prototype.destroy = function destroy () + { + ObjectRenderer.prototype.destroy.call(this); + + if (this.shader) + { + this.shader.destroy(); + this.shader = null; + } + + this.tempMatrix = null; + }; + + return ParticleRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/spritesheet - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/spritesheet is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Utility class for maintaining reference to a collection + * of Textures on a single Spritesheet. + * + * To access a sprite sheet from your code pass its JSON data file to Pixi's loader: + * + * ```js + * PIXI.Loader.shared.add("images/spritesheet.json").load(setup); + * + * function setup() { + * let sheet = PIXI.Loader.shared.resources["images/spritesheet.json"].spritesheet; + * ... + * } + * ``` + * With the `sheet.textures` you can create Sprite objects,`sheet.animations` can be used to create an AnimatedSprite. + * + * Sprite sheets can be packed using tools like {@link https://codeandweb.com/texturepacker|TexturePacker}, + * {@link https://renderhjs.net/shoebox/|Shoebox} or {@link https://github.com/krzysztof-o/spritesheet.js|Spritesheet.js}. + * Default anchor points (see {@link PIXI.Texture#defaultAnchor}) and grouping of animation sprites are currently only + * supported by TexturePacker. + * + * @class + * @memberof PIXI + */ +var Spritesheet = function Spritesheet(baseTexture, data, resolutionFilename) +{ + if ( resolutionFilename === void 0 ) resolutionFilename = null; + + /** + * Reference to ths source texture + * @type {PIXI.BaseTexture} + */ + this.baseTexture = baseTexture; + + /** + * A map containing all textures of the sprite sheet. + * Can be used to create a {@link PIXI.Sprite|Sprite}: + * ```js + * new PIXI.Sprite(sheet.textures["image.png"]); + * ``` + * @member {Object} + */ + this.textures = {}; + + /** + * A map containing the textures for each animation. + * Can be used to create an {@link PIXI.AnimatedSprite|AnimatedSprite}: + * ```js + * new PIXI.AnimatedSprite(sheet.animations["anim_name"]) + * ``` + * @member {Object} + */ + this.animations = {}; + + /** + * Reference to the original JSON data. + * @type {Object} + */ + this.data = data; + + /** + * The resolution of the spritesheet. + * @type {number} + */ + this.resolution = this._updateResolution( + resolutionFilename + || (this.baseTexture.resource ? this.baseTexture.resource.url : null) + ); + + /** + * Map of spritesheet frames. + * @type {Object} + * @private + */ + this._frames = this.data.frames; + + /** + * Collection of frame names. + * @type {string[]} + * @private + */ + this._frameKeys = Object.keys(this._frames); + + /** + * Current batch index being processed. + * @type {number} + * @private + */ + this._batchIndex = 0; + + /** + * Callback when parse is completed. + * @type {Function} + * @private + */ + this._callback = null; +}; + +var staticAccessors$4 = { BATCH_SIZE: { configurable: true } }; + +/** + * Generate the resolution from the filename or fallback + * to the meta.scale field of the JSON data. + * + * @private + * @param {string} resolutionFilename - The filename to use for resolving + * the default resolution. + * @return {number} Resolution to use for spritesheet. + */ +staticAccessors$4.BATCH_SIZE.get = function () +{ + return 1000; +}; + +Spritesheet.prototype._updateResolution = function _updateResolution (resolutionFilename) +{ + var scale = this.data.meta.scale; + + // Use a defaultValue of `null` to check if a url-based resolution is set + var resolution = getResolutionOfUrl(resolutionFilename, null); + + // No resolution found via URL + if (resolution === null) + { + // Use the scale value or default to 1 + resolution = scale !== undefined ? parseFloat(scale) : 1; + } + + // For non-1 resolutions, update baseTexture + if (resolution !== 1) + { + this.baseTexture.setResolution(resolution); + } + + return resolution; +}; + +/** + * Parser spritesheet from loaded data. This is done asynchronously + * to prevent creating too many Texture within a single process. + * + * @param {Function} callback - Callback when complete returns + * a map of the Textures for this spritesheet. + */ +Spritesheet.prototype.parse = function parse (callback) +{ + this._batchIndex = 0; + this._callback = callback; + + if (this._frameKeys.length <= Spritesheet.BATCH_SIZE) + { + this._processFrames(0); + this._processAnimations(); + this._parseComplete(); + } + else + { + this._nextBatch(); + } +}; + +/** + * Process a batch of frames + * + * @private + * @param {number} initialFrameIndex - The index of frame to start. + */ +Spritesheet.prototype._processFrames = function _processFrames (initialFrameIndex) +{ + var frameIndex = initialFrameIndex; + var maxFrames = Spritesheet.BATCH_SIZE; + + while (frameIndex - initialFrameIndex < maxFrames && frameIndex < this._frameKeys.length) + { + var i = this._frameKeys[frameIndex]; + var data = this._frames[i]; + var rect = data.frame; + + if (rect) + { + var frame = null; + var trim = null; + var sourceSize = data.trimmed !== false && data.sourceSize + ? data.sourceSize : data.frame; + + var orig = new Rectangle( + 0, + 0, + Math.floor(sourceSize.w) / this.resolution, + Math.floor(sourceSize.h) / this.resolution + ); + + if (data.rotated) + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.h) / this.resolution, + Math.floor(rect.w) / this.resolution + ); + } + else + { + frame = new Rectangle( + Math.floor(rect.x) / this.resolution, + Math.floor(rect.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + // Check to see if the sprite is trimmed + if (data.trimmed !== false && data.spriteSourceSize) + { + trim = new Rectangle( + Math.floor(data.spriteSourceSize.x) / this.resolution, + Math.floor(data.spriteSourceSize.y) / this.resolution, + Math.floor(rect.w) / this.resolution, + Math.floor(rect.h) / this.resolution + ); + } + + this.textures[i] = new Texture( + this.baseTexture, + frame, + orig, + trim, + data.rotated ? 2 : 0, + data.anchor + ); + + // lets also add the frame to pixi's global cache for 'from' and 'fromLoader' functions + Texture.addToCache(this.textures[i], i); + } + + frameIndex++; + } +}; + +/** + * Parse animations config + * + * @private + */ +Spritesheet.prototype._processAnimations = function _processAnimations () +{ + var animations = this.data.animations || {}; + + for (var animName in animations) + { + this.animations[animName] = []; + for (var i = 0; i < animations[animName].length; i++) + { + var frameName = animations[animName][i]; + + this.animations[animName].push(this.textures[frameName]); + } + } +}; + +/** + * The parse has completed. + * + * @private + */ +Spritesheet.prototype._parseComplete = function _parseComplete () +{ + var callback = this._callback; + + this._callback = null; + this._batchIndex = 0; + callback.call(this, this.textures); +}; + +/** + * Begin the next batch of textures. + * + * @private + */ +Spritesheet.prototype._nextBatch = function _nextBatch () +{ + var this$1 = this; + + this._processFrames(this._batchIndex * Spritesheet.BATCH_SIZE); + this._batchIndex++; + setTimeout(function () { + if (this$1._batchIndex * Spritesheet.BATCH_SIZE < this$1._frameKeys.length) + { + this$1._nextBatch(); + } + else + { + this$1._processAnimations(); + this$1._parseComplete(); + } + }, 0); +}; + +/** + * Destroy Spritesheet and don't use after this. + * + * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well + */ +Spritesheet.prototype.destroy = function destroy (destroyBase) +{ + if ( destroyBase === void 0 ) destroyBase = false; + + for (var i in this.textures) + { + this.textures[i].destroy(); + } + this._frames = null; + this._frameKeys = null; + this.data = null; + this.textures = null; + if (destroyBase) + { + this.baseTexture.destroy(); + } + this.baseTexture = null; +}; + +Object.defineProperties( Spritesheet, staticAccessors$4 ); + +/** + * {@link PIXI.Loader Loader} middleware for loading texture atlases that have been created with + * TexturePacker or similar JSON-based spritesheet. + * + * This middleware automatically generates Texture resources. + * + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var SpritesheetLoader = function SpritesheetLoader () {}; + +SpritesheetLoader.use = function use (resource, next) +{ + var imageResourceName = (resource.name) + "_image"; + + // skip if no data, its not json, it isn't spritesheet data, or the image resource already exists + if (!resource.data + || resource.type !== LoaderResource.TYPE.JSON + || !resource.data.frames + || this.resources[imageResourceName] + ) + { + next(); + + return; + } + + var loadOptions = { + crossOrigin: resource.crossOrigin, + metadata: resource.metadata.imageMetadata, + parentResource: resource, + }; + + var resourcePath = SpritesheetLoader.getResourcePath(resource, this.baseUrl); + + // load the image for this sheet + this.add(imageResourceName, resourcePath, loadOptions, function onImageLoad(res) + { + if (res.error) + { + next(res.error); + + return; + } + + var spritesheet = new Spritesheet( + res.texture.baseTexture, + resource.data, + resource.url + ); + + spritesheet.parse(function () { + resource.spritesheet = spritesheet; + resource.textures = spritesheet.textures; + next(); + }); + }); +}; + +/** + * Get the spritesheets root path + * @param {PIXI.LoaderResource} resource - Resource to check path + * @param {string} baseUrl - Base root url + */ +SpritesheetLoader.getResourcePath = function getResourcePath (resource, baseUrl) +{ + // Prepend url path unless the resource image is a data url + if (resource.isDataUrl) + { + return resource.data.meta.image; + } + + return url.resolve(resource.url.replace(baseUrl, ''), resource.data.meta.image); +}; + +/*! + * @pixi/sprite-tiling - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/sprite-tiling is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$1 = new Point(); + +var vertex$2 = "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 translationMatrix;\nuniform mat3 uTransform;\n\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = (uTransform * vec3(aTextureCoord, 1.0)).xy;\n}\n"; + +var fragment$2 = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\nuniform mat3 uMapCoord;\nuniform vec4 uClampFrame;\nuniform vec2 uClampOffset;\n\nvoid main(void)\n{\n vec2 coord = mod(vTextureCoord - uClampOffset, vec2(1.0, 1.0)) + uClampOffset;\n coord = (uMapCoord * vec3(coord, 1.0)).xy;\n coord = clamp(coord, uClampFrame.xy, uClampFrame.zw);\n\n vec4 sample = texture2D(uSampler, coord);\n gl_FragColor = sample * uColor;\n}\n"; + +var fragmentSimple = "varying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform vec4 uColor;\n\nvoid main(void)\n{\n vec4 sample = texture2D(uSampler, vTextureCoord);\n gl_FragColor = sample * uColor;\n}\n"; + +var tempMat$1 = new Matrix(); + +/** + * WebGL renderer plugin for tiling sprites + * + * @class + * @memberof PIXI + * @extends PIXI.ObjectRenderer + */ +var TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) { + function TilingSpriteRenderer(renderer) + { + ObjectRenderer.call(this, renderer); + + var uniforms = { globals: this.renderer.globalUniforms }; + + this.shader = Shader.from(vertex$2, fragment$2, uniforms); + + this.simpleShader = Shader.from(vertex$2, fragmentSimple, uniforms); + + this.quad = new QuadUv(); + } + + if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer; + TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); + TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer; + + /** + * + * @param {PIXI.TilingSprite} ts tilingSprite to be rendered + */ + TilingSpriteRenderer.prototype.render = function render (ts) + { + var renderer = this.renderer; + var quad = this.quad; + + var vertices = quad.vertices; + + vertices[0] = vertices[6] = (ts._width) * -ts.anchor.x; + vertices[1] = vertices[3] = ts._height * -ts.anchor.y; + + vertices[2] = vertices[4] = (ts._width) * (1.0 - ts.anchor.x); + vertices[5] = vertices[7] = ts._height * (1.0 - ts.anchor.y); + + if (ts.uvRespectAnchor) + { + vertices = quad.uvs; + + vertices[0] = vertices[6] = -ts.anchor.x; + vertices[1] = vertices[3] = -ts.anchor.y; + + vertices[2] = vertices[4] = 1.0 - ts.anchor.x; + vertices[5] = vertices[7] = 1.0 - ts.anchor.y; + } + + quad.invalidate(); + + var tex = ts._texture; + var baseTex = tex.baseTexture; + var lt = ts.tileTransform.localTransform; + var uv = ts.uvMatrix; + var isSimple = baseTex.isPowerOfTwo + && tex.frame.width === baseTex.width && tex.frame.height === baseTex.height; + + // auto, force repeat wrapMode for big tiling textures + if (isSimple) + { + if (!baseTex._glTextures[renderer.CONTEXT_UID]) + { + if (baseTex.wrapMode === WRAP_MODES.CLAMP) + { + baseTex.wrapMode = WRAP_MODES.REPEAT; + } + } + else + { + isSimple = baseTex.wrapMode !== WRAP_MODES.CLAMP; + } + } + + var shader = isSimple ? this.simpleShader : this.shader; + + var w = tex.width; + var h = tex.height; + var W = ts._width; + var H = ts._height; + + tempMat$1.set(lt.a * w / W, + lt.b * w / H, + lt.c * h / W, + lt.d * h / H, + lt.tx / W, + lt.ty / H); + + // that part is the same as above: + // tempMat.identity(); + // tempMat.scale(tex.width, tex.height); + // tempMat.prepend(lt); + // tempMat.scale(1.0 / ts._width, 1.0 / ts._height); + + tempMat$1.invert(); + if (isSimple) + { + tempMat$1.prepend(uv.mapCoord); + } + else + { + shader.uniforms.uMapCoord = uv.mapCoord.toArray(true); + shader.uniforms.uClampFrame = uv.uClampFrame; + shader.uniforms.uClampOffset = uv.uClampOffset; + } + + shader.uniforms.uTransform = tempMat$1.toArray(true); + shader.uniforms.uColor = premultiplyTintToRgba(ts.tint, ts.worldAlpha, + shader.uniforms.uColor, baseTex.premultiplyAlpha); + shader.uniforms.translationMatrix = ts.transform.worldTransform.toArray(true); + shader.uniforms.uSampler = tex; + + renderer.shader.bind(shader); + renderer.geometry.bind(quad);// , renderer.shader.getGLShader()); + + renderer.state.setBlendMode(correctBlendMode(ts.blendMode, baseTex.premultiplyAlpha)); + renderer.geometry.draw(this.renderer.gl.TRIANGLES, 6, 0); + }; + + return TilingSpriteRenderer; +}(ObjectRenderer)); + +/*! + * @pixi/text-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/text-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * A BitmapText object will create a line or multiple lines of text using bitmap font. + * + * The primary advantage of this class over Text is that all of your textures are pre-generated and loading, + * meaning that rendering is fast, and changing text has no performance implications. + * + * The primary disadvantage is that you need to preload the bitmap font assets, and thus the styling is set in stone. + * Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters. + * + * To split a line you can use '\n', '\r' or '\r\n' in your string. + * + * You can generate the fnt files using + * http://www.angelcode.com/products/bmfont/ for Windows or + * http://www.bmglyph.com/ for Mac. + * + * A BitmapText can only be created when the font is loaded. + * + * ```js + * // in this case the font is in a file called 'desyrel.fnt' + * let bitmapText = new PIXI.BitmapText("text using a fancy font!", {font: "35px Desyrel", align: "right"}); + * ``` + * + * @class + * @extends PIXI.Container + * @memberof PIXI + */ +var BitmapText = /*@__PURE__*/(function (Container) { + function BitmapText(text, style) + { + var this$1 = this; + if ( style === void 0 ) style = {}; + + Container.call(this); + + /** + * Private tracker for the width of the overall text + * + * @member {number} + * @private + */ + this._textWidth = 0; + + /** + * Private tracker for the height of the overall text + * + * @member {number} + * @private + */ + this._textHeight = 0; + + /** + * Private tracker for the letter sprite pool. + * + * @member {PIXI.Sprite[]} + * @private + */ + this._glyphs = []; + + /** + * Private tracker for the current style. + * + * @member {object} + * @private + */ + this._font = { + tint: style.tint !== undefined ? style.tint : 0xFFFFFF, + align: style.align || 'left', + name: null, + size: 0, + }; + + /** + * Private tracker for the current font. + * + * @member {object} + * @private + */ + this.font = style.font; // run font setter + + /** + * Private tracker for the current text. + * + * @member {string} + * @private + */ + this._text = text; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting value to 0 + * + * @member {number} + * @private + */ + this._maxWidth = 0; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * ie: when trying to vertically align. + * + * @member {number} + * @private + */ + this._maxLineHeight = 0; + + /** + * Letter spacing. This is useful for setting the space between characters. + * @member {number} + * @private + */ + this._letterSpacing = 0; + + /** + * Text anchor. read-only + * + * @member {PIXI.ObservablePoint} + * @private + */ + this._anchor = new ObservablePoint(function () { this$1.dirty = true; }, this, 0, 0); + + /** + * The dirty state of this object. + * + * @member {boolean} + */ + this.dirty = false; + + /** + * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation. + * Advantages can include sharper image quality (like text) and faster rendering on canvas. + * The main disadvantage is movement of objects may appear less smooth. + * To set the global default, change {@link PIXI.settings.ROUND_PIXELS} + * + * @member {boolean} + * @default false + */ + this.roundPixels = settings.ROUND_PIXELS; + + this.updateText(); + } + + if ( Container ) BitmapText.__proto__ = Container; + BitmapText.prototype = Object.create( Container && Container.prototype ); + BitmapText.prototype.constructor = BitmapText; + + var prototypeAccessors = { tint: { configurable: true },align: { configurable: true },anchor: { configurable: true },font: { configurable: true },text: { configurable: true },maxWidth: { configurable: true },maxLineHeight: { configurable: true },textWidth: { configurable: true },letterSpacing: { configurable: true },textHeight: { configurable: true } }; + + /** + * Renders text and updates it when needed + * + * @private + */ + BitmapText.prototype.updateText = function updateText () + { + var data = BitmapText.fonts[this._font.name]; + var scale = this._font.size / data.size; + var pos = new Point(); + var chars = []; + var lineWidths = []; + var text = this._text.replace(/(?:\r\n|\r)/g, '\n') || ' '; + var textLength = text.length; + var maxWidth = this._maxWidth * data.size / this._font.size; + + var prevCharCode = null; + var lastLineWidth = 0; + var maxLineWidth = 0; + var line = 0; + var lastBreakPos = -1; + var lastBreakWidth = 0; + var spacesRemoved = 0; + var maxLineHeight = 0; + + for (var i = 0; i < textLength; i++) + { + var charCode = text.charCodeAt(i); + var char = text.charAt(i); + + if ((/(?:\s)/).test(char)) + { + lastBreakPos = i; + lastBreakWidth = lastLineWidth; + } + + if (char === '\r' || char === '\n') + { + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + ++line; + ++spacesRemoved; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + continue; + } + + var charData = data.chars[charCode]; + + if (!charData) + { + continue; + } + + if (prevCharCode && charData.kerning[prevCharCode]) + { + pos.x += charData.kerning[prevCharCode]; + } + + chars.push({ + texture: charData.texture, + line: line, + charCode: charCode, + position: new Point(pos.x + charData.xOffset + (this._letterSpacing / 2), pos.y + charData.yOffset), + }); + pos.x += charData.xAdvance + this._letterSpacing; + lastLineWidth = pos.x; + maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height)); + prevCharCode = charCode; + + if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth) + { + ++spacesRemoved; + removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos); + i = lastBreakPos; + lastBreakPos = -1; + + lineWidths.push(lastBreakWidth); + maxLineWidth = Math.max(maxLineWidth, lastBreakWidth); + line++; + + pos.x = 0; + pos.y += data.lineHeight; + prevCharCode = null; + } + } + + var lastChar = text.charAt(text.length - 1); + + if (lastChar !== '\r' && lastChar !== '\n') + { + if ((/(?:\s)/).test(lastChar)) + { + lastLineWidth = lastBreakWidth; + } + + lineWidths.push(lastLineWidth); + maxLineWidth = Math.max(maxLineWidth, lastLineWidth); + } + + var lineAlignOffsets = []; + + for (var i$1 = 0; i$1 <= line; i$1++) + { + var alignOffset = 0; + + if (this._font.align === 'right') + { + alignOffset = maxLineWidth - lineWidths[i$1]; + } + else if (this._font.align === 'center') + { + alignOffset = (maxLineWidth - lineWidths[i$1]) / 2; + } + + lineAlignOffsets.push(alignOffset); + } + + var lenChars = chars.length; + var tint = this.tint; + + for (var i$2 = 0; i$2 < lenChars; i$2++) + { + var c = this._glyphs[i$2]; // get the next glyph sprite + + if (c) + { + c.texture = chars[i$2].texture; + } + else + { + c = new Sprite(chars[i$2].texture); + c.roundPixels = this.roundPixels; + this._glyphs.push(c); + } + + c.position.x = (chars[i$2].position.x + lineAlignOffsets[chars[i$2].line]) * scale; + c.position.y = chars[i$2].position.y * scale; + c.scale.x = c.scale.y = scale; + c.tint = tint; + + if (!c.parent) + { + this.addChild(c); + } + } + + // remove unnecessary children. + for (var i$3 = lenChars; i$3 < this._glyphs.length; ++i$3) + { + this.removeChild(this._glyphs[i$3]); + } + + this._textWidth = maxLineWidth * scale; + this._textHeight = (pos.y + data.lineHeight) * scale; + + // apply anchor + if (this.anchor.x !== 0 || this.anchor.y !== 0) + { + for (var i$4 = 0; i$4 < lenChars; i$4++) + { + this._glyphs[i$4].x -= this._textWidth * this.anchor.x; + this._glyphs[i$4].y -= this._textHeight * this.anchor.y; + } + } + this._maxLineHeight = maxLineHeight * scale; + }; + + /** + * Updates the transform of this object + * + * @private + */ + BitmapText.prototype.updateTransform = function updateTransform () + { + this.validate(); + this.containerUpdateTransform(); + }; + + /** + * Validates text before calling parent's getLocalBounds + * + * @return {PIXI.Rectangle} The rectangular bounding area + */ + BitmapText.prototype.getLocalBounds = function getLocalBounds () + { + this.validate(); + + return Container.prototype.getLocalBounds.call(this); + }; + + /** + * Updates text when needed + * + * @private + */ + BitmapText.prototype.validate = function validate () + { + if (this.dirty) + { + this.updateText(); + this.dirty = false; + } + }; + + /** + * The tint of the BitmapText object. + * + * @member {number} + */ + prototypeAccessors.tint.get = function () + { + return this._font.tint; + }; + + prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.tint = (typeof value === 'number' && value >= 0) ? value : 0xFFFFFF; + + this.dirty = true; + }; + + /** + * The alignment of the BitmapText object. + * + * @member {string} + * @default 'left' + */ + prototypeAccessors.align.get = function () + { + return this._font.align; + }; + + prototypeAccessors.align.set = function (value) // eslint-disable-line require-jsdoc + { + this._font.align = value || 'left'; + + this.dirty = true; + }; + + /** + * The anchor sets the origin point of the text. + * + * The default is `(0,0)`, this means the text's origin is the top left. + * + * Setting the anchor to `(0.5,0.5)` means the text's origin is centered. + * + * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner. + * + * @member {PIXI.Point | number} + */ + prototypeAccessors.anchor.get = function () + { + return this._anchor; + }; + + prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc + { + if (typeof value === 'number') + { + this._anchor.set(value); + } + else + { + this._anchor.copyFrom(value); + } + }; + + /** + * The font descriptor of the BitmapText object. + * + * @member {object} + */ + prototypeAccessors.font.get = function () + { + return this._font; + }; + + prototypeAccessors.font.set = function (value) // eslint-disable-line require-jsdoc + { + if (!value) + { + return; + } + + if (typeof value === 'string') + { + value = value.split(' '); + + this._font.name = value.length === 1 ? value[0] : value.slice(1).join(' '); + this._font.size = value.length >= 2 ? parseInt(value[0], 10) : BitmapText.fonts[this._font.name].size; + } + else + { + this._font.name = value.name; + this._font.size = typeof value.size === 'number' ? value.size : parseInt(value.size, 10); + } + + this.dirty = true; + }; + + /** + * The text of the BitmapText object. + * + * @member {string} + */ + prototypeAccessors.text.get = function () + { + return this._text; + }; + + prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc + { + text = String(text === null || text === undefined ? '' : text); + + if (this._text === text) + { + return; + } + this._text = text; + this.dirty = true; + }; + + /** + * The max width of this bitmap text in pixels. If the text provided is longer than the + * value provided, line breaks will be automatically inserted in the last whitespace. + * Disable by setting the value to 0. + * + * @member {number} + */ + prototypeAccessors.maxWidth.get = function () + { + return this._maxWidth; + }; + + prototypeAccessors.maxWidth.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._maxWidth === value) + { + return; + } + this._maxWidth = value; + this.dirty = true; + }; + + /** + * The max line height. This is useful when trying to use the total height of the Text, + * i.e. when trying to vertically align. + * + * @member {number} + * @readonly + */ + prototypeAccessors.maxLineHeight.get = function () + { + this.validate(); + + return this._maxLineHeight; + }; + + /** + * The width of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textWidth.get = function () + { + this.validate(); + + return this._textWidth; + }; + + /** + * Additional space between characters. + * + * @member {number} + */ + prototypeAccessors.letterSpacing.get = function () + { + return this._letterSpacing; + }; + + prototypeAccessors.letterSpacing.set = function (value) // eslint-disable-line require-jsdoc + { + if (this._letterSpacing !== value) + { + this._letterSpacing = value; + this.dirty = true; + } + }; + + /** + * The height of the overall text, different from fontSize, + * which is defined in the style object. + * + * @member {number} + * @readonly + */ + prototypeAccessors.textHeight.get = function () + { + this.validate(); + + return this._textHeight; + }; + + /** + * Register a bitmap font with data and a texture. + * + * @static + * @param {XMLDocument} xml - The XML document data. + * @param {Object.|PIXI.Texture|PIXI.Texture[]} textures - List of textures for each page. + * If providing an object, the key is the `` element's `file` attribute in the FNT file. + * @return {Object} Result font object with font, size, lineHeight and char fields. + */ + BitmapText.registerFont = function registerFont (xml, textures) + { + var data = {}; + var info = xml.getElementsByTagName('info')[0]; + var common = xml.getElementsByTagName('common')[0]; + var pages = xml.getElementsByTagName('page'); + var res = getResolutionOfUrl(pages[0].getAttribute('file'), settings.RESOLUTION); + var pagesTextures = {}; + + data.font = info.getAttribute('face'); + data.size = parseInt(info.getAttribute('size'), 10); + data.lineHeight = parseInt(common.getAttribute('lineHeight'), 10) / res; + data.chars = {}; + + // Single texture, convert to list + if (textures instanceof Texture) + { + textures = [textures]; + } + + // Convert the input Texture, Textures or object + // into a page Texture lookup by "id" + for (var i = 0; i < pages.length; i++) + { + var id = pages[i].getAttribute('id'); + var file = pages[i].getAttribute('file'); + + pagesTextures[id] = textures instanceof Array ? textures[i] : textures[file]; + } + + // parse letters + var letters = xml.getElementsByTagName('char'); + + for (var i$1 = 0; i$1 < letters.length; i$1++) + { + var letter = letters[i$1]; + var charCode = parseInt(letter.getAttribute('id'), 10); + var page = letter.getAttribute('page') || 0; + var textureRect = new Rectangle( + (parseInt(letter.getAttribute('x'), 10) / res) + (pagesTextures[page].frame.x / res), + (parseInt(letter.getAttribute('y'), 10) / res) + (pagesTextures[page].frame.y / res), + parseInt(letter.getAttribute('width'), 10) / res, + parseInt(letter.getAttribute('height'), 10) / res + ); + + data.chars[charCode] = { + xOffset: parseInt(letter.getAttribute('xoffset'), 10) / res, + yOffset: parseInt(letter.getAttribute('yoffset'), 10) / res, + xAdvance: parseInt(letter.getAttribute('xadvance'), 10) / res, + kerning: {}, + texture: new Texture(pagesTextures[page].baseTexture, textureRect), + page: page, + }; + } + + // parse kernings + var kernings = xml.getElementsByTagName('kerning'); + + for (var i$2 = 0; i$2 < kernings.length; i$2++) + { + var kerning = kernings[i$2]; + var first = parseInt(kerning.getAttribute('first'), 10) / res; + var second = parseInt(kerning.getAttribute('second'), 10) / res; + var amount = parseInt(kerning.getAttribute('amount'), 10) / res; + + if (data.chars[second]) + { + data.chars[second].kerning[first] = amount; + } + } + + // I'm leaving this as a temporary fix so we can test the bitmap fonts in v3 + // but it's very likely to change + BitmapText.fonts[data.font] = data; + + return data; + }; + + Object.defineProperties( BitmapText.prototype, prototypeAccessors ); + + return BitmapText; +}(Container)); + +BitmapText.fonts = {}; + +/** + * {@link PIXI.Loader Loader} middleware for loading + * bitmap-based fonts suitable for using with {@link PIXI.BitmapText}. + * @class + * @memberof PIXI + * @implements PIXI.ILoaderPlugin + */ +var BitmapFontLoader = function BitmapFontLoader () {}; + +BitmapFontLoader.parse = function parse (resource, texture) +{ + resource.bitmapFont = BitmapText.registerFont(resource.data, texture); +}; + +/** + * Called when the plugin is installed. + * + * @see PIXI.Loader.registerPlugin + */ +BitmapFontLoader.add = function add () +{ + LoaderResource.setExtensionXhrType('fnt', LoaderResource.XHR_RESPONSE_TYPE.DOCUMENT); +}; + +/** + * Replacement for NodeJS's path.dirname + * @private + * @param {string} url Path to get directory for + */ +BitmapFontLoader.dirname = function dirname (url) +{ + var dir = url + .replace(/\/$/, '') // replace trailing slash + .replace(/\/[^\/]*$/, ''); // remove everything after the last + + // File request is relative, use current directory + if (dir === url) + { + return '.'; + } + // Started with a slash + else if (dir === '') + { + return '/'; + } + + return dir; +}; + +/** + * Called after a resource is loaded. + * @see PIXI.Loader.loaderMiddleware + * @param {PIXI.LoaderResource} resource + * @param {function} next + */ +BitmapFontLoader.use = function use (resource, next) +{ + // skip if no data or not xml data + if (!resource.data || resource.type !== LoaderResource.TYPE.XML) + { + next(); + + return; + } + + // skip if not bitmap font data, using some silly duck-typing + if (resource.data.getElementsByTagName('page').length === 0 + || resource.data.getElementsByTagName('info').length === 0 + || resource.data.getElementsByTagName('info')[0].getAttribute('face') === null + ) + { + next(); + + return; + } + + var xmlUrl = !resource.isDataUrl ? BitmapFontLoader.dirname(resource.url) : ''; + + if (resource.isDataUrl) + { + if (xmlUrl === '.') + { + xmlUrl = ''; + } + + if (this.baseUrl && xmlUrl) + { + // if baseurl has a trailing slash then add one to xmlUrl so the replace works below + if (this.baseUrl.charAt(this.baseUrl.length - 1) === '/') + { + xmlUrl += '/'; + } + } + } + + // remove baseUrl from xmlUrl + xmlUrl = xmlUrl.replace(this.baseUrl, ''); + + // if there is an xmlUrl now, it needs a trailing slash. Ensure that it does if the string isn't empty. + if (xmlUrl && xmlUrl.charAt(xmlUrl.length - 1) !== '/') + { + xmlUrl += '/'; + } + + var pages = resource.data.getElementsByTagName('page'); + var textures = {}; + + // Handle completed, when the number of textures + // load is the same number as references in the fnt file + var completed = function (page) { + textures[page.metadata.pageFile] = page.texture; + + if (Object.keys(textures).length === pages.length) + { + BitmapFontLoader.parse(resource, textures); + next(); + } + }; + + for (var i = 0; i < pages.length; ++i) + { + var pageFile = pages[i].getAttribute('file'); + var url = xmlUrl + pageFile; + var exists = false; + + // incase the image is loaded outside + // using the same loader, resource will be available + for (var name in this.resources) + { + var bitmapResource = this.resources[name]; + + if (bitmapResource.url === url) + { + bitmapResource.metadata.pageFile = pageFile; + if (bitmapResource.texture) + { + completed(bitmapResource); + } + else + { + bitmapResource.onAfterMiddleware.add(completed); + } + exists = true; + break; + } + } + + // texture is not loaded, we'll attempt to add + // it to the load and add the texture to the list + if (!exists) + { + // Standard loading options for images + var options = { + crossOrigin: resource.crossOrigin, + loadType: LoaderResource.LOAD_TYPE.IMAGE, + metadata: Object.assign( + { pageFile: pageFile }, + resource.metadata.imageMetadata + ), + parentResource: resource, + }; + + this.add(url, options, completed); + } + } +}; + +/*! + * @pixi/filter-color-matrix - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/filter-color-matrix is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var fragment$3 = "varying vec2 vTextureCoord;\nuniform sampler2D uSampler;\nuniform float m[20];\nuniform float uAlpha;\n\nvoid main(void)\n{\n vec4 c = texture2D(uSampler, vTextureCoord);\n\n if (uAlpha == 0.0) {\n gl_FragColor = c;\n return;\n }\n\n // Un-premultiply alpha before applying the color matrix. See issue #3539.\n if (c.a > 0.0) {\n c.rgb /= c.a;\n }\n\n vec4 result;\n\n result.r = (m[0] * c.r);\n result.r += (m[1] * c.g);\n result.r += (m[2] * c.b);\n result.r += (m[3] * c.a);\n result.r += m[4];\n\n result.g = (m[5] * c.r);\n result.g += (m[6] * c.g);\n result.g += (m[7] * c.b);\n result.g += (m[8] * c.a);\n result.g += m[9];\n\n result.b = (m[10] * c.r);\n result.b += (m[11] * c.g);\n result.b += (m[12] * c.b);\n result.b += (m[13] * c.a);\n result.b += m[14];\n\n result.a = (m[15] * c.r);\n result.a += (m[16] * c.g);\n result.a += (m[17] * c.b);\n result.a += (m[18] * c.a);\n result.a += m[19];\n\n vec3 rgb = mix(c.rgb, result.rgb, uAlpha);\n\n // Premultiply alpha again.\n rgb *= result.a;\n\n gl_FragColor = vec4(rgb, result.a);\n}\n"; + +/** + * The ColorMatrixFilter class lets you apply a 5x4 matrix transformation on the RGBA + * color and alpha values of every pixel on your displayObject to produce a result + * with a new set of RGBA color and alpha values. It's pretty powerful! + * + * ```js + * let colorMatrix = new PIXI.filters.ColorMatrixFilter(); + * container.filters = [colorMatrix]; + * colorMatrix.contrast(2); + * ``` + * @author Clément Chenebault + * @class + * @extends PIXI.Filter + * @memberof PIXI.filters + */ +var ColorMatrixFilter = /*@__PURE__*/(function (Filter) { + function ColorMatrixFilter() + { + var uniforms = { + m: new Float32Array([1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0]), + uAlpha: 1, + }; + + Filter.call(this, defaultFilter, fragment$3, uniforms); + + this.alpha = 1; + } + + if ( Filter ) ColorMatrixFilter.__proto__ = Filter; + ColorMatrixFilter.prototype = Object.create( Filter && Filter.prototype ); + ColorMatrixFilter.prototype.constructor = ColorMatrixFilter; + + var prototypeAccessors = { matrix: { configurable: true },alpha: { configurable: true } }; + + /** + * Transforms current matrix and set the new one + * + * @param {number[]} matrix - 5x4 matrix + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype._loadMatrix = function _loadMatrix (matrix, multiply) + { + if ( multiply === void 0 ) multiply = false; + + var newMatrix = matrix; + + if (multiply) + { + this._multiply(newMatrix, this.uniforms.m, matrix); + newMatrix = this._colorMatrix(newMatrix); + } + + // set the new matrix + this.uniforms.m = newMatrix; + }; + + /** + * Multiplies two mat5's + * + * @private + * @param {number[]} out - 5x4 matrix the receiving matrix + * @param {number[]} a - 5x4 matrix the first operand + * @param {number[]} b - 5x4 matrix the second operand + * @returns {number[]} 5x4 matrix + */ + ColorMatrixFilter.prototype._multiply = function _multiply (out, a, b) + { + // Red Channel + out[0] = (a[0] * b[0]) + (a[1] * b[5]) + (a[2] * b[10]) + (a[3] * b[15]); + out[1] = (a[0] * b[1]) + (a[1] * b[6]) + (a[2] * b[11]) + (a[3] * b[16]); + out[2] = (a[0] * b[2]) + (a[1] * b[7]) + (a[2] * b[12]) + (a[3] * b[17]); + out[3] = (a[0] * b[3]) + (a[1] * b[8]) + (a[2] * b[13]) + (a[3] * b[18]); + out[4] = (a[0] * b[4]) + (a[1] * b[9]) + (a[2] * b[14]) + (a[3] * b[19]) + a[4]; + + // Green Channel + out[5] = (a[5] * b[0]) + (a[6] * b[5]) + (a[7] * b[10]) + (a[8] * b[15]); + out[6] = (a[5] * b[1]) + (a[6] * b[6]) + (a[7] * b[11]) + (a[8] * b[16]); + out[7] = (a[5] * b[2]) + (a[6] * b[7]) + (a[7] * b[12]) + (a[8] * b[17]); + out[8] = (a[5] * b[3]) + (a[6] * b[8]) + (a[7] * b[13]) + (a[8] * b[18]); + out[9] = (a[5] * b[4]) + (a[6] * b[9]) + (a[7] * b[14]) + (a[8] * b[19]) + a[9]; + + // Blue Channel + out[10] = (a[10] * b[0]) + (a[11] * b[5]) + (a[12] * b[10]) + (a[13] * b[15]); + out[11] = (a[10] * b[1]) + (a[11] * b[6]) + (a[12] * b[11]) + (a[13] * b[16]); + out[12] = (a[10] * b[2]) + (a[11] * b[7]) + (a[12] * b[12]) + (a[13] * b[17]); + out[13] = (a[10] * b[3]) + (a[11] * b[8]) + (a[12] * b[13]) + (a[13] * b[18]); + out[14] = (a[10] * b[4]) + (a[11] * b[9]) + (a[12] * b[14]) + (a[13] * b[19]) + a[14]; + + // Alpha Channel + out[15] = (a[15] * b[0]) + (a[16] * b[5]) + (a[17] * b[10]) + (a[18] * b[15]); + out[16] = (a[15] * b[1]) + (a[16] * b[6]) + (a[17] * b[11]) + (a[18] * b[16]); + out[17] = (a[15] * b[2]) + (a[16] * b[7]) + (a[17] * b[12]) + (a[18] * b[17]); + out[18] = (a[15] * b[3]) + (a[16] * b[8]) + (a[17] * b[13]) + (a[18] * b[18]); + out[19] = (a[15] * b[4]) + (a[16] * b[9]) + (a[17] * b[14]) + (a[18] * b[19]) + a[19]; + + return out; + }; + + /** + * Create a Float32 Array and normalize the offset component to 0-1 + * + * @private + * @param {number[]} matrix - 5x4 matrix + * @return {number[]} 5x4 matrix with all values between 0-1 + */ + ColorMatrixFilter.prototype._colorMatrix = function _colorMatrix (matrix) + { + // Create a Float32 Array and normalize the offset component to 0-1 + var m = new Float32Array(matrix); + + m[4] /= 255; + m[9] /= 255; + m[14] /= 255; + m[19] /= 255; + + return m; + }; + + /** + * Adjusts brightness + * + * @param {number} b - value of the brigthness (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.brightness = function brightness (b, multiply) + { + var matrix = [ + b, 0, 0, 0, 0, + 0, b, 0, 0, 0, + 0, 0, b, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the matrices in grey scales + * + * @param {number} scale - value of the grey (0-1, where 0 is black) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.greyscale = function greyscale (scale, multiply) + { + var matrix = [ + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + scale, scale, scale, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the black and white matrice. + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.blackAndWhite = function blackAndWhite (multiply) + { + var matrix = [ + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0.3, 0.6, 0.1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the hue property of the color + * + * @param {number} rotation - in degrees + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.hue = function hue (rotation, multiply) + { + rotation = (rotation || 0) / 180 * Math.PI; + + var cosR = Math.cos(rotation); + var sinR = Math.sin(rotation); + var sqrt = Math.sqrt; + + /* a good approximation for hue rotation + This matrix is far better than the versions with magic luminance constants + formerly used here, but also used in the starling framework (flash) and known from this + old part of the internet: quasimondo.com/archives/000565.php + + This new matrix is based on rgb cube rotation in space. Look here for a more descriptive + implementation as a shader not a general matrix: + https://github.com/evanw/glfx.js/blob/58841c23919bd59787effc0333a4897b43835412/src/filters/adjust/huesaturation.js + + This is the source for the code: + see http://stackoverflow.com/questions/8507885/shift-hue-of-an-rgb-color/8510751#8510751 + */ + + var w = 1 / 3; + var sqrW = sqrt(w); // weight is + + var a00 = cosR + ((1.0 - cosR) * w); + var a01 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a02 = (w * (1.0 - cosR)) + (sqrW * sinR); + + var a10 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a11 = cosR + (w * (1.0 - cosR)); + var a12 = (w * (1.0 - cosR)) - (sqrW * sinR); + + var a20 = (w * (1.0 - cosR)) - (sqrW * sinR); + var a21 = (w * (1.0 - cosR)) + (sqrW * sinR); + var a22 = cosR + (w * (1.0 - cosR)); + + var matrix = [ + a00, a01, a02, 0, 0, + a10, a11, a12, 0, 0, + a20, a21, a22, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the contrast matrix, increase the separation between dark and bright + * Increase contrast : shadows darker and highlights brighter + * Decrease contrast : bring the shadows up and the highlights down + * + * @param {number} amount - value of the contrast (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.contrast = function contrast (amount, multiply) + { + var v = (amount || 0) + 1; + var o = -0.5 * (v - 1); + + var matrix = [ + v, 0, 0, 0, o, + 0, v, 0, 0, o, + 0, 0, v, 0, o, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Set the saturation matrix, increase the separation between colors + * Increase saturation : increase contrast, brightness, and sharpness + * + * @param {number} amount - The saturation amount (0-1) + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.saturate = function saturate (amount, multiply) + { + if ( amount === void 0 ) amount = 0; + + var x = (amount * 2 / 3) + 1; + var y = ((x - 1) * -0.5); + + var matrix = [ + x, y, y, 0, 0, + y, x, y, 0, 0, + y, y, x, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Desaturate image (remove color) + * + * Call the saturate function + * + */ + ColorMatrixFilter.prototype.desaturate = function desaturate () // eslint-disable-line no-unused-vars + { + this.saturate(-1); + }; + + /** + * Negative image (inverse of classic rgb matrix) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.negative = function negative (multiply) + { + var matrix = [ + -1, 0, 0, 1, 0, + 0, -1, 0, 1, 0, + 0, 0, -1, 1, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Sepia image + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.sepia = function sepia (multiply) + { + var matrix = [ + 0.393, 0.7689999, 0.18899999, 0, 0, + 0.349, 0.6859999, 0.16799999, 0, 0, + 0.272, 0.5339999, 0.13099999, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color motion picture process invented in 1916 (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.technicolor = function technicolor (multiply) + { + var matrix = [ + 1.9125277891456083, -0.8545344976951645, -0.09155508482755585, 0, 11.793603434377337, + -0.3087833385928097, 1.7658908555458428, -0.10601743074722245, 0, -70.35205161461398, + -0.231103377548616, -0.7501899197440212, 1.847597816108189, 0, 30.950940869491138, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Polaroid filter + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.polaroid = function polaroid (multiply) + { + var matrix = [ + 1.438, -0.062, -0.062, 0, 0, + -0.122, 1.378, -0.122, 0, 0, + -0.016, -0.016, 1.483, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Filter who transforms : Red -> Blue and Blue -> Red + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.toBGR = function toBGR (multiply) + { + var matrix = [ + 0, 0, 1, 0, 0, + 0, 1, 0, 0, 0, + 1, 0, 0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Color reversal film introduced by Eastman Kodak in 1935. (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.kodachrome = function kodachrome (multiply) + { + var matrix = [ + 1.1285582396593525, -0.3967382283601348, -0.03992559172921793, 0, 63.72958762196502, + -0.16404339962244616, 1.0835251566291304, -0.05498805115633132, 0, 24.732407896706203, + -0.16786010706155763, -0.5603416277695248, 1.6014850761964943, 0, 35.62982807460946, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Brown delicious browni filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.browni = function browni (multiply) + { + var matrix = [ + 0.5997023498159715, 0.34553243048391263, -0.2708298674538042, 0, 47.43192855600873, + -0.037703249837783157, 0.8609577587992641, 0.15059552388459913, 0, -36.96841498319127, + 0.24113635128153335, -0.07441037908422492, 0.44972182064877153, 0, -7.562075277591283, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Vintage filter (thanks Dominic Szablewski) + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.vintage = function vintage (multiply) + { + var matrix = [ + 0.6279345635605994, 0.3202183420819367, -0.03965408211312453, 0, 9.651285835294123, + 0.02578397704808868, 0.6441188644374771, 0.03259127616149294, 0, 7.462829176470591, + 0.0466055556782719, -0.0851232987247891, 0.5241648018700465, 0, 5.159190588235296, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * We don't know exactly what it does, kind of gradient map, but funny to play with! + * + * @param {number} desaturation - Tone values. + * @param {number} toned - Tone values. + * @param {string} lightColor - Tone values, example: `0xFFE580` + * @param {string} darkColor - Tone values, example: `0xFFE580` + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.colorTone = function colorTone (desaturation, toned, lightColor, darkColor, multiply) + { + desaturation = desaturation || 0.2; + toned = toned || 0.15; + lightColor = lightColor || 0xFFE580; + darkColor = darkColor || 0x338000; + + var lR = ((lightColor >> 16) & 0xFF) / 255; + var lG = ((lightColor >> 8) & 0xFF) / 255; + var lB = (lightColor & 0xFF) / 255; + + var dR = ((darkColor >> 16) & 0xFF) / 255; + var dG = ((darkColor >> 8) & 0xFF) / 255; + var dB = (darkColor & 0xFF) / 255; + + var matrix = [ + 0.3, 0.59, 0.11, 0, 0, + lR, lG, lB, desaturation, 0, + dR, dG, dB, toned, 0, + lR - dR, lG - dG, lB - dB, 0, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Night effect + * + * @param {number} intensity - The intensity of the night effect. + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.night = function night (intensity, multiply) + { + intensity = intensity || 0.1; + var matrix = [ + intensity * (-2.0), -intensity, 0, 0, 0, + -intensity, 0, intensity, 0, 0, + 0, intensity, intensity * 2.0, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Predator effect + * + * Erase the current matrix by setting a new indepent one + * + * @param {number} amount - how much the predator feels his future victim + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.predator = function predator (amount, multiply) + { + var matrix = [ + // row 1 + 11.224130630493164 * amount, + -4.794486999511719 * amount, + -2.8746118545532227 * amount, + 0 * amount, + 0.40342438220977783 * amount, + // row 2 + -3.6330697536468506 * amount, + 9.193157196044922 * amount, + -2.951810836791992 * amount, + 0 * amount, + -1.316135048866272 * amount, + // row 3 + -3.2184197902679443 * amount, + -4.2375030517578125 * amount, + 7.476448059082031 * amount, + 0 * amount, + 0.8044459223747253 * amount, + // row 4 + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * LSD effect + * + * Multiply the current matrix + * + * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false, + * just set the current matrix with @param matrix + */ + ColorMatrixFilter.prototype.lsd = function lsd (multiply) + { + var matrix = [ + 2, -0.4, 0.5, 0, 0, + -0.5, 2, -0.4, 0, 0, + -0.4, -0.5, 3, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, multiply); + }; + + /** + * Erase the current matrix by setting the default one + * + */ + ColorMatrixFilter.prototype.reset = function reset () + { + var matrix = [ + 1, 0, 0, 0, 0, + 0, 1, 0, 0, 0, + 0, 0, 1, 0, 0, + 0, 0, 0, 1, 0 ]; + + this._loadMatrix(matrix, false); + }; + + /** + * The matrix of the color matrix filter + * + * @member {number[]} + * @default [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0] + */ + prototypeAccessors.matrix.get = function () + { + return this.uniforms.m; + }; + + prototypeAccessors.matrix.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.m = value; + }; + + /** + * The opacity value to use when mixing the original and resultant colors. + * + * When the value is 0, the original color is used without modification. + * When the value is 1, the result color is used. + * When in the range (0, 1) the color is interpolated between the original and result by this amount. + * + * @member {number} + * @default 1 + */ + prototypeAccessors.alpha.get = function () + { + return this.uniforms.uAlpha; + }; + + prototypeAccessors.alpha.set = function (value) // eslint-disable-line require-jsdoc + { + this.uniforms.uAlpha = value; + }; + + Object.defineProperties( ColorMatrixFilter.prototype, prototypeAccessors ); + + return ColorMatrixFilter; +}(Filter)); + +// Americanized alias +ColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale; + +/*! + * @pixi/mixin-cache-as-bitmap - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mixin-cache-as-bitmap is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var _tempMatrix = new Matrix(); + +DisplayObject.prototype._cacheAsBitmap = false; +DisplayObject.prototype._cacheData = false; + +// figured theres no point adding ALL the extra variables to prototype. +// this model can hold the information needed. This can also be generated on demand as +// most objects are not cached as bitmaps. +/** + * @class + * @ignore + */ +var CacheData = function CacheData() +{ + this.textureCacheId = null; + + this.originalRender = null; + this.originalRenderCanvas = null; + this.originalCalculateBounds = null; + this.originalGetLocalBounds = null; + + this.originalUpdateTransform = null; + this.originalHitTest = null; + this.originalDestroy = null; + this.originalMask = null; + this.originalFilterArea = null; + this.sprite = null; +}; + +Object.defineProperties(DisplayObject.prototype, { + /** + * Set this to true if you want this display object to be cached as a bitmap. + * This basically takes a snap shot of the display object as it is at that moment. It can + * provide a performance benefit for complex static displayObjects. + * To remove simply set this property to `false` + * + * IMPORTANT GOTCHA - Make sure that all your textures are preloaded BEFORE setting this property to true + * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear. + * + * @member {boolean} + * @memberof PIXI.DisplayObject# + */ + cacheAsBitmap: { + get: function get() + { + return this._cacheAsBitmap; + }, + set: function set(value) + { + if (this._cacheAsBitmap === value) + { + return; + } + + this._cacheAsBitmap = value; + + var data; + + if (value) + { + if (!this._cacheData) + { + this._cacheData = new CacheData(); + } + + data = this._cacheData; + + data.originalRender = this.render; + data.originalRenderCanvas = this.renderCanvas; + + data.originalUpdateTransform = this.updateTransform; + data.originalCalculateBounds = this.calculateBounds; + data.originalGetLocalBounds = this.getLocalBounds; + + data.originalDestroy = this.destroy; + + data.originalContainsPoint = this.containsPoint; + + data.originalMask = this._mask; + data.originalFilterArea = this.filterArea; + + this.render = this._renderCached; + this.renderCanvas = this._renderCachedCanvas; + + this.destroy = this._cacheAsBitmapDestroy; + } + else + { + data = this._cacheData; + + if (data.sprite) + { + this._destroyCachedDisplayObject(); + } + + this.render = data.originalRender; + this.renderCanvas = data.originalRenderCanvas; + this.calculateBounds = data.originalCalculateBounds; + this.getLocalBounds = data.originalGetLocalBounds; + + this.destroy = data.originalDestroy; + + this.updateTransform = data.originalUpdateTransform; + this.containsPoint = data.originalContainsPoint; + + this._mask = data.originalMask; + this.filterArea = data.originalFilterArea; + } + }, + }, +}); + +/** + * Renders a cached version of the sprite with WebGL + * + * @private + * @function _renderCached + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCached = function _renderCached(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObject(renderer); + + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._render(renderer); +}; + +/** + * Prepares the WebGL renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObject + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObject = function _initCachedDisplayObject(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // make sure alpha is set to 1 otherwise it will get rendered as invisible! + var cacheAlpha = this.alpha; + + this.alpha = 1; + + // first we flush anything left in the renderer (otherwise it would get rendered to the cached texture) + renderer.batch.flush(); + // this.filters= []; + + // next we find the dimensions of the untransformed object + // this function also calls updatetransform on all its children as part of the measuring. + // This means we don't need to update the transform again in this function + // TODO pass an object to clone too? saves having to create a new one each time! + var bounds = this.getLocalBounds().clone(); + + // add some padding! + if (this.filters) + { + var padding = this.filters[0].padding; + + bounds.pad(padding); + } + + bounds.ceil(settings.RESOLUTION); + + // for now we cache the current renderTarget that the WebGL renderer is currently using. + // this could be more elegant.. + var cachedRenderTexture = renderer.renderTexture.current; + var cachedSourceFrame = renderer.renderTexture.sourceFrame; + var cachedProjectionTransform = renderer.projection.transform; + + // We also store the filter stack - I will definitely look to change how this works a little later down the line. + // const stack = renderer.filterManager.filterStack; + + // this renderTexture will be used to store the cached DisplayObject + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + m.tx = -bounds.x; + m.ty = -bounds.y; + + // reset + this.transform.worldTransform.identity(); + + // set all properties to there original so we can render to a texture + this.render = this._cacheData.originalRender; + + renderer.render(this, renderTexture, true, m, true); + + // now restore the state be setting the new properties + renderer.projection.transform = cachedProjectionTransform; + renderer.renderTexture.bind(cachedRenderTexture, cachedSourceFrame); + + // renderer.filterManager.filterStack = stack; + + this.render = this._renderCached; + // the rest is the same as for Canvas + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Renders a cached version of the sprite with canvas + * + * @private + * @function _renderCachedCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._renderCachedCanvas = function _renderCachedCanvas(renderer) +{ + if (!this.visible || this.worldAlpha <= 0 || !this.renderable) + { + return; + } + + this._initCachedDisplayObjectCanvas(renderer); + + this._cacheData.sprite.worldAlpha = this.worldAlpha; + this._cacheData.sprite._renderCanvas(renderer); +}; + +// TODO this can be the same as the WebGL version.. will need to do a little tweaking first though.. +/** + * Prepares the Canvas renderer to cache the sprite + * + * @private + * @function _initCachedDisplayObjectCanvas + * @memberof PIXI.DisplayObject# + * @param {PIXI.Renderer} renderer - the WebGL renderer + */ +DisplayObject.prototype._initCachedDisplayObjectCanvas = function _initCachedDisplayObjectCanvas(renderer) +{ + if (this._cacheData && this._cacheData.sprite) + { + return; + } + + // get bounds actually transforms the object for us already! + var bounds = this.getLocalBounds(); + + var cacheAlpha = this.alpha; + + this.alpha = 1; + + var cachedRenderTarget = renderer.context; + + bounds.ceil(settings.RESOLUTION); + + var renderTexture = RenderTexture.create(bounds.width, bounds.height); + + var textureCacheId = "cacheAsBitmap_" + (uid()); + + this._cacheData.textureCacheId = textureCacheId; + + BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId); + Texture.addToCache(renderTexture, textureCacheId); + + // need to set // + var m = _tempMatrix; + + this.transform.localTransform.copyTo(m); + m.invert(); + + m.tx -= bounds.x; + m.ty -= bounds.y; + + // m.append(this.transform.worldTransform.) + // set all properties to there original so we can render to a texture + this.renderCanvas = this._cacheData.originalRenderCanvas; + + // renderTexture.render(this, m, true); + renderer.render(this, renderTexture, true, m, false); + + // now restore the state be setting the new properties + renderer.context = cachedRenderTarget; + + this.renderCanvas = this._renderCachedCanvas; + // the rest is the same as for WebGL + this.updateTransform = this.displayObjectUpdateTransform; + this.calculateBounds = this._calculateCachedBounds; + this.getLocalBounds = this._getCachedLocalBounds; + + this._mask = null; + this.filterArea = null; + + // create our cached sprite + var cachedSprite = new Sprite(renderTexture); + + cachedSprite.transform.worldTransform = this.transform.worldTransform; + cachedSprite.anchor.x = -(bounds.x / bounds.width); + cachedSprite.anchor.y = -(bounds.y / bounds.height); + cachedSprite.alpha = cacheAlpha; + cachedSprite._bounds = this._bounds; + + this._cacheData.sprite = cachedSprite; + + this.transform._parentID = -1; + // restore the transform of the cached sprite to avoid the nasty flicker.. + if (!this.parent) + { + this.parent = renderer._tempDisplayObjectParent; + this.updateTransform(); + this.parent = null; + } + else + { + this.updateTransform(); + } + + // map the hit test.. + this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite); +}; + +/** + * Calculates the bounds of the cached sprite + * + * @private + */ +DisplayObject.prototype._calculateCachedBounds = function _calculateCachedBounds() +{ + this._bounds.clear(); + this._cacheData.sprite.transform._worldID = this.transform._worldID; + this._cacheData.sprite._calculateBounds(); + this._lastBoundsID = this._boundsID; +}; + +/** + * Gets the bounds of the cached sprite. + * + * @private + * @return {Rectangle} The local bounds. + */ +DisplayObject.prototype._getCachedLocalBounds = function _getCachedLocalBounds() +{ + return this._cacheData.sprite.getLocalBounds(); +}; + +/** + * Destroys the cached sprite. + * + * @private + */ +DisplayObject.prototype._destroyCachedDisplayObject = function _destroyCachedDisplayObject() +{ + this._cacheData.sprite._texture.destroy(true); + this._cacheData.sprite = null; + + BaseTexture.removeFromCache(this._cacheData.textureCacheId); + Texture.removeFromCache(this._cacheData.textureCacheId); + + this._cacheData.textureCacheId = null; +}; + +/** + * Destroys the cached object. + * + * @private + * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options + * have been set to that value. + * Used when destroying containers, see the Container.destroy method. + */ +DisplayObject.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy(options) +{ + this.cacheAsBitmap = false; + this.destroy(options); +}; + +/*! + * @pixi/mixin-get-child-by-name - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-child-by-name is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * The instance name of the object. + * + * @memberof PIXI.DisplayObject# + * @member {string} name + */ +DisplayObject.prototype.name = null; + +/** + * Returns the display object in the container. + * + * @method getChildByName + * @memberof PIXI.Container# + * @param {string} name - Instance name. + * @return {PIXI.DisplayObject} The child with the specified name. + */ +Container.prototype.getChildByName = function getChildByName(name) +{ + for (var i = 0; i < this.children.length; i++) + { + if (this.children[i].name === name) + { + return this.children[i]; + } + } + + return null; +}; + +/*! + * @pixi/mixin-get-global-position - v5.1.3 + * Compiled Mon, 09 Sep 2019 04:51:53 UTC + * + * @pixi/mixin-get-global-position is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +/** + * Returns the global position of the displayObject. Does not depend on object scale, rotation and pivot. + * + * @method getGlobalPosition + * @memberof PIXI.DisplayObject# + * @param {PIXI.Point} [point=new PIXI.Point()] - The point to write the global value to. + * @param {boolean} [skipUpdate=false] - Setting to true will stop the transforms of the scene graph from + * being updated. This means the calculation returned MAY be out of date BUT will give you a + * nice performance boost. + * @return {PIXI.Point} The updated point. + */ +DisplayObject.prototype.getGlobalPosition = function getGlobalPosition(point, skipUpdate) +{ + if ( point === void 0 ) point = new Point(); + if ( skipUpdate === void 0 ) skipUpdate = false; + + if (this.parent) + { + this.parent.toGlobal(this.position, point, skipUpdate); + } + else + { + point.x = this.position.x; + point.y = this.position.y; + } + + return point; +}; + +/*! + * @pixi/mesh - v5.1.5 + * Compiled Tue, 24 Sep 2019 04:07:05 UTC + * + * @pixi/mesh is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +var tempPoint$2 = new Point(); +var tempPolygon = new Polygon(); + +/*! + * pixi.js - v5.1.4 + * Compiled Sat, 21 Sep 2019 07:35:21 UTC + * + * pixi.js is licensed under the MIT License. + * http://www.opensource.org/licenses/mit-license + */ + +// Install renderer plugins +Renderer.registerPlugin('accessibility', AccessibilityManager); +Renderer.registerPlugin('extract', Extract); +Renderer.registerPlugin('interaction', InteractionManager); +Renderer.registerPlugin('particle', ParticleRenderer); +Renderer.registerPlugin('prepare', Prepare); +Renderer.registerPlugin('batch', BatchRenderer); +Renderer.registerPlugin('tilingSprite', TilingSpriteRenderer); + +Loader$1.registerPlugin(BitmapFontLoader); +Loader$1.registerPlugin(SpritesheetLoader); + +Application.registerPlugin(TickerPlugin); +Application.registerPlugin(AppLoaderPlugin); + +function fromConstructor(constr) { + return constr; +} + +let clipboard_text = ""; +const contexts = []; +const contextIOs = []; +class ImGuiImplInternalRenderer extends ObjectRenderer { + constructor(r) { + super(r); + } + render(owner) { + if (!(owner instanceof ImGuiWindowLayer)) + return; + const window = owner.window; + const io = window.io; + const draw_data = GetDrawData(); + if (draw_data === null) { + throw new Error(); + } + gl || console.log(draw_data); + // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) + const fb_width = io.DisplaySize.x * io.DisplayFramebufferScale.x; + const fb_height = io.DisplaySize.y * io.DisplayFramebufferScale.y; + if (fb_width === 0 || fb_height === 0) { + return; + } + draw_data.ScaleClipRects(io.DisplayFramebufferScale); + // Backup GL state + const last_program = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null; + const last_active_texture = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null; + gl && gl.activeTexture(gl.TEXTURE0); + const last_texture0 = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null; + const last_vertex_array = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null; + const last_array_buffer = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null; + const last_element_array_buffer = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null; + // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode); + const last_viewport = gl && gl.getParameter(gl.VIEWPORT) || null; + const last_scissor_box = gl && gl.getParameter(gl.SCISSOR_BOX) || null; + const last_blend_src_rgb = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null; + const last_blend_dst_rgb = gl && gl.getParameter(gl.BLEND_DST_RGB) || null; + const last_blend_src_alpha = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null; + const last_blend_dst_alpha = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null; + const last_blend_equation_rgb = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null; + const last_blend_equation_alpha = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null; + const last_enable_blend = gl && gl.getParameter(gl.BLEND) || null; + const last_enable_cull_face = gl && gl.getParameter(gl.CULL_FACE) || null; + const last_enable_depth_test = gl && gl.getParameter(gl.DEPTH_TEST) || null; + const last_enable_scissor_test = gl && gl.getParameter(gl.SCISSOR_TEST) || null; + gl.clearColor(0, 0, 0, 0); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl && gl.bindVertexArray(g_VaoHandle); + // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill + gl && gl.enable(gl.BLEND); + gl && gl.blendEquation(gl.FUNC_ADD); + gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE); + gl && gl.disable(gl.CULL_FACE); + gl && gl.disable(gl.DEPTH_TEST); + gl && gl.enable(gl.SCISSOR_TEST); + // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + // Setup viewport, orthographic projection matrix + // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps. + gl && gl.viewport(0, 0, fb_width, fb_height); + const L = draw_data.DisplayPos.x; + const R = draw_data.DisplayPos.x + draw_data.DisplaySize.x; + const T = draw_data.DisplayPos.y; + const B = draw_data.DisplayPos.y + draw_data.DisplaySize.y; + // we actually flip the bottom and top here to match with PIXI's texture usage + const ortho_projection = new Float32Array([ + 2.0 / (R - L), 0.0, 0.0, 0.0, + 0.0, 2.0 / (B - T), 0.0, 0.0, + 0.0, 0.0, -1.0, 0.0, + (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0, + ]); + gl && gl.useProgram(g_ShaderHandle); + gl && gl.uniform1i(g_AttribLocationTex, 0); + gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection); + // Render command lists + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.enableVertexAttribArray(g_AttribLocationPosition); + gl && gl.enableVertexAttribArray(g_AttribLocationUV); + gl && gl.enableVertexAttribArray(g_AttribLocationColor); + gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertPosOffset); + gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImDrawVertSize, ImDrawVertUVOffset); + gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImDrawVertSize, ImDrawVertColOffset); + // Draw + const pos = draw_data.DisplayPos; + const idx_buffer_type = gl && ( gl.UNSIGNED_SHORT) || 0; + draw_data.IterateDrawLists((draw_list) => { + gl || console.log(draw_list); + gl || console.log("VtxBuffer.length", draw_list.VtxBuffer.length); + gl || console.log("IdxBuffer.length", draw_list.IdxBuffer.length); + let idx_buffer_offset = 0; + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW); + gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle); + gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW); + draw_list.IterateDrawCmds((draw_cmd) => { + gl || console.log(draw_cmd); + gl || console.log("ElemCount", draw_cmd.ElemCount); + gl || console.log("ClipRect", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y); + gl || console.log("TextureId", draw_cmd.TextureId); + if (!gl) { + console.log("i: pos.x pos.y uv.x uv.y col"); + for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) { + const view = new ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImDrawVertSize); + console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${("00000000" + view.col[0].toString(16)).substr(-8)}`); + } + } + if (draw_cmd.UserCallback !== null) { + // User callback (registered via ImDrawList::AddCallback) + draw_cmd.UserCallback(draw_list, draw_cmd); + } + else { + const clip_rect = new ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y); + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) { + // Apply scissor/clipping rectangle + gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y); + // Bind texture, Draw + gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId); + gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset); + } + } + idx_buffer_offset += draw_cmd.ElemCount * ImDrawIdxSize; + }); + }); + // Restore modified GL state + gl && (last_program !== null) && gl.useProgram(last_program); + gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0); + gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture); + gl && gl.disableVertexAttribArray(g_AttribLocationPosition); + gl && gl.disableVertexAttribArray(g_AttribLocationUV); + gl && gl.disableVertexAttribArray(g_AttribLocationColor); + gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array); + gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer); + gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer); + gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]); + gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]); + gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha); + gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); + gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND)); + gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE)); + gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST)); + gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST)); + // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]); + } +} +let gl = null; +let app = null; +class ImGuiWindowLayer extends Sprite { + constructor(window, tex) { + super(); + this.pluginName = "imgui_renderer"; + this.window = window; + } +} +class ImGuiWindow extends Container { + constructor(sizeX, sizeY, update) { + super(); + this.baseTex = new BaseRenderTexture({ scaleMode: SCALE_MODES.LINEAR, resolution: 1, type: TYPES.FLOAT, format: FORMATS.RGBA }); + this.tex = new RenderTexture(this.baseTex); + this.surface = new Sprite(this.tex); + this.imgui = new ImGuiWindowLayer(this, this.tex); + this.ctx = CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts); + SetCurrentContext(this.ctx); + this.io = GetIO(); + contexts.push(this.ctx); + contextIOs.push(this.io); + if (contexts.length == 1) { + CreateFontsTexture(); + } + if (typeof (window) !== "undefined") { + LoadIniSettingsFromMemory(window.localStorage.getItem("imgui.ini") || ""); + } + if (typeof (navigator) !== "undefined") { + this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null; + } + this.io.SetClipboardTextFn = (user_data, text) => { + clipboard_text = text; + // console.log(`set clipboard_text: "${clipboard_text}"`); + if (typeof navigator !== "undefined" && typeof navigator.clipboard !== "undefined") { + // console.log(`clipboard.writeText: "${clipboard_text}"`); + navigator.clipboard.writeText(clipboard_text).then(() => { + // console.log(`clipboard.writeText: "${clipboard_text}" done.`); + }); + } + }; + this.io.GetClipboardTextFn = (user_data) => { + // if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.readText: "${clipboard_text}"`); + // (navigator as any).clipboard.readText().then((text: string): void => { + // clipboard_text = text; + // console.log(`clipboard.readText: "${clipboard_text}" done.`); + // }); + // } + // console.log(`get clipboard_text: "${clipboard_text}"`); + return clipboard_text; + }; + this.io.ClipboardUserData = null; + // Setup back-end capabilities flags + this.io.BackendFlags |= ImGuiBackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional) + // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array. + this.io.KeyMap[ImGuiKey.Tab] = 9; + this.io.KeyMap[ImGuiKey.LeftArrow] = 37; + this.io.KeyMap[ImGuiKey.RightArrow] = 39; + this.io.KeyMap[ImGuiKey.UpArrow] = 38; + this.io.KeyMap[ImGuiKey.DownArrow] = 40; + this.io.KeyMap[ImGuiKey.PageUp] = 33; + this.io.KeyMap[ImGuiKey.PageDown] = 34; + this.io.KeyMap[ImGuiKey.Home] = 36; + this.io.KeyMap[ImGuiKey.End] = 35; + this.io.KeyMap[ImGuiKey.Insert] = 45; + this.io.KeyMap[ImGuiKey.Delete] = 46; + this.io.KeyMap[ImGuiKey.Backspace] = 8; + this.io.KeyMap[ImGuiKey.Space] = 32; + this.io.KeyMap[ImGuiKey.Enter] = 13; + this.io.KeyMap[ImGuiKey.Escape] = 27; + this.io.KeyMap[ImGuiKey.A] = 65; + this.io.KeyMap[ImGuiKey.C] = 67; + this.io.KeyMap[ImGuiKey.V] = 86; + this.io.KeyMap[ImGuiKey.X] = 88; + this.io.KeyMap[ImGuiKey.Y] = 89; + this.io.KeyMap[ImGuiKey.Z] = 90; + this.update = update; + this.resize(sizeX, sizeY); + this.imgui.pluginName = 'imgui_renderer'; + this.addChild(this.surface); + app.renderer.plugins.interaction.addListener("mousedown", this.mouseDown.bind(this)); + app.renderer.plugins.interaction.addListener("mouseup", this.mouseUp.bind(this)); + app.ticker.add(this.updateInternal.bind(this)); + this.interactive = false; + this.interactiveChildren = true; + this.surface.interactive = false; + } + getSizeX() { return this.sizeX; } + getSizeY() { return this.sizeY; } + withContext(cb) { + SetCurrentContext(this.ctx); + cb(); + } + mouseDown(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = true; + } + } + mouseUp(e) { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) { + this.io.MouseDown[mouse_button_map[0]] = false; + } + } + resize(sizeX, sizeY) { + this.sizeX = sizeX; + this.sizeY = sizeY; + this.baseTex.resize(sizeX, sizeY); + this.tex.frame = new Rectangle(0, 0, this.baseTex.width, this.baseTex.height); + } + updateInternal(deltaTime) { + const dt = deltaTime * 1 / (1000 * settings.TARGET_FPMS); + SetCurrentContext(this.ctx); + if (this.io.WantSaveIniSettings) { + this.io.WantSaveIniSettings = false; + if (typeof (window) !== "undefined") { + window.localStorage.setItem("imgui.ini", SaveIniSettingsToMemory()); + } + } + this.io.DisplaySize.x = this.sizeX; + this.io.DisplaySize.y = this.sizeY; + this.io.DisplayFramebufferScale.x = 1; + this.io.DisplayFramebufferScale.y = 1; + this.io.DeltaTime = dt; + let localPos = this.toLocal(app.renderer.plugins.interaction.mouse.global); + if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY) { + localPos = new Point(-Number.MAX_VALUE, -Number.MAX_VALUE); + } + this.io.MousePos.x = localPos.x; + this.io.MousePos.y = localPos.y; + if (this.io.WantSetMousePos) { + console.log("TODO: MousePos", this.io.MousePos.x, this.io.MousePos.y); + } + if (typeof (document) !== "undefined") { + if (this.io.MouseDrawCursor) { + document.body.style.cursor = "none"; + } + else { + switch (GetMouseCursor()) { + case ImGuiMouseCursor.None: + document.body.style.cursor = "none"; + break; + default: + case ImGuiMouseCursor.Arrow: + document.body.style.cursor = "default"; + break; + case ImGuiMouseCursor.TextInput: + document.body.style.cursor = "text"; + break; // When hovering over InputText, etc. + case ImGuiMouseCursor.ResizeAll: + document.body.style.cursor = "move"; + break; // Unused + case ImGuiMouseCursor.ResizeNS: + document.body.style.cursor = "ns-resize"; + break; // When hovering over an horizontal border + case ImGuiMouseCursor.ResizeEW: + document.body.style.cursor = "ew-resize"; + break; // When hovering over a vertical border or a column + case ImGuiMouseCursor.ResizeNESW: + document.body.style.cursor = "nesw-resize"; + break; // When hovering over the bottom-left corner of a window + case ImGuiMouseCursor.ResizeNWSE: + document.body.style.cursor = "nwse-resize"; + break; // When hovering over the bottom-right corner of a window + case ImGuiMouseCursor.Hand: + document.body.style.cursor = "move"; + break; + } + } + } + // Gamepad navigation mapping [BETA] + for (let i = 0; i < this.io.NavInputs.length; ++i) { + this.io.NavInputs[i] = 0.0; + } + if (this.io.ConfigFlags & ImGuiConfigFlags.NavEnableGamepad) { + // Update gamepad inputs + const gamepads = (typeof (navigator) !== "undefined" && typeof (navigator.getGamepads) === "function") ? navigator.getGamepads() : []; + for (let i = 0; i < gamepads.length; ++i) { + const gamepad = gamepads[i]; + if (!gamepad) { + continue; + } + const buttons_count = gamepad.buttons.length; + const axes_count = gamepad.axes.length; + const MAP_BUTTON = function (NAV_NO, BUTTON_NO) { + if (!gamepad) { + return; + } + if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed) + this.io.NavInputs[NAV_NO] = 1.0; + }; + const MAP_ANALOG = function (NAV_NO, AXIS_NO, V0, V1) { + if (!gamepad) { + return; + } + let v = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0; + v = (v - V0) / (V1 - V0); + if (v > 1.0) + v = 1.0; + if (this.io.NavInputs[NAV_NO] < v) + this.io.NavInputs[NAV_NO] = v; + }; + // TODO: map input based on vendor and product id + // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id + const match = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/); + const match_chrome = gamepad.id.match(/^.*\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\).*$/); + const vendor = (match && match[1]) || (match_chrome && match_chrome[1]) || "0000"; + const product = (match && match[2]) || (match_chrome && match_chrome[2]) || "0000"; + switch (vendor + product) { + case "046dc216": // Logitech Logitech Dual Action (Vendor: 046d Product: c216) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 2); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 0); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "046dc21d": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d) + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_ANALOG(ImGuiNavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT + MAP_ANALOG(ImGuiNavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + case "2dc86001": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001) + case "2dc86101": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101) + MAP_BUTTON(ImGuiNavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 0); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 4); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGuiNavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGuiNavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGuiNavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGuiNavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 6); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 7); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 8); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 9); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + default: // standard gamepad: https://w3c.github.io/gamepad/#remapping + MAP_BUTTON(ImGuiNavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGuiNavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGuiNavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGuiNavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGuiNavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGuiNavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGuiNavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGuiNavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGuiNavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGuiNavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGuiNavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGuiNavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGuiNavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGuiNavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGuiNavInput.LStickDown, 1, +0.3, +0.9); + break; + } + } + } + NewFrame(); + this.update(dt); + EndFrame(); + Render(); + app.renderer.render(this.imgui, this.tex); + this.surface.interactive = this.io.WantCaptureMouse; + } +} +let canvas$1 = null; +//export let gl: WebGL2RenderingContext | null = null; +let g_ShaderHandle = null; +let g_VertHandle = null; +let g_FragHandle = null; +let g_AttribLocationTex = null; +let g_AttribLocationProjMtx = null; +let g_AttribLocationPosition = -1; +let g_AttribLocationUV = -1; +let g_AttribLocationColor = -1; +let g_VaoHandle = null; +let g_VboHandle = null; +let g_ElementsHandle = null; +let g_FontTexture = null; +function document_on_copy(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_cut(event) { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function document_on_paste(event) { + if (event.clipboardData) { + clipboard_text = event.clipboardData.getData("text/plain"); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} +function window_on_gamepadconnected(event /* GamepadEvent */) { + console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.", event.gamepad.index, event.gamepad.id, event.gamepad.buttons.length, event.gamepad.axes.length); +} +function window_on_gamepaddisconnected(event /* GamepadEvent */) { + console.log("Gamepad disconnected at index %d: %s.", event.gamepad.index, event.gamepad.id); +} +function canvas_on_blur(event) { + for (var io of contextIOs) { + io.KeyCtrl = false; + io.KeyShift = false; + io.KeyAlt = false; + io.KeySuper = false; + for (let i = 0; i < io.KeysDown.length; ++i) { + io.KeysDown[i] = false; + } + for (let i = 0; i < io.MouseDown.length; ++i) { + io.MouseDown[i] = false; + } + } +} +function canvas_on_keydown(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = true; + // forward to the keypress event + if ( /*io.WantCaptureKeyboard ||*/event.key === "Tab") { + event.preventDefault(); + } + } +} +function canvas_on_keyup(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + IM_ASSERT(event.keyCode >= 0 && event.keyCode < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = false; + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +function canvas_on_keypress(event) { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) { + io.AddInputCharacter(event.charCode); + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} +// MouseEvent.button +// A number representing a given button: +// 0: Main button pressed, usually the left button or the un-initialized state +// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present) +// 2: Secondary button pressed, usually the right button +// 3: Fourth button, typically the Browser Back button +// 4: Fifth button, typically the Browser Forward button +const mouse_button_map = [0, 2, 1, 3, 4]; +function canvas_on_contextmenu(event) { + for (var io of contextIOs) { + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function canvas_on_wheel(event) { + for (var io of contextIOs) { + let scale = 1.0; + switch (event.deltaMode) { + case event.DOM_DELTA_PIXEL: + scale = 0.01; + break; + case event.DOM_DELTA_LINE: + scale = 0.2; + break; + case event.DOM_DELTA_PAGE: + scale = 1.0; + break; + } + io.MouseWheelH = event.deltaX * scale; + io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text. + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} +function PrePIXIInit() { + Renderer.registerPlugin("imgui_renderer", fromConstructor(ImGuiImplInternalRenderer)); +} +function Init(_app) { + // Setup Dear ImGui binding + IMGUI_CHECKVERSION(); + if (typeof (document) !== "undefined") { + document.body.addEventListener("copy", document_on_copy); + document.body.addEventListener("cut", document_on_cut); + document.body.addEventListener("paste", document_on_paste); + } + if (typeof (window) !== "undefined") { + window.addEventListener("gamepadconnected", window_on_gamepadconnected); + window.addEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + app = _app; + gl = app.renderer.gl; + canvas$1 = app.view; + gl.getExtension("EXT_color_buffer_float"); + if (canvas$1 !== null) { + canvas$1.style.touchAction = "none"; // Disable browser handling of all panning and zooming gestures. + canvas$1.addEventListener("blur", canvas_on_blur); + canvas$1.addEventListener("keydown", canvas_on_keydown); + canvas$1.addEventListener("keyup", canvas_on_keyup); + canvas$1.addEventListener("keypress", canvas_on_keypress); + canvas$1.addEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.addEventListener("wheel", canvas_on_wheel); + } + CreateDeviceObjects(); +} +function Shutdown() { + DestroyDeviceObjects(); + if (canvas$1 !== null) { + canvas$1.removeEventListener("blur", canvas_on_blur); + canvas$1.removeEventListener("keydown", canvas_on_keydown); + canvas$1.removeEventListener("keyup", canvas_on_keyup); + canvas$1.removeEventListener("keypress", canvas_on_keypress); + canvas$1.removeEventListener("contextmenu", canvas_on_contextmenu); + canvas$1.removeEventListener("wheel", canvas_on_wheel); + } + app = null; + canvas$1 = null; + if (typeof (window) !== "undefined") { + window.removeEventListener("gamepadconnected", window_on_gamepadconnected); + window.removeEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + if (typeof (document) !== "undefined") { + document.body.removeEventListener("copy", document_on_copy); + document.body.removeEventListener("cut", document_on_cut); + document.body.removeEventListener("paste", document_on_paste); + } +} +function CreateFontsTexture() { + const io = GetIO(); + // Backup GL state + const last_texture = gl && gl.getParameter(gl.TEXTURE_BINDING_2D); + // Build texture atlas + // const width: number = 256; + // const height: number = 256; + // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff); + const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory. + // console.log(`font texture ${width} x ${height} @ ${pixels.length}`); + // Upload texture to graphics system + g_FontTexture = gl && gl.createTexture(); + gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2 + gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels); + // Store our identifier + io.Fonts.TexID = g_FontTexture || { foo: "bar" }; + // console.log("font texture id", g_FontTexture); + // Restore modified GL state + gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture); +} +function DestroyFontsTexture() { + const io = GetIO(); + io.Fonts.TexID = null; + gl && gl.deleteTexture(g_FontTexture); + g_FontTexture = null; +} +function CreateDeviceObjects() { + const vertex_shader = [ + "#version 300 es", + "uniform mat4 ProjMtx;", + "in vec2 Position;", + "in vec2 UV;", + "in vec4 Color;", + "out vec2 Frag_UV;", + "out vec4 Frag_Color;", + "void main() {", + " Frag_UV = UV;", + " Frag_Color = Color;", + " gl_Position = ProjMtx * vec4(Position.xy,0,1);", + "}", + ]; + const fragment_shader = [ + "#version 300 es", + "precision mediump float;", + "uniform sampler2D Texture;", + "in vec2 Frag_UV;", + "in vec4 Frag_Color;", + "out vec4 OutColor;", + "void main() {", + " OutColor = Frag_Color * texture(Texture, Frag_UV);", + "}", + ]; + g_ShaderHandle = gl && gl.createProgram(); + g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER); + g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER); + gl && gl.shaderSource(g_VertHandle, vertex_shader.join("\n")); + gl && gl.shaderSource(g_FragHandle, fragment_shader.join("\n")); + gl && gl.compileShader(g_VertHandle); + gl && gl.compileShader(g_FragHandle); + gl && gl.attachShader(g_ShaderHandle, g_VertHandle); + gl && gl.attachShader(g_ShaderHandle, g_FragHandle); + gl && gl.linkProgram(g_ShaderHandle); + g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle, "Texture"); + g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle, "ProjMtx"); + g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle, "Position") || 0; + g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle, "UV") || 0; + g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle, "Color") || 0; + g_VaoHandle = gl && gl.createVertexArray(); + g_VboHandle = gl && gl.createBuffer(); + g_ElementsHandle = gl && gl.createBuffer(); +} +function DestroyDeviceObjects() { + DestroyFontsTexture(); + gl && gl.deleteVertexArray(g_VaoHandle); + g_VaoHandle = null; + gl && gl.deleteBuffer(g_VboHandle); + g_VboHandle = null; + gl && gl.deleteBuffer(g_ElementsHandle); + g_ElementsHandle = null; + g_AttribLocationTex = null; + g_AttribLocationProjMtx = null; + g_AttribLocationPosition = -1; + g_AttribLocationUV = -1; + g_AttribLocationColor = -1; + gl && gl.deleteProgram(g_ShaderHandle); + g_ShaderHandle = null; + gl && gl.deleteShader(g_VertHandle); + g_VertHandle = null; + gl && gl.deleteShader(g_FragHandle); + g_FragHandle = null; +} + +exports.ImGuiWindow = ImGuiWindow; +exports.Init = Init; +exports.PrePIXIInit = PrePIXIInit; +exports.Shutdown = Shutdown; +//# sourceMappingURL=imgui_impl.js.map diff --git a/imgui_impl.js.map b/imgui_impl.js.map new file mode 100644 index 0000000..30848af --- /dev/null +++ b/imgui_impl.js.map @@ -0,0 +1 @@ +{"version":3,"file":"imgui_impl.js","sources":["node_modules/rollup-plugin-node-builtins/src/es6/empty.js","node_modules/rollup-plugin-node-builtins/src/es6/path.js","node_modules/imgui-js/bind-imgui.js","node_modules/imgui-js/imgui.ts","node_modules/es6-promise-polyfill/promise.js","node_modules/object-assign/index.js","node_modules/@pixi/polyfill/lib/polyfill.es.js","node_modules/ismobilejs/src/isMobile.js","node_modules/@pixi/settings/lib/settings.es.js","node_modules/eventemitter3/index.js","node_modules/earcut/src/earcut.js","node_modules/rollup-plugin-node-builtins/src/es6/punycode.js","node_modules/rollup-plugin-node-builtins/src/es6/util.js","node_modules/rollup-plugin-node-builtins/src/es6/qs.js","node_modules/rollup-plugin-node-builtins/src/es6/url.js","node_modules/@pixi/constants/lib/constants.es.js","node_modules/@pixi/utils/lib/utils.es.js","node_modules/@pixi/math/lib/math.es.js","node_modules/@pixi/display/lib/display.es.js","node_modules/@pixi/accessibility/lib/accessibility.es.js","node_modules/@pixi/runner/lib/runner.es.js","node_modules/@pixi/ticker/lib/ticker.es.js","node_modules/@pixi/core/lib/core.es.js","node_modules/@pixi/extract/lib/extract.es.js","node_modules/@pixi/interaction/lib/interaction.es.js","node_modules/@pixi/graphics/lib/graphics.es.js","node_modules/@pixi/sprite/lib/sprite.es.js","node_modules/@pixi/text/lib/text.es.js","node_modules/@pixi/prepare/lib/prepare.es.js","node_modules/@pixi/app/lib/app.es.js","node_modules/parse-uri/index.js","node_modules/mini-signals/lib/mini-signals.js","node_modules/resource-loader/dist/resource-loader.esm.js","node_modules/@pixi/loaders/lib/loaders.es.js","node_modules/@pixi/particles/lib/particles.es.js","node_modules/@pixi/spritesheet/lib/spritesheet.es.js","node_modules/@pixi/sprite-tiling/lib/sprite-tiling.es.js","node_modules/@pixi/text-bitmap/lib/text-bitmap.es.js","node_modules/@pixi/filter-color-matrix/lib/filter-color-matrix.es.js","node_modules/@pixi/mixin-cache-as-bitmap/lib/mixin-cache-as-bitmap.es.js","node_modules/@pixi/mixin-get-child-by-name/lib/mixin-get-child-by-name.es.js","node_modules/@pixi/mixin-get-global-position/lib/mixin-get-global-position.es.js","node_modules/@pixi/mesh/lib/mesh.es.js","node_modules/pixi.js/lib/pixi.es.js","utils.ts","imgui_impl.ts"],"sourcesContent":["export default {};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// resolves . and .. elements in a path array with directory names there\n// must be no slashes, empty elements, or device names (c:\\) in the array\n// (so also no leading and trailing slashes - it does not distinguish\n// relative and absolute paths)\nfunction normalizeArray(parts, allowAboveRoot) {\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = parts.length - 1; i >= 0; i--) {\n var last = parts[i];\n if (last === '.') {\n parts.splice(i, 1);\n } else if (last === '..') {\n parts.splice(i, 1);\n up++;\n } else if (up) {\n parts.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (allowAboveRoot) {\n for (; up--; up) {\n parts.unshift('..');\n }\n }\n\n return parts;\n}\n\n// Split a filename into [root, dir, basename, ext], unix version\n// 'root' is just a slash, or nothing.\nvar splitPathRe =\n /^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;\nvar splitPath = function(filename) {\n return splitPathRe.exec(filename).slice(1);\n};\n\n// path.resolve([from ...], to)\n// posix version\nexport function resolve() {\n var resolvedPath = '',\n resolvedAbsolute = false;\n\n for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {\n var path = (i >= 0) ? arguments[i] : '/';\n\n // Skip empty and invalid entries\n if (typeof path !== 'string') {\n throw new TypeError('Arguments to path.resolve must be strings');\n } else if (!path) {\n continue;\n }\n\n resolvedPath = path + '/' + resolvedPath;\n resolvedAbsolute = path.charAt(0) === '/';\n }\n\n // At this point the path should be resolved to a full absolute path, but\n // handle relative paths to be safe (might happen when process.cwd() fails)\n\n // Normalize the path\n resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {\n return !!p;\n }), !resolvedAbsolute).join('/');\n\n return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';\n};\n\n// path.normalize(path)\n// posix version\nexport function normalize(path) {\n var isPathAbsolute = isAbsolute(path),\n trailingSlash = substr(path, -1) === '/';\n\n // Normalize the path\n path = normalizeArray(filter(path.split('/'), function(p) {\n return !!p;\n }), !isPathAbsolute).join('/');\n\n if (!path && !isPathAbsolute) {\n path = '.';\n }\n if (path && trailingSlash) {\n path += '/';\n }\n\n return (isPathAbsolute ? '/' : '') + path;\n};\n\n// posix version\nexport function isAbsolute(path) {\n return path.charAt(0) === '/';\n}\n\n// posix version\nexport function join() {\n var paths = Array.prototype.slice.call(arguments, 0);\n return normalize(filter(paths, function(p, index) {\n if (typeof p !== 'string') {\n throw new TypeError('Arguments to path.join must be strings');\n }\n return p;\n }).join('/'));\n}\n\n\n// path.relative(from, to)\n// posix version\nexport function relative(from, to) {\n from = resolve(from).substr(1);\n to = resolve(to).substr(1);\n\n function trim(arr) {\n var start = 0;\n for (; start < arr.length; start++) {\n if (arr[start] !== '') break;\n }\n\n var end = arr.length - 1;\n for (; end >= 0; end--) {\n if (arr[end] !== '') break;\n }\n\n if (start > end) return [];\n return arr.slice(start, end - start + 1);\n }\n\n var fromParts = trim(from.split('/'));\n var toParts = trim(to.split('/'));\n\n var length = Math.min(fromParts.length, toParts.length);\n var samePartsLength = length;\n for (var i = 0; i < length; i++) {\n if (fromParts[i] !== toParts[i]) {\n samePartsLength = i;\n break;\n }\n }\n\n var outputParts = [];\n for (var i = samePartsLength; i < fromParts.length; i++) {\n outputParts.push('..');\n }\n\n outputParts = outputParts.concat(toParts.slice(samePartsLength));\n\n return outputParts.join('/');\n}\n\nexport var sep = '/';\nexport var delimiter = ':';\n\nexport function dirname(path) {\n var result = splitPath(path),\n root = result[0],\n dir = result[1];\n\n if (!root && !dir) {\n // No dirname whatsoever\n return '.';\n }\n\n if (dir) {\n // It has a dirname, strip trailing slash\n dir = dir.substr(0, dir.length - 1);\n }\n\n return root + dir;\n}\n\nexport function basename(path, ext) {\n var f = splitPath(path)[2];\n // TODO: make this comparison case-insensitive on windows?\n if (ext && f.substr(-1 * ext.length) === ext) {\n f = f.substr(0, f.length - ext.length);\n }\n return f;\n}\n\n\nexport function extname(path) {\n return splitPath(path)[3];\n}\nexport default {\n extname: extname,\n basename: basename,\n dirname: dirname,\n sep: sep,\n delimiter: delimiter,\n relative: relative,\n join: join,\n isAbsolute: isAbsolute,\n normalize: normalize,\n resolve: resolve\n};\nfunction filter (xs, f) {\n if (xs.filter) return xs.filter(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n if (f(xs[i], i, xs)) res.push(xs[i]);\n }\n return res;\n}\n\n// String.prototype.substr - negative index don't work in IE8\nvar substr = 'ab'.substr(-1) === 'b' ?\n function (str, start, len) { return str.substr(start, len) } :\n function (str, start, len) {\n if (start < 0) start = str.length + start;\n return str.substr(start, len);\n }\n;\n","\nvar Module = (function() {\n var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;\n return (\nfunction(Module) {\n Module = Module || {};\n\nvar Module=typeof Module!==\"undefined\"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key]}}Module[\"arguments\"]=[];Module[\"thisProgram\"]=\"./this.program\";Module[\"quit\"]=function(status,toThrow){throw toThrow};Module[\"preRun\"]=[];Module[\"postRun\"]=[];var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_HAS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window===\"object\";ENVIRONMENT_IS_WORKER=typeof importScripts===\"function\";ENVIRONMENT_HAS_NODE=typeof process===\"object\"&&typeof require===\"function\";ENVIRONMENT_IS_NODE=ENVIRONMENT_HAS_NODE&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory=\"\";function locateFile(path){if(Module[\"locateFile\"]){return Module[\"locateFile\"](path,scriptDirectory)}else{return scriptDirectory+path}}if(ENVIRONMENT_IS_NODE){scriptDirectory=__dirname+\"/\";var nodeFS;var nodePath;Module[\"read\"]=function shell_read(filename,binary){var ret;ret=tryParseAsDataURI(filename);if(!ret){if(!nodeFS)nodeFS=require(\"fs\");if(!nodePath)nodePath=require(\"path\");filename=nodePath[\"normalize\"](filename);ret=nodeFS[\"readFileSync\"](filename)}return binary?ret:ret.toString()};Module[\"readBinary\"]=function readBinary(filename){var ret=Module[\"read\"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}assert(ret.buffer);return ret};if(process[\"argv\"].length>1){Module[\"thisProgram\"]=process[\"argv\"][1].replace(/\\\\/g,\"/\")}Module[\"arguments\"]=process[\"argv\"].slice(2);process[\"on\"](\"uncaughtException\",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process[\"on\"](\"unhandledRejection\",abort);Module[\"quit\"]=function(status){process[\"exit\"](status)};Module[\"inspect\"]=function(){return\"[Emscripten Module object]\"}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!=\"undefined\"){Module[\"read\"]=function shell_read(f){var data=tryParseAsDataURI(f);if(data){return intArrayToString(data)}return read(f)}}Module[\"readBinary\"]=function readBinary(f){var data;data=tryParseAsDataURI(f);if(data){return data}if(typeof readbuffer===\"function\"){return new Uint8Array(readbuffer(f))}data=read(f,\"binary\");assert(typeof data===\"object\");return data};if(typeof scriptArgs!=\"undefined\"){Module[\"arguments\"]=scriptArgs}else if(typeof arguments!=\"undefined\"){Module[\"arguments\"]=arguments}if(typeof quit===\"function\"){Module[\"quit\"]=function(status){quit(status)}}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf(\"blob:\")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf(\"/\")+1)}else{scriptDirectory=\"\"}Module[\"read\"]=function shell_read(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.send(null);return xhr.responseText}catch(err){var data=tryParseAsDataURI(url);if(data){return intArrayToString(data)}throw err}};if(ENVIRONMENT_IS_WORKER){Module[\"readBinary\"]=function readBinary(url){try{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.responseType=\"arraybuffer\";xhr.send(null);return new Uint8Array(xhr.response)}catch(err){var data=tryParseAsDataURI(url);if(data){return data}throw err}}}Module[\"readAsync\"]=function readAsync(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,true);xhr.responseType=\"arraybuffer\";xhr.onload=function xhr_onload(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}var data=tryParseAsDataURI(url);if(data){onload(data.buffer);return}onerror()};xhr.onerror=onerror;xhr.send(null)};Module[\"setWindowTitle\"]=function(title){document.title=title}}else{}var out=Module[\"print\"]||(typeof console!==\"undefined\"?console.log.bind(console):typeof print!==\"undefined\"?print:null);var err=Module[\"printErr\"]||(typeof printErr!==\"undefined\"?printErr:typeof console!==\"undefined\"&&console.warn.bind(console)||out);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key]}}moduleOverrides=undefined;var asm2wasmImports={\"f64-rem\":function(x,y){return x%y},\"debugger\":function(){debugger}};var functionPointers=new Array(0);var tempRet0=0;var setTempRet0=function(value){tempRet0=value};if(typeof WebAssembly!==\"object\"){err(\"no native wasm support detected\")}var wasmMemory;var wasmTable;var ABORT=false;var EXITSTATUS=0;function assert(condition,text){if(!condition){abort(\"Assertion failed: \"+text)}}var UTF8Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf8\"):undefined;function UTF8ArrayToString(u8Array,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(u8Array[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&u8Array.subarray&&UTF8Decoder){return UTF8Decoder.decode(u8Array.subarray(idx,endPtr))}else{var str=\"\";while(idx>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):\"\"}function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}}outU8Array[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4}return len}var UTF16Decoder=typeof TextDecoder!==\"undefined\"?new TextDecoder(\"utf-16le\"):undefined;var WASM_PAGE_SIZE=65536;var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferViews(){Module[\"HEAP8\"]=HEAP8=new Int8Array(buffer);Module[\"HEAP16\"]=HEAP16=new Int16Array(buffer);Module[\"HEAP32\"]=HEAP32=new Int32Array(buffer);Module[\"HEAPU8\"]=HEAPU8=new Uint8Array(buffer);Module[\"HEAPU16\"]=HEAPU16=new Uint16Array(buffer);Module[\"HEAPU32\"]=HEAPU32=new Uint32Array(buffer);Module[\"HEAPF32\"]=HEAPF32=new Float32Array(buffer);Module[\"HEAPF64\"]=HEAPF64=new Float64Array(buffer)}var DYNAMIC_BASE=5315584,DYNAMICTOP_PTR=72672;var TOTAL_STACK=5242880;var INITIAL_TOTAL_MEMORY=Module[\"TOTAL_MEMORY\"]||16777216;if(INITIAL_TOTAL_MEMORY>2]=DYNAMIC_BASE;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback==\"function\"){callback();continue}var func=callback.func;if(typeof func===\"number\"){if(callback.arg===undefined){Module[\"dynCall_v\"](func)}else{Module[\"dynCall_vi\"](func,callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;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 ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__)}function preMain(){callRuntimeCallbacks(__ATMAIN__)}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 addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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()}}}Module[\"preloadedImages\"]={};Module[\"preloadedAudios\"]={};var dataURIPrefix=\"data:application/octet-stream;base64,\";function isDataURI(filename){return String.prototype.startsWith?filename.startsWith(dataURIPrefix):filename.indexOf(dataURIPrefix)===0}var wasmBinaryFile=\"data:application/octet-stream;base64,AGFzbQEAAAAB2AyxAWACf38Bf2ACf38AYAJ8fAF8YAF/AX9gAX8AYAN/f38Bf2AEf39/fwBgA39/fwBgAn9/AX1gBH9/f38Bf2AEf399fwBgAn99AX9gA399fQF/YAZ9fX1/f38AYAR/fX9/AGAFf39/fX8AYAABfGADf31/AGAFf39/f38Bf2AIf39/f39/f38Bf2AHf39/f39/fwF/YAZ/f39/f38Bf2AGf398fH9/AX9gCX9/f39/f39/fwF/YAN9f38AYAl/f39/f39/f38AYAZ/f39/f38AYAJ/fQBgAX8BfWAAAX9gAn19AGABfQBgAAF9YAAAYAN/f30Bf2AGf39/fX9/AGAIf399fX1/f38AYAR/fX99AX9gBn9/fX9/fwBgBX9/f399AGAHf39/f31/fQBgBn9/f399fwBgB39/f39/f38AYAd/f39/f399AGAGf39/f399AGAFf39/f38AYAZ/f31/f30AYAV/f31/fwBgCH9/fX9/f31/AGALf39/f39/f39/f38AYAl/f39/f39/fX8AYAh/f39/f399fwBgBH9/f30AYAZ/f319fX8AYAp/f39/f39/f39/AGADf399AGAGf3x/f39/AX9gA39+fwF+YAF/AXxgA39/fwF9YAR/f319AX9gCH9/fX19f39/AX9gBH9/fX8Bf2AFf399f30Bf2AHf39/fHx/fwF/YAR/f399AX9gBX9/f31/AX9gBn9/f31/fwF/YAp/f39/f39/f39/AX9gA399fQBgB399fX1/f38AYAd/f399fX1/AGAHf39/fX9/fQBgB39/f31/f38AYAl/f399f39/fX8AYAd/f39/f31/AGAIf39/f399f30AYAh/f39/f39/fQBgCH9/f39/f39/AGAKf39/f39/f399fwBgDH9/f39/f39/f39/fwBgDX9/f39/f39/f39/f38AYAN/f3wAYAN/f38BfGABfQF9YAJ9fQF9YAV/fX19fQBgBH9/fX0AYAJ/fQF9YAR9fX19AX9gBX9/f319AGADfX19AX1gAn19AX9gBH19fX0BfWALf319fX19fX19fX8AYAl/f31/f39/fX8AYAp/f31/f39/f31/AGAFf31/f30Bf2AIf399fX9/f38AYAt/f319fX19fX19fQBgCH9/f39/fX1/AGAHf39/fX1/fwBgBX9/fX9/AX9gCH9/f399fX9/AGAHf39/fX19fQBgCn9/fX19fX19fX8AYAx/f319fX19fX19fX8AYAd/fX19fX19AGAEf31/fwF/YAh/f399f39/fQF/YAV/fX9/fwF/YAV/fX5+fwF/YAZ/fX19f30Bf2AGf318fH99AX9gAn98AXxgAn9+AX5gCX9/f399f39/fQF/YAd/f319fX99AX9gCX9/f319fX9/fQF/YAZ/f31/f38Bf2AIf39/fX9/f38Bf2AKf39/f39/f31/fwF/YAl/f39/f399f38Bf2AJf39/fn5/fX9/AX9gCX9/f319f31/fwF/YAl/f398fH99f38Bf2AFfHx8fX0BfWADfHx9AXxgA3x8fAF8YAV9fX19fQF9YAN+fn4BfWADfn5+AX5gBX5+fn19AX1gBX9/f319AX1gB39/f39/f30Bf2AIf39/f39/f30Bf2AGf399fX99AX9gB39/f319f30Bf2AGf399fX9/AX9gB39/f31/fX8AYAl/f39/f399fX8AYAd/f39/fX1/AGAEf319fQF9YAZ/f39/f30Bf2AHf399f39/fQF/YAJ/fgBgAn9/AX5gA35/fwF/YAJ+fwF/YAJ8fwF8YAV/f39/fwF8YAZ/f39/f38BfGACfX8BfWABfAF9YAJ9fwF/YAN/f34AYAF/AX5gAn9/AXxgBH9/f38BfWAHf398f39/fwF/YAV/f399fQF/YAl/f399fX1/f38Bf2AGf39/fX99AX9gCH9/f398fH9/AX9gBX9/f399AX9gBn9/f399fwF/YAd/f39/fX9/AX9gC39/f39/f39/f39/AX9gCX9/f319fX9/fwBgCH9/f399fX1/AGAHf39/f31/fwBgCH9/f399f399AGAIf39/f31/f38AYAp/f39/fX9/f31/AGAJf39/f39/fX99AGAJf39/f39/f399AGALf39/f39/f39/fX8AAvQDNwNlbnYBYgA2A2VudgFjAE4DZW52AWQAGgNlbnYBZQAEA2VudgFmAAADZW52AWcAUQNlbnYBaABTA2VudgFpAAcDZW52AWoAAANlbnYBawAtA2VudgFsACEDZW52AW0ABwNlbnYBbgAAA2VudgFvAAYDZW52AXAAAANlbnYBcQAaA2VudgFyAAQDZW52AXMABANlbnYBdAAEA2VudgF1AAAIYXNtMndhc20HZjY0LXJlbQACA2VudgF2AAQDZW52AXcAAQNlbnYBeAAHA2VudgF5AAcDZW52AXoAUgNlbnYBQQAAA2VudgFCAAADZW52AUMAAwNlbnYBRAAAA2VudgFFAAADZW52AUYAAANlbnYBRwAEA2VudgFIAAMDZW52AUkAAwNlbnYBSgAFA2VudgFLAB0DZW52AUwAAwNlbnYBTQAAA2VudgFOAAQDZW52AU8AHQNlbnYBUAADA2VudgFRAB0DZW52AVIABANlbnYBUwAJA2VudgFUAAEDZW52AVUABwNlbnYBVgABA2VudgFXAC0DZW52DF9fdGFibGVfYmFzZQN/AANlbnYBYQN/AAZnbG9iYWwDTmFOA3wABmdsb2JhbAhJbmZpbml0eQN8AANlbnYGbWVtb3J5AgGAAoACA2VudgV0YWJsZQFwAaILogsDlxPTEgRFAwEHVgEBVQQEHRwEAwcECwcHVQUEAwEDAwEAAwQANwEDBAAIBwADVAMDVgABHQVUAVsDBAQEAQUeJwAHAQMBIQkEKRwBASEAARsDA1sDBwFVIQAHAwEBIWgDHC0BABJaBwQDAQcBAQEBAAgEAQEHawMoCAcgBRsEAScqBgkHIRUFBAEBIQABAAUhBCAcAZEBAQMAJy80IQMBBAQBHwAEHAWZAZkBIQcAAQcHAQEHE4cBdAQABQMcBgUDBSEFBwAAAQQBAQEBAAcEAQcaACpfIBwEAQEdAQGVAQAHBAQDBwABNAMBAQAALwE1AQABIQccBgEHAwQEEwMFAAMHATcIAwEBAQEBAQQBAQYhAAEuCRsBGgkDAQMGBQEdBwQDAAQABAEBNwUJBQmHAQADHAEBBgYNBCIAAy0GBAAEASEGAQAEIQEEAQcdLQMAB1RUlAEDAwMBHQcABAEEBQMDBAEBADcAVwUSBAkBBAcSAQAAJANFAwAqDwMGBAA3AQEbAwAEAyEgBwQbByE3HwBZAwQBAQEEAwcDAQEdBAQEBANXAQEBAQEBAQdOCRQDd3U7BwYgCC0EBQBzAgMAAQEFVC1OB1cABAQBDSwaAQQEAQQBAAMAAAMEAQcdKiEEHwQgAwQBBBwbKgsbFy0ABwEqAQUBBAcAAAEEAQQBBAEEAQEBBwABAQEBAQEEAAmLAYYBfwEJNwQSFQNtWHIiCQMHAQUDBwNFBQEDAwRiWFUABANhXgY2BAQEAQEBAQUDAQAECQMDAAAJG1gcBCEDIRsDBwMBAQEHCQcEBxwFIQYaBgcHAwEDAx0hAy0SAQEdBAEEAAcEAAUBAwQEBAEBAQEBAQUEBAQABwAEBAA6AQcAAAEBBAEBAQEBAQEENwEEBABYIAQhHY4BjAESIQUABAQgAwkECQA0NBUtEogBhQEFO4MBhAGDAYIBgQGAAQICfnkEBB4DAAYAAA4MBAcEFQAcBSEEIQUHBAcHBEMDBQlEAAcEamkFBRwEAAFjB1gDAQEBAwAtBAQEBCoALC0GBAEEAQEEAQQBAQQEBAEGBF0ALQQdAQEDAQMEAQQhHSEDBFwEIQAfBQMfHiAEHwQEHwMDAQEEIR8hBCEEISEBAVoHAwEBBwEJEh0dHTE2GU4yKScPNAoODR4SOwwBBgEEBAQEAQBUOgEAAZsBBJoBlQECApIBUwcDA5UBAwcABwMJAyEFBAQEBAQEAQEGByMaLQQEAwEFCQEBAQQbBAdFHQE3BAEECQUGAQcBFQQEBAQEHQQEBAQEBAQEHS0BBBISAQQECQQEAAUiBgEAAwEBAQEEBAEBAQEEAQEEBAEBBAEBAQEEBAQEBCEVBCEdIQMdISEEIRUHBAcJBQEBAVsBAwAhAQMABQAABAkhACEdEREBAY0BjQEJBAUBIQQEBQUABAUHNBsBAQcHFhKKARWJARISEjyIAYgBiAF9fHt7enp4d3d3dnV1dQMBBAEBBwYABgBXVwABcXBvb25ubQkhISEhGBQaAAABAQEEBAQHWgcKJgEdHRUtAwEBAAFmBGwEAQMABRoVLQYABgAABAcABwcFBQEDBCdBLWdmZS0tZAYHBwEBBgQEKloGKhsGAwEHAQQDBCoBBDIxYDMaKwEEAwQEIQEBBwEEAQUEAQEDAwEcIQQhBwABBwAEBAQEBAEABAQBAAMEIQcIAAcbOx0dIQAFAAQEBQMAAwQfHyAgIAUfBCAEHyAgICEBHR0gIAMDAQQEBC0qLQUHASEdHR0DHQQEBB0ENxJQT00zKwRMSywoSklII0cwJi4vAyQ1EUZFGDlEFENCQUA/HT49PCIWJQwLOAMcOhBRUDE2sAEZT68BTjJNKgSuATMrGkxLLC2tAawBqwGqASmpAScGSklIIw+oAUc0LwokVw5GA6cBRBcTFBUSpgGlAaQBowGiAUKhAaABQUA/PJ8BngE7CBydAToBBi0aBQUEAwQhBi0aBi0aBR0hKgcEBAQAVSECVVQFBJwBBwMDAwMDAAUABQUFBAADAAQFmAEFAAKXAZYBBQAhlAGTAQUBOAMBkgEFBTkDAyEEAwAHCQYDIQUABQcVGgMhAQEDBgcdAR0BAyEBAQMhNAAiAwAdAyEBAQEBAyEGAQEBAQYHBwQnKCkqKxosLS4vBgQBMCoxMiwGMwE1Ly0PBho2BgYHBgEGMTYaBgYpBg8tL0c1JzQBAQUBMjMtBissTzJQMU4qSjAtBi9ILi0rLCoaTStOKkspTCgsJwcHAQYBAQEEAyEBAQEBBAMhAyEEAQEhAQEBAQEBAQEBASEBAQMhAQEBAwEBIQEBBwcHJCUDJkkmPyU9JAABOwcHAR0BAQEEAyEHBAEBBgEBAQEBAQEBAQEjAQQBAQEBAQEBAR0BAQEBAQEBASEBAQABA0MjBwQDIQEBAQUBAQEBAQEBAQUFIgEhBwgICAcBBwEhQSI7CAUABQUAAQEBAQEBAQEBAQEBAQEBBQUAAQEBAQQDIQEBAQEBAQEBAQEBBwU3CQUHIQEBAQEBAQEdAyEHBwYBAwEEFRQBAQEBAQQEBAQBIQMFCRIBAAEcAQEBAQcGBwEEBActBwYHBgQDBAEHAQEBBQMQAAEBAQcGAwgEAwQHAQQEBwEEAAUAABoqFBMEBAAEBQQFHAgZNgYcCAQBGRgOBQAFFRQUEwcUFBQXRBUUFRUVARMXkAGQAZABkAETFwMDAxIUBwMDFRMVFAkJCRIVBQUFBAEBFkAVFRUVFBMVFAQVFRUJEhIVBBIEElgEEo8BjwGPAY8BAxQTFBUBBAEBBAEEAQEGAQEBBAEEAQEGAQEBAQEEAQETFwUFBAUEBAEJEgkABQAFBQkFCQUJEgkABRIVAQYtAAUVAAkRCgQJCQAFBQAFCQABAQEHBAUBBAEEBwYBAQEDAAAFOgEAD0IEDi8HBwUBAw1GBA08BQkBBAEDAQEBAQQKPgQEAwYEAQAHBgEEBCEBIQcEBAQEIQoBAQMhBSEhIQ0NAyEHISEOIQ8hAQQEACEhAAMBAQEhBwQAIQkEAQQFAAMAIQUABQMABCEJIQkABCERISEhASEFABUhEgkhCQUABAQhBSEFACEAIQADCQkFBQUhExUUIRQSEgQSEiEJFRUVFQQhFCEWBQUFIRIJCQkhFSEUIRUhEyETFRUVFSEXFBQUFBUFIRgZGQUAIQUAIRQhGgAAAwAEBAMHBCEHBAEBBAEEIQMDIQABBCEBAQEhBAQEBCEHBwchAQEBBCEGASEHAQEEAQEBASEJBQQEBAQhBggBfwFBgLgECwfzA1QBWACCDAFZAFQBWgDJAQFfALkLASQAuAsCYWEAtwsCYmEAtgsCY2EAtQsCZGEAtAsCZWEAwAMCZmEAsAUCZ2EAswsCaGEA7AcCaWEAsgsCamEAsQsCa2EA6wcCbGEAsAsCbWEArwsCbmEArgsCb2EArQsCcGEArAsCcWEAqwsCcmEA5wcCc2EAqgsCdGEAqQsCdWEAqAsCdmEApwsCd2EApgsCeGEApQsCeWEApAsCemEAowsCQWEAogsCQmEAoQsCQ2EAoAsCRGEAwwoCRWEAvgcCRmEAvwcCR2EAwgcCSGEAngsCSWEAnQsCSmEAwQMCS2EAxQcCTGEAnAsCTWEAmwsCTmEAmgsCT2EAmQsCUGEAwQcCUWEAmAsCUmEAlwsCU2EAlgsCVGEAlQsCVWEAlAsCVmEAkwsCV2EAkgsCWGEAkQsCWWEAkAsCWmEAjwsCX2EAjgsCJGEAjQsCYWIAjAsCYmIAiwsCY2IAigsCZGIAiQsCZWIAiAsCZmIAhwsCZ2IAhgsCaGIAhQsCaWIAhAsCamIAgwsCa2IAggsCbGIAgQsCbWIA/woCbmIA/goCb2IA/QoCcGIA/AoCcWIA+woCcmIA+goCc2IA+QoCdGIA+AoCdWIA9woCdmIA9goCd2IA9QoCeGIA9AoCeWIAgxMJjBQBACMAC6IL8wqWD/IK9hCnAaQKowqqCqkKmwqaCpkK1AauA74BnwrbA64DiAT+AaIK0wWnAacBpwGnAacBpwGnAacBpwGnAacBpwGnAacB8QrvBP8B+w6dAZ4Pvg+5D6wCrAKlDpwOmw6aDqwC3AOsAqwCrAKsAqwCnQGdAZ0BnQGdAZ0BnQGdAZ0BnQGdAZ0BnQGdAZ0BgwekDs4NgweDApMIkAioCqcKiwqKCrEIygXHBvMCuAreB/IG9Aa8CvMGugq5CsMH5grACt0OqAyDAoMCgwKDAoMCgwKDAoMCpQKBDMELkxCSCNkS2BLMEsgS/xHaEdQRyQaLArsKqwr1BMURtRGfC+gB8AqOBdcK9QKtEcADwAOND/QOnQ/mD+AP5A7eDsADwg6GDs8JgQ7XDb4DtA2hDZ8NmA2vDKkMwAOmDNUDoQydDJYMkgyKDIUMpQKlAqUCpQKlAqUCpQLvCvoL7gqQBO0KhAfsCskNTfwJ9QmnCaUJqAikCNsSyRLHEsYSwRK+Ev4R/BH6EfMR6xHhEdsR2BHVEdMRzBHEEfYCtgOwBfkO7weXD+oHqw+wBfMQ+BDqB+8HmxHuAYED7QHuAbwOgQOqDqcOngT/DYED7QHuAe4BnQSdBO0BngTMDe4BgQPtAe0BnQSBA+0B7gHuAe0B7QHuAacMpAztAZ4E7gHtAZ0E7gGBA54EjQyGDE1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU3rCpoS6grsB6MOpQzpCocR6ArKDecKlBHlCsgN5wGnB/4L8wvKC78LvgvsDP4SwBK9ErgSnRKcEpsShBKDEoIS+RH3EfIR6hHZEdcR0hGBBa8RlA+qD8oHygfAEMIQ3RD1EIAR6wfTEMwQxg+bBdMOuw66DqkOqA6mDpsFuQebBbkHjgyMDP8L5QvnAecB5wHnAecB5wHnAecB5wHkCvcP4wqiDuIK+hDhCoIOwAL9EqISoRKgEpESgRKAEvER7xHgEd4RzhHJB8kHxBDGENYQ4RDnB4kRLNIOuge6B4gMwALAAsACwALAAsACggefEo8SjhKMEosS7hH3DuIHhRC9EMkQ4wfiB+MHggeyAY0ItxKwEq8SrhKtEqgSpBKVEpQSkxKSEocS7BHvD4cQzhCQDLIBsgGyAbIBsgGyAbIBsgGyAbIBsgGyAbIB4ArDErYStRK0ErMSphKYEooSiBLoDsgP0g/jD+oP/w+kAqwSqhKGErAPyg/oD/0PlRCkAqQCpAKkAqQCpAKkApIEshLYD94PtBCSBJIEkgTfCtAP3gqADIQBzAv8DdQLpgffCdUBswOlCusS4hKKAd8G4QbhBrgC/Qj/BbwBsQH9BYwKef4I+wi3AbwIzgXxBIQEsAjJBa4IyAHNBqUIlwjlBoMKyAbGBuoB8wSCBbcKwwuEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAG1A6EK2QaYCpcK0gbOAeAGhgTPBp0K1ga1A7UDtQO1A4EH0wZrgQeAB7QRsxGAB90KuhI7ixGqAYUR6AfpB7QB+xDlB+YH6hDwAecQrwWuBc4CuhCoBakFqgW5EKgFqQXMArcQ3AfdB7AQpRCcEJkQxwONENkH2gfGA4oQ1wfYB8UDiBDUB9YHxAOAENIH0wegBfMP0AfRB58FtA/GB8gHngWyD68FrgXFDKMDuQOjA6MDuQOJB4gHiAe5A7kDuQPDBY4IiwiKCIkIwAXABYgIhwijA6MDghOBE4AT/xL3Eu8S5hLlEuQS4xKiAqMC3RLiBq4K1hLUEtESzhLLEoIIggj/B/8H/gf+B/sH+wfCCPUR9BHiEdwR0RHFBsMGzxHLEZYKwBG/EcEKvwq+Cr0KqBGnEaYRpRGgEb4HhQ+JAsEOgAuFDu8DoQagBqIG1g3uA9AEiQKJAp4N0wmXDasG9QPlAsQFqQbcBPgD3QT2A9sEiQKJAuwFiQKJAokCiQLDBYQMwgs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O5EEiArtBL8HxgiRBJEEkQTcCsIH2wqEEdoK5BH/BroRww//Bjj7CcAP6Q77EvoS+RL4EvYS9RLyEqYK7hLtEuwS4RLgEt8S3BLVEtMS0hKBCIEI/Qf9B7sI6BH0B/QH0BHIEccRxhG+EawRqxGiEcED7Q7yDsEDwQPBA5oR4w69B5wFvAfcDtsO2g7ZDtgO1w7WDrsHwA6/Dr4OvQ65DrgOtw62DrUOtA6zDrIOsQ6wDq8Org6tDqwOqw69DaAO/gKeDv4CgA7+Df0N+w36DfkN+A33DfYN9Q30DfIN8Q3wDbsH1Q3UDdMN0Q3+Ao8JzQ2zDbINsA2vDa4NrQ2sDasNnQ2cBbwH/gKcDZYNlQ2UDf4Ckg3tDOsM6gyqBvQD2gyuDK0M/gK9B6AMnAWcDJoM+Qs4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODi0A8UHqwLRDqsCqwKrAqsCqwK6BKsCqwK0A7QDtAO0A9kK5wzYCssN/gaqEdgQ/gbWCv0Q/gzlDNUKgA3UCscN0wr7DETYDPQS6hLpEugS0BLKEbcRpBGCD8EHkA+iD6YPrAWsBawFgAPUDuwB1gGAA5gFnw6dDoQOgAPsAdYB1gHWAdYBnAScBOwB0A3PDZgF1gGAA+wB7AGcBNYBgAPsAdYB1gHsAdYBkQ2QDbEHmAXLD7ABsQfsAewB7AGcBNYBgAPKCJgMjwyHDERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERP0G6QyjDP0G0grmDPwGvBHjDPwG0QqDDrIHsgfQCv8MzwrGDc4K+gzmAccLxAu7C+IM8RKBD4kPiw+cD+4QnRGTDf0M8QzgDLAH3wzbDNkMsAeXDIkM5gHmAeYB5gHmAeYB5gHmAeYB+waPDegM+wb6BosN4Qz6Bs0KjQ30AsgLxQu8C4cPtAeBDfwM8AzkDLQH9AL0AvQC9AL0AswKjg2DDfMMywqKDcoKjA2/AskLxgu9C8UShQ2zB7MH3gyRDL8CvwK/Ar8CvwK/AsgKhw2CDfIMxwrvDI8Erg+JDYQN+QyPBI8EjwTGCoYN+Qb1DO4M+Qb4BogN+Az4BsUK9Az3BrwSuxL3BvYGuw/dDPYG9Qb3DNwM9QbECvYMCrmoFNMSCQAgACgCABARCxAAIAAgATgCACAAIAI4AgQLFAEBf0EEED8iASAAKAIANgIAIAELCAAgACABEF8LHAAgACABKgIAIAIqAgCSIAEqAgQgAioCBJIQMgseACAAIAE4AgAgACACOAIEIAAgAzgCCCAAIAQ4AgwLDQAgABA6IAEgABCKEQsGAEErEAMLDAAgACABIAAgAWAbCxYAIABDAAAAADgCBCAAQwAAAAA4AgALBgBBJRADCxsBAX9BmKkEKAIAQZQzaigCACIAQQE6AHwgAAszAQF8IAAQsQUiAUQAAADg///vR2YEfUP//39/BUP//3//IAG2IAFEAAAA4P//78dlGwsLFAAgACwAC0EASARAIAAoAgAQVAsLQwEBfyAAQQEgABshAQN/IAEQyQEiAAR/IAAFQZSuBEGUrgQoAgAiADYCACAABH8gAEE/cUGGBGoRIQAMAgVBAAsLCwscACAAIAEqAgAgAioCAJMgASoCBCACKgIEkxAyC0MBAX8gAARAQZipBCgCACIBBEAgASABKAL8BkF/ajYC/AYLC0H89gEoAgAhASAAQZypBCgCACABQf8BcUHyBmoRAQALWgEDfyMEIQIjBEEQaiQEIAJBmKkEKAIAIgNBsCtqIABBBHRqIgApAgA3AgAgAiAAKQIINwIIIAIgAioCDCADQZAqaioCACABlJQ4AgwgAhChAyEEIAIkBCAECxYAIAAgASkCADcCACAAIAIpAgA3AggLBgBBNBADCwwAIAAgASAAIAFdGwvGAwEDfyACQYDAAE4EQCAAIAEgAhAjGiAADwsgACEEIAAgAmohAyAAQQNxIAFBA3FGBEADQCAAQQNxBEAgAkUEQCAEDwsgACABLAAAOgAAIABBAWohACABQQFqIQEgAkEBayECDAELCyADQXxxIgJBQGohBQNAIAAgBUwEQCAAIAEoAgA2AgAgACABKAIENgIEIAAgASgCCDYCCCAAIAEoAgw2AgwgACABKAIQNgIQIAAgASgCFDYCFCAAIAEoAhg2AhggACABKAIcNgIcIAAgASgCIDYCICAAIAEoAiQ2AiQgACABKAIoNgIoIAAgASgCLDYCLCAAIAEoAjA2AjAgACABKAI0NgI0IAAgASgCODYCOCAAIAEoAjw2AjwgAEFAayEAIAFBQGshAQwBCwsDQCAAIAJIBEAgACABKAIANgIAIABBBGohACABQQRqIQEMAQsLBSADQQRrIQIDQCAAIAJIBEAgACABLAAAOgAAIAAgASwAAToAASAAIAEsAAI6AAIgACABLAADOgADIABBBGohACABQQRqIQEMAQsLCwNAIAAgA0gEQCAAIAEsAAA6AAAgAEEBaiEAIAFBAWohAQwBCwsgBAsSACAAQbT4ATYCACAAQQRqED4LKgAgACgCEBBbBEBBACEABSAAQQRqIgAsAAtBAEgEQCAAKAIAIQALCyAACxIAIAAgARDpECAAQcD4ATYCAAsQACAALQABIAAtAABBCHRyCyoBAX8jBCEBIwRBEGokBCABIAA2AgBBBBA/IgAgASgCADYCACABJAQgAAslAQF/IAEoAgAhAiAAQgA3AgAgAEEANgIIIAAgAUEEaiACEJMBCwgAQQwQA0EACwcAIABBBGoLJwEBfyAAKAIIIgEEQCAAQQA2AgQgAEEANgIAIAEQQSAAQQA2AggLCw0AIAAoAgggAUECdGoLFgAgACABKgIAIAKUIAEqAgQgApQQMgsp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QCADIAMoApACQQFyNgKQAgtBAQsLBgAgAKiyCw0AIABB1ABqIAEQmgILFAAgASACIAAgACACXhsgACABXRsLEQBBACAAQQRqIAAoAggQWxsLIQAgAEP//39/Q///f38QMiAAQQhqQ///f/9D//9//xAyCxAAIAAoAggiAARAIAAQQQsLFwAgAEEANgIEIABBADYCACAAQQA2AggLIQEBfyMEIQIjBEEQaiQEIAIgATYCACAAIAIQ2gIgAiQEC5gCAQR/IAAgAmohBCABQf8BcSEDIAJBwwBOBEADQCAAQQNxBEAgACADOgAAIABBAWohAAwBCwsgA0EIdCADciADQRB0ciADQRh0ciEBIARBfHEiBUFAaiEGA0AgACAGTARAIAAgATYCACAAIAE2AgQgACABNgIIIAAgATYCDCAAIAE2AhAgACABNgIUIAAgATYCGCAAIAE2AhwgACABNgIgIAAgATYCJCAAIAE2AiggACABNgIsIAAgATYCMCAAIAE2AjQgACABNgI4IAAgATYCPCAAQUBrIQAMAQsLA0AgACAFSARAIAAgATYCACAAQQRqIQAMAQsLCwNAIAAgBEgEQCAAIAM6AAAgAEEBaiEADAELCyAEIAJrC58BAQN/EDwiAiwAf0UEQEGYqQQoAgAhBCABQwAAAABdIQMgAEMAAAAAXARAIAIqArQDQwAAAAAgASADGyACKgIMIAIqAliTIACSkpIhACACKgK4AyEBBSADBEAgBEHUKmoqAgAhAQsgAioC0AEhAAsgAiABIACSOALIASACIAIoAtQBNgLMASACIAIpAvQBNwLoASACIAIoAvwBNgLwAQsLqwECA38BfSMEIQUjBEEQaiQEQZipBCgCACEGIAMEQCABIAIQkAEhAgsgBSEDIAZBsDFqKAIAIQcgBkG0MWoqAgAhCCABIAJGBEAgAEMAAAAAIAgQMgUgAyAHIAhD//9/fyAEIAEgAkEAEJoDIAMqAgAiBEMAAAAAXgRAIAMgBCAIIAcqAgCVkyIEOAIACyADIARDMzNzP5KosjgCACAAIAMpAwA3AgALIAUkBAsnAEGYqQQoAgBBNGogAEECdGooAgAiAEF/SgR/IAAgARD2AgVBAAsLNQECfyMEIQMjBEEQaiQEAn8gACgCACEEIAMgARB3IAQLIAMoAgAgAigCABALIAMQMSADJAQL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KAIIRgRAIAEQ4QELIAEgACABKAIAEPIFIgI2AgAgASACNgIIIAAgARCCAQwFCyABEOEBIAFBADYCCCABQQA2AgAgAUEAOgAPDAQLIAEQ4QEgASAAKAIsIgI2AgggASACNgIAIAFBADoADwwDCyAAKAIsIQQgACABEIIBIAEQ4QEgASwAEARAIAEgBDYCACAEIQIFIAEoAgAiAiAESARAA0ACQAJ/IAAgAhDiAUH//wNxQQpGIQwgASgCACECIAwLDQAgASACQQFqIgI2AgAgAiAESA0BCwsLCyABIAI2AgggAUEAOgAPDAILQQMhAwwBCyAFQYCADEgEQCAFQY2ABGsEQEEDIQMMAgsgASgCBCABKAIIRgRAIAEgACABKAIAEPIFNgIAIAAgARCCAQUgACABELgECwwBCwJAAkACQCAFQYCADGsOAgIAAQsgARDhASABIAEoAghBAWo2AgggACABEIIBIAEgASgCCDYCACABQQA6AA8MAgtBAyEDDAELIAAgARCCASABEOEBIAEoAggiAkEASgRAIAEgAkF/aiICNgIICyABIAI2AgAgAUEAOgAPCyADQQNGBEBBACAFIAVB//8DShsiAkEASgRAAkAgBiACOwEAIAJBCkYEQCABLAAQDQELAkACQCABLAAMRQ0AIAEoAgQgASgCCEcNACABKAIAIgIgACgCLE4NACAAIQUgAUEYaiACQQFBARC5BCIEBEAgBCAFIAIQ4gE7AQALIAAgASgCAEEBENkDIAAgASgCACAGQQEQkgMEQCABIAEoAgBBAWo2AgAgAUEAOgAPCwwBCyAAIAEQkwMgACABKAIAIAZBARCSAwRAIAEgASgCAEEBEPcFIAEgASgCAEEBajYCACABQQA6AA8LCwsLBSADQckARgRAIAEoAgQgASgCCEYEQCABKAIAIgIgACgCLEgEQCAAIAEgAkEBENoDCwUgACABEJMDCyABQQA6AA8FIANBzgBGBEAgASgCBCABKAIIRgRAIAAgARCCASABKAIAIgJBAEoEQCAAIAEgAkF/akEBENoDIAEgASgCAEF/ajYCAAsFIAAgARCTAwsgAUEAOgAPCwsLIAkkBAtIAQF/IAFBGGogAiADQQAQuQQiBEEARyADQQBKcQRAQQAhAQNAIAFBAXQgBGogACABIAJqEOIBOwEAIAFBAWoiASADRw0A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CyQAIAEgAiADIAQgBSAGIAcgCCAJIAogCyAAQQNxQZwLahExAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBA3FBmAtqETYACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBlAtqERkACyIAIAEgAiADIAQgBSAGIAcgCCAJIAogAEEBcUGSC2oRTwALHgAgASACIAMgBCAFIAYgByAIIABBA3FBjgtqEU4ACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBA3FBigtqETIACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQYgLahFNAAscACABIAIgAyAEIAUgBiAHIABBB3FBgAtqESoACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQf4KahEzAAscACABIAIgAyAEIAUgBiAHIABBA3FB+gpqESsACxoAIAEgAiADIAQgBSAGIABBD3FB6gpqERoACw0AIABB+ClqQQAQwAELHgAgASACIAMgBCAFIAYgByAIIABBAXFB6ApqEUwACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHmCmoRSwALGgAgASACIAMgBCAFIAYgAEEDcUHiCmoRLAALGAAgASACIAMgBCAFIABBD3FB0gpqES0ACxwAIAEgAiADIAQgBSAGIAcgAEEBcUHQCmoRKAALGgAgASACIAMgBCAFIAYgAEEDcUHMCmoRKQALGAAgASACIAMgBCAFIABBA3FByApqEScACxYAIAEgAiADIAQgAEEfcUGoCmoRBgALIAAgASACIAMgBCAFIAYgByAIIAkgAEEBcUGmCmoRSgALHAAgASACIAMgBCAFIAYgByAAQQFxQaQKahFJAAscACABIAIgAyAEIAUgBiAHIABBAXFBogpqEUgACxoAIAEgAiADIAQgBSAGIABBA3FBngpqESMACxgAIAEgAiADIAQgBSAAQQNxQZoKahEPAAscACABIAIgAyAEIAUgBiAHIABBAXFBmApqEUcACxYAIAEgAiADIAQgAEEDcUGUCmoRNAALFQAgASACIAMgAEH/AHFBlAlqEQcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQFxQZIJahEwAAsaACABIAIgAyAEIAUgBiAAQQFxQZAJahEmAAsaACABIAIgAyAEIAUgBiAAQQFxQY4JahEuAAsYACABIAIgAyAEIAUgAEEDcUGKCWoRLwALFgAgASACIAMgBCAAQQNxQYYJahEKAAseACABIAIgAyAEIAUgBiAHIAggAEEBcUGECWoRJAALGgAgASACIAMgBCAFIAYgAEEBcUGCCWoRNQALFAAgASACIAMgAEEPcUHyCGoRNwALFgAgASACIAMgBCAAQQNxQe4GahEOAAsUACABIAIgAyAAQQFxQewGahERAAscACABIAIgAyAEIAUgBiAHIABBAXFB6gZqEUYACxQAIAEgAiADIABBAXFB6AZqEUUACxQAIAEgAiADIABBAXFB3gRqERgACxoAIAEgAiADIAQgBSAGIABBA3FB2gRqEQ0ACxUAQZipBCgCAEE0aiAAQQJ0aigCAAsiACABIAIgAyAEIAUgBiAHIAggCSAKIABBAXFBggRqEUQACyAAIAEgAiADIAQgBSAGIAcgCCAJIABBB3FB+gNqERcACx4AIAEgAiADIAQgBSAGIAcgCCAAQQ9xQeoDahETAAscACABIAIgAyAEIAUgBiAHIABBD3FB2gNqERQACxoAIAEgAiADIAQgBSAGIABBH3FBugNqERUACxgAIAEgAiADIAQgBSAAQQ9xQaoDahESAAsWACABIAIgAyAEIABBH3FBigNqEQkACxoAIAEgAiADIAQgBSAGIABBAXFBiANqEUMACxgAIAEgAiADIAQgBSAAQQFxQYYDahFCAAsWACABIAIgAyAEIABBAXFBhANqEUEACxwAIAEgAiADIAQgBSAGIAcgAEEBcUGCA2oRQAALGAAgASACIAMgBCAFIABBAXFBwAJqET8ACxYAIAEgAiADIAQgAEEBcUG+AmoRPgALHgAgASACIAMgBCAFIAYgByAIIABBAXFBvAJqET0ACxYAIAEgAiADIAQgAEEBcUG6AmoRPAALFAAgASACIAMgAEEDcUG2AmoRIgALGgAgASACIAMgBCAFIAYgAEEBcUG0AmoRFgALFgAgASACIAMgBCAAQQFxQbIBahElAAsUACABIAIgAyAAQQFxQbABahEMAAsaACABIAIgAyAEIAUgBiAAQQFxQawBahE4AAsUACABIAIgAyAAQQNxQcgAahE7AAsRACABIAIgAEEfcUEoahEIAAsPACABIABBA3FBJGoRHAALDQAgAEEfcUEEahEgAAsPACABIABBAXFBAmoROgALCgAgAEEBcREQAAvS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AiADIAQgBUEPcUHSCmoRLQAMAQsgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASgCLEEERg0CIAFBADoANCABQQA6ADUgACgCCCIAKAIAKAIUIQMgACABIAIgAkEBIAQgA0EPcUHqCmoRGgAgAQJ/AkAgASwANQR/IAEsADQNAUEBBUEACyEAIAEgAjYCFCABIAEoAihBAWo2AiggASgCJEEBRgRAIAEoAhhBAkYEQCABQQE6ADYgAA0CQQQMAwsLIAANAEEEDAELQQMLNgIsDAILCyADQQFGBEAgAUEBNgIgCwsLC0QBAX8gACABKAIIEIUBBEAgASACIAMgBBCFBQUgACgCCCIAKAIAKAIUIQYgACABIAIgAyAEIAUgBkEPcUHqCmoRGgALCxgAIAAgASgCCBCFAQRAIAEgAiADEIcFCwuPAQAgACABKAIIEIUBBEAgASACIAMQhgUFIAAgASgCABCFAQRAAkAgASgCECACRwRAIAEoAhQgAkcEQCABIAM2AiAgASACNgIUIAEgASgCKEEBajYCKCABKAIkQQFGBEAgASgCGEECRgRAIAFBAToANgsLIAFBBDYCLAwCCwsgA0EBRgRAIAFBATYCIAsLCwsLGgAgACABKAIIEIUBBEAgASACIAMgBBCFBQsLyQEBA38jBCEEIwRBQGskBCAEIQMgACABEIUBBH9BAQUgAQR/IAFB4PQBEJQEIgEEfyADQgA3AgQgA0IANwIMIANCADcCFCADQgA3AhwgA0IANwIkIANCADcCLCADQQA2AjQgAyABNgIAIAMgADYCCCADQX82AgwgA0EBNgIwIAEoAgAoAhwhACABIAMgAigCAEEBIABBH3FBqApqEQYAIAMoAhhBAUYEfyACIAMoAhA2AgBBAQVBAAsFQQALBUEACwshBSAEJAQgBQt4AQN/IwQhASMEQRBqJAQgASEAAn9BAEGMrgQoAgBB37femgFGDQAaQbMEESEAQYyuBEHft96aATYCAEEACwRAQZSKAyAAEMICBQJ/An9BAEGQrgQoAgAiACgCBEHOlZoSRw0AGiAAKAIACyECIAEkBCACCw8LQQALowICB38BfiMEIQIjBEEwaiQEIAJBGGohASACQRBqIQMgAiEEIAJBJGohBRDLCyIABEAgACgCACIABEAgACkDMCIHQoB+g0KA1qyZ9MiTpsMAUgRAIAFBiYkDNgIAQdeIAyABEMICCyAAQdAAaiEBIAdCgdasmfTIk6bDAFEEQCAAKAIsIQELIAUgATYCACAAKAIAIgAoAgQhAUHY9AEoAgAoAhAhBkHY9AEgACAFIAZBP3FBwgJqEQUABEAgBSgCACIAKAIAKAIIIQMgACADQT9xQewAahEDACEAIARBiYkDNgIAIAQgATYCBCAEIAA2AghBgYgDIAQQwgIFIANBiYkDNgIAIAMgATYCBEGuiAMgAxDCAgsLC0H9iAMgAkEgahDCAgvVAQEDfyMEIQcjBEEQaiQEQW4gAWsgAkkEQBAKCyAALAALQQBIBH8gACgCAAUgAAshCSABQef///8HSQR/QQsgAUEBdCIIIAEgAmoiAiACIAhJGyICQRBqQXBxIAJBC0kbBUFvCyIIED8hAiAFBEAgAiAGIAUQ9wILIAMgBGsiAyIGBEAgAiAFaiAEIAlqIAYQ9wILIAFBCkcEQCAJEFQLIAAgAjYCACAAIAhBgICAgHhyNgIIIAAgAyAFaiIANgIEIAdBADoAACAAIAJqIAcQlgEgByQEC7MBAQV/IwQhBiMEQRBqJAQgBiEHIAAsAAsiBUEASCIDBH8gACgCCEH/////B3FBf2oFQQoLIgQgAkkEQCAAIAQgAiAEayADBH8gACgCBAUgBUH/AXELIgAgACACIAEQzQsFIAMEfyAAKAIABSAACyIDIQUgAiIEBEAgBSABIAQQswEaCyAHQQA6AAAgAiADaiAHEJYBIAAsAAtBAEgEQCAAIAI2AgQFIAAgAjoACwsLIAYkBAsgAQF/A0AgAUEMbCAAakEAELwDIAFBAWoiAUECRw0ACwtAAQJ/QY/PAhBcIgJBDWoQPyIBIAI2AgAgASACNgIEIAFBADYCCCABQQxqIgFBj88CIAJBAWoQRhogACABNgIAC4kDAQx/IwQhCSMEQRBqJAQgCSEDQfStBCgCAEUEQEH8rQRBgCA2AgBB+K0EQYAgNgIAQYCuBEF/NgIAQYSuBEF/NgIAQYiuBEEANgIAQditBEEANgIAQfStBCADQXBxQdiq1aoFczYCAAtBtKoEKAIAIgwEf0GoqgQoAgAiCkEoaiIGIQVBASEDQdytBCEEA0AgBCgCACIIQQhqIQEgCCAEKAIEaiEHIAhBACABa0EHcUEAIAFBB3EbaiEBA0ACQCABIAxGIAEgB09yDQAgASgCBCICQQdGDQAgAkF4cSILIAZqIQYgAkEDcUEBRiICIANqIQMgC0EAIAIbIAVqIQUgASALaiIBIAhPDQELCyAEKAIIIgEEQCABIQQMAQsLQcytBCgCACIEIAYiAWshB0HQrQQoAgAhAiAEIAVrBUEAIQNBAAshBiAAIAE2AgAgACADNgIEIABCADcCCCAAIAc2AhAgACACNgIUIABBADYCGCAAIAY2AhwgACAFNgIgIAAgCjYCJCAJJAQLkQcBCH8gACgCBCIGQXhxIQICQCAGQQNxRQRAIAFBgAJJDQEgAiABQQRqTwRAIAIgAWtB/K0EKAIAQQF0TQRAIAAPCwsMAQsgACACaiEEIAIgAU8EQCACIAFrIgJBD00EQCAADwsgACABIAZBAXFyQQJyNgIEIAAgAWoiASACQQNyNgIEIAQgBCgCBEEBcjYCBCABIAIQjAcgAA8LQbSqBCgCACAERgRAQaiqBCgCACACaiICIAFNDQEgACABIAZBAXFyQQJyNgIEIAAgAWoiAyACIAFrIgFBAXI2AgRBtKoEIAM2AgBBqKoEIAE2AgAgAA8LQbCqBCgCACAERgRAQaSqBCgCACACaiIDIAFJDQEgAyABayICQQ9LBEAgACABIAZBAXFyQQJyNgIEIAAgAWoiASACQQFyNgIEIAAgA2oiAyACNgIAIAMgAygCBEF+cTYCBAUgACADIAZBAXFyQQJyNgIEIAAgA2oiASABKAIEQQFyNgIEQQAhAUEAIQILQaSqBCACNgIAQbCqBCABNgIAIAAPCyAEKAIEIgNBAnENACACIANBeHFqIgcgAUkNACADQQN2IQUgA0GAAkkEQCAEKAIIIgIgBCgCDCIDRgRAQZyqBEGcqgQoAgBBASAFdEF/c3E2AgAFIAIgAzYCDCADIAI2AggLBQJAIAQoAhghCCAEKAIMIgIgBEYEQAJAIARBEGoiA0EEaiIFKAIAIgIEQCAFIQMFIAMoAgAiAkUEQEEAIQIMAgsLA0ACQCACQRRqIgUoAgAiCUUEQCACQRBqIgUoAgAiCUUNAQsgBSEDIAkhAgwBCwsgA0EANgIACwUgBCgCCCIDIAI2AgwgAiADNgIICyAIBEAgBCgCHCIDQQJ0QcysBGoiBSgCACAERgRAIAUgAjYCACACRQRAQaCqBEGgqgQoAgBBASADdEF/c3E2AgAMAwsFIAhBEGoiAyAIQRRqIAMoAgAgBEYbIAI2AgAgAkUNAgsgAiAINgIYIAQoAhAiAwRAIAIgAzYCECADIAI2AhgLIAQoAhQiAwRAIAIgAzYCFCADIAI2AhgLCwsLIAcgAWsiAkEQSQRAIAAgByAGQQFxckECcjYCBCAAIAdqIgEgASgCBEEBcjYCBAUgACABIAZBAXFyQQJyNgIEIAAgAWoiASACQQNyNgIEIAAgB2oiAyADKAIEQQFyNgIEIAEgAhCMBwsgAA8LQQALnwwCB38IfSABvCIFQf////8HcSIDRSAAvCIHQYCAgPwDRnIEQEMAAIA/DwsgB0H/////B3EiAkGAgID8B0sgA0GAgID8B0tyBEAgACABkg8LIAdBAEgiCAR/IANB////2wRLBH9BAgUgA0H////7A0sEf0ECIANBlgEgA0EXdmsiBHYiBkEBcWtBACADIAYgBHRGGwVBAAsLBUEACyEEAkAgBUH/////B3EiBkGAgID8B0gEQCAGQYCAgPwDaw0BIABDAACAPyAAlSAFQX9KGw8FIAZBgICA/AdrDQEgAkGAgID8A0YEQEMAAIA/DwsgBUF/SiEDIAJBgICA/ANLBEAgAUMAAAAAIAMbDwVDAAAAACABjCADGw8LAAsACyAFQYCAgIAERgRAIAAgAJQPCyAFQYCAgPgDRiAHQX9KcQRAIACRDwsgAIshCQJAAkACQCACRSACQYCAgIAEckGAgID8B0ZyBEBDAACAPyAJlSAJIAVBAEgbIQAgCEUEQCAADwsgAkGAgICEfGogBHIEQCAAjCAAIARBAUYbDwsMAQsgCARAAkACQAJAIAQOAgQAAQtDAACAvyELDAELQwAAgD8hCwsFQwAAgD8hCwsgA0GAgIDoBEsEQAJAIAJB+P//+wNJBEAgC0PK8klxlEPK8klxlCALQ2BCog2UQ2BCog2UIAVBAEgbDwsgAkGHgID8A00EQCAJQwAAgL+SIgBDAKq4P5QiCiAAQ3Cl7DaUIAAgAJRDAAAAPyAAQ6uqqj4gAEMAAIA+lJOUk5RDO6q4P5STIgmSvEGAYHG+IgAgCpMhCgwBCyALQ8rySXGUQ8rySXGUIAtDYEKiDZRDYEKiDZQgBUEAShsPCwUgCUMAAIBLlLwgAiACQYCAgARJIgIbIgNBF3VB6X5BgX8gAhtqIQQgA0H///8DcSIDQYCAgPwDciECIANB8ojzAEkEQCACIQNBACECBSACIAJBgICAfGogA0HX5/YCSSICGyEDIAQgAkEBc0EBcWohBAsgAkECdEHggwJqKgIAIg4gA74iCiACQQJ0QdCDAmoqAgAiDJMiDUMAAIA/IAwgCpKVIg+UIgm8QYBgcb4iACAAIACUIhBDAABAQJIgCSAAkiAPIA0gA0EBdUGA4P//fXFBgICAgAJyQYCAgAJqIAJBFXRqviINIACUkyAKIA0gDJOTIACUk5QiCpQgCSAJlCIAIACUIAAgACAAIAAgAENC8VM+lENVMmw+kpRDBaOLPpKUQ6uqqj6SlEO3bds+kpRDmpkZP5KUkiIMkrxBgGBxviIAlCINIAogAJQgCSAMIABDAABAwJIgEJOTlJIiCZK8QYBgcb4iAEMAQHY/lCIKIAJBAnRB2IMCaioCACAJIAAgDZOTQ084dj+UIABDxiP2OJSTkiIJkpIgBLIiDJK8QYBgcb4iACAMkyAOkyAKkyEKCyAJIAqTIAGUIAEgBUGAYHG+IgmTIACUkiEBIAAgCZQiACABkiIJvCICQYCAgJgESg0BAkACQCACQYCAgJgERgRAIAFDPKo4M5IgCSAAk14EQAwFBUGAgICYBCEDDAILAAUCQCACQf////8HcSIDQYCA2JgESw0GIAEgCSAAk19FIAJBgIDYmHxHcgRAIANBgICA+ANLBEAMBAUgAiEDQQAhAgwCCwALDAYLCwwBCyACQYCAgAQgA0EXdkGCf2p2aiIEQRd2Qf8BcSEFIAEgACAEQYCAgHwgBUGBf2p1cb6TIgCSvCEDQQAgBEH///8DcUGAgIAEckGWASAFa3YiBGsgBCACQQBIGyECCyALQwAAgD8gA0GAgH5xviIJQwByMT+UIgogCUOMvr81lCABIAkgAJOTQxhyMT+UkiIJkiIAIAAgACAAlCIBIAEgASABIAFDTLsxM5RDDurdtZKUQ1WzijiSlENhCza7kpRDq6oqPpKUkyIBlCABQwAAAMCSlSAJIAAgCpOTIgEgACABlJKTIACTkyIAvCACQRd0aiIDQYCAgARIBH0gACACEO0LBSADvguUDwsgACAAkyIAIACVDwsgC0PK8klxlEPK8klxlA8LIAtDYEKiDZRDYEKiDZQL3AMCCX8BfSMEIQUjBEEgaiQEQZipBCgCACIAQcwyaigCACIBIABByDJqIgIoAgBHBEAQpgcgAigCACEBCyAAQdAyaiABNgIAIABBADYC9AYgAEEANgLwBiAAQQA2AuwGIABBwDdqIgYQzwsgBUEIaiIHIABB3DVqKAIAIgEEfyAHIAEoAghBgMAAcQR/QQAFIAEoAvAFCyIBNgIAIABB5DVqKAIABSAHQQA2AgBBACEBQQALIgg2AgQgAEHUMmoiBCgCAARAA0AgBCADEFAoAgAiAhCIBQRAIAEgAkYgAigCCEGAgIAIcUEAR3IgAiAIRnJFBEAgAhCKBwsLIANBAWoiAyAEKAIARw0ACwsgBUEQaiEEIAUhAiABIQNBACEBA0AgAwRAIAMQiAUEQCADEIoHCwsgAUEBaiIBQQJHBEAgAUECdCAHaigCACEDDAELCyAGELkMIAAsALwBBEAgAiAAKQLwATcDACAAQaQraioCACEJIABB0DhqKAIAIQEgBCACKQIANwIAIABB3DdqIAQgCSABEI0JCyAAQfQ3aigCAARAIAYgAEHcN2oQhwcLIAYgAEGcN2oQugsgACAAQaw3aigCADYC7AYgACAAQag3aigCADYC8AYgBSQEC+YPAwt/An4IfCABvSINQiCIpyIFQf////8HcSIDIA2nIgZyRQRARAAAAAAAAPA/DwsgAL0iDkIgiKciB0GAgMD/A0YgDqciCEUiCnEEQEQAAAAAAADwPw8LAkACQAJAIAdB/////wdxIgRBgIDA/wdNBEAgBEGAgMD/B0YgCEEAR3EgA0GAgMD/B0tyRQRAIANBgIDA/wdGIgsgBkEAR3FFBEACQAJAAkAgB0EASCIJRQ0AIANB////mQRLBH9BAiECDAEFIANB//+//wNLBH8gA0EUdiECIANB////iQRLBEBBAiAGQbMIIAJrIgJ2IgxBAXFrQQAgBiAMIAJ0RhshAgwDCyAGBH9BAAVBAiADQZMIIAJrIgJ2IgZBAXFrQQAgAyAGIAJ0RhshAgwECwUMAgsLIQIMAgsgBkUNAAwBCyALBEAgCCAEQYCAwIB8anJFBEBEAAAAAAAA8D8PCyAFQX9KIQIgBEH//7//A0sEQCABRAAAAAAAAAAAIAIbDwVEAAAAAAAAAAAgAZogAhsPCwALIANBgIDA/wNGBEAgAEQAAAAAAADwPyAAoyAFQX9KGw8LIAVBgICAgARGBEAgACAAog8LIAVBgICA/wNGIAdBf0pxBEAgAJ8PCwsgAJkhDyAKBEAgBEUgBEGAgICABHJBgIDA/wdGcgRARAAAAAAAAPA/IA+jIA8gBUEASBshACAJRQRAIAAPCyAEQYCAwIB8aiACcgRAIACaIAAgAkEBRhsPCwwFCwsgCQRAAkACQAJAIAIOAgcAAQtEAAAAAAAA8L8hEQwBC0QAAAAAAADwPyERCwVEAAAAAAAA8D8hEQsgA0GAgICPBEsEQAJAIANBgIDAnwRLBEAgBEGAgMD/A0kEQCMDRAAAAAAAAAAAIAVBAEgbDwUjA0QAAAAAAAAAACAFQQBKGw8LAAsgBEH//7//A0kEQCARRJx1AIg85Dd+okScdQCIPOQ3fqIgEURZ8/jCH26lAaJEWfP4wh9upQGiIAVBAEgbDwsgBEGAgMD/A00EQCAPRAAAAAAAAPC/oCIARAAAAGBHFfc/oiIQIABERN9d+AuuVD6iIAAgAKJEAAAAAAAA4D8gAERVVVVVVVXVPyAARAAAAAAAANA/oqGioaJE/oIrZUcV9z+ioSIPoL1CgICAgHCDvyIAIBChIRAMAQsgEUScdQCIPOQ3fqJEnHUAiDzkN36iIBFEWfP4wh9upQGiRFnz+MIfbqUBoiAFQQBKGw8LBSAPRAAAAAAAAEBDoiIAvUIgiKcgBCAEQYCAwABJIgUbIgJBFHVBzHdBgXggBRtqIQQgAkH//z9xIgNBgIDA/wNyIQIgA0GPsQ5JBEAgAiEDQQAhAgUgAiACQYCAQGogA0H67C5JIgIbIQMgBCACQQFzQQFxaiEECyACQQN0QcDpAWorAwAiFCAAIA8gBRu9Qv////8PgyADrUIghoS/IhAgAkEDdEGg6QFqKwMAIhKhIhNEAAAAAAAA8D8gEiAQoKMiFaIiD71CgICAgHCDvyIAIAAgAKIiFkQAAAAAAAAIQKAgDyAAoCAVIBMgA0EBdUGAgICAAnJBgIAgaiACQRJ0aq1CIIa/IhMgAKKhIBAgEyASoaEgAKKhoiIQoiAPIA+iIgAgAKIgACAAIAAgACAARO9ORUoofso/okRl28mTSobNP6CiRAFBHalgdNE/oKJETSaPUVVV1T+gokT/q2/btm3bP6CiRAMzMzMzM+M/oKKgIhKgvUKAgICAcIO/IgCiIhMgECAAoiAPIBIgAEQAAAAAAAAIwKAgFqGhoqAiD6C9QoCAgIBwg78iAEQAAADgCcfuP6IiECACQQN0QbDpAWorAwAgDyAAIBOhoUT9AzrcCcfuP6IgAET1AVsU4C8+PqKhoCIPoKAgBLciEqC9QoCAgIBwg78iACASoSAUoSAQoSEQCyAPIBChIAGiIAEgDUKAgICAcIO/Ig+hIACioCEBIAAgD6IiACABoCIPvSINQiCIpyECIA2nIQMgAkH//7+EBEoEQCADIAJBgIDA+3tqciABRP6CK2VHFZc8oCAPIAChZHINBQUgAkGA+P//B3FB/5fDhARLBEAgAyACQYDovPsDanIgASAPIAChZXINBwsLIAJB/////wdxIgNBgICA/wNLBH8gAkGAgMAAIANBFHZBgnhqdmoiA0EUdkH/D3EhBCABIAAgA0GAgEAgBEGBeGp1ca1CIIa/oSIAoL0hDUEAIANB//8/cUGAgMAAckGTCCAEa3YiA2sgAyACQQBIGwVBAAshAiARRAAAAAAAAPA/IA1CgICAgHCDvyIPRAAAAABDLuY/oiIQIAEgDyAAoaFE7zn6/kIu5j+iIA9EOWyoDGFcID6ioSIPoCIAIAAgACAAoiIBIAEgASABIAFE0KS+cmk3Zj6iRPFr0sVBvbu+oKJELN4lr2pWET+gokSTvb4WbMFmv6CiRD5VVVVVVcU/oKKhIgGiIAFEAAAAAAAAAMCgoyAPIAAgEKGhIgEgACABoqChIAChoSIAvSINQiCIpyACQRR0aiIDQYCAwABIBHwgACACEIYCBSANQv////8PgyADrUIghoS/C6IPCwsLIAAgAaAPCyAAIAChIgAgAKMPCyARRJx1AIg85Dd+okScdQCIPOQ3fqIPCyARRFnz+MIfbqUBokRZ8/jCH26lAaIL8wMBBn8CQAJAIAG8IgVB/////wdxIgZBgICA/AdLDQAgALwiAkH/////B3EiA0GAgID8B0sNAAJAIAVBgICA/ANGBEAgABCOByEADAELIAJBH3YiByAFQR52QQJxciECIANFBEACQAJAAkAgAkEDcQ4EBAQAAQILQ9sPSUAhAAwDC0PbD0nAIQAMAgsLAkAgBUH/////B3EiBEGAgID8B0gEQCAEDQFD2w/Jv0PbD8k/IAcbIQAMAgUgBEGAgID8B2sNASACQf8BcSEEIANBgICA/AdGBEACQAJAAkACQAJAIARBA3EOBAABAgMEC0PbD0k/IQAMBwtD2w9JvyEADAYLQ+TLFkAhAAwFC0PkyxbAIQAMBAsFAkACQAJAAkACQCAEQQNxDgQAAQIDBAtDAAAAACEADAcLQwAAAIAhAAwGC0PbD0lAIQAMBQtD2w9JwCEADAQLCwsLIANBgICA/AdGIAZBgICA6ABqIANJcgRAQ9sPyb9D2w/JPyAHGyEADAELIAVBAEggA0GAgIDoAGogBklxBH1DAAAAAAUgACABlYsQjgcLIQACQAJAAkAgAkEDcQ4DAwABAgsgAIwhAAwCC0PbD0lAIABDLr27M5KTIQAMAQsgAEMuvbszkkPbD0nAkiEACwwBCyAAIAGSIQALIAAL4gICAn8CfSAAvCICQf////8HcSIBQf////sDSwRAIAFBgICA/ANGBEBD2g9JQEMAAAAAIAJBAEgbDwVDAAAAACAAIACTlQ8LAAsgAUGAgID4A0kEQCABQYGAgJQDSQRAQ9oPyT8PC0PaD8k/IABDaCGiMyAAIACUIgMgA0O6Ey+9IANDa9MNPJSTlEN1qio+kpRDAACAPyADQ67lND+Uk5UgAJSTk5MPCyACQQBIBH1D2g/JPyAAQwAAgD+SQwAAAD+UIgCRIgMgACAAQ7oTL70gAENr0w08lJOUQ3WqKj6SlEMAAIA/IABDruU0P5STlSADlENoIaKzkpKTQwAAAECUBUMAAIA/IACTQwAAAD+UIgCRIgS8QYBgcb4hAyAAIABDuhMvvSAAQ2vTDTyUk5RDdaoqPpKUQwAAgD8gAEOu5TQ/lJOVIASUIAAgAyADlJMgBCADkpWSIAOSQwAAAECUCwvIAQEDfyACKAJMQX9KBH9BAQVBAAsaIAIgAiwASiIDIANB/wFqcjoASiABIQUCQCACKAIIIAIoAgQiA2siBEEASgR/IAAgAyAEIAUgBCAFSRsiAxBGGiACIAIoAgQgA2o2AgQgACADaiEAIAUgA2sFIAULIgNFDQAgACEEIAMhAANAAkAgAhClBw0AIAIgBCAAIAIoAiBBP3FBwgJqEQUAIgNBAWpBAkkNACAAIANrIgBFDQIgAyAEaiEEDAELCyAFIABrIQELIAELewEBfwJAIAAoAkxBAE4EQAJAIAAsAEtBCkYNACAAKAIUIgEgACgCEE8NACAAIAFBAWo2AhQgAUEKOgAADAILIAAQlAcMAQsgACwAS0EKRwRAIAAoAhQiASAAKAIQSQRAIAAgAUEBajYCFCABQQo6AAAMAgsLIAAQlAcLC2QCAX8BfiAAKAIoIQEgAEIAIAAoAgBBgAFxBH9BAkEBIAAoAhQgACgCHEsbBUEBCyABQQFxQYQEahE5ACICQgBZBEAgACgCFCAAKAIca6wgAiAAKAIIIAAoAgRrrH18IQILIAILlgIBAn8CQAJAIAEiBCAAc0EDcQ0AAkAgAkEARyIDIARBA3FBAEdxBEADQCAAIAEsAAAiAzoAACADRQ0CIABBAWohACACQX9qIgJBAEciAyABQQFqIgFBA3FBAEdxDQALCyADBEAgASwAAARAIAJBA0sEQANAIAEoAgAiA0GAgYKEeHFBgIGChHhzIANB//37d2pxRQRAIAAgAzYCACABQQRqIQEgAEEEaiEAIAJBfGoiAkEDSw0BCwsLDAMLBUEAIQILCwwBCyABIQMgAgR/IAIhAQN/IAAgAywAACICOgAAIAJFBEAgASECDAMLIANBAWohAyAAQQFqIQAgAUF/aiIBDQBBAAsFQQALIQILIABBACACEGoaC8YHARF/IwQhDCMEQaAIaiQEIAwhDSAMQYAIaiILQgA3AwAgC0IANwMIIAtCADcDECALQgA3AxgCQAJAQZyUAiwAACICBEACQANAIAAgBmosAABFBEBBACEADAILIAJB/wFxIgFBBXZBAnQgC2oiAiACKAIAQQEgAUEfcXRyNgIAIAFBAnQgDWogBkEBaiIGNgIAIAZBnJQCaiwAACICDQALIAZBAUsiCQRAQQEhA0F/IQFBASEEQQEhBQNAIAEgBGpBnJQCaiwAACICIANBnJQCaiwAACIIRgRAIAQgBUYEfyAFIAdqIQdBAQUgBEEBagshBCABIQIFIAJB/wFxIAhB/wFxSgR/IAEhAkEBIQQgAyIHIAFrBSAHIgJBAWohB0EBIQRBAQshBQsgBCAHaiIDIAZJBEAgAiEBDAELCyAJBEBBASEJQX8hB0EAIQRBASEIQQEhAwNAIAcgCGpBnJQCaiwAACIBIAlBnJQCaiwAACIKRgRAIAMgCEYEfyADIARqIQRBAQUgCEEBagshCCAHIQEFIAFB/wFxIApB/wFxSAR/QQEhCCAJIgQgByIBawUgBCIBQQFqIQRBASEIQQELIQMLIAQgCGoiCSAGTw0FIAEhBwwAAAsABUF/IQFBASEDDAQLAAVBfyECQX8hAUEBIQVBASEDDAMLAAsFQX8hAkF/IQFBASEFQQEhAwwBCwwBCyAGQT9yIQ4gBkF/aiEPQZyUAiADIAUgAUEBaiACQQFqSyIDGyIHQZyUAmogASACIAMbIgpBAWoiBBDFAgR/IAogBiAKa0F/aiIBIAogAUsbQQFqIgEhByAGIAFrIQhBAAUgBiAHayIICyIJQQBHIRBBACEDIAAhAgNAIAIgACIBayAGSQRAIAJBACAOEOkBIgUEfyAFIAFrIAZJBH9BACEADAQFIAULBSACIA5qCyECCyAAIA9qLQAAIgFBBXZBAnQgC2ooAgBBASABQR9xdHEEQAJAIAYgAUECdCANaigCAGsiAQRAIAggASAQIANBAEdxIAEgB0lxGyEFQQAhAQwBCyAEIAMgBCADSyIRGyIBQZyUAmosAAAiBQRAAkADQCAAIAFqLQAAIAVB/wFxRgRAIAFBAWoiAUGclAJqLAAAIgVFDQIMAQsLIAEgCmshBUEAIQEMAgsLIBFFDQMgBCEBA0AgAUF/aiIBQZyUAmosAAAgACABaiwAAEcEQCAHIQUgCSEBDAILIAEgA0sNAAsMAwsFIAYhBUEAIQELIAAgBWohACABIQMMAAALAAsgDCQEIAALqgEBBH9Bn5QCLQAAQZyUAi0AAEEYdEGdlAItAABBEHRyQZ6UAi0AAEEIdHJyIgMgAEEDaiIBLAAAIgRB/wFxIAAtAABBGHQgAC0AAUEQdHIgAC0AAkEIdHJyIgJGIARFIgByRQRAIAEhACACIQEDfyADIABBAWoiACwAACICQf8BcSABQQh0ciIBRiACRSICcgR/IAAhASACBQwBCwshAAtBACABQX1qIAAbC5QBAQN/IAAtAABBGHQgAC0AAUEQdHIgAEECaiIALAAAIgFB/wFxQQh0ciICQZyUAi0AAEEYdEGdlAItAABBEHRyQZ6UAi0AAEEIdHIiA0YgAUUiAXJFBEAgAiEBA38gAyAAQQFqIgAsAAAiAkH/AXEgAXJBCHQiAUYgAkUiAnIEfyACBQwBCwshAQtBACAAQX5qIAEbC3cBA39BnZQCLQAAQZyUAi0AAEEIdHIhAyAAQQFqIgEsAAAiAgR/An8gAkH/AXEgAC0AAEEIdHIhAANAIAMgAEH//wNxIgBHBEAgAUEBaiIBLAAAIgJB/wFxIABBCHRyIQBBACACRQ0CGgwBCwsgAUF/agsFQQALC4wBAQF/QZyUAiwAACIBBH8gACABEKcCIgAEf0GdlAIsAAAEfyAALAABBH8Cf0GelAIsAABFBEAgABDfCwwBCyAALAACBH9Bn5QCLAAARQRAIAAQ3gsMAgsgACwAAwR/QaCUAiwAAAR/IAAQ3AsFIAAQ3QsLBUEACwVBAAsLBUEACwUgAAsFQQALBSAACwuhAQEBfiABQQFGBEBCACAAKAIIIAAoAgRrrH0hAgsCfwJAIAAoAhQgACgCHE0NACAAQQBBACAAKAIkQT9xQcICahEFABogACgCFA0AQX8MAQsgAEEANgIQIABBADYCHCAAQQA2AhQgACACIAEgACgCKEEBcUGEBGoROQBCAFMEf0F/BSAAQQA2AgggAEEANgIEIAAgACgCAEFvcTYCAEEACwsLVgEDfyAAKAJUIgNBACACQYACaiIFEOkBIQQgASADIAQgA2sgBSAEGyIBIAIgASACSRsiAhBGGiAAIAIgA2o2AgQgACABIANqIgE2AgggACABNgJUIAILVQEDfyMEIQIjBEEQaiQEIAIiAyAAKAIANgIAA0AgAygCAEEDakF8cSIAKAIAIQQgAyAAQQRqNgIAIAFBf2ohACABQQFLBEAgACEBDAELCyACJAQgBAvLFAMRfwN+AXwjBCEQIwRBoAJqJAQgACgCTEF/SgR/QQEFQQALGiAQQYgCaiEPIBAiCUGEAmohESAJQZACaiESIAEsAAAiCwRAAkACQAJAAkACQANAAkAgC0H/AXEQ+wIEQANAIAFBAWoiAy0AABD7AgRAIAMhAQwBCwsgAEIAEMEBA0AgACgCBCIDIAAoAmhJBH8gACADQQFqNgIEIAMtAAAFIAAQWQsQ+wINAAsgACgCaARAIAAgACgCBEF/aiILNgIEBSAAKAIEIQsLIAsgACgCCGusIAApA3ggFHx8IRQFAkAgASwAAEElRiIHBEACQAJ/AkACQCABQQFqIgMsAAAiBEElaw4GAwEBAQEAAQtBACEHIAFBAmoMAQsgBEH/AXEQqAIEQCABLAACQSRGBEAgAiADLQAAQVBqEOMLIQcgAUEDagwCCwsgAigCAEEDakF8cSIBKAIAIQcgAiABQQRqNgIAIAMLIgEtAAAQqAIEf0EAIQQDfyABLQAAIARBCmxBUGpqIQQgAUEBaiIBLQAAEKgCDQAgAQsFQQAhBCABCyIDQQFqIQggAywAACIKQe0ARgR/IAgsAAAhCkEAIQUgA0ECaiEBIAghA0EAIQYgB0EARwUgCCEBQQALIQtBAQJ/AkACQAJAAkACQAJAIApBwQBrDjoFDgUOBQUFDg4ODgQODg4ODg4FDg4ODgUODgUODg4ODgUOBQUFBQUABQIOAQ4FBQUODgUDBQ4OBQ4DDgsgA0ECaiABIAEsAABB6ABGIgMbIQFBfkF/IAMbDAULIANBAmogASABLAAAQewARiIDGyEBQQNBASADGwwEC0EDDAMLQQEMAgtBAgwBCyADIQFBAAsgAS0AACIDQS9xQQNGIggbIQwCQAJAAkACQCADQSByIAMgCBsiDUH/AXEiCEEYdEEYdUHbAGsOFAMCAgICAgICAAICAgICAgICAgIBAgsgBEEBIARBAUobIQQMAgsgByAMIBQQkwcMBAsgAEIAEMEBA0AgACgCBCIDIAAoAmhJBH8gACADQQFqNgIEIAMtAAAFIAAQWQsQ+wINAAsgACgCaARAIAAgACgCBEF/aiIDNgIEBSAAKAIEIQMLIAMgACgCCGusIAApA3ggFHx8IRQLIAAgBKwiFRDBASAAKAIEIgogACgCaCIDSQRAIAAgCkEBajYCBAUgABBZQQBIDQggACgCaCEDCyADBEAgACAAKAIEQX9qNgIECwJAAkACQAJAAkACQAJAAkAgCEEYdEEYdUHBAGsOOAUHBwcFBQUHBwcHBwcHBwcHBwcHBwcHAQcHAAcHBwcHBQcAAwUFBQcEBwcHBwcCAQcHAAcDBwcBBwsgDUEQckHzAEYEQCAJQX9BgQIQahogCUEAOgAAIA1B8wBGBEAgCUEAOgAhIAlBADYBCiAJQQA6AA4LIAEhAwUCQCAJIAFBAWoiAywAAEHeAEYiCiIIQYECEGoaIAlBADoAAAJAAkACQCABQQJqIAMgChsiAywAAEEtayIBBEAgAUEwRgRADAIFDAMLAAsgCSAIQQFzIgo6AC4gA0EBaiEDDAILIAkgCEEBcyIKOgBeIANBAWohAwwBCyAIQQFzIQoLA0ACQAJAIAMsAAAiAQ5eEwEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAwELAkAgA0EBaiIILAAAIgEiEwRAIBNB3QBHDQELQS0hAQwBCyADQX9qLQAAIgMgAUH/AXFIBH8gAyEBA38gAUEBaiIBIAlqIAo6AAAgASAILAAAIgNB/wFxSQ0AIAMhASAICwUgCAshAwsgAUH/AXFBAWogCWogCjoAACADQQFqIQMMAAALAAsLIARBAWpBHyANQeMARiINGyEBIAtBAEchCCAMQQFGIgwEfyAIBEAgAUECdBDJASIFRQRAQQAhBUEAIQYMEQsFIAchBQsgD0EANgIAIA9BADYCBEEAIQYDQAJAIAVFIQoDQANAAkAgACgCBCIEIAAoAmhJBH8gACAEQQFqNgIEIAQtAAAFIAAQWQsiBEEBaiAJaiwAAEUNAyASIAQ6AAACQAJAIBEgEiAPEO4LQX5rDgIBAAILQQAhBgwVCwwBCwsgCkUEQCAGQQJ0IAVqIBEoAgA2AgAgBkEBaiEGCyABIAZGIAhxRQ0ACyAFIAFBAXRBAXIiAUECdBCNByIEBEAgBCEFDAIFQQAhBgwSCwALCyAPIgEEfyABKAIARQVBAQsEfyAGIQRBACEGIAUFQQAhBgwQCwUCfyAIBEAgARDJASIGRQRAQQAhBUEAIQYMEgtBACEFA0ADQCAAKAIEIgQgACgCaEkEfyAAIARBAWo2AgQgBC0AAAUgABBZCyIEQQFqIAlqLAAARQRAIAUhBEEAIQVBAAwECyAFIAZqIAQ6AAAgASAFQQFqIgVHDQALIAYgAUEBdEEBciIBEI0HIgQEQCAEIQYMAQVBACEFDBMLAAALAAsgB0UEQANAIAAoAgQiASAAKAJoSQR/IAAgAUEBajYCBCABLQAABSAAEFkLQQFqIAlqLAAADQBBACEEQQAhBkEAIQVBAAwCAAsAC0EAIQQDfyAAKAIEIgEgACgCaEkEfyAAIAFBAWo2AgQgAS0AAAUgABBZCyIBQQFqIAlqLAAABH8gBCAHaiABOgAAIARBAWohBAwBBSAHIQZBACEFQQALCwsLIQEgACgCaARAIAAgACgCBEF/aiIKNgIEBSAAKAIEIQoLIAApA3ggCiAAKAIIa6x8IhZCAFEEQCABIQUMDAsgDUEBcyAVIBZRckUEQCABIQUMDAsgCARAIAwEQCAHIAU2AgAFIAcgBjYCAAsLIA1FBEAgBQRAIARBAnQgBWpBADYCAAsgBkUEQCABIQUgAyEBQQAhBgwICyAEIAZqQQA6AAALIAEhBSADIQEMBgtBECEDDAQLQQghAwwDC0EKIQMMAgtBACEDDAELIAAgDEEAEJoHIRcgACkDeEIAIAAoAgQgACgCCGusfVENBiAHBEACQAJAAkAgDA4DAAECBQsgByAXtjgCAAwECyAHIBc5AwAMAwsgByAXOQMADAILDAELIAAgAxD9CyEVIAApA3hCACAAKAIEIAAoAghrrH1RDQUgDUHwAEYgB0EAR3EEQCAHIBU+AgAFIAcgDCAVEJMHCwsgB0EARyAOaiEOIAAoAgQgACgCCGusIAApA3ggFHx8IRQMAgsLIABCABDBASAAKAIEIgMgACgCaEkEfyAAIANBAWo2AgQgAy0AAAUgABBZCyIDIAEgB2oiAS0AAEcNBCAUQgF8IRQLCyABQQFqIgEsAAAiCw0BDAYLCwwDCyAAKAJoBEAgACAAKAIEQX9qNgIECyADQX9KIA5yDQNBACELDAELIA5FDQAMAQtBfyEOCyALBEAgBhBUIAUQVAsLCyAQJAQgDgsLACAAIAEgAhDiCwtHAQJ/IwQhAyMEQZABaiQEIANBAEGQARBqGiADQTY2AiAgAyAANgIsIANBfzYCTCADIAA2AlQgAyABIAIQ5AshBCADJAQgBAsvAQJ/IAAQjAUiASgCADYCOCABKAIAIgIEQCACIAA2AjQLIAEgADYCAEGQqgQQEguXAwEHfyMEIQMjBEFAayQEIANBKGohBCADQRhqIQUgA0EQaiEHIAMhBiADQThqIQhB/YcDIAEsAAAQpwIEQEGYCRDJASICBEAgAkEAQZABEGoaIAFBKxCnAkUEQCACQQhBBCABLAAAQfIARhs2AgALIAFB5QAQpwIEQCAGIAA2AgAgBkECNgIEIAZBATYCCEHdASAGEA4aCyABLAAAQeEARgRAIAcgADYCACAHQQM2AgRB3QEgBxAOIgFBgAhxRQRAIAUgADYCACAFQQQ2AgQgBSABQYAIcjYCCEHdASAFEA4aCyACIAIoAgBBgAFyIgE2AgAFIAIoAgAhAQsgAiAANgI8IAIgAkGYAWo2AiwgAkGACDYCMCACQX86AEsgAUEIcUUEQCAEIAA2AgAgBEGTqAE2AgQgBCAINgIIQTYgBBAbRQRAIAJBCjoASwsLIAJBNTYCICACQQE2AiQgAkEBNgIoIAJBATYCDEHMqQQoAgBFBEAgAkF/NgJMCyACEOcLBUEAIQILBUGIqgRBFjYCAAsgAyQEIAILcAECfyAAQSsQpwJFIQEgACwAACICQfIAR0ECIAEbIgEgAUGAAXIgAEH4ABCnAkUbIgEgAUGAgCByIABB5QAQpwJFGyIAIABBwAByIAJB8gBGGyIAQYAEciAAIAJB9wBGGyIAQYAIciAAIAJB4QBGGwvAAQEGfyMEIQMjBEEwaiQEIANBIGohBSADQRBqIQQgAyECQf2HAyABLAAAEKcCBH8gARDpCyEGIAIgADYCACACIAZBgIACcjYCBCACQbYDNgIIQQUgAhAdEPwCIgJBAEgEf0EABSAGQYCAIHEEQCAEIAI2AgAgBEECNgIEIARBATYCCEHdASAEEA4aCyACIAEQ6AsiAAR/IAAFIAUgAjYCAEEGIAUQGhpBAAsLBUGIqgRBFjYCAEEACyEHIAMkBCAHCz4BAX8gACgCRARAIAAoAoQBIgEEQCABIAAoAoABNgKAAQsgACgCgAEiAAR/IABBhAFqBUG8gwILIAE2AgALC6UMAhZ/AXwjBCENIwRBsARqJAQgDUHAAmohDiACQX1qQRhtIgNBACADQQBKGyELQaDmASgCACIKQQBOBEAgCkEBaiEFQQAhAyALIQQDQCADQQN0IA5qIARBAEgEfEQAAAAAAAAAAAUgBEECdEGw5gFqKAIAtws5AwAgBEEBaiEEIANBAWoiAyAFRw0ACwsgDUHgA2ohCCANQaABaiEQIA0hDCALQWhsIhQgAkFoamohB0EAIQQDQCAEIQVEAAAAAAAAAAAhGUEAIQMDQCAZIANBA3QgAGorAwAgBSADa0EDdCAOaisDAKKgIRkgA0EBaiIDQQFHDQALIARBA3QgDGogGTkDACAEQQFqIQMgBCAKSARAIAMhBAwBCwsgB0EASiERQRggB2shEkEXIAdrIRUgB0UhFiAKIQMCQAJAA0ACQCADQQN0IAxqKwMAIRkgA0EASiIJBEBBACEFIAMhBANAIAVBAnQgCGogGSAZRAAAAAAAAHA+oqq3IhlEAAAAAAAAcEGioao2AgAgBEF/aiIGQQN0IAxqKwMAIBmgIRkgBUEBaiEFIARBAUoEQCAGIQQMAQsLCyAZIAcQhgIiGSAZRAAAAAAAAMA/opxEAAAAAAAAIECioSIZqiEEIBkgBLehIRkCQAJAAkAgEQR/IANBf2pBAnQgCGoiBigCACIPIBJ1IQUgBiAPIAUgEnRrIgY2AgAgBiAVdSEGIAQgBWohBAwBBSAWBH8gA0F/akECdCAIaigCAEEXdSEGDAIFIBlEAAAAAAAA4D9mBH9BAiEGDAQFQQALCwshBgwCCyAGQQBKDQAMAQsCfyAEIRggCQR/QQAhBEEAIQkDfyAJQQJ0IAhqIhcoAgAhDwJAAkAgBAR/Qf///wchEwwBBSAPBH9BgICACCETQQEhBAwCBUEACwshBAwBCyAXIBMgD2s2AgALIAMgCUEBaiIJRw0AIAQLBUEACyEJIBEEQAJAAkACQCAHQQFrDgIAAQILIANBf2pBAnQgCGoiBCAEKAIAQf///wNxNgIADAELIANBf2pBAnQgCGoiBCAEKAIAQf///wFxNgIACwsgGAtBAWohBCAGQQJGBEBEAAAAAAAA8D8gGaEhGSAJBEAgGUQAAAAAAADwPyAHEIYCoSEZC0ECIQYLCyAZRAAAAAAAAAAAYg0CIAMgCkoEQCADIQVBACEJA0AgBUF/aiIFQQJ0IAhqKAIAIAlyIQkgBSAKSg0ACyAJDQELQQEhBQNAIAVBAWohBCAKIAVrQQJ0IAhqKAIARQRAIAQhBQwBCwsgAyAFaiEFA0AgA0EBaiIGQQN0IA5qIANBAWoiBCALakECdEGw5gFqKAIAtzkDAEQAAAAAAAAAACEZQQAhAwNAIBkgA0EDdCAAaisDACAGIANrQQN0IA5qKwMAoqAhGSADQQFqIgNBAUcNAAsgBEEDdCAMaiAZOQMAIAQgBUgEQCAEIQMMAQsLIAUhAwwBCwsgAyEAIAchAgNAIAJBaGohAiAAQX9qIgBBAnQgCGooAgBFDQALDAELIBlBACAHaxCGAiIZRAAAAAAAAHBBZgR/IANBAnQgCGogGSAZRAAAAAAAAHA+oqoiBbdEAAAAAAAAcEGioao2AgAgAiAUaiECIANBAWoFIBmqIQUgByECIAMLIgBBAnQgCGogBTYCAAtEAAAAAAAA8D8gAhCGAiEZIABBf0oiBwRAIAAhAgNAIAJBA3QgDGogGSACQQJ0IAhqKAIAt6I5AwAgGUQAAAAAAABwPqIhGSACQX9qIQMgAkEASgRAIAMhAgwBCwsgBwRAIAAhAgNAIAAgAmshC0QAAAAAAAAAACEZQQAhAwNAIBkgA0EDdEHA6AFqKwMAIAIgA2pBA3QgDGorAwCioCEZIANBAWohBSADIApOIAMgC09yRQRAIAUhAwwBCwsgC0EDdCAQaiAZOQMAIAJBf2ohAyACQQBKBEAgAyECDAELCwsLIAcEQEQAAAAAAAAAACEZA0AgGSAAQQN0IBBqKwMAoCEZIABBf2ohAiAAQQBKBEAgAiEADAELCwVEAAAAAAAAAAAhGQsgASAZmiAZIAYbOQMAIA0kBCAEQQdxC5sBAQF/IAFB/wBKBEAgAUGCfmoiAkH/ACACQf8ASBsgAUGBf2ogAUH+AUoiAhshASAAQwAAAH+UIgBDAAAAf5QgACACGyEABSABQYJ/SARAIAFB/AFqIgJBgn8gAkGCf0obIAFB/gBqIAFBhH5IIgIbIQEgAEMAAIAAlCIAQwAAgACUIAAgAhshAAsLIAAgAUEXdEGAgID8A2q+lAv5AgEGfyMEIQYjBEEQaiQEIAYhAyACQYyqBCACGyIEKAIAIQICfwJAIAEEfwJ/IAAgAyAAGyEDAkACQCACBEAgAiEAQQEhAgwBBSABLAAAIgBBf0oEQCADIABB/wFxNgIAIABBAEcMBAsgASwAACEAQZCDAigCACgCAEUEQCADIABB/78DcTYCAEEBDAQLIABB/wFxQb5+aiIAQTJLDQUgAUEBaiEBIABBAnRBwN4BaigCACEAQQAiAg0BCwwBCyABLQAAIgVBA3YiByAAQRp1aiAHQXBqckEHSw0DIAJBf2ohAiAFQYB/aiAAQQZ0ciIAQQBIBEADQCACRQ0CIAFBAWoiASwAACIFQcABcUGAAUcNBSACQX9qIQIgBUH/AXFBgH9qIABBBnRyIgBBAEgNAAsLIARBADYCACADIAA2AgBBASACawwBCyAEIAA2AgBBfgsFIAINAUEACwwBCyAEQQA2AgBBiKoEQdQANgIAQX8LIQggBiQEIAgL+wEBA38gAUH/AXEiAgRAAkAgAEEDcQRAIAFB/wFxIQMDQCAALAAAIgQgA0EYdEEYdUYgBEVyDQIgAEEBaiIAQQNxDQALCyACQYGChAhsIQMgACgCACICQYCBgoR4cUGAgYKEeHMgAkH//ft3anFFBEADQCACIANzIgJBgIGChHhxQYCBgoR4cyACQf/9+3dqcUUEQAEgAEEEaiIAKAIAIgJBgIGChHhxQYCBgoR4cyACQf/9+3dqcUUNAQsLCyABQf8BcSECA0AgAEEBaiEBIAAsAAAiAyACQRh0QRh1RiADRXJFBEAgASEADAELCwsFIAAQXCAAaiEACyAAC4EEAgN/BX4gAL0iB0I0iKdB/w9xIQIgAb0iBkI0iKdB/w9xIQQgB0KAgICAgICAgIB/gyEJAnwCQCAGQgGGIgVCAFENAAJ8IAJB/w9GIAG9Qv///////////wCDQoCAgICAgID4/wBWcg0BIAdCAYYiCCAFWARAIABEAAAAAAAAAACiIAAgBSAIURsPCyACBH4gB0L/////////B4NCgICAgICAgAiEBSAHQgyGIgVCf1UEQEEAIQIDQCACQX9qIQIgBUIBhiIFQn9VDQALBUEAIQILIAdBASACa62GCyIIIAQEfiAGQv////////8Hg0KAgICAgICACIQFIAZCDIYiBUJ/VQRAA0AgA0F/aiEDIAVCAYYiBUJ/VQ0ACwsgBkEBIAMiBGuthgsiBn0iBUJ/VSEDIAIgBEoEQAJAA0ACQCADBEAgBUIAUQ0BBSAIIQULIAVCAYYiCCAGfSIFQn9VIQMgAkF/aiICIARKDQEMAgsLIABEAAAAAAAAAACiDAILCyADBEAgAEQAAAAAAAAAAKIgBUIAUQ0BGgUgCCEFCyAFQoCAgICAgIAIVARAA0AgAkF/aiECIAVCAYYiBUKAgICAgICACFQNAAsLIAkgBUKAgICAgICAeHwgAq1CNIaEIAVBASACa62IIAJBAEobhL8LDAELIAAgAaIiACAAowsLmBQDEH8Dfgd8IwQhEiMEQYAEaiQEIBIhCUEAIAIgA2oiE2shFAJAAkADQAJAAkAgAUEuaw4DAwEAAQsgACgCBCIBIAAoAmhJBH8gACABQQFqNgIEIAEtAAAFIAAQWQshAUEBIQsMAQsLDAELIAAoAgQiASAAKAJoSQR/IAAgAUEBajYCBCABLQAABSAAEFkLIgFBMEYEQAN/IBdCf3whFyAAKAIEIgEgACgCaEkEfyAAIAFBAWo2AgQgAS0AAAUgABBZCyIBQTBGDQBBASENQQELIQsFQQEhDQsLIAlBADYCAAJ8AkACQAJAAkAgAUEuRiIOIAFBUGoiBkEKSXIEQAJAIAEhCEEAIQEDQAJAIA4EfiANDQFBASENIBYiFwUCfiAWQgF8IRYgCEEwRyEOIAFB/QBOBEAgFiAORQ0BGiAJIAkoAvADQQFyNgLwAyAWDAELIAFBAnQgCWoiDCAHBH8gCEFQaiAMKAIAQQpsagUgBgs2AgAgB0EBaiIGQQlGIQhBASELQQAgBiAIGyEHIAEgCGohASAWpyAKIA4bIQogFgsLIRggACgCBCIGIAAoAmhJBH8gACAGQQFqNgIEIAYtAAAFIAAQWQsiBkFQaiIMQQpJIAZBLkYiDnJFDQIgBiEIIBghFiAMIQYMAQsLIBYhGCALQQBHIQUMAgsFIAEhBkEAIQELIBcgGCANGyEXIAtBAEciCCAGQSByQeUARnFFBEAgBkF/SgRAIAghBQwCBSAIIQUMAwsACyAAIAUQmQciFkKAgICAgICAgIB/UQRAIAVFBEAgAEIAEMEBRAAAAAAAAAAADAYLIAAoAmgEQCAAIAAoAgRBf2o2AgQLQgAhFgsgByEAIBYgF3whFwwDCyAAKAJoBEAgACAAKAIEQX9qNgIEIAVFDQIgByEADAMLCyAFRQ0AIAchAAwBC0GIqgRBFjYCACAAQgAQwQFEAAAAAAAAAAAMAQsgBLdEAAAAAAAAAACiIAkoAgAiBUUNABogFyAYUSAYQgpTcQRAIAS3IAW4oiAFIAJ2RSACQR5Kcg0BGgsgFyADQX5trFUEQEGIqgRBIjYCACAEt0T////////vf6JE////////73+iDAELIBcgA0GWf2qsUwRAQYiqBEEiNgIAIAS3RAAAAAAAABAAokQAAAAAAAAQAKIMAQsgAAR/IABBCUgEQCABQQJ0IAlqIgcoAgAhBQNAIAVBCmwhBSAAQQFqIQYgAEEISARAIAYhAAwBCwsgByAFNgIACyABQQFqBSABCyEFIBenIQAgCkEJSARAIABBEkggCiAATHEEQCAAQQlGBEAgBLcgCSgCALiiDAMLIABBCUgEQCAEtyAJKAIAuKJBACAAa0ECdEGg5gFqKAIAt6MMAwsgAkEbaiAAQX1saiIGQR5KIAkoAgAiASAGdkVyBEAgBLcgAbiiIABBAnRB2OUBaigCALeiDAMLCwsgAEEJbyIBBH9BACABIAFBCWogAEF/ShsiDmtBAnRBoOYBaigCACEPIAUEf0GAlOvcAyAPbSELQQAhAUEAIQpBACEHA0AgCiAHQQJ0IAlqIgwoAgAiCCAPbiIGaiEQIAwgEDYCACAIIAYgD2xrIAtsIQogAEF3aiAAIBBFIAEgB0ZxIgYbIQAgAUEBakH/AHEgASAGGyEBIAUgB0EBaiIHRw0ACyAKBH8gBUECdCAJaiAKNgIAIAVBAWoFIAULBUEAIQFBAAshFSAAQQkgDmtqIQcgFQVBACEBIAAhByAFCyEAQQAhBQNAAkAgB0ESSCEQIAdBEkYhDiABQQJ0IAlqIQwDQCAQRQRAIA5FDQIgDCgCAEHf4KUETwRAQRIhBwwDCwtBACEKIABB/wBqIQ0DQCAKrSANQf8AcSIPQQJ0IAlqIgYoAgCtQh2GfCIWpyELIBZCgJTr3ANWBH8gFiAWQoCU69wDgCIWQoCU69wDfn2nIQsgFqcFQQALIQogBiALNgIAIAAgACAPIAsbIAEgD0YiCCAAQf8AakH/AHEgD0dyGyEGIA9Bf2ohDSAIRQRAIAYhAAwBCwsgBUFjaiEFIApFDQALIAZB/wBqQf8AcSEIIAZB/gBqQf8AcUECdCAJaiEMIAFB/wBqQf8AcSIBIAZGBEAgDCAIQQJ0IAlqKAIAIAwoAgByNgIAIAghAAsgAUECdCAJaiAKNgIAIAdBCWohBwwBCwsDQAJAIABBAWpB/wBxIQYgAEH/AGpB/wBxQQJ0IAlqIQ8DQAJAIAdBEkYhC0EJQQEgB0EbShshEQNAQQAhCgJAAkADQAJAIAEgCmpB/wBxIgggAEYNAiAIQQJ0IAlqKAIAIgwgCkECdEHIgwJqKAIAIghJDQIgDCAISw0AIApBAWpBAk8NAkEBIQoMAQsLDAELIAsNBAsgBSARaiEFIAAgAUYEQCAAIQEMAQsLQQEgEXRBf2ohDkGAlOvcAyARdiEMIAEhCkEAIQ0gASELA0AgDSALQQJ0IAlqIggoAgAiASARdmohECAIIBA2AgAgASAOcSAMbCENIAdBd2ogByAQRSAKIAtGcSIBGyEHIApBAWpB/wBxIAogARshASAAIAtBAWpB/wBxIgtHBEAgASEKDAELCyANBEAgASAGRw0BIA8gDygCAEEBcjYCAAsMAQsLIABBAnQgCWogDTYCACAGIQAMAQsLQQAhBwNAIABBAWpB/wBxIQYgASAHakH/AHEiCCAARgRAIAZBf2pBAnQgCWpBADYCACAGIQALIBlEAAAAAGXNzUGiIAhBAnQgCWooAgC4oCEZIAdBAWoiB0ECRw0ACyAZIAS3IhyiIRsgBUE1aiIEIANrIgYgAkghAyAGQQAgBkEAShsgAiADGyIHQTVIBEBEAAAAAAAA8D9B6QAgB2sQhgIgGxCYByIdIR4gG0QAAAAAAADwP0E1IAdrEIYCEJcHIhohGSAdIBsgGqGgIRsFRAAAAAAAAAAAIRkLIAAgAUECakH/AHEiAkcEQAJAIAJBAnQgCWooAgAiAkGAyrXuAUkEfCACRQRAIAFBA2pB/wBxIABGDQILIBxEAAAAAAAA0D+iIBmgBSACQYDKte4BRwRAIBxEAAAAAAAA6D+iIBmgIRkMAgsgHEQAAAAAAADgP6IgGaAgHEQAAAAAAADoP6IgGaAgAUEDakH/AHEgAEYbCyEZC0E1IAdrQQFKBHwgGUQAAAAAAADwPxCXB0QAAAAAAAAAAGEEfCAZRAAAAAAAAPA/oAUgGQsFIBkLIRkLIBsgGaAgHqEhGiAEQf////8HcUF+IBNrSgR8AnwgBSAamUQAAAAAAABAQ2ZFIgBBAXNqIQUgGiAaRAAAAAAAAOA/oiAAGyEaIAVBMmogFEwEQCAaIAMgACAGIAdHcnEgGUQAAAAAAAAAAGJxRQ0BGgtBiKoEQSI2AgAgGgsFIBoLIAUQlgcLIR8gEiQEIB8LjwkDCH8FfgN8IAAoAgQiBSAAKAJoSQR/IAAgBUEBajYCBCAFLQAABSAAEFkLIQUCQAJAA0ACQAJAIAVBLmsOAwMBAAELIAAoAgQiBSAAKAJoSQR/IAAgBUEBajYCBCAFLQAABSAAEFkLIQVBASEIDAELCwwBCyAAKAIEIgUgACgCaEkEfyAAIAVBAWo2AgQgBS0AAAUgABBZCyIFQTBGBH4DfiANQn98IQ0gACgCBCIFIAAoAmhJBH8gACAFQQFqNgIEIAUtAAAFIAAQWQsiBUEwRg0AQQEhCEEBIQcgDQsFQQEhB0IACyEPCyAFIQZCACENRAAAAAAAAPA/IRJBACEFA0ACQCAGQSByIQkCQAJAIAZBUGoiC0EKSQ0AIAZBLkYiDCAJQZ9/akEGSXJFDQIgDEUNACAHBH5BLiEGDAMFIA0hDkEBIQcgDQshDwwBCyAJQal/aiALIAZBOUobIQYgDUIIUwRAIBIhFCAGIAVBBHRqIQUFIA1CDlMEfCASRAAAAAAAALA/oiISIRQgEyASIAa3oqAFIApBASAGRSAKQQBHciIGGyEKIBIhFCATIBMgEkQAAAAAAADgP6KgIAYbCyETCyANQgF8IQ5BASEIIBQhEgsgACgCBCIGIAAoAmhJBH8gACAGQQFqNgIEIAYtAAAFIAAQWQshBiAOIQ0MAQsLIAgEfAJ8IA1CCFMEQCANIQ4DQCAFQQR0IQUgDkIBfCEQIA5CB1MEQCAQIQ4MAQsLCwJ+IAZBIHJB8ABGBH4gACAEEJkHIg5CgICAgICAgICAf1EEfiAERQRAIABCABDBAUQAAAAAAAAAAAwECyAAKAJoBEAgACAAKAIEQX9qNgIEC0IABSAOCwUgACgCaARAIAAgACgCBEF/ajYCBAtCAAshESADt0QAAAAAAAAAAKIgBUUNARogEQsgDyANIAcbQgKGQmB8fCINQQAgAmusVQRAQYiqBEEiNgIAIAO3RP///////+9/okT////////vf6IMAQsgDSACQZZ/aqxTBEBBiKoEQSI2AgAgA7dEAAAAAAAAEACiRAAAAAAAABAAogwBCyAFQX9KBEADQCATRAAAAAAAAOA/ZkUiAEEBcyAFQQF0ciEFIBMgEyATRAAAAAAAAPC/oCAAG6AhEyANQn98IQ0gBUF/Sg0ACwsCfAJAQiAgAqx9IA18Ig4gAaxTBEAgDqciAUEATARAQQAhAUHUACEADAILC0HUACABayEAIAFBNUgNACADtyESRAAAAAAAAAAADAELRAAAAAAAAPA/IAAQhgIgA7ciEhCYBwshFEQAAAAAAAAAACATIAVBAXFFIAFBIEggE0QAAAAAAAAAAGJxcSIAGyASoiAUIBIgACAFariioKAgFKEiEkQAAAAAAAAAAGEEQEGIqgRBIjYCAAsgEiANpxCWBwsFIAAoAmhFIgFFBEAgACAAKAIEQX9qNgIECyAEBEAgAUUEQCAAIAAoAgRBf2o2AgQgASAHRXJFBEAgACAAKAIEQX9qNgIECwsFIABCABDBAQsgA7dEAAAAAAAAAACiCws1AQJ/IAIgACgCECAAKAIUIgRrIgMgAyACSxshAyAEIAEgAxBGGiAAIAAoAhQgA2o2AhQgAgulAgAgAAR/An8gAUGAAUkEQCAAIAE6AABBAQwBC0GQgwIoAgAoAgBFBEAgAUGAf3FBgL8DRgRAIAAgAToAAEEBDAIFQYiqBEHUADYCAEF/DAILAAsgAUGAEEkEQCAAIAFBBnZBwAFyOgAAIAAgAUE/cUGAAXI6AAFBAgwBCyABQYBAcUGAwANGIAFBgLADSXIEQCAAIAFBDHZB4AFyOgAAIAAgAUEGdkE/cUGAAXI6AAEgACABQT9xQYABcjoAAkEDDAELIAFBgIB8akGAgMAASQR/IAAgAUESdkHwAXI6AAAgACABQQx2QT9xQYABcjoAASAAIAFBBnZBP3FBgAFyOgACIAAgAUE/cUGAAXI6AANBBAVBiKoEQdQANgIAQX8LCwVBAQsL1gIBCH8jBCEFIwRBEGokBCAFQQhqIQAgBSEBQZipBCgCACICQdw1aiEGIAJB6DVqKgIAQ5qZGT5dRQRAIAJB5DVqIgMoAgBFBEAgA0HDkwIQoQI2AgALIAAgAkEQaiIDKgIAQ83MTD6UIAIqAhRDzcxMPpQQMiABQ///f39D//9/fxAyIAAgAUEAEK8DIAAgA0MAAAA/EFEgAUMAAAA/QwAAAD8QMiAAQQEgARCcAiAAIAJBlCpqQwAAAEAQUUEBIAAQvgJBw5MCQQBBx6YwEOsBGiACQeAyaiIHKAIAIgFBAEoEQANAIAcgAUF/aiICEFAoAgAiBBDbBgRAIAQoAgAiAyADQQAQkAFGBEAgBBDqCSEDCyAEIAYoAgBGIQQgAEMAAAAAQwAAAAAQMiADIARBACAAEK8BGgsgAUEBSgRAIAIhAQwBCwsLENUBQQEQowILIAUkBAsuACAAQgBSBEADQCABQX9qIgEgAKdBB3FBMHI6AAAgAEIDiCIAQgBSDQALCyABCzYAIABCAFIEQANAIAFBf2oiASACIACnQQ9xQfDlAWotAAByOgAAIABCBIgiAEIAUg0ACwsgAQvaAgEHfyMEIQQjBEHgAWokBCAEIQUgBEGgAWoiA0IANwMAIANCADcDCCADQgA3AxAgA0IANwMYIANCADcDICAEQdABaiIGIAIoAgA2AgBBACABIAYgBEHQAGoiAiADEJAFQQBIBH9BfwUgACgCTEF/SgR/QQEFQQALGiAAKAIAIQcgACwASkEBSARAIAAgB0FfcTYCAAsgACgCMARAIAAgASAGIAIgAxCQBSEBBSAAKAIsIQggACAFNgIsIAAgBTYCHCAAIAU2AhQgAEHQADYCMCAAIAVB0ABqNgIQIAAgASAGIAIgAxCQBSEBIAgEQCAAQQBBACAAKAIkQT9xQcICahEFABogAUF/IAAoAhQbIQEgACAINgIsIABBADYCMCAAQQA2AhAgAEEANgIcIABBADYCFAsLIAAgACgCACIAIAdBIHFyNgIAQX8gASAAQSBxGwshCSAEJAQgCQspAgF/AXwgASgCAEEHakF4cSICKwMAIQMgASACQQhqNgIAIAAgAzkDAAvQFwMUfwN+AXwjBCEZIwRBsARqJAQgGUGYBGoiD0EANgIAIAG9IhpCAFMEfyABmiIBvSEaQc+HAyEVQQEFQdKHA0HVhwNB0IcDIARBAXEbIARBgBBxGyEVIARBgRBxQQBHCyEWIBlBIGohCCAZIgwhEyAMQZwEaiIHQQxqIRQgGkKAgICAgICA+P8Ag0KAgICAgICA+P8AUQR/IABBICACIBZBA2oiBiAEQf//e3EQjgEgACAVIBYQhgEgAEH5hwNB6ocDIAVBIHFBAEciAxtB4ocDQeaHAyADGyABIAFiG0EDEIYBIABBICACIAYgBEGAwABzEI4BIAYFAn8gASAPEJ4HRAAAAAAAAABAoiIBRAAAAAAAAAAAYiIGBEAgDyAPKAIAQX9qNgIACyAFQSByIhdB4QBGBEAgFUEJaiAVIAVBIHEiChshCUEMIANrIgZFIANBC0tyRQRARAAAAAAAACBAIR0DQCAdRAAAAAAAADBAoiEdIAZBf2oiBg0ACyAJLAAAQS1GBHwgHSABmiAdoaCaBSABIB2gIB2hCyEBCyAUQQAgDygCACIIayAIIAhBAEgbrCAUEPoCIgZGBEAgB0ELaiIGQTA6AAALIBZBAnIhDiAGQX9qIAhBH3VBAnFBK2o6AAAgBkF+aiILIAVBD2o6AAAgA0EBSCEIIARBCHFFIQcgDCEFA0AgBSAKIAGqIgZB8OUBai0AAHI6AAAgASAGt6FEAAAAAAAAMECiIQEgBUEBaiIGIBNrQQFGBH8gCCABRAAAAAAAAAAAYXEgB3EEfyAGBSAGQS46AAAgBUECagsFIAYLIQUgAUQAAAAAAAAAAGINAAsCfyADRSAFQX4gE2tqIANOckUEQCAUIANBAmpqIAtrIQggCwwBCyAFIBQgE2sgC2tqIQggCwshAyAAQSAgAiAIIA5qIgYgBBCOASAAIAkgDhCGASAAQTAgAiAGIARBgIAEcxCOASAAIAwgBSATayIFEIYBIABBMCAIIAUgFCADayIDamtBAEEAEI4BIAAgCyADEIYBIABBICACIAYgBEGAwABzEI4BIAYMAQsgBgRAIA8gDygCAEFkaiIGNgIAIAFEAAAAAAAAsEGiIQEFIA8oAgAhBgsgCCAIQaACaiAGQQBIGyIOIQcDQCAHIAGrIgg2AgAgB0EEaiEHIAEgCLihRAAAAABlzc1BoiIBRAAAAAAAAAAAYg0ACyAGQQBKBEAgBiEIIA4hBgNAIAhBHSAIQR1IGyEJIAdBfGoiCCAGTwRAIAmtIRxBACEKA0AgCq0gCCgCAK0gHIZ8IhpCgJTr3AOAIRsgCCAaIBtCgJTr3AN+fT4CACAbpyEKIAhBfGoiCCAGTw0ACyAKBEAgBkF8aiIGIAo2AgALCyAHIAZLBEACQAN/IAdBfGoiCCgCAA0BIAggBksEfyAIIQcMAQUgCAsLIQcLCyAPIA8oAgAgCWsiCDYCACAIQQBKDQALBSAGIQggDiEGC0EGIAMgA0EASBshDSAOIQsgCEEASAR/IA1BGWpBCW1BAWohESAXQeYARiEYIAchAwN/QQAgCGsiB0EJIAdBCUgbIRIgBiADSQRAQQEgEnRBf2ohEEGAlOvcAyASdiEJQQAhCCAGIQcDQCAHIAggBygCACIKIBJ2ajYCACAKIBBxIAlsIQggB0EEaiIHIANJDQALIAYgBkEEaiAGKAIAGyEGIAgEQCADIAg2AgAgA0EEaiEDCwUgBiAGQQRqIAYoAgAbIQYLIA4gBiAYGyIHIBFBAnRqIAMgAyAHa0ECdSARShshCiAPIA8oAgAgEmoiCDYCACAIQQBIBH8gCiEDDAEFIAYLCwUgByEKIAYLIgMgCkkEQCALIANrQQJ1QQlsIQYgAygCACIIQQpPBEBBCiEHA0AgBkEBaiEGIAggB0EKbCIHTw0ACwsFQQAhBgsgDUEAIAYgF0HmAEYbayAXQecARiIRIA1BAEciGHFBH3RBH3VqIgcgCiALa0ECdUEJbEF3akgEfyAHQYDIAGoiB0EJbSEQIAcgEEEJbGsiB0EISARAQQohCANAIAdBAWohCSAIQQpsIQggB0EHSARAIAkhBwwBCwsFQQohCAsgEEECdCAOakGEYGoiBygCACIXIAhuIQkgB0EEaiAKRiIQIBcgCCAJbGsiEkVxRQRARAEAAAAAAEBDRAAAAAAAAEBDIAlBAXEbIQFEAAAAAAAA4D9EAAAAAAAA8D9EAAAAAAAA+D8gECASIAhBAXYiCUZxGyASIAlJGyEdIBYEQCABmiABIBUsAABBLUYiCRshASAdmiAdIAkbIR0LIAcgFyASayIJNgIAIAEgHaAgAWIEQCAHIAggCWoiBjYCACAGQf+T69wDSwRAA0AgB0EANgIAIAdBfGoiByADSQRAIANBfGoiA0EANgIACyAHIAcoAgBBAWoiBjYCACAGQf+T69wDSw0ACwsgCyADa0ECdUEJbCEGIAMoAgAiCUEKTwRAQQohCANAIAZBAWohBiAJIAhBCmwiCE8NAAsLCwsgAyEIIAYhCSAHQQRqIgMgCiAKIANLGwUgAyEIIAYhCSAKCyIDIAhLBH8DfwJ/IANBfGoiBigCAARAIAMhBkEBDAELIAYgCEsEfyAGIQMMAgVBAAsLCwUgAyEGQQALIRAgEQR/IBhBAXMgDWoiAyAJSiAJQXtKcQR/IANBf2ogCWshCiAFQX9qBSADQX9qIQogBUF+agshBSAEQQhxBH8gCgUgEARAIAZBfGooAgAiDQRAIA1BCnAEQEEAIQMFQQohB0EAIQMDQCADQQFqIQMgDSAHQQpsIgdwRQ0ACwsFQQkhAwsFQQkhAwsgBiALa0ECdUEJbEF3aiEHIAVBIHJB5gBGBH8gCiAHIANrIgNBACADQQBKGyIDIAogA0gbBSAKIAcgCWogA2siA0EAIANBAEobIgMgCiADSBsLCwUgDQshA0EAIAlrIQcgAEEgIAIgBUEgckHmAEYiDQR/QQAhCiAJQQAgCUEAShsFIBQiCyAHIAkgCUEASBusIAsQ+gIiB2tBAkgEQANAIAdBf2oiB0EwOgAAIAsgB2tBAkgNAAsLIAdBf2ogCUEfdUECcUErajoAACAHQX5qIgogBToAACALIAprCyAWQQFqIANqQQEgBEEDdkEBcSADQQBHIgsbamoiESAEEI4BIAAgFSAWEIYBIABBMCACIBEgBEGAgARzEI4BIA0EQCAMQQlqIg0hCSAMQQhqIQogDiAIIAggDksbIgghBwNAIAcoAgCtIA0Q+gIhBSAHIAhGBEAgBSANRgRAIApBMDoAACAKIQULBSAFIAxLBEAgDEEwIAUgE2sQahoDQCAFQX9qIgUgDEsNAAsLCyAAIAUgCSAFaxCGASAHQQRqIgUgDk0EQCAFIQcMAQsLIARBCHFFIAtBAXNxRQRAIABB7ocDQQEQhgELIABBMCAFIAZJIANBAEpxBH8DfyAFKAIArSANEPoCIgcgDEsEQCAMQTAgByATaxBqGgNAIAdBf2oiByAMSw0ACwsgACAHIANBCSADQQlIGxCGASADQXdqIQcgBUEEaiIFIAZJIANBCUpxBH8gByEDDAEFIAcLCwUgAwtBCWpBCUEAEI4BBSAAQTAgCCAGIAhBBGogEBsiEEkgA0F/SnEEfyAEQQhxRSENIAxBCWoiGCELQQAgE2shCSAMQQhqIQ4gCCEGIAMhBQN/IBggBigCAK0gGBD6AiIDRgRAIA5BMDoAACAOIQMLAkAgBiAIRgRAIANBAWohByAAIANBARCGASAFQQFIIA1xBEAgByEDDAILIABB7ocDQQEQhgEgByEDBSADIAxNDQEgDEEwIAMgCWoQahoDQCADQX9qIgMgDEsNAAsLCyAAIAMgCyADayIDIAUgBSADShsQhgEgBkEEaiIGIBBJIAUgA2siBUF/SnENACAFCwUgAwtBEmpBEkEAEI4BIAAgCiAUIAprEIYBCyAAQSAgAiARIARBgMAAcxCOASARCwshACAZJAQgAiAAIAAgAkgbC00BBH8jBCEBIwRBEGokBCABIQIgABClBwR/QX8FIAAoAiAhAyAAIAJBASADQT9xQcICahEFAEEBRgR/IAItAAAFQX8LCyEEIAEkBCAEC20BBX8jBCEDIwRBEGokBCADIgJBBGohBCABLAAABEAgAEH4KWohBQNAIAJBADYCACACIAFBABCmAiEGIAIoAgAiAEF/akH//wNJBEAgBCAAOwEAIAUgBBCvBwsgASAGaiIBLAAADQALCyADJAQL6QoCBn8GfkJ/IQkgAUEkSwRAQYiqBEEWNgIAQgAhCQUCQANAIAAoAgQiAiAAKAJoSQR/IAAgAkEBajYCBCACLQAABSAAEFkLIgMQ+wINAAsCQAJAIANBK2sOAwABAAELIANBLUZBH3RBH3UhBiAAKAIEIgIgACgCaEkEfyAAIAJBAWo2AgQgAi0AAAUgABBZCyEDCyABRSEFAkACQAJAIAFBEHJBEEYgA0EwRnEEQAJAIAAoAgQiAiAAKAJoSQR/IAAgAkEBajYCBCACLQAABSAAEFkLIgJBIHJB+ABHBEAgBQRAQQghAQwEBQwCCwALIAAoAgQiASAAKAJoSQR/IAAgAUEBajYCBCABLQAABSAAEFkLIgJBkeABai0AAEEPSgRAIAAoAmgEQCAAIAAoAgRBf2o2AgQLIABCABDBAUIAIQkMBgVBECEBDAMLAAsFQQogASAFGyIBIANBkeABai0AAEsEfyADBSAAKAJoBEAgACAAKAIEQX9qNgIECyAAQgAQwQFBiKoEQRY2AgBCACEJDAULIQILIAFBCkcNACACQVBqIgJBCkkEQEEAIQEDQCABQQpsIAJqIQEgACgCBCICIAAoAmhJBH8gACACQQFqNgIEIAItAAAFIAAQWQsiA0FQaiICQQpJIAFBmbPmzAFJcQ0ACyABrSEIIAJBCkkEQCADIQEDQCAIQgp+IgogAqwiC0J/hVYEQEEKIQIMBQsgCiALfCEIIAAoAgQiASAAKAJoSQR/IAAgAUEBajYCBCABLQAABSAAEFkLIgFBUGoiAkEKSSAIQpqz5syZs+bMGVRxDQALIAJBCU0EQEEKIQIMBAsLCwwCCyABIAFBf2pxRQRAIAFBF2xBBXZBB3FBtYcDaiwAACEHIAEgAkGR4AFqLAAAIgNB/wFxIgRLBH4gBCECQQAhBANAIAIgBCAHdHIiBEGAgIDAAEkgASAAKAIEIgIgACgCaEkEfyAAIAJBAWo2AgQgAi0AAAUgABBZCyIFQZHgAWosAAAiA0H/AXEiAktxDQALIAStBSACIQUgBCECQgALIQggASACTUJ/IAetIgqIIgsgCFRyBEAgASECIAUhAQwCCwNAIAEgACgCBCICIAAoAmhJBH8gACACQQFqNgIEIAItAAAFIAAQWQsiBUGR4AFqLAAAIgJB/wFxTSADQf8Bca0gCCAKhoQiCCALVnIEQCABIQIgBSEBDAMFIAIhAwwBCwAACwALIAEgAkGR4AFqLAAAIgVB/wFxIgRLBH4gBCECQQAhBANAIAIgASAEbGoiBEHH4/E4SSABIAAoAgQiAiAAKAJoSQR/IAAgAkEBajYCBCACLQAABSAAEFkLIgNBkeABaiwAACIFQf8BcSICS3ENAAsgBK0FIAIhAyAEIQJCAAshCCABrSEKIAEgAksEf0J/IAqAIQsDfyAIIAtWBEAgASECIAMhAQwDCyAIIAp+IgwgBUH/AXGtIg1Cf4VWBEAgASECIAMhAQwDCyAMIA18IQggASAAKAIEIgIgACgCaEkEfyAAIAJBAWo2AgQgAi0AAAUgABBZCyIDQZHgAWosAAAiBUH/AXFLDQAgASECIAMLBSABIQIgAwshAQsgAiABQZHgAWotAABLBEADQCACIAAoAgQiASAAKAJoSQR/IAAgAUEBajYCBCABLQAABSAAEFkLQZHgAWotAABLDQALQYiqBEEiNgIAQQAhBkJ/IQgLCyAAKAJoBEAgACAAKAIEQX9qNgIECyAIQn9aBEAgBkEAR0EBckUEQEGIqgRBIjYCAEJ+IQkMAgsgCEJ/VgRAQYiqBEEiNgIADAILCyAIIAasIgmFIAl9IQkLCyAJC2cBBH8jBCEEIwRBIGokBCAEIgNBEGohBSAAQQE2AiQgACgCAEHAAHFFBEAgAyAAKAI8NgIAIANBk6gBNgIEIAMgBTYCCEE2IAMQGwRAIABBfzoASwsLIAAgASACEKcHIQYgBCQEIAYL1QEBBH8jBCEFIwRBIGokBCAFIgQgATYCACAEIAIgACgCMCIDQQBHazYCBCAEIAAoAiw2AgggBCADNgIMIARBEGoiAyAAKAI8NgIAIAMgBDYCBCADQQI2AghBkQEgAxAeEPwCIgNBAUgEQCAAIAAoAgAgA0EwcUEQc3I2AgAgAyECBSADIAQoAgQiBksEQCAAIAAoAiwiBDYCBCAAIAQgAyAGa2o2AgggACgCMARAIAAgBEEBajYCBCABIAJBf2pqIAQsAAA6AAALBSADIQILCyAFJAQgAgtoAgJ/AX4jBCEEIwRBIGokBCAEQQhqIgMgACgCPDYCACADIAFCIIg+AgQgAyABPgIIIAMgBCIANgIMIAMgAjYCEEGMASADEB8Q/AJBAEgEfiAAQn83AwBCfwUgACkDAAshBSAEJAQgBQsqAQJ/IwQhASMEQRBqJAQgASAAKAI8NgIAQQYgARAaEPwCIQIgASQEIAILJQECfyAAKAIEIgAQXEEBaiIBEMkBIgIEfyACIAAgARBGBUEACwulAwBB6PUBQeD+AhAtQYj2AUHl/gJBAUEBQQAQMEGQ9gFBsIcDQQFBgH9B/wAQCUGg9gFBpIcDQQFBgH9B/wAQCUGY9gFBlocDQQFBAEH/ARAJQaj2AUGQhwNBAkGAgH5B//8BEAlBsPYBQYGHA0ECQQBB//8DEAlBuPYBQf2GA0EEQYCAgIB4Qf////8HEAlBwPYBQfCGA0EEQQBBfxAJQcj2AUHrhgNBBEGAgICAeEH/////BxAJQdD2AUHdhgNBBEEAQX8QCUHY9gFB14YDQQQQF0Hg9gFB0IYDQQgQF0HY6QFB6v4CEBZBkPEBQfb+AhAWQfjwAUEEQZf/AhAuQdDpAUGk/wIQL0Gw7wFBAEG0hQMQB0G0/wIQrQdB2f8CEKwHQYCAAxCrB0GfgAMQqgdBx4ADEKkHQeSAAxCoB0HY8AFBBEGahAMQB0HQ8AFBBUHUgwMQB0GKgQMQrQdBqoEDEKwHQcuBAxCrB0HsgQMQqgdBjoIDEKkHQa+CAxCoB0GQ6wFBBkG1gwMQB0GA6wFBB0GVgwMQB0HI8AFBB0HRggMQBwuFAgECfyMEIQEjBEEwaiQEIAFBCGoiAhDRCyAAEJYFIAEgAhBxIABBk/4CIAEQbiABEDEgASACQQRqEHEgAEGZ/gIgARBuIAEQMSABIAJBCGoQcSAAQaH+AiABEG4gARAxIAEgAkEMahBxIABBqP4CIAEQbiABEDEgASACQRBqEHEgAEGu/gIgARBuIAEQMSABIAJBFGoQcSAAQbX+AiABEG4gARAxIAEgAkEYahBxIABBvf4CIAEQbiABEDEgASACQRxqEHEgAEHF/gIgARBuIAEQMSABIAJBIGoQcSAAQc7+AiABEG4gARAxIAEgAkEkahBxIABB1/4CIAEQbiABEDEgASQECwYAQbDtAQtzAQV/IwQhBCMEQRBqJAQgBEEEaiICIABB4soCEFcgBCIDIAFB4soCEFcCfyACIAMQ1wEhBiADEDEgAhAxIAYLBEAgAiAAQeTKAhBXIAMgAUHkygIQVyACIAMQ1wEhACADEDEgAhAxBUEAIQALIAQkBCAAC0oBAX8jBCEDIwRBEGokBCADIAJB4soCEFcgAUHiygIgAxBuIAMQMSADIAJB5MoCEFcgAUHkygIgAxBuIAMQMSAAIAEQiQMgAyQEC2cBA38jBCEEIwRBEGokBCAAKAIAIQUgBEEIaiIAIAEQNCAEQQRqIgEgAhA0IAQgAxA0IARBDGoiAiAAIAEgBCAFQR9xQagKahEGACACEH0hBiACEDEgBBAxIAEQMSAAEDEgBCQEIAYLHQAgAUHiygIgAhBuIAFB5MoCIAMQbiAAIAEQiQMLBgBBiOoBC5gCAQN/IwQhACMEQRBqJARBiOoBQajwAUHg7QFBAEG40wJBN0Hn2wJBAEHn2wJBAEHU/QJBy9YCQaYBEAUgAEEANgIAQYjqAUHiygJB2PYBQbTTAkEQIAAQM0HY9gFBr9MCQQsgABAzEAAgAEEENgIAQYjqAUHkygJB2PYBQbTTAkEQIAAQM0HY9gFBr9MCQQsgABAzEAAgAEEWNgIAQYjqAUHE/QJBBEGw3gFBicsCAn9BGSECQQQQPyIBIAAoAgA2AgAgAgsgAUEAEAEgAEHDADYCAEGI6gFByP0CQQNBvIECQZrLAkEzIAAQM0EAEAEgAEHRADYCAEGI6gFBzf0CQQNBkPgBQZrLAkE0IAAQM0EAEAEgACQEC0gBA38jBCEDIwRBEGokBCAAKAIAIQQgA0EEaiIAIAEQNCADIAIQNCAAIAMgBEH/AHFBtAFqEQAAIQUgAxAxIAAQMSADJAQgBQvXAQEHfyMEIQUjBEEQaiQEIAVBBGoiAiAAQeLKAhBXIAUiAyABQeLKAhBXAn8gAiADENcBIQYgAxAxIAIQMSAGCwRAIAIgAEHkygIQVyADIAFB5MoCEFcCfyACIAMQ1wEhByADEDEgAhAxIAcLBEAgAiAAQb7LAhBXIAMgAUG+ywIQVwJ/IAIgAxDXASEIIAMQMSACEDEgCAsEQCACIABBwMsCEFcgAyABQcDLAhBXIAIgAxDXASEAIAMQMSACEDEFQQAhAAsFQQAhAAsFQQAhAAsgBSQEIAALVwEDfyMEIQMjBEEQaiQEIAAoAgAhBCADQQRqIgAgARA0IAMgAhA0IANBCGoiASAAIAMgBEH/AHFBlAlqEQcAIAEQfSEFIAEQMSADEDEgABAxIAMkBCAFC3oBAX8jBCEDIwRBEGokBCADIAJB4soCEFcgAUHiygIgAxBuIAMQMSADIAJB5MoCEFcgAUHkygIgAxBuIAMQMSADIAJBvssCEFcgAUG+ywIgAxBuIAMQMSADIAJBwMsCEFcgAUHAywIgAxBuIAMQMSAAIAEQiQMgAyQEC4kBAQN/IwQhBiMEQSBqJAQgACgCACEHIAZBEGoiACABEDQgBkEMaiIBIAIQNCAGQQhqIgIgAxA0IAZBBGoiAyAEEDQgBiAFEDQgBkEUaiIEIAAgASACIAMgBiAHQQ9xQeoKahEaACAEEH0hCCAEEDEgBhAxIAMQMSACEDEgARAxIAAQMSAGJAQgCAsxACABQeLKAiACEG4gAUHkygIgAxBuIAFBvssCIAQQbiABQcDLAiAFEG4gACABEIkDCwYAQbjsAQvyAgEDfyMEIQAjBEEQaiQEQbjsAUHQ7QFBqOwBQQBBuNMCQTZB59sCQQBB59sCQQBBvf0CQcvWAkGlARAFIABBADYCAEG47AFB4soCQdj2AUG00wJBDyAAEDNB2PYBQa/TAkEKIAAQMxAAIABBBDYCAEG47AFB5MoCQdj2AUG00wJBDyAAEDNB2PYBQa/TAkEKIAAQMxAAIABBCDYCAEG47AFBvssCQdj2AUG00wJBDyAAEDNB2PYBQa/TAkEKIAAQMxAAIABBDDYCAEG47AFBwMsCQdj2AUG00wJBDyAAEDNB2PYBQa/TAkEKIAAQMxAAIABBCTYCAEG47AFBxP0CQQZBkN4BQejNAgJ/QRIhAkEEED8iASAAKAIANgIAIAILIAFBABABIABBwgA2AgBBuOwBQcj9AkEDQbyBAkGaywJBMyAAEDNBABABIABB0AA2AgBBuOwBQc39AkEDQZD4AUGaywJBNCAAEDNBABABIAAkBAs+AQF/IwQhAiMEQRBqJAQgASgCFCEBIAJCADcCACACQQA2AgggAiABIAEQXBCTASAAIAIQzQMgAhA+IAIkBAtFAQN/IwQhAiMEQRBqJAQCfyAAKAIUIQQgAiABEJ8BIAQLIAIoAgAgAiACLAALQQBIGyAAKAIcQX9qEJUEIAIQPiACJAQLDQAgACgCKCAAKAIsRws3AQF/IwQhBCMEQRBqJAQgACgCACEAIAQgAxBMIAEgAiAEIABB/wBxQZQJahEHACAEED4gBCQECxwAIAAgASACLAALQQBIBH8gAigCAAUgAgsQyQgLKwECfyMEIQAjBEEQaiQEIABBhgE2AgBBBBA/IgEgACgCADYCACAAJAQgAQsJACAAIAEQlQwLKwECfyMEIQAjBEEQaiQEIABBhQE2AgBBBBA/IgEgACgCADYCACAAJAQgAQsJACAAIAEQlAwLBgBB+OsBC4QGAQZ/IwQhACMEQRBqJARB+OsBQejrAUGY8AFBAEG40wJBNEHn2wJBAEHn2wJBAEH7+wJBy9YCQaQBEAUgAEEANgIAQfjrAUGW/AJBuPYBQdrJAkHLACAAEDNBuPYBQePNAkE8IAAQMxAAIABBBDYCAEH46wFBh+cCQbj2AUHayQJBywAgABAzQbj2AUHjzQJBPCAAEDMQACAAQQw2AgBB+OsBQaD8AkGw9gFB2skCQcwAIAAQM0Gw9gFB480CQT0gABAzEAAgAEEQNgIAQfjrAUGq/AJBuPYBQdrJAkHLACAAEDNBuPYBQePNAkE8IAAQMxAAQfjrAUGz/AJB0OkBQdrJAkHNABCbDEHQ6QFB480CQT4QmQwQACAAQRg2AgBB+OsBQbf8AkG49gFB2skCQcsAIAAQM0G49gFB480CQTwgABAzEAAgAEEcNgIAQfjrAUHC/AJBuPYBQdrJAkHLACAAEDNBuPYBQePNAkE8IAAQMxAAIABBIDYCAEH46wFByvwCQYj2AUHayQJBzgAgABAzQYj2AUHjzQJBPyAAEDMQACAAQSQ2AgBB+OsBQdP8AkG49gFB2skCQcsAIAAQM0G49gFB480CQTwgABAzEAAgAEEoNgIAQfjrAUHd/AJBuPYBQdrJAkHLACAAEDNBuPYBQePNAkE8IAAQMxAAIABBLDYCAEH46wFB7PwCQbj2AUHayQJBywAgABAzQbj2AUHjzQJBPCAAEDMQACAAQcAANgIAIABBADYCBEH46wFB+fwCQQRBgN4BQfHJAgJ/QRQhA0EIED8hASAAKAIEIQIgASAAKAIANgIAIAEgAjYCBCADCyABQQAQASAAQcEANgIAQfjrAUGF/QJBBEHw3QFB8ckCAn9BFSEEQQQQPyIBIAAoAgA2AgAgBAsgAUEAEAEgAEE1NgIAIABBADYCBEH46wFBkf0CQQJBtIECQdrJAgJ/Qc8AIQVBCBA/IQEgACgCBCECIAEgACgCADYCACABIAI2AgQgBQsgAUEAEAEgACQECyMBAX8jBCECIwRBEGokBCACIAFBDGo2AgAgACACEHsgAiQECwkAIAAgARCfDAsGAEHQ7AELlQEAQdDsAUHA7AFBiPABQQBBuNMCQTNB59sCQQBB59sCQQBBr/sCQcvWAkGjARAFQdDsAUHF+wJB0OkBQdrJAkHKAEGCARBLQQBBAEEAQQAQAEHQ7AFByfsCQdDpAUHayQJBygBBgwEQS0EAQQBBAEEAEABB0OwBQdX7AkHQ6QFB2skCQcoAQYQBEEtBAEEAQQBBABAAC0UBAn8CfyABIQUgACgCACEBIAULIAAoAgQiAEEBdWoiBCACIAMgAEEBcQR/IAEgBCgCAGooAgAFIAELQQ9xQfIIahE3AAsZAQF/QRgQPyICIAAoAgAgASoCABClAyACCzsBA38jBCEDIwRBEGokBCADQQRqIgQgATYCACADIAI4AgAgBCADIABB/wBxQbQBahEAACEFIAMkBCAFCxkBAX9BGBA/IgEgACgCAEMAAIC/EKUDIAELLAECfyMEIQIjBEEQaiQEIAIgATYCACACIABBP3FB7ABqEQMAIQMgAiQEIAMLFgEBf0EYED8iAEF/QwAAgL8QpQMgAAsGAEHw7wEL+gQBBn8jBCEAIwRBEGokBEHw7wFB4O8BQfjvAUEAQbjTAkEvQefbAkEAQefbAkEAQZf6AkHL1gJBoQEQBUHw7wFBAUGwgQJBuNMCQTBBFxAPQfDvAUECQaiBAkHayQJBxgBBMRAPQfDvAUEDQZyBAkGPywJBA0HHABAPIABBADYCAEHw7wFBqPoCQdj2AUG00wJBDiAAEDNB2PYBQa/TAkEIIAAQMxAAIABBBDYCAEHw7wFBsvoCQdj2AUG00wJBDiAAEDNB2PYBQa/TAkEIIAAQMxAAIABBCDYCAEHw7wFBvvoCQbj2AUHayQJByAAgABAzQbj2AUHjzQJBOyAAEDMQACAAQQw2AgBB8O8BQcn6AkG49gFB2skCQcgAIAAQM0G49gFB480CQTsgABAzEAAgAEEQNgIAQfDvAUHQ+gJBuPYBQdrJAkHIACAAEDNBuPYBQePNAkE7IAAQMxAAIABBFDYCAEHw7wFB3foCQbj2AUHayQJByAAgABAzQbj2AUHjzQJBOyAAEDMQACAAQTI2AgAgAEEANgIEQfDvAUHo+gJBAkGUgQJB2skCAn9ByQAhA0EIED8hASAAKAIEIQIgASAAKAIANgIAIAEgAjYCBCADCyABQQAQASAAQQk2AgAgAEEANgIEQfDvAUH6pwJBBEHg3QFBlPsCAn9BAiEEQQgQPyEBIAAoAgQhAiABIAAoAgA2AgAgASACNgIEIAQLIAFBABABIABBogE2AgAgAEEANgIEQfDvAUGAqAJBAkGMgQJBu9MCAn9BgQEhBUEIED8hASAAKAIEIQIgASAAKAIANgIAIAEgAjYCBCAFCyABQQAQASAAJAQLJAEBfyMEIQIjBEEQaiQEIAIgAUEEajYCACAAIAIQxAcgAiQECyMBAX8jBCECIwRBEGokBCACIAEoAhQ2AgAgACACEHEgAiQECwkAIAAgARCsDAsJACAAIAEQqwwLBgBByO8BC7IBAQF/IwQhACMEQRBqJARByO8BQdDvAUG47wFBAEG40wJBLkHn2wJBAEHn2wJBAEHk+QJBy9YCQaABEAUgAEEANgIAQcjvAUHu+QJBwPYBQdrJAkHEACAAEDNBwPYBQePNAkE6IAAQMxAAQcjvAUH4+QJB0OkBQdrJAkHFAEH/ABBLQQBBAEEAQQAQAEHI7wFBgfoCQdDpAUHayQJBxQBBgAEQS0EAQQBBAEEAEAAgACQECzMBAX8jBCEEIwRBIGokBCAEIAIgAxCzBSAAIAEoAgBBAkHc/QEgBEGfAxEJABBfIAQkBAsnAQF/IwQhAiMEQRBqJAQgAiABEI8BIABBuO8BIAIQBDYCACACJAQLoAEBB38jBCECIwRBIGokBCACQQRqIQggAkEIaiEEIAIhBSACQRBqIgZBADYCACACQQxqIgcgACgCCCIDNgIAIAAQ+wMgA0cEQANAIAQgBxCyDCAFIAYQxwcgCCABIAQgBRCxDCAIEDEgBRAxIAQQMSAGIAcoAgAiAygCACAGKAIAajYCACAHIANBIGoiAzYCACAAEPsDIANHDQALCyACJAQLMQEBfyMEIQIjBEEQaiQEIAIgAUEMaiIBKAIAQQF0IAEoAggQoQEgACACEK4HIAIkBAsxAQF/IwQhAiMEQRBqJAQgAiABQRhqIgEoAgBBFGwgASgCCBChASAAIAIQrgcgAiQEC00BAn8jBCEEIwRBIGokBCAEQQhqIgUgARA3IAQgAhA3IARBEGoiASAFKQIANwIAIARBGGoiAiAEKQIANwIAIAAgASACIAMQogMgBCQEC0EBAn8jBCEDIwRBEGokBCADQQhqIgQgAUE8ahD9AiIBKgIAIAEqAgQQMiADIAIQbyAAIAQgAxCBASADEDEgAyQEC0EBAn8jBCEDIwRBEGokBCADQQhqIgQgAUE8ahD9AiIBKgIIIAEqAgwQMiADIAIQbyAAIAQgAxCBASADEDEgAyQEC0EBAn8gACAAKAIAIgIgACgCDGoQvAMgAEEMaiIBKAIABEAgACACEFAgAUEAEFAgASgCAEECdBBGGiABQQAQvAMLCzEBAn8jBCEFIwRBEGokBCAFQQhqIgYgARA3IAUgAhA3IAAgBiAFIAMgBBDFASAFJAQLNQECfyMEIQcjBEEQaiQEIAdBCGoiCCABEDcgByACEDcgACAIIAcgAyAEIAUgBhCkASAHJAQLMgECfyMEIQYjBEEQaiQEIAZBCGoiByABEDcgBiACEDcgACAHIAYgAyAEIAUQdSAGJAQLNQECfyMEIQcjBEEQaiQEIAdBCGoiCCABEDcgByACEDcgACAIIAcgAyAEIAUgBhCfAyAHJAQLSwECfyMEIQcjBEEgaiQEIAdBGGoiCCABEDcgB0EQaiIBIAIQNyAHQQhqIgIgAxA3IAcgBBA3IAAgCCABIAIgByAFIAYQ2QkgByQEC0kBAn8jBCEGIwRBIGokBCAGQRhqIgcgARA3IAZBEGoiASACEDcgBkEIaiICIAMQNyAGIAQQNyAAIAcgASACIAYgBRDYCSAGJAQLPgECfyMEIQYjBEEgaiQEIAZBEGoiByABEDcgBkEIaiIBIAIQNyAGIAMQNyAAIAcgASAGIAQgBRCmBiAGJAQLPAECfyMEIQUjBEEgaiQEIAVBEGoiBiABEDcgBUEIaiIBIAIQNyAFIAMQNyAAIAYgASAFIAQQ4wIgBSQECygBAX8jBCEGIwRBEGokBCAGIAEQNyAAIAYgAiADIAQgBRC7AiAGJAQLJgEBfyMEIQUjBEEQaiQEIAUgARA3IAAgBSACIAMgBBCVAiAFJAQLRQEBfyMEIQQjBEEQaiQEIAQgARA3IABBAEMAAAAAIAQgAiADLAALQQBIBH8gAygCAAUgAwtBAEMAAAAAQQAQ/QEgBCQECzEBAX8jBCEBIwRBEGokBCABIAAoAhQQ2AEgACABKQIANwIEIAAgASkCCDcCDCABJAQLOwAgAEHcgAI2AgAgAEEEahD3ASAAIAE2AhQgARBbRQRAIAAoAgAoAgAhASAAIAFB/wFxQeAEahEEAAsLagECfyMEIQgjBEEwaiQEIAhBGGoiCSAILAAgOgAAIAEQnQUhASAJIAMQNyAFLAALQQBIBEAgBSgCACEFCyAIIAcQxgwgACABIAIgCSAEIAVBACAGQQAgCEEEaiAIKAIUEFsbEP0BIAgkBAtSAQJ/IwQhByMEQSBqJAQgARCHASEBIAdBGGoiCCACEDcgB0EQaiICIAMQNyAHQQhqIgMgBBA3IAcgBRA3IAAgASAIIAIgAyAHIAYQ/AEgByQEC4YBAQJ/IwQhCyMEQUBrJAQgARCHASEBIAtBOGoiDCACEDcgC0EwaiICIAMQNyALQShqIgMgBBA3IAtBIGoiBCAFEDcgC0EYaiIFIAYQNyALQRBqIgYgBxA3IAtBCGoiByAIEDcgCyAJEDcgACABIAwgAiADIAQgBSAGIAcgCyAKENUJIAskBAtWAQJ/IwQhCSMEQSBqJAQgARCHASEBIAlBGGoiCiACEDcgCUEQaiICIAMQNyAJQQhqIgMgBBA3IAkgBRA3IAAgASAKIAIgAyAJIAYgByAIENQJIAkkBAvEAQEHfyMEIQgjBEEQaiQEIAhBDGohBiAIIQsgCEEIaiEKIwQhCSMEIAJBA3RBD2pBcHFqJAQgAgRAIAJBA3QgCWohDCAJIQcDQCAHEDogB0EIaiIHIAxHDQALIAZBADYCACACQQBKBEADQCAKIAEgBhCMAiALIAoQNyAGKAIAQQN0IAlqIAspAwA3AwAgChAxIAYgBigCAEEBaiIHNgIAIAcgAkgNAAsLBSAGQQA2AgALIAAgCSACIAMgBCAFEPIDIAgkBAvAAQEHfyMEIQYjBEEQaiQEIAZBDGohBCAGIQkgBkEIaiEIIwQhByMEIAJBA3RBD2pBcHFqJAQgAgRAIAJBA3QgB2ohCiAHIQUDQCAFEDogBUEIaiIFIApHDQALIARBADYCACACQQBKBEADQCAIIAEgBBCMAiAJIAgQNyAEKAIAQQN0IAdqIAkpAwA3AwAgCBAxIAQgBCgCAEEBaiIFNgIAIAUgAkgNAAsLBSAEQQA2AgALIAAgByACIAMQ2QQgBiQEC00BAn8jBCEIIwRBIGokBCAIQRhqIgkgARA3IAhBEGoiASACEDcgCEEIaiICIAMQNyAIIAQQNyAAIAkgASACIAggBSAGIAcQ1wkgCCQECzoBAn8CQAJAIABB1ABqIgIoAgAiA0UNACAAKAJcIANBf2pBA3RqIAFBCBDFAg0ADAELIAIgARCaAgsLKAEBfyMEIQYjBEEQaiQEIAYgARA3IAAgBiACIAMgBCAFEJcCIAYkBAsmAQF/IwQhBSMEQRBqJAQgBSABEDcgACAFIAIgAyAEEMYBIAUkBAs8AQJ/IwQhBSMEQSBqJAQgBUEQaiIGIAEQNyAFQQhqIgEgAhA3IAUgAxA3IAAgBiABIAUgBBCnBiAFJAQLMQECfyMEIQUjBEEQaiQEIAVBCGoiBiABEDcgBSACEDcgACAGIAUgAyAEEKADIAUkBAsvAQJ/IwQhBCMEQRBqJAQgBEEIaiIFIAEQNyAEIAIQNyAAIAUgBCADEKgGIAQkBAtJAQJ/IwQhBiMEQSBqJAQgBkEYaiIHIAEQNyAGQRBqIgEgAhA3IAZBCGoiAiADEDcgBiAEEDcgACAHIAEgAiAGIAUQ8wMgBiQEC30BAn8jBCEKIwRBQGskBCAKQThqIgsgARA3IApBMGoiASACEDcgCkEoaiICIAMQNyAKQSBqIgMgBBA3IApBGGoiBCAFEDcgCkEQaiIFIAYQNyAKQQhqIgYgBxA3IAogCBA3IAAgCyABIAIgAyAEIAUgBiAKIAkQ2gQgCiQECy8BAn8jBCEEIwRBEGokBCAEQQhqIgUgARA3IAQgAhA3IAAgBSAEIAMQ5AIgBCQECy8BAn8jBCEEIwRBEGokBCAEQQhqIgUgARA3IAQgAhA3IAAgBSAEIAMQtwIgBCQEC64DAQt/IwQhBSMEQTBqJAQgAEHA2ABqIQkgAEHUMmoiBigCAARAA0AgBiAHEFAoAgAiBCgCCEGAAnFFBEAgBCgC8AQiA0F/RgRAIAQoAgQQ6AQiA0UEQCAEIAkgBCgCABDCBiIDEP0DNgLwBAsFIAkgAxBVIQMLIAMgBCkCDDcCCCADIAQpAhw3AhAgAyAELAB9OgAYCyAHQQFqIgcgBigCAEcNAAsLIAVBIGohDCAFQRhqIQogBUEQaiEGIAVBCGohByAFIQQgAiACEOkEIABBwNgAaiILKAIAQeAAbGoQlwMgCygCAARAQQAhAANAIAkgABBVIgMqAghD//9/f1wEQCADKAIAIg0Q4AshCCAEIAEoAgA2AgAgBCAIIA0gCBs2AgQgAkGglAIgBBCVAyADKgIMqCEIIAcgAyoCCKg2AgAgByAINgIEIAJBqpQCIAcQlQMgAyoCFKghCCAGIAMqAhCoNgIAIAYgCDYCBCACQbWUAiAGEJUDIAogAy0AGDYCACACQcGUAiAKEJUDIAJB3osCIAwQlQMLIABBAWoiACALKAIARw0ACwsgBSQECw0AIAAgASACIAMQ1wwLCQAgACABEJYCCw0AIAAgASACIAMQ1gwLrQEBAn8jBCELIwRBIGokBCAAKAIAIQwgC0EcaiIAIAIQNCALQRhqIgIgAxA0IAtBFGoiAyAEEDQgC0EQaiIEIAUQNCALQQxqIgUgBhA0IAtBCGoiBiAHEDQgC0EEaiIHIAgQNCALIAkQNCABIAAgAiADIAQgBSAGIAcgCyAKIAxBA3FBmAtqETYAIAsQMSAHEDEgBhAxIAUQMSAEEDEgAxAxIAIQMSAAEDEgCyQECxkAIAAgASACIAMgBCAFIAYgByAIIAkQ1QwLEQAgACABIAIgAyAEIAUQ1AwLDQAgACABIAIgAxDTDAtGAQJ/IwQhBCMEQRBqJAQgACgCACEFIARBBGoiACACEDQgBCADEDQgASAAIAQgBUH/AHFBlAlqEQcAIAQQMSAAEDEgBCQEC0kBAn8jBCEGIwRBEGokBCAAKAIAIQcgBkEEaiIAIAIQNCAGIAMQNCABIAAgBiAEIAUgB0EDcUGaCmoRDwAgBhAxIAAQMSAGJAQL3wEBBX8jBCEAIwRBIGokBCAAQRBqIQUgAEEIaiEEIABBFGohBiAAIgEgAEEcaiIHNgIAIAAgAEEYaiIINgIEIANB+pMCIAAQqAFBAkYEQCABIAAqAhwgACoCGBAyIAIgASkDADcCCAUCQCAEIAc2AgAgBCAINgIEIANBhJQCIAQQqAFBAkYEQCABIAAqAhwgACoCGBAyIAQgAUGYqQQoAgBBpCpqEKYBIAIgBCkDADcCEAwBCyAFIAY2AgAgA0GPlAIgBRCoAUEBRgRAIAIgACgCFEEARzoAGAsLCyAAJAQLDwAgACABIAIgAyAEENIMCw8AIAAgASACIAMgBBDRDAsPACAAIAEgAiADIAQQ0AwLPAEBfyMEIQcjBEEQaiQEIAAoAgAhACAHIAIQNCABIAcgAyAEIAUgBiAAQQFxQYIJahE1ACAHEDEgByQECxEAIAAgASACIAMgBCAFEM8MCxkAIAEgAiADIAQgACgCAEEDcUGUCmoRNAALDQAgACABIAIgAxCPAgsJACAAIAEQgQILIAEBfyMEIQIjBEEQaiQEIAIgARA3IAAgAhDODCACJAQLHQAgAkEAQQAQuwEQ6AQiAEUEQCACEMIGIQALIAALHwEBfyMEIQIjBEEQaiQEIAIgARA3IAAgAhBjIAIkBAttAQJ/IwQhCSMEQRBqJAQgACgCACEKIAlBDGoiACACEDQgCUEIaiICIAMQNCAJQQRqIgMgBBA0IAkgBRA0IAEgACACIAMgCSAGIAcgCCAKQQFxQf4KahEzACAJEDEgAxAxIAIQMSAAEDEgCSQECxUAIAAgASACIAMgBCAFIAYgBxDNDAs4AQF/IwQhBSMEQRBqJAQgACgCACEAIAUgAhA0IAEgBSADIAQgAEEfcUGoCmoRBgAgBRAxIAUkBAsNACAAIAEgAiADEMwMCzwBAX8jBCEHIwRBEGokBCAAKAIAIQAgByACEDQgASAHIAMgBCAFIAYgAEEDcUHiCmoRLAAgBxAxIAckBAsRACAAIAEgAiADIAQgBRDLDAt+AQJ/IwQhCiMEQSBqJAQgACgCACELIApBEGoiACACEDQgCkEMaiICIAMQNCAKQQhqIgMgBBA0IApBBGoiBCAFEDQgCiAGEDQgASAAIAIgAyAEIAogByAIIAkgC0EDcUGKC2oRMgAgChAxIAQQMSADEDEgAhAxIAAQMSAKJAQLFwAgACABIAIgAyAEIAUgBiAHIAgQygwLvgEBAn8jBCEMIwRBMGokBCAAKAIAIQ0gDEEgaiIAIAIQNCAMQRxqIgIgAxA0IAxBGGoiAyAEEDQgDEEUaiIEIAUQNCAMQRBqIgUgBhA0IAxBDGoiBiAHEDQgDEEIaiIHIAgQNCAMQQRqIgggCRA0IAwgChA0IAEgACACIAMgBCAFIAYgByAIIAwgCyANQQNxQZwLahExACAMEDEgCBAxIAcQMSAGEDEgBRAxIAQQMSADEDEgAhAxIAAQMSAMJAQLGwAgACABIAIgAyAEIAUgBiAHIAggCSAKEMkMC3oBAn8jBCEIIwRBIGokBCAAKAIAIQkgCEEQaiIAIAIQNCAIQQxqIgIgAxA0IAhBCGoiAyAEEDQgCEEEaiIEIAUQNCAIIAYQNCABIAAgAiADIAQgCCAHIAlBB3FBgAtqESoAIAgQMSAEEDEgAxAxIAIQMSAAEDEgCCQECxMAIAAgASACIAMgBCAFIAYQyAwLbQECfyMEIQkjBEEgaiQEIAAoAgAhCiAJQRRqIgAgAhA0IAlBEGoiAiAEEDQgCUEEaiIEIAYQTCAJIAgQNCABIAAgAyACIAUgBCAHIAkgCkEBcUGSCWoRMAAgCRAxIAQQPiACEDEgABAxIAkkBAsVACAAIAEgAiADIAQgBSAGIAcQxwwLRwECfyMEIQUjBEEQaiQEIAAoAgAhBiAFQQxqIgAgAhA0IAUgBBBMIAEgACADIAUgBkEfcUGoCmoRBgAgBRA+IAAQMSAFJAQLDQAgACABIAIgAxDEDAsPACAAIAEgAiADIAQQwwwLPAEBfyMEIQcjBEEQaiQEIAAoAgAhACAHIAIQNCABIAcgAyAEIAUgBiAAQQFxQY4JahEuACAHEDEgByQECxEAIAAgASACIAMgBCAFEMIMCw8AIAAgASACIAMgBBDBDAtaAQJ/IwQhByMEQRBqJAQgACgCACEIIAdBCGoiACACEDQgB0EEaiICIAMQNCAHIAQQNCABIAAgAiAHIAUgBiAIQQNxQeIKahEsACAHEDEgAhAxIAAQMSAHJAQLEQAgACABIAIgAyAEIAUQwAwLaQECfyMEIQcjBEEQaiQEIAAoAgAhCCAHQQxqIgAgAhA0IAdBCGoiAiADEDQgB0EEaiIDIAQQNCAHIAUQNCABIAAgAiADIAcgBiAIQQ9xQeoKahEaACAHEDEgAxAxIAIQMSAAEDEgByQECxEAIAAgASACIAMgBCAFEL8MC2sBAn8jBCEIIwRBEGokBCAAKAIAIQkgCEEMaiIAIAIQNCAIQQhqIgIgAxA0IAhBBGoiAyAEEDQgCCAFEDQgASAAIAIgAyAIIAYgByAJQQNxQfoKahErACAIEDEgAxAxIAIQMSAAEDEgCCQECxMAIAAgASACIAMgBCAFIAYQvgwLTQECfyMEIQgjBEEQaiQEIAAoAgAhCSAIQQRqIgAgAhA0IAggAxA0IAEgACAIIAQgBSAGIAcgCUEHcUGAC2oRKgAgCBAxIAAQMSAIJAQLEwAgACABIAIgAyAEIAUgBhC9DAtLAQJ/IwQhByMEQRBqJAQgACgCACEIIAdBBGoiACACEDQgByADEDQgASAAIAcgBCAFIAYgCEEDcUHMCmoRKQAgBxAxIAAQMSAHJAQLEQAgACABIAIgAyAEIAUQvAwLTQECfyMEIQgjBEEQaiQEIAAoAgAhCSAIQQRqIgAgAhA0IAggAxA0IAEgACAIIAQgBSAGIAcgCUEBcUHQCmoRKAAgCBAxIAAQMSAIJAQLEwAgACABIAIgAyAEIAUgBhC7DAtJAQJ/IwQhBiMEQRBqJAQgACgCACEHIAZBBGoiACACEDQgBiADEDQgASAAIAYgBCAFIAdBA3FByApqEScAIAYQMSAAEDEgBiQECw8AIAAgASACIAMgBBC6DAsLACAAIAEgAhC4DAsLACAAIAEgAhC3DAsMACAAIAEQhwEQmAILDQAgACABIAIgAxC2DAsJACAAIAEQtQwLCQAgACABELQMCwkAIAAgARCzDAsQACAABEAgABC4BSAAEFQLCwYAQcDqAQvlFAEgfyMEIQAjBEEQaiQEQcDqAUGw6gFBmO8BQQBBuNMCQS1B59sCQQBB59sCQQBBu/ICQcvWAkGVARAFIABB9AA2AgBBwOoBQcbyAkEDQYCBAkHjzQICf0EwIQNBBBA/IgEgACgCADYCACADCyABQQAQAUHA6gFB1vICQdDpAUHayQJBwgBB9QAQS0EAQQBBAEEAEABBwOoBQeDyAkHQ6QFB2skCQcIAQfYAEEtBAEEAQQBBABAAIABBJDYCAEHA6gFBh+cCQbj2AUHayQJBwwAgABAzQbj2AUHjzQJBMSAAEDMQACAAQQw2AgBBwOoBQZ/BAkEFQcDdAUHq1QICf0EFIQRBBBA/IgEgACgCADYCACAECyABQQAQASAAQZYBNgIAIABBADYCBEHA6gFB6vICQQJB+IACQbvTAkH3ACAAEIABQQAQASAAQZcBNgIAIABBADYCBEHA6gFBrMECQQJB+IACQbvTAkH3ACAAEIABQQAQASAAQfgANgIAQcDqAUGB8wJBA0HsgAJB480CQTIgABAzQQAQASAAQZgBNgIAIABBADYCBEHA6gFBj/MCQQJB+IACQbvTAkH3ACAAEIABQQAQASAAQTM2AgBBwOoBQZzzAkEDQeCAAkGaywJBMiAAEDNBABABIABBNDYCAEHA6gFBq/MCQQNB4IACQZrLAkEyIAAQM0EAEAEgAEEBNgIAQcDqAUG68wJBBkGg3QFBpfkCAn9BASEFQQQQPyIBIAAoAgA2AgAgBQsgAUEAEAEgAEEBNgIAQcDqAUHC8wJBCEGA3QFBm/kCAn9BASEGQQQQPyIBIAAoAgA2AgAgBgsgAUEAEAEgAEEBNgIAQcDqAUHK8wJBB0Hg3AFBkvkCAn9BASEHQQQQPyIBIAAoAgA2AgAgBwsgAUEAEAEgAEECNgIAQcDqAUHY8wJBCEHA3AFBiPkCAn9BASEIQQQQPyIBIAAoAgA2AgAgCAsgAUEAEAEgAEEBNgIAQcDqAUHw8wJBCEGg3AFB/vgCAn9BASEJQQQQPyIBIAAoAgA2AgAgCQsgAUEAEAEgAEEFNgIAQcDqAUH48wJBB0GA3AFBn9MCQQMgABAzQQAQASAAQQI2AgBBwOoBQYb0AkEHQeDbAUH1+AICf0ECIQpBBBA/IgEgACgCADYCACAKCyABQQAQASAAQQY2AgBBwOoBQZL0AkEGQcDbAUHt+AICf0EGIQtBBBA/IgEgACgCADYCACALCyABQQAQASAAQQE2AgBBwOoBQaT0AkEHQaDbAUHk+AICf0EBIQxBBBA/IgEgACgCADYCACAMCyABQQAQASAAQQI2AgBBwOoBQa70AkEGQYDbAUHc+AICf0ECIQ1BBBA/IgEgACgCADYCACANCyABQQAQASAAQQ02AgBBwOoBQb70AkEFQeDaAUHq1QICf0EHIQ5BBBA/IgEgACgCADYCACAOCyABQQAQASAAQQE2AgBBwOoBQcj0AkEJQbDaAUGu+AICf0EBIQ9BBBA/IgEgACgCADYCACAPCyABQQAQASAAQQQ2AgBBwOoBQdL0AkEIQZDaAUGI+QICf0ECIRBBBBA/IgEgACgCADYCACAQCyABQQAQASAAQQE2AgBBwOoBQdv0AkEMQeDZAUGg+AICf0EBIRFBBBA/IgEgACgCADYCACARCyABQQAQASAAQQE2AgBBwOoBQej0AkEKQbDZAUGU+AICf0EBIRJBBBA/IgEgACgCADYCACASCyABQQAQASAAQQM2AgBBwOoBQfj0AkEHQZDZAUH1+AICf0EDIRNBBBA/IgEgACgCADYCACATCyABQQAQASAAQQ42AgBBwOoBQYT1AkEFQfDYAUHq1QICf0EIIRRBBBA/IgEgACgCADYCACAUCyABQQAQASAAQQE2AgBBwOoBQZj1AkEJQcDYAUGJ+AICf0ECIRVBBBA/IgEgACgCADYCACAVCyABQQAQASAAQZkBNgIAIABBADYCBEHA6gFBp/UCQQJB+IACQbvTAkH3ACAAEIABQQAQASAAQfkANgIAQcDqAUGx9QJBA0HsgAJB480CQTIgABAzQQAQASAAQfoANgIAQcDqAUG89QJBA0HsgAJB480CQTIgABAzQQAQASAAQfsANgIAQcDqAUHV9QJBA0HIgAJB480CAn9BNSEWQQQQPyIBIAAoAgA2AgAgFgsgAUEAEAEgAEEBNgIAQcDqAUHk9QJBBUGg2AFBgvgCAn9BAiEXQQQQPyIBIAAoAgA2AgAgFwsgAUEAEAEgAEEBNgIAQcDqAUHv9QJBB0GA2AFB+fcCAn9BASEYQQQQPyIBIAAoAgA2AgAgGAsgAUEAEAEgAEEDNgIAQcDqAUH59QJBBkHg1wFB3PgCAn9BAyEZQQQQPyIBIAAoAgA2AgAgGQsgAUEAEAEgAEEJNgIAQcDqAUGH9gJBBkHA1wFB7fgCAn9BByEaQQQQPyIBIAAoAgA2AgAgGgsgAUEAEAEgAEECNgIAQcDqAUGZ9gJBBkGg1wFB8fcCAn9BAiEbQQQQPyIBIAAoAgA2AgAgGwsgAUEAEAEgAEH8ADYCACAAQQA2AgRBwOoBQaL2AkEDQbyAAkHjzQJBNiAAEIABQQAQASAAQZoBNgIAIABBADYCBEHA6gFBsPYCQQJB+IACQbvTAkH3ACAAEIABQQAQASAAQf0ANgIAIABBADYCBEHA6gFBvvYCQQNBvIACQePNAkE2IAAQgAFBABABIABBNzYCAEHA6gFB0fYCQQRBkNcBQfHJAgJ/QQ8hHEEEED8iASAAKAIANgIAIBwLIAFBABABIABBmwE2AgAgAEEANgIEQcDqAUHd9gJBAkH4gAJBu9MCQfcAIAAQgAFBABABIABBnAE2AgAgAEEANgIEQcDqAUGa5QJBAkH4gAJBu9MCQfcAIAAQgAFBABABIABBnQE2AgAgAEEANgIEQcDqAUHo9gJBAkH4gAJBu9MCQfcAIAAQgAFBABABIABBODYCACAAQQA2AgRBwOoBQfj2AkEEQYDXAUHxyQICf0EQIR1BCBA/IQEgACgCBCECIAEgACgCADYCACABIAI2AgQgHQsgAUEAEAEgAEERNgIAQcDqAUGE9wJBBUHg1gFB6tUCQQogABAzQQAQASAAQQg2AgBBwOoBQY33AkEHQYDcAUGf0wJBAyAAEDNBABABIABBAjYCAEHA6gFBmPcCQQtBsNYBQeT3AgJ/QQIhHkEEED8iASAAKAIANgIAIB4LIAFBABABIABBEjYCAEHA6gFBo/cCQQVB4NYBQerVAkEKIAAQM0EAEAEgAEH+ADYCAEHA6gFBsPcCQQNBsIACQePNAgJ/QTkhH0EEED8iASAAKAIANgIAIB8LIAFBABABIABBEzYCAEHA6gFBvfcCQQVB4NYBQerVAkEKIAAQM0EAEAEgAEGeATYCACAAQQA2AgRBwOoBQcX3AkECQfiAAkG70wJB9wAgABCAAUEAEAEgAEGfATYCACAAQQA2AgRBwOoBQdT3AkECQfiAAkG70wJB9wAgABCAAUEAEAEgACQECycBAX8jBCECIwRBEGokBCACIAEQjwEgAEGY7wEgAhAENgIAIAIkBAttAQV/IwQhAiMEQRBqJAQgAkEIaiEFIAIhBiACQQRqIQMgACgCCEEASgRAA0AgBSAAKAIEIARBAnRqKAIANgIAIAMgBRCaDSAGIAEgAxDIAiAGEDEgAxAxIARBAWoiBCAAKAIISA0ACwsgAiQECyABAX8jBCECIwRBEGokBCACIAEQNyAAIAIQ0gkgAiQECwkAIAAgARCbDQsQACAABEAgABCbBCAAEFQLCwYAQYDtAQv4AwEGfyMEIQAjBEEQaiQEQYDtAUHw7AFBiO8BQQBBuNMCQSxB59sCQQBB59sCQQBBpfECQcvWAkGTARAFIABB7wA2AgBBgO0BQbDxAkEDQaSAAkHjzQICf0EsIQNBBBA/IgEgACgCADYCACADCyABQQAQASAAQQA2AgBBgO0BQcHxAkGI9gFB2skCQT8gABAzQYj2AUHjzQJBLSAAEDMQACAAQQg2AgBBgO0BQcfxAkG49gFB2skCQcAAIAAQM0G49gFB480CQS4gABAzEAAgAEEMNgIAQYDtAUHV8QJBuPYBQdrJAkHAACAAEDNBuPYBQePNAkEuIAAQMxAAIABBEDYCAEGA7QFB4/ECQbj2AUHayQJBwAAgABAzQbj2AUHjzQJBLiAAEDMQAEGA7QFB8fECQdDpAUHayQJBwQBB8AAQS0EAQQBBAEEAEABBgO0BQZncAkHQ6QFB2skCQcEAQfEAEEtBAEEAQQBBABAAIABBlAE2AgAgAEEANgIEQYDtAUH88QJBAkGcgAJBu9MCAn9B8gAhBEEIED8hASAAKAIEIQIgASAAKAIANgIAIAEgAjYCBCAECyABQQAQASAAQfMANgIAQYDtAUGO8gJBA0GQgAJB480CAn9BLyEFQQQQPyIBIAAoAgA2AgAgBQsgAUEAEAEgACQECwYAQcjuAQuCBAEBfyMEIQAjBEEQaiQEQcjuAUHo7gFBuO4BQQBBuNMCQStB59sCQQBB59sCQQBB7vACQcvWAkGSARAFIABBADYCAEHI7gFB+vACQbD2AUHayQJBPiAAEDNBsPYBQePNAkErIAAQMxAAIABBBDYCAEHI7gFBhPECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBCDYCAEHI7gFBjfECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBDDYCAEHI7gFBkPECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBEDYCAEHI7gFBk/ECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBFDYCAEHI7gFBlvECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBGDYCAEHI7gFBmfECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBHDYCAEHI7gFBnPECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBIDYCAEHI7gFBn/ECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIABBJDYCAEHI7gFBovECQdj2AUG00wJBDSAAEDNB2PYBQa/TAkEHIAAQMxAAIAAkBAsqAQF/IwQhASMEQRBqJAQgAUHG7wI2AgBB4tMCIAEQugMgABCeASABJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEgajYCACAAIAIQeyACJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEoajYCACAAIAIQeyACJAQL9AMCC38CfSMEIQMjBEEgaiQEIANBGGohCCADQRBqIQYgA0EIaiEJIAMhCkGYqQQoAgAiAUGYM2ooAgAiAgRAIAIsAH1FBEACQCABKgKAAiILQwAAAABbBEAgASoChAJDAAAAAFsNAQsgAigCCCIEQZiEgAhxQZCAgAhGBEACQCACIQADfyAAKALsBSIFRQ0BIAUoAggiBEGYhIAIcUGQgIAIRgR/IAUhAAwBBSAFCwshAAsFIAIhAAsgBEGQBHFFIQQgC0MAAAAAXARAIAEsAIgCBEAgASwAnAEEQCALQ83MzD2UIAIqAuwEIgySQwAAAD9DAAAgQBBkIgsgDJUhDCACIAs4AuwEIAkgAkEUaiIHQwAAgD8gDJMQUSAKIAFB8AFqIAJBDGoiBRBAIAYgCSAKEKACIAggBioCACAHKgIAlSAGKgIEIAcqAgSVEDIgBSAIELYCIAcgDBCoAyACQRxqIAwQqAMLBSAERQ0CIAAQ5QFDAACgQJQgAEGMBGoQjQEgAEFAayoCAEMAAABAlJJDH4UrP5QQRaiyIQsgACAAKgJcIAEqAoACIAuUkxC9AgsLIARBAXMgASoChAJDAAAAAFtyRQRAIAEsAIgCRQRAIAAQ5QEhCyAAIAAqAlggCyABKgKEApSTEPQECwsLCwsgAyQECzUBAn8jBCECIwRBEGokBCACIQMgASgCMCIBBEAgAyABNgIAIAAgAxCqAgUgABCeAQsgAiQECz0BAX8jBCECIwRBEGokBCACQgA3AgAgAkEANgIIIAIgAUHIAGoiASABEFwQkwEgACACEM0DIAIQPiACJAQLOQEBfyMEIQIjBEEQaiQEIAIgARCfASAAQcgAaiACKAIAIAIgAiwAC0EASBtBJxCVBCACED4gAiQECzMBAn8jBCECIwRBEGokBCACIgMgASgCcCIBNgIAIAEEQCAAIAMQgwMFIAAQngELIAIkBAsJACAAIAEQqg0LCQAgACABEKkNCwkAIAAgARCoDQsJACAAIAEQpw0LCQAgACABEKUNCwkAIAAgARCkDQvhBgQLfwF+AX0BfCMEIQYjBEEQaiQEIAYhAkGYqQQoAgAiAEHwAWoiBBCVAQRAIAIgBBCZASAAQewzaiACKQMAIgs3AgAgBCALNwIACyAAQf81aiEHAn8CQCAEEJUBRQ0AIABBiAdqIgUQlQFFDQAgAiAEIAUQQCAAIAIpAwAiCzcCgAcgC0IgiKchASALpwwBCyACQwAAAABDAAAAABAyIAAgAikDACILNwKAByALQiCIpyEBIAunC75DAAAAAFwgAb5DAAAAAFxyBEAgB0EAOgAACyAAIAQpAgA3AogHIABBwDJqIQhBACEBA0AgASAAQfgBamosAAAEQAJAIAEgAEHgB2pqIgUgAEH0B2ogAUECdGoiAyoCACIMQwAAAABdIgk6AAAgASAAQeoHampBADoAACAAQYgIaiABQQJ0aiAMOAIAIAMgDEMAAAAAXQR9QwAAAAAFIAwgACoCGJILOAIAIAEgAEHlB2pqIgpBADoAACAJRQRAIAQQlQEEQCACIAQgAEGQB2ogAUEDdGoQQAUgAkMAAAAAQwAAAAAQMgsgAEHECGogAUECdGoiAyoCACEMIAMgDCACEJ0CEDk4AgAgAEGcCGogAUEDdGoiAyADKgIAIAIqAgAiDIwgDCAMQwAAAABdGxA5OAIAIAAgAUEDdGpBoAhqIgMgAyoCACACKgIEIgyMIAwgDEMAAAAAXRsQOTgCAAwBCyAAKgIoIAgrAwAiDSAAQbgHaiABQQN0aiIDKwMAobZeBEAgBBCVAQRAIAIgBCAAQZAHaiABQQN0ahBABSACQwAAAABDAAAAABAyCyACEJ0CIAAqAiwiDCAMlF0EQCAKQQE6AAALIANEAAAA4P//78c5AwAFIAMgDTkDAAsgAEGQB2ogAUEDdGogBCkCADcCACACQwAAAABDAAAAABAyIABBnAhqIAFBA3RqIAIpAwA3AgAgAEHECGogAUECdGpDAAAAADgCAAsFIAEgAEHgB2pqIgVBADoAACABIABB6gdqaiAAQfQHaiABQQJ0aiIDKgIAIgxDAAAAAGA6AAAgAEGICGogAUECdGogDDgCACADQwAAgL84AgAgASAAQeUHampBADoAAAsgBSwAAARAIAdBADoAAAsgAUEBaiIBQQVHDQALIAYkBAsjACMEIQAjBEEQaiQEIABBpO4CNgIAQeLTAiAAELoDIAAkBAsHACAAEKMNCwYAQeDuAQuFBgEBfyMEIQAjBEEQaiQEQeDuAUHQ7gFB+O4BQQBBuNMCQSpB59sCQQBB59sCQQBBj+4CQcvWAkGRARAFQeDuAUG56AJB0OkBQdrJAkE6QecAEEtB0OkBQePNAkEnQegAEEsQACAAQQg2AgBB4O4BQffoAkGI9gFB2skCQTsgABAzQYj2AUHjzQJBKCAAEDMQACAAQQw2AgBB4O4BQYzpAkG49gFB2skCQTwgABAzQbj2AUHjzQJBKSAAEDMQACAAQRA2AgBB4O4BQZPpAkHY9gFBtNMCQQwgABAzQdj2AUGv0wJBBiAAEDMQACAAQRQ2AgBB4O4BQZ7pAkG49gFB2skCQTwgABAzQbj2AUHjzQJBKSAAEDMQACAAQRg2AgBB4O4BQarpAkG49gFB2skCQTwgABAzQbj2AUHjzQJBKSAAEDMQACAAQRw2AgBB4O4BQbbpAkGI9gFB2skCQTsgABAzQYj2AUHjzQJBKCAAEDMQAEHg7gFBwekCQdDpAUHayQJBOkHpABBLQQBBAEEAQQAQAEHg7gFB0+kCQdDpAUHayQJBOkHqABBLQQBBAEEAQQAQAEHg7gFB3+kCQdDpAUHayQJBOkHrABBLQQBBAEEAQQAQACAAQTQ2AgBB4O4BQevpAkHY9gFBtNMCQQwgABAzQdj2AUGv0wJBBiAAEDMQACAAQTg2AgBB4O4BQfzpAkHY9gFBtNMCQQwgABAzQdj2AUGv0wJBBiAAEDMQACAAQTw2AgBB4O4BQY3qAkGI9gFB2skCQTsgABAzQYj2AUHjzQJBKCAAEDMQACAAQcAANgIAQeDuAUGX6gJBwPYBQdrJAkE9IAAQM0HA9gFB480CQSogABAzEAAgAEHEADYCAEHg7gFBp+oCQdj2AUG00wJBDCAAEDNB2PYBQa/TAkEGIAAQMxAAQeDuAUG66gJB0OkBQdrJAkE6QewAEEtB0OkBQePNAkEnQe0AEEsQAEHg7gFBnO4CQdDpAUHayQJBOkHuABBLQQBBAEEAQQAQACAAJAQLJwEBfyMEIQIjBEEQaiQEIAIgARCPASAAQejuASACEAQ2AgAgAiQEC28BBX8jBCECIwRBEGokBCACQQhqIQQgAiEFIAJBBGohAyAAQRBqIgYoAgBBAEoEQEEAIQADQCAEIAYgABDtAzYCACADIAQQtg0gBSABIAMQyAIgBRAxIAMQMSAAQQFqIgAgBigCAEgNAAsLIAIkBAszAQJ/IwQhAiMEQRBqJAQgAiIDIAEoAjQiATYCACABBEAgACADEJIFBSAAEJ4BCyACJAQLQgICfwJ8IwQhASMEQRBqJAQCfCAAKAIAQYCAAigCACABQQRqEAYhBCABIAEoAgQQXyAEC6shAiABEMwBIAEkBCACCzwBA38jBCECIwRBEGokBCACQQFqIQMgAiEEIAAgARBbBH9BAAUgAyAELAAAOgAAIAEQuQ0LNgI0IAIkBAsnAQF/IwQhAiMEQRBqJAQgAiABEI8BIABB0O4BIAIQBDYCACACJAQLxRgDFX8BfgN9IwQhCCMEQdAAaiQEQZipBCgCACIAQQA6AOMGIAAoAggiA0ECcQR/IAAoAgxBAXEEfwJ/IAAqAowGQwAAAABeRQRAIAAqApQGQwAAAABeRQRAIAAqApAGQwAAAABeRQRAQQEgACoCmAZDAAAAAF5FDQMaCwsLIABBxDVqQQQ2AgBBAQsFQQALBUEACyEGIANBAXFBAEciDwRAIAAoAmQQ6AEEQCAAQwAAgD84AowGIABBxDVqQQM2AgALIAAoAmgQ6AEEQCAAQwAAgD84ApQGIABBxDVqQQM2AgALIAAoAmwQ6AEEQCAAQwAAgD84ApAGIABBxDVqQQM2AgALIAAoAjgQ6AEEQCAAQwAAgD84AtAGIABBxDVqQQM2AgALIAAoAjwQ6AEEQCAAQwAAgD84AtQGIABBxDVqQQM2AgALIABBQGsoAgAQ6AEEQCAAQwAAgD84AtgGIABBxDVqQQM2AgALIAAoAkQQ6AEEQCAAQwAAgD84AtwGIABBxDVqQQM2AgALIAAsAIgCBEAgAEMAAIA/OALEBgsgACwAiQIEQCAAQwAAgD84AsgGCyAALACKAgRAIABDAACAPzgCzAYLCyAAQawpaiIDIABB2ChqIgEpAgA3AgAgAyABKQIINwIIIAMgASkCEDcCECADIAEpAhg3AhggAyABKQIgNwIgIAMgASkCKDcCKCADIAEpAjA3AjAgAyABKQI4NwI4IANBQGsgAUFAaykCADcCACADIAEpAkg3AkggAyABKAJQNgJQQQAhAQNAIABB2ChqIAFBAnRqIgMgAEGMBmogAUECdGoqAgBDAAAAAF4EfSADKgIAIhZDAAAAAF0EfUMAAAAABSAWIAAqAhiSCwVDAACAvws4AgAgAUEBaiIBQRVHDQALIABBhDZqIhEoAgAiAwRAAkAgAEGCNmoiCSwAAEUhBQJAAkAgAEH+NWosAAAEfyAFDQMgAEH0NWoiASgCACECDAEFIABB9DVqIgEoAgAhAiAFRQ0BIAMgAhCKAyAAQYg2agshAgwBCyADIAIgAEGINmoiAhCqBAsgAEGgNWooAgBBiAZqIAEoAgBBBHRqIgMgAikCADcCACADIAIpAgg3AggLBSAAQYI2aiEJCyAAQYE2aiISQQA6AAAgCUEAOgAAIBFBADYCACAAQbw1akEANgIAIABBmTZqIgosAAAEQBDwCQsgAEGgNmoiDSgCAEECRgRAIABBsDZqKAIARQRAIABB+DZqKAIARQRAIABB/jVqQQA6AAALCyANQQA2AgALIAghAyAAQfw1aiECIABB/TVqIgQsAAAEQCACLAAABEAgACgCCEEEcQRAIAAoAgxBBHEEQCAAQf41aiwAAEUEQCAAQf81aiwAAARAIABBoDVqKAIABEAgAxDwBCAAIAMpAwAiFTcCiAcgACAVNwLwASAAQQE6AOMGCwsLCwsgBEEAOgAACwsgAkEAOgAAIABBuDVqQQA2AgAgAEH0NWohByAAQaA1aiIFKAIAIgEEQCABEO8JIAUoAgAiAQRAIAEoAvwFBEAgBygCAEUEQCABQQA2AvwFCwsLCxDuCSAAAn8CQAJAIAYgD3JFDQAgBSgCACIBRQ0AIAAgASgCCEGAgBBxIgFBEnZBAXM6AOUGIAENASAAQaQ1aigCAEUNASAAQf41aiwAAA0BQQEMAgsgAEEAOgDlBgsgAEHcNWooAgAEf0EBBSASLAAAQQBHCwtBAXE6AOYGQQFBARCZAgRAAkAgAEG0M2ooAgAEQBByDAELIAUoAgAiAUUiBkUEQCABKAIIQYCAgChxQYCAgAhGBEAgASgC7AUiCwRAIAsQdCABKAJUQQAQigMgAkEAOgAAIABB/zVqLAAARQ0DIARBAToAAAwDCwsLIABBnDRqIgIoAgBBAEoEQCACEOsGKAIEKAIIQYCAgMAAcQ0BIAIoAgBBf2pBARDrAgwBCyAHKAIABEBBABC4BgwBCyAGRQRAIAEoAghBgICAKHFBgICACEcEQCABQQA2AoAGCwsgAEGkNWpBADYCAAsLIABBtDVqIRMgAEGwNWohBCAAQaw1aiELIABBqDVqIg5CADcDACAOQgA3AwgCQAJAIABBpDVqIgYoAgBFDQAgAEH+NWosAAANACAAQdw1aigCAA0AIAUoAgAiAQR/IAEoAghBgIAQcQ0BAkACQEEAEIwBBEACQEEAQQEQmQIhDCAGKAIAIQIgDEEBcyIQIABBtDNqKAIAIgFFIhRBAXNyRQRAIA4gAjYCAAsgFARAIAsgAjYCACAMRQ0BIAQgAjYCAAwBCyABIAJHIgwNAiALIAE2AgAgDCAQcg0CIAQgATYCAAsFIABBtDNqKAIAIgEEQCAGKAIAIQIMAgsLDAELIAEgAkcNAgtBAkEBEJkCRQ0BIBMgBigCADYCAAwBBUEBIQxBAAshAQwBCyAFKAIAIgEEfyABKAIIQYCAEHEEQCAAQf41akEBOgAAC0EABUEAIQFBAQshDAsgCkEAOgAAIABBwDVqIhAoAgAiAgRAIBMgAjYCACAEIAI2AgAgCyACNgIAIA4gAjYCAAsgEEEANgIAIABBtDNqKAIABH8gAEHMM2ooAgAFQX8LIQIgAEGkNmohBCANKAIABEAgDUECNgIABSAEQX82AgAgAEGcNmpBADYCACAMRQRAIABB3DVqKAIARSACQQBHcQRAIAEoAghBgIAQcUUEQAJAIAJBAXEEQEEEQREQ/AMEQCAEQQA2AgALCyACQQJxBEBBBUESEPwDBEAgBEEBNgIACwsgAkEEcQRAQQZBExD8AwRAIARBAjYCAAsLIAJBCHFFDQBBB0EUEPwDRQ0AIARBAzYCAAsLCwsgAEGsNmogBCgCADYCAAsgDwR9IAIQ7QkFQwAAAAALIRgCQAJAIAQoAgAiAUF/RgRAIAosAAANAQUgCkEBOgAAIABBqDZqIAE2AgAMAQsMAQsgBigCAEUEQCAJQQE6AAAgEkEBOgAAIBFBADYCACAAQf41akEAOgAACwsQrQMgBSgCACICBEAgAigCCEGAgBBxRQRAIABB3DVqKAIARQRAIAIQ5QFDAADIQpQgACoCGJRDAAAAP5IQYiEWIAIoArwCRQRAAkAgAiwAxQJFDQAgCiwAAEUNACAEKAIAIgFBAkkEQCACIBZDAACAP0MAAIC/IAEblCACKgJYkhBiEPQEIAQoAgAhAQsgAUF+cUECRw0AIAIgFkMAAIC/QwAAgD8gAUECRhuUIAIqAlySEGIQvQILCyADQQRBAEPNzMw9QwAAIEEQkgEgAyoCACIXQwAAAABcBEAgAiwAeARAIAIgFiAXlCACKgJYkhBiEPQEIABBmDZqQQE6AAALCyADKgIEIhdDAAAAAFwEQCACIBYgF5QgAioCXJIQYhC9AiAAQZg2akEBOgAACwsLCyAIQThqIQIgCEEwaiEEIAhBKGohCSAIQSBqIQ0gCEEYaiELIAhBEGohDiAAQbA2ahD/AyAAQdQ2ahD/AyAAQfg2ahD/AyAKLAAABEAgAEGYNmoiDywAAARAIAcoAgBFBEAgBSgCACIBQQxqIQogBCABQewDaiAKEEAgCUMAAIA/QwAAgD8QMiACIAQgCRBAIAsgAUH0A2ogChBAIA5DAACAP0MAAIA/EDIgDSALIA4QNSADIAIgDRBDIAMgAUGIBmogBygCAEEEdGoQjQJFBEAgARDlAUMAAAA/lCEWIAIgAxB2IBYQRYwgAxCNASAWEEWMEDIgAyACENACIAFBiAZqIAcoAgBBBHRqIAMQtQIgBkEANgIACyAPQQA6AAALCwsCQAJAIAUoAgAiAUUNACABQYgGaiAHKAIAQQR0ahDjBA0AIAMgBSgCACIBQYgGaiAHKAIAQQR0aiIHKQIANwIAIAMgBykCCDcCCAwBCyADQwAAAABDAAAAAEMAAAAAQwAAAAAQXSAFKAIAIQELIAEEQCAEIAFBDGogAxA1IAkgBSgCAEEMaiADQQhqEDUgAiAEIAkQQwUgAhCMBAsgAEHINWoiAyACKQIANwIAIAMgAikCCDcCCCADIAMqAgQgGJI4AgQgAyADKgIMIBiSOAIMIABByDVqIgEqAgBDAACAP5IgAEHQNWoiAioCABBFIRYgASAWOAIAIAIgFjgCACADEOMEGiAAQdg1akEANgIAIAgkBAslAQF/IwQhAiMEQRBqJAQgAiABOwEAIABB+ClqIAIQrwcgAiQEC3IBBn8jBCECIwRBEGokBCACQQhqIQUgAiEGIAJBBGohAyAALgE+QQBKBEAgAEFAayEHA0AgBSAHKAIAIARB9ABsajYCACADIAUQuw0gBiABIAMQyAIgBhAxIAMQMSAEQQFqIgQgAC4BPkgNAAsLIAIkBAs1AQJ/IwQhAyMEQRBqJAQgAyIEIAEgAhDhAiIBNgIAIAEEQCAAIAQQkgUFIAAQngELIAMkBAs1AQJ/IwQhAyMEQRBqJAQgAyIEIAEgAhCUBiIBNgIAIAEEQCAAIAQQkgUFIAAQngELIAMkBAtLAQR/IwQhAyMEQRBqJAQCfyAAKAIAIQYgA0EEaiIAIAEQcSAGCwJ/IAAoAgAhBSADIAIQcSAFCyADKAIAEAsgAxAxIAAQMSADJAQLjwEBBX8jBCEIIwRBIGokBCAFLAALQQBIBEAgBSgCACEFCyAIQQhqIQkgCEEEaiEKIAhBGGoiC0EANgIAIAhBEGoiDCABIAIgAyAEIAVBACALEJoDIAYQW0UEQCAJQQA2AgAgCiALKAIAIAVrNgIAIAYgCSAKEMENCyAIIAcQbyAAIAwgCBCBASAIEDEgCCQECyQAIAIsAAtBAEgEQCACKAIAIQILIAAgASACQQAgAxDXBCACawtCAgJ/AnwjBCEBIwRBEGokBAJ8IAAoAgBBwP8BKAIAIAFBBGoQBiEEIAEgASgCBBBfIAQLqyECIAEQzAEgASQEIAILSAECfyMEIQYjBEEgaiQEIAZBCGoiByAGLAAQOgAAIAEQxA0hASAGIAMQNyAHIAYpAgA3AgAgACABIAIgByAEIAUQjgkgBiQEC0sBAn8jBCEHIwRBEGokBCAAKAIAIQggB0EEaiIAIAIQNCAHIAQQNCABIAAgAyAHIAUgBiAIQQFxQZAJahEmACAHEDEgABAxIAckBAsRACAAIAEgAiADIAQgBRDFDQtLAQJ/IwQhBSMEQRBqJAQgACgCACEAIAUgAxBMIAVBDGoiAyABIAIgBSAEIABBAXFBsgFqESUANgIAIAMoAgAhBiAFED4gBSQEIAYLDQAgACABIAIgAxDDDQtvAQN/IwQhCCMEQSBqJAQgACgCACEJIAhBCGoiACAFEEwgCEEEaiIFIAYQNCAIIAcQNCAIQRRqIgYgASACIAMgBCAAIAUgCCAJQQFxQYQJahEkACAGEH0hCiAGEDEgCBAxIAUQMSAAED4gCCQEIAoLFQAgACABIAIgAyAEIAUgBiAHEMINCzQBAn8jBCECIwRBEGokBCACIAEgACgCAEH/AXFB8gZqEQEAIAIQhwMhAyACED4gAiQEIAMLMgAgAUFAaygCACIBQcgAakGv7QIgARshASAAQgA3AgAgAEEANgIIIAAgASABEFwQkwELXgICfwJ9IwQhAyMEQRBqJAQgASEEIAAoAgAhASADIAQgACgCBCIAQQF1aiIEIAIgAEEBcQR/IAEgBCgCAGooAgAFIAELQR9xQShqEQgAOAIAIAMqAgAhBiADJAQgBgsLACAAIAEgAhDADQsLACAAIAEgAhC/DQsJACAAIAEQvg0LKwECfyMEIQAjBEEQaiQEIABB4gA2AgBBBBA/IgEgACgCADYCACAAJAQgAQsJACAAIAEQug0LCQAgACABELgNCwkAIAAgARC3DQsQACAABEAgABDVBCAAEFQLCwYAQaDsAQubCQEKfyMEIQAjBEEQaiQEQaDsAUGQ7AFBqO4BQQBBuNMCQShB59sCQQBB59sCQQBBz+oCQcvWAkGOARAFIABBADYCAEGg7AFB1uoCQdj2AUG00wJBCiAAEDNB2PYBQa/TAkEFIAAQMxAAIABBBDYCAEGg7AFB3+oCQdj2AUG00wJBCiAAEDNB2PYBQa/TAkEFIAAQMxAAQaDsAUHl6gJB0OkBQdrJAkE0Qd8AEEtBAEEAQQBBABAAIABB4AA2AgBBoOwBQfPqAkEDQYSAAkHjzQJBHyAAEDNBABABQaDsAUGB6wJB0OkBQdrJAkE0QeEAEEtB0OkBQePNAkEgENINEAAgAEE4NgIAQaDsAUGP6wJB2PYBQbTTAkEKIAAQM0HY9gFBr9MCQQUgABAzEAAgAEE8NgIAQaDsAUGg6wJBsPYBQdrJAkE1IAAQM0Gw9gFB480CQSEgABAzEAAgAEE+NgIAQaDsAUGt6wJBqPYBQdrJAkE2IAAQM0Go9gFB480CQSIgABAzEAAgAEHjADYCAEGg7AFBvesCQQNBhIACQePNAkEfIAAQM0EAEAEgAEHIADYCAEGg7AFBz+sCQdj2AUG00wJBCiAAEDNB2PYBQa/TAkEFIAAQMxAAIABBzAA2AgBBoOwBQdbrAkHY9gFBtNMCQQogABAzQdj2AUGv0wJBBSAAEDMQACAAQdQANgIAQaDsAUHe6wJBuPYBQdrJAkE3IAAQM0G49gFB480CQSMgABAzEAAgAEGPATYCACAAQQA2AgRBoOwBQfLrAkECQfj/AUG70wJB5AAgABCAAUEAEAEgAEGQATYCACAAQQA2AgRBoOwBQYLsAkECQfj/AUG70wJB5AAgABCAAUEAEAEgAEEkNgIAQaDsAUGT7AJBA0Hs/wFBmssCQTEgABAzQQAQASAAQSU2AgBBoOwBQZ3sAkEDQez/AUGaywJBMSAAEDNBABABIABB5QA2AgAgAEEANgIEQaDsAUGx7AJBA0Hg/wFB480CAn9BJiEDQQgQPyEBIAAoAgQhAiABIAAoAgA2AgAgASACNgIEIAMLIAFBABABIABBCzYCACAAQQA2AgRBoOwBQcHsAkEDQdT/AUG+5AICf0ECIQRBCBA/IQEgACgCBCECIAEgACgCADYCACABIAI2AgQgBAsgAUEAEAEgAEEpNgIAIABBADYCBEGg7AFB0OwCQQJBzP8BQdrJAgJ/QTghBUEIED8hASAAKAIEIQIgASAAKAIANgIAIAEgAjYCBCAFCyABQQAQASAAQeYANgIAQaDsAUHZ7AJBAkHE/wFB2skCAn9BOSEGQQQQPyIBIAAoAgA2AgAgBgsgAUEAEAEgAEEBNgIAQaDsAUHm7AJBCEGQ1gFBpe0CAn9BASEHQQQQPyIBIAAoAgA2AgAgBwsgAUEAEAEgAEEBNgIAQaDsAUH07AJBBUHw1QFBnu0CAn9BASEIQQQQPyIBIAAoAgA2AgAgCAsgAUEAEAEgAEEBNgIAQaDsAUGK7QJBB0HQ1QFBle0CAn9BASEJQQQQPyIBIAAoAgA2AgAgCQsgAUEAEAEgACQEC1wBA38jBCEEIwRBgAFqJAQgBEEIaiEFIAQhAyACEFsEQCAFEN8CBSADIAIQbyAFIAMQuAcgAxAxCyAEQQRqIgMgAUEAIAUgAhBbGxCeBjYCACAAIAMQgwMgBCQECykBAX8gACgCBCIBIAAoAghHBEAgACABNgIICyAAKAIAIgAEQCAAEFQLC5kBAQR/IAFBBGoiAigCACAAKAIEIAAoAgAiA2siBWshBCACIAQ2AgAgBUEASgR/IAQgAyAFEEYaIAIhAyACKAIABSACIQMgBAshAiAAKAIAIQQgACACNgIAIAMgBDYCACAAKAIEIQIgACABKAIINgIEIAEgAjYCCCAAKAIIIQIgACABKAIMNgIIIAEgAjYCDCABIAMoAgA2AgALLQEBfyAAKAIIIQIDQCACQQA6AAAgACAAKAIIQQFqIgI2AgggAUF/aiIBDQALC0AAIABBADYCDCAAIAM2AhAgACABBH8gARA/BUEACyIDNgIAIAAgAiADaiICNgIIIAAgAjYCBCAAIAEgA2o2AgwLLQEBfyAAKAIEIQIDQCACQQA6AAAgACAAKAIEQQFqIgI2AgQgAUF/aiIBDQALC50BAQZ/IwQhBCMEQSBqJAQgBCECIAAoAgggACgCBCIDayABSQRAQf////8HIAEgAyAAKAIAa2oiBUkEQBAKBSACIAUgACgCCCAAKAIAIgZrIgdBAXQiAyADIAVJG0H/////ByAHQf////8DSRsgACgCBCAGayAAQQhqEN0NIAIgARDcDSAAIAIQ2w0gAhDaDQsFIAAgARDeDQsgBCQECzMBAX8jBCECIwRBEGokBCABKAIAIQEgAkG66gIQdyAAIAEgAigCABAIEF8gAhAxIAIkBAszAQF/IwQhAiMEQRBqJAQgASgCACEBIAJBp+oCEHcgACABIAIoAgAQCBBfIAIQMSACJAQLMwEBfyMEIQIjBEEQaiQEIAEoAgAhASACQZfqAhB3IAAgASACKAIAEAgQXyACEDEgAiQECzMBAX8jBCECIwRBEGokBCABKAIAIQEgAkGN6gIQdyAAIAEgAigCABAIEF8gAhAxIAIkBAszAQF/IwQhAiMEQRBqJAQgASgCACEBIAJBwekCEHcgACABIAIoAgAQCBBfIAIQMSACJAQLMwEBfyMEIQIjBEEQaiQEIAEoAgAhASACQffoAhB3IAAgASACKAIAEAgQXyACEDEgAiQECzMBAX8jBCECIwRBEGokBCABKAIAIQEgAkG56AIQdyAAIAEgAigCABAIEF8gAhAxIAIkBAs2AQJ/IAAoAgQgACgCACIDayICIAFJBEAgACABIAJrEN8NBSACIAFLBEAgACABIANqNgIECwsL/AEBBn8jBCEIIwRBkAFqJAQgCEEIaiEJIAhBgAFqIgZBADYCACAGQQA2AgQgBkEANgIIIAhBDGoiByACQYjPAhBXIAYgBxDKAhDnDSAHEDEgCCILIAYoAgQgBigCACIKayAKEKEBIAcgCBCVBSAHIAIQygMgBxAxIAYoAgQgBigCAGsiAhBTIgogBigCACACEEYaIAQQWwRAIAcQ3wIFIAkgBBBvIAcgCRC4ByAJEDELIAUQWwR/QQAFIAUQtwcLIQUgCyABIAogAiADQQAgByAEEFsbIAUQhgY2AgAgACALEIMDIAYoAgAiAARAIAYgADYCBCAAEFQLIAgkBAv3AQEFfyMEIQMjBEEgaiQEIANBHGoiAkEANgIAIANBGGoiBEF/NgIAIANBFGoiBUF/NgIAIANBEGoiBkF/NgIAIAEgAiAEIAUgBhCfBiAAEJYFIANBDGoiAUHu5wIQdyADIAYoAgAgBCgCACAFKAIAbGwgAigCABChASADQQhqIgIgAxCVBSAAIAEgAhCpAiACEDEgARAxIAFB9ecCEHcgAiAEEHEgACABIAIQqQIgAhAxIAEQMSABQfvnAhB3IAIgBRBxIAAgASACEKkCIAIQMSABEDEgAUGC6AIQdyACIAYQcSAAIAEgAhCpAiACEDEgARAxIAMkBAs2AQJ/IwQhASMEQRBqJAQgASICQQA2AgAgACABEIAKIgAEQCAAIAIoAgAQwQYgABBBCyABJAQL9wEBBX8jBCEDIwRBIGokBCADQRxqIgJBADYCACADQRhqIgRBfzYCACADQRRqIgVBfzYCACADQRBqIgZBfzYCACABIAIgBCAFIAYQkwkgABCWBSADQQxqIgFB7ucCEHcgAyAGKAIAIAQoAgAgBSgCAGxsIAIoAgAQoQEgA0EIaiICIAMQlQUgACABIAIQqQIgAhAxIAEQMSABQfXnAhB3IAIgBBBxIAAgASACEKkCIAIQMSABEDEgAUH75wIQdyACIAUQcSAAIAEgAhCpAiACEDEgARAxIAFBgugCEHcgAiAGEHEgACABIAIQqQIgAhAxIAEQMSADJAQLIwEBfyMEIQIjBEEQaiQEIAIgASgCCDYCACAAIAIQcSACJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEkajYCACAAIAIQeyACJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEsajYCACAAIAIQeyACJAQLbQEFfyMEIQIjBEEQaiQEIAJBCGohBSACIQYgAkEEaiEDIAAoAjRBAEoEQANAIAUgACgCPCAEQQJ0aigCADYCACADIAUQgwMgBiABIAMQyAIgBhAxIAMQMSAEQQFqIgQgACgCNEgNAAsLIAIkBAsJACAAIAEQ7w0LCQAgACABEO4NCwkAIAAgARDtDQsrAQJ/IwQhACMEQRBqJAQgAEHbADYCAEEEED8iASAAKAIANgIAIAAkBCABCwwAIAAgARCHATYCCAsJACAAIAEQ7A0LIQAjBCEBIwRBEGokBCABQdiFAjYCACAAIAEQqgIgASQECyEAIwQhASMEQRBqJAQgAUGwxwE2AgAgACABEKoCIAEkBAsgACMEIQEjBEEQaiQEIAEQkQk2AgAgACABEKoCIAEkBAshACMEIQEjBEEQaiQEIAFBsIEBNgIAIAAgARCqAiABJAQLIAAjBCEBIwRBEGokBCABEJAJNgIAIAAgARCqAiABJAQLIQAjBCEBIwRBEGokBCABQcqFAjYCACAAIAEQqgIgASQEC9UNAgl/An0jBCEHIwRBEGokBEGYqQQoAgAiACgClAFBNGpBABBQKAIAEL4DGiAALAC/AQRAIAAoAgxBAnFFBEAgAEEAOgC/AQsLIABBoNgAaiIBLAAARQRAIABBwNgAaigCABogACgCICIEBEAgBBDqDQsgAUEBOgAACyAAQaTYAGoiASoCACIJQwAAAABeBEAgASAJIAAqAhiTIgk4AgAgCUMAAAAAXwRAIAAoAiAiBARAIAQQtgcFIABBAToA5AYLIAFDAAAAADgCAAsLIABBwDJqIgEgASsDACAAKgIYu6A5AwAgAEEBOgABIABByDJqIgEgASgCAEEBajYCACAAQYDYAGpBADYCACAAQZAzakEANgIAIAAoApQBQQE6AAAQkwUQlAUgAEGwMWooAgAQvgMaIAciBEMAAAAAQwAAAAAgACoCECAAKgIUEDYgAEHQMWoiASAEKQIANwIAIAEgBCkCCDcCCCAAQcwxaiAAQawraigCADYCACAAQdw3aiIBEPgDIAEgACgClAEoAggQmAIgARCrBiAAQYA4aiAAQagrai0AAEECQQAgAEGpK2osAAAbcjYCACAAQZw3ahCbBCAAQdQ4aiwAAARAIABB7DhqKAIAIgEgAEG0M2ooAgBGBEAgARC0AgsLAkACQCAAQagzaiIIKAIABEAgAEGgM2oiBSgCACIBBEAgASAAQbQzaigCAEYEQCAAQbAzakMAAAAAOAIACwwCCwUgAEGsM2pDAAAAADgCACAAQaAzaiIFKAIAIQEgAEGwM2pDAAAAADgCACABDQELIABBtDNqIgYoAgAhAQwBCyAAQawzaiICIAAqAhgiCSACKgIAkjgCACAAQbQzaiIGKAIAIgMgAUYEQCABIQIFIABBsDNqIgIgCSACKgIAkjgCACABIQIgAyEBCwsgCCACNgIAIAVBADYCACAAQaQzakEAOgAAIAEgAEG8M2oiAigCAEcEQCABRSABIABBuDNqKAIAR3JFBEAQciAGKAIAIQELCyAAKgIYIQkgAQRAIABBwDNqIgMgCSADKgIAkjgCAAsgAEHoM2oiAyAJIAMqAgCSOAIAIABBuDNqIAE2AgAgAEHcM2ogAEHYM2ooAgA2AgAgAEHIM2ogAEHGM2osAAA6AAAgAkEANgIAIABBxzNqQQA6AAAgAEHEM2pBADoAACABIABB1NcAaiICKAIAIgNGIANFckUEQCACQQA2AgALIABBvDlqIABBuDlqIgEoAgA2AgAgAUEANgIAIABBtDlqQ///f384AgAgAEHVOGpBADoAACAAQdgYaiAAQdgIakGAEBBGGkEAIQEDQCAAQdgIaiABQQJ0aiICIAEgAEGMAmpqLAAABH0gAioCACIKQwAAAABdBH1DAAAAAAUgCSAKkgsFQwAAgL8LOAIAIAFBAWoiAUGABEcNAAsQvA0QsQ0gAEHM3ABqIgEgASoCACAAKgIYIgkgAEHo2ABqIABByNwAaiICKAIAIgNBAnRqIgUqAgCTkjgCACAFIAk4AgAgAiADQQFqQfgAbzYCACAAIAEqAgAiCUMAAAAAXgR9QwAAgD8gCUMAAPBClZUFQ///f38LOALoBhDzDhChDgJAAkAQ/wINACAAQdw1aigCAARAIABB7DVqKgIAQwAAAABeDQELIABB2DdqIgEgASoCACAAKgIYQwAAIEGUk0MAAAAAEDk4AgAMAQsgAEHYN2oiASABKgIAIAAqAhhDAADAQJSSQwAAgD8QRTgCAAsgAEHQOGpBADYCACAAQdjcAGpBfzYCACAAQdTcAGpBfzYCACAAQdDcAGpBfzYCACAEQwAAgD9DAACAPxAyIABBkNgAaiAEKQMANwIAEKYNIAYoAgBFBEAgAEGgNWoiASgCACICBEAgAiwAegRAIAIoAghBgIAQcUUEQCAALACIAkUEQEEAQQAQbQRAAkAgAEGkNWooAgAEQCAAQfg1aigCACICQf////8HRwRAIAEoAgAgAkEBakF/QQEgACwAiQIbajYCvAYMAgsLIAEoAgAgACwAiQJBB3RB/wFxQRh0QR91QRh0QRh1NgK8BgsLCwsLCwsgAEH4NWpB/////wc2AgAgAEHUMmoiAygCAARAQQAhAQNAIAMgARBQKAIAIgIgAiwAejoAeyACQQA6AHogAkEAOgB8IAFBAWoiASADKAIARw0ACwsgAEGgNWoiASgCACICBEAgAiwAe0UEQEEAELUHCwsgAEH4MmoQvQMgAEGoNGpBABCRBSABKAIAEJkFIARDAADIQ0MAAMhDEDIgBEEEEJoEQYSGAkEAQQAQ6wEaIABBAToAAiAHJAQLIQAjBCEBIwRBEGokBCABQcSFAjYCACAAIAEQqgIgASQECwkAIAAgARDrDQszAQJ/IwQhAiMEQRBqJAQgAiABIAAoAgBB/wFxQfIGahEBACACEH0hAyACEDEgAiQEIAMLCQAgACABEOkNCyMAIAAoAjRBAEoEfyAAKAIUBH9BAQUgACgCGEEARwsFQQALC2sBA38jBCEGIwRBEGokBCAAKAIAIQcgBkEIaiIAIAIQNCAGQQRqIgIgBBA0IAYgBRA0IAZBDGoiBCABIAAgAyACIAYgB0EDcUGeCmoRIwAgBBB9IQggBBAxIAYQMSACEDEgABAxIAYkBCAICxEAIAAgASACIAMgBCAFEOgNCwsAIAAgASACENkNCxAAIAAEQCAAEKMGIAAQVAsLBgBByO0BC6cJAQV/IwQhACMEQRBqJARByO0BQbjtAUGY7gFBAEG40wJBJUHn2wJBAEHn2wJBAEHD5AJBy9YCQYkBEAUgAEEaNgIAQcjtAUHP5AJBA0G0/wFBmssCAn9BMCECQQQQPyIBIAAoAgA2AgAgAgsgAUEAEAEgAEEBNgIAQcjtAUHe5AJBBkGw1QFBsegCAn9BASEDQQQQPyIBIAAoAgA2AgAgAwsgAUEAEAEgAEGKATYCACAAQQA2AgRByO0BQfPkAkECQaj/AUG70wJB0AAgABCAAUEAEAEgAEGLATYCACAAQQA2AgRByO0BQYDlAkECQaj/AUG70wJB0AAgABCAAUEAEAEgAEGMATYCACAAQQA2AgRByO0BQY/lAkECQaj/AUG70wJB0AAgABCAAUEAEAEgAEGNATYCACAAQQA2AgRByO0BQZrlAkECQaj/AUG70wJB0AAgABCAAUEAEAEgAEEmNgIAIABBADYCBEHI7QFBoOUCQQJBoP8BQdrJAkEvIAAQgAFBABABIABBJzYCACAAQQA2AgRByO0BQablAkECQaD/AUHayQJBLyAAEIABQQAQASAAQdEANgIAQcjtAUGu5QJBAkGY/wFB2skCQTAgABAzQQAQASAAQdIANgIAQcjtAUHB5QJBAkGY/wFB2skCQTAgABAzQQAQASAAQdMANgIAQcjtAUHU5QJBAkGY/wFB2skCQTAgABAzQQAQASAAQdQANgIAQcjtAUHq5QJBAkGY/wFB2skCQTAgABAzQQAQASAAQdUANgIAQcjtAUH/5QJBAkGY/wFB2skCQTAgABAzQQAQASAAQdYANgIAQcjtAUGW5gJBAkGY/wFB2skCQTAgABAzQQAQASAAQdcANgIAQcjtAUGw5gJBAkGY/wFB2skCQTAgABAzQQAQASAAQdgANgIAQcjtAUHW5gJBAkGY/wFB2skCQTAgABAzQQAQASAAQdkANgIAQcjtAUHt5gJBAkGY/wFB2skCQTAgABAzQQAQASAAQQA2AgBByO0BQYDnAkGI9gFB2skCQTEgABAzQYj2AUHjzQJBGyAAEDMQACAAQQQ2AgBByO0BQYfnAkG49gFB2skCQTIgABAzQbj2AUHjzQJBHCAAEDMQAEHI7QFBjecCQdDpAUHayQJBM0HaABBLQdDpAUHjzQJBHRDzDRAAIABBDDYCAEHI7QFBk+cCQbj2AUHayQJBMiAAEDNBuPYBQePNAkEcIAAQMxAAIABBEDYCAEHI7QFBo+cCQbj2AUHayQJBMiAAEDNBuPYBQePNAkEcIAAQMxAAIABBHDYCAEHI7QFBs+cCQbj2AUHayQJBMiAAEDNBuPYBQePNAkEcIAAQMxAAIABBIDYCAEHI7QFBvOcCQbj2AUHayQJBMiAAEDNBuPYBQePNAkEcIAAQMxAAQcjtAUHG5wJB0OkBQdrJAkEzQdwAEEtBAEEAQQBBABAAQcjtAUHR5wJB0OkBQdrJAkEzQd0AEEtBAEEAQQBBABAAIABB3gA2AgBByO0BQeHnAkEDQYz/AUHjzQICf0EeIQRBBBA/IgEgACgCADYCACAECyABQQAQASAAJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEIajYCACAAIAIQeyACJAQLwAEBB38jBCEFIwRBEGokBCAFQQxqIQRBsKkEKAIAIQYgBSIDIAEQnwEgBkEEaiICLAALQQBIBEACfyACKAIAIQggBEEAOgAAIAgLIAQQlgEgBkEANgIIBSAEQQA6AAAgAiAEEJYBIAJBADoACwsgAkEAEIQCIAIgAykCADcCACACIAMoAgg2AgggA0IANwIAIANBADYCCCADED4gACABEFsEf0EABSACLAALQQBIBH8gAigCAAUgAgsLNgIYIAUkBAvAAQEHfyMEIQUjBEEQaiQEIAVBDGohBEGwqQQoAgAhBiAFIgMgARCfASAGQRBqIgIsAAtBAEgEQAJ/IAIoAgAhCCAEQQA6AAAgCAsgBBCWASAGQQA2AhQFIARBADoAACACIAQQlgEgAkEAOgALCyACQQAQhAIgAiADKQIANwIAIAIgAygCCDYCCCADQgA3AgAgA0EANgIIIAMQPiAAIAEQWwR/QQAFIAIsAAtBAEgEfyACKAIABSACCws2AhwgBSQECx8AIAFBFUkEfyAAQSxqIAFBAnRqIAI2AgBBAQVBAAsLJwEBfyMEIQIjBEEQaiQEIAIgARCPASAAQbjtASACEAQ2AgAgAiQECzQBAn8jBCECIwRBEGokBCACIgMgASgCjAEiATYCACABBEAgACADEIwOBSAAEJ4BCyACJAQLNAECfyMEIQIjBEEQaiQEIAIiAyABKAKYASIBNgIAIAEEQCAAIAMQgwMFIAAQngELIAIkBAs9AQN/IwQhAiMEQRBqJAQgAkEBaiEDIAIhBCAAIAEQWwR/QQAFIAMgBCwAADoAACABEJ0FCzYCmAEgAiQECyQBAX8jBCECIwRBEGokBCACIAFBnAFqNgIAIAAgAhB7IAIkBAskAQF/IwQhAiMEQRBqJAQgAiABQaQBajYCACAAIAIQeyACJAQLJAEBfyMEIQIjBEEQaiQEIAIgAUGsAWo2AgAgACACEHsgAiQECyQBAX8jBCECIwRBEGokBCACIAFB6AFqNgIAIAAgAhB7IAIkBAsgACABQQVJBH8gASAAQfABamogAkEBcToAAEEBBUEACwshACABQYAESQR/IAEgAEGEAmpqIAJBAXE6AABBAQVBAAsLIAAgAUEVSQR/IABBhAZqIAFBAnRqIAI4AgBBAQVBAAsLJAEBfyMEIQIjBEEQaiQEIAIgAUH4Bmo2AgAgACACEHsgAiQEC/ACAgt/AX4jBCEFIwRBIGokBEGYqQQoAgAiAkH0M2ooAgAiAAR/QQAgACAAKAIIQYAEcRsFQQALIQAgBSEGIAVBEGohAyAFQQhqIgcgAkHkKmoiBCkCACILNwMAIAIsAL8BBEAgA0MAAIBAQwAAgEAQMiAGIAQgAxCmAQUgBiALNwMACyACQZwzagJ/AkAgAkHUMmoiCCgCACIEQQBKBEACQCACQfABaiEJA0ACQCAIIARBf2oiChBQKAIAIgEsAHoEQCABLACBAUUEQCABKAIIQYAEcUUEQCADIAEpAtwDNwIAIAMgASkC5AM3AgggASgCCEGCgIAIcQRAIAMgBxDQAgUgAyAGENACCyAAIAEgABshASADIAkQmgUEQCABDQRBACEACwsLCyAEQQFMDQIgCiEEDAELCyACQZgzaiABNgIAIAEhAAwCCwsgAkGYM2ogADYCACAABH8MAQVBAAsMAQsgACgC8AULNgIAIAUkBAs8AQJ/IwQhAyMEQRBqJAQgAyEEIAJBBUkEQCAEIAFBiAdqIAJBA3RqNgIAIAAgBBB7BSAAEJQBCyADJAQLHwAgAUEVSQR9IABB0ChqIAFBAnRqKgIABUMAAIC/CwsgACABQYAESQR9IABB0AhqIAFBAnRqKgIABUMAAIC/CwsfACABQQVJBH0gAEHsB2ogAUECdGoqAgAFQwAAgL8LCwsAIAAgASACEJkOCwkAIAAgARCXDgs1AQF/IwQhAyMEQRBqJAQgACgCACEAIAMgAhBMIAEgAyAAQf8BcUHyBmoRAQAgAxA+IAMkBAsaACAAIAEsAAtBAEgEfyABKAIABSABCxD8CwudBAEIf0GYqQQoAgAhABCYDhD/AiIBQQBHIgYEQCAAQZwzaiICKAIAIgMEQCADIAEQlwVFBEAgAEGYM2pBADYCACACQQA2AgALCwsgACgCCEEQcQRAIABBnDNqQQA2AgAgAEGYM2oiBEEANgIABSAAQZgzaiEECyAAQZw0aiEFQQAhAkEAIQNBfyEBA0AgAiAAQeAHamosAAAEQCACIABB7wdqaiAEKAIABH9BAQUgBRB+QQFzC0EBcToAAAsgAiAAQfgBamosAAAiB0H/AXEgA0EBcXJBAEchAyAHBEACQCABQX9HBEAgAEG4B2ogAkEDdGorAwAgAEG4B2ogAUEDdGorAwBjRQ0BCyACIQELCyACQQFqIgJBBUcNAAsgAEHUOGosAAAEfyAAQdg4aigCAEEQcUEARwVBAAsgAUF/RgR/QQEFIAEgAEHvB2pqLAAAQQBHCyIBckUEQCAAQZwzakEANgIAIARBADYCAAsgAEHQ3ABqKAIAIgJBf0YEQCAAAn8CQCABRQ0AIAQoAgBBAEcgA3JFDQBBAQwBCyAFEH5BAXNBAXELOgDgBgUgACACQQBHOgDgBgsgACAAQdTcAGooAgAiAUF/RgR/IABBtDNqKAIAQQBHIAZyBSABQQBHC0EBcToA4QYgACwA5QYEQCAAKAIIQQlxQQFGBEAgAEEBOgDhBgsLIAAgAEHY3ABqKAIAQQFqQQFLOgDiBgsXACABIAIgAyAAKAIAQQNxQbYCahEiAAsLACAAIAEgAhCWDgs1AgF/An0jBCEDIwRBEGokBCADIAEgAiAAKAIAQR9xQShqEQgAOAIAIAMqAgAhBSADJAQgBQsfACABQRVJBH0gAEGEBmogAUECdGoqAgAFQwAAAAALCwsAIAAgASACEJUOCx0AIAFBgARJBH8gASAAQYQCamosAABBAEcFQQALCwsAIAAgASACEJQOCxYAIAEgAiAAKAIAQf8AcUG0AWoRAAALHAAgAUEFSQR/IAEgAEHwAWpqLAAAQQBHBUEACwsJACAAIAEQkw4LEQBBsKkEKAIAQTRqIAEQiAELEAAgAEGwqQQoAgBBNGoQbwsRAEGwqQQoAgBBMGogARCIAQsQACAAQbCpBCgCAEEwahBvCxEAQbCpBCgCAEEsaiABEIgBCxAAIABBsKkEKAIAQSxqEG8LCQAgACABEJIOCwkAIAAgARCRDgsJACAAIAEQkA4LCQAgACABEI8OCwkAIAAgARCODgsJACAAIAEQjQ4LEQBBsKkEKAIAQRxqIAEQiAELEAAgAEGwqQQoAgBBHGoQbwsLACAAIAEgAhCLDgs1AQJ/IwQhAyMEQRBqJAQgAyABIAIgACgCAEH/AHFBtAFqEQAANgIAIAMoAgAhBCADJAQgBAsbACABQRVJBH8gAEEsaiABQQJ0aigCAAVBfwsLCQAgACABEIoOCxgAIAEoAhwiAQRAIAAgARB3BSAAEJ4BCwsJACAAIAEQiQ4LGAAgASgCGCIBBEAgACABEHcFIAAQngELCxAAIAAEQCAAELwGIAAQVAsLBgBBmO0BC5AWAQp/IwQhACMEQRBqJARBmO0BQYjtAUGA7gFBAEG40wJBJEHn2wJBAEHn2wJBAEH42wJBy9YCQYcBEAUgAEEANgIAQZjtAUGA3AJBuPYBQdrJAkEpIAAQM0G49gFB480CQRQgABAzEAAgAEEENgIAQZjtAUGM3AJBuPYBQdrJAkEpIAAQM0G49gFB480CQRQgABAzEABBmO0BQZncAkHQ6QFB2skCQSpBOBBLQQBBAEEAQQAQACAAQRA2AgBBmO0BQaXcAkHY9gFBtNMCQQUgABAzQdj2AUGv0wJBBCAAEDMQACAAQRQ2AgBBmO0BQa/cAkHY9gFBtNMCQQUgABAzQdj2AUGv0wJBBCAAEDMQAEGY7QFBvdwCQdDpAUHayQJBKkE5EEtB0OkBQePNAkEVQToQSxAAQZjtAUHJ3AJB0OkBQdrJAkEqQTsQS0HQ6QFB480CQRVBPBBLEAAgAEEgNgIAQZjtAUHV3AJB2PYBQbTTAkEFIAAQM0HY9gFBr9MCQQQgABAzEAAgAEEkNgIAQZjtAUHq3AJB2PYBQbTTAkEFIAAQM0HY9gFBr9MCQQQgABAzEAAgAEEoNgIAQZjtAUGC3QJB2PYBQbTTAkEFIAAQM0HY9gFBr9MCQQQgABAzEAAgAEErNgIAQZjtAUGV3QJBA0GA/wFBmssCAn9BKiEDQQQQPyIBIAAoAgA2AgAgAwsgAUEAEAEgAEErNgIAQZjtAUGj3QJBBEGg1QFBicsCAn9BFyEEQQQQPyIBIAAoAgA2AgAgBAsgAUEAEAEgAEGAATYCAEGY7QFBsd0CQdj2AUG00wJBBSAAEDNB2PYBQa/TAkEEIAAQMxAAIABBhAE2AgBBmO0BQcDdAkHY9gFBtNMCQQUgABAzQdj2AUGv0wJBBCAAEDMQAEGY7QFBzt0CQdDpAUHayQJBKkE9EEtB0OkBQePNAkEVQT4QSxAAQZjtAUHX3QJB0OkBQdrJAkEqQT8QS0EAQQBBAEEAEAAgAEGQATYCAEGY7QFB3d0CQdj2AUG00wJBBSAAEDNB2PYBQa/TAkEEIAAQMxAAIABBlAE2AgBBmO0BQe3dAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQAEGY7QFBgt4CQdDpAUHayQJBKkHAABBLQdDpAUHjzQJBFUHBABBLEABBmO0BQY7eAkHQ6QFB2skCQSpBwgAQS0EAQQBBAEEAEABBmO0BQabeAkHQ6QFB2skCQSpBwwAQS0EAQQBBAEEAEABBmO0BQbjeAkHQ6QFB2skCQSpBxAAQS0EAQQBBAEEAEAAgAEG0ATYCAEGY7QFByt4CQYj2AUHayQJBLCAAEDNBiPYBQePNAkEWIAAQMxAAIABBtQE2AgBBmO0BQdreAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQACAAQbYBNgIAQZjtAUHw3gJBiPYBQdrJAkEsIAAQM0GI9gFB480CQRYgABAzEAAgAEG3ATYCAEGY7QFBi98CQYj2AUHayQJBLCAAEDNBiPYBQePNAkEWIAAQMxAAIABBuAE2AgBBmO0BQajfAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQAEGY7QFByt8CQdDpAUHayQJBKkHFABBLQdDpAUHjzQJBFUHGABBLEABBmO0BQd3fAkHQ6QFB2skCQSpBxwAQS0HQ6QFB480CQRVByAAQSxAAQZjtAUHw3wJB0OkBQdrJAkEqQckAEEtB0OkBQePNAkEVQcoAEEsQAEGY7QFBguACQdDpAUHayQJBKkHLABBLQQBBAEEAQQAQACAAQS02AgBBmO0BQYvgAkEDQfT+AUGaywJBLCAAEDNBABABIABBLTYCAEGY7QFBnOACQQRBkNUBQYnLAkEYIAAQM0EAEAEgAEH4ATYCAEGY7QFBreACQdj2AUG00wJBBSAAEDNB2PYBQa/TAkEEIAAQMxAAIABBgAI2AgBBmO0BQbjgAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQACAAQYECNgIAQZjtAUHA4AJBiPYBQdrJAkEsIAAQM0GI9gFB480CQRYgABAzEAAgAEGCAjYCAEGY7QFByeACQYj2AUHayQJBLCAAEDNBiPYBQePNAkEWIAAQMxAAIABBgwI2AgBBmO0BQdDgAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQACAAQS42AgBBmO0BQdngAkEDQfT+AUGaywJBLCAAEDNBABABIABBLjYCAEGY7QFB6eACQQRBkNUBQYnLAkEYIAAQM0EAEAEgAEEGNgIAQZjtAUH54AJBA0G8/gFBvuQCQQEgABAzQQAQASAAQQI2AgBBmO0BQYrhAkEEQYDVAUG45AICf0EBIQVBBBA/IgEgACgCADYCACAFCyABQQAQASAAQcwANgIAIABBADYCBEGY7QFBm+ECQQNB6P4BQePNAgJ/QRchBkEIED8hASAAKAIEIQIgASAAKAIANgIAIAEgAjYCBCAGCyABQQAQASAAQc0ANgIAQZjtAUGt4QJBA0Hc/gFB480CAn9BGCEHQQQQPyIBIAAoAgA2AgAgBwsgAUEAEAEgAEGIATYCACAAQQA2AgRBmO0BQcThAkECQdT+AUG70wICf0HOACEIQQgQPyEBIAAoAgQhAiABIAAoAgA2AgAgASACNgIEIAgLIAFBABABIABB2AY2AgBBmO0BQdnhAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQACAAQdkGNgIAQZjtAUHq4QJBiPYBQdrJAkEsIAAQM0GI9gFB480CQRYgABAzEAAgAEHaBjYCAEGY7QFB/uECQYj2AUHayQJBLCAAEDNBiPYBQePNAkEWIAAQMxAAIABB2wY2AgBBmO0BQYziAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQACAAQdwGNgIAQZjtAUGc4gJBiPYBQdrJAkEsIAAQM0GI9gFB480CQRYgABAzEAAgAEHdBjYCAEGY7QFBsOICQYj2AUHayQJBLCAAEDNBiPYBQePNAkEWIAAQMxAAIABB3gY2AgBBmO0BQbriAkGI9gFB2skCQSwgABAzQYj2AUHjzQJBFiAAEDMQACAAQeAGNgIAQZjtAUHF4gJB2PYBQbTTAkEFIAAQM0HY9gFBr9MCQQQgABAzEAAgAEHkBjYCAEGY7QFBz+ICQbj2AUHayQJBKSAAEDNBuPYBQePNAkEUIAAQMxAAIABB6AY2AgBBmO0BQeXiAkG49gFB2skCQSkgABAzQbj2AUHjzQJBFCAAEDMQACAAQewGNgIAQZjtAUH64gJBuPYBQdrJAkEpIAAQM0G49gFB480CQRQgABAzEAAgAEHwBjYCAEGY7QFBj+MCQbj2AUHayQJBKSAAEDNBuPYBQePNAkEUIAAQMxAAIABB9AY2AgBBmO0BQaTjAkG49gFB2skCQSkgABAzQbj2AUHjzQJBFCAAEDMQAEGY7QFBveMCQdDpAUHayQJBKkHPABBLQQBBAEEAQQAQACAAQRk2AgBBmO0BQcjjAkEDQcj+AUGaywICf0EvIQlBBBA/IgEgACgCADYCACAJCyABQQAQASAAQQc2AgBBmO0BQd/jAkEDQbz+AUG+5AJBASAAEDNBABABIABBCDYCAEGY7QFB+OMCQQNBvP4BQb7kAkEBIAAQM0EAEAEgAEEJNgIAQZjtAUGQ5AJBA0G8/gFBvuQCQQEgABAzQQAQASAAJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEEajYCACAAIAIQeyACJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEUajYCACAAIAIQeyACJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUEcajYCACAAIAIQeyACJAQLIwEBfyMEIQIjBEEQaiQEIAIgAUE0ajYCACAAIAIQeyACJAQLJAEBfyMEIQIjBEEQaiQEIAIgAUHEAGo2AgAgACACEHsgAiQECyQBAX8jBCECIwRBEGokBCACIAFBzABqNgIAIAAgAhB7IAIkBAskAQF/IwQhAiMEQRBqJAQgAiABQdQAajYCACAAIAIQeyACJAQLJAEBfyMEIQIjBEEQaiQEIAIgAUH8AGo2AgAgACACEHsgAiQECyQBAX8jBCECIwRBEGokBCACIAFBhAFqNgIAIAAgAhB7IAIkBAskAQF/IwQhAiMEQRBqJAQgAiABQYwBajYCACAAIAIQeyACJAQLJwEBfyMEIQIjBEEQaiQEIAIgARCPASAAQdDtASACEAQ2AgAgAiQECz0BAn8jBCEDIwRBEGokBCADIQQgAkEwSQRAIAQgAUGgAWogAkEEdGo2AgAgACAEEM4OBSAAEJQBCyADJAQLTwEDfyMEIQQjBEEQaiQEIAQhAyABQTBJBH8gAyACENgBIABBoAFqIAFBBHRqIgAgAykCADcCACAAIAMpAgg3AghBAQVBAAshBSAEJAQgBQtDAQJ/An8gASEEIAAoAgAhASAECyAAKAIEIgBBAXVqIgMgAiAAQQFxBH8gASADKAIAaigCAAUgAQtBB3FB4AZqERsACzoBAn8jBCEEIwRBEGokBCAAKAIAIQAgBCADEDQgASACIAQgAEE/cUHCAmoRBQAhBSAEEDEgBCQEIAULCwAgACABIAIQ0A4LCwAgACABIAIQzw4LxgIBCH8jBCEEIwRBEGokBCAEIQFBmKkEKAIAIgBBtDNqKAIARQRAIABBoDNqKAIARQRAAkAgAEGgNWooAgAiAkUiA0UEQCACLACAAQ0BCyAALADgBwRAAkAgAEGcM2oiAigCAEUEQCADDQEQ/wINAUEAEHQMAQsgAEGYM2ooAgAQwAcgACwAwAEEQCACKAIAIgIoAghBAXFFBEAgASACEJ8EIAEgAEGQB2oQmgVFBEAgAEH0M2pBADYCAAsLCwsLIAAsAOEHBEACQAJAEP8CIgJFIgEgAEHUMmoiBSgCACIDQQFIcg0AIABBmDNqIQYgAyEBA0ACQCAFIAFBf2oiAxBQKAIAIgcgAkYNACABQQJIIAcgBigCAEYiAXINAiADIQEMAQsLDAELIAEEQCAAQZgzaigCACECCwsgAhCZBQsLCwsgBCQECwkAIAAgARDNDgsJACAAIAEQzA4LCQAgACABEMsOCwkAIAAgARDKDgsJACAAIAEQyQ4LCQAgACABEMgOCwkAIAAgARDHDgsQAQF/QaAHED8iABC0BiAACwYAQejsAQuLDAEGfyMEIQAjBEEQaiQEQejsAUHY7AFB8O0BQQBBuNMCQSJB59sCQQBB59sCQQBBwNcCQcvWAkGGARAFQejsAUEBQfT9AUG40wJBI0EWEA8gAEEANgIAQejsAUHL1wJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEABB6OwBQdHXAkHQ6QFB2skCQSdBLhBLQQBBAEEAQQAQACAAQQw2AgBB6OwBQd/XAkHY9gFBtNMCQQQgABAzQdj2AUGv0wJBAiAAEDMQACAAQRA2AgBB6OwBQe7XAkHY9gFBtNMCQQQgABAzQdj2AUGv0wJBAiAAEDMQAEHo7AFB/9cCQdDpAUHayQJBJ0EvEEtBAEEAQQBBABAAQejsAUGN2AJB0OkBQdrJAkEnQTAQS0EAQQBBAEEAEAAgAEEkNgIAQejsAUGe2AJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEAAgAEEoNgIAQejsAUGs2AJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEAAgAEEsNgIAQejsAUG82AJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEAAgAEEwNgIAQejsAUHK2AJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEABB6OwBQdrYAkHQ6QFB2skCQSdBMRBLQQBBAEEAQQAQACAAQTw2AgBB6OwBQefYAkHY9gFBtNMCQQQgABAzQdj2AUGv0wJBAiAAEDMQACAAQcAANgIAQejsAUH12AJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEABB6OwBQYXZAkHQ6QFB2skCQSdBMhBLQQBBAEEAQQAQAEHo7AFBkdkCQdDpAUHayQJBJ0EzEEtBAEEAQQBBABAAQejsAUGi2QJB0OkBQdrJAkEnQTQQS0EAQQBBAEEAEAAgAEHcADYCAEHo7AFBtNkCQdj2AUG00wJBBCAAEDNB2PYBQa/TAkECIAAQMxAAIABB4AA2AgBB6OwBQcLZAkHY9gFBtNMCQQQgABAzQdj2AUGv0wJBAiAAEDMQACAAQeQANgIAQejsAUHU2QJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEAAgAEHoADYCAEHo7AFB4tkCQdj2AUG00wJBBCAAEDNB2PYBQa/TAkECIAAQMxAAIABB7AA2AgBB6OwBQfTZAkHY9gFBtNMCQQQgABAzQdj2AUGv0wJBAiAAEDMQACAAQfAANgIAQejsAUGA2gJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEAAgAEH0ADYCAEHo7AFBjdoCQdj2AUG00wJBBCAAEDNB2PYBQa/TAkECIAAQMxAAIABB+AA2AgBB6OwBQZnaAkHY9gFBtNMCQQQgABAzQdj2AUGv0wJBAiAAEDMQAEHo7AFBp9oCQdDpAUHayQJBJ0E1EEtBAEEAQQBBABAAQejsAUG32gJB0OkBQdrJAkEnQTYQS0EAQQBBAEEAEABB6OwBQczaAkHQ6QFB2skCQSdBNxBLQQBBAEEAQQAQACAAQZQBNgIAQejsAUHj2gJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEAAgAEGYATYCAEHo7AFB9NoCQYj2AUHayQJBKCAAEDNBiPYBQePNAkESIAAQMxAAIABBmQE2AgBB6OwBQYXbAkGI9gFB2skCQSggABAzQYj2AUHjzQJBEiAAEDMQACAAQZwBNgIAQejsAUGV2wJB2PYBQbTTAkEEIAAQM0HY9gFBr9MCQQIgABAzEAAgAEETNgIAQejsAUGq2wJBA0Gw/gFBmssCAn9BKCEDQQQQPyIBIAAoAgA2AgAgAwsgAUEAEAEgAEEpNgIAQejsAUG42wJBBEHw1AFBicsCAn9BFiEEQQQQPyIBIAAoAgA2AgAgBAsgAUEAEAEgAEEENgIAIABBADYCBEHo7AFBxtsCQQNBpP4BQa/TAgJ/QQMhBUEIED8hASAAKAIEIQIgASAAKAIANgIAIAEgAjYCBCAFCyABQQAQASAAJAQLMQEBfyMEIQMjBEEQaiQEIAMgAhCmBSAAIAEoAgBBAUGg/gEgA0GfAxEJABBfIAMkBAstAQF/IwQhAyMEQRBqJAQgAyAANgIAIAMgARB9EPIBIAMgAhCHAxDyASADJAQLMwEBfyMEIQQjBEEgaiQEIAQgAiADEOEOIAAgASgCAEECQZj+ASAEQZ8DEQkAEF8gBCQEC0kBA38jBCEAIwRBEGokBCAAIQJBsKkEKAIAIgNBIGoiBCABEIkFIANBMGoiARBbRQRAIAIgASADQTRqIAQQ4g4gAhAxCyAAJAQL6QEBCH8jBCEEIwRBIGokBCAEQRBqIQUgBEEEaiEBIAQhAkGwqQQoAgAiA0EsaiIAEFsEfyADQSBqIgIhACACQQtqBSACIAAgA0E0ahDgDiABIAIQnwEgA0EgaiIAQQtqIgYsAABBAEgEQAJ/IAAoAgAhCCAFQQA6AAAgCAsgBRCWASADQQA2AiQFIAVBADoAACAAIAUQlgEgBkEAOgAACyAAQQAQhAIgACABKQIANwIAIAAgASgCCDYCCCABQgA3AgAgAUEANgIIIAEQPiACEDEgBgssAABBAEgEQCADKAIgIQALIAQkBCAAC78DAQF/IAAgARDhDzYCACAAQQRqIgFCADcCACABQQA2AgggAUGargRBmq4EEFwQkwEgAEEQaiIBQgA3AgAgAUEANgIIIAFBmq4EQZquBBBcEJMBIABBHGoQngEgAEEgaiIBQgA3AgAgAUEANgIIIAFBmq4EQZquBBBcEJMBIABBLGoQngEgAEEwahCeASAAQTRqEJ4BIABBOGoQlAEgAEE8ahCUASAAQUBrEJQBIABBxABqEJQBIABByABqEJQBIABBzABqEJQBIABB0ABqEJQBIABCADcCVCAAQgA3AlwgAEHYAGpBmq4EQZquBBBcEJMBIABB5ABqEJQBIABB6ABqEJQBIABB7ABqEJQBIABCADcCcCAAQgA3AnggAEH0AGpBmq4EQZquBBBcEJMBIABBgAFqEJQBIABBhAFqEJQBIABCADcCiAEgAEIANwKQASAAQYwBakGargRBmq4EEFwQkwEgAEGYAWoQlAEgAEGcAWoQlAEgAEGgAWoQlAECf0GYqQQoAgAhAiAAKAIAEIoCEMMDIgBBADYCGCAAQQA2AhwgAEEhNgLQASAAQS02AtQBIABBADYC2AEgAgsQigILkwIBA38Cf0GYqQQoAgAhAyAAKAIAEIoCEMMDIgFBADYCGCABQQA2AhwgAUEANgLQASABQQA2AtQBIAFBADYC2AEgAwsQigIgACgCABC2DyAAQQA2AgAgAEGgAWoQMSAAQZwBahAxIABBmAFqEDEgAEGMAWoQPiAAQYQBahAxIABBgAFqEDEgAEH0AGoQPiAAQewAahAxIABB6ABqEDEgAEHkAGoQMSAAQdgAahA+IABB0ABqEDEgAEHMAGoQMSAAQcgAahAxIABBxABqEDEgAEFAaxAxIABBPGoQMSAAQThqEDEgAEE0ahAxIABBMGoQMSAAQSxqEDEgAEEgahA+IABBHGoQMSAAQRBqED4gAEEEahA+CyMAIAAsAAtBAEgEQCAAKAIAIQALIAAgASACIAMgBCAFEM8HCzkBAn8jBCEHIwRBEGokBCAHIAEQTCAHIAIgAyAEIAUgBiAAQR9xQboDahEVACEIIAcQPiAHJAQgCAsDAAELJwEBfyMEIQIjBEEQaiQEIAIgARCPASAAQYjtASACEAQ2AgAgAiQECycBAX8jBCECIwRBEGokBCACIAEQjwEgAEHY7AEgAhAENgIAIAIkBAsnAQF/IwQhAiMEQRBqJAQgAiABEI8BIABB8OwBIAIQBDYCACACJAQLLAEBfyMEIQIjBEEQaiQEIAIgARA0IAIgAEH/AXFB4ARqEQQAIAIQMSACJAQLJAEBfyMEIQEjBEEQaiQEIAEgABCyAiABEGUaIAEQ8AEgASQECyYBAX8jBCEBIwRBEGokBCABIAAQsgIgARBlEP4JIAEQ8AEgASQECz8CAX8CfCMEIQEjBEEQaiQEAnwgACgCAEH0/QEoAgAgAUEEahAGIQMgASABKAIEEF8gAwurGiABEMwBIAEkBAs1AQN/IwQhASMEQRBqJAQgAUEBaiECIAEhAyAAEFtFBEAgAiADLAAAOgAAIAAQ8A4LIAEkBAssAQF/IwQhAiMEQRBqJAQgAiABEEwgAiAAQf8BcUHgBGoRBAAgAhA+IAIkBAvfAQEGfyMEIQQjBEEQaiQEIAQhAEGYqQQoAgAiAUH0M2oiAygCAARAAkAgAUG0M2ooAgAQtAIgAygCACgC8AUhAiABLAD4AQRAIAFB8AFqIgUQlQEEQCAAIAUgAUHQM2oQQAJAAkAgAioCDCAAKgIAXA0AIAIqAhAgACoCBFwNAAwBCyACEIIDIAIgAEEBEL8DCyADKAIAEHQMAgsLEHIgA0EANgIACwUgAUHYM2ooAgAiAARAIAAoAlAiACABQbQzaigCAEYEQCAAELQCIAEsAPgBRQRAEHILCwsLIAQkBAsvAQJ/IwQhASMEQRBqJAQgASAAQf8BcUHgBGoRBAAgARCHAyECIAEQPiABJAQgAgtAAQJ/IwQhAyMEQRBqJAQgACwAC0EASARAIAAoAgAhAAsgAyABELICIAAgAxBlIAIQ6wEhBCADEPABIAMkBCAEC6EBAQd/IwQhBiMEQSBqJAQgBkEIaiIEIAAQwgMgBiIFQanWAhB3An8gBCAFENcBIQggBRAxIAQQMSAICwRAIAQgABCfASAELAALIQACfyAEKAIAIQkgBSABEDcgCQsgBCAAQQBIGyIAEDwgABBeIAUgAiADEPEGIQAgBBA+BQJ/IAAQyAMhCiAEIAEQNyAKCyAEIAIgAxDwBiEACyAGJAQgAAtEAQN/IwQhBSMEQRBqJAQgBUEEaiIGIAEQNCAFIAIQNCAGIAUgAyAEIABBH3FBigNqEQkAIQcgBRAxIAYQMSAFJAQgBwswAQJ/IwQhAiMEQRBqJAQgAkEIaiIDEMkCIAIgARBvIAAgAyACEIEBIAIQMSACJAQLPwECfyMEIQIjBEEQaiQEIAIgARA0IAJBBGoiASACIABB/wFxQfIGahEBACABEH0hAyABEDEgAhAxIAIkBCADCzABAn8jBCECIwRBEGokBCACQQhqIgMQ8AIgAiABEG8gACADIAIQgQEgAhAxIAIkBAsuAgF/An0jBCEBIwRBEGokBCABIABBH3FBBGoRIAA4AgAgASoCACEDIAEkBCADCzwBA38jBCECIwRBEGokBCACQQhqIgMQYCIEQYwEaiAEQQxqEEAgAiABEG8gACADIAIQgQEgAhAxIAIkBAswAQJ/IwQhAiMEQRBqJAQgAkEIaiIDENgGIAIgARBvIAAgAyACEIEBIAIQMSACJAQLQQECfyMEIQIjBEEQaiQEIAJBCGoiA0GYqQQoAgBBlDNqKAIAKQIMNwIAIAIgARBvIAAgAyACEIEBIAIQMSACJAQLNQECfyMEIQIjBEEQaiQEIAJBCGoiAxBgKQIUNwIAIAIgARBvIAAgAyACEIEBIAIQMSACJAQLLQECfyMEIQMjBEEQaiQEIANBCGoiBCAAEDcgAyACEDcgBCABIAMQnAIgAyQECz8BAn8jBCEEIwRBEGokBCAEQQRqIgUgARA0IAQgAxA0IAUgAiAEIABB/wBxQZQJahEHACAEEDEgBRAxIAQkBAsuAQF/IwQhAyMEQRBqJAQgAyABEDQgAyACIABB/wFxQfIGahEBACADEDEgAyQECycBAX8jBCECIwRBEGokBCACIAEQjwEgAEHA7AEgAhAENgIAIAIkBAtIAQN/IwQhASMEQRBqJAQgAUEEaiICIAA2AgBBsKkEKAIAQThqIQMgAUEIaiIAIAIQgw8gASADIAAQyAIgARAxIAAQMSABJAQLBwAgABCEDwtgAQN/IwQhBSMEQRBqJAQgBUEIaiEDIAUhBCACEFsEQCADIAAQNyAEIAEQNyADIARBABCvAwVBsKkEKAIAQThqIAIQiAEgAyAAEDcgBCABEDcgAyAEQYUBEK8DCyAFJAQLXgECfyMEIQUjBEEQaiQEIAVBDGoiBiABEDQgBUEIaiIBIAIQNCAFQQRqIgIgAxA0IAUgBBA0IAYgASACIAUgAEEfcUGoCmoRBgAgBRAxIAIQMSABEDEgBhAxIAUkBAtCAQF/IwQhAyMEQRBqJAQgACwAC0EASARAIAAoAgAhAAsgAyABEDcgAyEBIAAQoQIiAARAIAAgASACEL8DCyADJAQLPwECfyMEIQQjBEEQaiQEIARBBGoiBSABEEwgBCACEDQgBSAEIAMgAEH/AHFBlAlqEQcAIAQQMSAFED4gBCQEC0IBAX8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQNyADIQEgABChAiIABEAgACABIAIQ/QQLIAMkBAswAQF/IwQhBCMEQRBqJAQgBCABEEwgBCACIAMgAEH/AHFBlAlqEQcAIAQQPiAEJAQLKgEBfyMEIQEjBEEQaiQEIAFB7NMCNgIAQeLTAiABELoDIAAQngEgASQECy4BAn8jBCEBIwRBEGokBCABIABB/wFxQeAEahEEACABEH0hAiABEDEgASQEIAILOgEDfyMEIQEjBEEQaiQEIAFBAWohAiABIQMgABBbBH9BAAUgAiADLAAAOgAAIAAQnQULEOQGIAEkBAtZAQR/IwQhAiMEQSBqJAQgAkEIaiIDIAEQwgMgAkGo0wIQdwJ/IAMgAhDXASEFIAIQMSADEDEgBQsEQCAAIAEQyAMQrQoFIAMgARDYASAAIAMQggILIAIkBAsuAQF/IwQhAyMEQRBqJAQgAyACEDQgASADIABB/wFxQfIGahEBACADEDEgAyQEC1cBBH8jBCECIwRBEGokBCACQQhqIgMgARDCAyACQajTAhB3An8gAyACENcBIQUgAhAxIAMQMSAFCwRAIAAgARA9EI4EBSADIAEQNyAAIAMQvgILIAIkBAswAQF/IwQhAiMEQRBqJAQgAkGYqQQoAgBBsCtqIAFBBHRqNgIAIAAgAhDEByACJAQLMAECfyMEIQIjBEEQaiQEIAJBCGoiAxDXBiACIAEQbyAAIAMgAhCBASACEDEgAiQEC0EBAn8jBCEDIwRBEGokBCADIAIQNCADQQRqIgIgASADIABB/wBxQbQBahEAADYCACACKAIAIQQgAxAxIAMkBCAECyMBAn8jBCEBIwRBEGokBCABIAAQ2AEgARDkASECIAEkBCACCxAAQZipBCgCAEHAMmorAwALPgECfyMEIQIjBEEQaiQEIAIgARA0IAJBBGoiASACIABBP3FB7ABqEQMANgIAIAEoAgAhAyACEDEgAiQEIAMLMAECfyMEIQIjBEEQaiQEIAJBCGoiAxCgCiACIAEQbyAAIAMgAhCBASACEDEgAiQECzwBA38jBCECIwRBEGokBCACQQhqIgMQYCIEQdgBaiAEQQxqEEAgAiABEG8gACADIAIQgQEgAhAxIAIkBAswAQJ/IwQhAiMEQRBqJAQgAkEIaiIDENUGIAIgARBvIAAgAyACEIEBIAIQMSACJAQLKAEBfyMEIQMjBEEgaiQEIAMgARBJIAAgAxBIIAIQhAogAxBHIAMkBAswAQF/IwQhBCMEQRBqJAQgBCACEDQgASAEIAMgAEH/AHFBlAlqEQcAIAQQMSAEJAQLLQECfyMEIQEjBEEQaiQEIAEgAEEfcUHMAGoRHQA2AgAgASgCACECIAEkBCACCzACAX8CfSMEIQIjBEEQaiQEIAIgASAAQQNxQSRqERwAOAIAIAIqAgAhBCACJAQgBAtnAQR/IwQhAiMEQRBqJAQgAkEEaiIBIAAQwgMgAkGo0wIQdwJ/IAEgAhDXASEEIAIQMSABEDEgBAsEQCAAEIcBENABBSABIAAQnwEgASgCACABIAEsAAtBAEgbEL0BIAEQPgsgAiQEC38BBH8jBCECIwRBEGokBCACQQRqIgEgABDCAyACQajTAhB3An8gASACENcBIQQgAhAxIAEQMSAECwRAIAAQhwEhAEGYqQQoAgBBlDNqKAIAIAAQiwMhAAUgASAAEJ8BIAEoAgAgASABLAALQQBIGxDRBiEAIAEQPgsgAiQEIAALNAEBfyMEIQEjBEEQaiQEIAAsAAtBAEgEQCAAKAIAIQALIAEgADYCAEHCzAIgARBpIAEkBAs9AQJ/IwQhAyMEQRBqJAQgA0EMaiIEIAEQNCADIAIQTCAEIAMgAEH/AXFB8gZqEQEAIAMQPiAEEDEgAyQEC0MBAn8jBCECIwRBIGokBCACQQhqIgMgABDYASABLAALQQBIBEAgASgCACEBCyACIAE2AgAgA0HCzAIgAhCDBiACJAQLMQEBfyMEIQEjBEEQaiQEIAAsAAtBAEgEQCAAKAIAIQALIAEgADYCACABEIkJIAEkBAsxAQF/IwQhASMEQRBqJAQgACwAC0EASARAIAAoAgAhAAsgASAANgIAIAEQiAkgASQECz0BAn8jBCEDIwRBIGokBCADQQxqIgQgARBMIAMgAhBMIAQgAyAAQf8BcUHyBmoRAQAgAxA+IAQQPiADJAQLRQEBfyMEIQIjBEEQaiQEIAAsAAtBAEgEQCAAKAIAIQALIAEsAAtBAEgEQCABKAIAIQELIAIgATYCACAAIAIQhgkgAiQECzUBAX8jBCEBIwRBEGokBCAALAALQQBIBEAgACgCACEACyABIAA2AgBBwswCIAEQoAEgASQECzYBAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACIAEQNyAAIAIQmQMhAyACJAQgAwtBAQN/IwQhAyMEQRBqJAQgA0EEaiIEIAEQTCADIAIQNCAEIAMgAEH/AHFBtAFqEQAAIQUgAxAxIAQQPiADJAQgBQsvAQJ/IwQhAiMEQRBqJAQgAiABEEwgAiAAQT9xQewAahEDACEDIAIQPiACJAQgAws2AQJ/IwQhAiMEQRBqJAQgACwAC0EASARAIAAoAgAhAAsgAiABEDcgACACEJgDIQMgAiQEIAMLYAEDfyMEIQYjBEFAayQEAn8gABCHASEIIAZBMGoiByABEDcgBkEoaiIBIAIQNyAGQSBqIgIgAxA3IAZBEGoiAyAEENgBIAYgBRDYASAICyAHIAEgAiADIAYQgQkgBiQEC4ABAQJ/IwQhByMEQSBqJAQgB0EUaiIIIAEQNCAHQRBqIgEgAhA0IAdBDGoiAiADEDQgB0EIaiIDIAQQNCAHQQRqIgQgBRA0IAcgBhA0IAggASACIAMgBCAHIABBD3FB6gpqERoAIAcQMSAEEDEgAxAxIAIQMSABEDEgCBAxIAckBAtmAQR/IwQhByMEQUBrJAQCfyAAEIcBIQkgB0EwaiIIIAEQNyAHQShqIgEgAhA3IAdBIGoiAiADEDcgB0EQaiIDIAUQ2AEgByAGENgBIAkLIAggASACIAQgAyAHEIAJIQogByQEIAoLhgEBA38jBCEIIwRBIGokBCAIQRRqIgkgARA0IAhBEGoiASACEDQgCEEMaiICIAMQNCAIQQhqIgMgBBA0IAhBBGoiBCAGEDQgCCAHEDQgCSABIAIgAyAFIAQgCCAAQQ9xQdoDahEUACEKIAgQMSAEEDEgAxAxIAIQMSABEDEgCRAxIAgkBCAKC5EEAQR/IAAoApQBIgEEQCAALAADBEAgAUEAOgAAIAEEQCABEKMGIAEQQQsLCyAAQQA2ApQBIAAsAAAEQCAAQaDYAGosAAAEQCAAKAIgBEACf0GYqQQoAgAhBCAAEIoCIAAoAiAQtgcgBAsQigILCyAAQdQyaiICKAIAQQBKBEBBACEBA0AgAiABEFAoAgAiAwRAIAMQjRIgAxBBCyABQQFqIgEgAigCAEgNAAsLIAIQTyAAQeAyahBPIABB7DJqEE8gAEGUM2pBADYCACAAQfgyahBPIABBhDNqEE8gAEGgNWpBADYCACAAQZgzakEANgIAIABBnDNqQQA2AgAgAEHcM2pBADYCACAAQdgzakEANgIAIABB9DNqQQA2AgAgAEH4M2oQTyAAQYQ0ahBPIABBkDRqEE8gAEGcNGoQTyAAQag0ahBPIABBwDdqIQJBACEBA0AgAUEMbCACahBPIAFBAWoiAUECRw0ACyAAQdw3ahDdBCAAQYTYAGoQTyAAQZA6ahBPIABBnDpqEE8gAEGoOmoQTyAAQcDYAGoiAigCAEEASgRAQQAhAQNAIAIgARBVKAIAEPYHIAFBAWoiASACKAIASA0ACwsgAhBPIABBtNgAahBPIABB0NgAaiICKAIAIgFBzIECKAIARiABRXJFBEAgARDDAhogAkEANgIACyAAQdTYAGoQTyAAQQA6AAALCwsAIAAQngUgABBUC00BAn8jBCECIwRBEGokBCAALAALQQBIBEAgACgCACEACyACQYz8ATYCACACIAE2AgggAhCvBSAAIAJBBGoQ5AMhAyACEJ4FIAIkBCADCwsAIAAQnwUgABBUC08BAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADQfT7ATYCACADIAE2AgggAxDGByAAIANBBGogAhCABiEEIAMQnwUgAyQEIAQLMwAgAEGYqQQoAgAgABsiABCxD0GYqQQoAgAgAEYEQEEAEIoCCyAABEAgABDkCSAAEEELC1QBAn8jBCEDIwRBEGokBCAALAALQQBIBEAgACgCACEACyADIAEQygEgACACIAMQTiIAKAIARhC5AiIBBEAgACACNgIACyABIQQgAxC0ASADJAQgBAtWAgJ/An0jBCEBIwRBEGokBCABQQRqIgIgADYCAEGwqQQoAgAhACABIAIQcSABQQhqIgIgAEE8aiAAQUBrIAEQywcgAhA9IQQgAhAxIAEQMSABJAQgBAsHACABELgPC4kBAgJ/An0jBCEJIwRBMGokBEGwqQQoAgAiCkE8aiABEIgBIApBQGsg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QYAHaiIKEDogAEGwB2ohAyAAQYgHaiEBA0AgARA6IAFBCGoiASADRw0ACyAAQbwIaiEDIABBlAhqIQEDQCABEDogAUEIaiIBIANHDQALIABB+ClqEGggAEEAQYgqEGoaIAJDAACAv0MAAIC/EDIgBSACKQMANwIAIABDiYiIPDgCECAAQwAAoEA4AhQgAEHmhQI2AhggAEHwhQI2AhwgAEOamZk+OAIgIABDAADAQDgCJCAAQSxqIgFCfzcCACABQn83AgggAUJ/NwIQIAFCfzcCGCABQn83AiAgAUJ/NwIoIAFCfzcCMCABQn83AjggAUFAa0J/NwIAIAFCfzcCSCABQX82AlAgAEMAAIA+OAKAASAAQ83MTD04AoQBIABBADYCiAEgAEEANgKMASAAQwAAgD84ApABIABBADYCmAEgAEEAOgCUASACQwAAgD9DAACAPxAyIAYgAikDADcCACACQwAAAABDAAAAABAyIAggAikDACILNwIAIAcgCzcCACAAQQA6ALUBIABBAToAtgEgAEEBOgC3ASAAQQA6ALgBIABCADcCvAEgAEIANwLEASAAQQA2AswBIABBAzYC0AEgAEECNgLUASAAQQA2AtgBIABBAzYC3AEgAEEANgLgASACQ///f/9D//9//xAyIAkgAikDADcCACACQ///f/9D//9//xAyIAogAikDADcCACAAQwAAwEA4AihBACEBA0AgAEGACGogAUECdGpDAACAvzgCACAAQewHaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEFRw0AC0EAIQEDQCAAQdAYaiABQQJ0akMAAIC/OAIAIABB0AhqIAFBAnRqQwAAgL84AgAgAUEBaiIBQYAERw0AC0EAIQEDQCAAQdAoaiABQQJ0akMAAIC/OAIAIAFBAWoiAUEVRw0ACyAEJAQLNAECfyMEIQQjBEEQaiQEIARBCGoiBSABIAIQwgogBCADEG8gACAFIAQQgQEgBBAxIAQkBAtCAQJ/IwQhBCMEQRBqJAQgBCADEDQgBEEEaiIDIAEgAiAEIABBA3FBhglqEQoAIAMQfSEFIAMQMSAEEDEgBCQEIAULKwEBfxDVByIBQZquBCABGyEBIABCADcCACAAQQA2AgggACABIAEQXBCTAQsxAQF/IwQhASMEQRBqJAQgASAAEJ8BIAEoAgAgASABLAAL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C0EASAR/IAAoAgAFIAALIAEQqwgLGAAgACwAC0EASAR/IAAoAgAFIAALEJMKCwkAIAAgARDiEAsqAQJ/An8jBCEBIwRBEGokBEHEvgJBBEHAywFBicsCQRJBFxACIAELJAQLCwAgACABIAIQ4BALCQAgACABEN8QCwsAIAAgASACEN4QCxgAIAAsAAtBAEgEfyAAKAIABSAACxCpAwsJACAAIAEQ3BALGAAgACwAC0EASAR/IAAoAgAFIAALEKsDCyoBAn8CfyMEIQEjBEEQaiQEQem9AkEFQdDLAUG7zAJBDUELEAIgAQskBAsNACAAIAEgAiADENsQCyoBAn8CfyMEIQEjBEEQaiQEQd69AkEFQfDLAUG7zAJBDEEKEAIgAQskBAsNACAAIAEgAiADENoQCxoAIAAsAAtBAEgEfyAAKAIABSAACyABEK8ICwcAIAAQ2RALKgECfwJ/IwQhASMEQRBqJARB6bwCQQRBkMwBQd3NAkECQQEQAiABCyQECwsAIAAgASACENcQCyoBAn8CfyMEIQEjBEEQaiQEQeG8AkEDQez4AUHjzQJBEUEdEAIgAQskBAsqAQJ/An8jBCEBIwRBEGokBEHZvAJBA0H4+AFB480CQRBBHBACIAELJAQLKgECfwJ/IwQhASMEQRBqJARB0bwCQQNBhPkBQePNAkEPQRsQAiABCyQECxoAIAAsAAtBAEgEfyAAKAIABSAACyABELUICyoBAn8CfyMEIQEjBEEQaiQEQbO8AkEEQaDMAUGJywJBEUEVEAIgAQskBAscACAALAALQQBIBH8gACgCAAUgAAsgASACEM8FCwkAIAAgARDVEAsRACAAIAEgAiADIAQgBRDUEAsqAQJ/An8jBCEBIwRBEGokBEGPvAJBBkGwzAFB6M0CQRFBBhACIAELJAQLDwAgACABIAIgAyAEEM0QCw0AIAAgASACIAMQyhALKgECfwJ/IwQhASMEQRBqJARB9bsCQQVB0MwBQbvMAkELQQgQAiABCyQECw0AIAAgASACIAMQyBALCwAgACABIAIQxxALNQEBfyAALAALQQBIBEAgACgCACEACxA8IgIsAH8Ef0EABSACIAAQXiABQRpyIABBABDTAgsLBwAgABC9CAsYACAALAALQQBIBH8gACgCAAUgAAsQvggLKgECfwJ/IwQhASMEQRBqJARB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AAtBAEgEfyAAKAIABSAACyABELkCCyoBAn8CfyMEIQEjBEEQaiQEQc61AkEEQfDSAUGJywJBDkEJEAIgAQskBAsLACAAIAEgAhC1DwsJACAAIAEQsw8LKgECfwJ/IwQhASMEQRBqJARBubUCQQhBgNMBQYfRAkEEQQEQAiABCyQECxMAIAAgASACIAMgBCAFIAYQrw8LKgECfwJ/IwQhASMEQRBqJARBs7UCQQdBoNMBQZ/TAkEBQQQQAiABCyQECxEAIAAgASACIAMgBCAFEK0PCwkAIAAgARCsDwsaACAALAALQQBIBH8gACgCAAUgAAsgARCDCQsYACAALAALQQBIBH8gACgCAAUgAAsQxAQLCQAgACABEKkPC6cEAgF/AX4jBCEBIwRBEGokBCAAEDogAEEIahA6IABBEGoQOiAAQRhqEDogAEEgahA6IABBLGoQOiAAQcwAahBmIABB3ABqEGYgAEGAAWoQOiAAQYgBahBoIABBADYCsAEgAEEANgKsASAAQQA2ArQBIABBuAFqEGggAEHEAWoQaCAAQQA2AtQBIABBADYC0AEgAEEANgLYASAAQegBahDnAiAAQewBahDnAiAAQfABahDnAiABQwAAAABDAAAAABAyIAAgASkDACICNwIYIAAgAjcCECAAIAI3AgggACACNwIAIAFDAAAAAEMAAAAAEDIgACABKQMAIgI3AiwgACACNwIgIABDAAAAADgCNCAAQwAAAAA4AiggAEMAAIC/OAI4IABCADcCPCAAQgA3AkQgARBmIAAgASkCADcCXCAAIAEpAgg3AmQgACABKQIANwJMIAAgASkCCDcCVCAAQQA2AnggAEEANgJ0IABBADYCbCAAQQE2AnAgAEEAOgB8IABBADoAfSAAQQA6AH4gAUMAAAAAQwAAAAAQMiAAIAEpAwA3AoABIABBADYClAEgAEEBNgKcASAAQQE2ApgBIABDAAAAADgCpAEgAEEANgKgASAAQwAAgL84AqgBIABCADcC3AEgAEEANgLkASABEOcCIAAgASgCADYC6AEgARDnAiAAIAEoAgA2AuwBIAEQ5wIgACABKAIANgLwASAAQQA2AvQBIAEkBAsaACAALAALQQBIBH8gACgCAAUgAAtBABC5AQsHACAAEKAPC9AHAgV/AX4jBCEFIwRBEGokBCAFIQMgAEEMahA6IABBFGoQOiAAQRxqEDogAEEkahA6IABBLGoQOiAAQTRqEDogAEE8ahA6IABB2ABqEDogAEHgAGoQOiAAQegAahA6IABB8ABqEDogAEG4AWoQOiAAQcABahA6IABByAFqEMoSIABBwANqIgYiBEEANgIEIARBADYCACAEQQA2AgggAEHMA2oQZiAAQdwDahBmIABB7ANqEGYgAEH8A2oQZiAAQYwEahBmIABBpARqEN4DIABB1ARqEGggAEEANgLkBCAAQQA2AuAEIABBADYC6AQgAEH4BGoiByABQbwxahD4ByAAQagGaiEEIABBiAZqIQEDQCABEGYgAUEQaiIBIARHDQALIAAgAhDaBjYCACAAQQRqIgEgAkEAQQAQuwE2AgAgBiABEHggAEEANgIIIANDAAAAAEMAAAAAEDIgACADKQMANwIMIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AhwgACAINwIUIANDAAAAAEMAAAAAEDIgACADKQMAIgg3AjQgACAINwIsIANDAAAAAEMAAAAAEDIgACADKQMANwI8IABDAAAAADgCRCAAQwAAAAA4AkggACACEFxBAWo2AkwgACAAQf6FAhBeNgJQIABBADYCVCADQwAAAABDAAAAABAyIAAgAykDADcCWCADQ///f39D//9/fxAyIAAgAykDADcCYCADQwAAAD9DAAAAPxAyIAAgAykDADcCaCADQwAAAABDAAAAABAyIAAgAykDADcCcCAAQQA7AYQBIABCADcCeCAAQQA7AYABIABBADoAggEgAEF/OwGGASAAQX87AYgBIABBADYCjAEgAEF/NgKUASAAQX82ApABIABBADoAmAEgAEEANgKcASAAQX82AqABIABBADYCqAEgAEEANgKkASAAQQ82ArQBIABBDzYCsAEgAEEPNgKsASADQ///f39D//9/fxAyIAAgAykDACIINwLAASAAIAg3ArgBIABBfzYCnAQgAEMAAAAAOAKgBCAAQwAAgD84AuwEIABBfzYC8AQgACAHNgL0BCAAIAAoAgA2AqQFIABBADYChAYgAEEANgKABiAAQgA3AuwFIABCADcC9AUgAxBmIAAgAykCADcCmAYgACADKQIINwKgBiAAIAMpAgA3AogGIAAgAykCCDcCkAYgAEEANgL8BSAAQX82AqwGIABBfzYCqAYgAEH/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ICAtICAgICAgICAgIFguWCAgICAgICAgICAtWC4uLi4uWCAgICAgICAgICAtICAgICAgICAgIFguLi4uLlgtICAgIFguLlggICAgICAgICAtLS0gICAgICAgICAtWFhYLlhYWC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtWC4uLi5YICAgICAgICAgICAtICAgICAgICAgICBYLi4uLlgtICAgIFguLlggICAgICAgICBYICAgICAgICAgICAtICBYLlggIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtWC4uLlggICAgICAgICAgICAtICAgICAgICAgICAgWC4uLlgtICAgIFguLlggICAgICAgICBYWCAgICAgICAgICAtICBYLlggIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtWC4uWC5YICAgICAgICAgICAtICAgICAgICAgICBYLlguLlgtICAgIFguLlggICAgICAgICBYLlggICAgICAgICAtICBYLlggIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtWC5YIFguWCAgICAgICAgICAtICAgICAgICAgIFguWCBYLlgtICAgIFguLlhYWCAgICAgICBYLi5YICAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtWFggICBYLlggICAgICAgICAtICAgICAgICAgWC5YICAgWFgtICAgIFguLlguLlhYWCAgICBYLi4uWCAgICAgICAtICBYLlggIC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgWC5YICAgICAgICAtICAgICAgICBYLlggICAgICAtICAgIFguLlguLlguLlhYICBYLi4uLlggICAgICAtICBYLlggIC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgIFguWCAgICAgICAtICAgICAgIFguWCAgICAgICAtICAgIFguLlguLlguLlguWCBYLi4uLi5YICAgICAtICBYLlggIC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICBYLlggICAgICAtICAgICAgWC5YICAgICAgICAtWFhYIFguLlguLlguLlguLlhYLi4uLi4uWCAgICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgWC5YICAgWFgtWFggICBYLlggICAgICAgICAtWC4uWFguLi4uLi4uLlguLlhYLi4uLi4uLlggICAtICBYLlggIC0gICBYLlggICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgIFguWCBYLlgtWC5YIFguWCAgICAgICAgICAtWC4uLlguLi4uLi4uLi4uLlhYLi4uLi4uLi5YICAtICBYLlggIC0gICBYLlggICAtIFguLi5YWFhYWFguWFhYWFhYLi4uWCAtICAgICAgICAgICBYLlguLlgtWC4uWC5YICAgICAgICAgICAtIFguLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uWCAtWFhYLlhYWC0gICBYLlggICAtICBYLi5YICAgIFguWCAgICBYLi5YICAtICAgICAgICAgICAgWC4uLlgtWC4uLlggICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uLi4uLlgtWC4uLi4uWC0gICBYLlggICAtICAgWC5YICAgIFguWCAgICBYLlggICAtICAgICAgICAgICBYLi4uLlgtWC4uLi5YICAgICAgICAgICAtICBYLi4uLi4uLi4uLi4uLlhYLi4uLi4uWFhYWFgtWFhYWFhYWC0gICBYLlggICAtICAgIFhYICAgIFguWCAgICBYWCAgICAtICAgICAgICAgIFguLi4uLlgtWC4uLi4uWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uLlhYLi4uWC4uWCAgICAtLS0tLS0tLS0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtICAgICAgICAgIFhYWFhYWFgtWFhYWFhYWCAgICAgICAgICAtICAgWC4uLi4uLi4uLi4uWCBYLi5YIFguLlggICAtICAgICAgIC1YWFhYLlhYWFgtICAgICAgIFhYWFguWFhYWCAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tICAgIFguLi4uLi4uLi4uWCBYLlggIFguLlggICAtICAgICAgIC1YLi4uLi4uLlgtICAgICAgIFguLi4uLi4uWCAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAtICAgIFguLi4uLi4uLi4uWCBYWCAgICBYLi5YICAtICAgICAgIC0gWC4uLi4uWCAtICAgICAgICBYLi4uLi5YICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICBYLi5YICAgICAgICAgIC0gIFguLi5YICAtICAgICAgICAgWC4uLlggICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAtICAgICBYLi4uLi4uLi5YICAgICAgICAgWFggICAgICAgICAgIC0gICBYLlggICAtICAgICAgICAgIFguWCAgICAgICAgICAtIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAtICAgICBYWFhYWFhYWFhYICAtLS0tLS0tLS0tLS0gICAgICAgIC0gICAgWCAgICAtICAgICAgICAgICBYICAgICAgICAgICAtWC4uLi4uLi4uLi4uLi4uLi4uLi4uLlgtICAgICAgICAgICAtLS0tLS0tLS0tLS0tLS0tLS0gICAgICAgICAgICAgICAgICAgIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIFguLi5YWFhYWFhYWFhYWFhYLi4uWCAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICBYLi5YICAgICAgICAgICBYLi5YICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgWC5YICAgICAgICAgICBYLlggICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAtICAgIFhYICAgICAgICAgICBYWCAgICAtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAQaAiC8xdN10pIyMjIyMjI2hWMHFzJy8jIyNbKSwjIy9sOiQjUTY+IyM1W240Mj5jLVRIYC0+PiMvZT4xMU5OVj1CdigqOi5GP3V1IyhnUlUubzBYR0hgJHZoTEcxaHh0OT9XYCMsNUxzQ3AjLWk+LnIkPCQ2cEQ+TGInOzlDcmM2dGdYbUtWZVUyY0Q0RW8zUi8yKj5dYihNQzskalBmWS47aF5gSVdNOTxMaDJUbFMrZi1zJG82UTxCV0hgWWlVLnhmTHEkTjskMGlSL0dYOlUoamNXMnAvVypxPy1xbW5VQ0k7akhTQWlGV00uUiprVUBDPUdIP2E5d3A4ZiRlLi00XlFnMSlRLUdMKGxmKHIvN0dyUmd3ViVNUz1DI2A4TkQ+UW8jdCdYIyh2I1k5dzAjMUQkQ0lmO1cnI3BXVVBYT3V4WHVVKEg5TSgxPHEtVUUzMSNeLVYnOElSVW83UWYuL0w+PUtlJCQnNUYlKV0wXiMwWEBVLmE8cjpRTHRGc0xjTDYjI2xPaikjLlk1PC1SJktnTHdxSmZMZ04mO1E/Z0leI0RZMnVMaUBeck1sOXQ9Y1dxNiMjd2VnPiRGQmpWUVRTRGdFS25JUzdFTTk+Wlk5dzAjTDs+PiNNeCY0TXZ0Ly9MW01rQSNXQGxLLk4nWzAjN1JMXyYjdytGJUh0RzlNI1hMYE4mLixHTTRQZzstPG5MRU5odng+LVZzTS5NMHJKZkxIMmVUTWAqb0pNSFJDYE5rZmltTTJKLFctalhTOilyMHdLI0BGZ2UkVT5gdydON0cjJCNmQiMkRV4kIzo5OmhrK2VPZS0tNngpRjcqRSU/NzYlXkdNSGVQVy1aNWwnJkdpRiMkOTU2OnJTP2RBI2ZpSzopWXIrYCYjMGpAJ0RiRyYjXiRQRy5MbCtETmE8WENNS0VWKk4pTE4vTipiPSVRNnBpYS1YZzhJJDxNUiYsVmRKZSQ8KDdHO0NrbCcmaEY7OyQ8Xz1YKGIuUlMlJSkjIyNNUEJ1dUUxVjp2JmNYJiMybSMoJmNWXWBrOU9oTE1ibiVzJEcyLEIkQmZEM1gqc3A1I2wsJFIjXXhfWDF4S1glYjVVKltyNWlNZlVvOVVgTjk5aEcpdG0rL1VzOXBHKVhQdWA8MHMtKVdUdChnQ1J4SWcoJTZzZmg9a3RNS24zaik8NjxiNVNrXy8wKF5dQWFOIyhwL0w+JlZaPjFpJWgxUzl1NW9AWWFhVyRlK2I8VFdGbi9aOk9oKEN4MiRsTkVvTl5lKSNDRllAQEk7Qk9RKnNSd1p0WnhSY1U3dVc2Q1hvdzBpKD8kUVtjak9kW1A0ZCldPlJPUE9weFRPN1N0d2kxOjppQjFxKUNfPWRWMjZKOzIsXTdvcCRddVFyQF9WNyRxXiVsUXd0dUhZXT1EWCxuM0wjMFBIRE80Zjk+ZENATz5IQnVLUHBQKkUsTitiM0wjbHBSL01yVEVILklBUWsuYT5EWy5lO21jLnhdSXAuUEheJy9hcVVPLyQxV3hMb1cwW2lMQTxRVDs1SEtEK0BxUSdOUSgzX1BMaEU0OFIucUFQU3dRMC9XSz9aLFt4Py1KO2pRVFdBMFhAS0ooX1k4Ti06L003NDovLVpwS3JVc3M/ZCNkWnFdREFia1UqSnFrTCtud1hAQDQ3YDU+dz00aCg5LmBHQ1JVeEhQZVJgNU1qb2woZFVXeFphKD5TVHJQa3JKaVd4YDVVN0YjLmcqanJvaEdnYGNnOmxTVHZFWS9FVl83SDRROVtaJWNudjtKUVlaNXEubDdaZWFzOkhPSVpPQj9HPE5hbGQkcXNdQF1MPEo3YlIqPmd2Ols3TUkyaykuJzIoJDVGTlAmRVEoLClVXVddK2ZoMTgudnNhaTAwKTtEM0A0a3U1UD9EUDhhSnQrO3FVTV09K2InOEA7bVZpQkt4MERFWy1hdUdsODpQSiZEaitNNk9DXU9eKCgjI11gMGkpZHJUOy03WGA9LUgzW2lnVW5QRy1OWmxvLiNrQGgjPU9yayRtPmE+JC0/VG0kVVYoPyNQNllZIycvIyMjeGU3cS43M3JJMypwUC8kMT5zOSlXLEpyTTdTTl0nLzRDI3YkVWAwI1YuWzA+eFFzSCRmRW1QTWdZMnU3S2goRyVzaUlmTFNvUytNSzJlVE0kPTUsTThwYEEuO19SJSN1W0sjJHg0QUc4LmtLL0hTQj09LSdJZS9RVHRHPy0uKl5OLTRCL1pNXzNZbFFDNyhwN3EpJl0oYDZfYykkLypKTChMLV4oXSR3SU1gZFB0T2RHQSxVMzp3Mk0tMDxxLV1MXz9eKTF2dycuLE1Sc3FWci5MO2FOJiMvRWdKKVBCY1stZj4rV29tWDJ1N2xxTTJpRXVtTVRjc0Y/LWFUPVotOTdVRW5YZ2xFbjFLLWJuRU9gZ3VGdChjJT07QW1fUXNAakxvb0kmTlg7XTAjajQjRjE0O2dsOC1HUXBnd2hycTgnPWxfZi1iNDknVU9xa0x1Ny0jI29EWTJMKHRlK01jaCZnTFl0SixNRXRKZkxoJ3gnTT0kQ1MtWlolUF04Ylo+I1M/WVkjJVEmcSczXkZ3Jj9EKVVETnJvY00zQTc2Ly9vTD8jaDdnbDg1W3FXL05ET2slMTZpajsrOjFhJ2lOSWRiLW91OC5QKncsdjUjRUkkVFdTPlBvdC1SKkgnLVNFcEE6ZylmK08kJSVga0EjRz04Uk1tRzEmT2A+dG84YkNdVCYkLG4uTG9PPjI5c3AzZHQtNTJVJVZNI3E3J0RIcGcrI1o5JUhbSzxMJWEyRS1ncldWTTNAMj0tazIydExdNCQjIzZXZSc4VUpDS0VbZF89JXdJOyc2WC1Hc0xYNGpeU2dKJCMjUip3LHZQM3dLI2lpVyYjKmheRCZSP2pwNysvdSYjKEFQIyNYVThjJGZTWVctSjk1Xy1EcFtnOXdjTyYjTS1oMU9jSmxjLSp2cHcweFVYJiNPUUZLTlhAUUknSW9QcDduYixRVS8vTVEmWkRrS1ApWDxXU1ZMKDY4dVZsJiNjJ1swIyhzMVgmeG0kWSVCNypLOmVEQTMyM2o5OThHWGJBI3B3TXMtamdEJDlRSVNCLUFfKGFONHhvRk1eQEM1OEQwK1ErcTNuMCMzVTFJbkRqRjY4Mi1Tak1YSkspKGgkaHh1YV9LXXVsOTIlJ0JPVSYjQlJSaC1zbGc4S0RscjolTDcxS2E6LkE7JVlVTGpEUG1MPExZczhpI1h3Sk9ZYUtQS2MxaDonOUtlLGcpYiksNzg9STM5Qjt4aVkkYmdHdy0mLlppOUluWER1WWElRypmMkJxN21uOV4jcDF2diUjKFdpLTsvWjVobzsjMjo7JWQmI3g5djY4QzVnP250WDBYKXBUYDslcEIzcTdtZ0dOKTMlKFA4blRkNUw3R2VBLUdMQCslSjN1MjooWWY+ZXRgZTspZiNLbTgmK0RDJEk0Nj4jS3JdXXUtWz05OXR0czEucWIjcTcyZzFXSk84MXErZU4nMDMnZU0+JjFYeFktY2FFbk9qJTJuOCkpLD9JTFI1Xi5JYm48LVgtTXE3W2E4MkxxOkYmI2NlK1M5d3NDSyp4YDU2OUU4ZXcnSGVdaDpzSVsyTE0kW2d1a2EzWlJkNjp0JUlHOjskJVlpSjpOcT0/ZUF3Oy86bm5EcTAoQ1ljTXBHKXFMTjQkIyMmSjxqJFVwSzxRNGExXU11cFdeLXNqXyQlW0hLJSdGIyMjI1FSWko6OlkzRUdsNCdAJUZraUFPZyNwWyMjT2BndWtUZkJIYWdMPExIdyVxJk9WMCMjRj02LzpjaEltMEBlQ1A4WF06a0ZJJWhsOGhnT0BSY0JoUy1AUWIkJSttPWhQRExnKiVLOGxuKHdjZjMvJ0RXLSQubFI/bltuQ0gtZVhPT05USmxoOi5SWUYlMydwNnNxOlVJTUE5NDUmXkhGUzg3QCRFUDJpRzwtbENPJCVjYHVLR0QzckMkeDBCTDhhRm4tLWBrZSUjSE1QJ3ZoMS9SJk9fSjkndW0sLjx0eFtAJXdzSmsmYlVUMmAwdU12N2dnI3FwL2lqLkw1NidobDsuczVDVXJ4ak9NNy0jIy5sK0F1J0EmTzotVDcyTF1QYCY9O2N0cCdYU2NYKnJVLj4tWFR0LCVPVlU0KVMxK1ItI2RnMC9Obj9LdTFeMGYkQipQOlJvd3dtLWAwUEtqWURETSczXWQzOVZaSEVsNCwuaiddUGstTS5oXiY6MEZBQ20kbWFxLSZzZ3cwdDcvNiheeHRrJUx1SDg4RmotZWttPkdBI18+NTY4eDYoT0ZSbC1JWnBgJmIsX1AnJE08Sm5xNzlWc0pXL21XUypQVWlxNzY7XS9OTV8+aExieGZjJG1qYCxPOyYlVzJtYFpoOi8pVWV0dzphSiVdSzloOlRjRl11Xy1TajksVkszTS4qJyYwRFtDYV1KOWdwOCxrQVddJSg/QSVSJGY8LT5adHMnXmtuPS1eQGM0JS1wWTZxSSVKJTFJR3hmTFU5Q1A4Y2JQbFh2KTtDPWIpLDwybU92UDh1cCxVVmYzODM5YWNBV0FXLVc/I2FvL14jJUtZbzhmUlVMTmQyLj4lbV1VSzpuJXIkJ3N3XUo7NXBBb09fIzJtTzNuLCc9SDUoZXRIZypgK1JMZ3Y+PTRVOGd1RCRJJUQ6Vz4tcjVWKiVqKlc6S3Zlai5McCQ8TS1TR1onOitRX2srdXZPU0xpRW8oPGFEL0s8Q0NjYCdMeD4nPzsrK08nPigpakxSLV51NjhQSG04WkZXZStlajhoOjlyNkwqMC8vYyZpSCZSOHBSYkEjS2ptJXVwVjFnOmFfI1VyN0Z1QSModFJoIy5ZNUsrQD8zPC04bTAkUEVuO0o6cmg2P0k2dUc8LWB3TVUnaXJjcDBMYUVfT3RsTWImMSM2VC4jRkRLdSMxTHcldSUrR00rWCdlP1lMZmpNW1ZPME1idUZwNzs+USYjV0lvKTBARiVxN2MjNFhBWE4tVSZWQjxIRkYqcUwoJC9WLDsoa1haZWpXT2A8WzU/P2V3WSgqOT0ld0RjOyx1PCc5dDNXLShIMXRoMytHXXVjUV1rTHM3ZGYoJC8qSkxdQCp0N0J1X0czXzdtcDc8aWFRak9ALmtMZzt4M0IwbHFwN0hmLF5aZTctIyNAL2M1OE1vKDM7a25wMCUpQTc/LVcrZUknbzgpYjxuS253J0hvOEM9WT5wcUI+MGllJmpoWls/aUxSQEBfQXZBLWlRQyg9a3NSWlJWcDdgLj0rTnBCQyVyaCYzXVI6OFhEbUU1XlY4Tyh4PDxhRy8xTiQjRlgkMFY1WTZ4J2FFckkzSSQ3eCVFYHY8LUJZLCklLT9Qc2YqbD8lQzMubU0oPS9NMDpKeEcnPzdXaEglbydhPC04MGcwTkJ4b08oR0g8ZE1dbi4rJXFAakg/Zi5Vc0oyR2dzJjQ8LWU0NyZLbCtmLy85QGBiKz8uVGVOXyZCOFNzP3Y7XlRyaztmI1l2SmtsJnckXT4tK2s/Jyg8Uzo2OHRxKldvRGZadSc7bU0/OFhbbWE4VyUqYC09O0QuKG5jNy87KWc6VDE9XkokJkJSVigtbFRtTkI2eHFCW0AwKm8uZXJNKjxTV0ZddTI9c3QtKig2dj5eXShILmFSRVpTaSwjMTpbSVhhWkZPbTwtdWkjcVVxMiQjI1JpO3U3NU9LIyhSdGFXLUstRmBTK2NGXXVOYC1LTVElclAvWHJpLkxSY0IjIz1ZTDNCZ00vM01EP0BmJjEnQlctKUp1PEwyNWdsOHVoVm0xaEwkIyMqOCMjIydBMy9Ma0tXKyhecldYPzVXXzhnKWEobSZLOFA+I2JtbVdDTWtrJiNUUmBDLDVkPmcpRjt0LDQ6QF9sOEcvNWg0dlVkJSYlOTUwOlZYRCdRZFdvWS1GJEJ0VXdtZmUkWXFMJzgoUFdYKFA/XkBQbzMkIyNgTVNzP0RXQlovUz4rNCU+ZlgsVld2L3cnS0RgTFA1SWJIO3JUVj5uM2NFSzhVI2JYXWwtL1YrXmxqMzt2bE1iJls1WVE4I3Bla1g5SlAzWFVDNzJMLCw/K05pJmNvN0Fwbk8qNU5LLCgoVy1pOiQsa3AnVURBTyhHMFNxN01WakpzYkl1KSdaLCpbPmJyNWZYXjpGUEFXci1tMktnTDxMVU4wOThrVEYmI2x2bzU4PS92akRvOy47KUthKmhMUiMvaz1yS2J4dVZgPlFfbk42Jzh1VEcmIzFUNWcpdUx2Ojg3M1VwVExnSCsjRmdwSCdfbzE3ODBQaDhLbXhRSjgjSDcyTDRANzY4QFRtJlFoNENCLzVPdm1BJixRJlFiVW9pJGFfJTNNMDFIKTR4N0leJktRVmd0Rm5WKztbUGM+W200ay8vLF0xPyNgVllbSnIqMyYmc2xSZkxpVlpKOl0/PUszU3c9WyQ9dVJCPzN4azQ4QGFlZzxaJzwkIzRIKTYsPmUwalQ2J04jKHElLk89PzJTXXUqKG08LVY4SicoMSlHXVs2OGhXJDUncVtHQyY1amBURT9tJ2VzRkdOUk0paixmZlo/LXF4ODstPmc0dCo6Q0lQL1tRYXA3LzknIygxc2FvN3ctLnFOVWRrSil0Q0YmI0JeO3hHdm4ycjlGRVBGRkZjTEAuaUZOa1R2ZSRtJSNRdlFTOFVAKTJaKzNLOkFLTTVpc1o4OCtkS1EpVzY+SiVDTDxLRT5gLmQqKEJgLW44RDlvSzxVcF1jJFgkKCwpTThadDcvW3Jka3FUZ2wtMGN1R012Jz8+LVhWMXFbJy01aydjQVo2OWU7RF8/JFpQUCZzXis3XSkkKiQjQFFZaTksNVAmIzlyKyQlQ0U9Njg+SzhyMD1kU0MlJShAcDcubTdqaWxRMDInMC1WV0FnPGEvJyczdS49NEwkWSk2ay9LOl9bMz0manZMPEwwQy8yJ3Y6XjstRElCVyxCNEU2ODprWjslPzgoUThCSD1rTzY1Qlc/eFNHJiNAdVUsRFMqLD8uKyhvKCMxdkNTOCNDSEY+VGxHVydiKVRxN1ZUOXFeKl4kJC46Jk5AQCQmKVdIdFBtKjVfck8wJmUlSyYjLTMwaihFNCMnWmIuby8oVHBtJD5LJ2ZAW1B2RmwsaGZJTlROVTZ1JzBwYW83JVhVcDldNS4+JWhgOF89VllieHVlbC5OVFNzSmZMYWNGdTNCJ2xRU3UvbTYtT3FlbThUK29FLS0kMGEva111ajlFd3NHPiV2ZVIqaHZeQkZwUWo6SycjU0osc0ItJyNdKGouTGc5MnJUdy0qbiVALzszOXJySkYsbCNxViVPcnRCZUM2Lyw7cUIzZWJOV1s/LEhxajJMLjFOUCZHalVSPTFEOFFhUzNVcCZAKjl3UD8rbG83Yj9AJSdrNGBwMFokMjIlSzMraUNaaj9YSk40Tm0mK1lGXXVALVckVSVWRVEvLCw+PiMpRDxoI2ApaDA6PFE2OTA5dWErJlZVJW4yOmNHM0ZKLSVAQmotRGdMcmBIdyZIQUtqS2pzZUs8L3hLVCopQixOOVgzXWtyYzEydCdwZ1RWKEx2LXRMW3hnXyU9TV9xN2FeeD83VWJkPiMlOGNZI1laPz0sYFdkeHUvYWUmI3c2KVI4OXRJIzZAcycoNkJmN2EmP1M9XlpJX2tTJmFpYCY9dEU3MkxfRCw7XlIpN1skczxFaCNjJilxLk1YSSUjdjlST2E1RlpPJXNGN3E3TndiJiNwdFVKOmFxSmUkU2w2OCUuRCMjI0VDPjw/LWFGJiNSTlF2Pm84bEtOJTUvJCh2ZGZxNytlYkEjdTFwXW92VUtXJlklcV0nPiQxQC1beGZuJDdaVHA3bU0sRyxLbzdhJkd1JUdbUk14SnNbME1NJXdjaS5MRkRLKSg8Y2BROE4pakVJRiorP1AyYThnJSkkcV1vMmFIOEMmPFNpYkMvcSwoZTp2Oy1iIzZbJE50RFo4NEplMktOdkIjJFA1P3RRM250KDBkPWouTFFmLi9MbDMzKyg7cTNMLXc9OGRYJCNXRiZ1SUpALWJmST4lOl9pMkI1Q3NSOCY5WiYjPW1QRW5tMGZgPCZjKVFMNXVKIyV1JWxKaitELXI7Qm9GJiM0RG9TOTdoNWcpRSNvOiZTNHdlREYsOV5Ib2VgaCpMK19hKk5yTFctMXBHXyYyVWRCODZlJUIvOj0+KU40eGVXLip3ZnQtOyQnNTgtRVNxcjxiP1VJKF8lQFtQNDY+I1VgJzZBUV1tJjYvYFo+I1M/WVkjVmM7cjdVMiYzMjZkPXcmSCMjIyM/VFpgKjQ/Ji5NSz9MUDhWeGc+JFtRWGMlUUp2OTIuKERiKkIpZ2IqQk05ZE0qaEpNQW8qYyYjYjB2PVBqZXJdJGdHJkpYRGYtPidTdHZVNzUwNWw5JEFGdmdZUkleJjxeYjY4P2ojcTlRWDRTTSdSTyMmc0wxSU0uckpmTFVBajIyMV1kIyNEVz1tODN1NTsnYll4LCpTbDBoTChXOzskZG9CJk8vVFE6KFpeeEJkTGpMPExuaTsnJ1guYCQjOCsxR0Q6ayRZVVdzYm44b2doNnJ4WjJaOV0lbmQrPlYjKjhVXzcyTGgrMlE4Q2owaTo2aHAmJEMvOnAoSEs+VDhZW2dIUTRgNCknJEFiKE5vZiVWJzhoTCYjPE5FZHRnKG4nPVMxQShRMS9JJjQoWyVkTWAsSXUnMTpfaEw+U2ZEMDcmNkQ8ZnA4ZEhNNy9nK3RsUE45SipyS2FQY3QmPyd1QkNlbV5qbiU5X0spPCxDNUszcz01ZyZHbUpiKltTWXE3SztUUkxHQ3NNLSQkO1MlOllAcjdBSzBwcHJwTDxMcmgscTdlLyVLV0s6NTBJXittJ3ZpYDM/JVpwKzwtZCskTC1TdjpALm8xOW4kczAmMzk7a247UyVCU3EqJDNXb0pTQ0x3ZVZbYVonTVFJak88NztYLVg7JitkTUx2dSNeVXNHRUM5V0VjW1god0k3IzIuKEYwalYqZVpmPC1RdjNKLWMrSjVBbHJCIyRwKEg2OEx2RUEncTNuMCNtLFtgKjhGdClGY1lnRXVkXUNXZm02OCwoYUxBJEBFRlRnTFhvQnEvVVBscDc6ZFsvO3JfaXg9OlRGYFM1SC1iPExJJkhZKEs9aCMpXUxrJEsxNGxWZm06eCRIPDNeUWw8TWAkT2hhcEJua3VwJ0QjTCRQYl9gTipnXTJlO1gvRHRnLGJzaiZLIzJbLTppWXInX3dnSClOVUlSOGExbiNTP1llaidoOF41OFViWmQrXkZLRCpUQDs2QTdhUUNbSzhkLSh2NkdJJHg6VDwmJ0dwNVVmPkBNLipKOjskLXJ2MjknTV04cU12LXRMcCwnODg2aWFDPUhiKllKb0tKLChqJUs9SGBLLnY5SGdncUJJaVp1J1F2QlQuIz0pMHVrcnVWJi4pMz0oXjFgbypQajQ8LTxhTigoXjcoJyNaMHdLIzVHWEA3dV1bYCpTXjQzOTMzQTRybF1bYCpPNENnTEVsXXYkMVEzQWVGMzdkYlhrLC4pdmojeCdkYDtxZ2JRUiVGVywyKD9MTz1zJVNjNjglTlAnIyNBb3RsOHg9QkUjajFVRChbMyRNKF1VSTJMWDNScEtOQDsvI2YnZi8mX210JkYpWGRGPDl0NClRYS4qa1RMd1EnKFRUQjkueEgnPiNNSitnTHE5LSMjQEh1WlBOMF11Omg3LlQuLkc6OyQvVXNqKFQ3YFE4dFQ3MkxuWWw8LXF4ODstSFY3US0mWGR4JTFhLGhDPTB1K0hsc1Y+bnVJUUwtNTxOPylOQlMpUU4qX0ksPyYpMidJTSVMM0kpWCgoZS9kbDImOCc8TTpeI00qUStbVC5YcmkuTFlTM3YlZkZgNjhoO2ItWFsvRW4nQ1IucTdFKXAnL2tsZTJITSx1O14lT0tDLU4rTGwlRjlDRjxOZideI3QyTCw7MjdXOjBPQDYjI1U2Vzc6JHJKZkxXSGokIyl3b3FCZWZJWi5QSzxiKnQ3ZWQ7cCpfbTs0RXhLI2hAJl0+Xz5Aa1hRdE1hY2ZELm0tVkFiODtJUmVNMyR3ZjAnJ2hyYSpzbzU2OCdJcCZ2UnM4NDknTVJZU3AlOnQ6aDVxU2d3cEVyJEI+USw7cyhDIyQpYHN2UXVGJCMjLUQsIyMsZzY4QDJbVDsuWFNkTjlRZSlycHQuX0stIzV3RilzUCcjI3AjQzBjJS1HYiVoZCs8LWonQWkqeCYmSE1rVF1DJ09TbCMjNVJHW0pYYUhOO2QndUEjeC5fVTsuYFBVQChaM2R0NHIxNTJAOnYsJ1IuU2ondyMwPC07a1BJKUZmSiYjQVlKJiMvLyk+LWs9bT0qWG5LJD49KTcyTF0wSSU+Lkc2OTBhOiQjIzwsKTs/OzcyIz94OStkO15WJzk7allAOyliciNxXllRcHg6WCNUZSRaXic9LT1iR2hMZjpENiZiTndaOS1aRCNuXjlIaExNcjVHOyddZCY2J3dZbVRGbUw8TEQpRl4lW3RDJzg7KzlFI0MkZyUjNVk+cTl3ST5QKDltSVs+a0MtZWtMQy9SJkNIK3MnQjtLLU02JEVCJWlzMDA6K0E0Wzd4a3MuTHJOazAmRSl3SUxZRkAyTCcwTmIkK3B2PCgyLjc2OC9GclkmaCReM2kmQCtHJUpUJzwtLHZgMztfKUk5TV5BRV1DTj9DbDJBWmcrJTRpVHBUMzxuLSYlSCViPEZEajJNPGhIPSZFaDwyTGVuJGIqYVRYPS04UXhOKWsxMUlNMWNeaiU5czxMPE5GU28pQj8rPC0oR3hzRixeLUVoQCQ0ZFhoTiQrI3J4SzgnamUnRDdrYGU7KTJwWXdQQSdfcDkmQF4xOG1sMV5bQGc0dCpbSk9hKls9UXA3KHFKX29PTF4oJzdmQiZIcS06c2Ysc05qOHhxXj4kVTRPXUdLeCdtOSliQHA3WXN2SzN3XllSLUNkUSo6SXI8KCR1JikjKCY/TDlSZzNIKTRmaUVwXmlJOU84S25UaixdSD9EKnI3J007UHdaOUswRV5rJi1jcEk7LnAvNl92d29GTVY8LT4jJVhpLkx4Vm5yVSg0JjgvUCs6aExTS2okI1UlXTQ5dCdJOnJnTWknRkxAYTowWS11QVszOScsKHZibWEqaFUlPC1TUkZgVHQ6NTQyUl9WViRwQFtwOERWW0EsPzE4MzlGV2RGPFRkZEY8OUFoLTYmOXRXb0RsaF0mMVNwR01xPlRpMU8qSCYjKEFMOFtfUCUuTT52Xi0pKXFPVCpGNUNxMGBZZSUrJEI2aTo3QDBJWDxOK1QrME1sTUJQUSpWaj5Tc0Q8VTRKSFk4a0QyKTJmVS9NIyRlLilUNCxfPThoTGltWyYpOz9Va0snLXg/Jyg6c2lJZkw8JHBGTWBpPD8lVyhtR0RITSU+aVdQLCMjUGAlL0w8ZVhpOkBaOUMuN289QChwWGRBTy9OTFE4bFBsK0hQT1FhOHdEOD1eR2xQYThUS0kxQ2poc0NUU0xKTScvV2w+LVMocXclc2YvQCUjQjY7L1U3S111WmJpXk9jXjJuPGJoUG1Va013PiV0PCknbUVWRScnbmBXbkpyYSReVEt2WDVCPjtfYVNFSycsKGh3YTA6aTRHPy5CY2kuKFhbP2IqKCQsPS1uPC5RJWAoWD0/K0BBbSpKczAmPTNiaDhLXW1MPExvTnMnNiwnODVgMD90LydfVTU5QF1kZEY8I0xkRjxlV2RGPE91Ti80NXJZPC1MQCYjK2ZtPjY5PUxiLE9jWlYvKTtUVG04Vkk7PyVPdEo8KGI0bXE3TTY6dT9LUmRGPGdSQDJMPUZOVS08YlsoOWMvTUwzbTtaWyRvRjNnKUdBV3FwQVJjPTxST3U3Y0w1bDstW0FdJS8rZnNkO2wjU2FmVC9mKlddMD1PJyQoVGI8WykqQGU3NzVSLTpZb2IlZyo+bCo6eFA/WWIuNSkld19JPzd1azVKQytGUyhtI2knay4nYTBpKTk8N2InZnMnNTlocSQqNVVodiMjcGleOCtoSUVCRmBudm9gOydsMC5eUzE8LXdVSzIvQ29oNThLS2hMak09U08qcmZPYCtxQ2BXLU9uLj1BSjU2Pj5pMkAyTEg2QTomNXFgPzlJM0BAJzA0JnAyL0xWYSpULTQ8LWkzO005VXZaZCtONz5iKmVJd2c6Q0MpYzw+bk8mIzxJR2U7X18udGhqWmw8JXcoV2syeG1wNFFASSNJOSxERl11Ny1QPS4tXzpZSl1hU0BWPzYqQygpZE9wNzpXTCxiJjNSZy8uY21NOSZyXj4kKD4uWi1JJkooUTBIZDVRJTdDby1iYC1jPE4oNnJAaXArQXVySzxtODZRSXRoKiN2Oy1PQnFpK0w3d0RFLUlyOEtbJ20rRERTTHdLJi8uPy1WJVVfJTM6cUtOdSRfYipCLWtwN05hRCdRZFdRUEtZcVtAPlApaEk7Kl9GXXVgUmJbLmo4X1EvPCY+dXUrVnNIJHNNOVRBJT8pKHZtSjgwKSxQN0U+KXRqRCUyTD0tdCNmS1slYHY9UTg8RmZOa2dnXm9JYmFoKiM4L1F0JEYmOksqLShOLycrMXZNQix1KCktYS5WVVUqI1tlJWdBQU8oUz5XbEEyKTtTYT5nWG04WUJgMWRASyNuXTc2LWEkVSxtRjxmWF1pZHFkKTwzLF1KN0ptVzRgNl11a3M9NC03MkwoakVrKzpiSjBNXnEtOERtX1o/MG9sUDFDOVNhJkhbZCZjJG9vUVVqXUV4ZCozWk1ALVdHVzIlcycsQi1fTSU+JVVsOiMvJ3hvRk05UVgtJC5RTic+WyUkWiR1RjZwQTZLaTJPNTo4dyp2UDE8LTFgW0csKS1tIz4wYFAmI2ViIy4zaSlydEI2MShvJyQ/WDNCPC9SOTA7ZVpdJU5jcTstVGxdI0Y+MlFmdF5hZV81dEtMOU1VZTliKnNMRVE5NUMmYD1HP0BNaj13aConM0U+PS08KUd0Kkl3KSdRRzpgQEl3T2Y3Jl0xaSdTMDFCK0V2L05hYyM5Uzs9O1lRcGdfNlVgKmtWWTM5eEssWy82QWo3OicxQm0tXzFFWWZhMStvJm80aHA3S05fUShPbElvQFMlO2pWZG4wJzE8VmM1Mj11YDNeby1uMSdnNHY1OEhqJjZfdDckIyM/TSljPCRiZ1FfJ1NZKCgteGtBI1koLHAnSDlySVZZLWIsJyViQ1BGNy5KPFVwXiwoZFUxVlkqNSNXa1RVPmgxOXcsV1FoTEkpM1MjZiQyKGViLGpyKmI7M1Z3XSo3TkglJGM0VnMsZUQ5PlhXOD9OXW8rKCpwZ0MlLzcyTFYtdTxIcCwzQGVeOVVCMUorYWs5LVROL21oS1BnK0FKWWQkTWx2QUZfakNLKi5PLV4oNjNhZE1ULT5XJWlld1M4VzZtMnJ0Q3BvJ1JTMVI4ND1AcGFUS3QpPj0lJjFbKSp2cCd1K3gsVnJ3TjsmXWt1TzlKRGJnPXBPJEoqLmpWZTt1J20wZHI5bCw8KndNSypPZT1nOGxWX0tFQkZrTydvVV1ePVstNzkyI29rLClpXWxSOHFRMm9BOHdjUkNaXjd3L05qaDs/LnN0WD9RMT5TMXE0Qm4kKUsxPC1yR2RPJyRXci5MYy5DRykkLypKTDR0TlIvLFNWTzMsYVV3J0RKTjopU3M7d0duOUEzMmlqdyVGTCtaMEZuLlU5O3JlU3EpYm1JMzJVPT01QUx1RyYjVmYxMzk4L3BWbzEqYy0oYVkxNjhvPGBKc1Niay0sMU47JD4wOk9VYXMoMzo4Wjk3MkxTZkY4ZWI9Yy07PlNQdzcuNmhuM21gOV5Ya24oci5xU1swO1QlJlFjPStTVFJ4WCdxMUJOazMmKmV1MjsmOHEkJng+USNRN15UZis2PChkJVpWbWoyYkRpJS4zTDJuKzRXJyRQaURERylnLHIlKz8sJEA/dW91NXRTZTJhTl9BUVUqPGhgZS1HSTcpP09LMkEuZDdfYyk/d1E1QVNAREwzciM3ZlNrZ2w2LSsrRDonQSx1cTdTdmxCJHBjcEgncTNuMCNfJWRZI3hDcHItbDxGME5SQC0jI0ZFVjZOVEY2IyMkbDg0TjF3P0FPPidJQU9VUlEjI1ZeRnYtWEZiR003RmwoTjwzRGhMR0YlcS4xckMkIzpUX18mUGk2OCUweGlfJltxRkooNzdqXyZKV29GLlY3MzUmVCxbUio6eEZSKks1Pj4jYGJXLT80TmVfJjZOZV8mNk5lXyZuYGtyLSNHSmNNNlg7dU02WDt1TSguYS4uXjJUa0wlb1IoIzt1LlQlZkFyJTR0SjgmPjwxPUdIWl8rbTkvI0gxRl5SI1NDIypOPUJBOShEP3ZbVWlGWT4+XjhwLEtLRi5XXUwyOXVMa0xsdS8rNFQ8WG9JQiZoeD1UMVBjRGFCJjtISCstQUZyPyhtOUhaVilGS1M4SkN3O1NEPTZbXi9EWlVMYEVVRGZdR0dsRyY+dyQpRi4vXm4zK3JsbytEQjs1c0lZR05rK2kxdC02OUpnLS0wcGFvN1NtI0spcGRIVyY7THVETkhASD4jL1gtVEkoO1A+IyxHYz4jMFN1PiM0YDE/IzhsQz8jPHhVPyNALmk/I0Q6JUAjSEY3QCNMUklAI1BfW0AjVGtuQCNYdypBI10tPUEjYTlPQSNkPEYmIyo7RyMjLkdZIyMyU2wjIzZgKCQjOmw6JCM+eEwkI0IuYCQjRjpyJCNKRi4lI05SQCUjUl9SJSNWa2UlI1p3dyUjXy00JiMzXlJoJVNmbHItaydNUy5vPy41L3NXZWwvd3BFTTAlMycvMSlLXmYxLWQ+RzIxJnYoMzU+VmAzOVY3QTQ9b254NEExT1k1RUkwOzZJYmdyNk0kSFM3UTwpNThDNXcsO1dvQSojWyVUKiNgMWcqI2Q9IysjaEk1KyNsVUcrI3BiWSsjdG5sKyN4JCksIyYxOywjKj1NLCMuSWAsIzJVciwjNmIuLSM7d1tII2lRdEEjbV4wQiNxakJCI3V2VEIjIy1oQiMnOSRDIytFNkMjL1FIQyMzXlpDIzdqbUMjO3YpRCM/LDxEI0M4TkQjR0RhRCNLUHNEI09dL0UjZzFBNSNLQSoxI2dDMTcjTUdkOyM4KDAyI0wtZDMjcldNNCNIZ2ExIyw8dzAjVC5qPCNPIycyI0NZTjEjcWFeOiNfNG0zI29ALz0jZUc4PSN0OEo1I2ArNzgjNHVJLSNtM0IyI1NCWzgjUTBAOCNpWyo5I2lPbjgjMU5tOyNec045I3FoPDkjOj14LSNQO0syIyQlWDkjYkMrLiNSZzs8I21OPS4jTVRGLiNSWk8uIzI/KTQjWSMoLyNbKTEvI2I7TC8jZEFVLyMwU3Y7I2xZJDAjbmAtMCNzZjYwIyhGMjQjd3JIMCMlL2UwI1RtRDwjJUpTTUZvdmU6Q1RCRVhJOjxlaDJnKUIsM2gyXkczaTsjZDNqRD4pNGtNWUQ0bFZ1YDRtYDomNW5pVUE1QChBNUJBMV1QQkI6eGxCQ0M9MkNETFhNQ0VVdGlDZiYwZzIndE4/UEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQR1Q0Q1BHVDRDUEdUNENQLXFla0NgLjlrRWdeK0Yka3dWaUZKVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVLVEImNUtUQiY1S1RCJjVvLF48LTI4WkknTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cE8/O3hwTz87eHBPPzt4cDs3cS0jbExZSTp4dkQ9IwBB9v8ACwpAQAAAQEEAAJhBAEGKgAELugFQQQAAAAAAAOBAAACAQQAAgD8AAABBAAD4QQAAAAAAALhBAAC4QQAAMEEAADBBAACoQQAAAAAAABBBAAC4QQAAgEAAADBBAABcQgAAkEEAALhBAAAQQQAAMEEAAIBAAACSQgAAAAAAAIhBAACIQQAAAEEAAABBAABcQgAAAAAAAIhBAACIQQAAAEEAAABBAAC2QgAAAAAAAIhBAACwQQAAoEAAAAAAIAD/AAAw/zDwMf8xAP/v/wBOr58AQdCBAQuXJyAA/wAAMP8w8DH/MQD/7/8AAAEAAgAEAAEAAQABAAEAAgABAAMAAgABAAIAAgABAAEAAQABAAEABQACAAEAAgADAAMAAwACAAIABAABAAEAAQACAAEABQACAAMAAQACAAEAAgABAAEAAgABAAEAAgACAAEABAABAAEAAQABAAUACgABAAIAEwACAAEAAgABAAIAAQACAAEAAgABAAUAAQAGAAMAAgABAAIAAgABAAEAAQAEAAgABQABAAEABAABAAEAAwABAAIAAQAFAAEAAgABAAEAAQAKAAEAAQAFAAIABAAGAAEABAACAAIAAgAMAAIAAQABAAYAAQABAAEABAABAAEABAAGAAUAAQAEAAIAAgAEAAoABwABAAEABAACAAQAAgABAAQAAwAGAAoADAAFAAcAAgAOAAIACQABAAEABgAHAAoABAAHAA0AAQAFAAQACAAEAAEAAQACABwABQAGAAEAAQAFAAIABQAUAAIAAgAJAAgACwACAAkAEQABAAgABgAIABsABAAGAAkAFAALABsABgBEAAIAAgABAAEAAQACAAEAAgACAAcABgALAAMAAwABAAEAAwABAAIAAQABAAEAAQABAAMAAQABAAgAAwAEAAEABQAHAAIAAQAEAAQACAAEAAIAAQACAAEAAQAEAAUABgADAAYAAgAMAAMAAQADAAkAAgAEAAMABAABAAUAAwADAAEAAwAHAAEABQABAAEAAQABAAIAAwAEAAUAAgADAAIABgABAAEAAgABAAcAAQAHAAMABAAFAA8AAgACAAEABQADABYAEwACAAEAAQABAAEAAgAFAAEAAQABAAYAAQABAAwACAACAAkAEgAWAAQAAQABAAUAAQAQAAEAAgAHAAoADwABAAEABgACAAQAAQACAAQAAQAGAAEAAQADAAIABAABAAYABAAFAAEAAgABAAEAAgABAAoAAwABAAMAAgABAAkAAwACAAUABwACABMABAADAAYAAQABAAEAAQABAAQAAwACAAEAAQABAAIABQADAAEAAQABAAIAAgABAAEAAgABAAEAAgABAAMAAQABAAEAAwAHAAEABAABAAEAAgABAAEAAgABAAIABAAEAAMACAABAAEAAQACAAEAAwAFAAEAAwABAAMABAAGAAIAAgAOAAQABgAGAAsACQABAA8AAwABABwABQACAAUABQADAAEAAwAEAAUABAAGAA4AAwACAAMABQAVAAIABwAUAAoAAQACABMAAgAEABwAHAACAAMAAgABAA4ABAABABoAHAAqAAwAKAADADQATwAFAA4AEQADAAIAAgALAAMABAAGAAMAAQAIAAIAFwAEAAUACAAKAAQAAgAHAAMABQABAAEABgADAAEAAgACAAIABQAcAAEAAQAHAAcAFAAFAAMAHQADABEAGgABAAgABAAbAAMABgALABcABQADAAQABgANABgAEAAGAAUACgAZACMABwADAAIAAwADAA4AAwAGAAIABgABAAQAAgADAAgAAgABAAEAAwADAAMABAABAAEADQACAAIABAAFAAIAAQAOAA4AAQACAAIAAQAEAAUAAgADAAEADgADAAwAAwARAAIAEAAFAAEAAgABAAgACQADABMABAACAAIABAARABkAFQAUABwASwABAAoAHQBnAAQAAQACAAEAAQAEAAIABAABAAIAAwAYAAIAAgACAAEAAQACAAEAAwAIAAEAAQABAAIAAQABAAMAAQABAAEABgABAAUAAwABAAEAAQADAAQAAQABAAUAAgABAAUABgANAAkAEAABAAEAAQABAAMAAgADAAIABAAFAAIABQACAAIAAwAHAA0ABwACAAIAAQABAAEAAQACAAMAAwACAAEABgAEAAkAAgABAA4AAgAOAAIAAQASAAMABAAOAAQACwApAA8AFwAPABcAsAABAAMABAABAAEAAQABAAUAAwABAAIAAwAHAAMAAQABAAIAAQACAAQABAAGAAIABAABAAkABwABAAoABQAIABAAHQABAAEAAgACAAMAAQADAAUAAgAEAAUABAABAAEAAgACAAMAAwAHAAEABgAKAAEAEQABACwABAAGAAIAAQABAAYABQAEAAIACgABAAYACQACAAgAAQAYAAEAAgANAAcACAAIAAIAAQAEAAEAAwABAAMAAwAFAAIABQAKAAkABAAJAAwAAgABAAYAAQAKAAEAAQAHAAcABAAKAAgAAwABAA0ABAADAAEABgABAAMABQACAAEAAgARABAABQACABAABgABAAQAAgABAAMAAwAGAAgABQALAAsAAQADAAMAAgAEAAYACgAJAAUABwAEAAcABAAHAAEAAQAEAAIAAQADAAYACAAHAAEABgALAAUABQADABgACQAEAAIABwANAAUAAQAIAFIAEAA9AAEAAQABAAQAAgACABAACgADAAgAAQABAAYABAACAAEAAwABAAEAAQAEAAMACAAEAAIAAgABAAEAAQABAAEABgADAAUAAQABAAQABgAJAAIAAQABAAEAAgABAAcAAgABAAYAAQAFAAQABAADAAEACAABAAMAAwABAAMAAgACAAIAAgADAAEABgABAAIAAQACAAEAAwAHAAEACAACAAEAAgABAAUAAgAFAAMABQAKAAEAAgABAAEAAwACAAUACwADAAkAAwAFAAEAAQAFAAkAAQACAAEABQAHAAkACQAIAAEAAwADAAMABgAIAAIAAwACAAEAAQAgAAYAAQACAA8ACQADAAcADQABAAMACgANAAIADgABAA0ACgACAAEAAwAKAAQADwACAA8ADwAKAAEAAwAJAAYACQAgABkAGgAvAAcAAwACAAMAAQAGAAMABAADAAIACAAFAAQAAQAJAAQAAgACABMACgAGAAIAAwAIAAEAAgACAAQAAgABAAkABAAEAAQABgAEAAgACQACAAMAAQABAAEAAQADAAUABQABAAMACAAEAAYAAgABAAQADAABAAUAAwAHAA0AAgAFAAgAAQAGAAEAAgAFAA4ABgABAAUAAgAEAAgADwAFAAEAFwAGAD4AAgAKAAEAAQAIAAEAAgACAAoABAACAAIACQACAAEAAQADAAIAAwABAAUAAwADAAIAAQADAAgAAQABAAEACwADAAEAAQAEAAMABwABAA4AAQACAAMADAAFAAIABQABAAYABwAFAAcADgALAAEAAwABAAgACQAMAAIAAQALAAgABAAEAAIABgAKAAkADQABAAEAAwABAAUAAQADAAIABAAEAAEAEgACAAMADgALAAQAHQAEAAIABwABAAMADQAJAAIAAgAFAAMABQAUAAcAEAAIAAUASAAiAAYABAAWAAwADAAcAC0AJAAJAAcAJwAJAL8AAQABAAEABAALAAgABAAJAAIAAwAWAAEAAQABAAEABAARAAEABwAHAAEACwAfAAoAAgAEAAgAAgADAAIAAQAEAAIAEAAEACAAAgADABMADQAEAAkAAQAFAAIADgAIAAEAAQADAAYAEwAGAAUAAQAQAAYAAgAKAAgABQABAAIAAwABAAUABQABAAsABgAGAAEAAwADAAIABgADAAgAAQABAAQACgAHAAUABwAHAAUACAAJAAIAAQADAAQAAQABAAMAAQADAAMAAgAGABAAAQAEAAYAAwABAAoABgABAAMADwACAAkAAgAKABkADQAJABAABgACAAIACgALAAQAAwAJAAEAAgAGAAYABQAEAB4AKAABAAoABwAMAA4AIQAGAAMABgAHAAMAAQADAAEACwAOAAQACQAFAAwACwAxABIAMwAfAIwAHwACAAIAAQAFAAEACAABAAoAAQAEAAQAAwAYAAEACgABAAMABgAGABAAAwAEAAUAAgABAAQAAgA5AAoABgAWAAIAFgADAAcAFgAGAAoACwAkABIAEAAhACQAAgAFAAUAAQABAAEABAAKAAEABAANAAIABwAFAAIACQADAAQAAQAHACsAAwAHAAMACQAOAAcACQABAAsAAQABAAMABwAEABIADQABAA4AAQADAAYACgBJAAIAAgAeAAYAAQALABIAEwANABYAAwAuACoAJQBZAAcAAwAQACIAAgACAAMACQABAAcAAQABAAEAAgACAAQACgAHAAMACgADAAkABQAcAAkAAgAGAA0ABwADAAEAAwAKAAIABwACAAsAAwAGABUANgBVAAIAAQAEAAIAAgABACcAAwAVAAIAAgAFAAEAAQABAAQAAQABAAMABAAPAAEAAwACAAQABAACAAMACAACABQAAQAIAAcADQAEAAEAGgAGAAIACQAiAAQAFQA0AAoABAAEAAEABQAMAAIACwABAAcAAgAeAAwALAACAB4AAQABAAMABgAQAAkAEQAnAFIAAgACABgABwABAAcAAwAQAAkADgAsAAIAAQACAAEAAgADAAUAAgAEAAEABgAHAAUAAwACAAYAAQALAAUACwACAAEAEgATAAgAAQADABgAHQACAAEAAwAFAAIAAgABAA0ABgAFAAEALgALAAMABQABAAEABQAIAAIACgAGAAwABgADAAcACwACAAQAEAANAAIABQABAAEAAgACAAUAAgAcAAUAAgAXAAoACAAEAAQAFgAnAF8AJgAIAA4ACQAFAAEADQAFAAQAAwANAAwACwABAAkAAQAbACUAAgAFAAQABAA/ANMAXwACAAIAAgABAAMABQACAAEAAQACAAIAAQABAAEAAwACAAQAAQACAAEAAQAFAAIAAgABAAEAAgADAAEAAwABAAEAAQADAAEABAACAAEAAwAGAAEAAQADAAcADwAFAAMAAgAFAAMACQALAAQAAgAWAAEABgADAAgABwABAAQAHAAEABAAAwADABkABAAEABsAGwABAAQAAQACAAIABwABAAMABQACABwACAACAA4AAQAIAAYAEAAZAAMAAwADAA4AAwADAAEAAQACAAEABAAGAAMACAAEAAEAAQABAAIAAwAGAAoABgACAAMAEgADAAIABQAFAAQAAwABAAUAAgAFAAQAFwAHAAYADAAGAAQAEQALAAkABQABAAEACgAFAAwAAQABAAsAGgAhAAcAAwAGAAEAEQAHAAEABQAMAAEACwACAAQAAQAIAA4AEQAXAAEAAgABAAcACAAQAAsACQAGAAUAAgAGAAQAEAACAAgADgABAAsACAAJAAEAAQABAAkAGQAEAAsAEwAHAAIADwACAAwACAA0AAcABQATAAIAEAAEACQACAABABAACAAYABoABAAGAAIACQAFAAQAJAADABwADAAZAA8AJQAbABEADAA7ACYABQAgAH8AAQACAAkAEQAOAAQAAQACAAEAAQAIAAsAMgAEAA4AAgATABAABAARAAUABAAFABoADAAtAAIAFwAtAGgAHgAMAAgAAwAKAAIAAgADAAMAAQAEABQABwACAAkABgAPAAIAFAABAAMAEAAEAAsADwAGAIYAAgAFADsAAQACAAIAAgABAAkAEQADABoAiQAKANMAOwABAAIABAABAAQAAQABAAEAAgAGAAIAAwABAAEAAgADAAIAAwABAAMABAAEAAIAAwADAAEABAADAAEABwACAAIAAwABAAIAAQADAAMAAwACAAIAAwACAAEAAwAOAAYAAQADAAIACQAGAA8AGwAJACIAkQABAAEAAgABAAEAAQABAAIAAQABAAEAAQACAAIAAgADAAEAAgABAAEAAQACAAMABQAIAAMABQACAAQAAQADAAIAAgACAAwABAABAAEAAQAKAAQABQABABQABAAQAAEADwAJAAUADAACAAkAAgAFAAQAAgAaABMABwABABoABAAeAAwADwAqAAEABgAIAKwAAQABAAQAAgABAAEACwACAAIABAACAAEAAgABAAoACAABAAIAAQAEAAUAAQACAAUAAQAIAAQAAQADAAQAAgABAAYAAgABAAMABAABAAIAAQABAAEAAQAMAAUABwACAAQAAwABAAEAAQADAAMABgABAAIAAgADAAMAAwACAAEAAgAMAA4ACwAGAAYABAAMAAIACAABAAcACgABACMABwAEAA0ADwAEAAMAFwAVABwANAAFABoABQAGAAEABwAKAAIABwA1AAMAAgABAAEAAQACAKMAFAIBAAoACwABAAMAAwAEAAgAAgAIAAYAAgACABcAFgAEAAIAAgAEAAIAAQADAAEAAwADAAUACQAIAAIAAQACAAgAAQAKAAIADAAVABQADwBpAAIAAwABAAEAAwACAAMAAQABAAIABQABAAQADwALABMAAQABAAEAAQAFAAQABQABAAEAAgAFAAMABQAMAAEAAgAFAAEACwABAAEADwAJAAEABAAFAAMAGgAIAAIAAQADAAEAAQAPABMAAgAMAAEAAgAFAAIABwACABMAAgAUAAYAGgAHAAUAAgACAAcAIgAVAA0ARgACAIAAAQABAAIAAQABAAIAAQABAAMAAgACAAIADwABAAQAAQADAAQAKgAKAAYAAQAxAFUACAABAAIAAQABAAQABAACAAMABgABAAUABwAEAAMA0wAEAAEAAgABAAIABQABAAIABAACAAIABgAFAAYACgADAAQAMABkAAYAAgAQACgBBQAbAIMBAgACAAMABwAQAAgABQAmAA8AJwAVAAkACgADAAcAOwANABsAFQAvAAUAFQAGAEHyqAELsR4BAAIABAABAAEAAQABAAIAAQAGAAIAAgABAAgABQAHAAsAAQACAAoACgAIAAIABAAUAAIACwAIAAIAAQACAAEABgACAAEABwAFAAMABwABAAEADQAHAAkAAQAEAAYAAQACAAEACgABAAEACQACAAIABAAFAAYADgABAAEACQADABIABQAEAAIAAgAKAAcAAQABAAEAAwACAAQAAwAXAAIACgAMAAIADgACAAQADQABAAYACgADAAEABwANAAYABAANAAUAAgADABEAAgACAAUABwAGAAQAAQAHAA4AEAAGAA0ACQAPAAEAAQAHABAABAAHAAEAEwAJAAIABwAPAAIABgAFAA0AGQAEAA4ADQALABkAAQABAAEAAgABAAIAAgADAAoACwADAAMAAQABAAQABAACAAEABAAJAAEABAADAAUABQACAAcADAALAA8ABwAQAAQABQAQAAIAAQABAAYAAwADAAEAAQACAAcABgAGAAcAAQAEAAcABgABAAEAAgABAAwAAwADAAkABQAIAAEACwABAAIAAwASABQABAABAAMABgABAAcAAwAFAAUABwACAAIADAADAAEABAACAAMAAgADAAsACAAHAAQAEQABAAkAGQABAAEABAACAAIABAABAAIABwABAAEAAQADAAEAAgAGABAAAQACAAEAAQADAAwAFAACAAUAFAAIAAcABgACAAEAAQABAAEABgACAAEAAgAKAAEAAQAGAAEAAwABAAIAAQAEAAEADAAEAAEAAwABAAEAAQABAAEACgAEAAcABQANAAEADwABAAEAHgALAAkAAQAPACYADgABACAAEQAUAAEACQAfAAIAFQAJAAQAMQAWAAIAAQANAAEACwAtACMAKwA3AAwAEwBTAAEAAwACAAMADQACAAEABwADABIAAwANAAgAAQAIABIABQADAAcAGQAYAAkAGAAoAAMAEQAYAAIAAQAGAAIAAwAQAA8ABgAHAAMADAABAAkABwADAAMAAwAPABUABQAQAAQABQAMAAsACwADAAYAAwACAB8AAwACAAEAAQAXAAYABgABAAQAAgAGAAUAAgABAAEAAwADABYAAgAGAAIAAwARAAMAAgAEAAUAAQAJAAUAAQABAAYADwAMAAMAEQACAA4AAgAIAAEAFwAQAAQAAgAXAAgADwAXABQADAAZABMALwALABUAQQAuAAQAAwABAAUABgABAAIABQAaAAIAAQABAAMACwABAAEAAQACAAEAAgADAAEAAQAKAAIAAwABAAEAAQADAAYAAwACAAIABgAGAAkAAgACAAIABgACAAUACgACAAQAAQACAAEAAgACAAMAAQABAAMAAQACAAkAFwAJAAIAAQABAAEAAQAFAAMAAgABAAoACQAGAAEACgACAB8AGQADAAcABQAoAAEADwAGABEABwAbALQAAQADAAIAAgABAAEAAQAGAAMACgAHAAEAAwAGABEACAAGAAIAAgABAAMABQAFAAgAEAAOAA8AAQABAAQAAQACAAEAAQABAAMAAgAHAAUABgACAAUACgABAAQAAgAJAAEAAQALAAYAAQAsAAEAAwAHAAkABQABAAMAAQABAAoABwABAAoABAACAAcAFQAPAAcAAgAFAAEACAADAAQAAQADAAEABgABAAQAAgABAAQACgAIAAEABAAFAAEABQAKAAIABwABAAoAAQABAAMABAALAAoAHQAEAAcAAwAFAAIAAwAhAAUAAgATAAMAAQAEAAIABgAfAAsAAQADAAMAAwABAAgACgAJAAwACwAMAAgAAwAOAAgABgALAAEABAApAAMAAQACAAcADQABAAUABgACAAYADAAMABYABQAJAAQACAAJAAkAIgAGABgAAQABABQACQAJAAMABAABAAcAAgACAAIABgACABwABQADAAYAAQAEAAYABwAEAAIAAQAEAAIADQAGAAQABAADAAEACAAIAAMAAgABAAUAAQACAAIAAwABAAsACwAHAAMABgAKAAgABgAQABAAFgAHAAwABgAVAAUABAAGAAYAAwAGAAEAAwACAAEAAgAIAB0AAQAKAAEABgANAAYABgATAB8AAQANAAQABAAWABEAGgAhAAoABAAPAAwAGQAGAEMACgACAAMAAQAGAAoAAgAGAAIACQABAAkABAAEAAEAAgAQAAIABQAJAAIAAwAIAAEACAADAAkABAAIAAYABAAIAAsAAwACAAEAAQADABoAAQAHAAUAAQALAAEABQADAAUAAgANAAYAJwAFAAEABQACAAsABgAKAAUAAQAPAAUAAwAGABMAFQAWAAIABAABAAYAAQAIAAEABAAIAAIABAACAAIACQACAAEAAQABAAQAAwAGAAMADAAHAAEADgACAAQACgACAA0AAQARAAcAAwACAAEAAwACAA0ABwAOAAwAAwABAB0AAgAIAAkADwAOAAkADgABAAMAAQAGAAUACQALAAMAJgArABQABwAHAAgABQAPAAwAEwAPAFEACAAHAAEABQBJAA0AJQAcAAgACAABAA8AEgAUAKUAHAABAAYACwAIAAQADgAHAA8AAQADAAMABgAEAAEABwAOAAEAAQALAB4AAQAFAAEABAAOAAEABAACAAcANAACAAYAHQADAAEACQABABUAAwAFAAEAGgADAAsADgALAAEAEQAFAAEAAgABAAMAAgAIAAEAAgAJAAwAAQABAAIAAwAIAAMAGAAMAAcABwAFABEAAwADAAMAAQAXAAoABAAEAAYAAwABABAAEQAWAAMACgAVABAAEAAGAAQACgACAAEAAQACAAgACAAGAAUAAwADAAMAJwAZAA8AAQABABAABgAHABkADwAGAAYADAABABYADQABAAQACQAFAAwAAgAJAAEADAAcAAgAAwAFAAoAFgA8AAEAAgAoAAQAPQA/AAQAAQANAAwAAQAEAB8ADAABAA4AWQAFABAABgAdAA4AAgAFADEAEgASAAUAHQAhAC8AAQARAAEAEwAMAAIACQAHACcADAADAAcADAAnAAMAAQAuAAQADAADAAgACQAFAB8ADwASAAMAAgACAEIAEwANABEABQADAC4AfAANADkAIgACAAUABAAFAAgAAQABAAEABAADAAEAEQAFAAMABQADAAEACAAFAAYAAwAbAAMAGgAHAAwABwACABEAAwAHABIATgAQAAQAJAABAAIAAQAGAAIAAQAnABEABwAEAA0ABAAEAAQAAQAKAAQAAgAEAAYAAwAKAAEAEwABABoAAgAEACEAAgBJAC8ABwADAAgAAgAEAA8AEgABAB0AAgApAA4AAQAVABAAKQAHACcAGQANACwAAgACAAoAAQANAAcAAQAHAAMABQAUAAQACAACADEAAQAKAAYAAQAGAAcACgAHAAsAEAADAAwAFAAEAAoAAwABAAIACwACABwACQACAAQABwACAA8AAQAbAAEAHAARAAQABQAKAAcAAwAYAAoACwAGABoAAwACAAcAAgACADEAEAAKABAADwAEAAUAGwA9AB4ADgAmABYAAgAHAAUAAQADAAwAFwAYABEAEQADAAMAAgAEAAEABgACAAcABQABAAEABQABAAEACQAEAAEAAwAGAAEACAACAAgABAAOAAMABQALAAQAAQADACAAAQATAAQAAQANAAsABQACAAEACAAGAAgAAQAGAAUADQADABcACwAFAAMAEAADAAkACgABABgAAwDGADQABAACAAIABQAOAAUABAAWAAUAFAAEAAsABgApAAEABQACAAIACwAFAAIAHAAjAAgAFgADABIAAwAKAAcABQADAAQAAQAFAAMACAAJAAMABgACABAAFgAEAAUABQADAAMAEgAXAAIABgAXAAUAGwAIAAEAIQACAAwAKwAQAAUAAgADAAYAAQAUAAQAAgAJAAcAAQALAAIACgADAA4AHwAJAAMAGQASABQAAgAFAAUAGgAOAAEACwARAAwAKAATAAkABgAfAFMAAgAHAAkAEwBOAAwADgAVAEwADABxAE8AIgAEAAEAAQA9ABIAVQAKAAIAAgANAB8ACwAyAAYAIQCfALMABgAGAAcABAAEAAIABAACAAUACAAHABQAIAAWAAEAAwAKAAYABwAcAAUACgAJAAIATQATAA0AAgAFAAEABAAEAAcABAANAAMACQAfABEAAwAaAAIABgAGAAUABAABAAcACwADAAQAAgABAAYAAgAUAAQAAQAJAAIABgADAAcAAQABAAEAFAACAAMAAQAGAAIAAwAGAAIABAAIAAEABQANAAgABAALABcAAQAKAAYAAgABAAMAFQACAAIABAAYAB8ABAAKAAoAAgAFAMAADwAEABAABwAJADMAAQACAAEAAQAFAAEAAQACAAEAAwAFAAMAAQADAAQAAQADAAEAAwADAAkACAABAAIAAgACAAQABAASAAwAXAACAAoABAADAA4ABQAZABAAKgAEAA4ABAACABUABQB+AB4AHwACAAEABQANAAMAFgAFAAYABgAUAAwAAQAOAAwAVwADABMAAQAIAAIACQAJAAMAAwAXAAIAAwAHAAYAAwABAAIAAwAJAAEAAwABAAYAAwACAAEAAwALAAMAAQAGAAoAAwACAAMAAQACAAEABQABAAEACwADAAYABAABAAcAAgABAAIABQAFACIABAAOABIABAATAAcABQAIAAIABgBPAAEABQACAA4ACAACAAkAAgABACQAHAAQAAQAAQABAAEAAgAMAAYAKgAnABAAFwAHAA8ADwADAAIADAAHABUAQAAGAAkAHAAIAAwAAwADACkAOwAYADMANwA5ACYBCQAJAAIABgACAA8AAQACAA0AJgBaAAkACQAJAAMACwAHAAEAAQABAAUABgADAAIAAQACAAIAAwAIAAEABAAEAAEABQAHAAEABAADABQABAAJAAEAAQABAAUABQARAAEABQACAAYAAgAEAAEABAAFAAcAAwASAAsACwAgAAcABQAEAAcACwB/AAgABAADAAMAAQAKAAEAAQAGABUADgABABAAAQAHAAEAAwAGAAkAQQAzAAQAAwANAAMACgABAAEADAAJABUAbgADABMAGAABAAEACgA+AAQAAQAdACoATgAcABQAEgBSAAYAAwAPAAYAVAA6AP0ADwCbAAgBDwAVAAkADgAHADoAKAAnAEGwxwELECAA/wAABC8F4C3/LUCmn6YAQdLHAQsmgD/NzMw9CtcjPG8SgzoXt9E4rMUnN703hjWVv9Yzd8wrMl9wiTAAQYDIAQtGBAAAAOeOAADnjgAABAAAAPGOAADxjgAACAAAAPSOAAD0jgAACAAAAPmOAAD5jgAABAAAAOqOAADqjgAACAAAAOqOAADtjgBB0MgBC5IC/5AAAAORAAAHkQAAC5EAAMGQAADBkAAAwZAAAMGQAADHkAAAz5AAANeQAADfkAAA55AAAO+QAAD3kAAA35AAAJOQAACTkAAAk5AAAJOQAACXkAAAnZAAAKOQAACpkAAAr5AAALWQAAC7kAAAqZAAAP8AAP///wD/AP8A/wD///8AAP///wD///8AAP8AAAAA6HoAANB0AADQdAAA0HQAANB0AAA4ewAAWHsAANB0AAAIewAA0HQAANB0AAAIewAAOHsAADh7AABYewAAWHsAAOh6AABYewAAWHsAAFh7AADQdAAA0HQAANB0AAAAAAAACHsAAEB7AAAIdQAAOHsAAOh6AAA4ewAAWHsAANB0AADQdABB8MoBCxLQdAAA2HQAAAh7AABYewAA0HQAQZDLAQsi6HoAANB0AADQdAAACHsAAAh7AADYdAAA0HQAAFB7AAA4ewBBwMsBCyIIewAA0HQAADh7AAAIewAACHsAANh0AADQdAAA0HQAAAh7AEHwywELEgh7AADYdAAA0HQAAAh7AAAIewBBkMwBCzboegAA2HQAAFh7AADQdAAACHsAANh0AAA4ewAAOHsAAAh7AADYdAAA0HQAANB0AAA4ewAAOHsAQdDMAQsSCHsAANh0AAAIewAAOHsAANB0AEHwzAELMgh7AAA4ewAAOHsAANh0AAAIewAA2HQAADh7AADYdAAACHsAANh0AADQdAAAOHsAANB0AEGwzQELIgh7AADYdAAA0HQAADh7AADQdAAA0HQAANB0AADQdAAA0HQAQeDNAQs2CHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AAA4ewAAOHsAANB0AEGgzgELEgh7AADYdAAA0HQAANB0AADQdABBwM4BC3YIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAAAAAAAAh7AADYdAAAOHsAANB0AADQdAAA0HQAANB0AAA4ewAACHsAANh0AADQdAAAYHsAAGB7AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AAA4ewAAOHsAADh7AEHAzwELEgh7AADYdAAA0HQAANB0AAA4ewBB4M8BC4IBCHsAANh0AADQdAAA0HQAANB0AADQdAAAOHsAAAAAAAAIewAA2HQAANB0AABQewAA0HQAADh7AADQdAAA0HQAAAh7AADYdAAA0HQAAFB7AAA4ewAA0HQAANB0AAAAAAAACHsAANh0AAA4ewAA0HQAANB0AADQdAAA0HQAANB0AADQdABB8NABCyIIewAA2HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AEGg0QELRgh7AADYdAAA0HQAANB0AAA4ewAAOHsAANB0AAAAAAAACHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQfDRAQt2CHsAANh0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AAAIewAA2HQAANB0AADQdAAA0HQAADh7AAA4ewAAAAAAAOh6AABYewAA0HQAANB0AADoegAA2HQAANB0AADQdAAAOHsAADh7AADQdAAA0HQAANB0AADQdABB8NIBC5IBCHsAANh0AADQdAAAQHsAAAh7AADQdAAA0HQAANB0AADQdAAAOHsAANB0AADQdAAA6HoAANB0AADQdAAA0HQAANB0AADQdAAA0HQAAAAAAADoegAAOHsAANB0AAAIewAA6HoAANh0AAAIewAAOHsAAOh6AADYdAAA0HQAADh7AADoegAA0HQAANB0AADQdAAA0HQAQZDUAQsi6HoAANB0AAA4ewAA0HQAAAh7AADQdAAA0HQAAAh7AAA4ewBBwNQBC4YBCHsAANh0AADQdAAAOHsAAAh7AADYdAAAUHsAAFB7AABQewAAUHsAAFB7AAAAAAAACHsAAFh2AAA4ewAA0HQAAAh7AACYdgAAOHsAAFh7AAAIewAAmHYAADh7AAAIewAACHsAAJh2AAA4ewAAOHsAANB0AADIdgAA0HQAAFh7AADQdAAA0HQAQdDVAQsy6HoAACB2AADQdAAAWHsAANB0AABAewAAMHsAAAAAAAA4ewAAIHYAAFh7AADYdAAAWHsAQZDWAQti0HQAACB2AABYewAAWHsAAFh7AADYdAAA0HQAANB0AADoegAAQHUAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAQYDXAQs26HoAADB1AAA4ewAAOHsAAOh6AABAdQAA0HQAANB0AADoegAAQHUAANB0AADQdAAAWHsAADh7AEHA1wELFuh6AABAdQAA0HQAANB0AADQdAAAOHsAQeDXAQsW6HoAAEB1AADQdAAAWHsAADh7AAA4ewBBgNgBCzLoegAAQHUAANB0AABYewAAWHsAAFh7AAA4ewAAAAAAAOh6AABAdQAAQHsAAAh7AABYewBBwNgBCyLoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHw2AELEuh6AABAdQAA0HQAADh7AABAewBBkNkBC0boegAAQHUAANB0AAA4ewAAQHsAAAh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAAWHsAADh7AEHg2QELcuh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AADQdAAA0HQAANB0AADQdAAAQHsAAOh6AABAdQAA0HQAANB0AADQdAAA0HQAANB0AABAewAA6HoAAEB1AADQdAAAWHsAANB0AABAewAA2HQAAFh7AADQdABB4NoBCxLoegAAQHUAANB0AABAewAA2HQAQYDbAQsW6HoAAEB1AADQdAAAWHsAAEB7AAA4ewBBoNsBCzboegAAQHUAANB0AABYewAAQHsAADh7AABYewAAAAAAAOh6AABAdQAA0HQAANB0AADQdAAAQHsAQeDbAQvWAeh6AABAdQAA0HQAANB0AADQdAAAQHsAAFh7AAAAAAAA6HoAAEB1AADQdAAA0HQAANB0AADQdAAAQHsAAAAAAADoegAAQHUAANB0AADQdAAA0HQAANB0AABAewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAQHsAAEB7AABAewAA6HoAAEB1AADQdAAA0HQAAEB7AABYewAAOHsAAAAAAADoegAAQHUAANB0AADQdAAAQHsAAFh7AAA4ewAAWHsAAOh6AABAdQAA0HQAANB0AABAewAAWHsAQcDdAQsS6HoAAEB1AADQdAAA0HQAAAh7AEHg3QELRuh6AADgdwAAOHsAAFh7AADoegAA+HUAADh7AADYdAAA6HoAAOh1AAA4ewAAOHsAANB0AADQdAAA0HQAANB0AADQdAAA0HQAQbDeAQvhA9B0AADQdAAA0HQAANB0AAACAADAAwAAwAQAAMAFAADABgAAwAcAAMAIAADACQAAwAoAAMALAADADAAAwA0AAMAOAADADwAAwBAAAMARAADAEgAAwBMAAMAUAADAFQAAwBYAAMAXAADAGAAAwBkAAMAaAADAGwAAwBwAAMAdAADAHgAAwB8AAMAAAACzAQAAwwIAAMMDAADDBAAAwwUAAMMGAADDBwAAwwgAAMMJAADDCgAAwwsAAMMMAADDDQAA0w4AAMMPAADDAAAMuwEADMMCAAzDAwAMwwQADNMAAAAA/////////////////////////////////////////////////////////////////wABAgMEBQYHCAn/////////CgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiP///////8KCwwNDg8QERITFBUWFxgZGhscHR4fICEiI/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AQaDiAQsYEQAKABEREQAAAAAFAAAAAAAACQAAAAALAEHA4gELIREADwoREREDCgcAARMJCwsAAAkGCwAACwAGEQAAABEREQBB8eIBCwELAEH64gELGBEACgoREREACgAAAgAJCwAAAAkACwAACwBBq+MBCwEMAEG34wELFQwAAAAADAAAAAAJDAAAAAAADAAADABB5eMBCwEOAEHx4wELFQ0AAAAEDQAAAAAJDgAAAAAADgAADgBBn+QBCwEQAEGr5AELHg8AAAAADwAAAAAJEAAAAAAAEAAAEAAAEgAAABISEgBB4uQBCw4SAAAAEhISAAAAAAAACQBBk+UBCwELAEGf5QELFQoAAAAACgAAAAAJCwAAAAAACwAACwBBzeUBCwEMAEHZ5QEL3gIMAAAAAAwAAAAACQwAAAAAAAwAAAwAADAxMjM0NTY3ODlBQkNERUYKAAAAZAAAAOgDAAAQJwAAoIYBAEBCDwCAlpgAAOH1BQMAAAAEAAAABAAAAAYAAACD+aIARE5uAPwpFQDRVycA3TT1AGLbwAA8mZUAQZBDAGNR/gC73qsAt2HFADpuJADSTUIASQbgAAnqLgAcktEA6x3+ACmxHADoPqcA9TWCAES7LgCc6YQAtCZwAEF+XwDWkTkAU4M5AJz0OQCLX4QAKPm9APgfOwDe/5cAD5gFABEv7wAKWosAbR9tAM9+NgAJyycARk+3AJ5mPwAt6l8Auid1AOXrxwA9e/EA9zkHAJJSigD7a+oAH7FfAAhdjQAwA1YAe/xGAPCrawAgvM8ANvSaAOOpHQBeYZEACBvmAIWZZQCgFF8AjUBoAIDY/wAnc00ABgYxAMpWFQDJqHMAe+JgAGuMwABBw+gBC21A+yH5PwAAAAAtRHQ+AAAAgJhG+DwAAABgUcx4OwAAAICDG/A5AAAAQCAlejgAAACAIoLjNgAAAAAd82k1OGPtPtoPST9emHs/2g/JP2k3rDFoISIztA8UM2ghojMAAAAAAADwPwAAAAAAAPg/AEG46QELCAbQz0Pr/Uw+AEHL6QEL3gdAA7jiP/SBAADepAAApIIAAPekAAAAAAAAAQAAAPB0AAAAAAAA9IEAADalAAD0gQAAZqUAAPSBAACfpQAA9IEAAMKlAAD0gQAA0aUAAIiCAADupQAACAAAACh1AAD0gQAABqYAAIiCAAAdpgAAAAAAAEB1AAD0gQAAK6YAAPSBAABFpgAAHIIAAKGmAABIdQAAAAAAAPSBAAC8pgAA9IEAAPCmAAD0gQAABqcAAPSBAAAnpwAA9IEAAEynAAD0gQAAa6cAAPSBAADTpwAA9IEAAPKnAAD0gQAAD6gAAPSBAAAuqAAA9IEAAEuoAAD0gQAAaqgAAPSBAACRqAAA9IEAAKeoAAD0gQAAvagAAPSBAADcqAAA9IEAAASpAACIggAAGqkAAAAAAAD4dQAA9IEAADipAAD0gQAAc6kAAPSBAACJqQAAiIIAAL+pAAAAAAAAIHYAAPSBAADIqQAAiIIAANCpAAABAAAAOHYAAPSBAADaqQAAiIIAAPGqAAAAAAAAUHYAAPSBAAAKqwAAiIIAADCrAAAAAAAAaHYAAPSBAAA+qwAAiIIAAE6rAAAAAAAAgHYAAPSBAABcqwAAiIIAAGmrAAAAAAAAmHYAAPSBAABzqwAAiIIAAHyrAAAAAAAAsHYAAPSBAACQqwAAiIIAAKOrAAAAAAAAyHYAAPSBAACyqwAAiIIAANStAAAAAAAAOHYAAIiCAADdrQAAAQAAAAh1AACIggAA6a0AAAEAAABodgAAiIIAAC2yAAABAAAAmHYAAPSBAAAStAAAiIIAAD+1AAABAAAAyHYAAIiCAAC5tgAAAQAAACB2AACIggAAw7YAAAEAAABIdwAA9IEAANO2AACIggAA4bYAAAAAAABgdwAA9IEAAPG2AACIggAAALcAAAAAAABIdwAAiIIAAF24AAABAAAAYHcAAIiCAAAduQAAAQAAAIB2AACIggAALLkAAAEAAABAdQAA9IEAADm8AAD0gQAArbwAAIiCAADMvAAAAQAAAMh3AAD0gQAA2bwAAIiCAAALvQAAAAAAAMh3AACIggAAbb0AAAAAAADwdwAA9IEAAIG9AACIggAAmr0AAAEAAADwdwAAiIIAAOG9AAABAAAAUHYAAIiCAACevgAAAQAAAPh1AACIggAA274AAAAAAAAIdQAAiIIAAPW+AAABAAAAsHYAAPSBAAB2wQAA9IEAAPvBAAD0gQAAOMIAAPSBAABXwgAA9IEAAHbCAAD0gQAAlcIAAKSCAADSwgAAAAAAAAEAAADwdAAAAAAAAKSCAAARwwAAAAAAAAEAAADwdAAAAAAAAAUAQbTxAQsBAQBBzPEBCwsBAAAAAQAAACMXAQBB5PEBCwECAEHz8QELBf//////AEG48gELAQUAQcTyAQsBAQBB3PIBCw4CAAAAAQAAAGgQAQAABABB9PIBCwEBAEGD8wELBQr/////AEHs8wELAQMAQZP0AQsF//////8AQdj0AQv6DPSBAACSxAAAHIIAAPLEAABwegAAAAAAAByCAACfxAAAgHoAAAAAAAD0gQAAwMQAAByCAADNxAAAYHoAAAAAAAAcggAA1MUAAFh6AAAAAAAAHIIAAOTFAACYegAAAAAAAByCAAAZxgAAcHoAAAAAAAAcggAA9cUAALh6AAAAAAAAHIIAADvGAABwegAAAAAAAGyCAABjxgAAiIIAAGXGAAAAAAAA6HoAAGyCAABoxgAAbIIAAGvGAABsggAAbcYAAGyCAABvxgAAbIIAAHHGAABsggAAc8YAAGyCAAB1xgAAbIIAAHfGAABsggAAecYAAGyCAAB7xgAAbIIAAH3GAABsggAAf8YAAGyCAACBxgAAHIIAAIPGAABgegAAAAAAAAEAAAABAAAA8HoAANB0AABQewAA0HQAANB0AADYdAAAAAAAAPh0AAABAAAAYHsAAAh7AAA4ewAAWHsAAAh7AAA4ewAACHsAADh7AAA4ewAAAAAAAAB1AAACAAAAAwAAAAQAAAAFAAAA0HQAAEB7AADQdAAAAAAAABB1AAAGAAAABwAAAAgAAAAJAAAAOHsAANh0AAA4ewAACHsAANB0AADQdAAACHsAANB0AAAIewAAOHsAAAAAAABIdQAACgAAAAAAAABQdQAACgAAAAAAAABgdQAACwAAAAwAAAANAAAADgAAAAh7AAAIewAA0HQAADh7AADoegAA2HQAAEB7AADoegAA2HQAADh7AADoegAA2HQAAAh7AADQdAAA0HQAANB0AAAIewAAOHsAANh0AAAIewAA2HQAANh0AAAAAAAAaHUAAA8AAAAQAAAAEQAAABIAAAAAAAAAcHUAABMAAAAUAAAAFQAAABYAAAAAAAAAeHUAABcAAAAYAAAAGQAAABoAAADoegAAgHUAAAAAAACIdQAAGwAAAOh6AADQdAAAUHsAAOh6AACQdQAAAAAAAJh1AAAcAAAA6HoAAKB1AAAAAAAAqHUAAB0AAABAewAA6HoAALB1AAAAAAAAuHUAAB4AAAAAAAAAwHUAAB8AAAAgAAAAIQAAACIAAAAAAAAAyHUAACMAAAAkAAAAJQAAACYAAAAAAAAA0HUAACcAAAAoAAAAKQAAACoAAAAAAAAA2HUAACsAAAAsAAAALQAAAC4AAAAAAAAA4HUAAC8AAAAwAAAAMQAAADIAAADQdAAA0HQAANB0AAAIewAA2HQAAAh7AAAAAAAAAHYAADMAAAA0AAAANQAAADYAAAAAAAAACHYAADcAAAA4AAAAOQAAADoAAAAIewAA2HQAADh7AAAIewAA2HQAAAh7AADYdAAA0HQAAOh6AADYdAAA2HQAAOh6AADQdAAA2HQAAOh6AAA4ewAAWHsAAFh7AAA4ewAA6HoAAAh7AABAewAAQHsAAEB7AADQdAAAQHsAADh7AADQdAAA0HQAADh7AADoegAAOHsAAOh6AAA4ewAA0HQAABB2AADoegAAWHsAAFh7AADoegAACHsAADh7AADoegAA0HQAADh7AADoegAAWHsAAFh7AADQdAAA0HQAAOh6AABYdgAA6HoAANh0AABYdgAA6HoAANB0AADoegAAoHYAAOh6AACgdgAAoHYAALh2AADQdAAA2HQAANB0AADoegAAWHYAAFh7AADQdAAAWHYAADh7AABYewAAmHYAADh7AADQdAAAAHcAADh7AADoegAAiHYAAOh6AACYdgAA2HQAAOh6AACIdgAAMHsAAAh7AACYdgAAOHsAADh7AACYdgAAOHsAAOh6AAC4dgAA0HQAANB0AADIdgAACHsAALh2AADoegAAuHYAAEh7AADQdAAAyHYAANB0AAAwdQAA2HQAACB2AAAIewAAKHcAAFh7AAAodwAAMHsAAOh6AAAQdgAAMHsAANB0AAAgdgAAMHsAAOh6AAAQdgAAOHcAAOh6AAAQdgAA0HQAAOh6AACAdgAA0HQAAOh6AABwdgAA6HoAAIh3AADQdAAA6HoAAEB1AAAwewAA6HoAADB1AAA4ewAA6HoAAEB1AABAewAAAAAAAKh3AAA7AAAA0HQAAEB1AADQdAAA6HoAAEB1AADQdAAA6HoAADB1AADoegAAmHcAANB0AADoegAA4HcAAAh7AADgdwAA4HcAADh7AABYewAA4HcAADh7AADgdwAACHsAABh4AADQdAAA0HQAANB0AACoeAAAOHkAADh5AEGQgwILA/AUAQBByIMCC+CJAV9wiQD/CS8PAACAPwAAwD8AAAAA3M/RNQAAAAAAwBU/AQAAAAAAAABgegAAPAAAAD0AAAA+AAAAPwAAAAQAAAABAAAAAQAAAAEAAAAAAAAAiHoAADwAAABAAAAAPgAAAD8AAAAEAAAAAgAAAAIAAAACAAAAAAAAAJh6AABBAAAAQgAAAAIAAAAAAAAAqHoAAEEAAABDAAAAAgAAAAAAAADYegAAPAAAAEQAAAA+AAAAPwAAAAUAAAAAAAAAyHoAADwAAABFAAAAPgAAAD8AAAAGAAAAAAAAAGh7AAA8AAAARgAAAD4AAAA/AAAABAAAAAMAAAADAAAAAwAAACAA/wAAACAA/wAxMWMxAKyd1wAAIAD/ABAgXiAADn8OAABpbWd1aS5pbmkAaW1ndWlfbG9nLnR4dAAjTU9WRQBEZWJ1ZyMjRGVmYXVsdABXaW5kb3cALi4uACNDT0xMQVBTRQAjQ0xPU0UAV2luZG93QmcAQ2hpbGRCZwBQb3B1cEJnAEJvcmRlcgBCb3JkZXJTaGFkb3cARnJhbWVCZwBGcmFtZUJnSG92ZXJlZABGcmFtZUJnQWN0aXZlAFRpdGxlQmcAVGl0bGVCZ0FjdGl2ZQBUaXRsZUJnQ29sbGFwc2VkAE1lbnVCYXJCZwBTY3JvbGxiYXJCZwBTY3JvbGxiYXJHcmFiAFNjcm9sbGJhckdyYWJIb3ZlcmVkAFNjcm9sbGJhckdyYWJBY3RpdmUAQ2hlY2tNYXJrAFNsaWRlckdyYWIAU2xpZGVyR3JhYkFjdGl2ZQBCdXR0b25Ib3ZlcmVkAEJ1dHRvbkFjdGl2ZQBIZWFkZXIASGVhZGVySG92ZXJlZABIZWFkZXJBY3RpdmUAU2VwYXJhdG9ySG92ZXJlZABTZXBhcmF0b3JBY3RpdmUAUmVzaXplR3JpcABSZXNpemVHcmlwSG92ZXJlZABSZXNpemVHcmlwQWN0aXZlAFRhYgBUYWJIb3ZlcmVkAFRhYkFjdGl2ZQBUYWJVbmZvY3VzZWQAVGFiVW5mb2N1c2VkQWN0aXZlAFBsb3RMaW5lc0hvdmVyZWQAUGxvdEhpc3RvZ3JhbUhvdmVyZWQAVGV4dFNlbGVjdGVkQmcARHJhZ0Ryb3BUYXJnZXQATmF2SGlnaGxpZ2h0AE5hdldpbmRvd2luZ0hpZ2hsaWdodABOYXZXaW5kb3dpbmdEaW1CZwBNb2RhbFdpbmRvd0RpbUJnAFVua25vd24AIyNUb29sdGlwXyUwMmQAIyNNZW51XyUwMmQAIyNQb3B1cF8lMDh4AHdpbmRvd19jb250ZXh0AHZvaWRfY29udGV4dABjb2x1bW5zACNTb3VyY2VFeHRlcm4ACiUqcyUuKnMAICUuKnMAYWIACgBMb2cgVG8gVFRZAExvZyBUbyBGaWxlAExvZyBUbyBDbGlwYm9hcmQARGVwdGgAcmIAd3QASW1HdWkgTWV0cmljcwABRGVhciBJbUd1aSAlcwBBcHBsaWNhdGlvbiBhdmVyYWdlICUuM2YgbXMvZnJhbWUgKCUuMWYgRlBTKQAlZCB2ZXJ0aWNlcywgJWQgaW5kaWNlcyAoJWQgdHJpYW5nbGVzKQAlZCBhY3RpdmUgd2luZG93cyAoJWQgdmlzaWJsZSkAJWQgYWxsb2NhdGlvbnMAU2hvdyBjbGlwcGluZyByZWN0YW5nbGVzIHdoZW4gaG92ZXJpbmcgZHJhdyBjb21tYW5kcwBDdHJsIHNob3dzIHdpbmRvdyBiZWdpbiBvcmRlcgBXaW5kb3dzAERyYXdMaXN0AEFjdGl2ZSBEcmF3TGlzdHMgKCVkKQBQb3B1cHMAUG9wdXBzICglZCkAUG9wdXBJRDogJTA4eCwgV2luZG93OiAnJXMnJXMlcwBOVUxMACBDaGlsZFdpbmRvdwAgQ2hpbGRNZW51AFRhYkJhcnMAVGFiIEJhcnMgKCVkKQBJbnRlcm5hbCBzdGF0ZQBOb25lAE1vdXNlAE5hdgBOYXZLZXlib2FyZABOYXZHYW1lcGFkAEhvdmVyZWRXaW5kb3c6ICclcycASG92ZXJlZFJvb3RXaW5kb3c6ICclcycASG92ZXJlZElkOiAweCUwOFgvMHglMDhYICglLjJmIHNlYyksIEFsbG93T3ZlcmxhcDogJWQAQWN0aXZlSWQ6IDB4JTA4WC8weCUwOFggKCUuMmYgc2VjKSwgQWxsb3dPdmVybGFwOiAlZCwgU291cmNlOiAlcwBBY3RpdmVJZFdpbmRvdzogJyVzJwBNb3ZpbmdXaW5kb3c6ICclcycATmF2V2luZG93OiAnJXMnAE5hdklkOiAweCUwOFgsIE5hdkxheWVyOiAlZABOYXZJbnB1dFNvdXJjZTogJXMATmF2QWN0aXZlOiAlZCwgTmF2VmlzaWJsZTogJWQATmF2QWN0aXZhdGVJZDogMHglMDhYLCBOYXZJbnB1dElkOiAweCUwOFgATmF2RGlzYWJsZUhpZ2hsaWdodDogJWQsIE5hdkRpc2FibGVNb3VzZUhvdmVyOiAlZABOYXZXaW5kb3dpbmdUYXJnZXQ6ICclcycARHJhZ0Ryb3A6ICVkLCBTb3VyY2VJZCA9IDB4JTA4WCwgUGF5bG9hZCAiJXMiICglZCBieXRlcykAIyNPdmVybGF5ACVzLyVzXyUwOFgAJXMvJTA4WAAjUkVTSVpFACMjI05hdldpbmRvd2luZ0xpc3QAKFBvcHVwKQAoTWFpbiBtZW51IGJhcikAKFVudGl0bGVkKQBQb3M9JWYsJWYAU2l6ZT0lZiwlZgBDb2xsYXBzZWQ9JWQAIyMjAFslc11bJXNdCgBQb3M9JWQsJWQKAFNpemU9JWQsJWQKAENvbGxhcHNlZD0lZAoAJXMgKCVkKQAlcyAnJXMnLCAlZCBAIDB4JXAAUG9zOiAoJS4xZiwlLjFmKSwgU2l6ZTogKCUuMWYsJS4xZiksIFNpemVDb250ZW50cyAoJS4xZiwlLjFmKQBGbGFnczogMHglMDhYICglcyVzJXMlcyVzJXMlcyVzJXMuLikAQ2hpbGQgAFRvb2x0aXAgAFBvcHVwIABNb2RhbCAAQ2hpbGRNZW51IABOb1NhdmVkU2V0dGluZ3MgAE5vTW91c2VJbnB1dHMATm9OYXZJbnB1dHMAQWx3YXlzQXV0b1Jlc2l6ZQBTY3JvbGw6ICglLjJmLyUuMmYsJS4yZi8lLjJmKQBBY3RpdmU6ICVkLyVkLCBXcml0ZUFjY2Vzc2VkOiAlZCwgQmVnaW5PcmRlcldpdGhpbkNvbnRleHQ6ICVkAEFwcGVhcmluZzogJWQsIEhpZGRlbjogJWQgKFJlZyAlZCBSZXNpemUgJWQpLCBTa2lwSXRlbXM6ICVkAE5hdkxhc3RJZHM6IDB4JTA4WCwweCUwOFgs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bnRDb250ZXh0AERlYnVnQ2hlY2tWZXJzaW9uQW5kRGF0YUxheW91dABHZXRJTwBHZXRTdHlsZQBHZXREcmF3RGF0YQBOZXdGcmFtZQBSZW5kZXIARW5kRnJhbWUAU2hvd0RlbW9XaW5kb3cAU2hvd0Fib3V0V2luZG93AFNob3dNZXRyaWNzV2luZG93AFNob3dTdHlsZUVkaXRvcgBTaG93U3R5bGVTZWxlY3RvcgBTaG93Rm9udFNlbGVjdG9yAFNob3dVc2VyR3VpZGUAR2V0VmVyc2lvbgBTdHlsZUNvbG9yc0RhcmsAU3R5bGVDb2xvcnNDbGFzc2ljAFN0eWxlQ29sb3JzTGlnaHQAQmVnaW4ARW5kAEJlZ2luQ2hpbGQARW5kQ2hpbGQAR2V0Q29udGVudFJlZ2lvbk1heABHZXRDb250ZW50UmVnaW9uQXZhaWwAR2V0Q29udGVudFJlZ2lvbkF2YWlsV2lkdGgAR2V0V2luZG93Q29udGVudFJlZ2lvbk1pbgBHZXRXaW5kb3dDb250ZW50UmVnaW9uTWF4AEdldFdpbmRvd0NvbnRlbnRSZWdpb25XaWR0aABHZXRXaW5kb3dEcmF3TGlzdABHZXRXaW5kb3dQb3MAR2V0V2luZG93U2l6ZQBHZXRXaW5kb3dXaWR0aABHZXRXaW5kb3dIZWlnaHQASXNXaW5kb3dDb2xsYXBzZWQASXNXaW5kb3dBcHBlYXJpbmcAU2V0V2luZG93Rm9udFNjYWxlAFNldE5leHRXaW5kb3dQb3MAU2V0TmV4dFdpbmRvd1NpemUAU2V0TmV4dFdpbmRvd1NpemVDb25zdHJhaW50cwBTZXROZXh0V2luZG93Q29udGVudFNpemUAU2V0TmV4dFdpbmRvd0NvbGxhcHNlZABTZXROZXh0V2luZG93Rm9jdXMAU2V0TmV4dFdpbmRvd0JnQWxwaGEAU2V0V2luZG93UG9zAFNldFdpbmRvd1NpemUAU2V0V2luZG93Q29sbGFwc2VkAFNldFdpbmRvd0ZvY3VzAFNldFdpbmRvd05hbWVQb3MAU2V0V2luZG93TmFtZVNpemUAU2V0V2luZG93TmFtZUNvbGxhcHNlZABTZXRXaW5kb3dOYW1lRm9jdXMAR2V0U2Nyb2xsWABHZXRTY3JvbGxZAEdldFNjcm9sbE1heFgAR2V0U2Nyb2xsTWF4WQBTZXRTY3JvbGxYAFNldFNjcm9sbFkAU2V0U2Nyb2xsSGVyZVkAU2V0U2Nyb2xsRnJvbVBvc1kAU2V0U3RhdGVTdG9yYWdlAEdldFN0YXRlU3RvcmFnZQBQdXNoRm9udABQb3BGb250AFB1c2hTdHlsZUNvbG9yAFBvcFN0eWxlQ29sb3IAUHVzaFN0eWxlVmFyAFBvcFN0eWxlVmFyAEdldFN0eWxlQ29sb3JWZWM0AEdldEZvbnQAR2V0Rm9udFNpemUAR2V0Rm9udFRleFV2V2hpdGVQaXhlbABHZXRDb2xvclUzMl9BAEdldENvbG9yVTMyX0IAR2V0Q29sb3JVMzJfQwBQdXNoSXRlbVdpZHRoAFBvcEl0ZW1XaWR0aABDYWxjSXRlbVdpZHRoAFB1c2hUZXh0V3JhcFBvcwBQb3BUZXh0V3JhcFBvcwBQdXNoQWxsb3dLZXlib2FyZEZvY3VzAFBvcEFsbG93S2V5Ym9hcmRGb2N1cwBQdXNoQnV0dG9uUmVwZWF0AFBvcEJ1dHRvblJlcGVhdABTZXBhcmF0b3IAU2FtZUxpbmUATmV3TGluZQBTcGFjaW5nAER1bW15AEluZGVudABVbmluZGVudABCZWdpbkdyb3VwAEVuZEdyb3VwAEdldEN1cnNvclBvcwBHZXRDdXJzb3JQb3NYAEdldEN1cnNvclBvc1kAU2V0Q3Vyc29yUG9zAFNldEN1cnNvclBvc1gAU2V0Q3Vyc29yUG9zWQBHZXRDdXJzb3JTdGFydFBvcwBHZXRDdXJzb3JTY3JlZW5Qb3MAU2V0Q3Vyc29yU2NyZWVuUG9zAEFsaWduVGV4dFRvRnJhbWVQYWRkaW5nAEdldFRleHRMaW5lSGVpZ2h0AEdldFRleHRMaW5lSGVpZ2h0V2l0aFNwYWNpbmcAR2V0RnJhbWVIZWlnaHQAR2V0RnJhbWVIZWlnaHRXaXRoU3BhY2luZwBDb2x1bW5zAE5leHRDb2x1bW4AR2V0Q29sdW1uSW5kZXgAR2V0Q29sdW1uV2lkdGgAU2V0Q29sdW1uV2lkdGgAR2V0Q29sdW1uT2Zmc2V0AFNldENvbHVtbk9mZnNldABHZXRDb2x1bW5zQ291bnQAUHVzaElEAFBvcElEAEdldElEAFRleHRVbmZvcm1hdHRlZABUZXh0AFRleHRWAFRleHRDb2xvcmVkAFRleHRDb2xvcmVkVgBUZXh0RGlzYWJsZWQAVGV4dERpc2FibGVkVgBUZXh0V3JhcHBlZABUZXh0V3JhcHBlZFYATGFiZWxUZXh0AExhYmVsVGV4dFYAQnVsbGV0VGV4dABCdWxsZXRUZXh0VgBCdWxsZXQAQnV0dG9uAFNtYWxsQnV0dG9uAEFycm93QnV0dG9uAEludmlzaWJsZUJ1dHRvbgBJbWFnZQBJbWFnZUJ1dHRvbgBDaGVja2JveABDaGVja2JveEZsYWdzAFJhZGlvQnV0dG9uX0EAUmFkaW9CdXR0b25fQgBQbG90TGluZXMAUGxvdEhpc3RvZ3JhbQBQcm9ncmVzc0JhcgBCZWdpbkNvbWJvAEVuZENvbWJvAENvbWJvAERyYWdGbG9hdABEcmFnRmxvYXQyAERyYWdGbG9hdDMARHJhZ0Zsb2F0NABEcmFnRmxvYXRSYW5nZTIARHJhZ0ludABEcmFnSW50MgBEcmFnSW50MwBEcmFnSW50NABEcmFnSW50UmFuZ2UyAERyYWdTY2FsYXIASW5wdXRUZXh0AElucHV0VGV4dE11bHRpbGluZQBJbnB1dEZsb2F0AElucHV0RmxvYXQyAElucHV0RmxvYXQzAElucHV0RmxvYXQ0AElucHV0SW50AElucHV0SW50MgBJbnB1dEludDMASW5wdXRJbnQ0AElucHV0RG91YmxlAElucHV0U2NhbGFyAFNsaWRlckZsb2F0AFNsaWRlckZsb2F0MgBTbGlkZXJGbG9hdDMAU2xpZGVyRmxvYXQ0AFNsaWRlckFuZ2xlAFNsaWRlckludABTbGlkZXJJbnQyAFNsaWRlckludDMAU2xpZGVySW50NABTbGlkZXJTY2FsYXIAVlNsaWRlckZsb2F0AFZTbGlkZXJJbnQAVlNsaWRlclNjYWxhcgBDb2xvckVkaXQzAENvbG9yRWRpdDQAQ29sb3JQaWNrZXIzAENvbG9yUGlja2VyNABDb2xvckJ1dHRvbgBTZXRDb2xvckVkaXRPcHRpb25zAFRyZWVOb2RlX0EAVHJlZU5vZGVfQgBUcmVlTm9kZV9DAFRyZWVOb2RlRXhfQQBUcmVlTm9kZUV4X0IAVHJlZU5vZGVFeF9DAFRyZWVQdXNoX0EAVHJlZVB1c2hfQgBUcmVlUG9wAFRyZWVBZHZhbmNlVG9MYWJlbFBvcwBHZXRUcmVlTm9kZVRvTGFiZWxTcGFjaW5nAFNldE5leHRUcmVlTm9kZU9wZW4AQ29sbGFwc2luZ0hlYWRlcl9BAENvbGxhcHNpbmdIZWFkZXJfQgBTZWxlY3RhYmxlX0EAU2VsZWN0YWJsZV9CAExpc3RCb3hfQQBMaXN0Qm94X0IATGlzdEJveEhlYWRlcl9BAExpc3RCb3hIZWFkZXJfQgBMaXN0Qm94Rm9vdGVyAFZhbHVlX0EAVmFsdWVfQgBWYWx1ZV9DAFZhbHVlX0QAU2V0VG9vbHRpcABCZWdpblRvb2x0aXAARW5kVG9vbHRpcABCZWdpbk1haW5NZW51QmFyAEVuZE1haW5NZW51QmFyAEJlZ2luTWVudUJhcgBFbmRNZW51QmFyAEJlZ2luTWVudQBFbmRNZW51AE1lbnVJdGVtX0EATWVudUl0ZW1fQgBPcGVuUG9wdXAAT3BlblBvcHVwT25JdGVtQ2xpY2sAQmVnaW5Qb3B1cABCZWdpblBvcHVwTW9kYWwAQmVnaW5Qb3B1cENvbnRleHRJdGVtAEJlZ2luUG9wdXBDb250ZXh0V2luZG93AEJlZ2luUG9wdXBDb250ZXh0Vm9pZABFbmRQb3B1cABJc1BvcHVwT3BlbgBDbG9zZUN1cnJlbnRQb3B1cABCZWdpblRhYkJhcgBFbmRUYWJCYXIAQmVnaW5UYWJJdGVtAEVuZFRhYkl0ZW0AU2V0VGFiSXRlbUNsb3NlZABMb2dUb1RUWQBMb2dUb0ZpbGUATG9nVG9DbGlwYm9hcmQATG9nRmluaXNoAExvZ0J1dHRvbnMATG9nVGV4dABCZWdpbkRyYWdEcm9wU291cmNlAFNldERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFNvdXJjZQBCZWdpbkRyYWdEcm9wVGFyZ2V0AEFjY2VwdERyYWdEcm9wUGF5bG9hZABFbmREcmFnRHJvcFRhcmdldABHZXREcmFnRHJvcFBheWxvYWQAUHVzaENsaXBSZWN0AFBvcENsaXBSZWN0AFNldEl0ZW1EZWZhdWx0Rm9jdXMAU2V0S2V5Ym9hcmRGb2N1c0hlcmUASXNJdGVtSG92ZXJlZABJc0l0ZW1BY3RpdmUASXNJdGVtRWRpdGVkAElzSXRlbUZvY3VzZWQASXNJdGVtQ2xpY2tlZABJc0l0ZW1WaXNpYmxlAElzSXRlbURlYWN0aXZhdGVkAElzSXRlbURlYWN0aXZhdGVkQWZ0ZXJFZGl0AElzQW55SXRlbUhvdmVyZWQASXNBbnlJdGVtQWN0aXZlAElzQW55SXRlbUZvY3VzZWQAR2V0SXRlbVJlY3RNaW4AR2V0SXRlbVJlY3RNYXgAR2V0SXRlbVJlY3RTaXplAFNldEl0ZW1BbGxvd092ZXJsYXAASXNXaW5kb3dGb2N1c2VkAElzV2luZG93SG92ZXJlZABJc1JlY3RWaXNpYmxlX0EASXNSZWN0VmlzaWJsZV9CAEdldFRpbWUAR2V0RnJhbWVDb3VudABHZXRPdmVybGF5RHJhd0xpc3QAR2V0RHJhd0xpc3RTaGFyZWREYXRhAEdldFN0eWxlQ29sb3JOYW1lAENhbGNUZXh0U2l6ZQBDYWxjTGlzdENsaXBwaW5nAEJlZ2luQ2hpbGRGcmFtZQBFbmRDaGlsZEZyYW1lAENvbG9yQ29udmVydFUzMlRvRmxvYXQ0AENvbG9yQ29udmVydEZsb2F0NFRvVTMyAENvbG9yQ29udmVydFJHQnRvSFNWAENvbG9yQ29udmVydEhTVnRvUkdCAEdldEtleUluZGV4AElzS2V5RG93bgBJc0tleVByZXNzZWQASXNLZXlSZWxlYXNlZABHZXRLZXlQcmVzc2VkQW1vdW50AElzTW91c2VEb3duAElzQW55TW91c2VEb3duAElzTW91c2VDbGlja2VkAElzTW91c2VEb3VibGVDbGlja2VkAElzTW91c2VSZWxlYXNlZABJc01vdXNlRHJhZ2dpbmcASXNNb3VzZUhvdmVyaW5nUmVjdABJc01vdXNlUG9zVmFsaWQAR2V0TW91c2VQb3MAR2V0TW91c2VQb3NPbk9wZW5pbmdDdXJyZW50UG9wdXAAR2V0TW91c2VEcmFnRGVsdGEAUmVzZXRNb3VzZURyYWdEZWx0YQBHZXRNb3VzZUN1cnNvcgBTZXRNb3VzZUN1cnNvcgBDYXB0dXJlS2V5Ym9hcmRGcm9tQXBwAENhcHR1cmVNb3VzZUZyb21BcHAAR2V0Q2xpcGJvYXJkVGV4dABTZXRDbGlwYm9hcmRUZXh0AExvYWRJbmlTZXR0aW5nc0Zyb21NZW1vcnkAU2F2ZUluaVNldHRpbmdzVG9NZW1vcnkAU2V0QWxsb2NhdG9yRnVuY3Rpb25zAE1lbUFsbG9jAE1lbUZyZWUAaWlpAE4xMGVtc2NyaXB0ZW4zdmFsRQB2aWlpaQBOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TXzExY2hhcl90cmFpdHNJY0VFTlNfOWFsbG9jYXRvckljRUVFRQBOU3QzX18yMjFfX2Jhc2ljX3N0cmluZ19jb21tb25JTGIxRUVFAGlpaWZpAHgAeQAyM2ltcG9ydF9tYXliZV9udWxsX3ZhbHVlSTZJbVZlYzJFAGlpaWlpAGlpaWYAaWlpZmYAaWlpaQAxMmFjY2Vzc192YWx1ZUlmTG0xRUUAdmlmZmZpaWkAegB3ADZJbVZlYzIAdmlpZmlpADEyYWNjZXNzX3ZhbHVlSWlMbTFFRQBpaWlpZmkAUDIwSW1EcmF3TGlzdFNoYXJlZERhdGEAMjBJbURyYXdMaXN0U2hhcmVkRGF0YQBQMTBJbURyYXdMaXN0ADEwSW1EcmF3TGlzdABkaQBpaWlpaWkAJXMAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlOU3QzX18yMTJiYXNpY19zdHJpbmdJY05TMF8xMWNoYXJfdHJhaXRzSWNFRU5TMF85YWxsb2NhdG9ySWNFRUVFRQAyNGltcG9ydF9tYXliZV9udWxsX3N0cmluZwAyM2FjY2Vzc19tYXliZV9udWxsX3ZhbHVlSWJMbTFFRQB2aWlmaQB2aWlpAGlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJZkxtNEVFADIzYWNjZXNzX21heWJlX251bGxfdmFsdWVJZkxtNEVFADEyYWNjZXNzX3ZhbHVlSWZMbTNFRQBpaWlpaWlpaWlpAHNldABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lkRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlkRQBsZW5ndGgAYWxsb2NhdG9yPFQ+OjphbGxvY2F0ZShzaXplX3QgbikgJ24nIGV4Y2VlZHMgbWF4aW11bSBzdXBwb3J0ZWQgc2l6ZQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lmRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlmRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lqRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlqRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lpRUUAMjNpbXBvcnRfbWF5YmVfbnVsbF92YWx1ZUlpRQBpaWlpaWlpaWkAMTJhY2Nlc3NfdmFsdWVJaUxtNEVFADEyYWNjZXNzX3ZhbHVlSWlMbTNFRQAxMmFjY2Vzc192YWx1ZUlpTG0yRUUAJS4wZiBkZWcAMTJhY2Nlc3NfdmFsdWVJZkxtMkVFAGlpaWlpaWlpAGlpaWlkZGlpADEyYWNjZXNzX3ZhbHVlSWRMbTFFRQBQMjZJbUd1aUlucHV0VGV4dENhbGxiYWNrRGF0YQAyNkltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAGlpaWlpaWlpaWlpAHZpZmlpAHZpaWlpaWlpaWlpADEyYWNjZXNzX3ZhbHVlSWpMbTFFRQAxMmFjY2Vzc192YWx1ZUliTG0xRUUAdmlpaWlpaWkAbnVtYmVyAHZpaWYAZmlpAGlpAHZpaQBQNkltRm9udAA2SW1Gb250AFBLNkltVmVjNAA2SW1WZWM0AFRPRE86ICVzCgBhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWk6OkVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1HdWkoKTo6KGFub255bW91cyBjbGFzcyk6Om9wZXJhdG9yKCkoZW1zY3JpcHRlbjo6dmFsKSBjb25zdAB2aWZmAHZpaWlpaQBQMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAMjFJbUd1aVNpemVDYWxsYmFja0RhdGEAdmlmAGZpAHN0cmluZwBQMTBJbUd1aVN0eWxlADEwSW1HdWlTdHlsZQB2aQBQMTBJbURyYXdEYXRhADEwSW1EcmF3RGF0YQBQN0ltR3VpSU8AN0ltR3VpSU8AUDE2V3JhcEltR3VpQ29udGV4dAAxNldyYXBJbUd1aUNvbnRleHQAUDExSW1Gb250QXRsYXMAMTFJbUZvbnRBdGxhcwBJbUd1aVN0eWxlAEFscGhhAFdpbmRvd1BhZGRpbmcAV2luZG93Um91bmRpbmcAV2luZG93Qm9yZGVyU2l6ZQBXaW5kb3dNaW5TaXplAFdpbmRvd1RpdGxlQWxpZ24AQ2hpbGRSb3VuZGluZwBDaGlsZEJvcmRlclNpemUAUG9wdXBSb3VuZGluZwBQb3B1cEJvcmRlclNpemUARnJhbWVQYWRkaW5nAEZyYW1lUm91bmRpbmcARnJhbWVCb3JkZXJTaXplAEl0ZW1TcGFjaW5nAEl0ZW1Jbm5lclNwYWNpbmcAVG91Y2hFeHRyYVBhZGRpbmcASW5kZW50U3BhY2luZwBDb2x1bW5zTWluU3BhY2luZwBTY3JvbGxiYXJTaXplAFNjcm9sbGJhclJvdW5kaW5nAEdyYWJNaW5TaXplAEdyYWJSb3VuZGluZwBUYWJSb3VuZGluZwBUYWJCb3JkZXJTaXplAEJ1dHRvblRleHRBbGlnbgBEaXNwbGF5V2luZG93UGFkZGluZwBEaXNwbGF5U2FmZUFyZWFQYWRkaW5nAE1vdXNlQ3Vyc29yU2NhbGUAQW50aUFsaWFzZWRMaW5lcwBBbnRpQWxpYXNlZEZpbGwAQ3VydmVUZXNzZWxsYXRpb25Ub2wAX2dldEF0X0NvbG9ycwBfc2V0QXRfQ29sb3JzAFNjYWxlQWxsU2l6ZXMAUDZJbVZlYzQAUEs2SW1WZWMyAHYAUEsxMEltR3VpU3R5bGUASW1HdWlJTwBDb25maWdGbGFncwBCYWNrZW5kRmxhZ3MARGlzcGxheVNpemUARGVsdGFUaW1lAEluaVNhdmluZ1JhdGUASW5pRmlsZW5hbWUATG9nRmlsZW5hbWUATW91c2VEb3VibGVDbGlja1RpbWUATW91c2VEb3VibGVDbGlja01heERpc3QATW91c2VEcmFnVGhyZXNob2xkAF9nZXRBdF9LZXlNYXAAX3NldEF0X0tleU1hcABLZXlSZXBlYXREZWxheQBLZXlSZXBlYXRSYXRlAFVzZXJEYXRhAEZvbnRzAEZvbnRHbG9iYWxTY2FsZQBGb250QWxsb3dVc2VyU2NhbGluZwBGb250RGVmYXVsdABEaXNwbGF5RnJhbWVidWZmZXJTY2FsZQBEaXNwbGF5VmlzaWJsZU1pbgBEaXNwbGF5VmlzaWJsZU1heABNb3VzZURyYXdDdXJzb3IAQ29uZmlnTWFjT1NYQmVoYXZpb3JzAENvbmZpZ0lucHV0VGV4dEN1cnNvckJsaW5rAENvbmZpZ1dpbmRvd3NSZXNpemVGcm9tRWRnZXMAQ29uZmlnV2luZG93c01vdmVGcm9tVGl0bGVCYXJPbmx5AEdldENsaXBib2FyZFRleHRGbgBTZXRDbGlwYm9hcmRUZXh0Rm4AQ2xpcGJvYXJkVXNlckRhdGEATW91c2VQb3MAX2dldEF0X01vdXNlRG93bgBfc2V0QXRfTW91c2VEb3duAE1vdXNlV2hlZWwAS2V5Q3RybABLZXlTaGlmdABLZXlBbHQAS2V5U3VwZXIAX2dldEF0X0tleXNEb3duAF9zZXRBdF9LZXlzRG93bgBfZ2V0QXRfTmF2SW5wdXRzAF9zZXRBdF9OYXZJbnB1dHMAQWRkSW5wdXRDaGFyYWN0ZXIAQWRkSW5wdXRDaGFyYWN0ZXJzVVRGOABDbGVhcklucHV0Q2hhcmFjdGVycwBXYW50Q2FwdHVyZU1vdXNlAFdhbnRDYXB0dXJlS2V5Ym9hcmQAV2FudFRleHRJbnB1dABXYW50U2V0TW91c2VQb3MAV2FudFNhdmVJbmlTZXR0aW5ncwBOYXZBY3RpdmUATmF2VmlzaWJsZQBGcmFtZXJhdGUATWV0cmljc1JlbmRlclZlcnRpY2VzAE1ldHJpY3NSZW5kZXJJbmRpY2VzAE1ldHJpY3NSZW5kZXJXaW5kb3dzAE1ldHJpY3NBY3RpdmVXaW5kb3dzAE1ldHJpY3NBY3RpdmVBbGxvY2F0aW9ucwBNb3VzZURlbHRhAF9nZXRBdF9Nb3VzZUNsaWNrZWRQb3MAX2dldEF0X01vdXNlRG93bkR1cmF0aW9uAF9nZXRBdF9LZXlzRG93bkR1cmF0aW9uAF9nZXRBdF9OYXZJbnB1dHNEb3duRHVyYXRpb24AUEs3SW1HdWlJTwBpaWlpZgBmaWlpAEltRm9udEF0bGFzAEFkZEZvbnREZWZhdWx0AEFkZEZvbnRGcm9tTWVtb3J5VFRGAENsZWFyVGV4RGF0YQBDbGVhcklucHV0RGF0YQBDbGVhckZvbnRzAENsZWFyAEJ1aWxkAElzQnVpbHQAR2V0VGV4RGF0YUFzQWxwaGE4AEdldFRleERhdGFBc1JHQkEzMgBHZXRHbHlwaFJhbmdlc0RlZmF1bHQAR2V0R2x5cGhSYW5nZXNLb3JlYW4AR2V0R2x5cGhSYW5nZXNKYXBhbmVzZQBHZXRHbHlwaFJhbmdlc0NoaW5lc2VGdWxsAEdldEdseXBoUmFuZ2VzQ2hpbmVzZVNpbXBsaWZpZWRDb21tb24AR2V0R2x5cGhSYW5nZXNDeXJpbGxpYwBHZXRHbHlwaFJhbmdlc1RoYWkATG9ja2VkAEZsYWdzAFRleElEAFRleERlc2lyZWRXaWR0aABUZXhHbHlwaFBhZGRpbmcAVGV4V2lkdGgAVGV4SGVpZ2h0AFRleFV2U2NhbGUAVGV4VXZXaGl0ZVBpeGVsAEl0ZXJhdGVGb250cwBwaXhlbHMAd2lkdGgAaGVpZ2h0AGJ5dGVzX3Blcl9waXhlbABOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0loRUUAaWlpaWZpaQBGb250RGF0YQBidWZmZXIAYnl0ZU9mZnNldABieXRlTGVuZ3RoAFRPRE86IEZvbnREYXRhICV6dSAlenUKAEZvbnREYXRhT3duZWRCeUF0bGFzAEZvbnRObwBTaXplUGl4ZWxzAE92ZXJzYW1wbGVIAE92ZXJzYW1wbGVWAFBpeGVsU25hcEgAR2x5cGhFeHRyYVNwYWNpbmcAR2x5cGhPZmZzZXQAR2x5cGhSYW5nZXMAR2x5cGhNaW5BZHZhbmNlWABHbHlwaE1heEFkdmFuY2VYAE1lcmdlTW9kZQBSYXN0ZXJpemVyRmxhZ3MAUmFzdGVyaXplck11bHRpcGx5AE5hbWUAUEsxMUltRm9udEF0bGFzAEltRm9udABGb250U2l6ZQBTY2FsZQBEaXNwbGF5T2Zmc2V0AEl0ZXJhdGVHbHlwaHMARmFsbGJhY2tHbHlwaABGYWxsYmFja0FkdmFuY2VYAEZhbGxiYWNrQ2hhcgBDb25maWdEYXRhQ291bnQASXRlcmF0ZUNvbmZpZ0RhdGEAQXNjZW50AERlc2NlbnQATWV0cmljc1RvdGFsU3VyZmFjZQBDbGVhck91dHB1dERhdGEAQnVpbGRMb29rdXBUYWJsZQBGaW5kR2x5cGgARmluZEdseXBoTm9GYWxsYmFjawBTZXRGYWxsYmFja0NoYXIAR2V0Q2hhckFkdmFuY2UASXNMb2FkZWQAR2V0RGVidWdOYW1lAENhbGNUZXh0U2l6ZUEAQ2FsY1dvcmRXcmFwUG9zaXRpb25BAFJlbmRlckNoYXIAdmlpaWZpaWkAaWlpZmlmAGlpaWZmZmlpaQA8dW5rbm93bj4AUEs2SW1Gb250AFBLMTFJbUZvbnRHbHlwaAAxMUltRm9udEdseXBoAFAxMkltRm9udENvbmZpZwAxMkltRm9udENvbmZpZwBQMTFJbUZvbnRHbHlwaABJbUZvbnRDb25maWcARHN0Rm9udABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShJbUZvbnRDb25maWcgJiwgZW1zY3JpcHRlbjo6dmFsKSBjb25zdABhdXRvIEVtc2NyaXB0ZW5CaW5kaW5nSW5pdGlhbGl6ZXJfSW1Gb250Q29uZmlnOjpFbXNjcmlwdGVuQmluZGluZ0luaXRpYWxpemVyX0ltRm9udENvbmZpZygpOjooYW5vbnltb3VzIGNsYXNzKTo6b3BlcmF0b3IoKShjb25zdCBJbUZvbnRDb25maWcgJikgY29uc3QAUEsxMkltRm9udENvbmZpZwBJbUZvbnRHbHlwaABDb2RlcG9pbnQAQWR2YW5jZVgAWDAAWTAAWDEAWTEAVTAAVjAAVTEAVjEASW1EcmF3RGF0YQBJdGVyYXRlRHJhd0xpc3RzAFZhbGlkAENtZExpc3RzQ291bnQAVG90YWxJZHhDb3VudABUb3RhbFZ0eENvdW50AERpc3BsYXlQb3MARGVJbmRleEFsbEJ1ZmZlcnMAU2NhbGVDbGlwUmVjdHMAUEsxMEltRHJhd0RhdGEAUEsxMEltRHJhd0xpc3QASW1EcmF3TGlzdABJdGVyYXRlRHJhd0NtZHMASWR4QnVmZmVyAFZ0eEJ1ZmZlcgBQdXNoQ2xpcFJlY3RGdWxsU2NyZWVuAFB1c2hUZXh0dXJlSUQAUG9wVGV4dHVyZUlEAEdldENsaXBSZWN0TWluAEdldENsaXBSZWN0TWF4AEFkZExpbmUAQWRkUmVjdABBZGRSZWN0RmlsbGVkAEFkZFJlY3RGaWxsZWRNdWx0aUNvbG9yAEFkZFF1YWQAQWRkUXVhZEZpbGxlZABBZGRUcmlhbmdsZQBBZGRUcmlhbmdsZUZpbGxlZABBZGRDaXJjbGUAQWRkQ2lyY2xlRmlsbGVkAEFkZFRleHRfQQBBZGRUZXh0X0IAQWRkSW1hZ2UAQWRkSW1hZ2VRdWFkAEFkZEltYWdlUm91bmRlZABBZGRQb2x5bGluZQBBZGRDb252ZXhQb2x5RmlsbGVkAEFkZEJlemllckN1cnZlAFBhdGhDbGVhcgBQYXRoTGluZVRvAFBhdGhMaW5lVG9NZXJnZUR1cGxpY2F0ZQBQYXRoRmlsbENvbnZleABQYXRoU3Ryb2tlAFBhdGhBcmNUbwBQYXRoQXJjVG9GYXN0AFBhdGhCZXppZXJDdXJ2ZVRvAFBhdGhSZWN0AENoYW5uZWxzU3BsaXQAQ2hhbm5lbHNNZXJnZQBDaGFubmVsc1NldEN1cnJlbnQAQWRkQ2FsbGJhY2sAQWRkRHJhd0NtZABDbGVhckZyZWVNZW1vcnkAUHJpbVJlc2VydmUAUHJpbVJlY3QAUHJpbVJlY3RVVgBQcmltUXVhZFVWAFByaW1Xcml0ZVZ0eABQcmltV3JpdGVJZHgAUHJpbVZ0eABVcGRhdGVDbGlwUmVjdABVcGRhdGVUZXh0dXJlSUQAdmlpaWlpaWlpaWlpAHZpaWlpZmkAdmlpaWZmZmkAdmlpaWlmAHZpaWlpaWlpZmkAdmlpaWlpaWlpZmkAdmlpaWlpaWlpaWlpaQB2aWlpZmlpaWZpADIzaW1wb3J0X21heWJlX251bGxfdmFsdWVJNkltVmVjNEUAdmlpaWZpaQB2aWlpZmlpZgB2aWlpaWlpAHZpaWlpaWlmAHZpaWlpaWlpZgB2aWlpaWlpaWkAdmlpaWlpZmkAdmlpaWlpZmlmAHZpaWlpaWYATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJY0VFAFBLOUltRHJhd0NtZAA5SW1EcmF3Q21kAEltRHJhd0NtZABFbGVtQ291bnQAQ2xpcFJlY3QAVGV4dHVyZUlkAFA5SW1EcmF3Q21kAEltR3VpTGlzdENsaXBwZXIAU3RhcnRQb3NZAEl0ZW1zSGVpZ2h0AEl0ZW1zQ291bnQAU3RlcE5vAERpc3BsYXlTdGFydABEaXNwbGF5RW5kAFN0ZXAAUDE2SW1HdWlMaXN0Q2xpcHBlcgAxNkltR3VpTGlzdENsaXBwZXIAdmlpaWYAUEsxNkltR3VpTGlzdENsaXBwZXIASW1HdWlTaXplQ2FsbGJhY2tEYXRhAFBvcwBDdXJyZW50U2l6ZQBEZXNpcmVkU2l6ZQBQSzIxSW1HdWlTaXplQ2FsbGJhY2tEYXRhAEltR3VpSW5wdXRUZXh0Q2FsbGJhY2tEYXRhAEV2ZW50RmxhZwBFdmVudENoYXIARXZlbnRLZXkAQnVmAEJ1ZlRleHRMZW4AQnVmU2l6ZQBCdWZEaXJ0eQBDdXJzb3JQb3MAU2VsZWN0aW9uU3RhcnQAU2VsZWN0aW9uRW5kAERlbGV0ZUNoYXJzAEluc2VydENoYXJzAEhhc1NlbGVjdGlvbgBQSzI2SW1HdWlJbnB1dFRleHRDYWxsYmFja0RhdGEASW1WZWM0AFNldABDb3B5AEVxdWFscwBJbVZlYzIAUDZJbVZlYzIAV3JhcEltR3VpQ29udGV4dABQSzE2V3JhcEltR3VpQ29udGV4dABtYWxsaW5mbwBhcmVuYQBvcmRibGtzAHNtYmxrcwBoYmxrcwBoYmxraGQAdXNtYmxrcwBmc21ibGtzAHVvcmRibGtzAGZvcmRibGtzAGtlZXBjb3N0AHZvaWQAYm9vbABzdGQ6OnN0cmluZwBzdGQ6OmJhc2ljX3N0cmluZzx1bnNpZ25lZCBjaGFyPgBzdGQ6OndzdHJpbmcAZW1zY3JpcHRlbjo6dmFsAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBjaGFyPgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxzaG9ydD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgc2hvcnQ+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8dW5zaWduZWQgaW50PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQ4X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGludDE2X3Q+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PHVpbnQxNl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxpbnQzMl90PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1aW50MzJfdD4AZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZyBkb3VibGU+AE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SWVFRQBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzxkb3VibGU+AGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGZsb2F0PgBlbXNjcmlwdGVuOjptZW1vcnlfdmlldzx1bnNpZ25lZCBsb25nPgBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0ltRUUAZW1zY3JpcHRlbjo6bWVtb3J5X3ZpZXc8bG9uZz4ATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJbEVFAE4xMGVtc2NyaXB0ZW4xMW1lbW9yeV92aWV3SXRFRQBOMTBlbXNjcmlwdGVuMTFtZW1vcnlfdmlld0lzRUUATjEwZW1zY3JpcHRlbjExbWVtb3J5X3ZpZXdJYUVFAGVtc2NyaXB0ZW46Om1lbW9yeV92aWV3PGNoYXI+AE5TdDNfXzIxMmJhc2ljX3N0cmluZ0l3TlNfMTFjaGFyX3RyYWl0c0l3RUVOU185YWxsb2NhdG9ySXdFRUVFAE5TdDNfXzIxMmJhc2ljX3N0cmluZ0loTlNfMTFjaGFyX3RyYWl0c0loRUVOU185YWxsb2NhdG9ySWhFRUVFAGRvdWJsZQBmbG9hdAB1bnNpZ25lZCBsb25nAGxvbmcAdW5zaWduZWQgaW50AGludAB1bnNpZ25lZCBzaG9ydABzaG9ydAB1bnNpZ25lZCBjaGFyAHNpZ25lZCBjaGFyAGNoYXIAAAECBAcDBgUALSsgICAwWDB4AChudWxsKQAtMFgrMFggMFgtMHgrMHggMHgAaW5mAElORgBOQU4ALgBpbmZpbml0eQBuYW4AcndhAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXM6ICVzAHRlcm1pbmF0aW5nIHdpdGggJXMgZXhjZXB0aW9uIG9mIHR5cGUgJXMAdGVybWluYXRpbmcgd2l0aCAlcyBmb3JlaWduIGV4Y2VwdGlvbgB0ZXJtaW5hdGluZwB1bmNhdWdodABTdDlleGNlcHRpb24ATjEwX19jeHhhYml2MTE2X19zaGltX3R5cGVfaW5mb0UAU3Q5dHlwZV9pbmZvAE4xMF9fY3h4YWJpdjEyMF9fc2lfY2xhc3NfdHlwZV9pbmZvRQBOMTBfX2N4eGFiaXYxMTdfX2NsYXNzX3R5cGVfaW5mb0UAcHRocmVhZF9vbmNlIGZhaWx1cmUgaW4gX19jeGFfZ2V0X2dsb2JhbHNfZmFzdCgpAGNhbm5vdCBjcmVhdGUgcHRocmVhZCBrZXkgZm9yIF9fY3hhX2dldF9nbG9iYWxzKCkAY2Fubm90IHplcm8gb3V0IHRocmVhZCB2YWx1ZSBmb3IgX19jeGFfZ2V0X2dsb2JhbHMoKQB0ZXJtaW5hdGVfaGFuZGxlciB1bmV4cGVjdGVkbHkgcmV0dXJuZWQAU3QxMWxvZ2ljX2Vycm9yAFN0MTJsZW5ndGhfZXJyb3IATjEwX19jeHhhYml2MTE5X19wb2ludGVyX3R5cGVfaW5mb0UATjEwX19jeHhhYml2MTE3X19wYmFzZV90eXBlX2luZm9FAE4xMF9fY3h4YWJpdjEyM19fZnVuZGFtZW50YWxfdHlwZV9pbmZvRQB2AFB2AERuAGIAYwBoAGEAcwB0AGkAagBsAG0AZgBkAE4xMF9fY3h4YWJpdjEyMV9fdm1pX2NsYXNzX3R5cGVfaW5mb0U=\";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}function getBinary(){try{if(Module[\"wasmBinary\"]){return new Uint8Array(Module[\"wasmBinary\"])}var binary=tryParseAsDataURI(wasmBinaryFile);if(binary){return binary}if(Module[\"readBinary\"]){return Module[\"readBinary\"](wasmBinaryFile)}else{throw\"both async and sync fetching of the wasm failed\"}}catch(err){abort(err)}}function getBinaryPromise(){if(!Module[\"wasmBinary\"]&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&typeof fetch===\"function\"){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()})}return new Promise(function(resolve,reject){resolve(getBinary())})}function createWasm(env){var info={\"env\":env,\"global\":{\"NaN\":NaN,Infinity:Infinity},\"global.Math\":Math,\"asm2wasm\":asm2wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module[\"asm\"]=exports;removeRunDependency(\"wasm-instantiate\")}addRunDependency(\"wasm-instantiate\");function receiveInstantiatedSource(output){receiveInstance(output[\"instance\"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(receiver,function(reason){err(\"failed to asynchronously prepare wasm: \"+reason);abort(reason)})}function instantiateAsync(){if(!Module[\"wasmBinary\"]&&typeof WebAssembly.instantiateStreaming===\"function\"&&!isDataURI(wasmBinaryFile)&&typeof fetch===\"function\"){return WebAssembly.instantiateStreaming(fetch(wasmBinaryFile,{credentials:\"same-origin\"}),info).then(receiveInstantiatedSource,function(reason){err(\"wasm streaming compile failed: \"+reason);err(\"falling back to ArrayBuffer instantiation\");instantiateArrayBuffer(receiveInstantiatedSource)})}else{return instantiateArrayBuffer(receiveInstantiatedSource)}}if(Module[\"instantiateWasm\"]){try{return Module[\"instantiateWasm\"](info,receiveInstance)}catch(e){err(\"Module.instantiateWasm callback failed with error: \"+e);return false}}instantiateAsync();return{}}Module[\"asm\"]=function(global,env,providedBuffer){env[\"memory\"]=wasmMemory;env[\"table\"]=wasmTable=new WebAssembly.Table({\"initial\":1442,\"maximum\":1442,\"element\":\"anyfunc\"});env[\"__memory_base\"]=1024;env[\"__table_base\"]=0;var exports=createWasm(env);return exports};__ATINIT__.push({func:function(){globalCtors()}});function ___cxa_allocate_exception(size){return _malloc(size)}function __ZSt18uncaught_exceptionv(){return!!__ZSt18uncaught_exceptionv.uncaught_exception}function ___cxa_free_exception(ptr){try{return _free(ptr)}catch(e){}}var EXCEPTIONS={last:0,caught:[],infos:{},deAdjust:function(adjusted){if(!adjusted||EXCEPTIONS.infos[adjusted])return adjusted;for(var key in EXCEPTIONS.infos){var ptr=+key;var adj=EXCEPTIONS.infos[ptr].adjusted;var len=adj.length;for(var i=0;i0);info.refcount--;if(info.refcount===0&&!info.rethrown){if(info.destructor){Module[\"dynCall_vi\"](info.destructor,ptr)}delete EXCEPTIONS.infos[ptr];___cxa_free_exception(ptr)}},clearRef:function(ptr){if(!ptr)return;var info=EXCEPTIONS.infos[ptr];info.refcount=0}};function ___cxa_throw(ptr,type,destructor){EXCEPTIONS.infos[ptr]={ptr:ptr,adjusted:[ptr],type:type,destructor:destructor,refcount:0,caught:false,rethrown:false};EXCEPTIONS.last=ptr;if(!(\"uncaught_exception\"in __ZSt18uncaught_exceptionv)){__ZSt18uncaught_exceptionv.uncaught_exception=1}else{__ZSt18uncaught_exceptionv.uncaught_exception++}throw ptr}function ___lock(){}var PATH={splitPath:function(filename){var splitPathRe=/^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:function(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:function(path){var isAbsolute=path.charAt(0)===\"/\",trailingSlash=path.substr(-1)===\"/\";path=PATH.normalizeArray(path.split(\"/\").filter(function(p){return!!p}),!isAbsolute).join(\"/\");if(!path&&!isAbsolute){path=\".\"}if(path&&trailingSlash){path+=\"/\"}return(isAbsolute?\"/\":\"\")+path},dirname:function(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:function(path){if(path===\"/\")return\"/\";var lastSlash=path.lastIndexOf(\"/\");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},extname:function(path){return PATH.splitPath(path)[3]},join:function(){var paths=Array.prototype.slice.call(arguments,0);return PATH.normalize(paths.join(\"/\"))},join2:function(l,r){return PATH.normalize(l+\"/\"+r)}};var SYSCALLS={buffers:[null,[],[]],printChar:function(stream,curr){var buffer=SYSCALLS.buffers[stream];if(curr===0||curr===10){(stream===1?out:err)(UTF8ArrayToString(buffer,0));buffer.length=0}else{buffer.push(curr)}},varargs:0,get:function(varargs){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(){var ret=UTF8ToString(SYSCALLS.get());return ret},get64:function(){var low=SYSCALLS.get(),high=SYSCALLS.get();return low},getZero:function(){SYSCALLS.get()}};function ___syscall140(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),offset_high=SYSCALLS.get(),offset_low=SYSCALLS.get(),result=SYSCALLS.get(),whence=SYSCALLS.get();return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall145(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();return SYSCALLS.doReadv(stream,iov,iovcnt)}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall146(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.get(),iov=SYSCALLS.get(),iovcnt=SYSCALLS.get();var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];for(var j=0;j>2]=value;return value}function ___syscall221(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall5(which,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(),flags=SYSCALLS.get(),mode=SYSCALLS.get();var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall54(which,varargs){SYSCALLS.varargs=varargs;try{return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___syscall6(which,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD();return 0}catch(e){if(typeof FS===\"undefined\"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___unlock(){}function getShiftFromSize(size){switch(size){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError(\"Unknown type size: \"+size)}}function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<256;++i){codes[i]=String.fromCharCode(i)}embind_charCodes=codes}var embind_charCodes=undefined;function readLatin1String(ptr){var ret=\"\";var c=ptr;while(HEAPU8[c]){ret+=embind_charCodes[HEAPU8[c++]]}return ret}var awaitingDependencies={};var registeredTypes={};var typeDependencies={};var char_0=48;var char_9=57;function makeLegalFunctionName(name){if(undefined===name){return\"_unknown\"}name=name.replace(/[^a-zA-Z0-9_]/g,\"$\");var f=name.charCodeAt(0);if(f>=char_0&&f<=char_9){return\"_\"+name}else{return name}}function createNamedFunction(name,body){name=makeLegalFunctionName(name);return new Function(\"body\",\"return function \"+name+\"() {\\n\"+' \"use strict\";'+\" return body.apply(this, arguments);\\n\"+\"};\\n\")(body)}function extendError(baseErrorType,errorName){var errorClass=createNamedFunction(errorName,function(message){this.name=errorName;this.message=message;var stack=new Error(message).stack;if(stack!==undefined){this.stack=this.toString()+\"\\n\"+stack.replace(/^Error(:[^\\n]*)?\\n/,\"\")}});errorClass.prototype=Object.create(baseErrorType.prototype);errorClass.prototype.constructor=errorClass;errorClass.prototype.toString=function(){if(this.message===undefined){return this.name}else{return this.name+\": \"+this.message}};return errorClass}var BindingError=undefined;function throwBindingError(message){throw new BindingError(message)}var InternalError=undefined;function throwInternalError(message){throw new InternalError(message)}function whenDependentTypesAreResolved(myTypes,dependentTypes,getTypeConverters){myTypes.forEach(function(type){typeDependencies[type]=dependentTypes});function onComplete(typeConverters){var myTypeConverters=getTypeConverters(typeConverters);if(myTypeConverters.length!==myTypes.length){throwInternalError(\"Mismatched type converter count\")}for(var i=0;i>shift])},destructorFunction:null})}function ClassHandle_isAliasOf(other){if(!(this instanceof ClassHandle)){return false}if(!(other instanceof ClassHandle)){return false}var leftClass=this.$$.ptrType.registeredClass;var left=this.$$.ptr;var rightClass=other.$$.ptrType.registeredClass;var right=other.$$.ptr;while(leftClass.baseClass){left=leftClass.upcast(left);leftClass=leftClass.baseClass}while(rightClass.baseClass){right=rightClass.upcast(right);rightClass=rightClass.baseClass}return leftClass===rightClass&&left===right}function shallowCopyInternalPointer(o){return{count:o.count,deleteScheduled:o.deleteScheduled,preservePointerOnDelete:o.preservePointerOnDelete,ptr:o.ptr,ptrType:o.ptrType,smartPtr:o.smartPtr,smartPtrType:o.smartPtrType}}function throwInstanceAlreadyDeleted(obj){function getInstanceTypeName(handle){return handle.$$.ptrType.registeredClass.name}throwBindingError(getInstanceTypeName(obj)+\" instance already deleted\")}var finalizationGroup=false;function detachFinalizer(handle){}function runDestructor($$){if($$.smartPtr){$$.smartPtrType.rawDestructor($$.smartPtr)}else{$$.ptrType.registeredClass.rawDestructor($$.ptr)}}function releaseClassHandle($$){$$.count.value-=1;var toDelete=0===$$.count.value;if(toDelete){runDestructor($$)}}function attachFinalizer(handle){if(\"undefined\"===typeof FinalizationGroup){attachFinalizer=function(handle){return handle};return handle}finalizationGroup=new FinalizationGroup(function(iter){for(var result=iter.next();!result.done;result=iter.next()){var $$=result.value;if(!$$.ptr){console.warn(\"object already deleted: \"+$$.ptr)}else{releaseClassHandle($$)}}});attachFinalizer=function(handle){finalizationGroup.register(handle,handle.$$,handle.$$);return handle};detachFinalizer=function(handle){finalizationGroup.unregister(handle.$$)};return attachFinalizer(handle)}function ClassHandle_clone(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.preservePointerOnDelete){this.$$.count.value+=1;return this}else{var clone=attachFinalizer(Object.create(Object.getPrototypeOf(this),{$$:{value:shallowCopyInternalPointer(this.$$)}}));clone.$$.count.value+=1;clone.$$.deleteScheduled=false;return clone}}function ClassHandle_delete(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError(\"Object already scheduled for deletion\")}detachFinalizer(this);releaseClassHandle(this.$$);if(!this.$$.preservePointerOnDelete){this.$$.smartPtr=undefined;this.$$.ptr=undefined}}function ClassHandle_isDeleted(){return!this.$$.ptr}var delayFunction=undefined;var deletionQueue=[];function flushPendingDeletes(){while(deletionQueue.length){var obj=deletionQueue.pop();obj.$$.deleteScheduled=false;obj[\"delete\"]()}}function ClassHandle_deleteLater(){if(!this.$$.ptr){throwInstanceAlreadyDeleted(this)}if(this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete){throwBindingError(\"Object already scheduled for deletion\")}deletionQueue.push(this);if(deletionQueue.length===1&&delayFunction){delayFunction(flushPendingDeletes)}this.$$.deleteScheduled=true;return this}function init_ClassHandle(){ClassHandle.prototype[\"isAliasOf\"]=ClassHandle_isAliasOf;ClassHandle.prototype[\"clone\"]=ClassHandle_clone;ClassHandle.prototype[\"delete\"]=ClassHandle_delete;ClassHandle.prototype[\"isDeleted\"]=ClassHandle_isDeleted;ClassHandle.prototype[\"deleteLater\"]=ClassHandle_deleteLater}function ClassHandle(){}var registeredPointers={};function ensureOverloadTable(proto,methodName,humanName){if(undefined===proto[methodName].overloadTable){var prevFunc=proto[methodName];proto[methodName]=function(){if(!proto[methodName].overloadTable.hasOwnProperty(arguments.length)){throwBindingError(\"Function '\"+humanName+\"' called with an invalid number of arguments (\"+arguments.length+\") - expects one of (\"+proto[methodName].overloadTable+\")!\")}return proto[methodName].overloadTable[arguments.length].apply(this,arguments)};proto[methodName].overloadTable=[];proto[methodName].overloadTable[prevFunc.argCount]=prevFunc}}function exposePublicSymbol(name,value,numArguments){if(Module.hasOwnProperty(name)){if(undefined===numArguments||undefined!==Module[name].overloadTable&&undefined!==Module[name].overloadTable[numArguments]){throwBindingError(\"Cannot register public name '\"+name+\"' twice\")}ensureOverloadTable(Module,name,name);if(Module.hasOwnProperty(numArguments)){throwBindingError(\"Cannot register multiple overloads of a function with the same number of arguments (\"+numArguments+\")!\")}Module[name].overloadTable[numArguments]=value}else{Module[name]=value;if(undefined!==numArguments){Module[name].numArguments=numArguments}}}function RegisteredClass(name,constructor,instancePrototype,rawDestructor,baseClass,getActualType,upcast,downcast){this.name=name;this.constructor=constructor;this.instancePrototype=instancePrototype;this.rawDestructor=rawDestructor;this.baseClass=baseClass;this.getActualType=getActualType;this.upcast=upcast;this.downcast=downcast;this.pureVirtualFunctions=[]}function upcastPointer(ptr,ptrClass,desiredClass){while(ptrClass!==desiredClass){if(!ptrClass.upcast){throwBindingError(\"Expected null or instance of \"+desiredClass.name+\", got an instance of \"+ptrClass.name)}ptr=ptrClass.upcast(ptr);ptrClass=ptrClass.baseClass}return ptr}function constNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function genericPointerToWireType(destructors,handle){var ptr;if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}if(this.isSmartPointer){ptr=this.rawConstructor();if(destructors!==null){destructors.push(this.rawDestructor,ptr)}return ptr}else{return 0}}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}if(!this.isConst&&handle.$$.ptrType.isConst){throwBindingError(\"Cannot convert argument of type \"+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+\" to parameter type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);if(this.isSmartPointer){if(undefined===handle.$$.smartPtr){throwBindingError(\"Passing raw pointer to smart pointer is illegal\")}switch(this.sharingPolicy){case 0:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{throwBindingError(\"Cannot convert argument of type \"+(handle.$$.smartPtrType?handle.$$.smartPtrType.name:handle.$$.ptrType.name)+\" to parameter type \"+this.name)}break;case 1:ptr=handle.$$.smartPtr;break;case 2:if(handle.$$.smartPtrType===this){ptr=handle.$$.smartPtr}else{var clonedHandle=handle[\"clone\"]();ptr=this.rawShare(ptr,__emval_register(function(){clonedHandle[\"delete\"]()}));if(destructors!==null){destructors.push(this.rawDestructor,ptr)}}break;default:throwBindingError(\"Unsupporting sharing policy\")}}return ptr}function nonConstNoSmartPtrRawPointerToWireType(destructors,handle){if(handle===null){if(this.isReference){throwBindingError(\"null is not a valid \"+this.name)}return 0}if(!handle.$$){throwBindingError('Cannot pass \"'+_embind_repr(handle)+'\" as a '+this.name)}if(!handle.$$.ptr){throwBindingError(\"Cannot pass deleted object as a pointer of type \"+this.name)}if(handle.$$.ptrType.isConst){throwBindingError(\"Cannot convert argument of type \"+handle.$$.ptrType.name+\" to parameter type \"+this.name)}var handleClass=handle.$$.ptrType.registeredClass;var ptr=upcastPointer(handle.$$.ptr,handleClass,this.registeredClass);return ptr}function simpleReadValueFromPointer(pointer){return this[\"fromWireType\"](HEAPU32[pointer>>2])}function RegisteredPointer_getPointee(ptr){if(this.rawGetPointee){ptr=this.rawGetPointee(ptr)}return ptr}function RegisteredPointer_destructor(ptr){if(this.rawDestructor){this.rawDestructor(ptr)}}function RegisteredPointer_deleteObject(handle){if(handle!==null){handle[\"delete\"]()}}function downcastPointer(ptr,ptrClass,desiredClass){if(ptrClass===desiredClass){return ptr}if(undefined===desiredClass.baseClass){return null}var rv=downcastPointer(ptr,ptrClass,desiredClass.baseClass);if(rv===null){return null}return desiredClass.downcast(rv)}function getInheritedInstanceCount(){return Object.keys(registeredInstances).length}function getLiveInheritedInstances(){var rv=[];for(var k in registeredInstances){if(registeredInstances.hasOwnProperty(k)){rv.push(registeredInstances[k])}}return rv}function setDelayFunction(fn){delayFunction=fn;if(deletionQueue.length&&delayFunction){delayFunction(flushPendingDeletes)}}function init_embind(){Module[\"getInheritedInstanceCount\"]=getInheritedInstanceCount;Module[\"getLiveInheritedInstances\"]=getLiveInheritedInstances;Module[\"flushPendingDeletes\"]=flushPendingDeletes;Module[\"setDelayFunction\"]=setDelayFunction}var registeredInstances={};function getBasestPointer(class_,ptr){if(ptr===undefined){throwBindingError(\"ptr should not be undefined\")}while(class_.baseClass){ptr=class_.upcast(ptr);class_=class_.baseClass}return ptr}function getInheritedInstance(class_,ptr){ptr=getBasestPointer(class_,ptr);return registeredInstances[ptr]}function makeClassHandle(prototype,record){if(!record.ptrType||!record.ptr){throwInternalError(\"makeClassHandle requires ptr and ptrType\")}var hasSmartPtrType=!!record.smartPtrType;var hasSmartPtr=!!record.smartPtr;if(hasSmartPtrType!==hasSmartPtr){throwInternalError(\"Both smartPtrType and smartPtr must be specified\")}record.count={value:1};return attachFinalizer(Object.create(prototype,{$$:{value:record}}))}function RegisteredPointer_fromWireType(ptr){var rawPointer=this.getPointee(ptr);if(!rawPointer){this.destructor(ptr);return null}var registeredInstance=getInheritedInstance(this.registeredClass,rawPointer);if(undefined!==registeredInstance){if(0===registeredInstance.$$.count.value){registeredInstance.$$.ptr=rawPointer;registeredInstance.$$.smartPtr=ptr;return registeredInstance[\"clone\"]()}else{var rv=registeredInstance[\"clone\"]();this.destructor(ptr);return rv}}function makeDefaultHandle(){if(this.isSmartPointer){return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:rawPointer,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(this.registeredClass.instancePrototype,{ptrType:this,ptr:ptr})}}var actualType=this.registeredClass.getActualType(rawPointer);var registeredPointerRecord=registeredPointers[actualType];if(!registeredPointerRecord){return makeDefaultHandle.call(this)}var toType;if(this.isConst){toType=registeredPointerRecord.constPointerType}else{toType=registeredPointerRecord.pointerType}var dp=downcastPointer(rawPointer,this.registeredClass,toType.registeredClass);if(dp===null){return makeDefaultHandle.call(this)}if(this.isSmartPointer){return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp,smartPtrType:this,smartPtr:ptr})}else{return makeClassHandle(toType.registeredClass.instancePrototype,{ptrType:toType,ptr:dp})}}function init_RegisteredPointer(){RegisteredPointer.prototype.getPointee=RegisteredPointer_getPointee;RegisteredPointer.prototype.destructor=RegisteredPointer_destructor;RegisteredPointer.prototype[\"argPackAdvance\"]=8;RegisteredPointer.prototype[\"readValueFromPointer\"]=simpleReadValueFromPointer;RegisteredPointer.prototype[\"deleteObject\"]=RegisteredPointer_deleteObject;RegisteredPointer.prototype[\"fromWireType\"]=RegisteredPointer_fromWireType}function RegisteredPointer(name,registeredClass,isReference,isConst,isSmartPointer,pointeeType,sharingPolicy,rawGetPointee,rawConstructor,rawShare,rawDestructor){this.name=name;this.registeredClass=registeredClass;this.isReference=isReference;this.isConst=isConst;this.isSmartPointer=isSmartPointer;this.pointeeType=pointeeType;this.sharingPolicy=sharingPolicy;this.rawGetPointee=rawGetPointee;this.rawConstructor=rawConstructor;this.rawShare=rawShare;this.rawDestructor=rawDestructor;if(!isSmartPointer&®isteredClass.baseClass===undefined){if(isConst){this[\"toWireType\"]=constNoSmartPtrRawPointerToWireType;this.destructorFunction=null}else{this[\"toWireType\"]=nonConstNoSmartPtrRawPointerToWireType;this.destructorFunction=null}}else{this[\"toWireType\"]=genericPointerToWireType}}function replacePublicSymbol(name,value,numArguments){if(!Module.hasOwnProperty(name)){throwInternalError(\"Replacing nonexistant public symbol\")}if(undefined!==Module[name].overloadTable&&undefined!==numArguments){Module[name].overloadTable[numArguments]=value}else{Module[name]=value;Module[name].argCount=numArguments}}function embind__requireFunction(signature,rawFunction){signature=readLatin1String(signature);function makeDynCaller(dynCall){var args=[];for(var i=1;i>2)+i])}return array}function runDestructors(destructors){while(destructors.length){var ptr=destructors.pop();var del=destructors.pop();del(ptr)}}function __embind_register_class_constructor(rawClassType,argCount,rawArgTypesAddr,invokerSignature,invoker,rawConstructor){var rawArgTypes=heap32VectorToArray(argCount,rawArgTypesAddr);invoker=embind__requireFunction(invokerSignature,invoker);whenDependentTypesAreResolved([],[rawClassType],function(classType){classType=classType[0];var humanName=\"constructor \"+classType.name;if(undefined===classType.registeredClass.constructor_body){classType.registeredClass.constructor_body=[]}if(undefined!==classType.registeredClass.constructor_body[argCount-1]){throw new BindingError(\"Cannot register multiple constructors with identical number of parameters (\"+(argCount-1)+\") for class '\"+classType.name+\"'! Overload resolution is currently only performed using the parameter count, not actual type info!\")}classType.registeredClass.constructor_body[argCount-1]=function unboundTypeHandler(){throwUnboundTypeError(\"Cannot construct \"+classType.name+\" due to unbound types\",rawArgTypes)};whenDependentTypesAreResolved([],rawArgTypes,function(argTypes){classType.registeredClass.constructor_body[argCount-1]=function constructor_body(){if(arguments.length!==argCount-1){throwBindingError(humanName+\" called with \"+arguments.length+\" arguments, expected \"+(argCount-1))}var destructors=[];var args=new Array(argCount);args[0]=rawConstructor;for(var i=1;i0?\", \":\"\")+argsListWired}invokerFnBody+=(returns?\"var rv = \":\"\")+\"invoker(fn\"+(argsListWired.length>0?\", \":\"\")+argsListWired+\");\\n\";if(needsDestructorStack){invokerFnBody+=\"runDestructors(destructors);\\n\"}else{for(var i=isClassMethodFunc?1:2;i4&&0===--emval_handle_array[handle].refcount){emval_handle_array[handle]=undefined;emval_free_list.push(handle)}}function count_emval_handles(){var count=0;for(var i=5;i>2])};case 3:return function(pointer){return this[\"fromWireType\"](HEAPF64[pointer>>3])};default:throw new TypeError(\"Unknown float type: \"+name)}}function __embind_register_float(rawType,name,size){var shift=getShiftFromSize(size);name=readLatin1String(name);registerType(rawType,{name:name,\"fromWireType\":function(value){return value},\"toWireType\":function(destructors,value){if(typeof value!==\"number\"&&typeof value!==\"boolean\"){throw new TypeError('Cannot convert \"'+_embind_repr(value)+'\" to '+this.name)}return value},\"argPackAdvance\":8,\"readValueFromPointer\":floatReadValueFromPointer(name,shift),destructorFunction:null})}function __embind_register_function(name,argCount,rawArgTypesAddr,signature,rawInvoker,fn){var argTypes=heap32VectorToArray(argCount,rawArgTypesAddr);name=readLatin1String(name);rawInvoker=embind__requireFunction(signature,rawInvoker);exposePublicSymbol(name,function(){throwUnboundTypeError(\"Cannot call \"+name+\" due to unbound types\",argTypes)},argCount-1);whenDependentTypesAreResolved([],argTypes,function(argTypes){var invokerArgsArray=[argTypes[0],null].concat(argTypes.slice(1));replacePublicSymbol(name,craftInvokerFunction(name,invokerArgsArray,null,rawInvoker,fn),argCount-1);return[]})}function integerReadValueFromPointer(name,shift,signed){switch(shift){case 0:return signed?function readS8FromPointer(pointer){return HEAP8[pointer]}:function readU8FromPointer(pointer){return HEAPU8[pointer]};case 1:return signed?function readS16FromPointer(pointer){return HEAP16[pointer>>1]}:function readU16FromPointer(pointer){return HEAPU16[pointer>>1]};case 2:return signed?function readS32FromPointer(pointer){return HEAP32[pointer>>2]}:function readU32FromPointer(pointer){return HEAPU32[pointer>>2]};default:throw new TypeError(\"Unknown integer type: \"+name)}}function __embind_register_integer(primitiveType,name,size,minRange,maxRange){name=readLatin1String(name);if(maxRange===-1){maxRange=4294967295}var shift=getShiftFromSize(size);var fromWireType=function(value){return value};if(minRange===0){var bitshift=32-8*size;fromWireType=function(value){return value<>>bitshift}}var isUnsignedType=name.indexOf(\"unsigned\")!=-1;registerType(primitiveType,{name:name,\"fromWireType\":fromWireType,\"toWireType\":function(destructors,value){if(typeof value!==\"number\"&&typeof value!==\"boolean\"){throw new TypeError('Cannot convert \"'+_embind_repr(value)+'\" to '+this.name)}if(valuemaxRange){throw new TypeError('Passing a number \"'+_embind_repr(value)+'\" from JS side to C/C++ side to an argument of type \"'+name+'\", which is outside the valid range ['+minRange+\", \"+maxRange+\"]!\")}return isUnsignedType?value>>>0:value|0},\"argPackAdvance\":8,\"readValueFromPointer\":integerReadValueFromPointer(name,shift,minRange!==0),destructorFunction:null})}function __embind_register_memory_view(rawType,dataTypeIndex,name){var typeMapping=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];var TA=typeMapping[dataTypeIndex];function decodeMemoryView(handle){handle=handle>>2;var heap=HEAPU32;var size=heap[handle];var data=heap[handle+1];return new TA(heap[\"buffer\"],data,size)}name=readLatin1String(name);registerType(rawType,{name:name,\"fromWireType\":decodeMemoryView,\"argPackAdvance\":8,\"readValueFromPointer\":decodeMemoryView},{ignoreDuplicateRegistrations:true})}function __embind_register_std_string(rawType,name){name=readLatin1String(name);var stdStringIsUTF8=name===\"std::string\";registerType(rawType,{name:name,\"fromWireType\":function(value){var length=HEAPU32[value>>2];var str;if(stdStringIsUTF8){var endChar=HEAPU8[value+4+length];var endCharSwap=0;if(endChar!=0){endCharSwap=endChar;HEAPU8[value+4+length]=0}var decodeStartPtr=value+4;for(var i=0;i<=length;++i){var currentBytePtr=value+4+i;if(HEAPU8[currentBytePtr]==0){var stringSegment=UTF8ToString(decodeStartPtr);if(str===undefined)str=stringSegment;else{str+=String.fromCharCode(0);str+=stringSegment}decodeStartPtr=currentBytePtr+1}}if(endCharSwap!=0)HEAPU8[value+4+length]=endCharSwap}else{var a=new Array(length);for(var i=0;i>2]=length;if(stdStringIsUTF8&&valueIsOfTypeString){stringToUTF8(value,ptr+4,length+1)}else{if(valueIsOfTypeString){for(var i=0;i255){_free(ptr);throwBindingError(\"String has UTF-16 code units that do not fit in 8 bits\")}HEAPU8[ptr+4+i]=charCode}}else{for(var i=0;i>2];var a=new Array(length);var start=value+4>>shift;for(var i=0;i>2]=length;var start=ptr+4>>shift;for(var i=0;i>2]=rd;return returnType[\"toWireType\"](destructors,handle)}function __emval_lookupTypes(argCount,argTypes,argWireTypes){var a=new Array(argCount);for(var i=0;i>2)+i],\"parameter \"+i)}return a}function __emval_call(handle,argCount,argTypes,argv){handle=requireHandle(handle);var types=__emval_lookupTypes(argCount,argTypes);var args=new Array(argCount);for(var i=0;i4){emval_handle_array[handle].refcount+=1}}function __emval_new_array(){return __emval_register([])}function __emval_new_cstring(v){return __emval_register(getStringOrSymbol(v))}function __emval_new_object(){return __emval_register({})}function __emval_run_destructors(handle){var destructors=emval_handle_array[handle].value;runDestructors(destructors);__emval_decref(handle)}function __emval_set_property(handle,key,value){handle=requireHandle(handle);key=requireHandle(key);value=requireHandle(value);handle[key]=value}function __emval_strictly_equals(first,second){first=requireHandle(first);second=requireHandle(second);return first===second}function __emval_take_value(type,argv){type=requireRegisteredType(type,\"_emval_take_value\");var v=type[\"readValueFromPointer\"](argv);return __emval_register(v)}function __emval_typeof(handle){handle=requireHandle(handle);return __emval_register(typeof handle)}function _abort(){Module[\"abort\"]()}function _emscripten_get_heap_size(){return HEAP8.length}function _emscripten_memcpy_big(dest,src,num){HEAPU8.set(HEAPU8.subarray(src,src+num),dest)}function abortOnCannotGrowMemory(requestedSize){abort(\"OOM\")}function _emscripten_resize_heap(requestedSize){abortOnCannotGrowMemory(requestedSize)}embind_init_charCodes();BindingError=Module[\"BindingError\"]=extendError(Error,\"BindingError\");InternalError=Module[\"InternalError\"]=extendError(Error,\"InternalError\");init_ClassHandle();init_RegisteredPointer();init_embind();UnboundTypeError=Module[\"UnboundTypeError\"]=extendError(Error,\"UnboundTypeError\");init_emval();var ASSERTIONS=false;function intArrayToString(array){var ret=[];for(var i=0;i255){if(ASSERTIONS){assert(false,\"Character code \"+chr+\" (\"+String.fromCharCode(chr)+\") at offset \"+i+\" not in 0x00-0xFF.\")}chr&=255}ret.push(String.fromCharCode(chr))}return ret.join(\"\")}var decodeBase64=typeof atob===\"function\"?atob:function(input){var keyStr=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";var output=\"\";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\\+\\/\\=]/g,\"\");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(i0){return}preRun();if(runDependencies>0)return;if(Module[\"calledRun\"])return;function doRun(){if(Module[\"calledRun\"])return;Module[\"calledRun\"]=true;if(ABORT)return;ensureInitRuntime();preMain();if(Module[\"onRuntimeInitialized\"])Module[\"onRuntimeInitialized\"]();postRun()}if(Module[\"setStatus\"]){Module[\"setStatus\"](\"Running...\");setTimeout(function(){setTimeout(function(){Module[\"setStatus\"](\"\")},1);doRun()},1)}else{doRun()}}Module[\"run\"]=run;function abort(what){if(Module[\"onAbort\"]){Module[\"onAbort\"](what)}if(what!==undefined){out(what);err(what);what=JSON.stringify(what)}else{what=\"\"}ABORT=true;EXITSTATUS=1;throw\"abort(\"+what+\"). Build with -s ASSERTIONS=1 for more info.\"}Module[\"abort\"]=abort;if(Module[\"preInit\"]){if(typeof Module[\"preInit\"]==\"function\")Module[\"preInit\"]=[Module[\"preInit\"]];while(Module[\"preInit\"].length>0){Module[\"preInit\"].pop()()}}Module[\"noExitRuntime\"]=true;run();\n\n\n return Module\n}\n);\n})();\nif (typeof exports === 'object' && typeof module === 'object')\n module.exports = Module;\n else if (typeof define === 'function' && define['amd'])\n define([], function() { return Module; });\n else if (typeof exports === 'object')\n exports[\"Module\"] = Module;\n ","export interface XY { x: number, y: number; }\nexport interface XYZ extends XY { z: number; }\nexport interface XYZW extends XYZ { w: number; }\n\nexport interface RGB { r: number; g: number; b: number; }\nexport interface RGBA extends RGB { a: number; }\n\nimport * as Bind from \"./bind-imgui\";\nexport { Bind };\n\nlet bind: Bind.Module;\nexport default async function(value?: Partial): Promise {\n return new Promise((resolve: () => void) => {\n Bind.default(value).then((value: Bind.Module): void => {\n bind = value;\n resolve();\n });\n });\n}\nexport { bind };\n\nfunction import_Scalar(sca: XY | XYZ | XYZW | Bind.ImAccess | Bind.ImScalar | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImScalar {\n if (Array.isArray(sca)) { return [ sca[0] ]; }\n if (typeof sca === \"function\") { return [ sca() ]; }\n return [ sca.x ];\n}\n\nfunction export_Scalar(tuple: Bind.ImScalar, sca: XY | XYZ | XYZW | Bind.ImAccess | Bind.ImScalar | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(sca)) { sca[0] = tuple[0]; return; }\n if (typeof sca === \"function\") { sca(tuple[0]); return; }\n sca.x = tuple[0];\n}\n\nfunction import_Vector2(vec: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple2 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1] ]; }\n return [ vec.x, vec.y ];\n}\n\nfunction export_Vector2(tuple: Bind.ImTuple2, vec: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; return; }\n vec.x = tuple[0]; vec.y = tuple[1];\n}\n\nfunction import_Vector3(vec: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple3 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1], vec[2] ]; }\n return [ vec.x, vec.y, vec.z ];\n}\n\nfunction export_Vector3(tuple: Bind.ImTuple3, vec: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; vec[2] = tuple[2]; return; }\n vec.x = tuple[0]; vec.y = tuple[1]; vec.z = tuple[2];\n}\n\nfunction import_Vector4(vec: XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple4 {\n if (Array.isArray(vec)) { return [ vec[0], vec[1], vec[2], vec[3] || 0 ]; }\n return [ vec.x, vec.y, vec.z, vec.w ];\n}\n\nfunction export_Vector4(tuple: Bind.ImTuple4, vec: XYZW | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(vec)) { vec[0] = tuple[0]; vec[1] = tuple[1]; vec[2] = tuple[2]; vec[3] = tuple[3]; return; }\n vec.x = tuple[0]; vec.y = tuple[1]; vec.z = tuple[2]; vec.w = tuple[3];\n}\n\nfunction import_Color3(col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): Bind.ImTuple3 {\n if (Array.isArray(col)) { return [ col[0], col[1], col[2] ]; }\n if (\"r\" in col) { return [ col.r, col.g, col.b ]; }\n return [ col.x, col.y, col.z ];\n}\n\nfunction export_Color3(tuple: Bind.ImTuple3, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4): void {\n if (Array.isArray(col)) { col[0] = tuple[0]; col[1] = tuple[1]; col[2] = tuple[2]; return; }\n if (\"r\" in col) { col.r = tuple[0]; col.g = tuple[1]; col.b = tuple[2]; return; }\n col.x = tuple[0]; col.y = tuple[1]; col.z = tuple[2];\n}\n\nfunction import_Color4(col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4 | RGBA): Bind.ImTuple4 {\n if (Array.isArray(col)) { return [ col[0], col[1], col[2], col[3] ]; }\n if (\"r\" in col) { return [ col.r, col.g, col.b, col.a ]; }\n return [ col.x, col.y, col.z, col.w ];\n}\n\nfunction export_Color4(tuple: Bind.ImTuple4, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4 | RGBA): void {\n if (Array.isArray(col)) { col[0] = tuple[0]; col[1] = tuple[1]; col[2] = tuple[2]; return; }\n if (\"r\" in col) { col.r = tuple[0]; col.g = tuple[1]; col.b = tuple[2]; return; }\n col.x = tuple[0]; col.y = tuple[1]; col.z = tuple[2];\n}\n\nimport * as config from \"./imconfig\";\n\nexport const IMGUI_VERSION: string = \"1.71\"; // bind.IMGUI_VERSION;\nexport const IMGUI_VERSION_NUM: number = 17100; // bind.IMGUI_VERSION_NUM;\n\n// #define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert))\nexport function IMGUI_CHECKVERSION(): boolean { return DebugCheckVersionAndDataLayout(IMGUI_VERSION, bind.ImGuiIOSize, bind.ImGuiStyleSize, bind.ImVec2Size, bind.ImVec4Size, bind.ImDrawVertSize, bind.ImDrawIdxSize); }\n\nexport function IM_ASSERT(_EXPR: boolean | number): void { if (!_EXPR) { throw new Error(); } }\n\nexport function IM_ARRAYSIZE(_ARR: ArrayLike | ImStringBuffer): number {\n if (_ARR instanceof ImStringBuffer) {\n return _ARR.size;\n } else {\n return _ARR.length;\n }\n}\n\nexport class ImStringBuffer {\n constructor(public size: number, public buffer: string = \"\") {}\n}\n\nexport { ImAccess } from \"./bind-imgui\";\nexport { ImScalar } from \"./bind-imgui\";\nexport { ImTuple2 } from \"./bind-imgui\";\nexport { ImTuple3 } from \"./bind-imgui\";\nexport { ImTuple4 } from \"./bind-imgui\";\n\nexport type ImTextureID = WebGLTexture;\n\n// Flags for ImGui::Begin()\nexport { ImGuiWindowFlags as WindowFlags };\nexport enum ImGuiWindowFlags {\n None = 0,\n NoTitleBar = 1 << 0, // Disable title-bar\n NoResize = 1 << 1, // Disable user resizing with the lower-right grip\n NoMove = 1 << 2, // Disable user moving the window\n NoScrollbar = 1 << 3, // Disable scrollbars (window can still scroll with mouse or programatically)\n NoScrollWithMouse = 1 << 4, // Disable user vertically scrolling with mouse wheel. On child window, mouse wheel will be forwarded to the parent unless NoScrollbar is also set.\n NoCollapse = 1 << 5, // Disable user collapsing window by double-clicking on it\n AlwaysAutoResize = 1 << 6, // Resize every window to its content every frame\n NoBackground = 1 << 7, // Disable drawing background color (WindowBg, etc.) and outside border. Similar as using SetNextWindowBgAlpha(0.0f).\n NoSavedSettings = 1 << 8, // Never load/save settings in .ini file\n NoMouseInputs = 1 << 9, // Disable catching mouse or keyboard inputs, hovering test with pass through.\n MenuBar = 1 << 10, // Has a menu-bar\n HorizontalScrollbar = 1 << 11, // Allow horizontal scrollbar to appear (off by default). You may use SetNextWindowContentSize(ImVec2(width,0.0f)); prior to calling Begin() to specify width. Read code in imgui_demo in the \"Horizontal Scrolling\" section.\n NoFocusOnAppearing = 1 << 12, // Disable taking focus when transitioning from hidden to visible state\n NoBringToFrontOnFocus = 1 << 13, // Disable bringing window to front when taking focus (e.g. clicking on it or programatically giving it focus)\n AlwaysVerticalScrollbar= 1 << 14, // Always show vertical scrollbar (even if ContentSize.y < Size.y)\n AlwaysHorizontalScrollbar= 1 << 15, // Always show horizontal scrollbar (even if ContentSize.x < Size.x)\n AlwaysUseWindowPadding = 1 << 16, // Ensure child windows without border uses style.WindowPadding (ignored by default for non-bordered child windows, because more convenient)\n NoNavInputs = 1 << 18, // No gamepad/keyboard navigation within the window\n NoNavFocus = 1 << 19, // No focusing toward this window with gamepad/keyboard navigation (e.g. skipped by CTRL+TAB)\n UnsavedDocument = 1 << 20, // Append '*' to title without affecting the ID, as a convenience to avoid using the ### operator. When used in a tab/docking context, tab is selected on closure and closure is deferred by one frame to allow code to cancel the closure (with a confirmation popup, etc.) without flicker.\n NoNav = NoNavInputs | NoNavFocus,\n NoDecoration = NoTitleBar | NoResize | NoScrollbar | NoCollapse,\n NoInputs = NoMouseInputs | NoNavInputs | NoNavFocus,\n\n // [Internal]\n NavFlattened = 1 << 23, // (WIP) Allow gamepad/keyboard navigation to cross over parent border to this child (only use on child that have no scrolling!)\n ChildWindow = 1 << 24, // Don't use! For internal use by BeginChild()\n Tooltip = 1 << 25, // Don't use! For internal use by BeginTooltip()\n Popup = 1 << 26, // Don't use! For internal use by BeginPopup()\n Modal = 1 << 27, // Don't use! For internal use by BeginPopupModal()\n ChildMenu = 1 << 28, // Don't use! For internal use by BeginMenu()\n}\n\n// Flags for ImGui::InputText()\nexport { ImGuiInputTextFlags as InputTextFlags };\nexport enum ImGuiInputTextFlags {\n None = 0,\n CharsDecimal = 1 << 0, // Allow 0123456789.+-*/\n CharsHexadecimal = 1 << 1, // Allow 0123456789ABCDEFabcdef\n CharsUppercase = 1 << 2, // Turn a..z into A..Z\n CharsNoBlank = 1 << 3, // Filter out spaces, tabs\n AutoSelectAll = 1 << 4, // Select entire text when first taking mouse focus\n EnterReturnsTrue = 1 << 5, // Return 'true' when Enter is pressed (as opposed to when the value was modified)\n CallbackCompletion = 1 << 6, // Call user function on pressing TAB (for completion handling)\n CallbackHistory = 1 << 7, // Call user function on pressing Up/Down arrows (for history handling)\n CallbackAlways = 1 << 8, // Call user function every time. User code may query cursor position, modify text buffer.\n CallbackCharFilter = 1 << 9, // Call user function to filter character. Modify data->EventChar to replace/filter input, or return 1 to discard character.\n AllowTabInput = 1 << 10, // Pressing TAB input a '\\t' character into the text field\n CtrlEnterForNewLine = 1 << 11, // In multi-line mode, unfocus with Enter, add new line with Ctrl+Enter (default is opposite: unfocus with Ctrl+Enter, add line with Enter).\n NoHorizontalScroll = 1 << 12, // Disable following the cursor horizontally\n AlwaysInsertMode = 1 << 13, // Insert mode\n ReadOnly = 1 << 14, // Read-only mode\n Password = 1 << 15, // Password mode, display all characters as '*'\n NoUndoRedo = 1 << 16, // Disable undo/redo. Note that input text owns the text data while active, if you want to provide your own undo/redo stack you need e.g. to call ClearActiveID().\n CharsScientific = 1 << 17, // Allow 0123456789.+-*/eE (Scientific notation input)\n CallbackResize = 1 << 18, // Allow buffer capacity resize + notify when the string wants to be resized (for string types which hold a cache of their Size) (see misc/stl/imgui_stl.h for an example of using this)\n // [Internal]\n Multiline = 1 << 20, // For internal use by InputTextMultiline()\n NoMarkEdited = 1 << 21, // For internal use by functions using InputText() before reformatting data\n}\n\n// Flags for ImGui::TreeNodeEx(), ImGui::CollapsingHeader*()\nexport { ImGuiTreeNodeFlags as TreeNodeFlags };\nexport enum ImGuiTreeNodeFlags {\n None = 0,\n Selected = 1 << 0, // Draw as selected\n Framed = 1 << 1, // Full colored frame (e.g. for CollapsingHeader)\n AllowItemOverlap = 1 << 2, // Hit testing to allow subsequent widgets to overlap this one\n NoTreePushOnOpen = 1 << 3, // Don't do a TreePush() when open (e.g. for CollapsingHeader) = no extra indent nor pushing on ID stack\n NoAutoOpenOnLog = 1 << 4, // Don't automatically and temporarily open node when Logging is active (by default logging will automatically open tree nodes)\n DefaultOpen = 1 << 5, // Default node to be open\n OpenOnDoubleClick = 1 << 6, // Need double-click to open node\n OpenOnArrow = 1 << 7, // Only open when clicking on the arrow part. If OpenOnDoubleClick is also set, single-click arrow or double-click all box to open.\n Leaf = 1 << 8, // No collapsing, no arrow (use as a convenience for leaf nodes).\n Bullet = 1 << 9, // Display a bullet instead of arrow\n FramePadding = 1 << 10, // Use FramePadding (even for an unframed text node) to vertically align text baseline to regular widget height. Equivalent to calling AlignTextToFramePadding().\n //SpanAllAvailWidth = 1 << 11, // FIXME: TODO: Extend hit box horizontally even if not framed\n //NoScrollOnOpen = 1 << 12, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible\n NavLeftJumpsBackHere = 1 << 13, // (WIP) Nav: left direction may move to this TreeNode() from any of its child (items submitted between TreeNode and TreePop)\n CollapsingHeader = Framed | NoTreePushOnOpen | NoAutoOpenOnLog,\n}\n\n// Flags for ImGui::Selectable()\nexport { ImGuiSelectableFlags as SelectableFlags };\nexport enum ImGuiSelectableFlags {\n None = 0,\n DontClosePopups = 1 << 0, // Clicking this don't close parent popup window\n SpanAllColumns = 1 << 1, // Selectable frame can span all columns (text will still fit in current column)\n AllowDoubleClick = 1 << 2, // Generate press events on double clicks too\n Disabled = 1 << 3 // Cannot be selected, display greyed out text\n}\n\n// Flags for ImGui::BeginCombo()\nexport { ImGuiComboFlags as ComboFlags };\nexport enum ImGuiComboFlags {\n None = 0,\n PopupAlignLeft = 1 << 0, // Align the popup toward the left by default\n HeightSmall = 1 << 1, // Max ~4 items visible. Tip: If you want your combo popup to be a specific size you can use SetNextWindowSizeConstraints() prior to calling BeginCombo()\n HeightRegular = 1 << 2, // Max ~8 items visible (default)\n HeightLarge = 1 << 3, // Max ~20 items visible\n HeightLargest = 1 << 4, // As many fitting items as possible\n NoArrowButton = 1 << 5, // Display on the preview box without the square arrow button\n NoPreview = 1 << 6, // Display only a square arrow button\n HeightMask_ = HeightSmall | HeightRegular | HeightLarge | HeightLargest,\n}\n\n// Flags for ImGui::BeginTabBar()\nexport { ImGuiTabBarFlags as TabBarFlags };\nexport enum ImGuiTabBarFlags {\n None = 0,\n Reorderable = 1 << 0, // Allow manually dragging tabs to re-order them + New tabs are appended at the end of list\n AutoSelectNewTabs = 1 << 1, // Automatically select new tabs when they appear\n TabListPopupButton = 1 << 2,\n NoCloseWithMiddleMouseButton = 1 << 3, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.\n NoTabListScrollingButtons = 1 << 4,\n NoTooltip = 1 << 5, // Disable tooltips when hovering a tab\n FittingPolicyResizeDown = 1 << 6, // Resize tabs when they don't fit\n FittingPolicyScroll = 1 << 7, // Add scroll buttons when tabs don't fit\n FittingPolicyMask_ = FittingPolicyResizeDown | FittingPolicyScroll,\n FittingPolicyDefault_ = FittingPolicyResizeDown\n};\n\n// Flags for ImGui::BeginTabItem()\nexport { ImGuiTabItemFlags as TabItemFlags };\nexport enum ImGuiTabItemFlags\n{\n ImGuiTabItemFlags_None = 0,\n ImGuiTabItemFlags_UnsavedDocument = 1 << 0, // Append '*' to title without affecting the ID, as a convenience to avoid using the ### operator. Also: tab is selected on closure and closure is deferred by one frame to allow code to undo it without flicker.\n ImGuiTabItemFlags_SetSelected = 1 << 1, // Trigger flag to programatically make the tab selected when calling BeginTabItem()\n ImGuiTabItemFlags_NoCloseWithMiddleMouseButton = 1 << 2, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.\n ImGuiTabItemFlags_NoPushId = 1 << 3 // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem()\n};\n\n// Flags for ImGui::IsWindowFocused()\nexport { ImGuiFocusedFlags as FocusedFlags };\nexport enum ImGuiFocusedFlags {\n None = 0,\n ChildWindows = 1 << 0, // IsWindowFocused(): Return true if any children of the window is focused\n RootWindow = 1 << 1, // IsWindowFocused(): Test from root window (top most parent of the current hierarchy)\n AnyWindow = 1 << 2, // IsWindowFocused(): Return true if any window is focused\n RootAndChildWindows = RootWindow | ChildWindows,\n}\n\n// Flags for ImGui::IsItemHovered(), ImGui::IsWindowHovered()\nexport { ImGuiHoveredFlags as HoveredFlags };\nexport enum ImGuiHoveredFlags {\n None = 0, // Return true if directly over the item/window, not obstructed by another window, not obstructed by an active popup or modal blocking inputs under them.\n ChildWindows = 1 << 0, // IsWindowHovered() only: Return true if any children of the window is hovered\n RootWindow = 1 << 1, // IsWindowHovered() only: Test from root window (top most parent of the current hierarchy)\n AnyWindow = 1 << 2, // IsWindowHovered() only: Return true if any window is hovered\n AllowWhenBlockedByPopup = 1 << 3, // Return true even if a popup window is normally blocking access to this item/window\n //AllowWhenBlockedByModal = 1 << 4, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet.\n AllowWhenBlockedByActiveItem = 1 << 5, // Return true even if an active item is blocking access to this item/window. Useful for Drag and Drop patterns.\n AllowWhenOverlapped = 1 << 6, // Return true even if the position is overlapped by another window\n AllowWhenDisabled = 1 << 7, // Return true even if the item is disabled\n RectOnly = AllowWhenBlockedByPopup | AllowWhenBlockedByActiveItem | AllowWhenOverlapped,\n RootAndChildWindows = RootWindow | ChildWindows,\n}\n\n// Flags for ImGui::BeginDragDropSource(), ImGui::AcceptDragDropPayload()\nexport { ImGuiDragDropFlags as DragDropFlags };\nexport enum ImGuiDragDropFlags {\n // BeginDragDropSource() flags\n None = 0,\n SourceNoPreviewTooltip = 1 << 0, // By default, a successful call to BeginDragDropSource opens a tooltip so you can display a preview or description of the source contents. This flag disable this behavior.\n SourceNoDisableHover = 1 << 1, // By default, when dragging we clear data so that IsItemHovered() will return true, to avoid subsequent user code submitting tooltips. This flag disable this behavior so you can still call IsItemHovered() on the source item.\n SourceNoHoldToOpenOthers = 1 << 2, // Disable the behavior that allows to open tree nodes and collapsing header by holding over them while dragging a source item.\n SourceAllowNullID = 1 << 3, // Allow items such as Text(), Image() that have no unique identifier to be used as drag source, by manufacturing a temporary identifier based on their window-relative position. This is extremely unusual within the dear imgui ecosystem and so we made it explicit.\n SourceExtern = 1 << 4, // External source (from outside of imgui), won't attempt to read current item/window info. Will always return true. Only one Extern source can be active simultaneously.\n SourceAutoExpirePayload = 1 << 5, // Automatically expire the payload if the source cease to be submitted (otherwise payloads are persisting while being dragged)\n // AcceptDragDropPayload() flags\n AcceptBeforeDelivery = 1 << 10, // AcceptDragDropPayload() will returns true even before the mouse button is released. You can then call IsDelivery() to test if the payload needs to be delivered.\n AcceptNoDrawDefaultRect = 1 << 11, // Do not draw the default highlight rectangle when hovering over target.\n AcceptNoPreviewTooltip = 1 << 12, // Request hiding the BeginDragDropSource tooltip from the BeginDragDropTarget site.\n AcceptPeekOnly = AcceptBeforeDelivery | AcceptNoDrawDefaultRect, // For peeking ahead and inspecting the payload before delivery.\n}\n\n// Standard Drag and Drop payload types. You can define you own payload types using 12-characters long strings. Types starting with '_' are defined by Dear ImGui.\nexport const IMGUI_PAYLOAD_TYPE_COLOR_3F: string = \"_COL3F\"; // float[3] // Standard type for colors, without alpha. User code may use this type.\nexport const IMGUI_PAYLOAD_TYPE_COLOR_4F: string = \"_COL4F\"; // float[4] // Standard type for colors. User code may use this type.\n\n// A primary data type\nexport { ImGuiDataType as DataType };\nexport enum ImGuiDataType {\n S8, // char\n U8, // unsigned char\n S16, // short\n U16, // unsigned short\n S32, // int\n U32, // unsigned int\n S64, // long long, __int64\n U64, // unsigned long long, unsigned __int64\n Float, // float\n Double, // double\n COUNT\n}\n\n// A cardinal direction\nexport { ImGuiDir as Dir };\nexport enum ImGuiDir {\n None = -1,\n Left = 0,\n Right = 1,\n Up = 2,\n Down = 3,\n COUNT\n}\n\n// User fill ImGuiIO.KeyMap[] array with indices into the ImGuiIO.KeysDown[512] array\nexport { ImGuiKey as Key };\nexport enum ImGuiKey {\n Tab,\n LeftArrow,\n RightArrow,\n UpArrow,\n DownArrow,\n PageUp,\n PageDown,\n Home,\n End,\n Insert,\n Delete,\n Backspace,\n Space,\n Enter,\n Escape,\n A, // for text edit CTRL+A: select all\n C, // for text edit CTRL+C: copy\n V, // for text edit CTRL+V: paste\n X, // for text edit CTRL+X: cut\n Y, // for text edit CTRL+Y: redo\n Z, // for text edit CTRL+Z: undo\n COUNT,\n}\n\n// [BETA] Gamepad/Keyboard directional navigation\n// Keyboard: Set io.ConfigFlags |= EnableKeyboard to enable. NewFrame() will automatically fill io.NavInputs[] based on your io.KeyDown[] + io.KeyMap[] arrays.\n// Gamepad: Set io.ConfigFlags |= EnableGamepad to enable. Fill the io.NavInputs[] fields before calling NewFrame(). Note that io.NavInputs[] is cleared by EndFrame().\n// Read instructions in imgui.cpp for more details.\nexport { ImGuiNavInput as NavInput };\nexport enum ImGuiNavInput\n{\n // Gamepad Mapping\n Activate, // activate / open / toggle / tweak value // e.g. Circle (PS4), A (Xbox), B (Switch), Space (Keyboard)\n Cancel, // cancel / close / exit // e.g. Cross (PS4), B (Xbox), A (Switch), Escape (Keyboard)\n Input, // text input / on-screen keyboard // e.g. Triang.(PS4), Y (Xbox), X (Switch), Return (Keyboard)\n Menu, // tap: toggle menu / hold: focus, move, resize // e.g. Square (PS4), X (Xbox), Y (Switch), Alt (Keyboard)\n DpadLeft, // move / tweak / resize window (w/ PadMenu) // e.g. D-pad Left/Right/Up/Down (Gamepads), Arrow keys (Keyboard)\n DpadRight, //\n DpadUp, //\n DpadDown, //\n LStickLeft, // scroll / move window (w/ PadMenu) // e.g. Left Analog Stick Left/Right/Up/Down\n LStickRight, //\n LStickUp, //\n LStickDown, //\n FocusPrev, // next window (w/ PadMenu) // e.g. L1 or L2 (PS4), LB or LT (Xbox), L or ZL (Switch)\n FocusNext, // prev window (w/ PadMenu) // e.g. R1 or R2 (PS4), RB or RT (Xbox), R or ZL (Switch)\n TweakSlow, // slower tweaks // e.g. L1 or L2 (PS4), LB or LT (Xbox), L or ZL (Switch)\n TweakFast, // faster tweaks // e.g. R1 or R2 (PS4), RB or RT (Xbox), R or ZL (Switch)\n\n // [Internal] Don't use directly! This is used internally to differentiate keyboard from gamepad inputs for behaviors that require to differentiate them.\n // Keyboard behavior that have no corresponding gamepad mapping (e.g. CTRL+TAB) may be directly reading from io.KeyDown[] instead of io.NavInputs[].\n KeyMenu_, // toggle menu // = io.KeyAlt\n KeyTab_, // tab // = Tab key\n KeyLeft_, // move left // = Arrow keys\n KeyRight_, // move right\n KeyUp_, // move up\n KeyDown_, // move down\n COUNT,\n InternalStart_ = KeyMenu_,\n}\n\n// [BETA] Gamepad/Keyboard directional navigation flags, stored in io.ConfigFlags\nexport { ImGuiConfigFlags as ConfigFlags };\nexport enum ImGuiConfigFlags\n{\n None = 0,\n NavEnableKeyboard = 1 << 0, // Master keyboard navigation enable flag. NewFrame() will automatically fill io.NavInputs[] based on io.KeyDown[].\n NavEnableGamepad = 1 << 1, // Master gamepad navigation enable flag. This is mostly to instruct your imgui back-end to fill io.NavInputs[].\n NavEnableSetMousePos = 1 << 2, // Request navigation to allow moving the mouse cursor. May be useful on TV/console systems where moving a virtual mouse is awkward. Will update io.MousePos and set io.WantMoveMouse=true. If enabled you MUST honor io.WantMoveMouse requests in your binding, otherwise ImGui will react as if the mouse is jumping around back and forth.\n NavNoCaptureKeyboard = 1 << 3, // Do not set the io.WantCaptureKeyboard flag with io.NavActive is set.\n NoMouse = 1 << 4, // Instruct imgui to clear mouse position/buttons in NewFrame(). This allows ignoring the mouse information back-end\n NoMouseCursorChange = 1 << 5, // Instruct back-end to not alter mouse cursor shape and visibility.\n\n IsSRGB = 1 << 20, // Application is SRGB-aware.\n IsTouchScreen = 1 << 21 // Application is using a touch screen instead of a mouse.\n}\n\n// Enumeration for PushStyleColor() / PopStyleColor()\nexport { ImGuiCol as Col };\nexport enum ImGuiCol {\n Text,\n TextDisabled,\n WindowBg, // Background of normal windows\n ChildBg, // Background of child windows\n PopupBg, // Background of popups, menus, tooltips windows\n Border,\n BorderShadow,\n FrameBg, // Background of checkbox, radio button, plot, slider, text input\n FrameBgHovered,\n FrameBgActive,\n TitleBg,\n TitleBgActive,\n TitleBgCollapsed,\n MenuBarBg,\n ScrollbarBg,\n ScrollbarGrab,\n ScrollbarGrabHovered,\n ScrollbarGrabActive,\n CheckMark,\n SliderGrab,\n SliderGrabActive,\n Button,\n ButtonHovered,\n ButtonActive,\n Header,\n HeaderHovered,\n HeaderActive,\n Separator,\n SeparatorHovered,\n SeparatorActive,\n ResizeGrip,\n ResizeGripHovered,\n ResizeGripActive,\n Tab,\n TabHovered,\n TabActive,\n TabUnfocused,\n TabUnfocusedActive,\n PlotLines,\n PlotLinesHovered,\n PlotHistogram,\n PlotHistogramHovered,\n TextSelectedBg,\n DragDropTarget,\n NavHighlight, // Gamepad/keyboard: current highlighted item\n NavWindowingHighlight, // Highlight window when using CTRL+TAB\n NavWindowingDimBg, // Darken/colorize entire screen behind the CTRL+TAB window list, when active\n ModalWindowDimBg, // Darken/colorize entire screen behind a modal window, when one is active\n COUNT,\n}\n\n// Enumeration for PushStyleVar() / PopStyleVar() to temporarily modify the ImGuiStyle structure.\n// NB: the enum only refers to fields of ImGuiStyle which makes sense to be pushed/popped inside UI code. During initialization, feel free to just poke into ImGuiStyle directly.\n// NB: if changing this enum, you need to update the associated internal table GStyleVarInfo[] accordingly. This is where we link enum values to members offset/type.\nexport { ImGuiStyleVar as StyleVar };\nexport enum ImGuiStyleVar {\n // Enum name ......................// Member in ImGuiStyle structure (see ImGuiStyle for descriptions)\n Alpha, // float Alpha\n WindowPadding, // ImVec2 WindowPadding\n WindowRounding, // float WindowRounding\n WindowBorderSize, // float WindowBorderSize\n WindowMinSize, // ImVec2 WindowMinSize\n WindowTitleAlign, // ImVec2 WindowTitleAlign\n // WindowMenuButtonPosition, // ImGuiDir WindowMenuButtonPosition\n ChildRounding, // float ChildRounding\n ChildBorderSize, // float ChildBorderSize\n PopupRounding, // float PopupRounding\n PopupBorderSize, // float PopupBorderSize\n FramePadding, // ImVec2 FramePadding\n FrameRounding, // float FrameRounding\n FrameBorderSize, // float FrameBorderSize\n ItemSpacing, // ImVec2 ItemSpacing\n ItemInnerSpacing, // ImVec2 ItemInnerSpacing\n IndentSpacing, // float IndentSpacing\n ScrollbarSize, // float ScrollbarSize\n ScrollbarRounding, // float ScrollbarRounding\n GrabMinSize, // float GrabMinSize\n GrabRounding, // float GrabRounding\n TabRounding, // float TabRounding\n ButtonTextAlign, // ImVec2 ButtonTextAlign\n SelectableTextAlign, // ImVec2 SelectableTextAlign\n Count_, COUNT = Count_,\n}\n\n// Back-end capabilities flags stored in io.BackendFlags. Set by imgui_impl_xxx or custom back-end.\nexport { ImGuiBackendFlags as BackendFlags };\nexport enum ImGuiBackendFlags {\n None = 0,\n HasGamepad = 1 << 0, // Back-end has a connected gamepad.\n HasMouseCursors = 1 << 1, // Back-end can honor GetMouseCursor() values and change the OS cursor shape.\n HasSetMousePos = 1 << 2, // Back-end can honor io.WantSetMousePos and reposition the mouse (only used if ImGuiConfigFlags_NavEnableSetMousePos is set).\n RendererHasVtxOffset = 1 << 3, // Back-end Renderer supports ImDrawCmd::VtxOffset. This enables output of large meshes (64K+ vertices) while still using 16-bits indices.\n}\n\n// Enumeration for ColorEdit3() / ColorEdit4() / ColorPicker3() / ColorPicker4() / ColorButton()\nexport { ImGuiColorEditFlags as ColorEditFlags };\nexport enum ImGuiColorEditFlags {\n None = 0,\n NoAlpha = 1 << 1, // // ColorEdit, ColorPicker, ColorButton: ignore Alpha component (read 3 components from the input pointer).\n NoPicker = 1 << 2, // // ColorEdit: disable picker when clicking on colored square.\n NoOptions = 1 << 3, // // ColorEdit: disable toggling options menu when right-clicking on inputs/small preview.\n NoSmallPreview = 1 << 4, // // ColorEdit, ColorPicker: disable colored square preview next to the inputs. (e.g. to show only the inputs)\n NoInputs = 1 << 5, // // ColorEdit, ColorPicker: disable inputs sliders/text widgets (e.g. to show only the small preview colored square).\n NoTooltip = 1 << 6, // // ColorEdit, ColorPicker, ColorButton: disable tooltip when hovering the preview.\n NoLabel = 1 << 7, // // ColorEdit, ColorPicker: disable display of inline text label (the label is still forwarded to the tooltip and picker).\n NoSidePreview = 1 << 8, // // ColorPicker: disable bigger color preview on right side of the picker, use small colored square preview instead.\n NoDragDrop = 1 << 9, // // ColorEdit: disable drag and drop target. ColorButton: disable drag and drop source.\n // User Options (right-click on widget to change some of them). You can set application defaults using SetColorEditOptions(). The idea is that you probably don't want to override them in most of your calls, let the user choose and/or call SetColorEditOptions() during startup.\n AlphaBar = 1 << 16, // // ColorEdit, ColorPicker: show vertical alpha bar/gradient in picker.\n AlphaPreview = 1 << 17, // // ColorEdit, ColorPicker, ColorButton: display preview as a transparent color over a checkerboard, instead of opaque.\n AlphaPreviewHalf= 1 << 18, // // ColorEdit, ColorPicker, ColorButton: display half opaque / half checkerboard, instead of opaque.\n HDR = 1 << 19, // // (WIP) ColorEdit: Currently only disable 0.0f..1.0f limits in RGBA edition (note: you probably want to use Float flag as well).\n DisplayRGB = 1 << 20, // [Inputs] // ColorEdit: choose one among RGB/HSV/HEX. ColorPicker: choose any combination using RGB/HSV/HEX.\n DisplayHSV = 1 << 21, // [Inputs] // \"\n DisplayHex = 1 << 22, // [Inputs] // \"\n Uint8 = 1 << 23, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0..255.\n Float = 1 << 24, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0.0f..1.0f floats instead of 0..255 integers. No round-trip of value via integers.\n PickerHueBar = 1 << 25, // [PickerMode] // ColorPicker: bar for Hue, rectangle for Sat/Value.\n PickerHueWheel = 1 << 26, // [PickerMode] // ColorPicker: wheel for Hue, triangle for Sat/Value.\n InputRGB = 1 << 27, // [Input] // ColorEdit, ColorPicker: input and output data in RGB format.\n InputHSV = 1 << 28, // [Input] // ColorEdit, ColorPicker: input and output data in HSV format.\n\n // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to\n // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup.\n _OptionsDefault = Uint8|DisplayRGB|InputRGB|PickerHueBar,\n\n // [Internal] Masks\n _DisplayMask = DisplayRGB|DisplayHSV|DisplayHex,\n _DataTypeMask = Uint8|Float,\n _PickerMask = PickerHueWheel|PickerHueBar,\n _InputMask = InputRGB|InputHSV,\n}\n\n// Enumeration for GetMouseCursor()\nexport { ImGuiMouseCursor as MouseCursor };\nexport enum ImGuiMouseCursor {\n None = -1,\n Arrow = 0,\n TextInput, // When hovering over InputText, etc.\n ResizeAll, // (Unused by imgui functions)\n ResizeNS, // When hovering over an horizontal border\n ResizeEW, // When hovering over a vertical border or a column\n ResizeNESW, // When hovering over the bottom-left corner of a window\n ResizeNWSE, // When hovering over the bottom-right corner of a window\n Hand, // (Unused by imgui functions. Use for e.g. hyperlinks)\n Count_, COUNT = Count_,\n}\n\n// Condition for ImGui::SetWindow***(), SetNextWindow***(), SetNextTreeNode***() functions\n// All those functions treat 0 as a shortcut to Always. From the point of view of the user use this as an enum (don't combine multiple values into flags).\nexport { ImGuiCond as Cond };\nexport enum ImGuiCond {\n Always = 1 << 0, // Set the variable\n Once = 1 << 1, // Set the variable once per runtime session (only the first call with succeed)\n FirstUseEver = 1 << 2, // Set the variable if the window has no saved data (if doesn't exist in the .ini file)\n Appearing = 1 << 3, // Set the variable if the window is appearing after being hidden/inactive (or the first time)\n}\n\nexport { ImDrawCornerFlags as wCornerFlags };\nexport enum ImDrawCornerFlags\n{\n TopLeft = 1 << 0, // 0x1\n TopRight = 1 << 1, // 0x2\n BotLeft = 1 << 2, // 0x4\n BotRight = 1 << 3, // 0x8\n Top = TopLeft | TopRight, // 0x3\n Bot = BotLeft | BotRight, // 0xC\n Left = TopLeft | BotLeft, // 0x5\n Right = TopRight | BotRight, // 0xA\n All = 0xF, // In your function calls you may use ~0 (= all bits sets) instead of All, as a convenience\n}\n\nexport { ImDrawListFlags as wListFlags };\nexport enum ImDrawListFlags\n{\n None = 0,\n AntiAliasedLines = 1 << 0,\n AntiAliasedFill = 1 << 1,\n}\n\nexport { ImU32 } from \"./bind-imgui\";\n\nexport { interface_ImVec2 } from \"./bind-imgui\";\nexport { reference_ImVec2 } from \"./bind-imgui\";\n\nexport class ImVec2 implements Bind.interface_ImVec2 {\n public static readonly ZERO: Readonly = new ImVec2(0.0, 0.0);\n public static readonly UNIT: Readonly = new ImVec2(1.0, 1.0);\n public static readonly UNIT_X: Readonly = new ImVec2(1.0, 0.0);\n public static readonly UNIT_Y: Readonly = new ImVec2(0.0, 1.0);\n\n constructor(public x: number = 0.0, public y: number = 0.0) {}\n\n public Set(x: number, y: number): this {\n this.x = x;\n this.y = y;\n return this;\n }\n\n public Copy(other: Readonly): this {\n this.x = other.x;\n this.y = other.y;\n return this;\n }\n\n public Equals(other: Readonly): boolean {\n if (this.x !== other.x) { return false; }\n if (this.y !== other.y) { return false; }\n return true;\n }\n}\n\nexport { interface_ImVec4 } from \"./bind-imgui\";\nexport { reference_ImVec4 } from \"./bind-imgui\";\n\nexport class ImVec4 implements Bind.interface_ImVec4 {\n public static readonly ZERO: Readonly = new ImVec4(0.0, 0.0, 0.0, 0.0);\n public static readonly UNIT: Readonly = new ImVec4(1.0, 1.0, 1.0, 1.0);\n public static readonly UNIT_X: Readonly = new ImVec4(1.0, 0.0, 0.0, 0.0);\n public static readonly UNIT_Y: Readonly = new ImVec4(0.0, 1.0, 0.0, 0.0);\n public static readonly UNIT_Z: Readonly = new ImVec4(0.0, 0.0, 1.0, 0.0);\n public static readonly UNIT_W: Readonly = new ImVec4(0.0, 0.0, 0.0, 1.0);\n public static readonly BLACK: Readonly = new ImVec4(0.0, 0.0, 0.0, 1.0);\n public static readonly WHITE: Readonly = new ImVec4(1.0, 1.0, 1.0, 1.0);\n\n constructor(public x: number = 0.0, public y: number = 0.0, public z: number = 0.0, public w: number = 1.0) {}\n\n public Set(x: number, y: number, z: number, w: number): this {\n this.x = x;\n this.y = y;\n this.z = z;\n this.w = w;\n return this;\n }\n\n public Copy(other: Readonly): this {\n this.x = other.x;\n this.y = other.y;\n this.z = other.z;\n this.w = other.w;\n return this;\n }\n\n public Equals(other: Readonly): boolean {\n if (this.x !== other.x) { return false; }\n if (this.y !== other.y) { return false; }\n if (this.z !== other.z) { return false; }\n if (this.w !== other.w) { return false; }\n return true;\n }\n}\n\n//-----------------------------------------------------------------------------\n// Helpers\n//-----------------------------------------------------------------------------\n\n// Lightweight std::vector<> like class to avoid dragging dependencies (also: windows implementation of STL with debug enabled is absurdly slow, so let's bypass it so our code runs fast in debug).\n// Our implementation does NOT call C++ constructors/destructors. This is intentional and we do not require it. Do not use this class as a straight std::vector replacement in your code!\nexport class ImVector extends Array\n{\n public get Size(): number { return this.length; }\n public Data: T[] = this;\n public empty(): boolean { return this.length === 0; }\n public clear(): void { this.length = 0; }\n public pop_back(): T | undefined { return this.pop(); }\n public push_back(value: T): void { this.push(value); }\n // public:\n // int Size;\n // int Capacity;\n // T* Data;\n\n // typedef T value_type;\n // typedef value_type* iterator;\n // typedef const value_type* const_iterator;\n\n // inline ImVector() { Size = Capacity = 0; Data = NULL; }\n // inline ~ImVector() { if (Data) ImGui::MemFree(Data); }\n\n // inline bool empty() const { return Size == 0; }\n // inline int size() const { return Size; }\n // inline int capacity() const { return Capacity; }\n\n // inline value_type& operator[](int i) { IM_ASSERT(i < Size); return Data[i]; }\n // inline const value_type& operator[](int i) const { IM_ASSERT(i < Size); return Data[i]; }\n\n // inline void clear() { if (Data) { Size = Capacity = 0; ImGui::MemFree(Data); Data = NULL; } }\n // inline iterator begin() { return Data; }\n // inline const_iterator begin() const { return Data; }\n // inline iterator end() { return Data + Size; }\n // inline const_iterator end() const { return Data + Size; }\n // inline value_type& front() { IM_ASSERT(Size > 0); return Data[0]; }\n // inline const value_type& front() const { IM_ASSERT(Size > 0); return Data[0]; }\n // inline value_type& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; }\n // inline const value_type& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; }\n // inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; value_type* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; }\n\n // inline int _grow_capacity(int size) const { int new_capacity = Capacity ? (Capacity + Capacity/2) : 8; return new_capacity > size ? new_capacity : size; }\n\n // inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; }\n // inline void resize(int new_size, const T& v){ if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) Data[n] = v; Size = new_size; }\n // inline void reserve(int new_capacity)\n // {\n // if (new_capacity <= Capacity)\n // return;\n // T* new_data = (value_type*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T));\n // if (Data)\n // memcpy(new_data, Data, (size_t)Size * sizeof(T));\n // ImGui::MemFree(Data);\n // Data = new_data;\n // Capacity = new_capacity;\n // }\n\n // inline void push_back(const value_type& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); Data[Size++] = v; }\n // inline void pop_back() { IM_ASSERT(Size > 0); Size--; }\n // inline void push_front(const value_type& v) { if (Size == 0) push_back(v); else insert(Data, v); }\n\n // inline iterator erase(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(value_type)); Size--; return Data + off; }\n // inline iterator erase(const_iterator it, const_iterator it_last){ IM_ASSERT(it >= Data && it < Data+Size && it_last > it && it_last <= Data+Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - count) * sizeof(value_type)); Size -= (int)count; return Data + off; }\n // inline iterator erase_unsorted(const_iterator it) { IM_ASSERT(it >= Data && it < Data+Size); const ptrdiff_t off = it - Data; if (it < Data+Size-1) memcpy(Data + off, Data + Size - 1, sizeof(value_type)); Size--; return Data + off; }\n // inline iterator insert(const_iterator it, const value_type& v) { IM_ASSERT(it >= Data && it <= Data+Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(value_type)); Data[off] = v; Size++; return Data + off; }\n // inline bool contains(const value_type& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; }\n}\n\n// Helper: Parse and apply text filters. In format \"aaaaa[,bbbb][,ccccc]\"\nexport class ImGuiTextFilter\n{\n // IMGUI_API ImGuiTextFilter(const char* default_filter = \"\");\n constructor(default_filter: string = \"\") {\n if (default_filter)\n {\n // ImStrncpy(InputBuf, default_filter, IM_ARRAYSIZE(InputBuf));\n this.InputBuf.buffer = default_filter;\n this.Build();\n }\n else\n {\n // InputBuf[0] = 0;\n this.InputBuf.buffer = \"\";\n this.CountGrep = 0;\n }\n }\n // IMGUI_API bool Draw(const char* label = \"Filter (inc,-exc)\", float width = 0.0f); // Helper calling InputText+Build\n public Draw(label: string = \"Filter (inc,-exc)\", width: number = 0.0): boolean {\n if (width !== 0.0)\n bind.PushItemWidth(width);\n const value_changed: boolean = InputText(label, this.InputBuf, IM_ARRAYSIZE(this.InputBuf));\n if (width !== 0.0)\n bind.PopItemWidth();\n if (value_changed)\n this.Build();\n return value_changed;\n }\n // IMGUI_API bool PassFilter(const char* text, const char* text_end = NULL) const;\n public PassFilter(text: string, text_end: number | null = null): boolean {\n // if (Filters.empty())\n // return true;\n\n // if (text == NULL)\n // text = \"\";\n\n // for (int i = 0; i != Filters.Size; i++)\n // {\n // const TextRange& f = Filters[i];\n // if (f.empty())\n // continue;\n // if (f.front() == '-')\n // {\n // // Subtract\n // if (ImStristr(text, text_end, f.begin()+1, f.end()) != NULL)\n // return false;\n // }\n // else\n // {\n // // Grep\n // if (ImStristr(text, text_end, f.begin(), f.end()) != NULL)\n // return true;\n // }\n // }\n\n // Implicit * grep\n if (this.CountGrep === 0)\n return true;\n\n return false;\n }\n // IMGUI_API void Build();\n public Build(): void {\n // Filters.resize(0);\n // TextRange input_range(InputBuf, InputBuf+strlen(InputBuf));\n // input_range.split(',', Filters);\n\n this.CountGrep = 0;\n // for (int i = 0; i != Filters.Size; i++)\n // {\n // Filters[i].trim_blanks();\n // if (Filters[i].empty())\n // continue;\n // if (Filters[i].front() != '-')\n // CountGrep += 1;\n // }\n }\n // void Clear() { InputBuf[0] = 0; Build(); }\n public Clear(): void { this.InputBuf.buffer = \"\"; this.Build(); }\n // bool IsActive() const { return !Filters.empty(); }\n public IsActive(): boolean { return false; }\n\n // [Internal]\n // struct TextRange\n // {\n // const char* b;\n // const char* e;\n\n // TextRange() { b = e = NULL; }\n // TextRange(const char* _b, const char* _e) { b = _b; e = _e; }\n // const char* begin() const { return b; }\n // const char* end() const { return e; }\n // bool empty() const { return b == e; }\n // char front() const { return *b; }\n // static bool is_blank(char c) { return c == ' ' || c == '\\t'; }\n // void trim_blanks() { while (b < e && is_blank(*b)) b++; while (e > b && is_blank(*(e-1))) e--; }\n // IMGUI_API void split(char separator, ImVector& out);\n // };\n\n // char InputBuf[256];\n public InputBuf: ImStringBuffer = new ImStringBuffer(256);\n // ImVector Filters;\n // int CountGrep;\n public CountGrep: number = 0;\n}\n\n// Helper: Text buffer for logging/accumulating text\nexport class ImGuiTextBuffer\n{\n // ImVector Buf;\n public Buf: string = \"\";\n public begin(): string { return this.Buf; }\n public size(): number { return this.Buf.length; }\n public clear(): void { this.Buf = \"\"; }\n public append(text: string): void { this.Buf += text; }\n\n // ImGuiTextBuffer() { Buf.push_back(0); }\n // inline char operator[](int i) { return Buf.Data[i]; }\n // const char* begin() const { return &Buf.front(); }\n // const char* end() const { return &Buf.back(); } // Buf is zero-terminated, so end() will point on the zero-terminator\n // int size() const { return Buf.Size - 1; }\n // bool empty() { return Buf.Size <= 1; }\n // void clear() { Buf.clear(); Buf.push_back(0); }\n // void reserve(int capacity) { Buf.reserve(capacity); }\n // const char* c_str() const { return Buf.Data; }\n // IMGUI_API void appendf(const char* fmt, ...) IM_FMTARGS(2);\n // IMGUI_API void appendfv(const char* fmt, va_list args) IM_FMTLIST(2);\n}\n\n// Helper: Simple Key->value storage\n// Typically you don't have to worry about this since a storage is held within each Window.\n// We use it to e.g. store collapse state for a tree (Int 0/1), store color edit options.\n// This is optimized for efficient reading (dichotomy into a contiguous buffer), rare writing (typically tied to user interactions)\n// You can use it as custom user storage for temporary values. Declare your own storage if, for example:\n// - You want to manipulate the open/close state of a particular sub-tree in your interface (tree node uses Int 0/1 to store their state).\n// - You want to store custom debug data easily without adding or editing structures in your code (probably not efficient, but convenient)\n// Types are NOT stored, so it is up to you to make sure your Key don't collide with different types.\nexport class ImGuiStorage\n{\n // struct Pair\n // {\n // ImGuiID key;\n // union { int val_i; float val_f; void* val_p; };\n // Pair(ImGuiID _key, int _val_i) { key = _key; val_i = _val_i; }\n // Pair(ImGuiID _key, float _val_f) { key = _key; val_f = _val_f; }\n // Pair(ImGuiID _key, void* _val_p) { key = _key; val_p = _val_p; }\n // };\n // ImVector Data;\n\n // - Get***() functions find pair, never add/allocate. Pairs are sorted so a query is O(log N)\n // - Set***() functions find pair, insertion on demand if missing.\n // - Sorted insertion is costly, paid once. A typical frame shouldn't need to insert any new pair.\n // void Clear() { Data.clear(); }\n // IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const;\n // IMGUI_API void SetInt(ImGuiID key, int val);\n // IMGUI_API bool GetBool(ImGuiID key, bool default_val = false) const;\n // IMGUI_API void SetBool(ImGuiID key, bool val);\n // IMGUI_API float GetFloat(ImGuiID key, float default_val = 0.0f) const;\n // IMGUI_API void SetFloat(ImGuiID key, float val);\n // IMGUI_API void* GetVoidPtr(ImGuiID key) const; // default_val is NULL\n // IMGUI_API void SetVoidPtr(ImGuiID key, void* val);\n\n // - Get***Ref() functions finds pair, insert on demand if missing, return pointer. Useful if you intend to do Get+Set.\n // - References are only valid until a new value is added to the storage. Calling a Set***() function or a Get***Ref() function invalidates the pointer.\n // - A typical use case where this is convenient for quick hacking (e.g. add storage during a live Edit&Continue session if you can't modify existing struct)\n // float* pvar = ImGui::GetFloatRef(key); ImGui::SliderFloat(\"var\", pvar, 0, 100.0f); some_var += *pvar;\n // IMGUI_API int* GetIntRef(ImGuiID key, int default_val = 0);\n // IMGUI_API bool* GetBoolRef(ImGuiID key, bool default_val = false);\n // IMGUI_API float* GetFloatRef(ImGuiID key, float default_val = 0.0f);\n // IMGUI_API void** GetVoidPtrRef(ImGuiID key, void* default_val = NULL);\n\n // Use on your own storage if you know only integer are being stored (open/close all tree nodes)\n // IMGUI_API void SetAllInt(int val);\n\n // For quicker full rebuild of a storage (instead of an incremental one), you may add all your contents and then sort once.\n // IMGUI_API void BuildSortByKey();\n}\n\n// Data payload for Drag and Drop operations\nexport interface ImGuiPayload\n{\n // Members\n // void* Data; // Data (copied and owned by dear imgui)\n Data: T;\n // int DataSize; // Data size\n\n // [Internal]\n // ImGuiID SourceId; // Source item id\n // ImGuiID SourceParentId; // Source parent id (if available)\n // int DataFrameCount; // Data timestamp\n // char DataType[12 + 1]; // Data type tag (short user-supplied string, 12 characters max)\n // bool Preview; // Set when AcceptDragDropPayload() was called and mouse has been hovering the target item (nb: handle overlapping drag targets)\n // bool Delivery; // Set when AcceptDragDropPayload() was called and mouse button is released over the target item.\n\n // ImGuiPayload() { Clear(); }\n // void Clear() { SourceId = SourceParentId = 0; Data = NULL; DataSize = 0; memset(DataType, 0, sizeof(DataType)); DataFrameCount = -1; Preview = Delivery = false; }\n // bool IsDataType(const char* type) const { return DataFrameCount != -1 && strcmp(type, DataType) == 0; }\n // bool IsPreview() const { return Preview; }\n // bool IsDelivery() const { return Delivery; }\n}\n\n// Helpers macros to generate 32-bits encoded colors\nexport const IM_COL32_R_SHIFT: number = config.IMGUI_USE_BGRA_PACKED_COLOR ? 16 : 0;\nexport const IM_COL32_G_SHIFT: number = 8;\nexport const IM_COL32_B_SHIFT: number = config.IMGUI_USE_BGRA_PACKED_COLOR ? 0 : 16;\nexport const IM_COL32_A_SHIFT: number = 24;\nexport const IM_COL32_A_MASK: number = 0xFF000000;\nexport function IM_COL32(R: number, G: number, B: number, A: number = 255): number {\n return ((A << IM_COL32_A_SHIFT) | (B << IM_COL32_B_SHIFT) | (G << IM_COL32_G_SHIFT) | (R << IM_COL32_R_SHIFT)) >>> 0;\n}\nexport const IM_COL32_WHITE: number = IM_COL32(255, 255, 255, 255); // Opaque white = 0xFFFFFFFF\nexport const IM_COL32_BLACK: number = IM_COL32(0, 0, 0, 255); // Opaque black\nexport const IM_COL32_BLACK_TRANS: number = IM_COL32(0, 0, 0, 0); // Transparent black = 0x00000000\n\n// ImColor() helper to implicity converts colors to either ImU32 (packed 4x1 byte) or ImVec4 (4x1 float)\n// Prefer using IM_COL32() macros if you want a guaranteed compile-time ImU32 for usage with ImDrawList API.\n// **Avoid storing ImColor! Store either u32 of ImVec4. This is not a full-featured color class. MAY OBSOLETE.\n// **None of the ImGui API are using ImColor directly but you can use it as a convenience to pass colors in either ImU32 or ImVec4 formats. Explicitly cast to ImU32 or ImVec4 if needed.\nexport class ImColor\n{\n // ImVec4 Value;\n public Value: ImVec4 = new ImVec4();\n\n // ImColor() { Value.x = Value.y = Value.z = Value.w = 0.0f; }\n // ImColor(int r, int g, int b, int a = 255) { float sc = 1.0f/255.0f; Value.x = (float)r * sc; Value.y = (float)g * sc; Value.z = (float)b * sc; Value.w = (float)a * sc; }\n // ImColor(ImU32 rgba) { float sc = 1.0f/255.0f; Value.x = (float)((rgba>>IM_COL32_R_SHIFT)&0xFF) * sc; Value.y = (float)((rgba>>IM_COL32_G_SHIFT)&0xFF) * sc; Value.z = (float)((rgba>>IM_COL32_B_SHIFT)&0xFF) * sc; Value.w = (float)((rgba>>IM_COL32_A_SHIFT)&0xFF) * sc; }\n // ImColor(float r, float g, float b, float a = 1.0f) { Value.x = r; Value.y = g; Value.z = b; Value.w = a; }\n // ImColor(const ImVec4& col) { Value = col; }\n constructor();\n constructor(r: number, g: number, b: number);\n constructor(r: number, g: number, b: number, a: number);\n constructor(rgba: Bind.ImU32);\n constructor(col: Readonly);\n constructor(r: number | Bind.ImU32 | Readonly = 0.0, g: number = 0.0, b: number = 0.0, a: number = 1.0) {\n if (typeof(r) === \"number\") {\n if (r > 255 && g === 0.0 && b === 0.0 && a === 1.0) {\n this.Value.x = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_R_SHIFT) & 0xFF) / 255));\n this.Value.y = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_G_SHIFT) & 0xFF) / 255));\n this.Value.z = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_B_SHIFT) & 0xFF) / 255));\n this.Value.w = Math.max(0.0, Math.min(1.0, ((r >> IM_COL32_A_SHIFT) & 0xFF) / 255));\n } else if (r <= 1.0 && g <= 1.0 && b <= 1.0 && a <= 1.0) {\n this.Value.x = Math.max(0.0, r);\n this.Value.y = Math.max(0.0, g);\n this.Value.z = Math.max(0.0, b);\n this.Value.w = Math.max(0.0, a);\n } else {\n this.Value.x = Math.max(0.0, Math.min(1.0, r / 255));\n this.Value.y = Math.max(0.0, Math.min(1.0, g / 255));\n this.Value.z = Math.max(0.0, Math.min(1.0, b / 255));\n if (a <= 1.0) {\n this.Value.w = Math.max(0.0, a);\n } else {\n this.Value.w = Math.max(0.0, Math.min(1.0, a / 255));\n }\n }\n } else {\n this.Value.Copy(r);\n }\n }\n // inline operator ImU32() const { return ImGui::ColorConvertFloat4ToU32(Value); }\n public toImU32(): Bind.ImU32 { return ColorConvertFloat4ToU32(this.Value); }\n // inline operator ImVec4() const { return Value; }\n public toImVec4(): ImVec4 { return this.Value; }\n\n // FIXME-OBSOLETE: May need to obsolete/cleanup those helpers.\n // inline void SetHSV(float h, float s, float v, float a = 1.0f){ ImGui::ColorConvertHSVtoRGB(h, s, v, Value.x, Value.y, Value.z); Value.w = a; }\n public SetHSV(h: number, s: number, v: number, a: number = 1.0): void {\n const ref_r: Bind.ImScalar = [ this.Value.x ];\n const ref_g: Bind.ImScalar = [ this.Value.y ];\n const ref_b: Bind.ImScalar = [ this.Value.z ];\n ColorConvertHSVtoRGB(h, s, v, ref_r, ref_g, ref_b);\n this.Value.x = ref_r[0];\n this.Value.y = ref_g[0];\n this.Value.z = ref_b[0];\n this.Value.w = a;\n }\n // static ImColor HSV(float h, float s, float v, float a = 1.0f) { float r,g,b; ImGui::ColorConvertHSVtoRGB(h, s, v, r, g, b); return ImColor(r,g,b,a); }\n public static HSV(h: number, s: number, v: number, a: number = 1.0): ImColor {\n const color = new ImColor();\n color.SetHSV(h, s, v, a);\n return color;\n }\n}\n\nexport const ImGuiInputTextDefaultSize: number = 128;\n\nexport type ImGuiInputTextCallback = (data: ImGuiInputTextCallbackData) => number;\n\n// Shared state of InputText(), passed to callback when a ImGuiInputTextFlags_Callback* flag is used and the corresponding callback is triggered.\nexport class ImGuiInputTextCallbackData {\n constructor(public readonly native: Bind.reference_ImGuiInputTextCallbackData, public readonly UserData: any) {}\n\n // ImGuiInputTextFlags EventFlag; // One of ImGuiInputTextFlags_Callback* // Read-only\n public get EventFlag(): ImGuiInputTextFlags { return this.native.EventFlag; }\n // ImGuiInputTextFlags Flags; // What user passed to InputText() // Read-only\n public get Flags(): ImGuiInputTextFlags { return this.native.Flags; }\n // void* UserData; // What user passed to InputText() // Read-only\n // public get UserData(): any { return this.native.UserData; }\n\n // CharFilter event:\n // ImWchar EventChar; // Character input // Read-write (replace character or set to zero)\n public get EventChar(): Bind.ImWchar { return this.native.EventChar; }\n public set EventChar(value: Bind.ImWchar) { this.native.EventChar = value; }\n\n // Completion,History,Always events:\n // If you modify the buffer contents make sure you update 'BufTextLen' and set 'BufDirty' to true.\n // ImGuiKey EventKey; // Key pressed (Up/Down/TAB) // Read-only\n public get EventKey(): ImGuiKey { return this.native.EventKey; }\n // char* Buf; // Current text buffer // Read-write (pointed data only, can't replace the actual pointer)\n public get Buf(): string { return this.native.Buf; }\n public set Buf(value: string) { this.native.Buf = value; }\n // int BufTextLen; // Current text length in bytes // Read-write\n public get BufTextLen(): number { return this.native.BufTextLen; }\n public set BufTextLen(value: number) { this.native.BufTextLen = value; }\n // int BufSize; // Maximum text length in bytes // Read-only\n public get BufSize(): number { return this.native.BufSize; }\n // bool BufDirty; // Set if you modify Buf/BufTextLen!! // Write\n public set BufDirty(value: boolean) { this.native.BufDirty = value; }\n // int CursorPos; // // Read-write\n public get CursorPos(): number { return this.native.CursorPos; }\n public set CursorPos(value: number) { this.native.CursorPos = value; }\n // int SelectionStart; // // Read-write (== to SelectionEnd when no selection)\n public get SelectionStart(): number { return this.native.SelectionStart; }\n public set SelectionStart(value: number) { this.native.SelectionStart = value; }\n // int SelectionEnd; // // Read-write\n public get SelectionEnd(): number { return this.native.SelectionEnd; }\n public set SelectionEnd(value: number) { this.native.SelectionEnd = value; }\n\n // NB: Helper functions for text manipulation. Calling those function loses selection.\n // IMGUI_API void DeleteChars(int pos, int bytes_count);\n public DeleteChars(pos: number, bytes_count: number): void { return this.native.DeleteChars(pos, bytes_count); }\n // IMGUI_API void InsertChars(int pos, const char* text, const char* text_end = NULL);\n public InsertChars(pos: number, text: string, text_end: number | null = null): void { return this.native.InsertChars(pos, text_end !== null ? text.substring(0, text_end) : text); }\n // bool HasSelection() const { return SelectionStart != SelectionEnd; }\n public HasSelection(): boolean { return this.native.HasSelection(); }\n}\n\nexport type ImGuiSizeConstraintCallback = (data: ImGuiSizeCallbackData) => void;\n\n// Resizing callback data to apply custom constraint. As enabled by SetNextWindowSizeConstraints(). Callback is called during the next Begin().\n// NB: For basic min/max size constraint on each axis you don't need to use the callback! The SetNextWindowSizeConstraints() parameters are enough.\nexport class ImGuiSizeCallbackData {\n constructor(public readonly native: Bind.reference_ImGuiSizeCallbackData, public readonly UserData: any) {}\n\n get Pos(): Readonly { return this.native.Pos; }\n get CurrentSize(): Readonly { return this.native.CurrentSize; }\n get DesiredSize(): Bind.interface_ImVec2 { return this.native.DesiredSize; }\n}\n\nexport class ImGuiListClipper\n{\n private native: Bind.ImGuiListClipper;\n\n public get StartPosY(): number { return this.native.StartPosY; }\n public get ItemsHeight(): number { return this.native.ItemsHeight; }\n public get ItemsCount(): number { return this.native.ItemsCount; }\n public get StepNo(): number { return this.native.StepNo; }\n public get DisplayStart(): number { return this.native.DisplayStart; }\n public get DisplayEnd(): number { return this.native.DisplayEnd; }\n\n // items_count: Use -1 to ignore (you can call Begin later). Use INT_MAX if you don't know how many items you have (in which case the cursor won't be advanced in the final step).\n // items_height: Use -1.0f to be calculated automatically on first step. Otherwise pass in the distance between your items, typically GetTextLineHeightWithSpacing() or GetFrameHeightWithSpacing().\n // If you don't specify an items_height, you NEED to call Step(). If you specify items_height you may call the old Begin()/End() api directly, but prefer calling Step().\n // ImGuiListClipper(int items_count = -1, float items_height = -1.0f) { Begin(items_count, items_height); } // NB: Begin() initialize every fields (as we allow user to call Begin/End multiple times on a same instance if they want).\n constructor(items_count: number = -1, items_height: number = -1.0) {\n this.native = new bind.ImGuiListClipper(items_count, items_height);\n }\n // ~ImGuiListClipper() { IM_ASSERT(ItemsCount == -1); } // Assert if user forgot to call End() or Step() until false.\n public delete(): void {\n if (this.native) {\n this.native.delete();\n delete this.native;\n }\n }\n\n // IMGUI_API bool Step(); // Call until it returns false. The DisplayStart/DisplayEnd fields will be set and you can process/draw those items.\n public Step(): boolean {\n if (!this.native) { throw new Error(); }\n const busy: boolean = this.native.Step();\n if (!busy) {\n this.delete();\n }\n return busy;\n }\n // IMGUI_API void Begin(int items_count, float items_height = -1.0f); // Automatically called by constructor if you passed 'items_count' or by Step() in Step 1.\n public Begin(items_count: number, items_height: number = -1.0): void {\n if (!this.native) {\n this.native = new Bind.ImGuiListClipper(items_count, items_height);\n }\n this.native.Begin(items_count, items_height);\n }\n // IMGUI_API void End(); // Automatically called on the last call of Step() that returns false.\n public End(): void {\n if (!this.native) { throw new Error(); }\n this.native.End();\n this.delete();\n }\n}\n\n//-----------------------------------------------------------------------------\n// Draw List\n// Hold a series of drawing commands. The user provides a renderer for ImDrawData which essentially contains an array of ImDrawList.\n//-----------------------------------------------------------------------------\n\n// Draw callbacks for advanced uses.\n// NB- You most likely do NOT need to use draw callbacks just to create your own widget or customized UI rendering (you can poke into the draw list for that)\n// Draw callback may be useful for example, A) Change your GPU render state, B) render a complex 3D scene inside a UI element (without an intermediate texture/render target), etc.\n// The expected behavior from your rendering function is 'if (cmd.UserCallback != NULL) cmd.UserCallback(parent_list, cmd); else RenderTriangles()'\n// typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd);\nexport type ImDrawCallback = (parent_list: Readonly, cmd: Readonly) => void;\n\n// Special Draw callback value to request renderer back-end to reset the graphics/render state.\n// The renderer back-end needs to handle this special value, otherwise it will crash trying to call a function at this address.\n// This is useful for example if you submitted callbacks which you know have altered the render state and you want it to be restored.\n// It is not done by default because they are many perfectly useful way of altering render state for imgui contents (e.g. changing shader/blending settings before an Image call).\nexport const ImDrawCallback_ResetRenderState = -1;\n\n// Typically, 1 command = 1 GPU draw call (unless command is a callback)\n// Pre 1.71 back-ends will typically ignore the VtxOffset/IdxOffset fields. When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset'\n// is enabled, those fields allow us to render meshes larger than 64K vertices while keeping 16-bits indices.\nexport class ImDrawCmd\n{\n constructor(public readonly native: Bind.reference_ImDrawCmd) {}\n\n // unsigned int ElemCount; // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[].\n get ElemCount(): number { return this.native.ElemCount; }\n // ImVec4 ClipRect; // Clipping rectangle (x1, y1, x2, y2)\n get ClipRect(): Readonly { return this.native.ClipRect; }\n // ImTextureID TextureId; // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas.\n get TextureId(): ImTextureID | null {\n return ImGuiContext.getTexture(this.native.TextureId);\n }\n // unsigned int VtxOffset; // Start offset in vertex buffer. Pre-1.71 or without ImGuiBackendFlags_RendererHasVtxOffset: always 0. With ImGuiBackendFlags_RendererHasVtxOffset: may be >0 to support meshes larger than 64K vertices with 16-bits indices.\n get VtxOffset(): number { return this.native.VtxOffset; }\n // unsigned int IdxOffset; // Start offset in index buffer. Always equal to sum of ElemCount drawn so far.\n get IdxOffset(): number { return this.native.IdxOffset; }\n // ImDrawCallback UserCallback; // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally.\n public readonly UserCallback: ImDrawCallback | null = null; // TODO\n // void* UserCallbackData; // The draw callback code can access this.\n public readonly UserCallbackData: any = null; // TODO\n\n // ImDrawCmd() { ElemCount = 0; ClipRect.x = ClipRect.y = ClipRect.z = ClipRect.w = 0.0f; TextureId = NULL; UserCallback = NULL; UserCallbackData = NULL; }\n}\n\n// Vertex index \n// (to allow large meshes with 16-bits indices: set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset in the renderer back-end)\n// (to use 32-bits indices: override with '#define ImDrawIdx unsigned int' in imconfig.h)\n// #ifndef ImDrawIdx\n// typedef unsigned short ImDrawIdx;\n// #endif\nexport const ImDrawIdxSize: number = 2; // bind.ImDrawIdxSize;\nexport type ImDrawIdx = number;\n\n// Vertex layout\n// #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT\nexport const ImDrawVertSize: number = 20; // bind.ImDrawVertSize;\nexport const ImDrawVertPosOffset: number = 0; // bind.ImDrawVertPosOffset;\nexport const ImDrawVertUVOffset: number = 8; // bind.ImDrawVertUVOffset;\nexport const ImDrawVertColOffset: number = 16; // bind.ImDrawVertColOffset;\nexport class ImDrawVert\n{\n // ImVec2 pos;\n public pos: Float32Array;\n // ImVec2 uv;\n public uv: Float32Array;\n // ImU32 col;\n public col: Uint32Array;\n\n constructor(buffer: ArrayBuffer, byteOffset: number = 0) {\n this.pos = new Float32Array(buffer, byteOffset + bind.ImDrawVertPosOffset, 2);\n this.uv = new Float32Array(buffer, byteOffset + bind.ImDrawVertUVOffset, 2);\n this.col = new Uint32Array(buffer, byteOffset + bind.ImDrawVertColOffset, 1);\n }\n}\n// #else\n// You can override the vertex format layout by defining IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT in imconfig.h\n// The code expect ImVec2 pos (8 bytes), ImVec2 uv (8 bytes), ImU32 col (4 bytes), but you can re-order them or add other fields as needed to simplify integration in your engine.\n// The type has to be described within the macro (you can either declare the struct or use a typedef)\n// NOTE: IMGUI DOESN'T CLEAR THE STRUCTURE AND DOESN'T CALL A CONSTRUCTOR SO ANY CUSTOM FIELD WILL BE UNINITIALIZED. IF YOU ADD EXTRA FIELDS (SUCH AS A 'Z' COORDINATES) YOU WILL NEED TO CLEAR THEM DURING RENDER OR TO IGNORE THEM.\n// IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT;\n// #endif\n\n// Draw channels are used by the Columns API to \"split\" the render list into different channels while building, so items of each column can be batched together.\n// You can also use them to simulate drawing layers and submit primitives in a different order than how they will be rendered.\nexport class ImDrawChannel\n{\n // ImVector CmdBuffer;\n // ImVector IdxBuffer;\n}\n\nexport class ImDrawListSharedData\n{\n constructor(public readonly native: Bind.reference_ImDrawListSharedData) {}\n}\n\n// Draw command list\n// This is the low-level list of polygons that ImGui functions are filling. At the end of the frame, all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering.\n// Each ImGui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to access the current window draw list and draw custom primitives.\n// You can interleave normal ImGui:: calls and adding primitives to the current draw list.\n// All positions are generally in pixel coordinates (top-left at (0,0), bottom-right at io.DisplaySize), however you are totally free to apply whatever transformation matrix to want to the data (if you apply such transformation you'll want to apply it to ClipRect as well)\n// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects.\nexport class ImDrawList\n{\n constructor(public readonly native: Bind.reference_ImDrawList) {}\n\n public IterateDrawCmds(callback: (draw_cmd: ImDrawCmd, ElemStart: number) => void): void {\n this.native.IterateDrawCmds((draw_cmd: Bind.reference_ImDrawCmd, ElemStart: number): void => {\n callback(new ImDrawCmd(draw_cmd), ElemStart);\n });\n }\n\n // This is what you have to render\n // ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback.\n // ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those\n get IdxBuffer(): Uint8Array { return this.native.IdxBuffer; }\n // ImVector VtxBuffer; // Vertex buffer.\n get VtxBuffer(): Uint8Array { return this.native.VtxBuffer; }\n // ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive.\n get Flags(): ImDrawListFlags { return this.native.Flags; }\n set Flags(value: ImDrawListFlags) { this.native.Flags = value; }\n\n // [Internal, used while building lists]\n // const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context)\n // const char* _OwnerName; // Pointer to owner window's name for debugging\n // unsigned int _VtxCurrentIdx; // [Internal] == VtxBuffer.Size\n // ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)\n // ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)\n // ImVector _ClipRectStack; // [Internal]\n // ImVector _TextureIdStack; // [Internal]\n // ImVector _Path; // [Internal] current path building\n // int _ChannelsCurrent; // [Internal] current channel number (0)\n // int _ChannelsCount; // [Internal] number of active channels (1+)\n // ImVector _Channels; // [Internal] draw channels for columns API (not resized down so _ChannelsCount may be smaller than _Channels.Size)\n\n // ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clear(); }\n // ~ImDrawList() { ClearFreeMemory(); }\n // IMGUI_API void PushClipRect(ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling)\n public PushClipRect(clip_rect_min: Readonly, clip_rect_max: Readonly, intersect_with_current_clip_rect: boolean = false): void {\n this.native.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect);\n }\n // IMGUI_API void PushClipRectFullScreen();\n public PushClipRectFullScreen(): void { this.native.PushClipRectFullScreen(); }\n // IMGUI_API void PopClipRect();\n public PopClipRect(): void { this.native.PopClipRect(); }\n // IMGUI_API void PushTextureID(ImTextureID texture_id);\n public PushTextureID(texture_id: ImTextureID): void {\n this.native.PushTextureID(ImGuiContext.setTexture(texture_id));\n }\n // IMGUI_API void PopTextureID();\n public PopTextureID(): void { this.native.PopTextureID(); }\n // inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); }\n public GetClipRectMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return this.native.GetClipRectMin(out);\n }\n // inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); }\n public GetClipRectMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return this.native.GetClipRectMax(out);\n }\n\n // Primitives\n // IMGUI_API void AddLine(const ImVec2& a, const ImVec2& b, ImU32 col, float thickness = 1.0f);\n public AddLine(a: Readonly, b: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddLine(a, b, col, thickness);\n }\n // IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All, float thickness = 1.0f); // a: upper-left, b: lower-right, rounding_corners_flags: 4-bits corresponding to which corner to round\n public AddRect(a: Readonly, b: Readonly, col: Bind.ImU32, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All, thickness: number = 1.0): void {\n this.native.AddRect(a, b, col, rounding, rounding_corners_flags, thickness);\n }\n // IMGUI_API void AddRectFilled(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All); // a: upper-left, b: lower-right\n public AddRectFilled(a: Readonly, b: Readonly, col: Bind.ImU32, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All): void {\n this.native.AddRectFilled(a, b, col, rounding, rounding_corners_flags);\n }\n // IMGUI_API void AddRectFilledMultiColor(const ImVec2& a, const ImVec2& b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left);\n public AddRectFilledMultiColor(a: Readonly, b: Readonly, col_upr_left: Bind.ImU32, col_upr_right: Bind.ImU32, col_bot_right: Bind.ImU32, col_bot_left: Bind.ImU32): void {\n this.native.AddRectFilledMultiColor(a, b, col_upr_left, col_upr_right, col_bot_right, col_bot_left);\n }\n // IMGUI_API void AddQuad(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col, float thickness = 1.0f);\n public AddQuad(a: Readonly, b: Readonly, c: Readonly, d: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddQuad(a, b, c, d, col, thickness);\n }\n // IMGUI_API void AddQuadFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, ImU32 col);\n public AddQuadFilled(a: Readonly, b: Readonly, c: Readonly, d: Readonly, col: Bind.ImU32): void {\n this.native.AddQuadFilled(a, b, c, d, col);\n }\n // IMGUI_API void AddTriangle(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col, float thickness = 1.0f);\n public AddTriangle(a: Readonly, b: Readonly, c: Readonly, col: Bind.ImU32, thickness: number = 1.0): void {\n this.native.AddTriangle(a, b, c, col, thickness);\n }\n // IMGUI_API void AddTriangleFilled(const ImVec2& a, const ImVec2& b, const ImVec2& c, ImU32 col);\n public AddTriangleFilled(a: Readonly, b: Readonly, c: Readonly, col: Bind.ImU32): void {\n this.native.AddTriangleFilled(a, b, c, col);\n }\n // IMGUI_API void AddCircle(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f);\n public AddCircle(centre: Readonly, radius: number, col: Bind.ImU32, num_segments: number = 12, thickness: number = 1.0): void {\n this.native.AddCircle(centre, radius, col, num_segments, thickness);\n }\n // IMGUI_API void AddCircleFilled(const ImVec2& centre, float radius, ImU32 col, int num_segments = 12);\n public AddCircleFilled(centre: Readonly, radius: number, col: Bind.ImU32, num_segments: number = 12): void {\n this.native.AddCircleFilled(centre, radius, col, num_segments);\n }\n // IMGUI_API void AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL);\n // IMGUI_API void AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL, float wrap_width = 0.0f, const ImVec4* cpu_fine_clip_rect = NULL);\n public AddText(pos: Readonly, col: Bind.ImU32, text_begin: string, text_end?: number | null): void;\n public AddText(font: ImFont, font_size: number, pos: Readonly, col: Bind.ImU32, text_begin: string, text_end?: number | null, wrap_width?: number, cpu_fine_clip_rect?: Readonly | null): void;\n public AddText(...args: any[]): void {\n if (args[0] instanceof ImFont) {\n const font: ImFont = args[0];\n const font_size: number = args[1];\n const pos: Readonly = args[2];\n const col: Bind.ImU32 = args[3];\n const text_begin: string = args[4];\n const text_end: number | null = args[5] || null;\n const wrap_width: number = args[6] = 0.0;\n const cpu_fine_clip_rect: Readonly | null = args[7] || null;\n this.native.AddText_B(font.native, font_size, pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin, wrap_width, cpu_fine_clip_rect);\n } else {\n const pos: Readonly = args[0];\n const col: Bind.ImU32 = args[1];\n const text_begin: string = args[2];\n const text_end: number | null = args[3] || null;\n this.native.AddText_A(pos, col, text_end !== null ? text_begin.substring(0, text_end) : text_begin);\n }\n }\n // IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,1), ImU32 col = 0xFFFFFFFF);\n public AddImage(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, uv_a: Readonly = ImVec2.ZERO, uv_b: Readonly = ImVec2.UNIT, col: Bind.ImU32 = 0xFFFFFFFF): void {\n this.native.AddImage(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col);\n }\n // IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a = ImVec2(0,0), const ImVec2& uv_b = ImVec2(1,0), const ImVec2& uv_c = ImVec2(1,1), const ImVec2& uv_d = ImVec2(0,1), ImU32 col = 0xFFFFFFFF);\n public AddImageQuad(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, c: Readonly, d: Readonly, uv_a: Readonly = ImVec2.ZERO, uv_b: Readonly = ImVec2.UNIT_X, uv_c: Readonly = ImVec2.UNIT, uv_d: Readonly = ImVec2.UNIT_Y, col: Bind.ImU32 = 0xFFFFFFFF): void {\n this.native.AddImageQuad(ImGuiContext.setTexture(user_texture_id), a, b, c, d, uv_a, uv_b, uv_c, uv_d, col);\n }\n // IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col, float rounding, int rounding_corners = ImDrawCornerFlags_All);\n public AddImageRounded(user_texture_id: ImTextureID | null, a: Readonly, b: Readonly, uv_a: Readonly, uv_b: Readonly, col: Bind.ImU32, rounding: number, rounding_corners: ImDrawCornerFlags = ImDrawCornerFlags.All): void {\n this.native.AddImageRounded(ImGuiContext.setTexture(user_texture_id), a, b, uv_a, uv_b, col, rounding, rounding_corners);\n }\n // IMGUI_API void AddPolyline(const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness);\n public AddPolyline(points: Array>, num_points: number, col: Bind.ImU32, closed: boolean, thickness: number): void {\n this.native.AddPolyline(points, num_points, col, closed, thickness);\n }\n // IMGUI_API void AddConvexPolyFilled(const ImVec2* points, const int num_points, ImU32 col);\n public AddConvexPolyFilled(points: Array>, num_points: number, col: Bind.ImU32): void {\n this.native.AddConvexPolyFilled(points, num_points, col);\n }\n // IMGUI_API void AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const ImVec2& pos1, ImU32 col, float thickness, int num_segments = 0);\n public AddBezierCurve(pos0: Readonly, cp0: Readonly, cp1: Readonly, pos1: Readonly, col: Bind.ImU32, thickness: number = 1.0, num_segments: number = 0): void {\n this.native.AddBezierCurve(pos0, cp0, cp1, pos1, col, thickness, num_segments);\n }\n\n // Stateful path API, add points then finish with PathFill() or PathStroke()\n // inline void PathClear() { _Path.resize(0); }\n public PathClear(): void { this.native.PathClear(); }\n // inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); }\n public PathLineTo(pos: Readonly): void { this.native.PathLineTo(pos); }\n // inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path[_Path.Size-1], &pos, 8) != 0) _Path.push_back(pos); }\n public PathLineToMergeDuplicate(pos: Readonly): void { this.native.PathLineToMergeDuplicate(pos); }\n // inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); PathClear(); }\n public PathFillConvex(col: Bind.ImU32): void { this.native.PathFillConvex(col); }\n // inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness); PathClear(); }\n public PathStroke(col: Bind.ImU32, closed: boolean, thickness: number = 1.0): void { this.native.PathStroke(col, closed, thickness); }\n // IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_segments = 10);\n public PathArcTo(centre: Readonly, radius: number, a_min: number, a_max: number, num_segments: number = 10): void { this.native.PathArcTo(centre, radius, a_min, a_max, num_segments); }\n // IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle\n public PathArcToFast(centre: Readonly, radius: number, a_min_of_12: number, a_max_of_12: number): void { this.native.PathArcToFast(centre, radius, a_min_of_12, a_max_of_12); }\n // IMGUI_API void PathBezierCurveTo(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, int num_segments = 0);\n public PathBezierCurveTo(p1: Readonly, p2: Readonly, p3: Readonly, num_segments: number = 0): void { this.native.PathBezierCurveTo(p1, p2, p3, num_segments); }\n // IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, int rounding_corners_flags = ImDrawCornerFlags_All);\n public PathRect(rect_min: Readonly, rect_max: Readonly, rounding: number = 0.0, rounding_corners_flags: ImDrawCornerFlags = ImDrawCornerFlags.All): void { this.native.PathRect(rect_min, rect_max, rounding, rounding_corners_flags); }\n\n // Channels\n // - Use to simulate layers. By switching channels to can render out-of-order (e.g. submit foreground primitives before background primitives)\n // - Use to minimize draw calls (e.g. if going back-and-forth between multiple non-overlapping clipping rectangles, prefer to append into separate channels then merge at the end)\n // IMGUI_API void ChannelsSplit(int channels_count);\n public ChannelsSplit(channels_count: number): void { this.native.ChannelsSplit(channels_count); }\n // IMGUI_API void ChannelsMerge();\n public ChannelsMerge(): void { this.native.ChannelsMerge(); }\n // IMGUI_API void ChannelsSetCurrent(int channel_index);\n public ChannelsSetCurrent(channel_index: number): void { this.native.ChannelsSetCurrent(channel_index); }\n\n // Advanced\n // IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles.\n public AddCallback(callback: ImDrawCallback, callback_data: any): void {\n const _callback: Bind.ImDrawCallback = (parent_list: Readonly, draw_cmd: Readonly): void => {\n callback(new ImDrawList(parent_list), new ImDrawCmd(draw_cmd));\n };\n this.native.AddCallback(_callback, callback_data);\n }\n // IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible\n public AddDrawCmd(): void { this.native.AddDrawCmd(); }\n\n // Internal helpers\n // NB: all primitives needs to be reserved via PrimReserve() beforehand!\n // IMGUI_API void Clear();\n public Clear(): void { this.native.Clear(); }\n // IMGUI_API void ClearFreeMemory();\n public ClearFreeMemory(): void { this.native.ClearFreeMemory(); }\n // IMGUI_API void PrimReserve(int idx_count, int vtx_count);\n public PrimReserve(idx_count: number, vtx_count: number): void { this.native.PrimReserve(idx_count, vtx_count); }\n // IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles)\n public PrimRect(a: Readonly, b: Readonly, col: Bind.ImU32): void { this.native.PrimRect(a, b, col); }\n // IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col);\n public PrimRectUV(a: Readonly, b: Readonly, uv_a: Readonly, uv_b: Readonly, col: Bind.ImU32): void { this.native.PrimRectUV(a, b, uv_a, uv_b, col); }\n // IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col);\n public PrimQuadUV(a: Readonly, b: Readonly, c: Readonly, d: Readonly, uv_a: Readonly, uv_b: Readonly, uv_c: Readonly, uv_d: Readonly, col: Bind.ImU32): void { this.native.PrimQuadUV(a, b, c, d, uv_a, uv_b, uv_c, uv_d, col); }\n // inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; }\n public PrimWriteVtx(pos: Readonly, uv: Readonly, col: Bind.ImU32): void { this.native.PrimWriteVtx(pos, uv, col); }\n // inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; }\n public PrimWriteIdx(idx: ImDrawIdx): void { this.native.PrimWriteIdx(idx); }\n // inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); }\n public PrimVtx(pos: Readonly, uv: Readonly, col: Bind.ImU32): void { this.native.PrimVtx(pos, uv, col); }\n // IMGUI_API void UpdateClipRect();\n public UpdateClipRect(): void { this.native.UpdateClipRect(); }\n // IMGUI_API void UpdateTextureID();\n public UpdateTextureID(): void { this.native.UpdateTextureID(); }\n}\n\n// All draw data to render an ImGui frame\nexport class ImDrawData\n{\n constructor(public readonly native: Bind.reference_ImDrawData) {}\n\n public IterateDrawLists(callback: (draw_list: ImDrawList) => void): void {\n this.native.IterateDrawLists((draw_list: Bind.reference_ImDrawList): void => {\n callback(new ImDrawList(draw_list));\n });\n }\n\n // bool Valid; // Only valid after Render() is called and before the next NewFrame() is called.\n get Valid(): boolean { return this.native.Valid; }\n // ImDrawList** CmdLists;\n // int CmdListsCount;\n get CmdListsCount(): number { return this.native.CmdListsCount; }\n // int TotalIdxCount; // For convenience, sum of all cmd_lists idx_buffer.Size\n get TotalIdxCount(): number { return this.native.TotalIdxCount; }\n // int TotalVtxCount; // For convenience, sum of all cmd_lists vtx_buffer.Size\n get TotalVtxCount(): number { return this.native.TotalVtxCount; }\n // ImVec2 DisplayPos; // Upper-left position of the viewport to render (== upper-left of the orthogonal projection matrix to use)\n get DisplayPos(): Readonly { return this.native.DisplayPos; }\n // ImVec2 DisplaySize; // Size of the viewport to render (== io.DisplaySize for the main viewport) (DisplayPos + DisplaySize == lower-right of the orthogonal projection matrix to use)\n get DisplaySize(): Readonly { return this.native.DisplaySize; }\n // ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display.\n get FramebufferScale(): Readonly { return this.native.FramebufferScale; }\n\n // Functions\n // ImDrawData() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCount = 0; }\n // IMGUI_API void DeIndexAllBuffers(); // For backward compatibility or convenience: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering!\n public DeIndexAllBuffers(): void { this.native.DeIndexAllBuffers(); }\n // IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than ImGui expects, or if there is a difference between your window resolution and framebuffer resolution.\n public ScaleClipRects(fb_scale: Readonly): void {\n this.native.ScaleClipRects(fb_scale);\n }\n}\n\nexport class script_ImFontConfig implements Bind.interface_ImFontConfig\n{\n // void* FontData; // // TTF/OTF data\n // int FontDataSize; // // TTF/OTF data size\n FontData: DataView | null = null;\n // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself).\n FontDataOwnedByAtlas: boolean = true;\n // int FontNo; // 0 // Index of font within TTF/OTF file\n FontNo: number = 0;\n // float SizePixels; // // Size in pixels for rasterizer.\n SizePixels: number = 0;\n // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis.\n OversampleH: number = 3;\n OversampleV: number = 1;\n // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1.\n PixelSnapH: boolean = false;\n // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now.\n GlyphExtraSpacing: ImVec2 = new ImVec2(0, 0);\n // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input.\n GlyphOffset: ImVec2 = new ImVec2(0, 0);\n // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE.\n GlyphRanges: number | null = null;\n // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font\n GlyphMinAdvanceX: number = 0;\n // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs\n GlyphMaxAdvanceX: number = Number.MAX_VALUE;\n // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights.\n MergeMode: boolean = false;\n // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one.\n RasterizerFlags: number = 0;\n // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable.\n RasterizerMultiply: number = 1.0;\n\n // [Internal]\n // char Name[32]; // Name (strictly to ease debugging)\n Name: string = \"\";\n // ImFont* DstFont;\n DstFont: Bind.reference_ImFont | null = null;\n\n // IMGUI_API ImFontConfig();\n}\n\nexport class ImFontConfig {\n constructor(public readonly internal: Bind.interface_ImFontConfig = new script_ImFontConfig()) {}\n\n // void* FontData; // // TTF/OTF data\n // int FontDataSize; // // TTF/OTF data size\n get FontData(): DataView | null { return this.internal.FontData; }\n // bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself).\n get FontDataOwnedByAtlas(): boolean { return this.internal.FontDataOwnedByAtlas; }\n // int FontNo; // 0 // Index of font within TTF/OTF file\n get FontNo(): number { return this.internal.FontNo; }\n // float SizePixels; // // Size in pixels for rasterizer.\n get SizePixels(): number { return this.internal.SizePixels; }\n // int OversampleH, OversampleV; // 3, 1 // Rasterize at higher quality for sub-pixel positioning. We don't use sub-pixel positions on the Y axis.\n get OversampleH(): number { return this.internal.OversampleH; }\n get OversampleV(): number { return this.internal.OversampleV; }\n // bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1.\n get PixelSnapH(): boolean { return this.internal.PixelSnapH; }\n // ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now.\n get GlyphExtraSpacing(): ImVec2 { return this.internal.GlyphExtraSpacing; }\n // ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input.\n get GlyphOffset(): ImVec2 { return this.internal.GlyphOffset; }\n // const ImWchar* GlyphRanges; // NULL // Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE.\n get GlyphRanges(): number | null { return this.internal.GlyphRanges; }\n // float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font\n get GlyphMinAdvanceX(): number { return this.internal.GlyphMinAdvanceX; }\n // float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs\n get GlyphMaxAdvanceX(): number { return this.internal.GlyphMaxAdvanceX; }\n // bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights.\n get MergeMode(): boolean { return this.internal.MergeMode; }\n // unsigned int RasterizerFlags; // 0x00 // Settings for custom font rasterizer (e.g. ImGuiFreeType). Leave as zero if you aren't using one.\n get RasterizerFlags(): number { return this.internal.RasterizerFlags; }\n // float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable.\n get RasterizerMultiply(): number { return this.internal.RasterizerMultiply; }\n\n // [Internal]\n // char Name[32]; // Name (strictly to ease debugging)\n get Name(): string { return this.internal.Name; }\n set Name(value: string) { this.internal.Name = value; }\n // ImFont* DstFont;\n get DstFont(): ImFont | null {\n const font = this.internal.DstFont;\n return font && new ImFont(font);\n }\n\n // IMGUI_API ImFontConfig();\n}\n\n// struct ImFontGlyph\nexport class script_ImFontGlyph implements Bind.interface_ImFontGlyph\n{\n // ImWchar Codepoint; // 0x0000..0xFFFF\n Codepoint: number = 0;\n // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in)\n AdvanceX: number = 0.0;\n // float X0, Y0, X1, Y1; // Glyph corners\n X0: number = 0.0;\n Y0: number = 0.0;\n X1: number = 1.0;\n Y1: number = 1.0;\n // float U0, V0, U1, V1; // Texture coordinates\n U0: number = 0.0;\n V0: number = 0.0;\n U1: number = 1.0;\n V1: number = 1.0;\n}\n\nexport class ImFontGlyph implements Bind.interface_ImFontGlyph {\n constructor(public readonly internal: Bind.interface_ImFontGlyph = new script_ImFontGlyph()) {}\n // ImWchar Codepoint; // 0x0000..0xFFFF\n get Codepoint(): number { return this.internal.Codepoint; }\n // float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in)\n get AdvanceX(): number { return this.internal.AdvanceX; };\n // float X0, Y0, X1, Y1; // Glyph corners\n get X0(): number { return this.internal.X0; };\n get Y0(): number { return this.internal.Y0; };\n get X1(): number { return this.internal.X1; };\n get Y1(): number { return this.internal.Y1; };\n // float U0, V0, U1, V1; // Texture coordinates\n get U0(): number { return this.internal.U0; };\n get V0(): number { return this.internal.V0; };\n get U1(): number { return this.internal.U1; };\n get V1(): number { return this.internal.V1; };\n}\n\nexport enum ImFontAtlasFlags\n{\n None = 0,\n NoPowerOfTwoHeight = 1 << 0, // Don't round the height to next power of two\n NoMouseCursors = 1 << 1, // Don't build software mouse cursors into the atlas\n}\n\n// Load and rasterize multiple TTF/OTF fonts into a same texture.\n// Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering.\n// We also add custom graphic data into the texture that serves for ImGui.\n// 1. (Optional) Call AddFont*** functions. If you don't call any, the default font will be loaded for you.\n// 2. Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data.\n// 3. Upload the pixels data into a texture within your graphics system.\n// 4. Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture. This value will be passed back to you during rendering to identify the texture.\n// IMPORTANT: If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the ImFont is build (when calling GetTextData*** or Build()). We only copy the pointer, not the data.\nexport class ImFontAtlas\n{\n constructor(public readonly native: Bind.reference_ImFontAtlas) {}\n\n // IMGUI_API ImFontAtlas();\n // IMGUI_API ~ImFontAtlas();\n // IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg);\n // IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL);\n public AddFontDefault(font_cfg: Bind.interface_ImFontConfig | null = null): ImFont {\n return new ImFont(this.native.AddFontDefault(font_cfg));\n }\n // IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL);\n // IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after Build(). Set font_cfg->FontDataOwnedByAtlas to false to keep ownership.\n public AddFontFromMemoryTTF(data: ArrayBuffer, size_pixels: number, font_cfg: ImFontConfig | null = null, glyph_ranges: number | null = null): ImFont {\n return new ImFont(this.native.AddFontFromMemoryTTF(new Uint8Array(data), size_pixels, font_cfg && font_cfg.internal, glyph_ranges));\n }\n // IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp.\n // IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter.\n // IMGUI_API void ClearTexData(); // Clear the CPU-side texture data. Saves RAM once the texture has been copied to graphics memory.\n public ClearTexData(): void { this.native.ClearTexData(); }\n // IMGUI_API void ClearInputData(); // Clear the input TTF data (inc sizes, glyph ranges)\n public ClearInputData(): void { this.native.ClearInputData(); }\n // IMGUI_API void ClearFonts(); // Clear the ImGui-side font data (glyphs storage, UV coordinates)\n public ClearFonts(): void { this.native.ClearFonts(); }\n // IMGUI_API void Clear(); // Clear all\n public Clear(): void { this.native.Clear(); }\n\n // Build atlas, retrieve pixel data.\n // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID().\n // RGBA32 format is provided for convenience and compatibility, but note that unless you use CustomRect to draw color data, the RGB pixels emitted from Fonts will all be white (~75% of waste).\n // Pitch = Width * BytesPerPixels\n // IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions.\n public Build(): boolean { return this.native.Build(); }\n // IMGUI_API bool IsBuilt() { return Fonts.Size > 0 && (TexPixelsAlpha8 != NULL || TexPixelsRGBA32 != NULL); }\n public IsBuilt(): boolean { return this.native.IsBuilt(); }\n // IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel\n public GetTexDataAsAlpha8(): { pixels: Uint8ClampedArray, width: number, height: number, bytes_per_pixel: number } {\n return this.native.GetTexDataAsAlpha8();\n }\n // IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel\n public GetTexDataAsRGBA32(): { pixels: Uint8ClampedArray, width: number, height: number, bytes_per_pixel: number } {\n return this.native.GetTexDataAsRGBA32();\n }\n // void SetTexID(ImTextureID id) { TexID = id; }\n public SetTexID(id: ImTextureID | null): void { this.TexID = id; }\n\n //-------------------------------------------\n // Glyph Ranges\n //-------------------------------------------\n\n // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list)\n // NB: Make sure that your string are UTF-8 and NOT in your local code page. In C++11, you can create UTF-8 string literal using the u8\"Hello world\" syntax. See FAQ for details.\n // IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin\n GetGlyphRangesDefault(): number { return this.native.GetGlyphRangesDefault(); }\n // IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters\n GetGlyphRangesKorean(): number { return this.native.GetGlyphRangesKorean(); }\n // IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 1946 Ideographs\n GetGlyphRangesJapanese(): number { return this.native.GetGlyphRangesJapanese(); }\n // IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs\n GetGlyphRangesChineseFull(): number { return this.native.GetGlyphRangesChineseFull(); }\n // IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese\n GetGlyphRangesChineseSimplifiedCommon(): number { return this.native.GetGlyphRangesChineseSimplifiedCommon(); }\n // IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters\n GetGlyphRangesCyrillic(): number { return this.native.GetGlyphRangesCyrillic(); }\n // IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters\n GetGlyphRangesThai(): number { return this.native.GetGlyphRangesThai(); }\n // IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters\n GetGlyphRangesVietnamese(): number { return this.native.GetGlyphRangesVietnamese(); }\n\n // Helpers to build glyph ranges from text data. Feed your application strings/characters to it then call BuildRanges().\n // struct GlyphRangesBuilder\n // {\n // ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used)\n // GlyphRangesBuilder() { UsedChars.resize(0x10000 / 8); memset(UsedChars.Data, 0, 0x10000 / 8); }\n // bool GetBit(int n) const { return (UsedChars[n >> 3] & (1 << (n & 7))) != 0; }\n // void SetBit(int n) { UsedChars[n >> 3] |= 1 << (n & 7); } // Set bit 'c' in the array\n // void AddChar(ImWchar c) { SetBit(c); } // Add character\n // IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added)\n // IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault) to force add all of ASCII/Latin+Ext\n // IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges\n // };\n\n //-------------------------------------------\n // Custom Rectangles/Glyphs API\n //-------------------------------------------\n\n // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. After calling Build(), you can query the rectangle position and render your pixels.\n // You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs.\n // struct CustomRect\n // {\n // unsigned int ID; // Input // User ID. Use <0x10000 to map into a font glyph, >=0x10000 for other/internal/custom texture data.\n // unsigned short Width, Height; // Input // Desired rectangle dimension\n // unsigned short X, Y; // Output // Packed position in Atlas\n // float GlyphAdvanceX; // Input // For custom font glyphs only (ID<0x10000): glyph xadvance\n // ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph display offset\n // ImFont* Font; // Input // For custom font glyphs only (ID<0x10000): target font\n // CustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); Font = NULL; }\n // bool IsPacked() const { return X != 0xFFFF; }\n // };\n\n // IMGUI_API int AddCustomRectRegular(unsigned int id, int width, int height); // Id needs to be >= 0x10000. Id >= 0x80000000 are reserved for ImGui and ImDrawList\n // IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0,0)); // Id needs to be < 0x10000 to register a rectangle to map into a specific font.\n // IMGUI_API void CalcCustomRectUV(const CustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max);\n // const CustomRect* GetCustomRectByIndex(int index) const { if (index < 0) return NULL; return &CustomRects[index]; }\n\n //-------------------------------------------\n // Members\n //-------------------------------------------\n\n // bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert.\n get Locked(): boolean { return this.native.Locked; }\n set Locked(value: boolean) { this.native.Locked = value; }\n // ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_)\n get Flags(): ImFontAtlasFlags { return this.native.Flags; }\n set Flags(value: ImFontAtlasFlags) { this.native.Flags = value; }\n // ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure.\n get TexID(): ImTextureID | null {\n return ImGuiContext.getTexture(this.native.TexID);\n }\n set TexID(value: ImTextureID | null) {\n this.native.TexID = ImGuiContext.setTexture(value);\n }\n // int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height.\n get TexDesiredWidth(): number { return this.native.TexDesiredWidth; }\n set TexDesiredWidth(value: number) { this.native.TexDesiredWidth = value; }\n // int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1.\n get TexGlyphPadding(): number { return this.native.TexGlyphPadding; }\n set TexGlyphPadding(value: number) { this.native.TexGlyphPadding = value; }\n\n // [Internal]\n // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you.\n // unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight\n // unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4\n // int TexWidth; // Texture width calculated during Build().\n get TexWidth(): number { return this.native.TexWidth; }\n // int TexHeight; // Texture height calculated during Build().\n get TexHeight(): number { return this.native.TexHeight; }\n // ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight)\n get TexUvScale(): Readonly { return this.native.TexUvScale; }\n // ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel\n get TexUvWhitePixel(): Readonly { return this.native.TexUvWhitePixel; }\n // ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font.\n get Fonts(): ImVector {\n const fonts: ImVector = new ImVector();\n this.native.IterateFonts((font: Bind.reference_ImFont) => {\n fonts.push(new ImFont(font));\n });\n return fonts;\n }\n // ImVector CustomRects; // Rectangles for packing custom texture data into the atlas.\n // ImVector ConfigData; // Internal data\n // int CustomRectIds[1]; // Identifiers of custom texture rectangle used by ImFontAtlas/ImDrawList\n}\n\n// Font runtime data and rendering\n// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32().\nexport class ImFont\n{\n constructor(public readonly native: Bind.reference_ImFont) {}\n\n // Members: Hot ~62/78 bytes\n // float FontSize; // // Height of characters, set during loading (don't change after loading)\n get FontSize(): number { return this.native.FontSize; }\n // float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale()\n get Scale(): number { return this.native.Scale; }\n set Scale(value: number) { this.native.Scale = value; }\n // ImVec2 DisplayOffset; // = (0.f,1.f) // Offset font rendering by xx pixels\n get DisplayOffset(): Bind.interface_ImVec2 { return this.native.DisplayOffset; }\n // ImVector Glyphs; // // All glyphs.\n get Glyphs(): ImVector {\n const glyphs = new ImVector();\n this.native.IterateGlyphs((glyph: Bind.reference_ImFontGlyph): void => {\n glyphs.push(new ImFontGlyph(glyph)); // TODO: wrap native\n });\n return glyphs;\n }\n // ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI).\n // get IndexAdvanceX(): any { return this.native.IndexAdvanceX; }\n // ImVector IndexLookup; // // Sparse. Index glyphs by Unicode code-point.\n // get IndexLookup(): any { return this.native.IndexLookup; }\n // const ImFontGlyph* FallbackGlyph; // == FindGlyph(FontFallbackChar)\n get FallbackGlyph(): ImFontGlyph | null {\n const glyph = this.native.FallbackGlyph;\n return glyph && new ImFontGlyph(glyph);\n }\n set FallbackGlyph(value: ImFontGlyph | null) {\n this.native.FallbackGlyph = value && value.internal as Bind.reference_ImFontGlyph;\n }\n // float FallbackAdvanceX; // == FallbackGlyph->AdvanceX\n get FallbackAdvanceX(): number { return this.native.FallbackAdvanceX; }\n // ImWchar FallbackChar; // = '?' // Replacement glyph if one isn't found. Only set via SetFallbackChar()\n get FallbackChar(): number { return this.native.FallbackChar; }\n\n // Members: Cold ~18/26 bytes\n // short ConfigDataCount; // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont.\n get ConfigDataCount(): number { return this.ConfigData.length; }\n // ImFontConfig* ConfigData; // // Pointer within ContainerAtlas->ConfigData\n get ConfigData(): ImFontConfig[] {\n const cfg_data: ImFontConfig[] = [];\n this.native.IterateConfigData((cfg: Bind.interface_ImFontConfig): void => {\n cfg_data.push(new ImFontConfig(cfg));\n });\n return cfg_data;\n }\n // ImFontAtlas* ContainerAtlas; // // What we has been loaded into\n get ContainerAtlas(): ImFontAtlas | null { return null; }\n // float Ascent, Descent; // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize]\n get Ascent(): number { return this.native.Ascent; }\n get Descent(): number { return this.native.Descent; }\n // int MetricsTotalSurface;// // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs)\n get MetricsTotalSurface(): number { return this.native.MetricsTotalSurface; }\n\n // Methods\n // IMGUI_API ImFont();\n // IMGUI_API ~ImFont();\n // IMGUI_API void ClearOutputData();\n public ClearOutputData(): void { return this.native.ClearOutputData(); }\n // IMGUI_API void BuildLookupTable();\n public BuildLookupTable(): void { return this.native.BuildLookupTable(); }\n // IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const;\n public FindGlyph(c: number): Readonly | null {\n const glyph: Readonly | null = this.native.FindGlyph(c);\n return glyph && new ImFontGlyph(glyph);\n }\n // IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const;\n public FindGlyphNoFallback(c: number): ImFontGlyph | null {\n const glyph: Readonly | null = this.native.FindGlyphNoFallback(c);\n return glyph && new ImFontGlyph(glyph);\n }\n // IMGUI_API void SetFallbackChar(ImWchar c);\n public SetFallbackChar(c: number): void { return this.native.SetFallbackChar(c); }\n // float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; }\n public GetCharAdvance(c: number): number { return this.native.GetCharAdvance(c); }\n // bool IsLoaded() const { return ContainerAtlas != NULL; }\n public IsLoaded(): boolean { return this.native.IsLoaded(); }\n // const char* GetDebugName() const { return ConfigData ? ConfigData->Name : \"\"; }\n public GetDebugName(): string { return this.native.GetDebugName(); }\n\n // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable.\n // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable.\n // IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8\n public CalcTextSizeA(size: number, max_width: number, wrap_width: number, text_begin: string, text_end: number | null = null, remaining: Bind.ImScalar | null = null): Bind.interface_ImVec2 {\n return this.native.CalcTextSizeA(size, max_width, wrap_width, text_end !== null ? text_begin.substring(0, text_end) : text_begin, remaining, new ImVec2());\n }\n // IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const;\n public CalcWordWrapPositionA(scale: number, text: string, text_end: number | null = null, wrap_width: number): number {\n return this.native.CalcWordWrapPositionA(scale, text_end !== null ? text.substring(0, text_end) : text, wrap_width);\n }\n // IMGUI_API void RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, unsigned short c) const;\n public RenderChar(draw_list: ImDrawList, size: number, pos: Readonly, col: Bind.ImU32, c: Bind.ImWchar): void {\n this.native.RenderChar(draw_list.native, size, pos, col, c);\n }\n // IMGUI_API void RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const;\n public RenderText(draw_list: ImDrawList, size: number, pos: Readonly, col: Bind.ImU32, clip_rect: Readonly, text_begin: string, text_end: number | null = null, wrap_width: number = 0.0, cpu_fine_clip: boolean = false): void {}\n\n // [Internal]\n // IMGUI_API void GrowIndex(int new_size);\n // IMGUI_API void AddGlyph(ImWchar c, float x0, float y0, float x1, float y1, float u0, float v0, float u1, float v1, float advance_x);\n // IMGUI_API void AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst = true); // Makes 'dst' character/glyph points to 'src' character/glyph. Currently needs to be called AFTER fonts have been built.\n\n // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS\n // typedef ImFontGlyph Glyph; // OBSOLETE 1.52+\n // #endif\n}\n\n// a script version of BindImGui.ImGuiStyle with matching interface\nclass script_ImGuiStyle implements Bind.interface_ImGuiStyle {\n public Alpha: number = 1.0;\n public WindowPadding: ImVec2 = new ImVec2(8, 8);\n public WindowRounding: number = 7.0;\n public WindowBorderSize: number = 0.0;\n public WindowMinSize: ImVec2 = new ImVec2(32, 32);\n public WindowTitleAlign: ImVec2 = new ImVec2(0.0, 0.5);\n public WindowMenuButtonPosition: ImGuiDir = ImGuiDir.Left;\n public ChildRounding: number = 0.0;\n public ChildBorderSize: number = 1.0;\n public PopupRounding: number = 0.0;\n public PopupBorderSize: number = 1.0;\n public FramePadding: ImVec2 = new ImVec2(4, 3);\n public FrameRounding: number = 0.0;\n public FrameBorderSize: number = 0.0;\n public ItemSpacing: ImVec2 = new ImVec2(8, 4);\n public ItemInnerSpacing: ImVec2 = new ImVec2(4, 4);\n public TouchExtraPadding: ImVec2 = new ImVec2(0, 0);\n public IndentSpacing: number = 21.0;\n public ColumnsMinSpacing: number = 6.0;\n public ScrollbarSize: number = 16.0;\n public ScrollbarRounding: number = 9.0;\n public GrabMinSize: number = 10.0;\n public GrabRounding: number = 0.0;\n public TabRounding: number = 0.0;\n public TabBorderSize: number = 0.0;\n public ButtonTextAlign: ImVec2 = new ImVec2(0.5, 0.5);\n public SelectableTextAlign: ImVec2 = new ImVec2(0.0, 0.0);\n public DisplayWindowPadding: ImVec2 = new ImVec2(22, 22);\n public DisplaySafeAreaPadding: ImVec2 = new ImVec2(4, 4);\n public MouseCursorScale: number = 1;\n public AntiAliasedLines: boolean = true;\n public AntiAliasedFill: boolean = true;\n public CurveTessellationTol: number = 1.25;\n private Colors: ImVec4[] = [];\n public _getAt_Colors(index: number): Bind.interface_ImVec4 { return this.Colors[index]; }\n public _setAt_Colors(index: number, color: Readonly): boolean { this.Colors[index].Copy(color); return true; }\n\n constructor() {\n for (let i = 0; i < ImGuiCol.COUNT; ++i) {\n this.Colors[i] = new ImVec4();\n }\n const _this = new ImGuiStyle(this);\n const native = new bind.ImGuiStyle();\n const _that = new ImGuiStyle(native);\n _that.Copy(_this);\n bind.StyleColorsClassic(native);\n _this.Copy(_that);\n native.delete();\n }\n\n public ScaleAllSizes(scale_factor: number): void {\n const _this = new ImGuiStyle(this);\n const native = new bind.ImGuiStyle();\n const _that = new ImGuiStyle(native);\n _that.Copy(_this);\n native.ScaleAllSizes(scale_factor);\n _this.Copy(_that);\n native.delete();\n }\n}\n\nexport class ImGuiStyle\n{\n constructor(public readonly internal: Bind.interface_ImGuiStyle = new script_ImGuiStyle()) {}\n\n get Alpha(): number { return this.internal.Alpha; } set Alpha(value: number) { this.internal.Alpha = value; }\n get WindowPadding(): Bind.interface_ImVec2 { return this.internal.WindowPadding; }\n get WindowRounding(): number { return this.internal.WindowRounding; } set WindowRounding(value: number) { this.internal.WindowRounding = value; }\n get WindowBorderSize(): number { return this.internal.WindowBorderSize; } set WindowBorderSize(value: number) { this.internal.WindowBorderSize = value; }\n get WindowMinSize(): Bind.interface_ImVec2 { return this.internal.WindowMinSize; }\n get WindowTitleAlign(): Bind.interface_ImVec2 { return this.internal.WindowTitleAlign; }\n get WindowMenuButtonPosition(): ImGuiDir { return this.internal.WindowMenuButtonPosition; } set WindowMenuButtonPosition(value: ImGuiDir) { this.internal.WindowMenuButtonPosition = value; }\n get ChildRounding(): number { return this.internal.ChildRounding; } set ChildRounding(value: number) { this.internal.ChildRounding = value; }\n get ChildBorderSize(): number { return this.internal.ChildBorderSize; } set ChildBorderSize(value: number) { this.internal.ChildBorderSize = value; }\n get PopupRounding(): number { return this.internal.PopupRounding; } set PopupRounding(value: number) { this.internal.PopupRounding = value; }\n get PopupBorderSize(): number { return this.internal.PopupBorderSize; } set PopupBorderSize(value: number) { this.internal.PopupBorderSize = value; }\n get FramePadding(): Bind.interface_ImVec2 { return this.internal.FramePadding; }\n get FrameRounding(): number { return this.internal.FrameRounding; } set FrameRounding(value: number) { this.internal.FrameRounding = value; }\n get FrameBorderSize(): number { return this.internal.FrameBorderSize; } set FrameBorderSize(value: number) { this.internal.FrameBorderSize = value; }\n get ItemSpacing(): Bind.interface_ImVec2 { return this.internal.ItemSpacing; }\n get ItemInnerSpacing(): Bind.interface_ImVec2 { return this.internal.ItemInnerSpacing; }\n get TouchExtraPadding(): Bind.interface_ImVec2 { return this.internal.TouchExtraPadding; }\n get IndentSpacing(): number { return this.internal.IndentSpacing; } set IndentSpacing(value: number) { this.internal.IndentSpacing = value; }\n get ColumnsMinSpacing(): number { return this.internal.ColumnsMinSpacing; } set ColumnsMinSpacing(value: number) { this.internal.ColumnsMinSpacing = value; }\n get ScrollbarSize(): number { return this.internal.ScrollbarSize; } set ScrollbarSize(value: number) { this.internal.ScrollbarSize = value; }\n get ScrollbarRounding(): number { return this.internal.ScrollbarRounding; } set ScrollbarRounding(value: number) { this.internal.ScrollbarRounding = value; }\n get GrabMinSize(): number { return this.internal.GrabMinSize; } set GrabMinSize(value: number) { this.internal.GrabMinSize = value; }\n get GrabRounding(): number { return this.internal.GrabRounding; } set GrabRounding(value: number) { this.internal.GrabRounding = value; }\n get TabRounding(): number { return this.internal.TabRounding; } set TabRounding(value: number) { this.internal.TabRounding = value; }\n get TabBorderSize(): number { return this.internal.TabBorderSize; } set TabBorderSize(value: number) { this.internal.TabBorderSize = value; }\n get ButtonTextAlign(): Bind.interface_ImVec2 { return this.internal.ButtonTextAlign; }\n get SelectableTextAlign(): Bind.interface_ImVec2 { return this.internal.SelectableTextAlign; }\n get DisplayWindowPadding(): Bind.interface_ImVec2 { return this.internal.DisplayWindowPadding; }\n get DisplaySafeAreaPadding(): Bind.interface_ImVec2 { return this.internal.DisplaySafeAreaPadding; }\n get MouseCursorScale(): number { return this.internal.MouseCursorScale; } set MouseCursorScale(value: number) { this.internal.MouseCursorScale = value; }\n get AntiAliasedLines(): boolean { return this.internal.AntiAliasedLines; } set AntiAliasedLines(value: boolean) { this.internal.AntiAliasedLines = value; }\n get AntiAliasedFill(): boolean { return this.internal.AntiAliasedFill; } set AntiAliasedFill(value: boolean) { this.internal.AntiAliasedFill = value; }\n get CurveTessellationTol(): number { return this.internal.CurveTessellationTol; } set CurveTessellationTol(value: number) { this.internal.CurveTessellationTol = value; }\n public Colors: Bind.interface_ImVec4[] = new Proxy([], {\n get: (target: Bind.interface_ImVec4[], key: PropertyKey): number | Bind.interface_ImVec4 => {\n if (key === \"length\") { return ImGuiCol.COUNT; }\n return this.internal._getAt_Colors(Number(key));\n },\n set: (target: Bind.interface_ImVec4[], key: PropertyKey, value: Readonly): boolean => {\n return this.internal._setAt_Colors(Number(key), value);\n },\n });\n\n public Copy(other: Readonly): this {\n this.Alpha = other.Alpha;\n this.WindowPadding.Copy(other.WindowPadding);\n this.WindowRounding = other.WindowRounding;\n this.WindowBorderSize = other.WindowBorderSize;\n this.WindowMinSize.Copy(other.WindowMinSize);\n this.WindowTitleAlign.Copy(other.WindowTitleAlign);\n this.WindowMenuButtonPosition = other.WindowMenuButtonPosition;\n this.ChildRounding = other.ChildRounding;\n this.ChildBorderSize = other.ChildBorderSize;\n this.PopupRounding = other.PopupRounding;\n this.PopupBorderSize = other.PopupBorderSize;\n this.FramePadding.Copy(other.FramePadding);\n this.FrameRounding = other.FrameRounding;\n this.FrameBorderSize = other.FrameBorderSize;\n this.ItemSpacing.Copy(other.ItemSpacing);\n this.ItemInnerSpacing.Copy(other.ItemInnerSpacing);\n this.TouchExtraPadding.Copy(other.TouchExtraPadding);\n this.IndentSpacing = other.IndentSpacing;\n this.ColumnsMinSpacing = other.ColumnsMinSpacing;\n this.ScrollbarSize = other.ScrollbarSize;\n this.ScrollbarRounding = other.ScrollbarRounding;\n this.GrabMinSize = other.GrabMinSize;\n this.GrabRounding = other.GrabRounding;\n this.TabRounding = other.TabRounding;\n this.TabBorderSize = other.TabBorderSize;\n this.ButtonTextAlign.Copy(other.ButtonTextAlign);\n this.DisplayWindowPadding.Copy(other.DisplayWindowPadding);\n this.DisplaySafeAreaPadding.Copy(other.DisplaySafeAreaPadding);\n this.MouseCursorScale = other.MouseCursorScale;\n this.AntiAliasedLines = other.AntiAliasedLines;\n this.AntiAliasedFill = other.AntiAliasedFill;\n this.CurveTessellationTol = other.CurveTessellationTol;\n for (let i = 0; i < ImGuiCol.COUNT; ++i) {\n this.Colors[i].Copy(other.Colors[i]);\n }\n return this;\n }\n\n public ScaleAllSizes(scale_factor: number): void { this.internal.ScaleAllSizes(scale_factor); }\n}\n\n// This is where your app communicate with Dear ImGui. Access via ImGui::GetIO().\n// Read 'Programmer guide' section in .cpp file for general usage.\nexport class ImGuiIO\n{\n constructor(public readonly native: Bind.reference_ImGuiIO) {}\n\n //------------------------------------------------------------------\n // Settings (fill once) // Default value:\n //------------------------------------------------------------------\n\n // ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc.\n get ConfigFlags(): ImGuiConfigFlags { return this.native.ConfigFlags; }\n set ConfigFlags(value: ImGuiConfigFlags) { this.native.ConfigFlags = value; }\n // ImGuiBackendFlags BackendFlags; // = 0 // Set ImGuiBackendFlags_ enum. Set by imgui_impl_xxx files or custom back-end to communicate features supported by the back-end.\n get BackendFlags(): ImGuiBackendFlags { return this.native.BackendFlags; }\n set BackendFlags(value: ImGuiBackendFlags) { this.native.BackendFlags = value; }\n // ImVec2 DisplaySize; // // Display size, in pixels. For clamping windows positions.\n get DisplaySize(): Bind.reference_ImVec2 { return this.native.DisplaySize; }\n // float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds.\n get DeltaTime(): number { return this.native.DeltaTime; }\n set DeltaTime(value: number) { this.native.DeltaTime = value; }\n // float IniSavingRate; // = 5.0f // Maximum time between saving positions/sizes to .ini file, in seconds.\n get IniSavingRate(): number { return this.native.IniSavingRate; }\n set IniSavingRate(value: number) { this.native.IniSavingRate = value; }\n // const char* IniFilename; // = \"imgui.ini\" // Path to .ini file. NULL to disable .ini saving.\n get IniFilename(): string { return this.native.IniFilename; }\n set IniFilename(value: string) { this.native.IniFilename = value; }\n // const char* LogFilename; // = \"imgui_log.txt\" // Path to .log file (default parameter to ImGui::LogToFile when no file is specified).\n get LogFilename(): string { return this.native.LogFilename; }\n set LogFilename(value: string) { this.native.LogFilename = value; }\n // float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds.\n get MouseDoubleClickTime(): number { return this.native.MouseDoubleClickTime; }\n set MouseDoubleClickTime(value: number) { this.native.MouseDoubleClickTime = value; }\n // float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels.\n get MouseDoubleClickMaxDist(): number { return this.native.MouseDoubleClickMaxDist; }\n set MouseDoubleClickMaxDist(value: number) { this.native.MouseDoubleClickMaxDist = value; }\n // float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging\n get MouseDragThreshold(): number { return this.native.MouseDragThreshold; }\n set MouseDragThreshold(value: number) { this.native.MouseDragThreshold = value; }\n // int KeyMap[ImGuiKey_COUNT]; // // Map of indices into the KeysDown[512] entries array\n public KeyMap: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiKey.COUNT; }\n return this.native._getAt_KeyMap(Number(key));\n },\n set: (target: number[], key: PropertyKey, value: number): boolean => {\n return this.native._setAt_KeyMap(Number(key), value);\n },\n });\n // float KeyRepeatDelay; // = 0.250f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.).\n get KeyRepeatDelay(): number { return this.native.KeyRepeatDelay; }\n set KeyRepeatDelay(value: number) { this.native.KeyRepeatDelay = value; }\n // float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds.\n get KeyRepeatRate(): number { return this.native.KeyRepeatRate; }\n set KeyRepeatRate(value: number) { this.native.KeyRepeatRate = value; }\n // void* UserData; // = NULL // Store your own data for retrieval by callbacks.\n get UserData(): any { return this.native.UserData; }\n set UserData(value: any) { this.native.UserData = value; }\n\n // ImFontAtlas* Fonts; // // Load and assemble one or more fonts into a single tightly packed texture. Output to Fonts array.\n get Fonts(): ImFontAtlas { return new ImFontAtlas(this.native.Fonts); }\n // float FontGlobalScale; // = 1.0f // Global scale all fonts\n get FontGlobalScale(): number { return this.native.FontGlobalScale; }\n set FontGlobalScale(value: number) { this.native.FontGlobalScale = value; }\n // bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel.\n get FontAllowUserScaling(): boolean { return this.native.FontAllowUserScaling; }\n set FontAllowUserScaling(value: boolean) { this.native.FontAllowUserScaling = value; }\n // ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0].\n get FontDefault(): ImFont | null {\n const font: Bind.reference_ImFont | null = this.native.FontDefault;\n return (font === null) ? null : new ImFont(font);\n }\n set FontDefault(value: ImFont | null) {\n this.native.FontDefault = value && value.native;\n }\n // ImVec2 DisplayFramebufferScale; // = (1.0f,1.0f) // For retina display or other situations where window coordinates are different from framebuffer coordinates. User storage only, presently not used by ImGui.\n get DisplayFramebufferScale(): Bind.reference_ImVec2 { return this.native.DisplayFramebufferScale; }\n\n // Miscellaneous configuration options\n // bool OptMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl\n get ConfigMacOSXBehaviors(): boolean { return this.native.ConfigMacOSXBehaviors; }\n set ConfigMacOSXBehaviors(value: boolean) { this.native.ConfigMacOSXBehaviors = value; }\n // bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor, for users who consider it annoying.\n get ConfigInputTextCursorBlink(): boolean { return this.native.ConfigInputTextCursorBlink; }\n set ConfigInputTextCursorBlink(value: boolean) { this.native.ConfigInputTextCursorBlink = value; }\n // bool ConfigWindowsResizeFromEdges; // = false // [BETA] Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be the ImGuiWindowFlags_ResizeFromAnySide flag)\n get ConfigWindowsResizeFromEdges(): boolean { return this.native.ConfigWindowsResizeFromEdges; }\n set ConfigWindowsResizeFromEdges(value: boolean) { this.native.ConfigWindowsResizeFromEdges = value; }\n // bool ConfigWindowsMoveFromTitleBarOnly;// = false // [BETA] Set to true to only allow moving windows when clicked+dragged from the title bar. Windows without a title bar are not affected.\n get ConfigWindowsMoveFromTitleBarOnly(): boolean { return this.native.ConfigWindowsMoveFromTitleBarOnly; }\n set ConfigWindowsMoveFromTitleBarOnly(value: boolean) { this.native.ConfigWindowsMoveFromTitleBarOnly = value; }\n\n //------------------------------------------------------------------\n // Settings (User Functions)\n //------------------------------------------------------------------\n\n // Optional: Platform/Renderer back-end name (informational only! will be displayed in About Window) + User data for back-end/wrappers to store their own stuff.\n // const char* BackendPlatformName; // = NULL\n get BackendPlatformName(): string | null { return this.native.BackendPlatformName; }\n set BackendPlatformName(value: string | null) { this.native.BackendPlatformName = value; }\n // const char* BackendRendererName; // = NULL\n get BackendRendererName(): string | null { return this.native.BackendRendererName; }\n set BackendRendererName(value: string | null) { this.native.BackendRendererName = value; }\n // void* BackendPlatformUserData; // = NULL\n get BackendPlatformUserData(): string | null { return this.native.BackendPlatformUserData; }\n set BackendPlatformUserData(value: string | null) { this.native.BackendPlatformUserData = value; }\n // void* BackendRendererUserData; // = NULL\n get BackendRendererUserData(): string | null { return this.native.BackendRendererUserData; }\n set BackendRendererUserData(value: string | null) { this.native.BackendRendererUserData = value; }\n // void* BackendLanguageUserData; // = NULL\n get BackendLanguageUserData(): string | null { return this.native.BackendLanguageUserData; }\n set BackendLanguageUserData(value: string | null) { this.native.BackendLanguageUserData = value; }\n\n // Optional: access OS clipboard\n // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures)\n // const char* (*GetClipboardTextFn)(void* user_data);\n get GetClipboardTextFn(): ((user_data: any) => string) | null { return this.native.GetClipboardTextFn; }\n set GetClipboardTextFn(value: ((user_data: any) => string) | null) { this.native.GetClipboardTextFn = value; }\n // void (*SetClipboardTextFn)(void* user_data, const char* text);\n get SetClipboardTextFn(): ((user_data: any, text: string) => void) | null { return this.native.SetClipboardTextFn; }\n set SetClipboardTextFn(value: ((user_data: any, text: string) => void) | null) { this.native.SetClipboardTextFn = value; }\n // void* ClipboardUserData;\n get ClipboardUserData(): any { return this.native.ClipboardUserData; }\n set ClipboardUserData(value: any) { this.native.ClipboardUserData = value; }\n\n // Optional: override memory allocations. MemFreeFn() may be called with a NULL pointer.\n // (default to posix malloc/free)\n // void* (*MemAllocFn)(size_t sz);\n // void (*MemFreeFn)(void* ptr);\n\n // Optional: notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME in Windows)\n // (default to use native imm32 api on Windows)\n // void (*ImeSetInputScreenPosFn)(int x, int y);\n // void* ImeWindowHandle; // (Windows) Set this to your HWND to get automatic IME cursor positioning.\n\n //------------------------------------------------------------------\n // Input - Fill before calling NewFrame()\n //------------------------------------------------------------------\n\n // ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX,-FLT_MAX) if mouse is unavailable (on another screen, etc.)\n get MousePos(): Bind.reference_ImVec2 { return this.native.MousePos; }\n // bool MouseDown[5]; // Mouse buttons: left, right, middle + extras. ImGui itself mostly only uses left button (BeginPopupContext** are using right button). Others buttons allows us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API.\n public MouseDown: boolean[] = new Proxy([], {\n get: (target: boolean[], key: PropertyKey): number | boolean => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseDown(Number(key));\n },\n set: (target: boolean[], key: PropertyKey, value: boolean): boolean => {\n return this.native._setAt_MouseDown(Number(key), value);\n },\n });\n // float MouseWheel; // Mouse wheel: 1 unit scrolls about 5 lines text.\n public get MouseWheel(): number { return this.native.MouseWheel; }\n public set MouseWheel(value: number) { this.native.MouseWheel = value; }\n // float MouseWheelH; // Mouse wheel (Horizontal). Most users don't have a mouse with an horizontal wheel, may not be filled by all back-ends.\n public get MouseWheelH(): number { return this.native.MouseWheelH; }\n public set MouseWheelH(value: number) { this.native.MouseWheelH = value; }\n // bool MouseDrawCursor; // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor).\n get MouseDrawCursor(): boolean { return this.native.MouseDrawCursor; } set MouseDrawCursor(value: boolean) { this.native.MouseDrawCursor = value; }\n // bool KeyCtrl; // Keyboard modifier pressed: Control\n get KeyCtrl(): boolean { return this.native.KeyCtrl; } set KeyCtrl(value: boolean) { this.native.KeyCtrl = value; }\n // bool KeyShift; // Keyboard modifier pressed: Shift\n get KeyShift(): boolean { return this.native.KeyShift; } set KeyShift(value: boolean) { this.native.KeyShift = value; }\n // bool KeyAlt; // Keyboard modifier pressed: Alt\n get KeyAlt(): boolean { return this.native.KeyAlt; } set KeyAlt(value: boolean) { this.native.KeyAlt = value; }\n // bool KeySuper; // Keyboard modifier pressed: Cmd/Super/Windows\n get KeySuper(): boolean { return this.native.KeySuper; } set KeySuper(value: boolean) { this.native.KeySuper = value; }\n // bool KeysDown[512]; // Keyboard keys that are pressed (in whatever storage order you naturally have access to keyboard data)\n public KeysDown: boolean[] = new Proxy([], {\n get: (target: boolean[], key: PropertyKey): number | boolean => {\n if (key === \"length\") { return 512; }\n return this.native._getAt_KeysDown(Number(key));\n },\n set: (target: boolean[], key: PropertyKey, value: boolean): boolean => {\n return this.native._setAt_KeysDown(Number(key), value);\n },\n });\n // float NavInputs[ImGuiNavInput_COUNT]; // Gamepad inputs (keyboard keys will be auto-mapped and be written here by ImGui::NewFrame)\n public NavInputs: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiNavInput.COUNT; }\n return this.native._getAt_NavInputs(Number(key));\n },\n set: (target: number[], key: PropertyKey, value: number): boolean => {\n return this.native._setAt_NavInputs(Number(key), value);\n },\n });\n\n // Functions\n // IMGUI_API void AddInputCharacter(ImWchar c); // Add new character into InputCharacters[]\n public AddInputCharacter(c: number): void { this.native.AddInputCharacter(c); }\n // IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Add new characters into InputCharacters[] from an UTF-8 string\n public AddInputCharactersUTF8(utf8_chars: string): void { this.native.AddInputCharactersUTF8(utf8_chars); }\n // inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Clear the text input buffer manually\n public ClearInputCharacters(): void { this.native.ClearInputCharacters(); }\n\n //------------------------------------------------------------------\n // Output - Retrieve after calling NewFrame()\n //------------------------------------------------------------------\n\n // bool WantCaptureMouse; // When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. This is set by ImGui when it wants to use your mouse (e.g. unclicked mouse is hovering a window, or a widget is active).\n get WantCaptureMouse(): boolean { return this.native.WantCaptureMouse; } set WantCaptureMouse(value: boolean) { this.native.WantCaptureMouse = value; }\n // bool WantCaptureKeyboard; // When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. This is set by ImGui when it wants to use your keyboard inputs.\n get WantCaptureKeyboard(): boolean { return this.native.WantCaptureKeyboard; } set WantCaptureKeyboard(value: boolean) { this.native.WantCaptureKeyboard = value; }\n // bool WantTextInput; // Mobile/console: when io.WantTextInput is true, you may display an on-screen keyboard. This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active).\n get WantTextInput(): boolean { return this.native.WantTextInput; } set WantTextInput(value: boolean) { this.native.WantTextInput = value; }\n // bool WantSetMousePos; // [BETA-NAV] MousePos has been altered, back-end should reposition mouse on next frame. Set only when 'NavMovesMouse=true'.\n get WantSetMousePos(): boolean { return this.native.WantSetMousePos; } set WantSetMousePos(value: boolean) { this.native.WantSetMousePos = value; }\n // bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. IMPORTANT: You need to clear io.WantSaveIniSettings yourself.\n get WantSaveIniSettings(): boolean { return this.native.WantSaveIniSettings; } set WantSaveIniSettings(value: boolean) { this.native.WantSaveIniSettings = value; }\n // bool NavActive; // Directional navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag.\n get NavActive(): boolean { return this.native.NavActive; } set NavActive(value: boolean) { this.native.NavActive = value; }\n // bool NavVisible; // Directional navigation is visible and allowed (will handle ImGuiKey_NavXXX events).\n get NavVisible(): boolean { return this.native.NavVisible; } set NavVisible(value: boolean) { this.native.NavVisible = value; }\n // float Framerate; // Application framerate estimation, in frame per second. Solely for convenience. Rolling average estimation based on IO.DeltaTime over 120 frames\n get Framerate(): number { return this.native.Framerate; }\n // int MetricsRenderVertices; // Vertices output during last call to Render()\n get MetricsRenderVertices(): number { return this.native.MetricsRenderVertices; }\n // int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3\n get MetricsRenderIndices(): number { return this.native.MetricsRenderIndices; }\n // int MetricsRenderWindows; // Number of visible windows\n get MetricsRenderWindows(): number { return this.native.MetricsRenderWindows; }\n // int MetricsActiveWindows; // Number of visible root windows (exclude child windows)\n get MetricsActiveWindows(): number { return this.native.MetricsActiveWindows; }\n // int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts.\n get MetricsActiveAllocations(): number { return this.native.MetricsActiveAllocations; }\n // ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta.\n get MouseDelta(): Readonly { return this.native.MouseDelta; }\n\n //------------------------------------------------------------------\n // [Internal] ImGui will maintain those fields. Forward compatibility not guaranteed!\n //------------------------------------------------------------------\n\n // ImVec2 MousePosPrev; // Previous mouse position temporary storage (nb: not for public use, set to MousePos in NewFrame())\n // ImVec2 MouseClickedPos[5]; // Position at time of clicking\n public MouseClickedPos: Array> = new Proxy([], {\n get: (target: Array>, key: PropertyKey): number | Readonly => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseClickedPos(Number(key));\n },\n });\n // float MouseClickedTime[5]; // Time of last click (used to figure out double-click)\n // bool MouseClicked[5]; // Mouse button went from !Down to Down\n // bool MouseDoubleClicked[5]; // Has mouse button been double-clicked?\n // bool MouseReleased[5]; // Mouse button went from Down to !Down\n // bool MouseDownOwned[5]; // Track if button was clicked inside a window. We don't request mouse capture from the application if click started outside ImGui bounds.\n // float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked)\n public MouseDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return 5; }\n return this.native._getAt_MouseDownDuration(Number(key));\n },\n });\n // float MouseDownDurationPrev[5]; // Previous time the mouse button has been down\n // ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point\n // float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point\n // float KeysDownDuration[512]; // Duration the keyboard key has been down (0.0f == just pressed)\n public KeysDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return 512; }\n return this.native._getAt_KeysDownDuration(Number(key));\n },\n });\n // float KeysDownDurationPrev[512]; // Previous duration the key has been down\n // float NavInputsDownDuration[ImGuiNavInput_COUNT];\n public NavInputsDownDuration: number[] = new Proxy([], {\n get: (target: number[], key: PropertyKey): number => {\n if (key === \"length\") { return ImGuiNavInput.COUNT; }\n return this.native._getAt_NavInputsDownDuration(Number(key));\n },\n });\n // float NavInputsDownDurationPrev[ImGuiNavInput_COUNT];\n\n // IMGUI_API ImGuiIO();\n}\n\nconst _texturesById: Array = [];\n\n// Context creation and access, if you want to use multiple context, share context between modules (e.g. DLL).\n// All contexts share a same ImFontAtlas by default. If you want different font atlas, you can new() them and overwrite the GetIO().Fonts variable of an ImGui context.\n// All those functions are not reliant on the current context.\nexport class ImGuiContext {\n public static current_ctx: ImGuiContext | null = null;\n public static getTexture(index: number): ImTextureID | null {\n return _texturesById[index] || null;\n }\n public static setTexture(texture: ImTextureID | null): number {\n let index = _texturesById.indexOf(texture);\n if (index === -1) {\n for (let i = 0; i < _texturesById.length; ++i) {\n if (_texturesById[i] === null) {\n _texturesById[i] = texture;\n return i;\n }\n }\n index = _texturesById.length;\n _texturesById.push(texture);\n }\n return index;\n }\n\n constructor(public readonly native: Bind.WrapImGuiContext) {}\n}\n// IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL);\nexport function CreateContext(shared_font_atlas: ImFontAtlas | null = null): ImGuiContext | null {\n const ctx: ImGuiContext = new ImGuiContext(bind.CreateContext(shared_font_atlas ? shared_font_atlas.native : null));\n if (ImGuiContext.current_ctx === null) {\n ImGuiContext.current_ctx = ctx;\n }\n return ctx;\n}\n// IMGUI_API void DestroyContext(ImGuiContext* ctx = NULL); // NULL = Destroy current context\nexport function DestroyContext(ctx: ImGuiContext | null = null): void {\n if (ctx === null) {\n ctx = ImGuiContext.current_ctx;\n ImGuiContext.current_ctx = null;\n }\n bind.DestroyContext((ctx === null) ? null : ctx.native);\n}\n// IMGUI_API ImGuiContext* GetCurrentContext();\nexport function GetCurrentContext(): ImGuiContext | null {\n // const ctx_native: BindImGui.ImGuiContext | null = bind.GetCurrentContext();\n return ImGuiContext.current_ctx;\n}\n// IMGUI_API void SetCurrentContext(ImGuiContext* ctx);\nexport function SetCurrentContext(ctx: ImGuiContext | null): void {\n bind.SetCurrentContext((ctx === null) ? null : ctx.native);\n ImGuiContext.current_ctx = ctx;\n}\n\n// IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert);\nexport function DebugCheckVersionAndDataLayout(version_str: string, sz_io: number, sz_style: number, sz_vec2: number, sz_vec4: number, sz_draw_vert: number, sz_draw_idx: number): boolean {\n return bind.DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_draw_vert, sz_draw_idx);\n}\n\n// Main\n// IMGUI_API ImGuiIO& GetIO();\nexport function GetIO(): ImGuiIO { return new ImGuiIO(bind.GetIO()); }\n// IMGUI_API ImGuiStyle& GetStyle();\nexport function GetStyle(): ImGuiStyle { return new ImGuiStyle(bind.GetStyle()); }\n// IMGUI_API void NewFrame(); // start a new ImGui frame, you can submit any command from this point until Render()/EndFrame().\nexport function NewFrame(): void { bind.NewFrame(); }\n// IMGUI_API void EndFrame(); // ends the ImGui frame. automatically called by Render(), so most likely don't need to ever call that yourself directly. If you don't need to render you may call EndFrame() but you'll have wasted CPU already. If you don't need to render, better to not create any imgui windows instead!\nexport function EndFrame(): void { bind.EndFrame(); }\n// IMGUI_API void Render(); // ends the ImGui frame, finalize the draw data, then call your io.RenderDrawListsFn() function if set.\nexport function Render(): void { bind.Render(); }\n// IMGUI_API ImDrawData* GetDrawData(); // same value as passed to your io.RenderDrawListsFn() function. valid after Render() and until the next call to NewFrame()\nexport function GetDrawData(): ImDrawData | null {\n const draw_data: Bind.reference_ImDrawData | null = bind.GetDrawData();\n return (draw_data === null) ? null : new ImDrawData(draw_data);\n}\n\n// Demo, Debug, Informations\n// IMGUI_API void ShowDemoWindow(bool* p_open = NULL); // create demo/test window (previously called ShowTestWindow). demonstrate most ImGui features. call this to learn about the library! try to make it always available in your application!\nexport function ShowDemoWindow(p_open: Bind.ImScalar | null = null): void { bind.ShowDemoWindow(p_open); }\n// IMGUI_API void ShowAboutWindow(bool* p_open = NULL); // create about window. display Dear ImGui version, credits and build/system information.\nexport function ShowAboutWindow(p_open: Bind.ImScalar | Bind.ImAccess | null = null): void {\n if (p_open === null) {\n bind.ShowAboutWindow(null);\n } else if (Array.isArray(p_open)) {\n bind.ShowAboutWindow(p_open);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n bind.ShowAboutWindow(ref_open);\n p_open(ref_open[0]);\n }\n}\n// IMGUI_API void ShowMetricsWindow(bool* p_open = NULL); // create metrics window. display ImGui internals: draw commands (with individual draw calls and vertices), window list, basic internal state, etc.\nexport function ShowMetricsWindow(p_open: Bind.ImScalar | Bind.ImAccess | null = null): void {\n if (p_open === null) {\n bind.ShowMetricsWindow(null);\n } else if (Array.isArray(p_open)) {\n bind.ShowMetricsWindow(p_open);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n bind.ShowMetricsWindow(ref_open);\n p_open(ref_open[0]);\n }\n}\n// IMGUI_API void ShowStyleEditor(ImGuiStyle* ref = NULL); // add style editor block (not a window). you can pass in a reference ImGuiStyle structure to compare to, revert to and save to (else it uses the default style)\nexport function ShowStyleEditor(ref: ImGuiStyle | null = null): void {\n if (ref === null) {\n bind.ShowStyleEditor(null);\n } else if (ref.internal instanceof bind.ImGuiStyle) {\n bind.ShowStyleEditor(ref.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(ref);\n bind.ShowStyleEditor(native);\n ref.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API bool ShowStyleSelector(const char* label);\nexport function ShowStyleSelector(label: string): boolean { return bind.ShowStyleSelector(label); }\n// IMGUI_API void ShowFontSelector(const char* label);\nexport function ShowFontSelector(label: string): void { bind.ShowFontSelector(label); }\n// IMGUI_API void ShowUserGuide(); // add basic help/info block (not a window): how to manipulate ImGui as a end-user (mouse/keyboard controls).\nexport function ShowUserGuide(): void { bind.ShowUserGuide(); }\n// IMGUI_API const char* GetVersion();\nexport function GetVersion(): string { return bind.GetVersion(); }\n\n// Styles\n// IMGUI_API void StyleColorsClassic(ImGuiStyle* dst = NULL);\nexport function StyleColorsClassic(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsClassic(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsClassic(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsClassic(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API void StyleColorsDark(ImGuiStyle* dst = NULL);\nexport function StyleColorsDark(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsDark(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsDark(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsDark(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n// IMGUI_API void StyleColorsLight(ImGuiStyle* dst = NULL);\nexport function StyleColorsLight(dst: ImGuiStyle | null = null): void {\n if (dst === null) {\n bind.StyleColorsLight(null);\n } else if (dst.internal instanceof bind.ImGuiStyle) {\n bind.StyleColorsLight(dst.internal);\n } else {\n const native = new bind.ImGuiStyle();\n const wrap = new ImGuiStyle(native);\n wrap.Copy(dst);\n bind.StyleColorsLight(native);\n dst.Copy(wrap);\n native.delete();\n }\n}\n\n// Window\n// IMGUI_API bool Begin(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); // push window to the stack and start appending to it. see .cpp for details. return false when window is collapsed, so you can early out in your code. 'bool* p_open' creates a widget on the upper-right to close the window (which sets your bool to false).\nexport function Begin(name: string, open: Bind.ImScalar | Bind.ImAccess | null = null, flags: ImGuiWindowFlags = 0): boolean {\n if (open === null) {\n return bind.Begin(name, null, flags);\n } else if (Array.isArray(open)) {\n return bind.Begin(name, open, flags);\n } else {\n const ref_open: Bind.ImScalar = [ open() ];\n const opened: boolean = bind.Begin(name, ref_open, flags);\n open(ref_open[0]);\n return opened;\n }\n}\n// IMGUI_API void End(); // finish appending to current window, pop it off the window stack.\nexport function End(): void { bind.End(); }\n// IMGUI_API bool BeginChild(const char* str_id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags extra_flags = 0); // begin a scrolling region. size==0.0f: use remaining window size, size<0.0f: use remaining window size minus abs(size). size>0.0f: fixed size. each axis can use a different mode, e.g. ImVec2(0,400).\n// IMGUI_API bool BeginChild(ImGuiID id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags extra_flags = 0); // \"\nexport function BeginChild(id: string | Bind.ImGuiID, size: Readonly = ImVec2.ZERO, border: boolean = false, extra_flags: ImGuiWindowFlags = 0): boolean {\n return bind.BeginChild(id, size, border, extra_flags);\n}\n// IMGUI_API void EndChild();\nexport function EndChild(): void { bind.EndChild(); }\n// IMGUI_API ImVec2 GetContentRegionMax(); // current content boundaries (typically window boundaries including scrolling, or current column boundaries), in windows coordinates\nexport function GetContentRegionMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetContentRegionMax(out);\n}\n// IMGUI_API ImVec2 GetContentRegionAvail(); // == GetContentRegionMax() - GetCursorPos()\nexport function GetContentRegionAvail(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetContentRegionAvail(out);\n}\n// IMGUI_API ImVec2 GetWindowContentRegionMin(); // content boundaries min (roughly (0,0)-Scroll), in window coordinates\nexport function GetWindowContentRegionMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowContentRegionMin(out);\n}\n// IMGUI_API ImVec2 GetWindowContentRegionMax(); // content boundaries max (roughly (0,0)+Size-Scroll) where Size can be override with SetNextWindowContentSize(), in window coordinates\nexport function GetWindowContentRegionMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowContentRegionMax(out);\n}\n// IMGUI_API float GetWindowContentRegionWidth(); //\nexport function GetWindowContentRegionWidth(): number { return bind.GetWindowContentRegionWidth(); }\n// IMGUI_API ImDrawList* GetWindowDrawList(); // get rendering command-list if you want to append your own draw primitives\nexport function GetWindowDrawList(): ImDrawList {\n return new ImDrawList(bind.GetWindowDrawList());\n}\n// IMGUI_API ImVec2 GetWindowPos(); // get current window position in screen space (useful if you want to do your own drawing via the DrawList api)\nexport function GetWindowPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowPos(out);\n}\n// IMGUI_API ImVec2 GetWindowSize(); // get current window size\nexport function GetWindowSize(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetWindowSize(out);\n}\n// IMGUI_API float GetWindowWidth();\nexport function GetWindowWidth(): number { return bind.GetWindowWidth(); }\n// IMGUI_API float GetWindowHeight();\nexport function GetWindowHeight(): number { return bind.GetWindowHeight(); }\n// IMGUI_API bool IsWindowCollapsed();\nexport function IsWindowCollapsed(): boolean { return bind.IsWindowCollapsed(); }\n// IMGUI_API bool IsWindowAppearing();\nexport function IsWindowAppearing(): boolean { return bind.IsWindowAppearing(); }\n// IMGUI_API void SetWindowFontScale(float scale); // per-window font scale. Adjust IO.FontGlobalScale if you want to scale all windows\nexport function SetWindowFontScale(scale: number): void { bind.SetWindowFontScale(scale); }\n\n// IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivot = ImVec2(0,0)); // set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc.\nexport function SetNextWindowPos(pos: Readonly, cond: ImGuiCond = 0, pivot: Readonly = ImVec2.ZERO): void {\n bind.SetNextWindowPos(pos, cond, pivot);\n}\n// IMGUI_API void SetNextWindowSize(const ImVec2& size, ImGuiCond cond = 0); // set next window size. set axis to 0.0f to force an auto-fit on this axis. call before Begin()\nexport function SetNextWindowSize(pos: Readonly, cond: ImGuiCond = 0): void {\n bind.SetNextWindowSize(pos, cond);\n}\n// IMGUI_API void SetNextWindowSizeConstraints(const ImVec2& size_min, const ImVec2& size_max, ImGuiSizeConstraintCallback custom_callback = NULL, void* custom_callback_data = NULL); // set next window size limits. use -1,-1 on either X/Y axis to preserve the current size. Use callback to apply non-trivial programmatic constraints.\nexport function SetNextWindowSizeConstraints(size_min: Readonly, size_max: Readonly, custom_callback: ImGuiSizeConstraintCallback | null = null, custom_callback_data: any = null): void {\n if (custom_callback) {\n bind.SetNextWindowSizeConstraints(size_min, size_max, (data: Bind.reference_ImGuiSizeCallbackData): void => {\n custom_callback(new ImGuiSizeCallbackData(data, custom_callback_data));\n }, null);\n } else {\n bind.SetNextWindowSizeConstraints(size_min, size_max, null, null);\n }\n}\n// IMGUI_API void SetNextWindowContentSize(const ImVec2& size); // set next window content size (~ enforce the range of scrollbars). not including window decorations (title bar, menu bar, etc.). set an axis to 0.0f to leave it automatic. call before Begin()\nexport function SetNextWindowContentSize(size: Readonly): void {\n bind.SetNextWindowContentSize(size);\n}\n// IMGUI_API void SetNextWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // set next window collapsed state. call before Begin()\nexport function SetNextWindowCollapsed(collapsed: boolean, cond: ImGuiCond = 0): void {\n bind.SetNextWindowCollapsed(collapsed, cond);\n}\n// IMGUI_API void SetNextWindowFocus(); // set next window to be focused / front-most. call before Begin()\nexport function SetNextWindowFocus(): void { bind.SetNextWindowFocus(); }\n// IMGUI_API void SetNextWindowBgAlpha(float alpha); // set next window background color alpha. helper to easily modify ImGuiCol_WindowBg/ChildBg/PopupBg.\nexport function SetNextWindowBgAlpha(alpha: number): void { bind.SetNextWindowBgAlpha(alpha); }\n// IMGUI_API void SetWindowPos(const ImVec2& pos, ImGuiCond cond = 0); // (not recommended) set current window position - call within Begin()/End(). prefer using SetNextWindowPos(), as this may incur tearing and side-effects.\n// IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); // (not recommended) set current window size - call within Begin()/End(). set to ImVec2(0,0) to force an auto-fit. prefer using SetNextWindowSize(), as this may incur tearing and minor side-effects.\n// IMGUI_API void SetWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // (not recommended) set current window collapsed state. prefer using SetNextWindowCollapsed().\n// IMGUI_API void SetWindowFocus(); // (not recommended) set current window to be focused / front-most. prefer using SetNextWindowFocus().\n// IMGUI_API void SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond = 0); // set named window position.\n// IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); // set named window size. set axis to 0.0f to force an auto-fit on this axis.\n// IMGUI_API void SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond = 0); // set named window collapsed state\n// IMGUI_API void SetWindowFocus(const char* name); // set named window to be focused / front-most. use NULL to remove focus.\nexport function SetWindowPos(name_or_pos: string | Readonly, pos_or_cond: Readonly | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_pos) === \"string\") {\n bind.SetWindowNamePos(name_or_pos, pos_or_cond as Readonly, cond);\n return;\n } else {\n bind.SetWindowPos(name_or_pos, pos_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowSize(name_or_size: string | Readonly, size_or_cond: Readonly | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_size) === \"string\") {\n bind.SetWindowNamePos(name_or_size, size_or_cond as Readonly, cond);\n } else {\n bind.SetWindowSize(name_or_size, size_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowCollapsed(name_or_collapsed: string | boolean, collapsed_or_cond: boolean | ImGuiCond = 0, cond: ImGuiCond = 0): void {\n if (typeof(name_or_collapsed) === \"string\") {\n bind.SetWindowNameCollapsed(name_or_collapsed, collapsed_or_cond as boolean, cond);\n } else {\n bind.SetWindowCollapsed(name_or_collapsed, collapsed_or_cond as ImGuiCond);\n }\n}\nexport function SetWindowFocus(name?: string): void {\n if (typeof(name) === \"string\") {\n bind.SetWindowNameFocus(name);\n } else {\n bind.SetWindowFocus();\n }\n}\n\n// IMGUI_API float GetScrollX(); // get scrolling amount [0..GetScrollMaxX()]\nexport function GetScrollX(): number { return bind.GetScrollX(); }\n// IMGUI_API float GetScrollY(); // get scrolling amount [0..GetScrollMaxY()]\nexport function GetScrollY(): number { return bind.GetScrollY(); }\n// IMGUI_API float GetScrollMaxX(); // get maximum scrolling amount ~~ ContentSize.X - WindowSize.X\nexport function GetScrollMaxX(): number { return bind.GetScrollMaxX(); }\n// IMGUI_API float GetScrollMaxY(); // get maximum scrolling amount ~~ ContentSize.Y - WindowSize.Y\nexport function GetScrollMaxY(): number { return bind.GetScrollMaxY(); }\n// IMGUI_API void SetScrollX(float scroll_x); // set scrolling amount [0..GetScrollMaxX()]\nexport function SetScrollX(scroll_x: number): void { bind.SetScrollX(scroll_x); }\n// IMGUI_API void SetScrollY(float scroll_y); // set scrolling amount [0..GetScrollMaxY()]\nexport function SetScrollY(scroll_y: number): void { bind.SetScrollY(scroll_y); }\n// IMGUI_API void SetScrollHereY(float center_y_ratio = 0.5f); // adjust scrolling amount to make current cursor position visible. center_y_ratio=0.0: top, 0.5: center, 1.0: bottom. When using to make a \"default/current item\" visible, consider using SetItemDefaultFocus() instead.\nexport function SetScrollHereY(center_y_ratio: number = 0.5): void {\n bind.SetScrollHereY(center_y_ratio);\n}\n// IMGUI_API void SetScrollFromPosY(float pos_y, float center_y_ratio = 0.5f); // adjust scrolling amount to make given position valid. use GetCursorPos() or GetCursorStartPos()+offset to get valid positions.\nexport function SetScrollFromPosY(pos_y: number, center_y_ratio: number = 0.5): void {\n bind.SetScrollFromPosY(pos_y, center_y_ratio);\n}\n// IMGUI_API void SetStateStorage(ImGuiStorage* tree); // replace tree state storage with our own (if you want to manipulate it yourself, typically clear subsection of it)\n// IMGUI_API ImGuiStorage* GetStateStorage();\n\n// Parameters stacks (shared)\n// IMGUI_API void PushFont(ImFont* font); // use NULL as a shortcut to push default font\nexport function PushFont(font: ImFont | null): void { bind.PushFont(font ? font.native : null); }\n// IMGUI_API void PopFont();\nexport function PopFont(): void { bind.PopFont(); }\n// IMGUI_API void PushStyleColor(ImGuiCol idx, ImU32 col);\n// IMGUI_API void PushStyleColor(ImGuiCol idx, const ImVec4& col);\nexport function PushStyleColor(idx: ImGuiCol, col: Bind.ImU32 | Readonly | Readonly): void {\n if (col instanceof ImColor) {\n bind.PushStyleColor(idx, col.Value);\n } else {\n bind.PushStyleColor(idx, col as (Bind.ImU32 | Readonly));\n }\n}\n// IMGUI_API void PopStyleColor(int count = 1);\nexport function PopStyleColor(count: number = 1): void {\n bind.PopStyleColor(count);\n}\n// IMGUI_API void PushStyleVar(ImGuiStyleVar idx, float val);\n// IMGUI_API void PushStyleVar(ImGuiStyleVar idx, const ImVec2& val);\nexport function PushStyleVar(idx: ImGuiStyleVar, val: number | Readonly): void {\n bind.PushStyleVar(idx, val);\n}\n// IMGUI_API void PopStyleVar(int count = 1);\nexport function PopStyleVar(count: number = 1): void {\n bind.PopStyleVar(count);\n}\n// IMGUI_API const ImVec4& GetStyleColorVec4(ImGuiCol idx); // retrieve style color as stored in ImGuiStyle structure. use to feed back into PushStyleColor(), otherwhise use GetColorU32() to get style color + style alpha.\nexport function GetStyleColorVec4(idx: ImGuiCol): Readonly {\n return bind.GetStyleColorVec4(idx);\n}\n// IMGUI_API ImFont* GetFont(); // get current font\nexport function GetFont(): ImFont {\n return new ImFont(bind.GetFont());\n}\n// IMGUI_API float GetFontSize(); // get current font size (= height in pixels) of current font with current scale applied\nexport function GetFontSize(): number { return bind.GetFontSize(); }\n// IMGUI_API ImVec2 GetFontTexUvWhitePixel(); // get UV coordinate for a while pixel, useful to draw custom shapes via the ImDrawList API\nexport function GetFontTexUvWhitePixel(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetFontTexUvWhitePixel(out);\n}\n// IMGUI_API ImU32 GetColorU32(ImGuiCol idx, float alpha_mul = 1.0f); // retrieve given style color with style alpha applied and optional extra alpha multiplier\n// IMGUI_API ImU32 GetColorU32(const ImVec4& col); // retrieve given color with style alpha applied\n// IMGUI_API ImU32 GetColorU32(ImU32 col); // retrieve given color with style alpha applied\nexport function GetColorU32(idx: ImGuiCol, alpha_mul?: number): Bind.ImU32;\nexport function GetColorU32(col: Readonly): Bind.ImU32;\nexport function GetColorU32(col: Bind.ImU32): Bind.ImU32;\nexport function GetColorU32(...args: any[]): Bind.ImU32 {\n if (args.length === 1) {\n if (typeof(args[0]) === \"number\") {\n // TODO: ImGuiCol or ImU32\n const idx: ImGuiCol = args[0];\n return bind.GetColorU32_A(idx, 1.0);\n } else {\n const col: Readonly = args[0];\n return bind.GetColorU32_B(col);\n }\n } else {\n const idx: ImGuiCol = args[0];\n const alpha_mul: number = args[1];\n return bind.GetColorU32_A(idx, alpha_mul);\n }\n}\n\n// Parameters stacks (current window)\n// IMGUI_API void PushItemWidth(float item_width); // width of items for the common item+label case, pixels. 0.0f = default to ~2/3 of windows width, >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)\nexport function PushItemWidth(item_width: number): void { bind.PushItemWidth(item_width); }\n// IMGUI_API void PopItemWidth();\nexport function PopItemWidth(): void { bind.PopItemWidth(); }\n// IMGUI_API float CalcItemWidth(); // width of item given pushed settings and current cursor position\nexport function SetNextItemWidth(item_width: number): void { bind.SetNextItemWidth(item_width); } // set width of the _next_ common large \"item+label\" widget. >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)\nexport function CalcItemWidth(): number { return bind.CalcItemWidth(); }\n// IMGUI_API void PushTextWrapPos(float wrap_pos_x = 0.0f); // word-wrapping for Text*() commands. < 0.0f: no wrapping; 0.0f: wrap to end of window (or column); > 0.0f: wrap at 'wrap_pos_x' position in window local space\nexport function PushTextWrapPos(wrap_pos_x: number = 0.0): void {\n bind.PushTextWrapPos(wrap_pos_x);\n}\n// IMGUI_API void PopTextWrapPos();\nexport function PopTextWrapPos(): void { bind.PopTextWrapPos(); }\n// IMGUI_API void PushAllowKeyboardFocus(bool allow_keyboard_focus); // allow focusing using TAB/Shift-TAB, enabled by default but you can disable it for certain widgets\nexport function PushAllowKeyboardFocus(allow_keyboard_focus: boolean): void { bind.PushAllowKeyboardFocus(allow_keyboard_focus); }\n// IMGUI_API void PopAllowKeyboardFocus();\nexport function PopAllowKeyboardFocus(): void { bind.PopAllowKeyboardFocus(); }\n// IMGUI_API void PushButtonRepeat(bool repeat); // in 'repeat' mode, Button*() functions return repeated true in a typematic manner (using io.KeyRepeatDelay/io.KeyRepeatRate setting). Note that you can call IsItemActive() after any Button() to tell if the button is held in the current frame.\nexport function PushButtonRepeat(repeat: boolean): void { bind.PushButtonRepeat(repeat); }\n// IMGUI_API void PopButtonRepeat();\nexport function PopButtonRepeat(): void { bind.PopButtonRepeat(); }\n\n// Cursor / Layout\n// IMGUI_API void Separator(); // separator, generally horizontal. inside a menu bar or in horizontal layout mode, this becomes a vertical separator.\nexport function Separator(): void { bind.Separator(); }\n// IMGUI_API void SameLine(float pos_x = 0.0f, float spacing_w = -1.0f); // call between widgets or groups to layout them horizontally\nexport function SameLine(pos_x: number = 0.0, spacing_w: number = -1.0): void {\n bind.SameLine(pos_x, spacing_w);\n}\n// IMGUI_API void NewLine(); // undo a SameLine()\nexport function NewLine(): void { bind.NewLine(); }\n// IMGUI_API void Spacing(); // add vertical spacing\nexport function Spacing(): void { bind.Spacing(); }\n// IMGUI_API void Dummy(const ImVec2& size); // add a dummy item of given size\nexport function Dummy(size: Readonly): void { bind.Dummy(size); }\n// IMGUI_API void Indent(float indent_w = 0.0f); // move content position toward the right, by style.IndentSpacing or indent_w if != 0\nexport function Indent(indent_w: number = 0.0) { bind.Indent(indent_w); }\n// IMGUI_API void Unindent(float indent_w = 0.0f); // move content position back to the left, by style.IndentSpacing or indent_w if != 0\nexport function Unindent(indent_w: number = 0.0) { bind.Unindent(indent_w); }\n// IMGUI_API void BeginGroup(); // lock horizontal starting position + capture group bounding box into one \"item\" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.)\nexport function BeginGroup(): void { bind.BeginGroup(); }\n// IMGUI_API void EndGroup();\nexport function EndGroup(): void { bind.EndGroup(); }\n// IMGUI_API ImVec2 GetCursorPos(); // cursor position is relative to window position\nexport function GetCursorPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorPos(out); }\n// IMGUI_API float GetCursorPosX(); // \"\nexport function GetCursorPosX(): number { return bind.GetCursorPosX(); }\n// IMGUI_API float GetCursorPosY(); // \"\nexport function GetCursorPosY(): number { return bind.GetCursorPosY(); }\n// IMGUI_API void SetCursorPos(const ImVec2& local_pos); // \"\nexport function SetCursorPos(local_pos: Readonly): void { bind.SetCursorPos(local_pos); }\n// IMGUI_API void SetCursorPosX(float x); // \"\nexport function SetCursorPosX(x: number): void { bind.SetCursorPosX(x); }\n// IMGUI_API void SetCursorPosY(float y); // \"\nexport function SetCursorPosY(y: number): void { bind.SetCursorPosY(y); }\n// IMGUI_API ImVec2 GetCursorStartPos(); // initial cursor position\nexport function GetCursorStartPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorStartPos(out); }\n// IMGUI_API ImVec2 GetCursorScreenPos(); // cursor position in absolute screen coordinates [0..io.DisplaySize] (useful to work with ImDrawList API)\nexport function GetCursorScreenPos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out { return bind.GetCursorScreenPos(out); }\n// IMGUI_API void SetCursorScreenPos(const ImVec2& pos); // cursor position in absolute screen coordinates [0..io.DisplaySize]\nexport function SetCursorScreenPos(pos: Readonly): void { bind.SetCursorScreenPos(pos); }\n// IMGUI_API void AlignTextToFramePadding(); // vertically align/lower upcoming text to FramePadding.y so that it will aligns to upcoming widgets (call if you have text on a line before regular widgets)\nexport function AlignTextToFramePadding(): void { bind.AlignTextToFramePadding(); }\n// IMGUI_API float GetTextLineHeight(); // ~ FontSize\nexport function GetTextLineHeight(): number { return bind.GetTextLineHeight(); }\n// IMGUI_API float GetTextLineHeightWithSpacing(); // ~ FontSize + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of text)\nexport function GetTextLineHeightWithSpacing(): number { return bind.GetTextLineHeightWithSpacing(); }\n// IMGUI_API float GetFrameHeight(); // ~ FontSize + style.FramePadding.y * 2\nexport function GetFrameHeight(): number { return bind.GetFrameHeight(); }\n// IMGUI_API float GetFrameHeightWithSpacing(); // ~ FontSize + style.FramePadding.y * 2 + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of framed widgets)\nexport function GetFrameHeightWithSpacing(): number { return bind.GetFrameHeightWithSpacing(); }\n\n// Columns\n// You can also use SameLine(pos_x) for simplified columns. The columns API is still work-in-progress and rather lacking.\n// IMGUI_API void Columns(int count = 1, const char* id = NULL, bool border = true);\nexport function Columns(count: number = 1, id: string | null = null, border: boolean = true): void {\n id = id || \"\";\n bind.Columns(count, id, border);\n}\n// IMGUI_API void NextColumn(); // next column, defaults to current row or next row if the current row is finished\nexport function NextColumn(): void { bind.NextColumn(); }\n// IMGUI_API int GetColumnIndex(); // get current column index\nexport function GetColumnIndex(): number { return bind.GetColumnIndex(); }\n// IMGUI_API float GetColumnWidth(int column_index = -1); // get column width (in pixels). pass -1 to use current column\nexport function GetColumnWidth(column_index: number = -1): number {\n return bind.GetColumnWidth(column_index);\n}\n// IMGUI_API void SetColumnWidth(int column_index, float width); // set column width (in pixels). pass -1 to use current column\nexport function SetColumnWidth(column_index: number, width: number): void { bind.SetColumnWidth(column_index, width); }\n// IMGUI_API float GetColumnOffset(int column_index = -1); // get position of column line (in pixels, from the left side of the contents region). pass -1 to use current column, otherwise 0..GetColumnsCount() inclusive. column 0 is typically 0.0f\nexport function GetColumnOffset(column_index: number = -1): number {\n return bind.GetColumnOffset(column_index);\n}\n// IMGUI_API void SetColumnOffset(int column_index, float offset_x); // set position of column line (in pixels, from the left side of the contents region). pass -1 to use current column\nexport function SetColumnOffset(column_index: number, offset_x: number): void { bind.SetColumnOffset(column_index, offset_x); }\n// IMGUI_API int GetColumnsCount();\nexport function GetColumnsCount(): number { return bind.GetColumnsCount(); }\n\n// ID scopes\n// If you are creating widgets in a loop you most likely want to push a unique identifier (e.g. object pointer, loop index) so ImGui can differentiate them.\n// You can also use the \"##foobar\" syntax within widget label to distinguish them from each others. Read \"A primer on the use of labels/IDs\" in the FAQ for more details.\n// IMGUI_API void PushID(const char* str_id); // push identifier into the ID stack. IDs are hash of the entire stack!\n// IMGUI_API void PushID(const char* str_id_begin, const char* str_id_end);\n// IMGUI_API void PushID(const void* ptr_id);\n// IMGUI_API void PushID(int int_id);\nexport function PushID(id: string | number): void { bind.PushID(id); }\n// IMGUI_API void PopID();\nexport function PopID(): void { bind.PopID(); }\n// IMGUI_API ImGuiID GetID(const char* str_id); // calculate unique ID (hash of whole ID stack + given parameter). e.g. if you want to query into ImGuiStorage yourself\n// IMGUI_API ImGuiID GetID(const char* str_id_begin, const char* str_id_end);\n// IMGUI_API ImGuiID GetID(const void* ptr_id);\nexport function GetID(id: string | number): Bind.ImGuiID { return bind.GetID(id); }\n\n// Widgets: Text\n// IMGUI_API void TextUnformatted(const char* text, const char* text_end = NULL); // raw text without formatting. Roughly equivalent to Text(\"%s\", text) but: A) doesn't require null terminated string if 'text_end' is specified, B) it's faster, no memory copy is done, no buffer size limits, recommended for long chunks of text.\nexport function TextUnformatted(text: string, text_end: number | null = null): void { bind.TextUnformatted(text_end !== null ? text.substring(0, text_end) : text); }\n// IMGUI_API void Text(const char* fmt, ...) IM_FMTARGS(1); // simple formatted text\n// IMGUI_API void TextV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function Text(fmt: string/*, ...args: any[]*/): void { bind.Text(fmt/*, ...args*/); }\n// IMGUI_API void TextColored(const ImVec4& col, const char* fmt, ...) IM_FMTARGS(2); // shortcut for PushStyleColor(ImGuiCol_Text, col); Text(fmt, ...); PopStyleColor();\n// IMGUI_API void TextColoredV(const ImVec4& col, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function TextColored(col: Readonly | Readonly, fmt: string/*, ...args: any[]*/): void {\n bind.TextColored((col instanceof ImColor) ? col.Value : col as Readonly, fmt/*, ...args*/);\n}\n// IMGUI_API void TextDisabled(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushStyleColor(ImGuiCol_Text, style.Colors[ImGuiCol_TextDisabled]); Text(fmt, ...); PopStyleColor();\n// IMGUI_API void TextDisabledV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function TextDisabled(fmt: string/*, ...args: any[]*/): void { bind.TextDisabled(fmt/*, ...args*/); }\n// IMGUI_API void TextWrapped(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize().\n// IMGUI_API void TextWrappedV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function TextWrapped(fmt: string/*, ...args: any[]*/): void { bind.TextWrapped(fmt/*, ...args*/); }\n// IMGUI_API void LabelText(const char* label, const char* fmt, ...) IM_FMTARGS(2); // display text+label aligned the same way as value+label widgets\n// IMGUI_API void LabelTextV(const char* label, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function LabelText(label: string, fmt: string/*, ...args: any[]*/): void { bind.LabelText(label, fmt/*, ...args*/); }\n// IMGUI_API void BulletText(const char* fmt, ...) IM_FMTARGS(1); // shortcut for Bullet()+Text()\n// IMGUI_API void BulletTextV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function BulletText(fmt: string/*, ...args: any[]*/): void { bind.BulletText(fmt/*, ...args*/); }\n// IMGUI_API void Bullet(); // draw a small circle and keep the cursor on the same line. advance cursor x position by GetTreeNodeToLabelSpacing(), same distance that TreeNode() uses\nexport function Bullet(): void { bind.Bullet(); }\n\n// Widgets: Main\n// IMGUI_API bool Button(const char* label, const ImVec2& size = ImVec2(0,0)); // button\nexport function Button(label: string, size: Readonly = ImVec2.ZERO): boolean {\n return bind.Button(label, size);\n}\n// IMGUI_API bool SmallButton(const char* label); // button with FramePadding=(0,0) to easily embed within text\nexport function SmallButton(label: string): boolean { return bind.SmallButton(label); }\n// IMGUI_API bool ArrowButton(const char* str_id, ImGuiDir dir); // square button with an arrow shape\nexport function ArrowButton(str_id: string, dir: ImGuiDir): boolean { return bind.ArrowButton(str_id, dir); }\n// IMGUI_API bool InvisibleButton(const char* str_id, const ImVec2& size); // button behavior without the visuals, useful to build custom behaviors using the public api (along with IsItemActive, IsItemHovered, etc.)\nexport function InvisibleButton(str_id: string, size: Readonly): boolean {\n return bind.InvisibleButton(str_id, size);\n}\n// IMGUI_API void Image(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0,0), const ImVec2& uv1 = ImVec2(1,1), const ImVec4& tint_col = ImVec4(1,1,1,1), const ImVec4& border_col = ImVec4(0,0,0,0));\nexport function Image(user_texture_id: ImTextureID | null, size: Readonly, uv0: Readonly = ImVec2.ZERO, uv1: Readonly = ImVec2.UNIT, tint_col: Readonly = ImVec4.WHITE, border_col: Readonly = ImVec4.ZERO): void {\n bind.Image(ImGuiContext.setTexture(user_texture_id), size, uv0, uv1, tint_col, border_col);\n}\n// IMGUI_API bool ImageButton(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0,0), const ImVec2& uv1 = ImVec2(1,1), int frame_padding = -1, const ImVec4& bg_col = ImVec4(0,0,0,0), const ImVec4& tint_col = ImVec4(1,1,1,1)); // <0 frame_padding uses default frame padding settings. 0 for no padding\nexport function ImageButton(user_texture_id: ImTextureID | null, size: Readonly, uv0: Readonly = ImVec2.ZERO, uv1: Readonly = ImVec2.UNIT, frame_padding: number = -1, bg_col: Readonly = ImVec4.ZERO, tint_col: Readonly = ImVec4.WHITE): boolean {\n return bind.ImageButton(ImGuiContext.setTexture(user_texture_id), size, uv0, uv1, frame_padding, bg_col, tint_col);\n}\n// IMGUI_API bool Checkbox(const char* label, bool* v);\nexport function Checkbox(label: string, v: Bind.ImScalar | Bind.ImAccess): boolean {\n if (Array.isArray(v)) {\n return bind.Checkbox(label, v);\n } else {\n const ref_v: Bind.ImScalar = [ v() ];\n const ret = bind.Checkbox(label, ref_v);\n v(ref_v[0]);\n return ret;\n }\n}\n// IMGUI_API bool CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value);\nexport function CheckboxFlags(label: string, flags: Bind.ImAccess | Bind.ImScalar, flags_value: number): boolean {\n if (Array.isArray(flags)) {\n return bind.CheckboxFlags(label, flags, flags_value);\n } else {\n const ref_flags: Bind.ImScalar = [ flags() ];\n const ret = bind.CheckboxFlags(label, ref_flags, flags_value);\n flags(ref_flags[0]);\n return ret;\n }\n}\n// IMGUI_API bool RadioButton(const char* label, bool active);\n// IMGUI_API bool RadioButton(const char* label, int* v, int v_button);\nexport function RadioButton(label: string, active: boolean): boolean;\nexport function RadioButton(label: string, v: Bind.ImAccess | Bind.ImScalar, v_button: number): boolean;\nexport function RadioButton(label: string, ...args: any[]): boolean {\n if (typeof(args[0]) === \"boolean\") {\n const active: boolean = args[0];\n return bind.RadioButton_A(label, active);\n } else {\n const v: Bind.ImAccess | Bind.ImScalar = args[0];\n const v_button: number = args[1];\n const _v: Bind.ImScalar = Array.isArray(v) ? v : [ v() ];\n const ret = bind.RadioButton_B(label, _v, v_button);\n if (!Array.isArray(v)) { v(_v[0]); }\n return ret;\n }\n}\n// IMGUI_API void PlotLines(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), int stride = sizeof(float));\n// IMGUI_API void PlotLines(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));\nexport type PlotLinesValueGetter = (data: any, idx: number) => number;\nexport function PlotLines(label: string, values: ArrayLike, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly, stride?: number): void;\nexport function PlotLines(label: string, values_getter: PlotLinesValueGetter, data: any, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly): void;\nexport function PlotLines(label: string, ...args: any[]): void {\n if (Array.isArray(args[0])) {\n const values: ArrayLike = args[0];\n const values_getter: PlotLinesValueGetter = (data: any, idx: number): number => values[idx * stride];\n const values_count: number = typeof(args[1]) === \"number\" ? args[1] : values.length;\n const values_offset: number = typeof(args[2]) === \"number\" ? args[2] : 0;\n const overlay_text: string | null = typeof(args[3]) === \"string\" ? args[3] : null;\n const scale_min: number = typeof(args[4]) === \"number\" ? args[4] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const graph_size: Readonly = args[6] || ImVec2.ZERO;\n const stride: number = typeof(args[7]) === \"number\" ? args[7] : 1;\n bind.PlotLines(label, values_getter, null, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n } else {\n const values_getter: PlotLinesValueGetter = args[0];\n const data: any = args[1];\n const values_count: number = args[2];\n const values_offset: number = typeof(args[3]) === \"number\" ? args[3] : 0;\n const overlay_text: string | null = typeof(args[4]) === \"string\" ? args[4] : null;\n const scale_min: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[6]) === \"number\" ? args[6] : Number.MAX_VALUE;\n const graph_size: Readonly = args[7] || ImVec2.ZERO;\n bind.PlotLines(label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n }\n}\n// IMGUI_API void PlotHistogram(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0), int stride = sizeof(float));\n// IMGUI_API void PlotHistogram(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0,0));\nexport type PlotHistogramValueGetter = (data: any, idx: number) => number;\nexport function PlotHistogram(label: string, values: ArrayLike, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly, stride?: number): void;\nexport function PlotHistogram(label: string, values_getter: PlotHistogramValueGetter, data: any, values_count?: number, value_offset?: number, overlay_text?: string | null, scale_min?: number, scale_max?: number, graph_size?: Readonly): void;\nexport function PlotHistogram(label: string, ...args: any[]): void {\n if (Array.isArray(args[0])) {\n const values: ArrayLike = args[0];\n const values_getter: PlotHistogramValueGetter = (data: any, idx: number): number => values[idx * stride];\n const values_count: number = typeof(args[1]) === \"number\" ? args[1] : values.length;\n const values_offset: number = typeof(args[2]) === \"number\" ? args[2] : 0;\n const overlay_text: string | null = typeof(args[3]) === \"string\" ? args[3] : null;\n const scale_min: number = typeof(args[4]) === \"number\" ? args[4] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const graph_size: Readonly = args[6] || ImVec2.ZERO;\n const stride: number = typeof(args[7]) === \"number\" ? args[7] : 1;\n bind.PlotHistogram(label, values_getter, null, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n } else {\n const values_getter: PlotHistogramValueGetter = args[0];\n const data: any = args[1];\n const values_count: number = args[2];\n const values_offset: number = typeof(args[3]) === \"number\" ? args[3] : 0;\n const overlay_text: string | null = typeof(args[4]) === \"string\" ? args[4] : null;\n const scale_min: number = typeof(args[5]) === \"number\" ? args[5] : Number.MAX_VALUE;\n const scale_max: number = typeof(args[6]) === \"number\" ? args[6] : Number.MAX_VALUE;\n const graph_size: Readonly = args[7] || ImVec2.ZERO;\n bind.PlotHistogram(label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size);\n }\n}\n// IMGUI_API void ProgressBar(float fraction, const ImVec2& size_arg = ImVec2(-1,0), const char* overlay = NULL);\nexport function ProgressBar(fraction: number, size_arg: Readonly = new ImVec2(-1, 0), overlay: string | null = null): void {\n bind.ProgressBar(fraction, size_arg, overlay);\n}\n\n// Widgets: Combo Box\n// The new BeginCombo()/EndCombo() api allows you to manage your contents and selection state however you want it.\n// The old Combo() api are helpers over BeginCombo()/EndCombo() which are kept available for convenience purpose.\n// IMGUI_API bool BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags = 0);\nexport function BeginCombo(label: string, preview_value: string | null = null, flags: ImGuiComboFlags = 0): boolean {\n return bind.BeginCombo(label, preview_value, flags);\n}\n// IMGUI_API void EndCombo();\nexport function EndCombo(): void { bind.EndCombo(); }\n// IMGUI_API bool Combo(const char* label, int* current_item, const char* const items[], int items_count, int popup_max_height_in_items = -1);\n// IMGUI_API bool Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int popup_max_height_in_items = -1); // Separate items with \\0 within a string, end item-list with \\0\\0. e.g. \"One\\0Two\\0Three\\0\"\n// IMGUI_API bool Combo(const char* label, int* current_item, bool(*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int popup_max_height_in_items = -1);\nexport type ComboValueGetter = (data: any, idx: number, out_text: [string]) => boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items: string[], items_count?: number, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_separated_by_zeros: string, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_getter: ComboValueGetter, data: any, items_count: number, popup_max_height_in_items?: number): boolean;\nexport function Combo(label: string, current_item: Bind.ImAccess | Bind.ImScalar, ...args: any[]): boolean {\n let ret = false;\n const _current_item: Bind.ImScalar = Array.isArray(current_item) ? current_item : [ current_item() ];\n if (Array.isArray(args[0])) {\n const items: string[] = args[0];\n const items_count = typeof(args[1]) === \"number\" ? args[1] : items.length;\n const popup_max_height_in_items: number = typeof(args[2]) === \"number\" ? args[2] : -1;\n const items_getter = (data: any, idx: number, out_text: [string]): boolean => { out_text[0] = items[idx]; return true; };\n ret = bind.Combo(label, _current_item, items_getter, null, items_count, popup_max_height_in_items);\n } else if (typeof(args[0]) === \"string\") {\n const items_separated_by_zeros: string = args[0]\n const popup_max_height_in_items: number = typeof(args[1]) === \"number\" ? args[1] : -1;\n const items: string[] = items_separated_by_zeros.replace(/^\\0+|\\0+$/g, \"\").split(\"\\0\");\n const items_count: number = items.length;\n const items_getter = (data: any, idx: number, out_text: [string]): boolean => { out_text[0] = items[idx]; return true; };\n ret = bind.Combo(label, _current_item, items_getter, null, items_count, popup_max_height_in_items);\n } else {\n const items_getter: (data: any, idx: number, out_text: [string]) => boolean = args[0];\n const data: any = args[1];\n const items_count = args[2];\n const popup_max_height_in_items: number = typeof(args[3]) === \"number\" ? args[3] : -1;\n ret = bind.Combo(label, _current_item, items_getter, data, items_count, popup_max_height_in_items);\n }\n if (!Array.isArray(current_item)) { current_item(_current_item[0]); }\n return ret;\n}\n\n// Widgets: Drags (tip: ctrl+click on a drag box to input with keyboard. manually input values aren't clamped, can go off-bounds)\n// For all the Float2/Float3/Float4/Int2/Int3/Int4 versions of every functions, note that a 'float v[X]' function argument is the same as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. You can pass address of your first element out of a contiguous set, e.g. &myvector.x\n// IMGUI_API bool DragFloat(const char* label, float* v, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f); // If v_min >= v_max we have no bound\nexport function DragFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string | null = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.DragFloat(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat2(const char* label, float v[2], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | ImVec2, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.DragFloat2(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.DragFloat3(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloat4(const char* label, float v[4], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", float power = 1.0f);\nexport function DragFloat4(label: string, v: XYZW | Bind.ImTuple4 | ImVec4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.DragFloat4(label, _v, v_speed, v_min, v_max, display_format, power);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = \"%.3f\", const char* display_format_max = NULL, float power = 1.0f);\nexport function DragFloatRange2(label: string, v_current_min: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_current_max: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0.0, v_max: number = 0.0, display_format: string = \"%.3f\", display_format_max: string | null = null, power: number = 1.0): boolean {\n const _v_current_min = import_Scalar(v_current_min);\n const _v_current_max = import_Scalar(v_current_max);\n const ret = bind.DragFloatRange2(label, _v_current_min, _v_current_max, v_speed, v_min, v_max, display_format, display_format_max, power);\n export_Scalar(_v_current_min, v_current_min);\n export_Scalar(_v_current_max, v_current_max);\n return ret;\n}\n// IMGUI_API bool DragInt(const char* label, int* v, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = \"%d\"); // If v_min >= v_max we have no bound\nexport function DragInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.DragInt(label, _v, v_speed, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt2(const char* label, int v[2], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector2(v);\n const ret = bind.DragInt2(label, _v, v_speed, v_min, v_max, format);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt3(const char* label, int v[3], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector3(v);\n const ret = bind.DragInt3(label, _v, v_speed, v_min, v_max, format);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool DragInt4(const char* label, int v[4], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = \"%d\");\nexport function DragInt4(label: string, v: XYZW | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\"): boolean {\n const _v = import_Vector4(v);\n const ret = bind.DragInt4(label, _v, v_speed, v_min, v_max, format);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = \"%.0f\", const char* display_format_max = NULL);\nexport function DragIntRange2(label: string, v_current_min: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_current_max: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_speed: number = 1.0, v_min: number = 0, v_max: number = 0, format: string = \"%d\", format_max: string | null = null): boolean {\n const _v_current_min = import_Scalar(v_current_min);\n const _v_current_max = import_Scalar(v_current_max);\n const ret = bind.DragIntRange2(label, _v_current_min, _v_current_max, v_speed, v_min, v_max, format, format_max);\n export_Scalar(_v_current_min, v_current_min);\n export_Scalar(_v_current_max, v_current_max);\n return ret;\n}\n// IMGUI_API bool DragScalar(const char* label, ImGuiDataType data_type, void* v, float v_speed, const void* v_min = NULL, const void* v_max = NULL, const char* format = NULL, float power = 1.0f);\n// IMGUI_API bool DragScalarN(const char* label, ImGuiDataType data_type, void* v, int components, float v_speed, const void* v_min = NULL, const void* v_max = NULL, const char* format = NULL, float power = 1.0f);\nexport function DragScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, v_speed: number, v_min: number | null = null, v_max: number | null = null, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.DragScalar(label, ImGuiDataType.S8, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.DragScalar(label, ImGuiDataType.U8, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.DragScalar(label, ImGuiDataType.S16, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.DragScalar(label, ImGuiDataType.U16, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.DragScalar(label, ImGuiDataType.S32, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.DragScalar(label, ImGuiDataType.U32, v, v_speed, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.DragScalar(label, ImGuiDataType.S64, v, v_speed, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.DragScalar(label, ImGuiDataType.U64, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.DragScalar(label, ImGuiDataType.Float, v, v_speed, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.DragScalar(label, ImGuiDataType.Double, v, v_speed, v_min, v_max, format, power); }\n throw new Error();\n}\n\n// Widgets: Input with Keyboard\n// IMGUI_API bool InputText(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputText(label: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputText(label, buf, buf_size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputText(label, ref_buf, _buf_size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputText(label, ref_buf, buf_size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputTextWithHint(const char* label, const char* hint, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputTextWithHint(label: string, hint: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputTextWithHint(label, hint, buf, buf_size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputTextWithHint(label, hint, ref_buf, _buf_size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputTextWithHint(label, hint, ref_buf, buf_size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputTextMultiline(const char* label, char* buf, size_t buf_size, const ImVec2& size = ImVec2(0,0), ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);\nexport function InputTextMultiline(label: string, buf: ImStringBuffer | Bind.ImAccess | Bind.ImScalar, buf_size: number = buf instanceof ImStringBuffer ? buf.size : ImGuiInputTextDefaultSize, size: Readonly = ImVec2.ZERO, flags: ImGuiInputTextFlags = 0, callback: ImGuiInputTextCallback | null = null, user_data: any = null): boolean {\n const _callback = callback && ((data: Bind.reference_ImGuiInputTextCallbackData): number => callback(new ImGuiInputTextCallbackData(data, user_data))) || null;\n if (Array.isArray(buf)) {\n return bind.InputTextMultiline(label, buf, buf_size, size, flags, _callback, null);\n } else if (buf instanceof ImStringBuffer) {\n const ref_buf: Bind.ImScalar = [ buf.buffer ];\n const _buf_size: number = Math.min(buf_size, buf.size);\n const ret: boolean = bind.InputTextMultiline(label, ref_buf, _buf_size, size, flags, _callback, null);\n buf.buffer = ref_buf[0];\n return ret;\n } else {\n const ref_buf: Bind.ImScalar = [ buf() ];\n const ret: boolean = bind.InputTextMultiline(label, ref_buf, buf_size, size, flags, _callback, null);\n buf(ref_buf[0]);\n return ret;\n }\n}\n// IMGUI_API bool InputFloat(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 0.0, step_fast: number = 0.0, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputFloat(label, _v, step, step_fast, format, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat2(const char* label, float v[2], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.InputFloat2(label, _v, format, extra_flags);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat3(const char* label, float v[3], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.InputFloat3(label, _v, format, extra_flags);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool InputFloat4(const char* label, float v[4], const char* format = \"%.3f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputFloat4(label: string, v: XYZW | Bind.ImTuple4, format: string = \"%.3f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.InputFloat4(label, _v, format, extra_flags);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt(const char* label, int* v, int step = 1, int step_fast = 100, ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 1, step_fast: number = 100, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputInt(label, _v, step, step_fast, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt2(const char* label, int v[2], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.InputInt2(label, _v, extra_flags);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt3(const char* label, int v[3], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.InputInt3(label, _v, extra_flags);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool InputInt4(const char* label, int v[4], ImGuiInputTextFlags extra_flags = 0);\nexport function InputInt4(label: string, v: XYZW | Bind.ImTuple4, extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.InputInt4(label, _v, extra_flags);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool InputDouble(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = \"%.6f\", ImGuiInputTextFlags extra_flags = 0);\nexport function InputDouble(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, step: number = 0.0, step_fast: number = 0.0, format: string = \"%.6f\", extra_flags: ImGuiInputTextFlags = 0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.InputDouble(label, _v, step, step_fast, format, extra_flags);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool InputScalar(const char* label, ImGuiDataType data_type, void* v, const void* step = NULL, const void* step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags extra_flags = 0);\n// IMGUI_API bool InputScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* step = NULL, const void* step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags extra_flags = 0);\nexport function InputScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, step: number | null = null, step_fast: number | null = null, format: string | null = null, extra_flags: ImGuiInputTextFlags = 0): boolean {\n if (v instanceof Int8Array) { return bind.InputScalar(label, ImGuiDataType.S8, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint8Array) { return bind.InputScalar(label, ImGuiDataType.U8, v, step, step_fast, format, extra_flags); }\n if (v instanceof Int16Array) { return bind.InputScalar(label, ImGuiDataType.S16, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint16Array) { return bind.InputScalar(label, ImGuiDataType.U16, v, step, step_fast, format, extra_flags); }\n if (v instanceof Int32Array) { return bind.InputScalar(label, ImGuiDataType.S32, v, step, step_fast, format, extra_flags); }\n if (v instanceof Uint32Array) { return bind.InputScalar(label, ImGuiDataType.U32, v, step, step_fast, format, extra_flags); }\n // if (v instanceof Int64Array) { return bind.InputScalar(label, ImGuiDataType.S64, v, step, step_fast, format, extra_flags); }\n // if (v instanceof Uint64Array) { return bind.InputScalar(label, ImGuiDataType.U64, v, step, step_fast, format, extra_flags); }\n if (v instanceof Float32Array) { return bind.InputScalar(label, ImGuiDataType.Float, v, step, step_fast, format, extra_flags); }\n if (v instanceof Float64Array) { return bind.InputScalar(label, ImGuiDataType.Double, v, step, step_fast, format, extra_flags); }\n throw new Error();\n}\n\n// Widgets: Sliders (tip: ctrl+click on a slider to input with keyboard. manually input values aren't clamped, can go off-bounds)\n// IMGUI_API bool SliderFloat(const char* label, float* v, float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f); // adjust format to decorate the value with a prefix or a suffix for in-slider labels or unit display. Use power!=1.0 for logarithmic sliders\nexport function SliderFloat(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.SliderFloat(label, _v, v_min, v_max, format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec2, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector2(v);\n const ret = bind.SliderFloat2(label, _v, v_min, v_max, format, power);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector3(v);\n const ret = bind.SliderFloat3(label, _v, v_min, v_max, format, power);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function SliderFloat4(label: string, v: XYZW | Bind.ImTuple4 | XYZW, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Vector4(v);\n const ret = bind.SliderFloat4(label, _v, v_min, v_max, format, power);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderAngle(const char* label, float* v_rad, float v_degrees_min = -360.0f, float v_degrees_max = +360.0f);\nexport function SliderAngle(label: string, v_rad: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_degrees_min: number = -360.0, v_degrees_max: number = +360.0): boolean {\n const _v_rad = import_Scalar(v_rad);\n const ret = bind.SliderAngle(label, _v_rad, v_degrees_min, v_degrees_max);\n export_Scalar(_v_rad, v_rad);\n return ret;\n}\nexport function SliderAngle3(label: string, v_rad: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_degrees_min: number = -360.0, v_degrees_max: number = +360.0): boolean {\n const _v_rad = import_Vector3(v_rad);\n _v_rad[0] = Math.floor(_v_rad[0] * 180 / Math.PI);\n _v_rad[1] = Math.floor(_v_rad[1] * 180 / Math.PI);\n _v_rad[2] = Math.floor(_v_rad[2] * 180 / Math.PI);\n const ret = bind.SliderInt3(label, _v_rad, v_degrees_min, v_degrees_max, \"%d deg\");\n _v_rad[0] = _v_rad[0] * Math.PI / 180;\n _v_rad[1] = _v_rad[1] * Math.PI / 180;\n _v_rad[2] = _v_rad[2] * Math.PI / 180;\n export_Vector3(_v_rad, v_rad);\n return ret;\n}\n// IMGUI_API bool SliderInt(const char* label, int* v, int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt(label: string, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.SliderInt(label, _v, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt2(label: string, v: XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector2(v);\n const ret = bind.SliderInt2(label, _v, v_min, v_max, format);\n export_Vector2(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt3(const char* label, int v[3], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt3(label: string, v: XYZ | XYZW | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector3(v);\n const ret = bind.SliderInt3(label, _v, v_min, v_max, format);\n export_Vector3(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderInt4(const char* label, int v[4], int v_min, int v_max, const char* format = \"%d\");\nexport function SliderInt4(label: string, v: XYZW | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Vector4(v);\n const ret = bind.SliderInt4(label, _v, v_min, v_max, format);\n export_Vector4(_v, v);\n return ret;\n}\n// IMGUI_API bool SliderScalar(const char* label, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\n// IMGUI_API bool SliderScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\nexport function SliderScalar(label: string, v: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array, v_min: number, v_max: number, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.SliderScalar(label, ImGuiDataType.S8, v, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.SliderScalar(label, ImGuiDataType.U8, v, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.SliderScalar(label, ImGuiDataType.S16, v, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.SliderScalar(label, ImGuiDataType.U16, v, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.SliderScalar(label, ImGuiDataType.S32, v, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.SliderScalar(label, ImGuiDataType.U32, v, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.SliderScalar(label, ImGuiDataType.S64, v, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.SliderScalar(label, ImGuiDataType.U64, v, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.SliderScalar(label, ImGuiDataType.Float, v, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.SliderScalar(label, ImGuiDataType.Double, v, v_min, v_max, format, power); }\n throw new Error();\n}\n// IMGUI_API bool VSliderFloat(const char* label, const ImVec2& size, float* v, float v_min, float v_max, const char* format = \"%.3f\", float power = 1.0f);\nexport function VSliderFloat(label: string, size: Readonly, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%.3f\", power: number = 1.0): boolean {\n const _v = import_Scalar(v);\n const ret = bind.VSliderFloat(label, size, _v, v_min, v_max, format, power);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, const char* format = \"%d\");\nexport function VSliderInt(label: string, size: Readonly, v: Bind.ImAccess | Bind.ImScalar | XY | XYZ | XYZW | Bind.ImTuple2 | Bind.ImTuple3 | Bind.ImTuple4, v_min: number, v_max: number, format: string = \"%d\"): boolean {\n const _v = import_Scalar(v);\n const ret = bind.VSliderInt(label, size, _v, v_min, v_max, format);\n export_Scalar(_v, v);\n return ret;\n}\n// IMGUI_API bool VSliderScalar(const char* label, const ImVec2& size, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f);\nexport function VSliderScalar(label: string, size: Readonly, data_type: ImGuiDataType, v: Bind.ImAccess | Bind.ImScalar, v_min: number, v_max: number, format: string | null = null, power: number = 1.0): boolean {\n if (v instanceof Int8Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S8, v, v_min, v_max, format, power); }\n if (v instanceof Uint8Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U8, v, v_min, v_max, format, power); }\n if (v instanceof Int16Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S16, v, v_min, v_max, format, power); }\n if (v instanceof Uint16Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U16, v, v_min, v_max, format, power); }\n if (v instanceof Int32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S32, v, v_min, v_max, format, power); }\n if (v instanceof Uint32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U32, v, v_min, v_max, format, power); }\n // if (v instanceof Int64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.S64, v, v_min, v_max, format, power); }\n // if (v instanceof Uint64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.U64, v, v_min, v_max, format, power); }\n if (v instanceof Float32Array) { return bind.VSliderScalar(label, size, ImGuiDataType.Float, v, v_min, v_max, format, power); }\n if (v instanceof Float64Array) { return bind.VSliderScalar(label, size, ImGuiDataType.Double, v, v_min, v_max, format, power); }\n throw new Error();\n}\n\n// Widgets: Color Editor/Picker (tip: the ColorEdit* functions have a little colored preview square that can be left-clicked to open a picker, and right-clicked to open an option menu.)\n// Note that a 'float v[X]' function argument is the same as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. You can the pass the address of a first float element out of a contiguous structure, e.g. &myvector.x\n// IMGUI_API bool ColorEdit3(const char* label, float col[3], ImGuiColorEditFlags flags = 0);\nexport function ColorEdit3(label: string, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color3(col);\n const ret = bind.ColorEdit3(label, _col, flags);\n export_Color3(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags = 0);\nexport function ColorEdit4(label: string, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color4(col);\n const ret = bind.ColorEdit4(label, _col, flags);\n export_Color4(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorPicker3(const char* label, float col[3], ImGuiColorEditFlags flags = 0);\nexport function ColorPicker3(label: string, col: RGB | RGBA | Bind.ImTuple3 | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0): boolean {\n const _col = import_Color3(col);\n const ret = bind.ColorPicker3(label, _col, flags);\n export_Color3(_col, col);\n return ret;\n}\n// IMGUI_API bool ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags flags = 0, const float* ref_col = NULL);\nexport function ColorPicker4(label: string, col: RGBA | Bind.ImTuple4 | Bind.interface_ImVec4, flags: ImGuiColorEditFlags = 0, ref_col: Bind.ImTuple4 | Bind.interface_ImVec4 | null = null): boolean {\n const _col = import_Color4(col);\n const _ref_col = ref_col ? import_Color4(ref_col) : null;\n const ret = bind.ColorPicker4(label, _col, flags, _ref_col);\n export_Color4(_col, col);\n if (_ref_col && ref_col) { export_Color4(_ref_col, ref_col); }\n return ret;\n}\n// IMGUI_API bool ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFlags flags = 0, ImVec2 size = ImVec2(0,0)); // display a colored square/button, hover for details, return true when pressed.\nexport function ColorButton(desc_id: string, col: Readonly, flags: ImGuiColorEditFlags = 0, size: Readonly = ImVec2.ZERO): boolean {\n return bind.ColorButton(desc_id, col, flags, size);\n}\n// IMGUI_API void SetColorEditOptions(ImGuiColorEditFlags flags); // initialize current options (generally on application startup) if you want to select a default format, picker type, etc. User will be able to change many settings, unless you pass the _NoOptions flag to your calls.\nexport function SetColorEditOptions(flags: ImGuiColorEditFlags): void {\n bind.SetColorEditOptions(flags);\n}\n\n// Widgets: Trees\n// IMGUI_API bool TreeNode(const char* label); // if returning 'true' the node is open and the tree id is pushed into the id stack. user is responsible for calling TreePop().\n// IMGUI_API bool TreeNode(const char* str_id, const char* fmt, ...) IM_FMTARGS(2); // read the FAQ about why and how to use ID. to align arbitrary text at the same level as a TreeNode() you can use Bullet().\n// IMGUI_API bool TreeNode(const void* ptr_id, const char* fmt, ...) IM_FMTARGS(2); // \"\n// IMGUI_API bool TreeNodeV(const char* str_id, const char* fmt, va_list args) IM_FMTLIST(2);\n// IMGUI_API bool TreeNodeV(const void* ptr_id, const char* fmt, va_list args) IM_FMTLIST(2);\nexport function TreeNode(label: string): boolean;\nexport function TreeNode(label: string, fmt: string): boolean;\nexport function TreeNode(label: number, fmt: string): boolean;\nexport function TreeNode(...args: any[]): boolean {\n if (typeof(args[0]) === \"string\") {\n if (args.length === 1) {\n const label: string = args[0];\n return bind.TreeNode_A(label);\n } else {\n const str_id: string = args[0];\n const fmt: string = args[1];\n return bind.TreeNode_B(str_id, fmt);\n }\n } else {\n const ptr_id: number = args[0];\n const fmt: string = args[1];\n return bind.TreeNode_C(ptr_id, fmt);\n }\n}\n// IMGUI_API bool TreeNodeEx(const char* label, ImGuiTreeNodeFlags flags = 0);\n// IMGUI_API bool TreeNodeEx(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3);\n// IMGUI_API bool TreeNodeEx(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3);\n// IMGUI_API bool TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3);\n// IMGUI_API bool TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3);\nexport function TreeNodeEx(label: string, flags?: ImGuiTreeNodeFlags): boolean;\nexport function TreeNodeEx(str_id: string, flags: ImGuiTreeNodeFlags, fmt: string): boolean;\nexport function TreeNodeEx(ptr_id: number, flags: ImGuiTreeNodeFlags, fmt: string): boolean;\nexport function TreeNodeEx(...args: any[]): boolean {\n if (typeof(args[0]) === \"string\") {\n if (args.length < 3) {\n const label: string = args[0];\n const flags: ImGuiTreeNodeFlags = args[1] || 0;\n return bind.TreeNodeEx_A(label, flags);\n } else {\n const str_id: string = args[0];\n const flags: ImGuiTreeNodeFlags = args[1];\n const fmt: string = args[2];\n return bind.TreeNodeEx_B(str_id, flags, fmt);\n }\n } else {\n const ptr_id: number = args[0];\n const flags: ImGuiTreeNodeFlags = args[1];\n const fmt: string = args[2];\n return bind.TreeNodeEx_C(ptr_id, flags, fmt);\n }\n}\n// IMGUI_API void TreePush(const char* str_id); // ~ Indent()+PushId(). Already called by TreeNode() when returning true, but you can call Push/Pop yourself for layout purpose\n// IMGUI_API void TreePush(const void* ptr_id = NULL); // \"\nexport function TreePush(str_id: string): void;\nexport function TreePush(ptr_id: number): void;\nexport function TreePush(...args: any[]): void {\n if (typeof(args[0]) === \"string\") {\n const str_id: string = args[0];\n bind.TreePush_A(str_id);\n } else {\n const ptr_id: number = args[0];\n bind.TreePush_B(ptr_id);\n }\n}\n// IMGUI_API void TreePop(); // ~ Unindent()+PopId()\nexport function TreePop(): void { bind.TreePop(); }\n// IMGUI_API void TreeAdvanceToLabelPos(); // advance cursor x position by GetTreeNodeToLabelSpacing()\nexport function TreeAdvanceToLabelPos(): void { bind.TreeAdvanceToLabelPos(); }\n// IMGUI_API float GetTreeNodeToLabelSpacing(); // horizontal distance preceding label when using TreeNode*() or Bullet() == (g.FontSize + style.FramePadding.x*2) for a regular unframed TreeNode\nexport function GetTreeNodeToLabelSpacing(): number { return bind.GetTreeNodeToLabelSpacing(); }\n// IMGUI_API bool CollapsingHeader(const char* label, ImGuiTreeNodeFlags flags = 0); // if returning 'true' the header is open. doesn't indent nor push on ID stack. user doesn't have to call TreePop().\n// IMGUI_API bool CollapsingHeader(const char* label, bool* p_open, ImGuiTreeNodeFlags flags = 0); // when 'p_open' isn't NULL, display an additional small close button on upper right of the header\nexport function CollapsingHeader(label: string, flags?: ImGuiTreeNodeFlags): boolean;\nexport function CollapsingHeader(label: string, p_open: Bind.ImScalar | Bind.ImAccess, flags?: ImGuiTreeNodeFlags): boolean;\nexport function CollapsingHeader(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.CollapsingHeader_A(label, 0);\n } else {\n if (typeof(args[0]) === \"number\") {\n const flags: ImGuiTreeNodeFlags = args[0];\n return bind.CollapsingHeader_A(label, flags);\n } else {\n const p_open: Bind.ImScalar | Bind.ImAccess = args[0];\n const flags: ImGuiTreeNodeFlags = args[1] || 0;\n const ref_open: Bind.ImScalar = Array.isArray(p_open) ? p_open : [ p_open() ];\n const ret = bind.CollapsingHeader_B(label, ref_open, flags);\n if (!Array.isArray(p_open)) { p_open(ref_open[0]); }\n return ret;\n }\n }\n}\n// IMGUI_API void SetNextItemOpen(bool is_open, ImGuiCond cond = 0); // set next TreeNode/CollapsingHeader open state.\nexport function SetNextItemOpen(is_open: boolean, cond: ImGuiCond = 0): void {\n bind.SetNextItemOpen(is_open, cond);\n}\n\n// Widgets: Selectable / Lists\n// IMGUI_API bool Selectable(const char* label, bool selected = false, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0,0)); // size.x==0.0: use remaining width, size.x>0.0: specify width. size.y==0.0: use label height, size.y>0.0: specify height\n// IMGUI_API bool Selectable(const char* label, bool* p_selected, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0,0));\nexport function Selectable(label: string, selected?: boolean, flags?: ImGuiSelectableFlags, size?: Readonly): boolean;\nexport function Selectable(label: string, p_selected: Bind.ImScalar | Bind.ImAccess, flags?: ImGuiSelectableFlags, size?: Readonly): boolean;\nexport function Selectable(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.Selectable_A(label, false, 0, ImVec2.ZERO);\n } else {\n if (typeof(args[0]) === \"boolean\") {\n const selected: boolean = args[0];\n const flags: ImGuiSelectableFlags = args[1] || 0;\n const size: Readonly = args[2] || ImVec2.ZERO;\n return bind.Selectable_A(label, selected, flags, size);\n } else {\n const p_selected: Bind.ImScalar | Bind.ImAccess = args[0];\n const flags: ImGuiSelectableFlags = args[1] || 0;\n const size: Readonly = args[2] || ImVec2.ZERO;\n const ref_selected: Bind.ImScalar = Array.isArray(p_selected) ? p_selected : [ p_selected() ];\n const ret = bind.Selectable_B(label, ref_selected, flags, size);\n if (!Array.isArray(p_selected)) { p_selected(ref_selected[0]); }\n return ret;\n }\n }\n}\n// IMGUI_API bool ListBox(const char* label, int* current_item, const char* const* items, int items_count, int height_in_items = -1);\n// IMGUI_API bool ListBox(const char* label, int* current_item, bool (*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int height_in_items = -1);\nexport type ListBoxItemGetter = (data: any, idx: number, out_text: [string]) => boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items: string[], items_count?: number, height_in_items?: number): boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, items_getter: ListBoxItemGetter, data: any, items_count: number, height_in_items?: number): boolean;\nexport function ListBox(label: string, current_item: Bind.ImAccess | Bind.ImScalar, ...args: any[]): boolean {\n let ret: boolean = false;\n const _current_item: Bind.ImScalar = Array.isArray(current_item) ? current_item : [ current_item() ];\n if (Array.isArray(args[0])) {\n const items: string[] = args[0];\n const items_count: number = typeof(args[1]) === \"number\" ? args[1] : items.length;\n const height_in_items: number = typeof(args[2]) === \"number\" ? args[2] : -1;\n ret = bind.ListBox_A(label, _current_item, items, items_count, height_in_items);\n } else {\n const items_getter: ListBoxItemGetter = args[0];\n const data: any = args[1];\n const items_count: number = args[2];\n const height_in_items: number = typeof(args[3]) === \"number\" ? args[3] : -1;\n ret = bind.ListBox_B(label, _current_item, items_getter, data, items_count, height_in_items);\n }\n if (!Array.isArray(current_item)) { current_item(_current_item[0]); }\n return ret;\n}\n// IMGUI_API bool ListBoxHeader(const char* label, const ImVec2& size = ImVec2(0,0)); // use if you want to reimplement ListBox() will custom data or interactions. make sure to call ListBoxFooter() afterwards.\n// IMGUI_API bool ListBoxHeader(const char* label, int items_count, int height_in_items = -1); // \"\nexport function ListBoxHeader(label: string, size: Readonly): boolean;\nexport function ListBoxHeader(label: string, items_count: number, height_in_items?: number): boolean;\nexport function ListBoxHeader(label: string, ...args: any[]): boolean {\n if (typeof(args[0]) === \"object\") {\n const size: Readonly = args[0];\n return bind.ListBoxHeader_A(label, size);\n } else {\n const items_count: number = args[0];\n const height_in_items: number = typeof(args[1]) === \"number\" ? args[1] : -1;\n return bind.ListBoxHeader_B(label, items_count, height_in_items);\n }\n}\n// IMGUI_API void ListBoxFooter(); // terminate the scrolling region\nexport function ListBoxFooter(): void {\n bind.ListBoxFooter();\n}\n\n// Widgets: Value() Helpers. Output single value in \"name: value\" format (tip: freely declare more in your code to handle your types. you can add functions to the ImGui namespace)\n// IMGUI_API void Value(const char* prefix, bool b);\n// IMGUI_API void Value(const char* prefix, int v);\n// IMGUI_API void Value(const char* prefix, unsigned int v);\n// IMGUI_API void Value(const char* prefix, float v, const char* float_format = NULL);\nexport function Value(prefix: string, b: boolean): void;\nexport function Value(prefix: string, v: number): void;\nexport function Value(prefix: string, v: number, float_format?: string | null): void;\nexport function Value(prefix: string, v: any): void;\nexport function Value(prefix: string, ...args: any[]): void {\n if (typeof(args[0]) === \"boolean\") {\n bind.Value_A(prefix, args[0]);\n } else if (typeof(args[0]) === \"number\") {\n if (Number.isInteger(args[0])) {\n bind.Value_B(prefix, args[0]);\n } else {\n bind.Value_D(prefix, args[0], typeof(args[1]) === \"string\" ? args[1] : null);\n }\n } else {\n bind.Text(prefix + String(args[0]));\n }\n}\n\n// Tooltips\n// IMGUI_API void BeginTooltip(); // begin/append a tooltip window. to create full-featured tooltip (with any kind of contents).\nexport function BeginTooltip(): void { bind.BeginTooltip(); }\n// IMGUI_API void EndTooltip();\nexport function EndTooltip(): void { bind.EndTooltip(); }\n// IMGUI_API void SetTooltip(const char* fmt, ...) IM_FMTARGS(1); // set text tooltip under mouse-cursor, typically use with ImGui::IsItemHovered(). overidde any previous call to SetTooltip().\n// IMGUI_API void SetTooltipV(const char* fmt, va_list args) IM_FMTLIST(1);\nexport function SetTooltip(fmt: string): void {\n bind.SetTooltip(fmt);\n}\n\n// Menus\n// IMGUI_API bool BeginMainMenuBar(); // create and append to a full screen menu-bar. only call EndMainMenuBar() if this returns true!\nexport function BeginMainMenuBar(): boolean { return bind.BeginMainMenuBar(); }\n// IMGUI_API void EndMainMenuBar();\nexport function EndMainMenuBar(): void { bind.EndMainMenuBar(); }\n// IMGUI_API bool BeginMenuBar(); // append to menu-bar of current window (requires ImGuiWindowFlags_MenuBar flag set on parent window). only call EndMenuBar() if this returns true!\nexport function BeginMenuBar(): boolean { return bind.BeginMenuBar(); }\n// IMGUI_API void EndMenuBar();\nexport function EndMenuBar(): void { bind.EndMenuBar(); }\n// IMGUI_API bool BeginMenu(const char* label, bool enabled = true); // create a sub-menu entry. only call EndMenu() if this returns true!\nexport function BeginMenu(label: string, enabled: boolean = true): boolean { return bind.BeginMenu(label, enabled); }\n// IMGUI_API void EndMenu();\nexport function EndMenu(): void { bind.EndMenu(); }\n// IMGUI_API bool MenuItem(const char* label, const char* shortcut = NULL, bool selected = false, bool enabled = true); // return true when activated. shortcuts are displayed for convenience but not processed by ImGui at the moment\n// IMGUI_API bool MenuItem(const char* label, const char* shortcut, bool* p_selected, bool enabled = true); // return true when activated + toggle (*p_selected) if p_selected != NULL\nexport function MenuItem(label: string, shortcut?: string | null, selected?: boolean, enabled?: boolean): boolean;\nexport function MenuItem(label: string, shortcut: string | null, p_selected: Bind.ImScalar | Bind.ImAccess | null, enabled?: boolean): boolean;\nexport function MenuItem(label: string, ...args: any[]): boolean {\n if (args.length === 0) {\n return bind.MenuItem_A(label, null, false, true);\n } else if (args.length === 1) {\n const shortcut: string | null = args[0];\n return bind.MenuItem_A(label, shortcut, false, true);\n } else {\n const shortcut: string | null = args[0];\n if (typeof(args[1]) === \"boolean\") {\n const selected: boolean = args[1];\n const enabled: boolean = typeof(args[2]) === \"boolean\" ? args[2] : true;\n return bind.MenuItem_A(label, shortcut, selected, enabled);\n } else {\n const p_selected: Bind.ImScalar | Bind.ImAccess = args[1];\n const enabled: boolean = typeof(args[2]) === \"boolean\" ? args[2] : true;\n const ref_selected: Bind.ImScalar = Array.isArray(p_selected) ? p_selected : [ p_selected() ];\n const ret = bind.MenuItem_B(label, shortcut, ref_selected, enabled);\n if (!Array.isArray(p_selected)) { p_selected(ref_selected[0]); }\n return ret;\n }\n }\n}\n\n// Popups\n// IMGUI_API void OpenPopup(const char* str_id); // call to mark popup as open (don't call every frame!). popups are closed when user click outside, or if CloseCurrentPopup() is called within a BeginPopup()/EndPopup() block. By default, Selectable()/MenuItem() are calling CloseCurrentPopup(). Popup identifiers are relative to the current ID-stack (so OpenPopup and BeginPopup needs to be at the same level).\nexport function OpenPopup(str_id: string): void { bind.OpenPopup(str_id); }\n// IMGUI_API bool OpenPopupOnItemClick(const char* str_id = NULL, int mouse_button = 1); // helper to open popup when clicked on last item. return true when just opened.\nexport function OpenPopupOnItemClick(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.OpenPopupOnItemClick(str_id, mouse_button);\n}\n// IMGUI_API bool BeginPopup(const char* str_id); // return true if the popup is open, and you can start outputting to it. only call EndPopup() if BeginPopup() returned true!\nexport function BeginPopup(str_id: string): boolean { return bind.BeginPopup(str_id); }\n// IMGUI_API bool BeginPopupModal(const char* name, bool* p_open = NULL, ImGuiWindowFlags extra_flags = 0); // modal dialog (block interactions behind the modal window, can't close the modal window by clicking outside)\nexport function BeginPopupModal(str_id: string = \"\", p_open: Bind.ImScalar | Bind.ImAccess | null = null, extra_flags: ImGuiWindowFlags = 0): boolean {\n if (Array.isArray(p_open)) {\n return bind.BeginPopupModal(str_id, p_open, extra_flags);\n } else if (typeof(p_open) === \"function\") {\n const _p_open: Bind.ImScalar = [ p_open() ];\n const ret = bind.BeginPopupModal(str_id, _p_open, extra_flags);\n p_open(_p_open[0]);\n return ret;\n } else {\n return bind.BeginPopupModal(str_id, null, extra_flags);\n }\n}\n// IMGUI_API bool BeginPopupContextItem(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked on last item. if you can pass a NULL str_id only if the previous item had an id. If you want to use that on a non-interactive item such as Text() you need to pass in an explicit ID here. read comments in .cpp!\nexport function BeginPopupContextItem(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.BeginPopupContextItem(str_id, mouse_button);\n}\n// IMGUI_API bool BeginPopupContextWindow(const char* str_id = NULL, int mouse_button = 1, bool also_over_items = true); // helper to open and begin popup when clicked on current window.\nexport function BeginPopupContextWindow(str_id: string | null = null, mouse_button: number = 1, also_over_items: boolean = true): boolean {\n return bind.BeginPopupContextWindow(str_id, mouse_button, also_over_items);\n}\n// IMGUI_API bool BeginPopupContextVoid(const char* str_id = NULL, int mouse_button = 1); // helper to open and begin popup when clicked in void (where there are no imgui windows).\nexport function BeginPopupContextVoid(str_id: string | null = null, mouse_button: number = 1): boolean {\n return bind.BeginPopupContextVoid(str_id, mouse_button);\n}\n// IMGUI_API void EndPopup();\nexport function EndPopup(): void { bind.EndPopup(); }\n// IMGUI_API bool IsPopupOpen(const char* str_id); // return true if the popup is open\nexport function IsPopupOpen(str_id: string): boolean { return bind.IsPopupOpen(str_id); }\n// IMGUI_API void CloseCurrentPopup(); // close the popup we have begin-ed into. clicking on a MenuItem or Selectable automatically close the current popup.\nexport function CloseCurrentPopup(): void { bind.CloseCurrentPopup(); }\n\n// Tab Bars, Tabs\n// [BETA API] API may evolve!\n// IMGUI_API bool BeginTabBar(const char* str_id, ImGuiTabBarFlags flags = 0); // create and append into a TabBar\nexport function BeginTabBar(str_id: string, flags: ImGuiTabBarFlags = 0): boolean { return bind.BeginTabBar(str_id, flags); }\n// IMGUI_API void EndTabBar(); // only call EndTabBar() if BeginTabBar() returns true!\nexport function EndTabBar(): void { bind.EndTabBar(); }\n// IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags flags = 0);// create a Tab. Returns true if the Tab is selected.\nexport function BeginTabItem(label: string, p_open: Bind.ImScalar | Bind.ImAccess | null = null, flags: ImGuiTabItemFlags = 0): boolean {\n // return bind.BeginTabItem(label, p_open, flags);\n if (p_open === null) {\n return bind.BeginTabItem(label, null, flags);\n } else if (Array.isArray(p_open)) {\n return bind.BeginTabItem(label, p_open, flags);\n } else {\n const ref_open: Bind.ImScalar = [ p_open() ];\n const ret = bind.BeginTabItem(label, ref_open, flags);\n p_open(ref_open[0]);\n return ret;\n }\n}\n// IMGUI_API void EndTabItem(); // only call EndTabItem() if BeginTabItem() returns true!\nexport function EndTabItem(): void { bind.EndTabItem(); }\n// IMGUI_API void SetTabItemClosed(const char* tab_or_docked_window_label); // notify TabBar or Docking system of a closed tab/window ahead (useful to reduce visual flicker on reorderable tab bars). For tab-bar: call after BeginTabBar() and before Tab submissions. Otherwise call with a window name.\nexport function SetTabItemClosed(tab_or_docked_window_label: string): void { bind.SetTabItemClosed(tab_or_docked_window_label); }\n\n// Logging/Capture: all text output from interface is captured to tty/file/clipboard. By default, tree nodes are automatically opened during logging.\n// IMGUI_API void LogToTTY(int max_depth = -1); // start logging to tty\nexport function LogToTTY(max_depth: number = -1): void {\n bind.LogToTTY(max_depth);\n}\n// IMGUI_API void LogToFile(int max_depth = -1, const char* filename = NULL); // start logging to file\nexport function LogToFile(max_depth: number = -1, filename: string | null = null): void {\n bind.LogToFile(max_depth, filename);\n}\n// IMGUI_API void LogToClipboard(int max_depth = -1); // start logging to OS clipboard\nexport function LogToClipboard(max_depth: number = -1): void {\n bind.LogToClipboard(max_depth);\n}\n// IMGUI_API void LogFinish(); // stop logging (close file, etc.)\nexport function LogFinish(): void { bind.LogFinish(); }\n// IMGUI_API void LogButtons(); // helper to display buttons for logging to tty/file/clipboard\nexport function LogButtons(): void { bind.LogButtons(); }\n// IMGUI_API void LogText(const char* fmt, ...) IM_FMTARGS(1); // pass text data straight to log (without being displayed)\nexport function LogText(fmt: string): void {\n bind.LogText(fmt);\n}\n\nconst _ImGui_DragDropPayload_data: {[key: string]: any} = {};\n// Drag and Drop\n// [BETA API] Missing Demo code. API may evolve.\n// IMGUI_API bool BeginDragDropSource(ImGuiDragDropFlags flags = 0); // call when the current item is active. If this return true, you can call SetDragDropPayload() + EndDragDropSource()\nexport function BeginDragDropSource(flags: ImGuiDragDropFlags = 0): boolean {\n return bind.BeginDragDropSource(flags);\n}\n// IMGUI_API bool SetDragDropPayload(const char* type, const void* data, size_t size, ImGuiCond cond = 0);// type is a user defined string of maximum 8 characters. Strings starting with '_' are reserved for dear imgui internal types. Data is copied and held by imgui.\nexport function SetDragDropPayload(type: string, data: T, cond: ImGuiCond = 0): boolean {\n _ImGui_DragDropPayload_data[type] = data;\n return bind.SetDragDropPayload(type, data, 0, cond);\n}\n// IMGUI_API void EndDragDropSource();\nexport function EndDragDropSource(): void {\n bind.EndDragDropSource();\n}\n// IMGUI_API bool BeginDragDropTarget(); // call after submitting an item that may receive an item. If this returns true, you can call AcceptDragDropPayload() + EndDragDropTarget()\nexport function BeginDragDropTarget(): boolean {\n return bind.BeginDragDropTarget();\n}\n// IMGUI_API const ImGuiPayload* AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags = 0); // accept contents of a given type. If ImGuiDragDropFlags_AcceptBeforeDelivery is set you can peek into the payload before the mouse button is released.\nexport function AcceptDragDropPayload(type: string, flags: ImGuiDragDropFlags = 0): ImGuiPayload | null {\n const data: T = _ImGui_DragDropPayload_data[type];\n return bind.AcceptDragDropPayload(type, flags) ? { Data: data } : null;\n}\n// IMGUI_API void EndDragDropTarget();\nexport function EndDragDropTarget(): void {\n bind.EndDragDropTarget();\n}\n\n// Clipping\n// IMGUI_API void PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect);\nexport function PushClipRect(clip_rect_min: Readonly, clip_rect_max: Readonly, intersect_with_current_clip_rect: boolean): void {\n bind.PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect);\n}\n// IMGUI_API void PopClipRect();\nexport function PopClipRect(): void {\n bind.PopClipRect();\n}\n\n// Focus\n// (FIXME: Those functions will be reworked after we merge the navigation branch + have a pass at focusing/tabbing features.)\n// (Prefer using \"SetItemDefaultFocus()\" over \"if (IsWindowAppearing()) SetScrollHere()\" when applicable, to make your code more forward compatible when navigation branch is merged)\n// IMGUI_API void SetItemDefaultFocus(); // make last item the default focused item of a window (WIP navigation branch only). Pleaase use instead of SetScrollHere().\nexport function SetItemDefaultFocus(): void { bind.SetItemDefaultFocus(); }\n// IMGUI_API void SetKeyboardFocusHere(int offset = 0); // focus keyboard on the next widget. Use positive 'offset' to access sub components of a multiple component widget. Use -1 to access previous widget.\nexport function SetKeyboardFocusHere(offset: number = 0): void {\n bind.SetKeyboardFocusHere(offset);\n}\n\n// Utilities\n// IMGUI_API bool IsItemHovered(ImGuiHoveredFlags flags = 0); // is the last item hovered? (and usable, aka not blocked by a popup, etc.). See ImGuiHoveredFlags for more options.\nexport function IsItemHovered(flags: ImGuiHoveredFlags = 0): boolean {\n return bind.IsItemHovered(flags);\n}\n// IMGUI_API bool IsItemActive(); // is the last item active? (e.g. button being held, text field being edited- items that don't interact will always return false)\nexport function IsItemActive(): boolean { return bind.IsItemActive(); }\n// IMGUI_API bool IsItemEdited(); // is the last item active? (e.g. button being held, text field being edited- items that don't interact will always return false)\nexport function IsItemEdited(): boolean { return bind.IsItemEdited(); }\n// IMGUI_API bool IsItemFocused(); // is the last item focused for keyboard/gamepad navigation?\nexport function IsItemFocused(): boolean { return bind.IsItemFocused(); }\n// IMGUI_API bool IsItemClicked(int mouse_button = 0); // is the last item clicked? (e.g. button/node just clicked on)\nexport function IsItemClicked(mouse_button: number = 0): boolean {\n return bind.IsItemClicked(mouse_button);\n}\n// IMGUI_API bool IsItemVisible(); // is the last item visible? (aka not out of sight due to clipping/scrolling.)\nexport function IsItemVisible(): boolean { return bind.IsItemVisible(); }\n// IMGUI_API bool IsItemActivated(); // was the last item just made active (item was previously inactive).\nexport function IsItemActivated(): boolean { return bind.IsItemActivated(); }\n// IMGUI_API bool IsItemDeactivated(); // was the last item just made inactive (item was previously active). Useful for Undo/Redo patterns with widgets that requires continuous editing.\nexport function IsItemDeactivated(): boolean { return bind.IsItemDeactivated(); }\n// IMGUI_API bool IsItemDeactivatedAfterEdit(); // was the last item just made inactive and made a value change when it was active? (e.g. Slider/Drag moved). Useful for Undo/Redo patterns with widgets that requires continuous editing. Note that you may get false positives (some widgets such as Combo()/ListBox()/Selectable() will return true even when clicking an already selected item).\nexport function IsItemDeactivatedAfterEdit(): boolean { return bind.IsItemDeactivatedAfterEdit(); }\n// IMGUI_API bool IsAnyItemHovered();\nexport function IsAnyItemHovered(): boolean { return bind.IsAnyItemHovered(); }\n// IMGUI_API bool IsAnyItemActive();\nexport function IsAnyItemActive(): boolean { return bind.IsAnyItemActive(); }\n// IMGUI_API bool IsAnyItemFocused();\nexport function IsAnyItemFocused(): boolean { return bind.IsAnyItemFocused(); }\n// IMGUI_API ImVec2 GetItemRectMin(); // get bounding rectangle of last item, in screen space\nexport function GetItemRectMin(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectMin(out);\n}\n// IMGUI_API ImVec2 GetItemRectMax(); // \"\nexport function GetItemRectMax(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectMax(out);\n}\n// IMGUI_API ImVec2 GetItemRectSize(); // get size of last item, in screen space\nexport function GetItemRectSize(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetItemRectSize(out);\n}\n// IMGUI_API void SetItemAllowOverlap(); // allow last item to be overlapped by a subsequent item. sometimes useful with invisible buttons, selectables, etc. to catch unused area.\nexport function SetItemAllowOverlap(): void { bind.SetItemAllowOverlap(); }\n// IMGUI_API bool IsWindowFocused(ImGuiFocusedFlags flags = 0); // is current window focused? or its root/child, depending on flags. see flags for options.\nexport function IsWindowFocused(flags: ImGuiFocusedFlags = 0): boolean {\n return bind.IsWindowFocused(flags);\n}\n// IMGUI_API bool IsWindowHovered(ImGuiHoveredFlags flags = 0); // is current window hovered (and typically: not blocked by a popup/modal)? see flags for options.\nexport function IsWindowHovered(flags: ImGuiHoveredFlags = 0): boolean {\n return bind.IsWindowHovered(flags);\n}\n// IMGUI_API bool IsRectVisible(const ImVec2& size); // test if rectangle (of given size, starting from cursor position) is visible / not clipped.\n// IMGUI_API bool IsRectVisible(const ImVec2& rect_min, const ImVec2& rect_max); // test if rectangle (in screen space) is visible / not clipped. to perform coarse clipping on user's side.\nexport function IsRectVisible(size: Readonly): boolean;\nexport function IsRectVisible(rect_min: Readonly, rect_max: Readonly): boolean;\nexport function IsRectVisible(...args: any[]): boolean {\n if (args.length === 1) {\n const size: Readonly = args[0];\n return bind.IsRectVisible_A(size);\n } else {\n const rect_min: Readonly = args[0];\n const rect_max: Readonly = args[1];\n return bind.IsRectVisible_B(rect_min, rect_max);\n }\n}\n// IMGUI_API float GetTime();\nexport function GetTime(): number { return bind.GetTime(); }\n// IMGUI_API int GetFrameCount();\nexport function GetFrameCount(): number { return bind.GetFrameCount(); }\nexport function GetBackgroundDrawList(): ImDrawList {\n return new ImDrawList(bind.GetBackgroundDrawList());\n}\nexport function GetForegroundDrawList(): ImDrawList {\n return new ImDrawList(bind.GetForegroundDrawList());\n}\n// IMGUI_API ImDrawListSharedData* GetDrawListSharedData();\nexport function GetDrawListSharedData(): ImDrawListSharedData {\n return new ImDrawListSharedData(bind.GetDrawListSharedData());\n}\n// IMGUI_API const char* GetStyleColorName(ImGuiCol idx);\nexport function GetStyleColorName(idx: ImGuiCol): string { return bind.GetStyleColorName(idx); }\n// IMGUI_API ImVec2 CalcTextSize(const char* text, const char* text_end = NULL, bool hide_text_after_double_hash = false, float wrap_width = -1.0f);\nexport function CalcTextSize(text: string, text_end: number | null = null, hide_text_after_double_hash: boolean = false, wrap_width: number = -1, out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.CalcTextSize(text_end !== null ? text.substring(0, text_end) : text, hide_text_after_double_hash, wrap_width, out);\n}\n// IMGUI_API void CalcListClipping(int items_count, float items_height, int* out_items_display_start, int* out_items_display_end); // calculate coarse clipping for large list of evenly sized items. Prefer using the ImGuiListClipper higher-level helper if you can.\nexport function CalcListClipping(items_count: number, items_height: number, out_items_display_start: Bind.ImScalar, out_items_display_end: Bind.ImScalar): void {\n return bind.CalcListClipping(items_count, items_height, out_items_display_start, out_items_display_end);\n}\n\n// IMGUI_API bool BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags extra_flags = 0); // helper to create a child window / scrolling region that looks like a normal widget frame\nexport function BeginChildFrame(id: Bind.ImGuiID, size: Readonly, extra_flags: ImGuiWindowFlags = 0): boolean {\n return bind.BeginChildFrame(id, size, extra_flags);\n}\n// IMGUI_API void EndChildFrame();\nexport function EndChildFrame(): void { bind.EndChildFrame(); }\n\n// IMGUI_API ImVec4 ColorConvertU32ToFloat4(ImU32 in);\nexport function ColorConvertU32ToFloat4(in_: Bind.ImU32, out: Bind.interface_ImVec4 = new ImVec4()): typeof out {\n return bind.ColorConvertU32ToFloat4(in_, out);\n}\n// IMGUI_API ImU32 ColorConvertFloat4ToU32(const ImVec4& in);\nexport function ColorConvertFloat4ToU32(in_: Readonly): Bind.ImU32 {\n return bind.ColorConvertFloat4ToU32(in_);\n}\n// IMGUI_API void ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v);\nexport function ColorConvertRGBtoHSV(r: number, g: number, b: number, out_h: Bind.ImScalar, out_s: Bind.ImScalar, out_v: Bind.ImScalar): void { bind.ColorConvertRGBtoHSV(r, g, b, out_h, out_s, out_v); }\n// IMGUI_API void ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g, float& out_b);\nexport function ColorConvertHSVtoRGB(h: number, s: number, v: number, out_r: Bind.ImScalar, out_g: Bind.ImScalar, out_b: Bind.ImScalar): void { bind.ColorConvertHSVtoRGB(h, s, v, out_r, out_g, out_b); }\n\n// Inputs\n// IMGUI_API int GetKeyIndex(ImGuiKey imgui_key); // map ImGuiKey_* values into user's key index. == io.KeyMap[key]\nexport function GetKeyIndex(imgui_key: ImGuiKey): number {\n return bind.GetKeyIndex(imgui_key);\n}\n// IMGUI_API bool IsKeyDown(int user_key_index); // is key being held. == io.KeysDown[user_key_index]. note that imgui doesn't know the semantic of each entry of io.KeyDown[]. Use your own indices/enums according to how your backend/engine stored them into KeyDown[]!\nexport function IsKeyDown(user_key_index: number): boolean {\n return bind.IsKeyDown(user_key_index);\n}\n// IMGUI_API bool IsKeyPressed(int user_key_index, bool repeat = true); // was key pressed (went from !Down to Down). if repeat=true, uses io.KeyRepeatDelay / KeyRepeatRate\nexport function IsKeyPressed(user_key_index: number, repeat: boolean = true): boolean {\n return bind.IsKeyPressed(user_key_index, repeat);\n}\n// IMGUI_API bool IsKeyReleased(int user_key_index); // was key released (went from Down to !Down)..\nexport function IsKeyReleased(user_key_index: number): boolean {\n return bind.IsKeyReleased(user_key_index);\n}\n// IMGUI_API int GetKeyPressedAmount(int key_index, float repeat_delay, float rate); // uses provided repeat rate/delay. return a count, most often 0 or 1 but might be >1 if RepeatRate is small enough that DeltaTime > RepeatRate\nexport function GetKeyPressedAmount(user_key_index: number, repeat_delay: number, rate: number): number {\n return bind.GetKeyPressedAmount(user_key_index, repeat_delay, rate);\n}\n// IMGUI_API bool IsMouseDown(int button); // is mouse button held\nexport function IsMouseDown(button: number): boolean {\n return bind.IsMouseDown(button);\n}\n// IMGUI_API bool IsMouseClicked(int button, bool repeat = false); // did mouse button clicked (went from !Down to Down)\nexport function IsMouseClicked(button: number, repeat: boolean = false): boolean {\n return bind.IsMouseClicked(button, repeat);\n}\n// IMGUI_API bool IsMouseDoubleClicked(int button); // did mouse button double-clicked. a double-click returns false in IsMouseClicked(). uses io.MouseDoubleClickTime.\nexport function IsMouseDoubleClicked(button: number): boolean {\n return bind.IsMouseDoubleClicked(button);\n}\n// IMGUI_API bool IsMouseReleased(int button); // did mouse button released (went from Down to !Down)\nexport function IsMouseReleased(button: number): boolean {\n return bind.IsMouseReleased(button);\n}\n// IMGUI_API bool IsMouseDragging(int button = 0, float lock_threshold = -1.0f); // is mouse dragging. if lock_threshold < -1.0f uses io.MouseDraggingThreshold\nexport function IsMouseDragging(button: number = 0, lock_threshold: number = -1.0): boolean {\n return bind.IsMouseDragging(button, lock_threshold);\n}\n// IMGUI_API bool IsMouseHoveringRect(const ImVec2& r_min, const ImVec2& r_max, bool clip = true); // is mouse hovering given bounding rect (in screen space). clipped by current clipping settings. disregarding of consideration of focus/window ordering/blocked by a popup.\nexport function IsMouseHoveringRect(r_min: Readonly, r_max: Readonly, clip: boolean = true): boolean {\n return bind.IsMouseHoveringRect(r_min, r_max, clip);\n}\n// IMGUI_API bool IsMousePosValid(const ImVec2* mouse_pos = NULL); //\nexport function IsMousePosValid(mouse_pos: Readonly | null = null): boolean {\n return bind.IsMousePosValid(mouse_pos);\n}\n// IMGUI_API ImVec2 GetMousePos(); // shortcut to ImGui::GetIO().MousePos provided by user, to be consistent with other calls\nexport function GetMousePos(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMousePos(out);\n}\n// IMGUI_API ImVec2 GetMousePosOnOpeningCurrentPopup(); // retrieve backup of mouse positioning at the time of opening popup we have BeginPopup() into\nexport function GetMousePosOnOpeningCurrentPopup(out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMousePosOnOpeningCurrentPopup(out);\n}\n// IMGUI_API ImVec2 GetMouseDragDelta(int button = 0, float lock_threshold = -1.0f); // dragging amount since clicking. if lock_threshold < -1.0f uses io.MouseDraggingThreshold\nexport function GetMouseDragDelta(button: number = 0, lock_threshold: number = -1.0, out: Bind.interface_ImVec2 = new ImVec2()): typeof out {\n return bind.GetMouseDragDelta(button, lock_threshold, out);\n}\n// IMGUI_API void ResetMouseDragDelta(int button = 0); //\nexport function ResetMouseDragDelta(button: number = 0): void {\n bind.ResetMouseDragDelta(button);\n}\n// IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you\nexport function GetMouseCursor(): ImGuiMouseCursor { return bind.GetMouseCursor(); }\n// IMGUI_API void SetMouseCursor(ImGuiMouseCursor type); // set desired cursor type\nexport function SetMouseCursor(type: ImGuiMouseCursor): void { bind.SetMouseCursor(type); }\n// IMGUI_API void CaptureKeyboardFromApp(bool capture = true); // manually override io.WantCaptureKeyboard flag next frame (said flag is entirely left for your application handle). e.g. force capture keyboard when your widget is being hovered.\nexport function CaptureKeyboardFromApp(capture: boolean = true) {\n return bind.CaptureKeyboardFromApp(capture);\n}\n// IMGUI_API void CaptureMouseFromApp(bool capture = true); // manually override io.WantCaptureMouse flag next frame (said flag is entirely left for your application handle).\nexport function CaptureMouseFromApp(capture: boolean = true): void {\n bind.CaptureMouseFromApp(capture);\n}\n\n// Clipboard Utilities (also see the LogToClipboard() function to capture or output text data to the clipboard)\n// IMGUI_API const char* GetClipboardText();\nexport function GetClipboardText(): string { return bind.GetClipboardText(); }\n// IMGUI_API void SetClipboardText(const char* text);\nexport function SetClipboardText(text: string): void { bind.SetClipboardText(text); }\n\n// Settings/.Ini Utilities\n// The disk functions are automatically called if io.IniFilename != NULL (default is \"imgui.ini\").\n// Set io.IniFilename to NULL to load/save manually. Read io.WantSaveIniSettings description about handling .ini saving manually.\n// IMGUI_API void LoadIniSettingsFromDisk(const char* ini_filename); // call after CreateContext() and before the first call to NewFrame(). NewFrame() automatically calls LoadIniSettingsFromDisk(io.IniFilename).\nexport function LoadIniSettingsFromDisk(ini_filename: string): void { throw new Error(); } // TODO\n// IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source.\nexport function LoadIniSettingsFromMemory(ini_data: string, ini_size: number = 0): void { bind.LoadIniSettingsFromMemory(ini_data); }\n// IMGUI_API void SaveIniSettingsToDisk(const char* ini_filename);\nexport function SaveIniSettingsToDisk(ini_filename: string): void { throw new Error(); } // TODO\n// IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings.\nexport function SaveIniSettingsToMemory(out_ini_size: Bind.ImScalar | null = null): string { return bind.SaveIniSettingsToMemory(); }\n\n// Memory Utilities\n// All those functions are not reliant on the current context.\n// If you reload the contents of imgui.cpp at runtime, you may need to call SetCurrentContext() + SetAllocatorFunctions() again.\n// IMGUI_API void SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void(*free_func)(void* ptr, void* user_data), void* user_data = NULL);\nexport function SetAllocatorFunctions(alloc_func: (sz: number, user_data: any) => number, free_func: (ptr: number, user_data: any) => void, user_data: any = null): void {\n bind.SetAllocatorFunctions(alloc_func, free_func, user_data);\n}\n// IMGUI_API void* MemAlloc(size_t sz);\nexport function MemAlloc(sz: number): void { bind.MemAlloc(sz); }\n// IMGUI_API void MemFree(void* ptr);\nexport function MemFree(ptr: any): void { bind.MemFree(ptr); }\n","(function(global){\n\n//\n// Check for native Promise and it has correct interface\n//\n\nvar NativePromise = global['Promise'];\nvar nativePromiseSupported =\n NativePromise &&\n // Some of these methods are missing from\n // Firefox/Chrome experimental implementations\n 'resolve' in NativePromise &&\n 'reject' in NativePromise &&\n 'all' in NativePromise &&\n 'race' in NativePromise &&\n // Older version of the spec had a resolver object\n // as the arg rather than a function\n (function(){\n var resolve;\n new NativePromise(function(r){ resolve = r; });\n return typeof resolve === 'function';\n })();\n\n\n//\n// export if necessary\n//\n\nif (typeof exports !== 'undefined' && exports)\n{\n // node.js\n exports.Promise = nativePromiseSupported ? NativePromise : Promise;\n exports.Polyfill = Promise;\n}\nelse\n{\n // AMD\n if (typeof define == 'function' && define.amd)\n {\n define(function(){\n return nativePromiseSupported ? NativePromise : Promise;\n });\n }\n else\n {\n // in browser add to global\n if (!nativePromiseSupported)\n global['Promise'] = Promise;\n }\n}\n\n\n//\n// Polyfill\n//\n\nvar PENDING = 'pending';\nvar SEALED = 'sealed';\nvar FULFILLED = 'fulfilled';\nvar REJECTED = 'rejected';\nvar NOOP = function(){};\n\nfunction isArray(value) {\n return Object.prototype.toString.call(value) === '[object Array]';\n}\n\n// async calls\nvar asyncSetTimer = typeof setImmediate !== 'undefined' ? setImmediate : setTimeout;\nvar asyncQueue = [];\nvar asyncTimer;\n\nfunction asyncFlush(){\n // run promise callbacks\n for (var i = 0; i < asyncQueue.length; i++)\n asyncQueue[i][0](asyncQueue[i][1]);\n\n // reset async asyncQueue\n asyncQueue = [];\n asyncTimer = false;\n}\n\nfunction asyncCall(callback, arg){\n asyncQueue.push([callback, arg]);\n\n if (!asyncTimer)\n {\n asyncTimer = true;\n asyncSetTimer(asyncFlush, 0);\n }\n}\n\n\nfunction invokeResolver(resolver, promise) {\n function resolvePromise(value) {\n resolve(promise, value);\n }\n\n function rejectPromise(reason) {\n reject(promise, reason);\n }\n\n try {\n resolver(resolvePromise, rejectPromise);\n } catch(e) {\n rejectPromise(e);\n }\n}\n\nfunction invokeCallback(subscriber){\n var owner = subscriber.owner;\n var settled = owner.state_;\n var value = owner.data_; \n var callback = subscriber[settled];\n var promise = subscriber.then;\n\n if (typeof callback === 'function')\n {\n settled = FULFILLED;\n try {\n value = callback(value);\n } catch(e) {\n reject(promise, e);\n }\n }\n\n if (!handleThenable(promise, value))\n {\n if (settled === FULFILLED)\n resolve(promise, value);\n\n if (settled === REJECTED)\n reject(promise, value);\n }\n}\n\nfunction handleThenable(promise, value) {\n var resolved;\n\n try {\n if (promise === value)\n throw new TypeError('A promises callback cannot return that same promise.');\n\n if (value && (typeof value === 'function' || typeof value === 'object'))\n {\n var then = value.then; // then should be retrived only once\n\n if (typeof then === 'function')\n {\n then.call(value, function(val){\n if (!resolved)\n {\n resolved = true;\n\n if (value !== val)\n resolve(promise, val);\n else\n fulfill(promise, val);\n }\n }, function(reason){\n if (!resolved)\n {\n resolved = true;\n\n reject(promise, reason);\n }\n });\n\n return true;\n }\n }\n } catch (e) {\n if (!resolved)\n reject(promise, e);\n\n return true;\n }\n\n return false;\n}\n\nfunction resolve(promise, value){\n if (promise === value || !handleThenable(promise, value))\n fulfill(promise, value);\n}\n\nfunction fulfill(promise, value){\n if (promise.state_ === PENDING)\n {\n promise.state_ = SEALED;\n promise.data_ = value;\n\n asyncCall(publishFulfillment, promise);\n }\n}\n\nfunction reject(promise, reason){\n if (promise.state_ === PENDING)\n {\n promise.state_ = SEALED;\n promise.data_ = reason;\n\n asyncCall(publishRejection, promise);\n }\n}\n\nfunction publish(promise) {\n var callbacks = promise.then_;\n promise.then_ = undefined;\n\n for (var i = 0; i < callbacks.length; i++) {\n invokeCallback(callbacks[i]);\n }\n}\n\nfunction publishFulfillment(promise){\n promise.state_ = FULFILLED;\n publish(promise);\n}\n\nfunction publishRejection(promise){\n promise.state_ = REJECTED;\n publish(promise);\n}\n\n/**\n* @class\n*/\nfunction Promise(resolver){\n if (typeof resolver !== 'function')\n throw new TypeError('Promise constructor takes a function argument');\n\n if (this instanceof Promise === false)\n throw new TypeError('Failed to construct \\'Promise\\': Please use the \\'new\\' operator, this object constructor cannot be called as a function.');\n\n this.then_ = [];\n\n invokeResolver(resolver, this);\n}\n\nPromise.prototype = {\n constructor: Promise,\n\n state_: PENDING,\n then_: null,\n data_: undefined,\n\n then: function(onFulfillment, onRejection){\n var subscriber = {\n owner: this,\n then: new this.constructor(NOOP),\n fulfilled: onFulfillment,\n rejected: onRejection\n };\n\n if (this.state_ === FULFILLED || this.state_ === REJECTED)\n {\n // already resolved, call callback async\n asyncCall(invokeCallback, subscriber);\n }\n else\n {\n // subscribe\n this.then_.push(subscriber);\n }\n\n return subscriber.then;\n },\n\n 'catch': function(onRejection) {\n return this.then(null, onRejection);\n }\n};\n\nPromise.all = function(promises){\n var Class = this;\n\n if (!isArray(promises))\n throw new TypeError('You must pass an array to Promise.all().');\n\n return new Class(function(resolve, reject){\n var results = [];\n var remaining = 0;\n\n function resolver(index){\n remaining++;\n return function(value){\n results[index] = value;\n if (!--remaining)\n resolve(results);\n };\n }\n\n for (var i = 0, promise; i < promises.length; i++)\n {\n promise = promises[i];\n\n if (promise && typeof promise.then === 'function')\n promise.then(resolver(i), reject);\n else\n results[i] = promise;\n }\n\n if (!remaining)\n resolve(results);\n });\n};\n\nPromise.race = function(promises){\n var Class = this;\n\n if (!isArray(promises))\n throw new TypeError('You must pass an array to Promise.race().');\n\n return new Class(function(resolve, reject) {\n for (var i = 0, promise; i < promises.length; i++)\n {\n promise = promises[i];\n\n if (promise && typeof promise.then === 'function')\n promise.then(resolve, reject);\n else\n resolve(promise);\n }\n });\n};\n\nPromise.resolve = function(value){\n var Class = this;\n\n if (value && typeof value === 'object' && value.constructor === Class)\n return value;\n\n return new Class(function(resolve){\n resolve(value);\n });\n};\n\nPromise.reject = function(reason){\n var Class = this;\n\n return new Class(function(resolve, reject){\n reject(reason);\n });\n};\n\n})(typeof window != 'undefined' ? window : typeof global != 'undefined' ? global : typeof self != 'undefined' ? self : this);\n","/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\n\n'use strict';\n/* eslint-disable no-unused-vars */\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\n\nfunction toObject(val) {\n\tif (val === null || val === undefined) {\n\t\tthrow new TypeError('Object.assign cannot be called with null or undefined');\n\t}\n\n\treturn Object(val);\n}\n\nfunction shouldUseNative() {\n\ttry {\n\t\tif (!Object.assign) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Detect buggy property enumeration order in older V8 versions.\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=4118\n\t\tvar test1 = new String('abc'); // eslint-disable-line no-new-wrappers\n\t\ttest1[5] = 'de';\n\t\tif (Object.getOwnPropertyNames(test1)[0] === '5') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test2 = {};\n\t\tfor (var i = 0; i < 10; i++) {\n\t\t\ttest2['_' + String.fromCharCode(i)] = i;\n\t\t}\n\t\tvar order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n\t\t\treturn test2[n];\n\t\t});\n\t\tif (order2.join('') !== '0123456789') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test3 = {};\n\t\t'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n\t\t\ttest3[letter] = letter;\n\t\t});\n\t\tif (Object.keys(Object.assign({}, test3)).join('') !==\n\t\t\t\t'abcdefghijklmnopqrst') {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t} catch (err) {\n\t\t// We don't expect any of the above to throw, but better to be safe.\n\t\treturn false;\n\t}\n}\n\nmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n\tvar from;\n\tvar to = toObject(target);\n\tvar symbols;\n\n\tfor (var s = 1; s < arguments.length; s++) {\n\t\tfrom = Object(arguments[s]);\n\n\t\tfor (var key in from) {\n\t\t\tif (hasOwnProperty.call(from, key)) {\n\t\t\t\tto[key] = from[key];\n\t\t\t}\n\t\t}\n\n\t\tif (getOwnPropertySymbols) {\n\t\t\tsymbols = getOwnPropertySymbols(from);\n\t\t\tfor (var i = 0; i < symbols.length; i++) {\n\t\t\t\tif (propIsEnumerable.call(from, symbols[i])) {\n\t\t\t\t\tto[symbols[i]] = from[symbols[i]];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn to;\n};\n","/*!\n * @pixi/polyfill - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/polyfill is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Polyfill } from 'es6-promise-polyfill';\nimport objectAssign from 'object-assign';\n\n// Support for IE 9 - 11 which does not include Promises\nif (!window.Promise)\n{\n window.Promise = Polyfill;\n}\n\n// References:\n\nif (!Object.assign)\n{\n Object.assign = objectAssign;\n}\n\nvar commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\n// References:\n// http://paulirish.com/2011/requestanimationframe-for-smart-animating/\n// https://gist.github.com/1579671\n// http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision\n// https://gist.github.com/timhall/4078614\n// https://github.com/Financial-Times/polyfill-service/tree/master/polyfills/requestAnimationFrame\n\n// Expected to be used with Browserfiy\n// Browserify automatically detects the use of `global` and passes the\n// correct reference of `global`, `self`, and finally `window`\n\nvar ONE_FRAME_TIME = 16;\n\n// Date.now\nif (!(Date.now && Date.prototype.getTime))\n{\n Date.now = function now()\n {\n return new Date().getTime();\n };\n}\n\n// performance.now\nif (!(commonjsGlobal.performance && commonjsGlobal.performance.now))\n{\n var startTime = Date.now();\n\n if (!commonjsGlobal.performance)\n {\n commonjsGlobal.performance = {};\n }\n\n commonjsGlobal.performance.now = function () { return Date.now() - startTime; };\n}\n\n// requestAnimationFrame\nvar lastTime = Date.now();\nvar vendors = ['ms', 'moz', 'webkit', 'o'];\n\nfor (var x = 0; x < vendors.length && !commonjsGlobal.requestAnimationFrame; ++x)\n{\n var p = vendors[x];\n\n commonjsGlobal.requestAnimationFrame = commonjsGlobal[(p + \"RequestAnimationFrame\")];\n commonjsGlobal.cancelAnimationFrame = commonjsGlobal[(p + \"CancelAnimationFrame\")] || commonjsGlobal[(p + \"CancelRequestAnimationFrame\")];\n}\n\nif (!commonjsGlobal.requestAnimationFrame)\n{\n commonjsGlobal.requestAnimationFrame = function (callback) {\n if (typeof callback !== 'function')\n {\n throw new TypeError((callback + \"is not a function\"));\n }\n\n var currentTime = Date.now();\n var delay = ONE_FRAME_TIME + lastTime - currentTime;\n\n if (delay < 0)\n {\n delay = 0;\n }\n\n lastTime = currentTime;\n\n return setTimeout(function () {\n lastTime = Date.now();\n callback(performance.now());\n }, delay);\n };\n}\n\nif (!commonjsGlobal.cancelAnimationFrame)\n{\n commonjsGlobal.cancelAnimationFrame = function (id) { return clearTimeout(id); };\n}\n\n// References:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign\n\nif (!Math.sign)\n{\n Math.sign = function mathSign(x)\n {\n x = Number(x);\n\n if (x === 0 || isNaN(x))\n {\n return x;\n }\n\n return x > 0 ? 1 : -1;\n };\n}\n\n// References:\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger\n\nif (!Number.isInteger)\n{\n Number.isInteger = function numberIsInteger(value)\n {\n return typeof value === 'number' && isFinite(value) && Math.floor(value) === value;\n };\n}\n\nif (!window.ArrayBuffer)\n{\n window.ArrayBuffer = Array;\n}\n\nif (!window.Float32Array)\n{\n window.Float32Array = Array;\n}\n\nif (!window.Uint32Array)\n{\n window.Uint32Array = Array;\n}\n\nif (!window.Uint16Array)\n{\n window.Uint16Array = Array;\n}\n\nif (!window.Uint8Array)\n{\n window.Uint8Array = Array;\n}\n\nif (!window.Int32Array)\n{\n window.Int32Array = Array;\n}\n//# sourceMappingURL=polyfill.es.js.map\n","(function(global) {\n var apple_phone = /iPhone/i,\n apple_ipod = /iPod/i,\n apple_tablet = /iPad/i,\n android_phone = /\\bAndroid(?:.+)Mobile\\b/i, // Match 'Android' AND 'Mobile'\n android_tablet = /Android/i,\n amazon_phone = /\\bAndroid(?:.+)SD4930UR\\b/i,\n amazon_tablet = /\\bAndroid(?:.+)(?:KF[A-Z]{2,4})\\b/i,\n windows_phone = /Windows Phone/i,\n windows_tablet = /\\bWindows(?:.+)ARM\\b/i, // Match 'Windows' AND 'ARM'\n other_blackberry = /BlackBerry/i,\n other_blackberry_10 = /BB10/i,\n other_opera = /Opera Mini/i,\n other_chrome = /\\b(CriOS|Chrome)(?:.+)Mobile/i,\n other_firefox = /Mobile(?:.+)Firefox\\b/i; // Match 'Mobile' AND 'Firefox'\n\n function match(regex, userAgent) {\n return regex.test(userAgent);\n }\n\n function isMobile(userAgent) {\n var ua =\n userAgent ||\n (typeof navigator !== 'undefined' ? navigator.userAgent : '');\n\n // Facebook mobile app's integrated browser adds a bunch of strings that\n // match everything. Strip it out if it exists.\n var tmp = ua.split('[FBAN');\n if (typeof tmp[1] !== 'undefined') {\n ua = tmp[0];\n }\n\n // Twitter mobile app's integrated browser on iPad adds a \"Twitter for\n // iPhone\" string. Same probably happens on other tablet platforms.\n // This will confuse detection so strip it out if it exists.\n tmp = ua.split('Twitter');\n if (typeof tmp[1] !== 'undefined') {\n ua = tmp[0];\n }\n\n var result = {\n apple: {\n phone: match(apple_phone, ua) && !match(windows_phone, ua),\n ipod: match(apple_ipod, ua),\n tablet:\n !match(apple_phone, ua) &&\n match(apple_tablet, ua) &&\n !match(windows_phone, ua),\n device:\n (match(apple_phone, ua) ||\n match(apple_ipod, ua) ||\n match(apple_tablet, ua)) &&\n !match(windows_phone, ua)\n },\n amazon: {\n phone: match(amazon_phone, ua),\n tablet: !match(amazon_phone, ua) && match(amazon_tablet, ua),\n device: match(amazon_phone, ua) || match(amazon_tablet, ua)\n },\n android: {\n phone:\n (!match(windows_phone, ua) && match(amazon_phone, ua)) ||\n (!match(windows_phone, ua) && match(android_phone, ua)),\n tablet:\n !match(windows_phone, ua) &&\n !match(amazon_phone, ua) &&\n !match(android_phone, ua) &&\n (match(amazon_tablet, ua) || match(android_tablet, ua)),\n device:\n (!match(windows_phone, ua) &&\n (match(amazon_phone, ua) ||\n match(amazon_tablet, ua) ||\n match(android_phone, ua) ||\n match(android_tablet, ua))) ||\n match(/\\bokhttp\\b/i, ua)\n },\n windows: {\n phone: match(windows_phone, ua),\n tablet: match(windows_tablet, ua),\n device: match(windows_phone, ua) || match(windows_tablet, ua)\n },\n other: {\n blackberry: match(other_blackberry, ua),\n blackberry10: match(other_blackberry_10, ua),\n opera: match(other_opera, ua),\n firefox: match(other_firefox, ua),\n chrome: match(other_chrome, ua),\n device:\n match(other_blackberry, ua) ||\n match(other_blackberry_10, ua) ||\n match(other_opera, ua) ||\n match(other_firefox, ua) ||\n match(other_chrome, ua)\n }\n };\n (result.any =\n result.apple.device ||\n result.android.device ||\n result.windows.device ||\n result.other.device),\n // excludes 'other' devices and ipods, targeting touchscreen phones\n (result.phone =\n result.apple.phone || result.android.phone || result.windows.phone),\n (result.tablet =\n result.apple.tablet || result.android.tablet || result.windows.tablet);\n\n return result;\n }\n\n if (\n typeof module !== 'undefined' &&\n module.exports &&\n typeof window === 'undefined'\n ) {\n // Node.js\n module.exports = isMobile;\n } else if (\n typeof module !== 'undefined' &&\n module.exports &&\n typeof window !== 'undefined'\n ) {\n // Browserify\n module.exports = isMobile();\n module.exports.isMobile = isMobile;\n } else if (typeof define === 'function' && define.amd) {\n // AMD\n define([], (global.isMobile = isMobile()));\n } else {\n global.isMobile = isMobile();\n }\n})(this);\n","/*!\n * @pixi/settings - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/settings is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport isMobile from 'ismobilejs';\nexport { default as isMobile } from 'ismobilejs';\n\n/**\n * The maximum recommended texture units to use.\n * In theory the bigger the better, and for desktop we'll use as many as we can.\n * But some mobile devices slow down if there is to many branches in the shader.\n * So in practice there seems to be a sweet spot size that varies depending on the device.\n *\n * In v4, all mobile devices were limited to 4 texture units because for this.\n * In v5, we allow all texture units to be used on modern Apple or Android devices.\n *\n * @private\n * @param {number} max\n * @returns {number}\n */\nfunction maxRecommendedTextures(max)\n{\n var allowMax = true;\n\n if (isMobile.tablet || isMobile.phone)\n {\n allowMax = false;\n\n if (isMobile.apple.device)\n {\n var match = (navigator.userAgent).match(/OS (\\d+)_(\\d+)?/);\n\n if (match)\n {\n var majorVersion = parseInt(match[1], 10);\n\n // All texture units can be used on devices that support ios 11 or above\n if (majorVersion >= 11)\n {\n allowMax = true;\n }\n }\n }\n if (isMobile.android.device)\n {\n var match$1 = (navigator.userAgent).match(/Android\\s([0-9.]*)/);\n\n if (match$1)\n {\n var majorVersion$1 = parseInt(match$1[1], 10);\n\n // All texture units can be used on devices that support Android 7 (Nougat) or above\n if (majorVersion$1 >= 7)\n {\n allowMax = true;\n }\n }\n }\n }\n\n return allowMax ? max : 4;\n}\n\n/**\n * Uploading the same buffer multiple times in a single frame can cause performance issues.\n * Apparent on iOS so only check for that at the moment\n * This check may become more complex if this issue pops up elsewhere.\n *\n * @private\n * @returns {boolean}\n */\nfunction canUploadSameBuffer()\n{\n return !isMobile.apple.device;\n}\n\n/**\n * User's customizable globals for overriding the default PIXI settings, such\n * as a renderer's default resolution, framerate, float precision, etc.\n * @example\n * // Use the native window resolution as the default resolution\n * // will support high-density displays when rendering\n * PIXI.settings.RESOLUTION = window.devicePixelRatio;\n *\n * // Disable interpolation when scaling, will make texture be pixelated\n * PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST;\n * @namespace PIXI.settings\n */\nvar settings = {\n\n /**\n * If set to true WebGL will attempt make textures mimpaped by default.\n * Mipmapping will only succeed if the base texture uploaded has power of two dimensions.\n *\n * @static\n * @name MIPMAP_TEXTURES\n * @memberof PIXI.settings\n * @type {PIXI.MIPMAP_MODES}\n * @default PIXI.MIPMAP_MODES.POW2\n */\n MIPMAP_TEXTURES: 1,\n\n /**\n * Default anisotropic filtering level of textures.\n * Usually from 0 to 16\n *\n * @static\n * @name ANISOTROPIC_LEVEL\n * @memberof PIXI.settings\n * @type {number}\n * @default 0\n */\n ANISOTROPIC_LEVEL: 0,\n\n /**\n * Default resolution / device pixel ratio of the renderer.\n *\n * @static\n * @name RESOLUTION\n * @memberof PIXI.settings\n * @type {number}\n * @default 1\n */\n RESOLUTION: 1,\n\n /**\n * Default filter resolution.\n *\n * @static\n * @name FILTER_RESOLUTION\n * @memberof PIXI.settings\n * @type {number}\n * @default 1\n */\n FILTER_RESOLUTION: 1,\n\n /**\n * The maximum textures that this device supports.\n *\n * @static\n * @name SPRITE_MAX_TEXTURES\n * @memberof PIXI.settings\n * @type {number}\n * @default 32\n */\n SPRITE_MAX_TEXTURES: maxRecommendedTextures(32),\n\n // TODO: maybe change to SPRITE.BATCH_SIZE: 2000\n // TODO: maybe add PARTICLE.BATCH_SIZE: 15000\n\n /**\n * The default sprite batch size.\n *\n * The default aims to balance desktop and mobile devices.\n *\n * @static\n * @name SPRITE_BATCH_SIZE\n * @memberof PIXI.settings\n * @type {number}\n * @default 4096\n */\n SPRITE_BATCH_SIZE: 4096,\n\n /**\n * The default render options if none are supplied to {@link PIXI.Renderer}\n * or {@link PIXI.CanvasRenderer}.\n *\n * @static\n * @name RENDER_OPTIONS\n * @memberof PIXI.settings\n * @type {object}\n * @property {HTMLCanvasElement} view=null\n * @property {number} resolution=1\n * @property {boolean} antialias=false\n * @property {boolean} forceFXAA=false\n * @property {boolean} autoDensity=false\n * @property {boolean} transparent=false\n * @property {number} backgroundColor=0x000000\n * @property {boolean} clearBeforeRender=true\n * @property {boolean} preserveDrawingBuffer=false\n * @property {number} width=800\n * @property {number} height=600\n * @property {boolean} legacy=false\n */\n RENDER_OPTIONS: {\n view: null,\n antialias: false,\n forceFXAA: false,\n autoDensity: false,\n transparent: false,\n backgroundColor: 0x000000,\n clearBeforeRender: true,\n preserveDrawingBuffer: false,\n width: 800,\n height: 600,\n legacy: false,\n },\n\n /**\n * Default Garbage Collection mode.\n *\n * @static\n * @name GC_MODE\n * @memberof PIXI.settings\n * @type {PIXI.GC_MODES}\n * @default PIXI.GC_MODES.AUTO\n */\n GC_MODE: 0,\n\n /**\n * Default Garbage Collection max idle.\n *\n * @static\n * @name GC_MAX_IDLE\n * @memberof PIXI.settings\n * @type {number}\n * @default 3600\n */\n GC_MAX_IDLE: 60 * 60,\n\n /**\n * Default Garbage Collection maximum check count.\n *\n * @static\n * @name GC_MAX_CHECK_COUNT\n * @memberof PIXI.settings\n * @type {number}\n * @default 600\n */\n GC_MAX_CHECK_COUNT: 60 * 10,\n\n /**\n * Default wrap modes that are supported by pixi.\n *\n * @static\n * @name WRAP_MODE\n * @memberof PIXI.settings\n * @type {PIXI.WRAP_MODES}\n * @default PIXI.WRAP_MODES.CLAMP\n */\n WRAP_MODE: 33071,\n\n /**\n * Default scale mode for textures.\n *\n * @static\n * @name SCALE_MODE\n * @memberof PIXI.settings\n * @type {PIXI.SCALE_MODES}\n * @default PIXI.SCALE_MODES.LINEAR\n */\n SCALE_MODE: 1,\n\n /**\n * Default specify float precision in vertex shader.\n *\n * @static\n * @name PRECISION_VERTEX\n * @memberof PIXI.settings\n * @type {PIXI.PRECISION}\n * @default PIXI.PRECISION.HIGH\n */\n PRECISION_VERTEX: 'highp',\n\n /**\n * Default specify float precision in fragment shader.\n * iOS is best set at highp due to https://github.com/pixijs/pixi.js/issues/3742\n *\n * @static\n * @name PRECISION_FRAGMENT\n * @memberof PIXI.settings\n * @type {PIXI.PRECISION}\n * @default PIXI.PRECISION.MEDIUM\n */\n PRECISION_FRAGMENT: isMobile.apple.device ? 'highp' : 'mediump',\n\n /**\n * Can we upload the same buffer in a single frame?\n *\n * @static\n * @name CAN_UPLOAD_SAME_BUFFER\n * @memberof PIXI.settings\n * @type {boolean}\n */\n CAN_UPLOAD_SAME_BUFFER: canUploadSameBuffer(),\n\n /**\n * Enables bitmap creation before image load. This feature is experimental.\n *\n * @static\n * @name CREATE_IMAGE_BITMAP\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\n CREATE_IMAGE_BITMAP: false,\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n *\n * @static\n * @constant\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\n ROUND_PIXELS: false,\n};\n\nexport { settings };\n//# sourceMappingURL=settings.es.js.map\n","'use strict';\n\nvar has = Object.prototype.hasOwnProperty\n , prefix = '~';\n\n/**\n * Constructor to create a storage for our `EE` objects.\n * An `Events` instance is a plain object whose properties are event names.\n *\n * @constructor\n * @private\n */\nfunction Events() {}\n\n//\n// We try to not inherit from `Object.prototype`. In some engines creating an\n// instance in this way is faster than calling `Object.create(null)` directly.\n// If `Object.create(null)` is not supported we prefix the event names with a\n// character to make sure that the built-in object properties are not\n// overridden or used as an attack vector.\n//\nif (Object.create) {\n Events.prototype = Object.create(null);\n\n //\n // This hack is needed because the `__proto__` property is still inherited in\n // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5.\n //\n if (!new Events().__proto__) prefix = false;\n}\n\n/**\n * Representation of a single event listener.\n *\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} [once=false] Specify if the listener is a one-time listener.\n * @constructor\n * @private\n */\nfunction EE(fn, context, once) {\n this.fn = fn;\n this.context = context;\n this.once = once || false;\n}\n\n/**\n * Add a listener for a given event.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} once Specify if the listener is a one-time listener.\n * @returns {EventEmitter}\n * @private\n */\nfunction addListener(emitter, event, fn, context, once) {\n if (typeof fn !== 'function') {\n throw new TypeError('The listener must be a function');\n }\n\n var listener = new EE(fn, context || emitter, once)\n , evt = prefix ? prefix + event : event;\n\n if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;\n else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);\n else emitter._events[evt] = [emitter._events[evt], listener];\n\n return emitter;\n}\n\n/**\n * Clear event by name.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} evt The Event name.\n * @private\n */\nfunction clearEvent(emitter, evt) {\n if (--emitter._eventsCount === 0) emitter._events = new Events();\n else delete emitter._events[evt];\n}\n\n/**\n * Minimal `EventEmitter` interface that is molded against the Node.js\n * `EventEmitter` interface.\n *\n * @constructor\n * @public\n */\nfunction EventEmitter() {\n this._events = new Events();\n this._eventsCount = 0;\n}\n\n/**\n * Return an array listing the events for which the emitter has registered\n * listeners.\n *\n * @returns {Array}\n * @public\n */\nEventEmitter.prototype.eventNames = function eventNames() {\n var names = []\n , events\n , name;\n\n if (this._eventsCount === 0) return names;\n\n for (name in (events = this._events)) {\n if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);\n }\n\n if (Object.getOwnPropertySymbols) {\n return names.concat(Object.getOwnPropertySymbols(events));\n }\n\n return names;\n};\n\n/**\n * Return the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Array} The registered listeners.\n * @public\n */\nEventEmitter.prototype.listeners = function listeners(event) {\n var evt = prefix ? prefix + event : event\n , handlers = this._events[evt];\n\n if (!handlers) return [];\n if (handlers.fn) return [handlers.fn];\n\n for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) {\n ee[i] = handlers[i].fn;\n }\n\n return ee;\n};\n\n/**\n * Return the number of listeners listening to a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Number} The number of listeners.\n * @public\n */\nEventEmitter.prototype.listenerCount = function listenerCount(event) {\n var evt = prefix ? prefix + event : event\n , listeners = this._events[evt];\n\n if (!listeners) return 0;\n if (listeners.fn) return 1;\n return listeners.length;\n};\n\n/**\n * Calls each of the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Boolean} `true` if the event had listeners, else `false`.\n * @public\n */\nEventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return false;\n\n var listeners = this._events[evt]\n , len = arguments.length\n , args\n , i;\n\n if (listeners.fn) {\n if (listeners.once) this.removeListener(event, listeners.fn, undefined, true);\n\n switch (len) {\n case 1: return listeners.fn.call(listeners.context), true;\n case 2: return listeners.fn.call(listeners.context, a1), true;\n case 3: return listeners.fn.call(listeners.context, a1, a2), true;\n case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true;\n case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;\n case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;\n }\n\n for (i = 1, args = new Array(len -1); i < len; i++) {\n args[i - 1] = arguments[i];\n }\n\n listeners.fn.apply(listeners.context, args);\n } else {\n var length = listeners.length\n , j;\n\n for (i = 0; i < length; i++) {\n if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true);\n\n switch (len) {\n case 1: listeners[i].fn.call(listeners[i].context); break;\n case 2: listeners[i].fn.call(listeners[i].context, a1); break;\n case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break;\n case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break;\n default:\n if (!args) for (j = 1, args = new Array(len -1); j < len; j++) {\n args[j - 1] = arguments[j];\n }\n\n listeners[i].fn.apply(listeners[i].context, args);\n }\n }\n }\n\n return true;\n};\n\n/**\n * Add a listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.on = function on(event, fn, context) {\n return addListener(this, event, fn, context, false);\n};\n\n/**\n * Add a one-time listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.once = function once(event, fn, context) {\n return addListener(this, event, fn, context, true);\n};\n\n/**\n * Remove the listeners of a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn Only remove the listeners that match this function.\n * @param {*} context Only remove the listeners that have this context.\n * @param {Boolean} once Only remove one-time listeners.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return this;\n if (!fn) {\n clearEvent(this, evt);\n return this;\n }\n\n var listeners = this._events[evt];\n\n if (listeners.fn) {\n if (\n listeners.fn === fn &&\n (!once || listeners.once) &&\n (!context || listeners.context === context)\n ) {\n clearEvent(this, evt);\n }\n } else {\n for (var i = 0, events = [], length = listeners.length; i < length; i++) {\n if (\n listeners[i].fn !== fn ||\n (once && !listeners[i].once) ||\n (context && listeners[i].context !== context)\n ) {\n events.push(listeners[i]);\n }\n }\n\n //\n // Reset the array, or remove it completely if we have no more listeners.\n //\n if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;\n else clearEvent(this, evt);\n }\n\n return this;\n};\n\n/**\n * Remove all listeners, or those of the specified event.\n *\n * @param {(String|Symbol)} [event] The event name.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {\n var evt;\n\n if (event) {\n evt = prefix ? prefix + event : event;\n if (this._events[evt]) clearEvent(this, evt);\n } else {\n this._events = new Events();\n this._eventsCount = 0;\n }\n\n return this;\n};\n\n//\n// Alias methods names because people roll like that.\n//\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\nEventEmitter.prototype.addListener = EventEmitter.prototype.on;\n\n//\n// Expose the prefix.\n//\nEventEmitter.prefixed = prefix;\n\n//\n// Allow `EventEmitter` to be imported as module namespace.\n//\nEventEmitter.EventEmitter = EventEmitter;\n\n//\n// Expose the module.\n//\nif ('undefined' !== typeof module) {\n module.exports = EventEmitter;\n}\n","'use strict';\n\nmodule.exports = earcut;\nmodule.exports.default = earcut;\n\nfunction earcut(data, holeIndices, dim) {\n\n dim = dim || 2;\n\n var hasHoles = holeIndices && holeIndices.length,\n outerLen = hasHoles ? holeIndices[0] * dim : data.length,\n outerNode = linkedList(data, 0, outerLen, dim, true),\n triangles = [];\n\n if (!outerNode || outerNode.next === outerNode.prev) return triangles;\n\n var minX, minY, maxX, maxY, x, y, invSize;\n\n if (hasHoles) outerNode = eliminateHoles(data, holeIndices, outerNode, dim);\n\n // if the shape is not too simple, we'll use z-order curve hash later; calculate polygon bbox\n if (data.length > 80 * dim) {\n minX = maxX = data[0];\n minY = maxY = data[1];\n\n for (var i = dim; i < outerLen; i += dim) {\n x = data[i];\n y = data[i + 1];\n if (x < minX) minX = x;\n if (y < minY) minY = y;\n if (x > maxX) maxX = x;\n if (y > maxY) maxY = y;\n }\n\n // minX, minY and invSize are later used to transform coords into integers for z-order calculation\n invSize = Math.max(maxX - minX, maxY - minY);\n invSize = invSize !== 0 ? 1 / invSize : 0;\n }\n\n earcutLinked(outerNode, triangles, dim, minX, minY, invSize);\n\n return triangles;\n}\n\n// create a circular doubly linked list from polygon points in the specified winding order\nfunction linkedList(data, start, end, dim, clockwise) {\n var i, last;\n\n if (clockwise === (signedArea(data, start, end, dim) > 0)) {\n for (i = start; i < end; i += dim) last = insertNode(i, data[i], data[i + 1], last);\n } else {\n for (i = end - dim; i >= start; i -= dim) last = insertNode(i, data[i], data[i + 1], last);\n }\n\n if (last && equals(last, last.next)) {\n removeNode(last);\n last = last.next;\n }\n\n return last;\n}\n\n// eliminate colinear or duplicate points\nfunction filterPoints(start, end) {\n if (!start) return start;\n if (!end) end = start;\n\n var p = start,\n again;\n do {\n again = false;\n\n if (!p.steiner && (equals(p, p.next) || area(p.prev, p, p.next) === 0)) {\n removeNode(p);\n p = end = p.prev;\n if (p === p.next) break;\n again = true;\n\n } else {\n p = p.next;\n }\n } while (again || p !== end);\n\n return end;\n}\n\n// main ear slicing loop which triangulates a polygon (given as a linked list)\nfunction earcutLinked(ear, triangles, dim, minX, minY, invSize, pass) {\n if (!ear) return;\n\n // interlink polygon nodes in z-order\n if (!pass && invSize) indexCurve(ear, minX, minY, invSize);\n\n var stop = ear,\n prev, next;\n\n // iterate through ears, slicing them one by one\n while (ear.prev !== ear.next) {\n prev = ear.prev;\n next = ear.next;\n\n if (invSize ? isEarHashed(ear, minX, minY, invSize) : isEar(ear)) {\n // cut off the triangle\n triangles.push(prev.i / dim);\n triangles.push(ear.i / dim);\n triangles.push(next.i / dim);\n\n removeNode(ear);\n\n // skipping the next vertex leads to less sliver triangles\n ear = next.next;\n stop = next.next;\n\n continue;\n }\n\n ear = next;\n\n // if we looped through the whole remaining polygon and can't find any more ears\n if (ear === stop) {\n // try filtering points and slicing again\n if (!pass) {\n earcutLinked(filterPoints(ear), triangles, dim, minX, minY, invSize, 1);\n\n // if this didn't work, try curing all small self-intersections locally\n } else if (pass === 1) {\n ear = cureLocalIntersections(filterPoints(ear), triangles, dim);\n earcutLinked(ear, triangles, dim, minX, minY, invSize, 2);\n\n // as a last resort, try splitting the remaining polygon into two\n } else if (pass === 2) {\n splitEarcut(ear, triangles, dim, minX, minY, invSize);\n }\n\n break;\n }\n }\n}\n\n// check whether a polygon node forms a valid ear with adjacent nodes\nfunction isEar(ear) {\n var a = ear.prev,\n b = ear,\n c = ear.next;\n\n if (area(a, b, c) >= 0) return false; // reflex, can't be an ear\n\n // now make sure we don't have other points inside the potential ear\n var p = ear.next.next;\n\n while (p !== ear.prev) {\n if (pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.next;\n }\n\n return true;\n}\n\nfunction isEarHashed(ear, minX, minY, invSize) {\n var a = ear.prev,\n b = ear,\n c = ear.next;\n\n if (area(a, b, c) >= 0) return false; // reflex, can't be an ear\n\n // triangle bbox; min & max are calculated like this for speed\n var minTX = a.x < b.x ? (a.x < c.x ? a.x : c.x) : (b.x < c.x ? b.x : c.x),\n minTY = a.y < b.y ? (a.y < c.y ? a.y : c.y) : (b.y < c.y ? b.y : c.y),\n maxTX = a.x > b.x ? (a.x > c.x ? a.x : c.x) : (b.x > c.x ? b.x : c.x),\n maxTY = a.y > b.y ? (a.y > c.y ? a.y : c.y) : (b.y > c.y ? b.y : c.y);\n\n // z-order range for the current triangle bbox;\n var minZ = zOrder(minTX, minTY, minX, minY, invSize),\n maxZ = zOrder(maxTX, maxTY, minX, minY, invSize);\n\n var p = ear.prevZ,\n n = ear.nextZ;\n\n // look for points inside the triangle in both directions\n while (p && p.z >= minZ && n && n.z <= maxZ) {\n if (p !== ear.prev && p !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.prevZ;\n\n if (n !== ear.prev && n !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) &&\n area(n.prev, n, n.next) >= 0) return false;\n n = n.nextZ;\n }\n\n // look for remaining points in decreasing z-order\n while (p && p.z >= minZ) {\n if (p !== ear.prev && p !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, p.x, p.y) &&\n area(p.prev, p, p.next) >= 0) return false;\n p = p.prevZ;\n }\n\n // look for remaining points in increasing z-order\n while (n && n.z <= maxZ) {\n if (n !== ear.prev && n !== ear.next &&\n pointInTriangle(a.x, a.y, b.x, b.y, c.x, c.y, n.x, n.y) &&\n area(n.prev, n, n.next) >= 0) return false;\n n = n.nextZ;\n }\n\n return true;\n}\n\n// go through all polygon nodes and cure small local self-intersections\nfunction cureLocalIntersections(start, triangles, dim) {\n var p = start;\n do {\n var a = p.prev,\n b = p.next.next;\n\n if (!equals(a, b) && intersects(a, p, p.next, b) && locallyInside(a, b) && locallyInside(b, a)) {\n\n triangles.push(a.i / dim);\n triangles.push(p.i / dim);\n triangles.push(b.i / dim);\n\n // remove two nodes involved\n removeNode(p);\n removeNode(p.next);\n\n p = start = b;\n }\n p = p.next;\n } while (p !== start);\n\n return filterPoints(p);\n}\n\n// try splitting polygon into two and triangulate them independently\nfunction splitEarcut(start, triangles, dim, minX, minY, invSize) {\n // look for a valid diagonal that divides the polygon into two\n var a = start;\n do {\n var b = a.next.next;\n while (b !== a.prev) {\n if (a.i !== b.i && isValidDiagonal(a, b)) {\n // split the polygon in two by the diagonal\n var c = splitPolygon(a, b);\n\n // filter colinear points around the cuts\n a = filterPoints(a, a.next);\n c = filterPoints(c, c.next);\n\n // run earcut on each half\n earcutLinked(a, triangles, dim, minX, minY, invSize);\n earcutLinked(c, triangles, dim, minX, minY, invSize);\n return;\n }\n b = b.next;\n }\n a = a.next;\n } while (a !== start);\n}\n\n// link every hole into the outer loop, producing a single-ring polygon without holes\nfunction eliminateHoles(data, holeIndices, outerNode, dim) {\n var queue = [],\n i, len, start, end, list;\n\n for (i = 0, len = holeIndices.length; i < len; i++) {\n start = holeIndices[i] * dim;\n end = i < len - 1 ? holeIndices[i + 1] * dim : data.length;\n list = linkedList(data, start, end, dim, false);\n if (list === list.next) list.steiner = true;\n queue.push(getLeftmost(list));\n }\n\n queue.sort(compareX);\n\n // process holes from left to right\n for (i = 0; i < queue.length; i++) {\n eliminateHole(queue[i], outerNode);\n outerNode = filterPoints(outerNode, outerNode.next);\n }\n\n return outerNode;\n}\n\nfunction compareX(a, b) {\n return a.x - b.x;\n}\n\n// find a bridge between vertices that connects hole with an outer ring and and link it\nfunction eliminateHole(hole, outerNode) {\n outerNode = findHoleBridge(hole, outerNode);\n if (outerNode) {\n var b = splitPolygon(outerNode, hole);\n filterPoints(b, b.next);\n }\n}\n\n// David Eberly's algorithm for finding a bridge between hole and outer polygon\nfunction findHoleBridge(hole, outerNode) {\n var p = outerNode,\n hx = hole.x,\n hy = hole.y,\n qx = -Infinity,\n m;\n\n // find a segment intersected by a ray from the hole's leftmost point to the left;\n // segment's endpoint with lesser x will be potential connection point\n do {\n if (hy <= p.y && hy >= p.next.y && p.next.y !== p.y) {\n var x = p.x + (hy - p.y) * (p.next.x - p.x) / (p.next.y - p.y);\n if (x <= hx && x > qx) {\n qx = x;\n if (x === hx) {\n if (hy === p.y) return p;\n if (hy === p.next.y) return p.next;\n }\n m = p.x < p.next.x ? p : p.next;\n }\n }\n p = p.next;\n } while (p !== outerNode);\n\n if (!m) return null;\n\n if (hx === qx) return m; // hole touches outer segment; pick leftmost endpoint\n\n // look for points inside the triangle of hole point, segment intersection and endpoint;\n // if there are no points found, we have a valid connection;\n // otherwise choose the point of the minimum angle with the ray as connection point\n\n var stop = m,\n mx = m.x,\n my = m.y,\n tanMin = Infinity,\n tan;\n\n p = m;\n\n do {\n if (hx >= p.x && p.x >= mx && hx !== p.x &&\n pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p.x, p.y)) {\n\n tan = Math.abs(hy - p.y) / (hx - p.x); // tangential\n\n if (locallyInside(p, hole) &&\n (tan < tanMin || (tan === tanMin && (p.x > m.x || (p.x === m.x && sectorContainsSector(m, p)))))) {\n m = p;\n tanMin = tan;\n }\n }\n\n p = p.next;\n } while (p !== stop);\n\n return m;\n}\n\n// whether sector in vertex m contains sector in vertex p in the same coordinates\nfunction sectorContainsSector(m, p) {\n return area(m.prev, m, p.prev) < 0 && area(p.next, m, m.next) < 0;\n}\n\n// interlink polygon nodes in z-order\nfunction indexCurve(start, minX, minY, invSize) {\n var p = start;\n do {\n if (p.z === null) p.z = zOrder(p.x, p.y, minX, minY, invSize);\n p.prevZ = p.prev;\n p.nextZ = p.next;\n p = p.next;\n } while (p !== start);\n\n p.prevZ.nextZ = null;\n p.prevZ = null;\n\n sortLinked(p);\n}\n\n// Simon Tatham's linked list merge sort algorithm\n// http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html\nfunction sortLinked(list) {\n var i, p, q, e, tail, numMerges, pSize, qSize,\n inSize = 1;\n\n do {\n p = list;\n list = null;\n tail = null;\n numMerges = 0;\n\n while (p) {\n numMerges++;\n q = p;\n pSize = 0;\n for (i = 0; i < inSize; i++) {\n pSize++;\n q = q.nextZ;\n if (!q) break;\n }\n qSize = inSize;\n\n while (pSize > 0 || (qSize > 0 && q)) {\n\n if (pSize !== 0 && (qSize === 0 || !q || p.z <= q.z)) {\n e = p;\n p = p.nextZ;\n pSize--;\n } else {\n e = q;\n q = q.nextZ;\n qSize--;\n }\n\n if (tail) tail.nextZ = e;\n else list = e;\n\n e.prevZ = tail;\n tail = e;\n }\n\n p = q;\n }\n\n tail.nextZ = null;\n inSize *= 2;\n\n } while (numMerges > 1);\n\n return list;\n}\n\n// z-order of a point given coords and inverse of the longer side of data bbox\nfunction zOrder(x, y, minX, minY, invSize) {\n // coords are transformed into non-negative 15-bit integer range\n x = 32767 * (x - minX) * invSize;\n y = 32767 * (y - minY) * invSize;\n\n x = (x | (x << 8)) & 0x00FF00FF;\n x = (x | (x << 4)) & 0x0F0F0F0F;\n x = (x | (x << 2)) & 0x33333333;\n x = (x | (x << 1)) & 0x55555555;\n\n y = (y | (y << 8)) & 0x00FF00FF;\n y = (y | (y << 4)) & 0x0F0F0F0F;\n y = (y | (y << 2)) & 0x33333333;\n y = (y | (y << 1)) & 0x55555555;\n\n return x | (y << 1);\n}\n\n// find the leftmost node of a polygon ring\nfunction getLeftmost(start) {\n var p = start,\n leftmost = start;\n do {\n if (p.x < leftmost.x || (p.x === leftmost.x && p.y < leftmost.y)) leftmost = p;\n p = p.next;\n } while (p !== start);\n\n return leftmost;\n}\n\n// check if a point lies within a convex triangle\nfunction pointInTriangle(ax, ay, bx, by, cx, cy, px, py) {\n return (cx - px) * (ay - py) - (ax - px) * (cy - py) >= 0 &&\n (ax - px) * (by - py) - (bx - px) * (ay - py) >= 0 &&\n (bx - px) * (cy - py) - (cx - px) * (by - py) >= 0;\n}\n\n// check if a diagonal between two polygon nodes is valid (lies in polygon interior)\nfunction isValidDiagonal(a, b) {\n return a.next.i !== b.i && a.prev.i !== b.i && !intersectsPolygon(a, b) && // dones't intersect other edges\n (locallyInside(a, b) && locallyInside(b, a) && middleInside(a, b) && // locally visible\n (area(a.prev, a, b.prev) || area(a, b.prev, b)) || // does not create opposite-facing sectors\n equals(a, b) && area(a.prev, a, a.next) > 0 && area(b.prev, b, b.next) > 0); // special zero-length case\n}\n\n// signed area of a triangle\nfunction area(p, q, r) {\n return (q.y - p.y) * (r.x - q.x) - (q.x - p.x) * (r.y - q.y);\n}\n\n// check if two points are equal\nfunction equals(p1, p2) {\n return p1.x === p2.x && p1.y === p2.y;\n}\n\n// check if two segments intersect\nfunction intersects(p1, q1, p2, q2) {\n var o1 = sign(area(p1, q1, p2));\n var o2 = sign(area(p1, q1, q2));\n var o3 = sign(area(p2, q2, p1));\n var o4 = sign(area(p2, q2, q1));\n\n if (o1 !== o2 && o3 !== o4) return true; // general case\n\n if (o1 === 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p1q1\n if (o2 === 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p1q1\n if (o3 === 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p2q2\n if (o4 === 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p2q2\n\n return false;\n}\n\n// for collinear points p, q, r, check if point q lies on segment pr\nfunction onSegment(p, q, r) {\n return q.x <= Math.max(p.x, r.x) && q.x >= Math.min(p.x, r.x) && q.y <= Math.max(p.y, r.y) && q.y >= Math.min(p.y, r.y);\n}\n\nfunction sign(num) {\n return num > 0 ? 1 : num < 0 ? -1 : 0;\n}\n\n// check if a polygon diagonal intersects any polygon segments\nfunction intersectsPolygon(a, b) {\n var p = a;\n do {\n if (p.i !== a.i && p.next.i !== a.i && p.i !== b.i && p.next.i !== b.i &&\n intersects(p, p.next, a, b)) return true;\n p = p.next;\n } while (p !== a);\n\n return false;\n}\n\n// check if a polygon diagonal is locally inside the polygon\nfunction locallyInside(a, b) {\n return area(a.prev, a, a.next) < 0 ?\n area(a, b, a.next) >= 0 && area(a, a.prev, b) >= 0 :\n area(a, b, a.prev) < 0 || area(a, a.next, b) < 0;\n}\n\n// check if the middle point of a polygon diagonal is inside the polygon\nfunction middleInside(a, b) {\n var p = a,\n inside = false,\n px = (a.x + b.x) / 2,\n py = (a.y + b.y) / 2;\n do {\n if (((p.y > py) !== (p.next.y > py)) && p.next.y !== p.y &&\n (px < (p.next.x - p.x) * (py - p.y) / (p.next.y - p.y) + p.x))\n inside = !inside;\n p = p.next;\n } while (p !== a);\n\n return inside;\n}\n\n// link two polygon vertices with a bridge; if the vertices belong to the same ring, it splits polygon into two;\n// if one belongs to the outer ring and another to a hole, it merges it into a single ring\nfunction splitPolygon(a, b) {\n var a2 = new Node(a.i, a.x, a.y),\n b2 = new Node(b.i, b.x, b.y),\n an = a.next,\n bp = b.prev;\n\n a.next = b;\n b.prev = a;\n\n a2.next = an;\n an.prev = a2;\n\n b2.next = a2;\n a2.prev = b2;\n\n bp.next = b2;\n b2.prev = bp;\n\n return b2;\n}\n\n// create a node and optionally link it with previous one (in a circular doubly linked list)\nfunction insertNode(i, x, y, last) {\n var p = new Node(i, x, y);\n\n if (!last) {\n p.prev = p;\n p.next = p;\n\n } else {\n p.next = last.next;\n p.prev = last;\n last.next.prev = p;\n last.next = p;\n }\n return p;\n}\n\nfunction removeNode(p) {\n p.next.prev = p.prev;\n p.prev.next = p.next;\n\n if (p.prevZ) p.prevZ.nextZ = p.nextZ;\n if (p.nextZ) p.nextZ.prevZ = p.prevZ;\n}\n\nfunction Node(i, x, y) {\n // vertex index in coordinates array\n this.i = i;\n\n // vertex coordinates\n this.x = x;\n this.y = y;\n\n // previous and next vertex nodes in a polygon ring\n this.prev = null;\n this.next = null;\n\n // z-order curve value\n this.z = null;\n\n // previous and next nodes in z-order\n this.prevZ = null;\n this.nextZ = null;\n\n // indicates whether this is a steiner point\n this.steiner = false;\n}\n\n// return a percentage difference between the polygon area and its triangulation area;\n// used to verify correctness of triangulation\nearcut.deviation = function (data, holeIndices, dim, triangles) {\n var hasHoles = holeIndices && holeIndices.length;\n var outerLen = hasHoles ? holeIndices[0] * dim : data.length;\n\n var polygonArea = Math.abs(signedArea(data, 0, outerLen, dim));\n if (hasHoles) {\n for (var i = 0, len = holeIndices.length; i < len; i++) {\n var start = holeIndices[i] * dim;\n var end = i < len - 1 ? holeIndices[i + 1] * dim : data.length;\n polygonArea -= Math.abs(signedArea(data, start, end, dim));\n }\n }\n\n var trianglesArea = 0;\n for (i = 0; i < triangles.length; i += 3) {\n var a = triangles[i] * dim;\n var b = triangles[i + 1] * dim;\n var c = triangles[i + 2] * dim;\n trianglesArea += Math.abs(\n (data[a] - data[c]) * (data[b + 1] - data[a + 1]) -\n (data[a] - data[b]) * (data[c + 1] - data[a + 1]));\n }\n\n return polygonArea === 0 && trianglesArea === 0 ? 0 :\n Math.abs((trianglesArea - polygonArea) / polygonArea);\n};\n\nfunction signedArea(data, start, end, dim) {\n var sum = 0;\n for (var i = start, j = end - dim; i < end; i += dim) {\n sum += (data[j] - data[i]) * (data[i + 1] + data[j + 1]);\n j = i;\n }\n return sum;\n}\n\n// turn a polygon in a multi-dimensional array form (e.g. as in GeoJSON) into a form Earcut accepts\nearcut.flatten = function (data) {\n var dim = data[0][0].length,\n result = {vertices: [], holes: [], dimensions: dim},\n holeIndex = 0;\n\n for (var i = 0; i < data.length; i++) {\n for (var j = 0; j < data[i].length; j++) {\n for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]);\n }\n if (i > 0) {\n holeIndex += data[i - 1].length;\n result.holes.push(holeIndex);\n }\n }\n return result;\n};\n","/*! https://mths.be/punycode v1.4.1 by @mathias */\n\n\n/** Highest positive signed 32-bit float value */\nvar maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1\n\n/** Bootstring parameters */\nvar base = 36;\nvar tMin = 1;\nvar tMax = 26;\nvar skew = 38;\nvar damp = 700;\nvar initialBias = 72;\nvar initialN = 128; // 0x80\nvar delimiter = '-'; // '\\x2D'\n\n/** Regular expressions */\nvar regexPunycode = /^xn--/;\nvar regexNonASCII = /[^\\x20-\\x7E]/; // unprintable ASCII chars + non-ASCII chars\nvar regexSeparators = /[\\x2E\\u3002\\uFF0E\\uFF61]/g; // RFC 3490 separators\n\n/** Error messages */\nvar errors = {\n 'overflow': 'Overflow: input needs wider integers to process',\n 'not-basic': 'Illegal input >= 0x80 (not a basic code point)',\n 'invalid-input': 'Invalid input'\n};\n\n/** Convenience shortcuts */\nvar baseMinusTMin = base - tMin;\nvar floor = Math.floor;\nvar stringFromCharCode = String.fromCharCode;\n\n/*--------------------------------------------------------------------------*/\n\n/**\n * A generic error utility function.\n * @private\n * @param {String} type The error type.\n * @returns {Error} Throws a `RangeError` with the applicable error message.\n */\nfunction error(type) {\n throw new RangeError(errors[type]);\n}\n\n/**\n * A generic `Array#map` utility function.\n * @private\n * @param {Array} array The array to iterate over.\n * @param {Function} callback The function that gets called for every array\n * item.\n * @returns {Array} A new array of values returned by the callback function.\n */\nfunction map(array, fn) {\n var length = array.length;\n var result = [];\n while (length--) {\n result[length] = fn(array[length]);\n }\n return result;\n}\n\n/**\n * A simple `Array#map`-like wrapper to work with domain name strings or email\n * addresses.\n * @private\n * @param {String} domain The domain name or email address.\n * @param {Function} callback The function that gets called for every\n * character.\n * @returns {Array} A new string of characters returned by the callback\n * function.\n */\nfunction mapDomain(string, fn) {\n var parts = string.split('@');\n var result = '';\n if (parts.length > 1) {\n // In email addresses, only the domain name should be punycoded. Leave\n // the local part (i.e. everything up to `@`) intact.\n result = parts[0] + '@';\n string = parts[1];\n }\n // Avoid `split(regex)` for IE8 compatibility. See #17.\n string = string.replace(regexSeparators, '\\x2E');\n var labels = string.split('.');\n var encoded = map(labels, fn).join('.');\n return result + encoded;\n}\n\n/**\n * Creates an array containing the numeric code points of each Unicode\n * character in the string. While JavaScript uses UCS-2 internally,\n * this function will convert a pair of surrogate halves (each of which\n * UCS-2 exposes as separate characters) into a single code point,\n * matching UTF-16.\n * @see `punycode.ucs2.encode`\n * @see \n * @memberOf punycode.ucs2\n * @name decode\n * @param {String} string The Unicode input string (UCS-2).\n * @returns {Array} The new array of code points.\n */\nfunction ucs2decode(string) {\n var output = [],\n counter = 0,\n length = string.length,\n value,\n extra;\n while (counter < length) {\n value = string.charCodeAt(counter++);\n if (value >= 0xD800 && value <= 0xDBFF && counter < length) {\n // high surrogate, and there is a next character\n extra = string.charCodeAt(counter++);\n if ((extra & 0xFC00) == 0xDC00) { // low surrogate\n output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000);\n } else {\n // unmatched surrogate; only append this code unit, in case the next\n // code unit is the high surrogate of a surrogate pair\n output.push(value);\n counter--;\n }\n } else {\n output.push(value);\n }\n }\n return output;\n}\n\n/**\n * Creates a string based on an array of numeric code points.\n * @see `punycode.ucs2.decode`\n * @memberOf punycode.ucs2\n * @name encode\n * @param {Array} codePoints The array of numeric code points.\n * @returns {String} The new Unicode string (UCS-2).\n */\nfunction ucs2encode(array) {\n return map(array, function(value) {\n var output = '';\n if (value > 0xFFFF) {\n value -= 0x10000;\n output += stringFromCharCode(value >>> 10 & 0x3FF | 0xD800);\n value = 0xDC00 | value & 0x3FF;\n }\n output += stringFromCharCode(value);\n return output;\n }).join('');\n}\n\n/**\n * Converts a basic code point into a digit/integer.\n * @see `digitToBasic()`\n * @private\n * @param {Number} codePoint The basic numeric code point value.\n * @returns {Number} The numeric value of a basic code point (for use in\n * representing integers) in the range `0` to `base - 1`, or `base` if\n * the code point does not represent a value.\n */\nfunction basicToDigit(codePoint) {\n if (codePoint - 48 < 10) {\n return codePoint - 22;\n }\n if (codePoint - 65 < 26) {\n return codePoint - 65;\n }\n if (codePoint - 97 < 26) {\n return codePoint - 97;\n }\n return base;\n}\n\n/**\n * Converts a digit/integer into a basic code point.\n * @see `basicToDigit()`\n * @private\n * @param {Number} digit The numeric value of a basic code point.\n * @returns {Number} The basic code point whose value (when used for\n * representing integers) is `digit`, which needs to be in the range\n * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is\n * used; else, the lowercase form is used. The behavior is undefined\n * if `flag` is non-zero and `digit` has no uppercase form.\n */\nfunction digitToBasic(digit, flag) {\n // 0..25 map to ASCII a..z or A..Z\n // 26..35 map to ASCII 0..9\n return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5);\n}\n\n/**\n * Bias adaptation function as per section 3.4 of RFC 3492.\n * https://tools.ietf.org/html/rfc3492#section-3.4\n * @private\n */\nfunction adapt(delta, numPoints, firstTime) {\n var k = 0;\n delta = firstTime ? floor(delta / damp) : delta >> 1;\n delta += floor(delta / numPoints);\n for ( /* no initialization */ ; delta > baseMinusTMin * tMax >> 1; k += base) {\n delta = floor(delta / baseMinusTMin);\n }\n return floor(k + (baseMinusTMin + 1) * delta / (delta + skew));\n}\n\n/**\n * Converts a Punycode string of ASCII-only symbols to a string of Unicode\n * symbols.\n * @memberOf punycode\n * @param {String} input The Punycode string of ASCII-only symbols.\n * @returns {String} The resulting string of Unicode symbols.\n */\nexport function decode(input) {\n // Don't use UCS-2\n var output = [],\n inputLength = input.length,\n out,\n i = 0,\n n = initialN,\n bias = initialBias,\n basic,\n j,\n index,\n oldi,\n w,\n k,\n digit,\n t,\n /** Cached calculation results */\n baseMinusT;\n\n // Handle the basic code points: let `basic` be the number of input code\n // points before the last delimiter, or `0` if there is none, then copy\n // the first basic code points to the output.\n\n basic = input.lastIndexOf(delimiter);\n if (basic < 0) {\n basic = 0;\n }\n\n for (j = 0; j < basic; ++j) {\n // if it's not a basic code point\n if (input.charCodeAt(j) >= 0x80) {\n error('not-basic');\n }\n output.push(input.charCodeAt(j));\n }\n\n // Main decoding loop: start just after the last delimiter if any basic code\n // points were copied; start at the beginning otherwise.\n\n for (index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */ ) {\n\n // `index` is the index of the next character to be consumed.\n // Decode a generalized variable-length integer into `delta`,\n // which gets added to `i`. The overflow checking is easier\n // if we increase `i` as we go, then subtract off its starting\n // value at the end to obtain `delta`.\n for (oldi = i, w = 1, k = base; /* no condition */ ; k += base) {\n\n if (index >= inputLength) {\n error('invalid-input');\n }\n\n digit = basicToDigit(input.charCodeAt(index++));\n\n if (digit >= base || digit > floor((maxInt - i) / w)) {\n error('overflow');\n }\n\n i += digit * w;\n t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n\n if (digit < t) {\n break;\n }\n\n baseMinusT = base - t;\n if (w > floor(maxInt / baseMinusT)) {\n error('overflow');\n }\n\n w *= baseMinusT;\n\n }\n\n out = output.length + 1;\n bias = adapt(i - oldi, out, oldi == 0);\n\n // `i` was supposed to wrap around from `out` to `0`,\n // incrementing `n` each time, so we'll fix that now:\n if (floor(i / out) > maxInt - n) {\n error('overflow');\n }\n\n n += floor(i / out);\n i %= out;\n\n // Insert `n` at position `i` of the output\n output.splice(i++, 0, n);\n\n }\n\n return ucs2encode(output);\n}\n\n/**\n * Converts a string of Unicode symbols (e.g. a domain name label) to a\n * Punycode string of ASCII-only symbols.\n * @memberOf punycode\n * @param {String} input The string of Unicode symbols.\n * @returns {String} The resulting Punycode string of ASCII-only symbols.\n */\nexport function encode(input) {\n var n,\n delta,\n handledCPCount,\n basicLength,\n bias,\n j,\n m,\n q,\n k,\n t,\n currentValue,\n output = [],\n /** `inputLength` will hold the number of code points in `input`. */\n inputLength,\n /** Cached calculation results */\n handledCPCountPlusOne,\n baseMinusT,\n qMinusT;\n\n // Convert the input in UCS-2 to Unicode\n input = ucs2decode(input);\n\n // Cache the length\n inputLength = input.length;\n\n // Initialize the state\n n = initialN;\n delta = 0;\n bias = initialBias;\n\n // Handle the basic code points\n for (j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n if (currentValue < 0x80) {\n output.push(stringFromCharCode(currentValue));\n }\n }\n\n handledCPCount = basicLength = output.length;\n\n // `handledCPCount` is the number of code points that have been handled;\n // `basicLength` is the number of basic code points.\n\n // Finish the basic string - if it is not empty - with a delimiter\n if (basicLength) {\n output.push(delimiter);\n }\n\n // Main encoding loop:\n while (handledCPCount < inputLength) {\n\n // All non-basic code points < n have been handled already. Find the next\n // larger one:\n for (m = maxInt, j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n if (currentValue >= n && currentValue < m) {\n m = currentValue;\n }\n }\n\n // Increase `delta` enough to advance the decoder's state to ,\n // but guard against overflow\n handledCPCountPlusOne = handledCPCount + 1;\n if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) {\n error('overflow');\n }\n\n delta += (m - n) * handledCPCountPlusOne;\n n = m;\n\n for (j = 0; j < inputLength; ++j) {\n currentValue = input[j];\n\n if (currentValue < n && ++delta > maxInt) {\n error('overflow');\n }\n\n if (currentValue == n) {\n // Represent delta as a generalized variable-length integer\n for (q = delta, k = base; /* no condition */ ; k += base) {\n t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n if (q < t) {\n break;\n }\n qMinusT = q - t;\n baseMinusT = base - t;\n output.push(\n stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0))\n );\n q = floor(qMinusT / baseMinusT);\n }\n\n output.push(stringFromCharCode(digitToBasic(q, 0)));\n bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength);\n delta = 0;\n ++handledCPCount;\n }\n }\n\n ++delta;\n ++n;\n\n }\n return output.join('');\n}\n\n/**\n * Converts a Punycode string representing a domain name or an email address\n * to Unicode. Only the Punycoded parts of the input will be converted, i.e.\n * it doesn't matter if you call it on a string that has already been\n * converted to Unicode.\n * @memberOf punycode\n * @param {String} input The Punycoded domain name or email address to\n * convert to Unicode.\n * @returns {String} The Unicode representation of the given Punycode\n * string.\n */\nexport function toUnicode(input) {\n return mapDomain(input, function(string) {\n return regexPunycode.test(string) ?\n decode(string.slice(4).toLowerCase()) :\n string;\n });\n}\n\n/**\n * Converts a Unicode string representing a domain name or an email address to\n * Punycode. Only the non-ASCII parts of the domain name will be converted,\n * i.e. it doesn't matter if you call it with a domain that's already in\n * ASCII.\n * @memberOf punycode\n * @param {String} input The domain name or email address to convert, as a\n * Unicode string.\n * @returns {String} The Punycode representation of the given domain name or\n * email address.\n */\nexport function toASCII(input) {\n return mapDomain(input, function(string) {\n return regexNonASCII.test(string) ?\n 'xn--' + encode(string) :\n string;\n });\n}\nexport var version = '1.4.1';\n/**\n * An object of methods to convert from JavaScript's internal character\n * representation (UCS-2) to Unicode code points, and back.\n * @see \n * @memberOf punycode\n * @type Object\n */\n\nexport var ucs2 = {\n decode: ucs2decode,\n encode: ucs2encode\n};\nexport default {\n version: version,\n ucs2: ucs2,\n toASCII: toASCII,\n toUnicode: toUnicode,\n encode: encode,\n decode: decode\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\nimport process from 'process';\nvar formatRegExp = /%[sdj%]/g;\nexport function format(f) {\n if (!isString(f)) {\n var objects = [];\n for (var i = 0; i < arguments.length; i++) {\n objects.push(inspect(arguments[i]));\n }\n return objects.join(' ');\n }\n\n var i = 1;\n var args = arguments;\n var len = args.length;\n var str = String(f).replace(formatRegExp, function(x) {\n if (x === '%%') return '%';\n if (i >= len) return x;\n switch (x) {\n case '%s': return String(args[i++]);\n case '%d': return Number(args[i++]);\n case '%j':\n try {\n return JSON.stringify(args[i++]);\n } catch (_) {\n return '[Circular]';\n }\n default:\n return x;\n }\n });\n for (var x = args[i]; i < len; x = args[++i]) {\n if (isNull(x) || !isObject(x)) {\n str += ' ' + x;\n } else {\n str += ' ' + inspect(x);\n }\n }\n return str;\n};\n\n\n// Mark that a method should not be used.\n// Returns a modified function which warns once by default.\n// If --no-deprecation is set, then it is a no-op.\nexport function deprecate(fn, msg) {\n // Allow for deprecating things in the process of starting up.\n if (isUndefined(global.process)) {\n return function() {\n return deprecate(fn, msg).apply(this, arguments);\n };\n }\n\n if (process.noDeprecation === true) {\n return fn;\n }\n\n var warned = false;\n function deprecated() {\n if (!warned) {\n if (process.throwDeprecation) {\n throw new Error(msg);\n } else if (process.traceDeprecation) {\n console.trace(msg);\n } else {\n console.error(msg);\n }\n warned = true;\n }\n return fn.apply(this, arguments);\n }\n\n return deprecated;\n};\n\n\nvar debugs = {};\nvar debugEnviron;\nexport function debuglog(set) {\n if (isUndefined(debugEnviron))\n debugEnviron = process.env.NODE_DEBUG || '';\n set = set.toUpperCase();\n if (!debugs[set]) {\n if (new RegExp('\\\\b' + set + '\\\\b', 'i').test(debugEnviron)) {\n var pid = 0;\n debugs[set] = function() {\n var msg = format.apply(null, arguments);\n console.error('%s %d: %s', set, pid, msg);\n };\n } else {\n debugs[set] = function() {};\n }\n }\n return debugs[set];\n};\n\n\n/**\n * Echos the value of a value. Trys to print the value out\n * in the best way possible given the different types.\n *\n * @param {Object} obj The object to print out.\n * @param {Object} opts Optional options object that alters the output.\n */\n/* legacy: obj, showHidden, depth, colors*/\nexport function inspect(obj, opts) {\n // default options\n var ctx = {\n seen: [],\n stylize: stylizeNoColor\n };\n // legacy...\n if (arguments.length >= 3) ctx.depth = arguments[2];\n if (arguments.length >= 4) ctx.colors = arguments[3];\n if (isBoolean(opts)) {\n // legacy...\n ctx.showHidden = opts;\n } else if (opts) {\n // got an \"options\" object\n _extend(ctx, opts);\n }\n // set default options\n if (isUndefined(ctx.showHidden)) ctx.showHidden = false;\n if (isUndefined(ctx.depth)) ctx.depth = 2;\n if (isUndefined(ctx.colors)) ctx.colors = false;\n if (isUndefined(ctx.customInspect)) ctx.customInspect = true;\n if (ctx.colors) ctx.stylize = stylizeWithColor;\n return formatValue(ctx, obj, ctx.depth);\n}\n\n// http://en.wikipedia.org/wiki/ANSI_escape_code#graphics\ninspect.colors = {\n 'bold' : [1, 22],\n 'italic' : [3, 23],\n 'underline' : [4, 24],\n 'inverse' : [7, 27],\n 'white' : [37, 39],\n 'grey' : [90, 39],\n 'black' : [30, 39],\n 'blue' : [34, 39],\n 'cyan' : [36, 39],\n 'green' : [32, 39],\n 'magenta' : [35, 39],\n 'red' : [31, 39],\n 'yellow' : [33, 39]\n};\n\n// Don't use 'blue' not visible on cmd.exe\ninspect.styles = {\n 'special': 'cyan',\n 'number': 'yellow',\n 'boolean': 'yellow',\n 'undefined': 'grey',\n 'null': 'bold',\n 'string': 'green',\n 'date': 'magenta',\n // \"name\": intentionally not styling\n 'regexp': 'red'\n};\n\n\nfunction stylizeWithColor(str, styleType) {\n var style = inspect.styles[styleType];\n\n if (style) {\n return '\\u001b[' + inspect.colors[style][0] + 'm' + str +\n '\\u001b[' + inspect.colors[style][1] + 'm';\n } else {\n return str;\n }\n}\n\n\nfunction stylizeNoColor(str, styleType) {\n return str;\n}\n\n\nfunction arrayToHash(array) {\n var hash = {};\n\n array.forEach(function(val, idx) {\n hash[val] = true;\n });\n\n return hash;\n}\n\n\nfunction formatValue(ctx, value, recurseTimes) {\n // Provide a hook for user-specified inspect functions.\n // Check that value is an object with an inspect function on it\n if (ctx.customInspect &&\n value &&\n isFunction(value.inspect) &&\n // Filter out the util module, it's inspect function is special\n value.inspect !== inspect &&\n // Also filter out any prototype objects using the circular check.\n !(value.constructor && value.constructor.prototype === value)) {\n var ret = value.inspect(recurseTimes, ctx);\n if (!isString(ret)) {\n ret = formatValue(ctx, ret, recurseTimes);\n }\n return ret;\n }\n\n // Primitive types cannot have properties\n var primitive = formatPrimitive(ctx, value);\n if (primitive) {\n return primitive;\n }\n\n // Look up the keys of the object.\n var keys = Object.keys(value);\n var visibleKeys = arrayToHash(keys);\n\n if (ctx.showHidden) {\n keys = Object.getOwnPropertyNames(value);\n }\n\n // IE doesn't make error fields non-enumerable\n // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx\n if (isError(value)\n && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) {\n return formatError(value);\n }\n\n // Some type of object without properties can be shortcutted.\n if (keys.length === 0) {\n if (isFunction(value)) {\n var name = value.name ? ': ' + value.name : '';\n return ctx.stylize('[Function' + name + ']', 'special');\n }\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n }\n if (isDate(value)) {\n return ctx.stylize(Date.prototype.toString.call(value), 'date');\n }\n if (isError(value)) {\n return formatError(value);\n }\n }\n\n var base = '', array = false, braces = ['{', '}'];\n\n // Make Array say that they are Array\n if (isArray(value)) {\n array = true;\n braces = ['[', ']'];\n }\n\n // Make functions say that they are functions\n if (isFunction(value)) {\n var n = value.name ? ': ' + value.name : '';\n base = ' [Function' + n + ']';\n }\n\n // Make RegExps say that they are RegExps\n if (isRegExp(value)) {\n base = ' ' + RegExp.prototype.toString.call(value);\n }\n\n // Make dates with properties first say the date\n if (isDate(value)) {\n base = ' ' + Date.prototype.toUTCString.call(value);\n }\n\n // Make error with message first say the error\n if (isError(value)) {\n base = ' ' + formatError(value);\n }\n\n if (keys.length === 0 && (!array || value.length == 0)) {\n return braces[0] + base + braces[1];\n }\n\n if (recurseTimes < 0) {\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n } else {\n return ctx.stylize('[Object]', 'special');\n }\n }\n\n ctx.seen.push(value);\n\n var output;\n if (array) {\n output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);\n } else {\n output = keys.map(function(key) {\n return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array);\n });\n }\n\n ctx.seen.pop();\n\n return reduceToSingleString(output, base, braces);\n}\n\n\nfunction formatPrimitive(ctx, value) {\n if (isUndefined(value))\n return ctx.stylize('undefined', 'undefined');\n if (isString(value)) {\n var simple = '\\'' + JSON.stringify(value).replace(/^\"|\"$/g, '')\n .replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"') + '\\'';\n return ctx.stylize(simple, 'string');\n }\n if (isNumber(value))\n return ctx.stylize('' + value, 'number');\n if (isBoolean(value))\n return ctx.stylize('' + value, 'boolean');\n // For some reason typeof null is \"object\", so special case here.\n if (isNull(value))\n return ctx.stylize('null', 'null');\n}\n\n\nfunction formatError(value) {\n return '[' + Error.prototype.toString.call(value) + ']';\n}\n\n\nfunction formatArray(ctx, value, recurseTimes, visibleKeys, keys) {\n var output = [];\n for (var i = 0, l = value.length; i < l; ++i) {\n if (hasOwnProperty(value, String(i))) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n String(i), true));\n } else {\n output.push('');\n }\n }\n keys.forEach(function(key) {\n if (!key.match(/^\\d+$/)) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n key, true));\n }\n });\n return output;\n}\n\n\nfunction formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {\n var name, str, desc;\n desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] };\n if (desc.get) {\n if (desc.set) {\n str = ctx.stylize('[Getter/Setter]', 'special');\n } else {\n str = ctx.stylize('[Getter]', 'special');\n }\n } else {\n if (desc.set) {\n str = ctx.stylize('[Setter]', 'special');\n }\n }\n if (!hasOwnProperty(visibleKeys, key)) {\n name = '[' + key + ']';\n }\n if (!str) {\n if (ctx.seen.indexOf(desc.value) < 0) {\n if (isNull(recurseTimes)) {\n str = formatValue(ctx, desc.value, null);\n } else {\n str = formatValue(ctx, desc.value, recurseTimes - 1);\n }\n if (str.indexOf('\\n') > -1) {\n if (array) {\n str = str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n').substr(2);\n } else {\n str = '\\n' + str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n');\n }\n }\n } else {\n str = ctx.stylize('[Circular]', 'special');\n }\n }\n if (isUndefined(name)) {\n if (array && key.match(/^\\d+$/)) {\n return str;\n }\n name = JSON.stringify('' + key);\n if (name.match(/^\"([a-zA-Z_][a-zA-Z_0-9]*)\"$/)) {\n name = name.substr(1, name.length - 2);\n name = ctx.stylize(name, 'name');\n } else {\n name = name.replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"')\n .replace(/(^\"|\"$)/g, \"'\");\n name = ctx.stylize(name, 'string');\n }\n }\n\n return name + ': ' + str;\n}\n\n\nfunction reduceToSingleString(output, base, braces) {\n var numLinesEst = 0;\n var length = output.reduce(function(prev, cur) {\n numLinesEst++;\n if (cur.indexOf('\\n') >= 0) numLinesEst++;\n return prev + cur.replace(/\\u001b\\[\\d\\d?m/g, '').length + 1;\n }, 0);\n\n if (length > 60) {\n return braces[0] +\n (base === '' ? '' : base + '\\n ') +\n ' ' +\n output.join(',\\n ') +\n ' ' +\n braces[1];\n }\n\n return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];\n}\n\n\n// NOTE: These type checking functions intentionally don't use `instanceof`\n// because it is fragile and can be easily faked with `Object.create()`.\nexport function isArray(ar) {\n return Array.isArray(ar);\n}\n\nexport function isBoolean(arg) {\n return typeof arg === 'boolean';\n}\n\nexport function isNull(arg) {\n return arg === null;\n}\n\nexport function isNullOrUndefined(arg) {\n return arg == null;\n}\n\nexport function isNumber(arg) {\n return typeof arg === 'number';\n}\n\nexport function isString(arg) {\n return typeof arg === 'string';\n}\n\nexport function isSymbol(arg) {\n return typeof arg === 'symbol';\n}\n\nexport function isUndefined(arg) {\n return arg === void 0;\n}\n\nexport function isRegExp(re) {\n return isObject(re) && objectToString(re) === '[object RegExp]';\n}\n\nexport function isObject(arg) {\n return typeof arg === 'object' && arg !== null;\n}\n\nexport function isDate(d) {\n return isObject(d) && objectToString(d) === '[object Date]';\n}\n\nexport function isError(e) {\n return isObject(e) &&\n (objectToString(e) === '[object Error]' || e instanceof Error);\n}\n\nexport function isFunction(arg) {\n return typeof arg === 'function';\n}\n\nexport function isPrimitive(arg) {\n return arg === null ||\n typeof arg === 'boolean' ||\n typeof arg === 'number' ||\n typeof arg === 'string' ||\n typeof arg === 'symbol' || // ES6 symbol\n typeof arg === 'undefined';\n}\n\nexport function isBuffer(maybeBuf) {\n return Buffer.isBuffer(maybeBuf);\n}\n\nfunction objectToString(o) {\n return Object.prototype.toString.call(o);\n}\n\n\nfunction pad(n) {\n return n < 10 ? '0' + n.toString(10) : n.toString(10);\n}\n\n\nvar months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep',\n 'Oct', 'Nov', 'Dec'];\n\n// 26 Feb 16:19:34\nfunction timestamp() {\n var d = new Date();\n var time = [pad(d.getHours()),\n pad(d.getMinutes()),\n pad(d.getSeconds())].join(':');\n return [d.getDate(), months[d.getMonth()], time].join(' ');\n}\n\n\n// log is just a thin wrapper to console.log that prepends a timestamp\nexport function log() {\n console.log('%s - %s', timestamp(), format.apply(null, arguments));\n}\n\n\n/**\n * Inherit the prototype methods from one constructor into another.\n *\n * The Function.prototype.inherits from lang.js rewritten as a standalone\n * function (not on Function.prototype). NOTE: If this file is to be loaded\n * during bootstrapping this function needs to be rewritten using some native\n * functions as prototype setup using normal JavaScript does not work as\n * expected during bootstrapping (see mirror.js in r114903).\n *\n * @param {function} ctor Constructor function which needs to inherit the\n * prototype.\n * @param {function} superCtor Constructor function to inherit prototype from.\n */\nimport inherits from './inherits';\nexport {inherits}\n\nexport function _extend(origin, add) {\n // Don't do anything if add isn't an object\n if (!add || !isObject(add)) return origin;\n\n var keys = Object.keys(add);\n var i = keys.length;\n while (i--) {\n origin[keys[i]] = add[keys[i]];\n }\n return origin;\n};\n\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\n\nexport default {\n inherits: inherits,\n _extend: _extend,\n log: log,\n isBuffer: isBuffer,\n isPrimitive: isPrimitive,\n isFunction: isFunction,\n isError: isError,\n isDate: isDate,\n isObject: isObject,\n isRegExp: isRegExp,\n isUndefined: isUndefined,\n isSymbol: isSymbol,\n isString: isString,\n isNumber: isNumber,\n isNullOrUndefined: isNullOrUndefined,\n isNull: isNull,\n isBoolean: isBoolean,\n isArray: isArray,\n inspect: inspect,\n deprecate: deprecate,\n format: format,\n debuglog: debuglog\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n// If obj.hasOwnProperty has been overridden, then calling\n// obj.hasOwnProperty(prop) will break.\n// See: https://github.com/joyent/node/issues/1707\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\nvar isArray = Array.isArray || function (xs) {\n return Object.prototype.toString.call(xs) === '[object Array]';\n};\nfunction stringifyPrimitive(v) {\n switch (typeof v) {\n case 'string':\n return v;\n\n case 'boolean':\n return v ? 'true' : 'false';\n\n case 'number':\n return isFinite(v) ? v : '';\n\n default:\n return '';\n }\n}\n\nexport function stringify (obj, sep, eq, name) {\n sep = sep || '&';\n eq = eq || '=';\n if (obj === null) {\n obj = undefined;\n }\n\n if (typeof obj === 'object') {\n return map(objectKeys(obj), function(k) {\n var ks = encodeURIComponent(stringifyPrimitive(k)) + eq;\n if (isArray(obj[k])) {\n return map(obj[k], function(v) {\n return ks + encodeURIComponent(stringifyPrimitive(v));\n }).join(sep);\n } else {\n return ks + encodeURIComponent(stringifyPrimitive(obj[k]));\n }\n }).join(sep);\n\n }\n\n if (!name) return '';\n return encodeURIComponent(stringifyPrimitive(name)) + eq +\n encodeURIComponent(stringifyPrimitive(obj));\n};\n\nfunction map (xs, f) {\n if (xs.map) return xs.map(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n res.push(f(xs[i], i));\n }\n return res;\n}\n\nvar objectKeys = Object.keys || function (obj) {\n var res = [];\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key);\n }\n return res;\n};\n\nexport function parse(qs, sep, eq, options) {\n sep = sep || '&';\n eq = eq || '=';\n var obj = {};\n\n if (typeof qs !== 'string' || qs.length === 0) {\n return obj;\n }\n\n var regexp = /\\+/g;\n qs = qs.split(sep);\n\n var maxKeys = 1000;\n if (options && typeof options.maxKeys === 'number') {\n maxKeys = options.maxKeys;\n }\n\n var len = qs.length;\n // maxKeys <= 0 means that we should not limit keys count\n if (maxKeys > 0 && len > maxKeys) {\n len = maxKeys;\n }\n\n for (var i = 0; i < len; ++i) {\n var x = qs[i].replace(regexp, '%20'),\n idx = x.indexOf(eq),\n kstr, vstr, k, v;\n\n if (idx >= 0) {\n kstr = x.substr(0, idx);\n vstr = x.substr(idx + 1);\n } else {\n kstr = x;\n vstr = '';\n }\n\n k = decodeURIComponent(kstr);\n v = decodeURIComponent(vstr);\n\n if (!hasOwnProperty(obj, k)) {\n obj[k] = v;\n } else if (isArray(obj[k])) {\n obj[k].push(v);\n } else {\n obj[k] = [obj[k], v];\n }\n }\n\n return obj;\n};\nexport default {\n encode: stringify,\n stringify: stringify,\n decode: parse,\n parse: parse\n}\nexport {stringify as encode, parse as decode};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nimport {toASCII} from 'punycode';\nimport {isObject,isString,isNullOrUndefined,isNull} from 'util';\nimport {parse as qsParse,stringify as qsStringify} from 'querystring';\nexport {\n urlParse as parse,\n urlResolve as resolve,\n urlResolveObject as resolveObject,\n urlFormat as format\n};\nexport default {\n parse: urlParse,\n resolve: urlResolve,\n resolveObject: urlResolveObject,\n format: urlFormat,\n Url: Url\n}\nexport function Url() {\n this.protocol = null;\n this.slashes = null;\n this.auth = null;\n this.host = null;\n this.port = null;\n this.hostname = null;\n this.hash = null;\n this.search = null;\n this.query = null;\n this.pathname = null;\n this.path = null;\n this.href = null;\n}\n\n// Reference: RFC 3986, RFC 1808, RFC 2396\n\n// define these here so at least they only have to be\n// compiled once on the first module load.\nvar protocolPattern = /^([a-z0-9.+-]+:)/i,\n portPattern = /:[0-9]*$/,\n\n // Special case for a simple path URL\n simplePathPattern = /^(\\/\\/?(?!\\/)[^\\?\\s]*)(\\?[^\\s]*)?$/,\n\n // RFC 2396: characters reserved for delimiting URLs.\n // We actually just auto-escape these.\n delims = ['<', '>', '\"', '`', ' ', '\\r', '\\n', '\\t'],\n\n // RFC 2396: characters not allowed for various reasons.\n unwise = ['{', '}', '|', '\\\\', '^', '`'].concat(delims),\n\n // Allowed by RFCs, but cause of XSS attacks. Always escape these.\n autoEscape = ['\\''].concat(unwise),\n // Characters that are never ever allowed in a hostname.\n // Note that any invalid chars are also handled, but these\n // are the ones that are *expected* to be seen, so we fast-path\n // them.\n nonHostChars = ['%', '/', '?', ';', '#'].concat(autoEscape),\n hostEndingChars = ['/', '?', '#'],\n hostnameMaxLen = 255,\n hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/,\n hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/,\n // protocols that can allow \"unsafe\" and \"unwise\" chars.\n unsafeProtocol = {\n 'javascript': true,\n 'javascript:': true\n },\n // protocols that never have a hostname.\n hostlessProtocol = {\n 'javascript': true,\n 'javascript:': true\n },\n // protocols that always contain a // bit.\n slashedProtocol = {\n 'http': true,\n 'https': true,\n 'ftp': true,\n 'gopher': true,\n 'file': true,\n 'http:': true,\n 'https:': true,\n 'ftp:': true,\n 'gopher:': true,\n 'file:': true\n };\n\nfunction urlParse(url, parseQueryString, slashesDenoteHost) {\n if (url && isObject(url) && url instanceof Url) return url;\n\n var u = new Url;\n u.parse(url, parseQueryString, slashesDenoteHost);\n return u;\n}\nUrl.prototype.parse = function(url, parseQueryString, slashesDenoteHost) {\n return parse(this, url, parseQueryString, slashesDenoteHost);\n}\n\nfunction parse(self, url, parseQueryString, slashesDenoteHost) {\n if (!isString(url)) {\n throw new TypeError('Parameter \\'url\\' must be a string, not ' + typeof url);\n }\n\n // Copy chrome, IE, opera backslash-handling behavior.\n // Back slashes before the query string get converted to forward slashes\n // See: https://code.google.com/p/chromium/issues/detail?id=25916\n var queryIndex = url.indexOf('?'),\n splitter =\n (queryIndex !== -1 && queryIndex < url.indexOf('#')) ? '?' : '#',\n uSplit = url.split(splitter),\n slashRegex = /\\\\/g;\n uSplit[0] = uSplit[0].replace(slashRegex, '/');\n url = uSplit.join(splitter);\n\n var rest = url;\n\n // trim before proceeding.\n // This is to support parse stuff like \" http://foo.com \\n\"\n rest = rest.trim();\n\n if (!slashesDenoteHost && url.split('#').length === 1) {\n // Try fast path regexp\n var simplePath = simplePathPattern.exec(rest);\n if (simplePath) {\n self.path = rest;\n self.href = rest;\n self.pathname = simplePath[1];\n if (simplePath[2]) {\n self.search = simplePath[2];\n if (parseQueryString) {\n self.query = qsParse(self.search.substr(1));\n } else {\n self.query = self.search.substr(1);\n }\n } else if (parseQueryString) {\n self.search = '';\n self.query = {};\n }\n return self;\n }\n }\n\n var proto = protocolPattern.exec(rest);\n if (proto) {\n proto = proto[0];\n var lowerProto = proto.toLowerCase();\n self.protocol = lowerProto;\n rest = rest.substr(proto.length);\n }\n\n // figure out if it's got a host\n // user@server is *always* interpreted as a hostname, and url\n // resolution will treat //foo/bar as host=foo,path=bar because that's\n // how the browser resolves relative URLs.\n if (slashesDenoteHost || proto || rest.match(/^\\/\\/[^@\\/]+@[^@\\/]+/)) {\n var slashes = rest.substr(0, 2) === '//';\n if (slashes && !(proto && hostlessProtocol[proto])) {\n rest = rest.substr(2);\n self.slashes = true;\n }\n }\n var i, hec, l, p;\n if (!hostlessProtocol[proto] &&\n (slashes || (proto && !slashedProtocol[proto]))) {\n\n // there's a hostname.\n // the first instance of /, ?, ;, or # ends the host.\n //\n // If there is an @ in the hostname, then non-host chars *are* allowed\n // to the left of the last @ sign, unless some host-ending character\n // comes *before* the @-sign.\n // URLs are obnoxious.\n //\n // ex:\n // http://a@b@c/ => user:a@b host:c\n // http://a@b?@c => user:a host:c path:/?@c\n\n // v0.12 TODO(isaacs): This is not quite how Chrome does things.\n // Review our test case against browsers more comprehensively.\n\n // find the first instance of any hostEndingChars\n var hostEnd = -1;\n for (i = 0; i < hostEndingChars.length; i++) {\n hec = rest.indexOf(hostEndingChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd))\n hostEnd = hec;\n }\n\n // at this point, either we have an explicit point where the\n // auth portion cannot go past, or the last @ char is the decider.\n var auth, atSign;\n if (hostEnd === -1) {\n // atSign can be anywhere.\n atSign = rest.lastIndexOf('@');\n } else {\n // atSign must be in auth portion.\n // http://a@b/c@d => host:b auth:a path:/c@d\n atSign = rest.lastIndexOf('@', hostEnd);\n }\n\n // Now we have a portion which is definitely the auth.\n // Pull that off.\n if (atSign !== -1) {\n auth = rest.slice(0, atSign);\n rest = rest.slice(atSign + 1);\n self.auth = decodeURIComponent(auth);\n }\n\n // the host is the remaining to the left of the first non-host char\n hostEnd = -1;\n for (i = 0; i < nonHostChars.length; i++) {\n hec = rest.indexOf(nonHostChars[i]);\n if (hec !== -1 && (hostEnd === -1 || hec < hostEnd))\n hostEnd = hec;\n }\n // if we still have not hit it, then the entire thing is a host.\n if (hostEnd === -1)\n hostEnd = rest.length;\n\n self.host = rest.slice(0, hostEnd);\n rest = rest.slice(hostEnd);\n\n // pull out port.\n parseHost(self);\n\n // we've indicated that there is a hostname,\n // so even if it's empty, it has to be present.\n self.hostname = self.hostname || '';\n\n // if hostname begins with [ and ends with ]\n // assume that it's an IPv6 address.\n var ipv6Hostname = self.hostname[0] === '[' &&\n self.hostname[self.hostname.length - 1] === ']';\n\n // validate a little.\n if (!ipv6Hostname) {\n var hostparts = self.hostname.split(/\\./);\n for (i = 0, l = hostparts.length; i < l; i++) {\n var part = hostparts[i];\n if (!part) continue;\n if (!part.match(hostnamePartPattern)) {\n var newpart = '';\n for (var j = 0, k = part.length; j < k; j++) {\n if (part.charCodeAt(j) > 127) {\n // we replace non-ASCII char with a temporary placeholder\n // we need this to make sure size of hostname is not\n // broken by replacing non-ASCII by nothing\n newpart += 'x';\n } else {\n newpart += part[j];\n }\n }\n // we test again with ASCII char only\n if (!newpart.match(hostnamePartPattern)) {\n var validParts = hostparts.slice(0, i);\n var notHost = hostparts.slice(i + 1);\n var bit = part.match(hostnamePartStart);\n if (bit) {\n validParts.push(bit[1]);\n notHost.unshift(bit[2]);\n }\n if (notHost.length) {\n rest = '/' + notHost.join('.') + rest;\n }\n self.hostname = validParts.join('.');\n break;\n }\n }\n }\n }\n\n if (self.hostname.length > hostnameMaxLen) {\n self.hostname = '';\n } else {\n // hostnames are always lower case.\n self.hostname = self.hostname.toLowerCase();\n }\n\n if (!ipv6Hostname) {\n // IDNA Support: Returns a punycoded representation of \"domain\".\n // It only converts parts of the domain name that\n // have non-ASCII characters, i.e. it doesn't matter if\n // you call it with a domain that already is ASCII-only.\n self.hostname = toASCII(self.hostname);\n }\n\n p = self.port ? ':' + self.port : '';\n var h = self.hostname || '';\n self.host = h + p;\n self.href += self.host;\n\n // strip [ and ] from the hostname\n // the host field still retains them, though\n if (ipv6Hostname) {\n self.hostname = self.hostname.substr(1, self.hostname.length - 2);\n if (rest[0] !== '/') {\n rest = '/' + rest;\n }\n }\n }\n\n // now rest is set to the post-host stuff.\n // chop off any delim chars.\n if (!unsafeProtocol[lowerProto]) {\n\n // First, make 100% sure that any \"autoEscape\" chars get\n // escaped, even if encodeURIComponent doesn't think they\n // need to be.\n for (i = 0, l = autoEscape.length; i < l; i++) {\n var ae = autoEscape[i];\n if (rest.indexOf(ae) === -1)\n continue;\n var esc = encodeURIComponent(ae);\n if (esc === ae) {\n esc = escape(ae);\n }\n rest = rest.split(ae).join(esc);\n }\n }\n\n\n // chop off from the tail first.\n var hash = rest.indexOf('#');\n if (hash !== -1) {\n // got a fragment string.\n self.hash = rest.substr(hash);\n rest = rest.slice(0, hash);\n }\n var qm = rest.indexOf('?');\n if (qm !== -1) {\n self.search = rest.substr(qm);\n self.query = rest.substr(qm + 1);\n if (parseQueryString) {\n self.query = qsParse(self.query);\n }\n rest = rest.slice(0, qm);\n } else if (parseQueryString) {\n // no query string, but parseQueryString still requested\n self.search = '';\n self.query = {};\n }\n if (rest) self.pathname = rest;\n if (slashedProtocol[lowerProto] &&\n self.hostname && !self.pathname) {\n self.pathname = '/';\n }\n\n //to support http.request\n if (self.pathname || self.search) {\n p = self.pathname || '';\n var s = self.search || '';\n self.path = p + s;\n }\n\n // finally, reconstruct the href based on what has been validated.\n self.href = format(self);\n return self;\n}\n\n// format a parsed object into a url string\nfunction urlFormat(obj) {\n // ensure it's an object, and not a string url.\n // If it's an obj, this is a no-op.\n // this way, you can call url_format() on strings\n // to clean up potentially wonky urls.\n if (isString(obj)) obj = parse({}, obj);\n return format(obj);\n}\n\nfunction format(self) {\n var auth = self.auth || '';\n if (auth) {\n auth = encodeURIComponent(auth);\n auth = auth.replace(/%3A/i, ':');\n auth += '@';\n }\n\n var protocol = self.protocol || '',\n pathname = self.pathname || '',\n hash = self.hash || '',\n host = false,\n query = '';\n\n if (self.host) {\n host = auth + self.host;\n } else if (self.hostname) {\n host = auth + (self.hostname.indexOf(':') === -1 ?\n self.hostname :\n '[' + this.hostname + ']');\n if (self.port) {\n host += ':' + self.port;\n }\n }\n\n if (self.query &&\n isObject(self.query) &&\n Object.keys(self.query).length) {\n query = qsStringify(self.query);\n }\n\n var search = self.search || (query && ('?' + query)) || '';\n\n if (protocol && protocol.substr(-1) !== ':') protocol += ':';\n\n // only the slashedProtocols get the //. Not mailto:, xmpp:, etc.\n // unless they had them to begin with.\n if (self.slashes ||\n (!protocol || slashedProtocol[protocol]) && host !== false) {\n host = '//' + (host || '');\n if (pathname && pathname.charAt(0) !== '/') pathname = '/' + pathname;\n } else if (!host) {\n host = '';\n }\n\n if (hash && hash.charAt(0) !== '#') hash = '#' + hash;\n if (search && search.charAt(0) !== '?') search = '?' + search;\n\n pathname = pathname.replace(/[?#]/g, function(match) {\n return encodeURIComponent(match);\n });\n search = search.replace('#', '%23');\n\n return protocol + host + pathname + search + hash;\n}\n\nUrl.prototype.format = function() {\n return format(this);\n}\n\nfunction urlResolve(source, relative) {\n return urlParse(source, false, true).resolve(relative);\n}\n\nUrl.prototype.resolve = function(relative) {\n return this.resolveObject(urlParse(relative, false, true)).format();\n};\n\nfunction urlResolveObject(source, relative) {\n if (!source) return relative;\n return urlParse(source, false, true).resolveObject(relative);\n}\n\nUrl.prototype.resolveObject = function(relative) {\n if (isString(relative)) {\n var rel = new Url();\n rel.parse(relative, false, true);\n relative = rel;\n }\n\n var result = new Url();\n var tkeys = Object.keys(this);\n for (var tk = 0; tk < tkeys.length; tk++) {\n var tkey = tkeys[tk];\n result[tkey] = this[tkey];\n }\n\n // hash is always overridden, no matter what.\n // even href=\"\" will remove it.\n result.hash = relative.hash;\n\n // if the relative url is empty, then there's nothing left to do here.\n if (relative.href === '') {\n result.href = result.format();\n return result;\n }\n\n // hrefs like //foo/bar always cut to the protocol.\n if (relative.slashes && !relative.protocol) {\n // take everything except the protocol from relative\n var rkeys = Object.keys(relative);\n for (var rk = 0; rk < rkeys.length; rk++) {\n var rkey = rkeys[rk];\n if (rkey !== 'protocol')\n result[rkey] = relative[rkey];\n }\n\n //urlParse appends trailing / to urls like http://www.example.com\n if (slashedProtocol[result.protocol] &&\n result.hostname && !result.pathname) {\n result.path = result.pathname = '/';\n }\n\n result.href = result.format();\n return result;\n }\n var relPath;\n if (relative.protocol && relative.protocol !== result.protocol) {\n // if it's a known url protocol, then changing\n // the protocol does weird things\n // first, if it's not file:, then we MUST have a host,\n // and if there was a path\n // to begin with, then we MUST have a path.\n // if it is file:, then the host is dropped,\n // because that's known to be hostless.\n // anything else is assumed to be absolute.\n if (!slashedProtocol[relative.protocol]) {\n var keys = Object.keys(relative);\n for (var v = 0; v < keys.length; v++) {\n var k = keys[v];\n result[k] = relative[k];\n }\n result.href = result.format();\n return result;\n }\n\n result.protocol = relative.protocol;\n if (!relative.host && !hostlessProtocol[relative.protocol]) {\n relPath = (relative.pathname || '').split('/');\n while (relPath.length && !(relative.host = relPath.shift()));\n if (!relative.host) relative.host = '';\n if (!relative.hostname) relative.hostname = '';\n if (relPath[0] !== '') relPath.unshift('');\n if (relPath.length < 2) relPath.unshift('');\n result.pathname = relPath.join('/');\n } else {\n result.pathname = relative.pathname;\n }\n result.search = relative.search;\n result.query = relative.query;\n result.host = relative.host || '';\n result.auth = relative.auth;\n result.hostname = relative.hostname || relative.host;\n result.port = relative.port;\n // to support http.request\n if (result.pathname || result.search) {\n var p = result.pathname || '';\n var s = result.search || '';\n result.path = p + s;\n }\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n }\n\n var isSourceAbs = (result.pathname && result.pathname.charAt(0) === '/'),\n isRelAbs = (\n relative.host ||\n relative.pathname && relative.pathname.charAt(0) === '/'\n ),\n mustEndAbs = (isRelAbs || isSourceAbs ||\n (result.host && relative.pathname)),\n removeAllDots = mustEndAbs,\n srcPath = result.pathname && result.pathname.split('/') || [],\n psychotic = result.protocol && !slashedProtocol[result.protocol];\n relPath = relative.pathname && relative.pathname.split('/') || [];\n // if the url is a non-slashed url, then relative\n // links like ../.. should be able\n // to crawl up to the hostname, as well. This is strange.\n // result.protocol has already been set by now.\n // Later on, put the first path part into the host field.\n if (psychotic) {\n result.hostname = '';\n result.port = null;\n if (result.host) {\n if (srcPath[0] === '') srcPath[0] = result.host;\n else srcPath.unshift(result.host);\n }\n result.host = '';\n if (relative.protocol) {\n relative.hostname = null;\n relative.port = null;\n if (relative.host) {\n if (relPath[0] === '') relPath[0] = relative.host;\n else relPath.unshift(relative.host);\n }\n relative.host = null;\n }\n mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === '');\n }\n var authInHost;\n if (isRelAbs) {\n // it's absolute.\n result.host = (relative.host || relative.host === '') ?\n relative.host : result.host;\n result.hostname = (relative.hostname || relative.hostname === '') ?\n relative.hostname : result.hostname;\n result.search = relative.search;\n result.query = relative.query;\n srcPath = relPath;\n // fall through to the dot-handling below.\n } else if (relPath.length) {\n // it's relative\n // throw away the existing file, and take the new path instead.\n if (!srcPath) srcPath = [];\n srcPath.pop();\n srcPath = srcPath.concat(relPath);\n result.search = relative.search;\n result.query = relative.query;\n } else if (!isNullOrUndefined(relative.search)) {\n // just pull out the search.\n // like href='?foo'.\n // Put this after the other two cases because it simplifies the booleans\n if (psychotic) {\n result.hostname = result.host = srcPath.shift();\n //occationaly the auth can get stuck only in host\n //this especially happens in cases like\n //url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n authInHost = result.host && result.host.indexOf('@') > 0 ?\n result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.host = result.hostname = authInHost.shift();\n }\n }\n result.search = relative.search;\n result.query = relative.query;\n //to support http.request\n if (!isNull(result.pathname) || !isNull(result.search)) {\n result.path = (result.pathname ? result.pathname : '') +\n (result.search ? result.search : '');\n }\n result.href = result.format();\n return result;\n }\n\n if (!srcPath.length) {\n // no path at all. easy.\n // we've already handled the other stuff above.\n result.pathname = null;\n //to support http.request\n if (result.search) {\n result.path = '/' + result.search;\n } else {\n result.path = null;\n }\n result.href = result.format();\n return result;\n }\n\n // if a url ENDs in . or .., then it must get a trailing slash.\n // however, if it ends in anything else non-slashy,\n // then it must NOT get a trailing slash.\n var last = srcPath.slice(-1)[0];\n var hasTrailingSlash = (\n (result.host || relative.host || srcPath.length > 1) &&\n (last === '.' || last === '..') || last === '');\n\n // strip single dots, resolve double dots to parent dir\n // if the path tries to go above the root, `up` ends up > 0\n var up = 0;\n for (var i = srcPath.length; i >= 0; i--) {\n last = srcPath[i];\n if (last === '.') {\n srcPath.splice(i, 1);\n } else if (last === '..') {\n srcPath.splice(i, 1);\n up++;\n } else if (up) {\n srcPath.splice(i, 1);\n up--;\n }\n }\n\n // if the path is allowed to go above the root, restore leading ..s\n if (!mustEndAbs && !removeAllDots) {\n for (; up--; up) {\n srcPath.unshift('..');\n }\n }\n\n if (mustEndAbs && srcPath[0] !== '' &&\n (!srcPath[0] || srcPath[0].charAt(0) !== '/')) {\n srcPath.unshift('');\n }\n\n if (hasTrailingSlash && (srcPath.join('/').substr(-1) !== '/')) {\n srcPath.push('');\n }\n\n var isAbsolute = srcPath[0] === '' ||\n (srcPath[0] && srcPath[0].charAt(0) === '/');\n\n // put the host back\n if (psychotic) {\n result.hostname = result.host = isAbsolute ? '' :\n srcPath.length ? srcPath.shift() : '';\n //occationaly the auth can get stuck only in host\n //this especially happens in cases like\n //url.resolveObject('mailto:local1@domain1', 'local2@domain2')\n authInHost = result.host && result.host.indexOf('@') > 0 ?\n result.host.split('@') : false;\n if (authInHost) {\n result.auth = authInHost.shift();\n result.host = result.hostname = authInHost.shift();\n }\n }\n\n mustEndAbs = mustEndAbs || (result.host && srcPath.length);\n\n if (mustEndAbs && !isAbsolute) {\n srcPath.unshift('');\n }\n\n if (!srcPath.length) {\n result.pathname = null;\n result.path = null;\n } else {\n result.pathname = srcPath.join('/');\n }\n\n //to support request.http\n if (!isNull(result.pathname) || !isNull(result.search)) {\n result.path = (result.pathname ? result.pathname : '') +\n (result.search ? result.search : '');\n }\n result.auth = relative.auth || result.auth;\n result.slashes = result.slashes || relative.slashes;\n result.href = result.format();\n return result;\n};\n\nUrl.prototype.parseHost = function() {\n return parseHost(this);\n};\n\nfunction parseHost(self) {\n var host = self.host;\n var port = portPattern.exec(host);\n if (port) {\n port = port[0];\n if (port !== ':') {\n self.port = port.substr(1);\n }\n host = host.substr(0, host.length - port.length);\n }\n if (host) self.hostname = host;\n}\n","/*!\n * @pixi/constants - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/constants is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * Different types of environments for WebGL.\n *\n * @static\n * @memberof PIXI\n * @name ENV\n * @enum {number}\n * @property {number} WEBGL_LEGACY - Used for older v1 WebGL devices. PixiJS will aim to ensure compatibility\n * with older / less advanced devices. If you experience unexplained flickering prefer this environment.\n * @property {number} WEBGL - Version 1 of WebGL\n * @property {number} WEBGL2 - Version 2 of WebGL\n */\nvar ENV = {\n WEBGL_LEGACY: 0,\n WEBGL: 1,\n WEBGL2: 2,\n};\n\n/**\n * Constant to identify the Renderer Type.\n *\n * @static\n * @memberof PIXI\n * @name RENDERER_TYPE\n * @enum {number}\n * @property {number} UNKNOWN - Unknown render type.\n * @property {number} WEBGL - WebGL render type.\n * @property {number} CANVAS - Canvas render type.\n */\nvar RENDERER_TYPE = {\n UNKNOWN: 0,\n WEBGL: 1,\n CANVAS: 2,\n};\n\n/**\n * Various blend modes supported by PIXI.\n *\n * IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes.\n * Anything else will silently act like NORMAL.\n *\n * @memberof PIXI\n * @name BLEND_MODES\n * @enum {number}\n * @property {number} NORMAL\n * @property {number} ADD\n * @property {number} MULTIPLY\n * @property {number} SCREEN\n * @property {number} OVERLAY\n * @property {number} DARKEN\n * @property {number} LIGHTEN\n * @property {number} COLOR_DODGE\n * @property {number} COLOR_BURN\n * @property {number} HARD_LIGHT\n * @property {number} SOFT_LIGHT\n * @property {number} DIFFERENCE\n * @property {number} EXCLUSION\n * @property {number} HUE\n * @property {number} SATURATION\n * @property {number} COLOR\n * @property {number} LUMINOSITY\n * @property {number} NORMAL_NPM\n * @property {number} ADD_NPM\n * @property {number} SCREEN_NPM\n * @property {number} NONE\n * @property {number} SRC_IN\n * @property {number} SRC_OUT\n * @property {number} SRC_ATOP\n * @property {number} DST_OVER\n * @property {number} DST_IN\n * @property {number} DST_OUT\n * @property {number} DST_ATOP\n * @property {number} SUBTRACT\n * @property {number} SRC_OVER\n * @property {number} ERASE\n */\nvar BLEND_MODES = {\n NORMAL: 0,\n ADD: 1,\n MULTIPLY: 2,\n SCREEN: 3,\n OVERLAY: 4,\n DARKEN: 5,\n LIGHTEN: 6,\n COLOR_DODGE: 7,\n COLOR_BURN: 8,\n HARD_LIGHT: 9,\n SOFT_LIGHT: 10,\n DIFFERENCE: 11,\n EXCLUSION: 12,\n HUE: 13,\n SATURATION: 14,\n COLOR: 15,\n LUMINOSITY: 16,\n NORMAL_NPM: 17,\n ADD_NPM: 18,\n SCREEN_NPM: 19,\n NONE: 20,\n\n SRC_OVER: 0,\n SRC_IN: 21,\n SRC_OUT: 22,\n SRC_ATOP: 23,\n DST_OVER: 24,\n DST_IN: 25,\n DST_OUT: 26,\n DST_ATOP: 27,\n ERASE: 26,\n SUBTRACT: 28,\n};\n\n/**\n * Various webgl draw modes. These can be used to specify which GL drawMode to use\n * under certain situations and renderers.\n *\n * @memberof PIXI\n * @static\n * @name DRAW_MODES\n * @enum {number}\n * @property {number} POINTS\n * @property {number} LINES\n * @property {number} LINE_LOOP\n * @property {number} LINE_STRIP\n * @property {number} TRIANGLES\n * @property {number} TRIANGLE_STRIP\n * @property {number} TRIANGLE_FAN\n */\nvar DRAW_MODES = {\n POINTS: 0,\n LINES: 1,\n LINE_LOOP: 2,\n LINE_STRIP: 3,\n TRIANGLES: 4,\n TRIANGLE_STRIP: 5,\n TRIANGLE_FAN: 6,\n};\n\n/**\n * Various GL texture/resources formats.\n *\n * @memberof PIXI\n * @static\n * @name FORMATS\n * @enum {number}\n * @property {number} RGBA=6408\n * @property {number} RGB=6407\n * @property {number} ALPHA=6406\n * @property {number} LUMINANCE=6409\n * @property {number} LUMINANCE_ALPHA=6410\n * @property {number} DEPTH_COMPONENT=6402\n * @property {number} DEPTH_STENCIL=34041\n */\nvar FORMATS = {\n RGBA: 6408,\n RGB: 6407,\n ALPHA: 6406,\n LUMINANCE: 6409,\n LUMINANCE_ALPHA: 6410,\n DEPTH_COMPONENT: 6402,\n DEPTH_STENCIL: 34041,\n};\n\n/**\n * Various GL target types.\n *\n * @memberof PIXI\n * @static\n * @name TARGETS\n * @enum {number}\n * @property {number} TEXTURE_2D=3553\n * @property {number} TEXTURE_CUBE_MAP=34067\n * @property {number} TEXTURE_2D_ARRAY=35866\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_X=34069\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_X=34070\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Y=34071\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Y=34072\n * @property {number} TEXTURE_CUBE_MAP_POSITIVE_Z=34073\n * @property {number} TEXTURE_CUBE_MAP_NEGATIVE_Z=34074\n */\nvar TARGETS = {\n TEXTURE_2D: 3553,\n TEXTURE_CUBE_MAP: 34067,\n TEXTURE_2D_ARRAY: 35866,\n TEXTURE_CUBE_MAP_POSITIVE_X: 34069,\n TEXTURE_CUBE_MAP_NEGATIVE_X: 34070,\n TEXTURE_CUBE_MAP_POSITIVE_Y: 34071,\n TEXTURE_CUBE_MAP_NEGATIVE_Y: 34072,\n TEXTURE_CUBE_MAP_POSITIVE_Z: 34073,\n TEXTURE_CUBE_MAP_NEGATIVE_Z: 34074,\n};\n\n/**\n * Various GL data format types.\n *\n * @memberof PIXI\n * @static\n * @name TYPES\n * @enum {number}\n * @property {number} UNSIGNED_BYTE=5121\n * @property {number} UNSIGNED_SHORT=5123\n * @property {number} UNSIGNED_SHORT_5_6_5=33635\n * @property {number} UNSIGNED_SHORT_4_4_4_4=32819\n * @property {number} UNSIGNED_SHORT_5_5_5_1=32820\n * @property {number} FLOAT=5126\n * @property {number} HALF_FLOAT=36193\n */\nvar TYPES = {\n UNSIGNED_BYTE: 5121,\n UNSIGNED_SHORT: 5123,\n UNSIGNED_SHORT_5_6_5: 33635,\n UNSIGNED_SHORT_4_4_4_4: 32819,\n UNSIGNED_SHORT_5_5_5_1: 32820,\n FLOAT: 5126,\n HALF_FLOAT: 36193,\n};\n\n/**\n * The scale modes that are supported by pixi.\n *\n * The {@link PIXI.settings.SCALE_MODE} scale mode affects the default scaling mode of future operations.\n * It can be re-assigned to either LINEAR or NEAREST, depending upon suitability.\n *\n * @memberof PIXI\n * @static\n * @name SCALE_MODES\n * @enum {number}\n * @property {number} LINEAR Smooth scaling\n * @property {number} NEAREST Pixelating scaling\n */\nvar SCALE_MODES = {\n LINEAR: 1,\n NEAREST: 0,\n};\n\n/**\n * The wrap modes that are supported by pixi.\n *\n * The {@link PIXI.settings.WRAP_MODE} wrap mode affects the default wrapping mode of future operations.\n * It can be re-assigned to either CLAMP or REPEAT, depending upon suitability.\n * If the texture is non power of two then clamp will be used regardless as WebGL can\n * only use REPEAT if the texture is po2.\n *\n * This property only affects WebGL.\n *\n * @name WRAP_MODES\n * @memberof PIXI\n * @static\n * @enum {number}\n * @property {number} CLAMP - The textures uvs are clamped\n * @property {number} REPEAT - The texture uvs tile and repeat\n * @property {number} MIRRORED_REPEAT - The texture uvs tile and repeat with mirroring\n */\nvar WRAP_MODES = {\n CLAMP: 33071,\n REPEAT: 10497,\n MIRRORED_REPEAT: 33648,\n};\n\n/**\n * Mipmap filtering modes that are supported by pixi.\n *\n * The {@link PIXI.settings.MIPMAP_TEXTURES} affects default texture filtering.\n * Mipmaps are generated for a baseTexture if its `mipmap` field is `ON`,\n * or its `POW2` and texture dimensions are powers of 2.\n * Due to platform restriction, `ON` option will work like `POW2` for webgl-1.\n *\n * This property only affects WebGL.\n *\n * @name MIPMAP_MODES\n * @memberof PIXI\n * @static\n * @enum {number}\n * @property {number} OFF - No mipmaps\n * @property {number} POW2 - Generate mipmaps if texture dimensions are pow2\n * @property {number} ON - Always generate mipmaps\n */\nvar MIPMAP_MODES = {\n OFF: 0,\n POW2: 1,\n ON: 2,\n};\n\n/**\n * The gc modes that are supported by pixi.\n *\n * The {@link PIXI.settings.GC_MODE} Garbage Collection mode for PixiJS textures is AUTO\n * If set to GC_MODE, the renderer will occasionally check textures usage. If they are not\n * used for a specified period of time they will be removed from the GPU. They will of course\n * be uploaded again when they are required. This is a silent behind the scenes process that\n * should ensure that the GPU does not get filled up.\n *\n * Handy for mobile devices!\n * This property only affects WebGL.\n *\n * @name GC_MODES\n * @enum {number}\n * @static\n * @memberof PIXI\n * @property {number} AUTO - Garbage collection will happen periodically automatically\n * @property {number} MANUAL - Garbage collection will need to be called manually\n */\nvar GC_MODES = {\n AUTO: 0,\n MANUAL: 1,\n};\n\n/**\n * Constants that specify float precision in shaders.\n *\n * @name PRECISION\n * @memberof PIXI\n * @static\n * @enum {string}\n * @constant\n * @property {string} LOW='lowp'\n * @property {string} MEDIUM='mediump'\n * @property {string} HIGH='highp'\n */\nvar PRECISION = {\n LOW: 'lowp',\n MEDIUM: 'mediump',\n HIGH: 'highp',\n};\n\nexport { BLEND_MODES, DRAW_MODES, ENV, FORMATS, GC_MODES, MIPMAP_MODES, PRECISION, RENDERER_TYPE, SCALE_MODES, TARGETS, TYPES, WRAP_MODES };\n//# sourceMappingURL=constants.es.js.map\n","/*!\n * @pixi/utils - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/utils is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nexport { isMobile } from '@pixi/settings';\nexport { default as EventEmitter } from 'eventemitter3';\nexport { default as earcut } from 'earcut';\nimport _url from 'url';\nexport { default as url } from 'url';\nimport { BLEND_MODES } from '@pixi/constants';\n\n/**\n * The prefix that denotes a URL is for a retina asset.\n *\n * @static\n * @name RETINA_PREFIX\n * @memberof PIXI.settings\n * @type {RegExp}\n * @default /@([0-9\\.]+)x/\n * @example `@2x`\n */\nsettings.RETINA_PREFIX = /@([0-9\\.]+)x/;\n\n/**\n * Should the `failIfMajorPerformanceCaveat` flag be enabled as a context option used in the `isWebGLSupported` function.\n * For most scenarios this should be left as true, as otherwise the user may have a poor experience.\n * However, it can be useful to disable under certain scenarios, such as headless unit tests.\n *\n * @static\n * @name FAIL_IF_MAJOR_PERFORMANCE_CAVEAT\n * @memberof PIXI.settings\n * @type {boolean}\n * @default true\n */\nsettings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = true;\n\nvar saidHello = false;\nvar VERSION = '5.1.3';\n\n/**\n * Skips the hello message of renderers that are created after this is run.\n *\n * @function skipHello\n * @memberof PIXI.utils\n */\nfunction skipHello()\n{\n saidHello = true;\n}\n\n/**\n * Logs out the version and renderer information for this running instance of PIXI.\n * If you don't want to see this message you can run `PIXI.utils.skipHello()` before\n * creating your renderer. Keep in mind that doing that will forever make you a jerk face.\n *\n * @static\n * @function sayHello\n * @memberof PIXI.utils\n * @param {string} type - The string renderer type to log.\n */\nfunction sayHello(type)\n{\n if (saidHello)\n {\n return;\n }\n\n if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)\n {\n var args = [\n (\"\\n %c %c %c PixiJS \" + VERSION + \" - ✰ \" + type + \" ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \\n\\n\"),\n 'background: #ff66a5; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'color: #ff66a5; background: #030307; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'background: #ffc3dc; padding:5px 0;',\n 'background: #ff66a5; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;',\n 'color: #ff2424; background: #fff; padding:5px 0;' ];\n\n window.console.log.apply(console, args);\n }\n else if (window.console)\n {\n window.console.log((\"PixiJS \" + VERSION + \" - \" + type + \" - http://www.pixijs.com/\"));\n }\n\n saidHello = true;\n}\n\nvar supported;\n\n/**\n * Helper for checking for WebGL support.\n *\n * @memberof PIXI.utils\n * @function isWebGLSupported\n * @return {boolean} Is WebGL supported.\n */\nfunction isWebGLSupported()\n{\n if (typeof supported === 'undefined')\n {\n supported = (function supported()\n {\n var contextOptions = {\n stencil: true,\n failIfMajorPerformanceCaveat: settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT,\n };\n\n try\n {\n if (!window.WebGLRenderingContext)\n {\n return false;\n }\n\n var canvas = document.createElement('canvas');\n var gl = canvas.getContext('webgl', contextOptions)\n || canvas.getContext('experimental-webgl', contextOptions);\n\n var success = !!(gl && gl.getContextAttributes().stencil);\n\n if (gl)\n {\n var loseContext = gl.getExtension('WEBGL_lose_context');\n\n if (loseContext)\n {\n loseContext.loseContext();\n }\n }\n\n gl = null;\n\n return success;\n }\n catch (e)\n {\n return false;\n }\n })();\n }\n\n return supported;\n}\n\n/**\n * Converts a hexadecimal color number to an [R, G, B] array of normalized floats (numbers from 0.0 to 1.0).\n *\n * @example\n * PIXI.utils.hex2rgb(0xffffff); // returns [1, 1, 1]\n * @memberof PIXI.utils\n * @function hex2rgb\n * @param {number} hex - The hexadecimal number to convert\n * @param {number[]} [out=[]] If supplied, this array will be used rather than returning a new one\n * @return {number[]} An array representing the [R, G, B] of the color where all values are floats.\n */\nfunction hex2rgb(hex, out)\n{\n out = out || [];\n\n out[0] = ((hex >> 16) & 0xFF) / 255;\n out[1] = ((hex >> 8) & 0xFF) / 255;\n out[2] = (hex & 0xFF) / 255;\n\n return out;\n}\n\n/**\n * Converts a hexadecimal color number to a string.\n *\n * @example\n * PIXI.utils.hex2string(0xffffff); // returns \"#ffffff\"\n * @memberof PIXI.utils\n * @function hex2string\n * @param {number} hex - Number in hex (e.g., `0xffffff`)\n * @return {string} The string color (e.g., `\"#ffffff\"`).\n */\nfunction hex2string(hex)\n{\n hex = hex.toString(16);\n hex = '000000'.substr(0, 6 - hex.length) + hex;\n\n return (\"#\" + hex);\n}\n\n/**\n * Converts a hexadecimal string to a hexadecimal color number.\n *\n * @example\n * PIXI.utils.string2hex(\"#ffffff\"); // returns 0xffffff\n * @memberof PIXI.utils\n * @function string2hex\n * @param {string} The string color (e.g., `\"#ffffff\"`)\n * @return {number} Number in hexadecimal.\n */\nfunction string2hex(string)\n{\n if (typeof string === 'string' && string[0] === '#')\n {\n string = string.substr(1);\n }\n\n return parseInt(string, 16);\n}\n\n/**\n * Converts a color as an [R, G, B] array of normalized floats to a hexadecimal number.\n *\n * @example\n * PIXI.utils.rgb2hex([1, 1, 1]); // returns 0xffffff\n * @memberof PIXI.utils\n * @function rgb2hex\n * @param {number[]} rgb - Array of numbers where all values are normalized floats from 0.0 to 1.0.\n * @return {number} Number in hexadecimal.\n */\nfunction rgb2hex(rgb)\n{\n return (((rgb[0] * 255) << 16) + ((rgb[1] * 255) << 8) + (rgb[2] * 255 | 0));\n}\n\n/**\n * Corrects PixiJS blend, takes premultiplied alpha into account\n *\n * @memberof PIXI.utils\n * @function mapPremultipliedBlendModes\n * @private\n * @param {Array} [array] - The array to output into.\n * @return {Array} Mapped modes.\n */\nfunction mapPremultipliedBlendModes()\n{\n var pm = [];\n var npm = [];\n\n for (var i = 0; i < 32; i++)\n {\n pm[i] = i;\n npm[i] = i;\n }\n\n pm[BLEND_MODES.NORMAL_NPM] = BLEND_MODES.NORMAL;\n pm[BLEND_MODES.ADD_NPM] = BLEND_MODES.ADD;\n pm[BLEND_MODES.SCREEN_NPM] = BLEND_MODES.SCREEN;\n\n npm[BLEND_MODES.NORMAL] = BLEND_MODES.NORMAL_NPM;\n npm[BLEND_MODES.ADD] = BLEND_MODES.ADD_NPM;\n npm[BLEND_MODES.SCREEN] = BLEND_MODES.SCREEN_NPM;\n\n var array = [];\n\n array.push(npm);\n array.push(pm);\n\n return array;\n}\n\n/**\n * maps premultiply flag and blendMode to adjusted blendMode\n * @memberof PIXI.utils\n * @const premultiplyBlendMode\n * @type {Array}\n */\nvar premultiplyBlendMode = mapPremultipliedBlendModes();\n\n/**\n * changes blendMode according to texture format\n *\n * @memberof PIXI.utils\n * @function correctBlendMode\n * @param {number} blendMode supposed blend mode\n * @param {boolean} premultiplied whether source is premultiplied\n * @returns {number} true blend mode for this texture\n */\nfunction correctBlendMode(blendMode, premultiplied)\n{\n return premultiplyBlendMode[premultiplied ? 1 : 0][blendMode];\n}\n\n/**\n * combines rgb and alpha to out array\n *\n * @memberof PIXI.utils\n * @function premultiplyRgba\n * @param {Float32Array|number[]} rgb input rgb\n * @param {number} alpha alpha param\n * @param {Float32Array} [out] output\n * @param {boolean} [premultiply=true] do premultiply it\n * @returns {Float32Array} vec4 rgba\n */\nfunction premultiplyRgba(rgb, alpha, out, premultiply)\n{\n out = out || new Float32Array(4);\n if (premultiply || premultiply === undefined)\n {\n out[0] = rgb[0] * alpha;\n out[1] = rgb[1] * alpha;\n out[2] = rgb[2] * alpha;\n }\n else\n {\n out[0] = rgb[0];\n out[1] = rgb[1];\n out[2] = rgb[2];\n }\n out[3] = alpha;\n\n return out;\n}\n\n/**\n * premultiplies tint\n *\n * @memberof PIXI.utils\n * @function premultiplyTint\n * @param {number} tint integer RGB\n * @param {number} alpha floating point alpha (0.0-1.0)\n * @returns {number} tint multiplied by alpha\n */\nfunction premultiplyTint(tint, alpha)\n{\n if (alpha === 1.0)\n {\n return (alpha * 255 << 24) + tint;\n }\n if (alpha === 0.0)\n {\n return 0;\n }\n var R = ((tint >> 16) & 0xFF);\n var G = ((tint >> 8) & 0xFF);\n var B = (tint & 0xFF);\n\n R = ((R * alpha) + 0.5) | 0;\n G = ((G * alpha) + 0.5) | 0;\n B = ((B * alpha) + 0.5) | 0;\n\n return (alpha * 255 << 24) + (R << 16) + (G << 8) + B;\n}\n\n/**\n * converts integer tint and float alpha to vec4 form, premultiplies by default\n *\n * @memberof PIXI.utils\n * @function premultiplyTintToRgba\n * @param {number} tint input tint\n * @param {number} alpha alpha param\n * @param {Float32Array} [out] output\n * @param {boolean} [premultiply=true] do premultiply it\n * @returns {Float32Array} vec4 rgba\n */\nfunction premultiplyTintToRgba(tint, alpha, out, premultiply)\n{\n out = out || new Float32Array(4);\n out[0] = ((tint >> 16) & 0xFF) / 255.0;\n out[1] = ((tint >> 8) & 0xFF) / 255.0;\n out[2] = (tint & 0xFF) / 255.0;\n if (premultiply || premultiply === undefined)\n {\n out[0] *= alpha;\n out[1] *= alpha;\n out[2] *= alpha;\n }\n out[3] = alpha;\n\n return out;\n}\n\n/**\n * Generic Mask Stack data structure\n *\n * @memberof PIXI.utils\n * @function createIndicesForQuads\n * @param {number} size - Number of quads\n * @param {Uint16Array|Uint32Array} [outBuffer] - Buffer for output, length has to be `6 * size`\n * @return {Uint16Array|Uint32Array} - Resulting index buffer\n */\nfunction createIndicesForQuads(size, outBuffer)\n{\n if ( outBuffer === void 0 ) outBuffer = null;\n\n // the total number of indices in our array, there are 6 points per quad.\n var totalIndices = size * 6;\n\n outBuffer = outBuffer || new Uint16Array(totalIndices);\n\n if (outBuffer.length !== totalIndices)\n {\n throw new Error((\"Out buffer length is incorrect, got \" + (outBuffer.length) + \" and expected \" + totalIndices));\n }\n\n // fill the indices with the quads to draw\n for (var i = 0, j = 0; i < totalIndices; i += 6, j += 4)\n {\n outBuffer[i + 0] = j + 0;\n outBuffer[i + 1] = j + 1;\n outBuffer[i + 2] = j + 2;\n outBuffer[i + 3] = j + 0;\n outBuffer[i + 4] = j + 2;\n outBuffer[i + 5] = j + 3;\n }\n\n return outBuffer;\n}\n\n/**\n * Remove items from a javascript array without generating garbage\n *\n * @function removeItems\n * @memberof PIXI.utils\n * @param {Array} arr Array to remove elements from\n * @param {number} startIdx starting index\n * @param {number} removeCount how many to remove\n */\nfunction removeItems(arr, startIdx, removeCount)\n{\n var length = arr.length;\n var i;\n\n if (startIdx >= length || removeCount === 0)\n {\n return;\n }\n\n removeCount = (startIdx + removeCount > length ? length - startIdx : removeCount);\n\n var len = length - removeCount;\n\n for (i = startIdx; i < len; ++i)\n {\n arr[i] = arr[i + removeCount];\n }\n\n arr.length = len;\n}\n\nvar nextUid = 0;\n\n/**\n * Gets the next unique identifier\n *\n * @memberof PIXI.utils\n * @function uid\n * @return {number} The next unique identifier to use.\n */\nfunction uid()\n{\n return ++nextUid;\n}\n\n/**\n * Returns sign of number\n *\n * @memberof PIXI.utils\n * @function sign\n * @param {number} n - the number to check the sign of\n * @returns {number} 0 if `n` is 0, -1 if `n` is negative, 1 if `n` is positive\n */\nfunction sign(n)\n{\n if (n === 0) { return 0; }\n\n return n < 0 ? -1 : 1;\n}\n\n// Taken from the bit-twiddle package\n\n/**\n * Rounds to next power of two.\n *\n * @function nextPow2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {number}\n */\nfunction nextPow2(v)\n{\n v += v === 0;\n --v;\n v |= v >>> 1;\n v |= v >>> 2;\n v |= v >>> 4;\n v |= v >>> 8;\n v |= v >>> 16;\n\n return v + 1;\n}\n\n/**\n * Checks if a number is a power of two.\n *\n * @function isPow2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {boolean} `true` if value is power of two\n */\nfunction isPow2(v)\n{\n return !(v & (v - 1)) && (!!v);\n}\n\n/**\n * Computes ceil of log base 2\n *\n * @function log2\n * @memberof PIXI.utils\n * @param {number} v input value\n * @return {number} logarithm base 2\n */\nfunction log2(v)\n{\n var r = (v > 0xFFFF) << 4;\n\n v >>>= r;\n\n var shift = (v > 0xFF) << 3;\n\n v >>>= shift; r |= shift;\n shift = (v > 0xF) << 2;\n v >>>= shift; r |= shift;\n shift = (v > 0x3) << 1;\n v >>>= shift; r |= shift;\n\n return r | (v >> 1);\n}\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name ProgramCache\n * @memberof PIXI.utils\n * @type {Object}\n */\nvar ProgramCache = {};\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name TextureCache\n * @memberof PIXI.utils\n * @type {Object}\n */\nvar TextureCache = Object.create(null);\n\n/**\n * @todo Describe property usage\n *\n * @static\n * @name BaseTextureCache\n * @memberof PIXI.utils\n * @type {Object}\n */\n\nvar BaseTextureCache = Object.create(null);\n/**\n * Destroys all texture in the cache\n *\n * @memberof PIXI.utils\n * @function destroyTextureCache\n */\nfunction destroyTextureCache()\n{\n var key;\n\n for (key in TextureCache)\n {\n TextureCache[key].destroy();\n }\n for (key in BaseTextureCache)\n {\n BaseTextureCache[key].destroy();\n }\n}\n\n/**\n * Removes all textures from cache, but does not destroy them\n *\n * @memberof PIXI.utils\n * @function clearTextureCache\n */\nfunction clearTextureCache()\n{\n var key;\n\n for (key in TextureCache)\n {\n delete TextureCache[key];\n }\n for (key in BaseTextureCache)\n {\n delete BaseTextureCache[key];\n }\n}\n\n/**\n * Trim transparent borders from a canvas\n *\n * @memberof PIXI.utils\n * @function trimCanvas\n * @param {HTMLCanvasElement} canvas - the canvas to trim\n * @returns {object} Trim data\n */\nfunction trimCanvas(canvas)\n{\n // https://gist.github.com/remy/784508\n\n var width = canvas.width;\n var height = canvas.height;\n\n var context = canvas.getContext('2d');\n var imageData = context.getImageData(0, 0, width, height);\n var pixels = imageData.data;\n var len = pixels.length;\n\n var bound = {\n top: null,\n left: null,\n right: null,\n bottom: null,\n };\n var data = null;\n var i;\n var x;\n var y;\n\n for (i = 0; i < len; i += 4)\n {\n if (pixels[i + 3] !== 0)\n {\n x = (i / 4) % width;\n y = ~~((i / 4) / width);\n\n if (bound.top === null)\n {\n bound.top = y;\n }\n\n if (bound.left === null)\n {\n bound.left = x;\n }\n else if (x < bound.left)\n {\n bound.left = x;\n }\n\n if (bound.right === null)\n {\n bound.right = x + 1;\n }\n else if (bound.right < x)\n {\n bound.right = x + 1;\n }\n\n if (bound.bottom === null)\n {\n bound.bottom = y;\n }\n else if (bound.bottom < y)\n {\n bound.bottom = y;\n }\n }\n }\n\n if (bound.top !== null)\n {\n width = bound.right - bound.left;\n height = bound.bottom - bound.top + 1;\n data = context.getImageData(bound.left, bound.top, width, height);\n }\n\n return {\n height: height,\n width: width,\n data: data,\n };\n}\n\n/**\n * Creates a Canvas element of the given size to be used as a target for rendering to.\n *\n * @class\n * @memberof PIXI.utils\n */\nvar CanvasRenderTarget = function CanvasRenderTarget(width, height, resolution)\n{\n /**\n * The Canvas object that belongs to this CanvasRenderTarget.\n *\n * @member {HTMLCanvasElement}\n */\n this.canvas = document.createElement('canvas');\n\n /**\n * A CanvasRenderingContext2D object representing a two-dimensional rendering context.\n *\n * @member {CanvasRenderingContext2D}\n */\n this.context = this.canvas.getContext('2d');\n\n this.resolution = resolution || settings.RESOLUTION;\n\n this.resize(width, height);\n};\n\nvar prototypeAccessors = { width: { configurable: true },height: { configurable: true } };\n\n/**\n * Clears the canvas that was created by the CanvasRenderTarget class.\n *\n * @private\n */\nCanvasRenderTarget.prototype.clear = function clear ()\n{\n this.context.setTransform(1, 0, 0, 1, 0, 0);\n this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);\n};\n\n/**\n * Resizes the canvas to the specified width and height.\n *\n * @param {number} width - the new width of the canvas\n * @param {number} height - the new height of the canvas\n */\nCanvasRenderTarget.prototype.resize = function resize (width, height)\n{\n this.canvas.width = width * this.resolution;\n this.canvas.height = height * this.resolution;\n};\n\n/**\n * Destroys this canvas.\n *\n */\nCanvasRenderTarget.prototype.destroy = function destroy ()\n{\n this.context = null;\n this.canvas = null;\n};\n\n/**\n * The width of the canvas buffer in pixels.\n *\n * @member {number}\n */\nprototypeAccessors.width.get = function ()\n{\n return this.canvas.width;\n};\n\nprototypeAccessors.width.set = function (val) // eslint-disable-line require-jsdoc\n{\n this.canvas.width = val;\n};\n\n/**\n * The height of the canvas buffer in pixels.\n *\n * @member {number}\n */\nprototypeAccessors.height.get = function ()\n{\n return this.canvas.height;\n};\n\nprototypeAccessors.height.set = function (val) // eslint-disable-line require-jsdoc\n{\n this.canvas.height = val;\n};\n\nObject.defineProperties( CanvasRenderTarget.prototype, prototypeAccessors );\n\n/**\n * Regexp for data URI.\n * Based on: {@link https://github.com/ragingwind/data-uri-regex}\n *\n * @static\n * @constant {RegExp|string} DATA_URI\n * @memberof PIXI\n * @example data:image/png;base64\n */\nvar DATA_URI = /^\\s*data:(?:([\\w-]+)\\/([\\w+.-]+))?(?:;charset=([\\w-]+))?(?:;(base64))?,(.*)/i;\n\n/**\n * Typedef for decomposeDataUri return object.\n *\n * @memberof PIXI.utils\n * @typedef {object} DecomposedDataUri\n * @property {string} mediaType Media type, eg. `image`\n * @property {string} subType Sub type, eg. `png`\n * @property {string} encoding Data encoding, eg. `base64`\n * @property {string} data The actual data\n */\n\n/**\n * Split a data URI into components. Returns undefined if\n * parameter `dataUri` is not a valid data URI.\n *\n * @memberof PIXI.utils\n * @function decomposeDataUri\n * @param {string} dataUri - the data URI to check\n * @return {PIXI.utils.DecomposedDataUri|undefined} The decomposed data uri or undefined\n */\nfunction decomposeDataUri(dataUri)\n{\n var dataUriMatch = DATA_URI.exec(dataUri);\n\n if (dataUriMatch)\n {\n return {\n mediaType: dataUriMatch[1] ? dataUriMatch[1].toLowerCase() : undefined,\n subType: dataUriMatch[2] ? dataUriMatch[2].toLowerCase() : undefined,\n charset: dataUriMatch[3] ? dataUriMatch[3].toLowerCase() : undefined,\n encoding: dataUriMatch[4] ? dataUriMatch[4].toLowerCase() : undefined,\n data: dataUriMatch[5],\n };\n }\n\n return undefined;\n}\n\nvar tempAnchor;\n\n/**\n * Sets the `crossOrigin` property for this resource based on if the url\n * for this resource is cross-origin. If crossOrigin was manually set, this\n * function does nothing.\n * Nipped from the resource loader!\n *\n * @ignore\n * @param {string} url - The url to test.\n * @param {object} [loc=window.location] - The location object to test against.\n * @return {string} The crossOrigin value to use (or empty string for none).\n */\nfunction determineCrossOrigin(url, loc)\n{\n if ( loc === void 0 ) loc = window.location;\n\n // data: and javascript: urls are considered same-origin\n if (url.indexOf('data:') === 0)\n {\n return '';\n }\n\n // default is window.location\n loc = loc || window.location;\n\n if (!tempAnchor)\n {\n tempAnchor = document.createElement('a');\n }\n\n // let the browser determine the full href for the url of this resource and then\n // parse with the node url lib, we can't use the properties of the anchor element\n // because they don't work in IE9 :(\n tempAnchor.href = url;\n url = _url.parse(tempAnchor.href);\n\n var samePort = (!url.port && loc.port === '') || (url.port === loc.port);\n\n // if cross origin\n if (url.hostname !== loc.hostname || !samePort || url.protocol !== loc.protocol)\n {\n return 'anonymous';\n }\n\n return '';\n}\n\n/**\n * get the resolution / device pixel ratio of an asset by looking for the prefix\n * used by spritesheets and image urls\n *\n * @memberof PIXI.utils\n * @function getResolutionOfUrl\n * @param {string} url - the image path\n * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set.\n * @return {number} resolution / device pixel ratio of an asset\n */\nfunction getResolutionOfUrl(url, defaultValue)\n{\n var resolution = settings.RETINA_PREFIX.exec(url);\n\n if (resolution)\n {\n return parseFloat(resolution[1]);\n }\n\n return defaultValue !== undefined ? defaultValue : 1;\n}\n\n// A map of warning messages already fired\nvar warnings = {};\n\n/**\n * Helper for warning developers about deprecated features & settings.\n * A stack track for warnings is given; useful for tracking-down where\n * deprecated methods/properties/classes are being used within the code.\n *\n * @memberof PIXI.utils\n * @function deprecation\n * @param {string} version - The version where the feature became deprecated\n * @param {string} message - Message should include what is deprecated, where, and the new solution\n * @param {number} [ignoreDepth=3] - The number of steps to ignore at the top of the error stack\n * this is mostly to ignore internal deprecation calls.\n */\nfunction deprecation(version, message, ignoreDepth)\n{\n if ( ignoreDepth === void 0 ) ignoreDepth = 3;\n\n // Ignore duplicat\n if (warnings[message])\n {\n return;\n }\n\n /* eslint-disable no-console */\n var stack = new Error().stack;\n\n // Handle IE < 10 and Safari < 6\n if (typeof stack === 'undefined')\n {\n console.warn('PixiJS Deprecation Warning: ', (message + \"\\nDeprecated since v\" + version));\n }\n else\n {\n // chop off the stack trace which includes PixiJS internal calls\n stack = stack.split('\\n').splice(ignoreDepth).join('\\n');\n\n if (console.groupCollapsed)\n {\n console.groupCollapsed(\n '%cPixiJS Deprecation Warning: %c%s',\n 'color:#614108;background:#fffbe6',\n 'font-weight:normal;color:#614108;background:#fffbe6',\n (message + \"\\nDeprecated since v\" + version)\n );\n console.warn(stack);\n console.groupEnd();\n }\n else\n {\n console.warn('PixiJS Deprecation Warning: ', (message + \"\\nDeprecated since v\" + version));\n console.warn(stack);\n }\n }\n /* eslint-enable no-console */\n\n warnings[message] = true;\n}\n\n/**\n * Generalized convenience utilities for PIXI.\n * @example\n * // Extend PIXI's internal Event Emitter.\n * class MyEmitter extends PIXI.utils.EventEmitter {\n * constructor() {\n * super();\n * console.log(\"Emitter created!\");\n * }\n * }\n *\n * // Get info on current device\n * console.log(PIXI.utils.isMobile);\n *\n * // Convert hex color to string\n * console.log(PIXI.utils.hex2string(0xff00ff)); // returns: \"#ff00ff\"\n * @namespace PIXI.utils\n */\n\nexport { BaseTextureCache, CanvasRenderTarget, DATA_URI, ProgramCache, TextureCache, clearTextureCache, correctBlendMode, createIndicesForQuads, decomposeDataUri, deprecation, destroyTextureCache, determineCrossOrigin, getResolutionOfUrl, hex2rgb, hex2string, isPow2, isWebGLSupported, log2, nextPow2, premultiplyBlendMode, premultiplyRgba, premultiplyTint, premultiplyTintToRgba, removeItems, rgb2hex, sayHello, sign, skipHello, string2hex, trimCanvas, uid };\n//# sourceMappingURL=utils.es.js.map\n","/*!\n * @pixi/math - v5.1.0\n * Compiled Fri, 19 Jul 2019 21:54:36 UTC\n *\n * @pixi/math is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * The Point object represents a location in a two-dimensional coordinate system, where x represents\n * the horizontal axis and y represents the vertical axis.\n *\n * @class\n * @memberof PIXI\n */\nvar Point = function Point(x, y)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n};\n\n/**\n * Creates a clone of this point\n *\n * @return {PIXI.Point} a copy of the point\n */\nPoint.prototype.clone = function clone ()\n{\n return new Point(this.x, this.y);\n};\n\n/**\n * Copies x and y from the given point\n *\n * @param {PIXI.IPoint} p - The point to copy from\n * @returns {PIXI.IPoint} Returns itself.\n */\nPoint.prototype.copyFrom = function copyFrom (p)\n{\n this.set(p.x, p.y);\n\n return this;\n};\n\n/**\n * Copies x and y into the given point\n *\n * @param {PIXI.IPoint} p - The point to copy.\n * @returns {PIXI.IPoint} Given point with values updated\n */\nPoint.prototype.copyTo = function copyTo (p)\n{\n p.set(this.x, this.y);\n\n return p;\n};\n\n/**\n * Returns true if the given point is equal to this point\n *\n * @param {PIXI.IPoint} p - The point to check\n * @returns {boolean} Whether the given point equal to this point\n */\nPoint.prototype.equals = function equals (p)\n{\n return (p.x === this.x) && (p.y === this.y);\n};\n\n/**\n * Sets the point to a new x and y position.\n * If y is omitted, both x and y will be set to x.\n *\n * @param {number} [x=0] - position of the point on the x axis\n * @param {number} [y=0] - position of the point on the y axis\n */\nPoint.prototype.set = function set (x, y)\n{\n this.x = x || 0;\n this.y = y || ((y !== 0) ? this.x : 0);\n};\n\n/**\n * The Point object represents a location in a two-dimensional coordinate system, where x represents\n * the horizontal axis and y represents the vertical axis.\n *\n * An ObservablePoint is a point that triggers a callback when the point's position is changed.\n *\n * @class\n * @memberof PIXI\n */\nvar ObservablePoint = function ObservablePoint(cb, scope, x, y)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n this._x = x;\n this._y = y;\n\n this.cb = cb;\n this.scope = scope;\n};\n\nvar prototypeAccessors = { x: { configurable: true },y: { configurable: true } };\n\n/**\n * Creates a clone of this point.\n * The callback and scope params can be overidden otherwise they will default\n * to the clone object's values.\n *\n * @override\n * @param {Function} [cb=null] - callback when changed\n * @param {object} [scope=null] - owner of callback\n * @return {PIXI.ObservablePoint} a copy of the point\n */\nObservablePoint.prototype.clone = function clone (cb, scope)\n{\n if ( cb === void 0 ) cb = null;\n if ( scope === void 0 ) scope = null;\n\n var _cb = cb || this.cb;\n var _scope = scope || this.scope;\n\n return new ObservablePoint(_cb, _scope, this._x, this._y);\n};\n\n/**\n * Sets the point to a new x and y position.\n * If y is omitted, both x and y will be set to x.\n *\n * @param {number} [x=0] - position of the point on the x axis\n * @param {number} [y=0] - position of the point on the y axis\n */\nObservablePoint.prototype.set = function set (x, y)\n{\n var _x = x || 0;\n var _y = y || ((y !== 0) ? _x : 0);\n\n if (this._x !== _x || this._y !== _y)\n {\n this._x = _x;\n this._y = _y;\n this.cb.call(this.scope);\n }\n};\n\n/**\n * Copies x and y from the given point\n *\n * @param {PIXI.IPoint} p - The point to copy from.\n * @returns {PIXI.IPoint} Returns itself.\n */\nObservablePoint.prototype.copyFrom = function copyFrom (p)\n{\n if (this._x !== p.x || this._y !== p.y)\n {\n this._x = p.x;\n this._y = p.y;\n this.cb.call(this.scope);\n }\n\n return this;\n};\n\n/**\n * Copies x and y into the given point\n *\n * @param {PIXI.IPoint} p - The point to copy.\n * @returns {PIXI.IPoint} Given point with values updated\n */\nObservablePoint.prototype.copyTo = function copyTo (p)\n{\n p.set(this._x, this._y);\n\n return p;\n};\n\n/**\n * Returns true if the given point is equal to this point\n *\n * @param {PIXI.IPoint} p - The point to check\n * @returns {boolean} Whether the given point equal to this point\n */\nObservablePoint.prototype.equals = function equals (p)\n{\n return (p.x === this._x) && (p.y === this._y);\n};\n\n/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n *\n * @member {number}\n */\nprototypeAccessors.x.get = function ()\n{\n return this._x;\n};\n\nprototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._x !== value)\n {\n this._x = value;\n this.cb.call(this.scope);\n }\n};\n\n/**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n *\n * @member {number}\n */\nprototypeAccessors.y.get = function ()\n{\n return this._y;\n};\n\nprototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._y !== value)\n {\n this._y = value;\n this.cb.call(this.scope);\n }\n};\n\nObject.defineProperties( ObservablePoint.prototype, prototypeAccessors );\n\n/**\n * A number, or a string containing a number.\n * @memberof PIXI\n * @typedef {(PIXI.Point|PIXI.ObservablePoint)} IPoint\n */\n\n/**\n * Two Pi.\n *\n * @static\n * @constant {number} PI_2\n * @memberof PIXI\n */\nvar PI_2 = Math.PI * 2;\n\n/**\n * Conversion factor for converting radians to degrees.\n *\n * @static\n * @constant {number} RAD_TO_DEG\n * @memberof PIXI\n */\nvar RAD_TO_DEG = 180 / Math.PI;\n\n/**\n * Conversion factor for converting degrees to radians.\n *\n * @static\n * @constant {number} DEG_TO_RAD\n * @memberof PIXI\n */\nvar DEG_TO_RAD = Math.PI / 180;\n\n/**\n * Constants that identify shapes, mainly to prevent `instanceof` calls.\n *\n * @static\n * @constant\n * @name SHAPES\n * @memberof PIXI\n * @type {object}\n * @property {number} POLY Polygon\n * @property {number} RECT Rectangle\n * @property {number} CIRC Circle\n * @property {number} ELIP Ellipse\n * @property {number} RREC Rounded Rectangle\n */\nvar SHAPES = {\n POLY: 0,\n RECT: 1,\n CIRC: 2,\n ELIP: 3,\n RREC: 4,\n};\n\n/**\n * The PixiJS Matrix as a class makes it a lot faster.\n *\n * Here is a representation of it:\n * ```js\n * | a | c | tx|\n * | b | d | ty|\n * | 0 | 0 | 1 |\n * ```\n * @class\n * @memberof PIXI\n */\nvar Matrix = function Matrix(a, b, c, d, tx, ty)\n{\n if ( a === void 0 ) a = 1;\n if ( b === void 0 ) b = 0;\n if ( c === void 0 ) c = 0;\n if ( d === void 0 ) d = 1;\n if ( tx === void 0 ) tx = 0;\n if ( ty === void 0 ) ty = 0;\n\n /**\n * @member {number}\n * @default 1\n */\n this.a = a;\n\n /**\n * @member {number}\n * @default 0\n */\n this.b = b;\n\n /**\n * @member {number}\n * @default 0\n */\n this.c = c;\n\n /**\n * @member {number}\n * @default 1\n */\n this.d = d;\n\n /**\n * @member {number}\n * @default 0\n */\n this.tx = tx;\n\n /**\n * @member {number}\n * @default 0\n */\n this.ty = ty;\n\n this.array = null;\n};\n\nvar staticAccessors = { IDENTITY: { configurable: true },TEMP_MATRIX: { configurable: true } };\n\n/**\n * Creates a Matrix object based on the given array. The Element to Matrix mapping order is as follows:\n *\n * a = array[0]\n * b = array[1]\n * c = array[3]\n * d = array[4]\n * tx = array[2]\n * ty = array[5]\n *\n * @param {number[]} array - The array that the matrix will be populated from.\n */\nMatrix.prototype.fromArray = function fromArray (array)\n{\n this.a = array[0];\n this.b = array[1];\n this.c = array[3];\n this.d = array[4];\n this.tx = array[2];\n this.ty = array[5];\n};\n\n/**\n * sets the matrix properties\n *\n * @param {number} a - Matrix component\n * @param {number} b - Matrix component\n * @param {number} c - Matrix component\n * @param {number} d - Matrix component\n * @param {number} tx - Matrix component\n * @param {number} ty - Matrix component\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.set = function set (a, b, c, d, tx, ty)\n{\n this.a = a;\n this.b = b;\n this.c = c;\n this.d = d;\n this.tx = tx;\n this.ty = ty;\n\n return this;\n};\n\n/**\n * Creates an array from the current Matrix object.\n *\n * @param {boolean} transpose - Whether we need to transpose the matrix or not\n * @param {Float32Array} [out=new Float32Array(9)] - If provided the array will be assigned to out\n * @return {number[]} the newly created array which contains the matrix\n */\nMatrix.prototype.toArray = function toArray (transpose, out)\n{\n if (!this.array)\n {\n this.array = new Float32Array(9);\n }\n\n var array = out || this.array;\n\n if (transpose)\n {\n array[0] = this.a;\n array[1] = this.b;\n array[2] = 0;\n array[3] = this.c;\n array[4] = this.d;\n array[5] = 0;\n array[6] = this.tx;\n array[7] = this.ty;\n array[8] = 1;\n }\n else\n {\n array[0] = this.a;\n array[1] = this.c;\n array[2] = this.tx;\n array[3] = this.b;\n array[4] = this.d;\n array[5] = this.ty;\n array[6] = 0;\n array[7] = 0;\n array[8] = 1;\n }\n\n return array;\n};\n\n/**\n * Get a new position with the current transformation applied.\n * Can be used to go from a child's coordinate space to the world coordinate space. (e.g. rendering)\n *\n * @param {PIXI.Point} pos - The origin\n * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input)\n * @return {PIXI.Point} The new point, transformed through this matrix\n */\nMatrix.prototype.apply = function apply (pos, newPos)\n{\n newPos = newPos || new Point();\n\n var x = pos.x;\n var y = pos.y;\n\n newPos.x = (this.a * x) + (this.c * y) + this.tx;\n newPos.y = (this.b * x) + (this.d * y) + this.ty;\n\n return newPos;\n};\n\n/**\n * Get a new position with the inverse of the current transformation applied.\n * Can be used to go from the world coordinate space to a child's coordinate space. (e.g. input)\n *\n * @param {PIXI.Point} pos - The origin\n * @param {PIXI.Point} [newPos] - The point that the new position is assigned to (allowed to be same as input)\n * @return {PIXI.Point} The new point, inverse-transformed through this matrix\n */\nMatrix.prototype.applyInverse = function applyInverse (pos, newPos)\n{\n newPos = newPos || new Point();\n\n var id = 1 / ((this.a * this.d) + (this.c * -this.b));\n\n var x = pos.x;\n var y = pos.y;\n\n newPos.x = (this.d * id * x) + (-this.c * id * y) + (((this.ty * this.c) - (this.tx * this.d)) * id);\n newPos.y = (this.a * id * y) + (-this.b * id * x) + (((-this.ty * this.a) + (this.tx * this.b)) * id);\n\n return newPos;\n};\n\n/**\n * Translates the matrix on the x and y.\n *\n * @param {number} x How much to translate x by\n * @param {number} y How much to translate y by\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.translate = function translate (x, y)\n{\n this.tx += x;\n this.ty += y;\n\n return this;\n};\n\n/**\n * Applies a scale transformation to the matrix.\n *\n * @param {number} x The amount to scale horizontally\n * @param {number} y The amount to scale vertically\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.scale = function scale (x, y)\n{\n this.a *= x;\n this.d *= y;\n this.c *= x;\n this.b *= y;\n this.tx *= x;\n this.ty *= y;\n\n return this;\n};\n\n/**\n * Applies a rotation transformation to the matrix.\n *\n * @param {number} angle - The angle in radians.\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.rotate = function rotate (angle)\n{\n var cos = Math.cos(angle);\n var sin = Math.sin(angle);\n\n var a1 = this.a;\n var c1 = this.c;\n var tx1 = this.tx;\n\n this.a = (a1 * cos) - (this.b * sin);\n this.b = (a1 * sin) + (this.b * cos);\n this.c = (c1 * cos) - (this.d * sin);\n this.d = (c1 * sin) + (this.d * cos);\n this.tx = (tx1 * cos) - (this.ty * sin);\n this.ty = (tx1 * sin) + (this.ty * cos);\n\n return this;\n};\n\n/**\n * Appends the given Matrix to this Matrix.\n *\n * @param {PIXI.Matrix} matrix - The matrix to append.\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.append = function append (matrix)\n{\n var a1 = this.a;\n var b1 = this.b;\n var c1 = this.c;\n var d1 = this.d;\n\n this.a = (matrix.a * a1) + (matrix.b * c1);\n this.b = (matrix.a * b1) + (matrix.b * d1);\n this.c = (matrix.c * a1) + (matrix.d * c1);\n this.d = (matrix.c * b1) + (matrix.d * d1);\n\n this.tx = (matrix.tx * a1) + (matrix.ty * c1) + this.tx;\n this.ty = (matrix.tx * b1) + (matrix.ty * d1) + this.ty;\n\n return this;\n};\n\n/**\n * Sets the matrix based on all the available properties\n *\n * @param {number} x - Position on the x axis\n * @param {number} y - Position on the y axis\n * @param {number} pivotX - Pivot on the x axis\n * @param {number} pivotY - Pivot on the y axis\n * @param {number} scaleX - Scale on the x axis\n * @param {number} scaleY - Scale on the y axis\n * @param {number} rotation - Rotation in radians\n * @param {number} skewX - Skew on the x axis\n * @param {number} skewY - Skew on the y axis\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.setTransform = function setTransform (x, y, pivotX, pivotY, scaleX, scaleY, rotation, skewX, skewY)\n{\n this.a = Math.cos(rotation + skewY) * scaleX;\n this.b = Math.sin(rotation + skewY) * scaleX;\n this.c = -Math.sin(rotation - skewX) * scaleY;\n this.d = Math.cos(rotation - skewX) * scaleY;\n\n this.tx = x - ((pivotX * this.a) + (pivotY * this.c));\n this.ty = y - ((pivotX * this.b) + (pivotY * this.d));\n\n return this;\n};\n\n/**\n * Prepends the given Matrix to this Matrix.\n *\n * @param {PIXI.Matrix} matrix - The matrix to prepend\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.prepend = function prepend (matrix)\n{\n var tx1 = this.tx;\n\n if (matrix.a !== 1 || matrix.b !== 0 || matrix.c !== 0 || matrix.d !== 1)\n {\n var a1 = this.a;\n var c1 = this.c;\n\n this.a = (a1 * matrix.a) + (this.b * matrix.c);\n this.b = (a1 * matrix.b) + (this.b * matrix.d);\n this.c = (c1 * matrix.a) + (this.d * matrix.c);\n this.d = (c1 * matrix.b) + (this.d * matrix.d);\n }\n\n this.tx = (tx1 * matrix.a) + (this.ty * matrix.c) + matrix.tx;\n this.ty = (tx1 * matrix.b) + (this.ty * matrix.d) + matrix.ty;\n\n return this;\n};\n\n/**\n * Decomposes the matrix (x, y, scaleX, scaleY, and rotation) and sets the properties on to a transform.\n *\n * @param {PIXI.Transform} transform - The transform to apply the properties to.\n * @return {PIXI.Transform} The transform with the newly applied properties\n */\nMatrix.prototype.decompose = function decompose (transform)\n{\n // sort out rotation / skew..\n var a = this.a;\n var b = this.b;\n var c = this.c;\n var d = this.d;\n\n var skewX = -Math.atan2(-c, d);\n var skewY = Math.atan2(b, a);\n\n var delta = Math.abs(skewX + skewY);\n\n if (delta < 0.00001 || Math.abs(PI_2 - delta) < 0.00001)\n {\n transform.rotation = skewY;\n transform.skew.x = transform.skew.y = 0;\n }\n else\n {\n transform.rotation = 0;\n transform.skew.x = skewX;\n transform.skew.y = skewY;\n }\n\n // next set scale\n transform.scale.x = Math.sqrt((a * a) + (b * b));\n transform.scale.y = Math.sqrt((c * c) + (d * d));\n\n // next set position\n transform.position.x = this.tx;\n transform.position.y = this.ty;\n\n return transform;\n};\n\n/**\n * Inverts this matrix\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.invert = function invert ()\n{\n var a1 = this.a;\n var b1 = this.b;\n var c1 = this.c;\n var d1 = this.d;\n var tx1 = this.tx;\n var n = (a1 * d1) - (b1 * c1);\n\n this.a = d1 / n;\n this.b = -b1 / n;\n this.c = -c1 / n;\n this.d = a1 / n;\n this.tx = ((c1 * this.ty) - (d1 * tx1)) / n;\n this.ty = -((a1 * this.ty) - (b1 * tx1)) / n;\n\n return this;\n};\n\n/**\n * Resets this Matrix to an identity (default) matrix.\n *\n * @return {PIXI.Matrix} This matrix. Good for chaining method calls.\n */\nMatrix.prototype.identity = function identity ()\n{\n this.a = 1;\n this.b = 0;\n this.c = 0;\n this.d = 1;\n this.tx = 0;\n this.ty = 0;\n\n return this;\n};\n\n/**\n * Creates a new Matrix object with the same values as this one.\n *\n * @return {PIXI.Matrix} A copy of this matrix. Good for chaining method calls.\n */\nMatrix.prototype.clone = function clone ()\n{\n var matrix = new Matrix();\n\n matrix.a = this.a;\n matrix.b = this.b;\n matrix.c = this.c;\n matrix.d = this.d;\n matrix.tx = this.tx;\n matrix.ty = this.ty;\n\n return matrix;\n};\n\n/**\n * Changes the values of the given matrix to be the same as the ones in this matrix\n *\n * @param {PIXI.Matrix} matrix - The matrix to copy to.\n * @return {PIXI.Matrix} The matrix given in parameter with its values updated.\n */\nMatrix.prototype.copyTo = function copyTo (matrix)\n{\n matrix.a = this.a;\n matrix.b = this.b;\n matrix.c = this.c;\n matrix.d = this.d;\n matrix.tx = this.tx;\n matrix.ty = this.ty;\n\n return matrix;\n};\n\n/**\n * Changes the values of the matrix to be the same as the ones in given matrix\n *\n * @param {PIXI.Matrix} matrix - The matrix to copy from.\n * @return {PIXI.Matrix} this\n */\nMatrix.prototype.copyFrom = function copyFrom (matrix)\n{\n this.a = matrix.a;\n this.b = matrix.b;\n this.c = matrix.c;\n this.d = matrix.d;\n this.tx = matrix.tx;\n this.ty = matrix.ty;\n\n return this;\n};\n\n/**\n * A default (identity) matrix\n *\n * @static\n * @const\n * @member {PIXI.Matrix}\n */\nstaticAccessors.IDENTITY.get = function ()\n{\n return new Matrix();\n};\n\n/**\n * A temp matrix\n *\n * @static\n * @const\n * @member {PIXI.Matrix}\n */\nstaticAccessors.TEMP_MATRIX.get = function ()\n{\n return new Matrix();\n};\n\nObject.defineProperties( Matrix, staticAccessors );\n\n// Your friendly neighbour https://en.wikipedia.org/wiki/Dihedral_group\n\n/*\n * Transform matrix for operation n is:\n * | ux | vx |\n * | uy | vy |\n */\n\nvar ux = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1];\nvar uy = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1];\nvar vx = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1];\nvar vy = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1];\n\n/**\n * [Cayley Table]{@link https://en.wikipedia.org/wiki/Cayley_table}\n * for the composition of each rotation in the dihederal group D8.\n *\n * @type number[][]\n * @private\n */\nvar rotationCayley = [];\n\n/**\n * Matrices for each `GD8Symmetry` rotation.\n *\n * @type Matrix[]\n * @private\n */\nvar rotationMatrices = [];\n\n/*\n * Alias for {@code Math.sign}.\n */\nvar signum = Math.sign;\n\n/*\n * Initializes `rotationCayley` and `rotationMatrices`. It is called\n * only once below.\n */\nfunction init()\n{\n for (var i = 0; i < 16; i++)\n {\n var row = [];\n\n rotationCayley.push(row);\n\n for (var j = 0; j < 16; j++)\n {\n /* Multiplies rotation matrices i and j. */\n var _ux = signum((ux[i] * ux[j]) + (vx[i] * uy[j]));\n var _uy = signum((uy[i] * ux[j]) + (vy[i] * uy[j]));\n var _vx = signum((ux[i] * vx[j]) + (vx[i] * vy[j]));\n var _vy = signum((uy[i] * vx[j]) + (vy[i] * vy[j]));\n\n /* Finds rotation matrix matching the product and pushes it. */\n for (var k = 0; k < 16; k++)\n {\n if (ux[k] === _ux && uy[k] === _uy\n && vx[k] === _vx && vy[k] === _vy)\n {\n row.push(k);\n break;\n }\n }\n }\n }\n\n for (var i$1 = 0; i$1 < 16; i$1++)\n {\n var mat = new Matrix();\n\n mat.set(ux[i$1], uy[i$1], vx[i$1], vy[i$1], 0, 0);\n rotationMatrices.push(mat);\n }\n}\n\ninit();\n\n/**\n * @memberof PIXI\n * @typedef {number} GD8Symmetry\n * @see PIXI.GroupD8\n */\n\n/**\n * Implements the dihedral group D8, which is similar to\n * [group D4]{@link http://mathworld.wolfram.com/DihedralGroupD4.html};\n * D8 is the same but with diagonals, and it is used for texture\n * rotations.\n *\n * The directions the U- and V- axes after rotation\n * of an angle of `a: GD8Constant` are the vectors `(uX(a), uY(a))`\n * and `(vX(a), vY(a))`. These aren't necessarily unit vectors.\n *\n * **Origin:**
\n * This is the small part of gameofbombs.com portal system. It works.\n *\n * @see PIXI.GroupD8.E\n * @see PIXI.GroupD8.SE\n * @see PIXI.GroupD8.S\n * @see PIXI.GroupD8.SW\n * @see PIXI.GroupD8.W\n * @see PIXI.GroupD8.NW\n * @see PIXI.GroupD8.N\n * @see PIXI.GroupD8.NE\n * @author Ivan @ivanpopelyshev\n * @class\n * @memberof PIXI\n */\nvar GroupD8 = {\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 0° | East |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n E: 0,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 45°↻ | Southeast |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n SE: 1,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 90°↻ | South |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n S: 2,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 135°↻ | Southwest |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n SW: 3,\n\n /**\n * | Rotation | Direction |\n * |----------|-----------|\n * | 180° | West |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n W: 4,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -135°/225°↻ | Northwest |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n NW: 5,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -90°/270°↻ | North |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n N: 6,\n\n /**\n * | Rotation | Direction |\n * |-------------|--------------|\n * | -45°/315°↻ | Northeast |\n *\n * @constant {PIXI.GD8Symmetry}\n */\n NE: 7,\n\n /**\n * Reflection about Y-axis.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MIRROR_VERTICAL: 8,\n\n /**\n * Reflection about the main diagonal.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MAIN_DIAGONAL: 10,\n\n /**\n * Reflection about X-axis.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n MIRROR_HORIZONTAL: 12,\n\n /**\n * Reflection about reverse diagonal.\n *\n * @constant {PIXI.GD8Symmetry}\n */\n REVERSE_DIAGONAL: 14,\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The X-component of the U-axis\n * after rotating the axes.\n */\n uX: function (ind) { return ux[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The Y-component of the U-axis\n * after rotating the axes.\n */\n uY: function (ind) { return uy[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The X-component of the V-axis\n * after rotating the axes.\n */\n vX: function (ind) { return vx[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} ind - sprite rotation angle.\n * @return {PIXI.GD8Symmetry} The Y-component of the V-axis\n * after rotating the axes.\n */\n vY: function (ind) { return vy[ind]; },\n\n /**\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotation - symmetry whose opposite\n * is needed. Only rotations have opposite symmetries while\n * reflections don't.\n * @return {PIXI.GD8Symmetry} The opposite symmetry of `rotation`\n */\n inv: function (rotation) {\n if (rotation & 8)// true only if between 8 & 15 (reflections)\n {\n return rotation & 15;// or rotation % 16\n }\n\n return (-rotation) & 7;// or (8 - rotation) % 8\n },\n\n /**\n * Composes the two D8 operations.\n *\n * Taking `^` as reflection:\n *\n * | | E=0 | S=2 | W=4 | N=6 | E^=8 | S^=10 | W^=12 | N^=14 |\n * |-------|-----|-----|-----|-----|------|-------|-------|-------|\n * | E=0 | E | S | W | N | E^ | S^ | W^ | N^ |\n * | S=2 | S | W | N | E | S^ | W^ | N^ | E^ |\n * | W=4 | W | N | E | S | W^ | N^ | E^ | S^ |\n * | N=6 | N | E | S | W | N^ | E^ | S^ | W^ |\n * | E^=8 | E^ | N^ | W^ | S^ | E | N | W | S |\n * | S^=10 | S^ | E^ | N^ | W^ | S | E | N | W |\n * | W^=12 | W^ | S^ | E^ | N^ | W | S | E | N |\n * | N^=14 | N^ | W^ | S^ | E^ | N | W | S | E |\n *\n * [This is a Cayley table]{@link https://en.wikipedia.org/wiki/Cayley_table}\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotationSecond - Second operation, which\n * is the row in the above cayley table.\n * @param {PIXI.GD8Symmetry} rotationFirst - First operation, which\n * is the column in the above cayley table.\n * @return {PIXI.GD8Symmetry} Composed operation\n */\n add: function (rotationSecond, rotationFirst) { return (\n rotationCayley[rotationSecond][rotationFirst]\n ); },\n\n /**\n * Reverse of `add`.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotationSecond - Second operation\n * @param {PIXI.GD8Symmetry} rotationFirst - First operation\n * @return {PIXI.GD8Symmetry} Result\n */\n sub: function (rotationSecond, rotationFirst) { return (\n rotationCayley[rotationSecond][GroupD8.inv(rotationFirst)]\n ); },\n\n /**\n * Adds 180 degrees to rotation, which is a commutative\n * operation.\n *\n * @memberof PIXI.GroupD8\n * @param {number} rotation - The number to rotate.\n * @returns {number} Rotated number\n */\n rotate180: function (rotation) { return rotation ^ 4; },\n\n /**\n * Checks if the rotation angle is vertical, i.e. south\n * or north. It doesn't work for reflections.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.GD8Symmetry} rotation - The number to check.\n * @returns {boolean} Whether or not the direction is vertical\n */\n isVertical: function (rotation) { return (rotation & 3) === 2; }, // rotation % 4 === 2\n\n /**\n * Approximates the vector `V(dx,dy)` into one of the\n * eight directions provided by `GroupD8`.\n *\n * @memberof PIXI.GroupD8\n * @param {number} dx - X-component of the vector\n * @param {number} dy - Y-component of the vector\n * @return {PIXI.GD8Symmetry} Approximation of the vector into\n * one of the eight symmetries.\n */\n byDirection: function (dx, dy) {\n if (Math.abs(dx) * 2 <= Math.abs(dy))\n {\n if (dy >= 0)\n {\n return GroupD8.S;\n }\n\n return GroupD8.N;\n }\n else if (Math.abs(dy) * 2 <= Math.abs(dx))\n {\n if (dx > 0)\n {\n return GroupD8.E;\n }\n\n return GroupD8.W;\n }\n else if (dy > 0)\n {\n if (dx > 0)\n {\n return GroupD8.SE;\n }\n\n return GroupD8.SW;\n }\n else if (dx > 0)\n {\n return GroupD8.NE;\n }\n\n return GroupD8.NW;\n },\n\n /**\n * Helps sprite to compensate texture packer rotation.\n *\n * @memberof PIXI.GroupD8\n * @param {PIXI.Matrix} matrix - sprite world matrix\n * @param {PIXI.GD8Symmetry} rotation - The rotation factor to use.\n * @param {number} tx - sprite anchoring\n * @param {number} ty - sprite anchoring\n */\n matrixAppendRotationInv: function (matrix, rotation, tx, ty) {\n if ( tx === void 0 ) tx = 0;\n if ( ty === void 0 ) ty = 0;\n\n // Packer used \"rotation\", we use \"inv(rotation)\"\n var mat = rotationMatrices[GroupD8.inv(rotation)];\n\n mat.tx = tx;\n mat.ty = ty;\n matrix.append(mat);\n },\n};\n\n/**\n * Transform that takes care about its versions\n *\n * @class\n * @memberof PIXI\n */\nvar Transform = function Transform()\n{\n /**\n * The world transformation matrix.\n *\n * @member {PIXI.Matrix}\n */\n this.worldTransform = new Matrix();\n\n /**\n * The local transformation matrix.\n *\n * @member {PIXI.Matrix}\n */\n this.localTransform = new Matrix();\n\n /**\n * The coordinate of the object relative to the local coordinates of the parent.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.position = new ObservablePoint(this.onChange, this, 0, 0);\n\n /**\n * The scale factor of the object.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.scale = new ObservablePoint(this.onChange, this, 1, 1);\n\n /**\n * The pivot point of the displayObject that it rotates around.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.pivot = new ObservablePoint(this.onChange, this, 0, 0);\n\n /**\n * The skew amount, on the x and y axis.\n *\n * @member {PIXI.ObservablePoint}\n */\n this.skew = new ObservablePoint(this.updateSkew, this, 0, 0);\n\n /**\n * The rotation amount.\n *\n * @protected\n * @member {number}\n */\n this._rotation = 0;\n\n /**\n * The X-coordinate value of the normalized local X axis,\n * the first column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._cx = 1;\n\n /**\n * The Y-coordinate value of the normalized local X axis,\n * the first column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._sx = 0;\n\n /**\n * The X-coordinate value of the normalized local Y axis,\n * the second column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._cy = 0;\n\n /**\n * The Y-coordinate value of the normalized local Y axis,\n * the second column of the local transformation matrix without a scale.\n *\n * @protected\n * @member {number}\n */\n this._sy = 1;\n\n /**\n * The locally unique ID of the local transform.\n *\n * @protected\n * @member {number}\n */\n this._localID = 0;\n\n /**\n * The locally unique ID of the local transform\n * used to calculate the current local transformation matrix.\n *\n * @protected\n * @member {number}\n */\n this._currentLocalID = 0;\n\n /**\n * The locally unique ID of the world transform.\n *\n * @protected\n * @member {number}\n */\n this._worldID = 0;\n\n /**\n * The locally unique ID of the parent's world transform\n * used to calculate the current world transformation matrix.\n *\n * @protected\n * @member {number}\n */\n this._parentID = 0;\n};\n\nvar prototypeAccessors$1 = { rotation: { configurable: true } };\n\n/**\n * Called when a value changes.\n *\n * @protected\n */\nTransform.prototype.onChange = function onChange ()\n{\n this._localID++;\n};\n\n/**\n * Called when the skew or the rotation changes.\n *\n * @protected\n */\nTransform.prototype.updateSkew = function updateSkew ()\n{\n this._cx = Math.cos(this._rotation + this.skew._y);\n this._sx = Math.sin(this._rotation + this.skew._y);\n this._cy = -Math.sin(this._rotation - this.skew._x); // cos, added PI/2\n this._sy = Math.cos(this._rotation - this.skew._x); // sin, added PI/2\n\n this._localID++;\n};\n\n/**\n * Updates the local transformation matrix.\n */\nTransform.prototype.updateLocalTransform = function updateLocalTransform ()\n{\n var lt = this.localTransform;\n\n if (this._localID !== this._currentLocalID)\n {\n // get the matrix values of the displayobject based on its transform properties..\n lt.a = this._cx * this.scale._x;\n lt.b = this._sx * this.scale._x;\n lt.c = this._cy * this.scale._y;\n lt.d = this._sy * this.scale._y;\n\n lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c));\n lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d));\n this._currentLocalID = this._localID;\n\n // force an update..\n this._parentID = -1;\n }\n};\n\n/**\n * Updates the local and the world transformation matrices.\n *\n * @param {PIXI.Transform} parentTransform - The parent transform\n */\nTransform.prototype.updateTransform = function updateTransform (parentTransform)\n{\n var lt = this.localTransform;\n\n if (this._localID !== this._currentLocalID)\n {\n // get the matrix values of the displayobject based on its transform properties..\n lt.a = this._cx * this.scale._x;\n lt.b = this._sx * this.scale._x;\n lt.c = this._cy * this.scale._y;\n lt.d = this._sy * this.scale._y;\n\n lt.tx = this.position._x - ((this.pivot._x * lt.a) + (this.pivot._y * lt.c));\n lt.ty = this.position._y - ((this.pivot._x * lt.b) + (this.pivot._y * lt.d));\n this._currentLocalID = this._localID;\n\n // force an update..\n this._parentID = -1;\n }\n\n if (this._parentID !== parentTransform._worldID)\n {\n // concat the parent matrix with the objects transform.\n var pt = parentTransform.worldTransform;\n var wt = this.worldTransform;\n\n wt.a = (lt.a * pt.a) + (lt.b * pt.c);\n wt.b = (lt.a * pt.b) + (lt.b * pt.d);\n wt.c = (lt.c * pt.a) + (lt.d * pt.c);\n wt.d = (lt.c * pt.b) + (lt.d * pt.d);\n wt.tx = (lt.tx * pt.a) + (lt.ty * pt.c) + pt.tx;\n wt.ty = (lt.tx * pt.b) + (lt.ty * pt.d) + pt.ty;\n\n this._parentID = parentTransform._worldID;\n\n // update the id of the transform..\n this._worldID++;\n }\n};\n\n/**\n * Decomposes a matrix and sets the transforms properties based on it.\n *\n * @param {PIXI.Matrix} matrix - The matrix to decompose\n */\nTransform.prototype.setFromMatrix = function setFromMatrix (matrix)\n{\n matrix.decompose(this);\n this._localID++;\n};\n\n/**\n * The rotation of the object in radians.\n *\n * @member {number}\n */\nprototypeAccessors$1.rotation.get = function ()\n{\n return this._rotation;\n};\n\nprototypeAccessors$1.rotation.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (this._rotation !== value)\n {\n this._rotation = value;\n this.updateSkew();\n }\n};\n\nObject.defineProperties( Transform.prototype, prototypeAccessors$1 );\n\n/**\n * A default (identity) transform\n *\n * @static\n * @constant\n * @member {PIXI.Transform}\n */\nTransform.IDENTITY = new Transform();\n\n/**\n * Size object, contains width and height\n *\n * @memberof PIXI\n * @typedef {object} ISize\n * @property {number} width - Width component\n * @property {number} height - Height component\n */\n\n/**\n * Rectangle object is an area defined by its position, as indicated by its top-left corner\n * point (x, y) and by its width and its height.\n *\n * @class\n * @memberof PIXI\n */\nvar Rectangle = function Rectangle(x, y, width, height)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = Number(x);\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = Number(y);\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = Number(width);\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = Number(height);\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.RECT\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.RECT;\n};\n\nvar prototypeAccessors$2 = { left: { configurable: true },right: { configurable: true },top: { configurable: true },bottom: { configurable: true } };\nvar staticAccessors$1 = { EMPTY: { configurable: true } };\n\n/**\n * returns the left edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.left.get = function ()\n{\n return this.x;\n};\n\n/**\n * returns the right edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.right.get = function ()\n{\n return this.x + this.width;\n};\n\n/**\n * returns the top edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.top.get = function ()\n{\n return this.y;\n};\n\n/**\n * returns the bottom edge of the rectangle\n *\n * @member {number}\n */\nprototypeAccessors$2.bottom.get = function ()\n{\n return this.y + this.height;\n};\n\n/**\n * A constant empty rectangle.\n *\n * @static\n * @constant\n * @member {PIXI.Rectangle}\n */\nstaticAccessors$1.EMPTY.get = function ()\n{\n return new Rectangle(0, 0, 0, 0);\n};\n\n/**\n * Creates a clone of this Rectangle\n *\n * @return {PIXI.Rectangle} a copy of the rectangle\n */\nRectangle.prototype.clone = function clone ()\n{\n return new Rectangle(this.x, this.y, this.width, this.height);\n};\n\n/**\n * Copies another rectangle to this one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to copy from.\n * @return {PIXI.Rectangle} Returns itself.\n */\nRectangle.prototype.copyFrom = function copyFrom (rectangle)\n{\n this.x = rectangle.x;\n this.y = rectangle.y;\n this.width = rectangle.width;\n this.height = rectangle.height;\n\n return this;\n};\n\n/**\n * Copies this rectangle to another one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to copy to.\n * @return {PIXI.Rectangle} Returns given parameter.\n */\nRectangle.prototype.copyTo = function copyTo (rectangle)\n{\n rectangle.x = this.x;\n rectangle.y = this.y;\n rectangle.width = this.width;\n rectangle.height = this.height;\n\n return rectangle;\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this Rectangle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Rectangle\n */\nRectangle.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n\n if (x >= this.x && x < this.x + this.width)\n {\n if (y >= this.y && y < this.y + this.height)\n {\n return true;\n }\n }\n\n return false;\n};\n\n/**\n * Pads the rectangle making it grow in all directions.\n *\n * @param {number} paddingX - The horizontal padding amount.\n * @param {number} paddingY - The vertical padding amount.\n */\nRectangle.prototype.pad = function pad (paddingX, paddingY)\n{\n paddingX = paddingX || 0;\n paddingY = paddingY || ((paddingY !== 0) ? paddingX : 0);\n\n this.x -= paddingX;\n this.y -= paddingY;\n\n this.width += paddingX * 2;\n this.height += paddingY * 2;\n};\n\n/**\n * Fits this rectangle around the passed one.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to fit.\n */\nRectangle.prototype.fit = function fit (rectangle)\n{\n var x1 = Math.max(this.x, rectangle.x);\n var x2 = Math.min(this.x + this.width, rectangle.x + rectangle.width);\n var y1 = Math.max(this.y, rectangle.y);\n var y2 = Math.min(this.y + this.height, rectangle.y + rectangle.height);\n\n this.x = x1;\n this.width = Math.max(x2 - x1, 0);\n this.y = y1;\n this.height = Math.max(y2 - y1, 0);\n};\n\n/**\n * Enlarges rectangle that way its corners lie on grid\n *\n * @param {number} [resolution=1] resolution\n * @param {number} [eps=0.001] precision\n */\nRectangle.prototype.ceil = function ceil (resolution, eps)\n{\n if ( resolution === void 0 ) resolution = 1;\n if ( eps === void 0 ) eps = 0.001;\n\n var x2 = Math.ceil((this.x + this.width - eps) * resolution) / resolution;\n var y2 = Math.ceil((this.y + this.height - eps) * resolution) / resolution;\n\n this.x = Math.floor((this.x + eps) * resolution) / resolution;\n this.y = Math.floor((this.y + eps) * resolution) / resolution;\n\n this.width = x2 - this.x;\n this.height = y2 - this.y;\n};\n\n/**\n * Enlarges this rectangle to include the passed rectangle.\n *\n * @param {PIXI.Rectangle} rectangle - The rectangle to include.\n */\nRectangle.prototype.enlarge = function enlarge (rectangle)\n{\n var x1 = Math.min(this.x, rectangle.x);\n var x2 = Math.max(this.x + this.width, rectangle.x + rectangle.width);\n var y1 = Math.min(this.y, rectangle.y);\n var y2 = Math.max(this.y + this.height, rectangle.y + rectangle.height);\n\n this.x = x1;\n this.width = x2 - x1;\n this.y = y1;\n this.height = y2 - y1;\n};\n\nObject.defineProperties( Rectangle.prototype, prototypeAccessors$2 );\nObject.defineProperties( Rectangle, staticAccessors$1 );\n\n/**\n * The Circle object is used to help draw graphics and can also be used to specify a hit area for displayObjects.\n *\n * @class\n * @memberof PIXI\n */\nvar Circle = function Circle(x, y, radius)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( radius === void 0 ) radius = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.radius = radius;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.CIRC\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.CIRC;\n};\n\n/**\n * Creates a clone of this Circle instance\n *\n * @return {PIXI.Circle} a copy of the Circle\n */\nCircle.prototype.clone = function clone ()\n{\n return new Circle(this.x, this.y, this.radius);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this circle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Circle\n */\nCircle.prototype.contains = function contains (x, y)\n{\n if (this.radius <= 0)\n {\n return false;\n }\n\n var r2 = this.radius * this.radius;\n var dx = (this.x - x);\n var dy = (this.y - y);\n\n dx *= dx;\n dy *= dy;\n\n return (dx + dy <= r2);\n};\n\n/**\n* Returns the framing rectangle of the circle as a Rectangle object\n*\n* @return {PIXI.Rectangle} the framing rectangle\n*/\nCircle.prototype.getBounds = function getBounds ()\n{\n return new Rectangle(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2);\n};\n\n/**\n * The Ellipse object is used to help draw graphics and can also be used to specify a hit area for displayObjects.\n *\n * @class\n * @memberof PIXI\n */\nvar Ellipse = function Ellipse(x, y, halfWidth, halfHeight)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( halfWidth === void 0 ) halfWidth = 0;\n if ( halfHeight === void 0 ) halfHeight = 0;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = halfWidth;\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = halfHeight;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.ELIP\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.ELIP;\n};\n\n/**\n * Creates a clone of this Ellipse instance\n *\n * @return {PIXI.Ellipse} a copy of the ellipse\n */\nEllipse.prototype.clone = function clone ()\n{\n return new Ellipse(this.x, this.y, this.width, this.height);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this ellipse\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coords are within this ellipse\n */\nEllipse.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n\n // normalize the coords to an ellipse with center 0,0\n var normx = ((x - this.x) / this.width);\n var normy = ((y - this.y) / this.height);\n\n normx *= normx;\n normy *= normy;\n\n return (normx + normy <= 1);\n};\n\n/**\n * Returns the framing rectangle of the ellipse as a Rectangle object\n *\n * @return {PIXI.Rectangle} the framing rectangle\n */\nEllipse.prototype.getBounds = function getBounds ()\n{\n return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height);\n};\n\n/**\n * A class to define a shape via user defined co-orinates.\n *\n * @class\n * @memberof PIXI\n */\nvar Polygon = function Polygon()\n{\n var points = [], len = arguments.length;\n while ( len-- ) points[ len ] = arguments[ len ];\n\n if (Array.isArray(points[0]))\n {\n points = points[0];\n }\n\n // if this is an array of points, convert it to a flat array of numbers\n if (points[0] instanceof Point)\n {\n var p = [];\n\n for (var i = 0, il = points.length; i < il; i++)\n {\n p.push(points[i].x, points[i].y);\n }\n\n points = p;\n }\n\n /**\n * An array of the points of this polygon\n *\n * @member {number[]}\n */\n this.points = points;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readOnly\n * @default PIXI.SHAPES.POLY\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.POLY;\n\n /**\n * `false` after moveTo, `true` after `closePath`. In all other cases it is `true`.\n * @member {boolean}\n * @default true\n */\n this.closeStroke = true;\n};\n\n/**\n * Creates a clone of this polygon\n *\n * @return {PIXI.Polygon} a copy of the polygon\n */\nPolygon.prototype.clone = function clone ()\n{\n var polygon = new Polygon(this.points.slice());\n\n polygon.closeStroke = this.closeStroke;\n\n return polygon;\n};\n\n/**\n * Checks whether the x and y coordinates passed to this function are contained within this polygon\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this polygon\n */\nPolygon.prototype.contains = function contains (x, y)\n{\n var inside = false;\n\n // use some raycasting to test hits\n // https://github.com/substack/point-in-polygon/blob/master/index.js\n var length = this.points.length / 2;\n\n for (var i = 0, j = length - 1; i < length; j = i++)\n {\n var xi = this.points[i * 2];\n var yi = this.points[(i * 2) + 1];\n var xj = this.points[j * 2];\n var yj = this.points[(j * 2) + 1];\n var intersect = ((yi > y) !== (yj > y)) && (x < ((xj - xi) * ((y - yi) / (yj - yi))) + xi);\n\n if (intersect)\n {\n inside = !inside;\n }\n }\n\n return inside;\n};\n\n/**\n * The Rounded Rectangle object is an area that has nice rounded corners, as indicated by its\n * top-left corner point (x, y) and by its width and its height and its radius.\n *\n * @class\n * @memberof PIXI\n */\nvar RoundedRectangle = function RoundedRectangle(x, y, width, height, radius)\n{\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n if ( radius === void 0 ) radius = 20;\n\n /**\n * @member {number}\n * @default 0\n */\n this.x = x;\n\n /**\n * @member {number}\n * @default 0\n */\n this.y = y;\n\n /**\n * @member {number}\n * @default 0\n */\n this.width = width;\n\n /**\n * @member {number}\n * @default 0\n */\n this.height = height;\n\n /**\n * @member {number}\n * @default 20\n */\n this.radius = radius;\n\n /**\n * The type of the object, mainly used to avoid `instanceof` checks\n *\n * @member {number}\n * @readonly\n * @default PIXI.SHAPES.RREC\n * @see PIXI.SHAPES\n */\n this.type = SHAPES.RREC;\n};\n\n/**\n * Creates a clone of this Rounded Rectangle\n *\n * @return {PIXI.RoundedRectangle} a copy of the rounded rectangle\n */\nRoundedRectangle.prototype.clone = function clone ()\n{\n return new RoundedRectangle(this.x, this.y, this.width, this.height, this.radius);\n};\n\n/**\n * Checks whether the x and y coordinates given are contained within this Rounded Rectangle\n *\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this Rounded Rectangle\n */\nRoundedRectangle.prototype.contains = function contains (x, y)\n{\n if (this.width <= 0 || this.height <= 0)\n {\n return false;\n }\n if (x >= this.x && x <= this.x + this.width)\n {\n if (y >= this.y && y <= this.y + this.height)\n {\n if ((y >= this.y + this.radius && y <= this.y + this.height - this.radius)\n || (x >= this.x + this.radius && x <= this.x + this.width - this.radius))\n {\n return true;\n }\n var dx = x - (this.x + this.radius);\n var dy = y - (this.y + this.radius);\n var radius2 = this.radius * this.radius;\n\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dx = x - (this.x + this.width - this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dy = y - (this.y + this.height - this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n dx = x - (this.x + this.radius);\n if ((dx * dx) + (dy * dy) <= radius2)\n {\n return true;\n }\n }\n }\n\n return false;\n};\n\n/**\n * Math classes and utilities mixed into PIXI namespace.\n *\n * @lends PIXI\n */\n\nexport { Circle, DEG_TO_RAD, Ellipse, GroupD8, Matrix, ObservablePoint, PI_2, Point, Polygon, RAD_TO_DEG, Rectangle, RoundedRectangle, SHAPES, Transform };\n//# sourceMappingURL=math.es.js.map\n","/*!\n * @pixi/display - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/display is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nimport { Rectangle, RAD_TO_DEG, DEG_TO_RAD, Transform } from '@pixi/math';\nimport { EventEmitter, removeItems } from '@pixi/utils';\n\n/**\n * Sets the default value for the container property 'sortableChildren'.\n * If set to true, the container will sort its children by zIndex value\n * when updateTransform() is called, or manually if sortChildren() is called.\n *\n * This actually changes the order of elements in the array, so should be treated\n * as a basic solution that is not performant compared to other solutions,\n * such as @link https://github.com/pixijs/pixi-display\n *\n * Also be aware of that this may not work nicely with the addChildAt() function,\n * as the zIndex sorting may cause the child to automatically sorted to another position.\n *\n * @static\n * @constant\n * @name SORTABLE_CHILDREN\n * @memberof PIXI.settings\n * @type {boolean}\n * @default false\n */\nsettings.SORTABLE_CHILDREN = false;\n\n/**\n * 'Builder' pattern for bounds rectangles.\n *\n * This could be called an Axis-Aligned Bounding Box.\n * It is not an actual shape. It is a mutable thing; no 'EMPTY' or those kind of problems.\n *\n * @class\n * @memberof PIXI\n */\nvar Bounds = function Bounds()\n{\n /**\n * @member {number}\n * @default 0\n */\n this.minX = Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.minY = Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.maxX = -Infinity;\n\n /**\n * @member {number}\n * @default 0\n */\n this.maxY = -Infinity;\n\n this.rect = null;\n};\n\n/**\n * Checks if bounds are empty.\n *\n * @return {boolean} True if empty.\n */\nBounds.prototype.isEmpty = function isEmpty ()\n{\n return this.minX > this.maxX || this.minY > this.maxY;\n};\n\n/**\n * Clears the bounds and resets.\n *\n */\nBounds.prototype.clear = function clear ()\n{\n this.updateID++;\n\n this.minX = Infinity;\n this.minY = Infinity;\n this.maxX = -Infinity;\n this.maxY = -Infinity;\n};\n\n/**\n * Can return Rectangle.EMPTY constant, either construct new rectangle, either use your rectangle\n * It is not guaranteed that it will return tempRect\n *\n * @param {PIXI.Rectangle} rect - temporary object will be used if AABB is not empty\n * @returns {PIXI.Rectangle} A rectangle of the bounds\n */\nBounds.prototype.getRectangle = function getRectangle (rect)\n{\n if (this.minX > this.maxX || this.minY > this.maxY)\n {\n return Rectangle.EMPTY;\n }\n\n rect = rect || new Rectangle(0, 0, 1, 1);\n\n rect.x = this.minX;\n rect.y = this.minY;\n rect.width = this.maxX - this.minX;\n rect.height = this.maxY - this.minY;\n\n return rect;\n};\n\n/**\n * This function should be inlined when its possible.\n *\n * @param {PIXI.Point} point - The point to add.\n */\nBounds.prototype.addPoint = function addPoint (point)\n{\n this.minX = Math.min(this.minX, point.x);\n this.maxX = Math.max(this.maxX, point.x);\n this.minY = Math.min(this.minY, point.y);\n this.maxY = Math.max(this.maxY, point.y);\n};\n\n/**\n * Adds a quad, not transformed\n *\n * @param {Float32Array} vertices - The verts to add.\n */\nBounds.prototype.addQuad = function addQuad (vertices)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n var x = vertices[0];\n var y = vertices[1];\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[2];\n y = vertices[3];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[4];\n y = vertices[5];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = vertices[6];\n y = vertices[7];\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds sprite frame, transformed.\n *\n * @param {PIXI.Transform} transform - TODO\n * @param {number} x0 - TODO\n * @param {number} y0 - TODO\n * @param {number} x1 - TODO\n * @param {number} y1 - TODO\n */\nBounds.prototype.addFrame = function addFrame (transform, x0, y0, x1, y1)\n{\n var matrix = transform.worldTransform;\n var a = matrix.a;\n var b = matrix.b;\n var c = matrix.c;\n var d = matrix.d;\n var tx = matrix.tx;\n var ty = matrix.ty;\n\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n var x = (a * x0) + (c * y0) + tx;\n var y = (b * x0) + (d * y0) + ty;\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x1) + (c * y0) + tx;\n y = (b * x1) + (d * y0) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x0) + (c * y1) + tx;\n y = (b * x0) + (d * y1) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n x = (a * x1) + (c * y1) + tx;\n y = (b * x1) + (d * y1) + ty;\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds screen vertices from array\n *\n * @param {Float32Array} vertexData - calculated vertices\n * @param {number} beginOffset - begin offset\n * @param {number} endOffset - end offset, excluded\n */\nBounds.prototype.addVertexData = function addVertexData (vertexData, beginOffset, endOffset)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n for (var i = beginOffset; i < endOffset; i += 2)\n {\n var x = vertexData[i];\n var y = vertexData[i + 1];\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n }\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Add an array of mesh vertices\n *\n * @param {PIXI.Transform} transform - mesh transform\n * @param {Float32Array} vertices - mesh coordinates in array\n * @param {number} beginOffset - begin offset\n * @param {number} endOffset - end offset, excluded\n */\nBounds.prototype.addVertices = function addVertices (transform, vertices, beginOffset, endOffset)\n{\n var matrix = transform.worldTransform;\n var a = matrix.a;\n var b = matrix.b;\n var c = matrix.c;\n var d = matrix.d;\n var tx = matrix.tx;\n var ty = matrix.ty;\n\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n for (var i = beginOffset; i < endOffset; i += 2)\n {\n var rawX = vertices[i];\n var rawY = vertices[i + 1];\n var x = (a * rawX) + (c * rawY) + tx;\n var y = (d * rawY) + (b * rawX) + ty;\n\n minX = x < minX ? x : minX;\n minY = y < minY ? y : minY;\n maxX = x > maxX ? x : maxX;\n maxY = y > maxY ? y : maxY;\n }\n\n this.minX = minX;\n this.minY = minY;\n this.maxX = maxX;\n this.maxY = maxY;\n};\n\n/**\n * Adds other Bounds\n *\n * @param {PIXI.Bounds} bounds - TODO\n */\nBounds.prototype.addBounds = function addBounds (bounds)\n{\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = bounds.minX < minX ? bounds.minX : minX;\n this.minY = bounds.minY < minY ? bounds.minY : minY;\n this.maxX = bounds.maxX > maxX ? bounds.maxX : maxX;\n this.maxY = bounds.maxY > maxY ? bounds.maxY : maxY;\n};\n\n/**\n * Adds other Bounds, masked with Bounds\n *\n * @param {PIXI.Bounds} bounds - TODO\n * @param {PIXI.Bounds} mask - TODO\n */\nBounds.prototype.addBoundsMask = function addBoundsMask (bounds, mask)\n{\n var _minX = bounds.minX > mask.minX ? bounds.minX : mask.minX;\n var _minY = bounds.minY > mask.minY ? bounds.minY : mask.minY;\n var _maxX = bounds.maxX < mask.maxX ? bounds.maxX : mask.maxX;\n var _maxY = bounds.maxY < mask.maxY ? bounds.maxY : mask.maxY;\n\n if (_minX <= _maxX && _minY <= _maxY)\n {\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = _minX < minX ? _minX : minX;\n this.minY = _minY < minY ? _minY : minY;\n this.maxX = _maxX > maxX ? _maxX : maxX;\n this.maxY = _maxY > maxY ? _maxY : maxY;\n }\n};\n\n/**\n * Adds other Bounds, masked with Rectangle\n *\n * @param {PIXI.Bounds} bounds - TODO\n * @param {PIXI.Rectangle} area - TODO\n */\nBounds.prototype.addBoundsArea = function addBoundsArea (bounds, area)\n{\n var _minX = bounds.minX > area.x ? bounds.minX : area.x;\n var _minY = bounds.minY > area.y ? bounds.minY : area.y;\n var _maxX = bounds.maxX < area.x + area.width ? bounds.maxX : (area.x + area.width);\n var _maxY = bounds.maxY < area.y + area.height ? bounds.maxY : (area.y + area.height);\n\n if (_minX <= _maxX && _minY <= _maxY)\n {\n var minX = this.minX;\n var minY = this.minY;\n var maxX = this.maxX;\n var maxY = this.maxY;\n\n this.minX = _minX < minX ? _minX : minX;\n this.minY = _minY < minY ? _minY : minY;\n this.maxX = _maxX > maxX ? _maxX : maxX;\n this.maxY = _maxY > maxY ? _maxY : maxY;\n }\n};\n\n// _tempDisplayObjectParent = new DisplayObject();\n\n/**\n * The base class for all objects that are rendered on the screen.\n *\n * This is an abstract class and should not be used on its own; rather it should be extended.\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar DisplayObject = /*@__PURE__*/(function (EventEmitter) {\n function DisplayObject()\n {\n EventEmitter.call(this);\n\n this.tempDisplayObjectParent = null;\n\n // TODO: need to create Transform from factory\n /**\n * World transform and local transform of this object.\n * This will become read-only later, please do not assign anything there unless you know what are you doing.\n *\n * @member {PIXI.Transform}\n */\n this.transform = new Transform();\n\n /**\n * The opacity of the object.\n *\n * @member {number}\n */\n this.alpha = 1;\n\n /**\n * The visibility of the object. If false the object will not be drawn, and\n * the updateTransform function will not be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds or call updateTransform manually.\n *\n * @member {boolean}\n */\n this.visible = true;\n\n /**\n * Can this object be rendered, if false the object will not be drawn but the updateTransform\n * methods will still be called.\n *\n * Only affects recursive calls from parent. You can ask for bounds manually.\n *\n * @member {boolean}\n */\n this.renderable = true;\n\n /**\n * The display object container that contains this display object.\n *\n * @member {PIXI.Container}\n * @readonly\n */\n this.parent = null;\n\n /**\n * The multiplied alpha of the displayObject.\n *\n * @member {number}\n * @readonly\n */\n this.worldAlpha = 1;\n\n /**\n * Which index in the children array the display component was before the previous zIndex sort.\n * Used by containers to help sort objects with the same zIndex, by using previous array index as the decider.\n *\n * @member {number}\n * @protected\n */\n this._lastSortedIndex = 0;\n\n /**\n * The zIndex of the displayObject.\n * A higher value will mean it will be rendered on top of other displayObjects within the same container.\n *\n * @member {number}\n * @protected\n */\n this._zIndex = 0;\n\n /**\n * The area the filter is applied to. This is used as more of an optimization\n * rather than figuring out the dimensions of the displayObject each frame you can set this rectangle.\n *\n * Also works as an interaction mask.\n *\n * @member {?PIXI.Rectangle}\n */\n this.filterArea = null;\n\n /**\n * Sets the filters for the displayObject.\n * * IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer.\n * To remove filters simply set this property to `'null'`.\n *\n * @member {?PIXI.Filter[]}\n */\n this.filters = null;\n this._enabledFilters = null;\n\n /**\n * The bounds object, this is used to calculate and store the bounds of the displayObject.\n *\n * @member {PIXI.Bounds}\n * @protected\n */\n this._bounds = new Bounds();\n this._boundsID = 0;\n this._lastBoundsID = -1;\n this._boundsRect = null;\n this._localBoundsRect = null;\n\n /**\n * The original, cached mask of the object.\n *\n * @member {PIXI.Graphics|PIXI.Sprite|null}\n * @protected\n */\n this._mask = null;\n\n /**\n * Fired when this DisplayObject is added to a Container.\n *\n * @event PIXI.DisplayObject#added\n * @param {PIXI.Container} container - The container added to.\n */\n\n /**\n * Fired when this DisplayObject is removed from a Container.\n *\n * @event PIXI.DisplayObject#removed\n * @param {PIXI.Container} container - The container removed from.\n */\n\n /**\n * If the object has been destroyed via destroy(). If true, it should not be used.\n *\n * @member {boolean}\n * @protected\n */\n this._destroyed = false;\n\n /**\n * used to fast check if a sprite is.. a sprite!\n * @member {boolean}\n */\n this.isSprite = false;\n }\n\n if ( EventEmitter ) DisplayObject.__proto__ = EventEmitter;\n DisplayObject.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n DisplayObject.prototype.constructor = DisplayObject;\n\n var prototypeAccessors = { _tempDisplayObjectParent: { configurable: true },x: { configurable: true },y: { configurable: true },worldTransform: { configurable: true },localTransform: { configurable: true },position: { configurable: true },scale: { configurable: true },pivot: { configurable: true },skew: { configurable: true },rotation: { configurable: true },angle: { configurable: true },zIndex: { configurable: true },worldVisible: { configurable: true },mask: { configurable: true } };\n\n /**\n * @protected\n * @member {PIXI.DisplayObject}\n */\n DisplayObject.mixin = function mixin (source)\n {\n // in ES8/ES2017, this would be really easy:\n // Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n\n // get all the enumerable property keys\n var keys = Object.keys(source);\n\n // loop through properties\n for (var i = 0; i < keys.length; ++i)\n {\n var propertyName = keys[i];\n\n // Set the property using the property descriptor - this works for accessors and normal value properties\n Object.defineProperty(\n DisplayObject.prototype,\n propertyName,\n Object.getOwnPropertyDescriptor(source, propertyName)\n );\n }\n };\n\n prototypeAccessors._tempDisplayObjectParent.get = function ()\n {\n if (this.tempDisplayObjectParent === null)\n {\n this.tempDisplayObjectParent = new DisplayObject();\n }\n\n return this.tempDisplayObjectParent;\n };\n\n /**\n * Updates the object transform for rendering.\n *\n * TODO - Optimization pass!\n */\n DisplayObject.prototype.updateTransform = function updateTransform ()\n {\n this.transform.updateTransform(this.parent.transform);\n // multiply the alphas..\n this.worldAlpha = this.alpha * this.parent.worldAlpha;\n\n this._bounds.updateID++;\n };\n\n /**\n * Recursively updates transform of all objects from the root to this one\n * internal function for toLocal()\n */\n DisplayObject.prototype._recursivePostUpdateTransform = function _recursivePostUpdateTransform ()\n {\n if (this.parent)\n {\n this.parent._recursivePostUpdateTransform();\n this.transform.updateTransform(this.parent.transform);\n }\n else\n {\n this.transform.updateTransform(this._tempDisplayObjectParent.transform);\n }\n };\n\n /**\n * Retrieves the bounds of the displayObject as a rectangle object.\n *\n * @param {boolean} [skipUpdate] - Setting to `true` will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost.\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation.\n * @return {PIXI.Rectangle} The rectangular bounding area.\n */\n DisplayObject.prototype.getBounds = function getBounds (skipUpdate, rect)\n {\n if (!skipUpdate)\n {\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this._recursivePostUpdateTransform();\n this.updateTransform();\n }\n }\n\n if (this._boundsID !== this._lastBoundsID)\n {\n this.calculateBounds();\n this._lastBoundsID = this._boundsID;\n }\n\n if (!rect)\n {\n if (!this._boundsRect)\n {\n this._boundsRect = new Rectangle();\n }\n\n rect = this._boundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n };\n\n /**\n * Retrieves the local bounds of the displayObject as a rectangle object.\n *\n * @param {PIXI.Rectangle} [rect] - Optional rectangle to store the result of the bounds calculation.\n * @return {PIXI.Rectangle} The rectangular bounding area.\n */\n DisplayObject.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n var transformRef = this.transform;\n var parentRef = this.parent;\n\n this.parent = null;\n this.transform = this._tempDisplayObjectParent.transform;\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n var bounds = this.getBounds(false, rect);\n\n this.parent = parentRef;\n this.transform = transformRef;\n\n return bounds;\n };\n\n /**\n * Calculates the global position of the display object.\n *\n * @param {PIXI.IPoint} position - The world origin to calculate from.\n * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point).\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform.\n * @return {PIXI.IPoint} A point object representing the position of this object.\n */\n DisplayObject.prototype.toGlobal = function toGlobal (position, point, skipUpdate)\n {\n if ( skipUpdate === void 0 ) skipUpdate = false;\n\n if (!skipUpdate)\n {\n this._recursivePostUpdateTransform();\n\n // this parent check is for just in case the item is a root object.\n // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly\n // this is mainly to avoid a parent check in the main loop. Every little helps for performance :)\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.displayObjectUpdateTransform();\n this.parent = null;\n }\n else\n {\n this.displayObjectUpdateTransform();\n }\n }\n\n // don't need to update the lot\n return this.worldTransform.apply(position, point);\n };\n\n /**\n * Calculates the local position of the display object relative to another point.\n *\n * @param {PIXI.IPoint} position - The world origin to calculate from.\n * @param {PIXI.DisplayObject} [from] - The DisplayObject to calculate the global position from.\n * @param {PIXI.IPoint} [point] - A Point object in which to store the value, optional\n * (otherwise will create a new Point).\n * @param {boolean} [skipUpdate=false] - Should we skip the update transform\n * @return {PIXI.IPoint} A point object representing the position of this object\n */\n DisplayObject.prototype.toLocal = function toLocal (position, from, point, skipUpdate)\n {\n if (from)\n {\n position = from.toGlobal(position, point, skipUpdate);\n }\n\n if (!skipUpdate)\n {\n this._recursivePostUpdateTransform();\n\n // this parent check is for just in case the item is a root object.\n // If it is we need to give it a temporary parent so that displayObjectUpdateTransform works correctly\n // this is mainly to avoid a parent check in the main loop. Every little helps for performance :)\n if (!this.parent)\n {\n this.parent = this._tempDisplayObjectParent;\n this.displayObjectUpdateTransform();\n this.parent = null;\n }\n else\n {\n this.displayObjectUpdateTransform();\n }\n }\n\n // simply apply the matrix..\n return this.worldTransform.applyInverse(position, point);\n };\n\n /**\n * Renders the object using the WebGL renderer.\n *\n * @param {PIXI.Renderer} renderer - The renderer.\n */\n DisplayObject.prototype.render = function render (renderer) // eslint-disable-line no-unused-vars\n {\n // OVERWRITE;\n };\n\n /**\n * Set the parent Container of this DisplayObject.\n *\n * @param {PIXI.Container} container - The Container to add this DisplayObject to.\n * @return {PIXI.Container} The Container that this DisplayObject was added to.\n */\n DisplayObject.prototype.setParent = function setParent (container)\n {\n if (!container || !container.addChild)\n {\n throw new Error('setParent: Argument must be a Container');\n }\n\n container.addChild(this);\n\n return container;\n };\n\n /**\n * Convenience function to set the position, scale, skew and pivot at once.\n *\n * @param {number} [x=0] - The X position\n * @param {number} [y=0] - The Y position\n * @param {number} [scaleX=1] - The X scale value\n * @param {number} [scaleY=1] - The Y scale value\n * @param {number} [rotation=0] - The rotation\n * @param {number} [skewX=0] - The X skew value\n * @param {number} [skewY=0] - The Y skew value\n * @param {number} [pivotX=0] - The X pivot value\n * @param {number} [pivotY=0] - The Y pivot value\n * @return {PIXI.DisplayObject} The DisplayObject instance\n */\n DisplayObject.prototype.setTransform = function setTransform (x, y, scaleX, scaleY, rotation, skewX, skewY, pivotX, pivotY)\n {\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n if ( scaleX === void 0 ) scaleX = 1;\n if ( scaleY === void 0 ) scaleY = 1;\n if ( rotation === void 0 ) rotation = 0;\n if ( skewX === void 0 ) skewX = 0;\n if ( skewY === void 0 ) skewY = 0;\n if ( pivotX === void 0 ) pivotX = 0;\n if ( pivotY === void 0 ) pivotY = 0;\n\n this.position.x = x;\n this.position.y = y;\n this.scale.x = !scaleX ? 1 : scaleX;\n this.scale.y = !scaleY ? 1 : scaleY;\n this.rotation = rotation;\n this.skew.x = skewX;\n this.skew.y = skewY;\n this.pivot.x = pivotX;\n this.pivot.y = pivotY;\n\n return this;\n };\n\n /**\n * Base destroy method for generic display objects. This will automatically\n * remove the display object from its parent Container as well as remove\n * all current event listeners and internal references. Do not use a DisplayObject\n * after calling `destroy()`.\n *\n */\n DisplayObject.prototype.destroy = function destroy ()\n {\n this.removeAllListeners();\n if (this.parent)\n {\n this.parent.removeChild(this);\n }\n this.transform = null;\n\n this.parent = null;\n\n this._bounds = null;\n this._currentBounds = null;\n this._mask = null;\n\n this.filterArea = null;\n\n this.interactive = false;\n this.interactiveChildren = false;\n\n this._destroyed = true;\n };\n\n /**\n * The position of the displayObject on the x axis relative to the local coordinates of the parent.\n * An alias to position.x\n *\n * @member {number}\n */\n prototypeAccessors.x.get = function ()\n {\n return this.position.x;\n };\n\n prototypeAccessors.x.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.x = value;\n };\n\n /**\n * The position of the displayObject on the y axis relative to the local coordinates of the parent.\n * An alias to position.y\n *\n * @member {number}\n */\n prototypeAccessors.y.get = function ()\n {\n return this.position.y;\n };\n\n prototypeAccessors.y.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.y = value;\n };\n\n /**\n * Current transform of the object based on world (parent) factors.\n *\n * @member {PIXI.Matrix}\n * @readonly\n */\n prototypeAccessors.worldTransform.get = function ()\n {\n return this.transform.worldTransform;\n };\n\n /**\n * Current transform of the object based on local factors: position, scale, other stuff.\n *\n * @member {PIXI.Matrix}\n * @readonly\n */\n prototypeAccessors.localTransform.get = function ()\n {\n return this.transform.localTransform;\n };\n\n /**\n * The coordinate of the object relative to the local coordinates of the parent.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.position.get = function ()\n {\n return this.transform.position;\n };\n\n prototypeAccessors.position.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.position.copyFrom(value);\n };\n\n /**\n * The scale factor of the object.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.scale.get = function ()\n {\n return this.transform.scale;\n };\n\n prototypeAccessors.scale.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.scale.copyFrom(value);\n };\n\n /**\n * The pivot point of the displayObject that it rotates around.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.IPoint}\n */\n prototypeAccessors.pivot.get = function ()\n {\n return this.transform.pivot;\n };\n\n prototypeAccessors.pivot.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.pivot.copyFrom(value);\n };\n\n /**\n * The skew factor for the object in radians.\n * Assignment by value since pixi-v4.\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.skew.get = function ()\n {\n return this.transform.skew;\n };\n\n prototypeAccessors.skew.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.skew.copyFrom(value);\n };\n\n /**\n * The rotation of the object in radians.\n * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees.\n *\n * @member {number}\n */\n prototypeAccessors.rotation.get = function ()\n {\n return this.transform.rotation;\n };\n\n prototypeAccessors.rotation.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.rotation = value;\n };\n\n /**\n * The angle of the object in degrees.\n * 'rotation' and 'angle' have the same effect on a display object; rotation is in radians, angle is in degrees.\n *\n * @member {number}\n */\n prototypeAccessors.angle.get = function ()\n {\n return this.transform.rotation * RAD_TO_DEG;\n };\n\n prototypeAccessors.angle.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.transform.rotation = value * DEG_TO_RAD;\n };\n\n /**\n * The zIndex of the displayObject.\n * If a container has the sortableChildren property set to true, children will be automatically\n * sorted by zIndex value; a higher value will mean it will be moved towards the end of the array,\n * and thus rendered on top of other displayObjects within the same container.\n *\n * @member {number}\n */\n prototypeAccessors.zIndex.get = function ()\n {\n return this._zIndex;\n };\n\n prototypeAccessors.zIndex.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._zIndex = value;\n if (this.parent)\n {\n this.parent.sortDirty = true;\n }\n };\n\n /**\n * Indicates if the object is globally visible.\n *\n * @member {boolean}\n * @readonly\n */\n prototypeAccessors.worldVisible.get = function ()\n {\n var item = this;\n\n do\n {\n if (!item.visible)\n {\n return false;\n }\n\n item = item.parent;\n } while (item);\n\n return true;\n };\n\n /**\n * Sets a mask for the displayObject. A mask is an object that limits the visibility of an\n * object to the shape of the mask applied to it. In PixiJS a regular mask must be a\n * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it\n * utilities shape clipping. To remove a mask, set this property to `null`.\n *\n * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask.\n * @example\n * const graphics = new PIXI.Graphics();\n * graphics.beginFill(0xFF3300);\n * graphics.drawRect(50, 250, 100, 100);\n * graphics.endFill();\n *\n * const sprite = new PIXI.Sprite(texture);\n * sprite.mask = graphics;\n * @todo At the moment, PIXI.CanvasRenderer doesn't support PIXI.Sprite as mask.\n *\n * @member {PIXI.Graphics|PIXI.Sprite|null}\n */\n prototypeAccessors.mask.get = function ()\n {\n return this._mask;\n };\n\n prototypeAccessors.mask.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._mask)\n {\n this._mask.renderable = true;\n this._mask.isMask = false;\n }\n\n this._mask = value;\n\n if (this._mask)\n {\n this._mask.renderable = false;\n this._mask.isMask = true;\n }\n };\n\n Object.defineProperties( DisplayObject.prototype, prototypeAccessors );\n\n return DisplayObject;\n}(EventEmitter));\n\n/**\n * DisplayObject default updateTransform, does not update children of container.\n * Will crash if there's no parent element.\n *\n * @memberof PIXI.DisplayObject#\n * @function displayObjectUpdateTransform\n */\nDisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform;\n\nfunction sortChildren(a, b)\n{\n if (a.zIndex === b.zIndex)\n {\n return a._lastSortedIndex - b._lastSortedIndex;\n }\n\n return a.zIndex - b.zIndex;\n}\n\n/**\n * A Container represents a collection of display objects.\n *\n * It is the base class of all display objects that act as a container for other objects (like Sprites).\n *\n *```js\n * let container = new PIXI.Container();\n * container.addChild(sprite);\n * ```\n *\n * @class\n * @extends PIXI.DisplayObject\n * @memberof PIXI\n */\nvar Container = /*@__PURE__*/(function (DisplayObject) {\n function Container()\n {\n DisplayObject.call(this);\n\n /**\n * The array of children of this container.\n *\n * @member {PIXI.DisplayObject[]}\n * @readonly\n */\n this.children = [];\n\n /**\n * If set to true, the container will sort its children by zIndex value\n * when updateTransform() is called, or manually if sortChildren() is called.\n *\n * This actually changes the order of elements in the array, so should be treated\n * as a basic solution that is not performant compared to other solutions,\n * such as @link https://github.com/pixijs/pixi-display\n *\n * Also be aware of that this may not work nicely with the addChildAt() function,\n * as the zIndex sorting may cause the child to automatically sorted to another position.\n *\n * @see PIXI.settings.SORTABLE_CHILDREN\n *\n * @member {boolean}\n */\n this.sortableChildren = settings.SORTABLE_CHILDREN;\n\n /**\n * Should children be sorted by zIndex at the next updateTransform call.\n * Will get automatically set to true if a new child is added, or if a child's zIndex changes.\n *\n * @member {boolean}\n */\n this.sortDirty = false;\n\n /**\n * Fired when a DisplayObject is added to this Container.\n *\n * @event PIXI.Container#childAdded\n * @param {PIXI.DisplayObject} child - The child added to the Container.\n * @param {PIXI.Container} container - The container that added the child.\n * @param {number} index - The children's index of the added child.\n */\n\n /**\n * Fired when a DisplayObject is removed from this Container.\n *\n * @event PIXI.DisplayObject#removedFrom\n * @param {PIXI.DisplayObject} child - The child removed from the Container.\n * @param {PIXI.Container} container - The container that removed removed the child.\n * @param {number} index - The former children's index of the removed child\n */\n }\n\n if ( DisplayObject ) Container.__proto__ = DisplayObject;\n Container.prototype = Object.create( DisplayObject && DisplayObject.prototype );\n Container.prototype.constructor = Container;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true } };\n\n /**\n * Overridable method that can be used by Container subclasses whenever the children array is modified\n *\n * @protected\n */\n Container.prototype.onChildrenChange = function onChildrenChange ()\n {\n /* empty */\n };\n\n /**\n * Adds one or more children to the container.\n *\n * Multiple items can be added like so: `myContainer.addChild(thingOne, thingTwo, thingThree)`\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to add to the container\n * @return {PIXI.DisplayObject} The first child that was added.\n */\n Container.prototype.addChild = function addChild (child)\n {\n var arguments$1 = arguments;\n\n var argumentsLength = arguments.length;\n\n // if there is only one argument we can bypass looping through the them\n if (argumentsLength > 1)\n {\n // loop through the arguments property and add all children\n // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes\n for (var i = 0; i < argumentsLength; i++)\n {\n this.addChild(arguments$1[i]);\n }\n }\n else\n {\n // if the child has a parent then lets remove it as PixiJS objects can only exist in one place\n if (child.parent)\n {\n child.parent.removeChild(child);\n }\n\n child.parent = this;\n this.sortDirty = true;\n\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n\n this.children.push(child);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(this.children.length - 1);\n this.emit('childAdded', child, this, this.children.length - 1);\n child.emit('added', this);\n }\n\n return child;\n };\n\n /**\n * Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown\n *\n * @param {PIXI.DisplayObject} child - The child to add\n * @param {number} index - The index to place the child in\n * @return {PIXI.DisplayObject} The child that was added.\n */\n Container.prototype.addChildAt = function addChildAt (child, index)\n {\n if (index < 0 || index > this.children.length)\n {\n throw new Error((child + \"addChildAt: The index \" + index + \" supplied is out of bounds \" + (this.children.length)));\n }\n\n if (child.parent)\n {\n child.parent.removeChild(child);\n }\n\n child.parent = this;\n this.sortDirty = true;\n\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n\n this.children.splice(index, 0, child);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('added', this);\n this.emit('childAdded', child, this, index);\n\n return child;\n };\n\n /**\n * Swaps the position of 2 Display Objects within this container.\n *\n * @param {PIXI.DisplayObject} child - First display object to swap\n * @param {PIXI.DisplayObject} child2 - Second display object to swap\n */\n Container.prototype.swapChildren = function swapChildren (child, child2)\n {\n if (child === child2)\n {\n return;\n }\n\n var index1 = this.getChildIndex(child);\n var index2 = this.getChildIndex(child2);\n\n this.children[index1] = child2;\n this.children[index2] = child;\n this.onChildrenChange(index1 < index2 ? index1 : index2);\n };\n\n /**\n * Returns the index position of a child DisplayObject instance\n *\n * @param {PIXI.DisplayObject} child - The DisplayObject instance to identify\n * @return {number} The index position of the child display object to identify\n */\n Container.prototype.getChildIndex = function getChildIndex (child)\n {\n var index = this.children.indexOf(child);\n\n if (index === -1)\n {\n throw new Error('The supplied DisplayObject must be a child of the caller');\n }\n\n return index;\n };\n\n /**\n * Changes the position of an existing child in the display object container\n *\n * @param {PIXI.DisplayObject} child - The child DisplayObject instance for which you want to change the index number\n * @param {number} index - The resulting index number for the child display object\n */\n Container.prototype.setChildIndex = function setChildIndex (child, index)\n {\n if (index < 0 || index >= this.children.length)\n {\n throw new Error((\"The index \" + index + \" supplied is out of bounds \" + (this.children.length)));\n }\n\n var currentIndex = this.getChildIndex(child);\n\n removeItems(this.children, currentIndex, 1); // remove from old position\n this.children.splice(index, 0, child); // add at new position\n\n this.onChildrenChange(index);\n };\n\n /**\n * Returns the child at the specified index\n *\n * @param {number} index - The index to get the child at\n * @return {PIXI.DisplayObject} The child at the given index, if any.\n */\n Container.prototype.getChildAt = function getChildAt (index)\n {\n if (index < 0 || index >= this.children.length)\n {\n throw new Error((\"getChildAt: Index (\" + index + \") does not exist.\"));\n }\n\n return this.children[index];\n };\n\n /**\n * Removes one or more children from the container.\n *\n * @param {...PIXI.DisplayObject} child - The DisplayObject(s) to remove\n * @return {PIXI.DisplayObject} The first child that was removed.\n */\n Container.prototype.removeChild = function removeChild (child)\n {\n var arguments$1 = arguments;\n\n var argumentsLength = arguments.length;\n\n // if there is only one argument we can bypass looping through the them\n if (argumentsLength > 1)\n {\n // loop through the arguments property and add all children\n // use it the right way (.length and [i]) so that this function can still be optimized by JS runtimes\n for (var i = 0; i < argumentsLength; i++)\n {\n this.removeChild(arguments$1[i]);\n }\n }\n else\n {\n var index = this.children.indexOf(child);\n\n if (index === -1) { return null; }\n\n child.parent = null;\n // ensure child transform will be recalculated\n child.transform._parentID = -1;\n removeItems(this.children, index, 1);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('removed', this);\n this.emit('childRemoved', child, this, index);\n }\n\n return child;\n };\n\n /**\n * Removes a child from the specified index position.\n *\n * @param {number} index - The index to get the child from\n * @return {PIXI.DisplayObject} The child that was removed.\n */\n Container.prototype.removeChildAt = function removeChildAt (index)\n {\n var child = this.getChildAt(index);\n\n // ensure child transform will be recalculated..\n child.parent = null;\n child.transform._parentID = -1;\n removeItems(this.children, index, 1);\n\n // ensure bounds will be recalculated\n this._boundsID++;\n\n // TODO - lets either do all callbacks or all events.. not both!\n this.onChildrenChange(index);\n child.emit('removed', this);\n this.emit('childRemoved', child, this, index);\n\n return child;\n };\n\n /**\n * Removes all children from this container that are within the begin and end indexes.\n *\n * @param {number} [beginIndex=0] - The beginning position.\n * @param {number} [endIndex=this.children.length] - The ending position. Default value is size of the container.\n * @returns {PIXI.DisplayObject[]} List of removed children\n */\n Container.prototype.removeChildren = function removeChildren (beginIndex, endIndex)\n {\n if ( beginIndex === void 0 ) beginIndex = 0;\n\n var begin = beginIndex;\n var end = typeof endIndex === 'number' ? endIndex : this.children.length;\n var range = end - begin;\n var removed;\n\n if (range > 0 && range <= end)\n {\n removed = this.children.splice(begin, range);\n\n for (var i = 0; i < removed.length; ++i)\n {\n removed[i].parent = null;\n if (removed[i].transform)\n {\n removed[i].transform._parentID = -1;\n }\n }\n\n this._boundsID++;\n\n this.onChildrenChange(beginIndex);\n\n for (var i$1 = 0; i$1 < removed.length; ++i$1)\n {\n removed[i$1].emit('removed', this);\n this.emit('childRemoved', removed[i$1], this, i$1);\n }\n\n return removed;\n }\n else if (range === 0 && this.children.length === 0)\n {\n return [];\n }\n\n throw new RangeError('removeChildren: numeric values are outside the acceptable range.');\n };\n\n /**\n * Sorts children by zIndex. Previous order is mantained for 2 children with the same zIndex.\n */\n Container.prototype.sortChildren = function sortChildren$1 ()\n {\n var sortRequired = false;\n\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n var child = this.children[i];\n\n child._lastSortedIndex = i;\n\n if (!sortRequired && child.zIndex !== 0)\n {\n sortRequired = true;\n }\n }\n\n if (sortRequired && this.children.length > 1)\n {\n this.children.sort(sortChildren);\n }\n\n this.sortDirty = false;\n };\n\n /**\n * Updates the transform on all children of this container for rendering\n */\n Container.prototype.updateTransform = function updateTransform ()\n {\n if (this.sortableChildren && this.sortDirty)\n {\n this.sortChildren();\n }\n\n this._boundsID++;\n\n this.transform.updateTransform(this.parent.transform);\n\n // TODO: check render flags, how to process stuff here\n this.worldAlpha = this.alpha * this.parent.worldAlpha;\n\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n var child = this.children[i];\n\n if (child.visible)\n {\n child.updateTransform();\n }\n }\n };\n\n /**\n * Recalculates the bounds of the container.\n *\n */\n Container.prototype.calculateBounds = function calculateBounds ()\n {\n this._bounds.clear();\n\n this._calculateBounds();\n\n for (var i = 0; i < this.children.length; i++)\n {\n var child = this.children[i];\n\n if (!child.visible || !child.renderable)\n {\n continue;\n }\n\n child.calculateBounds();\n\n // TODO: filter+mask, need to mask both somehow\n if (child._mask)\n {\n child._mask.calculateBounds();\n this._bounds.addBoundsMask(child._bounds, child._mask._bounds);\n }\n else if (child.filterArea)\n {\n this._bounds.addBoundsArea(child._bounds, child.filterArea);\n }\n else\n {\n this._bounds.addBounds(child._bounds);\n }\n }\n\n this._lastBoundsID = this._boundsID;\n };\n\n /**\n * Recalculates the bounds of the object. Override this to\n * calculate the bounds of the specific object (not including children).\n *\n * @protected\n */\n Container.prototype._calculateBounds = function _calculateBounds ()\n {\n // FILL IN//\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype.render = function render (renderer)\n {\n // if the object is not visible or the alpha is 0 then no need to render this element\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n // do a quick check to see if this element has a mask or a filter.\n if (this._mask || (this.filters && this.filters.length))\n {\n this.renderAdvanced(renderer);\n }\n else\n {\n this._render(renderer);\n\n // simple render children!\n for (var i = 0, j = this.children.length; i < j; ++i)\n {\n this.children[i].render(renderer);\n }\n }\n };\n\n /**\n * Render the object using the WebGL renderer and advanced features.\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype.renderAdvanced = function renderAdvanced (renderer)\n {\n renderer.batch.flush();\n\n var filters = this.filters;\n var mask = this._mask;\n\n // push filter first as we need to ensure the stencil buffer is correct for any masking\n if (filters)\n {\n if (!this._enabledFilters)\n {\n this._enabledFilters = [];\n }\n\n this._enabledFilters.length = 0;\n\n for (var i = 0; i < filters.length; i++)\n {\n if (filters[i].enabled)\n {\n this._enabledFilters.push(filters[i]);\n }\n }\n\n if (this._enabledFilters.length)\n {\n renderer.filter.push(this, this._enabledFilters);\n }\n }\n\n if (mask)\n {\n renderer.mask.push(this, this._mask);\n }\n\n // add this object to the batch, only rendered if it has a texture.\n this._render(renderer);\n\n // now loop through the children and make sure they get rendered\n for (var i$1 = 0, j = this.children.length; i$1 < j; i$1++)\n {\n this.children[i$1].render(renderer);\n }\n\n renderer.batch.flush();\n\n if (mask)\n {\n renderer.mask.pop(this, this._mask);\n }\n\n if (filters && this._enabledFilters && this._enabledFilters.length)\n {\n renderer.filter.pop();\n }\n };\n\n /**\n * To be overridden by the subclasses.\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Container.prototype._render = function _render (renderer) // eslint-disable-line no-unused-vars\n {\n // this is where content itself gets rendered...\n };\n\n /**\n * Removes all internal references and listeners as well as removes children from the display list.\n * Do not use a Container after calling `destroy`.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n Container.prototype.destroy = function destroy (options)\n {\n DisplayObject.prototype.destroy.call(this);\n\n this.sortDirty = false;\n\n var destroyChildren = typeof options === 'boolean' ? options : options && options.children;\n\n var oldChildren = this.removeChildren(0, this.children.length);\n\n if (destroyChildren)\n {\n for (var i = 0; i < oldChildren.length; ++i)\n {\n oldChildren[i].destroy(options);\n }\n }\n };\n\n /**\n * The width of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this.scale.x * this.getLocalBounds().width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n var width = this.getLocalBounds().width;\n\n if (width !== 0)\n {\n this.scale.x = value / width;\n }\n else\n {\n this.scale.x = 1;\n }\n\n this._width = value;\n };\n\n /**\n * The height of the Container, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this.scale.y * this.getLocalBounds().height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n var height = this.getLocalBounds().height;\n\n if (height !== 0)\n {\n this.scale.y = value / height;\n }\n else\n {\n this.scale.y = 1;\n }\n\n this._height = value;\n };\n\n Object.defineProperties( Container.prototype, prototypeAccessors );\n\n return Container;\n}(DisplayObject));\n\n// performance increase to avoid using call.. (10x faster)\nContainer.prototype.containerUpdateTransform = Container.prototype.updateTransform;\n\nexport { Bounds, Container, DisplayObject };\n//# sourceMappingURL=display.es.js.map\n","/*!\n * @pixi/accessibility - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/accessibility is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { isMobile, removeItems } from '@pixi/utils';\nimport { DisplayObject } from '@pixi/display';\n\n/**\n * Default property values of accessible objects\n * used by {@link PIXI.accessibility.AccessibilityManager}.\n *\n * @private\n * @function accessibleTarget\n * @memberof PIXI.accessibility\n * @type {Object}\n * @example\n * function MyObject() {}\n *\n * Object.assign(\n * MyObject.prototype,\n * PIXI.accessibility.accessibleTarget\n * );\n */\nvar accessibleTarget = {\n /**\n * Flag for if the object is accessible. If true AccessibilityManager will overlay a\n * shadow div with attributes set\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n accessible: false,\n\n /**\n * Sets the title attribute of the shadow div\n * If accessibleTitle AND accessibleHint has not been this will default to 'displayObject [tabIndex]'\n *\n * @member {?string}\n * @memberof PIXI.DisplayObject#\n */\n accessibleTitle: null,\n\n /**\n * Sets the aria-label attribute of the shadow div\n *\n * @member {string}\n * @memberof PIXI.DisplayObject#\n */\n accessibleHint: null,\n\n /**\n * @member {number}\n * @memberof PIXI.DisplayObject#\n * @private\n * @todo Needs docs.\n */\n tabIndex: 0,\n\n /**\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n * @todo Needs docs.\n */\n _accessibleActive: false,\n\n /**\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n * @todo Needs docs.\n */\n _accessibleDiv: false,\n};\n\n// add some extra variables to the container..\nDisplayObject.mixin(accessibleTarget);\n\nvar KEY_CODE_TAB = 9;\n\nvar DIV_TOUCH_SIZE = 100;\nvar DIV_TOUCH_POS_X = 0;\nvar DIV_TOUCH_POS_Y = 0;\nvar DIV_TOUCH_ZINDEX = 2;\n\nvar DIV_HOOK_SIZE = 1;\nvar DIV_HOOK_POS_X = -1000;\nvar DIV_HOOK_POS_Y = -1000;\nvar DIV_HOOK_ZINDEX = 2;\n\n/**\n * The Accessibility manager recreates the ability to tab and have content read by screen readers.\n * This is very important as it can possibly help people with disabilities access PixiJS content.\n *\n * A DisplayObject can be made accessible just like it can be made interactive. This manager will map the\n * events as if the mouse was being used, minimizing the effort required to implement.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.accessibility`\n *\n * @class\n * @memberof PIXI.accessibility\n */\nvar AccessibilityManager = function AccessibilityManager(renderer)\n{\n /**\n * @type {?HTMLElement}\n * @private\n */\n this._hookDiv = null;\n if (isMobile.tablet || isMobile.phone)\n {\n this.createTouchHook();\n }\n\n // first we create a div that will sit over the PixiJS element. This is where the div overlays will go.\n var div = document.createElement('div');\n\n div.style.width = DIV_TOUCH_SIZE + \"px\";\n div.style.height = DIV_TOUCH_SIZE + \"px\";\n div.style.position = 'absolute';\n div.style.top = DIV_TOUCH_POS_X + \"px\";\n div.style.left = DIV_TOUCH_POS_Y + \"px\";\n div.style.zIndex = DIV_TOUCH_ZINDEX;\n\n /**\n * This is the dom element that will sit over the PixiJS element. This is where the div overlays will go.\n *\n * @type {HTMLElement}\n * @private\n */\n this.div = div;\n\n /**\n * A simple pool for storing divs.\n *\n * @type {*}\n * @private\n */\n this.pool = [];\n\n /**\n * This is a tick used to check if an object is no longer being rendered.\n *\n * @type {Number}\n * @private\n */\n this.renderId = 0;\n\n /**\n * Setting this to true will visually show the divs.\n *\n * @type {boolean}\n */\n this.debug = false;\n\n /**\n * The renderer this accessibility manager works for.\n *\n * @member {PIXI.AbstractRenderer}\n */\n this.renderer = renderer;\n\n /**\n * The array of currently active accessible items.\n *\n * @member {Array<*>}\n * @private\n */\n this.children = [];\n\n /**\n * pre-bind the functions\n *\n * @type {Function}\n * @private\n */\n this._onKeyDown = this._onKeyDown.bind(this);\n\n /**\n * pre-bind the functions\n *\n * @type {Function}\n * @private\n */\n this._onMouseMove = this._onMouseMove.bind(this);\n\n /**\n * A flag\n * @type {boolean}\n * @readonly\n */\n this.isActive = false;\n\n /**\n * A flag\n * @type {boolean}\n * @readonly\n */\n this.isMobileAccessibility = false;\n\n // let listen for tab.. once pressed we can fire up and show the accessibility layer\n window.addEventListener('keydown', this._onKeyDown, false);\n};\n\n/**\n * Creates the touch hooks.\n *\n * @private\n */\nAccessibilityManager.prototype.createTouchHook = function createTouchHook ()\n{\n var this$1 = this;\n\n var hookDiv = document.createElement('button');\n\n hookDiv.style.width = DIV_HOOK_SIZE + \"px\";\n hookDiv.style.height = DIV_HOOK_SIZE + \"px\";\n hookDiv.style.position = 'absolute';\n hookDiv.style.top = DIV_HOOK_POS_X + \"px\";\n hookDiv.style.left = DIV_HOOK_POS_Y + \"px\";\n hookDiv.style.zIndex = DIV_HOOK_ZINDEX;\n hookDiv.style.backgroundColor = '#FF0000';\n hookDiv.title = 'HOOK DIV';\n\n hookDiv.addEventListener('focus', function () {\n this$1.isMobileAccessibility = true;\n this$1.activate();\n this$1.destroyTouchHook();\n });\n\n document.body.appendChild(hookDiv);\n this._hookDiv = hookDiv;\n};\n\n/**\n * Destroys the touch hooks.\n *\n * @private\n */\nAccessibilityManager.prototype.destroyTouchHook = function destroyTouchHook ()\n{\n if (!this._hookDiv)\n {\n return;\n }\n document.body.removeChild(this._hookDiv);\n this._hookDiv = null;\n};\n\n/**\n * Activating will cause the Accessibility layer to be shown.\n * This is called when a user presses the tab key.\n *\n * @private\n */\nAccessibilityManager.prototype.activate = function activate ()\n{\n if (this.isActive)\n {\n return;\n }\n\n this.isActive = true;\n\n window.document.addEventListener('mousemove', this._onMouseMove, true);\n window.removeEventListener('keydown', this._onKeyDown, false);\n\n this.renderer.on('postrender', this.update, this);\n\n if (this.renderer.view.parentNode)\n {\n this.renderer.view.parentNode.appendChild(this.div);\n }\n};\n\n/**\n * Deactivating will cause the Accessibility layer to be hidden.\n * This is called when a user moves the mouse.\n *\n * @private\n */\nAccessibilityManager.prototype.deactivate = function deactivate ()\n{\n if (!this.isActive || this.isMobileAccessibility)\n {\n return;\n }\n\n this.isActive = false;\n\n window.document.removeEventListener('mousemove', this._onMouseMove, true);\n window.addEventListener('keydown', this._onKeyDown, false);\n\n this.renderer.off('postrender', this.update);\n\n if (this.div.parentNode)\n {\n this.div.parentNode.removeChild(this.div);\n }\n};\n\n/**\n * This recursive function will run through the scene graph and add any new accessible objects to the DOM layer.\n *\n * @private\n * @param {PIXI.Container} displayObject - The DisplayObject to check.\n */\nAccessibilityManager.prototype.updateAccessibleObjects = function updateAccessibleObjects (displayObject)\n{\n if (!displayObject.visible)\n {\n return;\n }\n\n if (displayObject.accessible && displayObject.interactive)\n {\n if (!displayObject._accessibleActive)\n {\n this.addChild(displayObject);\n }\n\n displayObject.renderId = this.renderId;\n }\n\n var children = displayObject.children;\n\n for (var i = 0; i < children.length; i++)\n {\n this.updateAccessibleObjects(children[i]);\n }\n};\n\n/**\n * Before each render this function will ensure that all divs are mapped correctly to their DisplayObjects.\n *\n * @private\n */\nAccessibilityManager.prototype.update = function update ()\n{\n if (!this.renderer.renderingToScreen)\n {\n return;\n }\n\n // update children...\n this.updateAccessibleObjects(this.renderer._lastObjectRendered);\n\n var rect = this.renderer.view.getBoundingClientRect();\n var sx = rect.width / this.renderer.width;\n var sy = rect.height / this.renderer.height;\n\n var div = this.div;\n\n div.style.left = (rect.left) + \"px\";\n div.style.top = (rect.top) + \"px\";\n div.style.width = (this.renderer.width) + \"px\";\n div.style.height = (this.renderer.height) + \"px\";\n\n for (var i = 0; i < this.children.length; i++)\n {\n var child = this.children[i];\n\n if (child.renderId !== this.renderId)\n {\n child._accessibleActive = false;\n\n removeItems(this.children, i, 1);\n this.div.removeChild(child._accessibleDiv);\n this.pool.push(child._accessibleDiv);\n child._accessibleDiv = null;\n\n i--;\n\n if (this.children.length === 0)\n {\n this.deactivate();\n }\n }\n else\n {\n // map div to display..\n div = child._accessibleDiv;\n var hitArea = child.hitArea;\n var wt = child.worldTransform;\n\n if (child.hitArea)\n {\n div.style.left = ((wt.tx + (hitArea.x * wt.a)) * sx) + \"px\";\n div.style.top = ((wt.ty + (hitArea.y * wt.d)) * sy) + \"px\";\n\n div.style.width = (hitArea.width * wt.a * sx) + \"px\";\n div.style.height = (hitArea.height * wt.d * sy) + \"px\";\n }\n else\n {\n hitArea = child.getBounds();\n\n this.capHitArea(hitArea);\n\n div.style.left = (hitArea.x * sx) + \"px\";\n div.style.top = (hitArea.y * sy) + \"px\";\n\n div.style.width = (hitArea.width * sx) + \"px\";\n div.style.height = (hitArea.height * sy) + \"px\";\n\n // update button titles and hints if they exist and they've changed\n if (div.title !== child.accessibleTitle && child.accessibleTitle !== null)\n {\n div.title = child.accessibleTitle;\n }\n if (div.getAttribute('aria-label') !== child.accessibleHint\n && child.accessibleHint !== null)\n {\n div.setAttribute('aria-label', child.accessibleHint);\n }\n }\n }\n }\n\n // increment the render id..\n this.renderId++;\n};\n\n/**\n * Adjust the hit area based on the bounds of a display object\n *\n * @param {PIXI.Rectangle} hitArea - Bounds of the child\n */\nAccessibilityManager.prototype.capHitArea = function capHitArea (hitArea)\n{\n if (hitArea.x < 0)\n {\n hitArea.width += hitArea.x;\n hitArea.x = 0;\n }\n\n if (hitArea.y < 0)\n {\n hitArea.height += hitArea.y;\n hitArea.y = 0;\n }\n\n if (hitArea.x + hitArea.width > this.renderer.width)\n {\n hitArea.width = this.renderer.width - hitArea.x;\n }\n\n if (hitArea.y + hitArea.height > this.renderer.height)\n {\n hitArea.height = this.renderer.height - hitArea.y;\n }\n};\n\n/**\n * Adds a DisplayObject to the accessibility manager\n *\n * @private\n * @param {PIXI.DisplayObject} displayObject - The child to make accessible.\n */\nAccessibilityManager.prototype.addChild = function addChild (displayObject)\n{\n //this.activate();\n\n var div = this.pool.pop();\n\n if (!div)\n {\n div = document.createElement('button');\n\n div.style.width = DIV_TOUCH_SIZE + \"px\";\n div.style.height = DIV_TOUCH_SIZE + \"px\";\n div.style.backgroundColor = this.debug ? 'rgba(255,0,0,0.5)' : 'transparent';\n div.style.position = 'absolute';\n div.style.zIndex = DIV_TOUCH_ZINDEX;\n div.style.borderStyle = 'none';\n\n // ARIA attributes ensure that button title and hint updates are announced properly\n if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)\n {\n // Chrome doesn't need aria-live to work as intended; in fact it just gets more confused.\n div.setAttribute('aria-live', 'off');\n }\n else\n {\n div.setAttribute('aria-live', 'polite');\n }\n\n if (navigator.userAgent.match(/rv:.*Gecko\\//))\n {\n // FireFox needs this to announce only the new button name\n div.setAttribute('aria-relevant', 'additions');\n }\n else\n {\n // required by IE, other browsers don't much care\n div.setAttribute('aria-relevant', 'text');\n }\n\n div.addEventListener('click', this._onClick.bind(this));\n div.addEventListener('focus', this._onFocus.bind(this));\n div.addEventListener('focusout', this._onFocusOut.bind(this));\n }\n\n if (displayObject.accessibleTitle && displayObject.accessibleTitle !== null)\n {\n div.title = displayObject.accessibleTitle;\n }\n else if (!displayObject.accessibleHint\n || displayObject.accessibleHint === null)\n {\n div.title = \"displayObject \" + (displayObject.tabIndex);\n }\n\n if (displayObject.accessibleHint\n && displayObject.accessibleHint !== null)\n {\n div.setAttribute('aria-label', displayObject.accessibleHint);\n }\n\n //\n\n displayObject._accessibleActive = true;\n displayObject._accessibleDiv = div;\n div.displayObject = displayObject;\n\n this.children.push(displayObject);\n this.div.appendChild(displayObject._accessibleDiv);\n displayObject._accessibleDiv.tabIndex = displayObject.tabIndex;\n};\n\n/**\n * Maps the div button press to pixi's InteractionManager (click)\n *\n * @private\n * @param {MouseEvent} e - The click event.\n */\nAccessibilityManager.prototype._onClick = function _onClick (e)\n{\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'click', interactionManager.eventData);\n interactionManager.dispatchEvent(e.target.displayObject, 'pointertap', interactionManager.eventData);\n interactionManager.dispatchEvent(e.target.displayObject, 'tap', interactionManager.eventData);\n};\n\n/**\n * Maps the div focus events to pixi's InteractionManager (mouseover)\n *\n * @private\n * @param {FocusEvent} e - The focus event.\n */\nAccessibilityManager.prototype._onFocus = function _onFocus (e)\n{\n if (!e.target.getAttribute('aria-live', 'off'))\n {\n e.target.setAttribute('aria-live', 'assertive');\n }\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'mouseover', interactionManager.eventData);\n};\n\n/**\n * Maps the div focus events to pixi's InteractionManager (mouseout)\n *\n * @private\n * @param {FocusEvent} e - The focusout event.\n */\nAccessibilityManager.prototype._onFocusOut = function _onFocusOut (e)\n{\n if (!e.target.getAttribute('aria-live', 'off'))\n {\n e.target.setAttribute('aria-live', 'polite');\n }\n var interactionManager = this.renderer.plugins.interaction;\n\n interactionManager.dispatchEvent(e.target.displayObject, 'mouseout', interactionManager.eventData);\n};\n\n/**\n * Is called when a key is pressed\n *\n * @private\n * @param {KeyboardEvent} e - The keydown event.\n */\nAccessibilityManager.prototype._onKeyDown = function _onKeyDown (e)\n{\n if (e.keyCode !== KEY_CODE_TAB)\n {\n return;\n }\n\n this.activate();\n};\n\n/**\n * Is called when the mouse moves across the renderer element\n *\n * @private\n * @param {MouseEvent} e - The mouse event.\n */\nAccessibilityManager.prototype._onMouseMove = function _onMouseMove (e)\n{\n if (e.movementX === 0 && e.movementY === 0)\n {\n return;\n }\n\n this.deactivate();\n};\n\n/**\n * Destroys the accessibility manager\n *\n */\nAccessibilityManager.prototype.destroy = function destroy ()\n{\n this.destroyTouchHook();\n this.div = null;\n\n for (var i = 0; i < this.children.length; i++)\n {\n this.children[i].div = null;\n }\n\n window.document.removeEventListener('mousemove', this._onMouseMove, true);\n window.removeEventListener('keydown', this._onKeyDown);\n\n this.pool = null;\n this.children = null;\n this.renderer = null;\n};\n\n/**\n * This namespace contains an accessibility plugin for allowing interaction via the keyboard.\n *\n * Do not instantiate this plugin directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @namespace PIXI.accessibility\n */\n\nexport { AccessibilityManager, accessibleTarget };\n//# sourceMappingURL=accessibility.es.js.map\n","/*!\n * @pixi/runner - v5.1.1\n * Compiled Fri, 02 Aug 2019 23:20:23 UTC\n *\n * @pixi/runner is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\n/**\n * A Runner is a highly performant and simple alternative to signals. Best used in situations\n * where events are dispatched to many objects at high frequency (say every frame!)\n *\n *\n * like a signal..\n * ```\n * const myObject = {\n * loaded: new PIXI.Runner('loaded')\n * }\n *\n * const listener = {\n * loaded: function(){\n * // thin\n * }\n * }\n *\n * myObject.update.add(listener);\n *\n * myObject.loaded.emit();\n * ```\n *\n * Or for handling calling the same function on many items\n * ```\n * const myGame = {\n * update: new PIXI.Runner('update')\n * }\n *\n * const gameObject = {\n * update: function(time){\n * // update my gamey state\n * }\n * }\n *\n * myGame.update.add(gameObject1);\n *\n * myGame.update.emit(time);\n * ```\n * @class\n * @memberof PIXI\n */\nvar Runner = function Runner(name)\n{\n this.items = [];\n this._name = name;\n this._aliasCount = 0;\n};\n\nvar prototypeAccessors = { empty: { configurable: true },name: { configurable: true } };\n\n/**\n * Dispatch/Broadcast Runner to all listeners added to the queue.\n * @param {...any} params - optional parameters to pass to each listener\n */\nRunner.prototype.emit = function emit (a0, a1, a2, a3, a4, a5, a6, a7)\n{\n if (arguments.length > 8)\n {\n throw new Error('max arguments reached');\n }\n\n var ref = this;\n var name = ref.name;\n var items = ref.items;\n\n this._aliasCount++;\n\n for (var i = 0, len = items.length; i < len; i++)\n {\n items[i][name](a0, a1, a2, a3, a4, a5, a6, a7);\n }\n\n if (items === this.items)\n {\n this._aliasCount--;\n }\n\n return this;\n};\n\nRunner.prototype.ensureNonAliasedItems = function ensureNonAliasedItems ()\n{\n if (this._aliasCount > 0 && this.items.length > 1)\n {\n this._aliasCount = 0;\n this.items = this.items.slice(0);\n }\n};\n\n/**\n * Add a listener to the Runner\n *\n * Runners do not need to have scope or functions passed to them.\n * All that is required is to pass the listening object and ensure that it has contains a function that has the same name\n * as the name provided to the Runner when it was created.\n *\n * Eg A listener passed to this Runner will require a 'complete' function.\n *\n * ```\n * const complete = new PIXI.Runner('complete');\n * ```\n *\n * The scope used will be the object itself.\n *\n * @param {any} item - The object that will be listening.\n */\nRunner.prototype.add = function add (item)\n{\n if (item[this._name])\n {\n this.ensureNonAliasedItems();\n this.remove(item);\n this.items.push(item);\n }\n\n return this;\n};\n\n/**\n * Remove a single listener from the dispatch queue.\n * @param {any} item - The listenr that you would like to remove.\n */\nRunner.prototype.remove = function remove (item)\n{\n var index = this.items.indexOf(item);\n\n if (index !== -1)\n {\n this.ensureNonAliasedItems();\n this.items.splice(index, 1);\n }\n\n return this;\n};\n\n/**\n * Check to see if the listener is already in the Runner\n * @param {any} item - The listener that you would like to check.\n */\nRunner.prototype.contains = function contains (item)\n{\n return this.items.indexOf(item) !== -1;\n};\n\n/**\n * Remove all listeners from the Runner\n */\nRunner.prototype.removeAll = function removeAll ()\n{\n this.ensureNonAliasedItems();\n this.items.length = 0;\n\n return this;\n};\n\n/**\n * Remove all references, don't use after this.\n */\nRunner.prototype.destroy = function destroy ()\n{\n this.removeAll();\n this.items = null;\n this._name = null;\n};\n\n/**\n * `true` if there are no this Runner contains no listeners\n *\n * @member {boolean}\n * @readonly\n */\nprototypeAccessors.empty.get = function ()\n{\n return this.items.length === 0;\n};\n\n/**\n * The name of the runner.\n *\n * @member {string}\n * @readonly\n */\nprototypeAccessors.name.get = function ()\n{\n return this._name;\n};\n\nObject.defineProperties( Runner.prototype, prototypeAccessors );\n\n/**\n * Alias for `emit`\n * @memberof PIXI.Runner#\n * @method dispatch\n * @see PIXI.Runner#emit\n */\nRunner.prototype.dispatch = Runner.prototype.emit;\n\n/**\n * Alias for `emit`\n * @memberof PIXI.Runner#\n * @method run\n * @see PIXI.Runner#emit\n */\nRunner.prototype.run = Runner.prototype.emit;\n\nexport { Runner };\n//# sourceMappingURL=runner.es.js.map\n","/*!\n * @pixi/ticker - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/ticker is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\n\n/**\n * Target frames per millisecond.\n *\n * @static\n * @name TARGET_FPMS\n * @memberof PIXI.settings\n * @type {number}\n * @default 0.06\n */\nsettings.TARGET_FPMS = 0.06;\n\n/**\n * Represents the update priorities used by internal PIXI classes when registered with\n * the {@link PIXI.Ticker} object. Higher priority items are updated first and lower\n * priority items, such as render, should go later.\n *\n * @static\n * @constant\n * @name UPDATE_PRIORITY\n * @memberof PIXI\n * @type {object}\n * @property {number} INTERACTION=50 Highest priority, used for {@link PIXI.interaction.InteractionManager}\n * @property {number} HIGH=25 High priority updating, {@link PIXI.VideoBaseTexture} and {@link PIXI.AnimatedSprite}\n * @property {number} NORMAL=0 Default priority for ticker events, see {@link PIXI.Ticker#add}.\n * @property {number} LOW=-25 Low priority used for {@link PIXI.Application} rendering.\n * @property {number} UTILITY=-50 Lowest priority used for {@link PIXI.prepare.BasePrepare} utility.\n */\nvar UPDATE_PRIORITY = {\n INTERACTION: 50,\n HIGH: 25,\n NORMAL: 0,\n LOW: -25,\n UTILITY: -50,\n};\n\n/**\n * Internal class for handling the priority sorting of ticker handlers.\n *\n * @private\n * @class\n * @memberof PIXI\n */\nvar TickerListener = function TickerListener(fn, context, priority, once)\n{\n if ( context === void 0 ) context = null;\n if ( priority === void 0 ) priority = 0;\n if ( once === void 0 ) once = false;\n\n /**\n * The handler function to execute.\n * @private\n * @member {Function}\n */\n this.fn = fn;\n\n /**\n * The calling to execute.\n * @private\n * @member {*}\n */\n this.context = context;\n\n /**\n * The current priority.\n * @private\n * @member {number}\n */\n this.priority = priority;\n\n /**\n * If this should only execute once.\n * @private\n * @member {boolean}\n */\n this.once = once;\n\n /**\n * The next item in chain.\n * @private\n * @member {TickerListener}\n */\n this.next = null;\n\n /**\n * The previous item in chain.\n * @private\n * @member {TickerListener}\n */\n this.previous = null;\n\n /**\n * `true` if this listener has been destroyed already.\n * @member {boolean}\n * @private\n */\n this._destroyed = false;\n};\n\n/**\n * Simple compare function to figure out if a function and context match.\n * @private\n * @param {Function} fn - The listener function to be added for one update\n * @param {Function} context - The listener context\n * @return {boolean} `true` if the listener match the arguments\n */\nTickerListener.prototype.match = function match (fn, context)\n{\n context = context || null;\n\n return this.fn === fn && this.context === context;\n};\n\n/**\n * Emit by calling the current function.\n * @private\n * @param {number} deltaTime - time since the last emit.\n * @return {TickerListener} Next ticker\n */\nTickerListener.prototype.emit = function emit (deltaTime)\n{\n if (this.fn)\n {\n if (this.context)\n {\n this.fn.call(this.context, deltaTime);\n }\n else\n {\n this.fn(deltaTime);\n }\n }\n\n var redirect = this.next;\n\n if (this.once)\n {\n this.destroy(true);\n }\n\n // Soft-destroying should remove\n // the next reference\n if (this._destroyed)\n {\n this.next = null;\n }\n\n return redirect;\n};\n\n/**\n * Connect to the list.\n * @private\n * @param {TickerListener} previous - Input node, previous listener\n */\nTickerListener.prototype.connect = function connect (previous)\n{\n this.previous = previous;\n if (previous.next)\n {\n previous.next.previous = this;\n }\n this.next = previous.next;\n previous.next = this;\n};\n\n/**\n * Destroy and don't use after this.\n * @private\n * @param {boolean} [hard = false] `true` to remove the `next` reference, this\n * is considered a hard destroy. Soft destroy maintains the next reference.\n * @return {TickerListener} The listener to redirect while emitting or removing.\n */\nTickerListener.prototype.destroy = function destroy (hard)\n{\n if ( hard === void 0 ) hard = false;\n\n this._destroyed = true;\n this.fn = null;\n this.context = null;\n\n // Disconnect, hook up next and previous\n if (this.previous)\n {\n this.previous.next = this.next;\n }\n\n if (this.next)\n {\n this.next.previous = this.previous;\n }\n\n // Redirect to the next item\n var redirect = this.next;\n\n // Remove references\n this.next = hard ? null : redirect;\n this.previous = null;\n\n return redirect;\n};\n\n/**\n * A Ticker class that runs an update loop that other objects listen to.\n *\n * This class is composed around listeners meant for execution on the next requested animation frame.\n * Animation frames are requested only when necessary, e.g. When the ticker is started and the emitter has listeners.\n *\n * @class\n * @memberof PIXI\n */\nvar Ticker = function Ticker()\n{\n var this$1 = this;\n\n /**\n * The first listener. All new listeners added are chained on this.\n * @private\n * @type {TickerListener}\n */\n this._head = new TickerListener(null, null, Infinity);\n\n /**\n * Internal current frame request ID\n * @type {?number}\n * @private\n */\n this._requestId = null;\n\n /**\n * Internal value managed by minFPS property setter and getter.\n * This is the maximum allowed milliseconds between updates.\n * @type {number}\n * @private\n */\n this._maxElapsedMS = 100;\n\n /**\n * Internal value managed by maxFPS property setter and getter.\n * This is the minimum allowed milliseconds between updates.\n * @private\n */\n this._minElapsedMS = 0;\n\n /**\n * Whether or not this ticker should invoke the method\n * {@link PIXI.Ticker#start} automatically\n * when a listener is added.\n *\n * @member {boolean}\n * @default false\n */\n this.autoStart = false;\n\n /**\n * Scalar time value from last frame to this frame.\n * This value is capped by setting {@link PIXI.Ticker#minFPS}\n * and is scaled with {@link PIXI.Ticker#speed}.\n * **Note:** The cap may be exceeded by scaling.\n *\n * @member {number}\n * @default 1\n */\n this.deltaTime = 1;\n\n /**\n * Scaler time elapsed in milliseconds from last frame to this frame.\n * This value is capped by setting {@link PIXI.Ticker#minFPS}\n * and is scaled with {@link PIXI.Ticker#speed}.\n * **Note:** The cap may be exceeded by scaling.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n * Defaults to target frame time\n *\n * @member {number}\n * @default 16.66\n */\n this.deltaMS = 1 / settings.TARGET_FPMS;\n\n /**\n * Time elapsed in milliseconds from last frame to this frame.\n * Opposed to what the scalar {@link PIXI.Ticker#deltaTime}\n * is based, this value is neither capped nor scaled.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n * Defaults to target frame time\n *\n * @member {number}\n * @default 16.66\n */\n this.elapsedMS = 1 / settings.TARGET_FPMS;\n\n /**\n * The last time {@link PIXI.Ticker#update} was invoked.\n * This value is also reset internally outside of invoking\n * update, but only when a new animation frame is requested.\n * If the platform supports DOMHighResTimeStamp,\n * this value will have a precision of 1 µs.\n *\n * @member {number}\n * @default -1\n */\n this.lastTime = -1;\n\n /**\n * Factor of current {@link PIXI.Ticker#deltaTime}.\n * @example\n * // Scales ticker.deltaTime to what would be\n * // the equivalent of approximately 120 FPS\n * ticker.speed = 2;\n *\n * @member {number}\n * @default 1\n */\n this.speed = 1;\n\n /**\n * Whether or not this ticker has been started.\n * `true` if {@link PIXI.Ticker#start} has been called.\n * `false` if {@link PIXI.Ticker#stop} has been called.\n * While `false`, this value may change to `true` in the\n * event of {@link PIXI.Ticker#autoStart} being `true`\n * and a listener is added.\n *\n * @member {boolean}\n * @default false\n */\n this.started = false;\n\n /**\n * If enabled, deleting is disabled.\n * @member {boolean}\n * @default false\n * @private\n */\n this._protected = false;\n\n /**\n * The last time keyframe was executed.\n * Maintains a relatively fixed interval with the previous value.\n * @member {number}\n * @default -1\n * @private\n */\n this._lastFrame = -1;\n\n /**\n * Internal tick method bound to ticker instance.\n * This is because in early 2015, Function.bind\n * is still 60% slower in high performance scenarios.\n * Also separating frame requests from update method\n * so listeners may be called at any time and with\n * any animation API, just invoke ticker.update(time).\n *\n * @private\n * @param {number} time - Time since last tick.\n */\n this._tick = function (time) {\n this$1._requestId = null;\n\n if (this$1.started)\n {\n // Invoke listeners now\n this$1.update(time);\n // Listener side effects may have modified ticker state.\n if (this$1.started && this$1._requestId === null && this$1._head.next)\n {\n this$1._requestId = requestAnimationFrame(this$1._tick);\n }\n }\n };\n};\n\nvar prototypeAccessors = { FPS: { configurable: true },minFPS: { configurable: true },maxFPS: { configurable: true } };\nvar staticAccessors = { shared: { configurable: true },system: { configurable: true } };\n\n/**\n * Conditionally requests a new animation frame.\n * If a frame has not already been requested, and if the internal\n * emitter has listeners, a new frame is requested.\n *\n * @private\n */\nTicker.prototype._requestIfNeeded = function _requestIfNeeded ()\n{\n if (this._requestId === null && this._head.next)\n {\n // ensure callbacks get correct delta\n this.lastTime = performance.now();\n this._lastFrame = this.lastTime;\n this._requestId = requestAnimationFrame(this._tick);\n }\n};\n\n/**\n * Conditionally cancels a pending animation frame.\n *\n * @private\n */\nTicker.prototype._cancelIfNeeded = function _cancelIfNeeded ()\n{\n if (this._requestId !== null)\n {\n cancelAnimationFrame(this._requestId);\n this._requestId = null;\n }\n};\n\n/**\n * Conditionally requests a new animation frame.\n * If the ticker has been started it checks if a frame has not already\n * been requested, and if the internal emitter has listeners. If these\n * conditions are met, a new frame is requested. If the ticker has not\n * been started, but autoStart is `true`, then the ticker starts now,\n * and continues with the previous conditions to request a new frame.\n *\n * @private\n */\nTicker.prototype._startIfPossible = function _startIfPossible ()\n{\n if (this.started)\n {\n this._requestIfNeeded();\n }\n else if (this.autoStart)\n {\n this.start();\n }\n};\n\n/**\n * Register a handler for tick events. Calls continuously unless\n * it is removed or the ticker is stopped.\n *\n * @param {Function} fn - The listener function to be added for updates\n * @param {*} [context] - The listener context\n * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.add = function add (fn, context, priority)\n{\n if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL;\n\n return this._addListener(new TickerListener(fn, context, priority));\n};\n\n/**\n * Add a handler for the tick event which is only execute once.\n *\n * @param {Function} fn - The listener function to be added for one update\n * @param {*} [context] - The listener context\n * @param {number} [priority=PIXI.UPDATE_PRIORITY.NORMAL] - The priority for emitting\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.addOnce = function addOnce (fn, context, priority)\n{\n if ( priority === void 0 ) priority = UPDATE_PRIORITY.NORMAL;\n\n return this._addListener(new TickerListener(fn, context, priority, true));\n};\n\n/**\n * Internally adds the event handler so that it can be sorted by priority.\n * Priority allows certain handler (user, AnimatedSprite, Interaction) to be run\n * before the rendering.\n *\n * @private\n * @param {TickerListener} listener - Current listener being added.\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype._addListener = function _addListener (listener)\n{\n // For attaching to head\n var current = this._head.next;\n var previous = this._head;\n\n // Add the first item\n if (!current)\n {\n listener.connect(previous);\n }\n else\n {\n // Go from highest to lowest priority\n while (current)\n {\n if (listener.priority > current.priority)\n {\n listener.connect(previous);\n break;\n }\n previous = current;\n current = current.next;\n }\n\n // Not yet connected\n if (!listener.previous)\n {\n listener.connect(previous);\n }\n }\n\n this._startIfPossible();\n\n return this;\n};\n\n/**\n * Removes any handlers matching the function and context parameters.\n * If no handlers are left after removing, then it cancels the animation frame.\n *\n * @param {Function} fn - The listener function to be removed\n * @param {*} [context] - The listener context to be removed\n * @returns {PIXI.Ticker} This instance of a ticker\n */\nTicker.prototype.remove = function remove (fn, context)\n{\n var listener = this._head.next;\n\n while (listener)\n {\n // We found a match, lets remove it\n // no break to delete all possible matches\n // incase a listener was added 2+ times\n if (listener.match(fn, context))\n {\n listener = listener.destroy();\n }\n else\n {\n listener = listener.next;\n }\n }\n\n if (!this._head.next)\n {\n this._cancelIfNeeded();\n }\n\n return this;\n};\n\n/**\n * Starts the ticker. If the ticker has listeners\n * a new animation frame is requested at this point.\n */\nTicker.prototype.start = function start ()\n{\n if (!this.started)\n {\n this.started = true;\n this._requestIfNeeded();\n }\n};\n\n/**\n * Stops the ticker. If the ticker has requested\n * an animation frame it is canceled at this point.\n */\nTicker.prototype.stop = function stop ()\n{\n if (this.started)\n {\n this.started = false;\n this._cancelIfNeeded();\n }\n};\n\n/**\n * Destroy the ticker and don't use after this. Calling\n * this method removes all references to internal events.\n */\nTicker.prototype.destroy = function destroy ()\n{\n if (!this._protected)\n {\n this.stop();\n\n var listener = this._head.next;\n\n while (listener)\n {\n listener = listener.destroy(true);\n }\n\n this._head.destroy();\n this._head = null;\n }\n};\n\n/**\n * Triggers an update. An update entails setting the\n * current {@link PIXI.Ticker#elapsedMS},\n * the current {@link PIXI.Ticker#deltaTime},\n * invoking all listeners with current deltaTime,\n * and then finally setting {@link PIXI.Ticker#lastTime}\n * with the value of currentTime that was provided.\n * This method will be called automatically by animation\n * frame callbacks if the ticker instance has been started\n * and listeners are added.\n *\n * @param {number} [currentTime=performance.now()] - the current time of execution\n */\nTicker.prototype.update = function update (currentTime)\n{\n if ( currentTime === void 0 ) currentTime = performance.now();\n\n var elapsedMS;\n\n // If the difference in time is zero or negative, we ignore most of the work done here.\n // If there is no valid difference, then should be no reason to let anyone know about it.\n // A zero delta, is exactly that, nothing should update.\n //\n // The difference in time can be negative, and no this does not mean time traveling.\n // This can be the result of a race condition between when an animation frame is requested\n // on the current JavaScript engine event loop, and when the ticker's start method is invoked\n // (which invokes the internal _requestIfNeeded method). If a frame is requested before\n // _requestIfNeeded is invoked, then the callback for the animation frame the ticker requests,\n // can receive a time argument that can be less than the lastTime value that was set within\n // _requestIfNeeded. This difference is in microseconds, but this is enough to cause problems.\n //\n // This check covers this browser engine timing issue, as well as if consumers pass an invalid\n // currentTime value. This may happen if consumers opt-out of the autoStart, and update themselves.\n\n if (currentTime > this.lastTime)\n {\n // Save uncapped elapsedMS for measurement\n elapsedMS = this.elapsedMS = currentTime - this.lastTime;\n\n // cap the milliseconds elapsed used for deltaTime\n if (elapsedMS > this._maxElapsedMS)\n {\n elapsedMS = this._maxElapsedMS;\n }\n\n elapsedMS *= this.speed;\n\n // If not enough time has passed, exit the function.\n // Get ready for next frame by setting _lastFrame, but based on _minElapsedMS\n // adjustment to ensure a relatively stable interval.\n if (this._minElapsedMS)\n {\n var delta = currentTime - this._lastFrame | 0;\n\n if (delta < this._minElapsedMS)\n {\n return;\n }\n\n this._lastFrame = currentTime - (delta % this._minElapsedMS);\n }\n\n this.deltaMS = elapsedMS;\n this.deltaTime = this.deltaMS * settings.TARGET_FPMS;\n\n // Cache a local reference, in-case ticker is destroyed\n // during the emit, we can still check for head.next\n var head = this._head;\n\n // Invoke listeners added to internal emitter\n var listener = head.next;\n\n while (listener)\n {\n listener = listener.emit(this.deltaTime);\n }\n\n if (!head.next)\n {\n this._cancelIfNeeded();\n }\n }\n else\n {\n this.deltaTime = this.deltaMS = this.elapsedMS = 0;\n }\n\n this.lastTime = currentTime;\n};\n\n/**\n * The frames per second at which this ticker is running.\n * The default is approximately 60 in most modern browsers.\n * **Note:** This does not factor in the value of\n * {@link PIXI.Ticker#speed}, which is specific\n * to scaling {@link PIXI.Ticker#deltaTime}.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.FPS.get = function ()\n{\n return 1000 / this.elapsedMS;\n};\n\n/**\n * Manages the maximum amount of milliseconds allowed to\n * elapse between invoking {@link PIXI.Ticker#update}.\n * This value is used to cap {@link PIXI.Ticker#deltaTime},\n * but does not effect the measured value of {@link PIXI.Ticker#FPS}.\n * When setting this property it is clamped to a value between\n * `0` and `PIXI.settings.TARGET_FPMS * 1000`.\n *\n * @member {number}\n * @default 10\n */\nprototypeAccessors.minFPS.get = function ()\n{\n return 1000 / this._maxElapsedMS;\n};\n\nprototypeAccessors.minFPS.set = function (fps) // eslint-disable-line require-jsdoc\n{\n // Minimum must be below the maxFPS\n var minFPS = Math.min(this.maxFPS, fps);\n\n // Must be at least 0, but below 1 / settings.TARGET_FPMS\n var minFPMS = Math.min(Math.max(0, minFPS) / 1000, settings.TARGET_FPMS);\n\n this._maxElapsedMS = 1 / minFPMS;\n};\n\n/**\n * Manages the minimum amount of milliseconds required to\n * elapse between invoking {@link PIXI.Ticker#update}.\n * This will effect the measured value of {@link PIXI.Ticker#FPS}.\n * If it is set to `0`, then there is no limit; PixiJS will render as many frames as it can.\n * Otherwise it will be at least `minFPS`\n *\n * @member {number}\n * @default 0\n */\nprototypeAccessors.maxFPS.get = function ()\n{\n if (this._minElapsedMS)\n {\n return Math.round(1000 / this._minElapsedMS);\n }\n\n return 0;\n};\n\nprototypeAccessors.maxFPS.set = function (fps)\n{\n if (fps === 0)\n {\n this._minElapsedMS = 0;\n }\n else\n {\n // Max must be at least the minFPS\n var maxFPS = Math.max(this.minFPS, fps);\n\n this._minElapsedMS = 1 / (maxFPS / 1000);\n }\n};\n\n/**\n * The shared ticker instance used by {@link PIXI.AnimatedSprite} and by\n * {@link PIXI.VideoResource} to update animation frames / video textures.\n *\n * It may also be used by {@link PIXI.Application} if created with the `sharedTicker` option property set to true.\n *\n * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance.\n * Please follow the examples for usage, including how to opt-out of auto-starting the shared ticker.\n *\n * @example\n * let ticker = PIXI.Ticker.shared;\n * // Set this to prevent starting this ticker when listeners are added.\n * // By default this is true only for the PIXI.Ticker.shared instance.\n * ticker.autoStart = false;\n * // FYI, call this to ensure the ticker is stopped. It should be stopped\n * // if you have not attempted to render anything yet.\n * ticker.stop();\n * // Call this when you are ready for a running shared ticker.\n * ticker.start();\n *\n * @example\n * // You may use the shared ticker to render...\n * let renderer = PIXI.autoDetectRenderer();\n * let stage = new PIXI.Container();\n * document.body.appendChild(renderer.view);\n * ticker.add(function (time) {\n * renderer.render(stage);\n * });\n *\n * @example\n * // Or you can just update it manually.\n * ticker.autoStart = false;\n * ticker.stop();\n * function animate(time) {\n * ticker.update(time);\n * renderer.render(stage);\n * requestAnimationFrame(animate);\n * }\n * animate(performance.now());\n *\n * @member {PIXI.Ticker}\n * @static\n */\nstaticAccessors.shared.get = function ()\n{\n if (!Ticker._shared)\n {\n var shared = Ticker._shared = new Ticker();\n\n shared.autoStart = true;\n shared._protected = true;\n }\n\n return Ticker._shared;\n};\n\n/**\n * The system ticker instance used by {@link PIXI.interaction.InteractionManager} and by\n * {@link PIXI.BasePrepare} for core timing functionality that shouldn't usually need to be paused,\n * unlike the `shared` ticker which drives visual animations and rendering which may want to be paused.\n *\n * The property {@link PIXI.Ticker#autoStart} is set to `true` for this instance.\n *\n * @member {PIXI.Ticker}\n * @static\n */\nstaticAccessors.system.get = function ()\n{\n if (!Ticker._system)\n {\n var system = Ticker._system = new Ticker();\n\n system.autoStart = true;\n system._protected = true;\n }\n\n return Ticker._system;\n};\n\nObject.defineProperties( Ticker.prototype, prototypeAccessors );\nObject.defineProperties( Ticker, staticAccessors );\n\n/**\n * Middleware for for Application Ticker.\n *\n * @example\n * import {TickerPlugin} from '@pixi/ticker';\n * import {Application} from '@pixi/app';\n * Application.registerPlugin(TickerPlugin);\n *\n * @class\n * @memberof PIXI\n */\nvar TickerPlugin = function TickerPlugin () {};\n\nTickerPlugin.init = function init (options)\n{\n var this$1 = this;\n\n // Set default\n options = Object.assign({\n autoStart: true,\n sharedTicker: false,\n }, options);\n\n // Create ticker setter\n Object.defineProperty(this, 'ticker',\n {\n set: function set(ticker)\n {\n if (this._ticker)\n {\n this._ticker.remove(this.render, this);\n }\n this._ticker = ticker;\n if (ticker)\n {\n ticker.add(this.render, this, UPDATE_PRIORITY.LOW);\n }\n },\n get: function get()\n {\n return this._ticker;\n },\n });\n\n /**\n * Convenience method for stopping the render.\n *\n * @method PIXI.Application#stop\n */\n this.stop = function () {\n this$1._ticker.stop();\n };\n\n /**\n * Convenience method for starting the render.\n *\n * @method PIXI.Application#start\n */\n this.start = function () {\n this$1._ticker.start();\n };\n\n /**\n * Internal reference to the ticker.\n *\n * @type {PIXI.Ticker}\n * @name _ticker\n * @memberof PIXI.Application#\n * @private\n */\n this._ticker = null;\n\n /**\n * Ticker for doing render updates.\n *\n * @type {PIXI.Ticker}\n * @name ticker\n * @memberof PIXI.Application#\n * @default PIXI.Ticker.shared\n */\n this.ticker = options.sharedTicker ? Ticker.shared : new Ticker();\n\n // Start the rendering\n if (options.autoStart)\n {\n this.start();\n }\n};\n\n/**\n * Clean up the ticker, scoped to application.\n *\n * @static\n * @private\n */\nTickerPlugin.destroy = function destroy ()\n{\n if (this._ticker)\n {\n var oldTicker = this._ticker;\n\n this.ticker = null;\n oldTicker.destroy();\n }\n};\n\nexport { Ticker, TickerPlugin, UPDATE_PRIORITY };\n//# sourceMappingURL=ticker.es.js.map\n","/*!\n * @pixi/core - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/core is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Runner } from '@pixi/runner';\nimport { determineCrossOrigin, isPow2, BaseTextureCache, TextureCache, uid, EventEmitter, getResolutionOfUrl, nextPow2, isMobile, ProgramCache, removeItems, hex2string, hex2rgb, deprecation, isWebGLSupported, sayHello, premultiplyBlendMode, log2, premultiplyTint } from '@pixi/utils';\nimport { settings } from '@pixi/settings';\nimport { SCALE_MODES, FORMATS, TYPES, TARGETS, DRAW_MODES, ENV, PRECISION, BLEND_MODES, GC_MODES, MIPMAP_MODES, WRAP_MODES, RENDERER_TYPE } from '@pixi/constants';\nimport { Ticker } from '@pixi/ticker';\nimport { GroupD8, Rectangle, Point, Matrix } from '@pixi/math';\nimport { Container } from '@pixi/display';\n\n/**\n * Base resource class for textures that manages validation and uploading, depending on its type.\n *\n * Uploading of a base texture to the GPU is required.\n *\n * @class\n * @memberof PIXI.resources\n */\nvar Resource = function Resource(width, height)\n{\n if ( width === void 0 ) width = 0;\n if ( height === void 0 ) height = 0;\n\n /**\n * Internal width of the resource\n * @member {number}\n * @protected\n */\n this._width = width;\n\n /**\n * Internal height of the resource\n * @member {number}\n * @protected\n */\n this._height = height;\n\n /**\n * If resource has been destroyed\n * @member {boolean}\n * @readonly\n * @default false\n */\n this.destroyed = false;\n\n /**\n * `true` if resource is created by BaseTexture\n * useful for doing cleanup with BaseTexture destroy\n * and not cleaning up resources that were created\n * externally.\n * @member {boolean}\n * @protected\n */\n this.internal = false;\n\n /**\n * Mini-runner for handling resize events\n *\n * @member {Runner}\n * @private\n */\n this.onResize = new Runner('setRealSize', 2);\n\n /**\n * Mini-runner for handling update events\n *\n * @member {Runner}\n * @private\n */\n this.onUpdate = new Runner('update');\n\n /**\n * Handle internal errors, such as loading errors\n *\n * @member {Runner}\n * @private\n */\n this.onError = new Runner('onError', 1);\n};\n\nvar prototypeAccessors = { valid: { configurable: true },width: { configurable: true },height: { configurable: true } };\n\n/**\n * Bind to a parent BaseTexture\n *\n * @param {PIXI.BaseTexture} baseTexture - Parent texture\n */\nResource.prototype.bind = function bind (baseTexture)\n{\n this.onResize.add(baseTexture);\n this.onUpdate.add(baseTexture);\n this.onError.add(baseTexture);\n\n // Call a resize immediate if we already\n // have the width and height of the resource\n if (this._width || this._height)\n {\n this.onResize.run(this._width, this._height);\n }\n};\n\n/**\n * Unbind to a parent BaseTexture\n *\n * @param {PIXI.BaseTexture} baseTexture - Parent texture\n */\nResource.prototype.unbind = function unbind (baseTexture)\n{\n this.onResize.remove(baseTexture);\n this.onUpdate.remove(baseTexture);\n this.onError.remove(baseTexture);\n};\n\n/**\n * Trigger a resize event\n * @param {number} width X dimension\n * @param {number} height Y dimension\n */\nResource.prototype.resize = function resize (width, height)\n{\n if (width !== this._width || height !== this._height)\n {\n this._width = width;\n this._height = height;\n this.onResize.run(width, height);\n }\n};\n\n/**\n * Has been validated\n * @readonly\n * @member {boolean}\n */\nprototypeAccessors.valid.get = function ()\n{\n return !!this._width && !!this._height;\n};\n\n/**\n * Has been updated trigger event\n */\nResource.prototype.update = function update ()\n{\n if (!this.destroyed)\n {\n this.onUpdate.run();\n }\n};\n\n/**\n * This can be overridden to start preloading a resource\n * or do any other prepare step.\n * @protected\n * @return {Promise} Handle the validate event\n */\nResource.prototype.load = function load ()\n{\n return Promise.resolve();\n};\n\n/**\n * The width of the resource.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.width.get = function ()\n{\n return this._width;\n};\n\n/**\n * The height of the resource.\n *\n * @member {number}\n * @readonly\n */\nprototypeAccessors.height.get = function ()\n{\n return this._height;\n};\n\n/**\n * Uploads the texture or returns false if it cant for some reason. Override this.\n *\n * @param {PIXI.Renderer} renderer - yeah, renderer!\n * @param {PIXI.BaseTexture} baseTexture - the texture\n * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context\n * @returns {boolean} true is success\n */\nResource.prototype.upload = function upload (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars\n{\n return false;\n};\n\n/**\n * Set the style, optional to override\n *\n * @param {PIXI.Renderer} renderer - yeah, renderer!\n * @param {PIXI.BaseTexture} baseTexture - the texture\n * @param {PIXI.GLTexture} glTexture - texture instance for this webgl context\n * @returns {boolean} `true` is success\n */\nResource.prototype.style = function style (renderer, baseTexture, glTexture) // eslint-disable-line no-unused-vars\n{\n return false;\n};\n\n/**\n * Clean up anything, this happens when destroying is ready.\n *\n * @protected\n */\nResource.prototype.dispose = function dispose ()\n{\n // override\n};\n\n/**\n * Call when destroying resource, unbind any BaseTexture object\n * before calling this method, as reference counts are maintained\n * internally.\n */\nResource.prototype.destroy = function destroy ()\n{\n if (!this.destroyed)\n {\n this.destroyed = true;\n this.dispose();\n this.onError.removeAll();\n this.onError = null;\n this.onResize.removeAll();\n this.onResize = null;\n this.onUpdate.removeAll();\n this.onUpdate = null;\n }\n};\n\nObject.defineProperties( Resource.prototype, prototypeAccessors );\n\n/**\n * Base for all the image/canvas resources\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n */\nvar BaseImageResource = /*@__PURE__*/(function (Resource) {\n function BaseImageResource(source)\n {\n var width = source.naturalWidth || source.videoWidth || source.width;\n var height = source.naturalHeight || source.videoHeight || source.height;\n\n Resource.call(this, width, height);\n\n /**\n * The source element\n * @member {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement}\n * @readonly\n */\n this.source = source;\n\n /**\n * If set to `true`, will force `texImage2D` over `texSubImage2D` for uploading.\n * Certain types of media (e.g. video) using `texImage2D` is more performant.\n * @member {boolean}\n * @default false\n * @private\n */\n this.noSubImage = false;\n }\n\n if ( Resource ) BaseImageResource.__proto__ = Resource;\n BaseImageResource.prototype = Object.create( Resource && Resource.prototype );\n BaseImageResource.prototype.constructor = BaseImageResource;\n\n /**\n * Set cross origin based detecting the url and the crossorigin\n * @protected\n * @param {HTMLElement} element - Element to apply crossOrigin\n * @param {string} url - URL to check\n * @param {boolean|string} [crossorigin=true] - Cross origin value to use\n */\n BaseImageResource.crossOrigin = function crossOrigin (element, url, crossorigin)\n {\n if (crossorigin === undefined && url.indexOf('data:') !== 0)\n {\n element.crossOrigin = determineCrossOrigin(url);\n }\n else if (crossorigin !== false)\n {\n element.crossOrigin = typeof crossorigin === 'string' ? crossorigin : 'anonymous';\n }\n };\n\n /**\n * Upload the texture to the GPU.\n * @param {PIXI.Renderer} renderer Upload to the renderer\n * @param {PIXI.BaseTexture} baseTexture Reference to parent texture\n * @param {PIXI.GLTexture} glTexture\n * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement} [source] (optional)\n * @returns {boolean} true is success\n */\n BaseImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture, source)\n {\n var gl = renderer.gl;\n var width = baseTexture.realWidth;\n var height = baseTexture.realHeight;\n\n source = source || this.source;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (!this.noSubImage\n && baseTexture.target === gl.TEXTURE_2D\n && glTexture.width === width\n && glTexture.height === height)\n {\n gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, baseTexture.format, baseTexture.type, source);\n }\n else\n {\n glTexture.width = width;\n glTexture.height = height;\n\n gl.texImage2D(baseTexture.target, 0, baseTexture.format, baseTexture.format, baseTexture.type, source);\n }\n\n return true;\n };\n\n /**\n * Checks if source width/height was changed, resize can cause extra baseTexture update.\n * Triggers one update in any case.\n */\n BaseImageResource.prototype.update = function update ()\n {\n if (this.destroyed)\n {\n return;\n }\n\n var width = this.source.naturalWidth || this.source.videoWidth || this.source.width;\n var height = this.source.naturalHeight || this.source.videoHeight || this.source.height;\n\n this.resize(width, height);\n\n Resource.prototype.update.call(this);\n };\n\n /**\n * Destroy this BaseImageResource\n * @override\n * @param {PIXI.BaseTexture} [fromTexture] Optional base texture\n * @return {boolean} Destroy was successful\n */\n BaseImageResource.prototype.dispose = function dispose ()\n {\n this.source = null;\n };\n\n return BaseImageResource;\n}(Resource));\n\n/**\n * Resource type for HTMLImageElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n */\nvar ImageResource = /*@__PURE__*/(function (BaseImageResource) {\n function ImageResource(source, options)\n {\n options = options || {};\n\n if (!(source instanceof HTMLImageElement))\n {\n var imageElement = new Image();\n\n BaseImageResource.crossOrigin(imageElement, source, options.crossorigin);\n\n imageElement.src = source;\n source = imageElement;\n }\n\n BaseImageResource.call(this, source);\n\n // FireFox 68, and possibly other versions, seems like setting the HTMLImageElement#width and #height\n // to non-zero values before its loading completes if images are in a cache.\n // Because of this, need to set the `_width` and the `_height` to zero to avoid uploading incomplete images.\n // Please refer to the issue #5968 (https://github.com/pixijs/pixi.js/issues/5968).\n if (!source.complete && !!this._width && !!this._height)\n {\n this._width = 0;\n this._height = 0;\n }\n\n /**\n * URL of the image source\n * @member {string}\n */\n this.url = source.src;\n\n /**\n * When process is completed\n * @member {Promise}\n * @private\n */\n this._process = null;\n\n /**\n * If the image should be disposed after upload\n * @member {boolean}\n * @default false\n */\n this.preserveBitmap = false;\n\n /**\n * If capable, convert the image using createImageBitmap API\n * @member {boolean}\n * @default PIXI.settings.CREATE_IMAGE_BITMAP\n */\n this.createBitmap = (options.createBitmap !== undefined\n ? options.createBitmap : settings.CREATE_IMAGE_BITMAP) && !!window.createImageBitmap;\n\n /**\n * Controls texture premultiplyAlpha field\n * Copies from options\n * @member {boolean|null}\n * @readonly\n */\n this.premultiplyAlpha = options.premultiplyAlpha !== false;\n\n /**\n * The ImageBitmap element created for HTMLImageElement\n * @member {ImageBitmap}\n * @default null\n */\n this.bitmap = null;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) ImageResource.__proto__ = BaseImageResource;\n ImageResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n ImageResource.prototype.constructor = ImageResource;\n\n /**\n * returns a promise when image will be loaded and processed\n *\n * @param {boolean} [createBitmap=true] whether process image into bitmap\n * @returns {Promise}\n */\n ImageResource.prototype.load = function load (createBitmap)\n {\n var this$1 = this;\n\n if (createBitmap !== undefined)\n {\n this.createBitmap = createBitmap;\n }\n\n if (this._load)\n {\n return this._load;\n }\n\n this._load = new Promise(function (resolve) {\n this$1.url = this$1.source.src;\n var ref = this$1;\n var source = ref.source;\n\n var completed = function () {\n if (this$1.destroyed)\n {\n return;\n }\n source.onload = null;\n source.onerror = null;\n\n this$1.resize(source.width, source.height);\n this$1._load = null;\n\n if (this$1.createBitmap)\n {\n resolve(this$1.process());\n }\n else\n {\n resolve(this$1);\n }\n };\n\n if (source.complete && source.src)\n {\n completed();\n }\n else\n {\n source.onload = completed;\n source.onerror = function (event) { return this$1.onError.run(event); };\n }\n });\n\n return this._load;\n };\n\n /**\n * Called when we need to convert image into BitmapImage.\n * Can be called multiple times, real promise is cached inside.\n *\n * @returns {Promise} cached promise to fill that bitmap\n */\n ImageResource.prototype.process = function process ()\n {\n var this$1 = this;\n\n if (this._process !== null)\n {\n return this._process;\n }\n if (this.bitmap !== null || !window.createImageBitmap)\n {\n return Promise.resolve(this);\n }\n\n this._process = window.createImageBitmap(this.source,\n 0, 0, this.source.width, this.source.height,\n {\n premultiplyAlpha: this.premultiplyAlpha ? 'premultiply' : 'none',\n })\n .then(function (bitmap) {\n if (this$1.destroyed)\n {\n return Promise.reject();\n }\n this$1.bitmap = bitmap;\n this$1.update();\n this$1._process = null;\n\n return Promise.resolve(this$1);\n });\n\n return this._process;\n };\n\n /**\n * Upload the image resource to GPU.\n *\n * @param {PIXI.Renderer} renderer - Renderer to upload to\n * @param {PIXI.BaseTexture} baseTexture - BaseTexture for this resource\n * @param {PIXI.GLTexture} glTexture - GLTexture to use\n * @returns {boolean} true is success\n */\n ImageResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n baseTexture.premultiplyAlpha = this.premultiplyAlpha;\n\n if (!this.createBitmap)\n {\n return BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture);\n }\n if (!this.bitmap)\n {\n // yeah, ignore the output\n this.process();\n if (!this.bitmap)\n {\n return false;\n }\n }\n\n BaseImageResource.prototype.upload.call(this, renderer, baseTexture, glTexture, this.bitmap);\n\n if (!this.preserveBitmap)\n {\n // checks if there are other renderers that possibly need this bitmap\n\n var flag = true;\n\n for (var key in baseTexture._glTextures)\n {\n var otherTex = baseTexture._glTextures[key];\n\n if (otherTex !== glTexture && otherTex.dirtyId !== baseTexture.dirtyId)\n {\n flag = false;\n break;\n }\n }\n\n if (flag)\n {\n if (this.bitmap.close)\n {\n this.bitmap.close();\n }\n\n this.bitmap = null;\n }\n }\n\n return true;\n };\n\n /**\n * Destroys this texture\n * @override\n */\n ImageResource.prototype.dispose = function dispose ()\n {\n this.source.onload = null;\n this.source.onerror = null;\n\n BaseImageResource.prototype.dispose.call(this);\n\n if (this.bitmap)\n {\n this.bitmap.close();\n this.bitmap = null;\n }\n this._process = null;\n this._load = null;\n };\n\n return ImageResource;\n}(BaseImageResource));\n\n/**\n * Collection of installed resource types, class must extend {@link PIXI.resources.Resource}.\n * @example\n * class CustomResource extends PIXI.resources.Resource {\n * // MUST have source, options constructor signature\n * // for auto-detected resources to be created.\n * constructor(source, options) {\n * super();\n * }\n * upload(renderer, baseTexture, glTexture) {\n * // upload with GL\n * return true;\n * }\n * // used to auto-detect resource\n * static test(source, extension) {\n * return extension === 'xyz'|| source instanceof SomeClass;\n * }\n * }\n * // Install the new resource type\n * PIXI.resources.INSTALLED.push(CustomResource);\n *\n * @name PIXI.resources.INSTALLED\n * @type {Array<*>}\n * @static\n * @readonly\n */\nvar INSTALLED = [];\n\n/**\n * Create a resource element from a single source element. This\n * auto-detects which type of resource to create. All resources that\n * are auto-detectable must have a static `test` method and a constructor\n * with the arguments `(source, options?)`. Currently, the supported\n * resources for auto-detection include:\n * - {@link PIXI.resources.ImageResource}\n * - {@link PIXI.resources.CanvasResource}\n * - {@link PIXI.resources.VideoResource}\n * - {@link PIXI.resources.SVGResource}\n * - {@link PIXI.resources.BufferResource}\n * @static\n * @function PIXI.resources.autoDetectResource\n * @param {string|*} source - Resource source, this can be the URL to the resource,\n * a typed-array (for BufferResource), HTMLVideoElement, SVG data-uri\n * or any other resource that can be auto-detected. If not resource is\n * detected, it's assumed to be an ImageResource.\n * @param {object} [options] - Pass-through options to use for Resource\n * @param {number} [options.width] - Width of BufferResource or SVG rasterization\n * @param {number} [options.height] - Height of BufferResource or SVG rasterization\n * @param {boolean} [options.autoLoad=true] - Image, SVG and Video flag to start loading\n * @param {number} [options.scale=1] - SVG source scale. Overridden by width, height\n * @param {boolean} [options.createBitmap=PIXI.settings.CREATE_IMAGE_BITMAP] - Image option to create Bitmap object\n * @param {boolean} [options.crossorigin=true] - Image and Video option to set crossOrigin\n * @param {boolean} [options.autoPlay=true] - Video option to start playing video immediately\n * @param {number} [options.updateFPS=0] - Video option to update how many times a second the\n * texture should be updated from the video. Leave at 0 to update at every render\n * @return {PIXI.resources.Resource} The created resource.\n */\nfunction autoDetectResource(source, options)\n{\n if (!source)\n {\n return null;\n }\n\n var extension = '';\n\n if (typeof source === 'string')\n {\n // search for file extension: period, 3-4 chars, then ?, # or EOL\n var result = (/\\.(\\w{3,4})(?:$|\\?|#)/i).exec(source);\n\n if (result)\n {\n extension = result[1].toLowerCase();\n }\n }\n\n for (var i = INSTALLED.length - 1; i >= 0; --i)\n {\n var ResourcePlugin = INSTALLED[i];\n\n if (ResourcePlugin.test && ResourcePlugin.test(source, extension))\n {\n return new ResourcePlugin(source, options);\n }\n }\n\n // When in doubt: probably an image\n // might be appropriate to throw an error or return null\n return new ImageResource(source, options);\n}\n\n/**\n * @interface SharedArrayBuffer\n */\n\n/**\n * Buffer resource with data of typed array.\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n */\nvar BufferResource = /*@__PURE__*/(function (Resource) {\n function BufferResource(source, options)\n {\n var ref = options || {};\n var width = ref.width;\n var height = ref.height;\n\n if (!width || !height)\n {\n throw new Error('BufferResource width or height invalid');\n }\n\n Resource.call(this, width, height);\n\n /**\n * Source array\n * Cannot be ClampedUint8Array because it cant be uploaded to WebGL\n *\n * @member {Float32Array|Uint8Array|Uint32Array}\n */\n this.data = source;\n }\n\n if ( Resource ) BufferResource.__proto__ = Resource;\n BufferResource.prototype = Object.create( Resource && Resource.prototype );\n BufferResource.prototype.constructor = BufferResource;\n\n /**\n * Upload the texture to the GPU.\n * @param {PIXI.Renderer} renderer Upload to the renderer\n * @param {PIXI.BaseTexture} baseTexture Reference to parent texture\n * @param {PIXI.GLTexture} glTexture glTexture\n * @returns {boolean} true is success\n */\n BufferResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var gl = renderer.gl;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height)\n {\n gl.texSubImage2D(\n baseTexture.target,\n 0,\n 0,\n 0,\n baseTexture.width,\n baseTexture.height,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n else\n {\n glTexture.width = baseTexture.width;\n glTexture.height = baseTexture.height;\n\n gl.texImage2D(\n baseTexture.target,\n 0,\n glTexture.internalFormat,\n baseTexture.width,\n baseTexture.height,\n 0,\n baseTexture.format,\n glTexture.type,\n this.data\n );\n }\n\n return true;\n };\n\n /**\n * Destroy and don't use after this\n * @override\n */\n BufferResource.prototype.dispose = function dispose ()\n {\n this.data = null;\n };\n\n /**\n * Used to auto-detect the type of resource.\n *\n * @static\n * @param {*} source - The source object\n * @return {boolean} `true` if \n */\n BufferResource.test = function test (source)\n {\n return source instanceof Float32Array\n || source instanceof Uint8Array\n || source instanceof Uint32Array;\n };\n\n return BufferResource;\n}(Resource));\n\nvar defaultBufferOptions = {\n scaleMode: SCALE_MODES.NEAREST,\n format: FORMATS.RGBA,\n premultiplyAlpha: false,\n};\n\n/**\n * A Texture stores the information that represents an image.\n * All textures have a base texture, which contains information about the source.\n * Therefore you can have many textures all using a single BaseTexture\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n * @param {PIXI.resources.Resource|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} [resource=null]\n * The current resource to use, for things that aren't Resource objects, will be converted\n * into a Resource.\n * @param {Object} [options] - Collection of options\n * @param {PIXI.MIPMAP_MODES} [options.mipmap=PIXI.settings.MIPMAP_TEXTURES] - If mipmapping is enabled for texture\n * @param {number} [options.anisotropicLevel=PIXI.settings.ANISOTROPIC_LEVEL] - Anisotropic filtering level of texture\n * @param {PIXI.WRAP_MODES} [options.wrapMode=PIXI.settings.WRAP_MODE] - Wrap mode for textures\n * @param {PIXI.SCALE_MODES} [options.scaleMode=PIXI.settings.SCALE_MODE] - Default scale mode, linear, nearest\n * @param {PIXI.FORMATS} [options.format=PIXI.FORMATS.RGBA] - GL format type\n * @param {PIXI.TYPES} [options.type=PIXI.TYPES.UNSIGNED_BYTE] - GL data type\n * @param {PIXI.TARGETS} [options.target=PIXI.TARGETS.TEXTURE_2D] - GL texture target\n * @param {boolean} [options.premultiplyAlpha=true] - Pre multiply the image alpha\n * @param {number} [options.width=0] - Width of the texture\n * @param {number} [options.height=0] - Height of the texture\n * @param {number} [options.resolution] - Resolution of the base texture\n * @param {object} [options.resourceOptions] - Optional resource options,\n * see {@link PIXI.resources.autoDetectResource autoDetectResource}\n */\nvar BaseTexture = /*@__PURE__*/(function (EventEmitter) {\n function BaseTexture(resource, options)\n {\n if ( resource === void 0 ) resource = null;\n if ( options === void 0 ) options = null;\n\n EventEmitter.call(this);\n\n options = options || {};\n\n var premultiplyAlpha = options.premultiplyAlpha;\n var mipmap = options.mipmap;\n var anisotropicLevel = options.anisotropicLevel;\n var scaleMode = options.scaleMode;\n var width = options.width;\n var height = options.height;\n var wrapMode = options.wrapMode;\n var format = options.format;\n var type = options.type;\n var target = options.target;\n var resolution = options.resolution;\n var resourceOptions = options.resourceOptions;\n\n // Convert the resource to a Resource object\n if (resource && !(resource instanceof Resource))\n {\n resource = autoDetectResource(resource, resourceOptions);\n resource.internal = true;\n }\n\n /**\n * The width of the base texture set when the image has loaded\n *\n * @readonly\n * @member {number}\n */\n this.width = width || 0;\n\n /**\n * The height of the base texture set when the image has loaded\n *\n * @readonly\n * @member {number}\n */\n this.height = height || 0;\n\n /**\n * The resolution / device pixel ratio of the texture\n *\n * @member {number}\n * @default PIXI.settings.RESOLUTION\n */\n this.resolution = resolution || settings.RESOLUTION;\n\n /**\n * Mipmap mode of the texture, affects downscaled images\n *\n * @member {PIXI.MIPMAP_MODES}\n * @default PIXI.settings.MIPMAP_TEXTURES\n */\n this.mipmap = mipmap !== undefined ? mipmap : settings.MIPMAP_TEXTURES;\n\n /**\n * Anisotropic filtering level of texture\n *\n * @member {number}\n * @default PIXI.settings.ANISOTROPIC_LEVEL\n */\n this.anisotropicLevel = anisotropicLevel !== undefined ? anisotropicLevel : settings.ANISOTROPIC_LEVEL;\n\n /**\n * How the texture wraps\n * @member {number}\n */\n this.wrapMode = wrapMode || settings.WRAP_MODE;\n\n /**\n * The scale mode to apply when scaling this texture\n *\n * @member {PIXI.SCALE_MODES}\n * @default PIXI.settings.SCALE_MODE\n */\n this.scaleMode = scaleMode !== undefined ? scaleMode : settings.SCALE_MODE;\n\n /**\n * The pixel format of the texture\n *\n * @member {PIXI.FORMATS}\n * @default PIXI.FORMATS.RGBA\n */\n this.format = format || FORMATS.RGBA;\n\n /**\n * The type of resource data\n *\n * @member {PIXI.TYPES}\n * @default PIXI.TYPES.UNSIGNED_BYTE\n */\n this.type = type || TYPES.UNSIGNED_BYTE;\n\n /**\n * The target type\n *\n * @member {PIXI.TARGETS}\n * @default PIXI.TARGETS.TEXTURE_2D\n */\n this.target = target || TARGETS.TEXTURE_2D;\n\n /**\n * Set to true to enable pre-multiplied alpha\n *\n * @member {boolean}\n * @default true\n */\n this.premultiplyAlpha = premultiplyAlpha !== false;\n\n /**\n * Global unique identifier for this BaseTexture\n *\n * @member {string}\n * @protected\n */\n this.uid = uid();\n\n /**\n * Used by automatic texture Garbage Collection, stores last GC tick when it was bound\n *\n * @member {number}\n * @protected\n */\n this.touched = 0;\n\n /**\n * Whether or not the texture is a power of two, try to use power of two textures as much\n * as you can\n *\n * @readonly\n * @member {boolean}\n * @default false\n */\n this.isPowerOfTwo = false;\n this._refreshPOT();\n\n /**\n * The map of render context textures where this is bound\n *\n * @member {Object}\n * @private\n */\n this._glTextures = {};\n\n /**\n * Used by TextureSystem to only update texture to the GPU when needed.\n * Please call `update()` to increment it.\n *\n * @readonly\n * @member {number}\n */\n this.dirtyId = 0;\n\n /**\n * Used by TextureSystem to only update texture style when needed.\n *\n * @protected\n * @member {number}\n */\n this.dirtyStyleId = 0;\n\n /**\n * Currently default cache ID.\n *\n * @member {string}\n */\n this.cacheId = null;\n\n /**\n * Generally speaking means when resource is loaded.\n * @readonly\n * @member {boolean}\n */\n this.valid = width > 0 && height > 0;\n\n /**\n * The collection of alternative cache ids, since some BaseTextures\n * can have more than one ID, short name and longer full URL\n *\n * @member {Array}\n * @readonly\n */\n this.textureCacheIds = [];\n\n /**\n * Flag if BaseTexture has been destroyed.\n *\n * @member {boolean}\n * @readonly\n */\n this.destroyed = false;\n\n /**\n * The resource used by this BaseTexture, there can only\n * be one resource per BaseTexture, but textures can share\n * resources.\n *\n * @member {PIXI.resources.Resource}\n * @readonly\n */\n this.resource = null;\n\n /**\n * Number of the texture batch, used by multi-texture renderers\n *\n * @member {number}\n */\n this._batchEnabled = 0;\n\n /**\n * Fired when a not-immediately-available source finishes loading.\n *\n * @protected\n * @event PIXI.BaseTexture#loaded\n * @param {PIXI.BaseTexture} baseTexture - Resource loaded.\n */\n\n /**\n * Fired when a not-immediately-available source fails to load.\n *\n * @protected\n * @event PIXI.BaseTexture#error\n * @param {PIXI.BaseTexture} baseTexture - Resource errored.\n * @param {ErrorEvent} event - Load error event.\n */\n\n /**\n * Fired when BaseTexture is updated.\n *\n * @protected\n * @event PIXI.BaseTexture#loaded\n * @param {PIXI.BaseTexture} baseTexture - Resource loaded.\n */\n\n /**\n * Fired when BaseTexture is updated.\n *\n * @protected\n * @event PIXI.BaseTexture#update\n * @param {PIXI.BaseTexture} baseTexture - Instance of texture being updated.\n */\n\n /**\n * Fired when BaseTexture is destroyed.\n *\n * @protected\n * @event PIXI.BaseTexture#dispose\n * @param {PIXI.BaseTexture} baseTexture - Instance of texture being destroyed.\n */\n\n // Set the resource\n this.setResource(resource);\n }\n\n if ( EventEmitter ) BaseTexture.__proto__ = EventEmitter;\n BaseTexture.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n BaseTexture.prototype.constructor = BaseTexture;\n\n var prototypeAccessors = { realWidth: { configurable: true },realHeight: { configurable: true } };\n\n /**\n * Pixel width of the source of this texture\n *\n * @readonly\n * @member {number}\n */\n prototypeAccessors.realWidth.get = function ()\n {\n return Math.ceil((this.width * this.resolution) - 1e-4);\n };\n\n /**\n * Pixel height of the source of this texture\n *\n * @readonly\n * @member {number}\n */\n prototypeAccessors.realHeight.get = function ()\n {\n return Math.ceil((this.height * this.resolution) - 1e-4);\n };\n\n /**\n * Changes style options of BaseTexture\n *\n * @param {PIXI.SCALE_MODES} [scaleMode] - Pixi scalemode\n * @param {PIXI.MIPMAP_MODES} [mipmap] - enable mipmaps\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setStyle = function setStyle (scaleMode, mipmap)\n {\n var dirty;\n\n if (scaleMode !== undefined && scaleMode !== this.scaleMode)\n {\n this.scaleMode = scaleMode;\n dirty = true;\n }\n\n if (mipmap !== undefined && mipmap !== this.mipmap)\n {\n this.mipmap = mipmap;\n dirty = true;\n }\n\n if (dirty)\n {\n this.dirtyStyleId++;\n }\n\n return this;\n };\n\n /**\n * Changes w/h/resolution. Texture becomes valid if width and height are greater than zero.\n *\n * @param {number} width Visual width\n * @param {number} height Visual height\n * @param {number} [resolution] Optionally set resolution\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setSize = function setSize (width, height, resolution)\n {\n this.resolution = resolution || this.resolution;\n this.width = width;\n this.height = height;\n this._refreshPOT();\n this.update();\n\n return this;\n };\n\n /**\n * Sets real size of baseTexture, preserves current resolution.\n *\n * @param {number} realWidth Full rendered width\n * @param {number} realHeight Full rendered height\n * @param {number} [resolution] Optionally set resolution\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setRealSize = function setRealSize (realWidth, realHeight, resolution)\n {\n this.resolution = resolution || this.resolution;\n this.width = realWidth / this.resolution;\n this.height = realHeight / this.resolution;\n this._refreshPOT();\n this.update();\n\n return this;\n };\n\n /**\n * Refresh check for isPowerOfTwo texture based on size\n *\n * @private\n */\n BaseTexture.prototype._refreshPOT = function _refreshPOT ()\n {\n this.isPowerOfTwo = isPow2(this.realWidth) && isPow2(this.realHeight);\n };\n\n /**\n * Changes resolution\n *\n * @param {number} [resolution] res\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setResolution = function setResolution (resolution)\n {\n var oldResolution = this.resolution;\n\n if (oldResolution === resolution)\n {\n return this;\n }\n\n this.resolution = resolution;\n\n if (this.valid)\n {\n this.width = this.width * oldResolution / resolution;\n this.height = this.height * oldResolution / resolution;\n this.emit('update', this);\n }\n\n this._refreshPOT();\n\n return this;\n };\n\n /**\n * Sets the resource if it wasn't set. Throws error if resource already present\n *\n * @param {PIXI.resources.Resource} resource - that is managing this BaseTexture\n * @returns {PIXI.BaseTexture} this\n */\n BaseTexture.prototype.setResource = function setResource (resource)\n {\n if (this.resource === resource)\n {\n return this;\n }\n\n if (this.resource)\n {\n throw new Error('Resource can be set only once');\n }\n\n resource.bind(this);\n\n this.resource = resource;\n\n return this;\n };\n\n /**\n * Invalidates the object. Texture becomes valid if width and height are greater than zero.\n */\n BaseTexture.prototype.update = function update ()\n {\n if (!this.valid)\n {\n if (this.width > 0 && this.height > 0)\n {\n this.valid = true;\n this.emit('loaded', this);\n this.emit('update', this);\n }\n }\n else\n {\n this.dirtyId++;\n this.dirtyStyleId++;\n this.emit('update', this);\n }\n };\n\n /**\n * Handle errors with resources.\n * @private\n * @param {ErrorEvent} event - Error event emitted.\n */\n BaseTexture.prototype.onError = function onError (event)\n {\n this.emit('error', this, event);\n };\n\n /**\n * Destroys this base texture.\n * The method stops if resource doesn't want this texture to be destroyed.\n * Removes texture from all caches.\n */\n BaseTexture.prototype.destroy = function destroy ()\n {\n // remove and destroy the resource\n if (this.resource)\n {\n this.resource.unbind(this);\n // only destroy resourced created internally\n if (this.resource.internal)\n {\n this.resource.destroy();\n }\n this.resource = null;\n }\n\n if (this.cacheId)\n {\n delete BaseTextureCache[this.cacheId];\n delete TextureCache[this.cacheId];\n\n this.cacheId = null;\n }\n\n // finally let the WebGL renderer know..\n this.dispose();\n\n BaseTexture.removeFromCache(this);\n this.textureCacheIds = null;\n\n this.destroyed = true;\n };\n\n /**\n * Frees the texture from WebGL memory without destroying this texture object.\n * This means you can still use the texture later which will upload it to GPU\n * memory again.\n *\n * @fires PIXI.BaseTexture#dispose\n */\n BaseTexture.prototype.dispose = function dispose ()\n {\n this.emit('dispose', this);\n };\n\n /**\n * Helper function that creates a base texture based on the source you provide.\n * The source can be - image url, image element, canvas element. If the\n * source is an image url or an image element and not in the base texture\n * cache, it will be created and loaded.\n *\n * @static\n * @param {string|HTMLImageElement|HTMLCanvasElement|SVGElement|HTMLVideoElement} source - The\n * source to create base texture from.\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @returns {PIXI.BaseTexture} The new base texture.\n */\n BaseTexture.from = function from (source, options)\n {\n var cacheId = null;\n\n if (typeof source === 'string')\n {\n cacheId = source;\n }\n else\n {\n if (!source._pixiId)\n {\n source._pixiId = \"pixiid_\" + (uid());\n }\n\n cacheId = source._pixiId;\n }\n\n var baseTexture = BaseTextureCache[cacheId];\n\n if (!baseTexture)\n {\n baseTexture = new BaseTexture(source, options);\n baseTexture.cacheId = cacheId;\n BaseTexture.addToCache(baseTexture, cacheId);\n }\n\n return baseTexture;\n };\n\n /**\n * Create a new BaseTexture with a BufferResource from a Float32Array.\n * RGBA values are floats from 0 to 1.\n * @static\n * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data\n * is provided, a new Float32Array is created.\n * @param {number} width - Width of the resource\n * @param {number} height - Height of the resource\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.BaseTexture} The resulting new BaseTexture\n */\n BaseTexture.fromBuffer = function fromBuffer (buffer, width, height, options)\n {\n buffer = buffer || new Float32Array(width * height * 4);\n\n var resource = new BufferResource(buffer, { width: width, height: height });\n var type = buffer instanceof Float32Array ? TYPES.FLOAT : TYPES.UNSIGNED_BYTE;\n\n return new BaseTexture(resource, Object.assign(defaultBufferOptions, options || { width: width, height: height, type: type }));\n };\n\n /**\n * Adds a BaseTexture to the global BaseTextureCache. This cache is shared across the whole PIXI object.\n *\n * @static\n * @param {PIXI.BaseTexture} baseTexture - The BaseTexture to add to the cache.\n * @param {string} id - The id that the BaseTexture will be stored against.\n */\n BaseTexture.addToCache = function addToCache (baseTexture, id)\n {\n if (id)\n {\n if (baseTexture.textureCacheIds.indexOf(id) === -1)\n {\n baseTexture.textureCacheIds.push(id);\n }\n\n if (BaseTextureCache[id])\n {\n // eslint-disable-next-line no-console\n console.warn((\"BaseTexture added to the cache with an id [\" + id + \"] that already had an entry\"));\n }\n\n BaseTextureCache[id] = baseTexture;\n }\n };\n\n /**\n * Remove a BaseTexture from the global BaseTextureCache.\n *\n * @static\n * @param {string|PIXI.BaseTexture} baseTexture - id of a BaseTexture to be removed, or a BaseTexture instance itself.\n * @return {PIXI.BaseTexture|null} The BaseTexture that was removed.\n */\n BaseTexture.removeFromCache = function removeFromCache (baseTexture)\n {\n if (typeof baseTexture === 'string')\n {\n var baseTextureFromCache = BaseTextureCache[baseTexture];\n\n if (baseTextureFromCache)\n {\n var index = baseTextureFromCache.textureCacheIds.indexOf(baseTexture);\n\n if (index > -1)\n {\n baseTextureFromCache.textureCacheIds.splice(index, 1);\n }\n\n delete BaseTextureCache[baseTexture];\n\n return baseTextureFromCache;\n }\n }\n else if (baseTexture && baseTexture.textureCacheIds)\n {\n for (var i = 0; i < baseTexture.textureCacheIds.length; ++i)\n {\n delete BaseTextureCache[baseTexture.textureCacheIds[i]];\n }\n\n baseTexture.textureCacheIds.length = 0;\n\n return baseTexture;\n }\n\n return null;\n };\n\n Object.defineProperties( BaseTexture.prototype, prototypeAccessors );\n\n return BaseTexture;\n}(EventEmitter));\n\n/**\n * Global number of the texture batch, used by multi-texture renderers\n *\n * @static\n * @member {number}\n */\nBaseTexture._globalBatch = 0;\n\n/**\n * A resource that contains a number of sources.\n *\n * @class\n * @extends PIXI.resources.Resource\n * @memberof PIXI.resources\n * @param {number|Array<*>} source - Number of items in array or the collection\n * of image URLs to use. Can also be resources, image elements, canvas, etc.\n * @param {object} [options] Options to apply to {@link PIXI.resources.autoDetectResource}\n * @param {number} [options.width] - Width of the resource\n * @param {number} [options.height] - Height of the resource\n */\nvar ArrayResource = /*@__PURE__*/(function (Resource) {\n function ArrayResource(source, options)\n {\n options = options || {};\n\n var urls;\n var length = source;\n\n if (Array.isArray(source))\n {\n urls = source;\n length = source.length;\n }\n\n Resource.call(this, options.width, options.height);\n\n /**\n * Collection of resources.\n * @member {Array}\n * @readonly\n */\n this.items = [];\n\n /**\n * Dirty IDs for each part\n * @member {Array}\n * @readonly\n */\n this.itemDirtyIds = [];\n\n for (var i = 0; i < length; i++)\n {\n var partTexture = new BaseTexture();\n\n this.items.push(partTexture);\n this.itemDirtyIds.push(-1);\n }\n\n /**\n * Number of elements in array\n *\n * @member {number}\n * @readonly\n */\n this.length = length;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (urls)\n {\n for (var i$1 = 0; i$1 < length; i$1++)\n {\n this.addResourceAt(autoDetectResource(urls[i$1], options), i$1);\n }\n }\n }\n\n if ( Resource ) ArrayResource.__proto__ = Resource;\n ArrayResource.prototype = Object.create( Resource && Resource.prototype );\n ArrayResource.prototype.constructor = ArrayResource;\n\n /**\n * Destroy this BaseImageResource\n * @override\n */\n ArrayResource.prototype.dispose = function dispose ()\n {\n for (var i = 0, len = this.length; i < len; i++)\n {\n this.items[i].destroy();\n }\n this.items = null;\n this.itemDirtyIds = null;\n this._load = null;\n };\n\n /**\n * Set a resource by ID\n *\n * @param {PIXI.resources.Resource} resource\n * @param {number} index - Zero-based index of resource to set\n * @return {PIXI.resources.ArrayResource} Instance for chaining\n */\n ArrayResource.prototype.addResourceAt = function addResourceAt (resource, index)\n {\n var baseTexture = this.items[index];\n\n if (!baseTexture)\n {\n throw new Error((\"Index \" + index + \" is out of bounds\"));\n }\n\n // Inherit the first resource dimensions\n if (resource.valid && !this.valid)\n {\n this.resize(resource.width, resource.height);\n }\n\n this.items[index].setResource(resource);\n\n return this;\n };\n\n /**\n * Set the parent base texture\n * @member {PIXI.BaseTexture}\n * @override\n */\n ArrayResource.prototype.bind = function bind (baseTexture)\n {\n Resource.prototype.bind.call(this, baseTexture);\n\n baseTexture.target = TARGETS.TEXTURE_2D_ARRAY;\n\n for (var i = 0; i < this.length; i++)\n {\n this.items[i].on('update', baseTexture.update, baseTexture);\n }\n };\n\n /**\n * Unset the parent base texture\n * @member {PIXI.BaseTexture}\n * @override\n */\n ArrayResource.prototype.unbind = function unbind (baseTexture)\n {\n Resource.prototype.unbind.call(this, baseTexture);\n\n for (var i = 0; i < this.length; i++)\n {\n this.items[i].off('update', baseTexture.update, baseTexture);\n }\n };\n\n /**\n * Load all the resources simultaneously\n * @override\n * @return {Promise} When load is resolved\n */\n ArrayResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n var resources = this.items.map(function (item) { return item.resource; });\n\n // TODO: also implement load part-by-part strategy\n var promises = resources.map(function (item) { return item.load(); });\n\n this._load = Promise.all(promises)\n .then(function () {\n var ref = resources[0];\n var width = ref.width;\n var height = ref.height;\n\n this$1.resize(width, height);\n\n return Promise.resolve(this$1);\n }\n );\n\n return this._load;\n };\n\n /**\n * Upload the resources to the GPU.\n * @param {PIXI.Renderer} renderer\n * @param {PIXI.BaseTexture} texture\n * @param {PIXI.GLTexture} glTexture\n * @returns {boolean} whether texture was uploaded\n */\n ArrayResource.prototype.upload = function upload (renderer, texture, glTexture)\n {\n var ref = this;\n var length = ref.length;\n var itemDirtyIds = ref.itemDirtyIds;\n var items = ref.items;\n var gl = renderer.gl;\n\n if (glTexture.dirtyId < 0)\n {\n gl.texImage3D(\n gl.TEXTURE_2D_ARRAY,\n 0,\n texture.format,\n this._width,\n this._height,\n length,\n 0,\n texture.format,\n texture.type,\n null\n );\n }\n\n for (var i = 0; i < length; i++)\n {\n var item = items[i];\n\n if (itemDirtyIds[i] < item.dirtyId)\n {\n itemDirtyIds[i] = item.dirtyId;\n if (item.valid)\n {\n gl.texSubImage3D(\n gl.TEXTURE_2D_ARRAY,\n 0,\n 0, // xoffset\n 0, // yoffset\n i, // zoffset\n item.resource.width,\n item.resource.height,\n 1,\n texture.format,\n texture.type,\n item.resource.source\n );\n }\n }\n }\n\n return true;\n };\n\n return ArrayResource;\n}(Resource));\n\n/**\n * @interface OffscreenCanvas\n */\n\n/**\n * Resource type for HTMLCanvasElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {HTMLCanvasElement} source - Canvas element to use\n */\nvar CanvasResource = /*@__PURE__*/(function (BaseImageResource) {\n function CanvasResource () {\n BaseImageResource.apply(this, arguments);\n }\n\n if ( BaseImageResource ) CanvasResource.__proto__ = BaseImageResource;\n CanvasResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n CanvasResource.prototype.constructor = CanvasResource;\n\n CanvasResource.test = function test (source)\n {\n var OffscreenCanvas = window.OffscreenCanvas;\n\n // Check for browsers that don't yet support OffscreenCanvas\n if (OffscreenCanvas && source instanceof OffscreenCanvas)\n {\n return true;\n }\n\n return source instanceof HTMLCanvasElement;\n };\n\n return CanvasResource;\n}(BaseImageResource));\n\n/**\n * Resource for a CubeTexture which contains six resources.\n *\n * @class\n * @extends PIXI.resources.ArrayResource\n * @memberof PIXI.resources\n * @param {Array} [source] Collection of URLs or resources\n * to use as the sides of the cube.\n * @param {object} [options] - ImageResource options\n * @param {number} [options.width] - Width of resource\n * @param {number} [options.height] - Height of resource\n */\nvar CubeResource = /*@__PURE__*/(function (ArrayResource) {\n function CubeResource(source, options)\n {\n options = options || {};\n\n ArrayResource.call(this, source, options);\n\n if (this.length !== CubeResource.SIDES)\n {\n throw new Error((\"Invalid length. Got \" + (this.length) + \", expected 6\"));\n }\n\n for (var i = 0; i < CubeResource.SIDES; i++)\n {\n this.items[i].target = TARGETS.TEXTURE_CUBE_MAP_POSITIVE_X + i;\n }\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( ArrayResource ) CubeResource.__proto__ = ArrayResource;\n CubeResource.prototype = Object.create( ArrayResource && ArrayResource.prototype );\n CubeResource.prototype.constructor = CubeResource;\n\n /**\n * Add binding\n *\n * @override\n * @param {PIXI.BaseTexture} baseTexture - parent base texture\n */\n CubeResource.prototype.bind = function bind (baseTexture)\n {\n ArrayResource.prototype.bind.call(this, baseTexture);\n\n baseTexture.target = TARGETS.TEXTURE_CUBE_MAP;\n };\n\n /**\n * Upload the resource\n *\n * @returns {boolean} true is success\n */\n CubeResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var dirty = this.itemDirtyIds;\n\n for (var i = 0; i < CubeResource.SIDES; i++)\n {\n var side = this.items[i];\n\n if (dirty[i] < side.dirtyId)\n {\n dirty[i] = side.dirtyId;\n if (side.valid)\n {\n side.resource.upload(renderer, side, glTexture);\n }\n }\n }\n\n return true;\n };\n\n return CubeResource;\n}(ArrayResource));\n\n/**\n * Number of texture sides to store for CubeResources\n *\n * @name PIXI.resources.CubeResource.SIDES\n * @static\n * @member {number}\n * @default 6\n */\nCubeResource.SIDES = 6;\n\n/**\n * Resource type for SVG elements and graphics.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {string} source - Base64 encoded SVG element or URL for SVG file.\n * @param {object} [options] - Options to use\n * @param {number} [options.scale=1] Scale to apply to SVG. Overridden by...\n * @param {number} [options.width] Rasterize SVG this wide. Aspect ratio preserved if height not specified.\n * @param {number} [options.height] Rasterize SVG this high. Aspect ratio preserved if width not specified.\n * @param {boolean} [options.autoLoad=true] Start loading right away.\n */\nvar SVGResource = /*@__PURE__*/(function (BaseImageResource) {\n function SVGResource(source, options)\n {\n options = options || {};\n\n BaseImageResource.call(this, document.createElement('canvas'));\n this._width = 0;\n this._height = 0;\n\n /**\n * Base64 encoded SVG element or URL for SVG file\n * @readonly\n * @member {string}\n */\n this.svg = source;\n\n /**\n * The source scale to apply when rasterizing on load\n * @readonly\n * @member {number}\n */\n this.scale = options.scale || 1;\n\n /**\n * A width override for rasterization on load\n * @readonly\n * @member {number}\n */\n this._overrideWidth = options.width;\n\n /**\n * A height override for rasterization on load\n * @readonly\n * @member {number}\n */\n this._overrideHeight = options.height;\n\n /**\n * Call when completely loaded\n * @private\n * @member {function}\n */\n this._resolve = null;\n\n /**\n * Cross origin value to use\n * @private\n * @member {boolean|string}\n */\n this._crossorigin = options.crossorigin;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) SVGResource.__proto__ = BaseImageResource;\n SVGResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n SVGResource.prototype.constructor = SVGResource;\n\n SVGResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n this._load = new Promise(function (resolve) {\n // Save this until after load is finished\n this$1._resolve = function () {\n this$1.resize(this$1.source.width, this$1.source.height);\n resolve(this$1);\n };\n\n // Convert SVG inline string to data-uri\n if ((/^\\]*(?:\\s(width|height)=('|\")(\\d*(?:\\.\\d+)?)(?:px)?('|\"))[^>]*(?:\\s(width|height)=('|\")(\\d*(?:\\.\\d+)?)(?:px)?('|\"))[^>]*>/i; // eslint-disable-line max-len\n\n/**\n * Resource type for HTMLVideoElement.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {HTMLVideoElement|object|string|Array} source - Video element to use.\n * @param {object} [options] - Options to use\n * @param {boolean} [options.autoLoad=true] - Start loading the video immediately\n * @param {boolean} [options.autoPlay=true] - Start playing video immediately\n * @param {number} [options.updateFPS=0] - How many times a second to update the texture from the video.\n * Leave at 0 to update at every render.\n * @param {boolean} [options.crossorigin=true] - Load image using cross origin\n */\nvar VideoResource = /*@__PURE__*/(function (BaseImageResource) {\n function VideoResource(source, options)\n {\n options = options || {};\n\n if (!(source instanceof HTMLVideoElement))\n {\n var videoElement = document.createElement('video');\n\n // workaround for https://github.com/pixijs/pixi.js/issues/5996\n videoElement.setAttribute('preload', 'auto');\n videoElement.setAttribute('webkit-playsinline', '');\n videoElement.setAttribute('playsinline', '');\n\n if (typeof source === 'string')\n {\n source = [source];\n }\n\n BaseImageResource.crossOrigin(videoElement, (source[0].src || source[0]), options.crossorigin);\n\n // array of objects or strings\n for (var i = 0; i < source.length; ++i)\n {\n var sourceElement = document.createElement('source');\n\n var ref = source[i];\n var src = ref.src;\n var mime = ref.mime;\n\n src = src || source[i];\n\n var baseSrc = src.split('?').shift().toLowerCase();\n var ext = baseSrc.substr(baseSrc.lastIndexOf('.') + 1);\n\n mime = mime || (\"video/\" + ext);\n\n sourceElement.src = src;\n sourceElement.type = mime;\n\n videoElement.appendChild(sourceElement);\n }\n\n // Override the source\n source = videoElement;\n }\n\n BaseImageResource.call(this, source);\n\n this.noSubImage = true;\n this._autoUpdate = true;\n this._isAutoUpdating = false;\n this._updateFPS = options.updateFPS || 0;\n this._msToNextUpdate = 0;\n\n /**\n * When set to true will automatically play videos used by this texture once\n * they are loaded. If false, it will not modify the playing state.\n *\n * @member {boolean}\n * @default true\n */\n this.autoPlay = options.autoPlay !== false;\n\n /**\n * Promise when loading\n * @member {Promise}\n * @private\n * @default null\n */\n this._load = null;\n\n /**\n * Callback when completed with load.\n * @member {function}\n * @private\n */\n this._resolve = null;\n\n // Bind for listeners\n this._onCanPlay = this._onCanPlay.bind(this);\n this._onError = this._onError.bind(this);\n\n if (options.autoLoad !== false)\n {\n this.load();\n }\n }\n\n if ( BaseImageResource ) VideoResource.__proto__ = BaseImageResource;\n VideoResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n VideoResource.prototype.constructor = VideoResource;\n\n var prototypeAccessors = { autoUpdate: { configurable: true },updateFPS: { configurable: true } };\n\n /**\n * Trigger updating of the texture\n *\n * @param {number} [deltaTime=0] - time delta since last tick\n */\n VideoResource.prototype.update = function update (deltaTime)\n {\n if ( deltaTime === void 0 ) deltaTime = 0;\n\n if (!this.destroyed)\n {\n // account for if video has had its playbackRate changed\n var elapsedMS = Ticker.shared.elapsedMS * this.source.playbackRate;\n\n this._msToNextUpdate = Math.floor(this._msToNextUpdate - elapsedMS);\n if (!this._updateFPS || this._msToNextUpdate <= 0)\n {\n BaseImageResource.prototype.update.call(this, deltaTime);\n this._msToNextUpdate = this._updateFPS ? Math.floor(1000 / this._updateFPS) : 0;\n }\n }\n };\n\n /**\n * Start preloading the video resource.\n *\n * @protected\n * @return {Promise} Handle the validate event\n */\n VideoResource.prototype.load = function load ()\n {\n var this$1 = this;\n\n if (this._load)\n {\n return this._load;\n }\n\n var source = this.source;\n\n if ((source.readyState === source.HAVE_ENOUGH_DATA || source.readyState === source.HAVE_FUTURE_DATA)\n && source.width && source.height)\n {\n source.complete = true;\n }\n\n source.addEventListener('play', this._onPlayStart.bind(this));\n source.addEventListener('pause', this._onPlayStop.bind(this));\n\n if (!this._isSourceReady())\n {\n source.addEventListener('canplay', this._onCanPlay);\n source.addEventListener('canplaythrough', this._onCanPlay);\n source.addEventListener('error', this._onError, true);\n }\n else\n {\n this._onCanPlay();\n }\n\n this._load = new Promise(function (resolve) {\n if (this$1.valid)\n {\n resolve(this$1);\n }\n else\n {\n this$1._resolve = resolve;\n\n source.load();\n }\n });\n\n return this._load;\n };\n\n /**\n * Handle video error events.\n *\n * @private\n */\n VideoResource.prototype._onError = function _onError ()\n {\n this.source.removeEventListener('error', this._onError, true);\n this.onError.run(event);\n };\n\n /**\n * Returns true if the underlying source is playing.\n *\n * @private\n * @return {boolean} True if playing.\n */\n VideoResource.prototype._isSourcePlaying = function _isSourcePlaying ()\n {\n var source = this.source;\n\n return (source.currentTime > 0 && source.paused === false && source.ended === false && source.readyState > 2);\n };\n\n /**\n * Returns true if the underlying source is ready for playing.\n *\n * @private\n * @return {boolean} True if ready.\n */\n VideoResource.prototype._isSourceReady = function _isSourceReady ()\n {\n return this.source.readyState === 3 || this.source.readyState === 4;\n };\n\n /**\n * Runs the update loop when the video is ready to play\n *\n * @private\n */\n VideoResource.prototype._onPlayStart = function _onPlayStart ()\n {\n // Just in case the video has not received its can play even yet..\n if (!this.valid)\n {\n this._onCanPlay();\n }\n\n if (!this._isAutoUpdating && this.autoUpdate)\n {\n Ticker.shared.add(this.update, this);\n this._isAutoUpdating = true;\n }\n };\n\n /**\n * Fired when a pause event is triggered, stops the update loop\n *\n * @private\n */\n VideoResource.prototype._onPlayStop = function _onPlayStop ()\n {\n if (this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n this._isAutoUpdating = false;\n }\n };\n\n /**\n * Fired when the video is loaded and ready to play\n *\n * @private\n */\n VideoResource.prototype._onCanPlay = function _onCanPlay ()\n {\n var ref = this;\n var source = ref.source;\n\n source.removeEventListener('canplay', this._onCanPlay);\n source.removeEventListener('canplaythrough', this._onCanPlay);\n\n var valid = this.valid;\n\n this.resize(source.videoWidth, source.videoHeight);\n\n // prevent multiple loaded dispatches..\n if (!valid && this._resolve)\n {\n this._resolve(this);\n this._resolve = null;\n }\n\n if (this._isSourcePlaying())\n {\n this._onPlayStart();\n }\n else if (this.autoPlay)\n {\n source.play();\n }\n };\n\n /**\n * Destroys this texture\n * @override\n */\n VideoResource.prototype.dispose = function dispose ()\n {\n if (this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n }\n\n if (this.source)\n {\n this.source.removeEventListener('error', this._onError, true);\n this.source.pause();\n this.source.src = '';\n this.source.load();\n }\n BaseImageResource.prototype.dispose.call(this);\n };\n\n /**\n * Should the base texture automatically update itself, set to true by default\n *\n * @member {boolean}\n */\n prototypeAccessors.autoUpdate.get = function ()\n {\n return this._autoUpdate;\n };\n\n prototypeAccessors.autoUpdate.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (value !== this._autoUpdate)\n {\n this._autoUpdate = value;\n\n if (!this._autoUpdate && this._isAutoUpdating)\n {\n Ticker.shared.remove(this.update, this);\n this._isAutoUpdating = false;\n }\n else if (this._autoUpdate && !this._isAutoUpdating)\n {\n Ticker.shared.add(this.update, this);\n this._isAutoUpdating = true;\n }\n }\n };\n\n /**\n * How many times a second to update the texture from the video. Leave at 0 to update at every render.\n * A lower fps can help performance, as updating the texture at 60fps on a 30ps video may not be efficient.\n *\n * @member {number}\n */\n prototypeAccessors.updateFPS.get = function ()\n {\n return this._updateFPS;\n };\n\n prototypeAccessors.updateFPS.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (value !== this._updateFPS)\n {\n this._updateFPS = value;\n }\n };\n\n /**\n * Used to auto-detect the type of resource.\n *\n * @static\n * @param {*} source - The source object\n * @param {string} extension - The extension of source, if set\n * @return {boolean} `true` if video source\n */\n VideoResource.test = function test (source, extension)\n {\n return (source instanceof HTMLVideoElement)\n || VideoResource.TYPES.indexOf(extension) > -1;\n };\n\n Object.defineProperties( VideoResource.prototype, prototypeAccessors );\n\n return VideoResource;\n}(BaseImageResource));\n\n/**\n * List of common video file extensions supported by VideoResource.\n * @constant\n * @member {Array}\n * @static\n * @readonly\n */\nVideoResource.TYPES = ['mp4', 'm4v', 'webm', 'ogg', 'ogv', 'h264', 'avi', 'mov'];\n\n/**\n * Resource type for ImageBitmap.\n * @class\n * @extends PIXI.resources.BaseImageResource\n * @memberof PIXI.resources\n * @param {ImageBitmap} source - Image element to use\n */\nvar ImageBitmapResource = /*@__PURE__*/(function (BaseImageResource) {\n function ImageBitmapResource () {\n BaseImageResource.apply(this, arguments);\n }\n\n if ( BaseImageResource ) ImageBitmapResource.__proto__ = BaseImageResource;\n ImageBitmapResource.prototype = Object.create( BaseImageResource && BaseImageResource.prototype );\n ImageBitmapResource.prototype.constructor = ImageBitmapResource;\n\n ImageBitmapResource.test = function test (source)\n {\n return !!window.createImageBitmap && source instanceof ImageBitmap;\n };\n\n return ImageBitmapResource;\n}(BaseImageResource));\n\nINSTALLED.push(\n ImageResource,\n ImageBitmapResource,\n CanvasResource,\n VideoResource,\n SVGResource,\n BufferResource,\n CubeResource,\n ArrayResource\n);\n\nvar index = ({\n INSTALLED: INSTALLED,\n autoDetectResource: autoDetectResource,\n ArrayResource: ArrayResource,\n BufferResource: BufferResource,\n CanvasResource: CanvasResource,\n CubeResource: CubeResource,\n ImageResource: ImageResource,\n ImageBitmapResource: ImageBitmapResource,\n SVGResource: SVGResource,\n VideoResource: VideoResource,\n Resource: Resource,\n BaseImageResource: BaseImageResource\n});\n\n/**\n * System is a base class used for extending systems used by the {@link PIXI.Renderer}\n *\n * @see PIXI.Renderer#addSystem\n * @class\n * @memberof PIXI\n */\nvar System = function System(renderer)\n{\n /**\n * The renderer this manager works for.\n *\n * @member {PIXI.Renderer}\n */\n this.renderer = renderer;\n};\n\n/**\n * Generic destroy methods to be overridden by the subclass\n */\nSystem.prototype.destroy = function destroy ()\n{\n this.renderer = null;\n};\n\n/**\n * Resource type for DepthTexture.\n * @class\n * @extends PIXI.resources.BufferResource\n * @memberof PIXI.resources\n */\nvar DepthResource = /*@__PURE__*/(function (BufferResource) {\n function DepthResource () {\n BufferResource.apply(this, arguments);\n }\n\n if ( BufferResource ) DepthResource.__proto__ = BufferResource;\n DepthResource.prototype = Object.create( BufferResource && BufferResource.prototype );\n DepthResource.prototype.constructor = DepthResource;\n\n DepthResource.prototype.upload = function upload (renderer, baseTexture, glTexture)\n {\n var gl = renderer.gl;\n\n gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, baseTexture.premultiplyAlpha);\n\n if (glTexture.width === baseTexture.width && glTexture.height === baseTexture.height)\n {\n gl.texSubImage2D(\n baseTexture.target,\n 0,\n 0,\n 0,\n baseTexture.width,\n baseTexture.height,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n else\n {\n glTexture.width = baseTexture.width;\n glTexture.height = baseTexture.height;\n\n gl.texImage2D(\n baseTexture.target,\n 0,\n gl.DEPTH_COMPONENT16, // Needed for depth to render properly in webgl2.0\n baseTexture.width,\n baseTexture.height,\n 0,\n baseTexture.format,\n baseTexture.type,\n this.data\n );\n }\n\n return true;\n };\n\n return DepthResource;\n}(BufferResource));\n\n/**\n * Frame buffer used by the BaseRenderTexture\n *\n * @class\n * @memberof PIXI\n */\nvar Framebuffer = function Framebuffer(width, height)\n{\n this.width = Math.ceil(width || 100);\n this.height = Math.ceil(height || 100);\n\n this.stencil = false;\n this.depth = false;\n\n this.dirtyId = 0;\n this.dirtyFormat = 0;\n this.dirtySize = 0;\n\n this.depthTexture = null;\n this.colorTextures = [];\n\n this.glFramebuffers = {};\n\n this.disposeRunner = new Runner('disposeFramebuffer', 2);\n};\n\nvar prototypeAccessors$1 = { colorTexture: { configurable: true } };\n\n/**\n * Reference to the colorTexture.\n *\n * @member {PIXI.Texture[]}\n * @readonly\n */\nprototypeAccessors$1.colorTexture.get = function ()\n{\n return this.colorTextures[0];\n};\n\n/**\n * Add texture to the colorTexture array\n *\n * @param {number} [index=0] - Index of the array to add the texture to\n * @param {PIXI.Texture} [texture] - Texture to add to the array\n */\nFramebuffer.prototype.addColorTexture = function addColorTexture (index, texture)\n{\n if ( index === void 0 ) index = 0;\n\n // TODO add some validation to the texture - same width / height etc?\n this.colorTextures[index] = texture || new BaseTexture(null, { scaleMode: 0,\n resolution: 1,\n mipmap: false,\n width: this.width,\n height: this.height });// || new Texture();\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Add a depth texture to the frame buffer\n *\n * @param {PIXI.Texture} [texture] - Texture to add\n */\nFramebuffer.prototype.addDepthTexture = function addDepthTexture (texture)\n{\n /* eslint-disable max-len */\n this.depthTexture = texture || new BaseTexture(new DepthResource(null, { width: this.width, height: this.height }), { scaleMode: 0,\n resolution: 1,\n width: this.width,\n height: this.height,\n mipmap: false,\n format: FORMATS.DEPTH_COMPONENT,\n type: TYPES.UNSIGNED_SHORT });// UNSIGNED_SHORT;\n /* eslint-disable max-len */\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Enable depth on the frame buffer\n */\nFramebuffer.prototype.enableDepth = function enableDepth ()\n{\n this.depth = true;\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Enable stencil on the frame buffer\n */\nFramebuffer.prototype.enableStencil = function enableStencil ()\n{\n this.stencil = true;\n\n this.dirtyId++;\n this.dirtyFormat++;\n\n return this;\n};\n\n/**\n * Resize the frame buffer\n *\n * @param {number} width - Width of the frame buffer to resize to\n * @param {number} height - Height of the frame buffer to resize to\n */\nFramebuffer.prototype.resize = function resize (width, height)\n{\n width = Math.ceil(width);\n height = Math.ceil(height);\n\n if (width === this.width && height === this.height) { return; }\n\n this.width = width;\n this.height = height;\n\n this.dirtyId++;\n this.dirtySize++;\n\n for (var i = 0; i < this.colorTextures.length; i++)\n {\n var texture = this.colorTextures[i];\n var resolution = texture.resolution;\n\n // take into acount the fact the texture may have a different resolution..\n texture.setSize(width / resolution, height / resolution);\n }\n\n if (this.depthTexture)\n {\n var resolution$1 = this.depthTexture.resolution;\n\n this.depthTexture.setSize(width / resolution$1, height / resolution$1);\n }\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nFramebuffer.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\nObject.defineProperties( Framebuffer.prototype, prototypeAccessors$1 );\n\n/**\n * A BaseRenderTexture is a special texture that allows any PixiJS display object to be rendered to it.\n *\n * __Hint__: All DisplayObjects (i.e. Sprites) that render to a BaseRenderTexture should be preloaded\n * otherwise black rectangles will be drawn instead.\n *\n * A BaseRenderTexture takes a snapshot of any Display Object given to its render method. The position\n * and rotation of the given Display Objects is ignored. For example:\n *\n * ```js\n * let renderer = PIXI.autoDetectRenderer();\n * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 800, height: 600 });\n * let renderTexture = new PIXI.RenderTexture(baseRenderTexture);\n * let sprite = PIXI.Sprite.from(\"spinObj_01.png\");\n *\n * sprite.position.x = 800/2;\n * sprite.position.y = 600/2;\n * sprite.anchor.x = 0.5;\n * sprite.anchor.y = 0.5;\n *\n * renderer.render(sprite, renderTexture);\n * ```\n *\n * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0\n * you can clear the transform\n *\n * ```js\n *\n * sprite.setTransform()\n *\n * let baseRenderTexture = new PIXI.BaseRenderTexture({ width: 100, height: 100 });\n * let renderTexture = new PIXI.RenderTexture(baseRenderTexture);\n *\n * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture\n * ```\n *\n * @class\n * @extends PIXI.BaseTexture\n * @memberof PIXI\n */\nvar BaseRenderTexture = /*@__PURE__*/(function (BaseTexture) {\n function BaseRenderTexture(options)\n {\n if (typeof options === 'number')\n {\n /* eslint-disable prefer-rest-params */\n // Backward compatibility of signature\n var width$1 = arguments[0];\n var height$1 = arguments[1];\n var scaleMode = arguments[2];\n var resolution = arguments[3];\n\n options = { width: width$1, height: height$1, scaleMode: scaleMode, resolution: resolution };\n /* eslint-enable prefer-rest-params */\n }\n\n BaseTexture.call(this, null, options);\n\n var ref = options || {};\n var width = ref.width;\n var height = ref.height;\n\n // Set defaults\n this.mipmap = false;\n this.width = Math.ceil(width) || 100;\n this.height = Math.ceil(height) || 100;\n this.valid = true;\n\n /**\n * A reference to the canvas render target (we only need one as this can be shared across renderers)\n *\n * @protected\n * @member {object}\n */\n this._canvasRenderTarget = null;\n\n this.clearColor = [0, 0, 0, 0];\n\n this.framebuffer = new Framebuffer(this.width * this.resolution, this.height * this.resolution)\n .addColorTexture(0, this);\n\n // TODO - could this be added the systems?\n\n /**\n * The data structure for the stencil masks.\n *\n * @member {PIXI.Graphics[]}\n */\n this.stencilMaskStack = [];\n\n /**\n * The data structure for the filters.\n *\n * @member {PIXI.Graphics[]}\n */\n this.filterStack = [{}];\n }\n\n if ( BaseTexture ) BaseRenderTexture.__proto__ = BaseTexture;\n BaseRenderTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype );\n BaseRenderTexture.prototype.constructor = BaseRenderTexture;\n\n /**\n * Resizes the BaseRenderTexture.\n *\n * @param {number} width - The width to resize to.\n * @param {number} height - The height to resize to.\n */\n BaseRenderTexture.prototype.resize = function resize (width, height)\n {\n width = Math.ceil(width);\n height = Math.ceil(height);\n this.framebuffer.resize(width * this.resolution, height * this.resolution);\n };\n\n /**\n * Frees the texture and framebuffer from WebGL memory without destroying this texture object.\n * This means you can still use the texture later which will upload it to GPU\n * memory again.\n *\n * @fires PIXI.BaseTexture#dispose\n */\n BaseRenderTexture.prototype.dispose = function dispose ()\n {\n this.framebuffer.dispose();\n\n BaseTexture.prototype.dispose.call(this);\n };\n\n /**\n * Destroys this texture.\n *\n */\n BaseRenderTexture.prototype.destroy = function destroy ()\n {\n BaseTexture.prototype.destroy.call(this, true);\n\n this.framebuffer = null;\n };\n\n return BaseRenderTexture;\n}(BaseTexture));\n\n/**\n * Stores a texture's frame in UV coordinates, in\n * which everything lies in the rectangle `[(0,0), (1,0),\n * (1,1), (0,1)]`.\n *\n * | Corner | Coordinates |\n * |--------------|-------------|\n * | Top-Left | `(x0,y0)` |\n * | Top-Right | `(x1,y1)` |\n * | Bottom-Right | `(x2,y2)` |\n * | Bottom-Left | `(x3,y3)` |\n *\n * @class\n * @protected\n * @memberof PIXI\n */\nvar TextureUvs = function TextureUvs()\n{\n /**\n * X-component of top-left corner `(x0,y0)`.\n *\n * @member {number}\n */\n this.x0 = 0;\n\n /**\n * Y-component of top-left corner `(x0,y0)`.\n *\n * @member {number}\n */\n this.y0 = 0;\n\n /**\n * X-component of top-right corner `(x1,y1)`.\n *\n * @member {number}\n */\n this.x1 = 1;\n\n /**\n * Y-component of top-right corner `(x1,y1)`.\n *\n * @member {number}\n */\n this.y1 = 0;\n\n /**\n * X-component of bottom-right corner `(x2,y2)`.\n *\n * @member {number}\n */\n this.x2 = 1;\n\n /**\n * Y-component of bottom-right corner `(x2,y2)`.\n *\n * @member {number}\n */\n this.y2 = 1;\n\n /**\n * X-component of bottom-left corner `(x3,y3)`.\n *\n * @member {number}\n */\n this.x3 = 0;\n\n /**\n * Y-component of bottom-right corner `(x3,y3)`.\n *\n * @member {number}\n */\n this.y3 = 1;\n\n this.uvsFloat32 = new Float32Array(8);\n};\n\n/**\n * Sets the texture Uvs based on the given frame information.\n *\n * @protected\n * @param {PIXI.Rectangle} frame - The frame of the texture\n * @param {PIXI.Rectangle} baseFrame - The base frame of the texture\n * @param {number} rotate - Rotation of frame, see {@link PIXI.GroupD8}\n */\nTextureUvs.prototype.set = function set (frame, baseFrame, rotate)\n{\n var tw = baseFrame.width;\n var th = baseFrame.height;\n\n if (rotate)\n {\n // width and height div 2 div baseFrame size\n var w2 = frame.width / 2 / tw;\n var h2 = frame.height / 2 / th;\n\n // coordinates of center\n var cX = (frame.x / tw) + w2;\n var cY = (frame.y / th) + h2;\n\n rotate = GroupD8.add(rotate, GroupD8.NW); // NW is top-left corner\n this.x0 = cX + (w2 * GroupD8.uX(rotate));\n this.y0 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2); // rotate 90 degrees clockwise\n this.x1 = cX + (w2 * GroupD8.uX(rotate));\n this.y1 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2);\n this.x2 = cX + (w2 * GroupD8.uX(rotate));\n this.y2 = cY + (h2 * GroupD8.uY(rotate));\n\n rotate = GroupD8.add(rotate, 2);\n this.x3 = cX + (w2 * GroupD8.uX(rotate));\n this.y3 = cY + (h2 * GroupD8.uY(rotate));\n }\n else\n {\n this.x0 = frame.x / tw;\n this.y0 = frame.y / th;\n\n this.x1 = (frame.x + frame.width) / tw;\n this.y1 = frame.y / th;\n\n this.x2 = (frame.x + frame.width) / tw;\n this.y2 = (frame.y + frame.height) / th;\n\n this.x3 = frame.x / tw;\n this.y3 = (frame.y + frame.height) / th;\n }\n\n this.uvsFloat32[0] = this.x0;\n this.uvsFloat32[1] = this.y0;\n this.uvsFloat32[2] = this.x1;\n this.uvsFloat32[3] = this.y1;\n this.uvsFloat32[4] = this.x2;\n this.uvsFloat32[5] = this.y2;\n this.uvsFloat32[6] = this.x3;\n this.uvsFloat32[7] = this.y3;\n};\n\nvar DEFAULT_UVS = new TextureUvs();\n\n/**\n * A texture stores the information that represents an image or part of an image.\n *\n * It cannot be added to the display list directly; instead use it as the texture for a Sprite.\n * If no frame is provided for a texture, then the whole image is used.\n *\n * You can directly create a texture from an image and then reuse it multiple times like this :\n *\n * ```js\n * let texture = PIXI.Texture.from('assets/image.png');\n * let sprite1 = new PIXI.Sprite(texture);\n * let sprite2 = new PIXI.Sprite(texture);\n * ```\n *\n * If you didnt pass the texture frame to constructor, it enables `noFrame` mode:\n * it subscribes on baseTexture events, it automatically resizes at the same time as baseTexture.\n *\n * Textures made from SVGs, loaded or not, cannot be used before the file finishes processing.\n * You can check for this by checking the sprite's _textureID property.\n * ```js\n * var texture = PIXI.Texture.from('assets/image.svg');\n * var sprite1 = new PIXI.Sprite(texture);\n * //sprite1._textureID should not be undefined if the texture has finished processing the SVG file\n * ```\n * You can use a ticker or rAF to ensure your sprites load the finished textures after processing. See issue #3068.\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar Texture = /*@__PURE__*/(function (EventEmitter) {\n function Texture(baseTexture, frame, orig, trim, rotate, anchor)\n {\n EventEmitter.call(this);\n\n /**\n * Does this Texture have any frame data assigned to it?\n *\n * This mode is enabled automatically if no frame was passed inside constructor.\n *\n * In this mode texture is subscribed to baseTexture events, and fires `update` on any change.\n *\n * Beware, after loading or resize of baseTexture event can fired two times!\n * If you want more control, subscribe on baseTexture itself.\n *\n * ```js\n * texture.on('update', () => {});\n * ```\n *\n * Any assignment of `frame` switches off `noFrame` mode.\n *\n * @member {boolean}\n */\n this.noFrame = false;\n\n if (!frame)\n {\n this.noFrame = true;\n frame = new Rectangle(0, 0, 1, 1);\n }\n\n if (baseTexture instanceof Texture)\n {\n baseTexture = baseTexture.baseTexture;\n }\n\n /**\n * The base texture that this texture uses.\n *\n * @member {PIXI.BaseTexture}\n */\n this.baseTexture = baseTexture;\n\n /**\n * This is the area of the BaseTexture image to actually copy to the Canvas / WebGL when rendering,\n * irrespective of the actual frame size or placement (which can be influenced by trimmed texture atlases)\n *\n * @member {PIXI.Rectangle}\n */\n this._frame = frame;\n\n /**\n * This is the trimmed area of original texture, before it was put in atlas\n * Please call `updateUvs()` after you change coordinates of `trim` manually.\n *\n * @member {PIXI.Rectangle}\n */\n this.trim = trim;\n\n /**\n * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered.\n *\n * @member {boolean}\n */\n this.valid = false;\n\n /**\n * This will let a renderer know that a texture has been updated (used mainly for WebGL uv updates)\n *\n * @member {boolean}\n */\n this.requiresUpdate = false;\n\n /**\n * The WebGL UV data cache. Can be used as quad UV\n *\n * @member {PIXI.TextureUvs}\n * @protected\n */\n this._uvs = DEFAULT_UVS;\n\n /**\n * Default TextureMatrix instance for this texture\n * By default that object is not created because its heavy\n *\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = null;\n\n /**\n * This is the area of original texture, before it was put in atlas\n *\n * @member {PIXI.Rectangle}\n */\n this.orig = orig || frame;// new Rectangle(0, 0, 1, 1);\n\n this._rotate = Number(rotate || 0);\n\n if (rotate === true)\n {\n // this is old texturepacker legacy, some games/libraries are passing \"true\" for rotated textures\n this._rotate = 2;\n }\n else if (this._rotate % 2 !== 0)\n {\n throw new Error('attempt to use diamond-shaped UVs. If you are sure, set rotation manually');\n }\n\n /**\n * Anchor point that is used as default if sprite is created with this texture.\n * Changing the `defaultAnchor` at a later point of time will not update Sprite's anchor point.\n * @member {PIXI.Point}\n * @default {0,0}\n */\n this.defaultAnchor = anchor ? new Point(anchor.x, anchor.y) : new Point(0, 0);\n\n /**\n * Update ID is observed by sprites and TextureMatrix instances.\n * Call updateUvs() to increment it.\n *\n * @member {number}\n * @protected\n */\n\n this._updateID = 0;\n\n /**\n * The ids under which this Texture has been added to the texture cache. This is\n * automatically set as long as Texture.addToCache is used, but may not be set if a\n * Texture is added directly to the TextureCache array.\n *\n * @member {string[]}\n */\n this.textureCacheIds = [];\n\n if (!baseTexture.valid)\n {\n baseTexture.once('loaded', this.onBaseTextureUpdated, this);\n }\n else if (this.noFrame)\n {\n // if there is no frame we should monitor for any base texture changes..\n if (baseTexture.valid)\n {\n this.onBaseTextureUpdated(baseTexture);\n }\n }\n else\n {\n this.frame = frame;\n }\n\n if (this.noFrame)\n {\n baseTexture.on('update', this.onBaseTextureUpdated, this);\n }\n }\n\n if ( EventEmitter ) Texture.__proto__ = EventEmitter;\n Texture.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n Texture.prototype.constructor = Texture;\n\n var prototypeAccessors = { resolution: { configurable: true },frame: { configurable: true },rotate: { configurable: true },width: { configurable: true },height: { configurable: true } };\n\n /**\n * Updates this texture on the gpu.\n *\n * Calls the TextureResource update.\n *\n * If you adjusted `frame` manually, please call `updateUvs()` instead.\n *\n */\n Texture.prototype.update = function update ()\n {\n if (this.baseTexture.resource)\n {\n this.baseTexture.resource.update();\n }\n };\n\n /**\n * Called when the base texture is updated\n *\n * @protected\n * @param {PIXI.BaseTexture} baseTexture - The base texture.\n */\n Texture.prototype.onBaseTextureUpdated = function onBaseTextureUpdated (baseTexture)\n {\n if (this.noFrame)\n {\n if (!this.baseTexture.valid)\n {\n return;\n }\n\n this._frame.width = baseTexture.width;\n this._frame.height = baseTexture.height;\n this.valid = true;\n this.updateUvs();\n }\n else\n {\n // TODO this code looks confusing.. boo to abusing getters and setters!\n // if user gave us frame that has bigger size than resized texture it can be a problem\n this.frame = this._frame;\n }\n\n this.emit('update', this);\n };\n\n /**\n * Destroys this texture\n *\n * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well\n */\n Texture.prototype.destroy = function destroy (destroyBase)\n {\n if (this.baseTexture)\n {\n if (destroyBase)\n {\n var ref = this.baseTexture;\n var resource = ref.resource;\n\n // delete the texture if it exists in the texture cache..\n // this only needs to be removed if the base texture is actually destroyed too..\n if (resource && TextureCache[resource.url])\n {\n Texture.removeFromCache(resource.url);\n }\n\n this.baseTexture.destroy();\n }\n\n this.baseTexture.off('update', this.onBaseTextureUpdated, this);\n\n this.baseTexture = null;\n }\n\n this._frame = null;\n this._uvs = null;\n this.trim = null;\n this.orig = null;\n\n this.valid = false;\n\n Texture.removeFromCache(this);\n this.textureCacheIds = null;\n };\n\n /**\n * Creates a new texture object that acts the same as this one.\n *\n * @return {PIXI.Texture} The new texture\n */\n Texture.prototype.clone = function clone ()\n {\n return new Texture(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor);\n };\n\n /**\n * Updates the internal WebGL UV cache. Use it after you change `frame` or `trim` of the texture.\n * Call it after changing the frame\n */\n Texture.prototype.updateUvs = function updateUvs ()\n {\n if (this._uvs === DEFAULT_UVS)\n {\n this._uvs = new TextureUvs();\n }\n\n this._uvs.set(this._frame, this.baseTexture, this.rotate);\n\n this._updateID++;\n };\n\n /**\n * Helper function that creates a new Texture based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|PIXI.BaseTexture} source\n * Source to create texture from\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Texture} The newly created texture\n */\n Texture.from = function from (source, options)\n {\n if ( options === void 0 ) options = {};\n\n var cacheId = null;\n\n if (typeof source === 'string')\n {\n cacheId = source;\n }\n else\n {\n if (!source._pixiId)\n {\n source._pixiId = \"pixiid_\" + (uid());\n }\n\n cacheId = source._pixiId;\n }\n\n var texture = TextureCache[cacheId];\n\n if (!texture)\n {\n if (!options.resolution)\n {\n options.resolution = getResolutionOfUrl(source);\n }\n\n texture = new Texture(new BaseTexture(source, options));\n texture.baseTexture.cacheId = cacheId;\n\n BaseTexture.addToCache(texture.baseTexture, cacheId);\n Texture.addToCache(texture, cacheId);\n }\n\n // lets assume its a base texture!\n return texture;\n };\n\n /**\n * Create a new Texture with a BufferResource from a Float32Array.\n * RGBA values are floats from 0 to 1.\n * @static\n * @param {Float32Array|Uint8Array} buffer The optional array to use, if no data\n * is provided, a new Float32Array is created.\n * @param {number} width - Width of the resource\n * @param {number} height - Height of the resource\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Texture} The resulting new BaseTexture\n */\n Texture.fromBuffer = function fromBuffer (buffer, width, height, options)\n {\n return new Texture(BaseTexture.fromBuffer(buffer, width, height, options));\n };\n\n /**\n * Create a texture from a source and add to the cache.\n *\n * @static\n * @param {HTMLImageElement|HTMLCanvasElement} source - The input source.\n * @param {String} imageUrl - File name of texture, for cache and resolving resolution.\n * @param {String} [name] - Human readable name for the texture cache. If no name is\n * specified, only `imageUrl` will be used as the cache ID.\n * @return {PIXI.Texture} Output texture\n */\n Texture.fromLoader = function fromLoader (source, imageUrl, name)\n {\n var resource = new ImageResource(source);\n\n resource.url = imageUrl;\n\n var baseTexture = new BaseTexture(resource, {\n scaleMode: settings.SCALE_MODE,\n resolution: getResolutionOfUrl(imageUrl),\n });\n\n var texture = new Texture(baseTexture);\n\n // No name, use imageUrl instead\n if (!name)\n {\n name = imageUrl;\n }\n\n // lets also add the frame to pixi's global cache for 'fromLoader' function\n BaseTexture.addToCache(texture.baseTexture, name);\n Texture.addToCache(texture, name);\n\n // also add references by url if they are different.\n if (name !== imageUrl)\n {\n BaseTexture.addToCache(texture.baseTexture, imageUrl);\n Texture.addToCache(texture, imageUrl);\n }\n\n return texture;\n };\n\n /**\n * Adds a Texture to the global TextureCache. This cache is shared across the whole PIXI object.\n *\n * @static\n * @param {PIXI.Texture} texture - The Texture to add to the cache.\n * @param {string} id - The id that the Texture will be stored against.\n */\n Texture.addToCache = function addToCache (texture, id)\n {\n if (id)\n {\n if (texture.textureCacheIds.indexOf(id) === -1)\n {\n texture.textureCacheIds.push(id);\n }\n\n if (TextureCache[id])\n {\n // eslint-disable-next-line no-console\n console.warn((\"Texture added to the cache with an id [\" + id + \"] that already had an entry\"));\n }\n\n TextureCache[id] = texture;\n }\n };\n\n /**\n * Remove a Texture from the global TextureCache.\n *\n * @static\n * @param {string|PIXI.Texture} texture - id of a Texture to be removed, or a Texture instance itself\n * @return {PIXI.Texture|null} The Texture that was removed\n */\n Texture.removeFromCache = function removeFromCache (texture)\n {\n if (typeof texture === 'string')\n {\n var textureFromCache = TextureCache[texture];\n\n if (textureFromCache)\n {\n var index = textureFromCache.textureCacheIds.indexOf(texture);\n\n if (index > -1)\n {\n textureFromCache.textureCacheIds.splice(index, 1);\n }\n\n delete TextureCache[texture];\n\n return textureFromCache;\n }\n }\n else if (texture && texture.textureCacheIds)\n {\n for (var i = 0; i < texture.textureCacheIds.length; ++i)\n {\n // Check that texture matches the one being passed in before deleting it from the cache.\n if (TextureCache[texture.textureCacheIds[i]] === texture)\n {\n delete TextureCache[texture.textureCacheIds[i]];\n }\n }\n\n texture.textureCacheIds.length = 0;\n\n return texture;\n }\n\n return null;\n };\n\n /**\n * Returns resolution of baseTexture\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.resolution.get = function ()\n {\n return this.baseTexture.resolution;\n };\n\n /**\n * The frame specifies the region of the base texture that this texture uses.\n * Please call `updateUvs()` after you change coordinates of `frame` manually.\n *\n * @member {PIXI.Rectangle}\n */\n prototypeAccessors.frame.get = function ()\n {\n return this._frame;\n };\n\n prototypeAccessors.frame.set = function (frame) // eslint-disable-line require-jsdoc\n {\n this._frame = frame;\n\n this.noFrame = false;\n\n var x = frame.x;\n var y = frame.y;\n var width = frame.width;\n var height = frame.height;\n var xNotFit = x + width > this.baseTexture.width;\n var yNotFit = y + height > this.baseTexture.height;\n\n if (xNotFit || yNotFit)\n {\n var relationship = xNotFit && yNotFit ? 'and' : 'or';\n var errorX = \"X: \" + x + \" + \" + width + \" = \" + (x + width) + \" > \" + (this.baseTexture.width);\n var errorY = \"Y: \" + y + \" + \" + height + \" = \" + (y + height) + \" > \" + (this.baseTexture.height);\n\n throw new Error('Texture Error: frame does not fit inside the base Texture dimensions: '\n + errorX + \" \" + relationship + \" \" + errorY);\n }\n\n this.valid = width && height && this.baseTexture.valid;\n\n if (!this.trim && !this.rotate)\n {\n this.orig = frame;\n }\n\n if (this.valid)\n {\n this.updateUvs();\n }\n };\n\n /**\n * Indicates whether the texture is rotated inside the atlas\n * set to 2 to compensate for texture packer rotation\n * set to 6 to compensate for spine packer rotation\n * can be used to rotate or mirror sprites\n * See {@link PIXI.GroupD8} for explanation\n *\n * @member {number}\n */\n prototypeAccessors.rotate.get = function ()\n {\n return this._rotate;\n };\n\n prototypeAccessors.rotate.set = function (rotate) // eslint-disable-line require-jsdoc\n {\n this._rotate = rotate;\n if (this.valid)\n {\n this.updateUvs();\n }\n };\n\n /**\n * The width of the Texture in pixels.\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this.orig.width;\n };\n\n /**\n * The height of the Texture in pixels.\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this.orig.height;\n };\n\n Object.defineProperties( Texture.prototype, prototypeAccessors );\n\n return Texture;\n}(EventEmitter));\n\nfunction createWhiteTexture()\n{\n var canvas = document.createElement('canvas');\n\n canvas.width = 16;\n canvas.height = 16;\n\n var context = canvas.getContext('2d');\n\n context.fillStyle = 'white';\n context.fillRect(0, 0, 16, 16);\n\n return new Texture(new BaseTexture(new CanvasResource(canvas)));\n}\n\nfunction removeAllHandlers(tex)\n{\n tex.destroy = function _emptyDestroy() { /* empty */ };\n tex.on = function _emptyOn() { /* empty */ };\n tex.once = function _emptyOnce() { /* empty */ };\n tex.emit = function _emptyEmit() { /* empty */ };\n}\n\n/**\n * An empty texture, used often to not have to create multiple empty textures.\n * Can not be destroyed.\n *\n * @static\n * @constant\n * @member {PIXI.Texture}\n */\nTexture.EMPTY = new Texture(new BaseTexture());\nremoveAllHandlers(Texture.EMPTY);\nremoveAllHandlers(Texture.EMPTY.baseTexture);\n\n/**\n * A white texture of 16x16 size, used for graphics and other things\n * Can not be destroyed.\n *\n * @static\n * @constant\n * @member {PIXI.Texture}\n */\nTexture.WHITE = createWhiteTexture();\nremoveAllHandlers(Texture.WHITE);\nremoveAllHandlers(Texture.WHITE.baseTexture);\n\n/**\n * A RenderTexture is a special texture that allows any PixiJS display object to be rendered to it.\n *\n * __Hint__: All DisplayObjects (i.e. Sprites) that render to a RenderTexture should be preloaded\n * otherwise black rectangles will be drawn instead.\n *\n * __Hint-2__: The actual memory allocation will happen on first render.\n * You shouldn't create renderTextures each frame just to delete them after, try to reuse them.\n *\n * A RenderTexture takes a snapshot of any Display Object given to its render method. For example:\n *\n * ```js\n * let renderer = PIXI.autoDetectRenderer();\n * let renderTexture = PIXI.RenderTexture.create(800, 600);\n * let sprite = PIXI.Sprite.from(\"spinObj_01.png\");\n *\n * sprite.position.x = 800/2;\n * sprite.position.y = 600/2;\n * sprite.anchor.x = 0.5;\n * sprite.anchor.y = 0.5;\n *\n * renderer.render(sprite, renderTexture);\n * ```\n *\n * The Sprite in this case will be rendered using its local transform. To render this sprite at 0,0\n * you can clear the transform\n *\n * ```js\n *\n * sprite.setTransform()\n *\n * let renderTexture = new PIXI.RenderTexture.create(100, 100);\n *\n * renderer.render(sprite, renderTexture); // Renders to center of RenderTexture\n * ```\n *\n * @class\n * @extends PIXI.Texture\n * @memberof PIXI\n */\nvar RenderTexture = /*@__PURE__*/(function (Texture) {\n function RenderTexture(baseRenderTexture, frame)\n {\n // support for legacy..\n var _legacyRenderer = null;\n\n if (!(baseRenderTexture instanceof BaseRenderTexture))\n {\n /* eslint-disable prefer-rest-params, no-console */\n var width = arguments[1];\n var height = arguments[2];\n var scaleMode = arguments[3];\n var resolution = arguments[4];\n\n // we have an old render texture..\n console.warn((\"Please use RenderTexture.create(\" + width + \", \" + height + \") instead of the ctor directly.\"));\n _legacyRenderer = arguments[0];\n /* eslint-enable prefer-rest-params, no-console */\n\n frame = null;\n baseRenderTexture = new BaseRenderTexture({\n width: width,\n height: height,\n scaleMode: scaleMode,\n resolution: resolution,\n });\n }\n\n /**\n * The base texture object that this texture uses\n *\n * @member {PIXI.BaseTexture}\n */\n Texture.call(this, baseRenderTexture, frame);\n\n this.legacyRenderer = _legacyRenderer;\n\n /**\n * This will let the renderer know if the texture is valid. If it's not then it cannot be rendered.\n *\n * @member {boolean}\n */\n this.valid = true;\n\n /**\n * Stores `sourceFrame` when this texture is inside current filter stack.\n * You can read it inside filters.\n *\n * @readonly\n * @member {PIXI.Rectangle}\n */\n this.filterFrame = null;\n\n /**\n * The key for pooled texture of FilterSystem\n * @protected\n * @member {string}\n */\n this.filterPoolKey = null;\n\n this.updateUvs();\n }\n\n if ( Texture ) RenderTexture.__proto__ = Texture;\n RenderTexture.prototype = Object.create( Texture && Texture.prototype );\n RenderTexture.prototype.constructor = RenderTexture;\n\n /**\n * Resizes the RenderTexture.\n *\n * @param {number} width - The width to resize to.\n * @param {number} height - The height to resize to.\n * @param {boolean} [resizeBaseTexture=true] - Should the baseTexture.width and height values be resized as well?\n */\n RenderTexture.prototype.resize = function resize (width, height, resizeBaseTexture)\n {\n if ( resizeBaseTexture === void 0 ) resizeBaseTexture = true;\n\n width = Math.ceil(width);\n height = Math.ceil(height);\n\n // TODO - could be not required..\n this.valid = (width > 0 && height > 0);\n\n this._frame.width = this.orig.width = width;\n this._frame.height = this.orig.height = height;\n\n if (resizeBaseTexture)\n {\n this.baseTexture.resize(width, height);\n }\n\n this.updateUvs();\n };\n\n /**\n * Changes the resolution of baseTexture, but does not change framebuffer size.\n *\n * @param {number} resolution - The new resolution to apply to RenderTexture\n */\n RenderTexture.prototype.setResolution = function setResolution (resolution)\n {\n var ref = this;\n var baseTexture = ref.baseTexture;\n\n if (baseTexture.resolution === resolution)\n {\n return;\n }\n\n baseTexture.setResolution(resolution);\n this.resize(baseTexture.width, baseTexture.height, false);\n };\n\n /**\n * A short hand way of creating a render texture.\n *\n * @param {object} [options] - Options\n * @param {number} [options.width=100] - The width of the render texture\n * @param {number} [options.height=100] - The height of the render texture\n * @param {number} [options.scaleMode=PIXI.settings.SCALE_MODE] - See {@link PIXI.SCALE_MODES} for possible values\n * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the texture being generated\n * @return {PIXI.RenderTexture} The new render texture\n */\n RenderTexture.create = function create (options)\n {\n // fallback, old-style: create(width, height, scaleMode, resolution)\n if (typeof options === 'number')\n {\n /* eslint-disable prefer-rest-params */\n options = {\n width: options,\n height: arguments[1],\n scaleMode: arguments[2],\n resolution: arguments[3],\n };\n /* eslint-enable prefer-rest-params */\n }\n\n return new RenderTexture(new BaseRenderTexture(options));\n };\n\n return RenderTexture;\n}(Texture));\n\n/**\n * Experimental!\n *\n * Texture pool, used by FilterSystem and plugins\n * Stores collection of temporary pow2 or screen-sized renderTextures\n *\n * If you use custom RenderTexturePool for your filters, you can use methods\n * `getFilterTexture` and `returnFilterTexture` same as in\n *\n * @class\n * @memberof PIXI\n */\nvar RenderTexturePool = function RenderTexturePool(textureOptions)\n{\n this.texturePool = {};\n this.textureOptions = textureOptions || {};\n /**\n * Allow renderTextures of the same size as screen, not just pow2\n *\n * Automatically sets to true after `setScreenSize`\n *\n * @member {boolean}\n * @default false\n */\n this.enableFullScreen = false;\n\n this._pixelsWidth = 0;\n this._pixelsHeight = 0;\n};\n\n/**\n * creates of texture with params that were specified in pool constructor\n *\n * @param {number} realWidth width of texture in pixels\n * @param {number} realHeight height of texture in pixels\n * @returns {RenderTexture}\n */\nRenderTexturePool.prototype.createTexture = function createTexture (realWidth, realHeight)\n{\n var baseRenderTexture = new BaseRenderTexture(Object.assign({\n width: realWidth,\n height: realHeight,\n resolution: 1,\n }, this.textureOptions));\n\n return new RenderTexture(baseRenderTexture);\n};\n\n/**\n * Gets a Power-of-Two render texture or fullScreen texture\n *\n * @protected\n * @param {number} minWidth - The minimum width of the render texture in real pixels.\n * @param {number} minHeight - The minimum height of the render texture in real pixels.\n * @param {number} [resolution=1] - The resolution of the render texture.\n * @return {PIXI.RenderTexture} The new render texture.\n */\nRenderTexturePool.prototype.getOptimalTexture = function getOptimalTexture (minWidth, minHeight, resolution)\n{\n if ( resolution === void 0 ) resolution = 1;\n\n var key = RenderTexturePool.SCREEN_KEY;\n\n minWidth *= resolution;\n minHeight *= resolution;\n\n if (!this.enableFullScreen || minWidth !== this._pixelsWidth || minHeight !== this._pixelsHeight)\n {\n minWidth = nextPow2(minWidth);\n minHeight = nextPow2(minHeight);\n key = ((minWidth & 0xFFFF) << 16) | (minHeight & 0xFFFF);\n }\n\n if (!this.texturePool[key])\n {\n this.texturePool[key] = [];\n }\n\n var renderTexture = this.texturePool[key].pop();\n\n if (!renderTexture)\n {\n renderTexture = this.createTexture(minWidth, minHeight);\n }\n\n renderTexture.filterPoolKey = key;\n renderTexture.setResolution(resolution);\n\n return renderTexture;\n};\n\n/**\n * Gets extra texture of the same size as input renderTexture\n *\n * `getFilterTexture(input, 0.5)` or `getFilterTexture(0.5, input)`\n *\n * @param {PIXI.RenderTexture} input renderTexture from which size and resolution will be copied\n * @param {number} [resolution] override resolution of the renderTexture\n * It overrides, it does not multiply\n * @returns {PIXI.RenderTexture}\n */\nRenderTexturePool.prototype.getFilterTexture = function getFilterTexture (input, resolution)\n{\n var filterTexture = this.getOptimalTexture(input.width, input.height, resolution || input.resolution);\n\n filterTexture.filterFrame = input.filterFrame;\n\n return filterTexture;\n};\n\n/**\n * Place a render texture back into the pool.\n * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free\n */\nRenderTexturePool.prototype.returnTexture = function returnTexture (renderTexture)\n{\n var key = renderTexture.filterPoolKey;\n\n renderTexture.filterFrame = null;\n this.texturePool[key].push(renderTexture);\n};\n\n/**\n * Alias for returnTexture, to be compliant with FilterSystem interface\n * @param {PIXI.RenderTexture} renderTexture - The renderTexture to free\n */\nRenderTexturePool.prototype.returnFilterTexture = function returnFilterTexture (renderTexture)\n{\n this.returnTexture(renderTexture);\n};\n\n/**\n * Clears the pool\n *\n * @param {boolean} [destroyTextures=true] destroy all stored textures\n */\nRenderTexturePool.prototype.clear = function clear (destroyTextures)\n{\n destroyTextures = destroyTextures !== false;\n if (destroyTextures)\n {\n for (var i in this.texturePool)\n {\n var textures = this.texturePool[i];\n\n if (textures)\n {\n for (var j = 0; j < textures.length; j++)\n {\n textures[j].destroy(true);\n }\n }\n }\n }\n\n this.texturePool = {};\n};\n\n/**\n * If screen size was changed, drops all screen-sized textures,\n * sets new screen size, sets `enableFullScreen` to true\n *\n * Size is measured in pixels, `renderer.view` can be passed here, not `renderer.screen`\n *\n * @param {PIXI.ISize} size - Initial size of screen\n */\nRenderTexturePool.prototype.setScreenSize = function setScreenSize (size)\n{\n if (size.width === this._pixelsWidth\n && size.height === this._pixelsHeight)\n {\n return;\n }\n\n var screenKey = RenderTexturePool.SCREEN_KEY;\n var textures = this.texturePool[screenKey];\n\n this.enableFullScreen = size.width > 0 && size.height > 0;\n\n if (textures)\n {\n for (var j = 0; j < textures.length; j++)\n {\n textures[j].destroy(true);\n }\n }\n this.texturePool[screenKey] = [];\n\n this._pixelsWidth = size.width;\n this._pixelsHeight = size.height;\n};\n\n/**\n * Key that is used to store fullscreen renderTextures in a pool\n *\n * @static\n * @const {string}\n */\nRenderTexturePool.SCREEN_KEY = 'screen';\n\n/* eslint-disable max-len */\n\n/**\n * Holds the information for a single attribute structure required to render geometry.\n *\n * This does not contain the actual data, but instead has a buffer id that maps to a {@link PIXI.Buffer}\n * This can include anything from positions, uvs, normals, colors etc.\n *\n * @class\n * @memberof PIXI\n */\nvar Attribute = function Attribute(buffer, size, normalized, type, stride, start, instance)\n{\n if ( normalized === void 0 ) normalized = false;\n if ( type === void 0 ) type = 5126;\n\n this.buffer = buffer;\n this.size = size;\n this.normalized = normalized;\n this.type = type;\n this.stride = stride;\n this.start = start;\n this.instance = instance;\n};\n\n/**\n * Destroys the Attribute.\n */\nAttribute.prototype.destroy = function destroy ()\n{\n this.buffer = null;\n};\n\n/**\n * Helper function that creates an Attribute based on the information provided\n *\n * @static\n * @param {string} buffer the id of the buffer that this attribute will look for\n * @param {Number} [size=2] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2\n * @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data)\n * @param {Number} [start=0] How far into the array to start reading values (used for interleaving data)\n * @param {Boolean} [normalized=false] should the data be normalized.\n *\n * @returns {PIXI.Attribute} A new {@link PIXI.Attribute} based on the information provided\n */\nAttribute.from = function from (buffer, size, normalized, type, stride)\n{\n return new Attribute(buffer, size, normalized, type, stride);\n};\n\nvar UID = 0;\n/* eslint-disable max-len */\n\n/**\n * A wrapper for data so that it can be used and uploaded by WebGL\n *\n * @class\n * @memberof PIXI\n */\nvar Buffer = function Buffer(data, _static, index)\n{\n if ( _static === void 0 ) _static = true;\n if ( index === void 0 ) index = false;\n\n /**\n * The data in the buffer, as a typed array\n *\n * @member {ArrayBuffer| SharedArrayBuffer|ArrayBufferView}\n */\n this.data = data || new Float32Array(1);\n\n /**\n * A map of renderer IDs to webgl buffer\n *\n * @private\n * @member {object}\n */\n this._glBuffers = {};\n\n this._updateID = 0;\n\n this.index = index;\n\n this.static = _static;\n\n this.id = UID++;\n\n this.disposeRunner = new Runner('disposeBuffer', 2);\n};\n\n// TODO could explore flagging only a partial upload?\n/**\n * flags this buffer as requiring an upload to the GPU\n * @param {ArrayBuffer|SharedArrayBuffer|ArrayBufferView} [data] the data to update in the buffer.\n */\nBuffer.prototype.update = function update (data)\n{\n this.data = data || this.data;\n this._updateID++;\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nBuffer.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\n/**\n * Destroys the buffer\n */\nBuffer.prototype.destroy = function destroy ()\n{\n this.dispose();\n\n this.data = null;\n};\n\n/**\n * Helper function that creates a buffer based on an array or TypedArray\n *\n * @static\n * @param {ArrayBufferView | number[]} data the TypedArray that the buffer will store. If this is a regular Array it will be converted to a Float32Array.\n * @return {PIXI.Buffer} A new Buffer based on the data provided.\n */\nBuffer.from = function from (data)\n{\n if (data instanceof Array)\n {\n data = new Float32Array(data);\n }\n\n return new Buffer(data);\n};\n\nfunction getBufferType(array)\n{\n if (array.BYTES_PER_ELEMENT === 4)\n {\n if (array instanceof Float32Array)\n {\n return 'Float32Array';\n }\n else if (array instanceof Uint32Array)\n {\n return 'Uint32Array';\n }\n\n return 'Int32Array';\n }\n else if (array.BYTES_PER_ELEMENT === 2)\n {\n if (array instanceof Uint16Array)\n {\n return 'Uint16Array';\n }\n }\n else if (array.BYTES_PER_ELEMENT === 1)\n {\n if (array instanceof Uint8Array)\n {\n return 'Uint8Array';\n }\n }\n\n // TODO map out the rest of the array elements!\n return null;\n}\n\n/* eslint-disable object-shorthand */\nvar map = {\n Float32Array: Float32Array,\n Uint32Array: Uint32Array,\n Int32Array: Int32Array,\n Uint8Array: Uint8Array,\n};\n\nfunction interleaveTypedArrays(arrays, sizes)\n{\n var outSize = 0;\n var stride = 0;\n var views = {};\n\n for (var i = 0; i < arrays.length; i++)\n {\n stride += sizes[i];\n outSize += arrays[i].length;\n }\n\n var buffer = new ArrayBuffer(outSize * 4);\n\n var out = null;\n var littleOffset = 0;\n\n for (var i$1 = 0; i$1 < arrays.length; i$1++)\n {\n var size = sizes[i$1];\n var array = arrays[i$1];\n\n var type = getBufferType(array);\n\n if (!views[type])\n {\n views[type] = new map[type](buffer);\n }\n\n out = views[type];\n\n for (var j = 0; j < array.length; j++)\n {\n var indexStart = ((j / size | 0) * stride) + littleOffset;\n var index = j % size;\n\n out[indexStart + index] = array[j];\n }\n\n littleOffset += size;\n }\n\n return new Float32Array(buffer);\n}\n\nvar byteSizeMap = { 5126: 4, 5123: 2, 5121: 1 };\nvar UID$1 = 0;\n\n/* eslint-disable object-shorthand */\nvar map$1 = {\n Float32Array: Float32Array,\n Uint32Array: Uint32Array,\n Int32Array: Int32Array,\n Uint8Array: Uint8Array,\n Uint16Array: Uint16Array,\n};\n\n/* eslint-disable max-len */\n\n/**\n * The Geometry represents a model. It consists of two components:\n * - GeometryStyle - The structure of the model such as the attributes layout\n * - GeometryData - the data of the model - this consists of buffers.\n * This can include anything from positions, uvs, normals, colors etc.\n *\n * Geometry can be defined without passing in a style or data if required (thats how I prefer!)\n *\n * ```js\n * let geometry = new PIXI.Geometry();\n *\n * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2);\n * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1],2)\n * geometry.addIndex([0,1,2,1,3,2])\n *\n * ```\n * @class\n * @memberof PIXI\n */\nvar Geometry = function Geometry(buffers, attributes)\n{\n if ( buffers === void 0 ) buffers = [];\n if ( attributes === void 0 ) attributes = {};\n\n this.buffers = buffers;\n\n this.indexBuffer = null;\n\n this.attributes = attributes;\n\n /**\n * A map of renderer IDs to webgl VAOs\n *\n * @protected\n * @type {object}\n */\n this.glVertexArrayObjects = {};\n\n this.id = UID$1++;\n\n this.instanced = false;\n\n /**\n * Number of instances in this geometry, pass it to `GeometrySystem.draw()`\n * @member {number}\n * @default 1\n */\n this.instanceCount = 1;\n\n this.disposeRunner = new Runner('disposeGeometry', 2);\n\n /**\n * Count of existing (not destroyed) meshes that reference this geometry\n * @member {number}\n */\n this.refCount = 0;\n};\n\n/**\n*\n* Adds an attribute to the geometry\n*\n* @param {String} id - the name of the attribute (matching up to a shader)\n* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the attribute . You can also provide an Array and a buffer will be created from it.\n* @param {Number} [size=0] the size of the attribute. If you have 2 floats per vertex (eg position x and y) this would be 2\n* @param {Boolean} [normalized=false] should the data be normalized.\n* @param {Number} [type=PIXI.TYPES.FLOAT] what type of number is the attribute. Check {PIXI.TYPES} to see the ones available\n* @param {Number} [stride=0] How far apart (in floats) the start of each value is. (used for interleaving data)\n* @param {Number} [start=0] How far into the array to start reading values (used for interleaving data)\n*\n* @return {PIXI.Geometry} returns self, useful for chaining.\n*/\nGeometry.prototype.addAttribute = function addAttribute (id, buffer, size, normalized, type, stride, start, instance)\n{\n if ( normalized === void 0 ) normalized = false;\n if ( instance === void 0 ) instance = false;\n\n if (!buffer)\n {\n throw new Error('You must pass a buffer when creating an attribute');\n }\n\n // check if this is a buffer!\n if (!buffer.data)\n {\n // its an array!\n if (buffer instanceof Array)\n {\n buffer = new Float32Array(buffer);\n }\n\n buffer = new Buffer(buffer);\n }\n\n var ids = id.split('|');\n\n if (ids.length > 1)\n {\n for (var i = 0; i < ids.length; i++)\n {\n this.addAttribute(ids[i], buffer, size, normalized, type);\n }\n\n return this;\n }\n\n var bufferIndex = this.buffers.indexOf(buffer);\n\n if (bufferIndex === -1)\n {\n this.buffers.push(buffer);\n bufferIndex = this.buffers.length - 1;\n }\n\n this.attributes[id] = new Attribute(bufferIndex, size, normalized, type, stride, start, instance);\n\n // assuming that if there is instanced data then this will be drawn with instancing!\n this.instanced = this.instanced || instance;\n\n return this;\n};\n\n/**\n * returns the requested attribute\n *\n * @param {String} id the name of the attribute required\n * @return {PIXI.Attribute} the attribute requested.\n */\nGeometry.prototype.getAttribute = function getAttribute (id)\n{\n return this.attributes[id];\n};\n\n/**\n * returns the requested buffer\n *\n * @param {String} id the name of the buffer required\n * @return {PIXI.Buffer} the buffer requested.\n */\nGeometry.prototype.getBuffer = function getBuffer (id)\n{\n return this.buffers[this.getAttribute(id).buffer];\n};\n\n/**\n*\n* Adds an index buffer to the geometry\n* The index buffer contains integers, three for each triangle in the geometry, which reference the various attribute buffers (position, colour, UV coordinates, other UV coordinates, normal, …). There is only ONE index buffer.\n*\n* @param {PIXI.Buffer|number[]} [buffer] the buffer that holds the data of the index buffer. You can also provide an Array and a buffer will be created from it.\n* @return {PIXI.Geometry} returns self, useful for chaining.\n*/\nGeometry.prototype.addIndex = function addIndex (buffer)\n{\n if (!buffer.data)\n {\n // its an array!\n if (buffer instanceof Array)\n {\n buffer = new Uint16Array(buffer);\n }\n\n buffer = new Buffer(buffer);\n }\n\n buffer.index = true;\n this.indexBuffer = buffer;\n\n if (this.buffers.indexOf(buffer) === -1)\n {\n this.buffers.push(buffer);\n }\n\n return this;\n};\n\n/**\n * returns the index buffer\n *\n * @return {PIXI.Buffer} the index buffer.\n */\nGeometry.prototype.getIndex = function getIndex ()\n{\n return this.indexBuffer;\n};\n\n/**\n * this function modifies the structure so that all current attributes become interleaved into a single buffer\n * This can be useful if your model remains static as it offers a little performance boost\n *\n * @return {PIXI.Geometry} returns self, useful for chaining.\n */\nGeometry.prototype.interleave = function interleave ()\n{\n // a simple check to see if buffers are already interleaved..\n if (this.buffers.length === 1 || (this.buffers.length === 2 && this.indexBuffer)) { return this; }\n\n // assume already that no buffers are interleaved\n var arrays = [];\n var sizes = [];\n var interleavedBuffer = new Buffer();\n var i;\n\n for (i in this.attributes)\n {\n var attribute = this.attributes[i];\n\n var buffer = this.buffers[attribute.buffer];\n\n arrays.push(buffer.data);\n\n sizes.push((attribute.size * byteSizeMap[attribute.type]) / 4);\n\n attribute.buffer = 0;\n }\n\n interleavedBuffer.data = interleaveTypedArrays(arrays, sizes);\n\n for (i = 0; i < this.buffers.length; i++)\n {\n if (this.buffers[i] !== this.indexBuffer)\n {\n this.buffers[i].destroy();\n }\n }\n\n this.buffers = [interleavedBuffer];\n\n if (this.indexBuffer)\n {\n this.buffers.push(this.indexBuffer);\n }\n\n return this;\n};\n\nGeometry.prototype.getSize = function getSize ()\n{\n for (var i in this.attributes)\n {\n var attribute = this.attributes[i];\n var buffer = this.buffers[attribute.buffer];\n\n return buffer.data.length / ((attribute.stride / 4) || attribute.size);\n }\n\n return 0;\n};\n\n/**\n * disposes WebGL resources that are connected to this geometry\n */\nGeometry.prototype.dispose = function dispose ()\n{\n this.disposeRunner.run(this, false);\n};\n\n/**\n * Destroys the geometry.\n */\nGeometry.prototype.destroy = function destroy ()\n{\n this.dispose();\n\n this.buffers = null;\n this.indexBuffer.destroy();\n\n this.attributes = null;\n};\n\n/**\n * returns a clone of the geometry\n *\n * @returns {PIXI.Geometry} a new clone of this geometry\n */\nGeometry.prototype.clone = function clone ()\n{\n var geometry = new Geometry();\n\n for (var i = 0; i < this.buffers.length; i++)\n {\n geometry.buffers[i] = new Buffer(this.buffers[i].data.slice());\n }\n\n for (var i$1 in this.attributes)\n {\n var attrib = this.attributes[i$1];\n\n geometry.attributes[i$1] = new Attribute(\n attrib.buffer,\n attrib.size,\n attrib.normalized,\n attrib.type,\n attrib.stride,\n attrib.start,\n attrib.instance\n );\n }\n\n if (this.indexBuffer)\n {\n geometry.indexBuffer = geometry.buffers[this.buffers.indexOf(this.indexBuffer)];\n geometry.indexBuffer.index = true;\n }\n\n return geometry;\n};\n\n/**\n * merges an array of geometries into a new single one\n * geometry attribute styles must match for this operation to work\n *\n * @param {PIXI.Geometry[]} geometries array of geometries to merge\n * @returns {PIXI.Geometry} shiny new geometry!\n */\nGeometry.merge = function merge (geometries)\n{\n // todo add a geometry check!\n // also a size check.. cant be too big!]\n\n var geometryOut = new Geometry();\n\n var arrays = [];\n var sizes = [];\n var offsets = [];\n\n var geometry;\n\n // pass one.. get sizes..\n for (var i = 0; i < geometries.length; i++)\n {\n geometry = geometries[i];\n\n for (var j = 0; j < geometry.buffers.length; j++)\n {\n sizes[j] = sizes[j] || 0;\n sizes[j] += geometry.buffers[j].data.length;\n offsets[j] = 0;\n }\n }\n\n // build the correct size arrays..\n for (var i$1 = 0; i$1 < geometry.buffers.length; i$1++)\n {\n // TODO types!\n arrays[i$1] = new map$1[getBufferType(geometry.buffers[i$1].data)](sizes[i$1]);\n geometryOut.buffers[i$1] = new Buffer(arrays[i$1]);\n }\n\n // pass to set data..\n for (var i$2 = 0; i$2 < geometries.length; i$2++)\n {\n geometry = geometries[i$2];\n\n for (var j$1 = 0; j$1 < geometry.buffers.length; j$1++)\n {\n arrays[j$1].set(geometry.buffers[j$1].data, offsets[j$1]);\n offsets[j$1] += geometry.buffers[j$1].data.length;\n }\n }\n\n geometryOut.attributes = geometry.attributes;\n\n if (geometry.indexBuffer)\n {\n geometryOut.indexBuffer = geometryOut.buffers[geometry.buffers.indexOf(geometry.indexBuffer)];\n geometryOut.indexBuffer.index = true;\n\n var offset = 0;\n var stride = 0;\n var offset2 = 0;\n var bufferIndexToCount = 0;\n\n // get a buffer\n for (var i$3 = 0; i$3 < geometry.buffers.length; i$3++)\n {\n if (geometry.buffers[i$3] !== geometry.indexBuffer)\n {\n bufferIndexToCount = i$3;\n break;\n }\n }\n\n // figure out the stride of one buffer..\n for (var i$4 in geometry.attributes)\n {\n var attribute = geometry.attributes[i$4];\n\n if ((attribute.buffer | 0) === bufferIndexToCount)\n {\n stride += ((attribute.size * byteSizeMap[attribute.type]) / 4);\n }\n }\n\n // time to off set all indexes..\n for (var i$5 = 0; i$5 < geometries.length; i$5++)\n {\n var indexBufferData = geometries[i$5].indexBuffer.data;\n\n for (var j$2 = 0; j$2 < indexBufferData.length; j$2++)\n {\n geometryOut.indexBuffer.data[j$2 + offset2] += offset;\n }\n\n offset += geometry.buffers[bufferIndexToCount].data.length / (stride);\n offset2 += indexBufferData.length;\n }\n }\n\n return geometryOut;\n};\n\n/**\n * Helper class to create a quad\n *\n * @class\n * @memberof PIXI\n */\nvar Quad = /*@__PURE__*/(function (Geometry) {\n function Quad()\n {\n Geometry.call(this);\n\n this.addAttribute('aVertexPosition', [\n 0, 0,\n 1, 0,\n 1, 1,\n 0, 1 ])\n .addIndex([0, 1, 3, 2]);\n }\n\n if ( Geometry ) Quad.__proto__ = Geometry;\n Quad.prototype = Object.create( Geometry && Geometry.prototype );\n Quad.prototype.constructor = Quad;\n\n return Quad;\n}(Geometry));\n\n/**\n * Helper class to create a quad with uvs like in v4\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.Geometry\n */\nvar QuadUv = /*@__PURE__*/(function (Geometry) {\n function QuadUv()\n {\n Geometry.call(this);\n\n /**\n * An array of vertices\n *\n * @member {Float32Array}\n */\n this.vertices = new Float32Array([\n -1, -1,\n 1, -1,\n 1, 1,\n -1, 1 ]);\n\n /**\n * The Uvs of the quad\n *\n * @member {Float32Array}\n */\n this.uvs = new Float32Array([\n 0, 0,\n 1, 0,\n 1, 1,\n 0, 1 ]);\n\n this.vertexBuffer = new Buffer(this.vertices);\n this.uvBuffer = new Buffer(this.uvs);\n\n this.addAttribute('aVertexPosition', this.vertexBuffer)\n .addAttribute('aTextureCoord', this.uvBuffer)\n .addIndex([0, 1, 2, 0, 2, 3]);\n }\n\n if ( Geometry ) QuadUv.__proto__ = Geometry;\n QuadUv.prototype = Object.create( Geometry && Geometry.prototype );\n QuadUv.prototype.constructor = QuadUv;\n\n /**\n * Maps two Rectangle to the quad.\n *\n * @param {PIXI.Rectangle} targetTextureFrame - the first rectangle\n * @param {PIXI.Rectangle} destinationFrame - the second rectangle\n * @return {PIXI.Quad} Returns itself.\n */\n QuadUv.prototype.map = function map (targetTextureFrame, destinationFrame)\n {\n var x = 0; // destinationFrame.x / targetTextureFrame.width;\n var y = 0; // destinationFrame.y / targetTextureFrame.height;\n\n this.uvs[0] = x;\n this.uvs[1] = y;\n\n this.uvs[2] = x + (destinationFrame.width / targetTextureFrame.width);\n this.uvs[3] = y;\n\n this.uvs[4] = x + (destinationFrame.width / targetTextureFrame.width);\n this.uvs[5] = y + (destinationFrame.height / targetTextureFrame.height);\n\n this.uvs[6] = x;\n this.uvs[7] = y + (destinationFrame.height / targetTextureFrame.height);\n\n x = destinationFrame.x;\n y = destinationFrame.y;\n\n this.vertices[0] = x;\n this.vertices[1] = y;\n\n this.vertices[2] = x + destinationFrame.width;\n this.vertices[3] = y;\n\n this.vertices[4] = x + destinationFrame.width;\n this.vertices[5] = y + destinationFrame.height;\n\n this.vertices[6] = x;\n this.vertices[7] = y + destinationFrame.height;\n\n this.invalidate();\n\n return this;\n };\n\n /**\n * legacy upload method, just marks buffers dirty\n * @returns {PIXI.QuadUv} Returns itself.\n */\n QuadUv.prototype.invalidate = function invalidate ()\n {\n this.vertexBuffer._updateID++;\n this.uvBuffer._updateID++;\n\n return this;\n };\n\n return QuadUv;\n}(Geometry));\n\nvar UID$2 = 0;\n\n/**\n * Uniform group holds uniform map and some ID's for work\n *\n * @class\n * @memberof PIXI\n */\nvar UniformGroup = function UniformGroup(uniforms, _static)\n{\n /**\n * uniform values\n * @member {object}\n * @readonly\n */\n this.uniforms = uniforms;\n\n /**\n * Its a group and not a single uniforms\n * @member {boolean}\n * @readonly\n * @default true\n */\n this.group = true;\n\n // lets generate this when the shader ?\n this.syncUniforms = {};\n\n /**\n * dirty version\n * @protected\n * @member {number}\n */\n this.dirtyId = 0;\n\n /**\n * unique id\n * @protected\n * @member {number}\n */\n this.id = UID$2++;\n\n /**\n * Uniforms wont be changed after creation\n * @member {boolean}\n */\n this.static = !!_static;\n};\n\nUniformGroup.prototype.update = function update ()\n{\n this.dirtyId++;\n};\n\nUniformGroup.prototype.add = function add (name, uniforms, _static)\n{\n this.uniforms[name] = new UniformGroup(uniforms, _static);\n};\n\nUniformGroup.from = function from (uniforms, _static)\n{\n return new UniformGroup(uniforms, _static);\n};\n\n/**\n * System plugin to the renderer to manage filter states.\n *\n * @class\n * @private\n */\nvar FilterState = function FilterState()\n{\n this.renderTexture = null;\n\n /**\n * Target of the filters\n * We store for case when custom filter wants to know the element it was applied on\n * @member {PIXI.DisplayObject}\n * @private\n */\n this.target = null;\n\n /**\n * Compatibility with PixiJS v4 filters\n * @member {boolean}\n * @default false\n * @private\n */\n this.legacy = false;\n\n /**\n * Resolution of filters\n * @member {number}\n * @default 1\n * @private\n */\n this.resolution = 1;\n\n // next three fields are created only for root\n // re-assigned for everything else\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @private\n */\n this.sourceFrame = new Rectangle();\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @private\n */\n this.destinationFrame = new Rectangle();\n\n /**\n * Collection of filters\n * @member {PIXI.Filter[]}\n * @private\n */\n this.filters = [];\n};\n\n/**\n * clears the state\n * @private\n */\nFilterState.prototype.clear = function clear ()\n{\n this.target = null;\n this.filters = null;\n this.renderTexture = null;\n};\n\n/**\n * System plugin to the renderer to manage the filters.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar FilterSystem = /*@__PURE__*/(function (System) {\n function FilterSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * List of filters for the FilterSystem\n * @member {Object[]}\n * @readonly\n */\n this.defaultFilterStack = [{}];\n\n /**\n * stores a bunch of PO2 textures used for filtering\n * @member {Object}\n */\n this.texturePool = new RenderTexturePool();\n\n this.texturePool.setScreenSize(renderer.view);\n\n /**\n * a pool for storing filter states, save us creating new ones each tick\n * @member {Object[]}\n */\n this.statePool = [];\n\n /**\n * A very simple geometry used when drawing a filter effect to the screen\n * @member {PIXI.Quad}\n */\n this.quad = new Quad();\n\n /**\n * Quad UVs\n * @member {PIXI.QuadUv}\n */\n this.quadUv = new QuadUv();\n\n /**\n * Temporary rect for maths\n * @type {PIXI.Rectangle}\n */\n this.tempRect = new Rectangle();\n\n /**\n * Active state\n * @member {object}\n */\n this.activeState = {};\n\n /**\n * This uniform group is attached to filter uniforms when used\n * @member {PIXI.UniformGroup}\n * @property {PIXI.Rectangle} outputFrame\n * @property {Float32Array} inputSize\n * @property {Float32Array} inputPixel\n * @property {Float32Array} inputClamp\n * @property {Number} resolution\n * @property {Float32Array} filterArea\n * @property {Fload32Array} filterClamp\n */\n this.globalUniforms = new UniformGroup({\n outputFrame: this.tempRect,\n inputSize: new Float32Array(4),\n inputPixel: new Float32Array(4),\n inputClamp: new Float32Array(4),\n resolution: 1,\n\n // legacy variables\n filterArea: new Float32Array(4),\n filterClamp: new Float32Array(4),\n }, true);\n\n this._pixelsWidth = renderer.view.width;\n this._pixelsHeight = renderer.view.height;\n }\n\n if ( System ) FilterSystem.__proto__ = System;\n FilterSystem.prototype = Object.create( System && System.prototype );\n FilterSystem.prototype.constructor = FilterSystem;\n\n /**\n * Adds a new filter to the System.\n *\n * @param {PIXI.DisplayObject} target - The target of the filter to render.\n * @param {PIXI.Filter[]} filters - The filters to apply.\n */\n FilterSystem.prototype.push = function push (target, filters)\n {\n var renderer = this.renderer;\n var filterStack = this.defaultFilterStack;\n var state = this.statePool.pop() || new FilterState();\n\n var resolution = filters[0].resolution;\n var padding = filters[0].padding;\n var autoFit = filters[0].autoFit;\n var legacy = filters[0].legacy;\n\n for (var i = 1; i < filters.length; i++)\n {\n var filter = filters[i];\n\n // lets use the lowest resolution..\n resolution = Math.min(resolution, filter.resolution);\n // and the largest amount of padding!\n padding = Math.max(padding, filter.padding);\n // only auto fit if all filters are autofit\n autoFit = autoFit || filter.autoFit;\n\n legacy = legacy || filter.legacy;\n }\n\n if (filterStack.length === 1)\n {\n this.defaultFilterStack[0].renderTexture = renderer.renderTexture.current;\n }\n\n filterStack.push(state);\n\n state.resolution = resolution;\n\n state.legacy = legacy;\n\n state.target = target;\n\n state.sourceFrame.copyFrom(target.filterArea || target.getBounds(true));\n\n state.sourceFrame.pad(padding);\n if (autoFit)\n {\n state.sourceFrame.fit(this.renderer.renderTexture.sourceFrame);\n }\n\n // round to whole number based on resolution\n state.sourceFrame.ceil(resolution);\n\n state.renderTexture = this.getOptimalFilterTexture(state.sourceFrame.width, state.sourceFrame.height, resolution);\n state.filters = filters;\n\n state.destinationFrame.width = state.renderTexture.width;\n state.destinationFrame.height = state.renderTexture.height;\n\n state.renderTexture.filterFrame = state.sourceFrame;\n\n renderer.renderTexture.bind(state.renderTexture, state.sourceFrame);// /, state.destinationFrame);\n renderer.renderTexture.clear();\n };\n\n /**\n * Pops off the filter and applies it.\n *\n */\n FilterSystem.prototype.pop = function pop ()\n {\n var filterStack = this.defaultFilterStack;\n var state = filterStack.pop();\n var filters = state.filters;\n\n this.activeState = state;\n\n var globalUniforms = this.globalUniforms.uniforms;\n\n globalUniforms.outputFrame = state.sourceFrame;\n globalUniforms.resolution = state.resolution;\n\n var inputSize = globalUniforms.inputSize;\n var inputPixel = globalUniforms.inputPixel;\n var inputClamp = globalUniforms.inputClamp;\n\n inputSize[0] = state.destinationFrame.width;\n inputSize[1] = state.destinationFrame.height;\n inputSize[2] = 1.0 / inputSize[0];\n inputSize[3] = 1.0 / inputSize[1];\n\n inputPixel[0] = inputSize[0] * state.resolution;\n inputPixel[1] = inputSize[1] * state.resolution;\n inputPixel[2] = 1.0 / inputPixel[0];\n inputPixel[3] = 1.0 / inputPixel[1];\n\n inputClamp[0] = 0.5 * inputPixel[2];\n inputClamp[1] = 0.5 * inputPixel[3];\n inputClamp[2] = (state.sourceFrame.width * inputSize[2]) - (0.5 * inputPixel[2]);\n inputClamp[3] = (state.sourceFrame.height * inputSize[3]) - (0.5 * inputPixel[3]);\n\n // only update the rect if its legacy..\n if (state.legacy)\n {\n var filterArea = globalUniforms.filterArea;\n\n filterArea[0] = state.destinationFrame.width;\n filterArea[1] = state.destinationFrame.height;\n filterArea[2] = state.sourceFrame.x;\n filterArea[3] = state.sourceFrame.y;\n\n globalUniforms.filterClamp = globalUniforms.inputClamp;\n }\n\n this.globalUniforms.update();\n\n var lastState = filterStack[filterStack.length - 1];\n\n if (filters.length === 1)\n {\n filters[0].apply(this, state.renderTexture, lastState.renderTexture, false, state);\n\n this.returnFilterTexture(state.renderTexture);\n }\n else\n {\n var flip = state.renderTexture;\n var flop = this.getOptimalFilterTexture(\n flip.width,\n flip.height,\n state.resolution\n );\n\n flop.filterFrame = flip.filterFrame;\n\n var i = 0;\n\n for (i = 0; i < filters.length - 1; ++i)\n {\n filters[i].apply(this, flip, flop, true, state);\n\n var t = flip;\n\n flip = flop;\n flop = t;\n }\n\n filters[i].apply(this, flip, lastState.renderTexture, false, state);\n\n this.returnFilterTexture(flip);\n this.returnFilterTexture(flop);\n }\n\n state.clear();\n this.statePool.push(state);\n };\n\n /**\n * Draws a filter.\n *\n * @param {PIXI.Filter} filter - The filter to draw.\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it\n */\n FilterSystem.prototype.applyFilter = function applyFilter (filter, input, output, clear)\n {\n var renderer = this.renderer;\n\n renderer.renderTexture.bind(output, output ? output.filterFrame : null);\n\n if (clear)\n {\n // gl.disable(gl.SCISSOR_TEST);\n renderer.renderTexture.clear();\n // gl.enable(gl.SCISSOR_TEST);\n }\n\n // set the uniforms..\n filter.uniforms.uSampler = input;\n filter.uniforms.filterGlobals = this.globalUniforms;\n\n // TODO make it so that the order of this does not matter..\n // because it does at the moment cos of global uniforms.\n // they need to get resynced\n\n renderer.state.set(filter.state);\n renderer.shader.bind(filter);\n\n if (filter.legacy)\n {\n this.quadUv.map(input._frame, input.filterFrame);\n\n renderer.geometry.bind(this.quadUv);\n renderer.geometry.draw(DRAW_MODES.TRIANGLES);\n }\n else\n {\n renderer.geometry.bind(this.quad);\n renderer.geometry.draw(DRAW_MODES.TRIANGLE_STRIP);\n }\n };\n\n /**\n * Multiply _input normalized coordinates_ to this matrix to get _sprite texture normalized coordinates_.\n *\n * Use `outputMatrix * vTextureCoord` in the shader.\n *\n * @param {PIXI.Matrix} outputMatrix - The matrix to output to.\n * @param {PIXI.Sprite} sprite - The sprite to map to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n FilterSystem.prototype.calculateSpriteMatrix = function calculateSpriteMatrix (outputMatrix, sprite)\n {\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n var ref$1 = sprite._texture;\n var orig = ref$1.orig;\n var mappedMatrix = outputMatrix.set(destinationFrame.width, 0, 0,\n destinationFrame.height, sourceFrame.x, sourceFrame.y);\n var worldTransform = sprite.worldTransform.copyTo(Matrix.TEMP_MATRIX);\n\n worldTransform.invert();\n mappedMatrix.prepend(worldTransform);\n mappedMatrix.scale(1.0 / orig.width, 1.0 / orig.height);\n mappedMatrix.translate(sprite.anchor.x, sprite.anchor.y);\n\n return mappedMatrix;\n };\n\n /**\n * Destroys this Filter System.\n */\n FilterSystem.prototype.destroy = function destroy ()\n {\n // Those textures has to be destroyed by RenderTextureSystem or FramebufferSystem\n this.texturePool.clear(false);\n };\n\n /**\n * Gets a Power-of-Two render texture or fullScreen texture\n *\n * @protected\n * @param {number} minWidth - The minimum width of the render texture in real pixels.\n * @param {number} minHeight - The minimum height of the render texture in real pixels.\n * @param {number} [resolution=1] - The resolution of the render texture.\n * @return {PIXI.RenderTexture} The new render texture.\n */\n FilterSystem.prototype.getOptimalFilterTexture = function getOptimalFilterTexture (minWidth, minHeight, resolution)\n {\n if ( resolution === void 0 ) resolution = 1;\n\n return this.texturePool.getOptimalTexture(minWidth, minHeight, resolution);\n };\n\n /**\n * Gets extra render texture to use inside current filter\n * To be compliant with older filters, you can use params in any order\n *\n * @param {PIXI.RenderTexture} [input] renderTexture from which size and resolution will be copied\n * @param {number} [resolution] override resolution of the renderTexture\n * @returns {PIXI.RenderTexture}\n */\n FilterSystem.prototype.getFilterTexture = function getFilterTexture (input, resolution)\n {\n if (typeof input === 'number')\n {\n var swap = input;\n\n input = resolution;\n resolution = swap;\n }\n\n input = input || this.activeState.renderTexture;\n\n var filterTexture = this.texturePool.getOptimalTexture(input.width, input.height, resolution || input.resolution);\n\n filterTexture.filterFrame = input.filterFrame;\n\n return filterTexture;\n };\n\n /**\n * Frees a render texture back into the pool.\n *\n * @param {PIXI.RenderTexture} renderTexture - The renderTarget to free\n */\n FilterSystem.prototype.returnFilterTexture = function returnFilterTexture (renderTexture)\n {\n this.texturePool.returnTexture(renderTexture);\n };\n\n /**\n * Empties the texture pool.\n */\n FilterSystem.prototype.emptyPool = function emptyPool ()\n {\n this.texturePool.clear(true);\n };\n\n /**\n * calls `texturePool.resize()`, affects fullScreen renderTextures\n */\n FilterSystem.prototype.resize = function resize ()\n {\n this.texturePool.setScreenSize(this.renderer.view);\n };\n\n return FilterSystem;\n}(System));\n\n/**\n * Base for a common object renderer that can be used as a\n * system renderer plugin.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI\n */\nvar ObjectRenderer = function ObjectRenderer(renderer)\n{\n /**\n * The renderer this manager works for.\n *\n * @member {PIXI.Renderer}\n */\n this.renderer = renderer;\n};\n\n/**\n * Stub method that should be used to empty the current\n * batch by rendering objects now.\n */\nObjectRenderer.prototype.flush = function flush ()\n{\n // flush!\n};\n\n/**\n * Generic destruction method that frees all resources. This\n * should be called by subclasses.\n */\nObjectRenderer.prototype.destroy = function destroy ()\n{\n this.renderer = null;\n};\n\n/**\n * Stub method that initializes any state required before\n * rendering starts. It is different from the `prerender`\n * signal, which occurs every frame, in that it is called\n * whenever an object requests _this_ renderer specifically.\n */\nObjectRenderer.prototype.start = function start ()\n{\n // set the shader..\n};\n\n/**\n * Stops the renderer. It should free up any state and\n * become dormant.\n */\nObjectRenderer.prototype.stop = function stop ()\n{\n this.flush();\n};\n\n/**\n * Keeps the object to render. It doesn't have to be\n * rendered immediately.\n *\n * @param {PIXI.DisplayObject} object - The object to render.\n */\nObjectRenderer.prototype.render = function render (object) // eslint-disable-line no-unused-vars\n{\n // render the object\n};\n\n/**\n * System plugin to the renderer to manage batching.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar BatchSystem = /*@__PURE__*/(function (System) {\n function BatchSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * An empty renderer.\n *\n * @member {PIXI.ObjectRenderer}\n */\n this.emptyRenderer = new ObjectRenderer(renderer);\n\n /**\n * The currently active ObjectRenderer.\n *\n * @member {PIXI.ObjectRenderer}\n */\n this.currentRenderer = this.emptyRenderer;\n }\n\n if ( System ) BatchSystem.__proto__ = System;\n BatchSystem.prototype = Object.create( System && System.prototype );\n BatchSystem.prototype.constructor = BatchSystem;\n\n /**\n * Changes the current renderer to the one given in parameter\n *\n * @param {PIXI.ObjectRenderer} objectRenderer - The object renderer to use.\n */\n BatchSystem.prototype.setObjectRenderer = function setObjectRenderer (objectRenderer)\n {\n if (this.currentRenderer === objectRenderer)\n {\n return;\n }\n\n this.currentRenderer.stop();\n this.currentRenderer = objectRenderer;\n\n this.currentRenderer.start();\n };\n\n /**\n * This should be called if you wish to do some custom rendering\n * It will basically render anything that may be batched up such as sprites\n */\n BatchSystem.prototype.flush = function flush ()\n {\n this.setObjectRenderer(this.emptyRenderer);\n };\n\n /**\n * Reset the system to an empty renderer\n */\n BatchSystem.prototype.reset = function reset ()\n {\n this.setObjectRenderer(this.emptyRenderer);\n };\n\n return BatchSystem;\n}(System));\n\n/**\n * The maximum support for using WebGL. If a device does not\n * support WebGL version, for instance WebGL 2, it will still\n * attempt to fallback support to WebGL 1. If you want to\n * explicitly remove feature support to target a more stable\n * baseline, prefer a lower environment.\n *\n * Due to {@link https://bugs.chromium.org/p/chromium/issues/detail?id=934823|bug in chromium}\n * we disable webgl2 by default for all non-apple mobile devices.\n *\n * @static\n * @name PREFER_ENV\n * @memberof PIXI.settings\n * @type {number}\n * @default PIXI.ENV.WEBGL2\n */\nsettings.PREFER_ENV = isMobile.any ? ENV.WEBGL : ENV.WEBGL2;\n\nvar CONTEXT_UID = 0;\n\n/**\n * System plugin to the renderer to manage the context.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar ContextSystem = /*@__PURE__*/(function (System) {\n function ContextSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Either 1 or 2 to reflect the WebGL version being used\n * @member {number}\n * @readonly\n */\n this.webGLVersion = 1;\n\n /**\n * Extensions being used\n * @member {object}\n * @readonly\n * @property {WEBGL_draw_buffers} drawBuffers - WebGL v1 extension\n * @property {WEBGL_depth_texture} depthTexture - WebGL v1 extension\n * @property {OES_texture_float} floatTexture - WebGL v1 extension\n * @property {WEBGL_lose_context} loseContext - WebGL v1 extension\n * @property {OES_vertex_array_object} vertexArrayObject - WebGL v1 extension\n * @property {EXT_texture_filter_anisotropic} anisotropicFiltering - WebGL v1 and v2 extension\n */\n this.extensions = {};\n\n // Bind functions\n this.handleContextLost = this.handleContextLost.bind(this);\n this.handleContextRestored = this.handleContextRestored.bind(this);\n\n renderer.view.addEventListener('webglcontextlost', this.handleContextLost, false);\n renderer.view.addEventListener('webglcontextrestored', this.handleContextRestored, false);\n }\n\n if ( System ) ContextSystem.__proto__ = System;\n ContextSystem.prototype = Object.create( System && System.prototype );\n ContextSystem.prototype.constructor = ContextSystem;\n\n var prototypeAccessors = { isLost: { configurable: true } };\n\n /**\n * `true` if the context is lost\n * @member {boolean}\n * @readonly\n */\n prototypeAccessors.isLost.get = function ()\n {\n return (!this.gl || this.gl.isContextLost());\n };\n\n /**\n * Handle the context change event\n * @param {WebGLRenderingContext} gl new webgl context\n */\n ContextSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n this.renderer.gl = gl;\n this.renderer.CONTEXT_UID = CONTEXT_UID++;\n\n // restore a context if it was previously lost\n if (gl.isContextLost() && gl.getExtension('WEBGL_lose_context'))\n {\n gl.getExtension('WEBGL_lose_context').restoreContext();\n }\n };\n\n /**\n * Initialize the context\n *\n * @protected\n * @param {WebGLRenderingContext} gl - WebGL context\n */\n ContextSystem.prototype.initFromContext = function initFromContext (gl)\n {\n this.gl = gl;\n this.validateContext(gl);\n this.renderer.gl = gl;\n this.renderer.CONTEXT_UID = CONTEXT_UID++;\n this.renderer.runners.contextChange.run(gl);\n };\n\n /**\n * Initialize from context options\n *\n * @protected\n * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/getContext\n * @param {object} options - context attributes\n */\n ContextSystem.prototype.initFromOptions = function initFromOptions (options)\n {\n var gl = this.createContext(this.renderer.view, options);\n\n this.initFromContext(gl);\n };\n\n /**\n * Helper class to create a WebGL Context\n *\n * @param canvas {HTMLCanvasElement} the canvas element that we will get the context from\n * @param options {object} An options object that gets passed in to the canvas element containing the context attributes\n * @see https://developer.mozilla.org/en/docs/Web/API/HTMLCanvasElement/getContext\n * @return {WebGLRenderingContext} the WebGL context\n */\n ContextSystem.prototype.createContext = function createContext (canvas, options)\n {\n var gl;\n\n if (settings.PREFER_ENV >= ENV.WEBGL2)\n {\n gl = canvas.getContext('webgl2', options);\n }\n\n if (gl)\n {\n this.webGLVersion = 2;\n }\n else\n {\n this.webGLVersion = 1;\n\n gl = canvas.getContext('webgl', options)\n || canvas.getContext('experimental-webgl', options);\n\n if (!gl)\n {\n // fail, not able to get a context\n throw new Error('This browser does not support WebGL. Try using the canvas renderer');\n }\n }\n\n this.gl = gl;\n\n this.getExtensions();\n\n return gl;\n };\n\n /**\n * Auto-populate the extensions\n *\n * @protected\n */\n ContextSystem.prototype.getExtensions = function getExtensions ()\n {\n // time to set up default extensions that Pixi uses.\n var ref = this;\n var gl = ref.gl;\n\n if (this.webGLVersion === 1)\n {\n Object.assign(this.extensions, {\n drawBuffers: gl.getExtension('WEBGL_draw_buffers'),\n depthTexture: gl.getExtension('WEBKIT_WEBGL_depth_texture'),\n loseContext: gl.getExtension('WEBGL_lose_context'),\n vertexArrayObject: gl.getExtension('OES_vertex_array_object')\n || gl.getExtension('MOZ_OES_vertex_array_object')\n || gl.getExtension('WEBKIT_OES_vertex_array_object'),\n anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'),\n uint32ElementIndex: gl.getExtension('OES_element_index_uint'),\n // Floats and half-floats\n floatTexture: gl.getExtension('OES_texture_float'),\n floatTextureLinear: gl.getExtension('OES_texture_float_linear'),\n textureHalfFloat: gl.getExtension('OES_texture_half_float'),\n textureHalfFloatLinear: gl.getExtension('OES_texture_half_float_linear'),\n });\n }\n else if (this.webGLVersion === 2)\n {\n Object.assign(this.extensions, {\n anisotropicFiltering: gl.getExtension('EXT_texture_filter_anisotropic'),\n // Floats and half-floats\n colorBufferFloat: gl.getExtension('EXT_color_buffer_float'),\n floatTextureLinear: gl.getExtension('OES_texture_float_linear'),\n });\n }\n };\n\n /**\n * Handles a lost webgl context\n *\n * @protected\n * @param {WebGLContextEvent} event - The context lost event.\n */\n ContextSystem.prototype.handleContextLost = function handleContextLost (event)\n {\n event.preventDefault();\n };\n\n /**\n * Handles a restored webgl context\n *\n * @protected\n */\n ContextSystem.prototype.handleContextRestored = function handleContextRestored ()\n {\n this.renderer.runners.contextChange.run(this.gl);\n };\n\n ContextSystem.prototype.destroy = function destroy ()\n {\n var view = this.renderer.view;\n\n // remove listeners\n view.removeEventListener('webglcontextlost', this.handleContextLost);\n view.removeEventListener('webglcontextrestored', this.handleContextRestored);\n\n this.gl.useProgram(null);\n\n if (this.extensions.loseContext)\n {\n this.extensions.loseContext.loseContext();\n }\n };\n\n /**\n * Handle the post-render runner event\n *\n * @protected\n */\n ContextSystem.prototype.postrender = function postrender ()\n {\n this.gl.flush();\n };\n\n /**\n * Validate context\n *\n * @protected\n * @param {WebGLRenderingContext} gl - Render context\n */\n ContextSystem.prototype.validateContext = function validateContext (gl)\n {\n var attributes = gl.getContextAttributes();\n\n // this is going to be fairly simple for now.. but at least we have room to grow!\n if (!attributes.stencil)\n {\n /* eslint-disable max-len */\n\n /* eslint-disable no-console */\n console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly');\n /* eslint-enable no-console */\n\n /* eslint-enable max-len */\n }\n };\n\n Object.defineProperties( ContextSystem.prototype, prototypeAccessors );\n\n return ContextSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage framebuffers.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar FramebufferSystem = /*@__PURE__*/(function (System) {\n function FramebufferSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * A list of managed framebuffers\n * @member {PIXI.Framebuffer[]}\n * @readonly\n */\n this.managedFramebuffers = [];\n\n /**\n * Framebuffer value that shows that we don't know what is bound\n * @member {Framebuffer}\n * @readonly\n */\n this.unknownFramebuffer = new Framebuffer(10, 10);\n }\n\n if ( System ) FramebufferSystem.__proto__ = System;\n FramebufferSystem.prototype = Object.create( System && System.prototype );\n FramebufferSystem.prototype.constructor = FramebufferSystem;\n\n var prototypeAccessors = { size: { configurable: true } };\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n FramebufferSystem.prototype.contextChange = function contextChange ()\n {\n var gl = this.gl = this.renderer.gl;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n this.current = this.unknownFramebuffer;\n this.viewport = new Rectangle();\n this.hasMRT = true;\n this.writeDepthTexture = true;\n\n this.disposeAll(true);\n\n // webgl2\n if (this.renderer.context.webGLVersion === 1)\n {\n // webgl 1!\n var nativeDrawBuffersExtension = this.renderer.context.extensions.drawBuffers;\n var nativeDepthTextureExtension = this.renderer.context.extensions.depthTexture;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n nativeDrawBuffersExtension = null;\n nativeDepthTextureExtension = null;\n }\n\n if (nativeDrawBuffersExtension)\n {\n gl.drawBuffers = function (activeTextures) { return nativeDrawBuffersExtension.drawBuffersWEBGL(activeTextures); };\n }\n else\n {\n this.hasMRT = false;\n gl.drawBuffers = function () {\n // empty\n };\n }\n\n if (!nativeDepthTextureExtension)\n {\n this.writeDepthTexture = false;\n }\n }\n };\n\n /**\n * Bind a framebuffer\n *\n * @param {PIXI.Framebuffer} framebuffer\n * @param {PIXI.Rectangle} [frame] frame, default is framebuffer size\n */\n FramebufferSystem.prototype.bind = function bind (framebuffer, frame)\n {\n var ref = this;\n var gl = ref.gl;\n\n if (framebuffer)\n {\n // TODO caching layer!\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID] || this.initFramebuffer(framebuffer);\n\n if (this.current !== framebuffer)\n {\n this.current = framebuffer;\n gl.bindFramebuffer(gl.FRAMEBUFFER, fbo.framebuffer);\n }\n // make sure all textures are unbound..\n\n // now check for updates...\n if (fbo.dirtyId !== framebuffer.dirtyId)\n {\n fbo.dirtyId = framebuffer.dirtyId;\n\n if (fbo.dirtyFormat !== framebuffer.dirtyFormat)\n {\n fbo.dirtyFormat = framebuffer.dirtyFormat;\n this.updateFramebuffer(framebuffer);\n }\n else if (fbo.dirtySize !== framebuffer.dirtySize)\n {\n fbo.dirtySize = framebuffer.dirtySize;\n this.resizeFramebuffer(framebuffer);\n }\n }\n\n for (var i = 0; i < framebuffer.colorTextures.length; i++)\n {\n if (framebuffer.colorTextures[i].texturePart)\n {\n this.renderer.texture.unbind(framebuffer.colorTextures[i].texture);\n }\n else\n {\n this.renderer.texture.unbind(framebuffer.colorTextures[i]);\n }\n }\n\n if (framebuffer.depthTexture)\n {\n this.renderer.texture.unbind(framebuffer.depthTexture);\n }\n\n if (frame)\n {\n this.setViewport(frame.x, frame.y, frame.width, frame.height);\n }\n else\n {\n this.setViewport(0, 0, framebuffer.width, framebuffer.height);\n }\n }\n else\n {\n if (this.current)\n {\n this.current = null;\n gl.bindFramebuffer(gl.FRAMEBUFFER, null);\n }\n\n if (frame)\n {\n this.setViewport(frame.x, frame.y, frame.width, frame.height);\n }\n else\n {\n this.setViewport(0, 0, this.renderer.width, this.renderer.height);\n }\n }\n };\n\n /**\n * Set the WebGLRenderingContext's viewport.\n *\n * @param {Number} x - X position of viewport\n * @param {Number} y - Y position of viewport\n * @param {Number} width - Width of viewport\n * @param {Number} height - Height of viewport\n */\n FramebufferSystem.prototype.setViewport = function setViewport (x, y, width, height)\n {\n var v = this.viewport;\n\n if (v.width !== width || v.height !== height || v.x !== x || v.y !== y)\n {\n v.x = x;\n v.y = y;\n v.width = width;\n v.height = height;\n\n this.gl.viewport(x, y, width, height);\n }\n };\n\n /**\n * Get the size of the current width and height. Returns object with `width` and `height` values.\n *\n * @member {object}\n * @readonly\n */\n prototypeAccessors.size.get = function ()\n {\n if (this.current)\n {\n // TODO store temp\n return { x: 0, y: 0, width: this.current.width, height: this.current.height };\n }\n\n return { x: 0, y: 0, width: this.renderer.width, height: this.renderer.height };\n };\n\n /**\n * Clear the color of the context\n *\n * @param {Number} r - Red value from 0 to 1\n * @param {Number} g - Green value from 0 to 1\n * @param {Number} b - Blue value from 0 to 1\n * @param {Number} a - Alpha value from 0 to 1\n */\n FramebufferSystem.prototype.clear = function clear (r, g, b, a)\n {\n var ref = this;\n var gl = ref.gl;\n\n // TODO clear color can be set only one right?\n gl.clearColor(r, g, b, a);\n gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);\n };\n\n /**\n * Initialize framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.initFramebuffer = function initFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n // TODO - make this a class?\n var fbo = {\n framebuffer: gl.createFramebuffer(),\n stencil: null,\n dirtyId: 0,\n dirtyFormat: 0,\n dirtySize: 0,\n };\n\n framebuffer.glFramebuffers[this.CONTEXT_UID] = fbo;\n\n this.managedFramebuffers.push(framebuffer);\n framebuffer.disposeRunner.add(this);\n\n return fbo;\n };\n\n /**\n * Resize the framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.resizeFramebuffer = function resizeFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n if (fbo.stencil)\n {\n gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil);\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height);\n }\n\n var colorTextures = framebuffer.colorTextures;\n\n for (var i = 0; i < colorTextures.length; i++)\n {\n this.renderer.texture.bind(colorTextures[i], 0);\n }\n\n if (framebuffer.depthTexture)\n {\n this.renderer.texture.bind(framebuffer.depthTexture, 0);\n }\n };\n\n /**\n * Update the framebuffer\n *\n * @protected\n * @param {PIXI.Framebuffer} framebuffer\n */\n FramebufferSystem.prototype.updateFramebuffer = function updateFramebuffer (framebuffer)\n {\n var ref = this;\n var gl = ref.gl;\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n // bind the color texture\n var colorTextures = framebuffer.colorTextures;\n\n var count = colorTextures.length;\n\n if (!gl.drawBuffers)\n {\n count = Math.min(count, 1);\n }\n\n var activeTextures = [];\n\n for (var i = 0; i < count; i++)\n {\n var texture = framebuffer.colorTextures[i];\n\n if (texture.texturePart)\n {\n this.renderer.texture.bind(texture.texture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.COLOR_ATTACHMENT0 + i,\n gl.TEXTURE_CUBE_MAP_NEGATIVE_X + texture.side,\n texture.texture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n else\n {\n this.renderer.texture.bind(texture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.COLOR_ATTACHMENT0 + i,\n gl.TEXTURE_2D,\n texture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n\n activeTextures.push(gl.COLOR_ATTACHMENT0 + i);\n }\n\n if (activeTextures.length > 1)\n {\n gl.drawBuffers(activeTextures);\n }\n\n if (framebuffer.depthTexture)\n {\n var writeDepthTexture = this.writeDepthTexture;\n\n if (writeDepthTexture)\n {\n var depthTexture = framebuffer.depthTexture;\n\n this.renderer.texture.bind(depthTexture, 0);\n\n gl.framebufferTexture2D(gl.FRAMEBUFFER,\n gl.DEPTH_ATTACHMENT,\n gl.TEXTURE_2D,\n depthTexture._glTextures[this.CONTEXT_UID].texture,\n 0);\n }\n }\n\n if (!fbo.stencil && (framebuffer.stencil || framebuffer.depth))\n {\n fbo.stencil = gl.createRenderbuffer();\n\n gl.bindRenderbuffer(gl.RENDERBUFFER, fbo.stencil);\n\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, framebuffer.width, framebuffer.height);\n // TODO.. this is depth AND stencil?\n if (!framebuffer.depthTexture)\n { // you can't have both, so one should take priority if enabled\n gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, fbo.stencil);\n }\n }\n };\n\n /**\n * Disposes framebuffer\n * @param {PIXI.Framebuffer} framebuffer framebuffer that has to be disposed of\n * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls\n */\n FramebufferSystem.prototype.disposeFramebuffer = function disposeFramebuffer (framebuffer, contextLost)\n {\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n var gl = this.gl;\n\n if (!fbo)\n {\n return;\n }\n\n delete framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n var index = this.managedFramebuffers.indexOf(framebuffer);\n\n if (index >= 0)\n {\n this.managedFramebuffers.splice(index, 1);\n }\n\n framebuffer.disposeRunner.remove(this);\n\n if (!contextLost)\n {\n gl.deleteFramebuffer(fbo.framebuffer);\n if (fbo.stencil)\n {\n gl.deleteRenderbuffer(fbo.stencil);\n }\n }\n };\n\n /**\n * Disposes all framebuffers, but not textures bound to them\n * @param {boolean} [contextLost=false] If context was lost, we suppress all delete function calls\n */\n FramebufferSystem.prototype.disposeAll = function disposeAll (contextLost)\n {\n var list = this.managedFramebuffers;\n\n this.managedFramebuffers = [];\n\n for (var i = 0; i < list.length; i++)\n {\n this.disposeFramebuffer(list[i], contextLost);\n }\n };\n\n /**\n * Forcing creation of stencil buffer for current framebuffer, if it wasn't done before.\n * Used by MaskSystem, when its time to use stencil mask for Graphics element.\n *\n * Its an alternative for public lazy `framebuffer.enableStencil`, in case we need stencil without rebind.\n *\n * @private\n */\n FramebufferSystem.prototype.forceStencil = function forceStencil ()\n {\n var framebuffer = this.current;\n\n if (!framebuffer)\n {\n return;\n }\n\n var fbo = framebuffer.glFramebuffers[this.CONTEXT_UID];\n\n if (!fbo || fbo.stencil)\n {\n return;\n }\n framebuffer.enableStencil();\n\n var w = framebuffer.width;\n var h = framebuffer.height;\n var gl = this.gl;\n var stencil = gl.createRenderbuffer();\n\n gl.bindRenderbuffer(gl.RENDERBUFFER, stencil);\n gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, w, h);\n\n fbo.stencil = stencil;\n gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, stencil);\n };\n\n /**\n * resets framebuffer stored state, binds screen framebuffer\n *\n * should be called before renderTexture reset()\n */\n FramebufferSystem.prototype.reset = function reset ()\n {\n this.current = this.unknownFramebuffer;\n this.viewport = new Rectangle();\n };\n\n Object.defineProperties( FramebufferSystem.prototype, prototypeAccessors );\n\n return FramebufferSystem;\n}(System));\n\nvar GLBuffer = function GLBuffer(buffer)\n{\n this.buffer = buffer;\n this.updateID = -1;\n this.byteLength = -1;\n this.refCount = 0;\n};\n\nvar byteSizeMap$1 = { 5126: 4, 5123: 2, 5121: 1 };\n\n/**\n * System plugin to the renderer to manage geometry.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar GeometrySystem = /*@__PURE__*/(function (System) {\n function GeometrySystem(renderer)\n {\n System.call(this, renderer);\n\n this._activeGeometry = null;\n this._activeVao = null;\n\n /**\n * `true` if we has `*_vertex_array_object` extension\n * @member {boolean}\n * @readonly\n */\n this.hasVao = true;\n\n /**\n * `true` if has `ANGLE_instanced_arrays` extension\n * @member {boolean}\n * @readonly\n */\n this.hasInstance = true;\n\n /**\n * `true` if support `gl.UNSIGNED_INT` in `gl.drawElements` or `gl.drawElementsInstanced`\n * @member {boolean}\n * @readonly\n */\n this.canUseUInt32ElementIndex = false;\n\n /**\n * A cache of currently bound buffer,\n * contains only two members with keys ARRAY_BUFFER and ELEMENT_ARRAY_BUFFER\n * @member {Object.}\n * @readonly\n */\n this.boundBuffers = {};\n\n /**\n * Cache for all geometries by id, used in case renderer gets destroyed or for profiling\n * @member {object}\n * @readonly\n */\n this.managedGeometries = {};\n\n /**\n * Cache for all buffers by id, used in case renderer gets destroyed or for profiling\n * @member {object}\n * @readonly\n */\n this.managedBuffers = {};\n }\n\n if ( System ) GeometrySystem.__proto__ = System;\n GeometrySystem.prototype = Object.create( System && System.prototype );\n GeometrySystem.prototype.constructor = GeometrySystem;\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n GeometrySystem.prototype.contextChange = function contextChange ()\n {\n this.disposeAll(true);\n\n var gl = this.gl = this.renderer.gl;\n var context = this.renderer.context;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n\n // webgl2\n if (!gl.createVertexArray)\n {\n // webgl 1!\n var nativeVaoExtension = this.renderer.context.extensions.vertexArrayObject;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n nativeVaoExtension = null;\n }\n\n if (nativeVaoExtension)\n {\n gl.createVertexArray = function () { return nativeVaoExtension.createVertexArrayOES(); };\n\n gl.bindVertexArray = function (vao) { return nativeVaoExtension.bindVertexArrayOES(vao); };\n\n gl.deleteVertexArray = function (vao) { return nativeVaoExtension.deleteVertexArrayOES(vao); };\n }\n else\n {\n this.hasVao = false;\n gl.createVertexArray = function () {\n // empty\n };\n\n gl.bindVertexArray = function () {\n // empty\n };\n\n gl.deleteVertexArray = function () {\n // empty\n };\n }\n }\n\n if (!gl.vertexAttribDivisor)\n {\n var instanceExt = gl.getExtension('ANGLE_instanced_arrays');\n\n if (instanceExt)\n {\n gl.vertexAttribDivisor = function (a, b) { return instanceExt.vertexAttribDivisorANGLE(a, b); };\n\n gl.drawElementsInstanced = function (a, b, c, d, e) { return instanceExt.drawElementsInstancedANGLE(a, b, c, d, e); };\n\n gl.drawArraysInstanced = function (a, b, c, d) { return instanceExt.drawArraysInstancedANGLE(a, b, c, d); };\n }\n else\n {\n this.hasInstance = false;\n }\n }\n\n this.canUseUInt32ElementIndex = context.webGLVersion === 2 || !!context.extensions.uint32ElementIndex;\n };\n\n /**\n * Binds geometry so that is can be drawn. Creating a Vao if required\n *\n * @param {PIXI.Geometry} geometry instance of geometry to bind\n * @param {PIXI.Shader} [shader] instance of shader to use vao for\n */\n GeometrySystem.prototype.bind = function bind (geometry, shader)\n {\n shader = shader || this.renderer.shader.shader;\n\n var ref = this;\n var gl = ref.gl;\n\n // not sure the best way to address this..\n // currently different shaders require different VAOs for the same geometry\n // Still mulling over the best way to solve this one..\n // will likely need to modify the shader attribute locations at run time!\n var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n\n if (!vaos)\n {\n this.managedGeometries[geometry.id] = geometry;\n geometry.disposeRunner.add(this);\n geometry.glVertexArrayObjects[this.CONTEXT_UID] = vaos = {};\n }\n\n var vao = vaos[shader.program.id] || this.initGeometryVao(geometry, shader.program);\n\n this._activeGeometry = geometry;\n\n if (this._activeVao !== vao)\n {\n this._activeVao = vao;\n\n if (this.hasVao)\n {\n gl.bindVertexArray(vao);\n }\n else\n {\n this.activateVao(geometry, shader.program);\n }\n }\n\n // TODO - optimise later!\n // don't need to loop through if nothing changed!\n // maybe look to add an 'autoupdate' to geometry?\n this.updateBuffers();\n };\n\n /**\n * Reset and unbind any active VAO and geometry\n */\n GeometrySystem.prototype.reset = function reset ()\n {\n this.unbind();\n };\n\n /**\n * Update buffers\n * @protected\n */\n GeometrySystem.prototype.updateBuffers = function updateBuffers ()\n {\n var geometry = this._activeGeometry;\n var ref = this;\n var gl = ref.gl;\n\n for (var i = 0; i < geometry.buffers.length; i++)\n {\n var buffer = geometry.buffers[i];\n\n var glBuffer = buffer._glBuffers[this.CONTEXT_UID];\n\n if (buffer._updateID !== glBuffer.updateID)\n {\n glBuffer.updateID = buffer._updateID;\n\n // TODO can cache this on buffer! maybe added a getter / setter?\n var type = buffer.index ? gl.ELEMENT_ARRAY_BUFFER : gl.ARRAY_BUFFER;\n\n // TODO this could change if the VAO changes...\n // need to come up with a better way to cache..\n // if (this.boundBuffers[type] !== glBuffer)\n // {\n // this.boundBuffers[type] = glBuffer;\n gl.bindBuffer(type, glBuffer.buffer);\n // }\n\n this._boundBuffer = glBuffer;\n\n if (glBuffer.byteLength >= buffer.data.byteLength)\n {\n // offset is always zero for now!\n gl.bufferSubData(type, 0, buffer.data);\n }\n else\n {\n var drawType = buffer.static ? gl.STATIC_DRAW : gl.DYNAMIC_DRAW;\n\n glBuffer.byteLength = buffer.data.byteLength;\n gl.bufferData(type, buffer.data, drawType);\n }\n }\n }\n };\n\n /**\n * Check compability between a geometry and a program\n * @protected\n * @param {PIXI.Geometry} geometry - Geometry instance\n * @param {PIXI.Program} program - Program instance\n */\n GeometrySystem.prototype.checkCompatibility = function checkCompatibility (geometry, program)\n {\n // geometry must have at least all the attributes that the shader requires.\n var geometryAttributes = geometry.attributes;\n var shaderAttributes = program.attributeData;\n\n for (var j in shaderAttributes)\n {\n if (!geometryAttributes[j])\n {\n throw new Error((\"shader and geometry incompatible, geometry missing the \\\"\" + j + \"\\\" attribute\"));\n }\n }\n };\n\n /**\n * Takes a geometry and program and generates a unique signature for them.\n *\n * @param {PIXI.Geometry} geometry to get signature from\n * @param {PIXI.Program} program to test geometry against\n * @returns {String} Unique signature of the geometry and program\n * @protected\n */\n GeometrySystem.prototype.getSignature = function getSignature (geometry, program)\n {\n var attribs = geometry.attributes;\n var shaderAttributes = program.attributeData;\n\n var strings = ['g', geometry.id];\n\n for (var i in attribs)\n {\n if (shaderAttributes[i])\n {\n strings.push(i);\n }\n }\n\n return strings.join('-');\n };\n\n /**\n * Creates or gets Vao with the same structure as the geometry and stores it on the geometry.\n * If vao is created, it is bound automatically.\n *\n * @protected\n * @param {PIXI.Geometry} geometry - Instance of geometry to to generate Vao for\n * @param {PIXI.Program} program - Instance of program\n */\n GeometrySystem.prototype.initGeometryVao = function initGeometryVao (geometry, program)\n {\n this.checkCompatibility(geometry, program);\n\n var gl = this.gl;\n var CONTEXT_UID = this.CONTEXT_UID;\n\n var signature = this.getSignature(geometry, program);\n\n var vaoObjectHash = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n\n var vao = vaoObjectHash[signature];\n\n if (vao)\n {\n // this will give us easy access to the vao\n vaoObjectHash[program.id] = vao;\n\n return vao;\n }\n\n var buffers = geometry.buffers;\n var attributes = geometry.attributes;\n var tempStride = {};\n var tempStart = {};\n\n for (var j in buffers)\n {\n tempStride[j] = 0;\n tempStart[j] = 0;\n }\n\n for (var j$1 in attributes)\n {\n if (!attributes[j$1].size && program.attributeData[j$1])\n {\n attributes[j$1].size = program.attributeData[j$1].size;\n }\n else if (!attributes[j$1].size)\n {\n console.warn((\"PIXI Geometry attribute '\" + j$1 + \"' size cannot be determined (likely the bound shader does not have the attribute)\")); // eslint-disable-line\n }\n\n tempStride[attributes[j$1].buffer] += attributes[j$1].size * byteSizeMap$1[attributes[j$1].type];\n }\n\n for (var j$2 in attributes)\n {\n var attribute = attributes[j$2];\n var attribSize = attribute.size;\n\n if (attribute.stride === undefined)\n {\n if (tempStride[attribute.buffer] === attribSize * byteSizeMap$1[attribute.type])\n {\n attribute.stride = 0;\n }\n else\n {\n attribute.stride = tempStride[attribute.buffer];\n }\n }\n\n if (attribute.start === undefined)\n {\n attribute.start = tempStart[attribute.buffer];\n\n tempStart[attribute.buffer] += attribSize * byteSizeMap$1[attribute.type];\n }\n }\n\n vao = gl.createVertexArray();\n\n gl.bindVertexArray(vao);\n\n // first update - and create the buffers!\n // only create a gl buffer if it actually gets\n for (var i = 0; i < buffers.length; i++)\n {\n var buffer = buffers[i];\n\n if (!buffer._glBuffers[CONTEXT_UID])\n {\n buffer._glBuffers[CONTEXT_UID] = new GLBuffer(gl.createBuffer());\n this.managedBuffers[buffer.id] = buffer;\n buffer.disposeRunner.add(this);\n }\n\n buffer._glBuffers[CONTEXT_UID].refCount++;\n }\n\n // TODO - maybe make this a data object?\n // lets wait to see if we need to first!\n\n this.activateVao(geometry, program);\n\n this._activeVao = vao;\n\n // add it to the cache!\n vaoObjectHash[program.id] = vao;\n vaoObjectHash[signature] = vao;\n\n return vao;\n };\n\n /**\n * Disposes buffer\n * @param {PIXI.Buffer} buffer buffer with data\n * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray\n */\n GeometrySystem.prototype.disposeBuffer = function disposeBuffer (buffer, contextLost)\n {\n if (!this.managedBuffers[buffer.id])\n {\n return;\n }\n\n delete this.managedBuffers[buffer.id];\n\n var glBuffer = buffer._glBuffers[this.CONTEXT_UID];\n var gl = this.gl;\n\n buffer.disposeRunner.remove(this);\n\n if (!glBuffer)\n {\n return;\n }\n\n if (!contextLost)\n {\n gl.deleteBuffer(glBuffer.buffer);\n }\n\n delete buffer._glBuffers[this.CONTEXT_UID];\n };\n\n /**\n * Disposes geometry\n * @param {PIXI.Geometry} geometry Geometry with buffers. Only VAO will be disposed\n * @param {boolean} [contextLost=false] If context was lost, we suppress deleteVertexArray\n */\n GeometrySystem.prototype.disposeGeometry = function disposeGeometry (geometry, contextLost)\n {\n if (!this.managedGeometries[geometry.id])\n {\n return;\n }\n\n delete this.managedGeometries[geometry.id];\n\n var vaos = geometry.glVertexArrayObjects[this.CONTEXT_UID];\n var gl = this.gl;\n var buffers = geometry.buffers;\n\n geometry.disposeRunner.remove(this);\n\n if (!vaos)\n {\n return;\n }\n\n for (var i = 0; i < buffers.length; i++)\n {\n var buf = buffers[i]._glBuffers[this.CONTEXT_UID];\n\n buf.refCount--;\n if (buf.refCount === 0 && !contextLost)\n {\n this.disposeBuffer(buffers[i], contextLost);\n }\n }\n\n if (!contextLost)\n {\n for (var vaoId in vaos)\n {\n // delete only signatures, everything else are copies\n if (vaoId[0] === 'g')\n {\n var vao = vaos[vaoId];\n\n if (this._activeVao === vao)\n {\n this.unbind();\n }\n gl.deleteVertexArray(vao);\n }\n }\n }\n\n delete geometry.glVertexArrayObjects[this.CONTEXT_UID];\n };\n\n /**\n * dispose all WebGL resources of all managed geometries and buffers\n * @param {boolean} [contextLost=false] If context was lost, we suppress `gl.delete` calls\n */\n GeometrySystem.prototype.disposeAll = function disposeAll (contextLost)\n {\n var all = Object.keys(this.managedGeometries);\n\n for (var i = 0; i < all.length; i++)\n {\n this.disposeGeometry(this.managedGeometries[all[i]], contextLost);\n }\n all = Object.keys(this.managedBuffers);\n for (var i$1 = 0; i$1 < all.length; i$1++)\n {\n this.disposeBuffer(this.managedBuffers[all[i$1]], contextLost);\n }\n };\n\n /**\n * Activate vertex array object\n *\n * @protected\n * @param {PIXI.Geometry} geometry - Geometry instance\n * @param {PIXI.Program} program - Shader program instance\n */\n GeometrySystem.prototype.activateVao = function activateVao (geometry, program)\n {\n var gl = this.gl;\n var CONTEXT_UID = this.CONTEXT_UID;\n var buffers = geometry.buffers;\n var attributes = geometry.attributes;\n\n if (geometry.indexBuffer)\n {\n // first update the index buffer if we have one..\n gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, geometry.indexBuffer._glBuffers[CONTEXT_UID].buffer);\n }\n\n var lastBuffer = null;\n\n // add a new one!\n for (var j in attributes)\n {\n var attribute = attributes[j];\n var buffer = buffers[attribute.buffer];\n var glBuffer = buffer._glBuffers[CONTEXT_UID];\n\n if (program.attributeData[j])\n {\n if (lastBuffer !== glBuffer)\n {\n gl.bindBuffer(gl.ARRAY_BUFFER, glBuffer.buffer);\n\n lastBuffer = glBuffer;\n }\n\n var location = program.attributeData[j].location;\n\n // TODO introduce state again\n // we can optimise this for older devices that have no VAOs\n gl.enableVertexAttribArray(location);\n\n gl.vertexAttribPointer(location,\n attribute.size,\n attribute.type || gl.FLOAT,\n attribute.normalized,\n attribute.stride,\n attribute.start);\n\n if (attribute.instance)\n {\n // TODO calculate instance count based of this...\n if (this.hasInstance)\n {\n gl.vertexAttribDivisor(location, 1);\n }\n else\n {\n throw new Error('geometry error, GPU Instancing is not supported on this device');\n }\n }\n }\n }\n };\n\n /**\n * Draw the geometry\n *\n * @param {Number} type - the type primitive to render\n * @param {Number} [size] - the number of elements to be rendered\n * @param {Number} [start] - Starting index\n * @param {Number} [instanceCount] - the number of instances of the set of elements to execute\n */\n GeometrySystem.prototype.draw = function draw (type, size, start, instanceCount)\n {\n var ref = this;\n var gl = ref.gl;\n var geometry = this._activeGeometry;\n\n // TODO.. this should not change so maybe cache the function?\n\n if (geometry.indexBuffer)\n {\n var byteSize = geometry.indexBuffer.data.BYTES_PER_ELEMENT;\n var glType = byteSize === 2 ? gl.UNSIGNED_SHORT : gl.UNSIGNED_INT;\n\n if (byteSize === 2 || (byteSize === 4 && this.canUseUInt32ElementIndex))\n {\n if (geometry.instanced)\n {\n /* eslint-disable max-len */\n gl.drawElementsInstanced(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize, instanceCount || 1);\n /* eslint-enable max-len */\n }\n else\n {\n /* eslint-disable max-len */\n gl.drawElements(type, size || geometry.indexBuffer.data.length, glType, (start || 0) * byteSize);\n /* eslint-enable max-len */\n }\n }\n else\n {\n console.warn('unsupported index buffer type: uint32');\n }\n }\n else if (geometry.instanced)\n {\n // TODO need a better way to calculate size..\n gl.drawArraysInstanced(type, start, size || geometry.getSize(), instanceCount || 1);\n }\n else\n {\n gl.drawArrays(type, start, size || geometry.getSize());\n }\n\n return this;\n };\n\n /**\n * Unbind/reset everything\n * @protected\n */\n GeometrySystem.prototype.unbind = function unbind ()\n {\n this.gl.bindVertexArray(null);\n this._activeVao = null;\n this._activeGeometry = null;\n };\n\n return GeometrySystem;\n}(System));\n\n/**\n * @method compileProgram\n * @private\n * @memberof PIXI.glCore.shader\n * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram}\n * @param vertexSrc {string|string[]} The vertex shader source as an array of strings.\n * @param fragmentSrc {string|string[]} The fragment shader source as an array of strings.\n * @param attributeLocations {Object} An attribute location map that lets you manually set the attribute locations\n * @return {WebGLProgram} the shader program\n */\nfunction compileProgram(gl, vertexSrc, fragmentSrc, attributeLocations)\n{\n var glVertShader = compileShader(gl, gl.VERTEX_SHADER, vertexSrc);\n var glFragShader = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc);\n\n var program = gl.createProgram();\n\n gl.attachShader(program, glVertShader);\n gl.attachShader(program, glFragShader);\n\n // optionally, set the attributes manually for the program rather than letting WebGL decide..\n if (attributeLocations)\n {\n for (var i in attributeLocations)\n {\n gl.bindAttribLocation(program, attributeLocations[i], i);\n }\n }\n\n gl.linkProgram(program);\n\n // if linking fails, then log and cleanup\n if (!gl.getProgramParameter(program, gl.LINK_STATUS))\n {\n console.error('Pixi.js Error: Could not initialize shader.');\n console.error('gl.VALIDATE_STATUS', gl.getProgramParameter(program, gl.VALIDATE_STATUS));\n console.error('gl.getError()', gl.getError());\n\n // if there is a program info log, log it\n if (gl.getProgramInfoLog(program) !== '')\n {\n console.warn('Pixi.js Warning: gl.getProgramInfoLog()', gl.getProgramInfoLog(program));\n }\n\n gl.deleteProgram(program);\n program = null;\n }\n\n // clean up some shaders\n gl.deleteShader(glVertShader);\n gl.deleteShader(glFragShader);\n\n return program;\n}\n\n/**\n * @private\n * @param gl {WebGLRenderingContext} The current WebGL context {WebGLProgram}\n * @param type {Number} the type, can be either VERTEX_SHADER or FRAGMENT_SHADER\n * @param vertexSrc {string|string[]} The vertex shader source as an array of strings.\n * @return {WebGLShader} the shader\n */\nfunction compileShader(gl, type, src)\n{\n var shader = gl.createShader(type);\n\n gl.shaderSource(shader, src);\n gl.compileShader(shader);\n\n if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS))\n {\n console.warn(src);\n console.error(gl.getShaderInfoLog(shader));\n\n return null;\n }\n\n return shader;\n}\n\n/**\n * @method defaultValue\n * @memberof PIXI.glCore.shader\n * @param type {String} Type of value\n * @param size {Number}\n * @private\n */\nfunction defaultValue(type, size)\n{\n switch (type)\n {\n case 'float':\n return 0;\n\n case 'vec2':\n return new Float32Array(2 * size);\n\n case 'vec3':\n return new Float32Array(3 * size);\n\n case 'vec4':\n return new Float32Array(4 * size);\n\n case 'int':\n case 'sampler2D':\n case 'sampler2DArray':\n return 0;\n\n case 'ivec2':\n return new Int32Array(2 * size);\n\n case 'ivec3':\n return new Int32Array(3 * size);\n\n case 'ivec4':\n return new Int32Array(4 * size);\n\n case 'bool':\n return false;\n\n case 'bvec2':\n\n return booleanArray(2 * size);\n\n case 'bvec3':\n return booleanArray(3 * size);\n\n case 'bvec4':\n return booleanArray(4 * size);\n\n case 'mat2':\n return new Float32Array([1, 0,\n 0, 1]);\n\n case 'mat3':\n return new Float32Array([1, 0, 0,\n 0, 1, 0,\n 0, 0, 1]);\n\n case 'mat4':\n return new Float32Array([1, 0, 0, 0,\n 0, 1, 0, 0,\n 0, 0, 1, 0,\n 0, 0, 0, 1]);\n }\n\n return null;\n}\n\nfunction booleanArray(size)\n{\n var array = new Array(size);\n\n for (var i = 0; i < array.length; i++)\n {\n array[i] = false;\n }\n\n return array;\n}\n\nvar unknownContext = {};\nvar context = unknownContext;\n\n/**\n * returns a little WebGL context to use for program inspection.\n *\n * @static\n * @private\n * @returns {webGL-context} a gl context to test with\n */\nfunction getTestContext()\n{\n if (context === unknownContext || context.isContextLost())\n {\n var canvas = document.createElement('canvas');\n\n var gl;\n\n if (settings.PREFER_ENV >= ENV.WEBGL2)\n {\n gl = canvas.getContext('webgl2', {});\n }\n\n if (!gl)\n {\n gl = canvas.getContext('webgl', {})\n || canvas.getContext('experimental-webgl', {});\n\n if (!gl)\n {\n // fail, not able to get a context\n gl = null;\n }\n else\n {\n // for shader testing..\n gl.getExtension('WEBGL_draw_buffers');\n }\n }\n\n context = gl;\n }\n\n return context;\n}\n\nvar maxFragmentPrecision;\n\nfunction getMaxFragmentPrecision()\n{\n if (!maxFragmentPrecision)\n {\n maxFragmentPrecision = PRECISION.MEDIUM;\n var gl = getTestContext();\n\n if (gl)\n {\n if (gl.getShaderPrecisionFormat)\n {\n var shaderFragment = gl.getShaderPrecisionFormat(gl.FRAGMENT_SHADER, gl.HIGH_FLOAT);\n\n maxFragmentPrecision = shaderFragment.precision ? PRECISION.HIGH : PRECISION.MEDIUM;\n }\n }\n }\n\n return maxFragmentPrecision;\n}\n\n/**\n * Sets the float precision on the shader, ensuring the device supports the request precision.\n * If the precision is already present, it just ensures that the device is able to handle it.\n *\n * @private\n * @param {string} src - The shader source\n * @param {string} requestedPrecision - The request float precision of the shader. Options are 'lowp', 'mediump' or 'highp'.\n * @param {string} maxSupportedPrecision - The maximum precision the shader supports.\n *\n * @return {string} modified shader source\n */\nfunction setPrecision(src, requestedPrecision, maxSupportedPrecision)\n{\n if (src.substring(0, 9) !== 'precision')\n {\n // no precision supplied, so PixiJS will add the requested level.\n var precision = requestedPrecision;\n\n // If highp is requested but not supported, downgrade precision to a level all devices support.\n if (requestedPrecision === PRECISION.HIGH && maxSupportedPrecision !== PRECISION.HIGH)\n {\n precision = PRECISION.MEDIUM;\n }\n\n return (\"precision \" + precision + \" float;\\n\" + src);\n }\n else if (maxSupportedPrecision !== PRECISION.HIGH && src.substring(0, 15) === 'precision highp')\n {\n // precision was supplied, but at a level this device does not support, so downgrading to mediump.\n return src.replace('precision highp', 'precision mediump');\n }\n\n return src;\n}\n\nvar GLSL_TO_SIZE = {\n float: 1,\n vec2: 2,\n vec3: 3,\n vec4: 4,\n\n int: 1,\n ivec2: 2,\n ivec3: 3,\n ivec4: 4,\n\n bool: 1,\n bvec2: 2,\n bvec3: 3,\n bvec4: 4,\n\n mat2: 4,\n mat3: 9,\n mat4: 16,\n\n sampler2D: 1,\n};\n\n/**\n * @private\n * @method mapSize\n * @memberof PIXI.glCore.shader\n * @param type {String}\n * @return {Number}\n */\nfunction mapSize(type)\n{\n return GLSL_TO_SIZE[type];\n}\n\nvar GL_TABLE = null;\n\nvar GL_TO_GLSL_TYPES = {\n FLOAT: 'float',\n FLOAT_VEC2: 'vec2',\n FLOAT_VEC3: 'vec3',\n FLOAT_VEC4: 'vec4',\n\n INT: 'int',\n INT_VEC2: 'ivec2',\n INT_VEC3: 'ivec3',\n INT_VEC4: 'ivec4',\n\n BOOL: 'bool',\n BOOL_VEC2: 'bvec2',\n BOOL_VEC3: 'bvec3',\n BOOL_VEC4: 'bvec4',\n\n FLOAT_MAT2: 'mat2',\n FLOAT_MAT3: 'mat3',\n FLOAT_MAT4: 'mat4',\n\n SAMPLER_2D: 'sampler2D',\n SAMPLER_CUBE: 'samplerCube',\n SAMPLER_2D_ARRAY: 'sampler2DArray',\n};\n\nfunction mapType(gl, type)\n{\n if (!GL_TABLE)\n {\n var typeNames = Object.keys(GL_TO_GLSL_TYPES);\n\n GL_TABLE = {};\n\n for (var i = 0; i < typeNames.length; ++i)\n {\n var tn = typeNames[i];\n\n GL_TABLE[gl[tn]] = GL_TO_GLSL_TYPES[tn];\n }\n }\n\n return GL_TABLE[type];\n}\n\n// cv = CachedValue\n// v = value\n// ud = uniformData\n// uv = uniformValue\n// l = location\nvar GLSL_TO_SINGLE_SETTERS_CACHED = {\n\n float: \"\\n if(cv !== v)\\n {\\n cv.v = v;\\n gl.uniform1f(location, v)\\n }\",\n\n vec2: \"\\n if(cv[0] !== v[0] || cv[1] !== v[1])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n gl.uniform2f(location, v[0], v[1])\\n }\",\n\n vec3: \"\\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n cv[2] = v[2];\\n\\n gl.uniform3f(location, v[0], v[1], v[2])\\n }\",\n\n vec4: 'gl.uniform4f(location, v[0], v[1], v[2], v[3])',\n\n int: 'gl.uniform1i(location, v)',\n ivec2: 'gl.uniform2i(location, v[0], v[1])',\n ivec3: 'gl.uniform3i(location, v[0], v[1], v[2])',\n ivec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])',\n\n bool: 'gl.uniform1i(location, v)',\n bvec2: 'gl.uniform2i(location, v[0], v[1])',\n bvec3: 'gl.uniform3i(location, v[0], v[1], v[2])',\n bvec4: 'gl.uniform4i(location, v[0], v[1], v[2], v[3])',\n\n mat2: 'gl.uniformMatrix2fv(location, false, v)',\n mat3: 'gl.uniformMatrix3fv(location, false, v)',\n mat4: 'gl.uniformMatrix4fv(location, false, v)',\n\n sampler2D: 'gl.uniform1i(location, v)',\n samplerCube: 'gl.uniform1i(location, v)',\n sampler2DArray: 'gl.uniform1i(location, v)',\n};\n\nvar GLSL_TO_ARRAY_SETTERS = {\n\n float: \"gl.uniform1fv(location, v)\",\n\n vec2: \"gl.uniform2fv(location, v)\",\n vec3: \"gl.uniform3fv(location, v)\",\n vec4: 'gl.uniform4fv(location, v)',\n\n mat4: 'gl.uniformMatrix4fv(location, false, v)',\n mat3: 'gl.uniformMatrix3fv(location, false, v)',\n mat2: 'gl.uniformMatrix2fv(location, false, v)',\n\n int: 'gl.uniform1iv(location, v)',\n ivec2: 'gl.uniform2iv(location, v)',\n ivec3: 'gl.uniform3iv(location, v)',\n ivec4: 'gl.uniform4iv(location, v)',\n\n bool: 'gl.uniform1iv(location, v)',\n bvec2: 'gl.uniform2iv(location, v)',\n bvec3: 'gl.uniform3iv(location, v)',\n bvec4: 'gl.uniform4iv(location, v)',\n\n sampler2D: 'gl.uniform1iv(location, v)',\n samplerCube: 'gl.uniform1iv(location, v)',\n sampler2DArray: 'gl.uniform1iv(location, v)',\n};\n\nfunction generateUniformsSync(group, uniformData)\n{\n var textureCount = 0;\n var func = \"var v = null;\\n var cv = null\\n var gl = renderer.gl\";\n\n for (var i in group.uniforms)\n {\n var data = uniformData[i];\n\n if (!data)\n {\n if (group.uniforms[i].group)\n {\n func += \"\\n renderer.shader.syncUniformGroup(uv.\" + i + \");\\n \";\n }\n\n continue;\n }\n\n // TODO && uniformData[i].value !== 0 <-- do we still need this?\n if (data.type === 'float' && data.size === 1)\n {\n func += \"\\n if(uv.\" + i + \" !== ud.\" + i + \".value)\\n {\\n ud.\" + i + \".value = uv.\" + i + \"\\n gl.uniform1f(ud.\" + i + \".location, uv.\" + i + \")\\n }\\n\";\n }\n /* eslint-disable max-len */\n else if ((data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray)\n /* eslint-disable max-len */\n {\n func += \"\\n renderer.texture.bind(uv.\" + i + \", \" + textureCount + \");\\n\\n if(ud.\" + i + \".value !== \" + textureCount + \")\\n {\\n ud.\" + i + \".value = \" + textureCount + \";\\n gl.uniform1i(ud.\" + i + \".location, \" + textureCount + \");\\n; // eslint-disable-line max-len\\n }\\n\";\n\n textureCount++;\n }\n else if (data.type === 'mat3' && data.size === 1)\n {\n if (group.uniforms[i].a !== undefined)\n {\n // TODO and some smart caching dirty ids here!\n func += \"\\n gl.uniformMatrix3fv(ud.\" + i + \".location, false, uv.\" + i + \".toArray(true));\\n \\n\";\n }\n else\n {\n func += \"\\n gl.uniformMatrix3fv(ud.\" + i + \".location, false, uv.\" + i + \");\\n \\n\";\n }\n }\n else if (data.type === 'vec2' && data.size === 1)\n {\n // TODO - do we need both here?\n // maybe we can get away with only using points?\n if (group.uniforms[i].x !== undefined)\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v.x || cv[1] !== v.y)\\n {\\n cv[0] = v.x;\\n cv[1] = v.y;\\n gl.uniform2f(ud.\" + i + \".location, v.x, v.y);\\n }\\n\";\n }\n else\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v[0] || cv[1] !== v[1])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n gl.uniform2f(ud.\" + i + \".location, v[0], v[1]);\\n }\\n \\n\";\n }\n }\n else if (data.type === 'vec4' && data.size === 1)\n {\n // TODO - do we need both here?\n // maybe we can get away with only using points?\n if (group.uniforms[i].width !== undefined)\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v.x || cv[1] !== v.y || cv[2] !== v.width || cv[3] !== v.height)\\n {\\n cv[0] = v.x;\\n cv[1] = v.y;\\n cv[2] = v.width;\\n cv[3] = v.height;\\n gl.uniform4f(ud.\" + i + \".location, v.x, v.y, v.width, v.height)\\n }\\n\";\n }\n else\n {\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n\\n if(cv[0] !== v[0] || cv[1] !== v[1] || cv[2] !== v[2] || cv[3] !== v[3])\\n {\\n cv[0] = v[0];\\n cv[1] = v[1];\\n cv[2] = v[2];\\n cv[3] = v[3];\\n\\n gl.uniform4f(ud.\" + i + \".location, v[0], v[1], v[2], v[3])\\n }\\n \\n\";\n }\n }\n else\n {\n var templateType = (data.size === 1) ? GLSL_TO_SINGLE_SETTERS_CACHED : GLSL_TO_ARRAY_SETTERS;\n\n var template = templateType[data.type].replace('location', (\"ud.\" + i + \".location\"));\n\n func += \"\\n cv = ud.\" + i + \".value;\\n v = uv.\" + i + \";\\n \" + template + \";\\n\";\n }\n }\n\n return new Function('ud', 'uv', 'renderer', func); // eslint-disable-line no-new-func\n}\n\nvar fragTemplate = [\n 'precision mediump float;',\n 'void main(void){',\n 'float test = 0.1;',\n '%forloop%',\n 'gl_FragColor = vec4(0.0);',\n '}' ].join('\\n');\n\nfunction checkMaxIfStatementsInShader(maxIfs, gl)\n{\n if (maxIfs === 0)\n {\n throw new Error('Invalid value of `0` passed to `checkMaxIfStatementsInShader`');\n }\n\n var shader = gl.createShader(gl.FRAGMENT_SHADER);\n\n while (true) // eslint-disable-line no-constant-condition\n {\n var fragmentSrc = fragTemplate.replace(/%forloop%/gi, generateIfTestSrc(maxIfs));\n\n gl.shaderSource(shader, fragmentSrc);\n gl.compileShader(shader);\n\n if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS))\n {\n maxIfs = (maxIfs / 2) | 0;\n }\n else\n {\n // valid!\n break;\n }\n }\n\n return maxIfs;\n}\n\nfunction generateIfTestSrc(maxIfs)\n{\n var src = '';\n\n for (var i = 0; i < maxIfs; ++i)\n {\n if (i > 0)\n {\n src += '\\nelse ';\n }\n\n if (i < maxIfs - 1)\n {\n src += \"if(test == \" + i + \".0){}\";\n }\n }\n\n return src;\n}\n\n// Cache the result to prevent running this over and over\nvar unsafeEval;\n\n/**\n * Not all platforms allow to generate function code (e.g., `new Function`).\n * this provides the platform-level detection.\n *\n * @private\n * @returns {boolean}\n */\nfunction unsafeEvalSupported()\n{\n if (typeof unsafeEval === 'boolean')\n {\n return unsafeEval;\n }\n\n try\n {\n /* eslint-disable no-new-func */\n var func = new Function('param1', 'param2', 'param3', 'return param1[param2] === param3;');\n /* eslint-enable no-new-func */\n\n unsafeEval = func({ a: 'b' }, 'a', 'b') === true;\n }\n catch (e)\n {\n unsafeEval = false;\n }\n\n return unsafeEval;\n}\n\nvar defaultFragment = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n gl_FragColor *= texture2D(uSampler, vTextureCoord);\\n}\";\n\nvar defaultVertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void){\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n vTextureCoord = aTextureCoord;\\n}\\n\";\n\n// import * as from '../systems/shader/shader';\n\nvar UID$3 = 0;\n\nvar nameCache = {};\n\n/**\n * Helper class to create a shader program.\n *\n * @class\n * @memberof PIXI\n */\nvar Program = function Program(vertexSrc, fragmentSrc, name)\n{\n if ( name === void 0 ) name = 'pixi-shader';\n\n this.id = UID$3++;\n\n /**\n * The vertex shader.\n *\n * @member {string}\n */\n this.vertexSrc = vertexSrc || Program.defaultVertexSrc;\n\n /**\n * The fragment shader.\n *\n * @member {string}\n */\n this.fragmentSrc = fragmentSrc || Program.defaultFragmentSrc;\n\n this.vertexSrc = this.vertexSrc.trim();\n this.fragmentSrc = this.fragmentSrc.trim();\n\n if (this.vertexSrc.substring(0, 8) !== '#version')\n {\n name = name.replace(/\\s+/g, '-');\n\n if (nameCache[name])\n {\n nameCache[name]++;\n name += \"-\" + (nameCache[name]);\n }\n else\n {\n nameCache[name] = 1;\n }\n\n this.vertexSrc = \"#define SHADER_NAME \" + name + \"\\n\" + (this.vertexSrc);\n this.fragmentSrc = \"#define SHADER_NAME \" + name + \"\\n\" + (this.fragmentSrc);\n\n this.vertexSrc = setPrecision(this.vertexSrc, settings.PRECISION_VERTEX, PRECISION.HIGH);\n this.fragmentSrc = setPrecision(this.fragmentSrc, settings.PRECISION_FRAGMENT, getMaxFragmentPrecision());\n }\n\n // currently this does not extract structs only default types\n this.extractData(this.vertexSrc, this.fragmentSrc);\n\n // this is where we store shader references..\n this.glPrograms = {};\n\n this.syncUniforms = null;\n};\n\nvar staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } };\n\n/**\n * Extracts the data for a buy creating a small test program\n * or reading the src directly.\n * @protected\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n */\nProgram.prototype.extractData = function extractData (vertexSrc, fragmentSrc)\n{\n var gl = getTestContext();\n\n if (gl)\n {\n var program = compileProgram(gl, vertexSrc, fragmentSrc);\n\n this.attributeData = this.getAttributeData(program, gl);\n this.uniformData = this.getUniformData(program, gl);\n\n gl.deleteProgram(program);\n }\n else\n {\n this.uniformData = {};\n this.attributeData = {};\n }\n};\n\n/**\n * returns the attribute data from the program\n * @private\n *\n * @param {WebGLProgram} [program] - the WebGL program\n * @param {WebGLRenderingContext} [gl] - the WebGL context\n *\n * @returns {object} the attribute data for this program\n */\nProgram.prototype.getAttributeData = function getAttributeData (program, gl)\n{\n var attributes = {};\n var attributesArray = [];\n\n var totalAttributes = gl.getProgramParameter(program, gl.ACTIVE_ATTRIBUTES);\n\n for (var i = 0; i < totalAttributes; i++)\n {\n var attribData = gl.getActiveAttrib(program, i);\n var type = mapType(gl, attribData.type);\n\n /*eslint-disable */\n var data = {\n type: type,\n name: attribData.name,\n size: mapSize(type),\n location: 0,\n };\n /* eslint-enable */\n\n attributes[attribData.name] = data;\n attributesArray.push(data);\n }\n\n attributesArray.sort(function (a, b) { return (a.name > b.name) ? 1 : -1; }); // eslint-disable-line no-confusing-arrow\n\n for (var i$1 = 0; i$1 < attributesArray.length; i$1++)\n {\n attributesArray[i$1].location = i$1;\n }\n\n return attributes;\n};\n\n/**\n * returns the uniform data from the program\n * @private\n *\n * @param {webGL-program} [program] - the webgl program\n * @param {context} [gl] - the WebGL context\n *\n * @returns {object} the uniform data for this program\n */\nProgram.prototype.getUniformData = function getUniformData (program, gl)\n{\n var uniforms = {};\n\n var totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS);\n\n // TODO expose this as a prop?\n // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$');\n // const maskRegex = new RegExp('^(projectionMatrix|uSampler|translationMatrix)$');\n\n for (var i = 0; i < totalUniforms; i++)\n {\n var uniformData = gl.getActiveUniform(program, i);\n var name = uniformData.name.replace(/\\[.*?\\]/, '');\n\n var isArray = uniformData.name.match(/\\[.*?\\]/, '');\n var type = mapType(gl, uniformData.type);\n\n /*eslint-disable */\n uniforms[name] = {\n type: type,\n size: uniformData.size,\n isArray:isArray,\n value: defaultValue(type, uniformData.size),\n };\n /* eslint-enable */\n }\n\n return uniforms;\n};\n\n/**\n * The default vertex shader source\n *\n * @static\n * @constant\n * @member {string}\n */\nstaticAccessors.defaultVertexSrc.get = function ()\n{\n return defaultVertex;\n};\n\n/**\n * The default fragment shader source\n *\n * @static\n * @constant\n * @member {string}\n */\nstaticAccessors.defaultFragmentSrc.get = function ()\n{\n return defaultFragment;\n};\n\n/**\n * A short hand function to create a program based of a vertex and fragment shader\n * this method will also check to see if there is a cached program.\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones.\n *\n * @returns {PIXI.Program} an shiny new Pixi shader!\n */\nProgram.from = function from (vertexSrc, fragmentSrc, name)\n{\n var key = vertexSrc + fragmentSrc;\n\n var program = ProgramCache[key];\n\n if (!program)\n {\n ProgramCache[key] = program = new Program(vertexSrc, fragmentSrc, name);\n }\n\n return program;\n};\n\nObject.defineProperties( Program, staticAccessors );\n\n/**\n * A helper class for shaders\n *\n * @class\n * @memberof PIXI\n */\nvar Shader = function Shader(program, uniforms)\n{\n /**\n * Program that the shader uses\n *\n * @member {PIXI.Program}\n */\n this.program = program;\n\n // lets see whats been passed in\n // uniforms should be converted to a uniform group\n if (uniforms)\n {\n if (uniforms instanceof UniformGroup)\n {\n this.uniformGroup = uniforms;\n }\n else\n {\n this.uniformGroup = new UniformGroup(uniforms);\n }\n }\n else\n {\n this.uniformGroup = new UniformGroup({});\n }\n\n // time to build some getters and setters!\n // I guess down the line this could sort of generate an instruction list rather than use dirty ids?\n // does the trick for now though!\n for (var i in program.uniformData)\n {\n if (this.uniformGroup.uniforms[i] instanceof Array)\n {\n this.uniformGroup.uniforms[i] = new Float32Array(this.uniformGroup.uniforms[i]);\n }\n }\n};\n\nvar prototypeAccessors$2 = { uniforms: { configurable: true } };\n\n// TODO move to shader system..\nShader.prototype.checkUniformExists = function checkUniformExists (name, group)\n{\n if (group.uniforms[name])\n {\n return true;\n }\n\n for (var i in group.uniforms)\n {\n var uniform = group.uniforms[i];\n\n if (uniform.group)\n {\n if (this.checkUniformExists(name, uniform))\n {\n return true;\n }\n }\n }\n\n return false;\n};\n\nShader.prototype.destroy = function destroy ()\n{\n // usage count on programs?\n // remove if not used!\n this.uniformGroup = null;\n};\n\n/**\n * Shader uniform values, shortcut for `uniformGroup.uniforms`\n * @readonly\n * @member {object}\n */\nprototypeAccessors$2.uniforms.get = function ()\n{\n return this.uniformGroup.uniforms;\n};\n\n/**\n * A short hand function to create a shader based of a vertex and fragment shader\n *\n * @param {string} [vertexSrc] - The source of the vertex shader.\n * @param {string} [fragmentSrc] - The source of the fragment shader.\n * @param {object} [uniforms] - Custom uniforms to use to augment the built-in ones.\n *\n * @returns {PIXI.Shader} an shiny new Pixi shader!\n */\nShader.from = function from (vertexSrc, fragmentSrc, uniforms)\n{\n var program = Program.from(vertexSrc, fragmentSrc);\n\n return new Shader(program, uniforms);\n};\n\nObject.defineProperties( Shader.prototype, prototypeAccessors$2 );\n\n/* eslint-disable max-len */\n\nvar BLEND = 0;\nvar OFFSET = 1;\nvar CULLING = 2;\nvar DEPTH_TEST = 3;\nvar WINDING = 4;\n\n/**\n * This is a WebGL state, and is is passed The WebGL StateManager.\n *\n * Each mesh rendered may require WebGL to be in a different state.\n * For example you may want different blend mode or to enable polygon offsets\n *\n * @class\n * @memberof PIXI\n */\nvar State = function State()\n{\n this.data = 0;\n\n this.blendMode = BLEND_MODES.NORMAL;\n this.polygonOffset = 0;\n\n this.blend = true;\n // this.depthTest = true;\n};\n\nvar prototypeAccessors$3 = { blend: { configurable: true },offsets: { configurable: true },culling: { configurable: true },depthTest: { configurable: true },clockwiseFrontFace: { configurable: true },blendMode: { configurable: true },polygonOffset: { configurable: true } };\n\n/**\n * Activates blending of the computed fragment color values\n *\n * @member {boolean}\n */\nprototypeAccessors$3.blend.get = function ()\n{\n return !!(this.data & (1 << BLEND));\n};\n\nprototypeAccessors$3.blend.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << BLEND)) !== value)\n {\n this.data ^= (1 << BLEND);\n }\n};\n\n/**\n * Activates adding an offset to depth values of polygon's fragments\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.offsets.get = function ()\n{\n return !!(this.data & (1 << OFFSET));\n};\n\nprototypeAccessors$3.offsets.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << OFFSET)) !== value)\n {\n this.data ^= (1 << OFFSET);\n }\n};\n\n/**\n * Activates culling of polygons.\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.culling.get = function ()\n{\n return !!(this.data & (1 << CULLING));\n};\n\nprototypeAccessors$3.culling.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << CULLING)) !== value)\n {\n this.data ^= (1 << CULLING);\n }\n};\n\n/**\n * Activates depth comparisons and updates to the depth buffer.\n *\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.depthTest.get = function ()\n{\n return !!(this.data & (1 << DEPTH_TEST));\n};\n\nprototypeAccessors$3.depthTest.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << DEPTH_TEST)) !== value)\n {\n this.data ^= (1 << DEPTH_TEST);\n }\n};\n\n/**\n * Specifies whether or not front or back-facing polygons can be culled.\n * @member {boolean}\n * @default false\n */\nprototypeAccessors$3.clockwiseFrontFace.get = function ()\n{\n return !!(this.data & (1 << WINDING));\n};\n\nprototypeAccessors$3.clockwiseFrontFace.set = function (value) // eslint-disable-line require-jsdoc\n{\n if (!!(this.data & (1 << WINDING)) !== value)\n {\n this.data ^= (1 << WINDING);\n }\n};\n\n/**\n * The blend mode to be applied when this state is set. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n * Setting this mode to anything other than NO_BLEND will automatically switch blending on.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\nprototypeAccessors$3.blendMode.get = function ()\n{\n return this._blendMode;\n};\n\nprototypeAccessors$3.blendMode.set = function (value) // eslint-disable-line require-jsdoc\n{\n this.blend = (value !== BLEND_MODES.NONE);\n this._blendMode = value;\n};\n\n/**\n * The polygon offset. Setting this property to anything other than 0 will automatically enable polygon offset fill.\n *\n * @member {number}\n * @default 0\n */\nprototypeAccessors$3.polygonOffset.get = function ()\n{\n return this._polygonOffset;\n};\n\nprototypeAccessors$3.polygonOffset.set = function (value) // eslint-disable-line require-jsdoc\n{\n this.offsets = !!value;\n this._polygonOffset = value;\n};\n\nState.for2d = function for2d ()\n{\n var state = new State();\n\n state.depthTest = false;\n state.blend = true;\n\n return state;\n};\n\nObject.defineProperties( State.prototype, prototypeAccessors$3 );\n\nvar defaultVertex$1 = \"attribute vec2 aVertexPosition;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nuniform vec4 inputSize;\\nuniform vec4 outputFrame;\\n\\nvec4 filterVertexPosition( void )\\n{\\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\\n\\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\\n}\\n\\nvec2 filterTextureCoord( void )\\n{\\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\\n}\\n\\nvoid main(void)\\n{\\n gl_Position = filterVertexPosition();\\n vTextureCoord = filterTextureCoord();\\n}\\n\";\n\nvar defaultFragment$1 = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n gl_FragColor = texture2D(uSampler, vTextureCoord);\\n}\\n\";\n\n/**\n * Filter is a special type of WebGL shader that is applied to the screen.\n *\n * {@link http://pixijs.io/examples/#/filters/blur-filter.js Example} of the\n * {@link PIXI.filters.BlurFilter BlurFilter}.\n *\n * ### Usage\n * Filters can be applied to any DisplayObject or Container.\n * PixiJS' `FilterSystem` renders the container into temporary Framebuffer,\n * then filter renders it to the screen.\n * Multiple filters can be added to the `filters` array property and stacked on each other.\n *\n * ```\n * const filter = new PIXI.Filter(myShaderVert, myShaderFrag, { myUniform: 0.5 });\n * const container = new PIXI.Container();\n * container.filters = [filter];\n * ```\n *\n * ### Previous Version Differences\n *\n * In PixiJS **v3**, a filter was always applied to _whole screen_.\n *\n * In PixiJS **v4**, a filter can be applied _only part of the screen_.\n * Developers had to create a set of uniforms to deal with coordinates.\n *\n * In PixiJS **v5** combines _both approaches_.\n * Developers can use normal coordinates of v3 and then allow filter to use partial Framebuffers,\n * bringing those extra uniforms into account.\n *\n * Also be aware that we have changed default vertex shader, please consult\n * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}.\n *\n * ### Built-in Uniforms\n *\n * PixiJS viewport uses screen (CSS) coordinates, `(0, 0, renderer.screen.width, renderer.screen.height)`,\n * and `projectionMatrix` uniform maps it to the gl viewport.\n *\n * **uSampler**\n *\n * The most important uniform is the input texture that container was rendered into.\n * _Important note: as with all Framebuffers in PixiJS, both input and output are\n * premultiplied by alpha._\n *\n * By default, input normalized coordinates are passed to fragment shader with `vTextureCoord`.\n * Use it to sample the input.\n *\n * ```\n * const fragment = `\n * varying vec2 vTextureCoord;\n * uniform sampler2D uSampler;\n * void main(void)\n * {\n * gl_FragColor = texture2D(uSampler, vTextureCoord);\n * }\n * `;\n *\n * const myFilter = new PIXI.Filter(null, fragment);\n * ```\n *\n * This filter is just one uniform less than {@link PIXI.filters.AlphaFilter AlphaFilter}.\n *\n * **outputFrame**\n *\n * The `outputFrame` holds the rectangle where filter is applied in screen (CSS) coordinates.\n * It's the same as `renderer.screen` for a fullscreen filter.\n * Only a part of `outputFrame.zw` size of temporary Framebuffer is used,\n * `(0, 0, outputFrame.width, outputFrame.height)`,\n *\n * Filters uses this quad to normalized (0-1) space, its passed into `aVertexPosition` attribute.\n * To calculate vertex position in screen space using normalized (0-1) space:\n *\n * ```\n * vec4 filterVertexPosition( void )\n * {\n * vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\n * return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\n * }\n * ```\n *\n * **inputSize**\n *\n * Temporary framebuffer is different, it can be either the size of screen, either power-of-two.\n * The `inputSize.xy` are size of temporary framebuffer that holds input.\n * The `inputSize.zw` is inverted, it's a shortcut to evade division inside the shader.\n *\n * Set `inputSize.xy = outputFrame.zw` for a fullscreen filter.\n *\n * To calculate input normalized coordinate, you have to map it to filter normalized space.\n * Multiply by `outputFrame.zw` to get input coordinate.\n * Divide by `inputSize.xy` to get input normalized coordinate.\n *\n * ```\n * vec2 filterTextureCoord( void )\n * {\n * return aVertexPosition * (outputFrame.zw * inputSize.zw); // same as /inputSize.xy\n * }\n * ```\n * **resolution**\n *\n * The `resolution` is the ratio of screen (CSS) pixels to real pixels.\n *\n * **inputPixel**\n *\n * `inputPixel.xy` is the size of framebuffer in real pixels, same as `inputSize.xy * resolution`\n * `inputPixel.zw` is inverted `inputPixel.xy`.\n *\n * It's handy for filters that use neighbour pixels, like {@link PIXI.filters.FXAAFilter FXAAFilter}.\n *\n * **inputClamp**\n *\n * If you try to get info from outside of used part of Framebuffer - you'll get undefined behaviour.\n * For displacements, coordinates has to be clamped.\n *\n * The `inputClamp.xy` is left-top pixel center, you may ignore it, because we use left-top part of Framebuffer\n * `inputClamp.zw` is bottom-right pixel center.\n *\n * ```\n * vec4 color = texture2D(uSampler, clamp(modifigedTextureCoord, inputClamp.xy, inputClamp.zw))\n * ```\n * OR\n * ```\n * vec4 color = texture2D(uSampler, min(modifigedTextureCoord, inputClamp.zw))\n * ```\n *\n * ### Additional Information\n *\n * Complete documentation on Filter usage is located in the\n * {@link https://github.com/pixijs/pixi.js/wiki/v5-Creating-filters Wiki}.\n *\n * Since PixiJS only had a handful of built-in filters, additional filters can be downloaded\n * {@link https://github.com/pixijs/pixi-filters here} from the PixiJS Filters repository.\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.Shader\n */\nvar Filter = /*@__PURE__*/(function (Shader) {\n function Filter(vertexSrc, fragmentSrc, uniforms)\n {\n var program = Program.from(vertexSrc || Filter.defaultVertexSrc,\n fragmentSrc || Filter.defaultFragmentSrc);\n\n Shader.call(this, program, uniforms);\n\n /**\n * The padding of the filter. Some filters require extra space to breath such as a blur.\n * Increasing this will add extra width and height to the bounds of the object that the\n * filter is applied to.\n *\n * @member {number}\n */\n this.padding = 0;\n\n /**\n * The resolution of the filter. Setting this to be lower will lower the quality but\n * increase the performance of the filter.\n *\n * @member {number}\n */\n this.resolution = settings.FILTER_RESOLUTION;\n\n /**\n * If enabled is true the filter is applied, if false it will not.\n *\n * @member {boolean}\n */\n this.enabled = true;\n\n /**\n * If enabled, PixiJS will fit the filter area into boundaries for better performance.\n * Switch it off if it does not work for specific shader.\n *\n * @member {boolean}\n */\n this.autoFit = true;\n\n /**\n * Legacy filters use position and uvs from attributes\n * @member {boolean}\n * @readonly\n */\n this.legacy = !!this.program.attributeData.aTextureCoord;\n\n /**\n * The WebGL state the filter requires to render\n * @member {PIXI.State}\n */\n this.state = new State();\n }\n\n if ( Shader ) Filter.__proto__ = Shader;\n Filter.prototype = Object.create( Shader && Shader.prototype );\n Filter.prototype.constructor = Filter;\n\n var prototypeAccessors = { blendMode: { configurable: true } };\n var staticAccessors = { defaultVertexSrc: { configurable: true },defaultFragmentSrc: { configurable: true } };\n\n /**\n * Applies the filter\n *\n * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it\n * @param {object} [currentState] - It's current state of filter.\n * There are some useful properties in the currentState :\n * target, filters, sourceFrame, destinationFrame, renderTarget, resolution\n */\n Filter.prototype.apply = function apply (filterManager, input, output, clear, currentState)\n {\n // do as you please!\n\n filterManager.applyFilter(this, input, output, clear, currentState);\n\n // or just do a regular render..\n };\n\n /**\n * Sets the blendmode of the filter\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n */\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n prototypeAccessors.blendMode.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.state.blendMode = value;\n };\n\n /**\n * The default vertex shader source\n *\n * @static\n * @type {string}\n * @constant\n */\n staticAccessors.defaultVertexSrc.get = function ()\n {\n return defaultVertex$1;\n };\n\n /**\n * The default fragment shader source\n *\n * @static\n * @type {string}\n * @constant\n */\n staticAccessors.defaultFragmentSrc.get = function ()\n {\n return defaultFragment$1;\n };\n\n Object.defineProperties( Filter.prototype, prototypeAccessors );\n Object.defineProperties( Filter, staticAccessors );\n\n return Filter;\n}(Shader));\n\n/**\n * Used for caching shader IDs\n *\n * @static\n * @type {object}\n * @protected\n */\nFilter.SOURCE_KEY_MAP = {};\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 otherMatrix;\\n\\nvarying vec2 vMaskCoord;\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vMaskCoord;\\nvarying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform sampler2D mask;\\nuniform float alpha;\\nuniform float npmAlpha;\\nuniform vec4 maskClamp;\\n\\nvoid main(void)\\n{\\n float clip = step(3.5,\\n step(maskClamp.x, vMaskCoord.x) +\\n step(maskClamp.y, vMaskCoord.y) +\\n step(vMaskCoord.x, maskClamp.z) +\\n step(vMaskCoord.y, maskClamp.w));\\n\\n vec4 original = texture2D(uSampler, vTextureCoord);\\n vec4 masky = texture2D(mask, vMaskCoord);\\n float alphaMul = 1.0 - npmAlpha * (1.0 - masky.a);\\n\\n original *= (alphaMul * masky.r * alpha * clip);\\n\\n gl_FragColor = original;\\n}\\n\";\n\nvar tempMat = new Matrix();\n\n/**\n * Class controls uv mapping from Texture normal space to BaseTexture normal space.\n *\n * Takes `trim` and `rotate` into account. May contain clamp settings for Meshes and TilingSprite.\n *\n * Can be used in Texture `uvMatrix` field, or separately, you can use different clamp settings on the same texture.\n * If you want to add support for texture region of certain feature or filter, that's what you're looking for.\n *\n * Takes track of Texture changes through `_lastTextureID` private field.\n * Use `update()` method call to track it from outside.\n *\n * @see PIXI.Texture\n * @see PIXI.Mesh\n * @see PIXI.TilingSprite\n * @class\n * @memberof PIXI\n */\nvar TextureMatrix = function TextureMatrix(texture, clampMargin)\n{\n this._texture = texture;\n\n /**\n * Matrix operation that converts texture region coords to texture coords\n * @member {PIXI.Matrix}\n * @readonly\n */\n this.mapCoord = new Matrix();\n\n /**\n * Clamp region for normalized coords, left-top pixel center in xy , bottom-right in zw.\n * Calculated based on clampOffset.\n * @member {Float32Array}\n * @readonly\n */\n this.uClampFrame = new Float32Array(4);\n\n /**\n * Normalized clamp offset.\n * Calculated based on clampOffset.\n * @member {Float32Array}\n * @readonly\n */\n this.uClampOffset = new Float32Array(2);\n\n /**\n * Tracks Texture frame changes\n * @member {number}\n * @protected\n */\n this._updateID = -1;\n\n /**\n * Changes frame clamping\n * Works with TilingSprite and Mesh\n * Change to 1.5 if you texture has repeated right and bottom lines, that leads to smoother borders\n *\n * @default 0\n * @member {number}\n */\n this.clampOffset = 0;\n\n /**\n * Changes frame clamping\n * Works with TilingSprite and Mesh\n * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas\n *\n * @default 0.5\n * @member {number}\n */\n this.clampMargin = (typeof clampMargin === 'undefined') ? 0.5 : clampMargin;\n\n /**\n * If texture size is the same as baseTexture\n * @member {boolean}\n * @default false\n * @readonly\n */\n this.isSimple = false;\n};\n\nvar prototypeAccessors$4 = { texture: { configurable: true } };\n\n/**\n * texture property\n * @member {PIXI.Texture}\n */\nprototypeAccessors$4.texture.get = function ()\n{\n return this._texture;\n};\n\nprototypeAccessors$4.texture.set = function (value) // eslint-disable-line require-jsdoc\n{\n this._texture = value;\n this._updateID = -1;\n};\n\n/**\n * Multiplies uvs array to transform\n * @param {Float32Array} uvs mesh uvs\n * @param {Float32Array} [out=uvs] output\n * @returns {Float32Array} output\n */\nTextureMatrix.prototype.multiplyUvs = function multiplyUvs (uvs, out)\n{\n if (out === undefined)\n {\n out = uvs;\n }\n\n var mat = this.mapCoord;\n\n for (var i = 0; i < uvs.length; i += 2)\n {\n var x = uvs[i];\n var y = uvs[i + 1];\n\n out[i] = (x * mat.a) + (y * mat.c) + mat.tx;\n out[i + 1] = (x * mat.b) + (y * mat.d) + mat.ty;\n }\n\n return out;\n};\n\n/**\n * updates matrices if texture was changed\n * @param {boolean} [forceUpdate=false] if true, matrices will be updated any case\n * @returns {boolean} whether or not it was updated\n */\nTextureMatrix.prototype.update = function update (forceUpdate)\n{\n var tex = this._texture;\n\n if (!tex || !tex.valid)\n {\n return false;\n }\n\n if (!forceUpdate\n && this._updateID === tex._updateID)\n {\n return false;\n }\n\n this._updateID = tex._updateID;\n\n var uvs = tex._uvs;\n\n this.mapCoord.set(uvs.x1 - uvs.x0, uvs.y1 - uvs.y0, uvs.x3 - uvs.x0, uvs.y3 - uvs.y0, uvs.x0, uvs.y0);\n\n var orig = tex.orig;\n var trim = tex.trim;\n\n if (trim)\n {\n tempMat.set(orig.width / trim.width, 0, 0, orig.height / trim.height,\n -trim.x / trim.width, -trim.y / trim.height);\n this.mapCoord.append(tempMat);\n }\n\n var texBase = tex.baseTexture;\n var frame = this.uClampFrame;\n var margin = this.clampMargin / texBase.resolution;\n var offset = this.clampOffset;\n\n frame[0] = (tex._frame.x + margin + offset) / texBase.width;\n frame[1] = (tex._frame.y + margin + offset) / texBase.height;\n frame[2] = (tex._frame.x + tex._frame.width - margin + offset) / texBase.width;\n frame[3] = (tex._frame.y + tex._frame.height - margin + offset) / texBase.height;\n this.uClampOffset[0] = offset / texBase.realWidth;\n this.uClampOffset[1] = offset / texBase.realHeight;\n\n this.isSimple = tex._frame.width === texBase.width\n && tex._frame.height === texBase.height\n && tex.rotate === 0;\n\n return true;\n};\n\nObject.defineProperties( TextureMatrix.prototype, prototypeAccessors$4 );\n\n/**\n * This handles a Sprite acting as a mask, as opposed to a Graphic.\n *\n * WebGL only.\n *\n * @class\n * @extends PIXI.Filter\n * @memberof PIXI\n */\nvar SpriteMaskFilter = /*@__PURE__*/(function (Filter) {\n function SpriteMaskFilter(sprite)\n {\n var maskMatrix = new Matrix();\n\n Filter.call(this, vertex, fragment);\n\n sprite.renderable = false;\n\n /**\n * Sprite mask\n * @member {PIXI.Sprite}\n */\n this.maskSprite = sprite;\n\n /**\n * Mask matrix\n * @member {PIXI.Matrix}\n */\n this.maskMatrix = maskMatrix;\n }\n\n if ( Filter ) SpriteMaskFilter.__proto__ = Filter;\n SpriteMaskFilter.prototype = Object.create( Filter && Filter.prototype );\n SpriteMaskFilter.prototype.constructor = SpriteMaskFilter;\n\n /**\n * Applies the filter\n *\n * @param {PIXI.systems.FilterSystem} filterManager - The renderer to retrieve the filter from\n * @param {PIXI.RenderTexture} input - The input render target.\n * @param {PIXI.RenderTexture} output - The target to output to.\n * @param {boolean} clear - Should the output be cleared before rendering to it.\n */\n SpriteMaskFilter.prototype.apply = function apply (filterManager, input, output, clear)\n {\n var maskSprite = this.maskSprite;\n var tex = this.maskSprite.texture;\n\n if (!tex.valid)\n {\n return;\n }\n if (!tex.transform)\n {\n // margin = 0.0, let it bleed a bit, shader code becomes easier\n // assuming that atlas textures were made with 1-pixel padding\n tex.transform = new TextureMatrix(tex, 0.0);\n }\n tex.transform.update();\n\n this.uniforms.npmAlpha = tex.baseTexture.premultiplyAlpha ? 0.0 : 1.0;\n this.uniforms.mask = tex;\n // get _normalized sprite texture coords_ and convert them to _normalized atlas texture coords_ with `prepend`\n this.uniforms.otherMatrix = filterManager.calculateSpriteMatrix(this.maskMatrix, maskSprite)\n .prepend(tex.transform.mapCoord);\n this.uniforms.alpha = maskSprite.worldAlpha;\n this.uniforms.maskClamp = tex.transform.uClampFrame;\n\n filterManager.applyFilter(this, input, output, clear);\n };\n\n return SpriteMaskFilter;\n}(Filter));\n\n/**\n * System plugin to the renderer to manage masks.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar MaskSystem = /*@__PURE__*/(function (System) {\n function MaskSystem(renderer)\n {\n System.call(this, renderer);\n\n // TODO - we don't need both!\n /**\n * `true` if current pushed masked is scissor\n * @member {boolean}\n * @readonly\n */\n this.scissor = false;\n\n /**\n * Mask data\n * @member {PIXI.Graphics}\n * @readonly\n */\n this.scissorData = null;\n\n /**\n * Target to mask\n * @member {PIXI.DisplayObject}\n * @readonly\n */\n this.scissorRenderTarget = null;\n\n /**\n * Enable scissor\n * @member {boolean}\n * @readonly\n */\n this.enableScissor = false;\n\n /**\n * Pool of used sprite mask filters\n * @member {PIXI.SpriteMaskFilter[]}\n * @readonly\n */\n this.alphaMaskPool = [];\n\n /**\n * Current index of alpha mask pool\n * @member {number}\n * @default 0\n * @readonly\n */\n this.alphaMaskIndex = 0;\n }\n\n if ( System ) MaskSystem.__proto__ = System;\n MaskSystem.prototype = Object.create( System && System.prototype );\n MaskSystem.prototype.constructor = MaskSystem;\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.DisplayObject} target - Display Object to push the mask to\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.push = function push (target, maskData)\n {\n // TODO the root check means scissor rect will not\n // be used on render textures more info here:\n // https://github.com/pixijs/pixi.js/pull/3545\n\n if (maskData.isSprite)\n {\n this.pushSpriteMask(target, maskData);\n }\n else if (this.enableScissor\n && !this.scissor\n && this.renderer._activeRenderTarget.root\n && !this.renderer.stencil.stencilMaskStack.length\n && maskData.isFastRect())\n {\n var matrix = maskData.worldTransform;\n\n var rot = Math.atan2(matrix.b, matrix.a);\n\n // use the nearest degree!\n rot = Math.round(rot * (180 / Math.PI));\n\n if (rot % 90)\n {\n this.pushStencilMask(maskData);\n }\n else\n {\n this.pushScissorMask(target, maskData);\n }\n }\n else\n {\n this.pushStencilMask(maskData);\n }\n };\n\n /**\n * Removes the last mask from the mask stack and doesn't return it.\n *\n * @param {PIXI.DisplayObject} target - Display Object to pop the mask from\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pop = function pop (target, maskData)\n {\n if (maskData.isSprite)\n {\n this.popSpriteMask(target, maskData);\n }\n else if (this.enableScissor && !this.renderer.stencil.stencilMaskStack.length)\n {\n this.popScissorMask(target, maskData);\n }\n else\n {\n this.popStencilMask(target, maskData);\n }\n };\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.RenderTexture} target - Display Object to push the sprite mask to\n * @param {PIXI.Sprite} maskData - Sprite to be used as the mask\n */\n MaskSystem.prototype.pushSpriteMask = function pushSpriteMask (target, maskData)\n {\n var alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex];\n\n if (!alphaMaskFilter)\n {\n alphaMaskFilter = this.alphaMaskPool[this.alphaMaskIndex] = [new SpriteMaskFilter(maskData)];\n }\n\n alphaMaskFilter[0].resolution = this.renderer.resolution;\n alphaMaskFilter[0].maskSprite = maskData;\n\n var stashFilterArea = target.filterArea;\n\n target.filterArea = maskData.getBounds(true);\n this.renderer.filter.push(target, alphaMaskFilter);\n target.filterArea = stashFilterArea;\n\n this.alphaMaskIndex++;\n };\n\n /**\n * Removes the last filter from the filter stack and doesn't return it.\n *\n */\n MaskSystem.prototype.popSpriteMask = function popSpriteMask ()\n {\n this.renderer.filter.pop();\n this.alphaMaskIndex--;\n };\n\n /**\n * Applies the Mask and adds it to the current filter stack.\n *\n * @param {PIXI.Sprite|PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pushStencilMask = function pushStencilMask (maskData)\n {\n this.renderer.batch.flush();\n this.renderer.stencil.pushStencil(maskData);\n };\n\n /**\n * Removes the last filter from the filter stack and doesn't return it.\n *\n */\n MaskSystem.prototype.popStencilMask = function popStencilMask ()\n {\n // this.renderer.currentRenderer.stop();\n this.renderer.stencil.popStencil();\n };\n\n /**\n *\n * @param {PIXI.DisplayObject} target - Display Object to push the mask to\n * @param {PIXI.Graphics} maskData - The masking data.\n */\n MaskSystem.prototype.pushScissorMask = function pushScissorMask (target, maskData)\n {\n maskData.renderable = true;\n\n var renderTarget = this.renderer._activeRenderTarget;\n\n var bounds = maskData.getBounds();\n\n bounds.fit(renderTarget.size);\n maskData.renderable = false;\n\n this.renderer.gl.enable(this.renderer.gl.SCISSOR_TEST);\n\n var resolution = this.renderer.resolution;\n\n this.renderer.gl.scissor(\n bounds.x * resolution,\n (renderTarget.root ? renderTarget.size.height - bounds.y - bounds.height : bounds.y) * resolution,\n bounds.width * resolution,\n bounds.height * resolution\n );\n\n this.scissorRenderTarget = renderTarget;\n this.scissorData = maskData;\n this.scissor = true;\n };\n\n /**\n * Pop scissor mask\n *\n */\n MaskSystem.prototype.popScissorMask = function popScissorMask ()\n {\n this.scissorRenderTarget = null;\n this.scissorData = null;\n this.scissor = false;\n\n // must be scissor!\n var ref = this.renderer;\n var gl = ref.gl;\n\n gl.disable(gl.SCISSOR_TEST);\n };\n\n return MaskSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage stencils (used for masks).\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar StencilSystem = /*@__PURE__*/(function (System) {\n function StencilSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * The mask stack\n * @member {PIXI.Graphics[]}\n */\n this.stencilMaskStack = [];\n }\n\n if ( System ) StencilSystem.__proto__ = System;\n StencilSystem.prototype = Object.create( System && System.prototype );\n StencilSystem.prototype.constructor = StencilSystem;\n\n /**\n * Changes the mask stack that is used by this System.\n *\n * @param {PIXI.Graphics[]} stencilMaskStack - The mask stack\n */\n StencilSystem.prototype.setMaskStack = function setMaskStack (stencilMaskStack)\n {\n var gl = this.renderer.gl;\n var curStackLen = this.stencilMaskStack.length;\n\n this.stencilMaskStack = stencilMaskStack;\n if (stencilMaskStack.length !== curStackLen)\n {\n if (stencilMaskStack.length === 0)\n {\n gl.disable(gl.STENCIL_TEST);\n }\n else\n {\n gl.enable(gl.STENCIL_TEST);\n this._useCurrent();\n }\n }\n };\n\n /**\n * Applies the Mask and adds it to the current stencil stack. @alvin\n *\n * @param {PIXI.Graphics} graphics - The mask\n */\n StencilSystem.prototype.pushStencil = function pushStencil (graphics)\n {\n var gl = this.renderer.gl;\n var prevMaskCount = this.stencilMaskStack.length;\n\n if (prevMaskCount === 0)\n {\n // force use stencil texture in current framebuffer\n this.renderer.framebuffer.forceStencil();\n gl.enable(gl.STENCIL_TEST);\n }\n\n this.stencilMaskStack.push(graphics);\n\n // Increment the reference stencil value where the new mask overlaps with the old ones.\n gl.colorMask(false, false, false, false);\n gl.stencilFunc(gl.EQUAL, prevMaskCount, this._getBitwiseMask());\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.INCR);\n\n graphics.renderable = true;\n graphics.render(this.renderer);\n this.renderer.batch.flush();\n graphics.renderable = false;\n\n this._useCurrent();\n };\n\n /**\n * Removes the last mask from the stencil stack. @alvin\n */\n StencilSystem.prototype.popStencil = function popStencil ()\n {\n var gl = this.renderer.gl;\n var graphics = this.stencilMaskStack.pop();\n\n if (this.stencilMaskStack.length === 0)\n {\n // the stack is empty!\n gl.disable(gl.STENCIL_TEST);\n gl.clear(gl.STENCIL_BUFFER_BIT);\n gl.clearStencil(0);\n }\n else\n {\n // Decrement the reference stencil value where the popped mask overlaps with the other ones\n gl.colorMask(false, false, false, false);\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.DECR);\n\n graphics.renderable = true;\n graphics.render(this.renderer);\n this.renderer.batch.flush();\n graphics.renderable = false;\n\n this._useCurrent();\n }\n };\n\n /**\n * Setup renderer to use the current stencil data.\n * @private\n */\n StencilSystem.prototype._useCurrent = function _useCurrent ()\n {\n var gl = this.renderer.gl;\n\n gl.colorMask(true, true, true, true);\n gl.stencilFunc(gl.EQUAL, this.stencilMaskStack.length, this._getBitwiseMask());\n gl.stencilOp(gl.KEEP, gl.KEEP, gl.KEEP);\n };\n\n /**\n * Fill 1s equal to the number of acitve stencil masks.\n * @private\n * @return {number} The bitwise mask.\n */\n StencilSystem.prototype._getBitwiseMask = function _getBitwiseMask ()\n {\n return (1 << this.stencilMaskStack.length) - 1;\n };\n\n /**\n * Destroys the mask stack.\n *\n */\n StencilSystem.prototype.destroy = function destroy ()\n {\n System.prototype.destroy.call(this, this);\n\n this.stencilMaskStack = null;\n };\n\n return StencilSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage the projection matrix.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\n\nvar ProjectionSystem = /*@__PURE__*/(function (System) {\n function ProjectionSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.destinationFrame = null;\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.sourceFrame = null;\n\n /**\n * Default destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.defaultFrame = null;\n\n /**\n * Project matrix\n * @member {PIXI.Matrix}\n * @readonly\n */\n this.projectionMatrix = new Matrix();\n\n /**\n * A transform that will be appended to the projection matrix\n * if null, nothing will be applied\n * @member {PIXI.Matrix}\n */\n this.transform = null;\n }\n\n if ( System ) ProjectionSystem.__proto__ = System;\n ProjectionSystem.prototype = Object.create( System && System.prototype );\n ProjectionSystem.prototype.constructor = ProjectionSystem;\n\n /**\n * Updates the projection matrix based on a projection frame (which is a rectangle)\n *\n * @param {PIXI.Rectangle} destinationFrame - The destination frame.\n * @param {PIXI.Rectangle} sourceFrame - The source frame.\n * @param {Number} resolution - Resolution\n * @param {boolean} root - If is root\n */\n ProjectionSystem.prototype.update = function update (destinationFrame, sourceFrame, resolution, root)\n {\n this.destinationFrame = destinationFrame || this.destinationFrame || this.defaultFrame;\n this.sourceFrame = sourceFrame || this.sourceFrame || destinationFrame;\n\n this.calculateProjection(this.destinationFrame, this.sourceFrame, resolution, root);\n\n if (this.transform)\n {\n this.projectionMatrix.append(this.transform);\n }\n\n var renderer = this.renderer;\n\n renderer.globalUniforms.uniforms.projectionMatrix = this.projectionMatrix;\n renderer.globalUniforms.update();\n\n // this will work for now\n // but would be sweet to stick and even on the global uniforms..\n if (renderer.shader.shader)\n {\n renderer.shader.syncUniformGroup(renderer.shader.shader.uniforms.globals);\n }\n };\n\n /**\n * Updates the projection matrix based on a projection frame (which is a rectangle)\n *\n * @param {PIXI.Rectangle} destinationFrame - The destination frame.\n * @param {PIXI.Rectangle} sourceFrame - The source frame.\n * @param {Number} resolution - Resolution\n * @param {boolean} root - If is root\n */\n ProjectionSystem.prototype.calculateProjection = function calculateProjection (destinationFrame, sourceFrame, resolution, root)\n {\n var pm = this.projectionMatrix;\n\n // I don't think we will need this line..\n // pm.identity();\n\n if (!root)\n {\n pm.a = (1 / destinationFrame.width * 2) * resolution;\n pm.d = (1 / destinationFrame.height * 2) * resolution;\n\n pm.tx = -1 - (sourceFrame.x * pm.a);\n pm.ty = -1 - (sourceFrame.y * pm.d);\n }\n else\n {\n pm.a = (1 / destinationFrame.width * 2) * resolution;\n pm.d = (-1 / destinationFrame.height * 2) * resolution;\n\n pm.tx = -1 - (sourceFrame.x * pm.a);\n pm.ty = 1 - (sourceFrame.y * pm.d);\n }\n };\n\n /**\n * Sets the transform of the active render target to the given matrix\n *\n * @param {PIXI.Matrix} matrix - The transformation matrix\n */\n ProjectionSystem.prototype.setTransform = function setTransform ()// matrix)\n {\n // this._activeRenderTarget.transform = matrix;\n };\n\n return ProjectionSystem;\n}(System));\n\nvar tempRect = new Rectangle();\n\n/**\n * System plugin to the renderer to manage render textures.\n *\n * Should be added after FramebufferSystem\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\n\nvar RenderTextureSystem = /*@__PURE__*/(function (System) {\n function RenderTextureSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * The clear background color as rgba\n * @member {number[]}\n */\n this.clearColor = renderer._backgroundColorRgba;\n\n // TODO move this property somewhere else!\n /**\n * List of masks for the StencilSystem\n * @member {PIXI.Graphics[]}\n * @readonly\n */\n this.defaultMaskStack = [];\n\n // empty render texture?\n /**\n * Render texture\n * @member {PIXI.RenderTexture}\n * @readonly\n */\n this.current = null;\n\n /**\n * Source frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.sourceFrame = new Rectangle();\n\n /**\n * Destination frame\n * @member {PIXI.Rectangle}\n * @readonly\n */\n this.destinationFrame = new Rectangle();\n }\n\n if ( System ) RenderTextureSystem.__proto__ = System;\n RenderTextureSystem.prototype = Object.create( System && System.prototype );\n RenderTextureSystem.prototype.constructor = RenderTextureSystem;\n\n /**\n * Bind the current render texture\n * @param {PIXI.RenderTexture} [renderTexture] - RenderTexture to bind, by default its `null`, the screen\n * @param {PIXI.Rectangle} [sourceFrame] - part of screen that is mapped to the renderTexture\n * @param {PIXI.Rectangle} [destinationFrame] - part of renderTexture, by default it has the same size as sourceFrame\n */\n RenderTextureSystem.prototype.bind = function bind (renderTexture, sourceFrame, destinationFrame)\n {\n if ( renderTexture === void 0 ) renderTexture = null;\n\n this.current = renderTexture;\n\n var renderer = this.renderer;\n\n var resolution;\n\n if (renderTexture)\n {\n var baseTexture = renderTexture.baseTexture;\n\n resolution = baseTexture.resolution;\n\n if (!destinationFrame)\n {\n tempRect.width = baseTexture.realWidth;\n tempRect.height = baseTexture.realHeight;\n\n destinationFrame = tempRect;\n }\n\n if (!sourceFrame)\n {\n sourceFrame = destinationFrame;\n }\n\n this.renderer.framebuffer.bind(baseTexture.framebuffer, destinationFrame);\n\n this.renderer.projection.update(destinationFrame, sourceFrame, resolution, false);\n this.renderer.stencil.setMaskStack(baseTexture.stencilMaskStack);\n }\n else\n {\n resolution = this.renderer.resolution;\n\n // TODO these validation checks happen deeper down..\n // thing they can be avoided..\n if (!destinationFrame)\n {\n tempRect.width = renderer.width;\n tempRect.height = renderer.height;\n\n destinationFrame = tempRect;\n }\n\n if (!sourceFrame)\n {\n sourceFrame = destinationFrame;\n }\n\n renderer.framebuffer.bind(null, destinationFrame);\n\n // TODO store this..\n this.renderer.projection.update(destinationFrame, sourceFrame, resolution, true);\n this.renderer.stencil.setMaskStack(this.defaultMaskStack);\n }\n\n this.sourceFrame.copyFrom(sourceFrame);\n\n this.destinationFrame.x = destinationFrame.x / resolution;\n this.destinationFrame.y = destinationFrame.y / resolution;\n\n this.destinationFrame.width = destinationFrame.width / resolution;\n this.destinationFrame.height = destinationFrame.height / resolution;\n\n if (sourceFrame === destinationFrame)\n {\n this.sourceFrame.copyFrom(this.destinationFrame);\n }\n };\n\n /**\n * Erases the render texture and fills the drawing area with a colour\n *\n * @param {number[]} [clearColor] - The color as rgba, default to use the renderer backgroundColor\n * @return {PIXI.Renderer} Returns itself.\n */\n RenderTextureSystem.prototype.clear = function clear (clearColor)\n {\n if (this.current)\n {\n clearColor = clearColor || this.current.baseTexture.clearColor;\n }\n else\n {\n clearColor = clearColor || this.clearColor;\n }\n\n this.renderer.framebuffer.clear(clearColor[0], clearColor[1], clearColor[2], clearColor[3]);\n };\n\n RenderTextureSystem.prototype.resize = function resize ()// screenWidth, screenHeight)\n {\n // resize the root only!\n this.bind(null);\n };\n\n /**\n * Resets renderTexture state\n */\n RenderTextureSystem.prototype.reset = function reset ()\n {\n this.bind(null);\n };\n\n return RenderTextureSystem;\n}(System));\n\n/**\n * Helper class to create a WebGL Program\n *\n * @class\n * @memberof PIXI\n */\nvar GLProgram = function GLProgram(program, uniformData)\n{\n /**\n * The shader program\n *\n * @member {WebGLProgram}\n */\n this.program = program;\n\n /**\n * holds the uniform data which contains uniform locations\n * and current uniform values used for caching and preventing unneeded GPU commands\n * @member {Object}\n */\n this.uniformData = uniformData;\n\n /**\n * uniformGroups holds the various upload functions for the shader. Each uniform group\n * and program have a unique upload function generated.\n * @member {Object}\n */\n this.uniformGroups = {};\n};\n\n/**\n * Destroys this program\n */\nGLProgram.prototype.destroy = function destroy ()\n{\n this.uniformData = null;\n this.uniformGroups = null;\n this.program = null;\n};\n\nvar UID$4 = 0;\n\n/**\n * System plugin to the renderer to manage shaders.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar ShaderSystem = /*@__PURE__*/(function (System) {\n function ShaderSystem(renderer)\n {\n System.call(this, renderer);\n\n // Validation check that this environment support `new Function`\n this.systemCheck();\n\n /**\n * The current WebGL rendering context\n *\n * @member {WebGLRenderingContext}\n */\n this.gl = null;\n\n this.shader = null;\n this.program = null;\n\n /**\n * Cache to holds the generated functions. Stored against UniformObjects unique signature\n * @type {Object}\n * @private\n */\n this.cache = {};\n\n this.id = UID$4++;\n }\n\n if ( System ) ShaderSystem.__proto__ = System;\n ShaderSystem.prototype = Object.create( System && System.prototype );\n ShaderSystem.prototype.constructor = ShaderSystem;\n\n /**\n * Overrideable function by `@pixi/unsafe-eval` to silence\n * throwing an error if platform doesn't support unsafe-evals.\n *\n * @private\n */\n ShaderSystem.prototype.systemCheck = function systemCheck ()\n {\n if (!unsafeEvalSupported())\n {\n throw new Error('Current environment does not allow unsafe-eval, '\n + 'please use @pixi/unsafe-eval module to enable support.');\n }\n };\n\n ShaderSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n this.reset();\n };\n\n /**\n * Changes the current shader to the one given in parameter\n *\n * @param {PIXI.Shader} shader - the new shader\n * @param {boolean} dontSync - false if the shader should automatically sync its uniforms.\n * @returns {PIXI.GLProgram} the glProgram that belongs to the shader.\n */\n ShaderSystem.prototype.bind = function bind (shader, dontSync)\n {\n shader.uniforms.globals = this.renderer.globalUniforms;\n\n var program = shader.program;\n var glProgram = program.glPrograms[this.renderer.CONTEXT_UID] || this.generateShader(shader);\n\n this.shader = shader;\n\n // TODO - some current Pixi plugins bypass this.. so it not safe to use yet..\n if (this.program !== program)\n {\n this.program = program;\n this.gl.useProgram(glProgram.program);\n }\n\n if (!dontSync)\n {\n this.syncUniformGroup(shader.uniformGroup);\n }\n\n return glProgram;\n };\n\n /**\n * Uploads the uniforms values to the currently bound shader.\n *\n * @param {object} uniforms - the uniforms values that be applied to the current shader\n */\n ShaderSystem.prototype.setUniforms = function setUniforms (uniforms)\n {\n var shader = this.shader.program;\n var glProgram = shader.glPrograms[this.renderer.CONTEXT_UID];\n\n shader.syncUniforms(glProgram.uniformData, uniforms, this.renderer);\n };\n\n ShaderSystem.prototype.syncUniformGroup = function syncUniformGroup (group)\n {\n var glProgram = this.getglProgram();\n\n if (!group.static || group.dirtyId !== glProgram.uniformGroups[group.id])\n {\n glProgram.uniformGroups[group.id] = group.dirtyId;\n\n this.syncUniforms(group, glProgram);\n }\n };\n\n /**\n * Overrideable by the @pixi/unsafe-eval package to use static\n * syncUnforms instead.\n *\n * @private\n */\n ShaderSystem.prototype.syncUniforms = function syncUniforms (group, glProgram)\n {\n var syncFunc = group.syncUniforms[this.shader.program.id] || this.createSyncGroups(group);\n\n syncFunc(glProgram.uniformData, group.uniforms, this.renderer);\n };\n\n ShaderSystem.prototype.createSyncGroups = function createSyncGroups (group)\n {\n var id = this.getSignature(group, this.shader.program.uniformData);\n\n if (!this.cache[id])\n {\n this.cache[id] = generateUniformsSync(group, this.shader.program.uniformData);\n }\n\n group.syncUniforms[this.shader.program.id] = this.cache[id];\n\n return group.syncUniforms[this.shader.program.id];\n };\n\n /**\n * Takes a uniform group and data and generates a unique signature for them.\n *\n * @param {PIXI.UniformGroup} group the uniform group to get signature of\n * @param {Object} uniformData uniform information generated by the shader\n * @returns {String} Unique signature of the uniform group\n * @private\n */\n ShaderSystem.prototype.getSignature = function getSignature (group, uniformData)\n {\n var uniforms = group.uniforms;\n\n var strings = [];\n\n for (var i in uniforms)\n {\n strings.push(i);\n\n if (uniformData[i])\n {\n strings.push(uniformData[i].type);\n }\n }\n\n return strings.join('-');\n };\n\n /**\n * Returns the underlying GLShade rof the currently bound shader.\n * This can be handy for when you to have a little more control over the setting of your uniforms.\n *\n * @return {PIXI.GLProgram} the glProgram for the currently bound Shader for this context\n */\n ShaderSystem.prototype.getglProgram = function getglProgram ()\n {\n if (this.shader)\n {\n return this.shader.program.glPrograms[this.renderer.CONTEXT_UID];\n }\n\n return null;\n };\n\n /**\n * Generates a glProgram version of the Shader provided.\n *\n * @private\n * @param {PIXI.Shader} shader the shader that the glProgram will be based on.\n * @return {PIXI.GLProgram} A shiny new glProgram!\n */\n ShaderSystem.prototype.generateShader = function generateShader (shader)\n {\n var gl = this.gl;\n\n var program = shader.program;\n\n var attribMap = {};\n\n for (var i in program.attributeData)\n {\n attribMap[i] = program.attributeData[i].location;\n }\n\n var shaderProgram = compileProgram(gl, program.vertexSrc, program.fragmentSrc, attribMap);\n var uniformData = {};\n\n for (var i$1 in program.uniformData)\n {\n var data = program.uniformData[i$1];\n\n uniformData[i$1] = {\n location: gl.getUniformLocation(shaderProgram, i$1),\n value: defaultValue(data.type, data.size),\n };\n }\n\n var glProgram = new GLProgram(shaderProgram, uniformData);\n\n program.glPrograms[this.renderer.CONTEXT_UID] = glProgram;\n\n return glProgram;\n };\n\n /**\n * Resets ShaderSystem state, does not affect WebGL state\n */\n ShaderSystem.prototype.reset = function reset ()\n {\n this.program = null;\n this.shader = null;\n };\n\n /**\n * Destroys this System and removes all its textures\n */\n ShaderSystem.prototype.destroy = function destroy ()\n {\n // TODO implement destroy method for ShaderSystem\n this.destroyed = true;\n };\n\n return ShaderSystem;\n}(System));\n\n/**\n * Maps gl blend combinations to WebGL.\n *\n * @memberof PIXI\n * @function mapWebGLBlendModesToPixi\n * @private\n * @param {WebGLRenderingContext} gl - The rendering context.\n * @param {number[][]} [array=[]] - The array to output into.\n * @return {number[][]} Mapped modes.\n */\nfunction mapWebGLBlendModesToPixi(gl, array)\n{\n if ( array === void 0 ) array = [];\n\n // TODO - premultiply alpha would be different.\n // add a boolean for that!\n array[BLEND_MODES.NORMAL] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.ADD] = [gl.ONE, gl.ONE];\n array[BLEND_MODES.MULTIPLY] = [gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SCREEN] = [gl.ONE, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.OVERLAY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DARKEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.LIGHTEN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR_DODGE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR_BURN] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.HARD_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SOFT_LIGHT] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DIFFERENCE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.EXCLUSION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.HUE] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.SATURATION] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.COLOR] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.LUMINOSITY] = [gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.NONE] = [0, 0];\n\n // not-premultiplied blend modes\n array[BLEND_MODES.NORMAL_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.ADD_NPM] = [gl.SRC_ALPHA, gl.ONE, gl.ONE, gl.ONE];\n array[BLEND_MODES.SCREEN_NPM] = [gl.SRC_ALPHA, gl.ONE_MINUS_SRC_COLOR, gl.ONE, gl.ONE_MINUS_SRC_ALPHA];\n\n // composite operations\n array[BLEND_MODES.SRC_IN] = [gl.DST_ALPHA, gl.ZERO];\n array[BLEND_MODES.SRC_OUT] = [gl.ONE_MINUS_DST_ALPHA, gl.ZERO];\n array[BLEND_MODES.SRC_ATOP] = [gl.DST_ALPHA, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DST_OVER] = [gl.ONE_MINUS_DST_ALPHA, gl.ONE];\n array[BLEND_MODES.DST_IN] = [gl.ZERO, gl.SRC_ALPHA];\n array[BLEND_MODES.DST_OUT] = [gl.ZERO, gl.ONE_MINUS_SRC_ALPHA];\n array[BLEND_MODES.DST_ATOP] = [gl.ONE_MINUS_DST_ALPHA, gl.SRC_ALPHA];\n\n // SUBTRACT from flash\n array[BLEND_MODES.SUBTRACT] = [gl.ONE, gl.ONE, gl.ONE, gl.ONE, gl.FUNC_REVERSE_SUBTRACT, gl.FUNC_ADD];\n\n return array;\n}\n\nvar BLEND$1 = 0;\nvar OFFSET$1 = 1;\nvar CULLING$1 = 2;\nvar DEPTH_TEST$1 = 3;\nvar WINDING$1 = 4;\n\n/**\n * System plugin to the renderer to manage WebGL state machines.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar StateSystem = /*@__PURE__*/(function (System) {\n function StateSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * GL context\n * @member {WebGLRenderingContext}\n * @readonly\n */\n this.gl = null;\n\n /**\n * State ID\n * @member {number}\n * @readonly\n */\n this.stateId = 0;\n\n /**\n * Polygon offset\n * @member {number}\n * @readonly\n */\n this.polygonOffset = 0;\n\n /**\n * Blend mode\n * @member {number}\n * @default PIXI.BLEND_MODES.NONE\n * @readonly\n */\n this.blendMode = BLEND_MODES.NONE;\n\n /**\n * Whether current blend equation is different\n * @member {boolean}\n * @protected\n */\n this._blendEq = false;\n\n /**\n * Collection of calls\n * @member {function[]}\n * @readonly\n */\n this.map = [];\n\n // map functions for when we set state..\n this.map[BLEND$1] = this.setBlend;\n this.map[OFFSET$1] = this.setOffset;\n this.map[CULLING$1] = this.setCullFace;\n this.map[DEPTH_TEST$1] = this.setDepthTest;\n this.map[WINDING$1] = this.setFrontFace;\n\n /**\n * Collection of check calls\n * @member {function[]}\n * @readonly\n */\n this.checks = [];\n\n /**\n * Default WebGL State\n * @member {PIXI.State}\n * @readonly\n */\n this.defaultState = new State();\n this.defaultState.blend = true;\n this.defaultState.depth = true;\n }\n\n if ( System ) StateSystem.__proto__ = System;\n StateSystem.prototype = Object.create( System && System.prototype );\n StateSystem.prototype.constructor = StateSystem;\n\n StateSystem.prototype.contextChange = function contextChange (gl)\n {\n this.gl = gl;\n\n this.blendModes = mapWebGLBlendModesToPixi(gl);\n\n this.set(this.defaultState);\n\n this.reset();\n };\n\n /**\n * Sets the current state\n *\n * @param {*} state - The state to set.\n */\n StateSystem.prototype.set = function set (state)\n {\n state = state || this.defaultState;\n\n // TODO maybe to an object check? ( this.state === state )?\n if (this.stateId !== state.data)\n {\n var diff = this.stateId ^ state.data;\n var i = 0;\n\n // order from least to most common\n while (diff)\n {\n if (diff & 1)\n {\n // state change!\n this.map[i].call(this, !!(state.data & (1 << i)));\n }\n\n diff = diff >> 1;\n i++;\n }\n\n this.stateId = state.data;\n }\n\n // based on the above settings we check for specific modes..\n // for example if blend is active we check and set the blend modes\n // or of polygon offset is active we check the poly depth.\n for (var i$1 = 0; i$1 < this.checks.length; i$1++)\n {\n this.checks[i$1](this, state);\n }\n };\n\n /**\n * Sets the state, when previous state is unknown\n *\n * @param {*} state - The state to set\n */\n StateSystem.prototype.forceState = function forceState (state)\n {\n state = state || this.defaultState;\n for (var i = 0; i < this.map.length; i++)\n {\n this.map[i].call(this, !!(state.data & (1 << i)));\n }\n for (var i$1 = 0; i$1 < this.checks.length; i$1++)\n {\n this.checks[i$1](this, state);\n }\n\n this.stateId = state.data;\n };\n\n /**\n * Enables or disabled blending.\n *\n * @param {boolean} value - Turn on or off webgl blending.\n */\n StateSystem.prototype.setBlend = function setBlend (value)\n {\n this.updateCheck(StateSystem.checkBlendMode, value);\n\n this.gl[value ? 'enable' : 'disable'](this.gl.BLEND);\n };\n\n /**\n * Enables or disable polygon offset fill\n *\n * @param {boolean} value - Turn on or off webgl polygon offset testing.\n */\n StateSystem.prototype.setOffset = function setOffset (value)\n {\n this.updateCheck(StateSystem.checkPolygonOffset, value);\n\n this.gl[value ? 'enable' : 'disable'](this.gl.POLYGON_OFFSET_FILL);\n };\n\n /**\n * Sets whether to enable or disable depth test.\n *\n * @param {boolean} value - Turn on or off webgl depth testing.\n */\n StateSystem.prototype.setDepthTest = function setDepthTest (value)\n {\n this.gl[value ? 'enable' : 'disable'](this.gl.DEPTH_TEST);\n };\n\n /**\n * Sets whether to enable or disable cull face.\n *\n * @param {boolean} value - Turn on or off webgl cull face.\n */\n StateSystem.prototype.setCullFace = function setCullFace (value)\n {\n this.gl[value ? 'enable' : 'disable'](this.gl.CULL_FACE);\n };\n\n /**\n * Sets the gl front face.\n *\n * @param {boolean} value - true is clockwise and false is counter-clockwise\n */\n StateSystem.prototype.setFrontFace = function setFrontFace (value)\n {\n this.gl.frontFace(this.gl[value ? 'CW' : 'CCW']);\n };\n\n /**\n * Sets the blend mode.\n *\n * @param {number} value - The blend mode to set to.\n */\n StateSystem.prototype.setBlendMode = function setBlendMode (value)\n {\n if (value === this.blendMode)\n {\n return;\n }\n\n this.blendMode = value;\n\n var mode = this.blendModes[value];\n var gl = this.gl;\n\n if (mode.length === 2)\n {\n gl.blendFunc(mode[0], mode[1]);\n }\n else\n {\n gl.blendFuncSeparate(mode[0], mode[1], mode[2], mode[3]);\n }\n if (mode.length === 6)\n {\n this._blendEq = true;\n gl.blendEquationSeparate(mode[4], mode[5]);\n }\n else if (this._blendEq)\n {\n this._blendEq = false;\n gl.blendEquationSeparate(gl.FUNC_ADD, gl.FUNC_ADD);\n }\n };\n\n /**\n * Sets the polygon offset.\n *\n * @param {number} value - the polygon offset\n * @param {number} scale - the polygon offset scale\n */\n StateSystem.prototype.setPolygonOffset = function setPolygonOffset (value, scale)\n {\n this.gl.polygonOffset(value, scale);\n };\n\n // used\n /**\n * Resets all the logic and disables the vaos\n */\n StateSystem.prototype.reset = function reset ()\n {\n this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL, false);\n\n this.forceState(0);\n\n this._blendEq = true;\n this.blendMode = -1;\n this.setBlendMode(0);\n };\n\n /**\n * checks to see which updates should be checked based on which settings have been activated.\n * For example, if blend is enabled then we should check the blend modes each time the state is changed\n * or if polygon fill is activated then we need to check if the polygon offset changes.\n * The idea is that we only check what we have too.\n *\n * @param {Function} func the checking function to add or remove\n * @param {boolean} value should the check function be added or removed.\n */\n StateSystem.prototype.updateCheck = function updateCheck (func, value)\n {\n var index = this.checks.indexOf(func);\n\n if (value && index === -1)\n {\n this.checks.push(func);\n }\n else if (!value && index !== -1)\n {\n this.checks.splice(index, 1);\n }\n };\n\n /**\n * A private little wrapper function that we call to check the blend mode.\n *\n * @static\n * @private\n * @param {PIXI.StateSystem} System the System to perform the state check on\n * @param {PIXI.State} state the state that the blendMode will pulled from\n */\n StateSystem.checkBlendMode = function checkBlendMode (system, state)\n {\n system.setBlendMode(state.blendMode);\n };\n\n /**\n * A private little wrapper function that we call to check the polygon offset.\n *\n * @static\n * @private\n * @param {PIXI.StateSystem} System the System to perform the state check on\n * @param {PIXI.State} state the state that the blendMode will pulled from\n */\n StateSystem.checkPolygonOffset = function checkPolygonOffset (system, state)\n {\n system.setPolygonOffset(state.polygonOffset, 0);\n };\n\n return StateSystem;\n}(System));\n\n/**\n * System plugin to the renderer to manage texture garbage collection on the GPU,\n * ensuring that it does not get clogged up with textures that are no longer being used.\n *\n * @class\n * @memberof PIXI.systems\n * @extends PIXI.System\n */\nvar TextureGCSystem = /*@__PURE__*/(function (System) {\n function TextureGCSystem(renderer)\n {\n System.call(this, renderer);\n\n /**\n * Count\n * @member {number}\n * @readonly\n */\n this.count = 0;\n\n /**\n * Check count\n * @member {number}\n * @readonly\n */\n this.checkCount = 0;\n\n /**\n * Maximum idle time, in seconds\n * @member {number}\n * @see PIXI.settings.GC_MAX_IDLE\n */\n this.maxIdle = settings.GC_MAX_IDLE;\n\n /**\n * Maximum number of item to check\n * @member {number}\n * @see PIXI.settings.GC_MAX_CHECK_COUNT\n */\n this.checkCountMax = settings.GC_MAX_CHECK_COUNT;\n\n /**\n * Current garabage collection mode\n * @member {PIXI.GC_MODES}\n * @see PIXI.settings.GC_MODE\n */\n this.mode = settings.GC_MODE;\n }\n\n if ( System ) TextureGCSystem.__proto__ = System;\n TextureGCSystem.prototype = Object.create( System && System.prototype );\n TextureGCSystem.prototype.constructor = TextureGCSystem;\n\n /**\n * Checks to see when the last time a texture was used\n * if the texture has not been used for a specified amount of time it will be removed from the GPU\n */\n TextureGCSystem.prototype.postrender = function postrender ()\n {\n this.count++;\n\n if (this.mode === GC_MODES.MANUAL)\n {\n return;\n }\n\n this.checkCount++;\n\n if (this.checkCount > this.checkCountMax)\n {\n this.checkCount = 0;\n\n this.run();\n }\n };\n\n /**\n * Checks to see when the last time a texture was used\n * if the texture has not been used for a specified amount of time it will be removed from the GPU\n */\n TextureGCSystem.prototype.run = function run ()\n {\n var tm = this.renderer.texture;\n var managedTextures = tm.managedTextures;\n var wasRemoved = false;\n\n for (var i = 0; i < managedTextures.length; i++)\n {\n var texture = managedTextures[i];\n\n // only supports non generated textures at the moment!\n if (!texture.framebuffer && this.count - texture.touched > this.maxIdle)\n {\n tm.destroyTexture(texture, true);\n managedTextures[i] = null;\n wasRemoved = true;\n }\n }\n\n if (wasRemoved)\n {\n var j = 0;\n\n for (var i$1 = 0; i$1 < managedTextures.length; i$1++)\n {\n if (managedTextures[i$1] !== null)\n {\n managedTextures[j++] = managedTextures[i$1];\n }\n }\n\n managedTextures.length = j;\n }\n };\n\n /**\n * Removes all the textures within the specified displayObject and its children from the GPU\n *\n * @param {PIXI.DisplayObject} displayObject - the displayObject to remove the textures from.\n */\n TextureGCSystem.prototype.unload = function unload (displayObject)\n {\n var tm = this.renderer.textureSystem;\n\n // only destroy non generated textures\n if (displayObject._texture && displayObject._texture._glRenderTargets)\n {\n tm.destroyTexture(displayObject._texture);\n }\n\n for (var i = displayObject.children.length - 1; i >= 0; i--)\n {\n this.unload(displayObject.children[i]);\n }\n };\n\n return TextureGCSystem;\n}(System));\n\n/**\n * Internal texture for WebGL context\n * @class\n * @memberof PIXI\n */\nvar GLTexture = function GLTexture(texture)\n{\n /**\n * The WebGL texture\n * @member {WebGLTexture}\n */\n this.texture = texture;\n\n /**\n * Width of texture that was used in texImage2D\n * @member {number}\n */\n this.width = -1;\n\n /**\n * Height of texture that was used in texImage2D\n * @member {number}\n */\n this.height = -1;\n\n /**\n * Texture contents dirty flag\n * @member {number}\n */\n this.dirtyId = -1;\n\n /**\n * Texture style dirty flag\n * @member {number}\n */\n this.dirtyStyleId = -1;\n\n /**\n * Whether mip levels has to be generated\n * @member {boolean}\n */\n this.mipmap = false;\n\n /**\n * WrapMode copied from baseTexture\n * @member {number}\n */\n this.wrapMode = 33071;\n\n /**\n * Type copied from baseTexture\n * @member {number}\n */\n this.type = 6408;\n\n /**\n * Type copied from baseTexture\n * @member {number}\n */\n this.internalFormat = 5121;\n};\n\n/**\n * System plugin to the renderer to manage textures.\n *\n * @class\n * @extends PIXI.System\n * @memberof PIXI.systems\n */\nvar TextureSystem = /*@__PURE__*/(function (System) {\n function TextureSystem(renderer)\n {\n System.call(this, renderer);\n\n // TODO set to max textures...\n /**\n * Bound textures\n * @member {PIXI.BaseTexture[]}\n * @readonly\n */\n this.boundTextures = [];\n /**\n * Current location\n * @member {number}\n * @readonly\n */\n this.currentLocation = -1;\n\n /**\n * List of managed textures\n * @member {PIXI.BaseTexture[]}\n * @readonly\n */\n this.managedTextures = [];\n\n /**\n * Did someone temper with textures state? We'll overwrite them when we need to unbind something.\n * @member {boolean}\n * @private\n */\n this._unknownBoundTextures = false;\n\n /**\n * BaseTexture value that shows that we don't know what is bound\n * @member {PIXI.BaseTexture}\n * @readonly\n */\n this.unknownTexture = new BaseTexture();\n }\n\n if ( System ) TextureSystem.__proto__ = System;\n TextureSystem.prototype = Object.create( System && System.prototype );\n TextureSystem.prototype.constructor = TextureSystem;\n\n /**\n * Sets up the renderer context and necessary buffers.\n */\n TextureSystem.prototype.contextChange = function contextChange ()\n {\n var gl = this.gl = this.renderer.gl;\n\n this.CONTEXT_UID = this.renderer.CONTEXT_UID;\n\n this.webGLVersion = this.renderer.context.webGLVersion;\n\n var maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS);\n\n this.boundTextures.length = maxTextures;\n\n for (var i = 0; i < maxTextures; i++)\n {\n this.boundTextures[i] = null;\n }\n\n // TODO move this.. to a nice make empty textures class..\n this.emptyTextures = {};\n\n var emptyTexture2D = new GLTexture(gl.createTexture());\n\n gl.bindTexture(gl.TEXTURE_2D, emptyTexture2D.texture);\n gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4));\n\n this.emptyTextures[gl.TEXTURE_2D] = emptyTexture2D;\n this.emptyTextures[gl.TEXTURE_CUBE_MAP] = new GLTexture(gl.createTexture());\n\n gl.bindTexture(gl.TEXTURE_CUBE_MAP, this.emptyTextures[gl.TEXTURE_CUBE_MAP].texture);\n\n for (var i$1 = 0; i$1 < 6; i$1++)\n {\n gl.texImage2D(gl.TEXTURE_CUBE_MAP_POSITIVE_X + i$1, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, null);\n }\n\n gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR);\n gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR);\n\n for (var i$2 = 0; i$2 < this.boundTextures.length; i$2++)\n {\n this.bind(null, i$2);\n }\n };\n\n /**\n * Bind a texture to a specific location\n *\n * If you want to unbind something, please use `unbind(texture)` instead of `bind(null, textureLocation)`\n *\n * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind\n * @param {number} [location=0] - Location to bind at\n */\n TextureSystem.prototype.bind = function bind (texture, location)\n {\n if ( location === void 0 ) location = 0;\n\n var ref = this;\n var gl = ref.gl;\n\n if (texture)\n {\n texture = texture.baseTexture || texture;\n\n if (texture.valid)\n {\n texture.touched = this.renderer.textureGC.count;\n\n var glTexture = texture._glTextures[this.CONTEXT_UID] || this.initTexture(texture);\n\n if (this.currentLocation !== location)\n {\n this.currentLocation = location;\n gl.activeTexture(gl.TEXTURE0 + location);\n }\n\n if (this.boundTextures[location] !== texture)\n {\n gl.bindTexture(texture.target, glTexture.texture);\n }\n\n if (glTexture.dirtyId !== texture.dirtyId)\n {\n this.updateTexture(texture);\n }\n\n this.boundTextures[location] = texture;\n }\n }\n else\n {\n if (this.currentLocation !== location)\n {\n this.currentLocation = location;\n gl.activeTexture(gl.TEXTURE0 + location);\n }\n\n gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[gl.TEXTURE_2D].texture);\n this.boundTextures[location] = null;\n }\n };\n\n /**\n * Resets texture location and bound textures\n *\n * Actual `bind(null, i)` calls will be performed at next `unbind()` call\n */\n TextureSystem.prototype.reset = function reset ()\n {\n this._unknownBoundTextures = true;\n this.currentLocation = -1;\n\n for (var i = 0; i < this.boundTextures.length; i++)\n {\n this.boundTextures[i] = this.unknownTexture;\n }\n };\n\n /**\n * Unbind a texture\n * @param {PIXI.Texture|PIXI.BaseTexture} texture - Texture to bind\n */\n TextureSystem.prototype.unbind = function unbind (texture)\n {\n var ref = this;\n var gl = ref.gl;\n var boundTextures = ref.boundTextures;\n\n if (this._unknownBoundTextures)\n {\n this._unknownBoundTextures = false;\n // someone changed webGL state,\n // we have to be sure that our texture does not appear in multi-texture renderer samplers\n for (var i = 0; i < boundTextures.length; i++)\n {\n if (boundTextures[i] === this.unknownTexture)\n {\n this.bind(null, i);\n }\n }\n }\n\n for (var i$1 = 0; i$1 < boundTextures.length; i$1++)\n {\n if (boundTextures[i$1] === texture)\n {\n if (this.currentLocation !== i$1)\n {\n gl.activeTexture(gl.TEXTURE0 + i$1);\n this.currentLocation = i$1;\n }\n\n gl.bindTexture(gl.TEXTURE_2D, this.emptyTextures[texture.target].texture);\n boundTextures[i$1] = null;\n }\n }\n };\n\n /**\n * Initialize a texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to initialize\n */\n TextureSystem.prototype.initTexture = function initTexture (texture)\n {\n var glTexture = new GLTexture(this.gl.createTexture());\n\n // guarantee an update..\n glTexture.dirtyId = -1;\n\n texture._glTextures[this.CONTEXT_UID] = glTexture;\n\n this.managedTextures.push(texture);\n texture.on('dispose', this.destroyTexture, this);\n\n return glTexture;\n };\n\n TextureSystem.prototype.initTextureType = function initTextureType (texture, glTexture)\n {\n glTexture.internalFormat = texture.format;\n glTexture.type = texture.type;\n if (this.webGLVersion !== 2)\n {\n return;\n }\n var gl = this.renderer.gl;\n\n if (texture.type === gl.FLOAT\n && texture.format === gl.RGBA)\n {\n glTexture.internalFormat = gl.RGBA32F;\n }\n // that's WebGL1 HALF_FLOAT_OES\n // we have to convert it to WebGL HALF_FLOAT\n if (texture.type === TYPES.HALF_FLOAT)\n {\n glTexture.type = gl.HALF_FLOAT;\n }\n if (glTexture.type === gl.HALF_FLOAT\n && texture.format === gl.RGBA)\n {\n glTexture.internalFormat = gl.RGBA16F;\n }\n };\n\n /**\n * Update a texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to initialize\n */\n TextureSystem.prototype.updateTexture = function updateTexture (texture)\n {\n var glTexture = texture._glTextures[this.CONTEXT_UID];\n\n if (!glTexture)\n {\n return;\n }\n\n var renderer = this.renderer;\n\n this.initTextureType(texture, glTexture);\n\n if (texture.resource && texture.resource.upload(renderer, texture, glTexture))\n ;\n else\n {\n // default, renderTexture-like logic\n var width = texture.realWidth;\n var height = texture.realHeight;\n var gl = renderer.gl;\n\n if (glTexture.width !== width\n || glTexture.height !== height\n || glTexture.dirtyId < 0)\n {\n glTexture.width = width;\n glTexture.height = height;\n\n gl.texImage2D(texture.target, 0,\n glTexture.internalFormat,\n width,\n height,\n 0,\n texture.format,\n glTexture.type,\n null);\n }\n }\n\n // lets only update what changes..\n if (texture.dirtyStyleId !== glTexture.dirtyStyleId)\n {\n this.updateTextureStyle(texture);\n }\n glTexture.dirtyId = texture.dirtyId;\n };\n\n /**\n * Deletes the texture from WebGL\n *\n * @private\n * @param {PIXI.BaseTexture|PIXI.Texture} texture - the texture to destroy\n * @param {boolean} [skipRemove=false] - Whether to skip removing the texture from the TextureManager.\n */\n TextureSystem.prototype.destroyTexture = function destroyTexture (texture, skipRemove)\n {\n var ref = this;\n var gl = ref.gl;\n\n texture = texture.baseTexture || texture;\n\n if (texture._glTextures[this.CONTEXT_UID])\n {\n this.unbind(texture);\n\n gl.deleteTexture(texture._glTextures[this.CONTEXT_UID].texture);\n texture.off('dispose', this.destroyTexture, this);\n\n delete texture._glTextures[this.CONTEXT_UID];\n\n if (!skipRemove)\n {\n var i = this.managedTextures.indexOf(texture);\n\n if (i !== -1)\n {\n removeItems(this.managedTextures, i, 1);\n }\n }\n }\n };\n\n /**\n * Update texture style such as mipmap flag\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to update\n */\n TextureSystem.prototype.updateTextureStyle = function updateTextureStyle (texture)\n {\n var glTexture = texture._glTextures[this.CONTEXT_UID];\n\n if (!glTexture)\n {\n return;\n }\n\n if ((texture.mipmap === MIPMAP_MODES.POW2 || this.webGLVersion !== 2) && !texture.isPowerOfTwo)\n {\n glTexture.mipmap = 0;\n glTexture.wrapMode = WRAP_MODES.CLAMP;\n }\n else\n {\n glTexture.mipmap = texture.mipmap >= 1;\n glTexture.wrapMode = texture.wrapMode;\n }\n\n if (texture.resource && texture.resource.style(this.renderer, texture, glTexture))\n ;\n else\n {\n this.setStyle(texture, glTexture);\n }\n\n glTexture.dirtyStyleId = texture.dirtyStyleId;\n };\n\n /**\n * Set style for texture\n *\n * @private\n * @param {PIXI.BaseTexture} texture - Texture to update\n * @param {PIXI.GLTexture} glTexture\n */\n TextureSystem.prototype.setStyle = function setStyle (texture, glTexture)\n {\n var gl = this.gl;\n\n if (glTexture.mipmap)\n {\n gl.generateMipmap(texture.target);\n }\n\n gl.texParameteri(texture.target, gl.TEXTURE_WRAP_S, glTexture.wrapMode);\n gl.texParameteri(texture.target, gl.TEXTURE_WRAP_T, glTexture.wrapMode);\n\n if (glTexture.mipmap)\n {\n /* eslint-disable max-len */\n gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR_MIPMAP_LINEAR : gl.NEAREST_MIPMAP_NEAREST);\n /* eslint-disable max-len */\n\n var anisotropicExt = this.renderer.context.extensions.anisotropicFiltering;\n\n if (anisotropicExt && texture.anisotropicLevel > 0 && texture.scaleMode === SCALE_MODES.LINEAR)\n {\n var level = Math.min(texture.anisotropicLevel, gl.getParameter(anisotropicExt.MAX_TEXTURE_MAX_ANISOTROPY_EXT));\n\n gl.texParameterf(texture.target, anisotropicExt.TEXTURE_MAX_ANISOTROPY_EXT, level);\n }\n }\n else\n {\n gl.texParameteri(texture.target, gl.TEXTURE_MIN_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST);\n }\n\n gl.texParameteri(texture.target, gl.TEXTURE_MAG_FILTER, texture.scaleMode ? gl.LINEAR : gl.NEAREST);\n };\n\n return TextureSystem;\n}(System));\n\n/**\n * Systems are individual components to the Renderer pipeline.\n * @namespace PIXI.systems\n */\n\nvar systems = ({\n FilterSystem: FilterSystem,\n BatchSystem: BatchSystem,\n ContextSystem: ContextSystem,\n FramebufferSystem: FramebufferSystem,\n GeometrySystem: GeometrySystem,\n MaskSystem: MaskSystem,\n StencilSystem: StencilSystem,\n ProjectionSystem: ProjectionSystem,\n RenderTextureSystem: RenderTextureSystem,\n ShaderSystem: ShaderSystem,\n StateSystem: StateSystem,\n TextureGCSystem: TextureGCSystem,\n TextureSystem: TextureSystem\n});\n\nvar tempMatrix = new Matrix();\n\n/**\n * The AbstractRenderer is the base for a PixiJS Renderer. It is extended by the {@link PIXI.CanvasRenderer}\n * and {@link PIXI.Renderer} which can be used for rendering a PixiJS scene.\n *\n * @abstract\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI\n */\nvar AbstractRenderer = /*@__PURE__*/(function (EventEmitter) {\n function AbstractRenderer(system, options)\n {\n EventEmitter.call(this);\n\n // Add the default render options\n options = Object.assign({}, settings.RENDER_OPTIONS, options);\n\n // Deprecation notice for renderer roundPixels option\n if (options.roundPixels)\n {\n settings.ROUND_PIXELS = options.roundPixels;\n deprecation('5.0.0', 'Renderer roundPixels option is deprecated, please use PIXI.settings.ROUND_PIXELS', 2);\n }\n\n /**\n * The supplied constructor options.\n *\n * @member {Object}\n * @readOnly\n */\n this.options = options;\n\n /**\n * The type of the renderer.\n *\n * @member {number}\n * @default PIXI.RENDERER_TYPE.UNKNOWN\n * @see PIXI.RENDERER_TYPE\n */\n this.type = RENDERER_TYPE.UNKNOWN;\n\n /**\n * Measurements of the screen. (0, 0, screenWidth, screenHeight).\n *\n * Its safe to use as filterArea or hitArea for the whole stage.\n *\n * @member {PIXI.Rectangle}\n */\n this.screen = new Rectangle(0, 0, options.width, options.height);\n\n /**\n * The canvas element that everything is drawn to.\n *\n * @member {HTMLCanvasElement}\n */\n this.view = options.view || document.createElement('canvas');\n\n /**\n * The resolution / device pixel ratio of the renderer.\n *\n * @member {number}\n * @default 1\n */\n this.resolution = options.resolution || settings.RESOLUTION;\n\n /**\n * Whether the render view is transparent.\n *\n * @member {boolean}\n */\n this.transparent = options.transparent;\n\n /**\n * Whether CSS dimensions of canvas view should be resized to screen dimensions automatically.\n *\n * @member {boolean}\n */\n this.autoDensity = options.autoDensity || options.autoResize || false;\n // autoResize is deprecated, provides fallback support\n\n /**\n * The value of the preserveDrawingBuffer flag affects whether or not the contents of\n * the stencil buffer is retained after rendering.\n *\n * @member {boolean}\n */\n this.preserveDrawingBuffer = options.preserveDrawingBuffer;\n\n /**\n * This sets if the CanvasRenderer will clear the canvas or not before the new render pass.\n * If the scene is NOT transparent PixiJS will use a canvas sized fillRect operation every\n * frame to set the canvas background color. If the scene is transparent PixiJS will use clearRect\n * to clear the canvas every frame. Disable this by setting this to false. For example, if\n * your game has a canvas filling background image you often don't need this set.\n *\n * @member {boolean}\n * @default\n */\n this.clearBeforeRender = options.clearBeforeRender;\n\n /**\n * The background color as a number.\n *\n * @member {number}\n * @protected\n */\n this._backgroundColor = 0x000000;\n\n /**\n * The background color as an [R, G, B] array.\n *\n * @member {number[]}\n * @protected\n */\n this._backgroundColorRgba = [0, 0, 0, 0];\n\n /**\n * The background color as a string.\n *\n * @member {string}\n * @protected\n */\n this._backgroundColorString = '#000000';\n\n this.backgroundColor = options.backgroundColor || this._backgroundColor; // run bg color setter\n\n /**\n * This temporary display object used as the parent of the currently being rendered item.\n *\n * @member {PIXI.DisplayObject}\n * @protected\n */\n this._tempDisplayObjectParent = new Container();\n\n /**\n * The last root object that the renderer tried to render.\n *\n * @member {PIXI.DisplayObject}\n * @protected\n */\n this._lastObjectRendered = this._tempDisplayObjectParent;\n\n /**\n * Collection of plugins.\n * @readonly\n * @member {object}\n */\n this.plugins = {};\n }\n\n if ( EventEmitter ) AbstractRenderer.__proto__ = EventEmitter;\n AbstractRenderer.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n AbstractRenderer.prototype.constructor = AbstractRenderer;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true },backgroundColor: { configurable: true } };\n\n /**\n * Initialize the plugins.\n *\n * @protected\n * @param {object} staticMap - The dictionary of statically saved plugins.\n */\n AbstractRenderer.prototype.initPlugins = function initPlugins (staticMap)\n {\n for (var o in staticMap)\n {\n this.plugins[o] = new (staticMap[o])(this);\n }\n };\n\n /**\n * Same as view.width, actual number of pixels in the canvas by horizontal.\n *\n * @member {number}\n * @readonly\n * @default 800\n */\n prototypeAccessors.width.get = function ()\n {\n return this.view.width;\n };\n\n /**\n * Same as view.height, actual number of pixels in the canvas by vertical.\n *\n * @member {number}\n * @readonly\n * @default 600\n */\n prototypeAccessors.height.get = function ()\n {\n return this.view.height;\n };\n\n /**\n * Resizes the screen and canvas to the specified width and height.\n * Canvas dimensions are multiplied by resolution.\n *\n * @param {number} screenWidth - The new width of the screen.\n * @param {number} screenHeight - The new height of the screen.\n */\n AbstractRenderer.prototype.resize = function resize (screenWidth, screenHeight)\n {\n this.screen.width = screenWidth;\n this.screen.height = screenHeight;\n\n this.view.width = screenWidth * this.resolution;\n this.view.height = screenHeight * this.resolution;\n\n if (this.autoDensity)\n {\n this.view.style.width = screenWidth + \"px\";\n this.view.style.height = screenHeight + \"px\";\n }\n };\n\n /**\n * Useful function that returns a texture of the display object that can then be used to create sprites\n * This can be quite useful if your displayObject is complicated and needs to be reused multiple times.\n *\n * @param {PIXI.DisplayObject} displayObject - The displayObject the object will be generated from.\n * @param {number} scaleMode - Should be one of the scaleMode consts.\n * @param {number} resolution - The resolution / device pixel ratio of the texture being generated.\n * @param {PIXI.Rectangle} [region] - The region of the displayObject, that shall be rendered,\n * if no region is specified, defaults to the local bounds of the displayObject.\n * @return {PIXI.RenderTexture} A texture of the graphics object.\n */\n AbstractRenderer.prototype.generateTexture = function generateTexture (displayObject, scaleMode, resolution, region)\n {\n region = region || displayObject.getLocalBounds();\n\n // minimum texture size is 1x1, 0x0 will throw an error\n if (region.width === 0) { region.width = 1; }\n if (region.height === 0) { region.height = 1; }\n\n var renderTexture = RenderTexture.create(region.width | 0, region.height | 0, scaleMode, resolution);\n\n tempMatrix.tx = -region.x;\n tempMatrix.ty = -region.y;\n\n this.render(displayObject, renderTexture, false, tempMatrix, !!displayObject.parent);\n\n return renderTexture;\n };\n\n /**\n * Removes everything from the renderer and optionally removes the Canvas DOM element.\n *\n * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM.\n */\n AbstractRenderer.prototype.destroy = function destroy (removeView)\n {\n for (var o in this.plugins)\n {\n this.plugins[o].destroy();\n this.plugins[o] = null;\n }\n\n if (removeView && this.view.parentNode)\n {\n this.view.parentNode.removeChild(this.view);\n }\n\n this.plugins = null;\n\n this.type = RENDERER_TYPE.UNKNOWN;\n\n this.view = null;\n\n this.screen = null;\n\n this.resolution = 0;\n\n this.transparent = false;\n\n this.autoDensity = false;\n\n this.blendModes = null;\n\n this.options = null;\n\n this.preserveDrawingBuffer = false;\n this.clearBeforeRender = false;\n\n this._backgroundColor = 0;\n this._backgroundColorRgba = null;\n this._backgroundColorString = null;\n\n this._tempDisplayObjectParent = null;\n this._lastObjectRendered = null;\n };\n\n /**\n * The background color to fill if not transparent\n *\n * @member {number}\n */\n prototypeAccessors.backgroundColor.get = function ()\n {\n return this._backgroundColor;\n };\n\n prototypeAccessors.backgroundColor.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._backgroundColor = value;\n this._backgroundColorString = hex2string(value);\n hex2rgb(value, this._backgroundColorRgba);\n };\n\n Object.defineProperties( AbstractRenderer.prototype, prototypeAccessors );\n\n return AbstractRenderer;\n}(EventEmitter));\n\n/**\n * The Renderer draws the scene and all its content onto a WebGL enabled canvas.\n *\n * This renderer should be used for browsers that support WebGL.\n *\n * This renderer works by automatically managing WebGLBatchesm, so no need for Sprite Batches or Sprite Clouds.\n * Don't forget to add the view to your DOM or you will not see anything!\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.AbstractRenderer\n */\nvar Renderer = /*@__PURE__*/(function (AbstractRenderer) {\n function Renderer(options)\n {\n if ( options === void 0 ) options = {};\n\n AbstractRenderer.call(this, 'WebGL', options);\n\n // the options will have been modified here in the super constructor with pixi's default settings..\n options = this.options;\n\n /**\n * The type of this renderer as a standardized const\n *\n * @member {number}\n * @see PIXI.RENDERER_TYPE\n */\n this.type = RENDERER_TYPE.WEBGL;\n\n /**\n * WebGL context, set by the contextSystem (this.context)\n *\n * @readonly\n * @member {WebGLRenderingContext}\n */\n this.gl = null;\n\n this.CONTEXT_UID = 0;\n\n // TODO legacy!\n\n /**\n * Internal signal instances of **runner**, these\n * are assigned to each system created.\n * @see PIXI.Runner\n * @name PIXI.Renderer#runners\n * @private\n * @type {object}\n * @readonly\n * @property {PIXI.Runner} destroy - Destroy runner\n * @property {PIXI.Runner} contextChange - Context change runner\n * @property {PIXI.Runner} reset - Reset runner\n * @property {PIXI.Runner} update - Update runner\n * @property {PIXI.Runner} postrender - Post-render runner\n * @property {PIXI.Runner} prerender - Pre-render runner\n * @property {PIXI.Runner} resize - Resize runner\n */\n this.runners = {\n destroy: new Runner('destroy'),\n contextChange: new Runner('contextChange', 1),\n reset: new Runner('reset'),\n update: new Runner('update'),\n postrender: new Runner('postrender'),\n prerender: new Runner('prerender'),\n resize: new Runner('resize', 2),\n };\n\n /**\n * Global uniforms\n * @member {PIXI.UniformGroup}\n */\n this.globalUniforms = new UniformGroup({\n projectionMatrix: new Matrix(),\n }, true);\n\n /**\n * Mask system instance\n * @member {PIXI.systems.MaskSystem} mask\n * @memberof PIXI.Renderer#\n * @readonly\n */\n this.addSystem(MaskSystem, 'mask')\n /**\n * Context system instance\n * @member {PIXI.systems.ContextSystem} context\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ContextSystem, 'context')\n /**\n * State system instance\n * @member {PIXI.systems.StateSystem} state\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(StateSystem, 'state')\n /**\n * Shader system instance\n * @member {PIXI.systems.ShaderSystem} shader\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ShaderSystem, 'shader')\n /**\n * Texture system instance\n * @member {PIXI.systems.TextureSystem} texture\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(TextureSystem, 'texture')\n /**\n * Geometry system instance\n * @member {PIXI.systems.GeometrySystem} geometry\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(GeometrySystem, 'geometry')\n /**\n * Framebuffer system instance\n * @member {PIXI.systems.FramebufferSystem} framebuffer\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(FramebufferSystem, 'framebuffer')\n /**\n * Stencil system instance\n * @member {PIXI.systems.StencilSystem} stencil\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(StencilSystem, 'stencil')\n /**\n * Projection system instance\n * @member {PIXI.systems.ProjectionSystem} projection\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(ProjectionSystem, 'projection')\n /**\n * Texture garbage collector system instance\n * @member {PIXI.systems.TextureGCSystem} textureGC\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(TextureGCSystem, 'textureGC')\n /**\n * Filter system instance\n * @member {PIXI.systems.FilterSystem} filter\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(FilterSystem, 'filter')\n /**\n * RenderTexture system instance\n * @member {PIXI.systems.RenderTextureSystem} renderTexture\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(RenderTextureSystem, 'renderTexture')\n\n /**\n * Batch system instance\n * @member {PIXI.systems.BatchSystem} batch\n * @memberof PIXI.Renderer#\n * @readonly\n */\n .addSystem(BatchSystem, 'batch');\n\n this.initPlugins(Renderer.__plugins);\n\n /**\n * The options passed in to create a new WebGL context.\n */\n if (options.context)\n {\n this.context.initFromContext(options.context);\n }\n else\n {\n this.context.initFromOptions({\n alpha: this.transparent,\n antialias: options.antialias,\n premultipliedAlpha: this.transparent && this.transparent !== 'notMultiplied',\n stencil: true,\n preserveDrawingBuffer: options.preserveDrawingBuffer,\n powerPreference: this.options.powerPreference,\n });\n }\n\n /**\n * Flag if we are rendering to the screen vs renderTexture\n * @member {boolean}\n * @readonly\n * @default true\n */\n this.renderingToScreen = true;\n\n sayHello(this.context.webGLVersion === 2 ? 'WebGL 2' : 'WebGL 1');\n\n this.resize(this.options.width, this.options.height);\n }\n\n if ( AbstractRenderer ) Renderer.__proto__ = AbstractRenderer;\n Renderer.prototype = Object.create( AbstractRenderer && AbstractRenderer.prototype );\n Renderer.prototype.constructor = Renderer;\n\n /**\n * Add a new system to the renderer.\n * @param {Function} ClassRef - Class reference\n * @param {string} [name] - Property name for system, if not specified\n * will use a static `name` property on the class itself. This\n * name will be assigned as s property on the Renderer so make\n * sure it doesn't collide with properties on Renderer.\n * @return {PIXI.Renderer} Return instance of renderer\n */\n Renderer.create = function create (options)\n {\n if (isWebGLSupported())\n {\n return new Renderer(options);\n }\n\n throw new Error('WebGL unsupported in this browser, use \"pixi.js-legacy\" for fallback canvas2d support.');\n };\n\n Renderer.prototype.addSystem = function addSystem (ClassRef, name)\n {\n if (!name)\n {\n name = ClassRef.name;\n }\n\n var system = new ClassRef(this);\n\n if (this[name])\n {\n throw new Error((\"Whoops! The name \\\"\" + name + \"\\\" is already in use\"));\n }\n\n this[name] = system;\n\n for (var i in this.runners)\n {\n this.runners[i].add(system);\n }\n\n /**\n * Fired after rendering finishes.\n *\n * @event PIXI.Renderer#postrender\n */\n\n /**\n * Fired before rendering starts.\n *\n * @event PIXI.Renderer#prerender\n */\n\n /**\n * Fired when the WebGL context is set.\n *\n * @event PIXI.Renderer#context\n * @param {WebGLRenderingContext} gl - WebGL context.\n */\n\n return this;\n };\n\n /**\n * Renders the object to its WebGL view\n *\n * @param {PIXI.DisplayObject} displayObject - The object to be rendered.\n * @param {PIXI.RenderTexture} [renderTexture] - The render texture to render to.\n * @param {boolean} [clear=true] - Should the canvas be cleared before the new render.\n * @param {PIXI.Matrix} [transform] - A transform to apply to the render texture before rendering.\n * @param {boolean} [skipUpdateTransform=false] - Should we skip the update transform pass?\n */\n Renderer.prototype.render = function render (displayObject, renderTexture, clear, transform, skipUpdateTransform)\n {\n // can be handy to know!\n this.renderingToScreen = !renderTexture;\n\n this.runners.prerender.run();\n this.emit('prerender');\n\n // apply a transform at a GPU level\n this.projection.transform = transform;\n\n // no point rendering if our context has been blown up!\n if (this.context.isLost)\n {\n return;\n }\n\n if (!renderTexture)\n {\n this._lastObjectRendered = displayObject;\n }\n\n if (!skipUpdateTransform)\n {\n // update the scene graph\n var cacheParent = displayObject.parent;\n\n displayObject.parent = this._tempDisplayObjectParent;\n displayObject.updateTransform();\n displayObject.parent = cacheParent;\n // displayObject.hitArea = //TODO add a temp hit area\n }\n\n this.renderTexture.bind(renderTexture);\n this.batch.currentRenderer.start();\n\n if (clear !== undefined ? clear : this.clearBeforeRender)\n {\n this.renderTexture.clear();\n }\n\n displayObject.render(this);\n\n // apply transform..\n this.batch.currentRenderer.flush();\n\n if (renderTexture)\n {\n renderTexture.baseTexture.update();\n }\n\n this.runners.postrender.run();\n\n // reset transform after render\n this.projection.transform = null;\n\n this.emit('postrender');\n };\n\n /**\n * Resizes the WebGL view to the specified width and height.\n *\n * @param {number} screenWidth - The new width of the screen.\n * @param {number} screenHeight - The new height of the screen.\n */\n Renderer.prototype.resize = function resize (screenWidth, screenHeight)\n {\n AbstractRenderer.prototype.resize.call(this, screenWidth, screenHeight);\n\n this.runners.resize.run(screenWidth, screenHeight);\n };\n\n /**\n * Resets the WebGL state so you can render things however you fancy!\n *\n * @return {PIXI.Renderer} Returns itself.\n */\n Renderer.prototype.reset = function reset ()\n {\n this.runners.reset.run();\n\n return this;\n };\n\n /**\n * Clear the frame buffer\n */\n Renderer.prototype.clear = function clear ()\n {\n this.framebuffer.bind();\n this.framebuffer.clear();\n };\n\n /**\n * Removes everything from the renderer (event listeners, spritebatch, etc...)\n *\n * @param {boolean} [removeView=false] - Removes the Canvas element from the DOM.\n * See: https://github.com/pixijs/pixi.js/issues/2233\n */\n Renderer.prototype.destroy = function destroy (removeView)\n {\n this.runners.destroy.run();\n\n for (var r in this.runners)\n {\n this.runners[r].destroy();\n }\n\n // call base destroy\n AbstractRenderer.prototype.destroy.call(this, removeView);\n\n // TODO nullify all the managers..\n this.gl = null;\n };\n\n /**\n * Collection of installed plugins. These are included by default in PIXI, but can be excluded\n * by creating a custom build. Consult the README for more information about creating custom\n * builds and excluding plugins.\n * @name PIXI.Renderer#plugins\n * @type {object}\n * @readonly\n * @property {PIXI.accessibility.AccessibilityManager} accessibility Support tabbing interactive elements.\n * @property {PIXI.extract.Extract} extract Extract image data from renderer.\n * @property {PIXI.interaction.InteractionManager} interaction Handles mouse, touch and pointer events.\n * @property {PIXI.prepare.Prepare} prepare Pre-render display objects.\n */\n\n /**\n * Adds a plugin to the renderer.\n *\n * @method\n * @param {string} pluginName - The name of the plugin.\n * @param {Function} ctor - The constructor function or class for the plugin.\n */\n Renderer.registerPlugin = function registerPlugin (pluginName, ctor)\n {\n Renderer.__plugins = Renderer.__plugins || {};\n Renderer.__plugins[pluginName] = ctor;\n };\n\n return Renderer;\n}(AbstractRenderer));\n\n/**\n * This helper function will automatically detect which renderer you should be using.\n * WebGL is the preferred renderer as it is a lot faster. If WebGL is not supported by\n * the browser then this function will return a canvas renderer\n *\n * @memberof PIXI\n * @function autoDetectRenderer\n * @param {object} [options] - The optional renderer parameters\n * @param {number} [options.width=800] - the width of the renderers view\n * @param {number} [options.height=600] - the height of the renderers view\n * @param {HTMLCanvasElement} [options.view] - the canvas to use as a view, optional\n * @param {boolean} [options.transparent=false] - If the render view is transparent, default false\n * @param {boolean} [options.autoDensity=false] - Resizes renderer view in CSS pixels to allow for\n * resolutions other than 1\n * @param {boolean} [options.antialias=false] - sets antialias\n * @param {boolean} [options.preserveDrawingBuffer=false] - enables drawing buffer preservation, enable this if you\n * need to call toDataUrl on the webgl context\n * @param {number} [options.backgroundColor=0x000000] - The background color of the rendered area\n * (shown if not transparent).\n * @param {boolean} [options.clearBeforeRender=true] - This sets if the renderer will clear the canvas or\n * not before the new render pass.\n * @param {number} [options.resolution=1] - The resolution / device pixel ratio of the renderer, retina would be 2\n * @param {boolean} [options.forceCanvas=false] - prevents selection of WebGL renderer, even if such is present, this\n * option only is available when using **pixi.js-legacy** or **@pixi/canvas-renderer** modules, otherwise\n * it is ignored.\n * @param {boolean} [options.forceFXAA=false] - forces FXAA antialiasing to be used over native.\n * FXAA is faster, but may not always look as great **webgl only**\n * @param {string} [options.powerPreference] - Parameter passed to webgl context, set to \"high-performance\"\n * for devices with dual graphics card **webgl only**\n * @return {PIXI.Renderer|PIXI.CanvasRenderer} Returns WebGL renderer if available, otherwise CanvasRenderer\n */\nfunction autoDetectRenderer(options)\n{\n return Renderer.create(options);\n}\n\nvar _default = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n vTextureCoord = aTextureCoord;\\n}\";\n\nvar defaultFilter = \"attribute vec2 aVertexPosition;\\n\\nuniform mat3 projectionMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nuniform vec4 inputSize;\\nuniform vec4 outputFrame;\\n\\nvec4 filterVertexPosition( void )\\n{\\n vec2 position = aVertexPosition * max(outputFrame.zw, vec2(0.)) + outputFrame.xy;\\n\\n return vec4((projectionMatrix * vec3(position, 1.0)).xy, 0.0, 1.0);\\n}\\n\\nvec2 filterTextureCoord( void )\\n{\\n return aVertexPosition * (outputFrame.zw * inputSize.zw);\\n}\\n\\nvoid main(void)\\n{\\n gl_Position = filterVertexPosition();\\n vTextureCoord = filterTextureCoord();\\n}\\n\";\n\n/**\n * A Texture that depends on six other resources.\n *\n * @class\n * @extends PIXI.BaseTexture\n * @memberof PIXI\n */\nvar CubeTexture = /*@__PURE__*/(function (BaseTexture) {\n function CubeTexture () {\n BaseTexture.apply(this, arguments);\n }\n\n if ( BaseTexture ) CubeTexture.__proto__ = BaseTexture;\n CubeTexture.prototype = Object.create( BaseTexture && BaseTexture.prototype );\n CubeTexture.prototype.constructor = CubeTexture;\n\n CubeTexture.from = function from (resources, options)\n {\n return new CubeTexture(new CubeResource(resources, options));\n };\n\n return CubeTexture;\n}(BaseTexture));\n\n/**\n * Used by the batcher to draw batches.\n * Each one of these contains all information required to draw a bound geometry.\n *\n * @class\n * @memberof PIXI\n */\nvar BatchDrawCall = function BatchDrawCall()\n{\n this.textures = [];\n this.ids = [];\n this.blend = 0;\n this.textureCount = 0;\n this.start = 0;\n this.size = 0;\n this.type = 4;\n};\n\n/**\n * Flexible wrapper around `ArrayBuffer` that also provides\n * typed array views on demand.\n *\n * @class\n * @memberof PIXI\n */\nvar ViewableBuffer = function ViewableBuffer(size)\n{\n /**\n * Underlying `ArrayBuffer` that holds all the data\n * and is of capacity `size`.\n *\n * @member {ArrayBuffer}\n */\n this.rawBinaryData = new ArrayBuffer(size);\n\n /**\n * View on the raw binary data as a `Uint32Array`.\n *\n * @member {Uint32Array}\n */\n this.uint32View = new Uint32Array(this.rawBinaryData);\n\n /**\n * View on the raw binary data as a `Float32Array`.\n *\n * @member {Float32Array}\n */\n this.float32View = new Float32Array(this.rawBinaryData);\n};\n\nvar prototypeAccessors$5 = { int8View: { configurable: true },uint8View: { configurable: true },int16View: { configurable: true },uint16View: { configurable: true },int32View: { configurable: true } };\n\n/**\n * View on the raw binary data as a `Int8Array`.\n *\n * @member {Int8Array}\n */\nprototypeAccessors$5.int8View.get = function ()\n{\n if (!this._int8View)\n {\n this._int8View = new Int8Array(this.rawBinaryData);\n }\n\n return this._int8View;\n};\n\n/**\n * View on the raw binary data as a `Uint8Array`.\n *\n * @member {Uint8Array}\n */\nprototypeAccessors$5.uint8View.get = function ()\n{\n if (!this._uint8View)\n {\n this._uint8View = new Uint8Array(this.rawBinaryData);\n }\n\n return this._uint8View;\n};\n\n/**\n * View on the raw binary data as a `Int16Array`.\n *\n * @member {Int16Array}\n */\nprototypeAccessors$5.int16View.get = function ()\n{\n if (!this._int16View)\n {\n this._int16View = new Int16Array(this.rawBinaryData);\n }\n\n return this._int16View;\n};\n\n/**\n * View on the raw binary data as a `Uint16Array`.\n *\n * @member {Uint16Array}\n */\nprototypeAccessors$5.uint16View.get = function ()\n{\n if (!this._uint16View)\n {\n this._uint16View = new Uint16Array(this.rawBinaryData);\n }\n\n return this._uint16View;\n};\n\n/**\n * View on the raw binary data as a `Int32Array`.\n *\n * @member {Int32Array}\n */\nprototypeAccessors$5.int32View.get = function ()\n{\n if (!this._int32View)\n {\n this._int32View = new Int32Array(this.rawBinaryData);\n }\n\n return this._int32View;\n};\n\n/**\n * Returns the view of the given type.\n *\n * @param {string} type - One of `int8`, `uint8`, `int16`,\n *`uint16`, `int32`, `uint32`, and `float32`.\n * @return {object} typed array of given type\n */\nViewableBuffer.prototype.view = function view (type)\n{\n return this[(type + \"View\")];\n};\n\n/**\n * Destroys all buffer references. Do not use after calling\n * this.\n */\nViewableBuffer.prototype.destroy = function destroy ()\n{\n this.rawBinaryData = null;\n this._int8View = null;\n this._uint8View = null;\n this._int16View = null;\n this._uint16View = null;\n this._int32View = null;\n this.uint32View = null;\n this.float32View = null;\n};\n\nViewableBuffer.sizeOf = function sizeOf (type)\n{\n switch (type)\n {\n case 'int8':\n case 'uint8':\n return 1;\n case 'int16':\n case 'uint16':\n return 2;\n case 'int32':\n case 'uint32':\n case 'float32':\n return 4;\n default:\n throw new Error((type + \" isn't a valid view type\"));\n }\n};\n\nObject.defineProperties( ViewableBuffer.prototype, prototypeAccessors$5 );\n\n/**\n * Renderer dedicated to drawing and batching sprites.\n *\n * This is the default batch renderer. It buffers objects\n * with texture-based geometries and renders them in\n * batches. It uploads multiple textures to the GPU to\n * reduce to the number of draw calls.\n *\n * @class\n * @protected\n * @memberof PIXI\n * @extends PIXI.ObjectRenderer\n */\nvar AbstractBatchRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function AbstractBatchRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n /**\n * This is used to generate a shader that can\n * color each vertex based on a `aTextureId`\n * attribute that points to an texture in `uSampler`.\n *\n * This enables the objects with different textures\n * to be drawn in the same draw call.\n *\n * You can customize your shader by creating your\n * custom shader generator.\n *\n * @member {PIXI.BatchShaderGenerator}\n * @protected\n */\n this.shaderGenerator = null;\n\n /**\n * The class that represents the geometry of objects\n * that are going to be batched with this.\n *\n * @member {object}\n * @default PIXI.BatchGeometry\n * @protected\n */\n this.geometryClass = null;\n\n /**\n * Size of data being buffered per vertex in the\n * attribute buffers (in floats). By default, the\n * batch-renderer plugin uses 6:\n *\n * | aVertexPosition | 2 |\n * |-----------------|---|\n * | aTextureCoords | 2 |\n * | aColor | 1 |\n * | aTextureId | 1 |\n *\n * @member {number}\n * @readonly\n */\n this.vertexSize = null;\n\n /**\n * The WebGL state in which this renderer will work.\n *\n * @member {PIXI.State}\n * @readonly\n */\n this.state = State.for2d();\n\n /**\n * The number of bufferable objects before a flush\n * occurs automatically.\n *\n * @member {number}\n * @default settings.SPRITE_MAX_TEXTURES\n */\n this.size = 2000 * 4;// settings.SPRITE_BATCH_SIZE, 2000 is a nice balance between mobile/desktop\n\n /**\n * Total count of all vertices used by the currently\n * buffered objects.\n *\n * @member {number}\n * @private\n */\n this._vertexCount = 0;\n\n /**\n * Total count of all indices used by the currently\n * buffered objects.\n *\n * @member {number}\n * @private\n */\n this._indexCount = 0;\n\n /**\n * Buffer of objects that are yet to be rendered.\n *\n * @member {PIXI.DisplayObject[]}\n * @private\n */\n this._bufferedElements = [];\n\n /**\n * Number of elements that are buffered and are\n * waiting to be flushed.\n *\n * @member {number}\n * @private\n */\n this._bufferSize = 0;\n\n /**\n * This shader is generated by `this.shaderGenerator`.\n *\n * It is generated specifically to handle the required\n * number of textures being batched together.\n *\n * @member {PIXI.Shader}\n * @protected\n */\n this._shader = null;\n\n /**\n * Pool of `this.geometryClass` geometry objects\n * that store buffers. They are used to pass data\n * to the shader on each draw call.\n *\n * These are never re-allocated again, unless a\n * context change occurs; however, the pool may\n * be expanded if required.\n *\n * @member {PIXI.Geometry[]}\n * @private\n * @see PIXI.AbstractBatchRenderer.contextChange\n */\n this._packedGeometries = [];\n\n /**\n * Size of `this._packedGeometries`. It can be expanded\n * if more than `this._packedGeometryPoolSize` flushes\n * occur in a single frame.\n *\n * @member {number}\n * @private\n */\n this._packedGeometryPoolSize = 2;\n\n /**\n * A flush may occur multiple times in a single\n * frame. On iOS devices or when\n * `settings.CAN_UPLOAD_SAME_BUFFER` is false, the\n * batch renderer does not upload data to the same\n * `WebGLBuffer` for performance reasons.\n *\n * This is the index into `packedGeometries` that points to\n * geometry holding the most recent buffers.\n *\n * @member {number}\n * @private\n */\n this._flushId = 0;\n\n /**\n * Pool of `BatchDrawCall` objects that `flush` used\n * to create \"batches\" of the objects being rendered.\n *\n * These are never re-allocated again.\n *\n * @member BatchDrawCall[]\n * @private\n */\n this._drawCalls = [];\n\n for (var k = 0; k < this.size / 4; k++)\n { // initialize the draw-calls pool to max size.\n this._drawCalls[k] = new BatchDrawCall();\n }\n\n /**\n * Pool of `ViewableBuffer` objects that are sorted in\n * order of increasing size. The flush method uses\n * the buffer with the least size above the amount\n * it requires. These are used for passing attributes.\n *\n * The first buffer has a size of 8; each subsequent\n * buffer has double capacity of its previous.\n *\n * @member {PIXI.ViewableBuffer}\n * @private\n * @see PIXI.AbstractBatchRenderer#getAttributeBuffer\n */\n this._aBuffers = {};\n\n /**\n * Pool of `Uint16Array` objects that are sorted in\n * order of increasing size. The flush method uses\n * the buffer with the least size above the amount\n * it requires. These are used for passing indices.\n *\n * The first buffer has a size of 12; each subsequent\n * buffer has double capacity of its previous.\n *\n * @member {Uint16Array[]}\n * @private\n * @see PIXI.AbstractBatchRenderer#getIndexBuffer\n */\n this._iBuffers = {};\n\n /**\n * Maximum number of textures that can be uploaded to\n * the GPU under the current context. It is initialized\n * properly in `this.contextChange`.\n *\n * @member {number}\n * @see PIXI.AbstractBatchRenderer#contextChange\n * @readonly\n */\n this.MAX_TEXTURES = 1;\n\n this.renderer.on('prerender', this.onPrerender, this);\n renderer.runners.contextChange.add(this);\n }\n\n if ( ObjectRenderer ) AbstractBatchRenderer.__proto__ = ObjectRenderer;\n AbstractBatchRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n AbstractBatchRenderer.prototype.constructor = AbstractBatchRenderer;\n\n /**\n * Handles the `contextChange` signal.\n *\n * It calculates `this.MAX_TEXTURES` and allocating the\n * packed-geometry object pool.\n */\n AbstractBatchRenderer.prototype.contextChange = function contextChange ()\n {\n var gl = this.renderer.gl;\n\n if (settings.PREFER_ENV === ENV.WEBGL_LEGACY)\n {\n this.MAX_TEXTURES = 1;\n }\n else\n {\n // step 1: first check max textures the GPU can handle.\n this.MAX_TEXTURES = Math.min(\n gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS),\n settings.SPRITE_MAX_TEXTURES);\n\n // step 2: check the maximum number of if statements the shader can have too..\n this.MAX_TEXTURES = checkMaxIfStatementsInShader(\n this.MAX_TEXTURES, gl);\n }\n\n this._shader = this.shaderGenerator.generateShader(this.MAX_TEXTURES);\n\n // we use the second shader as the first one depending on your browser\n // may omit aTextureId as it is not used by the shader so is optimized out.\n for (var i = 0; i < this._packedGeometryPoolSize; i++)\n {\n /* eslint-disable max-len */\n this._packedGeometries[i] = new (this.geometryClass)();\n }\n };\n\n /**\n * Handles the `prerender` signal.\n *\n * It ensures that flushes start from the first geometry\n * object again.\n */\n AbstractBatchRenderer.prototype.onPrerender = function onPrerender ()\n {\n this._flushId = 0;\n };\n\n /**\n * Buffers the \"batchable\" object. It need not be rendered\n * immediately.\n *\n * @param {PIXI.Sprite} sprite - the sprite to render when\n * using this spritebatch\n */\n AbstractBatchRenderer.prototype.render = function render (element)\n {\n if (!element._texture.valid)\n {\n return;\n }\n\n if (this._vertexCount + (element.vertexData.length / 2) > this.size)\n {\n this.flush();\n }\n\n this._vertexCount += element.vertexData.length / 2;\n this._indexCount += element.indices.length;\n this._bufferedElements[this._bufferSize++] = element;\n };\n\n /**\n * Renders the content _now_ and empties the current batch.\n */\n AbstractBatchRenderer.prototype.flush = function flush ()\n {\n if (this._vertexCount === 0)\n {\n return;\n }\n\n var attributeBuffer = this.getAttributeBuffer(this._vertexCount);\n var indexBuffer = this.getIndexBuffer(this._indexCount);\n var gl = this.renderer.gl;\n\n var ref = this;\n var elements = ref._bufferedElements;\n var drawCalls = ref._drawCalls;\n var MAX_TEXTURES = ref.MAX_TEXTURES;\n var packedGeometries = ref._packedGeometries;\n var vertexSize = ref.vertexSize;\n\n var touch = this.renderer.textureGC.count;\n\n var index = 0;\n var _indexCount = 0;\n\n var nextTexture;\n var currentTexture;\n var textureCount = 0;\n\n var currentGroup = drawCalls[0];\n var groupCount = 0;\n\n var blendMode = -1;// blend-mode of previous element/sprite/object!\n\n currentGroup.textureCount = 0;\n currentGroup.start = 0;\n currentGroup.blend = blendMode;\n\n var TICK = ++BaseTexture._globalBatch;\n var i;\n\n for (i = 0; i < this._bufferSize; ++i)\n {\n var sprite = elements[i];\n\n elements[i] = null;\n nextTexture = sprite._texture.baseTexture;\n\n var spriteBlendMode = premultiplyBlendMode[\n nextTexture.premultiplyAlpha ? 1 : 0][sprite.blendMode];\n\n if (blendMode !== spriteBlendMode)\n {\n blendMode = spriteBlendMode;\n\n // force the batch to break!\n currentTexture = null;\n textureCount = MAX_TEXTURES;\n TICK++;\n }\n\n if (currentTexture !== nextTexture)\n {\n currentTexture = nextTexture;\n\n if (nextTexture._batchEnabled !== TICK)\n {\n if (textureCount === MAX_TEXTURES)\n {\n TICK++;\n\n textureCount = 0;\n\n currentGroup.size = _indexCount - currentGroup.start;\n\n currentGroup = drawCalls[groupCount++];\n currentGroup.textureCount = 0;\n currentGroup.blend = blendMode;\n currentGroup.start = _indexCount;\n }\n\n nextTexture.touched = touch;\n nextTexture._batchEnabled = TICK;\n nextTexture._id = textureCount;\n\n currentGroup.textures[currentGroup.textureCount++] = nextTexture;\n textureCount++;\n }\n }\n\n this.packInterleavedGeometry(sprite, attributeBuffer,\n indexBuffer, index, _indexCount);\n\n // push a graphics..\n index += (sprite.vertexData.length / 2) * vertexSize;\n _indexCount += sprite.indices.length;\n }\n\n BaseTexture._globalBatch = TICK;\n currentGroup.size = _indexCount - currentGroup.start;\n\n if (!settings.CAN_UPLOAD_SAME_BUFFER)\n { /* Usually on iOS devices, where the browser doesn't\n like uploads to the same buffer in a single frame. */\n if (this._packedGeometryPoolSize <= this._flushId)\n {\n this._packedGeometryPoolSize++;\n packedGeometries[this._flushId] = new (this.geometryClass)();\n }\n\n packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0);\n packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0);\n\n this.renderer.geometry.bind(packedGeometries[this._flushId]);\n this.renderer.geometry.updateBuffers();\n this._flushId++;\n }\n else\n {\n // lets use the faster option, always use buffer number 0\n packedGeometries[this._flushId]._buffer.update(attributeBuffer.rawBinaryData, 0);\n packedGeometries[this._flushId]._indexBuffer.update(indexBuffer, 0);\n\n this.renderer.geometry.updateBuffers();\n }\n\n var textureSystem = this.renderer.texture;\n var stateSystem = this.renderer.state;\n\n // Upload textures and do the draw calls\n for (i = 0; i < groupCount; i++)\n {\n var group = drawCalls[i];\n var groupTextureCount = group.textureCount;\n\n for (var j = 0; j < groupTextureCount; j++)\n {\n textureSystem.bind(group.textures[j], j);\n group.textures[j] = null;\n }\n\n stateSystem.setBlendMode(group.blend);\n gl.drawElements(group.type, group.size, gl.UNSIGNED_SHORT, group.start * 2);\n }\n\n // reset elements for the next flush\n this._bufferSize = 0;\n this._vertexCount = 0;\n this._indexCount = 0;\n };\n\n /**\n * Starts a new sprite batch.\n */\n AbstractBatchRenderer.prototype.start = function start ()\n {\n this.renderer.state.set(this.state);\n\n this.renderer.shader.bind(this._shader);\n\n if (settings.CAN_UPLOAD_SAME_BUFFER)\n {\n // bind buffer #0, we don't need others\n this.renderer.geometry.bind(this._packedGeometries[this._flushId]);\n }\n };\n\n /**\n * Stops and flushes the current batch.\n */\n AbstractBatchRenderer.prototype.stop = function stop ()\n {\n this.flush();\n };\n\n /**\n * Destroys this `AbstractBatchRenderer`. It cannot be used again.\n */\n AbstractBatchRenderer.prototype.destroy = function destroy ()\n {\n for (var i = 0; i < this._packedGeometryPoolSize; i++)\n {\n if (this._packedGeometries[i])\n {\n this._packedGeometries[i].destroy();\n }\n }\n\n this.renderer.off('prerender', this.onPrerender, this);\n\n this._aBuffers = null;\n this._iBuffers = null;\n this._packedGeometries = null;\n this._drawCalls = null;\n\n if (this._shader)\n {\n this._shader.destroy();\n this._shader = null;\n }\n\n ObjectRenderer.prototype.destroy.call(this);\n };\n\n /**\n * Fetches an attribute buffer from `this._aBuffers` that\n * can hold atleast `size` floats.\n *\n * @param {number} size - minimum capacity required\n * @return {ViewableBuffer} - buffer than can hold atleast `size` floats\n * @private\n */\n AbstractBatchRenderer.prototype.getAttributeBuffer = function getAttributeBuffer (size)\n {\n // 8 vertices is enough for 2 quads\n var roundedP2 = nextPow2(Math.ceil(size / 8));\n var roundedSizeIndex = log2(roundedP2);\n var roundedSize = roundedP2 * 8;\n\n if (this._aBuffers.length <= roundedSizeIndex)\n {\n this._iBuffers.length = roundedSizeIndex + 1;\n }\n\n var buffer = this._aBuffers[roundedSize];\n\n if (!buffer)\n {\n this._aBuffers[roundedSize] = buffer = new ViewableBuffer(roundedSize * this.vertexSize * 4);\n }\n\n return buffer;\n };\n\n /**\n * Fetches an index buffer from `this._iBuffers` that can\n * has atleast `size` capacity.\n *\n * @param {number} size - minimum required capacity\n * @return {Uint16Array} - buffer that can fit `size`\n * indices.\n * @private\n */\n AbstractBatchRenderer.prototype.getIndexBuffer = function getIndexBuffer (size)\n {\n // 12 indices is enough for 2 quads\n var roundedP2 = nextPow2(Math.ceil(size / 12));\n var roundedSizeIndex = log2(roundedP2);\n var roundedSize = roundedP2 * 12;\n\n if (this._iBuffers.length <= roundedSizeIndex)\n {\n this._iBuffers.length = roundedSizeIndex + 1;\n }\n\n var buffer = this._iBuffers[roundedSizeIndex];\n\n if (!buffer)\n {\n this._iBuffers[roundedSizeIndex] = buffer = new Uint16Array(roundedSize);\n }\n\n return buffer;\n };\n\n /**\n * Takes the four batching parameters of `element`, interleaves\n * and pushes them into the batching attribute/index buffers given.\n *\n * It uses these properties: `vertexData` `uvs`, `textureId` and\n * `indicies`. It also uses the \"tint\" of the base-texture, if\n * present.\n *\n * @param {PIXI.Sprite} element - element being rendered\n * @param {PIXI.ViewableBuffer} attributeBuffer - attribute buffer.\n * @param {Uint16Array} indexBuffer - index buffer\n * @param {number} aIndex - number of floats already in the attribute buffer\n * @param {number} iIndex - number of indices already in `indexBuffer`\n */\n AbstractBatchRenderer.prototype.packInterleavedGeometry = function packInterleavedGeometry (element, attributeBuffer, indexBuffer, aIndex, iIndex)\n {\n var uint32View = attributeBuffer.uint32View;\n var float32View = attributeBuffer.float32View;\n\n var packedVertices = aIndex / this.vertexSize;\n var uvs = element.uvs;\n var indicies = element.indices;\n var vertexData = element.vertexData;\n var textureId = element._texture.baseTexture._id;\n\n var alpha = Math.min(element.worldAlpha, 1.0);\n var argb = (alpha < 1.0\n && element._texture.baseTexture.premultiplyAlpha)\n ? premultiplyTint(element._tintRGB, alpha)\n : element._tintRGB + (alpha * 255 << 24);\n\n // lets not worry about tint! for now..\n for (var i = 0; i < vertexData.length; i += 2)\n {\n float32View[aIndex++] = vertexData[i];\n float32View[aIndex++] = vertexData[i + 1];\n float32View[aIndex++] = uvs[i];\n float32View[aIndex++] = uvs[i + 1];\n uint32View[aIndex++] = argb;\n float32View[aIndex++] = textureId;\n }\n\n for (var i$1 = 0; i$1 < indicies.length; i$1++)\n {\n indexBuffer[iIndex++] = packedVertices + indicies[i$1];\n }\n };\n\n return AbstractBatchRenderer;\n}(ObjectRenderer));\n\n/**\n * Helper that generates batching multi-texture shader. Use it with your new BatchRenderer\n *\n * @class\n * @memberof PIXI\n */\nvar BatchShaderGenerator = function BatchShaderGenerator(vertexSrc, fragTemplate)\n{\n /**\n * Reference to the vertex shader source.\n *\n * @member {string}\n */\n this.vertexSrc = vertexSrc;\n\n /**\n * Reference to the fragement shader template. Must contain \"%count%\" and \"%forloop%\".\n *\n * @member {string}\n */\n this.fragTemplate = fragTemplate;\n\n this.programCache = {};\n this.defaultGroupCache = {};\n\n if (fragTemplate.indexOf('%count%') < 0)\n {\n throw new Error('Fragment template must contain \"%count%\".');\n }\n\n if (fragTemplate.indexOf('%forloop%') < 0)\n {\n throw new Error('Fragment template must contain \"%forloop%\".');\n }\n};\n\nBatchShaderGenerator.prototype.generateShader = function generateShader (maxTextures)\n{\n if (!this.programCache[maxTextures])\n {\n var sampleValues = new Int32Array(maxTextures);\n\n for (var i = 0; i < maxTextures; i++)\n {\n sampleValues[i] = i;\n }\n\n this.defaultGroupCache[maxTextures] = UniformGroup.from({ uSamplers: sampleValues }, true);\n\n var fragmentSrc = this.fragTemplate;\n\n fragmentSrc = fragmentSrc.replace(/%count%/gi, (\"\" + maxTextures));\n fragmentSrc = fragmentSrc.replace(/%forloop%/gi, this.generateSampleSrc(maxTextures));\n\n this.programCache[maxTextures] = new Program(this.vertexSrc, fragmentSrc);\n }\n\n var uniforms = {\n tint: new Float32Array([1, 1, 1, 1]),\n translationMatrix: new Matrix(),\n default: this.defaultGroupCache[maxTextures],\n };\n\n return new Shader(this.programCache[maxTextures], uniforms);\n};\n\nBatchShaderGenerator.prototype.generateSampleSrc = function generateSampleSrc (maxTextures)\n{\n var src = '';\n\n src += '\\n';\n src += '\\n';\n\n for (var i = 0; i < maxTextures; i++)\n {\n if (i > 0)\n {\n src += '\\nelse ';\n }\n\n if (i < maxTextures - 1)\n {\n src += \"if(vTextureId < \" + i + \".5)\";\n }\n\n src += '\\n{';\n src += \"\\n\\tcolor = texture2D(uSamplers[\" + i + \"], vTextureCoord);\";\n src += '\\n}';\n }\n\n src += '\\n';\n src += '\\n';\n\n return src;\n};\n\n/**\n * Geometry used to batch standard PIXI content (e.g. Mesh, Sprite, Graphics objects).\n *\n * @class\n * @memberof PIXI\n */\nvar BatchGeometry = /*@__PURE__*/(function (Geometry) {\n function BatchGeometry(_static)\n {\n if ( _static === void 0 ) _static = false;\n\n Geometry.call(this);\n\n /**\n * Buffer used for position, color, texture IDs\n *\n * @member {PIXI.Buffer}\n * @protected\n */\n this._buffer = new Buffer(null, _static, false);\n\n /**\n * Index buffer data\n *\n * @member {PIXI.Buffer}\n * @protected\n */\n this._indexBuffer = new Buffer(null, _static, true);\n\n this.addAttribute('aVertexPosition', this._buffer, 2, false, TYPES.FLOAT)\n .addAttribute('aTextureCoord', this._buffer, 2, false, TYPES.FLOAT)\n .addAttribute('aColor', this._buffer, 4, true, TYPES.UNSIGNED_BYTE)\n .addAttribute('aTextureId', this._buffer, 1, true, TYPES.FLOAT)\n .addIndex(this._indexBuffer);\n }\n\n if ( Geometry ) BatchGeometry.__proto__ = Geometry;\n BatchGeometry.prototype = Object.create( Geometry && Geometry.prototype );\n BatchGeometry.prototype.constructor = BatchGeometry;\n\n return BatchGeometry;\n}(Geometry));\n\nvar defaultVertex$2 = \"precision highp float;\\nattribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\nattribute vec4 aColor;\\nattribute float aTextureId;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform vec4 tint;\\n\\nvarying vec2 vTextureCoord;\\nvarying vec4 vColor;\\nvarying float vTextureId;\\n\\nvoid main(void){\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vTextureId = aTextureId;\\n vColor = aColor * tint;\\n}\\n\";\n\nvar defaultFragment$2 = \"varying vec2 vTextureCoord;\\nvarying vec4 vColor;\\nvarying float vTextureId;\\nuniform sampler2D uSamplers[%count%];\\n\\nvoid main(void){\\n vec4 color;\\n %forloop%\\n gl_FragColor = color * vColor;\\n}\\n\";\n\n/**\n * @class\n * @memberof PIXI\n * @hideconstructor\n */\nvar BatchPluginFactory = function BatchPluginFactory () {};\n\nvar staticAccessors$1 = { defaultVertexSrc: { configurable: true },defaultFragmentTemplate: { configurable: true } };\n\nBatchPluginFactory.create = function create (options)\n{\n var ref = Object.assign({\n vertex: defaultVertex$2,\n fragment: defaultFragment$2,\n geometryClass: BatchGeometry,\n vertexSize: 6,\n }, options);\n var vertex = ref.vertex;\n var fragment = ref.fragment;\n var vertexSize = ref.vertexSize;\n var geometryClass = ref.geometryClass;\n\n return /*@__PURE__*/(function (AbstractBatchRenderer) {\n function BatchPlugin(renderer)\n {\n AbstractBatchRenderer.call(this, renderer);\n\n this.shaderGenerator = new BatchShaderGenerator(vertex, fragment);\n this.geometryClass = geometryClass;\n this.vertexSize = vertexSize;\n }\n\n if ( AbstractBatchRenderer ) BatchPlugin.__proto__ = AbstractBatchRenderer;\n BatchPlugin.prototype = Object.create( AbstractBatchRenderer && AbstractBatchRenderer.prototype );\n BatchPlugin.prototype.constructor = BatchPlugin;\n\n return BatchPlugin;\n }(AbstractBatchRenderer));\n};\n\n/**\n * The default vertex shader source\n *\n * @static\n * @type {string}\n * @constant\n */\nstaticAccessors$1.defaultVertexSrc.get = function ()\n{\n return defaultVertex$2;\n};\n\n/**\n * The default fragment shader source\n *\n * @static\n * @type {string}\n * @constant\n */\nstaticAccessors$1.defaultFragmentTemplate.get = function ()\n{\n return defaultFragment$2;\n};\n\nObject.defineProperties( BatchPluginFactory, staticAccessors$1 );\n\n// Setup the default BatchRenderer plugin, this is what\n// we'll actually export at the root level\nvar BatchRenderer = BatchPluginFactory.create();\n\nexport { AbstractBatchRenderer, AbstractRenderer, Attribute, BaseRenderTexture, BaseTexture, BatchDrawCall, BatchGeometry, BatchPluginFactory, BatchRenderer, BatchShaderGenerator, Buffer, CubeTexture, Filter, Framebuffer, GLProgram, BaseTexture as GLTexture, Geometry, ObjectRenderer, Program, Quad, QuadUv, RenderTexture, RenderTexturePool, Renderer, Shader, SpriteMaskFilter, State, System, Texture, TextureMatrix, TextureUvs, UniformGroup, ViewableBuffer, autoDetectRenderer, checkMaxIfStatementsInShader, defaultFilter as defaultFilterVertex, _default as defaultVertex, index as resources, systems };\n//# sourceMappingURL=core.es.js.map\n","/*!\n * @pixi/extract - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/extract is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { RenderTexture } from '@pixi/core';\nimport { CanvasRenderTarget } from '@pixi/utils';\nimport { Rectangle } from '@pixi/math';\n\nvar TEMP_RECT = new Rectangle();\nvar BYTES_PER_PIXEL = 4;\n\n/**\n * The extract manager provides functionality to export content from the renderers.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.extract`\n *\n * @class\n * @memberof PIXI.extract\n */\nvar Extract = function Extract(renderer)\n{\n this.renderer = renderer;\n /**\n * Collection of methods for extracting data (image, pixels, etc.) from a display object or render texture\n *\n * @member {PIXI.extract.Extract} extract\n * @memberof PIXI.Renderer#\n * @see PIXI.extract.Extract\n */\n renderer.extract = this;\n};\n\n/**\n * Will return a HTML Image of the target\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @param {string} [format] - Image format, e.g. \"image/jpeg\" or \"image/webp\".\n * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92.\n * @return {HTMLImageElement} HTML Image of the target\n */\nExtract.prototype.image = function image (target, format, quality)\n{\n var image = new Image();\n\n image.src = this.base64(target, format, quality);\n\n return image;\n};\n\n/**\n * Will return a a base64 encoded string of this target. It works by calling\n * `Extract.getCanvas` and then running toDataURL on that.\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @param {string} [format] - Image format, e.g. \"image/jpeg\" or \"image/webp\".\n * @param {number} [quality] - JPEG or Webp compression from 0 to 1. Default is 0.92.\n * @return {string} A base64 encoded string of the texture.\n */\nExtract.prototype.base64 = function base64 (target, format, quality)\n{\n return this.canvas(target).toDataURL(format, quality);\n};\n\n/**\n * Creates a Canvas element, renders this target to it and then returns it.\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @return {HTMLCanvasElement} A Canvas element with the texture rendered on.\n */\nExtract.prototype.canvas = function canvas (target)\n{\n var renderer = this.renderer;\n var resolution;\n var frame;\n var flipY = false;\n var renderTexture;\n var generated = false;\n\n if (target)\n {\n if (target instanceof RenderTexture)\n {\n renderTexture = target;\n }\n else\n {\n renderTexture = this.renderer.generateTexture(target);\n generated = true;\n }\n }\n\n if (renderTexture)\n {\n resolution = renderTexture.baseTexture.resolution;\n frame = renderTexture.frame;\n flipY = false;\n renderer.renderTexture.bind(renderTexture);\n }\n else\n {\n resolution = this.renderer.resolution;\n\n flipY = true;\n\n frame = TEMP_RECT;\n frame.width = this.renderer.width;\n frame.height = this.renderer.height;\n\n renderer.renderTexture.bind(null);\n }\n\n var width = Math.floor(frame.width * resolution);\n var height = Math.floor(frame.height * resolution);\n\n var canvasBuffer = new CanvasRenderTarget(width, height, 1);\n\n var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height);\n\n // read pixels to the array\n var gl = renderer.gl;\n\n gl.readPixels(\n frame.x * resolution,\n frame.y * resolution,\n width,\n height,\n gl.RGBA,\n gl.UNSIGNED_BYTE,\n webglPixels\n );\n\n // add the pixels to the canvas\n var canvasData = canvasBuffer.context.getImageData(0, 0, width, height);\n\n Extract.arrayPostDivide(webglPixels, canvasData.data);\n\n canvasBuffer.context.putImageData(canvasData, 0, 0);\n\n // pulling pixels\n if (flipY)\n {\n canvasBuffer.context.scale(1, -1);\n canvasBuffer.context.drawImage(canvasBuffer.canvas, 0, -height);\n }\n\n if (generated)\n {\n renderTexture.destroy(true);\n }\n\n // send the canvas back..\n return canvasBuffer.canvas;\n};\n\n/**\n * Will return a one-dimensional array containing the pixel data of the entire texture in RGBA\n * order, with integer values between 0 and 255 (included).\n *\n * @param {PIXI.DisplayObject|PIXI.RenderTexture} target - A displayObject or renderTexture\n * to convert. If left empty will use the main renderer\n * @return {Uint8Array} One-dimensional array containing the pixel data of the entire texture\n */\nExtract.prototype.pixels = function pixels (target)\n{\n var renderer = this.renderer;\n var resolution;\n var frame;\n var renderTexture;\n var generated = false;\n\n if (target)\n {\n if (target instanceof RenderTexture)\n {\n renderTexture = target;\n }\n else\n {\n renderTexture = this.renderer.generateTexture(target);\n generated = true;\n }\n }\n\n if (renderTexture)\n {\n resolution = renderTexture.baseTexture.resolution;\n frame = renderTexture.frame;\n\n // bind the buffer\n renderer.renderTexture.bind(renderTexture);\n }\n else\n {\n resolution = renderer.resolution;\n\n frame = TEMP_RECT;\n frame.width = renderer.width;\n frame.height = renderer.height;\n\n renderer.renderTexture.bind(null);\n }\n\n var width = frame.width * resolution;\n var height = frame.height * resolution;\n\n var webglPixels = new Uint8Array(BYTES_PER_PIXEL * width * height);\n\n // read pixels to the array\n var gl = renderer.gl;\n\n gl.readPixels(\n frame.x * resolution,\n frame.y * resolution,\n width,\n height,\n gl.RGBA,\n gl.UNSIGNED_BYTE,\n webglPixels\n );\n\n if (generated)\n {\n renderTexture.destroy(true);\n }\n\n Extract.arrayPostDivide(webglPixels, webglPixels);\n\n return webglPixels;\n};\n\n/**\n * Destroys the extract\n *\n */\nExtract.prototype.destroy = function destroy ()\n{\n this.renderer.extract = null;\n this.renderer = null;\n};\n\n/**\n * Takes premultiplied pixel data and produces regular pixel data\n *\n * @private\n * @param pixels {number[] | Uint8Array | Uint8ClampedArray} array of pixel data\n * @param out {number[] | Uint8Array | Uint8ClampedArray} output array\n */\nExtract.arrayPostDivide = function arrayPostDivide (pixels, out)\n{\n for (var i = 0; i < pixels.length; i += 4)\n {\n var alpha = out[i + 3] = pixels[i + 3];\n\n if (alpha !== 0)\n {\n out[i] = Math.round(Math.min(pixels[i] * 255.0 / alpha, 255.0));\n out[i + 1] = Math.round(Math.min(pixels[i + 1] * 255.0 / alpha, 255.0));\n out[i + 2] = Math.round(Math.min(pixels[i + 2] * 255.0 / alpha, 255.0));\n }\n else\n {\n out[i] = pixels[i];\n out[i + 1] = pixels[i + 1];\n out[i + 2] = pixels[i + 2];\n }\n }\n};\n\n/**\n * This namespace provides renderer-specific plugins for exporting content from a renderer.\n * For instance, these plugins can be used for saving an Image, Canvas element or for exporting the raw image data (pixels).\n *\n * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @example\n * // Create a new app (will auto-add extract plugin to renderer)\n * const app = new PIXI.Application();\n *\n * // Draw a red circle\n * const graphics = new PIXI.Graphics()\n * .beginFill(0xFF0000)\n * .drawCircle(0, 0, 50);\n *\n * // Render the graphics as an HTMLImageElement\n * const image = app.renderer.plugins.extract.image(graphics);\n * document.body.appendChild(image);\n * @namespace PIXI.extract\n */\n\nexport { Extract };\n//# sourceMappingURL=extract.es.js.map\n","/*!\n * @pixi/interaction - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/interaction is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Point } from '@pixi/math';\nimport { Ticker, UPDATE_PRIORITY } from '@pixi/ticker';\nimport { DisplayObject } from '@pixi/display';\nimport { EventEmitter } from '@pixi/utils';\n\n/**\n * Holds all information related to an Interaction event\n *\n * @class\n * @memberof PIXI.interaction\n */\nvar InteractionData = function InteractionData()\n{\n /**\n * This point stores the global coords of where the touch/mouse event happened\n *\n * @member {PIXI.Point}\n */\n this.global = new Point();\n\n /**\n * The target Sprite that was interacted with\n *\n * @member {PIXI.Sprite}\n */\n this.target = null;\n\n /**\n * When passed to an event handler, this will be the original DOM Event that was captured\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent\n * @see https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent\n * @member {MouseEvent|TouchEvent|PointerEvent}\n */\n this.originalEvent = null;\n\n /**\n * Unique identifier for this interaction\n *\n * @member {number}\n */\n this.identifier = null;\n\n /**\n * Indicates whether or not the pointer device that created the event is the primary pointer.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary\n * @type {Boolean}\n */\n this.isPrimary = false;\n\n /**\n * Indicates which button was pressed on the mouse or pointer device to trigger the event.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button\n * @type {number}\n */\n this.button = 0;\n\n /**\n * Indicates which buttons are pressed on the mouse or pointer device when the event is triggered.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/buttons\n * @type {number}\n */\n this.buttons = 0;\n\n /**\n * The width of the pointer's contact along the x-axis, measured in CSS pixels.\n * radiusX of TouchEvents will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width\n * @type {number}\n */\n this.width = 0;\n\n /**\n * The height of the pointer's contact along the y-axis, measured in CSS pixels.\n * radiusY of TouchEvents will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height\n * @type {number}\n */\n this.height = 0;\n\n /**\n * The angle, in degrees, between the pointer device and the screen.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX\n * @type {number}\n */\n this.tiltX = 0;\n\n /**\n * The angle, in degrees, between the pointer device and the screen.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY\n * @type {number}\n */\n this.tiltY = 0;\n\n /**\n * The type of pointer that triggered the event.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType\n * @type {string}\n */\n this.pointerType = null;\n\n /**\n * Pressure applied by the pointing device during the event. A Touch's force property\n * will be represented by this value.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure\n * @type {number}\n */\n this.pressure = 0;\n\n /**\n * From TouchEvents (not PointerEvents triggered by touches), the rotationAngle of the Touch.\n * @see https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle\n * @type {number}\n */\n this.rotationAngle = 0;\n\n /**\n * Twist of a stylus pointer.\n * @see https://w3c.github.io/pointerevents/#pointerevent-interface\n * @type {number}\n */\n this.twist = 0;\n\n /**\n * Barrel pressure on a stylus pointer.\n * @see https://w3c.github.io/pointerevents/#pointerevent-interface\n * @type {number}\n */\n this.tangentialPressure = 0;\n};\n\nvar prototypeAccessors = { pointerId: { configurable: true } };\n\n/**\n * The unique identifier of the pointer. It will be the same as `identifier`.\n * @readonly\n * @member {number}\n * @see https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId\n */\nprototypeAccessors.pointerId.get = function ()\n{\n return this.identifier;\n};\n\n/**\n * This will return the local coordinates of the specified displayObject for this InteractionData\n *\n * @param {PIXI.DisplayObject} displayObject - The DisplayObject that you would like the local\n * coords off\n * @param {PIXI.Point} [point] - A Point object in which to store the value, optional (otherwise\n * will create a new point)\n * @param {PIXI.Point} [globalPos] - A Point object containing your custom global coords, optional\n * (otherwise will use the current global coords)\n * @return {PIXI.Point} A point containing the coordinates of the InteractionData position relative\n * to the DisplayObject\n */\nInteractionData.prototype.getLocalPosition = function getLocalPosition (displayObject, point, globalPos)\n{\n return displayObject.worldTransform.applyInverse(globalPos || this.global, point);\n};\n\n/**\n * Copies properties from normalized event data.\n *\n * @param {Touch|MouseEvent|PointerEvent} event The normalized event data\n */\nInteractionData.prototype.copyEvent = function copyEvent (event)\n{\n // isPrimary should only change on touchstart/pointerdown, so we don't want to overwrite\n // it with \"false\" on later events when our shim for it on touch events might not be\n // accurate\n if (event.isPrimary)\n {\n this.isPrimary = true;\n }\n this.button = event.button;\n // event.buttons is not available in all browsers (ie. Safari), but it does have a non-standard\n // event.which property instead, which conveys the same information.\n this.buttons = Number.isInteger(event.buttons) ? event.buttons : event.which;\n this.width = event.width;\n this.height = event.height;\n this.tiltX = event.tiltX;\n this.tiltY = event.tiltY;\n this.pointerType = event.pointerType;\n this.pressure = event.pressure;\n this.rotationAngle = event.rotationAngle;\n this.twist = event.twist || 0;\n this.tangentialPressure = event.tangentialPressure || 0;\n};\n\n/**\n * Resets the data for pooling.\n */\nInteractionData.prototype.reset = function reset ()\n{\n // isPrimary is the only property that we really need to reset - everything else is\n // guaranteed to be overwritten\n this.isPrimary = false;\n};\n\nObject.defineProperties( InteractionData.prototype, prototypeAccessors );\n\n/**\n * Event class that mimics native DOM events.\n *\n * @class\n * @memberof PIXI.interaction\n */\nvar InteractionEvent = function InteractionEvent()\n{\n /**\n * Whether this event will continue propagating in the tree.\n *\n * Remaining events for the {@link stopsPropagatingAt} object\n * will still be dispatched.\n *\n * @member {boolean}\n */\n this.stopped = false;\n\n /**\n * At which object this event stops propagating.\n *\n * @private\n * @member {PIXI.DisplayObject}\n */\n this.stopsPropagatingAt = null;\n\n /**\n * Whether we already reached the element we want to\n * stop propagating at. This is important for delayed events,\n * where we start over deeper in the tree again.\n *\n * @private\n * @member {boolean}\n */\n this.stopPropagationHint = false;\n\n /**\n * The object which caused this event to be dispatched.\n * For listener callback see {@link PIXI.interaction.InteractionEvent.currentTarget}.\n *\n * @member {PIXI.DisplayObject}\n */\n this.target = null;\n\n /**\n * The object whose event listener’s callback is currently being invoked.\n *\n * @member {PIXI.DisplayObject}\n */\n this.currentTarget = null;\n\n /**\n * Type of the event\n *\n * @member {string}\n */\n this.type = null;\n\n /**\n * InteractionData related to this event\n *\n * @member {PIXI.interaction.InteractionData}\n */\n this.data = null;\n};\n\n/**\n * Prevents event from reaching any objects other than the current object.\n *\n */\nInteractionEvent.prototype.stopPropagation = function stopPropagation ()\n{\n this.stopped = true;\n this.stopPropagationHint = true;\n this.stopsPropagatingAt = this.currentTarget;\n};\n\n/**\n * Resets the event.\n */\nInteractionEvent.prototype.reset = function reset ()\n{\n this.stopped = false;\n this.stopsPropagatingAt = null;\n this.stopPropagationHint = false;\n this.currentTarget = null;\n this.target = null;\n};\n\n/**\n * DisplayObjects with the {@link PIXI.interaction.interactiveTarget} mixin use this class to track interactions\n *\n * @class\n * @private\n * @memberof PIXI.interaction\n */\nvar InteractionTrackingData = function InteractionTrackingData(pointerId)\n{\n this._pointerId = pointerId;\n this._flags = InteractionTrackingData.FLAGS.NONE;\n};\n\nvar prototypeAccessors$1 = { pointerId: { configurable: true },flags: { configurable: true },none: { configurable: true },over: { configurable: true },rightDown: { configurable: true },leftDown: { configurable: true } };\n\n/**\n *\n * @private\n * @param {number} flag - The interaction flag to set\n * @param {boolean} yn - Should the flag be set or unset\n */\nInteractionTrackingData.prototype._doSet = function _doSet (flag, yn)\n{\n if (yn)\n {\n this._flags = this._flags | flag;\n }\n else\n {\n this._flags = this._flags & (~flag);\n }\n};\n\n/**\n * Unique pointer id of the event\n *\n * @readonly\n * @private\n * @member {number}\n */\nprototypeAccessors$1.pointerId.get = function ()\n{\n return this._pointerId;\n};\n\n/**\n * State of the tracking data, expressed as bit flags\n *\n * @private\n * @member {number}\n */\nprototypeAccessors$1.flags.get = function ()\n{\n return this._flags;\n};\n\nprototypeAccessors$1.flags.set = function (flags) // eslint-disable-line require-jsdoc\n{\n this._flags = flags;\n};\n\n/**\n * Is the tracked event inactive (not over or down)?\n *\n * @private\n * @member {number}\n */\nprototypeAccessors$1.none.get = function ()\n{\n return this._flags === this.constructor.FLAGS.NONE;\n};\n\n/**\n * Is the tracked event over the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.over.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.OVER) !== 0;\n};\n\nprototypeAccessors$1.over.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.OVER, yn);\n};\n\n/**\n * Did the right mouse button come down in the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.rightDown.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.RIGHT_DOWN) !== 0;\n};\n\nprototypeAccessors$1.rightDown.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.RIGHT_DOWN, yn);\n};\n\n/**\n * Did the left mouse button come down in the DisplayObject?\n *\n * @private\n * @member {boolean}\n */\nprototypeAccessors$1.leftDown.get = function ()\n{\n return (this._flags & this.constructor.FLAGS.LEFT_DOWN) !== 0;\n};\n\nprototypeAccessors$1.leftDown.set = function (yn) // eslint-disable-line require-jsdoc\n{\n this._doSet(this.constructor.FLAGS.LEFT_DOWN, yn);\n};\n\nObject.defineProperties( InteractionTrackingData.prototype, prototypeAccessors$1 );\n\nInteractionTrackingData.FLAGS = Object.freeze({\n NONE: 0,\n OVER: 1 << 0,\n LEFT_DOWN: 1 << 1,\n RIGHT_DOWN: 1 << 2,\n});\n\n/**\n * Interface for classes that represent a hit area.\n *\n * It is implemented by the following classes:\n * - {@link PIXI.Circle}\n * - {@link PIXI.Ellipse}\n * - {@link PIXI.Polygon}\n * - {@link PIXI.RoundedRectangle}\n *\n * @interface IHitArea\n * @memberof PIXI\n */\n\n/**\n * Checks whether the x and y coordinates given are contained within this area\n *\n * @method\n * @name contains\n * @memberof PIXI.IHitArea#\n * @param {number} x - The X coordinate of the point to test\n * @param {number} y - The Y coordinate of the point to test\n * @return {boolean} Whether the x/y coordinates are within this area\n */\n\n/**\n * Default property values of interactive objects\n * Used by {@link PIXI.interaction.InteractionManager} to automatically give all DisplayObjects these properties\n *\n * @private\n * @name interactiveTarget\n * @type {Object}\n * @memberof PIXI.interaction\n * @example\n * function MyObject() {}\n *\n * Object.assign(\n * DisplayObject.prototype,\n * PIXI.interaction.interactiveTarget\n * );\n */\nvar interactiveTarget = {\n\n /**\n * Enable interaction events for the DisplayObject. Touch, pointer and mouse\n * events will not be emitted unless `interactive` is set to `true`.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.on('tap', (event) => {\n * //handle event\n * });\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n interactive: false,\n\n /**\n * Determines if the children to the displayObject can be clicked/touched\n * Setting this to false allows PixiJS to bypass a recursive `hitTest` function\n *\n * @member {boolean}\n * @memberof PIXI.Container#\n */\n interactiveChildren: true,\n\n /**\n * Interaction shape. Children will be hit first, then this shape will be checked.\n * Setting this will cause this shape to be checked in hit tests rather than the displayObject's bounds.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.hitArea = new PIXI.Rectangle(0, 0, 100, 100);\n * @member {PIXI.IHitArea}\n * @memberof PIXI.DisplayObject#\n */\n hitArea: null,\n\n /**\n * If enabled, the mouse cursor use the pointer behavior when hovered over the displayObject if it is interactive\n * Setting this changes the 'cursor' property to `'pointer'`.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.buttonMode = true;\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n get buttonMode()\n {\n return this.cursor === 'pointer';\n },\n set buttonMode(value)\n {\n if (value)\n {\n this.cursor = 'pointer';\n }\n else if (this.cursor === 'pointer')\n {\n this.cursor = null;\n }\n },\n\n /**\n * This defines what cursor mode is used when the mouse cursor\n * is hovered over the displayObject.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.interactive = true;\n * sprite.cursor = 'wait';\n * @see https://developer.mozilla.org/en/docs/Web/CSS/cursor\n *\n * @member {string}\n * @memberof PIXI.DisplayObject#\n */\n cursor: null,\n\n /**\n * Internal set of all active pointers, by identifier\n *\n * @member {Map}\n * @memberof PIXI.DisplayObject#\n * @private\n */\n get trackedPointers()\n {\n if (this._trackedPointers === undefined) { this._trackedPointers = {}; }\n\n return this._trackedPointers;\n },\n\n /**\n * Map of all tracked pointers, by identifier. Use trackedPointers to access.\n *\n * @private\n * @type {Map}\n */\n _trackedPointers: undefined,\n};\n\n// Mix interactiveTarget into DisplayObject.prototype,\n// after deprecation has been handled\nDisplayObject.mixin(interactiveTarget);\n\nvar MOUSE_POINTER_ID = 1;\n\n// helpers for hitTest() - only used inside hitTest()\nvar hitTestEvent = {\n target: null,\n data: {\n global: null,\n },\n};\n\n/**\n * The interaction manager deals with mouse, touch and pointer events.\n *\n * Any DisplayObject can be interactive if its `interactive` property is set to true.\n *\n * This manager also supports multitouch.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.interaction`\n *\n * @class\n * @extends PIXI.utils.EventEmitter\n * @memberof PIXI.interaction\n */\nvar InteractionManager = /*@__PURE__*/(function (EventEmitter) {\n function InteractionManager(renderer, options)\n {\n EventEmitter.call(this);\n\n options = options || {};\n\n /**\n * The renderer this interaction manager works for.\n *\n * @member {PIXI.AbstractRenderer}\n */\n this.renderer = renderer;\n\n /**\n * Should default browser actions automatically be prevented.\n * Does not apply to pointer events for backwards compatibility\n * preventDefault on pointer events stops mouse events from firing\n * Thus, for every pointer event, there will always be either a mouse of touch event alongside it.\n *\n * @member {boolean}\n * @default true\n */\n this.autoPreventDefault = options.autoPreventDefault !== undefined ? options.autoPreventDefault : true;\n\n /**\n * Frequency in milliseconds that the mousemove, mouseover & mouseout interaction events will be checked.\n *\n * @member {number}\n * @default 10\n */\n this.interactionFrequency = options.interactionFrequency || 10;\n\n /**\n * The mouse data\n *\n * @member {PIXI.interaction.InteractionData}\n */\n this.mouse = new InteractionData();\n this.mouse.identifier = MOUSE_POINTER_ID;\n\n // setting the mouse to start off far off screen will mean that mouse over does\n // not get called before we even move the mouse.\n this.mouse.global.set(-999999);\n\n /**\n * Actively tracked InteractionData\n *\n * @private\n * @member {Object.}\n */\n this.activeInteractionData = {};\n this.activeInteractionData[MOUSE_POINTER_ID] = this.mouse;\n\n /**\n * Pool of unused InteractionData\n *\n * @private\n * @member {PIXI.interaction.InteractionData[]}\n */\n this.interactionDataPool = [];\n\n /**\n * An event data object to handle all the event tracking/dispatching\n *\n * @member {object}\n */\n this.eventData = new InteractionEvent();\n\n /**\n * The DOM element to bind to.\n *\n * @protected\n * @member {HTMLElement}\n */\n this.interactionDOMElement = null;\n\n /**\n * This property determines if mousemove and touchmove events are fired only when the cursor\n * is over the object.\n * Setting to true will make things work more in line with how the DOM version works.\n * Setting to false can make things easier for things like dragging\n * It is currently set to false as this is how PixiJS used to work. This will be set to true in\n * future versions of pixi.\n *\n * @member {boolean}\n * @default false\n */\n this.moveWhenInside = false;\n\n /**\n * Have events been attached to the dom element?\n *\n * @protected\n * @member {boolean}\n */\n this.eventsAdded = false;\n\n /**\n * Is the mouse hovering over the renderer?\n *\n * @protected\n * @member {boolean}\n */\n this.mouseOverRenderer = false;\n\n /**\n * Does the device support touch events\n * https://www.w3.org/TR/touch-events/\n *\n * @readonly\n * @member {boolean}\n */\n this.supportsTouchEvents = 'ontouchstart' in window;\n\n /**\n * Does the device support pointer events\n * https://www.w3.org/Submission/pointer-events/\n *\n * @readonly\n * @member {boolean}\n */\n this.supportsPointerEvents = !!window.PointerEvent;\n\n // this will make it so that you don't have to call bind all the time\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerUp = this.onPointerUp.bind(this);\n this.processPointerUp = this.processPointerUp.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerCancel = this.onPointerCancel.bind(this);\n this.processPointerCancel = this.processPointerCancel.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerDown = this.onPointerDown.bind(this);\n this.processPointerDown = this.processPointerDown.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerMove = this.onPointerMove.bind(this);\n this.processPointerMove = this.processPointerMove.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerOut = this.onPointerOut.bind(this);\n this.processPointerOverOut = this.processPointerOverOut.bind(this);\n\n /**\n * @private\n * @member {Function}\n */\n this.onPointerOver = this.onPointerOver.bind(this);\n\n /**\n * Dictionary of how different cursor modes are handled. Strings are handled as CSS cursor\n * values, objects are handled as dictionaries of CSS values for interactionDOMElement,\n * and functions are called instead of changing the CSS.\n * Default CSS cursor values are provided for 'default' and 'pointer' modes.\n * @member {Object.}\n */\n this.cursorStyles = {\n default: 'inherit',\n pointer: 'pointer',\n };\n\n /**\n * The mode of the cursor that is being used.\n * The value of this is a key from the cursorStyles dictionary.\n *\n * @member {string}\n */\n this.currentCursorMode = null;\n\n /**\n * Internal cached let.\n *\n * @private\n * @member {string}\n */\n this.cursor = null;\n\n /**\n * Internal cached let.\n *\n * @private\n * @member {PIXI.Point}\n */\n this._tempPoint = new Point();\n\n /**\n * The current resolution / device pixel ratio.\n *\n * @member {number}\n * @default 1\n */\n this.resolution = 1;\n\n /**\n * Delayed pointer events. Used to guarantee correct ordering of over/out events.\n *\n * @private\n * @member {Array}\n */\n this.delayedEvents = [];\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed on the display\n * object.\n *\n * @event PIXI.interaction.InteractionManager#mousedown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * on the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released over the display\n * object.\n *\n * @event PIXI.interaction.InteractionManager#mouseup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * over the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed and released on\n * the display object.\n *\n * @event PIXI.interaction.InteractionManager#click\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * and released on the display object.\n *\n * @event PIXI.interaction.InteractionManager#rightclick\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released outside the\n * display object that initially registered a\n * [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown}.\n *\n * @event PIXI.interaction.InteractionManager#mouseupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * outside the display object that initially registered a\n * [rightdown]{@link PIXI.interaction.InteractionManager#event:rightdown}.\n *\n * @event PIXI.interaction.InteractionManager#rightupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved while over the display object\n *\n * @event PIXI.interaction.InteractionManager#mousemove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved onto the display object\n *\n * @event PIXI.interaction.InteractionManager#mouseover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved off the display object\n *\n * @event PIXI.interaction.InteractionManager#mouseout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed on the display object.\n *\n * @event PIXI.interaction.InteractionManager#pointerdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released over the display object.\n * Not always fired when some buttons are held down while others are released. In those cases,\n * use [mousedown]{@link PIXI.interaction.InteractionManager#event:mousedown} and\n * [mouseup]{@link PIXI.interaction.InteractionManager#event:mouseup} instead.\n *\n * @event PIXI.interaction.InteractionManager#pointerup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a pointer event\n *\n * @event PIXI.interaction.InteractionManager#pointercancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed and released on the display object.\n *\n * @event PIXI.interaction.InteractionManager#pointertap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released outside the display object that initially\n * registered a [pointerdown]{@link PIXI.interaction.InteractionManager#event:pointerdown}.\n *\n * @event PIXI.interaction.InteractionManager#pointerupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved while over the display object\n *\n * @event PIXI.interaction.InteractionManager#pointermove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved onto the display object\n *\n * @event PIXI.interaction.InteractionManager#pointerover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved off the display object\n *\n * @event PIXI.interaction.InteractionManager#pointerout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed on the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchstart\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed from the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchend\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a touch\n *\n * @event PIXI.interaction.InteractionManager#touchcancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed and removed from the display object.\n *\n * @event PIXI.interaction.InteractionManager#tap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed outside of the display object that initially\n * registered a [touchstart]{@link PIXI.interaction.InteractionManager#event:touchstart}.\n *\n * @event PIXI.interaction.InteractionManager#touchendoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is moved along the display object.\n *\n * @event PIXI.interaction.InteractionManager#touchmove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed on the display.\n * object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mousedown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * on the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released over the display\n * object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * over the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is pressed and released on\n * the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#click\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is pressed\n * and released on the display object. DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightclick\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button (usually a mouse left-button) is released outside the\n * display object that initially registered a\n * [mousedown]{@link PIXI.DisplayObject#event:mousedown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device secondary button (usually a mouse right-button) is released\n * outside the display object that initially registered a\n * [rightdown]{@link PIXI.DisplayObject#event:rightdown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#rightupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved while over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mousemove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved onto the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device (usually a mouse) is moved off the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#mouseout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerdown\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerup\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a pointer event.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointercancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is pressed and released on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointertap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device button is released outside the display object that initially\n * registered a [pointerdown]{@link PIXI.DisplayObject#event:pointerdown}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerupoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved while over the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointermove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved onto the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerover\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a pointer device is moved off the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#pointerout\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed on the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchstart\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed from the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchend\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when the operating system cancels a touch.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchcancel\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is placed and removed from the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#tap\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is removed outside of the display object that initially\n * registered a [touchstart]{@link PIXI.DisplayObject#event:touchstart}.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchendoutside\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n /**\n * Fired when a touch point is moved along the display object.\n * DisplayObject's `interactive` property must be set to `true` to fire event.\n *\n * @event PIXI.DisplayObject#touchmove\n * @param {PIXI.interaction.InteractionEvent} event - Interaction event\n */\n\n this.setTargetElement(this.renderer.view, this.renderer.resolution);\n }\n\n if ( EventEmitter ) InteractionManager.__proto__ = EventEmitter;\n InteractionManager.prototype = Object.create( EventEmitter && EventEmitter.prototype );\n InteractionManager.prototype.constructor = InteractionManager;\n\n /**\n * Hit tests a point against the display tree, returning the first interactive object that is hit.\n *\n * @param {PIXI.Point} globalPoint - A point to hit test with, in global space.\n * @param {PIXI.Container} [root] - The root display object to start from. If omitted, defaults\n * to the last rendered root of the associated renderer.\n * @return {PIXI.DisplayObject} The hit display object, if any.\n */\n InteractionManager.prototype.hitTest = function hitTest (globalPoint, root)\n {\n // clear the target for our hit test\n hitTestEvent.target = null;\n // assign the global point\n hitTestEvent.data.global = globalPoint;\n // ensure safety of the root\n if (!root)\n {\n root = this.renderer._lastObjectRendered;\n }\n // run the hit test\n this.processInteractive(hitTestEvent, root, null, true);\n // return our found object - it'll be null if we didn't hit anything\n\n return hitTestEvent.target;\n };\n\n /**\n * Sets the DOM element which will receive mouse/touch events. This is useful for when you have\n * other DOM elements on top of the renderers Canvas element. With this you'll be bale to delegate\n * another DOM element to receive those events.\n *\n * @param {HTMLElement} element - the DOM element which will receive mouse and touch events.\n * @param {number} [resolution=1] - The resolution / device pixel ratio of the new element (relative to the canvas).\n */\n InteractionManager.prototype.setTargetElement = function setTargetElement (element, resolution)\n {\n if ( resolution === void 0 ) resolution = 1;\n\n this.removeEvents();\n\n this.interactionDOMElement = element;\n\n this.resolution = resolution;\n\n this.addEvents();\n };\n\n /**\n * Registers all the DOM events\n *\n * @private\n */\n InteractionManager.prototype.addEvents = function addEvents ()\n {\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n Ticker.system.add(this.update, this, UPDATE_PRIORITY.INTERACTION);\n\n if (window.navigator.msPointerEnabled)\n {\n this.interactionDOMElement.style['-ms-content-zooming'] = 'none';\n this.interactionDOMElement.style['-ms-touch-action'] = 'none';\n }\n else if (this.supportsPointerEvents)\n {\n this.interactionDOMElement.style['touch-action'] = 'none';\n }\n\n /**\n * These events are added first, so that if pointer events are normalized, they are fired\n * in the same order as non-normalized events. ie. pointer event 1st, mouse / touch 2nd\n */\n if (this.supportsPointerEvents)\n {\n window.document.addEventListener('pointermove', this.onPointerMove, true);\n this.interactionDOMElement.addEventListener('pointerdown', this.onPointerDown, true);\n // pointerout is fired in addition to pointerup (for touch events) and pointercancel\n // we already handle those, so for the purposes of what we do in onPointerOut, we only\n // care about the pointerleave event\n this.interactionDOMElement.addEventListener('pointerleave', this.onPointerOut, true);\n this.interactionDOMElement.addEventListener('pointerover', this.onPointerOver, true);\n window.addEventListener('pointercancel', this.onPointerCancel, true);\n window.addEventListener('pointerup', this.onPointerUp, true);\n }\n else\n {\n window.document.addEventListener('mousemove', this.onPointerMove, true);\n this.interactionDOMElement.addEventListener('mousedown', this.onPointerDown, true);\n this.interactionDOMElement.addEventListener('mouseout', this.onPointerOut, true);\n this.interactionDOMElement.addEventListener('mouseover', this.onPointerOver, true);\n window.addEventListener('mouseup', this.onPointerUp, true);\n }\n\n // always look directly for touch events so that we can provide original data\n // In a future version we should change this to being just a fallback and rely solely on\n // PointerEvents whenever available\n if (this.supportsTouchEvents)\n {\n this.interactionDOMElement.addEventListener('touchstart', this.onPointerDown, true);\n this.interactionDOMElement.addEventListener('touchcancel', this.onPointerCancel, true);\n this.interactionDOMElement.addEventListener('touchend', this.onPointerUp, true);\n this.interactionDOMElement.addEventListener('touchmove', this.onPointerMove, true);\n }\n\n this.eventsAdded = true;\n };\n\n /**\n * Removes all the DOM events that were previously registered\n *\n * @private\n */\n InteractionManager.prototype.removeEvents = function removeEvents ()\n {\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n Ticker.system.remove(this.update, this);\n\n if (window.navigator.msPointerEnabled)\n {\n this.interactionDOMElement.style['-ms-content-zooming'] = '';\n this.interactionDOMElement.style['-ms-touch-action'] = '';\n }\n else if (this.supportsPointerEvents)\n {\n this.interactionDOMElement.style['touch-action'] = '';\n }\n\n if (this.supportsPointerEvents)\n {\n window.document.removeEventListener('pointermove', this.onPointerMove, true);\n this.interactionDOMElement.removeEventListener('pointerdown', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('pointerleave', this.onPointerOut, true);\n this.interactionDOMElement.removeEventListener('pointerover', this.onPointerOver, true);\n window.removeEventListener('pointercancel', this.onPointerCancel, true);\n window.removeEventListener('pointerup', this.onPointerUp, true);\n }\n else\n {\n window.document.removeEventListener('mousemove', this.onPointerMove, true);\n this.interactionDOMElement.removeEventListener('mousedown', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('mouseout', this.onPointerOut, true);\n this.interactionDOMElement.removeEventListener('mouseover', this.onPointerOver, true);\n window.removeEventListener('mouseup', this.onPointerUp, true);\n }\n\n if (this.supportsTouchEvents)\n {\n this.interactionDOMElement.removeEventListener('touchstart', this.onPointerDown, true);\n this.interactionDOMElement.removeEventListener('touchcancel', this.onPointerCancel, true);\n this.interactionDOMElement.removeEventListener('touchend', this.onPointerUp, true);\n this.interactionDOMElement.removeEventListener('touchmove', this.onPointerMove, true);\n }\n\n this.interactionDOMElement = null;\n\n this.eventsAdded = false;\n };\n\n /**\n * Updates the state of interactive objects.\n * Invoked by a throttled ticker update from {@link PIXI.Ticker.system}.\n *\n * @param {number} deltaTime - time delta since last tick\n */\n InteractionManager.prototype.update = function update (deltaTime)\n {\n this._deltaTime += deltaTime;\n\n if (this._deltaTime < this.interactionFrequency)\n {\n return;\n }\n\n this._deltaTime = 0;\n\n if (!this.interactionDOMElement)\n {\n return;\n }\n\n // if the user move the mouse this check has already been done using the mouse move!\n if (this.didMove)\n {\n this.didMove = false;\n\n return;\n }\n\n this.cursor = null;\n\n // Resets the flag as set by a stopPropagation call. This flag is usually reset by a user interaction of any kind,\n // but there was a scenario of a display object moving under a static mouse cursor.\n // In this case, mouseover and mouseevents would not pass the flag test in dispatchEvent function\n for (var k in this.activeInteractionData)\n {\n // eslint-disable-next-line no-prototype-builtins\n if (this.activeInteractionData.hasOwnProperty(k))\n {\n var interactionData = this.activeInteractionData[k];\n\n if (interactionData.originalEvent && interactionData.pointerType !== 'touch')\n {\n var interactionEvent = this.configureInteractionEventForDOMEvent(\n this.eventData,\n interactionData.originalEvent,\n interactionData\n );\n\n this.processInteractive(\n interactionEvent,\n this.renderer._lastObjectRendered,\n this.processPointerOverOut,\n true\n );\n }\n }\n }\n\n this.setCursorMode(this.cursor);\n };\n\n /**\n * Sets the current cursor mode, handling any callbacks or CSS style changes.\n *\n * @param {string} mode - cursor mode, a key from the cursorStyles dictionary\n */\n InteractionManager.prototype.setCursorMode = function setCursorMode (mode)\n {\n mode = mode || 'default';\n // if the mode didn't actually change, bail early\n if (this.currentCursorMode === mode)\n {\n return;\n }\n this.currentCursorMode = mode;\n var style = this.cursorStyles[mode];\n\n // only do things if there is a cursor style for it\n if (style)\n {\n switch (typeof style)\n {\n case 'string':\n // string styles are handled as cursor CSS\n this.interactionDOMElement.style.cursor = style;\n break;\n case 'function':\n // functions are just called, and passed the cursor mode\n style(mode);\n break;\n case 'object':\n // if it is an object, assume that it is a dictionary of CSS styles,\n // apply it to the interactionDOMElement\n Object.assign(this.interactionDOMElement.style, style);\n break;\n }\n }\n else if (typeof mode === 'string' && !Object.prototype.hasOwnProperty.call(this.cursorStyles, mode))\n {\n // if it mode is a string (not a Symbol) and cursorStyles doesn't have any entry\n // for the mode, then assume that the dev wants it to be CSS for the cursor.\n this.interactionDOMElement.style.cursor = mode;\n }\n };\n\n /**\n * Dispatches an event on the display object that was interacted with\n *\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question\n * @param {string} eventString - the name of the event (e.g, mousedown)\n * @param {object} eventData - the event data object\n * @private\n */\n InteractionManager.prototype.dispatchEvent = function dispatchEvent (displayObject, eventString, eventData)\n {\n // Even if the event was stopped, at least dispatch any remaining events\n // for the same display object.\n if (!eventData.stopPropagationHint || displayObject === eventData.stopsPropagatingAt)\n {\n eventData.currentTarget = displayObject;\n eventData.type = eventString;\n\n displayObject.emit(eventString, eventData);\n\n if (displayObject[eventString])\n {\n displayObject[eventString](eventData);\n }\n }\n };\n\n /**\n * Puts a event on a queue to be dispatched later. This is used to guarantee correct\n * ordering of over/out events.\n *\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the display object in question\n * @param {string} eventString - the name of the event (e.g, mousedown)\n * @param {object} eventData - the event data object\n * @private\n */\n InteractionManager.prototype.delayDispatchEvent = function delayDispatchEvent (displayObject, eventString, eventData)\n {\n this.delayedEvents.push({ displayObject: displayObject, eventString: eventString, eventData: eventData });\n };\n\n /**\n * Maps x and y coords from a DOM object and maps them correctly to the PixiJS view. The\n * resulting value is stored in the point. This takes into account the fact that the DOM\n * element could be scaled and positioned anywhere on the screen.\n *\n * @param {PIXI.Point} point - the point that the result will be stored in\n * @param {number} x - the x coord of the position to map\n * @param {number} y - the y coord of the position to map\n */\n InteractionManager.prototype.mapPositionToPoint = function mapPositionToPoint (point, x, y)\n {\n var rect;\n\n // IE 11 fix\n if (!this.interactionDOMElement.parentElement)\n {\n rect = { x: 0, y: 0, width: 0, height: 0 };\n }\n else\n {\n rect = this.interactionDOMElement.getBoundingClientRect();\n }\n\n var resolutionMultiplier = 1.0 / this.resolution;\n\n point.x = ((x - rect.left) * (this.interactionDOMElement.width / rect.width)) * resolutionMultiplier;\n point.y = ((y - rect.top) * (this.interactionDOMElement.height / rect.height)) * resolutionMultiplier;\n };\n\n /**\n * This function is provides a neat way of crawling through the scene graph and running a\n * specified function on all interactive objects it finds. It will also take care of hit\n * testing the interactive objects and passes the hit across in the function.\n *\n * @protected\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - event containing the point that\n * is tested for collision\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - the displayObject\n * that will be hit test (recursively crawls its children)\n * @param {Function} [func] - the function that will be called on each interactive object. The\n * interactionEvent, displayObject and hit will be passed to the function\n * @param {boolean} [hitTest] - this indicates if the objects inside should be hit test against the point\n * @param {boolean} [interactive] - Whether the displayObject is interactive\n * @param {boolean} [skipDelayed] - Whether to process delayed events before returning. This is\n * used to avoid processing them too early during recursive calls.\n * @return {boolean} returns true if the displayObject hit the point\n */\n InteractionManager.prototype.processInteractive = function processInteractive (interactionEvent, displayObject, func, hitTest, interactive, skipDelayed)\n {\n if (!displayObject || !displayObject.visible)\n {\n return false;\n }\n\n var point = interactionEvent.data.global;\n\n // Took a little while to rework this function correctly! But now it is done and nice and optimized! ^_^\n //\n // This function will now loop through all objects and then only hit test the objects it HAS\n // to, not all of them. MUCH faster..\n // An object will be hit test if the following is true:\n //\n // 1: It is interactive.\n // 2: It belongs to a parent that is interactive AND one of the parents children have not already been hit.\n //\n // As another little optimization once an interactive object has been hit we can carry on\n // through the scenegraph, but we know that there will be no more hits! So we can avoid extra hit tests\n // A final optimization is that an object is not hit test directly if a child has already been hit.\n\n interactive = displayObject.interactive || interactive;\n\n var hit = false;\n var interactiveParent = interactive;\n\n // Flag here can set to false if the event is outside the parents hitArea or mask\n var hitTestChildren = true;\n\n // If there is a hitArea, no need to test against anything else if the pointer is not within the hitArea\n // There is also no longer a need to hitTest children.\n if (displayObject.hitArea)\n {\n if (hitTest)\n {\n displayObject.worldTransform.applyInverse(point, this._tempPoint);\n if (!displayObject.hitArea.contains(this._tempPoint.x, this._tempPoint.y))\n {\n hitTest = false;\n hitTestChildren = false;\n }\n else\n {\n hit = true;\n }\n }\n interactiveParent = false;\n }\n // If there is a mask, no need to hitTest against anything else if the pointer is not within the mask.\n // We still want to hitTestChildren, however, to ensure a mouseout can still be generated.\n // https://github.com/pixijs/pixi.js/issues/5135\n else if (displayObject._mask)\n {\n if (hitTest)\n {\n if (!(displayObject._mask.containsPoint && displayObject._mask.containsPoint(point)))\n {\n hitTest = false;\n }\n }\n }\n\n // ** FREE TIP **! If an object is not interactive or has no buttons in it\n // (such as a game scene!) set interactiveChildren to false for that displayObject.\n // This will allow PixiJS to completely ignore and bypass checking the displayObjects children.\n if (hitTestChildren && displayObject.interactiveChildren && displayObject.children)\n {\n var children = displayObject.children;\n\n for (var i = children.length - 1; i >= 0; i--)\n {\n var child = children[i];\n\n // time to get recursive.. if this function will return if something is hit..\n var childHit = this.processInteractive(interactionEvent, child, func, hitTest, interactiveParent, true);\n\n if (childHit)\n {\n // its a good idea to check if a child has lost its parent.\n // this means it has been removed whilst looping so its best\n if (!child.parent)\n {\n continue;\n }\n\n // we no longer need to hit test any more objects in this container as we we\n // now know the parent has been hit\n interactiveParent = false;\n\n // If the child is interactive , that means that the object hit was actually\n // interactive and not just the child of an interactive object.\n // This means we no longer need to hit test anything else. We still need to run\n // through all objects, but we don't need to perform any hit tests.\n\n if (childHit)\n {\n if (interactionEvent.target)\n {\n hitTest = false;\n }\n hit = true;\n }\n }\n }\n }\n\n // no point running this if the item is not interactive or does not have an interactive parent.\n if (interactive)\n {\n // if we are hit testing (as in we have no hit any objects yet)\n // We also don't need to worry about hit testing if once of the displayObjects children\n // has already been hit - but only if it was interactive, otherwise we need to keep\n // looking for an interactive child, just in case we hit one\n if (hitTest && !interactionEvent.target)\n {\n // already tested against hitArea if it is defined\n if (!displayObject.hitArea && displayObject.containsPoint)\n {\n if (displayObject.containsPoint(point))\n {\n hit = true;\n }\n }\n }\n\n if (displayObject.interactive)\n {\n if (hit && !interactionEvent.target)\n {\n interactionEvent.target = displayObject;\n }\n\n if (func)\n {\n func(interactionEvent, displayObject, !!hit);\n }\n }\n }\n\n var delayedEvents = this.delayedEvents;\n\n if (delayedEvents.length && !skipDelayed)\n {\n // Reset the propagation hint, because we start deeper in the tree again.\n interactionEvent.stopPropagationHint = false;\n\n var delayedLen = delayedEvents.length;\n\n this.delayedEvents = [];\n\n for (var i$1 = 0; i$1 < delayedLen; i$1++)\n {\n var ref = delayedEvents[i$1];\n var displayObject$1 = ref.displayObject;\n var eventString = ref.eventString;\n var eventData = ref.eventData;\n\n // When we reach the object we wanted to stop propagating at,\n // set the propagation hint.\n if (eventData.stopsPropagatingAt === displayObject$1)\n {\n eventData.stopPropagationHint = true;\n }\n\n this.dispatchEvent(displayObject$1, eventString, eventData);\n }\n }\n\n return hit;\n };\n\n /**\n * Is called when the pointer button is pressed down on the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being pressed down\n */\n InteractionManager.prototype.onPointerDown = function onPointerDown (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n /**\n * No need to prevent default on natural pointer events, as there are no side effects\n * Normalized events, however, may have the double mousedown/touchstart issue on the native android browser,\n * so still need to be prevented.\n */\n\n // Guaranteed that there will be at least one event in events, and all events must have the same pointer type\n\n if (this.autoPreventDefault && events[0].isNormalized)\n {\n var cancelable = originalEvent.cancelable || !('cancelable' in originalEvent);\n\n if (cancelable)\n {\n originalEvent.preventDefault();\n }\n }\n\n var eventLen = events.length;\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerDown, true);\n\n this.emit('pointerdown', interactionEvent);\n if (event.pointerType === 'touch')\n {\n this.emit('touchstart', interactionEvent);\n }\n // emit a mouse event for \"pen\" pointers, the way a browser would emit a fallback event\n else if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n var isRightButton = event.button === 2;\n\n this.emit(isRightButton ? 'rightdown' : 'mousedown', this.eventData);\n }\n }\n };\n\n /**\n * Processes the result of the pointer down check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerDown = function processPointerDown (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n var id = interactionEvent.data.identifier;\n\n if (hit)\n {\n if (!displayObject.trackedPointers[id])\n {\n displayObject.trackedPointers[id] = new InteractionTrackingData(id);\n }\n this.dispatchEvent(displayObject, 'pointerdown', interactionEvent);\n\n if (data.pointerType === 'touch')\n {\n this.dispatchEvent(displayObject, 'touchstart', interactionEvent);\n }\n else if (data.pointerType === 'mouse' || data.pointerType === 'pen')\n {\n var isRightButton = data.button === 2;\n\n if (isRightButton)\n {\n displayObject.trackedPointers[id].rightDown = true;\n }\n else\n {\n displayObject.trackedPointers[id].leftDown = true;\n }\n\n this.dispatchEvent(displayObject, isRightButton ? 'rightdown' : 'mousedown', interactionEvent);\n }\n }\n };\n\n /**\n * Is called when the pointer button is released on the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being released\n * @param {boolean} cancelled - true if the pointer is cancelled\n * @param {Function} func - Function passed to {@link processInteractive}\n */\n InteractionManager.prototype.onPointerComplete = function onPointerComplete (originalEvent, cancelled, func)\n {\n var events = this.normalizeToPointerData(originalEvent);\n\n var eventLen = events.length;\n\n // if the event wasn't targeting our canvas, then consider it to be pointerupoutside\n // in all cases (unless it was a pointercancel)\n var eventAppend = originalEvent.target !== this.interactionDOMElement ? 'outside' : '';\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n // perform hit testing for events targeting our canvas or cancel events\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, func, cancelled || !eventAppend);\n\n this.emit(cancelled ? 'pointercancel' : (\"pointerup\" + eventAppend), interactionEvent);\n\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n var isRightButton = event.button === 2;\n\n this.emit(isRightButton ? (\"rightup\" + eventAppend) : (\"mouseup\" + eventAppend), interactionEvent);\n }\n else if (event.pointerType === 'touch')\n {\n this.emit(cancelled ? 'touchcancel' : (\"touchend\" + eventAppend), interactionEvent);\n this.releaseInteractionDataForPointerId(event.pointerId, interactionData);\n }\n }\n };\n\n /**\n * Is called when the pointer button is cancelled\n *\n * @private\n * @param {PointerEvent} event - The DOM event of a pointer button being released\n */\n InteractionManager.prototype.onPointerCancel = function onPointerCancel (event)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && event.pointerType === 'touch') { return; }\n\n this.onPointerComplete(event, true, this.processPointerCancel);\n };\n\n /**\n * Processes the result of the pointer cancel check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n */\n InteractionManager.prototype.processPointerCancel = function processPointerCancel (interactionEvent, displayObject)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n if (displayObject.trackedPointers[id] !== undefined)\n {\n delete displayObject.trackedPointers[id];\n this.dispatchEvent(displayObject, 'pointercancel', interactionEvent);\n\n if (data.pointerType === 'touch')\n {\n this.dispatchEvent(displayObject, 'touchcancel', interactionEvent);\n }\n }\n };\n\n /**\n * Is called when the pointer button is released on the renderer element\n *\n * @private\n * @param {PointerEvent} event - The DOM event of a pointer button being released\n */\n InteractionManager.prototype.onPointerUp = function onPointerUp (event)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && event.pointerType === 'touch') { return; }\n\n this.onPointerComplete(event, false, this.processPointerUp);\n };\n\n /**\n * Processes the result of the pointer up check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerUp = function processPointerUp (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n var trackingData = displayObject.trackedPointers[id];\n\n var isTouch = data.pointerType === 'touch';\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n // need to track mouse down status in the mouse block so that we can emit\n // event in a later block\n var isMouseTap = false;\n\n // Mouse only\n if (isMouse)\n {\n var isRightButton = data.button === 2;\n\n var flags = InteractionTrackingData.FLAGS;\n\n var test = isRightButton ? flags.RIGHT_DOWN : flags.LEFT_DOWN;\n\n var isDown = trackingData !== undefined && (trackingData.flags & test);\n\n if (hit)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightup' : 'mouseup', interactionEvent);\n\n if (isDown)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightclick' : 'click', interactionEvent);\n // because we can confirm that the mousedown happened on this object, flag for later emit of pointertap\n isMouseTap = true;\n }\n }\n else if (isDown)\n {\n this.dispatchEvent(displayObject, isRightButton ? 'rightupoutside' : 'mouseupoutside', interactionEvent);\n }\n // update the down state of the tracking data\n if (trackingData)\n {\n if (isRightButton)\n {\n trackingData.rightDown = false;\n }\n else\n {\n trackingData.leftDown = false;\n }\n }\n }\n\n // Pointers and Touches, and Mouse\n if (hit)\n {\n this.dispatchEvent(displayObject, 'pointerup', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchend', interactionEvent); }\n\n if (trackingData)\n {\n // emit pointertap if not a mouse, or if the mouse block decided it was a tap\n if (!isMouse || isMouseTap)\n {\n this.dispatchEvent(displayObject, 'pointertap', interactionEvent);\n }\n if (isTouch)\n {\n this.dispatchEvent(displayObject, 'tap', interactionEvent);\n // touches are no longer over (if they ever were) when we get the touchend\n // so we should ensure that we don't keep pretending that they are\n trackingData.over = false;\n }\n }\n }\n else if (trackingData)\n {\n this.dispatchEvent(displayObject, 'pointerupoutside', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchendoutside', interactionEvent); }\n }\n // Only remove the tracking data if there is no over/down state still associated with it\n if (trackingData && trackingData.none)\n {\n delete displayObject.trackedPointers[id];\n }\n };\n\n /**\n * Is called when the pointer moves across the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer moving\n */\n InteractionManager.prototype.onPointerMove = function onPointerMove (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n if (events[0].pointerType === 'mouse' || events[0].pointerType === 'pen')\n {\n this.didMove = true;\n\n this.cursor = null;\n }\n\n var eventLen = events.length;\n\n for (var i = 0; i < eventLen; i++)\n {\n var event = events[i];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = originalEvent;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerMove, true);\n\n this.emit('pointermove', interactionEvent);\n if (event.pointerType === 'touch') { this.emit('touchmove', interactionEvent); }\n if (event.pointerType === 'mouse' || event.pointerType === 'pen') { this.emit('mousemove', interactionEvent); }\n }\n\n if (events[0].pointerType === 'mouse')\n {\n this.setCursorMode(this.cursor);\n\n // TODO BUG for parents interactive object (border order issue)\n }\n };\n\n /**\n * Processes the result of the pointer move check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerMove = function processPointerMove (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var isTouch = data.pointerType === 'touch';\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n\n if (isMouse)\n {\n this.processPointerOverOut(interactionEvent, displayObject, hit);\n }\n\n if (!this.moveWhenInside || hit)\n {\n this.dispatchEvent(displayObject, 'pointermove', interactionEvent);\n if (isTouch) { this.dispatchEvent(displayObject, 'touchmove', interactionEvent); }\n if (isMouse) { this.dispatchEvent(displayObject, 'mousemove', interactionEvent); }\n }\n };\n\n /**\n * Is called when the pointer is moved out of the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer being moved out\n */\n InteractionManager.prototype.onPointerOut = function onPointerOut (originalEvent)\n {\n // if we support touch events, then only use those for touch events, not pointer events\n if (this.supportsTouchEvents && originalEvent.pointerType === 'touch') { return; }\n\n var events = this.normalizeToPointerData(originalEvent);\n\n // Only mouse and pointer can call onPointerOut, so events will always be length 1\n var event = events[0];\n\n if (event.pointerType === 'mouse')\n {\n this.mouseOverRenderer = false;\n this.setCursorMode(null);\n }\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = event;\n\n this.processInteractive(interactionEvent, this.renderer._lastObjectRendered, this.processPointerOverOut, false);\n\n this.emit('pointerout', interactionEvent);\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n this.emit('mouseout', interactionEvent);\n }\n else\n {\n // we can get touchleave events after touchend, so we want to make sure we don't\n // introduce memory leaks\n this.releaseInteractionDataForPointerId(interactionData.identifier);\n }\n };\n\n /**\n * Processes the result of the pointer over/out check and dispatches the event if need be\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The interaction event wrapping the DOM event\n * @param {PIXI.Container|PIXI.Sprite|PIXI.TilingSprite} displayObject - The display object that was tested\n * @param {boolean} hit - the result of the hit test on the display object\n */\n InteractionManager.prototype.processPointerOverOut = function processPointerOverOut (interactionEvent, displayObject, hit)\n {\n var data = interactionEvent.data;\n\n var id = interactionEvent.data.identifier;\n\n var isMouse = (data.pointerType === 'mouse' || data.pointerType === 'pen');\n\n var trackingData = displayObject.trackedPointers[id];\n\n // if we just moused over the display object, then we need to track that state\n if (hit && !trackingData)\n {\n trackingData = displayObject.trackedPointers[id] = new InteractionTrackingData(id);\n }\n\n if (trackingData === undefined) { return; }\n\n if (hit && this.mouseOverRenderer)\n {\n if (!trackingData.over)\n {\n trackingData.over = true;\n this.delayDispatchEvent(displayObject, 'pointerover', interactionEvent);\n if (isMouse)\n {\n this.delayDispatchEvent(displayObject, 'mouseover', interactionEvent);\n }\n }\n\n // only change the cursor if it has not already been changed (by something deeper in the\n // display tree)\n if (isMouse && this.cursor === null)\n {\n this.cursor = displayObject.cursor;\n }\n }\n else if (trackingData.over)\n {\n trackingData.over = false;\n this.dispatchEvent(displayObject, 'pointerout', this.eventData);\n if (isMouse)\n {\n this.dispatchEvent(displayObject, 'mouseout', interactionEvent);\n }\n // if there is no mouse down information for the pointer, then it is safe to delete\n if (trackingData.none)\n {\n delete displayObject.trackedPointers[id];\n }\n }\n };\n\n /**\n * Is called when the pointer is moved into the renderer element\n *\n * @private\n * @param {PointerEvent} originalEvent - The DOM event of a pointer button being moved into the renderer view\n */\n InteractionManager.prototype.onPointerOver = function onPointerOver (originalEvent)\n {\n var events = this.normalizeToPointerData(originalEvent);\n\n // Only mouse and pointer can call onPointerOver, so events will always be length 1\n var event = events[0];\n\n var interactionData = this.getInteractionDataForPointerId(event);\n\n var interactionEvent = this.configureInteractionEventForDOMEvent(this.eventData, event, interactionData);\n\n interactionEvent.data.originalEvent = event;\n\n if (event.pointerType === 'mouse')\n {\n this.mouseOverRenderer = true;\n }\n\n this.emit('pointerover', interactionEvent);\n if (event.pointerType === 'mouse' || event.pointerType === 'pen')\n {\n this.emit('mouseover', interactionEvent);\n }\n };\n\n /**\n * Get InteractionData for a given pointerId. Store that data as well\n *\n * @private\n * @param {PointerEvent} event - Normalized pointer event, output from normalizeToPointerData\n * @return {PIXI.interaction.InteractionData} - Interaction data for the given pointer identifier\n */\n InteractionManager.prototype.getInteractionDataForPointerId = function getInteractionDataForPointerId (event)\n {\n var pointerId = event.pointerId;\n\n var interactionData;\n\n if (pointerId === MOUSE_POINTER_ID || event.pointerType === 'mouse')\n {\n interactionData = this.mouse;\n }\n else if (this.activeInteractionData[pointerId])\n {\n interactionData = this.activeInteractionData[pointerId];\n }\n else\n {\n interactionData = this.interactionDataPool.pop() || new InteractionData();\n interactionData.identifier = pointerId;\n this.activeInteractionData[pointerId] = interactionData;\n }\n // copy properties from the event, so that we can make sure that touch/pointer specific\n // data is available\n interactionData.copyEvent(event);\n\n return interactionData;\n };\n\n /**\n * Return unused InteractionData to the pool, for a given pointerId\n *\n * @private\n * @param {number} pointerId - Identifier from a pointer event\n */\n InteractionManager.prototype.releaseInteractionDataForPointerId = function releaseInteractionDataForPointerId (pointerId)\n {\n var interactionData = this.activeInteractionData[pointerId];\n\n if (interactionData)\n {\n delete this.activeInteractionData[pointerId];\n interactionData.reset();\n this.interactionDataPool.push(interactionData);\n }\n };\n\n /**\n * Configure an InteractionEvent to wrap a DOM PointerEvent and InteractionData\n *\n * @private\n * @param {PIXI.interaction.InteractionEvent} interactionEvent - The event to be configured\n * @param {PointerEvent} pointerEvent - The DOM event that will be paired with the InteractionEvent\n * @param {PIXI.interaction.InteractionData} interactionData - The InteractionData that will be paired\n * with the InteractionEvent\n * @return {PIXI.interaction.InteractionEvent} the interaction event that was passed in\n */\n InteractionManager.prototype.configureInteractionEventForDOMEvent = function configureInteractionEventForDOMEvent (interactionEvent, pointerEvent, interactionData)\n {\n interactionEvent.data = interactionData;\n\n this.mapPositionToPoint(interactionData.global, pointerEvent.clientX, pointerEvent.clientY);\n\n // Not really sure why this is happening, but it's how a previous version handled things\n if (pointerEvent.pointerType === 'touch')\n {\n pointerEvent.globalX = interactionData.global.x;\n pointerEvent.globalY = interactionData.global.y;\n }\n\n interactionData.originalEvent = pointerEvent;\n interactionEvent.reset();\n\n return interactionEvent;\n };\n\n /**\n * Ensures that the original event object contains all data that a regular pointer event would have\n *\n * @private\n * @param {TouchEvent|MouseEvent|PointerEvent} event - The original event data from a touch or mouse event\n * @return {PointerEvent[]} An array containing a single normalized pointer event, in the case of a pointer\n * or mouse event, or a multiple normalized pointer events if there are multiple changed touches\n */\n InteractionManager.prototype.normalizeToPointerData = function normalizeToPointerData (event)\n {\n var normalizedEvents = [];\n\n if (this.supportsTouchEvents && event instanceof TouchEvent)\n {\n for (var i = 0, li = event.changedTouches.length; i < li; i++)\n {\n var touch = event.changedTouches[i];\n\n if (typeof touch.button === 'undefined') { touch.button = event.touches.length ? 1 : 0; }\n if (typeof touch.buttons === 'undefined') { touch.buttons = event.touches.length ? 1 : 0; }\n if (typeof touch.isPrimary === 'undefined')\n {\n touch.isPrimary = event.touches.length === 1 && event.type === 'touchstart';\n }\n if (typeof touch.width === 'undefined') { touch.width = touch.radiusX || 1; }\n if (typeof touch.height === 'undefined') { touch.height = touch.radiusY || 1; }\n if (typeof touch.tiltX === 'undefined') { touch.tiltX = 0; }\n if (typeof touch.tiltY === 'undefined') { touch.tiltY = 0; }\n if (typeof touch.pointerType === 'undefined') { touch.pointerType = 'touch'; }\n if (typeof touch.pointerId === 'undefined') { touch.pointerId = touch.identifier || 0; }\n if (typeof touch.pressure === 'undefined') { touch.pressure = touch.force || 0.5; }\n if (typeof touch.twist === 'undefined') { touch.twist = 0; }\n if (typeof touch.tangentialPressure === 'undefined') { touch.tangentialPressure = 0; }\n // TODO: Remove these, as layerX/Y is not a standard, is deprecated, has uneven\n // support, and the fill ins are not quite the same\n // offsetX/Y might be okay, but is not the same as clientX/Y when the canvas's top\n // left is not 0,0 on the page\n if (typeof touch.layerX === 'undefined') { touch.layerX = touch.offsetX = touch.clientX; }\n if (typeof touch.layerY === 'undefined') { touch.layerY = touch.offsetY = touch.clientY; }\n\n // mark the touch as normalized, just so that we know we did it\n touch.isNormalized = true;\n\n normalizedEvents.push(touch);\n }\n }\n // apparently PointerEvent subclasses MouseEvent, so yay\n else if (event instanceof MouseEvent && (!this.supportsPointerEvents || !(event instanceof window.PointerEvent)))\n {\n if (typeof event.isPrimary === 'undefined') { event.isPrimary = true; }\n if (typeof event.width === 'undefined') { event.width = 1; }\n if (typeof event.height === 'undefined') { event.height = 1; }\n if (typeof event.tiltX === 'undefined') { event.tiltX = 0; }\n if (typeof event.tiltY === 'undefined') { event.tiltY = 0; }\n if (typeof event.pointerType === 'undefined') { event.pointerType = 'mouse'; }\n if (typeof event.pointerId === 'undefined') { event.pointerId = MOUSE_POINTER_ID; }\n if (typeof event.pressure === 'undefined') { event.pressure = 0.5; }\n if (typeof event.twist === 'undefined') { event.twist = 0; }\n if (typeof event.tangentialPressure === 'undefined') { event.tangentialPressure = 0; }\n\n // mark the mouse event as normalized, just so that we know we did it\n event.isNormalized = true;\n\n normalizedEvents.push(event);\n }\n else\n {\n normalizedEvents.push(event);\n }\n\n return normalizedEvents;\n };\n\n /**\n * Destroys the interaction manager\n *\n */\n InteractionManager.prototype.destroy = function destroy ()\n {\n this.removeEvents();\n\n this.removeAllListeners();\n\n this.renderer = null;\n\n this.mouse = null;\n\n this.eventData = null;\n\n this.interactionDOMElement = null;\n\n this.onPointerDown = null;\n this.processPointerDown = null;\n\n this.onPointerUp = null;\n this.processPointerUp = null;\n\n this.onPointerCancel = null;\n this.processPointerCancel = null;\n\n this.onPointerMove = null;\n this.processPointerMove = null;\n\n this.onPointerOut = null;\n this.processPointerOverOut = null;\n\n this.onPointerOver = null;\n\n this._tempPoint = null;\n };\n\n return InteractionManager;\n}(EventEmitter));\n\n/**\n * This namespace contains a renderer plugin for handling mouse, pointer, and touch events.\n *\n * Do not instantiate this plugin directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @namespace PIXI.interaction\n */\n\nexport { InteractionData, InteractionEvent, InteractionManager, InteractionTrackingData, interactiveTarget };\n//# sourceMappingURL=interaction.es.js.map\n","/*!\n * @pixi/graphics - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/graphics is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture, BaseTexture, BatchDrawCall, BatchGeometry, UniformGroup, Shader, State } from '@pixi/core';\nimport { SHAPES, Point, PI_2, Polygon, Rectangle, RoundedRectangle, Circle, Ellipse, Matrix } from '@pixi/math';\nimport { earcut, premultiplyTint, hex2rgb } from '@pixi/utils';\nimport { Bounds, Container } from '@pixi/display';\nimport { WRAP_MODES, DRAW_MODES, BLEND_MODES } from '@pixi/constants';\n\n/**\n * Graphics curves resolution settings. If `adaptive` flag is set to `true`,\n * the resolution is calculated based on the curve's length to ensure better visual quality.\n * Adaptive draw works with `bezierCurveTo` and `quadraticCurveTo`.\n *\n * @static\n * @constant\n * @memberof PIXI\n * @name GRAPHICS_CURVES\n * @type {object}\n * @property {boolean} adaptive=false - flag indicating if the resolution should be adaptive\n * @property {number} maxLength=10 - maximal length of a single segment of the curve (if adaptive = false, ignored)\n * @property {number} minSegments=8 - minimal number of segments in the curve (if adaptive = false, ignored)\n * @property {number} maxSegments=2048 - maximal number of segments in the curve (if adaptive = false, ignored)\n */\nvar GRAPHICS_CURVES = {\n adaptive: true,\n maxLength: 10,\n minSegments: 8,\n maxSegments: 2048,\n _segmentsCount: function _segmentsCount(length, defaultSegments)\n {\n if ( defaultSegments === void 0 ) defaultSegments = 20;\n\n if (!this.adaptive)\n {\n return defaultSegments;\n }\n\n var result = Math.ceil(length / this.maxLength);\n\n if (result < this.minSegments)\n {\n result = this.minSegments;\n }\n else if (result > this.maxSegments)\n {\n result = this.maxSegments;\n }\n\n return result;\n },\n};\n\n/**\n * Fill style object for Graphics.\n *\n * @class\n * @memberof PIXI\n */\nvar FillStyle = function FillStyle()\n{\n this.reset();\n};\n\n/**\n * Clones the object\n *\n * @return {PIXI.FillStyle}\n */\nFillStyle.prototype.clone = function clone ()\n{\n var obj = new FillStyle();\n\n obj.color = this.color;\n obj.alpha = this.alpha;\n obj.texture = this.texture;\n obj.matrix = this.matrix;\n obj.visible = this.visible;\n\n return obj;\n};\n\n/**\n * Reset\n */\nFillStyle.prototype.reset = function reset ()\n{\n /**\n * The hex color value used when coloring the Graphics object.\n *\n * @member {number}\n * @default 1\n */\n this.color = 0xFFFFFF;\n\n /**\n * The alpha value used when filling the Graphics object.\n *\n * @member {number}\n * @default 1\n */\n this.alpha = 1;\n\n /**\n * The texture to be used for the fill.\n *\n * @member {string}\n * @default 0\n */\n this.texture = Texture.WHITE;\n\n /**\n * The transform aplpied to the texture.\n *\n * @member {string}\n * @default 0\n */\n this.matrix = null;\n\n /**\n * If the current fill is visible.\n *\n * @member {boolean}\n * @default false\n */\n this.visible = false;\n};\n\n/**\n * Destroy and don't use after this\n */\nFillStyle.prototype.destroy = function destroy ()\n{\n this.texture = null;\n this.matrix = null;\n};\n\n/**\n * A class to contain data useful for Graphics objects\n *\n * @class\n * @memberof PIXI\n */\nvar GraphicsData = function GraphicsData(shape, fillStyle, lineStyle, matrix)\n{\n if ( fillStyle === void 0 ) fillStyle = null;\n if ( lineStyle === void 0 ) lineStyle = null;\n if ( matrix === void 0 ) matrix = null;\n\n /**\n * The shape object to draw.\n * @member {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle}\n */\n this.shape = shape;\n\n /**\n * The style of the line.\n * @member {PIXI.LineStyle}\n */\n this.lineStyle = lineStyle;\n\n /**\n * The style of the fill.\n * @member {PIXI.FillStyle}\n */\n this.fillStyle = fillStyle;\n\n /**\n * The transform matrix.\n * @member {PIXI.Matrix}\n */\n this.matrix = matrix;\n\n /**\n * The type of the shape, see the Const.Shapes file for all the existing types,\n * @member {number}\n */\n this.type = shape.type;\n\n /**\n * The collection of points.\n * @member {number[]}\n */\n this.points = [];\n\n /**\n * The collection of holes.\n * @member {PIXI.GraphicsData[]}\n */\n this.holes = [];\n};\n\n/**\n * Creates a new GraphicsData object with the same values as this one.\n *\n * @return {PIXI.GraphicsData} Cloned GraphicsData object\n */\nGraphicsData.prototype.clone = function clone ()\n{\n return new GraphicsData(\n this.shape,\n this.fillStyle,\n this.lineStyle,\n this.matrix\n );\n};\n\n/**\n * Destroys the Graphics data.\n */\nGraphicsData.prototype.destroy = function destroy ()\n{\n this.shape = null;\n this.holes.length = 0;\n this.holes = null;\n this.points.length = 0;\n this.points = null;\n this.lineStyle = null;\n this.fillStyle = null;\n};\n\n/**\n * Builds a circle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object to draw\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildCircle = {\n\n build: function build(graphicsData)\n {\n // need to convert points to a nice regular data\n var circleData = graphicsData.shape;\n var points = graphicsData.points;\n var x = circleData.x;\n var y = circleData.y;\n var width;\n var height;\n\n points.length = 0;\n\n // TODO - bit hacky??\n if (graphicsData.type === SHAPES.CIRC)\n {\n width = circleData.radius;\n height = circleData.radius;\n }\n else\n {\n width = circleData.width;\n height = circleData.height;\n }\n\n if (width === 0 || height === 0)\n {\n return;\n }\n\n var totalSegs = Math.floor(30 * Math.sqrt(circleData.radius))\n || Math.floor(15 * Math.sqrt(circleData.width + circleData.height));\n\n totalSegs /= 2.3;\n\n var seg = (Math.PI * 2) / totalSegs;\n\n for (var i = 0; i < totalSegs; i++)\n {\n points.push(\n x + (Math.sin(-seg * i) * width),\n y + (Math.cos(-seg * i) * height)\n );\n }\n\n points.push(\n points[0],\n points[1]\n );\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n var vertPos = verts.length / 2;\n var center = vertPos;\n\n verts.push(graphicsData.shape.x, graphicsData.shape.y);\n\n for (var i = 0; i < points.length; i += 2)\n {\n verts.push(points[i], points[i + 1]);\n\n // add some uvs\n indices.push(vertPos++, center, vertPos);\n }\n },\n};\n\n/**\n * Builds a line to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildLine (graphicsData, graphicsGeometry)\n{\n if (graphicsData.lineStyle.native)\n {\n buildNativeLine(graphicsData, graphicsGeometry);\n }\n else\n {\n buildLine$1(graphicsData, graphicsGeometry);\n }\n}\n\n/**\n * Builds a line to draw using the polygon method.\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildLine$1(graphicsData, graphicsGeometry)\n{\n var shape = graphicsData.shape;\n var points = graphicsData.points || shape.points.slice();\n var eps = graphicsGeometry.closePointEps;\n\n if (points.length === 0)\n {\n return;\n }\n // if the line width is an odd number add 0.5 to align to a whole pixel\n // commenting this out fixes #711 and #1620\n // if (graphicsData.lineWidth%2)\n // {\n // for (i = 0; i < points.length; i++)\n // {\n // points[i] += 0.5;\n // }\n // }\n\n var style = graphicsData.lineStyle;\n\n // get first and last point.. figure out the middle!\n var firstPoint = new Point(points[0], points[1]);\n var lastPoint = new Point(points[points.length - 2], points[points.length - 1]);\n var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke;\n var closedPath = Math.abs(firstPoint.x - lastPoint.x) < eps\n && Math.abs(firstPoint.y - lastPoint.y) < eps;\n\n // if the first point is the last point - gonna have issues :)\n if (closedShape)\n {\n // need to clone as we are going to slightly modify the shape..\n points = points.slice();\n\n if (closedPath)\n {\n points.pop();\n points.pop();\n lastPoint.set(points[points.length - 2], points[points.length - 1]);\n }\n\n var midPointX = lastPoint.x + ((firstPoint.x - lastPoint.x) * 0.5);\n var midPointY = lastPoint.y + ((firstPoint.y - lastPoint.y) * 0.5);\n\n points.unshift(midPointX, midPointY);\n points.push(midPointX, midPointY);\n }\n\n var verts = graphicsGeometry.points;\n var length = points.length / 2;\n var indexCount = points.length;\n var indexStart = verts.length / 2;\n\n // DRAW the Line\n var width = style.width / 2;\n\n // sort color\n var p1x = points[0];\n var p1y = points[1];\n var p2x = points[2];\n var p2y = points[3];\n var p3x = 0;\n var p3y = 0;\n\n var perpx = -(p1y - p2y);\n var perpy = p1x - p2x;\n var perp2x = 0;\n var perp2y = 0;\n var perp3x = 0;\n var perp3y = 0;\n\n var dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n var ratio = style.alignment;// 0.5;\n var r1 = (1 - ratio) * 2;\n var r2 = ratio * 2;\n\n // start\n verts.push(\n p1x - (perpx * r1),\n p1y - (perpy * r1));\n\n verts.push(\n p1x + (perpx * r2),\n p1y + (perpy * r2));\n\n for (var i = 1; i < length - 1; ++i)\n {\n p1x = points[(i - 1) * 2];\n p1y = points[((i - 1) * 2) + 1];\n\n p2x = points[i * 2];\n p2y = points[(i * 2) + 1];\n\n p3x = points[(i + 1) * 2];\n p3y = points[((i + 1) * 2) + 1];\n\n perpx = -(p1y - p2y);\n perpy = p1x - p2x;\n\n dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n perp2x = -(p2y - p3y);\n perp2y = p2x - p3x;\n\n dist = Math.sqrt((perp2x * perp2x) + (perp2y * perp2y));\n perp2x /= dist;\n perp2y /= dist;\n perp2x *= width;\n perp2y *= width;\n\n var a1 = (-perpy + p1y) - (-perpy + p2y);\n var b1 = (-perpx + p2x) - (-perpx + p1x);\n var c1 = ((-perpx + p1x) * (-perpy + p2y)) - ((-perpx + p2x) * (-perpy + p1y));\n var a2 = (-perp2y + p3y) - (-perp2y + p2y);\n var b2 = (-perp2x + p2x) - (-perp2x + p3x);\n var c2 = ((-perp2x + p3x) * (-perp2y + p2y)) - ((-perp2x + p2x) * (-perp2y + p3y));\n\n var denom = (a1 * b2) - (a2 * b1);\n\n if (Math.abs(denom) < 0.1)\n {\n denom += 10.1;\n verts.push(\n p2x - (perpx * r1),\n p2y - (perpy * r1));\n\n verts.push(\n p2x + (perpx * r2),\n p2y + (perpy * r2));\n\n continue;\n }\n\n var px = ((b1 * c2) - (b2 * c1)) / denom;\n var py = ((a2 * c1) - (a1 * c2)) / denom;\n var pdist = ((px - p2x) * (px - p2x)) + ((py - p2y) * (py - p2y));\n\n if (pdist > (196 * width * width))\n {\n perp3x = perpx - perp2x;\n perp3y = perpy - perp2y;\n\n dist = Math.sqrt((perp3x * perp3x) + (perp3y * perp3y));\n perp3x /= dist;\n perp3y /= dist;\n perp3x *= width;\n perp3y *= width;\n\n verts.push(p2x - (perp3x * r1), p2y - (perp3y * r1));\n\n verts.push(p2x + (perp3x * r2), p2y + (perp3y * r2));\n\n verts.push(p2x - (perp3x * r2 * r1), p2y - (perp3y * r1));\n\n indexCount++;\n }\n else\n {\n verts.push(p2x + ((px - p2x) * r1), p2y + ((py - p2y) * r1));\n\n verts.push(p2x - ((px - p2x) * r2), p2y - ((py - p2y) * r2));\n }\n }\n\n p1x = points[(length - 2) * 2];\n p1y = points[((length - 2) * 2) + 1];\n\n p2x = points[(length - 1) * 2];\n p2y = points[((length - 1) * 2) + 1];\n\n perpx = -(p1y - p2y);\n perpy = p1x - p2x;\n\n dist = Math.sqrt((perpx * perpx) + (perpy * perpy));\n perpx /= dist;\n perpy /= dist;\n perpx *= width;\n perpy *= width;\n\n verts.push(p2x - (perpx * r1), p2y - (perpy * r1));\n\n verts.push(p2x + (perpx * r2), p2y + (perpy * r2));\n\n var indices = graphicsGeometry.indices;\n\n // indices.push(indexStart);\n\n for (var i$1 = 0; i$1 < indexCount - 2; ++i$1)\n {\n indices.push(indexStart, indexStart + 1, indexStart + 2);\n\n indexStart++;\n }\n}\n\n/**\n * Builds a line to draw using the gl.drawArrays(gl.LINES) method\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.GraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {PIXI.GraphicsGeometry} graphicsGeometry - Geometry where to append output\n */\nfunction buildNativeLine(graphicsData, graphicsGeometry)\n{\n var i = 0;\n\n var shape = graphicsData.shape;\n var points = graphicsData.points || shape.points;\n var closedShape = shape.type !== SHAPES.POLY || shape.closeStroke;\n\n if (points.length === 0) { return; }\n\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n var length = points.length / 2;\n\n var startIndex = verts.length / 2;\n var currentIndex = startIndex;\n\n verts.push(points[0], points[1]);\n\n for (i = 1; i < length; i++)\n {\n verts.push(points[i * 2], points[(i * 2) + 1]);\n indices.push(currentIndex, currentIndex + 1);\n\n currentIndex++;\n }\n\n if (closedShape)\n {\n indices.push(currentIndex, startIndex);\n }\n}\n\n/**\n * Builds a polygon to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildPoly = {\n\n build: function build(graphicsData)\n {\n graphicsData.points = graphicsData.shape.points.slice();\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var holes = graphicsData.holes;\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n if (points.length >= 6)\n {\n var holeArray = [];\n // Process holes..\n\n for (var i = 0; i < holes.length; i++)\n {\n var hole = holes[i];\n\n holeArray.push(points.length / 2);\n points = points.concat(hole.points);\n }\n\n // sort color\n var triangles = earcut(points, holeArray, 2);\n\n if (!triangles)\n {\n return;\n }\n\n var vertPos = verts.length / 2;\n\n for (var i$1 = 0; i$1 < triangles.length; i$1 += 3)\n {\n indices.push(triangles[i$1] + vertPos);\n indices.push(triangles[i$1 + 1] + vertPos);\n indices.push(triangles[i$1 + 2] + vertPos);\n }\n\n for (var i$2 = 0; i$2 < points.length; i$2++)\n {\n verts.push(points[i$2]);\n }\n }\n },\n};\n\n/**\n * Builds a rectangle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildRectangle = {\n\n build: function build(graphicsData)\n {\n // --- //\n // need to convert points to a nice regular data\n //\n var rectData = graphicsData.shape;\n var x = rectData.x;\n var y = rectData.y;\n var width = rectData.width;\n var height = rectData.height;\n\n var points = graphicsData.points;\n\n points.length = 0;\n\n points.push(x, y,\n x + width, y,\n x + width, y + height,\n x, y + height);\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n var verts = graphicsGeometry.points;\n\n var vertPos = verts.length / 2;\n\n verts.push(points[0], points[1],\n points[2], points[3],\n points[6], points[7],\n points[4], points[5]);\n\n graphicsGeometry.indices.push(vertPos, vertPos + 1, vertPos + 2,\n vertPos + 1, vertPos + 2, vertPos + 3);\n },\n};\n\n/**\n * Builds a rounded rectangle to draw\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {PIXI.WebGLGraphicsData} graphicsData - The graphics object containing all the necessary properties\n * @param {object} webGLData - an object containing all the WebGL-specific information to create this shape\n * @param {object} webGLDataNativeLines - an object containing all the WebGL-specific information to create nativeLines\n */\nvar buildRoundedRectangle = {\n\n build: function build(graphicsData)\n {\n var rrectData = graphicsData.shape;\n var points = graphicsData.points;\n var x = rrectData.x;\n var y = rrectData.y;\n var width = rrectData.width;\n var height = rrectData.height;\n\n var radius = rrectData.radius;\n\n points.length = 0;\n\n quadraticBezierCurve(x, y + radius,\n x, y,\n x + radius, y,\n points);\n quadraticBezierCurve(x + width - radius,\n y, x + width, y,\n x + width, y + radius,\n points);\n quadraticBezierCurve(x + width, y + height - radius,\n x + width, y + height,\n x + width - radius, y + height,\n points);\n quadraticBezierCurve(x + radius, y + height,\n x, y + height,\n x, y + height - radius,\n points);\n\n // this tiny number deals with the issue that occurs when points overlap and earcut fails to triangulate the item.\n // TODO - fix this properly, this is not very elegant.. but it works for now.\n },\n\n triangulate: function triangulate(graphicsData, graphicsGeometry)\n {\n var points = graphicsData.points;\n\n var verts = graphicsGeometry.points;\n var indices = graphicsGeometry.indices;\n\n var vecPos = verts.length / 2;\n\n var triangles = earcut(points, null, 2);\n\n for (var i = 0, j = triangles.length; i < j; i += 3)\n {\n indices.push(triangles[i] + vecPos);\n // indices.push(triangles[i] + vecPos);\n indices.push(triangles[i + 1] + vecPos);\n // indices.push(triangles[i + 2] + vecPos);\n indices.push(triangles[i + 2] + vecPos);\n }\n\n for (var i$1 = 0, j$1 = points.length; i$1 < j$1; i$1++)\n {\n verts.push(points[i$1], points[++i$1]);\n }\n },\n};\n\n/**\n * Calculate a single point for a quadratic bezier curve.\n * Utility function used by quadraticBezierCurve.\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {number} n1 - first number\n * @param {number} n2 - second number\n * @param {number} perc - percentage\n * @return {number} the result\n *\n */\nfunction getPt(n1, n2, perc)\n{\n var diff = n2 - n1;\n\n return n1 + (diff * perc);\n}\n\n/**\n * Calculate the points for a quadratic bezier curve. (helper function..)\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @private\n * @param {number} fromX - Origin point x\n * @param {number} fromY - Origin point x\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} [out=[]] - The output array to add points into. If not passed, a new array is created.\n * @return {number[]} an array of points\n */\nfunction quadraticBezierCurve(fromX, fromY, cpX, cpY, toX, toY, out)\n{\n if ( out === void 0 ) out = [];\n\n var n = 20;\n var points = out;\n\n var xa = 0;\n var ya = 0;\n var xb = 0;\n var yb = 0;\n var x = 0;\n var y = 0;\n\n for (var i = 0, j = 0; i <= n; ++i)\n {\n j = i / n;\n\n // The Green Line\n xa = getPt(fromX, cpX, j);\n ya = getPt(fromY, cpY, j);\n xb = getPt(cpX, toX, j);\n yb = getPt(cpY, toY, j);\n\n // The Black Dot\n x = getPt(xa, xb, j);\n y = getPt(ya, yb, j);\n\n points.push(x, y);\n }\n\n return points;\n}\n\nvar BATCH_POOL = [];\nvar DRAW_CALL_POOL = [];\nvar tmpPoint = new Point();\n\n/**\n * Map of fill commands for each shape type.\n *\n * @member {Object}\n * @private\n */\nvar fillCommands = {};\n\nfillCommands[SHAPES.POLY] = buildPoly;\nfillCommands[SHAPES.CIRC] = buildCircle;\nfillCommands[SHAPES.ELIP] = buildCircle;\nfillCommands[SHAPES.RECT] = buildRectangle;\nfillCommands[SHAPES.RREC] = buildRoundedRectangle;\n\n/**\n * A little internal structure to hold interim batch objects.\n *\n * @private\n */\nvar BatchPart = function BatchPart()\n{\n this.style = null;\n this.size = 0;\n this.start = 0;\n this.attribStart = 0;\n this.attribSize = 0;\n};\n\n/**\n * The Graphics class contains methods used to draw primitive shapes such as lines, circles and\n * rectangles to the display, and to color and fill them.\n *\n * GraphicsGeometry is designed to not be continually updating the geometry since it's expensive\n * to re-tesselate using **earcut**. Consider using {@link PIXI.Mesh} for this use-case, it's much faster.\n *\n * @class\n * @extends PIXI.BatchGeometry\n * @memberof PIXI\n */\nvar GraphicsGeometry = /*@__PURE__*/(function (BatchGeometry) {\n function GraphicsGeometry()\n {\n BatchGeometry.call(this);\n\n /**\n * An array of points to draw, 2 numbers per point\n *\n * @member {number[]}\n * @protected\n */\n this.points = [];\n\n /**\n * The collection of colors\n *\n * @member {number[]}\n * @protected\n */\n this.colors = [];\n\n /**\n * The UVs collection\n *\n * @member {number[]}\n * @protected\n */\n this.uvs = [];\n\n /**\n * The indices of the vertices\n *\n * @member {number[]}\n * @protected\n */\n this.indices = [];\n\n /**\n * Reference to the texture IDs.\n *\n * @member {number[]}\n * @protected\n */\n this.textureIds = [];\n\n /**\n * The collection of drawn shapes.\n *\n * @member {PIXI.GraphicsData[]}\n * @protected\n */\n this.graphicsData = [];\n\n /**\n * Used to detect if the graphics object has changed.\n *\n * @member {number}\n * @protected\n */\n this.dirty = 0;\n\n /**\n * Batches need to regenerated if the geometry is updated.\n *\n * @member {number}\n * @protected\n */\n this.batchDirty = -1;\n\n /**\n * Used to check if the cache is dirty.\n *\n * @member {number}\n * @protected\n */\n this.cacheDirty = -1;\n\n /**\n * Used to detect if we cleared the graphicsData.\n *\n * @member {number}\n * @default 0\n * @protected\n */\n this.clearDirty = 0;\n\n /**\n * List of current draw calls drived from the batches.\n *\n * @member {object[]}\n * @protected\n */\n this.drawCalls = [];\n\n /**\n * Intermediate abstract format sent to batch system.\n * Can be converted to drawCalls or to batchable objects.\n *\n * @member {object[]}\n * @protected\n */\n this.batches = [];\n\n /**\n * Index of the last batched shape in the stack of calls.\n *\n * @member {number}\n * @protected\n */\n this.shapeIndex = 0;\n\n /**\n * Cached bounds.\n *\n * @member {PIXI.Bounds}\n * @protected\n */\n this._bounds = new Bounds();\n\n /**\n * The bounds dirty flag.\n *\n * @member {number}\n * @protected\n */\n this.boundsDirty = -1;\n\n /**\n * Padding to add to the bounds.\n *\n * @member {number}\n * @default 0\n */\n this.boundsPadding = 0;\n\n this.batchable = false;\n\n this.indicesUint16 = null;\n\n this.uvsFloat32 = null;\n\n /**\n * Minimal distance between points that are considered different.\n * Affects line tesselation.\n *\n * @member {number}\n */\n this.closePointEps = 1e-4;\n }\n\n if ( BatchGeometry ) GraphicsGeometry.__proto__ = BatchGeometry;\n GraphicsGeometry.prototype = Object.create( BatchGeometry && BatchGeometry.prototype );\n GraphicsGeometry.prototype.constructor = GraphicsGeometry;\n\n var prototypeAccessors = { bounds: { configurable: true } };\n\n /**\n * Get the current bounds of the graphic geometry.\n *\n * @member {PIXI.Bounds}\n * @readonly\n */\n prototypeAccessors.bounds.get = function ()\n {\n if (this.boundsDirty !== this.dirty)\n {\n this.boundsDirty = this.dirty;\n this.calculateBounds();\n }\n\n return this._bounds;\n };\n\n /**\n * Call if you changed graphicsData manually.\n * Empties all batch buffers.\n */\n GraphicsGeometry.prototype.invalidate = function invalidate ()\n {\n this.boundsDirty = -1;\n this.dirty++;\n this.batchDirty++;\n this.shapeIndex = 0;\n\n this.points.length = 0;\n this.colors.length = 0;\n this.uvs.length = 0;\n this.indices.length = 0;\n this.textureIds.length = 0;\n\n for (var i = 0; i < this.drawCalls.length; i++)\n {\n this.drawCalls[i].textures.length = 0;\n DRAW_CALL_POOL.push(this.drawCalls[i]);\n }\n\n this.drawCalls.length = 0;\n\n for (var i$1 = 0; i$1 < this.batches.length; i$1++)\n {\n var batch = this.batches[i$1];\n\n batch.start = 0;\n batch.attribStart = 0;\n batch.style = null;\n BATCH_POOL.push(batch);\n }\n\n this.batches.length = 0;\n };\n\n /**\n * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings.\n *\n * @return {PIXI.GraphicsGeometry} This GraphicsGeometry object. Good for chaining method calls\n */\n GraphicsGeometry.prototype.clear = function clear ()\n {\n if (this.graphicsData.length > 0)\n {\n this.invalidate();\n this.clearDirty++;\n this.graphicsData.length = 0;\n }\n\n return this;\n };\n\n /**\n * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw.\n * @param {PIXI.FillStyle} fillStyle - Defines style of the fill.\n * @param {PIXI.LineStyle} lineStyle - Defines style of the lines.\n * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape.\n * @return {PIXI.GraphicsGeometry} Returns geometry for chaining.\n */\n GraphicsGeometry.prototype.drawShape = function drawShape (shape, fillStyle, lineStyle, matrix)\n {\n var data = new GraphicsData(shape, fillStyle, lineStyle, matrix);\n\n this.graphicsData.push(data);\n this.dirty++;\n\n return this;\n };\n\n /**\n * Draws the given shape to this Graphics object. Can be any of Circle, Rectangle, Ellipse, Line or Polygon.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - The shape object to draw.\n * @param {PIXI.Matrix} matrix - Transform applied to the points of the shape.\n * @return {PIXI.GraphicsGeometry} Returns geometry for chaining.\n */\n GraphicsGeometry.prototype.drawHole = function drawHole (shape, matrix)\n {\n if (!this.graphicsData.length)\n {\n return null;\n }\n\n var data = new GraphicsData(shape, null, null, matrix);\n\n var lastShape = this.graphicsData[this.graphicsData.length - 1];\n\n data.lineStyle = lastShape.lineStyle;\n\n lastShape.holes.push(data);\n\n this.dirty++;\n\n return this;\n };\n\n /**\n * Destroys the Graphics object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n GraphicsGeometry.prototype.destroy = function destroy (options)\n {\n BatchGeometry.prototype.destroy.call(this, options);\n\n // destroy each of the GraphicsData objects\n for (var i = 0; i < this.graphicsData.length; ++i)\n {\n this.graphicsData[i].destroy();\n }\n\n this.points.length = 0;\n this.points = null;\n this.colors.length = 0;\n this.colors = null;\n this.uvs.length = 0;\n this.uvs = null;\n this.indices.length = 0;\n this.indices = null;\n this.indexBuffer.destroy();\n this.indexBuffer = null;\n this.graphicsData.length = 0;\n this.graphicsData = null;\n this.drawCalls.length = 0;\n this.drawCalls = null;\n this.batches.length = 0;\n this.batches = null;\n this._bounds = null;\n };\n\n /**\n * Check to see if a point is contained within this geometry.\n *\n * @param {PIXI.Point} point - Point to check if it's contained.\n * @return {Boolean} `true` if the point is contained within geometry.\n */\n GraphicsGeometry.prototype.containsPoint = function containsPoint (point)\n {\n var graphicsData = this.graphicsData;\n\n for (var i = 0; i < graphicsData.length; ++i)\n {\n var data = graphicsData[i];\n\n if (!data.fillStyle.visible)\n {\n continue;\n }\n\n // only deal with fills..\n if (data.shape)\n {\n if (data.matrix)\n {\n data.matrix.applyInverse(point, tmpPoint);\n }\n else\n {\n tmpPoint.copyFrom(point);\n }\n\n if (data.shape.contains(tmpPoint.x, tmpPoint.y))\n {\n if (data.holes)\n {\n for (var i$1 = 0; i$1 < data.holes.length; i$1++)\n {\n var hole = data.holes[i$1];\n\n if (hole.shape.contains(tmpPoint.x, tmpPoint.y))\n {\n return false;\n }\n }\n }\n\n return true;\n }\n }\n }\n\n return false;\n };\n\n /**\n * Generates intermediate batch data. Either gets converted to drawCalls\n * or used to convert to batch objects directly by the Graphics object.\n */\n GraphicsGeometry.prototype.updateBatches = function updateBatches ()\n {\n if (this.dirty === this.cacheDirty) { return; }\n if (this.graphicsData.length === 0)\n {\n this.batchable = true;\n\n return;\n }\n\n if (this.dirty !== this.cacheDirty)\n {\n for (var i = 0; i < this.graphicsData.length; i++)\n {\n var data = this.graphicsData[i];\n\n if (data.fillStyle && !data.fillStyle.texture.baseTexture.valid) { return; }\n if (data.lineStyle && !data.lineStyle.texture.baseTexture.valid) { return; }\n }\n }\n\n this.cacheDirty = this.dirty;\n\n var uvs = this.uvs;\n\n var batchPart = null;\n var currentTexture = null;\n var currentColor = 0;\n var currentNative = false;\n\n if (this.batches.length > 0)\n {\n batchPart = this.batches[this.batches.length - 1];\n\n var style = batchPart.style;\n\n currentTexture = style.texture.baseTexture;\n currentColor = style.color + style.alpha;\n currentNative = !!style.native;\n }\n\n for (var i$1 = this.shapeIndex; i$1 < this.graphicsData.length; i$1++)\n {\n this.shapeIndex++;\n\n var data$1 = this.graphicsData[i$1];\n var command = fillCommands[data$1.type];\n\n var fillStyle = data$1.fillStyle;\n var lineStyle = data$1.lineStyle;\n\n // build out the shapes points..\n command.build(data$1);\n\n if (data$1.matrix)\n {\n this.transformPoints(data$1.points, data$1.matrix);\n }\n\n for (var j = 0; j < 2; j++)\n {\n var style$1 = (j === 0) ? fillStyle : lineStyle;\n\n if (!style$1.visible) { continue; }\n\n var nextTexture = style$1.texture.baseTexture;\n\n var index$1 = this.indices.length;\n var attribIndex = this.points.length / 2;\n\n // close batch if style is different\n if (batchPart\n && (currentTexture !== nextTexture\n || currentColor !== (style$1.color + style$1.alpha)\n || currentNative !== !!style$1.native))\n {\n batchPart.size = index$1 - batchPart.start;\n batchPart.attribSize = attribIndex - batchPart.attribStart;\n\n if (batchPart.size > 0)\n {\n batchPart = null;\n }\n }\n // spawn new batch if its first batch or previous was closed\n if (!batchPart)\n {\n batchPart = BATCH_POOL.pop() || new BatchPart();\n this.batches.push(batchPart);\n nextTexture.wrapMode = WRAP_MODES.REPEAT;\n currentTexture = nextTexture;\n currentColor = style$1.color + style$1.alpha;\n currentNative = style$1.native;\n\n batchPart.style = style$1;\n batchPart.start = index$1;\n batchPart.attribStart = attribIndex;\n }\n\n var start = this.points.length / 2;\n\n if (j === 0)\n {\n if (data$1.holes.length)\n {\n this.processHoles(data$1.holes);\n\n buildPoly.triangulate(data$1, this);\n }\n else\n {\n command.triangulate(data$1, this);\n }\n }\n else\n {\n buildLine(data$1, this);\n\n for (var i$2 = 0; i$2 < data$1.holes.length; i$2++)\n {\n buildLine(data$1.holes[i$2], this);\n }\n }\n\n var size = (this.points.length / 2) - start;\n\n this.addUvs(this.points, uvs, style$1.texture, start, size, style$1.matrix);\n }\n }\n\n var index = this.indices.length;\n var attrib = this.points.length / 2;\n\n if (!batchPart)\n {\n // there are no visible styles in GraphicsData\n // its possible that someone wants Graphics just for the bounds\n this.batchable = true;\n\n return;\n }\n\n batchPart.size = index - batchPart.start;\n batchPart.attribSize = attrib - batchPart.attribStart;\n this.indicesUint16 = new Uint16Array(this.indices);\n\n // TODO make this a const..\n this.batchable = this.isBatchable();\n\n if (this.batchable)\n {\n this.batchDirty++;\n\n this.uvsFloat32 = new Float32Array(this.uvs);\n\n // offset the indices so that it works with the batcher...\n for (var i$3 = 0; i$3 < this.batches.length; i$3++)\n {\n var batch = this.batches[i$3];\n\n for (var j$1 = 0; j$1 < batch.size; j$1++)\n {\n var index$2 = batch.start + j$1;\n\n this.indicesUint16[index$2] = this.indicesUint16[index$2] - batch.attribStart;\n }\n }\n }\n else\n {\n this.buildDrawCalls();\n }\n };\n\n /**\n * Checks to see if this graphics geometry can be batched.\n * Currently it needs to be small enough and not contain any native lines.\n * @protected\n */\n GraphicsGeometry.prototype.isBatchable = function isBatchable ()\n {\n var batches = this.batches;\n\n for (var i = 0; i < batches.length; i++)\n {\n if (batches[i].style.native)\n {\n return false;\n }\n }\n\n return (this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2);\n };\n\n /**\n * Converts intermediate batches data to drawCalls.\n * @protected\n */\n GraphicsGeometry.prototype.buildDrawCalls = function buildDrawCalls ()\n {\n var TICK = ++BaseTexture._globalBatch;\n\n for (var i = 0; i < this.drawCalls.length; i++)\n {\n this.drawCalls[i].textures.length = 0;\n DRAW_CALL_POOL.push(this.drawCalls[i]);\n }\n\n this.drawCalls.length = 0;\n\n var uvs = this.uvs;\n var colors = this.colors;\n var textureIds = this.textureIds;\n\n var currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall();\n\n currentGroup.textureCount = 0;\n currentGroup.start = 0;\n currentGroup.size = 0;\n currentGroup.type = DRAW_MODES.TRIANGLES;\n\n var textureCount = 0;\n var currentTexture = null;\n var textureId = 0;\n var native = false;\n var drawMode = DRAW_MODES.TRIANGLES;\n\n var index = 0;\n\n this.drawCalls.push(currentGroup);\n\n // TODO - this can be simplified\n for (var i$1 = 0; i$1 < this.batches.length; i$1++)\n {\n var data = this.batches[i$1];\n\n // TODO add some full on MAX_TEXTURE CODE..\n var MAX_TEXTURES = 8;\n\n var style = data.style;\n\n var nextTexture = style.texture.baseTexture;\n\n if (native !== !!style.native)\n {\n native = style.native;\n drawMode = native ? DRAW_MODES.LINES : DRAW_MODES.TRIANGLES;\n\n // force the batch to break!\n currentTexture = null;\n textureCount = MAX_TEXTURES;\n TICK++;\n }\n\n if (currentTexture !== nextTexture)\n {\n currentTexture = nextTexture;\n\n if (nextTexture._batchEnabled !== TICK)\n {\n if (textureCount === MAX_TEXTURES)\n {\n TICK++;\n\n textureCount = 0;\n\n if (currentGroup.size > 0)\n {\n currentGroup = DRAW_CALL_POOL.pop() || new BatchDrawCall();\n this.drawCalls.push(currentGroup);\n }\n\n currentGroup.start = index;\n currentGroup.size = 0;\n currentGroup.textureCount = 0;\n currentGroup.type = drawMode;\n }\n\n // TODO add this to the render part..\n nextTexture.touched = 1;// touch;\n nextTexture._batchEnabled = TICK;\n nextTexture._id = textureCount;\n nextTexture.wrapMode = 10497;\n\n currentGroup.textures[currentGroup.textureCount++] = nextTexture;\n textureCount++;\n }\n }\n\n currentGroup.size += data.size;\n index += data.size;\n\n textureId = nextTexture._id;\n\n this.addColors(colors, style.color, style.alpha, data.attribSize);\n this.addTextureIds(textureIds, textureId, data.attribSize);\n }\n\n BaseTexture._globalBatch = TICK;\n\n // upload..\n // merge for now!\n var verts = this.points;\n\n // verts are 2 positions.. so we * by 3 as there are 6 properties.. then 4 cos its bytes\n var glPoints = new ArrayBuffer(verts.length * 3 * 4);\n var f32 = new Float32Array(glPoints);\n var u32 = new Uint32Array(glPoints);\n\n var p = 0;\n\n for (var i$2 = 0; i$2 < verts.length / 2; i$2++)\n {\n f32[p++] = verts[i$2 * 2];\n f32[p++] = verts[(i$2 * 2) + 1];\n\n f32[p++] = uvs[i$2 * 2];\n f32[p++] = uvs[(i$2 * 2) + 1];\n\n u32[p++] = colors[i$2];\n\n f32[p++] = textureIds[i$2];\n }\n\n this._buffer.update(glPoints);\n this._indexBuffer.update(this.indicesUint16);\n };\n\n /**\n * Process the holes data.\n *\n * @param {PIXI.GraphicsData[]} holes - Holes to render\n * @protected\n */\n GraphicsGeometry.prototype.processHoles = function processHoles (holes)\n {\n for (var i = 0; i < holes.length; i++)\n {\n var hole = holes[i];\n\n var command = fillCommands[hole.type];\n\n command.build(hole);\n\n if (hole.matrix)\n {\n this.transformPoints(hole.points, hole.matrix);\n }\n }\n };\n\n /**\n * Update the local bounds of the object. Expensive to use performance-wise.\n * @protected\n */\n GraphicsGeometry.prototype.calculateBounds = function calculateBounds ()\n {\n var minX = Infinity;\n var maxX = -Infinity;\n\n var minY = Infinity;\n var maxY = -Infinity;\n\n if (this.graphicsData.length)\n {\n var shape = null;\n var x = 0;\n var y = 0;\n var w = 0;\n var h = 0;\n\n for (var i = 0; i < this.graphicsData.length; i++)\n {\n var data = this.graphicsData[i];\n\n var type = data.type;\n var lineWidth = data.lineStyle ? data.lineStyle.width : 0;\n\n shape = data.shape;\n\n if (type === SHAPES.RECT || type === SHAPES.RREC)\n {\n x = shape.x - (lineWidth / 2);\n y = shape.y - (lineWidth / 2);\n w = shape.width + lineWidth;\n h = shape.height + lineWidth;\n\n minX = x < minX ? x : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y < minY ? y : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else if (type === SHAPES.CIRC)\n {\n x = shape.x;\n y = shape.y;\n w = shape.radius + (lineWidth / 2);\n h = shape.radius + (lineWidth / 2);\n\n minX = x - w < minX ? x - w : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y - h < minY ? y - h : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else if (type === SHAPES.ELIP)\n {\n x = shape.x;\n y = shape.y;\n w = shape.width + (lineWidth / 2);\n h = shape.height + (lineWidth / 2);\n\n minX = x - w < minX ? x - w : minX;\n maxX = x + w > maxX ? x + w : maxX;\n\n minY = y - h < minY ? y - h : minY;\n maxY = y + h > maxY ? y + h : maxY;\n }\n else\n {\n // POLY\n var points = shape.points;\n var x2 = 0;\n var y2 = 0;\n var dx = 0;\n var dy = 0;\n var rw = 0;\n var rh = 0;\n var cx = 0;\n var cy = 0;\n\n for (var j = 0; j + 2 < points.length; j += 2)\n {\n x = points[j];\n y = points[j + 1];\n x2 = points[j + 2];\n y2 = points[j + 3];\n dx = Math.abs(x2 - x);\n dy = Math.abs(y2 - y);\n h = lineWidth;\n w = Math.sqrt((dx * dx) + (dy * dy));\n\n if (w < 1e-9)\n {\n continue;\n }\n\n rw = ((h / w * dy) + dx) / 2;\n rh = ((h / w * dx) + dy) / 2;\n cx = (x2 + x) / 2;\n cy = (y2 + y) / 2;\n\n minX = cx - rw < minX ? cx - rw : minX;\n maxX = cx + rw > maxX ? cx + rw : maxX;\n\n minY = cy - rh < minY ? cy - rh : minY;\n maxY = cy + rh > maxY ? cy + rh : maxY;\n }\n }\n }\n }\n else\n {\n minX = 0;\n maxX = 0;\n minY = 0;\n maxY = 0;\n }\n\n var padding = this.boundsPadding;\n\n this._bounds.minX = minX - padding;\n this._bounds.maxX = maxX + padding;\n\n this._bounds.minY = minY - padding;\n this._bounds.maxY = maxY + padding;\n };\n\n /**\n * Transform points using matrix.\n *\n * @protected\n * @param {number[]} points - Points to transform\n * @param {PIXI.Matrix} matrix - Transform matrix\n */\n GraphicsGeometry.prototype.transformPoints = function transformPoints (points, matrix)\n {\n for (var i = 0; i < points.length / 2; i++)\n {\n var x = points[(i * 2)];\n var y = points[(i * 2) + 1];\n\n points[(i * 2)] = (matrix.a * x) + (matrix.c * y) + matrix.tx;\n points[(i * 2) + 1] = (matrix.b * x) + (matrix.d * y) + matrix.ty;\n }\n };\n\n /**\n * Add colors.\n *\n * @protected\n * @param {number[]} colors - List of colors to add to\n * @param {number} color - Color to add\n * @param {number} alpha - Alpha to use\n * @param {number} size - Number of colors to add\n */\n GraphicsGeometry.prototype.addColors = function addColors (colors, color, alpha, size)\n {\n // TODO use the premultiply bits Ivan added\n var rgb = (color >> 16) + (color & 0xff00) + ((color & 0xff) << 16);\n\n var rgba = premultiplyTint(rgb, alpha);\n\n while (size-- > 0)\n {\n colors.push(rgba);\n }\n };\n\n /**\n * Add texture id that the shader/fragment wants to use.\n *\n * @protected\n * @param {number[]} textureIds\n * @param {number} id\n * @param {number} size\n */\n GraphicsGeometry.prototype.addTextureIds = function addTextureIds (textureIds, id, size)\n {\n while (size-- > 0)\n {\n textureIds.push(id);\n }\n };\n\n /**\n * Generates the UVs for a shape.\n *\n * @protected\n * @param {number[]} verts - Vertices\n * @param {number[]} uvs - UVs\n * @param {PIXI.Texture} texture - Reference to Texture\n * @param {number} start - Index buffer start index.\n * @param {number} size - The size/length for index buffer.\n * @param {PIXI.Matrix} [matrix] - Optional transform for all points.\n */\n GraphicsGeometry.prototype.addUvs = function addUvs (verts, uvs, texture, start, size, matrix)\n {\n var index = 0;\n var uvsStart = uvs.length;\n var frame = texture.frame;\n\n while (index < size)\n {\n var x = verts[(start + index) * 2];\n var y = verts[((start + index) * 2) + 1];\n\n if (matrix)\n {\n var nx = (matrix.a * x) + (matrix.c * y) + matrix.tx;\n\n y = (matrix.b * x) + (matrix.d * y) + matrix.ty;\n x = nx;\n }\n\n index++;\n\n uvs.push(x / frame.width, y / frame.height);\n }\n\n var baseTexture = texture.baseTexture;\n\n if (frame.width < baseTexture.width\n || frame.height < baseTexture.height)\n {\n this.adjustUvs(uvs, texture, uvsStart, size);\n }\n };\n\n /**\n * Modify uvs array according to position of texture region\n * Does not work with rotated or trimmed textures\n * @param {number[]} uvs array\n * @param {PIXI.Texture} texture region\n * @param {number} start starting index for uvs\n * @param {number} size how many points to adjust\n */\n GraphicsGeometry.prototype.adjustUvs = function adjustUvs (uvs, texture, start, size)\n {\n var baseTexture = texture.baseTexture;\n var eps = 1e-6;\n var finish = start + (size * 2);\n var frame = texture.frame;\n var scaleX = frame.width / baseTexture.width;\n var scaleY = frame.height / baseTexture.height;\n var offsetX = frame.x / frame.width;\n var offsetY = frame.y / frame.height;\n var minX = Math.floor(uvs[start] + eps);\n var minY = Math.floor(uvs[start + 1] + eps);\n\n for (var i = start + 2; i < finish; i += 2)\n {\n minX = Math.min(minX, Math.floor(uvs[i] + eps));\n minY = Math.min(minY, Math.floor(uvs[i + 1] + eps));\n }\n offsetX -= minX;\n offsetY -= minY;\n for (var i$1 = start; i$1 < finish; i$1 += 2)\n {\n uvs[i$1] = (uvs[i$1] + offsetX) * scaleX;\n uvs[i$1 + 1] = (uvs[i$1 + 1] + offsetY) * scaleY;\n }\n };\n\n Object.defineProperties( GraphicsGeometry.prototype, prototypeAccessors );\n\n return GraphicsGeometry;\n}(BatchGeometry));\n\n/**\n * The maximum number of points to consider an object \"batchable\",\n * able to be batched by the renderer's batch system.\n *\n * @memberof PIXI.GraphicsGeometry\n * @static\n * @member {number} BATCHABLE_SIZE\n * @default 100\n */\nGraphicsGeometry.BATCHABLE_SIZE = 100;\n\n/**\n * Represents the line style for Graphics.\n * @memberof PIXI\n * @class\n * @extends PIXI.FillStyle\n */\nvar LineStyle = /*@__PURE__*/(function (FillStyle) {\n function LineStyle () {\n FillStyle.apply(this, arguments);\n }\n\n if ( FillStyle ) LineStyle.__proto__ = FillStyle;\n LineStyle.prototype = Object.create( FillStyle && FillStyle.prototype );\n LineStyle.prototype.constructor = LineStyle;\n\n LineStyle.prototype.clone = function clone ()\n {\n var obj = new LineStyle();\n\n obj.color = this.color;\n obj.alpha = this.alpha;\n obj.texture = this.texture;\n obj.matrix = this.matrix;\n obj.visible = this.visible;\n obj.width = this.width;\n obj.alignment = this.alignment;\n obj.native = this.native;\n\n return obj;\n };\n /**\n * Reset the line style to default.\n */\n LineStyle.prototype.reset = function reset ()\n {\n FillStyle.prototype.reset.call(this);\n\n // Override default line style color\n this.color = 0x0;\n\n /**\n * The width (thickness) of any lines drawn.\n *\n * @member {number}\n * @default 0\n */\n this.width = 0;\n\n /**\n * The alignment of any lines drawn (0.5 = middle, 1 = outter, 0 = inner).\n *\n * @member {number}\n * @default 0\n */\n this.alignment = 0.5;\n\n /**\n * If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n *\n * @member {boolean}\n * @default false\n */\n this.native = false;\n };\n\n return LineStyle;\n}(FillStyle));\n\n/**\n * Utilities for bezier curves\n * @class\n * @private\n */\nvar BezierUtils = function BezierUtils () {};\n\nBezierUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY)\n{\n var n = 10;\n var result = 0.0;\n var t = 0.0;\n var t2 = 0.0;\n var t3 = 0.0;\n var nt = 0.0;\n var nt2 = 0.0;\n var nt3 = 0.0;\n var x = 0.0;\n var y = 0.0;\n var dx = 0.0;\n var dy = 0.0;\n var prevX = fromX;\n var prevY = fromY;\n\n for (var i = 1; i <= n; ++i)\n {\n t = i / n;\n t2 = t * t;\n t3 = t2 * t;\n nt = (1.0 - t);\n nt2 = nt * nt;\n nt3 = nt2 * nt;\n\n x = (nt3 * fromX) + (3.0 * nt2 * t * cpX) + (3.0 * nt * t2 * cpX2) + (t3 * toX);\n y = (nt3 * fromY) + (3.0 * nt2 * t * cpY) + (3 * nt * t2 * cpY2) + (t3 * toY);\n dx = prevX - x;\n dy = prevY - y;\n prevX = x;\n prevY = y;\n\n result += Math.sqrt((dx * dx) + (dy * dy));\n }\n\n return result;\n};\n\n/**\n * Calculate the points for a bezier curve and then draws it.\n *\n * Ignored from docs since it is not directly exposed.\n *\n * @ignore\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} cpX2 - Second Control point x\n * @param {number} cpY2 - Second Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} points - Path array to push points into\n */\nBezierUtils.curveTo = function curveTo (cpX, cpY, cpX2, cpY2, toX, toY, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n points.length -= 2;\n\n var n = GRAPHICS_CURVES._segmentsCount(\n BezierUtils.curveLength(fromX, fromY, cpX, cpY, cpX2, cpY2, toX, toY)\n );\n\n var dt = 0;\n var dt2 = 0;\n var dt3 = 0;\n var t2 = 0;\n var t3 = 0;\n\n points.push(fromX, fromY);\n\n for (var i = 1, j = 0; i <= n; ++i)\n {\n j = i / n;\n\n dt = (1 - j);\n dt2 = dt * dt;\n dt3 = dt2 * dt;\n\n t2 = j * j;\n t3 = t2 * j;\n\n points.push(\n (dt3 * fromX) + (3 * dt2 * j * cpX) + (3 * dt * t2 * cpX2) + (t3 * toX),\n (dt3 * fromY) + (3 * dt2 * j * cpY) + (3 * dt * t2 * cpY2) + (t3 * toY)\n );\n }\n};\n\n/**\n * Utilities for quadratic curves\n * @class\n * @private\n */\nvar QuadraticUtils = function QuadraticUtils () {};\n\nQuadraticUtils.curveLength = function curveLength (fromX, fromY, cpX, cpY, toX, toY)\n{\n var ax = fromX - (2.0 * cpX) + toX;\n var ay = fromY - (2.0 * cpY) + toY;\n var bx = (2.0 * cpX) - (2.0 * fromX);\n var by = (2.0 * cpY) - (2.0 * fromY);\n var a = 4.0 * ((ax * ax) + (ay * ay));\n var b = 4.0 * ((ax * bx) + (ay * by));\n var c = (bx * bx) + (by * by);\n\n var s = 2.0 * Math.sqrt(a + b + c);\n var a2 = Math.sqrt(a);\n var a32 = 2.0 * a * a2;\n var c2 = 2.0 * Math.sqrt(c);\n var ba = b / a2;\n\n return (\n (a32 * s)\n + (a2 * b * (s - c2))\n + (\n ((4.0 * c * a) - (b * b))\n * Math.log(((2.0 * a2) + ba + s) / (ba + c2))\n )\n ) / (4.0 * a32);\n};\n\n/**\n * Calculate the points for a quadratic bezier curve and then draws it.\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * @private\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @param {number[]} points - Points to add segments to.\n */\nQuadraticUtils.curveTo = function curveTo (cpX, cpY, toX, toY, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n var n = GRAPHICS_CURVES._segmentsCount(\n QuadraticUtils.curveLength(fromX, fromY, cpX, cpY, toX, toY)\n );\n\n var xa = 0;\n var ya = 0;\n\n for (var i = 1; i <= n; ++i)\n {\n var j = i / n;\n\n xa = fromX + ((cpX - fromX) * j);\n ya = fromY + ((cpY - fromY) * j);\n\n points.push(xa + (((cpX + ((toX - cpX) * j)) - xa) * j),\n ya + (((cpY + ((toY - cpY) * j)) - ya) * j));\n }\n};\n\n/**\n * Utilities for arc curves\n * @class\n * @private\n */\nvar ArcUtils = function ArcUtils () {};\n\nArcUtils.curveTo = function curveTo (x1, y1, x2, y2, radius, points)\n{\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n var a1 = fromY - y1;\n var b1 = fromX - x1;\n var a2 = y2 - y1;\n var b2 = x2 - x1;\n var mm = Math.abs((a1 * b2) - (b1 * a2));\n\n if (mm < 1.0e-8 || radius === 0)\n {\n if (points[points.length - 2] !== x1 || points[points.length - 1] !== y1)\n {\n points.push(x1, y1);\n }\n\n return null;\n }\n\n var dd = (a1 * a1) + (b1 * b1);\n var cc = (a2 * a2) + (b2 * b2);\n var tt = (a1 * a2) + (b1 * b2);\n var k1 = radius * Math.sqrt(dd) / mm;\n var k2 = radius * Math.sqrt(cc) / mm;\n var j1 = k1 * tt / dd;\n var j2 = k2 * tt / cc;\n var cx = (k1 * b2) + (k2 * b1);\n var cy = (k1 * a2) + (k2 * a1);\n var px = b1 * (k2 + j1);\n var py = a1 * (k2 + j1);\n var qx = b2 * (k1 + j2);\n var qy = a2 * (k1 + j2);\n var startAngle = Math.atan2(py - cy, px - cx);\n var endAngle = Math.atan2(qy - cy, qx - cx);\n\n return {\n cx: (cx + x1),\n cy: (cy + y1),\n radius: radius,\n startAngle: startAngle,\n endAngle: endAngle,\n anticlockwise: (b1 * a2 > b2 * a1),\n };\n};\n\n/**\n * The arc method creates an arc/curve (used to create circles, or parts of circles).\n *\n * @private\n * @param {number} startX - Start x location of arc\n * @param {number} startY - Start y location of arc\n * @param {number} cx - The x-coordinate of the center of the circle\n * @param {number} cy - The y-coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position\n * of the arc's circle)\n * @param {number} endAngle - The ending angle, in radians\n * @param {boolean} anticlockwise - Specifies whether the drawing should be\n * counter-clockwise or clockwise. False is default, and indicates clockwise, while true\n * indicates counter-clockwise.\n * @param {number} n - Number of segments\n * @param {number[]} points - Collection of points to add to\n */\nArcUtils.arc = function arc (startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points)\n{\n var sweep = endAngle - startAngle;\n var n = GRAPHICS_CURVES._segmentsCount(\n Math.abs(sweep) * radius,\n Math.ceil(Math.abs(sweep) / PI_2) * 40\n );\n\n var theta = (sweep) / (n * 2);\n var theta2 = theta * 2;\n var cTheta = Math.cos(theta);\n var sTheta = Math.sin(theta);\n var segMinus = n - 1;\n var remainder = (segMinus % 1) / segMinus;\n\n for (var i = 0; i <= segMinus; ++i)\n {\n var real = i + (remainder * i);\n var angle = ((theta) + startAngle + (theta2 * real));\n var c = Math.cos(angle);\n var s = -Math.sin(angle);\n\n points.push(\n (((cTheta * c) + (sTheta * s)) * radius) + cx,\n (((cTheta * -s) + (sTheta * c)) * radius) + cy\n );\n }\n};\n\n/**\n * Draw a star shape with an arbitrary number of points.\n *\n * @class\n * @extends PIXI.Polygon\n * @memberof PIXI\n * @param {number} x - Center X position of the star\n * @param {number} y - Center Y position of the star\n * @param {number} points - The number of points of the star, must be > 1\n * @param {number} radius - The outer radius of the star\n * @param {number} [innerRadius] - The inner radius between points, default half `radius`\n * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\nvar Star = /*@__PURE__*/(function (Polygon) {\n function Star(x, y, points, radius, innerRadius, rotation)\n {\n innerRadius = innerRadius || radius / 2;\n\n var startAngle = (-1 * Math.PI / 2) + rotation;\n var len = points * 2;\n var delta = PI_2 / len;\n var polygon = [];\n\n for (var i = 0; i < len; i++)\n {\n var r = i % 2 ? innerRadius : radius;\n var angle = (i * delta) + startAngle;\n\n polygon.push(\n x + (r * Math.cos(angle)),\n y + (r * Math.sin(angle))\n );\n }\n\n Polygon.call(this, polygon);\n }\n\n if ( Polygon ) Star.__proto__ = Polygon;\n Star.prototype = Object.create( Polygon && Polygon.prototype );\n Star.prototype.constructor = Star;\n\n return Star;\n}(Polygon));\n\nvar temp = new Float32Array(3);\n\n// a default shaders map used by graphics..\nvar DEFAULT_SHADERS = {};\n\n/**\n * The Graphics class contains methods used to draw primitive shapes such as lines, circles and\n * rectangles to the display, and to color and fill them.\n *\n * Note that because Graphics can share a GraphicsGeometry with other instances,\n * it is necessary to call `destroy()` to properly dereference the underlying\n * GraphicsGeometry and avoid a memory leak. Alternatively, keep using the same\n * Graphics instance and call `clear()` between redraws.\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Graphics = /*@__PURE__*/(function (Container) {\n function Graphics(geometry)\n {\n if ( geometry === void 0 ) geometry = null;\n\n Container.call(this);\n /**\n * Includes vertex positions, face indices, normals, colors, UVs, and\n * custom attributes within buffers, reducing the cost of passing all\n * this data to the GPU. Can be shared between multiple Mesh or Graphics objects.\n * @member {PIXI.GraphicsGeometry}\n * @readonly\n */\n this.geometry = geometry || new GraphicsGeometry();\n\n this.geometry.refCount++;\n\n /**\n * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU.\n * Can be shared between multiple Graphics objects.\n * @member {PIXI.Shader}\n */\n this.shader = null;\n\n /**\n * Represents the WebGL state the Graphics required to render, excludes shader and geometry. E.g.,\n * blend mode, culling, depth testing, direction of rendering triangles, backface, etc.\n * @member {PIXI.State}\n */\n this.state = State.for2d();\n\n /**\n * Current fill style\n *\n * @member {PIXI.FillStyle}\n * @protected\n */\n this._fillStyle = new FillStyle();\n\n /**\n * Current line style\n *\n * @member {PIXI.LineStyle}\n * @protected\n */\n this._lineStyle = new LineStyle();\n\n /**\n * Current shape transform matrix.\n *\n * @member {PIXI.Matrix}\n * @protected\n */\n this._matrix = null;\n\n /**\n * Current hole mode is enabled.\n *\n * @member {boolean}\n * @default false\n * @protected\n */\n this._holeMode = false;\n\n /**\n * Current path\n *\n * @member {PIXI.Polygon}\n * @protected\n */\n this.currentPath = null;\n\n /**\n * When cacheAsBitmap is set to true the graphics object will be rendered as if it was a sprite.\n * This is useful if your graphics element does not change often, as it will speed up the rendering\n * of the object in exchange for taking up texture memory. It is also useful if you need the graphics\n * object to be anti-aliased, because it will be rendered using canvas. This is not recommended if\n * you are constantly redrawing the graphics element.\n *\n * @name cacheAsBitmap\n * @member {boolean}\n * @memberof PIXI.Graphics#\n * @default false\n */\n\n /**\n * A collections of batches! These can be drawn by the renderer batch system.\n *\n * @protected\n * @member {object[]}\n */\n this.batches = [];\n\n /**\n * Update dirty for limiting calculating tints for batches.\n *\n * @protected\n * @member {number}\n * @default -1\n */\n this.batchTint = -1;\n\n /**\n * Copy of the object vertex data.\n *\n * @protected\n * @member {Float32Array}\n */\n this.vertexData = null;\n\n this._transformID = -1;\n this.batchDirty = -1;\n\n /**\n * Renderer plugin for batching\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = 'batch';\n\n // Set default\n this.tint = 0xFFFFFF;\n this.blendMode = BLEND_MODES.NORMAL;\n }\n\n if ( Container ) Graphics.__proto__ = Container;\n Graphics.prototype = Object.create( Container && Container.prototype );\n Graphics.prototype.constructor = Graphics;\n\n var prototypeAccessors = { blendMode: { configurable: true },tint: { configurable: true },fill: { configurable: true },line: { configurable: true } };\n\n /**\n * Creates a new Graphics object with the same values as this one.\n * Note that the only the properties of the object are cloned, not its transform (position,scale,etc)\n *\n * @return {PIXI.Graphics} A clone of the graphics object\n */\n Graphics.prototype.clone = function clone ()\n {\n this.finishPoly();\n\n return new Graphics(this.geometry);\n };\n\n /**\n * The blend mode to be applied to the graphic shape. Apply a value of\n * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL;\n * @see PIXI.BLEND_MODES\n */\n prototypeAccessors.blendMode.set = function (value)\n {\n this.state.blendMode = value;\n };\n\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n /**\n * The tint applied to the graphic shape. This is a hex value. A value of\n * 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n prototypeAccessors.tint.set = function (value)\n {\n this._tint = value;\n };\n\n /**\n * The current fill style.\n *\n * @member {PIXI.FillStyle}\n * @readonly\n */\n prototypeAccessors.fill.get = function ()\n {\n return this._fillStyle;\n };\n\n /**\n * The current line style.\n *\n * @member {PIXI.LineStyle}\n * @readonly\n */\n prototypeAccessors.line.get = function ()\n {\n return this._lineStyle;\n };\n\n /**\n * Specifies the line style used for subsequent calls to Graphics methods such as the lineTo()\n * method or the drawCircle() method.\n *\n * @param {number} [width=0] - width of the line to draw, will update the objects stored style\n * @param {number} [color=0] - color of the line to draw, will update the objects stored style\n * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style\n * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter)\n * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineStyle = function lineStyle (width, color, alpha, alignment, native)\n {\n if ( width === void 0 ) width = 0;\n if ( color === void 0 ) color = 0;\n if ( alpha === void 0 ) alpha = 1;\n if ( alignment === void 0 ) alignment = 0.5;\n if ( native === void 0 ) native = false;\n\n this.lineTextureStyle(width, Texture.WHITE, color, alpha, null, alignment, native);\n\n return this;\n };\n\n /**\n * Like line style but support texture for line fill.\n *\n * @param {number} [width=0] - width of the line to draw, will update the objects stored style\n * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to use\n * @param {number} [color=0] - color of the line to draw, will update the objects stored style\n * @param {number} [alpha=1] - alpha of the line to draw, will update the objects stored style\n * @param {PIXI.Matrix} [matrix=null] Texture matrix to transform texture\n * @param {number} [alignment=0.5] - alignment of the line to draw, (0 = inner, 0.5 = middle, 1 = outter)\n * @param {boolean} [native=false] - If true the lines will be draw using LINES instead of TRIANGLE_STRIP\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineTextureStyle = function lineTextureStyle (width, texture, color, alpha,\n matrix, alignment, native)\n {\n if ( width === void 0 ) width = 0;\n if ( texture === void 0 ) texture = Texture.WHITE;\n if ( color === void 0 ) color = 0xFFFFFF;\n if ( alpha === void 0 ) alpha = 1;\n if ( matrix === void 0 ) matrix = null;\n if ( alignment === void 0 ) alignment = 0.5;\n if ( native === void 0 ) native = false;\n\n if (this.currentPath)\n {\n this.startPoly();\n }\n\n var visible = width > 0 && alpha > 0;\n\n if (!visible)\n {\n this._lineStyle.reset();\n }\n else\n {\n if (matrix)\n {\n matrix = matrix.clone();\n matrix.invert();\n }\n\n Object.assign(this._lineStyle, {\n color: color,\n width: width,\n alpha: alpha,\n matrix: matrix,\n texture: texture,\n alignment: alignment,\n native: native,\n visible: visible,\n });\n }\n\n return this;\n };\n\n /**\n * Start a polygon object internally\n * @protected\n */\n Graphics.prototype.startPoly = function startPoly ()\n {\n if (this.currentPath)\n {\n var points = this.currentPath.points;\n var len = this.currentPath.points.length;\n\n if (len > 2)\n {\n this.drawShape(this.currentPath);\n this.currentPath = new Polygon();\n this.currentPath.closeStroke = false;\n this.currentPath.points.push(points[len - 2], points[len - 1]);\n }\n }\n else\n {\n this.currentPath = new Polygon();\n this.currentPath.closeStroke = false;\n }\n };\n\n /**\n * Finish the polygon object.\n * @protected\n */\n Graphics.prototype.finishPoly = function finishPoly ()\n {\n if (this.currentPath)\n {\n if (this.currentPath.points.length > 2)\n {\n this.drawShape(this.currentPath);\n this.currentPath = null;\n }\n else\n {\n this.currentPath.points.length = 0;\n }\n }\n };\n\n /**\n * Moves the current drawing position to x, y.\n *\n * @param {number} x - the X coordinate to move to\n * @param {number} y - the Y coordinate to move to\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.moveTo = function moveTo (x, y)\n {\n this.startPoly();\n this.currentPath.points[0] = x;\n this.currentPath.points[1] = y;\n\n return this;\n };\n\n /**\n * Draws a line using the current line style from the current drawing position to (x, y);\n * The current drawing position is then set to (x, y).\n *\n * @param {number} x - the X coordinate to draw to\n * @param {number} y - the Y coordinate to draw to\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.lineTo = function lineTo (x, y)\n {\n if (!this.currentPath)\n {\n this.moveTo(0, 0);\n }\n\n // remove duplicates..\n var points = this.currentPath.points;\n var fromX = points[points.length - 2];\n var fromY = points[points.length - 1];\n\n if (fromX !== x || fromY !== y)\n {\n points.push(x, y);\n }\n\n return this;\n };\n\n /**\n * Initialize the curve\n *\n * @protected\n * @param {number} [x=0]\n * @param {number} [y=0]\n */\n Graphics.prototype._initCurve = function _initCurve (x, y)\n {\n if ( x === void 0 ) x = 0;\n if ( y === void 0 ) y = 0;\n\n if (this.currentPath)\n {\n if (this.currentPath.points.length === 0)\n {\n this.currentPath.points = [x, y];\n }\n }\n else\n {\n this.moveTo(x, y);\n }\n };\n\n /**\n * Calculate the points for a quadratic bezier curve and then draws it.\n * Based on: https://stackoverflow.com/questions/785097/how-do-i-implement-a-bezier-curve-in-c\n *\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.quadraticCurveTo = function quadraticCurveTo (cpX, cpY, toX, toY)\n {\n this._initCurve();\n\n var points = this.currentPath.points;\n\n if (points.length === 0)\n {\n this.moveTo(0, 0);\n }\n\n QuadraticUtils.curveTo(cpX, cpY, toX, toY, points);\n\n return this;\n };\n\n /**\n * Calculate the points for a bezier curve and then draws it.\n *\n * @param {number} cpX - Control point x\n * @param {number} cpY - Control point y\n * @param {number} cpX2 - Second Control point x\n * @param {number} cpY2 - Second Control point y\n * @param {number} toX - Destination point x\n * @param {number} toY - Destination point y\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.bezierCurveTo = function bezierCurveTo (cpX, cpY, cpX2, cpY2, toX, toY)\n {\n this._initCurve();\n\n BezierUtils.curveTo(cpX, cpY, cpX2, cpY2, toX, toY, this.currentPath.points);\n\n return this;\n };\n\n /**\n * The arcTo() method creates an arc/curve between two tangents on the canvas.\n *\n * \"borrowed\" from https://code.google.com/p/fxcanvas/ - thanks google!\n *\n * @param {number} x1 - The x-coordinate of the first tangent point of the arc\n * @param {number} y1 - The y-coordinate of the first tangent point of the arc\n * @param {number} x2 - The x-coordinate of the end of the arc\n * @param {number} y2 - The y-coordinate of the end of the arc\n * @param {number} radius - The radius of the arc\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.arcTo = function arcTo (x1, y1, x2, y2, radius)\n {\n this._initCurve(x1, y1);\n\n var points = this.currentPath.points;\n\n var result = ArcUtils.curveTo(x1, y1, x2, y2, radius, points);\n\n if (result)\n {\n var cx = result.cx;\n var cy = result.cy;\n var radius$1 = result.radius;\n var startAngle = result.startAngle;\n var endAngle = result.endAngle;\n var anticlockwise = result.anticlockwise;\n\n this.arc(cx, cy, radius$1, startAngle, endAngle, anticlockwise);\n }\n\n return this;\n };\n\n /**\n * The arc method creates an arc/curve (used to create circles, or parts of circles).\n *\n * @param {number} cx - The x-coordinate of the center of the circle\n * @param {number} cy - The y-coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @param {number} startAngle - The starting angle, in radians (0 is at the 3 o'clock position\n * of the arc's circle)\n * @param {number} endAngle - The ending angle, in radians\n * @param {boolean} [anticlockwise=false] - Specifies whether the drawing should be\n * counter-clockwise or clockwise. False is default, and indicates clockwise, while true\n * indicates counter-clockwise.\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.arc = function arc (cx, cy, radius, startAngle, endAngle, anticlockwise)\n {\n if ( anticlockwise === void 0 ) anticlockwise = false;\n\n if (startAngle === endAngle)\n {\n return this;\n }\n\n if (!anticlockwise && endAngle <= startAngle)\n {\n endAngle += PI_2;\n }\n else if (anticlockwise && startAngle <= endAngle)\n {\n startAngle += PI_2;\n }\n\n var sweep = endAngle - startAngle;\n\n if (sweep === 0)\n {\n return this;\n }\n\n var startX = cx + (Math.cos(startAngle) * radius);\n var startY = cy + (Math.sin(startAngle) * radius);\n var eps = this.geometry.closePointEps;\n\n // If the currentPath exists, take its points. Otherwise call `moveTo` to start a path.\n var points = this.currentPath ? this.currentPath.points : null;\n\n if (points)\n {\n // TODO: make a better fix.\n\n // We check how far our start is from the last existing point\n var xDiff = Math.abs(points[points.length - 2] - startX);\n var yDiff = Math.abs(points[points.length - 1] - startY);\n\n if (xDiff < eps && yDiff < eps)\n ;\n else\n {\n points.push(startX, startY);\n }\n }\n else\n {\n this.moveTo(startX, startY);\n points = this.currentPath.points;\n }\n\n ArcUtils.arc(startX, startY, cx, cy, radius, startAngle, endAngle, anticlockwise, points);\n\n return this;\n };\n\n /**\n * Specifies a simple one-color fill that subsequent calls to other Graphics methods\n * (such as lineTo() or drawCircle()) use when drawing.\n *\n * @param {number} [color=0] - the color of the fill\n * @param {number} [alpha=1] - the alpha of the fill\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.beginFill = function beginFill (color, alpha)\n {\n if ( color === void 0 ) color = 0;\n if ( alpha === void 0 ) alpha = 1;\n\n return this.beginTextureFill(Texture.WHITE, color, alpha);\n };\n\n /**\n * Begin the texture fill\n *\n * @param {PIXI.Texture} [texture=PIXI.Texture.WHITE] - Texture to fill\n * @param {number} [color=0xffffff] - Background to fill behind texture\n * @param {number} [alpha=1] - Alpha of fill\n * @param {PIXI.Matrix} [matrix=null] - Transform matrix\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.beginTextureFill = function beginTextureFill (texture, color, alpha, matrix)\n {\n if ( texture === void 0 ) texture = Texture.WHITE;\n if ( color === void 0 ) color = 0xFFFFFF;\n if ( alpha === void 0 ) alpha = 1;\n if ( matrix === void 0 ) matrix = null;\n\n if (this.currentPath)\n {\n this.startPoly();\n }\n\n var visible = alpha > 0;\n\n if (!visible)\n {\n this._fillStyle.reset();\n }\n else\n {\n if (matrix)\n {\n matrix = matrix.clone();\n matrix.invert();\n }\n\n Object.assign(this._fillStyle, {\n color: color,\n alpha: alpha,\n texture: texture,\n matrix: matrix,\n visible: visible,\n });\n }\n\n return this;\n };\n\n /**\n * Applies a fill to the lines and shapes that were added since the last call to the beginFill() method.\n *\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.endFill = function endFill ()\n {\n this.finishPoly();\n\n this._fillStyle.reset();\n\n return this;\n };\n\n /**\n * Draws a rectangle shape.\n *\n * @param {number} x - The X coord of the top-left of the rectangle\n * @param {number} y - The Y coord of the top-left of the rectangle\n * @param {number} width - The width of the rectangle\n * @param {number} height - The height of the rectangle\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawRect = function drawRect (x, y, width, height)\n {\n return this.drawShape(new Rectangle(x, y, width, height));\n };\n\n /**\n * Draw a rectangle shape with rounded/beveled corners.\n *\n * @param {number} x - The X coord of the top-left of the rectangle\n * @param {number} y - The Y coord of the top-left of the rectangle\n * @param {number} width - The width of the rectangle\n * @param {number} height - The height of the rectangle\n * @param {number} radius - Radius of the rectangle corners\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawRoundedRect = function drawRoundedRect (x, y, width, height, radius)\n {\n return this.drawShape(new RoundedRectangle(x, y, width, height, radius));\n };\n\n /**\n * Draws a circle.\n *\n * @param {number} x - The X coordinate of the center of the circle\n * @param {number} y - The Y coordinate of the center of the circle\n * @param {number} radius - The radius of the circle\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawCircle = function drawCircle (x, y, radius)\n {\n return this.drawShape(new Circle(x, y, radius));\n };\n\n /**\n * Draws an ellipse.\n *\n * @param {number} x - The X coordinate of the center of the ellipse\n * @param {number} y - The Y coordinate of the center of the ellipse\n * @param {number} width - The half width of the ellipse\n * @param {number} height - The half height of the ellipse\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawEllipse = function drawEllipse (x, y, width, height)\n {\n return this.drawShape(new Ellipse(x, y, width, height));\n };\n\n /**\n * Draws a polygon using the given path.\n *\n * @param {number[]|PIXI.Point[]|PIXI.Polygon} path - The path data used to construct the polygon.\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawPolygon = function drawPolygon (path)\n {\n var arguments$1 = arguments;\n\n // prevents an argument assignment deopt\n // see section 3.1: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments\n var points = path;\n\n var closeStroke = true;// !!this._fillStyle;\n\n // check if data has points..\n if (points.points)\n {\n closeStroke = points.closeStroke;\n points = points.points;\n }\n\n if (!Array.isArray(points))\n {\n // prevents an argument leak deopt\n // see section 3.2: https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#3-managing-arguments\n points = new Array(arguments.length);\n\n for (var i = 0; i < points.length; ++i)\n {\n points[i] = arguments$1[i]; // eslint-disable-line prefer-rest-params\n }\n }\n\n var shape = new Polygon(points);\n\n shape.closeStroke = closeStroke;\n\n this.drawShape(shape);\n\n return this;\n };\n\n /**\n * Draw any shape.\n *\n * @param {PIXI.Circle|PIXI.Ellipse|PIXI.Polygon|PIXI.Rectangle|PIXI.RoundedRectangle} shape - Shape to draw\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawShape = function drawShape (shape)\n {\n if (!this._holeMode)\n {\n this.geometry.drawShape(\n shape,\n this._fillStyle.clone(),\n this._lineStyle.clone(),\n this._matrix\n );\n }\n else\n {\n this.geometry.drawHole(shape, this._matrix);\n }\n\n return this;\n };\n\n /**\n * Draw a star shape with an arbitrary number of points.\n *\n * @param {number} x - Center X position of the star\n * @param {number} y - Center Y position of the star\n * @param {number} points - The number of points of the star, must be > 1\n * @param {number} radius - The outer radius of the star\n * @param {number} [innerRadius] - The inner radius between points, default half `radius`\n * @param {number} [rotation=0] - The rotation of the star in radians, where 0 is vertical\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.drawStar = function drawStar (x, y, points, radius, innerRadius, rotation)\n {\n if ( rotation === void 0 ) rotation = 0;\n\n return this.drawPolygon(new Star(x, y, points, radius, innerRadius, rotation));\n };\n\n /**\n * Clears the graphics that were drawn to this Graphics object, and resets fill and line style settings.\n *\n * @return {PIXI.Graphics} This Graphics object. Good for chaining method calls\n */\n Graphics.prototype.clear = function clear ()\n {\n this.geometry.clear();\n this._lineStyle.reset();\n this._fillStyle.reset();\n\n this._matrix = null;\n this._holeMode = false;\n this.currentPath = null;\n\n return this;\n };\n\n /**\n * True if graphics consists of one rectangle, and thus, can be drawn like a Sprite and\n * masked with gl.scissor.\n *\n * @returns {boolean} True if only 1 rect.\n */\n Graphics.prototype.isFastRect = function isFastRect ()\n {\n // will fix this!\n return false;\n // this.graphicsData.length === 1\n // && this.graphicsData[0].shape.type === SHAPES.RECT\n // && !this.graphicsData[0].lineWidth;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._render = function _render (renderer)\n {\n this.finishPoly();\n\n var geometry = this.geometry;\n\n // batch part..\n // batch it!\n geometry.updateBatches();\n\n if (geometry.batchable)\n {\n if (this.batchDirty !== geometry.batchDirty)\n {\n this._populateBatches();\n }\n\n this._renderBatched(renderer);\n }\n else\n {\n // no batching...\n renderer.batch.flush();\n\n this._renderDirect(renderer);\n }\n };\n\n /**\n * Populating batches for rendering\n *\n * @protected\n */\n Graphics.prototype._populateBatches = function _populateBatches ()\n {\n var geometry = this.geometry;\n var blendMode = this.blendMode;\n\n this.batches = [];\n this.batchTint = -1;\n this._transformID = -1;\n this.batchDirty = geometry.batchDirty;\n\n this.vertexData = new Float32Array(geometry.points);\n\n for (var i = 0, l = geometry.batches.length; i < l; i++)\n {\n var gI = geometry.batches[i];\n var color = gI.style.color;\n var vertexData = new Float32Array(this.vertexData.buffer,\n gI.attribStart * 4 * 2,\n gI.attribSize * 2);\n\n var uvs = new Float32Array(geometry.uvsFloat32.buffer,\n gI.attribStart * 4 * 2,\n gI.attribSize * 2);\n\n var indices = new Uint16Array(geometry.indicesUint16.buffer,\n gI.start * 2,\n gI.size);\n\n var batch = {\n vertexData: vertexData,\n blendMode: blendMode,\n indices: indices,\n uvs: uvs,\n _batchRGB: hex2rgb(color),\n _tintRGB: color,\n _texture: gI.style.texture,\n alpha: gI.style.alpha,\n worldAlpha: 1 };\n\n this.batches[i] = batch;\n }\n };\n\n /**\n * Renders the batches using the BathedRenderer plugin\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._renderBatched = function _renderBatched (renderer)\n {\n if (!this.batches.length)\n {\n return;\n }\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n\n this.calculateVertices();\n this.calculateTints();\n\n for (var i = 0, l = this.batches.length; i < l; i++)\n {\n var batch = this.batches[i];\n\n batch.worldAlpha = this.worldAlpha * batch.alpha;\n\n renderer.plugins[this.pluginName].render(batch);\n }\n };\n\n /**\n * Renders the graphics direct\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._renderDirect = function _renderDirect (renderer)\n {\n var shader = this._resolveDirectShader(renderer);\n\n var geometry = this.geometry;\n var tint = this.tint;\n var worldAlpha = this.worldAlpha;\n var uniforms = shader.uniforms;\n var drawCalls = geometry.drawCalls;\n\n // lets set the transfomr\n uniforms.translationMatrix = this.transform.worldTransform;\n\n // and then lets set the tint..\n uniforms.tint[0] = (((tint >> 16) & 0xFF) / 255) * worldAlpha;\n uniforms.tint[1] = (((tint >> 8) & 0xFF) / 255) * worldAlpha;\n uniforms.tint[2] = ((tint & 0xFF) / 255) * worldAlpha;\n uniforms.tint[3] = worldAlpha;\n\n // the first draw call, we can set the uniforms of the shader directly here.\n\n // this means that we can tack advantage of the sync function of pixi!\n // bind and sync uniforms..\n // there is a way to optimise this..\n renderer.shader.bind(shader);\n renderer.geometry.bind(geometry, shader);\n\n // set state..\n renderer.state.set(this.state);\n\n // then render the rest of them...\n for (var i = 0, l = drawCalls.length; i < l; i++)\n {\n this._renderDrawCallDirect(renderer, geometry.drawCalls[i]);\n }\n };\n\n /**\n * Renders specific DrawCall\n *\n * @param {PIXI.Renderer} renderer\n * @param {PIXI.BatchDrawCall} drawCall\n */\n Graphics.prototype._renderDrawCallDirect = function _renderDrawCallDirect (renderer, drawCall)\n {\n var groupTextureCount = drawCall.textureCount;\n\n for (var j = 0; j < groupTextureCount; j++)\n {\n renderer.texture.bind(drawCall.textures[j], j);\n }\n\n renderer.geometry.draw(drawCall.type, drawCall.size, drawCall.start);\n };\n\n /**\n * Resolves shader for direct rendering\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Graphics.prototype._resolveDirectShader = function _resolveDirectShader (renderer)\n {\n var shader = this.shader;\n\n var pluginName = this.pluginName;\n\n if (!shader)\n {\n // if there is no shader here, we can use the default shader.\n // and that only gets created if we actually need it..\n // but may be more than one plugins for graphics\n if (!DEFAULT_SHADERS[pluginName])\n {\n var sampleValues = new Int32Array(16);\n\n for (var i = 0; i < 16; i++)\n {\n sampleValues[i] = i;\n }\n\n var uniforms = {\n tint: new Float32Array([1, 1, 1, 1]),\n translationMatrix: new Matrix(),\n default: UniformGroup.from({ uSamplers: sampleValues }, true),\n };\n\n var program = renderer.plugins[pluginName]._shader.program;\n\n DEFAULT_SHADERS[pluginName] = new Shader(program, uniforms);\n }\n\n shader = DEFAULT_SHADERS[pluginName];\n }\n\n return shader;\n };\n\n /**\n * Retrieves the bounds of the graphic shape as a rectangle object\n *\n * @protected\n */\n Graphics.prototype._calculateBounds = function _calculateBounds ()\n {\n this.finishPoly();\n var lb = this.geometry.bounds;\n\n this._bounds.addFrame(this.transform, lb.minX, lb.minY, lb.maxX, lb.maxY);\n };\n\n /**\n * Tests if a point is inside this graphics object\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */\n Graphics.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, Graphics._TEMP_POINT);\n\n return this.geometry.containsPoint(Graphics._TEMP_POINT);\n };\n\n /**\n * Recalcuate the tint by applying tin to batches using Graphics tint.\n * @protected\n */\n Graphics.prototype.calculateTints = function calculateTints ()\n {\n if (this.batchTint !== this.tint)\n {\n this.batchTint = this.tint;\n\n var tintRGB = hex2rgb(this.tint, temp);\n\n for (var i = 0; i < this.batches.length; i++)\n {\n var batch = this.batches[i];\n\n var batchTint = batch._batchRGB;\n\n var r = (tintRGB[0] * batchTint[0]) * 255;\n var g = (tintRGB[1] * batchTint[1]) * 255;\n var b = (tintRGB[2] * batchTint[2]) * 255;\n\n // TODO Ivan, can this be done in one go?\n var color = (r << 16) + (g << 8) + (b | 0);\n\n batch._tintRGB = (color >> 16)\n + (color & 0xff00)\n + ((color & 0xff) << 16);\n }\n }\n };\n\n /**\n * If there's a transform update or a change to the shape of the\n * geometry, recaculate the vertices.\n * @protected\n */\n Graphics.prototype.calculateVertices = function calculateVertices ()\n {\n if (this._transformID === this.transform._worldID)\n {\n return;\n }\n\n this._transformID = this.transform._worldID;\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var data = this.geometry.points;// batch.vertexDataOriginal;\n var vertexData = this.vertexData;\n\n var count = 0;\n\n for (var i = 0; i < data.length; i += 2)\n {\n var x = data[i];\n var y = data[i + 1];\n\n vertexData[count++] = (a * x) + (c * y) + tx;\n vertexData[count++] = (d * y) + (b * x) + ty;\n }\n };\n\n /**\n * Closes the current path.\n *\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.closePath = function closePath ()\n {\n var currentPath = this.currentPath;\n\n if (currentPath)\n {\n // we don't need to add extra point in the end because buildLine will take care of that\n currentPath.closeStroke = true;\n }\n\n return this;\n };\n\n /**\n * Apply a matrix to the positional data.\n *\n * @param {PIXI.Matrix} matrix - Matrix to use for transform current shape.\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.setMatrix = function setMatrix (matrix)\n {\n this._matrix = matrix;\n\n return this;\n };\n\n /**\n * Begin adding holes to the last draw shape\n * IMPORTANT: holes must be fully inside a shape to work\n * Also weirdness ensues if holes overlap!\n * Ellipses, Circles, Rectangles and Rounded Rectangles cannot be holes or host for holes in CanvasRenderer,\n * please use `moveTo` `lineTo`, `quadraticCurveTo` if you rely on pixi-legacy bundle.\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.beginHole = function beginHole ()\n {\n this.finishPoly();\n this._holeMode = true;\n\n return this;\n };\n\n /**\n * End adding holes to the last draw shape\n * @return {PIXI.Graphics} Returns itself.\n */\n Graphics.prototype.endHole = function endHole ()\n {\n this.finishPoly();\n this._holeMode = false;\n\n return this;\n };\n\n /**\n * Destroys the Graphics object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n Graphics.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.geometry.refCount--;\n if (this.geometry.refCount === 0)\n {\n this.geometry.dispose();\n }\n\n this._matrix = null;\n this.currentPath = null;\n this._lineStyle.destroy();\n this._lineStyle = null;\n this._fillStyle.destroy();\n this._fillStyle = null;\n this.geometry = null;\n this.shader = null;\n this.vertexData = null;\n this.batches.length = 0;\n this.batches = null;\n\n Container.prototype.destroy.call(this, options);\n };\n\n Object.defineProperties( Graphics.prototype, prototypeAccessors );\n\n return Graphics;\n}(Container));\n\n/**\n * Temporary point to use for containsPoint\n *\n * @static\n * @private\n * @member {PIXI.Point}\n */\nGraphics._TEMP_POINT = new Point();\n\nexport { FillStyle, GRAPHICS_CURVES, Graphics, GraphicsData, GraphicsGeometry, LineStyle };\n//# sourceMappingURL=graphics.es.js.map\n","/*!\n * @pixi/sprite - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/sprite is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Point, Rectangle, ObservablePoint } from '@pixi/math';\nimport { sign } from '@pixi/utils';\nimport { Texture } from '@pixi/core';\nimport { BLEND_MODES } from '@pixi/constants';\nimport { Container } from '@pixi/display';\nimport { settings } from '@pixi/settings';\n\nvar tempPoint = new Point();\nvar indices = new Uint16Array([0, 1, 2, 0, 2, 3]);\n\n/**\n * The Sprite object is the base for all textured objects that are rendered to the screen\n*\n * A sprite can be created directly from an image like this:\n *\n * ```js\n * let sprite = PIXI.Sprite.from('assets/image.png');\n * ```\n *\n * The more efficient way to create sprites is using a {@link PIXI.Spritesheet},\n * as swapping base textures when rendering to the screen is inefficient.\n *\n * ```js\n * PIXI.Loader.shared.add(\"assets/spritesheet.json\").load(setup);\n *\n * function setup() {\n * let sheet = PIXI.Loader.shared.resources[\"assets/spritesheet.json\"].spritesheet;\n * let sprite = new PIXI.Sprite(sheet.textures[\"image.png\"]);\n * ...\n * }\n * ```\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Sprite = /*@__PURE__*/(function (Container) {\n function Sprite(texture)\n {\n Container.call(this);\n\n /**\n * The anchor point defines the normalized coordinates\n * in the texture that map to the position of this\n * sprite.\n *\n * By default, this is `(0,0)` (or `texture.defaultAnchor`\n * if you have modified that), which means the position\n * `(x,y)` of this `Sprite` will be the top-left corner.\n *\n * Note: Updating `texture.defaultAnchor` after\n * constructing a `Sprite` does _not_ update its anchor.\n *\n * {@link https://docs.cocos2d-x.org/cocos2d-x/en/sprites/manipulation.html}\n *\n * @default `texture.defaultAnchor`\n * @member {PIXI.ObservablePoint}\n * @private\n */\n this._anchor = new ObservablePoint(\n this._onAnchorUpdate,\n this,\n (texture ? texture.defaultAnchor.x : 0),\n (texture ? texture.defaultAnchor.y : 0)\n );\n\n /**\n * The texture that the sprite is using\n *\n * @private\n * @member {PIXI.Texture}\n */\n this._texture = null;\n\n /**\n * The width of the sprite (this is initially set by the texture)\n *\n * @private\n * @member {number}\n */\n this._width = 0;\n\n /**\n * The height of the sprite (this is initially set by the texture)\n *\n * @private\n * @member {number}\n */\n this._height = 0;\n\n /**\n * The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @private\n * @member {number}\n * @default 0xFFFFFF\n */\n this._tint = null;\n this._tintRGB = null;\n this.tint = 0xFFFFFF;\n\n /**\n * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * The shader that will be used to render the sprite. Set to null to remove a current shader.\n *\n * @member {PIXI.Filter|PIXI.Shader}\n */\n this.shader = null;\n\n /**\n * Cached tint value so we can tell when the tint is changed.\n * Value is used for 2d CanvasRenderer.\n *\n * @protected\n * @member {number}\n * @default 0xFFFFFF\n */\n this._cachedTint = 0xFFFFFF;\n\n /**\n * this is used to store the uvs data of the sprite, assigned at the same time\n * as the vertexData in calculateVertices()\n *\n * @private\n * @member {Float32Array}\n */\n this.uvs = null;\n\n // call texture setter\n this.texture = texture || Texture.EMPTY;\n\n /**\n * this is used to store the vertex data of the sprite (basically a quad)\n *\n * @private\n * @member {Float32Array}\n */\n this.vertexData = new Float32Array(8);\n\n /**\n * This is used to calculate the bounds of the object IF it is a trimmed sprite\n *\n * @private\n * @member {Float32Array}\n */\n this.vertexTrimmedData = null;\n\n this._transformID = -1;\n this._textureID = -1;\n\n this._transformTrimmedID = -1;\n this._textureTrimmedID = -1;\n\n // Batchable stuff..\n // TODO could make this a mixin?\n this.indices = indices;\n this.size = 4;\n this.start = 0;\n\n /**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_render' & '_renderCanvas' methods.\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = 'batch';\n\n /**\n * used to fast check if a sprite is.. a sprite!\n * @member {boolean}\n */\n this.isSprite = true;\n\n /**\n * Internal roundPixels field\n *\n * @member {boolean}\n * @private\n */\n this._roundPixels = settings.ROUND_PIXELS;\n }\n\n if ( Container ) Sprite.__proto__ = Container;\n Sprite.prototype = Object.create( Container && Container.prototype );\n Sprite.prototype.constructor = Sprite;\n\n var prototypeAccessors = { roundPixels: { configurable: true },width: { configurable: true },height: { configurable: true },anchor: { configurable: true },tint: { configurable: true },texture: { configurable: true } };\n\n /**\n * When the texture is updated, this event will fire to update the scale and frame\n *\n * @private\n */\n Sprite.prototype._onTextureUpdate = function _onTextureUpdate ()\n {\n this._textureID = -1;\n this._textureTrimmedID = -1;\n this._cachedTint = 0xFFFFFF;\n\n // so if _width is 0 then width was not set..\n if (this._width)\n {\n this.scale.x = sign(this.scale.x) * this._width / this._texture.orig.width;\n }\n\n if (this._height)\n {\n this.scale.y = sign(this.scale.y) * this._height / this._texture.orig.height;\n }\n };\n\n /**\n * Called when the anchor position updates.\n *\n * @private\n */\n Sprite.prototype._onAnchorUpdate = function _onAnchorUpdate ()\n {\n this._transformID = -1;\n this._transformTrimmedID = -1;\n };\n\n /**\n * calculates worldTransform * vertices, store it in vertexData\n */\n Sprite.prototype.calculateVertices = function calculateVertices ()\n {\n var texture = this._texture;\n\n if (this._transformID === this.transform._worldID && this._textureID === texture._updateID)\n {\n return;\n }\n\n // update texture UV here, because base texture can be changed without calling `_onTextureUpdate`\n if (this._textureID !== texture._updateID)\n {\n this.uvs = this._texture._uvs.uvsFloat32;\n }\n\n this._transformID = this.transform._worldID;\n this._textureID = texture._updateID;\n\n // set the vertex data\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n var vertexData = this.vertexData;\n var trim = texture.trim;\n var orig = texture.orig;\n var anchor = this._anchor;\n\n var w0 = 0;\n var w1 = 0;\n var h0 = 0;\n var h1 = 0;\n\n if (trim)\n {\n // if the sprite is trimmed and is not a tilingsprite then we need to add the extra\n // space before transforming the sprite coords.\n w1 = trim.x - (anchor._x * orig.width);\n w0 = w1 + trim.width;\n\n h1 = trim.y - (anchor._y * orig.height);\n h0 = h1 + trim.height;\n }\n else\n {\n w1 = -anchor._x * orig.width;\n w0 = w1 + orig.width;\n\n h1 = -anchor._y * orig.height;\n h0 = h1 + orig.height;\n }\n\n // xy\n vertexData[0] = (a * w1) + (c * h1) + tx;\n vertexData[1] = (d * h1) + (b * w1) + ty;\n\n // xy\n vertexData[2] = (a * w0) + (c * h1) + tx;\n vertexData[3] = (d * h1) + (b * w0) + ty;\n\n // xy\n vertexData[4] = (a * w0) + (c * h0) + tx;\n vertexData[5] = (d * h0) + (b * w0) + ty;\n\n // xy\n vertexData[6] = (a * w1) + (c * h0) + tx;\n vertexData[7] = (d * h0) + (b * w1) + ty;\n\n if (this._roundPixels)\n {\n for (var i = 0; i < 8; i++)\n {\n vertexData[i] = Math.round(vertexData[i]);\n }\n }\n };\n\n /**\n * calculates worldTransform * vertices for a non texture with a trim. store it in vertexTrimmedData\n * This is used to ensure that the true width and height of a trimmed texture is respected\n */\n Sprite.prototype.calculateTrimmedVertices = function calculateTrimmedVertices ()\n {\n if (!this.vertexTrimmedData)\n {\n this.vertexTrimmedData = new Float32Array(8);\n }\n else if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID)\n {\n return;\n }\n\n this._transformTrimmedID = this.transform._worldID;\n this._textureTrimmedID = this._texture._updateID;\n\n // lets do some special trim code!\n var texture = this._texture;\n var vertexData = this.vertexTrimmedData;\n var orig = texture.orig;\n var anchor = this._anchor;\n\n // lets calculate the new untrimmed bounds..\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var w1 = -anchor._x * orig.width;\n var w0 = w1 + orig.width;\n\n var h1 = -anchor._y * orig.height;\n var h0 = h1 + orig.height;\n\n // xy\n vertexData[0] = (a * w1) + (c * h1) + tx;\n vertexData[1] = (d * h1) + (b * w1) + ty;\n\n // xy\n vertexData[2] = (a * w0) + (c * h1) + tx;\n vertexData[3] = (d * h1) + (b * w0) + ty;\n\n // xy\n vertexData[4] = (a * w0) + (c * h0) + tx;\n vertexData[5] = (d * h0) + (b * w0) + ty;\n\n // xy\n vertexData[6] = (a * w1) + (c * h0) + tx;\n vertexData[7] = (d * h0) + (b * w1) + ty;\n };\n\n /**\n *\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The webgl renderer to use.\n */\n Sprite.prototype._render = function _render (renderer)\n {\n this.calculateVertices();\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n renderer.plugins[this.pluginName].render(this);\n };\n\n /**\n * Updates the bounds of the sprite.\n *\n * @protected\n */\n Sprite.prototype._calculateBounds = function _calculateBounds ()\n {\n var trim = this._texture.trim;\n var orig = this._texture.orig;\n\n // First lets check to see if the current texture has a trim..\n if (!trim || (trim.width === orig.width && trim.height === orig.height))\n {\n // no trim! lets use the usual calculations..\n this.calculateVertices();\n this._bounds.addQuad(this.vertexData);\n }\n else\n {\n // lets calculate a special trimmed bounds...\n this.calculateTrimmedVertices();\n this._bounds.addQuad(this.vertexTrimmedData);\n }\n };\n\n /**\n * Gets the local bounds of the sprite object.\n *\n * @param {PIXI.Rectangle} [rect] - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n Sprite.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n // we can do a fast local bounds if the sprite has no children!\n if (this.children.length === 0)\n {\n this._bounds.minX = this._texture.orig.width * -this._anchor._x;\n this._bounds.minY = this._texture.orig.height * -this._anchor._y;\n this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x);\n this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y);\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n }\n\n return Container.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * Tests if a point is inside this sprite\n *\n * @param {PIXI.Point} point - the point to test\n * @return {boolean} the result of the test\n */\n Sprite.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, tempPoint);\n\n var width = this._texture.orig.width;\n var height = this._texture.orig.height;\n var x1 = -width * this.anchor.x;\n var y1 = 0;\n\n if (tempPoint.x >= x1 && tempPoint.x < x1 + width)\n {\n y1 = -height * this.anchor.y;\n\n if (tempPoint.y >= y1 && tempPoint.y < y1 + height)\n {\n return true;\n }\n }\n\n return false;\n };\n\n /**\n * Destroys this sprite and optionally its texture and children\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well\n */\n Sprite.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this._texture.off('update', this._onTextureUpdate, this);\n\n this._anchor = null;\n\n var destroyTexture = typeof options === 'boolean' ? options : options && options.texture;\n\n if (destroyTexture)\n {\n var destroyBaseTexture = typeof options === 'boolean' ? options : options && options.baseTexture;\n\n this._texture.destroy(!!destroyBaseTexture);\n }\n\n this._texture = null;\n this.shader = null;\n };\n\n // some helper functions..\n\n /**\n * Helper function that creates a new sprite based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source Source to create texture from\n * @param {object} [options] See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.Sprite} The newly created sprite\n */\n Sprite.from = function from (source, options)\n {\n var texture = (source instanceof Texture)\n ? source\n : Texture.from(source, options);\n\n return new Sprite(texture);\n };\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n prototypeAccessors.roundPixels.set = function (value)\n {\n if (this._roundPixels !== value)\n {\n this._transformID = -1;\n }\n this._roundPixels = value;\n };\n\n prototypeAccessors.roundPixels.get = function ()\n {\n return this._roundPixels;\n };\n\n /**\n * The width of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return Math.abs(this.scale.x) * this._texture.orig.width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n var s = sign(this.scale.x) || 1;\n\n this.scale.x = s * value / this._texture.orig.width;\n this._width = value;\n };\n\n /**\n * The height of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return Math.abs(this.scale.y) * this._texture.orig.height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n var s = sign(this.scale.y) || 1;\n\n this.scale.y = s * value / this._texture.orig.height;\n this._height = value;\n };\n\n /**\n * The anchor sets the origin point of the text. The default value is taken from the {@link PIXI.Texture|Texture}\n * and passed to the constructor.\n *\n * The default is `(0,0)`, this means the text's origin is the top left.\n *\n * Setting the anchor to `(0.5,0.5)` means the text's origin is centered.\n *\n * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner.\n *\n * If you pass only single parameter, it will set both x and y to the same value as shown in the example below.\n *\n * @example\n * const sprite = new PIXI.Sprite(texture);\n * sprite.anchor.set(0.5); // This will set the origin to center. (0.5) is same as (0.5, 0.5).\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.anchor.get = function ()\n {\n return this._anchor;\n };\n\n prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._anchor.copyFrom(value);\n };\n\n /**\n * The tint applied to the sprite. This is a hex value.\n * A value of 0xFFFFFF will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._tint = value;\n this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16);\n };\n\n /**\n * The texture that the sprite is using\n *\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this._texture;\n };\n\n prototypeAccessors.texture.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._texture === value)\n {\n return;\n }\n\n this._texture = value || Texture.EMPTY;\n this._cachedTint = 0xFFFFFF;\n\n this._textureID = -1;\n this._textureTrimmedID = -1;\n\n if (value)\n {\n // wait for the texture to load\n if (value.baseTexture.valid)\n {\n this._onTextureUpdate();\n }\n else\n {\n value.once('update', this._onTextureUpdate, this);\n }\n }\n };\n\n Object.defineProperties( Sprite.prototype, prototypeAccessors );\n\n return Sprite;\n}(Container));\n\nexport { Sprite };\n//# sourceMappingURL=sprite.es.js.map\n","/*!\n * @pixi/text - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/text is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Sprite } from '@pixi/sprite';\nimport { Texture } from '@pixi/core';\nimport { settings } from '@pixi/settings';\nimport { Rectangle } from '@pixi/math';\nimport { hex2string, hex2rgb, string2hex, trimCanvas, sign } from '@pixi/utils';\n\n/**\n * Constants that define the type of gradient on text.\n *\n * @static\n * @constant\n * @name TEXT_GRADIENT\n * @memberof PIXI\n * @type {object}\n * @property {number} LINEAR_VERTICAL Vertical gradient\n * @property {number} LINEAR_HORIZONTAL Linear gradient\n */\nvar TEXT_GRADIENT = {\n LINEAR_VERTICAL: 0,\n LINEAR_HORIZONTAL: 1,\n};\n\n// disabling eslint for now, going to rewrite this in v5\n\nvar defaultStyle = {\n align: 'left',\n breakWords: false,\n dropShadow: false,\n dropShadowAlpha: 1,\n dropShadowAngle: Math.PI / 6,\n dropShadowBlur: 0,\n dropShadowColor: 'black',\n dropShadowDistance: 5,\n fill: 'black',\n fillGradientType: TEXT_GRADIENT.LINEAR_VERTICAL,\n fillGradientStops: [],\n fontFamily: 'Arial',\n fontSize: 26,\n fontStyle: 'normal',\n fontVariant: 'normal',\n fontWeight: 'normal',\n letterSpacing: 0,\n lineHeight: 0,\n lineJoin: 'miter',\n miterLimit: 10,\n padding: 0,\n stroke: 'black',\n strokeThickness: 0,\n textBaseline: 'alphabetic',\n trim: false,\n whiteSpace: 'pre',\n wordWrap: false,\n wordWrapWidth: 100,\n leading: 0,\n};\n\nvar genericFontFamilies = [\n 'serif',\n 'sans-serif',\n 'monospace',\n 'cursive',\n 'fantasy',\n 'system-ui' ];\n\n/**\n * A TextStyle Object contains information to decorate a Text objects.\n *\n * An instance can be shared between multiple Text objects; then changing the style will update all text objects using it.\n *\n * A tool can be used to generate a text style [here](https://pixijs.io/pixi-text-style).\n *\n * @class\n * @memberof PIXI\n */\nvar TextStyle = function TextStyle(style)\n{\n this.styleID = 0;\n\n this.reset();\n\n deepCopyProperties(this, style, style);\n};\n\nvar prototypeAccessors = { align: { configurable: true },breakWords: { configurable: true },dropShadow: { configurable: true },dropShadowAlpha: { configurable: true },dropShadowAngle: { configurable: true },dropShadowBlur: { configurable: true },dropShadowColor: { configurable: true },dropShadowDistance: { configurable: true },fill: { configurable: true },fillGradientType: { configurable: true },fillGradientStops: { configurable: true },fontFamily: { configurable: true },fontSize: { configurable: true },fontStyle: { configurable: true },fontVariant: { configurable: true },fontWeight: { configurable: true },letterSpacing: { configurable: true },lineHeight: { configurable: true },leading: { configurable: true },lineJoin: { configurable: true },miterLimit: { configurable: true },padding: { configurable: true },stroke: { configurable: true },strokeThickness: { configurable: true },textBaseline: { configurable: true },trim: { configurable: true },whiteSpace: { configurable: true },wordWrap: { configurable: true },wordWrapWidth: { configurable: true } };\n\n/**\n * Creates a new TextStyle object with the same values as this one.\n * Note that the only the properties of the object are cloned.\n *\n * @return {PIXI.TextStyle} New cloned TextStyle object\n */\nTextStyle.prototype.clone = function clone ()\n{\n var clonedProperties = {};\n\n deepCopyProperties(clonedProperties, this, defaultStyle);\n\n return new TextStyle(clonedProperties);\n};\n\n/**\n * Resets all properties to the defaults specified in TextStyle.prototype._default\n */\nTextStyle.prototype.reset = function reset ()\n{\n deepCopyProperties(this, defaultStyle, defaultStyle);\n};\n\n/**\n * Alignment for multiline text ('left', 'center' or 'right'), does not affect single line text\n *\n * @member {string}\n */\nprototypeAccessors.align.get = function ()\n{\n return this._align;\n};\nprototypeAccessors.align.set = function (align) // eslint-disable-line require-jsdoc\n{\n if (this._align !== align)\n {\n this._align = align;\n this.styleID++;\n }\n};\n\n/**\n * Indicates if lines can be wrapped within words, it needs wordWrap to be set to true\n *\n * @member {boolean}\n */\nprototypeAccessors.breakWords.get = function ()\n{\n return this._breakWords;\n};\nprototypeAccessors.breakWords.set = function (breakWords) // eslint-disable-line require-jsdoc\n{\n if (this._breakWords !== breakWords)\n {\n this._breakWords = breakWords;\n this.styleID++;\n }\n};\n\n/**\n * Set a drop shadow for the text\n *\n * @member {boolean}\n */\nprototypeAccessors.dropShadow.get = function ()\n{\n return this._dropShadow;\n};\nprototypeAccessors.dropShadow.set = function (dropShadow) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadow !== dropShadow)\n {\n this._dropShadow = dropShadow;\n this.styleID++;\n }\n};\n\n/**\n * Set alpha for the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowAlpha.get = function ()\n{\n return this._dropShadowAlpha;\n};\nprototypeAccessors.dropShadowAlpha.set = function (dropShadowAlpha) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowAlpha !== dropShadowAlpha)\n {\n this._dropShadowAlpha = dropShadowAlpha;\n this.styleID++;\n }\n};\n\n/**\n * Set a angle of the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowAngle.get = function ()\n{\n return this._dropShadowAngle;\n};\nprototypeAccessors.dropShadowAngle.set = function (dropShadowAngle) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowAngle !== dropShadowAngle)\n {\n this._dropShadowAngle = dropShadowAngle;\n this.styleID++;\n }\n};\n\n/**\n * Set a shadow blur radius\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowBlur.get = function ()\n{\n return this._dropShadowBlur;\n};\nprototypeAccessors.dropShadowBlur.set = function (dropShadowBlur) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowBlur !== dropShadowBlur)\n {\n this._dropShadowBlur = dropShadowBlur;\n this.styleID++;\n }\n};\n\n/**\n * A fill style to be used on the dropshadow e.g 'red', '#00FF00'\n *\n * @member {string|number}\n */\nprototypeAccessors.dropShadowColor.get = function ()\n{\n return this._dropShadowColor;\n};\nprototypeAccessors.dropShadowColor.set = function (dropShadowColor) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(dropShadowColor);\n if (this._dropShadowColor !== outputColor)\n {\n this._dropShadowColor = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * Set a distance of the drop shadow\n *\n * @member {number}\n */\nprototypeAccessors.dropShadowDistance.get = function ()\n{\n return this._dropShadowDistance;\n};\nprototypeAccessors.dropShadowDistance.set = function (dropShadowDistance) // eslint-disable-line require-jsdoc\n{\n if (this._dropShadowDistance !== dropShadowDistance)\n {\n this._dropShadowDistance = dropShadowDistance;\n this.styleID++;\n }\n};\n\n/**\n * A canvas fillstyle that will be used on the text e.g 'red', '#00FF00'.\n * Can be an array to create a gradient eg ['#000000','#FFFFFF']\n * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle|MDN}\n *\n * @member {string|string[]|number|number[]|CanvasGradient|CanvasPattern}\n */\nprototypeAccessors.fill.get = function ()\n{\n return this._fill;\n};\nprototypeAccessors.fill.set = function (fill) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(fill);\n if (this._fill !== outputColor)\n {\n this._fill = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * If fill is an array of colours to create a gradient, this can change the type/direction of the gradient.\n * See {@link PIXI.TEXT_GRADIENT}\n *\n * @member {number}\n */\nprototypeAccessors.fillGradientType.get = function ()\n{\n return this._fillGradientType;\n};\nprototypeAccessors.fillGradientType.set = function (fillGradientType) // eslint-disable-line require-jsdoc\n{\n if (this._fillGradientType !== fillGradientType)\n {\n this._fillGradientType = fillGradientType;\n this.styleID++;\n }\n};\n\n/**\n * If fill is an array of colours to create a gradient, this array can set the stop points\n * (numbers between 0 and 1) for the color, overriding the default behaviour of evenly spacing them.\n *\n * @member {number[]}\n */\nprototypeAccessors.fillGradientStops.get = function ()\n{\n return this._fillGradientStops;\n};\nprototypeAccessors.fillGradientStops.set = function (fillGradientStops) // eslint-disable-line require-jsdoc\n{\n if (!areArraysEqual(this._fillGradientStops,fillGradientStops))\n {\n this._fillGradientStops = fillGradientStops;\n this.styleID++;\n }\n};\n\n/**\n * The font family\n *\n * @member {string|string[]}\n */\nprototypeAccessors.fontFamily.get = function ()\n{\n return this._fontFamily;\n};\nprototypeAccessors.fontFamily.set = function (fontFamily) // eslint-disable-line require-jsdoc\n{\n if (this.fontFamily !== fontFamily)\n {\n this._fontFamily = fontFamily;\n this.styleID++;\n }\n};\n\n/**\n * The font size\n * (as a number it converts to px, but as a string, equivalents are '26px','20pt','160%' or '1.6em')\n *\n * @member {number|string}\n */\nprototypeAccessors.fontSize.get = function ()\n{\n return this._fontSize;\n};\nprototypeAccessors.fontSize.set = function (fontSize) // eslint-disable-line require-jsdoc\n{\n if (this._fontSize !== fontSize)\n {\n this._fontSize = fontSize;\n this.styleID++;\n }\n};\n\n/**\n * The font style\n * ('normal', 'italic' or 'oblique')\n *\n * @member {string}\n */\nprototypeAccessors.fontStyle.get = function ()\n{\n return this._fontStyle;\n};\nprototypeAccessors.fontStyle.set = function (fontStyle) // eslint-disable-line require-jsdoc\n{\n if (this._fontStyle !== fontStyle)\n {\n this._fontStyle = fontStyle;\n this.styleID++;\n }\n};\n\n/**\n * The font variant\n * ('normal' or 'small-caps')\n *\n * @member {string}\n */\nprototypeAccessors.fontVariant.get = function ()\n{\n return this._fontVariant;\n};\nprototypeAccessors.fontVariant.set = function (fontVariant) // eslint-disable-line require-jsdoc\n{\n if (this._fontVariant !== fontVariant)\n {\n this._fontVariant = fontVariant;\n this.styleID++;\n }\n};\n\n/**\n * The font weight\n * ('normal', 'bold', 'bolder', 'lighter' and '100', '200', '300', '400', '500', '600', '700', 800' or '900')\n *\n * @member {string}\n */\nprototypeAccessors.fontWeight.get = function ()\n{\n return this._fontWeight;\n};\nprototypeAccessors.fontWeight.set = function (fontWeight) // eslint-disable-line require-jsdoc\n{\n if (this._fontWeight !== fontWeight)\n {\n this._fontWeight = fontWeight;\n this.styleID++;\n }\n};\n\n/**\n * The amount of spacing between letters, default is 0\n *\n * @member {number}\n */\nprototypeAccessors.letterSpacing.get = function ()\n{\n return this._letterSpacing;\n};\nprototypeAccessors.letterSpacing.set = function (letterSpacing) // eslint-disable-line require-jsdoc\n{\n if (this._letterSpacing !== letterSpacing)\n {\n this._letterSpacing = letterSpacing;\n this.styleID++;\n }\n};\n\n/**\n * The line height, a number that represents the vertical space that a letter uses\n *\n * @member {number}\n */\nprototypeAccessors.lineHeight.get = function ()\n{\n return this._lineHeight;\n};\nprototypeAccessors.lineHeight.set = function (lineHeight) // eslint-disable-line require-jsdoc\n{\n if (this._lineHeight !== lineHeight)\n {\n this._lineHeight = lineHeight;\n this.styleID++;\n }\n};\n\n/**\n * The space between lines\n *\n * @member {number}\n */\nprototypeAccessors.leading.get = function ()\n{\n return this._leading;\n};\nprototypeAccessors.leading.set = function (leading) // eslint-disable-line require-jsdoc\n{\n if (this._leading !== leading)\n {\n this._leading = leading;\n this.styleID++;\n }\n};\n\n/**\n * The lineJoin property sets the type of corner created, it can resolve spiked text issues.\n * Default is 'miter' (creates a sharp corner).\n *\n * @member {string}\n */\nprototypeAccessors.lineJoin.get = function ()\n{\n return this._lineJoin;\n};\nprototypeAccessors.lineJoin.set = function (lineJoin) // eslint-disable-line require-jsdoc\n{\n if (this._lineJoin !== lineJoin)\n {\n this._lineJoin = lineJoin;\n this.styleID++;\n }\n};\n\n/**\n * The miter limit to use when using the 'miter' lineJoin mode\n * This can reduce or increase the spikiness of rendered text.\n *\n * @member {number}\n */\nprototypeAccessors.miterLimit.get = function ()\n{\n return this._miterLimit;\n};\nprototypeAccessors.miterLimit.set = function (miterLimit) // eslint-disable-line require-jsdoc\n{\n if (this._miterLimit !== miterLimit)\n {\n this._miterLimit = miterLimit;\n this.styleID++;\n }\n};\n\n/**\n * Occasionally some fonts are cropped. Adding some padding will prevent this from happening\n * by adding padding to all sides of the text.\n *\n * @member {number}\n */\nprototypeAccessors.padding.get = function ()\n{\n return this._padding;\n};\nprototypeAccessors.padding.set = function (padding) // eslint-disable-line require-jsdoc\n{\n if (this._padding !== padding)\n {\n this._padding = padding;\n this.styleID++;\n }\n};\n\n/**\n * A canvas fillstyle that will be used on the text stroke\n * e.g 'blue', '#FCFF00'\n *\n * @member {string|number}\n */\nprototypeAccessors.stroke.get = function ()\n{\n return this._stroke;\n};\nprototypeAccessors.stroke.set = function (stroke) // eslint-disable-line require-jsdoc\n{\n var outputColor = getColor(stroke);\n if (this._stroke !== outputColor)\n {\n this._stroke = outputColor;\n this.styleID++;\n }\n};\n\n/**\n * A number that represents the thickness of the stroke.\n * Default is 0 (no stroke)\n *\n * @member {number}\n */\nprototypeAccessors.strokeThickness.get = function ()\n{\n return this._strokeThickness;\n};\nprototypeAccessors.strokeThickness.set = function (strokeThickness) // eslint-disable-line require-jsdoc\n{\n if (this._strokeThickness !== strokeThickness)\n {\n this._strokeThickness = strokeThickness;\n this.styleID++;\n }\n};\n\n/**\n * The baseline of the text that is rendered.\n *\n * @member {string}\n */\nprototypeAccessors.textBaseline.get = function ()\n{\n return this._textBaseline;\n};\nprototypeAccessors.textBaseline.set = function (textBaseline) // eslint-disable-line require-jsdoc\n{\n if (this._textBaseline !== textBaseline)\n {\n this._textBaseline = textBaseline;\n this.styleID++;\n }\n};\n\n/**\n * Trim transparent borders\n *\n * @member {boolean}\n */\nprototypeAccessors.trim.get = function ()\n{\n return this._trim;\n};\nprototypeAccessors.trim.set = function (trim) // eslint-disable-line require-jsdoc\n{\n if (this._trim !== trim)\n {\n this._trim = trim;\n this.styleID++;\n }\n};\n\n/**\n * How newlines and spaces should be handled.\n * Default is 'pre' (preserve, preserve).\n *\n * value | New lines | Spaces\n * --- | --- | ---\n * 'normal' | Collapse | Collapse\n * 'pre' | Preserve | Preserve\n * 'pre-line' | Preserve | Collapse\n *\n * @member {string}\n */\nprototypeAccessors.whiteSpace.get = function ()\n{\n return this._whiteSpace;\n};\nprototypeAccessors.whiteSpace.set = function (whiteSpace) // eslint-disable-line require-jsdoc\n{\n if (this._whiteSpace !== whiteSpace)\n {\n this._whiteSpace = whiteSpace;\n this.styleID++;\n }\n};\n\n/**\n * Indicates if word wrap should be used\n *\n * @member {boolean}\n */\nprototypeAccessors.wordWrap.get = function ()\n{\n return this._wordWrap;\n};\nprototypeAccessors.wordWrap.set = function (wordWrap) // eslint-disable-line require-jsdoc\n{\n if (this._wordWrap !== wordWrap)\n {\n this._wordWrap = wordWrap;\n this.styleID++;\n }\n};\n\n/**\n * The width at which text will wrap, it needs wordWrap to be set to true\n *\n * @member {number}\n */\nprototypeAccessors.wordWrapWidth.get = function ()\n{\n return this._wordWrapWidth;\n};\nprototypeAccessors.wordWrapWidth.set = function (wordWrapWidth) // eslint-disable-line require-jsdoc\n{\n if (this._wordWrapWidth !== wordWrapWidth)\n {\n this._wordWrapWidth = wordWrapWidth;\n this.styleID++;\n }\n};\n\n/**\n * Generates a font style string to use for `TextMetrics.measureFont()`.\n *\n * @return {string} Font style string, for passing to `TextMetrics.measureFont()`\n */\nTextStyle.prototype.toFontString = function toFontString ()\n{\n // build canvas api font setting from individual components. Convert a numeric this.fontSize to px\n var fontSizeString = (typeof this.fontSize === 'number') ? ((this.fontSize) + \"px\") : this.fontSize;\n\n // Clean-up fontFamily property by quoting each font name\n // this will support font names with spaces\n var fontFamilies = this.fontFamily;\n\n if (!Array.isArray(this.fontFamily))\n {\n fontFamilies = this.fontFamily.split(',');\n }\n\n for (var i = fontFamilies.length - 1; i >= 0; i--)\n {\n // Trim any extra white-space\n var fontFamily = fontFamilies[i].trim();\n\n // Check if font already contains strings\n if (!(/([\\\"\\'])[^\\'\\\"]+\\1/).test(fontFamily) && genericFontFamilies.indexOf(fontFamily) < 0)\n {\n fontFamily = \"\\\"\" + fontFamily + \"\\\"\";\n }\n fontFamilies[i] = fontFamily;\n }\n\n return ((this.fontStyle) + \" \" + (this.fontVariant) + \" \" + (this.fontWeight) + \" \" + fontSizeString + \" \" + (fontFamilies.join(',')));\n};\n\nObject.defineProperties( TextStyle.prototype, prototypeAccessors );\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * @private\n * @param {number|number[]} color\n * @return {string} The color as a string.\n */\nfunction getSingleColor(color)\n{\n if (typeof color === 'number')\n {\n return hex2string(color);\n }\n else if ( typeof color === 'string' )\n {\n if ( color.indexOf('0x') === 0 )\n {\n color = color.replace('0x', '#');\n }\n }\n\n return color;\n}\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * This version can also convert array of colors\n * @private\n * @param {number|number[]} color\n * @return {string} The color as a string.\n */\nfunction getColor(color)\n{\n if (!Array.isArray(color))\n {\n return getSingleColor(color);\n }\n else\n {\n for (var i = 0; i < color.length; ++i)\n {\n color[i] = getSingleColor(color[i]);\n }\n\n return color;\n }\n}\n\n/**\n * Utility function to convert hexadecimal colors to strings, and simply return the color if it's a string.\n * This version can also convert array of colors\n * @private\n * @param {Array} array1 First array to compare\n * @param {Array} array2 Second array to compare\n * @return {boolean} Do the arrays contain the same values in the same order\n */\nfunction areArraysEqual(array1, array2)\n{\n if (!Array.isArray(array1) || !Array.isArray(array2))\n {\n return false;\n }\n\n if (array1.length !== array2.length)\n {\n return false;\n }\n\n for (var i = 0; i < array1.length; ++i)\n {\n if (array1[i] !== array2[i])\n {\n return false;\n }\n }\n\n return true;\n}\n\n/**\n * Utility function to ensure that object properties are copied by value, and not by reference\n * @private\n * @param {Object} target Target object to copy properties into\n * @param {Object} source Source object for the properties to copy\n * @param {string} propertyObj Object containing properties names we want to loop over\n */\nfunction deepCopyProperties(target, source, propertyObj) {\n for (var prop in propertyObj) {\n if (Array.isArray(source[prop])) {\n target[prop] = source[prop].slice();\n } else {\n target[prop] = source[prop];\n }\n }\n}\n\n/**\n * The TextMetrics object represents the measurement of a block of text with a specified style.\n *\n * ```js\n * let style = new PIXI.TextStyle({fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'})\n * let textMetrics = PIXI.TextMetrics.measureText('Your text', style)\n * ```\n *\n * @class\n * @memberof PIXI\n */\nvar TextMetrics = function TextMetrics(text, style, width, height, lines, lineWidths, lineHeight, maxLineWidth, fontProperties)\n{\n /**\n * The text that was measured\n *\n * @member {string}\n */\n this.text = text;\n\n /**\n * The style that was measured\n *\n * @member {PIXI.TextStyle}\n */\n this.style = style;\n\n /**\n * The measured width of the text\n *\n * @member {number}\n */\n this.width = width;\n\n /**\n * The measured height of the text\n *\n * @member {number}\n */\n this.height = height;\n\n /**\n * An array of lines of the text broken by new lines and wrapping is specified in style\n *\n * @member {string[]}\n */\n this.lines = lines;\n\n /**\n * An array of the line widths for each line matched to `lines`\n *\n * @member {number[]}\n */\n this.lineWidths = lineWidths;\n\n /**\n * The measured line height for this style\n *\n * @member {number}\n */\n this.lineHeight = lineHeight;\n\n /**\n * The maximum line width for all measured lines\n *\n * @member {number}\n */\n this.maxLineWidth = maxLineWidth;\n\n /**\n * The font properties object from TextMetrics.measureFont\n *\n * @member {PIXI.IFontMetrics}\n */\n this.fontProperties = fontProperties;\n};\n\n/**\n * Measures the supplied string of text and returns a Rectangle.\n *\n * @param {string} text - the text to measure.\n * @param {PIXI.TextStyle} style - the text style to use for measuring\n * @param {boolean} [wordWrap] - optional override for if word-wrap should be applied to the text.\n * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring.\n * @return {PIXI.TextMetrics} measured width and height of the text.\n */\nTextMetrics.measureText = function measureText (text, style, wordWrap, canvas)\n{\n if ( canvas === void 0 ) canvas = TextMetrics._canvas;\n\n wordWrap = (wordWrap === undefined || wordWrap === null) ? style.wordWrap : wordWrap;\n var font = style.toFontString();\n var fontProperties = TextMetrics.measureFont(font);\n\n // fallback in case UA disallow canvas data extraction\n // (toDataURI, getImageData functions)\n if (fontProperties.fontSize === 0)\n {\n fontProperties.fontSize = style.fontSize;\n fontProperties.ascent = style.fontSize;\n }\n\n var context = canvas.getContext('2d');\n\n context.font = font;\n\n var outputText = wordWrap ? TextMetrics.wordWrap(text, style, canvas) : text;\n var lines = outputText.split(/(?:\\r\\n|\\r|\\n)/);\n var lineWidths = new Array(lines.length);\n var maxLineWidth = 0;\n\n for (var i = 0; i < lines.length; i++)\n {\n var lineWidth = context.measureText(lines[i]).width + ((lines[i].length - 1) * style.letterSpacing);\n\n lineWidths[i] = lineWidth;\n maxLineWidth = Math.max(maxLineWidth, lineWidth);\n }\n var width = maxLineWidth + style.strokeThickness;\n\n if (style.dropShadow)\n {\n width += style.dropShadowDistance;\n }\n\n var lineHeight = style.lineHeight || fontProperties.fontSize + style.strokeThickness;\n var height = Math.max(lineHeight, fontProperties.fontSize + style.strokeThickness)\n + ((lines.length - 1) * (lineHeight + style.leading));\n\n if (style.dropShadow)\n {\n height += style.dropShadowDistance;\n }\n\n return new TextMetrics(\n text,\n style,\n width,\n height,\n lines,\n lineWidths,\n lineHeight + style.leading,\n maxLineWidth,\n fontProperties\n );\n};\n\n/**\n * Applies newlines to a string to have it optimally fit into the horizontal\n * bounds set by the Text object's wordWrapWidth property.\n *\n * @private\n * @param {string} text - String to apply word wrapping to\n * @param {PIXI.TextStyle} style - the style to use when wrapping\n * @param {HTMLCanvasElement} [canvas] - optional specification of the canvas to use for measuring.\n * @return {string} New string with new lines applied where required\n */\nTextMetrics.wordWrap = function wordWrap (text, style, canvas)\n{\n if ( canvas === void 0 ) canvas = TextMetrics._canvas;\n\n var context = canvas.getContext('2d');\n\n var width = 0;\n var line = '';\n var lines = '';\n\n var cache = {};\n var letterSpacing = style.letterSpacing;\n var whiteSpace = style.whiteSpace;\n\n // How to handle whitespaces\n var collapseSpaces = TextMetrics.collapseSpaces(whiteSpace);\n var collapseNewlines = TextMetrics.collapseNewlines(whiteSpace);\n\n // whether or not spaces may be added to the beginning of lines\n var canPrependSpaces = !collapseSpaces;\n\n // There is letterSpacing after every char except the last one\n // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!\n // so for convenience the above needs to be compared to width + 1 extra letterSpace\n // t_h_i_s_' '_i_s_' '_a_n_' '_e_x_a_m_p_l_e_' '_!_\n // ________________________________________________\n // And then the final space is simply no appended to each line\n var wordWrapWidth = style.wordWrapWidth + letterSpacing;\n\n // break text into words, spaces and newline chars\n var tokens = TextMetrics.tokenize(text);\n\n for (var i = 0; i < tokens.length; i++)\n {\n // get the word, space or newlineChar\n var token = tokens[i];\n\n // if word is a new line\n if (TextMetrics.isNewline(token))\n {\n // keep the new line\n if (!collapseNewlines)\n {\n lines += TextMetrics.addLine(line);\n canPrependSpaces = !collapseSpaces;\n line = '';\n width = 0;\n continue;\n }\n\n // if we should collapse new lines\n // we simply convert it into a space\n token = ' ';\n }\n\n // if we should collapse repeated whitespaces\n if (collapseSpaces)\n {\n // check both this and the last tokens for spaces\n var currIsBreakingSpace = TextMetrics.isBreakingSpace(token);\n var lastIsBreakingSpace = TextMetrics.isBreakingSpace(line[line.length - 1]);\n\n if (currIsBreakingSpace && lastIsBreakingSpace)\n {\n continue;\n }\n }\n\n // get word width from cache if possible\n var tokenWidth = TextMetrics.getFromCache(token, letterSpacing, cache, context);\n\n // word is longer than desired bounds\n if (tokenWidth > wordWrapWidth)\n {\n // if we are not already at the beginning of a line\n if (line !== '')\n {\n // start newlines for overflow words\n lines += TextMetrics.addLine(line);\n line = '';\n width = 0;\n }\n\n // break large word over multiple lines\n if (TextMetrics.canBreakWords(token, style.breakWords))\n {\n // break word into characters\n var characters = token.split('');\n\n // loop the characters\n for (var j = 0; j < characters.length; j++)\n {\n var char = characters[j];\n\n var k = 1;\n // we are not at the end of the token\n\n while (characters[j + k])\n {\n var nextChar = characters[j + k];\n var lastChar = char[char.length - 1];\n\n // should not split chars\n if (!TextMetrics.canBreakChars(lastChar, nextChar, token, j, style.breakWords))\n {\n // combine chars & move forward one\n char += nextChar;\n }\n else\n {\n break;\n }\n\n k++;\n }\n\n j += char.length - 1;\n\n var characterWidth = TextMetrics.getFromCache(char, letterSpacing, cache, context);\n\n if (characterWidth + width > wordWrapWidth)\n {\n lines += TextMetrics.addLine(line);\n canPrependSpaces = false;\n line = '';\n width = 0;\n }\n\n line += char;\n width += characterWidth;\n }\n }\n\n // run word out of the bounds\n else\n {\n // if there are words in this line already\n // finish that line and start a new one\n if (line.length > 0)\n {\n lines += TextMetrics.addLine(line);\n line = '';\n width = 0;\n }\n\n var isLastToken = i === tokens.length - 1;\n\n // give it its own line if it's not the end\n lines += TextMetrics.addLine(token, !isLastToken);\n canPrependSpaces = false;\n line = '';\n width = 0;\n }\n }\n\n // word could fit\n else\n {\n // word won't fit because of existing words\n // start a new line\n if (tokenWidth + width > wordWrapWidth)\n {\n // if its a space we don't want it\n canPrependSpaces = false;\n\n // add a new line\n lines += TextMetrics.addLine(line);\n\n // start a new line\n line = '';\n width = 0;\n }\n\n // don't add spaces to the beginning of lines\n if (line.length > 0 || !TextMetrics.isBreakingSpace(token) || canPrependSpaces)\n {\n // add the word to the current line\n line += token;\n\n // update width counter\n width += tokenWidth;\n }\n }\n }\n\n lines += TextMetrics.addLine(line, false);\n\n return lines;\n};\n\n/**\n * Convienience function for logging each line added during the wordWrap\n * method\n *\n * @private\n * @param {string} line - The line of text to add\n * @param {boolean} newLine - Add new line character to end\n * @return {string} A formatted line\n */\nTextMetrics.addLine = function addLine (line, newLine)\n{\n if ( newLine === void 0 ) newLine = true;\n\n line = TextMetrics.trimRight(line);\n\n line = (newLine) ? (line + \"\\n\") : line;\n\n return line;\n};\n\n/**\n * Gets & sets the widths of calculated characters in a cache object\n *\n * @private\n * @param {string} key The key\n * @param {number} letterSpacing The letter spacing\n * @param {object} cache The cache\n * @param {CanvasRenderingContext2D} context The canvas context\n * @return {number} The from cache.\n */\nTextMetrics.getFromCache = function getFromCache (key, letterSpacing, cache, context)\n{\n var width = cache[key];\n\n if (width === undefined)\n {\n var spacing = ((key.length) * letterSpacing);\n\n width = context.measureText(key).width + spacing;\n cache[key] = width;\n }\n\n return width;\n};\n\n/**\n * Determines whether we should collapse breaking spaces\n *\n * @private\n * @param {string} whiteSpace The TextStyle property whiteSpace\n * @return {boolean} should collapse\n */\nTextMetrics.collapseSpaces = function collapseSpaces (whiteSpace)\n{\n return (whiteSpace === 'normal' || whiteSpace === 'pre-line');\n};\n\n/**\n * Determines whether we should collapse newLine chars\n *\n * @private\n * @param {string} whiteSpace The white space\n * @return {boolean} should collapse\n */\nTextMetrics.collapseNewlines = function collapseNewlines (whiteSpace)\n{\n return (whiteSpace === 'normal');\n};\n\n/**\n * trims breaking whitespaces from string\n *\n * @private\n * @param {string} text The text\n * @return {string} trimmed string\n */\nTextMetrics.trimRight = function trimRight (text)\n{\n if (typeof text !== 'string')\n {\n return '';\n }\n\n for (var i = text.length - 1; i >= 0; i--)\n {\n var char = text[i];\n\n if (!TextMetrics.isBreakingSpace(char))\n {\n break;\n }\n\n text = text.slice(0, -1);\n }\n\n return text;\n};\n\n/**\n * Determines if char is a newline.\n *\n * @private\n * @param {string} char The character\n * @return {boolean} True if newline, False otherwise.\n */\nTextMetrics.isNewline = function isNewline (char)\n{\n if (typeof char !== 'string')\n {\n return false;\n }\n\n return (TextMetrics._newlines.indexOf(char.charCodeAt(0)) >= 0);\n};\n\n/**\n * Determines if char is a breaking whitespace.\n *\n * @private\n * @param {string} char The character\n * @return {boolean} True if whitespace, False otherwise.\n */\nTextMetrics.isBreakingSpace = function isBreakingSpace (char)\n{\n if (typeof char !== 'string')\n {\n return false;\n }\n\n return (TextMetrics._breakingSpaces.indexOf(char.charCodeAt(0)) >= 0);\n};\n\n/**\n * Splits a string into words, breaking-spaces and newLine characters\n *\n * @private\n * @param {string} text The text\n * @return {string[]} A tokenized array\n */\nTextMetrics.tokenize = function tokenize (text)\n{\n var tokens = [];\n var token = '';\n\n if (typeof text !== 'string')\n {\n return tokens;\n }\n\n for (var i = 0; i < text.length; i++)\n {\n var char = text[i];\n\n if (TextMetrics.isBreakingSpace(char) || TextMetrics.isNewline(char))\n {\n if (token !== '')\n {\n tokens.push(token);\n token = '';\n }\n\n tokens.push(char);\n\n continue;\n }\n\n token += char;\n }\n\n if (token !== '')\n {\n tokens.push(token);\n }\n\n return tokens;\n};\n\n/**\n * This method exists to be easily overridden\n * It allows one to customise which words should break\n * Examples are if the token is CJK or numbers.\n * It must return a boolean.\n *\n * @private\n * @param {string} token The token\n * @param {boolean} breakWords The style attr break words\n * @return {boolean} whether to break word or not\n */\nTextMetrics.canBreakWords = function canBreakWords (token, breakWords)\n{\n return breakWords;\n};\n\n/**\n * This method exists to be easily overridden\n * It allows one to determine whether a pair of characters\n * should be broken by newlines\n * For example certain characters in CJK langs or numbers.\n * It must return a boolean.\n *\n * @private\n * @param {string} char The character\n * @param {string} nextChar The next character\n * @param {string} token The token/word the characters are from\n * @param {number} index The index in the token of the char\n * @param {boolean} breakWords The style attr break words\n * @return {boolean} whether to break word or not\n */\nTextMetrics.canBreakChars = function canBreakChars (char, nextChar, token, index, breakWords) // eslint-disable-line no-unused-vars\n{\n return true;\n};\n\n/**\n * Calculates the ascent, descent and fontSize of a given font-style\n *\n * @static\n * @param {string} font - String representing the style of the font\n * @return {PIXI.IFontMetrics} Font properties object\n */\nTextMetrics.measureFont = function measureFont (font)\n{\n // as this method is used for preparing assets, don't recalculate things if we don't need to\n if (TextMetrics._fonts[font])\n {\n return TextMetrics._fonts[font];\n }\n\n var properties = {};\n\n var canvas = TextMetrics._canvas;\n var context = TextMetrics._context;\n\n context.font = font;\n\n var metricsString = TextMetrics.METRICS_STRING + TextMetrics.BASELINE_SYMBOL;\n var width = Math.ceil(context.measureText(metricsString).width);\n var baseline = Math.ceil(context.measureText(TextMetrics.BASELINE_SYMBOL).width);\n var height = 2 * baseline;\n\n baseline = baseline * TextMetrics.BASELINE_MULTIPLIER | 0;\n\n canvas.width = width;\n canvas.height = height;\n\n context.fillStyle = '#f00';\n context.fillRect(0, 0, width, height);\n\n context.font = font;\n\n context.textBaseline = 'alphabetic';\n context.fillStyle = '#000';\n context.fillText(metricsString, 0, baseline);\n\n var imagedata = context.getImageData(0, 0, width, height).data;\n var pixels = imagedata.length;\n var line = width * 4;\n\n var i = 0;\n var idx = 0;\n var stop = false;\n\n // ascent. scan from top to bottom until we find a non red pixel\n for (i = 0; i < baseline; ++i)\n {\n for (var j = 0; j < line; j += 4)\n {\n if (imagedata[idx + j] !== 255)\n {\n stop = true;\n break;\n }\n }\n if (!stop)\n {\n idx += line;\n }\n else\n {\n break;\n }\n }\n\n properties.ascent = baseline - i;\n\n idx = pixels - line;\n stop = false;\n\n // descent. scan from bottom to top until we find a non red pixel\n for (i = height; i > baseline; --i)\n {\n for (var j$1 = 0; j$1 < line; j$1 += 4)\n {\n if (imagedata[idx + j$1] !== 255)\n {\n stop = true;\n break;\n }\n }\n\n if (!stop)\n {\n idx -= line;\n }\n else\n {\n break;\n }\n }\n\n properties.descent = i - baseline;\n properties.fontSize = properties.ascent + properties.descent;\n\n TextMetrics._fonts[font] = properties;\n\n return properties;\n};\n\n/**\n * Clear font metrics in metrics cache.\n *\n * @static\n * @param {string} [font] - font name. If font name not set then clear cache for all fonts.\n */\nTextMetrics.clearMetrics = function clearMetrics (font)\n{\n if ( font === void 0 ) font = '';\n\n if (font)\n {\n delete TextMetrics._fonts[font];\n }\n else\n {\n TextMetrics._fonts = {};\n }\n};\n\n/**\n * Internal return object for {@link PIXI.TextMetrics.measureFont `TextMetrics.measureFont`}.\n *\n * @typedef {object} FontMetrics\n * @property {number} ascent - The ascent distance\n * @property {number} descent - The descent distance\n * @property {number} fontSize - Font size from ascent to descent\n * @memberof PIXI.TextMetrics\n * @private\n */\n\nvar canvas = (function () {\n try\n {\n // OffscreenCanvas2D measureText can be up to 40% faster.\n var c = new OffscreenCanvas(0, 0);\n\n return c.getContext('2d') ? c : document.createElement('canvas');\n }\n catch (ex)\n {\n return document.createElement('canvas');\n }\n})();\n\ncanvas.width = canvas.height = 10;\n\n/**\n * Cached canvas element for measuring text\n *\n * @memberof PIXI.TextMetrics\n * @type {HTMLCanvasElement}\n * @private\n */\nTextMetrics._canvas = canvas;\n\n/**\n * Cache for context to use.\n *\n * @memberof PIXI.TextMetrics\n * @type {CanvasRenderingContext2D}\n * @private\n */\nTextMetrics._context = canvas.getContext('2d');\n\n/**\n * Cache of {@see PIXI.TextMetrics.FontMetrics} objects.\n *\n * @memberof PIXI.TextMetrics\n * @type {Object}\n * @private\n */\nTextMetrics._fonts = {};\n\n/**\n * String used for calculate font metrics.\n * These characters are all tall to help calculate the height required for text.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name METRICS_STRING\n * @type {string}\n * @default |ÉqÅ\n */\nTextMetrics.METRICS_STRING = '|ÉqÅ';\n\n/**\n * Baseline symbol for calculate font metrics.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name BASELINE_SYMBOL\n * @type {string}\n * @default M\n */\nTextMetrics.BASELINE_SYMBOL = 'M';\n\n/**\n * Baseline multiplier for calculate font metrics.\n *\n * @static\n * @memberof PIXI.TextMetrics\n * @name BASELINE_MULTIPLIER\n * @type {number}\n * @default 1.4\n */\nTextMetrics.BASELINE_MULTIPLIER = 1.4;\n\n/**\n * Cache of new line chars.\n *\n * @memberof PIXI.TextMetrics\n * @type {number[]}\n * @private\n */\nTextMetrics._newlines = [\n 0x000A, // line feed\n 0x000D ];\n\n/**\n * Cache of breaking spaces.\n *\n * @memberof PIXI.TextMetrics\n * @type {number[]}\n * @private\n */\nTextMetrics._breakingSpaces = [\n 0x0009, // character tabulation\n 0x0020, // space\n 0x2000, // en quad\n 0x2001, // em quad\n 0x2002, // en space\n 0x2003, // em space\n 0x2004, // three-per-em space\n 0x2005, // four-per-em space\n 0x2006, // six-per-em space\n 0x2008, // punctuation space\n 0x2009, // thin space\n 0x200A, // hair space\n 0x205F, // medium mathematical space\n 0x3000 ];\n\n/**\n * A number, or a string containing a number.\n *\n * @memberof PIXI\n * @typedef IFontMetrics\n * @property {number} ascent - Font ascent\n * @property {number} descent - Font descent\n * @property {number} fontSize - Font size\n */\n\n/* eslint max-depth: [2, 8] */\n\nvar defaultDestroyOptions = {\n texture: true,\n children: false,\n baseTexture: true,\n};\n\n/**\n * A Text Object will create a line or multiple lines of text.\n *\n * The text is created using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API).\n *\n * The primary advantage of this class over BitmapText is that you have great control over the style of the next,\n * which you can change at runtime.\n *\n * The primary disadvantages is that each piece of text has it's own texture, which can use more memory.\n * When text changes, this texture has to be re-generated and re-uploaded to the GPU, taking up time.\n *\n * To split a line you can use '\\n' in your text string, or, on the `style` object,\n * change its `wordWrap` property to true and and give the `wordWrapWidth` property a value.\n *\n * A Text can be created directly from a string and a style object,\n * which can be generated [here](https://pixijs.io/pixi-text-style).\n *\n * ```js\n * let text = new PIXI.Text('This is a PixiJS text',{fontFamily : 'Arial', fontSize: 24, fill : 0xff1010, align : 'center'});\n * ```\n *\n * @class\n * @extends PIXI.Sprite\n * @memberof PIXI\n */\nvar Text = /*@__PURE__*/(function (Sprite) {\n function Text(text, style, canvas)\n {\n canvas = canvas || document.createElement('canvas');\n\n canvas.width = 3;\n canvas.height = 3;\n\n var texture = Texture.from(canvas);\n\n texture.orig = new Rectangle();\n texture.trim = new Rectangle();\n\n Sprite.call(this, texture);\n\n /**\n * The canvas element that everything is drawn to\n *\n * @member {HTMLCanvasElement}\n */\n this.canvas = canvas;\n\n /**\n * The canvas 2d context that everything is drawn with\n * @member {CanvasRenderingContext2D}\n */\n this.context = this.canvas.getContext('2d');\n\n /**\n * The resolution / device pixel ratio of the canvas.\n * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually.\n * @member {number}\n * @default 1\n */\n this._resolution = settings.RESOLUTION;\n this._autoResolution = true;\n\n /**\n * Private tracker for the current text.\n *\n * @member {string}\n * @private\n */\n this._text = null;\n\n /**\n * Private tracker for the current style.\n *\n * @member {object}\n * @private\n */\n this._style = null;\n /**\n * Private listener to track style changes.\n *\n * @member {Function}\n * @private\n */\n this._styleListener = null;\n\n /**\n * Private tracker for the current font.\n *\n * @member {string}\n * @private\n */\n this._font = '';\n\n this.text = text;\n this.style = style;\n\n this.localStyleID = -1;\n }\n\n if ( Sprite ) Text.__proto__ = Sprite;\n Text.prototype = Object.create( Sprite && Sprite.prototype );\n Text.prototype.constructor = Text;\n\n var prototypeAccessors = { width: { configurable: true },height: { configurable: true },style: { configurable: true },text: { configurable: true },resolution: { configurable: true } };\n\n /**\n * Renders text and updates it when needed.\n *\n * @private\n * @param {boolean} respectDirty - Whether to abort updating the text if the Text isn't dirty and the function is called.\n */\n Text.prototype.updateText = function updateText (respectDirty)\n {\n var style = this._style;\n\n // check if style has changed..\n if (this.localStyleID !== style.styleID)\n {\n this.dirty = true;\n this.localStyleID = style.styleID;\n }\n\n if (!this.dirty && respectDirty)\n {\n return;\n }\n\n this._font = this._style.toFontString();\n\n var context = this.context;\n var measured = TextMetrics.measureText(this._text || ' ', this._style, this._style.wordWrap, this.canvas);\n var width = measured.width;\n var height = measured.height;\n var lines = measured.lines;\n var lineHeight = measured.lineHeight;\n var lineWidths = measured.lineWidths;\n var maxLineWidth = measured.maxLineWidth;\n var fontProperties = measured.fontProperties;\n\n this.canvas.width = Math.ceil((Math.max(1, width) + (style.padding * 2)) * this._resolution);\n this.canvas.height = Math.ceil((Math.max(1, height) + (style.padding * 2)) * this._resolution);\n\n context.scale(this._resolution, this._resolution);\n\n context.clearRect(0, 0, this.canvas.width, this.canvas.height);\n\n context.font = this._font;\n context.lineWidth = style.strokeThickness;\n context.textBaseline = style.textBaseline;\n context.lineJoin = style.lineJoin;\n context.miterLimit = style.miterLimit;\n\n var linePositionX;\n var linePositionY;\n\n // require 2 passes if a shadow; the first to draw the drop shadow, the second to draw the text\n var passesCount = style.dropShadow ? 2 : 1;\n\n // For v4, we drew text at the colours of the drop shadow underneath the normal text. This gave the correct zIndex,\n // but features such as alpha and shadowblur did not look right at all, since we were using actual text as a shadow.\n //\n // For v5.0.0, we moved over to just use the canvas API for drop shadows, which made them look much nicer and more\n // visually please, but now because the stroke is drawn and then the fill, drop shadows would appear on both the fill\n // and the stroke; and fill drop shadows would appear over the top of the stroke.\n //\n // For v5.1.1, the new route is to revert to v4 style of drawing text first to get the drop shadows underneath normal\n // text, but instead drawing text in the correct location, we'll draw it off screen (-paddingY), and then adjust the\n // drop shadow so only that appears on screen (+paddingY). Now we'll have the correct draw order of the shadow\n // beneath the text, whilst also having the proper text shadow styling.\n for (var i = 0; i < passesCount; ++i)\n {\n var isShadowPass = style.dropShadow && i === 0;\n var dsOffsetText = isShadowPass ? height * 2 : 0; // we only want the drop shadow, so put text way off-screen\n var dsOffsetShadow = dsOffsetText * this.resolution;\n\n if (isShadowPass)\n {\n // On Safari, text with gradient and drop shadows together do not position correctly\n // if the scale of the canvas is not 1: https://bugs.webkit.org/show_bug.cgi?id=197689\n // Therefore we'll set the styles to be a plain black whilst generating this drop shadow\n context.fillStyle = 'black';\n context.strokeStyle = 'black';\n\n var dropShadowColor = style.dropShadowColor;\n var rgb = hex2rgb(typeof dropShadowColor === 'number' ? dropShadowColor : string2hex(dropShadowColor));\n\n context.shadowColor = \"rgba(\" + (rgb[0] * 255) + \",\" + (rgb[1] * 255) + \",\" + (rgb[2] * 255) + \",\" + (style.dropShadowAlpha) + \")\";\n context.shadowBlur = style.dropShadowBlur;\n context.shadowOffsetX = Math.cos(style.dropShadowAngle) * style.dropShadowDistance;\n context.shadowOffsetY = (Math.sin(style.dropShadowAngle) * style.dropShadowDistance) + dsOffsetShadow;\n }\n else\n {\n // set canvas text styles\n context.fillStyle = this._generateFillStyle(style, lines);\n context.strokeStyle = style.stroke;\n\n context.shadowColor = 0;\n context.shadowBlur = 0;\n context.shadowOffsetX = 0;\n context.shadowOffsetY = 0;\n }\n\n // draw lines line by line\n for (var i$1 = 0; i$1 < lines.length; i$1++)\n {\n linePositionX = style.strokeThickness / 2;\n linePositionY = ((style.strokeThickness / 2) + (i$1 * lineHeight)) + fontProperties.ascent;\n\n if (style.align === 'right')\n {\n linePositionX += maxLineWidth - lineWidths[i$1];\n }\n else if (style.align === 'center')\n {\n linePositionX += (maxLineWidth - lineWidths[i$1]) / 2;\n }\n\n if (style.stroke && style.strokeThickness)\n {\n this.drawLetterSpacing(\n lines[i$1],\n linePositionX + style.padding,\n linePositionY + style.padding - dsOffsetText,\n true\n );\n }\n\n if (style.fill)\n {\n this.drawLetterSpacing(\n lines[i$1],\n linePositionX + style.padding,\n linePositionY + style.padding - dsOffsetText\n );\n }\n }\n }\n\n this.updateTexture();\n };\n\n /**\n * Render the text with letter-spacing.\n * @param {string} text - The text to draw\n * @param {number} x - Horizontal position to draw the text\n * @param {number} y - Vertical position to draw the text\n * @param {boolean} [isStroke=false] - Is this drawing for the outside stroke of the\n * text? If not, it's for the inside fill\n * @private\n */\n Text.prototype.drawLetterSpacing = function drawLetterSpacing (text, x, y, isStroke)\n {\n if ( isStroke === void 0 ) isStroke = false;\n\n var style = this._style;\n\n // letterSpacing of 0 means normal\n var letterSpacing = style.letterSpacing;\n\n if (letterSpacing === 0)\n {\n if (isStroke)\n {\n this.context.strokeText(text, x, y);\n }\n else\n {\n this.context.fillText(text, x, y);\n }\n\n return;\n }\n\n var currentPosition = x;\n\n // Using Array.from correctly splits characters whilst keeping emoji together.\n // This is not supported on IE as it requires ES6, so regular text splitting occurs.\n // This also doesn't account for emoji that are multiple emoji put together to make something else.\n // Handling all of this would require a big library itself.\n // https://medium.com/@giltayar/iterating-over-emoji-characters-the-es6-way-f06e4589516\n // https://github.com/orling/grapheme-splitter\n var stringArray = Array.from ? Array.from(text) : text.split('');\n var previousWidth = this.context.measureText(text).width;\n var currentWidth = 0;\n\n for (var i = 0; i < stringArray.length; ++i)\n {\n var currentChar = stringArray[i];\n\n if (isStroke)\n {\n this.context.strokeText(currentChar, currentPosition, y);\n }\n else\n {\n this.context.fillText(currentChar, currentPosition, y);\n }\n currentWidth = this.context.measureText(text.substring(i + 1)).width;\n currentPosition += previousWidth - currentWidth + letterSpacing;\n previousWidth = currentWidth;\n }\n };\n\n /**\n * Updates texture size based on canvas size\n *\n * @private\n */\n Text.prototype.updateTexture = function updateTexture ()\n {\n var canvas = this.canvas;\n\n if (this._style.trim)\n {\n var trimmed = trimCanvas(canvas);\n\n if (trimmed.data)\n {\n canvas.width = trimmed.width;\n canvas.height = trimmed.height;\n this.context.putImageData(trimmed.data, 0, 0);\n }\n }\n\n var texture = this._texture;\n var style = this._style;\n var padding = style.trim ? 0 : style.padding;\n var baseTexture = texture.baseTexture;\n\n texture.trim.width = texture._frame.width = Math.ceil(canvas.width / this._resolution);\n texture.trim.height = texture._frame.height = Math.ceil(canvas.height / this._resolution);\n texture.trim.x = -padding;\n texture.trim.y = -padding;\n\n texture.orig.width = texture._frame.width - (padding * 2);\n texture.orig.height = texture._frame.height - (padding * 2);\n\n // call sprite onTextureUpdate to update scale if _width or _height were set\n this._onTextureUpdate();\n\n baseTexture.setRealSize(canvas.width, canvas.height, this._resolution);\n\n this.dirty = false;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @private\n * @param {PIXI.Renderer} renderer - The renderer\n */\n Text.prototype._render = function _render (renderer)\n {\n if (this._autoResolution && this._resolution !== renderer.resolution)\n {\n this._resolution = renderer.resolution;\n this.dirty = true;\n }\n\n this.updateText(true);\n\n Sprite.prototype._render.call(this, renderer);\n };\n\n /**\n * Gets the local bounds of the text object.\n *\n * @param {PIXI.Rectangle} rect - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n Text.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n this.updateText(true);\n\n return Sprite.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * calculates the bounds of the Text as a rectangle. The bounds calculation takes the worldTransform into account.\n * @protected\n */\n Text.prototype._calculateBounds = function _calculateBounds ()\n {\n this.updateText(true);\n this.calculateVertices();\n // if we have already done this on THIS frame.\n this._bounds.addQuad(this.vertexData);\n };\n\n /**\n * Method to be called upon a TextStyle change.\n * @private\n */\n Text.prototype._onStyleChange = function _onStyleChange ()\n {\n this.dirty = true;\n };\n\n /**\n * Generates the fill style. Can automatically generate a gradient based on the fill style being an array\n *\n * @private\n * @param {object} style - The style.\n * @param {string[]} lines - The lines of text.\n * @return {string|number|CanvasGradient} The fill style\n */\n Text.prototype._generateFillStyle = function _generateFillStyle (style, lines)\n {\n if (!Array.isArray(style.fill))\n {\n return style.fill;\n }\n else if (style.fill.length === 1)\n {\n return style.fill[0];\n }\n\n // the gradient will be evenly spaced out according to how large the array is.\n // ['#FF0000', '#00FF00', '#0000FF'] would created stops at 0.25, 0.5 and 0.75\n var gradient;\n var totalIterations;\n var currentIteration;\n var stop;\n\n var width = Math.ceil(this.canvas.width / this._resolution);\n var height = Math.ceil(this.canvas.height / this._resolution);\n\n // make a copy of the style settings, so we can manipulate them later\n var fill = style.fill.slice();\n var fillGradientStops = style.fillGradientStops.slice();\n\n // wanting to evenly distribute the fills. So an array of 4 colours should give fills of 0.25, 0.5 and 0.75\n if (!fillGradientStops.length)\n {\n var lengthPlus1 = fill.length + 1;\n\n for (var i = 1; i < lengthPlus1; ++i)\n {\n fillGradientStops.push(i / lengthPlus1);\n }\n }\n\n // stop the bleeding of the last gradient on the line above to the top gradient of the this line\n // by hard defining the first gradient colour at point 0, and last gradient colour at point 1\n fill.unshift(style.fill[0]);\n fillGradientStops.unshift(0);\n\n fill.push(style.fill[style.fill.length - 1]);\n fillGradientStops.push(1);\n\n if (style.fillGradientType === TEXT_GRADIENT.LINEAR_VERTICAL)\n {\n // start the gradient at the top center of the canvas, and end at the bottom middle of the canvas\n gradient = this.context.createLinearGradient(width / 2, 0, width / 2, height);\n\n // we need to repeat the gradient so that each individual line of text has the same vertical gradient effect\n // ['#FF0000', '#00FF00', '#0000FF'] over 2 lines would create stops at 0.125, 0.25, 0.375, 0.625, 0.75, 0.875\n totalIterations = (fill.length + 1) * lines.length;\n currentIteration = 0;\n for (var i$1 = 0; i$1 < lines.length; i$1++)\n {\n currentIteration += 1;\n for (var j = 0; j < fill.length; j++)\n {\n if (typeof fillGradientStops[j] === 'number')\n {\n stop = (fillGradientStops[j] / lines.length) + (i$1 / lines.length);\n }\n else\n {\n stop = currentIteration / totalIterations;\n }\n gradient.addColorStop(stop, fill[j]);\n currentIteration++;\n }\n }\n }\n else\n {\n // start the gradient at the center left of the canvas, and end at the center right of the canvas\n gradient = this.context.createLinearGradient(0, height / 2, width, height / 2);\n\n // can just evenly space out the gradients in this case, as multiple lines makes no difference\n // to an even left to right gradient\n totalIterations = fill.length + 1;\n currentIteration = 1;\n\n for (var i$2 = 0; i$2 < fill.length; i$2++)\n {\n if (typeof fillGradientStops[i$2] === 'number')\n {\n stop = fillGradientStops[i$2];\n }\n else\n {\n stop = currentIteration / totalIterations;\n }\n gradient.addColorStop(stop, fill[i$2]);\n currentIteration++;\n }\n }\n\n return gradient;\n };\n\n /**\n * Destroys this text object.\n * Note* Unlike a Sprite, a Text object will automatically destroy its baseTexture and texture as\n * the majority of the time the texture will not be shared with any other Sprites.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their\n * destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=true] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=true] - Should it destroy the base texture of the sprite as well\n */\n Text.prototype.destroy = function destroy (options)\n {\n if (typeof options === 'boolean')\n {\n options = { children: options };\n }\n\n options = Object.assign({}, defaultDestroyOptions, options);\n\n Sprite.prototype.destroy.call(this, options);\n\n // make sure to reset the the context and canvas.. dont want this hanging around in memory!\n this.context = null;\n this.canvas = null;\n\n this._style = null;\n };\n\n /**\n * The width of the Text, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n this.updateText(true);\n\n return Math.abs(this.scale.x) * this._texture.orig.width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.updateText(true);\n\n var s = sign(this.scale.x) || 1;\n\n this.scale.x = s * value / this._texture.orig.width;\n this._width = value;\n };\n\n /**\n * The height of the Text, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n this.updateText(true);\n\n return Math.abs(this.scale.y) * this._texture.orig.height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.updateText(true);\n\n var s = sign(this.scale.y) || 1;\n\n this.scale.y = s * value / this._texture.orig.height;\n this._height = value;\n };\n\n /**\n * Set the style of the text. Set up an event listener to listen for changes on the style\n * object and mark the text as dirty.\n *\n * @member {object|PIXI.TextStyle}\n */\n prototypeAccessors.style.get = function ()\n {\n return this._style;\n };\n\n prototypeAccessors.style.set = function (style) // eslint-disable-line require-jsdoc\n {\n style = style || {};\n\n if (style instanceof TextStyle)\n {\n this._style = style;\n }\n else\n {\n this._style = new TextStyle(style);\n }\n\n this.localStyleID = -1;\n this.dirty = true;\n };\n\n /**\n * Set the copy for the text object. To split a line you can use '\\n'.\n *\n * @member {string}\n */\n prototypeAccessors.text.get = function ()\n {\n return this._text;\n };\n\n prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc\n {\n text = String(text === null || text === undefined ? '' : text);\n\n if (this._text === text)\n {\n return;\n }\n this._text = text;\n this.dirty = true;\n };\n\n /**\n * The resolution / device pixel ratio of the canvas.\n * This is set to automatically match the renderer resolution by default, but can be overridden by setting manually.\n * @member {number}\n * @default 1\n */\n prototypeAccessors.resolution.get = function ()\n {\n return this._resolution;\n };\n\n prototypeAccessors.resolution.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._autoResolution = false;\n\n if (this._resolution === value)\n {\n return;\n }\n\n this._resolution = value;\n this.dirty = true;\n };\n\n Object.defineProperties( Text.prototype, prototypeAccessors );\n\n return Text;\n}(Sprite));\n\nexport { TEXT_GRADIENT, Text, TextMetrics, TextStyle };\n//# sourceMappingURL=text.es.js.map\n","/*!\n * @pixi/prepare - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/prepare is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { settings } from '@pixi/settings';\nimport { Texture, BaseTexture } from '@pixi/core';\nimport { Graphics } from '@pixi/graphics';\nimport { Ticker, UPDATE_PRIORITY } from '@pixi/ticker';\nimport { Container } from '@pixi/display';\nimport { Text, TextStyle, TextMetrics } from '@pixi/text';\n\n/**\n * Default number of uploads per frame using prepare plugin.\n *\n * @static\n * @memberof PIXI.settings\n * @name UPLOADS_PER_FRAME\n * @type {number}\n * @default 4\n */\nsettings.UPLOADS_PER_FRAME = 4;\n\n/**\n * CountLimiter limits the number of items handled by a {@link PIXI.prepare.BasePrepare} to a specified\n * number of items per frame.\n *\n * @class\n * @memberof PIXI.prepare\n */\nvar CountLimiter = function CountLimiter(maxItemsPerFrame)\n{\n /**\n * The maximum number of items that can be prepared each frame.\n * @type {number}\n * @private\n */\n this.maxItemsPerFrame = maxItemsPerFrame;\n /**\n * The number of items that can be prepared in the current frame.\n * @type {number}\n * @private\n */\n this.itemsLeft = 0;\n};\n\n/**\n * Resets any counting properties to start fresh on a new frame.\n */\nCountLimiter.prototype.beginFrame = function beginFrame ()\n{\n this.itemsLeft = this.maxItemsPerFrame;\n};\n\n/**\n * Checks to see if another item can be uploaded. This should only be called once per item.\n * @return {boolean} If the item is allowed to be uploaded.\n */\nCountLimiter.prototype.allowedToUpload = function allowedToUpload ()\n{\n return this.itemsLeft-- > 0;\n};\n\n/**\n * The prepare manager provides functionality to upload content to the GPU.\n *\n * BasePrepare handles basic queuing functionality and is extended by\n * {@link PIXI.prepare.Prepare} and {@link PIXI.prepare.CanvasPrepare}\n * to provide preparation capabilities specific to their respective renderers.\n *\n * @example\n * // Create a sprite\n * const sprite = PIXI.Sprite.from('something.png');\n *\n * // Load object into GPU\n * app.renderer.plugins.prepare.upload(sprite, () => {\n *\n * //Texture(s) has been uploaded to GPU\n * app.stage.addChild(sprite);\n *\n * })\n *\n * @abstract\n * @class\n * @memberof PIXI.prepare\n */\nvar BasePrepare = function BasePrepare(renderer)\n{\n var this$1 = this;\n\n /**\n * The limiter to be used to control how quickly items are prepared.\n * @type {PIXI.prepare.CountLimiter|PIXI.prepare.TimeLimiter}\n */\n this.limiter = new CountLimiter(settings.UPLOADS_PER_FRAME);\n\n /**\n * Reference to the renderer.\n * @type {PIXI.AbstractRenderer}\n * @protected\n */\n this.renderer = renderer;\n\n /**\n * The only real difference between CanvasPrepare and Prepare is what they pass\n * to upload hooks. That different parameter is stored here.\n * @type {PIXI.prepare.CanvasPrepare|PIXI.Renderer}\n * @protected\n */\n this.uploadHookHelper = null;\n\n /**\n * Collection of items to uploads at once.\n * @type {Array<*>}\n * @private\n */\n this.queue = [];\n\n /**\n * Collection of additional hooks for finding assets.\n * @type {Array}\n * @private\n */\n this.addHooks = [];\n\n /**\n * Collection of additional hooks for processing assets.\n * @type {Array}\n * @private\n */\n this.uploadHooks = [];\n\n /**\n * Callback to call after completed.\n * @type {Array}\n * @private\n */\n this.completes = [];\n\n /**\n * If prepare is ticking (running).\n * @type {boolean}\n * @private\n */\n this.ticking = false;\n\n /**\n * 'bound' call for prepareItems().\n * @type {Function}\n * @private\n */\n this.delayedTick = function () {\n // unlikely, but in case we were destroyed between tick() and delayedTick()\n if (!this$1.queue)\n {\n return;\n }\n this$1.prepareItems();\n };\n\n // hooks to find the correct texture\n this.registerFindHook(findText);\n this.registerFindHook(findTextStyle);\n this.registerFindHook(findMultipleBaseTextures);\n this.registerFindHook(findBaseTexture);\n this.registerFindHook(findTexture);\n\n // upload hooks\n this.registerUploadHook(drawText);\n this.registerUploadHook(calculateTextStyle);\n};\n\n/**\n * Upload all the textures and graphics to the GPU.\n *\n * @param {Function|PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text} item -\n * Either the container or display object to search for items to upload, the items to upload themselves,\n * or the callback function, if items have been added using `prepare.add`.\n * @param {Function} [done] - Optional callback when all queued uploads have completed\n */\nBasePrepare.prototype.upload = function upload (item, done)\n{\n if (typeof item === 'function')\n {\n done = item;\n item = null;\n }\n\n // If a display object, search for items\n // that we could upload\n if (item)\n {\n this.add(item);\n }\n\n // Get the items for upload from the display\n if (this.queue.length)\n {\n if (done)\n {\n this.completes.push(done);\n }\n\n if (!this.ticking)\n {\n this.ticking = true;\n Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY);\n }\n }\n else if (done)\n {\n done();\n }\n};\n\n/**\n * Handle tick update\n *\n * @private\n */\nBasePrepare.prototype.tick = function tick ()\n{\n setTimeout(this.delayedTick, 0);\n};\n\n/**\n * Actually prepare items. This is handled outside of the tick because it will take a while\n * and we do NOT want to block the current animation frame from rendering.\n *\n * @private\n */\nBasePrepare.prototype.prepareItems = function prepareItems ()\n{\n this.limiter.beginFrame();\n // Upload the graphics\n while (this.queue.length && this.limiter.allowedToUpload())\n {\n var item = this.queue[0];\n var uploaded = false;\n\n if (item && !item._destroyed)\n {\n for (var i = 0, len = this.uploadHooks.length; i < len; i++)\n {\n if (this.uploadHooks[i](this.uploadHookHelper, item))\n {\n this.queue.shift();\n uploaded = true;\n break;\n }\n }\n }\n\n if (!uploaded)\n {\n this.queue.shift();\n }\n }\n\n // We're finished\n if (!this.queue.length)\n {\n this.ticking = false;\n\n var completes = this.completes.slice(0);\n\n this.completes.length = 0;\n\n for (var i$1 = 0, len$1 = completes.length; i$1 < len$1; i$1++)\n {\n completes[i$1]();\n }\n }\n else\n {\n // if we are not finished, on the next rAF do this again\n Ticker.system.addOnce(this.tick, this, UPDATE_PRIORITY.UTILITY);\n }\n};\n\n/**\n * Adds hooks for finding items.\n *\n * @param {Function} addHook - Function call that takes two parameters: `item:*, queue:Array`\n * function must return `true` if it was able to add item to the queue.\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.registerFindHook = function registerFindHook (addHook)\n{\n if (addHook)\n {\n this.addHooks.push(addHook);\n }\n\n return this;\n};\n\n/**\n * Adds hooks for uploading items.\n *\n * @param {Function} uploadHook - Function call that takes two parameters: `prepare:CanvasPrepare, item:*` and\n * function must return `true` if it was able to handle upload of item.\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.registerUploadHook = function registerUploadHook (uploadHook)\n{\n if (uploadHook)\n {\n this.uploadHooks.push(uploadHook);\n }\n\n return this;\n};\n\n/**\n * Manually add an item to the uploading queue.\n *\n * @param {PIXI.DisplayObject|PIXI.Container|PIXI.BaseTexture|PIXI.Texture|PIXI.Graphics|PIXI.Text|*} item - Object to\n * add to the queue\n * @return {PIXI.prepare.BasePrepare} Instance of plugin for chaining.\n */\nBasePrepare.prototype.add = function add (item)\n{\n // Add additional hooks for finding elements on special\n // types of objects that\n for (var i = 0, len = this.addHooks.length; i < len; i++)\n {\n if (this.addHooks[i](item, this.queue))\n {\n break;\n }\n }\n\n // Get children recursively\n if (item instanceof Container)\n {\n for (var i$1 = item.children.length - 1; i$1 >= 0; i$1--)\n {\n this.add(item.children[i$1]);\n }\n }\n\n return this;\n};\n\n/**\n * Destroys the plugin, don't use after this.\n *\n */\nBasePrepare.prototype.destroy = function destroy ()\n{\n if (this.ticking)\n {\n Ticker.system.remove(this.tick, this);\n }\n this.ticking = false;\n this.addHooks = null;\n this.uploadHooks = null;\n this.renderer = null;\n this.completes = null;\n this.queue = null;\n this.limiter = null;\n this.uploadHookHelper = null;\n};\n\n/**\n * Built-in hook to find multiple textures from objects like AnimatedSprites.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findMultipleBaseTextures(item, queue)\n{\n var result = false;\n\n // Objects with multiple textures\n if (item && item._textures && item._textures.length)\n {\n for (var i = 0; i < item._textures.length; i++)\n {\n if (item._textures[i] instanceof Texture)\n {\n var baseTexture = item._textures[i].baseTexture;\n\n if (queue.indexOf(baseTexture) === -1)\n {\n queue.push(baseTexture);\n result = true;\n }\n }\n }\n }\n\n return result;\n}\n\n/**\n * Built-in hook to find BaseTextures from Sprites.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findBaseTexture(item, queue)\n{\n // Objects with textures, like Sprites/Text\n if (item instanceof BaseTexture)\n {\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find textures from objects.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Texture object was found.\n */\nfunction findTexture(item, queue)\n{\n if (item._texture && item._texture instanceof Texture)\n {\n var texture = item._texture.baseTexture;\n\n if (queue.indexOf(texture) === -1)\n {\n queue.push(texture);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to draw PIXI.Text to its texture.\n *\n * @private\n * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction drawText(helper, item)\n{\n if (item instanceof Text)\n {\n // updating text will return early if it is not dirty\n item.updateText(true);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to calculate a text style for a PIXI.Text object.\n *\n * @private\n * @param {PIXI.Renderer|PIXI.CanvasPrepare} helper - Not used by this upload handler\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction calculateTextStyle(helper, item)\n{\n if (item instanceof TextStyle)\n {\n var font = item.toFontString();\n\n TextMetrics.measureFont(font);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find Text objects.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Text object was found.\n */\nfunction findText(item, queue)\n{\n if (item instanceof Text)\n {\n // push the text style to prepare it - this can be really expensive\n if (queue.indexOf(item.style) === -1)\n {\n queue.push(item.style);\n }\n // also push the text object so that we can render it (to canvas/texture) if needed\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n // also push the Text's texture for upload to GPU\n var texture = item._texture.baseTexture;\n\n if (queue.indexOf(texture) === -1)\n {\n queue.push(texture);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find TextStyle objects.\n *\n * @private\n * @param {PIXI.TextStyle} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.TextStyle object was found.\n */\nfunction findTextStyle(item, queue)\n{\n if (item instanceof TextStyle)\n {\n if (queue.indexOf(item) === -1)\n {\n queue.push(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * The prepare manager provides functionality to upload content to the GPU.\n *\n * An instance of this class is automatically created by default, and can be found at `renderer.plugins.prepare`\n *\n * @class\n * @extends PIXI.prepare.BasePrepare\n * @memberof PIXI.prepare\n */\nvar Prepare = /*@__PURE__*/(function (BasePrepare) {\n function Prepare(renderer)\n {\n BasePrepare.call(this, renderer);\n\n this.uploadHookHelper = this.renderer;\n\n // Add textures and graphics to upload\n this.registerFindHook(findGraphics);\n this.registerUploadHook(uploadBaseTextures);\n this.registerUploadHook(uploadGraphics);\n }\n\n if ( BasePrepare ) Prepare.__proto__ = BasePrepare;\n Prepare.prototype = Object.create( BasePrepare && BasePrepare.prototype );\n Prepare.prototype.constructor = Prepare;\n\n return Prepare;\n}(BasePrepare));\n/**\n * Built-in hook to upload PIXI.Texture objects to the GPU.\n *\n * @private\n * @param {PIXI.Renderer} renderer - instance of the webgl renderer\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction uploadBaseTextures(renderer, item)\n{\n if (item instanceof BaseTexture)\n {\n // if the texture already has a GL texture, then the texture has been prepared or rendered\n // before now. If the texture changed, then the changer should be calling texture.update() which\n // reuploads the texture without need for preparing it again\n if (!item._glTextures[renderer.CONTEXT_UID])\n {\n renderer.texture.bind(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to upload PIXI.Graphics to the GPU.\n *\n * @private\n * @param {PIXI.Renderer} renderer - instance of the webgl renderer\n * @param {PIXI.DisplayObject} item - Item to check\n * @return {boolean} If item was uploaded.\n */\nfunction uploadGraphics(renderer, item)\n{\n if (item instanceof Graphics)\n {\n // if the item is not dirty and already has webgl data, then it got prepared or rendered\n // before now and we shouldn't waste time updating it again\n if (item.dirty || item.clearDirty || !item._webGL[renderer.plugins.graphics.CONTEXT_UID])\n {\n renderer.plugins.graphics.updateGraphics(item);\n }\n\n return true;\n }\n\n return false;\n}\n\n/**\n * Built-in hook to find graphics.\n *\n * @private\n * @param {PIXI.DisplayObject} item - Display object to check\n * @param {Array<*>} queue - Collection of items to upload\n * @return {boolean} if a PIXI.Graphics object was found.\n */\nfunction findGraphics(item, queue)\n{\n if (item instanceof Graphics)\n {\n queue.push(item);\n\n return true;\n }\n\n return false;\n}\n\n/**\n * TimeLimiter limits the number of items handled by a {@link PIXI.BasePrepare} to a specified\n * number of milliseconds per frame.\n *\n * @class\n * @memberof PIXI.prepare\n */\nvar TimeLimiter = function TimeLimiter(maxMilliseconds)\n{\n /**\n * The maximum milliseconds that can be spent preparing items each frame.\n * @type {number}\n * @private\n */\n this.maxMilliseconds = maxMilliseconds;\n /**\n * The start time of the current frame.\n * @type {number}\n * @private\n */\n this.frameStart = 0;\n};\n\n/**\n * Resets any counting properties to start fresh on a new frame.\n */\nTimeLimiter.prototype.beginFrame = function beginFrame ()\n{\n this.frameStart = Date.now();\n};\n\n/**\n * Checks to see if another item can be uploaded. This should only be called once per item.\n * @return {boolean} If the item is allowed to be uploaded.\n */\nTimeLimiter.prototype.allowedToUpload = function allowedToUpload ()\n{\n return Date.now() - this.frameStart < this.maxMilliseconds;\n};\n\n/**\n * The prepare namespace provides renderer-specific plugins for pre-rendering DisplayObjects. These plugins are useful for\n * asynchronously preparing and uploading to the GPU assets, textures, graphics waiting to be displayed.\n *\n * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.Renderer#plugins}.\n * @example\n * // Create a new application\n * const app = new PIXI.Application();\n * document.body.appendChild(app.view);\n *\n * // Don't start rendering right away\n * app.stop();\n *\n * // create a display object\n * const rect = new PIXI.Graphics()\n * .beginFill(0x00ff00)\n * .drawRect(40, 40, 200, 200);\n *\n * // Add to the stage\n * app.stage.addChild(rect);\n *\n * // Don't start rendering until the graphic is uploaded to the GPU\n * app.renderer.plugins.prepare.upload(app.stage, () => {\n * app.start();\n * });\n * @namespace PIXI.prepare\n */\n\nexport { BasePrepare, CountLimiter, Prepare, TimeLimiter };\n//# sourceMappingURL=prepare.es.js.map\n","/*!\n * @pixi/app - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/app is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Container } from '@pixi/display';\nimport { autoDetectRenderer } from '@pixi/core';\n\n/**\n * Convenience class to create a new PIXI application.\n *\n * This class automatically creates the renderer, ticker and root container.\n *\n * @example\n * // Create the application\n * const app = new PIXI.Application();\n *\n * // Add the view to the DOM\n * document.body.appendChild(app.view);\n *\n * // ex, add display objects\n * app.stage.addChild(PIXI.Sprite.from('something.png'));\n *\n * @class\n * @memberof PIXI\n */\nvar Application = function Application(options)\n{\n var this$1 = this;\n\n // The default options\n options = Object.assign({\n forceCanvas: false,\n }, options);\n\n /**\n * WebGL renderer if available, otherwise CanvasRenderer.\n * @member {PIXI.Renderer|PIXI.CanvasRenderer}\n */\n this.renderer = autoDetectRenderer(options);\n\n /**\n * The root display container that's rendered.\n * @member {PIXI.Container}\n */\n this.stage = new Container();\n\n // install plugins here\n Application._plugins.forEach(function (plugin) {\n plugin.init.call(this$1, options);\n });\n};\n\nvar prototypeAccessors = { view: { configurable: true },screen: { configurable: true } };\n\n/**\n * Register a middleware plugin for the application\n * @static\n * @param {PIXI.Application.Plugin} plugin - Plugin being installed\n */\nApplication.registerPlugin = function registerPlugin (plugin)\n{\n Application._plugins.push(plugin);\n};\n\n/**\n * Render the current stage.\n */\nApplication.prototype.render = function render ()\n{\n this.renderer.render(this.stage);\n};\n\n/**\n * Reference to the renderer's canvas element.\n * @member {HTMLCanvasElement}\n * @readonly\n */\nprototypeAccessors.view.get = function ()\n{\n return this.renderer.view;\n};\n\n/**\n * Reference to the renderer's screen rectangle. Its safe to use as `filterArea` or `hitArea` for the whole screen.\n * @member {PIXI.Rectangle}\n * @readonly\n */\nprototypeAccessors.screen.get = function ()\n{\n return this.renderer.screen;\n};\n\n/**\n * Destroy and don't use after this.\n * @param {Boolean} [removeView=false] Automatically remove canvas from DOM.\n * @param {object|boolean} [stageOptions] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [stageOptions.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'stageOptions' will be passed on to those calls.\n * @param {boolean} [stageOptions.texture=false] - Only used for child Sprites if stageOptions.children is set\n * to true. Should it destroy the texture of the child sprite\n * @param {boolean} [stageOptions.baseTexture=false] - Only used for child Sprites if stageOptions.children is set\n * to true. Should it destroy the base texture of the child sprite\n */\nApplication.prototype.destroy = function destroy (removeView, stageOptions)\n{\n var this$1 = this;\n\n // Destroy plugins in the opposite order\n // which they were constructed\n var plugins = Application._plugins.slice(0);\n\n plugins.reverse();\n plugins.forEach(function (plugin) {\n plugin.destroy.call(this$1);\n });\n\n this.stage.destroy(stageOptions);\n this.stage = null;\n\n this.renderer.destroy(removeView);\n this.renderer = null;\n\n this._options = null;\n};\n\nObject.defineProperties( Application.prototype, prototypeAccessors );\n\n/**\n * @memberof PIXI.Application\n * @typedef {object} Plugin\n * @property {function} init - Called when Application is constructed, scoped to Application instance.\n * Passes in `options` as the only argument, which are Application constructor options.\n * @property {function} destroy - Called when destroying Application, scoped to Application instance\n */\n\n/**\n * Collection of installed plugins.\n * @static\n * @private\n * @type {PIXI.Application.Plugin[]}\n */\nApplication._plugins = [];\n\n/**\n * Middleware for for Application's resize functionality\n * @private\n * @class\n */\nvar ResizePlugin = function ResizePlugin () {};\n\nResizePlugin.init = function init (options)\n{\n var this$1 = this;\n\n /**\n * The element or window to resize the application to.\n * @type {Window|HTMLElement}\n * @name resizeTo\n * @memberof PIXI.Application#\n */\n Object.defineProperty(this, 'resizeTo',\n {\n set: function set(dom)\n {\n window.removeEventListener('resize', this.resize);\n this._resizeTo = dom;\n if (dom)\n {\n window.addEventListener('resize', this.resize);\n this.resize();\n }\n },\n get: function get()\n {\n return this._resizeTo;\n },\n });\n\n /**\n * If `resizeTo` is set, calling this function\n * will resize to the width and height of that element.\n * @method PIXI.Application#resize\n */\n this.resize = function () {\n if (this$1._resizeTo)\n {\n // Resize to the window\n if (this$1._resizeTo === window)\n {\n this$1.renderer.resize(\n window.innerWidth,\n window.innerHeight\n );\n }\n // Resize to other HTML entities\n else\n {\n this$1.renderer.resize(\n this$1._resizeTo.clientWidth,\n this$1._resizeTo.clientHeight\n );\n }\n }\n };\n\n // On resize\n this._resizeTo = null;\n this.resizeTo = options.resizeTo || null;\n};\n\n/**\n * Clean up the ticker, scoped to application\n * @static\n * @private\n */\nResizePlugin.destroy = function destroy ()\n{\n this.resizeTo = null;\n this.resize = null;\n};\n\nApplication.registerPlugin(ResizePlugin);\n\nexport { Application };\n//# sourceMappingURL=app.es.js.map\n","'use strict'\n\nmodule.exports = function parseURI (str, opts) {\n opts = opts || {}\n\n var o = {\n key: ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'],\n q: {\n name: 'queryKey',\n parser: /(?:^|&)([^&=]*)=?([^&]*)/g\n },\n parser: {\n strict: /^(?:([^:\\/?#]+):)?(?:\\/\\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\\/?#]*)(?::(\\d*))?))?((((?:[^?#\\/]*\\/)*)([^?#]*))(?:\\?([^#]*))?(?:#(.*))?)/,\n loose: /^(?:(?![^:@]+:[^:@\\/]*@)([^:\\/?#.]+):)?(?:\\/\\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\\/?#]*)(?::(\\d*))?)(((\\/(?:[^?#](?![^?#\\/]*\\.[^?#\\/.]+(?:[?#]|$)))*\\/?)?([^?#\\/]*))(?:\\?([^#]*))?(?:#(.*))?)/\n }\n }\n\n var m = o.parser[opts.strictMode ? 'strict' : 'loose'].exec(str)\n var uri = {}\n var i = 14\n\n while (i--) uri[o.key[i]] = m[i] || ''\n\n uri[o.q.name] = {}\n uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) {\n if ($1) uri[o.q.name][$1] = $2\n })\n\n return uri\n}\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\n\nvar _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }\n\nvar MiniSignalBinding = (function () {\n function MiniSignalBinding(fn, once, thisArg) {\n if (once === undefined) once = false;\n\n _classCallCheck(this, MiniSignalBinding);\n\n this._fn = fn;\n this._once = once;\n this._thisArg = thisArg;\n this._next = this._prev = this._owner = null;\n }\n\n _createClass(MiniSignalBinding, [{\n key: 'detach',\n value: function detach() {\n if (this._owner === null) return false;\n this._owner.detach(this);\n return true;\n }\n }]);\n\n return MiniSignalBinding;\n})();\n\nfunction _addMiniSignalBinding(self, node) {\n if (!self._head) {\n self._head = node;\n self._tail = node;\n } else {\n self._tail._next = node;\n node._prev = self._tail;\n self._tail = node;\n }\n\n node._owner = self;\n\n return node;\n}\n\nvar MiniSignal = (function () {\n function MiniSignal() {\n _classCallCheck(this, MiniSignal);\n\n this._head = this._tail = undefined;\n }\n\n _createClass(MiniSignal, [{\n key: 'handlers',\n value: function handlers() {\n var exists = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0];\n\n var node = this._head;\n\n if (exists) return !!node;\n\n var ee = [];\n\n while (node) {\n ee.push(node);\n node = node._next;\n }\n\n return ee;\n }\n }, {\n key: 'has',\n value: function has(node) {\n if (!(node instanceof MiniSignalBinding)) {\n throw new Error('MiniSignal#has(): First arg must be a MiniSignalBinding object.');\n }\n\n return node._owner === this;\n }\n }, {\n key: 'dispatch',\n value: function dispatch() {\n var node = this._head;\n\n if (!node) return false;\n\n while (node) {\n if (node._once) this.detach(node);\n node._fn.apply(node._thisArg, arguments);\n node = node._next;\n }\n\n return true;\n }\n }, {\n key: 'add',\n value: function add(fn) {\n var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];\n\n if (typeof fn !== 'function') {\n throw new Error('MiniSignal#add(): First arg must be a Function.');\n }\n return _addMiniSignalBinding(this, new MiniSignalBinding(fn, false, thisArg));\n }\n }, {\n key: 'once',\n value: function once(fn) {\n var thisArg = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];\n\n if (typeof fn !== 'function') {\n throw new Error('MiniSignal#once(): First arg must be a Function.');\n }\n return _addMiniSignalBinding(this, new MiniSignalBinding(fn, true, thisArg));\n }\n }, {\n key: 'detach',\n value: function detach(node) {\n if (!(node instanceof MiniSignalBinding)) {\n throw new Error('MiniSignal#detach(): First arg must be a MiniSignalBinding object.');\n }\n if (node._owner !== this) return this;\n\n if (node._prev) node._prev._next = node._next;\n if (node._next) node._next._prev = node._prev;\n\n if (node === this._head) {\n this._head = node._next;\n if (node._next === null) {\n this._tail = null;\n }\n } else if (node === this._tail) {\n this._tail = node._prev;\n this._tail._next = null;\n }\n\n node._owner = null;\n return this;\n }\n }, {\n key: 'detachAll',\n value: function detachAll() {\n var node = this._head;\n if (!node) return this;\n\n this._head = this._tail = null;\n\n while (node) {\n node._owner = null;\n node = node._next;\n }\n return this;\n }\n }]);\n\n return MiniSignal;\n})();\n\nMiniSignal.MiniSignalBinding = MiniSignalBinding;\n\nexports['default'] = MiniSignal;\nmodule.exports = exports['default'];\n","/*!\n * resource-loader - v3.0.1\n * https://github.com/pixijs/pixi-sound\n * Compiled Tue, 02 Jul 2019 14:06:18 UTC\n *\n * resource-loader is licensed under the MIT license.\n * http://www.opensource.org/licenses/mit-license\n */\nimport parseUri from 'parse-uri';\nimport Signal from 'mini-signals';\n\n/**\n * Smaller version of the async library constructs.\n *\n * @namespace async\n */\n\n/**\n * Noop function\n *\n * @ignore\n * @function\n * @memberof async\n */\nfunction _noop() {}\n/* empty */\n\n/**\n * Iterates an array in series.\n *\n * @memberof async\n * @function eachSeries\n * @param {Array.<*>} array - Array to iterate.\n * @param {function} iterator - Function to call for each element.\n * @param {function} callback - Function to call when done, or on error.\n * @param {boolean} [deferNext=false] - Break synchronous each loop by calling next with a setTimeout of 1.\n */\n\n\nfunction eachSeries(array, iterator, callback, deferNext) {\n var i = 0;\n var len = array.length;\n\n (function next(err) {\n if (err || i === len) {\n if (callback) {\n callback(err);\n }\n\n return;\n }\n\n if (deferNext) {\n setTimeout(function () {\n iterator(array[i++], next);\n }, 1);\n } else {\n iterator(array[i++], next);\n }\n })();\n}\n/**\n * Ensures a function is only called once.\n *\n * @ignore\n * @memberof async\n * @param {function} fn - The function to wrap.\n * @return {function} The wrapping function.\n */\n\nfunction onlyOnce(fn) {\n return function onceWrapper() {\n if (fn === null) {\n throw new Error('Callback was already called.');\n }\n\n var callFn = fn;\n fn = null;\n callFn.apply(this, arguments);\n };\n}\n/**\n * Async queue implementation,\n *\n * @memberof async\n * @function queue\n * @param {function} worker - The worker function to call for each task.\n * @param {number} concurrency - How many workers to run in parrallel.\n * @return {*} The async queue object.\n */\n\n\nfunction queue(worker, concurrency) {\n if (concurrency == null) {\n // eslint-disable-line no-eq-null,eqeqeq\n concurrency = 1;\n } else if (concurrency === 0) {\n throw new Error('Concurrency must not be zero');\n }\n\n var workers = 0;\n var q = {\n _tasks: [],\n concurrency: concurrency,\n saturated: _noop,\n unsaturated: _noop,\n buffer: concurrency / 4,\n empty: _noop,\n drain: _noop,\n error: _noop,\n started: false,\n paused: false,\n push: function push(data, callback) {\n _insert(data, false, callback);\n },\n kill: function kill() {\n workers = 0;\n q.drain = _noop;\n q.started = false;\n q._tasks = [];\n },\n unshift: function unshift(data, callback) {\n _insert(data, true, callback);\n },\n process: function process() {\n while (!q.paused && workers < q.concurrency && q._tasks.length) {\n var task = q._tasks.shift();\n\n if (q._tasks.length === 0) {\n q.empty();\n }\n\n workers += 1;\n\n if (workers === q.concurrency) {\n q.saturated();\n }\n\n worker(task.data, onlyOnce(_next(task)));\n }\n },\n length: function length() {\n return q._tasks.length;\n },\n running: function running() {\n return workers;\n },\n idle: function idle() {\n return q._tasks.length + workers === 0;\n },\n pause: function pause() {\n if (q.paused === true) {\n return;\n }\n\n q.paused = true;\n },\n resume: function resume() {\n if (q.paused === false) {\n return;\n }\n\n q.paused = false; // Need to call q.process once per concurrent\n // worker to preserve full concurrency after pause\n\n for (var w = 1; w <= q.concurrency; w++) {\n q.process();\n }\n }\n };\n\n function _insert(data, insertAtFront, callback) {\n if (callback != null && typeof callback !== 'function') {\n // eslint-disable-line no-eq-null,eqeqeq\n throw new Error('task callback must be a function');\n }\n\n q.started = true;\n\n if (data == null && q.idle()) {\n // eslint-disable-line no-eq-null,eqeqeq\n // call drain immediately if there are no tasks\n setTimeout(function () {\n return q.drain();\n }, 1);\n return;\n }\n\n var item = {\n data: data,\n callback: typeof callback === 'function' ? callback : _noop\n };\n\n if (insertAtFront) {\n q._tasks.unshift(item);\n } else {\n q._tasks.push(item);\n }\n\n setTimeout(function () {\n return q.process();\n }, 1);\n }\n\n function _next(task) {\n return function next() {\n workers -= 1;\n task.callback.apply(task, arguments);\n\n if (arguments[0] != null) {\n // eslint-disable-line no-eq-null,eqeqeq\n q.error(arguments[0], task.data);\n }\n\n if (workers <= q.concurrency - q.buffer) {\n q.unsaturated();\n }\n\n if (q.idle()) {\n q.drain();\n }\n\n q.process();\n };\n }\n\n return q;\n}\n\nvar async = ({\n eachSeries: eachSeries,\n queue: queue\n});\n\n// a simple in-memory cache for resources\nvar cache = {};\n/**\n * A simple in-memory cache for resource.\n *\n * @memberof middleware\n * @function caching\n * @example\n * import { Loader, middleware } from 'resource-loader';\n * const loader = new Loader();\n * loader.use(middleware.caching);\n * @param {Resource} resource - Current Resource\n * @param {function} next - Callback when complete\n */\n\nfunction caching(resource, next) {\n var _this = this;\n\n // if cached, then set data and complete the resource\n if (cache[resource.url]) {\n resource.data = cache[resource.url];\n resource.complete(); // marks resource load complete and stops processing before middlewares\n } // if not cached, wait for complete and store it in the cache.\n else {\n resource.onComplete.once(function () {\n return cache[_this.url] = _this.data;\n });\n }\n\n next();\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nvar useXdr = !!(window.XDomainRequest && !('withCredentials' in new XMLHttpRequest()));\nvar tempAnchor = null; // some status constants\n\nvar STATUS_NONE = 0;\nvar STATUS_OK = 200;\nvar STATUS_EMPTY = 204;\nvar STATUS_IE_BUG_EMPTY = 1223;\nvar STATUS_TYPE_OK = 2; // noop\n\nfunction _noop$1() {}\n/* empty */\n\n/**\n * Manages the state and loading of a resource and all child resources.\n *\n * @class\n */\n\n\nvar Resource =\n/*#__PURE__*/\nfunction () {\n /**\n * Sets the load type to be used for a specific extension.\n *\n * @static\n * @param {string} extname - The extension to set the type for, e.g. \"png\" or \"fnt\"\n * @param {Resource.LOAD_TYPE} loadType - The load type to set it to.\n */\n Resource.setExtensionLoadType = function setExtensionLoadType(extname, loadType) {\n setExtMap(Resource._loadTypeMap, extname, loadType);\n }\n /**\n * Sets the load type to be used for a specific extension.\n *\n * @static\n * @param {string} extname - The extension to set the type for, e.g. \"png\" or \"fnt\"\n * @param {Resource.XHR_RESPONSE_TYPE} xhrType - The xhr type to set it to.\n */\n ;\n\n Resource.setExtensionXhrType = function setExtensionXhrType(extname, xhrType) {\n setExtMap(Resource._xhrTypeMap, extname, xhrType);\n }\n /**\n * @param {string} name - The name of the resource to load.\n * @param {string|string[]} url - The url for this resource, for audio/video loads you can pass\n * an array of sources.\n * @param {object} [options] - The options for the load.\n * @param {string|boolean} [options.crossOrigin] - Is this request cross-origin? Default is to\n * determine automatically.\n * @param {number} [options.timeout=0] - A timeout in milliseconds for the load. If the load takes\n * longer than this time it is cancelled and the load is considered a failure. If this value is\n * set to `0` then there is no explicit timeout.\n * @param {Resource.LOAD_TYPE} [options.loadType=Resource.LOAD_TYPE.XHR] - How should this resource\n * be loaded?\n * @param {Resource.XHR_RESPONSE_TYPE} [options.xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How\n * should the data being loaded be interpreted when using XHR?\n * @param {Resource.IMetadata} [options.metadata] - Extra configuration for middleware and the Resource object.\n */\n ;\n\n function Resource(name, url, options) {\n if (typeof name !== 'string' || typeof url !== 'string') {\n throw new Error('Both name and url are required for constructing a resource.');\n }\n\n options = options || {};\n /**\n * The state flags of this resource.\n *\n * @private\n * @member {number}\n */\n\n this._flags = 0; // set data url flag, needs to be set early for some _determineX checks to work.\n\n this._setFlag(Resource.STATUS_FLAGS.DATA_URL, url.indexOf('data:') === 0);\n /**\n * The name of this resource.\n *\n * @readonly\n * @member {string}\n */\n\n\n this.name = name;\n /**\n * The url used to load this resource.\n *\n * @readonly\n * @member {string}\n */\n\n this.url = url;\n /**\n * The extension used to load this resource.\n *\n * @readonly\n * @member {string}\n */\n\n this.extension = this._getExtension();\n /**\n * The data that was loaded by the resource.\n *\n * @member {any}\n */\n\n this.data = null;\n /**\n * Is this request cross-origin? If unset, determined automatically.\n *\n * @member {string}\n */\n\n this.crossOrigin = options.crossOrigin === true ? 'anonymous' : options.crossOrigin;\n /**\n * A timeout in milliseconds for the load. If the load takes longer than this time\n * it is cancelled and the load is considered a failure. If this value is set to `0`\n * then there is no explicit timeout.\n *\n * @member {number}\n */\n\n this.timeout = options.timeout || 0;\n /**\n * The method of loading to use for this resource.\n *\n * @member {Resource.LOAD_TYPE}\n */\n\n this.loadType = options.loadType || this._determineLoadType();\n /**\n * The type used to load the resource via XHR. If unset, determined automatically.\n *\n * @member {string}\n */\n\n this.xhrType = options.xhrType;\n /**\n * Extra info for middleware, and controlling specifics about how the resource loads.\n *\n * Note that if you pass in a `loadElement`, the Resource class takes ownership of it.\n * Meaning it will modify it as it sees fit.\n *\n * @member {Resource.IMetadata}\n */\n\n this.metadata = options.metadata || {};\n /**\n * The error that occurred while loading (if any).\n *\n * @readonly\n * @member {Error}\n */\n\n this.error = null;\n /**\n * The XHR object that was used to load this resource. This is only set\n * when `loadType` is `Resource.LOAD_TYPE.XHR`.\n *\n * @readonly\n * @member {XMLHttpRequest}\n */\n\n this.xhr = null;\n /**\n * The child resources this resource owns.\n *\n * @readonly\n * @member {Resource[]}\n */\n\n this.children = [];\n /**\n * The resource type.\n *\n * @readonly\n * @member {Resource.TYPE}\n */\n\n this.type = Resource.TYPE.UNKNOWN;\n /**\n * The progress chunk owned by this resource.\n *\n * @readonly\n * @member {number}\n */\n\n this.progressChunk = 0;\n /**\n * The `dequeue` method that will be used a storage place for the async queue dequeue method\n * used privately by the loader.\n *\n * @private\n * @member {function}\n */\n\n this._dequeue = _noop$1;\n /**\n * Used a storage place for the on load binding used privately by the loader.\n *\n * @private\n * @member {function}\n */\n\n this._onLoadBinding = null;\n /**\n * The timer for element loads to check if they timeout.\n *\n * @private\n * @member {number}\n */\n\n this._elementTimer = 0;\n /**\n * The `complete` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundComplete = this.complete.bind(this);\n /**\n * The `_onError` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnError = this._onError.bind(this);\n /**\n * The `_onProgress` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnProgress = this._onProgress.bind(this);\n /**\n * The `_onTimeout` function bound to this resource's context.\n *\n * @private\n * @member {function}\n */\n\n this._boundOnTimeout = this._onTimeout.bind(this); // xhr callbacks\n\n this._boundXhrOnError = this._xhrOnError.bind(this);\n this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this);\n this._boundXhrOnAbort = this._xhrOnAbort.bind(this);\n this._boundXhrOnLoad = this._xhrOnLoad.bind(this);\n /**\n * Dispatched when the resource beings to load.\n *\n * The callback looks like {@link Resource.OnStartSignal}.\n *\n * @member {Signal}\n */\n\n this.onStart = new Signal();\n /**\n * Dispatched each time progress of this resource load updates.\n * Not all resources types and loader systems can support this event\n * so sometimes it may not be available. If the resource\n * is being loaded on a modern browser, using XHR, and the remote server\n * properly sets Content-Length headers, then this will be available.\n *\n * The callback looks like {@link Resource.OnProgressSignal}.\n *\n * @member {Signal}\n */\n\n this.onProgress = new Signal();\n /**\n * Dispatched once this resource has loaded, if there was an error it will\n * be in the `error` property.\n *\n * The callback looks like {@link Resource.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onComplete = new Signal();\n /**\n * Dispatched after this resource has had all the *after* middleware run on it.\n *\n * The callback looks like {@link Resource.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onAfterMiddleware = new Signal();\n }\n /**\n * When the resource starts to load.\n *\n * @memberof Resource\n * @callback OnStartSignal\n * @param {Resource} resource - The resource that the event happened on.\n */\n\n /**\n * When the resource reports loading progress.\n *\n * @memberof Resource\n * @callback OnProgressSignal\n * @param {Resource} resource - The resource that the event happened on.\n * @param {number} percentage - The progress of the load in the range [0, 1].\n */\n\n /**\n * When the resource finishes loading.\n *\n * @memberof Resource\n * @callback OnCompleteSignal\n * @param {Resource} resource - The resource that the event happened on.\n */\n\n /**\n * @memberof Resource\n * @typedef {object} IMetadata\n * @property {HTMLImageElement|HTMLAudioElement|HTMLVideoElement} [loadElement=null] - The\n * element to use for loading, instead of creating one.\n * @property {boolean} [skipSource=false] - Skips adding source(s) to the load element. This\n * is useful if you want to pass in a `loadElement` that you already added load sources to.\n * @property {string|string[]} [mimeType] - The mime type to use for the source element\n * of a video/audio elment. If the urls are an array, you can pass this as an array as well\n * where each index is the mime type to use for the corresponding url index.\n */\n\n /**\n * Stores whether or not this url is a data url.\n *\n * @readonly\n * @member {boolean}\n */\n\n\n var _proto = Resource.prototype;\n\n /**\n * Marks the resource as complete.\n *\n */\n _proto.complete = function complete() {\n this._clearEvents();\n\n this._finish();\n }\n /**\n * Aborts the loading of this resource, with an optional message.\n *\n * @param {string} message - The message to use for the error\n */\n ;\n\n _proto.abort = function abort(message) {\n // abort can be called multiple times, ignore subsequent calls.\n if (this.error) {\n return;\n } // store error\n\n\n this.error = new Error(message); // clear events before calling aborts\n\n this._clearEvents(); // abort the actual loading\n\n\n if (this.xhr) {\n this.xhr.abort();\n } else if (this.xdr) {\n this.xdr.abort();\n } else if (this.data) {\n // single source\n if (this.data.src) {\n this.data.src = Resource.EMPTY_GIF;\n } // multi-source\n else {\n while (this.data.firstChild) {\n this.data.removeChild(this.data.firstChild);\n }\n }\n } // done now.\n\n\n this._finish();\n }\n /**\n * Kicks off loading of this resource. This method is asynchronous.\n *\n * @param {Resource.OnCompleteSignal} [cb] - Optional callback to call once the resource is loaded.\n */\n ;\n\n _proto.load = function load(cb) {\n var _this = this;\n\n if (this.isLoading) {\n return;\n }\n\n if (this.isComplete) {\n if (cb) {\n setTimeout(function () {\n return cb(_this);\n }, 1);\n }\n\n return;\n } else if (cb) {\n this.onComplete.once(cb);\n }\n\n this._setFlag(Resource.STATUS_FLAGS.LOADING, true);\n\n this.onStart.dispatch(this); // if unset, determine the value\n\n if (this.crossOrigin === false || typeof this.crossOrigin !== 'string') {\n this.crossOrigin = this._determineCrossOrigin(this.url);\n }\n\n switch (this.loadType) {\n case Resource.LOAD_TYPE.IMAGE:\n this.type = Resource.TYPE.IMAGE;\n\n this._loadElement('image');\n\n break;\n\n case Resource.LOAD_TYPE.AUDIO:\n this.type = Resource.TYPE.AUDIO;\n\n this._loadSourceElement('audio');\n\n break;\n\n case Resource.LOAD_TYPE.VIDEO:\n this.type = Resource.TYPE.VIDEO;\n\n this._loadSourceElement('video');\n\n break;\n\n case Resource.LOAD_TYPE.XHR:\n /* falls through */\n\n default:\n if (useXdr && this.crossOrigin) {\n this._loadXdr();\n } else {\n this._loadXhr();\n }\n\n break;\n }\n }\n /**\n * Checks if the flag is set.\n *\n * @private\n * @param {number} flag - The flag to check.\n * @return {boolean} True if the flag is set.\n */\n ;\n\n _proto._hasFlag = function _hasFlag(flag) {\n return (this._flags & flag) !== 0;\n }\n /**\n * (Un)Sets the flag.\n *\n * @private\n * @param {number} flag - The flag to (un)set.\n * @param {boolean} value - Whether to set or (un)set the flag.\n */\n ;\n\n _proto._setFlag = function _setFlag(flag, value) {\n this._flags = value ? this._flags | flag : this._flags & ~flag;\n }\n /**\n * Clears all the events from the underlying loading source.\n *\n * @private\n */\n ;\n\n _proto._clearEvents = function _clearEvents() {\n clearTimeout(this._elementTimer);\n\n if (this.data && this.data.removeEventListener) {\n this.data.removeEventListener('error', this._boundOnError, false);\n this.data.removeEventListener('load', this._boundComplete, false);\n this.data.removeEventListener('progress', this._boundOnProgress, false);\n this.data.removeEventListener('canplaythrough', this._boundComplete, false);\n }\n\n if (this.xhr) {\n if (this.xhr.removeEventListener) {\n this.xhr.removeEventListener('error', this._boundXhrOnError, false);\n this.xhr.removeEventListener('timeout', this._boundXhrOnTimeout, false);\n this.xhr.removeEventListener('abort', this._boundXhrOnAbort, false);\n this.xhr.removeEventListener('progress', this._boundOnProgress, false);\n this.xhr.removeEventListener('load', this._boundXhrOnLoad, false);\n } else {\n this.xhr.onerror = null;\n this.xhr.ontimeout = null;\n this.xhr.onprogress = null;\n this.xhr.onload = null;\n }\n }\n }\n /**\n * Finalizes the load.\n *\n * @private\n */\n ;\n\n _proto._finish = function _finish() {\n if (this.isComplete) {\n throw new Error('Complete called again for an already completed resource.');\n }\n\n this._setFlag(Resource.STATUS_FLAGS.COMPLETE, true);\n\n this._setFlag(Resource.STATUS_FLAGS.LOADING, false);\n\n this.onComplete.dispatch(this);\n }\n /**\n * Loads this resources using an element that has a single source,\n * like an HTMLImageElement.\n *\n * @private\n * @param {string} type - The type of element to use.\n */\n ;\n\n _proto._loadElement = function _loadElement(type) {\n if (this.metadata.loadElement) {\n this.data = this.metadata.loadElement;\n } else if (type === 'image' && typeof window.Image !== 'undefined') {\n this.data = new Image();\n } else {\n this.data = document.createElement(type);\n }\n\n if (this.crossOrigin) {\n this.data.crossOrigin = this.crossOrigin;\n }\n\n if (!this.metadata.skipSource) {\n this.data.src = this.url;\n }\n\n this.data.addEventListener('error', this._boundOnError, false);\n this.data.addEventListener('load', this._boundComplete, false);\n this.data.addEventListener('progress', this._boundOnProgress, false);\n\n if (this.timeout) {\n this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout);\n }\n }\n /**\n * Loads this resources using an element that has multiple sources,\n * like an HTMLAudioElement or HTMLVideoElement.\n *\n * @private\n * @param {string} type - The type of element to use.\n */\n ;\n\n _proto._loadSourceElement = function _loadSourceElement(type) {\n if (this.metadata.loadElement) {\n this.data = this.metadata.loadElement;\n } else if (type === 'audio' && typeof window.Audio !== 'undefined') {\n this.data = new Audio();\n } else {\n this.data = document.createElement(type);\n }\n\n if (this.data === null) {\n this.abort(\"Unsupported element: \" + type);\n return;\n }\n\n if (this.crossOrigin) {\n this.data.crossOrigin = this.crossOrigin;\n }\n\n if (!this.metadata.skipSource) {\n // support for CocoonJS Canvas+ runtime, lacks document.createElement('source')\n if (navigator.isCocoonJS) {\n this.data.src = Array.isArray(this.url) ? this.url[0] : this.url;\n } else if (Array.isArray(this.url)) {\n var mimeTypes = this.metadata.mimeType;\n\n for (var i = 0; i < this.url.length; ++i) {\n this.data.appendChild(this._createSource(type, this.url[i], Array.isArray(mimeTypes) ? mimeTypes[i] : mimeTypes));\n }\n } else {\n var _mimeTypes = this.metadata.mimeType;\n this.data.appendChild(this._createSource(type, this.url, Array.isArray(_mimeTypes) ? _mimeTypes[0] : _mimeTypes));\n }\n }\n\n this.data.addEventListener('error', this._boundOnError, false);\n this.data.addEventListener('load', this._boundComplete, false);\n this.data.addEventListener('progress', this._boundOnProgress, false);\n this.data.addEventListener('canplaythrough', this._boundComplete, false);\n this.data.load();\n\n if (this.timeout) {\n this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout);\n }\n }\n /**\n * Loads this resources using an XMLHttpRequest.\n *\n * @private\n */\n ;\n\n _proto._loadXhr = function _loadXhr() {\n // if unset, determine the value\n if (typeof this.xhrType !== 'string') {\n this.xhrType = this._determineXhrType();\n }\n\n var xhr = this.xhr = new XMLHttpRequest(); // set the request type and url\n\n xhr.open('GET', this.url, true);\n xhr.timeout = this.timeout; // load json as text and parse it ourselves. We do this because some browsers\n // *cough* safari *cough* can't deal with it.\n\n if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON || this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) {\n xhr.responseType = Resource.XHR_RESPONSE_TYPE.TEXT;\n } else {\n xhr.responseType = this.xhrType;\n }\n\n xhr.addEventListener('error', this._boundXhrOnError, false);\n xhr.addEventListener('timeout', this._boundXhrOnTimeout, false);\n xhr.addEventListener('abort', this._boundXhrOnAbort, false);\n xhr.addEventListener('progress', this._boundOnProgress, false);\n xhr.addEventListener('load', this._boundXhrOnLoad, false);\n xhr.send();\n }\n /**\n * Loads this resources using an XDomainRequest. This is here because we need to support IE9 (gross).\n *\n * @private\n */\n ;\n\n _proto._loadXdr = function _loadXdr() {\n // if unset, determine the value\n if (typeof this.xhrType !== 'string') {\n this.xhrType = this._determineXhrType();\n }\n\n var xdr = this.xhr = new XDomainRequest(); // eslint-disable-line no-undef\n // XDomainRequest has a few quirks. Occasionally it will abort requests\n // A way to avoid this is to make sure ALL callbacks are set even if not used\n // More info here: http://stackoverflow.com/questions/15786966/xdomainrequest-aborts-post-on-ie-9\n\n xdr.timeout = this.timeout || 5000; // XDR needs a timeout value or it breaks in IE9\n\n xdr.onerror = this._boundXhrOnError;\n xdr.ontimeout = this._boundXhrOnTimeout;\n xdr.onprogress = this._boundOnProgress;\n xdr.onload = this._boundXhrOnLoad;\n xdr.open('GET', this.url, true); // Note: The xdr.send() call is wrapped in a timeout to prevent an\n // issue with the interface where some requests are lost if multiple\n // XDomainRequests are being sent at the same time.\n // Some info here: https://github.com/photonstorm/phaser/issues/1248\n\n setTimeout(function () {\n return xdr.send();\n }, 1);\n }\n /**\n * Creates a source used in loading via an element.\n *\n * @private\n * @param {string} type - The element type (video or audio).\n * @param {string} url - The source URL to load from.\n * @param {string} [mime] - The mime type of the video\n * @return {HTMLSourceElement} The source element.\n */\n ;\n\n _proto._createSource = function _createSource(type, url, mime) {\n if (!mime) {\n mime = type + \"/\" + this._getExtension(url);\n }\n\n var source = document.createElement('source');\n source.src = url;\n source.type = mime;\n return source;\n }\n /**\n * Called if a load errors out.\n *\n * @param {Event} event - The error event from the element that emits it.\n * @private\n */\n ;\n\n _proto._onError = function _onError(event) {\n this.abort(\"Failed to load element using: \" + event.target.nodeName);\n }\n /**\n * Called if a load progress event fires for an element or xhr/xdr.\n *\n * @private\n * @param {XMLHttpRequestProgressEvent|Event} event - Progress event.\n */\n ;\n\n _proto._onProgress = function _onProgress(event) {\n if (event && event.lengthComputable) {\n this.onProgress.dispatch(this, event.loaded / event.total);\n }\n }\n /**\n * Called if a timeout event fires for an element.\n *\n * @private\n */\n ;\n\n _proto._onTimeout = function _onTimeout() {\n this.abort(\"Load timed out.\");\n }\n /**\n * Called if an error event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnError = function _xhrOnError() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request failed. Status: \" + xhr.status + \", text: \\\"\" + xhr.statusText + \"\\\"\");\n }\n /**\n * Called if an error event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnTimeout = function _xhrOnTimeout() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request timed out.\");\n }\n /**\n * Called if an abort event fires for xhr/xdr.\n *\n * @private\n */\n ;\n\n _proto._xhrOnAbort = function _xhrOnAbort() {\n var xhr = this.xhr;\n this.abort(reqType(xhr) + \" Request was aborted by the user.\");\n }\n /**\n * Called when data successfully loads from an xhr/xdr request.\n *\n * @private\n * @param {XMLHttpRequestLoadEvent|Event} event - Load event\n */\n ;\n\n _proto._xhrOnLoad = function _xhrOnLoad() {\n var xhr = this.xhr;\n var text = '';\n var status = typeof xhr.status === 'undefined' ? STATUS_OK : xhr.status; // XDR has no `.status`, assume 200.\n // responseText is accessible only if responseType is '' or 'text' and on older browsers\n\n if (xhr.responseType === '' || xhr.responseType === 'text' || typeof xhr.responseType === 'undefined') {\n text = xhr.responseText;\n } // status can be 0 when using the `file://` protocol so we also check if a response is set.\n // If it has a response, we assume 200; otherwise a 0 status code with no contents is an aborted request.\n\n\n if (status === STATUS_NONE && (text.length > 0 || xhr.responseType === Resource.XHR_RESPONSE_TYPE.BUFFER)) {\n status = STATUS_OK;\n } // handle IE9 bug: http://stackoverflow.com/questions/10046972/msie-returns-status-code-of-1223-for-ajax-request\n else if (status === STATUS_IE_BUG_EMPTY) {\n status = STATUS_EMPTY;\n }\n\n var statusType = status / 100 | 0;\n\n if (statusType === STATUS_TYPE_OK) {\n // if text, just return it\n if (this.xhrType === Resource.XHR_RESPONSE_TYPE.TEXT) {\n this.data = text;\n this.type = Resource.TYPE.TEXT;\n } // if json, parse into json object\n else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.JSON) {\n try {\n this.data = JSON.parse(text);\n this.type = Resource.TYPE.JSON;\n } catch (e) {\n this.abort(\"Error trying to parse loaded json: \" + e);\n return;\n }\n } // if xml, parse into an xml document or div element\n else if (this.xhrType === Resource.XHR_RESPONSE_TYPE.DOCUMENT) {\n try {\n if (window.DOMParser) {\n var domparser = new DOMParser();\n this.data = domparser.parseFromString(text, 'text/xml');\n } else {\n var div = document.createElement('div');\n div.innerHTML = text;\n this.data = div;\n }\n\n this.type = Resource.TYPE.XML;\n } catch (e) {\n this.abort(\"Error trying to parse loaded xml: \" + e);\n return;\n }\n } // other types just return the response\n else {\n this.data = xhr.response || text;\n }\n } else {\n this.abort(\"[\" + xhr.status + \"] \" + xhr.statusText + \": \" + xhr.responseURL);\n return;\n }\n\n this.complete();\n }\n /**\n * Sets the `crossOrigin` property for this resource based on if the url\n * for this resource is cross-origin. If crossOrigin was manually set, this\n * function does nothing.\n *\n * @private\n * @param {string} url - The url to test.\n * @param {object} [loc=window.location] - The location object to test against.\n * @return {string} The crossOrigin value to use (or empty string for none).\n */\n ;\n\n _proto._determineCrossOrigin = function _determineCrossOrigin(url, loc) {\n // data: and javascript: urls are considered same-origin\n if (url.indexOf('data:') === 0) {\n return '';\n } // A sandboxed iframe without the 'allow-same-origin' attribute will have a special\n // origin designed not to match window.location.origin, and will always require\n // crossOrigin requests regardless of whether the location matches.\n\n\n if (window.origin !== window.location.origin) {\n return 'anonymous';\n } // default is window.location\n\n\n loc = loc || window.location;\n\n if (!tempAnchor) {\n tempAnchor = document.createElement('a');\n } // let the browser determine the full href for the url of this resource and then\n // parse with the node url lib, we can't use the properties of the anchor element\n // because they don't work in IE9 :(\n\n\n tempAnchor.href = url;\n url = parseUri(tempAnchor.href, {\n strictMode: true\n });\n var samePort = !url.port && loc.port === '' || url.port === loc.port;\n var protocol = url.protocol ? url.protocol + \":\" : ''; // if cross origin\n\n if (url.host !== loc.hostname || !samePort || protocol !== loc.protocol) {\n return 'anonymous';\n }\n\n return '';\n }\n /**\n * Determines the responseType of an XHR request based on the extension of the\n * resource being loaded.\n *\n * @private\n * @return {Resource.XHR_RESPONSE_TYPE} The responseType to use.\n */\n ;\n\n _proto._determineXhrType = function _determineXhrType() {\n return Resource._xhrTypeMap[this.extension] || Resource.XHR_RESPONSE_TYPE.TEXT;\n }\n /**\n * Determines the loadType of a resource based on the extension of the\n * resource being loaded.\n *\n * @private\n * @return {Resource.LOAD_TYPE} The loadType to use.\n */\n ;\n\n _proto._determineLoadType = function _determineLoadType() {\n return Resource._loadTypeMap[this.extension] || Resource.LOAD_TYPE.XHR;\n }\n /**\n * Extracts the extension (sans '.') of the file being loaded by the resource.\n *\n * @private\n * @return {string} The extension.\n */\n ;\n\n _proto._getExtension = function _getExtension() {\n var url = this.url;\n var ext = '';\n\n if (this.isDataUrl) {\n var slashIndex = url.indexOf('/');\n ext = url.substring(slashIndex + 1, url.indexOf(';', slashIndex));\n } else {\n var queryStart = url.indexOf('?');\n var hashStart = url.indexOf('#');\n var index = Math.min(queryStart > -1 ? queryStart : url.length, hashStart > -1 ? hashStart : url.length);\n url = url.substring(0, index);\n ext = url.substring(url.lastIndexOf('.') + 1);\n }\n\n return ext.toLowerCase();\n }\n /**\n * Determines the mime type of an XHR request based on the responseType of\n * resource being loaded.\n *\n * @private\n * @param {Resource.XHR_RESPONSE_TYPE} type - The type to get a mime type for.\n * @return {string} The mime type to use.\n */\n ;\n\n _proto._getMimeFromXhrType = function _getMimeFromXhrType(type) {\n switch (type) {\n case Resource.XHR_RESPONSE_TYPE.BUFFER:\n return 'application/octet-binary';\n\n case Resource.XHR_RESPONSE_TYPE.BLOB:\n return 'application/blob';\n\n case Resource.XHR_RESPONSE_TYPE.DOCUMENT:\n return 'application/xml';\n\n case Resource.XHR_RESPONSE_TYPE.JSON:\n return 'application/json';\n\n case Resource.XHR_RESPONSE_TYPE.DEFAULT:\n case Resource.XHR_RESPONSE_TYPE.TEXT:\n /* falls through */\n\n default:\n return 'text/plain';\n }\n };\n\n _createClass(Resource, [{\n key: \"isDataUrl\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.DATA_URL);\n }\n /**\n * Describes if this resource has finished loading. Is true when the resource has completely\n * loaded.\n *\n * @readonly\n * @member {boolean}\n */\n\n }, {\n key: \"isComplete\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.COMPLETE);\n }\n /**\n * Describes if this resource is currently loading. Is true when the resource starts loading,\n * and is false again when complete.\n *\n * @readonly\n * @member {boolean}\n */\n\n }, {\n key: \"isLoading\",\n get: function get() {\n return this._hasFlag(Resource.STATUS_FLAGS.LOADING);\n }\n }]);\n\n return Resource;\n}();\n/**\n * The types of resources a resource could represent.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\n\nResource.STATUS_FLAGS = {\n NONE: 0,\n DATA_URL: 1 << 0,\n COMPLETE: 1 << 1,\n LOADING: 1 << 2\n};\n/**\n * The types of resources a resource could represent.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\nResource.TYPE = {\n UNKNOWN: 0,\n JSON: 1,\n XML: 2,\n IMAGE: 3,\n AUDIO: 4,\n VIDEO: 5,\n TEXT: 6\n};\n/**\n * The types of loading a resource can use.\n *\n * @static\n * @readonly\n * @enum {number}\n */\n\nResource.LOAD_TYPE = {\n /** Uses XMLHttpRequest to load the resource. */\n XHR: 1,\n\n /** Uses an `Image` object to load the resource. */\n IMAGE: 2,\n\n /** Uses an `Audio` object to load the resource. */\n AUDIO: 3,\n\n /** Uses a `Video` object to load the resource. */\n VIDEO: 4\n};\n/**\n * The XHR ready states, used internally.\n *\n * @static\n * @readonly\n * @enum {string}\n */\n\nResource.XHR_RESPONSE_TYPE = {\n /** string */\n DEFAULT: 'text',\n\n /** ArrayBuffer */\n BUFFER: 'arraybuffer',\n\n /** Blob */\n BLOB: 'blob',\n\n /** Document */\n DOCUMENT: 'document',\n\n /** Object */\n JSON: 'json',\n\n /** String */\n TEXT: 'text'\n};\nResource._loadTypeMap = {\n // images\n gif: Resource.LOAD_TYPE.IMAGE,\n png: Resource.LOAD_TYPE.IMAGE,\n bmp: Resource.LOAD_TYPE.IMAGE,\n jpg: Resource.LOAD_TYPE.IMAGE,\n jpeg: Resource.LOAD_TYPE.IMAGE,\n tif: Resource.LOAD_TYPE.IMAGE,\n tiff: Resource.LOAD_TYPE.IMAGE,\n webp: Resource.LOAD_TYPE.IMAGE,\n tga: Resource.LOAD_TYPE.IMAGE,\n svg: Resource.LOAD_TYPE.IMAGE,\n 'svg+xml': Resource.LOAD_TYPE.IMAGE,\n // for SVG data urls\n // audio\n mp3: Resource.LOAD_TYPE.AUDIO,\n ogg: Resource.LOAD_TYPE.AUDIO,\n wav: Resource.LOAD_TYPE.AUDIO,\n // videos\n mp4: Resource.LOAD_TYPE.VIDEO,\n webm: Resource.LOAD_TYPE.VIDEO\n};\nResource._xhrTypeMap = {\n // xml\n xhtml: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n html: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n htm: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n xml: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n tmx: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n svg: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n // This was added to handle Tiled Tileset XML, but .tsx is also a TypeScript React Component.\n // Since it is way less likely for people to be loading TypeScript files instead of Tiled files,\n // this should probably be fine.\n tsx: Resource.XHR_RESPONSE_TYPE.DOCUMENT,\n // images\n gif: Resource.XHR_RESPONSE_TYPE.BLOB,\n png: Resource.XHR_RESPONSE_TYPE.BLOB,\n bmp: Resource.XHR_RESPONSE_TYPE.BLOB,\n jpg: Resource.XHR_RESPONSE_TYPE.BLOB,\n jpeg: Resource.XHR_RESPONSE_TYPE.BLOB,\n tif: Resource.XHR_RESPONSE_TYPE.BLOB,\n tiff: Resource.XHR_RESPONSE_TYPE.BLOB,\n webp: Resource.XHR_RESPONSE_TYPE.BLOB,\n tga: Resource.XHR_RESPONSE_TYPE.BLOB,\n // json\n json: Resource.XHR_RESPONSE_TYPE.JSON,\n // text\n text: Resource.XHR_RESPONSE_TYPE.TEXT,\n txt: Resource.XHR_RESPONSE_TYPE.TEXT,\n // fonts\n ttf: Resource.XHR_RESPONSE_TYPE.BUFFER,\n otf: Resource.XHR_RESPONSE_TYPE.BUFFER\n}; // We can't set the `src` attribute to empty string, so on abort we set it to this 1px transparent gif\n\nResource.EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==';\n/**\n * Quick helper to set a value on one of the extension maps. Ensures there is no\n * dot at the start of the extension.\n *\n * @ignore\n * @param {object} map - The map to set on.\n * @param {string} extname - The extension (or key) to set.\n * @param {number} val - The value to set.\n */\n\nfunction setExtMap(map, extname, val) {\n if (extname && extname.indexOf('.') === 0) {\n extname = extname.substring(1);\n }\n\n if (!extname) {\n return;\n }\n\n map[extname] = val;\n}\n/**\n * Quick helper to get string xhr type.\n *\n * @ignore\n * @param {XMLHttpRequest|XDomainRequest} xhr - The request to check.\n * @return {string} The type.\n */\n\n\nfunction reqType(xhr) {\n return xhr.toString().replace('object ', '');\n}\n\nvar _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\n/**\n * Encodes binary into base64.\n *\n * @function encodeBinary\n * @param {string} input The input data to encode.\n * @returns {string} The encoded base64 string\n */\n\nfunction encodeBinary(input) {\n var output = '';\n var inx = 0;\n\n while (inx < input.length) {\n // Fill byte buffer array\n var bytebuffer = [0, 0, 0];\n var encodedCharIndexes = [0, 0, 0, 0];\n\n for (var jnx = 0; jnx < bytebuffer.length; ++jnx) {\n if (inx < input.length) {\n // throw away high-order byte, as documented at:\n // https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data\n bytebuffer[jnx] = input.charCodeAt(inx++) & 0xff;\n } else {\n bytebuffer[jnx] = 0;\n }\n } // Get each encoded character, 6 bits at a time\n // index 1: first 6 bits\n\n\n encodedCharIndexes[0] = bytebuffer[0] >> 2; // index 2: second 6 bits (2 least significant bits from input byte 1 + 4 most significant bits from byte 2)\n\n encodedCharIndexes[1] = (bytebuffer[0] & 0x3) << 4 | bytebuffer[1] >> 4; // index 3: third 6 bits (4 least significant bits from input byte 2 + 2 most significant bits from byte 3)\n\n encodedCharIndexes[2] = (bytebuffer[1] & 0x0f) << 2 | bytebuffer[2] >> 6; // index 3: forth 6 bits (6 least significant bits from input byte 3)\n\n encodedCharIndexes[3] = bytebuffer[2] & 0x3f; // Determine whether padding happened, and adjust accordingly\n\n var paddingBytes = inx - (input.length - 1);\n\n switch (paddingBytes) {\n case 2:\n // Set last 2 characters to padding char\n encodedCharIndexes[3] = 64;\n encodedCharIndexes[2] = 64;\n break;\n\n case 1:\n // Set last character to padding char\n encodedCharIndexes[3] = 64;\n break;\n\n default:\n break;\n // No padding - proceed\n } // Now we will grab each appropriate character out of our keystring\n // based on our index array and append it to the output string\n\n\n for (var _jnx = 0; _jnx < encodedCharIndexes.length; ++_jnx) {\n output += _keyStr.charAt(encodedCharIndexes[_jnx]);\n }\n }\n\n return output;\n}\n\nvar Url = window.URL || window.webkitURL;\n/**\n * A middleware for transforming XHR loaded Blobs into more useful objects\n *\n * @memberof middleware\n * @function parsing\n * @example\n * import { Loader, middleware } from 'resource-loader';\n * const loader = new Loader();\n * loader.use(middleware.parsing);\n * @param {Resource} resource - Current Resource\n * @param {function} next - Callback when complete\n */\n\nfunction parsing(resource, next) {\n if (!resource.data) {\n next();\n return;\n } // if this was an XHR load of a blob\n\n\n if (resource.xhr && resource.xhrType === Resource.XHR_RESPONSE_TYPE.BLOB) {\n // if there is no blob support we probably got a binary string back\n if (!window.Blob || typeof resource.data === 'string') {\n var type = resource.xhr.getResponseHeader('content-type'); // this is an image, convert the binary string into a data url\n\n if (type && type.indexOf('image') === 0) {\n resource.data = new Image();\n resource.data.src = \"data:\" + type + \";base64,\" + encodeBinary(resource.xhr.responseText);\n resource.type = Resource.TYPE.IMAGE; // wait until the image loads and then callback\n\n resource.data.onload = function () {\n resource.data.onload = null;\n next();\n }; // next will be called on load\n\n\n return;\n }\n } // if content type says this is an image, then we should transform the blob into an Image object\n else if (resource.data.type.indexOf('image') === 0) {\n var src = Url.createObjectURL(resource.data);\n resource.blob = resource.data;\n resource.data = new Image();\n resource.data.src = src;\n resource.type = Resource.TYPE.IMAGE; // cleanup the no longer used blob after the image loads\n // TODO: Is this correct? Will the image be invalid after revoking?\n\n resource.data.onload = function () {\n Url.revokeObjectURL(src);\n resource.data.onload = null;\n next();\n }; // next will be called on load.\n\n\n return;\n }\n }\n\n next();\n}\n\n/**\n * @namespace middleware\n */\n\nvar index = ({\n caching: caching,\n parsing: parsing\n});\n\nvar MAX_PROGRESS = 100;\nvar rgxExtractUrlHash = /(#[\\w-]+)?$/;\n/**\n * Manages the state and loading of multiple resources to load.\n *\n * @class\n */\n\nvar Loader =\n/*#__PURE__*/\nfunction () {\n /**\n * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader.\n * @param {number} [concurrency=10] - The number of resources to load concurrently.\n */\n function Loader(baseUrl, concurrency) {\n var _this = this;\n\n if (baseUrl === void 0) {\n baseUrl = '';\n }\n\n if (concurrency === void 0) {\n concurrency = 10;\n }\n\n /**\n * The base url for all resources loaded by this loader.\n *\n * @member {string}\n */\n this.baseUrl = baseUrl;\n /**\n * The progress percent of the loader going through the queue.\n *\n * @member {number}\n * @default 0\n */\n\n this.progress = 0;\n /**\n * Loading state of the loader, true if it is currently loading resources.\n *\n * @member {boolean}\n * @default false\n */\n\n this.loading = false;\n /**\n * A querystring to append to every URL added to the loader.\n *\n * This should be a valid query string *without* the question-mark (`?`). The loader will\n * also *not* escape values for you. Make sure to escape your parameters with\n * [`encodeURIComponent`](https://mdn.io/encodeURIComponent) before assigning this property.\n *\n * @example\n * const loader = new Loader();\n *\n * loader.defaultQueryString = 'user=me&password=secret';\n *\n * // This will request 'image.png?user=me&password=secret'\n * loader.add('image.png').load();\n *\n * loader.reset();\n *\n * // This will request 'image.png?v=1&user=me&password=secret'\n * loader.add('iamge.png?v=1').load();\n *\n * @member {string}\n * @default ''\n */\n\n this.defaultQueryString = '';\n /**\n * The middleware to run before loading each resource.\n *\n * @private\n * @member {function[]}\n */\n\n this._beforeMiddleware = [];\n /**\n * The middleware to run after loading each resource.\n *\n * @private\n * @member {function[]}\n */\n\n this._afterMiddleware = [];\n /**\n * The tracks the resources we are currently completing parsing for.\n *\n * @private\n * @member {Resource[]}\n */\n\n this._resourcesParsing = [];\n /**\n * The `_loadResource` function bound with this object context.\n *\n * @private\n * @member {function}\n * @param {Resource} r - The resource to load\n * @param {Function} d - The dequeue function\n * @return {undefined}\n */\n\n this._boundLoadResource = function (r, d) {\n return _this._loadResource(r, d);\n };\n /**\n * The resources waiting to be loaded.\n *\n * @private\n * @member {Resource[]}\n */\n\n\n this._queue = queue(this._boundLoadResource, concurrency);\n\n this._queue.pause();\n /**\n * All the resources for this loader keyed by name.\n *\n * @member {object}\n */\n\n\n this.resources = {};\n /**\n * Dispatched once per loaded or errored resource.\n *\n * The callback looks like {@link Loader.OnProgressSignal}.\n *\n * @member {Signal}\n */\n\n this.onProgress = new Signal();\n /**\n * Dispatched once per errored resource.\n *\n * The callback looks like {@link Loader.OnErrorSignal}.\n *\n * @member {Signal}\n */\n\n this.onError = new Signal();\n /**\n * Dispatched once per loaded resource.\n *\n * The callback looks like {@link Loader.OnLoadSignal}.\n *\n * @member {Signal}\n */\n\n this.onLoad = new Signal();\n /**\n * Dispatched when the loader begins to process the queue.\n *\n * The callback looks like {@link Loader.OnStartSignal}.\n *\n * @member {Signal}\n */\n\n this.onStart = new Signal();\n /**\n * Dispatched when the queued resources all load.\n *\n * The callback looks like {@link Loader.OnCompleteSignal}.\n *\n * @member {Signal}\n */\n\n this.onComplete = new Signal(); // Add default before middleware\n\n for (var i = 0; i < Loader._defaultBeforeMiddleware.length; ++i) {\n this.pre(Loader._defaultBeforeMiddleware[i]);\n } // Add default after middleware\n\n\n for (var _i = 0; _i < Loader._defaultAfterMiddleware.length; ++_i) {\n this.use(Loader._defaultAfterMiddleware[_i]);\n }\n }\n /**\n * When the progress changes the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnProgressSignal\n * @param {Loader} loader - The loader the progress is advancing on.\n * @param {Resource} resource - The resource that has completed or failed to cause the progress to advance.\n */\n\n /**\n * When an error occurrs the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnErrorSignal\n * @param {Loader} loader - The loader the error happened in.\n * @param {Resource} resource - The resource that caused the error.\n */\n\n /**\n * When a load completes the loader and resource are disaptched.\n *\n * @memberof Loader\n * @callback OnLoadSignal\n * @param {Loader} loader - The loader that laoded the resource.\n * @param {Resource} resource - The resource that has completed loading.\n */\n\n /**\n * When the loader starts loading resources it dispatches this callback.\n *\n * @memberof Loader\n * @callback OnStartSignal\n * @param {Loader} loader - The loader that has started loading resources.\n */\n\n /**\n * When the loader completes loading resources it dispatches this callback.\n *\n * @memberof Loader\n * @callback OnCompleteSignal\n * @param {Loader} loader - The loader that has finished loading resources.\n */\n\n /**\n * Options for a call to `.add()`.\n *\n * @see Loader#add\n *\n * @typedef {object} IAddOptions\n * @property {string} [name] - The name of the resource to load, if not passed the url is used.\n * @property {string} [key] - Alias for `name`.\n * @property {string} [url] - The url for this resource, relative to the baseUrl of this loader.\n * @property {string|boolean} [crossOrigin] - Is this request cross-origin? Default is to\n * determine automatically.\n * @property {number} [timeout=0] - A timeout in milliseconds for the load. If the load takes\n * longer than this time it is cancelled and the load is considered a failure. If this value is\n * set to `0` then there is no explicit timeout.\n * @property {Resource.LOAD_TYPE} [loadType=Resource.LOAD_TYPE.XHR] - How should this resource\n * be loaded?\n * @property {Resource.XHR_RESPONSE_TYPE} [xhrType=Resource.XHR_RESPONSE_TYPE.DEFAULT] - How\n * should the data being loaded be interpreted when using XHR?\n * @property {Resource.OnCompleteSignal} [onComplete] - Callback to add an an onComplete signal istener.\n * @property {Resource.OnCompleteSignal} [callback] - Alias for `onComplete`.\n * @property {Resource.IMetadata} [metadata] - Extra configuration for middleware and the Resource object.\n */\n\n /* eslint-disable require-jsdoc,valid-jsdoc */\n\n /**\n * Adds a resource (or multiple resources) to the loader queue.\n *\n * This function can take a wide variety of different parameters. The only thing that is always\n * required the url to load. All the following will work:\n *\n * ```js\n * loader\n * // normal param syntax\n * .add('key', 'http://...', function () {})\n * .add('http://...', function () {})\n * .add('http://...')\n *\n * // object syntax\n * .add({\n * name: 'key2',\n * url: 'http://...'\n * }, function () {})\n * .add({\n * url: 'http://...'\n * }, function () {})\n * .add({\n * name: 'key3',\n * url: 'http://...'\n * onComplete: function () {}\n * })\n * .add({\n * url: 'https://...',\n * onComplete: function () {},\n * crossOrigin: true\n * })\n *\n * // you can also pass an array of objects or urls or both\n * .add([\n * { name: 'key4', url: 'http://...', onComplete: function () {} },\n * { url: 'http://...', onComplete: function () {} },\n * 'http://...'\n * ])\n *\n * // and you can use both params and options\n * .add('key', 'http://...', { crossOrigin: true }, function () {})\n * .add('http://...', { crossOrigin: true }, function () {});\n * ```\n *\n * @function\n * @variation 1\n * @param {string} name - The name of the resource to load.\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 2\n * @param {string} name - The name of the resource to load.\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {IAddOptions} [options] - The options for the load.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 3\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 4\n * @param {string} url - The url for this resource, relative to the baseUrl of this loader.\n * @param {IAddOptions} [options] - The options for the load.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 5\n * @param {IAddOptions} options - The options for the load. This object must contain a `url` property.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n /**\n * @function\n * @variation 6\n * @param {Array} resources - An array of resources to load, where each is\n * either an object with the options or a string url. If you pass an object, it must contain a `url` property.\n * @param {Resource.OnCompleteSignal} [callback] - Function to call when this specific resource completes loading.\n * @return {this} Returns itself.\n */\n\n\n var _proto = Loader.prototype;\n\n _proto.add = function add(name, url, options, cb) {\n // special case of an array of objects or urls\n if (Array.isArray(name)) {\n for (var i = 0; i < name.length; ++i) {\n this.add(name[i]);\n }\n\n return this;\n } // if an object is passed instead of params\n\n\n if (typeof name === 'object') {\n cb = url || name.callback || name.onComplete;\n options = name;\n url = name.url;\n name = name.name || name.key || name.url;\n } // case where no name is passed shift all args over by one.\n\n\n if (typeof url !== 'string') {\n cb = options;\n options = url;\n url = name;\n } // now that we shifted make sure we have a proper url.\n\n\n if (typeof url !== 'string') {\n throw new Error('No url passed to add resource to loader.');\n } // options are optional so people might pass a function and no options\n\n\n if (typeof options === 'function') {\n cb = options;\n options = null;\n } // if loading already you can only add resources that have a parent.\n\n\n if (this.loading && (!options || !options.parentResource)) {\n throw new Error('Cannot add resources while the loader is running.');\n } // check if resource already exists.\n\n\n if (this.resources[name]) {\n throw new Error(\"Resource named \\\"\" + name + \"\\\" already exists.\");\n } // add base url if this isn't an absolute url\n\n\n url = this._prepareUrl(url); // create the store the resource\n\n this.resources[name] = new Resource(name, url, options);\n\n if (typeof cb === 'function') {\n this.resources[name].onAfterMiddleware.once(cb);\n } // if actively loading, make sure to adjust progress chunks for that parent and its children\n\n\n if (this.loading) {\n var parent = options.parentResource;\n var incompleteChildren = [];\n\n for (var _i2 = 0; _i2 < parent.children.length; ++_i2) {\n if (!parent.children[_i2].isComplete) {\n incompleteChildren.push(parent.children[_i2]);\n }\n }\n\n var fullChunk = parent.progressChunk * (incompleteChildren.length + 1); // +1 for parent\n\n var eachChunk = fullChunk / (incompleteChildren.length + 2); // +2 for parent & new child\n\n parent.children.push(this.resources[name]);\n parent.progressChunk = eachChunk;\n\n for (var _i3 = 0; _i3 < incompleteChildren.length; ++_i3) {\n incompleteChildren[_i3].progressChunk = eachChunk;\n }\n\n this.resources[name].progressChunk = eachChunk;\n } // add the resource to the queue\n\n\n this._queue.push(this.resources[name]);\n\n return this;\n }\n /* eslint-enable require-jsdoc,valid-jsdoc */\n\n /**\n * Sets up a middleware function that will run *before* the\n * resource is loaded.\n *\n * @param {function} fn - The middleware function to register.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.pre = function pre(fn) {\n this._beforeMiddleware.push(fn);\n\n return this;\n }\n /**\n * Sets up a middleware function that will run *after* the\n * resource is loaded.\n *\n * @param {function} fn - The middleware function to register.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.use = function use(fn) {\n this._afterMiddleware.push(fn);\n\n return this;\n }\n /**\n * Resets the queue of the loader to prepare for a new load.\n *\n * @return {this} Returns itself.\n */\n ;\n\n _proto.reset = function reset() {\n this.progress = 0;\n this.loading = false;\n\n this._queue.kill();\n\n this._queue.pause(); // abort all resource loads\n\n\n for (var k in this.resources) {\n var res = this.resources[k];\n\n if (res._onLoadBinding) {\n res._onLoadBinding.detach();\n }\n\n if (res.isLoading) {\n res.abort();\n }\n }\n\n this.resources = {};\n return this;\n }\n /**\n * Starts loading the queued resources.\n *\n * @param {function} [cb] - Optional callback that will be bound to the `complete` event.\n * @return {this} Returns itself.\n */\n ;\n\n _proto.load = function load(cb) {\n // register complete callback if they pass one\n if (typeof cb === 'function') {\n this.onComplete.once(cb);\n } // if the queue has already started we are done here\n\n\n if (this.loading) {\n return this;\n }\n\n if (this._queue.idle()) {\n this._onStart();\n\n this._onComplete();\n } else {\n // distribute progress chunks\n var numTasks = this._queue._tasks.length;\n var chunk = MAX_PROGRESS / numTasks;\n\n for (var i = 0; i < this._queue._tasks.length; ++i) {\n this._queue._tasks[i].data.progressChunk = chunk;\n } // notify we are starting\n\n\n this._onStart(); // start loading\n\n\n this._queue.resume();\n }\n\n return this;\n }\n /**\n * The number of resources to load concurrently.\n *\n * @member {number}\n * @default 10\n */\n ;\n\n /**\n * Prepares a url for usage based on the configuration of this object\n *\n * @private\n * @param {string} url - The url to prepare.\n * @return {string} The prepared url.\n */\n _proto._prepareUrl = function _prepareUrl(url) {\n var parsedUrl = parseUri(url, {\n strictMode: true\n });\n var result; // absolute url, just use it as is.\n\n if (parsedUrl.protocol || !parsedUrl.path || url.indexOf('//') === 0) {\n result = url;\n } // if baseUrl doesn't end in slash and url doesn't start with slash, then add a slash inbetween\n else if (this.baseUrl.length && this.baseUrl.lastIndexOf('/') !== this.baseUrl.length - 1 && url.charAt(0) !== '/') {\n result = this.baseUrl + \"/\" + url;\n } else {\n result = this.baseUrl + url;\n } // if we need to add a default querystring, there is a bit more work\n\n\n if (this.defaultQueryString) {\n var hash = rgxExtractUrlHash.exec(result)[0];\n result = result.substr(0, result.length - hash.length);\n\n if (result.indexOf('?') !== -1) {\n result += \"&\" + this.defaultQueryString;\n } else {\n result += \"?\" + this.defaultQueryString;\n }\n\n result += hash;\n }\n\n return result;\n }\n /**\n * Loads a single resource.\n *\n * @private\n * @param {Resource} resource - The resource to load.\n * @param {function} dequeue - The function to call when we need to dequeue this item.\n */\n ;\n\n _proto._loadResource = function _loadResource(resource, dequeue) {\n var _this2 = this;\n\n resource._dequeue = dequeue; // run before middleware\n\n eachSeries(this._beforeMiddleware, function (fn, next) {\n fn.call(_this2, resource, function () {\n // if the before middleware marks the resource as complete,\n // break and don't process any more before middleware\n next(resource.isComplete ? {} : null);\n });\n }, function () {\n if (resource.isComplete) {\n _this2._onLoad(resource);\n } else {\n resource._onLoadBinding = resource.onComplete.once(_this2._onLoad, _this2);\n resource.load();\n }\n }, true);\n }\n /**\n * Called once loading has started.\n *\n * @private\n */\n ;\n\n _proto._onStart = function _onStart() {\n this.progress = 0;\n this.loading = true;\n this.onStart.dispatch(this);\n }\n /**\n * Called once each resource has loaded.\n *\n * @private\n */\n ;\n\n _proto._onComplete = function _onComplete() {\n this.progress = MAX_PROGRESS;\n this.loading = false;\n this.onComplete.dispatch(this, this.resources);\n }\n /**\n * Called each time a resources is loaded.\n *\n * @private\n * @param {Resource} resource - The resource that was loaded\n */\n ;\n\n _proto._onLoad = function _onLoad(resource) {\n var _this3 = this;\n\n resource._onLoadBinding = null; // remove this resource from the async queue, and add it to our list of resources that are being parsed\n\n this._resourcesParsing.push(resource);\n\n resource._dequeue(); // run all the after middleware for this resource\n\n\n eachSeries(this._afterMiddleware, function (fn, next) {\n fn.call(_this3, resource, next);\n }, function () {\n resource.onAfterMiddleware.dispatch(resource);\n _this3.progress = Math.min(MAX_PROGRESS, _this3.progress + resource.progressChunk);\n\n _this3.onProgress.dispatch(_this3, resource);\n\n if (resource.error) {\n _this3.onError.dispatch(resource.error, _this3, resource);\n } else {\n _this3.onLoad.dispatch(_this3, resource);\n }\n\n _this3._resourcesParsing.splice(_this3._resourcesParsing.indexOf(resource), 1); // do completion check\n\n\n if (_this3._queue.idle() && _this3._resourcesParsing.length === 0) {\n _this3._onComplete();\n }\n }, true);\n };\n\n _createClass(Loader, [{\n key: \"concurrency\",\n get: function get() {\n return this._queue.concurrency;\n } // eslint-disable-next-line require-jsdoc\n ,\n set: function set(concurrency) {\n this._queue.concurrency = concurrency;\n }\n }]);\n\n return Loader;\n}();\n/**\n * A default array of middleware to run before loading each resource.\n * Each of these middlewares are added to any new Loader instances when they are created.\n *\n * @private\n * @member {function[]}\n */\n\n\nLoader._defaultBeforeMiddleware = [];\n/**\n * A default array of middleware to run after loading each resource.\n * Each of these middlewares are added to any new Loader instances when they are created.\n *\n * @private\n * @member {function[]}\n */\n\nLoader._defaultAfterMiddleware = [];\n/**\n * Sets up a middleware function that will run *before* the\n * resource is loaded.\n *\n * @static\n * @param {function} fn - The middleware function to register.\n * @return {Loader} Returns itself.\n */\n\nLoader.pre = function LoaderPreStatic(fn) {\n Loader._defaultBeforeMiddleware.push(fn);\n\n return Loader;\n};\n/**\n * Sets up a middleware function that will run *after* the\n * resource is loaded.\n *\n * @static\n * @param {function} fn - The middleware function to register.\n * @return {Loader} Returns itself.\n */\n\n\nLoader.use = function LoaderUseStatic(fn) {\n Loader._defaultAfterMiddleware.push(fn);\n\n return Loader;\n};\n\nexport { Loader, Resource, async, encodeBinary, index as middleware };\n//# sourceMappingURL=resource-loader.esm.js.map\n","/*!\n * @pixi/loaders - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/loaders is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Resource, Loader as Loader$1, middleware } from 'resource-loader';\nimport { EventEmitter } from '@pixi/utils';\nimport { Texture } from '@pixi/core';\n\n/**\n * Loader plugin for handling Texture resources.\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar TextureLoader = function TextureLoader () {};\n\nTextureLoader.use = function use (resource, next)\n{\n // create a new texture if the data is an Image object\n if (resource.data && resource.type === Resource.TYPE.IMAGE)\n {\n resource.texture = Texture.fromLoader(\n resource.data,\n resource.url,\n resource.name\n );\n }\n next();\n};\n\n/**\n * The new loader, extends Resource Loader by Chad Engler: https://github.com/englercj/resource-loader\n *\n * ```js\n * const loader = PIXI.Loader.shared; // PixiJS exposes a premade instance for you to use.\n * //or\n * const loader = new PIXI.Loader(); // you can also create your own if you want\n *\n * const sprites = {};\n *\n * // Chainable `add` to enqueue a resource\n * loader.add('bunny', 'data/bunny.png')\n * .add('spaceship', 'assets/spritesheet.json');\n * loader.add('scoreFont', 'assets/score.fnt');\n *\n * // Chainable `pre` to add a middleware that runs for each resource, *before* loading that resource.\n * // This is useful to implement custom caching modules (using filesystem, indexeddb, memory, etc).\n * loader.pre(cachingMiddleware);\n *\n * // Chainable `use` to add a middleware that runs for each resource, *after* loading that resource.\n * // This is useful to implement custom parsing modules (like spritesheet parsers, spine parser, etc).\n * loader.use(parsingMiddleware);\n *\n * // The `load` method loads the queue of resources, and calls the passed in callback called once all\n * // resources have loaded.\n * loader.load((loader, resources) => {\n * // resources is an object where the key is the name of the resource loaded and the value is the resource object.\n * // They have a couple default properties:\n * // - `url`: The URL that the resource was loaded from\n * // - `error`: The error that happened when trying to load (if any)\n * // - `data`: The raw data that was loaded\n * // also may contain other properties based on the middleware that runs.\n * sprites.bunny = new PIXI.TilingSprite(resources.bunny.texture);\n * sprites.spaceship = new PIXI.TilingSprite(resources.spaceship.texture);\n * sprites.scoreFont = new PIXI.TilingSprite(resources.scoreFont.texture);\n * });\n *\n * // throughout the process multiple signals can be dispatched.\n * loader.onProgress.add(() => {}); // called once per loaded/errored file\n * loader.onError.add(() => {}); // called once per errored file\n * loader.onLoad.add(() => {}); // called once per loaded file\n * loader.onComplete.add(() => {}); // called once when the queued resources all load.\n * ```\n *\n * @see https://github.com/englercj/resource-loader\n *\n * @class Loader\n * @memberof PIXI\n * @param {string} [baseUrl=''] - The base url for all resources loaded by this loader.\n * @param {number} [concurrency=10] - The number of resources to load concurrently.\n */\nvar Loader = /*@__PURE__*/(function (ResourceLoader) {\n function Loader(baseUrl, concurrency)\n {\n var this$1 = this;\n\n ResourceLoader.call(this, baseUrl, concurrency);\n EventEmitter.call(this);\n\n for (var i = 0; i < Loader._plugins.length; ++i)\n {\n var plugin = Loader._plugins[i];\n var pre = plugin.pre;\n var use = plugin.use;\n\n if (pre)\n {\n this.pre(pre);\n }\n\n if (use)\n {\n this.use(use);\n }\n }\n\n // Compat layer, translate the new v2 signals into old v1 events.\n this.onStart.add(function (l) { return this$1.emit('start', l); });\n this.onProgress.add(function (l, r) { return this$1.emit('progress', l, r); });\n this.onError.add(function (e, l, r) { return this$1.emit('error', e, l, r); });\n this.onLoad.add(function (l, r) { return this$1.emit('load', l, r); });\n this.onComplete.add(function (l, r) { return this$1.emit('complete', l, r); });\n\n /**\n * If this loader cannot be destroyed.\n * @member {boolean}\n * @default false\n * @private\n */\n this._protected = false;\n }\n\n if ( ResourceLoader ) Loader.__proto__ = ResourceLoader;\n Loader.prototype = Object.create( ResourceLoader && ResourceLoader.prototype );\n Loader.prototype.constructor = Loader;\n\n var staticAccessors = { shared: { configurable: true } };\n\n /**\n * Destroy the loader, removes references.\n * @private\n */\n Loader.prototype.destroy = function destroy ()\n {\n if (!this._protected)\n {\n this.removeAllListeners();\n this.reset();\n }\n };\n\n /**\n * A premade instance of the loader that can be used to load resources.\n * @name shared\n * @type {PIXI.Loader}\n * @static\n * @memberof PIXI.Loader\n */\n staticAccessors.shared.get = function ()\n {\n var shared = Loader._shared;\n\n if (!shared)\n {\n shared = new Loader();\n shared._protected = true;\n Loader._shared = shared;\n }\n\n return shared;\n };\n\n Object.defineProperties( Loader, staticAccessors );\n\n return Loader;\n}(Loader$1));\n\n// Copy EE3 prototype (mixin)\nObject.assign(Loader.prototype, EventEmitter.prototype);\n\n/**\n * Collection of all installed `use` middleware for Loader.\n *\n * @static\n * @member {Array} _plugins\n * @memberof PIXI.Loader\n * @private\n */\nLoader._plugins = [];\n\n/**\n * Adds a Loader plugin for the global shared loader and all\n * new Loader instances created.\n *\n * @static\n * @method registerPlugin\n * @memberof PIXI.Loader\n * @param {PIXI.ILoaderPlugin} plugin - The plugin to add\n * @return {PIXI.Loader} Reference to PIXI.Loader for chaining\n */\nLoader.registerPlugin = function registerPlugin(plugin)\n{\n Loader._plugins.push(plugin);\n\n if (plugin.add)\n {\n plugin.add();\n }\n\n return Loader;\n};\n\n// parse any blob into more usable objects (e.g. Image)\nLoader.registerPlugin({ use: middleware.parsing });\n\n// parse any Image objects into textures\nLoader.registerPlugin(TextureLoader);\n\n/**\n * Plugin to be installed for handling specific Loader resources.\n *\n * @memberof PIXI\n * @typedef ILoaderPlugin\n * @property {function} [add] - Function to call immediate after registering plugin.\n * @property {PIXI.Loader.loaderMiddleware} [pre] - Middleware function to run before load, the\n * arguments for this are `(resource, next)`\n * @property {PIXI.Loader.loaderMiddleware} [use] - Middleware function to run after load, the\n * arguments for this are `(resource, next)`\n */\n\n/**\n * @memberof PIXI.Loader\n * @callback loaderMiddleware\n * @param {PIXI.LoaderResource} resource\n * @param {function} next\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onStart\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onProgress\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onError\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onLoad\n */\n\n/**\n * @memberof PIXI.Loader#\n * @member {object} onComplete\n */\n\n/**\n * Application plugin for supporting loader option. Installing the LoaderPlugin\n * is not necessary if using **pixi.js** or **pixi.js-legacy**.\n * @example\n * import {AppLoaderPlugin} from '@pixi/loaders';\n * import {Application} from '@pixi/app';\n * Application.registerPlugin(AppLoaderPlugin);\n * @class\n * @memberof PIXI\n */\nvar AppLoaderPlugin = function AppLoaderPlugin () {};\n\nAppLoaderPlugin.init = function init (options)\n{\n options = Object.assign({\n sharedLoader: false,\n }, options);\n\n /**\n * Loader instance to help with asset loading.\n * @name PIXI.Application#loader\n * @type {PIXI.Loader}\n * @readonly\n */\n this.loader = options.sharedLoader ? Loader.shared : new Loader();\n};\n\n/**\n * Called when application destroyed\n * @private\n */\nAppLoaderPlugin.destroy = function destroy ()\n{\n if (this.loader)\n {\n this.loader.destroy();\n this.loader = null;\n }\n};\n\n/**\n * Reference to **{@link https://github.com/englercj/resource-loader\n * resource-loader}**'s Resource class.\n * @see http://englercj.github.io/resource-loader/Resource.html\n * @class LoaderResource\n * @memberof PIXI\n */\nvar LoaderResource = Resource;\n\nexport { AppLoaderPlugin, Loader, LoaderResource, TextureLoader };\n//# sourceMappingURL=loaders.es.js.map\n","/*!\n * @pixi/particles - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/particles is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { BLEND_MODES, TYPES } from '@pixi/constants';\nimport { hex2rgb, createIndicesForQuads, correctBlendMode, premultiplyRgba, premultiplyTint } from '@pixi/utils';\nimport { Container } from '@pixi/display';\nimport { Geometry, Buffer, ObjectRenderer, Shader } from '@pixi/core';\nimport { Matrix } from '@pixi/math';\n\n/**\n * The ParticleContainer class is a really fast version of the Container built solely for speed,\n * so use when you need a lot of sprites or particles.\n *\n * The tradeoff of the ParticleContainer is that most advanced functionality will not work.\n * ParticleContainer implements the basic object transform (position, scale, rotation)\n * and some advanced functionality like tint (as of v4.5.6).\n *\n * Other more advanced functionality like masking, children, filters, etc will not work on sprites in this batch.\n *\n * It's extremely easy to use:\n * ```js\n * let container = new ParticleContainer();\n *\n * for (let i = 0; i < 100; ++i)\n * {\n * let sprite = PIXI.Sprite.from(\"myImage.png\");\n * container.addChild(sprite);\n * }\n * ```\n *\n * And here you have a hundred sprites that will be rendered at the speed of light.\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar ParticleContainer = /*@__PURE__*/(function (Container) {\n function ParticleContainer(maxSize, properties, batchSize, autoResize)\n {\n if ( maxSize === void 0 ) maxSize = 1500;\n if ( batchSize === void 0 ) batchSize = 16384;\n if ( autoResize === void 0 ) autoResize = false;\n\n Container.call(this);\n\n // Making sure the batch size is valid\n // 65535 is max vertex index in the index buffer (see ParticleRenderer)\n // so max number of particles is 65536 / 4 = 16384\n var maxBatchSize = 16384;\n\n if (batchSize > maxBatchSize)\n {\n batchSize = maxBatchSize;\n }\n\n /**\n * Set properties to be dynamic (true) / static (false)\n *\n * @member {boolean[]}\n * @private\n */\n this._properties = [false, true, false, false, false];\n\n /**\n * @member {number}\n * @private\n */\n this._maxSize = maxSize;\n\n /**\n * @member {number}\n * @private\n */\n this._batchSize = batchSize;\n\n /**\n * @member {Array}\n * @private\n */\n this._buffers = null;\n\n /**\n * for every batch stores _updateID corresponding to the last change in that batch\n * @member {number[]}\n * @private\n */\n this._bufferUpdateIDs = [];\n\n /**\n * when child inserted, removed or changes position this number goes up\n * @member {number[]}\n * @private\n */\n this._updateID = 0;\n\n /**\n * @member {boolean}\n *\n */\n this.interactiveChildren = false;\n\n /**\n * The blend mode to be applied to the sprite. Apply a value of `PIXI.BLEND_MODES.NORMAL`\n * to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL\n * @see PIXI.BLEND_MODES\n */\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * If true, container allocates more batches in case there are more than `maxSize` particles.\n * @member {boolean}\n * @default false\n */\n this.autoResize = autoResize;\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * Default to true here as performance is usually the priority for particles.\n *\n * @member {boolean}\n * @default true\n */\n this.roundPixels = true;\n\n /**\n * The texture used to render the children.\n *\n * @readonly\n * @member {PIXI.BaseTexture}\n */\n this.baseTexture = null;\n\n this.setProperties(properties);\n\n /**\n * The tint applied to the container.\n * This is a hex value. A value of 0xFFFFFF will remove any tint effect.\n *\n * @private\n * @member {number}\n * @default 0xFFFFFF\n */\n this._tint = 0;\n this.tintRgb = new Float32Array(4);\n this.tint = 0xFFFFFF;\n }\n\n if ( Container ) ParticleContainer.__proto__ = Container;\n ParticleContainer.prototype = Object.create( Container && Container.prototype );\n ParticleContainer.prototype.constructor = ParticleContainer;\n\n var prototypeAccessors = { tint: { configurable: true } };\n\n /**\n * Sets the private properties array to dynamic / static based on the passed properties object\n *\n * @param {object} properties - The properties to be uploaded\n */\n ParticleContainer.prototype.setProperties = function setProperties (properties)\n {\n if (properties)\n {\n this._properties[0] = 'vertices' in properties || 'scale' in properties\n ? !!properties.vertices || !!properties.scale : this._properties[0];\n this._properties[1] = 'position' in properties ? !!properties.position : this._properties[1];\n this._properties[2] = 'rotation' in properties ? !!properties.rotation : this._properties[2];\n this._properties[3] = 'uvs' in properties ? !!properties.uvs : this._properties[3];\n this._properties[4] = 'tint' in properties || 'alpha' in properties\n ? !!properties.tint || !!properties.alpha : this._properties[4];\n }\n };\n\n /**\n * Updates the object transform for rendering\n *\n * @private\n */\n ParticleContainer.prototype.updateTransform = function updateTransform ()\n {\n // TODO don't need to!\n this.displayObjectUpdateTransform();\n // PIXI.Container.prototype.updateTransform.call( this );\n };\n\n /**\n * The tint applied to the container. This is a hex value.\n * A value of 0xFFFFFF will remove any tint effect.\n ** IMPORTANT: This is a WebGL only feature and will be ignored by the canvas renderer.\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._tint = value;\n hex2rgb(value, this.tintRgb);\n };\n\n /**\n * Renders the container using the WebGL renderer\n *\n * @private\n * @param {PIXI.Renderer} renderer - The webgl renderer\n */\n ParticleContainer.prototype.render = function render (renderer)\n {\n var this$1 = this;\n\n if (!this.visible || this.worldAlpha <= 0 || !this.children.length || !this.renderable)\n {\n return;\n }\n\n if (!this.baseTexture)\n {\n this.baseTexture = this.children[0]._texture.baseTexture;\n if (!this.baseTexture.valid)\n {\n this.baseTexture.once('update', function () { return this$1.onChildrenChange(0); });\n }\n }\n\n renderer.batch.setObjectRenderer(renderer.plugins.particle);\n renderer.plugins.particle.render(this);\n };\n\n /**\n * Set the flag that static data should be updated to true\n *\n * @private\n * @param {number} smallestChildIndex - The smallest child index\n */\n ParticleContainer.prototype.onChildrenChange = function onChildrenChange (smallestChildIndex)\n {\n var bufferIndex = Math.floor(smallestChildIndex / this._batchSize);\n\n while (this._bufferUpdateIDs.length < bufferIndex)\n {\n this._bufferUpdateIDs.push(0);\n }\n this._bufferUpdateIDs[bufferIndex] = ++this._updateID;\n };\n\n ParticleContainer.prototype.dispose = function dispose ()\n {\n if (this._buffers)\n {\n for (var i = 0; i < this._buffers.length; ++i)\n {\n this._buffers[i].destroy();\n }\n\n this._buffers = null;\n }\n };\n\n /**\n * Destroys the container\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their\n * destroy method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the texture of the child sprite\n * @param {boolean} [options.baseTexture=false] - Only used for child Sprites if options.children is set to true\n * Should it destroy the base texture of the child sprite\n */\n ParticleContainer.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.dispose();\n\n this._properties = null;\n this._buffers = null;\n this._bufferUpdateIDs = null;\n };\n\n Object.defineProperties( ParticleContainer.prototype, prototypeAccessors );\n\n return ParticleContainer;\n}(Container));\n\n/**\n * @author Mat Groves\n *\n * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/\n * for creating the original PixiJS version!\n * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that\n * they now share 4 bytes on the vertex buffer\n *\n * Heavily inspired by LibGDX's ParticleBuffer:\n * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleBuffer.java\n */\n\n/**\n * The particle buffer manages the static and dynamic buffers for a particle container.\n *\n * @class\n * @private\n * @memberof PIXI\n */\nvar ParticleBuffer = function ParticleBuffer(properties, dynamicPropertyFlags, size)\n{\n this.geometry = new Geometry();\n\n this.indexBuffer = null;\n\n /**\n * The number of particles the buffer can hold\n *\n * @private\n * @member {number}\n */\n this.size = size;\n\n /**\n * A list of the properties that are dynamic.\n *\n * @private\n * @member {object[]}\n */\n this.dynamicProperties = [];\n\n /**\n * A list of the properties that are static.\n *\n * @private\n * @member {object[]}\n */\n this.staticProperties = [];\n\n for (var i = 0; i < properties.length; ++i)\n {\n var property = properties[i];\n\n // Make copy of properties object so that when we edit the offset it doesn't\n // change all other instances of the object literal\n property = {\n attributeName: property.attributeName,\n size: property.size,\n uploadFunction: property.uploadFunction,\n type: property.type || TYPES.FLOAT,\n offset: property.offset,\n };\n\n if (dynamicPropertyFlags[i])\n {\n this.dynamicProperties.push(property);\n }\n else\n {\n this.staticProperties.push(property);\n }\n }\n\n this.staticStride = 0;\n this.staticBuffer = null;\n this.staticData = null;\n this.staticDataUint32 = null;\n\n this.dynamicStride = 0;\n this.dynamicBuffer = null;\n this.dynamicData = null;\n this.dynamicDataUint32 = null;\n\n this._updateID = 0;\n\n this.initBuffers();\n};\n\n/**\n * Sets up the renderer context and necessary buffers.\n *\n * @private\n */\nParticleBuffer.prototype.initBuffers = function initBuffers ()\n{\n var geometry = this.geometry;\n\n var dynamicOffset = 0;\n\n /**\n * Holds the indices of the geometry (quads) to draw\n *\n * @member {Uint16Array}\n * @private\n */\n this.indexBuffer = new Buffer(createIndicesForQuads(this.size), true, true);\n geometry.addIndex(this.indexBuffer);\n\n this.dynamicStride = 0;\n\n for (var i = 0; i < this.dynamicProperties.length; ++i)\n {\n var property = this.dynamicProperties[i];\n\n property.offset = dynamicOffset;\n dynamicOffset += property.size;\n this.dynamicStride += property.size;\n }\n\n var dynBuffer = new ArrayBuffer(this.size * this.dynamicStride * 4 * 4);\n\n this.dynamicData = new Float32Array(dynBuffer);\n this.dynamicDataUint32 = new Uint32Array(dynBuffer);\n this.dynamicBuffer = new Buffer(this.dynamicData, false, false);\n\n // static //\n var staticOffset = 0;\n\n this.staticStride = 0;\n\n for (var i$1 = 0; i$1 < this.staticProperties.length; ++i$1)\n {\n var property$1 = this.staticProperties[i$1];\n\n property$1.offset = staticOffset;\n staticOffset += property$1.size;\n this.staticStride += property$1.size;\n }\n\n var statBuffer = new ArrayBuffer(this.size * this.staticStride * 4 * 4);\n\n this.staticData = new Float32Array(statBuffer);\n this.staticDataUint32 = new Uint32Array(statBuffer);\n this.staticBuffer = new Buffer(this.staticData, true, false);\n\n for (var i$2 = 0; i$2 < this.dynamicProperties.length; ++i$2)\n {\n var property$2 = this.dynamicProperties[i$2];\n\n geometry.addAttribute(\n property$2.attributeName,\n this.dynamicBuffer,\n 0,\n property$2.type === TYPES.UNSIGNED_BYTE,\n property$2.type,\n this.dynamicStride * 4,\n property$2.offset * 4\n );\n }\n\n for (var i$3 = 0; i$3 < this.staticProperties.length; ++i$3)\n {\n var property$3 = this.staticProperties[i$3];\n\n geometry.addAttribute(\n property$3.attributeName,\n this.staticBuffer,\n 0,\n property$3.type === TYPES.UNSIGNED_BYTE,\n property$3.type,\n this.staticStride * 4,\n property$3.offset * 4\n );\n }\n};\n\n/**\n * Uploads the dynamic properties.\n *\n * @private\n * @param {PIXI.DisplayObject[]} children - The children to upload.\n * @param {number} startIndex - The index to start at.\n * @param {number} amount - The number to upload.\n */\nParticleBuffer.prototype.uploadDynamic = function uploadDynamic (children, startIndex, amount)\n{\n for (var i = 0; i < this.dynamicProperties.length; i++)\n {\n var property = this.dynamicProperties[i];\n\n property.uploadFunction(children, startIndex, amount,\n property.type === TYPES.UNSIGNED_BYTE ? this.dynamicDataUint32 : this.dynamicData,\n this.dynamicStride, property.offset);\n }\n\n this.dynamicBuffer._updateID++;\n};\n\n/**\n * Uploads the static properties.\n *\n * @private\n * @param {PIXI.DisplayObject[]} children - The children to upload.\n * @param {number} startIndex - The index to start at.\n * @param {number} amount - The number to upload.\n */\nParticleBuffer.prototype.uploadStatic = function uploadStatic (children, startIndex, amount)\n{\n for (var i = 0; i < this.staticProperties.length; i++)\n {\n var property = this.staticProperties[i];\n\n property.uploadFunction(children, startIndex, amount,\n property.type === TYPES.UNSIGNED_BYTE ? this.staticDataUint32 : this.staticData,\n this.staticStride, property.offset);\n }\n\n this.staticBuffer._updateID++;\n};\n\n/**\n * Destroys the ParticleBuffer.\n *\n * @private\n */\nParticleBuffer.prototype.destroy = function destroy ()\n{\n this.indexBuffer = null;\n\n this.dynamicProperties = null;\n // this.dynamicBuffer.destroy();\n this.dynamicBuffer = null;\n this.dynamicData = null;\n this.dynamicDataUint32 = null;\n\n this.staticProperties = null;\n // this.staticBuffer.destroy();\n this.staticBuffer = null;\n this.staticData = null;\n this.staticDataUint32 = null;\n // all buffers are destroyed inside geometry\n this.geometry.destroy();\n};\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\nattribute vec4 aColor;\\n\\nattribute vec2 aPositionCoord;\\nattribute float aRotation;\\n\\nuniform mat3 translationMatrix;\\nuniform vec4 uColor;\\n\\nvarying vec2 vTextureCoord;\\nvarying vec4 vColor;\\n\\nvoid main(void){\\n float x = (aVertexPosition.x) * cos(aRotation) - (aVertexPosition.y) * sin(aRotation);\\n float y = (aVertexPosition.x) * sin(aRotation) + (aVertexPosition.y) * cos(aRotation);\\n\\n vec2 v = vec2(x, y);\\n v = v + aPositionCoord;\\n\\n gl_Position = vec4((translationMatrix * vec3(v, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = aTextureCoord;\\n vColor = aColor * uColor;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\nvarying vec4 vColor;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void){\\n vec4 color = texture2D(uSampler, vTextureCoord) * vColor;\\n gl_FragColor = color;\\n}\";\n\n/**\n * @author Mat Groves\n *\n * Big thanks to the very clever Matt DesLauriers https://github.com/mattdesl/\n * for creating the original PixiJS version!\n * Also a thanks to https://github.com/bchevalier for tweaking the tint and alpha so that they now\n * share 4 bytes on the vertex buffer\n *\n * Heavily inspired by LibGDX's ParticleRenderer:\n * https://github.com/libgdx/libgdx/blob/master/gdx/src/com/badlogic/gdx/graphics/g2d/ParticleRenderer.java\n */\n\n/**\n * Renderer for Particles that is designer for speed over feature set.\n *\n * @class\n * @memberof PIXI\n */\nvar ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function ParticleRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n // 65535 is max vertex index in the index buffer (see ParticleRenderer)\n // so max number of particles is 65536 / 4 = 16384\n // and max number of element in the index buffer is 16384 * 6 = 98304\n // Creating a full index buffer, overhead is 98304 * 2 = 196Ko\n // let numIndices = 98304;\n\n /**\n * The default shader that is used if a sprite doesn't have a more specific one.\n *\n * @member {PIXI.Shader}\n */\n this.shader = null;\n\n this.properties = null;\n\n this.tempMatrix = new Matrix();\n\n this.properties = [\n // verticesData\n {\n attributeName: 'aVertexPosition',\n size: 2,\n uploadFunction: this.uploadVertices,\n offset: 0,\n },\n // positionData\n {\n attributeName: 'aPositionCoord',\n size: 2,\n uploadFunction: this.uploadPosition,\n offset: 0,\n },\n // rotationData\n {\n attributeName: 'aRotation',\n size: 1,\n uploadFunction: this.uploadRotation,\n offset: 0,\n },\n // uvsData\n {\n attributeName: 'aTextureCoord',\n size: 2,\n uploadFunction: this.uploadUvs,\n offset: 0,\n },\n // tintData\n {\n attributeName: 'aColor',\n size: 1,\n type: TYPES.UNSIGNED_BYTE,\n uploadFunction: this.uploadTint,\n offset: 0,\n } ];\n\n this.shader = Shader.from(vertex, fragment, {});\n }\n\n if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer;\n ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n ParticleRenderer.prototype.constructor = ParticleRenderer;\n\n /**\n * Renders the particle container object.\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n */\n ParticleRenderer.prototype.render = function render (container)\n {\n var children = container.children;\n var maxSize = container._maxSize;\n var batchSize = container._batchSize;\n var renderer = this.renderer;\n var totalChildren = children.length;\n\n if (totalChildren === 0)\n {\n return;\n }\n else if (totalChildren > maxSize && !container.autoResize)\n {\n totalChildren = maxSize;\n }\n\n var buffers = container._buffers;\n\n if (!buffers)\n {\n buffers = container._buffers = this.generateBuffers(container);\n }\n\n var baseTexture = children[0]._texture.baseTexture;\n\n // if the uvs have not updated then no point rendering just yet!\n this.renderer.state.setBlendMode(correctBlendMode(container.blendMode, baseTexture.premultiplyAlpha));\n\n var gl = renderer.gl;\n\n var m = container.worldTransform.copyTo(this.tempMatrix);\n\n m.prepend(renderer.globalUniforms.uniforms.projectionMatrix);\n\n this.shader.uniforms.translationMatrix = m.toArray(true);\n\n this.shader.uniforms.uColor = premultiplyRgba(container.tintRgb,\n container.worldAlpha, this.shader.uniforms.uColor, baseTexture.premultiplyAlpha);\n\n this.shader.uniforms.uSampler = baseTexture;\n\n this.renderer.shader.bind(this.shader);\n\n var updateStatic = false;\n\n // now lets upload and render the buffers..\n for (var i = 0, j = 0; i < totalChildren; i += batchSize, j += 1)\n {\n var amount = (totalChildren - i);\n\n if (amount > batchSize)\n {\n amount = batchSize;\n }\n\n if (j >= buffers.length)\n {\n buffers.push(this._generateOneMoreBuffer(container));\n }\n\n var buffer = buffers[j];\n\n // we always upload the dynamic\n buffer.uploadDynamic(children, i, amount);\n\n var bid = container._bufferUpdateIDs[j] || 0;\n\n updateStatic = updateStatic || (buffer._updateID < bid);\n // we only upload the static content when we have to!\n if (updateStatic)\n {\n buffer._updateID = container._updateID;\n buffer.uploadStatic(children, i, amount);\n }\n\n // bind the buffer\n renderer.geometry.bind(buffer.geometry);\n gl.drawElements(gl.TRIANGLES, amount * 6, gl.UNSIGNED_SHORT, 0);\n }\n };\n\n /**\n * Creates one particle buffer for each child in the container we want to render and updates internal properties\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n * @return {PIXI.ParticleBuffer[]} The buffers\n * @private\n */\n ParticleRenderer.prototype.generateBuffers = function generateBuffers (container)\n {\n var buffers = [];\n var size = container._maxSize;\n var batchSize = container._batchSize;\n var dynamicPropertyFlags = container._properties;\n\n for (var i = 0; i < size; i += batchSize)\n {\n buffers.push(new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize));\n }\n\n return buffers;\n };\n\n /**\n * Creates one more particle buffer, because container has autoResize feature\n *\n * @param {PIXI.ParticleContainer} container - The container to render using this ParticleRenderer\n * @return {PIXI.ParticleBuffer} generated buffer\n * @private\n */\n ParticleRenderer.prototype._generateOneMoreBuffer = function _generateOneMoreBuffer (container)\n {\n var batchSize = container._batchSize;\n var dynamicPropertyFlags = container._properties;\n\n return new ParticleBuffer(this.properties, dynamicPropertyFlags, batchSize);\n };\n\n /**\n * Uploads the vertices.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their vertices uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadVertices = function uploadVertices (children, startIndex, amount, array, stride, offset)\n {\n var w0 = 0;\n var w1 = 0;\n var h0 = 0;\n var h1 = 0;\n\n for (var i = 0; i < amount; ++i)\n {\n var sprite = children[startIndex + i];\n var texture = sprite._texture;\n var sx = sprite.scale.x;\n var sy = sprite.scale.y;\n var trim = texture.trim;\n var orig = texture.orig;\n\n if (trim)\n {\n // if the sprite is trimmed and is not a tilingsprite then we need to add the\n // extra space before transforming the sprite coords..\n w1 = trim.x - (sprite.anchor.x * orig.width);\n w0 = w1 + trim.width;\n\n h1 = trim.y - (sprite.anchor.y * orig.height);\n h0 = h1 + trim.height;\n }\n else\n {\n w0 = (orig.width) * (1 - sprite.anchor.x);\n w1 = (orig.width) * -sprite.anchor.x;\n\n h0 = orig.height * (1 - sprite.anchor.y);\n h1 = orig.height * -sprite.anchor.y;\n }\n\n array[offset] = w1 * sx;\n array[offset + 1] = h1 * sy;\n\n array[offset + stride] = w0 * sx;\n array[offset + stride + 1] = h1 * sy;\n\n array[offset + (stride * 2)] = w0 * sx;\n array[offset + (stride * 2) + 1] = h0 * sy;\n\n array[offset + (stride * 3)] = w1 * sx;\n array[offset + (stride * 3) + 1] = h0 * sy;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the position.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their positions uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadPosition = function uploadPosition (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; i++)\n {\n var spritePosition = children[startIndex + i].position;\n\n array[offset] = spritePosition.x;\n array[offset + 1] = spritePosition.y;\n\n array[offset + stride] = spritePosition.x;\n array[offset + stride + 1] = spritePosition.y;\n\n array[offset + (stride * 2)] = spritePosition.x;\n array[offset + (stride * 2) + 1] = spritePosition.y;\n\n array[offset + (stride * 3)] = spritePosition.x;\n array[offset + (stride * 3) + 1] = spritePosition.y;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the rotiation.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadRotation = function uploadRotation (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; i++)\n {\n var spriteRotation = children[startIndex + i].rotation;\n\n array[offset] = spriteRotation;\n array[offset + stride] = spriteRotation;\n array[offset + (stride * 2)] = spriteRotation;\n array[offset + (stride * 3)] = spriteRotation;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Uploads the Uvs\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadUvs = function uploadUvs (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; ++i)\n {\n var textureUvs = children[startIndex + i]._texture._uvs;\n\n if (textureUvs)\n {\n array[offset] = textureUvs.x0;\n array[offset + 1] = textureUvs.y0;\n\n array[offset + stride] = textureUvs.x1;\n array[offset + stride + 1] = textureUvs.y1;\n\n array[offset + (stride * 2)] = textureUvs.x2;\n array[offset + (stride * 2) + 1] = textureUvs.y2;\n\n array[offset + (stride * 3)] = textureUvs.x3;\n array[offset + (stride * 3) + 1] = textureUvs.y3;\n\n offset += stride * 4;\n }\n else\n {\n // TODO you know this can be easier!\n array[offset] = 0;\n array[offset + 1] = 0;\n\n array[offset + stride] = 0;\n array[offset + stride + 1] = 0;\n\n array[offset + (stride * 2)] = 0;\n array[offset + (stride * 2) + 1] = 0;\n\n array[offset + (stride * 3)] = 0;\n array[offset + (stride * 3) + 1] = 0;\n\n offset += stride * 4;\n }\n }\n };\n\n /**\n * Uploads the tint.\n *\n * @param {PIXI.DisplayObject[]} children - the array of display objects to render\n * @param {number} startIndex - the index to start from in the children array\n * @param {number} amount - the amount of children that will have their rotation uploaded\n * @param {number[]} array - The vertices to upload.\n * @param {number} stride - Stride to use for iteration.\n * @param {number} offset - Offset to start at.\n */\n ParticleRenderer.prototype.uploadTint = function uploadTint (children, startIndex, amount, array, stride, offset)\n {\n for (var i = 0; i < amount; ++i)\n {\n var sprite = children[startIndex + i];\n var premultiplied = sprite._texture.baseTexture.premultiplyAlpha;\n var alpha = sprite.alpha;\n // we dont call extra function if alpha is 1.0, that's faster\n var argb = alpha < 1.0 && premultiplied ? premultiplyTint(sprite._tintRGB, alpha)\n : sprite._tintRGB + (alpha * 255 << 24);\n\n array[offset] = argb;\n array[offset + stride] = argb;\n array[offset + (stride * 2)] = argb;\n array[offset + (stride * 3)] = argb;\n\n offset += stride * 4;\n }\n };\n\n /**\n * Destroys the ParticleRenderer.\n */\n ParticleRenderer.prototype.destroy = function destroy ()\n {\n ObjectRenderer.prototype.destroy.call(this);\n\n if (this.shader)\n {\n this.shader.destroy();\n this.shader = null;\n }\n\n this.tempMatrix = null;\n };\n\n return ParticleRenderer;\n}(ObjectRenderer));\n\nexport { ParticleContainer, ParticleRenderer };\n//# sourceMappingURL=particles.es.js.map\n","/*!\n * @pixi/spritesheet - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/spritesheet is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Rectangle } from '@pixi/math';\nimport { Texture } from '@pixi/core';\nimport { getResolutionOfUrl, url } from '@pixi/utils';\nimport { LoaderResource } from '@pixi/loaders';\n\n/**\n * Utility class for maintaining reference to a collection\n * of Textures on a single Spritesheet.\n *\n * To access a sprite sheet from your code pass its JSON data file to Pixi's loader:\n *\n * ```js\n * PIXI.Loader.shared.add(\"images/spritesheet.json\").load(setup);\n *\n * function setup() {\n * let sheet = PIXI.Loader.shared.resources[\"images/spritesheet.json\"].spritesheet;\n * ...\n * }\n * ```\n * With the `sheet.textures` you can create Sprite objects,`sheet.animations` can be used to create an AnimatedSprite.\n *\n * Sprite sheets can be packed using tools like {@link https://codeandweb.com/texturepacker|TexturePacker},\n * {@link https://renderhjs.net/shoebox/|Shoebox} or {@link https://github.com/krzysztof-o/spritesheet.js|Spritesheet.js}.\n * Default anchor points (see {@link PIXI.Texture#defaultAnchor}) and grouping of animation sprites are currently only\n * supported by TexturePacker.\n *\n * @class\n * @memberof PIXI\n */\nvar Spritesheet = function Spritesheet(baseTexture, data, resolutionFilename)\n{\n if ( resolutionFilename === void 0 ) resolutionFilename = null;\n\n /**\n * Reference to ths source texture\n * @type {PIXI.BaseTexture}\n */\n this.baseTexture = baseTexture;\n\n /**\n * A map containing all textures of the sprite sheet.\n * Can be used to create a {@link PIXI.Sprite|Sprite}:\n * ```js\n * new PIXI.Sprite(sheet.textures[\"image.png\"]);\n * ```\n * @member {Object}\n */\n this.textures = {};\n\n /**\n * A map containing the textures for each animation.\n * Can be used to create an {@link PIXI.AnimatedSprite|AnimatedSprite}:\n * ```js\n * new PIXI.AnimatedSprite(sheet.animations[\"anim_name\"])\n * ```\n * @member {Object}\n */\n this.animations = {};\n\n /**\n * Reference to the original JSON data.\n * @type {Object}\n */\n this.data = data;\n\n /**\n * The resolution of the spritesheet.\n * @type {number}\n */\n this.resolution = this._updateResolution(\n resolutionFilename\n || (this.baseTexture.resource ? this.baseTexture.resource.url : null)\n );\n\n /**\n * Map of spritesheet frames.\n * @type {Object}\n * @private\n */\n this._frames = this.data.frames;\n\n /**\n * Collection of frame names.\n * @type {string[]}\n * @private\n */\n this._frameKeys = Object.keys(this._frames);\n\n /**\n * Current batch index being processed.\n * @type {number}\n * @private\n */\n this._batchIndex = 0;\n\n /**\n * Callback when parse is completed.\n * @type {Function}\n * @private\n */\n this._callback = null;\n};\n\nvar staticAccessors = { BATCH_SIZE: { configurable: true } };\n\n/**\n * Generate the resolution from the filename or fallback\n * to the meta.scale field of the JSON data.\n *\n * @private\n * @param {string} resolutionFilename - The filename to use for resolving\n * the default resolution.\n * @return {number} Resolution to use for spritesheet.\n */\nstaticAccessors.BATCH_SIZE.get = function ()\n{\n return 1000;\n};\n\nSpritesheet.prototype._updateResolution = function _updateResolution (resolutionFilename)\n{\n var scale = this.data.meta.scale;\n\n // Use a defaultValue of `null` to check if a url-based resolution is set\n var resolution = getResolutionOfUrl(resolutionFilename, null);\n\n // No resolution found via URL\n if (resolution === null)\n {\n // Use the scale value or default to 1\n resolution = scale !== undefined ? parseFloat(scale) : 1;\n }\n\n // For non-1 resolutions, update baseTexture\n if (resolution !== 1)\n {\n this.baseTexture.setResolution(resolution);\n }\n\n return resolution;\n};\n\n/**\n * Parser spritesheet from loaded data. This is done asynchronously\n * to prevent creating too many Texture within a single process.\n *\n * @param {Function} callback - Callback when complete returns\n * a map of the Textures for this spritesheet.\n */\nSpritesheet.prototype.parse = function parse (callback)\n{\n this._batchIndex = 0;\n this._callback = callback;\n\n if (this._frameKeys.length <= Spritesheet.BATCH_SIZE)\n {\n this._processFrames(0);\n this._processAnimations();\n this._parseComplete();\n }\n else\n {\n this._nextBatch();\n }\n};\n\n/**\n * Process a batch of frames\n *\n * @private\n * @param {number} initialFrameIndex - The index of frame to start.\n */\nSpritesheet.prototype._processFrames = function _processFrames (initialFrameIndex)\n{\n var frameIndex = initialFrameIndex;\n var maxFrames = Spritesheet.BATCH_SIZE;\n\n while (frameIndex - initialFrameIndex < maxFrames && frameIndex < this._frameKeys.length)\n {\n var i = this._frameKeys[frameIndex];\n var data = this._frames[i];\n var rect = data.frame;\n\n if (rect)\n {\n var frame = null;\n var trim = null;\n var sourceSize = data.trimmed !== false && data.sourceSize\n ? data.sourceSize : data.frame;\n\n var orig = new Rectangle(\n 0,\n 0,\n Math.floor(sourceSize.w) / this.resolution,\n Math.floor(sourceSize.h) / this.resolution\n );\n\n if (data.rotated)\n {\n frame = new Rectangle(\n Math.floor(rect.x) / this.resolution,\n Math.floor(rect.y) / this.resolution,\n Math.floor(rect.h) / this.resolution,\n Math.floor(rect.w) / this.resolution\n );\n }\n else\n {\n frame = new Rectangle(\n Math.floor(rect.x) / this.resolution,\n Math.floor(rect.y) / this.resolution,\n Math.floor(rect.w) / this.resolution,\n Math.floor(rect.h) / this.resolution\n );\n }\n\n // Check to see if the sprite is trimmed\n if (data.trimmed !== false && data.spriteSourceSize)\n {\n trim = new Rectangle(\n Math.floor(data.spriteSourceSize.x) / this.resolution,\n Math.floor(data.spriteSourceSize.y) / this.resolution,\n Math.floor(rect.w) / this.resolution,\n Math.floor(rect.h) / this.resolution\n );\n }\n\n this.textures[i] = new Texture(\n this.baseTexture,\n frame,\n orig,\n trim,\n data.rotated ? 2 : 0,\n data.anchor\n );\n\n // lets also add the frame to pixi's global cache for 'from' and 'fromLoader' functions\n Texture.addToCache(this.textures[i], i);\n }\n\n frameIndex++;\n }\n};\n\n/**\n * Parse animations config\n *\n * @private\n */\nSpritesheet.prototype._processAnimations = function _processAnimations ()\n{\n var animations = this.data.animations || {};\n\n for (var animName in animations)\n {\n this.animations[animName] = [];\n for (var i = 0; i < animations[animName].length; i++)\n {\n var frameName = animations[animName][i];\n\n this.animations[animName].push(this.textures[frameName]);\n }\n }\n};\n\n/**\n * The parse has completed.\n *\n * @private\n */\nSpritesheet.prototype._parseComplete = function _parseComplete ()\n{\n var callback = this._callback;\n\n this._callback = null;\n this._batchIndex = 0;\n callback.call(this, this.textures);\n};\n\n/**\n * Begin the next batch of textures.\n *\n * @private\n */\nSpritesheet.prototype._nextBatch = function _nextBatch ()\n{\n var this$1 = this;\n\n this._processFrames(this._batchIndex * Spritesheet.BATCH_SIZE);\n this._batchIndex++;\n setTimeout(function () {\n if (this$1._batchIndex * Spritesheet.BATCH_SIZE < this$1._frameKeys.length)\n {\n this$1._nextBatch();\n }\n else\n {\n this$1._processAnimations();\n this$1._parseComplete();\n }\n }, 0);\n};\n\n/**\n * Destroy Spritesheet and don't use after this.\n *\n * @param {boolean} [destroyBase=false] Whether to destroy the base texture as well\n */\nSpritesheet.prototype.destroy = function destroy (destroyBase)\n{\n if ( destroyBase === void 0 ) destroyBase = false;\n\n for (var i in this.textures)\n {\n this.textures[i].destroy();\n }\n this._frames = null;\n this._frameKeys = null;\n this.data = null;\n this.textures = null;\n if (destroyBase)\n {\n this.baseTexture.destroy();\n }\n this.baseTexture = null;\n};\n\nObject.defineProperties( Spritesheet, staticAccessors );\n\n/**\n * {@link PIXI.Loader Loader} middleware for loading texture atlases that have been created with\n * TexturePacker or similar JSON-based spritesheet.\n *\n * This middleware automatically generates Texture resources.\n *\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar SpritesheetLoader = function SpritesheetLoader () {};\n\nSpritesheetLoader.use = function use (resource, next)\n{\n var imageResourceName = (resource.name) + \"_image\";\n\n // skip if no data, its not json, it isn't spritesheet data, or the image resource already exists\n if (!resource.data\n || resource.type !== LoaderResource.TYPE.JSON\n || !resource.data.frames\n || this.resources[imageResourceName]\n )\n {\n next();\n\n return;\n }\n\n var loadOptions = {\n crossOrigin: resource.crossOrigin,\n metadata: resource.metadata.imageMetadata,\n parentResource: resource,\n };\n\n var resourcePath = SpritesheetLoader.getResourcePath(resource, this.baseUrl);\n\n // load the image for this sheet\n this.add(imageResourceName, resourcePath, loadOptions, function onImageLoad(res)\n {\n if (res.error)\n {\n next(res.error);\n\n return;\n }\n\n var spritesheet = new Spritesheet(\n res.texture.baseTexture,\n resource.data,\n resource.url\n );\n\n spritesheet.parse(function () {\n resource.spritesheet = spritesheet;\n resource.textures = spritesheet.textures;\n next();\n });\n });\n};\n\n/**\n * Get the spritesheets root path\n * @param {PIXI.LoaderResource} resource - Resource to check path\n * @param {string} baseUrl - Base root url\n */\nSpritesheetLoader.getResourcePath = function getResourcePath (resource, baseUrl)\n{\n // Prepend url path unless the resource image is a data url\n if (resource.isDataUrl)\n {\n return resource.data.meta.image;\n }\n\n return url.resolve(resource.url.replace(baseUrl, ''), resource.data.meta.image);\n};\n\nexport { Spritesheet, SpritesheetLoader };\n//# sourceMappingURL=spritesheet.es.js.map\n","/*!\n * @pixi/sprite-tiling - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/sprite-tiling is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture, TextureMatrix, ObjectRenderer, Shader, QuadUv } from '@pixi/core';\nimport { Point, Rectangle, Transform, Matrix } from '@pixi/math';\nimport { TextureCache, premultiplyTintToRgba, correctBlendMode } from '@pixi/utils';\nimport { Sprite } from '@pixi/sprite';\nimport { WRAP_MODES } from '@pixi/constants';\n\nvar tempPoint = new Point();\n\n/**\n * A tiling sprite is a fast way of rendering a tiling image\n *\n * @class\n * @extends PIXI.Sprite\n * @memberof PIXI\n */\nvar TilingSprite = /*@__PURE__*/(function (Sprite) {\n function TilingSprite(texture, width, height)\n {\n if ( width === void 0 ) width = 100;\n if ( height === void 0 ) height = 100;\n\n Sprite.call(this, texture);\n\n /**\n * Tile transform\n *\n * @member {PIXI.Transform}\n */\n this.tileTransform = new Transform();\n\n // /// private\n\n /**\n * The with of the tiling sprite\n *\n * @member {number}\n * @private\n */\n this._width = width;\n\n /**\n * The height of the tiling sprite\n *\n * @member {number}\n * @private\n */\n this._height = height;\n\n /**\n * Canvas pattern\n *\n * @type {CanvasPattern}\n * @private\n */\n this._canvasPattern = null;\n\n /**\n * matrix that is applied to UV to get the coords in Texture normalized space to coords in BaseTexture space\n *\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = texture.uvMatrix || new TextureMatrix(texture);\n\n /**\n * Plugin that is responsible for rendering this element.\n * Allows to customize the rendering process without overriding '_render' method.\n *\n * @member {string}\n * @default 'tilingSprite'\n */\n this.pluginName = 'tilingSprite';\n\n /**\n * Whether or not anchor affects uvs\n *\n * @member {boolean}\n * @default false\n */\n this.uvRespectAnchor = false;\n }\n\n if ( Sprite ) TilingSprite.__proto__ = Sprite;\n TilingSprite.prototype = Object.create( Sprite && Sprite.prototype );\n TilingSprite.prototype.constructor = TilingSprite;\n\n var prototypeAccessors = { clampMargin: { configurable: true },tileScale: { configurable: true },tilePosition: { configurable: true },width: { configurable: true },height: { configurable: true } };\n /**\n * Changes frame clamping in corresponding textureTransform, shortcut\n * Change to -0.5 to add a pixel to the edge, recommended for transparent trimmed textures in atlas\n *\n * @default 0.5\n * @member {number}\n */\n prototypeAccessors.clampMargin.get = function ()\n {\n return this.uvMatrix.clampMargin;\n };\n\n prototypeAccessors.clampMargin.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uvMatrix.clampMargin = value;\n this.uvMatrix.update(true);\n };\n\n /**\n * The scaling of the image that is being tiled\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.tileScale.get = function ()\n {\n return this.tileTransform.scale;\n };\n\n prototypeAccessors.tileScale.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.tileTransform.scale.copyFrom(value);\n };\n\n /**\n * The offset of the image that is being tiled\n *\n * @member {PIXI.ObservablePoint}\n */\n prototypeAccessors.tilePosition.get = function ()\n {\n return this.tileTransform.position;\n };\n\n prototypeAccessors.tilePosition.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.tileTransform.position.copyFrom(value);\n };\n\n /**\n * @private\n */\n TilingSprite.prototype._onTextureUpdate = function _onTextureUpdate ()\n {\n if (this.uvMatrix)\n {\n this.uvMatrix.texture = this._texture;\n }\n this._cachedTint = 0xFFFFFF;\n };\n\n /**\n * Renders the object using the WebGL renderer\n *\n * @protected\n * @param {PIXI.Renderer} renderer - The renderer\n */\n TilingSprite.prototype._render = function _render (renderer)\n {\n // tweak our texture temporarily..\n var texture = this._texture;\n\n if (!texture || !texture.valid)\n {\n return;\n }\n\n this.tileTransform.updateLocalTransform();\n this.uvMatrix.update();\n\n renderer.batch.setObjectRenderer(renderer.plugins[this.pluginName]);\n renderer.plugins[this.pluginName].render(this);\n };\n\n /**\n * Updates the bounds of the tiling sprite.\n *\n * @protected\n */\n TilingSprite.prototype._calculateBounds = function _calculateBounds ()\n {\n var minX = this._width * -this._anchor._x;\n var minY = this._height * -this._anchor._y;\n var maxX = this._width * (1 - this._anchor._x);\n var maxY = this._height * (1 - this._anchor._y);\n\n this._bounds.addFrame(this.transform, minX, minY, maxX, maxY);\n };\n\n /**\n * Gets the local bounds of the sprite object.\n *\n * @param {PIXI.Rectangle} rect - The output rectangle.\n * @return {PIXI.Rectangle} The bounds.\n */\n TilingSprite.prototype.getLocalBounds = function getLocalBounds (rect)\n {\n // we can do a fast local bounds if the sprite has no children!\n if (this.children.length === 0)\n {\n this._bounds.minX = this._width * -this._anchor._x;\n this._bounds.minY = this._height * -this._anchor._y;\n this._bounds.maxX = this._width * (1 - this._anchor._x);\n this._bounds.maxY = this._height * (1 - this._anchor._y);\n\n if (!rect)\n {\n if (!this._localBoundsRect)\n {\n this._localBoundsRect = new Rectangle();\n }\n\n rect = this._localBoundsRect;\n }\n\n return this._bounds.getRectangle(rect);\n }\n\n return Sprite.prototype.getLocalBounds.call(this, rect);\n };\n\n /**\n * Checks if a point is inside this tiling sprite.\n *\n * @param {PIXI.Point} point - the point to check\n * @return {boolean} Whether or not the sprite contains the point.\n */\n TilingSprite.prototype.containsPoint = function containsPoint (point)\n {\n this.worldTransform.applyInverse(point, tempPoint);\n\n var width = this._width;\n var height = this._height;\n var x1 = -width * this.anchor._x;\n\n if (tempPoint.x >= x1 && tempPoint.x < x1 + width)\n {\n var y1 = -height * this.anchor._y;\n\n if (tempPoint.y >= y1 && tempPoint.y < y1 + height)\n {\n return true;\n }\n }\n\n return false;\n };\n\n /**\n * Destroys this sprite and optionally its texture and children\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have their destroy\n * method called as well. 'options' will be passed on to those calls.\n * @param {boolean} [options.texture=false] - Should it destroy the current texture of the sprite as well\n * @param {boolean} [options.baseTexture=false] - Should it destroy the base texture of the sprite as well\n */\n TilingSprite.prototype.destroy = function destroy (options)\n {\n Sprite.prototype.destroy.call(this, options);\n\n this.tileTransform = null;\n this.uvMatrix = null;\n };\n\n /**\n * Helper function that creates a new tiling sprite based on the source you provide.\n * The source can be - frame id, image url, video url, canvas element, video element, base texture\n *\n * @static\n * @param {number|string|PIXI.Texture|HTMLCanvasElement|HTMLVideoElement} source - Source to create texture from\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @return {PIXI.TilingSprite} The newly created texture\n */\n TilingSprite.from = function from (source, width, height)\n {\n return new TilingSprite(Texture.from(source), width, height);\n };\n\n /**\n * Helper function that creates a tiling sprite that will use a texture from the TextureCache based on the frameId\n * The frame ids are created when a Texture packer file has been loaded\n *\n * @static\n * @param {string} frameId - The frame Id of the texture in the cache\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @return {PIXI.TilingSprite} A new TilingSprite using a texture from the texture cache matching the frameId\n */\n TilingSprite.fromFrame = function fromFrame (frameId, width, height)\n {\n var texture = TextureCache[frameId];\n\n if (!texture)\n {\n throw new Error((\"The frameId \\\"\" + frameId + \"\\\" does not exist in the texture cache \" + (this)));\n }\n\n return new TilingSprite(texture, width, height);\n };\n\n /**\n * Helper function that creates a sprite that will contain a texture based on an image url\n * If the image is not in the texture cache it will be loaded\n *\n * @static\n * @param {string} imageId - The image url of the texture\n * @param {number} width - the width of the tiling sprite\n * @param {number} height - the height of the tiling sprite\n * @param {Object} [options] - See {@link PIXI.BaseTexture}'s constructor for options.\n * @return {PIXI.TilingSprite} A new TilingSprite using a texture from the texture cache matching the image id\n */\n TilingSprite.fromImage = function fromImage (imageId, width, height, options)\n {\n // Fallback support for crossorigin, scaleMode parameters\n if (options && typeof options !== 'object')\n {\n options = {\n scaleMode: arguments[4],\n resourceOptions: {\n crossorigin: arguments[3],\n },\n };\n }\n\n return new TilingSprite(Texture.from(imageId, options), width, height);\n };\n\n /**\n * The width of the sprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.width.get = function ()\n {\n return this._width;\n };\n\n prototypeAccessors.width.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._width = value;\n };\n\n /**\n * The height of the TilingSprite, setting this will actually modify the scale to achieve the value set\n *\n * @member {number}\n */\n prototypeAccessors.height.get = function ()\n {\n return this._height;\n };\n\n prototypeAccessors.height.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._height = value;\n };\n\n Object.defineProperties( TilingSprite.prototype, prototypeAccessors );\n\n return TilingSprite;\n}(Sprite));\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform mat3 uTransform;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = (uTransform * vec3(aTextureCoord, 1.0)).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform vec4 uColor;\\nuniform mat3 uMapCoord;\\nuniform vec4 uClampFrame;\\nuniform vec2 uClampOffset;\\n\\nvoid main(void)\\n{\\n vec2 coord = mod(vTextureCoord - uClampOffset, vec2(1.0, 1.0)) + uClampOffset;\\n coord = (uMapCoord * vec3(coord, 1.0)).xy;\\n coord = clamp(coord, uClampFrame.xy, uClampFrame.zw);\\n\\n vec4 sample = texture2D(uSampler, coord);\\n gl_FragColor = sample * uColor;\\n}\\n\";\n\nvar fragmentSimple = \"varying vec2 vTextureCoord;\\n\\nuniform sampler2D uSampler;\\nuniform vec4 uColor;\\n\\nvoid main(void)\\n{\\n vec4 sample = texture2D(uSampler, vTextureCoord);\\n gl_FragColor = sample * uColor;\\n}\\n\";\n\nvar tempMat = new Matrix();\n\n/**\n * WebGL renderer plugin for tiling sprites\n *\n * @class\n * @memberof PIXI\n * @extends PIXI.ObjectRenderer\n */\nvar TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) {\n function TilingSpriteRenderer(renderer)\n {\n ObjectRenderer.call(this, renderer);\n\n var uniforms = { globals: this.renderer.globalUniforms };\n\n this.shader = Shader.from(vertex, fragment, uniforms);\n\n this.simpleShader = Shader.from(vertex, fragmentSimple, uniforms);\n\n this.quad = new QuadUv();\n }\n\n if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer;\n TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );\n TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer;\n\n /**\n *\n * @param {PIXI.TilingSprite} ts tilingSprite to be rendered\n */\n TilingSpriteRenderer.prototype.render = function render (ts)\n {\n var renderer = this.renderer;\n var quad = this.quad;\n\n var vertices = quad.vertices;\n\n vertices[0] = vertices[6] = (ts._width) * -ts.anchor.x;\n vertices[1] = vertices[3] = ts._height * -ts.anchor.y;\n\n vertices[2] = vertices[4] = (ts._width) * (1.0 - ts.anchor.x);\n vertices[5] = vertices[7] = ts._height * (1.0 - ts.anchor.y);\n\n if (ts.uvRespectAnchor)\n {\n vertices = quad.uvs;\n\n vertices[0] = vertices[6] = -ts.anchor.x;\n vertices[1] = vertices[3] = -ts.anchor.y;\n\n vertices[2] = vertices[4] = 1.0 - ts.anchor.x;\n vertices[5] = vertices[7] = 1.0 - ts.anchor.y;\n }\n\n quad.invalidate();\n\n var tex = ts._texture;\n var baseTex = tex.baseTexture;\n var lt = ts.tileTransform.localTransform;\n var uv = ts.uvMatrix;\n var isSimple = baseTex.isPowerOfTwo\n && tex.frame.width === baseTex.width && tex.frame.height === baseTex.height;\n\n // auto, force repeat wrapMode for big tiling textures\n if (isSimple)\n {\n if (!baseTex._glTextures[renderer.CONTEXT_UID])\n {\n if (baseTex.wrapMode === WRAP_MODES.CLAMP)\n {\n baseTex.wrapMode = WRAP_MODES.REPEAT;\n }\n }\n else\n {\n isSimple = baseTex.wrapMode !== WRAP_MODES.CLAMP;\n }\n }\n\n var shader = isSimple ? this.simpleShader : this.shader;\n\n var w = tex.width;\n var h = tex.height;\n var W = ts._width;\n var H = ts._height;\n\n tempMat.set(lt.a * w / W,\n lt.b * w / H,\n lt.c * h / W,\n lt.d * h / H,\n lt.tx / W,\n lt.ty / H);\n\n // that part is the same as above:\n // tempMat.identity();\n // tempMat.scale(tex.width, tex.height);\n // tempMat.prepend(lt);\n // tempMat.scale(1.0 / ts._width, 1.0 / ts._height);\n\n tempMat.invert();\n if (isSimple)\n {\n tempMat.prepend(uv.mapCoord);\n }\n else\n {\n shader.uniforms.uMapCoord = uv.mapCoord.toArray(true);\n shader.uniforms.uClampFrame = uv.uClampFrame;\n shader.uniforms.uClampOffset = uv.uClampOffset;\n }\n\n shader.uniforms.uTransform = tempMat.toArray(true);\n shader.uniforms.uColor = premultiplyTintToRgba(ts.tint, ts.worldAlpha,\n shader.uniforms.uColor, baseTex.premultiplyAlpha);\n shader.uniforms.translationMatrix = ts.transform.worldTransform.toArray(true);\n shader.uniforms.uSampler = tex;\n\n renderer.shader.bind(shader);\n renderer.geometry.bind(quad);// , renderer.shader.getGLShader());\n\n renderer.state.setBlendMode(correctBlendMode(ts.blendMode, baseTex.premultiplyAlpha));\n renderer.geometry.draw(this.renderer.gl.TRIANGLES, 6, 0);\n };\n\n return TilingSpriteRenderer;\n}(ObjectRenderer));\n\nexport { TilingSprite, TilingSpriteRenderer };\n//# sourceMappingURL=sprite-tiling.es.js.map\n","/*!\n * @pixi/text-bitmap - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/text-bitmap is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Texture } from '@pixi/core';\nimport { Container } from '@pixi/display';\nimport { Point, Rectangle, ObservablePoint } from '@pixi/math';\nimport { settings } from '@pixi/settings';\nimport { Sprite } from '@pixi/sprite';\nimport { removeItems, getResolutionOfUrl } from '@pixi/utils';\nimport { LoaderResource } from '@pixi/loaders';\n\n/**\n * A BitmapText object will create a line or multiple lines of text using bitmap font.\n *\n * The primary advantage of this class over Text is that all of your textures are pre-generated and loading,\n * meaning that rendering is fast, and changing text has no performance implications.\n *\n * The primary disadvantage is that you need to preload the bitmap font assets, and thus the styling is set in stone.\n * Supporting character sets other than latin, such as CJK languages, may be impractical due to the number of characters.\n *\n * To split a line you can use '\\n', '\\r' or '\\r\\n' in your string.\n *\n * You can generate the fnt files using\n * http://www.angelcode.com/products/bmfont/ for Windows or\n * http://www.bmglyph.com/ for Mac.\n *\n * A BitmapText can only be created when the font is loaded.\n *\n * ```js\n * // in this case the font is in a file called 'desyrel.fnt'\n * let bitmapText = new PIXI.BitmapText(\"text using a fancy font!\", {font: \"35px Desyrel\", align: \"right\"});\n * ```\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar BitmapText = /*@__PURE__*/(function (Container) {\n function BitmapText(text, style)\n {\n var this$1 = this;\n if ( style === void 0 ) style = {};\n\n Container.call(this);\n\n /**\n * Private tracker for the width of the overall text\n *\n * @member {number}\n * @private\n */\n this._textWidth = 0;\n\n /**\n * Private tracker for the height of the overall text\n *\n * @member {number}\n * @private\n */\n this._textHeight = 0;\n\n /**\n * Private tracker for the letter sprite pool.\n *\n * @member {PIXI.Sprite[]}\n * @private\n */\n this._glyphs = [];\n\n /**\n * Private tracker for the current style.\n *\n * @member {object}\n * @private\n */\n this._font = {\n tint: style.tint !== undefined ? style.tint : 0xFFFFFF,\n align: style.align || 'left',\n name: null,\n size: 0,\n };\n\n /**\n * Private tracker for the current font.\n *\n * @member {object}\n * @private\n */\n this.font = style.font; // run font setter\n\n /**\n * Private tracker for the current text.\n *\n * @member {string}\n * @private\n */\n this._text = text;\n\n /**\n * The max width of this bitmap text in pixels. If the text provided is longer than the\n * value provided, line breaks will be automatically inserted in the last whitespace.\n * Disable by setting value to 0\n *\n * @member {number}\n * @private\n */\n this._maxWidth = 0;\n\n /**\n * The max line height. This is useful when trying to use the total height of the Text,\n * ie: when trying to vertically align.\n *\n * @member {number}\n * @private\n */\n this._maxLineHeight = 0;\n\n /**\n * Letter spacing. This is useful for setting the space between characters.\n * @member {number}\n * @private\n */\n this._letterSpacing = 0;\n\n /**\n * Text anchor. read-only\n *\n * @member {PIXI.ObservablePoint}\n * @private\n */\n this._anchor = new ObservablePoint(function () { this$1.dirty = true; }, this, 0, 0);\n\n /**\n * The dirty state of this object.\n *\n * @member {boolean}\n */\n this.dirty = false;\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n this.roundPixels = settings.ROUND_PIXELS;\n\n this.updateText();\n }\n\n if ( Container ) BitmapText.__proto__ = Container;\n BitmapText.prototype = Object.create( Container && Container.prototype );\n BitmapText.prototype.constructor = BitmapText;\n\n var prototypeAccessors = { tint: { configurable: true },align: { configurable: true },anchor: { configurable: true },font: { configurable: true },text: { configurable: true },maxWidth: { configurable: true },maxLineHeight: { configurable: true },textWidth: { configurable: true },letterSpacing: { configurable: true },textHeight: { configurable: true } };\n\n /**\n * Renders text and updates it when needed\n *\n * @private\n */\n BitmapText.prototype.updateText = function updateText ()\n {\n var data = BitmapText.fonts[this._font.name];\n var scale = this._font.size / data.size;\n var pos = new Point();\n var chars = [];\n var lineWidths = [];\n var text = this._text.replace(/(?:\\r\\n|\\r)/g, '\\n') || ' ';\n var textLength = text.length;\n var maxWidth = this._maxWidth * data.size / this._font.size;\n\n var prevCharCode = null;\n var lastLineWidth = 0;\n var maxLineWidth = 0;\n var line = 0;\n var lastBreakPos = -1;\n var lastBreakWidth = 0;\n var spacesRemoved = 0;\n var maxLineHeight = 0;\n\n for (var i = 0; i < textLength; i++)\n {\n var charCode = text.charCodeAt(i);\n var char = text.charAt(i);\n\n if ((/(?:\\s)/).test(char))\n {\n lastBreakPos = i;\n lastBreakWidth = lastLineWidth;\n }\n\n if (char === '\\r' || char === '\\n')\n {\n lineWidths.push(lastLineWidth);\n maxLineWidth = Math.max(maxLineWidth, lastLineWidth);\n ++line;\n ++spacesRemoved;\n\n pos.x = 0;\n pos.y += data.lineHeight;\n prevCharCode = null;\n continue;\n }\n\n var charData = data.chars[charCode];\n\n if (!charData)\n {\n continue;\n }\n\n if (prevCharCode && charData.kerning[prevCharCode])\n {\n pos.x += charData.kerning[prevCharCode];\n }\n\n chars.push({\n texture: charData.texture,\n line: line,\n charCode: charCode,\n position: new Point(pos.x + charData.xOffset + (this._letterSpacing / 2), pos.y + charData.yOffset),\n });\n pos.x += charData.xAdvance + this._letterSpacing;\n lastLineWidth = pos.x;\n maxLineHeight = Math.max(maxLineHeight, (charData.yOffset + charData.texture.height));\n prevCharCode = charCode;\n\n if (lastBreakPos !== -1 && maxWidth > 0 && pos.x > maxWidth)\n {\n ++spacesRemoved;\n removeItems(chars, 1 + lastBreakPos - spacesRemoved, 1 + i - lastBreakPos);\n i = lastBreakPos;\n lastBreakPos = -1;\n\n lineWidths.push(lastBreakWidth);\n maxLineWidth = Math.max(maxLineWidth, lastBreakWidth);\n line++;\n\n pos.x = 0;\n pos.y += data.lineHeight;\n prevCharCode = null;\n }\n }\n\n var lastChar = text.charAt(text.length - 1);\n\n if (lastChar !== '\\r' && lastChar !== '\\n')\n {\n if ((/(?:\\s)/).test(lastChar))\n {\n lastLineWidth = lastBreakWidth;\n }\n\n lineWidths.push(lastLineWidth);\n maxLineWidth = Math.max(maxLineWidth, lastLineWidth);\n }\n\n var lineAlignOffsets = [];\n\n for (var i$1 = 0; i$1 <= line; i$1++)\n {\n var alignOffset = 0;\n\n if (this._font.align === 'right')\n {\n alignOffset = maxLineWidth - lineWidths[i$1];\n }\n else if (this._font.align === 'center')\n {\n alignOffset = (maxLineWidth - lineWidths[i$1]) / 2;\n }\n\n lineAlignOffsets.push(alignOffset);\n }\n\n var lenChars = chars.length;\n var tint = this.tint;\n\n for (var i$2 = 0; i$2 < lenChars; i$2++)\n {\n var c = this._glyphs[i$2]; // get the next glyph sprite\n\n if (c)\n {\n c.texture = chars[i$2].texture;\n }\n else\n {\n c = new Sprite(chars[i$2].texture);\n c.roundPixels = this.roundPixels;\n this._glyphs.push(c);\n }\n\n c.position.x = (chars[i$2].position.x + lineAlignOffsets[chars[i$2].line]) * scale;\n c.position.y = chars[i$2].position.y * scale;\n c.scale.x = c.scale.y = scale;\n c.tint = tint;\n\n if (!c.parent)\n {\n this.addChild(c);\n }\n }\n\n // remove unnecessary children.\n for (var i$3 = lenChars; i$3 < this._glyphs.length; ++i$3)\n {\n this.removeChild(this._glyphs[i$3]);\n }\n\n this._textWidth = maxLineWidth * scale;\n this._textHeight = (pos.y + data.lineHeight) * scale;\n\n // apply anchor\n if (this.anchor.x !== 0 || this.anchor.y !== 0)\n {\n for (var i$4 = 0; i$4 < lenChars; i$4++)\n {\n this._glyphs[i$4].x -= this._textWidth * this.anchor.x;\n this._glyphs[i$4].y -= this._textHeight * this.anchor.y;\n }\n }\n this._maxLineHeight = maxLineHeight * scale;\n };\n\n /**\n * Updates the transform of this object\n *\n * @private\n */\n BitmapText.prototype.updateTransform = function updateTransform ()\n {\n this.validate();\n this.containerUpdateTransform();\n };\n\n /**\n * Validates text before calling parent's getLocalBounds\n *\n * @return {PIXI.Rectangle} The rectangular bounding area\n */\n BitmapText.prototype.getLocalBounds = function getLocalBounds ()\n {\n this.validate();\n\n return Container.prototype.getLocalBounds.call(this);\n };\n\n /**\n * Updates text when needed\n *\n * @private\n */\n BitmapText.prototype.validate = function validate ()\n {\n if (this.dirty)\n {\n this.updateText();\n this.dirty = false;\n }\n };\n\n /**\n * The tint of the BitmapText object.\n *\n * @member {number}\n */\n prototypeAccessors.tint.get = function ()\n {\n return this._font.tint;\n };\n\n prototypeAccessors.tint.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._font.tint = (typeof value === 'number' && value >= 0) ? value : 0xFFFFFF;\n\n this.dirty = true;\n };\n\n /**\n * The alignment of the BitmapText object.\n *\n * @member {string}\n * @default 'left'\n */\n prototypeAccessors.align.get = function ()\n {\n return this._font.align;\n };\n\n prototypeAccessors.align.set = function (value) // eslint-disable-line require-jsdoc\n {\n this._font.align = value || 'left';\n\n this.dirty = true;\n };\n\n /**\n * The anchor sets the origin point of the text.\n *\n * The default is `(0,0)`, this means the text's origin is the top left.\n *\n * Setting the anchor to `(0.5,0.5)` means the text's origin is centered.\n *\n * Setting the anchor to `(1,1)` would mean the text's origin point will be the bottom right corner.\n *\n * @member {PIXI.Point | number}\n */\n prototypeAccessors.anchor.get = function ()\n {\n return this._anchor;\n };\n\n prototypeAccessors.anchor.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (typeof value === 'number')\n {\n this._anchor.set(value);\n }\n else\n {\n this._anchor.copyFrom(value);\n }\n };\n\n /**\n * The font descriptor of the BitmapText object.\n *\n * @member {object}\n */\n prototypeAccessors.font.get = function ()\n {\n return this._font;\n };\n\n prototypeAccessors.font.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (!value)\n {\n return;\n }\n\n if (typeof value === 'string')\n {\n value = value.split(' ');\n\n this._font.name = value.length === 1 ? value[0] : value.slice(1).join(' ');\n this._font.size = value.length >= 2 ? parseInt(value[0], 10) : BitmapText.fonts[this._font.name].size;\n }\n else\n {\n this._font.name = value.name;\n this._font.size = typeof value.size === 'number' ? value.size : parseInt(value.size, 10);\n }\n\n this.dirty = true;\n };\n\n /**\n * The text of the BitmapText object.\n *\n * @member {string}\n */\n prototypeAccessors.text.get = function ()\n {\n return this._text;\n };\n\n prototypeAccessors.text.set = function (text) // eslint-disable-line require-jsdoc\n {\n text = String(text === null || text === undefined ? '' : text);\n\n if (this._text === text)\n {\n return;\n }\n this._text = text;\n this.dirty = true;\n };\n\n /**\n * The max width of this bitmap text in pixels. If the text provided is longer than the\n * value provided, line breaks will be automatically inserted in the last whitespace.\n * Disable by setting the value to 0.\n *\n * @member {number}\n */\n prototypeAccessors.maxWidth.get = function ()\n {\n return this._maxWidth;\n };\n\n prototypeAccessors.maxWidth.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._maxWidth === value)\n {\n return;\n }\n this._maxWidth = value;\n this.dirty = true;\n };\n\n /**\n * The max line height. This is useful when trying to use the total height of the Text,\n * i.e. when trying to vertically align.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.maxLineHeight.get = function ()\n {\n this.validate();\n\n return this._maxLineHeight;\n };\n\n /**\n * The width of the overall text, different from fontSize,\n * which is defined in the style object.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.textWidth.get = function ()\n {\n this.validate();\n\n return this._textWidth;\n };\n\n /**\n * Additional space between characters.\n *\n * @member {number}\n */\n prototypeAccessors.letterSpacing.get = function ()\n {\n return this._letterSpacing;\n };\n\n prototypeAccessors.letterSpacing.set = function (value) // eslint-disable-line require-jsdoc\n {\n if (this._letterSpacing !== value)\n {\n this._letterSpacing = value;\n this.dirty = true;\n }\n };\n\n /**\n * The height of the overall text, different from fontSize,\n * which is defined in the style object.\n *\n * @member {number}\n * @readonly\n */\n prototypeAccessors.textHeight.get = function ()\n {\n this.validate();\n\n return this._textHeight;\n };\n\n /**\n * Register a bitmap font with data and a texture.\n *\n * @static\n * @param {XMLDocument} xml - The XML document data.\n * @param {Object.|PIXI.Texture|PIXI.Texture[]} textures - List of textures for each page.\n * If providing an object, the key is the `` element's `file` attribute in the FNT file.\n * @return {Object} Result font object with font, size, lineHeight and char fields.\n */\n BitmapText.registerFont = function registerFont (xml, textures)\n {\n var data = {};\n var info = xml.getElementsByTagName('info')[0];\n var common = xml.getElementsByTagName('common')[0];\n var pages = xml.getElementsByTagName('page');\n var res = getResolutionOfUrl(pages[0].getAttribute('file'), settings.RESOLUTION);\n var pagesTextures = {};\n\n data.font = info.getAttribute('face');\n data.size = parseInt(info.getAttribute('size'), 10);\n data.lineHeight = parseInt(common.getAttribute('lineHeight'), 10) / res;\n data.chars = {};\n\n // Single texture, convert to list\n if (textures instanceof Texture)\n {\n textures = [textures];\n }\n\n // Convert the input Texture, Textures or object\n // into a page Texture lookup by \"id\"\n for (var i = 0; i < pages.length; i++)\n {\n var id = pages[i].getAttribute('id');\n var file = pages[i].getAttribute('file');\n\n pagesTextures[id] = textures instanceof Array ? textures[i] : textures[file];\n }\n\n // parse letters\n var letters = xml.getElementsByTagName('char');\n\n for (var i$1 = 0; i$1 < letters.length; i$1++)\n {\n var letter = letters[i$1];\n var charCode = parseInt(letter.getAttribute('id'), 10);\n var page = letter.getAttribute('page') || 0;\n var textureRect = new Rectangle(\n (parseInt(letter.getAttribute('x'), 10) / res) + (pagesTextures[page].frame.x / res),\n (parseInt(letter.getAttribute('y'), 10) / res) + (pagesTextures[page].frame.y / res),\n parseInt(letter.getAttribute('width'), 10) / res,\n parseInt(letter.getAttribute('height'), 10) / res\n );\n\n data.chars[charCode] = {\n xOffset: parseInt(letter.getAttribute('xoffset'), 10) / res,\n yOffset: parseInt(letter.getAttribute('yoffset'), 10) / res,\n xAdvance: parseInt(letter.getAttribute('xadvance'), 10) / res,\n kerning: {},\n texture: new Texture(pagesTextures[page].baseTexture, textureRect),\n page: page,\n };\n }\n\n // parse kernings\n var kernings = xml.getElementsByTagName('kerning');\n\n for (var i$2 = 0; i$2 < kernings.length; i$2++)\n {\n var kerning = kernings[i$2];\n var first = parseInt(kerning.getAttribute('first'), 10) / res;\n var second = parseInt(kerning.getAttribute('second'), 10) / res;\n var amount = parseInt(kerning.getAttribute('amount'), 10) / res;\n\n if (data.chars[second])\n {\n data.chars[second].kerning[first] = amount;\n }\n }\n\n // I'm leaving this as a temporary fix so we can test the bitmap fonts in v3\n // but it's very likely to change\n BitmapText.fonts[data.font] = data;\n\n return data;\n };\n\n Object.defineProperties( BitmapText.prototype, prototypeAccessors );\n\n return BitmapText;\n}(Container));\n\nBitmapText.fonts = {};\n\n/**\n * {@link PIXI.Loader Loader} middleware for loading\n * bitmap-based fonts suitable for using with {@link PIXI.BitmapText}.\n * @class\n * @memberof PIXI\n * @implements PIXI.ILoaderPlugin\n */\nvar BitmapFontLoader = function BitmapFontLoader () {};\n\nBitmapFontLoader.parse = function parse (resource, texture)\n{\n resource.bitmapFont = BitmapText.registerFont(resource.data, texture);\n};\n\n/**\n * Called when the plugin is installed.\n *\n * @see PIXI.Loader.registerPlugin\n */\nBitmapFontLoader.add = function add ()\n{\n LoaderResource.setExtensionXhrType('fnt', LoaderResource.XHR_RESPONSE_TYPE.DOCUMENT);\n};\n\n/**\n * Replacement for NodeJS's path.dirname\n * @private\n * @param {string} url Path to get directory for\n */\nBitmapFontLoader.dirname = function dirname (url)\n{\n var dir = url\n .replace(/\\/$/, '') // replace trailing slash\n .replace(/\\/[^\\/]*$/, ''); // remove everything after the last\n\n // File request is relative, use current directory\n if (dir === url)\n {\n return '.';\n }\n // Started with a slash\n else if (dir === '')\n {\n return '/';\n }\n\n return dir;\n};\n\n/**\n * Called after a resource is loaded.\n * @see PIXI.Loader.loaderMiddleware\n * @param {PIXI.LoaderResource} resource\n * @param {function} next\n */\nBitmapFontLoader.use = function use (resource, next)\n{\n // skip if no data or not xml data\n if (!resource.data || resource.type !== LoaderResource.TYPE.XML)\n {\n next();\n\n return;\n }\n\n // skip if not bitmap font data, using some silly duck-typing\n if (resource.data.getElementsByTagName('page').length === 0\n || resource.data.getElementsByTagName('info').length === 0\n || resource.data.getElementsByTagName('info')[0].getAttribute('face') === null\n )\n {\n next();\n\n return;\n }\n\n var xmlUrl = !resource.isDataUrl ? BitmapFontLoader.dirname(resource.url) : '';\n\n if (resource.isDataUrl)\n {\n if (xmlUrl === '.')\n {\n xmlUrl = '';\n }\n\n if (this.baseUrl && xmlUrl)\n {\n // if baseurl has a trailing slash then add one to xmlUrl so the replace works below\n if (this.baseUrl.charAt(this.baseUrl.length - 1) === '/')\n {\n xmlUrl += '/';\n }\n }\n }\n\n // remove baseUrl from xmlUrl\n xmlUrl = xmlUrl.replace(this.baseUrl, '');\n\n // if there is an xmlUrl now, it needs a trailing slash. Ensure that it does if the string isn't empty.\n if (xmlUrl && xmlUrl.charAt(xmlUrl.length - 1) !== '/')\n {\n xmlUrl += '/';\n }\n\n var pages = resource.data.getElementsByTagName('page');\n var textures = {};\n\n // Handle completed, when the number of textures\n // load is the same number as references in the fnt file\n var completed = function (page) {\n textures[page.metadata.pageFile] = page.texture;\n\n if (Object.keys(textures).length === pages.length)\n {\n BitmapFontLoader.parse(resource, textures);\n next();\n }\n };\n\n for (var i = 0; i < pages.length; ++i)\n {\n var pageFile = pages[i].getAttribute('file');\n var url = xmlUrl + pageFile;\n var exists = false;\n\n // incase the image is loaded outside\n // using the same loader, resource will be available\n for (var name in this.resources)\n {\n var bitmapResource = this.resources[name];\n\n if (bitmapResource.url === url)\n {\n bitmapResource.metadata.pageFile = pageFile;\n if (bitmapResource.texture)\n {\n completed(bitmapResource);\n }\n else\n {\n bitmapResource.onAfterMiddleware.add(completed);\n }\n exists = true;\n break;\n }\n }\n\n // texture is not loaded, we'll attempt to add\n // it to the load and add the texture to the list\n if (!exists)\n {\n // Standard loading options for images\n var options = {\n crossOrigin: resource.crossOrigin,\n loadType: LoaderResource.LOAD_TYPE.IMAGE,\n metadata: Object.assign(\n { pageFile: pageFile },\n resource.metadata.imageMetadata\n ),\n parentResource: resource,\n };\n\n this.add(url, options, completed);\n }\n }\n};\n\nexport { BitmapFontLoader, BitmapText };\n//# sourceMappingURL=text-bitmap.es.js.map\n","/*!\n * @pixi/filter-color-matrix - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/filter-color-matrix is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { Filter, defaultFilterVertex } from '@pixi/core';\n\nvar fragment = \"varying vec2 vTextureCoord;\\nuniform sampler2D uSampler;\\nuniform float m[20];\\nuniform float uAlpha;\\n\\nvoid main(void)\\n{\\n vec4 c = texture2D(uSampler, vTextureCoord);\\n\\n if (uAlpha == 0.0) {\\n gl_FragColor = c;\\n return;\\n }\\n\\n // Un-premultiply alpha before applying the color matrix. See issue #3539.\\n if (c.a > 0.0) {\\n c.rgb /= c.a;\\n }\\n\\n vec4 result;\\n\\n result.r = (m[0] * c.r);\\n result.r += (m[1] * c.g);\\n result.r += (m[2] * c.b);\\n result.r += (m[3] * c.a);\\n result.r += m[4];\\n\\n result.g = (m[5] * c.r);\\n result.g += (m[6] * c.g);\\n result.g += (m[7] * c.b);\\n result.g += (m[8] * c.a);\\n result.g += m[9];\\n\\n result.b = (m[10] * c.r);\\n result.b += (m[11] * c.g);\\n result.b += (m[12] * c.b);\\n result.b += (m[13] * c.a);\\n result.b += m[14];\\n\\n result.a = (m[15] * c.r);\\n result.a += (m[16] * c.g);\\n result.a += (m[17] * c.b);\\n result.a += (m[18] * c.a);\\n result.a += m[19];\\n\\n vec3 rgb = mix(c.rgb, result.rgb, uAlpha);\\n\\n // Premultiply alpha again.\\n rgb *= result.a;\\n\\n gl_FragColor = vec4(rgb, result.a);\\n}\\n\";\n\n/**\n * The ColorMatrixFilter class lets you apply a 5x4 matrix transformation on the RGBA\n * color and alpha values of every pixel on your displayObject to produce a result\n * with a new set of RGBA color and alpha values. It's pretty powerful!\n *\n * ```js\n * let colorMatrix = new PIXI.filters.ColorMatrixFilter();\n * container.filters = [colorMatrix];\n * colorMatrix.contrast(2);\n * ```\n * @author Clément Chenebault \n * @class\n * @extends PIXI.Filter\n * @memberof PIXI.filters\n */\nvar ColorMatrixFilter = /*@__PURE__*/(function (Filter) {\n function ColorMatrixFilter()\n {\n var uniforms = {\n m: new Float32Array([1, 0, 0, 0, 0,\n 0, 1, 0, 0, 0,\n 0, 0, 1, 0, 0,\n 0, 0, 0, 1, 0]),\n uAlpha: 1,\n };\n\n Filter.call(this, defaultFilterVertex, fragment, uniforms);\n\n this.alpha = 1;\n }\n\n if ( Filter ) ColorMatrixFilter.__proto__ = Filter;\n ColorMatrixFilter.prototype = Object.create( Filter && Filter.prototype );\n ColorMatrixFilter.prototype.constructor = ColorMatrixFilter;\n\n var prototypeAccessors = { matrix: { configurable: true },alpha: { configurable: true } };\n\n /**\n * Transforms current matrix and set the new one\n *\n * @param {number[]} matrix - 5x4 matrix\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype._loadMatrix = function _loadMatrix (matrix, multiply)\n {\n if ( multiply === void 0 ) multiply = false;\n\n var newMatrix = matrix;\n\n if (multiply)\n {\n this._multiply(newMatrix, this.uniforms.m, matrix);\n newMatrix = this._colorMatrix(newMatrix);\n }\n\n // set the new matrix\n this.uniforms.m = newMatrix;\n };\n\n /**\n * Multiplies two mat5's\n *\n * @private\n * @param {number[]} out - 5x4 matrix the receiving matrix\n * @param {number[]} a - 5x4 matrix the first operand\n * @param {number[]} b - 5x4 matrix the second operand\n * @returns {number[]} 5x4 matrix\n */\n ColorMatrixFilter.prototype._multiply = function _multiply (out, a, b)\n {\n // Red Channel\n out[0] = (a[0] * b[0]) + (a[1] * b[5]) + (a[2] * b[10]) + (a[3] * b[15]);\n out[1] = (a[0] * b[1]) + (a[1] * b[6]) + (a[2] * b[11]) + (a[3] * b[16]);\n out[2] = (a[0] * b[2]) + (a[1] * b[7]) + (a[2] * b[12]) + (a[3] * b[17]);\n out[3] = (a[0] * b[3]) + (a[1] * b[8]) + (a[2] * b[13]) + (a[3] * b[18]);\n out[4] = (a[0] * b[4]) + (a[1] * b[9]) + (a[2] * b[14]) + (a[3] * b[19]) + a[4];\n\n // Green Channel\n out[5] = (a[5] * b[0]) + (a[6] * b[5]) + (a[7] * b[10]) + (a[8] * b[15]);\n out[6] = (a[5] * b[1]) + (a[6] * b[6]) + (a[7] * b[11]) + (a[8] * b[16]);\n out[7] = (a[5] * b[2]) + (a[6] * b[7]) + (a[7] * b[12]) + (a[8] * b[17]);\n out[8] = (a[5] * b[3]) + (a[6] * b[8]) + (a[7] * b[13]) + (a[8] * b[18]);\n out[9] = (a[5] * b[4]) + (a[6] * b[9]) + (a[7] * b[14]) + (a[8] * b[19]) + a[9];\n\n // Blue Channel\n out[10] = (a[10] * b[0]) + (a[11] * b[5]) + (a[12] * b[10]) + (a[13] * b[15]);\n out[11] = (a[10] * b[1]) + (a[11] * b[6]) + (a[12] * b[11]) + (a[13] * b[16]);\n out[12] = (a[10] * b[2]) + (a[11] * b[7]) + (a[12] * b[12]) + (a[13] * b[17]);\n out[13] = (a[10] * b[3]) + (a[11] * b[8]) + (a[12] * b[13]) + (a[13] * b[18]);\n out[14] = (a[10] * b[4]) + (a[11] * b[9]) + (a[12] * b[14]) + (a[13] * b[19]) + a[14];\n\n // Alpha Channel\n out[15] = (a[15] * b[0]) + (a[16] * b[5]) + (a[17] * b[10]) + (a[18] * b[15]);\n out[16] = (a[15] * b[1]) + (a[16] * b[6]) + (a[17] * b[11]) + (a[18] * b[16]);\n out[17] = (a[15] * b[2]) + (a[16] * b[7]) + (a[17] * b[12]) + (a[18] * b[17]);\n out[18] = (a[15] * b[3]) + (a[16] * b[8]) + (a[17] * b[13]) + (a[18] * b[18]);\n out[19] = (a[15] * b[4]) + (a[16] * b[9]) + (a[17] * b[14]) + (a[18] * b[19]) + a[19];\n\n return out;\n };\n\n /**\n * Create a Float32 Array and normalize the offset component to 0-1\n *\n * @private\n * @param {number[]} matrix - 5x4 matrix\n * @return {number[]} 5x4 matrix with all values between 0-1\n */\n ColorMatrixFilter.prototype._colorMatrix = function _colorMatrix (matrix)\n {\n // Create a Float32 Array and normalize the offset component to 0-1\n var m = new Float32Array(matrix);\n\n m[4] /= 255;\n m[9] /= 255;\n m[14] /= 255;\n m[19] /= 255;\n\n return m;\n };\n\n /**\n * Adjusts brightness\n *\n * @param {number} b - value of the brigthness (0-1, where 0 is black)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.brightness = function brightness (b, multiply)\n {\n var matrix = [\n b, 0, 0, 0, 0,\n 0, b, 0, 0, 0,\n 0, 0, b, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the matrices in grey scales\n *\n * @param {number} scale - value of the grey (0-1, where 0 is black)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.greyscale = function greyscale (scale, multiply)\n {\n var matrix = [\n scale, scale, scale, 0, 0,\n scale, scale, scale, 0, 0,\n scale, scale, scale, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the black and white matrice.\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.blackAndWhite = function blackAndWhite (multiply)\n {\n var matrix = [\n 0.3, 0.6, 0.1, 0, 0,\n 0.3, 0.6, 0.1, 0, 0,\n 0.3, 0.6, 0.1, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the hue property of the color\n *\n * @param {number} rotation - in degrees\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.hue = function hue (rotation, multiply)\n {\n rotation = (rotation || 0) / 180 * Math.PI;\n\n var cosR = Math.cos(rotation);\n var sinR = Math.sin(rotation);\n var sqrt = Math.sqrt;\n\n /* a good approximation for hue rotation\n This matrix is far better than the versions with magic luminance constants\n formerly used here, but also used in the starling framework (flash) and known from this\n old part of the internet: quasimondo.com/archives/000565.php\n\n This new matrix is based on rgb cube rotation in space. Look here for a more descriptive\n implementation as a shader not a general matrix:\n https://github.com/evanw/glfx.js/blob/58841c23919bd59787effc0333a4897b43835412/src/filters/adjust/huesaturation.js\n\n This is the source for the code:\n see http://stackoverflow.com/questions/8507885/shift-hue-of-an-rgb-color/8510751#8510751\n */\n\n var w = 1 / 3;\n var sqrW = sqrt(w); // weight is\n\n var a00 = cosR + ((1.0 - cosR) * w);\n var a01 = (w * (1.0 - cosR)) - (sqrW * sinR);\n var a02 = (w * (1.0 - cosR)) + (sqrW * sinR);\n\n var a10 = (w * (1.0 - cosR)) + (sqrW * sinR);\n var a11 = cosR + (w * (1.0 - cosR));\n var a12 = (w * (1.0 - cosR)) - (sqrW * sinR);\n\n var a20 = (w * (1.0 - cosR)) - (sqrW * sinR);\n var a21 = (w * (1.0 - cosR)) + (sqrW * sinR);\n var a22 = cosR + (w * (1.0 - cosR));\n\n var matrix = [\n a00, a01, a02, 0, 0,\n a10, a11, a12, 0, 0,\n a20, a21, a22, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the contrast matrix, increase the separation between dark and bright\n * Increase contrast : shadows darker and highlights brighter\n * Decrease contrast : bring the shadows up and the highlights down\n *\n * @param {number} amount - value of the contrast (0-1)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.contrast = function contrast (amount, multiply)\n {\n var v = (amount || 0) + 1;\n var o = -0.5 * (v - 1);\n\n var matrix = [\n v, 0, 0, 0, o,\n 0, v, 0, 0, o,\n 0, 0, v, 0, o,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Set the saturation matrix, increase the separation between colors\n * Increase saturation : increase contrast, brightness, and sharpness\n *\n * @param {number} amount - The saturation amount (0-1)\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.saturate = function saturate (amount, multiply)\n {\n if ( amount === void 0 ) amount = 0;\n\n var x = (amount * 2 / 3) + 1;\n var y = ((x - 1) * -0.5);\n\n var matrix = [\n x, y, y, 0, 0,\n y, x, y, 0, 0,\n y, y, x, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Desaturate image (remove color)\n *\n * Call the saturate function\n *\n */\n ColorMatrixFilter.prototype.desaturate = function desaturate () // eslint-disable-line no-unused-vars\n {\n this.saturate(-1);\n };\n\n /**\n * Negative image (inverse of classic rgb matrix)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.negative = function negative (multiply)\n {\n var matrix = [\n -1, 0, 0, 1, 0,\n 0, -1, 0, 1, 0,\n 0, 0, -1, 1, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Sepia image\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.sepia = function sepia (multiply)\n {\n var matrix = [\n 0.393, 0.7689999, 0.18899999, 0, 0,\n 0.349, 0.6859999, 0.16799999, 0, 0,\n 0.272, 0.5339999, 0.13099999, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Color motion picture process invented in 1916 (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.technicolor = function technicolor (multiply)\n {\n var matrix = [\n 1.9125277891456083, -0.8545344976951645, -0.09155508482755585, 0, 11.793603434377337,\n -0.3087833385928097, 1.7658908555458428, -0.10601743074722245, 0, -70.35205161461398,\n -0.231103377548616, -0.7501899197440212, 1.847597816108189, 0, 30.950940869491138,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Polaroid filter\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.polaroid = function polaroid (multiply)\n {\n var matrix = [\n 1.438, -0.062, -0.062, 0, 0,\n -0.122, 1.378, -0.122, 0, 0,\n -0.016, -0.016, 1.483, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Filter who transforms : Red -> Blue and Blue -> Red\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.toBGR = function toBGR (multiply)\n {\n var matrix = [\n 0, 0, 1, 0, 0,\n 0, 1, 0, 0, 0,\n 1, 0, 0, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Color reversal film introduced by Eastman Kodak in 1935. (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.kodachrome = function kodachrome (multiply)\n {\n var matrix = [\n 1.1285582396593525, -0.3967382283601348, -0.03992559172921793, 0, 63.72958762196502,\n -0.16404339962244616, 1.0835251566291304, -0.05498805115633132, 0, 24.732407896706203,\n -0.16786010706155763, -0.5603416277695248, 1.6014850761964943, 0, 35.62982807460946,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Brown delicious browni filter (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.browni = function browni (multiply)\n {\n var matrix = [\n 0.5997023498159715, 0.34553243048391263, -0.2708298674538042, 0, 47.43192855600873,\n -0.037703249837783157, 0.8609577587992641, 0.15059552388459913, 0, -36.96841498319127,\n 0.24113635128153335, -0.07441037908422492, 0.44972182064877153, 0, -7.562075277591283,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Vintage filter (thanks Dominic Szablewski)\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.vintage = function vintage (multiply)\n {\n var matrix = [\n 0.6279345635605994, 0.3202183420819367, -0.03965408211312453, 0, 9.651285835294123,\n 0.02578397704808868, 0.6441188644374771, 0.03259127616149294, 0, 7.462829176470591,\n 0.0466055556782719, -0.0851232987247891, 0.5241648018700465, 0, 5.159190588235296,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * We don't know exactly what it does, kind of gradient map, but funny to play with!\n *\n * @param {number} desaturation - Tone values.\n * @param {number} toned - Tone values.\n * @param {string} lightColor - Tone values, example: `0xFFE580`\n * @param {string} darkColor - Tone values, example: `0xFFE580`\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.colorTone = function colorTone (desaturation, toned, lightColor, darkColor, multiply)\n {\n desaturation = desaturation || 0.2;\n toned = toned || 0.15;\n lightColor = lightColor || 0xFFE580;\n darkColor = darkColor || 0x338000;\n\n var lR = ((lightColor >> 16) & 0xFF) / 255;\n var lG = ((lightColor >> 8) & 0xFF) / 255;\n var lB = (lightColor & 0xFF) / 255;\n\n var dR = ((darkColor >> 16) & 0xFF) / 255;\n var dG = ((darkColor >> 8) & 0xFF) / 255;\n var dB = (darkColor & 0xFF) / 255;\n\n var matrix = [\n 0.3, 0.59, 0.11, 0, 0,\n lR, lG, lB, desaturation, 0,\n dR, dG, dB, toned, 0,\n lR - dR, lG - dG, lB - dB, 0, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Night effect\n *\n * @param {number} intensity - The intensity of the night effect.\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.night = function night (intensity, multiply)\n {\n intensity = intensity || 0.1;\n var matrix = [\n intensity * (-2.0), -intensity, 0, 0, 0,\n -intensity, 0, intensity, 0, 0,\n 0, intensity, intensity * 2.0, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Predator effect\n *\n * Erase the current matrix by setting a new indepent one\n *\n * @param {number} amount - how much the predator feels his future victim\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.predator = function predator (amount, multiply)\n {\n var matrix = [\n // row 1\n 11.224130630493164 * amount,\n -4.794486999511719 * amount,\n -2.8746118545532227 * amount,\n 0 * amount,\n 0.40342438220977783 * amount,\n // row 2\n -3.6330697536468506 * amount,\n 9.193157196044922 * amount,\n -2.951810836791992 * amount,\n 0 * amount,\n -1.316135048866272 * amount,\n // row 3\n -3.2184197902679443 * amount,\n -4.2375030517578125 * amount,\n 7.476448059082031 * amount,\n 0 * amount,\n 0.8044459223747253 * amount,\n // row 4\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * LSD effect\n *\n * Multiply the current matrix\n *\n * @param {boolean} multiply - if true, current matrix and matrix are multiplied. If false,\n * just set the current matrix with @param matrix\n */\n ColorMatrixFilter.prototype.lsd = function lsd (multiply)\n {\n var matrix = [\n 2, -0.4, 0.5, 0, 0,\n -0.5, 2, -0.4, 0, 0,\n -0.4, -0.5, 3, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, multiply);\n };\n\n /**\n * Erase the current matrix by setting the default one\n *\n */\n ColorMatrixFilter.prototype.reset = function reset ()\n {\n var matrix = [\n 1, 0, 0, 0, 0,\n 0, 1, 0, 0, 0,\n 0, 0, 1, 0, 0,\n 0, 0, 0, 1, 0 ];\n\n this._loadMatrix(matrix, false);\n };\n\n /**\n * The matrix of the color matrix filter\n *\n * @member {number[]}\n * @default [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]\n */\n prototypeAccessors.matrix.get = function ()\n {\n return this.uniforms.m;\n };\n\n prototypeAccessors.matrix.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uniforms.m = value;\n };\n\n /**\n * The opacity value to use when mixing the original and resultant colors.\n *\n * When the value is 0, the original color is used without modification.\n * When the value is 1, the result color is used.\n * When in the range (0, 1) the color is interpolated between the original and result by this amount.\n *\n * @member {number}\n * @default 1\n */\n prototypeAccessors.alpha.get = function ()\n {\n return this.uniforms.uAlpha;\n };\n\n prototypeAccessors.alpha.set = function (value) // eslint-disable-line require-jsdoc\n {\n this.uniforms.uAlpha = value;\n };\n\n Object.defineProperties( ColorMatrixFilter.prototype, prototypeAccessors );\n\n return ColorMatrixFilter;\n}(Filter));\n\n// Americanized alias\nColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale;\n\nexport { ColorMatrixFilter };\n//# sourceMappingURL=filter-color-matrix.es.js.map\n","/*!\n * @pixi/mixin-cache-as-bitmap - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/mixin-cache-as-bitmap is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { RenderTexture, BaseTexture, Texture } from '@pixi/core';\nimport { Sprite } from '@pixi/sprite';\nimport { DisplayObject } from '@pixi/display';\nimport { Matrix } from '@pixi/math';\nimport { uid } from '@pixi/utils';\nimport { settings } from '@pixi/settings';\n\nvar _tempMatrix = new Matrix();\n\nDisplayObject.prototype._cacheAsBitmap = false;\nDisplayObject.prototype._cacheData = false;\n\n// figured theres no point adding ALL the extra variables to prototype.\n// this model can hold the information needed. This can also be generated on demand as\n// most objects are not cached as bitmaps.\n/**\n * @class\n * @ignore\n */\nvar CacheData = function CacheData()\n{\n this.textureCacheId = null;\n\n this.originalRender = null;\n this.originalRenderCanvas = null;\n this.originalCalculateBounds = null;\n this.originalGetLocalBounds = null;\n\n this.originalUpdateTransform = null;\n this.originalHitTest = null;\n this.originalDestroy = null;\n this.originalMask = null;\n this.originalFilterArea = null;\n this.sprite = null;\n};\n\nObject.defineProperties(DisplayObject.prototype, {\n /**\n * Set this to true if you want this display object to be cached as a bitmap.\n * This basically takes a snap shot of the display object as it is at that moment. It can\n * provide a performance benefit for complex static displayObjects.\n * To remove simply set this property to `false`\n *\n * IMPORTANT GOTCHA - Make sure that all your textures are preloaded BEFORE setting this property to true\n * as it will take a snapshot of what is currently there. If the textures have not loaded then they will not appear.\n *\n * @member {boolean}\n * @memberof PIXI.DisplayObject#\n */\n cacheAsBitmap: {\n get: function get()\n {\n return this._cacheAsBitmap;\n },\n set: function set(value)\n {\n if (this._cacheAsBitmap === value)\n {\n return;\n }\n\n this._cacheAsBitmap = value;\n\n var data;\n\n if (value)\n {\n if (!this._cacheData)\n {\n this._cacheData = new CacheData();\n }\n\n data = this._cacheData;\n\n data.originalRender = this.render;\n data.originalRenderCanvas = this.renderCanvas;\n\n data.originalUpdateTransform = this.updateTransform;\n data.originalCalculateBounds = this.calculateBounds;\n data.originalGetLocalBounds = this.getLocalBounds;\n\n data.originalDestroy = this.destroy;\n\n data.originalContainsPoint = this.containsPoint;\n\n data.originalMask = this._mask;\n data.originalFilterArea = this.filterArea;\n\n this.render = this._renderCached;\n this.renderCanvas = this._renderCachedCanvas;\n\n this.destroy = this._cacheAsBitmapDestroy;\n }\n else\n {\n data = this._cacheData;\n\n if (data.sprite)\n {\n this._destroyCachedDisplayObject();\n }\n\n this.render = data.originalRender;\n this.renderCanvas = data.originalRenderCanvas;\n this.calculateBounds = data.originalCalculateBounds;\n this.getLocalBounds = data.originalGetLocalBounds;\n\n this.destroy = data.originalDestroy;\n\n this.updateTransform = data.originalUpdateTransform;\n this.containsPoint = data.originalContainsPoint;\n\n this._mask = data.originalMask;\n this.filterArea = data.originalFilterArea;\n }\n },\n },\n});\n\n/**\n * Renders a cached version of the sprite with WebGL\n *\n * @private\n * @function _renderCached\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._renderCached = function _renderCached(renderer)\n{\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n this._initCachedDisplayObject(renderer);\n\n this._cacheData.sprite.transform._worldID = this.transform._worldID;\n this._cacheData.sprite.worldAlpha = this.worldAlpha;\n this._cacheData.sprite._render(renderer);\n};\n\n/**\n * Prepares the WebGL renderer to cache the sprite\n *\n * @private\n * @function _initCachedDisplayObject\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._initCachedDisplayObject = function _initCachedDisplayObject(renderer)\n{\n if (this._cacheData && this._cacheData.sprite)\n {\n return;\n }\n\n // make sure alpha is set to 1 otherwise it will get rendered as invisible!\n var cacheAlpha = this.alpha;\n\n this.alpha = 1;\n\n // first we flush anything left in the renderer (otherwise it would get rendered to the cached texture)\n renderer.batch.flush();\n // this.filters= [];\n\n // next we find the dimensions of the untransformed object\n // this function also calls updatetransform on all its children as part of the measuring.\n // This means we don't need to update the transform again in this function\n // TODO pass an object to clone too? saves having to create a new one each time!\n var bounds = this.getLocalBounds().clone();\n\n // add some padding!\n if (this.filters)\n {\n var padding = this.filters[0].padding;\n\n bounds.pad(padding);\n }\n\n bounds.ceil(settings.RESOLUTION);\n\n // for now we cache the current renderTarget that the WebGL renderer is currently using.\n // this could be more elegant..\n var cachedRenderTexture = renderer.renderTexture.current;\n var cachedSourceFrame = renderer.renderTexture.sourceFrame;\n var cachedProjectionTransform = renderer.projection.transform;\n\n // We also store the filter stack - I will definitely look to change how this works a little later down the line.\n // const stack = renderer.filterManager.filterStack;\n\n // this renderTexture will be used to store the cached DisplayObject\n var renderTexture = RenderTexture.create(bounds.width, bounds.height);\n\n var textureCacheId = \"cacheAsBitmap_\" + (uid());\n\n this._cacheData.textureCacheId = textureCacheId;\n\n BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId);\n Texture.addToCache(renderTexture, textureCacheId);\n\n // need to set //\n var m = _tempMatrix;\n\n m.tx = -bounds.x;\n m.ty = -bounds.y;\n\n // reset\n this.transform.worldTransform.identity();\n\n // set all properties to there original so we can render to a texture\n this.render = this._cacheData.originalRender;\n\n renderer.render(this, renderTexture, true, m, true);\n\n // now restore the state be setting the new properties\n renderer.projection.transform = cachedProjectionTransform;\n renderer.renderTexture.bind(cachedRenderTexture, cachedSourceFrame);\n\n // renderer.filterManager.filterStack = stack;\n\n this.render = this._renderCached;\n // the rest is the same as for Canvas\n this.updateTransform = this.displayObjectUpdateTransform;\n this.calculateBounds = this._calculateCachedBounds;\n this.getLocalBounds = this._getCachedLocalBounds;\n\n this._mask = null;\n this.filterArea = null;\n\n // create our cached sprite\n var cachedSprite = new Sprite(renderTexture);\n\n cachedSprite.transform.worldTransform = this.transform.worldTransform;\n cachedSprite.anchor.x = -(bounds.x / bounds.width);\n cachedSprite.anchor.y = -(bounds.y / bounds.height);\n cachedSprite.alpha = cacheAlpha;\n cachedSprite._bounds = this._bounds;\n\n this._cacheData.sprite = cachedSprite;\n\n this.transform._parentID = -1;\n // restore the transform of the cached sprite to avoid the nasty flicker..\n if (!this.parent)\n {\n this.parent = renderer._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this.updateTransform();\n }\n\n // map the hit test..\n this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite);\n};\n\n/**\n * Renders a cached version of the sprite with canvas\n *\n * @private\n * @function _renderCachedCanvas\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._renderCachedCanvas = function _renderCachedCanvas(renderer)\n{\n if (!this.visible || this.worldAlpha <= 0 || !this.renderable)\n {\n return;\n }\n\n this._initCachedDisplayObjectCanvas(renderer);\n\n this._cacheData.sprite.worldAlpha = this.worldAlpha;\n this._cacheData.sprite._renderCanvas(renderer);\n};\n\n// TODO this can be the same as the WebGL version.. will need to do a little tweaking first though..\n/**\n * Prepares the Canvas renderer to cache the sprite\n *\n * @private\n * @function _initCachedDisplayObjectCanvas\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Renderer} renderer - the WebGL renderer\n */\nDisplayObject.prototype._initCachedDisplayObjectCanvas = function _initCachedDisplayObjectCanvas(renderer)\n{\n if (this._cacheData && this._cacheData.sprite)\n {\n return;\n }\n\n // get bounds actually transforms the object for us already!\n var bounds = this.getLocalBounds();\n\n var cacheAlpha = this.alpha;\n\n this.alpha = 1;\n\n var cachedRenderTarget = renderer.context;\n\n bounds.ceil(settings.RESOLUTION);\n\n var renderTexture = RenderTexture.create(bounds.width, bounds.height);\n\n var textureCacheId = \"cacheAsBitmap_\" + (uid());\n\n this._cacheData.textureCacheId = textureCacheId;\n\n BaseTexture.addToCache(renderTexture.baseTexture, textureCacheId);\n Texture.addToCache(renderTexture, textureCacheId);\n\n // need to set //\n var m = _tempMatrix;\n\n this.transform.localTransform.copyTo(m);\n m.invert();\n\n m.tx -= bounds.x;\n m.ty -= bounds.y;\n\n // m.append(this.transform.worldTransform.)\n // set all properties to there original so we can render to a texture\n this.renderCanvas = this._cacheData.originalRenderCanvas;\n\n // renderTexture.render(this, m, true);\n renderer.render(this, renderTexture, true, m, false);\n\n // now restore the state be setting the new properties\n renderer.context = cachedRenderTarget;\n\n this.renderCanvas = this._renderCachedCanvas;\n // the rest is the same as for WebGL\n this.updateTransform = this.displayObjectUpdateTransform;\n this.calculateBounds = this._calculateCachedBounds;\n this.getLocalBounds = this._getCachedLocalBounds;\n\n this._mask = null;\n this.filterArea = null;\n\n // create our cached sprite\n var cachedSprite = new Sprite(renderTexture);\n\n cachedSprite.transform.worldTransform = this.transform.worldTransform;\n cachedSprite.anchor.x = -(bounds.x / bounds.width);\n cachedSprite.anchor.y = -(bounds.y / bounds.height);\n cachedSprite.alpha = cacheAlpha;\n cachedSprite._bounds = this._bounds;\n\n this._cacheData.sprite = cachedSprite;\n\n this.transform._parentID = -1;\n // restore the transform of the cached sprite to avoid the nasty flicker..\n if (!this.parent)\n {\n this.parent = renderer._tempDisplayObjectParent;\n this.updateTransform();\n this.parent = null;\n }\n else\n {\n this.updateTransform();\n }\n\n // map the hit test..\n this.containsPoint = cachedSprite.containsPoint.bind(cachedSprite);\n};\n\n/**\n * Calculates the bounds of the cached sprite\n *\n * @private\n */\nDisplayObject.prototype._calculateCachedBounds = function _calculateCachedBounds()\n{\n this._bounds.clear();\n this._cacheData.sprite.transform._worldID = this.transform._worldID;\n this._cacheData.sprite._calculateBounds();\n this._lastBoundsID = this._boundsID;\n};\n\n/**\n * Gets the bounds of the cached sprite.\n *\n * @private\n * @return {Rectangle} The local bounds.\n */\nDisplayObject.prototype._getCachedLocalBounds = function _getCachedLocalBounds()\n{\n return this._cacheData.sprite.getLocalBounds();\n};\n\n/**\n * Destroys the cached sprite.\n *\n * @private\n */\nDisplayObject.prototype._destroyCachedDisplayObject = function _destroyCachedDisplayObject()\n{\n this._cacheData.sprite._texture.destroy(true);\n this._cacheData.sprite = null;\n\n BaseTexture.removeFromCache(this._cacheData.textureCacheId);\n Texture.removeFromCache(this._cacheData.textureCacheId);\n\n this._cacheData.textureCacheId = null;\n};\n\n/**\n * Destroys the cached object.\n *\n * @private\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all options\n * have been set to that value.\n * Used when destroying containers, see the Container.destroy method.\n */\nDisplayObject.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy(options)\n{\n this.cacheAsBitmap = false;\n this.destroy(options);\n};\n//# sourceMappingURL=mixin-cache-as-bitmap.es.js.map\n","/*!\n * @pixi/mixin-get-child-by-name - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/mixin-get-child-by-name is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { DisplayObject, Container } from '@pixi/display';\n\n/**\n * The instance name of the object.\n *\n * @memberof PIXI.DisplayObject#\n * @member {string} name\n */\nDisplayObject.prototype.name = null;\n\n/**\n * Returns the display object in the container.\n *\n * @method getChildByName\n * @memberof PIXI.Container#\n * @param {string} name - Instance name.\n * @return {PIXI.DisplayObject} The child with the specified name.\n */\nContainer.prototype.getChildByName = function getChildByName(name)\n{\n for (var i = 0; i < this.children.length; i++)\n {\n if (this.children[i].name === name)\n {\n return this.children[i];\n }\n }\n\n return null;\n};\n//# sourceMappingURL=mixin-get-child-by-name.es.js.map\n","/*!\n * @pixi/mixin-get-global-position - v5.1.3\n * Compiled Mon, 09 Sep 2019 04:51:53 UTC\n *\n * @pixi/mixin-get-global-position is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { DisplayObject } from '@pixi/display';\nimport { Point } from '@pixi/math';\n\n/**\n * Returns the global position of the displayObject. Does not depend on object scale, rotation and pivot.\n *\n * @method getGlobalPosition\n * @memberof PIXI.DisplayObject#\n * @param {PIXI.Point} [point=new PIXI.Point()] - The point to write the global value to.\n * @param {boolean} [skipUpdate=false] - Setting to true will stop the transforms of the scene graph from\n * being updated. This means the calculation returned MAY be out of date BUT will give you a\n * nice performance boost.\n * @return {PIXI.Point} The updated point.\n */\nDisplayObject.prototype.getGlobalPosition = function getGlobalPosition(point, skipUpdate)\n{\n if ( point === void 0 ) point = new Point();\n if ( skipUpdate === void 0 ) skipUpdate = false;\n\n if (this.parent)\n {\n this.parent.toGlobal(this.position, point, skipUpdate);\n }\n else\n {\n point.x = this.position.x;\n point.y = this.position.y;\n }\n\n return point;\n};\n//# sourceMappingURL=mixin-get-global-position.es.js.map\n","/*!\n * @pixi/mesh - v5.1.5\n * Compiled Tue, 24 Sep 2019 04:07:05 UTC\n *\n * @pixi/mesh is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport { State, Shader, Program, TextureMatrix, Geometry, Buffer } from '@pixi/core';\nimport { Point, Polygon, Matrix } from '@pixi/math';\nimport { DRAW_MODES, BLEND_MODES, TYPES } from '@pixi/constants';\nimport { Container } from '@pixi/display';\nimport { settings } from '@pixi/settings';\nimport { premultiplyTintToRgba } from '@pixi/utils';\n\n/**\n * Class controls cache for UV mapping from Texture normal space to BaseTexture normal space.\n *\n * @class\n * @memberof PIXI\n */\nvar MeshBatchUvs = function MeshBatchUvs(uvBuffer, uvMatrix)\n{\n /**\n * Buffer with normalized UV's\n * @member {PIXI.Buffer}\n */\n this.uvBuffer = uvBuffer;\n\n /**\n * Material UV matrix\n * @member {PIXI.TextureMatrix}\n */\n this.uvMatrix = uvMatrix;\n\n /**\n * UV Buffer data\n * @member {Float32Array}\n * @readonly\n */\n this.data = null;\n\n this._bufferUpdateId = -1;\n\n this._textureUpdateId = -1;\n\n this._updateID = 0;\n};\n\n/**\n * updates\n *\n * @param {boolean} forceUpdate - force the update\n */\nMeshBatchUvs.prototype.update = function update (forceUpdate)\n{\n if (!forceUpdate\n && this._bufferUpdateId === this.uvBuffer._updateID\n && this._textureUpdateId === this.uvMatrix._updateID)\n {\n return;\n }\n\n this._bufferUpdateId = this.uvBuffer._updateID;\n this._textureUpdateId = this.uvMatrix._updateID;\n\n var data = this.uvBuffer.data;\n\n if (!this.data || this.data.length !== data.length)\n {\n this.data = new Float32Array(data.length);\n }\n\n this.uvMatrix.multiplyUvs(data, this.data);\n\n this._updateID++;\n};\n\nvar tempPoint = new Point();\nvar tempPolygon = new Polygon();\n\n/**\n * Base mesh class.\n *\n * This class empowers you to have maximum flexibility to render any kind of WebGL visuals you can think of.\n * This class assumes a certain level of WebGL knowledge.\n * If you know a bit this should abstract enough away to make you life easier!\n *\n * Pretty much ALL WebGL can be broken down into the following:\n * - Geometry - The structure and data for the mesh. This can include anything from positions, uvs, normals, colors etc..\n * - Shader - This is the shader that PixiJS will render the geometry with (attributes in the shader must match the geometry)\n * - State - This is the state of WebGL required to render the mesh.\n *\n * Through a combination of the above elements you can render anything you want, 2D or 3D!\n *\n * @class\n * @extends PIXI.Container\n * @memberof PIXI\n */\nvar Mesh = /*@__PURE__*/(function (Container) {\n function Mesh(geometry, shader, state, drawMode)// vertices, uvs, indices, drawMode)\n {\n if ( drawMode === void 0 ) drawMode = DRAW_MODES.TRIANGLES;\n\n Container.call(this);\n\n /**\n * Includes vertex positions, face indices, normals, colors, UVs, and\n * custom attributes within buffers, reducing the cost of passing all\n * this data to the GPU. Can be shared between multiple Mesh objects.\n * @member {PIXI.Geometry}\n * @readonly\n */\n this.geometry = geometry;\n\n geometry.refCount++;\n\n /**\n * Represents the vertex and fragment shaders that processes the geometry and runs on the GPU.\n * Can be shared between multiple Mesh objects.\n * @member {PIXI.Shader|PIXI.MeshMaterial}\n */\n this.shader = shader;\n\n /**\n * Represents the WebGL state the Mesh required to render, excludes shader and geometry. E.g.,\n * blend mode, culling, depth testing, direction of rendering triangles, backface, etc.\n * @member {PIXI.State}\n */\n this.state = state || State.for2d();\n\n /**\n * The way the Mesh should be drawn, can be any of the {@link PIXI.DRAW_MODES} constants.\n *\n * @member {number}\n * @see PIXI.DRAW_MODES\n */\n this.drawMode = drawMode;\n\n /**\n * Typically the index of the IndexBuffer where to start drawing.\n * @member {number}\n * @default 0\n */\n this.start = 0;\n\n /**\n * How much of the geometry to draw, by default `0` renders everything.\n * @member {number}\n * @default 0\n */\n this.size = 0;\n\n /**\n * thease are used as easy access for batching\n * @member {Float32Array}\n * @private\n */\n this.uvs = null;\n\n /**\n * thease are used as easy access for batching\n * @member {Uint16Array}\n * @private\n */\n this.indices = null;\n\n /**\n * this is the caching layer used by the batcher\n * @member {Float32Array}\n * @private\n */\n this.vertexData = new Float32Array(1);\n\n /**\n * If geometry is changed used to decide to re-transform\n * the vertexData.\n * @member {number}\n * @private\n */\n this.vertexDirty = 0;\n\n this._transformID = -1;\n\n // Inherited from DisplayMode, set defaults\n this.tint = 0xFFFFFF;\n this.blendMode = BLEND_MODES.NORMAL;\n\n /**\n * Internal roundPixels field\n *\n * @member {boolean}\n * @private\n */\n this._roundPixels = settings.ROUND_PIXELS;\n\n /**\n * Batched UV's are cached for atlas textures\n * @member {PIXI.MeshBatchUvs}\n * @private\n */\n this.batchUvs = null;\n }\n\n if ( Container ) Mesh.__proto__ = Container;\n Mesh.prototype = Object.create( Container && Container.prototype );\n Mesh.prototype.constructor = Mesh;\n\n var prototypeAccessors = { uvBuffer: { configurable: true },verticesBuffer: { configurable: true },material: { configurable: true },blendMode: { configurable: true },roundPixels: { configurable: true },tint: { configurable: true },texture: { configurable: true } };\n\n /**\n * To change mesh uv's, change its uvBuffer data and increment its _updateID.\n * @member {PIXI.Buffer}\n * @readonly\n */\n prototypeAccessors.uvBuffer.get = function ()\n {\n return this.geometry.buffers[1];\n };\n\n /**\n * To change mesh vertices, change its uvBuffer data and increment its _updateID.\n * Incrementing _updateID is optional because most of Mesh objects do it anyway.\n * @member {PIXI.Buffer}\n * @readonly\n */\n prototypeAccessors.verticesBuffer.get = function ()\n {\n return this.geometry.buffers[0];\n };\n\n /**\n * Alias for {@link PIXI.Mesh#shader}.\n * @member {PIXI.Shader|PIXI.MeshMaterial}\n */\n prototypeAccessors.material.set = function (value)\n {\n this.shader = value;\n };\n\n prototypeAccessors.material.get = function ()\n {\n return this.shader;\n };\n\n /**\n * The blend mode to be applied to the Mesh. Apply a value of\n * `PIXI.BLEND_MODES.NORMAL` to reset the blend mode.\n *\n * @member {number}\n * @default PIXI.BLEND_MODES.NORMAL;\n * @see PIXI.BLEND_MODES\n */\n prototypeAccessors.blendMode.set = function (value)\n {\n this.state.blendMode = value;\n };\n\n prototypeAccessors.blendMode.get = function ()\n {\n return this.state.blendMode;\n };\n\n /**\n * If true PixiJS will Math.floor() x/y values when rendering, stopping pixel interpolation.\n * Advantages can include sharper image quality (like text) and faster rendering on canvas.\n * The main disadvantage is movement of objects may appear less smooth.\n * To set the global default, change {@link PIXI.settings.ROUND_PIXELS}\n *\n * @member {boolean}\n * @default false\n */\n prototypeAccessors.roundPixels.set = function (value)\n {\n if (this._roundPixels !== value)\n {\n this._transformID = -1;\n }\n this._roundPixels = value;\n };\n\n prototypeAccessors.roundPixels.get = function ()\n {\n return this._roundPixels;\n };\n\n /**\n * The multiply tint applied to the Mesh. This is a hex value. A value of\n * `0xFFFFFF` will remove any tint effect.\n *\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.get = function ()\n {\n return this.shader.tint;\n };\n\n prototypeAccessors.tint.set = function (value)\n {\n this.shader.tint = value;\n };\n\n /**\n * The texture that the Mesh uses.\n *\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this.shader.texture;\n };\n\n prototypeAccessors.texture.set = function (value)\n {\n this.shader.texture = value;\n };\n\n /**\n * Standard renderer draw.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._render = function _render (renderer)\n {\n // set properties for batching..\n // TODO could use a different way to grab verts?\n var vertices = this.geometry.buffers[0].data;\n\n // TODO benchmark check for attribute size..\n if (this.shader.batchable && this.drawMode === DRAW_MODES.TRIANGLES && vertices.length < Mesh.BATCHABLE_SIZE * 2)\n {\n this._renderToBatch(renderer);\n }\n else\n {\n this._renderDefault(renderer);\n }\n };\n\n /**\n * Standard non-batching way of rendering.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._renderDefault = function _renderDefault (renderer)\n {\n var shader = this.shader;\n\n shader.alpha = this.worldAlpha;\n if (shader.update)\n {\n shader.update();\n }\n\n renderer.batch.flush();\n\n if (shader.program.uniformData.translationMatrix)\n {\n shader.uniforms.translationMatrix = this.transform.worldTransform.toArray(true);\n }\n\n // bind and sync uniforms..\n renderer.shader.bind(shader);\n\n // set state..\n renderer.state.set(this.state);\n\n // bind the geometry...\n renderer.geometry.bind(this.geometry, shader);\n\n // then render it\n renderer.geometry.draw(this.drawMode, this.size, this.start, this.geometry.instanceCount);\n };\n\n /**\n * Rendering by using the Batch system.\n * @protected\n * @param {PIXI.Renderer} renderer - Instance to renderer.\n */\n Mesh.prototype._renderToBatch = function _renderToBatch (renderer)\n {\n var geometry = this.geometry;\n\n if (this.shader.uvMatrix)\n {\n this.shader.uvMatrix.update();\n this.calculateUvs();\n }\n\n // set properties for batching..\n this.calculateVertices();\n this.indices = geometry.indexBuffer.data;\n this._tintRGB = this.shader._tintRGB;\n this._texture = this.shader.texture;\n\n var pluginName = this.material.pluginName;\n\n renderer.batch.setObjectRenderer(renderer.plugins[pluginName]);\n renderer.plugins[pluginName].render(this);\n };\n\n /**\n * Updates vertexData field based on transform and vertices\n */\n Mesh.prototype.calculateVertices = function calculateVertices ()\n {\n var geometry = this.geometry;\n var vertices = geometry.buffers[0].data;\n\n if (geometry.vertexDirtyId === this.vertexDirty && this._transformID === this.transform._worldID)\n {\n return;\n }\n\n this._transformID = this.transform._worldID;\n\n if (this.vertexData.length !== vertices.length)\n {\n this.vertexData = new Float32Array(vertices.length);\n }\n\n var wt = this.transform.worldTransform;\n var a = wt.a;\n var b = wt.b;\n var c = wt.c;\n var d = wt.d;\n var tx = wt.tx;\n var ty = wt.ty;\n\n var vertexData = this.vertexData;\n\n for (var i = 0; i < vertexData.length / 2; i++)\n {\n var x = vertices[(i * 2)];\n var y = vertices[(i * 2) + 1];\n\n vertexData[(i * 2)] = (a * x) + (c * y) + tx;\n vertexData[(i * 2) + 1] = (b * x) + (d * y) + ty;\n }\n\n if (this._roundPixels)\n {\n for (var i$1 = 0; i$1 < vertexData.length; i$1++)\n {\n vertexData[i$1] = Math.round(vertexData[i$1]);\n }\n }\n\n this.vertexDirty = geometry.vertexDirtyId;\n };\n\n /**\n * Updates uv field based on from geometry uv's or batchUvs\n */\n Mesh.prototype.calculateUvs = function calculateUvs ()\n {\n var geomUvs = this.geometry.buffers[1];\n\n if (!this.shader.uvMatrix.isSimple)\n {\n if (!this.batchUvs)\n {\n this.batchUvs = new MeshBatchUvs(geomUvs, this.shader.uvMatrix);\n }\n this.batchUvs.update();\n this.uvs = this.batchUvs.data;\n }\n else\n {\n this.uvs = geomUvs.data;\n }\n };\n\n /**\n * Updates the bounds of the mesh as a rectangle. The bounds calculation takes the worldTransform into account.\n * there must be a aVertexPosition attribute present in the geometry for bounds to be calculated correctly.\n *\n * @protected\n */\n Mesh.prototype._calculateBounds = function _calculateBounds ()\n {\n this.calculateVertices();\n\n this._bounds.addVertexData(this.vertexData, 0, this.vertexData.length);\n };\n\n /**\n * Tests if a point is inside this mesh. Works only for PIXI.DRAW_MODES.TRIANGLES.\n *\n * @param {PIXI.Point} point the point to test\n * @return {boolean} the result of the test\n */\n Mesh.prototype.containsPoint = function containsPoint (point)\n {\n if (!this.getBounds().contains(point.x, point.y))\n {\n return false;\n }\n\n this.worldTransform.applyInverse(point, tempPoint);\n\n var vertices = this.geometry.getBuffer('aVertexPosition').data;\n\n var points = tempPolygon.points;\n var indices = this.geometry.getIndex().data;\n var len = indices.length;\n var step = this.drawMode === 4 ? 3 : 1;\n\n for (var i = 0; i + 2 < len; i += step)\n {\n var ind0 = indices[i] * 2;\n var ind1 = indices[i + 1] * 2;\n var ind2 = indices[i + 2] * 2;\n\n points[0] = vertices[ind0];\n points[1] = vertices[ind0 + 1];\n points[2] = vertices[ind1];\n points[3] = vertices[ind1 + 1];\n points[4] = vertices[ind2];\n points[5] = vertices[ind2 + 1];\n\n if (tempPolygon.contains(tempPoint.x, tempPoint.y))\n {\n return true;\n }\n }\n\n return false;\n };\n /**\n * Destroys the Mesh object.\n *\n * @param {object|boolean} [options] - Options parameter. A boolean will act as if all\n * options have been set to that value\n * @param {boolean} [options.children=false] - if set to true, all the children will have\n * their destroy method called as well. 'options' will be passed on to those calls.\n */\n Mesh.prototype.destroy = function destroy (options)\n {\n Container.prototype.destroy.call(this, options);\n\n this.geometry.refCount--;\n if (this.geometry.refCount === 0)\n {\n this.geometry.dispose();\n }\n\n this.geometry = null;\n this.shader = null;\n this.state = null;\n this.uvs = null;\n this.indices = null;\n this.vertexData = null;\n };\n\n Object.defineProperties( Mesh.prototype, prototypeAccessors );\n\n return Mesh;\n}(Container));\n\n/**\n * The maximum number of vertices to consider batchable. Generally, the complexity\n * of the geometry.\n * @memberof PIXI.Mesh\n * @static\n * @member {number} BATCHABLE_SIZE\n */\nMesh.BATCHABLE_SIZE = 100;\n\nvar vertex = \"attribute vec2 aVertexPosition;\\nattribute vec2 aTextureCoord;\\n\\nuniform mat3 projectionMatrix;\\nuniform mat3 translationMatrix;\\nuniform mat3 uTextureMatrix;\\n\\nvarying vec2 vTextureCoord;\\n\\nvoid main(void)\\n{\\n gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\\n\\n vTextureCoord = (uTextureMatrix * vec3(aTextureCoord, 1.0)).xy;\\n}\\n\";\n\nvar fragment = \"varying vec2 vTextureCoord;\\nuniform vec4 uColor;\\n\\nuniform sampler2D uSampler;\\n\\nvoid main(void)\\n{\\n gl_FragColor = texture2D(uSampler, vTextureCoord) * uColor;\\n}\\n\";\n\n/**\n * Slightly opinionated default shader for PixiJS 2D objects.\n * @class\n * @memberof PIXI\n * @extends PIXI.Shader\n */\nvar MeshMaterial = /*@__PURE__*/(function (Shader) {\n function MeshMaterial(uSampler, options)\n {\n var uniforms = {\n uSampler: uSampler,\n alpha: 1,\n uTextureMatrix: Matrix.IDENTITY,\n uColor: new Float32Array([1, 1, 1, 1]),\n };\n\n // Set defaults\n options = Object.assign({\n tint: 0xFFFFFF,\n alpha: 1,\n pluginName: 'batch',\n }, options);\n\n if (options.uniforms)\n {\n Object.assign(uniforms, options.uniforms);\n }\n\n Shader.call(this, options.program || Program.from(vertex, fragment), uniforms);\n\n /**\n * Only do update if tint or alpha changes.\n * @member {boolean}\n * @private\n * @default false\n */\n this._colorDirty = false;\n\n /**\n * TextureMatrix instance for this Mesh, used to track Texture changes\n *\n * @member {PIXI.TextureMatrix}\n * @readonly\n */\n this.uvMatrix = new TextureMatrix(uSampler);\n\n /**\n * `true` if shader can be batch with the renderer's batch system.\n * @member {boolean}\n * @default true\n */\n this.batchable = options.program === undefined;\n\n /**\n * Renderer plugin for batching\n *\n * @member {string}\n * @default 'batch'\n */\n this.pluginName = options.pluginName;\n\n this.tint = options.tint;\n this.alpha = options.alpha;\n }\n\n if ( Shader ) MeshMaterial.__proto__ = Shader;\n MeshMaterial.prototype = Object.create( Shader && Shader.prototype );\n MeshMaterial.prototype.constructor = MeshMaterial;\n\n var prototypeAccessors = { texture: { configurable: true },alpha: { configurable: true },tint: { configurable: true } };\n\n /**\n * Reference to the texture being rendered.\n * @member {PIXI.Texture}\n */\n prototypeAccessors.texture.get = function ()\n {\n return this.uniforms.uSampler;\n };\n prototypeAccessors.texture.set = function (value)\n {\n if (this.uniforms.uSampler !== value)\n {\n this.uniforms.uSampler = value;\n this.uvMatrix.texture = value;\n }\n };\n\n /**\n * This gets automatically set by the object using this.\n *\n * @default 1\n * @member {number}\n */\n prototypeAccessors.alpha.set = function (value)\n {\n if (value === this._alpha) { return; }\n\n this._alpha = value;\n this._colorDirty = true;\n };\n prototypeAccessors.alpha.get = function ()\n {\n return this._alpha;\n };\n\n /**\n * Multiply tint for the material.\n * @member {number}\n * @default 0xFFFFFF\n */\n prototypeAccessors.tint.set = function (value)\n {\n if (value === this._tint) { return; }\n\n this._tint = value;\n this._tintRGB = (value >> 16) + (value & 0xff00) + ((value & 0xff) << 16);\n this._colorDirty = true;\n };\n prototypeAccessors.tint.get = function ()\n {\n return this._tint;\n };\n\n /**\n * Gets called automatically by the Mesh. Intended to be overridden for custom\n * MeshMaterial objects.\n */\n MeshMaterial.prototype.update = function update ()\n {\n if (this._colorDirty)\n {\n this._colorDirty = false;\n var baseTexture = this.texture.baseTexture;\n\n premultiplyTintToRgba(this._tint, this._alpha, this.uniforms.uColor, baseTexture.premultiplyAlpha);\n }\n if (this.uvMatrix.update())\n {\n this.uniforms.uTextureMatrix = this.uvMatrix.mapCoord;\n }\n };\n\n Object.defineProperties( MeshMaterial.prototype, prototypeAccessors );\n\n return MeshMaterial;\n}(Shader));\n\n/**\n * Standard 2D geometry used in PixiJS.\n *\n * Geometry can be defined without passing in a style or data if required.\n *\n * ```js\n * const geometry = new PIXI.Geometry();\n *\n * geometry.addAttribute('positions', [0, 0, 100, 0, 100, 100, 0, 100], 2);\n * geometry.addAttribute('uvs', [0,0,1,0,1,1,0,1], 2);\n * geometry.addIndex([0,1,2,1,3,2]);\n *\n * ```\n * @class\n * @memberof PIXI\n * @extends PIXI.Geometry\n */\nvar MeshGeometry = /*@__PURE__*/(function (Geometry) {\n function MeshGeometry(vertices, uvs, index)\n {\n Geometry.call(this);\n\n var verticesBuffer = new Buffer(vertices);\n var uvsBuffer = new Buffer(uvs, true);\n var indexBuffer = new Buffer(index, true, true);\n\n this.addAttribute('aVertexPosition', verticesBuffer, 2, false, TYPES.FLOAT)\n .addAttribute('aTextureCoord', uvsBuffer, 2, false, TYPES.FLOAT)\n .addIndex(indexBuffer);\n\n /**\n * Dirty flag to limit update calls on Mesh. For example,\n * limiting updates on a single Mesh instance with a shared Geometry\n * within the render loop.\n * @private\n * @member {number}\n * @default -1\n */\n this._updateId = -1;\n }\n\n if ( Geometry ) MeshGeometry.__proto__ = Geometry;\n MeshGeometry.prototype = Object.create( Geometry && Geometry.prototype );\n MeshGeometry.prototype.constructor = MeshGeometry;\n\n var prototypeAccessors = { vertexDirtyId: { configurable: true } };\n\n /**\n * If the vertex position is updated.\n * @member {number}\n * @readonly\n * @private\n */\n prototypeAccessors.vertexDirtyId.get = function ()\n {\n return this.buffers[0]._updateID;\n };\n\n Object.defineProperties( MeshGeometry.prototype, prototypeAccessors );\n\n return MeshGeometry;\n}(Geometry));\n\nexport { Mesh, MeshBatchUvs, MeshGeometry, MeshMaterial };\n//# sourceMappingURL=mesh.es.js.map\n","/*!\n * pixi.js - v5.1.4\n * Compiled Sat, 21 Sep 2019 07:35:21 UTC\n *\n * pixi.js is licensed under the MIT License.\n * http://www.opensource.org/licenses/mit-license\n */\nimport '@pixi/polyfill';\nimport { AccessibilityManager } from '@pixi/accessibility';\nimport * as accessibility from '@pixi/accessibility';\nexport { accessibility };\nimport { Extract } from '@pixi/extract';\nimport * as extract from '@pixi/extract';\nexport { extract };\nimport { InteractionManager } from '@pixi/interaction';\nimport * as interaction from '@pixi/interaction';\nexport { interaction };\nimport { Prepare } from '@pixi/prepare';\nimport * as prepare from '@pixi/prepare';\nexport { prepare };\nimport { deprecation } from '@pixi/utils';\nimport * as utils from '@pixi/utils';\nexport { utils };\nimport { Application } from '@pixi/app';\nexport * from '@pixi/app';\nimport { Renderer, BatchRenderer } from '@pixi/core';\nexport * from '@pixi/core';\nimport { Loader, AppLoaderPlugin } from '@pixi/loaders';\nexport * from '@pixi/loaders';\nimport { ParticleRenderer } from '@pixi/particles';\nexport * from '@pixi/particles';\nimport { SpritesheetLoader } from '@pixi/spritesheet';\nexport * from '@pixi/spritesheet';\nimport { TilingSpriteRenderer } from '@pixi/sprite-tiling';\nexport * from '@pixi/sprite-tiling';\nimport { BitmapFontLoader } from '@pixi/text-bitmap';\nexport * from '@pixi/text-bitmap';\nimport { TickerPlugin } from '@pixi/ticker';\nexport * from '@pixi/ticker';\nimport { AlphaFilter } from '@pixi/filter-alpha';\nimport { BlurFilter, BlurFilterPass } from '@pixi/filter-blur';\nimport { ColorMatrixFilter } from '@pixi/filter-color-matrix';\nimport { DisplacementFilter } from '@pixi/filter-displacement';\nimport { FXAAFilter } from '@pixi/filter-fxaa';\nimport { NoiseFilter } from '@pixi/filter-noise';\nimport '@pixi/mixin-cache-as-bitmap';\nimport '@pixi/mixin-get-child-by-name';\nimport '@pixi/mixin-get-global-position';\nexport * from '@pixi/constants';\nexport * from '@pixi/display';\nexport * from '@pixi/graphics';\nexport * from '@pixi/math';\nexport * from '@pixi/mesh';\nexport * from '@pixi/mesh-extras';\nexport * from '@pixi/runner';\nexport * from '@pixi/sprite';\nexport * from '@pixi/sprite-animated';\nexport * from '@pixi/text';\nexport * from '@pixi/settings';\n\nvar v5 = '5.0.0';\n\n/**\n * Deprecations (backward compatibilities) are automatically applied for browser bundles\n * in the UMD module format. If using Webpack or Rollup, you'll need to apply these\n * deprecations manually by doing something like this:\n * @example\n * import * as PIXI from 'pixi.js';\n * PIXI.useDeprecated(); // MUST be bound to namespace\n * @memberof PIXI\n * @function useDeprecated\n */\nfunction useDeprecated()\n{\n var PIXI = this;\n\n Object.defineProperties(PIXI, {\n /**\n * @constant {RegExp|string} SVG_SIZE\n * @memberof PIXI\n * @see PIXI.resources.SVGResource.SVG_SIZE\n * @deprecated since 5.0.0\n */\n SVG_SIZE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.utils.SVG_SIZE property has moved to PIXI.resources.SVGResource.SVG_SIZE');\n\n return PIXI.SVGResource.SVG_SIZE;\n },\n },\n\n /**\n * @class PIXI.TransformStatic\n * @deprecated since 5.0.0\n * @see PIXI.Transform\n */\n TransformStatic: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TransformStatic class has been removed, use PIXI.Transform');\n\n return PIXI.Transform;\n },\n },\n\n /**\n * @class PIXI.TransformBase\n * @deprecated since 5.0.0\n * @see PIXI.Transform\n */\n TransformBase: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TransformBase class has been removed, use PIXI.Transform');\n\n return PIXI.Transform;\n },\n },\n\n /**\n * Constants that specify the transform type.\n *\n * @static\n * @constant\n * @name TRANSFORM_MODE\n * @memberof PIXI\n * @enum {number}\n * @deprecated since 5.0.0\n * @property {number} STATIC\n * @property {number} DYNAMIC\n */\n TRANSFORM_MODE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.TRANSFORM_MODE property has been removed');\n\n return { STATIC: 0, DYNAMIC: 1 };\n },\n },\n\n /**\n * @class PIXI.WebGLRenderer\n * @see PIXI.Renderer\n * @deprecated since 5.0.0\n */\n WebGLRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.WebGLRenderer class has moved to PIXI.Renderer');\n\n return PIXI.Renderer;\n },\n },\n\n /**\n * @class PIXI.CanvasRenderTarget\n * @see PIXI.utils.CanvasRenderTarget\n * @deprecated since 5.0.0\n */\n CanvasRenderTarget: {\n get: function get()\n {\n deprecation(v5, 'PIXI.CanvasRenderTarget class has moved to PIXI.utils.CanvasRenderTarget');\n\n return PIXI.utils.CanvasRenderTarget;\n },\n },\n\n /**\n * @memberof PIXI\n * @name loader\n * @type {PIXI.Loader}\n * @see PIXI.Loader.shared\n * @deprecated since 5.0.0\n */\n loader: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loader instance has moved to PIXI.Loader.shared');\n\n return PIXI.Loader.shared;\n },\n },\n\n /**\n * @class PIXI.FilterManager\n * @see PIXI.systems.FilterSystem\n * @deprecated since 5.0.0\n */\n FilterManager: {\n get: function get()\n {\n deprecation(v5, 'PIXI.FilterManager class has moved to PIXI.systems.FilterSystem');\n\n return PIXI.systems.FilterSystem;\n },\n },\n\n /**\n * @namespace PIXI.CanvasTinter\n * @see PIXI.canvasUtils\n * @deprecated since 5.2.0\n */\n CanvasTinter: {\n get: function get()\n {\n deprecation('5.2.0', 'PIXI.CanvasTinter namespace has moved to PIXI.canvasUtils');\n\n return PIXI.canvasUtils;\n },\n },\n\n /**\n * @namespace PIXI.GroupD8\n * @see PIXI.groupD8\n * @deprecated since 5.2.0\n */\n GroupD8: {\n get: function get()\n {\n deprecation('5.2.0', 'PIXI.GroupD8 namespace has moved to PIXI.groupD8');\n\n return PIXI.groupD8;\n },\n },\n });\n\n /**\n * This namespace has been removed. All classes previous nested\n * under this namespace have been moved to the top-level `PIXI` object.\n * @namespace PIXI.extras\n * @deprecated since 5.0.0\n */\n PIXI.extras = {};\n\n Object.defineProperties(PIXI.extras, {\n /**\n * @class PIXI.extras.TilingSprite\n * @see PIXI.TilingSprite\n * @deprecated since 5.0.0\n */\n TilingSprite: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.TilingSprite class has moved to PIXI.TilingSprite');\n\n return PIXI.TilingSprite;\n },\n },\n /**\n * @class PIXI.extras.TilingSpriteRenderer\n * @see PIXI.TilingSpriteRenderer\n * @deprecated since 5.0.0\n */\n TilingSpriteRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.TilingSpriteRenderer class has moved to PIXI.TilingSpriteRenderer');\n\n return PIXI.TilingSpriteRenderer;\n },\n },\n /**\n * @class PIXI.extras.AnimatedSprite\n * @see PIXI.AnimatedSprite\n * @deprecated since 5.0.0\n */\n AnimatedSprite: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.AnimatedSprite class has moved to PIXI.AnimatedSprite');\n\n return PIXI.AnimatedSprite;\n },\n },\n /**\n * @class PIXI.extras.BitmapText\n * @see PIXI.BitmapText\n * @deprecated since 5.0.0\n */\n BitmapText: {\n get: function get()\n {\n deprecation(v5, 'PIXI.extras.BitmapText class has moved to PIXI.BitmapText');\n\n return PIXI.BitmapText;\n },\n },\n });\n\n Object.defineProperties(PIXI.utils, {\n /**\n * @function PIXI.utils.getSvgSize\n * @see PIXI.resources.SVGResource.getSize\n * @deprecated since 5.0.0\n */\n getSvgSize: {\n get: function get()\n {\n deprecation(v5, 'PIXI.utils.getSvgSize function has moved to PIXI.resources.SVGResource.getSize');\n\n return PIXI.SVGResource.getSize;\n },\n },\n });\n\n /**\n * All classes on this namespace have moved to the high-level `PIXI` object.\n * @namespace PIXI.mesh\n * @deprecated since 5.0.0\n */\n PIXI.mesh = {};\n\n Object.defineProperties(PIXI.mesh, {\n /**\n * @class PIXI.mesh.Mesh\n * @see PIXI.SimpleMesh\n * @deprecated since 5.0.0\n */\n Mesh: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Mesh class has moved to PIXI.SimpleMesh');\n\n return PIXI.SimpleMesh;\n },\n },\n /**\n * @class PIXI.mesh.NineSlicePlane\n * @see PIXI.NineSlicePlane\n * @deprecated since 5.0.0\n */\n NineSlicePlane: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.NineSlicePlane class has moved to PIXI.NineSlicePlane');\n\n return PIXI.NineSlicePlane;\n },\n },\n /**\n * @class PIXI.mesh.Plane\n * @see PIXI.SimplePlane\n * @deprecated since 5.0.0\n */\n Plane: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Plane class has moved to PIXI.SimplePlane');\n\n return PIXI.SimplePlane;\n },\n },\n /**\n * @class PIXI.mesh.Rope\n * @see PIXI.SimpleRope\n * @deprecated since 5.0.0\n */\n Rope: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.Rope class has moved to PIXI.SimpleRope');\n\n return PIXI.SimpleRope;\n },\n },\n /**\n * @class PIXI.mesh.RawMesh\n * @see PIXI.Mesh\n * @deprecated since 5.0.0\n */\n RawMesh: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.RawMesh class has moved to PIXI.Mesh');\n\n return PIXI.Mesh;\n },\n },\n /**\n * @class PIXI.mesh.CanvasMeshRenderer\n * @see PIXI.CanvasMeshRenderer\n * @deprecated since 5.0.0\n */\n CanvasMeshRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.CanvasMeshRenderer class has moved to PIXI.CanvasMeshRenderer');\n\n return PIXI.CanvasMeshRenderer;\n },\n },\n /**\n * @class PIXI.mesh.MeshRenderer\n * @see PIXI.MeshRenderer\n * @deprecated since 5.0.0\n */\n MeshRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.mesh.MeshRenderer class has moved to PIXI.MeshRenderer');\n\n return PIXI.MeshRenderer;\n },\n },\n });\n\n /**\n * This namespace has been removed and items have been moved to\n * the top-level `PIXI` object.\n * @namespace PIXI.particles\n * @deprecated since 5.0.0\n */\n PIXI.particles = {};\n\n Object.defineProperties(PIXI.particles, {\n /**\n * @class PIXI.particles.ParticleContainer\n * @deprecated since 5.0.0\n * @see PIXI.ParticleContainer\n */\n ParticleContainer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.particles.ParticleContainer class has moved to PIXI.ParticleContainer');\n\n return PIXI.ParticleContainer;\n },\n },\n /**\n * @class PIXI.particles.ParticleRenderer\n * @deprecated since 5.0.0\n * @see PIXI.ParticleRenderer\n */\n ParticleRenderer: {\n get: function get()\n {\n deprecation(v5, 'PIXI.particles.ParticleRenderer class has moved to PIXI.ParticleRenderer');\n\n return PIXI.ParticleRenderer;\n },\n },\n });\n\n /**\n * This namespace has been removed and items have been moved to\n * the top-level `PIXI` object.\n * @namespace PIXI.ticker\n * @deprecated since 5.0.0\n */\n PIXI.ticker = {};\n\n Object.defineProperties(PIXI.ticker, {\n /**\n * @class PIXI.ticker.Ticker\n * @deprecated since 5.0.0\n * @see PIXI.Ticker\n */\n Ticker: {\n get: function get()\n {\n deprecation(v5, 'PIXI.ticker.Ticker class has moved to PIXI.Ticker');\n\n return PIXI.Ticker;\n },\n },\n /**\n * @name PIXI.ticker.shared\n * @type {PIXI.Ticker}\n * @deprecated since 5.0.0\n * @see PIXI.Ticker.shared\n */\n shared: {\n get: function get()\n {\n deprecation(v5, 'PIXI.ticker.shared instance has moved to PIXI.Ticker.shared');\n\n return PIXI.Ticker.shared;\n },\n },\n });\n\n /**\n * All classes on this namespace have moved to the high-level `PIXI` object.\n * @namespace PIXI.loaders\n * @deprecated since 5.0.0\n */\n PIXI.loaders = {};\n\n Object.defineProperties(PIXI.loaders, {\n /**\n * @class PIXI.loaders.Loader\n * @see PIXI.Loader\n * @deprecated since 5.0.0\n */\n Loader: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.Loader class has moved to PIXI.Loader');\n\n return PIXI.Loader;\n },\n },\n /**\n * @class PIXI.loaders.Resource\n * @see PIXI.LoaderResource\n * @deprecated since 5.0.0\n */\n Resource: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.Resource class has moved to PIXI.LoaderResource');\n\n return PIXI.LoaderResource;\n },\n },\n /**\n * @function PIXI.loaders.bitmapFontParser\n * @see PIXI.BitmapFontLoader.use\n * @deprecated since 5.0.0\n */\n bitmapFontParser: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.bitmapFontParser function has moved to PIXI.BitmapFontLoader.use');\n\n return PIXI.BitmapFontLoader.use;\n },\n },\n /**\n * @function PIXI.loaders.parseBitmapFontData\n * @see PIXI.BitmapFontLoader.parse\n * @deprecated since 5.0.0\n */\n parseBitmapFontData: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.parseBitmapFontData function has moved to PIXI.BitmapFontLoader.parse');\n\n return PIXI.BitmapFontLoader.parse;\n },\n },\n /**\n * @function PIXI.loaders.spritesheetParser\n * @see PIXI.SpritesheetLoader.use\n * @deprecated since 5.0.0\n */\n spritesheetParser: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.spritesheetParser function has moved to PIXI.SpritesheetLoader.use');\n\n return PIXI.SpritesheetLoader.use;\n },\n },\n /**\n * @function PIXI.loaders.getResourcePath\n * @see PIXI.SpritesheetLoader.getResourcePath\n * @deprecated since 5.0.0\n */\n getResourcePath: {\n get: function get()\n {\n deprecation(v5, 'PIXI.loaders.getResourcePath property has moved to PIXI.SpritesheetLoader.getResourcePath');\n\n return PIXI.SpritesheetLoader.getResourcePath;\n },\n },\n });\n\n /**\n * @function PIXI.loaders.Loader.addPixiMiddleware\n * @see PIXI.Loader.registerPlugin\n * @deprecated since 5.0.0\n * @param {function} middleware\n */\n PIXI.Loader.addPixiMiddleware = function addPixiMiddleware(middleware)\n {\n deprecation(v5,\n 'PIXI.loaders.Loader.addPixiMiddleware function is deprecated, use PIXI.loaders.Loader.registerPlugin'\n );\n\n return PIXI.loaders.Loader.registerPlugin({ use: middleware() });\n };\n\n /**\n * @class PIXI.extract.WebGLExtract\n * @deprecated since 5.0.0\n * @see PIXI.extract.Extract\n */\n Object.defineProperty(PIXI.extract, 'WebGLExtract', {\n get: function get()\n {\n deprecation(v5, 'PIXI.extract.WebGLExtract method has moved to PIXI.extract.Extract');\n\n return PIXI.extract.Extract;\n },\n });\n\n /**\n * @class PIXI.prepare.WebGLPrepare\n * @deprecated since 5.0.0\n * @see PIXI.prepare.Prepare\n */\n Object.defineProperty(PIXI.prepare, 'WebGLPrepare', {\n get: function get()\n {\n deprecation(v5, 'PIXI.prepare.WebGLPrepare class has moved to PIXI.prepare.Prepare');\n\n return PIXI.prepare.Prepare;\n },\n });\n\n /**\n * @method PIXI.Container#_renderWebGL\n * @private\n * @deprecated since 5.0.0\n * @see PIXI.Container#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype._renderWebGL = function _renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container._renderWebGL method has moved to PIXI.Container._render');\n\n this._render(renderer);\n };\n\n /**\n * @method PIXI.Container#renderWebGL\n * @deprecated since 5.0.0\n * @see PIXI.Container#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype.renderWebGL = function renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container.renderWebGL method has moved to PIXI.Container.render');\n\n this.render(renderer);\n };\n\n /**\n * @method PIXI.DisplayObject#renderWebGL\n * @deprecated since 5.0.0\n * @see PIXI.DisplayObject#render\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.DisplayObject.prototype.renderWebGL = function renderWebGL(renderer)\n {\n deprecation(v5, 'PIXI.DisplayObject.renderWebGL method has moved to PIXI.DisplayObject.render');\n\n this.render(renderer);\n };\n\n /**\n * @method PIXI.Container#renderAdvancedWebGL\n * @deprecated since 5.0.0\n * @see PIXI.Container#renderAdvanced\n * @param {PIXI.Renderer} renderer Instance of renderer\n */\n PIXI.Container.prototype.renderAdvancedWebGL = function renderAdvancedWebGL(renderer)\n {\n deprecation(v5, 'PIXI.Container.renderAdvancedWebGL method has moved to PIXI.Container.renderAdvanced');\n\n this.renderAdvanced(renderer);\n };\n\n Object.defineProperties(PIXI.settings, {\n /**\n * Default transform type.\n *\n * @static\n * @deprecated since 5.0.0\n * @memberof PIXI.settings\n * @type {PIXI.TRANSFORM_MODE}\n * @default PIXI.TRANSFORM_MODE.STATIC\n */\n TRANSFORM_MODE: {\n get: function get()\n {\n deprecation(v5, 'PIXI.settings.TRANSFORM_MODE property has been removed');\n\n return 0;\n },\n set: function set()\n {\n deprecation(v5, 'PIXI.settings.TRANSFORM_MODE property has been removed');\n },\n },\n });\n\n var BaseTexture = PIXI.BaseTexture;\n\n /**\n * @method loadSource\n * @memberof PIXI.BaseTexture#\n * @deprecated since 5.0.0\n */\n BaseTexture.prototype.loadSource = function loadSource(image)\n {\n deprecation(v5, 'PIXI.BaseTexture.loadSource method has been deprecated');\n\n var resource = PIXI.resources.autoDetectResource(image);\n\n resource.internal = true;\n\n this.setResource(resource);\n this.update();\n };\n\n Object.defineProperties(BaseTexture.prototype, {\n /**\n * @name PIXI.BaseTexture#hasLoaded\n * @type {boolean}\n * @deprecated since 5.0.0\n * @readonly\n * @see PIXI.BaseTexture#valid\n */\n hasLoaded: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.hasLoaded property has been removed, use PIXI.BaseTexture.valid');\n\n return this.valid;\n },\n },\n /**\n * @name PIXI.BaseTexture#imageUrl\n * @type {string}\n * @deprecated since 5.0.0\n * @see PIXI.resource.ImageResource#url\n */\n imageUrl: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.imageUrl property has been removed, use PIXI.BaseTexture.resource.url');\n\n return this.resource && this.resource.url;\n },\n\n set: function set(imageUrl)\n {\n deprecation(v5, 'PIXI.BaseTexture.imageUrl property has been removed, use PIXI.BaseTexture.resource.url');\n\n if (this.resource)\n {\n this.resource.url = imageUrl;\n }\n },\n },\n /**\n * @name PIXI.BaseTexture#source\n * @type {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement|SVGElement}\n * @deprecated since 5.0.0\n * @readonly\n * @see PIXI.resources.BaseImageResource#source\n */\n source: {\n get: function get()\n {\n deprecation(v5, 'PIXI.BaseTexture.source property has been moved, use `PIXI.BaseTexture.resource.source`');\n\n return this.resource && this.resource.source;\n },\n set: function set(source)\n {\n deprecation(v5, 'PIXI.BaseTexture.source property has been moved, use `PIXI.BaseTexture.resource.source` '\n + 'if you want to set HTMLCanvasElement. Otherwise, create new BaseTexture.');\n\n if (this.resource)\n {\n this.resource.source = source;\n }\n },\n },\n });\n\n /**\n * @method fromImage\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromImage = function fromImage(canvas, crossorigin, scaleMode, scale)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromImage method has been replaced with PIXI.BaseTexture.from');\n\n var resourceOptions = { scale: scale, crossorigin: crossorigin };\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode, resourceOptions: resourceOptions });\n };\n\n /**\n * @method fromCanvas\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromCanvas = function fromCanvas(canvas, scaleMode)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromCanvas method has been replaced with PIXI.BaseTexture.from');\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode });\n };\n\n /**\n * @method fromSVG\n * @static\n * @memberof PIXI.BaseTexture\n * @deprecated since 5.0.0\n * @see PIXI.BaseTexture.from\n */\n BaseTexture.fromSVG = function fromSVG(canvas, crossorigin, scaleMode, scale)\n {\n deprecation(v5, 'PIXI.BaseTexture.fromSVG method has been replaced with PIXI.BaseTexture.from');\n\n var resourceOptions = { scale: scale, crossorigin: crossorigin };\n\n return BaseTexture.from(canvas, { scaleMode: scaleMode, resourceOptions: resourceOptions });\n };\n\n /**\n * @method PIXI.Point#copy\n * @deprecated since 5.0.0\n * @see PIXI.Point#copyFrom\n */\n PIXI.Point.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Point.copy method has been replaced with PIXI.Point.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.ObservablePoint#copy\n * @deprecated since 5.0.0\n * @see PIXI.ObservablePoint#copyFrom\n */\n PIXI.ObservablePoint.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.ObservablePoint.copy method has been replaced with PIXI.ObservablePoint.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.Rectangle#copy\n * @deprecated since 5.0.0\n * @see PIXI.Rectangle#copyFrom\n */\n PIXI.Rectangle.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Rectangle.copy method has been replaced with PIXI.Rectangle.copyFrom');\n\n return this.copyFrom(p);\n };\n\n /**\n * @method PIXI.Matrix#copy\n * @deprecated since 5.0.0\n * @see PIXI.Matrix#copyTo\n */\n PIXI.Matrix.prototype.copy = function copy(p)\n {\n deprecation(v5, 'PIXI.Matrix.copy method has been replaced with PIXI.Matrix.copyTo');\n\n return this.copyTo(p);\n };\n\n /**\n * @method PIXI.systems.StateSystem#setState\n * @deprecated since 5.1.0\n * @see PIXI.systems.StateSystem#set\n */\n PIXI.systems.StateSystem.prototype.setState = function setState(s)\n {\n deprecation('v5.1.0', 'StateSystem.setState has been renamed to StateSystem.set');\n\n return this.set(s);\n };\n\n Object.assign(PIXI.systems.FilterSystem.prototype, {\n /**\n * @method PIXI.FilterManager#getRenderTarget\n * @deprecated since 5.0.0\n * @see PIXI.systems.FilterSystem#getFilterTexture\n */\n getRenderTarget: function getRenderTarget(clear, resolution)\n {\n deprecation(v5,\n 'PIXI.FilterManager.getRenderTarget method has been replaced with PIXI.systems.FilterSystem#getFilterTexture'\n );\n\n return this.getFilterTexture(resolution);\n },\n\n /**\n * @method PIXI.FilterManager#returnRenderTarget\n * @deprecated since 5.0.0\n * @see PIXI.systems.FilterSystem#returnFilterTexture\n */\n returnRenderTarget: function returnRenderTarget(renderTexture)\n {\n deprecation(v5,\n 'PIXI.FilterManager.returnRenderTarget method has been replaced with '\n + 'PIXI.systems.FilterSystem.returnFilterTexture'\n );\n\n this.returnFilterTexture(renderTexture);\n },\n\n /**\n * @method PIXI.systems.FilterSystem#calculateScreenSpaceMatrix\n * @deprecated since 5.0.0\n * @param {PIXI.Matrix} outputMatrix - the matrix to output to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n calculateScreenSpaceMatrix: function calculateScreenSpaceMatrix(outputMatrix)\n {\n deprecation(v5, 'PIXI.systems.FilterSystem.calculateScreenSpaceMatrix method is removed, '\n + 'use `(vTextureCoord * inputSize.xy) + outputFrame.xy` instead');\n\n var mappedMatrix = outputMatrix.identity();\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n\n mappedMatrix.translate(sourceFrame.x / destinationFrame.width, sourceFrame.y / destinationFrame.height);\n mappedMatrix.scale(destinationFrame.width, destinationFrame.height);\n\n return mappedMatrix;\n },\n\n /**\n * @method PIXI.systems.FilterSystem#calculateNormalizedScreenSpaceMatrix\n * @deprecated since 5.0.0\n * @param {PIXI.Matrix} outputMatrix - The matrix to output to.\n * @return {PIXI.Matrix} The mapped matrix.\n */\n calculateNormalizedScreenSpaceMatrix: function calculateNormalizedScreenSpaceMatrix(outputMatrix)\n {\n deprecation(v5, 'PIXI.systems.FilterManager.calculateNormalizedScreenSpaceMatrix method is removed, '\n + 'use `((vTextureCoord * inputSize.xy) + outputFrame.xy) / outputFrame.zw` instead.');\n\n var ref = this.activeState;\n var sourceFrame = ref.sourceFrame;\n var destinationFrame = ref.destinationFrame;\n var mappedMatrix = outputMatrix.identity();\n\n mappedMatrix.translate(sourceFrame.x / destinationFrame.width, sourceFrame.y / destinationFrame.height);\n\n var translateScaleX = (destinationFrame.width / sourceFrame.width);\n var translateScaleY = (destinationFrame.height / sourceFrame.height);\n\n mappedMatrix.scale(translateScaleX, translateScaleY);\n\n return mappedMatrix;\n },\n });\n\n Object.defineProperties(PIXI.RenderTexture.prototype, {\n /**\n * @name PIXI.RenderTexture#sourceFrame\n * @type {PIXI.Rectangle}\n * @deprecated since 5.0.0\n * @readonly\n */\n sourceFrame: {\n get: function get()\n {\n deprecation(v5, 'PIXI.RenderTexture.sourceFrame property has been removed');\n\n return this.filterFrame;\n },\n },\n /**\n * @name PIXI.RenderTexture#size\n * @type {PIXI.Rectangle}\n * @deprecated since 5.0.0\n * @readonly\n */\n size: {\n get: function get()\n {\n deprecation(v5, 'PIXI.RenderTexture.size property has been removed');\n\n return this._frame;\n },\n },\n });\n\n /**\n * @class BlurXFilter\n * @memberof PIXI.filters\n * @deprecated since 5.0.0\n * @see PIXI.filters.BlurFilterPass\n */\n var BlurXFilter = /*@__PURE__*/(function (superclass) {\n function BlurXFilter(strength, quality, resolution, kernelSize)\n {\n deprecation(v5, 'PIXI.filters.BlurXFilter class is deprecated, use PIXI.filters.BlurFilterPass');\n\n superclass.call(this, true, strength, quality, resolution, kernelSize);\n }\n\n if ( superclass ) BlurXFilter.__proto__ = superclass;\n BlurXFilter.prototype = Object.create( superclass && superclass.prototype );\n BlurXFilter.prototype.constructor = BlurXFilter;\n\n return BlurXFilter;\n }(PIXI.filters.BlurFilterPass));\n\n /**\n * @class BlurYFilter\n * @memberof PIXI.filters\n * @deprecated since 5.0.0\n * @see PIXI.filters.BlurFilterPass\n */\n var BlurYFilter = /*@__PURE__*/(function (superclass) {\n function BlurYFilter(strength, quality, resolution, kernelSize)\n {\n deprecation(v5, 'PIXI.filters.BlurYFilter class is deprecated, use PIXI.filters.BlurFilterPass');\n\n superclass.call(this, false, strength, quality, resolution, kernelSize);\n }\n\n if ( superclass ) BlurYFilter.__proto__ = superclass;\n BlurYFilter.prototype = Object.create( superclass && superclass.prototype );\n BlurYFilter.prototype.constructor = BlurYFilter;\n\n return BlurYFilter;\n }(PIXI.filters.BlurFilterPass));\n\n Object.assign(PIXI.filters, {\n BlurXFilter: BlurXFilter,\n BlurYFilter: BlurYFilter,\n });\n\n var Sprite = PIXI.Sprite;\n var Texture = PIXI.Texture;\n var Graphics = PIXI.Graphics;\n\n // Support for pixi.js-legacy bifurcation\n // give users a friendly assist to use legacy\n if (!Graphics.prototype.generateCanvasTexture)\n {\n Graphics.prototype.generateCanvasTexture = function generateCanvasTexture()\n {\n deprecation(v5, 'PIXI.Graphics.generateCanvasTexture method is only available in \"pixi.js-legacy\"');\n };\n }\n\n /**\n * @deprecated since 5.0.0\n * @member {PIXI.Graphics} PIXI.Graphics#graphicsData\n * @see PIXI.Graphics#geometry\n * @readonly\n */\n Object.defineProperty(PIXI.Graphics.prototype, 'graphicsData', {\n get: function get()\n {\n deprecation(v5, 'PIXI.Graphics.graphicsData property is deprecated, use PIXI.Graphics.geometry.graphicsData');\n\n return this.geometry.graphicsData;\n },\n });\n\n // Use these to deprecate all the Sprite from* methods\n function spriteFrom(name, source, crossorigin, scaleMode)\n {\n deprecation(v5, (\"PIXI.Sprite.\" + name + \" method is deprecated, use PIXI.Sprite.from\"));\n\n return Sprite.from(source, {\n resourceOptions: {\n scale: scaleMode,\n crossorigin: crossorigin,\n },\n });\n }\n\n /**\n * @deprecated since 5.0.0\n * @see PIXI.Sprite.from\n * @method PIXI.Sprite.fromImage\n * @return {PIXI.Sprite}\n */\n Sprite.fromImage = spriteFrom.bind(null, 'fromImage');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromSVG\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromSVG = spriteFrom.bind(null, 'fromSVG');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromCanvas\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromCanvas = spriteFrom.bind(null, 'fromCanvas');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromVideo\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromVideo = spriteFrom.bind(null, 'fromVideo');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Sprite.fromFrame\n * @see PIXI.Sprite.from\n * @return {PIXI.Sprite}\n */\n Sprite.fromFrame = spriteFrom.bind(null, 'fromFrame');\n\n // Use these to deprecate all the Texture from* methods\n function textureFrom(name, source, crossorigin, scaleMode)\n {\n deprecation(v5, (\"PIXI.Texture.\" + name + \" method is deprecated, use PIXI.Texture.from\"));\n\n return Texture.from(source, {\n resourceOptions: {\n scale: scaleMode,\n crossorigin: crossorigin,\n },\n });\n }\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromImage\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromImage = textureFrom.bind(null, 'fromImage');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromSVG\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromSVG = textureFrom.bind(null, 'fromSVG');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromCanvas\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromCanvas = textureFrom.bind(null, 'fromCanvas');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromVideo\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromVideo = textureFrom.bind(null, 'fromVideo');\n\n /**\n * @deprecated since 5.0.0\n * @method PIXI.Texture.fromFrame\n * @see PIXI.Texture.from\n * @return {PIXI.Texture}\n */\n Texture.fromFrame = textureFrom.bind(null, 'fromFrame');\n\n /**\n * @deprecated since 5.0.0\n * @member {boolean} PIXI.AbstractRenderer#autoResize\n * @see PIXI.AbstractRenderer#autoDensity\n */\n Object.defineProperty(PIXI.AbstractRenderer.prototype, 'autoResize', {\n get: function get()\n {\n deprecation(v5, 'PIXI.AbstractRenderer.autoResize property is deprecated, '\n + 'use PIXI.AbstractRenderer.autoDensity');\n\n return this.autoDensity;\n },\n set: function set(value)\n {\n deprecation(v5, 'PIXI.AbstractRenderer.autoResize property is deprecated, '\n + 'use PIXI.AbstractRenderer.autoDensity');\n\n this.autoDensity = value;\n },\n });\n\n /**\n * @deprecated since 5.0.0\n * @member {PIXI.systems.TextureSystem} PIXI.Renderer#textureManager\n * @see PIXI.Renderer#texture\n */\n Object.defineProperty(PIXI.Renderer.prototype, 'textureManager', {\n get: function get()\n {\n deprecation(v5, 'PIXI.Renderer.textureManager property is deprecated, use PIXI.Renderer.texture');\n\n return this.texture;\n },\n });\n\n /**\n * @namespace PIXI.utils.mixins\n * @deprecated since 5.0.0\n */\n PIXI.utils.mixins = {\n /**\n * @memberof PIXI.utils.mixins\n * @function mixin\n * @deprecated since 5.0.0\n */\n mixin: function mixin()\n {\n deprecation(v5, 'PIXI.utils.mixins.mixin function is no longer available');\n },\n /**\n * @memberof PIXI.utils.mixins\n * @function delayMixin\n * @deprecated since 5.0.0\n */\n delayMixin: function delayMixin()\n {\n deprecation(v5, 'PIXI.utils.mixins.delayMixin function is no longer available');\n },\n /**\n * @memberof PIXI.utils.mixins\n * @function performMixins\n * @deprecated since 5.0.0\n */\n performMixins: function performMixins()\n {\n deprecation(v5, 'PIXI.utils.mixins.performMixins function is no longer available');\n },\n };\n}\n\n// Install renderer plugins\nRenderer.registerPlugin('accessibility', AccessibilityManager);\nRenderer.registerPlugin('extract', Extract);\nRenderer.registerPlugin('interaction', InteractionManager);\nRenderer.registerPlugin('particle', ParticleRenderer);\nRenderer.registerPlugin('prepare', Prepare);\nRenderer.registerPlugin('batch', BatchRenderer);\nRenderer.registerPlugin('tilingSprite', TilingSpriteRenderer);\n\nLoader.registerPlugin(BitmapFontLoader);\nLoader.registerPlugin(SpritesheetLoader);\n\nApplication.registerPlugin(TickerPlugin);\nApplication.registerPlugin(AppLoaderPlugin);\n\n/**\n * String of the current PIXI version.\n *\n * @static\n * @constant\n * @memberof PIXI\n * @name VERSION\n * @type {string}\n */\nvar VERSION = '5.1.4';\n\n/**\n * @namespace PIXI\n */\n\n/**\n * This namespace contains WebGL-only display filters that can be applied\n * to DisplayObjects using the {@link PIXI.DisplayObject#filters filters} property.\n *\n * Since PixiJS only had a handful of built-in filters, additional filters\n * can be downloaded {@link https://github.com/pixijs/pixi-filters here} from the\n * PixiJS Filters repository.\n *\n * All filters must extend {@link PIXI.Filter}.\n *\n * @example\n * // Create a new application\n * const app = new PIXI.Application();\n *\n * // Draw a green rectangle\n * const rect = new PIXI.Graphics()\n * .beginFill(0x00ff00)\n * .drawRect(40, 40, 200, 200);\n *\n * // Add a blur filter\n * rect.filters = [new PIXI.filters.BlurFilter()];\n *\n * // Display rectangle\n * app.stage.addChild(rect);\n * document.body.appendChild(app.view);\n * @namespace PIXI.filters\n */\nvar filters = {\n AlphaFilter: AlphaFilter,\n BlurFilter: BlurFilter,\n BlurFilterPass: BlurFilterPass,\n ColorMatrixFilter: ColorMatrixFilter,\n DisplacementFilter: DisplacementFilter,\n FXAAFilter: FXAAFilter,\n NoiseFilter: NoiseFilter,\n};\n\nexport { VERSION, filters, useDeprecated };\n//# sourceMappingURL=pixi.es.js.map\n","import { ImVec4 } from \"imgui-js\";\n\nexport function fromConstructor(constr: any):((params: any[]) => any)\n{\n return constr as unknown as ((params: any[]) => any)\n}\n\nexport function vec2col(v: ImVec4): number\n{\n return (((v.x * 255) & 0xFF) << 16) +\n (((v.y * 255) & 0xFF) << 8) +\n (((v.z * 255) & 0xFF) << 0);\n}\n","import * as ImGui from \"imgui-js\";\nimport { ImVec2 } from \"imgui-js\";\nimport * as PIXI from \"pixi.js\";\nimport * as U from \"./utils\";\n\nlet clipboard_text: string = \"\";\n\nconst contexts: ImGui.ImGuiContext[] = [];\nconst contextIOs: ImGui.ImGuiIO[] = [];\nlet isFirstWindow: boolean = true;\n\nclass ImGuiImplInternalRenderer extends PIXI.ObjectRenderer\n{\n constructor(r: PIXI.Renderer)\n {\n super(r);\n }\n render(owner: PIXI.DisplayObject): void\n {\n if (!(owner instanceof ImGuiWindowLayer)) return;\n\n const window: ImGuiWindow = (owner as ImGuiWindowLayer).window;\n\n const io: ImGui.ImGuiIO = window.io;\n const draw_data: ImGui.ImDrawData = ImGui.GetDrawData();\n if (draw_data === null) { throw new Error(); }\n\n gl || console.log(draw_data);\n\n // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates)\n const fb_width: number = io.DisplaySize.x * io.DisplayFramebufferScale.x;\n const fb_height: number = io.DisplaySize.y * io.DisplayFramebufferScale.y;\n if (fb_width === 0 || fb_height === 0) {\n return;\n }\n draw_data.ScaleClipRects(io.DisplayFramebufferScale);\n\n // Backup GL state\n const last_program: WebGLProgram | null = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null;\n const last_active_texture: GLenum | null = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null;\n gl && gl.activeTexture(gl.TEXTURE0);\n const last_texture0: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null;\n const last_vertex_array: WebGLVertexArrayObject | null = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null;\n const last_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null;\n const last_element_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null;\n // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode);\n const last_viewport: Int32Array | null = gl && gl.getParameter(gl.VIEWPORT) || null;\n const last_scissor_box: Int32Array | null = gl && gl.getParameter(gl.SCISSOR_BOX) || null;\n const last_blend_src_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null;\n const last_blend_dst_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_RGB) || null;\n const last_blend_src_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null;\n const last_blend_dst_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null;\n const last_blend_equation_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null;\n const last_blend_equation_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null;\n const last_enable_blend: GLboolean | null = gl && gl.getParameter(gl.BLEND) || null;\n const last_enable_cull_face: GLboolean | null = gl && gl.getParameter(gl.CULL_FACE) || null;\n const last_enable_depth_test: GLboolean | null = gl && gl.getParameter(gl.DEPTH_TEST) || null;\n const last_enable_scissor_test: GLboolean | null = gl && gl.getParameter(gl.SCISSOR_TEST) || null;\n\n gl.clearColor(0, 0, 0, 0);\n gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);\n \n gl && gl.bindVertexArray(g_VaoHandle);\n\n // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill\n gl && gl.enable(gl.BLEND);\n gl && gl.blendEquation(gl.FUNC_ADD);\n gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE);\n gl && gl.disable(gl.CULL_FACE);\n gl && gl.disable(gl.DEPTH_TEST);\n gl && gl.enable(gl.SCISSOR_TEST);\n // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);\n\n // Setup viewport, orthographic projection matrix\n // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps.\n gl && gl.viewport(0, 0, fb_width, fb_height);\n const L: number = draw_data.DisplayPos.x;\n const R: number = draw_data.DisplayPos.x + draw_data.DisplaySize.x;\n const T: number = draw_data.DisplayPos.y;\n const B: number = draw_data.DisplayPos.y + draw_data.DisplaySize.y;\n // we actually flip the bottom and top here to match with PIXI's texture usage\n const ortho_projection: Float32Array = new Float32Array([\n 2.0 / (R - L), 0.0, 0.0, 0.0,\n 0.0, 2.0 / (B - T), 0.0, 0.0,\n 0.0, 0.0, -1.0, 0.0,\n (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0,\n ]);\n gl && gl.useProgram(g_ShaderHandle);\n gl && gl.uniform1i(g_AttribLocationTex, 0);\n gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection);\n\n // Render command lists\n gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle);\n gl && gl.enableVertexAttribArray(g_AttribLocationPosition);\n gl && gl.enableVertexAttribArray(g_AttribLocationUV);\n gl && gl.enableVertexAttribArray(g_AttribLocationColor);\n\n gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertPosOffset);\n gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertUVOffset);\n gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImGui.ImDrawVertSize, ImGui.ImDrawVertColOffset);\n\n // Draw\n const pos = draw_data.DisplayPos;\n const idx_buffer_type: GLenum = gl && ((ImGui.ImDrawIdxSize === 4) ? gl.UNSIGNED_INT : gl.UNSIGNED_SHORT) || 0;\n draw_data.IterateDrawLists((draw_list: ImGui.ImDrawList): void => {\n gl || console.log(draw_list);\n gl || console.log(\"VtxBuffer.length\", draw_list.VtxBuffer.length);\n gl || console.log(\"IdxBuffer.length\", draw_list.IdxBuffer.length);\n \n let idx_buffer_offset: number = 0;\n\n gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle);\n gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW);\n gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle);\n gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW);\n\n draw_list.IterateDrawCmds((draw_cmd: ImGui.ImDrawCmd): void => {\n gl || console.log(draw_cmd);\n gl || console.log(\"ElemCount\", draw_cmd.ElemCount);\n gl || console.log(\"ClipRect\", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y);\n gl || console.log(\"TextureId\", draw_cmd.TextureId);\n if (!gl) {\n console.log(\"i: pos.x pos.y uv.x uv.y col\");\n for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) {\n const view: ImGui.ImDrawVert = new ImGui.ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImGui.ImDrawVertSize);\n console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${(\"00000000\" + view.col[0].toString(16)).substr(-8)}`);\n }\n }\n\n if (draw_cmd.UserCallback !== null) {\n // User callback (registered via ImDrawList::AddCallback)\n draw_cmd.UserCallback(draw_list, draw_cmd);\n } else {\n const clip_rect = new ImGui.ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y);\n if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) {\n // Apply scissor/clipping rectangle\n gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y);\n\n // Bind texture, Draw\n gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId);\n gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset);\n }\n }\n\n idx_buffer_offset += draw_cmd.ElemCount * ImGui.ImDrawIdxSize;\n });\n });\n\n // Restore modified GL state\n \n gl && (last_program !== null) && gl.useProgram(last_program);\n gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0);\n gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture);\n gl && gl.disableVertexAttribArray(g_AttribLocationPosition);\n gl && gl.disableVertexAttribArray(g_AttribLocationUV);\n gl && gl.disableVertexAttribArray(g_AttribLocationColor);\n gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array);\n gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer);\n gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer);\n gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]);\n gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]);\n gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha);\n gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha);\n gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND));\n gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE));\n gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST));\n gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST));\n // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]);\n }\n}\n\nlet gl: WebGL2RenderingContext = null;\nlet app: PIXI.Application = null;\n\nclass ImGuiWindowLayer extends PIXI.Sprite\n{\n public readonly window: ImGuiWindow;\n constructor(window: ImGuiWindow, tex:PIXI.RenderTexture)\n {\n super();\n this.pluginName = \"imgui_renderer\";\n this.window = window;\n }\n}\n\nexport class ImGuiWindow extends PIXI.Container\n{\n public readonly ctx: ImGui.ImGuiContext;\n public readonly io: ImGui.ImGuiIO;\n private sizeX: number;\n private sizeY: number;\n public getSizeX(): number { return this.sizeX; }\n public getSizeY(): number { return this.sizeY; }\n\n private baseTex: PIXI.BaseRenderTexture = new PIXI.BaseRenderTexture({scaleMode: PIXI.SCALE_MODES.LINEAR, resolution: 1, type: PIXI.TYPES.FLOAT, format: PIXI.FORMATS.RGBA});\n private tex: PIXI.RenderTexture = new PIXI.RenderTexture(this.baseTex);\n \n private surface: PIXI.Sprite = new PIXI.Sprite(this.tex);\n private imgui: ImGuiWindowLayer = new ImGuiWindowLayer(this, this.tex);\n \n private update: (dt: number) => void;\n constructor(sizeX: number, sizeY: number, update: (dt: number) => void)\n {\n super();\n\n this.ctx = ImGui.CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts);\n ImGui.SetCurrentContext(this.ctx);\n this.io = ImGui.GetIO();\n\n contexts.push(this.ctx);\n contextIOs.push(this.io);\n\n if (contexts.length == 1)\n {\n CreateFontsTexture();\n }\n\n if (typeof(window) !== \"undefined\") {\n ImGui.LoadIniSettingsFromMemory(window.localStorage.getItem(\"imgui.ini\") || \"\");\n }\n\n if (typeof(navigator) !== \"undefined\") {\n this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null;\n }\n\n this.io.SetClipboardTextFn = (user_data: any, text: string): void => {\n clipboard_text = text;\n // console.log(`set clipboard_text: \"${clipboard_text}\"`);\n if (typeof navigator !== \"undefined\" && typeof (navigator as any).clipboard !== \"undefined\") {\n // console.log(`clipboard.writeText: \"${clipboard_text}\"`);\n (navigator as any).clipboard.writeText(clipboard_text).then((): void => {\n // console.log(`clipboard.writeText: \"${clipboard_text}\" done.`);\n });\n }\n };\n this.io.GetClipboardTextFn = (user_data: any): string => {\n // if (typeof navigator !== \"undefined\" && typeof (navigator as any).clipboard !== \"undefined\") {\n // console.log(`clipboard.readText: \"${clipboard_text}\"`);\n // (navigator as any).clipboard.readText().then((text: string): void => {\n // clipboard_text = text;\n // console.log(`clipboard.readText: \"${clipboard_text}\" done.`);\n // });\n // }\n // console.log(`get clipboard_text: \"${clipboard_text}\"`);\n return clipboard_text;\n };\n this.io.ClipboardUserData = null;\n\n // Setup back-end capabilities flags\n this.io.BackendFlags |= ImGui.BackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional)\n\n // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array.\n this.io.KeyMap[ImGui.Key.Tab] = 9;\n this.io.KeyMap[ImGui.Key.LeftArrow] = 37;\n this.io.KeyMap[ImGui.Key.RightArrow] = 39;\n this.io.KeyMap[ImGui.Key.UpArrow] = 38;\n this.io.KeyMap[ImGui.Key.DownArrow] = 40;\n this.io.KeyMap[ImGui.Key.PageUp] = 33;\n this.io.KeyMap[ImGui.Key.PageDown] = 34;\n this.io.KeyMap[ImGui.Key.Home] = 36;\n this.io.KeyMap[ImGui.Key.End] = 35;\n this.io.KeyMap[ImGui.Key.Insert] = 45;\n this.io.KeyMap[ImGui.Key.Delete] = 46;\n this.io.KeyMap[ImGui.Key.Backspace] = 8;\n this.io.KeyMap[ImGui.Key.Space] = 32;\n this.io.KeyMap[ImGui.Key.Enter] = 13;\n this.io.KeyMap[ImGui.Key.Escape] = 27;\n this.io.KeyMap[ImGui.Key.A] = 65;\n this.io.KeyMap[ImGui.Key.C] = 67;\n this.io.KeyMap[ImGui.Key.V] = 86;\n this.io.KeyMap[ImGui.Key.X] = 88;\n this.io.KeyMap[ImGui.Key.Y] = 89;\n this.io.KeyMap[ImGui.Key.Z] = 90;\n\n this.update = update;\n this.resize(sizeX, sizeY);\n this.imgui.pluginName = 'imgui_renderer';\n this.addChild(this.surface);\n app.renderer.plugins.interaction.addListener(\"mousedown\", this.mouseDown.bind(this));\n app.renderer.plugins.interaction.addListener(\"mouseup\", this.mouseUp.bind(this));\n app.ticker.add(this.updateInternal.bind(this));\n\n this.interactive = false;\n this.interactiveChildren = true;\n\n this.surface.interactive = false;\n }\n withContext(cb: () => void)\n {\n ImGui.SetCurrentContext(this.ctx);\n cb();\n }\n mouseDown(e: PIXI.interaction.InteractionEvent): void\n {\n if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface)\n {\n this.io.MouseDown[mouse_button_map[0]] = true;\n }\n }\n mouseUp(e: PIXI.interaction.InteractionEvent): void\n {\n if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface)\n {\n this.io.MouseDown[mouse_button_map[0]] = false;\n }\n }\n resize(sizeX: number, sizeY: number)\n {\n this.sizeX = sizeX;\n this.sizeY = sizeY;\n this.baseTex.resize(sizeX, sizeY);\n this.tex.frame = new PIXI.Rectangle(0, 0, this.baseTex.width, this.baseTex.height);\n }\n updateInternal(deltaTime: number)\n {\n const dt: number = deltaTime * 1 / (1000 * PIXI.settings.TARGET_FPMS);\n\n ImGui.SetCurrentContext(this.ctx);\n\n if (this.io.WantSaveIniSettings) {\n this.io.WantSaveIniSettings = false;\n if (typeof(window) !== \"undefined\") {\n window.localStorage.setItem(\"imgui.ini\", ImGui.SaveIniSettingsToMemory());\n }\n }\n\n this.io.DisplaySize.x = this.sizeX;\n this.io.DisplaySize.y = this.sizeY;\n this.io.DisplayFramebufferScale.x = 1;\n this.io.DisplayFramebufferScale.y = 1;\n\n this.io.DeltaTime = dt;\n\n let localPos: PIXI.Point = this.toLocal(app.renderer.plugins.interaction.mouse.global);\n if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY)\n {\n localPos = new PIXI.Point(-Number.MAX_VALUE, -Number.MAX_VALUE);\n }\n this.io.MousePos.x = localPos.x;\n this.io.MousePos.y = localPos.y;\n\n if (this.io.WantSetMousePos) {\n console.log(\"TODO: MousePos\", this.io.MousePos.x, this.io.MousePos.y);\n }\n\n if (typeof(document) !== \"undefined\") {\n if (this.io.MouseDrawCursor) {\n document.body.style.cursor = \"none\";\n } else {\n switch (ImGui.GetMouseCursor()) {\n case ImGui.MouseCursor.None: document.body.style.cursor = \"none\"; break;\n default: case ImGui.MouseCursor.Arrow: document.body.style.cursor = \"default\"; break;\n case ImGui.MouseCursor.TextInput: document.body.style.cursor = \"text\"; break; // When hovering over InputText, etc.\n case ImGui.MouseCursor.ResizeAll: document.body.style.cursor = \"move\"; break; // Unused\n case ImGui.MouseCursor.ResizeNS: document.body.style.cursor = \"ns-resize\"; break; // When hovering over an horizontal border\n case ImGui.MouseCursor.ResizeEW: document.body.style.cursor = \"ew-resize\"; break; // When hovering over a vertical border or a column\n case ImGui.MouseCursor.ResizeNESW: document.body.style.cursor = \"nesw-resize\"; break; // When hovering over the bottom-left corner of a window\n case ImGui.MouseCursor.ResizeNWSE: document.body.style.cursor = \"nwse-resize\"; break; // When hovering over the bottom-right corner of a window\n case ImGui.MouseCursor.Hand: document.body.style.cursor = \"move\"; break;\n }\n }\n }\n\n // Gamepad navigation mapping [BETA]\n for (let i = 0; i < this.io.NavInputs.length; ++i) {\n this.io.NavInputs[i] = 0.0;\n }\n if (this.io.ConfigFlags & ImGui.ConfigFlags.NavEnableGamepad) {\n // Update gamepad inputs\n const gamepads: (Gamepad | null)[] = (typeof(navigator) !== \"undefined\" && typeof(navigator.getGamepads) === \"function\") ? navigator.getGamepads() : [];\n for (let i = 0; i < gamepads.length; ++i) {\n const gamepad: Gamepad | null = gamepads[i];\n if (!gamepad) { continue; }\n const buttons_count: number = gamepad.buttons.length;\n const axes_count: number = gamepad.axes.length;\n const MAP_BUTTON = function(NAV_NO: number, BUTTON_NO: number): void {\n if (!gamepad) { return; }\n if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed)\n this.io.NavInputs[NAV_NO] = 1.0;\n }\n const MAP_ANALOG = function(NAV_NO: number, AXIS_NO: number, V0: number, V1: number): void {\n if (!gamepad) { return; }\n let v: number = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0;\n v = (v - V0) / (V1 - V0);\n if (v > 1.0) v = 1.0;\n if (this.io.NavInputs[NAV_NO] < v) this.io.NavInputs[NAV_NO] = v;\n }\n // TODO: map input based on vendor and product id\n // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id\n const match: RegExpMatchArray | null = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/);\n const match_chrome: RegExpMatchArray | null = gamepad.id.match(/^.*\\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\\).*$/);\n const vendor: string = (match && match[1]) || (match_chrome && match_chrome[1]) || \"0000\";\n const product: string = (match && match[2]) || (match_chrome && match_chrome[2]) || \"0000\";\n switch (vendor + product) {\n case \"046dc216\": // Logitech Logitech Dual Action (Vendor: 046d Product: c216)\n MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 2); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 0); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_ANALOG(ImGui.NavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left\n MAP_ANALOG(ImGui.NavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right\n MAP_ANALOG(ImGui.NavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up\n MAP_ANALOG(ImGui.NavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n case \"046dc21d\": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d)\n MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left\n MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right\n MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up\n MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_ANALOG(ImGui.NavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT\n MAP_ANALOG(ImGui.NavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n case \"2dc86001\": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001)\n case \"2dc86101\": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101)\n MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 0); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 4); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_ANALOG(ImGui.NavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left\n MAP_ANALOG(ImGui.NavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right\n MAP_ANALOG(ImGui.NavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up\n MAP_ANALOG(ImGui.NavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 6); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 7); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 8); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 9); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n default: // standard gamepad: https://w3c.github.io/gamepad/#remapping\n MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A\n MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B\n MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X\n MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y\n MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left\n MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right\n MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up\n MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down\n MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB\n MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB\n MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT\n MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT\n MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9);\n MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9);\n MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9);\n break;\n }\n }\n }\n\n ImGui.NewFrame();\n\n this.update(dt);\n\n ImGui.EndFrame();\n ImGui.Render();\n\n app.renderer.render(this.imgui, this.tex);\n\n this.surface.interactive = this.io.WantCaptureMouse;\n }\n}\n\nlet canvas: HTMLCanvasElement | null = null;\n\n//export let gl: WebGL2RenderingContext | null = null;\nlet g_ShaderHandle: WebGLProgram | null = null;\nlet g_VertHandle: WebGLShader | null = null;\nlet g_FragHandle: WebGLShader | null = null;\nlet g_AttribLocationTex: WebGLUniformLocation | null = null;\nlet g_AttribLocationProjMtx: WebGLUniformLocation | null = null;\nlet g_AttribLocationPosition: GLint = -1;\nlet g_AttribLocationUV: GLint = -1;\nlet g_AttribLocationColor: GLint = -1;\nlet g_VaoHandle: WebGLVertexArrayObject = null;\nlet g_VboHandle: WebGLBuffer | null = null;\nlet g_ElementsHandle: WebGLBuffer | null = null;\nlet g_FontTexture: WebGLTexture | null = null;\n\nfunction document_on_copy(event: ClipboardEvent): void {\n if (event.clipboardData) {\n event.clipboardData.setData(\"text/plain\", clipboard_text);\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction document_on_cut(event: ClipboardEvent): void {\n if (event.clipboardData) {\n event.clipboardData.setData(\"text/plain\", clipboard_text);\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction document_on_paste(event: ClipboardEvent): void {\n if (event.clipboardData) {\n clipboard_text = event.clipboardData.getData(\"text/plain\");\n }\n // console.log(`${event.type}: \"${clipboard_text}\"`);\n event.preventDefault();\n}\n\nfunction window_on_gamepadconnected(event: any /* GamepadEvent */): void {\n console.log(\"Gamepad connected at index %d: %s. %d buttons, %d axes.\",\n event.gamepad.index, event.gamepad.id,\n event.gamepad.buttons.length, event.gamepad.axes.length);\n}\n\nfunction window_on_gamepaddisconnected(event: any /* GamepadEvent */): void {\n console.log(\"Gamepad disconnected at index %d: %s.\",\n event.gamepad.index, event.gamepad.id);\n}\n\nfunction canvas_on_blur(event: FocusEvent): void {\n for (var io of contextIOs)\n {\n io.KeyCtrl = false;\n io.KeyShift = false;\n io.KeyAlt = false;\n io.KeySuper = false;\n for (let i = 0; i < io.KeysDown.length; ++i) {\n io.KeysDown[i] = false;\n }\n for (let i = 0; i < io.MouseDown.length; ++i) {\n io.MouseDown[i] = false;\n }\n }\n}\n\nfunction canvas_on_keydown(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.KeyCtrl = event.ctrlKey;\n io.KeyShift = event.shiftKey;\n io.KeyAlt = event.altKey;\n io.KeySuper = event.metaKey;\n ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown));\n io.KeysDown[event.keyCode] = true;\n // forward to the keypress event\n if (/*io.WantCaptureKeyboard ||*/ event.key === \"Tab\") {\n event.preventDefault();\n }\n }\n}\n\nfunction canvas_on_keyup(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.KeyCtrl = event.ctrlKey;\n io.KeyShift = event.shiftKey;\n io.KeyAlt = event.altKey;\n io.KeySuper = event.metaKey;\n ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown));\n io.KeysDown[event.keyCode] = false;\n if (io.WantCaptureKeyboard) {\n event.preventDefault();\n }\n }\n}\n\nfunction canvas_on_keypress(event: KeyboardEvent): void {\n // console.log(event.type, event.key, event.keyCode);\n for (var io of contextIOs)\n {\n io.AddInputCharacter(event.charCode);\n if (io.WantCaptureKeyboard) {\n event.preventDefault();\n }\n }\n}\n\n// MouseEvent.button\n// A number representing a given button:\n// 0: Main button pressed, usually the left button or the un-initialized state\n// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present)\n// 2: Secondary button pressed, usually the right button\n// 3: Fourth button, typically the Browser Back button\n// 4: Fifth button, typically the Browser Forward button\nconst mouse_button_map: number[] = [ 0, 2, 1, 3, 4 ];\n\nfunction canvas_on_contextmenu(event: Event): void {\n for (var io of contextIOs)\n {\n if (io.WantCaptureMouse) { event.preventDefault(); }\n }\n}\n\nfunction canvas_on_wheel(event: WheelEvent): void {\n for (var io of contextIOs)\n {\n let scale: number = 1.0;\n switch (event.deltaMode) {\n case event.DOM_DELTA_PIXEL: scale = 0.01; break;\n case event.DOM_DELTA_LINE: scale = 0.2; break;\n case event.DOM_DELTA_PAGE: scale = 1.0; break;\n }\n io.MouseWheelH = event.deltaX * scale;\n io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text.\n if (io.WantCaptureMouse) {\n event.preventDefault();\n }\n }\n}\n\nexport function PrePIXIInit(): void\n{\n PIXI.Renderer.registerPlugin(\"imgui_renderer\", U.fromConstructor(ImGuiImplInternalRenderer));\n}\n\nexport function Init(_app: PIXI.Application): void {\n // Setup Dear ImGui binding\n ImGui.IMGUI_CHECKVERSION();\n\n if (typeof(document) !== \"undefined\") {\n document.body.addEventListener(\"copy\", document_on_copy);\n document.body.addEventListener(\"cut\", document_on_cut);\n document.body.addEventListener(\"paste\", document_on_paste);\n }\n\n if (typeof(window) !== \"undefined\") {\n window.addEventListener(\"gamepadconnected\", window_on_gamepadconnected);\n window.addEventListener(\"gamepaddisconnected\", window_on_gamepaddisconnected);\n }\n\n app = _app;\n gl = (app.renderer as any).gl;\n canvas = app.view;\n\n gl.getExtension(\"EXT_color_buffer_float\");\n\n if (canvas !== null) {\n canvas.style.touchAction = \"none\"; // Disable browser handling of all panning and zooming gestures.\n canvas.addEventListener(\"blur\", canvas_on_blur);\n canvas.addEventListener(\"keydown\", canvas_on_keydown);\n canvas.addEventListener(\"keyup\", canvas_on_keyup);\n canvas.addEventListener(\"keypress\", canvas_on_keypress);\n canvas.addEventListener(\"contextmenu\", canvas_on_contextmenu);\n canvas.addEventListener(\"wheel\", canvas_on_wheel);\n }\n\n CreateDeviceObjects();\n}\n\nexport function Shutdown(): void {\n DestroyDeviceObjects();\n\n if (canvas !== null) {\n canvas.removeEventListener(\"blur\", canvas_on_blur);\n canvas.removeEventListener(\"keydown\", canvas_on_keydown);\n canvas.removeEventListener(\"keyup\", canvas_on_keyup);\n canvas.removeEventListener(\"keypress\", canvas_on_keypress);\n canvas.removeEventListener(\"contextmenu\", canvas_on_contextmenu);\n canvas.removeEventListener(\"wheel\", canvas_on_wheel);\n }\n\n app = null;\n canvas = null;\n\n if (typeof(window) !== \"undefined\") {\n window.removeEventListener(\"gamepadconnected\", window_on_gamepadconnected);\n window.removeEventListener(\"gamepaddisconnected\", window_on_gamepaddisconnected);\n }\n\n if (typeof(document) !== \"undefined\") {\n document.body.removeEventListener(\"copy\", document_on_copy);\n document.body.removeEventListener(\"cut\", document_on_cut);\n document.body.removeEventListener(\"paste\", document_on_paste);\n }\n}\n\nfunction CreateFontsTexture(): void {\n const io = ImGui.GetIO();\n\n // Backup GL state\n const last_texture: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D);\n\n // Build texture atlas\n // const width: number = 256;\n // const height: number = 256;\n // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff);\n const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory.\n // console.log(`font texture ${width} x ${height} @ ${pixels.length}`);\n\n // Upload texture to graphics system\n g_FontTexture = gl && gl.createTexture();\n gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture);\n gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);\n gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR);\n // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2\n gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels);\n\n // Store our identifier\n io.Fonts.TexID = g_FontTexture || { foo: \"bar\" };\n // console.log(\"font texture id\", g_FontTexture);\n\n // Restore modified GL state\n gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture);\n}\n\nfunction DestroyFontsTexture(): void {\n const io = ImGui.GetIO();\n io.Fonts.TexID = null;\n gl && gl.deleteTexture(g_FontTexture); g_FontTexture = null;\n}\n\nfunction CreateDeviceObjects(): void {\n const vertex_shader: string[] = [\n \"#version 300 es\",\n \"uniform mat4 ProjMtx;\",\n \"in vec2 Position;\",\n \"in vec2 UV;\",\n \"in vec4 Color;\",\n \"out vec2 Frag_UV;\",\n \"out vec4 Frag_Color;\",\n \"void main() {\",\n \"\tFrag_UV = UV;\",\n \"\tFrag_Color = Color;\",\n \"\tgl_Position = ProjMtx * vec4(Position.xy,0,1);\",\n \"}\",\n ];\n\n const fragment_shader: string[] = [\n \"#version 300 es\",\n \"precision mediump float;\", // WebGL requires precision specifiers\n \"uniform sampler2D Texture;\",\n \"in vec2 Frag_UV;\",\n \"in vec4 Frag_Color;\",\n \"out vec4 OutColor;\",\n \"void main() {\",\n \"\tOutColor = Frag_Color * texture(Texture, Frag_UV);\",\n \"}\",\n ];\n\n g_ShaderHandle = gl && gl.createProgram();\n g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER);\n g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER);\n gl && gl.shaderSource(g_VertHandle as WebGLShader, vertex_shader.join(\"\\n\"));\n gl && gl.shaderSource(g_FragHandle as WebGLShader, fragment_shader.join(\"\\n\"));\n gl && gl.compileShader(g_VertHandle as WebGLShader);\n gl && gl.compileShader(g_FragHandle as WebGLShader);\n gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_VertHandle as WebGLShader);\n gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_FragHandle as WebGLShader);\n gl && gl.linkProgram(g_ShaderHandle as WebGLProgram);\n\n g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, \"Texture\");\n g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, \"ProjMtx\");\n g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"Position\") || 0;\n g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"UV\") || 0;\n g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, \"Color\") || 0;\n\n g_VaoHandle = gl && gl.createVertexArray();\n g_VboHandle = gl && gl.createBuffer();\n g_ElementsHandle = gl && gl.createBuffer();\n\n}\n\nfunction DestroyDeviceObjects(): void {\n DestroyFontsTexture();\n\n gl && gl.deleteVertexArray(g_VaoHandle); g_VaoHandle = null;\n gl && gl.deleteBuffer(g_VboHandle); g_VboHandle = null;\n gl && gl.deleteBuffer(g_ElementsHandle); g_ElementsHandle = null;\n\n g_AttribLocationTex = null;\n g_AttribLocationProjMtx = null;\n g_AttribLocationPosition = -1;\n g_AttribLocationUV = -1;\n g_AttribLocationColor = -1;\n\n gl && gl.deleteProgram(g_ShaderHandle); g_ShaderHandle = null;\n gl && gl.deleteShader(g_VertHandle); g_VertHandle = null;\n gl && gl.deleteShader(g_FragHandle); g_FragHandle = null;\n}\n"],"names":["require","global","this","Polyfill","commonjsGlobal","delimiter","hasOwnProperty","map","parse","qsParse","qsStringify","sign","url","_url","prototypeAccessors","prototypeAccessors$1","EventEmitter","staticAccessors","Buffer","map$1","prototypeAccessors$2","prototypeAccessors$3","prototypeAccessors$4","prototypeAccessors$5","staticAccessors$1","earcut","tempAnchor","Resource","Url","Loader","Loader$1","middleware","vertex","fragment","tempPoint","tempMat","defaultFilterVertex","PIXI.ObjectRenderer","ImGui.GetDrawData","ImGui.ImDrawVertSize","ImGui.ImDrawVertPosOffset","ImGui.ImDrawVertUVOffset","ImGui.ImDrawVertColOffset","ImGui.ImDrawVert","ImGui.ImVec4","ImGui.ImDrawIdxSize","PIXI.Sprite","PIXI.Container","PIXI.BaseRenderTexture","PIXI.SCALE_MODES","PIXI.TYPES","PIXI.FORMATS","PIXI.RenderTexture","ImGui.CreateContext","ImGui.SetCurrentContext","ImGui.GetIO","ImGui.LoadIniSettingsFromMemory","ImGui.BackendFlags","ImGui.Key","PIXI.Rectangle","PIXI.settings","ImGui.SaveIniSettingsToMemory","PIXI.Point","ImGui.GetMouseCursor","ImGui.MouseCursor","ImGui.ConfigFlags","ImGui.NavInput","ImGui.NewFrame","ImGui.EndFrame","ImGui.Render","canvas","ImGui.IM_ASSERT","ImGui.IM_ARRAYSIZE","PIXI.Renderer","U.fromConstructor","ImGui.IMGUI_CHECKVERSION"],"mappings":"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C,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGhF,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QACzE,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;QAGhF,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;;;QAGtF,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC9E,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAA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"} \ No newline at end of file diff --git a/imgui_impl.ts b/imgui_impl.ts new file mode 100644 index 0000000..a5dad20 --- /dev/null +++ b/imgui_impl.ts @@ -0,0 +1,797 @@ +import * as ImGui from "imgui-js"; +import { ImVec2 } from "imgui-js"; +import * as PIXI from "pixi.js"; +import * as U from "./utils"; + +let clipboard_text: string = ""; + +const contexts: ImGui.ImGuiContext[] = []; +const contextIOs: ImGui.ImGuiIO[] = []; +let isFirstWindow: boolean = true; + +class ImGuiImplInternalRenderer extends PIXI.ObjectRenderer +{ + constructor(r: PIXI.Renderer) + { + super(r); + } + render(owner: PIXI.DisplayObject): void + { + if (!(owner instanceof ImGuiWindowLayer)) return; + + const window: ImGuiWindow = (owner as ImGuiWindowLayer).window; + + const io: ImGui.ImGuiIO = window.io; + const draw_data: ImGui.ImDrawData = ImGui.GetDrawData(); + if (draw_data === null) { throw new Error(); } + + gl || console.log(draw_data); + + // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) + const fb_width: number = io.DisplaySize.x * io.DisplayFramebufferScale.x; + const fb_height: number = io.DisplaySize.y * io.DisplayFramebufferScale.y; + if (fb_width === 0 || fb_height === 0) { + return; + } + draw_data.ScaleClipRects(io.DisplayFramebufferScale); + + // Backup GL state + const last_program: WebGLProgram | null = gl && gl.getParameter(gl.CURRENT_PROGRAM) || null; + const last_active_texture: GLenum | null = gl && gl.getParameter(gl.ACTIVE_TEXTURE) || null; + gl && gl.activeTexture(gl.TEXTURE0); + const last_texture0: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D) || null; + const last_vertex_array: WebGLVertexArrayObject | null = gl && gl.getParameter(gl.VERTEX_ARRAY_BINDING) || null; + const last_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ARRAY_BUFFER_BINDING) || null; + const last_element_array_buffer: WebGLBuffer | null = gl && gl.getParameter(gl.ELEMENT_ARRAY_BUFFER_BINDING) || null; + // GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode); + const last_viewport: Int32Array | null = gl && gl.getParameter(gl.VIEWPORT) || null; + const last_scissor_box: Int32Array | null = gl && gl.getParameter(gl.SCISSOR_BOX) || null; + const last_blend_src_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_RGB) || null; + const last_blend_dst_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_RGB) || null; + const last_blend_src_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_SRC_ALPHA) || null; + const last_blend_dst_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_DST_ALPHA) || null; + const last_blend_equation_rgb: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_RGB) || null; + const last_blend_equation_alpha: GLenum | null = gl && gl.getParameter(gl.BLEND_EQUATION_ALPHA) || null; + const last_enable_blend: GLboolean | null = gl && gl.getParameter(gl.BLEND) || null; + const last_enable_cull_face: GLboolean | null = gl && gl.getParameter(gl.CULL_FACE) || null; + const last_enable_depth_test: GLboolean | null = gl && gl.getParameter(gl.DEPTH_TEST) || null; + const last_enable_scissor_test: GLboolean | null = gl && gl.getParameter(gl.SCISSOR_TEST) || null; + + gl.clearColor(0, 0, 0, 0); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + + gl && gl.bindVertexArray(g_VaoHandle); + + // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill + gl && gl.enable(gl.BLEND); + gl && gl.blendEquation(gl.FUNC_ADD); + gl && gl.blendFuncSeparate(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE); + gl && gl.disable(gl.CULL_FACE); + gl && gl.disable(gl.DEPTH_TEST); + gl && gl.enable(gl.SCISSOR_TEST); + // glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + + // Setup viewport, orthographic projection matrix + // Our visible imgui space lies from draw_data->DisplayPps (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayMin is typically (0,0) for single viewport apps. + gl && gl.viewport(0, 0, fb_width, fb_height); + const L: number = draw_data.DisplayPos.x; + const R: number = draw_data.DisplayPos.x + draw_data.DisplaySize.x; + const T: number = draw_data.DisplayPos.y; + const B: number = draw_data.DisplayPos.y + draw_data.DisplaySize.y; + // we actually flip the bottom and top here to match with PIXI's texture usage + const ortho_projection: Float32Array = new Float32Array([ + 2.0 / (R - L), 0.0, 0.0, 0.0, + 0.0, 2.0 / (B - T), 0.0, 0.0, + 0.0, 0.0, -1.0, 0.0, + (R + L) / (L - R), (B + T) / (T - B), 0.0, 1.0, + ]); + gl && gl.useProgram(g_ShaderHandle); + gl && gl.uniform1i(g_AttribLocationTex, 0); + gl && g_AttribLocationProjMtx && gl.uniformMatrix4fv(g_AttribLocationProjMtx, false, ortho_projection); + + // Render command lists + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.enableVertexAttribArray(g_AttribLocationPosition); + gl && gl.enableVertexAttribArray(g_AttribLocationUV); + gl && gl.enableVertexAttribArray(g_AttribLocationColor); + + gl && gl.vertexAttribPointer(g_AttribLocationPosition, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertPosOffset); + gl && gl.vertexAttribPointer(g_AttribLocationUV, 2, gl.FLOAT, false, ImGui.ImDrawVertSize, ImGui.ImDrawVertUVOffset); + gl && gl.vertexAttribPointer(g_AttribLocationColor, 4, gl.UNSIGNED_BYTE, true, ImGui.ImDrawVertSize, ImGui.ImDrawVertColOffset); + + // Draw + const pos = draw_data.DisplayPos; + const idx_buffer_type: GLenum = gl && ((ImGui.ImDrawIdxSize === 4) ? gl.UNSIGNED_INT : gl.UNSIGNED_SHORT) || 0; + draw_data.IterateDrawLists((draw_list: ImGui.ImDrawList): void => { + gl || console.log(draw_list); + gl || console.log("VtxBuffer.length", draw_list.VtxBuffer.length); + gl || console.log("IdxBuffer.length", draw_list.IdxBuffer.length); + + let idx_buffer_offset: number = 0; + + gl && gl.bindBuffer(gl.ARRAY_BUFFER, g_VboHandle); + gl && gl.bufferData(gl.ARRAY_BUFFER, draw_list.VtxBuffer, gl.STREAM_DRAW); + gl && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, g_ElementsHandle); + gl && gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, draw_list.IdxBuffer, gl.STREAM_DRAW); + + draw_list.IterateDrawCmds((draw_cmd: ImGui.ImDrawCmd): void => { + gl || console.log(draw_cmd); + gl || console.log("ElemCount", draw_cmd.ElemCount); + gl || console.log("ClipRect", draw_cmd.ClipRect.x, draw_cmd.ClipRect.y, draw_cmd.ClipRect.z - draw_cmd.ClipRect.x, draw_cmd.ClipRect.w - draw_cmd.ClipRect.y); + gl || console.log("TextureId", draw_cmd.TextureId); + if (!gl) { + console.log("i: pos.x pos.y uv.x uv.y col"); + for (let i = 0; i < Math.min(3, draw_cmd.ElemCount); ++i) { + const view: ImGui.ImDrawVert = new ImGui.ImDrawVert(draw_list.VtxBuffer.buffer, draw_list.VtxBuffer.byteOffset + i * ImGui.ImDrawVertSize); + console.log(`${i}: ${view.pos[0].toFixed(2)} ${view.pos[1].toFixed(2)} ${view.uv[0].toFixed(5)} ${view.uv[1].toFixed(5)} ${("00000000" + view.col[0].toString(16)).substr(-8)}`); + } + } + + if (draw_cmd.UserCallback !== null) { + // User callback (registered via ImDrawList::AddCallback) + draw_cmd.UserCallback(draw_list, draw_cmd); + } else { + const clip_rect = new ImGui.ImVec4(draw_cmd.ClipRect.x - pos.x, draw_cmd.ClipRect.y - pos.y, draw_cmd.ClipRect.z - pos.x, draw_cmd.ClipRect.w - pos.y); + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0 && clip_rect.w >= 0.0) { + // Apply scissor/clipping rectangle + gl && gl.scissor(clip_rect.x, clip_rect.y, clip_rect.z - clip_rect.x, clip_rect.w - clip_rect.y); + + // Bind texture, Draw + gl && gl.bindTexture(gl.TEXTURE_2D, draw_cmd.TextureId); + gl && gl.drawElements(gl.TRIANGLES, draw_cmd.ElemCount, idx_buffer_type, idx_buffer_offset); + } + } + + idx_buffer_offset += draw_cmd.ElemCount * ImGui.ImDrawIdxSize; + }); + }); + + // Restore modified GL state + + gl && (last_program !== null) && gl.useProgram(last_program); + gl && (last_texture0 !== null) && gl.bindTexture(gl.TEXTURE_2D, last_texture0); + gl && (last_active_texture !== null) && gl.activeTexture(last_active_texture); + gl && gl.disableVertexAttribArray(g_AttribLocationPosition); + gl && gl.disableVertexAttribArray(g_AttribLocationUV); + gl && gl.disableVertexAttribArray(g_AttribLocationColor); + gl && (last_vertex_array !== null) && gl.bindVertexArray(last_vertex_array); + gl && (last_array_buffer !== null) && gl.bindBuffer(gl.ARRAY_BUFFER, last_array_buffer); + gl && (last_element_array_buffer !== null) && gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, last_element_array_buffer); + gl && (last_viewport !== null) && gl.viewport(last_viewport[0], last_viewport[1], last_viewport[2], last_viewport[3]); + gl && (last_scissor_box !== null) && gl.scissor(last_scissor_box[0], last_scissor_box[1], last_scissor_box[2], last_scissor_box[3]); + gl && (last_blend_equation_rgb !== null && last_blend_equation_alpha !== null) && gl.blendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha); + gl && (last_blend_src_rgb !== null && last_blend_src_alpha !== null && last_blend_dst_rgb !== null && last_blend_dst_alpha !== null) && gl.blendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); + gl && (last_enable_blend ? gl.enable(gl.BLEND) : gl.disable(gl.BLEND)); + gl && (last_enable_cull_face ? gl.enable(gl.CULL_FACE) : gl.disable(gl.CULL_FACE)); + gl && (last_enable_depth_test ? gl.enable(gl.DEPTH_TEST) : gl.disable(gl.DEPTH_TEST)); + gl && (last_enable_scissor_test ? gl.enable(gl.SCISSOR_TEST) : gl.disable(gl.SCISSOR_TEST)); + // glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]); + } +} + +let gl: WebGL2RenderingContext = null; +let app: PIXI.Application = null; + +class ImGuiWindowLayer extends PIXI.Sprite +{ + public readonly window: ImGuiWindow; + constructor(window: ImGuiWindow, tex:PIXI.RenderTexture) + { + super(); + this.pluginName = "imgui_renderer"; + this.window = window; + } +} + +export class ImGuiWindow extends PIXI.Container +{ + public readonly ctx: ImGui.ImGuiContext; + public readonly io: ImGui.ImGuiIO; + private sizeX: number; + private sizeY: number; + public getSizeX(): number { return this.sizeX; } + public getSizeY(): number { return this.sizeY; } + + private baseTex: PIXI.BaseRenderTexture = new PIXI.BaseRenderTexture({scaleMode: PIXI.SCALE_MODES.LINEAR, resolution: 1, type: PIXI.TYPES.FLOAT, format: PIXI.FORMATS.RGBA}); + private tex: PIXI.RenderTexture = new PIXI.RenderTexture(this.baseTex); + + private surface: PIXI.Sprite = new PIXI.Sprite(this.tex); + private imgui: ImGuiWindowLayer = new ImGuiWindowLayer(this, this.tex); + + private update: (dt: number) => void; + constructor(sizeX: number, sizeY: number, update: (dt: number) => void) + { + super(); + + this.ctx = ImGui.CreateContext(contextIOs.length == 0 ? null : contextIOs[0].Fonts); + ImGui.SetCurrentContext(this.ctx); + this.io = ImGui.GetIO(); + + contexts.push(this.ctx); + contextIOs.push(this.io); + + if (contexts.length == 1) + { + CreateFontsTexture(); + } + + if (typeof(window) !== "undefined") { + ImGui.LoadIniSettingsFromMemory(window.localStorage.getItem("imgui.ini") || ""); + } + + if (typeof(navigator) !== "undefined") { + this.io.ConfigMacOSXBehaviors = navigator.platform.match(/Mac/) !== null; + } + + this.io.SetClipboardTextFn = (user_data: any, text: string): void => { + clipboard_text = text; + // console.log(`set clipboard_text: "${clipboard_text}"`); + if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.writeText: "${clipboard_text}"`); + (navigator as any).clipboard.writeText(clipboard_text).then((): void => { + // console.log(`clipboard.writeText: "${clipboard_text}" done.`); + }); + } + }; + this.io.GetClipboardTextFn = (user_data: any): string => { + // if (typeof navigator !== "undefined" && typeof (navigator as any).clipboard !== "undefined") { + // console.log(`clipboard.readText: "${clipboard_text}"`); + // (navigator as any).clipboard.readText().then((text: string): void => { + // clipboard_text = text; + // console.log(`clipboard.readText: "${clipboard_text}" done.`); + // }); + // } + // console.log(`get clipboard_text: "${clipboard_text}"`); + return clipboard_text; + }; + this.io.ClipboardUserData = null; + + // Setup back-end capabilities flags + this.io.BackendFlags |= ImGui.BackendFlags.HasMouseCursors; // We can honor GetMouseCursor() values (optional) + + // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array. + this.io.KeyMap[ImGui.Key.Tab] = 9; + this.io.KeyMap[ImGui.Key.LeftArrow] = 37; + this.io.KeyMap[ImGui.Key.RightArrow] = 39; + this.io.KeyMap[ImGui.Key.UpArrow] = 38; + this.io.KeyMap[ImGui.Key.DownArrow] = 40; + this.io.KeyMap[ImGui.Key.PageUp] = 33; + this.io.KeyMap[ImGui.Key.PageDown] = 34; + this.io.KeyMap[ImGui.Key.Home] = 36; + this.io.KeyMap[ImGui.Key.End] = 35; + this.io.KeyMap[ImGui.Key.Insert] = 45; + this.io.KeyMap[ImGui.Key.Delete] = 46; + this.io.KeyMap[ImGui.Key.Backspace] = 8; + this.io.KeyMap[ImGui.Key.Space] = 32; + this.io.KeyMap[ImGui.Key.Enter] = 13; + this.io.KeyMap[ImGui.Key.Escape] = 27; + this.io.KeyMap[ImGui.Key.A] = 65; + this.io.KeyMap[ImGui.Key.C] = 67; + this.io.KeyMap[ImGui.Key.V] = 86; + this.io.KeyMap[ImGui.Key.X] = 88; + this.io.KeyMap[ImGui.Key.Y] = 89; + this.io.KeyMap[ImGui.Key.Z] = 90; + + this.update = update; + this.resize(sizeX, sizeY); + this.imgui.pluginName = 'imgui_renderer'; + this.addChild(this.surface); + app.renderer.plugins.interaction.addListener("mousedown", this.mouseDown.bind(this)); + app.renderer.plugins.interaction.addListener("mouseup", this.mouseUp.bind(this)); + app.ticker.add(this.updateInternal.bind(this)); + + this.interactive = false; + this.interactiveChildren = true; + + this.surface.interactive = false; + } + withContext(cb: () => void) + { + ImGui.SetCurrentContext(this.ctx); + cb(); + } + mouseDown(e: PIXI.interaction.InteractionEvent): void + { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) + { + this.io.MouseDown[mouse_button_map[0]] = true; + } + } + mouseUp(e: PIXI.interaction.InteractionEvent): void + { + if (!this.io.WantCaptureMouse || app.renderer.plugins.interaction.hitTest(app.renderer.plugins.interaction.mouse.global) == this.surface) + { + this.io.MouseDown[mouse_button_map[0]] = false; + } + } + resize(sizeX: number, sizeY: number) + { + this.sizeX = sizeX; + this.sizeY = sizeY; + this.baseTex.resize(sizeX, sizeY); + this.tex.frame = new PIXI.Rectangle(0, 0, this.baseTex.width, this.baseTex.height); + } + updateInternal(deltaTime: number) + { + const dt: number = deltaTime * 1 / (1000 * PIXI.settings.TARGET_FPMS); + + ImGui.SetCurrentContext(this.ctx); + + if (this.io.WantSaveIniSettings) { + this.io.WantSaveIniSettings = false; + if (typeof(window) !== "undefined") { + window.localStorage.setItem("imgui.ini", ImGui.SaveIniSettingsToMemory()); + } + } + + this.io.DisplaySize.x = this.sizeX; + this.io.DisplaySize.y = this.sizeY; + this.io.DisplayFramebufferScale.x = 1; + this.io.DisplayFramebufferScale.y = 1; + + this.io.DeltaTime = dt; + + let localPos: PIXI.Point = this.toLocal(app.renderer.plugins.interaction.mouse.global); + if (localPos.x < 0 || localPos.y < 0 || localPos.x >= this.sizeX || localPos.y >= this.sizeY) + { + localPos = new PIXI.Point(-Number.MAX_VALUE, -Number.MAX_VALUE); + } + this.io.MousePos.x = localPos.x; + this.io.MousePos.y = localPos.y; + + if (this.io.WantSetMousePos) { + console.log("TODO: MousePos", this.io.MousePos.x, this.io.MousePos.y); + } + + if (typeof(document) !== "undefined") { + if (this.io.MouseDrawCursor) { + document.body.style.cursor = "none"; + } else { + switch (ImGui.GetMouseCursor()) { + case ImGui.MouseCursor.None: document.body.style.cursor = "none"; break; + default: case ImGui.MouseCursor.Arrow: document.body.style.cursor = "default"; break; + case ImGui.MouseCursor.TextInput: document.body.style.cursor = "text"; break; // When hovering over InputText, etc. + case ImGui.MouseCursor.ResizeAll: document.body.style.cursor = "move"; break; // Unused + case ImGui.MouseCursor.ResizeNS: document.body.style.cursor = "ns-resize"; break; // When hovering over an horizontal border + case ImGui.MouseCursor.ResizeEW: document.body.style.cursor = "ew-resize"; break; // When hovering over a vertical border or a column + case ImGui.MouseCursor.ResizeNESW: document.body.style.cursor = "nesw-resize"; break; // When hovering over the bottom-left corner of a window + case ImGui.MouseCursor.ResizeNWSE: document.body.style.cursor = "nwse-resize"; break; // When hovering over the bottom-right corner of a window + case ImGui.MouseCursor.Hand: document.body.style.cursor = "move"; break; + } + } + } + + // Gamepad navigation mapping [BETA] + for (let i = 0; i < this.io.NavInputs.length; ++i) { + this.io.NavInputs[i] = 0.0; + } + if (this.io.ConfigFlags & ImGui.ConfigFlags.NavEnableGamepad) { + // Update gamepad inputs + const gamepads: (Gamepad | null)[] = (typeof(navigator) !== "undefined" && typeof(navigator.getGamepads) === "function") ? navigator.getGamepads() : []; + for (let i = 0; i < gamepads.length; ++i) { + const gamepad: Gamepad | null = gamepads[i]; + if (!gamepad) { continue; } + const buttons_count: number = gamepad.buttons.length; + const axes_count: number = gamepad.axes.length; + const MAP_BUTTON = function(NAV_NO: number, BUTTON_NO: number): void { + if (!gamepad) { return; } + if (buttons_count > BUTTON_NO && gamepad.buttons[BUTTON_NO].pressed) + this.io.NavInputs[NAV_NO] = 1.0; + } + const MAP_ANALOG = function(NAV_NO: number, AXIS_NO: number, V0: number, V1: number): void { + if (!gamepad) { return; } + let v: number = (axes_count > AXIS_NO) ? gamepad.axes[AXIS_NO] : V0; + v = (v - V0) / (V1 - V0); + if (v > 1.0) v = 1.0; + if (this.io.NavInputs[NAV_NO] < v) this.io.NavInputs[NAV_NO] = v; + } + // TODO: map input based on vendor and product id + // https://developer.mozilla.org/en-US/docs/Web/API/Gamepad/id + const match: RegExpMatchArray | null = gamepad.id.match(/^([0-9a-f]{4})-([0-9a-f]{4})-.*$/); + const match_chrome: RegExpMatchArray | null = gamepad.id.match(/^.*\(.*Vendor: ([0-9a-f]{4}) Product: ([0-9a-f]{4})\).*$/); + const vendor: string = (match && match[1]) || (match_chrome && match_chrome[1]) || "0000"; + const product: string = (match && match[2]) || (match_chrome && match_chrome[2]) || "0000"; + switch (vendor + product) { + case "046dc216": // Logitech Logitech Dual Action (Vendor: 046d Product: c216) + MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 2); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 0); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGui.NavInput.DpadLeft, 4, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGui.NavInput.DpadRight, 4, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGui.NavInput.DpadUp, 5, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGui.NavInput.DpadDown, 5, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + case "046dc21d": // Logitech Gamepad F310 (STANDARD GAMEPAD Vendor: 046d Product: c21d) + MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_ANALOG(ImGui.NavInput.TweakSlow, 6, +0.3, +0.9); // L2 / LT + MAP_ANALOG(ImGui.NavInput.TweakFast, 7, +0.3, +0.9); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + case "2dc86001": // 8Bitdo SN30 Pro 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6001) + case "2dc86101": // 8Bitdo SN30 Pro (Vendor: 2dc8 Product: 6101) + MAP_BUTTON(ImGui.NavInput.Activate, 1); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 0); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 4); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_ANALOG(ImGui.NavInput.DpadLeft, 6, -0.3, -0.9); // D-Pad Left + MAP_ANALOG(ImGui.NavInput.DpadRight, 6, +0.3, +0.9); // D-Pad Right + MAP_ANALOG(ImGui.NavInput.DpadUp, 7, -0.3, -0.9); // D-Pad Up + MAP_ANALOG(ImGui.NavInput.DpadDown, 7, +0.3, +0.9); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 6); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 7); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 8); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 9); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + default: // standard gamepad: https://w3c.github.io/gamepad/#remapping + MAP_BUTTON(ImGui.NavInput.Activate, 0); // Cross / A + MAP_BUTTON(ImGui.NavInput.Cancel, 1); // Circle / B + MAP_BUTTON(ImGui.NavInput.Menu, 2); // Square / X + MAP_BUTTON(ImGui.NavInput.Input, 3); // Triangle / Y + MAP_BUTTON(ImGui.NavInput.DpadLeft, 14); // D-Pad Left + MAP_BUTTON(ImGui.NavInput.DpadRight, 15); // D-Pad Right + MAP_BUTTON(ImGui.NavInput.DpadUp, 12); // D-Pad Up + MAP_BUTTON(ImGui.NavInput.DpadDown, 13); // D-Pad Down + MAP_BUTTON(ImGui.NavInput.FocusPrev, 4); // L1 / LB + MAP_BUTTON(ImGui.NavInput.FocusNext, 5); // R1 / RB + MAP_BUTTON(ImGui.NavInput.TweakSlow, 6); // L2 / LT + MAP_BUTTON(ImGui.NavInput.TweakFast, 7); // R2 / RT + MAP_ANALOG(ImGui.NavInput.LStickLeft, 0, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickRight, 0, +0.3, +0.9); + MAP_ANALOG(ImGui.NavInput.LStickUp, 1, -0.3, -0.9); + MAP_ANALOG(ImGui.NavInput.LStickDown, 1, +0.3, +0.9); + break; + } + } + } + + ImGui.NewFrame(); + + this.update(dt); + + ImGui.EndFrame(); + ImGui.Render(); + + app.renderer.render(this.imgui, this.tex); + + this.surface.interactive = this.io.WantCaptureMouse; + } +} + +let canvas: HTMLCanvasElement | null = null; + +//export let gl: WebGL2RenderingContext | null = null; +let g_ShaderHandle: WebGLProgram | null = null; +let g_VertHandle: WebGLShader | null = null; +let g_FragHandle: WebGLShader | null = null; +let g_AttribLocationTex: WebGLUniformLocation | null = null; +let g_AttribLocationProjMtx: WebGLUniformLocation | null = null; +let g_AttribLocationPosition: GLint = -1; +let g_AttribLocationUV: GLint = -1; +let g_AttribLocationColor: GLint = -1; +let g_VaoHandle: WebGLVertexArrayObject = null; +let g_VboHandle: WebGLBuffer | null = null; +let g_ElementsHandle: WebGLBuffer | null = null; +let g_FontTexture: WebGLTexture | null = null; + +function document_on_copy(event: ClipboardEvent): void { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function document_on_cut(event: ClipboardEvent): void { + if (event.clipboardData) { + event.clipboardData.setData("text/plain", clipboard_text); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function document_on_paste(event: ClipboardEvent): void { + if (event.clipboardData) { + clipboard_text = event.clipboardData.getData("text/plain"); + } + // console.log(`${event.type}: "${clipboard_text}"`); + event.preventDefault(); +} + +function window_on_gamepadconnected(event: any /* GamepadEvent */): void { + console.log("Gamepad connected at index %d: %s. %d buttons, %d axes.", + event.gamepad.index, event.gamepad.id, + event.gamepad.buttons.length, event.gamepad.axes.length); +} + +function window_on_gamepaddisconnected(event: any /* GamepadEvent */): void { + console.log("Gamepad disconnected at index %d: %s.", + event.gamepad.index, event.gamepad.id); +} + +function canvas_on_blur(event: FocusEvent): void { + for (var io of contextIOs) + { + io.KeyCtrl = false; + io.KeyShift = false; + io.KeyAlt = false; + io.KeySuper = false; + for (let i = 0; i < io.KeysDown.length; ++i) { + io.KeysDown[i] = false; + } + for (let i = 0; i < io.MouseDown.length; ++i) { + io.MouseDown[i] = false; + } + } +} + +function canvas_on_keydown(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = true; + // forward to the keypress event + if (/*io.WantCaptureKeyboard ||*/ event.key === "Tab") { + event.preventDefault(); + } + } +} + +function canvas_on_keyup(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.KeyCtrl = event.ctrlKey; + io.KeyShift = event.shiftKey; + io.KeyAlt = event.altKey; + io.KeySuper = event.metaKey; + ImGui.IM_ASSERT(event.keyCode >= 0 && event.keyCode < ImGui.IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[event.keyCode] = false; + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} + +function canvas_on_keypress(event: KeyboardEvent): void { + // console.log(event.type, event.key, event.keyCode); + for (var io of contextIOs) + { + io.AddInputCharacter(event.charCode); + if (io.WantCaptureKeyboard) { + event.preventDefault(); + } + } +} + +// MouseEvent.button +// A number representing a given button: +// 0: Main button pressed, usually the left button or the un-initialized state +// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present) +// 2: Secondary button pressed, usually the right button +// 3: Fourth button, typically the Browser Back button +// 4: Fifth button, typically the Browser Forward button +const mouse_button_map: number[] = [ 0, 2, 1, 3, 4 ]; + +function canvas_on_contextmenu(event: Event): void { + for (var io of contextIOs) + { + if (io.WantCaptureMouse) { event.preventDefault(); } + } +} + +function canvas_on_wheel(event: WheelEvent): void { + for (var io of contextIOs) + { + let scale: number = 1.0; + switch (event.deltaMode) { + case event.DOM_DELTA_PIXEL: scale = 0.01; break; + case event.DOM_DELTA_LINE: scale = 0.2; break; + case event.DOM_DELTA_PAGE: scale = 1.0; break; + } + io.MouseWheelH = event.deltaX * scale; + io.MouseWheel = -event.deltaY * scale; // Mouse wheel: 1 unit scrolls about 5 lines text. + if (io.WantCaptureMouse) { + event.preventDefault(); + } + } +} + +export function PrePIXIInit(): void +{ + PIXI.Renderer.registerPlugin("imgui_renderer", U.fromConstructor(ImGuiImplInternalRenderer)); +} + +export function Init(_app: PIXI.Application): void { + // Setup Dear ImGui binding + ImGui.IMGUI_CHECKVERSION(); + + if (typeof(document) !== "undefined") { + document.body.addEventListener("copy", document_on_copy); + document.body.addEventListener("cut", document_on_cut); + document.body.addEventListener("paste", document_on_paste); + } + + if (typeof(window) !== "undefined") { + window.addEventListener("gamepadconnected", window_on_gamepadconnected); + window.addEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + + app = _app; + gl = (app.renderer as any).gl; + canvas = app.view; + + gl.getExtension("EXT_color_buffer_float"); + + if (canvas !== null) { + canvas.style.touchAction = "none"; // Disable browser handling of all panning and zooming gestures. + canvas.addEventListener("blur", canvas_on_blur); + canvas.addEventListener("keydown", canvas_on_keydown); + canvas.addEventListener("keyup", canvas_on_keyup); + canvas.addEventListener("keypress", canvas_on_keypress); + canvas.addEventListener("contextmenu", canvas_on_contextmenu); + canvas.addEventListener("wheel", canvas_on_wheel); + } + + CreateDeviceObjects(); +} + +export function Shutdown(): void { + DestroyDeviceObjects(); + + if (canvas !== null) { + canvas.removeEventListener("blur", canvas_on_blur); + canvas.removeEventListener("keydown", canvas_on_keydown); + canvas.removeEventListener("keyup", canvas_on_keyup); + canvas.removeEventListener("keypress", canvas_on_keypress); + canvas.removeEventListener("contextmenu", canvas_on_contextmenu); + canvas.removeEventListener("wheel", canvas_on_wheel); + } + + app = null; + canvas = null; + + if (typeof(window) !== "undefined") { + window.removeEventListener("gamepadconnected", window_on_gamepadconnected); + window.removeEventListener("gamepaddisconnected", window_on_gamepaddisconnected); + } + + if (typeof(document) !== "undefined") { + document.body.removeEventListener("copy", document_on_copy); + document.body.removeEventListener("cut", document_on_cut); + document.body.removeEventListener("paste", document_on_paste); + } +} + +function CreateFontsTexture(): void { + const io = ImGui.GetIO(); + + // Backup GL state + const last_texture: WebGLTexture | null = gl && gl.getParameter(gl.TEXTURE_BINDING_2D); + + // Build texture atlas + // const width: number = 256; + // const height: number = 256; + // const pixels: Uint8Array = new Uint8Array(4 * width * height).fill(0xff); + const { width, height, pixels } = io.Fonts.GetTexDataAsRGBA32(); // Load as RGBA 32-bits (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory. + // console.log(`font texture ${width} x ${height} @ ${pixels.length}`); + + // Upload texture to graphics system + g_FontTexture = gl && gl.createTexture(); + gl && gl.bindTexture(gl.TEXTURE_2D, g_FontTexture); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + gl && gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); + // gl && gl.pixelStorei(gl.UNPACK_ROW_LENGTH); // WebGL2 + gl && gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, pixels); + + // Store our identifier + io.Fonts.TexID = g_FontTexture || { foo: "bar" }; + // console.log("font texture id", g_FontTexture); + + // Restore modified GL state + gl && last_texture && gl.bindTexture(gl.TEXTURE_2D, last_texture); +} + +function DestroyFontsTexture(): void { + const io = ImGui.GetIO(); + io.Fonts.TexID = null; + gl && gl.deleteTexture(g_FontTexture); g_FontTexture = null; +} + +function CreateDeviceObjects(): void { + const vertex_shader: string[] = [ + "#version 300 es", + "uniform mat4 ProjMtx;", + "in vec2 Position;", + "in vec2 UV;", + "in vec4 Color;", + "out vec2 Frag_UV;", + "out vec4 Frag_Color;", + "void main() {", + " Frag_UV = UV;", + " Frag_Color = Color;", + " gl_Position = ProjMtx * vec4(Position.xy,0,1);", + "}", + ]; + + const fragment_shader: string[] = [ + "#version 300 es", + "precision mediump float;", // WebGL requires precision specifiers + "uniform sampler2D Texture;", + "in vec2 Frag_UV;", + "in vec4 Frag_Color;", + "out vec4 OutColor;", + "void main() {", + " OutColor = Frag_Color * texture(Texture, Frag_UV);", + "}", + ]; + + g_ShaderHandle = gl && gl.createProgram(); + g_VertHandle = gl && gl.createShader(gl.VERTEX_SHADER); + g_FragHandle = gl && gl.createShader(gl.FRAGMENT_SHADER); + gl && gl.shaderSource(g_VertHandle as WebGLShader, vertex_shader.join("\n")); + gl && gl.shaderSource(g_FragHandle as WebGLShader, fragment_shader.join("\n")); + gl && gl.compileShader(g_VertHandle as WebGLShader); + gl && gl.compileShader(g_FragHandle as WebGLShader); + gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_VertHandle as WebGLShader); + gl && gl.attachShader(g_ShaderHandle as WebGLProgram, g_FragHandle as WebGLShader); + gl && gl.linkProgram(g_ShaderHandle as WebGLProgram); + + g_AttribLocationTex = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, "Texture"); + g_AttribLocationProjMtx = gl && gl.getUniformLocation(g_ShaderHandle as WebGLProgram, "ProjMtx"); + g_AttribLocationPosition = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "Position") || 0; + g_AttribLocationUV = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "UV") || 0; + g_AttribLocationColor = gl && gl.getAttribLocation(g_ShaderHandle as WebGLProgram, "Color") || 0; + + g_VaoHandle = gl && gl.createVertexArray(); + g_VboHandle = gl && gl.createBuffer(); + g_ElementsHandle = gl && gl.createBuffer(); + +} + +function DestroyDeviceObjects(): void { + DestroyFontsTexture(); + + gl && gl.deleteVertexArray(g_VaoHandle); g_VaoHandle = null; + gl && gl.deleteBuffer(g_VboHandle); g_VboHandle = null; + gl && gl.deleteBuffer(g_ElementsHandle); g_ElementsHandle = null; + + g_AttribLocationTex = null; + g_AttribLocationProjMtx = null; + g_AttribLocationPosition = -1; + g_AttribLocationUV = -1; + g_AttribLocationColor = -1; + + gl && gl.deleteProgram(g_ShaderHandle); g_ShaderHandle = null; + gl && gl.deleteShader(g_VertHandle); g_VertHandle = null; + gl && gl.deleteShader(g_FragHandle); g_FragHandle = null; +} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..08ec8c9 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1639 @@ +{ + "name": "imgui-js-pixi", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@pixi/accessibility": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/accessibility/-/accessibility-5.1.5.tgz", + "integrity": "sha512-xHgcVN6sDqqpkcgk+yJ5s6tCf7ZW2YZVop7bQL9avuJaP6I/0mbwUN3evWonQ4QNO6SF8V/QXOc3ZmEdkYILPA==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/app": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/app/-/app-5.1.5.tgz", + "integrity": "sha512-BxcNAulUXVkTpOqS5gjorO2d3+wksmBfn0VFGdiq7Elbv3v0s8wCwGOlOSMJoAjYSPXz8H8t3dw8NHxqxpI53A==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3" + } + }, + "@pixi/constants": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@pixi/constants/-/constants-5.1.0.tgz", + "integrity": "sha512-86cogDvjF9yNvmxeizwkIhA0Kl2z3gUSWMf2daYx903dzyje7fwkzRrKLnqDUn6vSAxRXiska0DMJhwYsIC29w==" + }, + "@pixi/core": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/core/-/core-5.1.5.tgz", + "integrity": "sha512-pt7JTgRyGyOm1VNGhYqAjdIggQ5SjGpctLEBFwPlZDOTeEjJ85NADwCvN/E9ToIW7Gv/1urrNKsoVGlADcV6vw==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/runner": "^5.1.1", + "@pixi/settings": "^5.1.3", + "@pixi/ticker": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/display": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/display/-/display-5.1.3.tgz", + "integrity": "sha512-zQJfwH9tSilEfpajVJKM2bavIXBFMokscXyFIdokBSjLQL22mgEyR0mHZ3u6OECUa0PEVUA64eePv6KmPZ+bJQ==", + "requires": { + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/extract": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/extract/-/extract-5.1.5.tgz", + "integrity": "sha512-sn13RxtWpqZq05K9IJxF/00ddMsiDlpQAwEwA8fQIsMSbt6lBTm1fa0u/nZqQjRhJk72Q+41h4LXEhZEMMowAg==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/filter-alpha": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-alpha/-/filter-alpha-5.1.5.tgz", + "integrity": "sha512-Jb5e7lybvMOXjdTOEN883h2N5Qe5rLNdTmPxOoK43RR+LQMk8D/Iw3zWpQ1oIwpJFiUkgwn0CmO5YaK6STh34w==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/filter-blur": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-blur/-/filter-blur-5.1.5.tgz", + "integrity": "sha512-9eSJtg8kLwKrNnJmg2c1vlOcP0PYhvZdUk97D2+HrE0j1BZTJ2OxHb26UJSiMU0kBCUomtuFvCiNtFT2GCWbjg==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/settings": "^5.1.3" + } + }, + "@pixi/filter-color-matrix": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-color-matrix/-/filter-color-matrix-5.1.5.tgz", + "integrity": "sha512-zhg8FE22WA7sH1mhvjjSaWav7BXFbU63usdh9pVNv2Hd7cuDtO9x8aLy+RqGozqENfYHzRUlTdKrNdl5QEbYMg==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/filter-displacement": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-displacement/-/filter-displacement-5.1.5.tgz", + "integrity": "sha512-/ZzlTT+jFQTwg57jj6kl4lH+0Z3iwtp+tDXdYcusNDe44hZn9Wd+IzZkS/LCeay40cY4JPRrXznVwlZ6AiBsHQ==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0" + } + }, + "@pixi/filter-fxaa": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-fxaa/-/filter-fxaa-5.1.5.tgz", + "integrity": "sha512-Zg2pSBpb0pxJozWraNrHUC97C3gSjK+NSaMGBN6NpfaGcn+/xaZjFBwwYDeTpHAw6IDV+3Ln+z7D5h9pPEliKg==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/filter-noise": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/filter-noise/-/filter-noise-5.1.5.tgz", + "integrity": "sha512-/HGr9dxvBVc+qRJ/JU/6ZHz3BshnUwCTgEfQtxJmo2I6lqn9cWoiL4q+iKk9QkGmLtLNip77zc0KveYN01eh/g==", + "requires": { + "@pixi/core": "^5.1.5" + } + }, + "@pixi/graphics": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/graphics/-/graphics-5.1.5.tgz", + "integrity": "sha512-u9uq/6ylS5oRCsWaTi0uOCuAimAvaXJ57ATKT/nylHRXv+GfbPoMJAHpqTWx8HojK7P6PBUJCenPa0BFVcq9gg==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/interaction": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/interaction/-/interaction-5.1.5.tgz", + "integrity": "sha512-N8SONgHZZuDLPAL3LvfMTfgRsD6084KJA9VbwJ6Ujvm95NwSInNC2HRB6uXsSYTC4I1bMcRhot3CjZkB5BEURA==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/ticker": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/loaders": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/loaders/-/loaders-5.1.5.tgz", + "integrity": "sha512-jcuJMMGIr7/o8HKtVL9YzUTQQGk4K4uNQylUbhnNDFVuJcVzuBwD/TCWJ/+2Y879vBzipXdhCw7JLA4F8w6bkg==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/utils": "^5.1.3", + "resource-loader": "^3.0.1" + } + }, + "@pixi/math": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@pixi/math/-/math-5.1.0.tgz", + "integrity": "sha512-Vf9W4SgYRRQMdSq8tFViKKKGCU3iklf0RDzd+wzp4gezOxe3m0PLB7XKwvVrP1hRjUh49zIAL9JBpYREPS1EMw==" + }, + "@pixi/mesh": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/mesh/-/mesh-5.1.5.tgz", + "integrity": "sha512-gWBwBkIV0Dj0nA+a/ymtv4oQOium3oiehKdhSynQZj9C+pwd3YUSJGjHWs4b+TIQxZm2RHEsSSw4gCw/Ih1cuw==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/mesh-extras": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/mesh-extras/-/mesh-extras-5.1.5.tgz", + "integrity": "sha512-aMjTD3kBf2h31ijYapapQOJIoQuO26i4pP7P4ux886FE8E48QSc3edXZzULq2Rc5ZdWMPUFYnd8AJ6F8dw/ocQ==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/mesh": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/mixin-cache-as-bitmap": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/mixin-cache-as-bitmap/-/mixin-cache-as-bitmap-5.1.5.tgz", + "integrity": "sha512-XRVTz5nOgj7wUFXXIixTlg+2oynNerebUwjkw11mnr+HNP3vMmt2O8ZtXEyij2VXNMuDmbYo8/O53FI+81CnAQ==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/mixin-get-child-by-name": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/mixin-get-child-by-name/-/mixin-get-child-by-name-5.1.3.tgz", + "integrity": "sha512-0nvNfcQAeND9iuzQr0AYCxINDaXQx5Kft8Fauu0T4LKbYAchO0qzuSpv7L+cD4LvKdvGQyxHHWP6u4wQ9yuKrg==", + "requires": { + "@pixi/display": "^5.1.3" + } + }, + "@pixi/mixin-get-global-position": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/mixin-get-global-position/-/mixin-get-global-position-5.1.3.tgz", + "integrity": "sha512-dgIUjjIDnI/wrNXt+ROWdv0syQeV5hlt/TJot/ULXw6HnBoDDmXqcKzIp38o3Ei6n2eQ0CUVbKYGd668tdk5EQ==", + "requires": { + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0" + } + }, + "@pixi/particles": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/particles/-/particles-5.1.5.tgz", + "integrity": "sha512-eIYd1wKyuzBL/re3EuyhUjXNRe8fkqbUgpeevV2e7tIoFcyK3g3cT4E1ajTv+7IIAvj2505xRJ3dxcAxLDzd6g==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/polyfill": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@pixi/polyfill/-/polyfill-5.1.0.tgz", + "integrity": "sha512-8M3nYCO0a599fsdLW7wv9SBYriMqS1QckKAkRuN2JualRuK/GjxZjm5Vcbcwc1gGONRUKZroH12CuPyTcU2HnQ==", + "requires": { + "es6-promise-polyfill": "^1.2.0", + "object-assign": "^4.1.1" + } + }, + "@pixi/prepare": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/prepare/-/prepare-5.1.5.tgz", + "integrity": "sha512-0Gq6whHFuLYy3uUVoVmRnVWMZU4Z0WSs7+BYGWrDqxlOqfuZ6ZS4SSEjzcUUvyCK8MWisEn7O3EnDRYFr+3K5g==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/graphics": "^5.1.5", + "@pixi/settings": "^5.1.3", + "@pixi/text": "^5.1.5", + "@pixi/ticker": "^5.1.3" + } + }, + "@pixi/runner": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@pixi/runner/-/runner-5.1.1.tgz", + "integrity": "sha512-cOkWsRZlEgOB4IuiUW0PvU0JDMNpNTtyLeECg4DwIDYW4uQ0033zaZFSsN0EOeX0TFkpBmaJsgEIwpmw32VU0w==" + }, + "@pixi/settings": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/settings/-/settings-5.1.3.tgz", + "integrity": "sha512-goYjVYuklNMFWFq54J7u4eYVe+qmLe6AQP+b+hF+Kskw7tSXrAVTHROqrEiqPqKSCL9umorOi6T/ZTXhk8i4Wg==", + "requires": { + "ismobilejs": "^0.5.1" + } + }, + "@pixi/sprite": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/sprite/-/sprite-5.1.5.tgz", + "integrity": "sha512-a8M5P7xarbYMut3YKIb5I4hr94c0/VA18jV/eOhtyOKOsS5jkjul5WGssnIyR73aQp7iaNGWfh7FD+BiWCLzXQ==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/sprite-animated": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/sprite-animated/-/sprite-animated-5.1.5.tgz", + "integrity": "sha512-jsxqmWpDpjy7BoqVFpPWNvIeJ6yePQ0/uTyvzhKZBM8ihZVFJMa1+C4IFQpQYUCp9rlZHG6og4UzAHlwceQb+A==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/sprite": "^5.1.5", + "@pixi/ticker": "^5.1.3" + } + }, + "@pixi/sprite-tiling": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/sprite-tiling/-/sprite-tiling-5.1.5.tgz", + "integrity": "sha512-9P0jyAA9I8hrDnN04rABxxs09Knb2AZr+Ky2yvWAUngumoMmIEbc/JtW9R8ich72uTBcl8Ax+bTz520wB36HpA==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/math": "^5.1.0", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/spritesheet": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/spritesheet/-/spritesheet-5.1.5.tgz", + "integrity": "sha512-kZBiI/eYRKoNxOTI9h4tl13oGdCaFkH/cOI0MZ0st0Dos6clB5OJStJ19bEe/Ik1Yt7NxGCCuFLLa3WKhQ5idQ==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/loaders": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/text": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/text/-/text-5.1.5.tgz", + "integrity": "sha512-8pKWuyccdWrZgvssyPUrOdn7CMeetRTpM8W51KYwU8gla6tnddMj3TaBW56dXRdtddadDc2KdGtDYPOuonHOfA==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/text-bitmap": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@pixi/text-bitmap/-/text-bitmap-5.1.5.tgz", + "integrity": "sha512-Qvnq35MdDWjW9JwJsLcVpnTX4ApW52zLMeMezuTtN+QrfsXmYXRE+SOeBERccbGmyxcM2yIKIItiqS2eFvlzRw==", + "requires": { + "@pixi/core": "^5.1.5", + "@pixi/display": "^5.1.3", + "@pixi/loaders": "^5.1.5", + "@pixi/math": "^5.1.0", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.5", + "@pixi/utils": "^5.1.3" + } + }, + "@pixi/ticker": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/ticker/-/ticker-5.1.3.tgz", + "integrity": "sha512-IuJTMTfdboR6049b+HnSClGj7Lz5gObVoxuMc3flY493XAvrQk4XrBo57QDlVOdjVBiDW0gZ9DlUr1lwNFI7zQ==", + "requires": { + "@pixi/settings": "^5.1.3" + } + }, + "@pixi/utils": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@pixi/utils/-/utils-5.1.3.tgz", + "integrity": "sha512-w2ULIc97p1tnAZ7L0aSClDeIpuCYrauOKbnWYG8C8zTVfHWFKAHVamvzYnVaeXw4CN9jwERK/JYY/y2VFZXHuw==", + "requires": { + "@pixi/constants": "^5.1.0", + "@pixi/settings": "^5.1.3", + "earcut": "^2.1.5", + "eventemitter3": "^3.1.0", + "url": "^0.11.0" + } + }, + "@types/emscripten": { + "version": "1.38.0", + "resolved": "https://registry.npmjs.org/@types/emscripten/-/emscripten-1.38.0.tgz", + "integrity": "sha512-qfuBbl9hC0ybmW9s8SDORPgg+LdPV+KRpB8AMdTRqxuQZR4G5T7ozIAVUJLO26N7SFSM1zvDVuZ9+qOX7qt/EQ==" + }, + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "dev": true + }, + "@types/node": { + "version": "12.7.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.7.8.tgz", + "integrity": "sha512-FMdVn84tJJdV+xe+53sYiZS4R5yn1mAIxfj+DVoNiQjTYz1+OYmjwEZr1ev9nU0axXwda0QDbYl06QHanRVH3A==" + }, + "@types/resolve": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz", + "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/systemjs": { + "version": "0.20.6", + "resolved": "https://registry.npmjs.org/@types/systemjs/-/systemjs-0.20.6.tgz", + "integrity": "sha512-p3yv9sBBJXi3noUG216BpUI7VtVBUAvBIfZNTiDROUY31YBfsFHM4DreS7XMekN8IjtX0ysvCnm6r3WnirnNeA==" + }, + "abstract-leveldown": { + "version": "0.12.4", + "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-0.12.4.tgz", + "integrity": "sha1-KeGOYy5g5OIh1YECR4UqY9ey5BA=", + "dev": true, + "requires": { + "xtend": "~3.0.0" + }, + "dependencies": { + "xtend": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz", + "integrity": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=", + "dev": true + } + } + }, + "acorn": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.0.tgz", + "integrity": "sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==", + "dev": true + }, + "asn1.js": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", + "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "bl": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/bl/-/bl-0.8.2.tgz", + "integrity": "sha1-yba8oI0bwuoA/Ir7Txpf0eHGbk4=", + "dev": true, + "requires": { + "readable-stream": "~1.0.26" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "bn.js": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", + "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==", + "dev": true + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-fs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browserify-fs/-/browserify-fs-1.0.0.tgz", + "integrity": "sha1-8HWqinKdTRcW0GZiDjhvzBMRqW8=", + "dev": true, + "requires": { + "level-filesystem": "^1.0.1", + "level-js": "^2.1.3", + "levelup": "^0.18.2" + } + }, + "browserify-rsa": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", + "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", + "dev": true, + "requires": { + "bn.js": "^4.1.1", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.2", + "elliptic": "^6.0.0", + "inherits": "^2.0.1", + "parse-asn1": "^5.0.0" + } + }, + "buffer-es6": { + "version": "4.9.3", + "resolved": "https://registry.npmjs.org/buffer-es6/-/buffer-es6-4.9.3.tgz", + "integrity": "sha1-8mNHuC33b9N+GLy1KIxJcM/VxAQ=", + "dev": true + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true + }, + "builtin-modules": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz", + "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==", + "dev": true + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "clone": { + "version": "0.1.19", + "resolved": "https://registry.npmjs.org/clone/-/clone-0.1.19.tgz", + "integrity": "sha1-YT+2hjmyaklKxTJT4Vsaa9iK2oU=", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "create-ecdh": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", + "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.0.0" + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "deferred-leveldown": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-0.2.0.tgz", + "integrity": "sha1-LO8fER4cV4cNi7uK8mUOWHzS9bQ=", + "dev": true, + "requires": { + "abstract-leveldown": "~0.12.1" + } + }, + "des.js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", + "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "earcut": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.1.tgz", + "integrity": "sha512-5jIMi2RB3HtGPHcYd9Yyl0cczo84y+48lgKPxMijliNQaKAHEZJbdzLmKmdxG/mCdS/YD9DQ1gihL8mxzR0F9w==" + }, + "elliptic": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.1.tgz", + "integrity": "sha512-xvJINNLbTeWQjrl6X+7eQCrIy/YPv5XCpKW6kB5mKvtnGILoLDcySuwomfdzt0BMdLNVnuRNTuzKNHj0bva1Cg==", + "dev": true, + "requires": { + "bn.js": "^4.4.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + } + }, + "errno": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", + "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "es6-promise-polyfill": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/es6-promise-polyfill/-/es6-promise-polyfill-1.2.0.tgz", + "integrity": "sha1-84kl8jyz4+jObNqP93T867sJDN4=" + }, + "estree-walker": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", + "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==", + "dev": true + }, + "eventemitter3": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", + "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==" + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "find-cache-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.0.0.tgz", + "integrity": "sha512-t7ulV1fmbxh5G9l/492O1p5+EBbr3uwpt6odhFTMc+nWyhmbloe+ja9BZ8pIBtqFWhOmCWVjx+pTW4zDkFoclw==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.0", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "foreach": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", + "dev": true + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fwd-stream": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/fwd-stream/-/fwd-stream-1.0.4.tgz", + "integrity": "sha1-7Sgcq+1G/uz5Ie4y3ExQs3KsfPo=", + "dev": true, + "requires": { + "readable-stream": "~1.0.26-4" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "graceful-fs": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", + "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==", + "dev": true + }, + "hash-base": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", + "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "idb-wrapper": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/idb-wrapper/-/idb-wrapper-1.7.2.tgz", + "integrity": "sha512-zfNREywMuf0NzDo9mVsL0yegjsirJxHpKHvWcyRozIqQy89g0a3U+oBPOCN4cc0oCiOuYgZHimzaW/R46G1Mpg==", + "dev": true + }, + "imgui-js": { + "version": "git+https://git.mhack.io/git/mark/imgui-js.git#9536ecad287eb76812087cd3fee1aaacb448c027", + "from": "git+https://git.mhack.io/git/mark/imgui-js.git", + "requires": { + "@types/emscripten": "^1.38.0", + "@types/node": "^12.6.7", + "@types/systemjs": "^0.20.6", + "pixi.js": "file:node_modules/imgui-js/pixi.js/bundles/pixi.js/pixi.js-5.1.4.tgz" + } + }, + "indexof": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", + "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", + "dev": true + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "is": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/is/-/is-0.2.7.tgz", + "integrity": "sha1-OzSixI81mXLzUEKEkZOucmS2NWI=", + "dev": true + }, + "is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=", + "dev": true + }, + "is-object": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-0.1.2.tgz", + "integrity": "sha1-AO+8CIFsM8/ErIJR0TLhDcZQmNc=", + "dev": true + }, + "is-reference": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.1.4.tgz", + "integrity": "sha512-uJA/CDPO3Tao3GTrxYn6AwkM4nUPJiGGYu5+cB8qbC7WGFlrKZbiRo7SFKxUAEpFUfiHofWCXBUNhvYJMh+6zw==", + "dev": true, + "requires": { + "@types/estree": "0.0.39" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isbuffer": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/isbuffer/-/isbuffer-0.0.0.tgz", + "integrity": "sha1-OMFG2d9Si4v5sHAcPUPPEt8/w5s=", + "dev": true + }, + "ismobilejs": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/ismobilejs/-/ismobilejs-0.5.2.tgz", + "integrity": "sha512-ta9UdV60xVZk/ZafFtSFslQaE76SvNkcs1r73d2PVR21zVzx9xuYv9tNe4MxA1NN7WoeCc2RjGot3Bz1eHDx3Q==" + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "level-blobs": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/level-blobs/-/level-blobs-0.1.7.tgz", + "integrity": "sha1-mrm5e7mfHtv594o0M+Ie1WOGva8=", + "dev": true, + "requires": { + "level-peek": "1.0.6", + "once": "^1.3.0", + "readable-stream": "^1.0.26-4" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "level-filesystem": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/level-filesystem/-/level-filesystem-1.2.0.tgz", + "integrity": "sha1-oArKmRnEpN+v3KaoEI0iWq3/Y7M=", + "dev": true, + "requires": { + "concat-stream": "^1.4.4", + "errno": "^0.1.1", + "fwd-stream": "^1.0.4", + "level-blobs": "^0.1.7", + "level-peek": "^1.0.6", + "level-sublevel": "^5.2.0", + "octal": "^1.0.0", + "once": "^1.3.0", + "xtend": "^2.2.0" + } + }, + "level-fix-range": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/level-fix-range/-/level-fix-range-1.0.2.tgz", + "integrity": "sha1-vxW5Fa422EcMgh6IPd95zRZCCCg=", + "dev": true + }, + "level-hooks": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/level-hooks/-/level-hooks-4.5.0.tgz", + "integrity": "sha1-G5rmGSKTDzMF0aYfxNg8gQLA3ZM=", + "dev": true, + "requires": { + "string-range": "~1.2" + } + }, + "level-js": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/level-js/-/level-js-2.2.4.tgz", + "integrity": "sha1-vAVfQYBjXUSJtWHJSG+jcOjBFpc=", + "dev": true, + "requires": { + "abstract-leveldown": "~0.12.0", + "idb-wrapper": "^1.5.0", + "isbuffer": "~0.0.0", + "ltgt": "^2.1.2", + "typedarray-to-buffer": "~1.0.0", + "xtend": "~2.1.2" + }, + "dependencies": { + "object-keys": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz", + "integrity": "sha1-KKaq50KN0sOpLz2V8hM13SBOAzY=", + "dev": true + }, + "xtend": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", + "integrity": "sha1-bv7MKk2tjmlixJAbM3znuoe10os=", + "dev": true, + "requires": { + "object-keys": "~0.4.0" + } + } + } + }, + "level-peek": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/level-peek/-/level-peek-1.0.6.tgz", + "integrity": "sha1-vsUccqgu5GTTNkNMfIdsP8vM538=", + "dev": true, + "requires": { + "level-fix-range": "~1.0.2" + } + }, + "level-sublevel": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/level-sublevel/-/level-sublevel-5.2.3.tgz", + "integrity": "sha1-dEwSxy0ucr543eO5tc2E1iGRQTo=", + "dev": true, + "requires": { + "level-fix-range": "2.0", + "level-hooks": ">=4.4.0 <5", + "string-range": "~1.2.1", + "xtend": "~2.0.4" + }, + "dependencies": { + "level-fix-range": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/level-fix-range/-/level-fix-range-2.0.0.tgz", + "integrity": "sha1-xBfWIVlEIVGhnZojZ4aPFyTC1Ug=", + "dev": true, + "requires": { + "clone": "~0.1.9" + } + }, + "xtend": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.0.6.tgz", + "integrity": "sha1-XqZXptukRwacLlnFihE4ywxebO4=", + "dev": true, + "requires": { + "is-object": "~0.1.2", + "object-keys": "~0.2.0" + } + } + } + }, + "levelup": { + "version": "0.18.6", + "resolved": "https://registry.npmjs.org/levelup/-/levelup-0.18.6.tgz", + "integrity": "sha1-5qAcsIlhbI7MApHCqb0/DETj5es=", + "dev": true, + "requires": { + "bl": "~0.8.1", + "deferred-leveldown": "~0.2.0", + "errno": "~0.1.1", + "prr": "~0.0.0", + "readable-stream": "~1.0.26", + "semver": "~2.3.1", + "xtend": "~3.0.0" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "prr": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz", + "integrity": "sha1-GoS4WQgyVQFBGFPQCB7j+obikmo=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + }, + "xtend": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz", + "integrity": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=", + "dev": true + } + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "ltgt": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ltgt/-/ltgt-2.2.1.tgz", + "integrity": "sha1-81ypHEk/e3PaDgdJUwTxezH4fuU=", + "dev": true + }, + "magic-string": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.4.tgz", + "integrity": "sha512-oycWO9nEVAP2RVPbIoDoA4Y7LFIJ3xRYov93gAyJhZkET1tNuB0u7uWkZS2LpBWTJUWnmau/To8ECWRC+jKNfw==", + "dev": true, + "requires": { + "sourcemap-codec": "^1.4.4" + } + }, + "make-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.0.0.tgz", + "integrity": "sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + } + }, + "mini-signals": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mini-signals/-/mini-signals-1.2.0.tgz", + "integrity": "sha1-RbCAE8X65RokqhqTXNMXye1yHXQ=" + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-keys": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.2.0.tgz", + "integrity": "sha1-zd7AKZiwkb5CvxA1rjLknxy26mc=", + "dev": true, + "requires": { + "foreach": "~2.0.1", + "indexof": "~0.0.1", + "is": "~0.2.6" + } + }, + "octal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/octal/-/octal-1.0.0.tgz", + "integrity": "sha1-Y+cWKmjvvrniE1iNWOmJ0eXEUws=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "p-limit": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", + "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "parse-asn1": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz", + "integrity": "sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==", + "dev": true, + "requires": { + "asn1.js": "^4.0.0", + "browserify-aes": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-uri": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-uri/-/parse-uri-1.0.0.tgz", + "integrity": "sha1-KHLcwi8aeXrN4Vg9igrClVLdrCA=" + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "dev": true + }, + "pbkdf2": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", + "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", + "dev": true, + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "pixi.js": { + "version": "file:node_modules/imgui-js/pixi.js/bundles/pixi.js/pixi.js-5.1.4.tgz", + "integrity": "sha512-qBtJPyfiH/b2powvEEnQoiBdoT0xQTg5LQ08CESsBJk4kFX6NE2u+KQv6WYfl5j/1pRHVvtrWhwPeJTbfp9SpQ==", + "requires": { + "@pixi/accessibility": "^5.1.4", + "@pixi/app": "^5.1.4", + "@pixi/constants": "^5.1.0", + "@pixi/core": "^5.1.4", + "@pixi/display": "^5.1.3", + "@pixi/extract": "^5.1.4", + "@pixi/filter-alpha": "^5.1.4", + "@pixi/filter-blur": "^5.1.4", + "@pixi/filter-color-matrix": "^5.1.4", + "@pixi/filter-displacement": "^5.1.4", + "@pixi/filter-fxaa": "^5.1.4", + "@pixi/filter-noise": "^5.1.4", + "@pixi/graphics": "^5.1.4", + "@pixi/interaction": "^5.1.4", + "@pixi/loaders": "^5.1.4", + "@pixi/math": "^5.1.0", + "@pixi/mesh": "^5.1.4", + "@pixi/mesh-extras": "^5.1.4", + "@pixi/mixin-cache-as-bitmap": "^5.1.4", + "@pixi/mixin-get-child-by-name": "^5.1.3", + "@pixi/mixin-get-global-position": "^5.1.3", + "@pixi/particles": "^5.1.4", + "@pixi/polyfill": "^5.1.0", + "@pixi/prepare": "^5.1.4", + "@pixi/runner": "^5.1.1", + "@pixi/settings": "^5.1.3", + "@pixi/sprite": "^5.1.4", + "@pixi/sprite-animated": "^5.1.4", + "@pixi/sprite-tiling": "^5.1.4", + "@pixi/spritesheet": "^5.1.4", + "@pixi/text": "^5.1.4", + "@pixi/text-bitmap": "^5.1.4", + "@pixi/ticker": "^5.1.3", + "@pixi/utils": "^5.1.3" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "process-es6": { + "version": "0.11.6", + "resolved": "https://registry.npmjs.org/process-es6/-/process-es6-0.11.6.tgz", + "integrity": "sha1-xrs4n5qVH4K9TrFpYAEFvS/5x3g=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "resolve": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz", + "integrity": "sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "resource-loader": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/resource-loader/-/resource-loader-3.0.1.tgz", + "integrity": "sha512-fBuCRbEHdLCI1eglzQhUv9Rrdcmqkydr1r6uHE2cYHvRBrcLXeSmbE/qI/urFt8rPr/IGxir3BUwM5kUK8XoyA==", + "requires": { + "mini-signals": "^1.2.0", + "parse-uri": "^1.0.0" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "rollup": { + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-1.22.0.tgz", + "integrity": "sha512-x4l4ZrV/Mr/x/jvFTmwROdEAhbZjx16yDRTVSKWh/i4oJDuW2dVEbECT853mybYCz7BAitU8ElGlhx7dNjw3qQ==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/node": "*", + "acorn": "^7.1.0" + } + }, + "rollup-plugin-commonjs": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-commonjs/-/rollup-plugin-commonjs-10.1.0.tgz", + "integrity": "sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q==", + "dev": true, + "requires": { + "estree-walker": "^0.6.1", + "is-reference": "^1.1.2", + "magic-string": "^0.25.2", + "resolve": "^1.11.0", + "rollup-pluginutils": "^2.8.1" + } + }, + "rollup-plugin-node-builtins": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-node-builtins/-/rollup-plugin-node-builtins-2.1.2.tgz", + "integrity": "sha1-JKH+1KQyV7a2Q3HYq8bOGrFFl+k=", + "dev": true, + "requires": { + "browserify-fs": "^1.0.0", + "buffer-es6": "^4.9.2", + "crypto-browserify": "^3.11.0", + "process-es6": "^0.11.2" + } + }, + "rollup-plugin-node-resolve": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-5.2.0.tgz", + "integrity": "sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw==", + "dev": true, + "requires": { + "@types/resolve": "0.0.8", + "builtin-modules": "^3.1.0", + "is-module": "^1.0.0", + "resolve": "^1.11.1", + "rollup-pluginutils": "^2.8.1" + } + }, + "rollup-plugin-typescript2": { + "version": "0.24.3", + "resolved": "https://registry.npmjs.org/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.24.3.tgz", + "integrity": "sha512-D7yovQlhnRoz7pG/RF0ni+koxgzEShwfAGuOq6OVqKzcATHOvmUt2ePeYVdc9N0adcW1PcTzklUEM0oNWE/POw==", + "dev": true, + "requires": { + "find-cache-dir": "^3.0.0", + "fs-extra": "8.1.0", + "resolve": "1.12.0", + "rollup-pluginutils": "2.8.1", + "tslib": "1.10.0" + }, + "dependencies": { + "rollup-pluginutils": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz", + "integrity": "sha512-J5oAoysWar6GuZo0s+3bZ6sVZAC0pfqKz68De7ZgDi5z63jOVZn1uJL/+z1jeKHNbGII8kAyHF5q8LnxSX5lQg==", + "dev": true, + "requires": { + "estree-walker": "^0.6.1" + } + } + } + }, + "rollup-pluginutils": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", + "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", + "dev": true, + "requires": { + "estree-walker": "^0.6.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "semver": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-2.3.2.tgz", + "integrity": "sha1-uYSPJdbPNjMwc+ye+IVtQvEjPlI=", + "dev": true + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "sourcemap-codec": { + "version": "1.4.6", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.6.tgz", + "integrity": "sha512-1ZooVLYFxC448piVLBbtOxFcXwnymH9oUF8nRd3CuYDVvkRBxRl6pB4Mtas5a4drtL+E8LDgFkQNcgIw6tc8Hg==", + "dev": true + }, + "string-range": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/string-range/-/string-range-1.2.2.tgz", + "integrity": "sha1-qJPtNH5yKZvIO++78qaSqNI51d0=", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "tslib": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", + "dev": true + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, + "typedarray-to-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-1.0.4.tgz", + "integrity": "sha1-m7i6DoQfs/TPH+fCRenz+opf6Zw=", + "dev": true + }, + "typescript": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.6.3.tgz", + "integrity": "sha512-N7bceJL1CtRQ2RiG0AQME13ksR7DiuQh/QehubYcghzv20tnh+MQnQIuJddTmsbqYj+dztchykemz0zFzlvdQw==", + "dev": true + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "xtend": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.2.0.tgz", + "integrity": "sha1-7vax8ZjByN6vrYsXZaBNrUoBxak=", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..2a48002 --- /dev/null +++ b/package.json @@ -0,0 +1,27 @@ +{ + "name": "imgui-js-pixi", + "version": "1.0.0", + "description": "imgui bindings for PIXI renderer", + "main": "imgui_impl.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "dist": "rollup -c" + }, + "repository": { + "type": "git", + "url": "https://git.mhack.io/git/mark/imgui-js-pixi.git" + }, + "author": "Mark Bavis", + "license": "ISC", + "dependencies": { + "imgui-js": "git+https://git.mhack.io/git/mark/imgui-js.git" + }, + "devDependencies": { + "rollup": "^1.22.0", + "rollup-plugin-commonjs": "^10.1.0", + "rollup-plugin-node-builtins": "^2.1.2", + "rollup-plugin-node-resolve": "^5.2.0", + "rollup-plugin-typescript2": "^0.24.3", + "typescript": "^3.6.3" + } +} diff --git a/rollup.config.js b/rollup.config.js new file mode 100644 index 0000000..3e11089 --- /dev/null +++ b/rollup.config.js @@ -0,0 +1,34 @@ +import node from "rollup-plugin-node-resolve"; +import commonjs from "rollup-plugin-commonjs"; +import typescript from "rollup-plugin-typescript2"; +import builtins from "rollup-plugin-node-builtins"; + +const plugins = + [ + typescript({ + clean: true, + tsconfigOverride: { + compilerOptions: { + target: "ES2015", + module: "ES2015" + } + } + }), + commonjs(), + builtins(), + node({preferBuiltins: false}) + ]; + +export default [ +{ + input: "imgui_impl.ts", + output: + { + file: "imgui_impl.js", + format: "cjs", + name: "imgui_pixi_js", + sourcemap: true + }, + plugins: plugins +} +] diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..f4b9d36 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,33 @@ +{ + "compilerOptions": + { + "target": "ES2015", + "module": "system", + "esModuleInterop": true, + "noImplicitAny": true, + "listEmittedFiles":true, + "moduleResolution":"node", + "baseUrl": ".", + "sourceMap": true, + "incremental": true, + "paths": { + "*": [ + "src/types/*", + "node_modules/*" + ] + } + }, + "files": + [ + "imgui_impl.ts" + ], + "include": + [ + + "src/types/**/*.d.ts" + ], + "exclude": + [ + "node_modules/**/*" + ] +} diff --git a/utils.ts b/utils.ts new file mode 100644 index 0000000..f24fb7f --- /dev/null +++ b/utils.ts @@ -0,0 +1,13 @@ +import { ImVec4 } from "imgui-js"; + +export function fromConstructor(constr: any):((params: any[]) => any) +{ + return constr as unknown as ((params: any[]) => any) +} + +export function vec2col(v: ImVec4): number +{ + return (((v.x * 255) & 0xFF) << 16) + + (((v.y * 255) & 0xFF) << 8) + + (((v.z * 255) & 0xFF) << 0); +}